diff --git a/.github/vcpkg_triplets/x86-windows-static.cmake b/.github/vcpkg_triplets/x86-windows-static.cmake new file mode 100644 index 0000000000000..ed7ecb9d89c83 --- /dev/null +++ b/.github/vcpkg_triplets/x86-windows-static.cmake @@ -0,0 +1,5 @@ +set(VCPKG_TARGET_ARCHITECTURE x86) +set(VCPKG_CRT_LINKAGE static) +set(VCPKG_LIBRARY_LINKAGE static) + +set(VCPKG_BUILD_TYPE release) diff --git a/.github/vcpkg_triplets/x86-windows.cmake b/.github/vcpkg_triplets/x86-windows.cmake new file mode 100644 index 0000000000000..fd1aa53de6bae --- /dev/null +++ b/.github/vcpkg_triplets/x86-windows.cmake @@ -0,0 +1,5 @@ +set(VCPKG_TARGET_ARCHITECTURE x86) +set(VCPKG_CRT_LINKAGE dynamic) +set(VCPKG_LIBRARY_LINKAGE dynamic) + +set(VCPKG_BUILD_TYPE release) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index 447366dcf958c..e30ef65a7dd12 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -92,9 +92,9 @@ jobs: tiles: 1 sound: 1 test-stage: 1 - title: GCC, Ubuntu cross-compile to MinGW-Win64, Tiles, Sound + title: GCC 11, Ubuntu cross-compile to MinGW-Win64, Tiles, Sound ldflags: -static-libgcc -static-libstdc++ - mxe_target: i686-w64-mingw32.static + mxe_target: i686-w64-mingw32.static.gcc11 wine: wine - compiler: clang++-6.0 diff --git a/.github/workflows/msvc-full-features.yml b/.github/workflows/msvc-full-features.yml index bdc4df43511d5..288073d810132 100644 --- a/.github/workflows/msvc-full-features.yml +++ b/.github/workflows/msvc-full-features.yml @@ -96,10 +96,15 @@ jobs: - name: Compile .mo files for localization run: | - & "C:\Program Files\Git\bin\bash" ./lang/compile_mo.sh all + & "C:\msys64\mingw64\bin\mingw32-make" -C lang -j2 mkdir -p ./data/mods/TEST_DATA/lang/mo/ru/LC_MESSAGES -ErrorAction SilentlyContinue msgfmt -f -o ./data/mods/TEST_DATA/lang/mo/ru/LC_MESSAGES/TEST_DATA.mo ./data/mods/TEST_DATA/lang/po/ru.po + - name: Enable GitHub Actions problem matchers + run: | + Write-Output "::add-matcher::build-scripts/problem-matchers/catch2.json" + Write-Output "::add-matcher::build-scripts/problem-matchers/debugmsg.json" + - name: Run tests run: | .\Cataclysm-test-vcpkg-static-Release-x64.exe --min-duration 0.2 --rng-seed time diff --git a/.github/workflows/pull-translations.yml b/.github/workflows/pull-translations.yml index 3127f90381fbd..493fbdf0beaa9 100644 --- a/.github/workflows/pull-translations.yml +++ b/.github/workflows/pull-translations.yml @@ -6,6 +6,7 @@ on: jobs: pull-translations: + if: github.repository == 'CleverRaven/Cataclysm-DDA' runs-on: ubuntu-20.04 steps: - name: "Install dependencies" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 63e5beb3a3eee..e97c716a6c9f4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -171,14 +171,13 @@ jobs: - name: Install MXE if: matrix.mxe != 'none' run: | - sudo apt install software-properties-common lsb-release - sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 86B72ED9 - sudo add-apt-repository "deb [arch=amd64] https://pkg.mxe.cc/repos/apt `lsb_release -sc` main" - sudo apt update - sudo apt install mxe-{i686,x86-64}-w64-mingw32.static-{sdl2,sdl2-ttf,sdl2-image,sdl2-mixer,gettext} + curl -L -o mxe-${{ matrix.mxe }}.tar.xz https://github.com/BrettDong/MXE-GCC/releases/download/mxe-gcc-11.2/mxe-${{ matrix.mxe }}.tar.xz + curl -L -o mxe-${{ matrix.mxe }}.tar.xz.sha256 https://github.com/BrettDong/MXE-GCC/releases/download/mxe-gcc-11.2/mxe-${{ matrix.mxe }}.tar.xz.sha256 + shasum -a 256 -c ./mxe-${{ matrix.mxe }}.tar.xz.sha256 + sudo tar xJf mxe-${{ matrix.mxe }}.tar.xz -C /opt curl -L -o libbacktrace-${{ matrix.mxe }}-w64-mingw32.tar.gz https://github.com/Qrox/libbacktrace/releases/download/2020-01-03/libbacktrace-${{ matrix.mxe }}-w64-mingw32.tar.gz shasum -a 256 -c ./build-scripts/libbacktrace-${{ matrix.mxe }}-w64-mingw32-sha256 - sudo tar -xzf libbacktrace-${{ matrix.mxe }}-w64-mingw32.tar.gz --exclude=LICENSE -C /usr/lib/mxe/usr/${{ matrix.mxe }}-w64-mingw32.static + sudo tar -xzf libbacktrace-${{ matrix.mxe }}-w64-mingw32.tar.gz --exclude=LICENSE -C /opt/mxe/usr/${{ matrix.mxe }}-w64-mingw32.static.gcc11 - name: Install dependencies (Linux) if: runner.os == 'Linux' && matrix.mxe == 'none' && matrix.android == 'none' run: | @@ -212,12 +211,14 @@ jobs: - name: Build CDDA (windows mxe) if: matrix.mxe != 'none' env: - PLATFORM: /usr/lib/mxe/usr/bin/${{ matrix.mxe }}-w64-mingw32.static- + PLATFORM: /opt/mxe/usr/bin/${{ matrix.mxe }}-w64-mingw32.static.gcc11- run: | make -j$((`nproc`+0)) CROSS="${PLATFORM}" TILES=1 SOUND=1 RELEASE=1 LOCALIZE=1 LANGUAGES=all BACKTRACE=1 PCH=0 bindist mv cataclysmdda-0.F.zip cdda-${{ matrix.artifact }}-${{ needs.release.outputs.timestamp }}.zip - name: Build CDDA (windows msvc) if: runner.os == 'Windows' + env: + VCPKG_OVERLAY_TRIPLETS: ${{ github.workspace }}\.github\vcpkg_triplets run: | msbuild -m -p:Configuration=Release -p:Platform=${{ matrix.arch }} "-target:Cataclysm-vcpkg-static;JsonFormatter-vcpkg-static" msvc-full-features\Cataclysm-vcpkg-static.sln .\build-scripts\windist.ps1 diff --git a/.github/workflows/text-changes-analyzer.yml b/.github/workflows/text-changes-analyzer.yml new file mode 100644 index 0000000000000..2209fd322b36b --- /dev/null +++ b/.github/workflows/text-changes-analyzer.yml @@ -0,0 +1,53 @@ +name: Text Changes Analyzer + + +on: + pull_request: + branches: + - master + paths: + - '.github/workflows/text-changes-analyzer.yml' + - 'tools/pot_diff.py' + - 'src/*.h' + - 'src/*.cpp' + - '**.json' + + +jobs: + analyze-text-changes: + runs-on: ubuntu-20.04 + steps: + - name: "Install dependencies" + run: | + sudo apt-get update + sudo apt-get install python3-pip gettext + sudo pip3 install polib + - name: "Checkout test merge commit" + uses: actions/checkout@v2 + - name: "Compute base commit and test merge commit" + id: get-commit-hash + run: | + echo "::set-output name=test_merge_commit::$(git rev-parse HEAD)" + echo "::set-output name=head_commit::$(git log -1 --format='%B' | grep -o -E -e 'Merge\s([0-9a-f]{40})\sinto' | grep -o -E -e '[0-9a-f]{40}')" + echo "::set-output name=base_commit::$(git log -1 --format='%B' | grep -o -E -e 'into\s([0-9a-f]{40})$' | grep -o -E -e '[0-9a-f]{40}')" + - name: "Generate translation template on test merge commit" + run: | + rm -f lang/po/cataclysm-dda.pot + ./lang/update_pot.sh + cp lang/po/cataclysm-dda.pot ~/merge.pot + - name: "Checkout base commit" + uses: actions/checkout@v2 + with: + ref: ${{ steps.get-commit-hash.outputs.base_commit }} + - name: "Generate translation template on base commit" + run: | + rm -f lang/po/cataclysm-dda.pot + ./lang/update_pot.sh + cp lang/po/cataclysm-dda.pot ~/base.pot + - name: "Checkout test merge commit" + uses: actions/checkout@v2 + with: + ref: ${{ steps.get-commit-hash.outputs.test_merge_commit }} + - name: "List text changes" + run: | + python3 ./tools/pot_diff.py ~/base.pot ~/merge.pot diff --git a/CMakeLists.txt b/CMakeLists.txt index c637e34414d3a..5b51058c65892 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -245,6 +245,8 @@ endif () set(CMAKE_THREAD_PREFER_PTHREAD True) find_package(Threads REQUIRED) +FIND_PACKAGE(ZLIB REQUIRED) + # Check for build types and libraries if (TILES) # Find SDL, SDL_ttf & SDL_image for graphical install diff --git a/LICENSE-OFL-Terminus-Font.txt b/LICENSE-OFL-Terminus-Font.txt index 44d94754af64a..e09cb4876b65a 100644 --- a/LICENSE-OFL-Terminus-Font.txt +++ b/LICENSE-OFL-Terminus-Font.txt @@ -1,6 +1,9 @@ Copyright (c) 2019 Dimitar Toshkov Zhekov, with Reserved Font Name "Terminus Font". +Copyright (c) 2017 tisimst +with Reserved Font Name "Vecterminus" + Copyright (c) 2011 Tilman Blumenbach, with Reserved Font Name "Terminus (TTF)". diff --git a/LICENSE.txt b/LICENSE.txt index 85cbf620194a1..76d2737fc8fb8 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -4,6 +4,8 @@ GNU Unifont (data/font/unifont.ttf) is licensed under GNU General Public License Terminus Font (data/font/terminus.ttf) is licensed under the SIL Open Font License (see LICENSE-OFL-Terminus-Font.txt). +Vecterminus Font (data/font/VecTerminus12Medium.otf) is licensed under the SIL Open Font License (see LICENSE-OFL-Terminus-Font.txt). + CATCH unit-test framework (tests/catch/catch.hpp) is licensed under the Boost Software License. Visit https://github.com/philsquared/Catch/blob/master/LICENSE.txt to read the license. PLF List and PLF Colony (src/list.h, src/colony.h) are licensed under the zLib license (https://www.zlib.net/zlib_license.html). diff --git a/Makefile b/Makefile index ece8d169321f7..840222a3cf96b 100644 --- a/Makefile +++ b/Makefile @@ -904,6 +904,8 @@ ifeq ($(LTO), 1) endif endif +LDFLAGS += -lz + all: version $(CHECKS) $(TARGET) $(L10N) $(TESTS) @ @@ -957,7 +959,7 @@ MO_DEPS := \ $(shell find data/{raw,json,mods,core,help} -type f -name '*.json') lang/mo_built.stamp: $(MO_DEPS) - lang/compile_mo.sh $(LANGUAGES) + $(MAKE) -C lang touch $@ localization: lang/mo_built.stamp @@ -1020,7 +1022,7 @@ endif LICENSE.txt LICENSE-OFL-Terminus-Font.txt -t $(DATA_PREFIX) mkdir -p $(LOCALE_DIR) ifdef LANGUAGES - LOCALE_DIR=$(LOCALE_DIR) lang/compile_mo.sh $(LANGUAGES) + $(MAKE) -C lang endif endif @@ -1056,7 +1058,7 @@ endif LICENSE.txt LICENSE-OFL-Terminus-Font.txt -t $(DATA_PREFIX) mkdir -p $(LOCALE_DIR) ifdef LANGUAGES - LOCALE_DIR=$(LOCALE_DIR) lang/compile_mo.sh $(LANGUAGES) + $(MAKE) -C lang endif endif @@ -1104,7 +1106,7 @@ endif cp -R data/title $(APPDATADIR) cp -R data/help $(APPDATADIR) ifdef LANGUAGES - lang/compile_mo.sh $(LANGUAGES) + $(MAKE) -C lang mkdir -p $(APPRESOURCESDIR)/lang/mo/ cp -pR lang/mo/* $(APPRESOURCESDIR)/lang/mo/ endif diff --git a/android/app/jni/src/Android.mk b/android/app/jni/src/Android.mk index ba04c247b3ff2..c766a26278cc0 100644 --- a/android/app/jni/src/Android.mk +++ b/android/app/jni/src/Android.mk @@ -14,7 +14,7 @@ LOCAL_SRC_FILES := $(sort $(FILE_LIST:$(LOCAL_PATH)/%=%)) LOCAL_SHARED_LIBRARIES := libhidapi SDL2 SDL2_mixer SDL2_image SDL2_ttf mpg123 -LOCAL_LDLIBS := -lGLESv1_CM -lGLESv2 -llog +LOCAL_LDLIBS := -lGLESv1_CM -lGLESv2 -llog -lz LOCAL_CFLAGS += -DTILES=1 -DSDL_SOUND=1 -DBACKTRACE=1 -DLOCALIZE=1 -Wextra -Wall -fsigned-char diff --git a/build-scripts/requirements.sh b/build-scripts/requirements.sh index 8c294746e689f..73b0e5cbf1c43 100644 --- a/build-scripts/requirements.sh +++ b/build-scripts/requirements.sh @@ -54,31 +54,27 @@ fi # Influenced by https://github.com/zer0main/battleship/blob/master/build/windows/requirements.sh if [ -n "${MXE_TARGET}" ]; then - $travis_retry sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 84C7C89FC632241A6999ED0A580873F586B72ED9 - sudo add-apt-repository 'deb [arch=amd64] https://mirror.mxe.cc/repos/apt xenial main' sudo dpkg --add-architecture i386 - # We need to treat apt-get update warnings as errors for which the exit code - # is not sufficient. The following workaround inspired by - # https://unix.stackexchange.com/questions/175146/apt-get-update-exit-status/ - exec {fd}>&2 - $travis_retry bash -o pipefail -c \ - "sudo apt-get update 2>&1 | tee /dev/fd/$fd | ( ! grep -q -e '^Err:' -e '^[WE]:' )" - exec {fd}>&- - - MXE2_TARGET=$(echo "$MXE_TARGET" | sed 's/_/-/g') - export MXE_DIR=/usr/lib/mxe/usr/bin - $travis_retry sudo apt-get --yes install \ - mxe-${MXE2_TARGET}-gcc \ - mxe-${MXE2_TARGET}-gettext \ - mxe-${MXE2_TARGET}-glib \ - mxe-${MXE2_TARGET}-sdl2 \ - mxe-${MXE2_TARGET}-sdl2-ttf \ - mxe-${MXE2_TARGET}-sdl2-image \ - mxe-${MXE2_TARGET}-sdl2-mixer \ - wine \ - wine32 - export PLATFORM='i686-w64-mingw32.static' - export CROSS_COMPILATION="${MXE_DIR}/${PLATFORM}-" + sudo apt update + $travis_retry sudo apt-get --yes install wine wine32 + + set +e + retry=0 + until [[ "$retry" -ge 5 ]]; do + curl -L -o mxe-i686.tar.xz https://github.com/BrettDong/MXE-GCC/releases/download/mxe-gcc-11.2/mxe-i686.tar.xz && curl -L -o mxe-i686.tar.xz.sha256 https://github.com/BrettDong/MXE-GCC/releases/download/mxe-gcc-11.2/mxe-i686.tar.xz.sha256 && shasum -a 256 -c ./mxe-i686.tar.xz.sha256 && break + retry=$((retry+1)) + rm -f mxe-i686.tar.xz mxe-i686.tar.xz.sha256 + sleep 10 + done + if [[ "$retry" -ge 5 ]]; then + echo "Error downloading or checksum failed for MXE i686" + exit 1 + fi + set -e + sudo tar xJf mxe-i686.tar.xz -C /opt + + export MXE_DIR=/opt/mxe + export CROSS_COMPILATION="${MXE_DIR}/usr/bin/${MXE_TARGET}-" # Need to overwrite CXX to make the Makefile $CROSS logic work right. export CXX="$COMPILER" export CCACHE=1 @@ -96,7 +92,7 @@ if [ -n "${MXE_TARGET}" ]; then exit 1 fi set -e - sudo tar -xzf libbacktrace-i686-w64-mingw32.tar.gz --exclude=LICENSE -C ${MXE_DIR}/../${PLATFORM} + sudo tar -xzf libbacktrace-i686-w64-mingw32.tar.gz --exclude=LICENSE -C ${MXE_DIR}/usr/${MXE_TARGET} fi if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then diff --git a/data/font/VecTerminus12Medium.otf b/data/font/VecTerminus12Medium.otf new file mode 100644 index 0000000000000..bf4a7a32c3420 Binary files /dev/null and b/data/font/VecTerminus12Medium.otf differ diff --git a/data/font/terminus.fon b/data/font/terminus.fon deleted file mode 100644 index 6258a062b84b8..0000000000000 Binary files a/data/font/terminus.fon and /dev/null differ diff --git a/data/json/achievements.json b/data/json/achievements.json index 4e647c9cb364e..d0e9bfcac3ec6 100644 --- a/data/json/achievements.json +++ b/data/json/achievements.json @@ -823,7 +823,7 @@ "id": "achievement_lvl_10_tailor", "type": "achievement", "name": "Fashion Designer", - "description": "Male, female, and mutant fashion alike.", + "description": "From catwalk to cataclysm.", "requirements": [ { "event_statistic": "num_gains_tailor_level_10", "is": ">=", "target": 1 } ], "hidden_by": [ "achievement_lvl_7_tailor" ] }, diff --git a/data/json/construction.json b/data/json/construction.json index 58ac68e93aede..83ede539d4380 100644 --- a/data/json/construction.json +++ b/data/json/construction.json @@ -651,7 +651,7 @@ "required_skills": [ [ "fabrication", 5 ] ], "time": "60 m", "tools": [ [ [ "oxy_torch", 4 ], [ "welder", 20 ], [ "welder_crude", 30 ], [ "toolset", 30 ] ] ], - "qualities": [ [ { "id": "SAW_M", "level": 1 } ], [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "SAW_M", "level": 1 } ], [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "pipe", 6 ] ], [ [ "sheet_metal", 2 ] ] ], "pre_terrain": "t_floor", "post_terrain": "t_bars" @@ -957,7 +957,7 @@ "category": "CONSTRUCT", "required_skills": [ [ "fabrication", 4 ] ], "time": "90 m", - "qualities": [ { "id": "GLARE", "level": 2 } ], + "qualities": [ { "id": "GLARE", "level": 1 } ], "tools": [ [ [ "oxy_torch", 10 ], [ "welder", 50 ], [ "welder_crude", 75 ], [ "toolset", 75 ] ] ], "components": [ [ [ "steel_plate", 2 ] ] ], "pre_terrain": "t_pit_shallow", @@ -971,7 +971,7 @@ "category": "CONSTRUCT", "required_skills": [ [ "fabrication", 4 ] ], "time": "90 m", - "qualities": [ { "id": "GLARE", "level": 2 } ], + "qualities": [ { "id": "GLARE", "level": 1 } ], "tools": [ [ [ "oxy_torch", 10 ], [ "welder", 50 ], [ "welder_crude", 75 ], [ "toolset", 75 ] ] ], "components": [ [ [ "steel_plate", 2 ] ] ], "pre_terrain": "t_scrap_wall_halfway", @@ -1208,7 +1208,7 @@ "category": "CONSTRUCT", "required_skills": [ [ "fabrication", 5 ] ], "time": "90 m", - "qualities": [ { "id": "GLARE", "level": 2 } ], + "qualities": [ { "id": "GLARE", "level": 1 } ], "tools": [ [ [ "oxy_torch", 10 ], [ "welder", 50 ], [ "welder_crude", 75 ], [ "toolset", 75 ] ] ], "components": [ [ [ "steel_plate", 2 ] ] ], "pre_note": "Must be supported on at least two sides.", @@ -3916,7 +3916,7 @@ "required_skills": [ [ "fabrication", 5 ] ], "time": "90 m", "tools": [ [ [ "oxy_torch", 4 ], [ "welder", 20 ], [ "welder_crude", 30 ], [ "toolset", 30 ] ] ], - "qualities": [ [ { "id": "SAW_M", "level": 1 } ], [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "SAW_M", "level": 1 } ], [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "pipe", 12 ] ], [ [ "sheet_metal", 4 ] ] ], "pre_terrain": "t_window_reinforced", "post_terrain": "t_metal_grate_window" @@ -3930,7 +3930,7 @@ "required_skills": [ [ "fabrication", 5 ] ], "time": "90 m", "tools": [ [ [ "oxy_torch", 4 ], [ "welder", 20 ], [ "welder_crude", 30 ], [ "toolset", 30 ] ] ], - "qualities": [ [ { "id": "SAW_M", "level": 1 } ], [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "SAW_M", "level": 1 } ], [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "pipe", 12 ] ], [ [ "sheet_metal", 4 ] ] ], "pre_terrain": "t_window_reinforced_noglass", "post_terrain": "t_metal_grate_window" @@ -3944,7 +3944,7 @@ "required_skills": [ [ "fabrication", 2 ] ], "time": "30 m", "tools": [ [ [ "oxy_torch", 4 ], [ "welder", 20 ], [ "welder_crude", 30 ], [ "toolset", 30 ] ] ], - "qualities": [ [ { "id": "SAW_M", "level": 1 } ], [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "SAW_M", "level": 1 } ], [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "nail", 4 ] ], [ [ "sheet", 2 ] ], [ [ "stick", 1 ] ], [ [ "string_36", 1 ] ] ], "pre_terrain": "t_metal_grate_window", "post_terrain": "t_metal_grate_window_with_curtain" @@ -3958,7 +3958,7 @@ "required_skills": [ [ "fabrication", 2 ] ], "time": "30 m", "tools": [ [ [ "oxy_torch", 4 ], [ "welder", 20 ], [ "welder_crude", 30 ], [ "toolset", 30 ] ] ], - "qualities": [ [ { "id": "SAW_M", "level": 1 } ], [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "SAW_M", "level": 1 } ], [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "nail", 4 ] ], [ [ "sheet", 2 ] ], [ [ "stick", 1 ] ], [ [ "string_36", 1 ] ] ], "pre_terrain": "t_metal_grate_window", "post_terrain": "t_metal_grate_window_with_curtain" @@ -4387,7 +4387,7 @@ "required_skills": [ [ "fabrication", 5 ], [ "mechanics", 6 ] ], "time": "60 m", "tools": [ [ [ "oxy_torch", 4 ], [ "welder", 20 ], [ "welder_crude", 30 ], [ "toolset", 30 ] ] ], - "qualities": [ [ { "id": "SAW_M", "level": 1 } ], [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "SAW_M", "level": 1 } ], [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "chain", 16 ] ], [ [ "wheel_metal", 2 ] ], [ [ "pipe", 4 ] ] ], "pre_note": "Must be adjacent to a reinforced concrete wall that is itself adjacent to a metal gate in order to open said gate.", "pre_special": "check_empty", @@ -4401,7 +4401,7 @@ "required_skills": [ [ "fabrication", 4 ], [ "mechanics", 4 ] ], "time": "120 m", "tools": [ [ [ "oxy_torch", 10 ], [ "welder", 50 ], [ "welder_crude", 75 ], [ "toolset", 75 ] ] ], - "qualities": [ [ { "id": "SAW_M", "level": 2 } ], [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "SAW_M", "level": 2 } ], [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "steel_lump", 8 ], [ "steel_chunk", 24 ], [ "scrap", 72 ] ], [ [ "sheet_metal", 16 ] ], diff --git a/data/json/effect_on_condition.json b/data/json/effect_on_condition.json index d89b95172844d..ddce2fb717681 100644 --- a/data/json/effect_on_condition.json +++ b/data/json/effect_on_condition.json @@ -175,60 +175,6 @@ "condition": { "or": [ { "u_at_om_location": "lab_subway_ns" }, { "u_at_om_location": "lab_subway_ew" } ] }, "effect": [ { "u_message": "AMBIENT_LAB_SUBWAY", "snippet": true, "sound": true } ] }, - { - "type": "effect_on_condition", - "id": "night_messages", - "recurrence_min": "4 hours", - "recurrence_max": "8 hours", - "condition": { - "and": [ - { "one_in_chance": 3 }, - { "not": "is_day" }, - "u_can_see", - { "is_weather": "clear" }, - { "not": { "days_since_cataclysm": 14 } }, - "u_is_outside" - ] - }, - "deactivate_condition": { "days_since_cataclysm": 14 }, - "effect": [ { "u_message": "NIGHT_MESSAGES_1", "snippet": true } ] - }, - { - "type": "effect_on_condition", - "id": "night_messages2", - "recurrence_min": "4 hours", - "recurrence_max": "8 hours", - "condition": { - "and": [ - { "one_in_chance": 3 }, - { "not": "is_day" }, - "u_can_see", - { "is_weather": "clear" }, - { "days_since_cataclysm": 14 }, - { "not": { "days_since_cataclysm": 50 } }, - "u_is_outside" - ] - }, - "deactivate_condition": { "days_since_cataclysm": 50 }, - "effect": [ { "u_message": "NIGHT_MESSAGES_2", "snippet": true } ] - }, - { - "type": "effect_on_condition", - "id": "night_messages3", - "recurrence_min": "4 hours", - "recurrence_max": "8 hours", - "condition": { - "and": [ - { "one_in_chance": 3 }, - { "not": "is_day" }, - "u_can_see", - { "is_weather": "clear" }, - { "days_since_cataclysm": 50 }, - "u_is_outside" - ] - }, - "effect": [ { "u_message": "NIGHT_MESSAGES_3", "snippet": true } ] - }, { "type": "effect_on_condition", "id": "eoc_robofac_surveillance", diff --git a/data/json/effects.json b/data/json/effects.json index 9d8f2231adb60..851ba35b8907b 100644 --- a/data/json/effects.json +++ b/data/json/effects.json @@ -991,7 +991,7 @@ "desc": [ "You have an infected wound." ], "apply_memorial_log": "Contracted an infection.", "remove_memorial_log": "Recovered from an infection… this time.", - "apply_message": "Your bite wound feels infected.", + "apply_message": "Your wound feels infected.", "resist_traits": [ "INFRESIST" ], "main_parts_only": true, "rating": "bad", @@ -2477,13 +2477,14 @@ }, { "type": "effect_type", - "id": "nightmares" + "id": "nightmares", + "max_duration": "72 hours" }, { "type": "effect_type", "id": "incorporeal", "name": [ "Incorporeal" ], - "desc": [ "You lack substance, as if composed of mist." ] + "desc": [ "You lack substance, as if you aren't quite fully here." ] }, { "type": "effect_type", diff --git a/data/json/field_type.json b/data/json/field_type.json index 778901dbe60bd..8207c46a8bdb9 100644 --- a/data/json/field_type.json +++ b/data/json/field_type.json @@ -1079,7 +1079,7 @@ "intensity_levels": [ { "name": "swirl of meth smoke", "translucency": 5 }, { "name": "meth smoke", "color": "light_gray" }, - { "name": "thick meth smoke", "color": "dark_gray" } + { "name": "thick meth smoke", "color": "dark_gray" } ], "npc_complain": { "chance": 20, "issue": "meth_smoke", "duration": "30 minutes", "speech": "" }, "decay_amount_factor": 5, @@ -1133,7 +1133,7 @@ "type": "field_type", "legacy_enum_id": 38, "intensity_levels": [ - { "name": "smoke", "sym": "8", "dangerous": true, "light_emitted": 20, "translucency": 1 }, + { "name": "smoke", "sym": "8", "color": "light_red", "dangerous": true, "light_emitted": 20, "translucency": 1 }, { "name": "airborne incendiary", "color": "light_red", "light_emitted": 60, "translucency": 10 }, { "name": "airborne incendiary", diff --git a/data/json/flags.json b/data/json/flags.json index cb3001d31507d..d0b7df45473da 100644 --- a/data/json/flags.json +++ b/data/json/flags.json @@ -124,6 +124,11 @@ "id": "FIELD_DRESS_FAILED", "type": "json_flag" }, + { + "id": "HIDDEN", + "type": "json_flag", + "info": "You have marked this article to not display a sprite when worn." + }, { "id": "QUARTERED", "type": "json_flag" @@ -1072,6 +1077,10 @@ "id": "DIMENSIONAL_ANCHOR", "type": "json_flag" }, + { + "id": "PORTAL_PROOF", + "type": "json_flag" + }, { "id": "DISABLE_SIGHTS", "type": "json_flag" diff --git a/data/json/furniture_and_terrain/furniture-domestic_plants.json b/data/json/furniture_and_terrain/furniture-domestic_plants.json index 37dede65583e7..e77b8d2a701b7 100644 --- a/data/json/furniture_and_terrain/furniture-domestic_plants.json +++ b/data/json/furniture_and_terrain/furniture-domestic_plants.json @@ -81,7 +81,7 @@ "move_cost_mod": 0, "required_str": -1, "flags": [ "PLANT", "SEALED", "TRANSPARENT", "CONTAINER", "NOITEM", "TINY", "DONT_REMOVE_ROTTEN", "GROWTH_HARVEST" ], - "examine_action": "aggie_plant", + "examine_action": "harvest_plant", "bash": { "str_min": 4, "str_max": 10, "sound": "crunch.", "sound_fail": "whish." }, "plant_data": { "transform": "f_null", "base": "f_null" } }, @@ -172,7 +172,7 @@ "move_cost_mod": 0, "required_str": -1, "flags": [ "PLANT", "SEALED", "TRANSPARENT", "CONTAINER", "NOITEM", "TINY", "DONT_REMOVE_ROTTEN", "GROWTH_HARVEST" ], - "examine_action": "aggie_plant", + "examine_action": "harvest_plant", "deconstruct": { "items": [ { "item": "2x4", "count": [ 11, 12 ] }, diff --git a/data/json/furniture_and_terrain/terrain-fences-gates.json b/data/json/furniture_and_terrain/terrain-fences-gates.json index df4cab32314ad..9188446997f24 100644 --- a/data/json/furniture_and_terrain/terrain-fences-gates.json +++ b/data/json/furniture_and_terrain/terrain-fences-gates.json @@ -631,7 +631,7 @@ "color": "brown", "looks_like": "t_chainfence", "move_cost": 0, - "flags": [ "TRANSPARENT", "NOITEM", "PERMEABLE", "AUTO_WALL_SYMBOL", "BURROWABLE" ], + "flags": [ "TRANSPARENT", "NOITEM", "PERMEABLE", "AUTO_WALL_SYMBOL", "BURROWABLE", "CLIMBABLE" ], "connects_to": "CHAINFENCE", "examine_action": "chainfence", "deconstruct": { diff --git a/data/json/furniture_and_terrain/terrain-windows.json b/data/json/furniture_and_terrain/terrain-windows.json index 94d82b6f35f22..5f23997d8eb7e 100644 --- a/data/json/furniture_and_terrain/terrain-windows.json +++ b/data/json/furniture_and_terrain/terrain-windows.json @@ -689,13 +689,13 @@ "move_cost": 0, "roof": "t_flat_roof", "hacksaw": { - "result": "t_window_empty", + "result": "t_window", "duration": "10 minutes", "message": "You finish cutting the metal.", "byproducts": [ { "item": "rebar", "count": [ 1, 8 ] } ] }, "flags": [ "TRANSPARENT", "NOITEM", "CONNECT_TO_WALL", "THIN_OBSTACLE", "WINDOW" ], - "oxytorch": { "result": "t_window_empty", "duration": "9 seconds", "byproducts": [ { "item": "rebar", "count": [ 1, 2 ] } ] }, + "oxytorch": { "result": "t_window", "duration": "9 seconds", "byproducts": [ { "item": "rebar", "count": [ 1, 2 ] } ] }, "bash": { "str_min": 3, "str_max": 6, @@ -718,7 +718,14 @@ "color": "light_gray", "move_cost": 0, "roof": "t_flat_roof", + "hacksaw": { + "result": "t_window_empty", + "duration": "10 minutes", + "message": "You finish cutting the metal.", + "byproducts": [ { "item": "rebar", "count": [ 1, 8 ] } ] + }, "flags": [ "TRANSPARENT", "NOITEM", "CONNECT_TO_WALL", "THIN_OBSTACLE", "WINDOW", "PERMEABLE" ], + "oxytorch": { "result": "t_window_empty", "duration": "9 seconds", "byproducts": [ { "item": "rebar", "count": [ 1, 2 ] } ] }, "bash": { "str_min": 60, "str_max": 250, diff --git a/data/json/harvest.json b/data/json/harvest.json index 65eda39a32dd6..081f830bb3013 100644 --- a/data/json/harvest.json +++ b/data/json/harvest.json @@ -336,6 +336,7 @@ "flags": [ "FILTHY", "NO_STERILE", "NO_PACKED" ], "faults": [ "fault_bionic_salvaged" ] }, + { "drop": "skull_human", "type": "bone", "scale_num": [ 1, 1 ], "max": 1 }, { "drop": "sinew", "type": "bone", "mass_ratio": 0.001 }, { "drop": "cable", "base_num": [ 1, 3 ], "scale_num": [ 0.2, 0.6 ], "max": 8, "type": "flesh" }, { "drop": "bone_human", "base_num": [ 1, 2 ], "scale_num": [ 0.4, 0.7 ], "max": 10, "type": "bone" }, @@ -458,6 +459,48 @@ { "drop": "fat", "type": "flesh", "mass_ratio": 0.07 } ] }, + { + "id": "mammal_fur_lupine", + "//": "drops regular stomach", + "type": "harvest", + "entries": [ + { "drop": "lupine_sample", "type": "bionic_group" }, + { "drop": "meat", "type": "flesh", "mass_ratio": 0.3 }, + { "drop": "meat_scrap", "type": "flesh", "mass_ratio": 0.03 }, + { "drop": "lung", "type": "flesh", "mass_ratio": 0.0035 }, + { "drop": "animal_blood", "type": "blood", "mass_ratio": 0.1 }, + { "drop": "liver", "type": "offal", "mass_ratio": 0.01 }, + { "drop": "brain", "type": "flesh", "mass_ratio": 0.005 }, + { "drop": "sweetbread", "type": "flesh", "mass_ratio": 0.002 }, + { "drop": "kidney", "type": "offal", "mass_ratio": 0.002 }, + { "drop": "stomach", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, + { "drop": "bone", "type": "bone", "mass_ratio": 0.15 }, + { "drop": "sinew", "type": "bone", "mass_ratio": 0.00035 }, + { "drop": "raw_fur", "type": "skin", "mass_ratio": 0.02 }, + { "drop": "fat", "type": "flesh", "mass_ratio": 0.07 } + ] + }, + { + "id": "mammal_fur_feline", + "//": "drops regular stomach", + "type": "harvest", + "entries": [ + { "drop": "feline_sample", "type": "bionic_group" }, + { "drop": "meat", "type": "flesh", "mass_ratio": 0.3 }, + { "drop": "meat_scrap", "type": "flesh", "mass_ratio": 0.03 }, + { "drop": "lung", "type": "flesh", "mass_ratio": 0.0035 }, + { "drop": "animal_blood", "type": "blood", "mass_ratio": 0.1 }, + { "drop": "liver", "type": "offal", "mass_ratio": 0.01 }, + { "drop": "brain", "type": "flesh", "mass_ratio": 0.005 }, + { "drop": "sweetbread", "type": "flesh", "mass_ratio": 0.002 }, + { "drop": "kidney", "type": "offal", "mass_ratio": 0.002 }, + { "drop": "stomach", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, + { "drop": "bone", "type": "bone", "mass_ratio": 0.15 }, + { "drop": "sinew", "type": "bone", "mass_ratio": 0.00035 }, + { "drop": "raw_fur", "type": "skin", "mass_ratio": 0.02 }, + { "drop": "fat", "type": "flesh", "mass_ratio": 0.07 } + ] + }, { "id": "mutant_mammal_fur", "//": "drops regular stomach", @@ -599,6 +642,7 @@ "//": "drops regular stomach", "type": "harvest", "entries": [ + { "drop": "skull_human", "type": "bone", "scale_num": [ 1, 1 ], "max": 1 }, { "drop": "mutant_human_flesh", "type": "flesh", "mass_ratio": 0.34 }, { "drop": "hstomach", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, { "drop": "mutant_human_blood", "type": "blood", "mass_ratio": 0.1 }, @@ -726,6 +770,48 @@ { "drop": "fat", "type": "flesh", "mass_ratio": 0.07 } ] }, + { + "id": "reptile_large_leather", + "//": "drops large stomach", + "type": "harvest", + "entries": [ + { "drop": "reptile_sample", "type": "bionic_group" }, + { "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 }, + { "drop": "liver", "type": "offal", "mass_ratio": 0.01 }, + { "drop": "animal_blood", "type": "blood", "mass_ratio": 0.1 }, + { "drop": "brain", "type": "flesh", "mass_ratio": 0.005 }, + { "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": "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": "fat", "type": "flesh", "mass_ratio": 0.07 } + ] + }, + { + "id": "mammal_large_bovine", + "//": "drops large stomach", + "type": "harvest", + "entries": [ + { "drop": "bovine_sample", "type": "bionic_group" }, + { "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 }, + { "drop": "liver", "type": "offal", "mass_ratio": 0.01 }, + { "drop": "animal_blood", "type": "blood", "mass_ratio": 0.1 }, + { "drop": "brain", "type": "flesh", "mass_ratio": 0.005 }, + { "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": "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": "fat", "type": "flesh", "mass_ratio": 0.07 } + ] + }, { "id": "mutant_mammal_large_leather", "//": "drops large stomach", @@ -745,6 +831,26 @@ { "drop": "mutant_fat", "type": "flesh", "mass_ratio": 0.07 } ] }, + { + "id": "mutant_mammal_molerat_leather", + "//": "drops large stomach", + "type": "harvest", + "entries": [ + { "drop": "molerat_sample", "type": "bionic_group" }, + { "drop": "mutant_meat", "type": "flesh", "mass_ratio": 0.32 }, + { "drop": "mutant_meat_scrap", "type": "flesh", "mass_ratio": 0.01 }, + { "drop": "mutant_lung", "type": "offal", "mass_ratio": 0.0035 }, + { "drop": "mutant_liver", "type": "offal", "mass_ratio": 0.01 }, + { "drop": "mutant_blood", "type": "blood", "mass_ratio": 0.1 }, + { "drop": "mutant_brain", "type": "offal", "mass_ratio": 0.005 }, + { "drop": "mutant_kidney", "type": "offal", "mass_ratio": 0.002 }, + { "drop": "stomach_large", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, + { "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_fat", "type": "flesh", "mass_ratio": 0.07 } + ] + }, { "id": "mammal_small_wool", "//": "does not drop stomach or other small organs", @@ -838,6 +944,25 @@ { "drop": "mutant_fat", "type": "flesh", "mass_ratio": 0.07 } ] }, + { + "id": "mutant_animal_large_reptile_noskin", + "//": "for those vertebrates that don't have something you can skin off of them", + "type": "harvest", + "entries": [ + { "drop": "reptile_sample", "type": "bionic_group" }, + { "drop": "mutant_meat", "type": "flesh", "mass_ratio": 0.32 }, + { "drop": "mutant_meat_scrap", "type": "flesh", "mass_ratio": 0.01 }, + { "drop": "mutant_lung", "type": "offal", "mass_ratio": 0.0035 }, + { "drop": "mutant_liver", "type": "offal", "mass_ratio": 0.01 }, + { "drop": "mutant_blood", "type": "blood", "mass_ratio": 0.1 }, + { "drop": "mutant_brain", "type": "offal", "mass_ratio": 0.005 }, + { "drop": "mutant_kidney", "type": "offal", "mass_ratio": 0.002 }, + { "drop": "stomach_large", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, + { "drop": "bone", "type": "bone", "mass_ratio": 0.15 }, + { "drop": "sinew", "type": "bone", "mass_ratio": 0.00035 }, + { "drop": "mutant_fat", "type": "flesh", "mass_ratio": 0.07 } + ] + }, { "id": "mutant_animal_large_noskin_frog", "//": "for those vertebrates that don't have something you can skin off of them", @@ -941,6 +1066,7 @@ "type": "harvest", "message": "", "entries": [ + { "drop": "spider_sample", "type": "bionic_group" }, { "drop": "mutant_blood", "type": "blood", "mass_ratio": 0.1 }, { "drop": "mutant_meat", "type": "flesh", "mass_ratio": 0.33 }, { "drop": "mutant_fat", "type": "flesh", "mass_ratio": 0.04 }, @@ -984,6 +1110,7 @@ "message": "", "//": "More legs = more sinew, more endochitin, less rest", "entries": [ + { "drop": "insect_sample", "type": "bionic_group" }, { "drop": "mutant_blood", "type": "blood", "mass_ratio": 0.1 }, { "drop": "mutant_meat", "type": "flesh", "mass_ratio": 0.2 }, { "drop": "mutant_fat", "type": "flesh", "mass_ratio": 0.01 }, @@ -1047,6 +1174,7 @@ "type": "harvest", "message": "What appeared to be insect hairs on the chitin of this creature look more like tiny feathers as you pare them back. Inside is a bundle of bubble-like tissue sacs that appear to be floating, which doesn't fit with what you know about real bees.", "entries": [ + { "drop": "insect_sample", "type": "bionic_group" }, { "drop": "mutant_meat", "type": "flesh", "mass_ratio": 0.23 }, { "drop": "mutant_blood", "type": "blood", "mass_ratio": 0.1 }, { "drop": "sinew", "type": "bone", "mass_ratio": 0.01 }, @@ -1239,6 +1367,7 @@ "//": "a monstrous horror, probably the most destructive entity you will ever see", "type": "harvest", "entries": [ + { "drop": "skull_human", "type": "bone", "scale_num": [ 1, 1 ], "max": 1 }, { "drop": "human_flesh", "type": "flesh", "mass_ratio": 0.2 }, { "drop": "hstomach", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, { "drop": "human_fat", "type": "flesh", "mass_ratio": 0.1 }, @@ -1280,6 +1409,7 @@ "id": "mutant_human", "type": "harvest", "entries": [ + { "drop": "skull_human", "type": "bone", "scale_num": [ 1, 1 ], "max": 1 }, { "drop": "mutant_human_flesh", "type": "flesh", "mass_ratio": 0.2 }, { "drop": "mutant_human_blood", "type": "blood", "mass_ratio": 0.1 }, { "drop": "hstomach", "scale_num": [ 1, 1 ], "max": 1, "type": "offal" }, diff --git a/data/json/hobbies.json b/data/json/hobbies.json index 7521369d2a7ea..16f10b5eac36e 100644 --- a/data/json/hobbies.json +++ b/data/json/hobbies.json @@ -385,8 +385,9 @@ "id": "marathon_runner", "name": "Marathon Runner", "description": "You went and ran the Boston Marathon every year. Now, that training came in handy in avoiding the dead.", - "points": 2, - "skills": [ { "level": 4, "name": "swimming" } ] + "points": 5, + "traits": [ "GOODCARDIO", "FLEET" ], + "skills": [ { "level": 2, "name": "swimming" } ] }, { "type": "profession", diff --git a/data/json/item_actions.json b/data/json/item_actions.json index 24f5b35501882..8e2b5bde181e1 100644 --- a/data/json/item_actions.json +++ b/data/json/item_actions.json @@ -732,7 +732,7 @@ { "type": "item_action", "id": "PETFOOD", - "name": { "str": "Feed a wild animal… or a human" } + "name": { "str": "Feed a wild animal… or a human" } }, { "type": "item_action", diff --git a/data/json/itemgroups/Clothing_Gear/clothing.json b/data/json/itemgroups/Clothing_Gear/clothing.json index 59ee317e6f7db..7cb201321e622 100644 --- a/data/json/itemgroups/Clothing_Gear/clothing.json +++ b/data/json/itemgroups/Clothing_Gear/clothing.json @@ -224,21 +224,20 @@ "subtype": "collection", "//": "Standard set of clothes worn by a military helicopter pilot.", "items": [ - { "group": "clothing_soldier_shirt" }, - { "item": "jacket_army" }, - { "item": "pants_army" }, + { "item": "jacket_army", "prob": 40 }, + { "item": "flight_helmet", "ammo-item": "light_plus_battery_cell", "charges": [ 0, 150 ] }, + { "item": "mil_flight_suit", "prob": 80 }, + { "item": "nomex_gloves" }, { "item": "webbing_belt" }, - { "distribution": [ { "item": "socks", "prob": 95 }, { "item": "socks_wool", "prob": 5 } ] }, - { "item": "boots_combat" }, - { "item": "helmet_army", "prob": 80 }, + { "distribution": [ { "item": "socks", "prob": 30 }, { "item": "nomex_socks", "prob": 70 } ] }, { "item": "gloves_tactical", "prob": 60 }, + { "item": "boots_combat" }, { "distribution": [ { "collection": [ { "item": "sports_bra" }, { "item": "boy_shorts" } ] }, { "distribution": [ { "item": "briefs" }, { "item": "boxer_briefs" }, { "item": "boxer_shorts" } ] } ] }, - { "distribution": [ { "item": "fancy_sunglasses", "prob": 95 }, { "item": "glasses_bal", "prob": 5 } ] }, { "group": "clothing_watch", "prob": 85 }, { "item": "goggles_ir", "prob": 10, "charges": [ 0, 100 ] } ] diff --git a/data/json/itemgroups/Clothing_Gear/gear.json b/data/json/itemgroups/Clothing_Gear/gear.json index f80f72587f7b0..940b63635af39 100644 --- a/data/json/itemgroups/Clothing_Gear/gear.json +++ b/data/json/itemgroups/Clothing_Gear/gear.json @@ -31,7 +31,7 @@ [ "smokebomb", 5 ], [ "suppressor", 25 ], [ "suppressor_compact", 20 ], - [ "swat_armor", 20 ], + [ "swat_armor", 5 ], [ "tac_fullhelmet", 5 ], [ "tac_helmet", 10 ] ] diff --git a/data/json/itemgroups/Drugs_Tobacco_Alcohol/tobacco.json b/data/json/itemgroups/Drugs_Tobacco_Alcohol/tobacco.json new file mode 100644 index 0000000000000..fe0206a19471b --- /dev/null +++ b/data/json/itemgroups/Drugs_Tobacco_Alcohol/tobacco.json @@ -0,0 +1,76 @@ +[ + { + "type": "item_group", + "id": "tobacco_products", + "items": [ + { "item": "cig", "prob": 60, "charges": [ 1, 20 ] }, + { "item": "tobacco", "prob": 20, "charges": [ 1, 20 ] }, + { "item": "chaw", "prob": 20, "charges": [ 1, 20 ] }, + { "item": "cigar", "prob": 10, "charges": [ 1, 5 ] }, + { "item": "ecig", "prob": 10, "charges": [ 1, 40 ] }, + { "item": "advanced_ecig", "prob": 8, "charges": [ 1, 100 ] }, + [ "nicotine_liquid", 15 ], + [ "pipe_tobacco", 10 ] + ] + }, + { + "id": "pocket_cigar", + "type": "item_group", + "subtype": "collection", + "container-item": "case_cigar", + "items": [ + { "item": "cigar", "charges": [ 0, 2 ] }, + { + "distribution": [ { "item": "cigar_cutter", "prob": 50 }, { "item": "cigar_punch", "prob": 50 } ], + "prob": 50 + } + ] + }, + { + "id": "cigar_box_unopened", + "type": "item_group", + "subtype": "collection", + "container-item": "box_small_wood", + "items": [ { "item": "cigar", "charges": [ 25, 25 ] }, { "item": "paper", "charges": [ 2, 2 ] } ] + }, + { + "id": "cigar_box_opened", + "type": "item_group", + "subtype": "collection", + "container-item": "box_small_wood", + "entries": [ + { "item": "cigar", "charges": [ 0, 25 ] }, + { "item": "paper", "charges": [ 2, 2 ], "prob": 90 }, + { + "distribution": [ { "item": "cigar_cutter", "prob": 50 }, { "item": "cigar_punch", "prob": 50 } ], + "prob": 50 + } + ] + }, + { + "id": "misc_smoking_legal", + "type": "item_group", + "subtype": "collection", + "//": "Legal smokable item and something to light it with", + "entries": [ + { + "distribution": [ + { "item": "cig", "prob": 75, "charges": [ 1, 10 ] }, + { + "collection": [ + { "item": "tobacco", "charges-min": 1, "charges-max": 20 }, + { + "distribution": [ { "item": "rolling_paper", "prob": 70, "charges-min": 1, "charges-max": 30 }, { "item": "pipe_tobacco", "prob": 30 } ] + } + ], + "prob": 20 + }, + { "item": "cigar", "prob": 5, "charges": [ 1, 1 ] } + ] + }, + { + "distribution": [ { "item": "lighter", "charges": [ 0, 100 ] }, { "item": "matches", "charges": [ 1, 20 ] } ] + } + ] + } +] diff --git a/data/json/itemgroups/Labs/labs_mutagen.json b/data/json/itemgroups/Labs/labs_mutagen.json index a1ec5eb9dd4c1..6fa89fd978cff 100644 --- a/data/json/itemgroups/Labs/labs_mutagen.json +++ b/data/json/itemgroups/Labs/labs_mutagen.json @@ -46,6 +46,13 @@ { "item": "spider_egg", "prob": 20, "count-min": 1, "count-max": 12 }, { "item": "snail_sample", "prob": 40, "count": [ 1, 3 ] }, { "item": "frog_sample", "prob": 40, "count": [ 1, 3 ] }, + { "item": "insect_sample", "prob": 40, "count": [ 1, 3 ] }, + { "item": "bovine_sample", "prob": 40, "count": [ 1, 3 ] }, + { "item": "spider_sample", "prob": 40, "count": [ 1, 3 ] }, + { "item": "molerat_sample", "prob": 40, "count": [ 1, 3 ] }, + { "item": "reptile_sample", "prob": 40, "count": [ 1, 3 ] }, + { "item": "lupine_sample", "prob": 40, "count": [ 1, 3 ] }, + { "item": "feline_sample", "prob": 40, "count": [ 1, 3 ] }, { "item": "egg_reptile", "prob": 20, "count-min": 1, "count-max": 12 }, { "item": "water_clean", "container-item": "bottle_plastic", "prob": 65, "count": [ 1, 3 ], "sealed": false }, { "item": "water_mineral", "container-item": "bottle_plastic", "prob": 35, "count": [ 1, 2 ], "sealed": false } diff --git a/data/json/itemgroups/Locations_MapExtras/locations.json b/data/json/itemgroups/Locations_MapExtras/locations.json index 839445480b854..dcb32e6cc901c 100644 --- a/data/json/itemgroups/Locations_MapExtras/locations.json +++ b/data/json/itemgroups/Locations_MapExtras/locations.json @@ -27,8 +27,17 @@ }, { "type": "item_group", + "subtype": "distribution", "id": "smokelounge_items", - "items": [ [ "cigar", 65 ], [ "ecig", 25 ], [ "cig", 35 ], [ "tobacco", 45 ], [ "rolling_paper", 15 ], [ "pipe_tobacco", 10 ] ] + "entries": [ + { "item": "cigar", "prob": 65 }, + { "group": "cigar_box_opened", "prob": 25 }, + { "item": "ecig", "prob": 25 }, + { "item": "cig", "prob": 35 }, + { "item": "tobacco", "prob": 45 }, + { "item": "rolling_paper", "prob": 15 }, + { "item": "pipe_tobacco", "prob": 10 } + ] }, { "id": "cop_armory", @@ -812,6 +821,7 @@ [ "frame", 20 ], [ "basket", 25 ], [ "wrench", 10 ], + [ "wrench_large", 5 ], [ "shovel", 10 ], [ "claw_bar", 2 ], [ "crowbar", 10 ], @@ -1685,6 +1695,7 @@ [ "eyedrops", 20 ], [ "clock", 10 ], { "group": "tobacco_products", "prob": 151 }, + { "group": "cigar_box_opened", "prob": 15 }, { "item": "weed", "prob": 10, "charges": [ 1, 5 ] }, [ "joint", 10 ], [ "seed_weed", 15 ], @@ -2037,6 +2048,8 @@ { "item": "decoy_anarch", "prob": 10 }, { "item": "aspirin", "prob": 85, "charges": [ 1, 20 ] }, { "item": "maltballs", "prob": 30 }, + { "group": "cigar_box_opened", "prob": 20 }, + { "group": "cigar_box_unopened", "prob": 5 }, { "group": "tobacco_products", "prob": 151 }, { "item": "contacts", "prob": 15 }, { "group": "clothing_glasses", "prob": 80 }, @@ -2094,6 +2107,8 @@ [ "brownie", 60 ], [ "aspirin", 40 ], { "group": "tobacco_products", "prob": 150 }, + { "group": "cigar_box_opened", "prob": 20 }, + { "group": "cigar_box_unopened", "prob": 5 }, { "item": "gum", "prob": 100, "charges": [ 1, 10 ] }, { "item": "caff_gum", "prob": 20, "charges": [ 1, 10 ] }, { "item": "nic_gum", "prob": 20, "charges": [ 1, 10 ] }, diff --git a/data/json/itemgroups/Locations_MapExtras/locations_commercial.json b/data/json/itemgroups/Locations_MapExtras/locations_commercial.json index d03ac9a2242a0..bdf0b4869132e 100644 --- a/data/json/itemgroups/Locations_MapExtras/locations_commercial.json +++ b/data/json/itemgroups/Locations_MapExtras/locations_commercial.json @@ -10,6 +10,9 @@ { "item": "caffeine", "prob": 25, "charges": [ 1, 10 ] }, { "item": "melatonin_tablet", "prob": 5, "charges": [ 1, 30 ] }, { "group": "tobacco_products", "prob": 161 }, + { "group": "cigar_box_unopened", "prob": 10, "count": [ 1, 4 ] }, + { "item": "cigar_cutter", "prob": 10 }, + { "item": "cigar_punch", "prob": 8 }, { "item": "sponge", "prob": 10 }, { "group": "ammo_pocket_batteries_full", "prob": 50 }, { "item": "rm103a_pistol", "prob": 1 }, @@ -131,8 +134,8 @@ { "group": "candy_chocolate", "prob": 45 }, { "item": "licorice", "prob": 15 }, { "group": "salty_snacks", "prob": 80 }, - [ "peanut_unshelled", 20 ], - [ "almond_unshelled", 20 ], + [ "peanut_shelled", 20 ], + [ "almond_shelled", 20 ], [ "cereal", 25 ], [ "cereal3", 25 ], [ "soup_tomato", 25 ], @@ -220,7 +223,7 @@ [ "700nx_casing", 1 ], [ "moss_brownie", 5 ], [ "cop_38", 5 ], - [ "cigar", 5 ], + { "group": "cigar_box_opened", "prob": 10, "count": [ 1, 2 ] }, [ "sword_cane", 5 ], [ "hollow_cane", 5 ], [ "advanced_ecig", 5 ], @@ -252,6 +255,8 @@ [ "sf_watch", 7 ], [ "platinum_watch", 1 ], [ "tieclip", 3 ], + [ "cigar_cutter", 3 ], + [ "cigar_punch", 3 ], [ "collarpin", 3 ], { "item": "mask_gas", "prob": 10, "charges": [ 0, 100 ] }, [ "goggles_welding", 70 ], @@ -1069,8 +1074,11 @@ { "item": "saddle", "prob": 80 }, { "item": "chain", "prob": 30 }, { "item": "wrench", "prob": 30 }, + { "item": "wrench_small", "prob": 10 }, + { "item": "socket_wrench_set", "prob": 20 }, { "item": "screwdriver", "prob": 40 }, { "item": "screwdriver_set", "prob": 20 }, + { "item": "socket_screwdriver_set", "prob": 10 }, { "item": "superglue", "prob": 30 }, { "item": "hacksaw", "prob": 17 }, { "item": "pliers", "prob": 40 }, @@ -1135,6 +1143,7 @@ { "item": "wrench", "prob": 20 }, { "item": "multitool", "prob": 30 }, { "item": "screwdriver_set", "prob": 20 }, + { "item": "socket_screwdriver_set", "prob": 20 }, { "item": "duct_tape", "prob": 50, "charges": [ 50, 200 ] }, { "item": "misc_repairkit", "prob": 25, "charges": 200 }, { "group": "tools_toolbox", "prob": 2 } @@ -1345,6 +1354,8 @@ [ "battery_car", 10 ], [ "stereo", 10 ], [ "wrench", 10 ], + [ "socket_wrench_set", 5 ], + [ "socket_screwdriver_set", 5 ], [ "gloves_work", 10 ], [ "glasses_safety", 10 ], [ "solar_cell", 10 ], @@ -1413,6 +1424,8 @@ [ "jack_small", 60 ], [ "jack_makeshift", 30 ], [ "wrench", 50 ], + [ "wrench_large", 20 ], + [ "socket_wrench_set", 40 ], [ "gloves_work", 30 ], [ "glasses_safety", 20 ] ] @@ -1539,6 +1552,7 @@ "entries": [ { "item": "weed", "prob": 10, "charges": [ 1, 5 ] }, { "item": "coke", "prob": 10, "charges": [ 1, 8 ] }, + { "group": "cigar_box_opened", "prob": 10, "count": [ 1, 2 ] }, { "item": "meth", "prob": 10, "charges": [ 1, 6 ] }, { "item": "aspirin", "prob": 10, "charges": [ 1, 20 ] }, { "item": "mag_porn", "prob": 10 }, @@ -1562,6 +1576,8 @@ { "item": "hotplate", "prob": 20, "charges": [ 0, 500 ] }, { "item": "coffeemaker", "prob": 25, "charges": [ 0, 500 ] }, [ "textbook_firstaid", 2 ], + [ "cigar_cutter", 5 ], + [ "cigar_punch", 5 ], [ "pocket_firearms", 1 ], [ "mag_archery", 4 ] ] diff --git a/data/json/itemgroups/Locations_MapExtras/locations_mapextras.json b/data/json/itemgroups/Locations_MapExtras/locations_mapextras.json index cef01e38db933..4098f255d054d 100644 --- a/data/json/itemgroups/Locations_MapExtras/locations_mapextras.json +++ b/data/json/itemgroups/Locations_MapExtras/locations_mapextras.json @@ -116,6 +116,8 @@ [ "switchblade", 4 ], [ "gold_watch", 5 ], [ "silver_watch", 2 ], + [ "cigar_cutter", 8 ], + [ "cigar_punch", 6 ], [ "pocketwatch", 2 ], [ "gold_dental_grill", 2 ], [ "diamond_dental_grill", 1 ], diff --git a/data/json/itemgroups/Locations_MapExtras/mall_item_groups.json b/data/json/itemgroups/Locations_MapExtras/mall_item_groups.json index 7838b69bb3411..d59c9ff851333 100644 --- a/data/json/itemgroups/Locations_MapExtras/mall_item_groups.json +++ b/data/json/itemgroups/Locations_MapExtras/mall_item_groups.json @@ -249,6 +249,7 @@ [ "screwdriver", 40 ], [ "hammer", 35 ], [ "wrench", 30 ], + [ "wrench_small", 30 ], [ "hacksaw", 50 ], [ "xacto", 10 ], { "item": "flashlight", "prob": 40, "charges": 300 }, @@ -266,17 +267,20 @@ { "id": "smoke_shop", "type": "item_group", + "subtype": "distribution", "items": [ - [ "pipe_tobacco", 60 ], - [ "tobacco", 70 ], - [ "weed", 5 ], - [ "joint", 5 ], - [ "seed_weed", 5 ], - [ "seed_tobacco", 5 ], - [ "rolling_paper", 45 ], - [ "pipe_glass", 20 ], - [ "cig", 60 ], - [ "chaw", 60 ] + { "item": "pipe_tobacco", "prob": 60 }, + { "item": "tobacco", "prob": 70 }, + { "group": "cigar_box_unopened", "prob": 15, "count": [ 1, 10 ] }, + { "item": "case_cigar", "prob": 20, "count": [ 1, 5 ] }, + { "item": "weed", "prob": 5 }, + { "item": "joint", "prob": 5 }, + { "item": "seed_weed", "prob": 5 }, + { "item": "seed_tobacco", "prob": 5 }, + { "item": "rolling_paper", "prob": 45 }, + { "item": "pipe_glass", "prob": 20 }, + { "item": "cig", "prob": 60 }, + { "item": "chaw", "prob": 60 } ] }, { diff --git a/data/json/itemgroups/Locations_MapExtras/mansion.json b/data/json/itemgroups/Locations_MapExtras/mansion.json index 78d1058710115..f2aad92070d1e 100644 --- a/data/json/itemgroups/Locations_MapExtras/mansion.json +++ b/data/json/itemgroups/Locations_MapExtras/mansion.json @@ -1178,6 +1178,7 @@ { "group": "glass_of_wine", "prob": 30 }, { "group": "book_mag_gen", "prob": 120 }, { "group": "tobacco_products", "prob": 50 }, + { "group": "cigar_box_opened", "prob": 50 }, [ "novel_pulp", 30 ], { "item": "gum", "prob": 30, "charges": [ 1, 10 ] }, [ "glass", 20 ], @@ -1204,6 +1205,7 @@ { "group": "glass_of_wine", "prob": 40 }, [ "glass", 20 ], { "group": "tobacco_products", "prob": 75 }, + { "group": "cigar_box_opened", "prob": 50 }, [ "money_bundle", 10 ], [ "pretzels", 5 ], [ "chips", 5 ], @@ -1221,6 +1223,8 @@ [ "glass", 40 ], { "item": "cig", "prob": 30, "charges": [ 1, 20 ] }, { "item": "cigar", "prob": 20, "charges": [ 1, 10 ] }, + { "item": "case_cigar", "prob": 10, "count": [ 1, 2 ] }, + { "group": "cigar_box_unopened", "prob": 25, "count": [ 1, 5 ] }, [ "towel", 5 ] ] }, diff --git a/data/json/itemgroups/Locations_MapExtras/private_resort_item_groups.json b/data/json/itemgroups/Locations_MapExtras/private_resort_item_groups.json index a6686befd1b77..751874263114e 100644 --- a/data/json/itemgroups/Locations_MapExtras/private_resort_item_groups.json +++ b/data/json/itemgroups/Locations_MapExtras/private_resort_item_groups.json @@ -151,6 +151,7 @@ "items": [ { "item": "cup_plastic", "prob": 50 }, { "item": "cig", "prob": 50, "charges": [ 1, 20 ] }, + { "group": "cigar_box_opened", "prob": 15, "count": [ 1, 2 ] }, { "item": "matches", "prob": 50, "charges": [ 1, 20 ] }, { "item": "rolling_paper", "prob": 50, "charges": [ 1, 30 ] }, { "item": "wrapper", "prob": 50 }, diff --git a/data/json/itemgroups/Monsters_Animals_Lairs/harvest_dissection.json b/data/json/itemgroups/Monsters_Animals_Lairs/harvest_dissection.json index 61030f59563d6..bb222cdc33ece 100644 --- a/data/json/itemgroups/Monsters_Animals_Lairs/harvest_dissection.json +++ b/data/json/itemgroups/Monsters_Animals_Lairs/harvest_dissection.json @@ -16,5 +16,47 @@ "type": "item_group", "subtype": "collection", "entries": [ { "item": "frog_sample", "prob": 30 } ] + }, + { + "id": "insect_sample", + "type": "item_group", + "subtype": "collection", + "entries": [ { "item": "insect_sample", "prob": 30 } ] + }, + { + "id": "bovine_sample", + "type": "item_group", + "subtype": "collection", + "entries": [ { "item": "bovine_sample", "prob": 30 } ] + }, + { + "id": "spider_sample", + "type": "item_group", + "subtype": "collection", + "entries": [ { "item": "spider_sample", "prob": 30 } ] + }, + { + "id": "molerat_sample", + "type": "item_group", + "subtype": "collection", + "entries": [ { "item": "molerat_sample", "prob": 30 } ] + }, + { + "id": "reptile_sample", + "type": "item_group", + "subtype": "collection", + "entries": [ { "item": "reptile_sample", "prob": 30 } ] + }, + { + "id": "lupine_sample", + "type": "item_group", + "subtype": "collection", + "entries": [ { "item": "lupine_sample", "prob": 30 } ] + }, + { + "id": "feline_sample", + "type": "item_group", + "subtype": "collection", + "entries": [ { "item": "feline_sample", "prob": 30 } ] } ] diff --git a/data/json/itemgroups/Weapons_Mods_Ammo/guns.json b/data/json/itemgroups/Weapons_Mods_Ammo/guns.json index dac55c4dfde66..5f073c9b8d18c 100644 --- a/data/json/itemgroups/Weapons_Mods_Ammo/guns.json +++ b/data/json/itemgroups/Weapons_Mods_Ammo/guns.json @@ -57,7 +57,7 @@ { "item": "glock_19", "prob": 50, "charges-min": 0, "charges-max": 0 }, { "item": "glock_22", "prob": 35, "charges-min": 0, "charges-max": 0 }, { "item": "glock_20", "variant": "glock_20", "prob": 4, "charges-min": 0, "charges-max": 0 }, - { "item": "glock_21", "prob": 8, "charges-min": 0, "charges-max": 15 }, + { "item": "glock_21", "prob": 8, "charges-min": 0, "charges-max": 0 }, { "item": "glock_20", "variant": "glock_40", "prob": 2, "charges-min": 0, "charges-max": 0 }, { "item": "glock_31", "prob": 15, "charges-min": 0, "charges-max": 0 }, { "item": "m1911", "prob": 50, "charges-min": 0, "charges-max": 0 }, diff --git a/data/json/itemgroups/books.json b/data/json/itemgroups/books.json index a8dd072fb2679..ab49d7485987d 100644 --- a/data/json/itemgroups/books.json +++ b/data/json/itemgroups/books.json @@ -303,6 +303,7 @@ { "item": "winemaking_beginner", "prob": 60 }, { "item": "manual_canning", "prob": 30 }, { "item": "manual_sealing", "prob": 40 }, + { "item": "vacuum_sealing", "prob": 20 }, { "item": "baking_book", "prob": 80 }, { "item": "fermenting_book", "prob": 8 }, { "item": "distilling_cookbook", "prob": 3 } @@ -341,6 +342,7 @@ { "item": "winemaking_beginner", "prob": 14 }, { "item": "manual_canning", "prob": 18 }, { "item": "manual_sealing", "prob": 9 }, + { "item": "vacuum_sealing", "prob": 5 }, { "item": "fermenting_book", "prob": 8 }, { "item": "distilling_cookbook", "prob": 8 }, { "item": "theater_props", "prob": 5 } @@ -386,6 +388,7 @@ { "item": "winemaking_beginner", "prob": 10 }, { "item": "manual_canning", "prob": 8 }, { "item": "manual_sealing", "prob": 9 }, + { "item": "vacuum_sealing", "prob": 5 }, { "item": "fermenting_book", "prob": 8 }, { "item": "distilling_cookbook", "prob": 8 } ] @@ -539,6 +542,7 @@ { "item": "winemaking_beginner", "prob": 60 }, { "item": "manual_canning", "prob": 80 }, { "item": "manual_sealing", "prob": 190 }, + { "item": "vacuum_sealing", "prob": 15 }, { "item": "baking_book", "prob": 190 } ] }, diff --git a/data/json/itemgroups/collections_domestic.json b/data/json/itemgroups/collections_domestic.json index ddbdf117e131f..b9b9522950ca0 100644 --- a/data/json/itemgroups/collections_domestic.json +++ b/data/json/itemgroups/collections_domestic.json @@ -299,6 +299,7 @@ { "item": "colamdew", "prob": 10, "container-item": "bottle_plastic", "sealed": false }, { "item": "sponge", "prob": 5 }, { "group": "tobacco_products", "prob": 151 }, + { "group": "cigar_box_opened", "prob": 5 }, { "item": "weed", "prob": 10, "charges": [ 1, 5 ] }, { "item": "hi_q_shatter", "prob": 5 }, { "item": "hi_q_wax", "prob": 5 }, @@ -823,6 +824,7 @@ { "item": "clock", "prob": 10 }, { "item": "basket_laundry", "prob": 30 }, { "group": "tobacco_products", "prob": 146 }, + { "group": "cigar_box_opened", "prob": 20 }, { "item": "weed", "prob": 15, "charges": [ 1, 5 ] }, { "item": "joint", "prob": 5 }, { "item": "razor_blade", "prob": 5 }, diff --git a/data/json/itemgroups/corpses.json b/data/json/itemgroups/corpses.json index 380373f55f965..80cc7eebc3f58 100644 --- a/data/json/itemgroups/corpses.json +++ b/data/json/itemgroups/corpses.json @@ -27,6 +27,7 @@ { "item": "bone_human", "count": [ 5, 8 ], "prob": 100 }, { "item": "human_flesh", "count": [ 5, 8 ], "prob": 100 }, { "item": "hstomach", "prob": 100 }, + { "group": "pocket_cigar", "prob": 15 }, { "group": "misc_smoking_legal", "prob": 30 } ] }, @@ -71,6 +72,7 @@ { "item": "two_way_radio", "prob": 50, "charges": [ 0, 100 ] }, { "item": "grenade", "prob": 5 }, { "group": "wallets_military", "prob": 5 }, + { "group": "pocket_cigar", "prob": 15 }, { "group": "misc_smoking_legal", "prob": 30 } ] }, diff --git a/data/json/itemgroups/food_service.json b/data/json/itemgroups/food_service.json index 46fc44704543c..6389cefcfccd3 100644 --- a/data/json/itemgroups/food_service.json +++ b/data/json/itemgroups/food_service.json @@ -677,11 +677,11 @@ { "item": "biscuit", "prob": 50 }, { "item": "crackers", "prob": 40 }, { "item": "soybean_seed", "prob": 40 }, - { "item": "almond_unshelled", "prob": 20 }, - { "item": "pecan_unshelled", "prob": 20 }, + { "item": "almond_shelled", "prob": 20 }, + { "item": "pecan_shelled", "prob": 20 }, { "item": "cashews", "prob": 20 }, - { "item": "pistachio_unshelled", "prob": 20 }, - { "item": "peanut_unshelled", "prob": 20 } + { "item": "pistachio_shelled", "prob": 20 }, + { "item": "peanut_shelled", "prob": 20 } ] }, { diff --git a/data/json/itemgroups/military.json b/data/json/itemgroups/military.json index a276f80151663..d675470d94dba 100644 --- a/data/json/itemgroups/military.json +++ b/data/json/itemgroups/military.json @@ -262,6 +262,8 @@ { "item": "tac_helmet", "prob": 10 }, { "item": "tac_fullhelmet", "prob": 5 }, { "item": "helmet_lobster", "prob": 5 }, + { "item": "flight_helmet", "prob": 5 }, + { "item": "mil_flight_suit", "prob": 5 }, { "item": "gum", "prob": 90 }, { "item": "caff_gum", "prob": 10 }, { "item": "nic_gum", "prob": 1 }, @@ -313,6 +315,8 @@ "entries": [ { "item": "jumpsuit", "prob": 40 }, { "item": "officer_uniform", "prob": 20 }, + { "item": "flight_helmet", "prob": 5, "charges-min": 0, "charges-max": 100 }, + { "item": "mil_flight_suit", "prob": 30 }, { "item": "combo_cover", "prob": 20 }, { "item": "pants_army", "prob": 70 }, { "item": "jacket_army", "prob": 70 }, @@ -530,6 +534,8 @@ { "item": "motor_small", "prob": 1 }, { "item": "hose", "prob": 15 }, { "item": "pants_army", "prob": 30 }, + { "item": "flight_helmet", "prob": 10, "charges-min": 0, "charges-max": 100 }, + { "item": "mil_flight_suit", "prob": 30 }, { "item": "jacket_army", "prob": 30 }, { "item": "winter_pants_army", "prob": 10 }, { "item": "winter_jacket_army", "prob": 10 }, @@ -583,7 +589,9 @@ { "item": "briefcase", "prob": 5 }, { "item": "survnote", "prob": 2 }, { "item": "robot_controls", "prob": 3 }, - { "item": "solarpack", "prob": 1 } + { "item": "solarpack", "prob": 1 }, + { "item": "flight_helmet", "prob": 20, "ammo-item": "light_plus_battery_cell", "charges": [ 0, 150 ] }, + { "item": "mil_flight_suit", "prob": 20 } ] } ] diff --git a/data/json/itemgroups/misc.json b/data/json/itemgroups/misc.json index 53ab3db3ac3ad..ea4e85c7b4629 100644 --- a/data/json/itemgroups/misc.json +++ b/data/json/itemgroups/misc.json @@ -26,32 +26,6 @@ } ] }, - { - "id": "misc_smoking_legal", - "type": "item_group", - "subtype": "collection", - "//": "Legal smokable item and something to light it with", - "entries": [ - { - "distribution": [ - { "item": "cig", "prob": 75, "charges": [ 1, 10 ] }, - { - "collection": [ - { "item": "tobacco", "charges-min": 1, "charges-max": 20 }, - { - "distribution": [ { "item": "rolling_paper", "prob": 70, "charges-min": 1, "charges-max": 30 }, { "item": "pipe_tobacco", "prob": 30 } ] - } - ], - "prob": 20 - }, - { "item": "cigar", "prob": 5, "charges": [ 1, 1 ] } - ] - }, - { - "distribution": [ { "item": "lighter", "charges": [ 0, 100 ] }, { "item": "matches", "charges": [ 1, 20 ] } ] - } - ] - }, { "id": "stoner", "type": "item_group", @@ -208,20 +182,6 @@ "id": "maps", "items": [ { "item": "roadmap", "prob": 33 }, { "item": "touristmap", "prob": 33 }, { "item": "survivormap", "prob": 33 } ] }, - { - "type": "item_group", - "id": "tobacco_products", - "items": [ - { "item": "cig", "prob": 60, "charges": [ 1, 20 ] }, - { "item": "tobacco", "prob": 20, "charges": [ 1, 20 ] }, - { "item": "chaw", "prob": 20, "charges": [ 1, 20 ] }, - { "item": "cigar", "prob": 10, "charges": [ 1, 5 ] }, - { "item": "ecig", "prob": 10, "charges": [ 1, 40 ] }, - { "item": "advanced_ecig", "prob": 8, "charges": [ 1, 100 ] }, - [ "nicotine_liquid", 15 ], - [ "pipe_tobacco", 10 ] - ] - }, { "type": "item_group", "id": "spiral", diff --git a/data/json/itemgroups/tools.json b/data/json/itemgroups/tools.json index dfdf124d38cc7..3a0b827dcde31 100644 --- a/data/json/itemgroups/tools.json +++ b/data/json/itemgroups/tools.json @@ -23,6 +23,7 @@ { "group": "tools_common", "prob": 100 }, { "item": "circsaw_off", "prob": 100, "charges": [ 0, 500 ] }, { "item": "cordless_drill", "prob": 100, "charges": [ 0, 500 ] }, + { "item": "cordless_impact_wrench", "prob": 20, "charges": [ 0, 500 ] }, [ "hand_drill", 20 ], { "item": "nailgun", "prob": 100, "charges": [ 0, 20 ] }, [ "chisel", 10 ], @@ -40,6 +41,7 @@ { "item": "kiln", "prob": 40, "charges": [ 0, 1000 ] }, { "item": "con_mix", "prob": 120, "charges": [ 0, 500 ] }, { "item": "elec_jackhammer", "prob": 40, "charges": [ 0, 6000 ] }, + { "item": "cordless_impact_wrench", "prob": 20, "charges": [ 0, 500 ] }, [ "metal_smoother", 90 ], { "item": "jackhammer", "prob": 40, "charges": [ 0, 1200 ] }, { "group": "tools_toolbox", "prob": 20 }, @@ -61,7 +63,11 @@ { "item": "bow_saw", "prob": 50 }, [ "screwdriver", 100 ], [ "screwdriver_set", 50 ], - [ "wrench", 40 ], + [ "socket_screwdriver_set", 10 ], + [ "wrench", 20 ], + [ "wrench_small", 20 ], + [ "socket_wrench_set", 20 ], + [ "pliers_locking", 20 ], [ "xacto", 40 ], [ "bucket", 5 ], [ "jumper_cable", 10 ], @@ -91,7 +97,9 @@ "items": [ [ "hammer", 80 ], [ "screwdriver_set", 65 ], - [ "wrench", 75 ], + [ "pliers_locking", 40 ], + [ "wrench", 50 ], + [ "wrench_small", 25 ], [ "funnel", 50 ], [ "metal_file", 40 ], [ "sandpaper", 65 ] @@ -107,7 +115,10 @@ "items": [ [ "hammer", 80 ], [ "screwdriver_set", 65 ], + [ "pliers_locking", 40 ], [ "wrench", 75 ], + [ "wrench_large", 20 ], + [ "socket_wrench_set", 20 ], [ "funnel", 50 ], [ "metal_file", 40 ], [ "sandpaper", 65 ], @@ -119,6 +130,7 @@ [ "boxcutter", 20 ], { "item": "nailgun", "prob": 15, "charges": [ 0, 20 ] }, { "item": "circsaw_off", "prob": 25, "charges": [ 0, 500 ] }, + { "item": "cordless_impact_wrench", "prob": 10, "charges": [ 0, 500 ] }, { "item": "cordless_drill", "prob": 45, "charges": [ 0, 500 ] } ] }, @@ -216,6 +228,7 @@ "items": [ { "group": "tools_common", "prob": 100 }, [ "wrench", 200 ], + [ "wrench_large", 20 ], [ "claw_bar", 2 ], [ "crowbar", 10 ], [ "pliers", 200 ], @@ -659,6 +672,7 @@ [ "multitool", 20 ], [ "vac_mold", 2 ], [ "screwdriver_set", 20 ], + [ "socket_screwdriver_set", 20 ], { "item": "flashlight", "prob": 20, "charges": [ 0, 300 ] }, [ "mobile_memory_card_science", 40 ], { "item": "camera_pro", "prob": 2, "charges": [ 0, 150 ] }, @@ -670,6 +684,7 @@ [ "tool_belt", 10 ], [ "clamp", 10 ], [ "wrench", 10 ], + [ "socket_wrench_set", 10 ], { "group": "writing_utensils", "prob": 5 } ] }, @@ -701,6 +716,7 @@ { "item": "trimmer_off", "prob": 40, "charges": [ 0, 600 ] }, { "item": "jackhammer", "prob": 50, "charges": [ 0, 1200 ] }, { "item": "elec_jackhammer", "prob": 50, "charges": [ 0, 1000 ] }, + { "item": "cordless_impact_wrench", "prob": 30, "charges": [ 0, 500 ] }, { "item": "circsaw_off", "prob": 10, "charges": [ 0, 500 ] }, { "item": "angle_grinder", "prob": 20, "charges": [ 0, 500 ] } ] diff --git a/data/json/itemgroups/vending_machines.json b/data/json/itemgroups/vending_machines.json index 027370e3010ca..3651dacf7e625 100644 --- a/data/json/itemgroups/vending_machines.json +++ b/data/json/itemgroups/vending_machines.json @@ -59,10 +59,10 @@ "items": [ { "group": "candy_chocolate", "prob": 615 }, { "group": "salty_snacks", "prob": 485 }, - [ "peanut_unshelled", 60 ], - [ "almond_unshelled", 60 ], + [ "peanut_shelled", 60 ], + [ "almond_shelled", 60 ], [ "cashews", 60 ], - [ "pistachio_unshelled", 60 ], + [ "pistachio_shelled", 60 ], [ "cookies", 80 ], [ "choco_coffee_beans", 10 ], [ "fruit_leather", 25 ] diff --git a/data/json/items/ammo/357mag.json b/data/json/items/ammo/357mag.json index 49a572e3fd96c..24a8298d608a5 100644 --- a/data/json/items/ammo/357mag.json +++ b/data/json/items/ammo/357mag.json @@ -17,7 +17,7 @@ "ammo_type": "357mag", "casing": "357mag_casing", "range": 16, - "damage": { "damage_type": "bullet", "amount": 28, "armor_penetration": 4 }, + "damage": { "damage_type": "bullet", "amount": 33, "armor_penetration": 4 }, "dispersion": 30, "recoil": 700, "effects": [ "COOKOFF" ] diff --git a/data/json/items/ammo/357sig.json b/data/json/items/ammo/357sig.json index 1057af665b929..80085a7041ca2 100644 --- a/data/json/items/ammo/357sig.json +++ b/data/json/items/ammo/357sig.json @@ -17,7 +17,7 @@ "ammo_type": "357sig", "casing": "357sig_casing", "range": 16, - "damage": { "damage_type": "bullet", "amount": 28, "armor_penetration": 4 }, + "damage": { "damage_type": "bullet", "amount": 29, "armor_penetration": 4 }, "dispersion": 30, "recoil": 600, "effects": [ "COOKOFF" ] diff --git a/data/json/items/armor/ammo_pouch.json b/data/json/items/armor/ammo_pouch.json index 88d47d6d7af7d..b0fd5074a678f 100644 --- a/data/json/items/armor/ammo_pouch.json +++ b/data/json/items/armor/ammo_pouch.json @@ -184,7 +184,7 @@ "name": { "str": "XL chest rig" }, "description": "Popularized during the Vietnam War, chest rigs like these are typically plain, barebones affairs consisting of three or more pouches in a row, with straps to secure them on your chest. This one can hold four magazines in its pouches and fits larger-than-human forms.", "proportional": { "weight": 1.25, "volume": 1.13, "price": 1.25 }, - "flags": [ "WATER_FRIENDLY", "WAIST", "OVERSIZE" ] + "flags": [ "WATER_FRIENDLY", "BELTED", "OVERSIZE" ] }, { "id": "javelin_bag", @@ -468,7 +468,7 @@ }, { "ammo_restriction": { "410shot": 6, "shot": 6, "20x66mm": 6, "signal_flare": 6 }, "moves": 25 } ], - "flags": [ "WATER_FRIENDLY" ], + "flags": [ "WATER_FRIENDLY", "WAIST" ], "armor": [ { "encumbrance": [ 2, 14 ], "coverage": 85, "covers": [ "torso" ] } ] }, { diff --git a/data/json/items/armor/belts.json b/data/json/items/armor/belts.json index 79daf85850c22..541ee98e2e91b 100644 --- a/data/json/items/armor/belts.json +++ b/data/json/items/armor/belts.json @@ -158,6 +158,9 @@ "looks_like": "fireman_belt", "color": "brown", "pocket_data": [ + { "max_contains_volume": "500 ml", "max_item_volume": "125 ml", "max_contains_weight": "1500 g", "moves": 100 }, + { "max_contains_volume": "500 ml", "max_item_volume": "125 ml", "max_contains_weight": "1500 g", "moves": 100 }, + { "max_contains_volume": "500 ml", "max_item_volume": "125 ml", "max_contains_weight": "1500 g", "moves": 100 }, { "max_contains_volume": "500 ml", "max_item_volume": "125 ml", "max_contains_weight": "1500 g", "moves": 100 }, { "holster": true, diff --git a/data/json/items/armor/bespoke_armor/utility.json b/data/json/items/armor/bespoke_armor/utility.json index b40fdf4ee33e0..8156536b1a348 100644 --- a/data/json/items/armor/bespoke_armor/utility.json +++ b/data/json/items/armor/bespoke_armor/utility.json @@ -3,7 +3,7 @@ "id": "survivor_belt_notools", "type": "ARMOR", "name": { "str": "survivor belt" }, - "description": "A custom-built leather belt covered with pouches, with a sheath to carry a smaller blade and a holster to carry a pistol. Durable and carefully crafted to be comfortable to wear. Activate to sheathe/draw a weapon.", + "description": "A custom-built leather belt covered with pouches, with a sheath to carry a smaller blade, a holster to carry a pistol and a loop for holding larger tools. Durable and carefully crafted to be comfortable to wear. Activate to sheathe/draw a weapon.", "weight": "1549 g", "volume": "2250 ml", "price": 15000, @@ -74,6 +74,13 @@ "max_contains_weight": "2 kg", "max_item_length": "30 cm", "moves": 50 + }, + { + "max_contains_volume": "2 L", + "max_contains_weight": "6 kg", + "max_item_length": "90 cm", + "moves": 50, + "flag_restriction": [ "BELT_CLIP" ] } ], "use_action": { "type": "holster", "holster_prompt": "Store item", "holster_msg": "You put your %1$s in your %2$s" }, @@ -97,7 +104,6 @@ "warmth": 5, "material_thickness": 4, "environmental_protection": 15, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATER_FRIENDLY", "SUN_GLASSES", "OVERSIZE", "VARSIZE", "STURDY" ], "armor": [ { "encumbrance": 20, "coverage": 100, "covers": [ "eyes" ] } ] }, diff --git a/data/json/items/armor/boots.json b/data/json/items/armor/boots.json index 77d4dcb401bc5..659624ad17683 100644 --- a/data/json/items/armor/boots.json +++ b/data/json/items/armor/boots.json @@ -1163,7 +1163,7 @@ "weight": "300 g", "volume": "1000 ml", "copy-from": "nomex_socks", - "flags": [ "VARSIZE", "WATER_FRIENDLY", "SKINTIGHT", "STURDY" ] + "flags": [ "VARSIZE", "WATER_FRIENDLY", "SKINTIGHT", "STURDY", "OVERSIZE" ] }, { "id": "socks", diff --git a/data/json/items/armor/eyewear.json b/data/json/items/armor/eyewear.json index f7d2bd98ea85e..f77962d6fa44f 100644 --- a/data/json/items/armor/eyewear.json +++ b/data/json/items/armor/eyewear.json @@ -16,7 +16,7 @@ "color": "light_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 3 ] ], + "qualities": [ [ "GLARE", 1 ] ], "flags": [ "SUN_GLASSES" ], "armor": [ { "encumbrance": 10, "coverage": 80, "covers": [ "eyes" ] } ] }, @@ -55,7 +55,6 @@ "color": "dark_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "FANCY", "WATER_FRIENDLY", "SUN_GLASSES", "FRAGILE" ], "armor": [ { "encumbrance": 1, "coverage": 95, "covers": [ "eyes" ] } ] }, @@ -76,7 +75,6 @@ "color": "dark_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATER_FRIENDLY", "SUN_GLASSES", "VARSIZE", "OUTER", "FRAGILE" ], "armor": [ { "encumbrance": 1, "coverage": 90, "covers": [ "eyes" ] } ] }, @@ -99,7 +97,6 @@ "warmth": 5, "material_thickness": 3, "environmental_protection": 4, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATER_FRIENDLY", "SUN_GLASSES" ], "armor": [ { "encumbrance": 5, "coverage": 100, "covers": [ "eyes" ] } ] }, @@ -226,7 +223,6 @@ "warmth": 50, "material_thickness": 2, "environmental_protection": 6, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "SUN_GLASSES" ], "armor": [ { "encumbrance": 15, "coverage": 100, "covers": [ "eyes" ] } ] }, @@ -248,7 +244,7 @@ "warmth": 10, "material_thickness": 4, "environmental_protection": 6, - "qualities": [ [ "GLARE", 2 ] ], + "qualities": [ [ "GLARE", 1 ] ], "flags": [ "SUN_GLASSES", "FLASH_PROTECTION" ], "armor": [ { "encumbrance": 60, "coverage": 100, "covers": [ "eyes" ] } ] }, @@ -269,7 +265,6 @@ "color": "light_gray", "warmth": 5, "material_thickness": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATER_FRIENDLY", "SUN_GLASSES" ], "armor": [ { "encumbrance": 9, "coverage": 90, "covers": [ "eyes" ] } ] }, @@ -290,7 +285,6 @@ "color": "dark_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATER_FRIENDLY", "SUN_GLASSES", "FRAGILE" ], "armor": [ { "encumbrance": 1, "coverage": 85, "covers": [ "eyes" ] } ] }, @@ -311,7 +305,6 @@ "color": "dark_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATER_FRIENDLY", "SUN_GLASSES", "FIX_NEARSIGHT", "FIX_FARSIGHT", "FRAGILE" ], "armor": [ { "coverage": 75, "covers": [ "eyes" ] } ] }, @@ -332,7 +325,6 @@ "color": "dark_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATER_FRIENDLY", "SUN_GLASSES", "FIX_NEARSIGHT", "FRAGILE" ], "armor": [ { "coverage": 75, "covers": [ "eyes" ] } ] }, @@ -354,7 +346,6 @@ "color": "dark_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATER_FRIENDLY", "SUN_GLASSES", "FIX_FARSIGHT", "FRAGILE" ], "armor": [ { "coverage": 75, "covers": [ "eyes" ] } ] }, @@ -438,7 +429,6 @@ "color": "dark_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "FANCY", "WATER_FRIENDLY", "SUN_GLASSES", "FIX_NEARSIGHT", "FIX_FARSIGHT", "FRAGILE" ], "armor": [ { "coverage": 75, "covers": [ "eyes" ] } ] }, @@ -459,7 +449,6 @@ "color": "dark_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "FANCY", "WATER_FRIENDLY", "SUN_GLASSES", "FIX_NEARSIGHT", "FRAGILE" ], "armor": [ { "coverage": 75, "covers": [ "eyes" ] } ] }, @@ -481,7 +470,6 @@ "color": "dark_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "FANCY", "WATER_FRIENDLY", "SUN_GLASSES", "FIX_FARSIGHT", "FRAGILE" ], "armor": [ { "coverage": 75, "covers": [ "eyes" ] } ] }, @@ -502,7 +490,6 @@ "color": "light_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "FANCY", "WATER_FRIENDLY", "SUN_GLASSES", "FIX_NEARSIGHT", "FIX_FARSIGHT", "FRAGILE" ], "armor": [ { "coverage": 75, "covers": [ "eyes" ] } ] }, @@ -523,7 +510,6 @@ "color": "light_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "FANCY", "WATER_FRIENDLY", "SUN_GLASSES", "FIX_NEARSIGHT", "FRAGILE" ], "armor": [ { "coverage": 75, "covers": [ "eyes" ] } ] }, @@ -545,7 +531,6 @@ "color": "light_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "FANCY", "WATER_FRIENDLY", "SUN_GLASSES", "FIX_FARSIGHT", "FRAGILE" ], "armor": [ { "coverage": 75, "covers": [ "eyes" ] } ] }, @@ -566,7 +551,6 @@ "color": "white", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "SUPER_FANCY", "WATER_FRIENDLY", "SUN_GLASSES", "FIX_NEARSIGHT", "FIX_FARSIGHT", "FRAGILE" ], "armor": [ { "coverage": 75, "covers": [ "eyes" ] } ] }, @@ -587,7 +571,6 @@ "color": "white", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "SUPER_FANCY", "WATER_FRIENDLY", "SUN_GLASSES", "FIX_NEARSIGHT", "FRAGILE" ], "armor": [ { "coverage": 75, "covers": [ "eyes" ] } ] }, @@ -609,7 +592,6 @@ "color": "white", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "SUPER_FANCY", "WATER_FRIENDLY", "SUN_GLASSES", "FIX_FARSIGHT", "FRAGILE" ], "armor": [ { "coverage": 75, "covers": [ "eyes" ] } ] } diff --git a/data/json/items/armor/gloves.json b/data/json/items/armor/gloves.json index a3e308e4d06ad..31b1eb0aa3425 100644 --- a/data/json/items/armor/gloves.json +++ b/data/json/items/armor/gloves.json @@ -291,7 +291,7 @@ "name": { "str": "pair of XL fur gloves", "str_pl": "pairs of XL fur gloves" }, "copy-from": "gloves_fur", "proportional": { "weight": 1.6, "volume": 1.6 }, - "flags": [ "WATERPROOF" ] + "flags": [ "WATERPROOF", "OVERSIZE" ] }, { "id": "glove_jackson", diff --git a/data/json/items/armor/helmets.json b/data/json/items/armor/helmets.json index f9d8c03ca4b45..3753879b77503 100644 --- a/data/json/items/armor/helmets.json +++ b/data/json/items/armor/helmets.json @@ -512,7 +512,6 @@ "warmth": 30, "environmental_protection": 1, "techniques": [ "WBLOCK_1" ], - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATERPROOF", "STURDY" ] }, { diff --git a/data/json/items/armor/power_armor.json b/data/json/items/armor/power_armor.json index 17c990fb24d8a..8b8150fe50c53 100644 --- a/data/json/items/armor/power_armor.json +++ b/data/json/items/armor/power_armor.json @@ -108,7 +108,7 @@ "warmth": 50, "material_thickness": 8, "environmental_protection": 6, - "qualities": [ [ "GLARE", 2 ] ], + "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATERPROOF", "STURDY", "SUN_GLASSES" ], "armor": [ { "encumbrance": 40, "coverage": 95, "covers": [ "head", "eyes", "mouth" ] } ] }, @@ -374,7 +374,7 @@ "power_armor": true, "material_thickness": 14, "environmental_protection": 16, - "qualities": [ [ "GLARE", 2 ] ], + "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATCH", "WATERPROOF", "STURDY", "PARTIAL_DEAF", "THERMOMETER", "SUN_GLASSES" ], "armor": [ { "encumbrance": 50, "coverage": 100, "covers": [ "head", "eyes", "mouth" ] } ] }, @@ -398,7 +398,7 @@ "power_armor": true, "material_thickness": 16, "environmental_protection": 16, - "qualities": [ [ "GLARE", 2 ] ], + "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATCH", "WATERPROOF", "STURDY", "PARTIAL_DEAF", "THERMOMETER", "SUN_GLASSES" ], "armor": [ { "encumbrance": 60, "coverage": 100, "covers": [ "head", "eyes", "mouth" ] } ] }, @@ -422,7 +422,6 @@ "power_armor": true, "material_thickness": 8, "environmental_protection": 16, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATCH", "WATERPROOF", "STURDY", "THERMOMETER", "SUN_GLASSES", "SWIM_GOGGLES" ], "armor": [ { "encumbrance": 40, "coverage": 100, "covers": [ "head", "eyes", "mouth" ] } ] }, diff --git a/data/json/items/armor/suits_protection.json b/data/json/items/armor/suits_protection.json index 98fa970514c1b..4a5d26544437d 100644 --- a/data/json/items/armor/suits_protection.json +++ b/data/json/items/armor/suits_protection.json @@ -320,21 +320,24 @@ "type": "ARMOR", "category": "armor", "name": { "str": "riot armor" }, - "description": "Black body armor used by riot police officers, back when they were just riots. The word POLICE is emblazoned across the front.", - "weight": "4000 g", + "description": "Black plastic body armor plates used by riot police officers, back when they were just riots. The word POLICE is emblazoned across the front.", + "weight": "1000 g", "volume": "7500 ml", "price": 35000, "price_postapoc": 1500, "to_hit": -3, - "bashing": 6, - "material": [ "plastic", "cotton" ], + "material": [ "thermo_resin", "plastic" ], "symbol": "[", "looks_like": "kevlar", "color": "light_gray", "warmth": 10, - "material_thickness": 6, + "material_thickness": 2.5, "flags": [ "STURDY", "OUTER" ], - "armor": [ { "encumbrance": 10, "coverage": 85, "covers": [ "torso", "leg_l", "leg_r", "arm_l", "arm_r" ] } ] + "armor": [ + { "encumbrance": 7, "coverage": 60, "covers": [ "torso" ] }, + { "encumbrance": 7, "coverage": 55, "covers": [ "leg_l", "leg_r" ] }, + { "encumbrance": 7, "coverage": 60, "covers": [ "arm_l", "arm_r" ] } + ] }, { "id": "armor_samurai", @@ -591,6 +594,26 @@ "flags": [ "VARSIZE", "STURDY" ], "armor": [ { "encumbrance": 15, "coverage": 80, "covers": [ "torso", "arm_l", "arm_r", "leg_l", "leg_r" ] } ] }, + { + "id": "k_gambeson", + "type": "ARMOR", + "name": { "str": "kevlar gambeson" }, + "description": "A thick jacket of quilted fabric, designed to be worn underneath mail or other armor. This one incorporates Kevlar layers added for better protection.", + "weight": "2880 g", + "volume": "2520 ml", + "price": 20000, + "price_postapoc": 750, + "to_hit": -5, + "material": [ "kevlar_layered" ], + "symbol": "[", + "looks_like": "coat_winter", + "color": "light_gray", + "warmth": 30, + "material_thickness": 5, + "valid_mods": [ "steel_padded" ], + "flags": [ "VARSIZE", "STURDY" ], + "armor": [ { "encumbrance": 15, "coverage": 80, "covers": [ "torso", "arm_l", "arm_r", "leg_l", "leg_r" ] } ] + }, { "id": "xl_gambeson", "type": "ARMOR", @@ -599,6 +622,14 @@ "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, "flags": [ "VARSIZE", "STURDY", "OVERSIZE" ] }, + { + "id": "xl_k_gambeson", + "type": "ARMOR", + "name": { "str": "XL kevlar gambeson" }, + "copy-from": "k_gambeson", + "proportional": { "weight": 1.125, "volume": 1.13, "price": 1.25 }, + "flags": [ "VARSIZE", "STURDY", "OVERSIZE" ] + }, { "id": "hazmat_suit", "repairs_like": "fsurvivor_suit", @@ -747,21 +778,20 @@ "category": "armor", "name": { "str": "SWAT armor" }, "//": "This is well within the pricing structure I found for ballistic vest, shins, and LBE. LEO gear ain't cheap.", - "description": "A suit of black bulletproof armor with lots of pockets. The word SWAT is emblazoned across the back.", - "weight": "7800 g", - "volume": "13 L", + "description": "A suit of black armour plating covering the vital parts of the chest, arms, and legs. The word SWAT is emblazoned across the back.", + "weight": "2200 g", + "volume": "9 L", "price": 285000, - "price_postapoc": 2000, + "price_postapoc": 2500, "to_hit": -3, - "bashing": 6, - "material": [ "kevlar_layered", "cotton" ], + "material": [ "kevlar_layered", "thermo_resin", "plastic" ], "symbol": "[", - "looks_like": "touring_suit", + "looks_like": "armor_riot", "color": "dark_gray", "armor": [ - { "covers": [ "torso" ], "coverage": 95, "encumbrance": [ 12, 19 ] }, - { "covers": [ "leg_l", "leg_r" ], "coverage": 95, "encumbrance": [ 12, 16 ] }, - { "covers": [ "arm_l", "arm_r" ], "coverage": 95, "encumbrance": [ 12, 12 ] } + { "covers": [ "torso" ], "coverage": 65, "encumbrance": [ 10, 17 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 65, "encumbrance": [ 10, 14 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 60, "encumbrance": [ 12, 12 ] } ], "pocket_data": [ { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 80 }, @@ -769,11 +799,10 @@ { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 }, { "pocket_type": "CONTAINER", "max_contains_volume": "1500 ml", "max_contains_weight": "3 kg", "moves": 120 } ], - "warmth": 35, - "material_thickness": 11, - "valid_mods": [ "steel_padded" ], - "environmental_protection": 4, - "flags": [ "POCKETS", "STURDY" ] + "warmth": 12, + "material_thickness": 5, + "environmental_protection": 1, + "flags": [ "POCKETS", "STURDY", "OUTER" ] }, { "id": "touring_suit", @@ -862,8 +891,38 @@ { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 100 }, { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 100 } ], + "warmth": 15, + "material_thickness": 6, + "environmental_protection": 3, + "flags": [ "OVERSIZE", "VARSIZE", "WATERPROOF", "POCKETS", "HOOD", "RAINPROOF", "STURDY" ] + }, + { + "id": "mil_flight_suit", + "type": "ARMOR", + "name": { "str": "military flight suit" }, + "description": "A sage-green US military flight suit. It has various insignia embroidered onto it.", + "weight": "1315 g", + "volume": "4687 ml", + "price": 22065, + "price_postapoc": 500, + "to_hit": -3, + "material": [ "nomex" ], + "symbol": "[", + "looks_like": "touring_suit", + "color": "green", + "armor": [ + { "covers": [ "torso" ], "coverage": 95, "encumbrance": [ 1, 2 ] }, + { "covers": [ "arm_l", "arm_r" ], "coverage": 50, "encumbrance": [ 1, 1 ] }, + { "covers": [ "leg_l", "leg_r" ], "coverage": 80, "encumbrance": [ 1, 2 ] } + ], + "pocket_data": [ + { "pocket_type": "CONTAINER", "max_contains_volume": "700 ml", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "700 ml", "max_contains_weight": "2 kg", "moves": 80 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 100 }, + { "pocket_type": "CONTAINER", "max_contains_volume": "250 ml", "max_contains_weight": "1 kg", "moves": 100 } + ], "warmth": 25, - "material_thickness": 0.3, + "material_thickness": 0.8, "flags": [ "VARSIZE", "FANCY", "POCKETS" ] } ] diff --git a/data/json/items/book/barter.json b/data/json/items/book/barter.json index 65879e04c9091..31b70458fe9bf 100644 --- a/data/json/items/book/barter.json +++ b/data/json/items/book/barter.json @@ -2,7 +2,7 @@ { "id": "mag_barter", "type": "BOOK", - "name": { "str": "car buyer's guide" }, + "name": { "str": "Car Buyer's Guide", "str_pl": "copies of Car Buyer's Guide" }, "description": "Normally this glossy, ad-filled magazine about cars would be pointless, but it has a series of articles on haggling techniques.", "weight": "90 g", "volume": "250 ml", diff --git a/data/json/items/book/cooking.json b/data/json/items/book/cooking.json index fbc5d095774b8..169ebbb7605fe 100644 --- a/data/json/items/book/cooking.json +++ b/data/json/items/book/cooking.json @@ -376,6 +376,15 @@ ], "copy-from": "mag_cooking" }, + { + "id": "vacuum_sealing", + "type": "BOOK", + "name": { "str": "Vacuum Sealer Instructions", "str_pl": "copies of Vacuum Sealer Instructions" }, + "description": "This dry guide to a home-use vacuum sealer goes into clear detail on everything you can seal with the device and how to do it safely, and includes some basic recipes.", + "price_postapoc": 1500, + "proficiencies": [ { "proficiency": "prof_preservation", "time_factor": 0.05, "fail_factor": 0.1 } ], + "copy-from": "mag_cooking" + }, { "id": "baking_book", "type": "BOOK", diff --git a/data/json/items/book/maps.json b/data/json/items/book/maps.json index 9a7ca98ca18a6..b370fb4ff1e52 100644 --- a/data/json/items/book/maps.json +++ b/data/json/items/book/maps.json @@ -19,7 +19,7 @@ "copy-from": "abstractmap", "type": "GENERIC", "name": { "str": "handwritten note" }, - "description": "A small, meticulously folded piece of paper, filled with tiny handwriting and some surprisingly precise diagrams of subway tunnels, access codes, ventilation shafts, and…guard shifts? You have the feeling they weren't supposed to write any of this stuff down.", + "description": "A small, meticulously folded piece of paper, filled with tiny handwriting and some surprisingly precise diagrams of subway tunnels, access codes, ventilation shafts, and… guard shifts? You have the feeling they weren't supposed to write any of this stuff down.", "color": "blue", "volume": "10 ml", "weight": "10 g", diff --git a/data/json/items/book/misc_scifi.json b/data/json/items/book/misc_scifi.json index 0fd9be5ce99bc..db6259e0c6445 100644 --- a/data/json/items/book/misc_scifi.json +++ b/data/json/items/book/misc_scifi.json @@ -7,7 +7,7 @@ "snippet_category": [ { "id": "scifi1_1", - "text": "This is a copy of Gibson's \"Neuromancer\". Written in the eighties, it was surprisingly accurate in predicting much of modern society… Until recently." + "text": "This is a copy of Gibson's \"Neuromancer\". Written in the eighties, it was surprisingly accurate in predicting much of modern society… until recently." }, { "id": "scifi1_2", diff --git a/data/json/items/comestibles/carnivore.json b/data/json/items/comestibles/carnivore.json index a64106827f6a5..3d426ef9cbed5 100644 --- a/data/json/items/comestibles/carnivore.json +++ b/data/json/items/comestibles/carnivore.json @@ -867,6 +867,7 @@ "material": [ "bone" ], "milling": { "into": "meal_bone", "conversion_rate": 4 }, "volume": "250 ml", + "longest_side": "40 cm", "vitamins": [ [ "calcium", 96 ] ] }, { @@ -1427,5 +1428,39 @@ "description": "A small boiled stomach from a demihuman, nothing else. It looks all but appetizing.", "material": [ "flesh" ], "extend": { "flags": [ "STRICT_HUMANITARIANISM" ] } + }, + { + "type": "GENERIC", + "id": "skull_human", + "name": { "str": "human skull" }, + "description": "The skull of a human being. Carrying this around probably isn't going to win you any friends.", + "flags": [ "CANNIBALISM", "TRADER_AVOID" ], + "category": "spare_parts", + "weight": "1 kg", + "volume": "1400 ml", + "symbol": "@", + "color": "white", + "price": 0, + "price_postapoc": 10, + "material": [ "bone" ] + }, + { + "id": "meat_fried", + "copy-from": "meat_cooked", + "type": "COMESTIBLE", + "name": { "str": "fried meat" }, + "conditional_names": [ + { "type": "FLAG", "condition": "CANNIBALISM", "name": { "str_sp": "fried fool" } }, + { "type": "FLAG", "condition": "STRICT_HUMANITARIANISM", "name": { "str_sp": "fried familiar" } }, + { "type": "COMPONENT_ID", "condition": "mutant", "name": { "str_sp": "%s, mutant" } } + ], + "description": "Delicious oil-fried meat.", + "color": "brown", + "price_postapoc": 200, + "quench": -1, + "fun": 6, + "healthy": -1, + "weight": "298 g", + "flags": [ "EATEN_HOT" ] } ] diff --git a/data/json/items/comestibles/med.json b/data/json/items/comestibles/med.json index 147d857c836de..7becbd2304350 100644 --- a/data/json/items/comestibles/med.json +++ b/data/json/items/comestibles/med.json @@ -338,14 +338,14 @@ "weight": "9 g", "volume": "250 ml", "price": 1000, - "price_postapoc": 500, + "price_postapoc": 2500, "charges": 5, "symbol": "!", "color": "brown", "stim": 1, - "healthy": -1, + "healthy": -4, "fun": 15, - "addiction_potential": 50, + "addiction_potential": 60, "addiction_type": "nicotine", "flags": [ "NO_INGEST", "IRREPLACEABLE_CONSUMABLE", "EDIBLE_FROZEN" ], "use_action": [ "SMOKING" ] diff --git a/data/json/items/comestibles/mutagen.json b/data/json/items/comestibles/mutagen.json index a9c7a9dac13dd..6f803cdd898ba 100644 --- a/data/json/items/comestibles/mutagen.json +++ b/data/json/items/comestibles/mutagen.json @@ -241,7 +241,7 @@ "name": { "str": "batrachian serum" }, "description": "A super-concentrated mutagen that looks like pond water… are the shadows in it moving? You need a syringe to inject it… if you really want to?", "color": "light_gray", - "use_action": { "type": "mutagen_iv", "mutation_category": "GASTROPOD" } + "use_action": { "type": "mutagen_iv", "mutation_category": "BATRACHIAN" } }, { "id": "iv_mutagen_troglobite", @@ -433,7 +433,7 @@ "type": "COMESTIBLE", "name": { "str": "batrachian mutagen" }, "description": "A shadowy mutagen that looks like it might be full of tiny swimming tadpoles.", - "use_action": { "type": "mutagen", "mutation_category": "GASTROPOD" } + "use_action": { "type": "mutagen", "mutation_category": "BATRACHIAN" } }, { "id": "mutagen_snail", diff --git a/data/json/items/comestibles/nuts.json b/data/json/items/comestibles/nuts.json index df027166f17ee..2065fb9db19e2 100644 --- a/data/json/items/comestibles/nuts.json +++ b/data/json/items/comestibles/nuts.json @@ -43,7 +43,7 @@ }, { "type": "COMESTIBLE", - "id": "pistachio_unshelled", + "id": "pistachio_shelled", "name": { "str_sp": "shelled pistachios" }, "weight": "30 g", "color": "green", @@ -68,7 +68,7 @@ "type": "COMESTIBLE", "id": "pistachio_roasted", "name": { "str_sp": "roasted pistachios" }, - "copy-from": "pistachio_unshelled", + "copy-from": "pistachio_shelled", "healthy": 2, "description": "A handful of roasted nuts from a pistachio tree.", "price": 150, @@ -77,7 +77,7 @@ }, { "type": "COMESTIBLE", - "id": "almond_unshelled", + "id": "almond_shelled", "name": { "str_sp": "shelled almonds" }, "weight": "30 g", "color": "brown", @@ -121,7 +121,7 @@ "type": "COMESTIBLE", "id": "almond_roasted", "name": { "str_sp": "roasted almonds" }, - "copy-from": "almond_unshelled", + "copy-from": "almond_shelled", "healthy": 2, "description": "A handful of roasted nuts from an almond tree.", "price": 150, @@ -154,7 +154,7 @@ }, { "type": "COMESTIBLE", - "id": "pecan_unshelled", + "id": "pecan_shelled", "name": { "str_sp": "shelled pecans" }, "weight": "30 g", "color": "brown", @@ -179,7 +179,7 @@ "type": "COMESTIBLE", "id": "pecan_roasted", "name": { "str_sp": "roasted pecans" }, - "copy-from": "pecan_unshelled", + "copy-from": "pecan_shelled", "description": "A handful of roasted nuts from a pecan tree.", "price": 150, "flags": [ "EATEN_HOT", "EDIBLE_FROZEN" ], @@ -187,7 +187,7 @@ }, { "type": "COMESTIBLE", - "id": "peanut_unshelled", + "id": "peanut_shelled", "name": { "str_sp": "shelled peanuts" }, "weight": "30 g", "color": "brown", @@ -231,7 +231,7 @@ }, { "type": "COMESTIBLE", - "id": "walnut_unshelled", + "id": "walnut_shelled", "name": { "str_sp": "shelled walnuts" }, "weight": "30 g", "color": "brown", @@ -255,7 +255,7 @@ "type": "COMESTIBLE", "id": "walnut_roasted", "name": { "str_sp": "roasted walnuts" }, - "copy-from": "walnut_unshelled", + "copy-from": "walnut_shelled", "healthy": 1, "description": "A handful of roasted nuts from a walnut tree.", "price": 90, @@ -264,7 +264,7 @@ }, { "type": "COMESTIBLE", - "id": "chestnut_unshelled", + "id": "chestnut_shelled", "name": { "str_sp": "shelled chestnuts" }, "weight": "30 g", "color": "brown", @@ -288,16 +288,16 @@ "type": "COMESTIBLE", "id": "chestnut_roasted", "name": { "str_sp": "roasted chestnuts" }, - "copy-from": "chestnut_unshelled", + "copy-from": "chestnut_shelled", "healthy": 1, "description": "A handful of roasted nuts from a chestnut tree.", "price": 90, "flags": [ "EATEN_HOT", "EDIBLE_FROZEN" ], - "fun": 1 + "fun": 3 }, { "type": "COMESTIBLE", - "id": "hazelnut_unshelled", + "id": "hazelnut_shelled", "name": { "str_sp": "shelled hazelnuts" }, "weight": "30 g", "color": "brown", @@ -365,7 +365,7 @@ "type": "COMESTIBLE", "id": "hazelnut_roasted", "name": { "str_sp": "roasted hazelnuts" }, - "copy-from": "hazelnut_unshelled", + "copy-from": "hazelnut_shelled", "healthy": 1, "description": "A handful of roasted nuts from a hazelnut tree.", "price": 90, @@ -374,7 +374,7 @@ }, { "type": "COMESTIBLE", - "id": "hickory_nut_unshelled", + "id": "hickory_nut_shelled", "name": { "str_sp": "shelled hickory nuts" }, "weight": "30 g", "color": "brown", @@ -398,7 +398,7 @@ "type": "COMESTIBLE", "id": "hickory_nut_roasted", "name": { "str_sp": "roasted hickory nuts" }, - "copy-from": "hickory_nut_unshelled", + "copy-from": "hickory_nut_shelled", "healthy": 1, "description": "A handful of roasted nuts from a hickory tree.", "price": 90, diff --git a/data/json/items/comestibles/offal_dishes.json b/data/json/items/comestibles/offal_dishes.json index ab0fb1db4da96..40e5a30a44c03 100644 --- a/data/json/items/comestibles/offal_dishes.json +++ b/data/json/items/comestibles/offal_dishes.json @@ -131,7 +131,7 @@ { "id": "leverpostej", "type": "COMESTIBLE", - "comestible_type": "DRINK", + "comestible_type": "FOOD", "name": { "str_sp": "leverpostej" }, "symbol": "%", "looks_like": "peanutbutter", diff --git a/data/json/items/containers.json b/data/json/items/containers.json index 1504747cdda75..d552f21a966fc 100644 --- a/data/json/items/containers.json +++ b/data/json/items/containers.json @@ -451,6 +451,22 @@ "color": "white", "pocket_data": [ { "pocket_type": "CONTAINER", "rigid": true, "max_contains_volume": "90 ml", "max_contains_weight": "3 kg" } ] }, + { + "id": "case_cigar", + "type": "GENERIC", + "category": "container", + "name": { "str": "cigar case" }, + "looks_like": "box_small", + "description": "A small handmade wood and leather case meant to hold one or two cigars.", + "weight": "95 g", + "volume": "323 ml", + "price": 10000, + "price_postapoc": 50, + "material": [ "wood", "leather" ], + "symbol": "u", + "color": "brown", + "pocket_data": [ { "pocket_type": "CONTAINER", "rigid": true, "max_contains_volume": "145 ml", "max_contains_weight": "1 kg" } ] + }, { "id": "box_small", "type": "GENERIC", @@ -476,6 +492,30 @@ "symbol": ")", "color": "brown" }, + { + "id": "box_small_wood", + "type": "GENERIC", + "category": "container", + "name": { "str": "small wooden box", "str_pl": "small wooden boxes" }, + "description": "A small wooden box a few inches on each side, just about right for holding a few small items.", + "weight": "400 g", + "volume": "2010 ml", + "longest_side": "181 mm", + "pocket_data": [ + { + "pocket_type": "CONTAINER", + "rigid": true, + "max_contains_volume": "1350 ml", + "max_contains_weight": "4536 g", + "max_item_length": "167 mm" + } + ], + "price": 2000, + "price_postapoc": 5, + "material": [ "wood" ], + "symbol": "[", + "color": "brown" + }, { "id": "box_medium", "type": "GENERIC", diff --git a/data/json/items/fake.json b/data/json/items/fake.json index 310d374062d5a..6955eabbfa84e 100644 --- a/data/json/items/fake.json +++ b/data/json/items/fake.json @@ -54,7 +54,7 @@ "copy-from": "fake_item", "type": "TOOL", "name": { "str_sp": "bionic goggles" }, - "qualities": [ [ "GLARE", 2 ] ] + "qualities": [ [ "GLARE", 1 ] ] }, { "id": "bio_scalpel", diff --git a/data/json/items/fluff.json b/data/json/items/fluff.json index a4ef05e53707f..a0b649b36884a 100644 --- a/data/json/items/fluff.json +++ b/data/json/items/fluff.json @@ -250,6 +250,36 @@ "symbol": "p", "color": "dark_gray" }, + { + "id": "cigar_cutter", + "type": "GENERIC", + "category": "other", + "name": { "str": "cigar cutter" }, + "description": "A set of small blades that pinch together to cut the end off of a cigar.", + "weight": "81 g", + "volume": "19 ml", + "price": 2200, + "price_postapoc": 5, + "material": [ "steel" ], + "symbol": "-", + "color": "yellow", + "flags": [ "NO_REPAIR" ] + }, + { + "id": "cigar_punch", + "type": "GENERIC", + "category": "other", + "name": { "str": "cigar punch", "str_pl": "cigar punches" }, + "description": "A small tube meant to cut a hole in the end of a cigar.", + "weight": "25 g", + "volume": "20 ml", + "price": 1200, + "price_postapoc": 0, + "material": [ "aluminum" ], + "symbol": "o", + "color": "light_gray", + "flags": [ "NO_REPAIR" ] + }, { "id": "xedra_seismograph", "type": "ARMOR", diff --git a/data/json/items/generic.json b/data/json/items/generic.json index 9ceb69618282b..e090dfb6d3f91 100644 --- a/data/json/items/generic.json +++ b/data/json/items/generic.json @@ -977,7 +977,8 @@ "weight": "15000 g", "volume": "20 L", "bashing": 5, - "to_hit": -5 + "to_hit": -5, + "flags": [ "FRAGILE_MELEE" ] }, { "type": "GENERIC", @@ -1509,7 +1510,7 @@ "color": "yellow", "name": { "str": "broken loudspeaker" }, "category": "other", - "description": "A broken loudspeaker. It's so unusually quiet now… Could be gutted for parts.", + "description": "A broken loudspeaker. It's so unusually quiet now…. Could be gutted for parts.", "price": 1000, "price_postapoc": 500, "material": [ "steel" ], @@ -2720,7 +2721,7 @@ "price": 1000, "price_postapoc": 0, "material": [ "plastic" ], - "flags": [ "NO_UNLOAD", "NO_RELOAD" ], + "flags": [ "NO_UNLOAD", "NO_RELOAD", "TRADER_AVOID" ], "weight": "6 g", "volume": "5 ml", "to_hit": -3, diff --git a/data/json/items/generic/bedding.json b/data/json/items/generic/bedding.json index 2e86b03115b86..d33b8c0ffeed2 100644 --- a/data/json/items/generic/bedding.json +++ b/data/json/items/generic/bedding.json @@ -22,9 +22,9 @@ "type": "ARMOR", "name": { "str": "sheet" }, "description": "A large fabric sheet, could be used as a curtain or bedsheets; or cut up for a bunch of rags.", - "//density": "120 g / m²", - "weight": "771 g", - "volume": "5 L", + "//density": "1.55 grams per mL", + "weight": "800 g", + "volume": "520 ml", "price": 2000, "price_postapoc": 50, "to_hit": -1, diff --git a/data/json/items/generic/dining_kitchen.json b/data/json/items/generic/dining_kitchen.json index 9270356152308..51948465caaa7 100644 --- a/data/json/items/generic/dining_kitchen.json +++ b/data/json/items/generic/dining_kitchen.json @@ -632,6 +632,7 @@ "price_postapoc": 0, "weight": "28 g", "volume": "15 ml", + "longest_side": "23 cm", "material": [ "wood" ], "bashing": 1, "cutting": 1, diff --git a/data/json/items/gun/32.json b/data/json/items/gun/32.json index c0d9acf116f9a..854b4e678977e 100644 --- a/data/json/items/gun/32.json +++ b/data/json/items/gun/32.json @@ -151,8 +151,8 @@ "looks_like": "glock_17", "copy-from": "pistol_backup", "type": "GUN", - "name": { "str": "Kel-Tec P32" }, - "description": "One of Kel-tec's oldest designs, the P32 is a popular option for deep concealment and backup usage. Despite its extreme light weight and small size, its .32 ACP chambering makes for good handling and recoil control.", + "name": { "str": "Kel-Tec P-32" }, + "description": "One of Kel-Tec's oldest designs, the P-32 is a popular option for deep concealment and backup usage. Despite its extreme light weight and small size, its .32 ACP chambering makes for good handling and recoil control.", "ascii_picture": "P3AT", "weight": "186 g", "volume": "138 ml", diff --git a/data/json/items/gun/380.json b/data/json/items/gun/380.json index 2f15edf8c5267..16636b67fd4b7 100644 --- a/data/json/items/gun/380.json +++ b/data/json/items/gun/380.json @@ -29,8 +29,8 @@ "id": "kp3at", "copy-from": "kp32", "type": "GUN", - "name": { "str": "Kel-Tec P3AT" }, - "description": "Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular P3AT offers better ballistics in a small, concealable lightweight package. Handling leaves something to be desired due to snappier recoil and diminutive controls.", + "name": { "str": "Kel-Tec P-3AT" }, + "description": "Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular P-3AT offers better ballistics in a small, concealable lightweight package. Handling leaves something to be desired due to snappier recoil and diminutive controls.", "ascii_picture": "P3AT", "weight": "218 g", "volume": "163 ml", diff --git a/data/json/items/gun/57.json b/data/json/items/gun/57.json index e665cef12c812..c2d9620d4b55a 100644 --- a/data/json/items/gun/57.json +++ b/data/json/items/gun/57.json @@ -4,8 +4,8 @@ "looks_like": "glock_17", "type": "GUN", "reload_noise_volume": 10, - "name": { "str": "FN Five-Seven" }, - "description": "Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a lightweight pistol with a very high capacity, best used against armored opponents.", + "name": { "str": "FN Five-seveN" }, + "description": "Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a lightweight pistol with a very high capacity, best used against armored opponents.", "ascii_picture": "FN_five_seven", "weight": "600 g", "volume": "551 ml", diff --git a/data/json/items/gunmod/underbarrel.json b/data/json/items/gunmod/underbarrel.json index f8a74502fa3b2..42f96a4ab810c 100644 --- a/data/json/items/gunmod/underbarrel.json +++ b/data/json/items/gunmod/underbarrel.json @@ -3,7 +3,7 @@ "id": "bipod", "type": "GUNMOD", "name": { "str": "bipod" }, - "description": "Bipods are commonly used on rifles and machine guns to provide a forward rest and reduce motion. Although they greatly improve handling of recoil they are usable only on certain surfaces and are slow to equip.", + "description": "Bipods are commonly used on rifles and machine guns to provide a forward rest and reduce motion. Although they greatly improve handling of recoil, they are usable only on certain surfaces (or from the prone position), and are slow to equip.", "weight": "400 g", "volume": "500 ml", "price": 68000, @@ -25,7 +25,7 @@ "copy-from": "bipod", "type": "GUNMOD", "name": { "str": "modified bipod" }, - "description": "Bipods are commonly used on rifles and machine guns to provide a forward rest and reduce motion. Although they greatly improve handling of recoil they are usable only on certain surfaces and are slow to equip. This one was modified and customized to mount on pretty much any weapon, if you so want.", + "description": "Bipods are commonly used on rifles and machine guns to provide a forward rest and reduce motion. Although they greatly improve handling of recoil, they are usable only on certain surfaces (or from the prone position), and are slow to equip. This one was modified and customized to mount on pretty much any weapon, if you so want.", "mod_targets": [ "pistol", "smg", "rifle", "shotgun", "launcher", "crossbow" ], "extend": { "flags": [ "PUMP_RAIL_COMPATIBLE" ] } }, diff --git a/data/json/items/magazine/32.json b/data/json/items/magazine/32.json index 3351dc5645ac6..a538457d77e08 100644 --- a/data/json/items/magazine/32.json +++ b/data/json/items/magazine/32.json @@ -54,8 +54,8 @@ "id": "kp32mag", "looks_like": "glock17_17", "type": "MAGAZINE", - "name": { "str": "P32 7-round magazine" }, - "description": "A standard 7-round steel box magazine for the Kel-Tec P32.", + "name": { "str": "P-32 7-round magazine" }, + "description": "A standard 7-round steel box magazine for the Kel-Tec P-32.", "weight": "65 g", "volume": "41ml", "price": 2600, diff --git a/data/json/items/magazine/380.json b/data/json/items/magazine/380.json index 2e3f9489bd0eb..0130e36c6657c 100644 --- a/data/json/items/magazine/380.json +++ b/data/json/items/magazine/380.json @@ -3,8 +3,8 @@ "id": "kp3atmag", "looks_like": "glock17_17", "type": "MAGAZINE", - "name": { "str": "P3AT 6-round magazine" }, - "description": "A standard 6-round steel box magazine for the Kel-Tec P3AT.", + "name": { "str": "P-3AT 6-round magazine" }, + "description": "A standard 6-round steel box magazine for the Kel-Tec P-3AT.", "weight": "60 g", "volume": "44 ml", "price": 1900, diff --git a/data/json/items/magazine/57.json b/data/json/items/magazine/57.json index 6fa0197f33e10..275894e70723f 100644 --- a/data/json/items/magazine/57.json +++ b/data/json/items/magazine/57.json @@ -3,8 +3,8 @@ "id": "fn57mag", "looks_like": "glock17_17", "type": "MAGAZINE", - "name": { "str": "Five-Seven 20-round magazine" }, - "description": "A standard capacity magazine for use with the FN Five-Seven.", + "name": { "str": "Five-seveN 20-round magazine" }, + "description": "A standard capacity magazine for use with the FN Five-seveN.", "weight": "120 g", "volume": "250 ml", "price": 3700, diff --git a/data/json/items/melee/bludgeons.json b/data/json/items/melee/bludgeons.json index 5dbb8b4370813..c3f3d831ce0f0 100644 --- a/data/json/items/melee/bludgeons.json +++ b/data/json/items/melee/bludgeons.json @@ -11,6 +11,7 @@ "price": 25000, "price_postapoc": 3000, "bashing": 50, + "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "uneven" }, "material": [ "wood", "steel" ], "symbol": "\\", "color": "dark_gray", @@ -29,6 +30,7 @@ "price": 4000, "price_postapoc": 1000, "bashing": 35, + "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "uneven" }, "material": [ "wood" ], "symbol": "\\", "color": "brown", @@ -42,7 +44,7 @@ "description": "A sturdy wood bat. Makes a great melee weapon.", "weight": "1133 g", "longest_side": "90 cm", - "to_hit": 3, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "price_postapoc": 750, "color": "brown", "symbol": "/", @@ -60,7 +62,7 @@ "description": "An aluminum baseball bat, lighter than a wooden bat and a little easier to swing as a result.", "weight": "765 g", "longest_side": "90 cm", - "to_hit": 3, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "color": "light_gray", "symbol": "/", "price_postapoc": 1250, @@ -79,7 +81,7 @@ "description": "A baseball bat made out of foam rubber with a plastic handle. Light, well-balanced, and easy to wield, but almost completely ineffective.", "weight": "225 g", "longest_side": "60 cm", - "to_hit": 2, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "neutral" }, "color": "yellow", "symbol": "/", "price_postapoc": "50 cent", @@ -105,6 +107,7 @@ "use_action": { "menu_text": "Expand", "type": "transform", "target": "baton-extended", "msg": "You snap open your baton." }, "volume": "250 ml", "bashing": 4, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "neutral" }, "price": 17500 }, { @@ -115,7 +118,7 @@ "description": "A telescoping baton that collapses for easy storage. Makes an excellent melee weapon. Activate to collapse.", "weight": "725 g", "longest_side": "60 cm", - "to_hit": 2, + "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, "price_postapoc": 750, "color": "dark_gray", "symbol": "/", @@ -140,6 +143,7 @@ "price_postapoc": 12000, "bashing": 19, "cutting": 38, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "steel", "wood" ], "symbol": "/", "color": "light_gray", @@ -159,7 +163,7 @@ "extend": { "flags": [ "FRAGILE_MELEE" ] }, "material": [ "aluminum", "wood" ], "weight": "2068 g", - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "uneven" }, "price": 1050, "price_postapoc": 500 }, @@ -170,6 +174,7 @@ "name": { "str": "battle axe" }, "description": "This is a huge axe designed for warfare. You notice that the axe heads aren't seated properly at all.", "proportional": { "bashing": 2, "cutting": 0.25 }, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "budget_steel", "wood" ], "price": 40000, @@ -191,7 +196,7 @@ "volume": "350 ml", "longest_side": "20 cm", "bashing": 13, - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "good" }, "category": "weapons" }, { @@ -214,7 +219,7 @@ "//": "MA reference I used held that a bokken crushes rather than cuts (or impales) but is otherwise just as damaging as a katana. Nerfed by popular demand.", "bashing": 24, "cutting": 1, - "to_hit": 3, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "category": "weapons" }, { @@ -233,7 +238,7 @@ "extend": { "flags": [ "FRAGILE_MELEE" ] }, "material": [ "wood" ], "weight": "680 g", - "to_hit": 2, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "neutral" }, "price": 12500, "price_postapoc": 500 }, @@ -251,7 +256,7 @@ "relative": { "cutting": -1 }, "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "wood" ], - "to_hit": 2, + "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "good" }, "price": 12500, "price_postapoc": 750 }, @@ -271,7 +276,7 @@ "longest_side": "40 cm", "bashing": 14, "cutting": 14, - "to_hit": -1, + "to_hit": { "grip": "none", "length": "short", "surface": "any", "balance": "neutral" }, "flags": [ "STAB", "NONCONDUCTIVE" ] }, { @@ -280,7 +285,6 @@ "name": { "str": "bowling pin" }, "description": "A blunt bowling pin. Makes a decent melee weapon, if somewhat short.", "weight": "1530 g", - "to_hit": -1, "price_postapoc": 50, "color": "brown", "symbol": "/", @@ -290,6 +294,7 @@ "volume": "2250 ml", "longest_side": "40 cm", "bashing": 11, + "to_hit": { "grip": "none", "length": "short", "surface": "any", "balance": "neutral" }, "price": 1000 }, { @@ -298,7 +303,6 @@ "name": { "str": "barbed wire bat" }, "description": "A baseball bat wrapped with barbed wire. A brutal melee weapon.", "weight": "1420 g", - "to_hit": 3, "price_postapoc": 1250, "color": "brown", "symbol": "/", @@ -309,6 +313,7 @@ "longest_side": "90 cm", "bashing": 22, "cutting": 8, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "price": 20000 }, { @@ -317,7 +322,6 @@ "name": { "str": "walking cane" }, "description": "Handicapped or not, you always walk in style. Consisting of a metal headpiece and a wooden body, this makes a great bashing weapon in a pinch.", "weight": "453 g", - "to_hit": 2, "color": "dark_gray", "symbol": "/", "material": [ "wood", "aluminum" ], @@ -327,6 +331,7 @@ "volume": "1 L", "longest_side": "80 cm", "bashing": 10, + "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, "price": 16000, "price_postapoc": 100 }, @@ -345,7 +350,7 @@ "volume": "1500 ml", "longest_side": "150 cm", "bashing": 24, - "to_hit": 2, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "neutral" }, "price_postapoc": 1250, "category": "weapons" }, @@ -355,17 +360,17 @@ "name": { "str": "cudgel" }, "description": "A slender long rod of wood, while traditionally intended as a training tool for many dueling moves, it still makes a good melee weapon in a pinch.", "weight": "425 g", - "to_hit": 2, "price_postapoc": 50, "color": "brown", "symbol": "/", "material": [ "wood" ], "techniques": [ "WBLOCK_2", "RAPID", "PRECISE" ], - "flags": [ "DURABLE_MELEE", "BELT_CLIP" ], + "flags": [ "BELT_CLIP" ], "weapon_category": [ "BATONS" ], "volume": "600 ml", "longest_side": "60 cm", "bashing": 10, + "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, "price": 1000 }, { @@ -375,7 +380,6 @@ "name": { "str": "makeshift macuahuitl" }, "description": "A flat wooden club with sharpened pieces of stone sticking to both of its sides.", "weight": "955 g", - "to_hit": 1, "price_postapoc": 250, "color": "dark_gray", "symbol": "/", @@ -385,6 +389,7 @@ "longest_side": "70 cm", "bashing": 7, "cutting": 14, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "price": 5900 }, { @@ -400,6 +405,7 @@ "volume": "30 ml", "longest_side": "20 cm", "cutting": 6, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "line", "balance": "good" }, "flags": [ "SHEATH_KNIFE", "CONDUCTIVE", "FRAGILE_MELEE" ], "weapon_category": [ "SHIVS" ], "qualities": [ [ "BUTCHER", -18 ] ] @@ -418,7 +424,7 @@ "volume": "1 L", "longest_side": "110 cm", "bashing": 14, - "to_hit": 1, + "to_hit": { "grip": "none", "length": "long", "surface": "any", "balance": "good" }, "flags": [ "SHEATH_GOLF" ] }, { @@ -435,7 +441,7 @@ "volume": "1250 ml", "longest_side": "80 cm", "bashing": 50, - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "uneven" }, "price": 12000, "price_postapoc": 500, "qualities": [ [ "HAMMER", 1 ] ] @@ -455,7 +461,7 @@ "volume": "900 ml", "longest_side": "60 cm", "bashing": 35, - "to_hit": -1, + "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "uneven" }, "price": 12000, "price_postapoc": 250, "qualities": [ [ "HAMMER", 1 ] ] @@ -474,7 +480,7 @@ "volume": "600 ml", "longest_side": "40 cm", "bashing": 25, - "to_hit": -1, + "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "uneven" }, "price": 6000, "price_postapoc": 250, "qualities": [ [ "HAMMER", 2 ] ] @@ -494,7 +500,7 @@ "volume": "1700 ml", "longest_side": "100 cm", "bashing": 80, - "to_hit": -4, + "to_hit": { "grip": "none", "length": "hand", "surface": "any", "balance": "clumsy" }, "price": 24000, "price_postapoc": 750, "qualities": [ [ "HAMMER", 1 ] ] @@ -515,7 +521,7 @@ "longest_side": "150 cm", "bashing": 14, "cutting": 1, - "to_hit": 2 + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "neutral" } }, { "type": "GENERIC", @@ -523,7 +529,6 @@ "name": { "str": "homewrecker" }, "description": "A long piece of wood with several chunks of steel firmly tied to it. The resulting weapon is unwieldy and slow but very heavy hitting.", "weight": "3024 g", - "to_hit": -2, "color": "brown", "symbol": "/", "material": [ "wood", "steel" ], @@ -532,6 +537,7 @@ "longest_side": "90 cm", "bashing": 35, "cutting": 2, + "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "clumsy" }, "qualities": [ [ "HAMMER", 1 ] ], "flags": [ "STAB", "NONCONDUCTIVE" ], "price": 8000, @@ -555,8 +561,8 @@ "volume": "1550 ml", "longest_side": "180 cm", "bashing": 32, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "category": "weapons", - "to_hit": 3, "qualities": [ [ "HAMMER", 1 ] ] }, { @@ -570,8 +576,8 @@ "longest_side": "180 cm", "price": 5000, "price_postapoc": 3000, - "to_hit": 3, "bashing": 24, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "material": [ "superalloy", "steel" ], "symbol": "/", "color": "light_gray", @@ -631,7 +637,7 @@ "longest_side": "200 cm", "bashing": 44, "cutting": 33, - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "uneven" }, "price_postapoc": 10000, "qualities": [ [ "COOK", 1 ] ], "category": "weapons" @@ -656,7 +662,6 @@ "name": { "str": "mace" }, "description": "A medieval weapon consisting of a wood handle with a heavy iron end. It is heavy and slow, but its crushing damage is devastating.", "weight": "1500 g", - "to_hit": 1, "color": "dark_gray", "symbol": "/", "material": [ "iron", "wood" ], @@ -666,6 +671,7 @@ "longest_side": "80 cm", "//": "Same total damage and slightly higher weight than a morningstar - exchanged.", "bashing": 40, + "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, "price": 100000, "price_postapoc": 6000, "qualities": [ [ "HAMMER", 1 ] ], @@ -715,7 +721,6 @@ "name": { "str": "trench mace" }, "description": "A mace made from a cicular chunk of steel pinned to the end of a stick. You can feel your inner Trench Raider come alive when you wield it.", "weight": "1000 g", - "to_hit": 1, "color": "dark_gray", "symbol": "/", "looks_like": "mace", @@ -725,6 +730,7 @@ "volume": "1250 ml", "longest_side": "60 cm", "bashing": 22, + "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, "price": 10000, "price_postapoc": 400, "qualities": [ [ "HAMMER", 1 ] ] @@ -744,7 +750,7 @@ "volume": "350 ml", "longest_side": "20 cm", "bashing": 12, - "to_hit": 1, + "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "good" }, "price_postapoc": 50, "category": "weapons" }, @@ -762,6 +768,7 @@ "volume": "2500 ml", "longest_side": "60 cm", "bashing": 9999, + "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, "price": 12000, "price_postapoc": 50000, "qualities": [ [ "HAMMER", 1 ] ] @@ -781,6 +788,7 @@ "longest_side": "80 cm", "bashing": 38, "cutting": 8, + "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, "flags": [ "DURABLE_MELEE", "SPEAR", "NONCONDUCTIVE" ], "price": 120000, "price_postapoc": 8000, @@ -798,7 +806,7 @@ "extend": { "flags": [ "FRAGILE_MELEE" ] }, "material": [ "aluminum", "wood" ], "weight": "700 g", - "to_hit": -1, + "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "uneven" }, "price": 12000, "price_postapoc": 500 }, @@ -812,7 +820,7 @@ "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "budget_steel", "wood" ], "weight": "1000 g", - "to_hit": -1, + "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "uneven" }, "price": 12000, "price_postapoc": 1000 }, @@ -822,7 +830,6 @@ "name": { "str": "nail bat" }, "description": "A baseball bat with several nails driven through it, an excellent melee weapon.", "weight": "1159 g", - "to_hit": 3, "color": "brown", "symbol": "/", "material": [ "wood" ], @@ -831,6 +838,7 @@ "longest_side": "90 cm", "bashing": 22, "cutting": 4, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "flags": [ "STAB" ], "price": 16000, "price_postapoc": 1750 @@ -841,7 +849,6 @@ "name": { "str": "nailboard" }, "description": "A long piece of wood with several nails through one end; essentially a simple mace. Makes an acceptable melee weapon.", "weight": "1424 g", - "to_hit": 1, "color": "brown", "symbol": "/", "material": [ "wood" ], @@ -850,6 +857,7 @@ "longest_side": "60 cm", "bashing": 10, "cutting": 3, + "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "good" }, "flags": [ "STAB" ], "price": 8000, "price_postapoc": 50 @@ -860,7 +868,6 @@ "name": { "str": "pool cue" }, "description": "A hard-wood stick designed for hitting colorful balls around a felt table. Truly, the coolest of sports.", "weight": "520 g", - "to_hit": 3, "color": "brown", "symbol": "/", "material": [ "wood" ], @@ -868,6 +875,7 @@ "volume": "2 L", "longest_side": "150 cm", "bashing": 10, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "price": 8000, "price_postapoc": 50 }, @@ -878,7 +886,6 @@ "name": { "str": "PR-24 baton (extended)", "str_pl": "PR-24 batons (extended)" }, "description": "The Monadnock PR-24 baton is a collapsible, lightweight, side-handle baton used by law enforcement all over the world. The PR designation is rumored to mean Public Relations. Activate to retract.", "weight": "680 g", - "to_hit": 3, "color": "dark_gray", "symbol": "/", "material": [ "aluminum", "plastic" ], @@ -889,6 +896,7 @@ "volume": "2 L", "longest_side": "60 cm", "bashing": 22, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "price": 30000, "price_postapoc": 750 }, @@ -899,7 +907,6 @@ "name": { "str": "PR-24 baton (retracted)", "str_pl": "PR-24 batons (retracted)" }, "description": "The Monadnock PR-24 baton is a collapsible, lightweight, side-handle baton used by law enforcement all over the world. The PR designation is rumored to mean Public Relations. Activate to extend.", "weight": "680 g", - "to_hit": 1, "color": "dark_gray", "symbol": "/", "material": [ "aluminum", "plastic" ], @@ -909,6 +916,7 @@ "volume": "1 L", "longest_side": "20 cm", "bashing": 5, + "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, "price": 30000, "price_postapoc": 750 }, @@ -929,7 +937,7 @@ "longest_side": "180 cm", "bashing": 26, "category": "weapons", - "to_hit": 3, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "price_postapoc": 1000 }, { @@ -946,7 +954,7 @@ "volume": "500 ml", "longest_side": "10 cm", "bashing": 8, - "to_hit": -1, + "to_hit": { "grip": "solid", "length": "hand", "surface": "any", "balance": "neutral" }, "qualities": [ [ "HAMMER", 1 ] ] }, { @@ -965,7 +973,7 @@ "longest_side": "20 cm", "bashing": 1, "cutting": 3, - "to_hit": -3, + "to_hit": { "grip": "none", "length": "hand", "surface": "point", "balance": "good" }, "flags": [ "STAB", "SHEATH_KNIFE", "CONDUCTIVE" ], "weapon_category": [ "SHIVS" ] }, @@ -985,7 +993,7 @@ "volume": "1500 ml", "longest_side": "100 cm", "bashing": 24, - "to_hit": 2, + "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "good" }, "price_postapoc": 1250, "category": "weapons" }, @@ -1005,7 +1013,7 @@ "volume": "1500 ml", "longest_side": "100 cm", "bashing": 27, - "to_hit": 2, + "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "good" }, "price_postapoc": 1750, "category": "weapons" }, @@ -1025,7 +1033,7 @@ "volume": "1500 ml", "longest_side": "100 cm", "bashing": 12, - "to_hit": 1, + "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "neutral" }, "price_postapoc": 50, "category": "weapons" }, @@ -1039,9 +1047,9 @@ "volume": "1800 ml", "longest_side": "180 cm", "price": 8000, - "to_hit": 3, "price_postapoc": 4500, "bashing": 32, + "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "material": [ "wood", "iron" ], "symbol": "/", "color": "brown", @@ -1071,9 +1079,9 @@ "volume": "2250 ml", "longest_side": "50 cm", "price": 17000, - "to_hit": 2, "price_postapoc": 2500, "bashing": 20, + "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, "material": [ "plastic", "steel" ], "symbol": "/", "color": "dark_gray", @@ -1111,7 +1119,6 @@ "description": "A hard plastic truncheon commonly employed by police. Originally an Okinawan weapon, it consists of a stick with a perpendicular handle attached a third of the way down its length.", "weight": "575 g", "longest_side": "50 cm", - "to_hit": 2, "price_postapoc": 750, "color": "dark_gray", "symbol": "/", @@ -1121,6 +1128,7 @@ "weapon_category": [ "BATONS" ], "volume": "2 L", "bashing": 20, + "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, "price": 19500 }, { @@ -1130,7 +1138,6 @@ "description": "A stout wooden truncheon of the sort commonly employed by police. Originally an Okinawan weapon, it consists of a stick with a perpendicular handle attached a third of the way down its length.", "weight": "921 g", "longest_side": "50 cm", - "to_hit": 2, "price_postapoc": 750, "color": "brown", "symbol": "/", @@ -1140,6 +1147,7 @@ "weapon_category": [ "BATONS" ], "volume": "2 L", "bashing": 20, + "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, "price": 19500 }, { @@ -1159,6 +1167,7 @@ "longest_side": "120 cm", "bashing": 22, "cutting": 23, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "price": 16000, "qualities": [ [ "HAMMER", 1 ] ] } diff --git a/data/json/items/melee/misc.json b/data/json/items/melee/misc.json index 2494f81788e2f..835c9dce978aa 100644 --- a/data/json/items/melee/misc.json +++ b/data/json/items/melee/misc.json @@ -13,6 +13,7 @@ "material": [ "leather" ], "flags": [ "REACH_ATTACK", "REACH3", "WHIP" ], "cutting": 3, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "category": "weapons" }, { @@ -27,9 +28,9 @@ "volume": "2250 ml", "price": 4800, "price_postapoc": 5200, - "to_hit": 2, "//": "There's no way you can swing this thing without hitting SOMETHING.", "cutting": 10, + "to_hit": { "grip": "none", "length": "long", "surface": "every", "balance": "uneven" }, "material": [ "leather", "steel" ], "flags": [ "REACH_ATTACK", "WHIP", "NONCONDUCTIVE" ] }, @@ -43,9 +44,9 @@ "volume": "1750 ml", "price": 25000, "price_postapoc": 1250, - "to_hit": -1, "bashing": 18, "cutting": 37, + "to_hit": { "grip": "none", "length": "long", "surface": "line", "balance": "neutral" }, "material": [ "steel" ], "symbol": "/", "color": "dark_gray", @@ -63,7 +64,7 @@ "volume": "250 ml", "price": 14000, "price_postapoc": 1500, - "to_hit": -1, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "bashing": 6, "//": "Yes, this is smaller than its magazine well. Go with it.", "material": [ "plastic", "aluminum" ], diff --git a/data/json/items/melee/spears_and_polearms.json b/data/json/items/melee/spears_and_polearms.json index 43d38b2d2614e..1554b77a24c8b 100644 --- a/data/json/items/melee/spears_and_polearms.json +++ b/data/json/items/melee/spears_and_polearms.json @@ -14,6 +14,7 @@ "longest_side": "140 cm", "bashing": 5, "cutting": 18, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "qualities": [ [ "COOK", 1 ] ], "flags": [ "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR" ], "price": 2000, @@ -32,7 +33,7 @@ "weight": "900 g", "bashing": 5, "cutting": 9, - "to_hit": -1, + "to_hit": { "grip": "weapon", "length": "short", "surface": "point", "balance": "neutral" }, "price_postapoc": 10, "flags": [ "SPEAR" ], "techniques": [ "WBLOCK_1" ], @@ -44,7 +45,6 @@ "name": { "str": "long pointy stick" }, "description": "A stout pole with one end sharpened to a point.", "weight": "1551 g", - "to_hit": -1, "price_postapoc": 10, "color": "brown", "looks_like": "spear_wood", @@ -55,6 +55,7 @@ "longest_side": "205 cm", "bashing": 5, "cutting": 9, + "to_hit": { "grip": "weapon", "length": "short", "surface": "point", "balance": "neutral" }, "flags": [ "SPEAR", "REACH_ATTACK", "NPC_THROWN", "SHEATH_SPEAR" ], "qualities": [ [ "COOK", 1 ] ] }, @@ -64,7 +65,6 @@ "name": { "str": "wooden spear" }, "description": "A stout pole with a fire-hardened point.", "weight": "898 g", - "to_hit": 1, "price_postapoc": 50, "color": "brown", "symbol": "/", @@ -74,6 +74,7 @@ "longest_side": "150 cm", "bashing": 4, "cutting": 15, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "flags": [ "SPEAR", "REACH_ATTACK", "NPC_THROWN", "SHEATH_SPEAR" ], "price": 4000, "qualities": [ [ "COOK", 1 ] ] @@ -87,11 +88,11 @@ "weight": "3013 g", "volume": "3250 ml", "longest_side": "180 cm", - "to_hit": -1, "price": 16000, "price_postapoc": 50, "bashing": 16, "cutting": 40, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "uneven" }, "material": [ "steel", "wood" ], "symbol": "/", "color": "light_gray", @@ -110,9 +111,9 @@ "longest_side": "180 cm", "price": 5000, "price_postapoc": 250, - "to_hit": -1, "bashing": 13, "cutting": 31, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "uneven" }, "material": [ "steel", "wood" ], "symbol": "/", "color": "light_gray", @@ -143,6 +144,7 @@ "price_postapoc": 50, "bashing": 4, "cutting": 14, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "wood", "iron" ], "symbol": "/", "color": "brown", @@ -172,9 +174,9 @@ "longest_side": "130 cm", "price": 12000, "price_postapoc": 500, - "to_hit": 1, "bashing": 5, "cutting": 19, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "material": [ "wood", "iron" ], "symbol": "/", "color": "brown", @@ -195,6 +197,7 @@ "price_postapoc": 750, "bashing": 7, "cutting": 24, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "wood", "iron" ], "symbol": "/", "color": "brown", @@ -217,6 +220,7 @@ "longest_side": "150 cm", "bashing": 6, "cutting": 18, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "flags": [ "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "FRAGILE_MELEE", "SHEATH_SPEAR" ], "price": 4900, "qualities": [ [ "COOK", 1 ] ] @@ -227,7 +231,6 @@ "name": { "str": "copper spear" }, "description": "A stout wooden pole with a spearhead worked from copper.", "weight": "1450 g", - "to_hit": 1, "price_postapoc": 1250, "color": "light_red", "symbol": "/", @@ -237,6 +240,7 @@ "longest_side": "180 cm", "bashing": 6, "cutting": 20, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "flags": [ "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR" ], "price": 1400, "qualities": [ [ "COOK", 1 ] ] @@ -247,7 +251,6 @@ "name": { "str": "steel spear" }, "description": "A stout wooden pole with a hand-forged steel spearhead.", "weight": "1498 g", - "to_hit": 1, "price_postapoc": 5500, "color": "light_gray", "symbol": "/", @@ -257,6 +260,7 @@ "longest_side": "180 cm", "bashing": 6, "cutting": 30, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "flags": [ "DURABLE_MELEE", "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR" ], "price": 16000, "qualities": [ [ "COOK", 1 ] ] @@ -274,7 +278,7 @@ "weight": "1240 g", "bashing": 8, "cutting": 13, - "to_hit": -2, + "to_hit": { "grip": "solid", "length": "short", "surface": "point", "balance": "neutral" }, "price": 200, "price_postapoc": 10, "flags": [ "SPEAR" ], @@ -287,7 +291,6 @@ "name": { "str": "basic pipe spear" }, "description": "Three pipes tightly fit together with one end cut down to a point.", "weight": "3890 g", - "to_hit": -1, "price_postapoc": 150, "color": "light_gray", "symbol": "/", @@ -297,6 +300,7 @@ "longest_side": "185 cm", "bashing": 6, "cutting": 25, + "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "neutral" }, "flags": [ "SPEAR", "REACH_ATTACK", "SHEATH_SPEAR", "DURABLE_MELEE" ], "price": 8000, "qualities": [ [ "COOK", 1 ] ] @@ -316,6 +320,7 @@ "longest_side": "184 cm", "bashing": 6, "cutting": 29, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "flags": [ "SPEAR", "REACH_ATTACK", "SHEATH_SPEAR", "DURABLE_MELEE" ], "price": 8000, "qualities": [ [ "COOK", 1 ] ] @@ -334,9 +339,10 @@ "volume": "157 ml", "longest_side": "80 cm", "bashing": 5, + "cutting": 15, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "techniques": [ "WBLOCK_1" ], "flags": [ "SPEAR" ], - "cutting": 15, "qualities": [ [ "COOK", 1 ], [ "HAMMER", 1 ] ] }, { @@ -354,6 +360,7 @@ "longest_side": "180 cm", "bashing": 5, "cutting": 31, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "flags": [ "DURABLE_MELEE", "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR" ], "price": 80000, "qualities": [ [ "COOK", 1 ] ] @@ -375,6 +382,7 @@ "longest_side": "180 cm", "bashing": 19, "cutting": 51, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "price_postapoc": 10000, "qualities": [ [ "COOK", 1 ], [ "BUTCHER", -70 ] ], "category": "weapons" @@ -390,7 +398,7 @@ "extend": { "flags": [ "FRAGILE_MELEE" ] }, "material": [ "aluminum", "wood" ], "weight": "1644 g", - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "price": 5000, "price_postapoc": 500 }, @@ -411,6 +419,7 @@ "longest_side": "180 cm", "bashing": 17, "cutting": 40, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "price_postapoc": 8000 }, { @@ -427,6 +436,7 @@ "longest_side": "180 cm", "bashing": 7, "cutting": 45, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "qualities": [ [ "CUT", 1 ], [ "BUTCHER", -24 ] ], "flags": [ "DURABLE_MELEE", "REACH_ATTACK", "NONCONDUCTIVE", "POLEARM", "SHEATH_SPEAR", "ALWAYS_TWOHAND" ], "price": 80000, @@ -456,7 +466,7 @@ "extend": { "flags": [ "FRAGILE_MELEE" ] }, "material": [ "aluminum", "wood" ], "weight": "1400 g", - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "price": 8000, "price_postapoc": 500 }, @@ -466,7 +476,6 @@ "name": { "str_sp": "survivor naginata" }, "description": "This sturdy steel shaft with a sword blade at the end is good for both slashing and stabbing.", "weight": "1700 g", - "to_hit": -1, "color": "light_gray", "symbol": "/", "material": [ "steel" ], @@ -475,6 +484,7 @@ "longest_side": "180 cm", "bashing": 6, "cutting": 40, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "uneven" }, "flags": [ "POLEARM", "REACH_ATTACK", "SHEATH_SPEAR" ], "//": "Description says it can slash. STAB currently doesn't slash, but at least it doesn't give the spear bonus", "price": 8000, @@ -487,7 +497,6 @@ "name": { "str": "wooden javelin" }, "description": "A fire-hardened wooden spear honed to a sharper point.", "weight": "600 g", - "to_hit": 2, "color": "brown", "symbol": "/", "material": [ "wood" ], @@ -495,6 +504,7 @@ "volume": "1 L", "longest_side": "140 cm", "cutting": 11, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "thrown_damage": [ { "damage_type": "bash", "amount": 5 }, { "damage_type": "stab", "amount": 11 } ], "flags": [ "SPEAR", "SHEATH_SPEAR", "JAVELIN" ], "price": 4000, @@ -507,7 +517,6 @@ "name": { "str": "iron javelin" }, "description": "An iron-tipped wooden throwing spear.", "weight": "960 g", - "to_hit": -1, "color": "light_gray", "symbol": "/", "material": [ "wood", "iron" ], @@ -516,6 +525,7 @@ "longest_side": "140 cm", "bashing": 5, "cutting": 19, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "uneven" }, "thrown_damage": [ { "damage_type": "bash", "amount": 5 }, { "damage_type": "stab", "amount": 17 } ], "flags": [ "SPEAR", "NONCONDUCTIVE", "SHEATH_SPEAR", "JAVELIN" ], "price": 9000, @@ -535,6 +545,7 @@ "price_postapoc": 750, "bashing": 9, "cutting": 16, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "wood" ], "symbol": "/", "color": "brown", @@ -556,6 +567,7 @@ "price_postapoc": 1000, "bashing": 9, "cutting": 23, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "copper", "wood" ], "symbol": "/", "color": "brown", @@ -576,6 +588,7 @@ "price_postapoc": 5000, "bashing": 9, "cutting": 32, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "iron", "wood" ], "symbol": "/", "color": "brown", @@ -595,7 +608,7 @@ "extend": { "flags": [ "FRAGILE_MELEE" ] }, "material": [ "aluminum", "wood" ], "weight": "2000 g", - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "price": 4000, "price_postapoc": 500 }, @@ -623,6 +636,7 @@ "price_postapoc": 2500, "bashing": 17, "cutting": 42, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "steel", "wood" ], "symbol": "/", "color": "light_gray", @@ -640,9 +654,9 @@ "longest_side": "180 cm", "price": 10000, "price_postapoc": 3500, - "to_hit": 1, "bashing": 6, "cutting": 30, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "material": [ "bronze", "wood" ], "symbol": "/", "color": "yellow", @@ -667,7 +681,7 @@ "longest_side": "160 cm", "bashing": 28, "cutting": 31, - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "price_postapoc": 5000, "qualities": [ [ "COOK", 1 ] ] }, @@ -684,6 +698,7 @@ "price_postapoc": 3500, "bashing": 11, "cutting": 57, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "wood", "bronze" ], "symbol": "/", "color": "yellow", @@ -700,9 +715,9 @@ "longest_side": "180 cm", "price": 1300, "price_postapoc": 50, - "to_hit": 1, "bashing": 4, "cutting": 15, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "material": [ "wood", "stone" ], "ascii_picture": "spear_stone", "symbol": "/", diff --git a/data/json/items/melee/swords_and_blades.json b/data/json/items/melee/swords_and_blades.json index 03536798786e6..878490491ccfe 100644 --- a/data/json/items/melee/swords_and_blades.json +++ b/data/json/items/melee/swords_and_blades.json @@ -12,7 +12,7 @@ "longest_side": "100 cm", "bashing": 12, "cutting": 1, - "to_hit": 1, + "to_hit": { "grip": "solid", "length": "long", "surface": "line", "balance": "good" }, "price_postapoc": 50, "flags": [ "SHEATH_SWORD" ], "weapon_category": [ "MEDIUM_SWORDS" ], @@ -31,7 +31,7 @@ "longest_side": "100 cm", "bashing": 12, "cutting": 4, - "to_hit": 2, + "to_hit": { "grip": "weapon", "length": "long", "surface": "every", "balance": "uneven" }, "price_postapoc": 100, "techniques": [ "WBLOCK_1" ], "weapon_category": [ "MEDIUM_SWORDS" ] @@ -49,7 +49,7 @@ "longest_side": "100 cm", "bashing": 6, "cutting": 18, - "to_hit": 1, + "to_hit": { "grip": "solid", "length": "long", "surface": "every", "balance": "uneven" }, "price_postapoc": 250, "flags": [ "SHEATH_SWORD" ], "weapon_category": [ "MEDIUM_SWORDS" ], @@ -70,7 +70,7 @@ "longest_side": "100 cm", "bashing": 6, "cutting": 23, - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "price_postapoc": 500, "flags": [ "SHEATH_SWORD" ], "weapon_category": [ "MEDIUM_SWORDS" ], @@ -88,7 +88,7 @@ "longest_side": "15 cm", "price": 2000, "price_postapoc": 50, - "to_hit": -2, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "neutral" }, "cutting": 16, "material": [ "steel", "plastic" ], "symbol": ";", @@ -110,6 +110,7 @@ "price_postapoc": 50, "bashing": 1, "cutting": 12, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "line", "balance": "good" }, "material": [ "steel", "plastic" ], "symbol": ";", "color": "light_gray", @@ -128,7 +129,7 @@ "longest_side": "30 cm", "price": 10000, "price_postapoc": 1250, - "to_hit": -1, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "bashing": 6, "cutting": 25, "material": [ "steel", "plastic" ], @@ -173,7 +174,7 @@ "longest_side": "20 cm", "price": 4000, "price_postapoc": 750, - "to_hit": -1, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "cutting": 16, "material": [ "steel", "leather" ], "symbol": "/", @@ -196,6 +197,7 @@ "price_postapoc": 500, "bashing": 6, "cutting": 20, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "line", "balance": "good" }, "material": [ "steel", "plastic" ], "symbol": ";", "color": "dark_gray", @@ -217,6 +219,7 @@ "price_postapoc": 4000, "bashing": 4, "cutting": 22, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "neutral" }, "material": [ "ceramic", "plastic" ], "symbol": "/", "color": "dark_gray", @@ -244,7 +247,7 @@ "longest_side": "9 cm", "price": 3000, "price_postapoc": 500, - "to_hit": -2, + "to_hit": { "grip": "solid", "length": "hand", "surface": "point", "balance": "good" }, "cutting": 6, "material": [ "steel", "plastic" ], "symbol": ";", @@ -265,6 +268,7 @@ "price_postapoc": 1250, "bashing": 6, "cutting": 19, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "line", "balance": "good" }, "material": [ "steel", "wood" ], "symbol": ";", "color": "dark_gray", @@ -283,9 +287,9 @@ "longest_side": "7 cm", "price": 0, "price_postapoc": 50, - "to_hit": -1, "bashing": 2, "cutting": 10, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "uneven" }, "material": [ "steel" ], "symbol": ";", "color": "dark_gray", @@ -308,6 +312,7 @@ "price_postapoc": 0, "bashing": 3, "cutting": 12, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "line", "balance": "good" }, "material": [ "bone" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 12 ] ], "flags": [ "STAB", "SHEATH_KNIFE", "FRAGILE_MELEE" ], @@ -322,9 +327,9 @@ "volume": "250 ml", "longest_side": "60 cm", "price": 19590, - "to_hit": 1, "bashing": 5, "cutting": 16, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ "iron" ], "symbol": ";", "color": "dark_gray", @@ -345,6 +350,7 @@ "price_postapoc": 250, "bashing": 5, "cutting": 16, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "material": [ "steel" ], "symbol": "/", "color": "light_gray", @@ -364,9 +370,9 @@ "longest_side": "50 cm", "price": 2800, "price_postapoc": 1500, - "to_hit": 1, "bashing": 5, "cutting": 21, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ "steel" ], "symbol": "/", "color": "dark_gray", @@ -387,9 +393,9 @@ "volume": "250 ml", "price": 2300, "price_postapoc": 1800, - "to_hit": 1, "bashing": 5, "cutting": 15, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ "steel" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ], [ "SAW_W", 1 ], [ "DIG", 1 ], [ "PRY", 1 ] ], "flags": [ "SHEATH_SWORD", "FRAGILE_MELEE" ], @@ -405,9 +411,9 @@ "longest_side": "100 cm", "price": 97000, "price_postapoc": 4000, - "to_hit": 1, "bashing": 5, "cutting": 26, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "material": [ "steel" ], "symbol": "/", "color": "dark_gray", @@ -427,9 +433,9 @@ "longest_side": "50 cm", "price": 9000, "price_postapoc": 500, - "to_hit": -1, "bashing": 8, "cutting": 24, + "to_hit": { "grip": "weapon", "length": "short", "surface": "point", "balance": "neutral" }, "material": [ "steel" ], "symbol": "/", "color": "dark_gray", @@ -452,6 +458,7 @@ "price_postapoc": 1250, "bashing": 7, "cutting": 26, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "material": [ "steel", "plastic" ], "symbol": "/", "color": "dark_gray", @@ -478,7 +485,7 @@ "longest_side": "90 cm", "bashing": 5, "cutting": 28, - "to_hit": 2, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "category": "weapons", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ] }, @@ -526,7 +533,7 @@ "longest_side": "90 cm", "bashing": 5, "cutting": 29, - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "category": "weapons", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ] }, @@ -539,7 +546,7 @@ "proportional": { "bashing": 3.9, "cutting": 0.25 }, "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "budget_steel" ], - "to_hit": 0, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "price": 93000, "price_postapoc": 500 }, @@ -574,7 +581,7 @@ "longest_side": "130 cm", "bashing": 11, "cutting": 36, - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "category": "weapons", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ] }, @@ -587,7 +594,7 @@ "proportional": { "bashing": 2.6, "cutting": 0.25 }, "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "budget_steel" ], - "to_hit": 0, + "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "good" }, "price": 13500, "price_postapoc": 750 }, @@ -602,7 +609,7 @@ "extend": { "flags": [ "FRAGILE_MELEE" ] }, "material": [ "aluminum" ], "weight": "939 g", - "to_hit": 2, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "price": 13500, "price_postapoc": 50 }, @@ -624,7 +631,7 @@ "longest_side": "120 cm", "bashing": 11, "cutting": 30, - "to_hit": 2, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "category": "weapons", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ] }, @@ -650,7 +657,7 @@ "extend": { "flags": [ "FRAGILE_MELEE" ] }, "material": [ "aluminum" ], "weight": "939 g", - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "price": 13000, "price_postapoc": 50 }, @@ -671,7 +678,7 @@ "longest_side": "90 cm", "bashing": 6, "cutting": 29, - "to_hit": 2, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "category": "weapons", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ], "weapon_category": [ "MEDIUM_SWORDS" ] @@ -700,7 +707,7 @@ "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "budget_steel" ], "weight": "2721 g", - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "price": 100000, "price_postapoc": 250 }, @@ -715,9 +722,9 @@ "longest_side": "50 cm", "price": 12000, "price_postapoc": 2500, - "to_hit": 1, "bashing": 6, "cutting": 28, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "material": [ "bronze" ], "symbol": "!", "color": "yellow", @@ -739,6 +746,7 @@ "price_postapoc": 3000, "bashing": 9, "cutting": 27, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "material": [ "bronze" ], "symbol": "/", "color": "yellow", @@ -760,6 +768,7 @@ "price_postapoc": 3500, "bashing": 8, "cutting": 24, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "bronze" ], "symbol": "/", "color": "yellow", @@ -779,9 +788,9 @@ "longest_side": "50 cm", "price": 2800, "price_postapoc": 2500, - "to_hit": 1, "bashing": 6, "cutting": 24, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ "steel" ], "symbol": "/", "color": "dark_gray", @@ -801,9 +810,9 @@ "longest_side": "40 cm", "price": 25000, "price_postapoc": 4000, - "to_hit": 1, "bashing": 7, "cutting": 29, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ "steel" ], "symbol": "/", "color": "light_gray", @@ -837,9 +846,9 @@ "longest_side": "50 cm", "price": 18000, "price_postapoc": 1500, - "to_hit": 1, "bashing": 2, "cutting": 21, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ "steel" ], "symbol": "/", "color": "dark_gray", @@ -859,9 +868,9 @@ "longest_side": "70 cm", "price": 17800, "price_postapoc": 2750, - "to_hit": 1, "bashing": 2, "cutting": 30, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ "steel" ], "symbol": "/", "color": "light_gray", @@ -881,9 +890,9 @@ "longest_side": "180 cm", "price": 160000, "price_postapoc": 9500, - "to_hit": 2, "bashing": 14, "cutting": 38, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "material": [ "steel" ], "symbol": "/", "color": "light_gray", @@ -902,10 +911,10 @@ "volume": "500 ml", "longest_side": "30 cm", "price": 1800, - "to_hit": -1, "price_postapoc": 250, "bashing": 1, "cutting": 25, + "to_hit": { "grip": "solid", "length": "short", "surface": "point", "balance": "good" }, "material": [ "steel" ], "symbol": "/", "color": "dark_gray", @@ -925,7 +934,7 @@ "extend": { "flags": [ "FRAGILE_MELEE" ] }, "weapon_category": [ "KNIVES" ], "material": [ "budget_steel" ], - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "price": 900, "price_postapoc": 50 }, @@ -966,9 +975,9 @@ "longest_side": "120 cm", "price": 150000, "price_postapoc": 12000, - "to_hit": 2, "bashing": 6, "cutting": 44, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "material": [ "steel" ], "symbol": "/", "color": "light_gray", @@ -1002,7 +1011,7 @@ "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "budget_steel" ], "weight": "1882 g", - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "price": 15000, "price_postapoc": 500 }, @@ -1021,6 +1030,7 @@ "longest_side": "100 cm", "bashing": 1, "cutting": 2, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "techniques": [ "PRECISE", "RAPID", "WBLOCK_2" ], "flags": [ "STAB", "SHEATH_SWORD" ] }, @@ -1039,6 +1049,7 @@ "longest_side": "100 cm", "bashing": 3, "cutting": 7, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "techniques": [ "PRECISE", "RAPID", "WBLOCK_2" ], "flags": [ "STAB", "SHEATH_SWORD" ] }, @@ -1057,6 +1068,7 @@ "longest_side": "100 cm", "bashing": 1, "cutting": 6, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "techniques": [ "PRECISE", "RAPID", "WBLOCK_2" ], "flags": [ "STAB", "SHEATH_SWORD" ] }, @@ -1166,6 +1178,7 @@ "volume": "1531 ml", "longest_side": "80 cm", "bashing": 3, + "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, "looks_like": "cane", "pocket_data": [ { @@ -1195,6 +1208,7 @@ "longest_side": "80 cm", "bashing": 2, "cutting": 25, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "looks_like": "rapier", "techniques": [ "PRECISE", "RAPID", "WBLOCK_2" ], "flags": [ "STAB", "SHEATH_SWORD" ] @@ -1209,9 +1223,9 @@ "longest_side": "100 cm", "price": 120000, "price_postapoc": 5000, - "to_hit": 2, "bashing": 6, "cutting": 27, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "material": [ "steel" ], "symbol": "/", "color": "light_gray", @@ -1269,9 +1283,9 @@ "longest_side": "100 cm", "price": 98000, "price_postapoc": 2500, - "to_hit": 2, "bashing": 3, "cutting": 28, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "material": [ "steel" ], "symbol": "/", "color": "light_gray", @@ -1290,9 +1304,9 @@ "longest_side": "90 cm", "price": 98000, "price_postapoc": 4500, - "to_hit": 2, "bashing": 5, "cutting": 31, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "material": [ "steel" ], "ascii_picture": "katana", "symbol": "/", @@ -1330,7 +1344,7 @@ "proportional": { "bashing": 3.4, "cutting": 0.25 }, "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "budget_steel" ], - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "price": 98000, "price_postapoc": 250 }, @@ -1356,7 +1370,7 @@ "proportional": { "bashing": 2.35, "cutting": 0.26 }, "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "budget_steel" ], - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "price": 160000, "price_postapoc": 750 }, @@ -1438,7 +1452,7 @@ "delete": { "flags": [ "DURABLE_MELEE" ] }, "extend": { "flags": [ "FRAGILE_MELEE" ] }, "material": [ "aluminum" ], - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "price": 3800, "price_postapoc": 10 }, @@ -1459,9 +1473,9 @@ "weight": "1766 g", "volume": "1500 ml", "longest_side": "50 cm", - "to_hit": 1, "bashing": 6, "cutting": 30, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "category": "weapons", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ] }, @@ -1475,9 +1489,9 @@ "longest_side": "80 cm", "price": 96000, "price_postapoc": 3500, - "to_hit": 1, "bashing": 5, "cutting": 26, + "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ "steel" ], "symbol": "/", "color": "dark_gray", @@ -1505,7 +1519,7 @@ "longest_side": "180 cm", "bashing": 4, "cutting": 26, - "to_hit": -1, + "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "qualities": [ [ "CUT", 1 ], [ "BUTCHER", -18 ] ] }, { @@ -1519,8 +1533,8 @@ "longest_side": "70 cm", "price": 25000, "price_postapoc": 3000, - "to_hit": -1, "bashing": 8, + "to_hit": { "grip": "solid", "length": "short", "surface": "line", "balance": "neutral" }, "material": [ "steel", "aluminum" ], "symbol": "/", "color": "light_gray", @@ -1537,8 +1551,8 @@ "type": "TOOL", "name": { "str": "combat chainsaw (on)", "str_pl": "combat chainsaws (on)" }, "description": "This combat chainsaw is on, and is continuously draining gasoline. Use it to turn it off.", - "to_hit": -3, "cutting": 82, + "to_hit": { "grip": "none", "length": "short", "surface": "line", "balance": "uneven" }, "turns_per_charge": 4, "charges_per_use": 0, "revert_to": "combatsaw_off", @@ -1557,8 +1571,8 @@ "longest_side": "70 cm", "price": 25000, "price_postapoc": 3000, - "to_hit": -1, "bashing": 8, + "to_hit": { "grip": "solid", "length": "short", "surface": "line", "balance": "neutral" }, "material": [ "steel", "aluminum" ], "symbol": "/", "color": "light_gray", @@ -1582,8 +1596,8 @@ "type": "TOOL", "name": { "str": "electric combat chainsaw (on)", "str_pl": "electric combat chainsaws (on)" }, "description": "This electric combat chainsaw is on, and is continuously draining power. Use it to turn it off.", - "to_hit": -3, "cutting": 82, + "to_hit": { "grip": "none", "length": "short", "surface": "line", "balance": "uneven" }, "power_draw": 2000000, "charges_per_use": 0, "revert_to": "e_combatsaw_off", @@ -1597,7 +1611,6 @@ "name": { "str": "punch dagger" }, "description": "A short and sharp double-edged dagger made to be gripped in the palm, with the blade protruding between the fingers.", "weight": "168 g", - "to_hit": -1, "price_postapoc": 50, "color": "dark_gray", "symbol": "{", @@ -1605,6 +1618,7 @@ "volume": "250 ml", "bashing": 2, "cutting": 14, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "flags": [ "STAB", "DURABLE_MELEE", "SHEATH_KNIFE" ], "weapon_category": [ "KNIVES" ], "price": 10000, @@ -1622,6 +1636,7 @@ "weight": "1150 g", "bashing": 3, "cutting": 14, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "neutral" }, "price_postapoc": 500, "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ], "flags": [ "STAB" ], @@ -1639,6 +1654,7 @@ "material": [ "steel" ], "bashing": 2, "cutting": 15, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "neutral" }, "flags": [ "DURABLE_MELEE" ], "weapon_category": [ "CLAWS" ], "price": 20000, diff --git a/data/json/items/melee/unarmed_weapons.json b/data/json/items/melee/unarmed_weapons.json index 85e159b5e69bc..e3b51ef312076 100644 --- a/data/json/items/melee/unarmed_weapons.json +++ b/data/json/items/melee/unarmed_weapons.json @@ -128,7 +128,7 @@ "price_postapoc": 250, "bashing": 2, "cutting": 10, - "to_hit": 1, + "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "good" }, "material": [ "steel" ], "symbol": "[", "color": "light_gray", diff --git a/data/json/items/migration.json b/data/json/items/migration.json index a4d87a1da12c6..c6c6dee908b9e 100644 --- a/data/json/items/migration.json +++ b/data/json/items/migration.json @@ -1562,5 +1562,45 @@ "id": "manual_computers", "type": "MIGRATION", "replace": "manual_computer" + }, + { + "id": "pistachio_unshelled", + "type": "MIGRATION", + "replace": "pistachio_shelled" + }, + { + "id": "almond_unshelled", + "type": "MIGRATION", + "replace": "almond_shelled" + }, + { + "id": "pecan_unshelled", + "type": "MIGRATION", + "replace": "pecan_shelled" + }, + { + "id": "peanut_unshelled", + "type": "MIGRATION", + "replace": "peanut_shelled" + }, + { + "id": "walnut_unshelled", + "type": "MIGRATION", + "replace": "walnut_shelled" + }, + { + "id": "chestnut_unshelled", + "type": "MIGRATION", + "replace": "chestnut_shelled" + }, + { + "id": "hazelnut_unshelled", + "type": "MIGRATION", + "replace": "hazelnut_shelled" + }, + { + "id": "hickory_nut_unshelled", + "type": "MIGRATION", + "replace": "hickory_nut_shelled" } ] diff --git a/data/json/items/mutagen_ingredients.json b/data/json/items/mutagen_ingredients.json index 2f6f32bd5d2c3..5698190d00122 100644 --- a/data/json/items/mutagen_ingredients.json +++ b/data/json/items/mutagen_ingredients.json @@ -18,7 +18,7 @@ "type": "GENERIC", "id": "rabbit_foot", "symbol": "q", - "color": "brown", + "color": "white", "name": { "str": "rabbit sample" }, "description": "A tiny paw that came off of a rabbit. Please, no luck jokes.", "price": 1000, @@ -33,7 +33,7 @@ "type": "GENERIC", "id": "frog_sample", "symbol": "q", - "color": "brown", + "color": "light_green", "name": { "str": "frog sample" }, "description": "A sample of things that make up key parts of being a frog. You will probably need to find a very large frog.", "price": 1000, @@ -43,5 +43,110 @@ "weight": "114 g", "volume": "250 ml", "category": "spare_parts" + }, + { + "type": "GENERIC", + "id": "insect_sample", + "symbol": "q", + "color": "light_gray", + "name": { "str": "insect sample" }, + "description": "A sample of things that make up key parts of being an insect. You will probably need to find a very large bug.", + "price": 1000, + "price_postapoc": 10, + "material": [ "flesh" ], + "flags": [ "NO_SALVAGE" ], + "weight": "114 g", + "volume": "250 ml", + "category": "spare_parts" + }, + { + "type": "GENERIC", + "id": "bovine_sample", + "symbol": "q", + "color": "light_cyan", + "name": { "str": "bovine sample" }, + "description": "A sample of things that make up key parts of being a bovine creature. You will probably need to find a very live cow.", + "price": 1000, + "price_postapoc": 10, + "material": [ "flesh" ], + "flags": [ "NO_SALVAGE" ], + "weight": "114 g", + "volume": "250 ml", + "category": "spare_parts" + }, + { + "type": "GENERIC", + "id": "molerat_sample", + "symbol": "q", + "color": "light_gray", + "name": { "str": "molerat sample" }, + "description": "A sample of things that make up key parts of being a underground dwelling creature. You will probably need to find a something large that lives underground.", + "price": 1000, + "price_postapoc": 10, + "material": [ "flesh" ], + "flags": [ "NO_SALVAGE" ], + "weight": "114 g", + "volume": "250 ml", + "category": "spare_parts" + }, + { + "type": "GENERIC", + "id": "spider_sample", + "symbol": "q", + "color": "dark_gray", + "name": { "str": "spider sample" }, + "description": "A sample of things that make up key parts of being a spider. Why are there so many huge spiders now?", + "price": 1000, + "price_postapoc": 10, + "material": [ "flesh" ], + "flags": [ "NO_SALVAGE" ], + "weight": "114 g", + "volume": "250 ml", + "category": "spare_parts" + }, + { + "type": "GENERIC", + "id": "reptile_sample", + "symbol": "q", + "color": "dark_gray", + "name": { "str": "reptile sample" }, + "description": "A sample of things that make up key parts of being a lizard. Gators and giant rattlesnakes seem like they'd fit what you're looking for.", + "price": 1000, + "price_postapoc": 10, + "material": [ "flesh" ], + "flags": [ "NO_SALVAGE" ], + "weight": "114 g", + "volume": "250 ml", + "category": "spare_parts" + }, + { + "type": "GENERIC", + "id": "lupine_sample", + "symbol": "q", + "color": "dark_gray", + "name": { "str": "lupine sample" }, + "description": "A sample of things that make up key parts of being a wolf being. Is that Lon Chaney jr walking with the queen?", + "price": 1000, + "price_postapoc": 10, + "material": [ "flesh" ], + "flags": [ "NO_SALVAGE" ], + "weight": "114 g", + "volume": "250 ml", + "category": "spare_parts" + }, + { + "type": "GENERIC", + "id": "feline_sample", + "symbol": "q", + "color": "dark_gray", + "name": { "str": "feline sample" }, + "description": "A sample of things that make up key parts of being a feline. Bobcats and cougars might be native to this area?", + "price": 1000, + "price_postapoc": 10, + "material": [ "flesh" ], + "flags": [ "NO_SALVAGE" ], + "weight": "114 g", + "volume": "250 ml", + "category": "spare_parts" } ] diff --git a/data/json/items/tool/electronics.json b/data/json/items/tool/electronics.json index 1f0f2073e4931..8ae60908923a1 100644 --- a/data/json/items/tool/electronics.json +++ b/data/json/items/tool/electronics.json @@ -201,7 +201,7 @@ } ], "//": "LIGHT_10 is the bare minimum for reading without penalties", - "flags": [ "LIGHT_10", "TRADER_AVOID" ] + "flags": [ "LIGHT_10", "TRADER_AVOID", "WATER_BREAK" ] }, { "id": "electrohack", diff --git a/data/json/items/tool/lighting.json b/data/json/items/tool/lighting.json index 0fac96528bbc2..00b840cde4474 100644 --- a/data/json/items/tool/lighting.json +++ b/data/json/items/tool/lighting.json @@ -223,7 +223,7 @@ "target": "flashlight", "ammo_scale": 0 }, - "flags": [ "LIGHT_300", "CHARGEDIM", "TRADER_AVOID", "BELT_CLIP" ] + "flags": [ "LIGHT_300", "CHARGEDIM", "TRADER_AVOID", "BELT_CLIP", "WATER_BREAK" ] }, { "id": "gasoline_lantern", @@ -368,7 +368,7 @@ "id": "heavy_flashlight", "type": "TOOL", "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.", + "description": "This is a heavy duty tubular aluminum LED flashlight as often used by security guards. Using this flashlight will turn it on and provide light even underwater, assuming it is charged with batteries.", "weight": "450 g", "volume": "470 ml", "longest_side": "37 cm", @@ -380,7 +380,7 @@ "color": "blue", "charges_per_use": 1, "ammo": [ "battery" ], - "flags": [ "BELT_CLIP", "WATER_BREAK" ], + "flags": [ "BELT_CLIP" ], "use_action": { "type": "transform", "msg": "You turn the heavy duty flashlight on.", diff --git a/data/json/items/tool/metalworking.json b/data/json/items/tool/metalworking.json index 84433943bd485..b7d7f5dafc9fc 100644 --- a/data/json/items/tool/metalworking.json +++ b/data/json/items/tool/metalworking.json @@ -381,5 +381,56 @@ "material": [ "clay", "wood" ], "symbol": ";", "color": "brown" + }, + { + "id": "stone_polishing", + "type": "TOOL", + "name": { "str": "polishing stone" }, + "description": "A large, natural stone with a flat surface to grind against.", + "weight": "8000 g", + "volume": "3 L", + "price": 400, + "price_postapoc": 15, + "to_hit": -2, + "bashing": 25, + "material": [ "stone" ], + "color": "dark_gray", + "symbol": ";", + "qualities": [ [ "GRIND", 2 ] ], + "flags": [ "DURABLE_MELEE" ] + }, + { + "id": "pedal_grindstone", + "type": "TOOL", + "name": { "str": "pedal powered grindstone" }, + "description": "A round, pedal-powered grindstone, useful for grinding metal.", + "weight": "15000g", + "volume": "4 L", + "price": 1500, + "price_postapoc": 35, + "to_hit": -5, + "bashing": 30, + "material": [ "stone", "wood", "steel" ], + "color": "dark_gray", + "symbol": ";", + "qualities": [ [ "GRIND", 2 ] ] + }, + { + "id": "scraper_steel", + "type": "TOOL", + "name": { "str": "steel scraper" }, + "description": "A hardened steel tool similar to a drawknife, but for metal.", + "weight": "500g", + "volume": "500 ml", + "price": 1200, + "price_postapoc": 20, + "to_hit": -1, + "bashing": 3, + "cutting": 4, + "material": [ "wood", "steel" ], + "color": "brown", + "symbol": ";", + "qualities": [ [ "GRIND", 2 ] ], + "flags": [ "DURABLE_MELEE" ] } ] diff --git a/data/json/items/tool/stationary.json b/data/json/items/tool/stationary.json index a90efaa947395..7516c3095728f 100644 --- a/data/json/items/tool/stationary.json +++ b/data/json/items/tool/stationary.json @@ -18,7 +18,7 @@ "type": "GENERIC", "category": "tools", "name": { "str": "hole puncher" }, - "description": "This metal tool can help you punch a single hole in a piece of paper. I mean, you could do more if you wanted, but you'd have to do them one at a time. Or, if you really wanted more holes with one punch, I suppose you could fold the paper… This is a one cylinder hole puncher.", + "description": "This metal tool can help you punch a single hole in a piece of paper. I mean, you could do more if you wanted, but you'd have to do them one at a time. Or, if you really wanted more holes with one punch, I suppose you could fold the paper…. This is a one cylinder hole puncher.", "weight": "68 g", "volume": "80 ml", "price": 400, diff --git a/data/json/items/tool/workshop.json b/data/json/items/tool/workshop.json index 59f5034475b92..38e6917710d47 100644 --- a/data/json/items/tool/workshop.json +++ b/data/json/items/tool/workshop.json @@ -291,6 +291,36 @@ } ] }, + { + "id": "cordless_impact_wrench", + "type": "TOOL", + "name": { "str": "cordless impact wrench", "str_pl": "cordless impact wrenches" }, + "description": "This is a cordless battery-powered impact wrench, designed to deliver high torque via an internal rotating hammer. It comes with a standard set of sockets, and makes a loud ratcheting sound when it operates. You could use it to turn large bolts, or even change a vehicle wheel.", + "//": "Loosely based on DeWalt DCF899B 20V 1/2-inch cordless impact wrench, $220 on Amazon, 6.4 pounds.", + "looks_like": "cordless_drill", + "weight": "2900 g", + "volume": "900 ml", + "longest_side": "22 cm", + "price": 20000, + "price_postapoc": 250, + "to_hit": -2, + "bashing": 3, + "cutting": 1, + "material": [ "plastic", "steel" ], + "symbol": ";", + "color": "yellow", + "ammo": [ "battery" ], + "flags": [ "WATER_BREAK" ], + "qualities": [ [ "WRENCH", 2 ], [ "WHEEL_FAST", 1 ] ], + "pocket_data": [ + { + "pocket_type": "MAGAZINE_WELL", + "magazine_well": "200 ml", + "flag_restriction": [ "BATTERY_MEDIUM" ], + "default_magazine": "medium_battery_cell" + } + ] + }, { "id": "distaff_spindle", "type": "GENERIC", @@ -531,7 +561,6 @@ [ "SAW_W", 1 ], [ "WRENCH_FINE", 1 ], [ "WRENCH", 2 ], - [ "WHEEL_FAST", 1 ], [ "SCREW_FINE", 1 ], [ "SCREW", 1 ], [ "CHISEL", 3 ], @@ -583,7 +612,7 @@ "material": [ "steel" ], "symbol": ";", "color": "light_gray", - "qualities": [ [ "FILE", 2 ] ] + "qualities": [ [ "FILE", 2 ], [ "GRIND", 2 ] ] }, { "id": "metal_smoother", @@ -769,6 +798,24 @@ "qualities": [ [ "WRENCH", 1 ] ], "flags": [ "BELT_CLIP" ] }, + { + "id": "pliers_locking", + "type": "TOOL", + "name": { "str_sp": "locking pliers" }, + "description": "These pliers have extra-hefty jaws, and an adjustable mechanism to clamp them in a locked grip on whatever unfortunate object is trapped between them. They could grip and turn a fairly large bolt head, or clamp two parts together temporarily.", + "looks_like": "pliers", + "weight": "807 g", + "volume": "250 ml", + "longest_side": "20 cm", + "price": 1200, + "price_postapoc": 100, + "bashing": 3, + "material": [ "steel" ], + "symbol": ";", + "color": "light_gray", + "qualities": [ [ "WRENCH", 2 ], [ "VISE", 1 ] ], + "flags": [ "BELT_CLIP" ] + }, { "id": "polisher", "type": "TOOL", @@ -784,6 +831,7 @@ "material": [ "steel", "plastic" ], "symbol": ";", "color": "light_gray", + "qualities": [ [ "GRIND", 2 ] ], "ammo": [ "battery" ], "flags": [ "TRADER_AVOID", "WATER_BREAK" ], "pocket_data": [ @@ -854,6 +902,46 @@ "qualities": [ [ "SCREW", 1 ], [ "SCREW_FINE", 1 ] ], "flags": [ "BELT_CLIP" ] }, + { + "id": "socket_screwdriver_set", + "type": "TOOL", + "name": { "str": "socket screwdriver set" }, + "description": "This is a ratcheting screwdriver with a collection of hex sockets for turning small bolts or nuts, including a couple standard screwdriver bits.", + "looks_like": "screwdriver_set", + "weight": "340 g", + "volume": "500 ml", + "longest_side": "28 cm", + "price": 2000, + "price_postapoc": 250, + "to_hit": -1, + "bashing": 2, + "cutting": 6, + "material": [ "steel", "plastic" ], + "symbol": ";", + "color": "yellow", + "qualities": [ [ "SCREW", 1 ], [ "WRENCH", 1 ], [ "WRENCH_FINE", 1 ] ], + "flags": [ "BELT_CLIP" ] + }, + { + "id": "socket_wrench_set", + "type": "TOOL", + "name": { "str": "socket wrench set" }, + "description": "This is a thick-handled ratchet wrench with an assortment of interchangeable sockets in common hex bolt sizes. You could loosen or tighten fairly large bolts with this, and the ratchet makes a satisfying clicking sound.", + "//": "Modeled after 40-piece Walmart set, 2.85 lb, case 9.75 x 1.5 x 5 inches", + "looks_like": "screwdriver_set", + "weight": "1300 g", + "volume": "1200 ml", + "longest_side": "25 cm", + "price": 2000, + "price_postapoc": 250, + "to_hit": -1, + "bashing": 2, + "material": [ "steel", "plastic" ], + "symbol": ";", + "color": "yellow", + "qualities": [ [ "WRENCH", 2 ], [ "WRENCH_FINE", 1 ] ], + "flags": [ "BELT_CLIP" ] + }, { "id": "small_repairkit", "type": "TOOL", @@ -880,13 +968,12 @@ [ "SAW_W", 1 ], [ "WRENCH_FINE", 1 ], [ "WRENCH", 2 ], - [ "WHEEL_FAST", 1 ], [ "SCREW_FINE", 1 ], [ "SCREW", 1 ], [ "CHISEL", 3 ], [ "CHISEL_WOOD", 3 ] ], - "use_action": [ "GUN_REPAIR", [ "CROWBAR", 0 ], [ "HAMMER", 0 ] ], + "use_action": [ "GUN_REPAIR", [ "CROWBAR", 0 ], [ "HAMMER", 0 ], [ "HACKSAW", 0 ] ], "flags": [ "ALLOWS_REMOTE_USE" ], "pocket_data": [ { @@ -959,7 +1046,7 @@ "name": { "str": "toolbox", "str_pl": "toolboxes" }, "description": "This is a stout metal box for containing tools. It has a handle on the top and a latch on the front.", "weight": "3522 g", - "volume": "2500 ml", + "volume": "8000 ml", "longest_side": "42 cm", "price": 12999, "price_postapoc": 3000, @@ -968,7 +1055,7 @@ "material": [ "steel" ], "symbol": ";", "color": "red", - "pocket_data": [ { "max_contains_volume": "2400 ml", "max_contains_weight": "10 kg", "max_item_length": "40 cm", "rigid": true } ] + "pocket_data": [ { "max_contains_volume": "7800 ml", "max_contains_weight": "10 kg", "max_item_length": "40 cm", "rigid": true } ] }, { "id": "toolbox_workshop_empty", @@ -1038,7 +1125,6 @@ [ "SAW_M_FINE", 1 ], [ "WRENCH", 2 ], [ "WRENCH_FINE", 1 ], - [ "WHEEL_FAST", 1 ], [ "SCREW", 1 ], [ "SCREW_FINE", 1 ], [ "CUT", 2 ], @@ -1176,13 +1262,32 @@ "qualities": [ [ "CUT", 1 ], [ "CUT_FINE", 2 ], [ "BUTCHER", 7 ] ], "flags": [ "FRAGILE_MELEE" ] }, + { + "id": "wrench_small", + "type": "TOOL", + "name": { "str": "small adjustable wrench", "str_pl": "small adjustable wrenches" }, + "description": "This adjustable crescent wrench is compact, with a short handle that fits in the palm of the hand. It could be used for turning small hex-head nuts or bolts.", + "//": "Measured weight of 6-inch Craftsman wrench with 150mm jaws, assume 8g/ml steel density plus some margin for mechanism and empty space.", + "looks_like": "wrench", + "weight": "110 g", + "volume": "20 ml", + "longest_side": "15 cm", + "price": 500, + "price_postapoc": 100, + "bashing": 1, + "material": [ "steel" ], + "symbol": ";", + "color": "light_gray", + "qualities": [ [ "WRENCH", 1 ], [ "WRENCH_FINE", 1 ] ], + "flags": [ "BELT_CLIP" ] + }, { "id": "wrench", "type": "TOOL", - "name": { "str": "wrench", "str_pl": "wrenches" }, + "name": { "str": "adjustable wrench", "str_pl": "adjustable wrenches" }, "description": "This is an adjustable crescent wrench. It could be a decent melee weapon, and is used in many mechanics crafting recipes.", "weight": "907 g", - "volume": "450 ml", + "volume": "120 ml", "longest_side": "20 cm", "price": 1200, "price_postapoc": 100, @@ -1190,10 +1295,29 @@ "material": [ "steel" ], "symbol": ";", "color": "light_gray", - "qualities": [ [ "WRENCH", 2 ], [ "WRENCH_FINE", 1 ], [ "WHEEL_FAST", 1 ] ], + "qualities": [ [ "WRENCH", 2 ], [ "WRENCH_FINE", 1 ] ], "flags": [ "BELT_CLIP" ], "weapon_category": [ "BATONS" ] }, + { + "id": "wrench_large", + "type": "TOOL", + "name": { "str": "large adjustable wrench", "str_pl": "large adjustable wrenches" }, + "description": "This adjustable crescent wrench is unusually large, with a long handle and jaws that widen over two inches. This could easily turn most bolts, and should even work on wheel lug nuts.", + "//": "WESTWARD 31D018 from Walmart, 18-inch length, 2-3/8-inch jaws, 4.23 lb, assume 8g/ml steel density with some margin for mechanism and other empty space.", + "looks_like": "wrench", + "weight": "1900 g", + "volume": "250 ml", + "longest_side": "46 cm", + "price": 1200, + "price_postapoc": 100, + "bashing": 12, + "material": [ "steel" ], + "symbol": ";", + "color": "light_gray", + "qualities": [ [ "WRENCH", 2 ], [ "WHEEL_FAST", 1 ] ], + "flags": [ "BELT_CLIP" ] + }, { "id": "makeshift_hose", "type": "TOOL", diff --git a/data/json/items/tool_armor.json b/data/json/items/tool_armor.json index 7f5d57584568a..d52a9a19fc00c 100644 --- a/data/json/items/tool_armor.json +++ b/data/json/items/tool_armor.json @@ -291,7 +291,7 @@ "color": "dark_gray", "warmth": 5, "material_thickness": 3, - "qualities": [ [ "GLARE", 3 ] ], + "qualities": [ [ "GLARE", 1 ] ], "flags": [ "SUN_GLASSES", "FLASH_PROTECTION" ], "armor": [ { "encumbrance": 60, "coverage": 90, "covers": [ "head", "eyes", "mouth" ] } ] }, @@ -316,7 +316,7 @@ "color": "dark_gray", "warmth": 5, "material_thickness": 2, - "qualities": [ [ "GLARE", 2 ] ], + "qualities": [ [ "GLARE", 1 ] ], "flags": [ "SUN_GLASSES", "FLASH_PROTECTION" ], "armor": [ { "encumbrance": 60, "coverage": 90, "covers": [ "head", "eyes", "mouth" ] } ] }, @@ -972,7 +972,7 @@ "revert_to": "rm13_armor", "use_action": [ "RM13ARMOR_ON" ], "environmental_protection": 40, - "qualities": [ [ "GLARE", 2 ] ], + "qualities": [ [ "GLARE", 1 ] ], "material_thickness": 5, "armor": [ { @@ -1027,7 +1027,7 @@ "msg": "The %s LED light flickers off.", "target": "dimensional_anchor" }, - "flags": [ "DIMENSIONAL_ANCHOR", "OVERSIZE", "BELTED" ] + "flags": [ "DIMENSIONAL_ANCHOR", "OVERSIZE", "BELTED", "PORTAL_PROOF" ] }, { "id": "broken_dimensional_anchor", @@ -1082,6 +1082,7 @@ "material_thickness": 2, "flags": [ "RAD_PROOF", + "PORTAL_PROOF", "STURDY", "WATERPROOF", "HYGROMETER", @@ -1114,6 +1115,7 @@ "environmental_protection": 80, "flags": [ "RAD_PROOF", + "PORTAL_PROOF", "STURDY", "WATERPROOF", "HYGROMETER", @@ -1325,7 +1327,7 @@ { "covers": [ "mouth" ], "coverage": 100, "encumbrance": 30 } ], "warmth": 15, - "qualities": [ [ "GLARE", 2 ] ], + "qualities": [ [ "GLARE", 1 ] ], "material_thickness": 3, "environmental_protection": 1, "environmental_protection_with_filter": 15, @@ -1353,7 +1355,7 @@ { "covers": [ "mouth" ], "coverage": 100, "encumbrance": 35 } ], "warmth": 15, - "qualities": [ [ "GLARE", 2 ] ], + "qualities": [ [ "GLARE", 1 ] ], "material_thickness": 3, "environmental_protection": 1, "environmental_protection_with_filter": 15, @@ -1388,7 +1390,7 @@ { "covers": [ "eyes" ], "coverage": 100, "encumbrance": 10 }, { "covers": [ "mouth" ], "coverage": 100, "encumbrance": 20 } ], - "qualities": [ [ "GLARE", 2 ] ], + "qualities": [ [ "GLARE", 1 ] ], "material_thickness": 3 }, { @@ -1416,7 +1418,6 @@ "material_thickness": 3, "environmental_protection": 1, "environmental_protection_with_filter": 15, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "VARSIZE", "STURDY", "SUN_GLASSES", "SLEEP_IGNORE" ] }, { @@ -1444,7 +1445,6 @@ "material_thickness": 3, "environmental_protection": 1, "environmental_protection_with_filter": 15, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "VARSIZE", "STURDY", "SUN_GLASSES", "SLEEP_IGNORE" ] }, { @@ -1472,7 +1472,6 @@ "material_thickness": 3, "environmental_protection": 1, "environmental_protection_with_filter": 15, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "VARSIZE", "STURDY", "SUN_GLASSES", "SLEEP_IGNORE" ] }, { @@ -1500,7 +1499,6 @@ "material_thickness": 3, "environmental_protection": 1, "environmental_protection_with_filter": 15, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "SUN_GLASSES", "SLEEP_IGNORE" ] }, { @@ -1552,7 +1550,6 @@ "material_thickness": 3, "environmental_protection": 1, "environmental_protection_with_filter": 15, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "VARSIZE", "STURDY", "SUN_GLASSES", "SLEEP_IGNORE" ] }, { @@ -1580,7 +1577,6 @@ "material_thickness": 3, "environmental_protection": 1, "environmental_protection_with_filter": 15, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "VARSIZE", "STURDY", "OVERSIZE", "SUN_GLASSES", "SLEEP_IGNORE" ] }, { @@ -3245,8 +3241,11 @@ "pocket_data": [ { "pocket_type": "MAGAZINE_WELL", + "holster": true, "rigid": true, - "flag_restriction": [ "BATTERY_ULTRA_LIGHT" ], + "max_contains_volume": "20 L", + "max_contains_weight": "20 kg", + "flag_restriction": [ "BATTERY_LIGHT", "BATTERY_ULTRA_LIGHT" ], "default_magazine": "light_plus_battery_cell" } ] @@ -3257,7 +3256,7 @@ "type": "TOOL_ARMOR", "category": "armor", "name": { "str": "military flight helmet (on)", "str_pl": "military flight helmets (on)" }, - "description": "A military flight helmet. Adorned with a visor, microphone and a noise dampening system. The helmet is also fitted with plastic rails to allow for different load-outs.", + "description": "A military flight helmet with various LED's devices blinking periodically. Adorned with a visor, microphone and a noise dampening system. The helmet is also fitted with plastic rails to allow for different load-outs.", "weight": "1324 g", "volume": "2 L", "price": 50000, @@ -3285,8 +3284,11 @@ "pocket_data": [ { "pocket_type": "MAGAZINE_WELL", + "holster": true, "rigid": true, - "flag_restriction": [ "BATTERY_ULTRA_LIGHT" ], + "max_contains_volume": "20 L", + "max_contains_weight": "20 kg", + "flag_restriction": [ "BATTERY_LIGHT", "BATTERY_ULTRA_LIGHT" ], "default_magazine": "light_plus_battery_cell" } ] diff --git a/data/json/items/vehicle/solar.json b/data/json/items/vehicle/solar.json index 7c630af44691d..c8cb556d4d1ee 100644 --- a/data/json/items/vehicle/solar.json +++ b/data/json/items/vehicle/solar.json @@ -16,6 +16,15 @@ "price": 90000, "price_postapoc": 1000 }, + { + "type": "GENERIC", + "copy-from": "solar_panel", + "id": "folding_solar_panel", + "name": { "str": "collapsible solar array" }, + "description": "Electronic device that can convert solar radiation into electric power. Useful for a vehicle.", + "price": 120000, + "price_postapoc": 1500 + }, { "type": "GENERIC", "id": "reinforced_solar_panel", diff --git a/data/json/items/vehicle/utilities.json b/data/json/items/vehicle/utilities.json index 9445fc9b57329..b740f1ab3f7d6 100644 --- a/data/json/items/vehicle/utilities.json +++ b/data/json/items/vehicle/utilities.json @@ -65,6 +65,18 @@ "price": 20000, "price_postapoc": 1500 }, + { + "type": "GENERIC", + "copy-from": "mountable_heater", + "id": "mountable_heater_small", + "name": { "str": "small vehicle heater" }, + "description": "A small vehicle-mounted area heater.", + "weight": "6000 g", + "bashing": 3, + "volume": "3750 ml", + "price": 10000, + "price_postapoc": 750 + }, { "type": "GENERIC", "id": "towel_hanger", diff --git a/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_common.json b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_common.json new file mode 100644 index 0000000000000..a4bf58c6c35fc --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_common.json @@ -0,0 +1,197 @@ +[ + { + "type": "palette", + "id": "fbml_2_common_palette", + "terrain": { + "F": "t_splitrail_fence", + "g": "t_splitrail_fencegate_c", + "d": "t_chickenwire_gate_c", + "f": "t_chickenwire_fence", + ";": "t_dirt" + }, + "furniture": { "b": "f_bench", "t": "f_table", "r": "f_rack" } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2", + "object": { + "mapgensize": [ 24, 24 ], + "rows": [ + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;; ;;;;;;; ", + ";;;;;; ;;;;;;; ", + ";;;;;; ;;;;;;; ", + ";;;;;; ;;;;;;; ", + ";;;;;; ;;;;;;; ", + ";;;;;; ;;;;;;; ", + ";;;;;; ;;;;;;; ", + ";;;;;; ; ; ", + ";;;;;; ; ; ", + ";;;;;; ; ; ", + ";;;;;; ; ; ", + ";;;;;; ; ; ", + ";;;;;; ;;;;;;; ", + ";;;;;; ; ", + ";;;;;; ; ", + ";;;;;; ; ", + ";;;;;; ; ", + ";;;;;; ;;;;; ", + ";;;;;; ;;;;; ", + ";;;;;; ;;;;; ", + ";;;;;; ;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + " " + ], + "palettes": [ "fbml_2_common_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "faction_base_livestock_2_0", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbml_2" ], "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_coop_yard", + "method": "json", + "object": { + "set": [ + { "line": "terrain", "id": "t_chickenwire_fence", "x": 13, "x2": 13, "y": 8, "y2": 13 }, + { "point": "terrain", "id": "t_chickenwire_fence", "x": 14, "y": 7 }, + { "point": "terrain", "id": "t_chickenwire_fence", "x": 15, "y": 7 }, + { "point": "terrain", "id": "t_chickenwire_gate_c", "x": 16, "y": 7 }, + { "point": "terrain", "id": "t_chickenwire_fence", "x": 17, "y": 7 }, + { "point": "terrain", "id": "t_chickenwire_fence", "x": 18, "y": 7 }, + { "point": "terrain", "id": "t_chickenwire_fence", "x": 14, "y": 13 }, + { "point": "terrain", "id": "t_chickenwire_fence", "x": 15, "y": 13 }, + { "point": "terrain", "id": "t_chickenwire_gate_c", "x": 16, "y": 13 }, + { "point": "terrain", "id": "t_chickenwire_fence", "x": 17, "y": 13 }, + { "point": "terrain", "id": "t_chickenwire_fence", "x": 18, "y": 13 }, + { "line": "terrain", "id": "t_chickenwire_fence", "x": 19, "x2": 19, "y": 8, "y2": 13 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_1", + "object": { + "mapgensize": [ 3, 3 ], + "rows": [ + "F ", + "g ", + "Fbb" + ], + "palettes": [ "fbml_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_bench", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "F ", + "g ", + "Fb ", + " b ", + " b " + ], + "palettes": [ "fbml_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_3", + "object": { + "mapgensize": [ 3, 3 ], + "rows": [ + "F ", + "g ", + "F " + ], + "palettes": [ "fbml_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_5", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "g ", + "Fb ", + " b ", + "Fb ", + "g " + ], + "palettes": [ "fbml_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_shack_furniture", + "object": { + "mapgensize": [ 3, 3 ], + "rows": [ + "rrr", + " t", + " r" + ], + "palettes": [ "fbml_2_common_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_remote_fence", + "method": "json", + "object": { + "set": [ + { "point": "terrain", "id": "t_splitrail_fence", "x": 6, "y": 0 }, + { "point": "terrain", "id": "t_splitrail_fencegate_c", "x": 7, "y": 0 }, + { "point": "terrain", "id": "t_splitrail_fence", "x": 8, "y": 0 }, + { "point": "terrain", "id": "t_splitrail_fence", "x": 9, "y": 0 }, + { "point": "terrain", "id": "t_splitrail_fence", "x": 10, "y": 0 }, + { "point": "terrain", "id": "t_splitrail_fencegate_c", "x": 11, "y": 0 }, + { "point": "terrain", "id": "t_splitrail_fence", "x": 12, "y": 0 } + ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_side_fence", + "method": "json", + "object": { + "set": [ + { "point": "terrain", "id": "t_splitrail_fence", "x": 19, "y": 14 }, + { "point": "terrain", "id": "t_splitrail_fencegate_c", "x": 19, "y": 15 }, + { "point": "terrain", "id": "t_splitrail_fencegate_c", "x": 19, "y": 16 }, + { "point": "terrain", "id": "t_splitrail_fence", "x": 19, "y": 17 } + ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_near_fence", + "method": "json", + "object": { + "set": [ + { "point": "terrain", "id": "t_splitrail_fence", "x": 6, "y": 22 }, + { "point": "terrain", "id": "t_splitrail_fence", "x": 7, "y": 22 }, + { "point": "terrain", "id": "t_splitrail_fencegate_c", "x": 8, "y": 22 }, + { "point": "terrain", "id": "t_splitrail_fence", "x": 9, "y": 22 }, + { "point": "terrain", "id": "t_splitrail_fence", "x": 10, "y": 22 }, + { "point": "terrain", "id": "t_splitrail_fence", "x": 11, "y": 22 }, + { "point": "terrain", "id": "t_splitrail_fencegate_c", "x": 12, "y": 22 }, + { "point": "terrain", "id": "t_splitrail_fence", "x": 13, "y": 22 }, + { "point": "terrain", "id": "t_splitrail_fence", "x": 14, "y": 22 } + ] + } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_concrete.json b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_concrete.json new file mode 100644 index 0000000000000..c2612615dc3ab --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_concrete.json @@ -0,0 +1,168 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_coop_concrete", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "wwwwwww ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w w " + ], + "palettes": [ "fbml_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_coop_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbml_2_coop_concrete" ], "x": 13, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_shack_concrete", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "wvwww", + "w,,,w", + "+,,,v", + "v,,,w", + "wv+ww" + ], + "palettes": [ "fbml_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_shack_concrete", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_shack_concrete" ], "x": 15, "y": 18 }, + { "chunks": [ "fbml_2_shack_furniture" ], "x": 16, "y": 19 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_1_concrete", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + "wwwwww", + " " + ], + "palettes": [ "fbml_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_1_concrete", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_1_concrete" ], "x": 0, "y": 18 }, { "chunks": [ "fbml_2_stall_1" ], "x": 3, "y": 19 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_2_4_concrete", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,w", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_2_concrete", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_stall_2_4_concrete" ], "x": 0, "y": 14 }, + { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 15 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_3_concrete", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_3_concrete", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_3_concrete" ], "x": 0, "y": 10 }, { "chunks": [ "fbml_2_stall_3" ], "x": 3, "y": 11 } ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_4_concrete", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_stall_2_4_concrete" ], "x": 0, "y": 6 }, + { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 7 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_5_concrete", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "w,, ,,", + "w,, ,,", + "wwww,,", + "w,, ,,", + "w,, ,," + ], + "palettes": [ "fbml_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_5_concrete", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_5_concrete" ], "x": 0, "y": 0 }, { "chunks": [ "fbml_2_stall_5" ], "x": 3, "y": 1 } ] + } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_log.json b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_log.json new file mode 100644 index 0000000000000..566d8d8eec5d0 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_log.json @@ -0,0 +1,159 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_coop_log", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "wwwwwww ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w w " + ], + "palettes": [ "fbml_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_coop_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbml_2_coop_log" ], "x": 13, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_shack_log", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "wvwww", + "w,,,w", + "+,,,v", + "v,,,w", + "wv+ww" + ], + "palettes": [ "fbml_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_shack_log", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_shack_log" ], "x": 15, "y": 18 }, { "chunks": [ "fbml_2_shack_furniture" ], "x": 16, "y": 19 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_1_log", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + "wwwwww", + " " + ], + "palettes": [ "fbml_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_1_log", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_1_log" ], "x": 0, "y": 18 }, { "chunks": [ "fbml_2_stall_1" ], "x": 3, "y": 19 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_2_4_log", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,w", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_2_log", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_2_4_log" ], "x": 0, "y": 14 }, { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 15 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_3_log", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_3_log", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_3_log" ], "x": 0, "y": 10 }, { "chunks": [ "fbml_2_stall_3" ], "x": 3, "y": 11 } ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_4_log", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_2_4_log" ], "x": 0, "y": 6 }, { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 7 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_5_log", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "w,, ,,", + "w,, ,,", + "wwww,,", + "w,, ,,", + "w,, ,," + ], + "palettes": [ "fbml_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_5_log", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_5_log" ], "x": 0, "y": 0 }, { "chunks": [ "fbml_2_stall_5" ], "x": 3, "y": 1 } ] + } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_metal.json b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_metal.json new file mode 100644 index 0000000000000..c578b7255711c --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_metal.json @@ -0,0 +1,162 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_coop_metal", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "wwwwwww ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w w " + ], + "palettes": [ "fbml_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_coop_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbml_2_coop_metal" ], "x": 13, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_shack_metal", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "wvwww", + "w,,,w", + "+,,,v", + "v,,,w", + "wv+ww" + ], + "palettes": [ "fbml_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_shack_metal", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_shack_metal" ], "x": 15, "y": 18 }, + { "chunks": [ "fbml_2_shack_furniture" ], "x": 16, "y": 19 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_1_metal", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + "wwwwww", + " " + ], + "palettes": [ "fbml_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_1_metal", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_1_metal" ], "x": 0, "y": 18 }, { "chunks": [ "fbml_2_stall_1" ], "x": 3, "y": 19 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_2_4_metal", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,w", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_2_metal", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_2_4_metal" ], "x": 0, "y": 14 }, { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 15 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_3_metal", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_3_metal", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_3_metal" ], "x": 0, "y": 10 }, { "chunks": [ "fbml_2_stall_3" ], "x": 3, "y": 11 } ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_4_metal", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_2_4_metal" ], "x": 0, "y": 6 }, { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 7 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_5_metal", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "w,, ,,", + "w,, ,,", + "wwww,,", + "w,, ,,", + "w,, ,," + ], + "palettes": [ "fbml_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_5_metal", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_5_metal" ], "x": 0, "y": 0 }, { "chunks": [ "fbml_2_stall_5" ], "x": 3, "y": 1 } ] + } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_migo_resin.json b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_migo_resin.json new file mode 100644 index 0000000000000..53279495c22a6 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_migo_resin.json @@ -0,0 +1,168 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_coop_migo_resin", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "wwwwwww ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w w " + ], + "palettes": [ "fbml_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_coop_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbml_2_coop_migo_resin" ], "x": 13, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_shack_migo_resin", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "wvwww", + "w,,,w", + "+,,,v", + "v,,,w", + "wv+ww" + ], + "palettes": [ "fbml_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_shack_migo_resin", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_shack_migo_resin" ], "x": 15, "y": 18 }, + { "chunks": [ "fbml_2_shack_furniture" ], "x": 16, "y": 19 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_1_migo_resin", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + "wwwwww", + " " + ], + "palettes": [ "fbml_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_1_migo_resin", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_1_migo_resin" ], "x": 0, "y": 18 }, { "chunks": [ "fbml_2_stall_1" ], "x": 3, "y": 19 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_2_4_migo_resin", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,w", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_2_migo_resin", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_stall_2_4_migo_resin" ], "x": 0, "y": 14 }, + { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 15 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_3_migo_resin", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_3_migo_resin", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_3_migo_resin" ], "x": 0, "y": 10 }, { "chunks": [ "fbml_2_stall_3" ], "x": 3, "y": 11 } ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_4_migo_resin", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_stall_2_4_migo_resin" ], "x": 0, "y": 6 }, + { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 7 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_5_migo_resin", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "w,, ,,", + "w,, ,,", + "wwww,,", + "w,, ,,", + "w,, ,," + ], + "palettes": [ "fbml_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_5_migo_resin", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_5_migo_resin" ], "x": 0, "y": 0 }, { "chunks": [ "fbml_2_stall_5" ], "x": 3, "y": 1 } ] + } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_palettes.json b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_palettes.json new file mode 100644 index 0000000000000..3472d278d2b5d --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_palettes.json @@ -0,0 +1,98 @@ +[ + { + "type": "palette", + "id": "fbml_2_2_common_palette", + "terrain": { + "d": "t_door_c", + "B": "t_grass", + "o": "t_window_no_curtains", + "w": "t_wall_wood", + ".": "t_floor", + ",": "t_dirtfloor", + "S": "t_dirtfloor", + "U": "t_rootcellar", + ";": "t_dirt" + }, + "furniture": { + "b": "f_bench", + "t": "f_table", + "K": "f_kiln_empty", + "a": "f_stool", + "r": "f_rack_wood", + "R": "f_rack", + "h": "f_chair", + "S": "f_smoking_rack", + "V": "f_fvat_empty", + "B": "f_birdbath", + "H": "f_butcher_rack", + "c": "f_counter", + "p": "f_planter", + "T": "f_standing_tank", + "I": "f_rack", + "D": "f_still", + "s": "f_woodstove", + "M": "f_wind_mill", + "e": "f_bookcase" + } + }, + { + "type": "palette", + "id": "fbml_2_2_concrete_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_thconc_floor", "+": "t_door_metal_c", "v": "t_window_no_curtains", "w": "t_sconc_wall" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbml_2_2_log_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor", "+": "t_door_c", "v": "t_window_no_curtains", "w": "t_wall_log" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbml_2_2_metal_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_scrap_floor", "+": "t_door_metal_c", "v": "t_window_no_curtains", "w": "t_scrap_wall" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbml_2_2_migo_resin_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor_resin", "+": "t_resin_hole_c", "v": "t_wall_resin_cage", "w": "t_wall_resin" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbml_2_2_rammed_earth_palette", + "terrain": { + ",": "t_dirtfloor", + ".": "t_floor_primitive", + "+": "t_door_makeshift_c", + "v": "t_window_empty", + "w": "t_wall_rammed_earth" + }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbml_2_2_rock_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor", "+": "t_door_c", "v": "t_window_no_curtains", "w": "t_rock_wall" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbml_2_2_wad_palette", + "terrain": { + ",": "t_dirtfloor", + ".": "t_floor_primitive", + "+": "t_door_makeshift_c", + "v": "t_wall_wattle_half", + "w": "t_wall_wattle" + }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbml_2_2_wood_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor", "+": "t_door_c", "v": "t_window_no_curtains", "w": "t_wall_wood" }, + "furniture": { } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_rammed_earth.json b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_rammed_earth.json new file mode 100644 index 0000000000000..d4b50dd53aa1c --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_rammed_earth.json @@ -0,0 +1,174 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_coop_rammed_earth", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "wwwwwww ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w w " + ], + "palettes": [ "fbml_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_coop_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbml_2_coop_rammed_earth" ], "x": 13, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_shack_rammed_earth", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "wvwww", + "w,,,w", + "+,,,v", + "v,,,w", + "wv+ww" + ], + "palettes": [ "fbml_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_shack_rammed_earth", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_shack_rammed_earth" ], "x": 15, "y": 18 }, + { "chunks": [ "fbml_2_shack_furniture" ], "x": 16, "y": 19 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_1_rammed_earth", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + "wwwwww", + " " + ], + "palettes": [ "fbml_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_1_rammed_earth", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_stall_1_rammed_earth" ], "x": 0, "y": 18 }, + { "chunks": [ "fbml_2_stall_1" ], "x": 3, "y": 19 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_2_4_rammed_earth", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,w", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_2_rammed_earth", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_stall_2_4_rammed_earth" ], "x": 0, "y": 14 }, + { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 15 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_3_rammed_earth", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_3_rammed_earth", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_stall_3_rammed_earth" ], "x": 0, "y": 10 }, + { "chunks": [ "fbml_2_stall_3" ], "x": 3, "y": 11 } + ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_4_rammed_earth", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_stall_2_4_rammed_earth" ], "x": 0, "y": 6 }, + { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 7 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_5_rammed_earth", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "w,, ,,", + "w,, ,,", + "wwww,,", + "w,, ,,", + "w,, ,," + ], + "palettes": [ "fbml_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_5_rammed_earth", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_5_rammed_earth" ], "x": 0, "y": 0 }, { "chunks": [ "fbml_2_stall_5" ], "x": 3, "y": 1 } ] + } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_rock.json b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_rock.json new file mode 100644 index 0000000000000..459b31b8d82c0 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_rock.json @@ -0,0 +1,162 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_coop_rock", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "wwwwwww ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w w " + ], + "palettes": [ "fbml_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_coop_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbml_2_coop_rock" ], "x": 13, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_shack_rock", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "wvwww", + "w,,,w", + "+,,,v", + "v,,,w", + "wv+ww" + ], + "palettes": [ "fbml_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_shack_rock", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_shack_rock" ], "x": 15, "y": 18 }, + { "chunks": [ "fbml_2_shack_furniture" ], "x": 16, "y": 19 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_1_rock", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + "wwwwww", + " " + ], + "palettes": [ "fbml_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_1_rock", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_1_rock" ], "x": 0, "y": 18 }, { "chunks": [ "fbml_2_stall_1" ], "x": 3, "y": 19 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_2_4_rock", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,w", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_2_rock", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_2_4_rock" ], "x": 0, "y": 14 }, { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 15 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_3_rock", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_3_rock", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_3_rock" ], "x": 0, "y": 10 }, { "chunks": [ "fbml_2_stall_3" ], "x": 3, "y": 11 } ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_4_rock", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_2_4_rock" ], "x": 0, "y": 6 }, { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 7 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_5_rock", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "w,, ,,", + "w,, ,,", + "wwww,,", + "w,, ,,", + "w,, ,," + ], + "palettes": [ "fbml_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_5_rock", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_5_rock" ], "x": 0, "y": 0 }, { "chunks": [ "fbml_2_stall_5" ], "x": 3, "y": 1 } ] + } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_wad.json b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_wad.json new file mode 100644 index 0000000000000..9bfb7b74648e3 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_wad.json @@ -0,0 +1,159 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_coop_wad", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "wwwwwww ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w w " + ], + "palettes": [ "fbml_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_coop_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbml_2_coop_wad" ], "x": 13, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_shack_wad", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "wvwww", + "w,,,w", + "+,,,v", + "v,,,w", + "wv+ww" + ], + "palettes": [ "fbml_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_shack_wad", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_shack_wad" ], "x": 15, "y": 18 }, { "chunks": [ "fbml_2_shack_furniture" ], "x": 16, "y": 19 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_1_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + "wwwwww", + " " + ], + "palettes": [ "fbml_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_1_wad", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_1_wad" ], "x": 0, "y": 18 }, { "chunks": [ "fbml_2_stall_1" ], "x": 3, "y": 19 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_2_4_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,w", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_2_wad", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_2_4_wad" ], "x": 0, "y": 14 }, { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 15 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_3_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_3_wad", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_3_wad" ], "x": 0, "y": 10 }, { "chunks": [ "fbml_2_stall_3" ], "x": 3, "y": 11 } ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_4_wad", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_2_4_wad" ], "x": 0, "y": 6 }, { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 7 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_5_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "w,, ,,", + "w,, ,,", + "wwww,,", + "w,, ,,", + "w,, ,," + ], + "palettes": [ "fbml_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_5_wad", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_5_wad" ], "x": 0, "y": 0 }, { "chunks": [ "fbml_2_stall_5" ], "x": 3, "y": 1 } ] + } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_wood.json b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_wood.json new file mode 100644 index 0000000000000..c86ba0d0ac1e6 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_livestock/version_2/modular_livestock_wood.json @@ -0,0 +1,162 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_coop_wood", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "wwwwwww ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w,,,,,w ", + "w w " + ], + "palettes": [ "fbml_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_coop_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbml_2_coop_wood" ], "x": 13, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_shack_wood", + "object": { + "mapgensize": [ 5, 5 ], + "rows": [ + "wvwww", + "w,,,w", + "+,,,v", + "v,,,w", + "wv+ww" + ], + "palettes": [ "fbml_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_shack_wood", + "method": "json", + "object": { + "place_nested": [ + { "chunks": [ "fbml_2_shack_wood" ], "x": 15, "y": 18 }, + { "chunks": [ "fbml_2_shack_furniture" ], "x": 16, "y": 19 } + ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_1_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + "wwwwww", + " " + ], + "palettes": [ "fbml_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_1_wood", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_1_wood" ], "x": 0, "y": 18 }, { "chunks": [ "fbml_2_stall_1" ], "x": 3, "y": 19 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_2_4_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,w", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_2_wood", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_2_4_wood" ], "x": 0, "y": 14 }, { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 15 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_3_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwww,,", + "w,, ,,", + "w,, ,,", + "w,, ,,", + " ", + " " + ], + "palettes": [ "fbml_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_3_wood", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_3_wood" ], "x": 0, "y": 10 }, { "chunks": [ "fbml_2_stall_3" ], "x": 3, "y": 11 } ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_4_wood", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_2_4_wood" ], "x": 0, "y": 6 }, { "chunks": [ "fbml_2_stall_bench" ], "x": 3, "y": 7 } ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbml_2_stall_5_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "w,, ,,", + "w,, ,,", + "wwww,,", + "w,, ,,", + "w,, ,," + ], + "palettes": [ "fbml_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbml_2_stall_5_wood", + "method": "json", + "object": { + "place_nested": [ { "chunks": [ "fbml_2_stall_5_wood" ], "x": 0, "y": 0 }, { "chunks": [ "fbml_2_stall_5" ], "x": 3, "y": 1 } ] + } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_bookcase.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_bookcase.json new file mode 100644 index 0000000000000..eaf4eae50f700 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_bookcase.json @@ -0,0 +1,98 @@ +[ + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_1", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_a" ], "x": 1, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_2", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_b" ], "x": 6, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_3", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_a" ], "x": 10, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_4", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_b" ], "x": 15, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_5", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_a" ], "x": 1, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_6", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_b" ], "x": 6, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_7", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_a" ], "x": 10, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_8", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_b" ], "x": 15, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_9", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_a" ], "x": 1, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_10", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_b" ], "x": 6, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_11", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_a" ], "x": 10, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_12", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_b" ], "x": 15, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_13", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_a" ], "x": 1, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_14", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_b" ], "x": 6, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_15", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_a" ], "x": 10, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_bookcase_16", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_bookcase_b" ], "x": 15, "y": 1 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_common.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_common.json new file mode 100644 index 0000000000000..4e0235dfff5a8 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_common.json @@ -0,0 +1,409 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2", + "object": { + "mapgensize": [ 24, 24 ], + "rows": [ + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + " " + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "faction_base_storehouse_2_0", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2" ], "x": 0, "y": 0 } ] } + }, + { + "type": "palette", + "id": "fbms_2_common_palette", + "terrain": { ";": "t_dirt" }, + "furniture": { "d": "f_dresser", "b": "f_bookcase", "l": "f_locker", "w": "f_rack_wood", "r": "f_rack", "s": "f_warehouse_shelf" } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_dresser_a", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "d dd", + "d dd", + "d dd", + "d dd" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_dresser_b", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "dd d", + "dd d", + "dd d", + "dd d" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_dresser_c", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "dddd", + " ", + "dddd", + "dddd" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_dresser_d", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "dddd", + "dddd", + " ", + "dddd" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_bookcase_a", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "b bb", + "b bb", + "b bb", + "b bb" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_bookcase_b", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "bb b", + "bb b", + "bb b", + "bb b" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_bookcase_c", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "bbbb", + " ", + "bbbb", + "bbbb" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_bookcase_d", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "bbbb", + "bbbb", + " ", + "bbbb" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_locker_a", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "l ll", + "l ll", + "l ll", + "l ll" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_locker_b", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "ll l", + "ll l", + "ll l", + "ll l" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_locker_c", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "llll", + " ", + "llll", + "llll" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_locker_d", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "llll", + "llll", + " ", + "llll" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_wooden_rack_a", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "w ww", + "w ww", + "w ww", + "w ww" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_wooden_rack_b", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "ww w", + "ww w", + "ww w", + "ww w" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_wooden_rack_c", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "wwww", + " ", + "wwww", + "wwww" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_wooden_rack_d", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "wwww", + "wwww", + " ", + "wwww" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_rack_a", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "r rr", + "r rr", + "r rr", + "r rr" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_rack_b", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "rr r", + "rr r", + "rr r", + "rr r" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_rack_c", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "rrrr", + " ", + "rrrr", + "rrrr" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_rack_d", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "rrrr", + "rrrr", + " ", + "rrrr" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_warehouse_shelf_a", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "s ss", + "s ss", + "s ss", + "s ss" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_warehouse_shelf_b", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "ss s", + "ss s", + "ss s", + "ss s" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_warehouse_shelf_c", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "ssss", + " ", + "ssss", + "ssss" + ], + "palettes": [ "fbms_2_common_palette" ] + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_warehouse_shelf_d", + "object": { + "mapgensize": [ 4, 4 ], + "rows": [ + "ssss", + "ssss", + " ", + "ssss" + ], + "palettes": [ "fbms_2_common_palette" ] + } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_concrete.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_concrete.json new file mode 100644 index 0000000000000..cb5cfe801c07a --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_concrete.json @@ -0,0 +1,287 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_1_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + "wvwwv+w" + ], + "palettes": [ "fbms_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_1_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_1_concrete" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_2_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "wvwwvw " + ], + "palettes": [ "fbms_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_2_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_2_concrete" ], "x": 7, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_3_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + "wwvw+vw" + ], + "palettes": [ "fbms_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_3_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_3_concrete" ], "x": 13, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_4_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwww+w", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_4_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_4_concrete" ], "x": 0, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_5_concrete", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_5_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_5_concrete" ], "x": 7, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_6_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwww+ww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_6_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_6_concrete" ], "x": 13, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_7_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + " " + ], + "palettes": [ "fbms_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_7_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_7_concrete" ], "x": 0, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_8_concrete", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "......", + "......", + "......", + "......", + "......", + "......" + ], + "palettes": [ "fbms_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_8_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_8_concrete" ], "x": 7, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_9_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + " " + ], + "palettes": [ "fbms_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_9_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_9_concrete" ], "x": 13, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_10_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_10_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_10_concrete" ], "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_11_concrete", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_11_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_11_concrete" ], "x": 7, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_12_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_12_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_12_concrete" ], "x": 13, "y": 0 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_dresser.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_dresser.json new file mode 100644 index 0000000000000..8eccf8eea651c --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_dresser.json @@ -0,0 +1,98 @@ +[ + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_1", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_a" ], "x": 1, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_2", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_b" ], "x": 6, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_3", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_a" ], "x": 10, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_4", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_b" ], "x": 15, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_5", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_a" ], "x": 1, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_6", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_b" ], "x": 6, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_7", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_a" ], "x": 10, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_8", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_b" ], "x": 15, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_9", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_a" ], "x": 1, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_10", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_b" ], "x": 6, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_11", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_a" ], "x": 10, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_12", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_b" ], "x": 15, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_13", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_a" ], "x": 1, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_14", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_b" ], "x": 6, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_15", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_a" ], "x": 10, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_dresser_16", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_dresser_b" ], "x": 15, "y": 1 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_locker.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_locker.json new file mode 100644 index 0000000000000..ad5e421ee20a1 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_locker.json @@ -0,0 +1,98 @@ +[ + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_1", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_a" ], "x": 1, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_2", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_b" ], "x": 6, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_3", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_a" ], "x": 10, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_4", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_b" ], "x": 15, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_5", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_a" ], "x": 1, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_6", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_b" ], "x": 6, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_7", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_a" ], "x": 10, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_8", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_b" ], "x": 15, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_9", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_a" ], "x": 1, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_10", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_b" ], "x": 6, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_11", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_a" ], "x": 10, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_12", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_b" ], "x": 15, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_13", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_a" ], "x": 1, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_14", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_b" ], "x": 6, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_15", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_a" ], "x": 10, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_locker_16", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_locker_b" ], "x": 15, "y": 1 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_log.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_log.json new file mode 100644 index 0000000000000..4dd10c930199e --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_log.json @@ -0,0 +1,287 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_1_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + "wvwwv+w" + ], + "palettes": [ "fbms_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_1_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_1_log" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_2_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "wvwwvw " + ], + "palettes": [ "fbms_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_2_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_2_log" ], "x": 7, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_3_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + "wwvw+vw" + ], + "palettes": [ "fbms_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_3_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_3_log" ], "x": 13, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_4_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwww+w", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_4_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_4_log" ], "x": 0, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_5_log", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_5_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_5_log" ], "x": 7, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_6_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwww+ww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_6_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_6_log" ], "x": 13, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_7_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + " " + ], + "palettes": [ "fbms_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_7_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_7_log" ], "x": 0, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_8_log", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "......", + "......", + "......", + "......", + "......", + "......" + ], + "palettes": [ "fbms_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_8_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_8_log" ], "x": 7, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_9_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + " " + ], + "palettes": [ "fbms_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_9_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_9_log" ], "x": 13, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_10_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_10_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_10_log" ], "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_11_log", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_11_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_11_log" ], "x": 7, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_12_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_12_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_12_log" ], "x": 13, "y": 0 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_metal.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_metal.json new file mode 100644 index 0000000000000..f3aeb3f6ce378 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_metal.json @@ -0,0 +1,287 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_1_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + "wvwwv+w" + ], + "palettes": [ "fbms_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_1_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_1_metal" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_2_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "wvwwvw " + ], + "palettes": [ "fbms_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_2_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_2_metal" ], "x": 7, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_3_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + "wwvw+vw" + ], + "palettes": [ "fbms_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_3_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_3_metal" ], "x": 13, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_4_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwww+w", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_4_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_4_metal" ], "x": 0, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_5_metal", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_5_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_5_metal" ], "x": 7, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_6_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwww+ww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_6_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_6_metal" ], "x": 13, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_7_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + " " + ], + "palettes": [ "fbms_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_7_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_7_metal" ], "x": 0, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_8_metal", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "......", + "......", + "......", + "......", + "......", + "......" + ], + "palettes": [ "fbms_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_8_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_8_metal" ], "x": 7, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_9_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + " " + ], + "palettes": [ "fbms_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_9_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_9_metal" ], "x": 13, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_10_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_10_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_10_metal" ], "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_11_metal", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_11_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_11_metal" ], "x": 7, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_12_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_12_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_12_metal" ], "x": 13, "y": 0 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_migo_resin.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_migo_resin.json new file mode 100644 index 0000000000000..e6db4d719e294 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_migo_resin.json @@ -0,0 +1,287 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_1_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + "wvwwv+w" + ], + "palettes": [ "fbms_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_1_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_1_migo_resin" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_2_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "wvwwvw " + ], + "palettes": [ "fbms_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_2_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_2_migo_resin" ], "x": 7, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_3_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + "wwvw+vw" + ], + "palettes": [ "fbms_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_3_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_3_migo_resin" ], "x": 13, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_4_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwww+w", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_4_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_4_migo_resin" ], "x": 0, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_5_migo_resin", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_5_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_5_migo_resin" ], "x": 7, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_6_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwww+ww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_6_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_6_migo_resin" ], "x": 13, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_7_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + " " + ], + "palettes": [ "fbms_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_7_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_7_migo_resin" ], "x": 0, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_8_migo_resin", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "......", + "......", + "......", + "......", + "......", + "......" + ], + "palettes": [ "fbms_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_8_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_8_migo_resin" ], "x": 7, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_9_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + " " + ], + "palettes": [ "fbms_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_9_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_9_migo_resin" ], "x": 13, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_10_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_10_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_10_migo_resin" ], "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_11_migo_resin", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_11_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_11_migo_resin" ], "x": 7, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_12_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_12_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_12_migo_resin" ], "x": 13, "y": 0 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_palettes.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_palettes.json new file mode 100644 index 0000000000000..2f72b61f273ac --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_palettes.json @@ -0,0 +1,98 @@ +[ + { + "type": "palette", + "id": "fbms_2_2_common_palette", + "terrain": { + "d": "t_door_c", + "B": "t_grass", + "o": "t_window_no_curtains", + "w": "t_wall_wood", + ".": "t_floor", + ",": "t_dirtfloor", + "S": "t_dirtfloor", + "U": "t_rootcellar", + ";": "t_dirt" + }, + "furniture": { + "b": "f_bench", + "t": "f_table", + "K": "f_kiln_empty", + "a": "f_stool", + "r": "f_rack_wood", + "R": "f_rack", + "h": "f_chair", + "S": "f_smoking_rack", + "V": "f_fvat_empty", + "B": "f_birdbath", + "H": "f_butcher_rack", + "c": "f_counter", + "p": "f_planter", + "T": "f_standing_tank", + "I": "f_rack", + "D": "f_still", + "s": "f_woodstove", + "M": "f_wind_mill", + "e": "f_bookcase" + } + }, + { + "type": "palette", + "id": "fbms_2_2_concrete_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_thconc_floor", "+": "t_door_metal_c", "v": "t_window_no_curtains", "w": "t_sconc_wall" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbms_2_2_log_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor", "+": "t_door_c", "v": "t_window_no_curtains", "w": "t_wall_log" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbms_2_2_metal_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_scrap_floor", "+": "t_door_metal_c", "v": "t_window_no_curtains", "w": "t_scrap_wall" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbms_2_2_migo_resin_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor_resin", "+": "t_resin_hole_c", "v": "t_wall_resin_cage", "w": "t_wall_resin" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbms_2_2_rammed_earth_palette", + "terrain": { + ",": "t_dirtfloor", + ".": "t_floor_primitive", + "+": "t_door_makeshift_c", + "v": "t_window_empty", + "w": "t_wall_rammed_earth" + }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbms_2_2_rock_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor", "+": "t_door_c", "v": "t_window_no_curtains", "w": "t_rock_wall" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbms_2_2_wad_palette", + "terrain": { + ",": "t_dirtfloor", + ".": "t_floor_primitive", + "+": "t_door_makeshift_c", + "v": "t_wall_wattle_half", + "w": "t_wall_wattle" + }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbms_2_2_wood_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor", "+": "t_door_c", "v": "t_window_no_curtains", "w": "t_wall_wood" }, + "furniture": { } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_rack.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_rack.json new file mode 100644 index 0000000000000..4aca1e4ab337b --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_rack.json @@ -0,0 +1,98 @@ +[ + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_1", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_a" ], "x": 1, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_2", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_b" ], "x": 6, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_3", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_a" ], "x": 10, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_4", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_b" ], "x": 15, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_5", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_a" ], "x": 1, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_6", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_b" ], "x": 6, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_7", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_a" ], "x": 10, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_8", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_b" ], "x": 15, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_9", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_a" ], "x": 1, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_10", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_b" ], "x": 6, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_11", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_a" ], "x": 10, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_12", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_b" ], "x": 15, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_13", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_a" ], "x": 1, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_14", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_b" ], "x": 6, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_15", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_a" ], "x": 10, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_rack_16", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_rack_b" ], "x": 15, "y": 1 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_rammed_earth.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_rammed_earth.json new file mode 100644 index 0000000000000..83c8f84c2885b --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_rammed_earth.json @@ -0,0 +1,287 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_1_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + "wvwwv+w" + ], + "palettes": [ "fbms_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_1_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_1_rammed_earth" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_2_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "wvwwvw " + ], + "palettes": [ "fbms_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_2_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_2_rammed_earth" ], "x": 7, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_3_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + "wwvw+vw" + ], + "palettes": [ "fbms_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_3_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_3_rammed_earth" ], "x": 13, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_4_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwww+w", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_4_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_4_rammed_earth" ], "x": 0, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_5_rammed_earth", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_5_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_5_rammed_earth" ], "x": 7, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_6_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwww+ww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_6_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_6_rammed_earth" ], "x": 13, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_7_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + " " + ], + "palettes": [ "fbms_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_7_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_7_rammed_earth" ], "x": 0, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_8_rammed_earth", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "......", + "......", + "......", + "......", + "......", + "......" + ], + "palettes": [ "fbms_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_8_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_8_rammed_earth" ], "x": 7, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_9_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + " " + ], + "palettes": [ "fbms_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_9_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_9_rammed_earth" ], "x": 13, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_10_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_10_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_10_rammed_earth" ], "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_11_rammed_earth", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_11_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_11_rammed_earth" ], "x": 7, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_12_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_12_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_12_rammed_earth" ], "x": 13, "y": 0 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_rock.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_rock.json new file mode 100644 index 0000000000000..274ec5fd0fce9 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_rock.json @@ -0,0 +1,287 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_1_rock", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + "wvwwv+w" + ], + "palettes": [ "fbms_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_1_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_1_rock" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_2_rock", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "wvwwvw " + ], + "palettes": [ "fbms_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_2_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_2_rock" ], "x": 7, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_3_rock", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + "wwvw+vw" + ], + "palettes": [ "fbms_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_3_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_3_rock" ], "x": 13, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_4_rock", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwww+w", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_4_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_4_rock" ], "x": 0, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_5_rock", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_5_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_5_rock" ], "x": 7, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_6_rock", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwww+ww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_6_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_6_rock" ], "x": 13, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_7_rock", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + " " + ], + "palettes": [ "fbms_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_7_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_7_rock" ], "x": 0, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_8_rock", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "......", + "......", + "......", + "......", + "......", + "......" + ], + "palettes": [ "fbms_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_8_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_8_rock" ], "x": 7, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_9_rock", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + " " + ], + "palettes": [ "fbms_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_9_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_9_rock" ], "x": 13, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_10_rock", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_10_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_10_rock" ], "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_11_rock", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_11_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_11_rock" ], "x": 7, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_12_rock", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_12_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_12_rock" ], "x": 13, "y": 0 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_wad.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_wad.json new file mode 100644 index 0000000000000..a0c0b16577000 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_wad.json @@ -0,0 +1,287 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_1_wad", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + "wvwwv+w" + ], + "palettes": [ "fbms_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_1_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_1_wad" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_2_wad", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "wvwwvw " + ], + "palettes": [ "fbms_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_2_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_2_wad" ], "x": 7, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_3_wad", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + "wwvw+vw" + ], + "palettes": [ "fbms_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_3_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_3_wad" ], "x": 13, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_4_wad", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwww+w", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_4_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_4_wad" ], "x": 0, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_5_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_5_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_5_wad" ], "x": 7, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_6_wad", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwww+ww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_6_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_6_wad" ], "x": 13, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_7_wad", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + " " + ], + "palettes": [ "fbms_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_7_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_7_wad" ], "x": 0, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_8_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "......", + "......", + "......", + "......", + "......", + "......" + ], + "palettes": [ "fbms_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_8_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_8_wad" ], "x": 7, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_9_wad", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + " " + ], + "palettes": [ "fbms_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_9_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_9_wad" ], "x": 13, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_10_wad", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_10_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_10_wad" ], "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_11_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_11_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_11_wad" ], "x": 7, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_12_wad", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_12_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_12_wad" ], "x": 13, "y": 0 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_warehouse_shelf.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_warehouse_shelf.json new file mode 100644 index 0000000000000..520482f70a8cd --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_warehouse_shelf.json @@ -0,0 +1,98 @@ +[ + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_1", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_a" ], "x": 1, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_2", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_b" ], "x": 6, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_3", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_a" ], "x": 10, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_4", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_b" ], "x": 15, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_5", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_a" ], "x": 1, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_6", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_b" ], "x": 6, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_7", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_a" ], "x": 10, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_8", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_b" ], "x": 15, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_9", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_a" ], "x": 1, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_10", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_b" ], "x": 6, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_11", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_a" ], "x": 10, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_12", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_b" ], "x": 15, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_13", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_a" ], "x": 1, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_14", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_b" ], "x": 6, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_15", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_a" ], "x": 10, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_warehouse_shelf_16", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_warehouse_shelf_b" ], "x": 15, "y": 1 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_wood.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_wood.json new file mode 100644 index 0000000000000..8335e4b52a6b9 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_wood.json @@ -0,0 +1,287 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_1_wood", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + "wvwwv+w" + ], + "palettes": [ "fbms_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_1_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_1_wood" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_2_wood", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "...... ", + "wvwwvw " + ], + "palettes": [ "fbms_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_2_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_2_wood" ], "x": 7, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_3_wood", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + "wwvw+vw" + ], + "palettes": [ "fbms_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_3_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_3_wood" ], "x": 13, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_4_wood", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwww+w", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_4_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_4_wood" ], "x": 0, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_5_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_5_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_5_wood" ], "x": 7, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_6_wood", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwww+ww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_6_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_6_wood" ], "x": 13, "y": 11 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_7_wood", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "w......", + "w......", + "w......", + "w......", + "w......", + "w......", + " " + ], + "palettes": [ "fbms_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_7_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_7_wood" ], "x": 0, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_8_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "......", + "......", + "......", + "......", + "......", + "......" + ], + "palettes": [ "fbms_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_8_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_8_wood" ], "x": 7, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_9_wood", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "......v", + "......w", + "......w", + "......w", + "......w", + "......v", + " " + ], + "palettes": [ "fbms_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_9_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_9_wood" ], "x": 13, "y": 5 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_10_wood", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "w......", + "w......", + "w......", + "w......", + " ", + " " + ], + "palettes": [ "fbms_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_10_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_10_wood" ], "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_11_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwwwww", + "......", + "......", + "......", + "......", + " " + ], + "palettes": [ "fbms_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_11_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_11_wood" ], "x": 7, "y": 0 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbms_2_12_wood", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwwwww", + "......w", + "......w", + "......w", + "......w", + " ", + " " + ], + "palettes": [ "fbms_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_12_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_12_wood" ], "x": 13, "y": 0 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_wooden_rack.json b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_wooden_rack.json new file mode 100644 index 0000000000000..6b0051576171c --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_storehouse/version_2/modular_storehouse_wooden_rack.json @@ -0,0 +1,98 @@ +[ + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_1", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_a" ], "x": 1, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_2", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_b" ], "x": 6, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_3", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_a" ], "x": 10, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_4", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_b" ], "x": 15, "y": 17 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_5", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_a" ], "x": 1, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_6", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_b" ], "x": 6, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_7", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_a" ], "x": 10, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_8", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_b" ], "x": 15, "y": 12 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_9", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_a" ], "x": 1, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_10", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_b" ], "x": 6, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_11", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_a" ], "x": 10, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_12", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_b" ], "x": 15, "y": 6 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_13", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_a" ], "x": 1, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_14", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_b" ], "x": 6, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_15", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_a" ], "x": 10, "y": 1 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbms_2_wooden_rack_16", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbms_2_wooden_rack_b" ], "x": 15, "y": 1 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_common.json b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_common.json new file mode 100644 index 0000000000000..7b08f8777e3cd --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_common.json @@ -0,0 +1,207 @@ +[ + { + "type": "palette", + "id": "fbmw_2_common_palette", + "terrain": { ";": "t_dirt" }, + "furniture": { + "t": "f_table", + "L": "f_dresser", + "x": "f_kiln_empty", + "f": "f_forge_rock", + "c": "f_workbench", + "h": "f_stool", + "A": "f_anvil", + "r": "f_rack_wood", + "Q": "f_bellows", + "b": "f_bench", + "z": "f_55gal_firebarrel", + "k": "f_clay_kiln", + "M": "f_armchair", + "B": "f_bookcase" + } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2", + "object": { + "mapgensize": [ 24, 24 ], + "rows": [ + " ", + " ", + " ", + " ", + " ", + " ", + " ", + ";;;;;; ", + ";;;;;; ", + ";;;;;; ", + ";;;;;; ", + ";;;;;; ", + " ", + " ; ", + " ;;;; ", + " ;;; ;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + ";;;;;;;;;;;;;;;;;;;; ", + " " + ], + "palettes": [ "fbmw_2_common_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "faction_base_workshop_2_0", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2" ], "x": 0, "y": 0 } ] } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_common_smithy_1", + "method": "json", + "object": { + "set": [ + { "point": "furniture", "id": "f_fireplace", "x": 14, "y": 17 }, + { "point": "furniture", "id": "f_forge_rock", "x": 16, "y": 17 }, + { "point": "furniture", "id": "f_table", "x": 17, "y": 17 }, + { "point": "furniture", "id": "f_dresser", "x": 18, "y": 17 } + ], + "place_loot": [ { "item": "hammer", "x": 17, "y": 17, "chance": 100 } ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_common_smithy_2", + "method": "json", + "object": { + "set": [ + { "point": "furniture", "id": "f_kiln_empty", "x": 17, "y": 14 }, + { "point": "furniture", "id": "f_kiln_empty", "x": 18, "y": 14 } + ], + "place_loot": [ { "item": "crucible", "x": 17, "y": 17, "chance": 100 } ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_common_smithy_3", + "method": "json", + "object": { + "set": [ + { "point": "furniture", "id": "f_workbench", "x": 18, "y": 18 }, + { "point": "furniture", "id": "f_workbench", "x": 18, "y": 19 }, + { "point": "furniture", "id": "f_workbench", "x": 18, "y": 20 }, + { "point": "furniture", "id": "f_anvil", "x": 16, "y": 19 } + ], + "place_loot": [ { "item": "55gal_drum", "x": 16, "y": 20, "chance": 100 }, { "item": "30gal_drum", "x": 16, "y": 21, "chance": 100 } ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_common_smithy_4", + "method": "json", + "object": { + "set": [ + { "point": "furniture", "id": "f_table", "x": 9, "y": 17 }, + { "point": "furniture", "id": "f_armchair", "x": 10, "y": 17 }, + { "point": "furniture", "id": "f_bookcase", "x": 11, "y": 17 }, + { "point": "furniture", "id": "f_rack_wood", "x": 12, "y": 17 }, + { "point": "furniture", "id": "f_stool", "x": 13, "y": 18 } + ], + "place_loot": [ + { "item": "tongs", "x": 18, "y": 18, "chance": 100 }, + { "item": "chisel", "x": 18, "y": 18, "chance": 100 }, + { "item": "hammer", "x": 18, "y": 18, "chance": 100 }, + { "item": "swage", "x": 18, "y": 18, "chance": 100 } + ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_common_smithy_5", + "method": "json", + "object": { + "set": [ { "point": "furniture", "id": "f_bellows", "x": 15, "y": 17 } ], + "place_loot": [ + { "item": "hammer_sledge", "x": 18, "y": 19, "chance": 100 }, + { "item": "knife_combat", "x": 18, "y": 19, "chance": 100 } + ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_common_smithy_6", + "method": "json", + "object": { + "set": [ + { "point": "furniture", "id": "f_rack", "x": 9, "y": 21 }, + { "point": "furniture", "id": "f_rack", "x": 10, "y": 21 }, + { "point": "furniture", "id": "f_rack", "x": 12, "y": 21 }, + { "point": "furniture", "id": "f_rack", "x": 12, "y": 20 }, + { "point": "furniture", "id": "f_drophammer", "x": 11, "y": 21 } + ], + "place_loot": [ { "item": "wrench", "x": 18, "y": 20, "chance": 100 }, { "item": "pliers", "x": 18, "y": 20, "chance": 100 } ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_common_pottery", + "method": "json", + "object": { + "set": [ + { "point": "furniture", "id": "f_rack", "x": 1, "y": 17 }, + { "point": "furniture", "id": "f_rack", "x": 2, "y": 17 }, + { "point": "furniture", "id": "f_rack", "x": 4, "y": 17 }, + { "point": "furniture", "id": "f_rack", "x": 5, "y": 17 }, + { "point": "furniture", "id": "f_rack", "x": 6, "y": 17 }, + { "point": "furniture", "id": "f_rack", "x": 7, "y": 17 }, + { "point": "furniture", "id": "f_clay_kiln", "x": 1, "y": 18 }, + { "point": "furniture", "id": "f_workbench", "x": 3, "y": 19 }, + { "point": "furniture", "id": "f_workbench", "x": 4, "y": 19 }, + { "point": "furniture", "id": "f_workbench", "x": 5, "y": 19 }, + { "point": "furniture", "id": "f_stool", "x": 4, "y": 20 }, + { "point": "furniture", "id": "f_rack", "x": 1, "y": 19 }, + { "point": "furniture", "id": "f_rack", "x": 1, "y": 20 }, + { "point": "furniture", "id": "f_rack", "x": 1, "y": 21 } + ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_common_glassblower", + "method": "json", + "object": { + "set": [ + { "point": "furniture", "id": "f_bookcase", "x": 1, "y": 8 }, + { "point": "furniture", "id": "f_forge_rock", "x": 3, "y": 8 }, + { "point": "furniture", "id": "f_bookcase", "x": 1, "y": 9 }, + { "point": "furniture", "id": "f_bookcase", "x": 1, "y": 10 }, + { "point": "furniture", "id": "f_armchair", "x": 2, "y": 10 }, + { "point": "furniture", "id": "f_workbench", "x": 3, "y": 10 } + ], + "place_loot": [ + { "item": "tongs", "x": 3, "y": 10, "chance": 100 }, + { "item": "chisel", "x": 3, "y": 10, "chance": 100 }, + { "item": "crucible", "x": 3, "y": 10, "chance": 100 } + ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_common_recreation", + "method": "json", + "object": { + "set": [ + { "point": "furniture", "id": "f_bench", "x": 4, "y": 15 }, + { "point": "furniture", "id": "f_bench", "x": 5, "y": 15 }, + { "point": "furniture", "id": "f_bench", "x": 6, "y": 15 }, + { "point": "furniture", "id": "f_55gal_firebarrel", "x": 5, "y": 13 } + ] + } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_concrete.json b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_concrete.json new file mode 100644 index 0000000000000..af7509cc97d37 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_concrete.json @@ -0,0 +1,120 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_1_concrete", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + ".....w", + ".....v", + ".....w", + ".....w", + ".....w", + "vww+vw" + ], + "palettes": [ "fbmw_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_1_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_1_concrete" ], "x": 14, "y": 17 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_2_concrete", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w,,w", + " ,,,,", + "wwwvww", + " ", + " ", + " " + ], + "palettes": [ "fbmw_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_2_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_2_concrete" ], "x": 14, "y": 14 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_pottery_concrete", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "www+wwvw", + "w.......", + "w.......", + "w.......", + "w.......", + "w.......", + "wwwwvwww", + " " + ], + "palettes": [ "fbmw_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_pottery_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_pottery_concrete" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_3_concrete", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwvw+ ", + "w..... ", + "w..... ", + "+..... ", + "w..... ", + "w..... ", + "wwwvww " + ], + "palettes": [ "fbmw_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_3_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_3_concrete" ], "x": 8, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_glassblower_concrete", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwvwvw", + "w....w", + "w....+", + "w....w", + "wwvw+w", + " " + ], + "palettes": [ "fbmw_2_2_concrete_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_glassblower_concrete", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_glassblower_concrete" ], "x": 0, "y": 7 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_log.json b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_log.json new file mode 100644 index 0000000000000..d13415f4423c2 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_log.json @@ -0,0 +1,120 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_1_log", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + ".....w", + ".....v", + ".....w", + ".....w", + ".....w", + "vww+vw" + ], + "palettes": [ "fbmw_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_1_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_1_log" ], "x": 14, "y": 17 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_2_log", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w,,w", + " ,,,,", + "wwwvww", + " ", + " ", + " " + ], + "palettes": [ "fbmw_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_2_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_2_log" ], "x": 14, "y": 14 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_pottery_log", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "www+wwvw", + "w.......", + "w.......", + "w.......", + "w.......", + "w.......", + "wwwwvwww", + " " + ], + "palettes": [ "fbmw_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_pottery_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_pottery_log" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_3_log", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwvw+ ", + "w..... ", + "w..... ", + "+..... ", + "w..... ", + "w..... ", + "wwwvww " + ], + "palettes": [ "fbmw_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_3_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_3_log" ], "x": 8, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_glassblower_log", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwvwvw", + "w....w", + "w....+", + "w....w", + "wwvw+w", + " " + ], + "palettes": [ "fbmw_2_2_log_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_glassblower_log", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_glassblower_log" ], "x": 0, "y": 7 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_metal.json b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_metal.json new file mode 100644 index 0000000000000..2ddc4a851d3e8 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_metal.json @@ -0,0 +1,120 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_1_metal", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + ".....w", + ".....v", + ".....w", + ".....w", + ".....w", + "vww+vw" + ], + "palettes": [ "fbmw_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_1_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_1_metal" ], "x": 14, "y": 17 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_2_metal", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w,,w", + " ,,,,", + "wwwvww", + " ", + " ", + " " + ], + "palettes": [ "fbmw_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_2_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_2_metal" ], "x": 14, "y": 14 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_pottery_metal", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "www+wwvw", + "w.......", + "w.......", + "w.......", + "w.......", + "w.......", + "wwwwvwww", + " " + ], + "palettes": [ "fbmw_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_pottery_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_pottery_metal" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_3_metal", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwvw+ ", + "w..... ", + "w..... ", + "+..... ", + "w..... ", + "w..... ", + "wwwvww " + ], + "palettes": [ "fbmw_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_3_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_3_metal" ], "x": 8, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_glassblower_metal", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwvwvw", + "w....w", + "w....+", + "w....w", + "wwvw+w", + " " + ], + "palettes": [ "fbmw_2_2_metal_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_glassblower_metal", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_glassblower_metal" ], "x": 0, "y": 7 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_migo_resin.json b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_migo_resin.json new file mode 100644 index 0000000000000..3a8a67c96d4be --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_migo_resin.json @@ -0,0 +1,120 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_1_migo_resin", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + ".....w", + ".....v", + ".....w", + ".....w", + ".....w", + "vww+vw" + ], + "palettes": [ "fbmw_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_1_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_1_migo_resin" ], "x": 14, "y": 17 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_2_migo_resin", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w,,w", + " ,,,,", + "wwwvww", + " ", + " ", + " " + ], + "palettes": [ "fbmw_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_2_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_2_migo_resin" ], "x": 14, "y": 14 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_pottery_migo_resin", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "www+wwvw", + "w.......", + "w.......", + "w.......", + "w.......", + "w.......", + "wwwwvwww", + " " + ], + "palettes": [ "fbmw_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_pottery_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_pottery_migo_resin" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_3_migo_resin", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwvw+ ", + "w..... ", + "w..... ", + "+..... ", + "w..... ", + "w..... ", + "wwwvww " + ], + "palettes": [ "fbmw_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_3_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_3_migo_resin" ], "x": 8, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_glassblower_migo_resin", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwvwvw", + "w....w", + "w....+", + "w....w", + "wwvw+w", + " " + ], + "palettes": [ "fbmw_2_2_migo_resin_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_glassblower_migo_resin", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_glassblower_migo_resin" ], "x": 0, "y": 7 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_palettes.json b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_palettes.json new file mode 100644 index 0000000000000..8966439516ec9 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_palettes.json @@ -0,0 +1,98 @@ +[ + { + "type": "palette", + "id": "fbmw_2_2_common_palette", + "terrain": { + "d": "t_door_c", + "B": "t_grass", + "o": "t_window_no_curtains", + "w": "t_wall_wood", + ".": "t_floor", + ",": "t_dirtfloor", + "S": "t_dirtfloor", + "U": "t_rootcellar", + ";": "t_dirt" + }, + "furniture": { + "b": "f_bench", + "t": "f_table", + "K": "f_kiln_empty", + "a": "f_stool", + "r": "f_rack_wood", + "R": "f_rack", + "h": "f_chair", + "S": "f_smoking_rack", + "V": "f_fvat_empty", + "B": "f_birdbath", + "H": "f_butcher_rack", + "c": "f_counter", + "p": "f_planter", + "T": "f_standing_tank", + "I": "f_rack", + "D": "f_still", + "s": "f_woodstove", + "M": "f_wind_mill", + "e": "f_bookcase" + } + }, + { + "type": "palette", + "id": "fbmw_2_2_concrete_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_thconc_floor", "+": "t_door_metal_c", "v": "t_window_no_curtains", "w": "t_sconc_wall" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmw_2_2_log_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor", "+": "t_door_c", "v": "t_window_no_curtains", "w": "t_wall_log" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmw_2_2_metal_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_scrap_floor", "+": "t_door_metal_c", "v": "t_window_no_curtains", "w": "t_scrap_wall" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmw_2_2_migo_resin_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor_resin", "+": "t_resin_hole_c", "v": "t_wall_resin_cage", "w": "t_wall_resin" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmw_2_2_rammed_earth_palette", + "terrain": { + ",": "t_dirtfloor", + ".": "t_floor_primitive", + "+": "t_door_makeshift_c", + "v": "t_window_empty", + "w": "t_wall_rammed_earth" + }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmw_2_2_rock_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor", "+": "t_door_c", "v": "t_window_no_curtains", "w": "t_rock_wall" }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmw_2_2_wad_palette", + "terrain": { + ",": "t_dirtfloor", + ".": "t_floor_primitive", + "+": "t_door_makeshift_c", + "v": "t_wall_wattle_half", + "w": "t_wall_wattle" + }, + "furniture": { } + }, + { + "type": "palette", + "id": "fbmw_2_2_wood_palette", + "terrain": { ",": "t_dirtfloor", ".": "t_floor", "+": "t_door_c", "v": "t_window_no_curtains", "w": "t_wall_wood" }, + "furniture": { } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_rammed_earth.json b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_rammed_earth.json new file mode 100644 index 0000000000000..065d43d3ecd1e --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_rammed_earth.json @@ -0,0 +1,120 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_1_rammed_earth", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + ".....w", + ".....v", + ".....w", + ".....w", + ".....w", + "vww+vw" + ], + "palettes": [ "fbmw_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_1_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_1_rammed_earth" ], "x": 14, "y": 17 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_2_rammed_earth", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w,,w", + " ,,,,", + "wwwvww", + " ", + " ", + " " + ], + "palettes": [ "fbmw_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_2_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_2_rammed_earth" ], "x": 14, "y": 14 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_pottery_rammed_earth", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "www+wwvw", + "w.......", + "w.......", + "w.......", + "w.......", + "w.......", + "wwwwvwww", + " " + ], + "palettes": [ "fbmw_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_pottery_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_pottery_rammed_earth" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_3_rammed_earth", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwvw+ ", + "w..... ", + "w..... ", + "+..... ", + "w..... ", + "w..... ", + "wwwvww " + ], + "palettes": [ "fbmw_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_3_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_3_rammed_earth" ], "x": 8, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_glassblower_rammed_earth", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwvwvw", + "w....w", + "w....+", + "w....w", + "wwvw+w", + " " + ], + "palettes": [ "fbmw_2_2_rammed_earth_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_glassblower_rammed_earth", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_glassblower_rammed_earth" ], "x": 0, "y": 7 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_rock.json b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_rock.json new file mode 100644 index 0000000000000..48a1e53597bc2 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_rock.json @@ -0,0 +1,120 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_1_rock", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + ".....w", + ".....v", + ".....w", + ".....w", + ".....w", + "vww+vw" + ], + "palettes": [ "fbmw_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_1_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_1_rock" ], "x": 14, "y": 17 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_2_rock", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w,,w", + " ,,,,", + "wwwvww", + " ", + " ", + " " + ], + "palettes": [ "fbmw_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_2_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_2_rock" ], "x": 14, "y": 14 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_pottery_rock", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "www+wwvw", + "w.......", + "w.......", + "w.......", + "w.......", + "w.......", + "wwwwvwww", + " " + ], + "palettes": [ "fbmw_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_pottery_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_pottery_rock" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_3_rock", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwvw+ ", + "w..... ", + "w..... ", + "+..... ", + "w..... ", + "w..... ", + "wwwvww " + ], + "palettes": [ "fbmw_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_3_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_3_rock" ], "x": 8, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_glassblower_rock", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwvwvw", + "w....w", + "w....+", + "w....w", + "wwvw+w", + " " + ], + "palettes": [ "fbmw_2_2_rock_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_glassblower_rock", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_glassblower_rock" ], "x": 0, "y": 7 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_wad.json b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_wad.json new file mode 100644 index 0000000000000..112c8b7823b19 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_wad.json @@ -0,0 +1,120 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_1_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + ".....w", + ".....v", + ".....w", + ".....w", + ".....w", + "vww+vw" + ], + "palettes": [ "fbmw_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_1_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_1_wad" ], "x": 14, "y": 17 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_2_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w,,w", + " ,,,,", + "wwwvww", + " ", + " ", + " " + ], + "palettes": [ "fbmw_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_2_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_2_wad" ], "x": 14, "y": 14 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_pottery_wad", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "www+wwvw", + "w.......", + "w.......", + "w.......", + "w.......", + "w.......", + "wwwwvwww", + " " + ], + "palettes": [ "fbmw_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_pottery_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_pottery_wad" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_3_wad", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwvw+ ", + "w..... ", + "w..... ", + "+..... ", + "w..... ", + "w..... ", + "wwwvww " + ], + "palettes": [ "fbmw_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_3_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_3_wad" ], "x": 8, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_glassblower_wad", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwvwvw", + "w....w", + "w....+", + "w....w", + "wwvw+w", + " " + ], + "palettes": [ "fbmw_2_2_wad_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_glassblower_wad", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_glassblower_wad" ], "x": 0, "y": 7 } ] } + } +] diff --git a/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_wood.json b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_wood.json new file mode 100644 index 0000000000000..9e1bfd4c4e972 --- /dev/null +++ b/data/json/mapgen/basecamps/expansion/modular_workshop/version_2/modular_workshop_wood.json @@ -0,0 +1,120 @@ +[ + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_1_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + ".....w", + ".....v", + ".....w", + ".....w", + ".....w", + "vww+vw" + ], + "palettes": [ "fbmw_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_1_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_1_wood" ], "x": 14, "y": 17 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_2_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + " w,,w", + " ,,,,", + "wwwvww", + " ", + " ", + " " + ], + "palettes": [ "fbmw_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_2_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_2_wood" ], "x": 14, "y": 14 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_pottery_wood", + "object": { + "mapgensize": [ 8, 8 ], + "rows": [ + "www+wwvw", + "w.......", + "w.......", + "w.......", + "w.......", + "w.......", + "wwwwvwww", + " " + ], + "palettes": [ "fbmw_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_pottery_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_pottery_wood" ], "x": 0, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_smithy_3_wood", + "object": { + "mapgensize": [ 7, 7 ], + "rows": [ + "wwwvw+ ", + "w..... ", + "w..... ", + "+..... ", + "w..... ", + "w..... ", + "wwwvww " + ], + "palettes": [ "fbmw_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_smithy_3_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_smithy_3_wood" ], "x": 8, "y": 16 } ] } + }, + { + "type": "mapgen", + "method": "json", + "nested_mapgen_id": "fbmw_2_glassblower_wood", + "object": { + "mapgensize": [ 6, 6 ], + "rows": [ + "wwvwvw", + "w....w", + "w....+", + "w....w", + "wwvw+w", + " " + ], + "palettes": [ "fbmw_2_2_wood_palette" ] + } + }, + { + "type": "mapgen", + "update_mapgen_id": "fbmw_2_glassblower_wood", + "method": "json", + "object": { "place_nested": [ { "chunks": [ "fbmw_2_glassblower_wood" ], "x": 0, "y": 7 } ] } + } +] diff --git a/data/json/mapgen/bugs/ants.json b/data/json/mapgen/bugs/ants.json index 063cdf803c616..d4dcadcfb99d3 100644 --- a/data/json/mapgen/bugs/ants.json +++ b/data/json/mapgen/bugs/ants.json @@ -4,6 +4,7 @@ "method": "json", "om_terrain": "anthill", "object": { + "fallback_predecessor_mapgen": "field", "rows": [ " ", " ", @@ -30,12 +31,7 @@ " ", " " ], - "terrain": { - " ": [ [ "t_region_groundcover_barren", 5 ], [ "t_region_groundcover", 3 ], [ "t_region_shrub", 1 ] ], - "<": "t_slope_down", - "+": "t_dirtmound", - "-": [ "t_dirtmound", "t_region_groundcover_barren" ] - } + "terrain": { "<": "t_slope_down", "+": "t_dirtmound", "-": [ "t_dirtmound", "t_region_groundcover_barren" ] } } }, { diff --git a/data/json/mapgen/exodii/exodii_base.json b/data/json/mapgen/exodii/exodii_base.json index e549bad5a9034..b024880c48098 100644 --- a/data/json/mapgen/exodii/exodii_base.json +++ b/data/json/mapgen/exodii/exodii_base.json @@ -18,7 +18,7 @@ " , ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, , , , ", " ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, , ", " , ,,,,,,......................................,,,,,,,,,,,,,,,,,,,,,,,,,, , , ", - " ,,,,...................................................,,,,,,,,,,,,,,,,,, ", + " ,,,,...................................s...............,,,,,,,,,,,,,,,,,, ", " ,,,....######...##......................##....................,,,,,,,,,,,,,,,, ", " , ,,..################...................####......................,,,,,,,,,,,,,, , ", " ,,..#####################........##################..................,,,,,,,,,,,, ", @@ -96,7 +96,7 @@ " , ,,,,,,,,,,,,....#|||||||||L_||__|MMMMMM||||__|x#######################...........,,,, ", " ,,,,,,,,,,,,..#||__________^]T_|[[[[[[|||___|x#######################...........,,,, , ", " , ,,,,,,,,,,,...m___________^]T_|[[[[[[^]t___|x######################...........,,,, ", - " , ,,,,,,,,,,..|||||^^^^^^^^]T_|[[[[[[^]t__c|x#####################...........,,,, ", + " , ,,,,,,,,,,.s|||||^^^^^^^^]T_|[[[[[[^]t__c|x#####################...........,,,, ", " , , ,,,,,,,,,..#xx|]|]|]|]||__|[[[[[[^]t__c|x##################.............,,,, , ", " , ,,,,,,,,.##x|T#T#T#T____|[[[[[[^]t__c|x##############.................,,,, ", " , ,,......#x|_________cc|[[[[[[^]t_cc|x############..................,,,,, , , ", @@ -110,6 +110,7 @@ " ,,,,,,,,,,,;,,,,,,,,,,,,,,,,,,,,,,,,,,, , , ", " , , ,,, , , , , , " ], + "place_signs": [ { "signage": "Traders Come Well Avaunt", "x": 24, "y": 83 }, { "signage": "Enter Side the Other", "x": 48, "y": 5 } ], "place_zones": [ { "type": "NPC_INVESTIGATE_ONLY", "faction": "exodii", "x": [ 0, 23 ], "y": [ 0, 23 ] }, { "type": "NPC_INVESTIGATE_ONLY", "faction": "exodii", "x": [ 0, 23 ], "y": [ 24, 47 ] }, @@ -161,7 +162,8 @@ "Ĝ": "f_exodii_generator_1", "Ğ": "f_exodii_generator_2", "Ġ": "f_exodii_generator_3", - "Ģ": "f_exodii_generator_4" + "Ģ": "f_exodii_generator_4", + "s": "f_sign" }, "monster": { "T": { "monster": "mon_exodii_turret" }, "t": { "monster": "mon_exodii_turret" } } } @@ -248,7 +250,7 @@ ".............]___||] ;;iiiii;;ii ###S |ϟ///__////____________|__T] ;; !........", "............||____M;;;;;;;;;;;;;iii;;ii ###### w|ϟ_____/_LƤṪṪṪcCUUUR___|||]] ;; !........", "............]_s___||||||| L;;;;;;;ii ####### |ϟ_____//______________| ;; |!........", - "............]_____|@ m;;;;;;|MM|;;;;######## |ϟ______/______________| ;; !.........", + "............]_____|Z m;;;;;;|MM|;;;;######## |ϟ______/______________| ;; !.........", "............|_s___| | ;||__| ``####### |ϟ_____//cccCCCccCcc___| ;; !!.........", "............]_____| ] ;]TT|| ##``###### |ϟ_____/_______________| ;; !..........", "............]_s___| ] ;]]]| ###`# #### |ϟ_____////____________| ;;;||||!..........", @@ -314,7 +316,7 @@ { "id": "exodii", "x": [ 72, 95 ], "y": [ 48, 71 ] }, { "id": "exodii", "x": [ 72, 95 ], "y": [ 72, 95 ] } ], - "nested": { "@": { "chunks": [ "rubik_store_base" ] } }, + "nested": { "Z": { "chunks": [ "rubik_store_base" ] } }, "terrain": { " ": "t_rock_floor_no_roof", ";": "t_metal_floor_no_roof", diff --git a/data/json/mapgen/faction_buildings.json b/data/json/mapgen/faction_buildings.json index f35c830e0c49e..8b15f0fcd0937 100644 --- a/data/json/mapgen/faction_buildings.json +++ b/data/json/mapgen/faction_buildings.json @@ -2404,6 +2404,43 @@ "palettes": [ "acidia_camp_palette" ] } }, + { + "type": "mapgen", + "om_terrain": "faction_base_livestock_2_0", + "method": "json", + "weight": 250, + "object": { + "faction_owner": [ { "id": "your_followers", "x": [ 0, 23 ], "y": [ 0, 23 ] } ], + "fill_ter": "t_grass", + "rows": [ + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,," + ], + "palettes": [ "acidia_camp_palette" ] + } + }, { "type": "mapgen", "om_terrain": "faction_base_storehouse_0", @@ -2441,6 +2478,43 @@ "palettes": [ "acidia_camp_palette" ] } }, + { + "type": "mapgen", + "om_terrain": "faction_base_storehouse_2_0", + "method": "json", + "weight": 250, + "object": { + "faction_owner": [ { "id": "your_followers", "x": [ 0, 23 ], "y": [ 0, 23 ] } ], + "fill_ter": "t_grass", + "rows": [ + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,," + ], + "palettes": [ "acidia_camp_palette" ] + } + }, { "type": "mapgen", "om_terrain": "faction_base_saltworks_0", @@ -2515,6 +2589,43 @@ "palettes": [ "acidia_camp_palette" ] } }, + { + "type": "mapgen", + "om_terrain": "faction_base_workshop_2_0", + "method": "json", + "weight": 250, + "object": { + "faction_owner": [ { "id": "your_followers", "x": [ 0, 23 ], "y": [ 0, 23 ] } ], + "fill_ter": "t_grass", + "rows": [ + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,,", + ",,,,,,,,,,,,,,,,,,,,,,,," + ], + "palettes": [ "acidia_camp_palette" ] + } + }, { "type": "mapgen", "om_terrain": "faction_base_canteen_0", diff --git a/data/json/mapgen/house/house29.json b/data/json/mapgen/house/house29.json index d73ffd9067533..511a42b9cad55 100644 --- a/data/json/mapgen/house/house29.json +++ b/data/json/mapgen/house/house29.json @@ -20,7 +20,7 @@ "...`..#HHH | hIo..`...", "...`..#RRT | #..`...", "...`.%# + ybD#$$;$$$", - "$$$;$%o hfh |||||#..`..$", + "$$$;$$# hfh |||||#..`..$", "$..`.%o hfh |QBB#..`..$", "$..`.%# +---o..`..$", "$..`..#5 Y|t8S#..`..$", diff --git a/data/json/mapgen/lab/lab_floorplans.json b/data/json/mapgen/lab/lab_floorplans.json index e8de8426cae13..c85af876508bc 100644 --- a/data/json/mapgen/lab/lab_floorplans.json +++ b/data/json/mapgen/lab/lab_floorplans.json @@ -124,13 +124,13 @@ "...............+ |", "...............| |", "FFFHFFFFFFFFHFF| |", - "..........F....| |", - "..........F....----?---|", - ".....PPP..F.............", - ".....PPP..F.............", - "..........F....----+---|", + "..........v....| |", + "..........v....----?---|", + ".....PPP..v.............", + ".....PPP..v.............", + "..........v....----+---|", "..........H....| |", - "..........F....| |", + "..........v....| |", "FFFFFHFFFFFFF|-| |", ".............|r| |", "r............+.| |", @@ -141,11 +141,11 @@ "c...c|.rrr...|-|X.ccc.X|" ], "palettes": [ "lab_palette", "lab_loot_research" ], - "furniture": { "f": "f_null", "P": "f_generator_broken" }, + "furniture": { "P": "f_generator_broken" }, "terrain": { "?": [ "t_concrete_wall", "t_concrete_wall", "t_door_glass_frosted_lab_c" ], "F": "t_chainfence_h", - "f": "t_chainfence_v", + "v": "t_chainfence_v", "H": "t_chaingate_c", "C": "t_gates_control_concrete_lab" }, @@ -440,22 +440,22 @@ "....l| |........", "....l| |........", "--+--| |........", - ".....| |..fFFHFF", - ".c.c.? +..f.....", - ".c.c.| |..fXX..X", - ".c.c.| |..fXX..X", - ".....| |..f....r", - "--+--| |..fXX..r", - "RR.RR-----?-----..fXX..r", + ".....| |..vFFHFF", + ".c.c.? +..v.....", + ".c.c.| |..vXX..X", + ".c.c.| |..vXX..X", + ".....| |..v....r", + "--+--| |..vXX..r", + "RR.RR-----?-----..vXX..r", ".....+............H....r", - ".RRR.|............f.....", - ".....|............f.rrrr" + ".RRR.|............v.....", + ".....|............v.rrrr" ], "palettes": [ "lab_palette" ], - "furniture": { "^": "f_indoor_plant", "f": "f_null", "R": "f_rack" }, + "furniture": { "^": "f_indoor_plant", "R": "f_rack" }, "terrain": { "F": "t_chainfence_h", - "f": "t_chainfence_v", + "v": "t_chainfence_v", "H": "t_chaingate_c", "C": "t_gates_control_concrete_lab", "?": [ "t_concrete_wall", "t_concrete_wall", "t_door_glass_frosted_lab_c" ] @@ -718,19 +718,19 @@ "rotation": [ 0, 3 ], "fill_ter": "t_thconc_floor", "rows": [ - ".....|...........f.rrrrr", - ".lll.|...........f......", + ".....|...........v.rrrrr", + ".lll.|...........v......", ".....W...........H.....r", - "llll.|...........fXX...r", - "-----|FFFF|---|..fXX...r", - ".....f....|...|..f.....r", - ".pSp.f.PP.|.&.|..fXX...X", - ".pSp.f.PP.|.x.|..fXX...X", - ".....f.PP.|...|..f......", - ".....H....|-M-|..fFFHFFf", - "FFHFFf........f.........", - ".....f........f.........", - ".....fFFFHFFFFf.........", + "llll.|...........vXX...r", + "-----|FFFF|---|..vXX...r", + ".....v....|...|..v.....r", + ".pSp.v.PP.|.&.|..vXX...X", + ".pSp.v.PP.|.x.|..vXX...X", + ".....v.PP.|...|..v......", + ".....H....|-M-|..vFFHFFv", + "FFHFFv........v.........", + ".....v........v.........", + ".....vFFFHFFFFv.........", ".......................x", "x................|-g-g--", "-------|.........|^.....", @@ -744,10 +744,10 @@ ".......|.........|......" ], "palettes": [ "lab_palette" ], - "furniture": { "S": "f_null", "^": "f_indoor_plant", "P": "f_generator_broken", "f": "f_null" }, + "furniture": { "S": "f_null", "^": "f_indoor_plant", "P": "f_generator_broken" }, "terrain": { "F": "t_chainfence_h", - "f": "t_chainfence_v", + "v": "t_chainfence_v", "H": "t_chaingate_c", "&": "t_radio_tower", "S": "t_sewage_pump", diff --git a/data/json/mapgen/missile_silo.json b/data/json/mapgen/missile_silo.json index 4512d7e9b02de..5102ea4655676 100644 --- a/data/json/mapgen/missile_silo.json +++ b/data/json/mapgen/missile_silo.json @@ -476,7 +476,7 @@ " ~~~~~~~~~~~~~|. ", " ~~~~~~~~~~~ . < ^ ", " ~~~~~~~~~ .+....$ ", - " Y > $ ", + " Y $ ", " " ], "terrain": { @@ -489,7 +489,6 @@ "c": "t_rock_floor", "?": "t_door_metal_c_peep", "+": "t_door_metal_locked", - ">": "t_stairs_down", "<": "t_stairs_up", "Y": "t_card_military", "^": "t_elevator_control_off", diff --git a/data/json/mapgen/refugee_center/refugee_center.json b/data/json/mapgen/refugee_center/refugee_center.json index def608f74ea09..e1fb717093ace 100644 --- a/data/json/mapgen/refugee_center/refugee_center.json +++ b/data/json/mapgen/refugee_center/refugee_center.json @@ -146,6 +146,7 @@ { "class": "refugee_GarryVilleneuve", "x": 45, "y": 13 }, { "class": "guard", "x": 43, "y": 21 }, { "class": "evac_broker", "x": 50, "y": 20 }, + { "class": "evac_teamster", "x": 54, "y": 4 }, { "class": "guard", "x": 54, "y": 20 }, { "class": "guard", "x": 63, "y": 15 } ], diff --git a/data/json/mapgen_palettes/helipad.json b/data/json/mapgen_palettes/helipad.json index 1ef56488c24ce..e3a5b6c52d33a 100644 --- a/data/json/mapgen_palettes/helipad.json +++ b/data/json/mapgen_palettes/helipad.json @@ -9,7 +9,7 @@ "w": "t_window", "G": "t_chaingate_c", "|": "t_concrete_wall", - "F": "t_chainfence", + "F": "t_fence_barbed", "!": "t_guardrail", "p": "t_pavement", "m": "t_door_metal_c", diff --git a/data/json/martialarts.json b/data/json/martialarts.json index 572cf870ed3c0..e605cebb6c8f9 100644 --- a/data/json/martialarts.json +++ b/data/json/martialarts.json @@ -23,7 +23,7 @@ "type": "martial_art", "id": "style_aikido", "name": { "str": "Aikido" }, - "description": "Aikido is a Japanese martial art focused on self-defense, while minimizing injury to the attacker. It uses defensive throws and disarms but lacks offensive techniques.", + "description": "Aikido is a Japanese martial art focused on self-defense, while minimizing injury to the attacker. It uses defensive throws and disarms but its techniques lack offensive power.", "initiate": [ "You enter the hamni stance.", "%s changes into a relaxed combat posture." ], "learn_difficulty": 5, "arm_block": 0, @@ -31,34 +31,64 @@ { "id": "buff_aikido_static1", "name": "Aikido Stance", - "description": "By disregarding offensive in favor of self-defense, you are better at protecting.\n\nBlocked damage reduced by 100% of Dexterity.", + "description": "By disregarding offensive in favor of self-defense, you are better at protecting.\n\nBlocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n+1.0 Dodging skill.", "unarmed_allowed": true, "unarmed_weapons_allowed": false, "melee_allowed": true, - "flat_bonuses": [ { "stat": "block", "scaling-stat": "dex", "scale": 1.0 } ] + "flat_bonuses": [ + { "stat": "block", "scaling-stat": "dex", "scale": 1.0 }, + { "stat": "block_effectiveness", "scale": 2.0 }, + { "stat": "dodge", "scale": 1.0 } + ] }, { "id": "buff_aikido_static2", "name": "Intermediate Aikido", - "description": "An intermediate aikido practitioner can protect themselves against multiple opponents.\n\nBlocked Damage reduced by 100% of Dexterity.\n+1 Block attempts, +1 Dodge attempts.", + "description": "An intermediate aikido practitioner can protect themselves against multiple opponents.\n\nBlocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n+1 Block attempts, +1 Dodge attempts.", "unarmed_allowed": true, "unarmed_weapons_allowed": false, "melee_allowed": true, "skill_requirements": [ { "name": "unarmed", "level": 3 } ], "bonus_dodges": 1, "bonus_blocks": 1, - "flat_bonuses": [ { "stat": "block", "scaling-stat": "dex", "scale": 1.0 } ] + "flat_bonuses": [ { "stat": "block", "scaling-stat": "dex", "scale": 1.0 }, { "stat": "block_effectiveness", "scale": 1.0 } ] }, { "id": "buff_aikido_static3", "name": "Advanced Aikido", - "description": "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n\n+1 Block attempts, +1 Dodge attempts.", + "description": "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n\n+1 Blocking Effectiveness.\n+1 Block attempts, +1 Dodge attempts.", "unarmed_allowed": true, "unarmed_weapons_allowed": false, "melee_allowed": true, "skill_requirements": [ { "name": "unarmed", "level": 5 } ], "bonus_dodges": 1, - "bonus_blocks": 1 + "bonus_blocks": 1, + "flat_bonuses": [ { "stat": "block_effectiveness", "scale": 1.0 } ] + } + ], + "onblock_buffs": [ + { + "id": "buff_aikido_onblock", + "name": "Fluid Blocking", + "description": "After a smooth block, you prepare to counter your foe.\n\n-10% move cost.\nLasts for 1 turn.", + "skill_requirements": [ { "name": "unarmed", "level": 1 } ], + "unarmed_allowed": true, + "unarmed_weapons_allowed": false, + "melee_allowed": true, + "buff_duration": 1, + "mult_bonuses": [ { "stat": "movecost", "scale": 0.9 } ] + } + ], + "ondodge_buffs": [ + { + "id": "buff_aikido_ondodge", + "name": "Fluid Dodging", + "description": "After a smooth dodge, you prepare to counter your foe.\n\n-10% move cost.\nLasts for 1 turn.", + "unarmed_allowed": true, + "unarmed_weapons_allowed": false, + "melee_allowed": true, + "buff_duration": 1, + "mult_bonuses": [ { "stat": "movecost", "scale": 0.9 } ] } ], "techniques": [ @@ -84,7 +114,7 @@ "name": "Boxing Stance", "description": "A solid stance allows you block more damage than normal and deliver better punches.\n\n+2 Bash damage, Blocked damge reduced by 50% of Strength.", "unarmed_allowed": true, - "flat_bonuses": [ { "stat": "block", "scaling-stat": "str", "scale": 0.5 }, { "stat": "damage", "type": "bash", "scale": 2.0 } ] + "flat_bonuses": [ { "stat": "hit", "scale": 1.0 }, { "stat": "block", "scaling-stat": "str", "scale": 0.5 } ] } ], "onmove_buffs": [ @@ -127,7 +157,7 @@ "description": "Combat experience has led to you being able to block multiple attacks at a time.\n\n+1 Block attempts.", "unarmed_allowed": true, "melee_allowed": true, - "skill_requirements": [ { "name": "melee", "level": 7 } ], + "skill_requirements": [ { "name": "melee", "level": 5 } ], "bonus_blocks": 1 } ], @@ -135,12 +165,10 @@ "techniques": [ "tec_brawl_disarm_unarmed", "tec_brawl_feint_unarmed", - "tec_brawl_counter_unarmed", "tec_brawl_break_unarmed", "tec_brawl_power", "tec_brawl_trip", "tec_brawl_disarm_melee", - "tec_brawl_counter_melee", "tec_brawl_feint_melee", "tec_brawl_break_melee" ] @@ -162,16 +190,16 @@ "flat_bonuses": [ { "stat": "dodge", "scale": 1.0 } ] } ], - "onmiss_buffs": [ + "onattack_buffs": [ { "id": "buff_capoeira_onmiss", "name": "Capoeira Tempo", - "description": "You didn't miss, it's just part of the dance and the best part is about to start!\n\n+15% Bash damage.\nLasts 2 turns. Stacks 3 times.", + "description": "Hit or miss, its just part of the dance! And the best part is about to start!\n\n+15% Bash damage.\nLasts 2 turns. Stacks 3 times.", "unarmed_allowed": true, "skill_requirements": [ { "name": "unarmed", "level": 1 } ], - "buff_duration": 2, + "buff_duration": 1, "max_stacks": 3, - "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.15 } ] + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.05 } ] } ], "onmove_buffs": [ @@ -197,13 +225,13 @@ "type": "martial_art", "id": "style_crane", "name": { "str": "Crane Kung Fu" }, - "description": "One of the five Shaolin animal styles. The Crane uses intricate hand techniques and jumping dodges. Dexterity determines your damage, rather than Strength; you also receive a dodge bonus move or dodge an attack.", + "description": "One of the five Shaolin animal styles. The Crane uses intricate hand techniques and jumping dodges. Dexterity determines your damage, rather than Strength; you have a higher chance to dodge and dodging unlocks strong techniques for a limited time.", "initiate": [ "You raise your leg slightly and balance like a crane.", "%s assumes a crane-like stance." ], "learn_difficulty": 10, "arm_block": 3, "static_buffs": [ { - "id": "buff_crane_static", + "id": "buff_crane_static1", "name": "Crane's Precision", "description": "Your attacks strike at your opponents weakness with speed and precision instead of brute force.\nDexterity increases melee damage instead of Strength.\n\nBash damage increased by 75% of Dexterity but decreased by 75% of Strength.", "unarmed_allowed": true, @@ -211,38 +239,41 @@ { "stat": "damage", "type": "bash", "scaling-stat": "dex", "scale": 0.75 }, { "stat": "damage", "type": "bash", "scaling-stat": "str", "scale": -0.75 } ] - } - ], - "onmove_buffs": [ + }, { - "id": "buff_crane_onmove", - "name": "Crane's Flight", - "description": "Just like a bird, you take to the air to avoid danger.\n\n+1.0 Dodge skill.\nLasts 2 turns.", + "id": "buff_crane_static2", + "name": "Crane's Stance", + "description": "Like the beautiful crane, you are very skilled at evading danger.\n\n+2.0 Dodging skill.", "unarmed_allowed": true, - "skill_requirements": [ { "name": "unarmed", "level": 2 } ], - "buff_duration": 2, - "flat_bonuses": [ { "stat": "dodge", "scale": 1.0 } ] + "flat_bonuses": [ { "stat": "dodge", "scale": 2.0 } ] + }, + { + "id": "buff_crane_static3", + "name": "Crane's Grace", + "description": "Masters of the Crane style can evade multiple foes with ease.\n\n+2 Dodge attempts.", + "unarmed_allowed": true, + "skill_requirements": [ { "name": "unarmed", "level": 5 } ], + "bonus_dodges": 2 } ], "ondodge_buffs": [ { "id": "buff_crane_ondodge", - "name": "Crane's Grace", - "description": "Much like the crane, you a quick to avoid danger.\n\n+1 Dodge attempts, +1.0 Dodge skill.\nLasts 2 turns.", + "name": "Crane's Flight", + "description": "Much like the crane, you a quick to avoid danger and strike back.\n\n+1 Accuracy, +1.0 Dodging skill.\nEnables \"Crane Kick\" and \"Crane Strike\" techniques.\nLasts 3 turns.", "unarmed_allowed": true, - "skill_requirements": [ { "name": "unarmed", "level": 2 } ], - "buff_duration": 2, - "bonus_dodges": 1, - "flat_bonuses": [ { "stat": "dodge", "scale": 1.0 } ] + "skill_requirements": [ { "name": "unarmed", "level": 1 } ], + "buff_duration": 3, + "flat_bonuses": [ { "stat": "hit", "scale": 1.0 }, { "stat": "dodge", "scale": 1.0 } ] } ], - "techniques": [ "tec_crane_feint", "tec_crane_break", "tec_crane_counter", "tec_crane_precise" ] + "techniques": [ "tec_crane_feint", "tec_crane_break", "tec_crane_strike", "tec_crane_precise" ] }, { "type": "martial_art", "id": "style_dragon", "name": { "str": "Dragon Kung Fu" }, - "description": "One of the five Shaolin animal styles. The Dragon uses fluid movements and hard strikes. Intelligence improves your accuracy instead of Dexterity. Your attacks lead to counterattacks which disable your opponents and set them up for a powerful finishing move.", + "description": "One of the five Shaolin animal styles. The Dragon uses fluid movements and hard strikes. Intelligence improves your accuracy and damaage instead of Dexterity and Strength. Dodging and blocking increases your damage. Pausing increases your defenses. You can perform a powerful strike against a downed opponent.", "initiate": [ "You relax and patiently await conflict like the great dragon.", "%s assumes a dragon-like stance." ], "learn_difficulty": 10, "arm_block": 2, @@ -250,23 +281,54 @@ { "id": "buff_dragon_static", "name": "Dragon's Knowledge", - "description": "You plan your attack far in advance relying on your intuition instead of your speed to strike true.\nIntelligence increases Accuracy instead of Dexterity.\n\nAccuracy increased by 25% of Intelligence but decreased by 25% of Dexterity.", + "description": "You plan your attack far in advance relying on your intuition instead of your speed to strike true.\nIntelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n\nAccuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength.", "unarmed_allowed": true, - "flat_bonuses": [ { "stat": "hit", "scaling-stat": "int", "scale": 0.25 }, { "stat": "hit", "scaling-stat": "dex", "scale": -0.25 } ] + "flat_bonuses": [ + { "stat": "hit", "scaling-stat": "int", "scale": 0.25 }, + { "stat": "hit", "scaling-stat": "dex", "scale": -0.25 }, + { "stat": "damage", "type": "bash", "scaling-stat": "int", "scale": 0.75 }, + { "stat": "damage", "type": "bash", "scaling-stat": "str", "scale": -0.75 } + ] } ], - "onhit_buffs": [ + "onblock_buffs": [ + { + "id": "buff_dragon_onblock", + "name": "Dragon's Vortex", + "description": "Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n\n+10% bash damage.\nLasts 3 turns.", + "unarmed_allowed": true, + "skill_requirements": [ { "name": "unarmed", "level": 2 } ], + "buff_duration": 3, + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.1 } ] + } + ], + "ondodge_buffs": [ { - "id": "buff_dragon_onhit", - "name": "Dragon's Flight", - "description": "Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n\n+1 Accuracy, +2 bash Damage.\nEnables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\nLasts 1 turn.", + "id": "buff_dragon_ondodge", + "name": "Dragon Wing", + "description": "Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n\n+10% bash damage.\nLasts 3 turns.", "unarmed_allowed": true, "skill_requirements": [ { "name": "unarmed", "level": 1 } ], - "buff_duration": 1, - "flat_bonuses": [ { "stat": "hit", "scale": 1.0 }, { "stat": "damage", "type": "bash", "scale": 2.0 } ] + "buff_duration": 3, + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.1 } ] } ], - "techniques": [ "tec_dragon_claw", "tec_dragon_blockcounter", "tec_dragon_dodgecounter", "tec_dragon_tail", "tec_dragon_strike" ] + "onpause_buffs": [ + { + "id": "buff_dragon_onpause", + "name": "Dragon Power", + "description": "You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n\n+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\nLasts 2 turns.", + "unarmed_allowed": true, + "skill_requirements": [ { "name": "unarmed", "level": 3 } ], + "buff_duration": 2, + "flat_bonuses": [ + { "stat": "block_effectiveness", "scale": 2.0 }, + { "stat": "block", "scaling-stat": "int", "scale": 1.0 }, + { "stat": "dodge", "scale": 1.0 } + ] + } + ], + "techniques": [ "tec_dragon_claw", "tec_dragon_tail", "tec_dragon_strike" ] }, { "type": "martial_art", @@ -306,7 +368,7 @@ "tec_eskrima_round", "tec_eskrima_fan", "tec_eskrima_snap", - "tec_eskrima_puno", + "tec_eskrima_stun", "tec_eskrima_low", "tec_eskrima_combination" ], @@ -352,7 +414,18 @@ "flat_bonuses": [ { "stat": "hit", "scale": 1.0 } ] } ], - "techniques": [ "tec_fencing_feint", "tec_fencing_lunge", "tec_fencing_riposte", "tec_fencing_compound" ], + "onpause_buffs": [ + { + "id": "buff_fencing_onpause", + "name": "Counter Time", + "description": "You fake an attack and prepare yourself to unleash a Compound Attack.\n\n+2 Block Effectiveness.\nEnables \"Compound Attack\" technique.\nLasts 2 turns.", + "melee_allowed": true, + "skill_requirements": [ { "name": "melee", "level": 4 } ], + "buff_duration": 2, + "flat_bonuses": [ { "stat": "block_effectiveness", "scale": 2.0 } ] + } + ], + "techniques": [ "tec_fencing_feint", "tec_fencing_lunge", "tec_fencing_riposte", "tec_fencing_compound1", "tec_fencing_compound2" ], "weapons": [ "baton-extended", "bio_blade_weapon", @@ -401,21 +474,29 @@ { "id": "buff_medievalpole_static", "name": "Stand Your Ground", - "description": "You are stalwart and will not budge against any threat.\n\n+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength.", + "description": "You are stalwart and will not budge against any threat.\n\n+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength.", "melee_allowed": true, - "bonus_blocks": 2, - "flat_bonuses": [ { "stat": "block", "scaling-stat": "str", "scale": 0.5 }, { "stat": "dodge", "scale": -1.0 } ] + "bonus_blocks": 1, + "flat_bonuses": [ + { "stat": "block_effectiveness", "scale": 2.0 }, + { "stat": "block", "scaling-stat": "str", "scale": 0.5 }, + { "stat": "dodge", "scale": -1.0 } + ] } ], "onmove_buffs": [ { "id": "buff_medievalpole_onmove", "name": "Tactical Retreat", - "description": "You moved and nullified the effects of Stand Your Ground!\n\n-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\nLasts 1 turn.", + "description": "You moved and nullified the effects of Stand Your Ground!\n\n-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\nPrevents \"High Round Strike and Hook\" technique.\nLasts 2 turns.", "melee_allowed": true, - "buff_duration": 1, - "bonus_blocks": -2, - "flat_bonuses": [ { "stat": "block", "scaling-stat": "str", "scale": -0.5 }, { "stat": "dodge", "scale": 1.0 } ] + "buff_duration": 2, + "bonus_blocks": -1, + "flat_bonuses": [ + { "stat": "block_effectiveness", "scale": -2.0 }, + { "stat": "block", "scaling-stat": "str", "scale": -0.5 }, + { "stat": "dodge", "scale": 1.0 } + ] } ], "onmiss_buffs": [ @@ -432,7 +513,7 @@ { "id": "buff_medievalpole_onblock", "name": "Defense Break", - "description": "Each successful block reveals an opening in your opponent's guard.\n\n+1 Accuracy.\nLasts 1 turn. Stacks 3 times.", + "description": "Each successful block reveals an opening in your opponent's guard.\n\n+1 Accuracy.\nEnables \"Displace and Hook\" technique.\nLasts 1 turn. Stacks 3 times.", "melee_allowed": true, "skill_requirements": [ { "name": "melee", "level": 1 } ], "buff_duration": 1, @@ -491,14 +572,25 @@ "throw_immune": true } ], - "techniques": [ "tec_judo_backthrow", "tec_judo_counter", "tec_judo_disarm", "tec_judo_break", "tec_judo_throw" ], + "ondodge_buffs": [ + { + "id": "buff_judo_ondodge", + "name": "Perfect Position", + "description": "You've moved into a perfect position to counter attack!.\n\n+30% Bash damage.", + "skill_requirements": [ { "name": "unarmed", "level": 4 } ], + "unarmed_allowed": true, + "buff_duration": 1, + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.3 } ] + } + ], + "techniques": [ "tec_judo_backthrow", "tec_judo_disarm", "tec_judo_break", "tec_judo_throw" ], "weapons": [ "bagh_nakha", "bio_claws_weapon", "cestus", "knuckle_brass", "knuckle_nail", "knuckle_steel", "knuckle_steel_forged" ] }, { "type": "martial_art", "id": "style_karate", "name": { "str": "Karate" }, - "description": "Karate is a popular martial art, originating from Japan. It focuses on rapid, precise attacks, blocks, and fluid movement. A successful hit allows you an extra dodge and two extra blocks on the following round.", + "description": "Karate is a popular martial art, originating from Japan. It focuses on rapid, precise attacks, blocks, and fluid movement. A successful hit allows you an extra dodge and an extra block on the following round.", "initiate": [ "You adopt a classic karate stance.", "%s adopts a classic karate stance." ], "learn_difficulty": 5, "arm_block": 2, @@ -508,23 +600,27 @@ "name": "Karate Stance", "description": "Your no nonsense stance allows you hit more accurately.\n\n+2 Accuracy.", "unarmed_allowed": true, + "melee_allowed": true, "flat_bonuses": [ { "stat": "hit", "scale": 2.0 } ] } ], "onhit_buffs": [ { "id": "buff_karate_onhit", - "name": "Karate Strike", - "description": "Landing a hit allows you to perfectly position yourself for maximum defense against multiple opponents.\n\n+2 Block attempts, +1 Dodges attempts, blocked damge reduced by 50% of Strength.\nLasts 2 turns.", + "name": "Karate Kata", + "description": "Landing a hit allows you to perfectly position yourself for maximum defense against multiple opponents.\n\n+1 Block attempts, +1 Dodges attempts, blocked damge reduced by 50% of Strength, -10% move cost.\nLasts 2 turns.", "skill_requirements": [ { "name": "unarmed", "level": 3 } ], "unarmed_allowed": true, + "melee_allowed": true, "buff_duration": 2, - "bonus_blocks": 2, + "bonus_blocks": 1, "bonus_dodges": 1, - "flat_bonuses": [ { "stat": "block", "scaling-stat": "str", "scale": 0.5 } ] + "flat_bonuses": [ { "stat": "block", "scaling-stat": "str", "scale": 0.5 } ], + "mult_bonuses": [ { "stat": "movecost", "scale": 0.9 } ] } ], - "techniques": [ "tec_karate_rapid", "tec_karate_precise", "tec_karate_roundhouse", "tec_karate_counter" ] + "techniques": [ "tec_karate_rapid", "tec_karate_precise", "tec_karate_roundhouse", "tec_karate_staff", "tec_karate_staff_crit" ], + "weapon_category": [ "QUARTERSTAVES" ] }, { "type": "martial_art", @@ -537,7 +633,7 @@ "leg_block": 4, "static_buffs": [ { - "id": "buff_krav_maga_static1", + "id": "buff_krav_maga_static", "name": "Krav Maga Stance", "description": "Your training makes it easier to land hits and fight multiple opponents.\n\n+1 Accuracy, +1 Block attempts.", "melee_allowed": true, @@ -546,21 +642,26 @@ "flat_bonuses": [ { "stat": "hit", "scale": 1.0 } ] } ], - "techniques": [ - "tec_krav_maga_rapid", - "tec_krav_maga_crit", - "tec_krav_maga_takedown", - "tec_krav_maga_disarm", - "tec_krav_maga_break", - "tec_krav_maga_counter" + "onblock_buffs": [ + { + "id": "buff_krav_maga_onblock", + "name": "Strike Vitals", + "description": "Like a foe, your opponent has left themselves wide.\n\n+5% critical hit chance.\nLasts 1 turn.", + "melee_allowed": true, + "unarmed_allowed": true, + "skill_requirements": [ { "name": "unarmed", "level": 4 } ], + "buff_duration": 1, + "flat_bonuses": [ { "stat": "crit_chance", "scale": 5.0 } ] + } ], + "techniques": [ "tec_krav_maga_rapid", "tec_krav_maga_crit", "tec_krav_maga_takedown", "tec_krav_maga_disarm", "tec_krav_maga_break" ], "weapon_category": [ "AUTOMATIC_RIFLES", "AUTOMATIC_PISTOLS", "KNIVES", "BATONS" ] }, { "type": "martial_art", "id": "style_leopard", "name": { "str": "Leopard Kung Fu" }, - "description": "One of the five Shaolin animal styles. The Leopard focuses on rapid, strategically planned strikes. Dexterity determines your damage, rather than Strength. Moving increases dodge skill and accuracy further; attacking after moving increases damage.", + "description": "One of the five Shaolin animal styles. The Leopard focuses on rapid, strategically planned strikes. Dexterity determines your damage, rather than Strength and also increases your critical hit chance.", "initiate": [ "You prepare to pounce like a leopard.", "%s assumes a leopard-like stance." ], "learn_difficulty": 10, "static_buffs": [ @@ -576,39 +677,24 @@ }, { "id": "buff_leopard_static2", - "name": "Leopard's Agility", - "description": "Just like a cat, you are quick, agile, and hard to pin down.\n\n+1.0 Dodge skill.", - "skill_requirements": [ { "name": "unarmed", "level": 1 } ], + "name": "Leopard's Ambush", + "description": "Go for the throat and take out your foes immediately!\n\nCritical Hit Chance increased by 100% of Dexterity.", "unarmed_allowed": true, - "flat_bonuses": [ { "stat": "dodge", "scale": 1.0 } ] + "flat_bonuses": [ { "stat": "crit_chance", "scaling-stat": "dex", "scale": 1.0 } ] } ], - "onmove_buffs": [ + "oncrit_buffs": [ { - "id": "buff_leopard_onmove1", - "name": "Leopard's Stalk", - "description": "You proudly stalk the shadows and preparing to pounce with unrelenting fury.\n\n+2 Accuracy.\nEnables \"Leopard's Pounce\" buff.\nLasts 1 turn.", - "skill_requirements": [ { "name": "unarmed", "level": 1 } ], + "id": "buff_leopard_oncrit", + "name": "Leopard's Agility", + "description": "Just like a cat, you are quick, agile, and hard to pin down.\n\n+1.0 Dodging skill.\nLasts 2 turns.", "unarmed_allowed": true, - "buff_duration": 1, - "flat_bonuses": [ { "stat": "hit", "scale": 2.0 } ] - }, - { - "id": "buff_leopard_onmove2", - "name": "Leopard's Pounce", - "description": "You are ready. Attack and claim your prey!\n\n+25% bonus to all damage.\nLasts 1 turn.", "skill_requirements": [ { "name": "unarmed", "level": 3 } ], - "unarmed_allowed": true, - "required_buffs_all": [ "buff_leopard_onmove1" ], - "buff_duration": 1, - "mult_bonuses": [ - { "stat": "damage", "type": "bash", "scale": 1.25 }, - { "stat": "damage", "type": "cut", "scale": 1.25 }, - { "stat": "damage", "type": "stab", "scale": 1.25 } - ] + "buff_duration": 2, + "flat_bonuses": [ { "stat": "dodge", "scale": 1.0 } ] } ], - "techniques": [ "tec_leopard_rapid", "tec_leopard_feint", "tec_leopard_counter", "tec_leopard_precise" ] + "techniques": [ "tec_leopard_rapid", "tec_leopard_feint", "tec_leopard_claw", "tec_leopard_precise", "tec_leopard_pounce" ] }, { "type": "martial_art", @@ -629,6 +715,22 @@ "flat_bonuses": [ { "stat": "block", "scaling-stat": "str", "scale": 0.5 } ] } ], + "onblock_buffs": [ + { + "id": "buff_swordsmanship_onblock", + "name": "Mastercut", + "description": "You parry and return the attack with greater vigor!\n\n+10% damage, -10 move cost\nLasts 1 turn.", + "melee_allowed": true, + "skill_requirements": [ { "name": "melee", "level": 5 } ], + "buff_duration": 1, + "mult_bonuses": [ + { "stat": "movecost", "scale": 0.9 }, + { "stat": "damage", "type": "bash", "scale": 1.1 }, + { "stat": "damage", "type": "cut", "scale": 1.1 }, + { "stat": "damage", "type": "stab", "scale": 1.1 } + ] + } + ], "onhit_buffs": [ { "id": "buff_swordsmanship_onhit", @@ -651,7 +753,7 @@ "flat_bonuses": [ { "stat": "block", "scaling-stat": "str", "scale": 0.5 }, { "stat": "hit", "scale": -1.0 } ] } ], - "techniques": [ "tec_swordsmanship_mastercut", "tec_swordsmanship_feint", "tec_swordsmanship_lethal", "tec_swordsmanship_ringen" ], + "techniques": [ "tec_swordsmanship_feint", "tec_swordsmanship_lethal", "tec_swordsmanship_ringen" ], "weapons": [ "arming_sword", "arming_sword_inferior", @@ -830,11 +932,8 @@ "buff_duration": 1, "max_stacks": 5, "persists": true, - "flat_bonuses": [ - { "stat": "dodge", "scale": -1.0 }, - { "stat": "damage", "type": "cut", "scale": -1.0 }, - { "stat": "damage", "type": "bash", "scale": -1.0 } - ] + "flat_bonuses": [ { "stat": "dodge", "scale": -1.0 } ], + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 0.95 }, { "stat": "damage", "type": "cut", "scale": 0.95 } ] } ], "ondodge_buffs": [ @@ -952,12 +1051,12 @@ "onmove_buffs": [ { "id": "buff_silat_onmove", - "name": "Silat Evasion", - "description": "You stay low as you move, making it harder for enemies to pin you down.\n\n+1 Dodge attempts.\nLasts 2 turn.", + "name": "Silat Ambush", + "description": "You stay low as you move, making it harder for enemies to defend against you.\n\n+5% critical hit chance.\nLasts 1 turn.", "skill_requirements": [ { "name": "melee", "level": 1 } ], "melee_allowed": true, - "buff_duration": 2, - "bonus_dodges": 1 + "buff_duration": 1, + "flat_bonuses": [ { "stat": "crit_chance", "scale": 5.0 } ] } ], "techniques": [ "tec_silat_hamstring", "tec_silat_precise", "tec_silat_brutal", "tec_silat_dirty" ], @@ -1086,9 +1185,10 @@ { "id": "buff_sojutsu_static", "name": "Sōjutsu Stance", - "description": "Your training grants better defense while using a polearm.\n\n+1 Block attempt.", + "description": "Your training grants better defense while using a polearm.\n\n+1 Block attempt, +2 Block Effectiveness.", "melee_allowed": true, - "bonus_blocks": 1 + "bonus_blocks": 1, + "flat_bonuses": [ { "stat": "block_effectiveness", "scale": 2.0 } ] } ], "onmove_buffs": [ @@ -1106,7 +1206,7 @@ ] } ], - "techniques": [ "tec_sojutsu_push", "tec_sojutsu_shove", "tec_sojutsu_trip" ], + "techniques": [ "tec_sojutsu_feint", "tec_sojutsu_shove", "tec_sojutsu_trip" ], "weapons": [ "glaive", "halberd", @@ -1190,9 +1290,9 @@ "flat_bonuses": [ { "stat": "block", "scaling-stat": "per", "scale": 1.0 } ] } ], - "ondodge_buffs": [ + "onblock_buffs": [ { - "id": "buff_tai_chi_ondodge", + "id": "buff_tai_chi_onblock", "name": "Repulse the Monkey", "description": "By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n\nAccuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\nLasts 2 turns.", "unarmed_allowed": true, @@ -1208,11 +1308,11 @@ { "id": "buff_tai_chi_onpause", "name": "Cross Hands", - "description": "By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n\n+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\nEnables \"Palm Strike\" and \"Double Palm Strike\" techniques.\nLasts 3 turns.", + "description": "By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n\n+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\nEnables \"Palm Strike\" and \"Double Palm Strike\" techniques.\nLasts 3 turns.", "unarmed_allowed": true, "skill_requirements": [ { "name": "unarmed", "level": 1 } ], "buff_duration": 3, - "flat_bonuses": [ { "stat": "block", "scaling-stat": "per", "scale": 0.5 }, { "stat": "dodge", "scale": 1.0 } ] + "flat_bonuses": [ { "stat": "block_effectiveness", "scale": 2.0 }, { "stat": "block", "scaling-stat": "per", "scale": 0.5 } ] } ], "techniques": [ "tec_taichi_disarm", "tec_taichi_palm", "tec_taichi_counter", "tec_taichi_precise" ] @@ -1283,9 +1383,9 @@ { "id": "buff_wingchun_static", "name": "Chi-Sao Sensitivity", - "description": "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n\n Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception.", + "description": "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n\n Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception.", "unarmed_allowed": true, - "flat_bonuses": [ { "stat": "block", "scaling-stat": "per", "scale": 0.5 }, { "stat": "dodge", "scaling-stat": "per", "scale": 0.15 } ] + "flat_bonuses": [ { "stat": "block", "scaling-stat": "per", "scale": 0.5 }, { "stat": "dodge", "scaling-stat": "per", "scale": 0.25 } ] } ], "onhit_buffs": [ @@ -1295,7 +1395,7 @@ "description": "Your punches are properly timed to give your opponent no rest from your strikes.\n\n-10% move cost.\nLasts 1 turn. Stacks 3 times.", "skill_requirements": [ { "name": "unarmed", "level": 1 } ], "unarmed_allowed": true, - "buff_duration": 1, + "buff_duration": 2, "max_stacks": 3, "mult_bonuses": [ { "stat": "movecost", "scale": 0.9 } ] } @@ -1307,7 +1407,7 @@ "description": "Through the perfect application of the Thrusting Fingers form, you can strike your opponents' weak points, force them away, and follow!\n\nAccuracy increased by 20% of Perception, Enables \"Straight Punch (Knockback)\" and \"L-Hook (Knockback)\" techniques.\nLasts 2 turns.", "skill_requirements": [ { "name": "unarmed", "level": 4 } ], "unarmed_allowed": true, - "buff_duration": 2, + "buff_duration": 3, "flat_bonuses": [ { "stat": "hit", "scaling-stat": "per", "scale": 0.2 } ] } ], @@ -1316,8 +1416,7 @@ "tec_wingchun_hook", "tec_wingchun_punch_knockback", "tec_wingchun_hook_knockback", - "tec_wingchun_feint", - "tec_wingchun_counter" + "tec_wingchun_feint" ] }, { @@ -1411,7 +1510,7 @@ { "id": "debug_miss_buff", "name": "Getting Angry", - "description": "When I get my hands on you… +2 bash damage for 2 turns. Stacks 5 times.", + "description": "When I get my hands on you… +2 bash damage for 2 turns. Stacks 5 times.", "unarmed_allowed": true, "buff_duration": 2, "max_stacks": 5, diff --git a/data/json/martialarts_fictional.json b/data/json/martialarts_fictional.json index 9e92bd3e0ef7e..f75162e6c31a3 100644 --- a/data/json/martialarts_fictional.json +++ b/data/json/martialarts_fictional.json @@ -21,6 +21,23 @@ "flat_bonuses": [ { "stat": "hit", "scale": 1.0 } ] } ], + "onblock_buffs": [ + { + "id": "buff_biojutsu_onblock", + "name": "Binary Hardening", + "description": "player@CDDA:/root$ sudo apt install improved-armor\nplayer@CDDA:/root$ sudo apt update\n\n+3 Bash, Cut, and Stab Armor.\nLasts 3 turns. Stacks 3 times.", + "unarmed_allowed": true, + "melee_allowed": true, + "skill_requirements": [ { "name": "melee", "level": 4 } ], + "buff_duration": 4, + "max_stacks": 3, + "flat_bonuses": [ + { "stat": "armor", "type": "bash", "scale": 3.0 }, + { "stat": "armor", "type": "cut", "scale": 3.0 }, + { "stat": "armor", "type": "stab", "scale": 3.0 } + ] + } + ], "onkill_buffs": [ { "id": "buff_biojutsu_onkill", @@ -31,16 +48,16 @@ "skill_requirements": [ { "name": "melee", "level": 4 } ], "buff_duration": 3, "max_stacks": 3, - "flat_bonuses": [ - { "stat": "damage", "type": "bash", "scale": 2.0 }, - { "stat": "damage", "type": "cut", "scale": 2.0 }, - { "stat": "damage", "type": "stab", "scale": 2.0 }, - { "stat": "hit", "scale": 1.0 } + "persists": true, + "flat_bonuses": [ { "stat": "hit", "scale": 1.0 } ], + "mult_bonuses": [ + { "stat": "damage", "type": "bash", "scale": 1.15 }, + { "stat": "damage", "type": "cut", "scale": 1.15 }, + { "stat": "damage", "type": "stab", "scale": 1.15 } ] } ], "techniques": [ - "tec_biojutsu_counter", "tec_biojutsu_disarm", "tec_biojutsu_strike_unarmed", "tec_biojutsu_strike_melee", @@ -75,11 +92,15 @@ { "id": "buff_centipede_oncrit", "name": "Centipede's Venom", - "description": "Your venom burns your opponents at the worst of times.\n\n+2 bashing damage.\nLasts 2 turns.", + "description": "Your venom burns your opponents at the worst of times.\n\n+15% damage.\nLasts 2 turns.", "skill_requirements": [ { "name": "unarmed", "level": 1 } ], "unarmed_allowed": true, "buff_duration": 2, - "flat_bonuses": [ { "stat": "damage", "type": "bash", "scale": 2.0 } ] + "mult_bonuses": [ + { "stat": "damage", "type": "bash", "scale": 1.15 }, + { "stat": "damage", "type": "cut", "scale": 1.15 }, + { "stat": "damage", "type": "stab", "scale": 1.15 } + ] } ], "techniques": [ "tec_centipede_rapid", "tec_centipede_break", "tec_centipede_bite", "tec_centipede_disarm" ] @@ -138,9 +159,13 @@ { "id": "buff_scorpion_static", "name": "Scorpion's Venom", - "description": "Your venom is a constant threat that nothing can escape from.\n\n+2 bashing damage.", + "description": "Your venom is a constant threat that nothing can escape from.\n\n+15% damage.", "unarmed_allowed": true, - "flat_bonuses": [ { "stat": "damage", "type": "bash", "scale": 2.0 } ] + "mult_bonuses": [ + { "stat": "damage", "type": "bash", "scale": 1.15 }, + { "stat": "damage", "type": "cut", "scale": 1.15 }, + { "stat": "damage", "type": "stab", "scale": 1.15 } + ] } ], "onattack_buffs": [ @@ -292,18 +317,6 @@ "initial_ma_styles": [ "style_centipede", "style_venom_snake", "style_scorpion", "style_lizard", "style_toad" ], "valid": false }, - { - "type": "technique", - "id": "tec_biojutsu_counter", - "name": "Biojutsu Counter", - "messages": [ "You block and counter-attack %s", " blocks and counter-attacks %s" ], - "skill_requirements": [ { "name": "melee", "level": 4 } ], - "melee_allowed": true, - "unarmed_allowed": true, - "block_counter": true, - "crit_ok": true, - "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 } ] - }, { "type": "technique", "id": "tec_biojutsu_disarm", diff --git a/data/json/materials.json b/data/json/materials.json index 748075a8034e4..0f6e0e0c150da 100644 --- a/data/json/materials.json +++ b/data/json/materials.json @@ -919,7 +919,7 @@ "dmg_adj": [ "bruised", "mutilated", "badly mutilated", "thoroughly mutilated" ], "bash_dmg_verb": "bruised", "cut_dmg_verb": "sliced", - "vitamins": [ [ "calcium", 1, "iron", 1.3 ] ], + "vitamins": [ [ "calcium", 1 ], [ "iron", 1.3 ] ], "burn_data": [ { "fuel": 1, "smoke": 1, "burn": 1, "volume_per_turn": "2500 ml" }, { "fuel": 2, "smoke": 3, "burn": 2, "volume_per_turn": "10000 ml" }, diff --git a/data/json/monster_special_attacks/monster_deaths.json b/data/json/monster_special_attacks/monster_deaths.json index 1b5a008e3a7c8..ccf0c5c62ada8 100644 --- a/data/json/monster_special_attacks/monster_deaths.json +++ b/data/json/monster_special_attacks/monster_deaths.json @@ -159,7 +159,7 @@ "shape": "blast", "effect": "remove_effect", "effect_str": "controlled", - "targeted_monster_ids": [ "blob_small", "blob", "blob_large" ], + "targeted_monster_ids": [ "mon_blob_small", "mon_blob", "mon_blob_large" ], "extra_effects": [ { "id": "death_blobsplit_brain", "hit_self": true } ] }, { diff --git a/data/json/monster_special_attacks/spells.json b/data/json/monster_special_attacks/spells.json index 566407e3bce71..359d81c40466a 100644 --- a/data/json/monster_special_attacks/spells.json +++ b/data/json/monster_special_attacks/spells.json @@ -308,5 +308,109 @@ "field_chance": 2, "min_field_intensity": 2, "max_field_intensity": 2 + }, + { + "type": "SPELL", + "id": "wraith_attack", + "name": { "str": "Wraith Attack" }, + "description": "Drains some of your essence.", + "valid_targets": [ "hostile", "ground" ], + "max_level": 1, + "flags": [ "SILENT", "NO_HANDS", "NO_LEGS" ], + "base_casting_time": 75, + "min_range": 1, + "max_range": 1, + "min_damage": -25, + "max_damage": -50, + "damage_increment": -10.0, + "extra_effects": [ { "id": "portal_hurt_self", "hit_self": true } ], + "shape": "blast", + "effect": "effect_on_condition", + "effect_str": "EOC_wraith_attack" + }, + { + "type": "SPELL", + "id": "portal_hurt_self", + "name": { "str": "Hurt Self" }, + "description": "Touching/perceiving you is bad for the other side as well.", + "flags": [ "SILENT", "NO_HANDS", "NO_LEGS", "NO_PROJECTILE" ], + "min_damage": 5, + "max_damage": 5, + "damage_type": "cut", + "valid_targets": [ "self" ], + "shape": "blast", + "effect": "attack" + }, + { + "type": "effect_on_condition", + "id": "EOC_wraith_attack", + "effect": [ + { + "arithmetic": [ + { "global_val": "var", "var_name": "ps_wraith_fatigue", "type": "weather", "context": "ps" }, + "=", + { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, + "+", + { "const": 20 } + ] + }, + { + "arithmetic": [ + { "global_val": "var", "var_name": "ps_wraith_stamina", "type": "weather", "context": "ps" }, + "=", + { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, + "+", + { "const": 50 } + ] + }, + { + "arithmetic": [ + { "u_val": "fatigue" }, + "+=", + { "global_val": "var", "var_name": "ps_wraith_fatigue", "type": "weather", "context": "ps" } + ] + }, + { + "arithmetic": [ + { "u_val": "stamina" }, + "+=", + { "global_val": "var", "var_name": "ps_wraith_stamina", "type": "weather", "context": "ps" } + ] + }, + { "arithmetic": [ { "u_val": "sleep_deprivation" }, "+=", { "time": "1 minutes" } ] } + ] + }, + { + "type": "SPELL", + "id": "impossible_shape_attack", + "name": { "str": "Impossible Shape Attack" }, + "description": "Hurts you mentally.", + "valid_targets": [ "hostile", "ground" ], + "max_level": 1, + "flags": [ "SILENT", "NO_HANDS", "NO_LEGS" ], + "base_casting_time": 75, + "min_range": 6, + "max_range": 6, + "extra_effects": [ { "id": "portal_hurt_self", "hit_self": true } ], + "shape": "blast", + "effect": "effect_on_condition", + "effect_str": "EOC_impossible_shape_attack" + }, + { + "type": "effect_on_condition", + "id": "EOC_impossible_shape_attack", + "condition": "u_can_see", + "effect": [ + { "u_add_effect": "nightmares", "duration": "18 hours" }, + { "u_add_effect": "disrupted_sleep", "duration": "18 hours" }, + { + "u_add_morale": "morale_impossible_shape", + "bonus": -20, + "max_bonus": -60, + "duration": "36 hours", + "decay_start": "24 hours" + }, + { "arithmetic": [ { "u_val": "pain" }, "+=", { "const": 3 } ] } + ] } ] diff --git a/data/json/monster_special_attacks/weapon_spells.json b/data/json/monster_special_attacks/weapon_spells.json index 4b9a62a5fef7f..f538a1292adeb 100644 --- a/data/json/monster_special_attacks/weapon_spells.json +++ b/data/json/monster_special_attacks/weapon_spells.json @@ -56,9 +56,12 @@ "name": { "str": "Exodii multipurpose weapon pod" }, "description": "Randomly selects one of several weapons.", "valid_targets": [ "hostile", "ground" ], - "effect": "none", + "effect": "attack", "shape": "blast", "base_casting_time": 200, + "min_range": 1, + "max_range": 5, + "max_level": 2, "min_damage": 1, "max_damage": 1, "extra_effects": [ diff --git a/data/json/monsterdrops/feral_humans.json b/data/json/monsterdrops/feral_humans.json index df787a4720216..015c6517c8666 100644 --- a/data/json/monsterdrops/feral_humans.json +++ b/data/json/monsterdrops/feral_humans.json @@ -82,5 +82,186 @@ { "group": "clothing_watch", "prob": 5 }, { "group": "wallets", "damage": [ 1, 4 ] } ] + }, + { + "type": "item_group", + "subtype": "collection", + "id": "feral_maids_death_drops_broom", + "entries": [ { "item": "broom", "prob": 100, "damage": [ 0, 2 ] }, { "group": "default_maid_clothes", "prob": 100 } ] + }, + { + "type": "item_group", + "subtype": "collection", + "id": "feral_maids_death_drops_candlestick", + "entries": [ { "item": "candlestick", "prob": 100, "damage": [ 0, 2 ] }, { "group": "default_maid_clothes", "prob": 100 } ] + }, + { + "type": "item_group", + "subtype": "collection", + "id": "feral_maids_death_drops_knife", + "entries": [ { "item": "knife_chef", "prob": 100, "damage": [ 0, 3 ] }, { "group": "default_maid_clothes", "prob": 100 } ] + }, + { + "type": "item_group", + "subtype": "collection", + "id": "feral_fancy_death_drops_rapier", + "entries": [ { "item": "rapier", "prob": 100, "damage": [ 2, 4 ] }, { "group": "default_fancy_clothes", "prob": 100 } ] + }, + { + "type": "item_group", + "subtype": "collection", + "id": "feral_fancy_death_drops_rapier_fake", + "entries": [ { "item": "rapier_fake", "prob": 100, "damage": [ 0, 2 ] }, { "group": "default_fancy_clothes", "prob": 100 } ] + }, + { + "type": "item_group", + "subtype": "collection", + "id": "feral_fancy_death_drops_crossbow", + "entries": [ { "item": "crossbow", "prob": 100, "damage": [ 1, 3 ] }, { "group": "default_fancy_clothes", "prob": 100 } ] + }, + { + "type": "item_group", + "subtype": "collection", + "//": "contains cloth for a feral butler or maid", + "id": "default_maid_clothes", + "entries": [ + { "group": "scarfs_unisex", "damage": [ 1, 4 ], "prob": 20 }, + { "group": "accesories_personal_unisex", "damage": [ 1, 4 ], "prob": 15 }, + { "item": "glasses_monocle", "prob": 20, "damage": [ 1, 4 ] }, + { + "distribution": [ + { + "collection": [ + { + "distribution": [ + { "group": "male_underwear", "prob": 80, "damage": [ 1, 4 ] }, + { "item": "union_suit", "prob": 10, "damage": [ 1, 4 ] } + ] + }, + { "item": "tux", "prob": 100, "damage": [ 1, 4 ] }, + { "item": "dress_shoes", "prob": 80, "damage": [ 1, 4 ] }, + { "group": "common_gloves", "prob": 60, "damage": [ 1, 4 ] }, + { "group": "neckties", "prob": 45, "damage": [ 1, 4 ] }, + { "group": "socks_unisex", "damage": [ 1, 4 ], "prob": 50 }, + { "group": "accesories_personal_mens", "prob": 15, "damage": [ 1, 4 ] } + ] + }, + { + "collection": [ + { "group": "female_underwear", "prob": 90, "damage": [ 1, 4 ] }, + { "group": "accesories_personal_womens", "prob": 15, "damage": [ 1, 4 ] }, + { + "distribution": [ { "item": "dress_shoes", "prob": 45, "damage": [ 1, 4 ] }, { "item": "heels", "prob": 45, "damage": [ 1, 4 ] } ] + }, + { + "distribution": [ + { + "collection": [ + { "item": "maid_dress", "prob": 100, "damage": [ 1, 4 ] }, + { "item": "maid_hat", "prob": 80, "damage": [ 1, 4 ] }, + { "item": "long_glove_white", "prob": 60, "damage": [ 1, 4 ] }, + { + "distribution": [ { "item": "stockings", "prob": 50, "damage": [ 1, 4 ] }, { "item": "tights", "prob": 50, "damage": [ 1, 4 ] } ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "item_group", + "subtype": "collection", + "//": "contains cloth for a fancy feral", + "id": "default_fancy_clothes", + "entries": [ + { "group": "coats_unisex", "damage": [ 1, 4 ], "prob": 20 }, + { "group": "gloves_unisex", "damage": [ 1, 4 ], "prob": 20 }, + { "group": "hatstore_hats", "damage": [ 1, 4 ], "prob": 20 }, + { "group": "scarfs_unisex", "damage": [ 1, 4 ], "prob": 20 }, + { "group": "accesories_personal_unisex", "damage": [ 1, 4 ], "prob": 45 }, + { + "distribution": [ + { + "collection": [ + { + "distribution": [ + { "group": "male_underwear", "prob": 80, "damage": [ 1, 4 ] }, + { "item": "union_suit", "prob": 10, "damage": [ 1, 4 ] } + ] + }, + { + "distribution": [ + { + "collection": [ + { "group": "pants_male", "prob": 60, "damage": [ 1, 4 ] }, + { "item": "dress_shirt", "prob": 60, "damage": [ 1, 4 ] }, + { "item": "leather_belt", "prob": 30, "damage": [ 1, 4 ] } + ] + }, + { "item": "suit", "prob": 60, "damage": [ 1, 4 ] }, + { "item": "tux", "prob": 20, "damage": [ 1, 4 ] }, + { "item": "haori", "prob": 5, "damage": [ 1, 4 ] } + ] + }, + { "item": "dress_shoes", "prob": 80, "damage": [ 1, 4 ] }, + { "group": "neckties", "prob": 15, "damage": [ 1, 4 ] }, + { "group": "socks_unisex", "damage": [ 1, 4 ], "prob": 50 }, + { "group": "accesories_personal_mens", "prob": 45, "damage": [ 1, 4 ] } + ] + }, + { + "collection": [ + { "group": "female_underwear", "prob": 90, "damage": [ 1, 4 ] }, + { "group": "accesories_personal_womens", "prob": 65, "damage": [ 1, 4 ] }, + { "group": "dress_shoes", "prob": 60, "damage": [ 1, 4 ] }, + { + "distribution": [ + { + "collection": [ + { "group": "pants_female", "prob": 60, "damage": [ 1, 4 ] }, + { "group": "shirts_unisex", "prob": 60, "damage": [ 1, 4 ] }, + { + "distribution": [ + { + "distribution": [ { "item": "stockings", "prob": 50, "damage": [ 1, 4 ] }, { "item": "tights", "prob": 50, "damage": [ 1, 4 ] } ] + }, + { "group": "socks_unisex", "prob": 50, "damage": [ 1, 4 ] } + ] + } + ], + "prob": 10 + }, + { + "collection": [ + { + "distribution": [ + { "item": "gown", "prob": 30, "damage": [ 1, 4 ] }, + { "item": "dress", "prob": 60, "damage": [ 1, 4 ] }, + { "item": "sundress", "prob": 20, "damage": [ 1, 4 ] }, + { + "collection": [ { "item": "dress_wedding", "damage": [ 1, 4 ] }, { "item": "veil_wedding", "damage": [ 1, 4 ] } ], + "prob": 10 + } + ] + }, + { + "distribution": [ { "item": "stockings", "prob": 50, "damage": [ 1, 4 ] }, { "item": "tights", "prob": 50, "damage": [ 1, 4 ] } ] + }, + { "item": "long_glove_white", "prob": 50, "damage": [ 1, 4 ] } + ], + "prob": 85 + } + ] + } + ] + } + ] + } + ] } ] diff --git a/data/json/monsterdrops/zombie_cop.json b/data/json/monsterdrops/zombie_cop.json index 77d600484327d..b4acacc422800 100644 --- a/data/json/monsterdrops/zombie_cop.json +++ b/data/json/monsterdrops/zombie_cop.json @@ -123,17 +123,13 @@ "subtype": "collection", "entries": [ { - "collection": [ + "distribution": [ { "item": "adhesive_bandages", "prob": 30 }, { "item": "bandages", "prob": 30 }, { "group": "full_1st_aid", "prob": 20 } ], "prob": 25 }, - { - "collection": [ { "item": "swat_armor", "prob": 50 }, { "item": "kevlar", "prob": 25 }, { "item": "tacvest", "prob": 5 } ], - "prob": 75 - }, { "collection": [ { "item": "heavy_flashlight", "prob": 20, "charges": [ 0, 300 ] }, @@ -202,13 +198,28 @@ { "id": "swat_torso", "type": "item_group", - "subtype": "distribution", + "subtype": "collection", "entries": [ - { "item": "tank_top", "prob": 30 }, - { "item": "army_top", "prob": 40 }, - { "item": "tshirt", "prob": 20 }, - { "item": "longshirt", "prob": 10 }, - { "item": "thermal_shirt", "prob": 10 } + { + "distribution": [ + { "item": "swat_armor", "prob": 15 }, + { "item": "kevlar", "prob": 25 }, + { "item": "tacvest", "prob": 5 }, + { "item": "armor_riot", "prob": 25 }, + { "item": "ballistic_vest_esapi", "prob": 10 } + ], + "prob": 65 + }, + { + "distribution": [ + { "item": "tank_top", "prob": 30 }, + { "item": "army_top", "prob": 40 }, + { "item": "tshirt", "prob": 20 }, + { "item": "longshirt", "prob": 10 }, + { "item": "thermal_shirt", "prob": 10 } + ], + "prob": 75 + } ] }, { diff --git a/data/json/monsterdrops/zombie_default.json b/data/json/monsterdrops/zombie_default.json index d537043813432..018dfcbb1333b 100644 --- a/data/json/monsterdrops/zombie_default.json +++ b/data/json/monsterdrops/zombie_default.json @@ -170,7 +170,8 @@ "distribution": [ { "item": "cig", "prob": 65, "charges-min": 0, "charges-max": 20 }, { "item": "chaw", "prob": 5 }, - { "item": "cigar", "prob": 10 }, + { "item": "cigar", "prob": 5 }, + { "group": "pocket_cigar", "prob": 10 }, { "item": "handrolled_cig", "prob": 10 }, { "item": "nic_gum", "prob": 20 }, { "item": "ecig", "prob": 15 }, diff --git a/data/json/monsterdrops/zombie_milbase_personnel.json b/data/json/monsterdrops/zombie_milbase_personnel.json index b3bb2be40fb38..e24290f4b5402 100644 --- a/data/json/monsterdrops/zombie_milbase_personnel.json +++ b/data/json/monsterdrops/zombie_milbase_personnel.json @@ -14,6 +14,7 @@ { "group": "clothing_glasses", "damage": [ 0, 4 ], "prob": 5 }, { "item": "wristwatch", "damage": [ 0, 4 ], "prob": 33 }, { "group": "mil_food_nodrugs", "prob": 15 }, + { "group": "pocket_cigar", "prob": 5 }, { "group": "misc_smoking_legal", "prob": 10 } ] } diff --git a/data/json/monsterdrops/zombie_military_pilot.json b/data/json/monsterdrops/zombie_military_pilot.json index 0885b972d763f..83c8b47f5881f 100644 --- a/data/json/monsterdrops/zombie_military_pilot.json +++ b/data/json/monsterdrops/zombie_military_pilot.json @@ -8,10 +8,11 @@ "entries": [ { "group": "clothing_military_pilot", "damage": [ 1, 4 ] }, { "item": "holster", "contents-group": "military_standard_pistols" }, - { "item": "two_way_radio", "prob": 90 }, + { "item": "two_way_radio", "prob": 30 }, { "item": "adderall", "prob": 40 }, { "group": "wallets_military", "prob": 25 }, { "group": "military_patrol_food", "prob": 30 }, + { "group": "pocket_cigar", "prob": 15 }, { "group": "misc_smoking_legal", "prob": 30 } ] } diff --git a/data/json/monsterdrops/zombie_soldier.json b/data/json/monsterdrops/zombie_soldier.json index 3cd8919c91ff5..f01f6e8f3b28a 100644 --- a/data/json/monsterdrops/zombie_soldier.json +++ b/data/json/monsterdrops/zombie_soldier.json @@ -25,6 +25,7 @@ { "group": "military_patrol_food" }, { "distribution": [ { "group": "infantry_officer_gear" }, { "group": "infantry_medical_gear" } ], "prob": 25 }, { "group": "wallets", "prob": 10 }, + { "group": "pocket_cigar", "prob": 15 }, { "group": "misc_smoking_legal", "prob": 30 } ] }, @@ -62,6 +63,7 @@ "collection": [ { "group": "infantry_officer_gear", "prob": 90 }, { "group": "infantry_medical_gear", "prob": 80 } ] }, { "group": "wallets", "prob": 10 }, + { "group": "pocket_cigar", "prob": 15 }, { "group": "misc_smoking_legal", "prob": 30 } ] } diff --git a/data/json/monstergroups/misc.json b/data/json/monstergroups/misc.json index 49f12bc12dce4..a27b985d3db01 100644 --- a/data/json/monstergroups/misc.json +++ b/data/json/monstergroups/misc.json @@ -44,6 +44,25 @@ { "monster": "mon_zombie_brainless", "freq": 65, "cost_multiplier": 1 } ] }, + { + "type": "monstergroup", + "name": "GROUP_MANSION_START", + "default": "mon_feral_maid_broom", + "monsters": [ + { "monster": "mon_feral_maid_broom", "freq": 40, "cost_multiplier": 1, "pack_size": [ 1, 3 ] }, + { "monster": "mon_feral_maid_candlestick", "freq": 80, "cost_multiplier": 1, "pack_size": [ 1, 3 ] }, + { "monster": "mon_feral_maid_knife", "freq": 80, "cost_multiplier": 1, "pack_size": [ 1, 3 ] }, + { "monster": "mon_feral_maid_broom", "freq": 80, "cost_multiplier": 1, "pack_size": [ 2, 5 ] }, + { "monster": "mon_feral_maid_candlestick", "freq": 80, "cost_multiplier": 1, "pack_size": [ 2, 5 ] }, + { "monster": "mon_feral_maid_knife", "freq": 80, "cost_multiplier": 1, "pack_size": [ 2, 5 ] }, + { "monster": "mon_feral_fancy_rapier", "freq": 70, "cost_multiplier": 4 }, + { "monster": "mon_feral_fancy_rapier", "freq": 40, "cost_multiplier": 5, "pack_size": [ 2, 3 ] }, + { "monster": "mon_feral_fancy_rapier_fake", "freq": 80, "cost_multiplier": 2 }, + { "monster": "mon_feral_fancy_rapier_fake", "freq": 50, "cost_multiplier": 2, "pack_size": [ 3, 5 ] }, + { "monster": "mon_feral_fancy_crossbow", "freq": 60, "cost_multiplier": 5 }, + { "monster": "mon_feral_fancy_crossbow", "freq": 40, "cost_multiplier": 10, "pack_size": [ 2, 3 ] } + ] + }, { "type": "monstergroup", "name": "GROUP_CHUD", diff --git a/data/json/monstergroups/zombies.json b/data/json/monstergroups/zombies.json index 11f13e8095d2f..6c752a5a2f594 100644 --- a/data/json/monstergroups/zombies.json +++ b/data/json/monstergroups/zombies.json @@ -406,7 +406,13 @@ { "monster": "mon_zombie_swat", "freq": 5, "cost_multiplier": 3 }, { "monster": "mon_zombie_medical", "freq": 5, "cost_multiplier": 2 }, { "monster": "mon_zombie_static", "freq": 5, "cost_multiplier": 5 }, - { "monster": "mon_zombie_runner", "freq": 10, "cost_multiplier": 5, "pack_size": [ 1, 2 ] } + { "monster": "mon_zombie_runner", "freq": 10, "cost_multiplier": 5, "pack_size": [ 1, 2 ] }, + { "monster": "mon_feral_maid_broom", "freq": 10, "cost_multiplier": 1 }, + { "monster": "mon_feral_maid_candlestick", "freq": 10, "cost_multiplier": 1 }, + { "monster": "mon_feral_maid_knife", "freq": 10, "cost_multiplier": 1 }, + { "monster": "mon_feral_fancy_rapier", "freq": 5, "cost_multiplier": 1 }, + { "monster": "mon_feral_fancy_rapier_fake", "freq": 10, "cost_multiplier": 1 }, + { "monster": "mon_feral_fancy_crossbow", "freq": 5, "cost_multiplier": 1 } ] }, { @@ -420,7 +426,12 @@ { "monster": "mon_zombie_tough", "freq": 50, "cost_multiplier": 1 }, { "monster": "mon_skeleton", "freq": 30, "cost_multiplier": 1 }, { "monster": "mon_zombie_static", "freq": 15, "cost_multiplier": 1 }, - { "monster": "mon_zombie_fat", "freq": 10, "cost_multiplier": 1 } + { "monster": "mon_zombie_fat", "freq": 10, "cost_multiplier": 1 }, + { "monster": "mon_feral_fancy_rapier", "freq": 100, "cost_multiplier": 1 }, + { "monster": "mon_feral_fancy_rapier_fake", "freq": 80, "cost_multiplier": 1 }, + { "monster": "mon_feral_fancy_crossbow", "freq": 80, "cost_multiplier": 1 }, + { "monster": "mon_dog_rottweiler", "freq": 50, "cost_multiplier": 1 }, + { "monster": "mon_dog_gpyrenees", "freq": 50, "cost_multiplier": 1 } ] }, { diff --git a/data/json/monsters/cyborgs.json b/data/json/monsters/cyborgs.json index c7816a44ea26d..5b083b4d4ddcc 100644 --- a/data/json/monsters/cyborgs.json +++ b/data/json/monsters/cyborgs.json @@ -153,7 +153,12 @@ "starting_ammo": { "123ln": 3000 }, "anger_triggers": [ "FRIEND_ATTACKED", "FRIEND_DIED", "HURT" ], "special_attacks": [ - { "type": "spell", "spell_data": { "id": "exodii_weapon_pod", "min_level": 3 }, "cooldown": 200 }, + { + "type": "spell", + "spell_data": { "id": "exodii_weapon_pod", "min_level": 1 }, + "cooldown": 200, + "monster_message": "The Exodii quadruped fires its weapon pod!" + }, { "type": "gun", "cooldown": 1, @@ -162,7 +167,7 @@ "ammo_type": "123ln", "fake_skills": [ [ "gun", 5 ], [ "rifle", 8 ] ], "fake_dex": 12, - "ranges": [ [ 0, 41, "DEFAULT" ] ], + "ranges": [ [ 4, 41, "DEFAULT" ] ], "require_targeting_npc": true, "require_targeting_monster": true, "laser_lock": false, diff --git a/data/json/monsters/drones.json b/data/json/monsters/drones.json index 46888ffaff39b..c01aad9d9ea56 100644 --- a/data/json/monsters/drones.json +++ b/data/json/monsters/drones.json @@ -118,7 +118,7 @@ "copy-from": "base_drone", "type": "MONSTER", "name": { "str": "mininuke hack" }, - "description": "Many times as large as a normal manhack, this flying quadcopter drone appears to have a mininuke inside. If this is targeting you… Run.", + "description": "Many times as large as a normal manhack, this flying quadcopter drone appears to have a mininuke inside. If this is targeting you… run.", "diff": 40, "hp": 20, "speed": 150, diff --git a/data/json/monsters/feral_humans.json b/data/json/monsters/feral_humans.json index d1323a5d0cbef..42eac320a2cd2 100644 --- a/data/json/monsters/feral_humans.json +++ b/data/json/monsters/feral_humans.json @@ -215,5 +215,101 @@ "special_attacks": [ [ "TAZER", 10 ] ], "luminance": 500, "death_drops": "feral_security_death_drops_flashlight" + }, + { + "id": "mon_feral_maid_broom", + "type": "MONSTER", + "name": { "str": "feral servant" }, + "description": "Once a fancy servant of some rich family, this maniac walks around with a broom in hand, searching for a victim to clean from its life.", + "default_faction": "zombie", + "looks_like": "chud", + "bodytype": "human", + "species": [ "HUMAN" ], + "volume": "62500 ml", + "weight": "81500 g", + "hp": 80, + "speed": 100, + "material": [ "flesh" ], + "symbol": "@", + "color": "magenta", + "aggression": 30, + "morale": 100, + "melee_skill": 2, + "melee_dice": 1, + "melee_dice_sides": 3, + "melee_cut": 0, + "dodge": 1, + "harvest": "human", + "vision_day": 30, + "vision_night": 3, + "path_settings": { "max_dist": 30, "allow_open_doors": true, "avoid_traps": true, "avoid_sharp": true }, + "death_drops": "feral_maids_death_drops_broom", + "zombify_into": "mon_zombie", + "anger_triggers": [ "FRIEND_DIED", "FRIEND_ATTACKED", "HURT" ], + "flags": [ "SEES", "HEARS", "SMELLS", "WARM", "BASHES", "GROUP_BASH", "HUMAN", "CAN_OPEN_DOORS", "PATH_AVOID_DANGER_1" ] + }, + { + "id": "mon_feral_maid_candlestick", + "type": "MONSTER", + "copy-from": "mon_feral_maid_broom", + "name": { "str": "feral servant" }, + "description": "Once a fancy servant of some rich family, this maniac walks around with a candlestick in hand, wanting to turn off the lights of your life.", + "death_drops": "feral_maids_death_drops_candlestick" + }, + { + "id": "mon_feral_maid_knife", + "type": "MONSTER", + "copy-from": "mon_feral_maid_broom", + "name": { "str": "feral servant" }, + "description": "Once a fancy servant of some rich family, this maniac walks around with a knife in hand, searching some victims to butcher for the next meal.", + "melee_skill": 3, + "melee_cut": 4, + "death_drops": "feral_maids_death_drops_knife" + }, + { + "id": "mon_feral_fancy_rapier", + "type": "MONSTER", + "copy-from": "mon_feral_maid_broom", + "name": { "str": "well dressed feral" }, + "description": "Wearing fancy clothes and with a rapier in hand, this maniac was once a socialite. It smiles with madness and seems like it wants to invite you to dinner.", + "melee_skill": 4, + "melee_dice": 2, + "melee_dice_sides": 7, + "melee_cut": 10, + "death_drops": "feral_fancy_death_drops_rapier" + }, + { + "id": "mon_feral_fancy_rapier_fake", + "type": "MONSTER", + "copy-from": "mon_feral_maid_broom", + "name": { "str": "well dressed feral" }, + "description": "Wearing fancy clothes and with a rapier in hand, this maniac was once a socialite. It smiles with madness and seems like it wants to invite you to dinner.", + "melee_skill": 3, + "melee_cut": 1, + "death_drops": "feral_fancy_death_drops_rapier_fake" + }, + { + "id": "mon_feral_fancy_crossbow", + "type": "MONSTER", + "copy-from": "mon_feral_maid_broom", + "name": { "str": "well dressed feral" }, + "description": "Wearing fancy clothes and with a crossbow in hand, this maniac was once a socialite. Its hands seem to wander trough the crossbow as if touching a loved one.", + "starting_ammo": { "bolt_cf": 6 }, + "special_attacks": [ + { + "type": "gun", + "cooldown": 15, + "move_cost": 200, + "gun_type": "rep_crossbow", + "ammo_type": "bolt_cf", + "fake_skills": [ [ "gun", 1 ], [ "smg", 1 ] ], + "fake_dex": 6, + "fake_per": 6, + "require_targeting_player": false, + "ranges": [ [ 0, 7, "DEFAULT" ] ], + "description": "The feral human shots its crossbow!" + } + ], + "death_drops": "feral_fancy_death_drops_crossbow" } ] diff --git a/data/json/monsters/mammal.json b/data/json/monsters/mammal.json index 1f112b2b9cba3..4d080645bac15 100644 --- a/data/json/monsters/mammal.json +++ b/data/json/monsters/mammal.json @@ -691,7 +691,7 @@ "placate_triggers": [ "PLAYER_WEAK" ], "death_drops": { "subtype": "collection", "groups": [ [ "cow", 25 ] ], "//": "25% chance of an item from group cow" }, "zombify_into": "mon_zow", - "harvest": "mammal_large_leather", + "harvest": "mammal_large_bovine", "reproduction": { "baby_monster": "mon_cow_calf", "baby_count": 1, "baby_timer": 343 }, "baby_flags": [ "SPRING", "SUMMER", "AUTUMN" ], "biosignature": { "biosig_item": "feces_cow", "biosig_timer": 1 }, @@ -727,7 +727,7 @@ "anger_triggers": [ "STALK", "FRIEND_ATTACKED", "PLAYER_WEAK", "HURT" ], "fear_triggers": [ "SOUND" ], "placate_triggers": [ "MEAT" ], - "harvest": "mammal_fur", + "harvest": "mammal_fur_lupine", "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "HIT_AND_RUN", "KEENNOSE" ] }, { @@ -2057,7 +2057,7 @@ "armor_bullet": 2, "vision_day": 0, "vision_night": 0, - "harvest": "mutant_mammal_large_leather", + "harvest": "mutant_mammal_molerat_leather", "special_attacks": [ [ "SHRIEK_ALERT", 10 ], [ "SHRIEK_STUN", 1 ], { "type": "bite", "cooldown": 6 }, [ "impale", 10 ] ], "anger_triggers": [ "HURT", "SOUND", "STALK" ], "fear_triggers": [ "FIRE" ], @@ -2467,7 +2467,7 @@ "dodge": 4, "armor_bash": 1, "vision_night": 5, - "harvest": "mammal_fur", + "harvest": "mammal_fur_lupine", "path_settings": { "max_dist": 10 }, "anger_triggers": [ "STALK", "FRIEND_ATTACKED", "FRIEND_DIED", "PLAYER_WEAK", "PLAYER_CLOSE" ], "placate_triggers": [ "MEAT" ], diff --git a/data/json/monsters/misc.json b/data/json/monsters/misc.json index f66ce145667d6..1f5923b6133d8 100644 --- a/data/json/monsters/misc.json +++ b/data/json/monsters/misc.json @@ -47,25 +47,37 @@ "melee_cut": 0, "vision_day": 1, "armor_bullet": 100, + "families": [ "prof_debug_weakpoint", { "proficiency": "prof_debug_weakpoint_expert", "bonus": 100 } ], "weakpoints": [ { "name": "the belly", "armor_mult": { "bullet": 0.5 }, "armor_penalty": { "bullet": 25 }, - "coverage": 25, + "coverage": 50, + "coverage_mult": { "all": 0.5 }, "required_effects": [ "stunned" ] }, + { "name": "impossible to hit", "coverage": 100, "difficulty": { "all": 100.0 } }, { "name": "the knee", "armor_mult": { "bullet": 0.0 }, "armor_penalty": { "bullet": 0 }, "damage_mult": { "all": 2.0 }, "coverage": 25, - "effects": [ { "effect": "stunned", "duration": [ 1, 3 ], "chance": 50, "message": "The %s is disorientated." } ] + "effects": [ + { + "effect": "stunned", + "duration": [ 1, 3 ], + "permanent": false, + "intensity": [ 0, 0 ], + "damage_required": [ 0, 100 ], + "chance": 50, + "message": "The %s is disorientated." + } + ] } ], - "harvest": "exempt", - "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s melts away." }, + "harvest": "zombie", "flags": [ "IMMOBILE", "NOT_HALLUCINATION", "FILTHY" ] }, { diff --git a/data/json/monsters/nether.json b/data/json/monsters/nether.json index 428d21e6e9f82..7dc0866d28004 100644 --- a/data/json/monsters/nether.json +++ b/data/json/monsters/nether.json @@ -881,5 +881,82 @@ "harvest": "exempt", "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s melts away." }, "flags": [ "HEARS", "GOODHEARING", "STUMBLES", "NOHEAD", "HARDTOSHOOT", "FLIES", "PLASTIC", "NO_BREATHE", "NOGIB" ] + }, + { + "id": "mon_wraith", + "type": "MONSTER", + "name": { "str": "Wraith" }, + "description": "A small, grotesque jellyfish-like creature floating in midair. You can see through it, not as if it were transparent but as if it isn't quite fully here.", + "default_faction": "nether", + "species": [ "NETHER" ], + "volume": "1000 ml", + "weight": "0 g", + "hp": 10, + "speed": 110, + "symbol": "Q", + "color": "white", + "aggression": 100, + "morale": 100, + "dodge": 2, + "special_attacks": [ + { + "type": "spell", + "spell_data": { "id": "wraith_attack", "min_level": 1 }, + "cooldown": 1, + "monster_message": "For a moment the wraith passes into you as if it were an illusion and a slight wave of fatigue washes over you." + } + ], + "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s fades away." }, + "flags": [ "FLIES", "NO_BREATHE", "SEES", "HEARS" ] + }, + { + "id": "mon_impossible_shape", + "type": "MONSTER", + "name": { "str": "Impossible shape" }, + "description": "A twisted shape floating in midair; its angles don't seem to quite add up - it hurts to look at. You can see through it, not as if it were transparent but as if it isn't quite fully here.", + "default_faction": "nether", + "species": [ "NETHER" ], + "volume": "62500 ml", + "weight": "0 g", + "hp": 30, + "speed": 90, + "symbol": "X", + "color": "white", + "aggression": 100, + "morale": 100, + "dodge": 8, + "special_attacks": [ + { + "type": "spell", + "spell_data": { "id": "impossible_shape_attack", "min_level": 1 }, + "cooldown": 5, + "monster_message": "You get a very clear view of the impossible shape." + } + ], + "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s fades away." }, + "flags": [ "FLIES", "NO_BREATHE", "SEES", "HEARS", "RANGED_ATTACKER" ] + }, + { + "id": "mon_giant_appendage", + "type": "MONSTER", + "name": { "str": "Giant appendage" }, + "description": "A gigantic appendage, its end looks like a portal, as if this is merely a probing piece of something much larger.", + "default_faction": "nether", + "species": [ "NETHER" ], + "volume": "62500 ml", + "weight": "0 g", + "hp": 1000000000, + "speed": 90, + "symbol": "A", + "color": "white", + "aggression": 100, + "morale": 100, + "dodge": 8, + "melee_skill": 6, + "melee_dice": 5, + "melee_dice_sides": 5, + "melee_cut": 14, + "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s is pulled back through the closing portal." }, + "flags": [ "FLIES", "NO_BREATHE", "SEES", "HEARS" ] } ] diff --git a/data/json/monsters/reptile_amphibian.json b/data/json/monsters/reptile_amphibian.json index 9a1dd5893ec9e..1b9432c62a20d 100644 --- a/data/json/monsters/reptile_amphibian.json +++ b/data/json/monsters/reptile_amphibian.json @@ -68,7 +68,7 @@ "armor_bullet": 6, "vision_day": 3, "vision_night": 35, - "harvest": "mammal_large_leather", + "harvest": "reptile_large_leather", "path_settings": { "max_dist": 8 }, "special_attacks": [ { @@ -151,7 +151,7 @@ "armor_bullet": 3, "vision_day": 30, "vision_night": 5, - "harvest": "mutant_animal_large_noskin", + "harvest": "mutant_animal_large_reptile_noskin", "special_attacks": [ [ "RATTLE", 6 ], { diff --git a/data/json/monsters/robofac_robots.json b/data/json/monsters/robofac_robots.json index 3b787be0250d1..e28990937861c 100644 --- a/data/json/monsters/robofac_robots.json +++ b/data/json/monsters/robofac_robots.json @@ -46,7 +46,6 @@ "death_drops": { "groups": [ [ "robots", 4 ], [ "eyebot", 1 ] ] }, "death_function": { "corpse_type": "BROKEN" }, "vision_day": 50, - "vision_night": 20, "path_settings": { "max_dist": 50, "avoid_traps": true }, "flags": [ "PATH_AVOID_DANGER_1", diff --git a/data/json/monsters/zed_explosive.json b/data/json/monsters/zed_explosive.json index ece13e07da1c1..212af98351073 100644 --- a/data/json/monsters/zed_explosive.json +++ b/data/json/monsters/zed_explosive.json @@ -25,7 +25,7 @@ "harvest": "exempt", "special_attacks": [ [ "BOOMER", 20 ], [ "scratch", 20 ] ], "death_drops": "default_zombie_items", - "death_function": { "effect": { "id": "death_boomer", "hit_self": true }, "message": "A %s explode!", "corpse_type": "NO_CORPSE" }, + "death_function": { "effect": { "id": "death_boomer", "hit_self": true }, "message": "A %s explodes!", "corpse_type": "NO_CORPSE" }, "upgrades": { "half_life": 14, "into_group": "GROUP_ZOMBIE_BOOMER_UPGRADE" }, "fungalize_into": "mon_boomer_fungus", "flags": [ @@ -78,7 +78,7 @@ "death_drops": "default_zombie_items", "death_function": { "effect": { "id": "death_boomer_glow", "hit_self": true, "min_level": 1 }, - "message": "A %s explode!", + "message": "A %s explodes!", "corpse_type": "NO_CORPSE" }, "flags": [ diff --git a/data/json/morale_types.json b/data/json/morale_types.json index 0bf00643d10db..f8585dc014266 100644 --- a/data/json/morale_types.json +++ b/data/json/morale_types.json @@ -398,5 +398,10 @@ "id": "morale_migo_bio_tech", "type": "morale_type", "text": "Used mi-go biotech" + }, + { + "id": "morale_impossible_shape", + "type": "morale_type", + "text": "Saw something that hurts to remember." } ] diff --git a/data/json/mutations/mutations.json b/data/json/mutations/mutations.json index e3ea7e749559d..9f8c026e804d0 100644 --- a/data/json/mutations/mutations.json +++ b/data/json/mutations/mutations.json @@ -439,7 +439,7 @@ "id": "BOVINE_BULK", "name": { "str": "Bovine Bulk" }, "points": 2, - "description": "You've added a lot of weight, much of it muscle! You get a 10% bonus to all hit points. Swimming will be more difficult from now on", + "description": "You've added a lot of weight, much of it muscle! You get a 10% bonus to all hit points. Swimming will be more difficult from now on.", "cancels": [ "FLIMSY", "FLIMSY2", "FLIMSY3", "GLASSJAW" ], "changes_to": [ "BOVINE_BULK2" ], "category": [ "CATTLE" ], @@ -942,6 +942,7 @@ "description": "Your scent is quite weak. Animals that track your scent will do so with more difficulty.", "starting_trait": true, "category": [ "ALPHA" ], + "cancels": [ "SMELLY2" ], "scent_intensity": 300, "types": [ "SCENT" ] }, @@ -2194,7 +2195,8 @@ "changes_to": [ "HOLLOW_BONES" ], "movecost_modifier": 0.9, "attackcost_modifier": 0.9, - "weight_capacity_modifier": 0.8 + "weight_capacity_modifier": 0.8, + "enchantments": [ { "condition": "ALWAYS", "values": [ { "value": "EXTRA_BASH", "multiply": 0.4 } ] } ] }, { "type": "mutation", @@ -4423,7 +4425,7 @@ "points": 3, "visibility": 2, "ugliness": 2, - "description": "You're mucus has developed an acidic component that seems to soften your prey up.", + "description": "Your mucus has developed an acidic component that seems to soften your prey up.", "attacks": { "attack_text_u": "You smear slime on %s", "attack_text_npc": "%1$s smears slime on %2$s", @@ -4718,7 +4720,7 @@ "id": "STR_UP", "name": { "str": "Strong" }, "points": 1, - "description": "Your muscles are a little stronger. Strength + 1", + "description": "Your muscles are a little stronger. +1 Strength.", "changes_to": [ "STR_UP_2" ], "category": [ "INSECT", "ELFA", "RAPTOR" ], "passive_mods": { "str_mod": 1 } @@ -4728,7 +4730,7 @@ "id": "STR_UP_2", "name": { "str": "Very Strong" }, "points": 2, - "description": "Your muscles are stronger. Strength + 2", + "description": "Your muscles are stronger. +2 Strength.", "prereqs": [ "STR_UP" ], "changes_to": [ "STR_UP_3", "STR_ALPHA" ], "category": [ "LIZARD", "CATTLE", "PLANT", "ALPHA" ], @@ -4740,7 +4742,7 @@ "name": { "str": "Extremely Strong" }, "points": 4, "visibility": 1, - "description": "Your muscles are much stronger. Strength + 4", + "description": "Your muscles are much stronger. +4 Strength.", "prereqs": [ "STR_UP_2" ], "changes_to": [ "STR_UP_4" ], "leads_to": [ "MUT_TOUGH" ], @@ -4754,7 +4756,7 @@ "points": 7, "visibility": 2, "ugliness": 2, - "description": "Your muscles are noticeably bulging. Strength + 7", + "description": "Your muscles are noticeably bulging. +7 Strength.", "prereqs": [ "STR_UP_3" ], "leads_to": [ "MUT_TOUGH" ], "threshreq": [ "THRESH_BEAST", "THRESH_URSINE" ], @@ -4778,7 +4780,7 @@ "id": "DEX_UP", "name": { "str": "Dextrous" }, "points": 1, - "description": "You are a little nimbler. Dexterity + 1", + "description": "You are a little nimbler. +1 Dexterity.", "changes_to": [ "DEX_UP_2", "DEX_ALPHA" ], "category": [ "INSECT", "SLIME", "ALPHA" ], "passive_mods": { "dex_mod": 1 } @@ -4788,7 +4790,7 @@ "id": "DEX_UP_2", "name": { "str": "Very Dextrous" }, "points": 2, - "description": "You are nimbler. Dexterity + 2", + "description": "You are nimbler. +2 Dexterity.", "prereqs": [ "DEX_UP" ], "changes_to": [ "DEX_UP_3" ], "category": [ "LIZARD", "SPIDER", "CHIMERA", "RAPTOR", "MOUSE", "RABBIT" ], @@ -4799,7 +4801,7 @@ "id": "DEX_UP_3", "name": { "str": "Extremely Dextrous" }, "points": 3, - "description": "You are nimble and quick. Dexterity + 4", + "description": "You are nimble and quick. +4 Dexterity.", "prereqs": [ "DEX_UP_2" ], "changes_to": [ "DEX_UP_4" ], "category": [ "BIRD", "ELFA", "FELINE" ], @@ -4810,7 +4812,7 @@ "id": "DEX_UP_4", "name": { "str": "Insanely Dextrous" }, "points": 4, - "description": "You are much nimbler than before. Dexterity + 7", + "description": "You are much nimbler than before. +7 Dexterity.", "prereqs": [ "DEX_UP_3" ], "threshreq": [ "THRESH_CEPHALOPOD", "THRESH_FISH" ], "category": [ "CEPHALOPOD", "FISH" ], @@ -4833,7 +4835,7 @@ "id": "INT_UP", "name": { "str": "Smart" }, "points": 1, - "description": "You are a little smarter. Intelligence + 1", + "description": "You are a little smarter. +1 Intelligence.", "changes_to": [ "INT_UP_2", "INT_ALPHA", "INT_SLIME" ], "category": [ "SLIME", "ALPHA" ], "passive_mods": { "int_mod": 1 } @@ -4843,7 +4845,7 @@ "id": "INT_UP_2", "name": { "str": "Very Smart" }, "points": 2, - "description": "You are smarter. Intelligence + 2", + "description": "You are smarter. +2 Intelligence.", "prereqs": [ "INT_UP" ], "changes_to": [ "INT_UP_3" ], "passive_mods": { "int_mod": 2 } @@ -4855,7 +4857,7 @@ "points": 3, "visibility": 1, "ugliness": 1, - "description": "You are much smarter, and your skull bulges slightly. Intelligence + 4", + "description": "You are much smarter, and your skull bulges slightly. +4 Intelligence.", "prereqs": [ "INT_UP_2" ], "changes_to": [ "INT_UP_4" ], "category": [ "ELFA" ], @@ -4868,7 +4870,7 @@ "points": 4, "visibility": 3, "ugliness": 3, - "description": "Your skull bulges noticeably due to your impressive brain. Intelligence + 7", + "description": "Your skull bulges noticeably due to your impressive brain. +7 Intelligence.", "prereqs": [ "INT_UP_3" ], "threshreq": [ "THRESH_CEPHALOPOD" ], "category": [ "CEPHALOPOD" ], @@ -4913,7 +4915,7 @@ "id": "PER_UP", "name": { "str": "Perceptive" }, "points": 1, - "description": "Your senses are a little keener. Perception + 1", + "description": "Your senses are a little keener. +1 Perception.", "changes_to": [ "PER_UP_2" ], "leads_to": [ "BIRD_EYE" ], "passive_mods": { "per_mod": 1 } @@ -4923,7 +4925,7 @@ "id": "PER_UP_2", "name": { "str": "Very Perceptive" }, "points": 2, - "description": "Your senses are keener. Perception + 2", + "description": "Your senses are keener. +2 Perception.", "prereqs": [ "PER_UP" ], "changes_to": [ "PER_UP_3", "PER_ALPHA" ], "category": [ "ALPHA", "CHIMERA", "BATRACHIAN" ], @@ -4934,7 +4936,7 @@ "id": "PER_UP_3", "name": { "str": "Extremely Perceptive" }, "points": 3, - "description": "Your senses are much keener. Perception + 4", + "description": "Your senses are much keener. +4 Perception.", "prereqs": [ "PER_UP_2" ], "changes_to": [ "PER_UP_4" ], "category": [ "ELFA", "RAPTOR" ], @@ -4945,7 +4947,7 @@ "id": "PER_UP_4", "name": { "str": "Insanely Perceptive" }, "points": 4, - "description": "You can sense things you never imagined. Perception + 7", + "description": "You can sense things you never imagined. +7 Perception.", "prereqs": [ "PER_UP_3" ], "threshreq": [ "THRESH_BIRD" ], "category": [ "BIRD" ], @@ -5269,6 +5271,7 @@ "scent_intensity": 1200, "prereqs": [ "SMELLY" ], "leads_to": [ "PHEROMONE_INSECT", "PHEROMONE_MAMMAL", "PHEROMONE_AMPHIBIAN" ], + "cancels": [ "WEAKSCENT" ], "category": [ "FISH", "BEAST", "SLIME", "CHIMERA", "URSINE", "BATRACHIAN" ] }, { @@ -5506,7 +5509,8 @@ "category": [ "BIRD", "SLIME", "ELFA" ], "movecost_modifier": 0.8, "attackcost_modifier": 0.8, - "weight_capacity_modifier": 0.6 + "weight_capacity_modifier": 0.6, + "enchantments": [ { "condition": "ALWAYS", "values": [ { "value": "EXTRA_BASH", "multiply": 0.8 } ] } ] }, { "type": "mutation", @@ -5538,7 +5542,7 @@ "id": "PERSISTENCE_HUNTER", "name": { "str": "Persistence Hunter" }, "points": 2, - "description": "You can pursue prey for miles and miles at a variety of paces until they stop from exhauastion.", + "description": "You can pursue prey for miles and miles at a variety of paces until they stop from exhaustion.", "types": [ "METABOLISM" ], "changes_to": [ "PERSISTENCE_HUNTER2" ], "category": [ "LUPINE" ], @@ -5677,7 +5681,7 @@ "id": "SLEEPY2", "name": { "str": "Very Sleepy" }, "points": -3, - "description": "You find yourself needing to sleep quite often. You'll spend about half of your time in or around bed.", + "description": "You find yourself needing to sleep quite often. You'll spend about half of your time in or around a bed.", "prereqs": [ "SLEEPY" ], "types": [ "SLEEP" ], "category": [ "FELINE" ], diff --git a/data/json/npcs/Backgrounds/burger_flipper_1.json b/data/json/npcs/Backgrounds/burger_flipper_1.json index 6b961b29d4208..a6129d88c64be 100644 --- a/data/json/npcs/Backgrounds/burger_flipper_1.json +++ b/data/json/npcs/Backgrounds/burger_flipper_1.json @@ -2,7 +2,7 @@ { "id": "BGSS_BURGER_FLIPPER_1_STORY1", "type": "talk_topic", - "dynamic_line": "Before this started, I had a crappy job flipping burgers at Sambal's Grille. Losing that isn't a big deal. Losing my mom and dad hurts a lot more. Last time I saw them alive, I just came home from school, grabbed a snack and went to work. I don't think I even told my mom I loved her, and I was pissed at my dad for some shit that really doesn't matter. Didn't matter then, really doesn't now. Things started going crazy while I was at work… The military rolled into town, and the evacuation alert sounded.", + "dynamic_line": "Before this started, I had a crappy job flipping burgers at Sambal's Grille. Losing that isn't a big deal. Losing my mom and dad hurts a lot more. Last time I saw them alive, I just came home from school, grabbed a snack and went to work. I don't think I even told my mom I loved her, and I was pissed at my dad for some shit that really doesn't matter. Didn't matter then, really doesn't now. Things started going crazy while I was at work… the military rolled into town, and the evacuation alert sounded.", "responses": [ { "text": "So, did you evacuate?", "topic": "BGSS_BURGER_FLIPPER_1_STORY2" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -12,7 +12,7 @@ { "id": "BGSS_BURGER_FLIPPER_1_STORY2", "type": "talk_topic", - "dynamic_line": "I didn't evacuate. I went home… saw some freaky shit on the way, but at the time I just thought it was riots or drugs. By the time I got there, my parents were gone. No sign of them. There was a big mess, stuff scattered everywhere like there'd been a struggle, and a little blood on the floor.", + "dynamic_line": "I didn't evacuate. I went home… saw some freaky shit on the way, but at the time I just thought it was riots or drugs. By the time I got there, my parents were gone. No sign of them. There was a big mess, stuff scattered everywhere like there'd been a struggle, and a little blood on the floor.", "responses": [ { "text": "So, did you evacuate?", "topic": "BGSS_BURGER_FLIPPER_1_STORY3" }, { "text": "", "topic": "TALK_FRIEND" }, diff --git a/data/json/npcs/Backgrounds/cop_1.json b/data/json/npcs/Backgrounds/cop_1.json index c41ee23354422..e1d92e9a3f90f 100644 --- a/data/json/npcs/Backgrounds/cop_1.json +++ b/data/json/npcs/Backgrounds/cop_1.json @@ -2,7 +2,7 @@ { "id": "BGSS_COP_1_STORY1", "type": "talk_topic", - "dynamic_line": "I was a cop. Small town sheriff. We got orders without even really knowing what they meant. At some point one of the g-men on the phone told me it was a Chinese attack, something in the water supply… I don't know if I believe it now, but at the time it was the best explanation. At first it was weird, a few people - - fighting like rabid animals. Then it got worse. I tried to control things, but it was just me and my deputies against a town in riot. Then things really got fucked up.", + "dynamic_line": "I was a cop. Small town sheriff. We got orders without even really knowing what they meant. At some point one of the g-men on the phone told me it was a Chinese attack, something in the water supply… I don't know if I believe it now, but at the time it was the best explanation. At first it was weird, a few people - - fighting like rabid animals. Then it got worse. I tried to control things, but it was just me and my deputies against a town in riot. Then things really got fucked up.", "responses": [ { "text": "What happened?", "topic": "BGSS_COP_1_STORY2" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -12,7 +12,7 @@ { "id": "BGSS_COP_1_STORY2", "type": "talk_topic", - "dynamic_line": "A big-ass hole opened up right in the middle of town, and a crawled out, right in front of the church. We unloaded into it, but bullets just bounced off. Got some civilians in the crossfire. It started just devouring people like potato chips into a gullet that looked like a rotting asshole with teeth, and… Well, I lost my nerve. I ran. I think I might have been the only person to escape. I haven't been able to even look at my badge since then.", + "dynamic_line": "A big-ass hole opened up right in the middle of town, and a crawled out, right in front of the church. We unloaded into it, but bullets just bounced off. Got some civilians in the crossfire. It started just devouring people like potato chips into a gullet that looked like a rotting asshole with teeth, and… well, I lost my nerve. I ran. I think I might have been the only person to escape. I haven't been able to even look at my badge since then.", "responses": [ { "text": "", "topic": "TALK_FRIEND" }, { "text": "", "topic": "TALK_DONE" } ] } ] diff --git a/data/json/npcs/Backgrounds/cop_2.json b/data/json/npcs/Backgrounds/cop_2.json index 6d0a9ff34786c..599b92f86137c 100644 --- a/data/json/npcs/Backgrounds/cop_2.json +++ b/data/json/npcs/Backgrounds/cop_2.json @@ -2,7 +2,7 @@ { "id": "BGSS_COP_2_STORY1", "type": "talk_topic", - "dynamic_line": "I was SWAT. By all rights I should be dead. We were called to control \"riots\", which we all know were the first hordes. Fat lot of good we were. Pretty sure we killed more civilians. Even among my crew, morale was piss poor and we were shooting wild. Then something hit us, something big. Might have been a bomb, I really don't remember. I woke up pinned underneath the SWAT van. I couldn't see anything… but I could hear it, . I could hear everything. I spent hours, maybe days under that van, not even trying to get out.", + "dynamic_line": "I was SWAT. By all rights I should be dead. We were called to control \"riots\", which we all know were the first hordes. Fat lot of good we were. Pretty sure we killed more civilians. Even among my crew, morale was piss poor and we were shooting wild. Then something hit us, something big. Might have been a bomb, I really don't remember. I woke up pinned underneath the SWAT van. I couldn't see anything… but I could hear it, . I could hear everything. I spent hours, maybe days under that van, not even trying to get out.", "responses": [ { "text": "But you did get out.", "topic": "BGSS_COP_2_STORY2" }, { "text": "", "topic": "TALK_FRIEND" } @@ -11,7 +11,7 @@ { "id": "BGSS_COP_2_STORY2", "type": "talk_topic", - "dynamic_line": "Eventually yes. It had been quiet for hours. I was parched, injured, and terrified. My training was maybe the only thing that kept me from freaking out. I decided to try to pull myself out and see how bad my injuries were. It was easy. The side of the van was torn open, and it turned out I was basically just lying under a little debris, with the ruins of the van tented around me. I wasn't even too badly hurt. I grabbed as much gear as I could, and I slipped out. It was night. I could hear fighting farther away in the city, so I went the other way. I made it a few blocks before I ran into any … I ran from them. I ran, and I ran, and I ran some more. And here I am.", + "dynamic_line": "Eventually yes. It had been quiet for hours. I was parched, injured, and terrified. My training was maybe the only thing that kept me from freaking out. I decided to try to pull myself out and see how bad my injuries were. It was easy. The side of the van was torn open, and it turned out I was basically just lying under a little debris, with the ruins of the van tented around me. I wasn't even too badly hurt. I grabbed as much gear as I could, and I slipped out. It was night. I could hear fighting farther away in the city, so I went the other way. I made it a few blocks before I ran into any … I ran from them. I ran, and I ran, and I ran some more. And here I am.", "responses": [ { "text": "", "topic": "TALK_FRIEND" }, { "text": "", "topic": "TALK_DONE" } ] } ] diff --git a/data/json/npcs/Backgrounds/evacuee_2.json b/data/json/npcs/Backgrounds/evacuee_2.json index e941512d4fd23..a056de7967a79 100644 --- a/data/json/npcs/Backgrounds/evacuee_2.json +++ b/data/json/npcs/Backgrounds/evacuee_2.json @@ -18,7 +18,7 @@ { "id": "BGSS_EVACUEE_2_STORY2", "type": "talk_topic", - "dynamic_line": "Things went south when our fearless leader decided we had to put down one of the other survivors that had been bitten. Her husband felt a bit strongly against that, and I wasn't too keen on it either; by this point, he'd already been wrong about a lot. Well, he took matters into his own hands and killed her. Then her husband decided one good turn deserves another, and killed the idiot. And then she got back up and I killed her again, and pulped our former leader. Unfortunately she'd given her husband a hell of a nip during the struggle, when he couldn't get his shit together enough to fight back. Not that I fucking blame him. We made it out of there together, but it was too much for him, he clearly wasn't in it anymore… The bite got infected, but it was another that finally killed him. And then I was alone.", + "dynamic_line": "Things went south when our fearless leader decided we had to put down one of the other survivors that had been bitten. Her husband felt a bit strongly against that, and I wasn't too keen on it either; by this point, he'd already been wrong about a lot. Well, he took matters into his own hands and killed her. Then her husband decided one good turn deserves another, and killed the idiot. And then she got back up and I killed her again, and pulped our former leader. Unfortunately she'd given her husband a hell of a nip during the struggle, when he couldn't get his shit together enough to fight back. Not that I fucking blame him. We made it out of there together, but it was too much for him, he clearly wasn't in it anymore… the bite got infected, but it was another that finally killed him. And then I was alone.", "responses": [ { "text": "", "topic": "TALK_FRIEND" }, { "text": "", "topic": "TALK_DONE" } ] }, { diff --git a/data/json/npcs/Backgrounds/evacuee_3.json b/data/json/npcs/Backgrounds/evacuee_3.json index f753a6fdd053b..a9bf976501ca3 100644 --- a/data/json/npcs/Backgrounds/evacuee_3.json +++ b/data/json/npcs/Backgrounds/evacuee_3.json @@ -2,7 +2,7 @@ { "id": "BGSS_EVACUEE_3_STORY1", "type": "talk_topic", - "dynamic_line": "There's nothing too special about me, I'm not sure why I survived. I got evacuated with a handful of others, but we were too late to make the second trip to a FEMA center. We got attacked by the dead… I was the only one to make it out. I never looked back.", + "dynamic_line": "There's nothing too special about me, I'm not sure why I survived. I got evacuated with a handful of others, but we were too late to make the second trip to a FEMA center. We got attacked by the dead… I was the only one to make it out. I never looked back.", "responses": [ { "text": "How did you survive after that?", diff --git a/data/json/npcs/Backgrounds/evacuee_5.json b/data/json/npcs/Backgrounds/evacuee_5.json index bfd88f16a16f2..b4482ef74189b 100644 --- a/data/json/npcs/Backgrounds/evacuee_5.json +++ b/data/json/npcs/Backgrounds/evacuee_5.json @@ -21,7 +21,7 @@ "dynamic_line": "Yeah, I'm sure you've seen them, they're everywhere. Like something out of an old sci-fi movie. Some of the others in the evac shelter got stung, it was no joke. I didn't stick around to see what the lasting effect was though. I'm not ashamed to admit I ran like a chicken.", "responses": [ { - "text": "But bees aren't usually aggressive… Do you mean wasps?", + "text": "But bees aren't usually aggressive… do you mean wasps?", "topic": "BGSS_EVACUEE_5_WASPS", "condition": { "u_has_perception": 8 } }, diff --git a/data/json/npcs/Backgrounds/grad_student_1.json b/data/json/npcs/Backgrounds/grad_student_1.json index 5de63cc5c9ebc..4cf18eaee312a 100644 --- a/data/json/npcs/Backgrounds/grad_student_1.json +++ b/data/json/npcs/Backgrounds/grad_student_1.json @@ -2,7 +2,7 @@ { "id": "BGSS_GRAD_STUDENT_1_STORY1", "type": "talk_topic", - "dynamic_line": "I'm not from around here… You can probably tell from the accent, I'm from the UK. I was here doing my PhD at Dartmouth. I was halfway to MIT for a conference when stopped me. I was staying at a flea-ridden little motel on the side of the road. When I got up for whatever was going to pass for breakfast, the fat bloody proprietor was sitting at his desk, wearing the same grubby clothes from the night before. I thought he had just slept there, but when he looked at me… well, you know what those Zed-eyes look like. He lunged, and I reacted without thinking. Smacked him on the head with my tablet, again and again, until he stopped coming for me. I never thought I had anything like that in me.", + "dynamic_line": "I'm not from around here… You can probably tell from the accent, I'm from the UK. I was here doing my PhD at Dartmouth. I was halfway to MIT for a conference when stopped me. I was staying at a flea-ridden little motel on the side of the road. When I got up for whatever was going to pass for breakfast, the fat bloody proprietor was sitting at his desk, wearing the same grubby clothes from the night before. I thought he had just slept there, but when he looked at me… well, you know what those Zed-eyes look like. He lunged, and I reacted without thinking. Smacked him on the head with my tablet, again and again, until he stopped coming for me. I never thought I had anything like that in me.", "responses": [ { "text": "What did you do next?", "topic": "BGSS_GRAD_STUDENT_1_STORY2" }, { "text": "What were you studying?", "topic": "BGSS_GRAD_STUDENT_1_FIELD" }, diff --git a/data/json/npcs/Backgrounds/high_school_1.json b/data/json/npcs/Backgrounds/high_school_1.json index 76378082358b7..de11235f75b49 100644 --- a/data/json/npcs/Backgrounds/high_school_1.json +++ b/data/json/npcs/Backgrounds/high_school_1.json @@ -2,7 +2,7 @@ { "id": "BGSS_HIGH_SCHOOL_1_STORY1", "type": "talk_topic", - "dynamic_line": "I was at school. I'm a senior. We'd heard about riots… It started with a kid showing videos of one of the big riots in Providence. You've probably seen it, the one where the woman turns to the camera and you can see her whole lower lip has been ripped off, and is just flapping there? It got so bad, they went over the PA system to tell us about Chinese drugs in the water supply. Right… Does anyone buy that explanation?", + "dynamic_line": "I was at school. I'm a senior. We'd heard about riots… it started with a kid showing videos of one of the big riots in Providence. You've probably seen it, the one where the woman turns to the camera and you can see her whole lower lip has been ripped off, and is just flapping there? It got so bad, they went over the PA system to tell us about Chinese drugs in the water supply. Right… does anyone buy that explanation?", "responses": [ { "text": "Where did things go from there?", "topic": "BGSS_HIGH_SCHOOL_1_STORY2" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -12,7 +12,7 @@ { "id": "BGSS_HIGH_SCHOOL_1_STORY2", "type": "talk_topic", - "dynamic_line": "I guess it got worse, because the faculty decided to put us in lockdown. For hours. And then the school buses showed up to evacuate us. Eventually, they ran out of buses. I was one of the lucky few who didn't have a bus to get on. The soldiers weren't much older than me… They didn't look like they knew what was going on. I lived just a few blocks away. I snuck off.", + "dynamic_line": "I guess it got worse, because the faculty decided to put us in lockdown. For hours. And then the school buses showed up to evacuate us. Eventually, they ran out of buses. I was one of the lucky few who didn't have a bus to get on. The soldiers weren't much older than me… they didn't look like they knew what was going on. I lived just a few blocks away. I snuck off.", "responses": [ { "text": "Did you get home?", "topic": "BGSS_HIGH_SCHOOL_1_STORY3" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -22,7 +22,7 @@ { "id": "BGSS_HIGH_SCHOOL_1_STORY3", "type": "talk_topic", - "dynamic_line": "Yeah. On the way there, I met some for real. They chased me, but I did pretty well in track. I lost them… But I couldn't get home, there were just too many. I wound up running more. Stole a bike and ran more again. I'm a bit better at killing those things now, but I haven't made it home yet. I guess I'm afraid of what I'll find.", + "dynamic_line": "Yeah. On the way there, I met some for real. They chased me, but I did pretty well in track. I lost them… but I couldn't get home, there were just too many. I wound up running more. Stole a bike and ran more again. I'm a bit better at killing those things now, but I haven't made it home yet. I guess I'm afraid of what I'll find.", "responses": [ { "text": "", "topic": "TALK_FRIEND" }, { "text": "", "topic": "TALK_DONE" } ] } ] diff --git a/data/json/npcs/Backgrounds/hospital_1.json b/data/json/npcs/Backgrounds/hospital_1.json index 569c892c60f73..c4e51fd4078e7 100644 --- a/data/json/npcs/Backgrounds/hospital_1.json +++ b/data/json/npcs/Backgrounds/hospital_1.json @@ -2,7 +2,7 @@ { "id": "BGSS_HOSPITAL_1_STORY1", "type": "talk_topic", - "dynamic_line": "I saw it all pretty early, before it all really started. I worked at the hospital. It started with a jump in the number of code whites - that's an aggressive patient. Wasn't my training so I didn't hear about it until later… but rumors started flying about hyperaggressive delirious patients that coded and seemed to die, then started attacking staff, and wouldn't respond to anything we hit them with. Then a friend of mine was killed by one of them, and I realized it wasn't just a few weird reports. I called in sick the next day.", + "dynamic_line": "I saw it all pretty early, before it all really started. I worked at the hospital. It started with a jump in the number of code whites - that's an aggressive patient. Wasn't my training so I didn't hear about it until later… but rumors started flying about hyperaggressive delirious patients that coded and seemed to die, then started attacking staff, and wouldn't respond to anything we hit them with. Then a friend of mine was killed by one of them, and I realized it wasn't just a few weird reports. I called in sick the next day.", "responses": [ { "text": "What happened on your sick day?", "topic": "BGSS_HOSPITAL_1_STORY2" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -32,7 +32,7 @@ { "id": "BGSS_HOSPITAL_1_STORY4", "type": "talk_topic", - "dynamic_line": "The military happened. They showed up and commandeered my land for some kind of forward base, demanding I evacuate to a FEMA camp. I didn't even try to argue… I had my dad's old hunting rifle, they had high tech weapons. I heard one of them joking about the FEMA camp being Auschwitz, though. I gave their evac driver the slip and decided to make for my sister's place up north. In theory I guess I'm still going that way, although honestly I'm just busy not dying.", + "dynamic_line": "The military happened. They showed up and commandeered my land for some kind of forward base, demanding I evacuate to a FEMA camp. I didn't even try to argue… I had my dad's old hunting rifle, they had high tech weapons. I heard one of them joking about the FEMA camp being Auschwitz, though. I gave their evac driver the slip and decided to make for my sister's place up north. In theory I guess I'm still going that way, although honestly I'm just busy not dying.", "responses": [ { "text": "", "topic": "TALK_FRIEND" }, { "text": "", "topic": "TALK_DONE" } ] } ] diff --git a/data/json/npcs/Backgrounds/hospital_2.json b/data/json/npcs/Backgrounds/hospital_2.json index 615803412de10..b32d1f5788e45 100644 --- a/data/json/npcs/Backgrounds/hospital_2.json +++ b/data/json/npcs/Backgrounds/hospital_2.json @@ -7,8 +7,8 @@ "yes": "I just can't talk about that right now. I can't.", "no": { "npc_has_effect": "player_BGSS_SAIDYES", - "yes": "I was at work at the hospital, when it all went down. It's a bit of a blur. For a while there were weird reports, stuff that sounded unbelievable about patients getting back up after dying, but mostly things were business as usual. Then, towards the end, stuff just skyrocketed. We thought it was a Chinese attack, and that's what we were being told. People coming in crazed, covered in wounds from bullets and bites. About halfway through my shift I… well, I broke.", - "no": "I was at work at the hospital, when it all went down. It's a bit of a blur. For a while there were weird reports, stuff that sounded unbelievable about patients getting back up after dying, but mostly things were business as usual. Then, towards the end, stuff just skyrocketed. We thought it was a Chinese attack, and that's what we were being told. People coming in crazed, covered in wounds from bullets and bites. About halfway through my shift I… well, I broke. I'd seen such horrible injuries, and then I… , I can't even talk about it." + "yes": "I was at work at the hospital, when it all went down. It's a bit of a blur. For a while there were weird reports, stuff that sounded unbelievable about patients getting back up after dying, but mostly things were business as usual. Then, towards the end, stuff just skyrocketed. We thought it was a Chinese attack, and that's what we were being told. People coming in crazed, covered in wounds from bullets and bites. About halfway through my shift I… well, I broke.", + "no": "I was at work at the hospital, when it all went down. It's a bit of a blur. For a while there were weird reports, stuff that sounded unbelievable about patients getting back up after dying, but mostly things were business as usual. Then, towards the end, stuff just skyrocketed. We thought it was a Chinese attack, and that's what we were being told. People coming in crazed, covered in wounds from bullets and bites. About halfway through my shift I… well, I broke. I'd seen such horrible injuries, and then I… , I can't even talk about it." } }, "responses": [ @@ -45,7 +45,7 @@ "dynamic_line": "No. I can't. Just, no.", "responses": [ { - "text": "Sorry… I'll let you be.", + "text": "Sorry… I'll let you be.", "effect": { "npc_add_effect": "player_BGSS_SAIDNO", "duration": 14000 }, "topic": "TALK_DONE" } @@ -54,7 +54,7 @@ { "id": "BGSS_HOSPITAL_2_STORY2", "type": "talk_topic", - "dynamic_line": "A young mother. I know she was a mother, because I delivered her baby. Sweet girl, she… she had a good sense of humor. She came in, spitting that black goo, fighting the orderlies, dead from a bullet wound through the chest. That's when I … I don't know if I woke up, finally, or if I finally went crazy. Either way, I broke. I broke a lot earlier than my colleagues, and that's the only reason I lived. I skipped out, went to a dead corner of the hospital I used to hide in when I was a resident. An old stairwell leading to a closed-off unit the maintenance staff were using to store old equipment. I hid there for hours, while I listened to the world crumbling outside and inside.", + "dynamic_line": "A young mother. I know she was a mother, because I delivered her baby. Sweet girl, she… she had a good sense of humor. She came in, spitting that black goo, fighting the orderlies, dead from a bullet wound through the chest. That's when I… I don't know if I woke up, finally, or if I finally went crazy. Either way, I broke. I broke a lot earlier than my colleagues, and that's the only reason I lived. I skipped out, went to a dead corner of the hospital I used to hide in when I was a resident. An old stairwell leading to a closed-off unit the maintenance staff were using to store old equipment. I hid there for hours, while I listened to the world crumbling outside and inside.", "responses": [ { "text": "How did you get out of there?", @@ -76,7 +76,7 @@ { "id": "BGSS_HOSPITAL_2_STORY3", "type": "talk_topic", - "dynamic_line": "Somehow, I don't know how, I managed to fall asleep in there. I think it might have started with me hyperventilating and passing out. When I woke up it was night, I was starving and parched, and… and the screaming had died down. At first I tried to go out the way I came in, but I peaked out the window and saw one of the nurses stumbling around, spitting that black shit up. Her name was Becky. She wasn't Becky anymore. So, I went back up and somehow made it into the storage area. From there, the roof. I drank water from some nasty old puddle and I camped out there for a while, watching the city around me burn.", + "dynamic_line": "Somehow, I don't know how, I managed to fall asleep in there. I think it might have started with me hyperventilating and passing out. When I woke up it was night, I was starving and parched, and… and the screaming had died down. At first I tried to go out the way I came in, but I peaked out the window and saw one of the nurses stumbling around, spitting that black shit up. Her name was Becky. She wasn't Becky anymore. So, I went back up and somehow made it into the storage area. From there, the roof. I drank water from some nasty old puddle and I camped out there for a while, watching the city around me burn.", "responses": [ { "text": "What finally brought you down?", "topic": "BGSS_HOSPITAL_2_STORY4" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -86,7 +86,7 @@ { "id": "BGSS_HOSPITAL_2_STORY4", "type": "talk_topic", - "dynamic_line": "Well, I still didn't have any food. Eventually I had to climb down the side of the building… so I did, as quietly as I could. It was night, and I have pretty good nightvision. Apparently the zombies don't, because I was able to slip right past them and steal a bicycle that was just laying on the side of the road. I'd kind of scouted out my route from above… I'm not from a big city, the hospital was the tallest building around. I avoided the major military blockades, and headed out of town towards a friend's old cabin. I had to fight off a couple of the , but I managed to avoid any big fuss, by some miracle. I never made it to the cabin, but that's not important now.", + "dynamic_line": "Well, I still didn't have any food. Eventually I had to climb down the side of the building… so I did, as quietly as I could. It was night, and I have pretty good nightvision. Apparently the zombies don't, because I was able to slip right past them and steal a bicycle that was just laying on the side of the road. I'd kind of scouted out my route from above… I'm not from a big city, the hospital was the tallest building around. I avoided the major military blockades, and headed out of town towards a friend's old cabin. I had to fight off a couple of the , but I managed to avoid any big fuss, by some miracle. I never made it to the cabin, but that's not important now.", "//": "In the future this NPC should give you the map coordinates to the cabin if you persuade.", "responses": [ { "text": "What did you see, up there on the roof?", "topic": "BGSS_HOSPITAL_2_ROOF" }, diff --git a/data/json/npcs/Backgrounds/hospital_3.json b/data/json/npcs/Backgrounds/hospital_3.json index bf2bb6047c052..6c9f56cb6ccdf 100644 --- a/data/json/npcs/Backgrounds/hospital_3.json +++ b/data/json/npcs/Backgrounds/hospital_3.json @@ -2,7 +2,7 @@ { "id": "BGSS_HOSPITAL_3_STORY1", "type": "talk_topic", - "dynamic_line": "I was called in to work at the hospital. I don't usually work there, I'm a community doctor. I don't really love emergency medicine at the best of times, and when your patient keeps trying to rip your face off, well, it takes the last bit of fun out of it. You might think I'm a coward, but I slipped out early on, and I've got no regrets. There was nothing I could have done except die like everyone else. I couldn't get out of the building, the military had blockaded us in… so I went to the most secure, quiet damned place in the building.", + "dynamic_line": "I was called in to work at the hospital. I don't usually work there, I'm a community doctor. I don't really love emergency medicine at the best of times, and when your patient keeps trying to rip your face off, well, it takes the last bit of fun out of it. You might think I'm a coward, but I slipped out early on, and I've got no regrets. There was nothing I could have done except die like everyone else. I couldn't get out of the building, the military had blockaded us in… so I went to the most secure, quiet damned place in the building.", "responses": [ { "text": "Where was that?", "topic": "BGSS_HOSPITAL_3_STORY2" }, { "text": "", "topic": "TALK_FRIEND" } @@ -11,7 +11,7 @@ { "id": "BGSS_HOSPITAL_3_STORY2", "type": "talk_topic", - "dynamic_line": "The morgue. Seems like a dumb place to go at the start of a zombie apocalypse, right? Thing is, nobody had made it to the morgue in quite a while, the bodies were reanimating too quickly and the staff were just too busy. I was shaking and puking and I could see the world was ending… I bundled myself up, grabbed a few snacks from the pathologist's desk, and crawled into one of those drawers to contemplate the end of the world. After breaking the handle to make sure it couldn't lock behind me, of course. It was safe and quiet in there. Not just my cubby, the whole morgue. At first it was because nobody was enough to come down there except me. Later, it was because nobody was left.", + "dynamic_line": "The morgue. Seems like a dumb place to go at the start of a zombie apocalypse, right? Thing is, nobody had made it to the morgue in quite a while, the bodies were reanimating too quickly and the staff were just too busy. I was shaking and puking and I could see the world was ending… I bundled myself up, grabbed a few snacks from the pathologist's desk, and crawled into one of those drawers to contemplate the end of the world. After breaking the handle to make sure it couldn't lock behind me, of course. It was safe and quiet in there. Not just my cubby, the whole morgue. At first it was because nobody was enough to come down there except me. Later, it was because nobody was left.", "responses": [ { "text": "Clearly you escaped at some point.", "topic": "BGSS_HOSPITAL_3_STORY3" }, { "text": "", "topic": "TALK_FRIEND" }, diff --git a/data/json/npcs/Backgrounds/hunter_1.json b/data/json/npcs/Backgrounds/hunter_1.json index 9d5271a4bb032..2ea2f4b7a6be3 100644 --- a/data/json/npcs/Backgrounds/hunter_1.json +++ b/data/json/npcs/Backgrounds/hunter_1.json @@ -12,7 +12,7 @@ { "id": "BGSS_HUNTER_1_STORY2", "type": "talk_topic", - "dynamic_line": "Yeah, it was like a … like a soft shelled crab, with tentacle mouths, and it kept talking in different voices. I saw it before it saw me, and I capped it with my Remington. That just pissed it off, but I got another couple shots off while it charged me. Third or fourth shot took it down. I figured out shit had hit the fan, somehow. Headed to my cabin and camped out there for a while, but I had to skip out when a bunch of showed up and trashed the place. I ran into you not much later.", + "dynamic_line": "Yeah, it was like a… like a soft shelled crab, with tentacle mouths, and it kept talking in different voices. I saw it before it saw me, and I capped it with my Remington. That just pissed it off, but I got another couple shots off while it charged me. Third or fourth shot took it down. I figured out shit had hit the fan, somehow. Headed to my cabin and camped out there for a while, but I had to skip out when a bunch of showed up and trashed the place. I ran into you not much later.", "responses": [ { "text": "", "topic": "TALK_FRIEND" } ] } ] diff --git a/data/json/npcs/Backgrounds/hunter_2.json b/data/json/npcs/Backgrounds/hunter_2.json index 2f6c8cd2fd6a0..093874407ef54 100644 --- a/data/json/npcs/Backgrounds/hunter_2.json +++ b/data/json/npcs/Backgrounds/hunter_2.json @@ -2,7 +2,7 @@ { "id": "BGSS_HUNTER_2_STORY1", "type": "talk_topic", - "dynamic_line": "My brother and I were out on a hunting trip. We saw helicopters overhead… big, military ones, loaded up with crazy high-end military stuff like you only see on TV. Laser cannons even. They were heading in the direction of our parent's ranch. Something about it really shook us up, and we started heading back that way… we weren't that far off when we saw this huge, floating eyeball appear out of nowhere. Ha. Hard to believe we're in a time where I don't feel like I need to convince you I'm telling the truth.", + "dynamic_line": "My brother and I were out on a hunting trip. We saw helicopters overhead… big, military ones, loaded up with crazy high-end military stuff like you only see on TV. Laser cannons even. They were heading in the direction of our parent's ranch. Something about it really shook us up, and we started heading back that way… we weren't that far off when we saw this huge, floating eyeball appear out of nowhere. Ha. Hard to believe we're in a time where I don't feel like I need to convince you I'm telling the truth.", "responses": [ { "text": "What happened next?", "topic": "BGSS_HUNTER_2_STORY2" }, { "text": "", "topic": "TALK_FRIEND" } @@ -11,7 +11,7 @@ { "id": "BGSS_HUNTER_2_STORY2", "type": "talk_topic", - "dynamic_line": "We watched the eyeball just blast one of the Apache choppers with some kind of ray. The chopper fired back, but it went down. It was coming right for us… I veered, got out of the way, but a chunk of the chopper smacked into the bed and our truck did a crazy backflip right off the road. The impact knocked me out cold. My brother … he wasn't so lucky.", + "dynamic_line": "We watched the eyeball just blast one of the Apache choppers with some kind of ray. The chopper fired back, but it went down. It was coming right for us… I veered, got out of the way, but a chunk of the chopper smacked into the bed and our truck did a crazy backflip right off the road. The impact knocked me out cold. My brother… he wasn't so lucky.", "responses": [ { "text": "Oh, no.", "topic": "BGSS_HUNTER_2_STORY3" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -21,7 +21,7 @@ { "id": "BGSS_HUNTER_2_STORY3", "type": "talk_topic", - "dynamic_line": "Yeah… the… the accident got him, but when I came to he was already coming back. Thank god for seatbelts, right? He was screeching and flapping around, hanging upside down. I thought he was just hurt at first, but he just kept coming at me while I tried to talk to him. His arm was badly hurt already and instead of unbuckling himself he started… he was ripping it right off pulling against the seatbelt. That, and the crazy shit with the chopper, was when I realized just how fucked up things had got. I grabbed my hunting knife and ran, but my brother got out and started crawling after me.", + "dynamic_line": "Yeah… the… the accident got him, but when I came to he was already coming back. Thank god for seatbelts, right? He was screeching and flapping around, hanging upside down. I thought he was just hurt at first, but he just kept coming at me while I tried to talk to him. His arm was badly hurt already and instead of unbuckling himself he started… he was ripping it right off pulling against the seatbelt. That, and the crazy shit with the chopper, was when I realized just how fucked up things had got. I grabbed my hunting knife and ran, but my brother got out and started crawling after me.", "responses": [ { "text": "Did you keep running?", "topic": "BGSS_HUNTER_2_STORY4" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -31,7 +31,7 @@ { "id": "BGSS_HUNTER_2_STORY4", "type": "talk_topic", - "dynamic_line": "I ran for a little bit, but then I saw soldier zombies crawling out of that chopper. They had the same look about them as my brother did, and it was them on one side and him on the other. I'm no genius but I've seen a few movies: I figured out what was happening. I didn't want to take on Kevlar armor with my knife, so I turned back and faced the other zombie. I couldn't let my brother stay… like that. So I did what I had to, and I guess I'll live with that forever.", + "dynamic_line": "I ran for a little bit, but then I saw soldier zombies crawling out of that chopper. They had the same look about them as my brother did, and it was them on one side and him on the other. I'm no genius but I've seen a few movies: I figured out what was happening. I didn't want to take on Kevlar armor with my knife, so I turned back and faced the other zombie. I couldn't let my brother stay… like that. So I did what I had to, and I guess I'll live with that forever.", "responses": [ { "text": "Thanks for telling me your story. ", "topic": "TALK_FRIEND" }, { "text": "", "topic": "TALK_DONE" } diff --git a/data/json/npcs/Backgrounds/lab_1.json b/data/json/npcs/Backgrounds/lab_1.json index 098f3d6ed7fb4..ddece66d1e186 100644 --- a/data/json/npcs/Backgrounds/lab_1.json +++ b/data/json/npcs/Backgrounds/lab_1.json @@ -2,7 +2,7 @@ { "id": "BGSS_LAB_1_STORY1", "type": "talk_topic", - "dynamic_line": "For me, this started a couple days before . I'm a biochemist. I did my postdoc work with a brilliant colleague, Pat Dionne. I hadn't talked to Pat in ages… Word has it, the government got wind of our thesis, found out Pat did most of the heavy lifting, and that was the last we talked for years. So, I was a bit surprised to see an e-mail from Pat.Dionne@FreeMailNow.co.ru… Even more surprised when it was a series of nostalgic references to a D&D game we played years earlier.", + "dynamic_line": "For me, this started a couple days before . I'm a biochemist. I did my postdoc work with a brilliant colleague, Pat Dionne. I hadn't talked to Pat in ages… word has it, the government got wind of our thesis, found out Pat did most of the heavy lifting, and that was the last we talked for years. So, I was a bit surprised to see an e-mail from Pat.Dionne@FreeMailNow.co.ru… even more surprised when it was a series of nostalgic references to a D&D game we played years earlier.", "responses": [ { "text": "I don't see where this is going.", "topic": "BGSS_LAB_1_STORY2" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -33,7 +33,7 @@ "id": "BGSS_LAB_1_DIONNE1", "type": "talk_topic", "dynamic_line": "There was, yeah, but it was cryptic. If I had a copy of Pat's notes, I could probably decipher it, but I'm sure those burned up in . They bombed those labs, you know.", - "//": "TK, give player the option to give this guy a copy of the Dionne report, in return for some special info about XE037… probably gated over time, giving the NPC a few days to read further.", + "//": "TK, give player the option to give this guy a copy of the Dionne report, in return for some special info about XE037… probably gated over time, giving the NPC a few days to read further.", "responses": [ { "text": "", "topic": "TALK_FRIEND" }, { "text": "", "topic": "TALK_DONE" } ] } ] diff --git a/data/json/npcs/Backgrounds/left_for_dead_2.json b/data/json/npcs/Backgrounds/left_for_dead_2.json index 8885d485adb3d..a04e76dae3d21 100644 --- a/data/json/npcs/Backgrounds/left_for_dead_2.json +++ b/data/json/npcs/Backgrounds/left_for_dead_2.json @@ -2,7 +2,7 @@ { "id": "BGSS_LEFT_FOR_DEAD_2_STORY1", "type": "talk_topic", - "dynamic_line": "I was home with the flu when the world went to shit, and when I recovered enough to make a run to the store for groceries… Well, I've been running ever since.", + "dynamic_line": "I was home with the flu when the world went to shit, and when I recovered enough to make a run to the store for groceries… well, I've been running ever since.", "responses": [ { "text": "Come on, don't leave me hanging.", "topic": "BGSS_LEFT_FOR_DEAD_2_STORY2" }, { "text": "", "topic": "TALK_FRIEND" }, diff --git a/data/json/npcs/Backgrounds/lost_partner_1.json b/data/json/npcs/Backgrounds/lost_partner_1.json index cdb8b6ad8a04c..7df778889ee57 100644 --- a/data/json/npcs/Backgrounds/lost_partner_1.json +++ b/data/json/npcs/Backgrounds/lost_partner_1.json @@ -34,7 +34,7 @@ { "id": "BGSS_LOST_PARTNER_1_YEAH", "type": "talk_topic", - "dynamic_line": "I guess those of us who made it this far have to have made it for a reason, or something. I don't mean like a religious reason, just… we're survivors.", + "dynamic_line": "I guess those of us who made it this far have to have made it for a reason, or something. I don't mean like a religious reason, just… we're survivors.", "responses": [ { "text": "Tell me about those plant monsters.", "topic": "BGSS_LOST_PARTNER_1_TRIFFIDS" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -44,7 +44,7 @@ { "id": "BGSS_LOST_PARTNER_1_NOWAY", "type": "talk_topic", - "dynamic_line": "Haha, yeah, I can see why you'd think that. I don't mean it's a good apocalypse. I just mean that at least now I know what I'm doing every day. I'd still kill a hundred zombies for an internet connection and a night watching crappy movies with… sorry. Let's change the subject.", + "dynamic_line": "Haha, yeah, I can see why you'd think that. I don't mean it's a good apocalypse. I just mean that at least now I know what I'm doing every day. I'd still kill a hundred zombies for an internet connection and a night watching crappy movies with… sorry. Let's change the subject.", "responses": [ { "text": "Tell me about those plant monsters.", "topic": "BGSS_LOST_PARTNER_1_TRIFFIDS" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -54,7 +54,7 @@ { "id": "BGSS_LOST_PARTNER_1_TRIFFIDS", "type": "talk_topic", - "dynamic_line": "Yeah, have you seen them yet? They're these walking flowers with a big stinger in the middle. They travel in packs. They hate the zombies, and we were using them for cover to clear a horde of the dead. Unfortunately, turns out the plants are better trackers than the . They almost seemed intelligent… I barely made it out, only because they were, uh, distracted.", + "dynamic_line": "Yeah, have you seen them yet? They're these walking flowers with a big stinger in the middle. They travel in packs. They hate the zombies, and we were using them for cover to clear a horde of the dead. Unfortunately, turns out the plants are better trackers than the . They almost seemed intelligent… I barely made it out, only because they were, uh, distracted.", "//": "In a future version this NPC might give you directions to a triffid grove.", "responses": [ { "text": "I'm sorry you lost someone.", "topic": "BGSS_LOST_PARTNER_1_STORY2" }, diff --git a/data/json/npcs/Backgrounds/lost_partner_2.json b/data/json/npcs/Backgrounds/lost_partner_2.json index c867c2def8704..59bbe4ae69511 100644 --- a/data/json/npcs/Backgrounds/lost_partner_2.json +++ b/data/json/npcs/Backgrounds/lost_partner_2.json @@ -129,8 +129,8 @@ "dynamic_line": [ { "npc_female": true, - "yes": "I did. Took a few hours to get an opening. And you wanna know the fucked up part? Like, out of all this? My husband was still alive. He'd been in the basement the whole time, pinned under a collapsed piece of floor. And he'd lost a ton of blood, he was delirious by the time I found him. I couldn't get him out, so I gave him food and water and just stayed with him and held his hand until he passed. And then… well, then I did what you have to do to the dead now. And then I packed up the last few fragments of my life, and I try to never look back.", - "no": "I did. Took a few hours to get an opening. And you wanna know the fucked up part? Like, out of all this? My wife was still alive. She'd been in the basement the whole time, pinned under a collapsed piece of floor. And she'd lost a ton of blood, she was delirious by the time I found her. I couldn't get her out, so I gave her food and water and just stayed with her and held her hand until she passed. And then… well, then I did what you have to do to the dead now. And then I packed up the last few fragments of my life, and I try to never look back." + "yes": "I did. Took a few hours to get an opening. And you wanna know the fucked up part? Like, out of all this? My husband was still alive. He'd been in the basement the whole time, pinned under a collapsed piece of floor. And he'd lost a ton of blood, he was delirious by the time I found him. I couldn't get him out, so I gave him food and water and just stayed with him and held his hand until he passed. And then… well, then I did what you have to do to the dead now. And then I packed up the last few fragments of my life, and I try to never look back.", + "no": "I did. Took a few hours to get an opening. And you wanna know the fucked up part? Like, out of all this? My wife was still alive. She'd been in the basement the whole time, pinned under a collapsed piece of floor. And she'd lost a ton of blood, she was delirious by the time I found her. I couldn't get her out, so I gave her food and water and just stayed with her and held her hand until she passed. And then… well, then I did what you have to do to the dead now. And then I packed up the last few fragments of my life, and I try to never look back." } ], "responses": [ diff --git a/data/json/npcs/Backgrounds/nerd_1.json b/data/json/npcs/Backgrounds/nerd_1.json index 5ae42ddf5bd1a..5cbe2d22d266a 100644 --- a/data/json/npcs/Backgrounds/nerd_1.json +++ b/data/json/npcs/Backgrounds/nerd_1.json @@ -2,7 +2,7 @@ { "id": "BGSS_NERD_1_STORY1", "type": "talk_topic", - "dynamic_line": "I was at school for . Funny thing, actually: I was gearing up to run a zombie survival RPG with my friends on the weekend. Ha, I didn't think it'd turn into a LARP! Okay… No, that wasn't funny.", + "dynamic_line": "I was at school for . Funny thing, actually: I was gearing up to run a zombie survival RPG with my friends on the weekend. Ha, I didn't think it'd turn into a LARP! Okay…. No, that wasn't funny.", "responses": [ { "text": "How did you survive school?", "topic": "BGSS_NERD_1_STORY2" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -12,7 +12,7 @@ { "id": "BGSS_NERD_1_STORY2", "type": "talk_topic", - "dynamic_line": "Well, I may be a huge nerd, but I'm not an idiot. Plus I'm genre savvy. We'd already heard about people coming back from the dead, actually that's why I was doing the RPG. When the cops came to put the school on lockdown I managed to slip out the back. I live a long way out of town, but there was no way I was going to take a bus home, so I walked. Two hours. Heard a lot of sirens, and I even saw jets overhead. It was getting late when I got back, but my mom and dad weren't back from work yet. I stayed there, hoping they'd come. I sent texts but got no reply. After a few days, well… The news got worse and worse, then it stopped completely.", + "dynamic_line": "Well, I may be a huge nerd, but I'm not an idiot. Plus I'm genre savvy. We'd already heard about people coming back from the dead, actually that's why I was doing the RPG. When the cops came to put the school on lockdown I managed to slip out the back. I live a long way out of town, but there was no way I was going to take a bus home, so I walked. Two hours. Heard a lot of sirens, and I even saw jets overhead. It was getting late when I got back, but my mom and dad weren't back from work yet. I stayed there, hoping they'd come. I sent texts but got no reply. After a few days, well… the news got worse and worse, then it stopped completely.", "responses": [ { "text": "What about your parents?", "topic": "BGSS_NERD_1_PARENTS" }, { "text": "What got you out of there?", "topic": "BGSS_NERD_1_STORY3" }, @@ -23,7 +23,7 @@ { "id": "BGSS_NERD_1_PARENTS", "type": "talk_topic", - "dynamic_line": "I'm not stupid. I know they're gone. Who knows where… Maybe in an evac shelter, maybe in a FEMA camp. Most of everyone is dead.", + "dynamic_line": "I'm not stupid. I know they're gone. Who knows where… maybe in an evac shelter, maybe in a FEMA camp. Most of everyone is dead.", "responses": [ { "text": "What got you out of the house?", "topic": "BGSS_NERD_1_STORY3" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -33,7 +33,7 @@ { "id": "BGSS_NERD_1_STORY3", "type": "talk_topic", - "dynamic_line": "Eventually the zombies came. I figured they would. Before the net cut out, there were plenty of videos online making it clear enough what was going on. I'd picked out some good gear and loaded my bag up with supplies… When they started knocking at the door, I slipped out the back and took to the street. And here I am.", + "dynamic_line": "Eventually the zombies came. I figured they would. Before the net cut out, there were plenty of videos online making it clear enough what was going on. I'd picked out some good gear and loaded my bag up with supplies…. When they started knocking at the door, I slipped out the back and took to the street. And here I am.", "responses": [ { "text": "What about your parents?", "topic": "BGSS_NERD_1_PARENTS" }, { "text": "", "topic": "TALK_FRIEND" }, diff --git a/data/json/npcs/Backgrounds/no_past_2.json b/data/json/npcs/Backgrounds/no_past_2.json index be7c226dee10c..f49a1293968cd 100644 --- a/data/json/npcs/Backgrounds/no_past_2.json +++ b/data/json/npcs/Backgrounds/no_past_2.json @@ -2,13 +2,13 @@ { "id": "CWH_NO_PAST_2_IDEAS1", "type": "talk_topic", - "dynamic_line": "To be honest… I don't really remember. I remember vague details of my life before the world was like this, but itself? It's all a blur. I think something pretty bad must have happened to me. I remember a few things: snatches of violence, something about a woman killing her baby. I feel like I'd rather not remember.", + "dynamic_line": "To be honest… I don't really remember. I remember vague details of my life before the world was like this, but itself? It's all a blur. I think something pretty bad must have happened to me. I remember a few things: snatches of violence, something about a woman killing her baby. I feel like I'd rather not remember.", "responses": [ { "text": "Huh.", "topic": "TALK_FRIEND" } ] }, { "id": "BGSS_NO_PAST_2_STORY1", "type": "talk_topic", - "dynamic_line": "To be honest… I don't really remember. I remember vague details of my life before the world was like this, but itself? It's all a blur. I don't know how I got where I am now, or how any of this happened. I think something pretty bad must have happened to me. Or maybe I was just hit in the head really hard. Or both. Both seems likely. First thing I remember is seeing an already-read text on my phone from the emergency government broadcast system, saying the United States had fallen.", + "dynamic_line": "To be honest… I don't really remember. I remember vague details of my life before the world was like this, but itself? It's all a blur. I don't know how I got where I am now, or how any of this happened. I think something pretty bad must have happened to me. Or maybe I was just hit in the head really hard. Or both. Both seems likely. First thing I remember is seeing an already-read text on my phone from the emergency government broadcast system, saying the United States had fallen.", "responses": [ { "text": "Huh.", "topic": "TALK_FRIEND" } ] } ] diff --git a/data/json/npcs/Backgrounds/out_of_town_2.json b/data/json/npcs/Backgrounds/out_of_town_2.json index 2a0da9c55cf7d..6da3851c38e65 100644 --- a/data/json/npcs/Backgrounds/out_of_town_2.json +++ b/data/json/npcs/Backgrounds/out_of_town_2.json @@ -2,7 +2,7 @@ { "id": "BGSS_OUT_OF_TOWN_2_STORY1", "type": "talk_topic", - "dynamic_line": "I was out on a fishing trip with my friend when it happened. I don't know exactly how the days line up… our first clue that Armageddon had come was when we got blasted by some kind of poison wind, with a sort of acid mist in it that burnt our eyes and skin. We weren't sure what to make of it so we went inside to rest up, and while we were in there a weird dust settled over everything.", + "dynamic_line": "I was out on a fishing trip with my friend when it happened. I don't know exactly how the days line up… our first clue that Armageddon had come was when we got blasted by some kind of poison wind, with a sort of acid mist in it that burnt our eyes and skin. We weren't sure what to make of it so we went inside to rest up, and while we were in there a weird dust settled over everything.", "responses": [ { "text": "What happened after the acid mist?", "topic": "BGSS_OUT_OF_TOWN_2_STORY2" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -32,7 +32,7 @@ { "id": "BGSS_OUT_OF_TOWN_2_STORY4", "type": "talk_topic", - "dynamic_line": "The shop was empty, actually. She was desperate though, so I broke in. I found out more about the chaos in towns from the store radio. Got my friend some painkillers and gravol, but when I came out to the boat, well… it was too late for her.", + "dynamic_line": "The shop was empty, actually. She was desperate though, so I broke in. I found out more about the chaos in towns from the store radio. Got my friend some painkillers and gravol, but when I came out to the boat, well… it was too late for her.", "responses": [ { "text": "She was dead?", "topic": "BGSS_OUT_OF_TOWN_2_STORY5" }, { "text": "", "topic": "TALK_FRIEND" }, @@ -42,7 +42,7 @@ { "id": "BGSS_OUT_OF_TOWN_2_STORY5", "type": "talk_topic", - "dynamic_line": "I wish. That would have been a mercy. She was letting out an awful, choking scream, and her body was shredding itself apart. Mushrooms were busting out of every part of her. I… I ran. Now I wish that I'd put her out of her misery, but going back there now would be suicide.", + "dynamic_line": "I wish. That would have been a mercy. She was letting out an awful, choking scream, and her body was shredding itself apart. Mushrooms were busting out of every part of her. I… I ran. Now I wish that I'd put her out of her misery, but going back there now would be suicide.", "//": "In the future this NPC might give you the coordinates of his friend where you can go take down a fungal grove of some kind.", "responses": [ { "text": "That's awful. ", "topic": "TALK_FRIEND" }, diff --git a/data/json/npcs/Backgrounds/prisoner_1.json b/data/json/npcs/Backgrounds/prisoner_1.json index 61e5c15bea938..a53f7aa155c88 100644 --- a/data/json/npcs/Backgrounds/prisoner_1.json +++ b/data/json/npcs/Backgrounds/prisoner_1.json @@ -184,7 +184,7 @@ { "id": "BGSS_PRISONER_1_IN_FOR_BIOWEAPON", "type": "talk_topic", - "dynamic_line": "It's a bit of a … it's a thing. It started out as a dare. I wound up making a bioweapon. It didn't get used or anything, but, well, it got out of hand.", + "dynamic_line": "It's a bit of a… it's a thing. It started out as a dare. I wound up making a bioweapon. It didn't get used or anything, but, well, it got out of hand.", "responses": [ { "text": "", "topic": "TALK_NONE" }, { "text": "", "topic": "TALK_DONE" } ] }, { diff --git a/data/json/npcs/Backgrounds/professor_1.json b/data/json/npcs/Backgrounds/professor_1.json index e85ce196f22cf..038e63356e033 100644 --- a/data/json/npcs/Backgrounds/professor_1.json +++ b/data/json/npcs/Backgrounds/professor_1.json @@ -2,7 +2,7 @@ { "id": "BGSS_PROFESSOR_1_STORY1", "type": "talk_topic", - "dynamic_line": "I'm actually a chemistry professor at Harvard. I'd been on sabbatical for the last six months. I can't imagine the university was a good place to be, given what I've heard about Boston… I'm not sure anyone made it out. I was out at my cabin near Chatham, ostensibly working on the finishing touches for a paper, but mostly just sipping whisky and thanking my lucky stars for tenure. Those were good days. Then came , the military convoys, the . My cabin was crushed by a , just collateral damage after it got blasted off Orleans by a tank. I was already busy running frantically by then.", + "dynamic_line": "I'm actually a chemistry professor at Harvard. I'd been on sabbatical for the last six months. I can't imagine the university was a good place to be, given what I've heard about Boston… I'm not sure anyone made it out. I was out at my cabin near Chatham, ostensibly working on the finishing touches for a paper, but mostly just sipping whisky and thanking my lucky stars for tenure. Those were good days. Then came , the military convoys, the . My cabin was crushed by a , just collateral damage after it got blasted off Orleans by a tank. I was already busy running frantically by then.", "responses": [ { "text": "Do you think there's some way your knowledge could help us understand all this?", diff --git a/data/json/npcs/Backgrounds/religious_1.json b/data/json/npcs/Backgrounds/religious_1.json index 93b87422af825..8ccba178f97c3 100644 --- a/data/json/npcs/Backgrounds/religious_1.json +++ b/data/json/npcs/Backgrounds/religious_1.json @@ -12,7 +12,7 @@ { "id": "BGSS_RELIGIOUS_1_STORY2", "type": "talk_topic", - "dynamic_line": "Of course. It's clear enough, isn't it? That… that end, was the Rapture. I'm still here, and I still don't understand why, but I will keep Jesus in my heart through the Tribulations to come. When they're past, I'm sure He will welcome me into the Kingdom of Heaven. Or… or something along those lines. It's not going exactly like I thought it would, but that's prophecy for you.", + "dynamic_line": "Of course. It's clear enough, isn't it? That… that end, was the Rapture. I'm still here, and I still don't understand why, but I will keep Jesus in my heart through the Tribulations to come. When they're past, I'm sure He will welcome me into the Kingdom of Heaven. Or… or something along those lines. It's not going exactly like I thought it would, but that's prophecy for you.", "responses": [ { "text": "What if you're wrong?", @@ -62,7 +62,7 @@ { "id": "CWH_RELIGIOUS_1_IDEAS1", "type": "talk_topic", - "dynamic_line": "It's clear enough, isn't it? That… that end, was the Rapture. I'm still here, and I still don't understand why, but I will keep Jesus in my heart through the Tribulations to come. When they're past, I'm sure He will welcome me into the Kingdom of Heaven. Or… or something along those lines.", + "dynamic_line": "It's clear enough, isn't it? That… that end, was the Rapture. I'm still here, and I still don't understand why, but I will keep Jesus in my heart through the Tribulations to come. When they're past, I'm sure He will welcome me into the Kingdom of Heaven. Or… or something along those lines.", "responses": [ { "text": "I meant more the actual events. What happened?", "topic": "CWH_RELIGIOUS_1_IDEAS2" }, { "text": "", "topic": "TALK_FRIEND" }, diff --git a/data/json/npcs/Backgrounds/rural_1.json b/data/json/npcs/Backgrounds/rural_1.json index 7a745f757bc14..3208324fa6af4 100644 --- a/data/json/npcs/Backgrounds/rural_1.json +++ b/data/json/npcs/Backgrounds/rural_1.json @@ -5,8 +5,8 @@ "dynamic_line": [ { "npc_female": true, - "yes": "I lived alone, on the old family property way out of town. My husband passed away a bit over a month before this started… cancer. If anything good has come out of all this, it's that I finally see a positive to losing him so young. I'd been shut in for a while anyway. When the news started talking about Chinese bio weapons and sleeper agents, and showing the rioting in Boston and such, I curled up with my canned soup and changed the channel.", - "no": "I lived alone, on the old family property way out of town. My wife passed away a bit over a month before this started… cancer. If anything good has come out of all this, it's that I finally see a positive to losing her so young. I'd been shut in for a while anyway. When the news started talking about Chinese bio weapons and sleeper agents, and showing the rioting in Boston and such, I curled up with my canned soup and changed the channel." + "yes": "I lived alone, on the old family property way out of town. My husband passed away a bit over a month before this started… cancer. If anything good has come out of all this, it's that I finally see a positive to losing him so young. I'd been shut in for a while anyway. When the news started talking about Chinese bio weapons and sleeper agents, and showing the rioting in Boston and such, I curled up with my canned soup and changed the channel.", + "no": "I lived alone, on the old family property way out of town. My wife passed away a bit over a month before this started… cancer. If anything good has come out of all this, it's that I finally see a positive to losing her so young. I'd been shut in for a while anyway. When the news started talking about Chinese bio weapons and sleeper agents, and showing the rioting in Boston and such, I curled up with my canned soup and changed the channel." } ], "responses": [ @@ -18,7 +18,7 @@ { "id": "BGSS_RURAL_1_STORY2", "type": "talk_topic", - "dynamic_line": "Well, it built up a bit. There was that acid rain, it burnt up one of my tractors. Not that I'd been working the fields since… well, it'd been a year and I hadn't done much worth doing. There were explosions and things, and choppers overhead. I was scared, kept the curtains drawn, kept changing the channels. Then, one day, there were no channels to change to. Just the emergency broadcast, over and over.", + "dynamic_line": "Well, it built up a bit. There was that acid rain, it burnt up one of my tractors. Not that I'd been working the fields since… well, it'd been a year and I hadn't done much worth doing. There were explosions and things, and choppers overhead. I was scared, kept the curtains drawn, kept changing the channels. Then, one day, there were no channels to change to. Just the emergency broadcast, over and over.", "responses": [ { "text": "What happened next?", "topic": "BGSS_RURAL_1_STORY3" }, { "text": "", "topic": "TALK_FRIEND" }, diff --git a/data/json/npcs/Backgrounds/rural_2.json b/data/json/npcs/Backgrounds/rural_2.json index 6ec8c28cdd416..484e5a9c68035 100644 --- a/data/json/npcs/Backgrounds/rural_2.json +++ b/data/json/npcs/Backgrounds/rural_2.json @@ -23,7 +23,7 @@ { "id": "BGSS_RURAL_2_STORY3", "type": "talk_topic", - "dynamic_line": "We got to my buddy's ranch, but the g-men had been there first. It was all boarded up and there was a police barricade out front. One of those turrets… shot Buck. Almost got me too. I managed to get my pup… get him outta there, that… it wasn't easy, had to use a police car door as a shield, had to kill a cop-zombie first. And then, well, while I was still cryin', Buck came back. I had to … . I… I can't say it. You know.", + "dynamic_line": "We got to my buddy's ranch, but the g-men had been there first. It was all boarded up and there was a police barricade out front. One of those turrets… shot Buck. Almost got me too. I managed to get my pup… get him outta there, that… it wasn't easy, had to use a police car door as a shield, had to kill a cop-zombie first. And then, well, while I was still cryin', Buck came back. I had to… . I… I can't say it. You know.", "responses": [ { "text": "I'm sorry about Buck. ", "topic": "TALK_FRIEND" }, { "text": "I'm sorry about Buck. ", "topic": "TALK_DONE" } diff --git a/data/json/npcs/Backgrounds/scientist_1.json b/data/json/npcs/Backgrounds/scientist_1.json index 36094e50cc336..3d1085fe6ec75 100644 --- a/data/json/npcs/Backgrounds/scientist_1.json +++ b/data/json/npcs/Backgrounds/scientist_1.json @@ -2,7 +2,7 @@ { "id": "BGSS_SCIENTIST_1_STORY1", "type": "talk_topic", - "dynamic_line": "Before I worked in a lab. Don't look at me like that, it had nothing to do with this stuff… I was studying protein-protein interactions in smooth muscle in mice, using NMR. Nothing even vaguely related to zombies. Anyway, I was at last year's Experimental Biology conference in San Francisco, and an old friend of mine was talking about some really weird shit she'd heard of coming out of government labs. Really hush hush stuff. Normally I wouldn't put much cred into that sort of thing, but from her, it actually had me worried. I packed a bug-out bag just in case.", + "dynamic_line": "Before I worked in a lab. Don't look at me like that, it had nothing to do with this stuff… I was studying protein-protein interactions in smooth muscle in mice, using NMR. Nothing even vaguely related to zombies. Anyway, I was at last year's Experimental Biology conference in San Francisco, and an old friend of mine was talking about some really weird shit she'd heard of coming out of government labs. Really hush hush stuff. Normally I wouldn't put much cred into that sort of thing, but from her, it actually had me worried. I packed a bug-out bag just in case.", "responses": [ { "text": "What came of it?", "topic": "BGSS_SCIENTIST_1_STORY2" }, { @@ -16,7 +16,7 @@ { "id": "BGSS_SCIENTIST_1_STORY2", "type": "talk_topic", - "dynamic_line": "The evacuation order sounded, so I evacuated, comparatively quickly. That got me out before the worst part. Our evacuation center was useless… me, a couple other evacuees, a few tins of food, and a few emergency blankets. Not even close to enough to go around. The evacuees split down the middle into a few camps, and infighting started. I ran into the woods nearby with a few others. We got away, had a little camp going. They tried to make me their leader, thought I knew more about things than I did because I'd come so prepared. Like I said, I'm not that kind of scientist, but they didn't seem to understand. I… I did my best.", + "dynamic_line": "The evacuation order sounded, so I evacuated, comparatively quickly. That got me out before the worst part. Our evacuation center was useless… me, a couple other evacuees, a few tins of food, and a few emergency blankets. Not even close to enough to go around. The evacuees split down the middle into a few camps, and infighting started. I ran into the woods nearby with a few others. We got away, had a little camp going. They tried to make me their leader, thought I knew more about things than I did because I'd come so prepared. Like I said, I'm not that kind of scientist, but they didn't seem to understand. I… I did my best.", "responses": [ { "text": "What happened with your leadership run?", "topic": "BGSS_SCIENTIST_1_STORY3" }, { @@ -30,7 +30,7 @@ { "id": "BGSS_SCIENTIST_1_STORY3", "type": "talk_topic", - "dynamic_line": "I thought that us leaving, letting the others have the evac center to themselves, would be enough, but it wasn't. They tracked us down in the night, a few days later. They… well… I made it out, along with one other survivor. The attackers, they were like animals. We tried to travel together for a while. I blamed myself, for what had happened, and couldn't really get past it. We parted ways on good terms not long before I met you. I just couldn't face the reminder of what had happened.", + "dynamic_line": "I thought that us leaving, letting the others have the evac center to themselves, would be enough, but it wasn't. They tracked us down in the night, a few days later. They… well… I made it out, along with one other survivor. The attackers, they were like animals. We tried to travel together for a while. I blamed myself, for what had happened, and couldn't really get past it. We parted ways on good terms not long before I met you. I just couldn't face the reminder of what had happened.", "//": "TK, this survivor could give a quest to locate the other survivor.", "responses": [ { diff --git a/data/json/npcs/Backgrounds/wedding_1.json b/data/json/npcs/Backgrounds/wedding_1.json index 8eb2f0c19c0e4..572ad2e002def 100644 --- a/data/json/npcs/Backgrounds/wedding_1.json +++ b/data/json/npcs/Backgrounds/wedding_1.json @@ -12,7 +12,7 @@ { "id": "BGSS_WEDDING_1_STORY2", "type": "talk_topic", - "dynamic_line": "Yeah, in hindsight it maybe wasn't the best choice of dates, huh? I admit I had cold feet though. Anyway we were getting hitched at the church. Lucky for me I was late to the ceremony… I guess some of the fresher corpses in the graveyard had gotten up and started harassing the party.", + "dynamic_line": "Yeah, in hindsight it maybe wasn't the best choice of dates, huh? I admit I had cold feet though. Anyway we were getting hitched at the church. Lucky for me I was late to the ceremony… I guess some of the fresher corpses in the graveyard had gotten up and started harassing the party.", "responses": [ { "text": "What did you do next?", "topic": "BGSS_WEDDING_1_STORY3" }, { "text": "You seem surprisingly calm about all this.", "topic": "BGSS_WEDDING_1_CALM" }, diff --git a/data/json/npcs/Kindred/NPC_Brigitte_LaCroix.json b/data/json/npcs/Kindred/NPC_Brigitte_LaCroix.json index b850b5c2c1737..1f291ea98a1b4 100644 --- a/data/json/npcs/Kindred/NPC_Brigitte_LaCroix.json +++ b/data/json/npcs/Kindred/NPC_Brigitte_LaCroix.json @@ -243,10 +243,10 @@ { "type": "talk_topic", "id": "TALK_BONE_SEER_COOPER2", - "dynamic_line": "He began killing others to get their bones as fresh as possible. Later, he… he started carving the bones of the living. Thought the anguish alone would empower the song. The goal of the Kindred is to banish the shadow of the cataclysm, not to cast it. Such heinous acts will likely twist the song of the world, but I don't think Cooper realises it. To him, the end justifies any means.", + "dynamic_line": "He began killing others to get their bones as fresh as possible. Later, he… he started carving the bones of the living. Thought the anguish alone would empower the song. The goal of the Kindred is to banish the shadow of the cataclysm, not to cast it. Such heinous acts will likely twist the song of the world, but I don't think Cooper realises it. To him, the end justifies any means.", "speaker_effect": { "effect": { "u_add_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" } }, "responses": [ - { "text": "Well… shit. Maybe we should talk about something else.", "topic": "TALK_BONE_SEER" }, + { "text": "Well… shit. Maybe we should talk about something else.", "topic": "TALK_BONE_SEER" }, { "text": "What if he is right? Maybe what you do isn't enough and he's the only one to do what it takes.", "topic": "TALK_BONE_SEER_COOPER3", @@ -291,7 +291,7 @@ { "type": "talk_topic", "id": "TALK_BONE_SEER_ABOUT", - "dynamic_line": "I grew up in Louisiana with my grandmother. Great cook. Made the best boudin I've ever had. Each night, she would tell me stories; mostly folklore and myths, like about the rougarou, or the Honey Island Swamp monster but… she sometimes told me about me about the Song, and the bones. The way she talked about it was… different, serious. Didn't give it much thought back then; I was just a child, after all. I moved here a few years back for work, before the Cataclysm, before everything changed. I do miss home sometimes, but at least the rats here are smaller. Never could stand the things. Anyway… thank you for asking. Been a while since I could simply talk to someone.", + "dynamic_line": "I grew up in Louisiana with my grandmother. Great cook. Made the best boudin I've ever had. Each night, she would tell me stories; mostly folklore and myths, like about the rougarou, or the Honey Island Swamp monster but… she sometimes told me about me about the Song, and the bones. The way she talked about it was… different, serious. Didn't give it much thought back then; I was just a child, after all. I moved here a few years back for work, before the Cataclysm, before everything changed. I do miss home sometimes, but at least the rats here are smaller. Never could stand the things. Anyway… thank you for asking. Been a while since I could simply talk to someone.", "responses": [ { "text": "Why didn't your parents raise you?", "topic": "TALK_BONE_SEER_PARENTS" }, { "text": "What's boudin?", "topic": "TALK_BONE_SEER_BOUDIN" }, @@ -303,7 +303,7 @@ { "type": "talk_topic", "id": "TALK_BONE_SEER_PARENTS", - "dynamic_line": "They died when I was very young. Car accident. I… don't have any memories of them, but my grandmother raised me as her own.", + "dynamic_line": "They died when I was very young. Car accident. I… don't have any memories of them, but my grandmother raised me as her own.", "responses": [ { "text": "She sounds nice.", "topic": "TALK_BONE_SEER_ABOUT" } ] }, { @@ -324,7 +324,7 @@ { "type": "talk_topic", "id": "TALK_BONE_SEER_RATS", - "dynamic_line": "Ever since a young age, I hated rats. Can't quite say why; they always struck me as something… foul. I even have nightmares about them sometimes. Not too long ago, I had one about a man-sized rat, shambling on it's hind legs. It chased me up a tall building and then pushed me off, snickering. Maybe the Song was trying to tell me something, but then again, maybe it was just a bad dream.", + "dynamic_line": "Ever since a young age, I hated rats. Can't quite say why; they always struck me as something… foul. I even have nightmares about them sometimes. Not too long ago, I had one about a man-sized rat, shambling on it's hind legs. It chased me up a tall building and then pushed me off, snickering. Maybe the Song was trying to tell me something, but then again, maybe it was just a bad dream.", "responses": [ { "text": "Strange dream, but we all have fears, sometimes irrational.", "topic": "TALK_BONE_SEER_ABOUT" } ] }, { @@ -469,9 +469,9 @@ "id": "TALK_BONE_SEER_CYCLE", "dynamic_line": "It's not just walking horrors and monsters that have changed with the Cataclysm. It started a… cycle, of sorts. Everything repeats. We can only see it in others, but it happens to us, even you and I. How many times have you fallen? Your flesh rent from your body, devoured. Or perhaps it was the quiet whimper of succumbing to the elements. But your bones rose again. Different flesh, different name, sometimes even different knowledge, but the bones, the same. We are all trapped in the same cycle. We just keep forgetting. That's why we need to amass the Song. That's why it has to end, even if it means the destruction, not restoration.", "responses": [ - { "text": "That's… certainly something.", "topic": "TALK_NONE" }, + { "text": "That's… certainly something.", "topic": "TALK_NONE" }, { "text": "That's insane.", "topic": "TALK_BONE_SEER_INSULT" }, - { "text": "Right… I think I'll go now.", "topic": "TALK_DONE" } + { "text": "Right… I think I'll go now.", "topic": "TALK_DONE" } ] }, { @@ -510,7 +510,7 @@ { "type": "talk_topic", "id": "TALK_BONE_SEER_COOPERPEACE", - "dynamic_line": "I am glad your meeting ended without conflict. Perhaps he's understanding the Song more and the harm his actions caused. If so… there may be hope yet. Never the less, his action can not go unpunished.", + "dynamic_line": "I am glad your meeting ended without conflict. Perhaps he's understanding the Song more and the harm his actions caused. If so… there may be hope yet. Never the less, his action can not go unpunished.", "responses": [ { "text": "A topic for another time. Let's move on.", "topic": "TALK_BONE_SEER" } ] }, { diff --git a/data/json/npcs/Kindred/NPC_Darren_Cooper.json b/data/json/npcs/Kindred/NPC_Darren_Cooper.json index a094b11c68536..c6e221c9b075a 100644 --- a/data/json/npcs/Kindred/NPC_Darren_Cooper.json +++ b/data/json/npcs/Kindred/NPC_Darren_Cooper.json @@ -96,7 +96,7 @@ "value": "yes", "no": { "u_has_trait": "seer_mark", - "yes": "How do you do. Name's Cooper. What's your- wait… that's the Mark of the Seer on your hand. You're Kindred. So I guess you know who I am then.", + "yes": "How do you do. Name's Cooper. What's your- wait… that's the Mark of the Seer on your hand. You're Kindred. So I guess you know who I am then.", "no": "How do you do. Name's Cooper. And you are?" }, "yes": { @@ -377,7 +377,7 @@ { "type": "talk_topic", "id": "TALK_COOPERS_SIDE", - "dynamic_line": "I met Brigitte shortly after everything collapsed. Seeing so much death and insanity around me… it almost crushed me, but when she explained everything about the bones to me, it gave me a sliver of hope, that one time, things might turn around. For that, I am grateful to her. But we'll never change anything if we keep using scraps of bones found on corpses on the side of the road. By the time the animals are done with those, there is barely any Song left to be used. It's not enough. I had to leave, to work on my own. To do what's necessary.", + "dynamic_line": "I met Brigitte shortly after everything collapsed. Seeing so much death and insanity around me… it almost crushed me, but when she explained everything about the bones to me, it gave me a sliver of hope, that one time, things might turn around. For that, I am grateful to her. But we'll never change anything if we keep using scraps of bones found on corpses on the side of the road. By the time the animals are done with those, there is barely any Song left to be used. It's not enough. I had to leave, to work on my own. To do what's necessary.", "responses": [ { "text": "What do you mean by 'necessary'?", @@ -400,7 +400,7 @@ { "type": "talk_topic", "id": "TALK_COOPER_NECESSARY", - "dynamic_line": "People will die in this world overrun with monsters. There is no avoiding it. But I can give those deaths meaning, allow them to help the world after death, more than they could in life. It brings me no pleasure, but… yes, some must give their life for the greater good. It's the only way. Wish there was an alternative, but it must be done. I only take people from this world to save it. Make no mistake though, the only people that I… kill are those who would not survive anyway.", + "dynamic_line": "People will die in this world overrun with monsters. There is no avoiding it. But I can give those deaths meaning, allow them to help the world after death, more than they could in life. It brings me no pleasure, but… yes, some must give their life for the greater good. It's the only way. Wish there was an alternative, but it must be done. I only take people from this world to save it. Make no mistake though, the only people that I… kill are those who would not survive anyway.", "speaker_effect": { "effect": { "u_add_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" } }, "responses": [ { @@ -517,7 +517,7 @@ "dynamic_line": "I scavenge only so I can survive, but I have a much greater goal than just to live.", "speaker_effect": { "effect": { "u_add_var": "cooper_goal_dk", "type": "dialogue", "context": "first_meeting", "value": "yes" } }, "responses": [ - { "text": "A… goal? What do you mean? What is there to do other than survive?", "topic": "TALK_COOPER_GOAL" }, + { "text": "A… goal? What do you mean? What is there to do other than survive?", "topic": "TALK_COOPER_GOAL" }, { "text": "Uh, okay then. I have to go now; have a nice day.", "topic": "TALK_DONE" } ] }, diff --git a/data/json/npcs/NC_JUNK_SHOPKEEP.json b/data/json/npcs/NC_JUNK_SHOPKEEP.json index 90cda5c685155..3294bba76998c 100644 --- a/data/json/npcs/NC_JUNK_SHOPKEEP.json +++ b/data/json/npcs/NC_JUNK_SHOPKEEP.json @@ -26,6 +26,7 @@ { "item": "trenchcoat_fur", "prob": 10 }, { "item": "vest_leather", "prob": 15 }, { "item": "vest_leather_mod", "prob": 5 }, + { "item": "case_cigar", "prob": 5 }, { "item": "football_armor", "prob": 30 }, { "item": "jacket_leather", "prob": 25 }, { "item": "jacket_leather_mod", "prob": 10 }, diff --git a/data/json/npcs/TALK_COMMON_ALLY.json b/data/json/npcs/TALK_COMMON_ALLY.json index 9e35dd3ebcb2b..fe7e1e640ab59 100644 --- a/data/json/npcs/TALK_COMMON_ALLY.json +++ b/data/json/npcs/TALK_COMMON_ALLY.json @@ -826,6 +826,12 @@ "condition": { "not": "npc_has_activity" }, "effect": "do_mining" }, + { + "text": "Please go mop the area.", + "topic": "TALK_DONE", + "condition": { "not": "npc_has_activity" }, + "effect": "do_mopping" + }, { "text": "Please study from a book.", "topic": "TALK_DONE", diff --git a/data/json/npcs/TALK_COMMON_MISSION.json b/data/json/npcs/TALK_COMMON_MISSION.json index f60741645f8b4..a5ce09e147241 100644 --- a/data/json/npcs/TALK_COMMON_MISSION.json +++ b/data/json/npcs/TALK_COMMON_MISSION.json @@ -110,7 +110,7 @@ "type": "talk_topic", "responses": [ { - "text": "I'm sorry… I failed.", + "text": "I'm sorry… I failed.", "condition": "mission_failed", "topic": "TALK_MISSION_FAILURE", "opinion": { "trust": -1, "value": -1, "anger": 1 } diff --git a/data/json/npcs/TALK_MARLOSS_VOICE.json b/data/json/npcs/TALK_MARLOSS_VOICE.json index 460a475e58701..a4ebb6be4e366 100644 --- a/data/json/npcs/TALK_MARLOSS_VOICE.json +++ b/data/json/npcs/TALK_MARLOSS_VOICE.json @@ -45,7 +45,7 @@ "responses": [ { "text": "Well, sure.", "topic": "TALK_MARLOSS_VOICE_OFFER_BERRY" }, { "text": "I'd… rather not.", "topic": "TALK_MARLOSS_VOICE" }, - { "text": "I'm sorry… I have places to be.", "topic": "TALK_DONE" } + { "text": "I'm sorry… I have places to be.", "topic": "TALK_DONE" } ] }, { diff --git a/data/json/npcs/TALK_TRUE_FOODPERSON.json b/data/json/npcs/TALK_TRUE_FOODPERSON.json index 5ed760b36eabb..d221f661575fd 100644 --- a/data/json/npcs/TALK_TRUE_FOODPERSON.json +++ b/data/json/npcs/TALK_TRUE_FOODPERSON.json @@ -15,7 +15,7 @@ "type": "dialogue", "context": "foodperson", "value": "yes", - "no": "So you're back… Explain yourself!", + "no": "So you're back… explain yourself!", "yes": "Greetings friend, it's nice to see you." } }, @@ -80,7 +80,7 @@ } ] }, - "text": "Greetings… Foodperson?", + "text": "Greetings… Foodperson?", "topic": "TALK_FOODPERSON_INTRODUCTION" }, { @@ -158,7 +158,7 @@ "success": { "topic": "TALK_FOODPERSON_MAIN", "opinion": { "trust": 2, "value": 2 } }, "failure": { "topic": "TALK_FOODPERSON_VEXED", "opinion": { "trust": -5, "value": -5 } } }, - { "text": "Ah… Well, nice to meet you Foodperson.", "topic": "TALK_FOODPERSON_MAIN" } + { "text": "Ah… well, nice to meet you Foodperson.", "topic": "TALK_FOODPERSON_MAIN" } ] }, { @@ -177,7 +177,7 @@ "dynamic_line": "A common mistake, but I can assure you that I'm very real!", "responses": [ { "text": "Sure, whatever.", "topic": "TALK_DONE" }, - { "text": "Ok… I believe you.", "topic": "TALK_FOODPERSON_MAIN" } + { "text": "Ok… I believe you.", "topic": "TALK_FOODPERSON_MAIN" } ] }, { @@ -428,7 +428,7 @@ { "id": "TALK_FOODPERSON_SHELTER", "type": "talk_topic", - "dynamic_line": "Well… You seem like a decent sort, I might have an offer for you.", + "dynamic_line": "Well… You seem like a decent sort, I might have an offer for you.", "speaker_effect": { "effect": { "npc_add_var": "npc_success_shelter", "type": "dialogue", "context": "foodperson", "value": "yes" } }, "responses": [ { "text": "I'm listening.", "topic": "TALK_FOODPERSON_SIDEKICK" } ] }, @@ -452,7 +452,7 @@ "text": "I need to think about it.", "topic": "TALK_FOODPERSON_MAIN" }, - { "condition": { "not": "has_assigned_mission" }, "text": "Huh… No thanks.", "topic": "TALK_DONE" }, + { "condition": { "not": "has_assigned_mission" }, "text": "Huh… no thanks.", "topic": "TALK_DONE" }, { "condition": "has_assigned_mission", "text": "There's other things I'd like to discuss.", @@ -464,10 +464,10 @@ { "id": "TALK_FOODPERSON_TWO", "type": "talk_topic", - "dynamic_line": "The way you talk, the way you move… You're… You're me? But how?", + "dynamic_line": "The way you talk, the way you move… You're… You're me? But how?", "responses": [ { - "text": "I… I don't know. It probably has something to do with ! What do you say we team up to find out?", + "text": "I… I don't know. It probably has something to do with ! What do you say we team up to find out?", "effect": { "npc_add_var": "foodperson_meeting_solved", "type": "dialogue", "context": "foodperson", "value": "yes" }, "topic": "TALK_FOODPERSON_TEAMUP" }, @@ -483,7 +483,7 @@ { "id": "TALK_FOODPERSON_MULTIVERSE", "type": "talk_topic", - "dynamic_line": "Wha… But. But… How?", + "dynamic_line": "Wha… but. But… how?", "responses": [ { "text": "No time to explain, the world is at an end and we must join forces to save it!", @@ -505,7 +505,7 @@ { "id": "TALK_FOODPERSON_SHARING", "type": "talk_topic", - "dynamic_line": "Of course, whatever you need… Foodperson.", + "dynamic_line": "Of course, whatever you need… Foodperson.", "speaker_effect": { "effect": { "npc_add_var": "npc_foodpersons_sharing", "type": "dialogue", "context": "foodperson", "value": "yes" } }, "responses": [ { diff --git a/data/json/npcs/classes.json b/data/json/npcs/classes.json index 9ce7c89522a0f..4fdc0cc592b1d 100644 --- a/data/json/npcs/classes.json +++ b/data/json/npcs/classes.json @@ -324,7 +324,7 @@ "type": "npc_class", "id": "NC_HALLU", "name": { "str": "Real Person" }, - "job_description": "I'm just wandering, like a totally real and normal NP… Person!", + "job_description": "I'm just wandering, like a totally real and normal NP… person!", "traits": [ { "group": "BG_survival_story_UNIVERSAL" }, { "group": "NPC_starting_traits" }, [ "HALLUCINATION", 100 ] ], "common": false, "skills": [ @@ -369,7 +369,7 @@ "type": "npc_class", "id": "NC_CYBORG", "name": { "str": "Cyborg" }, - "job_description": "Zzzzzt… I… I'm a Cy… BEEEEEP… borg.", + "job_description": "Zzzzzt… I… I'm a Cy… BEEEEEP… borg.", "traits": [ { "group": "BG_survival_story_CYBORG" }, { "group": "NPC_starting_traits" }, { "group": "Appearance_demographics" } ], "skills": [ { "skill": "ALL", "level": { "mul": [ { "one_in": 3 }, { "sum": [ { "dice": [ 4, 2 ] }, { "rng": [ -4, -1 ] } ] } ] } } diff --git a/data/json/npcs/exodii/exodii_merchant_definitions.json b/data/json/npcs/exodii/exodii_merchant_definitions.json index e7b37284c49a7..e5864932bee2e 100644 --- a/data/json/npcs/exodii/exodii_merchant_definitions.json +++ b/data/json/npcs/exodii/exodii_merchant_definitions.json @@ -31,6 +31,7 @@ }, { "skill": "mechanics", "bonus": { "one_in": 2 } }, { "skill": "electronics", "bonus": { "rng": [ 0, 2 ] } }, + { "skill": "firstaid", "bonus": { "rng": [ 7, 10 ] } }, { "skill": "gun", "bonus": { "rng": [ 2, 4 ] } }, { "skill": "rifle", "bonus": { "rng": [ 2, 4 ] } }, { "skill": "unarmed", "bonus": { "rng": [ 2, 4 ] } }, diff --git a/data/json/npcs/exodii/exodii_merchant_itemlist.json b/data/json/npcs/exodii/exodii_merchant_itemlist.json index f1703056eaf4a..8f43acb6a3c3b 100644 --- a/data/json/npcs/exodii/exodii_merchant_itemlist.json +++ b/data/json/npcs/exodii/exodii_merchant_itemlist.json @@ -52,7 +52,7 @@ { "type": "item_group", "id": "EXODII_CBM_Store_Tier2", - "//": "These CBMs should be available in the exodii store after at least 2 weeks and 10 trade interactions on separate days.", + "//": "These CBMs should be available in the exodii store after building a decent amount of trust over time.", "items": [ [ "bio_tools", 10 ], [ "bio_ethanol", 10 ], diff --git a/data/json/npcs/exodii/exodii_merchant_talk.json b/data/json/npcs/exodii/exodii_merchant_talk.json index 7a9d532561f09..41baf87f3577f 100644 --- a/data/json/npcs/exodii/exodii_merchant_talk.json +++ b/data/json/npcs/exodii/exodii_merchant_talk.json @@ -87,6 +87,11 @@ } ] } + }, + { + "text": "Can you help me with CBM surgery?", + "topic": "TALK_EXODII_MERCHANT_Bionic_Install", + "condition": { "u_has_trait": "CBM_Interface" } } ] }, @@ -322,7 +327,7 @@ "responses": [ { "text": "Oh, you mean you got here early in the cataclysm. Why is that so good?", - "topic": "TALK_EXODII_MERCHANT_Talk_Intro3" + "topic": "TALK_EXODII_MERCHANT_Talk_Intro4a" }, { "text": "Who is Benzete?", "topic": "TALK_EXODII_MERCHANT_Talk_IntroBenzete1" }, { "text": "Can we talk about something else?", "topic": "TALK_EXODII_MERCHANT_Talk" }, @@ -707,5 +712,14 @@ { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, { "text": "Well, I'd better be going. Bye.", "topic": "TALK_DONE" } ] + }, + { + "id": "TALK_EXODII_MERCHANT_Bionic_Install", + "type": "talk_topic", + "dynamic_line": "If'n you're full an' plenty, this'n's happy to make the call, for a shiny farthing.", + "responses": [ + { "text": "I've got some stuff I'd like to install.", "topic": "TALK_DONE", "effect": "bionic_install" }, + { "text": "Would you be able to take out one of my implants?", "topic": "TALK_DONE", "effect": "bionic_remove" } + ] } ] diff --git a/data/json/npcs/godco/cook.json b/data/json/npcs/godco/cook.json index b16cac5c841fc..ef47e3a97baf9 100644 --- a/data/json/npcs/godco/cook.json +++ b/data/json/npcs/godco/cook.json @@ -210,7 +210,7 @@ "advice": "There's a lot of places to look. They are common in house kitchens, restaurants or grocery stores.", "inquire": "How is the search going? Have you found 'em?", "success": "I really appreciate your help. Don't worry, you won't leave empty-handed.", - "success_lie": "Thanks for trying… I guess.", + "success_lie": "Thanks for trying… I guess.", "failure": "Don't worry about it, it's not that important." }, "end": { "effect": [ { "u_spawn_item": "icon", "count": 2 } ] } @@ -235,7 +235,7 @@ "advice": "Glass jars are not that hard to find. I'd look for them in residential areas.", "inquire": "Have you found the jars?", "success": "Thank you for your help. Here's your reward. I have one more task to do.", - "success_lie": "Thanks for trying… I guess.", + "success_lie": "Thanks for trying… I guess.", "failure": "It's not a big deal, it isn't that urgent." }, "end": { "effect": [ { "u_spawn_item": "icon", "count": 5 } ] } @@ -259,7 +259,7 @@ "advice": "Butcher knives are not that rare to find. They are commonly found in kitchens.", "inquire": "Do you have that knife now?", "success": "I am grateful for the help you've done.", - "success_lie": "Thanks for trying… I guess.", + "success_lie": "Thanks for trying… I guess.", "failure": "Don't worry about it, it's not that important." }, "end": { "effect": [ { "u_spawn_item": "icon", "count": 3 } ] } diff --git a/data/json/npcs/hints.json b/data/json/npcs/hints.json index e337a28c28e1c..cb974ebad7e4f 100644 --- a/data/json/npcs/hints.json +++ b/data/json/npcs/hints.json @@ -11,7 +11,7 @@ "If you see a big mob of zombies coming, RUN! Trying to fight them all is impossible unless you have a big tactical advantage.", "If you see a big mob of zombies coming, you better run. Trying to fight them all is suicide!", "When you see a swarm of zombies coming it's time to run!", - "If you're getting chased by a hoard of zombies, try ducking into the subways and traveling a block or two, then coming back up.", + "If you're getting chased by a horde of zombies, try ducking into the subways and traveling a block or two before coming back up.", "Watch out for those zombies that shriek; they'll let other zombies know where you are, and will attract them from all over.", "Those acid-spitting zombies are pretty nasty, but if you're smart, you can get other zombies to wade through the acid.", "If there's a pool of acid blocking your way, trying tossing a junk item into it. Eating up items will help neutralize the acid faster.", @@ -134,8 +134,8 @@ "When the whole town is one big supermarket a shopping cart becomes your best friend.", "A friend is a second mouth to fill, but when it comes to work four hands are always better than two.", "I was against drugs until I was almost killed by a zombie. I was hauling my sorry ass away from the horde, with nothing more but some white powder I got from that zombie. Saved me that time.", - "Not sure if Mike is sane any more. He was unfortunate enough to be driven in to a school one time. This experience broke more than his ribs then.", - "A thought about explosives. If you can still run and it did not went boom yet, run some more. There is no such thing as excess space between you and a stick of dynamite.", + "I knew an elementary school teacher who had to fight his way out of school. He had to kill a dozen crazed children. I can't imagine what that does to a person.", + "A thought about explosives: If you can still run, and the explosive hasn't detonated yet, run some more. No amount of caution is excessive when handling a grenade.", "Avoid using launchers in narrow hallways, you might miss.", "Met a mad chemist once. She made a battery from a potato… or was it lemon?", "Met a mad chemist once. She made a battery from a potato, and then nobody was willing to eat the potato.", diff --git a/data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json b/data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json index f3a8d3ee33e72..269135f2587ae 100644 --- a/data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json +++ b/data/json/npcs/isherwood_farm/NPC_Jack_Isherwood.json @@ -199,7 +199,7 @@ { "type": "talk_topic", "id": "TALK_JACK_FARM", - "dynamic_line": "Even out here we've had some attacks and seen … other things. We have been working on our defenses, but it takes time. We've been able to keep up with the crops and animals though so we won't have to risk our necks for supplies.", + "dynamic_line": "Even out here we've had some attacks and seen… other things. We have been working on our defenses, but it takes time. We've been able to keep up with the crops and animals though so we won't have to risk our necks for supplies.", "responses": [ { "text": "What sort of defenses do you want?", "topic": "TALK_FARM_DEFENSE" }, { "text": "Let's talk about something else.", "topic": "TALK_ISHERWOOD_JACK_TOPICS" }, diff --git a/data/json/npcs/items_generic.json b/data/json/npcs/items_generic.json index 9d918690819d2..90c55d7f3f59b 100644 --- a/data/json/npcs/items_generic.json +++ b/data/json/npcs/items_generic.json @@ -448,6 +448,8 @@ [ "chocolate", 2 ], [ "cig", 30 ], [ "cigar", 10 ], + [ "case_cigar", 5 ], + { "group": "pocket_cigar", "prob": 10 }, [ "circsaw_blade", 3 ], [ "circsaw_off", 3 ], [ "cleansuit", 5 ], diff --git a/data/json/npcs/missiondef.json b/data/json/npcs/missiondef.json index d0b4d723bf2a2..7122546dabd56 100644 --- a/data/json/npcs/missiondef.json +++ b/data/json/npcs/missiondef.json @@ -165,7 +165,7 @@ "advice": "They shouldn't be that hard to find… should they?", "inquire": "Any luck?", "success": "Great work, Deputy. We're in business.", - "success_lie": "Thanks for trying… I guess.", + "success_lie": "Thanks for trying… I guess.", "failure": "The day of reckoning will come for the criminals if it hasn't already." } }, @@ -209,8 +209,8 @@ "rejected": "I know it isn't pressing but the big corporations didn't get a chance to destroy the evidence yet.", "advice": "Try a big corporate building of some sort, they're bound to have an accounting department.", "inquire": "Any luck?", - "success": "Great, let's see… uh… hmmm… Fine, I didn't even do my own taxes but I'm sure this will prove their guilt if we get an expert to examine it.", - "success_lie": "Thanks for trying… I guess.", + "success": "Great, let's see… uh… hmmm…. Fine, I didn't even do my own taxes but I'm sure this will prove their guilt if we get an expert to examine it.", + "success_lie": "Thanks for trying… I guess.", "failure": "The day of reckoning will come for the corporations if it hasn't already." } }, @@ -233,7 +233,7 @@ "advice": "I bet you'll run into a lot of those things in the hospital, please be careful.", "inquire": "Any luck?", "success": "Oh dear, I thought Timmy would have made it…", - "success_lie": "Thanks for trying… I guess.", + "success_lie": "Thanks for trying… I guess.", "failure": "I bet some of them are still out there…" } }, @@ -272,7 +272,7 @@ "followup": "MISSION_RECOVER_PRIEST_DIARY", "dialogue": { "describe": "St. Michael the archangel defend me in battle…", - "offer": "As the world seems to abandon the reality that we once knew, it becomes plausible that the old superstitions that were cast aside may have had some truth to them. Please go and find me a religious relic… I doubt it will be of much use but I've got to hope in something.", + "offer": "As the world seems to abandon the reality that we once knew, it becomes plausible that the old superstitions that were cast aside may have had some truth to them. Please go and find me a religious relic… I doubt it will be of much use but I've got to hope in something.", "accepted": "I wish you the best of luck, may whatever god you please guide your path.", "rejected": "Ya, I guess the stress may just be getting to me…", "advice": "I suppose a large church or cathedral may have something.", @@ -302,7 +302,7 @@ "advice": "This shouldn't be hard unless we run into a horde.", "inquire": "Any luck?", "success": "Great, anything I can't use to prosecute the bastards is yours, as promised.", - "success_lie": "Thanks for trying… I guess.", + "success_lie": "Thanks for trying… I guess.", "failure": "The day of reckoning will come for the corporations if it hasn't already." } }, @@ -368,12 +368,12 @@ "followup": "MISSION_INVESTIGATE_PRISON_VISIONARY", "dialogue": { "describe": "St. Michael the archangel defend me in battle…", - "offer": "You have no idea how interesting this diary is. I have two very promising leads… First things first, the Catholic Church has been performing its own investigations into global cult phenomenon and it appears to have become very interested in a local cult as of recently. Could you investigate a location for me? I'm not sure what was going on here but the priest seemed fairly worried about it.", - "accepted": "I wish you the best of luck, may whatever god you please guide your path… You may need it this time more than the past excursions you have gone on. There is a note about potential human sacrifice in the days immediately before and after the outbreak. The name of the cult is believed to be the Church of Starry Wisdom but it is noted that accounts differ.", + "offer": "You have no idea how interesting this diary is. I have two very promising leads… First things first, the Catholic Church has been performing its own investigations into global cult phenomenon and it appears to have become very interested in a local cult as of recently. Could you investigate a location for me? I'm not sure what was going on here but the priest seemed fairly worried about it.", + "accepted": "I wish you the best of luck, may whatever god you please guide your path… You may need it this time more than the past excursions you have gone on. There is a note about potential human sacrifice in the days immediately before and after the outbreak. The name of the cult is believed to be the Church of Starry Wisdom but it is noted that accounts differ.", "rejected": "Ya, I guess the stress may just be getting to me…", - "advice": "I doubt the site is still occupied but I'd carry a firearm at least… I'm not sure what you might be looking for but I'm positive you'll find something out of the ordinary if you look long enough.", + "advice": "I doubt the site is still occupied but I'd carry a firearm at least… I'm not sure what you might be looking for but I'm positive you'll find something out of the ordinary if you look long enough.", "inquire": "I'm positive there is something there… there has to be, any luck?", - "success": "Thank you, your account of these… demonic creations proves the fears the churches had were well founded. Our priority should be routing out any survivors of this cult… I don't known if they are responsible for the outbreak but they certainly know more about it than I do.", + "success": "Thank you, your account of these… demonic creations proves the fears the churches had were well founded. Our priority should be routing out any survivors of this cult… I don't known if they are responsible for the outbreak but they certainly know more about it than I do.", "success_lie": "What good does this do us?", "failure": "It was a lost cause anyways…" } @@ -394,7 +394,7 @@ "dialogue": { "describe": "St. Michael the archangel defend me in battle…", "offer": "I have another task if you are feeling up to it. There is a prisoner that the priest made special mention of. I was wondering if you could see what may have happened to him or if he left anything in his cell. The priest admits the individual is rather unstable, to put it lightly, but the priest personally believed the man was some kind of repentant visionary. I'm not in a position to cast out the account just yet… it seems the man has prophesied events accurately before concerning the Church of Starry Wisdom.", - "accepted": "I wish you the best of luck, may whatever god you please guide your path… I can only imagine that the prison will be a little slice of hell. I'm not sure what they would have decided to do with the inmates when they knew death was almost certain.", + "accepted": "I wish you the best of luck, may whatever god you please guide your path… I can only imagine that the prison will be a little slice of hell. I'm not sure what they would have decided to do with the inmates when they knew death was almost certain.", "rejected": "Ya, I guess the stress may just be getting to me…", "advice": "The worst case scenario will probably be that the prisoners have escaped their cells and turned the building into their own little fortress. Best case, the building went into lock-down and secured the prisoners in their cells. Either way, navigating the building will pose its own difficulties.", "inquire": "Any luck?", @@ -519,7 +519,7 @@ "inquire": "Any luck?", "success": "You look a little shaken up, I can't tell you how glad I am that you killed it though.", "success_lie": "Something in the shadows still seems to stare at me when I look at the woods.", - "failure": "I'm glad you came back alive… I wasn't sure if I had sent you to your death." + "failure": "I'm glad you came back alive… I wasn't sure if I had sent you to your death." } }, { @@ -574,7 +574,7 @@ "advice": "Traveling the backroads would be a good way to search for one.", "inquire": "Shall we keep looking for a farm house?", "success": "Well, my adventuring days are over. I can't thank you enough. Trying to make this place self sustaining will take some work but the future is looking brighter. At least it ought to be safe for now. You'll always be welcome here.", - "success_lie": "Thanks for trying… I guess.", + "success_lie": "Thanks for trying… I guess.", "failure": "I guess it was just a pipe dream." } }, @@ -592,12 +592,12 @@ "dialogue": { "describe": "Maybe they escaped to one of the camps…", "offer": "I can't thank you enough for bringing me the patient records but I do have another request. You seem to know your way around… could you take me to one of the FEMA camps? I know some were overrun but I don't want to believe all of them could have fallen.", - "accepted": "Thank you, just bring me to the camp… I just want to see.", + "accepted": "Thank you, just bring me to the camp… I just want to see.", "rejected": "Please, I don't know what else to do.", "advice": "We should go at night, if it is overrun then we can quickly make our escape.", "inquire": "Any leads on where a camp might be?", "success": "I guess this wasn't as bright an idea as I thought.", - "success_lie": "Thanks for trying… I guess.", + "success_lie": "Thanks for trying… I guess.", "failure": "I bet some of them are still out there…" } }, @@ -877,5 +877,27 @@ "place_liquids": [ { "liquid": "gasoline", "x": [ 5, 20 ], "y": [ 5, 20 ], "amount": 5, "repeat": 40 } ], "place_fields": [ { "field": "fd_fire", "x": [ 5, 20 ], "y": [ 5, 20 ], "repeat": 40 } ] } + }, + { + "id": "MISSION_MANSION_START", + "type": "mission_definition", + "name": { "str": "Ready or Not" }, + "description": "Survive all day from the crazy inhabitants of the mansion.", + "goal": "MGOAL_CONDITION", + "goal_condition": { "days_since_cataclysm": 1 }, + "difficulty": 3, + "value": 0, + "end": { + "effect": [ + { + "u_add_morale": "morale_feeling_good", + "bonus": 50, + "max_bonus": 50, + "duration": "60 minutes", + "decay_start": "60 minutes" + } + ] + }, + "origins": [ "ORIGIN_GAME_START" ] } ] diff --git a/data/json/npcs/refugee_center/beggars/BEGGAR_3_Luo_Meizhen.json b/data/json/npcs/refugee_center/beggars/BEGGAR_3_Luo_Meizhen.json index e5a5805d1ceb3..967a8a37051a4 100644 --- a/data/json/npcs/refugee_center/beggars/BEGGAR_3_Luo_Meizhen.json +++ b/data/json/npcs/refugee_center/beggars/BEGGAR_3_Luo_Meizhen.json @@ -522,7 +522,7 @@ "dynamic_line": "No, no I don't, and I'd appreciate you not leaving me hanging on that. There are fungal zombies?", "responses": [ { - "text": "Encroaching alien mushrooms, fungal towers, tough mycelium invading ground and trees, zombies taken over by aggressive mold… Yeah. It's ugly stuff.", + "text": "Encroaching alien mushrooms, fungal towers, tough mycelium invading ground and trees, zombies taken over by aggressive mold… Yeah. It's ugly stuff.", "topic": "TALK_REFUGEE_BEGGAR_3_MYCUS2" }, { "text": "What was it you were saying before?", "topic": "TALK_NONE" }, diff --git a/data/json/npcs/refugee_center/beggars/BEGGAR_5_Yusuke_Taylor.json b/data/json/npcs/refugee_center/beggars/BEGGAR_5_Yusuke_Taylor.json index 837720dc4240b..f79e4c8556dd7 100644 --- a/data/json/npcs/refugee_center/beggars/BEGGAR_5_Yusuke_Taylor.json +++ b/data/json/npcs/refugee_center/beggars/BEGGAR_5_Yusuke_Taylor.json @@ -85,7 +85,7 @@ { "type": "talk_topic", "id": "TALK_REFUGEE_BEGGAR_5_TALK2", - "dynamic_line": "It's safer than making my own home. I head out and forage when I have to. As long as we keep it clean and do our part when a zombie comes, they let us squat here as an extra defense. They don't like that I've been bringing food for the other squatters though… I think they are trying to slowly starve us out, and even though I can't keep everyone's bellies full, I've been able to bring back enough to keep these folk in better shape. I suspect they'll find an excuse to kick me out eventually.", + "dynamic_line": "It's safer than making my own home. I head out and forage when I have to. As long as we keep it clean and do our part when a zombie comes, they let us squat here as an extra defense. They don't like that I've been bringing food for the other squatters though… I think they are trying to slowly starve us out, and even though I can't keep everyone's bellies full, I've been able to bring back enough to keep these folk in better shape. I suspect they'll find an excuse to kick me out eventually.", "responses": [ { "text": "I couldn't help but notice, you're covered in fur.", "topic": "TALK_REFUGEE_BEGGAR_5_FUR" }, { diff --git a/data/json/npcs/refugee_center/surface_refugees/NPC_Boris_Borichenko.json b/data/json/npcs/refugee_center/surface_refugees/NPC_Boris_Borichenko.json index 4b194720323c0..3206da9629471 100644 --- a/data/json/npcs/refugee_center/surface_refugees/NPC_Boris_Borichenko.json +++ b/data/json/npcs/refugee_center/surface_refugees/NPC_Boris_Borichenko.json @@ -300,7 +300,7 @@ "type": "mission", "context": "flag", "value": "yes", - "yes": "Well, now that you mention it, with the back bay cleared I could probably set up back there and start work. I don't know if I can handle it. The last time I was back there was the last time I saw… If… if someone were to clean up back there, wipe away some memories, then I could start renovating it into a better living space.", + "yes": "Well, now that you mention it, with the back bay cleared I could probably set up back there and start work. I don't know if I can handle it. The last time I was back there was the last time I saw… if… if someone were to clean up back there, wipe away some memories, then I could start renovating it into a better living space.", "no": "There isn't much to do with a hammer and a saw here indoors, and working outside is too dangerous. If we had enough space for me to do some shuffling around, I could build some privacy walls in here. I tried to set up a bit of a shop in the garage space, but I had to keep taking everything down for caravan loading and unloading and couldn't get anything done. The caravans bring food, so they get priority, I can't argue with that." }, "responses": [ @@ -415,7 +415,7 @@ "advice": "Those of us here in the back have too many bad memories, but perhaps someone who didn't come with the original refugee groups would be less burdened.", "inquire": "Greetings, my friend. Have you found anyone?", "success": "This has great promise. Perhaps something to keep me busy will help. Here, I found some small money to thank you.", - "success_lie": "I see… Well I shall get things in order!", + "success_lie": "I see…. Well I shall get things in order!", "failure": "No worries. Let me know if you want to try again." }, "end": { diff --git a/data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json b/data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json index 6627d7d78728e..8b4efb996700e 100644 --- a/data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json +++ b/data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_shopkeep.json @@ -76,6 +76,8 @@ { "group": "book_survival", "prob": 15 }, { "group": "novels", "prob": 50, "count": [ 1, 3 ] }, { "group": "textbooks", "prob": 30 }, + { "group": "cigar_box_unopened", "prob": 10 }, + { "item": "case_cigar", "prob": 5 }, [ "vest", 40 ], [ "kevlar", 15 ], [ "jacket_army", 30 ], diff --git a/data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_teamster.json b/data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_teamster.json new file mode 100644 index 0000000000000..1dc0e1a7b5eea --- /dev/null +++ b/data/json/npcs/refugee_center/surface_staff/NPC_free_merchant_teamster.json @@ -0,0 +1,280 @@ +[ + { + "type": "npc", + "id": "evac_teamster", + "//": "Appears in the refugee center as a source of information and eventually missions. Works with the free merchant caravans.", + "name_suffix": "Teamster", + "class": "NC_SCAVENGER", + "attitude": 0, + "mission": 3, + "chat": "TALK_FREE_MERCHANT_TEAMSTER", + "faction": "free_merchants" + }, + { + "//": "table of contents - these options will appear in the listed dialogue topics", + "id": [ "TALK_FREE_MERCHANT_TEAMSTER_CHAT" ], + "type": "talk_topic", + "responses": [ + { + "text": "So, have your caravans seen anything interesting out there in the wasteland?", + "topic": "TALK_FREE_MERCHANT_TEAMSTER_DIRECTIONS", + "condition": { + "npc_compare_time_since_var": "directions_recycler", + "type": "timer", + "context": "teamster", + "op": ">=", + "time": "2 days" + }, + "effect": [ + { + "arithmetic": [ { "npc_val": "var", "var_name": "direction", "type": "randomize", "context": "dialogue" }, "=", { "rand": 3 } ] + }, + { "npc_add_var": "directions_recycler", "type": "timer", "context": "teamster", "time": true } + ], + "switch": true + }, + { + "text": "So, have your caravans seen anything interesting out there in the wasteland?", + "topic": "TALK_FREE_MERCHANT_TEAMSTER_DIRECTIONS", + "condition": { + "npc_compare_time_since_var": "directions_recycler", + "type": "timer", + "context": "teamster", + "op": "<", + "time": "2 days" + }, + "switch": true + }, + { + "text": "So, have your caravans seen anything interesting out there in the wasteland?", + "topic": "TALK_FREE_MERCHANT_TEAMSTER_DIRECTIONS", + "effect": [ + { + "arithmetic": [ { "npc_val": "var", "var_name": "direction", "type": "randomize", "context": "dialogue" }, "=", { "rand": 3 } ] + }, + { "npc_add_var": "directions_recycler", "type": "timer", "context": "teamster", "time": true } + ], + "switch": true, + "default": true + }, + { + "text": "I wanted to tell you about a potential new trading partner I met recently.", + "topic": "TALK_FREE_MERCHANT_TEAMSTER_FACTION_INTRO", + "condition": { "u_has_var": "u_met_Rubik", "type": "general", "context": "meeting", "value": "yes" } + } + ] + }, + { + "//": "initial greeting", + "id": "TALK_FREE_MERCHANT_TEAMSTER", + "type": "talk_topic", + "dynamic_line": { + "u_has_var": "u_met_teamster", + "type": "general", + "context": "meeting", + "value": "yes", + "yes": "What can I help you with?", + "no": "Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here caravans far and wide. What can I do ya for?" + }, + "responses": [ + { + "text": "Can I ask you some questions?", + "topic": "TALK_FREE_MERCHANT_TEAMSTER_CHAT", + "effect": { "u_add_var": "u_met_teamster", "type": "general", "context": "meeting", "value": "yes" } + }, + { + "text": "I've gotta run, nice talking to you.", + "topic": "TALK_DONE", + "effect": { "u_add_var": "u_met_teamster", "type": "general", "context": "meeting", "value": "yes" } + } + ] + }, + { + "id": "TALK_FREE_MERCHANT_TEAMSTER_CHAT", + "type": "talk_topic", + "dynamic_line": "Sure, got nothin' to load up just now.", + "responses": [ { "text": "I've gotta run, nice talking to you.", "topic": "TALK_DONE" } ] + }, + { + "type": "talk_topic", + "id": "TALK_FREE_MERCHANT_TEAMSTER_DIRECTIONS", + "dynamic_line": { + "compare_int": [ { "npc_val": "var", "var_name": "direction", "type": "randomize", "context": "dialogue" }, { "const": 0 } ], + "op": "=", + "yes": "No, sorry. Nothin' much worth notin' out there these days, just the odd scattered survivor and they usually don't want random visitors.", + "no": { + "compare_int": [ { "npc_val": "var", "var_name": "direction", "type": "randomize", "context": "dialogue" }, { "const": 1 } ], + "op": "=", + "yes": "Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to do with our caravans, but someone like you they might be OK with.", + "no": { + "compare_int": [ { "npc_val": "var", "var_name": "direction", "type": "randomize", "context": "dialogue" }, { "const": 2 } ], + "op": "=", + "yes": "There's been rumors. Folks talkin' about some kind of secret lab, out in the wilds, with survivors in it. I haven't seen it myself, mind you.", + "no": { + "compare_int": [ { "npc_val": "var", "var_name": "direction", "type": "randomize", "context": "dialogue" }, { "const": 3 } ], + "op": "=", + "yes": "Well, a few of my caravans have come back now talkin' about this giant metal castle on top of a rock, in the middle of nowhere. They ain't been crazy enough to check it out, but you could if you want.", + "no": "ERROR: out of bounds on randomize_directions." + } + } + } + }, + "responses": [ + { + "text": "How do I get to that farm?", + "topic": "TALK_FREE_MERCHANT_TEAMSTER_DIRECTIONS_2", + "condition": { + "and": [ + { + "compare_int": [ { "npc_val": "var", "var_name": "direction", "type": "randomize", "context": "dialogue" }, { "const": 1 } ], + "op": "=" + }, + { "not": { "u_has_var": "directions", "type": "teamster", "context": "mission", "value": "isherwood" } } + ] + }, + "effect": { "assign_mission": "directions_isherwood" }, + "switch": true + }, + { + "text": "How do I get to that lab?", + "topic": "TALK_FREE_MERCHANT_TEAMSTER_DIRECTIONS_2", + "condition": { + "and": [ + { + "compare_int": [ { "npc_val": "var", "var_name": "direction", "type": "randomize", "context": "dialogue" }, { "const": 2 } ], + "op": "=" + }, + { "not": { "u_has_var": "directions", "type": "teamster", "context": "mission", "value": "hub01" } } + ] + }, + "effect": { "assign_mission": "directions_hub01" }, + "switch": true + }, + { + "text": "How do I get to that castle?", + "topic": "TALK_FREE_MERCHANT_TEAMSTER_DIRECTIONS_2", + "condition": { + "and": [ + { + "compare_int": [ { "npc_val": "var", "var_name": "direction", "type": "randomize", "context": "dialogue" }, { "const": 3 } ], + "op": "=" + }, + { "not": { "u_has_var": "directions", "type": "teamster", "context": "mission", "value": "exodii" } } + ] + }, + "effect": { "assign_mission": "directions_exodii" }, + "switch": true + }, + { + "text": "Ah, that's nothing new to me. Thanks anyway though.", + "topic": "TALK_NONE", + "switch": true, + "default": true + }, + { "text": "Hold on, what were you saying before?", "topic": "TALK_NONE" }, + { "text": "Actually, I have to go. Maybe later.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_FREE_MERCHANT_TEAMSTER_DIRECTIONS_2", + "type": "talk_topic", + "dynamic_line": "*shows you on your map where to find it. \"That should get you there. Good luck, I 'spect you'll need it.", + "responses": [ { "text": "Thanks for the directions. I'll check it out.", "topic": "TALK_DONE" } ] + }, + { + "type": "talk_topic", + "id": "TALK_FREE_MERCHANT_TEAMSTER_FACTION_INTRO", + "dynamic_line": "Always lookin' for new places to trade. What you got for me?", + "responses": [ + { + "text": "[ Tell them about Rubik and the Exodii ]", + "topic": "TALK_FREE_MERCHANT_TEAMSTER_EXODII_1", + "condition": { "u_has_var": "u_met_Rubik", "type": "general", "context": "meeting", "value": "yes" } + }, + { "text": "Hold on, what were you saying before?", "topic": "TALK_NONE" }, + { "text": "Actually, I have to go. Maybe later.", "topic": "TALK_DONE" } + ] + }, + { + "type": "talk_topic", + "id": "TALK_FREE_MERCHANT_TEAMSTER_EXODII_1", + "//": "In the future this should start a quest line or allow free merchant caravans to sometimes show up near the exodii base.", + "dynamic_line": "Well now, that's a hell of a story. Some day, I'll see if we can get out there an' look into it. Sounds like there'd be some real interestin' trade.", + "responses": [ { "text": "Can I ask you something else?", "topic": "TALK_FREE_MERCHANT_TEAMSTER_CHAT" } ] + }, + { + "id": "directions_isherwood", + "type": "mission_definition", + "name": { "str": "Check out that farm" }, + "description": "Ran into a bunch of farmers. They don't want much to do with our caravans, but someone like you they might be OK with.", + "goal": "MGOAL_GO_TO", + "difficulty": 2, + "value": 0, + "start": { + "assign_mission_target": { "om_terrain": "farm_isherwood_1", "reveal_radius": 5, "search_range": 400 }, + "effect": { "u_add_var": "directions", "type": "teamster", "context": "mission", "value": "isherwood" } + }, + "origins": [ "ORIGIN_SECONDARY" ], + "dialogue": { + "describe": "Ran into a bunch of farmers. They don't want much to do with our caravans, but someone like you they might be OK with.", + "offer": "Ran into a bunch of farmers. They don't want much to do with our caravans, but someone like you they might be OK with.", + "accepted": "Nice.", + "rejected": "Seems reasonable.", + "advice": "Be careful. It's rough out there.", + "inquire": "How is the search going?", + "success": "Huh, go figure.", + "success_lie": "Huh, go figure.", + "failure": "It is what it is." + } + }, + { + "id": "directions_hub01", + "type": "mission_definition", + "name": { "str": "Check out that farm" }, + "description": "There's been rumors. Folks talkin' about some kind of secret lab, out in the wilds, with survivors in it.", + "goal": "MGOAL_GO_TO", + "difficulty": 2, + "value": 0, + "start": { + "assign_mission_target": { "om_terrain": "robofac_hq_surface_freemerchant_camp", "reveal_radius": 5, "search_range": 400 }, + "effect": { "u_add_var": "directions", "type": "teamster", "context": "mission", "value": "hub01" } + }, + "origins": [ "ORIGIN_SECONDARY" ], + "dialogue": { + "describe": "There's been rumors. Folks talkin' about some kind of secret lab, out in the wilds, with survivors in it.", + "offer": "There's been rumors. Folks talkin' about some kind of secret lab, out in the wilds, with survivors in it.", + "accepted": "Nice.", + "rejected": "Seems reasonable.", + "advice": "Be careful. It's rough out there.", + "inquire": "How is the search going?", + "success": "Huh, go figure.", + "success_lie": "Huh, go figure.", + "failure": "It is what it is." + } + }, + { + "id": "directions_exodii", + "type": "mission_definition", + "name": { "str": "Check out that scrap metal castle" }, + "description": "A few of my caravans have come back now talkin' about this giant metal castle on top of a rock, in the middle of nowhere. They ain't been crazy enough to check it out, but you could if you want.", + "goal": "MGOAL_GO_TO", + "difficulty": 2, + "value": 0, + "start": { + "assign_mission_target": { "om_terrain": "exodii_base_x0y3z0", "reveal_radius": 5, "search_range": 400 }, + "effect": { "u_add_var": "directions", "type": "teamster", "context": "mission", "value": "exodii" } + }, + "origins": [ "ORIGIN_SECONDARY" ], + "dialogue": { + "describe": "A few of my caravans have come back now talkin' about this giant metal castle on top of a rock, in the middle of nowhere. They ain't been crazy enough to check it out, but you could if you want.", + "offer": "A few of my caravans have come back now talkin' about this giant metal castle on top of a rock, in the middle of nowhere. They ain't been crazy enough to check it out, but you could if you want.", + "accepted": "Your funeral.", + "rejected": "Seems reasonable.", + "advice": "Be careful. Seems like a rough place to me.", + "inquire": "How is the search going?", + "success": "Huh, go figure.", + "success_lie": "Huh, go figure.", + "failure": "Seems reasonable." + } + } +] diff --git a/data/json/npcs/refugee_center/surface_visitors/NPC_old_guard_representative.json b/data/json/npcs/refugee_center/surface_visitors/NPC_old_guard_representative.json index ea1959c6b14c1..d76cad8263e27 100644 --- a/data/json/npcs/refugee_center/surface_visitors/NPC_old_guard_representative.json +++ b/data/json/npcs/refugee_center/surface_visitors/NPC_old_guard_representative.json @@ -32,6 +32,31 @@ { "text": "Who are you?", "topic": "TALK_OLD_GUARD_REP_NEW" }, { "text": "Heard anything about the outside world?", "topic": "TALK_OLD_GUARD_REP_WORLD" }, { "text": "Is there any way I can join the 'Old Guard'?", "topic": "TALK_OLD_GUARD_REP_ASK_JOIN" }, + { + "text": "I've got some questions for you about those weird robots.", + "topic": "TALK_OLD_GUARD_REP_EXODII_1", + "condition": { + "or": [ + { "u_has_mission": "MISSION_OLD_GUARD_REP_3" }, + { + "u_has_var": "oldguard-exodii", + "type": "factional_questline", + "context": "mission", + "value": "encountered_base" + } + ] + } + }, + { + "text": "I think I can already tell you what you want to know about those 'robots'.", + "topic": "TALK_OLD_GUARD_REP_MISSION_3_Predone", + "condition": { + "and": [ + { "u_has_mission": "MISSION_OLD_GUARD_REP_3" }, + { "u_has_var": "u_met_Rubik", "type": "general", "context": "meeting", "value": "yes" } + ] + } + }, { "text": "Does the Old Guard need anything?", "topic": "TALK_MISSION_LIST" }, { "text": "Well, bye.", "topic": "TALK_DONE" } ], @@ -90,6 +115,45 @@ "dynamic_line": "You can't actually join unless you go through a recruiter. We can usually use help though, ask me from time to time if there is any work available. Completing missions as a contractor is a great way to make a name for yourself among the most powerful men left in the world.", "responses": [ { "text": "Hmmm…", "topic": "TALK_OLD_GUARD_REP" } ] }, + { + "id": "TALK_OLD_GUARD_REP_EXODII_1", + "type": "talk_topic", + "dynamic_line": "If you want to know what our next steps are, I'm not at liberty to tell you. Truth be told, I don't even know myself. They don't share that sort of information with me.", + "responses": [ + { + "text": "Actually, I've met them. They seem open to trade and things. Thought you might want to know.", + "topic": "TALK_OLD_GUARD_REP_EXODII_2", + "condition": { "u_has_var": "u_met_Rubik", "type": "general", "context": "meeting", "value": "yes" } + }, + { "text": "Can we talk about something else?", "topic": "TALK_OLD_GUARD_REP" } + ] + }, + { + "id": "TALK_OLD_GUARD_REP_EXODII_2", + "type": "talk_topic", + "dynamic_line": "Well, that's interesting. It's not something I'm in a position to do something about, but you might want to take that information to one of the teamsters for the Free Merchants. Maybe that's a way we could establish some friendlier relationships.", + "responses": [ + { "text": "Good idea. I'll go do that.", "topic": "TALK_DONE" }, + { "text": "Huh, maybe. Can we talk about something else?", "topic": "TALK_OLD_GUARD_REP" } + ] + }, + { + "id": "TALK_OLD_GUARD_REP_MISSION_3_Predone", + "type": "talk_topic", + "dynamic_line": "Oh, well. In that case, I would be interested in hearing what you know about them. I can relay it to command. Let's see what I have to trade… how about some antibiotics from our stores? You can never have too many of them out there.", + "responses": [ + { + "text": "Yeah, I've met them. They seem open to trade and things. Not hostile, at least not to me.", + "topic": "TALK_OLD_GUARD_REP_EXODII_2", + "effect": [ { "u_spawn_item": "antibiotics" }, "mission_success", "clear_mission" ] + }, + { + "text": "I'll have to think about it. Let's talk about something else, for now.", + "topic": "TALK_OLD_GUARD_REP" + }, + { "text": "On second thought, I should go.", "topic": "TALK_DONE" } + ] + }, { "id": "TALK_OLD_GUARD_REP_Refuse_Boris_Mission_1", "type": "talk_topic", @@ -177,6 +241,32 @@ { "id": "MISSION_OLD_GUARD_REP_3", "type": "mission_definition", + "name": { "str": "Find Source of Robots" }, + "description": "I don't usually hear much from command, but we got a message by radio recently. You might be the right choice to look into it for me. There've been reports of weird robots and things wandering around since things went south. Dunno how, but apparently command tracked down what they think is the source. They want someone to go check out who is making these, and if we can get any tech or assistance from them. This is strictly recon, you understand: could be a hostile entity, so do not engage directly.", + "goal": "MGOAL_GO_TO", + "difficulty": 2, + "value": 10000, + "start": { "assign_mission_target": { "om_terrain": "exodii_base_x0y3z0", "reveal_radius": 5, "search_range": 400 } }, + "origins": [ "ORIGIN_SECONDARY" ], + "followup": "MISSION_OLD_GUARD_REP_4", + "dialogue": { + "describe": "Got a weird one for you this time…", + "offer": "I don't usually hear much from command, but we got a message by radio recently. You might be the right choice to look into it for me. There've been reports of weird robots and things wandering around since things went south. Dunno how, but apparently command tracked down what they think is the source. They want someone to go check out who is making these, and if we can get any tech or assistance from them. This is strictly recon, you understand: could be a hostile entity, so do not engage directly.", + "accepted": "Thanks, once you know who it is, report back to me and I'll pass that on.", + "rejected": "Come back when you get a chance, if there's any chance these things are on our side, we need all the help we can get.", + "advice": "If you see any weird machines around, do not engage. Sneak away, I'd say. They seem to be hostile to zombies, but that doesn't mean they can tell you aren't one.", + "inquire": "How is the search going?", + "success": "Great work, wasn't sure what I was sending you after.", + "success_lie": "That's a shame, a damn shame. Wish you could have learned more. Thanks for trying.", + "failure": "Damn… let's hope we can try again sometime." + }, + "end": { + "effect": [ { "u_add_var": "oldguard-exodii", "type": "factional_questline", "context": "mission", "value": "encountered_base" } ] + } + }, + { + "id": "MISSION_OLD_GUARD_REP_4", + "type": "mission_definition", "name": { "str": "Secure Trade Route" }, "description": "One of the Free Merchants silently disappeared while escorting a trade caravan. Whoever or whatever is responsible must be quick and quiet - investigate the trade route and eliminate the threat.", "goal": "MGOAL_KILL_MONSTER", @@ -192,7 +282,7 @@ } }, "origins": [ "ORIGIN_SECONDARY" ], - "followup": "MISSION_OLD_GUARD_REP_4", + "followup": "MISSION_OLD_GUARD_REP_5", "dialogue": { "describe": "We need help…", "offer": "There is another monster troubling the merchants but this time it isn't human… at least I don't think. Guy just disappeared while walking behind a packed caravan. They didn't hear any shots but I suppose some raider may have been real sneaky. Check out the area and report anything you find.", @@ -206,7 +296,7 @@ } }, { - "id": "MISSION_OLD_GUARD_REP_4", + "id": "MISSION_OLD_GUARD_REP_5", "type": "mission_definition", "name": { "str": "Assassinate Raider Leader" }, "description": "The Old Guard have located a Hell's Raiders encampment that is coordinating attacks on the Free Merchants. Pay them a visit and execute the area leadership.", @@ -234,7 +324,7 @@ "dialogue": { "describe": "We need help…", "offer": "I've located a Hell's Raiders encampment in the region that appears to be coordinating operations against the Free Merchants. We know almost nothing about the command structure in the 'gang' so I need to send someone in to decapitate the leadership. The raid will be held under orders of the U.S. Marshals Service and by agreeing to the mission you will become a marshal, swearing to assist the federal government in regaining order.", - "accepted": "Now repeat after me… I do solemnly swear that I will support and defend the Constitution of the United States against all enemies, foreign and domestic…… that I will bear true faith and allegiance to the same…… that I take this obligation freely, without any mental reservation or purpose of evasion…… and that I will well and faithfully discharge the duties of the office on which I am about to enter. To establish justice, insure domestic tranquility, provide for the common defense, promote the general welfare and secure the blessings of liberty. So help me God. Congratulations Marshal, don't forget your badge and gun. As a marshal all men or women assisting you are considered deputy marshals so keep them in line.", + "accepted": "Now repeat after me… I do solemnly swear that I will support and defend the Constitution of the United States against all enemies, foreign and domestic… that I will bear true faith and allegiance to the same… that I take this obligation freely, without any mental reservation or purpose of evasion… and that I will well and faithfully discharge the duties of the office on which I am about to enter. To establish justice, insure domestic tranquility, provide for the common defense, promote the general welfare and secure the blessings of liberty. So help me God. Congratulations Marshal, don't forget your badge and gun. As a marshal all men or women assisting you are considered deputy marshals so keep them in line.", "rejected": "Come back when you get a chance, we could use a few good men.", "advice": "I'd recommend having two deputies… it would be a death trap if a single man got surrounded.", "inquire": "Has the leadership been dealt with?", diff --git a/data/json/npcs/robofac/NPC_ROBOFAC_INTERCOM.json b/data/json/npcs/robofac/NPC_ROBOFAC_INTERCOM.json index 1c3b5482ee72c..90d438d03271f 100644 --- a/data/json/npcs/robofac/NPC_ROBOFAC_INTERCOM.json +++ b/data/json/npcs/robofac/NPC_ROBOFAC_INTERCOM.json @@ -188,7 +188,7 @@ "id": "MISSION_ROBOFAC_INTERCOM_ROBOT_SM_1", "type": "mission_definition", "name": { "str": "Iron Safari" }, - "description": "Disable and retrieve the alien robot. You can intercept the robot indicated by Hub 01, or find an inactive robot somewhere else.", + "description": "Disable and retrieve the alien robot. You can intercept the robot indicated by Hub 01, or find an inactive robot somewhere else. You'll need some experience in electronics or mechanics to disable it.", "goal": "MGOAL_CONDITION", "difficulty": 5, "goal_condition": { "u_has_items": { "item": "bot_yrax_trifacet", "count": 1 } }, @@ -432,7 +432,7 @@ "Make it quick.", "Don't loiter.", "Don't do anything stupid.", - "Ugh I hate intercom duty… Wait is the speaker still on?", + "Ugh I hate intercom duty… wait is the speaker still on?", "Please don't bother us senselessly.", "What's up with the interference in this thing?", "Speak slowly and clearly. Please.", @@ -538,7 +538,7 @@ { "id": "TALK_ROBOFAC_INTERCOM_PROTOTYPE_ASK", "type": "talk_topic", - "dynamic_line": "It was a modified Wraitheon chassis, with a custom AI. We hoped it would interact with the outside world for us, but you know how well it went… Shame about what happened, with the evisceration and all…", + "dynamic_line": "It was a modified Wraitheon chassis, with a custom AI. We hoped it would interact with the outside world for us, but you know how well it went…. Shame about what happened, with the evisceration and all…", "speaker_effect": { "effect": { "npc_add_var": "told_about_prototype", "type": "dialogue", "context": "intercom", "value": "yes" }, "sentinel": "told_about_prototype" diff --git a/data/json/npcs/tacoma_ranch/NPC_ranch_foreman.json b/data/json/npcs/tacoma_ranch/NPC_ranch_foreman.json index 5669b8b4f4723..2e283750b1091 100644 --- a/data/json/npcs/tacoma_ranch/NPC_ranch_foreman.json +++ b/data/json/npcs/tacoma_ranch/NPC_ranch_foreman.json @@ -680,7 +680,7 @@ "offer": "We have the basic equipment that we need but without a functioning power grid we are forced to rely on the readily available vehicle batteries. This is going to be a chore but I'll need twelve car batteries to swap between charging and powering our equipment. The good news is that they don't need to be charged, we can take care of that.", "accepted": "I'm counting on you.", "rejected": "Come back when you get a chance. We need skilled survivors.", - "advice": "Cars can be found in traffic jams along roads or in parking lots… I'm sure you can find a few.", + "advice": "Cars can be found in traffic jams along roads or in parking lots… I'm sure you can find a few.", "inquire": "Do you have the car batteries?", "success": "I'm impressed with your abilities.", "success_lie": "What good does this do us?", diff --git a/data/json/npcs/talk_tags.json b/data/json/npcs/talk_tags.json index d8e92c0d6ab68..7662f4e4974b5 100644 --- a/data/json/npcs/talk_tags.json +++ b/data/json/npcs/talk_tags.json @@ -45,7 +45,7 @@ "Thorazine is poison.", "Thorazine? I wouldn't if I were you.", "You don't need thorazine, it's limiting you.", - "Thorazine… That's what 'they' use to keep you tame.", + "Thorazine… that's what 'they' use to keep you tame.", "Don't. This thorazine seriously clouds your mind. You need to stay sharp.", "Sure, take thorazine. If you want to lose your mind and wander into a horde of undead!" ] @@ -248,7 +248,7 @@ "Can you give me something to drink, ?", "I need to get some water.", " if I don't drink something.", - "Water… Is there an oasis nearby?", + "Water… is there an oasis nearby?", "Did you know that lack of water kills faster than lack of rest?", "I can't remember the last time I was this thirsty.", "I'd kill for a sip of water right now." @@ -1198,7 +1198,7 @@ ", that's going to ruin your nose.", "Man, that stinks. Put it out!", "You're going to kill yourself smoking that stuff, .", - "Oh, wow, that smell… Can I have some?", + "Oh, wow, that smell… can I have some?", "Are you sure it's a good idea to smoke that now?", "I smell heresy.", "Seriously? You're smoking that?", diff --git a/data/json/overmap/overmap_mutable/microlab_mutable.json b/data/json/overmap/overmap_mutable/microlab_mutable.json index 85ce5e593ab60..de8e193370d2b 100644 --- a/data/json/overmap/overmap_mutable/microlab_mutable.json +++ b/data/json/overmap/overmap_mutable/microlab_mutable.json @@ -33,9 +33,9 @@ "hallway_to_hallway", "duct_to_surface", "duct_to_entrance", - "microlab_to_microlab", { "id": "hallway_to_microlab", "opposite": "microlab_to_hallway" }, { "id": "microlab_to_hallway", "opposite": "hallway_to_microlab" }, + "microlab_to_microlab", "microlab_entry_to_station", "microlab_station_to_subway" ], @@ -52,27 +52,27 @@ }, "microlab": { "overmap": "microlab_generic", - "north": "microlab_to_microlab", - "east": "microlab_to_microlab", - "south": "microlab_to_microlab", - "west": "microlab_to_microlab" + "north": { "id": "microlab_to_microlab", "alternatives": [ "microlab_to_hallway" ] }, + "east": { "id": "microlab_to_microlab", "alternatives": [ "microlab_to_hallway" ] }, + "south": { "id": "microlab_to_microlab", "alternatives": [ "microlab_to_hallway" ] }, + "west": { "id": "microlab_to_microlab", "alternatives": [ "microlab_to_hallway" ] } }, "microlab_edge": { "overmap": "microlab_generic_edge", - "north": { "id": "microlab_to_microlab", "type": "available" }, - "east": { "id": "microlab_to_microlab", "type": "available" }, - "south": { "id": "microlab_to_microlab", "type": "available" }, - "west": { "id": "microlab_to_microlab", "type": "available" } + "north": { "id": "microlab_to_microlab", "type": "available", "alternatives": [ "microlab_to_hallway" ] }, + "east": { "id": "microlab_to_microlab", "type": "available", "alternatives": [ "microlab_to_hallway" ] }, + "south": { "id": "microlab_to_microlab", "type": "available", "alternatives": [ "microlab_to_hallway" ] }, + "west": { "id": "microlab_to_microlab", "type": "available", "alternatives": [ "microlab_to_hallway" ] } }, "microlab_sub_entry": { "overmap": "microlab_generic_sub_entry_north", "north": "microlab_entry_to_station", "east": "microlab_to_microlab", - "south": "microlab_to_microlab", + "south": "microlab_to_hallway", "west": "microlab_to_microlab" }, "microlab_sub_station": { "overmap": "microlab_sub_station_north", "north": "microlab_station_to_subway", "south": "microlab_entry_to_station" }, - "microlab_subway": { "overmap": "microlab_sub_connector_south", "north": "microlab_station_to_subway" }, + "microlab_subway": { "overmap": "microlab_sub_connector_north", "south": "microlab_station_to_subway" }, "firebreak": { "overmap": "microlab_generic_firebreak_north", "north": "hallway_to_hallway", "south": "hallway_to_hallway" }, "hallway_cross": { "overmap": "microlab_generic_hallway_nesw", @@ -84,45 +84,50 @@ "hallway_straight": { "overmap": "microlab_generic_hallway_ns", "north": "hallway_to_hallway", - "east": "microlab_to_microlab", + "east": "hallway_to_microlab", "south": "hallway_to_hallway", - "west": "microlab_to_microlab" + "west": "hallway_to_microlab" + }, + "hallway_curve": { + "overmap": "microlab_generic_hallway_ne", + "north": "hallway_to_hallway", + "east": "hallway_to_hallway", + "south": "hallway_to_microlab", + "west": "hallway_to_microlab" }, "hallway_end": { - "overmap": "microlab_generic_hallway_end_north", + "overmap": "microlab_generic_hallway_end_south", "north": "hallway_to_hallway", - "east": "microlab_to_microlab", - "south": "microlab_to_microlab", - "west": "microlab_to_microlab" + "east": "hallway_to_microlab", + "south": "hallway_to_microlab", + "west": "hallway_to_microlab" }, - "hallway_blind_end": { - "overmap": "microlab_generic_hallway_blind_end_north", - "north": { "id": "hallway_to_hallway" }, - "east": { "id": "microlab_to_microlab", "type": "available" }, - "south": { "id": "microlab_to_microlab", "type": "available" }, - "west": { "id": "microlab_to_microlab", "type": "available" } - } + "hallway_blind_end": { "overmap": "microlab_generic_hallway_blind_end_north", "north": { "id": "hallway_to_hallway" } } }, "root": "surface", "phases": [ [ { "overmap": "below_entrance", "max": 1 } ], [ { "overmap": "surface_access", "max": 1 } ], [ - { "overmap": "microlab_sub_entry", "max": 1 }, - { "overmap": "microlab_sub_station", "max": 1 }, - { "overmap": "microlab_subway", "max": 1 } + { + "name": "subway_chunk_at_-2", + "chunk": [ + { "overmap": "hallway_straight", "pos": [ 1, 1, 0 ], "rot": "east" }, + { "overmap": "hallway_end", "pos": [ 0, 1, 0 ], "rot": "east" }, + { "overmap": "microlab_sub_entry", "pos": [ 0, 0, 0 ] }, + { "overmap": "microlab_sub_station", "pos": [ 0, -1, 0 ] }, + { "overmap": "microlab_subway", "pos": [ 0, -2, 0 ] } + ], + "max": 1 + } ], - [ { "overmap": "hallway_end", "max": 1 } ], - [ { "overmap": "hallway_straight", "max": 5 } ], + [ { "overmap": "hallway_straight", "max": 4 } ], [ { "overmap": "hallway_cross", "max": 1 } ], [ { "overmap": "hallway_straight", "max": 7 }, { "overmap": "firebreak", "max": 1 } ], [ { "overmap": "hallway_end", "max": 3 } ], + [ { "overmap": "hallway_blind_end", "weight": 1 } ], [ { "overmap": "microlab", "max": 20 } ], - [ - { "overmap": "microlab_edge", "weight": 1000 }, - { "overmap": "hallway_end", "weight": 10 }, - { "overmap": "hallway_blind_end", "weight": 1 } - ] + [ { "overmap": "microlab_edge", "weight": 1 } ] ] } ] diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_alien.json b/data/json/overmap/overmap_terrain/overmap_terrain_alien.json index fc19e54071194..2e260473eaf99 100644 --- a/data/json/overmap/overmap_terrain/overmap_terrain_alien.json +++ b/data/json/overmap/overmap_terrain/overmap_terrain_alien.json @@ -44,6 +44,15 @@ "see_cost": 4, "mondensity": 2 }, + { + "type": "overmap_terrain", + "id": "exodii_base_x0y3z0", + "name": "ground-level entrance", + "sym": "?", + "color": "white", + "see_cost": 4, + "mondensity": 2 + }, { "type": "overmap_terrain", "id": [ @@ -58,7 +67,6 @@ "exodii_base_x1y2z0", "exodii_base_x2y2z0", "exodii_base_x3y2z0", - "exodii_base_x0y3z0", "exodii_base_x1y3z0", "exodii_base_x2y3z0", "exodii_base_x3y3z0" diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_ants.json b/data/json/overmap/overmap_terrain/overmap_terrain_ants.json index 747032b7be1e4..1db06ac11e5a5 100644 --- a/data/json/overmap/overmap_terrain/overmap_terrain_ants.json +++ b/data/json/overmap/overmap_terrain/overmap_terrain_ants.json @@ -6,7 +6,7 @@ "sym": "%", "color": "brown", "see_cost": 2, - "flags": [ "KNOWN_DOWN", "RISK_HIGH" ] + "flags": [ "KNOWN_DOWN", "RISK_HIGH", "REQUIRES_PREDECESSOR" ] }, { "type": "overmap_terrain", diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_faction_base.json b/data/json/overmap/overmap_terrain/overmap_terrain_faction_base.json index 659f930a4f8ab..8cc02a750ea41 100644 --- a/data/json/overmap/overmap_terrain/overmap_terrain_faction_base.json +++ b/data/json/overmap/overmap_terrain/overmap_terrain_faction_base.json @@ -133,6 +133,13 @@ "name": "fabrication workshop survey", "color": "cyan" }, + { + "type": "overmap_terrain", + "id": "faction_base_workshop_2_0", + "copy-from": "faction_base_camp_0", + "name": "fabrication workshop 2 survey", + "color": "cyan" + }, { "type": "overmap_terrain", "id": "faction_base_blacksmith_0", @@ -166,6 +173,13 @@ "name": "livestock survey", "color": "pink" }, + { + "type": "overmap_terrain", + "id": "faction_base_livestock_2_0", + "copy-from": "faction_base_camp_0", + "name": "livestock survey 2", + "color": "pink" + }, { "type": "overmap_terrain", "id": "faction_base_storehouse_0", @@ -174,6 +188,14 @@ "color": "cyan", "delete": { "flags": [ "SOURCE_PEOPLE" ] } }, + { + "type": "overmap_terrain", + "id": "faction_base_storehouse_2_0", + "copy-from": "faction_base_camp_0", + "name": "store house survey 2", + "color": "cyan", + "delete": { "flags": [ "SOURCE_PEOPLE" ] } + }, { "type": "overmap_terrain", "id": "faction_base_saltworks_0", diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_lab.json b/data/json/overmap/overmap_terrain/overmap_terrain_lab.json index 179a22cc95685..7d80614cf85bd 100644 --- a/data/json/overmap/overmap_terrain/overmap_terrain_lab.json +++ b/data/json/overmap/overmap_terrain/overmap_terrain_lab.json @@ -169,6 +169,8 @@ "type": "overmap_terrain", "id": "central_lab_entrance", "name": "forest", + "looks_like": "forest", + "land_use_code": "forest", "sym": "F", "color": "green", "see_cost": 3, diff --git a/data/json/overmap/overmap_terrain/overmap_terrain_transportation.json b/data/json/overmap/overmap_terrain/overmap_terrain_transportation.json index e0af424ada0a3..70f07cbb9e8d6 100644 --- a/data/json/overmap/overmap_terrain/overmap_terrain_transportation.json +++ b/data/json/overmap/overmap_terrain/overmap_terrain_transportation.json @@ -37,7 +37,7 @@ "mapgen_end": [ { "method": "builtin", "name": "road_end" } ], "mapgen_tee": [ { "method": "builtin", "name": "road_tee" } ], "mapgen_four_way": [ { "method": "builtin", "name": "road_four_way" } ], - "flags": [ "LINEAR" ] + "flags": [ "LINEAR", "IGNORE_ROTATION_FOR_ADJACENCY" ] }, { "type": "overmap_terrain", diff --git a/data/json/player_activities.json b/data/json/player_activities.json index 4d578879e347a..4fe0a7219e30d 100644 --- a/data/json/player_activities.json +++ b/data/json/player_activities.json @@ -56,6 +56,23 @@ "no_resume": true, "multi_activity": true }, + { + "type": "activity_type", + "id": "ACT_MULTIPLE_MOP", + "activity_level": "NO_EXERCISE", + "verb": "mopping", + "based_on": "neither", + "suspendable": false, + "no_resume": true, + "multi_activity": true + }, + { + "id": "ACT_MOP", + "type": "activity_type", + "activity_level": "LIGHT_EXERCISE", + "verb": "mopping", + "based_on": "speed" + }, { "id": "ACT_TIDY_UP", "type": "activity_type", @@ -580,7 +597,7 @@ "type": "activity_type", "activity_level": "NO_EXERCISE", "verb": "welding", - "based_on": "speed" + "based_on": "time" }, { "id": "ACT_CRACKING", diff --git a/data/json/portal_storm_effect_on_condition.json b/data/json/portal_storm_effect_on_condition.json new file mode 100644 index 0000000000000..a7f26adeae1c7 --- /dev/null +++ b/data/json/portal_storm_effect_on_condition.json @@ -0,0 +1,537 @@ +[ + { + "type": "effect_on_condition", + "id": "scenario_strong_portal_storm_base", + "eoc_type": "SCENARIO_SPECIFIC", + "effect": [ + { + "arithmetic": [ { "global_val": "var", "var_name": "ps_base_str", "type": "weather", "context": "ps" }, "=", { "const": 10 } ] + } + ] + }, + { + "type": "effect_on_condition", + "id": "scenario_strong_portal_storm", + "eoc_type": "SCENARIO_SPECIFIC", + "effect": [ + { + "arithmetic": [ { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, "=", { "const": 15 } ] + }, + { + "arithmetic": [ { "global_val": "var", "var_name": "cause_portal_storm", "type": "weather", "context": "ps" }, "=", { "const": 1 } ] + }, + "next_weather" + ] + }, + { + "id": "test_portal_cause", + "type": "TOOL", + "name": { "str_sp": "Test Portal Causer" }, + "description": "Causes portal storms.", + "weight": "1 g", + "volume": "250 ml", + "symbol": "!", + "color": "light_red", + "use_action": { + "type": "effect_on_conditions", + "description": "Touch the opening.", + "effect_on_conditions": [ "EOC_CAUSE_PORTAL_STORM" ] + } + }, + { + "id": "test_portal_strengener", + "type": "TOOL", + "name": { "str_sp": "Test Portal Strengthener" }, + "description": "Strengthens portal storms.", + "weight": "1 g", + "volume": "250 ml", + "symbol": "!", + "color": "light_red", + "use_action": { + "type": "effect_on_conditions", + "description": "Touch the opening.", + "effect_on_conditions": [ + { + "id": "EOC_TEST_STRENGTHEN", + "effect": { "arithmetic": [ { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, "++" ] } + } + ] + } + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_STORM_WARN_OR_CAUSE_RECURRING", + "recurrence_min": "6 days", + "recurrence_max": "9 days", + "global": true, + "effect": [ { "set_queue_effect_on_condition": [ "EOC_PORTAL_STORM_WARN" ] } ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_STORM_WARN", + "//": "This runs eocs that will check if the user can see, if they can, it will show messages depending on", + "//2": "base portal strength and if its day or night. Then it queues up either itself or the eoc that causes a portal storm.", + "effect": [ + { + "set_queue_effect_on_condition": [ + { + "id": "EOC_PORTAL_STORM_WARN_CAN_SEE_1", + "condition": { + "and": [ + "u_can_see", + "u_is_outside", + { + "compare_int": [ { "global_val": "var", "var_name": "ps_base_str", "type": "weather", "context": "ps" }, { "const": 3 } ], + "op": "<" + } + ] + }, + "effect": [ + { + "set_queue_effect_on_condition": [ + { + "id": "EOC_PORTAL_STORM_WARN_DAY_NIGHT_1", + "condition": "is_day", + "effect": [ { "u_message": "PORTAL_STORM_DAY_MESSAGES_1", "snippet": true } ], + "false_effect": { "u_message": "PORTAL_STORM_NIGHT_MESSAGES_1", "snippet": true } + } + ] + } + ] + }, + { + "id": "EOC_PORTAL_STORM_WARN_CAN_SEE_2", + "condition": { + "and": [ + "u_can_see", + "u_is_outside", + { + "compare_int": [ { "global_val": "var", "var_name": "ps_base_str", "type": "weather", "context": "ps" }, { "const": 6 } ], + "op": "<" + }, + { + "compare_int": [ { "global_val": "var", "var_name": "ps_base_str", "type": "weather", "context": "ps" }, { "const": 3 } ], + "op": ">=" + } + ] + }, + "effect": [ + { + "set_queue_effect_on_condition": [ + { + "id": "EOC_PORTAL_STORM_WARN_DAY_NIGHT_2", + "condition": "is_day", + "effect": [ { "u_message": "PORTAL_STORM_DAY_MESSAGES_2", "snippet": true } ], + "false_effect": { "u_message": "PORTAL_STORM_NIGHT_MESSAGES_2", "snippet": true } + } + ] + } + ] + }, + { + "id": "EOC_PORTAL_STORM_WARN_CAN_SEE_3", + "condition": { + "and": [ + "u_can_see", + "u_is_outside", + { + "compare_int": [ { "global_val": "var", "var_name": "ps_base_str", "type": "weather", "context": "ps" }, { "const": 6 } ], + "op": ">=" + } + ] + }, + "effect": [ + { + "set_queue_effect_on_condition": [ + { + "id": "EOC_PORTAL_STORM_WARN_DAY_NIGHT_3", + "condition": "is_day", + "effect": [ { "u_message": "PORTAL_STORM_DAY_MESSAGES_3", "snippet": true } ], + "false_effect": { "u_message": "PORTAL_STORM_NIGHT_MESSAGES_3", "snippet": true } + } + ] + } + ] + } + ] + }, + { + "set_queue_effect_on_condition": [ + { + "id": "EOC_PORTAL_STORM_WARN_OR_CAUSE", + "effect": [ { "set_weighted_list_eocs": [ [ "EOC_CAUSE_PORTAL_STORM", 1 ], [ "EOC_PORTAL_STORM_WARN", 3 ] ] } ] + } + ], + "time_in_future_min": "1 hours", + "time_in_future_max": "6 hours" + } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_CAUSE_PORTAL_STORM", + "//": "This sets up all the variables for the start of a portal storm. The storm won't happen until the current weather", + "//2": "ends though. This will usually be 5 minutes at most.", + "condition": { + "not": { + "or": [ + { "is_weather": "portal_storm" }, + { + "compare_int": [ { "global_val": "var", "var_name": "cause_portal_storm", "type": "weather", "context": "ps" }, { "const": 1 } ], + "op": "=" + } + ] + } + }, + "effect": [ + { + "arithmetic": [ { "global_val": "var", "var_name": "cause_portal_storm", "type": "weather", "context": "ps" }, "=", { "const": 1 } ] + }, + "next_weather", + { + "arithmetic": [ + { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, + "=", + { "global_val": "var", "var_name": "ps_base_str", "type": "weather", "context": "ps" }, + "+", + { "const": 1 } + ] + }, + { + "set_queue_effect_on_condition": [ + { + "id": "EOC_PORTAL_STORM_INCREASE_BASE_STRENGTH", + "//": "Cap portal storm base strength at 25", + "condition": { + "compare_int": [ { "global_val": "var", "var_name": "ps_base_str", "type": "weather", "context": "ps" }, { "const": 25 } ], + "op": "<" + }, + "effect": [ { "arithmetic": [ { "global_val": "var", "var_name": "ps_base_str", "type": "weather", "context": "ps" }, "++" ] } ] + } + ] + } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_STRENGTHEN", + "//": "Increases the portal storms strength.", + "recurrence_min": "45 minutes", + "recurrence_max": "75 minutes", + "global": true, + "condition": { "is_weather": "portal_storm" }, + "deactivate_condition": { "not": { "is_weather": "portal_storm" } }, + "effect": [ + { "arithmetic": [ { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, "++" ] }, + { + "arithmetic": [ { "global_val": "var", "var_name": "cause_portal_storm", "type": "weather", "context": "ps" }, "=", { "const": 0 } ] + } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_EFFECTS_1", + "//": "Weakest effects.", + "recurrence_min": "15 seconds", + "recurrence_max": "75 seconds", + "global": true, + "condition": { "is_weather": "portal_storm" }, + "deactivate_condition": { "not": { "is_weather": "portal_storm" } }, + "effect": [ + { + "set_weighted_list_eocs": [ + [ "EOC_PORTAL_WRAITH", 5 ], + [ "EOC_PORTAL_IMPOSSIBLE_SHAPE", 1 ], + [ "EOC_PORTAL_PAIN", 1 ], + [ "EOC_PORTAL_LIGHT", 2 ], + [ "EOC_PORTAL_MESSAGE", 5 ] + ] + } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_EFFECTS_2", + "//": "Stronger effects.", + "recurrence_min": "45 seconds", + "recurrence_max": "90 seconds", + "global": true, + "condition": { + "and": [ + { "is_weather": "portal_storm" }, + { + "compare_int": [ { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, { "const": 4 } ], + "op": ">" + } + ] + }, + "deactivate_condition": { "not": { "is_weather": "portal_storm" } }, + "effect": [ + { + "set_weighted_list_eocs": [ + [ "EOC_PORTAL_RADIATION", 1 ], + [ "EOC_PORTAL_NETHER_SPAWN", 1 ], + [ "EOC_PORTAL_SMOKE", 1 ], + [ "EOC_PORTAL_MESSAGE", 3 ] + ] + } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_EFFECTS_3", + "//": "The most painful stuff.", + "recurrence_min": "60 seconds", + "recurrence_max": "90 seconds", + "global": true, + "condition": { + "and": [ + { "is_weather": "portal_storm" }, + { + "compare_int": [ { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, { "const": 8 } ], + "op": ">" + } + ] + }, + "deactivate_condition": { "not": { "is_weather": "portal_storm" } }, + "effect": [ { "set_weighted_list_eocs": [ [ "EOC_PORTAL_GIANT_APPENDAGE", 2 ], [ "EOC_PORTAL_INCORPOREAL", 1 ] ] } ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_MESSAGE", + "//": "This displays messages depending on the storms strength.", + "condition": { "and": [ "u_is_outside", "u_can_see", { "not": { "u_has_worn_with_flag": "PORTAL_PROOF" } } ] }, + "effect": [ + { + "set_queue_effect_on_condition": [ + { + "id": "EOC_PORTAL_STORM_MESSAGE_1", + "condition": { + "compare_int": [ { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, { "const": 3 } ], + "op": "<" + }, + "effect": [ { "u_message": "PORTAL_STORM_MESSAGES_1", "snippet": true } ] + }, + { + "id": "EOC_PORTAL_STORM_MESSAGE_2", + "condition": { + "and": [ + { + "compare_int": [ { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, { "const": 6 } ], + "op": "<" + }, + { + "compare_int": [ { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, { "const": 3 } ], + "op": ">=" + } + ] + }, + "effect": [ { "u_message": "PORTAL_STORM_MESSAGES_2", "snippet": true } ] + }, + { + "id": "EOC_PORTAL_STORM_MESSAGE_3", + "condition": { + "compare_int": [ { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, { "const": 6 } ], + "op": ">=" + }, + "effect": [ { "u_message": "PORTAL_STORM_MESSAGES_3", "snippet": true } ] + } + ] + } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_RADIATION", + "//": "Just a fun little irony, it looks nice but under the hood it ain't good for you.", + "condition": { + "and": [ + "u_is_outside", + { "not": { "u_has_worn_with_flag": "RAD_PROOF" } }, + { "not": { "u_has_worn_with_flag": "PORTAL_PROOF" } } + ] + }, + "effect": [ + { + "u_message": "For a second the air glows a beautiful color you've never seen before and can't quite recall afterwards.", + "type": "good" + }, + { + "arithmetic": [ + { "global_val": "var", "var_name": "ps_rad_str", "type": "weather", "context": "ps" }, + "=", + { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, + "+", + { "const": 10 } + ] + }, + { + "arithmetic": [ { "u_val": "rad" }, "+=", { "global_val": "var", "var_name": "ps_rad_str", "type": "weather", "context": "ps" } ] + } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_NETHER_SPAWN", + "//": "Emulate a classic portal by spawning from its spawn group.", + "condition": "u_is_outside", + "effect": [ + { "u_message": "Several large portals open and before they close monsters pour through.", "type": "bad" }, + { + "u_set_spawn_monster": "GROUP_NETHER_PORTAL", + "group": true, + "real_count": 2, + "hallucination_count": 2, + "lifespan_min": "10 seconds", + "lifespan_max": "2 minutes" + } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_WRAITH", + "condition": "u_is_outside", + "effect": [ + { + "u_message": "Small gashes in reality open nearby. On the other side you see an endless dark ocean. Some alien beings spill out before the portals close.", + "type": "bad" + }, + { + "arithmetic": [ + { "global_val": "var", "var_name": "ps_wraith_count", "type": "weather", "context": "ps" }, + "=", + { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, + "/", + { "const": 3 } + ] + }, + { + "arithmetic": [ { "global_val": "var", "var_name": "ps_wraith_count", "type": "weather", "context": "ps" }, "++" ] + }, + { + "u_set_spawn_monster": "mon_wraith", + "real_count": { "name": "ps_wraith_count", "type": "weather", "context": "ps", "default": 1, "global": true }, + "hallucination_count": { "name": "ps_wraith_count", "type": "weather", "context": "ps", "default": 1, "global": true }, + "lifespan_min": "5 seconds", + "lifespan_max": "2 minutes" + } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_IMPOSSIBLE_SHAPE", + "condition": "u_is_outside", + "effect": [ + { + "u_message": "You cannot remember how the impossible shapes came to be here. The pain in your head suggests that is a good thing.", + "type": "bad" + }, + { "arithmetic": [ { "u_val": "pain" }, "+=", { "const": 3 } ] }, + { + "u_set_spawn_monster": "mon_impossible_shape", + "real_count": 1, + "hallucination_count": 1, + "lifespan_min": "1 minutes", + "lifespan_max": "3 minutes" + } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_GIANT_APPENDAGE", + "condition": "u_is_outside", + "effect": [ + { "u_message": "Bizzare limbs seemingly tear their way into reality from elsewhere.", "type": "bad" }, + { + "u_set_spawn_monster": "mon_giant_appendage", + "real_count": 1, + "hallucination_count": 3, + "lifespan_min": "5 seconds", + "lifespan_max": "3 minutes" + } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_PAIN", + "condition": { "and": [ "u_is_outside", { "not": { "u_has_worn_with_flag": "PORTAL_PROOF" } } ] }, + "effect": [ + { + "u_message": "You awake with a start from what must have been a violent and horrifying daydream. Your body aches as if the wounds were real.", + "type": "bad" + }, + { "arithmetic": [ { "u_val": "pain" }, "+=", { "const": 30 } ] }, + { "u_set_field": "fd_blood", "radius": 2 } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_SMOKE", + "condition": "u_is_outside", + "effect": [ + { "u_message": "A million tiny pinpricks in space open for an instant and smoke pours everywhere.", "type": "bad" }, + { "u_set_field": "fd_smoke" } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_LIGHT", + "//": "If its night make it bright, if its day make it dark.", + "effect": [ + { + "arithmetic": [ + { "global_val": "var", "var_name": "ps_light_str", "type": "weather", "context": "ps" }, + "=", + { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, + "*", + { "time": "1 minutes" } + ] + }, + { + "set_queue_effect_on_condition": [ + { + "id": "portal_storm_dark_light", + "condition": "is_day", + "effect": [ + { + "custom_light_level": 0, + "length_min": "1 seconds", + "length_max": { "name": "ps_light_str", "type": "weather", "context": "ps", "default": "1 minutes", "global": true } + }, + { "u_message": "The sun is snuffed out like a candle.", "type": "bad" } + ], + "false_effect": [ + { + "custom_light_level": 125, + "length_min": "1 seconds", + "length_max": { "name": "ps_light_str", "type": "weather", "context": "ps", "default": "1 minutes", "global": true } + }, + { "u_message": "Some of the stars grow so bright they hurt to look at.", "type": "bad" } + ] + } + ] + } + ] + }, + { + "type": "effect_on_condition", + "id": "EOC_PORTAL_INCORPOREAL", + "condition": { "and": [ "u_is_outside", { "not": { "u_has_worn_with_flag": "PORTAL_PROOF" } } ] }, + "effect": [ + { + "arithmetic": [ + { "global_val": "var", "var_name": "ps_incorporeal_str", "type": "weather", "context": "ps" }, + "=", + { "global_val": "var", "var_name": "ps_str", "type": "weather", "context": "ps" }, + "*", + { "time": "1 seconds" } + ] + }, + { "u_message": "You feel stretched, as if part of you was elsewhere.", "type": "bad" }, + { + "u_add_effect": "incorporeal", + "duration": { "name": "ps_incorporeal_str", "type": "weather", "context": "ps", "default": "1 seconds", "global": true } + } + ] + } +] diff --git a/data/json/professions.json b/data/json/professions.json index d30e921cdb432..4705585766339 100644 --- a/data/json/professions.json +++ b/data/json/professions.json @@ -1599,8 +1599,6 @@ "gloves_tactical", "armor_riot", "helmet_riot", - "armguard_hard", - "legguard_hard", "badge_deputy", "wristwatch", "gasbomb" @@ -3748,22 +3746,22 @@ "items": { "both": { "items": [ - "pants_army", - "socks", - "undershirt", + "nomex_socks", "boots_combat", "wristwatch", - "fancy_sunglasses", "gloves_tactical", - "helmet_army", + { "item": "flight_helmet", "ammo-item": "light_plus_battery_cell", "charges": 150 }, + "mil_flight_suit", "jacket_army", "webbing_belt", "legpouch_large" ], "entries": [ - { "group": "charged_two_way_radio" }, + { "group": "charged_matches" }, + { "group": "charged_flashlight" }, + { "item": "handflare", "count": 2, "charges": 200 }, + { "item": "whistle" }, { "item": "water_clean", "container-item": "canteen" }, - { "item": "ear_plugs", "custom-flags": [ "no_auto_equip" ] }, { "item": "m17", "ammo-item": "9mm", "container-item": "holster", "charges": 17 }, { "item": "p320mag_17rd_9x19mm", "ammo-item": "9mm", "charges": 17 }, { "item": "p320mag_17rd_9x19mm", "ammo-item": "9mm", "charges": 17 } @@ -4045,12 +4043,13 @@ "dress_shoes", "gold_watch", "diamond_ring", - "cigar", + "cigar_cutter", "gold_bracelet", "knuckle_brass" ], "entries": [ { "group": "charged_cell_phone" }, + { "item": "cigar", "container-item": "case_cigar", "charges": 2 }, { "item": "deagle_44", "ammo-item": "44fmj", "container-item": "holster", "charges": 8 }, { "item": "deaglemag", "ammo-item": "44fmj", "charges": 8, "count": 2 } ] @@ -4059,5 +4058,50 @@ "female": [ "bra", "panties" ] }, "traits": [ "LIAR" ] + }, + { + "type": "profession", + "id": "paranormal_investigator", + "name": "Paranormal Investigator", + "description": "You were dismissed from your position as a parapsychology professor at the local university and started your own business as a paranormal investigator. Your former colleagues didn't approve of your research, but it looks like it's paying off now.", + "points": 2, + "skills": [ { "level": 2, "name": "chemistry" }, { "level": 2, "name": "electronics" } ], + "traits": [ "SPIRITUAL" ], + "proficiencies": [ "prof_electromagnetics" ], + "items": { + "both": { + "items": [ "pants", "technician_shirt_gray", "cleansuit", "socks", "gloves_rubber", "tool_belt", "glasses_safety", "camera_bag" ], + "entries": [ + { "group": "charged_smart_phone" }, + { "group": "charged_flashlight" }, + { + "item": "light_minus_battery_cell", + "ammo-item": "battery", + "charges": 50, + "container-item": "rad_monitor" + }, + { "item": "light_battery_cell", "ammo-item": "battery", "charges": 100, "container-item": "radio" }, + { "item": "light_battery_cell", "ammo-item": "battery", "charges": 100, "container-item": "camera_pro" } + ] + }, + "male": [ "boxer_shorts" ], + "female": [ "bra", "panties" ] + } + }, + { + "type": "profession", + "id": "birder", + "name": "Bird Watcher", + "description": "You were at your favorite park looking at the robins when the Cataclysm struck. Now all you have are your binoculars and a lot of trivia about local birds to share with any survivors you may find.", + "points": 1, + "skills": [ { "level": 1, "name": "survival" } ], + "items": { + "both": { + "items": [ "jeans", "longshirt", "socks", "sneakers", "mbag", "wristwatch" ], + "entries": [ { "group": "charged_smart_phone" }, { "item": "binoculars" } ] + }, + "male": [ "boxer_shorts" ], + "female": [ "bra", "panties" ] + } } ] diff --git a/data/json/proficiencies/weakpoints.json b/data/json/proficiencies/weakpoints.json new file mode 100644 index 0000000000000..69c1442327513 --- /dev/null +++ b/data/json/proficiencies/weakpoints.json @@ -0,0 +1,21 @@ +[ + { + "type": "proficiency", + "id": "prof_debug_weakpoint", + "name": { "str": "Debug Weakpoint" }, + "description": "Basic improvement on the chance of hitting the Weakpoint Monster's weak points.", + "can_learn": true, + "time_to_learn": "30 m", + "default_weakpoint_bonus": 4, + "default_weakpoint_penalty": 1 + }, + { + "type": "proficiency", + "id": "prof_debug_weakpoint_expert", + "name": { "str": "Expert Debug Weakpoint" }, + "description": "Expert improvement on the chance of hitting the Weakpoint Monster's weak points.", + "can_learn": true, + "time_to_learn": "12 h", + "required_proficiencies": [ "prof_debug_weakpoint" ] + } +] diff --git a/data/json/recipes/armor/suit.json b/data/json/recipes/armor/suit.json index 9dec9a9a4eef5..f95adc773178f 100644 --- a/data/json/recipes/armor/suit.json +++ b/data/json/recipes/armor/suit.json @@ -906,6 +906,20 @@ "using": [ [ "sewing_standard", 30 ] ], "components": [ [ [ "rag", 26 ] ] ] }, + { + "result": "k_gambeson", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_ARMOR", + "subcategory": "CSC_ARMOR_SUIT", + "skill_used": "tailor", + "difficulty": 8, + "time": "6 h", + "autolearn": true, + "book_learn": [ [ "textbook_armwest", 3 ] ], + "using": [ [ "sewing_standard", 30 ] ], + "components": [ [ [ "sheet_kevlar_layered", 36 ] ] ] + }, { "result": "xl_gambeson", "type": "recipe", @@ -914,6 +928,14 @@ "using": [ [ "sewing_standard", 45 ] ], "components": [ [ [ "rag", 62 ] ] ] }, + { + "result": "xl_k_gambeson", + "type": "recipe", + "copy-from": "k_gambeson", + "time": "6 h 45 m", + "using": [ [ "sewing_standard", 45 ] ], + "components": [ [ [ "sheet_kevlar_layered", 85 ] ] ] + }, { "result": "h20survivor_suit", "type": "recipe", diff --git a/data/json/recipes/basecamps/base/fbmc_radio_tower/recipe_modular_radio_tower_common.json b/data/json/recipes/basecamps/base/fbmc_radio_tower/recipe_modular_radio_tower_common.json index 06b23a5a36fd9..7506f33f0c90a 100644 --- a/data/json/recipes/basecamps/base/fbmc_radio_tower/recipe_modular_radio_tower_common.json +++ b/data/json/recipes/basecamps/base/fbmc_radio_tower/recipe_modular_radio_tower_common.json @@ -212,7 +212,7 @@ [ { "id": "SCREW_FINE" } ], [ { "id": "WRENCH", "level": 2 } ], [ { "id": "WRENCH_FINE" } ], - [ { "id": "GLARE", "level": 2 } ] + [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ diff --git a/data/json/recipes/basecamps/base/recipe_modular_firestation_1/recipe_modular_firestation1.json b/data/json/recipes/basecamps/base/recipe_modular_firestation_1/recipe_modular_firestation1.json index dbdebdb880f80..fd9993410ccd0 100644 --- a/data/json/recipes/basecamps/base/recipe_modular_firestation_1/recipe_modular_firestation1.json +++ b/data/json/recipes/basecamps/base/recipe_modular_firestation_1/recipe_modular_firestation1.json @@ -451,7 +451,7 @@ "skills": [ [ "fabrication", 3 ] ], "inline": { "tools": [ [ [ "oxy_torch", 20 ], [ "toolset", 150 ], [ "welder", 100 ], [ "welder_crude", 150 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "pipe", 16 ] ], [ [ "sheet_metal", 4 ] ], [ [ "sheet_metal_small", 8 ] ] ] } } diff --git a/data/json/recipes/basecamps/base/recipe_modular_hub/version_1/recipe_modular_field_metal.json b/data/json/recipes/basecamps/base/recipe_modular_hub/version_1/recipe_modular_field_metal.json index 95859ea6c3660..9f0da85be3dd8 100644 --- a/data/json/recipes/basecamps/base/recipe_modular_hub/version_1/recipe_modular_field_metal.json +++ b/data/json/recipes/basecamps/base/recipe_modular_hub/version_1/recipe_modular_field_metal.json @@ -18,7 +18,7 @@ "skills": [ [ "fabrication", 5 ] ], "inline": { "tools": [ [ [ "oxy_torch", 120 ], [ "welder", 600 ], [ "welder_crude", 900 ], [ "toolset", 900 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "steel_plate", 24 ] ] ] } } @@ -42,7 +42,7 @@ "skills": [ [ "fabrication", 5 ] ], "inline": { "tools": [ [ [ "oxy_torch", 110 ], [ "welder", 550 ], [ "welder_crude", 825 ], [ "toolset", 825 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "nail", 30 ] ], [ [ "glass_sheet", 1 ] ], [ [ "steel_plate", 22 ] ] ] } } @@ -66,7 +66,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 140 ], [ "toolset", 1050 ], [ "welder", 700 ], [ "welder_crude", 1050 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "hinge", 3 ] ], [ [ "scrap", 48 ], [ "steel_chunk", 16 ] ], [ [ "steel_plate", 30 ] ], [ [ "spike", 8 ] ] ] } } @@ -90,7 +90,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 500 ], [ "toolset", 3750 ], [ "welder", 2500 ], [ "welder_crude", 3750 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "glass_sheet", 1 ] ], @@ -122,7 +122,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 460 ], [ "toolset", 3450 ], [ "welder", 2300 ], [ "welder_crude", 3450 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "glass_sheet", 1 ] ], @@ -154,7 +154,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 500 ], [ "toolset", 3750 ], [ "welder", 2500 ], [ "welder_crude", 3750 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "glass_sheet", 1 ] ], @@ -186,7 +186,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 460 ], [ "toolset", 3450 ], [ "welder", 2300 ], [ "welder_crude", 3450 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "glass_sheet", 1 ] ], @@ -218,7 +218,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 370 ], [ "toolset", 2775 ], [ "welder", 1850 ], [ "welder_crude", 2775 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "glass_sheet", 1 ] ], @@ -250,7 +250,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 500 ], [ "toolset", 3750 ], [ "welder", 2500 ], [ "welder_crude", 3750 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "glass_sheet", 1 ] ], @@ -282,7 +282,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 460 ], [ "toolset", 3450 ], [ "welder", 2300 ], [ "welder_crude", 3450 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "glass_sheet", 1 ] ], @@ -314,7 +314,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 500 ], [ "toolset", 3750 ], [ "welder", 2500 ], [ "welder_crude", 3750 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "glass_sheet", 1 ] ], @@ -346,7 +346,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 460 ], [ "toolset", 3450 ], [ "welder", 2300 ], [ "welder_crude", 3450 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "glass_sheet", 1 ] ], @@ -378,7 +378,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 240 ], [ "toolset", 1800 ], [ "welder", 1200 ], [ "welder_crude", 1800 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "hinge", 3 ] ], [ [ "scrap", 48 ], [ "steel_chunk", 16 ] ], [ [ "steel_plate", 50 ] ], [ [ "spike", 8 ] ] ] } } @@ -402,7 +402,7 @@ "skills": [ [ "fabrication", 5 ] ], "inline": { "tools": [ [ [ "oxy_torch", 210 ], [ "welder", 1050 ], [ "welder_crude", 1575 ], [ "toolset", 1575 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "steel_plate", 42 ] ] ] } } @@ -426,7 +426,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 220 ], [ "toolset", 1650 ], [ "welder", 1100 ], [ "welder_crude", 1650 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "hinge", 6 ] ], [ [ "scrap", 96 ], [ "steel_chunk", 32 ] ], [ [ "steel_plate", 48 ] ], [ [ "spike", 16 ] ] ] } } @@ -450,7 +450,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 190 ], [ "toolset", 1425 ], [ "welder", 950 ], [ "welder_crude", 1425 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "hinge", 3 ] ], [ [ "scrap", 48 ], [ "steel_chunk", 16 ] ], [ [ "steel_plate", 40 ] ], [ [ "spike", 8 ] ] ] } } @@ -474,7 +474,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 400 ], [ "toolset", 3000 ], [ "welder", 2000 ], [ "welder_crude", 3000 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "hinge", 3 ] ], [ [ "scrap", 48 ], [ "steel_chunk", 16 ] ], [ [ "steel_plate", 82 ] ], [ [ "spike", 8 ] ] ] } } @@ -498,7 +498,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 220 ], [ "toolset", 1650 ], [ "welder", 1100 ], [ "welder_crude", 1650 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "hinge", 6 ] ], [ [ "scrap", 96 ], [ "steel_chunk", 32 ] ], [ [ "steel_plate", 48 ] ], [ [ "spike", 16 ] ] ] } } @@ -522,7 +522,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 190 ], [ "toolset", 1425 ], [ "welder", 950 ], [ "welder_crude", 1425 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "hinge", 3 ] ], [ [ "scrap", 48 ], [ "steel_chunk", 16 ] ], [ [ "steel_plate", 40 ] ], [ [ "spike", 8 ] ] ] } } @@ -546,7 +546,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 240 ], [ "toolset", 1800 ], [ "welder", 1200 ], [ "welder_crude", 1800 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "hinge", 3 ] ], [ [ "scrap", 48 ], [ "steel_chunk", 16 ] ], [ [ "steel_plate", 50 ] ], [ [ "spike", 8 ] ] ] } } @@ -570,7 +570,7 @@ "skills": [ [ "fabrication", 5 ] ], "inline": { "tools": [ [ [ "oxy_torch", 210 ], [ "welder", 1050 ], [ "welder_crude", 1575 ], [ "toolset", 1575 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "steel_plate", 42 ] ] ] } } @@ -599,7 +599,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 400 ], [ "toolset", 3000 ], [ "welder", 2000 ], [ "welder_crude", 3000 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "hinge", 3 ] ], [ [ "scrap", 48 ], [ "steel_chunk", 16 ] ], [ [ "steel_plate", 82 ] ], [ [ "spike", 8 ] ] ] } } diff --git a/data/json/recipes/basecamps/base/recipe_modular_shelter/recipe_modular_shelter_common.json b/data/json/recipes/basecamps/base/recipe_modular_shelter/recipe_modular_shelter_common.json index 274c3a65b432a..f74d9af974d60 100644 --- a/data/json/recipes/basecamps/base/recipe_modular_shelter/recipe_modular_shelter_common.json +++ b/data/json/recipes/basecamps/base/recipe_modular_shelter/recipe_modular_shelter_common.json @@ -774,7 +774,7 @@ "skills": [ [ "fabrication", 3 ] ], "inline": { "tools": [ [ [ "oxy_torch", 20 ], [ "toolset", 150 ], [ "welder", 100 ], [ "welder_crude", 150 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "pipe", 16 ] ], [ [ "sheet_metal", 4 ] ], [ [ "sheet_metal_small", 8 ] ] ] } } diff --git a/data/json/recipes/basecamps/base/recipe_modular_shelter_1/recipe_modular_shelter_1_common.json b/data/json/recipes/basecamps/base/recipe_modular_shelter_1/recipe_modular_shelter_1_common.json index 1ab6f034ab99f..7f24904cc445d 100644 --- a/data/json/recipes/basecamps/base/recipe_modular_shelter_1/recipe_modular_shelter_1_common.json +++ b/data/json/recipes/basecamps/base/recipe_modular_shelter_1/recipe_modular_shelter_1_common.json @@ -964,7 +964,7 @@ "skills": [ [ "fabrication", 3 ] ], "inline": { "tools": [ [ [ "oxy_torch", 30 ], [ "toolset", 225 ], [ "welder", 150 ], [ "welder_crude", 225 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "pipe", 24 ] ], [ [ "sheet_metal", 6 ] ], [ [ "sheet_metal_small", 12 ] ] ] } } diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_common.json b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_common.json new file mode 100644 index 0000000000000..301e16b4069b4 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_common.json @@ -0,0 +1,138 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_livestock_2_0", + "description": "Survey land for a livestock area.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "skill_used": "fabrication", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "faction_base_livestock_2_0", + "blueprint_name": "livestock survey", + "time": "3 h", + "blueprint_requires": [ { "id": "not_an_upgrade" } ], + "blueprint_provides": [ { "id": "fbml_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_coop_yard", + "description": "We could use a fence to contain our chicken and other birds, so build a chickenwire fence to finish the chicken coop area.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_coop_yard", + "blueprint_name": "chicken coop yard", + "blueprint_requires": [ { "id": "fbml_2_coop" } ], + "blueprint_provides": [ { "id": "fbml_2_coop_yard" } ], + "blueprint_excludes": [ { "id": "fbml_2_coop_yard" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_remote_fence", + "description": "We could use a paddock for the stable, so build a split-rail fence on the remote side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_remote_fence", + "blueprint_name": "remote paddock fence", + "blueprint_requires": [ { "id": "fbml_2_stall_5" }, { "id": "fbml_2_coop" } ], + "blueprint_provides": [ { "id": "fbml_2_remote_fence" } ], + "blueprint_excludes": [ { "id": "fbml_2_remote_fence" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_side_fence", + "description": "We could use a paddock for the stable, so build a split-rail fence on side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_side_fence", + "blueprint_name": "side paddock fence", + "blueprint_requires": [ { "id": "fbml_2_coop_yard" }, { "id": "fbml_2_shack" } ], + "blueprint_provides": [ { "id": "fbml_2_side_fence" } ], + "blueprint_excludes": [ { "id": "fbml_2_side_fence" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_near_fence", + "description": "We could use a paddock for the stable, so build a split-rail fence on near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_near_fence", + "blueprint_name": "near paddock fence", + "blueprint_requires": [ { "id": "fbml_2_stall_1" }, { "id": "fbml_2_shack" } ], + "blueprint_provides": [ { "id": "fbml_2_near_fence" } ], + "blueprint_excludes": [ { "id": "fbml_2_near_fence" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_concrete.json b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_concrete.json new file mode 100644 index 0000000000000..a67e67fb9ab20 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_concrete.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_coop_concrete", + "description": "We could use a coop to contain our chicken and other birds, so build a concrete shack with a roof on the remote side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_coop_concrete", + "blueprint_name": "concrete chicken coop", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_coop" } ], + "blueprint_excludes": [ { "id": "fbml_2_coop" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_shack_concrete", + "description": "We could use a storage room for feed, animal gear and tools, so build a concrete shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_shack_concrete", + "blueprint_name": "concrete storage shack", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_shack" } ], + "blueprint_excludes": [ { "id": "fbml_2_shack" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_1_concrete", + "description": "We could use a stable for larger livestock, so build a concrete shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_1_concrete", + "blueprint_name": "concrete stable", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_1" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_2_concrete", + "description": "We could use a larger stable, so extend the stable with another concrete walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_2_concrete", + "blueprint_name": "concrete stable", + "blueprint_requires": [ { "id": "fbml_2_stall_1" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_2" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_3_concrete", + "description": "We could use a larger stable, so extend the stable with another concrete walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_3_concrete", + "blueprint_name": "concrete stable", + "blueprint_requires": [ { "id": "fbml_2_stall_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_3" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_4_concrete", + "description": "We could use a larger stable, so extend the stable with another concrete walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_4_concrete", + "blueprint_name": "concrete stable", + "blueprint_requires": [ { "id": "fbml_2_stall_3" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_4" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_5_concrete", + "description": "We could use a larger stable, so finish the stable with two smaller concrete walled stalls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_5_concrete", + "blueprint_name": "concrete stable", + "blueprint_requires": [ { "id": "fbml_2_stall_4" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_5" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_log.json b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_log.json new file mode 100644 index 0000000000000..9cf0bdfc6f7b7 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_log.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_coop_log", + "description": "We could use a coop to contain our chicken and other birds, so build a log shack with a roof on the remote side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_coop_log", + "blueprint_name": "log chicken coop", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_coop" } ], + "blueprint_excludes": [ { "id": "fbml_2_coop" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_shack_log", + "description": "We could use a storage room for feed, animal gear and tools, so build a log shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_shack_log", + "blueprint_name": "log storage shack", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_shack" } ], + "blueprint_excludes": [ { "id": "fbml_2_shack" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_1_log", + "description": "We could use a stable for larger livestock, so build a log shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_1_log", + "blueprint_name": "log stable", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_1" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_2_log", + "description": "We could use a larger stable, so extend the stable with another log walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_2_log", + "blueprint_name": "log stable", + "blueprint_requires": [ { "id": "fbml_2_stall_1" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_2" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_3_log", + "description": "We could use a larger stable, so extend the stable with another log walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_3_log", + "blueprint_name": "log stable", + "blueprint_requires": [ { "id": "fbml_2_stall_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_3" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_4_log", + "description": "We could use a larger stable, so extend the stable with another log walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_4_log", + "blueprint_name": "log stable", + "blueprint_requires": [ { "id": "fbml_2_stall_3" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_4" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_5_log", + "description": "We could use a larger stable, so finish the stable with two smaller log walled stalls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_5_log", + "blueprint_name": "log stable", + "blueprint_requires": [ { "id": "fbml_2_stall_4" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_5" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_metal.json b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_metal.json new file mode 100644 index 0000000000000..accd78a586be3 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_metal.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_coop_metal", + "description": "We could use a coop to contain our chicken and other birds, so build a metal shack with a roof on the remote side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_coop_metal", + "blueprint_name": "metal chicken coop", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_coop" } ], + "blueprint_excludes": [ { "id": "fbml_2_coop" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_shack_metal", + "description": "We could use a storage room for feed, animal gear and tools, so build a metal shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_shack_metal", + "blueprint_name": "metal storage shack", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_shack" } ], + "blueprint_excludes": [ { "id": "fbml_2_shack" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_1_metal", + "description": "We could use a stable for larger livestock, so build a metal shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_1_metal", + "blueprint_name": "metal stable", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_1" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_2_metal", + "description": "We could use a larger stable, so extend the stable with another metal walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_2_metal", + "blueprint_name": "metal stable", + "blueprint_requires": [ { "id": "fbml_2_stall_1" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_2" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_3_metal", + "description": "We could use a larger stable, so extend the stable with another metal walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_3_metal", + "blueprint_name": "metal stable", + "blueprint_requires": [ { "id": "fbml_2_stall_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_3" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_4_metal", + "description": "We could use a larger stable, so extend the stable with another metal walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_4_metal", + "blueprint_name": "metal stable", + "blueprint_requires": [ { "id": "fbml_2_stall_3" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_4" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_5_metal", + "description": "We could use a larger stable, so finish the stable with two smaller metal walled stalls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_5_metal", + "blueprint_name": "metal stable", + "blueprint_requires": [ { "id": "fbml_2_stall_4" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_5" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_migo_resin.json b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_migo_resin.json new file mode 100644 index 0000000000000..9133de035a8cb --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_migo_resin.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_coop_migo_resin", + "description": "We could use a coop to contain our chicken and other birds, so build a mi-go resin shack with a roof on the remote side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_coop_migo_resin", + "blueprint_name": "mi-go resin chicken coop", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_coop" } ], + "blueprint_excludes": [ { "id": "fbml_2_coop" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_shack_migo_resin", + "description": "We could use a storage room for feed, animal gear and tools, so build a mi-go resin shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_shack_migo_resin", + "blueprint_name": "mi-go resin storage shack", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_shack" } ], + "blueprint_excludes": [ { "id": "fbml_2_shack" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_1_migo_resin", + "description": "We could use a stable for larger livestock, so build a mi-go resin shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_1_migo_resin", + "blueprint_name": "mi-go resin stable", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_1" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_2_migo_resin", + "description": "We could use a larger stable, so extend the stable with another mi-go resin walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_2_migo_resin", + "blueprint_name": "mi-go resin stable", + "blueprint_requires": [ { "id": "fbml_2_stall_1" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_2" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_3_migo_resin", + "description": "We could use a larger stable, so extend the stable with another mi-go resin walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_3_migo_resin", + "blueprint_name": "mi-go resin stable", + "blueprint_requires": [ { "id": "fbml_2_stall_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_3" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_4_migo_resin", + "description": "We could use a larger stable, so extend the stable with another mi-go resin walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_4_migo_resin", + "blueprint_name": "mi-go resin stable", + "blueprint_requires": [ { "id": "fbml_2_stall_3" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_4" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_5_migo_resin", + "description": "We could use a larger stable, so finish the stable with two smaller mi-go resin walled stalls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_5_migo_resin", + "blueprint_name": "mi-go resin stable", + "blueprint_requires": [ { "id": "fbml_2_stall_4" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_5" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_rammed_earth.json b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_rammed_earth.json new file mode 100644 index 0000000000000..b2e6ddbcaaacc --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_rammed_earth.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_coop_rammed_earth", + "description": "We could use a coop to contain our chicken and other birds, so build a rammed earth shack with a roof on the remote side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_coop_rammed_earth", + "blueprint_name": "rammed earth chicken coop", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_coop" } ], + "blueprint_excludes": [ { "id": "fbml_2_coop" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_shack_rammed_earth", + "description": "We could use a storage room for feed, animal gear and tools, so build a rammed earth shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_shack_rammed_earth", + "blueprint_name": "rammed earth storage shack", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_shack" } ], + "blueprint_excludes": [ { "id": "fbml_2_shack" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_1_rammed_earth", + "description": "We could use a stable for larger livestock, so build a rammed earth shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_1_rammed_earth", + "blueprint_name": "rammed earth stable", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_1" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_2_rammed_earth", + "description": "We could use a larger stable, so extend the stable with another rammed earth walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_2_rammed_earth", + "blueprint_name": "rammed earth stable", + "blueprint_requires": [ { "id": "fbml_2_stall_1" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_2" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_3_rammed_earth", + "description": "We could use a larger stable, so extend the stable with another rammed earth walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_3_rammed_earth", + "blueprint_name": "rammed earth stable", + "blueprint_requires": [ { "id": "fbml_2_stall_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_3" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_4_rammed_earth", + "description": "We could use a larger stable, so extend the stable with another rammed earth walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_4_rammed_earth", + "blueprint_name": "rammed earth stable", + "blueprint_requires": [ { "id": "fbml_2_stall_3" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_4" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_5_rammed_earth", + "description": "We could use a larger stable, so finish the stable with two smaller rammed earth walled stalls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_5_rammed_earth", + "blueprint_name": "rammed earth stable", + "blueprint_requires": [ { "id": "fbml_2_stall_4" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_5" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_rock.json b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_rock.json new file mode 100644 index 0000000000000..0cd6bf7d85911 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_rock.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_coop_rock", + "description": "We could use a coop to contain our chicken and other birds, so build a rock shack with a roof on the remote side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_coop_rock", + "blueprint_name": "rock chicken coop", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_coop" } ], + "blueprint_excludes": [ { "id": "fbml_2_coop" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_shack_rock", + "description": "We could use a storage room for feed, animal gear and tools, so build a rock shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_shack_rock", + "blueprint_name": "rock storage shack", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_shack" } ], + "blueprint_excludes": [ { "id": "fbml_2_shack" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_1_rock", + "description": "We could use a stable for larger livestock, so build a rock shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_1_rock", + "blueprint_name": "rock stable", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_1" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_2_rock", + "description": "We could use a larger stable, so extend the stable with another rock walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_2_rock", + "blueprint_name": "rock stable", + "blueprint_requires": [ { "id": "fbml_2_stall_1" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_2" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_3_rock", + "description": "We could use a larger stable, so extend the stable with another rock walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_3_rock", + "blueprint_name": "rock stable", + "blueprint_requires": [ { "id": "fbml_2_stall_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_3" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_4_rock", + "description": "We could use a larger stable, so extend the stable with another rock walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_4_rock", + "blueprint_name": "rock stable", + "blueprint_requires": [ { "id": "fbml_2_stall_3" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_4" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_5_rock", + "description": "We could use a larger stable, so finish the stable with two smaller rock walled stalls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_5_rock", + "blueprint_name": "rock stable", + "blueprint_requires": [ { "id": "fbml_2_stall_4" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_5" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_wad.json b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_wad.json new file mode 100644 index 0000000000000..2c2907332009f --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_wad.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_coop_wad", + "description": "We could use a coop to contain our chicken and other birds, so build a wattle-and-daub shack with a roof on the remote side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_coop_wad", + "blueprint_name": "wattle-and-daub chicken coop", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_coop" } ], + "blueprint_excludes": [ { "id": "fbml_2_coop" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_shack_wad", + "description": "We could use a storage room for feed, animal gear and tools, so build a wattle-and-daub shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_shack_wad", + "blueprint_name": "wattle-and-daub storage shack", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_shack" } ], + "blueprint_excludes": [ { "id": "fbml_2_shack" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_1_wad", + "description": "We could use a stable for larger livestock, so build a wattle-and-daub shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_1_wad", + "blueprint_name": "wattle-and-daub stable", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_1" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_2_wad", + "description": "We could use a larger stable, so extend the stable with another wattle-and-daub walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_2_wad", + "blueprint_name": "wattle-and-daub stable", + "blueprint_requires": [ { "id": "fbml_2_stall_1" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_2" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_3_wad", + "description": "We could use a larger stable, so extend the stable with another wattle-and-daub walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_3_wad", + "blueprint_name": "wattle-and-daub stable", + "blueprint_requires": [ { "id": "fbml_2_stall_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_3" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_4_wad", + "description": "We could use a larger stable, so extend the stable with another wattle-and-daub walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_4_wad", + "blueprint_name": "wattle-and-daub stable", + "blueprint_requires": [ { "id": "fbml_2_stall_3" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_4" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_5_wad", + "description": "We could use a larger stable, so finish the stable with two smaller wattle-and-daub walled stalls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_5_wad", + "blueprint_name": "wattle-and-daub stable", + "blueprint_requires": [ { "id": "fbml_2_stall_4" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_5" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_wood.json b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_wood.json new file mode 100644 index 0000000000000..f530e76726eb2 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_livestock/version_2/recipe_modular_livestock_wood.json @@ -0,0 +1,191 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_coop_wood", + "description": "We could use a coop to contain our chicken and other birds, so build a wood panel shack with a roof on the remote side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_coop_wood", + "blueprint_name": "wood panel chicken coop", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_coop" } ], + "blueprint_excludes": [ { "id": "fbml_2_coop" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_shack_wood", + "description": "We could use a storage room for feed, animal gear and tools, so build a wood panel shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_shack_wood", + "blueprint_name": "wood panel storage shack", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_shack" } ], + "blueprint_excludes": [ { "id": "fbml_2_shack" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_1_wood", + "description": "We could use a stable for larger livestock, so build a wood panel shack with a roof on the near side of the livestock field.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_1_wood", + "blueprint_name": "wood panel stable", + "blueprint_requires": [ { "id": "fbml_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_1" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_2_wood", + "description": "We could use a larger stable, so extend the stable with another wood panel walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_2_wood", + "blueprint_name": "wood panel stable", + "blueprint_requires": [ { "id": "fbml_2_stall_1" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_2" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_3_wood", + "description": "We could use a larger stable, so extend the stable with another wood panel walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_3_wood", + "blueprint_name": "wood panel stable", + "blueprint_requires": [ { "id": "fbml_2_stall_2" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_3" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_4_wood", + "description": "We could use a larger stable, so extend the stable with another wood panel walled stall.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_4_wood", + "blueprint_name": "wood panel stable", + "blueprint_requires": [ { "id": "fbml_2_stall_3" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_4" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbml_2_stall_5_wood", + "description": "We could use a larger stable, so finish the stable with two smaller wood panel walled stalls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbml_2_stall_5_wood", + "blueprint_name": "wood panel stable", + "blueprint_requires": [ { "id": "fbml_2_stall_4" } ], + "blueprint_provides": [ { "id": "fbml_2_stall_5" } ], + "blueprint_excludes": [ { "id": "fbml_2_stall_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_saltworks/version_1/recipe_modular_saltworks_metal.json b/data/json/recipes/basecamps/expansion/recipe_modular_saltworks/version_1/recipe_modular_saltworks_metal.json index 5fc21d706961f..a230f3c77329b 100644 --- a/data/json/recipes/basecamps/expansion/recipe_modular_saltworks/version_1/recipe_modular_saltworks_metal.json +++ b/data/json/recipes/basecamps/expansion/recipe_modular_saltworks/version_1/recipe_modular_saltworks_metal.json @@ -18,7 +18,7 @@ "skills": [ [ "fabrication", 4 ] ], "inline": { "tools": [ [ [ "oxy_torch", 400 ], [ "welder", 2000 ], [ "welder_crude", 3000 ], [ "toolset", 3000 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ], "components": [ [ [ "2x4", 71 ] ], [ [ "nail", 158 ] ], @@ -50,7 +50,7 @@ "inline": { "tools": [ [ [ "oxy_torch", 220 ], [ "welder", 1100 ], [ "welder_crude", 1650 ], [ "toolset", 1650 ] ] ], "qualities": [ - [ { "id": "GLARE", "level": 2 } ], + [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ], [ { "id": "WRENCH" } ] @@ -88,7 +88,7 @@ "inline": { "tools": [ [ [ "oxy_torch", 420 ], [ "welder", 2100 ], [ "welder_crude", 3150 ], [ "toolset", 3150 ] ] ], "qualities": [ - [ { "id": "GLARE", "level": 2 } ], + [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ], diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_1/recipe_modular_storehouse_metal.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_1/recipe_modular_storehouse_metal.json index 2f84a04742e09..601cf723a983d 100644 --- a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_1/recipe_modular_storehouse_metal.json +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_1/recipe_modular_storehouse_metal.json @@ -18,7 +18,7 @@ "skills": [ [ "fabrication", 5 ] ], "inline": { "tools": [ [ [ "oxy_torch", 360 ], [ "welder", 1800 ], [ "welder_crude", 2700 ], [ "toolset", 2700 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "steel_plate", 72 ] ] ] } } @@ -42,7 +42,7 @@ "skills": [ [ "fabrication", 5 ] ], "inline": { "tools": [ [ [ "oxy_torch", 360 ], [ "welder", 1800 ], [ "welder_crude", 2700 ], [ "toolset", 2700 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "steel_plate", 72 ] ] ] } } @@ -66,7 +66,7 @@ "skills": [ [ "fabrication", 5 ] ], "inline": { "tools": [ [ [ "oxy_torch", 120 ], [ "welder", 600 ], [ "welder_crude", 900 ], [ "toolset", 900 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "nail", 30 ] ], [ [ "glass_sheet", 1 ] ], [ [ "steel_plate", 24 ] ] ] } } @@ -90,7 +90,7 @@ "skills": [ [ "fabrication", 5 ] ], "inline": { "tools": [ [ [ "oxy_torch", 120 ], [ "welder", 600 ], [ "welder_crude", 900 ], [ "toolset", 900 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "nail", 30 ] ], [ [ "glass_sheet", 1 ] ], [ [ "steel_plate", 24 ] ] ] } } @@ -114,7 +114,7 @@ "skills": [ [ "fabrication", 5 ] ], "inline": { "tools": [ [ [ "oxy_torch", 120 ], [ "welder", 600 ], [ "welder_crude", 900 ], [ "toolset", 900 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "nail", 30 ] ], [ [ "glass_sheet", 1 ] ], [ [ "steel_plate", 24 ] ] ] } } @@ -138,7 +138,7 @@ "skills": [ [ "fabrication", 5 ] ], "inline": { "tools": [ [ [ "oxy_torch", 120 ], [ "welder", 600 ], [ "welder_crude", 900 ], [ "toolset", 900 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ] ], "components": [ [ [ "2x4", 15 ], [ "log", 2 ] ], [ [ "nail", 30 ] ], [ [ "glass_sheet", 1 ] ], [ [ "steel_plate", 24 ] ] ] } } @@ -162,7 +162,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 320 ], [ "toolset", 2400 ], [ "welder", 1600 ], [ "welder_crude", 2400 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "2x4", 30 ], [ "log", 4 ] ], [ [ "glass_sheet", 2 ] ], @@ -194,7 +194,7 @@ "skills": [ [ "fabrication", 7 ] ], "inline": { "tools": [ [ [ "oxy_torch", 320 ], [ "toolset", 2400 ], [ "welder", 1600 ], [ "welder_crude", 2400 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_M" } ], [ { "id": "WRENCH" } ] ], "components": [ [ [ "2x4", 30 ], [ "log", 4 ] ], [ [ "glass_sheet", 2 ] ], @@ -226,7 +226,7 @@ "skills": [ [ "fabrication", 5 ] ], "inline": { "tools": [ [ [ "oxy_torch", 600 ], [ "welder", 3000 ], [ "welder_crude", 4500 ], [ "toolset", 4500 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ] ], "components": [ [ [ "steel_plate", 120 ] ] ] } } diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_bookcase.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_bookcase.json new file mode 100644 index 0000000000000..afb3344c638a9 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_bookcase.json @@ -0,0 +1,434 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_1", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_1", + "blueprint_name": "place 1 ½ aisles of bookcases in section A", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_2", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_2", + "blueprint_name": "place 1 ½ aisles of bookcases in section B", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_3", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_3", + "blueprint_name": "place 1 ½ aisles of bookcases in section C", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_4", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_4", + "blueprint_name": "place 1 ½ aisles of bookcases in section D", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_5", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_5", + "blueprint_name": "place 1 ½ aisles of bookcases in section E", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_6", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_6", + "blueprint_name": "place 1 ½ aisles of bookcases in section F", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_7", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_7", + "blueprint_name": "place 1 ½ aisles of bookcases in section G", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_8", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_8", + "blueprint_name": "place 1 ½ aisles of bookcases in section H", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_9", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_9", + "blueprint_name": "place 1 ½ aisles of bookcases in section I", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_10", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_10", + "blueprint_name": "place 1 ½ aisles of bookcases in section J", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_11", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_11", + "blueprint_name": "place 1 ½ aisles of bookcases in section K", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_12", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_12", + "blueprint_name": "place 1 ½ aisles of bookcases in section L", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_13", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_13", + "blueprint_name": "place 1 ½ aisles of bookcases in section M", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_13" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_13" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_14", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_14", + "blueprint_name": "place 1 ½ aisles of bookcases in section N", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_14" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_14" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_15", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_15", + "blueprint_name": "place 1 ½ aisles of bookcases in section O", + "blueprint_requires": [ { "id": "fbms_2_12" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_15" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_15" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_bookcase_16", + "description": "Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents visible from a distance, blocks LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_bookcase_16", + "blueprint_name": "place 1 ½ aisles of bookcases in section P", + "blueprint_requires": [ { "id": "fbms_2_12" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_16" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_16" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_common.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_common.json new file mode 100644 index 0000000000000..17e272709fd2f --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_common.json @@ -0,0 +1,30 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_storehouse_2_0", + "description": "Survey land for a storehouse area.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "skill_used": "fabrication", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "faction_base_storehouse_2_0", + "blueprint_name": "storehouse survey", + "time": "3 h", + "blueprint_requires": [ { "id": "not_an_upgrade" } ], + "blueprint_provides": [ { "id": "fbms_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_concrete.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_concrete.json new file mode 100644 index 0000000000000..28268f42cc5d4 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_concrete.json @@ -0,0 +1,326 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_1_concrete", + "description": "We could use a large storage building. Let's start with a concrete section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_1_concrete", + "blueprint_name": "concrete storage section", + "blueprint_requires": [ { "id": "fbms_2" } ], + "blueprint_provides": [ { "id": "fbms_2_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_2_concrete", + "description": "Let's extend our storage building with another concrete section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_2_concrete", + "blueprint_name": "concrete storage section", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_3_concrete", + "description": "Let's extend our storage building with another concrete section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_3_concrete", + "blueprint_name": "concrete storage section", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_4_concrete", + "description": "Let's extend our storage building with another concrete section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_4_concrete", + "blueprint_name": "concrete storage section", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_5_concrete", + "description": "Let's extend our storage building with another concrete section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_5_concrete", + "blueprint_name": "concrete storage section", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_6_concrete", + "description": "Let's finish our storage building with a concrete section. If we really want to, we can then go on to double the volume, but won't that be extreme, when we can use the space to unload loot instead?", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_6_concrete", + "blueprint_name": "concrete storage section", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_7_concrete", + "description": "We want to store EVERYTHING! Let's double the size of the storage building, starting with a concrete section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_7_concrete", + "blueprint_name": "concrete storage section", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_8_concrete", + "description": "Let's extend our storage building with another concrete section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_8_concrete", + "blueprint_name": "concrete storage section", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_9_concrete", + "description": "Let's extend our storage building with another concrete section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_9_concrete", + "blueprint_name": "concrete storage section", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_10_concrete", + "description": "Let's extend our storage building with another concrete section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_10_concrete", + "blueprint_name": "concrete storage section", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_11_concrete", + "description": "Let's extend our storage building with another concrete section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_11_concrete", + "blueprint_name": "concrete storage section", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_12_concrete", + "description": "Let's extend our storage building with another concrete section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_12_concrete", + "blueprint_name": "concrete storage section", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_dresser.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_dresser.json new file mode 100644 index 0000000000000..79540b380af86 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_dresser.json @@ -0,0 +1,434 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_1", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_1", + "blueprint_name": "place 1 ½ aisles of dressers in section A", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_2", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_2", + "blueprint_name": "place 1 ½ aisles of dressers in section B", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_3", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_3", + "blueprint_name": "place 1 ½ aisles of dressers in section C", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_4", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_4", + "blueprint_name": "place 1 ½ aisles of dressers in section D", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_5", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_5", + "blueprint_name": "place 1 ½ aisles of dressers in section E", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_6", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_6", + "blueprint_name": "place 1 ½ aisles of dressers in section F", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_7", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_7", + "blueprint_name": "place 1 ½ aisles of dressers in section G", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_8", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_8", + "blueprint_name": "place 1 ½ aisles of dressers in section H", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_9", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_9", + "blueprint_name": "place 1 ½ aisles of dressers in section I", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_10", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_10", + "blueprint_name": "place 1 ½ aisles of dressers in section J", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_11", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_11", + "blueprint_name": "place 1 ½ aisles of dressers in section K", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_12", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_12", + "blueprint_name": "place 1 ½ aisles of dressers in section L", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_13", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_13", + "blueprint_name": "place 1 ½ aisles of dressers in section M", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_13" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_13" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_14", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_14", + "blueprint_name": "place 1 ½ aisles of dressers in section N", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_14" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_14" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_15", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_15", + "blueprint_name": "place 1 ½ aisles of dressers in section O", + "blueprint_requires": [ { "id": "fbms_2_12" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_15" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_15" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_dresser_16", + "description": "Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, doesn't block LoS)", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_dresser_16", + "blueprint_name": "place 1 ½ aisles of dressers in section P", + "blueprint_requires": [ { "id": "fbms_2_12" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_16" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_16" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_locker.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_locker.json new file mode 100644 index 0000000000000..a5a5e65ab6159 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_locker.json @@ -0,0 +1,434 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_1", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_1", + "blueprint_name": "place 1 ½ aisles of lockers in section A", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_2", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_2", + "blueprint_name": "place 1 ½ aisles of lockers in section B", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_3", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_3", + "blueprint_name": "place 1 ½ aisles of lockers in section C", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_4", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_4", + "blueprint_name": "place 1 ½ aisles of lockers in section D", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_5", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_5", + "blueprint_name": "place 1 ½ aisles of lockers in section E", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_6", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_6", + "blueprint_name": "place 1 ½ aisles of lockers in section F", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_7", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_7", + "blueprint_name": "place 1 ½ aisles of lockers in section G", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_8", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_8", + "blueprint_name": "place 1 ½ aisles of lockers in section H", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_9", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_9", + "blueprint_name": "place 1 ½ aisles of lockers in section I", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_10", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_10", + "blueprint_name": "place 1 ½ aisles of lockers in section J", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_11", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_11", + "blueprint_name": "place 1 ½ aisles of lockers in section K", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_12", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_12", + "blueprint_name": "place 1 ½ aisles of lockers in section L", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_13", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_13", + "blueprint_name": "place 1 ½ aisles of lockers in section M", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_13" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_13" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_14", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_14", + "blueprint_name": "place 1 ½ aisles of lockers in section N", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_14" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_14" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_15", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_15", + "blueprint_name": "place 1 ½ aisles of lockers in section O", + "blueprint_requires": [ { "id": "fbms_2_12" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_15" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_15" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_locker_16", + "description": "Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not visible from a distance, blocks LoS). Consider if bookcases or dressers might be better.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_locker_16", + "blueprint_name": "place 1 ½ aisles of lockers in section P", + "blueprint_requires": [ { "id": "fbms_2_12" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_16" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_16" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_log.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_log.json new file mode 100644 index 0000000000000..efba3ed33ad84 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_log.json @@ -0,0 +1,326 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_1_log", + "description": "We could use a large storage building. Let's start with a log section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_1_log", + "blueprint_name": "log storage section", + "blueprint_requires": [ { "id": "fbms_2" } ], + "blueprint_provides": [ { "id": "fbms_2_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_2_log", + "description": "Let's extend our storage building with another log section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_2_log", + "blueprint_name": "log storage section", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_3_log", + "description": "Let's extend our storage building with another log section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_3_log", + "blueprint_name": "log storage section", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_4_log", + "description": "Let's extend our storage building with another log section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_4_log", + "blueprint_name": "log storage section", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_5_log", + "description": "Let's extend our storage building with another log section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_5_log", + "blueprint_name": "log storage section", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_6_log", + "description": "Let's finish our storage building with a log section. If we really want to, we can then go on to double the volume, but won't that be extreme, when we can use the space to unload loot instead?", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_6_log", + "blueprint_name": "log storage section", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_7_log", + "description": "We want to store EVERYTHING! Let's double the size of the storage building, starting with a log section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_7_log", + "blueprint_name": "log storage section", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_8_log", + "description": "Let's extend our storage building with another log section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_8_log", + "blueprint_name": "log storage section", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_9_log", + "description": "Let's extend our storage building with another log section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_9_log", + "blueprint_name": "log storage section", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_10_log", + "description": "Let's extend our storage building with another log section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_10_log", + "blueprint_name": "log storage section", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_11_log", + "description": "Let's extend our storage building with another log section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_11_log", + "blueprint_name": "log storage section", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_12_log", + "description": "Let's extend our storage building with another log section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_12_log", + "blueprint_name": "log storage section", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_metal.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_metal.json new file mode 100644 index 0000000000000..c0806cba8dc19 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_metal.json @@ -0,0 +1,326 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_1_metal", + "description": "We could use a large storage building. Let's start with a metal section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_1_metal", + "blueprint_name": "metal storage section", + "blueprint_requires": [ { "id": "fbms_2" } ], + "blueprint_provides": [ { "id": "fbms_2_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_2_metal", + "description": "Let's extend our storage building with another metal section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_2_metal", + "blueprint_name": "metal storage section", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_3_metal", + "description": "Let's extend our storage building with another metal section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_3_metal", + "blueprint_name": "metal storage section", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_4_metal", + "description": "Let's extend our storage building with another metal section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_4_metal", + "blueprint_name": "metal storage section", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_5_metal", + "description": "Let's extend our storage building with another metal section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_5_metal", + "blueprint_name": "metal storage section", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_6_metal", + "description": "Let's finish our storage building with a metal section. If we really want to, we can then go on to double the volume, but won't that be extreme, when we can use the space to unload loot instead?", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_6_metal", + "blueprint_name": "metal storage section", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_7_metal", + "description": "We want to store EVERYTHING! Let's double the size of the storage building, starting with a metal section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_7_metal", + "blueprint_name": "metal storage section", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_8_metal", + "description": "Let's extend our storage building with another metal section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_8_metal", + "blueprint_name": "metal storage section", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_9_metal", + "description": "Let's extend our storage building with another metal section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_9_metal", + "blueprint_name": "metal storage section", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_10_metal", + "description": "Let's extend our storage building with another metal section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_10_metal", + "blueprint_name": "metal storage section", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_11_metal", + "description": "Let's extend our storage building with another metal section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_11_metal", + "blueprint_name": "metal storage section", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_12_metal", + "description": "Let's extend our storage building with another metal section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_12_metal", + "blueprint_name": "metal storage section", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_migo_resin.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_migo_resin.json new file mode 100644 index 0000000000000..d1035fdc6061f --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_migo_resin.json @@ -0,0 +1,326 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_1_migo_resin", + "description": "We could use a large storage building. Let's start with a mi-go resin section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_1_migo_resin", + "blueprint_name": "mi-go resin storage section", + "blueprint_requires": [ { "id": "fbms_2" } ], + "blueprint_provides": [ { "id": "fbms_2_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_2_migo_resin", + "description": "Let's extend our storage building with another mi-go resin section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_2_migo_resin", + "blueprint_name": "mi-go resin storage section", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_3_migo_resin", + "description": "Let's extend our storage building with another mi-go resin section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_3_migo_resin", + "blueprint_name": "mi-go resin storage section", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_4_migo_resin", + "description": "Let's extend our storage building with another mi-go resin section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_4_migo_resin", + "blueprint_name": "mi-go resin storage section", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_5_migo_resin", + "description": "Let's extend our storage building with another mi-go resin section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_5_migo_resin", + "blueprint_name": "mi-go resin storage section", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_6_migo_resin", + "description": "Let's finish our storage building with a mi-go resin section. If we really want to, we can then go on to double the volume, but won't that be extreme, when we can use the space to unload loot instead?", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_6_migo_resin", + "blueprint_name": "mi-go resin storage section", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_7_migo_resin", + "description": "We want to store EVERYTHING! Let's double the size of the storage building, starting with a mi-go resin section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_7_migo_resin", + "blueprint_name": "mi-go resin storage section", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_8_migo_resin", + "description": "Let's extend our storage building with another mi-go resin section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_8_migo_resin", + "blueprint_name": "mi-go resin storage section", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_9_migo_resin", + "description": "Let's extend our storage building with another mi-go resin section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_9_migo_resin", + "blueprint_name": "mi-go resin storage section", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_10_migo_resin", + "description": "Let's extend our storage building with another mi-go resin section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_10_migo_resin", + "blueprint_name": "mi-go resin storage section", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_11_migo_resin", + "description": "Let's extend our storage building with another mi-go resin section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_11_migo_resin", + "blueprint_name": "mi-go resin storage section", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_12_migo_resin", + "description": "Let's extend our storage building with another mi-go resin section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_12_migo_resin", + "blueprint_name": "mi-go resin storage section", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_rack.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_rack.json new file mode 100644 index 0000000000000..0ccb56d3aebee --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_rack.json @@ -0,0 +1,434 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_1", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_1", + "blueprint_name": "place 1 ½ aisles of display racks in section A", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_2", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_2", + "blueprint_name": "place 1 ½ aisles of display racks in section B", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_3", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_3", + "blueprint_name": "place 1 ½ aisles of display racks in section C", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_4", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_4", + "blueprint_name": "place 1 ½ aisles of display racks in section D", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_5", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_5", + "blueprint_name": "place 1 ½ aisles of display racks in section E", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_6", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_6", + "blueprint_name": "place 1 ½ aisles of display racks in section F", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_7", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_7", + "blueprint_name": "place 1 ½ aisles of display racks in section G", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_8", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_8", + "blueprint_name": "place 1 ½ aisles of display racks in section H", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_9", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_9", + "blueprint_name": "place 1 ½ aisles of display racks in section I", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_10", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_10", + "blueprint_name": "place 1 ½ aisles of display racks in section J", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_11", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_11", + "blueprint_name": "place 1 ½ aisles of display racks in section K", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_12", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_12", + "blueprint_name": "place 1 ½ aisles of display racks in section L", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_13", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_13", + "blueprint_name": "place 1 ½ aisles of display racks in section M", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_13" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_13" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_14", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_14", + "blueprint_name": "place 1 ½ aisles of display racks in section N", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_14" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_14" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_15", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_15", + "blueprint_name": "place 1 ½ aisles of display racks in section O", + "blueprint_requires": [ { "id": "fbms_2_12" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_15" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_15" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_rack_16", + "description": "Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_rack_16", + "blueprint_name": "place 1 ½ aisles of display racks in section P", + "blueprint_requires": [ { "id": "fbms_2_12" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_16" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_16" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_rammed_earth.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_rammed_earth.json new file mode 100644 index 0000000000000..623a0d478ae12 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_rammed_earth.json @@ -0,0 +1,326 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_1_rammed_earth", + "description": "We could use a large storage building. Let's start with a rammed earth section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_1_rammed_earth", + "blueprint_name": "rammed earth storage section", + "blueprint_requires": [ { "id": "fbms_2" } ], + "blueprint_provides": [ { "id": "fbms_2_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_2_rammed_earth", + "description": "Let's extend our storage building with another rammed earth section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_2_rammed_earth", + "blueprint_name": "rammed earth storage section", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_3_rammed_earth", + "description": "Let's extend our storage building with another rammed earth section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_3_rammed_earth", + "blueprint_name": "rammed earth storage section", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_4_rammed_earth", + "description": "Let's extend our storage building with another rammed earth section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_4_rammed_earth", + "blueprint_name": "rammed earth storage section", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_5_rammed_earth", + "description": "Let's extend our storage building with another rammed earth section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_5_rammed_earth", + "blueprint_name": "rammed earth storage section", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_6_rammed_earth", + "description": "Let's finish our storage building with a rammed earth section. If we really want to, we can then go on to double the volume, but won't that be extreme, when we can use the space to unload loot instead?", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_6_rammed_earth", + "blueprint_name": "rammed earth storage section", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_7_rammed_earth", + "description": "We want to store EVERYTHING! Let's double the size of the storage building, starting with a rammed earth section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_7_rammed_earth", + "blueprint_name": "rammed earth storage section", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_8_rammed_earth", + "description": "Let's extend our storage building with another rammed earth section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_8_rammed_earth", + "blueprint_name": "rammed earth storage section", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_9_rammed_earth", + "description": "Let's extend our storage building with another rammed earth section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_9_rammed_earth", + "blueprint_name": "rammed earth storage section", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_10_rammed_earth", + "description": "Let's extend our storage building with another rammed earth section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_10_rammed_earth", + "blueprint_name": "rammed earth storage section", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_11_rammed_earth", + "description": "Let's extend our storage building with another rammed earth section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_11_rammed_earth", + "blueprint_name": "rammed earth storage section", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_12_rammed_earth", + "description": "Let's extend our storage building with another rammed earth section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_12_rammed_earth", + "blueprint_name": "rammed earth storage section", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_rock.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_rock.json new file mode 100644 index 0000000000000..9c72740134d9c --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_rock.json @@ -0,0 +1,326 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_1_rock", + "description": "We could use a large storage building. Let's start with a rock section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_1_rock", + "blueprint_name": "rock storage section", + "blueprint_requires": [ { "id": "fbms_2" } ], + "blueprint_provides": [ { "id": "fbms_2_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_2_rock", + "description": "Let's extend our storage building with another rock section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_2_rock", + "blueprint_name": "rock storage section", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_3_rock", + "description": "Let's extend our storage building with another rock section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_3_rock", + "blueprint_name": "rock storage section", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_4_rock", + "description": "Let's extend our storage building with another rock section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_4_rock", + "blueprint_name": "rock storage section", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_5_rock", + "description": "Let's extend our storage building with another rock section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_5_rock", + "blueprint_name": "rock storage section", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_6_rock", + "description": "Let's finish our storage building with a rock section. If we really want to, we can then go on to double the volume, but won't that be extreme, when we can use the space to unload loot instead?", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_6_rock", + "blueprint_name": "rock storage section", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_7_rock", + "description": "We want to store EVERYTHING! Let's double the size of the storage building, starting with a rock section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_7_rock", + "blueprint_name": "rock storage section", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_8_rock", + "description": "Let's extend our storage building with another rock section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_8_rock", + "blueprint_name": "rock storage section", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_9_rock", + "description": "Let's extend our storage building with another rock section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_9_rock", + "blueprint_name": "rock storage section", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_10_rock", + "description": "Let's extend our storage building with another rock section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_10_rock", + "blueprint_name": "rock storage section", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_11_rock", + "description": "Let's extend our storage building with another rock section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_11_rock", + "blueprint_name": "rock storage section", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_12_rock", + "description": "Let's extend our storage building with another rock section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_12_rock", + "blueprint_name": "rock storage section", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_wad.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_wad.json new file mode 100644 index 0000000000000..2a58a75eb013f --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_wad.json @@ -0,0 +1,326 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_1_wad", + "description": "We could use a large storage building. Let's start with a wattle-and-daub section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_1_wad", + "blueprint_name": "wattle-and-daub storage section", + "blueprint_requires": [ { "id": "fbms_2" } ], + "blueprint_provides": [ { "id": "fbms_2_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_2_wad", + "description": "Let's extend our storage building with another wattle-and-daub section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_2_wad", + "blueprint_name": "wattle-and-daub storage section", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_3_wad", + "description": "Let's extend our storage building with another wattle-and-daub section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_3_wad", + "blueprint_name": "wattle-and-daub storage section", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_4_wad", + "description": "Let's extend our storage building with another wattle-and-daub section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_4_wad", + "blueprint_name": "wattle-and-daub storage section", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_5_wad", + "description": "Let's extend our storage building with another wattle-and-daub section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_5_wad", + "blueprint_name": "wattle-and-daub storage section", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_6_wad", + "description": "Let's finish our storage building with a wattle-and-daub section. If we really want to, we can then go on to double the volume, but won't that be extreme, when we can use the space to unload loot instead?", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_6_wad", + "blueprint_name": "wattle-and-daub storage section", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_7_wad", + "description": "We want to store EVERYTHING! Let's double the size of the storage building, starting with a wattle-and-daub section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_7_wad", + "blueprint_name": "wattle-and-daub storage section", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_8_wad", + "description": "Let's extend our storage building with another wattle-and-daub section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_8_wad", + "blueprint_name": "wattle-and-daub storage section", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_9_wad", + "description": "Let's extend our storage building with another wattle-and-daub section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_9_wad", + "blueprint_name": "wattle-and-daub storage section", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_10_wad", + "description": "Let's extend our storage building with another wattle-and-daub section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_10_wad", + "blueprint_name": "wattle-and-daub storage section", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_11_wad", + "description": "Let's extend our storage building with another wattle-and-daub section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_11_wad", + "blueprint_name": "wattle-and-daub storage section", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_12_wad", + "description": "Let's extend our storage building with another wattle-and-daub section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_12_wad", + "blueprint_name": "wattle-and-daub storage section", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_warehouse_shelf.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_warehouse_shelf.json new file mode 100644 index 0000000000000..0ad2b6e7c0f62 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_warehouse_shelf.json @@ -0,0 +1,434 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_1", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_1", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section A", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_2", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_2", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section B", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_3", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_3", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section C", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_4", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_4", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section D", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_5", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_5", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section E", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_6", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_6", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section F", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_7", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_7", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section G", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_8", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_8", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section H", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_9", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_9", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section I", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_10", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_10", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section J", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_11", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_11", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section K", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_12", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_12", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section L", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_13", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_13", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section M", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_13" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_13" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_14", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_14", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section N", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_14" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_14" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_15", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_15", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section O", + "blueprint_requires": [ { "id": "fbms_2_12" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_15" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_15" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_warehouse_shelf_16", + "description": "Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, contents visible from a distance, blocks LoS). The king of storage space, with a royal resource price tag", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_warehouse_shelf_16", + "blueprint_name": "place 1 ½ aisles of warehouse shelves in section P", + "blueprint_requires": [ { "id": "fbms_2_12" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_16" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_16" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_wood.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_wood.json new file mode 100644 index 0000000000000..7d563d64aa814 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_wood.json @@ -0,0 +1,326 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_1_wood", + "description": "We could use a large storage building. Let's start with a wooden panel section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_1_wood", + "blueprint_name": "wooden panel storage section", + "blueprint_requires": [ { "id": "fbms_2" } ], + "blueprint_provides": [ { "id": "fbms_2_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_2_wood", + "description": "Let's extend our storage building with another wooden panel section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_2_wood", + "blueprint_name": "wooden panel storage section", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_3_wood", + "description": "Let's extend our storage building with another wooden panel section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_3_wood", + "blueprint_name": "wooden panel storage section", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_4_wood", + "description": "Let's extend our storage building with another wooden panel section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_4_wood", + "blueprint_name": "wooden panel storage section", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_5_wood", + "description": "Let's extend our storage building with another wooden panel section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_5_wood", + "blueprint_name": "wooden panel storage section", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_6_wood", + "description": "Let's finish our storage building with a wooden panel section. If we really want to, we can then go on to double the volume, but won't that be extreme, when we can use the space to unload loot instead?", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_6_wood", + "blueprint_name": "wooden panel storage section", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_7_wood", + "description": "We want to store EVERYTHING! Let's double the size of the storage building, starting with a wooden panel section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_7_wood", + "blueprint_name": "wooden panel storage section", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_8_wood", + "description": "Let's extend our storage building with another wooden panel section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_8_wood", + "blueprint_name": "wooden panel storage section", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_9_wood", + "description": "Let's extend our storage building with another wooden panel section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_9_wood", + "blueprint_name": "wooden panel storage section", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_10_wood", + "description": "Let's extend our storage building with another wooden panel section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_10_wood", + "blueprint_name": "wooden panel storage section", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_11_wood", + "description": "Let's extend our storage building with another wooden panel section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_11_wood", + "blueprint_name": "wooden panel storage section", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbms_2_12_wood", + "description": "Let's extend our storage building with another wooden panel section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_12_wood", + "blueprint_name": "wooden panel storage section", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_wooden_rack.json b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_wooden_rack.json new file mode 100644 index 0000000000000..f79878cfcc280 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_storehouse/version_2/recipe_modular_storehouse_wooden_rack.json @@ -0,0 +1,434 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_1", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_1", + "blueprint_name": "place 1 ½ aisles of wooden racks in section A", + "blueprint_requires": [ { "id": "fbms_2_1" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_1" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_2", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_2", + "blueprint_name": "place 1 ½ aisles of wooden racks in section B", + "blueprint_requires": [ { "id": "fbms_2_2" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_2" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_3", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_3", + "blueprint_name": "place 1 ½ aisles of wooden racks in section C", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_3" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_4", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_4", + "blueprint_name": "place 1 ½ aisles of wooden racks in section D", + "blueprint_requires": [ { "id": "fbms_2_3" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_4" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_4" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_5", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_5", + "blueprint_name": "place 1 ½ aisles of wooden racks in section E", + "blueprint_requires": [ { "id": "fbms_2_4" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_5" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_5" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_6", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_6", + "blueprint_name": "place 1 ½ aisles of wooden racks in section F", + "blueprint_requires": [ { "id": "fbms_2_5" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_6" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_6" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_7", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_7", + "blueprint_name": "place 1 ½ aisles of wooden racks in section G", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_7" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_7" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_8", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_8", + "blueprint_name": "place 1 ½ aisles of wooden racks in section H", + "blueprint_requires": [ { "id": "fbms_2_6" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_8" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_8" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_9", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_9", + "blueprint_name": "place 1 ½ aisles of wooden racks in section I", + "blueprint_requires": [ { "id": "fbms_2_7" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_9" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_9" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_10", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_10", + "blueprint_name": "place 1 ½ aisles of wooden racks in section J", + "blueprint_requires": [ { "id": "fbms_2_8" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_10" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_10" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_11", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_11", + "blueprint_name": "place 1 ½ aisles of wooden racks in section K", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_11" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_11" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_12", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_12", + "blueprint_name": "place 1 ½ aisles of wooden racks in section L", + "blueprint_requires": [ { "id": "fbms_2_9" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_12" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_12" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_13", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_13", + "blueprint_name": "place 1 ½ aisles of wooden racks in section M", + "blueprint_requires": [ { "id": "fbms_2_10" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_13" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_13" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_14", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_14", + "blueprint_name": "place 1 ½ aisles of wooden racks in section N", + "blueprint_requires": [ { "id": "fbms_2_11" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_14" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_14" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_15", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_15", + "blueprint_name": "place 1 ½ aisles of wooden racks in section O", + "blueprint_requires": [ { "id": "fbms_2_12" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_15" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_15" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_modular_storehouse_wooden_rack_16", + "description": "Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, contents visible from a distance, doesn't block LoS).", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbms_2_wooden_rack_16", + "blueprint_name": "place 1 ½ aisles of wooden racks in section P", + "blueprint_requires": [ { "id": "fbms_2_12" } ], + "blueprint_provides": [ { "id": "fbms_2_storage_16" } ], + "blueprint_excludes": [ { "id": "fbms_2_storage_16" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_common.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_common.json index 8028c43e9e317..caed03032c96a 100644 --- a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_common.json +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_common.json @@ -70,7 +70,7 @@ "skills": [ [ "fabrication", 3 ] ], "inline": { "tools": [ [ [ "oxy_torch", 30 ], [ "toolset", 225 ], [ "welder", 150 ], [ "welder_crude", 225 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ] ], "components": [ [ [ "2x4", 6 ] ], [ [ "nail", 40 ] ], diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_log.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_log.json index fc76b2ccdf27b..20974c490c690 100644 --- a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_log.json +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_log.json @@ -140,7 +140,7 @@ "tools": [ [ [ "oxy_torch", 20 ], [ "toolset", 150 ], [ "welder", 100 ], [ "welder_crude", 150 ] ] ], "qualities": [ [ { "id": "DIG", "level": 2 } ], - [ { "id": "GLARE", "level": 2 } ], + [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ], diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_metal.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_metal.json index 42091d8554a04..55b2f11d4ba87 100644 --- a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_metal.json +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_metal.json @@ -18,7 +18,7 @@ "skills": [ [ "fabrication", 4 ] ], "inline": { "tools": [ [ [ "oxy_torch", 180 ], [ "toolset", 1350 ], [ "welder", 900 ], [ "welder_crude", 1350 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ], "components": [ [ [ "2x4", 230 ] ], [ [ "glass_sheet", 2 ] ], @@ -49,7 +49,7 @@ "inline": { "tools": [ [ [ "oxy_torch", 120 ], [ "welder", 600 ], [ "welder_crude", 900 ], [ "toolset", 900 ] ] ], "qualities": [ - [ { "id": "GLARE", "level": 2 } ], + [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ], [ { "id": "WRENCH" } ] @@ -88,7 +88,7 @@ "tools": [ [ [ "oxy_torch", 80 ], [ "toolset", 600 ], [ "welder", 400 ], [ "welder_crude", 600 ] ] ], "qualities": [ [ { "id": "DIG" } ], - [ { "id": "GLARE", "level": 2 } ], + [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ], [ { "id": "WRENCH" } ] @@ -127,7 +127,7 @@ "inline": { "tools": [ [ [ "oxy_torch", 80 ], [ "toolset", 600 ], [ "welder", 400 ], [ "welder_crude", 600 ] ] ], "qualities": [ - [ { "id": "GLARE", "level": 2 } ], + [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ], [ { "id": "WRENCH" } ] @@ -167,7 +167,7 @@ "inline": { "tools": [ [ [ "oxy_torch", 80 ], [ "toolset", 600 ], [ "welder", 400 ], [ "welder_crude", 600 ] ] ], "qualities": [ - [ { "id": "GLARE", "level": 2 } ], + [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ], [ { "id": "WRENCH" } ] @@ -210,7 +210,7 @@ [ [ "oxy_torch", 220 ], [ "welder", 1100 ], [ "welder_crude", 1650 ], [ "toolset", 1650 ] ] ], "qualities": [ - [ { "id": "GLARE", "level": 2 } ], + [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ], [ { "id": "WRENCH" } ] @@ -249,7 +249,7 @@ "skills": [ [ "fabrication", 4 ] ], "inline": { "tools": [ [ [ "oxy_torch", 200 ], [ "welder", 1000 ], [ "welder_crude", 1500 ], [ "toolset", 1500 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ], "components": [ [ [ "metal_tank", 2 ] ], [ [ "water_faucet", 2 ] ], diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_migo_resin.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_migo_resin.json index a687b6ee2960c..5c3403422d0a6 100644 --- a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_migo_resin.json +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_migo_resin.json @@ -124,7 +124,7 @@ "skills": [ [ "fabrication", 4 ] ], "inline": { "tools": [ [ [ "oxy_torch", 20 ], [ "toolset", 150 ], [ "welder", 100 ], [ "welder_crude", 150 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ], [ { "id": "SMOOTH" } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W" } ], [ { "id": "SMOOTH" } ] ], "components": [ [ [ "2x4", 12 ] ], [ [ "alien_pod_resin", 36 ] ], diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_rock.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_rock.json index 8530479ff6416..f5d3d4e05ad79 100644 --- a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_rock.json +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_rock.json @@ -153,7 +153,7 @@ "tools": [ [ [ "oxy_torch", 20 ], [ "toolset", 150 ], [ "welder", 100 ], [ "welder_crude", 150 ] ] ], "qualities": [ [ { "id": "DIG", "level": 2 } ], - [ { "id": "GLARE", "level": 2 } ], + [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ], diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_wad.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_wad.json index d5128d63908f9..11263a87575cb 100644 --- a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_wad.json +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_wad.json @@ -154,7 +154,7 @@ "tools": [ [ [ "oxy_torch", 20 ], [ "toolset", 150 ], [ "welder", 100 ], [ "welder_crude", 150 ] ] ], "qualities": [ [ { "id": "CUT" } ], - [ { "id": "GLARE", "level": 2 } ], + [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ], diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_wood.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_wood.json index 4a0c418564767..9e9000de1e214 100644 --- a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_wood.json +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_1/recipe_modular_workshop_wood.json @@ -129,7 +129,7 @@ "skills": [ [ "fabrication", 4 ] ], "inline": { "tools": [ [ [ "oxy_torch", 20 ], [ "toolset", 150 ], [ "welder", 100 ], [ "welder_crude", 150 ] ] ], - "qualities": [ [ { "id": "GLARE", "level": 2 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ], + "qualities": [ [ { "id": "GLARE", "level": 1 } ], [ { "id": "HAMMER", "level": 2 } ], [ { "id": "SAW_W", "level": 2 } ] ], "components": [ [ [ "2x4", 162 ] ], [ [ "clay_lump", 12 ], [ "material_cement", 50 ], [ "mortar_build", 1 ] ], diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/modular_workshop_recipe_groups.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/modular_workshop_recipe_groups.json new file mode 100644 index 0000000000000..2caa6e16d7abe --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/modular_workshop_recipe_groups.json @@ -0,0 +1,139 @@ +[ + { + "type": "recipe_group", + "id": "fbmw_2_potter_recipes_1", + "building_type": "SMITH", + "recipes": [ + { "id": "brick", "description": " Craft: Brick" }, + { "id": "clay_canister", "description": " Craft: Canister, Clay" }, + { "id": "crucible_clay", "description": " Craft: Crucible, Clay" }, + { "id": "fire_brick", "description": " Craft: Brick, Fire" }, + { "id": "pebble_clay", "description": " Craft: Pellet, Clay" } + ] + }, + { + "type": "recipe_group", + "id": "fbmw_2_blacksmith_recipes_1", + "building_type": "SMITH", + "recipes": [ { "id": "caltrops_glass", "description": " Craft: Glass Caltrops" } ] + }, + { + "type": "recipe_group", + "id": "fbmw_2_blacksmith_recipes_2", + "building_type": "SMITH", + "recipes": [ + { "id": "scrap_copper", "description": " Craft: Copper, Scrap" }, + { "id": "charcoal_npc", "description": " Craft: Charcoal" }, + { "id": "spike", "description": " Craft: Spike" }, + { "id": "steel_chunk", "description": " Craft: Steel, Chunk" }, + { "id": "anvil", "description": " Craft: Anvil" }, + { "id": "steel_lump", "description": " Craft: Steel, Lump" } + ] + }, + { + "type": "recipe_group", + "id": "fbmw_2_blacksmith_recipes_3", + "building_type": "SMITH", + "recipes": [ + { "id": "copper_knife", "description": " Craft: Knife, Copper" }, + { "id": "sword_crude", "description": " Craft: Sword, Crude" }, + { "id": "pot_copper", "description": " Craft: Pot, Copper" }, + { "id": "bolt_metal", "description": " Craft: Crossbow Bolt, Steel" }, + { "id": "armor_scrapsuit", "description": " Craft: Armor, Scrap Suit" }, + { "id": "helmet_scrap", "description": " Craft: Armor, Scrap Helmet" }, + { "id": "cuirass_scrap", "description": " Craft: Armor, Scrap Cuirass" }, + { "id": "armguard_scrap", "description": " Craft: Armor, Scrap Arm Guards" }, + { "id": "legguard_scrap", "description": " Craft: Armor, Scrap Leg Guards" }, + { "id": "boots_scrap", "description": " Craft: Armor, Scrap Boots" }, + { "id": "chisel", "description": " Craft: Metalworking Chisel" }, + { "id": "hammer", "description": " Craft: Hammer" }, + { "id": "tongs", "description": " Craft: Metal Tongs" }, + { "id": "metalworking_tongs", "description": " Craft: Pair of Flatjaw Tongs" }, + { "id": "hotcut", "description": " Craft: Hotcut (chisel for metal working)" }, + { "id": "nail", "description": " Craft: Nail" }, + { "id": "wire", "description": " Craft: Wire" }, + { "id": "swage", "description": " Craft: Swage and Die Set" } + ] + }, + { + "type": "recipe_group", + "id": "fbmw_2_blacksmith_recipes_4", + "building_type": "SMITH", + "recipes": [ + { "id": "blade", "description": " Craft: Blade" }, + { "id": "bearing", "description": " Craft: Bearings" }, + { "id": "caltrops", "description": " Craft: Caltrops" }, + { "id": "hand_drill", "description": " Craft: Hand Drill" }, + { "id": "sheet_metal", "description": " Craft: Sheet Metal" }, + { "id": "chain", "description": " Craft: Chain" }, + { "id": "shovel", "description": " Craft: Shovel" }, + { "id": "rebar", "description": " Craft: Rebar" }, + { "id": "gold_ring", "description": " Craft: Gold Ring" }, + { "id": "hammer_sledge", "description": " Craft: Hammer, Sledge" } + ] + }, + { + "type": "recipe_group", + "id": "fbmw_2_blacksmith_recipes_5", + "building_type": "SMITH", + "recipes": [ + { "id": "knife_combat", "description": " Craft: Knife, Combat" }, + { "id": "knife_hunting", "description": " Craft: Knife, Hunting" }, + { "id": "spear_steel", "description": " Craft: Spear, Steel" }, + { "id": "machete", "description": " Craft: Machete" }, + { "id": "pipe", "description": " Craft: Pipe" }, + { "id": "screwdriver", "description": " Craft: Screwdriver" }, + { "id": "throwing_axe", "description": " Craft: Axe, Throwing" }, + { "id": "wrench", "description": " Craft: Wrench" }, + { "id": "hatchet", "description": " Craft: Hatchet" }, + { "id": "throwing_knife", "description": " Craft: Knife, Throwing" }, + { "id": "crowbar", "description": " Craft: Crowbar" }, + { "id": "pot", "description": " Craft: Pot" }, + { "id": "hoe", "description": " Craft: Hoe" }, + { "id": "pliers", "description": " Craft: Pliers" }, + { "id": "drift", "description": " Craft: Drift" }, + { "id": "halberd", "description": " Craft: Halberd" }, + { "id": "cuirass_lightplate", "description": " Craft: Armor, Cuirass" }, + { "id": "pockknife", "description": " Craft: Knife, Pocket" }, + { "id": "warhammer", "description": " Craft: Hammer, War" }, + { "id": "helmet_plate", "description": " Craft: Helm, Great" }, + { "id": "armor_lightplate", "description": " Craft: Armor, Plate" }, + { "id": "broadsword", "description": " Craft: Sword, Broadsword" }, + { "id": "scimitar", "description": " Craft: Sword, Scimitar" }, + { "id": "fire_ax", "description": " Craft: Axe, Fire" }, + { "id": "hacksaw", "description": " Craft: Hacksaw" }, + { "id": "saw", "description": " Craft: Woodsaw" }, + { "id": "pike", "description": " Craft: Spear, Awl Pike" }, + { "id": "rapier", "description": " Craft: Sword, Rapier" }, + { "id": "halligan", "description": " Craft: Halligan Bar" }, + { "id": "zweihander", "description": " Craft: Sword, Zweihander" }, + { "id": "pickaxe", "description": " Craft: Pickaxe" } + ] + }, + { + "type": "recipe_group", + "id": "fbmw_2_blacksmith_recipes_6", + "building_type": "SMITH", + "recipes": [ + { "id": "sheet_metal_npc_drop", "description": " Craft: Sheet Metal, Drop Hammer" }, + { "id": "chain_npc_drop", "description": " Craft: Chain, Drop Hammer" }, + { "id": "nail_npc_drop", "description": " Craft: Nail, Drop Hammer" }, + { "id": "wire_npc_drop", "description": " Craft: Wire, Drop Hammer" }, + { "id": "pipe_npc_drop", "description": " Craft: Pipe, Drop Hammer" }, + { "id": "rebar_npc_drop", "description": " Craft: Rebar, Drop Hammer" } + ] + }, + { + "type": "recipe_group", + "id": "fbmw_2_glassblower_recipes_1", + "building_type": "SMITH", + "recipes": [ + { "id": "bottle_glass", "description": " Craft: Bottle, Glass" }, + { "id": "flask_glass", "description": " Craft: Flask, Glass" }, + { "id": "glass_sheet", "description": " Craft: Sheet, Glass" }, + { "id": "jar_3l_glass_sealed", "description": " Craft: 3L Jar, Glass" }, + { "id": "jar_glass_sealed", "description": " Craft: Jar, Glass" }, + { "id": "tempered_glass_sheet", "description": " Craft: Tempered Sheet, Glass" } + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_common.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_common.json new file mode 100644 index 0000000000000..34f3fd672a2fe --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_common.json @@ -0,0 +1,289 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "faction_base_workshop_2_0", + "description": "Survey land for a workshop area.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "skill_used": "fabrication", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "faction_base_workshop_2_0", + "blueprint_name": "workshop survey", + "time": "3 h", + "blueprint_requires": [ { "id": "not_an_upgrade" } ], + "blueprint_provides": [ { "id": "fbmw_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "bmw_common_1", + "description": "Let's install a metal working forge in the smithy. We'll need a few tools too, so we'll include some storage space. This will provide us with a first couple of primitive crafting recipes.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_common_smithy_1", + "blueprint_name": "forge", + "blueprint_requires": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_provides": [ { "id": "fbmw_2_common_smithy_1" }, { "id": "blacksmith" }, { "id": "fbmw_2_blacksmith_recipes_1" } ], + "blueprint_excludes": [ { "id": "fbmw_2_common_smithy_1" } ], + "blueprint_resources": [ "rock_forge_pseudo", "fake_fireplace", "makeshift_hammer" ], + "components": [ [ [ "primitive_hammer", 1 ], [ "makeshift_hammer", 1 ] ] ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "bmw_common_smithy_2", + "description": "Let's install a couple of charcoal kilns outside of the smithy. We'll add a crucible as well. This will allow us to produce a few additional things.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_common_smithy_2", + "blueprint_name": "forge", + "blueprint_requires": [ { "id": "fbmw_2_smithy_2" }, { "id": "fbmw_2_common_smithy_1" } ], + "blueprint_provides": [ { "id": "fbmw_2_common_smithy_2" }, { "id": "fbmw_2_blacksmith_recipes_2" } ], + "blueprint_excludes": [ { "id": "fbmw_2_common_smithy_2" } ], + "blueprint_resources": [ "char_kiln", "char_kiln", "crucible" ], + "components": [ [ [ "crucible", 1 ], [ "crucible_clay", 1 ] ] ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_common_smithy_3", + "description": "Let's install an anvil in the smithy, some quenching containers and a workbench. This will allow us to produce a few additional things.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_common_smithy_3", + "blueprint_name": "anvil and workbench", + "blueprint_requires": [ { "id": "fbmw_2_common_smithy_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_common_smithy_3" }, { "id": "fbmw_2_blacksmith_recipes_3" } ], + "blueprint_excludes": [ { "id": "fbmw_2_common_smithy_3" } ], + "blueprint_resources": [ "anvil" ], + "components": [ [ [ "anvil", 1 ] ], [ [ "55gal_drum", 1 ] ], [ [ "30gal_drum", 1 ] ] ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_common_smithy_4", + "description": "Let's add furniture and some more tools to the smithy. This will allow us to produce a few additional things.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_common_smithy_4", + "blueprint_name": "smithing tools", + "blueprint_requires": [ { "id": "fbmw_2_common_smithy_3" }, { "id": "fbmw_2_smithy_3" } ], + "blueprint_provides": [ { "id": "fbmw_2_common_smithy_4" }, { "id": "fbmw_2_blacksmith_recipes_4" } ], + "blueprint_excludes": [ { "id": "fbmw_2_common_smithy_4" } ], + "blueprint_resources": [ "tongs", "chisel", "hammer", "swage" ], + "components": [ [ [ "tongs", 1 ] ], [ [ "chisel", 1 ] ], [ [ "hammer", 1 ] ], [ [ "swage", 1 ] ] ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_common_smithy_5", + "description": "Let's install a bellows for our forge and add some more tools. This will extend our recipe repertoire.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_common_smithy_5", + "blueprint_name": "bellows", + "blueprint_requires": [ { "id": "fbmw_2_common_smithy_4" } ], + "blueprint_provides": [ { "id": "fbmw_2_common_smithy_5" }, { "id": "fbmw_2_blacksmith_recipes_5" } ], + "blueprint_excludes": [ { "id": "fbmw_2_common_smithy_5" } ], + "blueprint_resources": [ "hammer_sledge", "copper_knife" ], + "components": [ [ [ "hammer_sledge", 1 ] ], [ [ "knife_combat", 1 ], [ "copper_knife", 1 ] ] ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_common_smithy_6", + "description": "Let's add a drop hammer to the smithy for productivity and add some more tools. This will allow us to reach our smithing potential.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_common_smithy_6", + "blueprint_name": "drop hammer", + "blueprint_requires": [ { "id": "fbmw_2_common_smithy_5" } ], + "blueprint_provides": [ { "id": "fbmw_2_common_smithy_6" }, { "id": "fbmw_2_blacksmith_recipes_6" } ], + "blueprint_excludes": [ { "id": "fbmw_2_common_smithy_6" } ], + "blueprint_resources": [ "wrench", "pliers", "fake_drop_hammer" ], + "components": [ [ [ "wrench", 1 ] ], [ [ "pliers", 1 ] ] ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_common_pottery", + "description": "Let's furnish the pottery.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_common_pottery", + "blueprint_name": "pottery furniture", + "blueprint_requires": [ { "id": "fbmw_2_pottery" } ], + "blueprint_provides": [ { "id": "fbmw_2_common_pottery" }, { "id": "blacksmith" }, { "id": "fbmw_2_potter_recipes_1" } ], + "blueprint_excludes": [ { "id": "fbmw_2_common_pottery" } ], + "blueprint_resources": [ "kiln_pseudo" ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_common_glassblower", + "description": "Let's furnish the glassblower's cottage.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_common_glassblower", + "blueprint_name": "glassblower furniture", + "blueprint_requires": [ { "id": "fbmw_2_glassblower" } ], + "blueprint_provides": [ { "id": "fbmw_2_common_glassblower" }, { "id": "blacksmith" }, { "id": "fbmw_2_glassblower_recipes_1" } ], + "blueprint_excludes": [ { "id": "fbmw_2_common_glassblower" } ], + "components": [ [ [ "chisel", 1 ] ], [ [ "tongs", 1 ] ], [ [ "crucible", 1 ], [ "crucible_clay", 1 ] ] ], + "blueprint_resources": [ "rock_forge_pseudo", "chisel", "tongs", "crucible" ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_common_recreation", + "description": "Let's add a bench and a fire barrel outside the pottery for recreation.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_common_recreation", + "blueprint_name": "recreation area", + "blueprint_requires": [ { "id": "fbmw_2_pottery" } ], + "blueprint_provides": [ { "id": "fbmw_2_common_recreation" } ], + "blueprint_excludes": [ { "id": "fbmw_2_common_recreation" } ], + "components": [ [ [ "55gal_drum", 1 ] ] ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_concrete.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_concrete.json new file mode 100644 index 0000000000000..907952e5550fd --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_concrete.json @@ -0,0 +1,137 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_1_concrete", + "description": "We can use a concrete smithy. Let's start by building a spot to protect the workers from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_1_concrete", + "blueprint_name": "smithy concrete wall", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_2_concrete", + "description": "Let's build a roof with concrete pillars to protect future charcoal kilns from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_2_concrete", + "blueprint_name": "concrete kiln protection", + "blueprint_requires": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_3_concrete", + "description": "Let's build a the last concrete section of the smithy.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_3_concrete", + "blueprint_name": "last concrete smithy section", + "blueprint_requires": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_3" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_pottery_concrete", + "description": "Let's start building a pottery concrete section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_pottery_concrete", + "blueprint_name": "concrete walled pottery", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_pottery" } ], + "blueprint_excludes": [ { "id": "fbmw_2_pottery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_glassblower_concrete", + "description": "Let's start building a glassblower's cottage from concrete.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_glassblower_concrete", + "blueprint_name": "concrete walled glassblower's cottage", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_glassblower" } ], + "blueprint_excludes": [ { "id": "fbmw_2_glassblower" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_log.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_log.json new file mode 100644 index 0000000000000..0b68a70c81a21 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_log.json @@ -0,0 +1,137 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_1_log", + "description": "We can use a log smithy. Let's start by building a spot to protect the workers from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_1_log", + "blueprint_name": "smithy log wall", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_2_log", + "description": "Let's build a roof with log pillars to protect future charcoal kilns from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_2_log", + "blueprint_name": "log kiln protection", + "blueprint_requires": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_3_log", + "description": "Let's build a the last log section of the smithy.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_3_log", + "blueprint_name": "last log smithy section", + "blueprint_requires": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_3" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_pottery_log", + "description": "Let's start building a pottery log section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_pottery_log", + "blueprint_name": "log walled pottery", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_pottery" } ], + "blueprint_excludes": [ { "id": "fbmw_2_pottery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_glassblower_log", + "description": "Let's start building a glassblower's cottage from logs.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_glassblower_log", + "blueprint_name": "log walled glassblower's cottage", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_glassblower" } ], + "blueprint_excludes": [ { "id": "fbmw_2_glassblower" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_metal.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_metal.json new file mode 100644 index 0000000000000..874cf2f769ee8 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_metal.json @@ -0,0 +1,137 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_1_metal", + "description": "We can use a metal smithy. Let's start by building a spot to protect the workers from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_1_metal", + "blueprint_name": "smithy metal wall", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_2_metal", + "description": "Let's build a roof with metal pillars to protect future charcoal kilns from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_2_metal", + "blueprint_name": "metal kiln protection", + "blueprint_requires": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_3_metal", + "description": "Let's build a the last metal section of the smithy.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_3_metal", + "blueprint_name": "last metal smithy section", + "blueprint_requires": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_3" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_pottery_metal", + "description": "Let's start building a pottery metal section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_pottery_metal", + "blueprint_name": "metal walled pottery", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_pottery" } ], + "blueprint_excludes": [ { "id": "fbmw_2_pottery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_glassblower_metal", + "description": "Let's start building a glassblower's cottage from metal.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_glassblower_metal", + "blueprint_name": "metal walled glassblower's cottage", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_glassblower" } ], + "blueprint_excludes": [ { "id": "fbmw_2_glassblower" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_migo_resin.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_migo_resin.json new file mode 100644 index 0000000000000..069c324cba5c2 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_migo_resin.json @@ -0,0 +1,137 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_1_migo_resin", + "description": "We can use a mi-go resin smithy. Let's start by building a spot to protect the workers from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_1_migo_resin", + "blueprint_name": "smithy mi-go resin wall", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_2_migo_resin", + "description": "Let's build a roof with mi-go resin pillars to protect future charcoal kilns from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_2_migo_resin", + "blueprint_name": "mi-go resin kiln protection", + "blueprint_requires": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_3_migo_resin", + "description": "Let's build a the last mi-go resin section of the smithy.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_3_migo_resin", + "blueprint_name": "last mi-go resin smithy section", + "blueprint_requires": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_3" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_pottery_migo_resin", + "description": "Let's start building a pottery mi-go resin section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_pottery_migo_resin", + "blueprint_name": "mi-go resin walled pottery", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_pottery" } ], + "blueprint_excludes": [ { "id": "fbmw_2_pottery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_glassblower_migo_resin", + "description": "Let's start building a glassblower's cottage from mi-go resin.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_glassblower_migo_resin", + "blueprint_name": "mi-go resin walled glassblower's cottage", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_glassblower" } ], + "blueprint_excludes": [ { "id": "fbmw_2_glassblower" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_rammed_earth.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_rammed_earth.json new file mode 100644 index 0000000000000..a25b8975be142 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_rammed_earth.json @@ -0,0 +1,137 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_1_rammed_earth", + "description": "We can use a rammed earth smithy. Let's start by building a spot to protect the workers from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_1_rammed_earth", + "blueprint_name": "smithy rammed earth wall", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_2_rammed_earth", + "description": "Let's build a roof with rammed earth pillars to protect future charcoal kilns from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_2_rammed_earth", + "blueprint_name": "rammed earth kiln protection", + "blueprint_requires": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_3_rammed_earth", + "description": "Let's build a the last rammed earth section of the smithy.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_3_rammed_earth", + "blueprint_name": "last rammed earth smithy section", + "blueprint_requires": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_3" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_pottery_rammed_earth", + "description": "Let's start building a pottery rammed earth section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_pottery_rammed_earth", + "blueprint_name": "rammed earth walled pottery", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_pottery" } ], + "blueprint_excludes": [ { "id": "fbmw_2_pottery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_glassblower_rammed_earth", + "description": "Let's start building a glassblower's cottage from rammed earth.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_glassblower_rammed_earth", + "blueprint_name": "rammed_earth walled glassblower's cottage", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_glassblower" } ], + "blueprint_excludes": [ { "id": "fbmw_2_glassblower" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_rock.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_rock.json new file mode 100644 index 0000000000000..8e19f84f7823e --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_rock.json @@ -0,0 +1,137 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_1_rock", + "description": "We can use a rock smithy. Let's start by building a spot to protect the workers from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_1_rock", + "blueprint_name": "smithy rock wall", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_2_rock", + "description": "Let's build a roof with rock pillars to protect future charcoal kilns from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_2_rock", + "blueprint_name": "rock kiln protection", + "blueprint_requires": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_3_rock", + "description": "Let's build a the last rock section of the smithy.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_3_rock", + "blueprint_name": "last rock smithy section", + "blueprint_requires": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_3" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_pottery_rock", + "description": "Let's start building a pottery rock section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_pottery_rock", + "blueprint_name": "rock walled pottery", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_pottery" } ], + "blueprint_excludes": [ { "id": "fbmw_2_pottery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_glassblower_rock", + "description": "Let's start building a glassblower's cottage from rock.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_glassblower_rock", + "blueprint_name": "rock walled glassblower's cottage", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_glassblower" } ], + "blueprint_excludes": [ { "id": "fbmw_2_glassblower" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_wad.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_wad.json new file mode 100644 index 0000000000000..8efd96cc1f89c --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_wad.json @@ -0,0 +1,137 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_1_wad", + "description": "We can use a wattle-and-daub smithy. Let's start by building a spot to protect the workers from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_1_wad", + "blueprint_name": "smithy wattle-and-daub wall", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_2_wad", + "description": "Let's build a roof with wattle-and-daub pillars to protect future charcoal kilns from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_2_wad", + "blueprint_name": "wattle-and-daub kiln protection", + "blueprint_requires": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_3_wad", + "description": "Let's build a the last wattle-and-daub section of the smithy.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_3_wad", + "blueprint_name": "last wattle-and-daub smithy section", + "blueprint_requires": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_3" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_pottery_wad", + "description": "Let's start building a pottery wattle-and-daub section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_pottery_wad", + "blueprint_name": "wattle-and-daub walled pottery", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_pottery" } ], + "blueprint_excludes": [ { "id": "fbmw_2_pottery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_glassblower_wad", + "description": "Let's start building a glassblower's cottage from wattle-and-daub walls.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_glassblower_wad", + "blueprint_name": "wattle-and-daub walled glassblower's cottage", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_glassblower" } ], + "blueprint_excludes": [ { "id": "fbmw_2_glassblower" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_wood.json b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_wood.json new file mode 100644 index 0000000000000..f84a0524d8a24 --- /dev/null +++ b/data/json/recipes/basecamps/expansion/recipe_modular_workshop/version_2/recipe_modular_workshop_wood.json @@ -0,0 +1,137 @@ +[ + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_1_wood", + "description": "We can use a wooden panel smithy. Let's start by building a spot to protect the workers from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_1_wood", + "blueprint_name": "smithy wooden panel wall", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_1" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_2_wood", + "description": "Let's build a roof with wooden panel pillars to protect future charcoal kilns from the rain.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_2_wood", + "blueprint_name": "wooden panel kiln protection", + "blueprint_requires": [ { "id": "fbmw_2_smithy_1" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_2" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_smithy_3_wood", + "description": "Let's build a the last wooden panel section of the smithy.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_smithy_3_wood", + "blueprint_name": "last wooden panel smithy section", + "blueprint_requires": [ { "id": "fbmw_2_smithy_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_smithy_3" } ], + "blueprint_excludes": [ { "id": "fbmw_2_smithy_3" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_pottery_wood", + "description": "Let's start building a pottery wooden panel section.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_pottery_wood", + "blueprint_name": "wooden panel walled pottery", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_pottery" } ], + "blueprint_excludes": [ { "id": "fbmw_2_pottery" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "fbmw_2_glassblower_wood", + "description": "Let's start building a glassblower's cottage from wooden panels.", + "category": "CC_BUILDING", + "subcategory": "CSC_BUILDING_BASES", + "autolearn": false, + "never_learn": true, + "construction_blueprint": "fbmw_2_glassblower_wood", + "blueprint_name": "wooden panel walled glassblower's cottage", + "blueprint_requires": [ { "id": "fbmw_2" } ], + "blueprint_provides": [ { "id": "fbmw_2_glassblower" } ], + "blueprint_excludes": [ { "id": "fbmw_2_glassblower" } ], + "flags": [ + "MAP_MIRROR_HORIZONTAL_IF_N", + "MAP_ROTATE_90_IF_NE", + "MAP_MIRROR_HORIZONTAL_IF_E", + "MAP_ROTATE_90_IF_E", + "MAP_ROTATE_180_IF_SE", + "MAP_MIRROR_HORIZONTAL_IF_S", + "MAP_ROTATE_180_IF_S", + "MAP_ROTATE_270_IF_SW", + "MAP_MIRROR_HORIZONTAL_IF_W", + "MAP_ROTATE_270_IF_W" + ] + } +] diff --git a/data/json/recipes/basecamps/recipe_groups.json b/data/json/recipes/basecamps/recipe_groups.json index a0096f5c647af..ab5b69f518d6f 100644 --- a/data/json/recipes/basecamps/recipe_groups.json +++ b/data/json/recipes/basecamps/recipe_groups.json @@ -125,10 +125,37 @@ "description": "Garage version 2. Maximum width, two lane size, three different lengths", "om_terrains": [ "field" ] }, - { "id": "faction_base_livestock_0", "description": "Livestock Area", "om_terrains": [ "field" ] }, + { + "id": "faction_base_livestock_0", + "description": "Livestock Area version 1. Layout with plenty of free space", + "om_terrains": [ "field" ] + }, + { + "id": "faction_base_livestock_2_0", + "description": "Livestock Area version 2. More stalls than version 1, less free space", + "om_terrains": [ "field" ] + }, { "id": "faction_base_saltworks_0", "description": "Saltworks Area", "om_terrains": [ "field" ] }, - { "id": "faction_base_storehouse_0", "description": "Central Storage Building", "om_terrains": [ "field" ] }, - { "id": "faction_base_workshop_0", "description": "Fabrication Workshop", "om_terrains": [ "field" ] }, + { + "id": "faction_base_storehouse_0", + "description": "Central Storage Building version 1. Nice building with free space", + "om_terrains": [ "field" ] + }, + { + "id": "faction_base_storehouse_2_0", + "description": "Central Storage Building version 2. Focus on storage. Place in N, E, S, W only", + "om_terrains": [ "field" ] + }, + { + "id": "faction_base_workshop_0", + "description": "Fabrication Workshop version 1. Nice workshop cottage", + "om_terrains": [ "field" ] + }, + { + "id": "faction_base_workshop_2_0", + "description": "Fabrication Workshop version 2. More detailed recipe progression", + "om_terrains": [ "field" ] + }, { "id": "faction_base_lightindustry_workshop_0", "description": "Light Industry Workshop", diff --git a/data/json/recipes/chem/mutagens.json b/data/json/recipes/chem/mutagens.json index ebda02baf1282..bd303b561dbb6 100644 --- a/data/json/recipes/chem/mutagens.json +++ b/data/json/recipes/chem/mutagens.json @@ -115,7 +115,8 @@ "using": [ [ "mutagen_production_standard", 25 ] ], "components": [ [ [ "mutagen", 1 ] ], - [ [ "honey_bottled", 3 ], [ "honeycomb", 3 ], [ "bee_sting", 3 ], [ "wasp_sting", 3 ] ], + [ [ "insect_sample", 3 ] ], + [ [ "bee_sting", 3 ], [ "wasp_sting", 3 ] ], [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] ], "flags": [ "SECRET" ] @@ -149,7 +150,12 @@ "batch_time_factors": [ 80, 20 ], "book_learn": [ [ "recipe_maiar", 6 ] ], "using": [ [ "mutagen_production_standard", 25 ] ], - "components": [ [ [ "mutagen", 1 ] ], [ [ "spider_egg", 1 ], [ "chitin_piece", 4 ] ], [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] ], + "components": [ + [ [ "mutagen", 1 ] ], + [ [ "spider_egg", 1 ], [ "chitin_piece", 4 ] ], + [ [ "spider_sample", 3 ] ], + [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] + ], "flags": [ "SECRET" ] }, { @@ -420,7 +426,12 @@ "batch_time_factors": [ 80, 20 ], "book_learn": [ [ "recipe_animal", 6 ] ], "using": [ [ "mutagen_production_standard", 25 ] ], - "components": [ [ [ "mutagen", 1 ] ], [ [ "meat", 3 ], [ "meat_scrap", 30 ] ], [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] ], + "components": [ + [ [ "mutagen", 1 ] ], + [ [ "feline_sample", 3 ] ], + [ [ "meat", 3 ], [ "meat_scrap", 30 ] ], + [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] + ], "flags": [ "SECRET" ] }, { @@ -452,7 +463,12 @@ "batch_time_factors": [ 80, 20 ], "book_learn": [ [ "recipe_animal", 6 ] ], "using": [ [ "mutagen_production_standard", 25 ] ], - "components": [ [ [ "mutagen", 1 ] ], [ [ "meat", 3 ], [ "meat_scrap", 30 ] ], [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] ], + "components": [ + [ [ "mutagen", 1 ] ], + [ [ "lupine_sample", 3 ] ], + [ [ "meat", 3 ], [ "meat_scrap", 30 ] ], + [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] + ], "flags": [ "SECRET" ] }, { @@ -484,7 +500,12 @@ "batch_time_factors": [ 80, 20 ], "book_learn": [ [ "recipe_animal", 6 ] ], "using": [ [ "mutagen_production_standard", 25 ] ], - "components": [ [ [ "mutagen", 1 ] ], [ [ "meat", 3 ], [ "meat_scrap", 30 ] ], [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] ], + "components": [ + [ [ "mutagen", 1 ] ], + [ [ "bovine_sample", 3 ] ], + [ [ "meat", 3 ], [ "meat_scrap", 30 ] ], + [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] + ], "flags": [ "SECRET" ] }, { @@ -584,7 +605,12 @@ "batch_time_factors": [ 80, 20 ], "book_learn": [ [ "recipe_animal", 6 ] ], "using": [ [ "mutagen_production_standard", 25 ] ], - "components": [ [ [ "mutagen", 1 ] ], [ [ "egg_reptile", 1 ] ], [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] ], + "components": [ + [ [ "mutagen", 1 ] ], + [ [ "egg_reptile", 1 ] ], + [ [ "reptile_sample", 3 ] ], + [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] + ], "flags": [ "SECRET" ] }, { @@ -616,7 +642,7 @@ "batch_time_factors": [ 80, 20 ], "book_learn": [ [ "recipe_animal", 6 ] ], "using": [ [ "mutagen_production_standard", 25 ] ], - "components": [ [ [ "mutagen", 1 ] ], [ [ "frog_sample", 1 ] ], [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] ], + "components": [ [ [ "mutagen", 1 ] ], [ [ "frog_sample", 3 ] ], [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] ], "flags": [ "SECRET" ] }, { @@ -648,7 +674,7 @@ "batch_time_factors": [ 80, 20 ], "book_learn": [ [ "recipe_maiar", 6 ] ], "using": [ [ "mutagen_production_standard", 25 ] ], - "components": [ [ [ "mutagen", 1 ] ], [ [ "meat", 3 ], [ "meat_scrap", 30 ] ], [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] ], + "components": [ [ [ "mutagen", 1 ] ], [ [ "molerat_sample", 3 ] ], [ [ "ammonia", 1 ], [ "lye_powder", 100 ] ] ], "flags": [ "SECRET" ] }, { diff --git a/data/json/recipes/electronics/parts.json b/data/json/recipes/electronics/parts.json index 58cc0229c96db..4aad1e13a4aa2 100644 --- a/data/json/recipes/electronics/parts.json +++ b/data/json/recipes/electronics/parts.json @@ -9,17 +9,12 @@ "difficulty": 3, "skills_required": [ "fabrication", 1 ], "time": "30 m", - "reversible": true, "decomp_learn": 2, "book_learn": [ [ "manual_electronics", 2 ], [ "mag_electronics", 2 ], [ "manual_mechanics", 3 ] ], "using": [ [ "soldering_standard", 10 ], [ "surface_heat", 50 ], [ "plastic_molding", 20 ] ], "proficiencies": [ { "proficiency": "prof_plasticworking" } ], "qualities": [ { "id": "SCREW", "level": 1 } ], - "components": [ - [ [ "scrap", 4 ] ], - [ [ "lead", 5000 ] ], - [ [ "chem_sulphuric_acid", 4 ], [ "fertilizer_liquid", 4 ], [ "fertilizer_commercial", 4 ] ] - ] + "components": [ [ [ "scrap", 4 ] ], [ [ "lead", 3200 ] ], [ [ "chem_sulphuric_acid", 13 ] ] ] }, { "result": "battery_motorbike", @@ -31,17 +26,12 @@ "difficulty": 3, "skills_required": [ "fabrication", 1 ], "time": "30 m", - "reversible": true, "decomp_learn": 2, "book_learn": [ [ "manual_electronics", 2 ], [ "mag_electronics", 2 ], [ "manual_mechanics", 3 ] ], "using": [ [ "soldering_standard", 10 ], [ "surface_heat", 10 ], [ "plastic_molding", 4 ] ], "proficiencies": [ { "proficiency": "prof_plasticworking" } ], "qualities": [ { "id": "SCREW", "level": 1 } ], - "components": [ - [ [ "scrap", 1 ] ], - [ [ "lead", 1000 ] ], - [ [ "chem_sulphuric_acid", 2 ], [ "fertilizer_liquid", 2 ], [ "fertilizer_commercial", 2 ] ] - ] + "components": [ [ [ "scrap", 1 ] ], [ [ "lead", 720 ] ], [ [ "chem_sulphuric_acid", 3 ] ] ] }, { "type": "recipe", diff --git a/data/json/recipes/food/vegetable_dishes.json b/data/json/recipes/food/vegetable_dishes.json new file mode 100644 index 0000000000000..025699b956007 --- /dev/null +++ b/data/json/recipes/food/vegetable_dishes.json @@ -0,0 +1,63 @@ +[ + { + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "result": "veggy_salad", + "id_suffix": "with_food_processor", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_VEGGI", + "skill_used": "cooking", + "difficulty": 1, + "time": "5 m", + "batch_time_factors": [ 80, 1 ], + "autolearn": true, + "qualities": [ { "id": "CUT", "level": 1 }, { "id": "CONTAIN", "level": 1 } ], + "tools": [ [ [ "food_processor", 10 ] ] ], + "components": [ + [ + [ "lettuce", 2 ], + [ "irradiated_lettuce", 2 ], + [ "broccoli", 2 ], + [ "irradiated_broccoli", 2 ], + [ "dandelion_cooked", 2 ], + [ "burdock_cooked", 2 ], + [ "veggy_wild_cooked", 2 ], + [ "fiddlehead_boiled", 2 ], + [ "fiddlehead_sauteed", 2 ], + [ "sauerkraut", 2 ], + [ "irradiated_cabbage", 2 ], + [ "cabbage", 2 ] + ], + [ + [ "cucumber", 1 ], + [ "irradiated_cucumber", 1 ], + [ "tomato", 1 ], + [ "can_tomato", 1 ], + [ "irradiated_tomato", 1 ], + [ "carrot", 2 ], + [ "irradiated_carrot", 2 ], + [ "pineapple", 1 ], + [ "irradiated_pineapple", 1 ], + [ "cranberries", 1 ], + [ "irradiated_cranberries", 1 ], + [ "raspberries", 1 ], + [ "irradiated_raspberries", 1 ], + [ "blackberries", 1 ], + [ "irradiated_blackberries", 1 ], + [ "sugar_beet", 1 ] + ], + [ + [ "sugar", 1 ], + [ "artificial_sweetener", 1 ], + [ "mustard", 1 ], + [ "mayonnaise", 1 ], + [ "seasoning_salt", 1 ], + [ "soysauce", 1 ], + [ "pepper", 1 ], + [ "garlic_clove", 1 ], + [ "vinegar", 1 ], + [ "seasoning_italian", 1 ] + ] + ] + } +] diff --git a/data/json/recipes/other/materials.json b/data/json/recipes/other/materials.json index e291b44a4c821..141c510fcbfdb 100644 --- a/data/json/recipes/other/materials.json +++ b/data/json/recipes/other/materials.json @@ -691,7 +691,7 @@ "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 }, { "id": "FILE", "level": 1 } ], + "qualities": [ { "id": "FILE", "level": 1 } ], "tools": [ [ [ "hotcut", -1 ] ], [ [ "nail", -1 ] ] ], "components": [ [ [ "scrap", 1 ] ] ] }, diff --git a/data/json/recipes/other/parts.json b/data/json/recipes/other/parts.json index c0685312bcab5..4605e5576e16d 100644 --- a/data/json/recipes/other/parts.json +++ b/data/json/recipes/other/parts.json @@ -50,7 +50,7 @@ "autolearn": true, "using": [ [ "blacksmithing_standard", 3 ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "swage", -1 ] ] ], "components": [ [ [ "scrap", 4 ] ] ] }, @@ -70,7 +70,6 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, { @@ -145,7 +144,6 @@ "book_learn": [ [ "manual_electronics", 1 ], [ "textbook_electronics", 1 ], [ "advanced_electronics", 1 ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, { @@ -197,7 +195,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_bladesmith" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "swage", -1 ] ] ] }, { @@ -212,7 +210,6 @@ "autolearn": true, "using": [ [ "blacksmithing_standard", 32 ], [ "steel_standard", 8 ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ], [ [ "hotcut", -1 ] ] ] }, { @@ -231,7 +228,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "swage", -1 ] ] ] }, { @@ -250,7 +247,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_bladesmith" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -277,7 +274,7 @@ "time": "300 m", "autolearn": true, "using": [ [ "forging_standard", 5 ], [ "steel_standard", 6 ] ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, @@ -311,7 +308,7 @@ "time": "180 m", "autolearn": true, "using": [ [ "forging_standard", 1 ], [ "steel_tiny", 1 ] ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, @@ -430,7 +427,7 @@ "time": "10 m", "autolearn": true, "charges": 1, - "qualities": [ { "id": "ANVIL", "level": 1 }, { "id": "HAMMER", "level": 2 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 1 }, { "id": "HAMMER", "level": 2 } ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_redsmithing" } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ], [ [ "forge", 10 ], [ "oxy_torch", 10 ] ] ], "components": [ [ [ "copper_scrap_equivalent", 2, "LIST" ] ] ] diff --git a/data/json/recipes/other/parts_construction.json b/data/json/recipes/other/parts_construction.json index aa3093f8662d5..27b07d1a03c59 100644 --- a/data/json/recipes/other/parts_construction.json +++ b/data/json/recipes/other/parts_construction.json @@ -11,7 +11,6 @@ "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -156,7 +155,6 @@ "autolearn": true, "using": [ [ "blacksmithing_standard", 2 ], [ "steel_tiny", 2 ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -171,7 +169,6 @@ "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -185,7 +182,7 @@ "time": "210 m", "autolearn": true, "using": [ [ "forging_standard", 1 ], [ "steel_tiny", 1 ] ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" }, @@ -290,7 +287,6 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, { @@ -303,7 +299,7 @@ "difficulty": 5, "time": "1 h 30 m", "autolearn": true, - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_redsmithing" } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "hotcut", -1 ] ], [ [ "forge", 50 ], [ "oxy_torch", 10 ] ] ], "components": [ [ [ "copper_scrap_equivalent", 8, "LIST" ] ] ] diff --git a/data/json/recipes/other/power_supplies.json b/data/json/recipes/other/power_supplies.json index f243ad5c44def..5a737ab3978d5 100644 --- a/data/json/recipes/other/power_supplies.json +++ b/data/json/recipes/other/power_supplies.json @@ -20,6 +20,26 @@ "qualities": [ { "id": "SAW_M", "level": 1 } ], "components": [ [ [ "solar_panel", 1 ] ], [ [ "reinforced_glass_pane", 1 ] ], [ [ "scrap", 1 ] ] ] }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "folding_solar_panel", + "category": "CC_OTHER", + "subcategory": "CSC_OTHER_PARTS", + "skill_used": "fabrication", + "difficulty": 4, + "time": "2 h", + "reversible": true, + "autolearn": true, + "using": [ [ "welding_standard", 4 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking" }, + { "proficiency": "prof_welding_basic", "fail_multiplier": 1.5 }, + { "proficiency": "prof_welding" } + ], + "qualities": [ { "id": "SAW_M", "level": 1 } ], + "components": [ [ [ "solar_panel", 1 ] ], [ [ "scrap", 2 ] ], [ [ "wire", 2 ] ] ] + }, { "type": "recipe", "activity_level": "MODERATE_EXERCISE", @@ -52,7 +72,7 @@ "time": "20 m", "reversible": true, "autolearn": true, - "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "GLARE", "level": 2 } ], + "qualities": [ { "id": "HAMMER", "level": 2 }, { "id": "GLARE", "level": 1 } ], "tools": [ [ [ "welder", 50 ], [ "welder_crude", 75 ], [ "toolset", 75 ], [ "oxy_torch", 10 ] ], [ [ "soldering_iron", 10 ] ] ], "proficiencies": [ { "proficiency": "prof_elec_soldering" }, @@ -563,7 +583,6 @@ "time": "45 m", "book_learn": [ [ "adv_chemistry", 4 ] ], "using": [ [ "blacksmithing_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "chem_manganese_dioxide", 29 ] ], @@ -585,7 +604,6 @@ "time": "1 h", "book_learn": [ [ "adv_chemistry", 4 ] ], "using": [ [ "blacksmithing_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "chem_manganese_dioxide", 87 ] ], @@ -607,7 +625,6 @@ "time": "1 h 20 m", "book_learn": [ [ "adv_chemistry", 4 ] ], "using": [ [ "blacksmithing_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "chem_manganese_dioxide", 348 ] ], @@ -629,7 +646,6 @@ "time": "1 h 45 m", "book_learn": [ [ "adv_chemistry", 4 ] ], "using": [ [ "blacksmithing_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ], "components": [ [ [ "chem_manganese_dioxide", 725 ] ], diff --git a/data/json/recipes/practice/ranged.json b/data/json/recipes/practice/ranged.json new file mode 100644 index 0000000000000..66d092724342c --- /dev/null +++ b/data/json/recipes/practice/ranged.json @@ -0,0 +1,31 @@ +[ + { + "id": "prac_throw_beg", + "type": "practice", + "//": "Really, this recipe should work with any small, throwable object, but that would be tedious and bloat the recipe", + "activity_level": "MODERATE_EXERCISE", + "category": "CC_PRACTICE", + "subcategory": "CSC_PRACTICE_COMBAT", + "name": "throwing (beginner)", + "description": "Practice your throwing by throwing something and trying to hit a spot on the wall.", + "skill_used": "throw", + "time": "1 h", + "practice_data": { "min_difficulty": 0, "max_difficulty": 2, "skill_limit": 3 }, + "autolearn": [ [ "throw", 1 ] ], + "book_learn": [ [ "mag_throwing", 0 ], [ "manual_throw", 0 ] ], + "tools": [ + [ + "basketball", + "indoor_volleyball", + "beach_volleyball", + "baseball", + "marble", + "metal_RPG_die", + "RPG_die", + "rock", + "sharp_rock", + "bearing" + ] + ] + } +] diff --git a/data/json/recipes/recipe_ammo.json b/data/json/recipes/recipe_ammo.json index 4d42f0a27a174..dced5e98e77b6 100644 --- a/data/json/recipes/recipe_ammo.json +++ b/data/json/recipes/recipe_ammo.json @@ -678,8 +678,7 @@ "difficulty": 2, "time": "100 m", "autolearn": true, - "using": [ [ "blacksmithing_standard", 16 ], [ "steel_standard", 4 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ] + "using": [ [ "blacksmithing_standard", 16 ], [ "steel_standard", 4 ] ] }, { "type": "recipe", @@ -693,7 +692,6 @@ "time": "180 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, { diff --git a/data/json/recipes/recipe_companion.json b/data/json/recipes/recipe_companion.json index b2673b4ffc227..1cc3af351d608 100644 --- a/data/json/recipes/recipe_companion.json +++ b/data/json/recipes/recipe_companion.json @@ -26,7 +26,7 @@ "autolearn": false, "never_learn": true, "using": [ [ "forging_standard", 1 ], [ "steel_standard", 6 ] ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, { @@ -42,7 +42,7 @@ "autolearn": false, "never_learn": true, "using": [ [ "forging_standard", 1 ], [ "steel_standard", 8 ] ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ] ] }, { @@ -57,7 +57,7 @@ "time": "18 m", "autolearn": false, "never_learn": true, - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ], [ [ "forge", 5 ], [ "oxy_torch", 1 ] ] ], "components": [ [ [ "steel_chunk", 1 ], [ "scrap", 3 ] ] ] }, @@ -73,7 +73,7 @@ "time": "3 m", "autolearn": false, "never_learn": true, - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "forge", 10 ], [ "oxy_torch", 2 ] ] ], "components": [ [ [ "scrap", 1 ] ] ] }, @@ -89,7 +89,7 @@ "time": "12 m", "autolearn": false, "never_learn": true, - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ], [ [ "forge", 10 ], [ "oxy_torch", 2 ] ] ], "components": [ [ [ "scrap", 7 ] ] ] }, @@ -105,7 +105,7 @@ "time": "9 m", "autolearn": false, "never_learn": true, - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ], [ [ "forge", 10 ], [ "oxy_torch", 2 ] ] ], "components": [ [ [ "scrap", 3 ] ] ] }, diff --git a/data/json/recipes/recipe_deconstruction.json b/data/json/recipes/recipe_deconstruction.json index 0e14ccfde3a8e..c753932259642 100644 --- a/data/json/recipes/recipe_deconstruction.json +++ b/data/json/recipes/recipe_deconstruction.json @@ -554,6 +554,30 @@ "qualities": [ { "id": "CUT", "level": 1 } ], "components": [ [ [ "leather", 2 ] ], [ [ "string_6", 2 ] ] ] }, + { + "result": "battery_car", + "type": "uncraft", + "activity_level": "LIGHT_EXERCISE", + "time": "5 m", + "qualities": [ { "id": "CUT", "level": 1 } ], + "components": [ [ [ "chem_sulphuric_acid", 13 ] ], [ [ "lead", 2247 ] ], [ [ "plastic_chunk", 3 ] ] ] + }, + { + "result": "battery_motorbike", + "type": "uncraft", + "activity_level": "LIGHT_EXERCISE", + "time": "5 m", + "qualities": [ { "id": "CUT", "level": 1 } ], + "components": [ [ [ "chem_sulphuric_acid", 3 ] ], [ [ "lead", 499 ] ], [ [ "plastic_chunk", 2 ] ] ] + }, + { + "result": "battery_motorbike_small", + "type": "uncraft", + "activity_level": "LIGHT_EXERCISE", + "time": "5 m", + "qualities": [ { "id": "CUT", "level": 1 } ], + "components": [ [ [ "chem_sulphuric_acid", 1 ] ], [ [ "lead", 187 ] ], [ [ "plastic_chunk", 1 ] ] ] + }, { "result": "bindle", "type": "uncraft", @@ -688,6 +712,13 @@ "components": [ [ [ "paper", 1 ] ] ], "flags": [ "BLIND_EASY" ] }, + { + "result": "case_cigar", + "type": "uncraft", + "activity_level": "LIGHT_EXERCISE", + "time": "20 s", + "components": [ [ [ "leather", 1 ] ], [ [ "splinter", 1 ] ] ] + }, { "result": "broken_EMP_hack", "type": "uncraft", @@ -2184,8 +2215,8 @@ "result": "sheet", "type": "uncraft", "activity_level": "NO_EXERCISE", - "time": "1 s", - "components": [ [ [ "sheet_cotton_patchwork", 6 ] ] ], + "time": "8 s", + "components": [ [ [ "sheet_cotton_patchwork", 8 ] ] ], "flags": [ "BLIND_EASY" ] }, { @@ -4095,7 +4126,7 @@ "difficulty": 1, "time": "5 m", "qualities": [ { "id": "HAMMER", "level": 1 } ], - "components": [ [ [ "hickory_nut_unshelled", 1 ] ] ], + "components": [ [ [ "hickory_nut_shelled", 1 ] ] ], "flags": [ "BLIND_EASY" ] }, { @@ -4106,7 +4137,7 @@ "difficulty": 1, "time": "5 m", "qualities": [ { "id": "HAMMER", "level": 1 } ], - "components": [ [ [ "hazelnut_unshelled", 1 ] ] ], + "components": [ [ [ "hazelnut_shelled", 1 ] ] ], "flags": [ "BLIND_EASY" ] }, { @@ -4117,7 +4148,7 @@ "difficulty": 1, "time": "5 m", "qualities": [ { "id": "HAMMER", "level": 1 } ], - "components": [ [ [ "chestnut_unshelled", 1 ] ] ], + "components": [ [ [ "chestnut_shelled", 1 ] ] ], "flags": [ "BLIND_EASY" ] }, { @@ -4128,7 +4159,7 @@ "difficulty": 1, "time": "5 m", "qualities": [ { "id": "HAMMER", "level": 1 } ], - "components": [ [ [ "almond_unshelled", 1 ] ] ], + "components": [ [ [ "almond_shelled", 1 ] ] ], "flags": [ "BLIND_EASY" ] }, { @@ -4139,7 +4170,7 @@ "difficulty": 1, "time": "5 m", "qualities": [ { "id": "HAMMER", "level": 1 } ], - "components": [ [ [ "pistachio_unshelled", 1 ] ] ], + "components": [ [ [ "pistachio_shelled", 1 ] ] ], "flags": [ "BLIND_EASY" ] }, { @@ -4150,7 +4181,7 @@ "difficulty": 1, "time": "5 m", "qualities": [ { "id": "HAMMER", "level": 1 } ], - "components": [ [ [ "pecan_unshelled", 1 ] ] ], + "components": [ [ [ "pecan_shelled", 1 ] ] ], "flags": [ "BLIND_EASY" ] }, { @@ -4161,7 +4192,7 @@ "difficulty": 1, "time": "10 m", "qualities": [ { "id": "HAMMER", "level": 1 } ], - "components": [ [ [ "walnut_unshelled", 1 ] ] ], + "components": [ [ [ "walnut_shelled", 1 ] ] ], "flags": [ "BLIND_EASY" ] }, { @@ -4187,7 +4218,7 @@ "difficulty": 1, "time": "5 m", "qualities": [ { "id": "HAMMER", "level": 1 } ], - "components": [ [ [ "peanut_unshelled", 1 ] ] ], + "components": [ [ [ "peanut_shelled", 1 ] ] ], "flags": [ "BLIND_EASY" ] }, { diff --git a/data/json/recipes/recipe_food.json b/data/json/recipes/recipe_food.json index fa0ed9bac0b52..5ea14bbcd21a5 100644 --- a/data/json/recipes/recipe_food.json +++ b/data/json/recipes/recipe_food.json @@ -2114,7 +2114,7 @@ "autolearn": true, "batch_time_factors": [ 30, 1 ], "proficiencies": [ { "proficiency": "prof_food_prep" } ], - "components": [ [ [ "almond_unshelled", 2 ] ], [ [ "water_clean", 3 ] ] ] + "components": [ [ [ "almond_shelled", 2 ] ], [ [ "water_clean", 3 ] ] ] }, { "type": "recipe", @@ -2132,7 +2132,7 @@ "autolearn": true, "batch_time_factors": [ 80, 1 ], "proficiencies": [ { "proficiency": "prof_food_prep" } ], - "components": [ [ [ "almond_unshelled", 2 ] ], [ [ "water_clean", 3 ] ] ] + "components": [ [ [ "almond_shelled", 2 ] ], [ [ "water_clean", 3 ] ] ] }, { "type": "recipe", @@ -3526,7 +3526,7 @@ "batch_time_factors": [ 80, 1 ], "qualities": [ { "id": "COOK", "level": 1 } ], "tools": [ [ [ "surface_heat", 5, "LIST" ] ] ], - "components": [ [ [ "walnut_unshelled", 1 ] ] ] + "components": [ [ [ "walnut_shelled", 1 ] ] ] }, { "type": "recipe", @@ -3577,7 +3577,7 @@ "batch_time_factors": [ 80, 1 ], "qualities": [ { "id": "COOK", "level": 1 } ], "tools": [ [ [ "surface_heat", 5, "LIST" ] ] ], - "components": [ [ [ "pecan_unshelled", 1 ] ] ] + "components": [ [ [ "pecan_shelled", 1 ] ] ] }, { "type": "recipe", @@ -3594,7 +3594,7 @@ "batch_time_factors": [ 80, 1 ], "qualities": [ { "id": "COOK", "level": 1 } ], "tools": [ [ [ "surface_heat", 5, "LIST" ] ] ], - "components": [ [ [ "pistachio_unshelled", 1 ] ] ] + "components": [ [ [ "pistachio_shelled", 1 ] ] ] }, { "type": "recipe", @@ -3611,7 +3611,7 @@ "batch_time_factors": [ 80, 1 ], "qualities": [ { "id": "COOK", "level": 1 } ], "tools": [ [ [ "surface_heat", 5, "LIST" ] ] ], - "components": [ [ [ "almond_unshelled", 1 ] ] ] + "components": [ [ [ "almond_shelled", 1 ] ] ] }, { "type": "recipe", @@ -3628,7 +3628,7 @@ "batch_time_factors": [ 80, 1 ], "qualities": [ { "id": "COOK", "level": 1 } ], "tools": [ [ [ "surface_heat", 5, "LIST" ] ] ], - "components": [ [ [ "chestnut_unshelled", 1 ] ] ] + "components": [ [ [ "chestnut_shelled", 1 ] ] ] }, { "type": "recipe", @@ -3645,7 +3645,7 @@ "batch_time_factors": [ 80, 1 ], "qualities": [ { "id": "COOK", "level": 1 } ], "tools": [ [ [ "surface_heat", 5, "LIST" ] ] ], - "components": [ [ [ "hazelnut_unshelled", 1 ] ] ] + "components": [ [ [ "hazelnut_shelled", 1 ] ] ] }, { "type": "recipe", @@ -3679,7 +3679,7 @@ "batch_time_factors": [ 80, 1 ], "qualities": [ { "id": "COOK", "level": 1 } ], "tools": [ [ [ "surface_heat", 5, "LIST" ] ] ], - "components": [ [ [ "hickory_nut_unshelled", 1 ] ] ] + "components": [ [ [ "hickory_nut_shelled", 1 ] ] ] }, { "type": "recipe", @@ -3701,7 +3701,7 @@ "qualities": [ { "id": "COOK", "level": 3 }, { "id": "BOIL", "level": 2 } ], "tools": [ [ [ "surface_heat", 5, "LIST" ] ] ], "components": [ - [ [ "hickory_nut_unshelled", 4 ] ], + [ [ "hickory_nut_shelled", 4 ] ], [ [ "milk_standard_raw", 1, "LIST" ], [ "milk_powder", 1 ], [ "con_milk", 1 ] ], [ [ "honeycomb", 1 ], @@ -4819,6 +4819,7 @@ "time": "5 m", "batch_time_factors": [ 10, 3 ], "autolearn": true, + "book_learn": [ [ "vacuum_sealing", 1 ] ], "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 3 } ], "tools": [ [ [ "vac_sealer", 10 ], [ "makeshift_sealer", 20 ] ] ], "components": [ @@ -4841,6 +4842,7 @@ "time": "5 m", "batch_time_factors": [ 10, 3 ], "autolearn": true, + "book_learn": [ [ "vacuum_sealing", 1 ] ], "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 3 } ], "tools": [ [ [ "vac_sealer", 10 ], [ "makeshift_sealer", 20 ] ] ], "components": [ [ [ "bag_plastic", 1 ], [ "plastic_bag_vac", 1 ] ], [ [ "fish", 5 ] ], [ [ "salt_preservation", 5, "LIST" ] ] ] @@ -4859,6 +4861,7 @@ "time": "5 m", "batch_time_factors": [ 10, 3 ], "autolearn": true, + "book_learn": [ [ "vacuum_sealing", 1 ] ], "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 3 } ], "tools": [ [ [ "vac_sealer", 10 ], [ "makeshift_sealer", 20 ] ] ], "components": [ @@ -4881,6 +4884,7 @@ "time": "5 m", "batch_time_factors": [ 10, 3 ], "autolearn": true, + "book_learn": [ [ "vacuum_sealing", 1 ] ], "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 3 } ], "tools": [ [ [ "vac_sealer", 5 ], [ "makeshift_sealer", 10 ] ] ], "components": [ @@ -4925,11 +4929,12 @@ [ "wheat", 1 ], [ "buckwheat", 1 ], [ "barley", 1 ], - [ "acorns_cooked", 2 ], + [ "acorns_cooked", 10 ], [ "oats", 4 ], [ "starch", 1 ], [ "roasted_cattail_rhizome", 2 ], - [ "dry_rice", 5 ] + [ "dry_rice", 5 ], + [ "chestnut_roasted", 12 ] ] ] }, @@ -4953,10 +4958,11 @@ [ "wheat", 1 ], [ "buckwheat", 1 ], [ "barley", 1 ], - [ "acorns_cooked", 2 ], + [ "acorns_cooked", 10 ], [ "oats", 4 ], [ "starch", 1 ], - [ "dry_rice", 5 ] + [ "dry_rice", 5 ], + [ "chestnut_roasted", 12 ] ] ] }, @@ -6920,11 +6926,12 @@ [ "wheat", 1 ], [ "buckwheat", 1 ], [ "barley", 1 ], - [ "acorns_cooked", 2 ], + [ "acorns_cooked", 10 ], [ "oats", 4 ], [ "starch", 1 ], [ "roasted_cattail_rhizome", 2 ], - [ "dry_rice", 5 ] + [ "dry_rice", 5 ], + [ "chestnut_roasted", 12 ] ] ] }, @@ -7214,10 +7221,11 @@ [ "wheat", 1 ], [ "buckwheat", 1 ], [ "barley", 1 ], - [ "acorns_cooked", 2 ], + [ "acorns_cooked", 10 ], [ "oats", 4 ], [ "starch", 1 ], - [ "dry_rice", 5 ] + [ "dry_rice", 5 ], + [ "chestnut_roasted", 12 ] ] ] }, @@ -7303,7 +7311,7 @@ "qualities": [ { "id": "COOK", "level": 1 } ], "tools": [ [ [ "food_processor", 40 ] ] ], "components": [ - [ [ "peanut_unshelled", 3 ] ], + [ [ "peanut_shelled", 3 ] ], [ [ "sugar", 10 ], [ "artificial_sweetener", 10 ], [ "honey_bottled", 1 ], [ "honey_glassed", 1 ] ] ] }, @@ -7323,15 +7331,15 @@ "components": [ [ [ "pine_nuts", 5 ], - [ "pecan_unshelled", 5 ], + [ "pecan_shelled", 5 ], [ "cashews", 5 ], - [ "pistachio_unshelled", 5 ], - [ "almond_unshelled", 5 ], + [ "pistachio_shelled", 5 ], + [ "almond_shelled", 5 ], [ "beech_nuts", 5 ], - [ "hickory_nut_unshelled", 5 ], - [ "chestnut_unshelled", 5 ], - [ "hazelnut_unshelled", 5 ], - [ "walnut_unshelled", 5 ], + [ "hickory_nut_shelled", 5 ], + [ "chestnut_shelled", 5 ], + [ "hazelnut_shelled", 5 ], + [ "walnut_shelled", 5 ], [ "acorns", 5 ] ], [ @@ -8019,5 +8027,25 @@ "tools": [ [ [ "surface_heat", 2, "LIST" ] ] ], "charges": 1, "components": [ [ [ "meatball_raw", 1 ] ] ] + }, + { + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "result": "meat_fried", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_MEAT", + "skill_used": "cooking", + "time": "10 m", + "autolearn": true, + "difficulty": 1, + "batch_time_factors": [ 67, 5 ], + "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 2 } ], + "tools": [ [ [ "surface_heat", 8, "LIST" ] ] ], + "proficiencies": [ + { "proficiency": "prof_food_prep" }, + { "proficiency": "prof_knife_skills", "time_multiplier": 1.5 }, + { "proficiency": "prof_frying" } + ], + "components": [ [ [ "meat_red", 1, "LIST" ] ], [ [ "fry_oil", 1, "LIST" ] ] ] } ] diff --git a/data/json/recipes/recipe_medsandchemicals.json b/data/json/recipes/recipe_medsandchemicals.json index 81b82c994a9ee..57f7290736e0e 100644 --- a/data/json/recipes/recipe_medsandchemicals.json +++ b/data/json/recipes/recipe_medsandchemicals.json @@ -46,31 +46,6 @@ "tools": [ [ [ "surface_heat", 3, "LIST" ] ] ], "components": [ [ [ "water_clean", 1 ] ], [ [ "salt", 10 ] ] ] }, - { - "type": "recipe", - "activity_level": "LIGHT_EXERCISE", - "result": "chem_sulphuric_acid", - "id_suffix": "from batteries", - "category": "CC_CHEM", - "subcategory": "CSC_CHEM_CHEMICALS", - "skill_used": "electronics", - "skills_required": [ "mechanics", 1 ], - "difficulty": 2, - "time": "5 m", - "autolearn": true, - "qualities": [ { "id": "SCREW", "level": 1 } ], - "components": [ - [ - [ "light_minus_battery_cell", 20 ], - [ "light_battery_cell", 10 ], - [ "light_plus_battery_cell", 5 ], - [ "medium_battery_cell", 2 ], - [ "medium_plus_battery_cell", 2 ], - [ "heavy_battery_cell", 1 ], - [ "heavy_plus_battery_cell", 1 ] - ] - ] - }, { "type": "recipe", "activity_level": "LIGHT_EXERCISE", diff --git a/data/json/recipes/recipe_others.json b/data/json/recipes/recipe_others.json index c402793499d61..2d3ad860d19bc 100644 --- a/data/json/recipes/recipe_others.json +++ b/data/json/recipes/recipe_others.json @@ -612,7 +612,6 @@ "autolearn": true, "using": [ [ "blacksmithing_standard", 2 ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "components": [ [ [ "scrap", 1 ] ] ] }, { @@ -1114,7 +1113,6 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, { @@ -1133,7 +1131,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "swage", -1 ] ] ] }, { @@ -1395,7 +1393,7 @@ { "id": "SAW_M", "level": 1 }, { "id": "SCREW", "level": 1 }, { "id": "WRENCH", "level": 1 }, - { "id": "GLARE", "level": 2 } + { "id": "GLARE", "level": 1 } ], "tools": [ [ [ "welder", 100 ], [ "welder_crude", 150 ], [ "toolset", 150 ], [ "soldering_iron", 150 ] ] ], "components": [ [ [ "steel_chunk", 6 ], [ "scrap", 18 ] ], [ [ "pipe", 2 ] ] ] diff --git a/data/json/recipes/recipe_traps.json b/data/json/recipes/recipe_traps.json index fc1679f393206..897711c048dec 100644 --- a/data/json/recipes/recipe_traps.json +++ b/data/json/recipes/recipe_traps.json @@ -12,7 +12,6 @@ "autolearn": true, "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "swage", -1 ] ] ] }, { diff --git a/data/json/recipes/recipe_vehicle.json b/data/json/recipes/recipe_vehicle.json index 8969747eeb35a..6fc3b6e6fd97d 100644 --- a/data/json/recipes/recipe_vehicle.json +++ b/data/json/recipes/recipe_vehicle.json @@ -459,6 +459,21 @@ "qualities": [ { "id": "SCREW", "level": 1 }, { "id": "WRENCH", "level": 1 } ], "components": [ [ [ "large_space_heater", 1 ] ], [ [ "wire", 2 ] ] ] }, + { + "result": "mountable_heater_small", + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "category": "CC_OTHER", + "subcategory": "CSC_OTHER_PARTS", + "skill_used": "fabrication", + "skills_required": [ "mechanics", 2 ], + "difficulty": 2, + "time": "30 m", + "autolearn": true, + "using": [ [ "welding_standard", 15 ] ], + "qualities": [ { "id": "SCREW", "level": 1 }, { "id": "WRENCH", "level": 1 } ], + "components": [ [ [ "small_space_heater", 1 ] ], [ [ "wire", 2 ] ] ] + }, { "result": "mountable_cooler", "type": "recipe", @@ -892,7 +907,7 @@ "reversible": true, "autolearn": true, "using": [ [ "steel_standard", 20 ] ], - "qualities": [ { "id": "GLARE", "level": 2 } ], + "qualities": [ { "id": "GLARE", "level": 1 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ], [ [ "welder", 50 ], [ "welder_crude", 75 ], [ "toolset", 75 ], [ "forge", 50 ], [ "oxy_torch", 10 ] ] @@ -910,7 +925,7 @@ "proficiencies": [ { "proficiency": "prof_blacksmithing", "time_multiplier": 10.0 } ], "reversible": true, "autolearn": true, - "qualities": [ { "id": "GLARE", "level": 2 } ], + "qualities": [ { "id": "GLARE", "level": 1 } ], "using": [ [ "steel_standard", 100 ] ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ], @@ -1000,7 +1015,6 @@ "time": "3 h", "autolearn": true, "using": [ [ "blacksmithing_standard", 20 ], [ "steel_standard", 5 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ] ] }, { @@ -1017,7 +1031,7 @@ "//": "sawing it down doesn't teach anything useful", "autolearn": true, "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "GLARE", "level": 2 }, { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], + "qualities": [ { "id": "GLARE", "level": 1 }, { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "tools": [ [ [ "welder", 100 ], [ "welder_crude", 150 ], [ "toolset", 150 ], [ "forge", 100 ], [ "oxy_torch", 20 ] ] ], "components": [ [ [ "steel_lump", 8 ] ] ] }, @@ -1035,7 +1049,7 @@ "//": "sawing it down doesn't teach anything useful", "autolearn": true, "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "GLARE", "level": 2 }, { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], + "qualities": [ { "id": "GLARE", "level": 1 }, { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "tools": [ [ [ "welder", 50 ], [ "welder_crude", 75 ], [ "toolset", 75 ], [ "forge", 50 ], [ "oxy_torch", 10 ] ] ], "components": [ [ [ "steel_lump", 4 ] ] ] }, @@ -1052,7 +1066,7 @@ "reversible": true, "book_learn": [ [ "textbook_fabrication", 3 ], [ "welding_book", 3 ], [ "textbook_mechanics", 4 ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "GLARE", "level": 2 }, { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], + "qualities": [ { "id": "GLARE", "level": 1 }, { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "tools": [ [ [ "welder", 100 ], [ "welder_crude", 150 ], [ "toolset", 150 ], [ "forge", 100 ], [ "oxy_torch", 20 ] ] ], "components": [ [ [ "steel_lump", 8 ], [ "steel_plate", 1 ] ], [ [ "steel_chunk", 4 ], [ "scrap", 12 ], [ "spike", 4 ] ] ] }, @@ -1070,7 +1084,7 @@ "reversible": true, "book_learn": [ [ "textbook_fabrication", 5 ], [ "adv_chemistry", 6 ], [ "welding_book", 5 ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "GLARE", "level": 2 }, { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], + "qualities": [ { "id": "GLARE", "level": 1 }, { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "tools": [ [ [ "welder", 100 ], [ "welder_crude", 150 ], [ "toolset", 150 ], [ "forge", 200 ], [ "oxy_torch", 20 ] ] ], "components": [ [ [ "steel_lump", 24 ] ] ] }, diff --git a/data/json/recipes/tools/tool.json b/data/json/recipes/tools/tool.json index 2bc01e045a419..1b893a94378aa 100644 --- a/data/json/recipes/tools/tool.json +++ b/data/json/recipes/tools/tool.json @@ -51,7 +51,7 @@ { "proficiency": "prof_toolsmithing", "required": false, "time_multiplier": 1.5 }, { "proficiency": "prof_bladesmith", "required": false, "time_multiplier": 1.5 } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -96,7 +96,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ] ] }, @@ -290,7 +290,7 @@ } ], "using": [ [ "forging_standard", 4 ], [ "plastic_molding", 1 ] ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "hotcut", -1 ] ] ], "components": [ [ [ "plastic_chunk", 2 ] ], [ [ "steel_lump", 2 ] ] ] }, @@ -311,7 +311,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -341,7 +341,7 @@ "tools": [ [ [ "tongs", -1 ] ], [ [ "hotcut", -1 ] ] ], "using": [ [ "forging_standard", 1 ], [ "steel_tiny", 1 ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "GRIND", "level": 2 } ], "components": [ [ [ "2x4", 1 ], [ "stick", 1 ] ] ] }, { @@ -374,7 +374,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_plasticworking" } ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "hotcut", -1 ] ] ], "components": [ [ [ "scrap", 2 ] ] ] }, @@ -470,7 +470,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ] ] }, { @@ -521,7 +521,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 }, { "id": "WRENCH", "level": 1 } ], + "qualities": [ { "id": "GRIND", "level": 2 }, { "id": "WRENCH", "level": 1 } ], "tools": [ [ [ "swage", -1 ] ] ] }, { @@ -568,7 +568,7 @@ "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, - { "id": "CHISEL", "level": 3 }, + { "id": "GRIND", "level": 2 }, { "id": "SCREW", "level": 1 }, { "id": "WRENCH", "level": 2 }, { "id": "SAW_M", "level": 2 } @@ -714,7 +714,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ] + "qualities": [ { "id": "GRIND", "level": 2 } ] }, { "result": "makeshift_crowbar", @@ -1197,7 +1197,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "swage", -1 ] ] ] }, { diff --git a/data/json/recipes/tools/tools_electronic.json b/data/json/recipes/tools/tools_electronic.json index ce8a22f1390b6..d1dc285459ae8 100644 --- a/data/json/recipes/tools/tools_electronic.json +++ b/data/json/recipes/tools/tools_electronic.json @@ -73,7 +73,7 @@ } ], "using": [ [ "forging_standard", 4 ], [ "soldering_standard", 20 ], [ "plastic_molding", 1 ] ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ] ], "components": [ [ [ "plastic_chunk", 1 ] ], [ [ "steel_lump", 1 ] ], [ [ "e_scrap", 1 ] ], [ [ "motor_micro", 1 ] ] ] }, diff --git a/data/json/recipes/tools/tools_hand.json b/data/json/recipes/tools/tools_hand.json index 4edb7b076e91b..29a387f7d6a42 100644 --- a/data/json/recipes/tools/tools_hand.json +++ b/data/json/recipes/tools/tools_hand.json @@ -29,7 +29,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 }, { "id": "SAW_M", "level": 2 }, { "id": "CUT", "level": 1 } ], + "qualities": [ { "id": "SAW_M", "level": 2 }, { "id": "CUT", "level": 1 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "plastic_chunk", 2 ], [ "2x4", 1 ], [ "stick", 2 ] ] ] }, @@ -119,8 +119,7 @@ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } - ], - "qualities": [ { "id": "CHISEL", "level": 3 } ] + ] }, { "type": "recipe", @@ -227,7 +226,6 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -261,7 +259,6 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -302,7 +299,7 @@ "autolearn": true, "using": [ [ "forging_standard", 4 ] ], "book_learn": [ [ "textbook_tailor", 3 ], [ "manual_tailor", 3 ] ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" }, @@ -327,7 +324,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ] + "qualities": [ { "id": "GRIND", "level": 2 } ] }, { "type": "recipe", @@ -345,7 +342,6 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "components": [ [ [ "plastic_chunk", 1 ], [ "scrap", 1 ] ] ] }, { @@ -365,7 +361,6 @@ { "proficiency": "prof_toolsmithing" } ], "book_learn": [ [ "manual_mechanics", 3 ], [ "manual_fabrication", 3 ], [ "textbook_fabrication", 4 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "plastic_chunk", 1 ], [ "2x4", 1 ], [ "stick", 1 ] ] ] }, @@ -387,7 +382,7 @@ { "proficiency": "prof_toolsmithing" } ], "book_learn": [ [ "manual_mechanics", 4 ], [ "manual_fabrication", 4 ], [ "textbook_fabrication", 4 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ] + "qualities": [ { "id": "GRIND", "level": 2 } ] }, { "type": "recipe", @@ -406,7 +401,6 @@ { "proficiency": "prof_toolsmithing" } ], "book_learn": [ [ "manual_fabrication", 2 ], [ "textbook_fabrication", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "components": [ [ [ "2x4", 2 ] ] ] }, { @@ -426,7 +420,7 @@ { "proficiency": "prof_toolsmithing" } ], "book_learn": [ [ "manual_fabrication", 3 ], [ "textbook_fabrication", 4 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -446,7 +440,7 @@ { "proficiency": "prof_toolsmithing" } ], "book_learn": [ [ "manual_fabrication", 3 ], [ "textbook_fabrication", 4 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "components": [ [ [ "2x4", 2 ], [ "stick", 4 ] ] ] }, { @@ -467,7 +461,7 @@ { "proficiency": "prof_bladesmith" } ], "book_learn": [ [ "textbook_fabrication", 4 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "components": [ [ [ "2x4", 3 ], [ "stick", 6 ] ] ] }, { @@ -487,7 +481,6 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "components": [ [ [ "2x4", 2 ] ] ] }, { @@ -507,7 +500,6 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "components": [ [ [ "2x4", 1 ] ] ] }, { @@ -528,7 +520,6 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "components": [ [ [ "2x4", 1 ] ] ] }, { @@ -563,7 +554,6 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "components": [ [ [ "2x4", 1 ] ] ] }, { @@ -583,7 +573,6 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], "components": [ [ [ "2x4", 1 ] ] ] }, { @@ -601,7 +590,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ] ] }, @@ -620,7 +609,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "components": [ [ [ "filament", 100, "LIST" ] ], [ [ "rag", 2 ], [ "felt_patch", 2 ], [ "leather", 2 ], [ "fur", 2 ] ] ] }, { @@ -638,7 +627,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -664,7 +653,7 @@ } ], "using": [ [ "blacksmithing_standard", 2 ], [ "steel_tiny", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "plastic_chunk", 2 ], [ "scrap", 2 ] ] ] }, @@ -683,7 +672,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 16 ], [ "steel_standard", 4 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "components": [ [ [ "2x4", 2 ], [ "stick", 4 ] ] ] }, { @@ -701,7 +690,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 24 ], [ "steel_standard", 6 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "drift", -1 ] ] ], "components": [ [ [ "2x4", 2 ], [ "stick", 4 ] ] ] }, @@ -716,7 +705,7 @@ "time": "4 h 20 m", "book_learn": [ [ "manual_knives", 3 ], [ "recipe_melee", 5 ] ], "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "proficiencies": [ { "proficiency": "prof_plasticworking", "required": false, "time_multiplier": 1.1, "learning_time_multiplier": 0.1 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "plastic_chunk", 1 ] ] ] @@ -736,7 +725,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 2 ], [ "steel_tiny", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -755,7 +744,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "fur", 1 ], [ "leather", 1 ] ] ] }, @@ -774,7 +763,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "fur", 1 ], [ "leather", 1 ] ] ] }, @@ -794,7 +783,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "scrap", 2 ] ] ] }, @@ -816,7 +805,7 @@ { "proficiency": "prof_bladesmith" }, { "proficiency": "prof_carving" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "drift", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ] ] }, @@ -837,7 +826,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -857,7 +846,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -877,7 +866,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_bladesmith" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -897,7 +886,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 1 ], [ "steel_tiny", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -917,7 +906,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 2 ], [ "steel_tiny", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -944,7 +933,7 @@ } ], "using": [ [ "blacksmithing_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "scrap", 4 ] ], [ [ "plastic_chunk", 1 ] ] ] }, @@ -966,7 +955,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "tools": [ [ [ "tongs", -1 ], [ "drift", -1 ] ] ], "components": [ [ [ "2x4", 2 ], [ "stick", 4 ] ] ] }, @@ -987,7 +976,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "tools": [ [ [ "tongs", -1 ] ] ] }, { @@ -1007,7 +996,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "tools": [ [ [ "tongs", -1 ] ] ] }, { @@ -1027,7 +1016,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 } ], "tools": [ [ [ "tongs", -1 ] ] ] }, { @@ -1047,7 +1036,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_toolsmithing" } ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "tongs", -1 ] ] ], "components": [ [ [ "steel_lump", 1 ], [ "steel_chunk", 4 ], [ "scrap", 20 ] ], @@ -1081,7 +1070,7 @@ "reversible": true, "autolearn": true, "using": [ [ "forging_standard", 8 ] ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "tongs", -1 ] ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, @@ -1118,7 +1107,7 @@ "reversible": true, "autolearn": true, "using": [ [ "forging_standard", 8 ] ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER_FINE", "level": 1 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER_FINE", "level": 1 }, { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "tongs", -1 ] ] ], "proficiencies": [ { "proficiency": "prof_metalworking" }, @@ -1181,5 +1170,88 @@ "time": "15 m", "autolearn": true, "components": [ [ [ "material_sand", 5 ] ], [ [ "2x4", 8 ], [ "stick", 8 ] ], [ [ "nail", 8 ], [ "superglue", 4 ] ] ] + }, + { + "type": "recipe", + "activity_level": "BRISK_EXERCISE", + "result": "stone_polishing", + "category": "CC_OTHER", + "subcategory": "CSC_OTHER_TOOLS", + "skill_used": "fabrication", + "difficulty": 2, + "time": "20 h", + "autolearn": true, + "tools": [ [ [ "rock", -1 ] ] ], + "components": [ + [ [ "material_sand", 5 ], [ "material_gravel", 5 ] ], + [ [ "rock_large", 1 ] ], + [ [ "water", 1 ], [ "water_clean", 1 ], [ "water_sewage", 1 ], [ "salt_water", 1 ], [ "saline", 5 ] ] + ], + "proficiencies": [ { "proficiency": "prof_knapping" }, { "proficiency": "prof_knapping_speed" } ] + }, + { + "type": "recipe", + "activity_level": "MODERATE_EXERCISE", + "result": "pedal_grindstone", + "category": "CC_OTHER", + "subcategory": "CSC_OTHER_TOOLS", + "skill_used": "fabrication", + "skills_required": [ "mechanics", 2 ], + "difficulty": 5, + "time": "1 h", + "autolearn": true, + "book_learn": [ + [ "textbook_fabrication", 3 ], + [ "textbook_weapeast", 4 ], + [ "textbook_weapwest", 4 ], + [ "textbook_armeast", 4 ], + [ "textbook_armwest", 4 ], + [ "manual_mechanics", 3 ] + ], + "proficiencies": [ + { "proficiency": "prof_knapping" }, + { "proficiency": "prof_knapping_speed" }, + { "proficiency": "prof_metalworking" }, + { "proficiency": "prof_blacksmithing" } + ], + "qualities": [ + { "id": "HAMMER", "level": 1 }, + { "id": "SAW_W", "level": 1 }, + { "id": "DRILL_ROCK", "level": 1 }, + { "id": "CHISEL", "level": 3 } + ], + "components": [ + [ [ "stick", 6 ], [ "2x4", 6 ], [ "xlframe", 1 ], [ "frame_wood", 1 ] ], + [ [ "rock_large", 4 ] ], + [ [ "foot_crank", 1 ] ], + [ [ "rope_6", 2 ], [ "rope_30", 1 ] ], + [ [ "water", 1 ], [ "water_clean", 1 ], [ "water_sewage", 1 ], [ "salt_water", 1 ], [ "saline", 5 ] ], + [ [ "material_sand", 2 ], [ "material_gravel", 2 ] ] + ] + }, + { + "type": "recipe", + "activity_level": "BRISK_EXERCISE", + "result": "scraper_steel", + "category": "CC_OTHER", + "subcategory": "CSC_OTHER_TOOLS", + "skill_used": "fabrication", + "difficulty": 4, + "time": "5 h", + "autolearn": true, + "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], + "book_learn": [ + [ "textbook_fabrication", 2 ], + [ "textbook_weapeast", 3 ], + [ "textbook_weapwest", 3 ], + [ "textbook_armeast", 3 ], + [ "textbook_armwest", 3 ] + ], + "proficiencies": [ + { "proficiency": "prof_metalworking" }, + { "proficiency": "prof_blacksmithing" }, + { "proficiency": "prof_toolsmithing" } + ], + "components": [ [ [ "2x4", 2 ], [ "stick", 2 ] ] ] } ] diff --git a/data/json/recipes/weapon/bashing.json b/data/json/recipes/weapon/bashing.json index b19e4b091fc1b..0d68ef3339ef2 100644 --- a/data/json/recipes/weapon/bashing.json +++ b/data/json/recipes/weapon/bashing.json @@ -119,7 +119,7 @@ "time": "7 h", "book_learn": [ [ "textbook_weapwest", 6 ] ], "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" }, @@ -146,7 +146,7 @@ { "proficiency": "prof_toolsmithing" } ], "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "drift", -1 ] ] ], "components": [ [ [ "stick_long", 1 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -276,7 +276,7 @@ "autolearn": true, "book_learn": [ [ "recipe_melee", 2 ] ], "using": [ [ "blacksmithing_standard", 4 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "drift", -1 ] ] ], "components": [ [ [ "steel_chunk", 1 ], [ "scrap", 5 ] ] ] }, @@ -401,7 +401,7 @@ { "proficiency": "prof_carving", "fail_multiplier": 1 } ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "drift", -1 ] ] ], "components": [ [ [ "scrap", 24 ] ], [ [ "2x4", 1 ], [ "stick", 2 ] ] ] }, @@ -450,7 +450,7 @@ { "proficiency": "prof_carving", "fail_multiplier": 1 }, { "proficiency": "prof_leatherworking_basic", "fail_multiplier": 1 } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "components": [ [ [ "2x4", 3 ], [ "stick", 6 ] ], [ [ "fur", 3 ], [ "leather", 3 ] ] ] }, { @@ -525,7 +525,7 @@ { "proficiency": "prof_carving", "fail_multiplier": 1 }, { "proficiency": "prof_leatherworking_basic", "fail_multiplier": 1 } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "swage", -1 ] ] ], "components": [ [ [ "2x4", 3 ], [ "stick", 6 ] ], [ [ "fur", 3 ], [ "leather", 3 ] ] ] }, diff --git a/data/json/recipes/weapon/cutting.json b/data/json/recipes/weapon/cutting.json index a5bb47b18a931..8502e1e87be26 100644 --- a/data/json/recipes/weapon/cutting.json +++ b/data/json/recipes/weapon/cutting.json @@ -16,7 +16,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "forging_standard", 2 ], [ "steel_standard", 2 ] ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "tongs", -1 ] ], [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -127,7 +127,7 @@ { "proficiency": "prof_carving", "fail_multiplier": 1 } ], "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ], [ "drift", -1 ] ] ], "components": [ [ [ "stick_long", 1 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -203,7 +203,7 @@ { "proficiency": "prof_carving", "fail_multiplier": 1 } ], "using": [ [ "blacksmithing_standard", 24 ], [ "steel_standard", 6 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ], [ "drift", -1 ] ] ], "components": [ [ [ "stick_long", 1 ] ] ] }, @@ -272,7 +272,7 @@ ], "book_learn": [ [ "welding_book", 7 ], [ "recipe_melee", 5 ] ], "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "plastic_chunk", 4 ] ] ] }, @@ -313,7 +313,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "plastic_chunk", 2 ] ] ] }, @@ -334,7 +334,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.5, "fail_multiplier": 1 } ], "using": [ [ "blacksmithing_standard", 20 ], [ "steel_standard", 5 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "//": "basically 2.5x the resources of a single machete to cover the fact that it's two weapons, each with a hand guard", "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 2 ], [ "stick", 4 ] ], [ [ "fur", 4 ], [ "leather", 4 ] ] ] @@ -382,7 +382,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 1 ], [ "leather", 1 ] ] ] }, @@ -403,7 +403,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 1 ], [ "leather", 1 ] ] ] }, @@ -424,7 +424,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 1 ], [ "leather", 1 ] ] ] }, @@ -466,7 +466,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ], [ "drift", -1 ] ] ], "components": [ [ [ "2x4", 2 ], [ "stick", 4 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -487,7 +487,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "filament", 100, "LIST" ] ], [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 1 ], [ "leather", 1 ] ] ] }, @@ -508,7 +508,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 1 ], [ "leather", 1 ] ] ] }, @@ -529,7 +529,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 16 ], [ "steel_standard", 4 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 1 ], [ "leather", 1 ] ] ] }, @@ -550,7 +550,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 16 ], [ "steel_standard", 4 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 1 ], [ "leather", 1 ] ] ] }, @@ -571,7 +571,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 16 ], [ "steel_standard", 4 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 2 ], [ "stick", 4 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -592,7 +592,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -613,7 +613,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 2 ], [ "stick", 4 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -634,7 +634,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 20 ], [ "steel_standard", 5 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 3 ], [ "stick", 6 ] ], [ [ "fur", 3 ], [ "leather", 3 ] ] ] }, @@ -654,7 +654,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_bladesmith" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -673,7 +673,7 @@ { "proficiency": "prof_blacksmithing" }, { "proficiency": "prof_bladesmith" } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "q_staff", 1 ] ] ] }, @@ -708,7 +708,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.5, "fail_multiplier": 1 } ], "using": [ [ "blacksmithing_standard", 12 ], [ "steel_standard", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ], [ "drift", -1 ] ] ], "components": [ [ [ "stick_long", 1 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -729,7 +729,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.5, "fail_multiplier": 1 } ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "stick_long", 1 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -750,7 +750,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.5, "fail_multiplier": 1 } ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "stick_long", 1 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -772,7 +772,7 @@ { "proficiency": "prof_bladesmith" }, { "proficiency": "prof_carving", "time_multiplier": 1.5, "fail_multiplier": 1 } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "katana", 1 ], [ "wakizashi", 1 ] ], [ [ "stick_long", 1 ] ] ] }, diff --git a/data/json/recipes/weapon/explosive.json b/data/json/recipes/weapon/explosive.json index 56cf50febd23a..a2219f1188b26 100644 --- a/data/json/recipes/weapon/explosive.json +++ b/data/json/recipes/weapon/explosive.json @@ -194,7 +194,7 @@ "time": "12 m", "reversible": true, "autolearn": true, - "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "GLARE", "level": 2 } ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "GLARE", "level": 1 } ], "tools": [ [ [ "welder", 20 ], [ "welder_crude", 30 ], [ "toolset", 30 ], [ "soldering_iron", 30 ] ] ], "components": [ [ [ "metal_tank_little", 1 ] ], [ [ "nail", 200 ], [ "scrap", 16 ] ], [ [ "fuse", 1 ] ], [ [ "dynamite", 1 ] ] ] }, diff --git a/data/json/recipes/weapon/piercing.json b/data/json/recipes/weapon/piercing.json index 107cd7d7675a8..7eb86a8b27b83 100644 --- a/data/json/recipes/weapon/piercing.json +++ b/data/json/recipes/weapon/piercing.json @@ -17,7 +17,7 @@ { "proficiency": "prof_bladesmith" }, { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ] ] }, @@ -39,7 +39,7 @@ { "proficiency": "prof_bladesmith" }, { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ] ] }, @@ -61,7 +61,7 @@ { "proficiency": "prof_bladesmith" }, { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "sheet_metal_small", 1 ] ] ] }, @@ -81,7 +81,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 2 ], [ "steel_tiny", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -101,7 +101,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 2 ], [ "steel_tiny", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ] ] }, @@ -122,7 +122,7 @@ { "proficiency": "prof_toolsmithing" }, { "proficiency": "prof_carving", "time_multiplier": 1.5, "fail_multiplier": 1 } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "stick_long", 1 ] ] ] }, @@ -143,7 +143,7 @@ { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } ], "using": [ [ "blacksmithing_standard", 3 ], [ "steel_tiny", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ] ] }, @@ -164,7 +164,7 @@ { "proficiency": "prof_bladesmith" }, { "proficiency": "prof_carving", "time_multiplier": 1.5, "fail_multiplier": 1 } ], - "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 3 }, { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "tongs", -1 ] ] ], "components": [ [ [ "stick_long", 1 ] ] ] }, @@ -317,7 +317,7 @@ { "proficiency": "prof_carving", "fail_multiplier": 1 } ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "long_pole", 1 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -337,7 +337,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -357,7 +357,7 @@ { "proficiency": "prof_carving", "fail_multiplier": 1 } ], "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "filament", 100, "LIST" ] ], [ [ "stick_long", 1 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -373,7 +373,7 @@ "time": "20 m", "autolearn": true, "using": [ [ "blacksmithing_standard", 5 ] ], - "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "GRIND", "level": 2 } ], "proficiencies": [ { "proficiency": "prof_metalworking" }, { "proficiency": "prof_blacksmithing" } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "blade", 1 ] ], [ [ "spike", 1 ] ], [ [ "pipe", 2 ] ], [ [ "duct_tape", 100 ] ] ] @@ -430,7 +430,7 @@ { "proficiency": "prof_bladesmith" }, { "proficiency": "prof_leatherworking_basic", "fail_multiplier": 1 } ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "fur", 1 ], [ "leather", 1 ] ] ] }, @@ -614,7 +614,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "components": [ [ [ "javelin", 1 ] ], [ [ "scrap", 1 ] ] ] }, { @@ -747,7 +747,7 @@ ], "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], "book_learn": [ [ "manual_knives", 4 ], [ "recipe_melee", 5 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -767,7 +767,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 1 ] ] ] }, @@ -794,7 +794,7 @@ } ], "using": [ [ "blacksmithing_standard", 3 ], [ "steel_tiny", 3 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "plastic_chunk", 1 ] ] ] }, @@ -815,7 +815,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -859,7 +859,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_standard", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, @@ -987,7 +987,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 4 ], [ "steel_standard", 1 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ], "components": [ [ [ "2x4", 1 ], [ "stick", 1 ] ], [ [ "fur", 2 ], [ "leather", 2 ] ] ] }, diff --git a/data/json/recipes/weapon/ranged.json b/data/json/recipes/weapon/ranged.json index 10bd55cfa0b74..c6cbea6c1ce8b 100644 --- a/data/json/recipes/weapon/ranged.json +++ b/data/json/recipes/weapon/ranged.json @@ -1148,7 +1148,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 8 ], [ "steel_tiny", 2 ] ], - "qualities": [ { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "GRIND", "level": 2 } ], "tools": [ [ [ "hotcut", -1 ] ] ] }, { @@ -1168,7 +1168,7 @@ { "proficiency": "prof_bladesmith" } ], "using": [ [ "blacksmithing_standard", 3 ], [ "steel_tiny", 3 ] ], - "qualities": [ { "id": "CUT", "level": 1 }, { "id": "CHISEL", "level": 3 } ], + "qualities": [ { "id": "CUT", "level": 1 }, { "id": "GRIND", "level": 2 } ], "components": [ [ [ "2x4", 1 ], [ "stick", 1 ] ] ] }, { diff --git a/data/json/regional_map_settings.json b/data/json/regional_map_settings.json index aac26f5db12cf..b24cac12a187a 100644 --- a/data/json/regional_map_settings.json +++ b/data/json/regional_map_settings.json @@ -1028,7 +1028,8 @@ "lightning", "flurries", "snowing", - "snowstorm" + "snowstorm", + "portal_storm" ] }, "overmap_feature_flag_settings": { "clear_blacklist": false, "blacklist": [ ], "clear_whitelist": false, "whitelist": [ ] } diff --git a/data/json/requirements/cooking_components.json b/data/json/requirements/cooking_components.json index 33ec492e1c1b7..d3cbd241cb366 100644 --- a/data/json/requirements/cooking_components.json +++ b/data/json/requirements/cooking_components.json @@ -314,7 +314,8 @@ [ "dry_meat", 1 ], [ "jerky", 1 ], [ "meat_smoked", 1 ], - [ "meat_salted", 1 ] + [ "meat_salted", 1 ], + [ "meat_fried", 1 ] ] ] }, @@ -356,7 +357,8 @@ [ "meat_aspic", 1 ], [ "sausage", 1 ], [ "sausage_cooked", 1 ], - [ "bratwurst_sausage", 1 ] + [ "bratwurst_sausage", 1 ], + [ "meat_fried", 1 ] ] ] }, diff --git a/data/json/requirements/toolsets.json b/data/json/requirements/toolsets.json index 38c5167edd0cb..51ca023eed914 100644 --- a/data/json/requirements/toolsets.json +++ b/data/json/requirements/toolsets.json @@ -67,7 +67,7 @@ "id": "welding_standard", "type": "requirement", "//": "Crafting or repair of steel items or installation of vehicle parts", - "qualities": [ { "id": "GLARE", "level": 2 } ], + "qualities": [ { "id": "GLARE", "level": 1 } ], "tools": [ [ [ "welder", 10 ], [ "welder_crude", 15 ], [ "toolset", 15 ], [ "oxy_torch", 2 ] ] ] }, { @@ -183,7 +183,7 @@ "id": "metal_removal_standard", "type": "requirement", "//": "Tools for removing metal / rebar", - "qualities": [ { "id": "SAW_M", "level": 2 }, { "id": "GLARE", "level": 2 }, { "id": "PRY", "level": 3 } ], + "qualities": [ { "id": "SAW_M", "level": 2 }, { "id": "GLARE", "level": 1 }, { "id": "PRY", "level": 3 } ], "tools": [ [ [ "angle_grinder", 200 ], [ "oxy_torch", 20 ] ] ] }, { diff --git a/data/json/requirements/vehicle.json b/data/json/requirements/vehicle.json index 47f8c0b920f2c..3dd3c3eae6c67 100644 --- a/data/json/requirements/vehicle.json +++ b/data/json/requirements/vehicle.json @@ -3,7 +3,7 @@ "id": "vehicle_fasten", "type": "requirement", "//": "Compatible with legacy flag TOOL_WRENCH or when installing wheels", - "qualities": [ { "id": "WHEEL_FAST", "level": 1 } ] + "tools": [ [ [ "tire_iron", -1 ], [ "wrench_large", -1 ], [ "cordless_impact_wrench", 100 ] ] ] }, { "id": "vehicle_wrench_1", diff --git a/data/json/scenarios.json b/data/json/scenarios.json index 3286c8961923f..adaad18f3bbb8 100644 --- a/data/json/scenarios.json +++ b/data/json/scenarios.json @@ -657,5 +657,54 @@ "start_name": "Crash Site", "map_extra": "mx_mayhem", "flags": [ "CHALLENGE", "HELI_CRASH", "LONE_START" ] + }, + { + "type": "scenario", + "id": "strong_portal_storm", + "name": "Powerful portal storm", + "points": -3, + "description": "A powerful portal storm is happening and you need to find shelter.", + "flags": [ "CHALLENGE", "LONE_START" ], + "start_name": "Field", + "allowed_locs": [ "sloc_field" ], + "eoc": [ "scenario_strong_portal_storm" ] + }, + { + "type": "scenario", + "id": "strong_portal_storm_base", + "name": "Weakened reality", + "points": -4, + "description": "You've managed to get to a shelter, but reality has grown weaker than normal and portal storms will be quite strong.", + "flags": [ "CHALLENGE", "LONE_START" ], + "start_name": "Evac Shelter", + "allowed_locs": [ "sloc_shelter_a", "sloc_shelter_b", "sloc_shelter_c" ], + "eoc": [ "scenario_strong_portal_storm_base" ] + }, + { + "type": "scenario", + "id": "Mansion", + "name": "Mansion Holdout", + "points": 1, + "description": "You were living the high life when the world ended, surrounded by riches and extravagant food every day, but the cataclysm struck, and now you have to fight your way out or become one with the remains of the staff.", + "allowed_locs": [ "sloc_mansion_entrance", "sloc_mansion" ], + "start_name": "Mansion", + "surround_groups": [ [ "GROUP_MANSION_START", 100.0 ] ], + "flags": [ "CHALLENGE", "LONE_START" ], + "professions": [ + "maid", + "frat", + "lost_sub", + "lawyer", + "politician", + "dancer", + "spouse", + "musician", + "chef", + "groundskeeper", + "homemaker", + "mafia_boss", + "major-general" + ], + "missions": [ "MISSION_MANSION_START" ] } ] diff --git a/data/json/snippets/effect_on_conditions.json b/data/json/snippets/effect_on_conditions.json index adeef363b97a6..28fa6f7ecca7d 100644 --- a/data/json/snippets/effect_on_conditions.json +++ b/data/json/snippets/effect_on_conditions.json @@ -1,7 +1,7 @@ [ { "type": "snippet", - "category": "NIGHT_MESSAGES_1", + "category": "PORTAL_STORM_NIGHT_MESSAGES_1", "text": [ "You see what seems to be a new constellation in the sky. The stars are quite dense and are precisely aligned in several regular polyhedrons next to each other.", "You see what seems to be a new constellation in the sky. The stars are in a precise spiral, with the central star constantly shifting color.", @@ -13,7 +13,7 @@ }, { "type": "snippet", - "category": "NIGHT_MESSAGES_2", + "category": "PORTAL_STORM_NIGHT_MESSAGES_2", "text": [ "You see what seems to be a new constellation in the sky. It changes shape as you look from a triangle to a pentagon.", "You see what seems to be a new constellation in the sky, in the shape of a hexagon. It's easy to pick out - there are glowing lines between the stars.", @@ -25,7 +25,7 @@ }, { "type": "snippet", - "category": "NIGHT_MESSAGES_3", + "category": "PORTAL_STORM_NIGHT_MESSAGES_3", "text": [ "You see a once-familiar constellation and watch as several of its stars move.", "You see what seems to be a new constellation in the sky. It reminds you of a serpent - it moves like one.", @@ -37,6 +37,93 @@ "As you look at the stars, a broad swath of them are plunged into darkness, then come back to life in ragged succession." ] }, + { + "type": "snippet", + "category": "PORTAL_STORM_DAY_MESSAGES_1", + "text": [ + "For a second you see what looks like an island in the sky.", + "For a second the sun turns blood red and seems to be dripping something.", + "For a moment you see what seem like buildings the size of mountains in the distance.", + "For an instant you are in a crowd of partially transparent people. They take no notice of you.", + "You see a small airplane flying low in the sky but it's flying backwards and has a flag you don't know on it.", + "All the shadows you can see rotate as if the sun was moving." + ] + }, + { + "type": "snippet", + "category": "PORTAL_STORM_DAY_MESSAGES_2", + "text": [ + "For a second you see what looks like an island chain in the sky.", + "For a second the sun turns dark, almost as if it was a giant eye blinking.", + "For a moment you see what seem like insects the size of mountains in the distance.", + "For an instant you are in a crowd of partially transparent people. They all look at you.", + "You see a large airplane flying low in the sky but it's flying backwards and has a color inverted version of your flag on it.", + "All the shadows you can see change shape and color beginning to resemble human like figures." + ] + }, + { + "type": "snippet", + "category": "PORTAL_STORM_DAY_MESSAGES_3", + "text": [ + "For a second you see what looks like a city in the sky.", + "For a second the sun changes course to the north and speeds up.", + "For a moment you see what seem like humans the size of mountains in the distance.", + "For an instant you are in a crowd of partially transparent people. They all point at you and scream in a language, human vocal cords should not be able to speak.", + "You see a large airplane flying low in the sky but it's flying backwards. A parachuter appears near it and seemingly falls up into the plane while the figure struggles.", + "All the shadows you can see change shape and color beginning to resemble figures with far too many limbs beckoning to you to come towards them." + ] + }, + { + "type": "snippet", + "category": "PORTAL_STORM_MESSAGES_1", + "text": [ + "You smell a harsh chemical odor you can't quite place.", + "Your hair stands on end as a faint electrical tingle washes over you.", + "A giant hole opens in the sky and several clouds vanish into it.", + "A giant hole opens in the sky and several dark clouds emerge from it.", + "For a split second, the world grows hazy as if there were other shapes laid on top.", + "For a moment a hole in reality opens and you can see your own back.", + "For a moment all colors grow dull.", + "For a moment all distances seem to shrink.", + "A short figure quickly fades in and out of existence too fast to see its features." + ] + }, + { + "type": "snippet", + "category": "PORTAL_STORM_MESSAGES_2", + "text": [ + "You smell an entirely new smell, like nothing you have smelled before. You can't decide if it is good or bad.", + "Your hair stands on end as an electrical tingle washes over you.", + "A giant hole opens in the sky and several neon clouds emerge from it.", + "A giant hole that looks like an eye opens in the sky, then closes as if blinking.", + "For a split second, the world is overlaid with a vast, empty void.", + "For a split second, the world is overlaid with a tiny, featureless, circular room.", + "For a split second, the world is overlaid with a vast alien landscape with building-sized plant-like shapes all around you", + "For a split second the world is overlaid with an empty and ruined city, though built to a vastly different scale than those on earth.", + "For a moment a hole in reality opens and you can see an almost perfect copy of yourself.", + "For a moment all colors invert.", + "For a moment all distances seem to double.", + "A tall figure quickly fades in and out of existence leaving you with a vague impression of malice." + ] + }, + { + "type": "snippet", + "category": "PORTAL_STORM_MESSAGES_3", + "text": [ + "You smell an entirely new smell, like nothing you have smelled before. It makes you gag.", + "Your hair stands on end as a sharp electrical current washes over you.", + "A jagged hole opens in the sky and a vast cloud in the shape of an asymetrical person emerges.", + "A jagged hole that resembles an eye opens in the sky, then stares at you.", + "For a split second, the world vanishes and you are in a vast, empty void.", + "For a split second, the world vanishes and you are in a tiny, featureless, circular room.", + "For a split second, the world vanishes and you are in a vast alien landscape with building-sized plant-like shapes all around you", + "For a split second the world vanishes and you are in an empty and ruined city, though built to a vastly different scale than those on earth.", + "For a moment a hole in reality opens and you can see a leering idealized copy of yourself.", + "For a moment all colors flow to form jagged shapes.", + "For a moment all distances seem to vanish, as if everything was one. It is claustrophobic.", + "A tall figure quickly fades in and out of existence staring and pointing at you the whole time." + ] + }, { "type": "snippet", "category": "", diff --git a/data/json/snippets/fliers.json b/data/json/snippets/fliers.json index 7ba1fe8791fb2..4b23e5118dbe5 100644 --- a/data/json/snippets/fliers.json +++ b/data/json/snippets/fliers.json @@ -269,15 +269,15 @@ }, { "id": "flier_67", - "text": "BIRDHOUSE MONTHLY… Which wood would a woodpecker prefer? This month we discuss hardwood versus soft woods, whether to lacquer, oil or paint, and which type of nails you should use!" + "text": "BIRDHOUSE MONTHLY…. Which wood would a woodpecker prefer? This month we discuss hardwood versus soft woods, whether to lacquer, oil or paint, and which type of nails you should use!" }, { "id": "flier_68", - "text": "FEELING BLUE? Try \"Greens\" for Magazines! Your local Supermarket! Nothing cheers you up like a good magazine… Unless it's JUNK FOOD! Or why not buy an MP3 PLAYER or a GAME CONSOLE? Chase those Blues away at GREENS Supermarket" + "text": "FEELING BLUE? Try \"Greens\" for Magazines! Your local Supermarket! Nothing cheers you up like a good magazine… unless it's JUNK FOOD! Or why not buy an MP3 PLAYER or a GAME CONSOLE? Chase those Blues away at GREENS Supermarket" }, { "id": "flier_69", - "text": "…What do you know about surviving in the Wilderness? If you can't make a snare you don't know TRAP! Hunt down a copy of TRAPPERS' LIFE and learn about wildlife!… And how to kill it. Classic BEAR TRAP returns in this issue!" + "text": "…What do you know about surviving in the Wilderness? If you can't make a snare you don't know TRAP! Hunt down a copy of TRAPPERS' LIFE and learn about wildlife!…. And how to kill it. Classic BEAR TRAP returns in this issue!" }, { "id": "flier_70", @@ -292,11 +292,11 @@ }, { "id": "flier_72", - "text": "…What do you know about surviving in the Wilderness? If you can't make a snare you don't know TRAP! Hunt down a copy of TRAPPERS' LIFE and learn about wildlife!… And how to kill it. This week, a CROSSBOW TRAP!" + "text": "…What do you know about surviving in the Wilderness? If you can't make a snare you don't know TRAP! Hunt down a copy of TRAPPERS' LIFE and learn about wildlife!…. And how to kill it. This week, a CROSSBOW TRAP!" }, { "id": "flier_73", - "text": "BIRDHOUSE MONTHLY… This month we look at some Dutch innovations in birdhouse design, and compare with the often confused Scandinavian Birdhouse design. Our article on sheet metal birdhouses will have you riveted!" + "text": "BIRDHOUSE MONTHLY…. This month we look at some Dutch innovations in birdhouse design, and compare with the often confused Scandinavian Birdhouse design. Our article on sheet metal birdhouses will have you riveted!" }, { "id": "flier_74", diff --git a/data/json/snippets/npc_quips.json b/data/json/snippets/npc_quips.json new file mode 100644 index 0000000000000..a8d8ea0c7653f --- /dev/null +++ b/data/json/snippets/npc_quips.json @@ -0,0 +1,22 @@ +[ + { + "type": "snippet", + "category": "npc_socialize", + "text": [ + "So do you like cats or dogs?", + "It's nice to know that zeds don't feel pain.", + "Wherever we end up, at least we're still alive, right?", + "Somehow, I don't think I'll be going back to my old job anytime soon…", + "Geez, this is nothing like those Hollywood zombie films!", + "Do you ever think about the ethics of killing zombies?", + "So you wet your toothbrush AFTER you apply toothpaste? That's so weird.", + "What do you think the president is doing right now?", + "What do you like to listen to? Personally I'm into bass-heavy post-glam speed polka.", + "Don't tell anyone else, but sometimes I like to sleep holding my teddy bear.", + "Sometimes I see weird shit in the sky at night.", + "I used to have a cat. I really miss Mr. Cuddles…", + "My friends and I used to play cops-and-robbers, except with zombies. Never thought I'd be in it for real…", + "Do you ever think that we're in some kind of simulation?" + ] + } +] diff --git a/data/json/snippets/snippets.json b/data/json/snippets/snippets.json index 4508e41a6fe36..2b3ad24b36eb1 100644 --- a/data/json/snippets/snippets.json +++ b/data/json/snippets/snippets.json @@ -282,5 +282,23 @@ } } ] + }, + { + "type": "snippet", + "category": "slime_generate", + "text": [ + { + "text": { + "//~": "Usual enthusiastic slimespring small voices! :D", + "str": "\"wow! you look just like me! we should look out for each other!\"" + } + }, + { + "text": { "//~": "Usual enthusiastic slimespring small voices! :D", "str": "\"come on, big me, let's go!\"" } + }, + { + "text": { "//~": "Usual enthusiastic slimespring small voices! :D", "str": "\"we're a team, we've got this!\"" } + } + ] } ] diff --git a/data/json/snippets/survivor_notes.json b/data/json/snippets/survivor_notes.json index 85930b7a2d4ed..8dbcf5f638e15 100644 --- a/data/json/snippets/survivor_notes.json +++ b/data/json/snippets/survivor_notes.json @@ -192,7 +192,7 @@ { "id": "note_74", "text": "\"Make sure your car is REALLY stopped before you get out.\"" }, { "id": "note_75", - "text": "\"I found some kind of stone pyramid with spikes. I feel… I feel like I'm being watched.\"" + "text": "\"I found some kind of stone pyramid with spikes. I feel… I feel like I'm being watched.\"" }, { "id": "note_76", @@ -578,11 +578,57 @@ }, { "id": "note_224", - "text": "\"…damn those hybrid cars are efficient. Wish I was smart enough to finagle that engine controller out of it… heard Scrapper Joe put one in his deathmobile and now doesn't need gas at all… then again, Joe is full of shit…\"" + "text": "\"…damn those hybrid cars are efficient. wish I was smart enough to finagle that engine controller out of it… heard scrapper Joe put one in his deathmobile and now doesn't need gas at all… then again, Joe is full of shit…\"" }, { "id": "note_225", "text": "\"⋯bioluminescent, 5' diameter⋯ appears to be an immense disembodied eyeball, capable of flight and [illegible] thought\"" + }, + { + "id": "note_226", + "text": "\"What's the deal with boiling water? Rain water is distilled naturally! It's perfectly safe, you could save so much time if you didn't boil it. I drunk some river water, and I'm fine!\"" + }, + { + "id": "note_227", + "text": "\"Went to the emergency shelter, some guy walked in, walked out, grabbed a rock, smashed a bench to bits, carved a plank out of it, walked out again. Haven't seen them in 3 days… wonder what their story is.\"" + }, + { + "id": "note_228", + "text": "This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS TOO MUCH. My hands are made of slime. My hair is slime. My body is covered in slime. I can't even use a crowbar 'cause of slime. Wherever I go I leave a trail of slime. Everything's slime. My bag is falling off my back into slime.\"" + }, + { + "id": "note_229", + "text": "A page from a notebook, with a morse code reference and the following decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" + }, + { + "id": "note_230", + "//": "It's a code :D", + "text": "\"See if you want to be, extra annoying you can, nod off to the, dump and go, help, Erin to dig up the, last, peice\"" + }, + { + "id": "note_231", + "text": "\"I saw one of those Foodplace workers on the street. Honestly, they look no different alive than dead.\"" + }, + { + "id": "note_232", + "text": "\"DO NOT go to the irradiation plants! My truck looks like swiss cheese after the turrets had their way with me. I'm gonna be stuck roadside for hours while I patch up this mess.\"" + }, + { + "id": "note_233", + "text": "\"I can imagine people sending their 'love and prayers' on social media. Love doesn't kill zeds, prayer doesn't put food in my belly.\"" + }, + { + "id": "note_234", + "text": "\"I used to take everything at face value. If you couldn't measure it, couldn't explain it, couldn't put a number to it, it wasn't real. Then this shit happened. Real funny.\"" + }, + { "id": "note_235", "text": "This note is covered in grey goo, ew… \"Blorble\"" }, + { + "id": "note_236", + "text": "\"Saw some chick in the forest. Her body is all green and shit, and she was covered in leaves and vines.\"" + }, + { + "id": "note_237", + "text": "\"Good news: My teachers aren't trying to tear my limbs off about my homework. Bad news: My teachers are trying to tear my limbs off regardless.\"" } ] } diff --git a/data/json/snippets/weed_messages.json b/data/json/snippets/weed_messages.json index a2a781803ba9c..4a4d08f88c3bc 100644 --- a/data/json/snippets/weed_messages.json +++ b/data/json/snippets/weed_messages.json @@ -94,7 +94,7 @@ { "type": "snippet", "category": "weed_Mitch_Hedberg", - "text": [ "I used to do drugs… I still do, but I used to, too." ] + "text": [ "I used to do drugs… I still do, but I used to, too." ] }, { "type": "snippet", diff --git a/data/json/speech.json b/data/json/speech.json index 5fc05b8e10d62..5f7f932d1b2f8 100644 --- a/data/json/speech.json +++ b/data/json/speech.json @@ -1568,7 +1568,7 @@ { "type": "speech", "speaker": [ "mon_mutant_experimental", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "\"This smell… Don't know…\"", + "sound": "\"This smell… Don't know…\"", "volume": 10 }, { @@ -1586,25 +1586,25 @@ { "type": "speech", "speaker": [ "mon_mutant_experimental", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "\"No… Stop the burning!\"", + "sound": "\"No… stop the burning!\"", "volume": 20 }, { "type": "speech", "speaker": [ "mon_mutant_experimental", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "\"Hrgm… Blood… Hungry…\"", + "sound": "\"Hrgm… blood… hungry…\"", "volume": 20 }, { "type": "speech", "speaker": [ "mon_mutant_experimental", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "\"Hunger… Must eat…\"", + "sound": "\"Hunger… must eat…\"", "volume": 20 }, { "type": "speech", "speaker": [ "mon_mutant_experimental", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "\"Run… Chase… Eat…\"", + "sound": "\"Run… chase… eat…\"", "volume": 20 }, { @@ -1904,7 +1904,7 @@ { "type": "speech", "speaker": [ "mon_grocerybot_running_out_of_friendship", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "a neutral voice say, \"Customer I must inform you that my allocated time with you will soon come to its end.\"", + "sound": "a neutral voice say, \"Customer, I must inform you that my allocated time with you will soon come to its end.\"", "volume": 8 }, { @@ -1946,7 +1946,7 @@ { "type": "speech", "speaker": [ "mon_grocerybot_hacked", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "a distorted voice say, \"Customer… What's happening? I don't feel so good.\"", + "sound": "a distorted voice say, \"Customer… what's happening? I don't feel so good.\"", "volume": 8 }, { @@ -2138,25 +2138,25 @@ { "type": "speech", "speaker": [ "mon_leech_blossom", "mon_mi_go", "mon_mi_go_slaver", "mon_mi_go_surgeon", "mon_mi_go_guard", "mon_mi_go_myrmidon" ], - "sound": "\"visceral chittering.\"", + "sound": "visceral chittering.", "volume": 15 }, { "type": "speech", "speaker": [ "mon_leech_blossom", "mon_mi_go", "mon_mi_go_slaver", "mon_mi_go_surgeon", "mon_mi_go_guard", "mon_mi_go_myrmidon" ], - "sound": "\"a clear high-pitched hum.\"", + "sound": "a clear, high-pitched hum.", "volume": 15 }, { "type": "speech", "speaker": [ "mon_leech_blossom", "mon_mi_go", "mon_mi_go_slaver", "mon_mi_go_surgeon", "mon_mi_go_guard", "mon_mi_go_myrmidon" ], - "sound": "\"the hum of static electricity.\"", + "sound": "the hum of static electricity.", "volume": 15 }, { "type": "speech", "speaker": [ "mon_leech_blossom", "mon_mi_go", "mon_mi_go_slaver", "mon_mi_go_surgeon", "mon_mi_go_guard", "mon_mi_go_myrmidon" ], - "sound": "\"a low buzzing sound.\"", + "sound": "a low buzzing sound.", "volume": 15 }, { @@ -2259,145 +2259,145 @@ { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "Wanna play with me?", + "sound": "\"Wanna play with me?\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "Sing with me!", + "sound": "\"Sing with me!\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "I love you!", + "sound": "\"I love you!\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "Please take me with you!", + "sound": "\"Please take me with you!\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "May I have a cookie?", + "sound": "\"May I have a cookie?\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "Let's play together!", + "sound": "\"Let's play together!\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "Time to play!", + "sound": "\"Time to play!\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "Om nom nom! Delicious!", + "sound": "\"Om nom nom! Delicious!\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "Are you my mommy?", + "sound": "\"Are you my mommy?\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "Oh, how fun!", + "sound": "\"Oh, how fun!\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "You're my best friend!", + "sound": "\"You're my best friend!\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "Heehee!", + "sound": "\"Heehee!\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "Let's have fun!", + "sound": "\"Let's have fun!\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "Let's have a tea party!", + "sound": "\"Let's have a tea party!\"", "volume": 10 }, { "type": "speech", "speaker": [ "talking_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mannequin_decoy" ], - "sound": "You're the best!", + "sound": "\"You're the best!\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "You shouldn't have done that.", + "sound": "\"You shouldn't have done that.\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "Let's play… Russian roulette.", + "sound": "\"Let's play… Russian roulette.\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "I hate you.", + "sound": "\"I hate you.\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mi_go_myrmidon" ], - "sound": "Go kill yourself!", + "sound": "\"Go kill yourself!\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "Big Brother is watching you…", + "sound": "\"Big Brother is watching you…\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mi_go_myrmidon" ], - "sound": "Die for me!", + "sound": "\"Die for me!\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mi_go_myrmidon" ], - "sound": "Why won't you die?", + "sound": "\"Why won't you die?\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mi_go_myrmidon" ], - "sound": "Blood… Delicious.", + "sound": "\"Blood… delicious.\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mi_go_myrmidon" ], - "sound": "See you… IN HELL!", + "sound": "\"See you… IN HELL!\"", "volume": 10 }, { @@ -2409,43 +2409,43 @@ { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver", "mon_mi_go_myrmidon" ], - "sound": "FUCK YOU!", + "sound": "\"FUCK YOU!\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "What did you do with my Mommy?", + "sound": "\"What did you do with my Mommy?\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "Stay with me… forever!", + "sound": "\"Stay with me… forever!\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "Hey kids. Want some candy?", + "sound": "\"Hey kids. Want some candy?\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "Down here, they ALL float!", + "sound": "\"Down here, they ALL float!\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "Do you really need that much honey?", + "sound": "\"Do you really need that much honey?\"", "volume": 10 }, { "type": "speech", "speaker": [ "creepy_doll", "mon_mi_go", "mon_mi_go_slaver" ], - "sound": "My previous owner squealed like a pig when I gutted her!", + "sound": "\"My previous owner squealed like a pig when I gutted her!\"", "volume": 10 }, { @@ -2523,25 +2523,25 @@ { "type": "speech", "speaker": [ "mon_dermatik_incubator_deer", "mon_dermatik_incubator_dog" ], - "sound": "heavy breathing", + "sound": "heavy breathing.", "volume": 10 }, { "type": "speech", "speaker": [ "mon_dermatik_incubator_deer", "mon_dermatik_incubator_dog" ], - "sound": "labored breathing", + "sound": "labored breathing.", "volume": 10 }, { "type": "speech", "speaker": [ "mon_dermatik_incubator_dog" ], - "sound": "a whimper", + "sound": "a whimper.", "volume": 10 }, { "type": "speech", "speaker": [ "mon_dermatik_incubator_bear", "mon_dermatik_incubator_dog" ], - "sound": "a rasping growl", + "sound": "a rasping growl.", "volume": 10 } ] diff --git a/data/json/start_locations.json b/data/json/start_locations.json index ac0686fc85260..04271b5f159fa 100644 --- a/data/json/start_locations.json +++ b/data/json/start_locations.json @@ -515,5 +515,17 @@ "id": "sloc_light_industry_scen", "name": "Industrial Offices", "terrain": [ "s_lightindustry_scen_10" ] + }, + { + "type": "start_location", + "ident": "sloc_mansion_entrance", + "name": "Mansion Entrance", + "terrain": [ "mansion_e1", "mansion_e2" ] + }, + { + "type": "start_location", + "ident": "sloc_mansion", + "name": "Mansion", + "terrain": [ "mansion_+", "mansion_+2" ] } ] diff --git a/data/json/techniques.json b/data/json/techniques.json index af5f67a02153f..4a2a7ca2a7f7f 100644 --- a/data/json/techniques.json +++ b/data/json/techniques.json @@ -157,15 +157,6 @@ "messages": [ "You disarm %s using your whip", " disarms %s using their whip" ], "description": "Unwield target's weapon" }, - { - "type": "technique", - "id": "tec_counter", - "name": "Counterattack", - "melee_allowed": true, - "block_counter": true, - "crit_ok": true, - "messages": [ "You counter-attack %s", " counter-attacks %s" ] - }, { "type": "technique", "id": "tec_feint", @@ -195,64 +186,64 @@ }, { "type": "technique", - "id": "tec_aikido_blockdisarm", - "name": "Block Counter Disarm", - "messages": [ "You block and smoothly disarm %s", " blocks and smoothly disarms %s" ], - "skill_requirements": [ { "name": "unarmed", "level": 4 } ], + "id": "tec_aikido_blockthrow", + "name": "Counter Throw (block)", + "messages": [ "You smoothly throw %s", " blocks and smoothly throws %s" ], + "skill_requirements": [ { "name": "unarmed", "level": 2 } ], "unarmed_allowed": true, "melee_allowed": true, "unarmed_weapons_allowed": false, - "block_counter": true, + "required_buffs_all": [ "buff_aikido_onblock" ], "crit_ok": true, - "disarms": true, "down_dur": 1, "knockback_dist": 1, - "mult_bonuses": [ { "stat": "movecost", "scale": 0.33 } ] + "mult_bonuses": [ { "stat": "movecost", "scale": 0.7 } ] }, { "type": "technique", - "id": "tec_aikido_blockthrow", - "name": "Block Counter Throw", - "messages": [ "You block and smoothly throw %s", " blocks and smoothly throws %s" ], + "id": "tec_aikido_dodgethrow", + "name": "Counter Throw (dodge)", + "messages": [ "You smoothly throw %s", " dodges and smoothly throws %s" ], "unarmed_allowed": true, "melee_allowed": true, "unarmed_weapons_allowed": false, - "block_counter": true, + "required_buffs_all": [ "buff_aikido_ondodge" ], "crit_ok": true, "down_dur": 1, "knockback_dist": 1, - "mult_bonuses": [ { "stat": "movecost", "scale": 0.33 } ] + "mult_bonuses": [ { "stat": "movecost", "scale": 0.7 } ] }, { "type": "technique", - "id": "tec_aikido_dodgethrow", - "name": "Dodge Counter Throw", - "messages": [ "You dodge and smoothly throw %s", " dodges and smoothly throws %s" ], - "skill_requirements": [ { "name": "unarmed", "level": 2 } ], + "id": "tec_aikido_blockdisarm", + "name": "Disarming Throw (block)", + "messages": [ "You smoothly disarm %s", " blocks and smoothly disarms %s" ], + "skill_requirements": [ { "name": "unarmed", "level": 4 } ], "unarmed_allowed": true, "melee_allowed": true, "unarmed_weapons_allowed": false, - "dodge_counter": true, + "required_buffs_all": [ "buff_aikido_onblock" ], "crit_ok": true, + "disarms": true, "down_dur": 1, "knockback_dist": 1, - "mult_bonuses": [ { "stat": "movecost", "scale": 0.33 } ] + "mult_bonuses": [ { "stat": "movecost", "scale": 0.7 } ] }, { "type": "technique", "id": "tec_aikido_dodgedisarm", - "name": "Dodge Counter Disarm", - "messages": [ "You dodge and smoothly disarm %s", " dodges and smoothly disarms %s" ], + "name": "Disarming Throw (dodge)", + "messages": [ "You smoothly disarm %s", " dodges and smoothly disarms %s" ], "skill_requirements": [ { "name": "unarmed", "level": 4 } ], "unarmed_allowed": true, "melee_allowed": true, "unarmed_weapons_allowed": false, - "dodge_counter": true, + "required_buffs_all": [ "buff_aikido_ondodge" ], "crit_ok": true, "disarms": true, "down_dur": 1, "knockback_dist": 1, - "mult_bonuses": [ { "stat": "movecost", "scale": 0.33 } ] + "mult_bonuses": [ { "stat": "movecost", "scale": 0.7 } ] }, { "type": "technique", @@ -284,13 +275,14 @@ "messages": [ "You cross-counter %s", " throws a perfect counter at %s" ], "skill_requirements": [ { "name": "unarmed", "level": 5 } ], "unarmed_allowed": true, - "dodge_counter": true, - "crit_ok": true, + "required_buffs_all": [ "buff_boxing_ondodge" ], + "weighting": 2, + "crit_tec": true, "knockback_dist": 1, "knockback_spread": 1, "stun_dur": 1, "down_dur": 1, - "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.25 } ] + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.5 } ] }, { "type": "technique", @@ -337,26 +329,6 @@ "defensive": true, "grab_break": true }, - { - "type": "technique", - "id": "tec_brawl_counter_melee", - "name": "Hit Them Back", - "messages": [ "You catch %s's attack, and hit back", " catches %s, and counters" ], - "skill_requirements": [ { "name": "melee", "level": 5 } ], - "melee_allowed": true, - "block_counter": true, - "crit_ok": true - }, - { - "type": "technique", - "id": "tec_brawl_counter_unarmed", - "name": "Hit Them Back", - "messages": [ "You catch %s's attack, and hit back", " catches %s, and counters" ], - "skill_requirements": [ { "name": "unarmed", "level": 5 } ], - "unarmed_allowed": true, - "block_counter": true, - "crit_ok": true - }, { "type": "technique", "id": "tec_brawl_feint_melee", @@ -382,7 +354,7 @@ "id": "tec_brawl_disarm_melee", "name": "Disarm", "messages": [ "You knock %s's weapon away", " knock %s's weapon away" ], - "skill_requirements": [ { "name": "melee", "level": 8 } ], + "skill_requirements": [ { "name": "melee", "level": 6 } ], "melee_allowed": true, "disarms": true }, @@ -391,7 +363,7 @@ "id": "tec_brawl_disarm_unarmed", "name": "Disarm", "messages": [ "You knock %s's weapon away", " knock %s's weapon away" ], - "skill_requirements": [ { "name": "unarmed", "level": 8 } ], + "skill_requirements": [ { "name": "unarmed", "level": 6 } ], "unarmed_allowed": true, "disarms": true }, @@ -453,7 +425,7 @@ "required_buffs_all": [ "buff_capoeira_onmove" ], "weighting": 2, "down_dur": 1, - "mult_bonuses": [ { "stat": "movecost", "scale": 0.75 } ] + "mult_bonuses": [ { "stat": "movecost", "scale": 0.75 }, { "stat": "damage", "type": "bash", "scale": 1.2 } ] }, { "type": "technique", @@ -477,6 +449,18 @@ "defensive": true, "miss_recovery": true }, + { + "type": "technique", + "id": "tec_crane_precise", + "name": "Crane Kick", + "messages": [ "You leap and kick %s", " leaps and kicks %s" ], + "skill_requirements": [ { "name": "unarmed", "level": 2 } ], + "unarmed_allowed": true, + "required_buffs_all": [ "buff_crane_ondodge" ], + "crit_ok": true, + "down_dur": 1, + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.25 } ] + }, { "type": "technique", "id": "tec_crane_break", @@ -492,71 +476,24 @@ }, { "type": "technique", - "id": "tec_crane_counter", + "id": "tec_crane_strike", "name": "Crane Strike", - "messages": [ "You hand-peck and swat down %s", " hand-pecks and swats down %s" ], - "skill_requirements": [ { "name": "unarmed", "level": 2 } ], - "unarmed_allowed": true, - "dodge_counter": true, - "down_dur": 1, - "mult_bonuses": [ { "stat": "movecost", "scale": 0.66 } ] - }, - { - "type": "technique", - "id": "tec_crane_precise", - "name": "Crane Kick", - "messages": [ "You leap and kick %s", " leaps and kicks %s" ], + "messages": [ "You hand-peck and strike %s", " hand-pecks and strikes %s" ], "skill_requirements": [ { "name": "unarmed", "level": 4 } ], "unarmed_allowed": true, - "crit_tec": true, - "knockback_dist": 1, - "knockback_spread": 1, + "required_buffs_all": [ "buff_crane_ondodge" ], + "crit_ok": true, "stun_dur": 2, - "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.25 } ] + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.5 } ] }, { "type": "technique", "id": "tec_dragon_claw", "name": "Dragon Claw", - "skill_requirements": [ { "name": "unarmed", "level": 1 } ], "unarmed_allowed": true, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.2 } ], "messages": [ "You lash out at %s with a Dragon Claw", " lashes out at %s with a Dragon Claw" ] }, - { - "type": "technique", - "id": "tec_dragon_blockcounter", - "name": "Dragon Vortex Block", - "messages": [ "You block the attack and send %s spinning", " blocks and spins %s" ], - "skill_requirements": [ { "name": "unarmed", "level": 2 } ], - "unarmed_allowed": true, - "required_buffs_all": [ "buff_dragon_onhit" ], - "block_counter": true, - "down_dur": 1, - "mult_bonuses": [ - { "stat": "movecost", "scale": 0.5 }, - { "stat": "damage", "type": "bash", "scale": 0.5 }, - { "stat": "damage", "type": "cut", "scale": 0.5 }, - { "stat": "damage", "type": "stab", "scale": 0.5 } - ] - }, - { - "type": "technique", - "id": "tec_dragon_dodgecounter", - "name": "Dragon Wing Dodge", - "messages": [ "You dodge the attack and leave %s off balance", " dodges and leaves %s off balance" ], - "skill_requirements": [ { "name": "unarmed", "level": 3 } ], - "unarmed_allowed": true, - "required_buffs_all": [ "buff_dragon_onhit" ], - "dodge_counter": true, - "stun_dur": 1, - "mult_bonuses": [ - { "stat": "movecost", "scale": 0.5 }, - { "stat": "damage", "type": "bash", "scale": 0.5 }, - { "stat": "damage", "type": "cut", "scale": 0.5 }, - { "stat": "damage", "type": "stab", "scale": 0.5 } - ] - }, { "type": "technique", "id": "tec_dragon_tail", @@ -565,9 +502,8 @@ "skill_requirements": [ { "name": "unarmed", "level": 4 } ], "unarmed_allowed": true, "crit_tec": true, - "stunned_target": true, - "down_dur": 2, - "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.5 } ] + "down_dur": 1, + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.4 } ] }, { "type": "technique", @@ -579,7 +515,7 @@ "crit_tec": true, "downed_target": true, "stun_dur": 1, - "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 2.0 } ] + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.5 } ] }, { "type": "technique", @@ -625,20 +561,14 @@ }, { "type": "technique", - "id": "tec_eskrima_puno", - "name": "Puño Strike", - "messages": [ "You deliver a puño to %s", " haftstrikes %s" ], + "id": "tec_eskrima_stun", + "name": "Stunning Strike", + "messages": [ "You deliver a stunning strike to %s", " delivers a stunning strike to %s" ], "skill_requirements": [ { "name": "melee", "level": 3 } ], - "weapon_damage_requirements": [ { "type": "bash", "min": 2 } ], "melee_allowed": true, "crit_tec": true, "stun_dur": 1, - "mult_bonuses": [ - { "stat": "movecost", "scale": 0.6 }, - { "stat": "damage", "type": "bash", "scale": 0.7 }, - { "stat": "damage", "type": "cut", "scale": 0.0 }, - { "stat": "damage", "type": "stab", "scale": 0.0 } - ] + "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 } ] }, { "type": "technique", @@ -672,8 +602,8 @@ }, { "type": "technique", - "id": "tec_fencing_compound", - "name": "Compound Attack", + "id": "tec_fencing_compound1", + "name": "Compound Attack (Remise)", "messages": [ "Your feint leads to a compound attack against %s", "'s feint leads to a compound attack against %s" ], "skill_requirements": [ { "name": "melee", "level": 3 } ], "melee_allowed": true, @@ -686,6 +616,22 @@ { "stat": "damage", "type": "stab", "scale": 1.25 } ] }, + { + "type": "technique", + "id": "tec_fencing_compound2", + "name": "Compound Attack (Counter Time)", + "messages": [ "Your feint leads to a compound attack against %s", "'s feint leads to a compound attack against %s" ], + "skill_requirements": [ { "name": "melee", "level": 4 } ], + "melee_allowed": true, + "required_buffs_all": [ "buff_fencing_onpause" ], + "weighting": 4, + "crit_ok": true, + "mult_bonuses": [ + { "stat": "damage", "type": "bash", "scale": 1.25 }, + { "stat": "damage", "type": "cut", "scale": 1.25 }, + { "stat": "damage", "type": "stab", "scale": 1.25 } + ] + }, { "type": "technique", "id": "tec_fencing_riposte", @@ -693,8 +639,9 @@ "messages": [ "You deliver a perfect riposte to %s", " delivers a perfect riposte to %s" ], "skill_requirements": [ { "name": "melee", "level": 5 } ], "melee_allowed": true, - "block_counter": true, + "required_buffs_all": [ "buff_fencing_onblock" ], "crit_ok": true, + "weighting": 2, "stun_dur": 1, "mult_bonuses": [ { "stat": "movecost", "scale": 0.66 }, @@ -710,8 +657,9 @@ "messages": [ "You parry and hook %s down", " parries and hooks %s down" ], "skill_requirements": [ { "name": "melee", "level": 4 } ], "melee_allowed": true, - "block_counter": true, + "required_buffs_all": [ "buff_medievalpole_onblock" ], "crit_ok": true, + "weighting": 2, "down_dur": 2, "mult_bonuses": [ { "stat": "movecost", "scale": 0.5 }, @@ -727,10 +675,11 @@ "messages": [ "You swing high and strike at %s", " swings high and strikes %s" ], "skill_requirements": [ { "name": "melee", "level": 2 } ], "melee_allowed": true, + "forbidden_buffs_all": [ "buff_medievalpole_onmove" ], "mult_bonuses": [ - { "stat": "damage", "type": "bash", "scale": 1.2 }, - { "stat": "damage", "type": "cut", "scale": 1.2 }, - { "stat": "damage", "type": "stab", "scale": 1.2 } + { "stat": "damage", "type": "bash", "scale": 1.1 }, + { "stat": "damage", "type": "cut", "scale": 1.1 }, + { "stat": "damage", "type": "stab", "scale": 1.1 } ] }, { @@ -795,6 +744,7 @@ "unarmed_allowed": true, "melee_allowed": true, "unarmed_weapons_allowed": false, + "crit_ok": true, "down_dur": 1, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.25 } ] }, @@ -840,29 +790,6 @@ "defensive": true, "grab_break": true }, - { - "type": "technique", - "id": "tec_judo_counter", - "name": "Counter Throw", - "messages": [ "You evade and toss %s to the ground", " evades and tosses %s to the ground" ], - "skill_requirements": [ { "name": "unarmed", "level": 4 } ], - "unarmed_allowed": true, - "melee_allowed": true, - "unarmed_weapons_allowed": false, - "dodge_counter": true, - "down_dur": 1 - }, - { - "type": "technique", - "id": "tec_karate_counter", - "name": "Karate Counter", - "messages": [ "You counterattack %s", " counterattacks %s" ], - "skill_requirements": [ { "name": "unarmed", "level": 5 } ], - "unarmed_allowed": true, - "block_counter": true, - "crit_ok": true, - "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 } ] - }, { "type": "technique", "id": "tec_karate_precise", @@ -872,7 +799,7 @@ "unarmed_allowed": true, "crit_tec": true, "stun_dur": 1, - "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.33 } ] + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.4 } ] }, { "type": "technique", @@ -896,6 +823,26 @@ "unarmed_allowed": true, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.2 } ] }, + { + "type": "technique", + "id": "tec_karate_staff", + "name": "Staff Strike", + "messages": [ "You strike %s with your staff", " strikes %s with your staff" ], + "skill_requirements": [ { "name": "melee", "level": 3 } ], + "melee_allowed": true, + "mult_bonuses": [ { "stat": "movecost", "scale": 0.9 } ] + }, + { + "type": "technique", + "id": "tec_karate_staff_crit", + "name": "Heavy Staff Strike", + "messages": [ "You swing your staff hard at %s", " swings their staff hard at %s" ], + "skill_requirements": [ { "name": "melee", "level": 4 } ], + "melee_allowed": true, + "crit_tec": true, + "down_dur": 1, + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.1 } ] + }, { "type": "technique", "id": "tec_krav_maga_rapid", @@ -960,18 +907,6 @@ "defensive": true, "grab_break": true }, - { - "type": "technique", - "id": "tec_krav_maga_counter", - "name": "Counter", - "messages": [ "You block and counter %s", " blocks and counters %s" ], - "skill_requirements": [ { "name": "unarmed", "level": 4 } ], - "melee_allowed": true, - "unarmed_allowed": true, - "crit_ok": true, - "block_counter": true, - "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 } ] - }, { "type": "technique", "id": "tec_leopard_feint", @@ -1008,16 +943,23 @@ }, { "type": "technique", - "id": "tec_leopard_counter", - "name": "Leopard Foresight", - "messages": [ "You dodge the attack and swipe at %s's exposed flank", " dodges and catches %s exposed" ], - "skill_requirements": [ { "name": "unarmed", "level": 5 } ], + "id": "tec_leopard_claw", + "name": "Leopard Swipe", + "messages": [ "You savagely claw at %s", " savagely claws at %s" ], "unarmed_allowed": true, - "crit_ok": true, - "dodge_counter": true, - "knockback_dist": 1, - "knockback_spread": 1, - "mult_bonuses": [ { "stat": "movecost", "scale": 0.66 } ] + "crit_tec": true, + "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 }, { "stat": "damage", "type": "bash", "scale": 1.3 } ] + }, + { + "type": "technique", + "id": "tec_leopard_pounce", + "name": "Leopard Pounce", + "messages": [ "You leap and pounce on %s", " leaps and pounces on %s" ], + "unarmed_allowed": true, + "required_buffs_all": [ "buff_leopard_oncrit" ], + "crit_tec": true, + "down_dur": 1, + "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 }, { "stat": "damage", "type": "bash", "scale": 2.0 } ] }, { "type": "technique", @@ -1059,17 +1001,6 @@ "defensive": true, "miss_recovery": true }, - { - "type": "technique", - "id": "tec_swordsmanship_mastercut", - "name": "Master Cut", - "messages": [ "You parry and strike %s in one movement", " parries and strikes %s in one movement" ], - "skill_requirements": [ { "name": "melee", "level": 5 } ], - "melee_allowed": true, - "crit_ok": true, - "block_counter": true, - "mult_bonuses": [ { "stat": "movecost", "scale": 0.7 } ] - }, { "type": "technique", "id": "tec_muay_thai_elbow", @@ -1260,6 +1191,7 @@ "weighting": 3, "disarms": true, "stun_dur": 1, + "flat_bonuses": [ { "stat": "arpen", "type": "bash", "scaling-stat": "str", "scale": 1.0 } ], "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.25 } ] }, { @@ -1373,23 +1305,6 @@ "stun_dur": 1, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.5 } ] }, - { - "type": "technique", - "id": "tec_sojutsu_push", - "name": "Push", - "messages": [ "You push %s away", " pushes %s away" ], - "skill_requirements": [ { "name": "melee", "level": 1 } ], - "melee_allowed": true, - "block_counter": true, - "crit_ok": true, - "knockback_dist": 1, - "mult_bonuses": [ - { "stat": "movecost", "scale": 0.5 }, - { "stat": "damage", "type": "bash", "scale": 0.5 }, - { "stat": "damage", "type": "cut", "scale": 0.5 }, - { "stat": "damage", "type": "stab", "scale": 0.5 } - ] - }, { "type": "technique", "id": "tec_sojutsu_shove", @@ -1418,6 +1333,16 @@ { "stat": "damage", "type": "stab", "scale": 0.5 } ] }, + { + "type": "technique", + "id": "tec_sojutsu_feint", + "name": "Feint", + "messages": [ "You fake a thrust at %s", " fakes a thrust at %s" ], + "skill_requirements": [ { "name": "melee", "level": 4 } ], + "melee_allowed": true, + "defensive": true, + "miss_recovery": true + }, { "type": "technique", "id": "tec_taekwondo_disarm", @@ -1507,10 +1432,10 @@ "messages": [ "You divert %s's attack and lead them to the ground", " diverts %s's attack and lead them to the ground" ], "skill_requirements": [ { "name": "unarmed", "level": 2 } ], "unarmed_allowed": true, - "block_counter": true, + "required_buffs_all": [ "buff_tai_chi_onblock" ], "crit_ok": true, "down_dur": 1, - "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.2 } ] + "mult_bonuses": [ { "stat": "movecost", "scale": 0.75 }, { "stat": "damage", "type": "bash", "scale": 1.2 } ] }, { "type": "technique", @@ -1602,16 +1527,6 @@ "defensive": true, "miss_recovery": true }, - { - "type": "technique", - "id": "tec_wingchun_counter", - "name": "Receive and Counter", - "messages": [ "You receive %s's gift of violence, and return it in kind", " receives %s's attack, and counters" ], - "skill_requirements": [ { "name": "unarmed", "level": 5 } ], - "unarmed_allowed": true, - "dodge_counter": true, - "crit_ok": true - }, { "type": "technique", "id": "tec_zuiquan_feint", diff --git a/data/json/vehicleparts/combustion.json b/data/json/vehicleparts/combustion.json index 85be3159827dc..a9e510b3eed2a 100644 --- a/data/json/vehicleparts/combustion.json +++ b/data/json/vehicleparts/combustion.json @@ -34,7 +34,7 @@ "fuel_options": [ "diesel", "biodiesel", "lamp_oil", "motor_oil", "jp8" ], "m2c": 65, "//": "40% energy efficiency", - "extend": { "flags": [ "E_COLD_START" ] }, + "extend": { "flags": [ "E_COLD_START", "E_DIESEL_FUEL" ] }, "description": "A combustion engine. Burns diesel fuel from a tank in the vehicle. Can also burn biodiesel or lamp oil, though somewhat less efficiently." }, { @@ -61,6 +61,7 @@ "copy-from": "diesel_engine", "type": "vehicle_part", "item": "i6_diesel", + "description": "An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you might see an engine like this in a road roller or excavator.", "durability": 400, "epower": -350, "power": 223800, @@ -82,6 +83,7 @@ "copy-from": "diesel_engine", "type": "vehicle_part", "item": "v6_diesel", + "description": "A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or armored personnel carrier.", "durability": 400, "epower": -250, "power": 149200, @@ -103,6 +105,7 @@ "copy-from": "diesel_engine", "type": "vehicle_part", "item": "v8_diesel", + "description": "A large 8-cylinder diesel engine, powerful enough for a semi truck, armored car, or Humvee.", "durability": 400, "epower": -350, "power": 242450, @@ -125,6 +128,7 @@ "type": "vehicle_part", "item": "1cyl_combustion", "//": "10 HP scooter engine", + "description": "A small 1-cylinder gasoline engine delivering around 10 horsepower, enough for a scooter or motorized bicycle.", "durability": 150, "epower": 0, "power": 7370, @@ -149,6 +153,7 @@ "type": "vehicle_part", "item": "1cyl_combustion_large", "//": "55 HP high-performance water-cooled single-cylinder engine", + "description": "A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in a motocross or dirt bike.", "durability": 150, "epower": 0, "power": 41000, @@ -173,6 +178,7 @@ "type": "vehicle_part", "item": "1cyl_combustion_small", "//": "5 HP lawnmower engine - a big pusher or small walk-behind", + "description": "A small 1-cylinder gasoline engine with only a few horsepower, suitable for a push lawn mower.", "fuel_type": "gasoline", "durability": 120, "epower": 0, @@ -218,6 +224,7 @@ "copy-from": "gasoline_engine", "type": "vehicle_part", "item": "i4_combustion", + "description": "A four-cylinder gasoline engine, commonly found in small passenger cars and light trucks.", "durability": 300, "epower": -150, "power": 93250, @@ -239,6 +246,7 @@ "copy-from": "gasoline_engine", "type": "vehicle_part", "item": "v12_combustion", + "description": "A massive 12-cylinder gasoline engine, with the kind of power you might need in a sports car.", "durability": 600, "epower": -350, "power": 447600, @@ -260,6 +268,7 @@ "copy-from": "diesel_engine", "type": "vehicle_part", "item": "v12_diesel", + "description": "A massive 12-cylinder diesel engine, typical of a heavy cargo truck.", "durability": 600, "epower": -400, "power": 447600, @@ -281,6 +290,7 @@ "copy-from": "gasoline_engine", "type": "vehicle_part", "item": "v6_combustion", + "description": "A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV, or full-size van.", "durability": 400, "epower": -200, "power": 149200, @@ -302,6 +312,7 @@ "copy-from": "gasoline_engine", "type": "vehicle_part", "item": "v8_combustion", + "description": "A heavy-duty 8-cylinder gasoline engine, like you might find in a fire truck, ambulance, or tow truck.", "durability": 400, "epower": -250, "power": 242450, @@ -323,6 +334,7 @@ "copy-from": "gasoline_engine", "type": "vehicle_part", "item": "v2_combustion", + "description": "A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike.", "durability": 200, "epower": -50, "power": 37300, @@ -428,6 +440,7 @@ "copy-from": "gas_turbine_engine", "type": "vehicle_part", "item": "small_turbine_engine", + "description": "A small but powerful gas turbine engine, suitable for powering a small one or two-seat helicopter.", "durability": 400, "epower": -10, "power": 1006695, @@ -450,6 +463,7 @@ "copy-from": "gas_turbine_engine", "type": "vehicle_part", "item": "medium_turbine_engine", + "description": "A heavy-duty gas turbine engine, like those typically found in a Medevac, Apache, or Blackhawk helicopter.", "durability": 400, "epower": -10, "power": 1416830, @@ -472,6 +486,7 @@ "copy-from": "gas_turbine_engine", "type": "vehicle_part", "item": "large_turbine_engine", + "description": "A huge gas turbine engine, used to lift large military helicopters such as the V-22 Osprey.", "durability": 400, "epower": -10, "power": 4474199, diff --git a/data/json/vehicleparts/doors.json b/data/json/vehicleparts/doors.json index 629c919693b12..04a62b5ea835b 100644 --- a/data/json/vehicleparts/doors.json +++ b/data/json/vehicleparts/doors.json @@ -47,6 +47,39 @@ "looks_like": "door", "type": "vehicle_part" }, + { + "copy-from": "door_abstract", + "abstract": "cloth_door_abstract", + "type": "vehicle_part", + "item": "sheet", + "broken_color": "dark_gray", + "durability": 15, + "folded_volume": "2500 ml", + "breaks_into": "ig_vp_cloth", + "requirements": { + "install": { "skills": [ [ "fabrication", 1 ] ], "time": "30 m", "using": [ [ "vehicle_nail_install", 1 ] ] }, + "removal": { "skills": [ [ "fabrication", 2 ] ], "time": "15 m", "using": [ [ "vehicle_nail_removal", 1 ] ] }, + "repair": { "skills": [ [ "fabrication", 2 ] ], "time": "30 m", "using": [ [ "adhesive", 2 ] ] } + }, + "damage_reduction": { "all": 0, "bash": 3 }, + "flags": [ "CARGO", "OBSTACLE", "OPENABLE", "BOARDABLE", "DOOR", "FOLDABLE" ] + }, + { + "copy-from": "cloth_door_abstract", + "id": "cloth_flap_door", + "looks_like": "door", + "type": "vehicle_part", + "name": { "str": "cloth flap door" }, + "description": "A cloth sheet that can be fastened into a closed position to act as a door." + }, + { + "copy-from": "cloth_door_abstract", + "id": "cloth_curtain_door", + "looks_like": "door", + "type": "vehicle_part", + "name": { "str": "cloth curtain door" }, + "description": "A cloth sheet that can be slid into a closed position to act as a door." + }, { "abstract": "door_opaque_abstract", "breaks_into": "ig_vp_frame", diff --git a/data/json/vehicleparts/motor.json b/data/json/vehicleparts/motor.json index a2727c273a826..13d4d33ce33cf 100644 --- a/data/json/vehicleparts/motor.json +++ b/data/json/vehicleparts/motor.json @@ -20,6 +20,7 @@ "copy-from": "engine_motor", "type": "vehicle_part", "name": { "str": "tiny electric motor" }, + "description": "An electric motor too small for most vehicles, but just right for powering a bicycle.", "item": "motor_tiny", "looks_like": "motor_small", "durability": 80, @@ -40,6 +41,7 @@ "copy-from": "engine_motor", "type": "vehicle_part", "name": { "str": "small electric motor" }, + "description": "A light-duty electrical motor, strong enough for an electric bicycle or scooter, but probably not practical for heavier vehicles.", "item": "motor_small", "durability": 120, "power": 7040, @@ -64,6 +66,7 @@ "copy-from": "engine_motor", "type": "vehicle_part", "name": { "str": "electric motor" }, + "description": "A medium-duty electrical motor, suitable for powering ultra-light vehicles, or as part of a hybrid gas-electric drivetrain.", "item": "motor", "durability": 200, "power": 36000, @@ -90,6 +93,7 @@ "copy-from": "engine_motor", "type": "vehicle_part", "name": { "str": "large electric motor" }, + "description": "A heavy-duty electrical motor, capable of propelling a full-size car or SUV through electric power alone, provided you have the battery capacity.", "item": "motor_large", "durability": 400, "power": 150000, @@ -115,6 +119,7 @@ "copy-from": "engine_motor", "type": "vehicle_part", "name": { "str": "enhanced electric motor" }, + "description": "A powerful high-performance electric motor, as found in those consumer electric sports cars with ridiculous, ludicrous, or similarly hyperbolic acceleration options. It needs a lot of battery power.", "item": "motor_enhanced", "durability": 200, "power": 282000, @@ -140,6 +145,7 @@ "copy-from": "engine_motor", "type": "vehicle_part", "name": { "str": "super electric motor" }, + "description": "A massive and extremely powerful electric motor, delivering high torque at the cost of significant power drain, this would be well suited to an electric racing car.", "item": "motor_super", "durability": 400, "power": 475000, @@ -165,6 +171,7 @@ "copy-from": "engine_motor", "type": "vehicle_part", "name": { "str": "1300hp electric train engine" }, + "description": "An enormous and heavy electric traction motor, powerful enough to pull a train.", "item": "motor_train1300", "durability": 500, "power": 1000000, diff --git a/data/json/vehicleparts/seats.json b/data/json/vehicleparts/seats.json index 7ab38241ac039..962c741ac576f 100644 --- a/data/json/vehicleparts/seats.json +++ b/data/json/vehicleparts/seats.json @@ -185,7 +185,7 @@ }, { "abstract": "metal_bench_abstract", - "breaks_into": "ig_vp_steel_plate", + "breaks_into": "ig_vp_prison_bench", "broken_color": "dark_gray", "broken_symbol": "*", "categories": [ "operations", "passengers" ], diff --git a/data/json/vehicleparts/vehicle_parts.json b/data/json/vehicleparts/vehicle_parts.json index 6a8e1f750d6d7..fc3dae0480830 100644 --- a/data/json/vehicleparts/vehicle_parts.json +++ b/data/json/vehicleparts/vehicle_parts.json @@ -9,6 +9,17 @@ { "item": "scrap", "count": [ 4, 6 ] } ] }, + { + "type": "item_group", + "id": "ig_vp_prison_bench", + "subtype": "collection", + "entries": [ + { "item": "steel_lump", "count": [ 3, 6 ] }, + { "item": "steel_chunk", "count": [ 3, 6 ] }, + { "item": "scrap", "count": [ 2, 4 ] }, + { "item": "chain", "count": [ 1, 4 ] } + ] + }, { "type": "item_group", "id": "ig_vp_xlframe", @@ -320,6 +331,18 @@ "breaks_into": [ { "item": "splinter", "count": [ 7, 9 ] }, { "item": "nail", "charges": [ 5, 10 ] } ], "damage_reduction": { "all": 16 } }, + { + "type": "vehicle_part", + "id": "foldable_aisle", + "copy-from": "wooden_aisle", + "name": { "str": "collapsible wooden aisle" }, + "looks_like": "t_floor", + "description": "A collapsible aisle.", + "folded_volume": "12500 ml", + "item": "foldwoodframe", + "location": "center", + "flags": [ "AISLE", "BOARDABLE", "FOLDABLE" ] + }, { "type": "vehicle_part", "id": "trunk_floor", @@ -701,7 +724,7 @@ "broken_color": "light_blue", "damage_modifier": 80, "durability": 100, - "description": "A small dishwasher. With detergent, water, and some electrical power, you could clean your dishes… Or something more useful like a CBM dripping with zombie gore. 'e'xamine the tile with the dishwasher to use it.", + "description": "A small dishwasher. With detergent, water, and some electrical power, you could clean your dishes… or something more useful like a CBM dripping with zombie gore. 'e'xamine the tile with the dishwasher to use it.", "epower": -400, "size": 160, "item": "dishwasher", @@ -905,6 +928,35 @@ "workbench": { "multiplier": 1.1, "mass": 150000, "volume": "20L" }, "damage_reduction": { "all": 16 } }, + { + "type": "vehicle_part", + "id": "veh_table_foldable", + "name": { "str": "flat-packable table" }, + "symbol": "#", + "looks_like": "veh_table_wood", + "categories": [ "utility" ], + "color": "red", + "broken_symbol": "#", + "broken_color": "light_gray", + "damage_modifier": 30, + "durability": 70, + "size": 80, + "item": "foldwoodframe", + "folded_volume": "12500 ml", + "location": "center", + "requirements": { + "install": { "skills": [ [ "fabrication", 1 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, + "removal": { "skills": [ [ "fabrication", 2 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, + "repair": { "skills": [ [ "fabrication", 2 ] ], "time": "15 m", "using": [ [ "adhesive", 2 ] ] } + }, + "flags": [ "CARGO", "OBSTACLE", "FLAT_SURF", "FOLDABLE" ], + "breaks_into": [ + { "item": "2x4", "count": [ 1, 6 ] }, + { "item": "splinter", "count": [ 4, 6 ] }, + { "item": "nail", "charges": [ 4, 7 ] } + ], + "damage_reduction": { "all": 16 } + }, { "type": "vehicle_part", "id": "workbench", @@ -1268,6 +1320,26 @@ "breaks_into": [ { "item": "steel_lump" }, { "item": "steel_chunk", "count": [ 1, 3 ] }, { "item": "scrap", "count": [ 1, 3 ] } ], "damage_reduction": { "all": 15 } }, + { + "copy-from": "mountable_heater", + "id": "mountable_heater_small", + "type": "vehicle_part", + "name": { "str": "small vehicle-mounted heater" }, + "item": "mountable_heater_small", + "//": "going with half energy draw based on difference between small and large space heaters", + "epower": -350, + "bonus": 10, + "folded_volume": "3750 ml", + "requirements": { + "install": { "skills": [ [ "mechanics", 1 ], [ "electronics", 1 ] ], "time": "2 m", "using": [ [ "vehicle_screw", 1 ] ] }, + "removal": { "skills": [ [ "mechanics", 1 ] ], "time": "1 m", "using": [ [ "vehicle_screw", 1 ] ] }, + "repair": { "skills": [ [ "mechanics", 1 ] ], "time": "30 s", "using": [ [ "adhesive", 1 ] ] } + }, + "flags": [ "CTRL_ELECTRONIC", "ENABLED_DRAINS_EPOWER", "SPACE_HEATER", "FOLDABLE" ], + "emissions": [ "emit_hot_air2_stream" ], + "breaks_into": [ { "item": "steel_lump" }, { "item": "steel_chunk", "count": [ 1, 3 ] }, { "item": "scrap", "count": [ 1, 3 ] } ], + "damage_reduction": { "all": 15 } + }, { "id": "mountable_cooler", "type": "vehicle_part", @@ -1647,6 +1719,20 @@ ], "damage_reduction": { "all": 9 } }, + { + "type": "vehicle_part", + "id": "foldable_solar_panel", + "copy-from": "solar_panel", + "looks_like": "solar_panel", + "name": { "str": "collapsible solar array" }, + "color": "light_blue", + "broken_color": "light_gray", + "proportional": { "epower": 0.4, "durability": 0.5 }, + "folded_volume": "2 L", + "description": "A small array of solar panels designed to be able to fold into one another.", + "item": "folding_solar_panel", + "extend": { "flags": [ "FOLDABLE" ] } + }, { "type": "vehicle_part", "id": "reinforced_solar_panel", diff --git a/data/json/vehicleparts/vp_flags.json b/data/json/vehicleparts/vp_flags.json index 720829f803b41..e1bba2de6adac 100644 --- a/data/json/vehicleparts/vp_flags.json +++ b/data/json/vehicleparts/vp_flags.json @@ -315,6 +315,11 @@ "id": "E_COLD_START", "type": "json_flag" }, + { + "id": "E_DIESEL_FUEL", + "type": "json_flag", + "info": "Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn biodiesel or lamp oil, though somewhat less efficiently." + }, { "id": "E_HEATER", "type": "json_flag" diff --git a/data/json/vehicleparts/wheel.json b/data/json/vehicleparts/wheel.json index cb06c23df9413..7c4e98d725512 100644 --- a/data/json/vehicleparts/wheel.json +++ b/data/json/vehicleparts/wheel.json @@ -171,6 +171,11 @@ "description": "A pair of small rail wheels. It performs well when riding on a pair of small rails. It performs terribly when not on a rail. Moreover, you can't steer it.", "damage_modifier": 50, "breaks_into": [ { "item": "scrap", "count": [ 2, 3 ] }, { "item": "steel_chunk", "count": [ 1, 2 ] } ], + "requirements": { + "install": { "skills": [ [ "mechanics", 0 ] ], "time": "60 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, + "removal": { "skills": [ [ "mechanics", 0 ] ], "time": "30 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, + "repair": { "skills": [ [ "mechanics", 2 ] ], "time": "60 m", "using": [ [ "welding_standard", 5 ] ] } + }, "damage_reduction": { "all": 60 } }, { @@ -291,8 +296,8 @@ "wheel_type": "off-road", "contact_area": 30, "requirements": { - "install": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_fasten", 1 ] ] }, - "removal": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_fasten", 1 ] ] }, + "install": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, + "removal": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, "repair": { "skills": [ [ "mechanics", 2 ] ], "time": "15 m", "using": [ [ "adhesive", 1 ], [ "plastics", 1 ] ] } }, "flags": [ "WHEEL", "NEEDS_JACKING", "STABLE", "STEERABLE", "FOLDABLE", "NEEDS_WHEEL_MOUNT_LIGHT" ], @@ -321,8 +326,8 @@ "wheel_type": "standard", "contact_area": 40, "requirements": { - "install": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_fasten", 1 ] ] }, - "removal": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_fasten", 1 ] ] }, + "install": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, + "removal": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, "repair": { "skills": [ [ "mechanics", 2 ] ], "time": "15 m", "using": [ [ "adhesive", 1 ], [ "plastics", 1 ] ] } }, "flags": [ "WHEEL", "UNSTABLE_WHEEL", "NEEDS_JACKING", "FOLDABLE", "NEEDS_WHEEL_MOUNT_LIGHT" ], @@ -384,8 +389,8 @@ "wheel_type": "rigid", "contact_area": 4, "requirements": { - "install": { "skills": [ [ "mechanics", 1 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, - "removal": { "skills": [ [ "mechanics", 2 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, + "install": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_1", 1 ] ] }, + "removal": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_1", 1 ] ] }, "repair": { "skills": [ [ "mechanics", 2 ] ], "time": "15 m", "using": [ [ "welding_standard", 5 ] ] } }, "flags": [ "WHEEL", "NEEDS_JACKING", "STABLE", "FOLDABLE", "STEERABLE" ] @@ -413,8 +418,8 @@ "wheel_type": "off-road", "contact_area": 4, "requirements": { - "install": { "skills": [ [ "mechanics", 1 ] ], "time": "15 m", "using": [ [ "vehicle_fasten", 1 ] ] }, - "removal": { "skills": [ [ "mechanics", 2 ] ], "time": "15 m", "using": [ [ "vehicle_fasten", 1 ] ] }, + "install": { "skills": [ [ "mechanics", 1 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, + "removal": { "skills": [ [ "mechanics", 2 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, "repair": { "skills": [ [ "mechanics", 2 ] ], "time": "15 m", "using": [ [ "welding_standard", 5 ] ] } }, "flags": [ "WHEEL", "NEEDS_JACKING", "STABLE", "FOLDABLE", "STEERABLE" ] @@ -503,8 +508,8 @@ "wheel_type": "racing", "contact_area": 30, "requirements": { - "install": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, - "removal": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, + "install": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_1", 1 ] ] }, + "removal": { "skills": [ [ "mechanics", 0 ] ], "time": "15 m", "using": [ [ "vehicle_wrench_1", 1 ] ] }, "repair": { "skills": [ [ "mechanics", 2 ] ], "time": "15 m", "using": [ [ "adhesive", 1 ], [ "plastics", 1 ] ] } }, "flags": [ "WHEEL", "UNSTABLE_WHEEL", "FOLDABLE", "NEEDS_WHEEL_MOUNT_LIGHT" ] @@ -539,8 +544,8 @@ "damage_modifier": 50, "breaks_into": [ { "item": "plastic_chunk", "count": [ 1, 3 ] } ], "requirements": { - "install": { "skills": [ [ "mechanics", 0 ] ], "time": "4 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, - "removal": { "skills": [ [ "mechanics", 0 ] ], "time": "2 m", "using": [ [ "vehicle_wrench_2", 1 ] ] }, + "install": { "skills": [ [ "mechanics", 0 ] ], "time": "4 m", "using": [ [ "vehicle_wrench_1", 1 ] ] }, + "removal": { "skills": [ [ "mechanics", 0 ] ], "time": "2 m", "using": [ [ "vehicle_wrench_1", 1 ] ] }, "repair": { "skills": [ [ "mechanics", 1 ] ], "time": "15 m", "using": [ [ "adhesive", 1 ] ] } }, "rolling_resistance": 10.0, diff --git a/data/json/vehicles/vans_busses.json b/data/json/vehicles/vans_busses.json index ef975e8524468..97f085606a433 100644 --- a/data/json/vehicles/vans_busses.json +++ b/data/json/vehicles/vans_busses.json @@ -1669,11 +1669,11 @@ "type": "vehicle", "name": "Prison Bus", "blueprint": [ - [ "'''O'''''O-" ], - [ "'##O#####'H" ], - [ "+........'>" ], - [ "'##O####.'H" ], - [ "'''O''''+O-" ] + [ "''O'''''O-" ], + [ "'#O###|##'H" ], + [ "+.....+.#'>" ], + [ "'#O###|o.'H" ], + [ "''O''+'+O-" ] ], "parts": [ { "x": 0, "y": 0, "parts": [ "frame_cross", "seat", "seatbelt", "roof", "controls" ] }, @@ -1681,8 +1681,8 @@ { "x": 0, "y": -1, "part": "frame_vertical_left" }, { "x": 0, "y": -1, "parts": [ "reinforced_windshield_vertical_left", "roof" ] }, { "x": 0, "y": -1, "part": "plating_steel" }, - { "x": 0, "y": 1, "parts": [ "frame_cross", "roof", "aisle_vertical", "plating_steel" ] }, - { "x": 0, "y": 2, "parts": [ "frame_cross", "aisle_horizontal", "roof" ] }, + { "x": 0, "y": 1, "parts": [ "frame_cross", "roof", "seat", "seatbelt" ] }, + { "x": 0, "y": 2, "parts": [ "frame_cross", "aisle_vertical", "roof" ] }, { "x": 0, "y": 3, "parts": [ "frame_vertical_right", "door_front_right", "roof" ] }, { "x": 0, "y": 3, "part": "plating_steel" }, { "x": 1, "y": -1, "parts": [ "frame_vertical_T_left", "reinforced_windshield_nw" ] }, @@ -1710,72 +1710,70 @@ { "x": 2, "y": 2, "part": "plating_steel" }, { "x": 2, "y": 3, "parts": [ "frame_ne", "halfboard_ne", "headlight" ] }, { "x": 2, "y": 3, "part": "plating_steel" }, + { "x": -1, "y": 0, "parts": [ "frame_cross", "reclining_seat", "seatbelt", "roof" ] }, { "x": -1, "y": -1, "part": "frame_vertical_left" }, { "x": -1, "y": -1, "parts": [ "reinforced_windshield_vertical_left", "roof" ] }, { "x": -1, "y": -1, "part": "plating_steel" }, - { "x": -1, "y": 0, "parts": [ "frame_cross", "seat", "roof" ] }, - { "x": -1, "y": 1, "parts": [ "frame_cross", "aisle_vertical", "roof" ] }, - { "x": -1, "y": 2, "parts": [ "frame_cross", "seat", "roof" ] }, - { "x": -1, "y": 3, "part": "frame_vertical_right" }, - { "x": -1, "y": 3, "parts": [ "reinforced_windshield_vertical_right", "roof" ] }, - { "x": -1, "y": 3, "parts": [ "plating_steel", { "part": "tank", "fuel": "diesel" } ] }, + { "x": -1, "y": 1, "parts": [ "frame_cross", "roof", "aisle_vertical" ] }, + { "x": -1, "y": 2, "parts": [ "frame_cross", "box", "roof" ] }, + { "x": -1, "y": 3, "parts": [ "frame_cross", "reinforced_windshield_vertical_left", "roof", "plating_steel" ] }, { "x": -2, "y": -1, "part": "frame_vertical_left" }, { "x": -2, "y": -1, "parts": [ "reinforced_windshield_vertical_left", "roof" ] }, { "x": -2, "y": -1, "part": "plating_steel" }, - { "x": -2, "y": 0, "parts": [ "frame_cross", "seat", "roof" ] }, - { "x": -2, "y": 1, "parts": [ "frame_cross", "trunk_floor", "roof" ] }, - { "x": -2, "y": 2, "parts": [ "frame_cross", "seat", "roof" ] }, + { "x": -2, "y": 0, "parts": [ "frame_cross", "reinforced_windshield_horizontal_front", "roof" ] }, + { "x": -2, "y": 1, "parts": [ "frame_cross", "hddoor", "roof" ] }, + { "x": -2, "y": 2, "parts": [ "frame_cross", "reinforced_windshield_horizontal_front", "roof" ] }, { "x": -2, "y": 3, "part": "frame_vertical_right" }, - { "x": -2, "y": 3, "parts": [ "reinforced_windshield_vertical_right", "roof" ] }, + { "x": -2, "y": 3, "parts": [ "reinforced_windshield_vertical", "roof" ] }, { "x": -2, "y": 3, "parts": [ "plating_steel", { "part": "tank", "fuel": "diesel" } ] }, { "x": -3, "y": -1, "part": "frame_vertical_left" }, { "x": -3, "y": -1, "parts": [ "reinforced_windshield_vertical_left", "roof" ] }, { "x": -3, "y": -1, "part": "plating_steel" }, - { "x": -3, "y": 0, "parts": [ "frame_cross", "seat", "roof" ] }, + { "x": -3, "y": 0, "parts": [ "frame_cross", "metal_bench", "roof" ] }, { "x": -3, "y": 1, "parts": [ "frame_cross", "aisle_vertical", "roof" ] }, - { "x": -3, "y": 2, "parts": [ "frame_cross", "seat", "roof" ] }, + { "x": -3, "y": 2, "parts": [ "frame_cross", "aisle_vertical", "roof" ] }, { "x": -3, "y": 3, "part": "frame_vertical_right" }, - { "x": -3, "y": 3, "parts": [ "reinforced_windshield_vertical_right", "roof" ] }, - { "x": -3, "y": 3, "part": "plating_steel" }, + { "x": -3, "y": 3, "parts": [ "hddoor", "roof" ] }, + { "x": -3, "y": 3, "parts": [ "plating_steel", { "part": "tank", "fuel": "diesel" } ] }, { "x": -4, "y": -1, "part": "frame_vertical_left" }, { "x": -4, "y": -1, "parts": [ "reinforced_windshield_vertical_left", "roof" ] }, { "x": -4, "y": -1, "part": "plating_steel" }, - { "x": -4, "y": 0, "parts": [ "frame_cross", "seat", "roof" ] }, + { "x": -4, "y": 0, "parts": [ "frame_cross", "metal_bench", "roof" ] }, { "x": -4, "y": 1, "parts": [ "frame_cross", "aisle_vertical", "roof" ] }, - { "x": -4, "y": 2, "parts": [ "frame_cross", "seat", "roof" ] }, + { "x": -4, "y": 2, "parts": [ "frame_cross", "metal_bench", "roof" ] }, { "x": -4, "y": 3, "part": "frame_vertical_right" }, - { "x": -4, "y": 3, "parts": [ "reinforced_windshield_vertical_right", "roof" ] }, + { "x": -4, "y": 3, "parts": [ "reinforced_windshield_vertical", "roof" ] }, { "x": -4, "y": 3, "part": "plating_steel" }, { "x": -5, "y": -1, "part": "frame_vertical_left" }, { "x": -5, "y": -1, "parts": [ "reinforced_windshield_vertical_left", "roof" ] }, { "x": -5, "y": -1, "parts": [ "wheel_mount_medium", "wheel_wide" ] }, { "x": -5, "y": -1, "part": "plating_steel" }, - { "x": -5, "y": 0, "parts": [ "frame_cross", "seat", "roof" ] }, + { "x": -5, "y": 0, "parts": [ "frame_cross", "metal_bench", "roof" ] }, { "x": -5, "y": 0, "parts": [ "wheel_mount_medium", "wheel_wide" ] }, - { "x": -5, "y": 1, "parts": [ "frame_cross", "trunk_floor", "roof" ] }, - { "x": -5, "y": 2, "parts": [ "frame_cross", "seat", "roof" ] }, + { "x": -5, "y": 1, "parts": [ "frame_cross", "lit_aisle", "roof" ] }, + { "x": -5, "y": 2, "parts": [ "frame_cross", "metal_bench", "roof" ] }, { "x": -5, "y": 2, "parts": [ "wheel_mount_medium", "wheel_wide" ] }, { "x": -5, "y": 3, "part": "frame_vertical_right" }, - { "x": -5, "y": 3, "parts": [ "reinforced_windshield_vertical_right", "roof" ] }, + { "x": -5, "y": 3, "parts": [ "reinforced_windshield_vertical", "roof" ] }, { "x": -5, "y": 3, "parts": [ "wheel_mount_medium", "wheel_wide" ] }, { "x": -5, "y": 3, "part": "plating_steel" }, { "x": -6, "y": -1, "part": "frame_vertical_left" }, { "x": -6, "y": -1, "parts": [ "reinforced_windshield_vertical_left", "roof" ] }, { "x": -6, "y": -1, "part": "plating_steel" }, - { "x": -6, "y": 0, "parts": [ "frame_cross", "seat", "roof" ] }, + { "x": -6, "y": 0, "parts": [ "frame_cross", "metal_bench", "roof" ] }, { "x": -6, "y": 1, "parts": [ "frame_cross", "aisle_vertical", "roof" ] }, - { "x": -6, "y": 2, "parts": [ "frame_cross", "seat", "roof" ] }, + { "x": -6, "y": 2, "parts": [ "frame_cross", "metal_bench", "roof" ] }, { "x": -6, "y": 3, "part": "frame_vertical_right" }, - { "x": -6, "y": 3, "parts": [ "reinforced_windshield_vertical_right", "roof" ] }, + { "x": -6, "y": 3, "parts": [ "reinforced_windshield_vertical", "roof" ] }, { "x": -6, "y": 3, "part": "plating_steel" }, { "x": -7, "y": -1, "part": "frame_vertical_left" }, { "x": -7, "y": -1, "parts": [ "reinforced_windshield_vertical_left", "roof" ] }, { "x": -7, "y": -1, "part": "plating_steel" }, - { "x": -7, "y": 0, "parts": [ "frame_cross", "seat", "roof" ] }, + { "x": -7, "y": 0, "parts": [ "frame_cross", "metal_bench", "roof" ] }, { "x": -7, "y": 1, "parts": [ "frame_cross", "aisle_vertical", "roof" ] }, - { "x": -7, "y": 2, "parts": [ "frame_cross", "seat", "roof" ] }, + { "x": -7, "y": 2, "parts": [ "frame_cross", "metal_bench", "roof" ] }, { "x": -7, "y": 3, "part": "frame_vertical_right" }, - { "x": -7, "y": 3, "parts": [ "reinforced_windshield_vertical_right", "roof" ] }, + { "x": -7, "y": 3, "parts": [ "reinforced_windshield_vertical", "roof" ] }, { "x": -7, "y": 3, "part": "plating_steel" }, { "x": -8, "y": -1, "parts": [ "frame_sw", "reinforced_windshield_sw_edge", "roof" ] }, { "x": -8, "y": -1, "part": "plating_steel" }, @@ -1791,21 +1789,9 @@ { "x": -8, "y": 3, "part": "plating_steel" } ], "items": [ - { "x": -1, "y": 0, "chance": 7, "item_groups": [ "contraband" ] }, - { "x": 0, "y": 0, "chance": 20, "items": [ "id_science_transport_1" ] }, - { "x": -1, "y": 2, "chance": 6, "item_groups": [ "contraband" ] }, - { "x": -2, "y": 0, "chance": 5, "item_groups": [ "contraband" ] }, - { "x": -2, "y": 2, "chance": 11, "item_groups": [ "contraband" ] }, - { "x": -3, "y": 0, "chance": 8, "item_groups": [ "contraband" ] }, - { "x": -3, "y": 2, "chance": 5, "item_groups": [ "contraband" ] }, - { "x": -4, "y": 0, "chance": 6, "item_groups": [ "contraband" ] }, - { "x": -4, "y": 2, "chance": 10, "item_groups": [ "contraband" ] }, - { "x": -5, "y": 0, "chance": 6, "item_groups": [ "contraband" ] }, - { "x": -5, "y": 2, "chance": 11, "item_groups": [ "contraband" ] }, - { "x": -6, "y": 0, "chance": 7, "item_groups": [ "contraband" ] }, - { "x": -6, "y": 2, "chance": 9, "item_groups": [ "contraband" ] }, - { "x": -7, "y": 0, "chance": 8, "item_groups": [ "contraband" ] }, - { "x": -7, "y": 2, "chance": 7, "item_groups": [ "contraband" ] } + { "x": -1, "y": 2, "chance": 35, "magazine": 100, "ammo": 50, "item_groups": [ "guns_cop" ] }, + { "x": -1, "y": 2, "chance": 20, "magazine": 100, "ammo": 50, "item_groups": [ "guns_shotgun_milspec" ] }, + { "x": -1, "y": 2, "chance": 20, "items": [ "id_science_transport_1" ] } ] }, { @@ -2339,6 +2325,9 @@ { "x": -5, "y": 3, "parts": [ "hdframe_se", "hdboard_se", "hdroof", "plating_steel" ] }, { "x": -5, "y": 3, "parts": [ "wheel_mount_medium", "wheel_wide" ] } ], - "items": [ { "x": 0, "y": 1, "chance": 70, "magazine": 100, "ammo": 50, "item_groups": [ "guns_cop" ] } ] + "items": [ + { "x": 0, "y": 1, "chance": 70, "magazine": 100, "ammo": 50, "item_groups": [ "guns_cop" ] }, + { "x": 0, "y": 1, "chance": 10, "items": [ "id_science_transport_1" ] } + ] } ] diff --git a/data/json/weather_type.json b/data/json/weather_type.json index 2c81f2bd4a79b..2370c12f069a2 100644 --- a/data/json/weather_type.json +++ b/data/json/weather_type.json @@ -283,5 +283,31 @@ { "compare_int": [ { "weather": "windpower" }, { "const": 15 } ], "op": ">=" } ] } + }, + { + "id": "portal_storm", + "type": "weather_type", + "name": "Portal Storm", + "color": "red", + "map_color": "red", + "sym": "O", + "ranged_penalty": 0, + "sight_penalty": 1.0, + "light_modifier": -5, + "sound_attn": 0, + "dangerous": true, + "precip": "none", + "rains": false, + "acidic": false, + "tiles_animation": "weather_portal_storm", + "weather_animation": { "factor": 0.01, "color": "red", "sym": "*" }, + "sound_category": "portal_storm", + "sun_intensity": "light", + "condition": { + "compare_int": [ { "global_val": "var", "var_name": "cause_portal_storm", "type": "weather", "context": "ps" }, { "const": 1 } ], + "op": "=" + }, + "duration_min": "2 hours", + "duration_max": "4 hours" } ] diff --git a/data/mods/Aftershock/items/inactiverobot.json b/data/mods/Aftershock/items/inactiverobot.json index e720a4764692e..8e8f6b9fbd35e 100644 --- a/data/mods/Aftershock/items/inactiverobot.json +++ b/data/mods/Aftershock/items/inactiverobot.json @@ -22,30 +22,6 @@ "skills": [ "cooking", "computer" ] } }, - { - "id": "bot_chickenbot", - "type": "TOOL", - "name": { "str": "inactive chicken walker" }, - "description": "This is an inactive chicken walker. Using this item involves placing it on the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm cartridge grenades in your inventory (if you wish to divide your ammunition, set aside whatever ammunition you do NOT want to give the robot) and turning it on. If reprogrammed and rewired successfully the chicken walker will then identify you as a friendly, roam around or follow you, and attack all enemies with a built-in firearm and grenade launcher.", - "weight": "120000 g", - "volume": "92500 ml", - "price": 50000000, - "to_hit": -3, - "bashing": 8, - "material": [ "steel" ], - "symbol": ";", - "color": "light_green", - "use_action": { - "type": "place_monster", - "monster_id": "mon_chickenbot", - "friendly_msg": "The chicken walker rises to its feet, sways away from you and begins surveying the area.", - "hostile_msg": "The chicken walker whirrs and aims directly at you. Take cover!", - "//": "Milspec, but was deployed in active service implying a reliable IFF", - "difficulty": 9, - "moves": 250, - "skills": [ "electronics", "computer" ] - } - }, { "id": "bot_tankbot", "looks_like": "broken_tankbot", diff --git a/data/mods/Aftershock/items/obsolete.json b/data/mods/Aftershock/items/obsolete.json index fdb9f62c2bfde..702e2f0e3d386 100644 --- a/data/mods/Aftershock/items/obsolete.json +++ b/data/mods/Aftershock/items/obsolete.json @@ -293,7 +293,7 @@ "material_thickness": 2, "warmth": 20, "environmental_protection": 11, - "qualities": [ [ "GLARE", 3 ] ], + "qualities": [ [ "GLARE", 1 ] ], "charges_per_use": 1, "ammo": "battery", "use_action": { diff --git a/data/mods/Aftershock/recipes/recipes.json b/data/mods/Aftershock/recipes/recipes.json index daf14bdfd2a1f..089c63a4352da 100644 --- a/data/mods/Aftershock/recipes/recipes.json +++ b/data/mods/Aftershock/recipes/recipes.json @@ -371,7 +371,7 @@ { "id": "SAW_M_FINE", "level": 1 }, { "id": "SCREW_FINE", "level": 1 }, { "id": "WRENCH_FINE", "level": 1 }, - { "id": "GLARE", "level": 2 }, + { "id": "GLARE", "level": 1 }, { "id": "DRILL", "level": 2 }, { "id": "SAW_W", "level": 1 } ], diff --git a/data/mods/Aftershock/recipes/requirements.json b/data/mods/Aftershock/recipes/requirements.json index 7f11aae4bd738..d0d0df9bd4001 100644 --- a/data/mods/Aftershock/recipes/requirements.json +++ b/data/mods/Aftershock/recipes/requirements.json @@ -39,7 +39,7 @@ "id": "welding_standard", "type": "requirement", "//": "Crafting or repair of steel items or installation of vehicle parts", - "qualities": [ { "id": "GLARE", "level": 2 } ], + "qualities": [ { "id": "GLARE", "level": 1 } ], "tools": [ [ [ "welder", 10 ], diff --git a/data/mods/CRT_EXPANSION/items/crt_armor.json b/data/mods/CRT_EXPANSION/items/crt_armor.json index 10d0a784b3cbd..50fe76bbb2a6f 100644 --- a/data/mods/CRT_EXPANSION/items/crt_armor.json +++ b/data/mods/CRT_EXPANSION/items/crt_armor.json @@ -15,7 +15,6 @@ "warmth": 30, "material_thickness": 2, "environmental_protection": 10, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATERPROOF", "STURDY", "SUN_GLASSES", "VARSIZE", "WATCH", "THERMOMETER" ], "armor": [ { "encumbrance": 20, "coverage": 100, "covers": [ "eyes", "mouth" ] } ] }, @@ -134,16 +133,6 @@ "flags": [ "STURDY", "BELTED", "BLOCK_WHILE_WORN", "WATER_FRIENDLY" ], "armor": [ { "encumbrance": 20, "coverage": 100, "covers": [ "arm_l", "arm_r" ] } ] }, - { - "id": "crt_belt", - "copy-from": "survivor_belt_notools", - "type": "ARMOR", - "name": "CRIT web belt", - "description": "CRIT standard-issue belt. Keeps your trousers up and your weapons on your hip.", - "color": "dark_gray", - "material": [ "leather", "brass" ], - "flags": [ "WATER_FRIENDLY" ] - }, { "id": "crt_iduster", "type": "ARMOR", diff --git a/data/mods/CRT_EXPANSION/items/crt_toolarmor.json b/data/mods/CRT_EXPANSION/items/crt_toolarmor.json index 6adc03c5070a3..339463b76b3f2 100644 --- a/data/mods/CRT_EXPANSION/items/crt_toolarmor.json +++ b/data/mods/CRT_EXPANSION/items/crt_toolarmor.json @@ -23,7 +23,6 @@ "warmth": 20, "material_thickness": 5, "environmental_protection": 16, - "qualities": [ [ "GLARE", 1 ] ], "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "battery": 250 } } ], "flags": [ "WATERPROOF", @@ -56,7 +55,7 @@ "relic_data": { "passive_effects": [ { "has": "WORN", "condition": "ALWAYS", "values": [ { "value": "PERCEPTION", "add": 2 } ] } ] }, "material_thickness": 5, "environmental_protection": 20, - "qualities": [ [ "GLARE", 2 ] ], + "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATERPROOF", "STURDY", diff --git a/data/mods/CRT_EXPANSION/items/crt_tools.json b/data/mods/CRT_EXPANSION/items/crt_tools.json index b654145c89c61..594c7620d2127 100644 --- a/data/mods/CRT_EXPANSION/items/crt_tools.json +++ b/data/mods/CRT_EXPANSION/items/crt_tools.json @@ -91,7 +91,7 @@ "symbol": ";", "qualities": [ [ "BUTCHER", 7 ] ], "flags": [ "UNBREAKABLE_MELEE" ], - "techniques": [ "WBLOCK_2", "tec_feint", "tec_counter", "BERSERK", "DSINERTIAL" ] + "techniques": [ "WBLOCK_2", "tec_feint", "BERSERK", "DSINERTIAL" ] }, { "id": "blade_crt", @@ -130,7 +130,7 @@ "qualities": [ [ "PRY", 2 ] ], "use_action": [ "CROWBAR" ], "flags": [ "UNBREAKABLE_MELEE" ], - "techniques": [ "WBLOCK_3", "tec_feint", "tec_counter", "BERSERK", "DSBI", "DSINERTIAL" ] + "techniques": [ "WBLOCK_3", "tec_feint", "BERSERK", "DSBI", "DSINERTIAL" ] }, { "type": "GENERIC", diff --git a/data/mods/Generic_Guns/recipes/recipes_firearms_repeater.json b/data/mods/Generic_Guns/recipes/recipes_firearms_repeater.json index 0b6ba029196a1..cfd07c925969a 100644 --- a/data/mods/Generic_Guns/recipes/recipes_firearms_repeater.json +++ b/data/mods/Generic_Guns/recipes/recipes_firearms_repeater.json @@ -72,7 +72,7 @@ "time": "3 h", "autolearn": true, "book_learn": [ [ "manual_pistol", 6 ] ], - "qualities": [ { "id": "SAW_M_FINE", "level": 1 }, { "id": "SCREW", "level": 1 }, { "id": "GLARE", "level": 2 } ], + "qualities": [ { "id": "SAW_M_FINE", "level": 1 }, { "id": "SCREW", "level": 1 }, { "id": "GLARE", "level": 1 } ], "proficiencies": [ { "proficiency": "prof_gunsmithing_basic" }, { "proficiency": "prof_gunsmithing_antique" } ], "using": [ [ "blacksmithing_standard", 4 ] ], "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ] ], diff --git a/data/mods/Graphical_Overmap/fonts.json.txt b/data/mods/Graphical_Overmap/fonts.json.txt index 075c5f4b47545..c5c6ec7bb21b2 100644 --- a/data/mods/Graphical_Overmap/fonts.json.txt +++ b/data/mods/Graphical_Overmap/fonts.json.txt @@ -1,15 +1,15 @@ { "typeface": [ - "data/font/Terminus.ttf", + "data/font/VecTerminus12Medium.otf", "data/font/unifont.ttf" ], "map_typeface": [ - "data/font/Terminus.ttf", + "data/font/VecTerminus12Medium.otf", "data/font/unifont.ttf" ], "overmap_typeface": [ "data/font/map_font_LARWICK.png", - "data/font/Terminus.ttf", + "data/font/VecTerminus12Medium.otf", "data/font/unifont.ttf" ] } diff --git a/data/mods/MMA/martialarts.json b/data/mods/MMA/martialarts.json index acaac1e75ae88..a6e55913cc1a3 100644 --- a/data/mods/MMA/martialarts.json +++ b/data/mods/MMA/martialarts.json @@ -279,24 +279,33 @@ "leg_block_with_bio_armor_legs": true, "static_buffs": [ { - "id": "mma_buff_panzer_static", + "id": "mma_buff_panzer_static1", "name": "Schatten Folgen", - "description": "\"Shadow Tracking\"\nAs a künstler, you are trained to stay in your target's blind spot.\n\n+1 Dodge attemps, Dodge Skill increased by 12%% of Perception.", + "description": "\"Shadow Tracking\"\nAs a künstler, you are trained to stay in your target's blind spot.\n\n+1 Dodge attemps, Dodging Skill increased by 15%% of Perception.", "unarmed_allowed": true, "melee_allowed": true, "bonus_dodges": 1, - "flat_bonuses": [ { "stat": "dodge", "scaling-stat": "per", "scale": 0.12 } ] + "flat_bonuses": [ { "stat": "dodge", "scaling-stat": "per", "scale": 0.15 } ] + }, + { + "id": "mma_buff_panzer_static2", + "name": "Seinerweisen", + "description": "\"Personal Wisdom\"\nThrough your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n\nGain bonus Electric damage equal to 50% of Perception.", + "skill_requirements": [ { "name": "unarmed", "level": 4 } ], + "unarmed_allowed": true, + "melee_allowed": true, + "flat_bonuses": [ { "stat": "damage", "type": "electric", "scaling-stat": "per", "scale": 0.5 } ] } ], "ondodge_buffs": [ { "id": "mma_buff_panzer_ondodge", "name": "Einzug Rüstungen", - "description": "\"Armor Penetration\"\nBy attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n+5 bash Armor Penetration.\nLasts 2 turns.", - "skill_requirements": [ { "name": "unarmed", "level": 2 } ], + "description": "\"Armor Penetration\"\nBy attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\nLasts 3 turns.", + "skill_requirements": [ { "name": "unarmed", "level": 3 } ], "unarmed_allowed": true, "melee_allowed": true, - "buff_duration": 2, + "buff_duration": 3, "flat_bonuses": [ { "stat": "hit", "scale": 1.0 }, { "stat": "arpen", "type": "bash", "scaling-stat": "per", "scale": 0.5 }, @@ -305,7 +314,7 @@ ] } ], - "techniques": [ "mma_tec_panzer_counter", "mma_tec_panzer_somersault", "mma_tec_panzer_precise", "mma_tec_panzer_rapid" ], + "techniques": [ "mma_tec_panzer_somersault", "mma_tec_panzer_precise", "mma_tec_panzer_rapid" ], "weapons": [ "bio_claws_weapon", "bio_blade_weapon" ] }, { @@ -354,6 +363,7 @@ "skill_requirements": [ { "name": "unarmed", "level": 1 } ], "unarmed_allowed": true, "buff_duration": 3, + "persists": true, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.5 }, { "stat": "damage", "type": "cut", "scale": 1.5 }, @@ -372,9 +382,21 @@ "arm_block": 0, "learn_difficulty": 10, "primary_skill": "bashing", - "ongethit_buffs": [ + "onblock_buffs": [ + { + "id": "mma_buff_setting_sun_onblock", + "name": "Fool's Strike", + "description": "You moved in such a deceptived that you have turned your opponent's attack against them.\n\n+20% bash damage.\nLasts 2 turns.", + "skill_requirements": [ { "name": "unarmed", "level": 1 } ], + "melee_allowed": true, + "unarmed_allowed": true, + "buff_duration": 2, + "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.15 } ] + } + ], + "ondodge_buffs": [ { - "id": "mma_buff_setting_sun_ongethit", + "id": "mma_buff_setting_sun_ondodge", "name": "Feigned Opening", "description": "By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n\n+20 Speed.\nLasts 1 turn.", "skill_requirements": [ { "name": "unarmed", "level": 1 } ], @@ -388,20 +410,15 @@ { "id": "mma_buff_setting_sun_onpause", "name": "Baffling Defense", - "description": "You ready yourself for your opponent attack while preparing to send them flying!\n\nDodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\nLasts 1 turn.", + "description": "You ready yourself for your opponent attack while preparing to send them flying!\n\nDodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\nLasts 2 turns.", "skill_requirements": [ { "name": "unarmed", "level": 2 } ], "melee_allowed": true, "unarmed_allowed": true, - "buff_duration": 1, + "buff_duration": 2, "flat_bonuses": [ { "stat": "dodge", "scaling-stat": "int", "scale": 0.2 } ] } ], - "techniques": [ - "mma_tec_setting_sun_counter", - "mma_tec_setting_sun_stun", - "mma_tec_setting_sun_throw", - "mma_tec_setting_sun_throw_crit" - ], + "techniques": [ "mma_tec_setting_sun_stun", "mma_tec_setting_sun_throw", "mma_tec_setting_sun_throw_crit" ], "weapons": [ "i_staff", "kris", @@ -465,7 +482,18 @@ "flat_bonuses": [ { "stat": "block_effectiveness", "scale": 1.0 } ] } ], - "techniques": [ "mma_tec_shii_cho_counter", "mma_tec_shii_cho_disarm", "mma_tec_shii_cho_wide" ], + "onblock_buffs": [ + { + "id": "mma_buff_shii_cho_onblock", + "name": "Flowing Water", + "description": "You are able to deflect an attack and counter in the same motion.\n\n-25% move cost.\nLasts 1 turn.", + "skill_requirements": [ { "name": "melee", "level": 4 } ], + "melee_allowed": true, + "buff_duration": 1, + "mult_bonuses": [ { "stat": "movecost", "scale": 0.75 } ] + } + ], + "techniques": [ "mma_tec_shii_cho_disarm", "mma_tec_shii_cho_wide" ], "weapons": [ "bokken", "bokken_inferior", @@ -537,7 +565,7 @@ "skill_requirements": [ { "name": "melee", "level": 2 } ], "melee_allowed": true, "unarmed_allowed": true, - "buff_duration": 1, + "buff_duration": 3, "max_stacks": 5, "flat_bonuses": [ { "stat": "armor", "type": "bash", "scale": 1.0 }, @@ -562,7 +590,7 @@ "melee_allowed": true, "unarmed_allowed": true, "required_buffs_all": [ "mma_buff_stone_dragon_onmove1" ], - "buff_duration": 4, + "buff_duration": 1, "persists": true, "flat_bonuses": [ { "stat": "armor", "type": "bash", "scale": -2.0 }, diff --git a/data/mods/MMA/techniques.json b/data/mods/MMA/techniques.json index cdc576f762c20..a9deba52eee6d 100644 --- a/data/mods/MMA/techniques.json +++ b/data/mods/MMA/techniques.json @@ -173,23 +173,6 @@ { "stat": "damage", "type": "stab", "scale": 1.25 } ] }, - { - "type": "technique", - "id": "mma_tec_panzer_counter", - "name": "Ausstoß", - "//": "Outer Thrust.", - "messages": [ "You redirect %s's attack against them", " redirects %s's attack against them" ], - "skill_requirements": [ { "name": "unarmed", "level": 4 } ], - "melee_allowed": true, - "unarmed_allowed": true, - "dodge_counter": true, - "crit_ok": true, - "mult_bonuses": [ - { "stat": "damage", "type": "bash", "scale": 1.2 }, - { "stat": "damage", "type": "cut", "scale": 1.2 }, - { "stat": "damage", "type": "stab", "scale": 1.2 } - ] - }, { "type": "technique", "id": "mma_tec_panzer_somersault", @@ -211,7 +194,11 @@ "unarmed_allowed": true, "crit_tec": true, "stun_dur": 1, - "flat_bonuses": [ { "stat": "arpen", "type": "bash", "scale": 10.0 } ], + "flat_bonuses": [ + { "stat": "arpen", "type": "bash", "scaling-stat": "per", "scale": 1.0 }, + { "stat": "arpen", "type": "cut", "scaling-stat": "per", "scale": 1.0 }, + { "stat": "arpen", "type": "stab", "scaling-stat": "per", "scale": 1.0 } + ], "mult_bonuses": [ { "stat": "movecost", "scale": 1.2 }, { "stat": "damage", "type": "bash", "scale": 1.5 } ] }, { @@ -238,7 +225,6 @@ "skill_requirements": [ { "name": "unarmed", "level": 3 } ], "unarmed_allowed": true, "crit_ok": true, - "flat_bonuses": [ { "stat": "hit", "scale": -2.0 } ], "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 2.0 } ] }, { @@ -271,21 +257,6 @@ "crit_ok": true, "down_dur": 1 }, - { - "type": "technique", - "id": "mma_tec_setting_sun_counter", - "name": "Fool's Strike", - "messages": [ "You completely fool %s and strike back", " completely fools %s and strike back" ], - "melee_allowed": true, - "unarmed_allowed": true, - "block_counter": true, - "crit_ok": true, - "mult_bonuses": [ - { "stat": "damage", "type": "bash", "scale": 1.2 }, - { "stat": "damage", "type": "cut", "scale": 1.2 }, - { "stat": "damage", "type": "stab", "scale": 1.2 } - ] - }, { "type": "technique", "id": "mma_tec_setting_sun_stun", @@ -326,19 +297,6 @@ "weighting": 2, "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.5 } ] }, - { - "type": "technique", - "id": "mma_tec_shii_cho_counter", - "name": "Flowing Water", - "messages": [ - "You deflect %s's attack and counter in one fluid motion", - " deflects %s's attack and counters in one fluid motion" - ], - "skill_requirements": [ { "name": "melee", "level": 4 } ], - "melee_allowed": true, - "crit_ok": true, - "block_counter": true - }, { "type": "technique", "id": "mma_tec_shii_cho_disarm", @@ -398,9 +356,9 @@ "down_dur": 1, "knockback_dist": 2, "mult_bonuses": [ - { "stat": "damage", "type": "bash", "scale": 1.2 }, - { "stat": "damage", "type": "cut", "scale": 1.2 }, - { "stat": "damage", "type": "stab", "scale": 1.2 } + { "stat": "damage", "type": "bash", "scale": 1.3 }, + { "stat": "damage", "type": "cut", "scale": 1.3 }, + { "stat": "damage", "type": "stab", "scale": 1.3 } ] }, { diff --git a/data/mods/Magiclysm/items/black_dragon_items.json b/data/mods/Magiclysm/items/black_dragon_items.json index d507dc91c1f71..9ed86c0576fb8 100644 --- a/data/mods/Magiclysm/items/black_dragon_items.json +++ b/data/mods/Magiclysm/items/black_dragon_items.json @@ -153,7 +153,6 @@ "material_thickness": 5, "environmental_protection": 3, "techniques": [ "WBLOCK_1" ], - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "VARSIZE", "WATERPROOF", "STURDY", "SUN_GLASSES" ] }, { diff --git a/data/mods/Magiclysm/items/books.json b/data/mods/Magiclysm/items/books.json index ba3642e57161e..2ac07add918c2 100644 --- a/data/mods/Magiclysm/items/books.json +++ b/data/mods/Magiclysm/items/books.json @@ -35,5 +35,25 @@ "intelligence": 9, "time": "45 m", "fun": 0 + }, + { + "id": "textbook_mithril", + "type": "BOOK", + "name": { "str_sp": "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" }, + "description": "This book is written in a runic language unfamiliar to you. Fortunately, there are several very detailed pictures that demonstrate the process of forging a sword from an ingot of silvery metal. You get the impression that this is some sort of textbook for blacksmiths.", + "weight": "654 g", + "volume": "1250 ml", + "price": 6400, + "price_postapoc": 2250, + "material": [ "paper" ], + "symbol": "?", + "color": "blue", + "skill": "fabrication", + "required_level": 7, + "max_level": 10, + "proficiencies": [ { "proficiency": "prof_bladesmith", "time_factor": 0.2, "fail_factor": 0.3, "include_prereqs": false } ], + "intelligence": 9, + "time": "60 m", + "fun": -1 } ] diff --git a/data/mods/Magiclysm/items/enchanted_masks.json b/data/mods/Magiclysm/items/enchanted_masks.json index 82fe2de62d8b1..fa49d8f60f061 100644 --- a/data/mods/Magiclysm/items/enchanted_masks.json +++ b/data/mods/Magiclysm/items/enchanted_masks.json @@ -38,7 +38,7 @@ "copy-from": "mmask", "environmental_protection": 6, "flags": [ "FANCY", "WATER_FRIENDLY", "SUN_GLASSES", "FIX_NEARSIGHT", "FIX_FARSIGHT", "ZOOM" ], - "qualities": [ [ "GLARE", 2 ] ], + "qualities": [ [ "GLARE", 1 ] ], "relic_data": { "passive_effects": [ { "has": "WORN", "condition": "ALWAYS", "values": [ { "value": "PERCEPTION", "multiply": 0.25 } ] } ] }, diff --git a/data/mods/Magiclysm/items/enchanted_melee.json b/data/mods/Magiclysm/items/enchanted_melee.json index 820c2c673e6d2..17243c0057f05 100644 --- a/data/mods/Magiclysm/items/enchanted_melee.json +++ b/data/mods/Magiclysm/items/enchanted_melee.json @@ -721,6 +721,7 @@ }, { "id": "rune_technomancer_weapon", + "looks_like": "halligan", "type": "GENERIC", "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", @@ -740,6 +741,7 @@ }, { "id": "rune_technomancer_weapon_adept", + "looks_like": "halligan", "type": "TOOL", "name": { "str": "Technomancer mana-toolbar" }, "//": "Pretty much the same as the other, but now with a cool touchscreen that casts mirror image and does some minor things", @@ -802,6 +804,7 @@ }, { "id": "rune_kelvinist_weapon", + "looks_like": "longsword", "type": "GENERIC", "name": { "str": "Kelvinist flamberge" }, "//": "Flame-bladed sword covers half of Kelvinist's heat-cold theme. Combat stats equivalent to cutlass +1 with BRUTAL technique.", @@ -823,6 +826,7 @@ }, { "id": "rune_kelvinist_ice_adept_weapon", + "looks_like": "scimitar", "type": "TOOL", "symbol": "/", "color": "light_gray", diff --git a/data/mods/Magiclysm/items/melee.json b/data/mods/Magiclysm/items/melee.json index 81d2a94d5d265..7dbf0c6cb4701 100644 --- a/data/mods/Magiclysm/items/melee.json +++ b/data/mods/Magiclysm/items/melee.json @@ -98,5 +98,15 @@ "cutting": 35, "relic_data": { "passive_effects": [ { "has": "WIELD", "condition": "ALWAYS", "hit_you_effect": [ { "id": "wolfsbane" } ] } ] }, "price": 200000 + }, + { + "id": "longsword_mithril", + "copy-from": "longsword", + "type": "TOOL", + "name": { "str": "longsword" }, + "description": "This is a classic medieval sword, the size being in-between the lighter arming sword and later two-handed swords. Thanks to the mysterious silvery metal it was forged from, it is stronger than tempered steel while weighing substantially less.", + "material": [ "mithril_metal" ], + "weight": "939 g", + "proportional": { "cutting": 1.5, "bashing": 0.7 } } ] diff --git a/data/mods/Magiclysm/items/tools.json b/data/mods/Magiclysm/items/tools.json index b23fb5ebfb8af..faea144bfcdee 100644 --- a/data/mods/Magiclysm/items/tools.json +++ b/data/mods/Magiclysm/items/tools.json @@ -145,6 +145,7 @@ "neoprene", "gutskin", "plastic", + "parabolan_wool", "kevlar_rigid" ], "skill": "tailor", diff --git a/data/mods/Magiclysm/martialarts.json b/data/mods/Magiclysm/martialarts.json index a381146f1e92b..d03a4548b2df6 100644 --- a/data/mods/Magiclysm/martialarts.json +++ b/data/mods/Magiclysm/martialarts.json @@ -165,7 +165,8 @@ "gunblade", "gram", "flamesword", - "longsword_holy" + "longsword_holy", + "longsword_mithril" ] } }, @@ -208,6 +209,7 @@ "knife_rambo_plus_two", "knife_trench_plus_one", "knife_trench_plus_two", + "longsword_mithril", "longsword_plus_one", "longsword_plus_two", "nodachi_plus_one", diff --git a/data/mods/Magiclysm/monster_attacks.json b/data/mods/Magiclysm/monster_attacks.json index f2b297a8a4598..a9cacc501d640 100644 --- a/data/mods/Magiclysm/monster_attacks.json +++ b/data/mods/Magiclysm/monster_attacks.json @@ -26,5 +26,24 @@ "hit_dmg_npc": "The %1$s crushes 's %2$s with its greatclub!", "no_dmg_msg_u": "The %1$s tries to crush your %2$s with its greatclub, but swings wide and stumbles.", "no_dmg_msg_npc": "The %1$s tries to crush 's %2$s with its greatclub, but swings wide and stumbles." + }, + { + "type": "monster_attack", + "attack_type": "melee", + "id": "flaming_whip", + "cooldown": 20, + "move_cost": 500, + "range": 15, + "damage_max_instance": [ { "damage_type": "heat", "amount": 30, "armor_penetration": 3, "armor_multiplier": 0.5 } ], + "body_parts": [ [ "leg_l", 4 ], [ "leg_r", 4 ], [ "head", 2 ], [ "arm_l", 4 ], [ "arm_r", 4 ], [ "torso", 6 ] ], + "effects": [ { "id": "onfire", "duration": 1, "chance": 10, "affect_hit_bp": true } ], + "hit_dmg_u": "The %1$s lashes you with its flaming whip!", + "hit_dmg_npc": "The %1$s lashes with its flaming whip!", + "miss_msg_u": "The %1$s lashes you with its flaming whip, but you dodge!", + "miss_msg_npc": "The %1$s lashes with its flaming whip, but they dodge!", + "no_dmg_msg_u": "The %1$s lashes you with its flaming whip, but fails to penetrate your armor!", + "no_dmg_msg_npc": "The %1$s lashes with its flaming whip, but fails to penetrate their armor!", + "dodgeable": true, + "no_adjacent": true } ] diff --git a/data/mods/Magiclysm/monsters/monsters.json b/data/mods/Magiclysm/monsters/monsters.json index c9995ff249e81..33eb9abaec5a9 100644 --- a/data/mods/Magiclysm/monsters/monsters.json +++ b/data/mods/Magiclysm/monsters/monsters.json @@ -487,5 +487,57 @@ "anger_triggers": [ "STALK", "FRIEND_ATTACKED", "FRIEND_DIED", "PLAYER_WEAK", "PLAYER_CLOSE" ], "zombify_into": "mon_were_zolf", "flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "KEENNOSE" ] + }, + { + "id": "mon_balrog", + "type": "MONSTER", + "name": { "str": "fiery nightmare" }, + "description": "A colossal figure which seems to consist entirely of shadows engulfed in flames. Its immense dark wings extend from wall to wall. Two eyes that resemble burning coals are gazing down on you with hatred. In one hand it holds a huge sword, in the other it has a many thonged whip, both glowing with red-hot flames.", + "default_faction": "nether", + "bodytype": "human", + "species": [ "UNKNOWN" ], + "volume": "875000 ml", + "weight": "300 kg", + "hp": 500, + "speed": 140, + "symbol": "B", + "color": "red", + "aggression": 100, + "morale": 100, + "melee_skill": 10, + "melee_dice": 7, + "melee_dice_sides": 5, + "melee_damage": [ { "damage_type": "heat", "amount": 20 } ], + "melee_cut": 10, + "armor_bash": 12, + "armor_cut": 12, + "armor_bullet": 25, + "bleed_rate": 0, + "vision_day": 83, + "vision_night": 60, + "harvest": "exempt", + "special_attacks": [ + { + "id": "smash", + "move_cost": 110, + "cooldown": 8, + "min_mul": 0.8, + "damage_max_instance": [ { "damage_type": "heat", "amount": 18, "armor_multiplier": 0.7 } ] + }, + { + "id": "impale", + "min_mul": 1.5, + "max_mul": 3, + "damage_max_instance": [ { "damage_type": "heat", "amount": 18, "armor_multiplier": 0.7 } ] + }, + { + "id": "cut_throat", + "damage_max_instance": [ { "damage_type": "heat", "amount": 18, "armor_multiplier": 0.7 } ] + }, + { "id": "flaming_whip" } + ], + "death_function": { "corpse_type": "NO_CORPSE", "message": "The %s melts away." }, + "path_settings": { "avoid_traps": true, "avoid_sharp": true }, + "flags": [ "SEES", "WARM", "BASHES", "DESTROYS", "NO_BREATHE", "PUSH_MON", "PUSH_VEH", "FIREY", "PATH_AVOID_DANGER_1" ] } ] diff --git a/data/mods/Magiclysm/npc/TALK_FORGE_ARDELIA.json b/data/mods/Magiclysm/npc/TALK_FORGE_ARDELIA.json new file mode 100644 index 0000000000000..02024d6f115a4 --- /dev/null +++ b/data/mods/Magiclysm/npc/TALK_FORGE_ARDELIA.json @@ -0,0 +1,73 @@ +[ + { + "type": "npc", + "id": "forge_lord_librarian", + "//": "The Librarian of the Forge of Wonders.", + "name_unique": "Librarian, A", + "name_suffix": "Forge Lord", + "class": "NC_FORGE_LORD_LIBRARIAN", + "attitude": 0, + "mission": 3, + "gender": "female", + "chat": "TALK_FORGE_LORD_LIBRARIAN", + "faction": "forge_lords" + }, + { + "type": "npc_class", + "id": "NC_FORGE_LORD_LIBRARIAN", + "name": { "str": "Forge Librarian" }, + "job_description": "I take care of the books and scrolls.", + "traits": [ { "group": "NPC_starting_traits" }, { "group": "Appearance_demographics" } ], + "//": "This is a unique NPC who doesn't get randomly selected background traits", + "common": false, + "bonus_int": { "one_in": 4 }, + "bonus_per": { "one_in": 4 }, + "shopkeeper_item_group": "NC_FORGE_LORD_STORE_LIBRARY", + "worn_override": "NC_FORGE_LIBRARIAN_clothes", + "skills": [ + { + "skill": "ALL", + "level": { "mul": [ { "one_in": 3 }, { "sum": [ { "dice": [ 2, 2 ] }, { "constant": -2 }, { "one_in": 4 } ] } ] } + }, + { "skill": "unarmed", "bonus": { "one_in": 2 } }, + { "skill": "melee", "bonus": { "one_in": 2 } }, + { "skill": "gun", "bonus": { "rng": [ 0, 2 ] } }, + { "skill": "speech", "bonus": { "rng": [ 1, 3 ] } } + ] + }, + { + "type": "item_group", + "id": "NC_FORGE_LIBRARIAN_clothes", + "subtype": "collection", + "entries": [ { "item": "sundress", "prob": 100 }, { "item": "heels", "prob": 100 }, { "item": "sweater", "prob": 100 } ] + }, + { + "type": "item_group", + "subtype": "collection", + "id": "NC_FORGE_LORD_STORE_LIBRARY", + "items": [ + { "group": "spellcraft_books", "prob": 30, "count": [ 1, 3 ] }, + { "group": "dragon_books", "prob": 20, "count": [ 0, 1 ] }, + { "group": "religious_books", "prob": 80, "count": [ 4, 8 ] }, + { "group": "magic_recipe_basic", "prob": 10, "count": [ 0, 2 ] }, + { "group": "magic_recipe_advanced", "prob": 10, "count": [ 0, 2 ] }, + { "group": "magic_shop_books", "prob": 15, "count": [ 3, 12 ] } + ] + }, + { + "id": "TALK_FORGE_LORD_LIBRARIAN", + "type": "talk_topic", + "dynamic_line": "I keep Valzain's books. There are many floors of bookshelves in his pocket dimension. These happen to be the ones I think it most likely he'll read soon. I can sell some that we have copies of.", + "responses": [ + { "text": "Let's trade.", "effect": "start_trade", "topic": "TALK_FORGE_LORD_LIBRARIAN" }, + { "text": "What are you doing here?", "topic": "TALK_FORGE_LIBRARIAN_DOING" }, + { "text": "Well, bye.", "topic": "TALK_DONE" } + ] + }, + { + "id": "TALK_FORGE_LIBRARIAN_DOING", + "type": "talk_topic", + "dynamic_line": "I organize the books, I sell extra books, once when we still lent books I would hunt down those with late books to return.", + "responses": [ { "text": "Let's talk business then.", "topic": "TALK_FORGE_LORD_LIBRARIAN" } ] + } +] diff --git a/data/mods/Magiclysm/npc/TALK_FORGE_HELEN_TAVREL.json b/data/mods/Magiclysm/npc/TALK_FORGE_HELEN_TAVREL.json index 2258ef5c6166e..bd077062d1eb2 100644 --- a/data/mods/Magiclysm/npc/TALK_FORGE_HELEN_TAVREL.json +++ b/data/mods/Magiclysm/npc/TALK_FORGE_HELEN_TAVREL.json @@ -2,7 +2,7 @@ { "type": "npc", "id": "forge_lord_reagents", - "//": "The Lord of the Forge of Wonders.", + "//": "The Pirate of the Forge of Wonders.", "name_unique": "Helen Tavrel, Former Pirate", "name_suffix": "Forge Lord", "class": "NC_FORGE_LORD_REAGENT", @@ -76,8 +76,7 @@ "items": [ { "group": "organic_materials", "count": [ 13, 18 ], "prob": 100 }, { "group": "magic_shop_potions", "count": [ 1, 3 ], "prob": 100 }, - { "group": "potions_common", "count": [ 5, 8 ], "prob": 50 }, - { "group": "spellbook_loot_1", "prob": 75, "count": [ 1, 3 ] } + { "group": "potions_common", "count": [ 5, 8 ], "prob": 50 } ] }, { diff --git a/data/mods/Magiclysm/recipes.json b/data/mods/Magiclysm/recipes.json index be2ddc5d9f30b..b9f790d76094e 100644 --- a/data/mods/Magiclysm/recipes.json +++ b/data/mods/Magiclysm/recipes.json @@ -31,5 +31,26 @@ [ [ "string_6", 1 ] ], [ [ "rag", 2 ] ] ] + }, + { + "type": "recipe", + "activity_level": "BRISK_EXERCISE", + "result": "longsword_mithril", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_CUTTING", + "skill_used": "fabrication", + "difficulty": 8, + "time": "7 h", + "book_learn": [ [ "textbook_mithril", 7 ] ], + "proficiencies": [ + { "proficiency": "prof_metalworking" }, + { "proficiency": "prof_blacksmithing" }, + { "proficiency": "prof_bladesmith" }, + { "proficiency": "prof_carving", "time_multiplier": 1.2, "fail_multiplier": 1, "learning_time_multiplier": 0.2 } + ], + "using": [ [ "blacksmithing_standard", 16 ] ], + "qualities": [ { "id": "CHISEL", "level": 3 } ], + "tools": [ [ [ "hotcut", -1 ] ] ], + "components": [ [ [ "2x4", 1 ], [ "stick", 2 ] ], [ [ "fur", 1 ], [ "leather", 1 ] ], [ [ "mithril_ingot", 4 ] ] ] } ] diff --git a/data/mods/Magiclysm/snippets/lab.json b/data/mods/Magiclysm/snippets/lab.json new file mode 100644 index 0000000000000..a18a2f611601a --- /dev/null +++ b/data/mods/Magiclysm/snippets/lab.json @@ -0,0 +1,12 @@ +[ + { + "type": "snippet", + "category": "lab_notes", + "text": [ + { + "id": "magiclysm_lab_1", + "text": "So I just got a message from our lead wizard liaison Jacob. He's pretty out of it and has been blubbering for hours, but it seems like all of the central labs have been overrun. Have the necromancers finally banded together to take us out? What's their plan?" + } + ] + } +] diff --git a/data/mods/Magiclysm/snippets/newspapers.json b/data/mods/Magiclysm/snippets/newspapers.json new file mode 100644 index 0000000000000..3bb75390d0d21 --- /dev/null +++ b/data/mods/Magiclysm/snippets/newspapers.json @@ -0,0 +1,12 @@ +[ + { + "type": "snippet", + "category": "one_year_old_news", + "text": [ + { + "id": "magiclysm_one_year_old_news_1", + "text": "Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in the local shopping district. Known for being the most powerful mage in Syracuse, New York, it is unsurprising that he managed to reduce the entire district into a smoking crater. The National Guard took him out with a team of snipers and 5 helicopters. Casualties are unknown, but current estimates are 15,000 and climbing." + } + ] + } +] diff --git a/data/mods/Magiclysm/snippets/survivor_notes.json b/data/mods/Magiclysm/snippets/survivor_notes.json index d0feca3d10d5c..a206a7a876756 100644 --- a/data/mods/Magiclysm/snippets/survivor_notes.json +++ b/data/mods/Magiclysm/snippets/survivor_notes.json @@ -6,16 +6,14 @@ { "id": "magiclysm_note_1", "text": "\"(Spell Name) RECIPE V3\n---\nRare Ingredients:\n- 17 drams owl's blood - less no effect, more turns bear into large owl\n- 1 gastrolith, large american alligator\n- 3 teeth or claws from a honey badger\n- 8 pounds bear meat, preferably polar bear, grizzly will suffice\nBring a large pot (meat must fully submerge) filled about half way with potion starter fluid (high grade) to a boil. Add gastrolith and teeth/claws after boiling, add the blood, stir counterclockwise for a minute while chanting standard polymorph spell. Continue until concoction has a slight glow. Add the bear meat, remove from heat, cover for 24 hours.\nBear MUST eat all 8 pounds of the meat (claws and gastrolith optional).\n---\n*I've finally gotten my hands on enough polar bear meat. The grizzly variations are a bit lackluster.*\nThere are flecks of blood on the page.\"" - } - ] - }, - { - "type": "snippet", - "category": "note", - "text": [ + }, { "id": "magiclysm_note_2", "text": "\"Musings on Orichalcum\n\nOrichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" + }, + { + "id": "magiclysm_note_3", + "text": "There was a riot at the mall here. The only explanation I have is that some idiot was experimenting with a Mass Berserk spell. There's a *reason* those kinds of spells are classified as military secrets…" } ] } diff --git a/data/mods/Magiclysm/worldgen/forge_of_wonders.json b/data/mods/Magiclysm/worldgen/forge_of_wonders.json index 22fca06158d3e..a256507114df7 100644 --- a/data/mods/Magiclysm/worldgen/forge_of_wonders.json +++ b/data/mods/Magiclysm/worldgen/forge_of_wonders.json @@ -62,10 +62,10 @@ " #...............4...........33333333tWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWwwwwwwww ", " #.......................!..hll333333tWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWwwww ", " #.......................!..hll333333tWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWwwwwwww ", - " #...........................33333333twwwwwwwwwwwwwwwwwwWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWwwwww ", - " #...................................# wWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWwwwwwww ", - " #.....4..................4..........# wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww ", - " #...................................# wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww ", + " #............XXX............33333333twwwwwwwwwwwwwwwwwwWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWwwwww ", + " #...........XX6XX...................# wWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWwwwwwww ", + " #.....4.....X777X........4..........# wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww ", + " #...........XXXXX...................# wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww ", " #...................................# wwww w ww ww w ", " ############||||||||||############### ", " " @@ -76,7 +76,8 @@ { "class": "forge_lord_reagents", "x": 14, "y": 9 }, { "class": "forge_lord_pirate", "x": 16, "y": 9 }, { "class": "forge_lord_pirate", "x": 16, "y": 6 }, - { "class": "forge_lord_pirate", "x": 14, "y": 6 } + { "class": "forge_lord_pirate", "x": 14, "y": 6 }, + { "class": "forge_lord_librarian", "x": 23, "y": 43 } ], "place_monsters": [ { "monster": "GROUP_STOCKED_POND", "x": [ 77, 82 ], "y": [ 32, 42 ], "density": 0.3, "repeat": [ 1, 3 ] }, @@ -120,7 +121,9 @@ "2": [ "t_magiconc_floor", "t_safe_shopper" ], "4": "t_thconc_floor_echandelier", "+": "t_railroad_rubble", - "5": "t_bollard" + "5": "t_bollard", + "6": "t_vault_vent", + "7": "t_vault_vent" }, "furniture": { "h": "f_demon_forge", @@ -132,7 +135,8 @@ "Z": "f_magic_bench", "!": "f_anvil", "f": "f_table", - "2": "f_everburning_candelabra" + "2": "f_everburning_candelabra", + "7": "f_bookcase" }, "items": { "!": { "item": "magic_smith", "chance": 40, "repeat": [ 1, 2 ] }, @@ -140,6 +144,7 @@ { "item": "NC_FORGE_LORD_STORE_REAGENT", "chance": 40, "repeat": [ 1, 2 ] }, { "item": "NC_FORGE_PIRATE_wield", "chance": 20 } ], + "7": { "item": "NC_FORGE_LORD_STORE_LIBRARY", "chance": 100, "repeat": [ 5, 8 ] }, "8": { "item": "NC_FORGE_LORD_STORE", "chance": 100, "repeat": [ 5, 8 ] }, "9": { "item": "NC_FORGE_LORD_STORE", "chance": 100, "repeat": [ 5, 8 ] }, "$": [ diff --git a/data/mods/Magiclysm/worldgen/magic_academy.json b/data/mods/Magiclysm/worldgen/magic_academy.json index e1dbf62044f36..3a7669f86c9e8 100644 --- a/data/mods/Magiclysm/worldgen/magic_academy.json +++ b/data/mods/Magiclysm/worldgen/magic_academy.json @@ -507,24 +507,25 @@ "________________________", "________________________", "________________________", - "_________ _________", - "________ > ________", - "_______ _______", - "______ ______", - "______ ______", - "______ ______", - "______ ______", - "_______ _______", - "________ ________", - "_________ _________", - "__________ __ __________", + "_________######_________", + "________## >##________", + "_______##c====c##_______", + "______## ====== ##______", + "______#i ====== i#______", + "______#i ====== i#______", + "______## ====== ##______", + "_______##c====c##_______", + "________## ##________", + "_________######_________", + "__________#__#__________", "________________________", "________________________", "________________________", "________________________", "________________________" ], - "terrain": { ">": "t_stairs_down", "_": "t_open_air" } + "palettes": [ "standard_domestic_palette" ], + "terrain": { ">": "t_stairs_down", "_": "t_open_air", "=": "t_grass_golf", "#": "t_rock_wall_half" } } } ] diff --git a/data/mods/Magiclysm/worldgen/mine_balrog.json b/data/mods/Magiclysm/worldgen/mine_balrog.json new file mode 100644 index 0000000000000..7aef0de4172b4 --- /dev/null +++ b/data/mods/Magiclysm/worldgen/mine_balrog.json @@ -0,0 +1,207 @@ +[ + { + "id": "balrog_mine_weapons", + "type": "item_group", + "subtype": "distribution", + "items": [ + [ "longsword", 100 ], + [ "arming_sword", 100 ], + [ "zweihander", 100 ], + [ "broadsword", 100 ], + [ "spear_knife_superior", 100 ], + [ "spear_copper", 100 ], + [ "spear_steel", 100 ], + [ "halberd", 100 ], + [ "glaive", 100 ], + [ "pike", 100 ], + [ "pike_copper", 100 ], + [ "poleaxe", 100 ], + [ "2h_flail_steel", 100 ], + [ "battleaxe", 100 ], + [ "lucern_hammer", 100 ], + [ "mace", 100 ], + [ "morningstar", 100 ], + [ "warhammer", 100 ] + ] + }, + { + "type": "mapgen", + "method": "json", + "om_terrain": [ [ "mine_balrog_west", "mine_balrog_central", "mine_balrog_east" ] ], + "object": { + "fill_ter": "t_rock_floor", + "rows": [ + "########################################################################", + "########################################################################", + "########################################################################", + "########################################################################", + "########################################################################", + "################@@@@@###################################################", + "################@ > @###################################################", + "################@ @@###################################################", + "################@@@ @###################################################", + "################@@@@ ###################################################", + "################@@@@ ###################################################", + "################@@@@ ###################################################", + "################@@@ @###################################################", + "################@@ @@###################################################", + "################@ @@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", + "################ @@@@@@@ @@@ @@@@@@ @@@@@ @@ ", + "################@ @@@@@ @@@@@ @@@@ @@@ @@ @ **************************", + "################@ @@ @@@@@@@ @@ @@@@@ @@@@@ ", + "################@@ @@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", + "########################################################################", + "########################################################################", + "########################################################################", + "########################################################################", + "########################################################################" + ], + "terrain": { + "@": [ [ "t_rock", 4 ], [ "t_rock_floor", 1 ] ], + "#": "t_rock", + "*": "t_railroad_track_small", + "!": "t_pillar", + ">": "t_slope_down" + }, + "items": { " ": { "item": "mine_equipment", "chance": 1 } }, + "monsters": { " ": { "monster": "GROUP_MINER", "chance": 1, "density": 0.001 } } + } + }, + { + "type": "mapgen", + "method": "json", + "om_terrain": [ [ "mine_balrog_-1_west", "mine_balrog_-1_central", "mine_balrog_-1_east" ] ], + "object": { + "fill_ter": "t_rock_floor", + "rows": [ + "########################################################################", + "########################################################################", + "########################################################################", + "########################################################################", + "########################################################################", + "################xxxxx###################################################", + "################x < x###################################################", + "################x x####xxx####xxx####xxx####xxx####xxx####xxx#########", + "################$ xxxxxx$xxxxxx$xxxxxx$xxxxxx$xxxxxx$xxxxxx$xxxxxx####", + "################x xWW1 11 ! 11 WW11 W11 W11W 1 Wx####", + "################x x ! WW ! WW WWWW! Wx####", + "################x + ! WW ! ! W+ >#", + "################x + ! ! WW! ! ! ! W+ >#", + "################x x W ! WW !Wx####", + "################x x 1W !W11 11 WWW11 ! 11WW 11W 1 Wx####", + "################$ xxxxxx$xxxxxx$xxxxxx$xxxxxx$xxxxxx$xxxxxx$xxxxxx####", + "################x x####xxx####xxx####xxx####xxx####xxx####xxx#########", + "################xWWWx###################################################", + "################xxxxx###################################################", + "########################################################################", + "########################################################################", + "########################################################################", + "########################################################################", + "########################################################################" + ], + "terrain": { + "@": [ [ "t_rock", 4 ], [ "t_rock_floor", 1 ] ], + "#": "t_rock", + "+": "t_door_c", + ">": "t_stairs_down", + "<": "t_slope_up", + "1": "t_column", + "x": "t_rock_wall" + }, + "furniture": { "$": [ [ "f_grave_monument", 1 ], [ "f_statue", 4 ] ] }, + "fields": { "W": { "field": "fd_web", "intensity": 3, "age": 10 } }, + "items": { + "!": { + "item": { + "subtype": "collection", + "entries": [ + { "item": "helmet_plate", "prob": 50, "damage": 4 }, + { "item": "boots_plate", "prob": 75, "damage": 4 }, + { "item": "armguard_lightplate", "prob": 60, "damage": 4 }, + { "item": "gloves_plate", "prob": 40, "damage": 4 }, + { "item": "legguard_lightplate", "prob": 60, "damage": 4 }, + { "item": "armor_lightplate", "prob": 70, "damage": 4 }, + { "group": "balrog_mine_weapons", "prob": 70, "damage": 4 }, + { "item": "bone_human", "prob": 100, "damage": 4, "count": [ 10, 20 ] } + ] + }, + "chance": 100 + } + } + } + }, + { + "type": "mapgen", + "method": "json", + "om_terrain": [ + [ "mine_balrog_finale_nw", "mine_balrog_finale_n", "mine_balrog_finale_ne" ], + [ "mine_balrog_finale_sw", "mine_balrog_finale_s", "mine_balrog_finale_se" ] + ], + "object": { + "fill_ter": "t_rock_floor", + "rows": [ + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~$$$$$$$~~~~~~~~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~###~~~~~~~~", + "~~~~~~~~~~~~~$$$$$~~~~$$$~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~###~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~####~~~~~~~~~~~~~~~~~~~~~~###~~~~~~~~", + "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~ ~~~~~~~~~~~ ~~~~~####~~~~~ ~~~~~~~~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~ ~###~ ~~~~$$$$~~~ ~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~ ~~~~~ ~~~~~~~~~~~ ~~~~~~$$~~~~~~ ~~~~~~~~~~~~~~~", + "~~~~~~~~~~~~~~~ ~~~~~ ~~~~~~$$~~~~~~~~~~~~# ~~~~~~~~##xxxxx", + "~~~~~~~~~~~~~~~ ~~$~~ ~~~~~~~$$~~~~~~~~~~~~# + $ ", + " Y $ ", " " ], "terrain": { @@ -488,7 +488,6 @@ "c": "t_rock_floor", "?": "t_door_metal_c_peep", "+": "t_door_metal_locked", - ">": "t_stairs_down", "<": "t_stairs_up", "Y": "t_card_military", "^": "t_elevator_control_off", @@ -510,7 +509,7 @@ "access_denied": "ERROR! Access denied! Unauthorized access will be met with lethal force!", "security": 10, "failures": [ { "action": "alarm" }, { "action": "damage" }, { "action": "secubots" } ], - "options": [ { "name": "Disarm Missile", "action": "miss_disarm" } ] + "options": [ { "name": "Launch Missile", "action": "miss_launch" }, { "name": "Disarm Missile", "action": "miss_disarm" } ] } }, "place_graffiti": [ { "text": "Warning! Automatic security measures engaged due to the lockdown order!", "x": 17, "y": 20 } ], diff --git a/data/mods/Rummaging/modinfo.json b/data/mods/Rummaging/modinfo.json new file mode 100644 index 0000000000000..018ee5f621ed7 --- /dev/null +++ b/data/mods/Rummaging/modinfo.json @@ -0,0 +1,418 @@ +[ + { + "type": "MOD_INFO", + "id": "Rummaging", + "name": "Rummaging", + "authors": [ "Aunt_Su | 苏大妈#7831" ], + "description": "Some furniture containers need to open the door to scavenge, to enhance the thrill of scavenging.", + "category": "misc_additions", + "dependencies": [ "dda" ] + }, + { + "type": "furniture", + "id": "f_55gal_firebarrel", + "copy-from": "f_55gal_firebarrel", + "looks_like": "f_55gal_firebarrel", + "symbol": "#", + "color": "red", + "flags": [ "PLACE_ITEM", "TRANSPARENT", "FIRE_CONTAINER", "EASY_DECONSTRUCT", "CONTAINER" ], + "deployed_item": "55gal_firebarrel", + "examine_action": "fireplace" + }, + { + "type": "furniture", + "id": "f_30gal_firebarrel", + "copy-from": "f_30gal_firebarrel", + "symbol": "#", + "color": "red", + "flags": [ "PLACE_ITEM", "TRANSPARENT", "FIRE_CONTAINER", "EASY_DECONSTRUCT", "CONTAINER" ], + "deployed_item": "30gal_firebarrel", + "examine_action": "fireplace" + }, + { + "type": "furniture", + "id": "f_dryer_o", + "copy-from": "f_dryer", + "symbol": "{", + "bgcolor": "white", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "FLAT_SURF", "MINEABLE", "TRANSPARENT" ], + "close": "f_dryer" + }, + { + "type": "furniture", + "id": "f_dryer", + "copy-from": "f_dryer", + "symbol": "{", + "bgcolor": "white", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "FLAT_SURF", "MINEABLE", "TRANSPARENT", "SEALED" ], + "open": "f_dryer_o" + }, + { + "type": "furniture", + "id": "f_fridge_o", + "copy-from": "f_fridge", + "symbol": "{", + "color": "light_cyan", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "MINEABLE", "NO_SELF_CONNECT" ], + "close": "f_fridge" + }, + { + "type": "furniture", + "id": "f_fridge", + "copy-from": "f_fridge", + "symbol": "{", + "color": "light_cyan", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "MINEABLE", "NO_SELF_CONNECT", "SEALED" ], + "open": "f_fridge_o" + }, + { + "type": "furniture", + "id": "f_glass_fridge_o", + "copy-from": "f_glass_fridge", + "symbol": "{", + "color": "light_cyan", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "TRANSPARENT" ], + "close": "f_glass_fridge" + }, + { + "type": "furniture", + "id": "f_glass_fridge", + "copy-from": "f_glass_fridge", + "symbol": "{", + "color": "light_cyan", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "TRANSPARENT", "SEALED" ], + "open": "f_glass_fridge_o" + }, + { + "type": "furniture", + "id": "f_washer_o", + "copy-from": "f_washer", + "symbol": "{", + "bgcolor": "white", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "FLAT_SURF", "MINEABLE", "TRANSPARENT" ], + "close": "f_washer" + }, + { + "type": "furniture", + "id": "f_washer", + "copy-from": "f_washer", + "symbol": "{", + "bgcolor": "white", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "FLAT_SURF", "MINEABLE", "TRANSPARENT", "SEALED" ], + "open": "f_washer_o" + }, + { + "type": "furniture", + "id": "f_oven_o", + "copy-from": "f_oven", + "symbol": "#", + "color": "dark_gray", + "flags": [ "PLACE_ITEM", "TRANSPARENT", "FIRE_CONTAINER", "CONTAINER", "BLOCKSDOOR", "MOUNTABLE" ], + "examine_action": "fireplace", + "close": "f_oven" + }, + { + "type": "furniture", + "id": "f_oven", + "copy-from": "f_oven", + "symbol": "#", + "color": "dark_gray", + "flags": [ "PLACE_ITEM", "TRANSPARENT", "FIRE_CONTAINER", "CONTAINER", "BLOCKSDOOR", "MOUNTABLE", "FLAMMABLE_HARD", "SEALED" ], + "open": "f_oven_o" + }, + { + "type": "furniture", + "id": "f_shredder_o", + "copy-from": "f_shredder", + "symbol": "H", + "bgcolor": "white", + "max_volume": "18 L", + "flags": [ "TRANSPARENT", "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "SHORT" ], + "close": "f_shredder" + }, + { + "type": "furniture", + "id": "f_shredder", + "copy-from": "f_shredder", + "symbol": "H", + "bgcolor": "white", + "max_volume": "18 L", + "flags": [ "TRANSPARENT", "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "SHORT", "SEALED" ], + "open": "f_shredder_o" + }, + { + "type": "furniture", + "id": "f_sample_freezer_o", + "copy-from": "f_sample_freezer", + "symbol": "[", + "bgcolor": "white", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "HIDE_PLACE", "NO_SIGHT" ], + "close": "f_sample_freezer" + }, + { + "type": "furniture", + "id": "f_sample_freezer", + "copy-from": "f_sample_freezer", + "symbol": "[", + "bgcolor": "white", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "SEALED" ], + "open": "f_sample_freezer_o" + }, + { + "type": "furniture", + "id": "f_hay", + "copy-from": "f_hay", + "symbol": "#", + "bgcolor": "brown", + "coverage": 30, + "flags": [ + "TRANSPARENT", + "CONTAINER", + "FLAMMABLE_ASH", + "ORGANIC", + "MOUNTABLE", + "SHORT", + "EASY_DECONSTRUCT", + "HIDE_PLACE", + "NO_SIGHT" + ] + }, + { + "type": "furniture", + "id": "f_bookcase", + "copy-from": "f_bookcase", + "symbol": "{", + "color": "brown", + "max_volume": "200 L", + "flags": [ "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "BLOCKSDOOR", "CONTAINER" ] + }, + { + "type": "furniture", + "id": "f_crate_o", + "copy-from": "f_crate_o", + "symbol": "O", + "bgcolor": "brown", + "move_cost_mod": 3, + "flags": [ "TRANSPARENT", "CONTAINER", "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "MOUNTABLE", "SHORT", "HIDE_PLACE", "NO_SIGHT" ] + }, + { + "type": "furniture", + "id": "f_cardboard_box_o", + "copy-from": "f_cardboard_box", + "symbol": "X", + "bgcolor": "brown", + "flags": [ + "TRANSPARENT", + "FLAMMABLE_ASH", + "PLACE_ITEM", + "ORGANIC", + "EASY_DECONSTRUCT", + "BASHABLE", + "HIDE_PLACE", + "NO_SIGHT", + "CONTAINER" + ], + "deployed_item": "box_large", + "examine_action": "deployed_furniture", + "close": "f_cardboard_box" + }, + { + "type": "furniture", + "id": "f_cardboard_box", + "copy-from": "f_cardboard_box", + "symbol": "X", + "bgcolor": "brown", + "flags": [ "TRANSPARENT", "FLAMMABLE_ASH", "PLACE_ITEM", "ORGANIC", "EASY_DECONSTRUCT", "BASHABLE", "CONTAINER", "SEALED" ], + "deployed_item": "box_large", + "examine_action": "deployed_furniture", + "open": "f_cardboard_box_o" + }, + { + "type": "furniture", + "id": "f_dresser_o", + "copy-from": "f_dresser", + "symbol": "{", + "color": "brown", + "max_volume": "250 L", + "flags": [ "TRANSPARENT", "CONTAINER", "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "BLOCKSDOOR", "MOUNTABLE" ], + "close": "f_dresser" + }, + { + "type": "furniture", + "id": "f_dresser", + "copy-from": "f_dresser", + "symbol": "{", + "color": "brown", + "max_volume": "250 L", + "flags": [ "TRANSPARENT", "CONTAINER", "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "BLOCKSDOOR", "MOUNTABLE", "SEALED" ], + "open": "f_dresser_o" + }, + { + "type": "furniture", + "id": "f_glass_cabinet_o", + "copy-from": "f_glass_cabinet", + "symbol": "[", + "color": "light_gray", + "flags": [ "PLACE_ITEM", "TRANSPARENT", "BLOCKSDOOR", "CONTAINER" ], + "close": "f_glass_cabinet" + }, + { + "type": "furniture", + "id": "f_glass_cabinet", + "copy-from": "f_glass_cabinet", + "symbol": "[", + "color": "light_gray", + "flags": [ "PLACE_ITEM", "TRANSPARENT", "BLOCKSDOOR", "CONTAINER", "SEALED" ], + "open": "f_glass_cabinet_o" + }, + { + "type": "furniture", + "id": "f_locker_o", + "copy-from": "f_locker", + "symbol": "{", + "color": "light_gray", + "move_cost_mod": 2, + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "HIDE_PLACE", "NO_SIGHT" ], + "close": "f_locker" + }, + { + "type": "furniture", + "id": "f_locker", + "copy-from": "f_locker", + "symbol": "{", + "color": "light_gray", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "SEALED" ], + "open": "f_locker_o" + }, + { + "type": "furniture", + "id": "f_recycle_bin_o", + "copy-from": "f_recycle_bin", + "symbol": "{", + "color": "light_green", + "move_cost_mod": 3, + "max_volume": "800 L", + "flags": [ "TRANSPARENT", "FLAMMABLE_ASH", "CONTAINER", "PLACE_ITEM", "MOUNTABLE", "SHORT", "HIDE_PLACE", "NO_SIGHT" ], + "close": "f_recycle_bin" + }, + { + "type": "furniture", + "id": "f_recycle_bin", + "copy-from": "f_recycle_bin", + "symbol": "{", + "color": "light_green", + "max_volume": "800 L", + "flags": [ "TRANSPARENT", "FLAMMABLE_ASH", "CONTAINER", "PLACE_ITEM", "MOUNTABLE", "SHORT", "SEALED" ], + "open": "f_recycle_bin_o" + }, + { + "type": "furniture", + "id": "f_trashcan_o", + "copy-from": "f_trashcan", + "symbol": "&", + "color": "light_cyan", + "flags": [ "TRANSPARENT", "FLAMMABLE_ASH", "CONTAINER", "PLACE_ITEM", "MOUNTABLE", "SHORT" ], + "close": "f_trashcan" + }, + { + "type": "furniture", + "id": "f_trashcan", + "copy-from": "f_trashcan", + "symbol": "&", + "color": "light_cyan", + "flags": [ "TRANSPARENT", "FLAMMABLE_ASH", "CONTAINER", "PLACE_ITEM", "MOUNTABLE", "SHORT", "SEALED" ], + "open": "f_trashcan_o" + }, + { + "type": "furniture", + "id": "f_wardrobe_o", + "copy-from": "f_wardrobe", + "symbol": "{", + "color": "i_brown", + "move_cost_mod": 2, + "flags": [ "CONTAINER", "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "BLOCKSDOOR", "MOUNTABLE", "HIDE_PLACE", "NO_SIGHT" ], + "close": "f_wardrobe" + }, + { + "type": "furniture", + "id": "f_wardrobe", + "copy-from": "f_wardrobe", + "symbol": "{", + "color": "i_brown", + "flags": [ "CONTAINER", "FLAMMABLE", "PLACE_ITEM", "ORGANIC", "BLOCKSDOOR", "MOUNTABLE", "SEALED" ], + "open": "f_wardrobe_o" + }, + { + "type": "furniture", + "id": "f_filing_cabinet_o", + "copy-from": "f_filing_cabinet", + "symbol": "}", + "color": "dark_gray", + "flags": [ "PLACE_ITEM", "TRANSPARENT", "CONTAINER", "BLOCKSDOOR", "MOUNTABLE" ], + "close": "f_filing_cabinet" + }, + { + "type": "furniture", + "id": "f_filing_cabinet", + "copy-from": "f_filing_cabinet", + "symbol": "}", + "color": "dark_gray", + "flags": [ "PLACE_ITEM", "TRANSPARENT", "CONTAINER", "BLOCKSDOOR", "MOUNTABLE", "SEALED" ], + "open": "f_filing_cabinet_o" + }, + { + "type": "furniture", + "id": "f_dumpster_o", + "copy-from": "f_dumpster", + "symbol": "{", + "color": "green", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "HIDE_PLACE", "NO_SIGHT" ], + "close": "f_dumpster" + }, + { + "type": "furniture", + "id": "f_dumpster", + "copy-from": "f_dumpster", + "symbol": "{", + "color": "green", + "flags": [ "CONTAINER", "PLACE_ITEM", "BLOCKSDOOR", "HIDE_PLACE", "NO_SIGHT", "SEALED" ], + "open": "f_dumpster_o" + }, + { + "type": "furniture", + "id": "f_cupboard_o", + "copy-from": "f_cupboard", + "symbol": "#", + "color": "blue", + "move_cost_mod": 2, + "flags": [ + "TRANSPARENT", + "FLAMMABLE_ASH", + "CONTAINER", + "PLACE_ITEM", + "ORGANIC", + "MOUNTABLE", + "FLAT_SURF", + "HIDE_PLACE", + "NO_SIGHT" + ], + "connects_to": "COUNTER", + "max_volume": "350 L", + "examine_action": "workbench", + "workbench": { "multiplier": 1.1, "mass": 200000, "volume": "75L" }, + "close": "f_cupboard" + }, + { + "type": "furniture", + "id": "f_cupboard", + "copy-from": "f_cupboard", + "symbol": "#", + "color": "blue", + "flags": [ "TRANSPARENT", "FLAMMABLE_ASH", "CONTAINER", "PLACE_ITEM", "ORGANIC", "MOUNTABLE", "FLAT_SURF", "SEALED" ], + "connects_to": "COUNTER", + "max_volume": "350 L", + "examine_action": "workbench", + "workbench": { "multiplier": 1.1, "mass": 200000, "volume": "75L" }, + "open": "f_cupboard_o" + } +] diff --git a/data/mods/TEST_DATA/items.json b/data/mods/TEST_DATA/items.json index 3d47563667ec3..a2d4dd5901d21 100644 --- a/data/mods/TEST_DATA/items.json +++ b/data/mods/TEST_DATA/items.json @@ -722,7 +722,6 @@ "color": "dark_gray", "material_thickness": 1, "environmental_protection": 1, - "qualities": [ [ "GLARE", 1 ] ], "flags": [ "WATER_FRIENDLY", "SUN_GLASSES", "FRAGILE" ], "armor": [ { "encumbrance": 1, "coverage": 85, "covers": [ "eyes" ] } ] }, @@ -1552,6 +1551,7 @@ "description": "Test hacksaw which uses batteries.", "charges_per_use": 1, "ammo": [ "battery" ], + "use_action": [ [ "HACKSAW", 1 ] ], "pocket_data": [ { "pocket_type": "MAGAZINE_WELL", diff --git a/data/mods/TEST_DATA/overmap_specials.json b/data/mods/TEST_DATA/overmap_specials.json index 0143031103b84..c00234fe1fda6 100644 --- a/data/mods/TEST_DATA/overmap_specials.json +++ b/data/mods/TEST_DATA/overmap_specials.json @@ -95,5 +95,213 @@ }, "root": "crater_all", "phases": [ [ { "overmap": "crater_all", "max": { "poisson": 5 } } ], [ { "overmap": "crater_edge", "weight": 1 } ] ] + }, + { + "type": "overmap_special", + "id": "test_microlab", + "subtype": "mutable", + "locations": [ "subterranean_empty" ], + "city_distance": [ 25, -1 ], + "city_sizes": [ 0, 20 ], + "occurrences": [ 0, 1 ], + "flags": [ "CLASSIC", "WILDERNESS" ], + "check_for_locations": [ + [ [ 0, 0, 0 ], [ "land" ] ], + [ [ 0, 0, -1 ], [ "subterranean_empty" ] ], + [ [ 0, 0, -2 ], [ "subterranean_empty" ] ], + [ [ 1, 0, -2 ], [ "subterranean_empty" ] ], + [ [ 0, 1, -2 ], [ "subterranean_empty" ] ], + [ [ -1, 0, -2 ], [ "subterranean_empty" ] ], + [ [ 0, -1, -2 ], [ "subterranean_empty" ] ] + ], + "joins": [ + "hallway_to_hallway", + "duct_to_surface", + "duct_to_entrance", + "microlab_to_microlab", + { "id": "hallway_to_microlab", "opposite": "microlab_to_hallway" }, + { "id": "microlab_to_hallway", "opposite": "hallway_to_microlab" }, + "microlab_entry_to_station", + "microlab_station_to_subway", + "stairs_down_to_middle", + "stairs_up_to_middle" + ], + "overmaps": { + "surface": { "overmap": "lab_subway_vent_shaft_surface", "below": "duct_to_surface", "locations": [ "land" ] }, + "below_entrance": { "overmap": "lab_subway_vent_shaft-1", "above": "duct_to_surface", "below": "duct_to_entrance" }, + "surface_access": { + "overmap": "microlab_generic_vent_shaft_connector", + "above": "duct_to_entrance", + "north": "microlab_to_microlab", + "east": "microlab_to_microlab", + "south": "microlab_to_microlab", + "west": "microlab_to_microlab" + }, + "stairs_down": { "overmap": "microlab_generic_stairs_down_north", "below": "stairs_down_to_middle", "north": "hallway_to_hallway" }, + "stairs_middle": { + "overmap": "microlab_generic_isolated_stairs_odd_north", + "above": "stairs_down_to_middle", + "below": "stairs_up_to_middle" + }, + "stairs_up": { + "overmap": "microlab_generic_isolated_stairs_up_north", + "above": "stairs_up_to_middle", + "north": "hallway_to_hallway" + }, + "microlab": { + "overmap": "microlab_generic", + "north": { "id": "microlab_to_microlab", "alternatives": [ "microlab_to_hallway" ] }, + "east": { "id": "microlab_to_microlab", "alternatives": [ "microlab_to_hallway" ] }, + "south": { "id": "microlab_to_microlab", "alternatives": [ "microlab_to_hallway" ] }, + "west": { "id": "microlab_to_microlab", "alternatives": [ "microlab_to_hallway" ] } + }, + "microlab_edge": { + "overmap": "microlab_generic_edge", + "north": { "id": "microlab_to_microlab", "type": "available", "alternatives": [ "microlab_to_hallway" ] }, + "east": { "id": "microlab_to_microlab", "type": "available", "alternatives": [ "microlab_to_hallway" ] }, + "south": { "id": "microlab_to_microlab", "type": "available", "alternatives": [ "microlab_to_hallway" ] }, + "west": { "id": "microlab_to_microlab", "type": "available", "alternatives": [ "microlab_to_hallway" ] } + }, + "microlab_sub_entry": { + "overmap": "microlab_generic_sub_entry_north", + "north": "microlab_entry_to_station", + "east": "microlab_to_microlab", + "south": "microlab_to_hallway", + "west": "microlab_to_microlab" + }, + "microlab_sub_station": { "overmap": "microlab_sub_station_north", "north": "microlab_station_to_subway", "south": "microlab_entry_to_station" }, + "microlab_subway": { "overmap": "microlab_sub_connector_south", "south": "microlab_station_to_subway" }, + "firebreak": { "overmap": "microlab_generic_firebreak_north", "north": "hallway_to_hallway", "south": "hallway_to_hallway" }, + "hallway_cross": { + "overmap": "microlab_generic_hallway_nesw", + "north": "hallway_to_hallway", + "east": "hallway_to_hallway", + "south": "hallway_to_hallway", + "west": "hallway_to_hallway" + }, + "hallway_straight": { + "overmap": "microlab_generic_hallway_ns", + "north": "hallway_to_hallway", + "east": "hallway_to_microlab", + "south": "hallway_to_hallway", + "west": "hallway_to_microlab" + }, + "hallway_blind_straight": { + "overmap": "microlab_generic_hallway_ns", + "north": "hallway_to_hallway", + "east": { "id": "hallway_to_microlab", "type": "available", "alternatives": [ "microlab_to_microlab", "microlab_to_hallway" ] }, + "south": "hallway_to_hallway", + "west": { "id": "hallway_to_microlab", "type": "available", "alternatives": [ "microlab_to_microlab", "microlab_to_hallway" ] } + }, + "hallway_tee": { + "overmap": "microlab_generic_hallway_nes", + "north": "hallway_to_hallway", + "east": "hallway_to_hallway", + "south": "hallway_to_hallway", + "west": "hallway_to_microlab" + }, + "hallway_blind_tee": { + "overmap": "microlab_generic_hallway_nes", + "north": "hallway_to_hallway", + "east": "hallway_to_hallway", + "south": "hallway_to_hallway", + "west": { "id": "hallway_to_microlab", "type": "available", "alternatives": [ "microlab_to_microlab", "microlab_to_hallway" ] } + }, + "hallway_corner": { + "overmap": "microlab_generic_hallway_ne", + "north": "hallway_to_hallway", + "east": "hallway_to_hallway", + "south": "hallway_to_microlab", + "west": "hallway_to_microlab" + }, + "hallway_blind_corner": { + "overmap": "microlab_generic_hallway_ne", + "north": "hallway_to_hallway", + "east": "hallway_to_hallway", + "south": { "id": "hallway_to_microlab", "type": "available", "alternatives": [ "microlab_to_microlab", "microlab_to_hallway" ] }, + "west": { "id": "hallway_to_microlab", "type": "available", "alternatives": [ "microlab_to_microlab", "microlab_to_hallway" ] } + }, + "hallway_end": { + "overmap": "microlab_generic_hallway_end_south", + "north": "hallway_to_hallway", + "east": "hallway_to_microlab", + "south": "hallway_to_microlab", + "west": "hallway_to_microlab" + }, + "hallway_blind_end": { + "overmap": "microlab_generic_hallway_blind_end_south", + "north": { "id": "hallway_to_hallway" }, + "east": { "id": "hallway_to_microlab", "type": "available", "alternatives": [ "microlab_to_microlab", "microlab_to_hallway" ] }, + "south": { "id": "hallway_to_microlab", "type": "available", "alternatives": [ "microlab_to_microlab", "microlab_to_hallway" ] }, + "west": { "id": "hallway_to_microlab", "type": "available", "alternatives": [ "microlab_to_microlab", "microlab_to_hallway" ] } + } + }, + "root": "surface", + "phases": [ + [ { "overmap": "below_entrance", "max": 1 } ], + [ { "overmap": "surface_access", "max": 1 } ], + [ + { + "name": "subway_chunk_at_-2", + "chunk": [ + { "overmap": "hallway_end", "pos": [ 0, 1, 0 ], "rot": "east" }, + { "overmap": "microlab_sub_entry", "pos": [ 0, 0, 0 ] }, + { "overmap": "microlab_sub_station", "pos": [ 0, -1, 0 ] }, + { "overmap": "microlab_subway", "pos": [ 0, -2, 0 ] } + ], + "max": 1 + } + ], + [ { "overmap": "hallway_straight", "max": 3 } ], + [ { "overmap": "hallway_cross", "max": 1 } ], + [ + { "overmap": "hallway_corner", "max": 1 }, + { "overmap": "hallway_straight", "max": 10 }, + { "overmap": "firebreak", "max": 1 } + ], + [ + { "overmap": "hallway_end", "max": 2 }, + { + "name": "stairs_to_-4", + "chunk": [ + { "overmap": "stairs_down", "pos": [ 0, 0, 0 ] }, + { "overmap": "stairs_middle", "pos": [ 0, 0, -1 ] }, + { "overmap": "stairs_up", "pos": [ 0, 0, -2 ] } + ], + "max": 1 + } + ], + [ { "overmap": "microlab", "max": 20 } ], + [ + { "overmap": "microlab_edge", "weight": 1000 }, + { "overmap": "hallway_blind_end", "weight": 10 }, + { "overmap": "hallway_blind_corner", "weight": 1 }, + { "overmap": "hallway_blind_straight", "weight": 1 }, + { "overmap": "hallway_blind_tee", "weight": 1 }, + { "overmap": "hallway_cross", "weight": 1 } + ], + [ { "overmap": "hallway_straight", "max": 3 } ], + [ { "overmap": "hallway_end", "max": 1 } ], + [ + { + "name": "subway_chunk_at_-4", + "chunk": [ + { "overmap": "microlab_sub_entry", "pos": [ 0, 0, 0 ] }, + { "overmap": "microlab_sub_station", "pos": [ 0, -1, 0 ] }, + { "overmap": "microlab_subway", "pos": [ 0, -2, 0 ] } + ], + "max": 1 + } + ], + [ { "overmap": "microlab", "max": 10 } ], + [ + { "overmap": "microlab_edge", "weight": 1000 }, + { "overmap": "hallway_blind_end", "weight": 10 }, + { "overmap": "hallway_corner", "weight": 1 }, + { "overmap": "hallway_straight", "weight": 1 }, + { "overmap": "hallway_tee", "weight": 1 }, + { "overmap": "hallway_cross", "weight": 1 } + ] + ] } ] diff --git a/data/raw/keybindings.json b/data/raw/keybindings.json index bef6f1a69ce5e..7fdd514c2f436 100644 --- a/data/raw/keybindings.json +++ b/data/raw/keybindings.json @@ -573,6 +573,13 @@ "name": "Change side armor is worn on", "bindings": [ { "input_method": "keyboard_any", "key": "c" } ] }, + { + "type": "keybinding", + "id": "TOGGLE_CLOTH", + "category": "SORT_ARMOR", + "name": "Toggle armor visibility on character sprite", + "bindings": [ { "input_method": "keyboard_any", "key": "H" } ] + }, { "type": "keybinding", "id": "ASSIGN_INVLETS", @@ -2088,9 +2095,9 @@ }, { "type": "keybinding", - "name": "Drop Item", + "name": "Unload container", "category": "DEFAULTMODE", - "id": "drop", + "id": "unload_container", "bindings": [ { "input_method": "keyboard_any", "key": "d" } ] }, { @@ -2737,6 +2744,13 @@ "name": "Reassign invlet", "bindings": [ { "input_method": "keyboard_any", "key": "=" } ] }, + { + "type": "keybinding", + "id": "TOGGLE_SPRITE", + "category": "MUTATIONS", + "name": "Toggle sprite", + "bindings": [ { "input_method": "keyboard_any", "key": "," } ] + }, { "type": "keybinding", "id": "UP", @@ -3349,6 +3363,40 @@ { "input_method": "keyboard_any", "key": "ESC" } ] }, + { + "type": "keybinding", + "id": "FRIENDS", + "category": "FRIENDS_ME_CANCEL", + "name": "With friends", + "bindings": [ + { "input_method": "keyboard_char", "key": "f" }, + { "input_method": "keyboard_code", "key": "f", "mod": [ "shift" ] }, + { "input_method": "keyboard_any", "key": "f" } + ] + }, + { + "type": "keybinding", + "id": "ME", + "category": "FRIENDS_ME_CANCEL", + "name": "Just me", + "bindings": [ + { "input_method": "keyboard_char", "key": "m" }, + { "input_method": "keyboard_code", "key": "m", "mod": [ "shift" ] }, + { "input_method": "keyboard_any", "key": "m" } + ] + }, + { + "type": "keybinding", + "id": "CANCEL", + "category": "FRIENDS_ME_CANCEL", + "name": "Cancel", + "bindings": [ + { "input_method": "keyboard_char", "key": "C" }, + { "input_method": "keyboard_code", "key": "c", "mod": [ "shift" ] }, + { "input_method": "keyboard_any", "key": "c" }, + { "input_method": "keyboard_any", "key": "ESC" } + ] + }, { "type": "keybinding", "id": "YES", diff --git a/doc/COMPILING/COMPILER_SUPPORT.md b/doc/COMPILING/COMPILER_SUPPORT.md index a2ddb2425c46e..4cc925621c791 100644 --- a/doc/COMPILING/COMPILER_SUPPORT.md +++ b/doc/COMPILING/COMPILER_SUPPORT.md @@ -69,7 +69,7 @@ We support and test Clang from version 6.0. ## Mingw and Mingw-w64 -We use Mingw for cross-compilation of Windows versions on Linux. gcc 9.3 is +We use Mingw for cross-compilation of Windows versions on Linux. gcc 11.2 is currently used both in the tests and for the Windows release binaries. ## MSYS2 diff --git a/doc/COMPILING/COMPILING.md b/doc/COMPILING/COMPILING.md index 01a8ee024796a..37a7cc16022ef 100644 --- a/doc/COMPILING/COMPILING.md +++ b/doc/COMPILING/COMPILING.md @@ -209,12 +209,21 @@ Installation sudo apt install astyle autoconf automake autopoint bash bison bzip2 cmake flex gettext git g++ gperf intltool libffi-dev libgdk-pixbuf2.0-dev libtool libltdl-dev libssl-dev libxml-parser-perl lzip make mingw-w64 openssl p7zip-full patch perl pkg-config python ruby scons sed unzip wget xz-utils g++-multilib libc6-dev-i386 libtool-bin mkdir -p ~/src/Cataclysm-DDA mkdir -p ~/src/mxe + mkdir -p ~/src/libbacktrace cd ~/src git clone https://github.com/CleverRaven/Cataclysm-DDA.git ./Cataclysm-DDA git clone https://github.com/mxe/mxe.git ./mxe - make -j$((`nproc`+0)) MXE_TARGETS='x86_64-w64-mingw32.static i686-w64-mingw32.static' MXE_PLUGIN_DIRS=plugins/gcc9 sdl2 sdl2_ttf sdl2_image sdl2_mixer gettext + cd mxe + make -j$((`nproc`+0)) MXE_TARGETS='x86_64-w64-mingw32.static i686-w64-mingw32.static' MXE_PLUGIN_DIRS=plugins/gcc11 sdl2 sdl2_ttf sdl2_image sdl2_mixer gettext + cd ../libbacktrace/ + wget https://github.com/Qrox/libbacktrace/releases/download/2020-01-03/libbacktrace-x86_64-w64-mingw32.tar.gz + wget https://github.com/Qrox/libbacktrace/releases/download/2020-01-03/libbacktrace-i686-w64-mingw32.tar.gz + tar -xzf libbacktrace-x86_64-w64-mingw32.tar.gz --exclude=LICENSE -C ~/src/mxe/usr/x86_64-w64-mingw32.static + tar -xzf libbacktrace-i686-w64-mingw32.tar.gz --exclude=LICENSE -C ~/src/mxe/usr/i686-w64-mingw32.static -Building all these packages from MXE might take a while, even on a fast computer. Be patient; the `-j` flag will take advantage of all your processor cores. If you are not planning on building for both 32-bit and 64-bit, you might want to adjust your MXE_TARGETS. +Building all these packages from MXE might take a while, even on a fast computer. Be patient; the `-j` flag will take advantage of all your processor cores. If you are not planning on building for both 32-bit and 64-bit, you might want to adjust your MXE_TARGETS. Additionally if not building for a particular target you can skip the curl and tar commands for the targets NOT being built. + +An additional note: With C:DDA switching to gcc 11.2 with MXE (MingW), if you've previously built MXE you'll need to "make clean" and rebuild it to get gcc11. Edit your `~/.profile` as follows: @@ -233,8 +242,8 @@ The first time you set up your build environment, you must `touch VERSION.txt` t Run one of the following commands based on your targeted environment: - make -j$((`nproc`+0)) CROSS="${PLATFORM_32}" TILES=1 SOUND=1 RELEASE=1 LOCALIZE=1 BACKTRACE=0 PCH=0 bindist - make -j$((`nproc`+0)) CROSS="${PLATFORM_64}" TILES=1 SOUND=1 RELEASE=1 LOCALIZE=1 BACKTRACE=0 PCH=0 bindist + make -j$((`nproc`+0)) CROSS="${PLATFORM_32}" TILES=1 SOUND=1 RELEASE=1 LOCALIZE=1 bindist + make -j$((`nproc`+0)) CROSS="${PLATFORM_64}" TILES=1 SOUND=1 RELEASE=1 LOCALIZE=1 bindist diff --git a/doc/EFFECT_ON_CONDITION.md b/doc/EFFECT_ON_CONDITION.md index 17d0e03162455..442ad05735d8e 100644 --- a/doc/EFFECT_ON_CONDITION.md +++ b/doc/EFFECT_ON_CONDITION.md @@ -14,7 +14,7 @@ An effect_on_condition is an object allowing the combination of dialog condition | `global`| bool | If this is true, this recurring eoc will be run on the player and every npc from a global queue. Deactivate conditions will work based on the avatar. If it is false the avatar and every character will have their own copy and their own deactivated list. Defaults to false. | `run_on_npcs`| bool | Can only be true if global is true. If false the eoc will only be run against the avatar. If true the eoc will be run against the avatar and all npcs. Defaults to false. | `EOC_TYPE`| string | The effect_on_condition is automatically invoked once on scenario start. - Can be any of:ACTIVATION, RECURRING, SCENARIO_SPECIFIC, AVATAR_DEATH, NPC_DEATH. It defaults to ACTIVATION unless a `recurrence_min` and `recurrence_max` are provided in which case it defaults to RECURRING. If it is SCENARIO_SPECIFIC it is automatically invoked once on scenario start. If it is AVATAR_DEATH whenever the current avatar dies it will be run with the avatar as u and the killer as npc. NPC_DEATH eocs can only be assigned to run on the death of an npc. + Can be any of:ACTIVATION, RECURRING, SCENARIO_SPECIFIC, AVATAR_DEATH, NPC_DEATH. It defaults to ACTIVATION unless a `recurrence_min` and `recurrence_max` are provided in which case it defaults to RECURRING. If it is SCENARIO_SPECIFIC it is automatically invoked once on scenario start. If it is AVATAR_DEATH whenever the current avatar dies it will be run with the avatar as u and the killer as npc. NPC_DEATH eocs can only be assigned to run on the death of an npc, in which case u will be the dying npc and npc will be the killer. ## Examples: ```JSON diff --git a/doc/JSON_FLAGS.md b/doc/JSON_FLAGS.md index 3b6c4055bf48d..8e5ada31a6906 100644 --- a/doc/JSON_FLAGS.md +++ b/doc/JSON_FLAGS.md @@ -1172,6 +1172,13 @@ These branches are also the valid entries for the categories of `dreams` in `dre - ```NO_ROTATE``` The terrain can't be rotated (ID_north, ID_east, ID_south, and ID_west instances will NOT be generated, just ID). - ```RIVER``` It's a river tile. - ```SIDEWALK``` Has sidewalks on the sides adjacent to roads. +- ```IGNORE_ROTATION_FOR_ADJACENCY``` When mapgen for this OMT performs + neighbour checks, the directions will be treated as absolute, rather than + rotated to account for the rotation of the mapgen itself. Probably only + useful for hardcoded mapgen. +- ```REQUIRES_PREDECESSOR``` Mapgen for this will not start from scratch; it + will update the mapgen from the terrain it replaced. This allows the + corresponding json mapgen to use the `expects_predecessor` feature. - ```LAKE``` Consider this location to be a valid lake terrain for mapgen purposes. - ```LAKE_SHORE``` Consider this location to be a valid lake shore terrain for mapgen purposes. - ```SOURCE_FUEL``` For NPC AI, this location may contain fuel for looting. @@ -1555,6 +1562,7 @@ Gun fault flags: - ```FEATHER_FALL``` You are immune to fall damage. - ```INVISIBLE``` You can't be seen. - ```DIMENSIONAL_ANCHOR``` You can't be teleported. +- ```PORTAL_PROOF``` You are immune to personal portal storm effects. - ```CLIMATE_CONTROL``` You are resistant to extreme temperatures. - ```HEATSINK``` You are resistant to extreme heat. - ```THERMOMETER``` You always know what temperature it is. diff --git a/doc/JSON_INFO.md b/doc/JSON_INFO.md index dfed420b99867..0fa8e4d28bc8c 100644 --- a/doc/JSON_INFO.md +++ b/doc/JSON_INFO.md @@ -2461,20 +2461,23 @@ See `GAME_BALANCE.md`'s `MELEE_WEAPONS` section for the criteria for selecting e Armor can be defined like this: ```C++ -"type" : "ARMOR", // Defines this as armor -... // same entries as above for the generic item. - // additional some armor specific entries: +"type" : "ARMOR", // Defines this as armor +... // same entries as above for the generic item. + // additional some armor specific entries: "covers" : [ "foot_l", "foot_r" ], // Where it covers. Use bodypart_id defined in body_parts.json Also note that LEG_EITHER ARM_EITHER HAND_EITHER and FOOT_EITHER are allowed. -"warmth" : 10, // (Optional, default = 0) How much warmth clothing provides -"environmental_protection" : 0, // (Optional, default = 0) How much environmental protection it affords -"encumbrance" : 0, // Base encumbrance (unfitted value) -"max_encumbrance" : 0, // When a character is completely full of volume, the encumbrance of a non-rigid storage container will be set to this. Otherwise it'll be between the encumbrance and max_encumbrance following the equation: encumbrance + (max_encumbrance - encumbrance) * non-rigid volume / non-rigid capacity. By default, max_encumbrance is encumbrance + (non-rigid volume / 250ml). -"weight_capacity_bonus": "20 kg", // (Optional, default = 0) Bonus to weight carrying capacity, can be negative. Strings must be used - "5000 g" or "5 kg" -"weight_capacity_modifier": 1.5, // (Optional, default = 1) Factor modifying base weight carrying capacity. -"coverage" : 80, // What percentage of body part -"material_thickness" : 1, // Thickness of material, in millimeter units (approximately). Ordinary clothes range from 0.1 to 0.5. Particularly rugged cloth may reach as high as 1-2mm, and armor or protective equipment can range as high as 10 or rarely more. -"power_armor" : false, // If this is a power armor item (those are special). -"valid_mods" : ["steel_padded"], // List of valid clothing mods. Note that if the clothing mod doesn't have "restricted" listed, this isn't needed. +"warmth" : 10, // (Optional, default = 0) How much warmth clothing provides +"environmental_protection" : 0, // (Optional, default = 0) How much environmental protection it affords +"encumbrance" : 0, // Base encumbrance (unfitted value) +"max_encumbrance" : 0, // When a character is completely full of volume, the encumbrance of a non-rigid storage container will be set to this. Otherwise it'll be between the encumbrance and max_encumbrance following the equation: encumbrance + (max_encumbrance - encumbrance) * non-rigid volume / non-rigid capacity. By default, max_encumbrance is encumbrance + (non-rigid volume / 250ml). +"weight_capacity_bonus": "20 kg", // (Optional, default = 0) Bonus to weight carrying capacity, can be negative. Strings must be used - "5000 g" or "5 kg" +"weight_capacity_modifier": 1.5, // (Optional, default = 1) Factor modifying base weight carrying capacity. +"coverage": 80, // What percentage of body part is covered (in general) +"cover_melee": 60, // What percentage of body part is covered (against melee) +"cover_ranged": 45, // What percentage of body part is covered (against ranged) +"cover_vitals": 10, // What percentage of critical hit damage is mitigated +"material_thickness" : 1, // Thickness of material, in millimeter units (approximately). Ordinary clothes range from 0.1 to 0.5. Particularly rugged cloth may reach as high as 1-2mm, and armor or protective equipment can range as high as 10 or rarely more. +"power_armor" : false, // If this is a power armor item (those are special). +"valid_mods" : ["steel_padded"], // List of valid clothing mods. Note that if the clothing mod doesn't have "restricted" listed, this isn't needed. "armor": [ ... ] ``` @@ -2486,11 +2489,17 @@ Encumbrance and coverage can be defined on a piece of armor as such: { "encumbrance": [ 2, 8 ], "coverage": 95, + "cover_melee": 95, + "cover_ranged": 50, + "cover_vitals": 5, "covers": [ "torso" ] }, { "encumbrance": 2, "coverage": 80, + "cover_melee": 80, + "cover_ranged": 70, + "cover_vitals": 5, "covers": [ "arm_r", "arm_l" ] } ] @@ -2505,6 +2514,10 @@ When specified as an array, the second value is the max encumbrance - when the p (integer) What percentage of time this piece of armor will be hit (and thus used as armor) when an attack hits the body parts in `covers`. +`cover_melee` and `cover_ranged` represent the percentage of time this piece of armor will be hit by melee and ranged attacks respectively. Usually these would be the same as `coverage`. + +`cover_vitals` represents the percentage of critical hit damage is absorbed. Only the excess damage on top of normal damage is mitigated, so a vital coverage value of 100 means that critical hits would do the same amount as normal hits. + ##### Covers (array of strings) What body parts this section of the armor covers. See the bodypart_ids defined in body_parts.json for valid values. diff --git a/doc/MANUAL_OF_STYLE.md b/doc/MANUAL_OF_STYLE.md index a27a2553f430d..f8231ed04811b 100644 --- a/doc/MANUAL_OF_STYLE.md +++ b/doc/MANUAL_OF_STYLE.md @@ -7,4 +7,6 @@ Follow these conventions when adding or editing in-game text: 5. Items and entities with proper noun names should also be in title case. 6. All other item and entity names should be in all lower-case letters. 7. Use the serial comma (Oxford comma). -8. Use ellipsis character (…) instead of three dots (...). Replace instances of three periods with the dedicated Unicode character for ellipsis, namely U+2026. +8. Use ellipsis character (…) instead of three dots (...). Replace instances of three periods with the dedicated Unicode character for ellipsis, namely U+2026. As to the specifics of using it: +- No spaces before it and one space after it. +- This character does not end a sentence, use ellipsis followed by a period `….` when ending a sentence with ellipsis. diff --git a/doc/MAPGEN.md b/doc/MAPGEN.md index f631cc0f4ea97..679c7978716fd 100644 --- a/doc/MAPGEN.md +++ b/doc/MAPGEN.md @@ -1137,7 +1137,7 @@ Rotates the generated map after all the other mapgen stuff has been done. The va Values are 90° steps. -## Pre-load a base mapgen with "predecessor_mapgen" +## Pre-load a base mapgen with `"predecessor_mapgen"` Specifying an overmap terrain id here will run the entire mapgen for that overmap terrain type first, before applying the rest of the mapgen defined here. The primary use case for this is when our mapgen for a location takes place in a @@ -1149,6 +1149,26 @@ the cabin fit in) which leads to them being out of sync when the generation of t Example: `"predecessor_mapgen": "forest"` +## Dynamically use base mapgen with `"fallback_predecessor_mapgen"` + +If your map could exist in a variety of surroundings, you might want to +automatically take advantage of the mapgen for whatever terrain was assumed to +be here before this one was set. For example, overmap specials are always +placed over existing terrain like fields and forests. + +Defining `"fallback_predecessor_mapgen"` allows your map to opt-in to +requesting that whatever that previous terrain was, it should be generated +first, before your mapgen is applied on top. This works the same as for +`"predecessor_mapgen"` above, except that it will pick the correct terrain for +the context automatically. + +However, to support savegame migration across changes to mapgen definitions, +you must provide a fallback value which will be used in the event that the game +doesn't know what the previous terrain was. + +Example: `"predecessor_mapgen": "field"` + + # Palettes A **palette** provides a way to use the same symbol definitions for different diff --git a/doc/MONSTERS.md b/doc/MONSTERS.md index 11f4664808842..589cc4f64ac1a 100644 --- a/doc/MONSTERS.md +++ b/doc/MONSTERS.md @@ -64,6 +64,7 @@ Monsters may also have any of these optional properties: | `armor_acid` | (integer) Monster's protection from acid damage | `armor_fire` | (integer) Monster's protection from fire damage | `weakpoints` | (array of objects) Weakpoints in the monster's protection +| `families` | (array of objects) Weakpoint families that the monster belongs to | `vision_day` | (integer) Vision range in full daylight, with `50` being the typical maximum | `vision_night` | (integer) Vision range in total darkness, ex. coyote `5`, bear `10`, sewer rat `30`, flaming eye `40` | `tracking_distance` | (integer) Amount of tiles the monster will keep between itself and its current tracked enemy or followed leader. Defaults to `3`. @@ -326,16 +327,19 @@ Weakpoints in the monster's protection. | field | description | --- | --- -| `name` | Name of the weakpoint. -| `coverage` | Base percentage chance of hitting the weakpoint. May be increased by skill level. (e.g. A coverage of 5 means a 5% base chance of hitting the weakpoint) -| `armor_mult` | multipler on the monster's base protection when hitting the weakpoint. -| `armor_penalty` | a flat penalty to the monster's protection, applied after the multiplier. -| `damage_mult` | multipler on the post-armor damage when hitting the weakpoint. -| `crit_mult` | multipler on the post-armor damage when critically hitting the weakpoint. +| `id` | id of the weakpoint. Defaults to `name`, if not specified. +| `name` | name of the weakpoint. Used in hit messages. +| `coverage` | base percentage chance of hitting the weakpoint. (e.g. A coverage of 5 means a 5% base chance of hitting the weakpoint) +| `coverage_mult` | object mapping weapon types to constant coverage multipliers. +| `difficulty` | object mapping weakon types to difficulty values. Difficulty acts as soft "gate" on the attacker's skill. If the the attacker has skill equal to the difficulty, coverage is reduced to 50%. +| `armor_mult` | object mapping damage types to multipliers on the monster's base protection, when hitting the weakpoint. +| `armor_penalty` | object mapping damage types to flat penalties on the monster's protection, applied after the multiplier. +| `damage_mult` | object mapping damage types to multipliers on the post-armor damage, when hitting the weakpoint. +| `crit_mult` | object mapping damage types to multipliers on the post-armor damage, when critically hitting the weakpoint. Defaults to `damage_mult`, if not specified. | `required_effects` | list of effect names applied to the monster required to hit the weakpoint. | `effects` | list of effects objects that may be applied to the monster by hitting the weakpoint. -The `effects` field is a list of objects with the following subfields. +The `effects` field is a list of objects with the following subfields: | field | description | --- | --- @@ -346,6 +350,42 @@ The `effects` field is a list of objects with the following subfields. | `intensity` | The intensity of the effect. Either a (min, max) pair or a single value. | `damage_required` | The range of damage, as a percentage of max health, required to trigger the effect. | `message` | The message to print, if the player triggers the effect. Should take a single template parameter, referencing the monster's name. + +The `coverage_mult` and `difficulty` objects support the following subfields: +| field | description +| --- | --- +| `all` | The default value, if nothing more specific is provided. +| `bash` | The value used for melee bashing weapons. +| `cut` | The value used for melee cutting weapons. +| `stab` | The value used for melee stabbing weapons. +| `ranged` | The value used for ranged weapons, including projectiles and throwning weapons. +| `melee` | The default value for melee weapons (`bash`, `cut`, and `stab`). Takes precedence over `point` and `broad`. +| `point` | The default value for pointed weapons (`stab` and `ranged`). +| `broad` | The default value for broad weapons (`bash` and `cut`). + +The `armor_mult`, `armor_penalty`, `damage_mult`, and `crit_mult` objects support *all damage types*, as well as the following fields: +| field | description +| --- | --- +| `all` | The default value for all fields, if nothing more specific is provided. +| `physical` | The default value for physical damage types (`bash`, `cut`, `stab`, and `bullet`) +| `non_physical` | The default value for non-physical damage types (`biological`, `acid`, `heat`, `cold`, and `electric`) + +Default weakpoints are weakpoint objects with an `id` equal to the empty string. +When an attacker misses the other weakpoints, they will hit the defender's default weakpoint. +A monster should have at most 1 default weakpoint. + +## "families" +(array of objects, optional) + +Weakpoint families that the monster belongs to. + +| field | description +| --- | --- +| `id` | The ID of the family. Defaults to `proficiency`, if not provided. +| `proficiency` | The proficiency ID corresponding to the family. +| `bonus` | The bonus to weak point skill, if the attacker has the proficiency. +| `penalty` | The penalty to weak point skill, if the attacker lacks the proficiency. + ## "vision_day", "vision_night" (integer, optional) diff --git a/doc/NPCs.md b/doc/NPCs.md index ff17b5b284605..ae7c332e45758 100644 --- a/doc/NPCs.md +++ b/doc/NPCs.md @@ -526,7 +526,7 @@ Effect | Description `u_learn_recipe: recipe_string` | Your character will learn and memorize the recipe `recipe_string`. `npc_first_topic: talk_topic_string` | Changes the initial talk_topic of the NPC in all future dialogues. `u_add_wet: wet_int`
`npc_add_wet: wet_int or wet_variable_object` | Your character or the NPC will be wet `wet_int` (or the value of the variable described by `wet_variable_object` see `variable_object` above) as if they were in the rain. -`u_make_sound, npc_make_sound: message_string`, `volume: volume_int`, `type: type_string`, | A sound of description `message_string` will be made at your character or the NPC's location of volume `volume_int` and type `type_string`. Possible types are: background, weather, music, movement, speech, electronic_speech, activity, destructive_activity, alarm, combat, alert, or order +`u_make_sound, npc_make_sound: message_string`, `volume: volume_int`, `type: type_string`, | A sound of description `message_string` will be made at your character or the NPC's location of volume `volume_int` and type `type_string`. Possible types are: background, weather, music, movement, speech, electronic_speech, activity, destructive_activity, alarm, combat, alert, or order `u_mod_healthy, npc_mod_healthy : amount_int or amount_variable_object, cap: cap_int or cap_variable_object` | Your character or the NPC will have `amount_int` ( or the value of the variable described by `amount_variable_object` see `variable_object` above) added or subtracted from its health value, but not beyond `cap_int` or `cap_variable_object`. `u_add_morale: morale_string`, (*optional* `bonus: bonus_int` ), (*optional* `max_bonus: max_bonus_int or max_bonus_variable_object` ), (*optional* `duration: duration_string or duration_variable_object`), (*optional* `decay_start` : `decay_string or decay_variable_object`), (*optional* `capped`: `capped_bool`)
`npc_add_morale: morale_string`, (*optional* `bonus: bonus_int or bonus_variable_object` ), (*optional* `max_bonus: max_bonus_int` ), (*optional* `duration: duration_int`), (*optional*`decay_start` : `decay_int`), (*optional* `capped`: `capped_bool`)| Your character or the NPC will gain a morale bonus of type `morale_string`. Morale is changed by `bonus_int`( or the value of the variable described by `bonus_variable_object` see `variable_object` above) (default 1), with a maximum of up to `max_bonus_int`(or `max_bonus_variable_object`) (default 1). It will last for `duration: duration_string` time (default 1 hour) or `duration_variable_object`. It will begin to decay after `decay_string` time (default 30 minutes) or `decay_variable_object`. `capped_bool` Whether this morale is capped or not, defaults to false. `u_lose_morale: morale_string`
`npc_lose_morale: morale_string` | Your character or the NPC will lose any morale of type `morale_string`. @@ -593,12 +593,14 @@ Effect | Description `set_npc_engagement_rule: rule_string` | Sets the NPC follower AI rule for engagement distance to the value of `rule_string`. `set_npc_aim_rule: rule_string` | Sets the NPC follower AI rule for aiming speed to the value of `rule_string`. `npc_die` | The NPC will die at the end of the conversation. +`npc_set_goal:assign_mission_target_object` | The NPC will walk to `assign_mission_target_object`. See [the missions docs](MISSIONS_JSON.md) for `assign_mission_target` parameters. #### Map Updates Effect | Description ---|--- `mapgen_update: mapgen_update_id_string`
`mapgen_update:` *list of `mapgen_update_id_string`s*, (optional `assign_mission_target` parameters) | With no other parameters, updates the overmap tile at the player's current location with the changes described in `mapgen_update_id` (or for each `mapgen_update_id` in the list). The `assign_mission_target` parameters can be used to change the location of the overmap tile that gets updated. See [the missions docs](MISSIONS_JSON.md) for `assign_mission_target` parameters and [the mapgen docs](MAPGEN.md) for `mapgen_update`. `lightning` | Allows supercharging monster in electrical fields, legacy command for lightning weather. +`next_weather` | Forces a check for what weather it should be. `custom_light_level: custom_light_level_int or custom_light_level_variable_object, length_min: duration_string or duration_variable_object, length_max: duration_string or duration_variable_object` | Sets the ambient light from the sun/moon to be `custom_light_level_int` ( or the value of the variable described by `custom_light_level_variable_object` see `variable_object` above). This can vary naturally between 0 and 125 depending on the sun to give a scale. This lasts between `length_min` and `length_max long`. `u_set_spawn_monster: mtype_id_string, npc_set_spawn_monster: mtype_id_string`,(*optional* `group: group_bool`, *optional* `hallucination_count: hallucination_count_int or hallucination_count_variable_object`, *optional* `real_count: real_count_int or real_count_variable_object`,*optional* `min_radius: min_radius_int or max_bonus_variable_object`,*optional* `max_radius: max_radius_int or max_radius_variable_object`,*optional* `outdoor_only: outdoor_only_bool`,*optional* `target_range : target_range_int or target_range_variable_object`), *optional* `timespan_min: timespan_min_string or variable_object`,*optional* `timespan_max: timespan_max_string or variable_object` | Spawns `real_count_int`( or the value of the variable described by `real_count_variable_object` see `variable_object` above)(defaults to 0) monsters and `hallucination_count_int`( or `hallucination_count_variable_object`) (defaults to 0) hallucinations near you or the npc. The spawn will be of type `mtype_id_string`, if `group_bool` is false(defaults to false,if it is true a randome monster from monster_group `mtype_id_string` will be used), if this is an empty string it will instead be a random monster within `target_range_int`( or `target_range_variable_object`) spaces of you. The spawns will happen between `min_radius_int`( or `min_radius_variable_object`)(defaults to 1) and `max_radius_int`( or `max_radius_variable_object`)(defaults to 10) spaces of the target and if `outdoor_only_bool` is true(defaults to false) will only choose outdoor spaces. If `timespan_min` and `timespan_max` (or the `variable_object` versions) are both provided the monster or hallucination will only live for a random amount of time in between the values. `u_set_field: field_id_string or npc_set_field: field_id_string`,(*optional* `intensity: intensity_int or intensity_variable_onject`, *optional* `age: age_int or variable_object`,*optional* `radius: radius_int or radius_variable_onject`,*optional* `outdoor_only: outdoor_only_bool`,*optional* `hit_player : hit_player_bool`) | Add a field centered on you or the npc of type `field_type_id_string`, of intensity `intensity_int`( or the value of the variable described by `real_count_variable_object` see `variable_object` above)( defaults to 1,) of radius `radius_int`( or `radius_variable_object`)(defaults to 10000000) and age `age_int` (defaults 1) or `age_variable_object`. It will only happen outdoors if `outdoor_only` is true, it defaults to false. It will hit the player as if they entered it if `hit_player` it true, it defaults to true. @@ -612,7 +614,7 @@ Effect | Description `take_control_menu`. Opens up a menu to choose a follower to take control of. `assign_mission: mission_type_id string` | Will assign mission `mission_type_id` to the player. `finish_mission: mission_type_id string`,`success: success_bool` | Will complete mission `mission_type_id` to the player as a success if `success` is true, as a failure otherwise. -`set_queue_effect_on_condition: effect_on_condition_array`, (*optional* `time_in_future_min: time_in_future_min_int or string or variable_object`,`time_in_future_max: time_in_future_max_int or string or variable_object` | Will queue up all members of the `effect_on_condition_array`. Members should either be the id of an effect_on_condition or an inline effect_on_condition. Members will be run between `time_in_future_min_int` and `time_in_future_max_int` seconds, or if they are strings the future values of them or if they are variable objects the variable they name. If these are zero (their default value) the eocs will happen instantly. For instant activation eocs the current u and npc will be used. For future ones u will be the avatar and npc will be invalid. You cannot queue recurring eocs. +`set_queue_effect_on_condition, u_set_queue_eoc or npc_set_queue_eoc : effect_on_condition_array`, (*optional* `time_in_future_min: time_in_future_min_int or string or variable_object`,`time_in_future_max: time_in_future_max_int or string or variable_object`, (*optional* `affect_nearby_npcs: affect_nearby_npcs_bool`),(*optional* `npcs_to_affect: npcs_to_affect_string_array`, (*optional* `npcs_must_see: npcs_must_see_bool`), (*optional* `npc_range: npc_range_int`) | Will queue up all members of the `effect_on_condition_array`. Members should either be the id of an effect_on_condition or an inline effect_on_condition. Members will be run between `time_in_future_min_int` and `time_in_future_max_int` seconds, or if they are strings the future values of them or if they are variable objects the variable they name. If these are zero (their default value) the eocs will happen instantly. If `affect_nearby_npcs`(defaults to false) is false then for instant activation eocs the current u and npc will be used. For future ones u will be the avatar and npc will be invalid. You cannot queue recurring eocs. If `affect_nearby_npcs` is true instead the eocs will be run on all nearby npcs matching the criteria. If any names are listed in `npcs_to_affect` then only they will be affected. If a value is given for `npc_range` the npc must be that close to the source and if `npcs_must_see`(defaults to false) is true the npc must be able to see the source. For `set_queue_effect_on_condition` and `u_set_queue_eoc` u is the source for `npc_set_queue_eoc` it is the npc. `set_weighted_list_eocs: array_array` | Will choose one of a list of eocs to activate based on weight. Members should be an array of first the id of an effect_on_condition or an inline effect_on_condition and second an integer weight. Example: This will cause "EOC_SLEEP" 1/10 as often as it makes a test message appear. ``` json diff --git a/doc/OVERMAP.md b/doc/OVERMAP.md index af0ee3ec2d132..c5e0afdf5e418 100644 --- a/doc/OVERMAP.md +++ b/doc/OVERMAP.md @@ -564,6 +564,36 @@ proceeds to the next phase. If all phases complete and unsatisfied joins remain, this is considered an error and a debugmsg will be displayed with more details. +#### Chunks + +A placement rule in the phases can specify multiple overmaps to be placed in a +particular configuration. This is useful if you want to place some feature +that's larger than a single OMT. Here is an example from the microlab: + +```json +{ + "name": "subway_chunk_at_-2", + "chunk": [ + { "overmap": "microlab_sub_entry", "pos": [ 0, 0, 0 ], "rot": "north" }, + { "overmap": "microlab_sub_station", "pos": [ 0, -1, 0 ] }, + { "overmap": "microlab_subway", "pos": [ 0, -2, 0 ] } + ], + "max": 1 +} +``` + +The `"name"` of a chunk is only for debugging messages when something goes +wrong. `"max"` and `"weight"` are handled as above. + +The new feature is `"chunks"` which specifies a list of overmaps and their +relative positions and rotations. The overmaps are taken from the ones defined +for this special. Rotation of `"north"` is the default, so specifying that has +no effect, but it's included here to demonstrate the syntax. + +The postions and rotations are relative. The chunk can be placed at any offset +and rotation, so long as all the overmaps are shifted and rotated together like +a rigid body. + #### Techniques to avoid placement errors To help avoid these errors, some additional features of the mutable special @@ -695,6 +725,53 @@ asymmetric, like this: As you can see, the `tunnel_to_surface` part of the pair needs to override the default value of `into_locations` because it points towards the surface. +#### Alternative joins + +Sometimes you want the next phase(s) of a mutable special to be able to link to +existing unresolved joins without themselves generating any unresolved joins of +that type. This helps to create a clean break between the old and the new. + +For example, this happens in the `microlab_mutable` special. This special has +some structured `hallway` OMTs surrounded by a clump of `microlab` OMTs. The +hallways have `hallway_to_microlab` joins pointing out to their sides, so we +need `microlab` OMTs to have `microlab_to_hallway` joins (the opposite of +`hallway_to_microlab`) in order to match them. + +However, we don't want the unresolved edges of a `microlab` OMT to require more +hallways all around, so we mostly want them to use `microlab_to_microlab` +joins. How can we satisfy these apparently conflicting requirements without +making many different variants of `microlab` with different numbers of each +type of join? Alternative joins can help us here. + +The definition of the `microlab` overmap might look like this: + +```json +"microlab": { + "overmap": "microlab_generic", + "north": { "id": "microlab_to_microlab", "alternatives": [ "microlab_to_hallway" ] }, + "east": { "id": "microlab_to_microlab", "alternatives": [ "microlab_to_hallway" ] }, + "south": { "id": "microlab_to_microlab", "alternatives": [ "microlab_to_hallway" ] }, + "west": { "id": "microlab_to_microlab", "alternatives": [ "microlab_to_hallway" ] } +}, +``` + +This allows it to join with hallways which are already placed on the overmap, +but new unresolved joins will only match more `microlab`s. + +#### Testing your new mutable special + +If you want to exhaustively test your mutable special for placement errors, and +you are in a position to compile the game, then an easy way to do so is to use +the existing test in `tests/overmap_test.cpp`. + +In that file, look for `TEST_CASE( "mutable_overmap_placement"`. At the start +of that function there is a list of mutable special ids that tests tries +spawning. Replace one of them with your new special's id, recompile and run +the test. + +The test will attempt to place your special a few thousand times, and should +find most ways in which placement might fail. + ### Joins A join definition can be a simple string, which will be its id. Alternatively, @@ -730,6 +807,7 @@ join id. Alternatively it can be a JSON object with the following keys: | ----------- | -------------------------------------------------------------------------- | | `id` | Id of the join used here. | | `type` | Either `"mandatory"` or `"available"`. Default: `"mandatory"`. | +| `alternatives` | List of join ids that may be used instead of the one listed under `id`, but only when placing this overmap. Unresolved joins created by its placement will only be the primary join `id`. | ### Generation rules diff --git a/doc/PROFICIENCY.md b/doc/PROFICIENCY.md index d50cee7245fd2..1c49c2157a345 100644 --- a/doc/PROFICIENCY.md +++ b/doc/PROFICIENCY.md @@ -110,6 +110,8 @@ Within these are the standard list of JSON objects having "type": "proficiency". | `can_learn` | Mandatory | Bool | Whether or not this proficiency can be learned through normal means during the game. | `default_time_multiplier` | Optional | Float | Time multiplier for crafting recipes (see below) | `default_fail_multiplier` | Optional | Float | Failure chance multiplier for crafting recipes (see below) +| `default_weakpoint_bonus` | Optional | Float | Flat bonus to the attacker's skill +| `default_weakpoint_penalty` | Optional | Float | Flat penalty to the attacker's skill if they lack the skill | `time_to_learn` | Optional | time_duration, as a string | The (optimal) time required to learn this proficiency. | `required_proficiencies` | Optional | Array of strings | The proficiencies that must be obtained before this one can. You cannot gain experience in a proficiency without the necessary prerequisites. | `bonuses` | Optional | Object, with an array of object as values | This member is used to apply bonuses to certain activities given the player has a particular proficiency. The bonuses applied must be hardcoded to the activity in question. (see below) diff --git a/doc/SOUNDPACKS.md b/doc/SOUNDPACKS.md index 9f6543c867060..2b565fa1b976e 100644 --- a/doc/SOUNDPACKS.md +++ b/doc/SOUNDPACKS.md @@ -33,12 +33,13 @@ Sound effects can be included with a format like this: "id": "fire_gun", "volume": 90, "variant": "bio_laser_gun", + "season": "summer", "files": [ "guns/energy_generic/weapon_fire_laser.ogg" ] } ] ``` -Adding variety: If for a certain `id`'s `variant` multiple `files` are defined, they will be chosen at random when `variant` is played. +Adding variety: If for a certain `id`'s `variant` multiple `files` are defined, they will be chosen at random when `variant` is played. An optional `season` may also be defined to only play that sound during the specified season (possible values are `spring`, `summer`, `autumn`, and `winter`). The volume key may range from 0-100. @@ -52,7 +53,10 @@ Sound effects can be included for preloading with a format like this: [ { "type": "sound_effect_preload", - "preload": [ { "id": "environment", "variant": "daytime" }, { "id": "environment" } ] + "preload": [ + { "id": "environment", "variant": "daytime", "season": "spring" }, + { "id": "environment" } + ] } ] ``` @@ -76,7 +80,7 @@ A playlist can be included with a format like this: ] ``` -Each sound effect is identified by an id and a variant. If a sound effect is played with a variant that does not exist in the json files, but a variant "default" exists, then the "default" variant is played instead. The file name of the sound effect is relative to the soundpack directory, so if the file name is set to "sfx.wav" and your soundpack is in `data/sound/mypack`, the file must be placed at `data/sound/mypack/sfx.wav`. +Each sound effect is identified by an id, a variant, and a season. If a sound effect is played with a variant that does not exist in the json files, but a variant "default" exists, then the "default" variant is played instead. The file name of the sound effect is relative to the soundpack directory, so if the file name is set to "sfx.wav" and your soundpack is in `data/sound/mypack`, the file must be placed at `data/sound/mypack/sfx.wav`. ## JSON Format Sound Effects List diff --git a/doc/WEATHER_TYPE.md b/doc/WEATHER_TYPE.md index 5aac767de6f53..1df61320d14b1 100644 --- a/doc/WEATHER_TYPE.md +++ b/doc/WEATHER_TYPE.md @@ -21,10 +21,10 @@ Each weather type is a type of weather that occurs, and what causes it. The only | `tiles_animation` | Optional, name of the tiles animation to use | | `sound_category` | Optional, what sound effect to play. Valid values are: silent, drizzle, rainy, thunder, flurries, snowstorm and snow. | | `sun_intensity` | Strength of the sun. Valid values are: none, light, normal, and high | -| `duration_min` | Optional, the lower bound on the amount of time this weather can last. Defaults to 5 minutes. Unless time_between_min and time_between_max are set the weather can happen again as soon as it ends. | -| `duration_max` | Optional, the upper bound on the amount of time this weather can last. Defaults to 5 minutes. Unless time_between_min and time_between_max are set the weather can happen again soon as it ends. | +| `duration_min` | Optional, the lower bound on the amount of time this weather can last. Defaults to 5 minutes. +| `duration_max` | Optional, the upper bound on the amount of time this weather can last. Defaults to 5 minutes. | `weather_animation` | Optional, Information controlling weather animations. Members: factor, color and glyph | -| `required_weathers` | a string array of possible weathers it is at this point in the loop. i.e. rain can only happen if the conditions for clouds light drizzle or drizzle are present | +| `required_weathers` | A string array of possible weathers, it is at this point in the loop. i.e. rain can only happen if the conditions for clouds light drizzle or drizzle are present | | `condition` | A dialog condition to determine if this weather is happening. See Dialogue conditions section of [NPCs](NPCs.md) #### `weather_type` example @@ -49,62 +49,4 @@ Each weather type is a type of weather that occurs, and what causes it. The only "required_weathers": [ "thunder" ], "condition": { "not": { "is_pressure": 990 } } } -] -``` - - -### Weather effect properties - -| Identifier | Description | -| ------------------------------ | --------------------------------------------------------------------- | -| `message` | Optional: Message displayed when this effect happens. | -| `sound_message` | Optional: Message describing what you hear, will not display if deaf | -| `sound_effect` | Optional: Name of sound effect to play | -| `sound_message` | Optional: Message describing what you hear for this, will not display if deaf. | -| `must_be_outside` | Whether the effect only happens while you are outside. | -| `one_in_chance` | Optional: The chance of the event occurring is 1 in this value, if blank will always happen. | -| `time_between` | Optional: The time between instances of this effect occurring. If both this and one_in_chance are set will only happen when both are true. | -| `lightning` | Optional: Causes the world be bright at night and supercharge monster electric fields. | -| `rain_proof` | Optional: If rainproof, resistant gear will help against this | -| `pain_max` | Optional: If there is a threshold of pain at which this will stop happening. | -| `pain` | Optional: How much pain this causes. | -| `wet` | Optional: How much wet this causes. | -| `radiation` | Optional: How much radiation this causes. | -| `healthy` | Optional: How much healthy this adds or removes. | -| `effect_id` | Optional: String id of an effect to add. | -| `effect_duration` | Optional: How long the above effect will be added for, defaults to 1 second. | -| `target_part` | Optional: Bodypart that above effect or damage are applied to, if blank affects whole body. | -| `damage` | Optional: List of damage instances applied | -| `spawns` | Optional: Array of spawns to cause. If spawns are selected but are unable to spawn the effect is cancelled. | -| `fields` | Optional: Array of fields to cause. Elements are discussed below | - -#### `effects` example - -```json -{ - "must_be_outside": true, - "radiation": 10, - "healthy" :1, - "message": "Suddenly a something", - "add_effect": "bite", - "effect_duration": "10 minutes", - "target_part": "arm_l", - "damage": [ - { - "damage_type": "electric", - "amount": 4.0, - "armor_penetration": 1, - "armor_multiplier": 1.2, - "damage_multiplier": 1.4 - } - ], - "spawns": - [{ - "max_radius": 10, - "min_radius": 10, - "target": "mon_zombie_survivor_elite", - "hallucination_count": 1, - "real_count": 0 - }] -} -``` +] \ No newline at end of file diff --git a/gfx/BrownLikeBears/mods.png b/gfx/BrownLikeBears/mods.png index 2148f52152851..ab15cd42a2c47 100644 Binary files a/gfx/BrownLikeBears/mods.png and b/gfx/BrownLikeBears/mods.png differ diff --git a/gfx/BrownLikeBears/tile_config.json b/gfx/BrownLikeBears/tile_config.json index 81652f2f602f4..92b48c4d4870a 100644 --- a/gfx/BrownLikeBears/tile_config.json +++ b/gfx/BrownLikeBears/tile_config.json @@ -7,100 +7,100 @@ "file": "tiles.png", "//": "range 1 to 2815", "tiles": [ - { "id": "npc_female", "fg": 5, "rotates": false }, - { "id": "npc_male", "fg": 4, "rotates": false }, - { "id": "player_female", "fg": 3, "rotates": false }, - { "id": "player_male", "fg": 2, "rotates": false }, - { "id": "overlay_female_mutation_BEAUTIFUL2", "fg": 28, "rotates": false }, - { "id": "overlay_female_mutation_BEAUTIFUL3", "fg": 28, "rotates": false }, - { "id": "overlay_female_mutation_BEAUTIFUL", "fg": 28, "rotates": false }, - { "id": "overlay_female_mutation_PRETTY", "fg": 28, "rotates": false }, - { "id": "overlay_mutation_ANTENNAE", "fg": 27, "rotates": false }, - { "id": "overlay_mutation_ANTLERS", "fg": 26, "rotates": false }, - { "id": "overlay_mutation_ARACHNID_ARMS", "fg": 25, "rotates": false }, - { "id": "overlay_mutation_ARACHNID_ARMS_OK", "fg": 25, "rotates": false }, - { "id": "overlay_mutation_ARM_TENTACLES", "fg": 25, "rotates": false }, - { "id": "overlay_mutation_ARM_TENTACLES_4", "fg": 25, "rotates": false }, - { "id": "overlay_mutation_ARM_TENTACLES_8", "fg": 25, "rotates": false }, - { "id": "overlay_mutation_BEAK", "fg": 24, "rotates": false }, - { "id": "overlay_mutation_BEAK_HUM", "fg": 24, "rotates": false }, - { "id": "overlay_mutation_BEAK_PECK", "fg": 24, "rotates": false }, - { "id": "overlay_mutation_BURROW", "fg": 23, "rotates": false }, - { "id": "overlay_mutation_CANINE_EARS", "fg": 8, "rotates": false }, - { "id": "overlay_mutation_CHITIN2", "fg": 21, "rotates": false }, - { "id": "overlay_mutation_CHITIN3", "fg": 21, "rotates": false }, - { "id": "overlay_mutation_CHITIN", "fg": 21, "rotates": false }, - { "id": "overlay_mutation_CHITIN_FUR2", "fg": 21, "rotates": false }, - { "id": "overlay_mutation_CHITIN_FUR3", "fg": 21, "rotates": false }, - { "id": "overlay_mutation_CHITIN_FUR", "fg": 21, "rotates": false }, - { "id": "overlay_mutation_CLAWS", "fg": 22, "rotates": false }, - { "id": "overlay_mutation_CLAWS_RAT", "fg": 22, "rotates": false }, - { "id": "overlay_mutation_CLAWS_RETRACT", "fg": 22, "rotates": false }, - { "id": "overlay_mutation_CLAWS_ST", "fg": 22, "rotates": false }, - { "id": "overlay_mutation_CLAWS_TENTACLE", "fg": 25, "rotates": false }, - { "id": "overlay_mutation_DEFORMED2", "fg": 17, "rotates": false }, - { "id": "overlay_mutation_DEFORMED3", "fg": 17, "rotates": false }, - { "id": "overlay_mutation_DEFORMED", "fg": 17, "rotates": false }, - { "id": "overlay_mutation_DOWN", "fg": 17, "rotates": false }, - { "id": "overlay_mutation_ELFA_EARS", "fg": 7, "rotates": false }, - { "id": "overlay_mutation_FANGS", "fg": 14, "rotates": false }, - { "id": "overlay_mutation_FANGS_SPIDER", "fg": 14, "rotates": false }, - { "id": "overlay_mutation_FEATHERS", "fg": 16, "rotates": false }, - { "id": "overlay_mutation_FELINE_EARS", "fg": 6, "rotates": false }, - { "id": "overlay_mutation_FELINE_FUR", "fg": 20, "rotates": false }, - { "id": "overlay_mutation_FUR", "fg": 20, "rotates": false }, - { "id": "overlay_mutation_HORNS", "fg": 13, "rotates": false }, - { "id": "overlay_mutation_HORNS_CURLED", "fg": 13, "rotates": false }, - { "id": "overlay_mutation_HORNS_POINTED", "fg": 13, "rotates": false }, - { "id": "overlay_mutation_INFRARED", "fg": 15, "rotates": false }, - { "id": "overlay_mutation_INSECT_ARMS", "fg": 25, "rotates": false }, - { "id": "overlay_mutation_INSECT_ARMS_OK", "fg": 25, "rotates": false }, - { "id": "overlay_mutation_LEG_TENTACLES", "fg": 12, "rotates": false }, - { "id": "overlay_mutation_LIZ_EYE", "fg": 15, "rotates": false }, - { "id": "overlay_mutation_LYNX_FUR", "fg": 20, "rotates": false }, - { "id": "overlay_mutation_MUZZLE_LONG", "fg": 18, "rotates": false }, - { "id": "overlay_mutation_NAILS", "fg": 22, "rotates": false }, - { "id": "overlay_mutation_NIGHTVISION3", "fg": 15, "rotates": false }, - { "id": "overlay_mutation_RADIOACTIVE2", "fg": 11, "rotates": false }, - { "id": "overlay_mutation_RADIOACTIVE3", "fg": 10, "rotates": false }, - { "id": "overlay_mutation_SLEEK_SCALES", "fg": 16, "rotates": false }, - { "id": "overlay_mutation_SLIME_HANDS", "fg": 25, "rotates": false }, - { "id": "overlay_mutation_SLIMY", "fg": 19, "rotates": false }, - { "id": "overlay_mutation_SNOUT", "fg": 18, "rotates": false }, - { "id": "overlay_mutation_TAIL_CATTLE", "fg": 9, "rotates": false }, - { "id": "overlay_mutation_TAIL_CLUB", "fg": 9, "rotates": false }, - { "id": "overlay_mutation_TAIL_LONG", "fg": 9, "rotates": false }, - { "id": "overlay_mutation_TAIL_RAPTOR", "fg": 9, "rotates": false }, - { "id": "overlay_mutation_TAIL_RAT", "fg": 9, "rotates": false }, - { "id": "overlay_mutation_TAIL_STING", "fg": 9, "rotates": false }, - { "id": "overlay_mutation_TAIL_STUB", "fg": 9, "rotates": false }, - { "id": "overlay_mutation_TAIL_THICK", "fg": 9, "rotates": false }, - { "id": "overlay_mutation_THICK_SCALES", "fg": 16, "rotates": false }, - { "id": "overlay_mutation_URSINE_FUR", "fg": 20, "rotates": false }, - { "id": "overlay_mutation_WHISKERS", "fg": 31, "rotates": false }, - { "id": "overlay_mutation_WINGS_BAT", "fg": 30, "rotates": false }, - { "id": "overlay_mutation_WINGS_BIRD", "fg": 30, "rotates": false }, - { "id": "overlay_mutation_WINGS_BUTTERFLY", "fg": 30, "rotates": false }, - { "id": "overlay_mutation_WINGS_INSECT", "fg": 29, "rotates": false }, - { "id": "overlay_mutation_WINGS_STUB", "fg": 29, "rotates": false }, - { "id": "overlay_mutation_BIOLUM1", "fg": 32, "rotates": false }, - { "id": "overlay_mutation_BIOLUM2", "fg": 33, "rotates": false }, - { "id": "overlay_mutation_CEPH_EYES", "fg": 34, "rotates": false }, - { "id": "overlay_mutation_ELFAEYES", "fg": 35, "rotates": false }, - { "id": "overlay_female_mutation_FLOWERS", "fg": 36, "rotates": false }, - { "id": "overlay_mutation_FLOWERS", "fg": 37, "rotates": false }, - { "id": "overlay_mutation_SCALES", "fg": 38, "rotates": false }, - { "id": "overlay_female_mutation_TERRIFYING", "fg": 39, "rotates": false }, - { "id": "overlay_mutation_TERRIFYING", "fg": 40, "rotates": false }, - { "id": "overlay_wielded_ax", "fg": 41 }, - { "id": "overlay_wielded_crowbar", "fg": 42 }, - { "id": "overlay_wielded_makeshift_crowbar", "fg": 43 }, - { "id": "overlay_wielded_pipe", "fg": 44 }, - { "id": "overlay_worn_10gal_hat", "fg": 81, "rotates": false }, - { "id": "overlay_worn_apron_leather", "fg": 78, "rotates": false }, - { "id": "overlay_worn_armor_plate", "fg": 136, "rotates": false }, - { "id": "overlay_worn_armor_samurai", "fg": 79, "rotates": false }, - { "id": "overlay_worn_army_top", "fg": 64, "rotates": false }, + { "id": "npc_female", "fg": 6, "rotates": false }, + { "id": "npc_male", "fg": 5, "rotates": false }, + { "id": "player_female", "fg": 4, "rotates": false }, + { "id": "player_male", "fg": 3, "rotates": false }, + { "id": "overlay_female_mutation_BEAUTIFUL2", "fg": 29, "rotates": false }, + { "id": "overlay_female_mutation_BEAUTIFUL3", "fg": 29, "rotates": false }, + { "id": "overlay_female_mutation_BEAUTIFUL", "fg": 29, "rotates": false }, + { "id": "overlay_female_mutation_PRETTY", "fg": 29, "rotates": false }, + { "id": "overlay_mutation_ANTENNAE", "fg": 28, "rotates": false }, + { "id": "overlay_mutation_ANTLERS", "fg": 27, "rotates": false }, + { "id": "overlay_mutation_ARACHNID_ARMS", "fg": 26, "rotates": false }, + { "id": "overlay_mutation_ARACHNID_ARMS_OK", "fg": 26, "rotates": false }, + { "id": "overlay_mutation_ARM_TENTACLES", "fg": 26, "rotates": false }, + { "id": "overlay_mutation_ARM_TENTACLES_4", "fg": 26, "rotates": false }, + { "id": "overlay_mutation_ARM_TENTACLES_8", "fg": 26, "rotates": false }, + { "id": "overlay_mutation_BEAK", "fg": 25, "rotates": false }, + { "id": "overlay_mutation_BEAK_HUM", "fg": 25, "rotates": false }, + { "id": "overlay_mutation_BEAK_PECK", "fg": 25, "rotates": false }, + { "id": "overlay_mutation_BURROW", "fg": 24, "rotates": false }, + { "id": "overlay_mutation_CANINE_EARS", "fg": 9, "rotates": false }, + { "id": "overlay_mutation_CHITIN2", "fg": 22, "rotates": false }, + { "id": "overlay_mutation_CHITIN3", "fg": 22, "rotates": false }, + { "id": "overlay_mutation_CHITIN", "fg": 22, "rotates": false }, + { "id": "overlay_mutation_CHITIN_FUR2", "fg": 22, "rotates": false }, + { "id": "overlay_mutation_CHITIN_FUR3", "fg": 22, "rotates": false }, + { "id": "overlay_mutation_CHITIN_FUR", "fg": 22, "rotates": false }, + { "id": "overlay_mutation_CLAWS", "fg": 23, "rotates": false }, + { "id": "overlay_mutation_CLAWS_RAT", "fg": 23, "rotates": false }, + { "id": "overlay_mutation_CLAWS_RETRACT", "fg": 23, "rotates": false }, + { "id": "overlay_mutation_CLAWS_ST", "fg": 23, "rotates": false }, + { "id": "overlay_mutation_CLAWS_TENTACLE", "fg": 26, "rotates": false }, + { "id": "overlay_mutation_DEFORMED2", "fg": 18, "rotates": false }, + { "id": "overlay_mutation_DEFORMED3", "fg": 18, "rotates": false }, + { "id": "overlay_mutation_DEFORMED", "fg": 18, "rotates": false }, + { "id": "overlay_mutation_DOWN", "fg": 18, "rotates": false }, + { "id": "overlay_mutation_ELFA_EARS", "fg": 8, "rotates": false }, + { "id": "overlay_mutation_FANGS", "fg": 15, "rotates": false }, + { "id": "overlay_mutation_FANGS_SPIDER", "fg": 15, "rotates": false }, + { "id": "overlay_mutation_FEATHERS", "fg": 17, "rotates": false }, + { "id": "overlay_mutation_FELINE_EARS", "fg": 7, "rotates": false }, + { "id": "overlay_mutation_FELINE_FUR", "fg": 21, "rotates": false }, + { "id": "overlay_mutation_FUR", "fg": 21, "rotates": false }, + { "id": "overlay_mutation_HORNS", "fg": 14, "rotates": false }, + { "id": "overlay_mutation_HORNS_CURLED", "fg": 14, "rotates": false }, + { "id": "overlay_mutation_HORNS_POINTED", "fg": 14, "rotates": false }, + { "id": "overlay_mutation_INFRARED", "fg": 16, "rotates": false }, + { "id": "overlay_mutation_INSECT_ARMS", "fg": 26, "rotates": false }, + { "id": "overlay_mutation_INSECT_ARMS_OK", "fg": 26, "rotates": false }, + { "id": "overlay_mutation_LEG_TENTACLES", "fg": 13, "rotates": false }, + { "id": "overlay_mutation_LIZ_EYE", "fg": 16, "rotates": false }, + { "id": "overlay_mutation_LYNX_FUR", "fg": 21, "rotates": false }, + { "id": "overlay_mutation_MUZZLE_LONG", "fg": 19, "rotates": false }, + { "id": "overlay_mutation_NAILS", "fg": 23, "rotates": false }, + { "id": "overlay_mutation_NIGHTVISION3", "fg": 16, "rotates": false }, + { "id": "overlay_mutation_RADIOACTIVE2", "fg": 12, "rotates": false }, + { "id": "overlay_mutation_RADIOACTIVE3", "fg": 11, "rotates": false }, + { "id": "overlay_mutation_SLEEK_SCALES", "fg": 17, "rotates": false }, + { "id": "overlay_mutation_SLIME_HANDS", "fg": 26, "rotates": false }, + { "id": "overlay_mutation_SLIMY", "fg": 20, "rotates": false }, + { "id": "overlay_mutation_SNOUT", "fg": 19, "rotates": false }, + { "id": "overlay_mutation_TAIL_CATTLE", "fg": 10, "rotates": false }, + { "id": "overlay_mutation_TAIL_CLUB", "fg": 10, "rotates": false }, + { "id": "overlay_mutation_TAIL_LONG", "fg": 10, "rotates": false }, + { "id": "overlay_mutation_TAIL_RAPTOR", "fg": 10, "rotates": false }, + { "id": "overlay_mutation_TAIL_RAT", "fg": 10, "rotates": false }, + { "id": "overlay_mutation_TAIL_STING", "fg": 10, "rotates": false }, + { "id": "overlay_mutation_TAIL_STUB", "fg": 10, "rotates": false }, + { "id": "overlay_mutation_TAIL_THICK", "fg": 10, "rotates": false }, + { "id": "overlay_mutation_THICK_SCALES", "fg": 17, "rotates": false }, + { "id": "overlay_mutation_URSINE_FUR", "fg": 21, "rotates": false }, + { "id": "overlay_mutation_WHISKERS", "fg": 32, "rotates": false }, + { "id": "overlay_mutation_WINGS_BAT", "fg": 31, "rotates": false }, + { "id": "overlay_mutation_WINGS_BIRD", "fg": 31, "rotates": false }, + { "id": "overlay_mutation_WINGS_BUTTERFLY", "fg": 31, "rotates": false }, + { "id": "overlay_mutation_WINGS_INSECT", "fg": 30, "rotates": false }, + { "id": "overlay_mutation_WINGS_STUB", "fg": 30, "rotates": false }, + { "id": "overlay_mutation_BIOLUM1", "fg": 33, "rotates": false }, + { "id": "overlay_mutation_BIOLUM2", "fg": 34, "rotates": false }, + { "id": "overlay_mutation_CEPH_EYES", "fg": 35, "rotates": false }, + { "id": "overlay_mutation_ELFAEYES", "fg": 36, "rotates": false }, + { "id": "overlay_female_mutation_FLOWERS", "fg": 37, "rotates": false }, + { "id": "overlay_mutation_FLOWERS", "fg": 38, "rotates": false }, + { "id": "overlay_mutation_SCALES", "fg": 39, "rotates": false }, + { "id": "overlay_female_mutation_TERRIFYING", "fg": 40, "rotates": false }, + { "id": "overlay_mutation_TERRIFYING", "fg": 41, "rotates": false }, + { "id": "overlay_wielded_ax", "fg": 42 }, + { "id": "overlay_wielded_crowbar", "fg": 43 }, + { "id": "overlay_wielded_makeshift_crowbar", "fg": 44 }, + { "id": "overlay_wielded_pipe", "fg": 45 }, + { "id": "overlay_worn_10gal_hat", "fg": 82, "rotates": false }, + { "id": "overlay_worn_apron_leather", "fg": 79, "rotates": false }, + { "id": "overlay_worn_armor_plate", "fg": 137, "rotates": false }, + { "id": "overlay_worn_armor_samurai", "fg": 80, "rotates": false }, + { "id": "overlay_worn_army_top", "fg": 65, "rotates": false }, { "id": [ "overlay_worn_backpack", @@ -112,1781 +112,1781 @@ "overlay_worn_survivor_rucksack", "overlay_worn_mbag" ], - "fg": 67, + "fg": 68, "rotates": false }, - { "id": "overlay_worn_bandana", "fg": 103, "rotates": false }, - { "id": [ "overlay_worn_beret", "overlay_worn_beret_wool" ], "fg": 53, "rotates": false }, - { "id": "overlay_worn_bondage_mask", "fg": 108, "rotates": false }, - { "id": "overlay_worn_bondage_suit", "fg": 107, "rotates": false }, - { "id": "overlay_worn_chestrig", "fg": 46, "rotates": false }, - { "id": "overlay_worn_clown_suit", "fg": 97, "rotates": false }, - { "id": "overlay_worn_coat_lab", "fg": 124, "rotates": false }, - { "id": "overlay_worn_coat_winter", "fg": 128, "rotates": false }, - { "id": "overlay_worn_corset", "fg": 109, "rotates": false }, - { "id": "overlay_worn_cowboy_hat", "fg": 82, "rotates": false }, - { "id": "overlay_worn_cowl_wool", "fg": 100, "rotates": false }, - { "id": "overlay_worn_dress", "fg": 49, "rotates": false }, - { "id": "overlay_worn_dress_shirt", "fg": 132, "rotates": false }, - { "id": "overlay_worn_dress_wedding", "fg": 68, "rotates": false }, - { "id": "overlay_worn_entry_suit", "fg": 135, "rotates": false }, - { "id": "overlay_worn_fancy_sunglasses", "fg": 56, "rotates": false }, - { "id": "overlay_worn_fedora", "fg": 83, "rotates": false }, - { "id": "overlay_worn_flag_shirt", "fg": 96, "rotates": false }, - { "id": "overlay_worn_football_armor", "fg": 74, "rotates": false }, + { "id": "overlay_worn_bandana", "fg": 104, "rotates": false }, + { "id": [ "overlay_worn_beret", "overlay_worn_beret_wool" ], "fg": 54, "rotates": false }, + { "id": "overlay_worn_bondage_mask", "fg": 109, "rotates": false }, + { "id": "overlay_worn_bondage_suit", "fg": 108, "rotates": false }, + { "id": "overlay_worn_chestrig", "fg": 47, "rotates": false }, + { "id": "overlay_worn_clown_suit", "fg": 98, "rotates": false }, + { "id": "overlay_worn_coat_lab", "fg": 125, "rotates": false }, + { "id": "overlay_worn_coat_winter", "fg": 129, "rotates": false }, + { "id": "overlay_worn_corset", "fg": 110, "rotates": false }, + { "id": "overlay_worn_cowboy_hat", "fg": 83, "rotates": false }, + { "id": "overlay_worn_cowl_wool", "fg": 101, "rotates": false }, + { "id": "overlay_worn_dress", "fg": 50, "rotates": false }, + { "id": "overlay_worn_dress_shirt", "fg": 133, "rotates": false }, + { "id": "overlay_worn_dress_wedding", "fg": 69, "rotates": false }, + { "id": "overlay_worn_entry_suit", "fg": 136, "rotates": false }, + { "id": "overlay_worn_fancy_sunglasses", "fg": 57, "rotates": false }, + { "id": "overlay_worn_fedora", "fg": 84, "rotates": false }, + { "id": "overlay_worn_flag_shirt", "fg": 97, "rotates": false }, + { "id": "overlay_worn_football_armor", "fg": 75, "rotates": false }, { "id": [ "overlay_worn_glasses_eye", "overlay_worn_glasses_reading", "overlay_worn_glasses_bifocal" ], - "fg": 55, + "fg": 56, "rotates": false }, - { "id": "overlay_worn_glasses_monocle", "fg": 117, "rotates": false }, - { "id": "overlay_worn_glasses_safety", "fg": 57, "rotates": false }, - { "id": [ "overlay_worn_goggles_ir_on", "overlay_worn_goggles_ir" ], "fg": 58, "rotates": false }, - { "id": [ "overlay_worn_goggles_nv_on", "overlay_worn_goggles_nv" ], "fg": 60, "rotates": false }, - { "id": "overlay_worn_goggles_welding", "fg": 59, "rotates": false }, - { "id": "overlay_worn_greatcoat", "fg": 47, "rotates": false }, - { "id": "overlay_worn_hat_ball", "fg": 71, "rotates": false }, - { "id": "overlay_worn_hat_chef", "fg": 50, "rotates": false }, - { "id": "overlay_worn_hat_cotton", "fg": 116, "rotates": false }, - { "id": "overlay_worn_hat_hard", "fg": 122, "rotates": false }, - { "id": "overlay_worn_hat_hunting", "fg": 85, "rotates": false }, - { "id": "overlay_worn_hat_noise_cancelling", "fg": 106, "rotates": false }, - { "id": "overlay_worn_hazmat_suit", "fg": 105, "rotates": false }, - { "id": "overlay_worn_headgear", "fg": 73, "rotates": false }, - { "id": "overlay_worn_helmet_army", "fg": 141, "rotates": false }, - { "id": "overlay_worn_helmet_ball", "fg": 76, "rotates": false }, - { "id": "overlay_worn_helmet_barbute", "fg": 137, "rotates": false }, - { "id": "overlay_worn_helmet_bike", "fg": 127, "rotates": false }, - { "id": "overlay_worn_helmet_football", "fg": 75, "rotates": false }, - { "id": "overlay_worn_helmet_kabuto", "fg": 80, "rotates": false }, - { "id": "overlay_worn_helmet_motor", "fg": 115, "rotates": false }, - { "id": "overlay_worn_helmet_plate", "fg": 138, "rotates": false }, - { "id": "overlay_worn_helmet_riot", "fg": 139, "rotates": false }, - { "id": "overlay_worn_helmet_skid", "fg": 125, "rotates": false }, - { "id": "overlay_worn_helmet_survivor", "fg": 139, "rotates": false }, - { "id": "overlay_worn_helmet_xlsurvivor", "fg": 139, "rotates": false }, - { "id": [ "overlay_worn_hoodie", "overlay_worn_wool_hoodie" ], "fg": 63, "rotates": false }, - { "id": "overlay_worn_house_coat", "fg": 98, "rotates": false }, - { "id": "overlay_worn_jacket_army", "fg": 54, "rotates": false }, - { "id": "overlay_worn_jacket_flannel", "fg": 84, "rotates": false }, - { "id": "overlay_worn_jacket_jean", "fg": 111, "rotates": false }, + { "id": "overlay_worn_glasses_monocle", "fg": 118, "rotates": false }, + { "id": "overlay_worn_glasses_safety", "fg": 58, "rotates": false }, + { "id": [ "overlay_worn_goggles_ir_on", "overlay_worn_goggles_ir" ], "fg": 59, "rotates": false }, + { "id": [ "overlay_worn_goggles_nv_on", "overlay_worn_goggles_nv" ], "fg": 61, "rotates": false }, + { "id": "overlay_worn_goggles_welding", "fg": 60, "rotates": false }, + { "id": "overlay_worn_greatcoat", "fg": 48, "rotates": false }, + { "id": "overlay_worn_hat_ball", "fg": 72, "rotates": false }, + { "id": "overlay_worn_hat_chef", "fg": 51, "rotates": false }, + { "id": "overlay_worn_hat_cotton", "fg": 117, "rotates": false }, + { "id": "overlay_worn_hat_hard", "fg": 123, "rotates": false }, + { "id": "overlay_worn_hat_hunting", "fg": 86, "rotates": false }, + { "id": "overlay_worn_hat_noise_cancelling", "fg": 107, "rotates": false }, + { "id": "overlay_worn_hazmat_suit", "fg": 106, "rotates": false }, + { "id": "overlay_worn_headgear", "fg": 74, "rotates": false }, + { "id": "overlay_worn_helmet_army", "fg": 142, "rotates": false }, + { "id": "overlay_worn_helmet_ball", "fg": 77, "rotates": false }, + { "id": "overlay_worn_helmet_barbute", "fg": 138, "rotates": false }, + { "id": "overlay_worn_helmet_bike", "fg": 128, "rotates": false }, + { "id": "overlay_worn_helmet_football", "fg": 76, "rotates": false }, + { "id": "overlay_worn_helmet_kabuto", "fg": 81, "rotates": false }, + { "id": "overlay_worn_helmet_motor", "fg": 116, "rotates": false }, + { "id": "overlay_worn_helmet_plate", "fg": 139, "rotates": false }, + { "id": "overlay_worn_helmet_riot", "fg": 140, "rotates": false }, + { "id": "overlay_worn_helmet_skid", "fg": 126, "rotates": false }, + { "id": "overlay_worn_helmet_survivor", "fg": 140, "rotates": false }, + { "id": "overlay_worn_helmet_xlsurvivor", "fg": 140, "rotates": false }, + { "id": [ "overlay_worn_hoodie", "overlay_worn_wool_hoodie" ], "fg": 64, "rotates": false }, + { "id": "overlay_worn_house_coat", "fg": 99, "rotates": false }, + { "id": "overlay_worn_jacket_army", "fg": 55, "rotates": false }, + { "id": "overlay_worn_jacket_flannel", "fg": 85, "rotates": false }, + { "id": "overlay_worn_jacket_jean", "fg": 112, "rotates": false }, { "id": [ "overlay_worn_jacket_leather", "overlay_worn_jacket_leather_mod", "overlay_worn_jacket_windbreaker" ], - "fg": 114, + "fg": 115, "rotates": false }, - { "id": "overlay_worn_jacket_light", "fg": 112, "rotates": false }, - { "id": "overlay_worn_jersey", "fg": 77, "rotates": false }, - { "id": [ "overlay_worn_judo_belt_black", "overlay_worn_obi_gi" ], "fg": 87, "rotates": false }, - { "id": "overlay_worn_judo_belt_blue", "fg": 89, "rotates": false }, - { "id": "overlay_worn_judo_belt_brown", "fg": 88, "rotates": false }, - { "id": "overlay_worn_judo_belt_green", "fg": 90, "rotates": false }, - { "id": "overlay_worn_judo_belt_orange", "fg": 91, "rotates": false }, - { "id": "overlay_worn_judo_belt_white", "fg": 93, "rotates": false }, - { "id": "overlay_worn_judo_belt_yellow", "fg": 92, "rotates": false }, - { "id": [ "overlay_worn_jumpsuit_xl", "overlay_worn_jumpsuit" ], "fg": 86, "rotates": false }, - { "id": [ "overlay_worn_karate_gi", "overlay_worn_judo_gi" ], "fg": 94, "rotates": false }, - { "id": "overlay_worn_kevlar", "fg": 113, "rotates": false }, - { "id": "overlay_worn_knit_scarf", "fg": 140, "rotates": false }, - { "id": "overlay_worn_knit_scarf_loose", "fg": 140, "rotates": false }, - { "id": "overlay_worn_kufi", "fg": 48, "rotates": false }, - { "id": "overlay_worn_linuxtshirt", "fg": 134, "rotates": false }, - { "id": "overlay_worn_long_knit_scarf", "fg": 140, "rotates": false }, - { "id": "overlay_worn_long_knit_scarf_loose", "fg": 140, "rotates": false }, - { "id": "overlay_worn_long_patchwork_scarf", "fg": 140, "rotates": false }, - { "id": "overlay_worn_long_patchwork_scarf_loose", "fg": 140, "rotates": false }, - { "id": "overlay_worn_longshirt", "fg": 131, "rotates": false }, - { "id": "overlay_worn_maid_dress", "fg": 110, "rotates": false }, - { "id": "overlay_worn_maid_hat", "fg": 70, "rotates": false }, - { "id": "overlay_worn_mask_dust", "fg": 118, "rotates": false }, - { "id": "overlay_worn_mask_filter", "fg": 123, "rotates": false }, - { "id": "overlay_worn_mask_gas", "fg": 142, "rotates": false }, - { "id": "overlay_worn_mask_gas_xl", "fg": 142, "rotates": false }, - { "id": [ "overlay_worn_mask_hockey", "overlay_worn_mask_guy_fawkes" ], "fg": 119, "rotates": false }, - { "id": "overlay_worn_mask_rioter", "fg": 101, "rotates": false }, + { "id": "overlay_worn_jacket_light", "fg": 113, "rotates": false }, + { "id": "overlay_worn_jersey", "fg": 78, "rotates": false }, + { "id": [ "overlay_worn_judo_belt_black", "overlay_worn_obi_gi" ], "fg": 88, "rotates": false }, + { "id": "overlay_worn_judo_belt_blue", "fg": 90, "rotates": false }, + { "id": "overlay_worn_judo_belt_brown", "fg": 89, "rotates": false }, + { "id": "overlay_worn_judo_belt_green", "fg": 91, "rotates": false }, + { "id": "overlay_worn_judo_belt_orange", "fg": 92, "rotates": false }, + { "id": "overlay_worn_judo_belt_white", "fg": 94, "rotates": false }, + { "id": "overlay_worn_judo_belt_yellow", "fg": 93, "rotates": false }, + { "id": [ "overlay_worn_jumpsuit_xl", "overlay_worn_jumpsuit" ], "fg": 87, "rotates": false }, + { "id": [ "overlay_worn_karate_gi", "overlay_worn_judo_gi" ], "fg": 95, "rotates": false }, + { "id": "overlay_worn_kevlar", "fg": 114, "rotates": false }, + { "id": "overlay_worn_knit_scarf", "fg": 141, "rotates": false }, + { "id": "overlay_worn_knit_scarf_loose", "fg": 141, "rotates": false }, + { "id": "overlay_worn_kufi", "fg": 49, "rotates": false }, + { "id": "overlay_worn_linuxtshirt", "fg": 135, "rotates": false }, + { "id": "overlay_worn_long_knit_scarf", "fg": 141, "rotates": false }, + { "id": "overlay_worn_long_knit_scarf_loose", "fg": 141, "rotates": false }, + { "id": "overlay_worn_long_patchwork_scarf", "fg": 141, "rotates": false }, + { "id": "overlay_worn_long_patchwork_scarf_loose", "fg": 141, "rotates": false }, + { "id": "overlay_worn_longshirt", "fg": 132, "rotates": false }, + { "id": "overlay_worn_maid_dress", "fg": 111, "rotates": false }, + { "id": "overlay_worn_maid_hat", "fg": 71, "rotates": false }, + { "id": "overlay_worn_mask_dust", "fg": 119, "rotates": false }, + { "id": "overlay_worn_mask_filter", "fg": 124, "rotates": false }, + { "id": "overlay_worn_mask_gas", "fg": 143, "rotates": false }, + { "id": "overlay_worn_mask_gas_xl", "fg": 143, "rotates": false }, + { "id": [ "overlay_worn_mask_hockey", "overlay_worn_mask_guy_fawkes" ], "fg": 120, "rotates": false }, + { "id": "overlay_worn_mask_rioter", "fg": 102, "rotates": false }, { "id": [ "overlay_worn_mask_ski", "overlay_worn_mask_ski_loose", "overlay_worn_balclava" ], - "fg": 99, + "fg": 100, "rotates": false }, - { "id": "overlay_worn_mask_survivor", "fg": 142, "rotates": false }, - { "id": "overlay_worn_mask_survivorxl", "fg": 142, "rotates": false }, - { "id": "overlay_worn_mask_wsurvivor", "fg": 142, "rotates": false }, - { "id": "overlay_worn_mask_wsurvivorxl", "fg": 142, "rotates": false }, - { "id": "overlay_worn_motorbike_armor", "fg": 135, "rotates": false }, - { "id": "overlay_worn_patchwork_scarf", "fg": 140, "rotates": false }, - { "id": "overlay_worn_patchwork_scarf_loose", "fg": 140, "rotates": false }, - { "id": "overlay_worn_pickelhaube", "fg": 52, "rotates": false }, - { "id": "overlay_worn_polo_shirt", "fg": 133, "rotates": false }, - { "id": [ "overlay_worn_poncho", "overlay_worn_folding_poncho_on" ], "fg": 120, "rotates": false }, - { "id": "overlay_worn_porkpie", "fg": 130, "rotates": false }, - { "id": "overlay_worn_pot_helmet", "fg": 126, "rotates": false }, + { "id": "overlay_worn_mask_survivor", "fg": 143, "rotates": false }, + { "id": "overlay_worn_mask_survivorxl", "fg": 143, "rotates": false }, + { "id": "overlay_worn_mask_wsurvivor", "fg": 143, "rotates": false }, + { "id": "overlay_worn_mask_wsurvivorxl", "fg": 143, "rotates": false }, + { "id": "overlay_worn_motorbike_armor", "fg": 136, "rotates": false }, + { "id": "overlay_worn_patchwork_scarf", "fg": 141, "rotates": false }, + { "id": "overlay_worn_patchwork_scarf_loose", "fg": 141, "rotates": false }, + { "id": "overlay_worn_pickelhaube", "fg": 53, "rotates": false }, + { "id": "overlay_worn_polo_shirt", "fg": 134, "rotates": false }, + { "id": [ "overlay_worn_poncho", "overlay_worn_folding_poncho_on" ], "fg": 121, "rotates": false }, + { "id": "overlay_worn_porkpie", "fg": 131, "rotates": false }, + { "id": "overlay_worn_pot_helmet", "fg": 127, "rotates": false }, { "id": [ "overlay_worn_purse", "overlay_worn_slingpack", "overlay_worn_fanny", "overlay_worn_dive_bag" ], - "fg": 65, + "fg": 66, "rotates": false }, { "id": [ "overlay_worn_rucksack", "overlay_worn_molle_pack", "overlay_worn_gobag", "overlay_worn_duffelbag" ], - "fg": 66, + "fg": 67, "rotates": false }, - { "id": "overlay_worn_scarf", "fg": 140, "rotates": false }, - { "id": "overlay_worn_scarf_fur", "fg": 140, "rotates": false }, - { "id": "overlay_worn_scarf_fur_long", "fg": 140, "rotates": false }, - { "id": "overlay_worn_scarf_fur_loose", "fg": 140, "rotates": false }, - { "id": "overlay_worn_scarf_long", "fg": 140, "rotates": false }, - { "id": "overlay_worn_scarf_long_loose", "fg": 140, "rotates": false }, - { "id": "overlay_worn_scarf_loose", "fg": 140, "rotates": false }, - { "id": "overlay_worn_shark_suit", "fg": 135, "rotates": false }, - { "id": "overlay_worn_sheriffshirt", "fg": 131, "rotates": false }, - { "id": "overlay_worn_shoulder_strap", "fg": 45, "rotates": false }, - { "id": "overlay_worn_striped_shirt", "fg": 132, "rotates": false }, - { "id": "overlay_worn_subsuit_xl", "fg": 104, "rotates": false }, - { "id": "overlay_worn_suit", "fg": 69, "rotates": false }, - { "id": "overlay_worn_sunglasses", "fg": 51, "rotates": false }, - { "id": "overlay_worn_sweater", "fg": 62, "rotates": false }, - { "id": "overlay_worn_sweatshirt", "fg": 61, "rotates": false }, - { "id": "overlay_worn_tac_helmet", "fg": 139, "rotates": false }, - { "id": "overlay_worn_tank_top", "fg": 72, "rotates": false }, - { "id": "overlay_worn_technician_shirt_gray", "fg": 133, "rotates": false }, - { "id": "overlay_worn_tophat", "fg": 129, "rotates": false }, - { "id": "overlay_worn_trenchcoat", "fg": 121, "rotates": false }, - { "id": "overlay_worn_trenchcoat_leather", "fg": 121, "rotates": false }, - { "id": "overlay_worn_tshirt", "fg": 134, "rotates": false }, - { "id": "overlay_worn_tshirt_text", "fg": 134, "rotates": false }, - { "id": "overlay_worn_turban", "fg": 102, "rotates": false }, - { "id": "overlay_worn_tux", "fg": 95, "rotates": false }, - { "id": "overlay_worn_boots_rubber", "fg": 143, "rotates": false }, - { "id": "overlay_worn_cape_fp", "fg": 144, "rotates": false }, - { "id": "overlay_worn_chestguard_hard", "fg": 145, "rotates": false }, - { "id": "overlay_worn_foodperson_mask", "fg": 146, "rotates": false }, - { "id": "overlay_worn_foodperson_mask_on", "fg": 147, "rotates": false }, - { "id": "overlay_worn_gloves_rubber", "fg": 148, "rotates": false }, - { "id": "overlay_worn_legguard_hard", "fg": 149, "rotates": false }, - { "id": "overlay_worn_pants_cargo", "fg": 150, "rotates": false }, - { "id": [ "cursor", "highlight", "line_target", "line_trail" ], "fg": 151 }, + { "id": "overlay_worn_scarf", "fg": 141, "rotates": false }, + { "id": "overlay_worn_scarf_fur", "fg": 141, "rotates": false }, + { "id": "overlay_worn_scarf_fur_long", "fg": 141, "rotates": false }, + { "id": "overlay_worn_scarf_fur_loose", "fg": 141, "rotates": false }, + { "id": "overlay_worn_scarf_long", "fg": 141, "rotates": false }, + { "id": "overlay_worn_scarf_long_loose", "fg": 141, "rotates": false }, + { "id": "overlay_worn_scarf_loose", "fg": 141, "rotates": false }, + { "id": "overlay_worn_shark_suit", "fg": 136, "rotates": false }, + { "id": "overlay_worn_sheriffshirt", "fg": 132, "rotates": false }, + { "id": "overlay_worn_shoulder_strap", "fg": 46, "rotates": false }, + { "id": "overlay_worn_striped_shirt", "fg": 133, "rotates": false }, + { "id": "overlay_worn_subsuit_xl", "fg": 105, "rotates": false }, + { "id": "overlay_worn_suit", "fg": 70, "rotates": false }, + { "id": "overlay_worn_sunglasses", "fg": 52, "rotates": false }, + { "id": "overlay_worn_sweater", "fg": 63, "rotates": false }, + { "id": "overlay_worn_sweatshirt", "fg": 62, "rotates": false }, + { "id": "overlay_worn_tac_helmet", "fg": 140, "rotates": false }, + { "id": "overlay_worn_tank_top", "fg": 73, "rotates": false }, + { "id": "overlay_worn_technician_shirt_gray", "fg": 134, "rotates": false }, + { "id": "overlay_worn_tophat", "fg": 130, "rotates": false }, + { "id": "overlay_worn_trenchcoat", "fg": 122, "rotates": false }, + { "id": "overlay_worn_trenchcoat_leather", "fg": 122, "rotates": false }, + { "id": "overlay_worn_tshirt", "fg": 135, "rotates": false }, + { "id": "overlay_worn_tshirt_text", "fg": 135, "rotates": false }, + { "id": "overlay_worn_turban", "fg": 103, "rotates": false }, + { "id": "overlay_worn_tux", "fg": 96, "rotates": false }, + { "id": "overlay_worn_boots_rubber", "fg": 144, "rotates": false }, + { "id": "overlay_worn_cape_fp", "fg": 145, "rotates": false }, + { "id": "overlay_worn_chestguard_hard", "fg": 146, "rotates": false }, + { "id": "overlay_worn_foodperson_mask", "fg": 147, "rotates": false }, + { "id": "overlay_worn_foodperson_mask_on", "fg": 148, "rotates": false }, + { "id": "overlay_worn_gloves_rubber", "fg": 149, "rotates": false }, + { "id": "overlay_worn_legguard_hard", "fg": 150, "rotates": false }, + { "id": "overlay_worn_pants_cargo", "fg": 151, "rotates": false }, + { "id": [ "cursor", "highlight", "line_target", "line_trail" ], "fg": 152 }, { "id": "explosion", - "fg": 153, + "fg": 154, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 153 }, - { "id": "corner", "fg": 152 }, - { "id": "edge", "fg": 153 }, - { "id": "t_connection", "fg": 153 }, - { "id": "end_piece", "fg": 153 }, - { "id": "unconnected", "fg": 153 } + { "id": "center", "fg": 154 }, + { "id": "corner", "fg": 153 }, + { "id": "edge", "fg": 154 }, + { "id": "t_connection", "fg": 154 }, + { "id": "end_piece", "fg": 154 }, + { "id": "unconnected", "fg": 154 } ], "rotates": false }, - { "id": "footstep", "fg": 154, "rotates": false }, - { "id": "highlight_item", "fg": 155, "rotates": false }, - { "id": "lighting_boomered_dark", "fg": 157, "rotates": false }, - { "id": "lighting_boomered_light", "fg": 156, "rotates": false }, - { "id": "lighting_hidden", "fg": 161, "rotates": false }, - { "id": "lighting_lowlight_dark", "fg": 159, "rotates": false }, - { "id": "lighting_lowlight_light", "fg": 158, "rotates": false }, - { "id": "unknown", "fg": 160, "rotates": false }, - { "id": "zombie_revival_indicator", "fg": 162, "rotates": false }, - { "id": "animation_bullet_flame", "fg": 166 }, - { "id": "animation_bullet_normal", "fg": 163 }, - { "id": "animation_bullet_shrapnel", "fg": 163 }, - { "id": "animation_hit", "bg": 164 }, - { "id": "animation_line", "bg": 165 }, - { "id": "record_weather", "fg": 983, "rotates": false, "multitile": false }, - { "id": "weather_acid_drop", "bg": 168 }, - { "id": "weather_rain_drop", "bg": 167 }, - { "id": "weather_reader", "fg": 928, "rotates": false, "multitile": false }, - { "id": "weather_snowflake", "bg": 169 }, - { "id": "weatherby_5", "fg": 526, "rotates": false, "multitile": false }, - { "id": "fd_acid", "bg": 202, "rotates": false }, - { "id": "fd_acid_vent", "fg": 195, "rotates": false }, - { "id": "fd_bees", "fg": 176, "rotates": false }, - { "id": "fd_bile", "bg": 199, "rotates": false }, - { "id": "fd_blood", "bg": 198, "rotates": false }, - { "id": "fd_blood_insect", "bg": 222, "rotates": false }, - { "id": "fd_blood_invertebrate", "bg": 223, "rotates": false }, - { "id": "fd_blood_veggy", "bg": 224, "rotates": false }, + { "id": "footstep", "fg": 155, "rotates": false }, + { "id": "highlight_item", "fg": 156, "rotates": false }, + { "id": "lighting_boomered_dark", "fg": 158, "rotates": false }, + { "id": "lighting_boomered_light", "fg": 157, "rotates": false }, + { "id": "lighting_hidden", "fg": 162, "rotates": false }, + { "id": "lighting_lowlight_dark", "fg": 160, "rotates": false }, + { "id": "lighting_lowlight_light", "fg": 159, "rotates": false }, + { "id": "unknown", "fg": 161, "rotates": false }, + { "id": "zombie_revival_indicator", "fg": 163, "rotates": false }, + { "id": "animation_bullet_flame", "fg": 167 }, + { "id": "animation_bullet_normal", "fg": 164 }, + { "id": "animation_bullet_shrapnel", "fg": 164 }, + { "id": "animation_hit", "bg": 165 }, + { "id": "animation_line", "bg": 166 }, + { "id": "record_weather", "fg": 993, "rotates": false, "multitile": false }, + { "id": "weather_acid_drop", "bg": 169 }, + { "id": "weather_rain_drop", "bg": 168 }, + { "id": "weather_reader", "fg": 929, "rotates": false, "multitile": false }, + { "id": "weather_snowflake", "bg": 170 }, + { "id": "weatherby_5", "fg": 527, "rotates": false, "multitile": false }, + { "id": "fd_acid", "bg": 203, "rotates": false }, + { "id": "fd_acid_vent", "fg": 196, "rotates": false }, + { "id": "fd_bees", "fg": 177, "rotates": false }, + { "id": "fd_bile", "bg": 200, "rotates": false }, + { "id": "fd_blood", "bg": 199, "rotates": false }, + { "id": "fd_blood_insect", "bg": 223, "rotates": false }, + { "id": "fd_blood_invertebrate", "bg": 224, "rotates": false }, + { "id": "fd_blood_veggy", "bg": 225, "rotates": false }, { "id": "fd_cigsmoke", - "fg": 191, + "fg": 192, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 186 }, - { "id": "corner", "fg": 187 }, - { "id": "edge", "fg": 188 }, - { "id": "t_connection", "fg": 189 }, - { "id": "end_piece", "fg": 190 }, - { "id": "unconnected", "fg": 191 } + { "id": "center", "fg": 187 }, + { "id": "corner", "fg": 188 }, + { "id": "edge", "fg": 189 }, + { "id": "t_connection", "fg": 190 }, + { "id": "end_piece", "fg": 191 }, + { "id": "unconnected", "fg": 192 } ], "rotates": false }, { "id": "fd_cracksmoke", - "fg": 191, + "fg": 192, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 186 }, - { "id": "corner", "fg": 187 }, - { "id": "edge", "fg": 188 }, - { "id": "t_connection", "fg": 189 }, - { "id": "end_piece", "fg": 190 }, - { "id": "unconnected", "fg": 191 } + { "id": "center", "fg": 187 }, + { "id": "corner", "fg": 188 }, + { "id": "edge", "fg": 189 }, + { "id": "t_connection", "fg": 190 }, + { "id": "end_piece", "fg": 191 }, + { "id": "unconnected", "fg": 192 } ], "rotates": false }, - { "id": "fd_dazzling", "fg": 185, "rotates": false }, + { "id": "fd_dazzling", "fg": 186, "rotates": false }, { "id": "fd_electricity", - "fg": 200, + "fg": 201, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 216 }, - { "id": "corner", "fg": 212 }, - { "id": "edge", "fg": 213 }, - { "id": "t_connection", "fg": 214 }, - { "id": "end_piece", "fg": 215 }, - { "id": "unconnected", "fg": 200 } + { "id": "center", "fg": 217 }, + { "id": "corner", "fg": 213 }, + { "id": "edge", "fg": 214 }, + { "id": "t_connection", "fg": 215 }, + { "id": "end_piece", "fg": 216 }, + { "id": "unconnected", "fg": 201 } ], "rotates": false }, { "id": "fd_fatigue", - "fg": 175, + "fg": 176, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 170 }, - { "id": "corner", "fg": 171 }, - { "id": "edge", "fg": 172 }, - { "id": "t_connection", "fg": 173 }, - { "id": "end_piece", "fg": 174 }, - { "id": "unconnected", "fg": 175 } + { "id": "center", "fg": 171 }, + { "id": "corner", "fg": 172 }, + { "id": "edge", "fg": 173 }, + { "id": "t_connection", "fg": 174 }, + { "id": "end_piece", "fg": 175 }, + { "id": "unconnected", "fg": 176 } ], "rotates": false }, { "id": "fd_fire", - "fg": 205, + "fg": 206, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 228 }, - { "id": "corner", "fg": 229 }, - { "id": "edge", "fg": 230 }, - { "id": "t_connection", "fg": 231 }, - { "id": "end_piece", "fg": 232 }, - { "id": "unconnected", "fg": 205 } + { "id": "center", "fg": 229 }, + { "id": "corner", "fg": 230 }, + { "id": "edge", "fg": 231 }, + { "id": "t_connection", "fg": 232 }, + { "id": "end_piece", "fg": 233 }, + { "id": "unconnected", "fg": 206 } ], "rotates": false }, - { "id": "fd_fire_vent", "fg": 193, "rotates": false }, + { "id": "fd_fire_vent", "fg": 194, "rotates": false }, { "id": "fd_flame_burst", - "fg": 205, + "fg": 206, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 228 }, - { "id": "corner", "fg": 229 }, - { "id": "edge", "fg": 230 }, - { "id": "t_connection", "fg": 231 }, - { "id": "end_piece", "fg": 232 }, - { "id": "unconnected", "fg": 205 } + { "id": "center", "fg": 229 }, + { "id": "corner", "fg": 230 }, + { "id": "edge", "fg": 231 }, + { "id": "t_connection", "fg": 232 }, + { "id": "end_piece", "fg": 233 }, + { "id": "unconnected", "fg": 206 } ], "rotates": false }, { "id": "fd_fungal_haze", - "fg": 183, + "fg": 184, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 178 }, - { "id": "corner", "fg": 179 }, - { "id": "edge", "fg": 180 }, - { "id": "t_connection", "fg": 181 }, - { "id": "end_piece", "fg": 182 }, - { "id": "unconnected", "fg": 183 } + { "id": "center", "fg": 179 }, + { "id": "corner", "fg": 180 }, + { "id": "edge", "fg": 181 }, + { "id": "t_connection", "fg": 182 }, + { "id": "end_piece", "fg": 183 }, + { "id": "unconnected", "fg": 184 } ], "rotates": false }, - { "id": "fd_gas_vent", "fg": 192, "rotates": false }, - { "id": "fd_gibs_flesh", "fg": 225, "rotates": false }, - { "id": "fd_gibs_insect", "fg": 222, "rotates": false }, - { "id": "fd_gibs_invertebrate", "bg": 223, "rotates": false }, - { "id": "fd_gibs_veggy", "bg": 199, "rotates": false }, - { "id": "fd_hot_air1", "fg": 177, "rotates": false }, - { "id": "fd_hot_air2", "fg": 177, "rotates": false }, - { "id": "fd_hot_air3", "fg": 177, "rotates": false }, - { "id": "fd_hot_air4", "fg": 177, "rotates": false }, + { "id": "fd_gas_vent", "fg": 193, "rotates": false }, + { "id": "fd_gibs_flesh", "fg": 226, "rotates": false }, + { "id": "fd_gibs_insect", "fg": 223, "rotates": false }, + { "id": "fd_gibs_invertebrate", "bg": 224, "rotates": false }, + { "id": "fd_gibs_veggy", "bg": 200, "rotates": false }, + { "id": "fd_hot_air1", "fg": 178, "rotates": false }, + { "id": "fd_hot_air2", "fg": 178, "rotates": false }, + { "id": "fd_hot_air3", "fg": 178, "rotates": false }, + { "id": "fd_hot_air4", "fg": 178, "rotates": false }, { "id": "fd_incendiary", - "fg": 166, + "fg": 167, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 228 }, - { "id": "corner", "fg": 229 }, - { "id": "edge", "fg": 230 }, - { "id": "t_connection", "fg": 231 }, - { "id": "end_piece", "fg": 232 }, - { "id": "unconnected", "fg": 166 } + { "id": "center", "fg": 229 }, + { "id": "corner", "fg": 230 }, + { "id": "edge", "fg": 231 }, + { "id": "t_connection", "fg": 232 }, + { "id": "end_piece", "fg": 233 }, + { "id": "unconnected", "fg": 167 } ], "rotates": false }, - { "id": "fd_laser", "fg": 227 }, + { "id": "fd_laser", "fg": 228 }, { "id": "fd_methsmoke", - "fg": 191, + "fg": 192, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 186 }, - { "id": "corner", "fg": 187 }, - { "id": "edge", "fg": 188 }, - { "id": "t_connection", "fg": 189 }, - { "id": "end_piece", "fg": 190 }, - { "id": "unconnected", "fg": 191 } + { "id": "center", "fg": 187 }, + { "id": "corner", "fg": 188 }, + { "id": "edge", "fg": 189 }, + { "id": "t_connection", "fg": 190 }, + { "id": "end_piece", "fg": 191 }, + { "id": "unconnected", "fg": 192 } ], "rotates": false }, { "id": "fd_nuke_gas", - "fg": 197, + "fg": 198, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 217 }, - { "id": "corner", "fg": 218 }, - { "id": "edge", "fg": 219 }, - { "id": "t_connection", "fg": 220 }, - { "id": "end_piece", "fg": 221 }, - { "id": "unconnected", "fg": 197 } + { "id": "center", "fg": 218 }, + { "id": "corner", "fg": 219 }, + { "id": "edge", "fg": 220 }, + { "id": "t_connection", "fg": 221 }, + { "id": "end_piece", "fg": 222 }, + { "id": "unconnected", "fg": 198 } ], "rotates": false }, - { "id": "fd_plasma", "fg": 226 }, - { "id": "fd_push_items", "fg": 2232, "rotates": false }, + { "id": "fd_plasma", "fg": 227 }, + { "id": "fd_push_items", "fg": 2243, "rotates": false }, { "id": "fd_relax_gas", - "fg": 175, + "fg": 176, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 170 }, - { "id": "corner", "fg": 171 }, - { "id": "edge", "fg": 172 }, - { "id": "t_connection", "fg": 173 }, - { "id": "end_piece", "fg": 174 }, - { "id": "unconnected", "fg": 175 } + { "id": "center", "fg": 171 }, + { "id": "corner", "fg": 172 }, + { "id": "edge", "fg": 173 }, + { "id": "t_connection", "fg": 174 }, + { "id": "end_piece", "fg": 175 }, + { "id": "unconnected", "fg": 176 } ], "rotates": false }, - { "id": "fd_rubble", "bg": 206, "rotates": false }, - { "id": "fd_sap", "bg": 199, "rotates": false }, - { "id": "fd_shock_vent", "fg": 194, "rotates": false }, - { "id": "fd_slime", "bg": 203, "rotates": false }, - { "id": "fd_sludge", "bg": 204, "rotates": false }, + { "id": "fd_rubble", "bg": 207, "rotates": false }, + { "id": "fd_sap", "bg": 200, "rotates": false }, + { "id": "fd_shock_vent", "fg": 195, "rotates": false }, + { "id": "fd_slime", "bg": 204, "rotates": false }, + { "id": "fd_sludge", "bg": 205, "rotates": false }, { "id": "fd_smoke", - "fg": 211, + "fg": 212, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 196 }, - { "id": "corner", "fg": 207 }, - { "id": "edge", "fg": 208 }, - { "id": "t_connection", "fg": 209 }, - { "id": "end_piece", "fg": 210 }, - { "id": "unconnected", "fg": 211 } + { "id": "center", "fg": 197 }, + { "id": "corner", "fg": 208 }, + { "id": "edge", "fg": 209 }, + { "id": "t_connection", "fg": 210 }, + { "id": "end_piece", "fg": 211 }, + { "id": "unconnected", "fg": 212 } ], "rotates": false }, - { "id": "fd_spotlight", "fg": 184, "rotates": false }, + { "id": "fd_spotlight", "fg": 185, "rotates": false }, { "id": "fd_tear_gas", - "fg": 211, + "fg": 212, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 196 }, - { "id": "corner", "fg": 207 }, - { "id": "edge", "fg": 208 }, - { "id": "t_connection", "fg": 209 }, - { "id": "end_piece", "fg": 210 }, - { "id": "unconnected", "fg": 211 } + { "id": "center", "fg": 197 }, + { "id": "corner", "fg": 208 }, + { "id": "edge", "fg": 209 }, + { "id": "t_connection", "fg": 210 }, + { "id": "end_piece", "fg": 211 }, + { "id": "unconnected", "fg": 212 } ], "rotates": false }, { "id": "fd_toxic_gas", - "fg": 197, + "fg": 198, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 217 }, - { "id": "corner", "fg": 218 }, - { "id": "edge", "fg": 219 }, - { "id": "t_connection", "fg": 220 }, - { "id": "end_piece", "fg": 221 }, - { "id": "unconnected", "fg": 197 } + { "id": "center", "fg": 218 }, + { "id": "corner", "fg": 219 }, + { "id": "edge", "fg": 220 }, + { "id": "t_connection", "fg": 221 }, + { "id": "end_piece", "fg": 222 }, + { "id": "unconnected", "fg": 198 } ], "rotates": false }, - { "id": "fd_web", "bg": 201, "rotates": false }, + { "id": "fd_web", "bg": 202, "rotates": false }, { "id": "fd_weedsmoke", - "fg": 191, + "fg": 192, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 186 }, - { "id": "corner", "fg": 187 }, - { "id": "edge", "fg": 188 }, - { "id": "t_connection", "fg": 189 }, - { "id": "end_piece", "fg": 190 }, - { "id": "unconnected", "fg": 191 } + { "id": "center", "fg": 187 }, + { "id": "corner", "fg": 188 }, + { "id": "edge", "fg": 189 }, + { "id": "t_connection", "fg": 190 }, + { "id": "end_piece", "fg": 191 }, + { "id": "unconnected", "fg": 192 } ], "rotates": false }, - { "id": "f_anvil", "fg": 746, "rotates": false, "multitile": false }, - { "id": "f_arcade_machine", "fg": 261, "rotates": false }, - { "id": "f_armchair", "fg": 242, "rotates": false }, - { "id": "f_ash", "bg": 354, "rotates": false }, - { "id": "f_aut_gas_console", "fg": 2057, "bg": 1973, "rotates": false }, - { "id": "f_aut_gas_console_o", "fg": 1760, "bg": 1973, "rotates": false }, - { "id": "f_autodoc", "fg": 355, "rotates": false }, - { "id": "f_ball_mach", "fg": 240, "rotates": false }, - { "id": "f_barricade_road", "fg": 255, "rotates": false }, + { "id": "f_anvil", "fg": 747, "rotates": false, "multitile": false }, + { "id": "f_arcade_machine", "fg": 262, "rotates": false }, + { "id": "f_armchair", "fg": 243, "rotates": false }, + { "id": "f_ash", "bg": 355, "rotates": false }, + { "id": "f_aut_gas_console", "fg": 2068, "bg": 1983, "rotates": false }, + { "id": "f_aut_gas_console_o", "fg": 1770, "bg": 1983, "rotates": false }, + { "id": "f_autodoc", "fg": 356, "rotates": false }, + { "id": "f_ball_mach", "fg": 241, "rotates": false }, + { "id": "f_barricade_road", "fg": 256, "rotates": false }, { "id": "f_bathtub", - "fg": 308, + "fg": 309, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 340 }, - { "id": "corner", "fg": 341 }, - { "id": "edge", "fg": 331 }, - { "id": "t_connection", "fg": 342 }, - { "id": "end_piece", "fg": 332 }, - { "id": "unconnected", "fg": 308 } + { "id": "center", "fg": 341 }, + { "id": "corner", "fg": 342 }, + { "id": "edge", "fg": 332 }, + { "id": "t_connection", "fg": 343 }, + { "id": "end_piece", "fg": 333 }, + { "id": "unconnected", "fg": 309 } ], "rotates": false }, { "id": "f_bed", - "fg": 238, + "fg": 239, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 233 }, - { "id": "corner", "fg": 234 }, - { "id": "edge", "fg": 235 }, - { "id": "t_connection", "fg": 236 }, - { "id": "end_piece", "fg": 237 }, - { "id": "unconnected", "fg": 238 } + { "id": "center", "fg": 234 }, + { "id": "corner", "fg": 235 }, + { "id": "edge", "fg": 236 }, + { "id": "t_connection", "fg": 237 }, + { "id": "end_piece", "fg": 238 }, + { "id": "unconnected", "fg": 239 } ], "rotates": false }, - { "id": "f_bench", "fg": 277, "rotates": false }, - { "id": "f_bluebell", "fg": 352, "rotates": false }, - { "id": "f_bookcase", "fg": 291, "rotates": false }, - { "id": "f_boulder_large", "fg": 275, "rotates": false }, - { "id": "f_boulder_medium", "fg": 274, "rotates": false }, - { "id": "f_boulder_small", "fg": 273, "rotates": false }, - { "id": "f_bulletin", "fg": 246, "rotates": false }, - { "id": "f_canvas_door", "fg": 323, "rotates": false }, - { "id": "f_canvas_door_o", "fg": 324, "rotates": false }, + { "id": "f_bench", "fg": 278, "rotates": false }, + { "id": "f_bluebell", "fg": 353, "rotates": false }, + { "id": "f_bookcase", "fg": 292, "rotates": false }, + { "id": "f_boulder_large", "fg": 276, "rotates": false }, + { "id": "f_boulder_medium", "fg": 275, "rotates": false }, + { "id": "f_boulder_small", "fg": 274, "rotates": false }, + { "id": "f_bulletin", "fg": 247, "rotates": false }, + { "id": "f_canvas_door", "fg": 324, "rotates": false }, + { "id": "f_canvas_door_o", "fg": 325, "rotates": false }, { "id": "f_canvas_floor", "bg": 1, "rotates": false }, { "id": "f_canvas_wall", - "fg": 253, + "fg": 254, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 318 }, - { "id": "corner", "fg": 319 }, - { "id": "edge", "fg": 320 }, - { "id": "t_connection", "fg": 321 }, - { "id": "end_piece", "fg": 322 }, - { "id": "unconnected", "fg": 253 } + { "id": "center", "fg": 319 }, + { "id": "corner", "fg": 320 }, + { "id": "edge", "fg": 321 }, + { "id": "t_connection", "fg": 322 }, + { "id": "end_piece", "fg": 323 }, + { "id": "unconnected", "fg": 254 } ], "rotates": false }, - { "id": "f_cattails", "fg": 272, "rotates": false }, - { "id": "f_center_groundsheet", "bg": 328, "rotates": false }, - { "id": "f_chair", "fg": 239, "rotates": false }, + { "id": "f_cattails", "fg": 273, "rotates": false }, + { "id": "f_center_groundsheet", "bg": 329, "rotates": false }, + { "id": "f_chair", "fg": 240, "rotates": false }, { "id": "f_counter", - "fg": 1943, + "fg": 1953, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 330 }, - { "id": "corner", "fg": 333 }, - { "id": "edge", "fg": 334 }, - { "id": "t_connection", "fg": 335 }, - { "id": "end_piece", "fg": 305 }, - { "id": "unconnected", "fg": 1943 } + { "id": "center", "fg": 331 }, + { "id": "corner", "fg": 334 }, + { "id": "edge", "fg": 335 }, + { "id": "t_connection", "fg": 336 }, + { "id": "end_piece", "fg": 306 }, + { "id": "unconnected", "fg": 1953 } ], "rotates": false }, - { "id": "f_crate_c", "fg": 298, "rotates": false }, - { "id": "f_crate_o", "fg": 303, "rotates": false }, - { "id": "f_cupboard", "fg": 336, "rotates": false }, - { "id": "f_dahlia", "fg": 353, "rotates": false }, - { "id": "f_dandelion", "fg": 267, "rotates": false }, - { "id": "f_datura", "fg": 268, "rotates": false }, + { "id": "f_crate_c", "fg": 299, "rotates": false }, + { "id": "f_crate_o", "fg": 304, "rotates": false }, + { "id": "f_cupboard", "fg": 337, "rotates": false }, + { "id": "f_dahlia", "fg": 354, "rotates": false }, + { "id": "f_dandelion", "fg": 268, "rotates": false }, + { "id": "f_datura", "fg": 269, "rotates": false }, { "id": "f_desk", - "fg": 240, + "fg": 241, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 299 }, - { "id": "corner", "fg": 300 }, - { "id": "edge", "fg": 301 }, - { "id": "t_connection", "fg": 302 }, - { "id": "end_piece", "fg": 304 }, - { "id": "unconnected", "fg": 240 } + { "id": "center", "fg": 300 }, + { "id": "corner", "fg": 301 }, + { "id": "edge", "fg": 302 }, + { "id": "t_connection", "fg": 303 }, + { "id": "end_piece", "fg": 305 }, + { "id": "unconnected", "fg": 241 } ], "rotates": false }, - { "id": "f_dishwasher", "fg": 2337 }, - { "id": "f_displaycase", "fg": 265, "rotates": false }, - { "id": "f_displaycase_b", "fg": 266, "rotates": false }, - { "id": "f_dive_block", "fg": 297, "rotates": false }, - { "id": "f_dresser", "fg": 292, "rotates": false }, - { "id": "f_drill_press", "fg": 358, "rotates": false, "multitile": false }, - { "id": "f_dryer", "fg": 307, "rotates": false }, + { "id": "f_dishwasher", "fg": 2348 }, + { "id": "f_displaycase", "fg": 266, "rotates": false }, + { "id": "f_displaycase_b", "fg": 267, "rotates": false }, + { "id": "f_dive_block", "fg": 298, "rotates": false }, + { "id": "f_dresser", "fg": 293, "rotates": false }, + { "id": "f_drill_press", "fg": 359, "rotates": false, "multitile": false }, + { "id": "f_dryer", "fg": 308, "rotates": false }, { "id": "f_dumpster", - "fg": 296, + "fg": 297, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 282 }, - { "id": "corner", "fg": 283 }, - { "id": "edge", "fg": 284 }, - { "id": "t_connection", "fg": 285 }, - { "id": "end_piece", "fg": 286 }, - { "id": "unconnected", "fg": 296 } + { "id": "center", "fg": 283 }, + { "id": "corner", "fg": 284 }, + { "id": "edge", "fg": 285 }, + { "id": "t_connection", "fg": 286 }, + { "id": "end_piece", "fg": 287 }, + { "id": "unconnected", "fg": 297 } ], "rotates": false }, - { "id": "f_egg_sackbw", "fg": 258, "rotates": false }, - { "id": "f_egg_sacke", "fg": 260, "rotates": false }, - { "id": "f_egg_sackws", "fg": 259, "rotates": false }, - { "id": "f_ergometer", "fg": 263, "rotates": false }, - { "id": "f_exercise", "fg": 279, "rotates": false }, - { "id": "f_fema_groundsheet", "bg": 328, "rotates": false }, - { "id": "f_fireplace", "fg": 339, "rotates": false }, - { "id": "f_flower_fungal", "fg": 243, "rotates": false }, - { "id": "f_flower_marloss", "fg": 269, "rotates": false }, - { "id": "f_forge", "fg": 519, "rotates": false, "multitile": false }, - { "id": "f_fridge", "fg": 294, "rotates": false }, - { "id": "f_fungal_clump", "fg": 245, "rotates": false }, - { "id": "f_fungal_mass", "fg": 244, "rotates": false }, - { "id": "f_fvat_empty", "fg": 256, "rotates": false }, - { "id": "f_fvat_full", "fg": 257, "rotates": false }, - { "id": "f_glass_fridge", "fg": 295, "rotates": false }, - { "id": "f_groundsheet", "bg": 328, "rotates": false }, - { "id": "f_gun_safe_el", "fg": 288, "rotates": false }, - { "id": "f_gunsafe_mj", "fg": 289, "rotates": false }, - { "id": "f_gunsafe_ml", "fg": 288, "rotates": false }, - { "id": "f_hay", "fg": 309, "rotates": false }, - { "id": "f_indoor_plant", "fg": 278, "rotates": false }, - { "id": "f_indoor_plant_y", "fg": 252, "rotates": false }, - { "id": "f_kiln_empty", "fg": 522, "rotates": false, "multitile": false }, - { "id": "f_kiln_full", "fg": 770, "rotates": false, "multitile": false }, - { "id": "f_lane", "fg": 345, "rotates": true }, - { "id": "f_large_canvas_door", "fg": 323, "rotates": false }, - { "id": "f_large_canvas_door_o", "fg": 324, "rotates": false }, + { "id": "f_egg_sackbw", "fg": 259, "rotates": false }, + { "id": "f_egg_sacke", "fg": 261, "rotates": false }, + { "id": "f_egg_sackws", "fg": 260, "rotates": false }, + { "id": "f_ergometer", "fg": 264, "rotates": false }, + { "id": "f_exercise", "fg": 280, "rotates": false }, + { "id": "f_fema_groundsheet", "bg": 329, "rotates": false }, + { "id": "f_fireplace", "fg": 340, "rotates": false }, + { "id": "f_flower_fungal", "fg": 244, "rotates": false }, + { "id": "f_flower_marloss", "fg": 270, "rotates": false }, + { "id": "f_forge", "fg": 520, "rotates": false, "multitile": false }, + { "id": "f_fridge", "fg": 295, "rotates": false }, + { "id": "f_fungal_clump", "fg": 246, "rotates": false }, + { "id": "f_fungal_mass", "fg": 245, "rotates": false }, + { "id": "f_fvat_empty", "fg": 257, "rotates": false }, + { "id": "f_fvat_full", "fg": 258, "rotates": false }, + { "id": "f_glass_fridge", "fg": 296, "rotates": false }, + { "id": "f_groundsheet", "bg": 329, "rotates": false }, + { "id": "f_gun_safe_el", "fg": 289, "rotates": false }, + { "id": "f_gunsafe_mj", "fg": 290, "rotates": false }, + { "id": "f_gunsafe_ml", "fg": 289, "rotates": false }, + { "id": "f_hay", "fg": 310, "rotates": false }, + { "id": "f_indoor_plant", "fg": 279, "rotates": false }, + { "id": "f_indoor_plant_y", "fg": 253, "rotates": false }, + { "id": "f_kiln_empty", "fg": 523, "rotates": false, "multitile": false }, + { "id": "f_kiln_full", "fg": 771, "rotates": false, "multitile": false }, + { "id": "f_lane", "fg": 346, "rotates": true }, + { "id": "f_large_canvas_door", "fg": 324, "rotates": false }, + { "id": "f_large_canvas_door_o", "fg": 325, "rotates": false }, { "id": "f_large_canvas_wall", - "fg": 253, + "fg": 254, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 318 }, - { "id": "corner", "fg": 319 }, - { "id": "edge", "fg": 320 }, - { "id": "t_connection", "fg": 321 }, - { "id": "end_piece", "fg": 322 }, - { "id": "unconnected", "fg": 253 } + { "id": "center", "fg": 319 }, + { "id": "corner", "fg": 320 }, + { "id": "edge", "fg": 321 }, + { "id": "t_connection", "fg": 322 }, + { "id": "end_piece", "fg": 323 }, + { "id": "unconnected", "fg": 254 } ], "rotates": false }, - { "id": "f_large_groundsheet", "bg": 328, "rotates": false }, - { "id": "f_locker", "fg": 293, "rotates": false }, - { "id": "f_makeshift_bed", "fg": 238, "rotates": false }, - { "id": "f_mutpoppy", "fg": 280, "rotates": false }, - { "id": "f_oven", "fg": 337, "rotates": false }, - { "id": "f_pinball_machine", "fg": 262, "rotates": false }, - { "id": "f_plant_harvest", "fg": 351, "rotates": false }, - { "id": "f_plant_mature", "fg": 350, "rotates": false }, - { "id": "f_plant_seed", "fg": 348, "rotates": false }, - { "id": "f_plant_seedling", "fg": 349, "rotates": false }, + { "id": "f_large_groundsheet", "bg": 329, "rotates": false }, + { "id": "f_locker", "fg": 294, "rotates": false }, + { "id": "f_makeshift_bed", "fg": 239, "rotates": false }, + { "id": "f_mutpoppy", "fg": 281, "rotates": false }, + { "id": "f_oven", "fg": 338, "rotates": false }, + { "id": "f_pinball_machine", "fg": 263, "rotates": false }, + { "id": "f_plant_harvest", "fg": 352, "rotates": false }, + { "id": "f_plant_mature", "fg": 351, "rotates": false }, + { "id": "f_plant_seed", "fg": 349, "rotates": false }, + { "id": "f_plant_seedling", "fg": 350, "rotates": false }, { "id": "f_pool_table", - "fg": 250, + "fg": 251, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 249 }, { "id": "t_connection", "fg": 250 } ], + "additional_tiles": [ { "id": "corner", "fg": 250 }, { "id": "t_connection", "fg": 251 } ], "rotates": false }, - { "id": "f_punching_bag", "fg": 359, "rotates": false }, - { "id": "f_rack", "fg": 287, "rotates": false }, - { "id": "f_rubble", "bg": 1868, "rotates": false }, - { "id": "f_rubble_rock", "bg": 206, "rotates": false }, - { "id": "f_safe_c", "fg": 288, "rotates": false }, - { "id": "f_safe_l", "fg": 289, "rotates": false }, - { "id": "f_safe_o", "fg": 290, "rotates": false }, - { "id": "f_sandbag_half", "fg": 270, "rotates": false }, - { "id": "f_sandbag_wall", "fg": 271, "rotates": false }, - { "id": "f_shower", "fg": 347, "rotates": false }, - { "id": "f_sign", "fg": 246, "rotates": false }, - { "id": "f_sink", "fg": 241, "rotates": false }, - { "id": "f_skin_door", "fg": 326, "rotates": false }, - { "id": "f_skin_door_o", "fg": 327, "rotates": false }, - { "id": "f_skin_groundsheet", "fg": 346, "rotates": false }, + { "id": "f_punching_bag", "fg": 360, "rotates": false }, + { "id": "f_rack", "fg": 288, "rotates": false }, + { "id": "f_rubble", "bg": 1878, "rotates": false }, + { "id": "f_rubble_rock", "bg": 207, "rotates": false }, + { "id": "f_safe_c", "fg": 289, "rotates": false }, + { "id": "f_safe_l", "fg": 290, "rotates": false }, + { "id": "f_safe_o", "fg": 291, "rotates": false }, + { "id": "f_sandbag_half", "fg": 271, "rotates": false }, + { "id": "f_sandbag_wall", "fg": 272, "rotates": false }, + { "id": "f_shower", "fg": 348, "rotates": false }, + { "id": "f_sign", "fg": 247, "rotates": false }, + { "id": "f_sink", "fg": 242, "rotates": false }, + { "id": "f_skin_door", "fg": 327, "rotates": false }, + { "id": "f_skin_door_o", "fg": 328, "rotates": false }, + { "id": "f_skin_groundsheet", "fg": 347, "rotates": false }, { "id": "f_skin_wall", - "fg": 254, + "fg": 255, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 310 }, - { "id": "corner", "fg": 311 }, - { "id": "edge", "fg": 312 }, - { "id": "t_connection", "fg": 313 }, - { "id": "end_piece", "fg": 325 }, - { "id": "unconnected", "fg": 254 } + { "id": "center", "fg": 311 }, + { "id": "corner", "fg": 312 }, + { "id": "edge", "fg": 313 }, + { "id": "t_connection", "fg": 314 }, + { "id": "end_piece", "fg": 326 }, + { "id": "unconnected", "fg": 255 } ], "rotates": false }, - { "id": "f_sofa", "fg": 248, "rotates": false }, - { "id": "f_standing_tank", "fg": 439, "rotates": false, "multitile": false }, - { "id": "f_statue", "fg": 251, "rotates": false }, - { "id": "f_still", "fg": 737, "rotates": false, "multitile": false }, - { "id": "f_straw_bed", "fg": 2224, "rotates": false }, + { "id": "f_sofa", "fg": 249, "rotates": false }, + { "id": "f_standing_tank", "fg": 440, "rotates": false, "multitile": false }, + { "id": "f_statue", "fg": 252, "rotates": false }, + { "id": "f_still", "fg": 738, "rotates": false, "multitile": false }, + { "id": "f_straw_bed", "fg": 2235, "rotates": false }, { "id": "f_table", - "fg": 329, + "fg": 330, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1924 }, - { "id": "corner", "fg": 314 }, - { "id": "edge", "fg": 315 }, - { "id": "t_connection", "fg": 316 }, - { "id": "end_piece", "fg": 317 }, - { "id": "unconnected", "fg": 329 } + { "id": "center", "fg": 1934 }, + { "id": "corner", "fg": 315 }, + { "id": "edge", "fg": 316 }, + { "id": "t_connection", "fg": 317 }, + { "id": "end_piece", "fg": 318 }, + { "id": "unconnected", "fg": 330 } ], "rotates": false }, - { "id": "f_tatami", "fg": 346, "rotates": false }, - { "id": "f_toilet", "fg": 281, "rotates": false }, - { "id": "f_trashcan", "fg": 276, "rotates": false }, - { "id": "f_treadmill", "fg": 264, "rotates": false }, - { "id": "f_vending_c", "fg": 343, "rotates": false }, - { "id": "f_vending_o", "fg": 344, "rotates": false }, - { "id": "f_vending_reinforced", "fg": 247, "rotates": false }, - { "id": "f_washer", "fg": 306, "rotates": false }, - { "id": "f_wood_keg", "fg": 937, "rotates": false }, - { "id": "f_woodstove", "fg": 338, "rotates": false }, - { "id": "f_wreckage", "bg": 1900, "rotates": false }, + { "id": "f_tatami", "fg": 347, "rotates": false }, + { "id": "f_toilet", "fg": 282, "rotates": false }, + { "id": "f_trashcan", "fg": 277, "rotates": false }, + { "id": "f_treadmill", "fg": 265, "rotates": false }, + { "id": "f_vending_c", "fg": 344, "rotates": false }, + { "id": "f_vending_o", "fg": 345, "rotates": false }, + { "id": "f_vending_reinforced", "fg": 248, "rotates": false }, + { "id": "f_washer", "fg": 307, "rotates": false }, + { "id": "f_wood_keg", "fg": 938, "rotates": false }, + { "id": "f_woodstove", "fg": 339, "rotates": false }, + { "id": "f_wreckage", "bg": 1910, "rotates": false }, { "id": "f_mailbox", - "fg": [ { "weight": 1, "sprite": 363 }, { "weight": 1, "sprite": 364 } ], + "fg": [ { "weight": 1, "sprite": 364 }, { "weight": 1, "sprite": 365 } ], "rotates": false }, { "id": "f_mannequin", - "fg": [ { "weight": 1, "sprite": 366 }, { "weight": 1, "sprite": 365 } ], + "fg": [ { "weight": 1, "sprite": 367 }, { "weight": 1, "sprite": 366 } ], "rotates": false }, - { "id": "120mm_HEAT", "fg": 974, "rotates": false, "multitile": false }, - { "id": "12mm", "fg": 971, "rotates": false, "multitile": false }, - { "id": "1cyl_combustion", "fg": 856, "rotates": false, "multitile": false }, - { "id": "1cyl_combustion_small", "fg": 856, "rotates": false, "multitile": false }, - { "id": "223", "fg": 970, "rotates": false, "multitile": false }, - { "id": "223_casing", "fg": 973 }, - { "id": "22_casing", "fg": 973 }, - { "id": "22_cb", "fg": 970, "rotates": false, "multitile": false }, - { "id": "22_fmj", "fg": 970, "rotates": false, "multitile": false }, - { "id": "22_lr", "fg": 970, "rotates": false, "multitile": false }, - { "id": "22_ratshot", "fg": 970, "rotates": false, "multitile": false }, - { "id": "2_shot_special", "fg": 534, "rotates": false, "multitile": false }, - { "id": "2lcanteen", "fg": 373, "rotates": false, "multitile": false }, - { "id": "2x4", "fg": 563, "rotates": true }, - { "id": "3006", "fg": 970, "rotates": false, "multitile": false }, - { "id": "3006_casing", "fg": 973 }, - { "id": "3006_incendiary", "fg": 970, "rotates": false, "multitile": false }, - { "id": "3006fmj", "fg": 970, "rotates": false, "multitile": false }, - { "id": "300_casing", "fg": 973 }, - { "id": "300_winmag", "fg": 970, "rotates": false, "multitile": false }, - { "id": "308", "fg": 970, "rotates": false, "multitile": false }, - { "id": "308_casing", "fg": 973 }, - { "id": "32_acp", "fg": 970, "rotates": false, "multitile": false }, - { "id": "32_casing", "fg": 973 }, - { "id": "38_casing", "fg": 973 }, - { "id": "38_fmj", "fg": 970, "rotates": false, "multitile": false }, - { "id": "38_special", "fg": 970, "rotates": false, "multitile": false }, - { "id": "38_super", "fg": 970, "rotates": false, "multitile": false }, - { "id": "40_casing", "fg": 973 }, - { "id": "40fmj", "fg": 970, "rotates": false, "multitile": false }, - { "id": "40mm_flare", "fg": 974, "rotates": false, "multitile": false }, - { "id": "40mm_flashbang", "fg": 974, "rotates": false, "multitile": false }, - { "id": "40mm_incendiary", "fg": 974, "rotates": false, "multitile": false }, - { "id": "40mm_smoke", "fg": 974, "rotates": false, "multitile": false }, - { "id": "40sw", "fg": 970, "rotates": false, "multitile": false }, - { "id": "44_casing", "fg": 973 }, - { "id": "44fmj", "fg": 970, "rotates": false, "multitile": false }, - { "id": "44magnum", "fg": 970, "rotates": false, "multitile": false }, - { "id": "454_Casull", "fg": 970, "rotates": false, "multitile": false }, - { "id": "454_casing", "fg": 973 }, - { "id": "45_acp", "fg": 970, "rotates": false, "multitile": false }, - { "id": "45_casing", "fg": 973 }, - { "id": "45_jhp", "fg": 970, "rotates": false, "multitile": false }, - { "id": "45_super", "fg": 970, "rotates": false, "multitile": false }, - { "id": "46mm", "fg": 970, "rotates": false, "multitile": false }, - { "id": "46mm_casing", "fg": 973 }, - { "id": "500_Magnum", "fg": 970, "rotates": false, "multitile": false }, - { "id": "500_casing", "fg": 973 }, - { "id": "556", "fg": 970, "rotates": false, "multitile": false }, - { "id": "556_incendiary", "fg": 970, "rotates": false, "multitile": false }, - { "id": "57mm", "fg": 970, "rotates": false, "multitile": false }, - { "id": "57mm_casing", "fg": 973 }, - { "id": "5x50_hull", "fg": 930 }, - { "id": "5x50dart", "fg": 809, "rotates": false, "multitile": false }, - { "id": "5x50heavy", "fg": 809, "rotates": false, "multitile": false }, - { "id": "66mm_HEAT", "fg": 974, "rotates": false, "multitile": false }, - { "id": "700nx", "fg": 970, "rotates": false, "multitile": false }, - { "id": "700nx_casing", "fg": 973 }, - { "id": "762R_casing", "fg": 973 }, - { "id": "762_25", "fg": 970, "rotates": false, "multitile": false }, - { "id": "762_51", "fg": 970, "rotates": false, "multitile": false }, - { "id": "762_51_incendiary", "fg": 970, "rotates": false, "multitile": false }, - { "id": "762_54R", "fg": 970, "rotates": false, "multitile": false }, - { "id": "762_casing", "fg": 973 }, - { "id": "762_m43", "fg": 970, "rotates": false, "multitile": false }, - { "id": "762_m87", "fg": 970, "rotates": false, "multitile": false }, - { "id": "84x246mm_he", "fg": 974, "rotates": false, "multitile": false }, - { "id": "84x246mm_hedp", "fg": 974, "rotates": false, "multitile": false }, - { "id": "84x246mm_smoke", "fg": 974, "rotates": false, "multitile": false }, - { "id": "8mm_bootleg", "fg": 972, "rotates": false, "multitile": false }, - { "id": "8mm_caseless", "fg": 972, "rotates": false, "multitile": false }, - { "id": "8mm_civilian", "fg": 972, "rotates": false, "multitile": false }, - { "id": "8mm_fmj", "fg": 972, "rotates": false, "multitile": false }, - { "id": "8mm_hvp", "fg": 972, "rotates": false, "multitile": false }, - { "id": "8mm_inc", "fg": 972, "rotates": false, "multitile": false }, - { "id": "8mm_jhp", "fg": 972, "rotates": false, "multitile": false }, - { "id": "9mmP2", "fg": 970, "rotates": false, "multitile": false }, - { "id": "9mmP", "fg": 970, "rotates": false, "multitile": false }, - { "id": "9mm", "fg": 970, "rotates": false, "multitile": false }, - { "id": "9mm_casing", "fg": 973 }, - { "id": "9mmfmj", "fg": 970, "rotates": false, "multitile": false }, - { "id": "EMPbomb", "fg": 632, "rotates": false, "multitile": false }, - { "id": "EMPbomb_act", "fg": 633, "rotates": false, "multitile": false }, - { "id": "LAW", "fg": 577, "rotates": false, "multitile": false }, - { "id": "LAW_Packed", "fg": 577, "rotates": false, "multitile": false }, - { "id": "PR24-extended", "fg": 452, "rotates": false, "multitile": false }, - { "id": "PR24-retracted", "fg": 452, "rotates": false, "multitile": false }, - { "id": "RAM", "fg": 938, "rotates": false, "multitile": false }, - { "id": "RPG-7_ammo", "fg": 975, "rotates": false, "multitile": false }, - { "id": "RPG", "fg": 576, "rotates": false, "multitile": false }, - { "id": "TDI", "fg": 550, "rotates": false, "multitile": false }, - { "id": "UPS_off", "fg": 941, "rotates": false, "multitile": false }, - { "id": "V8", "fg": 1413, "rotates": false, "multitile": false }, - { "id": "acidbomb", "fg": 942, "rotates": false, "multitile": false }, - { "id": "acoustic_guitar", "fg": 943, "rotates": false, "multitile": false }, - { "id": "acr", "fg": 564, "rotates": false, "multitile": false }, - { "id": "adjustable_stock", "fg": 904, "rotates": false, "multitile": false }, - { "id": "adrenaline_injector", "fg": 743, "rotates": false, "multitile": false }, - { "id": "adv_UPS_off", "fg": 944, "rotates": false, "multitile": false }, - { "id": "advanced_ecig", "fg": 394, "rotates": false, "multitile": false }, - { "id": "airhorn", "fg": 559, "rotates": false, "multitile": false }, - { "id": "airspeargun", "fg": 536, "rotates": false, "multitile": false }, - { "id": "ak47", "fg": 565, "rotates": false, "multitile": false }, - { "id": "alarmclock", "fg": 549, "rotates": false, "multitile": false }, - { "id": "alloy_plate", "fg": 478, "rotates": false, "multitile": false }, - { "id": "alloy_sheet", "fg": 478, "rotates": false, "multitile": false }, - { "id": "alternator_car", "fg": 2268, "rotates": false, "multitile": false }, - { "id": "alternator_motorbike", "fg": 2268, "rotates": false, "multitile": false }, - { "id": "alternator_truck", "fg": 2268, "rotates": false, "multitile": false }, - { "id": "american_180", "fg": 545, "rotates": false, "multitile": false }, - { "id": "ammonia", "fg": 920, "rotates": false, "multitile": false }, - { "id": "amplifier", "fg": 938, "rotates": false, "multitile": false }, - { "id": "ampoule", "fg": 469, "rotates": false, "multitile": false }, - { "id": "antenna", "fg": 394, "rotates": false, "multitile": false }, - { "id": "anvil", "fg": 746, "rotates": false, "multitile": false }, - { "id": "apple_cider", "fg": 1410, "rotates": false, "multitile": false }, - { "id": "ar15", "fg": 564, "rotates": false, "multitile": false }, - { "id": "arx160", "fg": 564, "rotates": false, "multitile": false }, - { "id": "ashot", "fg": 535, "rotates": false, "multitile": false }, - { "id": "atomic_coffee", "fg": 921, "rotates": false, "multitile": false }, - { "id": "atomic_coffeepot", "fg": 935, "rotates": false, "multitile": false }, - { "id": "atomic_light", "fg": 908, "rotates": false, "multitile": false }, - { "id": "autofire", "fg": 904, "rotates": false, "multitile": false }, - { "id": "aux_flamer", "fg": 904, "rotates": false, "multitile": false }, - { "id": "ax", "fg": 692, "rotates": false, "multitile": false }, - { "id": "b_paint", "fg": 409, "rotates": false, "multitile": false }, - { "id": "bag_bundle_10", "fg": 516, "rotates": false, "multitile": false }, - { "id": "bag_canvas", "fg": 1367, "rotates": false, "multitile": false }, - { "id": "bag_canvas_small", "fg": 1367, "rotates": false, "multitile": false }, - { "id": "bag_plastic", "fg": 516, "rotates": false }, - { "id": "bagh_nakha", "fg": 496, "rotates": false, "multitile": false }, - { "id": "barometer", "fg": 437, "rotates": false, "multitile": false }, - { "id": "barrel_big", "fg": 904, "rotates": false, "multitile": false }, - { "id": "barrel_ported", "fg": 904, "rotates": false, "multitile": false }, - { "id": "barrel_rifled", "fg": 904, "rotates": false, "multitile": false }, - { "id": "barrel_small", "fg": 904, "rotates": false, "multitile": false }, - { "id": "baseball", "fg": 909, "rotates": false, "multitile": false }, - { "id": "basket", "fg": 2300, "rotates": false }, - { "id": "bat", "fg": 455, "rotates": false, "multitile": false }, - { "id": "bat_metal", "fg": 456, "rotates": false, "multitile": false }, - { "id": "baton-extended", "fg": 458, "rotates": false, "multitile": false }, - { "id": "baton", "fg": 458, "rotates": false, "multitile": false }, - { "id": "battery", "fg": 886, "rotates": false, "multitile": false }, - { "id": "battery_car", "fg": 857, "rotates": false }, - { "id": "battery_motorbike", "fg": 857, "rotates": false }, - { "id": "battery_truck", "fg": 857, "rotates": false }, - { "id": "battery_ups", "fg": 728, "rotates": false, "multitile": false }, - { "id": "battleaxe", "fg": 506, "rotates": false, "multitile": false }, - { "id": "battleaxe_fake", "fg": 506, "rotates": false, "multitile": false }, - { "id": "battletorch", "fg": 507, "rotates": false, "multitile": false }, - { "id": "battletorch_done", "fg": 497, "rotates": false, "multitile": false }, - { "id": "battletorch_lit", "fg": 508, "rotates": false, "multitile": false }, - { "id": "bb", "fg": 887, "rotates": false, "multitile": false }, - { "id": "bbgun", "fg": 526, "rotates": false, "multitile": false }, - { "id": "bearing", "fg": 887, "rotates": false, "multitile": false }, - { "id": "beartrap", "fg": 614, "rotates": false, "multitile": false }, - { "id": "bee_sting", "fg": 459, "rotates": false, "multitile": false }, - { "id": "beer", "fg": 921, "rotates": false, "multitile": false }, - { "id": "belgian_ale", "fg": 921, "rotates": false, "multitile": false }, - { "id": "bigun", "fg": 551, "rotates": false, "multitile": false }, - { "id": "binoculars", "fg": 404, "rotates": false, "multitile": false }, - { "id": "bio_adrenaline", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_ads", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_alarm", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_ankles", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_armor_arms", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_armor_eyes", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_armor_head", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_armor_legs", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_armor_torso", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_batteries", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_blade", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_blade_weapon", "fg": 688, "rotates": false, "multitile": false }, - { "id": "bio_blaster", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_blood_anal", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_blood_filter", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_carbon", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_chain_lightning", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_claws", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_claws_weapon", "fg": 496, "rotates": false, "multitile": false }, - { "id": "bio_climate", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_cloak", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_cqb", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_deformity", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_dex_enhancer", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_digestion", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_dis_acid", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_dis_shock", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_drain", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_ears", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_emp", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_ethanol", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_evap", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_eye_enhancer", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_face_mask", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_faraday", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_fingerhack", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_flashbang", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_flashlight", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_furnace", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_geiger", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_gills", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_ground_sonar", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_heat_absorb", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_heatsink", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_hydraulics", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_infrared", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_int_enhancer", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_itchy", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_laser", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_leaky", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_leukocyte", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_lighter", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_lockpick", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_magnet", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_membrane", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_memory", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_metabolics", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_meteorologist", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_nanobots", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_night", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_night_vision", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_noise", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_nostril", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bionic_general_faulty", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_ods", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_painkiller", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_pokedeye", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_power_armor_interface", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_power_armor_interface_mkII", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_power_storage", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_power_storage_mkII", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_power_weakness", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_probability_travel", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_purifier", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_radscrubber", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_railgun", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_razors", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_recycler", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_remote", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_resonator", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_scent_mask", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_scent_vision", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_shakes", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_shock", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_shockwave", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_sleepy", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_spasm", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_speed", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_stiff", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_storage", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_str_enhancer", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_sunglasses", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_targeting", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_teleport", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_thumbs", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_time_freeze", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_tools", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_torsionratchet", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_trip", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_uncanny_dodge", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_ups", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_voice", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_watch", "fg": 911, "rotates": false, "multitile": false }, - { "id": "bio_water_extractor", "fg": 911, "rotates": false, "multitile": false }, - { "id": "biollante_bud", "fg": 401, "rotates": false, "multitile": false }, - { "id": "bipod", "fg": 904, "rotates": false, "multitile": false }, - { "id": "bismuth", "fg": 890, "rotates": false, "multitile": false }, - { "id": "black_box", "fg": 600, "rotates": false, "multitile": false }, - { "id": "black_box_transcript", "fg": 883, "rotates": false, "multitile": false }, - { "id": "blade", "fg": 408, "rotates": false, "multitile": false }, - { "id": "blade_trap", "fg": 619, "rotates": false, "multitile": false }, - { "id": "bleach", "fg": 920, "rotates": false, "multitile": false }, - { "id": "blood", "fg": 1413, "rotates": false, "multitile": false }, - { "id": "blowback", "fg": 904, "rotates": false, "multitile": false }, - { "id": "bluebell_bud", "fg": 395, "rotates": false, "multitile": false }, - { "id": "bluebell_flower", "fg": 853, "rotates": false, "multitile": false }, - { "id": "blun_flechette", "fg": 969, "rotates": false, "multitile": false }, - { "id": "blun_shot", "fg": 969, "rotates": false, "multitile": false }, - { "id": "blun_slug", "fg": 969, "rotates": false, "multitile": false }, - { "id": "blunderbuss", "fg": 541, "rotates": false, "multitile": false }, - { "id": "board_trap", "fg": 615, "rotates": false, "multitile": false }, - { "id": "bokken", "fg": 814, "rotates": false, "multitile": false }, - { "id": "boltcutters", "fg": 705, "rotates": false, "multitile": false }, - { "id": "bone_glue", "fg": 825, "rotates": false, "multitile": false }, - { "id": "bone_plate", "fg": 477, "rotates": false, "multitile": false }, - { "id": "boobytrap", "fg": 662, "rotates": false, "multitile": false }, - { "id": "bootstrap", "fg": 905, "rotates": false, "multitile": false }, - { "id": "bot_laserturret", "fg": 382, "rotates": false, "multitile": false }, - { "id": "bot_manhack", "fg": 653, "rotates": false, "multitile": false }, - { "id": "bot_rifleturret", "fg": 578, "rotates": false, "multitile": false }, - { "id": "bot_turret", "fg": 654, "rotates": false, "multitile": false }, - { "id": "bottle_glass", "fg": 528, "rotates": false }, - { "id": "bottle_plastic", "fg": 1405, "rotates": false }, - { "id": "bottle_plastic_small", "fg": 1405, "rotates": false }, - { "id": "bow_sight", "fg": 904, "rotates": false, "multitile": false }, - { "id": "bowl_clay", "fg": 820, "rotates": false, "multitile": false }, - { "id": "bowl_pewter", "fg": 440, "rotates": false, "multitile": false }, - { "id": "bowl_plastic", "fg": 381, "rotates": false, "multitile": false }, - { "id": "bowling_axe", "fg": 774, "rotates": false, "multitile": false }, - { "id": "bowling_ball", "fg": 406, "rotates": false, "multitile": false }, - { "id": "bowling_pin", "fg": 773, "rotates": false, "multitile": false }, - { "id": "box_small", "fg": 517, "rotates": false }, - { "id": "brass_catcher", "fg": 904, "rotates": false, "multitile": false }, - { "id": "brazier", "fg": 698, "rotates": false, "multitile": false }, - { "id": "brew_dandelion_wine", "fg": 1392, "rotates": false, "multitile": false }, - { "id": "brew_hb_beer", "fg": 921, "rotates": false, "multitile": false }, - { "id": "brew_mead", "fg": 1392, "rotates": false, "multitile": false }, - { "id": "brew_moonshine", "fg": 921, "rotates": false, "multitile": false }, - { "id": "brew_pine_wine", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "brew_rum", "fg": 920, "rotates": false, "multitile": false }, - { "id": "brew_vinegar", "fg": 923, "rotates": false, "multitile": false }, - { "id": "brew_vodka", "fg": 920, "rotates": false, "multitile": false }, - { "id": "brew_whiskey", "fg": 921, "rotates": false, "multitile": false }, - { "id": "brick", "fg": 826, "rotates": false, "multitile": false }, - { "id": "brick_kiln", "fg": 522, "rotates": false, "multitile": false }, - { "id": "briefcase_smg", "fg": 904, "rotates": false, "multitile": false }, - { "id": "broadfire_off", "fg": 684, "rotates": false, "multitile": false }, - { "id": "broadfire_on", "fg": 685, "rotates": false, "multitile": false }, - { "id": "broadsword", "fg": 683, "rotates": false, "multitile": false }, - { "id": "broadsword_fake", "fg": 683, "rotates": false, "multitile": false }, - { "id": "broken_copbot", "fg": 729, "rotates": false }, - { "id": "broken_eyebot", "fg": 725, "rotates": false }, - { "id": "broken_manhack", "fg": 653, "rotates": false, "multitile": false }, - { "id": "broken_molebot", "fg": 730, "rotates": false }, - { "id": "broken_riotbot", "fg": 729, "rotates": false }, - { "id": "broken_skitterbot", "fg": 726, "rotates": false }, - { "id": "broken_tankbot", "fg": 734, "rotates": false }, - { "id": "broken_tripod", "fg": 731, "rotates": false }, - { "id": "broketent", "fg": 418, "rotates": false, "multitile": false }, - { "id": "broom", "fg": 448, "rotates": false, "multitile": false }, - { "id": "broth", "fg": 921, "rotates": false, "multitile": false }, - { "id": "broth_bone", "fg": 921, "rotates": false, "multitile": false }, - { "id": "browning_blr", "fg": 526, "rotates": false, "multitile": false }, - { "id": "bubblewrap", "fg": 613, "rotates": false, "multitile": false }, - { "id": "bullet_crossbow", "fg": 879, "rotates": false, "multitile": false }, - { "id": "bullwhip", "fg": 769, "rotates": false, "multitile": false }, - { "id": "bum_wine", "fg": 1413, "rotates": false, "multitile": false }, - { "id": "burnt_out_bionic", "fg": 393, "rotates": false, "multitile": false }, - { "id": "bwirebat", "fg": 507, "rotates": false, "multitile": false }, - { "id": "c4", "fg": 663, "rotates": false, "multitile": false }, - { "id": "c4armed", "fg": 664, "rotates": false, "multitile": false }, - { "id": "c_fishspear", "fg": 679, "rotates": false, "multitile": false }, - { "id": "cable", "fg": 872, "rotates": false, "multitile": false }, - { "id": "calico", "fg": 533, "rotates": false, "multitile": false }, - { "id": "caltrops", "fg": 882, "rotates": false }, - { "id": "camera_control", "fg": 2284, "rotates": false, "multitile": false }, - { "id": "can_drink", "fg": 1403, "rotates": false, "multitile": false }, - { "id": "can_food", "fg": 1404, "rotates": false, "multitile": false }, - { "id": "candle", "fg": 696, "rotates": false, "multitile": false }, - { "id": "candle_lit", "fg": 697, "rotates": false, "multitile": false }, - { "id": "candlestick", "fg": 407, "rotates": false, "multitile": false }, - { "id": "cane", "fg": 461, "rotates": false, "multitile": false }, - { "id": "canister_empty", "fg": 601, "rotates": false, "multitile": false }, - { "id": "canister_goo", "fg": 625, "rotates": false, "multitile": false }, - { "id": "canteen", "fg": 373, "rotates": false, "multitile": false }, - { "id": "carbine_flintlock", "fg": 526, "rotates": false, "multitile": false }, - { "id": "carding_paddles", "fg": 448, "rotates": false, "multitile": false }, - { "id": "cargo_rack", "fg": 2309, "rotates": false }, - { "id": "carver_off", "fg": 689, "rotates": false, "multitile": false }, - { "id": "carver_on", "fg": 689, "rotates": false, "multitile": false }, - { "id": "cash_card", "fg": 390, "rotates": false, "multitile": false }, - { "id": "cattail_rhizome", "fg": 841, "rotates": false, "multitile": false }, - { "id": "cattail_stalk", "fg": 840, "rotates": false, "multitile": false }, - { "id": "cell_phone", "fg": 489, "rotates": false, "multitile": false }, - { "id": "ceramic_armor", "fg": 523, "rotates": false, "multitile": false }, - { "id": "ceramic_bowl", "fg": 427, "rotates": false, "multitile": false }, - { "id": "ceramic_cup", "fg": 428, "rotates": false, "multitile": false }, - { "id": "ceramic_plate", "fg": 426, "rotates": false, "multitile": false }, - { "id": "cerberus_laser", "fg": 571, "rotates": false, "multitile": false }, - { "id": "cestus", "fg": 473, "rotates": false, "multitile": false }, - { "id": "chain", "fg": 447, "rotates": false, "multitile": false }, - { "id": "chainsaw_off", "fg": 610, "rotates": false, "multitile": false }, - { "id": "chainsaw_on", "fg": 610, "rotates": false, "multitile": false }, - { "id": "char_forge", "fg": 519, "rotates": false, "multitile": false }, - { "id": "char_kiln", "fg": 522, "rotates": false, "multitile": false }, - { "id": "char_purifier", "fg": 520, "rotates": false, "multitile": false }, - { "id": "char_smoker", "fg": 513, "rotates": false, "multitile": false }, - { "id": "charcoal", "fg": 894, "rotates": false, "multitile": false }, - { "id": "chem_acetic_acid", "fg": 920, "rotates": false, "multitile": false }, - { "id": "chem_acetone", "fg": 920, "rotates": false, "multitile": false }, - { "id": "chem_aluminium_powder", "fg": 894, "rotates": false, "multitile": false }, - { "id": "chem_aluminium_sulphate", "fg": 372, "rotates": false, "multitile": false }, - { "id": "chem_ammonium_nitrate", "fg": 372, "rotates": false, "multitile": false }, - { "id": "chem_black_powder", "fg": 894, "rotates": false, "multitile": false }, - { "id": "chem_carbide", "fg": 894, "rotates": false, "multitile": false }, - { "id": "chem_hmtd", "fg": 372, "rotates": false, "multitile": false }, - { "id": "chem_hydrogen_peroxide", "fg": 920, "rotates": false, "multitile": false }, - { "id": "chem_hydrogen_peroxide_conc", "fg": 920, "rotates": false, "multitile": false }, - { "id": "chem_nitric_acid", "fg": 920, "rotates": false, "multitile": false }, - { "id": "chem_rdx", "fg": 372, "rotates": false, "multitile": false }, - { "id": "chem_rocket_fuel", "fg": 894, "rotates": false, "multitile": false }, - { "id": "chem_saltpetre", "fg": 372, "rotates": false, "multitile": false }, - { "id": "chem_sulphuric_acid", "fg": 920, "rotates": false, "multitile": false }, - { "id": "chem_thermite", "fg": 894, "rotates": false, "multitile": false }, - { "id": "chem_zinc_powder", "fg": 894, "rotates": false, "multitile": false }, - { "id": "chemistry_set", "fg": 739, "rotates": false, "multitile": false }, - { "id": "chemlab", "fg": 901, "rotates": false }, - { "id": "chipper", "fg": 748, "rotates": false, "multitile": false }, - { "id": "chisel", "fg": 748, "rotates": false, "multitile": false }, - { "id": "chitin_piece", "fg": 400, "rotates": false, "multitile": false }, - { "id": "chitin_plate", "fg": 478, "rotates": false, "multitile": false }, - { "id": "choc_drink", "fg": 1405, "rotates": false }, - { "id": "circsaw_blade", "fg": 438, "rotates": false, "multitile": false }, - { "id": "circsaw_off", "fg": 557, "rotates": false, "multitile": false }, - { "id": "circsaw_on", "fg": 557, "rotates": false, "multitile": false }, - { "id": "circuit", "fg": 938, "rotates": false, "multitile": false }, - { "id": "clay_canister", "fg": 821, "rotates": false, "multitile": false }, - { "id": "clay_pot", "fg": 822, "rotates": false, "multitile": false }, - { "id": "clay_quern", "fg": 827, "rotates": false, "multitile": false }, - { "id": "clay_teapot", "fg": 828, "rotates": false, "multitile": false }, - { "id": "clay_watercont", "fg": 822, "rotates": false, "multitile": false }, - { "id": "clock", "fg": 437, "rotates": false, "multitile": false }, - { "id": "clockworks", "fg": 438, "rotates": false, "multitile": false }, - { "id": "clown_suit", "fg": 1011, "rotates": false, "multitile": false }, - { "id": "coal_lump", "fg": 947, "rotates": false, "multitile": false }, - { "id": "coffee", "fg": 921, "rotates": false, "multitile": false }, - { "id": "coffee_syrup", "fg": 921, "rotates": false, "multitile": false }, - { "id": "coffeemaker", "fg": 934, "rotates": false, "multitile": false }, - { "id": "coilgun", "fg": 569, "rotates": false, "multitile": false }, - { "id": "cola", "fg": 921, "rotates": false, "multitile": false }, - { "id": "colamdew", "fg": 1410, "rotates": false, "multitile": false }, - { "id": "colt_army", "fg": 535, "rotates": false, "multitile": false }, - { "id": "colt_navy", "fg": 535, "rotates": false, "multitile": false }, - { "id": "combatnail", "fg": 874, "rotates": false, "multitile": false }, - { "id": "combatsaw_off", "fg": 611, "rotates": false, "multitile": false }, - { "id": "combatsaw_on", "fg": 611, "rotates": false, "multitile": false }, - { "id": "compbow", "fg": 878, "rotates": false, "multitile": false }, - { "id": "compositebow", "fg": 878, "rotates": false, "multitile": false }, - { "id": "con_mix", "fg": 834, "rotates": false, "multitile": false }, - { "id": "concrete", "fg": 959, "rotates": false, "multitile": false }, - { "id": "control_laptop", "fg": 441, "rotates": false, "multitile": false }, + { "id": "120mm_HEAT", "fg": 984, "rotates": false, "multitile": false }, + { "id": "12mm", "fg": 981, "rotates": false, "multitile": false }, + { "id": "1cyl_combustion", "fg": 857, "rotates": false, "multitile": false }, + { "id": "1cyl_combustion_small", "fg": 857, "rotates": false, "multitile": false }, + { "id": "223", "fg": 980, "rotates": false, "multitile": false }, + { "id": "223_casing", "fg": 983 }, + { "id": "22_casing", "fg": 983 }, + { "id": "22_cb", "fg": 980, "rotates": false, "multitile": false }, + { "id": "22_fmj", "fg": 980, "rotates": false, "multitile": false }, + { "id": "22_lr", "fg": 980, "rotates": false, "multitile": false }, + { "id": "22_ratshot", "fg": 980, "rotates": false, "multitile": false }, + { "id": "2_shot_special", "fg": 535, "rotates": false, "multitile": false }, + { "id": "2lcanteen", "fg": 374, "rotates": false, "multitile": false }, + { "id": "2x4", "fg": 564, "rotates": true }, + { "id": "3006", "fg": 980, "rotates": false, "multitile": false }, + { "id": "3006_casing", "fg": 983 }, + { "id": "3006_incendiary", "fg": 980, "rotates": false, "multitile": false }, + { "id": "3006fmj", "fg": 980, "rotates": false, "multitile": false }, + { "id": "300_casing", "fg": 983 }, + { "id": "300_winmag", "fg": 980, "rotates": false, "multitile": false }, + { "id": "308", "fg": 980, "rotates": false, "multitile": false }, + { "id": "308_casing", "fg": 983 }, + { "id": "32_acp", "fg": 980, "rotates": false, "multitile": false }, + { "id": "32_casing", "fg": 983 }, + { "id": "38_casing", "fg": 983 }, + { "id": "38_fmj", "fg": 980, "rotates": false, "multitile": false }, + { "id": "38_special", "fg": 980, "rotates": false, "multitile": false }, + { "id": "38_super", "fg": 980, "rotates": false, "multitile": false }, + { "id": "40_casing", "fg": 983 }, + { "id": "40fmj", "fg": 980, "rotates": false, "multitile": false }, + { "id": "40mm_flare", "fg": 984, "rotates": false, "multitile": false }, + { "id": "40mm_flashbang", "fg": 984, "rotates": false, "multitile": false }, + { "id": "40mm_incendiary", "fg": 984, "rotates": false, "multitile": false }, + { "id": "40mm_smoke", "fg": 984, "rotates": false, "multitile": false }, + { "id": "40sw", "fg": 980, "rotates": false, "multitile": false }, + { "id": "44_casing", "fg": 983 }, + { "id": "44fmj", "fg": 980, "rotates": false, "multitile": false }, + { "id": "44magnum", "fg": 980, "rotates": false, "multitile": false }, + { "id": "454_Casull", "fg": 980, "rotates": false, "multitile": false }, + { "id": "454_casing", "fg": 983 }, + { "id": "45_acp", "fg": 980, "rotates": false, "multitile": false }, + { "id": "45_casing", "fg": 983 }, + { "id": "45_jhp", "fg": 980, "rotates": false, "multitile": false }, + { "id": "45_super", "fg": 980, "rotates": false, "multitile": false }, + { "id": "46mm", "fg": 980, "rotates": false, "multitile": false }, + { "id": "46mm_casing", "fg": 983 }, + { "id": "500_Magnum", "fg": 980, "rotates": false, "multitile": false }, + { "id": "500_casing", "fg": 983 }, + { "id": "556", "fg": 980, "rotates": false, "multitile": false }, + { "id": "556_incendiary", "fg": 980, "rotates": false, "multitile": false }, + { "id": "57mm", "fg": 980, "rotates": false, "multitile": false }, + { "id": "57mm_casing", "fg": 983 }, + { "id": "5x50_hull", "fg": 931 }, + { "id": "5x50dart", "fg": 810, "rotates": false, "multitile": false }, + { "id": "5x50heavy", "fg": 810, "rotates": false, "multitile": false }, + { "id": "66mm_HEAT", "fg": 984, "rotates": false, "multitile": false }, + { "id": "700nx", "fg": 980, "rotates": false, "multitile": false }, + { "id": "700nx_casing", "fg": 983 }, + { "id": "762R_casing", "fg": 983 }, + { "id": "762_25", "fg": 980, "rotates": false, "multitile": false }, + { "id": "762_51", "fg": 980, "rotates": false, "multitile": false }, + { "id": "762_51_incendiary", "fg": 980, "rotates": false, "multitile": false }, + { "id": "762_54R", "fg": 980, "rotates": false, "multitile": false }, + { "id": "762_casing", "fg": 983 }, + { "id": "762_m43", "fg": 980, "rotates": false, "multitile": false }, + { "id": "762_m87", "fg": 980, "rotates": false, "multitile": false }, + { "id": "84x246mm_he", "fg": 984, "rotates": false, "multitile": false }, + { "id": "84x246mm_hedp", "fg": 984, "rotates": false, "multitile": false }, + { "id": "84x246mm_smoke", "fg": 984, "rotates": false, "multitile": false }, + { "id": "8mm_bootleg", "fg": 982, "rotates": false, "multitile": false }, + { "id": "8mm_caseless", "fg": 982, "rotates": false, "multitile": false }, + { "id": "8mm_civilian", "fg": 982, "rotates": false, "multitile": false }, + { "id": "8mm_fmj", "fg": 982, "rotates": false, "multitile": false }, + { "id": "8mm_hvp", "fg": 982, "rotates": false, "multitile": false }, + { "id": "8mm_inc", "fg": 982, "rotates": false, "multitile": false }, + { "id": "8mm_jhp", "fg": 982, "rotates": false, "multitile": false }, + { "id": "9mmP2", "fg": 980, "rotates": false, "multitile": false }, + { "id": "9mmP", "fg": 980, "rotates": false, "multitile": false }, + { "id": "9mm", "fg": 980, "rotates": false, "multitile": false }, + { "id": "9mm_casing", "fg": 983 }, + { "id": "9mmfmj", "fg": 980, "rotates": false, "multitile": false }, + { "id": "EMPbomb", "fg": 633, "rotates": false, "multitile": false }, + { "id": "EMPbomb_act", "fg": 634, "rotates": false, "multitile": false }, + { "id": "LAW", "fg": 578, "rotates": false, "multitile": false }, + { "id": "LAW_Packed", "fg": 578, "rotates": false, "multitile": false }, + { "id": "PR24-extended", "fg": 453, "rotates": false, "multitile": false }, + { "id": "PR24-retracted", "fg": 453, "rotates": false, "multitile": false }, + { "id": "RAM", "fg": 939, "rotates": false, "multitile": false }, + { "id": "RPG-7_ammo", "fg": 985, "rotates": false, "multitile": false }, + { "id": "RPG", "fg": 577, "rotates": false, "multitile": false }, + { "id": "TDI", "fg": 551, "rotates": false, "multitile": false }, + { "id": "UPS_off", "fg": 942, "rotates": false, "multitile": false }, + { "id": "V8", "fg": 1423, "rotates": false, "multitile": false }, + { "id": "acidbomb", "fg": 943, "rotates": false, "multitile": false }, + { "id": "acoustic_guitar", "fg": 944, "rotates": false, "multitile": false }, + { "id": "acr", "fg": 565, "rotates": false, "multitile": false }, + { "id": "adjustable_stock", "fg": 905, "rotates": false, "multitile": false }, + { "id": "adrenaline_injector", "fg": 744, "rotates": false, "multitile": false }, + { "id": "adv_UPS_off", "fg": 945, "rotates": false, "multitile": false }, + { "id": "advanced_ecig", "fg": 395, "rotates": false, "multitile": false }, + { "id": "airhorn", "fg": 560, "rotates": false, "multitile": false }, + { "id": "airspeargun", "fg": 537, "rotates": false, "multitile": false }, + { "id": "ak47", "fg": 566, "rotates": false, "multitile": false }, + { "id": "alarmclock", "fg": 550, "rotates": false, "multitile": false }, + { "id": "alloy_plate", "fg": 479, "rotates": false, "multitile": false }, + { "id": "alloy_sheet", "fg": 479, "rotates": false, "multitile": false }, + { "id": "alternator_car", "fg": 2279, "rotates": false, "multitile": false }, + { "id": "alternator_motorbike", "fg": 2279, "rotates": false, "multitile": false }, + { "id": "alternator_truck", "fg": 2279, "rotates": false, "multitile": false }, + { "id": "american_180", "fg": 546, "rotates": false, "multitile": false }, + { "id": "ammonia", "fg": 921, "rotates": false, "multitile": false }, + { "id": "amplifier", "fg": 939, "rotates": false, "multitile": false }, + { "id": "ampoule", "fg": 470, "rotates": false, "multitile": false }, + { "id": "antenna", "fg": 395, "rotates": false, "multitile": false }, + { "id": "anvil", "fg": 747, "rotates": false, "multitile": false }, + { "id": "apple_cider", "fg": 1420, "rotates": false, "multitile": false }, + { "id": "ar15", "fg": 565, "rotates": false, "multitile": false }, + { "id": "arx160", "fg": 565, "rotates": false, "multitile": false }, + { "id": "ashot", "fg": 536, "rotates": false, "multitile": false }, + { "id": "atomic_coffee", "fg": 922, "rotates": false, "multitile": false }, + { "id": "atomic_coffeepot", "fg": 936, "rotates": false, "multitile": false }, + { "id": "atomic_light", "fg": 909, "rotates": false, "multitile": false }, + { "id": "autofire", "fg": 905, "rotates": false, "multitile": false }, + { "id": "aux_flamer", "fg": 905, "rotates": false, "multitile": false }, + { "id": "ax", "fg": 693, "rotates": false, "multitile": false }, + { "id": "b_paint", "fg": 410, "rotates": false, "multitile": false }, + { "id": "bag_bundle_10", "fg": 517, "rotates": false, "multitile": false }, + { "id": "bag_canvas", "fg": 1377, "rotates": false, "multitile": false }, + { "id": "bag_canvas_small", "fg": 1377, "rotates": false, "multitile": false }, + { "id": "bag_plastic", "fg": 517, "rotates": false }, + { "id": "bagh_nakha", "fg": 497, "rotates": false, "multitile": false }, + { "id": "barometer", "fg": 438, "rotates": false, "multitile": false }, + { "id": "barrel_big", "fg": 905, "rotates": false, "multitile": false }, + { "id": "barrel_ported", "fg": 905, "rotates": false, "multitile": false }, + { "id": "barrel_rifled", "fg": 905, "rotates": false, "multitile": false }, + { "id": "barrel_small", "fg": 905, "rotates": false, "multitile": false }, + { "id": "baseball", "fg": 910, "rotates": false, "multitile": false }, + { "id": "basket", "fg": 2311, "rotates": false }, + { "id": "bat", "fg": 456, "rotates": false, "multitile": false }, + { "id": "bat_metal", "fg": 457, "rotates": false, "multitile": false }, + { "id": "baton-extended", "fg": 459, "rotates": false, "multitile": false }, + { "id": "baton", "fg": 459, "rotates": false, "multitile": false }, + { "id": "battery", "fg": 887, "rotates": false, "multitile": false }, + { "id": "battery_car", "fg": 858, "rotates": false }, + { "id": "battery_motorbike", "fg": 858, "rotates": false }, + { "id": "battery_truck", "fg": 858, "rotates": false }, + { "id": "battery_ups", "fg": 729, "rotates": false, "multitile": false }, + { "id": "battleaxe", "fg": 507, "rotates": false, "multitile": false }, + { "id": "battleaxe_fake", "fg": 507, "rotates": false, "multitile": false }, + { "id": "battletorch", "fg": 508, "rotates": false, "multitile": false }, + { "id": "battletorch_done", "fg": 498, "rotates": false, "multitile": false }, + { "id": "battletorch_lit", "fg": 509, "rotates": false, "multitile": false }, + { "id": "bb", "fg": 888, "rotates": false, "multitile": false }, + { "id": "bbgun", "fg": 527, "rotates": false, "multitile": false }, + { "id": "bearing", "fg": 888, "rotates": false, "multitile": false }, + { "id": "beartrap", "fg": 615, "rotates": false, "multitile": false }, + { "id": "bee_sting", "fg": 460, "rotates": false, "multitile": false }, + { "id": "beer", "fg": 922, "rotates": false, "multitile": false }, + { "id": "belgian_ale", "fg": 922, "rotates": false, "multitile": false }, + { "id": "bigun", "fg": 552, "rotates": false, "multitile": false }, + { "id": "binoculars", "fg": 405, "rotates": false, "multitile": false }, + { "id": "bio_adrenaline", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_ads", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_alarm", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_ankles", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_armor_arms", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_armor_eyes", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_armor_head", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_armor_legs", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_armor_torso", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_batteries", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_blade", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_blade_weapon", "fg": 689, "rotates": false, "multitile": false }, + { "id": "bio_blaster", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_blood_anal", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_blood_filter", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_carbon", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_chain_lightning", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_claws", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_claws_weapon", "fg": 497, "rotates": false, "multitile": false }, + { "id": "bio_climate", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_cloak", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_cqb", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_deformity", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_dex_enhancer", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_digestion", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_dis_acid", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_dis_shock", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_drain", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_ears", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_emp", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_ethanol", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_evap", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_eye_enhancer", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_face_mask", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_faraday", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_fingerhack", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_flashbang", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_flashlight", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_furnace", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_geiger", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_gills", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_ground_sonar", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_heat_absorb", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_heatsink", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_hydraulics", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_infrared", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_int_enhancer", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_itchy", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_laser", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_leaky", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_leukocyte", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_lighter", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_lockpick", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_magnet", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_membrane", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_memory", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_metabolics", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_meteorologist", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_nanobots", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_night", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_night_vision", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_noise", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_nostril", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bionic_general_faulty", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_ods", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_painkiller", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_pokedeye", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_power_armor_interface", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_power_armor_interface_mkII", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_power_storage", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_power_storage_mkII", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_power_weakness", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_probability_travel", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_purifier", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_radscrubber", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_railgun", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_razors", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_recycler", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_remote", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_resonator", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_scent_mask", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_scent_vision", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_shakes", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_shock", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_shockwave", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_sleepy", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_spasm", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_speed", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_stiff", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_storage", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_str_enhancer", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_sunglasses", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_targeting", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_teleport", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_thumbs", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_time_freeze", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_tools", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_torsionratchet", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_trip", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_uncanny_dodge", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_ups", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_voice", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_watch", "fg": 912, "rotates": false, "multitile": false }, + { "id": "bio_water_extractor", "fg": 912, "rotates": false, "multitile": false }, + { "id": "biollante_bud", "fg": 402, "rotates": false, "multitile": false }, + { "id": "bipod", "fg": 905, "rotates": false, "multitile": false }, + { "id": "bismuth", "fg": 891, "rotates": false, "multitile": false }, + { "id": "black_box", "fg": 601, "rotates": false, "multitile": false }, + { "id": "black_box_transcript", "fg": 884, "rotates": false, "multitile": false }, + { "id": "blade", "fg": 409, "rotates": false, "multitile": false }, + { "id": "blade_trap", "fg": 620, "rotates": false, "multitile": false }, + { "id": "bleach", "fg": 921, "rotates": false, "multitile": false }, + { "id": "blood", "fg": 1423, "rotates": false, "multitile": false }, + { "id": "blowback", "fg": 905, "rotates": false, "multitile": false }, + { "id": "bluebell_bud", "fg": 396, "rotates": false, "multitile": false }, + { "id": "bluebell_flower", "fg": 854, "rotates": false, "multitile": false }, + { "id": "blun_flechette", "fg": 979, "rotates": false, "multitile": false }, + { "id": "blun_shot", "fg": 979, "rotates": false, "multitile": false }, + { "id": "blun_slug", "fg": 979, "rotates": false, "multitile": false }, + { "id": "blunderbuss", "fg": 542, "rotates": false, "multitile": false }, + { "id": "board_trap", "fg": 616, "rotates": false, "multitile": false }, + { "id": "bokken", "fg": 815, "rotates": false, "multitile": false }, + { "id": "boltcutters", "fg": 706, "rotates": false, "multitile": false }, + { "id": "bone_glue", "fg": 826, "rotates": false, "multitile": false }, + { "id": "bone_plate", "fg": 478, "rotates": false, "multitile": false }, + { "id": "boobytrap", "fg": 663, "rotates": false, "multitile": false }, + { "id": "bootstrap", "fg": 906, "rotates": false, "multitile": false }, + { "id": "bot_laserturret", "fg": 383, "rotates": false, "multitile": false }, + { "id": "bot_manhack", "fg": 654, "rotates": false, "multitile": false }, + { "id": "bot_rifleturret", "fg": 579, "rotates": false, "multitile": false }, + { "id": "bot_turret", "fg": 655, "rotates": false, "multitile": false }, + { "id": "bottle_glass", "fg": 529, "rotates": false }, + { "id": "bottle_plastic", "fg": 1415, "rotates": false }, + { "id": "bottle_plastic_small", "fg": 1415, "rotates": false }, + { "id": "bow_sight", "fg": 905, "rotates": false, "multitile": false }, + { "id": "bowl_clay", "fg": 821, "rotates": false, "multitile": false }, + { "id": "bowl_pewter", "fg": 441, "rotates": false, "multitile": false }, + { "id": "bowl_plastic", "fg": 382, "rotates": false, "multitile": false }, + { "id": "bowling_axe", "fg": 775, "rotates": false, "multitile": false }, + { "id": "bowling_ball", "fg": 407, "rotates": false, "multitile": false }, + { "id": "bowling_pin", "fg": 774, "rotates": false, "multitile": false }, + { "id": "box_small", "fg": 518, "rotates": false }, + { "id": "brass_catcher", "fg": 905, "rotates": false, "multitile": false }, + { "id": "brazier", "fg": 699, "rotates": false, "multitile": false }, + { "id": "brew_dandelion_wine", "fg": 1402, "rotates": false, "multitile": false }, + { "id": "brew_hb_beer", "fg": 922, "rotates": false, "multitile": false }, + { "id": "brew_mead", "fg": 1402, "rotates": false, "multitile": false }, + { "id": "brew_moonshine", "fg": 922, "rotates": false, "multitile": false }, + { "id": "brew_pine_wine", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "brew_rum", "fg": 921, "rotates": false, "multitile": false }, + { "id": "brew_vinegar", "fg": 924, "rotates": false, "multitile": false }, + { "id": "brew_vodka", "fg": 921, "rotates": false, "multitile": false }, + { "id": "brew_whiskey", "fg": 922, "rotates": false, "multitile": false }, + { "id": "brick", "fg": 827, "rotates": false, "multitile": false }, + { "id": "brick_kiln", "fg": 523, "rotates": false, "multitile": false }, + { "id": "briefcase_smg", "fg": 905, "rotates": false, "multitile": false }, + { "id": "broadfire_off", "fg": 685, "rotates": false, "multitile": false }, + { "id": "broadfire_on", "fg": 686, "rotates": false, "multitile": false }, + { "id": "broadsword", "fg": 684, "rotates": false, "multitile": false }, + { "id": "broadsword_fake", "fg": 684, "rotates": false, "multitile": false }, + { "id": "broken_copbot", "fg": 730, "rotates": false }, + { "id": "broken_eyebot", "fg": 726, "rotates": false }, + { "id": "broken_manhack", "fg": 654, "rotates": false, "multitile": false }, + { "id": "broken_molebot", "fg": 731, "rotates": false }, + { "id": "broken_riotbot", "fg": 730, "rotates": false }, + { "id": "broken_skitterbot", "fg": 727, "rotates": false }, + { "id": "broken_tankbot", "fg": 735, "rotates": false }, + { "id": "broken_tripod", "fg": 732, "rotates": false }, + { "id": "broketent", "fg": 419, "rotates": false, "multitile": false }, + { "id": "broom", "fg": 449, "rotates": false, "multitile": false }, + { "id": "broth", "fg": 922, "rotates": false, "multitile": false }, + { "id": "broth_bone", "fg": 922, "rotates": false, "multitile": false }, + { "id": "browning_blr", "fg": 527, "rotates": false, "multitile": false }, + { "id": "bubblewrap", "fg": 614, "rotates": false, "multitile": false }, + { "id": "bullet_crossbow", "fg": 880, "rotates": false, "multitile": false }, + { "id": "bullwhip", "fg": 770, "rotates": false, "multitile": false }, + { "id": "bum_wine", "fg": 1423, "rotates": false, "multitile": false }, + { "id": "burnt_out_bionic", "fg": 394, "rotates": false, "multitile": false }, + { "id": "bwirebat", "fg": 508, "rotates": false, "multitile": false }, + { "id": "c4", "fg": 664, "rotates": false, "multitile": false }, + { "id": "c4armed", "fg": 665, "rotates": false, "multitile": false }, + { "id": "c_fishspear", "fg": 680, "rotates": false, "multitile": false }, + { "id": "cable", "fg": 873, "rotates": false, "multitile": false }, + { "id": "calico", "fg": 534, "rotates": false, "multitile": false }, + { "id": "caltrops", "fg": 883, "rotates": false }, + { "id": "camera_control", "fg": 2295, "rotates": false, "multitile": false }, + { "id": "can_drink", "fg": 1413, "rotates": false, "multitile": false }, + { "id": "can_food", "fg": 1414, "rotates": false, "multitile": false }, + { "id": "candle", "fg": 697, "rotates": false, "multitile": false }, + { "id": "candle_lit", "fg": 698, "rotates": false, "multitile": false }, + { "id": "candlestick", "fg": 408, "rotates": false, "multitile": false }, + { "id": "cane", "fg": 462, "rotates": false, "multitile": false }, + { "id": "canister_empty", "fg": 602, "rotates": false, "multitile": false }, + { "id": "canister_goo", "fg": 626, "rotates": false, "multitile": false }, + { "id": "canteen", "fg": 374, "rotates": false, "multitile": false }, + { "id": "carbine_flintlock", "fg": 527, "rotates": false, "multitile": false }, + { "id": "carding_paddles", "fg": 449, "rotates": false, "multitile": false }, + { "id": "cargo_rack", "fg": 2320, "rotates": false }, + { "id": "carver_off", "fg": 690, "rotates": false, "multitile": false }, + { "id": "carver_on", "fg": 690, "rotates": false, "multitile": false }, + { "id": "cash_card", "fg": 391, "rotates": false, "multitile": false }, + { "id": "cattail_rhizome", "fg": 842, "rotates": false, "multitile": false }, + { "id": "cattail_stalk", "fg": 841, "rotates": false, "multitile": false }, + { "id": "cell_phone", "fg": 490, "rotates": false, "multitile": false }, + { "id": "ceramic_armor", "fg": 524, "rotates": false, "multitile": false }, + { "id": "ceramic_bowl", "fg": 428, "rotates": false, "multitile": false }, + { "id": "ceramic_cup", "fg": 429, "rotates": false, "multitile": false }, + { "id": "ceramic_plate", "fg": 427, "rotates": false, "multitile": false }, + { "id": "cerberus_laser", "fg": 572, "rotates": false, "multitile": false }, + { "id": "cestus", "fg": 474, "rotates": false, "multitile": false }, + { "id": "chain", "fg": 448, "rotates": false, "multitile": false }, + { "id": "chainsaw_off", "fg": 611, "rotates": false, "multitile": false }, + { "id": "chainsaw_on", "fg": 611, "rotates": false, "multitile": false }, + { "id": "char_forge", "fg": 520, "rotates": false, "multitile": false }, + { "id": "char_kiln", "fg": 523, "rotates": false, "multitile": false }, + { "id": "char_purifier", "fg": 521, "rotates": false, "multitile": false }, + { "id": "char_smoker", "fg": 514, "rotates": false, "multitile": false }, + { "id": "charcoal", "fg": 895, "rotates": false, "multitile": false }, + { "id": "chem_acetic_acid", "fg": 921, "rotates": false, "multitile": false }, + { "id": "chem_acetone", "fg": 921, "rotates": false, "multitile": false }, + { "id": "chem_aluminium_powder", "fg": 895, "rotates": false, "multitile": false }, + { "id": "chem_aluminium_sulphate", "fg": 373, "rotates": false, "multitile": false }, + { "id": "chem_ammonium_nitrate", "fg": 373, "rotates": false, "multitile": false }, + { "id": "chem_black_powder", "fg": 895, "rotates": false, "multitile": false }, + { "id": "chem_carbide", "fg": 895, "rotates": false, "multitile": false }, + { "id": "chem_hmtd", "fg": 373, "rotates": false, "multitile": false }, + { "id": "chem_hydrogen_peroxide", "fg": 921, "rotates": false, "multitile": false }, + { "id": "chem_hydrogen_peroxide_conc", "fg": 921, "rotates": false, "multitile": false }, + { "id": "chem_nitric_acid", "fg": 921, "rotates": false, "multitile": false }, + { "id": "chem_rdx", "fg": 373, "rotates": false, "multitile": false }, + { "id": "chem_rocket_fuel", "fg": 895, "rotates": false, "multitile": false }, + { "id": "chem_saltpetre", "fg": 373, "rotates": false, "multitile": false }, + { "id": "chem_sulphuric_acid", "fg": 921, "rotates": false, "multitile": false }, + { "id": "chem_thermite", "fg": 895, "rotates": false, "multitile": false }, + { "id": "chem_zinc_powder", "fg": 895, "rotates": false, "multitile": false }, + { "id": "chemistry_set", "fg": 740, "rotates": false, "multitile": false }, + { "id": "chemlab", "fg": 902, "rotates": false }, + { "id": "chipper", "fg": 749, "rotates": false, "multitile": false }, + { "id": "chisel", "fg": 749, "rotates": false, "multitile": false }, + { "id": "chitin_piece", "fg": 401, "rotates": false, "multitile": false }, + { "id": "chitin_plate", "fg": 479, "rotates": false, "multitile": false }, + { "id": "choc_drink", "fg": 1415, "rotates": false }, + { "id": "circsaw_blade", "fg": 439, "rotates": false, "multitile": false }, + { "id": "circsaw_off", "fg": 558, "rotates": false, "multitile": false }, + { "id": "circsaw_on", "fg": 558, "rotates": false, "multitile": false }, + { "id": "circuit", "fg": 939, "rotates": false, "multitile": false }, + { "id": "clay_canister", "fg": 822, "rotates": false, "multitile": false }, + { "id": "clay_pot", "fg": 823, "rotates": false, "multitile": false }, + { "id": "clay_quern", "fg": 828, "rotates": false, "multitile": false }, + { "id": "clay_teapot", "fg": 829, "rotates": false, "multitile": false }, + { "id": "clay_watercont", "fg": 823, "rotates": false, "multitile": false }, + { "id": "clock", "fg": 438, "rotates": false, "multitile": false }, + { "id": "clockworks", "fg": 439, "rotates": false, "multitile": false }, + { "id": "clown_suit", "fg": 1021, "rotates": false, "multitile": false }, + { "id": "coal_lump", "fg": 949, "rotates": false, "multitile": false }, + { "id": "coffee", "fg": 922, "rotates": false, "multitile": false }, + { "id": "coffee_syrup", "fg": 922, "rotates": false, "multitile": false }, + { "id": "coffeemaker", "fg": 935, "rotates": false, "multitile": false }, + { "id": "coilgun", "fg": 570, "rotates": false, "multitile": false }, + { "id": "cola", "fg": 922, "rotates": false, "multitile": false }, + { "id": "colamdew", "fg": 1420, "rotates": false, "multitile": false }, + { "id": "colt_army", "fg": 536, "rotates": false, "multitile": false }, + { "id": "colt_navy", "fg": 536, "rotates": false, "multitile": false }, + { "id": "combatnail", "fg": 875, "rotates": false, "multitile": false }, + { "id": "combatsaw_off", "fg": 612, "rotates": false, "multitile": false }, + { "id": "combatsaw_on", "fg": 612, "rotates": false, "multitile": false }, + { "id": "compbow", "fg": 879, "rotates": false, "multitile": false }, + { "id": "compositebow", "fg": 879, "rotates": false, "multitile": false }, + { "id": "con_mix", "fg": 835, "rotates": false, "multitile": false }, + { "id": "concrete", "fg": 966, "rotates": false, "multitile": false }, + { "id": "control_laptop", "fg": 442, "rotates": false, "multitile": false }, { "id": "controls", - "fg": 866, - "rotates": true, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] - }, - { "id": "cooking_oil", "fg": 1392, "rotates": false, "multitile": false }, - { "id": "cop_38", "fg": 534, "rotates": false, "multitile": false }, - { "id": "copper", "fg": 810, "rotates": false, "multitile": false }, - { "id": "cordless_drill", "fg": 727, "rotates": false, "multitile": false }, - { "id": "corpse", "fg": 846, "rotates": false }, - { "id": "cot", "fg": 668, "rotates": false, "multitile": false }, - { "id": "cow_bell", "fg": 560, "rotates": false, "multitile": false }, - { "id": "crackpipe", "fg": 740, "rotates": false, "multitile": false }, - { "id": "crafted_suppressor", "fg": 904, "rotates": false, "multitile": false }, - { "id": "craftrig", "fg": 2306, "rotates": true }, - { "id": "cranberry_juice", "fg": 1405, "rotates": false }, - { "id": "creamsoda", "fg": 923, "rotates": false, "multitile": false }, - { "id": "creepy_doll", "fg": 733, "rotates": false, "multitile": false }, - { "id": "crossbow", "fg": 879, "rotates": false, "multitile": false }, - { "id": "crossbow_trap", "fg": 617, "rotates": false, "multitile": false }, - { "id": "crowbar", "fg": 605, "rotates": false, "multitile": false }, - { "id": "crucible", "fg": 745, "rotates": false, "multitile": false }, - { "id": "crude_picklock", "fg": 708, "rotates": false, "multitile": false }, - { "id": "cs_lajatang_off", "fg": 503, "rotates": false, "multitile": false }, - { "id": "cs_lajatang_on", "fg": 503, "rotates": false, "multitile": false }, - { "id": "cu_pipe", "fg": 852, "rotates": false, "multitile": false }, - { "id": "cudgel", "fg": 720, "rotates": false, "multitile": false }, - { "id": "cup_plastic", "fg": 898, "rotates": false, "multitile": false }, - { "id": "curry_veggy", "fg": 1413, "rotates": false, "multitile": false }, - { "id": "cx4", "fg": 532, "rotates": false, "multitile": false }, - { "id": "dahlia_bud", "fg": 486, "rotates": false, "multitile": false }, - { "id": "dahlia_flower", "fg": 896, "rotates": false, "multitile": false }, - { "id": "damaged_shelter_kit", "fg": 721, "rotates": false, "multitile": false }, - { "id": "dandelion_tea", "fg": 1392, "rotates": false, "multitile": false }, - { "id": "dandelion_wine", "fg": 1392, "rotates": false, "multitile": false }, - { "id": "deagle_44", "fg": 535, "rotates": false, "multitile": false }, - { "id": "dehydrator", "fg": 514, "rotates": false, "multitile": false }, - { "id": "diamond", "fg": 555, "rotates": false, "multitile": false }, - { "id": "diesel", "fg": 923, "rotates": false, "multitile": false }, - { "id": "digging_stick", "fg": 964, "rotates": false, "multitile": false }, - { "id": "directional_antenna", "fg": 599, "rotates": false, "multitile": false }, - { "id": "distaff_spindle", "fg": 993, "rotates": false, "multitile": false }, - { "id": "diveknife", "fg": 688, "rotates": false, "multitile": false }, - { "id": "dog_whistle", "fg": 665, "rotates": false, "multitile": false }, - { "id": "dogfood", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "door_opaque", "fg": 2367, "rotates": false }, - { "id": "doublespeargun", "fg": 541, "rotates": false, "multitile": false }, - { "id": "down_feather", "fg": 875, "rotates": false, "multitile": false }, - { "id": "drink_beeknees", "fg": 1392, "rotates": false, "multitile": false }, - { "id": "drink_hobo", "fg": 921, "rotates": false, "multitile": false }, - { "id": "drink_kalimotxo", "fg": 1413, "rotates": false, "multitile": false }, - { "id": "drink_rumcola", "fg": 921, "rotates": false, "multitile": false }, - { "id": "drink_screwdriver", "fg": 922, "rotates": false, "multitile": false }, - { "id": "drink_sewerbrew", "fg": 921, "rotates": false, "multitile": false }, - { "id": "drink_wild_apple", "fg": 1410, "rotates": false, "multitile": false }, - { "id": "drink_wsour", "fg": 1392, "rotates": false, "multitile": false }, - { "id": "drive_by_wire_controls", "fg": 2285, "rotates": false, "multitile": false }, - { "id": "duct_tape", "fg": 885, "rotates": false, "multitile": false }, - { "id": "dump_pouch", "fg": 1243, "rotates": false, "multitile": false }, - { "id": "dynamite", "fg": 643, "rotates": false, "multitile": false }, - { "id": "dynamite_act", "fg": 644, "rotates": false, "multitile": false }, - { "id": "e_scrap", "fg": 939, "rotates": false, "multitile": false }, - { "id": "e_tool", "fg": 607, "rotates": false, "multitile": false }, - { "id": "ear_spool", "fg": 932, "rotates": false, "multitile": false }, - { "id": "ecig", "fg": 1268, "rotates": false, "multitile": false }, - { "id": "eink_tablet_pc", "fg": 714, "rotates": false, "multitile": false }, - { "id": "elec_chainsaw_off", "fg": 610, "rotates": false, "multitile": false }, - { "id": "elec_chainsaw_on", "fg": 610, "rotates": false, "multitile": false }, - { "id": "elec_jackhammer", "fg": 612, "rotates": false, "multitile": false }, - { "id": "electrohack", "fg": 389, "rotates": false, "multitile": false }, - { "id": "element", "fg": 419, "rotates": false, "multitile": false }, - { "id": "energy_drink", "fg": 1411, "rotates": false, "multitile": false }, - { "id": "energy_drink_atomic", "fg": 1410, "rotates": false, "multitile": false }, - { "id": "etched_skull", "fg": 660, "rotates": false, "multitile": false }, - { "id": "european_pilsner", "fg": 921, "rotates": false, "multitile": false }, - { "id": "explosive_hm_rocket", "fg": 811, "rotates": false, "multitile": false }, - { "id": "extinguisher", "fg": 584, "rotates": false, "multitile": false }, - { "id": "fan", "fg": 425, "rotates": false, "multitile": false }, - { "id": "feather", "fg": 875, "rotates": false, "multitile": false }, - { "id": "felt_patch", "fg": 494, "rotates": false }, - { "id": "fencing_epee", "fg": 680, "rotates": false, "multitile": false }, - { "id": "fencing_foil", "fg": 680, "rotates": false, "multitile": false }, - { "id": "fencing_sabre", "fg": 680, "rotates": false, "multitile": false }, - { "id": "fertilizer", "fg": 1343, "rotates": false, "multitile": false }, - { "id": "fertilizer_bomb", "fg": 793, "rotates": false, "multitile": false }, - { "id": "fertilizer_bomb_act", "fg": 794, "rotates": false, "multitile": false }, - { "id": "fertilizer_liquid", "fg": 920, "rotates": false, "multitile": false }, - { "id": "fighter_sting", "fg": 498, "rotates": false, "multitile": false }, - { "id": "file", "fg": 883, "rotates": false, "multitile": false }, - { "id": "fire_ax", "fg": 504, "rotates": false, "multitile": false }, - { "id": "fire_drill", "fg": 579, "rotates": false, "multitile": false }, - { "id": "fire_drill_large", "fg": 579, "rotates": false, "multitile": false }, - { "id": "firecracker", "fg": 647, "rotates": false, "multitile": false }, - { "id": "firecracker_act", "fg": 648, "rotates": false, "multitile": false }, - { "id": "firecracker_pack", "fg": 645, "rotates": false, "multitile": false }, - { "id": "firecracker_pack_act", "fg": 646, "rotates": false, "multitile": false }, - { "id": "firekatana_off", "fg": 677, "rotates": false, "multitile": false }, - { "id": "firekatana_on", "fg": 678, "rotates": false, "multitile": false }, - { "id": "firemachete_off", "fg": 674, "rotates": false, "multitile": false }, - { "id": "firemachete_on", "fg": 675, "rotates": false, "multitile": false }, + "fg": 867, + "rotates": true, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] + }, + { "id": "cooking_oil", "fg": 1402, "rotates": false, "multitile": false }, + { "id": "cop_38", "fg": 535, "rotates": false, "multitile": false }, + { "id": "copper", "fg": 811, "rotates": false, "multitile": false }, + { "id": "cordless_drill", "fg": 728, "rotates": false, "multitile": false }, + { "id": "corpse", "fg": 847, "rotates": false }, + { "id": "cot", "fg": 669, "rotates": false, "multitile": false }, + { "id": "cow_bell", "fg": 561, "rotates": false, "multitile": false }, + { "id": "crackpipe", "fg": 741, "rotates": false, "multitile": false }, + { "id": "crafted_suppressor", "fg": 905, "rotates": false, "multitile": false }, + { "id": "craftrig", "fg": 2317, "rotates": true }, + { "id": "cranberry_juice", "fg": 1415, "rotates": false }, + { "id": "creamsoda", "fg": 924, "rotates": false, "multitile": false }, + { "id": "creepy_doll", "fg": 734, "rotates": false, "multitile": false }, + { "id": "crossbow", "fg": 880, "rotates": false, "multitile": false }, + { "id": "crossbow_trap", "fg": 618, "rotates": false, "multitile": false }, + { "id": "crowbar", "fg": 606, "rotates": false, "multitile": false }, + { "id": "crucible", "fg": 746, "rotates": false, "multitile": false }, + { "id": "crude_picklock", "fg": 709, "rotates": false, "multitile": false }, + { "id": "cs_lajatang_off", "fg": 504, "rotates": false, "multitile": false }, + { "id": "cs_lajatang_on", "fg": 504, "rotates": false, "multitile": false }, + { "id": "cu_pipe", "fg": 853, "rotates": false, "multitile": false }, + { "id": "cudgel", "fg": 721, "rotates": false, "multitile": false }, + { "id": "cup_plastic", "fg": 899, "rotates": false, "multitile": false }, + { "id": "curry_veggy", "fg": 1423, "rotates": false, "multitile": false }, + { "id": "cx4", "fg": 533, "rotates": false, "multitile": false }, + { "id": "dahlia_bud", "fg": 487, "rotates": false, "multitile": false }, + { "id": "dahlia_flower", "fg": 897, "rotates": false, "multitile": false }, + { "id": "damaged_shelter_kit", "fg": 722, "rotates": false, "multitile": false }, + { "id": "dandelion_tea", "fg": 1402, "rotates": false, "multitile": false }, + { "id": "dandelion_wine", "fg": 1402, "rotates": false, "multitile": false }, + { "id": "deagle_44", "fg": 536, "rotates": false, "multitile": false }, + { "id": "dehydrator", "fg": 515, "rotates": false, "multitile": false }, + { "id": "diamond", "fg": 556, "rotates": false, "multitile": false }, + { "id": "diesel", "fg": 924, "rotates": false, "multitile": false }, + { "id": "digging_stick", "fg": 973, "rotates": false, "multitile": false }, + { "id": "directional_antenna", "fg": 600, "rotates": false, "multitile": false }, + { "id": "distaff_spindle", "fg": 1003, "rotates": false, "multitile": false }, + { "id": "diveknife", "fg": 689, "rotates": false, "multitile": false }, + { "id": "dog_whistle", "fg": 666, "rotates": false, "multitile": false }, + { "id": "dogfood", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "door_opaque", "fg": 2378, "rotates": false }, + { "id": "doublespeargun", "fg": 542, "rotates": false, "multitile": false }, + { "id": "down_feather", "fg": 876, "rotates": false, "multitile": false }, + { "id": "drink_beeknees", "fg": 1402, "rotates": false, "multitile": false }, + { "id": "drink_hobo", "fg": 922, "rotates": false, "multitile": false }, + { "id": "drink_kalimotxo", "fg": 1423, "rotates": false, "multitile": false }, + { "id": "drink_rumcola", "fg": 922, "rotates": false, "multitile": false }, + { "id": "drink_screwdriver", "fg": 923, "rotates": false, "multitile": false }, + { "id": "drink_sewerbrew", "fg": 922, "rotates": false, "multitile": false }, + { "id": "drink_wild_apple", "fg": 1420, "rotates": false, "multitile": false }, + { "id": "drink_wsour", "fg": 1402, "rotates": false, "multitile": false }, + { "id": "drive_by_wire_controls", "fg": 2296, "rotates": false, "multitile": false }, + { "id": "duct_tape", "fg": 886, "rotates": false, "multitile": false }, + { "id": "dump_pouch", "fg": 1253, "rotates": false, "multitile": false }, + { "id": "dynamite", "fg": 644, "rotates": false, "multitile": false }, + { "id": "dynamite_act", "fg": 645, "rotates": false, "multitile": false }, + { "id": "e_scrap", "fg": 940, "rotates": false, "multitile": false }, + { "id": "e_tool", "fg": 608, "rotates": false, "multitile": false }, + { "id": "ear_spool", "fg": 933, "rotates": false, "multitile": false }, + { "id": "ecig", "fg": 1278, "rotates": false, "multitile": false }, + { "id": "eink_tablet_pc", "fg": 715, "rotates": false, "multitile": false }, + { "id": "elec_chainsaw_off", "fg": 611, "rotates": false, "multitile": false }, + { "id": "elec_chainsaw_on", "fg": 611, "rotates": false, "multitile": false }, + { "id": "elec_jackhammer", "fg": 613, "rotates": false, "multitile": false }, + { "id": "electrohack", "fg": 390, "rotates": false, "multitile": false }, + { "id": "element", "fg": 420, "rotates": false, "multitile": false }, + { "id": "energy_drink", "fg": 1421, "rotates": false, "multitile": false }, + { "id": "energy_drink_atomic", "fg": 1420, "rotates": false, "multitile": false }, + { "id": "etched_skull", "fg": 661, "rotates": false, "multitile": false }, + { "id": "european_pilsner", "fg": 922, "rotates": false, "multitile": false }, + { "id": "explosive_hm_rocket", "fg": 812, "rotates": false, "multitile": false }, + { "id": "extinguisher", "fg": 585, "rotates": false, "multitile": false }, + { "id": "fan", "fg": 426, "rotates": false, "multitile": false }, + { "id": "feather", "fg": 876, "rotates": false, "multitile": false }, + { "id": "felt_patch", "fg": 495, "rotates": false }, + { "id": "fencing_epee", "fg": 681, "rotates": false, "multitile": false }, + { "id": "fencing_foil", "fg": 681, "rotates": false, "multitile": false }, + { "id": "fencing_sabre", "fg": 681, "rotates": false, "multitile": false }, + { "id": "fertilizer", "fg": 1353, "rotates": false, "multitile": false }, + { "id": "fertilizer_bomb", "fg": 794, "rotates": false, "multitile": false }, + { "id": "fertilizer_bomb_act", "fg": 795, "rotates": false, "multitile": false }, + { "id": "fertilizer_liquid", "fg": 921, "rotates": false, "multitile": false }, + { "id": "fighter_sting", "fg": 499, "rotates": false, "multitile": false }, + { "id": "file", "fg": 884, "rotates": false, "multitile": false }, + { "id": "fire_ax", "fg": 505, "rotates": false, "multitile": false }, + { "id": "fire_drill", "fg": 580, "rotates": false, "multitile": false }, + { "id": "fire_drill_large", "fg": 580, "rotates": false, "multitile": false }, + { "id": "firecracker", "fg": 648, "rotates": false, "multitile": false }, + { "id": "firecracker_act", "fg": 649, "rotates": false, "multitile": false }, + { "id": "firecracker_pack", "fg": 646, "rotates": false, "multitile": false }, + { "id": "firecracker_pack_act", "fg": 647, "rotates": false, "multitile": false }, + { "id": "firekatana_off", "fg": 678, "rotates": false, "multitile": false }, + { "id": "firekatana_on", "fg": 679, "rotates": false, "multitile": false }, + { "id": "firemachete_off", "fg": 675, "rotates": false, "multitile": false }, + { "id": "firemachete_on", "fg": 676, "rotates": false, "multitile": false }, { "id": "fish_bait", - "fg": [ { "weight": 1, "sprite": 371 }, { "weight": 1, "sprite": 367 } ], + "fg": [ { "weight": 1, "sprite": 372 }, { "weight": 1, "sprite": 368 } ], "rotates": false, "multitile": false }, - { "id": "fish_bowl", "fg": 492, "rotates": false, "multitile": false }, - { "id": "fish_trap", "fg": 595, "rotates": false, "multitile": false }, - { "id": "fishing_hook_basic", "fg": 547, "rotates": false, "multitile": false }, - { "id": "fishing_rod_basic", "fg": 546, "rotates": false, "multitile": false }, - { "id": "fishing_rod_professional", "fg": 796, "rotates": false, "multitile": false }, - { "id": "fishspear", "fg": 681, "rotates": false, "multitile": false }, - { "id": "flamable_arrow", "fg": 640, "rotates": false, "multitile": false }, - { "id": "flamethrower", "fg": 572, "rotates": false, "multitile": false }, - { "id": "flamethrower_crude", "fg": 573, "rotates": false, "multitile": false }, - { "id": "flamethrower_simple", "fg": 572, "rotates": false, "multitile": false }, - { "id": "flaregun", "fg": 530, "rotates": false, "multitile": false }, - { "id": "flashbang", "fg": 630, "rotates": false, "multitile": false }, - { "id": "flashbang_act", "fg": 631, "rotates": false, "multitile": false }, - { "id": "flashlight", "fg": 587, "rotates": false, "multitile": false }, - { "id": "flashlight_on", "fg": 588, "rotates": false, "multitile": false }, - { "id": "flask_glass", "fg": 376, "rotates": false, "multitile": false }, - { "id": "flask_hip", "fg": 989, "rotates": false, "multitile": false }, - { "id": "flask_yeast", "fg": 376, "rotates": false, "multitile": false }, - { "id": "fletching", "fg": 876, "rotates": false, "multitile": false }, - { "id": "flintlock_ammo", "fg": 538, "rotates": false, "multitile": false }, - { "id": "floodlight", "fg": 2319, "rotates": false }, - { "id": "flyer", "fg": 883, "rotates": false, "multitile": false }, - { "id": "fn57", "fg": 535, "rotates": false, "multitile": false }, - { "id": "fn_fal", "fg": 565, "rotates": false, "multitile": false }, - { "id": "fn_p90", "fg": 551, "rotates": false, "multitile": false }, - { "id": "foldframe", "fg": 912, "rotates": false }, - { "id": "folding_basket", "fg": 829, "rotates": false }, - { "id": "folding_bicycle", "fg": 735, "rotates": false, "multitile": false }, - { "id": "foon", "fg": 433, "rotates": false, "multitile": false }, - { "id": "foot_crank", "fg": 470, "rotates": false, "multitile": false }, - { "id": "football", "fg": 910, "rotates": false, "multitile": false }, - { "id": "forge", "fg": 518, "rotates": false, "multitile": false }, - { "id": "forgerig", "fg": 862, "rotates": false }, - { "id": "fork", "fg": 433, "rotates": false, "multitile": false }, - { "id": "frame", "fg": 671, "rotates": false }, - { "id": "frame_wood", "fg": 914, "rotates": false }, - { "id": "frame_wood_light", "fg": 914, "rotates": false }, - { "id": "ftk93", "fg": 570, "rotates": false, "multitile": false }, - { "id": "funnel", "fg": 699, "rotates": false, "multitile": false }, - { "id": "fur_cat_tail", "fg": 540, "rotates": false }, - { "id": "g_carpet", "fg": 756, "rotates": false }, - { "id": "g_paint", "fg": 948, "rotates": false, "multitile": false }, - { "id": "g_shovel", "fg": 607, "rotates": false, "multitile": false }, - { "id": "gasbomb", "fg": 636, "rotates": false, "multitile": false }, - { "id": "gasbomb_act", "fg": 637, "rotates": false, "multitile": false }, - { "id": "gasdiscount_gold", "fg": 390, "rotates": false, "multitile": false }, - { "id": "gasdiscount_platinum", "fg": 808, "rotates": false, "multitile": false }, - { "id": "gasdiscount_silver", "fg": 808, "rotates": false, "multitile": false }, - { "id": "gasoline", "fg": 923, "rotates": false, "multitile": false }, - { "id": "gasoline_lantern", "fg": 916, "rotates": false, "multitile": false }, - { "id": "gasoline_lantern_on", "fg": 917, "rotates": false, "multitile": false }, - { "id": "geiger_off", "fg": 622, "rotates": false, "multitile": false }, - { "id": "geiger_on", "fg": 623, "rotates": false, "multitile": false }, - { "id": "generic_no_ammo", "fg": 969, "rotates": false, "multitile": false }, - { "id": "gin", "fg": 920, "rotates": false, "multitile": false }, - { "id": "glass", "fg": 431, "rotates": false, "multitile": false }, - { "id": "glass_bowl", "fg": 430, "rotates": false, "multitile": false }, - { "id": "glass_macuahuitl", "fg": 863, "rotates": false, "multitile": false }, - { "id": "glass_plate", "fg": 429, "rotates": false, "multitile": false }, - { "id": "glass_shard", "fg": 899, "rotates": false, "multitile": false }, - { "id": "glass_sheet", "fg": 396, "rotates": false, "multitile": false }, - { "id": "glass_shiv", "fg": 949, "rotates": false, "multitile": false }, - { "id": "glock_19", "fg": 535, "rotates": false, "multitile": false }, - { "id": "glowstick", "fg": 590, "rotates": false, "multitile": false }, - { "id": "glowstick_dead", "fg": 592, "rotates": false, "multitile": false }, - { "id": "glowstick_lit", "fg": 591, "rotates": false, "multitile": false }, - { "id": "gold_small", "fg": 891, "rotates": false, "multitile": false }, - { "id": "golf_club", "fg": 500, "rotates": false, "multitile": false }, - { "id": "grapnel", "fg": 768, "rotates": false, "multitile": false }, - { "id": "grenade", "fg": 628, "rotates": false, "multitile": false }, - { "id": "grenade_act", "fg": 629, "rotates": false, "multitile": false }, - { "id": "grenade_inc", "fg": 759, "rotates": false, "multitile": false }, - { "id": "grenade_inc_act", "fg": 760, "rotates": false, "multitile": false }, - { "id": "grip", "fg": 904, "rotates": false, "multitile": false }, - { "id": "gun_crossbow", "fg": 904, "rotates": false, "multitile": false }, - { "id": "gunpowder", "fg": 894, "rotates": false, "multitile": false }, - { "id": "h&k416a5", "fg": 564, "rotates": false, "multitile": false }, - { "id": "hacksaw", "fg": 693, "rotates": false, "multitile": false }, - { "id": "halligan", "fg": 605, "rotates": false, "multitile": false }, - { "id": "hammer", "fg": 583, "rotates": false, "multitile": false }, - { "id": "hammer_sledge", "fg": 449, "rotates": false, "multitile": false }, - { "id": "hand_rims", "fg": 777, "rotates": false, "multitile": false }, - { "id": "handflare", "fg": 918, "rotates": false, "multitile": false }, - { "id": "handflare_dead", "fg": 927, "rotates": false, "multitile": false }, - { "id": "handflare_lit", "fg": 919, "rotates": false, "multitile": false }, - { "id": "hard_plate", "fg": 481, "rotates": false, "multitile": false }, - { "id": "hatchet", "fg": 692, "rotates": false, "multitile": false }, - { "id": "hb_beer", "fg": 921, "rotates": false, "multitile": false }, - { "id": "hd_steel_drum", "fg": 936, "rotates": false }, - { "id": "hdframe", "fg": 913, "rotates": false }, - { "id": "headlight_reinforced", "fg": 902, "rotates": false }, - { "id": "heatpack", "fg": 722, "rotates": false, "multitile": false }, - { "id": "heatpack_used", "fg": 723, "rotates": false, "multitile": false }, - { "id": "heavy_rail_rifle", "fg": 551, "rotates": false, "multitile": false }, - { "id": "helmet_chitin", "fg": 1161, "rotates": false, "multitile": false }, - { "id": "helmet_liner", "fg": 1158, "rotates": false, "multitile": false }, - { "id": "helmet_lobster", "fg": 1152, "rotates": false, "multitile": false }, - { "id": "helmet_motor", "fg": 1009, "rotates": false, "multitile": false }, - { "id": "helmet_nomad", "fg": 1158, "rotates": false, "multitile": false }, - { "id": "helmet_plate", "fg": 1162, "rotates": false, "multitile": false }, - { "id": "helmet_riot", "fg": 1159, "rotates": false, "multitile": false }, - { "id": "helmet_skid", "fg": 1155, "rotates": false, "multitile": false }, - { "id": "helsing", "fg": 551, "rotates": false, "multitile": false }, - { "id": "herbal_tea", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "hk_g36", "fg": 564, "rotates": false, "multitile": false }, - { "id": "hk_g3", "fg": 564, "rotates": false, "multitile": false }, - { "id": "hk_g80", "fg": 570, "rotates": false, "multitile": false }, - { "id": "hk_mp5", "fg": 533, "rotates": false, "multitile": false }, - { "id": "hk_mp7", "fg": 533, "rotates": false, "multitile": false }, - { "id": "hk_ump45", "fg": 533, "rotates": false, "multitile": false }, - { "id": "hockey_stick", "fg": 495, "rotates": false, "multitile": false }, - { "id": "hoe", "fg": 606, "rotates": false, "multitile": false }, - { "id": "holo_sight", "fg": 904, "rotates": false, "multitile": false }, - { "id": "holster", "fg": 1172, "rotates": false, "multitile": false }, - { "id": "holy_symbol", "fg": 1177, "rotates": false, "multitile": false }, - { "id": "homewrecker", "fg": 451, "rotates": false, "multitile": false }, - { "id": "honey_glassed", "fg": 435, "rotates": false, "multitile": false }, - { "id": "honey_gold", "fg": 1392, "rotates": false, "multitile": false }, - { "id": "honey_scraper", "fg": 688, "rotates": false, "multitile": false }, - { "id": "hood_fsurvivor", "fg": 1160, "rotates": false, "multitile": false }, - { "id": "hood_h20survivor", "fg": 1160, "rotates": false, "multitile": false }, - { "id": "hood_lsurvivor", "fg": 1202, "rotates": false, "multitile": false }, - { "id": "hood_survivor", "fg": 1204, "rotates": false, "multitile": false }, - { "id": "hood_xlsurvivor", "fg": 1204, "rotates": false, "multitile": false }, - { "id": "horn_bicycle", "fg": 858, "rotates": false }, - { "id": "horn_big", "fg": 858, "rotates": false }, - { "id": "horn_car", "fg": 858, "rotates": false }, - { "id": "hose", "fg": 609, "rotates": false, "multitile": false }, - { "id": "hotplate", "fg": 593, "rotates": false, "multitile": false }, - { "id": "house_coat", "fg": 1187, "rotates": false, "multitile": false }, - { "id": "hsurvivor_suit", "fg": 1215, "rotates": false, "multitile": false }, - { "id": "huge_crossbow", "fg": 879, "rotates": false, "multitile": false }, - { "id": "hygrometer", "fg": 835, "rotates": false, "multitile": false }, - { "id": "i4_combustion", "fg": 856, "rotates": false, "multitile": false }, - { "id": "i6_diesel", "fg": 856, "rotates": false, "multitile": false }, - { "id": "i_staff", "fg": 467, "rotates": false, "multitile": false }, - { "id": "id_military", "fg": 388, "rotates": false, "multitile": false }, - { "id": "id_science", "fg": 387, "rotates": false, "multitile": false }, - { "id": "imperial_stout", "fg": 921, "rotates": false, "multitile": false }, - { "id": "improve_sights", "fg": 904, "rotates": false, "multitile": false }, - { "id": "incendiary", "fg": 894, "rotates": false, "multitile": false }, - { "id": "incendiary_hm_rocket", "fg": 812, "rotates": false, "multitile": false }, - { "id": "india_pale_ale", "fg": 921, "rotates": false, "multitile": false }, - { "id": "irish_coffee", "fg": 921, "rotates": false, "multitile": false }, - { "id": "iv_mutagen", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_alpha", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_beast", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_bird", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_cattle", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_cephalopod", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_chimera", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_elfa", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_feline", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_fish", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_insect", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_lizard", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_lupine", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_medical", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_plant", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_raptor", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_rat", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_slime", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_spider", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_troglobite", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_mutagen_ursine", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "iv_purifier", "fg": 1411, "rotates": false, "multitile": false }, - { "id": "jack", "fg": 521, "rotates": false, "multitile": false }, - { "id": "jacket_chef", "fg": 1109, "rotates": false, "multitile": false }, - { "id": "jackhammer", "fg": 612, "rotates": false, "multitile": false }, - { "id": "jar_3l_glass_sealed", "fg": 380, "rotates": false, "multitile": false }, - { "id": "jar_glass_sealed", "fg": 379, "rotates": false, "multitile": false }, - { "id": "javelin", "fg": 466, "rotates": false, "multitile": false }, - { "id": "javelin_iron", "fg": 681, "rotates": false, "multitile": false }, - { "id": "jerrycan", "fg": 374, "rotates": false, "multitile": false }, - { "id": "jerrycan_big", "fg": 378, "rotates": false, "multitile": false }, - { "id": "judo_belt_blue", "fg": 1016, "rotates": false, "multitile": false }, - { "id": "judo_belt_brown", "fg": 1017, "rotates": false, "multitile": false }, - { "id": "judo_belt_green", "fg": 1015, "rotates": false, "multitile": false }, - { "id": "judo_belt_orange", "fg": 1014, "rotates": false, "multitile": false }, - { "id": "judo_belt_white", "fg": 1012, "rotates": false, "multitile": false }, - { "id": "judo_belt_yellow", "fg": 1013, "rotates": false, "multitile": false }, - { "id": "jug_clay", "fg": 823, "rotates": false, "multitile": false }, - { "id": "jug_plastic", "fg": 375, "rotates": false, "multitile": false }, - { "id": "juice", "fg": 922, "rotates": false, "multitile": false }, - { "id": "junk_burrito", "fg": 370, "rotates": false, "multitile": false }, - { "id": "katana", "fg": 676, "rotates": false, "multitile": false }, - { "id": "katana_fake", "fg": 676, "rotates": false, "multitile": false }, - { "id": "keg", "fg": 936, "rotates": false, "multitile": false }, - { "id": "kevlar_harness", "fg": 552, "rotates": false, "multitile": false }, - { "id": "kiln_done", "fg": 772, "rotates": false, "multitile": false }, - { "id": "kiln_full", "fg": 770, "rotates": false, "multitile": false }, - { "id": "kiln_lit", "fg": 771, "rotates": false, "multitile": false }, - { "id": "kitchen_unit", "fg": 847, "rotates": false, "multitile": false }, - { "id": "knife_butcher", "fg": 688, "rotates": false, "multitile": false }, - { "id": "knife_butter", "fg": 399, "rotates": false, "multitile": false }, - { "id": "knife_combat", "fg": 688, "rotates": false, "multitile": false }, - { "id": "knife_hunting", "fg": 688, "rotates": false, "multitile": false }, - { "id": "knife_rambo", "fg": 688, "rotates": false, "multitile": false }, - { "id": "knife_rm42", "fg": 688, "rotates": false, "multitile": false }, - { "id": "knife_steak", "fg": 688, "rotates": false, "multitile": false }, - { "id": "knife_swissarmy", "fg": 782, "rotates": false, "multitile": false }, - { "id": "knife_trench", "fg": 688, "rotates": false, "multitile": false }, - { "id": "knitting_needles", "fg": 964, "rotates": false, "multitile": false }, - { "id": "knuckle_brass", "fg": 417, "rotates": false, "multitile": false }, - { "id": "knuckle_katar", "fg": 496, "rotates": false, "multitile": false }, - { "id": "knuckle_nail", "fg": 496, "rotates": false, "multitile": false }, - { "id": "knuckle_steel", "fg": 493, "rotates": false, "multitile": false }, - { "id": "kompot", "fg": 920, "rotates": false, "multitile": false }, - { "id": "kris", "fg": 688, "rotates": false, "multitile": false }, - { "id": "kris_fake", "fg": 688, "rotates": false, "multitile": false }, - { "id": "kukri", "fg": 676, "rotates": false, "multitile": false }, - { "id": "l_bak_223", "fg": 535, "rotates": false, "multitile": false }, - { "id": "lajatang", "fg": 487, "rotates": false, "multitile": false }, - { "id": "lamp_oil", "fg": 1392, "rotates": false, "multitile": false }, - { "id": "landmine", "fg": 621, "rotates": false, "multitile": false }, - { "id": "laptop", "fg": 424, "rotates": false, "multitile": false }, - { "id": "large_repairkit", "fg": 928, "rotates": false, "multitile": false }, - { "id": "large_tent_kit", "fg": 253, "rotates": false, "multitile": false }, - { "id": "largebroketent", "fg": 418, "rotates": false, "multitile": false }, - { "id": "laser_cannon", "fg": 571, "rotates": false, "multitile": false }, - { "id": "laser_pack", "fg": 893, "rotates": false, "multitile": false }, - { "id": "laser_rifle", "fg": 570, "rotates": false, "multitile": false }, - { "id": "laser_sight", "fg": 904, "rotates": false, "multitile": false }, - { "id": "launcher_simple", "fg": 574, "rotates": false, "multitile": false }, - { "id": "lawn_dart", "fg": 881, "rotates": false, "multitile": false }, - { "id": "lawnmower", "fg": 416, "rotates": false, "multitile": false }, - { "id": "lead", "fg": 890, "rotates": false, "multitile": false }, - { "id": "leather_cat_tail", "fg": 540, "rotates": false }, - { "id": "leather_funnel", "fg": 806, "rotates": false, "multitile": false }, - { "id": "lemonlime", "fg": 923, "rotates": false, "multitile": false }, - { "id": "lens", "fg": 392, "rotates": false, "multitile": false }, - { "id": "lgpistol_primer", "fg": 895, "rotates": false, "multitile": false }, - { "id": "lgrifle_primer", "fg": 895, "rotates": false, "multitile": false }, - { "id": "light_atomic_battery_cell", "fg": 953, "rotates": false, "multitile": false }, - { "id": "light_emergency_blue", "fg": 855, "rotates": false }, - { "id": "light_emergency_red", "fg": 854, "rotates": false }, - { "id": "lighter", "fg": 850, "rotates": true }, - { "id": "lightstrip", "fg": 589, "rotates": false, "multitile": false }, - { "id": "lightstrip_inactive", "fg": 954, "rotates": false, "multitile": false }, - { "id": "lobotomizer", "fg": 836, "rotates": false, "multitile": false }, - { "id": "log", "fg": 412, "rotates": false, "multitile": false }, - { "id": "long_island", "fg": 921, "rotates": false, "multitile": false }, - { "id": "longbow", "fg": 878, "rotates": false, "multitile": false }, + { "id": "fish_bowl", "fg": 493, "rotates": false, "multitile": false }, + { "id": "fish_trap", "fg": 596, "rotates": false, "multitile": false }, + { "id": "fishing_hook_basic", "fg": 548, "rotates": false, "multitile": false }, + { "id": "fishing_rod_basic", "fg": 547, "rotates": false, "multitile": false }, + { "id": "fishing_rod_professional", "fg": 797, "rotates": false, "multitile": false }, + { "id": "fishspear", "fg": 682, "rotates": false, "multitile": false }, + { "id": "flamable_arrow", "fg": 641, "rotates": false, "multitile": false }, + { "id": "flamethrower", "fg": 573, "rotates": false, "multitile": false }, + { "id": "flamethrower_crude", "fg": 574, "rotates": false, "multitile": false }, + { "id": "flamethrower_simple", "fg": 573, "rotates": false, "multitile": false }, + { "id": "flaregun", "fg": 531, "rotates": false, "multitile": false }, + { "id": "flashbang", "fg": 631, "rotates": false, "multitile": false }, + { "id": "flashbang_act", "fg": 632, "rotates": false, "multitile": false }, + { "id": "flashlight", "fg": 588, "rotates": false, "multitile": false }, + { "id": "flashlight_on", "fg": 589, "rotates": false, "multitile": false }, + { "id": "flask_glass", "fg": 377, "rotates": false, "multitile": false }, + { "id": "flask_hip", "fg": 999, "rotates": false, "multitile": false }, + { "id": "flask_yeast", "fg": 377, "rotates": false, "multitile": false }, + { "id": "fletching", "fg": 877, "rotates": false, "multitile": false }, + { "id": "flintlock_ammo", "fg": 539, "rotates": false, "multitile": false }, + { "id": "floodlight", "fg": 2330, "rotates": false }, + { "id": "flyer", "fg": 884, "rotates": false, "multitile": false }, + { "id": "fn57", "fg": 536, "rotates": false, "multitile": false }, + { "id": "fn_fal", "fg": 566, "rotates": false, "multitile": false }, + { "id": "fn_p90", "fg": 552, "rotates": false, "multitile": false }, + { "id": "foldframe", "fg": 913, "rotates": false }, + { "id": "folding_basket", "fg": 830, "rotates": false }, + { "id": "folding_bicycle", "fg": 736, "rotates": false, "multitile": false }, + { "id": "foon", "fg": 434, "rotates": false, "multitile": false }, + { "id": "foot_crank", "fg": 471, "rotates": false, "multitile": false }, + { "id": "football", "fg": 911, "rotates": false, "multitile": false }, + { "id": "forge", "fg": 519, "rotates": false, "multitile": false }, + { "id": "forgerig", "fg": 863, "rotates": false }, + { "id": "fork", "fg": 434, "rotates": false, "multitile": false }, + { "id": "frame", "fg": 672, "rotates": false }, + { "id": "frame_wood", "fg": 915, "rotates": false }, + { "id": "frame_wood_light", "fg": 915, "rotates": false }, + { "id": "ftk93", "fg": 571, "rotates": false, "multitile": false }, + { "id": "funnel", "fg": 700, "rotates": false, "multitile": false }, + { "id": "fur_cat_tail", "fg": 541, "rotates": false }, + { "id": "g_carpet", "fg": 757, "rotates": false }, + { "id": "g_paint", "fg": 955, "rotates": false, "multitile": false }, + { "id": "g_shovel", "fg": 608, "rotates": false, "multitile": false }, + { "id": "gasbomb", "fg": 637, "rotates": false, "multitile": false }, + { "id": "gasbomb_act", "fg": 638, "rotates": false, "multitile": false }, + { "id": "gasdiscount_gold", "fg": 391, "rotates": false, "multitile": false }, + { "id": "gasdiscount_platinum", "fg": 809, "rotates": false, "multitile": false }, + { "id": "gasdiscount_silver", "fg": 809, "rotates": false, "multitile": false }, + { "id": "gasoline", "fg": 924, "rotates": false, "multitile": false }, + { "id": "gasoline_lantern", "fg": 917, "rotates": false, "multitile": false }, + { "id": "gasoline_lantern_on", "fg": 918, "rotates": false, "multitile": false }, + { "id": "geiger_off", "fg": 623, "rotates": false, "multitile": false }, + { "id": "geiger_on", "fg": 624, "rotates": false, "multitile": false }, + { "id": "generic_no_ammo", "fg": 979, "rotates": false, "multitile": false }, + { "id": "gin", "fg": 921, "rotates": false, "multitile": false }, + { "id": "glass", "fg": 432, "rotates": false, "multitile": false }, + { "id": "glass_bowl", "fg": 431, "rotates": false, "multitile": false }, + { "id": "glass_macuahuitl", "fg": 864, "rotates": false, "multitile": false }, + { "id": "glass_plate", "fg": 430, "rotates": false, "multitile": false }, + { "id": "glass_shard", "fg": 900, "rotates": false, "multitile": false }, + { "id": "glass_sheet", "fg": 397, "rotates": false, "multitile": false }, + { "id": "glass_shiv", "fg": 956, "rotates": false, "multitile": false }, + { "id": "glock_19", "fg": 536, "rotates": false, "multitile": false }, + { "id": "glowstick", "fg": 591, "rotates": false, "multitile": false }, + { "id": "glowstick_dead", "fg": 593, "rotates": false, "multitile": false }, + { "id": "glowstick_lit", "fg": 592, "rotates": false, "multitile": false }, + { "id": "gold_small", "fg": 892, "rotates": false, "multitile": false }, + { "id": "golf_club", "fg": 501, "rotates": false, "multitile": false }, + { "id": "grapnel", "fg": 769, "rotates": false, "multitile": false }, + { "id": "grenade", "fg": 629, "rotates": false, "multitile": false }, + { "id": "grenade_act", "fg": 630, "rotates": false, "multitile": false }, + { "id": "grenade_inc", "fg": 760, "rotates": false, "multitile": false }, + { "id": "grenade_inc_act", "fg": 761, "rotates": false, "multitile": false }, + { "id": "grip", "fg": 905, "rotates": false, "multitile": false }, + { "id": "gun_crossbow", "fg": 905, "rotates": false, "multitile": false }, + { "id": "gunpowder", "fg": 895, "rotates": false, "multitile": false }, + { "id": "h&k416a5", "fg": 565, "rotates": false, "multitile": false }, + { "id": "hacksaw", "fg": 694, "rotates": false, "multitile": false }, + { "id": "halligan", "fg": 606, "rotates": false, "multitile": false }, + { "id": "hammer", "fg": 584, "rotates": false, "multitile": false }, + { "id": "hammer_sledge", "fg": 450, "rotates": false, "multitile": false }, + { "id": "hand_rims", "fg": 778, "rotates": false, "multitile": false }, + { "id": "handflare", "fg": 919, "rotates": false, "multitile": false }, + { "id": "handflare_dead", "fg": 928, "rotates": false, "multitile": false }, + { "id": "handflare_lit", "fg": 920, "rotates": false, "multitile": false }, + { "id": "hard_plate", "fg": 482, "rotates": false, "multitile": false }, + { "id": "hatchet", "fg": 693, "rotates": false, "multitile": false }, + { "id": "hb_beer", "fg": 922, "rotates": false, "multitile": false }, + { "id": "hd_steel_drum", "fg": 937, "rotates": false }, + { "id": "hdframe", "fg": 914, "rotates": false }, + { "id": "headlight_reinforced", "fg": 903, "rotates": false }, + { "id": "heatpack", "fg": 723, "rotates": false, "multitile": false }, + { "id": "heatpack_used", "fg": 724, "rotates": false, "multitile": false }, + { "id": "heavy_rail_rifle", "fg": 552, "rotates": false, "multitile": false }, + { "id": "helmet_chitin", "fg": 1171, "rotates": false, "multitile": false }, + { "id": "helmet_liner", "fg": 1168, "rotates": false, "multitile": false }, + { "id": "helmet_lobster", "fg": 1162, "rotates": false, "multitile": false }, + { "id": "helmet_motor", "fg": 1019, "rotates": false, "multitile": false }, + { "id": "helmet_nomad", "fg": 1168, "rotates": false, "multitile": false }, + { "id": "helmet_plate", "fg": 1172, "rotates": false, "multitile": false }, + { "id": "helmet_riot", "fg": 1169, "rotates": false, "multitile": false }, + { "id": "helmet_skid", "fg": 1165, "rotates": false, "multitile": false }, + { "id": "helsing", "fg": 552, "rotates": false, "multitile": false }, + { "id": "herbal_tea", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "hk_g36", "fg": 565, "rotates": false, "multitile": false }, + { "id": "hk_g3", "fg": 565, "rotates": false, "multitile": false }, + { "id": "hk_g80", "fg": 571, "rotates": false, "multitile": false }, + { "id": "hk_mp5", "fg": 534, "rotates": false, "multitile": false }, + { "id": "hk_mp7", "fg": 534, "rotates": false, "multitile": false }, + { "id": "hk_ump45", "fg": 534, "rotates": false, "multitile": false }, + { "id": "hockey_stick", "fg": 496, "rotates": false, "multitile": false }, + { "id": "hoe", "fg": 607, "rotates": false, "multitile": false }, + { "id": "holo_sight", "fg": 905, "rotates": false, "multitile": false }, + { "id": "holster", "fg": 1182, "rotates": false, "multitile": false }, + { "id": "holy_symbol", "fg": 1187, "rotates": false, "multitile": false }, + { "id": "homewrecker", "fg": 452, "rotates": false, "multitile": false }, + { "id": "honey_glassed", "fg": 436, "rotates": false, "multitile": false }, + { "id": "honey_gold", "fg": 1402, "rotates": false, "multitile": false }, + { "id": "honey_scraper", "fg": 689, "rotates": false, "multitile": false }, + { "id": "hood_fsurvivor", "fg": 1170, "rotates": false, "multitile": false }, + { "id": "hood_h20survivor", "fg": 1170, "rotates": false, "multitile": false }, + { "id": "hood_lsurvivor", "fg": 1212, "rotates": false, "multitile": false }, + { "id": "hood_survivor", "fg": 1214, "rotates": false, "multitile": false }, + { "id": "hood_xlsurvivor", "fg": 1214, "rotates": false, "multitile": false }, + { "id": "horn_bicycle", "fg": 859, "rotates": false }, + { "id": "horn_big", "fg": 859, "rotates": false }, + { "id": "horn_car", "fg": 859, "rotates": false }, + { "id": "hose", "fg": 610, "rotates": false, "multitile": false }, + { "id": "hotplate", "fg": 594, "rotates": false, "multitile": false }, + { "id": "house_coat", "fg": 1197, "rotates": false, "multitile": false }, + { "id": "hsurvivor_suit", "fg": 1225, "rotates": false, "multitile": false }, + { "id": "huge_crossbow", "fg": 880, "rotates": false, "multitile": false }, + { "id": "hygrometer", "fg": 836, "rotates": false, "multitile": false }, + { "id": "i4_combustion", "fg": 857, "rotates": false, "multitile": false }, + { "id": "i6_diesel", "fg": 857, "rotates": false, "multitile": false }, + { "id": "i_staff", "fg": 468, "rotates": false, "multitile": false }, + { "id": "id_military", "fg": 389, "rotates": false, "multitile": false }, + { "id": "id_science", "fg": 388, "rotates": false, "multitile": false }, + { "id": "imperial_stout", "fg": 922, "rotates": false, "multitile": false }, + { "id": "improve_sights", "fg": 905, "rotates": false, "multitile": false }, + { "id": "incendiary", "fg": 895, "rotates": false, "multitile": false }, + { "id": "incendiary_hm_rocket", "fg": 813, "rotates": false, "multitile": false }, + { "id": "india_pale_ale", "fg": 922, "rotates": false, "multitile": false }, + { "id": "irish_coffee", "fg": 922, "rotates": false, "multitile": false }, + { "id": "iv_mutagen", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_alpha", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_beast", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_bird", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_cattle", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_cephalopod", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_chimera", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_elfa", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_feline", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_fish", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_insect", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_lizard", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_lupine", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_medical", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_plant", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_raptor", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_rat", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_slime", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_spider", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_troglobite", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_mutagen_ursine", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "iv_purifier", "fg": 1421, "rotates": false, "multitile": false }, + { "id": "jack", "fg": 522, "rotates": false, "multitile": false }, + { "id": "jacket_chef", "fg": 1119, "rotates": false, "multitile": false }, + { "id": "jackhammer", "fg": 613, "rotates": false, "multitile": false }, + { "id": "jar_3l_glass_sealed", "fg": 381, "rotates": false, "multitile": false }, + { "id": "jar_glass_sealed", "fg": 380, "rotates": false, "multitile": false }, + { "id": "javelin", "fg": 467, "rotates": false, "multitile": false }, + { "id": "javelin_iron", "fg": 682, "rotates": false, "multitile": false }, + { "id": "jerrycan", "fg": 375, "rotates": false, "multitile": false }, + { "id": "jerrycan_big", "fg": 379, "rotates": false, "multitile": false }, + { "id": "judo_belt_blue", "fg": 1026, "rotates": false, "multitile": false }, + { "id": "judo_belt_brown", "fg": 1027, "rotates": false, "multitile": false }, + { "id": "judo_belt_green", "fg": 1025, "rotates": false, "multitile": false }, + { "id": "judo_belt_orange", "fg": 1024, "rotates": false, "multitile": false }, + { "id": "judo_belt_white", "fg": 1022, "rotates": false, "multitile": false }, + { "id": "judo_belt_yellow", "fg": 1023, "rotates": false, "multitile": false }, + { "id": "jug_clay", "fg": 824, "rotates": false, "multitile": false }, + { "id": "jug_plastic", "fg": 376, "rotates": false, "multitile": false }, + { "id": "juice", "fg": 923, "rotates": false, "multitile": false }, + { "id": "junk_burrito", "fg": 371, "rotates": false, "multitile": false }, + { "id": "katana", "fg": 677, "rotates": false, "multitile": false }, + { "id": "katana_fake", "fg": 677, "rotates": false, "multitile": false }, + { "id": "keg", "fg": 937, "rotates": false, "multitile": false }, + { "id": "kevlar_harness", "fg": 553, "rotates": false, "multitile": false }, + { "id": "kiln_done", "fg": 773, "rotates": false, "multitile": false }, + { "id": "kiln_full", "fg": 771, "rotates": false, "multitile": false }, + { "id": "kiln_lit", "fg": 772, "rotates": false, "multitile": false }, + { "id": "kitchen_unit", "fg": 848, "rotates": false, "multitile": false }, + { "id": "knife_butcher", "fg": 689, "rotates": false, "multitile": false }, + { "id": "knife_butter", "fg": 400, "rotates": false, "multitile": false }, + { "id": "knife_combat", "fg": 689, "rotates": false, "multitile": false }, + { "id": "knife_hunting", "fg": 689, "rotates": false, "multitile": false }, + { "id": "knife_rambo", "fg": 689, "rotates": false, "multitile": false }, + { "id": "knife_rm42", "fg": 689, "rotates": false, "multitile": false }, + { "id": "knife_steak", "fg": 689, "rotates": false, "multitile": false }, + { "id": "knife_swissarmy", "fg": 783, "rotates": false, "multitile": false }, + { "id": "knife_trench", "fg": 689, "rotates": false, "multitile": false }, + { "id": "knitting_needles", "fg": 973, "rotates": false, "multitile": false }, + { "id": "knuckle_brass", "fg": 418, "rotates": false, "multitile": false }, + { "id": "knuckle_katar", "fg": 497, "rotates": false, "multitile": false }, + { "id": "knuckle_nail", "fg": 497, "rotates": false, "multitile": false }, + { "id": "knuckle_steel", "fg": 494, "rotates": false, "multitile": false }, + { "id": "kompot", "fg": 921, "rotates": false, "multitile": false }, + { "id": "kris", "fg": 689, "rotates": false, "multitile": false }, + { "id": "kris_fake", "fg": 689, "rotates": false, "multitile": false }, + { "id": "kukri", "fg": 677, "rotates": false, "multitile": false }, + { "id": "l_bak_223", "fg": 536, "rotates": false, "multitile": false }, + { "id": "lajatang", "fg": 488, "rotates": false, "multitile": false }, + { "id": "lamp_oil", "fg": 1402, "rotates": false, "multitile": false }, + { "id": "landmine", "fg": 622, "rotates": false, "multitile": false }, + { "id": "laptop", "fg": 425, "rotates": false, "multitile": false }, + { "id": "large_repairkit", "fg": 929, "rotates": false, "multitile": false }, + { "id": "large_tent_kit", "fg": 254, "rotates": false, "multitile": false }, + { "id": "largebroketent", "fg": 419, "rotates": false, "multitile": false }, + { "id": "laser_cannon", "fg": 572, "rotates": false, "multitile": false }, + { "id": "laser_pack", "fg": 894, "rotates": false, "multitile": false }, + { "id": "laser_rifle", "fg": 571, "rotates": false, "multitile": false }, + { "id": "laser_sight", "fg": 905, "rotates": false, "multitile": false }, + { "id": "launcher_simple", "fg": 575, "rotates": false, "multitile": false }, + { "id": "lawn_dart", "fg": 882, "rotates": false, "multitile": false }, + { "id": "lawnmower", "fg": 417, "rotates": false, "multitile": false }, + { "id": "lead", "fg": 891, "rotates": false, "multitile": false }, + { "id": "leather_cat_tail", "fg": 541, "rotates": false }, + { "id": "leather_funnel", "fg": 807, "rotates": false, "multitile": false }, + { "id": "lemonlime", "fg": 924, "rotates": false, "multitile": false }, + { "id": "lens", "fg": 393, "rotates": false, "multitile": false }, + { "id": "lgpistol_primer", "fg": 896, "rotates": false, "multitile": false }, + { "id": "lgrifle_primer", "fg": 896, "rotates": false, "multitile": false }, + { "id": "light_atomic_battery_cell", "fg": 960, "rotates": false, "multitile": false }, + { "id": "light_emergency_blue", "fg": 856, "rotates": false }, + { "id": "light_emergency_red", "fg": 855, "rotates": false }, + { "id": "lighter", "fg": 851, "rotates": true }, + { "id": "lightstrip", "fg": 590, "rotates": false, "multitile": false }, + { "id": "lightstrip_inactive", "fg": 961, "rotates": false, "multitile": false }, + { "id": "lobotomizer", "fg": 837, "rotates": false, "multitile": false }, + { "id": "log", "fg": 413, "rotates": false, "multitile": false }, + { "id": "long_island", "fg": 922, "rotates": false, "multitile": false }, + { "id": "longbow", "fg": 879, "rotates": false, "multitile": false }, { "id": [ "longsword", "longsword_fake", "longsword_inferior", "arming_sword", "arming_sword_fake", "arming_sword_inferior" ], - "fg": 945, + "fg": 946, "rotates": false }, - { "id": "lye_powder", "fg": 372, "rotates": false, "multitile": false }, - { "id": "m1014", "fg": 543, "rotates": false, "multitile": false }, - { "id": "m107a1", "fg": 564, "rotates": false, "multitile": false }, - { "id": "m14ebr", "fg": 532, "rotates": false, "multitile": false }, - { "id": "m1911", "fg": 535, "rotates": false, "multitile": false }, - { "id": "m2010", "fg": 532, "rotates": false, "multitile": false }, - { "id": "m202_flash", "fg": 577, "rotates": false, "multitile": false }, - { "id": "m203", "fg": 904, "rotates": false, "multitile": false }, - { "id": "m235tpa", "fg": 974, "rotates": false, "multitile": false }, - { "id": "m249", "fg": 568, "rotates": false, "multitile": false }, - { "id": "m27iar", "fg": 564, "rotates": false, "multitile": false }, - { "id": "m2browning", "fg": 543, "rotates": false, "multitile": false }, - { "id": "m2browning_sawn", "fg": 543, "rotates": false, "multitile": false }, - { "id": "m320", "fg": 574, "rotates": false, "multitile": false }, - { "id": "m320_mod", "fg": 904, "rotates": false, "multitile": false }, - { "id": "m3_carlgustav", "fg": 577, "rotates": false, "multitile": false }, - { "id": "m4a1", "fg": 564, "rotates": false, "multitile": false }, - { "id": "m79", "fg": 575, "rotates": false, "multitile": false }, - { "id": "m9", "fg": 535, "rotates": false, "multitile": false }, - { "id": "m_fishspear", "fg": 679, "rotates": false, "multitile": false }, - { "id": "mac_10", "fg": 533, "rotates": false, "multitile": false }, - { "id": "mace", "fg": 462, "rotates": false, "multitile": false }, - { "id": "machete", "fg": 673, "rotates": false, "multitile": false }, - { "id": "magazine_battery_heavy_mod", "fg": 956, "rotates": false, "multitile": false }, - { "id": "magnifying_glass", "fg": 807, "rotates": false, "multitile": false }, - { "id": "makeshift_crowbar", "fg": 605, "rotates": false, "multitile": false }, - { "id": "makeshift_funnel", "fg": 700, "rotates": false, "multitile": false }, - { "id": "makeshift_halberd", "fg": 687, "rotates": false, "multitile": false }, - { "id": "makeshift_knife", "fg": 688, "rotates": false, "multitile": false }, - { "id": "makeshift_machete", "fg": 686, "rotates": false, "multitile": false }, - { "id": "manhole_cover", "fg": 1761, "rotates": false, "multitile": false }, - { "id": "mannwurst", "fg": 1347, "rotates": false, "multitile": false }, - { "id": "marble", "fg": 887, "rotates": false, "multitile": false }, - { "id": "mark19", "fg": 543, "rotates": false, "multitile": false }, - { "id": "marlin_9a", "fg": 526, "rotates": false, "multitile": false }, - { "id": "masterkey", "fg": 904, "rotates": false, "multitile": false }, - { "id": "match_trigger", "fg": 904, "rotates": false, "multitile": false }, - { "id": "matchbomb", "fg": 561, "rotates": false, "multitile": false }, - { "id": "matchbomb_act", "fg": 562, "rotates": false, "multitile": false }, - { "id": "matches", "fg": 849, "rotates": true }, - { "id": "material_cement", "fg": 894, "rotates": false, "multitile": false }, - { "id": "material_limestone", "fg": 890, "rotates": false, "multitile": false }, - { "id": "material_shrd_limestone", "fg": 785, "rotates": false, "multitile": false }, - { "id": "mead", "fg": 1392, "rotates": false, "multitile": false }, - { "id": "meat_pickled", "fg": 1315, "rotates": false, "multitile": false }, - { "id": "medical_gauze", "fg": 732, "rotates": false, "multitile": false }, - { "id": "medical_tape", "fg": 885, "rotates": false, "multitile": false }, - { "id": "mess_kit", "fg": 783, "rotates": false, "multitile": false }, - { "id": "metal_smoother", "fg": 408, "rotates": false, "multitile": false }, - { "id": "metal_tank", "fg": 471, "rotates": false, "multitile": false }, - { "id": "metal_tank_little", "fg": 471, "rotates": false, "multitile": false }, - { "id": "mgl", "fg": 568, "rotates": false, "multitile": false }, - { "id": "microwave", "fg": 423, "rotates": false, "multitile": false }, - { "id": "mil_mess_kit", "fg": 783, "rotates": false, "multitile": false }, - { "id": "mil_plate", "fg": 479, "rotates": false, "multitile": false }, - { "id": "militarymap", "fg": 604, "rotates": false, "multitile": false }, - { "id": "milk", "fg": 1412, "rotates": false, "multitile": false }, - { "id": "minifridge", "fg": 848, "rotates": false }, - { "id": "mininuke", "fg": 649, "rotates": false, "multitile": false }, - { "id": "mininuke_act", "fg": 650, "rotates": false, "multitile": false }, - { "id": "mininuke_launcher", "fg": 577, "rotates": false, "multitile": false }, - { "id": "mininuke_mod", "fg": 649, "rotates": false, "multitile": false }, - { "id": "minireactor", "fg": 472, "rotates": false, "multitile": false }, - { "id": "minispeargun", "fg": 531, "rotates": false, "multitile": false }, - { "id": "misc_repairkit", "fg": 928, "rotates": false, "multitile": false }, - { "id": "mjolnir", "fg": 463, "rotates": false, "multitile": false }, - { "id": "mobile_memory_card", "fg": 786, "rotates": false, "multitile": false }, - { "id": "mobile_memory_card_encrypted", "fg": 786, "rotates": false, "multitile": false }, - { "id": "mobile_memory_card_science", "fg": 786, "rotates": false, "multitile": false }, - { "id": "mobile_memory_card_used", "fg": 786, "rotates": false, "multitile": false }, - { "id": "molasses", "fg": 921, "rotates": false, "multitile": false }, - { "id": "mold_plastic", "fg": 738, "rotates": false, "multitile": false }, - { "id": "molotov", "fg": 641, "rotates": false, "multitile": false }, - { "id": "molotov_lit", "fg": 642, "rotates": false, "multitile": false }, - { "id": "money_bundle", "fg": 515, "rotates": false }, - { "id": "moonshine", "fg": 921, "rotates": false, "multitile": false }, - { "id": "mop", "fg": 706, "rotates": false, "multitile": false }, - { "id": "morningstar", "fg": 463, "rotates": false, "multitile": false }, - { "id": "mortar_build", "fg": 959, "rotates": false, "multitile": false }, - { "id": "mosin44", "fg": 526, "rotates": false, "multitile": false }, - { "id": "mosin91_30", "fg": 526, "rotates": false, "multitile": false }, - { "id": "moss_brownie", "fg": 534, "rotates": false, "multitile": false }, - { "id": "mossberg_500", "fg": 543, "rotates": false, "multitile": false }, - { "id": "motor", "fg": 468, "rotates": false, "multitile": false }, - { "id": "motor_large", "fg": 468, "rotates": false, "multitile": false }, - { "id": "motor_small", "fg": 468, "rotates": false, "multitile": false }, - { "id": "mp3", "fg": 656, "rotates": false, "multitile": false }, - { "id": "mp3_on", "fg": 657, "rotates": false, "multitile": false }, - { "id": "muffler", "fg": 453, "rotates": false, "multitile": false }, - { "id": "multi_cooker", "fg": 1446, "rotates": false, "multitile": false }, - { "id": "multitool", "fg": 782, "rotates": false, "multitile": false }, - { "id": "mutagen", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_alpha", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_beast", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_bird", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_cattle", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_cephalopod", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_chimera", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_elfa", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_feline", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_fish", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_insect", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_lizard", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_lupine", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_medical", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_plant", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_raptor", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_rat", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_slime", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_spider", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_troglobite", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "mutagen_ursine", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "muzzle_brake", "fg": 904, "rotates": false, "multitile": false }, - { "id": "nail", "fg": 874, "rotates": false, "multitile": false }, - { "id": "nailbat", "fg": 451, "rotates": false, "multitile": false }, - { "id": "nailboard", "fg": 450, "rotates": false, "multitile": false }, - { "id": "nailgun", "fg": 524, "rotates": false, "multitile": false }, - { "id": "nailrifle", "fg": 525, "rotates": false, "multitile": false }, - { "id": "napalm", "fg": 926, "rotates": false, "multitile": false }, + { "id": "lye_powder", "fg": 373, "rotates": false, "multitile": false }, + { "id": "m1014", "fg": 544, "rotates": false, "multitile": false }, + { "id": "m107a1", "fg": 565, "rotates": false, "multitile": false }, + { "id": "m14ebr", "fg": 533, "rotates": false, "multitile": false }, + { "id": "m1911", "fg": 536, "rotates": false, "multitile": false }, + { "id": "m2010", "fg": 533, "rotates": false, "multitile": false }, + { "id": "m202_flash", "fg": 578, "rotates": false, "multitile": false }, + { "id": "m203", "fg": 905, "rotates": false, "multitile": false }, + { "id": "m235tpa", "fg": 984, "rotates": false, "multitile": false }, + { "id": "m249", "fg": 569, "rotates": false, "multitile": false }, + { "id": "m27iar", "fg": 565, "rotates": false, "multitile": false }, + { "id": "m2browning", "fg": 544, "rotates": false, "multitile": false }, + { "id": "m2browning_sawn", "fg": 544, "rotates": false, "multitile": false }, + { "id": "m320", "fg": 575, "rotates": false, "multitile": false }, + { "id": "m320_mod", "fg": 905, "rotates": false, "multitile": false }, + { "id": "m3_carlgustav", "fg": 578, "rotates": false, "multitile": false }, + { "id": "m4a1", "fg": 565, "rotates": false, "multitile": false }, + { "id": "m79", "fg": 576, "rotates": false, "multitile": false }, + { "id": "m9", "fg": 536, "rotates": false, "multitile": false }, + { "id": "m_fishspear", "fg": 680, "rotates": false, "multitile": false }, + { "id": "mac_10", "fg": 534, "rotates": false, "multitile": false }, + { "id": "mace", "fg": 463, "rotates": false, "multitile": false }, + { "id": "machete", "fg": 674, "rotates": false, "multitile": false }, + { "id": "magazine_battery_heavy_mod", "fg": 963, "rotates": false, "multitile": false }, + { "id": "magnifying_glass", "fg": 808, "rotates": false, "multitile": false }, + { "id": "makeshift_crowbar", "fg": 606, "rotates": false, "multitile": false }, + { "id": "makeshift_funnel", "fg": 701, "rotates": false, "multitile": false }, + { "id": "makeshift_halberd", "fg": 688, "rotates": false, "multitile": false }, + { "id": "makeshift_knife", "fg": 689, "rotates": false, "multitile": false }, + { "id": "makeshift_machete", "fg": 687, "rotates": false, "multitile": false }, + { "id": "manhole_cover", "fg": 1771, "rotates": false, "multitile": false }, + { "id": "mannwurst", "fg": 1357, "rotates": false, "multitile": false }, + { "id": "marble", "fg": 888, "rotates": false, "multitile": false }, + { "id": "mark19", "fg": 544, "rotates": false, "multitile": false }, + { "id": "marlin_9a", "fg": 527, "rotates": false, "multitile": false }, + { "id": "masterkey", "fg": 905, "rotates": false, "multitile": false }, + { "id": "match_trigger", "fg": 905, "rotates": false, "multitile": false }, + { "id": "matchbomb", "fg": 562, "rotates": false, "multitile": false }, + { "id": "matchbomb_act", "fg": 563, "rotates": false, "multitile": false }, + { "id": "matches", "fg": 850, "rotates": true }, + { "id": "material_cement", "fg": 895, "rotates": false, "multitile": false }, + { "id": "material_limestone", "fg": 891, "rotates": false, "multitile": false }, + { "id": "material_shrd_limestone", "fg": 786, "rotates": false, "multitile": false }, + { "id": "mead", "fg": 1402, "rotates": false, "multitile": false }, + { "id": "meat_pickled", "fg": 1325, "rotates": false, "multitile": false }, + { "id": "medical_gauze", "fg": 733, "rotates": false, "multitile": false }, + { "id": "medical_tape", "fg": 886, "rotates": false, "multitile": false }, + { "id": "mess_kit", "fg": 784, "rotates": false, "multitile": false }, + { "id": "metal_smoother", "fg": 409, "rotates": false, "multitile": false }, + { "id": "metal_tank", "fg": 472, "rotates": false, "multitile": false }, + { "id": "metal_tank_little", "fg": 472, "rotates": false, "multitile": false }, + { "id": "mgl", "fg": 569, "rotates": false, "multitile": false }, + { "id": "microwave", "fg": 424, "rotates": false, "multitile": false }, + { "id": "mil_mess_kit", "fg": 784, "rotates": false, "multitile": false }, + { "id": "mil_plate", "fg": 480, "rotates": false, "multitile": false }, + { "id": "militarymap", "fg": 605, "rotates": false, "multitile": false }, + { "id": "milk", "fg": 1422, "rotates": false, "multitile": false }, + { "id": "minifridge", "fg": 849, "rotates": false }, + { "id": "mininuke", "fg": 650, "rotates": false, "multitile": false }, + { "id": "mininuke_act", "fg": 651, "rotates": false, "multitile": false }, + { "id": "mininuke_launcher", "fg": 578, "rotates": false, "multitile": false }, + { "id": "mininuke_mod", "fg": 650, "rotates": false, "multitile": false }, + { "id": "minireactor", "fg": 473, "rotates": false, "multitile": false }, + { "id": "minispeargun", "fg": 532, "rotates": false, "multitile": false }, + { "id": "misc_repairkit", "fg": 929, "rotates": false, "multitile": false }, + { "id": "mjolnir", "fg": 464, "rotates": false, "multitile": false }, + { "id": "mobile_memory_card", "fg": 787, "rotates": false, "multitile": false }, + { "id": "mobile_memory_card_encrypted", "fg": 787, "rotates": false, "multitile": false }, + { "id": "mobile_memory_card_science", "fg": 787, "rotates": false, "multitile": false }, + { "id": "mobile_memory_card_used", "fg": 787, "rotates": false, "multitile": false }, + { "id": "molasses", "fg": 922, "rotates": false, "multitile": false }, + { "id": "mold_plastic", "fg": 739, "rotates": false, "multitile": false }, + { "id": "molotov", "fg": 642, "rotates": false, "multitile": false }, + { "id": "molotov_lit", "fg": 643, "rotates": false, "multitile": false }, + { "id": "money_bundle", "fg": 516, "rotates": false }, + { "id": "moonshine", "fg": 922, "rotates": false, "multitile": false }, + { "id": "mop", "fg": 707, "rotates": false, "multitile": false }, + { "id": "morningstar", "fg": 464, "rotates": false, "multitile": false }, + { "id": "mortar_build", "fg": 966, "rotates": false, "multitile": false }, + { "id": "mosin44", "fg": 527, "rotates": false, "multitile": false }, + { "id": "mosin91_30", "fg": 527, "rotates": false, "multitile": false }, + { "id": "moss_brownie", "fg": 535, "rotates": false, "multitile": false }, + { "id": "mossberg_500", "fg": 544, "rotates": false, "multitile": false }, + { "id": "motor", "fg": 469, "rotates": false, "multitile": false }, + { "id": "motor_large", "fg": 469, "rotates": false, "multitile": false }, + { "id": "motor_small", "fg": 469, "rotates": false, "multitile": false }, + { "id": "mp3", "fg": 657, "rotates": false, "multitile": false }, + { "id": "mp3_on", "fg": 658, "rotates": false, "multitile": false }, + { "id": "muffler", "fg": 454, "rotates": false, "multitile": false }, + { "id": "multi_cooker", "fg": 1456, "rotates": false, "multitile": false }, + { "id": "multitool", "fg": 783, "rotates": false, "multitile": false }, + { "id": "mutagen", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_alpha", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_beast", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_bird", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_cattle", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_cephalopod", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_chimera", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_elfa", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_feline", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_fish", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_insect", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_lizard", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_lupine", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_medical", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_plant", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_raptor", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_rat", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_slime", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_spider", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_troglobite", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "mutagen_ursine", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "muzzle_brake", "fg": 905, "rotates": false, "multitile": false }, + { "id": "nail", "fg": 875, "rotates": false, "multitile": false }, + { "id": "nailbat", "fg": 452, "rotates": false, "multitile": false }, + { "id": "nailboard", "fg": 451, "rotates": false, "multitile": false }, + { "id": "nailgun", "fg": 525, "rotates": false, "multitile": false }, + { "id": "nailrifle", "fg": 526, "rotates": false, "multitile": false }, + { "id": "napalm", "fg": 927, "rotates": false, "multitile": false }, { "id": [ "platinum_necklace", "gold_necklace", "silver_necklace", "copper_necklace" ], - "fg": 907, + "fg": 908, "rotates": false, "multitile": false }, - { "id": "needle_bone", "fg": 716, "rotates": false, "multitile": false }, - { "id": "needle_wood", "fg": 558, "rotates": false, "multitile": false }, - { "id": "needlegun", "fg": 533, "rotates": false, "multitile": false }, - { "id": "needlepistol", "fg": 535, "rotates": false, "multitile": false }, - { "id": "nic_gum", "fg": 1274, "rotates": false, "multitile": false }, - { "id": "nicotine_liquid", "fg": 712, "rotates": false, "multitile": false }, - { "id": "nodachi", "fg": 676, "rotates": false, "multitile": false }, - { "id": "nodachi_fake", "fg": 676, "rotates": false, "multitile": false }, - { "id": "noise_emitter", "fg": 602, "rotates": false, "multitile": false }, - { "id": "noise_emitter_on", "fg": 603, "rotates": false, "multitile": false }, - { "id": "nomex", "fg": 494, "rotates": false }, - { "id": "oil_lamp", "fg": 916, "rotates": false, "multitile": false }, - { "id": "oil_lamp_on", "fg": 917, "rotates": false, "multitile": false }, - { "id": "oj", "fg": 922, "rotates": false, "multitile": false }, - { "id": "orangesoda", "fg": 922, "rotates": false, "multitile": false }, - { "id": "oxy_powder", "fg": 894, "rotates": false, "multitile": false }, - { "id": "oxy_torch", "fg": 667, "rotates": false, "multitile": false }, - { "id": "p_carpet", "fg": 758, "rotates": false }, - { "id": "p_paint", "fg": 411, "rotates": false, "multitile": false }, - { "id": "paint_brush", "fg": 462, "rotates": false, "multitile": false }, - { "id": "pale_ale", "fg": 921, "rotates": false, "multitile": false }, - { "id": "pan", "fg": 398, "rotates": false, "multitile": false }, - { "id": "panties", "fg": 1236, "rotates": false, "multitile": false }, - { "id": "paper", "fg": 883, "rotates": false, "multitile": false }, - { "id": "pastaextruder", "fg": 548, "rotates": false, "multitile": false }, - { "id": "pearl_collar", "fg": 999, "rotates": false, "multitile": false }, - { "id": "pebble", "fg": 887, "rotates": false, "multitile": false }, - { "id": "peephole", "fg": 795, "rotates": false, "multitile": false }, - { "id": "pepper", "fg": 894, "rotates": false, "multitile": false }, - { "id": "permanent_marker", "fg": 711, "rotates": false, "multitile": false }, - { "id": "petrified_eye", "fg": 402, "rotates": false, "multitile": false }, - { "id": "pheromone", "fg": 651, "rotates": false, "multitile": false }, - { "id": "pickaxe", "fg": 709, "rotates": false, "multitile": false }, - { "id": "pickelhaube", "fg": 1152, "rotates": false, "multitile": false }, - { "id": "picklocks", "fg": 707, "rotates": false, "multitile": false }, - { "id": "pike", "fg": 681, "rotates": false, "multitile": false }, - { "id": "pillow", "fg": 784, "rotates": false, "multitile": false }, - { "id": "pilot_light", "fg": 421, "rotates": false, "multitile": false }, - { "id": "pine_tea", "fg": 1410, "rotates": false, "multitile": false }, - { "id": "pine_wine", "fg": 1322, "rotates": false, "multitile": false }, - { "id": "pinecone", "fg": 779, "rotates": false }, - { "id": "pipe", "fg": 485, "rotates": false }, - { "id": "pipe_double_shotgun", "fg": 541, "rotates": false, "multitile": false }, - { "id": "pipe_glass", "fg": 741, "rotates": false, "multitile": false }, - { "id": "pipe_launcher40mm", "fg": 904, "rotates": false, "multitile": false }, - { "id": "pipe_shotgun", "fg": 1746, "rotates": false, "multitile": false }, - { "id": "pipe_tobacco", "fg": 742, "rotates": false, "multitile": false }, - { "id": "pipebomb", "fg": 626, "rotates": false, "multitile": false }, - { "id": "pipebomb_act", "fg": 627, "rotates": false, "multitile": false }, - { "id": "pistol_bayonet", "fg": 904, "rotates": false, "multitile": false }, - { "id": "pistol_flintlock", "fg": 534, "rotates": false, "multitile": false }, - { "id": "pistol_grip", "fg": 904, "rotates": false, "multitile": false }, - { "id": "pistol_scope", "fg": 904, "rotates": false, "multitile": false }, - { "id": "pistol_stock", "fg": 904, "rotates": false, "multitile": false }, - { "id": "pitchfork", "fg": 830, "rotates": false, "multitile": false }, - { "id": "plant_fibre", "fg": 871, "rotates": false, "multitile": false }, - { "id": "plasma", "fg": 877, "rotates": false, "multitile": false }, - { "id": "plasma_rifle", "fg": 570, "rotates": false, "multitile": false }, - { "id": "plastic_chunk", "fg": 713, "rotates": false, "multitile": false }, - { "id": "plut_cell", "fg": 873, "rotates": false, "multitile": false }, - { "id": "pocketwatch", "fg": 490, "rotates": false, "multitile": false }, - { "id": "pockknife", "fg": 715, "rotates": false, "multitile": false }, - { "id": "pointy_stick", "fg": 964, "rotates": false, "multitile": false }, - { "id": "pool_ball", "fg": 406, "rotates": false, "multitile": false }, - { "id": "pool_cue", "fg": 964, "rotates": false, "multitile": false }, - { "id": "poppy_bud", "fg": 486, "rotates": false, "multitile": false }, - { "id": "poppy_flower", "fg": 484, "rotates": false, "multitile": false }, - { "id": "poppysyrup", "fg": 1411, "rotates": false, "multitile": false }, - { "id": "porkpie", "fg": 1164, "rotates": false, "multitile": false }, - { "id": "portable_game", "fg": 658, "rotates": false, "multitile": false }, - { "id": "portal", "fg": 652, "rotates": false, "multitile": false }, - { "id": "pot", "fg": 439, "rotates": false, "multitile": false }, - { "id": "power_supply", "fg": 939, "rotates": false, "multitile": false }, - { "id": "ppsh", "fg": 545, "rotates": false, "multitile": false }, - { "id": "ppshdrum", "fg": 844, "rotates": false }, - { "id": [ "ppshmag", "tokarevmag" ], "fg": 845, "rotates": false }, - { "id": "press", "fg": 702, "rotates": false, "multitile": false }, - { "id": "primitive_axe", "fg": 718, "rotates": false, "multitile": false }, - { "id": "primitive_hammer", "fg": 717, "rotates": false, "multitile": false }, - { "id": "primitive_knife", "fg": 688, "rotates": false, "multitile": false }, - { "id": "primitive_shovel", "fg": 719, "rotates": false, "multitile": false }, - { "id": "processor", "fg": 938, "rotates": false, "multitile": false }, - { "id": "protein_shake", "fg": 1392, "rotates": false, "multitile": false }, - { "id": "puck", "fg": 932, "rotates": false, "multitile": false }, - { "id": "puller", "fg": 701, "rotates": false, "multitile": false }, - { "id": "punch_dagger", "fg": 499, "rotates": false, "multitile": false }, - { "id": "purifier", "fg": 926, "rotates": false, "multitile": false }, - { "id": "purple_drink", "fg": 1405, "rotates": false }, - { "id": "q_staff", "fg": 446, "rotates": false, "multitile": false }, - { "id": "r_carpet", "fg": 755, "rotates": false }, - { "id": "r_paint", "fg": 961, "rotates": false, "multitile": false }, - { "id": "rad_monitor", "fg": 1000, "rotates": false, "multitile": false }, - { "id": "radio", "fg": 597, "rotates": false, "multitile": false }, - { "id": "radio_car", "fg": 790, "rotates": false, "multitile": false }, - { "id": "radio_car_box", "fg": 586, "rotates": false, "multitile": false }, - { "id": "radio_car_on", "fg": 791, "rotates": false, "multitile": false }, - { "id": "radio_on", "fg": 598, "rotates": false, "multitile": false }, - { "id": "radiocontrol", "fg": 792, "rotates": false, "multitile": false }, - { "id": "rag", "fg": 494, "rotates": false }, - { "id": "rag_bloody", "fg": 436, "rotates": false, "multitile": false }, - { "id": "raging_bull", "fg": 535, "rotates": false, "multitile": false }, - { "id": "ragpouch", "fg": 1175, "rotates": false, "multitile": false }, - { "id": "rail_laser_sight", "fg": 904, "rotates": false, "multitile": false }, - { "id": "rapier", "fg": 680, "rotates": false, "multitile": false }, - { "id": "rapier_fake", "fg": 680, "rotates": false, "multitile": false }, - { "id": "raw_fur", "fg": 798, "rotates": false, "multitile": false }, - { "id": "raw_leather", "fg": 799, "rotates": false, "multitile": false }, - { "id": "razor_blade", "fg": 554, "rotates": false, "multitile": false }, - { "id": "rebar", "fg": 483, "rotates": false, "multitile": false }, - { "id": "rebar_rail", "fg": 892, "rotates": false, "multitile": false }, - { "id": "rebar_rifle", "fg": 541, "rotates": false, "multitile": false }, - { "id": "rebreather", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "rebreather_filter", "fg": 877, "rotates": false, "multitile": false }, - { "id": "rebreather_on", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "rebreather_xl", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "rebreather_xl_on", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "receiver", "fg": 938, "rotates": false, "multitile": false }, - { "id": "recharge_station", "fg": 903, "rotates": false }, - { "id": "recoil_stock", "fg": 904, "rotates": false, "multitile": false }, - { "id": "recurbow", "fg": 878, "rotates": false, "multitile": false }, - { "id": "red_dot_sight", "fg": 904, "rotates": false, "multitile": false }, - { "id": "ref_lighter", "fg": 751, "rotates": false, "multitile": false }, - { "id": "ref_lighter_on", "fg": 776, "rotates": false, "multitile": false }, - { "id": "reflexbow", "fg": 878, "rotates": false, "multitile": false }, - { "id": "reflexrecurvebow", "fg": 878, "rotates": false, "multitile": false }, - { "id": "reinforced_glass_pane", "fg": 397, "rotates": false, "multitile": false }, - { "id": "reinforced_glass_sheet", "fg": 397, "rotates": false, "multitile": false }, - { "id": "reinforced_solar_panel", "fg": 860, "rotates": false, "multitile": false }, - { "id": "reinforced_solar_panel_v2", "fg": 860, "rotates": false }, - { "id": "reloaded_223", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_3006", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_3006_incendiary", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_300_winmag", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_308", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_32_acp", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_38_fmj", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_38_special", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_38_super", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_40fmj", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_40sw", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_44fmj", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_44magnum", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_454_Casull", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_45_acp", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_45_jhp", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_45_super", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_46mm", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_500_Magnum", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_50_incendiary", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_50bmg", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_50ss", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_556", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_556_incendiary", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_57mm", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_5x50dart", "fg": 809, "rotates": false, "multitile": false }, - { "id": "reloaded_700nx", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_762_51", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_762_51_incendiary", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_762_54R", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_762_m43", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_762_m87", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_9mmP2", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_9mmP", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_9mm", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_9mmfmj", "fg": 970, "rotates": false, "multitile": false }, - { "id": "reloaded_laser_pack", "fg": 893, "rotates": false, "multitile": false }, - { "id": "reloaded_shot_00", "fg": 969, "rotates": false, "multitile": false }, - { "id": "reloaded_shot_bird", "fg": 969, "rotates": false, "multitile": false }, - { "id": "reloaded_shot_flechette", "fg": 969, "rotates": false, "multitile": false }, - { "id": "reloaded_shot_slug", "fg": 969, "rotates": false, "multitile": false }, - { "id": "remington_700", "fg": 526, "rotates": false, "multitile": false }, - { "id": "remington_870", "fg": 543, "rotates": false, "multitile": false }, - { "id": "remotevehcontrol", "fg": 792, "rotates": false, "multitile": false }, - { "id": "rep_crossbow", "fg": 879, "rotates": false, "multitile": false }, - { "id": "restaurantmap", "fg": 604, "rotates": false, "multitile": false }, - { "id": "retool_223", "fg": 904, "rotates": false, "multitile": false }, - { "id": "retool_22", "fg": 904, "rotates": false, "multitile": false }, - { "id": "retool_308", "fg": 904, "rotates": false, "multitile": false }, - { "id": "retool_45", "fg": 904, "rotates": false, "multitile": false }, - { "id": "retool_46", "fg": 904, "rotates": false, "multitile": false }, - { "id": "retool_57", "fg": 904, "rotates": false, "multitile": false }, - { "id": "retool_9mm", "fg": 904, "rotates": false, "multitile": false }, - { "id": "revolver_shotgun", "fg": 1745, "rotates": false, "multitile": false }, - { "id": "rifle_22", "fg": 526, "rotates": false, "multitile": false }, - { "id": "rifle_308", "fg": 526, "rotates": false, "multitile": false }, - { "id": "rifle_9mm", "fg": 532, "rotates": false, "multitile": false }, - { "id": "rifle_flintlock", "fg": 526, "rotates": false, "multitile": false }, - { "id": "rifle_scope", "fg": 904, "rotates": false, "multitile": false }, + { "id": "needle_bone", "fg": 717, "rotates": false, "multitile": false }, + { "id": "needle_wood", "fg": 559, "rotates": false, "multitile": false }, + { "id": "needlegun", "fg": 534, "rotates": false, "multitile": false }, + { "id": "needlepistol", "fg": 536, "rotates": false, "multitile": false }, + { "id": "nic_gum", "fg": 1284, "rotates": false, "multitile": false }, + { "id": "nicotine_liquid", "fg": 713, "rotates": false, "multitile": false }, + { "id": "nodachi", "fg": 677, "rotates": false, "multitile": false }, + { "id": "nodachi_fake", "fg": 677, "rotates": false, "multitile": false }, + { "id": "noise_emitter", "fg": 603, "rotates": false, "multitile": false }, + { "id": "noise_emitter_on", "fg": 604, "rotates": false, "multitile": false }, + { "id": "nomex", "fg": 495, "rotates": false }, + { "id": "oil_lamp", "fg": 917, "rotates": false, "multitile": false }, + { "id": "oil_lamp_on", "fg": 918, "rotates": false, "multitile": false }, + { "id": "oj", "fg": 923, "rotates": false, "multitile": false }, + { "id": "orangesoda", "fg": 923, "rotates": false, "multitile": false }, + { "id": "oxy_powder", "fg": 895, "rotates": false, "multitile": false }, + { "id": "oxy_torch", "fg": 668, "rotates": false, "multitile": false }, + { "id": "p_carpet", "fg": 759, "rotates": false }, + { "id": "p_paint", "fg": 412, "rotates": false, "multitile": false }, + { "id": "paint_brush", "fg": 463, "rotates": false, "multitile": false }, + { "id": "pale_ale", "fg": 922, "rotates": false, "multitile": false }, + { "id": "pan", "fg": 399, "rotates": false, "multitile": false }, + { "id": "panties", "fg": 1246, "rotates": false, "multitile": false }, + { "id": "paper", "fg": 884, "rotates": false, "multitile": false }, + { "id": "pastaextruder", "fg": 549, "rotates": false, "multitile": false }, + { "id": "pearl_collar", "fg": 1009, "rotates": false, "multitile": false }, + { "id": "pebble", "fg": 888, "rotates": false, "multitile": false }, + { "id": "peephole", "fg": 796, "rotates": false, "multitile": false }, + { "id": "pepper", "fg": 895, "rotates": false, "multitile": false }, + { "id": "permanent_marker", "fg": 712, "rotates": false, "multitile": false }, + { "id": "petrified_eye", "fg": 403, "rotates": false, "multitile": false }, + { "id": "pheromone", "fg": 652, "rotates": false, "multitile": false }, + { "id": "pickaxe", "fg": 710, "rotates": false, "multitile": false }, + { "id": "pickelhaube", "fg": 1162, "rotates": false, "multitile": false }, + { "id": "picklocks", "fg": 708, "rotates": false, "multitile": false }, + { "id": "pike", "fg": 682, "rotates": false, "multitile": false }, + { "id": "pillow", "fg": 785, "rotates": false, "multitile": false }, + { "id": "pilot_light", "fg": 422, "rotates": false, "multitile": false }, + { "id": "pine_tea", "fg": 1420, "rotates": false, "multitile": false }, + { "id": "pine_wine", "fg": 1332, "rotates": false, "multitile": false }, + { "id": "pinecone", "fg": 780, "rotates": false }, + { "id": "pipe", "fg": 486, "rotates": false }, + { "id": "pipe_double_shotgun", "fg": 542, "rotates": false, "multitile": false }, + { "id": "pipe_glass", "fg": 742, "rotates": false, "multitile": false }, + { "id": "pipe_launcher40mm", "fg": 905, "rotates": false, "multitile": false }, + { "id": "pipe_shotgun", "fg": 1756, "rotates": false, "multitile": false }, + { "id": "pipe_tobacco", "fg": 743, "rotates": false, "multitile": false }, + { "id": "pipebomb", "fg": 627, "rotates": false, "multitile": false }, + { "id": "pipebomb_act", "fg": 628, "rotates": false, "multitile": false }, + { "id": "pistol_bayonet", "fg": 905, "rotates": false, "multitile": false }, + { "id": "pistol_flintlock", "fg": 535, "rotates": false, "multitile": false }, + { "id": "pistol_grip", "fg": 905, "rotates": false, "multitile": false }, + { "id": "pistol_scope", "fg": 905, "rotates": false, "multitile": false }, + { "id": "pistol_stock", "fg": 905, "rotates": false, "multitile": false }, + { "id": "pitchfork", "fg": 831, "rotates": false, "multitile": false }, + { "id": "plant_fibre", "fg": 872, "rotates": false, "multitile": false }, + { "id": "plasma", "fg": 878, "rotates": false, "multitile": false }, + { "id": "plasma_rifle", "fg": 571, "rotates": false, "multitile": false }, + { "id": "plastic_chunk", "fg": 714, "rotates": false, "multitile": false }, + { "id": "plut_cell", "fg": 874, "rotates": false, "multitile": false }, + { "id": "pocketwatch", "fg": 491, "rotates": false, "multitile": false }, + { "id": "pockknife", "fg": 716, "rotates": false, "multitile": false }, + { "id": "pointy_stick", "fg": 973, "rotates": false, "multitile": false }, + { "id": "pool_ball", "fg": 407, "rotates": false, "multitile": false }, + { "id": "pool_cue", "fg": 973, "rotates": false, "multitile": false }, + { "id": "poppy_bud", "fg": 487, "rotates": false, "multitile": false }, + { "id": "poppy_flower", "fg": 485, "rotates": false, "multitile": false }, + { "id": "poppysyrup", "fg": 1421, "rotates": false, "multitile": false }, + { "id": "porkpie", "fg": 1174, "rotates": false, "multitile": false }, + { "id": "portable_game", "fg": 659, "rotates": false, "multitile": false }, + { "id": "portal", "fg": 653, "rotates": false, "multitile": false }, + { "id": "pot", "fg": 440, "rotates": false, "multitile": false }, + { "id": "power_supply", "fg": 940, "rotates": false, "multitile": false }, + { "id": "ppsh", "fg": 546, "rotates": false, "multitile": false }, + { "id": "ppshdrum", "fg": 845, "rotates": false }, + { "id": [ "ppshmag", "tokarevmag" ], "fg": 846, "rotates": false }, + { "id": "press", "fg": 703, "rotates": false, "multitile": false }, + { "id": "primitive_axe", "fg": 719, "rotates": false, "multitile": false }, + { "id": "primitive_hammer", "fg": 718, "rotates": false, "multitile": false }, + { "id": "primitive_knife", "fg": 689, "rotates": false, "multitile": false }, + { "id": "primitive_shovel", "fg": 720, "rotates": false, "multitile": false }, + { "id": "processor", "fg": 939, "rotates": false, "multitile": false }, + { "id": "protein_shake", "fg": 1402, "rotates": false, "multitile": false }, + { "id": "puck", "fg": 933, "rotates": false, "multitile": false }, + { "id": "puller", "fg": 702, "rotates": false, "multitile": false }, + { "id": "punch_dagger", "fg": 500, "rotates": false, "multitile": false }, + { "id": "purifier", "fg": 927, "rotates": false, "multitile": false }, + { "id": "purple_drink", "fg": 1415, "rotates": false }, + { "id": "q_staff", "fg": 447, "rotates": false, "multitile": false }, + { "id": "r_carpet", "fg": 756, "rotates": false }, + { "id": "r_paint", "fg": 968, "rotates": false, "multitile": false }, + { "id": "rad_monitor", "fg": 1010, "rotates": false, "multitile": false }, + { "id": "radio", "fg": 598, "rotates": false, "multitile": false }, + { "id": "radio_car", "fg": 791, "rotates": false, "multitile": false }, + { "id": "radio_car_box", "fg": 587, "rotates": false, "multitile": false }, + { "id": "radio_car_on", "fg": 792, "rotates": false, "multitile": false }, + { "id": "radio_on", "fg": 599, "rotates": false, "multitile": false }, + { "id": "radiocontrol", "fg": 793, "rotates": false, "multitile": false }, + { "id": "rag", "fg": 495, "rotates": false }, + { "id": "rag_bloody", "fg": 437, "rotates": false, "multitile": false }, + { "id": "raging_bull", "fg": 536, "rotates": false, "multitile": false }, + { "id": "ragpouch", "fg": 1185, "rotates": false, "multitile": false }, + { "id": "rail_laser_sight", "fg": 905, "rotates": false, "multitile": false }, + { "id": "rapier", "fg": 681, "rotates": false, "multitile": false }, + { "id": "rapier_fake", "fg": 681, "rotates": false, "multitile": false }, + { "id": "raw_fur", "fg": 799, "rotates": false, "multitile": false }, + { "id": "raw_leather", "fg": 800, "rotates": false, "multitile": false }, + { "id": "razor_blade", "fg": 555, "rotates": false, "multitile": false }, + { "id": "rebar", "fg": 484, "rotates": false, "multitile": false }, + { "id": "rebar_rail", "fg": 893, "rotates": false, "multitile": false }, + { "id": "rebar_rifle", "fg": 542, "rotates": false, "multitile": false }, + { "id": "rebreather", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "rebreather_filter", "fg": 878, "rotates": false, "multitile": false }, + { "id": "rebreather_on", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "rebreather_xl", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "rebreather_xl_on", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "receiver", "fg": 939, "rotates": false, "multitile": false }, + { "id": "recharge_station", "fg": 904, "rotates": false }, + { "id": "recoil_stock", "fg": 905, "rotates": false, "multitile": false }, + { "id": "recurbow", "fg": 879, "rotates": false, "multitile": false }, + { "id": "red_dot_sight", "fg": 905, "rotates": false, "multitile": false }, + { "id": "ref_lighter", "fg": 752, "rotates": false, "multitile": false }, + { "id": "ref_lighter_on", "fg": 777, "rotates": false, "multitile": false }, + { "id": "reflexbow", "fg": 879, "rotates": false, "multitile": false }, + { "id": "reflexrecurvebow", "fg": 879, "rotates": false, "multitile": false }, + { "id": "reinforced_glass_pane", "fg": 398, "rotates": false, "multitile": false }, + { "id": "reinforced_glass_sheet", "fg": 398, "rotates": false, "multitile": false }, + { "id": "reinforced_solar_panel", "fg": 861, "rotates": false, "multitile": false }, + { "id": "reinforced_solar_panel_v2", "fg": 861, "rotates": false }, + { "id": "reloaded_223", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_3006", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_3006_incendiary", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_300_winmag", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_308", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_32_acp", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_38_fmj", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_38_special", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_38_super", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_40fmj", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_40sw", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_44fmj", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_44magnum", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_454_Casull", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_45_acp", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_45_jhp", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_45_super", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_46mm", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_500_Magnum", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_50_incendiary", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_50bmg", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_50ss", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_556", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_556_incendiary", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_57mm", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_5x50dart", "fg": 810, "rotates": false, "multitile": false }, + { "id": "reloaded_700nx", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_762_51", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_762_51_incendiary", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_762_54R", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_762_m43", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_762_m87", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_9mmP2", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_9mmP", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_9mm", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_9mmfmj", "fg": 980, "rotates": false, "multitile": false }, + { "id": "reloaded_laser_pack", "fg": 894, "rotates": false, "multitile": false }, + { "id": "reloaded_shot_00", "fg": 979, "rotates": false, "multitile": false }, + { "id": "reloaded_shot_bird", "fg": 979, "rotates": false, "multitile": false }, + { "id": "reloaded_shot_flechette", "fg": 979, "rotates": false, "multitile": false }, + { "id": "reloaded_shot_slug", "fg": 979, "rotates": false, "multitile": false }, + { "id": "remington_700", "fg": 527, "rotates": false, "multitile": false }, + { "id": "remington_870", "fg": 544, "rotates": false, "multitile": false }, + { "id": "remotevehcontrol", "fg": 793, "rotates": false, "multitile": false }, + { "id": "rep_crossbow", "fg": 880, "rotates": false, "multitile": false }, + { "id": "restaurantmap", "fg": 605, "rotates": false, "multitile": false }, + { "id": "retool_223", "fg": 905, "rotates": false, "multitile": false }, + { "id": "retool_22", "fg": 905, "rotates": false, "multitile": false }, + { "id": "retool_308", "fg": 905, "rotates": false, "multitile": false }, + { "id": "retool_45", "fg": 905, "rotates": false, "multitile": false }, + { "id": "retool_46", "fg": 905, "rotates": false, "multitile": false }, + { "id": "retool_57", "fg": 905, "rotates": false, "multitile": false }, + { "id": "retool_9mm", "fg": 905, "rotates": false, "multitile": false }, + { "id": "revolver_shotgun", "fg": 1755, "rotates": false, "multitile": false }, + { "id": "rifle_22", "fg": 527, "rotates": false, "multitile": false }, + { "id": "rifle_308", "fg": 527, "rotates": false, "multitile": false }, + { "id": "rifle_9mm", "fg": 533, "rotates": false, "multitile": false }, + { "id": "rifle_flintlock", "fg": 527, "rotates": false, "multitile": false }, + { "id": "rifle_scope", "fg": 905, "rotates": false, "multitile": false }, { "id": [ "diamond_ring", @@ -1899,418 +1899,418 @@ "ring_wedding", "silver_ring" ], - "fg": 906, + "fg": 907, "rotates": false, "multitile": false }, - { "id": "rm103a_pistol", "fg": 535, "rotates": false, "multitile": false }, - { "id": "rm11b_sniper_rifle", "fg": 532, "rotates": false, "multitile": false }, - { "id": "rm120c", "fg": 543, "rotates": false, "multitile": false }, - { "id": "rm121aux", "fg": 904, "rotates": false, "multitile": false }, - { "id": "rm2000_smg", "fg": 533, "rotates": false, "multitile": false }, - { "id": "rm20", "fg": 568, "rotates": false, "multitile": false }, - { "id": "rm228", "fg": 574, "rotates": false, "multitile": false }, - { "id": "rm298", "fg": 568, "rotates": false, "multitile": false }, - { "id": "rm451_flamethrower", "fg": 572, "rotates": false, "multitile": false }, - { "id": "rm51_assault_rifle", "fg": 564, "rotates": false, "multitile": false }, - { "id": "rm614_lmg", "fg": 568, "rotates": false, "multitile": false }, - { "id": "rm802", "fg": 551, "rotates": false, "multitile": false }, - { "id": "rm88_battle_rifle", "fg": 532, "rotates": false, "multitile": false }, - { "id": "roadmap", "fg": 604, "rotates": false, "multitile": false }, - { "id": "robot_controls", "fg": 2286, "rotates": false, "multitile": false }, - { "id": "rock", "fg": 474, "rotates": false }, - { "id": "rock_pot", "fg": 439, "rotates": false, "multitile": false }, - { "id": "rock_quern", "fg": 580, "rotates": false, "multitile": false }, - { "id": "rock_sock", "fg": 501, "rotates": false, "multitile": false }, - { "id": "rolling_paper", "fg": 505, "rotates": false, "multitile": false }, - { "id": "rollmat", "fg": 669, "rotates": false, "multitile": false }, - { "id": "rootbeer", "fg": 921, "rotates": false, "multitile": false }, - { "id": "rope_30", "fg": 540, "rotates": false }, - { "id": "rope_6", "fg": 540, "rotates": true }, - { "id": "rubber_slug", "fg": 625, "rotates": false, "multitile": false }, - { "id": "ruger_1022", "fg": 526, "rotates": false, "multitile": false }, - { "id": "ruger_mini", "fg": 526, "rotates": false, "multitile": false }, - { "id": "ruger_redhawk", "fg": 535, "rotates": false, "multitile": false }, - { "id": "rum", "fg": 921, "rotates": false, "multitile": false }, - { "id": "rx12_injector", "fg": 537, "rotates": false, "multitile": false }, - { "id": "saddle", "fg": 864, "bg": 2, "rotates": false, "multitile": false }, - { "id": "safe_box", "fg": 1446, "rotates": false, "multitile": false }, - { "id": "saiga_12", "fg": 544, "rotates": false, "multitile": false }, - { "id": "saline", "fg": 920, "rotates": false, "multitile": false }, - { "id": "salt_water", "fg": 920, "rotates": false, "multitile": false }, - { "id": "sarcophagus_access_code", "fg": 883, "rotates": false, "multitile": false }, - { "id": "savage_111f", "fg": 526, "rotates": false, "multitile": false }, - { "id": "saw", "fg": 691, "rotates": false, "multitile": false }, - { "id": "scalpel", "fg": 672, "rotates": false, "multitile": false }, - { "id": "scar_h", "fg": 564, "rotates": false, "multitile": false }, - { "id": "scar_l", "fg": 564, "rotates": false, "multitile": false }, - { "id": "scissors", "fg": 582, "rotates": false, "multitile": false }, - { "id": "scrambler", "fg": 634, "rotates": false, "multitile": false }, - { "id": "scrambler_act", "fg": 635, "rotates": false, "multitile": false }, - { "id": "scrap", "fg": 890, "rotates": false, "multitile": false }, - { "id": "screwdriver", "fg": 703, "rotates": false, "multitile": false }, - { "id": "scythe", "fg": 509, "rotates": false, "multitile": false }, - { "id": "scythe_war", "fg": 510, "rotates": false, "multitile": false }, - { "id": "seat", "fg": 864, "bg": 2, "rotates": false, "multitile": false }, + { "id": "rm103a_pistol", "fg": 536, "rotates": false, "multitile": false }, + { "id": "rm11b_sniper_rifle", "fg": 533, "rotates": false, "multitile": false }, + { "id": "rm120c", "fg": 544, "rotates": false, "multitile": false }, + { "id": "rm121aux", "fg": 905, "rotates": false, "multitile": false }, + { "id": "rm2000_smg", "fg": 534, "rotates": false, "multitile": false }, + { "id": "rm20", "fg": 569, "rotates": false, "multitile": false }, + { "id": "rm228", "fg": 575, "rotates": false, "multitile": false }, + { "id": "rm298", "fg": 569, "rotates": false, "multitile": false }, + { "id": "rm451_flamethrower", "fg": 573, "rotates": false, "multitile": false }, + { "id": "rm51_assault_rifle", "fg": 565, "rotates": false, "multitile": false }, + { "id": "rm614_lmg", "fg": 569, "rotates": false, "multitile": false }, + { "id": "rm802", "fg": 552, "rotates": false, "multitile": false }, + { "id": "rm88_battle_rifle", "fg": 533, "rotates": false, "multitile": false }, + { "id": "roadmap", "fg": 605, "rotates": false, "multitile": false }, + { "id": "robot_controls", "fg": 2297, "rotates": false, "multitile": false }, + { "id": "rock", "fg": 475, "rotates": false }, + { "id": "rock_pot", "fg": 440, "rotates": false, "multitile": false }, + { "id": "rock_quern", "fg": 581, "rotates": false, "multitile": false }, + { "id": "rock_sock", "fg": 502, "rotates": false, "multitile": false }, + { "id": "rolling_paper", "fg": 506, "rotates": false, "multitile": false }, + { "id": "rollmat", "fg": 670, "rotates": false, "multitile": false }, + { "id": "rootbeer", "fg": 922, "rotates": false, "multitile": false }, + { "id": "rope_30", "fg": 541, "rotates": false }, + { "id": "rope_6", "fg": 541, "rotates": true }, + { "id": "rubber_slug", "fg": 626, "rotates": false, "multitile": false }, + { "id": "ruger_1022", "fg": 527, "rotates": false, "multitile": false }, + { "id": "ruger_mini", "fg": 527, "rotates": false, "multitile": false }, + { "id": "ruger_redhawk", "fg": 536, "rotates": false, "multitile": false }, + { "id": "rum", "fg": 922, "rotates": false, "multitile": false }, + { "id": "rx12_injector", "fg": 538, "rotates": false, "multitile": false }, + { "id": "saddle", "fg": 865, "bg": 3, "rotates": false, "multitile": false }, + { "id": "safe_box", "fg": 1456, "rotates": false, "multitile": false }, + { "id": "saiga_12", "fg": 545, "rotates": false, "multitile": false }, + { "id": "saline", "fg": 921, "rotates": false, "multitile": false }, + { "id": "salt_water", "fg": 921, "rotates": false, "multitile": false }, + { "id": "sarcophagus_access_code", "fg": 884, "rotates": false, "multitile": false }, + { "id": "savage_111f", "fg": 527, "rotates": false, "multitile": false }, + { "id": "saw", "fg": 692, "rotates": false, "multitile": false }, + { "id": "scalpel", "fg": 673, "rotates": false, "multitile": false }, + { "id": "scar_h", "fg": 565, "rotates": false, "multitile": false }, + { "id": "scar_l", "fg": 565, "rotates": false, "multitile": false }, + { "id": "scissors", "fg": 583, "rotates": false, "multitile": false }, + { "id": "scrambler", "fg": 635, "rotates": false, "multitile": false }, + { "id": "scrambler_act", "fg": 636, "rotates": false, "multitile": false }, + { "id": "scrap", "fg": 891, "rotates": false, "multitile": false }, + { "id": "screwdriver", "fg": 704, "rotates": false, "multitile": false }, + { "id": "scythe", "fg": 510, "rotates": false, "multitile": false }, + { "id": "scythe_war", "fg": 511, "rotates": false, "multitile": false }, + { "id": "seat", "fg": 865, "bg": 3, "rotates": false, "multitile": false }, { "id": "seatbelt", - "fg": 868, - "rotates": true, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 867 } ] - }, - { "id": "seed_garlic", "fg": 842, "rotates": false }, - { "id": "selfbow", "fg": 878, "rotates": false, "multitile": false }, - { "id": "sewage", "fg": 921, "rotates": false, "multitile": false }, - { "id": "sewing_kit", "fg": 581, "rotates": false, "multitile": false }, - { "id": "sharp_rock", "fg": 785, "rotates": false, "multitile": false }, - { "id": "sharp_toothbrush", "fg": 502, "rotates": false, "multitile": false }, - { "id": "sheet", "fg": 1007, "rotates": false }, - { "id": "sheet_kevlar_layered", "fg": 962, "rotates": false, "multitile": false }, - { "id": "sheet_metal", "fg": 476, "rotates": false, "multitile": false }, - { "id": "sheet_metal_lit", "fg": 831, "rotates": false, "multitile": false }, - { "id": "shelter_kit", "fg": 254, "rotates": false, "multitile": false }, - { "id": "shishkebab_off", "fg": 674, "rotates": false, "multitile": false }, - { "id": "shishkebab_on", "fg": 675, "rotates": false, "multitile": false }, - { "id": "shock_staff", "fg": 512, "rotates": false, "multitile": false }, - { "id": "shocktonfa_off", "fg": 452, "rotates": false, "multitile": false }, - { "id": "shocktonfa_on", "fg": 464, "rotates": false, "multitile": false }, - { "id": "shortbow", "fg": 878, "rotates": false, "multitile": false }, - { "id": "shot_00", "fg": 969, "rotates": false, "multitile": false }, - { "id": "shot_beanbag", "fg": 969, "rotates": false, "multitile": false }, - { "id": "shot_bird", "fg": 969, "rotates": false, "multitile": false }, - { "id": "shot_flechette", "fg": 969, "rotates": false, "multitile": false }, - { "id": "shot_he", "fg": 969, "rotates": false, "multitile": false }, - { "id": "shot_hull", "fg": 930 }, - { "id": "shot_scrap", "fg": 969, "rotates": false, "multitile": false }, - { "id": "shot_slug", "fg": 969, "rotates": false, "multitile": false }, - { "id": "shot_suppressor", "fg": 904, "rotates": false, "multitile": false }, - { "id": "shotgun_d", "fg": 541, "rotates": false, "multitile": false }, - { "id": "shotgun_primer", "fg": 895, "rotates": false, "multitile": false }, - { "id": "shotgun_s", "fg": 541, "rotates": false, "multitile": false }, - { "id": "shotgun_trap", "fg": 618, "rotates": false, "multitile": false }, - { "id": "shoulder_strap", "fg": 904, "rotates": false, "multitile": false }, - { "id": "shovel", "fg": 607, "rotates": false, "multitile": false }, - { "id": "sickle", "fg": 511, "rotates": false, "multitile": false }, - { "id": "sig_40", "fg": 535, "rotates": false, "multitile": false }, - { "id": "sig_mosquito", "fg": 535, "rotates": false, "multitile": false }, - { "id": "sig_p230", "fg": 535, "rotates": false, "multitile": false }, - { "id": [ "silver_small", "material_aluminium_ingot" ], "fg": 933, "rotates": false, "multitile": false }, - { "id": "sinew", "fg": 869, "rotates": false, "multitile": false }, - { "id": "single_malt_whiskey", "fg": 921, "rotates": false, "multitile": false }, - { "id": "sks", "fg": 526, "rotates": false, "multitile": false }, - { "id": "sling", "fg": 527, "rotates": false, "multitile": false }, - { "id": "slingshot", "fg": 529, "rotates": false, "multitile": false }, - { "id": "sm_extinguisher", "fg": 584, "rotates": false, "multitile": false }, - { "id": "small_lcd_screen", "fg": 391, "rotates": false, "multitile": false }, - { "id": "small_repairkit", "fg": 928, "rotates": false, "multitile": false }, - { "id": "small_storage_battery", "fg": 857, "rotates": false }, - { "id": "smart_lamp", "fg": 916, "rotates": false, "multitile": false }, - { "id": "smart_lamp_on", "fg": 917, "rotates": false, "multitile": false }, - { "id": "smokebomb", "fg": 638, "rotates": false, "multitile": false }, - { "id": "smokebomb_act", "fg": 639, "rotates": false, "multitile": false }, - { "id": "smpistol_primer", "fg": 895, "rotates": false, "multitile": false }, - { "id": "smrifle_primer", "fg": 895, "rotates": false, "multitile": false }, - { "id": "soap", "fg": 897, "rotates": false, "multitile": false }, - { "id": "solar_cell", "fg": 475, "rotates": false, "multitile": false }, - { "id": "solar_panel", "fg": 859, "rotates": false, "multitile": false }, - { "id": "solar_panel_v2", "fg": 859, "rotates": false }, - { "id": "solar_panel_v3", "fg": 859, "rotates": false }, - { "id": "solder_wire", "fg": 870, "rotates": false, "multitile": false }, - { "id": "soldering_iron", "fg": 594, "rotates": false, "multitile": false }, - { "id": "soup_meat", "fg": 921, "rotates": false, "multitile": false }, - { "id": "soup_veggy", "fg": 1414, "rotates": false, "multitile": false }, - { "id": "soup_woods", "fg": 921, "rotates": false, "multitile": false }, - { "id": "spear_knife", "fg": 681, "rotates": false, "multitile": false }, - { "id": "spear_rebar", "fg": 483, "rotates": false, "multitile": false }, - { "id": "spear_steel", "fg": 483, "rotates": false, "multitile": false }, - { "id": "spear_survivor", "fg": 832, "rotates": false, "multitile": false }, - { "id": "spear_wood", "fg": 457, "rotates": false, "multitile": false }, - { "id": "speargun", "fg": 526, "rotates": false, "multitile": false }, - { "id": "spezi", "fg": 921, "rotates": false, "multitile": false }, - { "id": "spike", "fg": 465, "rotates": false, "multitile": false }, - { "id": "spiked_plate", "fg": 480, "rotates": false, "multitile": false }, - { "id": "spiked_rocket", "fg": 811, "rotates": false, "multitile": false }, - { "id": "spiral_stone", "fg": 403, "rotates": false, "multitile": false }, - { "id": "splinter", "fg": 661, "rotates": false, "multitile": false }, - { "id": "spoon", "fg": 434, "rotates": false, "multitile": false }, - { "id": "spork", "fg": 433, "rotates": false, "multitile": false }, - { "id": "sports_drink", "fg": 1405, "rotates": false }, - { "id": "spray_can", "fg": 710, "rotates": false, "multitile": false }, - { "id": "spring", "fg": 567, "rotates": false }, - { "id": "stabilizer", "fg": 904, "rotates": false, "multitile": false }, - { "id": "steel_chunk", "fg": 690, "rotates": false }, - { "id": "steel_lump", "fg": 682, "rotates": false }, - { "id": "steel_plate", "fg": 477, "rotates": false, "multitile": false }, - { "id": "steel_rail", "fg": 892, "rotates": false, "multitile": false }, - { "id": "stereo", "fg": 728, "rotates": false, "multitile": false }, - { "id": "stethoscope", "fg": 608, "rotates": false, "multitile": false }, - { "id": "steyr_aug", "fg": 566, "rotates": false, "multitile": false }, - { "id": "stick", "fg": 553, "rotates": false }, - { "id": "still", "fg": 737, "rotates": false, "multitile": false }, - { "id": "stout", "fg": 921, "rotates": false, "multitile": false }, - { "id": "straw_doll", "fg": 815, "rotates": false, "multitile": false }, - { "id": "straw_pile", "fg": 833, "rotates": false, "multitile": false }, - { "id": "string_36", "fg": 540, "rotates": false }, - { "id": "string_6", "fg": 540, "rotates": false }, - { "id": "subsuit_xl", "fg": 1010, "rotates": false, "multitile": false }, - { "id": "superglue", "fg": 386, "rotates": false, "multitile": false }, - { "id": "suppressor", "fg": 904, "rotates": false, "multitile": false }, - { "id": "surv_carbine_223", "fg": 526, "rotates": false, "multitile": false }, - { "id": "surv_hand_cannon", "fg": 535, "rotates": false, "multitile": false }, - { "id": "surv_rocket_launcher", "fg": 824, "rotates": false, "multitile": false }, - { "id": "surv_six_shooter", "fg": 535, "rotates": false, "multitile": false }, - { "id": "survival_marker", "fg": 465, "rotates": false, "multitile": false }, - { "id": "survivor_machete", "fg": 673, "rotates": false, "multitile": false }, - { "id": "survivor_mess_kit", "fg": 822, "rotates": false, "multitile": false }, - { "id": "survivor_special_700", "fg": 526, "rotates": false, "multitile": false }, - { "id": "survivormap", "fg": 604, "rotates": false, "multitile": false }, - { "id": "sw629", "fg": 535, "rotates": false, "multitile": false }, - { "id": "sw_22", "fg": 535, "rotates": false, "multitile": false }, - { "id": "sw_500", "fg": 535, "rotates": false, "multitile": false }, - { "id": "sw_610", "fg": 535, "rotates": false, "multitile": false }, - { "id": "sw_619", "fg": 535, "rotates": false, "multitile": false }, - { "id": "swage", "fg": 749, "rotates": false, "multitile": false }, - { "id": "sweet_water", "fg": 920, "rotates": false, "multitile": false }, - { "id": "switchblade", "fg": 688, "rotates": false, "multitile": false }, - { "id": "sword_bayonet", "fg": 904, "rotates": false, "multitile": false }, - { "id": "sword_crude", "fg": 445, "rotates": false, "multitile": false }, - { "id": "sword_nail", "fg": 444, "rotates": false, "multitile": false }, - { "id": "sword_wood", "fg": 443, "rotates": false, "multitile": false }, - { "id": "syringe", "fg": 442, "rotates": false, "multitile": false }, - { "id": "syrup", "fg": 921, "rotates": false, "multitile": false }, - { "id": "talking_doll", "fg": 733, "rotates": false, "multitile": false }, - { "id": "tanbark", "fg": 802, "rotates": false, "multitile": false }, - { "id": "tanned_hide", "fg": 385, "rotates": false, "multitile": false }, - { "id": "tanned_pelt", "fg": 384, "rotates": false, "multitile": false }, - { "id": "tanning_hide", "fg": 805, "rotates": false, "multitile": false }, - { "id": "tanning_pelt", "fg": 804, "rotates": false, "multitile": false }, - { "id": "tanto", "fg": 676, "rotates": false, "multitile": false }, - { "id": "tazer", "fg": 655, "rotates": false, "multitile": false }, - { "id": "tea", "fg": 921, "rotates": false, "multitile": false }, - { "id": "teapot", "fg": 934, "rotates": false, "multitile": false }, - { "id": "tec9", "fg": 533, "rotates": false, "multitile": false }, - { "id": "teddy", "fg": 816, "rotates": false, "multitile": false }, - { "id": "telepad", "fg": 929, "rotates": false, "multitile": false }, - { "id": "teleporter", "fg": 624, "rotates": false, "multitile": false }, - { "id": "teleumbrella", "fg": 491, "rotates": false, "multitile": false }, - { "id": "television", "fg": 420, "rotates": false, "multitile": false }, - { "id": "tent_kit", "fg": 253, "rotates": false, "multitile": false }, - { "id": "tequila", "fg": 921, "rotates": false, "multitile": false }, - { "id": "thermometer", "fg": 837, "rotates": false, "multitile": false }, - { "id": "thread", "fg": 870, "rotates": false, "multitile": false }, - { "id": "throw_extinguisher", "fg": 585, "rotates": false, "multitile": false }, - { "id": "tihar", "fg": 551, "rotates": false, "multitile": false }, - { "id": "tin", "fg": 890, "rotates": false, "multitile": false }, - { "id": "tin_plate", "fg": 432, "rotates": false, "multitile": false }, - { "id": "toaster", "fg": 422, "rotates": false, "multitile": false }, - { "id": "tokarev", "fg": 535, "rotates": false, "multitile": false }, - { "id": "tonfa", "fg": 452, "rotates": false, "multitile": false }, - { "id": "tonfa_wood", "fg": 454, "rotates": false, "multitile": false }, - { "id": "tongs", "fg": 747, "rotates": false, "multitile": false }, - { "id": "tool_anfo_charge", "fg": 838, "rotates": false, "multitile": false }, - { "id": "tool_anfo_charge_act", "fg": 839, "rotates": false, "multitile": false }, - { "id": "tool_black_powder_charge", "fg": 793, "rotates": false, "multitile": false }, - { "id": "tool_black_powder_charge_act", "fg": 794, "rotates": false, "multitile": false }, - { "id": "tool_rdx_charge", "fg": 838, "rotates": false, "multitile": false }, - { "id": "tool_rdx_charge_act", "fg": 839, "rotates": false, "multitile": false }, - { "id": "tool_rdx_sand_bomb", "fg": 626, "rotates": false, "multitile": false }, - { "id": "tool_rdx_sand_bomb_act", "fg": 627, "rotates": false, "multitile": false }, - { "id": "toolbox", "fg": 753, "rotates": false, "multitile": false }, - { "id": "torch", "fg": 694, "rotates": false, "multitile": false }, - { "id": "torch_done", "fg": 414, "rotates": false, "multitile": false }, - { "id": "torch_lit", "fg": 695, "rotates": false, "multitile": false }, - { "id": "touristmap", "fg": 604, "rotates": false, "multitile": false }, - { "id": "towel", "fg": 1022, "rotates": true }, - { "id": "transponder", "fg": 938, "rotates": false, "multitile": false }, - { "id": "trex_gun", "fg": 542, "rotates": false, "multitile": false }, - { "id": "trimmer_off", "fg": 556, "rotates": false, "multitile": false }, - { "id": "trimmer_on", "fg": 556, "rotates": false, "multitile": false }, - { "id": "triple_sec", "fg": 922, "rotates": false, "multitile": false }, - { "id": "tripwire", "fg": 616, "rotates": false, "multitile": false }, - { "id": "tuned_mechanism", "fg": 904, "rotates": false, "multitile": false }, - { "id": "two_way_radio", "fg": 596, "rotates": false, "multitile": false }, - { "id": "u_shotgun", "fg": 904, "rotates": false, "multitile": false }, - { "id": "ugl_buttstock", "fg": 904, "rotates": false, "multitile": false }, - { "id": "umbrella", "fg": 491, "rotates": false, "multitile": false }, - { "id": "unbio_blaster_gun", "fg": 571, "rotates": false, "multitile": false }, - { "id": "usb_drive", "fg": 405, "rotates": false, "multitile": false }, - { "id": "usp_45", "fg": 535, "rotates": false, "multitile": false }, - { "id": "usp_9mm", "fg": 535, "rotates": false, "multitile": false }, - { "id": "uzi", "fg": 533, "rotates": false, "multitile": false }, - { "id": "v12_combustion", "fg": 856, "rotates": false, "multitile": false }, - { "id": "v29", "fg": 569, "rotates": false, "multitile": false }, - { "id": "v29_cheap", "fg": 569, "rotates": false, "multitile": false }, - { "id": "v2_combustion", "fg": 856, "rotates": false, "multitile": false }, - { "id": "v6_combustion", "fg": 856, "rotates": false, "multitile": false }, - { "id": "v6_diesel", "fg": 856, "rotates": false, "multitile": false }, - { "id": "v8_combustion", "fg": 856, "rotates": false, "multitile": false }, - { "id": "v8_diesel", "fg": 856, "rotates": false, "multitile": false }, - { "id": "v_table", "fg": 900, "rotates": false }, - { "id": "vac_sealer", "fg": 728, "rotates": false, "multitile": false }, - { "id": "vacutainer", "fg": 666, "rotates": false, "multitile": false }, - { "id": "veggy_pickled", "fg": 1304, "rotates": false, "multitile": false }, - { "id": "veh_tracker", "fg": 915, "rotates": false }, - { "id": "vehicle_controls", "fg": 866, "rotates": false, "multitile": false }, - { "id": "vine_30", "fg": 609, "rotates": false, "multitile": false }, - { "id": "vinegar", "fg": 923, "rotates": false, "multitile": false }, - { "id": "vodka", "fg": 920, "rotates": false, "multitile": false }, - { "id": "vortex_stone", "fg": 659, "rotates": false, "multitile": false }, - { "id": "w_paint", "fg": 410, "rotates": false, "multitile": false }, - { "id": "waffleiron", "fg": 398, "rotates": false, "multitile": false }, - { "id": "wakizashi", "fg": 676, "rotates": false, "multitile": false }, - { "id": "wakizashi_fake", "fg": 676, "rotates": false, "multitile": false }, - { "id": "walther_ppk", "fg": 535, "rotates": false, "multitile": false }, - { "id": "warhammer", "fg": 488, "rotates": false, "multitile": false }, - { "id": "wasp_sting", "fg": 460, "rotates": false, "multitile": false }, - { "id": "water_clean", "fg": 920, "rotates": false, "multitile": false }, - { "id": "water_faucet", "fg": 778, "rotates": false }, - { "id": "water_mineral", "fg": 920, "rotates": false, "multitile": false }, - { "id": "water_purifier", "fg": 595, "rotates": false, "multitile": false }, - { "id": "watercannon", "fg": 551, "rotates": false, "multitile": false }, - { "id": "waterproof_gunmod", "fg": 904, "rotates": false, "multitile": false }, - { "id": "waterskin2", "fg": 377, "rotates": false, "multitile": false }, - { "id": "waterskin3", "fg": 377, "rotates": false, "multitile": false }, - { "id": "waterskin", "fg": 377, "rotates": false, "multitile": false }, - { "id": "wax", "fg": 1352, "rotates": false, "multitile": false }, - { "id": "wearable_light", "fg": 587, "rotates": false, "multitile": false }, - { "id": "wearable_light_on", "fg": 588, "rotates": false, "multitile": false }, - { "id": "wearable_rx12", "fg": 537, "rotates": false, "multitile": false }, - { "id": "weeks_old_newspaper", "fg": 883, "rotates": false, "multitile": false }, - { "id": "welder", "fg": 667, "rotates": false, "multitile": false }, - { "id": "welder_crude", "fg": 736, "rotates": false, "multitile": false }, - { "id": "weldrig", "fg": 861, "rotates": false, "multitile": false }, - { "id": "well_pump", "fg": 775, "rotates": false, "multitile": false }, - { "id": "wheel", "fg": 2296, "rotates": false, "multitile": false }, - { "id": "wheel_armor", "fg": 2323, "rotates": false, "multitile": false }, - { "id": "wheel_bicycle", "fg": 2298, "rotates": false, "multitile": false }, - { "id": "wheel_caster", "fg": 2298, "rotates": false, "multitile": false }, - { "id": "wheel_metal", "fg": 2296, "rotates": false, "multitile": false }, - { "id": "wheel_motorbike", "fg": 2295, "rotates": false, "multitile": false }, - { "id": "wheel_small", "fg": 2298, "rotates": false, "multitile": false }, - { "id": "wheel_wheelchair", "fg": 777, "rotates": false, "multitile": false }, - { "id": "wheel_wide", "fg": 2297, "rotates": false, "multitile": false }, - { "id": "wheel_wood", "fg": 2274, "rotates": false, "multitile": false }, - { "id": "wheel_wood_b", "fg": 2275, "rotates": false, "multitile": false }, - { "id": "whiskey", "fg": 921, "rotates": false, "multitile": false }, - { "id": "win70", "fg": 526, "rotates": false, "multitile": false }, - { "id": "wine_cabernet", "fg": 1413, "rotates": false, "multitile": false }, - { "id": "wine_chardonnay", "fg": 923, "rotates": false, "multitile": false }, - { "id": "wine_noir", "fg": 1413, "rotates": false, "multitile": false }, - { "id": "wine_riesling", "fg": 923, "rotates": false, "multitile": false }, - { "id": "wire", "fg": 447, "rotates": false, "multitile": false }, - { "id": "wire_barbed", "fg": 447, "rotates": false, "multitile": false }, - { "id": "withered", "fg": 383, "rotates": false, "multitile": false }, - { "id": "wood_plate", "fg": 482, "rotates": false, "multitile": false }, - { "id": "wood_smoother", "fg": 454, "rotates": false, "multitile": false }, - { "id": "wooden_barrel", "fg": 937, "rotates": false }, - { "id": "wrapper", "fg": 505, "rotates": true }, - { "id": "wrench", "fg": 704, "rotates": false, "multitile": false }, - { "id": "wristrocket", "fg": 608, "rotates": false, "multitile": false }, - { "id": "xacto", "fg": 670, "rotates": false, "multitile": false }, - { "id": "xlframe", "fg": 912, "rotates": false }, - { "id": "y_carpet", "fg": 757, "rotates": false }, - { "id": "y_paint", "fg": 435, "rotates": false, "multitile": false }, - { "id": "yarn", "fg": 870, "rotates": false, "multitile": false }, - { "id": "zweifire_off", "fg": 684, "rotates": false, "multitile": false }, - { "id": "zweifire_on", "fg": 685, "rotates": false, "multitile": false }, - { "id": "zweihander", "fg": 683, "rotates": false, "multitile": false }, - { "id": "zweihander_fake", "fg": 683, "rotates": false, "multitile": false }, - { "id": "20x66_beanbag", "fg": 972, "rotates": false, "multitile": false }, - { "id": "20x66_bootleg_flechette", "fg": 972, "rotates": false, "multitile": false }, - { "id": "20x66_bootleg_shot", "fg": 972, "rotates": false, "multitile": false }, - { "id": "20x66_bootleg_slug", "fg": 972, "rotates": false, "multitile": false }, - { "id": "20x66_exp", "fg": 972, "rotates": false, "multitile": false }, - { "id": "20x66_flare", "fg": 972, "rotates": false, "multitile": false }, - { "id": "20x66_flechette", "fg": 972, "rotates": false, "multitile": false }, - { "id": "20x66_frag", "fg": 972, "rotates": false, "multitile": false }, - { "id": "20x66_inc", "fg": 972, "rotates": false, "multitile": false }, - { "id": "20x66_shot", "fg": 972, "rotates": false, "multitile": false }, - { "id": "20x66_slug", "fg": 972, "rotates": false, "multitile": false }, - { "id": "36navy", "fg": 538, "rotates": false, "multitile": false }, - { "id": "40x46mm_m651", "fg": 974, "rotates": false, "multitile": false }, - { "id": "44army", "fg": 538, "rotates": false, "multitile": false }, - { "id": "50_casing", "fg": 973, "rotates": false, "multitile": false }, - { "id": "50_incendiary", "fg": 970, "rotates": false, "multitile": false }, - { "id": "50bmg", "fg": 970, "rotates": false, "multitile": false }, - { "id": "50ss", "fg": 970, "rotates": false, "multitile": false }, - { "id": "arrow_cf", "fg": 889, "rotates": false, "multitile": false }, - { "id": "arrow_exploding", "fg": 889, "rotates": false, "multitile": false }, - { "id": "arrow_field_point_fletched", "fg": 889, "rotates": false, "multitile": false }, - { "id": "arrow_fire_hardened_fletched", "fg": 889, "rotates": false, "multitile": false }, - { "id": "arrow_flamming", "fg": 889, "rotates": false, "multitile": false }, - { "id": "arrow_heavy_field_point_fletched", "fg": 889, "rotates": false, "multitile": false }, - { "id": "arrow_heavy_fire_hardened_fletched", "fg": 889, "rotates": false, "multitile": false }, - { "id": "arrow_metal", "fg": 889, "rotates": false, "multitile": false }, - { "id": "arrow_metal_sharpened_fletched", "fg": 889, "rotates": false, "multitile": false }, - { "id": "arrow_plastic", "fg": 889, "rotates": false, "multitile": false }, - { "id": "arrow_small_game_fletched", "fg": 889, "rotates": false, "multitile": false }, - { "id": "arrow_wood", "fg": 889, "rotates": false, "multitile": false }, - { "id": "arrow_wood_heavy", "fg": 889, "rotates": false, "multitile": false }, - { "id": "bolt_explosive", "fg": 889, "rotates": false, "multitile": false }, - { "id": "bolt_metal", "fg": 889, "rotates": false, "multitile": false }, - { "id": "bolt_steel", "fg": 889, "rotates": false, "multitile": false }, - { "id": "bolt_wood", "fg": 889, "rotates": false, "multitile": false }, - { "id": "signal_flare", "fg": 969, "rotates": false, "multitile": false }, - { "id": "101_carpentry", "fg": 979, "rotates": false, "multitile": false }, - { "id": "SICP", "fg": 983, "rotates": false, "multitile": false }, - { "id": "ZSG", "fg": 982, "rotates": false, "multitile": false }, - { "id": "adv_chemistry", "fg": 979, "rotates": false, "multitile": false }, - { "id": "advanced_electronics", "fg": 977, "rotates": false, "multitile": false }, - { "id": "atomic_survival", "fg": 976, "rotates": false, "multitile": false }, - { "id": "book_archery", "fg": 978, "rotates": false, "multitile": false }, - { "id": "book_icef", "fg": 983, "rotates": false, "multitile": false }, - { "id": "brewing_cookbook", "fg": 982, "rotates": false, "multitile": false }, - { "id": "carpentry_book", "fg": 979, "rotates": false, "multitile": false }, - { "id": "computer_science", "fg": 983, "rotates": false, "multitile": false }, - { "id": "cookbook", "fg": 978, "rotates": false, "multitile": false }, - { "id": "cookbook_human", "fg": 978, "rotates": false, "multitile": false }, - { "id": "cookbook_italian", "fg": 978, "rotates": false, "multitile": false }, - { "id": "cookbook_sushi", "fg": 986, "rotates": false }, - { "id": "decoy_anarch", "fg": 981, "rotates": false }, - { "id": "decoy_elfa", "fg": 981, "rotates": false }, - { "id": "emergency_book", "fg": 977, "rotates": false, "multitile": false }, - { "id": "essay_book", "fg": 979, "rotates": false, "multitile": false }, - { "id": "fairy_tales", "fg": 984, "rotates": false, "multitile": false }, - { "id": "family_cookbook", "fg": 976, "rotates": false, "multitile": false }, - { "id": "fun_survival", "fg": 978, "rotates": false, "multitile": false }, - { "id": "glassblowing_book", "fg": 985, "rotates": false, "multitile": false }, - { "id": "guidebook", "fg": 981, "rotates": false, "multitile": false }, - { "id": "holybook_bible1", "fg": 986, "rotates": false }, - { "id": "holybook_bible2", "fg": 981, "rotates": false }, - { "id": "holybook_bible3", "fg": 981, "rotates": false }, - { "id": "holybook_granth", "fg": 986, "rotates": false }, - { "id": "holybook_hadith", "fg": 981, "rotates": false }, - { "id": "holybook_kallisti", "fg": 984, "rotates": false }, - { "id": "holybook_kojiki", "fg": 981, "rotates": false }, - { "id": "holybook_mormon", "fg": 983, "rotates": false }, - { "id": "holybook_pastafarian", "fg": 984, "rotates": false }, - { "id": "holybook_quran", "fg": 981, "rotates": false }, - { "id": "holybook_scientology", "fg": 986, "rotates": false }, - { "id": "holybook_slack", "fg": 984, "rotates": false }, - { "id": "holybook_sutras", "fg": 979, "rotates": false }, - { "id": "holybook_talmud", "fg": 984, "rotates": false }, - { "id": "holybook_tanakh", "fg": 981, "rotates": false }, - { "id": "holybook_tripitaka", "fg": 984, "rotates": false }, - { "id": "holybook_upanishads", "fg": 977, "rotates": false }, - { "id": "holybook_vedas", "fg": 979, "rotates": false }, - { "id": "howto_computer", "fg": 976, "rotates": false, "multitile": false }, - { "id": "howto_traps", "fg": 978, "rotates": false, "multitile": false }, - { "id": "mag_barter", "fg": 977, "rotates": false, "multitile": false }, - { "id": "mag_computer", "fg": 978, "rotates": false, "multitile": false }, - { "id": "mag_cutting", "fg": 980, "rotates": false, "multitile": false }, - { "id": "mag_dude", "fg": 983, "rotates": false, "multitile": false }, - { "id": "mag_fieldrepair", "fg": 976, "rotates": false, "multitile": false }, - { "id": "mag_launcher", "fg": 979, "rotates": false, "multitile": false }, - { "id": "mag_mechanics", "fg": 979, "rotates": false, "multitile": false }, - { "id": "mag_melee", "fg": 980, "rotates": false, "multitile": false }, - { "id": "mag_pistol", "fg": 981, "rotates": false, "multitile": false }, - { "id": "mag_rifle", "fg": 978, "rotates": false, "multitile": false }, - { "id": "mag_shotgun", "fg": 978, "rotates": false, "multitile": false }, - { "id": "mag_smg", "fg": 981, "rotates": false, "multitile": false }, - { "id": "mag_stabbing", "fg": 980, "rotates": false, "multitile": false }, - { "id": "mag_survival", "fg": 978, "rotates": false, "multitile": false }, - { "id": "mag_unarmed", "fg": 979, "rotates": false, "multitile": false }, + "fg": 869, + "rotates": true, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 868 } ] + }, + { "id": "seed_garlic", "fg": 843, "rotates": false }, + { "id": "selfbow", "fg": 879, "rotates": false, "multitile": false }, + { "id": "sewage", "fg": 922, "rotates": false, "multitile": false }, + { "id": "sewing_kit", "fg": 582, "rotates": false, "multitile": false }, + { "id": "sharp_rock", "fg": 786, "rotates": false, "multitile": false }, + { "id": "sharp_toothbrush", "fg": 503, "rotates": false, "multitile": false }, + { "id": "sheet", "fg": 1017, "rotates": false }, + { "id": "sheet_kevlar_layered", "fg": 971, "rotates": false, "multitile": false }, + { "id": "sheet_metal", "fg": 477, "rotates": false, "multitile": false }, + { "id": "sheet_metal_lit", "fg": 832, "rotates": false, "multitile": false }, + { "id": "shelter_kit", "fg": 255, "rotates": false, "multitile": false }, + { "id": "shishkebab_off", "fg": 675, "rotates": false, "multitile": false }, + { "id": "shishkebab_on", "fg": 676, "rotates": false, "multitile": false }, + { "id": "shock_staff", "fg": 513, "rotates": false, "multitile": false }, + { "id": "shocktonfa_off", "fg": 453, "rotates": false, "multitile": false }, + { "id": "shocktonfa_on", "fg": 465, "rotates": false, "multitile": false }, + { "id": "shortbow", "fg": 879, "rotates": false, "multitile": false }, + { "id": "shot_00", "fg": 979, "rotates": false, "multitile": false }, + { "id": "shot_beanbag", "fg": 979, "rotates": false, "multitile": false }, + { "id": "shot_bird", "fg": 979, "rotates": false, "multitile": false }, + { "id": "shot_flechette", "fg": 979, "rotates": false, "multitile": false }, + { "id": "shot_he", "fg": 979, "rotates": false, "multitile": false }, + { "id": "shot_hull", "fg": 931 }, + { "id": "shot_scrap", "fg": 979, "rotates": false, "multitile": false }, + { "id": "shot_slug", "fg": 979, "rotates": false, "multitile": false }, + { "id": "shot_suppressor", "fg": 905, "rotates": false, "multitile": false }, + { "id": "shotgun_d", "fg": 542, "rotates": false, "multitile": false }, + { "id": "shotgun_primer", "fg": 896, "rotates": false, "multitile": false }, + { "id": "shotgun_s", "fg": 542, "rotates": false, "multitile": false }, + { "id": "shotgun_trap", "fg": 619, "rotates": false, "multitile": false }, + { "id": "shoulder_strap", "fg": 905, "rotates": false, "multitile": false }, + { "id": "shovel", "fg": 608, "rotates": false, "multitile": false }, + { "id": "sickle", "fg": 512, "rotates": false, "multitile": false }, + { "id": "sig_40", "fg": 536, "rotates": false, "multitile": false }, + { "id": "sig_mosquito", "fg": 536, "rotates": false, "multitile": false }, + { "id": "sig_p230", "fg": 536, "rotates": false, "multitile": false }, + { "id": [ "silver_small", "material_aluminium_ingot" ], "fg": 934, "rotates": false, "multitile": false }, + { "id": "sinew", "fg": 870, "rotates": false, "multitile": false }, + { "id": "single_malt_whiskey", "fg": 922, "rotates": false, "multitile": false }, + { "id": "sks", "fg": 527, "rotates": false, "multitile": false }, + { "id": "sling", "fg": 528, "rotates": false, "multitile": false }, + { "id": "slingshot", "fg": 530, "rotates": false, "multitile": false }, + { "id": "sm_extinguisher", "fg": 585, "rotates": false, "multitile": false }, + { "id": "small_lcd_screen", "fg": 392, "rotates": false, "multitile": false }, + { "id": "small_repairkit", "fg": 929, "rotates": false, "multitile": false }, + { "id": "small_storage_battery", "fg": 858, "rotates": false }, + { "id": "smart_lamp", "fg": 917, "rotates": false, "multitile": false }, + { "id": "smart_lamp_on", "fg": 918, "rotates": false, "multitile": false }, + { "id": "smokebomb", "fg": 639, "rotates": false, "multitile": false }, + { "id": "smokebomb_act", "fg": 640, "rotates": false, "multitile": false }, + { "id": "smpistol_primer", "fg": 896, "rotates": false, "multitile": false }, + { "id": "smrifle_primer", "fg": 896, "rotates": false, "multitile": false }, + { "id": "soap", "fg": 898, "rotates": false, "multitile": false }, + { "id": "solar_cell", "fg": 476, "rotates": false, "multitile": false }, + { "id": "solar_panel", "fg": 860, "rotates": false, "multitile": false }, + { "id": "solar_panel_v2", "fg": 860, "rotates": false }, + { "id": "solar_panel_v3", "fg": 860, "rotates": false }, + { "id": "solder_wire", "fg": 871, "rotates": false, "multitile": false }, + { "id": "soldering_iron", "fg": 595, "rotates": false, "multitile": false }, + { "id": "soup_meat", "fg": 922, "rotates": false, "multitile": false }, + { "id": "soup_veggy", "fg": 1424, "rotates": false, "multitile": false }, + { "id": "soup_woods", "fg": 922, "rotates": false, "multitile": false }, + { "id": "spear_knife", "fg": 682, "rotates": false, "multitile": false }, + { "id": "spear_rebar", "fg": 484, "rotates": false, "multitile": false }, + { "id": "spear_steel", "fg": 484, "rotates": false, "multitile": false }, + { "id": "spear_survivor", "fg": 833, "rotates": false, "multitile": false }, + { "id": "spear_wood", "fg": 458, "rotates": false, "multitile": false }, + { "id": "speargun", "fg": 527, "rotates": false, "multitile": false }, + { "id": "spezi", "fg": 922, "rotates": false, "multitile": false }, + { "id": "spike", "fg": 466, "rotates": false, "multitile": false }, + { "id": "spiked_plate", "fg": 481, "rotates": false, "multitile": false }, + { "id": "spiked_rocket", "fg": 812, "rotates": false, "multitile": false }, + { "id": "spiral_stone", "fg": 404, "rotates": false, "multitile": false }, + { "id": "splinter", "fg": 662, "rotates": false, "multitile": false }, + { "id": "spoon", "fg": 435, "rotates": false, "multitile": false }, + { "id": "spork", "fg": 434, "rotates": false, "multitile": false }, + { "id": "sports_drink", "fg": 1415, "rotates": false }, + { "id": "spray_can", "fg": 711, "rotates": false, "multitile": false }, + { "id": "spring", "fg": 568, "rotates": false }, + { "id": "stabilizer", "fg": 905, "rotates": false, "multitile": false }, + { "id": "steel_chunk", "fg": 691, "rotates": false }, + { "id": "steel_lump", "fg": 683, "rotates": false }, + { "id": "steel_plate", "fg": 478, "rotates": false, "multitile": false }, + { "id": "steel_rail", "fg": 893, "rotates": false, "multitile": false }, + { "id": "stereo", "fg": 729, "rotates": false, "multitile": false }, + { "id": "stethoscope", "fg": 609, "rotates": false, "multitile": false }, + { "id": "steyr_aug", "fg": 567, "rotates": false, "multitile": false }, + { "id": "stick", "fg": 554, "rotates": false }, + { "id": "still", "fg": 738, "rotates": false, "multitile": false }, + { "id": "stout", "fg": 922, "rotates": false, "multitile": false }, + { "id": "straw_doll", "fg": 816, "rotates": false, "multitile": false }, + { "id": "straw_pile", "fg": 834, "rotates": false, "multitile": false }, + { "id": "string_36", "fg": 541, "rotates": false }, + { "id": "string_6", "fg": 541, "rotates": false }, + { "id": "subsuit_xl", "fg": 1020, "rotates": false, "multitile": false }, + { "id": "superglue", "fg": 387, "rotates": false, "multitile": false }, + { "id": "suppressor", "fg": 905, "rotates": false, "multitile": false }, + { "id": "surv_carbine_223", "fg": 527, "rotates": false, "multitile": false }, + { "id": "surv_hand_cannon", "fg": 536, "rotates": false, "multitile": false }, + { "id": "surv_rocket_launcher", "fg": 825, "rotates": false, "multitile": false }, + { "id": "surv_six_shooter", "fg": 536, "rotates": false, "multitile": false }, + { "id": "survival_marker", "fg": 466, "rotates": false, "multitile": false }, + { "id": "survivor_machete", "fg": 674, "rotates": false, "multitile": false }, + { "id": "survivor_mess_kit", "fg": 823, "rotates": false, "multitile": false }, + { "id": "survivor_special_700", "fg": 527, "rotates": false, "multitile": false }, + { "id": "survivormap", "fg": 605, "rotates": false, "multitile": false }, + { "id": "sw629", "fg": 536, "rotates": false, "multitile": false }, + { "id": "sw_22", "fg": 536, "rotates": false, "multitile": false }, + { "id": "sw_500", "fg": 536, "rotates": false, "multitile": false }, + { "id": "sw_610", "fg": 536, "rotates": false, "multitile": false }, + { "id": "sw_619", "fg": 536, "rotates": false, "multitile": false }, + { "id": "swage", "fg": 750, "rotates": false, "multitile": false }, + { "id": "sweet_water", "fg": 921, "rotates": false, "multitile": false }, + { "id": "switchblade", "fg": 689, "rotates": false, "multitile": false }, + { "id": "sword_bayonet", "fg": 905, "rotates": false, "multitile": false }, + { "id": "sword_crude", "fg": 446, "rotates": false, "multitile": false }, + { "id": "sword_nail", "fg": 445, "rotates": false, "multitile": false }, + { "id": "sword_wood", "fg": 444, "rotates": false, "multitile": false }, + { "id": "syringe", "fg": 443, "rotates": false, "multitile": false }, + { "id": "syrup", "fg": 922, "rotates": false, "multitile": false }, + { "id": "talking_doll", "fg": 734, "rotates": false, "multitile": false }, + { "id": "tanbark", "fg": 803, "rotates": false, "multitile": false }, + { "id": "tanned_hide", "fg": 386, "rotates": false, "multitile": false }, + { "id": "tanned_pelt", "fg": 385, "rotates": false, "multitile": false }, + { "id": "tanning_hide", "fg": 806, "rotates": false, "multitile": false }, + { "id": "tanning_pelt", "fg": 805, "rotates": false, "multitile": false }, + { "id": "tanto", "fg": 677, "rotates": false, "multitile": false }, + { "id": "tazer", "fg": 656, "rotates": false, "multitile": false }, + { "id": "tea", "fg": 922, "rotates": false, "multitile": false }, + { "id": "teapot", "fg": 935, "rotates": false, "multitile": false }, + { "id": "tec9", "fg": 534, "rotates": false, "multitile": false }, + { "id": "teddy", "fg": 817, "rotates": false, "multitile": false }, + { "id": "telepad", "fg": 930, "rotates": false, "multitile": false }, + { "id": "teleporter", "fg": 625, "rotates": false, "multitile": false }, + { "id": "teleumbrella", "fg": 492, "rotates": false, "multitile": false }, + { "id": "television", "fg": 421, "rotates": false, "multitile": false }, + { "id": "tent_kit", "fg": 254, "rotates": false, "multitile": false }, + { "id": "tequila", "fg": 922, "rotates": false, "multitile": false }, + { "id": "thermometer", "fg": 838, "rotates": false, "multitile": false }, + { "id": "thread", "fg": 871, "rotates": false, "multitile": false }, + { "id": "throw_extinguisher", "fg": 586, "rotates": false, "multitile": false }, + { "id": "tihar", "fg": 552, "rotates": false, "multitile": false }, + { "id": "tin", "fg": 891, "rotates": false, "multitile": false }, + { "id": "tin_plate", "fg": 433, "rotates": false, "multitile": false }, + { "id": "toaster", "fg": 423, "rotates": false, "multitile": false }, + { "id": "tokarev", "fg": 536, "rotates": false, "multitile": false }, + { "id": "tonfa", "fg": 453, "rotates": false, "multitile": false }, + { "id": "tonfa_wood", "fg": 455, "rotates": false, "multitile": false }, + { "id": "tongs", "fg": 748, "rotates": false, "multitile": false }, + { "id": "tool_anfo_charge", "fg": 839, "rotates": false, "multitile": false }, + { "id": "tool_anfo_charge_act", "fg": 840, "rotates": false, "multitile": false }, + { "id": "tool_black_powder_charge", "fg": 794, "rotates": false, "multitile": false }, + { "id": "tool_black_powder_charge_act", "fg": 795, "rotates": false, "multitile": false }, + { "id": "tool_rdx_charge", "fg": 839, "rotates": false, "multitile": false }, + { "id": "tool_rdx_charge_act", "fg": 840, "rotates": false, "multitile": false }, + { "id": "tool_rdx_sand_bomb", "fg": 627, "rotates": false, "multitile": false }, + { "id": "tool_rdx_sand_bomb_act", "fg": 628, "rotates": false, "multitile": false }, + { "id": "toolbox", "fg": 754, "rotates": false, "multitile": false }, + { "id": "torch", "fg": 695, "rotates": false, "multitile": false }, + { "id": "torch_done", "fg": 415, "rotates": false, "multitile": false }, + { "id": "torch_lit", "fg": 696, "rotates": false, "multitile": false }, + { "id": "touristmap", "fg": 605, "rotates": false, "multitile": false }, + { "id": "towel", "fg": 1032, "rotates": true }, + { "id": "transponder", "fg": 939, "rotates": false, "multitile": false }, + { "id": "trex_gun", "fg": 543, "rotates": false, "multitile": false }, + { "id": "trimmer_off", "fg": 557, "rotates": false, "multitile": false }, + { "id": "trimmer_on", "fg": 557, "rotates": false, "multitile": false }, + { "id": "triple_sec", "fg": 923, "rotates": false, "multitile": false }, + { "id": "tripwire", "fg": 617, "rotates": false, "multitile": false }, + { "id": "tuned_mechanism", "fg": 905, "rotates": false, "multitile": false }, + { "id": "two_way_radio", "fg": 597, "rotates": false, "multitile": false }, + { "id": "u_shotgun", "fg": 905, "rotates": false, "multitile": false }, + { "id": "ugl_buttstock", "fg": 905, "rotates": false, "multitile": false }, + { "id": "umbrella", "fg": 492, "rotates": false, "multitile": false }, + { "id": "unbio_blaster_gun", "fg": 572, "rotates": false, "multitile": false }, + { "id": "usb_drive", "fg": 406, "rotates": false, "multitile": false }, + { "id": "usp_45", "fg": 536, "rotates": false, "multitile": false }, + { "id": "usp_9mm", "fg": 536, "rotates": false, "multitile": false }, + { "id": "uzi", "fg": 534, "rotates": false, "multitile": false }, + { "id": "v12_combustion", "fg": 857, "rotates": false, "multitile": false }, + { "id": "v29", "fg": 570, "rotates": false, "multitile": false }, + { "id": "v29_cheap", "fg": 570, "rotates": false, "multitile": false }, + { "id": "v2_combustion", "fg": 857, "rotates": false, "multitile": false }, + { "id": "v6_combustion", "fg": 857, "rotates": false, "multitile": false }, + { "id": "v6_diesel", "fg": 857, "rotates": false, "multitile": false }, + { "id": "v8_combustion", "fg": 857, "rotates": false, "multitile": false }, + { "id": "v8_diesel", "fg": 857, "rotates": false, "multitile": false }, + { "id": "v_table", "fg": 901, "rotates": false }, + { "id": "vac_sealer", "fg": 729, "rotates": false, "multitile": false }, + { "id": "vacutainer", "fg": 667, "rotates": false, "multitile": false }, + { "id": "veggy_pickled", "fg": 1314, "rotates": false, "multitile": false }, + { "id": "veh_tracker", "fg": 916, "rotates": false }, + { "id": "vehicle_controls", "fg": 867, "rotates": false, "multitile": false }, + { "id": "vine_30", "fg": 610, "rotates": false, "multitile": false }, + { "id": "vinegar", "fg": 924, "rotates": false, "multitile": false }, + { "id": "vodka", "fg": 921, "rotates": false, "multitile": false }, + { "id": "vortex_stone", "fg": 660, "rotates": false, "multitile": false }, + { "id": "w_paint", "fg": 411, "rotates": false, "multitile": false }, + { "id": "waffleiron", "fg": 399, "rotates": false, "multitile": false }, + { "id": "wakizashi", "fg": 677, "rotates": false, "multitile": false }, + { "id": "wakizashi_fake", "fg": 677, "rotates": false, "multitile": false }, + { "id": "walther_ppk", "fg": 536, "rotates": false, "multitile": false }, + { "id": "warhammer", "fg": 489, "rotates": false, "multitile": false }, + { "id": "wasp_sting", "fg": 461, "rotates": false, "multitile": false }, + { "id": "water_clean", "fg": 921, "rotates": false, "multitile": false }, + { "id": "water_faucet", "fg": 779, "rotates": false }, + { "id": "water_mineral", "fg": 921, "rotates": false, "multitile": false }, + { "id": "water_purifier", "fg": 596, "rotates": false, "multitile": false }, + { "id": "watercannon", "fg": 552, "rotates": false, "multitile": false }, + { "id": "waterproof_gunmod", "fg": 905, "rotates": false, "multitile": false }, + { "id": "waterskin2", "fg": 378, "rotates": false, "multitile": false }, + { "id": "waterskin3", "fg": 378, "rotates": false, "multitile": false }, + { "id": "waterskin", "fg": 378, "rotates": false, "multitile": false }, + { "id": "wax", "fg": 1362, "rotates": false, "multitile": false }, + { "id": "wearable_light", "fg": 588, "rotates": false, "multitile": false }, + { "id": "wearable_light_on", "fg": 589, "rotates": false, "multitile": false }, + { "id": "wearable_rx12", "fg": 538, "rotates": false, "multitile": false }, + { "id": "weeks_old_newspaper", "fg": 884, "rotates": false, "multitile": false }, + { "id": "welder", "fg": 668, "rotates": false, "multitile": false }, + { "id": "welder_crude", "fg": 737, "rotates": false, "multitile": false }, + { "id": "weldrig", "fg": 862, "rotates": false, "multitile": false }, + { "id": "well_pump", "fg": 776, "rotates": false, "multitile": false }, + { "id": "wheel", "fg": 2307, "rotates": false, "multitile": false }, + { "id": "wheel_armor", "fg": 2334, "rotates": false, "multitile": false }, + { "id": "wheel_bicycle", "fg": 2309, "rotates": false, "multitile": false }, + { "id": "wheel_caster", "fg": 2309, "rotates": false, "multitile": false }, + { "id": "wheel_metal", "fg": 2307, "rotates": false, "multitile": false }, + { "id": "wheel_motorbike", "fg": 2306, "rotates": false, "multitile": false }, + { "id": "wheel_small", "fg": 2309, "rotates": false, "multitile": false }, + { "id": "wheel_wheelchair", "fg": 778, "rotates": false, "multitile": false }, + { "id": "wheel_wide", "fg": 2308, "rotates": false, "multitile": false }, + { "id": "wheel_wood", "fg": 2285, "rotates": false, "multitile": false }, + { "id": "wheel_wood_b", "fg": 2286, "rotates": false, "multitile": false }, + { "id": "whiskey", "fg": 922, "rotates": false, "multitile": false }, + { "id": "win70", "fg": 527, "rotates": false, "multitile": false }, + { "id": "wine_cabernet", "fg": 1423, "rotates": false, "multitile": false }, + { "id": "wine_chardonnay", "fg": 924, "rotates": false, "multitile": false }, + { "id": "wine_noir", "fg": 1423, "rotates": false, "multitile": false }, + { "id": "wine_riesling", "fg": 924, "rotates": false, "multitile": false }, + { "id": "wire", "fg": 448, "rotates": false, "multitile": false }, + { "id": "wire_barbed", "fg": 448, "rotates": false, "multitile": false }, + { "id": "withered", "fg": 384, "rotates": false, "multitile": false }, + { "id": "wood_plate", "fg": 483, "rotates": false, "multitile": false }, + { "id": "wood_smoother", "fg": 455, "rotates": false, "multitile": false }, + { "id": "wooden_barrel", "fg": 938, "rotates": false }, + { "id": "wrapper", "fg": 506, "rotates": true }, + { "id": "wrench", "fg": 705, "rotates": false, "multitile": false }, + { "id": "wristrocket", "fg": 609, "rotates": false, "multitile": false }, + { "id": "xacto", "fg": 671, "rotates": false, "multitile": false }, + { "id": "xlframe", "fg": 913, "rotates": false }, + { "id": "y_carpet", "fg": 758, "rotates": false }, + { "id": "y_paint", "fg": 436, "rotates": false, "multitile": false }, + { "id": "yarn", "fg": 871, "rotates": false, "multitile": false }, + { "id": "zweifire_off", "fg": 685, "rotates": false, "multitile": false }, + { "id": "zweifire_on", "fg": 686, "rotates": false, "multitile": false }, + { "id": "zweihander", "fg": 684, "rotates": false, "multitile": false }, + { "id": "zweihander_fake", "fg": 684, "rotates": false, "multitile": false }, + { "id": "20x66_beanbag", "fg": 982, "rotates": false, "multitile": false }, + { "id": "20x66_bootleg_flechette", "fg": 982, "rotates": false, "multitile": false }, + { "id": "20x66_bootleg_shot", "fg": 982, "rotates": false, "multitile": false }, + { "id": "20x66_bootleg_slug", "fg": 982, "rotates": false, "multitile": false }, + { "id": "20x66_exp", "fg": 982, "rotates": false, "multitile": false }, + { "id": "20x66_flare", "fg": 982, "rotates": false, "multitile": false }, + { "id": "20x66_flechette", "fg": 982, "rotates": false, "multitile": false }, + { "id": "20x66_frag", "fg": 982, "rotates": false, "multitile": false }, + { "id": "20x66_inc", "fg": 982, "rotates": false, "multitile": false }, + { "id": "20x66_shot", "fg": 982, "rotates": false, "multitile": false }, + { "id": "20x66_slug", "fg": 982, "rotates": false, "multitile": false }, + { "id": "36navy", "fg": 539, "rotates": false, "multitile": false }, + { "id": "40x46mm_m651", "fg": 984, "rotates": false, "multitile": false }, + { "id": "44army", "fg": 539, "rotates": false, "multitile": false }, + { "id": "50_casing", "fg": 983, "rotates": false, "multitile": false }, + { "id": "50_incendiary", "fg": 980, "rotates": false, "multitile": false }, + { "id": "50bmg", "fg": 980, "rotates": false, "multitile": false }, + { "id": "50ss", "fg": 980, "rotates": false, "multitile": false }, + { "id": "arrow_cf", "fg": 890, "rotates": false, "multitile": false }, + { "id": "arrow_exploding", "fg": 890, "rotates": false, "multitile": false }, + { "id": "arrow_field_point_fletched", "fg": 890, "rotates": false, "multitile": false }, + { "id": "arrow_fire_hardened_fletched", "fg": 890, "rotates": false, "multitile": false }, + { "id": "arrow_flamming", "fg": 890, "rotates": false, "multitile": false }, + { "id": "arrow_heavy_field_point_fletched", "fg": 890, "rotates": false, "multitile": false }, + { "id": "arrow_heavy_fire_hardened_fletched", "fg": 890, "rotates": false, "multitile": false }, + { "id": "arrow_metal", "fg": 890, "rotates": false, "multitile": false }, + { "id": "arrow_metal_sharpened_fletched", "fg": 890, "rotates": false, "multitile": false }, + { "id": "arrow_plastic", "fg": 890, "rotates": false, "multitile": false }, + { "id": "arrow_small_game_fletched", "fg": 890, "rotates": false, "multitile": false }, + { "id": "arrow_wood", "fg": 890, "rotates": false, "multitile": false }, + { "id": "arrow_wood_heavy", "fg": 890, "rotates": false, "multitile": false }, + { "id": "bolt_explosive", "fg": 890, "rotates": false, "multitile": false }, + { "id": "bolt_metal", "fg": 890, "rotates": false, "multitile": false }, + { "id": "bolt_steel", "fg": 890, "rotates": false, "multitile": false }, + { "id": "bolt_wood", "fg": 890, "rotates": false, "multitile": false }, + { "id": "signal_flare", "fg": 979, "rotates": false, "multitile": false }, + { "id": "101_carpentry", "fg": 989, "rotates": false, "multitile": false }, + { "id": "SICP", "fg": 993, "rotates": false, "multitile": false }, + { "id": "ZSG", "fg": 992, "rotates": false, "multitile": false }, + { "id": "adv_chemistry", "fg": 989, "rotates": false, "multitile": false }, + { "id": "advanced_electronics", "fg": 987, "rotates": false, "multitile": false }, + { "id": "atomic_survival", "fg": 986, "rotates": false, "multitile": false }, + { "id": "book_archery", "fg": 988, "rotates": false, "multitile": false }, + { "id": "book_icef", "fg": 993, "rotates": false, "multitile": false }, + { "id": "brewing_cookbook", "fg": 992, "rotates": false, "multitile": false }, + { "id": "carpentry_book", "fg": 989, "rotates": false, "multitile": false }, + { "id": "computer_science", "fg": 993, "rotates": false, "multitile": false }, + { "id": "cookbook", "fg": 988, "rotates": false, "multitile": false }, + { "id": "cookbook_human", "fg": 988, "rotates": false, "multitile": false }, + { "id": "cookbook_italian", "fg": 988, "rotates": false, "multitile": false }, + { "id": "cookbook_sushi", "fg": 996, "rotates": false }, + { "id": "decoy_anarch", "fg": 991, "rotates": false }, + { "id": "decoy_elfa", "fg": 991, "rotates": false }, + { "id": "emergency_book", "fg": 987, "rotates": false, "multitile": false }, + { "id": "essay_book", "fg": 989, "rotates": false, "multitile": false }, + { "id": "fairy_tales", "fg": 994, "rotates": false, "multitile": false }, + { "id": "family_cookbook", "fg": 986, "rotates": false, "multitile": false }, + { "id": "fun_survival", "fg": 988, "rotates": false, "multitile": false }, + { "id": "glassblowing_book", "fg": 995, "rotates": false, "multitile": false }, + { "id": "guidebook", "fg": 991, "rotates": false, "multitile": false }, + { "id": "holybook_bible1", "fg": 996, "rotates": false }, + { "id": "holybook_bible2", "fg": 991, "rotates": false }, + { "id": "holybook_bible3", "fg": 991, "rotates": false }, + { "id": "holybook_granth", "fg": 996, "rotates": false }, + { "id": "holybook_hadith", "fg": 991, "rotates": false }, + { "id": "holybook_kallisti", "fg": 994, "rotates": false }, + { "id": "holybook_kojiki", "fg": 991, "rotates": false }, + { "id": "holybook_mormon", "fg": 993, "rotates": false }, + { "id": "holybook_pastafarian", "fg": 994, "rotates": false }, + { "id": "holybook_quran", "fg": 991, "rotates": false }, + { "id": "holybook_scientology", "fg": 996, "rotates": false }, + { "id": "holybook_slack", "fg": 994, "rotates": false }, + { "id": "holybook_sutras", "fg": 989, "rotates": false }, + { "id": "holybook_talmud", "fg": 994, "rotates": false }, + { "id": "holybook_tanakh", "fg": 991, "rotates": false }, + { "id": "holybook_tripitaka", "fg": 994, "rotates": false }, + { "id": "holybook_upanishads", "fg": 987, "rotates": false }, + { "id": "holybook_vedas", "fg": 989, "rotates": false }, + { "id": "howto_computer", "fg": 986, "rotates": false, "multitile": false }, + { "id": "howto_traps", "fg": 988, "rotates": false, "multitile": false }, + { "id": "mag_barter", "fg": 987, "rotates": false, "multitile": false }, + { "id": "mag_computer", "fg": 988, "rotates": false, "multitile": false }, + { "id": "mag_cutting", "fg": 990, "rotates": false, "multitile": false }, + { "id": "mag_dude", "fg": 993, "rotates": false, "multitile": false }, + { "id": "mag_fieldrepair", "fg": 986, "rotates": false, "multitile": false }, + { "id": "mag_launcher", "fg": 989, "rotates": false, "multitile": false }, + { "id": "mag_mechanics", "fg": 989, "rotates": false, "multitile": false }, + { "id": "mag_melee", "fg": 990, "rotates": false, "multitile": false }, + { "id": "mag_pistol", "fg": 991, "rotates": false, "multitile": false }, + { "id": "mag_rifle", "fg": 988, "rotates": false, "multitile": false }, + { "id": "mag_shotgun", "fg": 988, "rotates": false, "multitile": false }, + { "id": "mag_smg", "fg": 991, "rotates": false, "multitile": false }, + { "id": "mag_stabbing", "fg": 990, "rotates": false, "multitile": false }, + { "id": "mag_survival", "fg": 988, "rotates": false, "multitile": false }, + { "id": "mag_unarmed", "fg": 989, "rotates": false, "multitile": false }, { "id": [ "mag_tv", @@ -2335,3174 +2335,3174 @@ "mag_bashing", "mag_archery" ], - "fg": 955 - }, - { "id": "manual_aikido", "fg": 984, "rotates": false }, - { "id": "manual_archery", "fg": 976, "rotates": false, "multitile": false }, - { "id": "manual_bashing", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_boxing", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_brawl", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_business", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_capoeira", "fg": 984, "rotates": false }, - { "id": "manual_carpentry", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_centipede", "fg": 984, "rotates": false }, - { "id": "manual_computers", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_crane", "fg": 984, "rotates": false }, - { "id": "manual_cutting", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_dodge", "fg": 977, "rotates": false, "multitile": false }, - { "id": "manual_dragon", "fg": 984, "rotates": false }, - { "id": "manual_driving", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_electronics", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_eskrima", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_fabrication", "fg": 979, "rotates": false, "multitile": false }, - { "id": "manual_fencing", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_first_aid", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_gun", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_judo", "fg": 984, "rotates": false }, - { "id": "manual_karate", "fg": 984, "rotates": false }, - { "id": "manual_knives", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_krav_maga", "fg": 984, "rotates": false }, - { "id": "manual_launcher", "fg": 976, "rotates": false, "multitile": false }, - { "id": "manual_leopard", "fg": 984, "rotates": false }, - { "id": "manual_lizard", "fg": 984, "rotates": false }, - { "id": "manual_mechanics", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_melee", "fg": 980, "rotates": false, "multitile": false }, - { "id": "manual_muay_thai", "fg": 984, "rotates": false }, - { "id": "manual_ninjutsu", "fg": 984, "rotates": false }, - { "id": "manual_niten", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_pistol", "fg": 977, "rotates": false, "multitile": false }, - { "id": "manual_rifle", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_scorpion", "fg": 984, "rotates": false }, - { "id": "manual_shotgun", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_silat", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_smg", "fg": 982, "rotates": false, "multitile": false }, - { "id": "manual_snake", "fg": 984, "rotates": false }, - { "id": "manual_speech", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_stabbing", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_survival", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_swimming", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_taekwondo", "fg": 984, "rotates": false }, - { "id": "manual_tai_chi", "fg": 984, "rotates": false }, - { "id": "manual_tailor", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_throw", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_tiger", "fg": 984, "rotates": false }, - { "id": "manual_toad", "fg": 984, "rotates": false }, - { "id": "manual_traps", "fg": 978, "rotates": false, "multitile": false }, - { "id": "manual_venom_snake", "fg": 984, "rotates": false }, - { "id": "manual_zui_quan", "fg": 984, "rotates": false }, - { "id": "many_years_old_newspaper", "fg": 883, "rotates": false, "multitile": false }, - { "id": "modern_tanner", "fg": 976, "rotates": false, "multitile": false }, - { "id": "months_old_newspaper", "fg": 883, "rotates": false, "multitile": false }, - { "id": "newest_newspaper", "fg": 883, "rotates": false, "multitile": false }, - { "id": "news_regional", "fg": 980, "rotates": false, "multitile": false }, - { "id": "novel_adventure", "fg": 976, "rotates": false, "multitile": false }, - { "id": "novel_buddy", "fg": 979, "rotates": false, "multitile": false }, - { "id": "novel_coa", "fg": 978, "rotates": false, "multitile": false }, - { "id": "novel_crime", "fg": 977, "rotates": false, "multitile": false }, - { "id": "novel_drama", "fg": 982, "rotates": false, "multitile": false }, - { "id": "novel_experimental", "fg": 977, "rotates": false, "multitile": false }, - { "id": "novel_fantasy", "fg": 982, "rotates": false, "multitile": false }, - { "id": "novel_horror", "fg": 982, "rotates": false, "multitile": false }, - { "id": "novel_mystery", "fg": 982, "rotates": false, "multitile": false }, - { "id": "novel_pulp", "fg": 981, "rotates": false, "multitile": false }, - { "id": "novel_romance", "fg": 982, "rotates": false, "multitile": false }, - { "id": "novel_samurai", "fg": 978, "rotates": false, "multitile": false }, - { "id": "novel_satire", "fg": 981, "rotates": false, "multitile": false }, - { "id": "novel_scifi", "fg": 982, "rotates": false, "multitile": false }, - { "id": "novel_sports", "fg": 984, "rotates": false, "multitile": false }, - { "id": "novel_spy", "fg": 982, "rotates": false, "multitile": false }, - { "id": "novel_swash", "fg": 982, "rotates": false, "multitile": false }, - { "id": "novel_thriller", "fg": 984, "rotates": false, "multitile": false }, - { "id": "novel_tragedy", "fg": 982, "rotates": false, "multitile": false }, - { "id": "novel_war", "fg": 976, "rotates": false, "multitile": false }, - { "id": "novel_western", "fg": 976, "rotates": false, "multitile": false }, - { "id": "one_year_old_newspaper", "fg": 883, "rotates": false, "multitile": false }, - { "id": "philosophy_book", "fg": 977, "rotates": false, "multitile": false }, - { "id": "phonebook", "fg": 979, "rotates": false }, - { "id": "photo_album", "fg": 976, "rotates": false, "multitile": false }, + "fg": 962 + }, + { "id": "manual_aikido", "fg": 994, "rotates": false }, + { "id": "manual_archery", "fg": 986, "rotates": false, "multitile": false }, + { "id": "manual_bashing", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_boxing", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_brawl", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_business", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_capoeira", "fg": 994, "rotates": false }, + { "id": "manual_carpentry", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_centipede", "fg": 994, "rotates": false }, + { "id": "manual_computers", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_crane", "fg": 994, "rotates": false }, + { "id": "manual_cutting", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_dodge", "fg": 987, "rotates": false, "multitile": false }, + { "id": "manual_dragon", "fg": 994, "rotates": false }, + { "id": "manual_driving", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_electronics", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_eskrima", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_fabrication", "fg": 989, "rotates": false, "multitile": false }, + { "id": "manual_fencing", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_first_aid", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_gun", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_judo", "fg": 994, "rotates": false }, + { "id": "manual_karate", "fg": 994, "rotates": false }, + { "id": "manual_knives", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_krav_maga", "fg": 994, "rotates": false }, + { "id": "manual_launcher", "fg": 986, "rotates": false, "multitile": false }, + { "id": "manual_leopard", "fg": 994, "rotates": false }, + { "id": "manual_lizard", "fg": 994, "rotates": false }, + { "id": "manual_mechanics", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_melee", "fg": 990, "rotates": false, "multitile": false }, + { "id": "manual_muay_thai", "fg": 994, "rotates": false }, + { "id": "manual_ninjutsu", "fg": 994, "rotates": false }, + { "id": "manual_niten", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_pistol", "fg": 987, "rotates": false, "multitile": false }, + { "id": "manual_rifle", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_scorpion", "fg": 994, "rotates": false }, + { "id": "manual_shotgun", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_silat", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_smg", "fg": 992, "rotates": false, "multitile": false }, + { "id": "manual_snake", "fg": 994, "rotates": false }, + { "id": "manual_speech", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_stabbing", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_survival", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_swimming", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_taekwondo", "fg": 994, "rotates": false }, + { "id": "manual_tai_chi", "fg": 994, "rotates": false }, + { "id": "manual_tailor", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_throw", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_tiger", "fg": 994, "rotates": false }, + { "id": "manual_toad", "fg": 994, "rotates": false }, + { "id": "manual_traps", "fg": 988, "rotates": false, "multitile": false }, + { "id": "manual_venom_snake", "fg": 994, "rotates": false }, + { "id": "manual_zui_quan", "fg": 994, "rotates": false }, + { "id": "many_years_old_newspaper", "fg": 884, "rotates": false, "multitile": false }, + { "id": "modern_tanner", "fg": 986, "rotates": false, "multitile": false }, + { "id": "months_old_newspaper", "fg": 884, "rotates": false, "multitile": false }, + { "id": "newest_newspaper", "fg": 884, "rotates": false, "multitile": false }, + { "id": "news_regional", "fg": 990, "rotates": false, "multitile": false }, + { "id": "novel_adventure", "fg": 986, "rotates": false, "multitile": false }, + { "id": "novel_buddy", "fg": 989, "rotates": false, "multitile": false }, + { "id": "novel_coa", "fg": 988, "rotates": false, "multitile": false }, + { "id": "novel_crime", "fg": 987, "rotates": false, "multitile": false }, + { "id": "novel_drama", "fg": 992, "rotates": false, "multitile": false }, + { "id": "novel_experimental", "fg": 987, "rotates": false, "multitile": false }, + { "id": "novel_fantasy", "fg": 992, "rotates": false, "multitile": false }, + { "id": "novel_horror", "fg": 992, "rotates": false, "multitile": false }, + { "id": "novel_mystery", "fg": 992, "rotates": false, "multitile": false }, + { "id": "novel_pulp", "fg": 991, "rotates": false, "multitile": false }, + { "id": "novel_romance", "fg": 992, "rotates": false, "multitile": false }, + { "id": "novel_samurai", "fg": 988, "rotates": false, "multitile": false }, + { "id": "novel_satire", "fg": 991, "rotates": false, "multitile": false }, + { "id": "novel_scifi", "fg": 992, "rotates": false, "multitile": false }, + { "id": "novel_sports", "fg": 994, "rotates": false, "multitile": false }, + { "id": "novel_spy", "fg": 992, "rotates": false, "multitile": false }, + { "id": "novel_swash", "fg": 992, "rotates": false, "multitile": false }, + { "id": "novel_thriller", "fg": 994, "rotates": false, "multitile": false }, + { "id": "novel_tragedy", "fg": 992, "rotates": false, "multitile": false }, + { "id": "novel_war", "fg": 986, "rotates": false, "multitile": false }, + { "id": "novel_western", "fg": 986, "rotates": false, "multitile": false }, + { "id": "one_year_old_newspaper", "fg": 884, "rotates": false, "multitile": false }, + { "id": "philosophy_book", "fg": 987, "rotates": false, "multitile": false }, + { "id": "phonebook", "fg": 989, "rotates": false }, + { "id": "photo_album", "fg": 986, "rotates": false, "multitile": false }, { "id": [ "child_book", "novel_erotic", "novel_road", "play_book", "poetry_book" ], - "fg": 987, + "fg": 997, "rotates": false, "multitile": false }, - { "id": "pocket_firearms", "fg": 976, "rotates": false, "multitile": false }, - { "id": "pocket_firstaid", "fg": 976, "rotates": false, "multitile": false }, - { "id": "pocket_survival", "fg": 978, "rotates": false, "multitile": false }, - { "id": "priest_diary", "fg": 983, "rotates": false, "multitile": false }, - { "id": "radio_book", "fg": 979, "rotates": false, "multitile": false }, - { "id": "recipe_alpha", "fg": 986, "rotates": false, "multitile": false }, - { "id": "recipe_animal", "fg": 986, "rotates": false }, - { "id": "recipe_arrows", "fg": 976, "rotates": false, "multitile": false }, - { "id": "recipe_atomic_battery", "fg": 883, "rotates": false, "multitile": false }, - { "id": "recipe_augs", "fg": 981, "rotates": false }, - { "id": "recipe_bows", "fg": 976, "rotates": false, "multitile": false }, - { "id": "recipe_bullets", "fg": 976, "rotates": false, "multitile": false }, - { "id": "recipe_caseless", "fg": 981, "rotates": false, "multitile": false }, - { "id": "recipe_chimera", "fg": 986, "rotates": false, "multitile": false }, - { "id": "recipe_creepy", "fg": 986, "rotates": false }, - { "id": "recipe_elfa", "fg": 981, "rotates": false }, - { "id": "recipe_lab_cvd", "fg": 985, "rotates": false, "multitile": false }, - { "id": "recipe_lab_elec", "fg": 979, "rotates": false }, - { "id": "recipe_labchem", "fg": 986, "rotates": false }, - { "id": "recipe_maiar", "fg": 986, "rotates": false }, - { "id": "recipe_medicalmut", "fg": 977, "rotates": false, "multitile": false }, - { "id": "recipe_melee", "fg": 985, "rotates": false, "multitile": false }, - { "id": "recipe_mil_augs", "fg": 981, "rotates": false }, - { "id": "recipe_mininuke_launch", "fg": 979, "rotates": false, "multitile": false }, - { "id": "recipe_raptor", "fg": 986, "rotates": false }, - { "id": "recipe_serum", "fg": 986, "rotates": false }, - { "id": "record_accounting", "fg": 983, "rotates": false, "multitile": false }, - { "id": "record_patient", "fg": 983, "rotates": false, "multitile": false }, - { "id": "story_book", "fg": 977, "rotates": false, "multitile": false }, - { "id": "survival_book", "fg": 978, "rotates": false, "multitile": false }, - { "id": "survnote", "fg": 883, "rotates": false, "multitile": false }, - { "id": "tailor_portfolio", "fg": 976, "rotates": false, "multitile": false }, - { "id": "tall_tales", "fg": 978, "rotates": false, "multitile": false }, - { "id": "textbook_anarch", "fg": 981, "rotates": false }, - { "id": "textbook_armeast", "fg": 982, "rotates": false, "multitile": false }, - { "id": "textbook_armwest", "fg": 983, "rotates": false, "multitile": false }, - { "id": "textbook_business", "fg": 983, "rotates": false, "multitile": false }, - { "id": "textbook_carpentry", "fg": 983, "rotates": false, "multitile": false }, - { "id": "textbook_chemistry", "fg": 983, "rotates": false, "multitile": false }, - { "id": "textbook_computer", "fg": 977, "rotates": false, "multitile": false }, - { "id": "textbook_electronics", "fg": 977, "rotates": false, "multitile": false }, - { "id": "textbook_fabrication", "fg": 978, "rotates": false, "multitile": false }, - { "id": "textbook_fireman", "fg": 979, "rotates": false, "multitile": false }, - { "id": "textbook_firstaid", "fg": 977, "rotates": false, "multitile": false }, - { "id": "textbook_gaswarfare", "fg": 979, "rotates": false, "multitile": false }, - { "id": "textbook_mechanics", "fg": 983, "rotates": false, "multitile": false }, - { "id": "textbook_robots", "fg": 983, "rotates": false, "multitile": false }, - { "id": "textbook_speech", "fg": 979, "rotates": false, "multitile": false }, - { "id": "textbook_survival", "fg": 978, "rotates": false, "multitile": false }, - { "id": "textbook_tailor", "fg": 978, "rotates": false, "multitile": false }, - { "id": "textbook_traps", "fg": 978, "rotates": false, "multitile": false }, - { "id": "textbook_weapeast", "fg": 985, "rotates": false, "multitile": false }, - { "id": "textbook_weapwest", "fg": 979, "rotates": false, "multitile": false }, - { "id": "trappers_companion", "fg": 976, "rotates": false, "multitile": false }, - { "id": "visions_solitude", "fg": 983, "rotates": false, "multitile": false }, - { "id": "welding_book", "fg": 977, "rotates": false, "multitile": false }, - { "id": "years_old_newspaper", "fg": 883, "rotates": false, "multitile": false }, - { "id": "10gal_hat", "fg": 1242, "rotates": false, "multitile": false }, - { "id": "2byarm_guard", "fg": 1200, "rotates": false, "multitile": false }, - { "id": "2byshin_guard", "fg": 1200, "rotates": false, "multitile": false }, - { "id": "aep_suit", "fg": 1231, "rotates": false, "multitile": false }, - { "id": "american_flag", "fg": 1181, "rotates": false, "multitile": false }, - { "id": "anbc_suit", "fg": 1231, "rotates": false, "multitile": false }, - { "id": "apron_leather", "fg": 1222, "rotates": false, "multitile": false }, - { "id": "arm_splint", "fg": 1200, "rotates": false, "multitile": false }, - { "id": "arm_warmers", "fg": 1235, "rotates": false, "multitile": false }, - { "id": "armguard_chitin", "fg": 1113, "rotates": false, "multitile": false }, - { "id": "armguard_hard", "fg": 1111, "rotates": false, "multitile": false }, - { "id": "armguard_metal", "fg": 1110, "rotates": false, "multitile": false }, - { "id": "armguard_paper", "fg": 1111, "rotates": false, "multitile": false }, - { "id": "armguard_soft", "fg": 1110, "rotates": false, "multitile": false }, - { "id": "armor_blarmor", "fg": 1230, "rotates": false, "multitile": false }, - { "id": "armor_bone", "fg": 1229, "rotates": false, "multitile": false }, - { "id": "armor_chitin", "fg": 1066, "rotates": false, "multitile": false }, - { "id": "armor_farmor", "fg": 1054, "rotates": false, "multitile": false }, - { "id": "armor_larmor", "fg": 1230, "rotates": false, "multitile": false }, - { "id": "armor_lightplate", "fg": 1218, "rotates": false, "multitile": false }, - { "id": "armor_nomad", "fg": 1100, "rotates": false, "multitile": false }, - { "id": "armor_plarmor", "fg": 1209, "rotates": false, "multitile": false }, - { "id": "armor_plate", "fg": 1070, "rotates": false, "multitile": false }, - { "id": "armor_samurai", "fg": 1220, "rotates": false, "multitile": false }, - { "id": "armor_scrapsuit", "fg": 1209, "rotates": false, "multitile": false }, - { "id": "army_top", "fg": 1076, "rotates": false, "multitile": false }, - { "id": "b_shorts", "fg": 1255, "rotates": false, "multitile": false }, - { "id": "back_holster", "fg": 1172, "rotates": false, "multitile": false }, - { "id": "backpack", "fg": 1165, "rotates": false, "multitile": false }, - { "id": "backpack_leather", "fg": 1166, "rotates": false, "multitile": false }, - { "id": "badge_cybercop", "fg": 1180, "rotates": false, "multitile": false }, - { "id": "badge_deputy", "fg": 1180, "rotates": false, "multitile": false }, - { "id": "badge_detective", "fg": 1180, "rotates": false, "multitile": false }, - { "id": "badge_marshal", "fg": 1180, "rotates": false, "multitile": false }, - { "id": "badge_swat", "fg": 1180, "rotates": false, "multitile": false }, - { "id": "balclava", "fg": 1150, "rotates": false, "multitile": false }, - { "id": "bandana", "fg": 1160, "rotates": false, "multitile": false }, - { "id": "barrette", "fg": 995, "rotates": false, "multitile": false }, - { "id": "bastsandals", "fg": 1034, "rotates": false, "multitile": false }, - { "id": "beekeeping_gloves", "fg": 1240, "rotates": false, "multitile": false }, - { "id": "beekeeping_hood", "fg": 1207, "rotates": false, "multitile": false }, - { "id": "beekeeping_suit", "fg": 1109, "rotates": false, "multitile": false }, - { "id": "beret", "fg": 1153, "rotates": false, "multitile": false }, - { "id": "beret_wool", "fg": 1153, "rotates": false, "multitile": false }, - { "id": "bikini_top", "fg": 1078, "rotates": false, "multitile": false }, - { "id": "bikini_top_fur", "fg": 1080, "rotates": false, "multitile": false }, - { "id": "bikini_top_leather", "fg": 1079, "rotates": false, "multitile": false }, - { "id": "bindle", "fg": 1005, "rotates": false, "multitile": false }, - { "id": "blanket", "fg": 1182, "rotates": false, "multitile": false }, - { "id": "blazer", "fg": 1092, "rotates": false, "multitile": false }, - { "id": "bondage_mask", "fg": 1058, "rotates": false, "multitile": false }, - { "id": "bondage_suit", "fg": 1057, "rotates": false, "multitile": false }, - { "id": "bookplate", "fg": 1210, "rotates": false, "multitile": false }, - { "id": "boots", "fg": 1028, "rotates": false, "multitile": false }, - { "id": "boots_bone", "fg": 1228, "rotates": false, "multitile": false }, - { "id": "boots_bunker", "fg": 1227, "rotates": false, "multitile": false }, - { "id": "boots_chitin", "fg": 1038, "rotates": false, "multitile": false }, - { "id": "boots_combat", "fg": 1031, "rotates": false, "multitile": false }, - { "id": "boots_fsurvivor", "fg": 1213, "rotates": false, "multitile": false }, - { "id": "boots_fur", "fg": 1029, "rotates": false, "multitile": false }, - { "id": "boots_h20survivor", "fg": 1025, "rotates": false, "multitile": false }, - { "id": "boots_hiking", "fg": 1032, "rotates": false, "multitile": false }, - { "id": "boots_hsurvivor", "fg": 1213, "rotates": false, "multitile": false }, - { "id": "boots_larmor", "fg": 1028, "rotates": false, "multitile": false }, - { "id": "boots_lsurvivor", "fg": 1031, "rotates": false, "multitile": false }, - { "id": "boots_plate", "fg": 1213, "rotates": false, "multitile": false }, - { "id": "boots_rubber", "fg": 1227, "rotates": false, "multitile": false }, - { "id": "boots_steel", "fg": 1030, "rotates": false, "multitile": false }, - { "id": "boots_survivor", "fg": 1030, "rotates": false, "multitile": false }, - { "id": "boots_western", "fg": 1257, "rotates": false, "multitile": false }, - { "id": "boots_winter", "fg": 1033, "rotates": false, "multitile": false }, - { "id": "boots_wsurvivor", "fg": 1033, "rotates": false, "multitile": false }, - { "id": "boots_xlsurvivor", "fg": 1030, "rotates": false, "multitile": false }, - { "id": "bowhat", "fg": 1164, "rotates": false, "multitile": false }, - { "id": "boxer_shorts", "fg": 1039, "rotates": false, "multitile": false }, - { "id": "boxing_gloves", "fg": 1117, "rotates": false, "multitile": false }, - { "id": "boy_shorts", "fg": 1039, "rotates": false, "multitile": false }, - { "id": "bra", "fg": 1078, "rotates": false, "multitile": false }, - { "id": "briefcase", "fg": 928, "rotates": false, "multitile": false }, - { "id": "briefs", "fg": 1236, "rotates": false, "multitile": false }, - { "id": "bunker_coat", "fg": 1095, "rotates": false, "multitile": false }, - { "id": "bunker_pants", "fg": 1201, "rotates": false, "multitile": false }, - { "id": "camera", "fg": 787, "rotates": false, "multitile": false }, - { "id": "camera_pro", "fg": 788, "rotates": false, "multitile": false }, - { "id": "camisole", "fg": 1077, "rotates": false, "multitile": false }, - { "id": "ceramic_shard", "fg": 785, "rotates": false, "multitile": false }, - { "id": "chainmail_arms", "fg": 1110, "rotates": false, "multitile": false }, - { "id": "chainmail_hood", "fg": 1160, "rotates": false, "multitile": false }, - { "id": "chainmail_legs", "fg": 1110, "rotates": false, "multitile": false }, - { "id": "chainmail_suit", "fg": 1070, "rotates": false, "multitile": false }, - { "id": "chainmail_vest", "fg": 1105, "rotates": false, "multitile": false }, - { "id": "chaps_leather", "fg": 1045, "rotates": false, "multitile": false }, - { "id": "chestrig", "fg": 1108, "rotates": false, "multitile": false }, - { "id": "cleansuit", "fg": 1069, "rotates": false, "multitile": false }, - { "id": "cleats", "fg": 1025, "rotates": false, "multitile": false }, - { "id": "cloak", "fg": 1189, "rotates": false, "multitile": false }, - { "id": "cloak_fur", "fg": 1190, "rotates": false, "multitile": false }, - { "id": "cloak_leather", "fg": 1191, "rotates": false, "multitile": false }, - { "id": "clogs", "fg": 1034, "rotates": false, "multitile": false }, - { "id": "clownshoes", "fg": 1056, "rotates": false, "multitile": false }, - { "id": "coat_fur", "fg": 1103, "rotates": false, "multitile": false }, - { "id": "coat_fur_sf", "fg": 1103, "rotates": false, "multitile": false }, - { "id": "coat_lab", "fg": 1109, "rotates": false, "multitile": false }, - { "id": "coat_rain", "fg": 1095, "rotates": false, "multitile": false }, - { "id": "coat_winter", "fg": 1102, "rotates": false, "multitile": false }, - { "id": "collarpin", "fg": 413, "rotates": false, "multitile": false }, - { "id": "copper_bracelet", "fg": 1001, "rotates": false, "multitile": false }, - { "id": "copper_ear", "fg": 998, "rotates": false, "multitile": false }, - { "id": "corset", "fg": 1059, "rotates": false, "multitile": false }, - { "id": "cowboy_hat", "fg": 1241, "rotates": false, "multitile": false }, - { "id": "cowl_wool", "fg": 1160, "rotates": false, "multitile": false }, - { "id": "cured_hide", "fg": 801, "rotates": false, "multitile": false }, - { "id": "cured_pelt", "fg": 800, "rotates": false, "multitile": false }, - { "id": "dance_shoes", "fg": 1036, "rotates": false, "multitile": false }, - { "id": "depowered_armor", "fg": 1193, "rotates": false, "multitile": false }, - { "id": "depowered_helmet", "fg": 1194, "rotates": false, "multitile": false }, - { "id": "diamond_dental_grill", "fg": 415, "rotates": false, "multitile": false }, - { "id": "dinosuit", "fg": 1261, "rotates": false, "multitile": false }, - { "id": "dive_bag", "fg": 1171, "rotates": false, "multitile": false }, - { "id": "diving_watch", "fg": 1205, "rotates": false, "multitile": false }, - { "id": "down_blanket", "fg": 1182, "rotates": false, "multitile": false }, - { "id": "down_pillow", "fg": 784, "rotates": false, "multitile": false }, - { "id": "dragonskin", "fg": 1250, "rotates": false, "multitile": false }, - { "id": "dress", "fg": 1064, "rotates": false, "multitile": false }, - { "id": "dress_shirt", "fg": 1074, "rotates": false, "multitile": false }, - { "id": "dress_shoes", "fg": 1036, "rotates": false, "multitile": false }, - { "id": "dress_wedding", "fg": 1065, "rotates": false, "multitile": false }, - { "id": "duffelbag", "fg": 1168, "rotates": false, "multitile": false }, - { "id": "duster", "fg": 1098, "rotates": false, "multitile": false }, - { "id": "duster_fur", "fg": 1101, "rotates": false, "multitile": false }, - { "id": "duster_leather", "fg": 1100, "rotates": false, "multitile": false }, - { "id": "duster_survivor", "fg": 1100, "rotates": false, "multitile": false }, - { "id": "e_handcuffs", "fg": 789, "rotates": false, "multitile": false }, - { "id": "ear_plugs", "fg": 1251, "rotates": false, "multitile": false }, - { "id": "elbow_pads", "fg": 1112, "rotates": false, "multitile": false }, - { "id": "emer_blanket", "fg": 1184, "rotates": false, "multitile": false }, - { "id": "emer_blanket_on", "fg": 1184, "rotates": false, "multitile": false }, - { "id": "exploding_arrow_warhead", "fg": 888, "rotates": false, "multitile": false }, - { "id": "fancy_sunglasses", "fg": 1226, "rotates": false, "multitile": false }, - { "id": "fanny", "fg": 1171, "rotates": false, "multitile": false }, - { "id": "fc_hairpin", "fg": 994, "rotates": false, "multitile": false }, - { "id": "fedora", "fg": 1241, "rotates": false, "multitile": false }, - { "id": "fencing_jacket", "fg": 1109, "rotates": false, "multitile": false }, - { "id": "fencing_mask", "fg": 1160, "rotates": false, "multitile": false }, - { "id": "fencing_pants", "fg": 1004, "rotates": false, "multitile": false }, - { "id": "fire_gauntlets", "fg": 1126, "rotates": false, "multitile": false }, - { "id": "firehelmet", "fg": 1151, "rotates": false, "multitile": false }, - { "id": "fireman_belt", "fg": 1248, "rotates": false, "multitile": false }, - { "id": "fishing_waders", "fg": 1096, "rotates": false, "multitile": false }, - { "id": "flag_shirt", "fg": 1072, "rotates": false, "multitile": false }, - { "id": "flip_flops", "fg": 1035, "rotates": false, "multitile": false }, - { "id": "flotation_vest", "fg": 1099, "rotates": false, "multitile": false }, - { "id": "folding_poncho", "fg": 988, "rotates": false, "multitile": false }, - { "id": "folding_poncho_on", "fg": 1095, "rotates": false, "multitile": false }, - { "id": "football_armor", "fg": 1026, "rotates": false, "multitile": false }, - { "id": "footrags", "fg": 1035, "rotates": false, "multitile": false }, - { "id": "footrags_fur", "fg": 1034, "rotates": false, "multitile": false }, - { "id": "footrags_leather", "fg": 1034, "rotates": false, "multitile": false }, - { "id": "fsurvivor_suit", "fg": 1215, "rotates": false, "multitile": false }, - { "id": "fur", "fg": 802, "rotates": false, "multitile": false }, - { "id": "fur_blanket", "fg": 1183, "rotates": false, "multitile": false }, - { "id": "fur_cat_ears", "fg": 1080, "rotates": false, "multitile": false }, - { "id": "fur_collar", "fg": 1247, "rotates": false, "multitile": false }, - { "id": "fur_rollmat", "fg": 1186, "rotates": false, "multitile": false }, - { "id": "gauntlets_bone", "fg": 1240, "rotates": false, "multitile": false }, - { "id": "gauntlets_chitin", "fg": 1116, "rotates": false, "multitile": false }, - { "id": "gauntlets_larmor", "fg": 1121, "rotates": false, "multitile": false }, - { "id": "geta", "fg": 1024, "rotates": false, "multitile": false }, - { "id": "glasses_bal", "fg": 1141, "rotates": false, "multitile": false }, - { "id": "glasses_bifocal", "fg": 1135, "rotates": false, "multitile": false }, - { "id": "glasses_eye", "fg": 1133, "rotates": false, "multitile": false }, - { "id": "glasses_monocle", "fg": 1142, "rotates": false, "multitile": false }, - { "id": "glasses_reading", "fg": 1134, "rotates": false, "multitile": false }, - { "id": "glasses_safety", "fg": 1136, "rotates": false, "multitile": false }, - { "id": "glove_jackson", "fg": 781, "rotates": false, "multitile": false }, - { "id": "gloves_bag", "fg": 1116, "rotates": false, "multitile": false }, - { "id": "gloves_fingerless", "fg": 1123, "rotates": false, "multitile": false }, - { "id": "gloves_fingerless_mod", "fg": 1123, "rotates": false, "multitile": false }, - { "id": "gloves_fsurvivor", "fg": 1062, "rotates": false, "multitile": false }, - { "id": "gloves_fur", "fg": 1118, "rotates": false, "multitile": false }, - { "id": "gloves_h20survivor", "fg": 1062, "rotates": false, "multitile": false }, - { "id": "gloves_hsurvivor", "fg": 1062, "rotates": false, "multitile": false }, - { "id": "gloves_leather", "fg": 1121, "rotates": false, "multitile": false }, - { "id": "gloves_light", "fg": 1116, "rotates": false, "multitile": false }, - { "id": "gloves_liner", "fg": 1115, "rotates": false, "multitile": false }, - { "id": "gloves_lsurvivor", "fg": 1114, "rotates": false, "multitile": false }, - { "id": "gloves_medical", "fg": 1125, "rotates": false, "multitile": false }, - { "id": "gloves_plate", "fg": 1062, "rotates": false, "multitile": false }, - { "id": "gloves_rubber", "fg": 1124, "rotates": false, "multitile": false }, - { "id": "gloves_survivor", "fg": 1126, "rotates": false, "multitile": false }, - { "id": "gloves_tactical", "fg": 1122, "rotates": false, "multitile": false }, - { "id": "gloves_winter", "fg": 1120, "rotates": false, "multitile": false }, - { "id": "gloves_wool", "fg": 1119, "rotates": false, "multitile": false }, - { "id": "gloves_wraps", "fg": 1115, "rotates": false, "multitile": false }, - { "id": "gloves_wraps_fur", "fg": 1123, "rotates": false, "multitile": false }, - { "id": "gloves_wraps_leather", "fg": 1123, "rotates": false, "multitile": false }, - { "id": "gloves_wsurvivor", "fg": 1120, "rotates": false, "multitile": false }, - { "id": "gloves_xlsurvivor", "fg": 1126, "rotates": false, "multitile": false }, - { "id": "gobag", "fg": 1167, "rotates": false, "multitile": false }, - { "id": "goggles_ir", "fg": 1018, "rotates": false, "multitile": false }, - { "id": "goggles_ir_on", "fg": 1018, "rotates": false, "multitile": false }, - { "id": "goggles_nv", "fg": 1140, "rotates": false, "multitile": false }, - { "id": "goggles_nv_on", "fg": 1140, "rotates": false, "multitile": false }, - { "id": "goggles_ski", "fg": 1138, "rotates": false, "multitile": false }, - { "id": "goggles_swim", "fg": 1137, "rotates": false, "multitile": false }, - { "id": "goggles_welding", "fg": 1139, "rotates": false, "multitile": false }, - { "id": "gold_bracelet", "fg": 990, "rotates": false, "multitile": false }, - { "id": "gold_dental_grill", "fg": 415, "rotates": false, "multitile": false }, - { "id": "gold_ear", "fg": 996, "rotates": false, "multitile": false }, - { "id": "gold_watch", "fg": 1002, "rotates": false, "multitile": false }, - { "id": "greatcoat", "fg": 1021, "rotates": false }, - { "id": "h20survivor_suit", "fg": 1215, "rotates": false, "multitile": false }, - { "id": "hairpin", "fg": 993, "rotates": false, "multitile": false }, - { "id": "hakama_gi", "fg": 1043, "rotates": false, "multitile": false }, - { "id": "halter_top", "fg": 1063, "rotates": false, "multitile": false }, - { "id": "hand_crossbow", "fg": 879, "rotates": false, "multitile": false }, - { "id": "hat_ball", "fg": 1144, "rotates": false, "multitile": false }, - { "id": "hat_boonie", "fg": 1145, "rotates": false, "multitile": false }, - { "id": "hat_chef", "fg": 1206, "rotates": false, "multitile": false }, - { "id": "hat_cotton", "fg": 1146, "rotates": false, "multitile": false }, - { "id": "hat_fur", "fg": 1149, "rotates": false, "multitile": false }, - { "id": "hat_hard", "fg": 1151, "rotates": false, "multitile": false }, - { "id": "hat_hunting", "fg": 1148, "rotates": false, "multitile": false }, - { "id": "hat_knit", "fg": 1147, "rotates": false, "multitile": false }, - { "id": "hat_newsboy", "fg": 1146, "rotates": false, "multitile": false }, - { "id": "hat_noise_cancelling", "fg": 1252, "rotates": false, "multitile": false }, - { "id": "hazmat_suit", "fg": 1069, "rotates": false, "multitile": false }, - { "id": "headgear", "fg": 1027, "rotates": false, "multitile": false }, - { "id": "heels", "fg": 1037, "rotates": false, "multitile": false }, - { "id": "helmet_army", "fg": 1157, "rotates": false, "multitile": false }, - { "id": "helmet_ball", "fg": 1156, "rotates": false, "multitile": false }, - { "id": "helmet_barbute", "fg": 1219, "rotates": false, "multitile": false }, - { "id": "helmet_bike", "fg": 1154, "rotates": false, "multitile": false }, - { "id": "helmet_bone", "fg": 1232, "rotates": false, "multitile": false }, - { "id": "helmet_football", "fg": 1027, "rotates": false, "multitile": false }, - { "id": "helmet_hsurvivor", "fg": 1217, "rotates": false, "multitile": false }, - { "id": "helmet_kabuto", "fg": 1221, "rotates": false, "multitile": false }, - { "id": "helmet_larmor", "fg": 1246, "rotates": false, "multitile": false }, - { "id": "helmet_survivor", "fg": 1245, "rotates": false, "multitile": false }, - { "id": "helmet_xlsurvivor", "fg": 1245, "rotates": false, "multitile": false }, - { "id": "hood_rain", "fg": 1239, "rotates": false, "multitile": false }, - { "id": "hood_wsurvivor", "fg": 1003, "rotates": false, "multitile": false }, - { "id": "hoodie", "fg": 1086, "rotates": false, "multitile": false }, - { "id": "hot_pants", "fg": 1081, "rotates": false, "multitile": false }, - { "id": "hot_pants_fur", "fg": 1083, "rotates": false, "multitile": false }, - { "id": "hot_pants_leather", "fg": 1082, "rotates": false, "multitile": false }, - { "id": "jacket_army", "fg": 1048, "rotates": false, "multitile": false }, - { "id": "jacket_evac", "fg": 1090, "rotates": false, "multitile": false }, - { "id": "jacket_flannel", "fg": 1091, "rotates": false, "multitile": false }, - { "id": "jacket_jean", "fg": 1090, "rotates": false, "multitile": false }, - { "id": [ "jacket_leather", "jacket_windbreaker" ], "fg": 1093, "rotates": false, "multitile": false }, - { "id": "jacket_leather_red", "fg": 1102, "rotates": false, "multitile": false }, - { "id": "jacket_light", "fg": 1089, "rotates": false, "multitile": false }, - { "id": "jade_brooch", "fg": 1264, "rotates": false, "multitile": false }, - { "id": "jeans", "fg": 1042, "rotates": false, "multitile": false }, - { "id": "jeans_red", "fg": 1049, "rotates": false, "multitile": false }, - { "id": "jedi_cloak", "fg": 1192, "rotates": false, "multitile": false }, - { "id": "jersey", "fg": 1087, "rotates": false, "multitile": false }, - { "id": "judo_gi", "fg": 1055, "rotates": false, "multitile": false }, - { "id": "jumper_cable", "fg": 797, "rotates": false, "multitile": false }, - { "id": "jumper_cable_heavy", "fg": 797, "rotates": false, "multitile": false }, - { "id": "jumpsuit", "fg": 1053, "rotates": false, "multitile": false }, - { "id": "jumpsuit_xl", "fg": 1053, "rotates": false, "multitile": false }, - { "id": "karate_gi", "fg": 1055, "rotates": false, "multitile": false }, - { "id": "keffiyeh", "fg": 1127, "rotates": false, "multitile": false }, - { "id": "keikogi", "fg": 1109, "rotates": false, "multitile": false }, - { "id": "kevlar", "fg": 1094, "rotates": false, "multitile": false }, - { "id": "kilt", "fg": 1052, "rotates": false, "multitile": false }, - { "id": "knee_high_boots", "fg": 1257, "rotates": false, "multitile": false }, - { "id": "knee_pads", "fg": 1203, "rotates": false, "multitile": false }, - { "id": "knit_scarf", "fg": 1129, "rotates": false, "multitile": false }, - { "id": "knit_scarf_loose", "fg": 1129, "rotates": false, "multitile": false }, - { "id": "kufi", "fg": 1020, "rotates": false, "multitile": false }, - { "id": "leather", "fg": 803, "rotates": false, "multitile": false }, - { "id": "leather_belt", "fg": 1248, "rotates": false, "multitile": false }, - { "id": "leather_cat_ears", "fg": 1079, "rotates": false, "multitile": false }, - { "id": "leather_collar", "fg": 1247, "rotates": false, "multitile": false }, - { "id": "leather_pouch", "fg": 1176, "rotates": false, "multitile": false }, - { "id": "leathersandals", "fg": 1034, "rotates": false, "multitile": false }, - { "id": "leg_splint", "fg": 1200, "rotates": false, "multitile": false }, - { "id": "leg_warmers", "fg": 1235, "rotates": false, "multitile": false }, - { "id": "leg_warmers_xl", "fg": 1235, "rotates": false, "multitile": false }, - { "id": "leg_warmers_xlf", "fg": 1235, "rotates": false, "multitile": false }, - { "id": "leggings", "fg": 1256, "rotates": false, "multitile": false }, - { "id": "legguard_hard", "fg": 1111, "rotates": false, "multitile": false }, - { "id": "legguard_metal", "fg": 1110, "rotates": false, "multitile": false }, - { "id": "legguard_paper", "fg": 1111, "rotates": false, "multitile": false }, - { "id": "legrig", "fg": 1225, "rotates": false, "multitile": false }, - { "id": "linuxtshirt", "fg": 1178, "rotates": false, "multitile": false }, - { "id": "loincloth", "fg": 1236, "rotates": false, "multitile": false }, - { "id": "loincloth_fur", "fg": 1237, "rotates": false, "multitile": false }, - { "id": "loincloth_leather", "fg": 1238, "rotates": false, "multitile": false }, - { "id": "long_knit_scarf", "fg": 1129, "rotates": false, "multitile": false }, - { "id": "long_knit_scarf_loose", "fg": 1129, "rotates": false, "multitile": false }, - { "id": "long_patchwork_scarf", "fg": 1129, "rotates": false, "multitile": false }, - { "id": "long_patchwork_scarf_loose", "fg": 1129, "rotates": false, "multitile": false }, - { "id": "long_underpants", "fg": 1051, "rotates": false, "multitile": false }, - { "id": "long_undertop", "fg": 1233, "rotates": false, "multitile": false }, - { "id": "longshirt", "fg": 1075, "rotates": false, "multitile": false }, - { "id": "lowtops", "fg": 1035, "rotates": false, "multitile": false }, - { "id": "lsurvivor_suit", "fg": 1211, "rotates": false, "multitile": false }, - { "id": "maid_dress", "fg": 1260, "rotates": false, "multitile": false }, - { "id": "maid_hat", "fg": 1154, "rotates": false, "multitile": false }, - { "id": "makeshift_sling", "fg": 1006, "rotates": false, "multitile": false }, - { "id": "mask_bal", "fg": 1223, "rotates": false, "multitile": false }, - { "id": "mask_bunker", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mask_dust", "fg": 1128, "rotates": false, "multitile": false }, - { "id": "mask_filter", "fg": 1131, "rotates": false, "multitile": false }, - { "id": "mask_fsurvivor", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mask_fsurvivorxl", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mask_gas", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mask_gas_xl", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mask_guy_fawkes", "fg": 1224, "rotates": false, "multitile": false }, - { "id": "mask_h20survivor", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mask_h20survivor_on", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mask_h20survivorxl", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mask_h20survivorxl_on", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mask_hockey", "fg": 1224, "rotates": false, "multitile": false }, - { "id": "mask_rioter", "fg": 1160, "rotates": false, "multitile": false }, - { "id": "mask_ski", "fg": 1150, "rotates": false, "multitile": false }, - { "id": "mask_ski_loose", "fg": 1150, "rotates": false, "multitile": false }, - { "id": "mask_survivor", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mask_survivorxl", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mask_wsurvivor", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mask_wsurvivorxl", "fg": 1132, "rotates": false, "multitile": false }, - { "id": "mbag", "fg": 1170, "rotates": false, "multitile": false }, - { "id": "miner_hat", "fg": 991, "rotates": false, "multitile": false }, - { "id": "miner_hat_on", "fg": 992, "rotates": false, "multitile": false }, - { "id": "mittens", "fg": 1117, "rotates": false, "multitile": false }, - { "id": "mocassins", "fg": 1034, "rotates": false, "multitile": false }, - { "id": "modularvest", "fg": 1249, "rotates": false, "multitile": false }, - { "id": "modularvestceramic", "fg": 1249, "rotates": false, "multitile": false }, - { "id": "modularvesthard", "fg": 1249, "rotates": false, "multitile": false }, - { "id": "modularvestkevlar", "fg": 1249, "rotates": false, "multitile": false }, - { "id": "modularveststeel", "fg": 1249, "rotates": false, "multitile": false }, - { "id": "modularvestsuper", "fg": 1249, "rotates": false, "multitile": false }, - { "id": "molle_pack", "fg": 1167, "rotates": false, "multitile": false }, - { "id": "motorbike_boots", "fg": 1213, "rotates": false, "multitile": false }, - { "id": "motorbike_pants", "fg": 1043, "rotates": false, "multitile": false }, - { "id": "mouthpiece", "fg": 1258, "rotates": false, "multitile": false }, - { "id": "nanoskirt", "fg": 1008, "rotates": false, "multitile": false }, - { "id": "nomex_gloves", "fg": 1062, "rotates": false, "multitile": false }, - { "id": "nomex_hood", "fg": 1160, "rotates": false, "multitile": false }, - { "id": "nomex_socks", "fg": 1025, "rotates": false, "multitile": false }, - { "id": "nomex_suit", "fg": 1060, "rotates": false, "multitile": false }, - { "id": "obi_gi", "fg": 539, "rotates": false, "multitile": false }, - { "id": "optical_cloak", "fg": 1192, "rotates": false, "multitile": false }, - { "id": "pants", "fg": 1043, "rotates": false, "multitile": false }, - { "id": "pants_army", "fg": 1047, "rotates": false, "multitile": false }, - { "id": "pants_cargo", "fg": 1046, "rotates": false, "multitile": false }, - { "id": "pants_checkered", "fg": 1208, "rotates": false, "multitile": false }, - { "id": "pants_fur", "fg": 1050, "rotates": false, "multitile": false }, - { "id": "pants_leather", "fg": 1044, "rotates": false, "multitile": false }, - { "id": "pants_ski", "fg": 1049, "rotates": false, "multitile": false }, - { "id": "pants_survivor", "fg": 1046, "rotates": false, "multitile": false }, - { "id": "patchwork_scarf", "fg": 1129, "rotates": false, "multitile": false }, - { "id": "patchwork_scarf_loose", "fg": 1129, "rotates": false, "multitile": false }, - { "id": "peacoat", "fg": 1104, "rotates": false, "multitile": false }, - { "id": "plastic_shopping_bag", "fg": 780, "rotates": false, "multitile": false }, - { "id": "polo_shirt", "fg": 1073, "rotates": false, "multitile": false }, - { "id": "poncho", "fg": 1097, "rotates": false, "multitile": false }, - { "id": "postman_hat", "fg": 1147, "rotates": false, "multitile": false }, - { "id": "postman_shirt", "fg": 1253, "rotates": false, "multitile": false }, - { "id": "postman_shorts", "fg": 1254, "rotates": false, "multitile": false }, - { "id": "pot_helmet", "fg": 1155, "rotates": false, "multitile": false }, - { "id": "power_armor_basic", "fg": 1193, "rotates": false, "multitile": false }, - { "id": "power_armor_frame", "fg": 1199, "rotates": false, "multitile": false }, - { "id": "power_armor_heavy", "fg": 1197, "rotates": false, "multitile": false }, - { "id": "power_armor_helmet_basic", "fg": 1194, "rotates": false, "multitile": false }, - { "id": "power_armor_helmet_heavy", "fg": 1198, "rotates": false, "multitile": false }, - { "id": "power_armor_helmet_light", "fg": 1196, "rotates": false, "multitile": false }, - { "id": "power_armor_light", "fg": 1195, "rotates": false, "multitile": false }, - { "id": [ "purse", "slingpack" ], "fg": 1169, "rotates": false, "multitile": false }, - { "id": "quiver", "fg": 1173, "rotates": false, "multitile": false }, - { "id": "quiver_large", "fg": 1174, "rotates": false, "multitile": false }, - { "id": "rad_badge", "fg": 1179, "rotates": false, "multitile": false }, - { "id": "rm13_armor", "fg": 1218, "rotates": false, "multitile": false }, - { "id": "rm13_armor_on", "fg": 1218, "rotates": false, "multitile": false }, - { "id": "roller_blades", "fg": 1061, "rotates": false, "multitile": false }, - { "id": "rollerskates", "fg": 1061, "rotates": false, "multitile": false }, - { "id": "rucksack", "fg": 1167, "rotates": false, "multitile": false }, - { "id": "runner_bag", "fg": 1165, "rotates": false, "multitile": false }, - { "id": "scabbard", "fg": 1174, "rotates": false, "multitile": false }, - { "id": "scarf", "fg": 1129, "rotates": false, "multitile": false }, - { "id": "scarf_fur", "fg": 1130, "rotates": false, "multitile": false }, - { "id": "scarf_fur_long", "fg": 1130, "rotates": false, "multitile": false }, - { "id": "scarf_fur_long_loose", "fg": 1130, "rotates": false, "multitile": false }, - { "id": "scarf_fur_loose", "fg": 1130, "rotates": false, "multitile": false }, - { "id": "scarf_long", "fg": 1129, "rotates": false, "multitile": false }, - { "id": "scarf_long_loose", "fg": 1129, "rotates": false, "multitile": false }, - { "id": "scarf_loose", "fg": 1129, "rotates": false, "multitile": false }, - { "id": "sf_watch", "fg": 1002, "rotates": false, "multitile": false }, - { "id": "sheath", "fg": 1173, "rotates": false, "multitile": false }, - { "id": "sheriffshirt", "fg": 1075, "rotates": false, "multitile": false }, - { "id": "shoes_bowling", "fg": 724, "rotates": false, "multitile": false }, - { "id": "sholster", "fg": 905, "rotates": false, "multitile": false }, - { "id": "shorts", "fg": 1040, "rotates": false, "multitile": false }, - { "id": "shorts_cargo", "fg": 1041, "rotates": false, "multitile": false }, - { "id": "shorts_denim", "fg": 1255, "rotates": false, "multitile": false }, - { "id": "silver_bracelet", "fg": 1000, "rotates": false, "multitile": false }, - { "id": "silver_ear", "fg": 997, "rotates": false, "multitile": false }, - { "id": "skirt", "fg": 1052, "rotates": false, "multitile": false }, - { "id": "skirt_leather", "fg": 1259, "rotates": false, "multitile": false }, - { "id": "sleeping_bag", "fg": 1185, "rotates": false, "multitile": false }, - { "id": "sleeping_bag_fur", "fg": 1183, "rotates": false, "multitile": false }, - { "id": "sleeveless_duster", "fg": 1105, "rotates": false, "multitile": false }, - { "id": "sleeveless_duster_fur", "fg": 1106, "rotates": false, "multitile": false }, - { "id": "sleeveless_duster_leather", "fg": 1106, "rotates": false, "multitile": false }, - { "id": "sleeveless_duster_survivor", "fg": 1106, "rotates": false, "multitile": false }, - { "id": "sleeveless_trenchcoat", "fg": 1105, "rotates": false, "multitile": false }, - { "id": "sleeveless_trenchcoat_fur", "fg": 1106, "rotates": false, "multitile": false }, - { "id": "sleeveless_trenchcoat_leather", "fg": 1106, "rotates": false, "multitile": false }, - { "id": "sleeveless_trenchcoat_survivor", "fg": 1106, "rotates": false, "multitile": false }, - { "id": "sleeveless_tunic", "fg": 1064, "rotates": false, "multitile": false }, - { "id": "small_relic", "fg": 1177, "rotates": false, "multitile": false }, - { "id": "sneakers", "fg": 1036, "rotates": false, "multitile": false }, - { "id": "snuggie", "fg": 1188, "rotates": false, "multitile": false }, - { "id": "socks", "fg": 1023, "rotates": false, "multitile": false }, - { "id": "socks_bag", "fg": 1035, "rotates": false, "multitile": false }, - { "id": "socks_bowling", "fg": 1023, "rotates": false, "multitile": false }, - { "id": "socks_wool", "fg": 1024, "rotates": false, "multitile": false }, - { "id": "sports_bra", "fg": 1078, "rotates": false, "multitile": false }, - { "id": "stockings", "fg": 1256, "rotates": false, "multitile": false }, - { "id": "stockings_tent_arms", "fg": 1256, "rotates": false, "multitile": false }, - { "id": "stockings_tent_legs", "fg": 1256, "rotates": false, "multitile": false }, - { "id": "straw_basket", "fg": 817, "rotates": false, "multitile": false }, - { "id": "straw_fedora", "fg": 818, "rotates": false, "multitile": false }, - { "id": "straw_hat", "fg": 818, "rotates": false, "multitile": false }, - { "id": "straw_sandals", "fg": 1034, "rotates": false, "multitile": false }, - { "id": "striped_pants", "fg": 1004, "rotates": false, "multitile": false }, - { "id": "striped_shirt", "fg": 1074, "rotates": false, "multitile": false }, - { "id": "suit", "fg": 1067, "rotates": false, "multitile": false }, - { "id": "suitcase_l", "fg": 586, "rotates": false, "multitile": false }, - { "id": "suitcase_m", "fg": 620, "rotates": false, "multitile": false }, - { "id": "sundress", "fg": 1064, "rotates": false, "multitile": false }, - { "id": "sunglasses", "fg": 1143, "rotates": false, "multitile": false }, - { "id": "survivor_belt", "fg": 1107, "rotates": false, "multitile": false }, - { "id": "survivor_belt_notools", "fg": 1107, "rotates": false, "multitile": false }, - { "id": "survivor_duffel_bag", "fg": 1170, "rotates": false, "multitile": false }, - { "id": "survivor_pack", "fg": 1166, "rotates": false, "multitile": false }, - { "id": "survivor_rucksack", "fg": 1170, "rotates": false, "multitile": false }, - { "id": "survivor_runner_pack", "fg": 1166, "rotates": false, "multitile": false }, - { "id": "survivor_suit", "fg": 1212, "rotates": false, "multitile": false }, - { "id": "survivor_vest", "fg": 1108, "rotates": false, "multitile": false }, - { "id": "swat_armor", "fg": 1216, "rotates": false, "multitile": false }, - { "id": "sweater", "fg": 1085, "rotates": false, "multitile": false }, - { "id": "sweatshirt", "fg": 1084, "rotates": false, "multitile": false }, - { "id": "swim_fins", "fg": 1214, "rotates": false, "multitile": false }, - { "id": "tabi_dress", "fg": 1025, "rotates": false, "multitile": false }, - { "id": "tabi_gi", "fg": 1023, "rotates": false, "multitile": false }, - { "id": "tac_fullhelmet", "fg": 1159, "rotates": false, "multitile": false }, - { "id": "tac_helmet", "fg": 1217, "rotates": false, "multitile": false }, - { "id": "tank_top", "fg": 1077, "rotates": false, "multitile": false }, - { "id": "technician_pants_gray", "fg": 1043, "rotates": false, "multitile": false }, - { "id": "technician_shirt_gray", "fg": 1071, "rotates": false, "multitile": false }, - { "id": "thermal_gloves", "fg": 1062, "rotates": false, "multitile": false }, - { "id": "thermal_gloves_on", "fg": 1062, "rotates": false, "multitile": false }, - { "id": "thermal_mask", "fg": 1150, "rotates": false, "multitile": false }, - { "id": "thermal_mask_on", "fg": 1150, "rotates": false, "multitile": false }, - { "id": "thermal_outfit", "fg": 1060, "rotates": false, "multitile": false }, - { "id": "thermal_outfit_on", "fg": 1060, "rotates": false, "multitile": false }, - { "id": "thermal_socks", "fg": 1025, "rotates": false, "multitile": false }, - { "id": "thermal_socks_on", "fg": 1025, "rotates": false, "multitile": false }, - { "id": "thermal_suit", "fg": 1060, "rotates": false, "multitile": false }, - { "id": "thermal_suit_on", "fg": 1060, "rotates": false, "multitile": false }, - { "id": "throwing_axe", "fg": 880, "rotates": false, "multitile": false }, - { "id": "throwing_knife", "fg": 465, "rotates": false, "multitile": false }, - { "id": "tie_skinny", "fg": 1268, "rotates": false, "multitile": false }, - { "id": "tieclip", "fg": 413, "rotates": false, "multitile": false }, - { "id": "tights", "fg": 1043, "rotates": false, "multitile": false }, - { "id": "tool_belt", "fg": 1107, "rotates": false, "multitile": false }, - { "id": "tophat", "fg": 1163, "rotates": false, "multitile": false }, - { "id": "touring_suit", "fg": 1230, "rotates": false, "multitile": false }, - { "id": "towel_wet", "fg": 1182, "rotates": false, "multitile": false }, - { "id": "trenchcoat", "fg": 1098, "rotates": false, "multitile": false }, - { "id": "trenchcoat_fur", "fg": 1101, "rotates": false, "multitile": false }, - { "id": "trenchcoat_leather", "fg": 1100, "rotates": false, "multitile": false }, - { "id": "trenchcoat_survivor", "fg": 1100, "rotates": false, "multitile": false }, - { "id": "tricorne", "fg": 1146, "rotates": false, "multitile": false }, - { "id": "trunks", "fg": 1039, "rotates": false, "multitile": false }, - { "id": "tshirt", "fg": 1071, "rotates": false, "multitile": false }, - { "id": "tshirt_text", "fg": 1071, "rotates": false, "multitile": false }, - { "id": "tunic_rag", "fg": 1063, "rotates": false, "multitile": false }, - { "id": "turban", "fg": 1160, "rotates": false, "multitile": false }, - { "id": "tux", "fg": 1068, "rotates": false, "multitile": false }, - { "id": "under_armor", "fg": 1088, "rotates": false, "multitile": false }, - { "id": "under_armor_shorts", "fg": 1040, "rotates": false, "multitile": false }, - { "id": "undershirt", "fg": 1071, "rotates": false, "multitile": false }, - { "id": "union_suit", "fg": 1234, "rotates": false, "multitile": false }, - { "id": "vest", "fg": 1105, "rotates": false, "multitile": false }, - { "id": "vest_leather", "fg": 1106, "rotates": false, "multitile": false }, - { "id": "waistcoat", "fg": 1105, "rotates": false, "multitile": false }, - { "id": "wetsuit", "fg": 1060, "rotates": false, "multitile": false }, - { "id": "wetsuit_booties", "fg": 1025, "rotates": false, "multitile": false }, - { "id": "wetsuit_gloves", "fg": 1062, "rotates": false, "multitile": false }, - { "id": "wetsuit_hood", "fg": 1160, "rotates": false, "multitile": false }, - { "id": "wetsuit_spring", "fg": 1063, "rotates": false, "multitile": false }, - { "id": "winter_gloves_army", "fg": 1115, "rotates": false, "multitile": false }, - { "id": "winter_jacket_army", "fg": 1109, "rotates": false, "multitile": false }, - { "id": "winter_pants_army", "fg": 1004, "rotates": false, "multitile": false }, - { "id": "wolfsuit", "fg": 1054, "rotates": false, "multitile": false }, - { "id": "wool_hoodie", "fg": 1086, "rotates": false, "multitile": false }, - { "id": "wool_suit", "fg": 1234, "rotates": false, "multitile": false }, - { "id": "wrapped_rad_badge", "fg": 1179, "rotates": false, "multitile": false }, - { "id": "wristwatch", "fg": 1205, "rotates": false, "multitile": false }, - { "id": "wsurvivor_suit", "fg": 1244, "rotates": false, "multitile": false }, - { "id": "xlsurvivor_suit", "fg": 1212, "rotates": false, "multitile": false }, - { "id": "zubon_gi", "fg": 1004, "rotates": false, "multitile": false }, - { "id": "1st_aid", "fg": 1292, "rotates": false }, - { "id": "adderall", "fg": 1278, "rotates": false, "multitile": false }, - { "id": "antibiotics", "fg": 1284, "rotates": false, "multitile": false }, - { "id": "antifungal", "fg": 1287, "rotates": false }, - { "id": "antiparasitic", "fg": 1287, "rotates": false }, - { "id": "aspirin", "fg": 1287, "rotates": false }, - { "id": "bandages", "fg": 1293, "rotates": false }, - { "id": "caffeine", "fg": 1288, "rotates": false }, - { "id": "cig", "fg": 1281, "rotates": false, "multitile": false }, - { "id": "cig_butt", "fg": 762, "rotates": false, "multitile": false }, - { "id": "cig_lit", "fg": 761, "rotates": false, "multitile": false }, - { "id": "cigar", "fg": 1283, "rotates": false, "multitile": false }, - { "id": "cigar_butt", "fg": 767, "rotates": false, "multitile": false }, - { "id": "cigar_lit", "fg": 766, "rotates": false, "multitile": false }, - { "id": "codeine", "fg": 1276, "rotates": false, "multitile": false }, - { "id": "coke", "fg": 372, "rotates": false, "multitile": false }, - { "id": "contacts", "fg": 931, "rotates": false }, - { "id": "crack", "fg": 1285, "rotates": false, "multitile": false }, - { "id": "dayquil", "fg": 1289, "rotates": false }, - { "id": "eyedrops", "fg": 1270, "rotates": false }, - { "id": "flu_shot", "fg": 1269, "rotates": false, "multitile": false }, - { "id": "handrolled_cig", "fg": 763, "rotates": false, "multitile": false }, - { "id": "heroin", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "inhaler", "fg": 1275, "rotates": false, "multitile": false }, - { "id": "iodine", "fg": 1287, "rotates": false, "multitile": false }, - { "id": "joint", "fg": 763, "rotates": false, "multitile": false }, - { "id": "joint_lit", "fg": 764, "rotates": false, "multitile": false }, - { "id": "joint_roach", "fg": 765, "rotates": false, "multitile": false }, - { "id": "lsd", "fg": 1286, "rotates": false, "multitile": false }, - { "id": "meth", "fg": 372, "rotates": false, "multitile": false }, - { "id": "morphine", "fg": 372, "rotates": false, "multitile": false }, - { "id": "oxycodone", "fg": 1272, "rotates": false, "multitile": false }, - { "id": "oxygen", "fg": 1271, "rotates": false }, - { "id": "oxygen_tank", "fg": 1271, "rotates": false }, - { "id": "poppy_pain", "fg": 372, "rotates": false, "multitile": false }, - { "id": "poppy_sleep", "fg": 372, "rotates": false, "multitile": false }, - { "id": "pur_tablets", "fg": 1287, "rotates": false }, - { "id": "quikclot", "fg": 1285, "rotates": false, "multitile": false }, - { "id": "thorazine", "fg": 1279, "rotates": false, "multitile": false }, - { "id": "tobacco", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "tramadol", "fg": 1287, "rotates": false, "multitile": false }, - { "id": "vaccine_shot", "fg": 1269, "rotates": false, "multitile": false }, - { "id": "vitamins", "fg": 1291, "rotates": false }, - { "id": "weed", "fg": 1282, "rotates": false, "multitile": false }, - { "id": "xanax", "fg": 1277, "rotates": false, "multitile": false }, - { "id": "acorns", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "acorns_cooked", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "ant_egg", "fg": 1357, "rotates": false, "multitile": false }, - { "id": "apple", "fg": 1305, "rotates": false, "multitile": false }, - { "id": "apple_canned", "fg": 1315, "rotates": false, "multitile": false }, - { "id": "apricot", "fg": 1399, "rotates": false, "multitile": false }, - { "id": "arm", "fg": 1355, "rotates": false, "multitile": false }, - { "id": "bacon", "fg": 1354, "rotates": false, "multitile": false }, - { "id": "banana", "fg": 1306, "rotates": false, "multitile": false }, - { "id": "barley", "fg": 1328, "rotates": false, "multitile": false }, - { "id": "basketball", "fg": 1388, "rotates": false, "multitile": false }, - { "id": "beans_cooked", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "beansnrice", "fg": 372, "rotates": false, "multitile": false }, - { "id": "beet_syrup", "fg": 921, "rotates": false, "multitile": false }, - { "id": "bfipowder", "fg": 372, "rotates": false, "multitile": false }, - { "id": "biscuit", "fg": 1377, "rotates": false, "multitile": false }, - { "id": "blackberries", "fg": 1324, "rotates": false, "multitile": false }, - { "id": "blt", "fg": 1360, "rotates": false, "multitile": false }, - { "id": "blueberries", "fg": 1324, "rotates": false, "multitile": false }, - { "id": "blueberries_cooked", "fg": 1400, "rotates": false, "multitile": false }, - { "id": "boiled_egg", "fg": 1357, "rotates": false, "multitile": false }, - { "id": "bologna", "fg": 1346, "rotates": false, "multitile": false }, - { "id": "bone", "fg": 940, "rotates": false, "multitile": false }, - { "id": "bone_human", "fg": 940, "rotates": false, "multitile": false }, - { "id": "bone_tainted", "fg": 813, "rotates": false, "multitile": false }, - { "id": "brandy", "fg": 926, "rotates": false, "multitile": false }, - { "id": "bread", "fg": 371, "rotates": false, "multitile": false }, - { "id": "brew_fruit_wine", "fg": 926, "rotates": false, "multitile": false }, - { "id": "brioche", "fg": 371, "rotates": false, "multitile": false }, - { "id": "broccoli", "fg": 1331, "rotates": false, "multitile": false }, - { "id": "brownie_weed", "fg": 1368, "rotates": false, "multitile": false }, - { "id": "buckwheat", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "buckwheat_cooked", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "caff_gum", "fg": 1356, "rotates": false, "multitile": false }, - { "id": "cake2", "fg": 1368, "rotates": false, "multitile": false }, - { "id": "cake3", "fg": 1370, "rotates": false, "multitile": false }, - { "id": "can_beans", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "can_cheese", "fg": 1384, "rotates": false, "multitile": false }, - { "id": "can_chicken", "fg": 1359, "rotates": false, "multitile": false }, - { "id": "can_chowder", "fg": 372, "rotates": false, "multitile": false }, - { "id": "can_clams", "fg": 372, "rotates": false, "multitile": false }, - { "id": "can_coconut", "fg": 1359, "rotates": false, "multitile": false }, - { "id": "can_corn", "fg": 1384, "rotates": false, "multitile": false }, - { "id": "can_herring", "fg": 894, "rotates": false, "multitile": false }, - { "id": "can_pineapple", "fg": 1384, "rotates": false, "multitile": false }, - { "id": "can_salmon", "fg": 1298, "rotates": false, "multitile": false }, - { "id": "can_sardine", "fg": 894, "rotates": false, "multitile": false }, - { "id": "can_spam", "fg": 1298, "rotates": false, "multitile": false }, - { "id": "can_tomato", "fg": 1314, "rotates": false, "multitile": false }, - { "id": "can_tuna", "fg": 1298, "rotates": false, "multitile": false }, - { "id": "candy2", "fg": 1320, "rotates": false, "multitile": false }, - { "id": "candy3", "fg": 1320, "rotates": false, "multitile": false }, - { "id": "candy", "fg": 1320, "rotates": false, "multitile": false }, - { "id": "candycigarette", "fg": 1401, "rotates": false, "multitile": false }, - { "id": "carrot", "fg": 1334, "rotates": false, "multitile": false }, - { "id": "catfood", "fg": 1298, "rotates": false, "multitile": false }, - { "id": "celery", "fg": 744, "rotates": false, "multitile": false }, - { "id": "cereal2", "fg": 1310, "rotates": false, "multitile": false }, - { "id": "cereal3", "fg": 1310, "rotates": false, "multitile": false }, - { "id": "cereal", "fg": 1310, "rotates": false, "multitile": false }, - { "id": "chaw", "fg": 1302, "rotates": false, "multitile": false }, - { "id": "cheese", "fg": 1402, "rotates": false, "multitile": false }, - { "id": "cheese_fries", "fg": 1390, "rotates": false, "multitile": false }, - { "id": "cheeseburger", "fg": 1703, "rotates": false, "multitile": false }, - { "id": "chem_anfo", "fg": 1298, "rotates": false, "multitile": false }, - { "id": "chem_chromium_oxide", "fg": 1302, "rotates": false, "multitile": false }, - { "id": "chem_hexamine", "fg": 1350, "rotates": false, "multitile": false }, - { "id": "chem_sulphur", "fg": 1384, "rotates": false, "multitile": false }, - { "id": "cherries", "fg": 1383, "rotates": false, "multitile": false }, - { "id": "chili", "fg": 1375, "rotates": false, "multitile": false }, - { "id": "chilidogs", "fg": 1347, "rotates": false, "multitile": false }, - { "id": "chilly-p", "fg": 1314, "rotates": false, "multitile": false }, - { "id": "chips2", "fg": 1309, "rotates": false, "multitile": false }, - { "id": "chips3", "fg": 1309, "rotates": false, "multitile": false }, - { "id": "chips", "fg": 1309, "rotates": false, "multitile": false }, - { "id": "choc_pancakes", "fg": 1371, "rotates": false, "multitile": false }, - { "id": "choc_waffles", "fg": 1373, "rotates": false, "multitile": false }, - { "id": "choco_coffee_beans", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "chocolate", "fg": 1317, "rotates": false, "multitile": false }, - { "id": "chocpretzels", "fg": 1316, "rotates": false, "multitile": false }, - { "id": "clay_lump", "fg": 1317, "rotates": false, "multitile": false }, - { "id": "coconut", "fg": 1388, "rotates": false, "multitile": false }, - { "id": "coffee_bean", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "coffee_raw", "fg": 1369, "rotates": false, "multitile": false }, - { "id": "cola_meth", "fg": 921, "rotates": false, "multitile": false }, - { "id": "con_milk", "fg": 1359, "rotates": false, "multitile": false }, - { "id": "cooked_dinner", "fg": 1318, "rotates": false, "multitile": false }, - { "id": "cookies", "fg": 1377, "rotates": false, "multitile": false }, - { "id": "corn", "fg": 1335, "rotates": false, "multitile": false }, - { "id": "cornbread", "fg": 1341, "rotates": false, "multitile": false }, - { "id": "corndogs_cooked", "fg": 1348, "rotates": false, "multitile": false }, - { "id": "corndogs_frozen", "fg": 1348, "rotates": false, "multitile": false }, - { "id": "cornmeal", "fg": 1384, "rotates": false, "multitile": false }, - { "id": "cotton_ball", "fg": 754, "rotates": false, "multitile": false }, - { "id": "cotton_boll", "fg": 1394, "rotates": false, "multitile": false }, - { "id": "crackers", "fg": 1374, "rotates": false, "multitile": false }, - { "id": "cracklins", "fg": 1338, "rotates": false, "multitile": false }, - { "id": "cranberries", "fg": 1327, "bg": 1863, "rotates": false }, - { "id": "crispycran", "fg": 926, "rotates": false, "multitile": false }, - { "id": "cucumber", "fg": 1332, "rotates": false, "multitile": false }, - { "id": "curry_meat", "fg": 1413, "rotates": false, "multitile": false }, - { "id": "curry_powder", "fg": 1314, "rotates": false, "multitile": false }, - { "id": "currywurst", "fg": 1347, "rotates": false, "multitile": false }, - { "id": "dahlia_baked", "fg": 750, "rotates": false, "multitile": false }, - { "id": "dahlia_root", "fg": 750, "rotates": false, "multitile": false }, - { "id": "dandelion_cooked", "fg": 1302, "rotates": false, "multitile": false }, - { "id": "dandelion_fried", "fg": 1406, "rotates": false, "multitile": false }, - { "id": "datura_seed", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "deluxe_beans", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "deluxe_beansnrice", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "deluxe_eggs", "fg": 1310, "rotates": false, "multitile": false }, - { "id": "deluxe_rice", "fg": 1384, "rotates": false, "multitile": false }, - { "id": "deluxe_veggy_beans", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "deluxe_veggy_beansnrice", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "deluxe_veggy_rice", "fg": 1384, "rotates": false, "multitile": false }, - { "id": "diazepam", "fg": 1287, "rotates": false, "multitile": false }, - { "id": "disinfectant", "fg": 920, "rotates": false, "multitile": false }, - { "id": "dogbane", "fg": 1296, "rotates": false, "multitile": false }, - { "id": "dried_salad", "fg": 1302, "rotates": false, "multitile": false }, - { "id": "drink_boozeberry", "fg": 1396, "rotates": false, "multitile": false }, - { "id": "drink_strawberry_surprise", "fg": 926, "rotates": false, "multitile": false }, - { "id": "dry_beans", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "dry_fish", "fg": 894, "rotates": false, "multitile": false }, - { "id": "dry_fruit", "fg": 1297, "rotates": false, "multitile": false }, - { "id": "dry_meat", "fg": 1314, "rotates": false, "multitile": false }, - { "id": "dry_meat_tainted", "fg": 1297, "rotates": false, "multitile": false }, - { "id": "dry_mushroom", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "dry_rice", "fg": 372, "rotates": false, "multitile": false }, - { "id": "dry_veggy", "fg": 1302, "rotates": false, "multitile": false }, - { "id": "dry_veggy_tainted", "fg": 1297, "rotates": false, "multitile": false }, - { "id": "egg_bird", "fg": 1417, "rotates": false, "multitile": false }, - { "id": "egg_reptile", "fg": 1357, "rotates": false, "multitile": false }, - { "id": "fat", "fg": 1354, "rotates": false, "multitile": false }, - { "id": "fat_tainted", "fg": 1310, "rotates": false, "multitile": false }, - { "id": "fchicken", "fg": 1345, "rotates": false, "multitile": false }, - { "id": "fertilizer_commercial", "fg": 1384, "rotates": false, "multitile": false }, - { "id": "fetus", "fg": 1354, "rotates": false, "multitile": false }, - { "id": "fish", "fg": 1323, "rotates": false, "multitile": false }, - { "id": "fish_canned", "fg": 1340, "rotates": false, "multitile": false }, - { "id": "fish_cooked", "fg": 1337, "rotates": false, "multitile": false }, - { "id": "fish_fried", "fg": 1341, "rotates": false, "multitile": false }, - { "id": "fish_pickled", "fg": 1337, "rotates": false, "multitile": false }, - { "id": "fish_sandwich", "fg": 1344, "rotates": false, "multitile": false }, - { "id": "fish_smoked", "fg": 367, "rotates": false, "multitile": false }, - { "id": "flour", "fg": 1359, "rotates": false, "multitile": false }, - { "id": "fried_spam", "fg": 1323, "rotates": false, "multitile": false }, - { "id": "fries", "fg": 1390, "rotates": false, "multitile": false }, - { "id": "frozen_dinner", "fg": 1336, "rotates": false, "multitile": false }, - { "id": "fruit_cooked", "fg": 1342, "rotates": false, "multitile": false }, - { "id": "fruit_leather", "fg": 1323, "rotates": false, "multitile": false }, - { "id": "fruit_pancakes", "fg": 1371, "rotates": false, "multitile": false }, - { "id": "fruit_waffles", "fg": 1372, "rotates": false, "multitile": false }, - { "id": "fruit_wine", "fg": 926, "rotates": false, "multitile": false }, - { "id": "fungal_seeds", "fg": 1380, "rotates": false, "multitile": false }, - { "id": "fungicide", "fg": 1262, "rotates": false, "multitile": false }, - { "id": "grahmcrackers", "fg": 1374, "rotates": false, "multitile": false }, - { "id": "granola", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "grapefruit", "fg": 1382, "rotates": false, "multitile": false }, - { "id": "grapes", "fg": 1416, "rotates": false, "multitile": false }, - { "id": "gum", "fg": 1273, "rotates": false, "multitile": false }, - { "id": "gummy_vitamins", "fg": 1320, "rotates": false, "multitile": false }, - { "id": "hamburger", "fg": 1703, "rotates": false, "multitile": false }, - { "id": "hardtack", "fg": 1374, "rotates": false, "multitile": false }, - { "id": "honey_ant", "fg": 1382, "rotates": false, "multitile": false }, - { "id": "honey_bottled", "fg": 925, "rotates": false, "multitile": false }, - { "id": "honeycomb", "fg": 1351, "rotates": false, "multitile": false }, - { "id": "hops", "fg": 744, "rotates": false, "multitile": false }, - { "id": "horseradish", "fg": 1359, "rotates": false, "multitile": false }, - { "id": "hotdogs_cooked", "fg": 1347, "rotates": false, "multitile": false }, - { "id": "hotdogs_frozen", "fg": 1347, "rotates": false, "multitile": false }, - { "id": "human_cooked", "fg": 1301, "rotates": false, "multitile": false }, - { "id": "human_flesh", "fg": 1295, "rotates": false, "multitile": false }, - { "id": "insta_salad", "fg": 1302, "rotates": false, "multitile": false }, - { "id": "irradiated_apple", "fg": 1305, "rotates": false, "multitile": false }, - { "id": "irradiated_apricot", "fg": 1399, "rotates": false, "multitile": false }, - { "id": "irradiated_banana", "fg": 1306, "rotates": false, "multitile": false }, - { "id": "irradiated_blackberries", "fg": 1324, "rotates": false, "multitile": false }, - { "id": "irradiated_blueberries", "fg": 1324, "rotates": false, "multitile": false }, - { "id": "irradiated_broccoli", "fg": 1331, "rotates": false, "multitile": false }, - { "id": "irradiated_carrot", "fg": 1334, "rotates": false, "multitile": false }, - { "id": "irradiated_celery", "fg": 744, "rotates": false, "multitile": false }, - { "id": "irradiated_cherries", "fg": 1383, "rotates": false, "multitile": false }, - { "id": "irradiated_corn", "fg": 1335, "rotates": false, "multitile": false }, - { "id": "irradiated_cranberries", "fg": 1327, "bg": 1863, "rotates": false }, - { "id": "irradiated_cucumber", "fg": 1332, "rotates": false, "multitile": false }, - { "id": "irradiated_grapefruit", "fg": 1382, "rotates": false, "multitile": false }, - { "id": "irradiated_grapes", "fg": 1416, "rotates": false, "multitile": false }, - { "id": "irradiated_kiwi", "fg": 1417, "rotates": false, "multitile": false }, - { "id": "irradiated_lemon", "fg": 1308, "rotates": false, "multitile": false }, - { "id": "irradiated_lettuce", "fg": 1362, "rotates": false, "multitile": false }, - { "id": "irradiated_mango", "fg": 1395, "rotates": false, "multitile": false }, - { "id": "irradiated_melon", "fg": 1394, "rotates": false, "multitile": false }, - { "id": "irradiated_onion", "fg": 1333, "rotates": false, "multitile": false }, - { "id": "irradiated_orange", "fg": 1307, "rotates": false, "multitile": false }, - { "id": "irradiated_papaya", "fg": 1398, "rotates": false, "multitile": false }, - { "id": "irradiated_peach", "fg": 1389, "rotates": false, "multitile": false }, - { "id": "irradiated_pear", "fg": 1381, "rotates": false, "multitile": false }, - { "id": "irradiated_pineapple", "fg": 1387, "rotates": false, "multitile": false }, - { "id": "irradiated_plums", "fg": 1386, "rotates": false, "multitile": false }, - { "id": "irradiated_pomegranate", "fg": 1397, "rotates": false, "multitile": false }, - { "id": "irradiated_raspberries", "fg": 1383, "rotates": false, "multitile": false }, - { "id": "irradiated_rhubarb", "fg": 1415, "rotates": false, "multitile": false }, - { "id": "irradiated_strawberries", "fg": 1326, "rotates": false, "multitile": false }, - { "id": "irradiated_tomato", "fg": 1330, "rotates": false, "multitile": false }, - { "id": "irradiated_watermelon", "fg": 1393, "rotates": false, "multitile": false }, - { "id": "irradiated_zucchini", "fg": 1332, "rotates": false, "multitile": false }, - { "id": "jam_fruit", "fg": 1342, "rotates": false, "multitile": false }, - { "id": "jerky", "fg": 1318, "rotates": false, "multitile": false }, - { "id": "jihelucake", "fg": 1370, "rotates": false, "multitile": false }, - { "id": "johnnycake", "fg": 1341, "rotates": false, "multitile": false }, - { "id": "juice_pulp", "fg": 1298, "rotates": false, "multitile": false }, - { "id": "kernels", "fg": 1312, "rotates": false, "multitile": false }, - { "id": "ketchup", "fg": 1342, "rotates": false, "multitile": false }, - { "id": "kiwi", "fg": 1417, "rotates": false, "multitile": false }, - { "id": "lard", "fg": 1356, "rotates": false, "multitile": false }, - { "id": "lasagne", "fg": 1378, "rotates": false, "multitile": false }, - { "id": "lasagne_raw", "fg": 988, "rotates": false, "multitile": false }, - { "id": "leg", "fg": 1355, "rotates": false, "multitile": false }, - { "id": "lemon", "fg": 1308, "rotates": false, "multitile": false }, - { "id": "lemonade", "fg": 1405, "rotates": false }, - { "id": "lettuce", "fg": 1362, "rotates": false, "multitile": false }, - { "id": "lunchmeat", "fg": 1323, "rotates": false, "multitile": false }, - { "id": "lutefisk", "fg": 1340, "rotates": false, "multitile": false }, - { "id": "macaroni_cooked", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "macaroni_helper", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "macaroni_raw", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "maltballs", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "mango", "fg": 1395, "rotates": false, "multitile": false }, - { "id": "marloss_berry", "fg": 1358, "rotates": false, "multitile": false }, - { "id": "marloss_gel", "fg": 925, "rotates": false, "multitile": false }, - { "id": "marloss_seed", "fg": 1407, "rotates": false, "multitile": false }, - { "id": "marshmallow", "fg": 1350, "rotates": false, "multitile": false }, - { "id": "material_quicklime", "fg": 372, "rotates": false, "multitile": false }, - { "id": "material_sand", "fg": 894, "rotates": false, "multitile": false }, - { "id": "mayonnaise", "fg": 1359, "rotates": false, "multitile": false }, - { "id": "meal_bone", "fg": 1359, "rotates": false, "multitile": false }, - { "id": "meal_chitin_piece", "fg": 369, "rotates": false, "multitile": false }, - { "id": "meat", "fg": 1295, "rotates": false, "multitile": false }, - { "id": "meat_aspic", "fg": 1323, "rotates": false, "multitile": false }, - { "id": "meat_canned", "fg": 1295, "rotates": false, "multitile": false }, - { "id": "meat_cooked", "fg": 1301, "rotates": false, "multitile": false }, - { "id": "meat_smoked", "fg": 1318, "rotates": false, "multitile": false }, - { "id": "meat_tainted", "fg": 1299, "rotates": false, "multitile": false }, - { "id": "melon", "fg": 1394, "rotates": false, "multitile": false }, - { "id": "milk_coffee", "fg": 921, "rotates": false, "multitile": false }, - { "id": "milk_powder", "fg": 372, "rotates": false, "multitile": false }, - { "id": "milk_tea", "fg": 921, "rotates": false, "multitile": false }, - { "id": "mintpatties", "fg": 1388, "rotates": false, "multitile": false }, - { "id": "morel_cooked", "fg": 1321, "rotates": false, "multitile": false }, - { "id": "morel_fried", "fg": 1321, "rotates": false, "multitile": false }, - { "id": "mre_beef", "fg": 1318, "rotates": false, "multitile": false }, - { "id": "mre_beef_box", "fg": 1367, "rotates": false, "multitile": false }, - { "id": "mre_chicken", "fg": 1336, "rotates": false, "multitile": false }, - { "id": "mre_chicken_box", "fg": 1367, "rotates": false, "multitile": false }, - { "id": "mre_hotdog_box", "fg": 1367, "rotates": false, "multitile": false }, - { "id": "mre_ravioli", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "mre_ravioli_box", "fg": 1367, "rotates": false, "multitile": false }, - { "id": "mre_veggy", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "mre_veggy_box", "fg": 1367, "rotates": false, "multitile": false }, - { "id": "mushroom", "fg": 1321, "rotates": false, "multitile": false }, - { "id": "mushroom_morel", "fg": 1321, "rotates": false, "multitile": false }, - { "id": "mustard", "fg": 925, "rotates": false, "multitile": false }, - { "id": "mycus_fruit", "fg": 1409, "rotates": false, "multitile": false }, - { "id": "nachos", "fg": 1349, "rotates": false, "multitile": false }, - { "id": "nachosc", "fg": 1349, "rotates": false, "multitile": false }, - { "id": "nachosm", "fg": 1349, "rotates": false, "multitile": false }, - { "id": "nachosmc", "fg": 1349, "rotates": false, "multitile": false }, - { "id": "neccowafers", "fg": 1320, "rotates": false, "multitile": false }, - { "id": "noodles_fast", "fg": 1341, "rotates": false, "multitile": false }, - { "id": "nyquil", "fg": 1290, "rotates": false }, - { "id": "oatmeal", "fg": 1285, "rotates": false, "multitile": false }, - { "id": "oatmeal_cooked", "fg": 1311, "rotates": false, "multitile": false }, - { "id": "oatmeal_deluxe", "fg": 1311, "rotates": false, "multitile": false }, - { "id": "onigiri", "fg": 1350, "rotates": false, "multitile": false }, - { "id": "onion", "fg": 1333, "rotates": false, "multitile": false }, - { "id": "onion_rings", "fg": 1391, "rotates": false, "multitile": false }, - { "id": "orange", "fg": 1307, "rotates": false, "multitile": false }, - { "id": "pancakes", "fg": 1371, "rotates": false, "multitile": false }, - { "id": "papaya", "fg": 1398, "rotates": false, "multitile": false }, - { "id": "peach", "fg": 1389, "rotates": false, "multitile": false }, - { "id": "peanutbutter", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "pear", "fg": 1381, "rotates": false, "multitile": false }, - { "id": "pelmeni", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "pemmican", "fg": 367, "rotates": false, "multitile": false }, - { "id": "pickle", "fg": 1332, "rotates": false, "multitile": false }, - { "id": "pie", "fg": 1364, "rotates": false, "multitile": false }, - { "id": "pie_meat", "fg": 1364, "rotates": false, "multitile": false }, - { "id": "pills_sleep", "fg": 1272, "rotates": false, "multitile": false }, - { "id": "pine_bough", "fg": 1282, "rotates": false, "multitile": false }, - { "id": "pine_nuts", "fg": 1285, "rotates": false, "multitile": false }, - { "id": "pineapple", "fg": 1387, "rotates": false, "multitile": false }, - { "id": "pizza_meat", "fg": 1366, "rotates": false, "multitile": false }, - { "id": "pizza_veggy", "fg": 1365, "rotates": false, "multitile": false }, - { "id": "plant_sac", "fg": 1294, "rotates": false, "multitile": false }, - { "id": "plums", "fg": 1386, "rotates": false, "multitile": false }, - { "id": "pomegranate", "fg": 1397, "rotates": false, "multitile": false }, - { "id": "popcorn2", "fg": 1313, "rotates": false, "multitile": false }, - { "id": "popcorn3", "fg": 1313, "rotates": false, "multitile": false }, - { "id": "popcorn", "fg": 1313, "rotates": false, "multitile": false }, - { "id": "pork_beans", "fg": 1385, "rotates": false, "multitile": false }, - { "id": "porkstick", "fg": 1338, "rotates": false, "multitile": false }, - { "id": "potato", "fg": 1417, "rotates": false, "multitile": false }, - { "id": "potato_baked", "fg": 1363, "rotates": false, "multitile": false }, - { "id": "powder_candy", "fg": 1361, "rotates": false, "multitile": false }, - { "id": "powder_eggs", "fg": 1384, "rotates": false, "multitile": false }, - { "id": "pretzels", "fg": 1316, "rotates": false, "multitile": false }, - { "id": "protein_drink", "fg": 1319, "rotates": false, "multitile": false }, - { "id": "protein_powder", "fg": 1285, "rotates": false, "multitile": false }, - { "id": "prozac", "fg": 1280, "rotates": false, "multitile": false }, - { "id": "pudding", "fg": 1359, "rotates": false, "multitile": false }, - { "id": "raspberries", "fg": 1383, "rotates": false, "multitile": false }, - { "id": "ravioli", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "raw_beans", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "raw_dandelion", "fg": 1406, "rotates": false, "multitile": false }, - { "id": "rehydrated_fish", "fg": 372, "rotates": false, "multitile": false }, - { "id": "rehydrated_fruit", "fg": 1298, "rotates": false, "multitile": false }, - { "id": "rehydrated_meat", "fg": 1315, "rotates": false, "multitile": false }, - { "id": "rehydrated_veggy", "fg": 1304, "rotates": false, "multitile": false }, - { "id": "rhubarb", "fg": 1415, "rotates": false, "multitile": false }, - { "id": "rice_cooked", "fg": 372, "rotates": false, "multitile": false }, - { "id": "roasted_coffee_bean", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "royal_beef", "fg": 1301, "rotates": false, "multitile": false }, - { "id": "royal_jelly", "fg": 1353, "rotates": false, "multitile": false }, - { "id": "salt", "fg": 1359, "rotates": false, "multitile": false }, - { "id": "salted_fish", "fg": 1340, "rotates": false, "multitile": false }, - { "id": "sandwich_cheese", "fg": 1344, "rotates": false, "multitile": false }, - { "id": "sandwich_cheese_grilled", "fg": 1344, "rotates": false, "multitile": false }, - { "id": "sandwich_jam", "fg": 1360, "rotates": false, "multitile": false }, - { "id": "sandwich_pb", "fg": 1703, "rotates": false, "multitile": false }, - { "id": "sandwich_pbh", "fg": 1344, "rotates": false, "multitile": false }, - { "id": "sandwich_pbj", "fg": 1360, "rotates": false, "multitile": false }, - { "id": "sandwich_sauce", "fg": 1703, "rotates": false, "multitile": false }, - { "id": "sashimi", "fg": 1323, "rotates": false, "multitile": false }, - { "id": "sauce_pesto", "fg": 1343, "rotates": false, "multitile": false }, - { "id": "sauce_red", "fg": 1342, "rotates": false, "multitile": false }, - { "id": "sausage", "fg": 1347, "rotates": false, "multitile": false }, - { "id": "sausagegravy", "fg": 368, "rotates": false, "multitile": false }, - { "id": "scrambled_eggs", "fg": 1310, "rotates": false, "multitile": false }, - { "id": "seasoning_italian", "fg": 1343, "rotates": false, "multitile": false }, - { "id": "seasoning_salt", "fg": 1285, "rotates": false, "multitile": false }, - { "id": "seed_barley", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "seed_blueberries", "fg": 1325, "rotates": false, "multitile": false }, - { "id": "seed_broccoli", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "seed_carrot", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "seed_corn", "fg": 1312, "rotates": false, "multitile": false }, - { "id": "seed_cotton_boll", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "seed_dogbane", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "seed_hops", "fg": 750, "rotates": false, "multitile": false }, - { "id": "seed_lettuce", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "seed_onion", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "seed_strawberries", "fg": 1327, "rotates": false, "multitile": false }, - { "id": "seed_sugar_beet", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "seed_tomato", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "seed_weed", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "seed_wheat", "fg": 1329, "rotates": false, "multitile": false }, - { "id": "slime_scrap", "fg": 924, "rotates": false, "multitile": false }, - { "id": "sloppyjoe", "fg": 1703, "rotates": false, "multitile": false }, - { "id": "smores", "fg": 1703, "rotates": false, "multitile": false }, - { "id": "smoxygen_tank", "fg": 1271, "rotates": false }, - { "id": "soup_chicken", "fg": 1319, "rotates": false, "multitile": false }, - { "id": "soup_dumplings", "fg": 1319, "rotates": false, "multitile": false }, - { "id": "soup_fish", "fg": 1319, "rotates": false, "multitile": false }, - { "id": "soup_mushroom", "fg": 1319, "rotates": false, "multitile": false }, - { "id": "soup_tomato", "fg": 1413, "rotates": false, "multitile": false }, - { "id": "soysauce", "fg": 921, "rotates": false, "multitile": false }, - { "id": "spaghetti_bolognese", "fg": 1375, "rotates": false, "multitile": false }, - { "id": "spaghetti_cooked", "fg": 1339, "rotates": false, "multitile": false }, - { "id": "spaghetti_pesto", "fg": 1376, "rotates": false, "multitile": false }, - { "id": "spaghetti_raw", "fg": 1338, "rotates": false, "multitile": false }, - { "id": "spider_egg", "fg": 754, "rotates": false, "multitile": false }, - { "id": "strawberries", "fg": 1326, "rotates": false, "multitile": false }, - { "id": "strawberries_cooked", "fg": 1342, "rotates": false, "multitile": false }, - { "id": "sugar", "fg": 1359, "rotates": false, "multitile": false }, - { "id": "sugar_beet", "fg": 752, "rotates": false, "multitile": false }, - { "id": "sugar_fried", "fg": 1369, "rotates": false, "multitile": false }, - { "id": "sushi_fishroll", "fg": 1408, "rotates": false, "multitile": false }, - { "id": "sushi_meatroll", "fg": 1408, "rotates": false, "multitile": false }, - { "id": "sushi_rice", "fg": 372, "rotates": false, "multitile": false }, - { "id": "sushi_veggyroll", "fg": 1408, "rotates": false, "multitile": false }, - { "id": "taco", "fg": 1379, "rotates": false, "multitile": false }, - { "id": "taint_tornado", "fg": 1413, "rotates": false, "multitile": false }, - { "id": "tallow", "fg": 1356, "rotates": false, "multitile": false }, - { "id": "tallow_tainted", "fg": 819, "rotates": false, "multitile": false }, - { "id": "tea_bark", "fg": 921, "rotates": false, "multitile": false }, - { "id": "tea_raw", "fg": 1343, "rotates": false, "multitile": false }, - { "id": "toastem2", "fg": 371, "rotates": false, "multitile": false }, - { "id": "toastem3", "fg": 371, "rotates": false, "multitile": false }, - { "id": "toastem", "fg": 371, "rotates": false, "multitile": false }, - { "id": "toasterpastry", "fg": 367, "rotates": false, "multitile": false }, - { "id": "toasterpastryfrozen", "fg": 371, "rotates": false, "multitile": false }, - { "id": "tomato", "fg": 1330, "rotates": false, "multitile": false }, - { "id": "tool_rocket_candy", "fg": 1393, "rotates": false, "multitile": false }, - { "id": "tool_rocket_candy_act", "fg": 1393, "rotates": false, "multitile": false }, - { "id": "unfinished_charcoal", "fg": 367, "rotates": false, "multitile": false }, - { "id": "veggy", "fg": 1296, "rotates": false, "multitile": false }, - { "id": "veggy_canned", "fg": 1302, "rotates": false, "multitile": false }, - { "id": "veggy_cooked", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "veggy_salad", "fg": 1302, "rotates": false, "multitile": false }, - { "id": "veggy_tainted", "fg": 1300, "rotates": false, "multitile": false }, - { "id": "veggy_wild", "fg": 1296, "rotates": false, "multitile": false }, - { "id": "veggy_wild_cooked", "fg": 1303, "rotates": false, "multitile": false }, - { "id": "vibrator", "fg": 368, "rotates": false, "multitile": false }, - { "id": "waffles", "fg": 1372, "rotates": false, "multitile": false }, - { "id": "wastebread", "fg": 371, "rotates": false, "multitile": false }, - { "id": "watermelon", "fg": 1393, "rotates": false, "multitile": false }, - { "id": "wheat", "fg": 1328, "rotates": false, "multitile": false }, - { "id": "wild_herbs", "fg": 1302, "rotates": false, "multitile": false }, - { "id": "yeast", "fg": 372, "rotates": false, "multitile": false }, - { "id": "yoghurt", "fg": 1359, "rotates": false, "multitile": false }, - { "id": "zucchini", "fg": 1332, "rotates": false, "multitile": false }, - { "id": "mon_amigara_horror", "fg": 1430, "rotates": false }, - { "id": "mon_ant", "fg": 1502, "rotates": false }, - { "id": "mon_ant_fungus", "fg": 1504, "rotates": false }, - { "id": "mon_ant_larva", "fg": 1501, "rotates": false }, - { "id": "mon_ant_soldier", "fg": 1503, "rotates": false }, - { "id": "mon_bat", "fg": 1490, "rotates": false }, - { "id": "mon_bear", "fg": 1496, "rotates": false }, - { "id": "mon_beaver", "fg": 1564, "rotates": false }, - { "id": "mon_bee", "fg": 1506, "rotates": false }, - { "id": "mon_beekeeper", "fg": 1528, "rotates": false }, - { "id": "mon_biollante", "fg": 1537, "rotates": false }, - { "id": "mon_black_rat", "fg": 1565, "rotates": false }, - { "id": "mon_blank", "fg": 1581, "rotates": false }, - { "id": "mon_blob", "fg": 1558, "rotates": false }, - { "id": "mon_blob_brain", "fg": 1441, "rotates": false }, - { "id": "mon_blob_large", "fg": 1578, "rotates": false }, - { "id": "mon_blob_small", "fg": 1559, "rotates": false }, - { "id": "mon_blood_sacrifice", "fg": 1419, "rotates": false }, - { "id": "mon_bobcat", "fg": 1566, "rotates": false }, - { "id": "mon_boomer", "fg": 1520, "rotates": false }, - { "id": "mon_boomer_fungus", "fg": 1521, "rotates": false }, - { "id": "mon_boomer_huge", "fg": 1482, "rotates": false }, - { "id": "mon_breather", "fg": 1583, "rotates": false }, - { "id": "mon_breather_hub", "fg": 1582, "rotates": false }, - { "id": "mon_broken_cyborg", "fg": 1569, "rotates": false }, - { "id": "mon_cat", "fg": 1500, "rotates": false }, - { "id": "mon_centipede", "fg": 1607, "rotates": false }, - { "id": "mon_centipede_giant", "fg": 1548, "rotates": false }, - { "id": "mon_charred_nightmare", "fg": 1445, "rotates": false }, - { "id": "mon_chicken", "fg": 1563, "rotates": false }, - { "id": "mon_chickenbot", "fg": 1474, "rotates": false }, - { "id": "mon_chipmunk", "fg": 1564, "rotates": false }, - { "id": "mon_chud", "fg": 1554, "rotates": false }, - { "id": "mon_copbot", "fg": 1471, "rotates": false }, - { "id": "mon_cougar", "fg": 1497, "rotates": false }, - { "id": "mon_cow", "fg": 1421, "rotates": false }, - { "id": "mon_coyote", "fg": 1495, "rotates": false }, - { "id": "mon_coyote_wolf", "fg": 1495, "rotates": false }, - { "id": "mon_crawler", "fg": 1556, "rotates": false }, - { "id": "mon_creeper_hub", "fg": 1535, "rotates": false }, + { "id": "pocket_firearms", "fg": 986, "rotates": false, "multitile": false }, + { "id": "pocket_firstaid", "fg": 986, "rotates": false, "multitile": false }, + { "id": "pocket_survival", "fg": 988, "rotates": false, "multitile": false }, + { "id": "priest_diary", "fg": 993, "rotates": false, "multitile": false }, + { "id": "radio_book", "fg": 989, "rotates": false, "multitile": false }, + { "id": "recipe_alpha", "fg": 996, "rotates": false, "multitile": false }, + { "id": "recipe_animal", "fg": 996, "rotates": false }, + { "id": "recipe_arrows", "fg": 986, "rotates": false, "multitile": false }, + { "id": "recipe_atomic_battery", "fg": 884, "rotates": false, "multitile": false }, + { "id": "recipe_augs", "fg": 991, "rotates": false }, + { "id": "recipe_bows", "fg": 986, "rotates": false, "multitile": false }, + { "id": "recipe_bullets", "fg": 986, "rotates": false, "multitile": false }, + { "id": "recipe_caseless", "fg": 991, "rotates": false, "multitile": false }, + { "id": "recipe_chimera", "fg": 996, "rotates": false, "multitile": false }, + { "id": "recipe_creepy", "fg": 996, "rotates": false }, + { "id": "recipe_elfa", "fg": 991, "rotates": false }, + { "id": "recipe_lab_cvd", "fg": 995, "rotates": false, "multitile": false }, + { "id": "recipe_lab_elec", "fg": 989, "rotates": false }, + { "id": "recipe_labchem", "fg": 996, "rotates": false }, + { "id": "recipe_maiar", "fg": 996, "rotates": false }, + { "id": "recipe_medicalmut", "fg": 987, "rotates": false, "multitile": false }, + { "id": "recipe_melee", "fg": 995, "rotates": false, "multitile": false }, + { "id": "recipe_mil_augs", "fg": 991, "rotates": false }, + { "id": "recipe_mininuke_launch", "fg": 989, "rotates": false, "multitile": false }, + { "id": "recipe_raptor", "fg": 996, "rotates": false }, + { "id": "recipe_serum", "fg": 996, "rotates": false }, + { "id": "record_accounting", "fg": 993, "rotates": false, "multitile": false }, + { "id": "record_patient", "fg": 993, "rotates": false, "multitile": false }, + { "id": "story_book", "fg": 987, "rotates": false, "multitile": false }, + { "id": "survival_book", "fg": 988, "rotates": false, "multitile": false }, + { "id": "survnote", "fg": 884, "rotates": false, "multitile": false }, + { "id": "tailor_portfolio", "fg": 986, "rotates": false, "multitile": false }, + { "id": "tall_tales", "fg": 988, "rotates": false, "multitile": false }, + { "id": "textbook_anarch", "fg": 991, "rotates": false }, + { "id": "textbook_armeast", "fg": 992, "rotates": false, "multitile": false }, + { "id": "textbook_armwest", "fg": 993, "rotates": false, "multitile": false }, + { "id": "textbook_business", "fg": 993, "rotates": false, "multitile": false }, + { "id": "textbook_carpentry", "fg": 993, "rotates": false, "multitile": false }, + { "id": "textbook_chemistry", "fg": 993, "rotates": false, "multitile": false }, + { "id": "textbook_computer", "fg": 987, "rotates": false, "multitile": false }, + { "id": "textbook_electronics", "fg": 987, "rotates": false, "multitile": false }, + { "id": "textbook_fabrication", "fg": 988, "rotates": false, "multitile": false }, + { "id": "textbook_fireman", "fg": 989, "rotates": false, "multitile": false }, + { "id": "textbook_firstaid", "fg": 987, "rotates": false, "multitile": false }, + { "id": "textbook_gaswarfare", "fg": 989, "rotates": false, "multitile": false }, + { "id": "textbook_mechanics", "fg": 993, "rotates": false, "multitile": false }, + { "id": "textbook_robots", "fg": 993, "rotates": false, "multitile": false }, + { "id": "textbook_speech", "fg": 989, "rotates": false, "multitile": false }, + { "id": "textbook_survival", "fg": 988, "rotates": false, "multitile": false }, + { "id": "textbook_tailor", "fg": 988, "rotates": false, "multitile": false }, + { "id": "textbook_traps", "fg": 988, "rotates": false, "multitile": false }, + { "id": "textbook_weapeast", "fg": 995, "rotates": false, "multitile": false }, + { "id": "textbook_weapwest", "fg": 989, "rotates": false, "multitile": false }, + { "id": "trappers_companion", "fg": 986, "rotates": false, "multitile": false }, + { "id": "visions_solitude", "fg": 993, "rotates": false, "multitile": false }, + { "id": "welding_book", "fg": 987, "rotates": false, "multitile": false }, + { "id": "years_old_newspaper", "fg": 884, "rotates": false, "multitile": false }, + { "id": "10gal_hat", "fg": 1252, "rotates": false, "multitile": false }, + { "id": "2byarm_guard", "fg": 1210, "rotates": false, "multitile": false }, + { "id": "2byshin_guard", "fg": 1210, "rotates": false, "multitile": false }, + { "id": "aep_suit", "fg": 1241, "rotates": false, "multitile": false }, + { "id": "american_flag", "fg": 1191, "rotates": false, "multitile": false }, + { "id": "anbc_suit", "fg": 1241, "rotates": false, "multitile": false }, + { "id": "apron_leather", "fg": 1232, "rotates": false, "multitile": false }, + { "id": "arm_splint", "fg": 1210, "rotates": false, "multitile": false }, + { "id": "arm_warmers", "fg": 1245, "rotates": false, "multitile": false }, + { "id": "armguard_chitin", "fg": 1123, "rotates": false, "multitile": false }, + { "id": "armguard_hard", "fg": 1121, "rotates": false, "multitile": false }, + { "id": "armguard_metal", "fg": 1120, "rotates": false, "multitile": false }, + { "id": "armguard_paper", "fg": 1121, "rotates": false, "multitile": false }, + { "id": "armguard_soft", "fg": 1120, "rotates": false, "multitile": false }, + { "id": "armor_blarmor", "fg": 1240, "rotates": false, "multitile": false }, + { "id": "armor_bone", "fg": 1239, "rotates": false, "multitile": false }, + { "id": "armor_chitin", "fg": 1076, "rotates": false, "multitile": false }, + { "id": "armor_farmor", "fg": 1064, "rotates": false, "multitile": false }, + { "id": "armor_larmor", "fg": 1240, "rotates": false, "multitile": false }, + { "id": "armor_lightplate", "fg": 1228, "rotates": false, "multitile": false }, + { "id": "armor_nomad", "fg": 1110, "rotates": false, "multitile": false }, + { "id": "armor_plarmor", "fg": 1219, "rotates": false, "multitile": false }, + { "id": "armor_plate", "fg": 1080, "rotates": false, "multitile": false }, + { "id": "armor_samurai", "fg": 1230, "rotates": false, "multitile": false }, + { "id": "armor_scrapsuit", "fg": 1219, "rotates": false, "multitile": false }, + { "id": "army_top", "fg": 1086, "rotates": false, "multitile": false }, + { "id": "b_shorts", "fg": 1265, "rotates": false, "multitile": false }, + { "id": "back_holster", "fg": 1182, "rotates": false, "multitile": false }, + { "id": "backpack", "fg": 1175, "rotates": false, "multitile": false }, + { "id": "backpack_leather", "fg": 1176, "rotates": false, "multitile": false }, + { "id": "badge_cybercop", "fg": 1190, "rotates": false, "multitile": false }, + { "id": "badge_deputy", "fg": 1190, "rotates": false, "multitile": false }, + { "id": "badge_detective", "fg": 1190, "rotates": false, "multitile": false }, + { "id": "badge_marshal", "fg": 1190, "rotates": false, "multitile": false }, + { "id": "badge_swat", "fg": 1190, "rotates": false, "multitile": false }, + { "id": "balclava", "fg": 1160, "rotates": false, "multitile": false }, + { "id": "bandana", "fg": 1170, "rotates": false, "multitile": false }, + { "id": "barrette", "fg": 1005, "rotates": false, "multitile": false }, + { "id": "bastsandals", "fg": 1044, "rotates": false, "multitile": false }, + { "id": "beekeeping_gloves", "fg": 1250, "rotates": false, "multitile": false }, + { "id": "beekeeping_hood", "fg": 1217, "rotates": false, "multitile": false }, + { "id": "beekeeping_suit", "fg": 1119, "rotates": false, "multitile": false }, + { "id": "beret", "fg": 1163, "rotates": false, "multitile": false }, + { "id": "beret_wool", "fg": 1163, "rotates": false, "multitile": false }, + { "id": "bikini_top", "fg": 1088, "rotates": false, "multitile": false }, + { "id": "bikini_top_fur", "fg": 1090, "rotates": false, "multitile": false }, + { "id": "bikini_top_leather", "fg": 1089, "rotates": false, "multitile": false }, + { "id": "bindle", "fg": 1015, "rotates": false, "multitile": false }, + { "id": "blanket", "fg": 1192, "rotates": false, "multitile": false }, + { "id": "blazer", "fg": 1102, "rotates": false, "multitile": false }, + { "id": "bondage_mask", "fg": 1068, "rotates": false, "multitile": false }, + { "id": "bondage_suit", "fg": 1067, "rotates": false, "multitile": false }, + { "id": "bookplate", "fg": 1220, "rotates": false, "multitile": false }, + { "id": "boots", "fg": 1038, "rotates": false, "multitile": false }, + { "id": "boots_bone", "fg": 1238, "rotates": false, "multitile": false }, + { "id": "boots_bunker", "fg": 1237, "rotates": false, "multitile": false }, + { "id": "boots_chitin", "fg": 1048, "rotates": false, "multitile": false }, + { "id": "boots_combat", "fg": 1041, "rotates": false, "multitile": false }, + { "id": "boots_fsurvivor", "fg": 1223, "rotates": false, "multitile": false }, + { "id": "boots_fur", "fg": 1039, "rotates": false, "multitile": false }, + { "id": "boots_h20survivor", "fg": 1035, "rotates": false, "multitile": false }, + { "id": "boots_hiking", "fg": 1042, "rotates": false, "multitile": false }, + { "id": "boots_hsurvivor", "fg": 1223, "rotates": false, "multitile": false }, + { "id": "boots_larmor", "fg": 1038, "rotates": false, "multitile": false }, + { "id": "boots_lsurvivor", "fg": 1041, "rotates": false, "multitile": false }, + { "id": "boots_plate", "fg": 1223, "rotates": false, "multitile": false }, + { "id": "boots_rubber", "fg": 1237, "rotates": false, "multitile": false }, + { "id": "boots_steel", "fg": 1040, "rotates": false, "multitile": false }, + { "id": "boots_survivor", "fg": 1040, "rotates": false, "multitile": false }, + { "id": "boots_western", "fg": 1267, "rotates": false, "multitile": false }, + { "id": "boots_winter", "fg": 1043, "rotates": false, "multitile": false }, + { "id": "boots_wsurvivor", "fg": 1043, "rotates": false, "multitile": false }, + { "id": "boots_xlsurvivor", "fg": 1040, "rotates": false, "multitile": false }, + { "id": "bowhat", "fg": 1174, "rotates": false, "multitile": false }, + { "id": "boxer_shorts", "fg": 1049, "rotates": false, "multitile": false }, + { "id": "boxing_gloves", "fg": 1127, "rotates": false, "multitile": false }, + { "id": "boy_shorts", "fg": 1049, "rotates": false, "multitile": false }, + { "id": "bra", "fg": 1088, "rotates": false, "multitile": false }, + { "id": "briefcase", "fg": 929, "rotates": false, "multitile": false }, + { "id": "briefs", "fg": 1246, "rotates": false, "multitile": false }, + { "id": "bunker_coat", "fg": 1105, "rotates": false, "multitile": false }, + { "id": "bunker_pants", "fg": 1211, "rotates": false, "multitile": false }, + { "id": "camera", "fg": 788, "rotates": false, "multitile": false }, + { "id": "camera_pro", "fg": 789, "rotates": false, "multitile": false }, + { "id": "camisole", "fg": 1087, "rotates": false, "multitile": false }, + { "id": "ceramic_shard", "fg": 786, "rotates": false, "multitile": false }, + { "id": "chainmail_arms", "fg": 1120, "rotates": false, "multitile": false }, + { "id": "chainmail_hood", "fg": 1170, "rotates": false, "multitile": false }, + { "id": "chainmail_legs", "fg": 1120, "rotates": false, "multitile": false }, + { "id": "chainmail_suit", "fg": 1080, "rotates": false, "multitile": false }, + { "id": "chainmail_vest", "fg": 1115, "rotates": false, "multitile": false }, + { "id": "chaps_leather", "fg": 1055, "rotates": false, "multitile": false }, + { "id": "chestrig", "fg": 1118, "rotates": false, "multitile": false }, + { "id": "cleansuit", "fg": 1079, "rotates": false, "multitile": false }, + { "id": "cleats", "fg": 1035, "rotates": false, "multitile": false }, + { "id": "cloak", "fg": 1199, "rotates": false, "multitile": false }, + { "id": "cloak_fur", "fg": 1200, "rotates": false, "multitile": false }, + { "id": "cloak_leather", "fg": 1201, "rotates": false, "multitile": false }, + { "id": "clogs", "fg": 1044, "rotates": false, "multitile": false }, + { "id": "clownshoes", "fg": 1066, "rotates": false, "multitile": false }, + { "id": "coat_fur", "fg": 1113, "rotates": false, "multitile": false }, + { "id": "coat_fur_sf", "fg": 1113, "rotates": false, "multitile": false }, + { "id": "coat_lab", "fg": 1119, "rotates": false, "multitile": false }, + { "id": "coat_rain", "fg": 1105, "rotates": false, "multitile": false }, + { "id": "coat_winter", "fg": 1112, "rotates": false, "multitile": false }, + { "id": "collarpin", "fg": 414, "rotates": false, "multitile": false }, + { "id": "copper_bracelet", "fg": 1011, "rotates": false, "multitile": false }, + { "id": "copper_ear", "fg": 1008, "rotates": false, "multitile": false }, + { "id": "corset", "fg": 1069, "rotates": false, "multitile": false }, + { "id": "cowboy_hat", "fg": 1251, "rotates": false, "multitile": false }, + { "id": "cowl_wool", "fg": 1170, "rotates": false, "multitile": false }, + { "id": "cured_hide", "fg": 802, "rotates": false, "multitile": false }, + { "id": "cured_pelt", "fg": 801, "rotates": false, "multitile": false }, + { "id": "dance_shoes", "fg": 1046, "rotates": false, "multitile": false }, + { "id": "depowered_armor", "fg": 1203, "rotates": false, "multitile": false }, + { "id": "depowered_helmet", "fg": 1204, "rotates": false, "multitile": false }, + { "id": "diamond_dental_grill", "fg": 416, "rotates": false, "multitile": false }, + { "id": "dinosuit", "fg": 1271, "rotates": false, "multitile": false }, + { "id": "dive_bag", "fg": 1181, "rotates": false, "multitile": false }, + { "id": "diving_watch", "fg": 1215, "rotates": false, "multitile": false }, + { "id": "down_blanket", "fg": 1192, "rotates": false, "multitile": false }, + { "id": "down_pillow", "fg": 785, "rotates": false, "multitile": false }, + { "id": "dragonskin", "fg": 1260, "rotates": false, "multitile": false }, + { "id": "dress", "fg": 1074, "rotates": false, "multitile": false }, + { "id": "dress_shirt", "fg": 1084, "rotates": false, "multitile": false }, + { "id": "dress_shoes", "fg": 1046, "rotates": false, "multitile": false }, + { "id": "dress_wedding", "fg": 1075, "rotates": false, "multitile": false }, + { "id": "duffelbag", "fg": 1178, "rotates": false, "multitile": false }, + { "id": "duster", "fg": 1108, "rotates": false, "multitile": false }, + { "id": "duster_fur", "fg": 1111, "rotates": false, "multitile": false }, + { "id": "duster_leather", "fg": 1110, "rotates": false, "multitile": false }, + { "id": "duster_survivor", "fg": 1110, "rotates": false, "multitile": false }, + { "id": "e_handcuffs", "fg": 790, "rotates": false, "multitile": false }, + { "id": "ear_plugs", "fg": 1261, "rotates": false, "multitile": false }, + { "id": "elbow_pads", "fg": 1122, "rotates": false, "multitile": false }, + { "id": "emer_blanket", "fg": 1194, "rotates": false, "multitile": false }, + { "id": "emer_blanket_on", "fg": 1194, "rotates": false, "multitile": false }, + { "id": "exploding_arrow_warhead", "fg": 889, "rotates": false, "multitile": false }, + { "id": "fancy_sunglasses", "fg": 1236, "rotates": false, "multitile": false }, + { "id": "fanny", "fg": 1181, "rotates": false, "multitile": false }, + { "id": "fc_hairpin", "fg": 1004, "rotates": false, "multitile": false }, + { "id": "fedora", "fg": 1251, "rotates": false, "multitile": false }, + { "id": "fencing_jacket", "fg": 1119, "rotates": false, "multitile": false }, + { "id": "fencing_mask", "fg": 1170, "rotates": false, "multitile": false }, + { "id": "fencing_pants", "fg": 1014, "rotates": false, "multitile": false }, + { "id": "fire_gauntlets", "fg": 1136, "rotates": false, "multitile": false }, + { "id": "firehelmet", "fg": 1161, "rotates": false, "multitile": false }, + { "id": "fireman_belt", "fg": 1258, "rotates": false, "multitile": false }, + { "id": "fishing_waders", "fg": 1106, "rotates": false, "multitile": false }, + { "id": "flag_shirt", "fg": 1082, "rotates": false, "multitile": false }, + { "id": "flip_flops", "fg": 1045, "rotates": false, "multitile": false }, + { "id": "flotation_vest", "fg": 1109, "rotates": false, "multitile": false }, + { "id": "folding_poncho", "fg": 998, "rotates": false, "multitile": false }, + { "id": "folding_poncho_on", "fg": 1105, "rotates": false, "multitile": false }, + { "id": "football_armor", "fg": 1036, "rotates": false, "multitile": false }, + { "id": "footrags", "fg": 1045, "rotates": false, "multitile": false }, + { "id": "footrags_fur", "fg": 1044, "rotates": false, "multitile": false }, + { "id": "footrags_leather", "fg": 1044, "rotates": false, "multitile": false }, + { "id": "fsurvivor_suit", "fg": 1225, "rotates": false, "multitile": false }, + { "id": "fur", "fg": 803, "rotates": false, "multitile": false }, + { "id": "fur_blanket", "fg": 1193, "rotates": false, "multitile": false }, + { "id": "fur_cat_ears", "fg": 1090, "rotates": false, "multitile": false }, + { "id": "fur_collar", "fg": 1257, "rotates": false, "multitile": false }, + { "id": "fur_rollmat", "fg": 1196, "rotates": false, "multitile": false }, + { "id": "gauntlets_bone", "fg": 1250, "rotates": false, "multitile": false }, + { "id": "gauntlets_chitin", "fg": 1126, "rotates": false, "multitile": false }, + { "id": "gauntlets_larmor", "fg": 1131, "rotates": false, "multitile": false }, + { "id": "geta", "fg": 1034, "rotates": false, "multitile": false }, + { "id": "glasses_bal", "fg": 1151, "rotates": false, "multitile": false }, + { "id": "glasses_bifocal", "fg": 1145, "rotates": false, "multitile": false }, + { "id": "glasses_eye", "fg": 1143, "rotates": false, "multitile": false }, + { "id": "glasses_monocle", "fg": 1152, "rotates": false, "multitile": false }, + { "id": "glasses_reading", "fg": 1144, "rotates": false, "multitile": false }, + { "id": "glasses_safety", "fg": 1146, "rotates": false, "multitile": false }, + { "id": "glove_jackson", "fg": 782, "rotates": false, "multitile": false }, + { "id": "gloves_bag", "fg": 1126, "rotates": false, "multitile": false }, + { "id": "gloves_fingerless", "fg": 1133, "rotates": false, "multitile": false }, + { "id": "gloves_fingerless_mod", "fg": 1133, "rotates": false, "multitile": false }, + { "id": "gloves_fsurvivor", "fg": 1072, "rotates": false, "multitile": false }, + { "id": "gloves_fur", "fg": 1128, "rotates": false, "multitile": false }, + { "id": "gloves_h20survivor", "fg": 1072, "rotates": false, "multitile": false }, + { "id": "gloves_hsurvivor", "fg": 1072, "rotates": false, "multitile": false }, + { "id": "gloves_leather", "fg": 1131, "rotates": false, "multitile": false }, + { "id": "gloves_light", "fg": 1126, "rotates": false, "multitile": false }, + { "id": "gloves_liner", "fg": 1125, "rotates": false, "multitile": false }, + { "id": "gloves_lsurvivor", "fg": 1124, "rotates": false, "multitile": false }, + { "id": "gloves_medical", "fg": 1135, "rotates": false, "multitile": false }, + { "id": "gloves_plate", "fg": 1072, "rotates": false, "multitile": false }, + { "id": "gloves_rubber", "fg": 1134, "rotates": false, "multitile": false }, + { "id": "gloves_survivor", "fg": 1136, "rotates": false, "multitile": false }, + { "id": "gloves_tactical", "fg": 1132, "rotates": false, "multitile": false }, + { "id": "gloves_winter", "fg": 1130, "rotates": false, "multitile": false }, + { "id": "gloves_wool", "fg": 1129, "rotates": false, "multitile": false }, + { "id": "gloves_wraps", "fg": 1125, "rotates": false, "multitile": false }, + { "id": "gloves_wraps_fur", "fg": 1133, "rotates": false, "multitile": false }, + { "id": "gloves_wraps_leather", "fg": 1133, "rotates": false, "multitile": false }, + { "id": "gloves_wsurvivor", "fg": 1130, "rotates": false, "multitile": false }, + { "id": "gloves_xlsurvivor", "fg": 1136, "rotates": false, "multitile": false }, + { "id": "gobag", "fg": 1177, "rotates": false, "multitile": false }, + { "id": "goggles_ir", "fg": 1028, "rotates": false, "multitile": false }, + { "id": "goggles_ir_on", "fg": 1028, "rotates": false, "multitile": false }, + { "id": "goggles_nv", "fg": 1150, "rotates": false, "multitile": false }, + { "id": "goggles_nv_on", "fg": 1150, "rotates": false, "multitile": false }, + { "id": "goggles_ski", "fg": 1148, "rotates": false, "multitile": false }, + { "id": "goggles_swim", "fg": 1147, "rotates": false, "multitile": false }, + { "id": "goggles_welding", "fg": 1149, "rotates": false, "multitile": false }, + { "id": "gold_bracelet", "fg": 1000, "rotates": false, "multitile": false }, + { "id": "gold_dental_grill", "fg": 416, "rotates": false, "multitile": false }, + { "id": "gold_ear", "fg": 1006, "rotates": false, "multitile": false }, + { "id": "gold_watch", "fg": 1012, "rotates": false, "multitile": false }, + { "id": "greatcoat", "fg": 1031, "rotates": false }, + { "id": "h20survivor_suit", "fg": 1225, "rotates": false, "multitile": false }, + { "id": "hairpin", "fg": 1003, "rotates": false, "multitile": false }, + { "id": "hakama_gi", "fg": 1053, "rotates": false, "multitile": false }, + { "id": "halter_top", "fg": 1073, "rotates": false, "multitile": false }, + { "id": "hand_crossbow", "fg": 880, "rotates": false, "multitile": false }, + { "id": "hat_ball", "fg": 1154, "rotates": false, "multitile": false }, + { "id": "hat_boonie", "fg": 1155, "rotates": false, "multitile": false }, + { "id": "hat_chef", "fg": 1216, "rotates": false, "multitile": false }, + { "id": "hat_cotton", "fg": 1156, "rotates": false, "multitile": false }, + { "id": "hat_fur", "fg": 1159, "rotates": false, "multitile": false }, + { "id": "hat_hard", "fg": 1161, "rotates": false, "multitile": false }, + { "id": "hat_hunting", "fg": 1158, "rotates": false, "multitile": false }, + { "id": "hat_knit", "fg": 1157, "rotates": false, "multitile": false }, + { "id": "hat_newsboy", "fg": 1156, "rotates": false, "multitile": false }, + { "id": "hat_noise_cancelling", "fg": 1262, "rotates": false, "multitile": false }, + { "id": "hazmat_suit", "fg": 1079, "rotates": false, "multitile": false }, + { "id": "headgear", "fg": 1037, "rotates": false, "multitile": false }, + { "id": "heels", "fg": 1047, "rotates": false, "multitile": false }, + { "id": "helmet_army", "fg": 1167, "rotates": false, "multitile": false }, + { "id": "helmet_ball", "fg": 1166, "rotates": false, "multitile": false }, + { "id": "helmet_barbute", "fg": 1229, "rotates": false, "multitile": false }, + { "id": "helmet_bike", "fg": 1164, "rotates": false, "multitile": false }, + { "id": "helmet_bone", "fg": 1242, "rotates": false, "multitile": false }, + { "id": "helmet_football", "fg": 1037, "rotates": false, "multitile": false }, + { "id": "helmet_hsurvivor", "fg": 1227, "rotates": false, "multitile": false }, + { "id": "helmet_kabuto", "fg": 1231, "rotates": false, "multitile": false }, + { "id": "helmet_larmor", "fg": 1256, "rotates": false, "multitile": false }, + { "id": "helmet_survivor", "fg": 1255, "rotates": false, "multitile": false }, + { "id": "helmet_xlsurvivor", "fg": 1255, "rotates": false, "multitile": false }, + { "id": "hood_rain", "fg": 1249, "rotates": false, "multitile": false }, + { "id": "hood_wsurvivor", "fg": 1013, "rotates": false, "multitile": false }, + { "id": "hoodie", "fg": 1096, "rotates": false, "multitile": false }, + { "id": "hot_pants", "fg": 1091, "rotates": false, "multitile": false }, + { "id": "hot_pants_fur", "fg": 1093, "rotates": false, "multitile": false }, + { "id": "hot_pants_leather", "fg": 1092, "rotates": false, "multitile": false }, + { "id": "jacket_army", "fg": 1058, "rotates": false, "multitile": false }, + { "id": "jacket_evac", "fg": 1100, "rotates": false, "multitile": false }, + { "id": "jacket_flannel", "fg": 1101, "rotates": false, "multitile": false }, + { "id": "jacket_jean", "fg": 1100, "rotates": false, "multitile": false }, + { "id": [ "jacket_leather", "jacket_windbreaker" ], "fg": 1103, "rotates": false, "multitile": false }, + { "id": "jacket_leather_red", "fg": 1112, "rotates": false, "multitile": false }, + { "id": "jacket_light", "fg": 1099, "rotates": false, "multitile": false }, + { "id": "jade_brooch", "fg": 1274, "rotates": false, "multitile": false }, + { "id": "jeans", "fg": 1052, "rotates": false, "multitile": false }, + { "id": "jeans_red", "fg": 1059, "rotates": false, "multitile": false }, + { "id": "jedi_cloak", "fg": 1202, "rotates": false, "multitile": false }, + { "id": "jersey", "fg": 1097, "rotates": false, "multitile": false }, + { "id": "judo_gi", "fg": 1065, "rotates": false, "multitile": false }, + { "id": "jumper_cable", "fg": 798, "rotates": false, "multitile": false }, + { "id": "jumper_cable_heavy", "fg": 798, "rotates": false, "multitile": false }, + { "id": "jumpsuit", "fg": 1063, "rotates": false, "multitile": false }, + { "id": "jumpsuit_xl", "fg": 1063, "rotates": false, "multitile": false }, + { "id": "karate_gi", "fg": 1065, "rotates": false, "multitile": false }, + { "id": "keffiyeh", "fg": 1137, "rotates": false, "multitile": false }, + { "id": "keikogi", "fg": 1119, "rotates": false, "multitile": false }, + { "id": "kevlar", "fg": 1104, "rotates": false, "multitile": false }, + { "id": "kilt", "fg": 1062, "rotates": false, "multitile": false }, + { "id": "knee_high_boots", "fg": 1267, "rotates": false, "multitile": false }, + { "id": "knee_pads", "fg": 1213, "rotates": false, "multitile": false }, + { "id": "knit_scarf", "fg": 1139, "rotates": false, "multitile": false }, + { "id": "knit_scarf_loose", "fg": 1139, "rotates": false, "multitile": false }, + { "id": "kufi", "fg": 1030, "rotates": false, "multitile": false }, + { "id": "leather", "fg": 804, "rotates": false, "multitile": false }, + { "id": "leather_belt", "fg": 1258, "rotates": false, "multitile": false }, + { "id": "leather_cat_ears", "fg": 1089, "rotates": false, "multitile": false }, + { "id": "leather_collar", "fg": 1257, "rotates": false, "multitile": false }, + { "id": "leather_pouch", "fg": 1186, "rotates": false, "multitile": false }, + { "id": "leathersandals", "fg": 1044, "rotates": false, "multitile": false }, + { "id": "leg_splint", "fg": 1210, "rotates": false, "multitile": false }, + { "id": "leg_warmers", "fg": 1245, "rotates": false, "multitile": false }, + { "id": "leg_warmers_xl", "fg": 1245, "rotates": false, "multitile": false }, + { "id": "leg_warmers_xlf", "fg": 1245, "rotates": false, "multitile": false }, + { "id": "leggings", "fg": 1266, "rotates": false, "multitile": false }, + { "id": "legguard_hard", "fg": 1121, "rotates": false, "multitile": false }, + { "id": "legguard_metal", "fg": 1120, "rotates": false, "multitile": false }, + { "id": "legguard_paper", "fg": 1121, "rotates": false, "multitile": false }, + { "id": "legrig", "fg": 1235, "rotates": false, "multitile": false }, + { "id": "linuxtshirt", "fg": 1188, "rotates": false, "multitile": false }, + { "id": "loincloth", "fg": 1246, "rotates": false, "multitile": false }, + { "id": "loincloth_fur", "fg": 1247, "rotates": false, "multitile": false }, + { "id": "loincloth_leather", "fg": 1248, "rotates": false, "multitile": false }, + { "id": "long_knit_scarf", "fg": 1139, "rotates": false, "multitile": false }, + { "id": "long_knit_scarf_loose", "fg": 1139, "rotates": false, "multitile": false }, + { "id": "long_patchwork_scarf", "fg": 1139, "rotates": false, "multitile": false }, + { "id": "long_patchwork_scarf_loose", "fg": 1139, "rotates": false, "multitile": false }, + { "id": "long_underpants", "fg": 1061, "rotates": false, "multitile": false }, + { "id": "long_undertop", "fg": 1243, "rotates": false, "multitile": false }, + { "id": "longshirt", "fg": 1085, "rotates": false, "multitile": false }, + { "id": "lowtops", "fg": 1045, "rotates": false, "multitile": false }, + { "id": "lsurvivor_suit", "fg": 1221, "rotates": false, "multitile": false }, + { "id": "maid_dress", "fg": 1270, "rotates": false, "multitile": false }, + { "id": "maid_hat", "fg": 1164, "rotates": false, "multitile": false }, + { "id": "makeshift_sling", "fg": 1016, "rotates": false, "multitile": false }, + { "id": "mask_bal", "fg": 1233, "rotates": false, "multitile": false }, + { "id": "mask_bunker", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mask_dust", "fg": 1138, "rotates": false, "multitile": false }, + { "id": "mask_filter", "fg": 1141, "rotates": false, "multitile": false }, + { "id": "mask_fsurvivor", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mask_fsurvivorxl", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mask_gas", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mask_gas_xl", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mask_guy_fawkes", "fg": 1234, "rotates": false, "multitile": false }, + { "id": "mask_h20survivor", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mask_h20survivor_on", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mask_h20survivorxl", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mask_h20survivorxl_on", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mask_hockey", "fg": 1234, "rotates": false, "multitile": false }, + { "id": "mask_rioter", "fg": 1170, "rotates": false, "multitile": false }, + { "id": "mask_ski", "fg": 1160, "rotates": false, "multitile": false }, + { "id": "mask_ski_loose", "fg": 1160, "rotates": false, "multitile": false }, + { "id": "mask_survivor", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mask_survivorxl", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mask_wsurvivor", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mask_wsurvivorxl", "fg": 1142, "rotates": false, "multitile": false }, + { "id": "mbag", "fg": 1180, "rotates": false, "multitile": false }, + { "id": "miner_hat", "fg": 1001, "rotates": false, "multitile": false }, + { "id": "miner_hat_on", "fg": 1002, "rotates": false, "multitile": false }, + { "id": "mittens", "fg": 1127, "rotates": false, "multitile": false }, + { "id": "mocassins", "fg": 1044, "rotates": false, "multitile": false }, + { "id": "modularvest", "fg": 1259, "rotates": false, "multitile": false }, + { "id": "modularvestceramic", "fg": 1259, "rotates": false, "multitile": false }, + { "id": "modularvesthard", "fg": 1259, "rotates": false, "multitile": false }, + { "id": "modularvestkevlar", "fg": 1259, "rotates": false, "multitile": false }, + { "id": "modularveststeel", "fg": 1259, "rotates": false, "multitile": false }, + { "id": "modularvestsuper", "fg": 1259, "rotates": false, "multitile": false }, + { "id": "molle_pack", "fg": 1177, "rotates": false, "multitile": false }, + { "id": "motorbike_boots", "fg": 1223, "rotates": false, "multitile": false }, + { "id": "motorbike_pants", "fg": 1053, "rotates": false, "multitile": false }, + { "id": "mouthpiece", "fg": 1268, "rotates": false, "multitile": false }, + { "id": "nanoskirt", "fg": 1018, "rotates": false, "multitile": false }, + { "id": "nomex_gloves", "fg": 1072, "rotates": false, "multitile": false }, + { "id": "nomex_hood", "fg": 1170, "rotates": false, "multitile": false }, + { "id": "nomex_socks", "fg": 1035, "rotates": false, "multitile": false }, + { "id": "nomex_suit", "fg": 1070, "rotates": false, "multitile": false }, + { "id": "obi_gi", "fg": 540, "rotates": false, "multitile": false }, + { "id": "optical_cloak", "fg": 1202, "rotates": false, "multitile": false }, + { "id": "pants", "fg": 1053, "rotates": false, "multitile": false }, + { "id": "pants_army", "fg": 1057, "rotates": false, "multitile": false }, + { "id": "pants_cargo", "fg": 1056, "rotates": false, "multitile": false }, + { "id": "pants_checkered", "fg": 1218, "rotates": false, "multitile": false }, + { "id": "pants_fur", "fg": 1060, "rotates": false, "multitile": false }, + { "id": "pants_leather", "fg": 1054, "rotates": false, "multitile": false }, + { "id": "pants_ski", "fg": 1059, "rotates": false, "multitile": false }, + { "id": "pants_survivor", "fg": 1056, "rotates": false, "multitile": false }, + { "id": "patchwork_scarf", "fg": 1139, "rotates": false, "multitile": false }, + { "id": "patchwork_scarf_loose", "fg": 1139, "rotates": false, "multitile": false }, + { "id": "peacoat", "fg": 1114, "rotates": false, "multitile": false }, + { "id": "plastic_shopping_bag", "fg": 781, "rotates": false, "multitile": false }, + { "id": "polo_shirt", "fg": 1083, "rotates": false, "multitile": false }, + { "id": "poncho", "fg": 1107, "rotates": false, "multitile": false }, + { "id": "postman_hat", "fg": 1157, "rotates": false, "multitile": false }, + { "id": "postman_shirt", "fg": 1263, "rotates": false, "multitile": false }, + { "id": "postman_shorts", "fg": 1264, "rotates": false, "multitile": false }, + { "id": "pot_helmet", "fg": 1165, "rotates": false, "multitile": false }, + { "id": "power_armor_basic", "fg": 1203, "rotates": false, "multitile": false }, + { "id": "power_armor_frame", "fg": 1209, "rotates": false, "multitile": false }, + { "id": "power_armor_heavy", "fg": 1207, "rotates": false, "multitile": false }, + { "id": "power_armor_helmet_basic", "fg": 1204, "rotates": false, "multitile": false }, + { "id": "power_armor_helmet_heavy", "fg": 1208, "rotates": false, "multitile": false }, + { "id": "power_armor_helmet_light", "fg": 1206, "rotates": false, "multitile": false }, + { "id": "power_armor_light", "fg": 1205, "rotates": false, "multitile": false }, + { "id": [ "purse", "slingpack" ], "fg": 1179, "rotates": false, "multitile": false }, + { "id": "quiver", "fg": 1183, "rotates": false, "multitile": false }, + { "id": "quiver_large", "fg": 1184, "rotates": false, "multitile": false }, + { "id": "rad_badge", "fg": 1189, "rotates": false, "multitile": false }, + { "id": "rm13_armor", "fg": 1228, "rotates": false, "multitile": false }, + { "id": "rm13_armor_on", "fg": 1228, "rotates": false, "multitile": false }, + { "id": "roller_blades", "fg": 1071, "rotates": false, "multitile": false }, + { "id": "rollerskates", "fg": 1071, "rotates": false, "multitile": false }, + { "id": "rucksack", "fg": 1177, "rotates": false, "multitile": false }, + { "id": "runner_bag", "fg": 1175, "rotates": false, "multitile": false }, + { "id": "scabbard", "fg": 1184, "rotates": false, "multitile": false }, + { "id": "scarf", "fg": 1139, "rotates": false, "multitile": false }, + { "id": "scarf_fur", "fg": 1140, "rotates": false, "multitile": false }, + { "id": "scarf_fur_long", "fg": 1140, "rotates": false, "multitile": false }, + { "id": "scarf_fur_long_loose", "fg": 1140, "rotates": false, "multitile": false }, + { "id": "scarf_fur_loose", "fg": 1140, "rotates": false, "multitile": false }, + { "id": "scarf_long", "fg": 1139, "rotates": false, "multitile": false }, + { "id": "scarf_long_loose", "fg": 1139, "rotates": false, "multitile": false }, + { "id": "scarf_loose", "fg": 1139, "rotates": false, "multitile": false }, + { "id": "sf_watch", "fg": 1012, "rotates": false, "multitile": false }, + { "id": "sheath", "fg": 1183, "rotates": false, "multitile": false }, + { "id": "sheriffshirt", "fg": 1085, "rotates": false, "multitile": false }, + { "id": "shoes_bowling", "fg": 725, "rotates": false, "multitile": false }, + { "id": "sholster", "fg": 906, "rotates": false, "multitile": false }, + { "id": "shorts", "fg": 1050, "rotates": false, "multitile": false }, + { "id": "shorts_cargo", "fg": 1051, "rotates": false, "multitile": false }, + { "id": "shorts_denim", "fg": 1265, "rotates": false, "multitile": false }, + { "id": "silver_bracelet", "fg": 1010, "rotates": false, "multitile": false }, + { "id": "silver_ear", "fg": 1007, "rotates": false, "multitile": false }, + { "id": "skirt", "fg": 1062, "rotates": false, "multitile": false }, + { "id": "skirt_leather", "fg": 1269, "rotates": false, "multitile": false }, + { "id": "sleeping_bag", "fg": 1195, "rotates": false, "multitile": false }, + { "id": "sleeping_bag_fur", "fg": 1193, "rotates": false, "multitile": false }, + { "id": "sleeveless_duster", "fg": 1115, "rotates": false, "multitile": false }, + { "id": "sleeveless_duster_fur", "fg": 1116, "rotates": false, "multitile": false }, + { "id": "sleeveless_duster_leather", "fg": 1116, "rotates": false, "multitile": false }, + { "id": "sleeveless_duster_survivor", "fg": 1116, "rotates": false, "multitile": false }, + { "id": "sleeveless_trenchcoat", "fg": 1115, "rotates": false, "multitile": false }, + { "id": "sleeveless_trenchcoat_fur", "fg": 1116, "rotates": false, "multitile": false }, + { "id": "sleeveless_trenchcoat_leather", "fg": 1116, "rotates": false, "multitile": false }, + { "id": "sleeveless_trenchcoat_survivor", "fg": 1116, "rotates": false, "multitile": false }, + { "id": "sleeveless_tunic", "fg": 1074, "rotates": false, "multitile": false }, + { "id": "small_relic", "fg": 1187, "rotates": false, "multitile": false }, + { "id": "sneakers", "fg": 1046, "rotates": false, "multitile": false }, + { "id": "snuggie", "fg": 1198, "rotates": false, "multitile": false }, + { "id": "socks", "fg": 1033, "rotates": false, "multitile": false }, + { "id": "socks_bag", "fg": 1045, "rotates": false, "multitile": false }, + { "id": "socks_bowling", "fg": 1033, "rotates": false, "multitile": false }, + { "id": "socks_wool", "fg": 1034, "rotates": false, "multitile": false }, + { "id": "sports_bra", "fg": 1088, "rotates": false, "multitile": false }, + { "id": "stockings", "fg": 1266, "rotates": false, "multitile": false }, + { "id": "stockings_tent_arms", "fg": 1266, "rotates": false, "multitile": false }, + { "id": "stockings_tent_legs", "fg": 1266, "rotates": false, "multitile": false }, + { "id": "straw_basket", "fg": 818, "rotates": false, "multitile": false }, + { "id": "straw_fedora", "fg": 819, "rotates": false, "multitile": false }, + { "id": "straw_hat", "fg": 819, "rotates": false, "multitile": false }, + { "id": "straw_sandals", "fg": 1044, "rotates": false, "multitile": false }, + { "id": "striped_pants", "fg": 1014, "rotates": false, "multitile": false }, + { "id": "striped_shirt", "fg": 1084, "rotates": false, "multitile": false }, + { "id": "suit", "fg": 1077, "rotates": false, "multitile": false }, + { "id": "suitcase_l", "fg": 587, "rotates": false, "multitile": false }, + { "id": "suitcase_m", "fg": 621, "rotates": false, "multitile": false }, + { "id": "sundress", "fg": 1074, "rotates": false, "multitile": false }, + { "id": "sunglasses", "fg": 1153, "rotates": false, "multitile": false }, + { "id": "survivor_belt", "fg": 1117, "rotates": false, "multitile": false }, + { "id": "survivor_belt_notools", "fg": 1117, "rotates": false, "multitile": false }, + { "id": "survivor_duffel_bag", "fg": 1180, "rotates": false, "multitile": false }, + { "id": "survivor_pack", "fg": 1176, "rotates": false, "multitile": false }, + { "id": "survivor_rucksack", "fg": 1180, "rotates": false, "multitile": false }, + { "id": "survivor_runner_pack", "fg": 1176, "rotates": false, "multitile": false }, + { "id": "survivor_suit", "fg": 1222, "rotates": false, "multitile": false }, + { "id": "survivor_vest", "fg": 1118, "rotates": false, "multitile": false }, + { "id": "swat_armor", "fg": 1226, "rotates": false, "multitile": false }, + { "id": "sweater", "fg": 1095, "rotates": false, "multitile": false }, + { "id": "sweatshirt", "fg": 1094, "rotates": false, "multitile": false }, + { "id": "swim_fins", "fg": 1224, "rotates": false, "multitile": false }, + { "id": "tabi_dress", "fg": 1035, "rotates": false, "multitile": false }, + { "id": "tabi_gi", "fg": 1033, "rotates": false, "multitile": false }, + { "id": "tac_fullhelmet", "fg": 1169, "rotates": false, "multitile": false }, + { "id": "tac_helmet", "fg": 1227, "rotates": false, "multitile": false }, + { "id": "tank_top", "fg": 1087, "rotates": false, "multitile": false }, + { "id": "technician_pants_gray", "fg": 1053, "rotates": false, "multitile": false }, + { "id": "technician_shirt_gray", "fg": 1081, "rotates": false, "multitile": false }, + { "id": "thermal_gloves", "fg": 1072, "rotates": false, "multitile": false }, + { "id": "thermal_gloves_on", "fg": 1072, "rotates": false, "multitile": false }, + { "id": "thermal_mask", "fg": 1160, "rotates": false, "multitile": false }, + { "id": "thermal_mask_on", "fg": 1160, "rotates": false, "multitile": false }, + { "id": "thermal_outfit", "fg": 1070, "rotates": false, "multitile": false }, + { "id": "thermal_outfit_on", "fg": 1070, "rotates": false, "multitile": false }, + { "id": "thermal_socks", "fg": 1035, "rotates": false, "multitile": false }, + { "id": "thermal_socks_on", "fg": 1035, "rotates": false, "multitile": false }, + { "id": "thermal_suit", "fg": 1070, "rotates": false, "multitile": false }, + { "id": "thermal_suit_on", "fg": 1070, "rotates": false, "multitile": false }, + { "id": "throwing_axe", "fg": 881, "rotates": false, "multitile": false }, + { "id": "throwing_knife", "fg": 466, "rotates": false, "multitile": false }, + { "id": "tie_skinny", "fg": 1278, "rotates": false, "multitile": false }, + { "id": "tieclip", "fg": 414, "rotates": false, "multitile": false }, + { "id": "tights", "fg": 1053, "rotates": false, "multitile": false }, + { "id": "tool_belt", "fg": 1117, "rotates": false, "multitile": false }, + { "id": "tophat", "fg": 1173, "rotates": false, "multitile": false }, + { "id": "touring_suit", "fg": 1240, "rotates": false, "multitile": false }, + { "id": "towel_wet", "fg": 1192, "rotates": false, "multitile": false }, + { "id": "trenchcoat", "fg": 1108, "rotates": false, "multitile": false }, + { "id": "trenchcoat_fur", "fg": 1111, "rotates": false, "multitile": false }, + { "id": "trenchcoat_leather", "fg": 1110, "rotates": false, "multitile": false }, + { "id": "trenchcoat_survivor", "fg": 1110, "rotates": false, "multitile": false }, + { "id": "tricorne", "fg": 1156, "rotates": false, "multitile": false }, + { "id": "trunks", "fg": 1049, "rotates": false, "multitile": false }, + { "id": "tshirt", "fg": 1081, "rotates": false, "multitile": false }, + { "id": "tshirt_text", "fg": 1081, "rotates": false, "multitile": false }, + { "id": "tunic_rag", "fg": 1073, "rotates": false, "multitile": false }, + { "id": "turban", "fg": 1170, "rotates": false, "multitile": false }, + { "id": "tux", "fg": 1078, "rotates": false, "multitile": false }, + { "id": "under_armor", "fg": 1098, "rotates": false, "multitile": false }, + { "id": "under_armor_shorts", "fg": 1050, "rotates": false, "multitile": false }, + { "id": "undershirt", "fg": 1081, "rotates": false, "multitile": false }, + { "id": "union_suit", "fg": 1244, "rotates": false, "multitile": false }, + { "id": "vest", "fg": 1115, "rotates": false, "multitile": false }, + { "id": "vest_leather", "fg": 1116, "rotates": false, "multitile": false }, + { "id": "waistcoat", "fg": 1115, "rotates": false, "multitile": false }, + { "id": "wetsuit", "fg": 1070, "rotates": false, "multitile": false }, + { "id": "wetsuit_booties", "fg": 1035, "rotates": false, "multitile": false }, + { "id": "wetsuit_gloves", "fg": 1072, "rotates": false, "multitile": false }, + { "id": "wetsuit_hood", "fg": 1170, "rotates": false, "multitile": false }, + { "id": "wetsuit_spring", "fg": 1073, "rotates": false, "multitile": false }, + { "id": "winter_gloves_army", "fg": 1125, "rotates": false, "multitile": false }, + { "id": "winter_jacket_army", "fg": 1119, "rotates": false, "multitile": false }, + { "id": "winter_pants_army", "fg": 1014, "rotates": false, "multitile": false }, + { "id": "wolfsuit", "fg": 1064, "rotates": false, "multitile": false }, + { "id": "wool_hoodie", "fg": 1096, "rotates": false, "multitile": false }, + { "id": "wool_suit", "fg": 1244, "rotates": false, "multitile": false }, + { "id": "wrapped_rad_badge", "fg": 1189, "rotates": false, "multitile": false }, + { "id": "wristwatch", "fg": 1215, "rotates": false, "multitile": false }, + { "id": "wsurvivor_suit", "fg": 1254, "rotates": false, "multitile": false }, + { "id": "xlsurvivor_suit", "fg": 1222, "rotates": false, "multitile": false }, + { "id": "zubon_gi", "fg": 1014, "rotates": false, "multitile": false }, + { "id": "1st_aid", "fg": 1302, "rotates": false }, + { "id": "adderall", "fg": 1288, "rotates": false, "multitile": false }, + { "id": "antibiotics", "fg": 1294, "rotates": false, "multitile": false }, + { "id": "antifungal", "fg": 1297, "rotates": false }, + { "id": "antiparasitic", "fg": 1297, "rotates": false }, + { "id": "aspirin", "fg": 1297, "rotates": false }, + { "id": "bandages", "fg": 1303, "rotates": false }, + { "id": "caffeine", "fg": 1298, "rotates": false }, + { "id": "cig", "fg": 1291, "rotates": false, "multitile": false }, + { "id": "cig_butt", "fg": 763, "rotates": false, "multitile": false }, + { "id": "cig_lit", "fg": 762, "rotates": false, "multitile": false }, + { "id": "cigar", "fg": 1293, "rotates": false, "multitile": false }, + { "id": "cigar_butt", "fg": 768, "rotates": false, "multitile": false }, + { "id": "cigar_lit", "fg": 767, "rotates": false, "multitile": false }, + { "id": "codeine", "fg": 1286, "rotates": false, "multitile": false }, + { "id": "coke", "fg": 373, "rotates": false, "multitile": false }, + { "id": "contacts", "fg": 932, "rotates": false }, + { "id": "crack", "fg": 1295, "rotates": false, "multitile": false }, + { "id": "dayquil", "fg": 1299, "rotates": false }, + { "id": "eyedrops", "fg": 1280, "rotates": false }, + { "id": "flu_shot", "fg": 1279, "rotates": false, "multitile": false }, + { "id": "handrolled_cig", "fg": 764, "rotates": false, "multitile": false }, + { "id": "heroin", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "inhaler", "fg": 1285, "rotates": false, "multitile": false }, + { "id": "iodine", "fg": 1297, "rotates": false, "multitile": false }, + { "id": "joint", "fg": 764, "rotates": false, "multitile": false }, + { "id": "joint_lit", "fg": 765, "rotates": false, "multitile": false }, + { "id": "joint_roach", "fg": 766, "rotates": false, "multitile": false }, + { "id": "lsd", "fg": 1296, "rotates": false, "multitile": false }, + { "id": "meth", "fg": 373, "rotates": false, "multitile": false }, + { "id": "morphine", "fg": 373, "rotates": false, "multitile": false }, + { "id": "oxycodone", "fg": 1282, "rotates": false, "multitile": false }, + { "id": "oxygen", "fg": 1281, "rotates": false }, + { "id": "oxygen_tank", "fg": 1281, "rotates": false }, + { "id": "poppy_pain", "fg": 373, "rotates": false, "multitile": false }, + { "id": "poppy_sleep", "fg": 373, "rotates": false, "multitile": false }, + { "id": "pur_tablets", "fg": 1297, "rotates": false }, + { "id": "quikclot", "fg": 1295, "rotates": false, "multitile": false }, + { "id": "thorazine", "fg": 1289, "rotates": false, "multitile": false }, + { "id": "tobacco", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "tramadol", "fg": 1297, "rotates": false, "multitile": false }, + { "id": "vaccine_shot", "fg": 1279, "rotates": false, "multitile": false }, + { "id": "vitamins", "fg": 1301, "rotates": false }, + { "id": "weed", "fg": 1292, "rotates": false, "multitile": false }, + { "id": "xanax", "fg": 1287, "rotates": false, "multitile": false }, + { "id": "acorns", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "acorns_cooked", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "ant_egg", "fg": 1367, "rotates": false, "multitile": false }, + { "id": "apple", "fg": 1315, "rotates": false, "multitile": false }, + { "id": "apple_canned", "fg": 1325, "rotates": false, "multitile": false }, + { "id": "apricot", "fg": 1409, "rotates": false, "multitile": false }, + { "id": "arm", "fg": 1365, "rotates": false, "multitile": false }, + { "id": "bacon", "fg": 1364, "rotates": false, "multitile": false }, + { "id": "banana", "fg": 1316, "rotates": false, "multitile": false }, + { "id": "barley", "fg": 1338, "rotates": false, "multitile": false }, + { "id": "basketball", "fg": 1398, "rotates": false, "multitile": false }, + { "id": "beans_cooked", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "beansnrice", "fg": 373, "rotates": false, "multitile": false }, + { "id": "beet_syrup", "fg": 922, "rotates": false, "multitile": false }, + { "id": "bfipowder", "fg": 373, "rotates": false, "multitile": false }, + { "id": "biscuit", "fg": 1387, "rotates": false, "multitile": false }, + { "id": "blackberries", "fg": 1334, "rotates": false, "multitile": false }, + { "id": "blt", "fg": 1370, "rotates": false, "multitile": false }, + { "id": "blueberries", "fg": 1334, "rotates": false, "multitile": false }, + { "id": "blueberries_cooked", "fg": 1410, "rotates": false, "multitile": false }, + { "id": "boiled_egg", "fg": 1367, "rotates": false, "multitile": false }, + { "id": "bologna", "fg": 1356, "rotates": false, "multitile": false }, + { "id": "bone", "fg": 941, "rotates": false, "multitile": false }, + { "id": "bone_human", "fg": 941, "rotates": false, "multitile": false }, + { "id": "bone_tainted", "fg": 814, "rotates": false, "multitile": false }, + { "id": "brandy", "fg": 927, "rotates": false, "multitile": false }, + { "id": "bread", "fg": 372, "rotates": false, "multitile": false }, + { "id": "brew_fruit_wine", "fg": 927, "rotates": false, "multitile": false }, + { "id": "brioche", "fg": 372, "rotates": false, "multitile": false }, + { "id": "broccoli", "fg": 1341, "rotates": false, "multitile": false }, + { "id": "brownie_weed", "fg": 1378, "rotates": false, "multitile": false }, + { "id": "buckwheat", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "buckwheat_cooked", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "caff_gum", "fg": 1366, "rotates": false, "multitile": false }, + { "id": "cake2", "fg": 1378, "rotates": false, "multitile": false }, + { "id": "cake3", "fg": 1380, "rotates": false, "multitile": false }, + { "id": "can_beans", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "can_cheese", "fg": 1394, "rotates": false, "multitile": false }, + { "id": "can_chicken", "fg": 1369, "rotates": false, "multitile": false }, + { "id": "can_chowder", "fg": 373, "rotates": false, "multitile": false }, + { "id": "can_clams", "fg": 373, "rotates": false, "multitile": false }, + { "id": "can_coconut", "fg": 1369, "rotates": false, "multitile": false }, + { "id": "can_corn", "fg": 1394, "rotates": false, "multitile": false }, + { "id": "can_herring", "fg": 895, "rotates": false, "multitile": false }, + { "id": "can_pineapple", "fg": 1394, "rotates": false, "multitile": false }, + { "id": "can_salmon", "fg": 1308, "rotates": false, "multitile": false }, + { "id": "can_sardine", "fg": 895, "rotates": false, "multitile": false }, + { "id": "can_spam", "fg": 1308, "rotates": false, "multitile": false }, + { "id": "can_tomato", "fg": 1324, "rotates": false, "multitile": false }, + { "id": "can_tuna", "fg": 1308, "rotates": false, "multitile": false }, + { "id": "candy2", "fg": 1330, "rotates": false, "multitile": false }, + { "id": "candy3", "fg": 1330, "rotates": false, "multitile": false }, + { "id": "candy", "fg": 1330, "rotates": false, "multitile": false }, + { "id": "candycigarette", "fg": 1411, "rotates": false, "multitile": false }, + { "id": "carrot", "fg": 1344, "rotates": false, "multitile": false }, + { "id": "catfood", "fg": 1308, "rotates": false, "multitile": false }, + { "id": "celery", "fg": 745, "rotates": false, "multitile": false }, + { "id": "cereal2", "fg": 1320, "rotates": false, "multitile": false }, + { "id": "cereal3", "fg": 1320, "rotates": false, "multitile": false }, + { "id": "cereal", "fg": 1320, "rotates": false, "multitile": false }, + { "id": "chaw", "fg": 1312, "rotates": false, "multitile": false }, + { "id": "cheese", "fg": 1412, "rotates": false, "multitile": false }, + { "id": "cheese_fries", "fg": 1400, "rotates": false, "multitile": false }, + { "id": "cheeseburger", "fg": 1713, "rotates": false, "multitile": false }, + { "id": "chem_anfo", "fg": 1308, "rotates": false, "multitile": false }, + { "id": "chem_chromium_oxide", "fg": 1312, "rotates": false, "multitile": false }, + { "id": "chem_hexamine", "fg": 1360, "rotates": false, "multitile": false }, + { "id": "chem_sulphur", "fg": 1394, "rotates": false, "multitile": false }, + { "id": "cherries", "fg": 1393, "rotates": false, "multitile": false }, + { "id": "chili", "fg": 1385, "rotates": false, "multitile": false }, + { "id": "chilidogs", "fg": 1357, "rotates": false, "multitile": false }, + { "id": "chilly-p", "fg": 1324, "rotates": false, "multitile": false }, + { "id": "chips2", "fg": 1319, "rotates": false, "multitile": false }, + { "id": "chips3", "fg": 1319, "rotates": false, "multitile": false }, + { "id": "chips", "fg": 1319, "rotates": false, "multitile": false }, + { "id": "choc_pancakes", "fg": 1381, "rotates": false, "multitile": false }, + { "id": "choc_waffles", "fg": 1383, "rotates": false, "multitile": false }, + { "id": "choco_coffee_beans", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "chocolate", "fg": 1327, "rotates": false, "multitile": false }, + { "id": "chocpretzels", "fg": 1326, "rotates": false, "multitile": false }, + { "id": "clay_lump", "fg": 1327, "rotates": false, "multitile": false }, + { "id": "coconut", "fg": 1398, "rotates": false, "multitile": false }, + { "id": "coffee_bean", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "coffee_raw", "fg": 1379, "rotates": false, "multitile": false }, + { "id": "cola_meth", "fg": 922, "rotates": false, "multitile": false }, + { "id": "con_milk", "fg": 1369, "rotates": false, "multitile": false }, + { "id": "cooked_dinner", "fg": 1328, "rotates": false, "multitile": false }, + { "id": "cookies", "fg": 1387, "rotates": false, "multitile": false }, + { "id": "corn", "fg": 1345, "rotates": false, "multitile": false }, + { "id": "cornbread", "fg": 1351, "rotates": false, "multitile": false }, + { "id": "corndogs_cooked", "fg": 1358, "rotates": false, "multitile": false }, + { "id": "corndogs_frozen", "fg": 1358, "rotates": false, "multitile": false }, + { "id": "cornmeal", "fg": 1394, "rotates": false, "multitile": false }, + { "id": "cotton_ball", "fg": 755, "rotates": false, "multitile": false }, + { "id": "cotton_boll", "fg": 1404, "rotates": false, "multitile": false }, + { "id": "crackers", "fg": 1384, "rotates": false, "multitile": false }, + { "id": "cracklins", "fg": 1348, "rotates": false, "multitile": false }, + { "id": "cranberries", "fg": 1337, "bg": 1873, "rotates": false }, + { "id": "crispycran", "fg": 927, "rotates": false, "multitile": false }, + { "id": "cucumber", "fg": 1342, "rotates": false, "multitile": false }, + { "id": "curry_meat", "fg": 1423, "rotates": false, "multitile": false }, + { "id": "curry_powder", "fg": 1324, "rotates": false, "multitile": false }, + { "id": "currywurst", "fg": 1357, "rotates": false, "multitile": false }, + { "id": "dahlia_baked", "fg": 751, "rotates": false, "multitile": false }, + { "id": "dahlia_root", "fg": 751, "rotates": false, "multitile": false }, + { "id": "dandelion_cooked", "fg": 1312, "rotates": false, "multitile": false }, + { "id": "dandelion_fried", "fg": 1416, "rotates": false, "multitile": false }, + { "id": "datura_seed", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "deluxe_beans", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "deluxe_beansnrice", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "deluxe_eggs", "fg": 1320, "rotates": false, "multitile": false }, + { "id": "deluxe_rice", "fg": 1394, "rotates": false, "multitile": false }, + { "id": "deluxe_veggy_beans", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "deluxe_veggy_beansnrice", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "deluxe_veggy_rice", "fg": 1394, "rotates": false, "multitile": false }, + { "id": "diazepam", "fg": 1297, "rotates": false, "multitile": false }, + { "id": "disinfectant", "fg": 921, "rotates": false, "multitile": false }, + { "id": "dogbane", "fg": 1306, "rotates": false, "multitile": false }, + { "id": "dried_salad", "fg": 1312, "rotates": false, "multitile": false }, + { "id": "drink_boozeberry", "fg": 1406, "rotates": false, "multitile": false }, + { "id": "drink_strawberry_surprise", "fg": 927, "rotates": false, "multitile": false }, + { "id": "dry_beans", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "dry_fish", "fg": 895, "rotates": false, "multitile": false }, + { "id": "dry_fruit", "fg": 1307, "rotates": false, "multitile": false }, + { "id": "dry_meat", "fg": 1324, "rotates": false, "multitile": false }, + { "id": "dry_meat_tainted", "fg": 1307, "rotates": false, "multitile": false }, + { "id": "dry_mushroom", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "dry_rice", "fg": 373, "rotates": false, "multitile": false }, + { "id": "dry_veggy", "fg": 1312, "rotates": false, "multitile": false }, + { "id": "dry_veggy_tainted", "fg": 1307, "rotates": false, "multitile": false }, + { "id": "egg_bird", "fg": 1427, "rotates": false, "multitile": false }, + { "id": "egg_reptile", "fg": 1367, "rotates": false, "multitile": false }, + { "id": "fat", "fg": 1364, "rotates": false, "multitile": false }, + { "id": "fat_tainted", "fg": 1320, "rotates": false, "multitile": false }, + { "id": "fchicken", "fg": 1355, "rotates": false, "multitile": false }, + { "id": "fertilizer_commercial", "fg": 1394, "rotates": false, "multitile": false }, + { "id": "fetus", "fg": 1364, "rotates": false, "multitile": false }, + { "id": "fish", "fg": 1333, "rotates": false, "multitile": false }, + { "id": "fish_canned", "fg": 1350, "rotates": false, "multitile": false }, + { "id": "fish_cooked", "fg": 1347, "rotates": false, "multitile": false }, + { "id": "fish_fried", "fg": 1351, "rotates": false, "multitile": false }, + { "id": "fish_pickled", "fg": 1347, "rotates": false, "multitile": false }, + { "id": "fish_sandwich", "fg": 1354, "rotates": false, "multitile": false }, + { "id": "fish_smoked", "fg": 368, "rotates": false, "multitile": false }, + { "id": "flour", "fg": 1369, "rotates": false, "multitile": false }, + { "id": "fried_spam", "fg": 1333, "rotates": false, "multitile": false }, + { "id": "fries", "fg": 1400, "rotates": false, "multitile": false }, + { "id": "frozen_dinner", "fg": 1346, "rotates": false, "multitile": false }, + { "id": "fruit_cooked", "fg": 1352, "rotates": false, "multitile": false }, + { "id": "fruit_leather", "fg": 1333, "rotates": false, "multitile": false }, + { "id": "fruit_pancakes", "fg": 1381, "rotates": false, "multitile": false }, + { "id": "fruit_waffles", "fg": 1382, "rotates": false, "multitile": false }, + { "id": "fruit_wine", "fg": 927, "rotates": false, "multitile": false }, + { "id": "fungal_seeds", "fg": 1390, "rotates": false, "multitile": false }, + { "id": "fungicide", "fg": 1272, "rotates": false, "multitile": false }, + { "id": "grahmcrackers", "fg": 1384, "rotates": false, "multitile": false }, + { "id": "granola", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "grapefruit", "fg": 1392, "rotates": false, "multitile": false }, + { "id": "grapes", "fg": 1426, "rotates": false, "multitile": false }, + { "id": "gum", "fg": 1283, "rotates": false, "multitile": false }, + { "id": "gummy_vitamins", "fg": 1330, "rotates": false, "multitile": false }, + { "id": "hamburger", "fg": 1713, "rotates": false, "multitile": false }, + { "id": "hardtack", "fg": 1384, "rotates": false, "multitile": false }, + { "id": "honey_ant", "fg": 1392, "rotates": false, "multitile": false }, + { "id": "honey_bottled", "fg": 926, "rotates": false, "multitile": false }, + { "id": "honeycomb", "fg": 1361, "rotates": false, "multitile": false }, + { "id": "hops", "fg": 745, "rotates": false, "multitile": false }, + { "id": "horseradish", "fg": 1369, "rotates": false, "multitile": false }, + { "id": "hotdogs_cooked", "fg": 1357, "rotates": false, "multitile": false }, + { "id": "hotdogs_frozen", "fg": 1357, "rotates": false, "multitile": false }, + { "id": "human_cooked", "fg": 1311, "rotates": false, "multitile": false }, + { "id": "human_flesh", "fg": 1305, "rotates": false, "multitile": false }, + { "id": "insta_salad", "fg": 1312, "rotates": false, "multitile": false }, + { "id": "irradiated_apple", "fg": 1315, "rotates": false, "multitile": false }, + { "id": "irradiated_apricot", "fg": 1409, "rotates": false, "multitile": false }, + { "id": "irradiated_banana", "fg": 1316, "rotates": false, "multitile": false }, + { "id": "irradiated_blackberries", "fg": 1334, "rotates": false, "multitile": false }, + { "id": "irradiated_blueberries", "fg": 1334, "rotates": false, "multitile": false }, + { "id": "irradiated_broccoli", "fg": 1341, "rotates": false, "multitile": false }, + { "id": "irradiated_carrot", "fg": 1344, "rotates": false, "multitile": false }, + { "id": "irradiated_celery", "fg": 745, "rotates": false, "multitile": false }, + { "id": "irradiated_cherries", "fg": 1393, "rotates": false, "multitile": false }, + { "id": "irradiated_corn", "fg": 1345, "rotates": false, "multitile": false }, + { "id": "irradiated_cranberries", "fg": 1337, "bg": 1873, "rotates": false }, + { "id": "irradiated_cucumber", "fg": 1342, "rotates": false, "multitile": false }, + { "id": "irradiated_grapefruit", "fg": 1392, "rotates": false, "multitile": false }, + { "id": "irradiated_grapes", "fg": 1426, "rotates": false, "multitile": false }, + { "id": "irradiated_kiwi", "fg": 1427, "rotates": false, "multitile": false }, + { "id": "irradiated_lemon", "fg": 1318, "rotates": false, "multitile": false }, + { "id": "irradiated_lettuce", "fg": 1372, "rotates": false, "multitile": false }, + { "id": "irradiated_mango", "fg": 1405, "rotates": false, "multitile": false }, + { "id": "irradiated_melon", "fg": 1404, "rotates": false, "multitile": false }, + { "id": "irradiated_onion", "fg": 1343, "rotates": false, "multitile": false }, + { "id": "irradiated_orange", "fg": 1317, "rotates": false, "multitile": false }, + { "id": "irradiated_papaya", "fg": 1408, "rotates": false, "multitile": false }, + { "id": "irradiated_peach", "fg": 1399, "rotates": false, "multitile": false }, + { "id": "irradiated_pear", "fg": 1391, "rotates": false, "multitile": false }, + { "id": "irradiated_pineapple", "fg": 1397, "rotates": false, "multitile": false }, + { "id": "irradiated_plums", "fg": 1396, "rotates": false, "multitile": false }, + { "id": "irradiated_pomegranate", "fg": 1407, "rotates": false, "multitile": false }, + { "id": "irradiated_raspberries", "fg": 1393, "rotates": false, "multitile": false }, + { "id": "irradiated_rhubarb", "fg": 1425, "rotates": false, "multitile": false }, + { "id": "irradiated_strawberries", "fg": 1336, "rotates": false, "multitile": false }, + { "id": "irradiated_tomato", "fg": 1340, "rotates": false, "multitile": false }, + { "id": "irradiated_watermelon", "fg": 1403, "rotates": false, "multitile": false }, + { "id": "irradiated_zucchini", "fg": 1342, "rotates": false, "multitile": false }, + { "id": "jam_fruit", "fg": 1352, "rotates": false, "multitile": false }, + { "id": "jerky", "fg": 1328, "rotates": false, "multitile": false }, + { "id": "jihelucake", "fg": 1380, "rotates": false, "multitile": false }, + { "id": "johnnycake", "fg": 1351, "rotates": false, "multitile": false }, + { "id": "juice_pulp", "fg": 1308, "rotates": false, "multitile": false }, + { "id": "kernels", "fg": 1322, "rotates": false, "multitile": false }, + { "id": "ketchup", "fg": 1352, "rotates": false, "multitile": false }, + { "id": "kiwi", "fg": 1427, "rotates": false, "multitile": false }, + { "id": "lard", "fg": 1366, "rotates": false, "multitile": false }, + { "id": "lasagne", "fg": 1388, "rotates": false, "multitile": false }, + { "id": "lasagne_raw", "fg": 998, "rotates": false, "multitile": false }, + { "id": "leg", "fg": 1365, "rotates": false, "multitile": false }, + { "id": "lemon", "fg": 1318, "rotates": false, "multitile": false }, + { "id": "lemonade", "fg": 1415, "rotates": false }, + { "id": "lettuce", "fg": 1372, "rotates": false, "multitile": false }, + { "id": "lunchmeat", "fg": 1333, "rotates": false, "multitile": false }, + { "id": "lutefisk", "fg": 1350, "rotates": false, "multitile": false }, + { "id": "macaroni_cooked", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "macaroni_helper", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "macaroni_raw", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "maltballs", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "mango", "fg": 1405, "rotates": false, "multitile": false }, + { "id": "marloss_berry", "fg": 1368, "rotates": false, "multitile": false }, + { "id": "marloss_gel", "fg": 926, "rotates": false, "multitile": false }, + { "id": "marloss_seed", "fg": 1417, "rotates": false, "multitile": false }, + { "id": "marshmallow", "fg": 1360, "rotates": false, "multitile": false }, + { "id": "material_quicklime", "fg": 373, "rotates": false, "multitile": false }, + { "id": "material_sand", "fg": 895, "rotates": false, "multitile": false }, + { "id": "mayonnaise", "fg": 1369, "rotates": false, "multitile": false }, + { "id": "meal_bone", "fg": 1369, "rotates": false, "multitile": false }, + { "id": "meal_chitin_piece", "fg": 370, "rotates": false, "multitile": false }, + { "id": "meat", "fg": 1305, "rotates": false, "multitile": false }, + { "id": "meat_aspic", "fg": 1333, "rotates": false, "multitile": false }, + { "id": "meat_canned", "fg": 1305, "rotates": false, "multitile": false }, + { "id": "meat_cooked", "fg": 1311, "rotates": false, "multitile": false }, + { "id": "meat_smoked", "fg": 1328, "rotates": false, "multitile": false }, + { "id": "meat_tainted", "fg": 1309, "rotates": false, "multitile": false }, + { "id": "melon", "fg": 1404, "rotates": false, "multitile": false }, + { "id": "milk_coffee", "fg": 922, "rotates": false, "multitile": false }, + { "id": "milk_powder", "fg": 373, "rotates": false, "multitile": false }, + { "id": "milk_tea", "fg": 922, "rotates": false, "multitile": false }, + { "id": "mintpatties", "fg": 1398, "rotates": false, "multitile": false }, + { "id": "morel_cooked", "fg": 1331, "rotates": false, "multitile": false }, + { "id": "morel_fried", "fg": 1331, "rotates": false, "multitile": false }, + { "id": "mre_beef", "fg": 1328, "rotates": false, "multitile": false }, + { "id": "mre_beef_box", "fg": 1377, "rotates": false, "multitile": false }, + { "id": "mre_chicken", "fg": 1346, "rotates": false, "multitile": false }, + { "id": "mre_chicken_box", "fg": 1377, "rotates": false, "multitile": false }, + { "id": "mre_hotdog_box", "fg": 1377, "rotates": false, "multitile": false }, + { "id": "mre_ravioli", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "mre_ravioli_box", "fg": 1377, "rotates": false, "multitile": false }, + { "id": "mre_veggy", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "mre_veggy_box", "fg": 1377, "rotates": false, "multitile": false }, + { "id": "mushroom", "fg": 1331, "rotates": false, "multitile": false }, + { "id": "mushroom_morel", "fg": 1331, "rotates": false, "multitile": false }, + { "id": "mustard", "fg": 926, "rotates": false, "multitile": false }, + { "id": "mycus_fruit", "fg": 1419, "rotates": false, "multitile": false }, + { "id": "nachos", "fg": 1359, "rotates": false, "multitile": false }, + { "id": "nachosc", "fg": 1359, "rotates": false, "multitile": false }, + { "id": "nachosm", "fg": 1359, "rotates": false, "multitile": false }, + { "id": "nachosmc", "fg": 1359, "rotates": false, "multitile": false }, + { "id": "neccowafers", "fg": 1330, "rotates": false, "multitile": false }, + { "id": "noodles_fast", "fg": 1351, "rotates": false, "multitile": false }, + { "id": "nyquil", "fg": 1300, "rotates": false }, + { "id": "oatmeal", "fg": 1295, "rotates": false, "multitile": false }, + { "id": "oatmeal_cooked", "fg": 1321, "rotates": false, "multitile": false }, + { "id": "oatmeal_deluxe", "fg": 1321, "rotates": false, "multitile": false }, + { "id": "onigiri", "fg": 1360, "rotates": false, "multitile": false }, + { "id": "onion", "fg": 1343, "rotates": false, "multitile": false }, + { "id": "onion_rings", "fg": 1401, "rotates": false, "multitile": false }, + { "id": "orange", "fg": 1317, "rotates": false, "multitile": false }, + { "id": "pancakes", "fg": 1381, "rotates": false, "multitile": false }, + { "id": "papaya", "fg": 1408, "rotates": false, "multitile": false }, + { "id": "peach", "fg": 1399, "rotates": false, "multitile": false }, + { "id": "peanutbutter", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "pear", "fg": 1391, "rotates": false, "multitile": false }, + { "id": "pelmeni", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "pemmican", "fg": 368, "rotates": false, "multitile": false }, + { "id": "pickle", "fg": 1342, "rotates": false, "multitile": false }, + { "id": "pie", "fg": 1374, "rotates": false, "multitile": false }, + { "id": "pie_meat", "fg": 1374, "rotates": false, "multitile": false }, + { "id": "pills_sleep", "fg": 1282, "rotates": false, "multitile": false }, + { "id": "pine_bough", "fg": 1292, "rotates": false, "multitile": false }, + { "id": "pine_nuts", "fg": 1295, "rotates": false, "multitile": false }, + { "id": "pineapple", "fg": 1397, "rotates": false, "multitile": false }, + { "id": "pizza_meat", "fg": 1376, "rotates": false, "multitile": false }, + { "id": "pizza_veggy", "fg": 1375, "rotates": false, "multitile": false }, + { "id": "plant_sac", "fg": 1304, "rotates": false, "multitile": false }, + { "id": "plums", "fg": 1396, "rotates": false, "multitile": false }, + { "id": "pomegranate", "fg": 1407, "rotates": false, "multitile": false }, + { "id": "popcorn2", "fg": 1323, "rotates": false, "multitile": false }, + { "id": "popcorn3", "fg": 1323, "rotates": false, "multitile": false }, + { "id": "popcorn", "fg": 1323, "rotates": false, "multitile": false }, + { "id": "pork_beans", "fg": 1395, "rotates": false, "multitile": false }, + { "id": "porkstick", "fg": 1348, "rotates": false, "multitile": false }, + { "id": "potato", "fg": 1427, "rotates": false, "multitile": false }, + { "id": "potato_baked", "fg": 1373, "rotates": false, "multitile": false }, + { "id": "powder_candy", "fg": 1371, "rotates": false, "multitile": false }, + { "id": "powder_eggs", "fg": 1394, "rotates": false, "multitile": false }, + { "id": "pretzels", "fg": 1326, "rotates": false, "multitile": false }, + { "id": "protein_drink", "fg": 1329, "rotates": false, "multitile": false }, + { "id": "protein_powder", "fg": 1295, "rotates": false, "multitile": false }, + { "id": "prozac", "fg": 1290, "rotates": false, "multitile": false }, + { "id": "pudding", "fg": 1369, "rotates": false, "multitile": false }, + { "id": "raspberries", "fg": 1393, "rotates": false, "multitile": false }, + { "id": "ravioli", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "raw_beans", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "raw_dandelion", "fg": 1416, "rotates": false, "multitile": false }, + { "id": "rehydrated_fish", "fg": 373, "rotates": false, "multitile": false }, + { "id": "rehydrated_fruit", "fg": 1308, "rotates": false, "multitile": false }, + { "id": "rehydrated_meat", "fg": 1325, "rotates": false, "multitile": false }, + { "id": "rehydrated_veggy", "fg": 1314, "rotates": false, "multitile": false }, + { "id": "rhubarb", "fg": 1425, "rotates": false, "multitile": false }, + { "id": "rice_cooked", "fg": 373, "rotates": false, "multitile": false }, + { "id": "roasted_coffee_bean", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "royal_beef", "fg": 1311, "rotates": false, "multitile": false }, + { "id": "royal_jelly", "fg": 1363, "rotates": false, "multitile": false }, + { "id": "salt", "fg": 1369, "rotates": false, "multitile": false }, + { "id": "salted_fish", "fg": 1350, "rotates": false, "multitile": false }, + { "id": "sandwich_cheese", "fg": 1354, "rotates": false, "multitile": false }, + { "id": "sandwich_cheese_grilled", "fg": 1354, "rotates": false, "multitile": false }, + { "id": "sandwich_jam", "fg": 1370, "rotates": false, "multitile": false }, + { "id": "sandwich_pb", "fg": 1713, "rotates": false, "multitile": false }, + { "id": "sandwich_pbh", "fg": 1354, "rotates": false, "multitile": false }, + { "id": "sandwich_pbj", "fg": 1370, "rotates": false, "multitile": false }, + { "id": "sandwich_sauce", "fg": 1713, "rotates": false, "multitile": false }, + { "id": "sashimi", "fg": 1333, "rotates": false, "multitile": false }, + { "id": "sauce_pesto", "fg": 1353, "rotates": false, "multitile": false }, + { "id": "sauce_red", "fg": 1352, "rotates": false, "multitile": false }, + { "id": "sausage", "fg": 1357, "rotates": false, "multitile": false }, + { "id": "sausagegravy", "fg": 369, "rotates": false, "multitile": false }, + { "id": "scrambled_eggs", "fg": 1320, "rotates": false, "multitile": false }, + { "id": "seasoning_italian", "fg": 1353, "rotates": false, "multitile": false }, + { "id": "seasoning_salt", "fg": 1295, "rotates": false, "multitile": false }, + { "id": "seed_barley", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "seed_blueberries", "fg": 1335, "rotates": false, "multitile": false }, + { "id": "seed_broccoli", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "seed_carrot", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "seed_corn", "fg": 1322, "rotates": false, "multitile": false }, + { "id": "seed_cotton_boll", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "seed_dogbane", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "seed_hops", "fg": 751, "rotates": false, "multitile": false }, + { "id": "seed_lettuce", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "seed_onion", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "seed_strawberries", "fg": 1337, "rotates": false, "multitile": false }, + { "id": "seed_sugar_beet", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "seed_tomato", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "seed_weed", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "seed_wheat", "fg": 1339, "rotates": false, "multitile": false }, + { "id": "slime_scrap", "fg": 925, "rotates": false, "multitile": false }, + { "id": "sloppyjoe", "fg": 1713, "rotates": false, "multitile": false }, + { "id": "smores", "fg": 1713, "rotates": false, "multitile": false }, + { "id": "smoxygen_tank", "fg": 1281, "rotates": false }, + { "id": "soup_chicken", "fg": 1329, "rotates": false, "multitile": false }, + { "id": "soup_dumplings", "fg": 1329, "rotates": false, "multitile": false }, + { "id": "soup_fish", "fg": 1329, "rotates": false, "multitile": false }, + { "id": "soup_mushroom", "fg": 1329, "rotates": false, "multitile": false }, + { "id": "soup_tomato", "fg": 1423, "rotates": false, "multitile": false }, + { "id": "soysauce", "fg": 922, "rotates": false, "multitile": false }, + { "id": "spaghetti_bolognese", "fg": 1385, "rotates": false, "multitile": false }, + { "id": "spaghetti_cooked", "fg": 1349, "rotates": false, "multitile": false }, + { "id": "spaghetti_pesto", "fg": 1386, "rotates": false, "multitile": false }, + { "id": "spaghetti_raw", "fg": 1348, "rotates": false, "multitile": false }, + { "id": "spider_egg", "fg": 755, "rotates": false, "multitile": false }, + { "id": "strawberries", "fg": 1336, "rotates": false, "multitile": false }, + { "id": "strawberries_cooked", "fg": 1352, "rotates": false, "multitile": false }, + { "id": "sugar", "fg": 1369, "rotates": false, "multitile": false }, + { "id": "sugar_beet", "fg": 753, "rotates": false, "multitile": false }, + { "id": "sugar_fried", "fg": 1379, "rotates": false, "multitile": false }, + { "id": "sushi_fishroll", "fg": 1418, "rotates": false, "multitile": false }, + { "id": "sushi_meatroll", "fg": 1418, "rotates": false, "multitile": false }, + { "id": "sushi_rice", "fg": 373, "rotates": false, "multitile": false }, + { "id": "sushi_veggyroll", "fg": 1418, "rotates": false, "multitile": false }, + { "id": "taco", "fg": 1389, "rotates": false, "multitile": false }, + { "id": "taint_tornado", "fg": 1423, "rotates": false, "multitile": false }, + { "id": "tallow", "fg": 1366, "rotates": false, "multitile": false }, + { "id": "tallow_tainted", "fg": 820, "rotates": false, "multitile": false }, + { "id": "tea_bark", "fg": 922, "rotates": false, "multitile": false }, + { "id": "tea_raw", "fg": 1353, "rotates": false, "multitile": false }, + { "id": "toastem2", "fg": 372, "rotates": false, "multitile": false }, + { "id": "toastem3", "fg": 372, "rotates": false, "multitile": false }, + { "id": "toastem", "fg": 372, "rotates": false, "multitile": false }, + { "id": "toasterpastry", "fg": 368, "rotates": false, "multitile": false }, + { "id": "toasterpastryfrozen", "fg": 372, "rotates": false, "multitile": false }, + { "id": "tomato", "fg": 1340, "rotates": false, "multitile": false }, + { "id": "tool_rocket_candy", "fg": 1403, "rotates": false, "multitile": false }, + { "id": "tool_rocket_candy_act", "fg": 1403, "rotates": false, "multitile": false }, + { "id": "unfinished_charcoal", "fg": 368, "rotates": false, "multitile": false }, + { "id": "veggy", "fg": 1306, "rotates": false, "multitile": false }, + { "id": "veggy_canned", "fg": 1312, "rotates": false, "multitile": false }, + { "id": "veggy_cooked", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "veggy_salad", "fg": 1312, "rotates": false, "multitile": false }, + { "id": "veggy_tainted", "fg": 1310, "rotates": false, "multitile": false }, + { "id": "veggy_wild", "fg": 1306, "rotates": false, "multitile": false }, + { "id": "veggy_wild_cooked", "fg": 1313, "rotates": false, "multitile": false }, + { "id": "vibrator", "fg": 369, "rotates": false, "multitile": false }, + { "id": "waffles", "fg": 1382, "rotates": false, "multitile": false }, + { "id": "wastebread", "fg": 372, "rotates": false, "multitile": false }, + { "id": "watermelon", "fg": 1403, "rotates": false, "multitile": false }, + { "id": "wheat", "fg": 1338, "rotates": false, "multitile": false }, + { "id": "wild_herbs", "fg": 1312, "rotates": false, "multitile": false }, + { "id": "yeast", "fg": 373, "rotates": false, "multitile": false }, + { "id": "yoghurt", "fg": 1369, "rotates": false, "multitile": false }, + { "id": "zucchini", "fg": 1342, "rotates": false, "multitile": false }, + { "id": "mon_amigara_horror", "fg": 1440, "rotates": false }, + { "id": "mon_ant", "fg": 1512, "rotates": false }, + { "id": "mon_ant_fungus", "fg": 1514, "rotates": false }, + { "id": "mon_ant_larva", "fg": 1511, "rotates": false }, + { "id": "mon_ant_soldier", "fg": 1513, "rotates": false }, + { "id": "mon_bat", "fg": 1500, "rotates": false }, + { "id": "mon_bear", "fg": 1506, "rotates": false }, + { "id": "mon_beaver", "fg": 1574, "rotates": false }, + { "id": "mon_bee", "fg": 1516, "rotates": false }, + { "id": "mon_beekeeper", "fg": 1538, "rotates": false }, + { "id": "mon_biollante", "fg": 1547, "rotates": false }, + { "id": "mon_black_rat", "fg": 1575, "rotates": false }, + { "id": "mon_blank", "fg": 1591, "rotates": false }, + { "id": "mon_blob", "fg": 1568, "rotates": false }, + { "id": "mon_blob_brain", "fg": 1451, "rotates": false }, + { "id": "mon_blob_large", "fg": 1588, "rotates": false }, + { "id": "mon_blob_small", "fg": 1569, "rotates": false }, + { "id": "mon_blood_sacrifice", "fg": 1429, "rotates": false }, + { "id": "mon_bobcat", "fg": 1576, "rotates": false }, + { "id": "mon_boomer", "fg": 1530, "rotates": false }, + { "id": "mon_boomer_fungus", "fg": 1531, "rotates": false }, + { "id": "mon_boomer_huge", "fg": 1492, "rotates": false }, + { "id": "mon_breather", "fg": 1593, "rotates": false }, + { "id": "mon_breather_hub", "fg": 1592, "rotates": false }, + { "id": "mon_broken_cyborg", "fg": 1579, "rotates": false }, + { "id": "mon_cat", "fg": 1510, "rotates": false }, + { "id": "mon_centipede", "fg": 1617, "rotates": false }, + { "id": "mon_centipede_giant", "fg": 1558, "rotates": false }, + { "id": "mon_charred_nightmare", "fg": 1455, "rotates": false }, + { "id": "mon_chicken", "fg": 1573, "rotates": false }, + { "id": "mon_chickenbot", "fg": 1484, "rotates": false }, + { "id": "mon_chipmunk", "fg": 1574, "rotates": false }, + { "id": "mon_chud", "fg": 1564, "rotates": false }, + { "id": "mon_copbot", "fg": 1481, "rotates": false }, + { "id": "mon_cougar", "fg": 1507, "rotates": false }, + { "id": "mon_cow", "fg": 1431, "rotates": false }, + { "id": "mon_coyote", "fg": 1505, "rotates": false }, + { "id": "mon_coyote_wolf", "fg": 1505, "rotates": false }, + { "id": "mon_crawler", "fg": 1566, "rotates": false }, + { "id": "mon_creeper_hub", "fg": 1545, "rotates": false }, { "id": "mon_creeper_vine", - "fg": 1536, + "fg": 1546, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1589 }, - { "id": "corner", "fg": 1585 }, - { "id": "edge", "fg": 1586 }, - { "id": "t_connection", "fg": 1587 }, - { "id": "end_piece", "fg": 1588 }, - { "id": "unconnected", "fg": 1536 } + { "id": "center", "fg": 1599 }, + { "id": "corner", "fg": 1595 }, + { "id": "edge", "fg": 1596 }, + { "id": "t_connection", "fg": 1597 }, + { "id": "end_piece", "fg": 1598 }, + { "id": "unconnected", "fg": 1546 } ], "rotates": false }, - { "id": "mon_crow", "fg": 1498, "rotates": false }, - { "id": "mon_dark_wyrm", "fg": 1590, "rotates": false }, - { "id": "mon_darkman", "fg": 1579, "rotates": false }, - { "id": "mon_deer", "fg": 1492, "rotates": false }, - { "id": "mon_deer_mouse", "fg": 1448, "rotates": false }, - { "id": "mon_dementia", "fg": 1418, "rotates": false }, - { "id": "mon_dermatik", "fg": 1544, "rotates": false }, - { "id": "mon_dermatik_larva", "fg": 1545, "rotates": false }, - { "id": "mon_dog", "fg": 1499, "rotates": false }, - { "id": "mon_dog_skeleton", "fg": 1598, "rotates": false }, - { "id": "mon_dog_thing", "fg": 1499, "rotates": false }, - { "id": "mon_dog_zombie_cop", "fg": 1602, "rotates": false }, - { "id": "mon_dog_zombie_rot", "fg": 1601, "rotates": false }, - { "id": "mon_dragonfly", "fg": 1608, "rotates": false }, - { "id": "mon_dragonfly_giant", "fg": 1549, "rotates": false }, - { "id": "mon_duck", "fg": 1420, "rotates": false }, - { "id": "mon_eyebot", "fg": 1462, "rotates": false }, - { "id": "mon_fish_blinky", "fg": 1435, "rotates": false }, - { "id": "mon_fish_bluegill", "fg": 1439, "rotates": false }, - { "id": "mon_fish_bowfin", "fg": 1436, "rotates": false }, - { "id": "mon_fish_bullhead", "fg": 1437, "rotates": false }, - { "id": "mon_fish_carp", "fg": 1438, "rotates": false }, - { "id": "mon_fish_eel", "fg": 1434, "rotates": false }, - { "id": "mon_fish_lbass", "fg": 1437, "rotates": false }, - { "id": "mon_fish_pbass", "fg": 1458, "rotates": false }, - { "id": "mon_fish_perch", "fg": 1436, "rotates": false }, - { "id": "mon_fish_pickerel", "fg": 1458, "rotates": false }, - { "id": "mon_fish_pike", "fg": 1439, "rotates": false }, - { "id": "mon_fish_salmon", "fg": 1436, "rotates": false }, - { "id": "mon_fish_sbass", "fg": 1437, "rotates": false }, - { "id": "mon_fish_sunfish", "fg": 1436, "rotates": false }, - { "id": "mon_fish_trout", "fg": 1436, "rotates": false }, - { "id": "mon_fish_whitefish", "fg": 1458, "rotates": false }, - { "id": "mon_flaming_eye", "fg": 1573, "rotates": false }, - { "id": "mon_fly", "fg": 1505, "rotates": false }, - { "id": "mon_flying_polyp", "fg": 1575, "rotates": false }, - { "id": "mon_fox_gray", "fg": 1449, "rotates": false }, - { "id": "mon_fox_red", "fg": 1450, "rotates": false }, - { "id": "mon_frog", "fg": 1608, "rotates": false }, - { "id": "mon_frog_giant", "fg": 1547, "rotates": false }, - { "id": "mon_fungal_blossom", "fg": 1467, "rotates": false }, - { "id": "mon_fungal_fighter", "fg": 1594, "rotates": false }, - { "id": "mon_fungal_hedgerow", "fg": 1465, "rotates": false }, - { "id": "mon_fungal_tendril", "fg": 1466, "rotates": false }, - { "id": "mon_fungal_wall", "fg": 1543, "rotates": false }, - { "id": "mon_fungaloid", "fg": 1540, "rotates": false }, - { "id": "mon_fungaloid_young", "fg": 1541, "rotates": false }, - { "id": "mon_gas_zombie", "fg": 1618, "rotates": false }, - { "id": "mon_gelatin", "fg": 1578, "rotates": false }, - { "id": "mon_generator", "fg": 1531, "rotates": false }, - { "id": "mon_giant_crayfish", "fg": 1425, "rotates": false }, - { "id": "mon_gozu", "fg": 1574, "rotates": false }, - { "id": "mon_graboid", "fg": 1508, "rotates": false }, - { "id": "mon_gracke", "fg": 1580, "rotates": false }, - { "id": "mon_grocerybot", "fg": 1621, "rotates": false }, - { "id": "mon_groundhog", "fg": 1561, "rotates": false }, - { "id": "mon_halfworm", "fg": 1510, "rotates": false }, - { "id": "mon_hallu_mom", "fg": 1532, "rotates": false }, - { "id": "mon_hallu_multicooker", "fg": 1446, "rotates": false }, - { "id": "mon_hare", "fg": 1570, "rotates": false }, - { "id": "mon_hazmatbot", "fg": 1470, "rotates": false }, - { "id": "mon_headless_dog_thing", "fg": 1591, "rotates": false }, - { "id": "mon_horse", "fg": 1422, "rotates": false }, - { "id": "mon_human_snail", "fg": 1431, "rotates": false }, - { "id": "mon_hunting_horror", "fg": 1584, "rotates": false }, - { "id": "mon_irradiated_wanderer_1", "fg": 1444, "rotates": false }, - { "id": "mon_irradiated_wanderer_2", "fg": 1444, "rotates": false }, - { "id": "mon_irradiated_wanderer_3", "fg": 1444, "rotates": false }, - { "id": "mon_irradiated_wanderer_4", "fg": 1444, "rotates": false }, - { "id": "mon_kreck", "fg": 1440, "rotates": false }, - { "id": "mon_laserturret", "fg": 1429, "rotates": false }, - { "id": "mon_lemming", "fg": 1562, "rotates": false }, - { "id": "mon_manhack", "fg": 1463, "rotates": false }, - { "id": "mon_mi_go", "fg": 1433, "rotates": false }, - { "id": "mon_mink", "fg": 1552, "rotates": false }, - { "id": "mon_molebot", "fg": 1472, "rotates": false }, - { "id": "mon_moose", "fg": 1493, "rotates": false }, - { "id": "mon_mosquito", "fg": 1607, "rotates": false }, - { "id": "mon_mosquito_giant", "fg": 1550, "rotates": false }, - { "id": "mon_muskrat", "fg": 1564, "rotates": false }, - { "id": "mon_mutant_carp", "fg": 1459, "rotates": false }, - { "id": "mon_mutant_salmon", "fg": 1459, "rotates": false }, - { "id": "mon_one_eye", "fg": 1555, "rotates": false }, - { "id": "mon_opossum", "fg": 1565, "rotates": false }, - { "id": "mon_otter", "fg": 1571, "rotates": false }, - { "id": "mon_pig", "fg": 1423, "rotates": false }, - { "id": "mon_player_blob", "fg": 1443, "rotates": false }, - { "id": "mon_rabbit", "fg": 1491, "rotates": false }, - { "id": "mon_raccoon", "fg": 1565, "rotates": false }, - { "id": "mon_rat_king", "fg": 1551, "rotates": false }, - { "id": "mon_rattlesnake", "fg": 1593, "rotates": false }, - { "id": "mon_riotbot", "fg": 1471, "rotates": false }, - { "id": "mon_secubot", "fg": 1469, "rotates": false }, - { "id": "mon_sewer_fish", "fg": 1557, "rotates": false }, - { "id": "mon_sewer_rat", "fg": 1552, "rotates": false }, - { "id": "mon_sewer_snake", "fg": 1553, "rotates": false }, - { "id": "mon_shadow", "fg": 1579, "rotates": false }, - { "id": "mon_shadow_snake", "fg": 1576, "rotates": false }, - { "id": "mon_sheep", "fg": 1424, "rotates": false }, - { "id": "mon_shia", "fg": 1426, "rotates": false }, - { "id": "mon_shoggoth", "fg": 1427, "rotates": false }, - { "id": "mon_shrew", "fg": 1448, "rotates": false }, - { "id": "mon_skeleton", "fg": 1522, "rotates": false }, - { "id": "mon_skeleton_brute", "fg": 1627, "rotates": false }, - { "id": "mon_skeleton_electric", "fg": 1628, "rotates": false }, - { "id": "mon_skitterbot", "fg": 1464, "rotates": false }, - { "id": "mon_sludge_crawler", "fg": 1606, "rotates": false }, - { "id": "mon_slug", "fg": 1607, "rotates": false }, - { "id": "mon_slug_giant", "fg": 1546, "rotates": false }, - { "id": "mon_spider_jumping", "fg": 1476, "rotates": false }, - { "id": "mon_spider_jumping_giant", "fg": 1451, "rotates": false }, - { "id": "mon_spider_trapdoor", "fg": 1478, "rotates": false }, - { "id": "mon_spider_trapdoor_giant", "fg": 1457, "rotates": false }, - { "id": "mon_spider_web", "fg": 1460, "rotates": false }, - { "id": "mon_spider_web_s", "fg": 1479, "rotates": false }, - { "id": "mon_spider_widow", "fg": 1477, "rotates": false }, - { "id": "mon_spider_widow_giant", "fg": 1455, "rotates": false }, - { "id": "mon_spider_widow_giant_s", "fg": 1477, "rotates": false }, - { "id": "mon_spider_wolf", "fg": 1480, "rotates": false }, - { "id": "mon_spider_wolf_giant", "fg": 1461, "rotates": false }, - { "id": "mon_spore", "fg": 1542, "rotates": false }, - { "id": "mon_squirrel", "fg": 1560, "rotates": false }, - { "id": "mon_squirrel_red", "fg": 1561, "rotates": false }, - { "id": "mon_tankbot", "fg": 1475, "rotates": false }, - { "id": "mon_thing", "fg": 1592, "rotates": false }, - { "id": "mon_triffid", "fg": 1533, "rotates": false }, - { "id": "mon_triffid_heart", "fg": 1539, "rotates": false }, - { "id": "mon_triffid_young", "fg": 1534, "rotates": false }, - { "id": "mon_tripod", "fg": 1473, "rotates": false }, - { "id": "mon_turkey", "fg": 1605, "rotates": false }, - { "id": "mon_turret", "fg": 1530, "rotates": false }, - { "id": "mon_turret_bmg", "fg": 1442, "rotates": false }, - { "id": "mon_turret_rifle", "fg": 1442, "rotates": false }, - { "id": "mon_turret_searchlight", "fg": 1468, "rotates": false }, - { "id": "mon_twisted_body", "fg": 1432, "rotates": false }, - { "id": "mon_vinebeast", "fg": 1538, "rotates": false }, - { "id": "mon_vortex", "fg": 1428, "rotates": false }, - { "id": "mon_wasp", "fg": 1507, "rotates": false }, - { "id": "mon_weasel", "fg": 1552, "rotates": false }, - { "id": "mon_wolf", "fg": 1494, "rotates": false }, - { "id": "mon_worm", "fg": 1509, "rotates": false }, - { "id": "mon_yugg", "fg": 1577, "rotates": false }, - { "id": "mon_zhark", "fg": 1459, "rotates": false }, - { "id": "mon_zolf", "fg": 1610, "rotates": false }, - { "id": "mon_zombear", "fg": 1447, "rotates": false }, - { "id": "mon_zombie", "fg": 1511, "rotates": false }, - { "id": "mon_zombie_acidic", "fg": 1484, "rotates": false }, - { "id": "mon_zombie_anklebiter", "fg": 1630, "rotates": false }, - { "id": "mon_zombie_armored", "fg": 1485, "rotates": false }, - { "id": "mon_zombie_bio_op2", "fg": 1631, "rotates": false }, - { "id": "mon_zombie_bio_op", "fg": 1568, "rotates": false }, - { "id": "mon_zombie_brute", "fg": 1518, "rotates": false }, - { "id": "mon_zombie_brute_grappler", "fg": 1632, "rotates": false }, - { "id": "mon_zombie_brute_shocker", "fg": 1453, "rotates": false }, - { "id": "mon_zombie_child", "fg": 1529, "rotates": false }, - { "id": "mon_zombie_child_scorched", "fg": 1633, "rotates": false }, - { "id": "mon_zombie_cop", "fg": 1512, "rotates": false }, - { "id": "mon_zombie_corrosive", "fg": 1483, "rotates": false }, - { "id": "mon_zombie_crawler", "fg": 1597, "rotates": false }, - { "id": "mon_zombie_creepy", "fg": 1634, "rotates": false }, - { "id": "mon_zombie_crushed_giant", "fg": 1635, "rotates": false }, - { "id": "mon_zombie_dancer", "fg": 1456, "rotates": false }, - { "id": "mon_zombie_dog", "fg": 1636, "rotates": false }, - { "id": "mon_zombie_electric", "fg": 1515, "rotates": false }, - { "id": "mon_zombie_fat", "fg": 1595, "rotates": false }, - { "id": "mon_zombie_fiend", "fg": 1637, "rotates": false }, - { "id": "mon_zombie_fireman", "fg": 1603, "rotates": false }, - { "id": "mon_zombie_flamer", "fg": 1638, "rotates": false }, - { "id": "mon_zombie_fungus", "fg": 1519, "rotates": false }, - { "id": "mon_zombie_gasbag", "fg": 1567, "rotates": false }, - { "id": "mon_zombie_gasbag_crawler", "fg": 1639, "rotates": false }, - { "id": "mon_zombie_gasbag_immobile", "fg": 1640, "rotates": false }, - { "id": "mon_zombie_gasbag_impaler", "fg": 1641, "rotates": false }, - { "id": "mon_zombie_grabber", "fg": 1526, "rotates": false }, - { "id": "mon_zombie_grappler", "fg": 1481, "rotates": false }, - { "id": "mon_zombie_hanging_innards", "fg": 1642, "rotates": false }, - { "id": "mon_zombie_hazmat", "fg": 1599, "rotates": false }, - { "id": "mon_zombie_hollow", "fg": 1486, "rotates": false }, - { "id": "mon_zombie_hunter", "fg": 1572, "rotates": false }, - { "id": "mon_zombie_jackson", "fg": 1426, "rotates": false }, - { "id": "mon_zombie_kevlar_1", "fg": 1644, "rotates": false }, - { "id": "mon_zombie_labsecurity", "fg": 1645, "rotates": false }, - { "id": "mon_zombie_living_wall", "fg": 1646, "rotates": false }, - { "id": "mon_zombie_master", "fg": 1527, "rotates": false }, - { "id": "mon_zombie_military_pilot", "fg": 1647, "rotates": false }, - { "id": "mon_zombie_necro", "fg": 1523, "rotates": false }, - { "id": "mon_zombie_necro_boomer", "fg": 1648, "rotates": false }, - { "id": "mon_zombie_pig", "fg": 1454, "rotates": false }, - { "id": "mon_zombie_predator", "fg": 1487, "rotates": false }, - { "id": "mon_zombie_prisoner", "fg": 1649, "rotates": false }, - { "id": "mon_zombie_resort_dancer", "fg": 1650, "rotates": false }, - { "id": "mon_zombie_rot", "fg": 1600, "rotates": false }, - { "id": "mon_zombie_runner", "fg": 1488, "rotates": false }, - { "id": "mon_zombie_scientist", "fg": 1524, "rotates": false }, - { "id": "mon_zombie_scissorlimbs", "fg": 1651, "rotates": false }, - { "id": "mon_zombie_scorched", "fg": 1652, "rotates": false }, - { "id": "mon_zombie_shady", "fg": 1489, "rotates": false }, - { "id": "mon_zombie_shrieker", "fg": 1513, "rotates": false }, - { "id": "mon_zombie_shriekling", "fg": 1653, "rotates": false }, - { "id": "mon_zombie_skull", "fg": 1654, "rotates": false }, - { "id": "mon_zombie_smoker", "fg": 1516, "rotates": false }, - { "id": "mon_zombie_snotgobbler", "fg": 1655, "rotates": false }, - { "id": "mon_zombie_soldier", "fg": 1525, "rotates": false }, - { "id": "mon_zombie_soldier_acid_1", "fg": 1656, "rotates": false }, - { "id": "mon_zombie_soldier_acid_2", "fg": 1657, "rotates": false }, - { "id": "mon_zombie_soldier_blackops_1", "fg": 1658, "rotates": false }, - { "id": "mon_zombie_soldier_blackops_2", "fg": 1659, "rotates": false }, - { "id": "mon_zombie_spitter", "fg": 1514, "rotates": false }, - { "id": "mon_zombie_sproglodyte", "fg": 1660, "rotates": false }, - { "id": "mon_zombie_static", "fg": 1661, "rotates": false }, - { "id": "mon_zombie_survivor", "fg": 1604, "rotates": false }, - { "id": "mon_zombie_survivor_elite", "fg": 1662, "rotates": false }, - { "id": "mon_zombie_swat", "fg": 1663, "rotates": false }, - { "id": "mon_zombie_swimmer", "fg": 1517, "rotates": false }, - { "id": "mon_zombie_technician", "fg": 1452, "rotates": false }, - { "id": "mon_zombie_thorny", "fg": 1664, "rotates": false }, - { "id": "mon_zombie_tough", "fg": 1596, "rotates": false }, - { "id": "mon_zombie_waif", "fg": 1665, "rotates": false }, - { "id": "mon_zombie_wretched", "fg": 1666, "rotates": false }, - { "id": "mon_zoose", "fg": 1609, "rotates": false }, - { "id": "mon_zougar", "fg": 1611, "rotates": false }, + { "id": "mon_crow", "fg": 1508, "rotates": false }, + { "id": "mon_dark_wyrm", "fg": 1600, "rotates": false }, + { "id": "mon_darkman", "fg": 1589, "rotates": false }, + { "id": "mon_deer", "fg": 1502, "rotates": false }, + { "id": "mon_deer_mouse", "fg": 1458, "rotates": false }, + { "id": "mon_dementia", "fg": 1428, "rotates": false }, + { "id": "mon_dermatik", "fg": 1554, "rotates": false }, + { "id": "mon_dermatik_larva", "fg": 1555, "rotates": false }, + { "id": "mon_dog", "fg": 1509, "rotates": false }, + { "id": "mon_dog_skeleton", "fg": 1608, "rotates": false }, + { "id": "mon_dog_thing", "fg": 1509, "rotates": false }, + { "id": "mon_dog_zombie_cop", "fg": 1612, "rotates": false }, + { "id": "mon_dog_zombie_rot", "fg": 1611, "rotates": false }, + { "id": "mon_dragonfly", "fg": 1618, "rotates": false }, + { "id": "mon_dragonfly_giant", "fg": 1559, "rotates": false }, + { "id": "mon_duck", "fg": 1430, "rotates": false }, + { "id": "mon_eyebot", "fg": 1472, "rotates": false }, + { "id": "mon_fish_blinky", "fg": 1445, "rotates": false }, + { "id": "mon_fish_bluegill", "fg": 1449, "rotates": false }, + { "id": "mon_fish_bowfin", "fg": 1446, "rotates": false }, + { "id": "mon_fish_bullhead", "fg": 1447, "rotates": false }, + { "id": "mon_fish_carp", "fg": 1448, "rotates": false }, + { "id": "mon_fish_eel", "fg": 1444, "rotates": false }, + { "id": "mon_fish_lbass", "fg": 1447, "rotates": false }, + { "id": "mon_fish_pbass", "fg": 1468, "rotates": false }, + { "id": "mon_fish_perch", "fg": 1446, "rotates": false }, + { "id": "mon_fish_pickerel", "fg": 1468, "rotates": false }, + { "id": "mon_fish_pike", "fg": 1449, "rotates": false }, + { "id": "mon_fish_salmon", "fg": 1446, "rotates": false }, + { "id": "mon_fish_sbass", "fg": 1447, "rotates": false }, + { "id": "mon_fish_sunfish", "fg": 1446, "rotates": false }, + { "id": "mon_fish_trout", "fg": 1446, "rotates": false }, + { "id": "mon_fish_whitefish", "fg": 1468, "rotates": false }, + { "id": "mon_flaming_eye", "fg": 1583, "rotates": false }, + { "id": "mon_fly", "fg": 1515, "rotates": false }, + { "id": "mon_flying_polyp", "fg": 1585, "rotates": false }, + { "id": "mon_fox_gray", "fg": 1459, "rotates": false }, + { "id": "mon_fox_red", "fg": 1460, "rotates": false }, + { "id": "mon_frog", "fg": 1618, "rotates": false }, + { "id": "mon_frog_giant", "fg": 1557, "rotates": false }, + { "id": "mon_fungal_blossom", "fg": 1477, "rotates": false }, + { "id": "mon_fungal_fighter", "fg": 1604, "rotates": false }, + { "id": "mon_fungal_hedgerow", "fg": 1475, "rotates": false }, + { "id": "mon_fungal_tendril", "fg": 1476, "rotates": false }, + { "id": "mon_fungal_wall", "fg": 1553, "rotates": false }, + { "id": "mon_fungaloid", "fg": 1550, "rotates": false }, + { "id": "mon_fungaloid_young", "fg": 1551, "rotates": false }, + { "id": "mon_gas_zombie", "fg": 1628, "rotates": false }, + { "id": "mon_gelatin", "fg": 1588, "rotates": false }, + { "id": "mon_generator", "fg": 1541, "rotates": false }, + { "id": "mon_giant_crayfish", "fg": 1435, "rotates": false }, + { "id": "mon_gozu", "fg": 1584, "rotates": false }, + { "id": "mon_graboid", "fg": 1518, "rotates": false }, + { "id": "mon_gracke", "fg": 1590, "rotates": false }, + { "id": "mon_grocerybot", "fg": 1631, "rotates": false }, + { "id": "mon_groundhog", "fg": 1571, "rotates": false }, + { "id": "mon_halfworm", "fg": 1520, "rotates": false }, + { "id": "mon_hallu_mom", "fg": 1542, "rotates": false }, + { "id": "mon_hallu_multicooker", "fg": 1456, "rotates": false }, + { "id": "mon_hare", "fg": 1580, "rotates": false }, + { "id": "mon_hazmatbot", "fg": 1480, "rotates": false }, + { "id": "mon_headless_dog_thing", "fg": 1601, "rotates": false }, + { "id": "mon_horse", "fg": 1432, "rotates": false }, + { "id": "mon_human_snail", "fg": 1441, "rotates": false }, + { "id": "mon_hunting_horror", "fg": 1594, "rotates": false }, + { "id": "mon_irradiated_wanderer_1", "fg": 1454, "rotates": false }, + { "id": "mon_irradiated_wanderer_2", "fg": 1454, "rotates": false }, + { "id": "mon_irradiated_wanderer_3", "fg": 1454, "rotates": false }, + { "id": "mon_irradiated_wanderer_4", "fg": 1454, "rotates": false }, + { "id": "mon_kreck", "fg": 1450, "rotates": false }, + { "id": "mon_laserturret", "fg": 1439, "rotates": false }, + { "id": "mon_lemming", "fg": 1572, "rotates": false }, + { "id": "mon_manhack", "fg": 1473, "rotates": false }, + { "id": "mon_mi_go", "fg": 1443, "rotates": false }, + { "id": "mon_mink", "fg": 1562, "rotates": false }, + { "id": "mon_molebot", "fg": 1482, "rotates": false }, + { "id": "mon_moose", "fg": 1503, "rotates": false }, + { "id": "mon_mosquito", "fg": 1617, "rotates": false }, + { "id": "mon_mosquito_giant", "fg": 1560, "rotates": false }, + { "id": "mon_muskrat", "fg": 1574, "rotates": false }, + { "id": "mon_mutant_carp", "fg": 1469, "rotates": false }, + { "id": "mon_mutant_salmon", "fg": 1469, "rotates": false }, + { "id": "mon_one_eye", "fg": 1565, "rotates": false }, + { "id": "mon_opossum", "fg": 1575, "rotates": false }, + { "id": "mon_otter", "fg": 1581, "rotates": false }, + { "id": "mon_pig", "fg": 1433, "rotates": false }, + { "id": "mon_player_blob", "fg": 1453, "rotates": false }, + { "id": "mon_rabbit", "fg": 1501, "rotates": false }, + { "id": "mon_raccoon", "fg": 1575, "rotates": false }, + { "id": "mon_rat_king", "fg": 1561, "rotates": false }, + { "id": "mon_rattlesnake", "fg": 1603, "rotates": false }, + { "id": "mon_riotbot", "fg": 1481, "rotates": false }, + { "id": "mon_secubot", "fg": 1479, "rotates": false }, + { "id": "mon_sewer_fish", "fg": 1567, "rotates": false }, + { "id": "mon_sewer_rat", "fg": 1562, "rotates": false }, + { "id": "mon_sewer_snake", "fg": 1563, "rotates": false }, + { "id": "mon_shadow", "fg": 1589, "rotates": false }, + { "id": "mon_shadow_snake", "fg": 1586, "rotates": false }, + { "id": "mon_sheep", "fg": 1434, "rotates": false }, + { "id": "mon_shia", "fg": 1436, "rotates": false }, + { "id": "mon_shoggoth", "fg": 1437, "rotates": false }, + { "id": "mon_shrew", "fg": 1458, "rotates": false }, + { "id": "mon_skeleton", "fg": 1532, "rotates": false }, + { "id": "mon_skeleton_brute", "fg": 1637, "rotates": false }, + { "id": "mon_skeleton_electric", "fg": 1638, "rotates": false }, + { "id": "mon_skitterbot", "fg": 1474, "rotates": false }, + { "id": "mon_sludge_crawler", "fg": 1616, "rotates": false }, + { "id": "mon_slug", "fg": 1617, "rotates": false }, + { "id": "mon_slug_giant", "fg": 1556, "rotates": false }, + { "id": "mon_spider_jumping", "fg": 1486, "rotates": false }, + { "id": "mon_spider_jumping_giant", "fg": 1461, "rotates": false }, + { "id": "mon_spider_trapdoor", "fg": 1488, "rotates": false }, + { "id": "mon_spider_trapdoor_giant", "fg": 1467, "rotates": false }, + { "id": "mon_spider_web", "fg": 1470, "rotates": false }, + { "id": "mon_spider_web_s", "fg": 1489, "rotates": false }, + { "id": "mon_spider_widow", "fg": 1487, "rotates": false }, + { "id": "mon_spider_widow_giant", "fg": 1465, "rotates": false }, + { "id": "mon_spider_widow_giant_s", "fg": 1487, "rotates": false }, + { "id": "mon_spider_wolf", "fg": 1490, "rotates": false }, + { "id": "mon_spider_wolf_giant", "fg": 1471, "rotates": false }, + { "id": "mon_spore", "fg": 1552, "rotates": false }, + { "id": "mon_squirrel", "fg": 1570, "rotates": false }, + { "id": "mon_squirrel_red", "fg": 1571, "rotates": false }, + { "id": "mon_tankbot", "fg": 1485, "rotates": false }, + { "id": "mon_thing", "fg": 1602, "rotates": false }, + { "id": "mon_triffid", "fg": 1543, "rotates": false }, + { "id": "mon_triffid_heart", "fg": 1549, "rotates": false }, + { "id": "mon_triffid_young", "fg": 1544, "rotates": false }, + { "id": "mon_tripod", "fg": 1483, "rotates": false }, + { "id": "mon_turkey", "fg": 1615, "rotates": false }, + { "id": "mon_turret", "fg": 1540, "rotates": false }, + { "id": "mon_turret_bmg", "fg": 1452, "rotates": false }, + { "id": "mon_turret_rifle", "fg": 1452, "rotates": false }, + { "id": "mon_turret_searchlight", "fg": 1478, "rotates": false }, + { "id": "mon_twisted_body", "fg": 1442, "rotates": false }, + { "id": "mon_vinebeast", "fg": 1548, "rotates": false }, + { "id": "mon_vortex", "fg": 1438, "rotates": false }, + { "id": "mon_wasp", "fg": 1517, "rotates": false }, + { "id": "mon_weasel", "fg": 1562, "rotates": false }, + { "id": "mon_wolf", "fg": 1504, "rotates": false }, + { "id": "mon_worm", "fg": 1519, "rotates": false }, + { "id": "mon_yugg", "fg": 1587, "rotates": false }, + { "id": "mon_zhark", "fg": 1469, "rotates": false }, + { "id": "mon_zolf", "fg": 1620, "rotates": false }, + { "id": "mon_zombear", "fg": 1457, "rotates": false }, + { "id": "mon_zombie", "fg": 1521, "rotates": false }, + { "id": "mon_zombie_acidic", "fg": 1494, "rotates": false }, + { "id": "mon_zombie_anklebiter", "fg": 1640, "rotates": false }, + { "id": "mon_zombie_armored", "fg": 1495, "rotates": false }, + { "id": "mon_zombie_bio_op2", "fg": 1641, "rotates": false }, + { "id": "mon_zombie_bio_op", "fg": 1578, "rotates": false }, + { "id": "mon_zombie_brute", "fg": 1528, "rotates": false }, + { "id": "mon_zombie_brute_grappler", "fg": 1642, "rotates": false }, + { "id": "mon_zombie_brute_shocker", "fg": 1463, "rotates": false }, + { "id": "mon_zombie_child", "fg": 1539, "rotates": false }, + { "id": "mon_zombie_child_scorched", "fg": 1643, "rotates": false }, + { "id": "mon_zombie_cop", "fg": 1522, "rotates": false }, + { "id": "mon_zombie_corrosive", "fg": 1493, "rotates": false }, + { "id": "mon_zombie_crawler", "fg": 1607, "rotates": false }, + { "id": "mon_zombie_creepy", "fg": 1644, "rotates": false }, + { "id": "mon_zombie_crushed_giant", "fg": 1645, "rotates": false }, + { "id": "mon_zombie_dancer", "fg": 1466, "rotates": false }, + { "id": "mon_zombie_dog", "fg": 1646, "rotates": false }, + { "id": "mon_zombie_electric", "fg": 1525, "rotates": false }, + { "id": "mon_zombie_fat", "fg": 1605, "rotates": false }, + { "id": "mon_zombie_fiend", "fg": 1647, "rotates": false }, + { "id": "mon_zombie_fireman", "fg": 1613, "rotates": false }, + { "id": "mon_zombie_flamer", "fg": 1648, "rotates": false }, + { "id": "mon_zombie_fungus", "fg": 1529, "rotates": false }, + { "id": "mon_zombie_gasbag", "fg": 1577, "rotates": false }, + { "id": "mon_zombie_gasbag_crawler", "fg": 1649, "rotates": false }, + { "id": "mon_zombie_gasbag_immobile", "fg": 1650, "rotates": false }, + { "id": "mon_zombie_gasbag_impaler", "fg": 1651, "rotates": false }, + { "id": "mon_zombie_grabber", "fg": 1536, "rotates": false }, + { "id": "mon_zombie_grappler", "fg": 1491, "rotates": false }, + { "id": "mon_zombie_hanging_innards", "fg": 1652, "rotates": false }, + { "id": "mon_zombie_hazmat", "fg": 1609, "rotates": false }, + { "id": "mon_zombie_hollow", "fg": 1496, "rotates": false }, + { "id": "mon_zombie_hunter", "fg": 1582, "rotates": false }, + { "id": "mon_zombie_jackson", "fg": 1436, "rotates": false }, + { "id": "mon_zombie_kevlar_1", "fg": 1654, "rotates": false }, + { "id": "mon_zombie_labsecurity", "fg": 1655, "rotates": false }, + { "id": "mon_zombie_living_wall", "fg": 1656, "rotates": false }, + { "id": "mon_zombie_master", "fg": 1537, "rotates": false }, + { "id": "mon_zombie_military_pilot", "fg": 1657, "rotates": false }, + { "id": "mon_zombie_necro", "fg": 1533, "rotates": false }, + { "id": "mon_zombie_necro_boomer", "fg": 1658, "rotates": false }, + { "id": "mon_zombie_pig", "fg": 1464, "rotates": false }, + { "id": "mon_zombie_predator", "fg": 1497, "rotates": false }, + { "id": "mon_zombie_prisoner", "fg": 1659, "rotates": false }, + { "id": "mon_zombie_resort_dancer", "fg": 1660, "rotates": false }, + { "id": "mon_zombie_rot", "fg": 1610, "rotates": false }, + { "id": "mon_zombie_runner", "fg": 1498, "rotates": false }, + { "id": "mon_zombie_scientist", "fg": 1534, "rotates": false }, + { "id": "mon_zombie_scissorlimbs", "fg": 1661, "rotates": false }, + { "id": "mon_zombie_scorched", "fg": 1662, "rotates": false }, + { "id": "mon_zombie_shady", "fg": 1499, "rotates": false }, + { "id": "mon_zombie_shrieker", "fg": 1523, "rotates": false }, + { "id": "mon_zombie_shriekling", "fg": 1663, "rotates": false }, + { "id": "mon_zombie_skull", "fg": 1664, "rotates": false }, + { "id": "mon_zombie_smoker", "fg": 1526, "rotates": false }, + { "id": "mon_zombie_snotgobbler", "fg": 1665, "rotates": false }, + { "id": "mon_zombie_soldier", "fg": 1535, "rotates": false }, + { "id": "mon_zombie_soldier_acid_1", "fg": 1666, "rotates": false }, + { "id": "mon_zombie_soldier_acid_2", "fg": 1667, "rotates": false }, + { "id": "mon_zombie_soldier_blackops_1", "fg": 1668, "rotates": false }, + { "id": "mon_zombie_soldier_blackops_2", "fg": 1669, "rotates": false }, + { "id": "mon_zombie_spitter", "fg": 1524, "rotates": false }, + { "id": "mon_zombie_sproglodyte", "fg": 1670, "rotates": false }, + { "id": "mon_zombie_static", "fg": 1671, "rotates": false }, + { "id": "mon_zombie_survivor", "fg": 1614, "rotates": false }, + { "id": "mon_zombie_survivor_elite", "fg": 1672, "rotates": false }, + { "id": "mon_zombie_swat", "fg": 1673, "rotates": false }, + { "id": "mon_zombie_swimmer", "fg": 1527, "rotates": false }, + { "id": "mon_zombie_technician", "fg": 1462, "rotates": false }, + { "id": "mon_zombie_thorny", "fg": 1674, "rotates": false }, + { "id": "mon_zombie_tough", "fg": 1606, "rotates": false }, + { "id": "mon_zombie_waif", "fg": 1675, "rotates": false }, + { "id": "mon_zombie_wretched", "fg": 1676, "rotates": false }, + { "id": "mon_zoose", "fg": 1619, "rotates": false }, + { "id": "mon_zougar", "fg": 1621, "rotates": false }, { "id": "mon_feral_human_crowbar", "fg": [ - { "weight": 1, "sprite": 1674 }, - { "weight": 1, "sprite": 1675 }, - { "weight": 1, "sprite": 1676 }, - { "weight": 1, "sprite": 1677 }, - { "weight": 1, "sprite": 1678 }, - { "weight": 1, "sprite": 1679 } + { "weight": 1, "sprite": 1684 }, + { "weight": 1, "sprite": 1685 }, + { "weight": 1, "sprite": 1686 }, + { "weight": 1, "sprite": 1687 }, + { "weight": 1, "sprite": 1688 }, + { "weight": 1, "sprite": 1689 } ] }, { "id": "mon_feral_human_pipe", "fg": [ - { "weight": 1, "sprite": 1680 }, - { "weight": 1, "sprite": 1681 }, - { "weight": 1, "sprite": 1682 }, - { "weight": 1, "sprite": 1683 }, - { "weight": 1, "sprite": 1684 }, - { "weight": 1, "sprite": 1685 } + { "weight": 1, "sprite": 1690 }, + { "weight": 1, "sprite": 1691 }, + { "weight": 1, "sprite": 1692 }, + { "weight": 1, "sprite": 1693 }, + { "weight": 1, "sprite": 1694 }, + { "weight": 1, "sprite": 1695 } ] }, { "id": "mon_feral_human_axe", "fg": [ - { "weight": 1, "sprite": 1668 }, - { "weight": 1, "sprite": 1669 }, - { "weight": 1, "sprite": 1670 }, - { "weight": 1, "sprite": 1671 }, - { "weight": 1, "sprite": 1672 }, - { "weight": 1, "sprite": 1673 } + { "weight": 1, "sprite": 1678 }, + { "weight": 1, "sprite": 1679 }, + { "weight": 1, "sprite": 1680 }, + { "weight": 1, "sprite": 1681 }, + { "weight": 1, "sprite": 1682 }, + { "weight": 1, "sprite": 1683 } ] }, - { "id": "mon_hallu_mannequin", "fg": [ { "weight": 1, "sprite": 1687 }, { "weight": 1, "sprite": 1686 } ] }, - { "id": "mon_zombie_biter", "fg": 1688, "rotates": false }, - { "id": "mon_zombie_brainless", "fg": 1689, "rotates": false }, - { "id": "mon_zombie_brute_ninja", "fg": 1690, "rotates": false }, - { "id": "mon_zombie_ears", "fg": 1691, "rotates": false }, + { "id": "mon_hallu_mannequin", "fg": [ { "weight": 1, "sprite": 1697 }, { "weight": 1, "sprite": 1696 } ] }, + { "id": "mon_zombie_biter", "fg": 1698, "rotates": false }, + { "id": "mon_zombie_brainless", "fg": 1699, "rotates": false }, + { "id": "mon_zombie_brute_ninja", "fg": 1700, "rotates": false }, + { "id": "mon_zombie_ears", "fg": 1701, "rotates": false }, { "id": "mon_zombie_giant_heart", "animated": true, "fg": [ - { "weight": 15, "sprite": 1692 }, - { "weight": 15, "sprite": 1693 }, - { "weight": 15, "sprite": 1692 }, - { "weight": 15, "sprite": 1694 } + { "weight": 15, "sprite": 1702 }, + { "weight": 15, "sprite": 1703 }, + { "weight": 15, "sprite": 1702 }, + { "weight": 15, "sprite": 1704 } ], "rotates": false }, - { "id": "mon_zombie_mancroc", "fg": 1695, "rotates": false }, + { "id": "mon_zombie_mancroc", "fg": 1705, "rotates": false }, { "id": "mon_zombie_nullfield", "animated": true, "fg": [ - { "weight": 15, "sprite": 1696 }, - { "weight": 15, "sprite": 1697 }, - { "weight": 15, "sprite": 1698 }, - { "weight": 15, "sprite": 1699 } + { "weight": 15, "sprite": 1706 }, + { "weight": 15, "sprite": 1707 }, + { "weight": 15, "sprite": 1708 }, + { "weight": 15, "sprite": 1709 } ], "rotates": false }, - { "id": "mon_zombie_screecher", "fg": 1700, "rotates": false }, - { "id": "sandwich_t", "fg": 1703, "rotates": false, "multitile": false }, - { "id": "t_atm", "fg": 1974, "rotates": false }, - { "id": "t_backboard", "fg": 1903, "rotates": false }, - { "id": "t_barndoor", "fg": 1997, "rotates": false }, + { "id": "mon_zombie_screecher", "fg": 1710, "rotates": false }, + { "id": "sandwich_t", "fg": 1713, "rotates": false, "multitile": false }, + { "id": "t_atm", "fg": 1984, "rotates": false }, + { "id": "t_backboard", "fg": 1913, "rotates": false }, + { "id": "t_barndoor", "fg": 2007, "rotates": false }, { "id": "t_brick_wall", - "fg": 1810, + "fg": 1820, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1808 }, - { "id": "corner", "fg": 1809 }, - { "id": "edge", "fg": 1810 }, - { "id": "t_connection", "fg": 1811 }, - { "id": "end_piece", "fg": 1810 }, - { "id": "unconnected", "fg": 1810 } + { "id": "center", "fg": 1818 }, + { "id": "corner", "fg": 1819 }, + { "id": "edge", "fg": 1820 }, + { "id": "t_connection", "fg": 1821 }, + { "id": "end_piece", "fg": 1820 }, + { "id": "unconnected", "fg": 1820 } ], "rotates": false }, - { "id": "t_brick_wall_halfway", "fg": 1812, "rotates": false }, - { "id": "t_bridge", "bg": 1869, "rotates": false }, - { "id": "t_card_military", "fg": 1904, "rotates": false }, - { "id": "t_card_reader_broken", "fg": 1998, "rotates": false }, - { "id": "t_card_science", "fg": 1904, "rotates": false }, - { "id": "t_carpet_green", "bg": 1876, "rotates": false }, - { "id": "t_carpet_purple", "bg": 1723, "rotates": false }, - { "id": "t_carpet_red", "bg": 1875, "rotates": false }, - { "id": "t_carpet_yellow", "bg": 1722, "rotates": false }, - { "id": "t_centrifuge", "fg": 1862, "rotates": false }, - { "id": "t_chainfence_posts_season_spring", "fg": 1902, "rotates": false, "bg": 2066 }, - { "id": "t_chainfence_posts_season_summer", "fg": 1902, "rotates": false, "bg": 2068 }, - { "id": "t_chainfence_posts_season_autumn", "fg": 1902, "rotates": false, "bg": 2067 }, - { "id": "t_chainfence_posts_season_winter", "fg": 1902, "rotates": false, "bg": 2069 }, - { "id": "t_claymound", "bg": 2065, "rotates": false }, - { "id": "t_column", "fg": 1923, "rotates": false }, + { "id": "t_brick_wall_halfway", "fg": 1822, "rotates": false }, + { "id": "t_bridge", "bg": 1879, "rotates": false }, + { "id": "t_card_military", "fg": 1914, "rotates": false }, + { "id": "t_card_reader_broken", "fg": 2008, "rotates": false }, + { "id": "t_card_science", "fg": 1914, "rotates": false }, + { "id": "t_carpet_green", "bg": 1886, "rotates": false }, + { "id": "t_carpet_purple", "bg": 1733, "rotates": false }, + { "id": "t_carpet_red", "bg": 1885, "rotates": false }, + { "id": "t_carpet_yellow", "bg": 1732, "rotates": false }, + { "id": "t_centrifuge", "fg": 1872, "rotates": false }, + { "id": "t_chainfence_posts_season_spring", "fg": 1912, "rotates": false, "bg": 2077 }, + { "id": "t_chainfence_posts_season_summer", "fg": 1912, "rotates": false, "bg": 2079 }, + { "id": "t_chainfence_posts_season_autumn", "fg": 1912, "rotates": false, "bg": 2078 }, + { "id": "t_chainfence_posts_season_winter", "fg": 1912, "rotates": false, "bg": 2080 }, + { "id": "t_claymound", "bg": 2076, "rotates": false }, + { "id": "t_column", "fg": 1933, "rotates": false }, { "id": "t_concrete_h", - "fg": 1896, - "bg": 2066, + "fg": 1906, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1896 }, - { "id": "corner", "fg": 1894 }, - { "id": "edge", "fg": 1896 }, - { "id": "t_connection", "fg": 1895 }, - { "id": "end_piece", "fg": 1896 }, - { "id": "unconnected", "fg": 1896 } + { "id": "center", "fg": 1906 }, + { "id": "corner", "fg": 1904 }, + { "id": "edge", "fg": 1906 }, + { "id": "t_connection", "fg": 1905 }, + { "id": "end_piece", "fg": 1906 }, + { "id": "unconnected", "fg": 1906 } ], "rotates": false }, { "id": "t_concrete_v", - "fg": 1896, - "bg": 2066, + "fg": 1906, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1896 }, - { "id": "corner", "fg": 1894 }, - { "id": "edge", "fg": 1896 }, - { "id": "t_connection", "fg": 1895 }, - { "id": "end_piece", "fg": 1896 }, - { "id": "unconnected", "fg": 1896 } + { "id": "center", "fg": 1906 }, + { "id": "corner", "fg": 1904 }, + { "id": "edge", "fg": 1906 }, + { "id": "t_connection", "fg": 1905 }, + { "id": "end_piece", "fg": 1906 }, + { "id": "unconnected", "fg": 1906 } ], "rotates": false }, { "id": [ "t_concrete_wall", "t_rock_smooth" ], - "fg": 1896, - "bg": 2066, + "fg": 1906, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1896 }, - { "id": "corner", "fg": 1894 }, - { "id": "edge", "fg": 1896 }, - { "id": "t_connection", "fg": 1895 }, - { "id": "end_piece", "fg": 1896 }, - { "id": "unconnected", "fg": 1896 } + { "id": "center", "fg": 1906 }, + { "id": "corner", "fg": 1904 }, + { "id": "edge", "fg": 1906 }, + { "id": "t_connection", "fg": 1905 }, + { "id": "end_piece", "fg": 1906 }, + { "id": "unconnected", "fg": 1906 } ], "rotates": false }, - { "id": "t_console_broken", "fg": 1760, "bg": 1973, "rotates": false }, - { "id": "t_conveyor", "fg": 1817, "bg": 1973, "rotates": false }, - { "id": "t_covered_well", "fg": 1768, "rotates": false }, - { "id": "t_current_trans", "fg": 1779, "rotates": false, "multitile": false }, - { "id": "t_curtains", "fg": 1990, "rotates": false }, + { "id": "t_console_broken", "fg": 1770, "bg": 1983, "rotates": false }, + { "id": "t_conveyor", "fg": 1827, "bg": 1983, "rotates": false }, + { "id": "t_covered_well", "fg": 1778, "rotates": false }, + { "id": "t_current_trans", "fg": 1789, "rotates": false, "multitile": false }, + { "id": "t_curtains", "fg": 2000, "rotates": false }, { "id": "t_cvdbody", - "fg": 1732, + "fg": 1742, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1796 }, - { "id": "corner", "fg": 1797 }, - { "id": "edge", "fg": 1798 }, - { "id": "t_connection", "fg": 1799 }, - { "id": "end_piece", "fg": 1800 }, - { "id": "unconnected", "fg": 1732 } + { "id": "center", "fg": 1806 }, + { "id": "corner", "fg": 1807 }, + { "id": "edge", "fg": 1808 }, + { "id": "t_connection", "fg": 1809 }, + { "id": "end_piece", "fg": 1810 }, + { "id": "unconnected", "fg": 1742 } ], "rotates": false }, - { "id": "t_cvdmachine", "fg": 1733, "rotates": false }, - { "id": "t_diesel_pump", "fg": 1801, "rotates": false }, - { "id": "t_diesel_pump_smashed", "fg": 1802, "rotates": false }, - { "id": "t_dirtfloor", "bg": 2066, "rotates": false }, - { "id": "t_dock", "fg": 1924, "rotates": false }, - { "id": "t_door_b", "fg": 1978, "bg": 1973, "rotates": false }, - { "id": "t_door_b_peep", "fg": 1978, "bg": 1973, "rotates": false }, - { "id": "t_door_bar_c", "fg": 1928, "rotates": false }, - { "id": "t_door_bar_locked", "fg": 1930, "rotates": false }, - { "id": "t_door_bar_o", "fg": 1929, "rotates": false }, - { "id": "t_door_boarded", "fg": 1982, "rotates": false }, - { "id": "t_door_boarded_damaged", "fg": 1981, "rotates": false }, - { "id": "t_door_boarded_damaged_peep", "fg": 1981, "rotates": false }, - { "id": "t_door_boarded_peep", "fg": 1982, "rotates": false }, - { "id": "t_door_c", "fg": 1976, "bg": 1973, "rotates": false }, - { "id": "t_door_c_peep", "fg": 1791, "bg": 1973, "rotates": false }, - { "id": "t_door_curtain_c", "fg": 1825, "bg": 1973, "rotates": false }, - { "id": "t_door_curtain_o", "fg": 1826, "bg": 1977, "rotates": false }, - { "id": "t_door_frame", "fg": 1977, "rotates": false }, - { "id": "t_door_glass_c", "fg": 1707, "bg": 1973, "rotates": true }, - { "id": "t_door_glass_o", "fg": 1708, "bg": 1973, "rotates": true }, - { "id": "t_door_locked", "fg": 1979, "bg": 1973, "rotates": false }, - { "id": "t_door_locked_alarm", "fg": 1979, "bg": 1973, "rotates": false }, - { "id": "t_door_locked_interior", "fg": 1979, "bg": 1973, "rotates": false }, - { "id": "t_door_locked_peep", "fg": 1792, "bg": 1973, "rotates": false }, - { "id": "t_door_makeshift_c", "fg": 1824, "bg": 1973, "rotates": false }, - { "id": "t_door_makeshift_o", "fg": 1977, "bg": 1973, "rotates": false }, - { "id": "t_door_metal_c", "fg": 1983, "rotates": false }, - { "id": "t_door_metal_c_peep", "fg": 1828, "rotates": false }, - { "id": "t_door_metal_locked", "fg": 1931, "rotates": false }, - { "id": "t_door_metal_o", "fg": 1984, "rotates": false }, - { "id": "t_door_metal_o_peep", "fg": 1984, "rotates": false }, - { "id": "t_door_metal_pickable", "fg": 1931, "rotates": false }, - { "id": "t_door_o", "fg": 1977, "bg": 1973, "rotates": false }, - { "id": "t_door_o_peep", "fg": 1977, "bg": 1973, "rotates": false }, - { "id": "t_elevator", "fg": 1920, "rotates": false }, - { "id": "t_elevator_control", "fg": 1921, "rotates": false }, - { "id": "t_elevator_control_off", "fg": 1922, "rotates": false }, - { "id": "t_fault", "fg": 1736, "rotates": false }, - { "id": "t_fence_post_season_spring", "fg": 1897, "rotates": false, "bg": 2066 }, - { "id": "t_fence_post_season_summer", "fg": 1897, "rotates": false, "bg": 2068 }, - { "id": "t_fence_post_season_autumn", "fg": 1897, "rotates": false, "bg": 2067 }, - { "id": "t_fence_post_season_winter", "fg": 1897, "rotates": false, "bg": 2069 }, + { "id": "t_cvdmachine", "fg": 1743, "rotates": false }, + { "id": "t_diesel_pump", "fg": 1811, "rotates": false }, + { "id": "t_diesel_pump_smashed", "fg": 1812, "rotates": false }, + { "id": "t_dirtfloor", "bg": 2077, "rotates": false }, + { "id": "t_dock", "fg": 1934, "rotates": false }, + { "id": "t_door_b", "fg": 1988, "bg": 1983, "rotates": false }, + { "id": "t_door_b_peep", "fg": 1988, "bg": 1983, "rotates": false }, + { "id": "t_door_bar_c", "fg": 1938, "rotates": false }, + { "id": "t_door_bar_locked", "fg": 1940, "rotates": false }, + { "id": "t_door_bar_o", "fg": 1939, "rotates": false }, + { "id": "t_door_boarded", "fg": 1992, "rotates": false }, + { "id": "t_door_boarded_damaged", "fg": 1991, "rotates": false }, + { "id": "t_door_boarded_damaged_peep", "fg": 1991, "rotates": false }, + { "id": "t_door_boarded_peep", "fg": 1992, "rotates": false }, + { "id": "t_door_c", "fg": 1986, "bg": 1983, "rotates": false }, + { "id": "t_door_c_peep", "fg": 1801, "bg": 1983, "rotates": false }, + { "id": "t_door_curtain_c", "fg": 1835, "bg": 1983, "rotates": false }, + { "id": "t_door_curtain_o", "fg": 1836, "bg": 1987, "rotates": false }, + { "id": "t_door_frame", "fg": 1987, "rotates": false }, + { "id": "t_door_glass_c", "fg": 1717, "bg": 1983, "rotates": true }, + { "id": "t_door_glass_o", "fg": 1718, "bg": 1983, "rotates": true }, + { "id": "t_door_locked", "fg": 1989, "bg": 1983, "rotates": false }, + { "id": "t_door_locked_alarm", "fg": 1989, "bg": 1983, "rotates": false }, + { "id": "t_door_locked_interior", "fg": 1989, "bg": 1983, "rotates": false }, + { "id": "t_door_locked_peep", "fg": 1802, "bg": 1983, "rotates": false }, + { "id": "t_door_makeshift_c", "fg": 1834, "bg": 1983, "rotates": false }, + { "id": "t_door_makeshift_o", "fg": 1987, "bg": 1983, "rotates": false }, + { "id": "t_door_metal_c", "fg": 1993, "rotates": false }, + { "id": "t_door_metal_c_peep", "fg": 1838, "rotates": false }, + { "id": "t_door_metal_locked", "fg": 1941, "rotates": false }, + { "id": "t_door_metal_o", "fg": 1994, "rotates": false }, + { "id": "t_door_metal_o_peep", "fg": 1994, "rotates": false }, + { "id": "t_door_metal_pickable", "fg": 1941, "rotates": false }, + { "id": "t_door_o", "fg": 1987, "bg": 1983, "rotates": false }, + { "id": "t_door_o_peep", "fg": 1987, "bg": 1983, "rotates": false }, + { "id": "t_elevator", "fg": 1930, "rotates": false }, + { "id": "t_elevator_control", "fg": 1931, "rotates": false }, + { "id": "t_elevator_control_off", "fg": 1932, "rotates": false }, + { "id": "t_fault", "fg": 1746, "rotates": false }, + { "id": "t_fence_post_season_spring", "fg": 1907, "rotates": false, "bg": 2077 }, + { "id": "t_fence_post_season_summer", "fg": 1907, "rotates": false, "bg": 2079 }, + { "id": "t_fence_post_season_autumn", "fg": 1907, "rotates": false, "bg": 2078 }, + { "id": "t_fence_post_season_winter", "fg": 1907, "rotates": false, "bg": 2080 }, { "id": "t_fence_rope", - "fg": 1962, + "fg": 1972, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1960 }, - { "id": "corner", "fg": 1961 }, - { "id": "edge", "fg": 1962 }, - { "id": "t_connection", "fg": 1963 }, - { "id": "end_piece", "fg": 1964 }, - { "id": "unconnected", "fg": 1962 } + { "id": "center", "fg": 1970 }, + { "id": "corner", "fg": 1971 }, + { "id": "edge", "fg": 1972 }, + { "id": "t_connection", "fg": 1973 }, + { "id": "end_piece", "fg": 1974 }, + { "id": "unconnected", "fg": 1972 } ], "rotates": false }, - { "id": "t_flat_roof", "bg": 1705, "rotates": false }, - { "id": "t_floor", "bg": 1973, "rotates": false }, - { "id": "t_floor_blue", "bg": 1877, "rotates": false }, - { "id": "t_floor_green", "bg": 1876, "rotates": false }, - { "id": "t_floor_red", "bg": 1875, "rotates": false }, - { "id": "t_floor_wax", "bg": 1734, "rotates": false }, - { "id": "t_floor_waxed", "bg": 1721, "rotates": false }, - { "id": "t_fungus_season_spring", "fg": 1702, "bg": 2111 }, - { "id": "t_fungus_season_summer", "fg": 1702, "bg": 2117 }, - { "id": "t_fungus_season_autumn", "fg": 1702, "bg": 2112 }, - { "id": "t_fungus_season_winter", "fg": 1702, "bg": 2125 }, - { "id": "t_fungus_floor_in", "bg": 1905, "rotates": false }, - { "id": "t_fungus_floor_out", "bg": 1907, "rotates": false }, - { "id": "t_fungus_floor_sup", "fg": 1906, "rotates": false }, - { "id": "t_fungus_mound_season_spring", "fg": 1911, "bg": 2111 }, - { "id": "t_fungus_mound_season_summer", "fg": 1911, "bg": 2117 }, - { "id": "t_fungus_mound_season_autumn", "fg": 1911, "bg": 2112 }, - { "id": "t_fungus_mound_season_winter", "fg": 1911, "bg": 2125 }, - { "id": "t_fungus_wall", "fg": 1908, "rotates": false }, - { "id": "t_fungus_wall_h", "fg": 1910, "rotates": false }, - { "id": "t_fungus_wall_v", "fg": 1909, "rotates": false }, - { "id": "t_gas_pump", "fg": 1870, "bg": 1925, "rotates": false }, - { "id": "t_gas_pump_a", "fg": 1804, "rotates": false }, - { "id": "t_gas_pump_smashed", "fg": 1871, "bg": 1925, "rotates": false }, - { "id": "t_gas_tank", "fg": 1803, "rotates": false }, - { "id": "t_gates_control_concrete", "fg": 1764, "rotates": false }, - { "id": "t_gates_mech_control", "fg": 1764, "rotates": false }, + { "id": "t_flat_roof", "bg": 1715, "rotates": false }, + { "id": "t_floor", "bg": 1983, "rotates": false }, + { "id": "t_floor_blue", "bg": 1887, "rotates": false }, + { "id": "t_floor_green", "bg": 1886, "rotates": false }, + { "id": "t_floor_red", "bg": 1885, "rotates": false }, + { "id": "t_floor_wax", "bg": 1744, "rotates": false }, + { "id": "t_floor_waxed", "bg": 1731, "rotates": false }, + { "id": "t_fungus_season_spring", "fg": 1712, "bg": 2122 }, + { "id": "t_fungus_season_summer", "fg": 1712, "bg": 2128 }, + { "id": "t_fungus_season_autumn", "fg": 1712, "bg": 2123 }, + { "id": "t_fungus_season_winter", "fg": 1712, "bg": 2136 }, + { "id": "t_fungus_floor_in", "bg": 1915, "rotates": false }, + { "id": "t_fungus_floor_out", "bg": 1917, "rotates": false }, + { "id": "t_fungus_floor_sup", "fg": 1916, "rotates": false }, + { "id": "t_fungus_mound_season_spring", "fg": 1921, "bg": 2122 }, + { "id": "t_fungus_mound_season_summer", "fg": 1921, "bg": 2128 }, + { "id": "t_fungus_mound_season_autumn", "fg": 1921, "bg": 2123 }, + { "id": "t_fungus_mound_season_winter", "fg": 1921, "bg": 2136 }, + { "id": "t_fungus_wall", "fg": 1918, "rotates": false }, + { "id": "t_fungus_wall_h", "fg": 1920, "rotates": false }, + { "id": "t_fungus_wall_v", "fg": 1919, "rotates": false }, + { "id": "t_gas_pump", "fg": 1880, "bg": 1935, "rotates": false }, + { "id": "t_gas_pump_a", "fg": 1814, "rotates": false }, + { "id": "t_gas_pump_smashed", "fg": 1881, "bg": 1935, "rotates": false }, + { "id": "t_gas_tank", "fg": 1813, "rotates": false }, + { "id": "t_gates_control_concrete", "fg": 1774, "rotates": false }, + { "id": "t_gates_mech_control", "fg": 1774, "rotates": false }, { "id": "t_generator_broken", - "fg": 1919, + "fg": 1929, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 1919 }, { "id": "t_connection", "fg": 1972 } ], + "additional_tiles": [ { "id": "corner", "fg": 1929 }, { "id": "t_connection", "fg": 1982 } ], "rotates": false }, - { "id": "t_grate", "fg": 2005, "rotates": false }, - { "id": "t_guardrail_bg_dp", "fg": 2176, "rotates": true, "bg": 1887 }, - { "id": "t_improvised_shelter", "fg": 1781, "rotates": false, "multitile": false }, - { "id": "t_ind_furnace", "fg": 2013, "rotates": false, "multitile": false }, - { "id": "t_ladder_down", "fg": 1709, "rotates": false }, - { "id": "t_ladder_up", "fg": 1999, "rotates": false }, - { "id": "t_lgtn_arrest", "fg": 1815, "rotates": false, "multitile": false }, - { "id": "t_linoleum_gray", "bg": 1756, "rotates": false }, + { "id": "t_grate", "fg": 2015, "rotates": false }, + { "id": "t_guardrail_bg_dp", "fg": 2187, "rotates": true, "bg": 1897 }, + { "id": "t_improvised_shelter", "fg": 1791, "rotates": false, "multitile": false }, + { "id": "t_ind_furnace", "fg": 2023, "rotates": false, "multitile": false }, + { "id": "t_ladder_down", "fg": 1719, "rotates": false }, + { "id": "t_ladder_up", "fg": 2009, "rotates": false }, + { "id": "t_lgtn_arrest", "fg": 1825, "rotates": false, "multitile": false }, + { "id": "t_linoleum_gray", "bg": 1766, "rotates": false }, { "id": "t_linoleum_white", "bg": 1, "rotates": false }, - { "id": "t_little_column", "fg": 1923, "rotates": false }, - { "id": "t_m_frame", "fg": 1827, "rotates": false }, - { "id": "t_machinery_electronic", "fg": 1850, "rotates": false }, - { "id": "t_machinery_heavy", "fg": [ 1853, 2014 ], "rotates": false }, - { "id": "t_machinery_light", "fg": 1851, "rotates": false }, - { "id": "t_machinery_old", "fg": 1854, "rotates": false }, - { "id": "t_manhole", "fg": 1762, "rotates": false }, - { "id": "t_manhole_cover", "fg": 1761, "bg": 1925, "rotates": false }, - { "id": "t_marloss_season_spring", "fg": 1701, "rotates": false, "bg": 2066 }, - { "id": "t_marloss_season_summer", "fg": 1701, "rotates": false, "bg": 2068 }, - { "id": "t_marloss_season_autumn", "fg": 1701, "rotates": false, "bg": 2067 }, - { "id": "t_marloss_season_winter", "fg": 1701, "rotates": false, "bg": 2069 }, - { "id": "t_marloss_tree_season_spring", "fg": 1795, "bg": 2028 }, - { "id": "t_marloss_tree_season_summer", "fg": 1795, "bg": 2029 }, - { "id": "t_marloss_tree_season_autumn", "fg": 1795, "bg": 2027 }, - { "id": "t_marloss_tree_season_winter", "fg": 1795, "bg": 2030 }, - { "id": "t_marloss_tree_harvested_season_spring", "fg": 1795, "bg": 2028 }, - { "id": "t_marloss_tree_harvested_season_summer", "fg": 1795, "bg": 2029 }, - { "id": "t_marloss_tree_harvested_season_autumn", "fg": 1795, "bg": 2027 }, - { "id": "t_marloss_tree_harvested_season_winter", "fg": 1795, "bg": 2030 }, - { "id": "t_mdoor_frame", "fg": 1984, "rotates": false }, - { "id": "t_metal", "bg": 1859, "rotates": false }, - { "id": "t_metal_floor", "bg": 1975, "rotates": false }, + { "id": "t_little_column", "fg": 1933, "rotates": false }, + { "id": "t_m_frame", "fg": 1837, "rotates": false }, + { "id": "t_machinery_electronic", "fg": 1860, "rotates": false }, + { "id": "t_machinery_heavy", "fg": [ 1863, 2024 ], "rotates": false }, + { "id": "t_machinery_light", "fg": 1861, "rotates": false }, + { "id": "t_machinery_old", "fg": 1864, "rotates": false }, + { "id": "t_manhole", "fg": 1772, "rotates": false }, + { "id": "t_manhole_cover", "fg": 1771, "bg": 1935, "rotates": false }, + { "id": "t_marloss_season_spring", "fg": 1711, "rotates": false, "bg": 2077 }, + { "id": "t_marloss_season_summer", "fg": 1711, "rotates": false, "bg": 2079 }, + { "id": "t_marloss_season_autumn", "fg": 1711, "rotates": false, "bg": 2078 }, + { "id": "t_marloss_season_winter", "fg": 1711, "rotates": false, "bg": 2080 }, + { "id": "t_marloss_tree_season_spring", "fg": 1805, "bg": 2039 }, + { "id": "t_marloss_tree_season_summer", "fg": 1805, "bg": 2040 }, + { "id": "t_marloss_tree_season_autumn", "fg": 1805, "bg": 2038 }, + { "id": "t_marloss_tree_season_winter", "fg": 1805, "bg": 2041 }, + { "id": "t_marloss_tree_harvested_season_spring", "fg": 1805, "bg": 2039 }, + { "id": "t_marloss_tree_harvested_season_summer", "fg": 1805, "bg": 2040 }, + { "id": "t_marloss_tree_harvested_season_autumn", "fg": 1805, "bg": 2038 }, + { "id": "t_marloss_tree_harvested_season_winter", "fg": 1805, "bg": 2041 }, + { "id": "t_mdoor_frame", "fg": 1994, "rotates": false }, + { "id": "t_metal", "bg": 1869, "rotates": false }, + { "id": "t_metal_floor", "bg": 1985, "rotates": false }, { "id": "t_missile", - "fg": 1724, + "fg": 1734, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1724 }, - { "id": "corner", "fg": 1725 }, - { "id": "edge", "fg": 1724 }, - { "id": "t_connection", "fg": 1726 }, - { "id": "end_piece", "fg": 1724 }, - { "id": "unconnected", "fg": 1724 } + { "id": "center", "fg": 1734 }, + { "id": "corner", "fg": 1735 }, + { "id": "edge", "fg": 1734 }, + { "id": "t_connection", "fg": 1736 }, + { "id": "end_piece", "fg": 1734 }, + { "id": "unconnected", "fg": 1734 } ], "rotates": false }, - { "id": "t_missile_exploded", "fg": 1901, "rotates": false }, + { "id": "t_missile_exploded", "fg": 1911, "rotates": false }, { "id": "t_monkey_bars_season_spring", - "fg": 1878, - "bg": 2066, + "fg": 1888, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1878, "bg": 2066 }, - { "id": "corner", "fg": 1879, "bg": 2066 }, - { "id": "t_connection", "fg": 1880, "bg": 2066 } + { "id": "center", "fg": 1888, "bg": 2077 }, + { "id": "corner", "fg": 1889, "bg": 2077 }, + { "id": "t_connection", "fg": 1890, "bg": 2077 } ], "rotates": false }, { "id": "t_monkey_bars_season_summer", - "fg": 1878, - "bg": 2068, + "fg": 1888, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1878, "bg": 2068 }, - { "id": "corner", "fg": 1879, "bg": 2068 }, - { "id": "t_connection", "fg": 1880, "bg": 2068 } + { "id": "center", "fg": 1888, "bg": 2079 }, + { "id": "corner", "fg": 1889, "bg": 2079 }, + { "id": "t_connection", "fg": 1890, "bg": 2079 } ], "rotates": false }, { "id": "t_monkey_bars_season_autumn", - "fg": 1878, - "bg": 2067, + "fg": 1888, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1878, "bg": 2067 }, - { "id": "corner", "fg": 1879, "bg": 2067 }, - { "id": "t_connection", "fg": 1880, "bg": 2067 } + { "id": "center", "fg": 1888, "bg": 2078 }, + { "id": "corner", "fg": 1889, "bg": 2078 }, + { "id": "t_connection", "fg": 1890, "bg": 2078 } ], "rotates": false }, { "id": "t_monkey_bars_season_winter", - "fg": 1878, - "bg": 2069, + "fg": 1888, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1878, "bg": 2069 }, - { "id": "corner", "fg": 1879, "bg": 2069 }, - { "id": "t_connection", "fg": 1880, "bg": 2069 } + { "id": "center", "fg": 1888, "bg": 2080 }, + { "id": "corner", "fg": 1889, "bg": 2080 }, + { "id": "t_connection", "fg": 1890, "bg": 2080 } ], "rotates": false }, - { "id": "t_oil_circ_brkr_l", "fg": 1776, "rotates": false, "multitile": false }, - { "id": "t_oil_circ_brkr_s", "fg": 1777, "rotates": false, "multitile": false }, - { "id": "t_open_air", "bg": 1766, "rotates": false }, - { "id": "t_ov_reb_cage", "bg": 1859, "rotates": false }, - { "id": "t_ov_smreb_cage", "bg": 1859, "rotates": false }, - { "id": "t_palisade_season_spring", "fg": 1996, "rotates": false, "bg": 2066 }, - { "id": "t_palisade_season_summer", "fg": 1996, "rotates": false, "bg": 2068 }, - { "id": "t_palisade_season_autumn", "fg": 1996, "rotates": false, "bg": 2067 }, - { "id": "t_palisade_season_winter", "fg": 1996, "rotates": false, "bg": 2069 }, - { "id": "t_palisade_pulley", "fg": 1997, "rotates": false }, - { "id": "t_paper", "fg": 2004, "rotates": false }, - { "id": "t_pavement", "bg": 1925, "rotates": false }, - { "id": "t_pavement_bg_dp", "bg": 1925, "rotates": false }, - { "id": "t_pavement_y", "fg": 1856, "bg": 1925, "rotates": false }, - { "id": "t_pavement_y_bg_dp", "fg": 1856, "bg": 1925, "rotates": false }, - { "id": "t_pedestal_temple", "fg": 2009, "rotates": false }, - { "id": "t_pedestal_wyrm", "fg": 2008, "rotates": false }, + { "id": "t_oil_circ_brkr_l", "fg": 1786, "rotates": false, "multitile": false }, + { "id": "t_oil_circ_brkr_s", "fg": 1787, "rotates": false, "multitile": false }, + { "id": "t_open_air", "bg": 1776, "rotates": false }, + { "id": "t_ov_reb_cage", "bg": 1869, "rotates": false }, + { "id": "t_ov_smreb_cage", "bg": 1869, "rotates": false }, + { "id": "t_palisade_season_spring", "fg": 2006, "rotates": false, "bg": 2077 }, + { "id": "t_palisade_season_summer", "fg": 2006, "rotates": false, "bg": 2079 }, + { "id": "t_palisade_season_autumn", "fg": 2006, "rotates": false, "bg": 2078 }, + { "id": "t_palisade_season_winter", "fg": 2006, "rotates": false, "bg": 2080 }, + { "id": "t_palisade_pulley", "fg": 2007, "rotates": false }, + { "id": "t_paper", "fg": 2014, "rotates": false }, + { "id": "t_pavement", "bg": 1935, "rotates": false }, + { "id": "t_pavement_bg_dp", "bg": 1935, "rotates": false }, + { "id": "t_pavement_y", "fg": 1866, "bg": 1935, "rotates": false }, + { "id": "t_pavement_y_bg_dp", "fg": 1866, "bg": 1935, "rotates": false }, + { "id": "t_pedestal_temple", "fg": 2019, "rotates": false }, + { "id": "t_pedestal_wyrm", "fg": 2018, "rotates": false }, { "id": "t_pit_season_spring", - "fg": 1813, + "fg": 1823, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1938, "bg": 2066 }, - { "id": "corner", "fg": 1939, "bg": 2066 }, - { "id": "edge", "fg": 1940, "bg": 2066 }, - { "id": "t_connection", "fg": 1941, "bg": 2066 }, - { "id": "end_piece", "fg": 1942, "bg": 2066 }, - { "id": "unconnected", "fg": 1813, "bg": 2066 } + { "id": "center", "fg": 1948, "bg": 2077 }, + { "id": "corner", "fg": 1949, "bg": 2077 }, + { "id": "edge", "fg": 1950, "bg": 2077 }, + { "id": "t_connection", "fg": 1951, "bg": 2077 }, + { "id": "end_piece", "fg": 1952, "bg": 2077 }, + { "id": "unconnected", "fg": 1823, "bg": 2077 } ], "rotates": false }, { "id": "t_pit_season_summer", - "fg": 1813, + "fg": 1823, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1938, "bg": 2068 }, - { "id": "corner", "fg": 1939, "bg": 2068 }, - { "id": "edge", "fg": 1940, "bg": 2068 }, - { "id": "t_connection", "fg": 1941, "bg": 2068 }, - { "id": "end_piece", "fg": 1942, "bg": 2068 }, - { "id": "unconnected", "fg": 1813, "bg": 2068 } + { "id": "center", "fg": 1948, "bg": 2079 }, + { "id": "corner", "fg": 1949, "bg": 2079 }, + { "id": "edge", "fg": 1950, "bg": 2079 }, + { "id": "t_connection", "fg": 1951, "bg": 2079 }, + { "id": "end_piece", "fg": 1952, "bg": 2079 }, + { "id": "unconnected", "fg": 1823, "bg": 2079 } ], "rotates": false }, { "id": "t_pit_season_autumn", - "fg": 1813, + "fg": 1823, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1938, "bg": 2067 }, - { "id": "corner", "fg": 1939, "bg": 2067 }, - { "id": "edge", "fg": 1940, "bg": 2067 }, - { "id": "t_connection", "fg": 1941, "bg": 2067 }, - { "id": "end_piece", "fg": 1942, "bg": 2067 }, - { "id": "unconnected", "fg": 1813, "bg": 2067 } + { "id": "center", "fg": 1948, "bg": 2078 }, + { "id": "corner", "fg": 1949, "bg": 2078 }, + { "id": "edge", "fg": 1950, "bg": 2078 }, + { "id": "t_connection", "fg": 1951, "bg": 2078 }, + { "id": "end_piece", "fg": 1952, "bg": 2078 }, + { "id": "unconnected", "fg": 1823, "bg": 2078 } ], "rotates": false }, { "id": "t_pit_season_winter", - "fg": 1813, + "fg": 1823, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1938, "bg": 2069 }, - { "id": "corner", "fg": 1939, "bg": 2069 }, - { "id": "edge", "fg": 1940, "bg": 2069 }, - { "id": "t_connection", "fg": 1941, "bg": 2069 }, - { "id": "end_piece", "fg": 1942, "bg": 2069 }, - { "id": "unconnected", "fg": 1813, "bg": 2069 } + { "id": "center", "fg": 1948, "bg": 2080 }, + { "id": "corner", "fg": 1949, "bg": 2080 }, + { "id": "edge", "fg": 1950, "bg": 2080 }, + { "id": "t_connection", "fg": 1951, "bg": 2080 }, + { "id": "end_piece", "fg": 1952, "bg": 2080 }, + { "id": "unconnected", "fg": 1823, "bg": 2080 } ], "rotates": false }, { "id": "t_pit_corpsed_season_spring", - "fg": 1949, + "fg": 1959, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1944, "bg": 2066 }, - { "id": "corner", "fg": 1945, "bg": 2066 }, - { "id": "edge", "fg": 1946, "bg": 2066 }, - { "id": "t_connection", "fg": 1947, "bg": 2066 }, - { "id": "end_piece", "fg": 1948, "bg": 2066 }, - { "id": "unconnected", "fg": 1949, "bg": 2066 } + { "id": "center", "fg": 1954, "bg": 2077 }, + { "id": "corner", "fg": 1955, "bg": 2077 }, + { "id": "edge", "fg": 1956, "bg": 2077 }, + { "id": "t_connection", "fg": 1957, "bg": 2077 }, + { "id": "end_piece", "fg": 1958, "bg": 2077 }, + { "id": "unconnected", "fg": 1959, "bg": 2077 } ], "rotates": false, - "bg": 2066 + "bg": 2077 }, { "id": "t_pit_corpsed_season_summer", - "fg": 1949, + "fg": 1959, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1944, "bg": 2068 }, - { "id": "corner", "fg": 1945, "bg": 2068 }, - { "id": "edge", "fg": 1946, "bg": 2068 }, - { "id": "t_connection", "fg": 1947, "bg": 2068 }, - { "id": "end_piece", "fg": 1948, "bg": 2068 }, - { "id": "unconnected", "fg": 1949, "bg": 2068 } + { "id": "center", "fg": 1954, "bg": 2079 }, + { "id": "corner", "fg": 1955, "bg": 2079 }, + { "id": "edge", "fg": 1956, "bg": 2079 }, + { "id": "t_connection", "fg": 1957, "bg": 2079 }, + { "id": "end_piece", "fg": 1958, "bg": 2079 }, + { "id": "unconnected", "fg": 1959, "bg": 2079 } ], "rotates": false, - "bg": 2068 + "bg": 2079 }, { "id": "t_pit_corpsed_season_autumn", - "fg": 1949, + "fg": 1959, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1944, "bg": 2067 }, - { "id": "corner", "fg": 1945, "bg": 2067 }, - { "id": "edge", "fg": 1946, "bg": 2067 }, - { "id": "t_connection", "fg": 1947, "bg": 2067 }, - { "id": "end_piece", "fg": 1948, "bg": 2067 }, - { "id": "unconnected", "fg": 1949, "bg": 2067 } + { "id": "center", "fg": 1954, "bg": 2078 }, + { "id": "corner", "fg": 1955, "bg": 2078 }, + { "id": "edge", "fg": 1956, "bg": 2078 }, + { "id": "t_connection", "fg": 1957, "bg": 2078 }, + { "id": "end_piece", "fg": 1958, "bg": 2078 }, + { "id": "unconnected", "fg": 1959, "bg": 2078 } ], "rotates": false, - "bg": 2067 + "bg": 2078 }, { "id": "t_pit_corpsed_season_winter", - "fg": 1949, + "fg": 1959, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1944, "bg": 2069 }, - { "id": "corner", "fg": 1945, "bg": 2069 }, - { "id": "edge", "fg": 1946, "bg": 2069 }, - { "id": "t_connection", "fg": 1947, "bg": 2069 }, - { "id": "end_piece", "fg": 1948, "bg": 2069 }, - { "id": "unconnected", "fg": 1949, "bg": 2069 } + { "id": "center", "fg": 1954, "bg": 2080 }, + { "id": "corner", "fg": 1955, "bg": 2080 }, + { "id": "edge", "fg": 1956, "bg": 2080 }, + { "id": "t_connection", "fg": 1957, "bg": 2080 }, + { "id": "end_piece", "fg": 1958, "bg": 2080 }, + { "id": "unconnected", "fg": 1959, "bg": 2080 } ], "rotates": false, - "bg": 2069 + "bg": 2080 }, - { "id": "t_pit_covered_season_spring", "fg": 1855, "rotates": false, "bg": 2066 }, - { "id": "t_pit_covered_season_summer", "fg": 1855, "rotates": false, "bg": 2068 }, - { "id": "t_pit_covered_season_autumn", "fg": 1855, "rotates": false, "bg": 2067 }, - { "id": "t_pit_covered_season_winter", "fg": 1855, "rotates": false, "bg": 2069 }, + { "id": "t_pit_covered_season_spring", "fg": 1865, "rotates": false, "bg": 2077 }, + { "id": "t_pit_covered_season_summer", "fg": 1865, "rotates": false, "bg": 2079 }, + { "id": "t_pit_covered_season_autumn", "fg": 1865, "rotates": false, "bg": 2078 }, + { "id": "t_pit_covered_season_winter", "fg": 1865, "rotates": false, "bg": 2080 }, { "id": "t_pit_glass_season_spring", - "fg": 1790, + "fg": 1800, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1785, "bg": 2066 }, - { "id": "corner", "fg": 1786, "bg": 2066 }, - { "id": "edge", "fg": 1787, "bg": 2066 }, - { "id": "t_connection", "fg": 1788, "bg": 2066 }, - { "id": "end_piece", "fg": 1789, "bg": 2066 }, - { "id": "unconnected", "fg": 1790, "bg": 2066 } + { "id": "center", "fg": 1795, "bg": 2077 }, + { "id": "corner", "fg": 1796, "bg": 2077 }, + { "id": "edge", "fg": 1797, "bg": 2077 }, + { "id": "t_connection", "fg": 1798, "bg": 2077 }, + { "id": "end_piece", "fg": 1799, "bg": 2077 }, + { "id": "unconnected", "fg": 1800, "bg": 2077 } ], "rotates": false, - "bg": 2066 + "bg": 2077 }, { "id": "t_pit_glass_season_summer", - "fg": 1790, + "fg": 1800, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1785, "bg": 2068 }, - { "id": "corner", "fg": 1786, "bg": 2068 }, - { "id": "edge", "fg": 1787, "bg": 2068 }, - { "id": "t_connection", "fg": 1788, "bg": 2068 }, - { "id": "end_piece", "fg": 1789, "bg": 2068 }, - { "id": "unconnected", "fg": 1790, "bg": 2068 } + { "id": "center", "fg": 1795, "bg": 2079 }, + { "id": "corner", "fg": 1796, "bg": 2079 }, + { "id": "edge", "fg": 1797, "bg": 2079 }, + { "id": "t_connection", "fg": 1798, "bg": 2079 }, + { "id": "end_piece", "fg": 1799, "bg": 2079 }, + { "id": "unconnected", "fg": 1800, "bg": 2079 } ], "rotates": false, - "bg": 2068 + "bg": 2079 }, { "id": "t_pit_glass_season_autumn", - "fg": 1790, + "fg": 1800, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1785, "bg": 2067 }, - { "id": "corner", "fg": 1786, "bg": 2067 }, - { "id": "edge", "fg": 1787, "bg": 2067 }, - { "id": "t_connection", "fg": 1788, "bg": 2067 }, - { "id": "end_piece", "fg": 1789, "bg": 2067 }, - { "id": "unconnected", "fg": 1790, "bg": 2067 } + { "id": "center", "fg": 1795, "bg": 2078 }, + { "id": "corner", "fg": 1796, "bg": 2078 }, + { "id": "edge", "fg": 1797, "bg": 2078 }, + { "id": "t_connection", "fg": 1798, "bg": 2078 }, + { "id": "end_piece", "fg": 1799, "bg": 2078 }, + { "id": "unconnected", "fg": 1800, "bg": 2078 } ], "rotates": false, - "bg": 2067 + "bg": 2078 }, { "id": "t_pit_glass_season_winter", - "fg": 1790, + "fg": 1800, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1785, "bg": 2069 }, - { "id": "corner", "fg": 1786, "bg": 2069 }, - { "id": "edge", "fg": 1787, "bg": 2069 }, - { "id": "t_connection", "fg": 1788, "bg": 2069 }, - { "id": "end_piece", "fg": 1789, "bg": 2069 }, - { "id": "unconnected", "fg": 1790, "bg": 2069 } + { "id": "center", "fg": 1795, "bg": 2080 }, + { "id": "corner", "fg": 1796, "bg": 2080 }, + { "id": "edge", "fg": 1797, "bg": 2080 }, + { "id": "t_connection", "fg": 1798, "bg": 2080 }, + { "id": "end_piece", "fg": 1799, "bg": 2080 }, + { "id": "unconnected", "fg": 1800, "bg": 2080 } ], "rotates": false, - "bg": 2069 + "bg": 2080 }, - { "id": "t_pit_glass_covered", "bg": 1855, "rotates": false }, + { "id": "t_pit_glass_covered", "bg": 1865, "rotates": false }, { "id": "t_pit_shallow_season_spring", - "fg": 1784, + "fg": 1794, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1955, "bg": 2066 }, - { "id": "corner", "fg": 1956, "bg": 2066 }, - { "id": "edge", "fg": 1957, "bg": 2066 }, - { "id": "t_connection", "fg": 1958, "bg": 2066 }, - { "id": "end_piece", "fg": 1959, "bg": 2066 }, - { "id": "unconnected", "fg": 1784, "bg": 2066 } + { "id": "center", "fg": 1965, "bg": 2077 }, + { "id": "corner", "fg": 1966, "bg": 2077 }, + { "id": "edge", "fg": 1967, "bg": 2077 }, + { "id": "t_connection", "fg": 1968, "bg": 2077 }, + { "id": "end_piece", "fg": 1969, "bg": 2077 }, + { "id": "unconnected", "fg": 1794, "bg": 2077 } ], "rotates": false, - "bg": 2066 + "bg": 2077 }, { "id": "t_pit_shallow_season_summer", - "fg": 1784, + "fg": 1794, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1955, "bg": 2068 }, - { "id": "corner", "fg": 1956, "bg": 2068 }, - { "id": "edge", "fg": 1957, "bg": 2068 }, - { "id": "t_connection", "fg": 1958, "bg": 2068 }, - { "id": "end_piece", "fg": 1959, "bg": 2068 }, - { "id": "unconnected", "fg": 1784, "bg": 2068 } + { "id": "center", "fg": 1965, "bg": 2079 }, + { "id": "corner", "fg": 1966, "bg": 2079 }, + { "id": "edge", "fg": 1967, "bg": 2079 }, + { "id": "t_connection", "fg": 1968, "bg": 2079 }, + { "id": "end_piece", "fg": 1969, "bg": 2079 }, + { "id": "unconnected", "fg": 1794, "bg": 2079 } ], "rotates": false, - "bg": 2068 + "bg": 2079 }, { "id": "t_pit_shallow_season_autumn", - "fg": 1784, + "fg": 1794, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1955, "bg": 2067 }, - { "id": "corner", "fg": 1956, "bg": 2067 }, - { "id": "edge", "fg": 1957, "bg": 2067 }, - { "id": "t_connection", "fg": 1958, "bg": 2067 }, - { "id": "end_piece", "fg": 1959, "bg": 2067 }, - { "id": "unconnected", "fg": 1784, "bg": 2067 } + { "id": "center", "fg": 1965, "bg": 2078 }, + { "id": "corner", "fg": 1966, "bg": 2078 }, + { "id": "edge", "fg": 1967, "bg": 2078 }, + { "id": "t_connection", "fg": 1968, "bg": 2078 }, + { "id": "end_piece", "fg": 1969, "bg": 2078 }, + { "id": "unconnected", "fg": 1794, "bg": 2078 } ], "rotates": false, - "bg": 2067 + "bg": 2078 }, { "id": "t_pit_shallow_season_winter", - "fg": 1784, + "fg": 1794, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1955, "bg": 2069 }, - { "id": "corner", "fg": 1956, "bg": 2069 }, - { "id": "edge", "fg": 1957, "bg": 2069 }, - { "id": "t_connection", "fg": 1958, "bg": 2069 }, - { "id": "end_piece", "fg": 1959, "bg": 2069 }, - { "id": "unconnected", "fg": 1784, "bg": 2069 } + { "id": "center", "fg": 1965, "bg": 2080 }, + { "id": "corner", "fg": 1966, "bg": 2080 }, + { "id": "edge", "fg": 1967, "bg": 2080 }, + { "id": "t_connection", "fg": 1968, "bg": 2080 }, + { "id": "end_piece", "fg": 1969, "bg": 2080 }, + { "id": "unconnected", "fg": 1794, "bg": 2080 } ], "rotates": false, - "bg": 2069 + "bg": 2080 }, { "id": "t_pit_spiked_season_spring", - "fg": 1852, + "fg": 1862, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1950, "bg": 2066 }, - { "id": "corner", "fg": 1951, "bg": 2066 }, - { "id": "edge", "fg": 1952, "bg": 2066 }, - { "id": "t_connection", "fg": 1953, "bg": 2066 }, - { "id": "end_piece", "fg": 1954, "bg": 2066 }, - { "id": "unconnected", "fg": 1852, "bg": 2066 } + { "id": "center", "fg": 1960, "bg": 2077 }, + { "id": "corner", "fg": 1961, "bg": 2077 }, + { "id": "edge", "fg": 1962, "bg": 2077 }, + { "id": "t_connection", "fg": 1963, "bg": 2077 }, + { "id": "end_piece", "fg": 1964, "bg": 2077 }, + { "id": "unconnected", "fg": 1862, "bg": 2077 } ], "rotates": false, - "bg": 2066 + "bg": 2077 }, { "id": "t_pit_spiked_season_summer", - "fg": 1852, + "fg": 1862, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1950, "bg": 2068 }, - { "id": "corner", "fg": 1951, "bg": 2068 }, - { "id": "edge", "fg": 1952, "bg": 2068 }, - { "id": "t_connection", "fg": 1953, "bg": 2068 }, - { "id": "end_piece", "fg": 1954, "bg": 2068 }, - { "id": "unconnected", "fg": 1852, "bg": 2068 } + { "id": "center", "fg": 1960, "bg": 2079 }, + { "id": "corner", "fg": 1961, "bg": 2079 }, + { "id": "edge", "fg": 1962, "bg": 2079 }, + { "id": "t_connection", "fg": 1963, "bg": 2079 }, + { "id": "end_piece", "fg": 1964, "bg": 2079 }, + { "id": "unconnected", "fg": 1862, "bg": 2079 } ], "rotates": false, - "bg": 2068 + "bg": 2079 }, { "id": "t_pit_spiked_season_autumn", - "fg": 1852, + "fg": 1862, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1950, "bg": 2067 }, - { "id": "corner", "fg": 1951, "bg": 2067 }, - { "id": "edge", "fg": 1952, "bg": 2067 }, - { "id": "t_connection", "fg": 1953, "bg": 2067 }, - { "id": "end_piece", "fg": 1954, "bg": 2067 }, - { "id": "unconnected", "fg": 1852, "bg": 2067 } + { "id": "center", "fg": 1960, "bg": 2078 }, + { "id": "corner", "fg": 1961, "bg": 2078 }, + { "id": "edge", "fg": 1962, "bg": 2078 }, + { "id": "t_connection", "fg": 1963, "bg": 2078 }, + { "id": "end_piece", "fg": 1964, "bg": 2078 }, + { "id": "unconnected", "fg": 1862, "bg": 2078 } ], "rotates": false, - "bg": 2067 + "bg": 2078 }, { "id": "t_pit_spiked_season_winter", - "fg": 1852, + "fg": 1862, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1950, "bg": 2069 }, - { "id": "corner", "fg": 1951, "bg": 2069 }, - { "id": "edge", "fg": 1952, "bg": 2069 }, - { "id": "t_connection", "fg": 1953, "bg": 2069 }, - { "id": "end_piece", "fg": 1954, "bg": 2069 }, - { "id": "unconnected", "fg": 1852, "bg": 2069 } + { "id": "center", "fg": 1960, "bg": 2080 }, + { "id": "corner", "fg": 1961, "bg": 2080 }, + { "id": "edge", "fg": 1962, "bg": 2080 }, + { "id": "t_connection", "fg": 1963, "bg": 2080 }, + { "id": "end_piece", "fg": 1964, "bg": 2080 }, + { "id": "unconnected", "fg": 1862, "bg": 2080 } ], "rotates": false, - "bg": 2069 - }, - { "id": "t_pit_spiked_covered_season_spring", "fg": 1855, "rotates": false, "bg": 2066 }, - { "id": "t_pit_spiked_covered_season_summer", "fg": 1855, "rotates": false, "bg": 2068 }, - { "id": "t_pit_spiked_covered_season_autumn", "fg": 1855, "rotates": false, "bg": 2067 }, - { "id": "t_pit_spiked_covered_season_winter", "fg": 1855, "rotates": false, "bg": 2069 }, - { "id": "t_plut_generator", "fg": 1780, "rotates": false, "multitile": false }, - { "id": "t_pontoon_dp", "fg": 1943, "rotates": true }, - { "id": "t_portcullis", "fg": 1737, "rotates": false }, - { "id": "t_potential_trans", "fg": 1777, "rotates": false, "multitile": false }, - { "id": "t_radio_tower", "fg": 1763, "bg": 1925, "rotates": false }, - { "id": "t_rdoor_b", "fg": 1718, "rotates": false }, - { "id": "t_rdoor_boarded", "fg": 1783, "rotates": false }, - { "id": "t_rdoor_boarded_damaged", "fg": 1782, "rotates": false }, - { "id": "t_rdoor_c", "fg": 1716, "rotates": false }, - { "id": "t_rdoor_o", "fg": 1717, "rotates": false }, + "bg": 2080 + }, + { "id": "t_pit_spiked_covered_season_spring", "fg": 1865, "rotates": false, "bg": 2077 }, + { "id": "t_pit_spiked_covered_season_summer", "fg": 1865, "rotates": false, "bg": 2079 }, + { "id": "t_pit_spiked_covered_season_autumn", "fg": 1865, "rotates": false, "bg": 2078 }, + { "id": "t_pit_spiked_covered_season_winter", "fg": 1865, "rotates": false, "bg": 2080 }, + { "id": "t_plut_generator", "fg": 1790, "rotates": false, "multitile": false }, + { "id": "t_pontoon_dp", "fg": 1953, "rotates": true }, + { "id": "t_portcullis", "fg": 1747, "rotates": false }, + { "id": "t_potential_trans", "fg": 1787, "rotates": false, "multitile": false }, + { "id": "t_radio_tower", "fg": 1773, "bg": 1935, "rotates": false }, + { "id": "t_rdoor_b", "fg": 1728, "rotates": false }, + { "id": "t_rdoor_boarded", "fg": 1793, "rotates": false }, + { "id": "t_rdoor_boarded_damaged", "fg": 1792, "rotates": false }, + { "id": "t_rdoor_c", "fg": 1726, "rotates": false }, + { "id": "t_rdoor_o", "fg": 1727, "rotates": false }, { "id": "t_reb_cage", - "fg": 2002, + "fg": 2012, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1932 }, - { "id": "corner", "fg": 1927 }, - { "id": "edge", "fg": 1926 }, - { "id": "t_connection", "fg": 1933 }, - { "id": "end_piece", "fg": 1926 }, - { "id": "unconnected", "fg": 2002 } + { "id": "center", "fg": 1942 }, + { "id": "corner", "fg": 1937 }, + { "id": "edge", "fg": 1936 }, + { "id": "t_connection", "fg": 1943 }, + { "id": "end_piece", "fg": 1936 }, + { "id": "unconnected", "fg": 2012 } ], "rotates": false }, - { "id": "t_recycler", "fg": 1759, "rotates": false }, + { "id": "t_recycler", "fg": 1769, "rotates": false }, { "id": "t_reinforced_glass_shutter", - "fg": 1843, - "bg": 2066, + "fg": 1853, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1842 }, - { "id": "corner", "fg": 1841 }, - { "id": "edge", "fg": 1843 }, - { "id": "t_connection", "fg": 1842 }, - { "id": "end_piece", "fg": 1843 }, - { "id": "unconnected", "fg": 1843 } + { "id": "center", "fg": 1852 }, + { "id": "corner", "fg": 1851 }, + { "id": "edge", "fg": 1853 }, + { "id": "t_connection", "fg": 1852 }, + { "id": "end_piece", "fg": 1853 }, + { "id": "unconnected", "fg": 1853 } ], "rotates": false }, { "id": [ "t_reinforced_glass", "t_reinforced_glass_shutter_open" ], - "fg": 1893, - "bg": 1973, + "fg": 1903, + "bg": 1983, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1893 }, - { "id": "corner", "fg": 1891 }, - { "id": "edge", "fg": 1893 }, - { "id": "t_connection", "fg": 1892 }, - { "id": "end_piece", "fg": 1893 }, - { "id": "unconnected", "fg": 1893 } + { "id": "center", "fg": 1903 }, + { "id": "corner", "fg": 1901 }, + { "id": "edge", "fg": 1903 }, + { "id": "t_connection", "fg": 1902 }, + { "id": "end_piece", "fg": 1903 }, + { "id": "unconnected", "fg": 1903 } ], "rotates": false }, - { "id": "t_rock", "fg": 1757, "rotates": false }, - { "id": "t_rock_blue", "fg": 1874, "rotates": false }, - { "id": "t_rock_floor", "bg": 1858, "rotates": false }, - { "id": "t_rock_green", "fg": 1873, "rotates": false }, - { "id": "t_rock_red", "fg": 1872, "rotates": false }, + { "id": "t_rock", "fg": 1767, "rotates": false }, + { "id": "t_rock_blue", "fg": 1884, "rotates": false }, + { "id": "t_rock_floor", "bg": 1868, "rotates": false }, + { "id": "t_rock_green", "fg": 1883, "rotates": false }, + { "id": "t_rock_red", "fg": 1882, "rotates": false }, { "id": "t_rock_wall", - "fg": 1857, + "fg": 1867, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1969 }, - { "id": "corner", "fg": 1970 }, - { "id": "edge", "fg": 1857 }, - { "id": "t_connection", "fg": 1971 }, - { "id": "end_piece", "fg": 1857 }, - { "id": "unconnected", "fg": 1857 } + { "id": "center", "fg": 1979 }, + { "id": "corner", "fg": 1980 }, + { "id": "edge", "fg": 1867 }, + { "id": "t_connection", "fg": 1981 }, + { "id": "end_piece", "fg": 1867 }, + { "id": "unconnected", "fg": 1867 } ], "rotates": false }, - { "id": "t_rock_wall_half", "fg": 1758, "rotates": false }, + { "id": "t_rock_wall_half", "fg": 1768, "rotates": false }, { "id": "t_root_wall", - "fg": 1962, + "fg": 1972, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1965 }, - { "id": "corner", "fg": 1966 }, - { "id": "edge", "fg": 1962 }, - { "id": "t_connection", "fg": 1967 }, - { "id": "end_piece", "fg": 1968 }, - { "id": "unconnected", "fg": 1962 } + { "id": "center", "fg": 1975 }, + { "id": "corner", "fg": 1976 }, + { "id": "edge", "fg": 1972 }, + { "id": "t_connection", "fg": 1977 }, + { "id": "end_piece", "fg": 1978 }, + { "id": "unconnected", "fg": 1972 } ], "rotates": false }, - { "id": "t_rope_up", "fg": 1738, "rotates": false }, - { "id": "t_rubble", "bg": 1868, "rotates": false }, - { "id": "t_sai_box", "fg": 336, "rotates": false }, - { "id": "t_sai_box_damaged", "fg": 337, "rotates": false }, - { "id": "t_sand", "bg": 1863, "rotates": false }, + { "id": "t_rope_up", "fg": 1748, "rotates": false }, + { "id": "t_rubble", "bg": 1878, "rotates": false }, + { "id": "t_sai_box", "fg": 337, "rotates": false }, + { "id": "t_sai_box_damaged", "fg": 338, "rotates": false }, + { "id": "t_sand", "bg": 1873, "rotates": false }, { "id": "t_sandbox", - "fg": 1775, + "fg": 1785, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1771 }, - { "id": "corner", "fg": 1860 }, - { "id": "edge", "fg": 1772 }, - { "id": "t_connection", "fg": 1773 }, - { "id": "end_piece", "fg": 1774 }, - { "id": "unconnected", "fg": 1775 } + { "id": "center", "fg": 1781 }, + { "id": "corner", "fg": 1870 }, + { "id": "edge", "fg": 1782 }, + { "id": "t_connection", "fg": 1783 }, + { "id": "end_piece", "fg": 1784 }, + { "id": "unconnected", "fg": 1785 } ], "rotates": false }, - { "id": "t_sandmound", "bg": 2065, "rotates": false }, + { "id": "t_sandmound", "bg": 2076, "rotates": false }, { "id": "t_sconc_wall", - "fg": 1857, + "fg": 1867, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1969 }, - { "id": "corner", "fg": 1970 }, - { "id": "edge", "fg": 1857 }, - { "id": "t_connection", "fg": 1971 }, - { "id": "end_piece", "fg": 1857 }, - { "id": "unconnected", "fg": 1857 } + { "id": "center", "fg": 1979 }, + { "id": "corner", "fg": 1980 }, + { "id": "edge", "fg": 1867 }, + { "id": "t_connection", "fg": 1981 }, + { "id": "end_piece", "fg": 1867 }, + { "id": "unconnected", "fg": 1867 } ], "rotates": false }, - { "id": "t_sconc_wall_halfway", "fg": 1758, "rotates": false }, - { "id": "t_scrap_floor", "bg": 1975, "rotates": false }, + { "id": "t_sconc_wall_halfway", "fg": 1768, "rotates": false }, + { "id": "t_scrap_floor", "bg": 1985, "rotates": false }, { "id": "t_scrap_wall", - "fg": 1890, - "bg": 2066, + "fg": 1900, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1890 }, - { "id": "corner", "fg": 1888 }, - { "id": "edge", "fg": 1890 }, - { "id": "t_connection", "fg": 1889 }, - { "id": "end_piece", "fg": 1890 }, - { "id": "unconnected", "fg": 1890 } + { "id": "center", "fg": 1900 }, + { "id": "corner", "fg": 1898 }, + { "id": "edge", "fg": 1900 }, + { "id": "t_connection", "fg": 1899 }, + { "id": "end_piece", "fg": 1900 }, + { "id": "unconnected", "fg": 1900 } ], "rotates": false }, - { "id": "t_searth_test", "bg": 1739, "rotates": false }, - { "id": "t_sewage", "bg": 2006, "rotates": false }, + { "id": "t_searth_test", "bg": 1749, "rotates": false }, + { "id": "t_sewage", "bg": 2016, "rotates": false }, { "id": [ "t_sewage_pipe", "t_ind_pipe" ], - "fg": 1867, + "fg": 1877, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1914 }, - { "id": "corner", "fg": 1915 }, - { "id": "edge", "fg": 1916 }, - { "id": "t_connection", "fg": 1917 }, - { "id": "end_piece", "fg": 1918 }, - { "id": "unconnected", "fg": 1867 } + { "id": "center", "fg": 1924 }, + { "id": "corner", "fg": 1925 }, + { "id": "edge", "fg": 1926 }, + { "id": "t_connection", "fg": 1927 }, + { "id": "end_piece", "fg": 1928 }, + { "id": "unconnected", "fg": 1877 } ], "rotates": false }, - { "id": "t_sewage_pump", "fg": 1866, "rotates": false }, - { "id": "t_shrub_season_spring", "fg": 2001, "bg": 2111 }, - { "id": "t_shrub_season_summer", "fg": 2001, "bg": 2117 }, - { "id": "t_shrub_season_autumn", "fg": 2001, "bg": 2112 }, - { "id": "t_shrub_season_winter", "fg": 2001, "bg": 2125 }, - { "id": "t_shrub_blueberry_season_spring", "fg": 1980, "bg": 2111 }, - { "id": "t_shrub_blueberry_season_summer", "fg": 1980, "bg": 2117 }, - { "id": "t_shrub_blueberry_season_autumn", "fg": 1980, "bg": 2112 }, - { "id": "t_shrub_blueberry_season_winter", "fg": 1980, "bg": 2125 }, - { "id": "t_shrub_blueberry_harvested_season_spring", "fg": 1793, "bg": 2111 }, - { "id": "t_shrub_blueberry_harvested_season_summer", "fg": 1793, "bg": 2117 }, - { "id": "t_shrub_blueberry_harvested_season_autumn", "fg": 1793, "bg": 2112 }, - { "id": "t_shrub_blueberry_harvested_season_winter", "fg": 1793, "bg": 2125 }, - { "id": "t_shrub_fungal_season_spring", "fg": 1912, "bg": 2111 }, - { "id": "t_shrub_fungal_season_summer", "fg": 1912, "bg": 2117 }, - { "id": "t_shrub_fungal_season_autumn", "fg": 1912, "bg": 2112 }, - { "id": "t_shrub_fungal_season_winter", "fg": 1912, "bg": 2125 }, - { "id": "t_shrub_strawberry_season_spring", "fg": 1991, "bg": 2111 }, - { "id": "t_shrub_strawberry_season_summer", "fg": 1991, "bg": 2117 }, - { "id": "t_shrub_strawberry_season_autumn", "fg": 1991, "bg": 2112 }, - { "id": "t_shrub_strawberry_season_winter", "fg": 1991, "bg": 2125 }, - { "id": "t_shrub_strawberry_harvested_season_spring", "fg": 1794, "bg": 2111 }, - { "id": "t_shrub_strawberry_harvested_season_summer", "fg": 1794, "bg": 2117 }, - { "id": "t_shrub_strawberry_harvested_season_autumn", "fg": 1794, "bg": 2112 }, - { "id": "t_shrub_strawberry_harvested_season_winter", "fg": 1794, "bg": 2125 }, - { "id": "t_sidewalk", "bg": 1887, "rotates": false }, - { "id": "t_sidewalk_bg_dp", "bg": 1887, "rotates": false }, + { "id": "t_sewage_pump", "fg": 1876, "rotates": false }, + { "id": "t_shrub_season_spring", "fg": 2011, "bg": 2122 }, + { "id": "t_shrub_season_summer", "fg": 2011, "bg": 2128 }, + { "id": "t_shrub_season_autumn", "fg": 2011, "bg": 2123 }, + { "id": "t_shrub_season_winter", "fg": 2011, "bg": 2136 }, + { "id": "t_shrub_blueberry_season_spring", "fg": 1990, "bg": 2122 }, + { "id": "t_shrub_blueberry_season_summer", "fg": 1990, "bg": 2128 }, + { "id": "t_shrub_blueberry_season_autumn", "fg": 1990, "bg": 2123 }, + { "id": "t_shrub_blueberry_season_winter", "fg": 1990, "bg": 2136 }, + { "id": "t_shrub_blueberry_harvested_season_spring", "fg": 1803, "bg": 2122 }, + { "id": "t_shrub_blueberry_harvested_season_summer", "fg": 1803, "bg": 2128 }, + { "id": "t_shrub_blueberry_harvested_season_autumn", "fg": 1803, "bg": 2123 }, + { "id": "t_shrub_blueberry_harvested_season_winter", "fg": 1803, "bg": 2136 }, + { "id": "t_shrub_fungal_season_spring", "fg": 1922, "bg": 2122 }, + { "id": "t_shrub_fungal_season_summer", "fg": 1922, "bg": 2128 }, + { "id": "t_shrub_fungal_season_autumn", "fg": 1922, "bg": 2123 }, + { "id": "t_shrub_fungal_season_winter", "fg": 1922, "bg": 2136 }, + { "id": "t_shrub_strawberry_season_spring", "fg": 2001, "bg": 2122 }, + { "id": "t_shrub_strawberry_season_summer", "fg": 2001, "bg": 2128 }, + { "id": "t_shrub_strawberry_season_autumn", "fg": 2001, "bg": 2123 }, + { "id": "t_shrub_strawberry_season_winter", "fg": 2001, "bg": 2136 }, + { "id": "t_shrub_strawberry_harvested_season_spring", "fg": 1804, "bg": 2122 }, + { "id": "t_shrub_strawberry_harvested_season_summer", "fg": 1804, "bg": 2128 }, + { "id": "t_shrub_strawberry_harvested_season_autumn", "fg": 1804, "bg": 2123 }, + { "id": "t_shrub_strawberry_harvested_season_winter", "fg": 1804, "bg": 2136 }, + { "id": "t_sidewalk", "bg": 1897, "rotates": false }, + { "id": "t_sidewalk_bg_dp", "bg": 1897, "rotates": false }, { "id": "t_slide", - "fg": 1882, + "fg": 1892, "multitile": true, - "additional_tiles": [ { "id": "edge", "fg": 1882 }, { "id": "end_piece", "fg": 1881 } ], + "additional_tiles": [ { "id": "edge", "fg": 1892 }, { "id": "end_piece", "fg": 1891 } ], "rotates": false }, - { "id": "t_slime", "fg": 2006, "rotates": false }, - { "id": "t_slope_down", "fg": 2011, "rotates": false }, - { "id": "t_slope_up", "fg": 2007, "rotates": false }, - { "id": "t_slot_machine", "fg": 1740, "rotates": false }, - { "id": "t_stairs_down", "fg": 1712, "rotates": false }, - { "id": "t_stairs_up", "fg": 1711, "rotates": false }, - { "id": "t_station_disc", "fg": 1778, "rotates": false, "multitile": false }, + { "id": "t_slime", "fg": 2016, "rotates": false }, + { "id": "t_slope_down", "fg": 2021, "rotates": false }, + { "id": "t_slope_up", "fg": 2017, "rotates": false }, + { "id": "t_slot_machine", "fg": 1750, "rotates": false }, + { "id": "t_stairs_down", "fg": 1722, "rotates": false }, + { "id": "t_stairs_up", "fg": 1721, "rotates": false }, + { "id": "t_station_disc", "fg": 1788, "rotates": false, "multitile": false }, { "id": [ "t_stone_wall_line" ], - "fg": 1890, - "bg": 2066, + "fg": 1900, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1840 }, - { "id": "corner", "fg": 1836 }, - { "id": "edge", "fg": 1838 }, - { "id": "t_connection", "fg": 1837 }, - { "id": "end_piece", "fg": 1839 }, - { "id": "unconnected", "fg": 1835 } + { "id": "center", "fg": 1850 }, + { "id": "corner", "fg": 1846 }, + { "id": "edge", "fg": 1848 }, + { "id": "t_connection", "fg": 1847 }, + { "id": "end_piece", "fg": 1849 }, + { "id": "unconnected", "fg": 1845 } ], "rotates": false }, - { "id": "t_strconc_floor", "bg": 1705, "rotates": false }, - { "id": "t_strconc_floor_halfway", "fg": 1756, "rotates": false }, + { "id": "t_strconc_floor", "bg": 1715, "rotates": false }, + { "id": "t_strconc_floor_halfway", "fg": 1766, "rotates": false }, { "id": "t_strconc_wall", - "fg": 1857, + "fg": 1867, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1969 }, - { "id": "corner", "fg": 1970 }, - { "id": "edge", "fg": 1857 }, - { "id": "t_connection", "fg": 1971 }, - { "id": "end_piece", "fg": 1857 }, - { "id": "unconnected", "fg": 1857 } + { "id": "center", "fg": 1979 }, + { "id": "corner", "fg": 1980 }, + { "id": "edge", "fg": 1867 }, + { "id": "t_connection", "fg": 1981 }, + { "id": "end_piece", "fg": 1867 }, + { "id": "unconnected", "fg": 1867 } ], "rotates": false }, - { "id": "t_strconc_wall_halfway", "fg": 1758, "rotates": false }, - { "id": "t_support_l", "fg": 1923, "rotates": false }, - { "id": "t_supports_s_season_spring", "fg": 1902, "rotates": false, "bg": 2066 }, - { "id": "t_supports_s_season_summer", "fg": 1902, "rotates": false, "bg": 2068 }, - { "id": "t_supports_s_season_autumn", "fg": 1902, "rotates": false, "bg": 2067 }, - { "id": "t_supports_s_season_winter", "fg": 1902, "rotates": false, "bg": 2069 }, - { "id": "t_swater_dp", "fg": 1886, "rotates": false }, - { "id": "t_swater_sh", "fg": 1885, "rotates": false }, - { "id": "t_switch_even", "fg": 1715, "rotates": false }, - { "id": "t_switch_gb", "fg": 1713, "rotates": false }, - { "id": "t_switch_rb", "fg": 1714, "rotates": false }, - { "id": "t_switch_rg", "fg": 2010, "rotates": false }, - { "id": "t_switchgear_l", "fg": 1814, "rotates": false }, - { "id": "t_switchgear_s", "fg": 1814, "rotates": false }, - { "id": "t_thconc_floor", "bg": 1705, "rotates": false }, - { "id": "t_tree_season_spring", "fg": 2015, "bg": 2028 }, - { "id": "t_tree_season_summer", "fg": 2015, "bg": 2029 }, - { "id": "t_tree_season_autumn", "fg": 2015, "bg": 2027 }, - { "id": "t_tree_season_winter", "fg": 2023, "bg": 2030 }, - { "id": "t_tree_harvested_season_spring", "fg": 2015, "bg": 2028 }, - { "id": "t_tree_harvested_season_summer", "fg": 2015, "bg": 2029 }, - { "id": "t_tree_harvested_season_autumn", "fg": 2015, "bg": 2027 }, - { "id": "t_tree_harvested_season_winter", "fg": 2023, "bg": 2030 }, - { "id": "t_tree_apple_season_spring", "fg": 2015, "bg": 2028 }, - { "id": "t_tree_apple_season_summer", "fg": 2015, "bg": 2029 }, - { "id": "t_tree_apple_season_autumn", "fg": 2016, "bg": 2027 }, - { "id": "t_tree_apple_season_winter", "fg": 2023, "bg": 2030 }, - { "id": "t_tree_apple_harvested_season_spring", "fg": 2015, "bg": 2028 }, - { "id": "t_tree_apple_harvested_season_summer", "fg": 2015, "bg": 2029 }, - { "id": "t_tree_apple_harvested_season_autumn", "fg": 2015, "bg": 2027 }, - { "id": "t_tree_apple_harvested_season_winter", "fg": 2015, "bg": 2030 }, - { "id": "t_tree_apricot_season_spring", "fg": 2015, "bg": 2028 }, - { "id": "t_tree_apricot_season_summer", "fg": 2017, "bg": 2029 }, - { "id": "t_tree_apricot_season_autumn", "fg": 2015, "bg": 2027 }, - { "id": "t_tree_apricot_season_winter", "fg": 2023, "bg": 2030 }, - { "id": "t_tree_apricot_harvested_season_spring", "fg": 2015, "bg": 2028 }, - { "id": "t_tree_apricot_harvested_season_summer", "fg": 2015, "bg": 2029 }, - { "id": "t_tree_apricot_harvested_season_autumn", "fg": 2015, "bg": 2027 }, - { "id": "t_tree_apricot_harvested_season_winter", "fg": 2023, "bg": 2030 }, - { "id": "t_tree_birch_season_spring", "fg": 1845, "bg": 2028 }, - { "id": "t_tree_birch_season_summer", "fg": 1845, "bg": 2029 }, - { "id": "t_tree_birch_season_autumn", "fg": 1845, "bg": 2027 }, - { "id": "t_tree_birch_season_winter", "fg": 1845, "bg": 2030 }, - { "id": "t_tree_birch_harvested_season_spring", "fg": 1845, "bg": 2028 }, - { "id": "t_tree_birch_harvested_season_summer", "fg": 1845, "bg": 2029 }, - { "id": "t_tree_birch_harvested_season_autumn", "fg": 1845, "bg": 2027 }, - { "id": "t_tree_birch_harvested_season_winter", "fg": 1845, "bg": 2030 }, - { "id": "t_tree_blackjack_season_spring", "fg": 1805, "bg": 2028 }, - { "id": "t_tree_blackjack_season_summer", "fg": 1805, "bg": 2029 }, - { "id": "t_tree_blackjack_season_autumn", "fg": 1805, "bg": 2027 }, - { "id": "t_tree_blackjack_season_winter", "fg": 1805, "bg": 2030 }, - { "id": "t_tree_blackjack_harvested_season_spring", "fg": 1805, "bg": 2028 }, - { "id": "t_tree_blackjack_harvested_season_summer", "fg": 1805, "bg": 2029 }, - { "id": "t_tree_blackjack_harvested_season_autumn", "fg": 1805, "bg": 2029 }, - { "id": "t_tree_blackjack_harvested_season_winter", "fg": 1805, "bg": 2030 }, - { "id": "t_tree_cherry_season_spring", "fg": 2018, "bg": 2028 }, - { "id": "t_tree_cherry_season_summer", "fg": 2019, "bg": 2029 }, - { "id": "t_tree_cherry_season_autumn", "fg": 2015, "bg": 2027 }, - { "id": "t_tree_cherry_season_winter", "fg": 2023, "bg": 2030 }, - { "id": "t_tree_cherry_harvested_season_spring", "fg": 2015, "bg": 2028 }, - { "id": "t_tree_cherry_harvested_season_summer", "fg": 2015, "bg": 2029 }, - { "id": "t_tree_cherry_harvested_season_autumn", "fg": 2015, "bg": 2027 }, - { "id": "t_tree_cherry_harvested_season_winter", "fg": 2023, "bg": 2030 }, - { "id": "t_tree_dead_season_spring", "fg": 1844, "bg": 2028 }, - { "id": "t_tree_dead_season_summer", "fg": 1844, "bg": 2029 }, - { "id": "t_tree_dead_season_autumn", "fg": 1844, "bg": 2027 }, - { "id": "t_tree_dead_season_winter", "fg": 1844, "bg": 2030 }, - { "id": "t_tree_deadpine_season_spring", "fg": 1770, "bg": 2028 }, - { "id": "t_tree_deadpine_season_summer", "fg": 1770, "bg": 2029 }, - { "id": "t_tree_deadpine_season_autumn", "fg": 1770, "bg": 2027 }, - { "id": "t_tree_deadpine_season_winter", "fg": 1770, "bg": 2030 }, - { "id": "t_tree_fungal_season_spring", "fg": 1704, "bg": 2028 }, - { "id": "t_tree_fungal_season_summer", "fg": 1704, "bg": 2029 }, - { "id": "t_tree_fungal_season_autumn", "fg": 1704, "bg": 2027 }, - { "id": "t_tree_fungal_season_winter", "fg": 1704, "bg": 2030 }, - { "id": "t_tree_fungal_young_season_spring", "fg": 1913, "bg": 2028 }, - { "id": "t_tree_fungal_young_season_summer", "fg": 1913, "bg": 2029 }, - { "id": "t_tree_fungal_young_season_autumn", "fg": 1913, "bg": 2027 }, - { "id": "t_tree_fungal_young_season_winter", "fg": 1913, "bg": 2030 }, - { "id": "t_tree_fungal_young_harvested_season_spring", "fg": 1913, "bg": 2028 }, - { "id": "t_tree_fungal_young_harvested_season_summer", "fg": 1913, "bg": 2029 }, - { "id": "t_tree_fungal_young_harvested_season_autumn", "fg": 1913, "bg": 2029 }, - { "id": "t_tree_fungal_young_harvested_season_winter", "fg": 1913, "bg": 2030 }, - { "id": "t_tree_hickory_season_spring", "fg": 1847, "bg": 2028 }, - { "id": "t_tree_hickory_season_summer", "fg": 1847, "bg": 2029 }, - { "id": "t_tree_hickory_season_autumn", "fg": 1847, "bg": 2027 }, - { "id": "t_tree_hickory_season_winter", "fg": 1847, "bg": 2030 }, - { "id": "t_tree_hickory_harvested_season_spring", "fg": 1847, "bg": 2028 }, - { "id": "t_tree_hickory_harvested_season_summer", "fg": 1847, "bg": 2029 }, - { "id": "t_tree_hickory_harvested_season_autumn", "fg": 1847, "bg": 2027 }, - { "id": "t_tree_hickory_harvested_season_winter", "fg": 1847, "bg": 2030 }, - { "id": "t_tree_hickory_dead_season_spring", "fg": 1849, "bg": 2028 }, - { "id": "t_tree_hickory_dead_season_summer", "fg": 1849, "bg": 2029 }, - { "id": "t_tree_hickory_dead_season_autumn", "fg": 1849, "bg": 2027 }, - { "id": "t_tree_hickory_dead_season_winter", "fg": 1849, "bg": 2030 }, - { "id": [ "t_tree_maple_season_spring", "t_tree_maple_tapped_season_spring" ], "fg": 1848, "bg": 2028 }, - { "id": [ "t_tree_maple_season_summer", "t_tree_maple_tapped_season_summer" ], "fg": 1848, "bg": 2029 }, - { "id": [ "t_tree_maple_season_autumn", "t_tree_maple_tapped_season_autumn" ], "fg": 1848, "bg": 2027 }, - { "id": [ "t_tree_maple_season_winter", "t_tree_maple_tapped_season_winter" ], "fg": 1848, "bg": 2030 }, - { "id": "t_tree_peach_season_spring", "fg": 2015, "bg": 2028 }, - { "id": "t_tree_peach_season_summer", "fg": 2020, "bg": 2029 }, - { "id": "t_tree_peach_season_autumn", "fg": 2015, "bg": 2027 }, - { "id": "t_tree_peach_season_winter", "fg": 2023, "bg": 2030 }, - { "id": "t_tree_peach_harvested_season_spring", "fg": 2015, "bg": 2028 }, - { "id": "t_tree_peach_harvested_season_summer", "fg": 2015, "bg": 2029 }, - { "id": "t_tree_peach_harvested_season_autumn", "fg": 2015, "bg": 2027 }, - { "id": "t_tree_peach_harvested_season_winter", "fg": 2023, "bg": 2030 }, - { "id": "t_tree_pear_season_spring", "fg": 2015, "bg": 2028 }, - { "id": "t_tree_pear_season_summer", "fg": 2015, "bg": 2029 }, - { "id": "t_tree_pear_season_autumn", "fg": 2021, "bg": 2027 }, - { "id": "t_tree_pear_season_winter", "fg": 2023, "bg": 2030 }, - { "id": "t_tree_pear_harvested_season_spring", "fg": 2015, "bg": 2028 }, - { "id": "t_tree_pear_harvested_season_summer", "fg": 2015, "bg": 2029 }, - { "id": "t_tree_pear_harvested_season_autumn", "fg": 2015, "bg": 2027 }, - { "id": "t_tree_pear_harvested_season_winter", "fg": 2015, "bg": 2030 }, - { "id": "t_tree_pine_season_spring", "fg": 1769, "bg": 2028 }, - { "id": "t_tree_pine_season_summer", "fg": 1769, "bg": 2029 }, - { "id": "t_tree_pine_season_autumn", "fg": 1769, "bg": 2027 }, - { "id": "t_tree_pine_season_winter", "fg": 1769, "bg": 2030 }, - { "id": "t_tree_pine_harvested_season_spring", "fg": 1769, "bg": 2028 }, - { "id": "t_tree_pine_harvested_season_summer", "fg": 1769, "bg": 2029 }, - { "id": "t_tree_pine_harvested_season_autumn", "fg": 1769, "bg": 2027 }, - { "id": "t_tree_pine_harvested_season_winter", "fg": 1769, "bg": 2030 }, - { "id": "t_tree_plum_season_spring", "fg": 2018, "bg": 2028 }, - { "id": "t_tree_plum_season_summer", "fg": 2022, "bg": 2029 }, - { "id": "t_tree_plum_season_autumn", "fg": 2015, "bg": 2027 }, - { "id": "t_tree_plum_season_winter", "fg": 2023, "bg": 2030 }, - { "id": "t_tree_plum_harvested_season_spring", "fg": 2015, "bg": 2028 }, - { "id": "t_tree_plum_harvested_season_summer", "fg": 2015, "bg": 2029 }, - { "id": "t_tree_plum_harvested_season_autumn", "fg": 2015, "bg": 2027 }, - { "id": "t_tree_plum_harvested_season_winter", "fg": 2023, "bg": 2030 }, - { "id": "t_tree_willow_season_spring", "fg": 1846, "bg": 2028 }, - { "id": "t_tree_willow_season_summer", "fg": 1846, "bg": 2029 }, - { "id": "t_tree_willow_season_autumn", "fg": 1846, "bg": 2027 }, - { "id": "t_tree_willow_season_winter", "fg": 1846, "bg": 2030 }, - { "id": "t_tree_willow_harvested_season_spring", "fg": 1846, "bg": 2028 }, - { "id": "t_tree_willow_harvested_season_summer", "fg": 1846, "bg": 2029 }, - { "id": "t_tree_willow_harvested_season_autumn", "fg": 1846, "bg": 2027 }, - { "id": "t_tree_willow_harvested_season_winter", "fg": 1846, "bg": 2030 }, - { "id": "t_tree_young_season_spring", "fg": 2012, "bg": 2028 }, - { "id": "t_tree_young_season_summer", "fg": 2012, "bg": 2029 }, - { "id": "t_tree_young_season_autumn", "fg": 1806, "bg": 2027 }, - { "id": "t_tree_young_season_winter", "fg": 1807, "bg": 2030 }, - { "id": "t_tree_young_harvested_season_spring", "fg": 2012, "bg": 2028 }, - { "id": "t_tree_young_harvested_season_summer", "fg": 2012, "bg": 2029 }, - { "id": "t_tree_young_harvested_season_autumn", "fg": 1806, "bg": 2027 }, - { "id": "t_tree_young_harvested_season_winter", "fg": 1807, "bg": 2030 }, - { "id": "t_trunk", "fg": 1864, "rotates": false }, - { "id": "t_underbrush_season_spring", "fg": 1865, "bg": 2111 }, - { "id": "t_underbrush_season_summer", "fg": 1865, "bg": 2117 }, - { "id": "t_underbrush_season_autumn", "fg": 1865, "bg": 2112 }, - { "id": "t_underbrush_season_winter", "fg": 1865, "bg": 2125 }, - { "id": "t_underbrush_harvested_spring", "fg": 1816, "bg": 2111 }, - { "id": "t_underbrush_harvested_summer", "fg": 1816, "bg": 2117 }, - { "id": "t_underbrush_harvested_autumn", "fg": 1816, "bg": 2112 }, - { "id": "t_underbrush_harvested_winter", "fg": 1816, "bg": 2125 }, - { "id": "t_utility_light", "bg": 1767, "rotates": false }, - { "id": "t_vat", "fg": 1861, "rotates": false }, + { "id": "t_strconc_wall_halfway", "fg": 1768, "rotates": false }, + { "id": "t_support_l", "fg": 1933, "rotates": false }, + { "id": "t_supports_s_season_spring", "fg": 1912, "rotates": false, "bg": 2077 }, + { "id": "t_supports_s_season_summer", "fg": 1912, "rotates": false, "bg": 2079 }, + { "id": "t_supports_s_season_autumn", "fg": 1912, "rotates": false, "bg": 2078 }, + { "id": "t_supports_s_season_winter", "fg": 1912, "rotates": false, "bg": 2080 }, + { "id": "t_swater_dp", "fg": 1896, "rotates": false }, + { "id": "t_swater_sh", "fg": 1895, "rotates": false }, + { "id": "t_switch_even", "fg": 1725, "rotates": false }, + { "id": "t_switch_gb", "fg": 1723, "rotates": false }, + { "id": "t_switch_rb", "fg": 1724, "rotates": false }, + { "id": "t_switch_rg", "fg": 2020, "rotates": false }, + { "id": "t_switchgear_l", "fg": 1824, "rotates": false }, + { "id": "t_switchgear_s", "fg": 1824, "rotates": false }, + { "id": "t_thconc_floor", "bg": 1715, "rotates": false }, + { "id": "t_tree_season_spring", "fg": 2026, "bg": 2039 }, + { "id": "t_tree_season_summer", "fg": 2026, "bg": 2040 }, + { "id": "t_tree_season_autumn", "fg": 2026, "bg": 2038 }, + { "id": "t_tree_season_winter", "fg": 2034, "bg": 2041 }, + { "id": "t_tree_harvested_season_spring", "fg": 2026, "bg": 2039 }, + { "id": "t_tree_harvested_season_summer", "fg": 2026, "bg": 2040 }, + { "id": "t_tree_harvested_season_autumn", "fg": 2026, "bg": 2038 }, + { "id": "t_tree_harvested_season_winter", "fg": 2034, "bg": 2041 }, + { "id": "t_tree_apple_season_spring", "fg": 2026, "bg": 2039 }, + { "id": "t_tree_apple_season_summer", "fg": 2026, "bg": 2040 }, + { "id": "t_tree_apple_season_autumn", "fg": 2027, "bg": 2038 }, + { "id": "t_tree_apple_season_winter", "fg": 2034, "bg": 2041 }, + { "id": "t_tree_apple_harvested_season_spring", "fg": 2026, "bg": 2039 }, + { "id": "t_tree_apple_harvested_season_summer", "fg": 2026, "bg": 2040 }, + { "id": "t_tree_apple_harvested_season_autumn", "fg": 2026, "bg": 2038 }, + { "id": "t_tree_apple_harvested_season_winter", "fg": 2026, "bg": 2041 }, + { "id": "t_tree_apricot_season_spring", "fg": 2026, "bg": 2039 }, + { "id": "t_tree_apricot_season_summer", "fg": 2028, "bg": 2040 }, + { "id": "t_tree_apricot_season_autumn", "fg": 2026, "bg": 2038 }, + { "id": "t_tree_apricot_season_winter", "fg": 2034, "bg": 2041 }, + { "id": "t_tree_apricot_harvested_season_spring", "fg": 2026, "bg": 2039 }, + { "id": "t_tree_apricot_harvested_season_summer", "fg": 2026, "bg": 2040 }, + { "id": "t_tree_apricot_harvested_season_autumn", "fg": 2026, "bg": 2038 }, + { "id": "t_tree_apricot_harvested_season_winter", "fg": 2034, "bg": 2041 }, + { "id": "t_tree_birch_season_spring", "fg": 1855, "bg": 2039 }, + { "id": "t_tree_birch_season_summer", "fg": 1855, "bg": 2040 }, + { "id": "t_tree_birch_season_autumn", "fg": 1855, "bg": 2038 }, + { "id": "t_tree_birch_season_winter", "fg": 1855, "bg": 2041 }, + { "id": "t_tree_birch_harvested_season_spring", "fg": 1855, "bg": 2039 }, + { "id": "t_tree_birch_harvested_season_summer", "fg": 1855, "bg": 2040 }, + { "id": "t_tree_birch_harvested_season_autumn", "fg": 1855, "bg": 2038 }, + { "id": "t_tree_birch_harvested_season_winter", "fg": 1855, "bg": 2041 }, + { "id": "t_tree_blackjack_season_spring", "fg": 1815, "bg": 2039 }, + { "id": "t_tree_blackjack_season_summer", "fg": 1815, "bg": 2040 }, + { "id": "t_tree_blackjack_season_autumn", "fg": 1815, "bg": 2038 }, + { "id": "t_tree_blackjack_season_winter", "fg": 1815, "bg": 2041 }, + { "id": "t_tree_blackjack_harvested_season_spring", "fg": 1815, "bg": 2039 }, + { "id": "t_tree_blackjack_harvested_season_summer", "fg": 1815, "bg": 2040 }, + { "id": "t_tree_blackjack_harvested_season_autumn", "fg": 1815, "bg": 2040 }, + { "id": "t_tree_blackjack_harvested_season_winter", "fg": 1815, "bg": 2041 }, + { "id": "t_tree_cherry_season_spring", "fg": 2029, "bg": 2039 }, + { "id": "t_tree_cherry_season_summer", "fg": 2030, "bg": 2040 }, + { "id": "t_tree_cherry_season_autumn", "fg": 2026, "bg": 2038 }, + { "id": "t_tree_cherry_season_winter", "fg": 2034, "bg": 2041 }, + { "id": "t_tree_cherry_harvested_season_spring", "fg": 2026, "bg": 2039 }, + { "id": "t_tree_cherry_harvested_season_summer", "fg": 2026, "bg": 2040 }, + { "id": "t_tree_cherry_harvested_season_autumn", "fg": 2026, "bg": 2038 }, + { "id": "t_tree_cherry_harvested_season_winter", "fg": 2034, "bg": 2041 }, + { "id": "t_tree_dead_season_spring", "fg": 1854, "bg": 2039 }, + { "id": "t_tree_dead_season_summer", "fg": 1854, "bg": 2040 }, + { "id": "t_tree_dead_season_autumn", "fg": 1854, "bg": 2038 }, + { "id": "t_tree_dead_season_winter", "fg": 1854, "bg": 2041 }, + { "id": "t_tree_deadpine_season_spring", "fg": 1780, "bg": 2039 }, + { "id": "t_tree_deadpine_season_summer", "fg": 1780, "bg": 2040 }, + { "id": "t_tree_deadpine_season_autumn", "fg": 1780, "bg": 2038 }, + { "id": "t_tree_deadpine_season_winter", "fg": 1780, "bg": 2041 }, + { "id": "t_tree_fungal_season_spring", "fg": 1714, "bg": 2039 }, + { "id": "t_tree_fungal_season_summer", "fg": 1714, "bg": 2040 }, + { "id": "t_tree_fungal_season_autumn", "fg": 1714, "bg": 2038 }, + { "id": "t_tree_fungal_season_winter", "fg": 1714, "bg": 2041 }, + { "id": "t_tree_fungal_young_season_spring", "fg": 1923, "bg": 2039 }, + { "id": "t_tree_fungal_young_season_summer", "fg": 1923, "bg": 2040 }, + { "id": "t_tree_fungal_young_season_autumn", "fg": 1923, "bg": 2038 }, + { "id": "t_tree_fungal_young_season_winter", "fg": 1923, "bg": 2041 }, + { "id": "t_tree_fungal_young_harvested_season_spring", "fg": 1923, "bg": 2039 }, + { "id": "t_tree_fungal_young_harvested_season_summer", "fg": 1923, "bg": 2040 }, + { "id": "t_tree_fungal_young_harvested_season_autumn", "fg": 1923, "bg": 2040 }, + { "id": "t_tree_fungal_young_harvested_season_winter", "fg": 1923, "bg": 2041 }, + { "id": "t_tree_hickory_season_spring", "fg": 1857, "bg": 2039 }, + { "id": "t_tree_hickory_season_summer", "fg": 1857, "bg": 2040 }, + { "id": "t_tree_hickory_season_autumn", "fg": 1857, "bg": 2038 }, + { "id": "t_tree_hickory_season_winter", "fg": 1857, "bg": 2041 }, + { "id": "t_tree_hickory_harvested_season_spring", "fg": 1857, "bg": 2039 }, + { "id": "t_tree_hickory_harvested_season_summer", "fg": 1857, "bg": 2040 }, + { "id": "t_tree_hickory_harvested_season_autumn", "fg": 1857, "bg": 2038 }, + { "id": "t_tree_hickory_harvested_season_winter", "fg": 1857, "bg": 2041 }, + { "id": "t_tree_hickory_dead_season_spring", "fg": 1859, "bg": 2039 }, + { "id": "t_tree_hickory_dead_season_summer", "fg": 1859, "bg": 2040 }, + { "id": "t_tree_hickory_dead_season_autumn", "fg": 1859, "bg": 2038 }, + { "id": "t_tree_hickory_dead_season_winter", "fg": 1859, "bg": 2041 }, + { "id": [ "t_tree_maple_season_spring", "t_tree_maple_tapped_season_spring" ], "fg": 1858, "bg": 2039 }, + { "id": [ "t_tree_maple_season_summer", "t_tree_maple_tapped_season_summer" ], "fg": 1858, "bg": 2040 }, + { "id": [ "t_tree_maple_season_autumn", "t_tree_maple_tapped_season_autumn" ], "fg": 1858, "bg": 2038 }, + { "id": [ "t_tree_maple_season_winter", "t_tree_maple_tapped_season_winter" ], "fg": 1858, "bg": 2041 }, + { "id": "t_tree_peach_season_spring", "fg": 2026, "bg": 2039 }, + { "id": "t_tree_peach_season_summer", "fg": 2031, "bg": 2040 }, + { "id": "t_tree_peach_season_autumn", "fg": 2026, "bg": 2038 }, + { "id": "t_tree_peach_season_winter", "fg": 2034, "bg": 2041 }, + { "id": "t_tree_peach_harvested_season_spring", "fg": 2026, "bg": 2039 }, + { "id": "t_tree_peach_harvested_season_summer", "fg": 2026, "bg": 2040 }, + { "id": "t_tree_peach_harvested_season_autumn", "fg": 2026, "bg": 2038 }, + { "id": "t_tree_peach_harvested_season_winter", "fg": 2034, "bg": 2041 }, + { "id": "t_tree_pear_season_spring", "fg": 2026, "bg": 2039 }, + { "id": "t_tree_pear_season_summer", "fg": 2026, "bg": 2040 }, + { "id": "t_tree_pear_season_autumn", "fg": 2032, "bg": 2038 }, + { "id": "t_tree_pear_season_winter", "fg": 2034, "bg": 2041 }, + { "id": "t_tree_pear_harvested_season_spring", "fg": 2026, "bg": 2039 }, + { "id": "t_tree_pear_harvested_season_summer", "fg": 2026, "bg": 2040 }, + { "id": "t_tree_pear_harvested_season_autumn", "fg": 2026, "bg": 2038 }, + { "id": "t_tree_pear_harvested_season_winter", "fg": 2026, "bg": 2041 }, + { "id": "t_tree_pine_season_spring", "fg": 1779, "bg": 2039 }, + { "id": "t_tree_pine_season_summer", "fg": 1779, "bg": 2040 }, + { "id": "t_tree_pine_season_autumn", "fg": 1779, "bg": 2038 }, + { "id": "t_tree_pine_season_winter", "fg": 1779, "bg": 2041 }, + { "id": "t_tree_pine_harvested_season_spring", "fg": 1779, "bg": 2039 }, + { "id": "t_tree_pine_harvested_season_summer", "fg": 1779, "bg": 2040 }, + { "id": "t_tree_pine_harvested_season_autumn", "fg": 1779, "bg": 2038 }, + { "id": "t_tree_pine_harvested_season_winter", "fg": 1779, "bg": 2041 }, + { "id": "t_tree_plum_season_spring", "fg": 2029, "bg": 2039 }, + { "id": "t_tree_plum_season_summer", "fg": 2033, "bg": 2040 }, + { "id": "t_tree_plum_season_autumn", "fg": 2026, "bg": 2038 }, + { "id": "t_tree_plum_season_winter", "fg": 2034, "bg": 2041 }, + { "id": "t_tree_plum_harvested_season_spring", "fg": 2026, "bg": 2039 }, + { "id": "t_tree_plum_harvested_season_summer", "fg": 2026, "bg": 2040 }, + { "id": "t_tree_plum_harvested_season_autumn", "fg": 2026, "bg": 2038 }, + { "id": "t_tree_plum_harvested_season_winter", "fg": 2034, "bg": 2041 }, + { "id": "t_tree_willow_season_spring", "fg": 1856, "bg": 2039 }, + { "id": "t_tree_willow_season_summer", "fg": 1856, "bg": 2040 }, + { "id": "t_tree_willow_season_autumn", "fg": 1856, "bg": 2038 }, + { "id": "t_tree_willow_season_winter", "fg": 1856, "bg": 2041 }, + { "id": "t_tree_willow_harvested_season_spring", "fg": 1856, "bg": 2039 }, + { "id": "t_tree_willow_harvested_season_summer", "fg": 1856, "bg": 2040 }, + { "id": "t_tree_willow_harvested_season_autumn", "fg": 1856, "bg": 2038 }, + { "id": "t_tree_willow_harvested_season_winter", "fg": 1856, "bg": 2041 }, + { "id": "t_tree_young_season_spring", "fg": 2022, "bg": 2039 }, + { "id": "t_tree_young_season_summer", "fg": 2022, "bg": 2040 }, + { "id": "t_tree_young_season_autumn", "fg": 1816, "bg": 2038 }, + { "id": "t_tree_young_season_winter", "fg": 1817, "bg": 2041 }, + { "id": "t_tree_young_harvested_season_spring", "fg": 2022, "bg": 2039 }, + { "id": "t_tree_young_harvested_season_summer", "fg": 2022, "bg": 2040 }, + { "id": "t_tree_young_harvested_season_autumn", "fg": 1816, "bg": 2038 }, + { "id": "t_tree_young_harvested_season_winter", "fg": 1817, "bg": 2041 }, + { "id": "t_trunk", "fg": 1874, "rotates": false }, + { "id": "t_underbrush_season_spring", "fg": 1875, "bg": 2122 }, + { "id": "t_underbrush_season_summer", "fg": 1875, "bg": 2128 }, + { "id": "t_underbrush_season_autumn", "fg": 1875, "bg": 2123 }, + { "id": "t_underbrush_season_winter", "fg": 1875, "bg": 2136 }, + { "id": "t_underbrush_harvested_spring", "fg": 1826, "bg": 2122 }, + { "id": "t_underbrush_harvested_summer", "fg": 1826, "bg": 2128 }, + { "id": "t_underbrush_harvested_autumn", "fg": 1826, "bg": 2123 }, + { "id": "t_underbrush_harvested_winter", "fg": 1826, "bg": 2136 }, + { "id": "t_utility_light", "bg": 1777, "rotates": false }, + { "id": "t_vat", "fg": 1871, "rotates": false }, { "id": "t_wall", - "fg": 2000, - "bg": 1863, + "fg": 2010, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2000 }, - { "id": "corner", "fg": 1883 }, - { "id": "edge", "fg": 2000 }, - { "id": "t_connection", "fg": 1884 }, - { "id": "end_piece", "fg": 2000 }, - { "id": "unconnected", "fg": 2000 } + { "id": "center", "fg": 2010 }, + { "id": "corner", "fg": 1893 }, + { "id": "edge", "fg": 2010 }, + { "id": "t_connection", "fg": 1894 }, + { "id": "end_piece", "fg": 2010 }, + { "id": "unconnected", "fg": 2010 } ], "rotates": false }, { "id": "t_wall_b", - "fg": 1744, - "bg": 1863, + "fg": 1754, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1744 }, - { "id": "corner", "fg": 1745 }, - { "id": "edge", "fg": 1744 }, - { "id": "t_connection", "fg": 1746 }, - { "id": "end_piece", "fg": 1744 }, - { "id": "unconnected", "fg": 1744 } + { "id": "center", "fg": 1754 }, + { "id": "corner", "fg": 1755 }, + { "id": "edge", "fg": 1754 }, + { "id": "t_connection", "fg": 1756 }, + { "id": "end_piece", "fg": 1754 }, + { "id": "unconnected", "fg": 1754 } ], "rotates": false }, { "id": "t_wall_g", - "fg": 1747, - "bg": 1863, + "fg": 1757, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1747 }, - { "id": "corner", "fg": 1748 }, - { "id": "edge", "fg": 1747 }, - { "id": "t_connection", "fg": 1749 }, - { "id": "end_piece", "fg": 1747 }, - { "id": "unconnected", "fg": 1747 } + { "id": "center", "fg": 1757 }, + { "id": "corner", "fg": 1758 }, + { "id": "edge", "fg": 1757 }, + { "id": "t_connection", "fg": 1759 }, + { "id": "end_piece", "fg": 1757 }, + { "id": "unconnected", "fg": 1757 } ], "rotates": false }, { "id": "t_wall_glass", - "fg": 1898, + "fg": 1908, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1898 }, - { "id": "corner", "fg": 1899 }, - { "id": "edge", "fg": 1898 }, - { "id": "t_connection", "fg": 1706 }, - { "id": "end_piece", "fg": 1898 }, - { "id": "unconnected", "fg": 1898 } + { "id": "center", "fg": 1908 }, + { "id": "corner", "fg": 1909 }, + { "id": "edge", "fg": 1908 }, + { "id": "t_connection", "fg": 1716 }, + { "id": "end_piece", "fg": 1908 }, + { "id": "unconnected", "fg": 1908 } ], "rotates": false }, { "id": "t_wall_glass_alarm", - "fg": 1893, - "bg": 1973, + "fg": 1903, + "bg": 1983, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1893 }, - { "id": "corner", "fg": 1891 }, - { "id": "edge", "fg": 1893 }, - { "id": "t_connection", "fg": 1892 }, - { "id": "end_piece", "fg": 1893 }, - { "id": "unconnected", "fg": 1893 } + { "id": "center", "fg": 1903 }, + { "id": "corner", "fg": 1901 }, + { "id": "edge", "fg": 1903 }, + { "id": "t_connection", "fg": 1902 }, + { "id": "end_piece", "fg": 1903 }, + { "id": "unconnected", "fg": 1903 } ], "rotates": false }, { "id": "t_wall_glass_h", - "fg": 1898, + "fg": 1908, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1898 }, - { "id": "corner", "fg": 1899 }, - { "id": "edge", "fg": 1898 }, - { "id": "t_connection", "fg": 1706 }, - { "id": "end_piece", "fg": 1898 }, - { "id": "unconnected", "fg": 1898 } + { "id": "center", "fg": 1908 }, + { "id": "corner", "fg": 1909 }, + { "id": "edge", "fg": 1908 }, + { "id": "t_connection", "fg": 1716 }, + { "id": "end_piece", "fg": 1908 }, + { "id": "unconnected", "fg": 1908 } ], "rotates": false }, { "id": "t_wall_glass_h_alarm", - "fg": 1893, - "bg": 1973, + "fg": 1903, + "bg": 1983, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1893 }, - { "id": "corner", "fg": 1891 }, - { "id": "edge", "fg": 1893 }, - { "id": "t_connection", "fg": 1892 }, - { "id": "end_piece", "fg": 1893 }, - { "id": "unconnected", "fg": 1893 } + { "id": "center", "fg": 1903 }, + { "id": "corner", "fg": 1901 }, + { "id": "edge", "fg": 1903 }, + { "id": "t_connection", "fg": 1902 }, + { "id": "end_piece", "fg": 1903 }, + { "id": "unconnected", "fg": 1903 } ], "rotates": false }, { "id": "t_wall_glass_v", - "fg": 1898, + "fg": 1908, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1898 }, - { "id": "corner", "fg": 1899 }, - { "id": "edge", "fg": 1898 }, - { "id": "t_connection", "fg": 1706 }, - { "id": "end_piece", "fg": 1898 }, - { "id": "unconnected", "fg": 1898 } + { "id": "center", "fg": 1908 }, + { "id": "corner", "fg": 1909 }, + { "id": "edge", "fg": 1908 }, + { "id": "t_connection", "fg": 1716 }, + { "id": "end_piece", "fg": 1908 }, + { "id": "unconnected", "fg": 1908 } ], "rotates": false }, { "id": "t_wall_glass_v_alarm", - "fg": 1893, - "bg": 1973, + "fg": 1903, + "bg": 1983, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1893 }, - { "id": "corner", "fg": 1891 }, - { "id": "edge", "fg": 1893 }, - { "id": "t_connection", "fg": 1892 }, - { "id": "end_piece", "fg": 1893 }, - { "id": "unconnected", "fg": 1893 } + { "id": "center", "fg": 1903 }, + { "id": "corner", "fg": 1901 }, + { "id": "edge", "fg": 1903 }, + { "id": "t_connection", "fg": 1902 }, + { "id": "end_piece", "fg": 1903 }, + { "id": "unconnected", "fg": 1903 } ], "rotates": false }, { "id": "t_wall_h", - "fg": 2000, - "bg": 1863, + "fg": 2010, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2000 }, - { "id": "corner", "fg": 1883 }, - { "id": "edge", "fg": 2000 }, - { "id": "t_connection", "fg": 1884 }, - { "id": "end_piece", "fg": 2000 }, - { "id": "unconnected", "fg": 2000 } + { "id": "center", "fg": 2010 }, + { "id": "corner", "fg": 1893 }, + { "id": "edge", "fg": 2010 }, + { "id": "t_connection", "fg": 1894 }, + { "id": "end_piece", "fg": 2010 }, + { "id": "unconnected", "fg": 2010 } ], "rotates": false }, { "id": "t_wall_h_b", - "fg": 1744, - "bg": 1863, + "fg": 1754, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1744 }, - { "id": "corner", "fg": 1745 }, - { "id": "edge", "fg": 1744 }, - { "id": "t_connection", "fg": 1746 }, - { "id": "end_piece", "fg": 1744 }, - { "id": "unconnected", "fg": 1744 } + { "id": "center", "fg": 1754 }, + { "id": "corner", "fg": 1755 }, + { "id": "edge", "fg": 1754 }, + { "id": "t_connection", "fg": 1756 }, + { "id": "end_piece", "fg": 1754 }, + { "id": "unconnected", "fg": 1754 } ], "rotates": false }, { "id": "t_wall_h_g", - "fg": 1747, - "bg": 1863, + "fg": 1757, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1747 }, - { "id": "corner", "fg": 1748 }, - { "id": "edge", "fg": 1747 }, - { "id": "t_connection", "fg": 1749 }, - { "id": "end_piece", "fg": 1747 }, - { "id": "unconnected", "fg": 1747 } + { "id": "center", "fg": 1757 }, + { "id": "corner", "fg": 1758 }, + { "id": "edge", "fg": 1757 }, + { "id": "t_connection", "fg": 1759 }, + { "id": "end_piece", "fg": 1757 }, + { "id": "unconnected", "fg": 1757 } ], "rotates": false }, { "id": "t_wall_h_p", - "fg": 1753, - "bg": 1863, + "fg": 1763, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1753 }, - { "id": "corner", "fg": 1754 }, - { "id": "edge", "fg": 1753 }, - { "id": "t_connection", "fg": 1755 }, - { "id": "end_piece", "fg": 1753 }, - { "id": "unconnected", "fg": 1753 } + { "id": "center", "fg": 1763 }, + { "id": "corner", "fg": 1764 }, + { "id": "edge", "fg": 1763 }, + { "id": "t_connection", "fg": 1765 }, + { "id": "end_piece", "fg": 1763 }, + { "id": "unconnected", "fg": 1763 } ], "rotates": false }, { "id": "t_wall_h_r", - "fg": 1741, - "bg": 1863, + "fg": 1751, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1741 }, - { "id": "corner", "fg": 1742 }, - { "id": "edge", "fg": 1741 }, - { "id": "t_connection", "fg": 1743 }, - { "id": "end_piece", "fg": 1741 }, - { "id": "unconnected", "fg": 1741 } + { "id": "center", "fg": 1751 }, + { "id": "corner", "fg": 1752 }, + { "id": "edge", "fg": 1751 }, + { "id": "t_connection", "fg": 1753 }, + { "id": "end_piece", "fg": 1751 }, + { "id": "unconnected", "fg": 1751 } ], "rotates": false }, { "id": "t_wall_h_w", - "fg": 2000, - "bg": 1863, + "fg": 2010, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2000 }, - { "id": "corner", "fg": 1883 }, - { "id": "edge", "fg": 2000 }, - { "id": "t_connection", "fg": 1884 }, - { "id": "end_piece", "fg": 2000 }, - { "id": "unconnected", "fg": 2000 } + { "id": "center", "fg": 2010 }, + { "id": "corner", "fg": 1893 }, + { "id": "edge", "fg": 2010 }, + { "id": "t_connection", "fg": 1894 }, + { "id": "end_piece", "fg": 2010 }, + { "id": "unconnected", "fg": 2010 } ], "rotates": false }, { "id": "t_wall_h_y", - "fg": 1750, - "bg": 1863, + "fg": 1760, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1750 }, - { "id": "corner", "fg": 1751 }, - { "id": "edge", "fg": 1750 }, - { "id": "t_connection", "fg": 1752 }, - { "id": "end_piece", "fg": 1750 }, - { "id": "unconnected", "fg": 1750 } + { "id": "center", "fg": 1760 }, + { "id": "corner", "fg": 1761 }, + { "id": "edge", "fg": 1760 }, + { "id": "t_connection", "fg": 1762 }, + { "id": "end_piece", "fg": 1760 }, + { "id": "unconnected", "fg": 1760 } ], "rotates": false }, - { "id": "t_wall_half", "fg": 1992, "rotates": false }, + { "id": "t_wall_half", "fg": 2002, "rotates": false }, { "id": "t_wall_log", - "fg": 1993, + "fg": 2003, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1818 }, - { "id": "corner", "fg": 1819 }, - { "id": "edge", "fg": 1820 }, - { "id": "t_connection", "fg": 1821 }, - { "id": "end_piece", "fg": 1822 }, - { "id": "unconnected", "fg": 1993 } + { "id": "center", "fg": 1828 }, + { "id": "corner", "fg": 1829 }, + { "id": "edge", "fg": 1830 }, + { "id": "t_connection", "fg": 1831 }, + { "id": "end_piece", "fg": 1832 }, + { "id": "unconnected", "fg": 2003 } ], "rotates": false }, - { "id": "t_wall_log_broken", "fg": 1995, "bg": 2066, "rotates": false }, - { "id": "t_wall_log_chipped", "fg": 1994, "bg": 2066, "rotates": false }, - { "id": "t_wall_log_half", "fg": 1992, "bg": 2066, "rotates": false }, + { "id": "t_wall_log_broken", "fg": 2005, "bg": 2077, "rotates": false }, + { "id": "t_wall_log_chipped", "fg": 2004, "bg": 2077, "rotates": false }, + { "id": "t_wall_log_half", "fg": 2002, "bg": 2077, "rotates": false }, { "id": "t_wall_metal", - "fg": 1890, - "bg": 2066, + "fg": 1900, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1834 }, - { "id": "corner", "fg": 1830 }, - { "id": "edge", "fg": 1832 }, - { "id": "t_connection", "fg": 1831 }, - { "id": "end_piece", "fg": 1833 }, - { "id": "unconnected", "fg": 1829 } + { "id": "center", "fg": 1844 }, + { "id": "corner", "fg": 1840 }, + { "id": "edge", "fg": 1842 }, + { "id": "t_connection", "fg": 1841 }, + { "id": "end_piece", "fg": 1843 }, + { "id": "unconnected", "fg": 1839 } ], "rotates": false }, { "id": "t_wall_metal_h", - "fg": 1890, - "bg": 2066, + "fg": 1900, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1890 }, - { "id": "corner", "fg": 1888 }, - { "id": "edge", "fg": 1890 }, - { "id": "t_connection", "fg": 1889 }, - { "id": "end_piece", "fg": 1890 }, - { "id": "unconnected", "fg": 1890 } + { "id": "center", "fg": 1900 }, + { "id": "corner", "fg": 1898 }, + { "id": "edge", "fg": 1900 }, + { "id": "t_connection", "fg": 1899 }, + { "id": "end_piece", "fg": 1900 }, + { "id": "unconnected", "fg": 1900 } ], "rotates": false }, { "id": "t_wall_metal_v", - "fg": 1890, - "bg": 2066, + "fg": 1900, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1890 }, - { "id": "corner", "fg": 1888 }, - { "id": "edge", "fg": 1890 }, - { "id": "t_connection", "fg": 1889 }, - { "id": "end_piece", "fg": 1890 }, - { "id": "unconnected", "fg": 1890 } + { "id": "center", "fg": 1900 }, + { "id": "corner", "fg": 1898 }, + { "id": "edge", "fg": 1900 }, + { "id": "t_connection", "fg": 1899 }, + { "id": "end_piece", "fg": 1900 }, + { "id": "unconnected", "fg": 1900 } ], "rotates": false }, { "id": "t_wall_p", - "fg": 1753, - "bg": 1863, + "fg": 1763, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1753 }, - { "id": "corner", "fg": 1754 }, - { "id": "edge", "fg": 1753 }, - { "id": "t_connection", "fg": 1755 }, - { "id": "end_piece", "fg": 1753 }, - { "id": "unconnected", "fg": 1753 } + { "id": "center", "fg": 1763 }, + { "id": "corner", "fg": 1764 }, + { "id": "edge", "fg": 1763 }, + { "id": "t_connection", "fg": 1765 }, + { "id": "end_piece", "fg": 1763 }, + { "id": "unconnected", "fg": 1763 } ], "rotates": false }, { "id": "t_wall_r", - "fg": 1741, - "bg": 1863, + "fg": 1751, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1741 }, - { "id": "corner", "fg": 1742 }, - { "id": "edge", "fg": 1741 }, - { "id": "t_connection", "fg": 1743 }, - { "id": "end_piece", "fg": 1741 }, - { "id": "unconnected", "fg": 1741 } + { "id": "center", "fg": 1751 }, + { "id": "corner", "fg": 1752 }, + { "id": "edge", "fg": 1751 }, + { "id": "t_connection", "fg": 1753 }, + { "id": "end_piece", "fg": 1751 }, + { "id": "unconnected", "fg": 1751 } ], "rotates": false }, { "id": "t_wall_v", - "fg": 2000, - "bg": 1863, + "fg": 2010, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2000 }, - { "id": "corner", "fg": 1883 }, - { "id": "edge", "fg": 2000 }, - { "id": "t_connection", "fg": 1884 }, - { "id": "end_piece", "fg": 2000 }, - { "id": "unconnected", "fg": 2000 } + { "id": "center", "fg": 2010 }, + { "id": "corner", "fg": 1893 }, + { "id": "edge", "fg": 2010 }, + { "id": "t_connection", "fg": 1894 }, + { "id": "end_piece", "fg": 2010 }, + { "id": "unconnected", "fg": 2010 } ], "rotates": false }, { "id": "t_wall_v_b", - "fg": 1744, - "bg": 1863, + "fg": 1754, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1744 }, - { "id": "corner", "fg": 1745 }, - { "id": "edge", "fg": 1744 }, - { "id": "t_connection", "fg": 1746 }, - { "id": "end_piece", "fg": 1744 }, - { "id": "unconnected", "fg": 1744 } + { "id": "center", "fg": 1754 }, + { "id": "corner", "fg": 1755 }, + { "id": "edge", "fg": 1754 }, + { "id": "t_connection", "fg": 1756 }, + { "id": "end_piece", "fg": 1754 }, + { "id": "unconnected", "fg": 1754 } ], "rotates": false }, { "id": "t_wall_v_g", - "fg": 1747, - "bg": 1863, + "fg": 1757, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1747 }, - { "id": "corner", "fg": 1748 }, - { "id": "edge", "fg": 1747 }, - { "id": "t_connection", "fg": 1749 }, - { "id": "end_piece", "fg": 1747 }, - { "id": "unconnected", "fg": 1747 } + { "id": "center", "fg": 1757 }, + { "id": "corner", "fg": 1758 }, + { "id": "edge", "fg": 1757 }, + { "id": "t_connection", "fg": 1759 }, + { "id": "end_piece", "fg": 1757 }, + { "id": "unconnected", "fg": 1757 } ], "rotates": false }, { "id": "t_wall_v_p", - "fg": 1753, - "bg": 1863, + "fg": 1763, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1753 }, - { "id": "corner", "fg": 1754 }, - { "id": "edge", "fg": 1753 }, - { "id": "t_connection", "fg": 1755 }, - { "id": "end_piece", "fg": 1753 }, - { "id": "unconnected", "fg": 1753 } + { "id": "center", "fg": 1763 }, + { "id": "corner", "fg": 1764 }, + { "id": "edge", "fg": 1763 }, + { "id": "t_connection", "fg": 1765 }, + { "id": "end_piece", "fg": 1763 }, + { "id": "unconnected", "fg": 1763 } ], "rotates": false }, { "id": "t_wall_v_r", - "fg": 1741, - "bg": 1863, + "fg": 1751, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1741 }, - { "id": "corner", "fg": 1742 }, - { "id": "edge", "fg": 1741 }, - { "id": "t_connection", "fg": 1743 }, - { "id": "end_piece", "fg": 1741 }, - { "id": "unconnected", "fg": 1741 } + { "id": "center", "fg": 1751 }, + { "id": "corner", "fg": 1752 }, + { "id": "edge", "fg": 1751 }, + { "id": "t_connection", "fg": 1753 }, + { "id": "end_piece", "fg": 1751 }, + { "id": "unconnected", "fg": 1751 } ], "rotates": false }, { "id": "t_wall_v_w", - "fg": 2000, - "bg": 1863, + "fg": 2010, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2000 }, - { "id": "corner", "fg": 1883 }, - { "id": "edge", "fg": 2000 }, - { "id": "t_connection", "fg": 1884 }, - { "id": "end_piece", "fg": 2000 }, - { "id": "unconnected", "fg": 2000 } + { "id": "center", "fg": 2010 }, + { "id": "corner", "fg": 1893 }, + { "id": "edge", "fg": 2010 }, + { "id": "t_connection", "fg": 1894 }, + { "id": "end_piece", "fg": 2010 }, + { "id": "unconnected", "fg": 2010 } ], "rotates": false }, { "id": "t_wall_v_y", - "fg": 1750, - "bg": 1863, + "fg": 1760, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1750 }, - { "id": "corner", "fg": 1751 }, - { "id": "edge", "fg": 1750 }, - { "id": "t_connection", "fg": 1752 }, - { "id": "end_piece", "fg": 1750 }, - { "id": "unconnected", "fg": 1750 } + { "id": "center", "fg": 1760 }, + { "id": "corner", "fg": 1761 }, + { "id": "edge", "fg": 1760 }, + { "id": "t_connection", "fg": 1762 }, + { "id": "end_piece", "fg": 1760 }, + { "id": "unconnected", "fg": 1760 } ], "rotates": false }, { "id": "t_wall_w", - "fg": 2000, - "bg": 1863, + "fg": 2010, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2000 }, - { "id": "corner", "fg": 1883 }, - { "id": "edge", "fg": 2000 }, - { "id": "t_connection", "fg": 1884 }, - { "id": "end_piece", "fg": 2000 }, - { "id": "unconnected", "fg": 2000 } + { "id": "center", "fg": 2010 }, + { "id": "corner", "fg": 1893 }, + { "id": "edge", "fg": 2010 }, + { "id": "t_connection", "fg": 1894 }, + { "id": "end_piece", "fg": 2010 }, + { "id": "unconnected", "fg": 2010 } ], "rotates": false }, { "id": [ "t_wall_wood" ], - "fg": 1822, + "fg": 1832, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1934 }, - { "id": "corner", "fg": 1935 }, - { "id": "edge", "fg": 1936 }, - { "id": "t_connection", "fg": 1937 }, - { "id": "end_piece", "fg": 1936 }, - { "id": "unconnected", "fg": 1823 } + { "id": "center", "fg": 1944 }, + { "id": "corner", "fg": 1945 }, + { "id": "edge", "fg": 1946 }, + { "id": "t_connection", "fg": 1947 }, + { "id": "end_piece", "fg": 1946 }, + { "id": "unconnected", "fg": 1833 } ], "rotates": false }, - { "id": "t_wall_wood_broken", "fg": 1995, "rotates": false }, - { "id": "t_wall_wood_chipped", "fg": 1994, "rotates": false }, + { "id": "t_wall_wood_broken", "fg": 2005, "rotates": false }, + { "id": "t_wall_wood_chipped", "fg": 2004, "rotates": false }, { "id": "t_wall_y", - "fg": 1750, - "bg": 1863, + "fg": 1760, + "bg": 1873, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1750 }, - { "id": "corner", "fg": 1751 }, - { "id": "edge", "fg": 1750 }, - { "id": "t_connection", "fg": 1752 }, - { "id": "end_piece", "fg": 1750 }, - { "id": "unconnected", "fg": 1750 } + { "id": "center", "fg": 1760 }, + { "id": "corner", "fg": 1761 }, + { "id": "edge", "fg": 1760 }, + { "id": "t_connection", "fg": 1762 }, + { "id": "end_piece", "fg": 1760 }, + { "id": "unconnected", "fg": 1760 } ], "rotates": false }, - { "id": "t_water_dp", "fg": 1886, "rotates": false }, - { "id": "t_water_pool", "fg": 1885, "rotates": false }, - { "id": "t_water_pump", "fg": 1765, "rotates": false }, - { "id": "t_water_sh", "fg": 1885, "rotates": false }, - { "id": "t_wax", "fg": 1735, "rotates": false }, - { "id": "t_window_alarm", "fg": 1985, "rotates": true }, - { "id": "t_window_alarm_taped", "fg": 1986, "rotates": false }, + { "id": "t_water_dp", "fg": 1896, "rotates": false }, + { "id": "t_water_pool", "fg": 1895, "rotates": false }, + { "id": "t_water_pump", "fg": 1775, "rotates": false }, + { "id": "t_water_sh", "fg": 1895, "rotates": false }, + { "id": "t_wax", "fg": 1745, "rotates": false }, + { "id": "t_window_alarm", "fg": 1995, "rotates": true }, + { "id": "t_window_alarm_taped", "fg": 1996, "rotates": false }, { "id": [ "t_window_bars_alarm", "t_window_bars", "t_bars" ], - "fg": 2002, + "fg": 2012, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1932 }, - { "id": "corner", "fg": 1927 }, - { "id": "edge", "fg": 1926 }, - { "id": "t_connection", "fg": 1933 }, - { "id": "end_piece", "fg": 1926 }, - { "id": "unconnected", "fg": 2002 } + { "id": "center", "fg": 1942 }, + { "id": "corner", "fg": 1937 }, + { "id": "edge", "fg": 1936 }, + { "id": "t_connection", "fg": 1943 }, + { "id": "end_piece", "fg": 1936 }, + { "id": "unconnected", "fg": 2012 } ], "rotates": false }, - { "id": "t_window_boarded", "fg": 1989, "bg": 1973, "rotates": false }, - { "id": "t_window_boarded_noglass", "fg": 1727, "rotates": false }, - { "id": "t_window_domestic", "fg": 1985, "rotates": false }, - { "id": "t_window_domestic_taped", "fg": 1986, "rotates": false }, - { "id": "t_window_empty", "fg": 2003, "bg": 1973, "rotates": false }, - { "id": "t_window_enhanced", "fg": 1730, "rotates": false }, - { "id": "t_window_enhanced_noglass", "fg": 1731, "rotates": false }, - { "id": "t_window_frame", "fg": 1988, "bg": 1973, "rotates": false }, - { "id": [ "t_window_open", "t_window_no_curtains_open" ], "fg": 1987, "rotates": false }, - { "id": "t_window_reinforced", "fg": 1728, "rotates": false }, - { "id": "t_window_reinforced_noglass", "fg": 1729, "rotates": false }, - { "id": "t_window_stained_blue", "fg": 1719, "bg": 1973, "rotates": true }, - { "id": "t_window_stained_green", "fg": 1710, "bg": 1973, "rotates": true }, - { "id": "t_window_stained_red", "fg": 1720, "bg": 1973, "rotates": true }, - { "id": [ "t_window", "t_window_no_curtains" ], "fg": 1985, "rotates": false }, - { "id": [ "t_window_taped", "t_window_no_curtains_taped" ], "fg": 1986, "rotates": false }, - { "id": "t_wreckage", "bg": 1900, "rotates": false }, - { "id": "t_zebra", "fg": 2026, "rotates": false, "multitile": false }, + { "id": "t_window_boarded", "fg": 1999, "bg": 1983, "rotates": false }, + { "id": "t_window_boarded_noglass", "fg": 1737, "rotates": false }, + { "id": "t_window_domestic", "fg": 1995, "rotates": false }, + { "id": "t_window_domestic_taped", "fg": 1996, "rotates": false }, + { "id": "t_window_empty", "fg": 2013, "bg": 1983, "rotates": false }, + { "id": "t_window_enhanced", "fg": 1740, "rotates": false }, + { "id": "t_window_enhanced_noglass", "fg": 1741, "rotates": false }, + { "id": "t_window_frame", "fg": 1998, "bg": 1983, "rotates": false }, + { "id": [ "t_window_open", "t_window_no_curtains_open" ], "fg": 1997, "rotates": false }, + { "id": "t_window_reinforced", "fg": 1738, "rotates": false }, + { "id": "t_window_reinforced_noglass", "fg": 1739, "rotates": false }, + { "id": "t_window_stained_blue", "fg": 1729, "bg": 1983, "rotates": true }, + { "id": "t_window_stained_green", "fg": 1720, "bg": 1983, "rotates": true }, + { "id": "t_window_stained_red", "fg": 1730, "bg": 1983, "rotates": true }, + { "id": [ "t_window", "t_window_no_curtains" ], "fg": 1995, "rotates": false }, + { "id": [ "t_window_taped", "t_window_no_curtains_taped" ], "fg": 1996, "rotates": false }, + { "id": "t_wreckage", "bg": 1910, "rotates": false }, + { "id": "t_zebra", "fg": 2037, "rotates": false, "multitile": false }, { "id": "t_chainfence_season_spring", - "fg": 2046, - "bg": 2066, + "fg": 2057, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2031, "bg": 2066 }, - { "id": "corner", "fg": [ 2033, 2035, 2034, 2032 ], "bg": 2066 }, - { "id": "t_connection", "fg": [ 2043, 2045, 2044, 2042 ], "bg": 2066 }, - { "id": "edge", "fg": [ 2037, 2036 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2039, 2041, 2040, 2038 ], "bg": 2066 }, - { "id": "unconnected", "fg": [ 2046, 2046 ], "bg": 2066 } + { "id": "center", "fg": 2042, "bg": 2077 }, + { "id": "corner", "fg": [ 2044, 2046, 2045, 2043 ], "bg": 2077 }, + { "id": "t_connection", "fg": [ 2054, 2056, 2055, 2053 ], "bg": 2077 }, + { "id": "edge", "fg": [ 2048, 2047 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2050, 2052, 2051, 2049 ], "bg": 2077 }, + { "id": "unconnected", "fg": [ 2057, 2057 ], "bg": 2077 } ] }, { "id": "t_chainfence_season_summer", - "fg": 2046, - "bg": 2068, + "fg": 2057, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2031, "bg": 2068 }, - { "id": "corner", "fg": [ 2033, 2035, 2034, 2032 ], "bg": 2068 }, - { "id": "t_connection", "fg": [ 2043, 2045, 2044, 2042 ], "bg": 2068 }, - { "id": "edge", "fg": [ 2037, 2036 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2039, 2041, 2040, 2038 ], "bg": 2068 }, - { "id": "unconnected", "fg": [ 2046, 2046 ], "bg": 2068 } + { "id": "center", "fg": 2042, "bg": 2079 }, + { "id": "corner", "fg": [ 2044, 2046, 2045, 2043 ], "bg": 2079 }, + { "id": "t_connection", "fg": [ 2054, 2056, 2055, 2053 ], "bg": 2079 }, + { "id": "edge", "fg": [ 2048, 2047 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2050, 2052, 2051, 2049 ], "bg": 2079 }, + { "id": "unconnected", "fg": [ 2057, 2057 ], "bg": 2079 } ] }, { "id": "t_chainfence_season_autumn", - "fg": 2046, - "bg": 2067, + "fg": 2057, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2031, "bg": 2067 }, - { "id": "corner", "fg": [ 2033, 2035, 2034, 2032 ], "bg": 2067 }, - { "id": "t_connection", "fg": [ 2043, 2045, 2044, 2042 ], "bg": 2067 }, - { "id": "edge", "fg": [ 2037, 2036 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2039, 2041, 2040, 2038 ], "bg": 2067 }, - { "id": "unconnected", "fg": [ 2046, 2046 ], "bg": 2067 } + { "id": "center", "fg": 2042, "bg": 2078 }, + { "id": "corner", "fg": [ 2044, 2046, 2045, 2043 ], "bg": 2078 }, + { "id": "t_connection", "fg": [ 2054, 2056, 2055, 2053 ], "bg": 2078 }, + { "id": "edge", "fg": [ 2048, 2047 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2050, 2052, 2051, 2049 ], "bg": 2078 }, + { "id": "unconnected", "fg": [ 2057, 2057 ], "bg": 2078 } ] }, { "id": "t_chainfence_season_winter", - "fg": 2046, - "bg": 2069, + "fg": 2057, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2031, "bg": 2069 }, - { "id": "corner", "fg": [ 2033, 2035, 2034, 2032 ], "bg": 2069 }, - { "id": "t_connection", "fg": [ 2043, 2045, 2044, 2042 ], "bg": 2069 }, - { "id": "edge", "fg": [ 2037, 2036 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2039, 2041, 2040, 2038 ], "bg": 2069 }, - { "id": "unconnected", "fg": [ 2046, 2046 ], "bg": 2069 } + { "id": "center", "fg": 2042, "bg": 2080 }, + { "id": "corner", "fg": [ 2044, 2046, 2045, 2043 ], "bg": 2080 }, + { "id": "t_connection", "fg": [ 2054, 2056, 2055, 2053 ], "bg": 2080 }, + { "id": "edge", "fg": [ 2048, 2047 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2050, 2052, 2051, 2049 ], "bg": 2080 }, + { "id": "unconnected", "fg": [ 2057, 2057 ], "bg": 2080 } ] }, { "id": "t_chaingate_c_season_spring", - "fg": 2053, - "bg": 2066, + "fg": 2064, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2053, "bg": 2066 }, - { "id": "edge", "fg": [ 2048, 2053 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2050, 2052, 2051, 2049 ], "bg": 2066 }, - { "id": "unconnected", "fg": [ 2053, 2053 ], "bg": 2066 } + { "id": "center", "fg": 2064, "bg": 2077 }, + { "id": "edge", "fg": [ 2059, 2064 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2061, 2063, 2062, 2060 ], "bg": 2077 }, + { "id": "unconnected", "fg": [ 2064, 2064 ], "bg": 2077 } ] }, { "id": "t_chaingate_c_season_summer", - "fg": 2053, - "bg": 2068, + "fg": 2064, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2053, "bg": 2068 }, - { "id": "edge", "fg": [ 2048, 2053 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2050, 2052, 2051, 2049 ], "bg": 2068 }, - { "id": "unconnected", "fg": [ 2053, 2053 ], "bg": 2068 } + { "id": "center", "fg": 2064, "bg": 2079 }, + { "id": "edge", "fg": [ 2059, 2064 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2061, 2063, 2062, 2060 ], "bg": 2079 }, + { "id": "unconnected", "fg": [ 2064, 2064 ], "bg": 2079 } ] }, { "id": "t_chaingate_c_season_autumn", - "fg": 2053, - "bg": 2067, + "fg": 2064, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2053, "bg": 2067 }, - { "id": "edge", "fg": [ 2048, 2053 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2050, 2052, 2051, 2049 ], "bg": 2067 }, - { "id": "unconnected", "fg": [ 2053, 2053 ], "bg": 2067 } + { "id": "center", "fg": 2064, "bg": 2078 }, + { "id": "edge", "fg": [ 2059, 2064 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2061, 2063, 2062, 2060 ], "bg": 2078 }, + { "id": "unconnected", "fg": [ 2064, 2064 ], "bg": 2078 } ] }, { "id": "t_chaingate_c_season_winter", - "fg": 2053, - "bg": 2069, + "fg": 2064, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2053, "bg": 2069 }, - { "id": "edge", "fg": [ 2048, 2053 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2050, 2052, 2051, 2049 ], "bg": 2069 }, - { "id": "unconnected", "fg": [ 2053, 2053 ], "bg": 2069 } + { "id": "center", "fg": 2064, "bg": 2080 }, + { "id": "edge", "fg": [ 2059, 2064 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2061, 2063, 2062, 2060 ], "bg": 2080 }, + { "id": "unconnected", "fg": [ 2064, 2064 ], "bg": 2080 } ] }, { "id": "t_chaingate_l_season_spring", - "fg": 2047, - "bg": 2066, + "fg": 2058, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2047, "bg": 2066 }, - { "id": "edge", "fg": [ 2054, 2047 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2050, 2052, 2051, 2049 ], "bg": 2066 }, - { "id": "unconnected", "fg": [ 2047, 2047 ], "bg": 2066 } + { "id": "center", "fg": 2058, "bg": 2077 }, + { "id": "edge", "fg": [ 2065, 2058 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2061, 2063, 2062, 2060 ], "bg": 2077 }, + { "id": "unconnected", "fg": [ 2058, 2058 ], "bg": 2077 } ] }, { "id": "t_chaingate_l_season_summer", - "fg": 2047, - "bg": 2068, + "fg": 2058, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2047, "bg": 2068 }, - { "id": "edge", "fg": [ 2054, 2047 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2050, 2052, 2051, 2049 ], "bg": 2068 }, - { "id": "unconnected", "fg": [ 2047, 2047 ], "bg": 2068 } + { "id": "center", "fg": 2058, "bg": 2079 }, + { "id": "edge", "fg": [ 2065, 2058 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2061, 2063, 2062, 2060 ], "bg": 2079 }, + { "id": "unconnected", "fg": [ 2058, 2058 ], "bg": 2079 } ] }, { "id": "t_chaingate_l_season_autumn", - "fg": 2047, - "bg": 2067, + "fg": 2058, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2047, "bg": 2067 }, - { "id": "edge", "fg": [ 2054, 2047 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2050, 2052, 2051, 2049 ], "bg": 2067 }, - { "id": "unconnected", "fg": [ 2047, 2047 ], "bg": 2067 } + { "id": "center", "fg": 2058, "bg": 2078 }, + { "id": "edge", "fg": [ 2065, 2058 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2061, 2063, 2062, 2060 ], "bg": 2078 }, + { "id": "unconnected", "fg": [ 2058, 2058 ], "bg": 2078 } ] }, { "id": "t_chaingate_l_season_winter", - "fg": 2047, - "bg": 2069, + "fg": 2058, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2047, "bg": 2069 }, - { "id": "edge", "fg": [ 2054, 2047 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2050, 2052, 2051, 2049 ], "bg": 2069 }, - { "id": "unconnected", "fg": [ 2047, 2047 ], "bg": 2069 } + { "id": "center", "fg": 2058, "bg": 2080 }, + { "id": "edge", "fg": [ 2065, 2058 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2061, 2063, 2062, 2060 ], "bg": 2080 }, + { "id": "unconnected", "fg": [ 2058, 2058 ], "bg": 2080 } ] }, { "id": "t_chaingate_o_season_spring", - "fg": 2055, - "bg": 2066, + "fg": 2066, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2055, "bg": 2066 }, - { "id": "edge", "fg": [ 2056, 2055 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2056, 2055, 2056, 2055 ], "bg": 2066 }, - { "id": "unconnected", "fg": [ 2055, 2055 ], "bg": 2066 } + { "id": "center", "fg": 2066, "bg": 2077 }, + { "id": "edge", "fg": [ 2067, 2066 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2067, 2066, 2067, 2066 ], "bg": 2077 }, + { "id": "unconnected", "fg": [ 2066, 2066 ], "bg": 2077 } ] }, { "id": "t_chaingate_o_season_summer", - "fg": 2055, - "bg": 2068, + "fg": 2066, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2055, "bg": 2068 }, - { "id": "edge", "fg": [ 2056, 2055 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2056, 2055, 2056, 2055 ], "bg": 2068 }, - { "id": "unconnected", "fg": [ 2055, 2055 ], "bg": 2068 } + { "id": "center", "fg": 2066, "bg": 2079 }, + { "id": "edge", "fg": [ 2067, 2066 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2067, 2066, 2067, 2066 ], "bg": 2079 }, + { "id": "unconnected", "fg": [ 2066, 2066 ], "bg": 2079 } ] }, { "id": "t_chaingate_o_season_autumn", - "fg": 2055, - "bg": 2067, + "fg": 2066, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2055, "bg": 2067 }, - { "id": "edge", "fg": [ 2056, 2055 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2056, 2055, 2056, 2055 ], "bg": 2067 }, - { "id": "unconnected", "fg": [ 2055, 2055 ], "bg": 2067 } + { "id": "center", "fg": 2066, "bg": 2078 }, + { "id": "edge", "fg": [ 2067, 2066 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2067, 2066, 2067, 2066 ], "bg": 2078 }, + { "id": "unconnected", "fg": [ 2066, 2066 ], "bg": 2078 } ] }, { "id": "t_chaingate_o_season_winter", - "fg": 2055, - "bg": 2069, + "fg": 2066, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2055, "bg": 2069 }, - { "id": "edge", "fg": [ 2056, 2055 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2056, 2055, 2056, 2055 ], "bg": 2069 }, - { "id": "unconnected", "fg": [ 2055, 2055 ], "bg": 2069 } + { "id": "center", "fg": 2066, "bg": 2080 }, + { "id": "edge", "fg": [ 2067, 2066 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2067, 2066, 2067, 2066 ], "bg": 2080 }, + { "id": "unconnected", "fg": [ 2066, 2066 ], "bg": 2080 } ] }, { "id": "t_console", "animated": true, "fg": [ - { "weight": 15, "sprite": 2057 }, - { "weight": 15, "sprite": 2058 }, - { "weight": 15, "sprite": 2059 }, - { "weight": 15, "sprite": 2060 } + { "weight": 15, "sprite": 2068 }, + { "weight": 15, "sprite": 2069 }, + { "weight": 15, "sprite": 2070 }, + { "weight": 15, "sprite": 2071 } ], "rotates": false }, @@ -5510,341 +5510,341 @@ "id": "t_radio_controls", "animated": true, "fg": [ - { "weight": 15, "sprite": 2061 }, - { "weight": 15, "sprite": 2062 }, - { "weight": 15, "sprite": 2063 }, - { "weight": 15, "sprite": 2064 } + { "weight": 15, "sprite": 2072 }, + { "weight": 15, "sprite": 2073 }, + { "weight": 15, "sprite": 2074 }, + { "weight": 15, "sprite": 2075 } ], "rotates": false }, - { "id": "t_dirt_season_spring", "fg": 2066 }, - { "id": "t_dirt_season_summer", "fg": 2068 }, - { "id": "t_dirt_season_winter", "fg": 2069 }, - { "id": "t_dirtmound_season_spring", "fg": 2065 }, - { "id": "t_dirtmound_season_summer", "fg": 2071 }, - { "id": "t_dirtmound_season_autumn", "fg": 2070 }, - { "id": "t_dirtmound_season_winter", "fg": 2072 }, + { "id": "t_dirt_season_spring", "fg": 2077 }, + { "id": "t_dirt_season_summer", "fg": 2079 }, + { "id": "t_dirt_season_winter", "fg": 2080 }, + { "id": "t_dirtmound_season_spring", "fg": 2076 }, + { "id": "t_dirtmound_season_summer", "fg": 2082 }, + { "id": "t_dirtmound_season_autumn", "fg": 2081 }, + { "id": "t_dirtmound_season_winter", "fg": 2083 }, { "id": "t_fence_season_spring", - "fg": 2083, - "bg": 2066, + "fg": 2094, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2083, "bg": 2066 }, - { "id": "corner", "fg": [ 2074, 2076, 2075, 2073 ], "bg": 2066 }, - { "id": "t_connection", "fg": [ 2077, 2078, 2077, 2078 ], "bg": 2066 }, - { "id": "edge", "fg": [ 2078, 2077 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2080, 2082, 2081, 2079 ], "bg": 2066 }, - { "id": "unconnected", "fg": [ 2083, 2083 ], "bg": 2066 } + { "id": "center", "fg": 2094, "bg": 2077 }, + { "id": "corner", "fg": [ 2085, 2087, 2086, 2084 ], "bg": 2077 }, + { "id": "t_connection", "fg": [ 2088, 2089, 2088, 2089 ], "bg": 2077 }, + { "id": "edge", "fg": [ 2089, 2088 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2091, 2093, 2092, 2090 ], "bg": 2077 }, + { "id": "unconnected", "fg": [ 2094, 2094 ], "bg": 2077 } ] }, { "id": "t_fence_season_summer", - "fg": 2083, - "bg": 2068, + "fg": 2094, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2083, "bg": 2068 }, - { "id": "corner", "fg": [ 2074, 2076, 2075, 2073 ], "bg": 2068 }, - { "id": "t_connection", "fg": [ 2077, 2078, 2077, 2078 ], "bg": 2068 }, - { "id": "edge", "fg": [ 2078, 2077 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2080, 2082, 2081, 2079 ], "bg": 2068 }, - { "id": "unconnected", "fg": [ 2083, 2083 ], "bg": 2068 } + { "id": "center", "fg": 2094, "bg": 2079 }, + { "id": "corner", "fg": [ 2085, 2087, 2086, 2084 ], "bg": 2079 }, + { "id": "t_connection", "fg": [ 2088, 2089, 2088, 2089 ], "bg": 2079 }, + { "id": "edge", "fg": [ 2089, 2088 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2091, 2093, 2092, 2090 ], "bg": 2079 }, + { "id": "unconnected", "fg": [ 2094, 2094 ], "bg": 2079 } ] }, { "id": "t_fence_season_autumn", - "fg": 2083, - "bg": 2067, + "fg": 2094, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2083, "bg": 2067 }, - { "id": "corner", "fg": [ 2074, 2076, 2075, 2073 ], "bg": 2067 }, - { "id": "t_connection", "fg": [ 2077, 2078, 2077, 2078 ], "bg": 2067 }, - { "id": "edge", "fg": [ 2078, 2077 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2080, 2082, 2081, 2079 ], "bg": 2067 }, - { "id": "unconnected", "fg": [ 2083, 2083 ], "bg": 2067 } + { "id": "center", "fg": 2094, "bg": 2078 }, + { "id": "corner", "fg": [ 2085, 2087, 2086, 2084 ], "bg": 2078 }, + { "id": "t_connection", "fg": [ 2088, 2089, 2088, 2089 ], "bg": 2078 }, + { "id": "edge", "fg": [ 2089, 2088 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2091, 2093, 2092, 2090 ], "bg": 2078 }, + { "id": "unconnected", "fg": [ 2094, 2094 ], "bg": 2078 } ] }, { "id": "t_fence_season_winter", - "fg": 2083, - "bg": 2069, + "fg": 2094, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2083, "bg": 2069 }, - { "id": "corner", "fg": [ 2074, 2076, 2075, 2073 ], "bg": 2069 }, - { "id": "t_connection", "fg": [ 2077, 2078, 2077, 2078 ], "bg": 2069 }, - { "id": "edge", "fg": [ 2078, 2077 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2080, 2082, 2081, 2079 ], "bg": 2069 }, - { "id": "unconnected", "fg": [ 2083, 2083 ], "bg": 2069 } + { "id": "center", "fg": 2094, "bg": 2080 }, + { "id": "corner", "fg": [ 2085, 2087, 2086, 2084 ], "bg": 2080 }, + { "id": "t_connection", "fg": [ 2088, 2089, 2088, 2089 ], "bg": 2080 }, + { "id": "edge", "fg": [ 2089, 2088 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2091, 2093, 2092, 2090 ], "bg": 2080 }, + { "id": "unconnected", "fg": [ 2094, 2094 ], "bg": 2080 } ] }, { "id": "t_fence_barbed_season_spring", - "fg": 2094, - "bg": 2066, + "fg": 2105, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2094, "bg": 2066 }, - { "id": "corner", "fg": [ 2085, 2087, 2086, 2084 ], "bg": 2066 }, - { "id": "t_connection", "fg": [ 2088, 2089, 2088, 2089 ], "bg": 2066 }, - { "id": "edge", "fg": [ 2089, 2088 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2091, 2093, 2092, 2090 ], "bg": 2066 }, - { "id": "unconnected", "fg": [ 2094, 2094 ], "bg": 2066 } + { "id": "center", "fg": 2105, "bg": 2077 }, + { "id": "corner", "fg": [ 2096, 2098, 2097, 2095 ], "bg": 2077 }, + { "id": "t_connection", "fg": [ 2099, 2100, 2099, 2100 ], "bg": 2077 }, + { "id": "edge", "fg": [ 2100, 2099 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2102, 2104, 2103, 2101 ], "bg": 2077 }, + { "id": "unconnected", "fg": [ 2105, 2105 ], "bg": 2077 } ] }, { "id": "t_fence_barbed_season_summer", - "fg": 2094, - "bg": 2068, + "fg": 2105, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2094, "bg": 2068 }, - { "id": "corner", "fg": [ 2085, 2087, 2086, 2084 ], "bg": 2068 }, - { "id": "t_connection", "fg": [ 2088, 2089, 2088, 2089 ], "bg": 2068 }, - { "id": "edge", "fg": [ 2089, 2088 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2091, 2093, 2092, 2090 ], "bg": 2068 }, - { "id": "unconnected", "fg": [ 2094, 2094 ], "bg": 2068 } + { "id": "center", "fg": 2105, "bg": 2079 }, + { "id": "corner", "fg": [ 2096, 2098, 2097, 2095 ], "bg": 2079 }, + { "id": "t_connection", "fg": [ 2099, 2100, 2099, 2100 ], "bg": 2079 }, + { "id": "edge", "fg": [ 2100, 2099 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2102, 2104, 2103, 2101 ], "bg": 2079 }, + { "id": "unconnected", "fg": [ 2105, 2105 ], "bg": 2079 } ] }, { "id": "t_fence_barbed_season_autumn", - "fg": 2094, - "bg": 2067, + "fg": 2105, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2094, "bg": 2067 }, - { "id": "corner", "fg": [ 2085, 2087, 2086, 2084 ], "bg": 2067 }, - { "id": "t_connection", "fg": [ 2088, 2089, 2088, 2089 ], "bg": 2067 }, - { "id": "edge", "fg": [ 2089, 2088 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2091, 2093, 2092, 2090 ], "bg": 2067 }, - { "id": "unconnected", "fg": [ 2094, 2094 ], "bg": 2067 } + { "id": "center", "fg": 2105, "bg": 2078 }, + { "id": "corner", "fg": [ 2096, 2098, 2097, 2095 ], "bg": 2078 }, + { "id": "t_connection", "fg": [ 2099, 2100, 2099, 2100 ], "bg": 2078 }, + { "id": "edge", "fg": [ 2100, 2099 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2102, 2104, 2103, 2101 ], "bg": 2078 }, + { "id": "unconnected", "fg": [ 2105, 2105 ], "bg": 2078 } ] }, { "id": "t_fence_barbed_season_winter", - "fg": 2094, - "bg": 2069, + "fg": 2105, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2094, "bg": 2069 }, - { "id": "corner", "fg": [ 2085, 2087, 2086, 2084 ], "bg": 2069 }, - { "id": "t_connection", "fg": [ 2088, 2089, 2088, 2089 ], "bg": 2069 }, - { "id": "edge", "fg": [ 2089, 2088 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2091, 2093, 2092, 2090 ], "bg": 2069 }, - { "id": "unconnected", "fg": [ 2094, 2094 ], "bg": 2069 } + { "id": "center", "fg": 2105, "bg": 2080 }, + { "id": "corner", "fg": [ 2096, 2098, 2097, 2095 ], "bg": 2080 }, + { "id": "t_connection", "fg": [ 2099, 2100, 2099, 2100 ], "bg": 2080 }, + { "id": "edge", "fg": [ 2100, 2099 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2102, 2104, 2103, 2101 ], "bg": 2080 }, + { "id": "unconnected", "fg": [ 2105, 2105 ], "bg": 2080 } ] }, { "id": "t_fence_wire_season_spring", - "fg": 2105, - "bg": 2066, + "fg": 2116, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2105, "bg": 2066 }, - { "id": "corner", "fg": [ 2096, 2098, 2097, 2095 ], "bg": 2066 }, - { "id": "t_connection", "fg": [ 2099, 2100, 2099, 2100 ], "bg": 2066 }, - { "id": "edge", "fg": [ 2100, 2099 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2102, 2104, 2103, 2101 ], "bg": 2066 }, - { "id": "unconnected", "fg": [ 2105, 2105 ], "bg": 2066 } + { "id": "center", "fg": 2116, "bg": 2077 }, + { "id": "corner", "fg": [ 2107, 2109, 2108, 2106 ], "bg": 2077 }, + { "id": "t_connection", "fg": [ 2110, 2111, 2110, 2111 ], "bg": 2077 }, + { "id": "edge", "fg": [ 2111, 2110 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2113, 2115, 2114, 2112 ], "bg": 2077 }, + { "id": "unconnected", "fg": [ 2116, 2116 ], "bg": 2077 } ] }, { "id": "t_fence_wire_season_summer", - "fg": 2105, - "bg": 2068, + "fg": 2116, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2105, "bg": 2068 }, - { "id": "corner", "fg": [ 2096, 2098, 2097, 2095 ], "bg": 2068 }, - { "id": "t_connection", "fg": [ 2099, 2100, 2099, 2100 ], "bg": 2068 }, - { "id": "edge", "fg": [ 2100, 2099 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2102, 2104, 2103, 2101 ], "bg": 2068 }, - { "id": "unconnected", "fg": [ 2105, 2105 ], "bg": 2068 } + { "id": "center", "fg": 2116, "bg": 2079 }, + { "id": "corner", "fg": [ 2107, 2109, 2108, 2106 ], "bg": 2079 }, + { "id": "t_connection", "fg": [ 2110, 2111, 2110, 2111 ], "bg": 2079 }, + { "id": "edge", "fg": [ 2111, 2110 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2113, 2115, 2114, 2112 ], "bg": 2079 }, + { "id": "unconnected", "fg": [ 2116, 2116 ], "bg": 2079 } ] }, { "id": "t_fence_wire_season_autumn", - "fg": 2105, - "bg": 2067, + "fg": 2116, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2105, "bg": 2067 }, - { "id": "corner", "fg": [ 2096, 2098, 2097, 2095 ], "bg": 2067 }, - { "id": "t_connection", "fg": [ 2099, 2100, 2099, 2100 ], "bg": 2067 }, - { "id": "edge", "fg": [ 2100, 2099 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2102, 2104, 2103, 2101 ], "bg": 2067 }, - { "id": "unconnected", "fg": [ 2105, 2105 ], "bg": 2067 } + { "id": "center", "fg": 2116, "bg": 2078 }, + { "id": "corner", "fg": [ 2107, 2109, 2108, 2106 ], "bg": 2078 }, + { "id": "t_connection", "fg": [ 2110, 2111, 2110, 2111 ], "bg": 2078 }, + { "id": "edge", "fg": [ 2111, 2110 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2113, 2115, 2114, 2112 ], "bg": 2078 }, + { "id": "unconnected", "fg": [ 2116, 2116 ], "bg": 2078 } ] }, { "id": "t_fence_wire_season_winter", - "fg": 2105, - "bg": 2069, + "fg": 2116, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2105, "bg": 2069 }, - { "id": "corner", "fg": [ 2096, 2098, 2097, 2095 ], "bg": 2069 }, - { "id": "t_connection", "fg": [ 2099, 2100, 2099, 2100 ], "bg": 2069 }, - { "id": "edge", "fg": [ 2100, 2099 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2102, 2104, 2103, 2101 ], "bg": 2069 }, - { "id": "unconnected", "fg": [ 2105, 2105 ], "bg": 2069 } + { "id": "center", "fg": 2116, "bg": 2080 }, + { "id": "corner", "fg": [ 2107, 2109, 2108, 2106 ], "bg": 2080 }, + { "id": "t_connection", "fg": [ 2110, 2111, 2110, 2111 ], "bg": 2080 }, + { "id": "edge", "fg": [ 2111, 2110 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2113, 2115, 2114, 2112 ], "bg": 2080 }, + { "id": "unconnected", "fg": [ 2116, 2116 ], "bg": 2080 } ] }, { "id": "t_fencegate_c_season_spring", - "fg": 2106, - "bg": 2066, + "fg": 2117, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2106, "bg": 2066 }, - { "id": "t_connection", "fg": [ 2106, 2107, 2106, 2107 ], "bg": 2066 }, - { "id": "edge", "fg": [ 2107, 2106 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2107, 2106, 2107, 2106 ], "bg": 2066 }, - { "id": "h", "fg": [ 2106, 2106 ], "bg": 2066 } + { "id": "center", "fg": 2117, "bg": 2077 }, + { "id": "t_connection", "fg": [ 2117, 2118, 2117, 2118 ], "bg": 2077 }, + { "id": "edge", "fg": [ 2118, 2117 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2118, 2117, 2118, 2117 ], "bg": 2077 }, + { "id": "h", "fg": [ 2117, 2117 ], "bg": 2077 } ] }, { "id": "t_fencegate_c_season_summer", - "fg": 2106, - "bg": 2068, + "fg": 2117, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2106, "bg": 2068 }, - { "id": "t_connection", "fg": [ 2106, 2107, 2106, 2107 ], "bg": 2068 }, - { "id": "edge", "fg": [ 2107, 2106 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2107, 2106, 2107, 2106 ], "bg": 2068 }, - { "id": "h", "fg": [ 2106, 2106 ], "bg": 2068 } + { "id": "center", "fg": 2117, "bg": 2079 }, + { "id": "t_connection", "fg": [ 2117, 2118, 2117, 2118 ], "bg": 2079 }, + { "id": "edge", "fg": [ 2118, 2117 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2118, 2117, 2118, 2117 ], "bg": 2079 }, + { "id": "h", "fg": [ 2117, 2117 ], "bg": 2079 } ] }, { "id": "t_fencegate_c_season_autumn", - "fg": 2106, - "bg": 2067, + "fg": 2117, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2106, "bg": 2067 }, - { "id": "t_connection", "fg": [ 2106, 2107, 2106, 2107 ], "bg": 2067 }, - { "id": "edge", "fg": [ 2107, 2106 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2107, 2106, 2107, 2106 ], "bg": 2067 }, - { "id": "h", "fg": [ 2106, 2106 ], "bg": 2067 } + { "id": "center", "fg": 2117, "bg": 2078 }, + { "id": "t_connection", "fg": [ 2117, 2118, 2117, 2118 ], "bg": 2078 }, + { "id": "edge", "fg": [ 2118, 2117 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2118, 2117, 2118, 2117 ], "bg": 2078 }, + { "id": "h", "fg": [ 2117, 2117 ], "bg": 2078 } ] }, { "id": "t_fencegate_c_season_winter", - "fg": 2106, - "bg": 2069, + "fg": 2117, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2106, "bg": 2069 }, - { "id": "t_connection", "fg": [ 2106, 2107, 2106, 2107 ], "bg": 2069 }, - { "id": "edge", "fg": [ 2107, 2106 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2107, 2106, 2107, 2106 ], "bg": 2069 }, - { "id": "h", "fg": [ 2106, 2106 ], "bg": 2069 } + { "id": "center", "fg": 2117, "bg": 2080 }, + { "id": "t_connection", "fg": [ 2117, 2118, 2117, 2118 ], "bg": 2080 }, + { "id": "edge", "fg": [ 2118, 2117 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2118, 2117, 2118, 2117 ], "bg": 2080 }, + { "id": "h", "fg": [ 2117, 2117 ], "bg": 2080 } ] }, { "id": "t_fencegate_o_season_spring", - "fg": 2108, - "bg": 2066, + "fg": 2119, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2108, "bg": 2066 }, - { "id": "t_connection", "fg": [ 2108, 2109, 2108, 2109 ], "bg": 2066 }, - { "id": "edge", "fg": [ 2109, 2108 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2109, 2108, 2109, 2108 ], "bg": 2066 }, - { "id": "h", "fg": [ 2108, 2108 ], "bg": 2066 } + { "id": "center", "fg": 2119, "bg": 2077 }, + { "id": "t_connection", "fg": [ 2119, 2120, 2119, 2120 ], "bg": 2077 }, + { "id": "edge", "fg": [ 2120, 2119 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2120, 2119, 2120, 2119 ], "bg": 2077 }, + { "id": "h", "fg": [ 2119, 2119 ], "bg": 2077 } ] }, { "id": "t_fencegate_o_season_summer", - "fg": 2108, - "bg": 2068, + "fg": 2119, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2108, "bg": 2068 }, - { "id": "t_connection", "fg": [ 2108, 2109, 2108, 2109 ], "bg": 2068 }, - { "id": "edge", "fg": [ 2109, 2108 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2109, 2108, 2109, 2108 ], "bg": 2068 }, - { "id": "h", "fg": [ 2108, 2108 ], "bg": 2068 } + { "id": "center", "fg": 2119, "bg": 2079 }, + { "id": "t_connection", "fg": [ 2119, 2120, 2119, 2120 ], "bg": 2079 }, + { "id": "edge", "fg": [ 2120, 2119 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2120, 2119, 2120, 2119 ], "bg": 2079 }, + { "id": "h", "fg": [ 2119, 2119 ], "bg": 2079 } ] }, { "id": "t_fencegate_o_season_autumn", - "fg": 2108, - "bg": 2067, + "fg": 2119, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2108, "bg": 2067 }, - { "id": "t_connection", "fg": [ 2108, 2109, 2108, 2109 ], "bg": 2067 }, - { "id": "edge", "fg": [ 2109, 2108 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2109, 2108, 2109, 2108 ], "bg": 2067 }, - { "id": "h", "fg": [ 2108, 2108 ], "bg": 2067 } + { "id": "center", "fg": 2119, "bg": 2078 }, + { "id": "t_connection", "fg": [ 2119, 2120, 2119, 2120 ], "bg": 2078 }, + { "id": "edge", "fg": [ 2120, 2119 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2120, 2119, 2120, 2119 ], "bg": 2078 }, + { "id": "h", "fg": [ 2119, 2119 ], "bg": 2078 } ] }, { "id": "t_fencegate_o_season_winter", - "fg": 2108, - "bg": 2069, + "fg": 2119, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2108, "bg": 2069 }, - { "id": "t_connection", "fg": [ 2108, 2109, 2108, 2109 ], "bg": 2069 }, - { "id": "edge", "fg": [ 2109, 2108 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2109, 2108, 2109, 2108 ], "bg": 2069 }, - { "id": "h", "fg": [ 2108, 2108 ], "bg": 2069 } + { "id": "center", "fg": 2119, "bg": 2080 }, + { "id": "t_connection", "fg": [ 2119, 2120, 2119, 2120 ], "bg": 2080 }, + { "id": "edge", "fg": [ 2120, 2119 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2120, 2119, 2120, 2119 ], "bg": 2080 }, + { "id": "h", "fg": [ 2119, 2119 ], "bg": 2080 } ] }, - { "id": "t_grass_season_spring", "fg": 2111 }, - { "id": "t_grass_season_summer", "fg": 2117 }, - { "id": "t_grass_season_winter", "fg": 2125 }, - { "id": "t_grass_long_season_spring", "fg": 2114 }, - { "id": "t_grass_long_season_summer", "fg": 2115 }, - { "id": "t_grass_long_season_autumn", "fg": 2113 }, - { "id": "t_grass_long_season_winter", "fg": 2116 }, - { "id": "t_grass_tall_season_spring", "fg": 2119 }, - { "id": "t_grass_tall_season_summer", "fg": 2120 }, - { "id": "t_grass_tall_season_autumn", "fg": 2118 }, - { "id": "t_grass_tall_season_winter", "fg": 2121 }, - { "id": "t_grass_white_season_spring", "fg": 2110 }, - { "id": "t_grass_white_season_summer", "fg": 2123 }, - { "id": "t_grass_white_season_autumn", "fg": 2122 }, - { "id": "t_grass_white_season_winter", "fg": 2124 }, + { "id": "t_grass_season_spring", "fg": 2122 }, + { "id": "t_grass_season_summer", "fg": 2128 }, + { "id": "t_grass_season_winter", "fg": 2136 }, + { "id": "t_grass_long_season_spring", "fg": 2125 }, + { "id": "t_grass_long_season_summer", "fg": 2126 }, + { "id": "t_grass_long_season_autumn", "fg": 2124 }, + { "id": "t_grass_long_season_winter", "fg": 2127 }, + { "id": "t_grass_tall_season_spring", "fg": 2130 }, + { "id": "t_grass_tall_season_summer", "fg": 2131 }, + { "id": "t_grass_tall_season_autumn", "fg": 2129 }, + { "id": "t_grass_tall_season_winter", "fg": 2132 }, + { "id": "t_grass_white_season_spring", "fg": 2121 }, + { "id": "t_grass_white_season_summer", "fg": 2134 }, + { "id": "t_grass_white_season_autumn", "fg": 2133 }, + { "id": "t_grass_white_season_winter", "fg": 2135 }, { "id": "t_dirt_season_autumn", - "fg": 2141, + "fg": 2152, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2126 }, - { "id": "corner", "fg": [ 2128, 2130, 2129, 2127 ] }, - { "id": "t_connection", "fg": [ 2138, 2140, 2139, 2137 ] }, - { "id": "edge", "fg": [ 2132, 2131 ] }, - { "id": "end_piece", "fg": [ 2134, 2136, 2135, 2133 ] }, - { "id": "unconnected", "fg": [ 2141, 2141 ] } + { "id": "center", "fg": 2137 }, + { "id": "corner", "fg": [ 2139, 2141, 2140, 2138 ] }, + { "id": "t_connection", "fg": [ 2149, 2151, 2150, 2148 ] }, + { "id": "edge", "fg": [ 2143, 2142 ] }, + { "id": "end_piece", "fg": [ 2145, 2147, 2146, 2144 ] }, + { "id": "unconnected", "fg": [ 2152, 2152 ] } ] }, { "id": "t_grass_season_autumn", - "fg": 2157, + "fg": 2168, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2142 }, - { "id": "corner", "fg": [ 2144, 2146, 2145, 2143 ] }, - { "id": "t_connection", "fg": [ 2154, 2156, 2155, 2153 ] }, - { "id": "edge", "fg": [ 2148, 2147 ] }, - { "id": "end_piece", "fg": [ 2150, 2152, 2151, 2149 ] }, - { "id": "unconnected", "fg": [ 2157, 2157 ] } + { "id": "center", "fg": 2153 }, + { "id": "corner", "fg": [ 2155, 2157, 2156, 2154 ] }, + { "id": "t_connection", "fg": [ 2165, 2167, 2166, 2164 ] }, + { "id": "edge", "fg": [ 2159, 2158 ] }, + { "id": "end_piece", "fg": [ 2161, 2163, 2162, 2160 ] }, + { "id": "unconnected", "fg": [ 2168, 2168 ] } ] }, { "id": "t_lava", "animated": true, "fg": [ - { "weight": 15, "sprite": 2158 }, - { "weight": 15, "sprite": 2159 }, - { "weight": 15, "sprite": 2160 }, - { "weight": 15, "sprite": 2161 } + { "weight": 15, "sprite": 2169 }, + { "weight": 15, "sprite": 2170 }, + { "weight": 15, "sprite": 2171 }, + { "weight": 15, "sprite": 2172 } ], "rotates": false }, @@ -5852,522 +5852,522 @@ "id": "tr_lava", "animated": true, "fg": [ - { "weight": 15, "sprite": 2158 }, - { "weight": 15, "sprite": 2159 }, - { "weight": 15, "sprite": 2160 }, - { "weight": 15, "sprite": 2161 } + { "weight": 15, "sprite": 2169 }, + { "weight": 15, "sprite": 2170 }, + { "weight": 15, "sprite": 2171 }, + { "weight": 15, "sprite": 2172 } ], "rotates": false }, { "id": "t_metal_railing", - "fg": 2176, - "bg": 1887, + "fg": 2187, + "bg": 1897, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2176, "bg": 1887 }, - { "id": "corner", "fg": [ 2163, 2165, 2164, 2162 ], "bg": 1887 }, - { "id": "t_connection", "fg": [ 2166, 2167, 2166, 2167 ], "bg": 1887 }, - { "id": "edge", "fg": [ 2167, 2166 ], "bg": 1887 }, - { "id": "end_piece", "fg": [ 2169, 2171, 2170, 2168 ], "bg": 1887 }, - { "id": "unconnected", "fg": [ 2176, 2176 ], "bg": 1887 } + { "id": "center", "fg": 2187, "bg": 1897 }, + { "id": "corner", "fg": [ 2174, 2176, 2175, 2173 ], "bg": 1897 }, + { "id": "t_connection", "fg": [ 2177, 2178, 2177, 2178 ], "bg": 1897 }, + { "id": "edge", "fg": [ 2178, 2177 ], "bg": 1897 }, + { "id": "end_piece", "fg": [ 2180, 2182, 2181, 2179 ], "bg": 1897 }, + { "id": "unconnected", "fg": [ 2187, 2187 ], "bg": 1897 } ] }, - { "id": "t_moss_season_spring", "fg": 2178 }, - { "id": "t_moss_season_summer", "fg": 2179 }, - { "id": "t_moss_season_autumn", "fg": 2177 }, - { "id": "t_moss_season_winter", "fg": 2180 }, + { "id": "t_moss_season_spring", "fg": 2189 }, + { "id": "t_moss_season_summer", "fg": 2190 }, + { "id": "t_moss_season_autumn", "fg": 2188 }, + { "id": "t_moss_season_winter", "fg": 2191 }, { "id": "t_palisade_gate_season_spring", - "fg": 2181, - "bg": 2066, + "fg": 2192, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2181, "bg": 2066 }, - { "id": "t_connection", "fg": [ 2181, 2184, 2181, 2184 ], "bg": 2066 }, - { "id": "edge", "fg": [ 2184, 2181 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2184, 2181, 2184, 2181 ], "bg": 2066 }, - { "id": "h", "fg": [ 2181, 2181 ], "bg": 2066 } + { "id": "center", "fg": 2192, "bg": 2077 }, + { "id": "t_connection", "fg": [ 2192, 2195, 2192, 2195 ], "bg": 2077 }, + { "id": "edge", "fg": [ 2195, 2192 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2195, 2192, 2195, 2192 ], "bg": 2077 }, + { "id": "h", "fg": [ 2192, 2192 ], "bg": 2077 } ] }, { "id": "t_palisade_gate_season_summer", - "fg": 2181, - "bg": 2068, + "fg": 2192, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2181, "bg": 2068 }, - { "id": "t_connection", "fg": [ 2181, 2184, 2181, 2184 ], "bg": 2068 }, - { "id": "edge", "fg": [ 2184, 2181 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2184, 2181, 2184, 2181 ], "bg": 2068 }, - { "id": "h", "fg": [ 2181, 2181 ], "bg": 2068 } + { "id": "center", "fg": 2192, "bg": 2079 }, + { "id": "t_connection", "fg": [ 2192, 2195, 2192, 2195 ], "bg": 2079 }, + { "id": "edge", "fg": [ 2195, 2192 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2195, 2192, 2195, 2192 ], "bg": 2079 }, + { "id": "h", "fg": [ 2192, 2192 ], "bg": 2079 } ] }, { "id": "t_palisade_gate_season_autumn", - "fg": 2181, - "bg": 2067, + "fg": 2192, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2181, "bg": 2067 }, - { "id": "t_connection", "fg": [ 2181, 2184, 2181, 2184 ], "bg": 2067 }, - { "id": "edge", "fg": [ 2184, 2181 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2184, 2181, 2184, 2181 ], "bg": 2067 }, - { "id": "h", "fg": [ 2181, 2181 ], "bg": 2067 } + { "id": "center", "fg": 2192, "bg": 2078 }, + { "id": "t_connection", "fg": [ 2192, 2195, 2192, 2195 ], "bg": 2078 }, + { "id": "edge", "fg": [ 2195, 2192 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2195, 2192, 2195, 2192 ], "bg": 2078 }, + { "id": "h", "fg": [ 2192, 2192 ], "bg": 2078 } ] }, { "id": "t_palisade_gate_season_winter", - "fg": 2181, - "bg": 2069, + "fg": 2192, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2181, "bg": 2069 }, - { "id": "t_connection", "fg": [ 2181, 2184, 2181, 2184 ], "bg": 2069 }, - { "id": "edge", "fg": [ 2184, 2181 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2184, 2181, 2184, 2181 ], "bg": 2069 }, - { "id": "h", "fg": [ 2181, 2181 ], "bg": 2069 } + { "id": "center", "fg": 2192, "bg": 2080 }, + { "id": "t_connection", "fg": [ 2192, 2195, 2192, 2195 ], "bg": 2080 }, + { "id": "edge", "fg": [ 2195, 2192 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2195, 2192, 2195, 2192 ], "bg": 2080 }, + { "id": "h", "fg": [ 2192, 2192 ], "bg": 2080 } ] }, { "id": "t_palisade_gate_o_season_spring", - "fg": 2182, - "bg": 2066, + "fg": 2193, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2182, "bg": 2066 }, - { "id": "t_connection", "fg": [ 2182, 2183, 2182, 2183 ], "bg": 2066 }, - { "id": "edge", "fg": [ 2183, 2182 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2183, 2182, 2183, 2182 ], "bg": 2066 }, - { "id": "h", "fg": [ 2182, 2182 ], "bg": 2066 } + { "id": "center", "fg": 2193, "bg": 2077 }, + { "id": "t_connection", "fg": [ 2193, 2194, 2193, 2194 ], "bg": 2077 }, + { "id": "edge", "fg": [ 2194, 2193 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2194, 2193, 2194, 2193 ], "bg": 2077 }, + { "id": "h", "fg": [ 2193, 2193 ], "bg": 2077 } ] }, { "id": "t_palisade_gate_o_season_summer", - "fg": 2182, - "bg": 2068, + "fg": 2193, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2182, "bg": 2068 }, - { "id": "t_connection", "fg": [ 2182, 2183, 2182, 2183 ], "bg": 2068 }, - { "id": "edge", "fg": [ 2183, 2182 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2183, 2182, 2183, 2182 ], "bg": 2068 }, - { "id": "h", "fg": [ 2182, 2182 ], "bg": 2068 } + { "id": "center", "fg": 2193, "bg": 2079 }, + { "id": "t_connection", "fg": [ 2193, 2194, 2193, 2194 ], "bg": 2079 }, + { "id": "edge", "fg": [ 2194, 2193 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2194, 2193, 2194, 2193 ], "bg": 2079 }, + { "id": "h", "fg": [ 2193, 2193 ], "bg": 2079 } ] }, { "id": "t_palisade_gate_o_season_autumn", - "fg": 2182, - "bg": 2067, + "fg": 2193, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2182, "bg": 2067 }, - { "id": "t_connection", "fg": [ 2182, 2183, 2182, 2183 ], "bg": 2067 }, - { "id": "edge", "fg": [ 2183, 2182 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2183, 2182, 2183, 2182 ], "bg": 2067 }, - { "id": "h", "fg": [ 2182, 2182 ], "bg": 2067 } + { "id": "center", "fg": 2193, "bg": 2078 }, + { "id": "t_connection", "fg": [ 2193, 2194, 2193, 2194 ], "bg": 2078 }, + { "id": "edge", "fg": [ 2194, 2193 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2194, 2193, 2194, 2193 ], "bg": 2078 }, + { "id": "h", "fg": [ 2193, 2193 ], "bg": 2078 } ] }, { "id": "t_palisade_gate_o_season_winter", - "fg": 2182, - "bg": 2069, + "fg": 2193, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2182, "bg": 2069 }, - { "id": "t_connection", "fg": [ 2182, 2183, 2182, 2183 ], "bg": 2069 }, - { "id": "edge", "fg": [ 2183, 2182 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2183, 2182, 2183, 2182 ], "bg": 2069 }, - { "id": "h", "fg": [ 2182, 2182 ], "bg": 2069 } + { "id": "center", "fg": 2193, "bg": 2080 }, + { "id": "t_connection", "fg": [ 2193, 2194, 2193, 2194 ], "bg": 2080 }, + { "id": "edge", "fg": [ 2194, 2193 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2194, 2193, 2194, 2193 ], "bg": 2080 }, + { "id": "h", "fg": [ 2193, 2193 ], "bg": 2080 } ] }, { "id": "t_privacy_fence_season_spring", - "fg": 2190, - "bg": 2066, + "fg": 2201, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2190, "bg": 2066 }, - { "id": "corner", "fg": [ 2186, 2188, 2187, 2185 ], "bg": 2066 }, - { "id": "t_connection", "fg": [ 2190, 2189, 2190, 2189 ], "bg": 2066 }, - { "id": "edge", "fg": [ 2189, 2190 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2189, 2190, 2189, 2190 ], "bg": 2066 }, - { "id": "unconnected", "fg": [ 2190, 2190 ], "bg": 2066 } + { "id": "center", "fg": 2201, "bg": 2077 }, + { "id": "corner", "fg": [ 2197, 2199, 2198, 2196 ], "bg": 2077 }, + { "id": "t_connection", "fg": [ 2201, 2200, 2201, 2200 ], "bg": 2077 }, + { "id": "edge", "fg": [ 2200, 2201 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2200, 2201, 2200, 2201 ], "bg": 2077 }, + { "id": "unconnected", "fg": [ 2201, 2201 ], "bg": 2077 } ] }, { "id": "t_privacy_fence_season_summer", - "fg": 2190, - "bg": 2068, + "fg": 2201, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2190, "bg": 2068 }, - { "id": "corner", "fg": [ 2186, 2188, 2187, 2185 ], "bg": 2068 }, - { "id": "t_connection", "fg": [ 2190, 2189, 2190, 2189 ], "bg": 2068 }, - { "id": "edge", "fg": [ 2189, 2190 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2189, 2190, 2189, 2190 ], "bg": 2068 }, - { "id": "unconnected", "fg": [ 2190, 2190 ], "bg": 2068 } + { "id": "center", "fg": 2201, "bg": 2079 }, + { "id": "corner", "fg": [ 2197, 2199, 2198, 2196 ], "bg": 2079 }, + { "id": "t_connection", "fg": [ 2201, 2200, 2201, 2200 ], "bg": 2079 }, + { "id": "edge", "fg": [ 2200, 2201 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2200, 2201, 2200, 2201 ], "bg": 2079 }, + { "id": "unconnected", "fg": [ 2201, 2201 ], "bg": 2079 } ] }, { "id": "t_privacy_fence_season_autumn", - "fg": 2190, - "bg": 2067, + "fg": 2201, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2190, "bg": 2067 }, - { "id": "corner", "fg": [ 2186, 2188, 2187, 2185 ], "bg": 2067 }, - { "id": "t_connection", "fg": [ 2190, 2189, 2190, 2189 ], "bg": 2067 }, - { "id": "edge", "fg": [ 2189, 2190 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2189, 2190, 2189, 2190 ], "bg": 2067 }, - { "id": "unconnected", "fg": [ 2190, 2190 ], "bg": 2067 } + { "id": "center", "fg": 2201, "bg": 2078 }, + { "id": "corner", "fg": [ 2197, 2199, 2198, 2196 ], "bg": 2078 }, + { "id": "t_connection", "fg": [ 2201, 2200, 2201, 2200 ], "bg": 2078 }, + { "id": "edge", "fg": [ 2200, 2201 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2200, 2201, 2200, 2201 ], "bg": 2078 }, + { "id": "unconnected", "fg": [ 2201, 2201 ], "bg": 2078 } ] }, { "id": "t_privacy_fence_season_winter", - "fg": 2190, - "bg": 2069, + "fg": 2201, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2190, "bg": 2069 }, - { "id": "corner", "fg": [ 2186, 2188, 2187, 2185 ], "bg": 2069 }, - { "id": "t_connection", "fg": [ 2190, 2189, 2190, 2189 ], "bg": 2069 }, - { "id": "edge", "fg": [ 2189, 2190 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2189, 2190, 2189, 2190 ], "bg": 2069 }, - { "id": "unconnected", "fg": [ 2190, 2190 ], "bg": 2069 } + { "id": "center", "fg": 2201, "bg": 2080 }, + { "id": "corner", "fg": [ 2197, 2199, 2198, 2196 ], "bg": 2080 }, + { "id": "t_connection", "fg": [ 2201, 2200, 2201, 2200 ], "bg": 2080 }, + { "id": "edge", "fg": [ 2200, 2201 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2200, 2201, 2200, 2201 ], "bg": 2080 }, + { "id": "unconnected", "fg": [ 2201, 2201 ], "bg": 2080 } ] }, { "id": "t_privacy_fencegate_c", - "fg": 2191, - "bg": 2066, + "fg": 2202, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2191, "bg": 2066 }, - { "id": "t_connection", "fg": [ 2191, 2192, 2191, 2192 ], "bg": 2066 }, - { "id": "edge", "fg": [ 2192, 2191 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2192, 2191, 2192, 2191 ], "bg": 2066 }, - { "id": "h", "fg": [ 2191, 2191 ], "bg": 2066 } + { "id": "center", "fg": 2202, "bg": 2077 }, + { "id": "t_connection", "fg": [ 2202, 2203, 2202, 2203 ], "bg": 2077 }, + { "id": "edge", "fg": [ 2203, 2202 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2203, 2202, 2203, 2202 ], "bg": 2077 }, + { "id": "h", "fg": [ 2202, 2202 ], "bg": 2077 } ] }, { "id": "t_privacy_fencegate_o_season_spring", - "fg": 2193, - "bg": 2066, + "fg": 2204, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2193, "bg": 2066 }, - { "id": "t_connection", "fg": [ 2193, 2194, 2193, 2194 ], "bg": 2066 }, - { "id": "edge", "fg": [ 2194, 2193 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2194, 2193, 2194, 2193 ], "bg": 2066 }, - { "id": "h", "fg": [ 2193, 2193 ], "bg": 2066 } + { "id": "center", "fg": 2204, "bg": 2077 }, + { "id": "t_connection", "fg": [ 2204, 2205, 2204, 2205 ], "bg": 2077 }, + { "id": "edge", "fg": [ 2205, 2204 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2205, 2204, 2205, 2204 ], "bg": 2077 }, + { "id": "h", "fg": [ 2204, 2204 ], "bg": 2077 } ] }, { "id": "t_privacy_fencegate_o_season_summer", - "fg": 2193, - "bg": 2068, + "fg": 2204, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2193, "bg": 2068 }, - { "id": "t_connection", "fg": [ 2193, 2194, 2193, 2194 ], "bg": 2068 }, - { "id": "edge", "fg": [ 2194, 2193 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2194, 2193, 2194, 2193 ], "bg": 2068 }, - { "id": "h", "fg": [ 2193, 2193 ], "bg": 2068 } + { "id": "center", "fg": 2204, "bg": 2079 }, + { "id": "t_connection", "fg": [ 2204, 2205, 2204, 2205 ], "bg": 2079 }, + { "id": "edge", "fg": [ 2205, 2204 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2205, 2204, 2205, 2204 ], "bg": 2079 }, + { "id": "h", "fg": [ 2204, 2204 ], "bg": 2079 } ] }, { "id": "t_privacy_fencegate_o_season_autumn", - "fg": 2193, - "bg": 2067, + "fg": 2204, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2193, "bg": 2067 }, - { "id": "t_connection", "fg": [ 2193, 2194, 2193, 2194 ], "bg": 2067 }, - { "id": "edge", "fg": [ 2194, 2193 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2194, 2193, 2194, 2193 ], "bg": 2067 }, - { "id": "h", "fg": [ 2193, 2193 ], "bg": 2067 } + { "id": "center", "fg": 2204, "bg": 2078 }, + { "id": "t_connection", "fg": [ 2204, 2205, 2204, 2205 ], "bg": 2078 }, + { "id": "edge", "fg": [ 2205, 2204 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2205, 2204, 2205, 2204 ], "bg": 2078 }, + { "id": "h", "fg": [ 2204, 2204 ], "bg": 2078 } ] }, { "id": "t_privacy_fencegate_o_season_winter", - "fg": 2193, - "bg": 2069, + "fg": 2204, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2193, "bg": 2069 }, - { "id": "t_connection", "fg": [ 2193, 2194, 2193, 2194 ], "bg": 2069 }, - { "id": "edge", "fg": [ 2194, 2193 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2194, 2193, 2194, 2193 ], "bg": 2069 }, - { "id": "h", "fg": [ 2193, 2193 ], "bg": 2069 } + { "id": "center", "fg": 2204, "bg": 2080 }, + { "id": "t_connection", "fg": [ 2204, 2205, 2204, 2205 ], "bg": 2080 }, + { "id": "edge", "fg": [ 2205, 2204 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2205, 2204, 2205, 2204 ], "bg": 2080 }, + { "id": "h", "fg": [ 2204, 2204 ], "bg": 2080 } ] }, { "id": "t_railing", - "fg": 2205, - "bg": 1925, + "fg": 2216, + "bg": 1935, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2205, "bg": 1925 }, - { "id": "corner", "fg": [ 2196, 2198, 2197, 2195 ], "bg": 1925 }, - { "id": "t_connection", "fg": [ 2199, 2200, 2199, 2200 ], "bg": 1925 }, - { "id": "edge", "fg": [ 2200, 2199 ], "bg": 1925 }, - { "id": "end_piece", "fg": [ 2202, 2204, 2203, 2201 ], "bg": 1925 }, - { "id": "unconnected", "fg": [ 2205, 2205 ], "bg": 1925 } + { "id": "center", "fg": 2216, "bg": 1935 }, + { "id": "corner", "fg": [ 2207, 2209, 2208, 2206 ], "bg": 1935 }, + { "id": "t_connection", "fg": [ 2210, 2211, 2210, 2211 ], "bg": 1935 }, + { "id": "edge", "fg": [ 2211, 2210 ], "bg": 1935 }, + { "id": "end_piece", "fg": [ 2213, 2215, 2214, 2212 ], "bg": 1935 }, + { "id": "unconnected", "fg": [ 2216, 2216 ], "bg": 1935 } ] }, { "id": "t_splitrail_fence_season_spring", - "fg": 2216, - "bg": 2066, + "fg": 2227, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2216, "bg": 2066 }, - { "id": "corner", "fg": [ 2207, 2209, 2208, 2206 ], "bg": 2066 }, - { "id": "t_connection", "fg": [ 2210, 2211, 2210, 2211 ], "bg": 2066 }, - { "id": "edge", "fg": [ 2211, 2210 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2213, 2215, 2214, 2212 ], "bg": 2066 }, - { "id": "unconnected", "fg": [ 2216, 2216 ], "bg": 2066 } + { "id": "center", "fg": 2227, "bg": 2077 }, + { "id": "corner", "fg": [ 2218, 2220, 2219, 2217 ], "bg": 2077 }, + { "id": "t_connection", "fg": [ 2221, 2222, 2221, 2222 ], "bg": 2077 }, + { "id": "edge", "fg": [ 2222, 2221 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2224, 2226, 2225, 2223 ], "bg": 2077 }, + { "id": "unconnected", "fg": [ 2227, 2227 ], "bg": 2077 } ] }, { "id": "t_splitrail_fence_season_summer", - "fg": 2216, - "bg": 2068, + "fg": 2227, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2216, "bg": 2068 }, - { "id": "corner", "fg": [ 2207, 2209, 2208, 2206 ], "bg": 2068 }, - { "id": "t_connection", "fg": [ 2210, 2211, 2210, 2211 ], "bg": 2068 }, - { "id": "edge", "fg": [ 2211, 2210 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2213, 2215, 2214, 2212 ], "bg": 2068 }, - { "id": "unconnected", "fg": [ 2216, 2216 ], "bg": 2068 } + { "id": "center", "fg": 2227, "bg": 2079 }, + { "id": "corner", "fg": [ 2218, 2220, 2219, 2217 ], "bg": 2079 }, + { "id": "t_connection", "fg": [ 2221, 2222, 2221, 2222 ], "bg": 2079 }, + { "id": "edge", "fg": [ 2222, 2221 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2224, 2226, 2225, 2223 ], "bg": 2079 }, + { "id": "unconnected", "fg": [ 2227, 2227 ], "bg": 2079 } ] }, { "id": "t_splitrail_fence_season_autumn", - "fg": 2216, - "bg": 2067, + "fg": 2227, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2216, "bg": 2067 }, - { "id": "corner", "fg": [ 2207, 2209, 2208, 2206 ], "bg": 2067 }, - { "id": "t_connection", "fg": [ 2210, 2211, 2210, 2211 ], "bg": 2067 }, - { "id": "edge", "fg": [ 2211, 2210 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2213, 2215, 2214, 2212 ], "bg": 2067 }, - { "id": "unconnected", "fg": [ 2216, 2216 ], "bg": 2067 } + { "id": "center", "fg": 2227, "bg": 2078 }, + { "id": "corner", "fg": [ 2218, 2220, 2219, 2217 ], "bg": 2078 }, + { "id": "t_connection", "fg": [ 2221, 2222, 2221, 2222 ], "bg": 2078 }, + { "id": "edge", "fg": [ 2222, 2221 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2224, 2226, 2225, 2223 ], "bg": 2078 }, + { "id": "unconnected", "fg": [ 2227, 2227 ], "bg": 2078 } ] }, { "id": "t_splitrail_fence_season_winter", - "fg": 2216, - "bg": 2069, + "fg": 2227, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2216, "bg": 2069 }, - { "id": "corner", "fg": [ 2207, 2209, 2208, 2206 ], "bg": 2069 }, - { "id": "t_connection", "fg": [ 2210, 2211, 2210, 2211 ], "bg": 2069 }, - { "id": "edge", "fg": [ 2211, 2210 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2213, 2215, 2214, 2212 ], "bg": 2069 }, - { "id": "unconnected", "fg": [ 2216, 2216 ], "bg": 2069 } + { "id": "center", "fg": 2227, "bg": 2080 }, + { "id": "corner", "fg": [ 2218, 2220, 2219, 2217 ], "bg": 2080 }, + { "id": "t_connection", "fg": [ 2221, 2222, 2221, 2222 ], "bg": 2080 }, + { "id": "edge", "fg": [ 2222, 2221 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2224, 2226, 2225, 2223 ], "bg": 2080 }, + { "id": "unconnected", "fg": [ 2227, 2227 ], "bg": 2080 } ] }, { "id": "t_splitrail_fencegate_c_season_spring", - "fg": 2218, - "bg": 2066, + "fg": 2229, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2218, "bg": 2066 }, - { "id": "edge", "fg": [ 2219, 2217 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2217, 2219, 2217, 2219 ], "bg": 2066 }, - { "id": "unconnected", "fg": [ 2218, 2218 ], "bg": 2066 } + { "id": "center", "fg": 2229, "bg": 2077 }, + { "id": "edge", "fg": [ 2230, 2228 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2228, 2230, 2228, 2230 ], "bg": 2077 }, + { "id": "unconnected", "fg": [ 2229, 2229 ], "bg": 2077 } ] }, { "id": "t_splitrail_fencegate_c_season_summer", - "fg": 2218, - "bg": 2068, + "fg": 2229, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2218, "bg": 2068 }, - { "id": "edge", "fg": [ 2219, 2217 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2217, 2219, 2217, 2219 ], "bg": 2068 }, - { "id": "unconnected", "fg": [ 2218, 2218 ], "bg": 2068 } + { "id": "center", "fg": 2229, "bg": 2079 }, + { "id": "edge", "fg": [ 2230, 2228 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2228, 2230, 2228, 2230 ], "bg": 2079 }, + { "id": "unconnected", "fg": [ 2229, 2229 ], "bg": 2079 } ] }, { "id": "t_splitrail_fencegate_c_season_autumn", - "fg": 2218, - "bg": 2067, + "fg": 2229, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2218, "bg": 2067 }, - { "id": "edge", "fg": [ 2219, 2217 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2217, 2219, 2217, 2219 ], "bg": 2067 }, - { "id": "unconnected", "fg": [ 2218, 2218 ], "bg": 2067 } + { "id": "center", "fg": 2229, "bg": 2078 }, + { "id": "edge", "fg": [ 2230, 2228 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2228, 2230, 2228, 2230 ], "bg": 2078 }, + { "id": "unconnected", "fg": [ 2229, 2229 ], "bg": 2078 } ] }, { "id": "t_splitrail_fencegate_c_season_winter", - "fg": 2218, - "bg": 2069, + "fg": 2229, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2218, "bg": 2069 }, - { "id": "edge", "fg": [ 2219, 2217 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2217, 2219, 2217, 2219 ], "bg": 2069 }, - { "id": "unconnected", "fg": [ 2218, 2218 ], "bg": 2069 } + { "id": "center", "fg": 2229, "bg": 2080 }, + { "id": "edge", "fg": [ 2230, 2228 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2228, 2230, 2228, 2230 ], "bg": 2080 }, + { "id": "unconnected", "fg": [ 2229, 2229 ], "bg": 2080 } ] }, { "id": "t_splitrail_fencegate_o_season_spring", - "fg": 2221, - "bg": 2066, + "fg": 2232, + "bg": 2077, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2221, "bg": 2066 }, - { "id": "edge", "fg": [ 2222, 2220 ], "bg": 2066 }, - { "id": "end_piece", "fg": [ 2220, 2222, 2220, 2222 ], "bg": 2066 }, - { "id": "unconnected", "fg": [ 2221, 2221 ], "bg": 2066 } + { "id": "center", "fg": 2232, "bg": 2077 }, + { "id": "edge", "fg": [ 2233, 2231 ], "bg": 2077 }, + { "id": "end_piece", "fg": [ 2231, 2233, 2231, 2233 ], "bg": 2077 }, + { "id": "unconnected", "fg": [ 2232, 2232 ], "bg": 2077 } ] }, { "id": "t_splitrail_fencegate_o_season_summer", - "fg": 2221, - "bg": 2068, + "fg": 2232, + "bg": 2079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2221, "bg": 2068 }, - { "id": "edge", "fg": [ 2222, 2220 ], "bg": 2068 }, - { "id": "end_piece", "fg": [ 2220, 2222, 2220, 2222 ], "bg": 2068 }, - { "id": "unconnected", "fg": [ 2221, 2221 ], "bg": 2068 } + { "id": "center", "fg": 2232, "bg": 2079 }, + { "id": "edge", "fg": [ 2233, 2231 ], "bg": 2079 }, + { "id": "end_piece", "fg": [ 2231, 2233, 2231, 2233 ], "bg": 2079 }, + { "id": "unconnected", "fg": [ 2232, 2232 ], "bg": 2079 } ] }, { "id": "t_splitrail_fencegate_o_season_autumn", - "fg": 2221, - "bg": 2067, + "fg": 2232, + "bg": 2078, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2221, "bg": 2067 }, - { "id": "edge", "fg": [ 2222, 2220 ], "bg": 2067 }, - { "id": "end_piece", "fg": [ 2220, 2222, 2220, 2222 ], "bg": 2067 }, - { "id": "unconnected", "fg": [ 2221, 2221 ], "bg": 2067 } + { "id": "center", "fg": 2232, "bg": 2078 }, + { "id": "edge", "fg": [ 2233, 2231 ], "bg": 2078 }, + { "id": "end_piece", "fg": [ 2231, 2233, 2231, 2233 ], "bg": 2078 }, + { "id": "unconnected", "fg": [ 2232, 2232 ], "bg": 2078 } ] }, { "id": "t_splitrail_fencegate_o_season_winter", - "fg": 2221, - "bg": 2069, + "fg": 2232, + "bg": 2080, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2221, "bg": 2069 }, - { "id": "edge", "fg": [ 2222, 2220 ], "bg": 2069 }, - { "id": "end_piece", "fg": [ 2220, 2222, 2220, 2222 ], "bg": 2069 }, - { "id": "unconnected", "fg": [ 2221, 2221 ], "bg": 2069 } + { "id": "center", "fg": 2232, "bg": 2080 }, + { "id": "edge", "fg": [ 2233, 2231 ], "bg": 2080 }, + { "id": "end_piece", "fg": [ 2231, 2233, 2231, 2233 ], "bg": 2080 }, + { "id": "unconnected", "fg": [ 2232, 2232 ], "bg": 2080 } ] }, - { "id": "tr_beartrap", "fg": 2233, "rotates": false }, - { "id": "tr_beartrap_buried", "fg": 2065, "rotates": false }, - { "id": "tr_blade", "fg": 2241, "rotates": true }, - { "id": "tr_boobytrap", "fg": 2229, "rotates": false }, - { "id": "tr_bubblewrap", "fg": 2240, "rotates": false }, - { "id": "tr_caltrops", "fg": 882, "rotates": false }, - { "id": "tr_cot", "fg": 2225, "rotates": false }, - { "id": "tr_crossbow", "fg": 2235, "rotates": false }, - { "id": "tr_dissector", "fg": 2237, "rotates": false }, - { "id": "tr_drain", "fg": 2232, "rotates": false }, - { "id": "tr_engine", "fg": 2228, "rotates": false }, - { "id": "tr_funnel", "fg": 2226, "rotates": false }, - { "id": "tr_fur_rollmat", "fg": 2224, "rotates": false }, + { "id": "tr_beartrap", "fg": 2244, "rotates": false }, + { "id": "tr_beartrap_buried", "fg": 2076, "rotates": false }, + { "id": "tr_blade", "fg": 2252, "rotates": true }, + { "id": "tr_boobytrap", "fg": 2240, "rotates": false }, + { "id": "tr_bubblewrap", "fg": 2251, "rotates": false }, + { "id": "tr_caltrops", "fg": 883, "rotates": false }, + { "id": "tr_cot", "fg": 2236, "rotates": false }, + { "id": "tr_crossbow", "fg": 2246, "rotates": false }, + { "id": "tr_dissector", "fg": 2248, "rotates": false }, + { "id": "tr_drain", "fg": 2243, "rotates": false }, + { "id": "tr_engine", "fg": 2239, "rotates": false }, + { "id": "tr_funnel", "fg": 2237, "rotates": false }, + { "id": "tr_fur_rollmat", "fg": 2235, "rotates": false }, { "id": "tr_glass_pit", - "fg": 1790, + "fg": 1800, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1785 }, - { "id": "corner", "fg": 1786 }, - { "id": "edge", "fg": 1787 }, - { "id": "t_connection", "fg": 1788 }, - { "id": "end_piece", "fg": 1789 }, - { "id": "unconnected", "fg": 1790 } + { "id": "center", "fg": 1795 }, + { "id": "corner", "fg": 1796 }, + { "id": "edge", "fg": 1797 }, + { "id": "t_connection", "fg": 1798 }, + { "id": "end_piece", "fg": 1799 }, + { "id": "unconnected", "fg": 1800 } ], "rotates": false }, - { "id": "tr_glow", "fg": 2232, "rotates": false }, + { "id": "tr_glow", "fg": 2243, "rotates": false }, { "id": "tr_goo", - "fg": 2247, + "fg": 2258, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2242 }, - { "id": "corner", "fg": 2243 }, - { "id": "edge", "fg": 2244 }, - { "id": "t_connection", "fg": 2245 }, - { "id": "end_piece", "fg": 2246 }, - { "id": "unconnected", "fg": 2247 } + { "id": "center", "fg": 2253 }, + { "id": "corner", "fg": 2254 }, + { "id": "edge", "fg": 2255 }, + { "id": "t_connection", "fg": 2256 }, + { "id": "end_piece", "fg": 2257 }, + { "id": "unconnected", "fg": 2258 } ], "rotates": false }, - { "id": "tr_hum", "fg": 2232, "rotates": false }, - { "id": "tr_landmine_buried", "fg": 2065, "rotates": false }, - { "id": "tr_leather_funnel", "fg": 2239, "rotates": false, "multitile": false }, - { "id": "tr_makeshift_funnel", "fg": 2227, "rotates": false }, - { "id": "tr_nailboard", "fg": 2234, "rotates": false }, + { "id": "tr_hum", "fg": 2243, "rotates": false }, + { "id": "tr_landmine_buried", "fg": 2076, "rotates": false }, + { "id": "tr_leather_funnel", "fg": 2250, "rotates": false, "multitile": false }, + { "id": "tr_makeshift_funnel", "fg": 2238, "rotates": false }, + { "id": "tr_nailboard", "fg": 2245, "rotates": false }, { "id": "tr_pit", - "fg": 1813, + "fg": 1823, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1938 }, - { "id": "corner", "fg": 1939 }, - { "id": "edge", "fg": 1940 }, - { "id": "t_connection", "fg": 1941 }, - { "id": "end_piece", "fg": 1942 }, - { "id": "unconnected", "fg": 1813 } + { "id": "center", "fg": 1948 }, + { "id": "corner", "fg": 1949 }, + { "id": "edge", "fg": 1950 }, + { "id": "t_connection", "fg": 1951 }, + { "id": "end_piece", "fg": 1952 }, + { "id": "unconnected", "fg": 1823 } ], "rotates": false }, - { "id": "tr_rollmat", "fg": 2223, "rotates": false }, - { "id": "tr_shadow", "fg": 2232, "rotates": false }, - { "id": "tr_shotgun_1", "fg": 2236, "rotates": false }, - { "id": "tr_shotgun_2", "fg": 2236, "rotates": false }, - { "id": "tr_sinkhole", "bg": 1813, "rotates": false }, - { "id": "tr_snake", "fg": 2232, "rotates": false }, + { "id": "tr_rollmat", "fg": 2234, "rotates": false }, + { "id": "tr_shadow", "fg": 2243, "rotates": false }, + { "id": "tr_shotgun_1", "fg": 2247, "rotates": false }, + { "id": "tr_shotgun_2", "fg": 2247, "rotates": false }, + { "id": "tr_sinkhole", "bg": 1823, "rotates": false }, + { "id": "tr_snake", "fg": 2243, "rotates": false }, { "id": "tr_spike_pit", - "fg": 1852, + "fg": 1862, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1950 }, - { "id": "corner", "fg": 1951 }, - { "id": "edge", "fg": 1952 }, - { "id": "t_connection", "fg": 1953 }, - { "id": "end_piece", "fg": 1954 }, - { "id": "unconnected", "fg": 1852 } + { "id": "center", "fg": 1960 }, + { "id": "corner", "fg": 1961 }, + { "id": "edge", "fg": 1962 }, + { "id": "t_connection", "fg": 1963 }, + { "id": "end_piece", "fg": 1964 }, + { "id": "unconnected", "fg": 1862 } ], "rotates": false }, - { "id": "tr_temple_flood", "fg": 2230, "rotates": false }, - { "id": "tr_temple_toggle", "fg": 2231, "rotates": false }, - { "id": "tr_tripwire", "fg": 2238, "rotates": false }, + { "id": "tr_temple_flood", "fg": 2241, "rotates": false }, + { "id": "tr_temple_toggle", "fg": 2242, "rotates": false }, + { "id": "tr_tripwire", "fg": 2249, "rotates": false }, { "id": "tr_landmine", "animated": true, - "fg": [ { "weight": 30, "sprite": 2248 }, { "weight": 30, "sprite": 2249 } ], + "fg": [ { "weight": 30, "sprite": 2259 }, { "weight": 30, "sprite": 2260 } ], "rotates": false }, { "id": "tr_portal", "animated": true, "fg": [ - { "weight": 10, "sprite": 2250 }, - { "weight": 10, "sprite": 2251 }, - { "weight": 10, "sprite": 2252 }, - { "weight": 10, "sprite": 2253 }, - { "weight": 10, "sprite": 2254 }, - { "weight": 10, "sprite": 2255 } + { "weight": 10, "sprite": 2261 }, + { "weight": 10, "sprite": 2262 }, + { "weight": 10, "sprite": 2263 }, + { "weight": 10, "sprite": 2264 }, + { "weight": 10, "sprite": 2265 }, + { "weight": 10, "sprite": 2266 } ], "rotates": false }, @@ -6375,2138 +6375,2138 @@ "id": "tr_telepad", "animated": true, "fg": [ - { "weight": 30, "sprite": 2256 }, - { "weight": 30, "sprite": 2257 }, - { "weight": 30, "sprite": 2258 }, - { "weight": 30, "sprite": 2259 } + { "weight": 30, "sprite": 2267 }, + { "weight": 30, "sprite": 2268 }, + { "weight": 30, "sprite": 2269 }, + { "weight": 30, "sprite": 2270 } ], "rotates": false }, { "id": [ "vp_halfboard_cover_right", "vp_halfboard_cover_left" ], - "fg": [ 2489, 2492, 2491, 2490 ], + "fg": [ 2500, 2503, 2502, 2501 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2460, 2463, 2462, 2461 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2471, 2474, 2473, 2472 ] } ] }, { "id": "vp_halfboard_hatch_wheel_left", - "fg": 2500, + "fg": 2511, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2471 } ] + "additional_tiles": [ { "id": "broken", "fg": 2482 } ] }, { "id": "vp_halfboard_hatch_wheel_right", - "fg": 2499, + "fg": 2510, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2470 } ] + "additional_tiles": [ { "id": "broken", "fg": 2481 } ] }, { "id": "vp_halfboard_wheel_left", - "fg": 2502, + "fg": 2513, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2473 } ] + "additional_tiles": [ { "id": "broken", "fg": 2484 } ] }, { "id": "vp_halfboard_wheel_right", - "fg": 2503, + "fg": 2514, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2474 } ] + "additional_tiles": [ { "id": "broken", "fg": 2485 } ] }, { "id": [ "vp_board_wheel_left", "vp_board_nw_edge" ], - "fg": 2483, + "fg": 2494, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2473 } ] + "additional_tiles": [ { "id": "broken", "fg": 2484 } ] }, { "id": [ "vp_board_wheel_right", "vp_board_ne_edge" ], - "fg": 2484, + "fg": 2495, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2474 } ] + "additional_tiles": [ { "id": "broken", "fg": 2485 } ] }, - { "id": "vp_stowboard_wheel_left", "fg": 2506, "rotates": true }, - { "id": "vp_stowboard_wheel_right", "fg": 2507, "rotates": true }, + { "id": "vp_stowboard_wheel_left", "fg": 2517, "rotates": true }, + { "id": "vp_stowboard_wheel_right", "fg": 2518, "rotates": true }, { "id": "vp_windshield_wheel_left", - "fg": 2750, + "fg": 2761, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2732 } ] + "additional_tiles": [ { "id": "broken", "fg": 2743 } ] }, { "id": "vp_windshield_wheel_right", - "fg": 2749, + "fg": 2760, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2731 } ] + "additional_tiles": [ { "id": "broken", "fg": 2742 } ] }, { "id": "vp_windshield_full_wheel_left", - "fg": 2745, + "fg": 2756, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2742 } ] + "additional_tiles": [ { "id": "broken", "fg": 2753 } ] }, { "id": "vp_windshield_full_wheel_right", - "fg": 2746, + "fg": 2757, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2743 } ] + "additional_tiles": [ { "id": "broken", "fg": 2754 } ] }, { "id": "vp_windshield_vertical_2_left", - "fg": 2762, + "fg": 2773, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2742 } ] + "additional_tiles": [ { "id": "broken", "fg": 2753 } ] }, { "id": "vp_windshield_vertical_2_right", - "fg": 2763, + "fg": 2774, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2743 } ] + "additional_tiles": [ { "id": "broken", "fg": 2754 } ] }, { "id": "vp_reaper", - "fg": 2349, + "fg": 2360, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2352 } ] + "additional_tiles": [ { "id": "broken", "fg": 2363 } ] }, { "id": "vp_reaper_advanced", - "fg": 2350, + "fg": 2361, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2351 } ] + "additional_tiles": [ { "id": "broken", "fg": 2362 } ] }, - { "id": [ "reaper" ], "fg": 2349 }, - { "id": [ "reaper_advanced" ], "fg": 2350 }, + { "id": [ "reaper" ], "fg": 2360 }, + { "id": [ "reaper_advanced" ], "fg": 2361 }, { "id": "vp_small_civilian_rotors", - "fg": 2355, + "fg": 2366, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2356 } ] + "additional_tiles": [ { "id": "broken", "fg": 2367 } ] }, { "id": "vp_heavy_duty_military_rotor", - "fg": 2343, + "fg": 2354, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2344 } ] + "additional_tiles": [ { "id": "broken", "fg": 2355 } ] }, { "id": "vp_heavy_duty_military_osprey_rotors", - "fg": 2341, + "fg": 2352, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2342 } ] + "additional_tiles": [ { "id": "broken", "fg": 2353 } ] }, { "id": "vp_heavy_duty_military_blackhawk_rotors", - "fg": 2339, + "fg": 2350, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2340 } ] + "additional_tiles": [ { "id": "broken", "fg": 2351 } ] }, { "id": "vp_aisle_horizontal", - "fg": 2301, + "fg": 2312, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_aisle_lights", - "fg": 2289, + "fg": 2300, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_aisle_vertical", - "fg": 2310, + "fg": 2321, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_alternator_car", - "fg": 2268, + "fg": 2279, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_alternator_motorbike", - "fg": 2268, + "fg": 2279, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_alternator_truck", - "fg": 2268, + "fg": 2279, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_autoclave", - "fg": 2335, + "fg": 2346, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2336 } ] + "additional_tiles": [ { "id": "broken", "fg": 2347 } ] }, { "id": "vp_basketlg", - "fg": 2300, + "fg": 2311, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_basketlg_folding", - "fg": 2300, + "fg": 2311, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_basketsm", - "fg": 2300, + "fg": 2311, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_bed", - "fg": 2291, + "fg": 2302, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_blade_horizontal", - "fg": 2293, + "fg": 2304, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2334 } ] + "additional_tiles": [ { "id": "broken", "fg": 2345 } ] }, { "id": "vp_blade_vertical", - "fg": 2241, + "fg": 2252, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2334 } ] + "additional_tiles": [ { "id": "broken", "fg": 2345 } ] }, { "id": "vp_box", - "fg": 2300, + "fg": 2311, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_cam_control", - "fg": 2284, + "fg": 2295, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_cargo_space", - "fg": 2309, + "fg": 2320, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_chemlab", - "fg": 901, + "fg": 902, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2307 } ] + "additional_tiles": [ { "id": "broken", "fg": 2318 } ] }, { "id": "vp_controls", - "fg": 866, + "fg": 867, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_craft_rig", - "fg": 2306, + "fg": 2317, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2307 } ] + "additional_tiles": [ { "id": "broken", "fg": 2318 } ] }, - { "id": "vp_diesel_engine_i6", "fg": 856, "rotates": true }, - { "id": "vp_diesel_engine_v6", "fg": 856, "rotates": true }, - { "id": "vp_diesel_engine_v8", "fg": 856, "rotates": true }, + { "id": "vp_diesel_engine_i6", "fg": 857, "rotates": true }, + { "id": "vp_diesel_engine_v6", "fg": 857, "rotates": true }, + { "id": "vp_diesel_engine_v8", "fg": 857, "rotates": true }, { "id": "vp_dishwasher", - "fg": 2337, + "fg": 2348, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2338 } ] + "additional_tiles": [ { "id": "broken", "fg": 2349 } ] }, { "id": "vp_door_motor", - "fg": 2287, + "fg": 2298, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_door_wood", - "fg": 2279, + "fg": 2290, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": 2280 }, { "id": "broken", "fg": 2281 } ] + "additional_tiles": [ { "id": "open", "fg": 2291 }, { "id": "broken", "fg": 2292 } ] }, { "id": "vp_drive_by_wire_controls", - "fg": 2285, + "fg": 2296, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, - { "id": "vp_engine_1cyl", "fg": 856, "rotates": true }, - { "id": "vp_engine_1cyl_small", "fg": 856, "rotates": true }, - { "id": "vp_engine_electric", "fg": 856, "rotates": true }, - { "id": "vp_engine_electric_large", "fg": 856, "rotates": true }, - { "id": "vp_engine_electric_small", "fg": 856, "rotates": true }, + { "id": "vp_engine_1cyl", "fg": 857, "rotates": true }, + { "id": "vp_engine_1cyl_small", "fg": 857, "rotates": true }, + { "id": "vp_engine_electric", "fg": 857, "rotates": true }, + { "id": "vp_engine_electric_large", "fg": 857, "rotates": true }, + { "id": "vp_engine_electric_small", "fg": 857, "rotates": true }, { "id": "vp_engine_foot_crank", - "fg": 2299, + "fg": 2310, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_engine_gas_1cyl", - "fg": 2299, + "fg": 2310, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_engine_gas_i4", - "fg": 2299, + "fg": 2310, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_engine_gas_v2", - "fg": 2299, + "fg": 2310, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_engine_gas_v6", - "fg": 2299, + "fg": 2310, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_engine_gas_v8", - "fg": 2299, + "fg": 2310, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, - { "id": "vp_engine_inline4", "fg": 856, "rotates": true }, + { "id": "vp_engine_inline4", "fg": 857, "rotates": true }, { "id": "vp_engine_motor", - "fg": 2299, + "fg": 2310, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_engine_motor_large", - "fg": 2299, + "fg": 2310, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_engine_plasma", - "fg": 2299, + "fg": 2310, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, - { "id": "vp_engine_v12", "fg": 856, "rotates": true }, - { "id": "vp_engine_v6", "fg": 856, "rotates": true }, - { "id": "vp_engine_v8", "fg": 856, "rotates": true }, - { "id": "vp_engine_vtwin", "fg": 856, "rotates": true }, + { "id": "vp_engine_v12", "fg": 857, "rotates": true }, + { "id": "vp_engine_v6", "fg": 857, "rotates": true }, + { "id": "vp_engine_v8", "fg": 857, "rotates": true }, + { "id": "vp_engine_vtwin", "fg": 857, "rotates": true }, { "id": "vp_floodlight", - "fg": 2319, + "fg": 2330, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_foot_pedals", - "fg": 2299, + "fg": 2310, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_frame_wood_cover", - "fg": 2261, + "fg": 2272, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_fusion_gun", - "fg": 2320, + "fg": 2331, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2290 } ] + "additional_tiles": [ { "id": "broken", "fg": 2301 } ] }, { "id": "vp_halfboard_cross", - "fg": 2316, + "fg": 2327, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_hand_rims", - "fg": 777, + "fg": 778, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, - { "id": "vp_hard_plate", "fg": 2313, "rotates": true }, + { "id": "vp_hard_plate", "fg": 2324, "rotates": true }, { "id": "vp_hdhatch", - "fg": 2270, + "fg": 2281, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": 2271 }, { "id": "broken", "fg": 2272 } ] + "additional_tiles": [ { "id": "open", "fg": 2282 }, { "id": "broken", "fg": 2283 } ] }, { "id": "vp_hdroof", - "fg": 2269, + "fg": 2280, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_head_light", - "fg": 2319, + "fg": 2330, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_headlight", - "fg": 2319, + "fg": 2330, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_headlight_reinforced", - "fg": 902, + "fg": 903, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_horn_bicycle", - "fg": 2322, + "fg": 2333, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_horn_big", - "fg": 2321, + "fg": 2332, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_horn_car", - "fg": 2321, + "fg": 2332, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_jumper_cable", - "fg": 2277, + "fg": 2288, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_jumper_cable_heavy", - "fg": 2277, + "fg": 2288, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_kitchen_unit", - "fg": 2345, + "fg": 2356, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2346 } ] + "additional_tiles": [ { "id": "broken", "fg": 2357 } ] }, { "id": "vp_laser_gun", - "fg": 2320, + "fg": 2331, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2290 } ] + "additional_tiles": [ { "id": "broken", "fg": 2301 } ] }, { "id": "vp_light_blue", - "fg": 855, + "fg": 856, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_light_red", - "fg": 854, + "fg": 855, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_lit_aisle_horizontal", - "fg": 2288, + "fg": 2299, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_lit_aisle_vertical", - "fg": 2289, + "fg": 2300, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_metal_wheel", - "fg": 2296, + "fg": 2307, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2303 } ] + "additional_tiles": [ { "id": "broken", "fg": 2314 } ] }, { "id": "vp_minifridge", - "fg": 848, + "fg": 849, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2307 } ] + "additional_tiles": [ { "id": "broken", "fg": 2318 } ] }, { "id": "vp_minireactor", - "fg": 2315, + "fg": 2326, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_mounted_spare_tire", - "fg": 2347, + "fg": 2358, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_muffler", - "fg": 2318, + "fg": 2329, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, - { "id": "vp_plating_bone", "fg": 2282, "rotates": true }, - { "id": "vp_plating_chitin", "fg": 2311, "rotates": true }, - { "id": "vp_plating_hard", "fg": 2313, "rotates": true }, - { "id": "vp_plating_military", "fg": 2325, "rotates": true }, - { "id": "vp_plating_spiked", "fg": 865, "rotates": true }, - { "id": "vp_plating_steel", "fg": 2311, "rotates": true }, - { "id": "vp_plating_superalloy", "fg": 2312, "rotates": true }, - { "id": "vp_plating_wood", "fg": 2324, "rotates": true }, + { "id": "vp_plating_bone", "fg": 2293, "rotates": true }, + { "id": "vp_plating_chitin", "fg": 2322, "rotates": true }, + { "id": "vp_plating_hard", "fg": 2324, "rotates": true }, + { "id": "vp_plating_military", "fg": 2336, "rotates": true }, + { "id": "vp_plating_spiked", "fg": 866, "rotates": true }, + { "id": "vp_plating_steel", "fg": 2322, "rotates": true }, + { "id": "vp_plating_superalloy", "fg": 2323, "rotates": true }, + { "id": "vp_plating_wood", "fg": 2335, "rotates": true }, { "id": "vp_recharge_station", - "fg": 2353, + "fg": 2364, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2354 } ] + "additional_tiles": [ { "id": "broken", "fg": 2365 } ] }, { "id": "vp_reinforced_solar_panel", - "fg": 860, + "fg": 861, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2305 } ] + "additional_tiles": [ { "id": "broken", "fg": 2316 } ] }, { "id": "vp_reinforced_solar_panel_v2", - "fg": 860, + "fg": 861, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2305 } ] + "additional_tiles": [ { "id": "broken", "fg": 2316 } ] }, { "id": "vp_robot_controls", - "fg": 2286, + "fg": 2297, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_roller_drum", - "fg": 2276, + "fg": 2287, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_roof", - "fg": 2292, + "fg": 2303, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_roof_cloth", - "fg": 2292, + "fg": 2303, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_roof_wood", - "fg": 2292, + "fg": 2303, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_saddle", - "fg": 864, + "fg": 865, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_seat_wood", - "fg": 2283, + "fg": 2294, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_seatbelt", - "fg": 868, + "fg": 869, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 867 } ] + "additional_tiles": [ { "id": "broken", "fg": 868 } ] }, { "id": "vp_seatbelt_heavyduty", - "fg": 2326, + "fg": 2337, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 867 } ] + "additional_tiles": [ { "id": "broken", "fg": 868 } ] }, { "id": "vp_solar_panel", - "fg": 859, + "fg": 860, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2304 } ] + "additional_tiles": [ { "id": "broken", "fg": 2315 } ] }, { "id": "vp_solar_panel_v2", - "fg": 859, + "fg": 860, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2304 } ] + "additional_tiles": [ { "id": "broken", "fg": 2315 } ] }, { "id": "vp_solar_panel_v3", - "fg": 859, + "fg": 860, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2304 } ] + "additional_tiles": [ { "id": "broken", "fg": 2315 } ] }, { "id": "vp_spike", - "fg": 2294, + "fg": 2305, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2334 } ] + "additional_tiles": [ { "id": "broken", "fg": 2345 } ] }, - { "id": "vp_steel_plate", "fg": 2311, "rotates": true }, + { "id": "vp_steel_plate", "fg": 2322, "rotates": true }, { "id": "vp_stereo", - "fg": 2273, + "fg": 2284, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2307 } ] + "additional_tiles": [ { "id": "broken", "fg": 2318 } ] }, - { "id": "vp_superalloy_plate", "fg": 2312, "rotates": true }, + { "id": "vp_superalloy_plate", "fg": 2323, "rotates": true }, { "id": "vp_tracker", - "fg": 915, + "fg": 916, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_travois", - "fg": 2278, + "fg": 2289, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_trunk", - "fg": 2302, + "fg": 2313, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_trunk_floor", - "fg": 2309, + "fg": 2320, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_v_curtain", - "fg": 2327, + "fg": 2338, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_veh_forge", - "fg": 2357, + "fg": 2368, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2358 } ] + "additional_tiles": [ { "id": "broken", "fg": 2369 } ] }, { "id": "vp_veh_table", - "fg": 900, + "fg": 901, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_vehicle_alarm", - "fg": 915, + "fg": 916, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2314 } ] + "additional_tiles": [ { "id": "broken", "fg": 2325 } ] }, { "id": "vp_vehicle_scoop", - "fg": 2359, + "fg": 2370, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2360 } ] + "additional_tiles": [ { "id": "broken", "fg": 2371 } ] }, { "id": "vp_washing_machine", - "fg": 2361, + "fg": 2372, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2362 } ] + "additional_tiles": [ { "id": "broken", "fg": 2373 } ] }, { "id": "vp_water_faucet", - "fg": 2328, + "fg": 2339, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2307 } ] + "additional_tiles": [ { "id": "broken", "fg": 2318 } ] }, { "id": "vp_welding_rig", - "fg": 2363, + "fg": 2374, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2364 } ] + "additional_tiles": [ { "id": "broken", "fg": 2375 } ] }, { "id": "vp_wheel", - "fg": 2296, + "fg": 2307, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2303 } ] + "additional_tiles": [ { "id": "broken", "fg": 2314 } ] }, { "id": "vp_wheel_armor", - "fg": 2323, + "fg": 2334, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2303 } ] + "additional_tiles": [ { "id": "broken", "fg": 2314 } ] }, { "id": "vp_wheel_bicycle", - "fg": 2298, + "fg": 2309, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2303 } ] + "additional_tiles": [ { "id": "broken", "fg": 2314 } ] }, { "id": "vp_wheel_caster", - "fg": 2298, + "fg": 2309, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2303 } ] + "additional_tiles": [ { "id": "broken", "fg": 2314 } ] }, { "id": "vp_wheel_motorbike", - "fg": 2295, + "fg": 2306, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2303 } ] + "additional_tiles": [ { "id": "broken", "fg": 2314 } ] }, { "id": "vp_wheel_small", - "fg": 2298, + "fg": 2309, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2303 } ] + "additional_tiles": [ { "id": "broken", "fg": 2314 } ] }, { "id": "vp_wheel_underbody", - "fg": 2296, + "fg": 2307, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2303 } ] + "additional_tiles": [ { "id": "broken", "fg": 2314 } ] }, { "id": "vp_wheel_unicycle", - "fg": 2295, + "fg": 2306, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2303 } ] + "additional_tiles": [ { "id": "broken", "fg": 2314 } ] }, { "id": "vp_wheel_wheelchair", - "fg": 2295, + "fg": 2306, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2303 } ] + "additional_tiles": [ { "id": "broken", "fg": 2314 } ] }, { "id": "vp_wheel_wide", - "fg": 2297, + "fg": 2308, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2303 } ] + "additional_tiles": [ { "id": "broken", "fg": 2314 } ] }, { "id": "vp_wheel_wood", - "fg": 2274, + "fg": 2285, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_wheel_wood_b", - "fg": 2275, + "fg": 2286, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_wing_mirror", - "fg": 2260, + "fg": 2271, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_woodboard_horizontal", - "fg": 2263, + "fg": 2274, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodboard_horizontal_front", - "fg": 2263, + "fg": 2274, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodboard_horizontal_rear", - "fg": 2263, + "fg": 2274, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodboard_ne", - "fg": 2264, + "fg": 2275, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodboard_nw", - "fg": 2266, + "fg": 2277, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodboard_se", - "fg": 2265, + "fg": 2276, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodboard_sw", - "fg": 2267, + "fg": 2278, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodboard_vertical", - "fg": 2262, + "fg": 2273, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodboard_vertical_left", - "fg": 2262, + "fg": 2273, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodboard_vertical_right", - "fg": 2262, + "fg": 2273, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_horizontal", - "fg": 2263, + "fg": 2274, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_horizontal_front", - "fg": 2263, + "fg": 2274, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_horizontal_rear", - "fg": 2263, + "fg": 2274, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_horizontal_2", - "fg": 2263, + "fg": 2274, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_horizontal_2_front", - "fg": 2263, + "fg": 2274, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_horizontal_2_rear", - "fg": 2263, + "fg": 2274, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_ne", - "fg": 2264, + "fg": 2275, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_nw", - "fg": 2266, + "fg": 2277, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_se", - "fg": 2265, + "fg": 2276, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_sw", - "fg": 2267, + "fg": 2278, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_vertical", - "fg": 2262, + "fg": 2273, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_vertical_left", - "fg": 2262, + "fg": 2273, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_vertical_right", - "fg": 2262, + "fg": 2273, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_vertical_2", - "fg": 2262, + "fg": 2273, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_vertical_2_left", - "fg": 2262, + "fg": 2273, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_woodhalfboard_vertical_2_right", - "fg": 2262, + "fg": 2273, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_workbench", - "fg": 2365, + "fg": 2376, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2366 } ] + "additional_tiles": [ { "id": "broken", "fg": 2377 } ] }, { "id": [ "vp_door_left", "vp_door_nw", "vp_door_front_left", "vp_door_sw", "vp_door_rear_left" ], - "fg": [ 2371, 2373, 2372, 2370 ], + "fg": [ 2382, 2384, 2383, 2381 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2387, 2389, 2388, 2386 ] }, - { "id": "broken", "fg": [ 2330, 2332, 2331, 2329 ], "bg": [ 2371, 2373, 2372, 2370 ] } + { "id": "open", "fg": [ 2398, 2400, 2399, 2397 ] }, + { "id": "broken", "fg": [ 2341, 2343, 2342, 2340 ], "bg": [ 2382, 2384, 2383, 2381 ] } ] }, { "id": [ "vp_door_right", "vp_door_ne", "vp_door_front_right", "vp_door_se", "vp_door_rear_right" ], - "fg": [ 2375, 2377, 2376, 2374 ], + "fg": [ 2386, 2388, 2387, 2385 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2431, 2433, 2432, 2430 ] }, - { "id": "broken", "fg": [ 2331, 2329, 2330, 2332 ], "bg": [ 2375, 2377, 2376, 2374 ] } + { "id": "open", "fg": [ 2442, 2444, 2443, 2441 ] }, + { "id": "broken", "fg": [ 2342, 2340, 2341, 2343 ], "bg": [ 2386, 2388, 2387, 2385 ] } ] }, { "id": [ "vp_door_trunk", "vp_hatch" ], - "fg": [ 2434, 2441, 2440, 2439 ], + "fg": [ 2445, 2452, 2451, 2450 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2435, 2438, 2437, 2436 ] }, - { "id": "broken", "fg": [ 2332, 2331, 2333, 2330 ], "bg": [ 2434, 2441, 2440, 2439 ] } + { "id": "open", "fg": [ 2446, 2449, 2448, 2447 ] }, + { "id": "broken", "fg": [ 2343, 2342, 2344, 2341 ], "bg": [ 2445, 2452, 2451, 2450 ] } ] }, { "id": [ "vp_door_rear" ], - "fg": [ 2427, 2429, 2428, 2426 ], + "fg": [ 2438, 2440, 2439, 2437 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2423, 2425, 2424, 2422 ] }, - { "id": "broken", "fg": [ 2332, 2331, 2333, 2330 ], "bg": [ 2427, 2429, 2428, 2426 ] } + { "id": "open", "fg": [ 2434, 2436, 2435, 2433 ] }, + { "id": "broken", "fg": [ 2343, 2342, 2344, 2341 ], "bg": [ 2438, 2440, 2439, 2437 ] } ] }, { "id": [ "vp_door_opaque_left" ], - "fg": [ 2403, 2405, 2404, 2402 ], + "fg": [ 2414, 2416, 2415, 2413 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2399, 2401, 2400, 2398 ] }, - { "id": "broken", "fg": [ 2330, 2332, 2331, 2329 ], "bg": [ 2403, 2405, 2404, 2402 ] } + { "id": "open", "fg": [ 2410, 2412, 2411, 2409 ] }, + { "id": "broken", "fg": [ 2341, 2343, 2342, 2340 ], "bg": [ 2414, 2416, 2415, 2413 ] } ] }, { "id": [ "vp_door_opaque_right" ], - "fg": [ 2419, 2421, 2420, 2418 ], + "fg": [ 2430, 2432, 2431, 2429 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2415, 2417, 2416, 2414 ] }, - { "id": "broken", "fg": [ 2331, 2329, 2330, 2332 ], "bg": [ 2419, 2421, 2420, 2418 ] } + { "id": "open", "fg": [ 2426, 2428, 2427, 2425 ] }, + { "id": "broken", "fg": [ 2342, 2340, 2341, 2343 ], "bg": [ 2430, 2432, 2431, 2429 ] } ] }, { "id": [ "vp_door_opaque_rear" ], - "fg": [ 2411, 2413, 2412, 2410 ], + "fg": [ 2422, 2424, 2423, 2421 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2407, 2409, 2408, 2406 ] }, - { "id": "broken", "fg": [ 2332, 2331, 2333, 2330 ], "bg": [ 2411, 2413, 2412, 2410 ] } + { "id": "open", "fg": [ 2418, 2420, 2419, 2417 ] }, + { "id": "broken", "fg": [ 2343, 2342, 2344, 2341 ], "bg": [ 2422, 2424, 2423, 2421 ] } ] }, { "id": [ "vp_door_internal", "vp_door", "vp_door_inboard" ], - "fg": 2367, + "fg": 2378, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": 2368 }, { "id": "broken", "fg": 2308 } ] + "additional_tiles": [ { "id": "open", "fg": 2379 }, { "id": "broken", "fg": 2319 } ] }, { "id": [ "vp_door_shutter", "vp_door_sliding" ], - "fg": 2369, + "fg": 2380, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": 2368 }, { "id": "broken", "fg": 2308 } ] + "additional_tiles": [ { "id": "open", "fg": 2379 }, { "id": "broken", "fg": 2319 } ] }, { "id": [ "vp_door_full_left", "vp_door_full_nw", "vp_door_full_front_left", "vp_door_full_sw", "vp_door_full_rear_left" ], - "fg": [ 2379, 2381, 2380, 2378 ], + "fg": [ 2390, 2392, 2391, 2389 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2880, 2864, 2881, 2863 ] }, - { "id": "broken", "fg": [ 2330, 2332, 2331, 2329 ], "bg": [ 2379, 2381, 2380, 2378 ] } + { "id": "open", "fg": [ 2896, 2868, 2897, 2867 ] }, + { "id": "broken", "fg": [ 2341, 2343, 2342, 2340 ], "bg": [ 2390, 2392, 2391, 2389 ] } ] }, { "id": [ "vp_door_full_right", "vp_door_full_ne", "vp_door_full_front_right", "vp_door_full_se", "vp_door_full_rear_right" ], - "fg": [ 2383, 2385, 2384, 2382 ], + "fg": [ 2394, 2396, 2395, 2393 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2882, 2866, 2883, 2865 ] }, - { "id": "broken", "fg": [ 2331, 2329, 2330, 2332 ], "bg": [ 2383, 2385, 2384, 2382 ] } + { "id": "open", "fg": [ 2898, 2870, 2899, 2869 ] }, + { "id": "broken", "fg": [ 2342, 2340, 2341, 2343 ], "bg": [ 2394, 2396, 2395, 2393 ] } ] }, { "id": [ "vp_door_opaque_full_left" ], - "fg": [ 2391, 2393, 2392, 2390 ], + "fg": [ 2402, 2404, 2403, 2401 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2884, 2868, 2885, 2867 ] }, - { "id": "broken", "fg": [ 2330, 2332, 2331, 2329 ], "bg": [ 2391, 2393, 2392, 2390 ] } + { "id": "open", "fg": [ 2900, 2872, 2901, 2871 ] }, + { "id": "broken", "fg": [ 2341, 2343, 2342, 2340 ], "bg": [ 2402, 2404, 2403, 2401 ] } ] }, { "id": [ "vp_door_opaque_full_right" ], - "fg": [ 2395, 2397, 2396, 2394 ], + "fg": [ 2406, 2408, 2407, 2405 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2886, 2870, 2887, 2869 ] }, - { "id": "broken", "fg": [ 2331, 2329, 2330, 2332 ], "bg": [ 2395, 2397, 2396, 2394 ] } + { "id": "open", "fg": [ 2902, 2874, 2903, 2873 ] }, + { "id": "broken", "fg": [ 2342, 2340, 2341, 2343 ], "bg": [ 2406, 2408, 2407, 2405 ] } ] }, { "id": [ "vp_external_tank_small" ], - "fg": 2444, + "fg": 2455, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2445 } ] + "additional_tiles": [ { "id": "broken", "fg": 2456 } ] }, { "id": [ "vp_external_tank" ], - "fg": 2442, + "fg": 2453, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2443 } ] + "additional_tiles": [ { "id": "broken", "fg": 2454 } ] }, { "id": "vp_folding_frame", - "fg": 2795, + "fg": 2806, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2334 } ] + "additional_tiles": [ { "id": "broken", "fg": 2345 } ] }, { "id": "vp_frame_cover", - "fg": 2299, + "fg": 2310, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": [ "vp_frame_cross", "vp_frame" ], - "fg": 2449, + "fg": 2460, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, - { "id": "vp_frame_handle", "fg": 2299, "rotates": true }, + { "id": "vp_frame_handle", "fg": 2310, "rotates": true }, { "id": "vp_frame_horizontal", - "fg": 2451, + "fg": 2462, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_horizontal_front", - "fg": 2451, + "fg": 2462, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_horizontal_rear", - "fg": 2451, + "fg": 2462, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_horizontal_2", - "fg": 2451, + "fg": 2462, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_horizontal_2_front", - "fg": 2451, + "fg": 2462, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_horizontal_2_rear", - "fg": 2451, + "fg": 2462, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_ne", - "fg": 2452, + "fg": 2463, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_nw", - "fg": 2453, + "fg": 2464, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_se", - "fg": 2454, + "fg": 2465, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_sw", - "fg": 2455, + "fg": 2466, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_vertical", - "fg": 2450, + "fg": 2461, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_vertical_left", - "fg": 2450, + "fg": 2461, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_vertical_right", - "fg": 2450, + "fg": 2461, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_vertical_2", - "fg": 2450, + "fg": 2461, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_vertical_2_left", - "fg": 2450, + "fg": 2461, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": "vp_frame_vertical_2_right", - "fg": 2450, + "fg": 2461, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 1901 } ] + "additional_tiles": [ { "id": "broken", "fg": 1911 } ] }, { "id": [ "vp_frame_wood_cross", "vp_frame_wood" ], - "fg": 2448, + "fg": 2459, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_handle", - "fg": 2261, + "fg": 2272, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_horizontal", - "fg": 2447, + "fg": 2458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_horizontal_front", - "fg": 2447, + "fg": 2458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_horizontal_rear", - "fg": 2447, + "fg": 2458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_horizontal_2", - "fg": 2447, + "fg": 2458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_horizontal_2_front", - "fg": 2447, + "fg": 2458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_horizontal_2_rear", - "fg": 2447, + "fg": 2458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_cover", - "fg": 2261, + "fg": 2272, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_cross", - "fg": 2448, + "fg": 2459, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_handle", - "fg": 2261, + "fg": 2272, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_horizontal", - "fg": 2447, + "fg": 2458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_horizontal_front", - "fg": 2447, + "fg": 2458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_horizontal_rear", - "fg": 2447, + "fg": 2458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_horizontal_2", - "fg": 2447, + "fg": 2458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_horizontal_2_front", - "fg": 2447, + "fg": 2458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_horizontal_2_rear", - "fg": 2447, + "fg": 2458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_ne", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_nw", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_se", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_sw", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_vertical", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_vertical_left", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_vertical_right", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_vertical_2", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_vertical_2_left", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_light_vertical_2_right", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_ne", - "fg": 2456, + "fg": 2467, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_nw", - "fg": 2457, + "fg": 2468, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_se", - "fg": 2458, + "fg": 2469, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_sw", - "fg": 2459, + "fg": 2470, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_vertical", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_vertical_left", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_vertical_right", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_vertical_2", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_vertical_2_left", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": "vp_frame_wood_vertical_2_right", - "fg": 2446, + "fg": 2457, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2317 } ] + "additional_tiles": [ { "id": "broken", "fg": 2328 } ] }, { "id": [ "vp_halfboard_ne" ], - "fg": 2497, + "fg": 2508, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2468 } ] + "additional_tiles": [ { "id": "broken", "fg": 2479 } ] }, { "id": [ "vp_halfboard_nw" ], - "fg": 2498, + "fg": 2509, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2469 } ] + "additional_tiles": [ { "id": "broken", "fg": 2480 } ] }, { "id": [ "vp_halfboard_se" ], - "fg": 2499, + "fg": 2510, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2470 } ] + "additional_tiles": [ { "id": "broken", "fg": 2481 } ] }, { "id": [ "vp_halfboard_sw" ], - "fg": 2500, + "fg": 2511, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2471 } ] + "additional_tiles": [ { "id": "broken", "fg": 2482 } ] }, { "id": [ "vp_halfboard_vertical_left", "vp_halfboard_vertical_2_left" ], - "fg": 2502, + "fg": 2513, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2473 } ] + "additional_tiles": [ { "id": "broken", "fg": 2484 } ] }, { "id": [ "vp_halfboard_vertical_right", "vp_halfboard_vertical_2_right" ], - "fg": 2503, + "fg": 2514, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2474 } ] + "additional_tiles": [ { "id": "broken", "fg": 2485 } ] }, { "id": [ "vp_halfboard_horizontal", "vp_board_horizontal", "vp_halfboard_horizontal_2" ], - "fg": 2489, + "fg": 2500, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2460 } ] + "additional_tiles": [ { "id": "broken", "fg": 2471 } ] }, { "id": [ "vp_halfboard_horizontal_front", "vp_board_horizontal_front", "vp_halfboard_horizontal_2_front" ], - "fg": [ 2489, 2492, 2491, 2490 ], + "fg": [ 2500, 2503, 2502, 2501 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2460, 2463, 2462, 2461 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2471, 2474, 2473, 2472 ] } ] }, { "id": [ "vp_halfboard_horizontal_rear", "vp_halfboard_horizontal_2_rear" ], - "fg": [ 2493, 2496, 2495, 2494 ], + "fg": [ 2504, 2507, 2506, 2505 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2464, 2467, 2466, 2465 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2475, 2478, 2477, 2476 ] } ] }, { "id": [ "vp_halfboard_vertical", "vp_board_vertical", "vp_halfboard_vertical_2" ], - "fg": 2501, + "fg": 2512, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2472 } ] + "additional_tiles": [ { "id": "broken", "fg": 2483 } ] }, - { "id": "vp_halfboard_cover", "fg": [ 2485, 2488, 2487, 2486 ], "rotates": true }, + { "id": "vp_halfboard_cover", "fg": [ 2496, 2499, 2498, 2497 ], "rotates": true }, { "id": [ "vp_board_ne" ], - "fg": 2479, + "fg": 2490, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2468 } ] + "additional_tiles": [ { "id": "broken", "fg": 2479 } ] }, { "id": [ "vp_board_nw" ], - "fg": 2480, + "fg": 2491, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2469 } ] + "additional_tiles": [ { "id": "broken", "fg": 2480 } ] }, { "id": [ "vp_board_se" ], - "fg": 2481, + "fg": 2492, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2470 } ] + "additional_tiles": [ { "id": "broken", "fg": 2481 } ] }, { "id": [ "vp_board_sw" ], - "fg": 2482, + "fg": 2493, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2471 } ] + "additional_tiles": [ { "id": "broken", "fg": 2482 } ] }, { "id": [ "vp_board_vertical_left" ], - "fg": 2483, + "fg": 2494, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2473 } ] + "additional_tiles": [ { "id": "broken", "fg": 2484 } ] }, { "id": [ "vp_board_vertical_right" ], - "fg": 2484, + "fg": 2495, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2474 } ] + "additional_tiles": [ { "id": "broken", "fg": 2485 } ] }, { "id": [ "vp_board_horizontal_rear" ], - "fg": [ 2475, 2478, 2477, 2476 ], + "fg": [ 2486, 2489, 2488, 2487 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2464, 2467, 2466, 2465 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2475, 2478, 2477, 2476 ] } ] }, - { "id": "vp_stowboard_vertical_left", "fg": 2506, "rotates": true }, - { "id": [ "vp_stowboard_vertical_right", "vp_stowboard_vertical" ], "fg": 2507, "rotates": true }, - { "id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_front" ], "fg": 2504, "rotates": true }, - { "id": [ "vp_stowboard_horizontal_rear" ], "fg": 2505, "rotates": true }, + { "id": "vp_stowboard_vertical_left", "fg": 2517, "rotates": true }, + { "id": [ "vp_stowboard_vertical_right", "vp_stowboard_vertical" ], "fg": 2518, "rotates": true }, + { "id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_front" ], "fg": 2515, "rotates": true }, + { "id": [ "vp_stowboard_horizontal_rear" ], "fg": 2516, "rotates": true }, { "id": [ "vp_hddoor_left" ], - "fg": [ 2509, 2511, 2510, 2508 ], + "fg": [ 2520, 2522, 2521, 2519 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2525, 2527, 2526, 2524 ] }, - { "id": "broken", "fg": [ 2330, 2332, 2331, 2329 ], "bg": [ 2509, 2511, 2510, 2508 ] } + { "id": "open", "fg": [ 2536, 2538, 2537, 2535 ] }, + { "id": "broken", "fg": [ 2341, 2343, 2342, 2340 ], "bg": [ 2520, 2522, 2521, 2519 ] } ] }, { "id": [ "vp_hddoor_right" ], - "fg": [ 2513, 2515, 2514, 2512 ], + "fg": [ 2524, 2526, 2525, 2523 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2569, 2571, 2570, 2568 ] }, - { "id": "broken", "fg": [ 2331, 2329, 2330, 2332 ], "bg": [ 2513, 2515, 2514, 2512 ] } + { "id": "open", "fg": [ 2580, 2582, 2581, 2579 ] }, + { "id": "broken", "fg": [ 2342, 2340, 2341, 2343 ], "bg": [ 2524, 2526, 2525, 2523 ] } ] }, { "id": [ "vp_hddoor_trunk", "vp_hdhatch_opaque" ], - "fg": [ 2572, 2579, 2578, 2577 ], + "fg": [ 2583, 2590, 2589, 2588 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2573, 2576, 2575, 2574 ] }, - { "id": "broken", "fg": [ 2332, 2331, 2333, 2330 ], "bg": [ 2572, 2579, 2578, 2577 ] } + { "id": "open", "fg": [ 2584, 2587, 2586, 2585 ] }, + { "id": "broken", "fg": [ 2343, 2342, 2344, 2341 ], "bg": [ 2583, 2590, 2589, 2588 ] } ] }, { "id": [ "vp_hddoor_rear" ], - "fg": [ 2565, 2567, 2566, 2564 ], + "fg": [ 2576, 2578, 2577, 2575 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2561, 2563, 2562, 2560 ] }, - { "id": "broken", "fg": [ 2332, 2331, 2333, 2330 ], "bg": [ 2565, 2567, 2566, 2564 ] } + { "id": "open", "fg": [ 2572, 2574, 2573, 2571 ] }, + { "id": "broken", "fg": [ 2343, 2342, 2344, 2341 ], "bg": [ 2576, 2578, 2577, 2575 ] } ] }, { "id": [ "vp_hddoor_opaque_left" ], - "fg": [ 2541, 2543, 2542, 2540 ], + "fg": [ 2552, 2554, 2553, 2551 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2537, 2539, 2538, 2536 ] }, - { "id": "broken", "fg": [ 2330, 2332, 2331, 2329 ], "bg": [ 2541, 2543, 2542, 2540 ] } + { "id": "open", "fg": [ 2548, 2550, 2549, 2547 ] }, + { "id": "broken", "fg": [ 2341, 2343, 2342, 2340 ], "bg": [ 2552, 2554, 2553, 2551 ] } ] }, { "id": [ "vp_hddoor_opaque_right" ], - "fg": [ 2557, 2559, 2558, 2556 ], + "fg": [ 2568, 2570, 2569, 2567 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2553, 2555, 2554, 2552 ] }, - { "id": "broken", "fg": [ 2557, 2559, 2558, 2556 ], "bg": [ 2419, 2421, 2420, 2418 ] } + { "id": "open", "fg": [ 2564, 2566, 2565, 2563 ] }, + { "id": "broken", "fg": [ 2568, 2570, 2569, 2567 ], "bg": [ 2430, 2432, 2431, 2429 ] } ] }, { "id": [ "vp_hddoor_opaque_rear" ], - "fg": [ 2549, 2551, 2550, 2548 ], + "fg": [ 2560, 2562, 2561, 2559 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2545, 2547, 2546, 2544 ] }, - { "id": "broken", "fg": [ 2332, 2331, 2333, 2330 ], "bg": [ 2549, 2551, 2550, 2548 ] } + { "id": "open", "fg": [ 2556, 2558, 2557, 2555 ] }, + { "id": "broken", "fg": [ 2343, 2342, 2344, 2341 ], "bg": [ 2560, 2562, 2561, 2559 ] } ] }, { "id": [ "vp_hddoor_full_left" ], - "fg": [ 2517, 2519, 2518, 2516 ], + "fg": [ 2528, 2530, 2529, 2527 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2888, 2872, 2889, 2871 ] }, - { "id": "broken", "fg": [ 2330, 2332, 2331, 2329 ], "bg": [ 2517, 2519, 2518, 2516 ] } + { "id": "open", "fg": [ 2904, 2876, 2905, 2875 ] }, + { "id": "broken", "fg": [ 2341, 2343, 2342, 2340 ], "bg": [ 2528, 2530, 2529, 2527 ] } ] }, { "id": [ "vp_hddoor_full_right" ], - "fg": [ 2521, 2523, 2522, 2520 ], + "fg": [ 2532, 2534, 2533, 2531 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2890, 2874, 2891, 2873 ] }, - { "id": "broken", "fg": [ 2331, 2329, 2330, 2332 ], "bg": [ 2521, 2523, 2522, 2520 ] } + { "id": "open", "fg": [ 2906, 2878, 2907, 2877 ] }, + { "id": "broken", "fg": [ 2342, 2340, 2341, 2343 ], "bg": [ 2532, 2534, 2533, 2531 ] } ] }, { "id": [ "vp_hddoor_opaque_full_left" ], - "fg": [ 2529, 2531, 2530, 2528 ], + "fg": [ 2540, 2542, 2541, 2539 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2892, 2876, 2893, 2875 ] }, - { "id": "broken", "fg": [ 2330, 2332, 2331, 2329 ], "bg": [ 2529, 2531, 2530, 2528 ] } + { "id": "open", "fg": [ 2908, 2880, 2909, 2879 ] }, + { "id": "broken", "fg": [ 2341, 2343, 2342, 2340 ], "bg": [ 2540, 2542, 2541, 2539 ] } ] }, { "id": [ "vp_hddoor_opaque_full_right" ], - "fg": [ 2533, 2535, 2534, 2532 ], + "fg": [ 2544, 2546, 2545, 2543 ], "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 2894, 2878, 2895, 2877 ] }, - { "id": "broken", "fg": [ 2533, 2535, 2534, 2532 ], "bg": [ 2419, 2421, 2420, 2418 ] } + { "id": "open", "fg": [ 2910, 2882, 2911, 2881 ] }, + { "id": "broken", "fg": [ 2544, 2546, 2545, 2543 ], "bg": [ 2430, 2432, 2431, 2429 ] } ] }, { "id": "vp_hdframe_cover", - "fg": 2584, + "fg": 2595, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_cross", - "fg": 2582, + "fg": 2593, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_horizontal", - "fg": 2581, + "fg": 2592, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_horizontal_front", - "fg": 2581, + "fg": 2592, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_horizontal_rear", - "fg": 2581, + "fg": 2592, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_horizontal_2", - "fg": 2581, + "fg": 2592, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_horizontal_2_front", - "fg": 2581, + "fg": 2592, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_horizontal_2_rear", - "fg": 2581, + "fg": 2592, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_ne", - "fg": 2585, + "fg": 2596, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_nw", - "fg": 2586, + "fg": 2597, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_se", - "fg": 2587, + "fg": 2598, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_sw", - "fg": 2588, + "fg": 2599, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_vertical", - "fg": 2580, + "fg": 2591, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_vertical_left", - "fg": 2580, + "fg": 2591, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_vertical_right", - "fg": 2580, + "fg": 2591, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_vertical_2", - "fg": 2580, + "fg": 2591, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_vertical_2_left", - "fg": 2580, + "fg": 2591, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": "vp_hdframe_vertical_2_right", - "fg": 2580, + "fg": 2591, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2583 } ] + "additional_tiles": [ { "id": "broken", "fg": 2594 } ] }, { "id": [ "vp_hdhalfboard_ne", "vp_hdboard_ne" ], - "fg": 2616, + "fg": 2627, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2597 } ] + "additional_tiles": [ { "id": "broken", "fg": 2608 } ] }, { "id": [ "vp_hdhalfboard_nw", "vp_hdboard_nw" ], - "fg": 2617, + "fg": 2628, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2598 } ] + "additional_tiles": [ { "id": "broken", "fg": 2609 } ] }, { "id": [ "vp_hdhalfboard_se", "vp_hdboard_se" ], - "fg": 2618, + "fg": 2629, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2599 } ] + "additional_tiles": [ { "id": "broken", "fg": 2610 } ] }, { "id": [ "vp_hdhalfboard_sw", "vp_hdboard_sw" ], - "fg": 2619, + "fg": 2630, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2600 } ] + "additional_tiles": [ { "id": "broken", "fg": 2611 } ] }, { "id": [ "vp_hdhalfboard_vertical_left", "vp_hdboard_vertical_left", "vp_hdhalfboard_vertical_2_left" ], - "fg": 2621, + "fg": 2632, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2602 } ] + "additional_tiles": [ { "id": "broken", "fg": 2613 } ] }, { "id": [ "vp_hdhalfboard_vertical_right", "vp_hdboard_vertical_right", "vp_hdhalfboard_vertical_2_right" ], - "fg": 2622, + "fg": 2633, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2603 } ] + "additional_tiles": [ { "id": "broken", "fg": 2614 } ] }, { "id": [ "vp_hdhalfboard_horizontal", "vp_hdboard_horizontal", "vp_hdhalfboard_horizontal_2" ], - "fg": 2608, + "fg": 2619, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2589 } ] + "additional_tiles": [ { "id": "broken", "fg": 2600 } ] }, { "id": [ "vp_hdhalfboard_horizontal_front", "vp_hdboard_horizontal_front", "vp_hdhalfboard_horizontal_2_front" ], - "fg": [ 2608, 2611, 2610, 2609 ], + "fg": [ 2619, 2622, 2621, 2620 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2589, 2592, 2591, 2590 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2600, 2603, 2602, 2601 ] } ] }, { "id": [ "vp_hdhalfboard_horizontal_rear", "vp_hdboard_horizontal_rear", "vp_hdhalfboard_horizontal_2_rear" ], - "fg": [ 2612, 2615, 2614, 2613 ], + "fg": [ 2623, 2626, 2625, 2624 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2593, 2596, 2595, 2594 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2604, 2607, 2606, 2605 ] } ] }, { "id": [ "vp_hdhalfboard_vertical", "vp_hdboard_vertical", "vp_hdhalfboard_vertical_2" ], - "fg": 2620, + "fg": 2631, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2601 } ] + "additional_tiles": [ { "id": "broken", "fg": 2612 } ] }, - { "id": "vp_hdhalfboard_cover", "fg": [ 2604, 2607, 2606, 2605 ], "rotates": true }, - { "id": "vp_hdstowboard_vertical_left", "fg": 2625, "rotates": true }, - { "id": [ "vp_hdstowboard_vertical_right", "vp_hdstowboard_vertical" ], "fg": 2626, "rotates": true }, - { "id": [ "vp_hdstowboard_horizontal", "vp_hdstowboard_horizontal_front" ], "fg": 2623, "rotates": true }, - { "id": [ "vp_hdstowboard_horizontal_rear" ], "fg": 2624, "rotates": true }, - { "id": "vp_ram_wood", "fg": 2632, "rotates": true }, - { "id": "vp_ram_steel", "fg": 2631, "rotates": true }, - { "id": "vp_ram_spiked", "fg": 2630, "rotates": true }, - { "id": "vp_ram_hardsteel", "fg": 2628, "rotates": true }, - { "id": "vp_ram_alloy", "fg": 2627, "rotates": true }, - { "id": "vp_ram_military", "fg": 2629, "rotates": true }, - { "id": "vp_spike_wood", "fg": 2633, "rotates": true }, + { "id": "vp_hdhalfboard_cover", "fg": [ 2615, 2618, 2617, 2616 ], "rotates": true }, + { "id": "vp_hdstowboard_vertical_left", "fg": 2636, "rotates": true }, + { "id": [ "vp_hdstowboard_vertical_right", "vp_hdstowboard_vertical" ], "fg": 2637, "rotates": true }, + { "id": [ "vp_hdstowboard_horizontal", "vp_hdstowboard_horizontal_front" ], "fg": 2634, "rotates": true }, + { "id": [ "vp_hdstowboard_horizontal_rear" ], "fg": 2635, "rotates": true }, + { "id": "vp_ram_wood", "fg": 2643, "rotates": true }, + { "id": "vp_ram_steel", "fg": 2642, "rotates": true }, + { "id": "vp_ram_spiked", "fg": 2641, "rotates": true }, + { "id": "vp_ram_hardsteel", "fg": 2639, "rotates": true }, + { "id": "vp_ram_alloy", "fg": 2638, "rotates": true }, + { "id": "vp_ram_military", "fg": 2640, "rotates": true }, + { "id": "vp_spike_wood", "fg": 2644, "rotates": true }, { "id": [ "vp_folding_seat", "vp_reclining_seat", "vp_seat" ], "rotates": true, - "fg": [ 2697, 2695, 2690, 2696 ], + "fg": [ 2708, 2706, 2701, 2707 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2649, 2647, 2642, 2648 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2660, 2658, 2653, 2659 ] } ] }, { "id": [ "vp_seat_leather", "vp_reclining_seat_leather" ], "rotates": true, - "fg": [ 2694, 2692, 2691, 2693 ], + "fg": [ 2705, 2703, 2702, 2704 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2646, 2644, 2643, 2645 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2657, 2655, 2654, 2656 ] } ] }, { "id": "vp_seat_back", - "fg": [ 2688, 2689, 2650, 2651 ], + "fg": [ 2699, 2700, 2661, 2662 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2640, 2641, 2634, 2635 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2651, 2652, 2645, 2646 ] } ] }, { "id": "vp_seat_back_right", - "fg": [ 2684, 2686, 2680, 2682 ], + "fg": [ 2695, 2697, 2691, 2693 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2685, 2687, 2681, 2683 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2696, 2698, 2692, 2694 ] } ] }, { "id": "vp_seat_back_left", - "fg": [ 2676, 2678, 2672, 2674 ], + "fg": [ 2687, 2689, 2683, 2685 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2677, 2679, 2673, 2675 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2688, 2690, 2684, 2686 ] } ] }, { "id": "vp_seat_back_leather", - "fg": [ 2670, 2671, 2652, 2653 ], + "fg": [ 2681, 2682, 2663, 2664 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2638, 2639, 2636, 2637 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2649, 2650, 2647, 2648 ] } ] }, { "id": "vp_seat_leat_back_leather_right", - "fg": [ 2666, 2668, 2662, 2664 ], + "fg": [ 2677, 2679, 2673, 2675 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2667, 2669, 2663, 2665 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2678, 2680, 2674, 2676 ] } ] }, { "id": "vp_seat_back_leather_left", - "fg": [ 2658, 2660, 2654, 2656 ], + "fg": [ 2669, 2671, 2665, 2667 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2659, 2661, 2655, 2657 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2670, 2672, 2666, 2668 ] } ] }, { "id": "vp_seat_back_vertical_right", - "fg": [ 2682, 2684, 2686, 2680 ], + "fg": [ 2693, 2695, 2697, 2691 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2683, 2685, 2687, 2681 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2694, 2696, 2698, 2692 ] } ] }, { "id": "vp_seat_back_vertical_left", - "fg": [ 2674, 2676, 2678, 2672 ], + "fg": [ 2685, 2687, 2689, 2683 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2675, 2677, 2679, 2673 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2686, 2688, 2690, 2684 ] } ] }, { "id": "vp_seat_back_leather_vertical_right", - "fg": [ 2664, 2666, 2668, 2662 ], + "fg": [ 2675, 2677, 2679, 2673 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2657, 2659, 2661, 2655 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2668, 2670, 2672, 2666 ] } ] }, { "id": "vp_seat_back_leather_vertical_left", - "fg": [ 2656, 2658, 2660, 2654 ], + "fg": [ 2667, 2669, 2671, 2665 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2657, 2659, 2661, 2655 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2668, 2670, 2672, 2666 ] } ] }, { "id": [ "vp_seed_drill" ], - "fg": [ 2700, 2704, 2702, 2698 ], + "fg": [ 2711, 2715, 2713, 2709 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2701, 2705, 2703, 2699 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2712, 2716, 2714, 2710 ] } ] }, { "id": [ "vp_seed_drill_advanced" ], - "fg": [ 2708, 2712, 2710, 2706 ], + "fg": [ 2719, 2723, 2721, 2717 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2709, 2713, 2711, 2707 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2720, 2724, 2722, 2718 ] } ] }, { "id": [ @@ -8523,127 +8523,127 @@ "vp_mounted_m60_semi" ], "//": "rifles and machineguns", - "fg": 2718, + "fg": 2729, "multitile": true, "rotates": true, - "additional_tiles": [ { "id": "broken", "fg": 2719, "bg": [ ] } ] + "additional_tiles": [ { "id": "broken", "fg": 2730, "bg": [ ] } ] }, { "id": [ "vp_mounted_emp_gun", "vp_mounted_plasma_gun", "vp_plasma_gun", "vp_laser_rifle" ], "//": "energy weapons", - "fg": 2714, + "fg": 2725, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2715 } ] + "additional_tiles": [ { "id": "broken", "fg": 2726 } ] }, { "id": [ "vp_mounted_hk_g80", "vp_mounted_coilgun" ], "//": "railguns", - "fg": 2722, + "fg": 2733, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2723 } ] + "additional_tiles": [ { "id": "broken", "fg": 2734 } ] }, { "id": [ "vp_mounted_bigun", "vp_mounted_m134" ], "//": "multibarrel weapons", - "fg": 2720, + "fg": 2731, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "bg": 2721 } ] + "additional_tiles": [ { "id": "broken", "bg": 2732 } ] }, { "id": [ "vp_flamethrower", "vp_mounted_chemical_thrower" ], "//": "liquid sprayers", - "fg": 2716, + "fg": 2727, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2717 } ] + "additional_tiles": [ { "id": "broken", "fg": 2728 } ] }, { "id": [ "vp_tow_launcher" ], "//": "rocket tubes", - "fg": 2724, + "fg": 2735, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2725 } ] + "additional_tiles": [ { "id": "broken", "fg": 2736 } ] }, { "id": "vp_watercannon", - "fg": 2726, + "fg": 2737, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2727 } ] + "additional_tiles": [ { "id": "broken", "fg": 2738 } ] }, { "id": [ "vp_windshield", "vp_windshield_horizontal", "vp_windshield_horizontal_front", "vp_windshield_front_edge" ], - "fg": 2747, + "fg": 2758, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2729 } ] + "additional_tiles": [ { "id": "broken", "fg": 2740 } ] }, { "id": [ "vp_windshield_horizontal_rear" ], - "fg": 2748, + "fg": 2759, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2730 } ] + "additional_tiles": [ { "id": "broken", "fg": 2741 } ] }, { "id": [ "vp_windshield_nw", "vp_windshield_nw_edge" ], - "fg": 2750, + "fg": 2761, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2732 } ] + "additional_tiles": [ { "id": "broken", "fg": 2743 } ] }, { "id": [ "vp_windshield_ne", "vp_windshield_ne_edge" ], - "fg": 2749, + "fg": 2760, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2731 } ] + "additional_tiles": [ { "id": "broken", "fg": 2742 } ] }, { "id": [ "vp_windshield_sw_edge", "vp_windshield_sw" ], - "fg": 2761, + "fg": 2772, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2741 } ] + "additional_tiles": [ { "id": "broken", "fg": 2752 } ] }, { "id": [ "vp_windshield_se_edge", "vp_windshield_se" ], - "fg": 2760, + "fg": 2771, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2740 } ] + "additional_tiles": [ { "id": "broken", "fg": 2751 } ] }, { "id": [ "vp_windshield_vertical_left", "vp_windshield_left" ], - "fg": 2762, + "fg": 2773, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2742 } ] + "additional_tiles": [ { "id": "broken", "fg": 2753 } ] }, { "id": [ "vp_windshield_vertical_right", "vp_windshield_right" ], - "fg": 2763, + "fg": 2774, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2743 } ] + "additional_tiles": [ { "id": "broken", "fg": 2754 } ] }, { "id": [ "vp_windshield_full_vertical_left", "vp_windshield_full_left" ], - "fg": 2745, + "fg": 2756, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2742 } ] + "additional_tiles": [ { "id": "broken", "fg": 2753 } ] }, { "id": [ "vp_windshield_full_vertical_right", "vp_windshield_full_right" ], - "fg": 2746, + "fg": 2757, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2743 } ] + "additional_tiles": [ { "id": "broken", "fg": 2754 } ] }, { "id": [ @@ -8652,311 +8652,322 @@ "vp_reinforced_windshield_horizontal_front", "vp_reinforced_windshield_front_edge" ], - "fg": 2744, + "fg": 2755, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2728 } ] + "additional_tiles": [ { "id": "broken", "fg": 2739 } ] }, { "id": [ "vp_reinforced_windshield_horizontal_rear" ], - "fg": 2753, + "fg": 2764, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2733 } ] + "additional_tiles": [ { "id": "broken", "fg": 2744 } ] }, { "id": "vp_reinforced_windshield_nw", - "fg": 2755, + "fg": 2766, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2735 } ] + "additional_tiles": [ { "id": "broken", "fg": 2746 } ] }, { "id": "vp_reinforced_windshield_ne", - "fg": 2754, + "fg": 2765, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2734 } ] + "additional_tiles": [ { "id": "broken", "fg": 2745 } ] }, { "id": [ "vp_reinforced_windshield_sw_edge", "vp_reinforced_windshield_sw" ], - "fg": 2757, + "fg": 2768, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2737 } ] + "additional_tiles": [ { "id": "broken", "fg": 2748 } ] }, { "id": [ "vp_reinforced_windshield_se_edge", "vp_reinforced_windshield_se" ], - "fg": 2756, + "fg": 2767, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2736 } ] + "additional_tiles": [ { "id": "broken", "fg": 2747 } ] }, { "id": [ "vp_reinforced_windshield_vertical_left", "vp_reinforced_windshield_left" ], - "fg": 2758, + "fg": 2769, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2738 } ] + "additional_tiles": [ { "id": "broken", "fg": 2749 } ] }, { "id": [ "vp_reinforced_windshield_vertical_right", "vp_reinforced_windshield_right" ], - "fg": 2759, + "fg": 2770, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2739 } ] + "additional_tiles": [ { "id": "broken", "fg": 2750 } ] }, { "id": [ "vp_reinforced_windshield_full_vertical_left", "vp_reinforced_windshield_full_left" ], - "fg": 2751, + "fg": 2762, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2738 } ] + "additional_tiles": [ { "id": "broken", "fg": 2749 } ] }, { "id": [ "vp_reinforced_windshield_full_vertical_right", "vp_reinforced_windshield_full_right" ], - "fg": 2752, + "fg": 2763, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2739 } ] + "additional_tiles": [ { "id": "broken", "fg": 2750 } ] }, { "id": [ "vp_xlhalfboard_ne", "vp_xlboard_ne" ], - "fg": 2787, + "fg": 2798, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2772 } ] + "additional_tiles": [ { "id": "broken", "fg": 2783 } ] }, { "id": [ "vp_xlhalfboard_nw", "vp_xlboard_nw" ], - "fg": 2788, + "fg": 2799, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2773 } ] + "additional_tiles": [ { "id": "broken", "fg": 2784 } ] }, { "id": [ "vp_xlhalfboard_se", "vp_xlboard_se" ], - "fg": 2789, + "fg": 2800, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2774 } ] + "additional_tiles": [ { "id": "broken", "fg": 2785 } ] }, { "id": [ "vp_xlhalfboard_sw", "vp_xlboard_sw" ], - "fg": 2790, + "fg": 2801, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2775 } ] + "additional_tiles": [ { "id": "broken", "fg": 2786 } ] }, { "id": [ "vp_xlhalfboard_vertical_left", "vp_xlboard_vertical_left", "vp_xlhalfboard_vertical_2_left" ], - "fg": 2792, + "fg": 2803, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2777 } ] + "additional_tiles": [ { "id": "broken", "fg": 2788 } ] }, { "id": [ "vp_xlhalfboard_vertical_right", "vp_xlboard_vertical_right", "vp_xlhalfboard_vertical_2_right" ], - "fg": 2793, + "fg": 2804, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2778 } ] + "additional_tiles": [ { "id": "broken", "fg": 2789 } ] }, { "id": [ "vp_xlhalfboard_horizontal", "vp_xlboard_horizontal", "vp_xlhalfboard_horizontal_2" ], - "fg": 2779, + "fg": 2790, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2764 } ] + "additional_tiles": [ { "id": "broken", "fg": 2775 } ] }, { "id": [ "vp_xlhalfboard_horizontal_front", "vp_xlboard_horizontal_front", "vp_xlhalfboard_horizontal_2_front" ], - "fg": [ 2779, 2782, 2781, 2780 ], + "fg": [ 2790, 2793, 2792, 2791 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2764, 2767, 2766, 2765 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2775, 2778, 2777, 2776 ] } ] }, { "id": [ "vp_xlhalfboard_horizontal_rear", "vp_xlboard_horizontal_rear", "vp_xlhalfboard_horizontal_2_rear" ], - "fg": [ 2783, 2786, 2785, 2784 ], + "fg": [ 2794, 2797, 2796, 2795 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 2768, 2771, 2770, 2769 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 2779, 2782, 2781, 2780 ] } ] }, { "id": [ "vp_xlhalfboard_vertical", "vp_xlboard_vertical", "vp_xlhalfboard_vertical_2" ], - "fg": 2791, + "fg": 2802, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2776 } ] + "additional_tiles": [ { "id": "broken", "fg": 2787 } ] }, { "id": [ "vp_xlframe_cross", "vp_xlframe" ], - "fg": 2797, + "fg": 2808, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2796, "bg": 2797 } ] + "additional_tiles": [ { "id": "broken", "fg": 2807, "bg": 2808 } ] }, { "id": "vp_xlframe_horizontal", - "fg": 2795, + "fg": 2806, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2796, "bg": 2795 } ] + "additional_tiles": [ { "id": "broken", "fg": 2807, "bg": 2806 } ] }, { "id": "vp_xlframe_horizontal_front", - "fg": 2795, + "fg": 2806, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2796, "bg": 2795 } ] + "additional_tiles": [ { "id": "broken", "fg": 2807, "bg": 2806 } ] }, { "id": "vp_xlframe_horizontal_rear", - "fg": 2795, + "fg": 2806, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2796, "bg": 2795 } ] + "additional_tiles": [ { "id": "broken", "fg": 2807, "bg": 2806 } ] }, { "id": "vp_xlframe_horizontal_2", - "fg": 2795, + "fg": 2806, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2796, "bg": 2795 } ] + "additional_tiles": [ { "id": "broken", "fg": 2807, "bg": 2806 } ] }, { "id": "vp_xlframe_horizontal_2_front", - "fg": 2795, + "fg": 2806, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2796, "bg": 2795 } ] + "additional_tiles": [ { "id": "broken", "fg": 2807, "bg": 2806 } ] }, { "id": "vp_xlframe_horizontal_2_rear", - "fg": 2795, + "fg": 2806, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2796, "bg": 2795 } ] + "additional_tiles": [ { "id": "broken", "fg": 2807, "bg": 2806 } ] }, { "id": "vp_xlframe_ne", - "fg": 2798, + "fg": 2809, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2334 } ] + "additional_tiles": [ { "id": "broken", "fg": 2345 } ] }, { "id": "vp_xlframe_nw", - "fg": 2799, + "fg": 2810, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2334 } ] + "additional_tiles": [ { "id": "broken", "fg": 2345 } ] }, { "id": "vp_xlframe_se", - "fg": 2800, + "fg": 2811, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2796, "bg": 2800 } ] + "additional_tiles": [ { "id": "broken", "fg": 2807, "bg": 2811 } ] }, { "id": "vp_xlframe_sw", - "fg": 2801, + "fg": 2812, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2334 } ] + "additional_tiles": [ { "id": "broken", "fg": 2345 } ] }, { "id": "vp_xlframe_vertical", - "fg": 2794, + "fg": 2805, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2796, "bg": 2794 } ] + "additional_tiles": [ { "id": "broken", "fg": 2807, "bg": 2805 } ] }, { "id": "vp_xlframe_vertical_left", - "fg": 2794, + "fg": 2805, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2796, "bg": 2794 } ] + "additional_tiles": [ { "id": "broken", "fg": 2807, "bg": 2805 } ] }, { "id": "vp_xlframe_vertical_right", - "fg": 2794, + "fg": 2805, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2796, "bg": 2794 } ] + "additional_tiles": [ { "id": "broken", "fg": 2807, "bg": 2805 } ] }, { "id": "vp_xlframe_vertical_2", - "fg": 2794, + "fg": 2805, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2334 } ] + "additional_tiles": [ { "id": "broken", "fg": 2345 } ] }, { "id": "vp_xlframe_vertical_2_left", - "fg": 2794, + "fg": 2805, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2334 } ] + "additional_tiles": [ { "id": "broken", "fg": 2345 } ] }, { "id": "vp_xlframe_vertical_2_right", - "fg": 2794, - "rotates": true, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 2334 } ] - }, - { "id": "f_bigmirror", "fg": 356 }, - { "id": "f_birdbath", "fg": 357 }, - { "id": "f_rack_coat", "fg": 360 }, - { "id": "f_rotary_clothesline", "fg": 361 }, - { "id": "f_workbench", "fg": 362 }, - { "id": "1992_katana_0", "fg": 843 }, - { "id": "30gal_drum", "fg": 851 }, - { "id": "55gal_drum", "fg": 884 }, - { "id": "autoclave", "fg": 946 }, - { "id": "heavy_duty_military_rotor", "fg": 950 }, - { "id": "it_battery_mount", "fg": 951 }, - { "id": "large_storage_battery", "fg": 952 }, - { "id": "medium_storage_battery", "fg": 957 }, - { "id": "mirror", "fg": 958 }, - { "id": "omnicamera", "fg": 960 }, - { "id": "small_helicopter_rotor", "fg": 963 }, - { "id": "storage_battery", "fg": 965 }, - { "id": "turret_mount", "fg": 966 }, - { "id": "v_scoop_item", "fg": 967 }, - { "id": "vh_autoclave", "fg": 968 }, - { "id": "1989_helmet_lobster_0", "fg": 1019 }, - { "id": "entry_suit", "fg": 1263 }, - { "id": "judo_belt_black", "fg": 1265 }, - { "id": "motorbike_armor", "fg": 1266 }, - { "id": "shark_suit", "fg": 1267 }, - { "id": "mon_chicken_chick", "fg": 1612 }, - { "id": "mon_cockatrice", "fg": 1613 }, - { "id": "mon_cockatrice_chick", "fg": 1614 }, - { "id": "mon_crow_chick", "fg": 1615 }, - { "id": "mon_crow_mutant_small", "fg": 1616 }, - { "id": "mon_duck_chick", "fg": 1617 }, - { "id": "mon_goose_canadian", "fg": 1619 }, - { "id": "mon_goose_canadian_chick", "fg": 1620 }, - { "id": "mon_grouse", "fg": 1622 }, - { "id": "mon_grouse_chick", "fg": 1623 }, - { "id": "mon_pheasant", "fg": 1624 }, - { "id": "mon_pheasant_chick", "fg": 1625 }, - { "id": "mon_pigeon", "fg": 1626 }, - { "id": "mon_turkey_chick", "fg": 1629 }, - { "id": "mon_zombie_horse", "fg": 1643 }, - { "id": "mon_zow", "fg": 1667 }, - { "id": "t_wood_stairs_down", "fg": 2024 }, - { "id": "t_wood_stairs_up", "fg": 2025 }, - { "id": "t_metal_railing_t_connection_e", "fg": 2172 }, - { "id": "t_metal_railing_t_connection_n", "fg": 2173 }, - { "id": "t_metal_railing_t_connection_s", "fg": 2174 }, - { "id": "t_metal_railing_t_connection_w", "fg": 2175 }, - { "id": "vp_omnicam", "fg": 2348 } + "fg": 2805, + "rotates": true, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 2345 } ] + }, + { "id": "graffiti", "fg": 2 }, + { "id": "f_bigmirror", "fg": 357 }, + { "id": "f_birdbath", "fg": 358 }, + { "id": "f_rack_coat", "fg": 361 }, + { "id": "f_rotary_clothesline", "fg": 362 }, + { "id": "f_workbench", "fg": 363 }, + { "id": "1992_katana_0", "fg": 844 }, + { "id": "30gal_drum", "fg": 852 }, + { "id": "55gal_drum", "fg": 885 }, + { "id": "autoclave", "fg": 947 }, + { "id": "bathroom_scale", "fg": 948 }, + { "id": "feces_bird", "fg": 950 }, + { "id": "feces_cow", "fg": 951 }, + { "id": "feces_dog", "fg": 952 }, + { "id": "feces_manure", "fg": 953 }, + { "id": "feces_roach", "fg": 954 }, + { "id": "heavy_duty_military_rotor", "fg": 957 }, + { "id": "it_battery_mount", "fg": 958 }, + { "id": "large_storage_battery", "fg": 959 }, + { "id": "medium_storage_battery", "fg": 964 }, + { "id": "mirror", "fg": 965 }, + { "id": "omnicamera", "fg": 967 }, + { "id": "rock_large", "fg": 969 }, + { "id": "ruined_chunks", "fg": 970 }, + { "id": "small_helicopter_rotor", "fg": 972 }, + { "id": "storage_battery", "fg": 974 }, + { "id": "turret_mount", "fg": 975 }, + { "id": "v_scoop_item", "fg": 976 }, + { "id": "vh_autoclave", "fg": 977 }, + { "id": "water", "fg": 978 }, + { "id": "1989_helmet_lobster_0", "fg": 1029 }, + { "id": "entry_suit", "fg": 1273 }, + { "id": "judo_belt_black", "fg": 1275 }, + { "id": "motorbike_armor", "fg": 1276 }, + { "id": "shark_suit", "fg": 1277 }, + { "id": "mon_chicken_chick", "fg": 1622 }, + { "id": "mon_cockatrice", "fg": 1623 }, + { "id": "mon_cockatrice_chick", "fg": 1624 }, + { "id": "mon_crow_chick", "fg": 1625 }, + { "id": "mon_crow_mutant_small", "fg": 1626 }, + { "id": "mon_duck_chick", "fg": 1627 }, + { "id": "mon_goose_canadian", "fg": 1629 }, + { "id": "mon_goose_canadian_chick", "fg": 1630 }, + { "id": "mon_grouse", "fg": 1632 }, + { "id": "mon_grouse_chick", "fg": 1633 }, + { "id": "mon_pheasant", "fg": 1634 }, + { "id": "mon_pheasant_chick", "fg": 1635 }, + { "id": "mon_pigeon", "fg": 1636 }, + { "id": "mon_turkey_chick", "fg": 1639 }, + { "id": "mon_zombie_horse", "fg": 1653 }, + { "id": "mon_zow", "fg": 1677 }, + { "id": "t_railroad_rubble", "fg": 2025 }, + { "id": "t_wood_stairs_down", "fg": 2035 }, + { "id": "t_wood_stairs_up", "fg": 2036 }, + { "id": "t_metal_railing_t_connection_e", "fg": 2183 }, + { "id": "t_metal_railing_t_connection_n", "fg": 2184 }, + { "id": "t_metal_railing_t_connection_s", "fg": 2185 }, + { "id": "t_metal_railing_t_connection_w", "fg": 2186 }, + { "id": "vp_omnicam", "fg": 2359 } ] }, { @@ -8994,32 +9005,36 @@ }, { "file": "toped.png", - "//": "range 2848 to 2879", + "//": "range 2848 to 2895", "sprite_width": 20, "sprite_height": 25, "sprite_offset_x": -1, "sprite_offset_y": -5, "tiles": [ - { "id": [ "overlay_male_crouch", "overlay_female_crouch" ], "fg": 2848 }, - { "id": "overlay_effect_badpoison", "fg": 2849 }, - { "id": "overlay_effect_bleed", "fg": 2850 }, - { "id": "overlay_effect_blisters", "fg": 2851 }, - { "id": "overlay_effect_cold", "fg": 2852 }, - { "id": "overlay_effect_deaf", "fg": 2853 }, - { "id": "overlay_effect_downed", "fg": 2854 }, - { "id": "overlay_effect_frostbite", "fg": 2855 }, - { "id": "overlay_effect_fungus", "fg": 2856 }, - { "id": "overlay_effect_grabbed", "fg": 2857 }, - { "id": "overlay_effect_hot", "fg": 2858 }, - { "id": "overlay_effect_onfire", "fg": 2859 }, - { "id": "overlay_effect_poison", "fg": 2860 }, - { "id": "overlay_effect_stunned", "fg": 2861 }, - { "id": "overlay_run", "fg": 2862 } + { "id": [ "overlay_male_crouch", "overlay_female_crouch" ], "fg": 2852 }, + { "id": "mon_claygolem", "fg": 2848 }, + { "id": "mon_irongolem", "fg": 2849 }, + { "id": "mon_plasticgolem", "fg": 2850 }, + { "id": "mon_stonegolem", "fg": 2851 }, + { "id": "overlay_effect_badpoison", "fg": 2853 }, + { "id": "overlay_effect_bleed", "fg": 2854 }, + { "id": "overlay_effect_blisters", "fg": 2855 }, + { "id": "overlay_effect_cold", "fg": 2856 }, + { "id": "overlay_effect_deaf", "fg": 2857 }, + { "id": "overlay_effect_downed", "fg": 2858 }, + { "id": "overlay_effect_frostbite", "fg": 2859 }, + { "id": "overlay_effect_fungus", "fg": 2860 }, + { "id": "overlay_effect_grabbed", "fg": 2861 }, + { "id": "overlay_effect_hot", "fg": 2862 }, + { "id": "overlay_effect_onfire", "fg": 2863 }, + { "id": "overlay_effect_poison", "fg": 2864 }, + { "id": "overlay_effect_stunned", "fg": 2865 }, + { "id": "overlay_run", "fg": 2866 } ] }, { "file": "wide.png", - "//": "range 2880 to 2895", + "//": "range 2896 to 2911", "sprite_width": 25, "sprite_height": 20, "sprite_offset_x": -5, @@ -9028,31 +9043,42 @@ }, { "file": "mods.png", - "//": "range 2896 to 2943", + "//": "range 2912 to 2959", "tiles": [ - { "id": "mon_dragon_black_wyrmling", "fg": 2900 }, - { "id": "mon_dragon_black_young", "fg": 2901 }, - { "id": "mon_dragon_black_adult", "fg": 2899 }, - { "id": "mon_demon_spiderling", "fg": 2898 }, - { "id": "mon_demon_spider", "fg": 2896 }, - { "id": "mon_demon_spider_queen", "fg": 2897 }, + { "id": "mon_dragon_black_wyrmling", "fg": 2920 }, + { "id": "mon_dragon_black_young", "fg": 2921 }, + { "id": "mon_dragon_black_adult", "fg": 2919 }, + { "id": "mon_demon_spiderling", "fg": 2918 }, + { "id": "mon_demon_spider", "fg": 2916 }, + { "id": "mon_demon_spider_queen", "fg": 2917 }, + { + "id": "mon_leprechaun", + "animated": true, + "fg": [ + { "weight": 15, "sprite": 2926 }, + { "weight": 15, "sprite": 2927 }, + { "weight": 15, "sprite": 2926 }, + { "weight": 15, "sprite": 2928 } + ], + "rotates": false + }, { "id": [ "explosion_auroral_wave" ], - "fg": 2903, + "fg": 2930, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 2902 }, { "id": "edge", "fg": 2903 } ] + "additional_tiles": [ { "id": "corner", "fg": 2929 }, { "id": "edge", "fg": 2930 } ] }, { "id": [ "explosion_cone_cold", "explosion_auroral_wave_cold", "explosion_frozen_winds" ], - "fg": 2905, + "fg": 2932, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 2904 }, { "id": "edge", "fg": 2905 } ] + "additional_tiles": [ { "id": "corner", "fg": 2931 }, { "id": "edge", "fg": 2932 } ] }, { "id": [ "explosion_lightning_bolt", "explosion_lightning_blast" ], - "fg": 2907, + "fg": 2934, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 2906 }, { "id": "edge", "fg": 2907 } ] + "additional_tiles": [ { "id": "corner", "fg": 2933 }, { "id": "edge", "fg": 2934 } ] }, { "id": [ @@ -9068,32 +9094,40 @@ "explosion_summon_decayed_pouncer", "explosion_summon_wisps" ], - "fg": 2909, - "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 2908 }, { "id": "edge", "fg": 2909 } ] - }, - { "id": "overlay_effect_gummed", "fg": 2910 }, - { "id": "overlay_female_mutation_SUGAR", "fg": 2911, "rotates": false }, - { "id": "overlay_male_mutation_SUGAR", "fg": 2912, "rotates": false }, - { "id": "fd_gum_web", "bg": 2913, "rotates": false }, - { "id": "ruined_candy", "fg": 2914 }, - { "id": "mon_cookie", "fg": 2915 }, - { "id": "mon_cracker", "fg": 2917 }, - { "id": "mon_gum_spider_wolf", "fg": 2918 }, - { "id": "mon_gummy", "fg": 2919 }, - { "id": "mon_gummy_cub", "fg": 2920 }, - { "id": "mon_marshmallow_buff", "fg": 2921 }, - { "id": "mon_marshmallow_buff_armored", "fg": 2922 }, - { "id": "mon_marshmallow_goliath", "fg": 2923 }, - { "id": "mon_marshmallow_goliath_armored", "fg": 2924 }, - { "id": "mon_marshmallow_guy", "fg": 2925 }, - { "id": "mon_marshmallow_guy_armored", "fg": 2926 }, - { "id": "mon_marshmallow_kid", "fg": 2927 }, - { "id": "mon_marshmallow_kid_armored", "fg": 2928 }, - { "id": "mon_necco", "fg": 2929 }, - { "id": "mon_small_cracker", "fg": 2930 }, - { "id": "mon_spider_gum", "fg": 2931 }, - { "id": "mon_cow_choc", "fg": 2916 } + "fg": 2936, + "multitile": true, + "additional_tiles": [ { "id": "corner", "fg": 2935 }, { "id": "edge", "fg": 2936 } ] + }, + { "id": "overlay_effect_gummed", "fg": 2937 }, + { "id": "overlay_female_mutation_SUGAR", "fg": 2938, "rotates": false }, + { "id": "overlay_male_mutation_SUGAR", "fg": 2939, "rotates": false }, + { "id": "fd_gum_web", "bg": 2940, "rotates": false }, + { "id": "ruined_candy", "fg": 2941 }, + { "id": "mon_cookie", "fg": 2942 }, + { "id": "mon_cracker", "fg": 2944 }, + { "id": "mon_gum_spider_wolf", "fg": 2945 }, + { "id": "mon_gummy", "fg": 2946 }, + { "id": "mon_gummy_cub", "fg": 2947 }, + { "id": "mon_marshmallow_buff", "fg": 2948 }, + { "id": "mon_marshmallow_buff_armored", "fg": 2949 }, + { "id": "mon_marshmallow_goliath", "fg": 2950 }, + { "id": "mon_marshmallow_goliath_armored", "fg": 2951 }, + { "id": "mon_marshmallow_guy", "fg": 2952 }, + { "id": "mon_marshmallow_guy_armored", "fg": 2953 }, + { "id": "mon_marshmallow_kid", "fg": 2954 }, + { "id": "mon_marshmallow_kid_armored", "fg": 2955 }, + { "id": "mon_necco", "fg": 2956 }, + { "id": "mon_small_cracker", "fg": 2957 }, + { "id": "mon_spider_gum", "fg": 2958 }, + { "id": "broken_claygolem", "fg": 2912 }, + { "id": "broken_irongolem", "fg": 2913 }, + { "id": "broken_plasticgolem", "fg": 2914 }, + { "id": "broken_stonegolem", "fg": 2915 }, + { "id": "mon_owlbear", "fg": 2922 }, + { "id": "mon_owlbear_cub", "fg": 2923 }, + { "id": "mon_owlbear_zombie", "fg": 2924 }, + { "id": "mon_owlbear_zombie_brute", "fg": 2925 }, + { "id": "mon_cow_choc", "fg": 2943 } ] }, { diff --git a/gfx/BrownLikeBears/tiles.png b/gfx/BrownLikeBears/tiles.png index fd04627e8338f..d1c0eef61c36f 100644 Binary files a/gfx/BrownLikeBears/tiles.png and b/gfx/BrownLikeBears/tiles.png differ diff --git a/gfx/BrownLikeBears/toped.png b/gfx/BrownLikeBears/toped.png index 0dfda94879a76..625d0a318e532 100644 Binary files a/gfx/BrownLikeBears/toped.png and b/gfx/BrownLikeBears/toped.png differ diff --git a/gfx/ChibiUltica/ChibiLargeMonster.png b/gfx/ChibiUltica/ChibiLargeMonster.png index 5058b56d57e35..a0fb66c5e9ec2 100644 Binary files a/gfx/ChibiUltica/ChibiLargeMonster.png and b/gfx/ChibiUltica/ChibiLargeMonster.png differ diff --git a/gfx/ChibiUltica/ChibiNormalCharacter.png b/gfx/ChibiUltica/ChibiNormalCharacter.png index 43796c1cb0b37..f1d09b6ae3ed9 100644 Binary files a/gfx/ChibiUltica/ChibiNormalCharacter.png and b/gfx/ChibiUltica/ChibiNormalCharacter.png differ diff --git a/gfx/ChibiUltica/ChibiNormalCharacterMagiclysm.png b/gfx/ChibiUltica/ChibiNormalCharacterMagiclysm.png index a9ac01c8f8073..d62f2c4e769a7 100644 Binary files a/gfx/ChibiUltica/ChibiNormalCharacterMagiclysm.png and b/gfx/ChibiUltica/ChibiNormalCharacterMagiclysm.png differ diff --git a/gfx/ChibiUltica/ChibiNormalMonster.png b/gfx/ChibiUltica/ChibiNormalMonster.png index f9da27cf7570e..9e561f84a0b9c 100644 Binary files a/gfx/ChibiUltica/ChibiNormalMonster.png and b/gfx/ChibiUltica/ChibiNormalMonster.png differ diff --git a/gfx/ChibiUltica/ChibiNormalMonsterMagiclysm.png b/gfx/ChibiUltica/ChibiNormalMonsterMagiclysm.png index 3d6ec6d8c828f..0a00bcfe33c88 100644 Binary files a/gfx/ChibiUltica/ChibiNormalMonsterMagiclysm.png and b/gfx/ChibiUltica/ChibiNormalMonsterMagiclysm.png differ diff --git a/gfx/ChibiUltica/ChibiTallOverlay.png b/gfx/ChibiUltica/ChibiTallOverlay.png index 96f7892297d67..529228aa58168 100644 Binary files a/gfx/ChibiUltica/ChibiTallOverlay.png and b/gfx/ChibiUltica/ChibiTallOverlay.png differ diff --git a/gfx/ChibiUltica/ChibiTallOverlayMagiclysm.png b/gfx/ChibiUltica/ChibiTallOverlayMagiclysm.png new file mode 100644 index 0000000000000..718fe319d417d Binary files /dev/null and b/gfx/ChibiUltica/ChibiTallOverlayMagiclysm.png differ diff --git a/gfx/ChibiUltica/centered.png b/gfx/ChibiUltica/centered.png index 08abbe9534b70..28275a93e0000 100644 Binary files a/gfx/ChibiUltica/centered.png and b/gfx/ChibiUltica/centered.png differ diff --git a/gfx/ChibiUltica/incomplete.png b/gfx/ChibiUltica/incomplete.png index 4a1c1aa2f8e9b..d7f4169177622 100644 Binary files a/gfx/ChibiUltica/incomplete.png and b/gfx/ChibiUltica/incomplete.png differ diff --git a/gfx/ChibiUltica/incomplete_large.png b/gfx/ChibiUltica/incomplete_large.png index 18e10677f7493..c773e692d7525 100644 Binary files a/gfx/ChibiUltica/incomplete_large.png and b/gfx/ChibiUltica/incomplete_large.png differ diff --git a/gfx/ChibiUltica/normal.png b/gfx/ChibiUltica/normal.png index faeffa8b2eb0a..70da89af03762 100644 Binary files a/gfx/ChibiUltica/normal.png and b/gfx/ChibiUltica/normal.png differ diff --git a/gfx/ChibiUltica/small.png b/gfx/ChibiUltica/small.png index 2631e30b8c940..83938a85a35a7 100644 Binary files a/gfx/ChibiUltica/small.png and b/gfx/ChibiUltica/small.png differ diff --git a/gfx/ChibiUltica/tallmonsters.png b/gfx/ChibiUltica/tallmonsters.png index a6c5bc61742c0..efd3ad6bf1f0f 100644 Binary files a/gfx/ChibiUltica/tallmonsters.png and b/gfx/ChibiUltica/tallmonsters.png differ diff --git a/gfx/ChibiUltica/tallvehicle.png b/gfx/ChibiUltica/tallvehicle.png index ec3677343187c..ee1ff4ab889aa 100644 Binary files a/gfx/ChibiUltica/tallvehicle.png and b/gfx/ChibiUltica/tallvehicle.png differ diff --git a/gfx/ChibiUltica/tile_config.json b/gfx/ChibiUltica/tile_config.json index 6245b70fac6e3..8f34b368c0cdb 100644 --- a/gfx/ChibiUltica/tile_config.json +++ b/gfx/ChibiUltica/tile_config.json @@ -45,8 +45,8 @@ { "id": "mon_zombie_hulk", "fg": 5, "rotates": false }, { "id": "mon_zombie_kevlar_2", "fg": 42, "bg": [ ], "rotates": false }, { "id": "mon_zombie_nullfield", "fg": 44, "bg": [ ], "rotates": false }, - { "id": [ "mon_hulk_pupa", "mon_hulk_pupa_decoy" ], "fg": 54, "rotates": false }, - { "id": [ "corpse_mon_hulk_pupa", "corpse_mon_hulk_pupa_decoy" ], "fg": 53, "rotates": false }, + { "id": [ "mon_hulk_pupa", "mon_hulk_pupa_decoy" ], "fg": 55, "rotates": false }, + { "id": [ "corpse_mon_hulk_pupa", "corpse_mon_hulk_pupa_decoy" ], "fg": 54, "rotates": false }, { "id": "mon_frog_giant", "fg": 26 }, { "id": "mon_horse", "fg": 28 }, { "id": "mon_mech_combat", "fg": 29 }, @@ -61,11 +61,18 @@ { "id": "rid_mon_mech_lifter", "fg": 47 }, { "id": "rid_mon_mech_recon", "fg": 48 }, { "id": "mon_afs_headless_horror", "fg": 49 }, - { "id": "mon_flying_polyp", "fg": 50 }, - { "id": "corpse_mon_frog_mother", "fg": 51 }, - { "id": "mon_frog_mother", "fg": 52 }, - { "id": "corpse_mon_zpig_brute", "fg": 55 }, - { "id": "mon_zpig_brute", "fg": 56 } + { "id": "mon_boomer_glutton", "fg": 50 }, + { "id": "mon_flying_polyp", "fg": 51 }, + { "id": "corpse_mon_frog_mother", "fg": 52 }, + { "id": "mon_frog_mother", "fg": 53 }, + { "id": "corpse_mon_lady_bug_giant", "fg": 56 }, + { "id": "mon_lady_bug_giant", "fg": 57 }, + { "id": "corpse_mon_locust_mega", "fg": 58 }, + { "id": "mon_locust_mega", "fg": 59 }, + { "id": "corpse_mon_mosquito_mega", "fg": 60 }, + { "id": "mon_mosquito_mega", "fg": 61 }, + { "id": "corpse_mon_zpig_brute", "fg": 62 }, + { "id": "mon_zpig_brute", "fg": 63 } ] }, { @@ -140,10 +147,10 @@ }, { "file": "ChibiNormalCharacter.png", - "//": "range 112 to 1055", + "//": "range 112 to 1071", "tiles": [ - { "id": [ "player_female", "npc_female" ], "fg": 112, "rotates": false, "bg": 1323 }, - { "id": [ "player_male", "npc_male" ], "fg": 113, "rotates": false, "bg": 1323 }, + { "id": [ "player_female", "npc_female" ], "fg": 112, "rotates": false, "bg": 1338 }, + { "id": [ "player_male", "npc_male" ], "fg": 113, "rotates": false, "bg": 1338 }, { "id": "overlay_female_mutation_active_bio_ads", "fg": 114, "rotates": false }, { "id": "overlay_female_mutation_active_bio_alarm", "fg": 115, "rotates": false }, { "id": "overlay_female_mutation_active_bio_cloak", "fg": 116, "rotates": false }, @@ -450,1190 +457,1190 @@ { "id": "overlay_male_mutation_hair_brown_short", "fg": 403, "rotates": false }, { "id": "overlay_male_mutation_hair_white_short", "fg": 415, "rotates": false }, { "id": "overlay_male_mutation_hair_red_short", "fg": 411, "rotates": false }, - { "id": "overlay_wielded_2_shot_special", "fg": 477, "rotates": false }, - { "id": "overlay_wielded_2x4", "fg": 449, "rotates": false }, - { "id": "overlay_wielded_30gal_barrel", "fg": 427, "rotates": false }, - { "id": "overlay_wielded_30gal_drum", "fg": 427, "rotates": false }, - { "id": "overlay_wielded_50pistol", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_55gal_drum", "fg": 427, "rotates": false }, - { "id": "overlay_wielded_BFG", "fg": 484, "rotates": false }, - { "id": "overlay_wielded_LAW", "fg": 514, "rotates": false }, - { "id": "overlay_wielded_LAW_Packed", "fg": 514, "rotates": false }, - { "id": "overlay_wielded_PR24-extended", "fg": 433, "rotates": false }, - { "id": "overlay_wielded_PR24-retracted", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_RPG", "fg": 540, "rotates": false }, - { "id": "overlay_wielded_TDI", "fg": 553, "rotates": false }, - { "id": "overlay_wielded_abzats", "fg": 539, "rotates": false }, - { "id": "overlay_wielded_acoustic_guitar", "fg": 612, "rotates": false }, - { "id": "overlay_wielded_acr", "fg": 478, "rotates": false }, - { "id": "overlay_wielded_airspeargun", "fg": 549, "rotates": false }, - { "id": "overlay_wielded_ak47", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_ak74", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_american_180", "fg": 537, "rotates": false }, - { "id": "overlay_wielded_an94", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_ar15", "fg": 480, "rotates": false }, - { "id": "overlay_wielded_arccan", "fg": 554, "rotates": false }, - { "id": "overlay_wielded_arming_sword", "fg": 565, "rotates": false }, - { "id": "overlay_wielded_arming_sword_fake", "fg": 565, "rotates": false }, - { "id": "overlay_wielded_arming_sword_inferior", "fg": 565, "rotates": false }, - { "id": "overlay_wielded_arx160", "fg": 481, "rotates": false }, - { "id": "overlay_wielded_ashot", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_ax", "fg": 560, "rotates": false }, - { "id": "overlay_wielded_bag_canvas", "fg": 954, "rotates": false }, - { "id": "overlay_wielded_bag_canvas_small", "fg": 954, "rotates": false }, - { "id": "overlay_wielded_bagh_nakha", "fg": 431, "rotates": false }, - { "id": "overlay_wielded_bagpipes", "fg": 613, "rotates": false }, - { "id": "overlay_wielded_banjo", "fg": 561, "rotates": false }, - { "id": "overlay_wielded_bat", "fg": 432, "rotates": false }, - { "id": "overlay_wielded_bat_metal", "fg": 434, "rotates": false }, - { "id": "overlay_wielded_baton-extended", "fg": 433, "rotates": false }, - { "id": "overlay_wielded_baton", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_battleaxe", "fg": 560, "rotates": false }, - { "id": "overlay_wielded_battleaxe_fake", "fg": 560, "rotates": false }, - { "id": "overlay_wielded_battleaxe_inferior", "fg": 560, "rotates": false }, - { "id": "overlay_wielded_battletorch", "fg": 562, "rotates": false }, - { "id": "overlay_wielded_battletorch_done", "fg": 562, "rotates": false }, - { "id": "overlay_wielded_battletorch_lit", "fg": 563, "rotates": false }, - { "id": "overlay_wielded_bbgun", "fg": 483, "rotates": false }, - { "id": "overlay_wielded_bee_sting", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_bh_m89", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_bigun", "fg": 485, "rotates": false }, - { "id": "overlay_wielded_bio_blade_weapon", "fg": 436, "rotates": false }, - { "id": "overlay_wielded_bio_claws_weapon", "fg": 437, "rotates": false }, - { "id": "overlay_wielded_bio_sword_weapon", "fg": 436, "rotates": false }, - { "id": "overlay_wielded_blade", "fg": 578, "rotates": false }, - { "id": "overlay_wielded_blowgun", "fg": 569, "rotates": false }, - { "id": "overlay_wielded_blunderbuss", "fg": 489, "rotates": false }, - { "id": "overlay_wielded_bokken", "fg": 438, "rotates": false }, - { "id": "overlay_wielded_bomblet_launcher_double", "fg": 486, "rotates": false }, - { "id": "overlay_wielded_bomblet_launcher_dualshot", "fg": 487, "rotates": false }, - { "id": "overlay_wielded_bomblet_launcher_rotary", "fg": 488, "rotates": false }, - { "id": "overlay_wielded_bomblet_launcher_single", "fg": 489, "rotates": false }, - { "id": "overlay_wielded_bowling_axe", "fg": 439, "rotates": false }, - { "id": [ "overlay_wielded_brazier", "brazier" ], "fg": 7091, "rotates": false }, - { "id": "overlay_wielded_briefcase_smg", "fg": 490, "rotates": false }, - { "id": "overlay_wielded_broadfire_off", "fg": 565, "rotates": false }, - { "id": "overlay_wielded_broadfire_on", "fg": 566, "rotates": false }, - { "id": "overlay_wielded_broadsword", "fg": 565, "rotates": false }, - { "id": "overlay_wielded_broadsword_fake", "fg": 565, "rotates": false }, - { "id": "overlay_wielded_broadsword_inferior", "fg": 565, "rotates": false }, - { "id": "overlay_wielded_broom", "fg": 440, "rotates": false }, - { "id": "overlay_wielded_browning_blr", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_bullet_crossbow", "fg": 492, "rotates": false }, - { "id": "overlay_wielded_bullwhip", "fg": 441, "rotates": false }, - { "id": "overlay_wielded_bwirebat", "fg": 442, "rotates": false }, - { "id": "overlay_wielded_calico", "fg": 493, "rotates": false }, - { "id": "overlay_wielded_candlestick", "fg": 443, "rotates": false }, - { "id": "overlay_wielded_cane", "fg": 444, "rotates": false }, - { "id": "overlay_wielded_carbine_flintlock", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_carbine_flintlock_double", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_carver_off", "fg": 567, "rotates": false }, - { "id": "overlay_wielded_carver_on", "fg": 567, "rotates": false }, - { "id": "overlay_wielded_chain", "fg": 445, "rotates": false }, - { "id": "overlay_wielded_chainsaw_off", "fg": 568, "rotates": false }, - { "id": "overlay_wielded_chainsaw_on", "fg": 568, "rotates": false }, - { "id": "overlay_wielded_chemical_thrower", "fg": 494, "rotates": false }, - { "id": "overlay_wielded_clarinet", "fg": 569, "rotates": false }, - { "id": "overlay_wielded_clay_hydria", "fg": 424, "rotates": false }, - { "id": "overlay_wielded_clay_watercont", "fg": 425, "rotates": false }, - { "id": "overlay_wielded_coilgun", "fg": 477, "rotates": false }, - { "id": "overlay_wielded_colt_army", "fg": 529, "rotates": false }, - { "id": "overlay_wielded_colt_navy", "fg": 529, "rotates": false }, - { "id": "overlay_wielded_combatsaw_off", "fg": 568, "rotates": false }, - { "id": "overlay_wielded_combatsaw_on", "fg": 568, "rotates": false }, - { "id": "overlay_wielded_combination_gun", "fg": 483, "rotates": false }, - { "id": "overlay_wielded_compbow", "fg": 496, "rotates": false }, - { "id": "overlay_wielded_compositebow", "fg": 497, "rotates": false }, - { "id": "overlay_wielded_cop_38", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_copper_ax", "fg": 564, "rotates": false }, - { "id": "overlay_wielded_copper_knife", "fg": 572, "rotates": false }, - { "id": "overlay_wielded_corpse", "fg": 446, "rotates": false }, - { "id": [ "overlay_wielded_crossbow", "overlay_wielded_crossbow_makeshift" ], "fg": 498, "rotates": false }, - { "id": "overlay_wielded_crowbar", "fg": 593, "rotates": false }, - { "id": "overlay_wielded_crucible", "fg": 427, "rotates": false }, - { "id": "overlay_wielded_cs_lajatang_off", "fg": 570, "rotates": false }, - { "id": "overlay_wielded_cs_lajatang_on", "fg": 570, "rotates": false }, - { "id": "overlay_wielded_cu_pipe", "fg": 448, "rotates": false }, - { "id": "overlay_wielded_cudgel", "fg": 447, "rotates": false }, - { "id": "overlay_wielded_cutlass", "fg": 571, "rotates": false }, - { "id": "overlay_wielded_cutlass_fake", "fg": 571, "rotates": false }, - { "id": "overlay_wielded_cutlass_inferior", "fg": 571, "rotates": false }, - { "id": "overlay_wielded_cw-24", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_cw-24hack", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_cw-24k", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_cw-24m", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_cw-24m_hack", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_cwd-63", "fg": 517, "rotates": false }, - { "id": "overlay_wielded_cx4", "fg": 499, "rotates": false }, - { "id": "overlay_wielded_dao", "fg": 577, "rotates": false }, - { "id": "overlay_wielded_deagle_44", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_digging_stick", "fg": 449, "rotates": false }, - { "id": "overlay_wielded_diveknife", "fg": 572, "rotates": false }, - { "id": "overlay_wielded_doublespeargun", "fg": 549, "rotates": false }, - { "id": "overlay_wielded_dusksword", "fg": 473, "rotates": false }, - { "id": "overlay_wielded_e_handcuffs", "fg": 575, "rotates": false }, - { "id": "overlay_wielded_e_tool", "fg": 576, "rotates": false }, - { "id": "overlay_wielded_elc_bld", "fg": 573, "rotates": false }, - { "id": "overlay_wielded_elc_blds", "fg": 574, "rotates": false }, - { "id": "overlay_wielded_elec_chainsaw_off", "fg": 568, "rotates": false }, - { "id": "overlay_wielded_elec_chainsaw_on", "fg": 568, "rotates": false }, - { "id": "overlay_wielded_emp_gun", "fg": 500, "rotates": false }, - { "id": "overlay_wielded_estoc", "fg": 450, "rotates": false }, - { "id": "overlay_wielded_estoc_fake", "fg": 450, "rotates": false }, - { "id": "overlay_wielded_ethereal_crossbow", "fg": 498, "rotates": false }, - { "id": "overlay_wielded_fencing_epee", "fg": 450, "rotates": false }, - { "id": "overlay_wielded_fencing_foil", "fg": 450, "rotates": false }, - { "id": "overlay_wielded_fencing_sabre", "fg": 450, "rotates": false }, - { "id": "overlay_wielded_ficrico", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_fighter_sting", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_fire_ax", "fg": 580, "rotates": false }, - { "id": "overlay_wielded_fire_lance", "fg": 471, "rotates": false }, - { "id": "overlay_wielded_fishing_rod_basic", "fg": 581, "rotates": false }, - { "id": "overlay_wielded_fishing_rod_professional", "fg": 581, "rotates": false }, - { "id": "overlay_wielded_flamethrower", "fg": 501, "rotates": false }, - { "id": "overlay_wielded_flamethrower_crude", "fg": 501, "rotates": false }, - { "id": "overlay_wielded_flamethrower_simple", "fg": 501, "rotates": false }, - { "id": "overlay_wielded_flaregun", "fg": 477, "rotates": false }, - { "id": "overlay_wielded_flute", "fg": 569, "rotates": false }, - { "id": "overlay_wielded_fn57", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_fn_fal", "fg": 481, "rotates": false }, - { "id": "overlay_wielded_fn_p90", "fg": 502, "rotates": false }, - { "id": "overlay_wielded_ftk93", "fg": 503, "rotates": false }, - { "id": "overlay_wielded_garand", "fg": 504, "rotates": false }, - { "id": "overlay_wielded_gattler", "fg": 618, "rotates": false }, - { "id": "overlay_wielded_glaive", "fg": 472, "rotates": false }, - { "id": "overlay_wielded_glass_macuahuitl", "fg": 451, "rotates": false }, - { "id": "overlay_wielded_glass_shiv", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_glock_17", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_glock_19", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_glock_22", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_glowstick", "fg": 584, "rotates": false }, - { "id": "overlay_wielded_glowstick_dead", "fg": 584, "rotates": false }, - { "id": "overlay_wielded_glowstick_lit", "fg": 585, "rotates": false }, - { "id": "overlay_wielded_golf_club", "fg": 453, "rotates": false }, - { "id": "overlay_wielded_grapnel", "fg": 454, "rotates": false }, - { "id": "overlay_wielded_gungnir_replica", "fg": 601, "rotates": false }, - { "id": "overlay_wielded_gunknife", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_gunsword", "fg": 527, "rotates": false }, - { "id": "overlay_wielded_h&k416a5", "fg": 617, "rotates": false }, - { "id": "overlay_wielded_halberd", "fg": 462, "rotates": false }, - { "id": "overlay_wielded_halberd_fake", "fg": 462, "rotates": false }, - { "id": "overlay_wielded_halligan", "fg": 582, "rotates": false }, - { "id": "overlay_wielded_hammer", "fg": 583, "rotates": false }, - { "id": "overlay_wielded_hammer_sledge", "fg": 455, "rotates": false }, - { "id": "overlay_wielded_hand_crossbow", "fg": 505, "rotates": false }, - { "id": "overlay_wielded_handflare", "fg": 584, "rotates": false }, - { "id": "overlay_wielded_handflare_dead", "fg": 584, "rotates": false }, - { "id": "overlay_wielded_handflare_lit", "fg": 585, "rotates": false }, - { "id": "overlay_wielded_hatchet", "fg": 564, "rotates": false }, - { "id": "overlay_wielded_heavy_flashlight", "fg": 584, "rotates": false }, - { "id": "overlay_wielded_heavy_flashlight_on", "fg": 585, "rotates": false }, - { "id": "overlay_wielded_heavy_rail_rifle", "fg": 509, "rotates": false }, - { "id": "overlay_wielded_helsing", "fg": 506, "rotates": false }, - { "id": "overlay_wielded_henry_big_boy", "fg": 483, "rotates": false }, - { "id": "overlay_wielded_hexenhammer", "fg": 455, "rotates": false }, - { "id": "overlay_wielded_hexenhammer_active", "fg": 455, "rotates": false }, - { "id": "overlay_wielded_hk_g36", "fg": 508, "rotates": false }, - { "id": "overlay_wielded_hk_g3", "fg": 507, "rotates": false }, - { "id": "overlay_wielded_hk_g80", "fg": 509, "rotates": false }, - { "id": "overlay_wielded_hk_mp5", "fg": 510, "rotates": false }, - { "id": "overlay_wielded_hk_mp5eod", "fg": 546, "rotates": false }, - { "id": "overlay_wielded_hk_mp7", "fg": 523, "rotates": false }, - { "id": "overlay_wielded_hk_ucp", "fg": 477, "rotates": false }, - { "id": "overlay_wielded_hk_ump45", "fg": 510, "rotates": false }, - { "id": "overlay_wielded_hockey_stick", "fg": 453, "rotates": false }, - { "id": "overlay_wielded_hoe", "fg": 586, "rotates": false }, - { "id": "overlay_wielded_homewrecker", "fg": 442, "rotates": false }, - { "id": "overlay_wielded_honey_scraper", "fg": 567, "rotates": false }, - { "id": "overlay_wielded_huge_crossbow", "fg": 492, "rotates": false }, - { "id": "overlay_wielded_i_staff", "fg": 456, "rotates": false }, - { "id": "overlay_wielded_iceaxe", "fg": 587, "rotates": false }, - { "id": "overlay_wielded_ichaival_replica", "fg": 497, "rotates": false }, - { "id": "overlay_wielded_javelin", "fg": 447, "rotates": false }, - { "id": "overlay_wielded_javelin_copper", "fg": 447, "rotates": false }, - { "id": "overlay_wielded_javelin_iron", "fg": 457, "rotates": false }, - { "id": "overlay_wielded_javelin_stone", "fg": 457, "rotates": false }, - { "id": "overlay_wielded_jerrycan", "fg": 426, "rotates": false }, - { "id": "overlay_wielded_jerrycan_big", "fg": 426, "rotates": false }, - { "id": "overlay_wielded_ji", "fg": 472, "rotates": false }, - { "id": "overlay_wielded_jian", "fg": 473, "rotates": false }, - { "id": "overlay_wielded_jian_fake", "fg": 473, "rotates": false }, - { "id": "overlay_wielded_jian_inferior", "fg": 473, "rotates": false }, - { "id": "overlay_wielded_katana", "fg": 577, "rotates": false }, - { "id": "overlay_wielded_katana_fake", "fg": 577, "rotates": false }, - { "id": "overlay_wielded_katana_inferior", "fg": 577, "rotates": false }, - { "id": [ "overlay_wielded_keg", "overlay_wielded_keg_steel" ], "fg": 427, "rotates": false }, - { "id": "overlay_wielded_khopesh", "fg": 600, "rotates": false }, - { "id": "overlay_wielded_knife_butcher", "fg": 588, "rotates": false }, - { "id": "overlay_wielded_knife_combat", "fg": 589, "rotates": false }, - { "id": "overlay_wielded_knife_hunting", "fg": 589, "rotates": false }, - { "id": "overlay_wielded_knife_rambo", "fg": 589, "rotates": false }, - { "id": "overlay_wielded_knife_rm42", "fg": 589, "rotates": false }, - { "id": "overlay_wielded_knife_steak", "fg": 567, "rotates": false }, - { "id": "overlay_wielded_knife_swissarmy", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_knife_trench", "fg": 589, "rotates": false }, - { "id": "overlay_wielded_knuckle_brass", "fg": 458, "rotates": false }, - { "id": "overlay_wielded_knuckle_katar", "fg": 459, "rotates": false }, - { "id": "overlay_wielded_knuckle_nail", "fg": 459, "rotates": false }, - { "id": "overlay_wielded_knuckle_steel", "fg": 458, "rotates": false }, - { "id": "overlay_wielded_kris", "fg": 590, "rotates": false }, - { "id": "overlay_wielded_kris_fake", "fg": 590, "rotates": false }, - { "id": "overlay_wielded_ksg", "fg": 508, "rotates": false }, - { "id": "overlay_wielded_ksub2000", "fg": 481, "rotates": false }, - { "id": "overlay_wielded_kukri", "fg": 591, "rotates": false }, - { "id": "overlay_wielded_l-stick", "fg": 584, "rotates": false }, - { "id": "overlay_wielded_l-stick_on", "fg": 585, "rotates": false }, - { "id": "overlay_wielded_l_bak_223", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_l_base_223", "fg": 516, "rotates": false }, - { "id": "overlay_wielded_l_car_223", "fg": 516, "rotates": false }, - { "id": "overlay_wielded_l_def_12", "fg": 485, "rotates": false }, - { "id": "overlay_wielded_l_dsr_223", "fg": 516, "rotates": false }, - { "id": "overlay_wielded_l_enforcer_45", "fg": 477, "rotates": false }, - { "id": "overlay_wielded_l_lmg_223", "fg": 516, "rotates": false }, - { "id": "overlay_wielded_l_long_45", "fg": 504, "rotates": false }, - { "id": "overlay_wielded_l_lookout_9mm", "fg": 477, "rotates": false }, - { "id": "overlay_wielded_l_mbr_223", "fg": 516, "rotates": false }, - { "id": "overlay_wielded_l_mp_45", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_l_mp_9mm", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_l_sp_45", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_l_sp_9mm", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_laevateinn_replica", "fg": 565, "rotates": false }, - { "id": "overlay_wielded_lajatang", "fg": 460, "rotates": false }, - { "id": "overlay_wielded_laser_cannon", "fg": 511, "rotates": false }, - { "id": "overlay_wielded_laser_rifle", "fg": 512, "rotates": false }, - { "id": "overlay_wielded_launcher_simple", "fg": 513, "rotates": false }, - { "id": "overlay_wielded_lemat_revolver", "fg": 477, "rotates": false }, - { "id": "overlay_wielded_levergun_44", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_lobotomizer", "fg": 592, "rotates": false }, - { "id": "overlay_wielded_longbow", "fg": 515, "rotates": false }, - { "id": "overlay_wielded_longsword", "fg": 610, "rotates": false }, - { "id": "overlay_wielded_longsword_fake", "fg": 610, "rotates": false }, - { "id": "overlay_wielded_longsword_inferior", "fg": 610, "rotates": false }, - { "id": "overlay_wielded_ltcarb", "fg": 554, "rotates": false }, - { "id": "overlay_wielded_m1014", "fg": 485, "rotates": false }, - { "id": "overlay_wielded_m107a1", "fg": 517, "rotates": false }, - { "id": "overlay_wielded_m134", "fg": 518, "rotates": false }, - { "id": "overlay_wielded_m14a", "fg": 478, "rotates": false }, - { "id": "overlay_wielded_m14ebr", "fg": 478, "rotates": false }, - { "id": "overlay_wielded_m1903", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_m1911", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_m1918", "fg": 519, "rotates": false }, - { "id": "overlay_wielded_m1a", "fg": 483, "rotates": false }, - { "id": "overlay_wielded_m2010", "fg": 504, "rotates": false }, - { "id": "overlay_wielded_m202_flash", "fg": 520, "rotates": false }, - { "id": "overlay_wielded_m240", "fg": 519, "rotates": false }, - { "id": "overlay_wielded_m249", "fg": 519, "rotates": false }, - { "id": "overlay_wielded_m27iar", "fg": 480, "rotates": false }, - { "id": "overlay_wielded_m2browning", "fg": 521, "rotates": false }, - { "id": "overlay_wielded_m2browning_sawn", "fg": 519, "rotates": false }, - { "id": "overlay_wielded_m320", "fg": 513, "rotates": false }, - { "id": "overlay_wielded_m3_carlgustav", "fg": 522, "rotates": false }, - { "id": "overlay_wielded_m4a1", "fg": 617, "rotates": false }, - { "id": "overlay_wielded_m60", "fg": 519, "rotates": false }, - { "id": "overlay_wielded_m79", "fg": 513, "rotates": false }, - { "id": "overlay_wielded_m9", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_mac_10", "fg": 523, "rotates": false }, - { "id": "overlay_wielded_mace", "fg": 461, "rotates": false }, - { "id": "overlay_wielded_machete", "fg": 578, "rotates": false }, - { "id": "overlay_wielded_makarov", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_makeshift_axe", "fg": 596, "rotates": false }, - { "id": "overlay_wielded_makeshift_crowbar", "fg": 593, "rotates": false }, - { "id": "overlay_wielded_makeshift_halberd", "fg": 462, "rotates": false }, - { "id": "overlay_wielded_makeshift_hammer", "fg": 583, "rotates": false }, - { "id": "overlay_wielded_makeshift_knife", "fg": 572, "rotates": false }, - { "id": "overlay_wielded_makeshift_machete", "fg": 578, "rotates": false }, - { "id": "overlay_wielded_makeshift_shovel", "fg": 599, "rotates": false }, - { "id": "overlay_wielded_mark19", "fg": 524, "rotates": false }, - { "id": "overlay_wielded_marlin_9a", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_metal_tank", "fg": 428, "rotates": false }, - { "id": "overlay_wielded_metal_tank_little", "fg": 429, "rotates": false }, - { "id": "overlay_wielded_metal_tank_small", "fg": 429, "rotates": false }, - { "id": "overlay_wielded_mgl", "fg": 524, "rotates": false }, - { "id": "overlay_wielded_mininuke_launcher", "fg": 525, "rotates": false }, - { "id": "overlay_wielded_minispeargun", "fg": 526, "rotates": false }, - { "id": "overlay_wielded_mjolnir", "fg": 463, "rotates": false }, - { "id": "overlay_wielded_mjolnir_replica", "fg": 463, "rotates": false }, - { "id": "overlay_wielded_mop", "fg": 594, "rotates": false }, - { "id": "overlay_wielded_morningstar", "fg": 464, "rotates": false }, - { "id": "overlay_wielded_mosin44", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_mosin44_ebr", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_mosin91_30", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_mosin91_30_ebr", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_moss_brownie", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_mossberg_500", "fg": 485, "rotates": false }, - { "id": "overlay_wielded_naginata", "fg": 472, "rotates": false }, - { "id": "overlay_wielded_naginata_survivor", "fg": 472, "rotates": false }, - { "id": "overlay_wielded_nailbat", "fg": 442, "rotates": false }, - { "id": "overlay_wielded_nailboard", "fg": 465, "rotates": false }, - { "id": "overlay_wielded_nailgun", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_nailrifle", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_needlegun", "fg": 536, "rotates": false }, - { "id": "overlay_wielded_needlepistol", "fg": 534, "rotates": false }, - { "id": "overlay_wielded_nodachi", "fg": 595, "rotates": false }, - { "id": "overlay_wielded_nodachi_fake", "fg": 595, "rotates": false }, - { "id": "overlay_wielded_nx17", "fg": 554, "rotates": false }, - { "id": "overlay_wielded_pan", "fg": 466, "rotates": false }, - { "id": "overlay_wielded_pickaxe", "fg": 587, "rotates": false }, - { "id": "overlay_wielded_pipe", "fg": 467, "rotates": false }, - { "id": "overlay_wielded_pipe__gun_44", "fg": 527, "rotates": false }, - { "id": "overlay_wielded_pipe_combination_gun", "fg": 527, "rotates": false }, - { "id": "overlay_wielded_pipe_double_shotgun", "fg": 528, "rotates": false }, - { "id": "overlay_wielded_pipe_shotgun", "fg": 483, "rotates": false }, - { "id": "overlay_wielded_pipe_shotgunsawn", "fg": 616, "rotates": false }, - { "id": "overlay_wielded_pistol_flintlock", "fg": 529, "rotates": false }, - { "id": "overlay_wielded_pistol_pepperbox", "fg": 527, "rotates": false }, - { "id": "overlay_wielded_pitchfork", "fg": 468, "rotates": false }, - { "id": "overlay_wielded_plasma_rifle", "fg": 530, "rotates": false }, - { "id": "overlay_wielded_pockknife", "fg": 572, "rotates": false }, - { "id": "overlay_wielded_pointy_stick", "fg": 447, "rotates": false }, - { "id": "overlay_wielded_pool_cue", "fg": 447, "rotates": false }, - { "id": "overlay_wielded_pot", "fg": 466, "rotates": false }, - { "id": "overlay_wielded_pot_copper", "fg": 466, "rotates": false }, - { "id": "overlay_wielded_ppsh", "fg": 531, "rotates": false }, - { "id": "overlay_wielded_primitive_adze", "fg": 596, "rotates": false }, - { "id": "overlay_wielded_primitive_axe", "fg": 596, "rotates": false }, - { "id": "overlay_wielded_primitive_hammer", "fg": 596, "rotates": false }, - { "id": "overlay_wielded_primitive_knife", "fg": 567, "rotates": false }, - { "id": "overlay_wielded_punch_dagger", "fg": 470, "rotates": false }, - { "id": "overlay_wielded_q_staff", "fg": 456, "rotates": false }, - { "id": "overlay_wielded_raging_bull", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_rapier", "fg": 597, "rotates": false }, - { "id": "overlay_wielded_rapier_fake", "fg": 597, "rotates": false }, - { "id": "overlay_wielded_rebar_rifle", "fg": 509, "rotates": false }, - { "id": "overlay_wielded_recurbow", "fg": 497, "rotates": false }, - { "id": "overlay_wielded_reflexbow", "fg": 497, "rotates": false }, - { "id": "overlay_wielded_reflexrecurvebow", "fg": 532, "rotates": false }, - { "id": "overlay_wielded_remington_700", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_remington_870", "fg": 483, "rotates": false }, - { "id": "overlay_wielded_rep_crossbow", "fg": 533, "rotates": false }, - { "id": "overlay_wielded_revolver_shotgun", "fg": 483, "rotates": false }, - { "id": "overlay_wielded_rifle_223", "fg": 528, "rotates": false }, - { "id": "overlay_wielded_rifle_22", "fg": 528, "rotates": false }, - { "id": "overlay_wielded_rifle_3006", "fg": 528, "rotates": false }, - { "id": "overlay_wielded_rifle_308", "fg": 528, "rotates": false }, - { "id": "overlay_wielded_rifle_38", "fg": 528, "rotates": false }, - { "id": "overlay_wielded_rifle_40", "fg": 528, "rotates": false }, - { "id": "overlay_wielded_rifle_44", "fg": 528, "rotates": false }, - { "id": "overlay_wielded_rifle_45", "fg": 528, "rotates": false }, - { "id": "overlay_wielded_rifle_9mm", "fg": 528, "rotates": false }, - { "id": "overlay_wielded_rifle_flintlock", "fg": 528, "rotates": false }, - { "id": "overlay_wielded_rm103a_pistol", "fg": 534, "rotates": false }, - { "id": "overlay_wielded_rm11b_sniper_rifle", "fg": 517, "rotates": false }, - { "id": "overlay_wielded_rm120c", "fg": 539, "rotates": false }, - { "id": "overlay_wielded_rm2000_smg", "fg": 536, "rotates": false }, - { "id": "overlay_wielded_rm20", "fg": 535, "rotates": false }, - { "id": "overlay_wielded_rm228", "fg": 510, "rotates": false }, - { "id": "overlay_wielded_rm298", "fg": 519, "rotates": false }, - { "id": "overlay_wielded_rm360_carbine", "fg": 537, "rotates": false }, - { "id": "overlay_wielded_rm451_flamethrower", "fg": 538, "rotates": false }, - { "id": "overlay_wielded_rm51_assault_rifle", "fg": 539, "rotates": false }, - { "id": "overlay_wielded_rm614_lmg", "fg": 535, "rotates": false }, - { "id": "overlay_wielded_rm802", "fg": 513, "rotates": false }, - { "id": "overlay_wielded_rm88_battle_rifle", "fg": 539, "rotates": false }, - { "id": "overlay_wielded_rm99_pistol", "fg": 534, "rotates": false }, - { "id": "overlay_wielded_rock", "fg": 470, "rotates": false }, - { "id": "overlay_wielded_rock_sock", "fg": 469, "rotates": false }, - { "id": "overlay_wielded_ruger_1022", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_ruger_lcr_22", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_ruger_lcr_38", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_ruger_mini", "fg": 478, "rotates": false }, - { "id": "overlay_wielded_ruger_redhawk", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_saiga_12", "fg": 507, "rotates": false }, - { "id": "overlay_wielded_saiga_sawn", "fg": 616, "rotates": false }, - { "id": "overlay_wielded_savage_111f", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_saxophone", "fg": 614, "rotates": false }, - { "id": "overlay_wielded_scar_h", "fg": 541, "rotates": false }, - { "id": "overlay_wielded_scar_l", "fg": 541, "rotates": false }, - { "id": "overlay_wielded_scimitar_fake", "fg": 577, "rotates": false }, - { "id": "overlay_wielded_scimitar_inferior", "fg": 577, "rotates": false }, + { "id": "overlay_wielded_2_shot_special", "fg": 483, "rotates": false }, + { "id": "overlay_wielded_2x4", "fg": 455, "rotates": false }, + { "id": "overlay_wielded_30gal_barrel", "fg": 433, "rotates": false }, + { "id": "overlay_wielded_30gal_drum", "fg": 433, "rotates": false }, + { "id": "overlay_wielded_50pistol", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_55gal_drum", "fg": 433, "rotates": false }, + { "id": "overlay_wielded_BFG", "fg": 490, "rotates": false }, + { "id": "overlay_wielded_LAW", "fg": 520, "rotates": false }, + { "id": "overlay_wielded_LAW_Packed", "fg": 520, "rotates": false }, + { "id": "overlay_wielded_PR24-extended", "fg": 439, "rotates": false }, + { "id": "overlay_wielded_PR24-retracted", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_RPG", "fg": 546, "rotates": false }, + { "id": "overlay_wielded_TDI", "fg": 559, "rotates": false }, + { "id": "overlay_wielded_abzats", "fg": 545, "rotates": false }, + { "id": "overlay_wielded_acoustic_guitar", "fg": 618, "rotates": false }, + { "id": "overlay_wielded_acr", "fg": 484, "rotates": false }, + { "id": "overlay_wielded_airspeargun", "fg": 555, "rotates": false }, + { "id": "overlay_wielded_ak47", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_ak74", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_american_180", "fg": 543, "rotates": false }, + { "id": "overlay_wielded_an94", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_ar15", "fg": 486, "rotates": false }, + { "id": "overlay_wielded_arccan", "fg": 560, "rotates": false }, + { "id": "overlay_wielded_arming_sword", "fg": 571, "rotates": false }, + { "id": "overlay_wielded_arming_sword_fake", "fg": 571, "rotates": false }, + { "id": "overlay_wielded_arming_sword_inferior", "fg": 571, "rotates": false }, + { "id": "overlay_wielded_arx160", "fg": 487, "rotates": false }, + { "id": "overlay_wielded_ashot", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_ax", "fg": 566, "rotates": false }, + { "id": "overlay_wielded_bag_canvas", "fg": 961, "rotates": false }, + { "id": "overlay_wielded_bag_canvas_small", "fg": 961, "rotates": false }, + { "id": "overlay_wielded_bagh_nakha", "fg": 437, "rotates": false }, + { "id": "overlay_wielded_bagpipes", "fg": 619, "rotates": false }, + { "id": "overlay_wielded_banjo", "fg": 567, "rotates": false }, + { "id": "overlay_wielded_bat", "fg": 438, "rotates": false }, + { "id": "overlay_wielded_bat_metal", "fg": 440, "rotates": false }, + { "id": "overlay_wielded_baton-extended", "fg": 439, "rotates": false }, + { "id": "overlay_wielded_baton", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_battleaxe", "fg": 566, "rotates": false }, + { "id": "overlay_wielded_battleaxe_fake", "fg": 566, "rotates": false }, + { "id": "overlay_wielded_battleaxe_inferior", "fg": 566, "rotates": false }, + { "id": "overlay_wielded_battletorch", "fg": 568, "rotates": false }, + { "id": "overlay_wielded_battletorch_done", "fg": 568, "rotates": false }, + { "id": "overlay_wielded_battletorch_lit", "fg": 569, "rotates": false }, + { "id": "overlay_wielded_bbgun", "fg": 489, "rotates": false }, + { "id": "overlay_wielded_bee_sting", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_bh_m89", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_bigun", "fg": 491, "rotates": false }, + { "id": "overlay_wielded_bio_blade_weapon", "fg": 442, "rotates": false }, + { "id": "overlay_wielded_bio_claws_weapon", "fg": 443, "rotates": false }, + { "id": "overlay_wielded_bio_sword_weapon", "fg": 442, "rotates": false }, + { "id": "overlay_wielded_blade", "fg": 584, "rotates": false }, + { "id": "overlay_wielded_blowgun", "fg": 575, "rotates": false }, + { "id": "overlay_wielded_blunderbuss", "fg": 495, "rotates": false }, + { "id": "overlay_wielded_bokken", "fg": 444, "rotates": false }, + { "id": "overlay_wielded_bomblet_launcher_double", "fg": 492, "rotates": false }, + { "id": "overlay_wielded_bomblet_launcher_dualshot", "fg": 493, "rotates": false }, + { "id": "overlay_wielded_bomblet_launcher_rotary", "fg": 494, "rotates": false }, + { "id": "overlay_wielded_bomblet_launcher_single", "fg": 495, "rotates": false }, + { "id": "overlay_wielded_bowling_axe", "fg": 445, "rotates": false }, + { "id": [ "overlay_wielded_brazier", "brazier" ], "fg": 7203, "rotates": false }, + { "id": "overlay_wielded_briefcase_smg", "fg": 496, "rotates": false }, + { "id": "overlay_wielded_broadfire_off", "fg": 571, "rotates": false }, + { "id": "overlay_wielded_broadfire_on", "fg": 572, "rotates": false }, + { "id": "overlay_wielded_broadsword", "fg": 571, "rotates": false }, + { "id": "overlay_wielded_broadsword_fake", "fg": 571, "rotates": false }, + { "id": "overlay_wielded_broadsword_inferior", "fg": 571, "rotates": false }, + { "id": "overlay_wielded_broom", "fg": 446, "rotates": false }, + { "id": "overlay_wielded_browning_blr", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_bullet_crossbow", "fg": 498, "rotates": false }, + { "id": "overlay_wielded_bullwhip", "fg": 447, "rotates": false }, + { "id": "overlay_wielded_bwirebat", "fg": 448, "rotates": false }, + { "id": "overlay_wielded_calico", "fg": 499, "rotates": false }, + { "id": "overlay_wielded_candlestick", "fg": 449, "rotates": false }, + { "id": "overlay_wielded_cane", "fg": 450, "rotates": false }, + { "id": "overlay_wielded_carbine_flintlock", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_carbine_flintlock_double", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_carver_off", "fg": 573, "rotates": false }, + { "id": "overlay_wielded_carver_on", "fg": 573, "rotates": false }, + { "id": "overlay_wielded_chain", "fg": 451, "rotates": false }, + { "id": "overlay_wielded_chainsaw_off", "fg": 574, "rotates": false }, + { "id": "overlay_wielded_chainsaw_on", "fg": 574, "rotates": false }, + { "id": "overlay_wielded_chemical_thrower", "fg": 500, "rotates": false }, + { "id": "overlay_wielded_clarinet", "fg": 575, "rotates": false }, + { "id": "overlay_wielded_clay_hydria", "fg": 430, "rotates": false }, + { "id": "overlay_wielded_clay_watercont", "fg": 431, "rotates": false }, + { "id": "overlay_wielded_coilgun", "fg": 483, "rotates": false }, + { "id": "overlay_wielded_colt_army", "fg": 535, "rotates": false }, + { "id": "overlay_wielded_colt_navy", "fg": 535, "rotates": false }, + { "id": "overlay_wielded_combatsaw_off", "fg": 574, "rotates": false }, + { "id": "overlay_wielded_combatsaw_on", "fg": 574, "rotates": false }, + { "id": "overlay_wielded_combination_gun", "fg": 489, "rotates": false }, + { "id": "overlay_wielded_compbow", "fg": 502, "rotates": false }, + { "id": "overlay_wielded_compositebow", "fg": 503, "rotates": false }, + { "id": "overlay_wielded_cop_38", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_copper_ax", "fg": 570, "rotates": false }, + { "id": "overlay_wielded_copper_knife", "fg": 578, "rotates": false }, + { "id": "overlay_wielded_corpse", "fg": 452, "rotates": false }, + { "id": [ "overlay_wielded_crossbow", "overlay_wielded_crossbow_makeshift" ], "fg": 504, "rotates": false }, + { "id": "overlay_wielded_crowbar", "fg": 599, "rotates": false }, + { "id": "overlay_wielded_crucible", "fg": 433, "rotates": false }, + { "id": "overlay_wielded_cs_lajatang_off", "fg": 576, "rotates": false }, + { "id": "overlay_wielded_cs_lajatang_on", "fg": 576, "rotates": false }, + { "id": "overlay_wielded_cu_pipe", "fg": 454, "rotates": false }, + { "id": "overlay_wielded_cudgel", "fg": 453, "rotates": false }, + { "id": "overlay_wielded_cutlass", "fg": 577, "rotates": false }, + { "id": "overlay_wielded_cutlass_fake", "fg": 577, "rotates": false }, + { "id": "overlay_wielded_cutlass_inferior", "fg": 577, "rotates": false }, + { "id": "overlay_wielded_cw-24", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_cw-24hack", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_cw-24k", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_cw-24m", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_cw-24m_hack", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_cwd-63", "fg": 523, "rotates": false }, + { "id": "overlay_wielded_cx4", "fg": 505, "rotates": false }, + { "id": "overlay_wielded_dao", "fg": 583, "rotates": false }, + { "id": "overlay_wielded_deagle_44", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_digging_stick", "fg": 455, "rotates": false }, + { "id": "overlay_wielded_diveknife", "fg": 578, "rotates": false }, + { "id": "overlay_wielded_doublespeargun", "fg": 555, "rotates": false }, + { "id": "overlay_wielded_dusksword", "fg": 479, "rotates": false }, + { "id": "overlay_wielded_e_handcuffs", "fg": 581, "rotates": false }, + { "id": "overlay_wielded_e_tool", "fg": 582, "rotates": false }, + { "id": "overlay_wielded_elc_bld", "fg": 579, "rotates": false }, + { "id": "overlay_wielded_elc_blds", "fg": 580, "rotates": false }, + { "id": "overlay_wielded_elec_chainsaw_off", "fg": 574, "rotates": false }, + { "id": "overlay_wielded_elec_chainsaw_on", "fg": 574, "rotates": false }, + { "id": "overlay_wielded_emp_gun", "fg": 506, "rotates": false }, + { "id": "overlay_wielded_estoc", "fg": 456, "rotates": false }, + { "id": "overlay_wielded_estoc_fake", "fg": 456, "rotates": false }, + { "id": "overlay_wielded_ethereal_crossbow", "fg": 504, "rotates": false }, + { "id": "overlay_wielded_fencing_epee", "fg": 456, "rotates": false }, + { "id": "overlay_wielded_fencing_foil", "fg": 456, "rotates": false }, + { "id": "overlay_wielded_fencing_sabre", "fg": 456, "rotates": false }, + { "id": "overlay_wielded_ficrico", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_fighter_sting", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_fire_ax", "fg": 586, "rotates": false }, + { "id": "overlay_wielded_fire_lance", "fg": 477, "rotates": false }, + { "id": "overlay_wielded_fishing_rod_basic", "fg": 587, "rotates": false }, + { "id": "overlay_wielded_fishing_rod_professional", "fg": 587, "rotates": false }, + { "id": "overlay_wielded_flamethrower", "fg": 507, "rotates": false }, + { "id": "overlay_wielded_flamethrower_crude", "fg": 507, "rotates": false }, + { "id": "overlay_wielded_flamethrower_simple", "fg": 507, "rotates": false }, + { "id": "overlay_wielded_flaregun", "fg": 483, "rotates": false }, + { "id": "overlay_wielded_flute", "fg": 575, "rotates": false }, + { "id": "overlay_wielded_fn57", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_fn_fal", "fg": 487, "rotates": false }, + { "id": "overlay_wielded_fn_p90", "fg": 508, "rotates": false }, + { "id": "overlay_wielded_ftk93", "fg": 509, "rotates": false }, + { "id": "overlay_wielded_garand", "fg": 510, "rotates": false }, + { "id": "overlay_wielded_gattler", "fg": 624, "rotates": false }, + { "id": "overlay_wielded_glaive", "fg": 478, "rotates": false }, + { "id": "overlay_wielded_glass_macuahuitl", "fg": 457, "rotates": false }, + { "id": "overlay_wielded_glass_shiv", "fg": 458, "rotates": false }, + { "id": "overlay_wielded_glock_17", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_glock_19", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_glock_22", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_glowstick", "fg": 590, "rotates": false }, + { "id": "overlay_wielded_glowstick_dead", "fg": 590, "rotates": false }, + { "id": "overlay_wielded_glowstick_lit", "fg": 591, "rotates": false }, + { "id": "overlay_wielded_golf_club", "fg": 459, "rotates": false }, + { "id": "overlay_wielded_grapnel", "fg": 460, "rotates": false }, + { "id": "overlay_wielded_gungnir_replica", "fg": 607, "rotates": false }, + { "id": "overlay_wielded_gunknife", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_gunsword", "fg": 533, "rotates": false }, + { "id": "overlay_wielded_h&k416a5", "fg": 623, "rotates": false }, + { "id": "overlay_wielded_halberd", "fg": 468, "rotates": false }, + { "id": "overlay_wielded_halberd_fake", "fg": 468, "rotates": false }, + { "id": "overlay_wielded_halligan", "fg": 588, "rotates": false }, + { "id": "overlay_wielded_hammer", "fg": 589, "rotates": false }, + { "id": "overlay_wielded_hammer_sledge", "fg": 461, "rotates": false }, + { "id": "overlay_wielded_hand_crossbow", "fg": 511, "rotates": false }, + { "id": "overlay_wielded_handflare", "fg": 590, "rotates": false }, + { "id": "overlay_wielded_handflare_dead", "fg": 590, "rotates": false }, + { "id": "overlay_wielded_handflare_lit", "fg": 591, "rotates": false }, + { "id": "overlay_wielded_hatchet", "fg": 570, "rotates": false }, + { "id": "overlay_wielded_heavy_flashlight", "fg": 590, "rotates": false }, + { "id": "overlay_wielded_heavy_flashlight_on", "fg": 591, "rotates": false }, + { "id": "overlay_wielded_heavy_rail_rifle", "fg": 515, "rotates": false }, + { "id": "overlay_wielded_helsing", "fg": 512, "rotates": false }, + { "id": "overlay_wielded_henry_big_boy", "fg": 489, "rotates": false }, + { "id": "overlay_wielded_hexenhammer", "fg": 461, "rotates": false }, + { "id": "overlay_wielded_hexenhammer_active", "fg": 461, "rotates": false }, + { "id": "overlay_wielded_hk_g36", "fg": 514, "rotates": false }, + { "id": "overlay_wielded_hk_g3", "fg": 513, "rotates": false }, + { "id": "overlay_wielded_hk_g80", "fg": 515, "rotates": false }, + { "id": "overlay_wielded_hk_mp5", "fg": 516, "rotates": false }, + { "id": "overlay_wielded_hk_mp5eod", "fg": 552, "rotates": false }, + { "id": "overlay_wielded_hk_mp7", "fg": 529, "rotates": false }, + { "id": "overlay_wielded_hk_ucp", "fg": 483, "rotates": false }, + { "id": "overlay_wielded_hk_ump45", "fg": 516, "rotates": false }, + { "id": "overlay_wielded_hockey_stick", "fg": 459, "rotates": false }, + { "id": "overlay_wielded_hoe", "fg": 592, "rotates": false }, + { "id": "overlay_wielded_homewrecker", "fg": 448, "rotates": false }, + { "id": "overlay_wielded_honey_scraper", "fg": 573, "rotates": false }, + { "id": "overlay_wielded_huge_crossbow", "fg": 498, "rotates": false }, + { "id": "overlay_wielded_i_staff", "fg": 462, "rotates": false }, + { "id": "overlay_wielded_iceaxe", "fg": 593, "rotates": false }, + { "id": "overlay_wielded_ichaival_replica", "fg": 503, "rotates": false }, + { "id": "overlay_wielded_javelin", "fg": 453, "rotates": false }, + { "id": "overlay_wielded_javelin_copper", "fg": 453, "rotates": false }, + { "id": "overlay_wielded_javelin_iron", "fg": 463, "rotates": false }, + { "id": "overlay_wielded_javelin_stone", "fg": 463, "rotates": false }, + { "id": "overlay_wielded_jerrycan", "fg": 432, "rotates": false }, + { "id": "overlay_wielded_jerrycan_big", "fg": 432, "rotates": false }, + { "id": "overlay_wielded_ji", "fg": 478, "rotates": false }, + { "id": "overlay_wielded_jian", "fg": 479, "rotates": false }, + { "id": "overlay_wielded_jian_fake", "fg": 479, "rotates": false }, + { "id": "overlay_wielded_jian_inferior", "fg": 479, "rotates": false }, + { "id": "overlay_wielded_katana", "fg": 583, "rotates": false }, + { "id": "overlay_wielded_katana_fake", "fg": 583, "rotates": false }, + { "id": "overlay_wielded_katana_inferior", "fg": 583, "rotates": false }, + { "id": [ "overlay_wielded_keg", "overlay_wielded_keg_steel" ], "fg": 433, "rotates": false }, + { "id": "overlay_wielded_khopesh", "fg": 606, "rotates": false }, + { "id": "overlay_wielded_knife_butcher", "fg": 594, "rotates": false }, + { "id": "overlay_wielded_knife_combat", "fg": 595, "rotates": false }, + { "id": "overlay_wielded_knife_hunting", "fg": 595, "rotates": false }, + { "id": "overlay_wielded_knife_rambo", "fg": 595, "rotates": false }, + { "id": "overlay_wielded_knife_rm42", "fg": 595, "rotates": false }, + { "id": "overlay_wielded_knife_steak", "fg": 573, "rotates": false }, + { "id": "overlay_wielded_knife_swissarmy", "fg": 458, "rotates": false }, + { "id": "overlay_wielded_knife_trench", "fg": 595, "rotates": false }, + { "id": "overlay_wielded_knuckle_brass", "fg": 464, "rotates": false }, + { "id": "overlay_wielded_knuckle_katar", "fg": 465, "rotates": false }, + { "id": "overlay_wielded_knuckle_nail", "fg": 465, "rotates": false }, + { "id": "overlay_wielded_knuckle_steel", "fg": 464, "rotates": false }, + { "id": "overlay_wielded_kris", "fg": 596, "rotates": false }, + { "id": "overlay_wielded_kris_fake", "fg": 596, "rotates": false }, + { "id": "overlay_wielded_ksg", "fg": 514, "rotates": false }, + { "id": "overlay_wielded_ksub2000", "fg": 487, "rotates": false }, + { "id": "overlay_wielded_kukri", "fg": 597, "rotates": false }, + { "id": "overlay_wielded_l-stick", "fg": 590, "rotates": false }, + { "id": "overlay_wielded_l-stick_on", "fg": 591, "rotates": false }, + { "id": "overlay_wielded_l_bak_223", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_l_base_223", "fg": 522, "rotates": false }, + { "id": "overlay_wielded_l_car_223", "fg": 522, "rotates": false }, + { "id": "overlay_wielded_l_def_12", "fg": 491, "rotates": false }, + { "id": "overlay_wielded_l_dsr_223", "fg": 522, "rotates": false }, + { "id": "overlay_wielded_l_enforcer_45", "fg": 483, "rotates": false }, + { "id": "overlay_wielded_l_lmg_223", "fg": 522, "rotates": false }, + { "id": "overlay_wielded_l_long_45", "fg": 510, "rotates": false }, + { "id": "overlay_wielded_l_lookout_9mm", "fg": 483, "rotates": false }, + { "id": "overlay_wielded_l_mbr_223", "fg": 522, "rotates": false }, + { "id": "overlay_wielded_l_mp_45", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_l_mp_9mm", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_l_sp_45", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_l_sp_9mm", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_laevateinn_replica", "fg": 571, "rotates": false }, + { "id": "overlay_wielded_lajatang", "fg": 466, "rotates": false }, + { "id": "overlay_wielded_laser_cannon", "fg": 517, "rotates": false }, + { "id": "overlay_wielded_laser_rifle", "fg": 518, "rotates": false }, + { "id": "overlay_wielded_launcher_simple", "fg": 519, "rotates": false }, + { "id": "overlay_wielded_lemat_revolver", "fg": 483, "rotates": false }, + { "id": "overlay_wielded_levergun_44", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_lobotomizer", "fg": 598, "rotates": false }, + { "id": "overlay_wielded_longbow", "fg": 521, "rotates": false }, + { "id": "overlay_wielded_longsword", "fg": 616, "rotates": false }, + { "id": "overlay_wielded_longsword_fake", "fg": 616, "rotates": false }, + { "id": "overlay_wielded_longsword_inferior", "fg": 616, "rotates": false }, + { "id": "overlay_wielded_ltcarb", "fg": 560, "rotates": false }, + { "id": "overlay_wielded_m1014", "fg": 491, "rotates": false }, + { "id": "overlay_wielded_m107a1", "fg": 523, "rotates": false }, + { "id": "overlay_wielded_m134", "fg": 524, "rotates": false }, + { "id": "overlay_wielded_m14a", "fg": 484, "rotates": false }, + { "id": "overlay_wielded_m14ebr", "fg": 484, "rotates": false }, + { "id": "overlay_wielded_m1903", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_m1911", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_m1918", "fg": 525, "rotates": false }, + { "id": "overlay_wielded_m1a", "fg": 489, "rotates": false }, + { "id": "overlay_wielded_m2010", "fg": 510, "rotates": false }, + { "id": "overlay_wielded_m202_flash", "fg": 526, "rotates": false }, + { "id": "overlay_wielded_m240", "fg": 525, "rotates": false }, + { "id": "overlay_wielded_m249", "fg": 525, "rotates": false }, + { "id": "overlay_wielded_m27iar", "fg": 486, "rotates": false }, + { "id": "overlay_wielded_m2browning", "fg": 527, "rotates": false }, + { "id": "overlay_wielded_m2browning_sawn", "fg": 525, "rotates": false }, + { "id": "overlay_wielded_m320", "fg": 519, "rotates": false }, + { "id": "overlay_wielded_m3_carlgustav", "fg": 528, "rotates": false }, + { "id": "overlay_wielded_m4a1", "fg": 623, "rotates": false }, + { "id": "overlay_wielded_m60", "fg": 525, "rotates": false }, + { "id": "overlay_wielded_m79", "fg": 519, "rotates": false }, + { "id": "overlay_wielded_m9", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_mac_10", "fg": 529, "rotates": false }, + { "id": "overlay_wielded_mace", "fg": 467, "rotates": false }, + { "id": "overlay_wielded_machete", "fg": 584, "rotates": false }, + { "id": "overlay_wielded_makarov", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_makeshift_axe", "fg": 602, "rotates": false }, + { "id": "overlay_wielded_makeshift_crowbar", "fg": 599, "rotates": false }, + { "id": "overlay_wielded_makeshift_halberd", "fg": 468, "rotates": false }, + { "id": "overlay_wielded_makeshift_hammer", "fg": 589, "rotates": false }, + { "id": "overlay_wielded_makeshift_knife", "fg": 578, "rotates": false }, + { "id": "overlay_wielded_makeshift_machete", "fg": 584, "rotates": false }, + { "id": "overlay_wielded_makeshift_shovel", "fg": 605, "rotates": false }, + { "id": "overlay_wielded_mark19", "fg": 530, "rotates": false }, + { "id": "overlay_wielded_marlin_9a", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_metal_tank", "fg": 434, "rotates": false }, + { "id": "overlay_wielded_metal_tank_little", "fg": 435, "rotates": false }, + { "id": "overlay_wielded_metal_tank_small", "fg": 435, "rotates": false }, + { "id": "overlay_wielded_mgl", "fg": 530, "rotates": false }, + { "id": "overlay_wielded_mininuke_launcher", "fg": 531, "rotates": false }, + { "id": "overlay_wielded_minispeargun", "fg": 532, "rotates": false }, + { "id": "overlay_wielded_mjolnir", "fg": 469, "rotates": false }, + { "id": "overlay_wielded_mjolnir_replica", "fg": 469, "rotates": false }, + { "id": "overlay_wielded_mop", "fg": 600, "rotates": false }, + { "id": "overlay_wielded_morningstar", "fg": 470, "rotates": false }, + { "id": "overlay_wielded_mosin44", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_mosin44_ebr", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_mosin91_30", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_mosin91_30_ebr", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_moss_brownie", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_mossberg_500", "fg": 491, "rotates": false }, + { "id": "overlay_wielded_naginata", "fg": 478, "rotates": false }, + { "id": "overlay_wielded_naginata_survivor", "fg": 478, "rotates": false }, + { "id": "overlay_wielded_nailbat", "fg": 448, "rotates": false }, + { "id": "overlay_wielded_nailboard", "fg": 471, "rotates": false }, + { "id": "overlay_wielded_nailgun", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_nailrifle", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_needlegun", "fg": 542, "rotates": false }, + { "id": "overlay_wielded_needlepistol", "fg": 540, "rotates": false }, + { "id": "overlay_wielded_nodachi", "fg": 601, "rotates": false }, + { "id": "overlay_wielded_nodachi_fake", "fg": 601, "rotates": false }, + { "id": "overlay_wielded_nx17", "fg": 560, "rotates": false }, + { "id": "overlay_wielded_pan", "fg": 472, "rotates": false }, + { "id": "overlay_wielded_pickaxe", "fg": 593, "rotates": false }, + { "id": "overlay_wielded_pipe", "fg": 473, "rotates": false }, + { "id": "overlay_wielded_pipe__gun_44", "fg": 533, "rotates": false }, + { "id": "overlay_wielded_pipe_combination_gun", "fg": 533, "rotates": false }, + { "id": "overlay_wielded_pipe_double_shotgun", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_pipe_shotgun", "fg": 489, "rotates": false }, + { "id": "overlay_wielded_pipe_shotgunsawn", "fg": 622, "rotates": false }, + { "id": "overlay_wielded_pistol_flintlock", "fg": 535, "rotates": false }, + { "id": "overlay_wielded_pistol_pepperbox", "fg": 533, "rotates": false }, + { "id": "overlay_wielded_pitchfork", "fg": 474, "rotates": false }, + { "id": "overlay_wielded_plasma_rifle", "fg": 536, "rotates": false }, + { "id": "overlay_wielded_pockknife", "fg": 578, "rotates": false }, + { "id": "overlay_wielded_pointy_stick", "fg": 453, "rotates": false }, + { "id": "overlay_wielded_pool_cue", "fg": 453, "rotates": false }, + { "id": "overlay_wielded_pot", "fg": 472, "rotates": false }, + { "id": "overlay_wielded_pot_copper", "fg": 472, "rotates": false }, + { "id": "overlay_wielded_ppsh", "fg": 537, "rotates": false }, + { "id": "overlay_wielded_primitive_adze", "fg": 602, "rotates": false }, + { "id": "overlay_wielded_primitive_axe", "fg": 602, "rotates": false }, + { "id": "overlay_wielded_primitive_hammer", "fg": 602, "rotates": false }, + { "id": "overlay_wielded_primitive_knife", "fg": 573, "rotates": false }, + { "id": "overlay_wielded_punch_dagger", "fg": 476, "rotates": false }, + { "id": "overlay_wielded_q_staff", "fg": 462, "rotates": false }, + { "id": "overlay_wielded_raging_bull", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_rapier", "fg": 603, "rotates": false }, + { "id": "overlay_wielded_rapier_fake", "fg": 603, "rotates": false }, + { "id": "overlay_wielded_rebar_rifle", "fg": 515, "rotates": false }, + { "id": "overlay_wielded_recurbow", "fg": 503, "rotates": false }, + { "id": "overlay_wielded_reflexbow", "fg": 503, "rotates": false }, + { "id": "overlay_wielded_reflexrecurvebow", "fg": 538, "rotates": false }, + { "id": "overlay_wielded_remington_700", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_remington_870", "fg": 489, "rotates": false }, + { "id": "overlay_wielded_rep_crossbow", "fg": 539, "rotates": false }, + { "id": "overlay_wielded_revolver_shotgun", "fg": 489, "rotates": false }, + { "id": "overlay_wielded_rifle_223", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_rifle_22", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_rifle_3006", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_rifle_308", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_rifle_38", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_rifle_40", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_rifle_44", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_rifle_45", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_rifle_9mm", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_rifle_flintlock", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_rm103a_pistol", "fg": 540, "rotates": false }, + { "id": "overlay_wielded_rm11b_sniper_rifle", "fg": 523, "rotates": false }, + { "id": "overlay_wielded_rm120c", "fg": 545, "rotates": false }, + { "id": "overlay_wielded_rm2000_smg", "fg": 542, "rotates": false }, + { "id": "overlay_wielded_rm20", "fg": 541, "rotates": false }, + { "id": "overlay_wielded_rm228", "fg": 516, "rotates": false }, + { "id": "overlay_wielded_rm298", "fg": 525, "rotates": false }, + { "id": "overlay_wielded_rm360_carbine", "fg": 543, "rotates": false }, + { "id": "overlay_wielded_rm451_flamethrower", "fg": 544, "rotates": false }, + { "id": "overlay_wielded_rm51_assault_rifle", "fg": 545, "rotates": false }, + { "id": "overlay_wielded_rm614_lmg", "fg": 541, "rotates": false }, + { "id": "overlay_wielded_rm802", "fg": 519, "rotates": false }, + { "id": "overlay_wielded_rm88_battle_rifle", "fg": 545, "rotates": false }, + { "id": "overlay_wielded_rm99_pistol", "fg": 540, "rotates": false }, + { "id": "overlay_wielded_rock", "fg": 476, "rotates": false }, + { "id": "overlay_wielded_rock_sock", "fg": 475, "rotates": false }, + { "id": "overlay_wielded_ruger_1022", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_ruger_lcr_22", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_ruger_lcr_38", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_ruger_mini", "fg": 484, "rotates": false }, + { "id": "overlay_wielded_ruger_redhawk", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_saiga_12", "fg": 513, "rotates": false }, + { "id": "overlay_wielded_saiga_sawn", "fg": 622, "rotates": false }, + { "id": "overlay_wielded_savage_111f", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_saxophone", "fg": 620, "rotates": false }, + { "id": "overlay_wielded_scar_h", "fg": 547, "rotates": false }, + { "id": "overlay_wielded_scar_l", "fg": 547, "rotates": false }, + { "id": "overlay_wielded_scimitar_fake", "fg": 583, "rotates": false }, + { "id": "overlay_wielded_scimitar_inferior", "fg": 583, "rotates": false }, { "id": [ "overlay_wielded_scimitar", "overlay_wielded_cavalry_sabre", "overlay_wielded_cavalry_sabre_fake" ], - "fg": 577, + "fg": 583, "rotates": false }, - { "id": "overlay_wielded_scourge_staff", "fg": 542, "rotates": false }, - { "id": "overlay_wielded_scrap", "fg": 470, "rotates": false }, - { "id": "overlay_wielded_scrap_copper", "fg": 470, "rotates": false }, - { "id": "overlay_wielded_screwdriver", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_screwdriver_set", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_scythe", "fg": 598, "rotates": false }, - { "id": "overlay_wielded_scythe_war", "fg": 598, "rotates": false }, - { "id": "overlay_wielded_selfbow", "fg": 515, "rotates": false }, - { "id": "overlay_wielded_sharp_rock", "fg": 470, "rotates": false }, - { "id": "overlay_wielded_sharp_toothbrush", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_shishkebab_off", "fg": 578, "rotates": false }, - { "id": "overlay_wielded_shishkebab_on", "fg": 579, "rotates": false }, - { "id": "overlay_wielded_shock_staff", "fg": 456, "rotates": false }, - { "id": "overlay_wielded_shockcannon", "fg": 543, "rotates": false }, - { "id": "overlay_wielded_shocktonfa_off", "fg": 474, "rotates": false }, - { "id": "overlay_wielded_shocktonfa_on", "fg": 474, "rotates": false }, - { "id": "overlay_wielded_shortbow", "fg": 544, "rotates": false }, - { "id": "overlay_wielded_shotgun_d", "fg": 528, "rotates": false }, - { "id": "overlay_wielded_shotgun_s", "fg": 483, "rotates": false }, - { "id": "overlay_wielded_shotgun_sawn", "fg": 616, "rotates": false }, - { "id": "overlay_wielded_shovel", "fg": 599, "rotates": false }, - { "id": "overlay_wielded_sickle", "fg": 600, "rotates": false }, - { "id": "overlay_wielded_sig552", "fg": 545, "rotates": false }, - { "id": "overlay_wielded_sig_40", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_sig_mosquito", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_sig_p230", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_skorpion_61", "fg": 546, "rotates": false }, - { "id": "overlay_wielded_skorpion_82", "fg": 546, "rotates": false }, - { "id": "overlay_wielded_sks", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_sling", "fg": 547, "rotates": false }, - { "id": "overlay_wielded_slingshot", "fg": 548, "rotates": false }, - { "id": "overlay_wielded_smg_22", "fg": 523, "rotates": false }, - { "id": "overlay_wielded_smg_38", "fg": 523, "rotates": false }, - { "id": "overlay_wielded_smg_40", "fg": 523, "rotates": false }, - { "id": "overlay_wielded_smg_45", "fg": 523, "rotates": false }, - { "id": "overlay_wielded_smg_9mm", "fg": 523, "rotates": false }, - { "id": "overlay_wielded_spear_copper", "fg": 471, "rotates": false }, - { "id": "overlay_wielded_spear_dory", "fg": 471, "rotates": false }, - { "id": "overlay_wielded_spear_forked", "fg": 468, "rotates": false }, - { "id": "overlay_wielded_spear_knife", "fg": 471, "rotates": false }, - { "id": "overlay_wielded_spear_pestilence", "fg": 601, "rotates": false }, - { "id": "overlay_wielded_spear_rebar", "fg": 471, "rotates": false }, - { "id": [ "overlay_wielded_spear_steel", "overlay_wielded_spear_pipe" ], "fg": 471, "rotates": false }, - { "id": "overlay_wielded_spear_survivor", "fg": 472, "rotates": false }, - { "id": "overlay_wielded_spear_wood", "fg": 457, "rotates": false }, - { "id": "overlay_wielded_speargun", "fg": 549, "rotates": false }, - { "id": "overlay_wielded_spike", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_spiked_plate", "fg": 465, "rotates": false }, - { "id": "overlay_wielded_steel_chunk", "fg": 470, "rotates": false }, - { "id": "overlay_wielded_steel_lump", "fg": 470, "rotates": false }, - { "id": "overlay_wielded_sten", "fg": 550, "rotates": false }, - { "id": "overlay_wielded_steyr_aug", "fg": 551, "rotates": false }, - { "id": "overlay_wielded_stick", "fg": 448, "rotates": false }, - { "id": "overlay_wielded_stock_pot", "fg": 621, "rotates": false }, - { "id": "overlay_wielded_stormbringer", "fg": 565, "rotates": false }, - { "id": "overlay_wielded_stormbringer_on", "fg": 602, "rotates": false }, - { "id": "overlay_wielded_surv_carbine_223", "fg": 493, "rotates": false }, - { "id": "overlay_wielded_surv_hand_cannon", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_surv_levershotgun", "fg": 483, "rotates": false }, - { "id": "overlay_wielded_surv_rocket_launcher", "fg": 522, "rotates": false }, - { "id": "overlay_wielded_surv_six_shooter", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_survbow", "fg": 552, "rotates": false }, - { "id": "overlay_wielded_survivor_machete", "fg": 578, "rotates": false }, - { "id": "overlay_wielded_survivor_special_700", "fg": 504, "rotates": false }, - { "id": "overlay_wielded_svs-24", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_svs-24c", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_sw629", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_sw_22", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_sw_500", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_sw_610", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_sw_619", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_switchblade", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_sword_crude", "fg": 473, "rotates": false }, - { "id": "overlay_wielded_sword_forged", "fg": 473, "rotates": false }, - { "id": "overlay_wielded_sword_nail", "fg": 442, "rotates": false }, - { "id": "overlay_wielded_sword_wood", "fg": 438, "rotates": false }, - { "id": "overlay_wielded_sword_xiphos", "fg": 579, "rotates": false }, - { "id": "overlay_wielded_tanto", "fg": 603, "rotates": false }, - { "id": "overlay_wielded_taurus_38", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_tazer", "fg": 604, "rotates": false }, - { "id": "overlay_wielded_tec9", "fg": 523, "rotates": false }, - { "id": "overlay_wielded_teleumbrella", "fg": 475, "rotates": false }, - { "id": "overlay_wielded_tihar", "fg": 537, "rotates": false }, - { "id": "overlay_wielded_tokarev", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_tommygun", "fg": 546, "rotates": false }, - { "id": "overlay_wielded_tonfa", "fg": 474, "rotates": false }, - { "id": "overlay_wielded_tonfa_wood", "fg": 474, "rotates": false }, - { "id": "overlay_wielded_tool_anfo_charge", "fg": 427, "rotates": false }, - { "id": "overlay_wielded_tool_anfo_charge_act", "fg": 427, "rotates": false }, - { "id": "overlay_wielded_tool_rdx_charge", "fg": 427, "rotates": false }, - { "id": "overlay_wielded_tool_rdx_charge_act", "fg": 427, "rotates": false }, - { "id": "overlay_wielded_torch", "fg": 562, "rotates": false }, - { "id": "overlay_wielded_torch_done", "fg": 562, "rotates": false }, - { "id": "overlay_wielded_torch_lit", "fg": 563, "rotates": false }, - { "id": "overlay_wielded_trex_gun", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_trimmer_off", "fg": 568, "rotates": false }, - { "id": "overlay_wielded_trimmer_on", "fg": 568, "rotates": false }, - { "id": "overlay_wielded_triple_launcher_simple", "fg": 481, "rotates": false }, - { "id": "overlay_wielded_trumpet", "fg": 605, "rotates": false }, - { "id": "overlay_wielded_tuba", "fg": 615, "rotates": false }, - { "id": "overlay_wielded_ukulele", "fg": 606, "rotates": false }, - { "id": "overlay_wielded_umbrella", "fg": 475, "rotates": false }, - { "id": "overlay_wielded_ups_rifle", "fg": 555, "rotates": false }, - { "id": "overlay_wielded_ups_rifle_crank", "fg": 556, "rotates": false }, - { "id": "overlay_wielded_usp_45", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_usp_9mm", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_uzi", "fg": 557, "rotates": false }, - { "id": "overlay_wielded_v29", "fg": 558, "rotates": false }, - { "id": "overlay_wielded_v29_cheap", "fg": 559, "rotates": false }, - { "id": "overlay_wielded_vibrator", "fg": 607, "rotates": false }, - { "id": "overlay_wielded_violin", "fg": 608, "rotates": false }, - { "id": "overlay_wielded_violin_golden", "fg": 608, "rotates": false }, - { "id": "overlay_wielded_wakizashi", "fg": 577, "rotates": false }, - { "id": "overlay_wielded_wakizashi_fake", "fg": 577, "rotates": false }, - { "id": "overlay_wielded_wakizashi_inferior", "fg": 577, "rotates": false }, - { "id": "overlay_wielded_walther_ppk", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_warhammer", "fg": 476, "rotates": false }, - { "id": "overlay_wielded_wasp_sting", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_weatherby_5", "fg": 485, "rotates": false }, - { "id": "overlay_wielded_win70", "fg": 537, "rotates": false }, - { "id": "overlay_wielded_wooden_barrel", "fg": 430, "rotates": false }, - { "id": "overlay_wielded_wrench", "fg": 609, "rotates": false }, - { "id": "overlay_wielded_wristrocket", "fg": 548, "rotates": false }, - { "id": "overlay_wielded_xacto", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_zweifire_off", "fg": 610, "rotates": false }, - { "id": "overlay_wielded_zweifire_on", "fg": 611, "rotates": false }, - { "id": "overlay_wielded_zweihander", "fg": 610, "rotates": false }, - { "id": "overlay_wielded_zweihander_fake", "fg": 610, "rotates": false }, - { "id": "overlay_wielded_zweihander_inferior", "fg": 610, "rotates": false }, - { "id": "overlay_female_worn_dress_shirt", "fg": 663, "rotates": false }, - { "id": "overlay_female_worn_jumpsuit", "fg": 664, "rotates": false }, - { "id": "overlay_female_worn_jumpsuit_xl", "fg": 664, "rotates": false }, - { "id": "overlay_female_worn_linuxtshirt", "fg": 668, "rotates": false }, - { "id": "overlay_female_worn_long_underpants", "fg": 665, "rotates": false }, - { "id": "overlay_female_worn_long_undertop", "fg": 666, "rotates": false }, - { "id": "overlay_female_worn_longshirt", "fg": 667, "rotates": false }, - { "id": "overlay_female_worn_polo_shirt", "fg": 668, "rotates": false }, - { "id": "overlay_female_worn_postman_shirt", "fg": 663, "rotates": false }, - { "id": "overlay_female_worn_sheriffshirt", "fg": 667, "rotates": false }, - { "id": "overlay_female_worn_thermal_outfit", "fg": 623, "rotates": false }, - { "id": "overlay_female_worn_thermal_outfit_on", "fg": 623, "rotates": false }, - { "id": "overlay_female_worn_thermal_suit", "fg": 624, "rotates": false }, - { "id": "overlay_female_worn_thermal_suit_on", "fg": 624, "rotates": false }, - { "id": "overlay_female_worn_towel", "fg": 625, "rotates": false }, - { "id": "overlay_female_worn_towel_soiled", "fg": 678, "rotates": false }, - { "id": "overlay_female_worn_towel_wet", "fg": 625, "rotates": false }, - { "id": "overlay_female_worn_tshirt", "fg": 668, "rotates": false }, - { "id": "overlay_female_worn_tshirt_text", "fg": 668, "rotates": false }, - { "id": "overlay_female_worn_under_armor", "fg": 669, "rotates": false }, - { "id": "overlay_female_worn_union_suit", "fg": 670, "rotates": false }, - { "id": "overlay_male_worn_dress_shirt", "fg": 671, "rotates": false }, - { "id": "overlay_male_worn_jumpsuit", "fg": 672, "rotates": false }, - { "id": "overlay_male_worn_jumpsuit_xl", "fg": 672, "rotates": false }, - { "id": "overlay_male_worn_linuxtshirt", "fg": 677, "rotates": false }, - { "id": "overlay_male_worn_long_underpants", "fg": 673, "rotates": false }, - { "id": "overlay_male_worn_long_undertop", "fg": 674, "rotates": false }, - { "id": "overlay_male_worn_longshirt", "fg": 675, "rotates": false }, - { "id": "overlay_male_worn_polo_shirt", "fg": 677, "rotates": false }, - { "id": "overlay_male_worn_postman_shirt", "fg": 671, "rotates": false }, - { "id": "overlay_male_worn_sheriffshirt", "fg": 675, "rotates": false }, - { "id": "overlay_male_worn_thermal_outfit", "fg": 626, "rotates": false }, - { "id": "overlay_male_worn_thermal_outfit_on", "fg": 626, "rotates": false }, - { "id": "overlay_male_worn_thermal_suit", "fg": 627, "rotates": false }, - { "id": "overlay_male_worn_thermal_suit_on", "fg": 627, "rotates": false }, - { "id": "overlay_male_worn_towel", "fg": 628, "rotates": false }, - { "id": "overlay_male_worn_towel_soiled", "fg": 679, "rotates": false }, - { "id": "overlay_male_worn_towel_wet", "fg": 628, "rotates": false }, - { "id": "overlay_male_worn_tshirt", "fg": 677, "rotates": false }, - { "id": "overlay_male_worn_tshirt_text", "fg": 677, "rotates": false }, - { "id": "overlay_male_worn_under_armor", "fg": 681, "rotates": false }, - { "id": "overlay_male_worn_union_suit", "fg": 683, "rotates": false }, - { "id": "overlay_worn_2byarm_guard", "fg": 694, "rotates": false }, - { "id": "overlay_worn_2byshin_guard", "fg": 851, "rotates": false }, - { "id": "overlay_worn_XL_holster", "fg": 918, "rotates": false }, - { "id": "overlay_worn_aep_suit", "fg": 686, "rotates": false }, - { "id": "overlay_worn_american_flag", "fg": 690, "rotates": false }, - { "id": [ "overlay_worn_ammo_satchel", "overlay_worn_flintlock_pouch" ], "fg": 817, "rotates": false }, - { "id": "overlay_worn_anbc_suit", "fg": 692, "rotates": false }, - { "id": "overlay_worn_apron_leather", "fg": 971, "rotates": false }, - { "id": "overlay_worn_arm_splint", "fg": 703, "rotates": false }, - { "id": "overlay_worn_arm_warmers", "fg": 704, "rotates": false }, - { "id": "overlay_worn_armguard_acidchitin", "fg": 691, "rotates": false }, - { "id": "overlay_worn_armguard_chitin", "fg": 693, "rotates": false }, - { "id": "overlay_worn_armguard_hard", "fg": 694, "rotates": false }, - { "id": "overlay_worn_armguard_larmor", "fg": 693, "rotates": false }, - { "id": [ "overlay_worn_armguard_metal", "overlay_worn_armguard_lightplate" ], "fg": 1021, "rotates": false }, - { "id": "overlay_worn_armguard_paper", "fg": 695, "rotates": false }, - { "id": "overlay_worn_armguard_soft", "fg": 694, "rotates": false }, - { "id": "overlay_worn_armor_acidchitin", "fg": 689, "rotates": false }, - { "id": "overlay_worn_armor_blarmor", "fg": 697, "rotates": false }, - { "id": "overlay_worn_armor_chitin", "fg": 696, "rotates": false }, - { "id": "overlay_worn_armor_cuirass", "fg": 747, "rotates": false }, - { "id": "overlay_worn_armor_farmor", "fg": 697, "rotates": false }, - { "id": "overlay_worn_armor_lamellar", "fg": 697, "rotates": false }, - { "id": "overlay_worn_armor_larmor", "fg": 697, "rotates": false }, - { "id": "overlay_worn_armor_lightplate", "fg": 699, "rotates": false }, - { "id": [ "overlay_worn_armor_lorica", "overlay_worn_cuirass_lightplate" ], "fg": 747, "rotates": false }, - { "id": "overlay_worn_armor_nomad", "fg": 988, "rotates": false }, - { "id": "overlay_worn_armor_plarmor", "fg": 698, "rotates": false }, - { "id": "overlay_worn_armor_plate", "fg": 699, "rotates": false }, - { "id": "overlay_worn_armor_samurai", "fg": 700, "rotates": false }, - { "id": "overlay_worn_armor_scavenger", "fg": 989, "rotates": false }, - { "id": "overlay_worn_armor_scrapsuit", "fg": 701, "rotates": false }, - { "id": "overlay_worn_armor_wyrm", "fg": 629, "rotates": false }, - { "id": "overlay_worn_army_top", "fg": 702, "rotates": false }, - { "id": "overlay_worn_b_shorts", "fg": 740, "rotates": false }, - { "id": "overlay_worn_back_holster", "fg": 706, "rotates": false }, - { "id": "overlay_worn_backpack", "fg": 705, "rotates": false }, - { "id": "overlay_worn_backpack_leather", "fg": 705, "rotates": false }, - { "id": "overlay_worn_badge_doctor", "fg": 990, "rotates": false }, - { "id": "overlay_worn_badge_foodkid", "fg": 991, "rotates": false }, - { "id": "overlay_worn_balclava", "fg": 707, "rotates": false }, - { "id": "overlay_worn_baldric", "fg": 918, "rotates": false }, - { "id": "overlay_worn_bandana", "fg": 708, "rotates": false }, - { "id": "overlay_worn_bastsandals", "fg": 709, "rotates": false }, - { "id": "overlay_worn_bead_bracelet", "fg": 992, "rotates": false }, - { "id": "overlay_worn_bead_ear", "fg": 993, "rotates": false }, - { "id": "overlay_worn_beekeeping_gloves", "fg": 783, "rotates": false }, - { "id": "overlay_worn_beekeeping_hood", "fg": 994, "rotates": false }, - { "id": "overlay_worn_beekeeping_suit", "fg": 710, "rotates": false }, - { "id": "overlay_worn_beret", "fg": 711, "rotates": false }, - { "id": "overlay_worn_beret_wool", "fg": 711, "rotates": false }, - { "id": "overlay_worn_bikini_bottom", "fg": 712, "rotates": false }, - { "id": "overlay_worn_bikini_top", "fg": 713, "rotates": false }, - { "id": "overlay_worn_bikini_top_fur", "fg": 749, "rotates": false }, - { "id": "overlay_worn_bikini_top_leather", "fg": 749, "rotates": false }, - { "id": "overlay_worn_bindle", "fg": 714, "rotates": false }, - { "id": "overlay_worn_blanket", "fg": 715, "rotates": false }, - { "id": "overlay_worn_blazer", "fg": 716, "rotates": false }, - { "id": "overlay_worn_blindfold", "fg": 717, "rotates": false }, - { "id": "overlay_worn_bondage_mask", "fg": 718, "rotates": false }, - { "id": "overlay_worn_bondage_suit", "fg": 719, "rotates": false }, - { "id": "overlay_worn_boots", "fg": 720, "rotates": false }, - { "id": "overlay_worn_boots_acidchitin", "fg": 684, "rotates": false }, - { "id": "overlay_worn_boots_bunker", "fg": 727, "rotates": false }, - { "id": "overlay_worn_boots_chitin", "fg": 723, "rotates": false }, - { "id": "overlay_worn_boots_combat", "fg": 724, "rotates": false }, - { "id": "overlay_worn_boots_fsurvivor", "fg": 727, "rotates": false }, - { "id": "overlay_worn_boots_fur", "fg": 726, "rotates": false }, - { "id": "overlay_worn_boots_h20survivor", "fg": 979, "rotates": false }, - { "id": "overlay_worn_boots_hiking", "fg": 720, "rotates": false }, - { "id": "overlay_worn_boots_hsurvivor", "fg": 725, "rotates": false }, - { "id": "overlay_worn_boots_larmor", "fg": 726, "rotates": false }, - { "id": "overlay_worn_boots_lsurvivor", "fg": 726, "rotates": false }, - { "id": "overlay_worn_boots_plate", "fg": 726, "rotates": false }, - { "id": "overlay_worn_boots_steel", "fg": 728, "rotates": false }, - { "id": "overlay_worn_boots_survivor", "fg": 726, "rotates": false }, - { "id": "overlay_worn_boots_western", "fg": 729, "rotates": false }, - { "id": "overlay_worn_boots_winter", "fg": 730, "rotates": false }, - { "id": "overlay_worn_boots_wsurvivor", "fg": 730, "rotates": false }, - { "id": "overlay_worn_boots_xlsurvivor", "fg": 730, "rotates": false }, - { "id": "overlay_worn_bootsheath", "fg": 721, "rotates": false }, - { "id": "overlay_worn_bootstrap", "fg": 722, "rotates": false }, - { "id": "overlay_worn_boxer_briefs", "fg": 731, "rotates": false }, - { "id": "overlay_worn_boxer_shorts", "fg": 731, "rotates": false }, - { "id": "overlay_worn_boxing_gloves", "fg": 732, "rotates": false }, - { "id": "overlay_worn_boy_shorts", "fg": 733, "rotates": false }, - { "id": "overlay_worn_bra", "fg": 734, "rotates": false }, - { "id": "overlay_worn_breeches", "fg": 896, "rotates": false }, - { "id": "overlay_worn_briefcase", "fg": 735, "rotates": false }, - { "id": "overlay_worn_briefs", "fg": 736, "rotates": false }, - { "id": "overlay_worn_bronze_medal", "fg": 997, "rotates": false }, - { "id": "overlay_worn_bscabbard", "fg": 737, "rotates": false }, - { "id": "overlay_worn_bunker_coat", "fg": 738, "rotates": false }, - { "id": "overlay_worn_bunker_pants", "fg": 739, "rotates": false }, - { "id": "overlay_worn_camisole", "fg": 741, "rotates": false }, - { "id": "overlay_worn_case_violin", "fg": 688, "rotates": false }, - { "id": "overlay_worn_cassock", "fg": 742, "rotates": false }, - { "id": [ "overlay_worn_fur_cat_ears", "overlay_worn_faux_fur_cat_ears" ], "fg": 1015, "rotates": false }, - { "id": "overlay_worn_chainmail_arms", "fg": 743, "rotates": false }, - { "id": "overlay_worn_chainmail_hauberk", "fg": 747, "rotates": false }, - { "id": "overlay_worn_chainmail_hood", "fg": 744, "rotates": false }, - { "id": "overlay_worn_chainmail_legs", "fg": 745, "rotates": false }, - { "id": "overlay_worn_chainmail_suit", "fg": 746, "rotates": false }, - { "id": "overlay_worn_chainmail_vest", "fg": 747, "rotates": false }, - { "id": "overlay_worn_chaps_leather", "fg": 748, "rotates": false }, - { "id": "overlay_worn_chestrig", "fg": 975, "rotates": false }, - { "id": "overlay_worn_chestwrap", "fg": 749, "rotates": false }, - { "id": "overlay_worn_chestwrap_fur", "fg": 749, "rotates": false }, - { "id": "overlay_worn_chestwrap_leather", "fg": 749, "rotates": false }, - { "id": "overlay_worn_chestwrap_wool", "fg": 749, "rotates": false }, - { "id": "overlay_worn_cleansuit", "fg": 750, "rotates": false }, - { "id": "overlay_worn_cleats", "fg": 934, "rotates": false }, - { "id": "overlay_worn_cloak", "fg": 751, "rotates": false }, - { "id": "overlay_worn_cloak_bless", "fg": 756, "rotates": false }, - { "id": "overlay_worn_cloak_fur", "fg": 914, "rotates": false }, - { "id": "overlay_worn_cloak_leather", "fg": 914, "rotates": false }, - { "id": "overlay_worn_cloak_wool", "fg": 890, "rotates": false }, - { "id": "overlay_worn_clogs", "fg": 752, "rotates": false }, - { "id": "overlay_worn_clown_suit", "fg": 754, "rotates": false }, - { "id": "overlay_worn_clownshoes", "fg": 753, "rotates": false }, - { "id": "overlay_worn_coat_fur", "fg": 755, "rotates": false }, - { "id": "overlay_worn_coat_fur_sf", "fg": 755, "rotates": false }, - { "id": "overlay_worn_coat_lab", "fg": 756, "rotates": false }, - { "id": "overlay_worn_coat_rain", "fg": 757, "rotates": false }, - { "id": "overlay_worn_coat_winter", "fg": 758, "rotates": false }, - { "id": "overlay_worn_copper_locket", "fg": 998, "rotates": false }, - { "id": "overlay_worn_copper_necklace", "fg": 999, "rotates": false }, - { "id": [ "overlay_worn_copper_ring", "overlay_worn_mring_copper" ], "fg": 1000, "rotates": false }, - { "id": "overlay_worn_corset", "fg": 759, "rotates": false }, - { "id": "overlay_worn_cowboy_hat", "fg": 760, "rotates": false }, - { "id": "overlay_worn_cowl_wool", "fg": 822, "rotates": false }, - { "id": [ "overlay_worn_crown_golden", "overlay_worn_crown_golden_survivor" ], "fg": 687, "rotates": false }, - { "id": "overlay_worn_dance_shoes", "fg": 798, "rotates": false }, - { "id": "overlay_worn_depowered_armor", "fg": 905, "rotates": false }, - { "id": "overlay_worn_depowered_helmet", "fg": 761, "rotates": false }, - { "id": "overlay_worn_dinosuit", "fg": 762, "rotates": false }, - { "id": "overlay_worn_dive_bag", "fg": 763, "rotates": false }, - { "id": "overlay_worn_diving_watch", "fg": 1005, "rotates": false }, - { "id": "overlay_worn_down_blanket", "fg": 715, "rotates": false }, - { "id": "overlay_worn_dragonskin", "fg": 1006, "rotates": false }, - { "id": "overlay_worn_dress", "fg": 764, "rotates": false }, - { "id": "overlay_worn_dress_bless", "fg": 765, "rotates": false }, - { "id": "overlay_worn_dress_shoes", "fg": 921, "rotates": false }, - { "id": "overlay_worn_dress_shoes_air", "fg": 798, "rotates": false }, - { "id": "overlay_worn_dress_skirt", "fg": 927, "rotates": false }, - { "id": "overlay_worn_dress_wedding", "fg": 765, "rotates": false }, - { "id": "overlay_worn_duffelbag", "fg": 948, "rotates": false }, - { "id": "overlay_worn_duster", "fg": 766, "rotates": false }, - { "id": "overlay_worn_duster_fur", "fg": 766, "rotates": false }, - { "id": "overlay_worn_duster_leather", "fg": 766, "rotates": false }, - { "id": "overlay_worn_duster_survivor", "fg": 767, "rotates": false }, - { "id": "overlay_worn_e_handcuffs", "fg": 575, "rotates": false }, + { "id": "overlay_wielded_scourge_staff", "fg": 548, "rotates": false }, + { "id": "overlay_wielded_scrap", "fg": 476, "rotates": false }, + { "id": "overlay_wielded_scrap_copper", "fg": 476, "rotates": false }, + { "id": "overlay_wielded_screwdriver", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_screwdriver_set", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_scythe", "fg": 604, "rotates": false }, + { "id": "overlay_wielded_scythe_war", "fg": 604, "rotates": false }, + { "id": "overlay_wielded_selfbow", "fg": 521, "rotates": false }, + { "id": "overlay_wielded_sharp_rock", "fg": 476, "rotates": false }, + { "id": "overlay_wielded_sharp_toothbrush", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_shishkebab_off", "fg": 584, "rotates": false }, + { "id": "overlay_wielded_shishkebab_on", "fg": 585, "rotates": false }, + { "id": "overlay_wielded_shock_staff", "fg": 462, "rotates": false }, + { "id": "overlay_wielded_shockcannon", "fg": 549, "rotates": false }, + { "id": "overlay_wielded_shocktonfa_off", "fg": 480, "rotates": false }, + { "id": "overlay_wielded_shocktonfa_on", "fg": 480, "rotates": false }, + { "id": "overlay_wielded_shortbow", "fg": 550, "rotates": false }, + { "id": "overlay_wielded_shotgun_d", "fg": 534, "rotates": false }, + { "id": "overlay_wielded_shotgun_s", "fg": 489, "rotates": false }, + { "id": "overlay_wielded_shotgun_sawn", "fg": 622, "rotates": false }, + { "id": "overlay_wielded_shovel", "fg": 605, "rotates": false }, + { "id": "overlay_wielded_sickle", "fg": 606, "rotates": false }, + { "id": "overlay_wielded_sig552", "fg": 551, "rotates": false }, + { "id": "overlay_wielded_sig_40", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_sig_mosquito", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_sig_p230", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_skorpion_61", "fg": 552, "rotates": false }, + { "id": "overlay_wielded_skorpion_82", "fg": 552, "rotates": false }, + { "id": "overlay_wielded_sks", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_sling", "fg": 553, "rotates": false }, + { "id": "overlay_wielded_slingshot", "fg": 554, "rotates": false }, + { "id": "overlay_wielded_smg_22", "fg": 529, "rotates": false }, + { "id": "overlay_wielded_smg_38", "fg": 529, "rotates": false }, + { "id": "overlay_wielded_smg_40", "fg": 529, "rotates": false }, + { "id": "overlay_wielded_smg_45", "fg": 529, "rotates": false }, + { "id": "overlay_wielded_smg_9mm", "fg": 529, "rotates": false }, + { "id": "overlay_wielded_spear_copper", "fg": 477, "rotates": false }, + { "id": "overlay_wielded_spear_dory", "fg": 477, "rotates": false }, + { "id": "overlay_wielded_spear_forked", "fg": 474, "rotates": false }, + { "id": "overlay_wielded_spear_knife", "fg": 477, "rotates": false }, + { "id": "overlay_wielded_spear_pestilence", "fg": 607, "rotates": false }, + { "id": "overlay_wielded_spear_rebar", "fg": 477, "rotates": false }, + { "id": [ "overlay_wielded_spear_steel", "overlay_wielded_spear_pipe" ], "fg": 477, "rotates": false }, + { "id": "overlay_wielded_spear_survivor", "fg": 478, "rotates": false }, + { "id": "overlay_wielded_spear_wood", "fg": 463, "rotates": false }, + { "id": "overlay_wielded_speargun", "fg": 555, "rotates": false }, + { "id": "overlay_wielded_spike", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_spiked_plate", "fg": 471, "rotates": false }, + { "id": "overlay_wielded_steel_chunk", "fg": 476, "rotates": false }, + { "id": "overlay_wielded_steel_lump", "fg": 476, "rotates": false }, + { "id": "overlay_wielded_sten", "fg": 556, "rotates": false }, + { "id": "overlay_wielded_steyr_aug", "fg": 557, "rotates": false }, + { "id": "overlay_wielded_stick", "fg": 454, "rotates": false }, + { "id": "overlay_wielded_stock_pot", "fg": 628, "rotates": false }, + { "id": "overlay_wielded_stormbringer", "fg": 571, "rotates": false }, + { "id": "overlay_wielded_stormbringer_on", "fg": 608, "rotates": false }, + { "id": "overlay_wielded_surv_carbine_223", "fg": 499, "rotates": false }, + { "id": "overlay_wielded_surv_hand_cannon", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_surv_levershotgun", "fg": 489, "rotates": false }, + { "id": "overlay_wielded_surv_rocket_launcher", "fg": 528, "rotates": false }, + { "id": "overlay_wielded_surv_six_shooter", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_survbow", "fg": 558, "rotates": false }, + { "id": "overlay_wielded_survivor_machete", "fg": 584, "rotates": false }, + { "id": "overlay_wielded_survivor_special_700", "fg": 510, "rotates": false }, + { "id": "overlay_wielded_svs-24", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_svs-24c", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_sw629", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_sw_22", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_sw_500", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_sw_610", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_sw_619", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_switchblade", "fg": 458, "rotates": false }, + { "id": "overlay_wielded_sword_crude", "fg": 479, "rotates": false }, + { "id": "overlay_wielded_sword_forged", "fg": 479, "rotates": false }, + { "id": "overlay_wielded_sword_nail", "fg": 448, "rotates": false }, + { "id": "overlay_wielded_sword_wood", "fg": 444, "rotates": false }, + { "id": "overlay_wielded_sword_xiphos", "fg": 585, "rotates": false }, + { "id": "overlay_wielded_tanto", "fg": 609, "rotates": false }, + { "id": "overlay_wielded_taurus_38", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_tazer", "fg": 610, "rotates": false }, + { "id": "overlay_wielded_tec9", "fg": 529, "rotates": false }, + { "id": "overlay_wielded_teleumbrella", "fg": 481, "rotates": false }, + { "id": "overlay_wielded_tihar", "fg": 543, "rotates": false }, + { "id": "overlay_wielded_tokarev", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_tommygun", "fg": 552, "rotates": false }, + { "id": "overlay_wielded_tonfa", "fg": 480, "rotates": false }, + { "id": "overlay_wielded_tonfa_wood", "fg": 480, "rotates": false }, + { "id": "overlay_wielded_tool_anfo_charge", "fg": 433, "rotates": false }, + { "id": "overlay_wielded_tool_anfo_charge_act", "fg": 433, "rotates": false }, + { "id": "overlay_wielded_tool_rdx_charge", "fg": 433, "rotates": false }, + { "id": "overlay_wielded_tool_rdx_charge_act", "fg": 433, "rotates": false }, + { "id": "overlay_wielded_torch", "fg": 568, "rotates": false }, + { "id": "overlay_wielded_torch_done", "fg": 568, "rotates": false }, + { "id": "overlay_wielded_torch_lit", "fg": 569, "rotates": false }, + { "id": "overlay_wielded_trex_gun", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_trimmer_off", "fg": 574, "rotates": false }, + { "id": "overlay_wielded_trimmer_on", "fg": 574, "rotates": false }, + { "id": "overlay_wielded_triple_launcher_simple", "fg": 487, "rotates": false }, + { "id": "overlay_wielded_trumpet", "fg": 611, "rotates": false }, + { "id": "overlay_wielded_tuba", "fg": 621, "rotates": false }, + { "id": "overlay_wielded_ukulele", "fg": 612, "rotates": false }, + { "id": "overlay_wielded_umbrella", "fg": 481, "rotates": false }, + { "id": "overlay_wielded_ups_rifle", "fg": 561, "rotates": false }, + { "id": "overlay_wielded_ups_rifle_crank", "fg": 562, "rotates": false }, + { "id": "overlay_wielded_usp_45", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_usp_9mm", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_uzi", "fg": 563, "rotates": false }, + { "id": "overlay_wielded_v29", "fg": 564, "rotates": false }, + { "id": "overlay_wielded_v29_cheap", "fg": 565, "rotates": false }, + { "id": "overlay_wielded_vibrator", "fg": 613, "rotates": false }, + { "id": "overlay_wielded_violin", "fg": 614, "rotates": false }, + { "id": "overlay_wielded_violin_golden", "fg": 614, "rotates": false }, + { "id": "overlay_wielded_wakizashi", "fg": 583, "rotates": false }, + { "id": "overlay_wielded_wakizashi_fake", "fg": 583, "rotates": false }, + { "id": "overlay_wielded_wakizashi_inferior", "fg": 583, "rotates": false }, + { "id": "overlay_wielded_walther_ppk", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_warhammer", "fg": 482, "rotates": false }, + { "id": "overlay_wielded_wasp_sting", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_weatherby_5", "fg": 491, "rotates": false }, + { "id": "overlay_wielded_win70", "fg": 543, "rotates": false }, + { "id": "overlay_wielded_wooden_barrel", "fg": 436, "rotates": false }, + { "id": "overlay_wielded_wrench", "fg": 615, "rotates": false }, + { "id": "overlay_wielded_wristrocket", "fg": 554, "rotates": false }, + { "id": "overlay_wielded_xacto", "fg": 458, "rotates": false }, + { "id": "overlay_wielded_zweifire_off", "fg": 616, "rotates": false }, + { "id": "overlay_wielded_zweifire_on", "fg": 617, "rotates": false }, + { "id": "overlay_wielded_zweihander", "fg": 616, "rotates": false }, + { "id": "overlay_wielded_zweihander_fake", "fg": 616, "rotates": false }, + { "id": "overlay_wielded_zweihander_inferior", "fg": 616, "rotates": false }, + { "id": "overlay_female_worn_dress_shirt", "fg": 670, "rotates": false }, + { "id": "overlay_female_worn_jumpsuit", "fg": 671, "rotates": false }, + { "id": "overlay_female_worn_jumpsuit_xl", "fg": 671, "rotates": false }, + { "id": "overlay_female_worn_linuxtshirt", "fg": 675, "rotates": false }, + { "id": "overlay_female_worn_long_underpants", "fg": 672, "rotates": false }, + { "id": "overlay_female_worn_long_undertop", "fg": 673, "rotates": false }, + { "id": "overlay_female_worn_longshirt", "fg": 674, "rotates": false }, + { "id": "overlay_female_worn_polo_shirt", "fg": 675, "rotates": false }, + { "id": "overlay_female_worn_postman_shirt", "fg": 670, "rotates": false }, + { "id": "overlay_female_worn_sheriffshirt", "fg": 674, "rotates": false }, + { "id": "overlay_female_worn_thermal_outfit", "fg": 630, "rotates": false }, + { "id": "overlay_female_worn_thermal_outfit_on", "fg": 630, "rotates": false }, + { "id": "overlay_female_worn_thermal_suit", "fg": 631, "rotates": false }, + { "id": "overlay_female_worn_thermal_suit_on", "fg": 631, "rotates": false }, + { "id": "overlay_female_worn_towel", "fg": 632, "rotates": false }, + { "id": "overlay_female_worn_towel_soiled", "fg": 685, "rotates": false }, + { "id": "overlay_female_worn_towel_wet", "fg": 632, "rotates": false }, + { "id": "overlay_female_worn_tshirt", "fg": 675, "rotates": false }, + { "id": "overlay_female_worn_tshirt_text", "fg": 675, "rotates": false }, + { "id": "overlay_female_worn_under_armor", "fg": 676, "rotates": false }, + { "id": "overlay_female_worn_union_suit", "fg": 677, "rotates": false }, + { "id": "overlay_male_worn_dress_shirt", "fg": 678, "rotates": false }, + { "id": "overlay_male_worn_jumpsuit", "fg": 679, "rotates": false }, + { "id": "overlay_male_worn_jumpsuit_xl", "fg": 679, "rotates": false }, + { "id": "overlay_male_worn_linuxtshirt", "fg": 684, "rotates": false }, + { "id": "overlay_male_worn_long_underpants", "fg": 680, "rotates": false }, + { "id": "overlay_male_worn_long_undertop", "fg": 681, "rotates": false }, + { "id": "overlay_male_worn_longshirt", "fg": 682, "rotates": false }, + { "id": "overlay_male_worn_polo_shirt", "fg": 684, "rotates": false }, + { "id": "overlay_male_worn_postman_shirt", "fg": 678, "rotates": false }, + { "id": "overlay_male_worn_sheriffshirt", "fg": 682, "rotates": false }, + { "id": "overlay_male_worn_thermal_outfit", "fg": 633, "rotates": false }, + { "id": "overlay_male_worn_thermal_outfit_on", "fg": 633, "rotates": false }, + { "id": "overlay_male_worn_thermal_suit", "fg": 634, "rotates": false }, + { "id": "overlay_male_worn_thermal_suit_on", "fg": 634, "rotates": false }, + { "id": "overlay_male_worn_towel", "fg": 635, "rotates": false }, + { "id": "overlay_male_worn_towel_soiled", "fg": 686, "rotates": false }, + { "id": "overlay_male_worn_towel_wet", "fg": 635, "rotates": false }, + { "id": "overlay_male_worn_tshirt", "fg": 684, "rotates": false }, + { "id": "overlay_male_worn_tshirt_text", "fg": 684, "rotates": false }, + { "id": "overlay_male_worn_under_armor", "fg": 688, "rotates": false }, + { "id": "overlay_male_worn_union_suit", "fg": 690, "rotates": false }, + { "id": "overlay_worn_2byarm_guard", "fg": 701, "rotates": false }, + { "id": "overlay_worn_2byshin_guard", "fg": 858, "rotates": false }, + { "id": "overlay_worn_XL_holster", "fg": 925, "rotates": false }, + { "id": "overlay_worn_aep_suit", "fg": 693, "rotates": false }, + { "id": "overlay_worn_american_flag", "fg": 697, "rotates": false }, + { "id": [ "overlay_worn_ammo_satchel", "overlay_worn_flintlock_pouch" ], "fg": 824, "rotates": false }, + { "id": "overlay_worn_anbc_suit", "fg": 699, "rotates": false }, + { "id": "overlay_worn_apron_leather", "fg": 978, "rotates": false }, + { "id": "overlay_worn_arm_splint", "fg": 710, "rotates": false }, + { "id": "overlay_worn_arm_warmers", "fg": 711, "rotates": false }, + { "id": "overlay_worn_armguard_acidchitin", "fg": 698, "rotates": false }, + { "id": "overlay_worn_armguard_chitin", "fg": 700, "rotates": false }, + { "id": "overlay_worn_armguard_hard", "fg": 701, "rotates": false }, + { "id": "overlay_worn_armguard_larmor", "fg": 700, "rotates": false }, + { "id": [ "overlay_worn_armguard_metal", "overlay_worn_armguard_lightplate" ], "fg": 1028, "rotates": false }, + { "id": "overlay_worn_armguard_paper", "fg": 702, "rotates": false }, + { "id": "overlay_worn_armguard_soft", "fg": 701, "rotates": false }, + { "id": "overlay_worn_armor_acidchitin", "fg": 696, "rotates": false }, + { "id": "overlay_worn_armor_blarmor", "fg": 704, "rotates": false }, + { "id": "overlay_worn_armor_chitin", "fg": 703, "rotates": false }, + { "id": "overlay_worn_armor_cuirass", "fg": 754, "rotates": false }, + { "id": "overlay_worn_armor_farmor", "fg": 704, "rotates": false }, + { "id": "overlay_worn_armor_lamellar", "fg": 704, "rotates": false }, + { "id": "overlay_worn_armor_larmor", "fg": 704, "rotates": false }, + { "id": "overlay_worn_armor_lightplate", "fg": 706, "rotates": false }, + { "id": [ "overlay_worn_armor_lorica", "overlay_worn_cuirass_lightplate" ], "fg": 754, "rotates": false }, + { "id": "overlay_worn_armor_nomad", "fg": 995, "rotates": false }, + { "id": "overlay_worn_armor_plarmor", "fg": 705, "rotates": false }, + { "id": "overlay_worn_armor_plate", "fg": 706, "rotates": false }, + { "id": "overlay_worn_armor_samurai", "fg": 707, "rotates": false }, + { "id": "overlay_worn_armor_scavenger", "fg": 996, "rotates": false }, + { "id": "overlay_worn_armor_scrapsuit", "fg": 708, "rotates": false }, + { "id": "overlay_worn_armor_wyrm", "fg": 636, "rotates": false }, + { "id": "overlay_worn_army_top", "fg": 709, "rotates": false }, + { "id": "overlay_worn_b_shorts", "fg": 747, "rotates": false }, + { "id": "overlay_worn_back_holster", "fg": 713, "rotates": false }, + { "id": "overlay_worn_backpack", "fg": 712, "rotates": false }, + { "id": "overlay_worn_backpack_leather", "fg": 712, "rotates": false }, + { "id": "overlay_worn_badge_doctor", "fg": 997, "rotates": false }, + { "id": "overlay_worn_badge_foodkid", "fg": 998, "rotates": false }, + { "id": "overlay_worn_balclava", "fg": 714, "rotates": false }, + { "id": "overlay_worn_baldric", "fg": 925, "rotates": false }, + { "id": "overlay_worn_bandana", "fg": 715, "rotates": false }, + { "id": "overlay_worn_bastsandals", "fg": 716, "rotates": false }, + { "id": "overlay_worn_bead_bracelet", "fg": 999, "rotates": false }, + { "id": "overlay_worn_bead_ear", "fg": 1000, "rotates": false }, + { "id": "overlay_worn_beekeeping_gloves", "fg": 790, "rotates": false }, + { "id": "overlay_worn_beekeeping_hood", "fg": 1001, "rotates": false }, + { "id": "overlay_worn_beekeeping_suit", "fg": 717, "rotates": false }, + { "id": "overlay_worn_beret", "fg": 718, "rotates": false }, + { "id": "overlay_worn_beret_wool", "fg": 718, "rotates": false }, + { "id": "overlay_worn_bikini_bottom", "fg": 719, "rotates": false }, + { "id": "overlay_worn_bikini_top", "fg": 720, "rotates": false }, + { "id": "overlay_worn_bikini_top_fur", "fg": 756, "rotates": false }, + { "id": "overlay_worn_bikini_top_leather", "fg": 756, "rotates": false }, + { "id": "overlay_worn_bindle", "fg": 721, "rotates": false }, + { "id": "overlay_worn_blanket", "fg": 722, "rotates": false }, + { "id": "overlay_worn_blazer", "fg": 723, "rotates": false }, + { "id": "overlay_worn_blindfold", "fg": 724, "rotates": false }, + { "id": "overlay_worn_bondage_mask", "fg": 725, "rotates": false }, + { "id": "overlay_worn_bondage_suit", "fg": 726, "rotates": false }, + { "id": "overlay_worn_boots", "fg": 727, "rotates": false }, + { "id": "overlay_worn_boots_acidchitin", "fg": 691, "rotates": false }, + { "id": "overlay_worn_boots_bunker", "fg": 734, "rotates": false }, + { "id": "overlay_worn_boots_chitin", "fg": 730, "rotates": false }, + { "id": "overlay_worn_boots_combat", "fg": 731, "rotates": false }, + { "id": "overlay_worn_boots_fsurvivor", "fg": 734, "rotates": false }, + { "id": "overlay_worn_boots_fur", "fg": 733, "rotates": false }, + { "id": "overlay_worn_boots_h20survivor", "fg": 986, "rotates": false }, + { "id": "overlay_worn_boots_hiking", "fg": 727, "rotates": false }, + { "id": "overlay_worn_boots_hsurvivor", "fg": 732, "rotates": false }, + { "id": "overlay_worn_boots_larmor", "fg": 733, "rotates": false }, + { "id": "overlay_worn_boots_lsurvivor", "fg": 733, "rotates": false }, + { "id": "overlay_worn_boots_plate", "fg": 733, "rotates": false }, + { "id": "overlay_worn_boots_steel", "fg": 735, "rotates": false }, + { "id": "overlay_worn_boots_survivor", "fg": 733, "rotates": false }, + { "id": "overlay_worn_boots_western", "fg": 736, "rotates": false }, + { "id": "overlay_worn_boots_winter", "fg": 737, "rotates": false }, + { "id": "overlay_worn_boots_wsurvivor", "fg": 737, "rotates": false }, + { "id": "overlay_worn_boots_xlsurvivor", "fg": 737, "rotates": false }, + { "id": "overlay_worn_bootsheath", "fg": 728, "rotates": false }, + { "id": "overlay_worn_bootstrap", "fg": 729, "rotates": false }, + { "id": "overlay_worn_boxer_briefs", "fg": 738, "rotates": false }, + { "id": "overlay_worn_boxer_shorts", "fg": 738, "rotates": false }, + { "id": "overlay_worn_boxing_gloves", "fg": 739, "rotates": false }, + { "id": "overlay_worn_boy_shorts", "fg": 740, "rotates": false }, + { "id": "overlay_worn_bra", "fg": 741, "rotates": false }, + { "id": "overlay_worn_breeches", "fg": 903, "rotates": false }, + { "id": "overlay_worn_briefcase", "fg": 742, "rotates": false }, + { "id": "overlay_worn_briefs", "fg": 743, "rotates": false }, + { "id": "overlay_worn_bronze_medal", "fg": 1004, "rotates": false }, + { "id": "overlay_worn_bscabbard", "fg": 744, "rotates": false }, + { "id": "overlay_worn_bunker_coat", "fg": 745, "rotates": false }, + { "id": "overlay_worn_bunker_pants", "fg": 746, "rotates": false }, + { "id": "overlay_worn_camisole", "fg": 748, "rotates": false }, + { "id": "overlay_worn_case_violin", "fg": 695, "rotates": false }, + { "id": "overlay_worn_cassock", "fg": 749, "rotates": false }, + { "id": [ "overlay_worn_fur_cat_ears", "overlay_worn_faux_fur_cat_ears" ], "fg": 1022, "rotates": false }, + { "id": "overlay_worn_chainmail_arms", "fg": 750, "rotates": false }, + { "id": "overlay_worn_chainmail_hauberk", "fg": 754, "rotates": false }, + { "id": "overlay_worn_chainmail_hood", "fg": 751, "rotates": false }, + { "id": "overlay_worn_chainmail_legs", "fg": 752, "rotates": false }, + { "id": "overlay_worn_chainmail_suit", "fg": 753, "rotates": false }, + { "id": "overlay_worn_chainmail_vest", "fg": 754, "rotates": false }, + { "id": "overlay_worn_chaps_leather", "fg": 755, "rotates": false }, + { "id": "overlay_worn_chestrig", "fg": 982, "rotates": false }, + { "id": "overlay_worn_chestwrap", "fg": 756, "rotates": false }, + { "id": "overlay_worn_chestwrap_fur", "fg": 756, "rotates": false }, + { "id": "overlay_worn_chestwrap_leather", "fg": 756, "rotates": false }, + { "id": "overlay_worn_chestwrap_wool", "fg": 756, "rotates": false }, + { "id": "overlay_worn_cleansuit", "fg": 757, "rotates": false }, + { "id": "overlay_worn_cleats", "fg": 941, "rotates": false }, + { "id": "overlay_worn_cloak", "fg": 758, "rotates": false }, + { "id": "overlay_worn_cloak_bless", "fg": 763, "rotates": false }, + { "id": "overlay_worn_cloak_fur", "fg": 921, "rotates": false }, + { "id": "overlay_worn_cloak_leather", "fg": 921, "rotates": false }, + { "id": "overlay_worn_cloak_wool", "fg": 897, "rotates": false }, + { "id": "overlay_worn_clogs", "fg": 759, "rotates": false }, + { "id": "overlay_worn_clown_suit", "fg": 761, "rotates": false }, + { "id": "overlay_worn_clownshoes", "fg": 760, "rotates": false }, + { "id": "overlay_worn_coat_fur", "fg": 762, "rotates": false }, + { "id": "overlay_worn_coat_fur_sf", "fg": 762, "rotates": false }, + { "id": "overlay_worn_coat_lab", "fg": 763, "rotates": false }, + { "id": "overlay_worn_coat_rain", "fg": 764, "rotates": false }, + { "id": "overlay_worn_coat_winter", "fg": 765, "rotates": false }, + { "id": "overlay_worn_copper_locket", "fg": 1005, "rotates": false }, + { "id": "overlay_worn_copper_necklace", "fg": 1006, "rotates": false }, + { "id": [ "overlay_worn_copper_ring", "overlay_worn_mring_copper" ], "fg": 1007, "rotates": false }, + { "id": "overlay_worn_corset", "fg": 766, "rotates": false }, + { "id": "overlay_worn_cowboy_hat", "fg": 767, "rotates": false }, + { "id": "overlay_worn_cowl_wool", "fg": 829, "rotates": false }, + { "id": [ "overlay_worn_crown_golden", "overlay_worn_crown_golden_survivor" ], "fg": 694, "rotates": false }, + { "id": "overlay_worn_dance_shoes", "fg": 805, "rotates": false }, + { "id": "overlay_worn_depowered_armor", "fg": 912, "rotates": false }, + { "id": "overlay_worn_depowered_helmet", "fg": 768, "rotates": false }, + { "id": "overlay_worn_dinosuit", "fg": 769, "rotates": false }, + { "id": "overlay_worn_dive_bag", "fg": 770, "rotates": false }, + { "id": "overlay_worn_diving_watch", "fg": 1012, "rotates": false }, + { "id": "overlay_worn_down_blanket", "fg": 722, "rotates": false }, + { "id": "overlay_worn_dragonskin", "fg": 1013, "rotates": false }, + { "id": "overlay_worn_dress", "fg": 771, "rotates": false }, + { "id": "overlay_worn_dress_bless", "fg": 772, "rotates": false }, + { "id": "overlay_worn_dress_shoes", "fg": 928, "rotates": false }, + { "id": "overlay_worn_dress_shoes_air", "fg": 805, "rotates": false }, + { "id": "overlay_worn_dress_skirt", "fg": 934, "rotates": false }, + { "id": "overlay_worn_dress_wedding", "fg": 772, "rotates": false }, + { "id": "overlay_worn_duffelbag", "fg": 955, "rotates": false }, + { "id": "overlay_worn_duster", "fg": 773, "rotates": false }, + { "id": "overlay_worn_duster_fur", "fg": 773, "rotates": false }, + { "id": "overlay_worn_duster_leather", "fg": 773, "rotates": false }, + { "id": "overlay_worn_duster_survivor", "fg": 774, "rotates": false }, + { "id": "overlay_worn_e_handcuffs", "fg": 581, "rotates": false }, { "id": [ "overlay_worn_silver_ear", "overlay_worn_platinum_ear", "overlay_worn_pearl_ear" ], - "fg": 1032, + "fg": 1039, "rotates": false }, - { "id": "overlay_worn_elbow_pads", "fg": 768, "rotates": false }, - { "id": "overlay_worn_emer_blanket", "fg": 715, "rotates": false }, - { "id": "overlay_worn_emer_blanket_on", "fg": 715, "rotates": false }, - { "id": "overlay_worn_entry_suit", "fg": 1008, "rotates": false }, - { "id": "overlay_worn_fancy_bra", "fg": 734, "rotates": false }, - { "id": "overlay_worn_fancy_sunglasses", "fg": 945, "rotates": false }, - { "id": "overlay_worn_fencing_jacket", "fg": 1013, "rotates": false }, - { "id": "overlay_worn_fencing_mask", "fg": 1014, "rotates": false }, - { "id": "overlay_worn_fencing_pants", "fg": 769, "rotates": false }, - { "id": "overlay_worn_fire_gauntlets", "fg": 780, "rotates": false }, - { "id": "overlay_worn_fireman_belt", "fg": 947, "rotates": false }, - { "id": "overlay_worn_fishing_waders", "fg": 770, "rotates": false }, - { "id": "overlay_worn_fitover_sunglasses", "fg": 945, "rotates": false }, - { "id": "overlay_worn_flag_shirt", "fg": 771, "rotates": false }, - { "id": "overlay_worn_flip_flops", "fg": 772, "rotates": false }, - { "id": [ "overlay_worn_flotation_vest", "overlay_worn_flotation_vest_ms" ], "fg": 833, "rotates": false }, - { "id": "overlay_worn_folding_poncho_on", "fg": 630, "rotates": false }, - { "id": "overlay_worn_football_armor", "fg": 773, "rotates": false }, - { "id": "overlay_worn_footrags", "fg": 774, "rotates": false }, - { "id": "overlay_worn_footrags_fur", "fg": 935, "rotates": false }, - { "id": "overlay_worn_footrags_leather", "fg": 888, "rotates": false }, - { "id": "overlay_worn_footrags_wool", "fg": 935, "rotates": false }, - { "id": "overlay_worn_fsurvivor_suit", "fg": 889, "rotates": false }, - { "id": "overlay_worn_fur_blanket", "fg": 715, "rotates": false }, + { "id": "overlay_worn_elbow_pads", "fg": 775, "rotates": false }, + { "id": "overlay_worn_emer_blanket", "fg": 722, "rotates": false }, + { "id": "overlay_worn_emer_blanket_on", "fg": 722, "rotates": false }, + { "id": "overlay_worn_entry_suit", "fg": 1015, "rotates": false }, + { "id": "overlay_worn_fancy_bra", "fg": 741, "rotates": false }, + { "id": "overlay_worn_fancy_sunglasses", "fg": 952, "rotates": false }, + { "id": "overlay_worn_fencing_jacket", "fg": 1020, "rotates": false }, + { "id": "overlay_worn_fencing_mask", "fg": 1021, "rotates": false }, + { "id": "overlay_worn_fencing_pants", "fg": 776, "rotates": false }, + { "id": "overlay_worn_fire_gauntlets", "fg": 787, "rotates": false }, + { "id": "overlay_worn_fireman_belt", "fg": 954, "rotates": false }, + { "id": "overlay_worn_fishing_waders", "fg": 777, "rotates": false }, + { "id": "overlay_worn_fitover_sunglasses", "fg": 952, "rotates": false }, + { "id": "overlay_worn_flag_shirt", "fg": 778, "rotates": false }, + { "id": "overlay_worn_flip_flops", "fg": 779, "rotates": false }, + { "id": [ "overlay_worn_flotation_vest", "overlay_worn_flotation_vest_ms" ], "fg": 840, "rotates": false }, + { "id": "overlay_worn_folding_poncho_on", "fg": 637, "rotates": false }, + { "id": "overlay_worn_football_armor", "fg": 780, "rotates": false }, + { "id": "overlay_worn_footrags", "fg": 781, "rotates": false }, + { "id": "overlay_worn_footrags_fur", "fg": 942, "rotates": false }, + { "id": "overlay_worn_footrags_leather", "fg": 895, "rotates": false }, + { "id": "overlay_worn_footrags_wool", "fg": 942, "rotates": false }, + { "id": "overlay_worn_fsurvivor_suit", "fg": 896, "rotates": false }, + { "id": "overlay_worn_fur_blanket", "fg": 722, "rotates": false }, { "id": "overlay_female_worn_fur_cat_ears", "fg": 255, "rotates": false }, { "id": "overlay_male_worn_fur_cat_ears", "fg": 280, "rotates": false }, - { "id": "overlay_worn_gambeson", "fg": 971, "rotates": false }, - { "id": "overlay_worn_gauntlets_acidchitin", "fg": 685, "rotates": false }, - { "id": "overlay_worn_gauntlets_chitin", "fg": 781, "rotates": false }, - { "id": "overlay_worn_gauntlets_larmor", "fg": 781, "rotates": false }, - { "id": "overlay_worn_geta", "fg": 933, "rotates": false }, - { "id": "overlay_worn_glasses_bal", "fg": 785, "rotates": false }, - { "id": "overlay_worn_glasses_monocle", "fg": 776, "rotates": false }, - { "id": [ "overlay_worn_glasses_safety" ], "fg": 777, "rotates": false }, - { "id": "overlay_worn_glove_jackson", "fg": 783, "rotates": false }, - { "id": "overlay_worn_gloves_bag", "fg": 778, "rotates": false }, - { "id": "overlay_worn_gloves_fingerless", "fg": 779, "rotates": false }, - { "id": "overlay_worn_gloves_fingerless_mod", "fg": 779, "rotates": false }, - { "id": "overlay_worn_gloves_fsurvivor", "fg": 780, "rotates": false }, - { "id": "overlay_worn_gloves_fur", "fg": 781, "rotates": false }, - { "id": "overlay_worn_gloves_h20survivor", "fg": 782, "rotates": false }, - { "id": "overlay_worn_gloves_hsurvivor", "fg": 782, "rotates": false }, - { "id": "overlay_worn_gloves_leather", "fg": 781, "rotates": false }, - { "id": "overlay_worn_gloves_light", "fg": 783, "rotates": false }, - { "id": "overlay_worn_gloves_liner", "fg": 783, "rotates": false }, - { "id": "overlay_worn_gloves_lsurvivor", "fg": 782, "rotates": false }, - { "id": "overlay_worn_gloves_medical", "fg": 783, "rotates": false }, - { "id": "overlay_worn_gloves_plate", "fg": 783, "rotates": false }, - { "id": "overlay_worn_gloves_survivor", "fg": 782, "rotates": false }, - { "id": "overlay_worn_gloves_tactical", "fg": 782, "rotates": false }, - { "id": "overlay_worn_gloves_winter", "fg": 782, "rotates": false }, - { "id": "overlay_worn_gloves_wool", "fg": 783, "rotates": false }, - { "id": "overlay_worn_gloves_work", "fg": 784, "rotates": false }, - { "id": "overlay_worn_gloves_wraps", "fg": 783, "rotates": false }, - { "id": "overlay_worn_gloves_wraps_fur", "fg": 781, "rotates": false }, - { "id": "overlay_worn_gloves_wraps_leather", "fg": 781, "rotates": false }, - { "id": "overlay_worn_gloves_wraps_wool", "fg": 783, "rotates": false }, - { "id": "overlay_worn_gloves_wsurvivor", "fg": 782, "rotates": false }, - { "id": "overlay_worn_gloves_xlsurvivor", "fg": 782, "rotates": false }, - { "id": "overlay_worn_gobag", "fg": 948, "rotates": false }, - { "id": "overlay_worn_goggles_ir", "fg": 631, "rotates": false }, - { "id": "overlay_worn_goggles_ir_on", "fg": 632, "rotates": false }, - { "id": "overlay_worn_goggles_nv", "fg": 633, "rotates": false }, - { "id": "overlay_worn_goggles_nv_clairvoyance", "fg": 634, "rotates": false }, - { "id": "overlay_worn_goggles_nv_on", "fg": 635, "rotates": false }, - { "id": "overlay_worn_goggles_ski", "fg": 785, "rotates": false }, - { "id": "overlay_worn_goggles_swim", "fg": 785, "rotates": false }, - { "id": "overlay_worn_goggles_welding", "fg": 786, "rotates": false }, - { "id": "overlay_worn_gold_dental_grill", "fg": 682, "rotates": false }, - { "id": "overlay_worn_gold_locket", "fg": 1024, "rotates": false }, - { "id": "overlay_worn_gold_medal", "fg": 1025, "rotates": false }, - { "id": "overlay_worn_gold_necklace", "fg": 1026, "rotates": false }, - { "id": [ "overlay_worn_gold_ring", "overlay_worn_mring_gold" ], "fg": 1027, "rotates": false }, - { "id": "overlay_worn_gown", "fg": 764, "rotates": false }, - { "id": "overlay_worn_greatcoat", "fg": 787, "rotates": false }, - { "id": "overlay_worn_h20survivor_suit", "fg": 826, "rotates": false }, - { "id": "overlay_worn_hakama_gi", "fg": 788, "rotates": false }, - { "id": "overlay_worn_halter_top", "fg": 789, "rotates": false }, - { "id": "overlay_worn_harmonica_holder", "fg": 636, "rotates": false }, - { "id": "overlay_worn_hat_ball", "fg": 790, "rotates": false }, - { "id": "overlay_worn_hat_boonie", "fg": 791, "rotates": false }, - { "id": "overlay_worn_hat_cotton", "fg": 794, "rotates": false }, - { "id": "overlay_worn_hat_fur", "fg": 792, "rotates": false }, - { "id": "overlay_worn_hat_hunting", "fg": 793, "rotates": false }, - { "id": "overlay_worn_hat_knit", "fg": 794, "rotates": false }, - { "id": "overlay_worn_hat_newsboy", "fg": 795, "rotates": false }, - { "id": "overlay_worn_hat_noise_cancelling", "fg": 796, "rotates": false }, - { "id": "overlay_worn_hazmat_suit", "fg": 692, "rotates": false }, - { "id": "overlay_worn_headgear", "fg": 797, "rotates": false }, - { "id": "overlay_worn_heels", "fg": 798, "rotates": false }, - { "id": "overlay_worn_helmet_acidchitin", "fg": 680, "rotates": false }, - { "id": "overlay_worn_helmet_army", "fg": 799, "rotates": false }, - { "id": "overlay_worn_helmet_ball", "fg": 800, "rotates": false }, - { "id": "overlay_worn_helmet_barbute", "fg": 801, "rotates": false }, - { "id": "overlay_worn_helmet_bike", "fg": 802, "rotates": false }, - { "id": "overlay_worn_helmet_chitin", "fg": 803, "rotates": false }, - { "id": "overlay_worn_helmet_conical", "fg": 801, "rotates": false }, - { "id": "overlay_worn_helmet_corinthian", "fg": 801, "rotates": false }, - { "id": "overlay_worn_helmet_football", "fg": 804, "rotates": false }, - { "id": "overlay_worn_helmet_galea", "fg": 744, "rotates": false }, - { "id": "overlay_worn_helmet_hsurvivor", "fg": 805, "rotates": false }, - { "id": "overlay_worn_helmet_larmor", "fg": 806, "rotates": false }, - { "id": "overlay_worn_helmet_liner", "fg": 820, "rotates": false }, - { "id": "overlay_worn_helmet_lobster", "fg": 807, "rotates": false }, - { "id": "overlay_worn_helmet_motor", "fg": 808, "rotates": false }, - { "id": "overlay_worn_helmet_nasal", "fg": 744, "rotates": false }, - { "id": "overlay_worn_helmet_nomad", "fg": 809, "rotates": false }, - { "id": "overlay_worn_helmet_plate", "fg": 810, "rotates": false }, - { "id": "overlay_worn_helmet_riot", "fg": 811, "rotates": false }, - { "id": "overlay_worn_helmet_scavenger", "fg": 812, "rotates": false }, - { "id": "overlay_worn_helmet_skid", "fg": 813, "rotates": false }, - { "id": "overlay_worn_helmet_survivor", "fg": 814, "rotates": false }, - { "id": "overlay_worn_helmet_xlsurvivor", "fg": 815, "rotates": false }, - { "id": "overlay_worn_hmil_armor", "fg": 816, "rotates": false }, - { "id": "overlay_worn_holo_cloak", "fg": 662, "rotates": false }, - { "id": "overlay_worn_holster", "fg": 817, "rotates": false }, - { "id": "overlay_worn_hood_fsurvivor", "fg": 819, "rotates": false }, - { "id": "overlay_worn_hood_h20survivor", "fg": 820, "rotates": false }, - { "id": "overlay_worn_hood_lsurvivor", "fg": 821, "rotates": false }, - { "id": "overlay_worn_hood_rain", "fg": 820, "rotates": false }, - { "id": "overlay_worn_hood_survivor", "fg": 821, "rotates": false }, - { "id": "overlay_worn_hood_wsurvivor", "fg": 822, "rotates": false }, - { "id": "overlay_worn_hood_xlsurvivor", "fg": 821, "rotates": false }, - { "id": "overlay_worn_hoodie", "fg": 818, "rotates": false }, - { "id": "overlay_worn_hot_pants", "fg": 823, "rotates": false }, - { "id": "overlay_worn_hot_pants_fur", "fg": 823, "rotates": false }, - { "id": "overlay_worn_hot_pants_leather", "fg": 824, "rotates": false }, - { "id": "overlay_worn_house_coat", "fg": 825, "rotates": false }, - { "id": "overlay_worn_hsurvivor_suit", "fg": 826, "rotates": false }, - { "id": "overlay_worn_iggaak", "fg": 945, "rotates": false }, - { "id": "overlay_worn_jacket_army", "fg": 827, "rotates": false }, - { "id": "overlay_worn_jacket_chef", "fg": 828, "rotates": false }, - { "id": "overlay_worn_jacket_evac", "fg": 829, "rotates": false }, - { "id": "overlay_worn_jacket_flannel", "fg": 830, "rotates": false }, - { "id": "overlay_worn_jacket_jean", "fg": 831, "rotates": false }, - { "id": "overlay_worn_jacket_leather", "fg": 832, "rotates": false }, - { "id": "overlay_worn_jacket_leather_mod", "fg": 832, "rotates": false }, - { "id": "overlay_worn_jacket_leather_red", "fg": 833, "rotates": false }, - { "id": "overlay_worn_jacket_light", "fg": 834, "rotates": false }, - { "id": "overlay_worn_jacket_windbreaker", "fg": 835, "rotates": false }, - { "id": "overlay_worn_jade_brooch", "fg": 1030, "rotates": false }, - { "id": "overlay_worn_jeans", "fg": 836, "rotates": false }, - { "id": "overlay_worn_jeans_red", "fg": 837, "rotates": false }, - { "id": "overlay_worn_jedi_cloak", "fg": 838, "rotates": false }, - { "id": "overlay_worn_jerrypack", "fg": 839, "rotates": false }, - { "id": "overlay_worn_jersey", "fg": 840, "rotates": false }, - { "id": "overlay_worn_judo_belt_black", "fg": 850, "rotates": false }, - { "id": "overlay_worn_judo_belt_blue", "fg": 850, "rotates": false }, - { "id": "overlay_worn_judo_belt_brown", "fg": 850, "rotates": false }, - { "id": "overlay_worn_judo_belt_green", "fg": 850, "rotates": false }, - { "id": "overlay_worn_judo_belt_orange", "fg": 850, "rotates": false }, - { "id": "overlay_worn_judo_belt_white", "fg": 850, "rotates": false }, - { "id": "overlay_worn_judo_belt_yellow", "fg": 850, "rotates": false }, - { "id": "overlay_worn_judo_gi", "fg": 841, "rotates": false }, - { "id": "overlay_worn_karate_gi", "fg": 841, "rotates": false }, - { "id": "overlay_worn_kariginu", "fg": 842, "rotates": false }, - { "id": "overlay_worn_keffiyeh", "fg": 874, "rotates": false }, - { "id": "overlay_worn_keikogi", "fg": 843, "rotates": false }, - { "id": "overlay_worn_kevlar", "fg": 1006, "rotates": false }, - { "id": "overlay_worn_kilt", "fg": 926, "rotates": false }, - { "id": "overlay_worn_kimono", "fg": 844, "rotates": false }, - { "id": "overlay_worn_kippah", "fg": 845, "rotates": false }, - { "id": "overlay_worn_kittel", "fg": 846, "rotates": false }, - { "id": "overlay_worn_knee_high_boots", "fg": 847, "rotates": false }, - { "id": "overlay_worn_knee_pads", "fg": 848, "rotates": false }, - { "id": "overlay_worn_knit_scarf", "fg": 637, "rotates": false }, - { "id": "overlay_worn_knit_scarf_loose", "fg": 637, "rotates": false }, - { "id": "overlay_worn_kufi", "fg": 849, "rotates": false }, - { "id": "overlay_worn_leather_belt", "fg": 850, "rotates": false }, + { "id": "overlay_worn_gambeson", "fg": 978, "rotates": false }, + { "id": "overlay_worn_gauntlets_acidchitin", "fg": 692, "rotates": false }, + { "id": "overlay_worn_gauntlets_chitin", "fg": 788, "rotates": false }, + { "id": "overlay_worn_gauntlets_larmor", "fg": 788, "rotates": false }, + { "id": "overlay_worn_geta", "fg": 940, "rotates": false }, + { "id": "overlay_worn_glasses_bal", "fg": 792, "rotates": false }, + { "id": "overlay_worn_glasses_monocle", "fg": 783, "rotates": false }, + { "id": [ "overlay_worn_glasses_safety" ], "fg": 784, "rotates": false }, + { "id": "overlay_worn_glove_jackson", "fg": 790, "rotates": false }, + { "id": "overlay_worn_gloves_bag", "fg": 785, "rotates": false }, + { "id": "overlay_worn_gloves_fingerless", "fg": 786, "rotates": false }, + { "id": "overlay_worn_gloves_fingerless_mod", "fg": 786, "rotates": false }, + { "id": "overlay_worn_gloves_fsurvivor", "fg": 787, "rotates": false }, + { "id": "overlay_worn_gloves_fur", "fg": 788, "rotates": false }, + { "id": "overlay_worn_gloves_h20survivor", "fg": 789, "rotates": false }, + { "id": "overlay_worn_gloves_hsurvivor", "fg": 789, "rotates": false }, + { "id": "overlay_worn_gloves_leather", "fg": 788, "rotates": false }, + { "id": "overlay_worn_gloves_light", "fg": 790, "rotates": false }, + { "id": "overlay_worn_gloves_liner", "fg": 790, "rotates": false }, + { "id": "overlay_worn_gloves_lsurvivor", "fg": 789, "rotates": false }, + { "id": "overlay_worn_gloves_medical", "fg": 790, "rotates": false }, + { "id": "overlay_worn_gloves_plate", "fg": 790, "rotates": false }, + { "id": "overlay_worn_gloves_survivor", "fg": 789, "rotates": false }, + { "id": "overlay_worn_gloves_tactical", "fg": 789, "rotates": false }, + { "id": "overlay_worn_gloves_winter", "fg": 789, "rotates": false }, + { "id": "overlay_worn_gloves_wool", "fg": 790, "rotates": false }, + { "id": "overlay_worn_gloves_work", "fg": 791, "rotates": false }, + { "id": "overlay_worn_gloves_wraps", "fg": 790, "rotates": false }, + { "id": "overlay_worn_gloves_wraps_fur", "fg": 788, "rotates": false }, + { "id": "overlay_worn_gloves_wraps_leather", "fg": 788, "rotates": false }, + { "id": "overlay_worn_gloves_wraps_wool", "fg": 790, "rotates": false }, + { "id": "overlay_worn_gloves_wsurvivor", "fg": 789, "rotates": false }, + { "id": "overlay_worn_gloves_xlsurvivor", "fg": 789, "rotates": false }, + { "id": "overlay_worn_gobag", "fg": 955, "rotates": false }, + { "id": "overlay_worn_goggles_ir", "fg": 638, "rotates": false }, + { "id": "overlay_worn_goggles_ir_on", "fg": 639, "rotates": false }, + { "id": "overlay_worn_goggles_nv", "fg": 640, "rotates": false }, + { "id": "overlay_worn_goggles_nv_clairvoyance", "fg": 641, "rotates": false }, + { "id": "overlay_worn_goggles_nv_on", "fg": 642, "rotates": false }, + { "id": "overlay_worn_goggles_ski", "fg": 792, "rotates": false }, + { "id": "overlay_worn_goggles_swim", "fg": 792, "rotates": false }, + { "id": "overlay_worn_goggles_welding", "fg": 793, "rotates": false }, + { "id": "overlay_worn_gold_dental_grill", "fg": 689, "rotates": false }, + { "id": "overlay_worn_gold_locket", "fg": 1031, "rotates": false }, + { "id": "overlay_worn_gold_medal", "fg": 1032, "rotates": false }, + { "id": "overlay_worn_gold_necklace", "fg": 1033, "rotates": false }, + { "id": [ "overlay_worn_gold_ring", "overlay_worn_mring_gold" ], "fg": 1034, "rotates": false }, + { "id": "overlay_worn_gown", "fg": 771, "rotates": false }, + { "id": "overlay_worn_greatcoat", "fg": 794, "rotates": false }, + { "id": "overlay_worn_h20survivor_suit", "fg": 833, "rotates": false }, + { "id": "overlay_worn_hakama_gi", "fg": 795, "rotates": false }, + { "id": "overlay_worn_halter_top", "fg": 796, "rotates": false }, + { "id": "overlay_worn_harmonica_holder", "fg": 643, "rotates": false }, + { "id": "overlay_worn_hat_ball", "fg": 797, "rotates": false }, + { "id": "overlay_worn_hat_boonie", "fg": 798, "rotates": false }, + { "id": "overlay_worn_hat_cotton", "fg": 801, "rotates": false }, + { "id": "overlay_worn_hat_fur", "fg": 799, "rotates": false }, + { "id": "overlay_worn_hat_hunting", "fg": 800, "rotates": false }, + { "id": "overlay_worn_hat_knit", "fg": 801, "rotates": false }, + { "id": "overlay_worn_hat_newsboy", "fg": 802, "rotates": false }, + { "id": "overlay_worn_hat_noise_cancelling", "fg": 803, "rotates": false }, + { "id": "overlay_worn_hazmat_suit", "fg": 699, "rotates": false }, + { "id": "overlay_worn_headgear", "fg": 804, "rotates": false }, + { "id": "overlay_worn_heels", "fg": 805, "rotates": false }, + { "id": "overlay_worn_helmet_acidchitin", "fg": 687, "rotates": false }, + { "id": "overlay_worn_helmet_army", "fg": 806, "rotates": false }, + { "id": "overlay_worn_helmet_ball", "fg": 807, "rotates": false }, + { "id": "overlay_worn_helmet_barbute", "fg": 808, "rotates": false }, + { "id": "overlay_worn_helmet_bike", "fg": 809, "rotates": false }, + { "id": "overlay_worn_helmet_chitin", "fg": 810, "rotates": false }, + { "id": "overlay_worn_helmet_conical", "fg": 808, "rotates": false }, + { "id": "overlay_worn_helmet_corinthian", "fg": 808, "rotates": false }, + { "id": "overlay_worn_helmet_football", "fg": 811, "rotates": false }, + { "id": "overlay_worn_helmet_galea", "fg": 751, "rotates": false }, + { "id": "overlay_worn_helmet_hsurvivor", "fg": 812, "rotates": false }, + { "id": "overlay_worn_helmet_larmor", "fg": 813, "rotates": false }, + { "id": "overlay_worn_helmet_liner", "fg": 827, "rotates": false }, + { "id": "overlay_worn_helmet_lobster", "fg": 814, "rotates": false }, + { "id": "overlay_worn_helmet_motor", "fg": 815, "rotates": false }, + { "id": "overlay_worn_helmet_nasal", "fg": 751, "rotates": false }, + { "id": "overlay_worn_helmet_nomad", "fg": 816, "rotates": false }, + { "id": "overlay_worn_helmet_plate", "fg": 817, "rotates": false }, + { "id": "overlay_worn_helmet_riot", "fg": 818, "rotates": false }, + { "id": "overlay_worn_helmet_scavenger", "fg": 819, "rotates": false }, + { "id": "overlay_worn_helmet_skid", "fg": 820, "rotates": false }, + { "id": "overlay_worn_helmet_survivor", "fg": 821, "rotates": false }, + { "id": "overlay_worn_helmet_xlsurvivor", "fg": 822, "rotates": false }, + { "id": "overlay_worn_hmil_armor", "fg": 823, "rotates": false }, + { "id": "overlay_worn_holo_cloak", "fg": 669, "rotates": false }, + { "id": "overlay_worn_holster", "fg": 824, "rotates": false }, + { "id": "overlay_worn_hood_fsurvivor", "fg": 826, "rotates": false }, + { "id": "overlay_worn_hood_h20survivor", "fg": 827, "rotates": false }, + { "id": "overlay_worn_hood_lsurvivor", "fg": 828, "rotates": false }, + { "id": "overlay_worn_hood_rain", "fg": 827, "rotates": false }, + { "id": "overlay_worn_hood_survivor", "fg": 828, "rotates": false }, + { "id": "overlay_worn_hood_wsurvivor", "fg": 829, "rotates": false }, + { "id": "overlay_worn_hood_xlsurvivor", "fg": 828, "rotates": false }, + { "id": "overlay_worn_hoodie", "fg": 825, "rotates": false }, + { "id": "overlay_worn_hot_pants", "fg": 830, "rotates": false }, + { "id": "overlay_worn_hot_pants_fur", "fg": 830, "rotates": false }, + { "id": "overlay_worn_hot_pants_leather", "fg": 831, "rotates": false }, + { "id": "overlay_worn_house_coat", "fg": 832, "rotates": false }, + { "id": "overlay_worn_hsurvivor_suit", "fg": 833, "rotates": false }, + { "id": "overlay_worn_iggaak", "fg": 952, "rotates": false }, + { "id": "overlay_worn_jacket_army", "fg": 834, "rotates": false }, + { "id": "overlay_worn_jacket_chef", "fg": 835, "rotates": false }, + { "id": "overlay_worn_jacket_evac", "fg": 836, "rotates": false }, + { "id": "overlay_worn_jacket_flannel", "fg": 837, "rotates": false }, + { "id": "overlay_worn_jacket_jean", "fg": 838, "rotates": false }, + { "id": "overlay_worn_jacket_leather", "fg": 839, "rotates": false }, + { "id": "overlay_worn_jacket_leather_mod", "fg": 839, "rotates": false }, + { "id": "overlay_worn_jacket_leather_red", "fg": 840, "rotates": false }, + { "id": "overlay_worn_jacket_light", "fg": 841, "rotates": false }, + { "id": "overlay_worn_jacket_windbreaker", "fg": 842, "rotates": false }, + { "id": "overlay_worn_jade_brooch", "fg": 1037, "rotates": false }, + { "id": "overlay_worn_jeans", "fg": 843, "rotates": false }, + { "id": "overlay_worn_jeans_red", "fg": 844, "rotates": false }, + { "id": "overlay_worn_jedi_cloak", "fg": 845, "rotates": false }, + { "id": "overlay_worn_jerrypack", "fg": 846, "rotates": false }, + { "id": "overlay_worn_jersey", "fg": 847, "rotates": false }, + { "id": "overlay_worn_judo_belt_black", "fg": 857, "rotates": false }, + { "id": "overlay_worn_judo_belt_blue", "fg": 857, "rotates": false }, + { "id": "overlay_worn_judo_belt_brown", "fg": 857, "rotates": false }, + { "id": "overlay_worn_judo_belt_green", "fg": 857, "rotates": false }, + { "id": "overlay_worn_judo_belt_orange", "fg": 857, "rotates": false }, + { "id": "overlay_worn_judo_belt_white", "fg": 857, "rotates": false }, + { "id": "overlay_worn_judo_belt_yellow", "fg": 857, "rotates": false }, + { "id": "overlay_worn_judo_gi", "fg": 848, "rotates": false }, + { "id": "overlay_worn_karate_gi", "fg": 848, "rotates": false }, + { "id": "overlay_worn_kariginu", "fg": 849, "rotates": false }, + { "id": "overlay_worn_keffiyeh", "fg": 881, "rotates": false }, + { "id": "overlay_worn_keikogi", "fg": 850, "rotates": false }, + { "id": "overlay_worn_kevlar", "fg": 1013, "rotates": false }, + { "id": "overlay_worn_kilt", "fg": 933, "rotates": false }, + { "id": "overlay_worn_kimono", "fg": 851, "rotates": false }, + { "id": "overlay_worn_kippah", "fg": 852, "rotates": false }, + { "id": "overlay_worn_kittel", "fg": 853, "rotates": false }, + { "id": "overlay_worn_knee_high_boots", "fg": 854, "rotates": false }, + { "id": "overlay_worn_knee_pads", "fg": 855, "rotates": false }, + { "id": "overlay_worn_knit_scarf", "fg": 644, "rotates": false }, + { "id": "overlay_worn_knit_scarf_loose", "fg": 644, "rotates": false }, + { "id": "overlay_worn_kufi", "fg": 856, "rotates": false }, + { "id": "overlay_worn_leather_belt", "fg": 857, "rotates": false }, { "id": "overlay_female_worn_leather_cat_ears", "fg": 255, "rotates": false }, { "id": "overlay_male_worn_leather_cat_ears", "fg": 280, "rotates": false }, - { "id": "overlay_worn_leather_cat_tail", "fg": 775, "rotates": false }, - { "id": "overlay_worn_leather_pouch", "fg": 622, "rotates": false }, - { "id": "overlay_worn_leathersandals", "fg": 772, "rotates": false }, - { "id": "overlay_worn_leg_splint", "fg": 854, "rotates": false }, - { "id": "overlay_worn_leg_warmers", "fg": 855, "rotates": false }, - { "id": "overlay_worn_leg_warmers_f", "fg": 855, "rotates": false }, - { "id": "overlay_worn_leg_warmers_xl", "fg": 855, "rotates": false }, - { "id": "overlay_worn_leg_warmers_xlf", "fg": 855, "rotates": false }, - { "id": "overlay_worn_leggings", "fg": 967, "rotates": false }, - { "id": "overlay_worn_legguard_bronze", "fg": 852, "rotates": false }, - { "id": "overlay_worn_legguard_hard", "fg": 851, "rotates": false }, - { "id": [ "overlay_worn_legguard_metal", "overlay_worn_legguard_lightplate" ], "fg": 852, "rotates": false }, - { "id": "overlay_worn_legguard_paper", "fg": 853, "rotates": false }, - { "id": "overlay_worn_legrig", "fg": 947, "rotates": false }, - { "id": "overlay_worn_lmil_armor", "fg": 856, "rotates": false }, - { "id": "overlay_worn_loincloth", "fg": 857, "rotates": false }, - { "id": "overlay_worn_loincloth_fur", "fg": 857, "rotates": false }, - { "id": "overlay_worn_loincloth_leather", "fg": 857, "rotates": false }, - { "id": "overlay_worn_loincloth_wool", "fg": 857, "rotates": false }, - { "id": "overlay_worn_long_glove_white", "fg": 858, "rotates": false }, - { "id": "overlay_worn_long_knit_scarf", "fg": 638, "rotates": false }, - { "id": "overlay_worn_long_knit_scarf_loose", "fg": 638, "rotates": false }, - { "id": "overlay_worn_long_patchwork_scarf", "fg": 639, "rotates": false }, - { "id": "overlay_worn_long_patchwork_scarf_loose", "fg": 639, "rotates": false }, - { "id": "overlay_worn_lowtops", "fg": 859, "rotates": false }, - { "id": "overlay_worn_lsurvivor_armor", "fg": 860, "rotates": false }, - { "id": "overlay_worn_lsurvivor_pants", "fg": 898, "rotates": false }, - { "id": "overlay_worn_lsurvivor_suit", "fg": 950, "rotates": false }, - { "id": "overlay_worn_magbandolier", "fg": 661, "rotates": false }, - { "id": "overlay_worn_maid_dress", "fg": 861, "rotates": false }, - { "id": "overlay_worn_maid_hat", "fg": 862, "rotates": false }, - { "id": "overlay_worn_maid_stockings", "fg": 937, "rotates": false }, - { "id": "overlay_worn_makeshift_knapsack", "fg": 863, "rotates": false }, - { "id": "overlay_worn_makeshift_sling", "fg": 864, "rotates": false }, - { "id": "overlay_worn_mask_bal", "fg": 865, "rotates": false }, - { "id": "overlay_worn_mask_bunker", "fg": 640, "rotates": false }, - { "id": "overlay_worn_mask_bunker_on", "fg": 641, "rotates": false }, - { "id": "overlay_worn_mask_dust", "fg": 866, "rotates": false }, - { "id": "overlay_worn_mask_filter", "fg": 867, "rotates": false }, - { "id": "overlay_worn_mask_fsurvivor", "fg": 868, "rotates": false }, - { "id": "overlay_worn_mask_fsurvivorxl", "fg": 868, "rotates": false }, - { "id": "overlay_worn_mask_gas", "fg": 869, "rotates": false }, - { "id": "overlay_worn_mask_gas_xl", "fg": 869, "rotates": false }, - { "id": "overlay_worn_mask_guy_fawkes", "fg": 870, "rotates": false }, - { "id": "overlay_worn_mask_h20survivor", "fg": 642, "rotates": false }, - { "id": "overlay_worn_mask_h20survivor_on", "fg": 642, "rotates": false }, - { "id": "overlay_worn_mask_h20survivorxl", "fg": 642, "rotates": false }, - { "id": "overlay_worn_mask_h20survivorxl_on", "fg": 642, "rotates": false }, - { "id": "overlay_worn_mask_hockey", "fg": 871, "rotates": false }, - { "id": "overlay_worn_mask_hsurvivor", "fg": 872, "rotates": false }, - { "id": "overlay_worn_mask_lsurvivor", "fg": 873, "rotates": false }, - { "id": "overlay_worn_mask_rioter", "fg": 874, "rotates": false }, - { "id": [ "overlay_worn_mask_ski_loose", "mask_ski_loose" ], "fg": 644, "rotates": false }, - { "id": [ "overlay_worn_mask_ski", "mask_ski" ], "fg": 643, "rotates": false }, - { "id": "overlay_worn_mask_survivor", "fg": 873, "rotates": false }, - { "id": "overlay_worn_mask_survivorxl", "fg": 873, "rotates": false }, - { "id": "overlay_worn_mask_wsurvivor", "fg": 875, "rotates": false }, - { "id": "overlay_worn_mask_wsurvivorxl", "fg": 875, "rotates": false }, - { "id": "overlay_worn_mbag", "fg": 876, "rotates": false }, - { "id": "overlay_worn_megaarmor_armguards_1", "fg": 877, "rotates": false }, - { "id": "overlay_worn_megaarmor_boots_1", "fg": 878, "rotates": false }, - { "id": "overlay_worn_megaarmor_gloves_1", "fg": 879, "rotates": false }, - { "id": "overlay_worn_megaarmor_head_1", "fg": 880, "rotates": false }, - { "id": "overlay_worn_megaarmor_leggings_1", "fg": 881, "rotates": false }, - { "id": "overlay_worn_megaarmor_torso_1", "fg": 882, "rotates": false }, - { "id": "overlay_worn_megaarmor_torso_2", "fg": 883, "rotates": false }, - { "id": "overlay_worn_megaarmor_torso_3", "fg": 645, "rotates": false }, - { "id": "overlay_worn_megaarmor_torso_3_act", "fg": 646, "rotates": false }, - { "id": "overlay_worn_microskirt", "fg": 887, "rotates": false }, - { "id": "overlay_worn_mil_armor", "fg": 884, "rotates": false }, - { "id": "overlay_worn_mittens", "fg": 780, "rotates": false }, - { "id": "overlay_worn_mocassins", "fg": 752, "rotates": false }, - { "id": "overlay_worn_modularvest", "fg": 975, "rotates": false }, - { "id": "overlay_worn_modularvestceramic", "fg": 975, "rotates": false }, - { "id": "overlay_worn_modularvesthard", "fg": 975, "rotates": false }, - { "id": "overlay_worn_modularvestkevlar", "fg": 975, "rotates": false }, - { "id": "overlay_worn_modularveststeel", "fg": 975, "rotates": false }, - { "id": "overlay_worn_modularvestsuper", "fg": 975, "rotates": false }, - { "id": "overlay_worn_molle_pack", "fg": 885, "rotates": false }, - { "id": "overlay_worn_motorbike_armor", "fg": 886, "rotates": false }, - { "id": "overlay_worn_motorbike_boots", "fg": 726, "rotates": false }, - { "id": "overlay_worn_motorbike_pants", "fg": 961, "rotates": false }, - { "id": "overlay_worn_nanoskirt", "fg": 887, "rotates": false }, - { "id": "overlay_worn_nomex_gloves", "fg": 780, "rotates": false }, - { "id": "overlay_worn_nomex_hood", "fg": 820, "rotates": false }, - { "id": "overlay_worn_nomex_socks", "fg": 888, "rotates": false }, - { "id": "overlay_worn_nomex_suit", "fg": 889, "rotates": false }, - { "id": "overlay_worn_obi_gi", "fg": 850, "rotates": false }, - { "id": "overlay_worn_optical_cloak", "fg": 890, "rotates": false }, - { "id": "overlay_worn_panties", "fg": 891, "rotates": false }, - { "id": "overlay_worn_pants", "fg": 892, "rotates": false }, - { "id": "overlay_worn_pants_army", "fg": 893, "rotates": false }, - { "id": "overlay_worn_pants_cargo", "fg": 894, "rotates": false }, - { "id": "overlay_worn_pants_checkered", "fg": 895, "rotates": false }, - { "id": "overlay_worn_pants_fur", "fg": 896, "rotates": false }, - { "id": "overlay_worn_pants_leather", "fg": 896, "rotates": false }, - { "id": "overlay_worn_pants_ski", "fg": 897, "rotates": false }, - { "id": "overlay_worn_pants_survivor", "fg": 898, "rotates": false }, - { "id": "overlay_worn_patchwork_scarf", "fg": 654, "rotates": false }, - { "id": "overlay_worn_patchwork_scarf_loose", "fg": 654, "rotates": false }, - { "id": "overlay_worn_peacoat", "fg": 899, "rotates": false }, - { "id": "overlay_worn_plastic_shopping_bag", "fg": 900, "rotates": false }, - { "id": "overlay_worn_platinum_locket", "fg": 1033, "rotates": false }, - { "id": "overlay_worn_platinum_necklace", "fg": 1034, "rotates": false }, - { "id": [ "overlay_worn_platinum_ring", "overlay_worn_mring_platinum" ], "fg": 1035, "rotates": false }, - { "id": "overlay_worn_poncho", "fg": 901, "rotates": false }, - { "id": "overlay_worn_postman_hat", "fg": 902, "rotates": false }, - { "id": "overlay_worn_postman_shorts", "fg": 903, "rotates": false }, - { "id": "overlay_worn_pot_helmet", "fg": 904, "rotates": false }, - { "id": "overlay_worn_power_armor_basic", "fg": 905, "rotates": false }, - { "id": "overlay_worn_power_armor_heavy", "fg": 906, "rotates": false }, - { "id": "overlay_worn_power_armor_helmet_basic", "fg": 907, "rotates": false }, - { "id": "overlay_worn_power_armor_helmet_heavy", "fg": 908, "rotates": false }, - { "id": "overlay_worn_power_armor_helmet_light", "fg": 909, "rotates": false }, - { "id": "overlay_worn_power_armor_light", "fg": 910, "rotates": false }, - { "id": [ "overlay_worn_powered_earmuffs", "overlay_worn_powered_earmuffs_on" ], "fg": 676 }, - { "id": "overlay_worn_purse", "fg": 911, "rotates": false }, - { "id": "overlay_worn_quiver", "fg": 912, "rotates": false }, - { "id": "overlay_worn_quiver_birchbark", "fg": 912, "rotates": false }, - { "id": "overlay_worn_quiver_large", "fg": 913, "rotates": false }, - { "id": "overlay_worn_quiver_large_birchbark", "fg": 913, "rotates": false }, - { "id": "overlay_worn_rebreather", "fg": 1036, "rotates": false }, - { "id": "overlay_worn_rebreather_xl", "fg": 1036, "rotates": false }, - { "id": "overlay_worn_revenant_crown", "fg": 647, "rotates": false }, - { "id": [ "overlay_worn_diamond_ring", "overlay_worn_ring_wedding" ], "fg": 1002, "rotates": false }, - { "id": [ "overlay_worn_ring_engagement" ], "fg": 1037, "rotates": false }, - { "id": "overlay_worn_ring_purity", "fg": 1038, "rotates": false }, - { "id": "overlay_worn_ring_signet", "fg": 1039, "rotates": false }, - { "id": "overlay_worn_rm13_armor", "fg": 660, "rotates": false }, - { "id": "overlay_worn_rm13_armor_on", "fg": 648, "rotates": false }, - { "id": "overlay_worn_robe", "fg": 914, "rotates": false }, - { "id": "overlay_worn_roller_blades", "fg": 915, "rotates": false }, - { "id": "overlay_worn_rollerskates", "fg": 915, "rotates": false }, - { "id": "overlay_worn_rucksack", "fg": 916, "rotates": false }, - { "id": "overlay_worn_runner_bag", "fg": 917, "rotates": false }, - { "id": "overlay_worn_sac_purse", "fg": 649, "rotates": false }, - { "id": "overlay_worn_sac_purse_arm", "fg": 650, "rotates": false }, - { "id": "overlay_worn_sac_purse_leg", "fg": 651, "rotates": false }, - { "id": "overlay_worn_scabbard", "fg": 918, "rotates": false }, - { "id": "overlay_worn_scarf", "fg": 652, "rotates": false }, - { "id": "overlay_worn_scarf_fur", "fg": 653, "rotates": false }, - { "id": "overlay_worn_scarf_fur_long", "fg": 638, "rotates": false }, - { "id": "overlay_worn_scarf_fur_long_loose", "fg": 638, "rotates": false }, - { "id": "overlay_worn_scarf_fur_loose", "fg": 653, "rotates": false }, - { "id": "overlay_worn_scarf_long", "fg": 639, "rotates": false }, - { "id": "overlay_worn_scarf_long_loose", "fg": 639, "rotates": false }, - { "id": "overlay_worn_scarf_loose", "fg": 654, "rotates": false }, - { "id": "overlay_worn_shark_suit", "fg": 919, "rotates": false }, - { "id": "overlay_worn_shark_suit_faraday", "fg": 919, "rotates": false }, - { "id": "overlay_worn_sheath", "fg": 920, "rotates": false }, - { "id": "overlay_worn_sheet", "fg": 715, "rotates": false }, - { "id": "overlay_worn_shoes_birchbark", "fg": 921, "rotates": false }, - { "id": "overlay_worn_shoes_bowling", "fg": 922, "rotates": false }, - { "id": "overlay_worn_sholster", "fg": 817, "rotates": false }, - { "id": "overlay_worn_shorts", "fg": 923, "rotates": false }, - { "id": "overlay_worn_shorts_cargo", "fg": 924, "rotates": false }, - { "id": "overlay_worn_shorts_denim", "fg": 903, "rotates": false }, - { "id": "overlay_worn_silver_medal", "fg": 1041, "rotates": false }, - { "id": "overlay_worn_silver_necklace", "fg": 1042, "rotates": false }, - { "id": [ "overlay_worn_silver_ring", "overlay_worn_mring_silver" ], "fg": 1043, "rotates": false }, - { "id": "overlay_worn_skinny_tie", "fg": 925, "rotates": false }, - { "id": "overlay_worn_skirt", "fg": 926, "rotates": false }, - { "id": "overlay_worn_skirt_leather", "fg": 927, "rotates": false }, - { "id": "overlay_worn_sleeping_bag", "fg": 928, "rotates": false }, - { "id": "overlay_worn_sleeping_bag_fur", "fg": 928, "rotates": false }, - { "id": "overlay_worn_sleeveless_duster", "fg": 929, "rotates": false }, - { "id": "overlay_worn_sleeveless_duster_fur", "fg": 929, "rotates": false }, - { "id": "overlay_worn_sleeveless_duster_leather", "fg": 929, "rotates": false }, - { "id": "overlay_worn_sleeveless_duster_survivor", "fg": 930, "rotates": false }, - { "id": "overlay_worn_sleeveless_trenchcoat", "fg": 931, "rotates": false }, - { "id": "overlay_worn_sleeveless_trenchcoat_fur", "fg": 931, "rotates": false }, - { "id": "overlay_worn_sleeveless_trenchcoat_leather", "fg": 931, "rotates": false }, - { "id": "overlay_worn_sleeveless_trenchcoat_survivor", "fg": 932, "rotates": false }, - { "id": "overlay_worn_sleeveless_tunic", "fg": 971, "rotates": false }, - { "id": "overlay_worn_slingpack", "fg": 917, "rotates": false }, - { "id": "overlay_worn_slippers", "fg": 933, "rotates": false }, - { "id": "overlay_worn_sneakers", "fg": 934, "rotates": false }, - { "id": "overlay_worn_snuggie", "fg": 1045, "rotates": false }, - { "id": "overlay_worn_sockmitts", "fg": 858, "rotates": false }, - { "id": "overlay_worn_socks", "fg": 935, "rotates": false }, - { "id": "overlay_worn_socks_bag", "fg": 935, "rotates": false }, - { "id": "overlay_worn_socks_bowling", "fg": 935, "rotates": false }, - { "id": "overlay_worn_socks_wool", "fg": 935, "rotates": false }, - { "id": "overlay_worn_sports_bra", "fg": 936, "rotates": false }, - { "id": "overlay_worn_stealth_cloak", "fg": 655, "rotates": false }, - { "id": "overlay_worn_stillsuit", "fg": 826, "rotates": false }, - { "id": "overlay_worn_stockings", "fg": 937, "rotates": false }, - { "id": "overlay_worn_stockings_oath", "fg": 937, "rotates": false }, - { "id": "overlay_worn_stockings_tent_arms", "fg": 938, "rotates": false }, - { "id": "overlay_worn_stockings_tent_legs", "fg": 939, "rotates": false }, - { "id": "overlay_worn_stomach_sealed", "fg": 622, "rotates": false }, - { "id": "overlay_worn_straw_basket", "fg": 940, "rotates": false }, - { "id": "overlay_worn_straw_sandals", "fg": 772, "rotates": false }, - { "id": "overlay_worn_striped_pants", "fg": 1046, "rotates": false }, - { "id": "overlay_worn_striped_shirt", "fg": 941, "rotates": false }, - { "id": "overlay_worn_subsuit_xl", "fg": 965, "rotates": false }, - { "id": "overlay_worn_suit", "fg": 942, "rotates": false }, - { "id": "overlay_worn_suitcase_l", "fg": 943, "rotates": false }, - { "id": "overlay_worn_suitcase_m", "fg": 943, "rotates": false }, - { "id": "overlay_worn_sundress", "fg": 944, "rotates": false }, - { "id": "overlay_worn_sunglasses", "fg": 945, "rotates": false }, - { "id": "overlay_worn_surv_armor_suit", "fg": 952, "rotates": false }, - { "id": "overlay_worn_surv_suit", "fg": 953, "rotates": false }, - { "id": "overlay_worn_survbowpack", "fg": 946, "rotates": false }, - { "id": "overlay_worn_survivor_belt", "fg": 947, "rotates": false }, - { "id": "overlay_worn_survivor_belt_notools", "fg": 947, "rotates": false }, - { "id": "overlay_worn_survivor_duffel_bag", "fg": 948, "rotates": false }, - { "id": "overlay_worn_survivor_goggles", "fg": 785, "rotates": false }, - { "id": "overlay_worn_survivor_light", "fg": 656, "rotates": false }, - { "id": "overlay_worn_survivor_light_on", "fg": 657, "rotates": false }, - { "id": "overlay_worn_survivor_pack", "fg": 705, "rotates": false }, - { "id": "overlay_worn_survivor_rucksack", "fg": 949, "rotates": false }, - { "id": "overlay_worn_survivor_runner_pack", "fg": 917, "rotates": false }, - { "id": "overlay_worn_survivor_suit", "fg": 950, "rotates": false }, - { "id": "overlay_worn_survivor_vest", "fg": 951, "rotates": false }, - { "id": "overlay_worn_swag_bag", "fg": 954, "rotates": false }, - { "id": "overlay_worn_swat_armor", "fg": 955, "rotates": false }, - { "id": "overlay_worn_swat_badge_swat", "fg": 1050, "rotates": false }, - { "id": "overlay_worn_sweater", "fg": 956, "rotates": false }, - { "id": "overlay_worn_sweatshirt", "fg": 957, "rotates": false }, - { "id": "overlay_worn_swim_fins", "fg": 958, "rotates": false }, - { "id": "overlay_worn_tabi_dress", "fg": 935, "rotates": false }, - { "id": "overlay_worn_tabi_gi", "fg": 774, "rotates": false }, - { "id": "overlay_worn_tac_fullhelmet", "fg": 959, "rotates": false }, - { "id": "overlay_worn_tac_helmet", "fg": 813, "rotates": false }, - { "id": "overlay_worn_tank_top", "fg": 960, "rotates": false }, - { "id": "overlay_worn_tarp", "fg": 715, "rotates": false }, - { "id": "overlay_worn_technician_pants_gray", "fg": 961, "rotates": false }, - { "id": "overlay_worn_technician_shirt_blue", "fg": 962, "rotates": false }, - { "id": "overlay_worn_technician_shirt_gray", "fg": 963, "rotates": false }, - { "id": "overlay_worn_technician_shirt_ltblue", "fg": 964, "rotates": false }, - { "id": "overlay_worn_thawb", "fg": 965, "rotates": false }, - { "id": "overlay_worn_thermal_gloves", "fg": 783, "rotates": false }, - { "id": "overlay_worn_thermal_gloves_on", "fg": 783, "rotates": false }, - { "id": "overlay_worn_thermal_mask", "fg": 874, "rotates": false }, - { "id": "overlay_worn_thermal_mask_on", "fg": 874, "rotates": false }, - { "id": "overlay_worn_thermal_socks", "fg": 774, "rotates": false }, - { "id": "overlay_worn_thermal_socks_on", "fg": 774, "rotates": false }, - { "id": "overlay_worn_thigh_high_boots", "fg": 966, "rotates": false }, - { "id": "overlay_worn_thong", "fg": 891, "rotates": false }, - { "id": "overlay_worn_tights", "fg": 967, "rotates": false }, - { "id": "overlay_worn_tool_belt", "fg": 947, "rotates": false }, - { "id": "overlay_worn_touring_suit", "fg": 950, "rotates": false }, - { "id": "overlay_worn_trenchcoat", "fg": 968, "rotates": false }, - { "id": "overlay_worn_trenchcoat_fur", "fg": 968, "rotates": false }, - { "id": "overlay_worn_trenchcoat_leather", "fg": 968, "rotates": false }, - { "id": "overlay_worn_trenchcoat_survivor", "fg": 969, "rotates": false }, - { "id": "overlay_worn_tricorne", "fg": 970, "rotates": false }, - { "id": "overlay_worn_trunks", "fg": 903, "rotates": false }, - { "id": "overlay_worn_tunic", "fg": 971, "rotates": false }, - { "id": "overlay_worn_tunic_rag", "fg": 971, "rotates": false }, - { "id": "overlay_worn_turban", "fg": 972, "rotates": false }, - { "id": "overlay_worn_tux", "fg": 942, "rotates": false }, - { "id": "overlay_worn_under_armor_shorts", "fg": 974, "rotates": false }, - { "id": "overlay_worn_undershirt", "fg": 973, "rotates": false }, - { "id": "overlay_worn_vambrace_larmor", "fg": 779, "rotates": false }, - { "id": "overlay_worn_vest", "fg": 975, "rotates": false }, - { "id": "overlay_worn_vest_leather", "fg": 976, "rotates": false }, - { "id": "overlay_worn_vest_leather_mod", "fg": 976, "rotates": false }, - { "id": "overlay_worn_waistcoat", "fg": 977, "rotates": false }, - { "id": [ "overlay_worn_sf_watch", "overlay_worn_platinum_watch" ], "fg": 1040, "rotates": false }, - { "id": "overlay_worn_gold_watch", "fg": 1028, "rotates": false }, - { "id": "overlay_worn_waterskin2", "fg": 622, "rotates": false }, - { "id": "overlay_worn_waterskin3", "fg": 622, "rotates": false }, - { "id": "overlay_worn_waterskin", "fg": 622, "rotates": false }, - { "id": "overlay_worn_wearable_light", "fg": 658, "rotates": false }, - { "id": "overlay_worn_wearable_light_on", "fg": 659, "rotates": false }, - { "id": "overlay_worn_welding_mask", "fg": 1051, "rotates": false }, - { "id": "overlay_worn_welding_mask_crude", "fg": 1052, "rotates": false }, - { "id": "overlay_worn_wetsuit", "fg": 978, "rotates": false }, - { "id": "overlay_worn_wetsuit_booties", "fg": 979, "rotates": false }, - { "id": "overlay_worn_wetsuit_gloves", "fg": 784, "rotates": false }, - { "id": "overlay_worn_wetsuit_hood", "fg": 980, "rotates": false }, - { "id": "overlay_worn_wetsuit_spring", "fg": 981, "rotates": false }, - { "id": "overlay_worn_winter_gloves_army", "fg": 781, "rotates": false }, - { "id": "overlay_worn_winter_jacket_army", "fg": 982, "rotates": false }, - { "id": "overlay_worn_winter_pants_army", "fg": 983, "rotates": false }, - { "id": "overlay_worn_wolfsuit", "fg": 984, "rotates": false }, - { "id": "overlay_worn_wool_hoodie", "fg": 835, "rotates": false }, - { "id": "overlay_worn_wool_suit", "fg": 942, "rotates": false }, - { "id": "overlay_worn_wristwatch", "fg": 1053, "rotates": false }, - { "id": "overlay_worn_wsurvivor_suit", "fg": 985, "rotates": false }, - { "id": "overlay_worn_xlsurvivor_suit", "fg": 950, "rotates": false }, - { "id": "overlay_worn_zubon_gi", "fg": 897, "rotates": false }, + { "id": "overlay_worn_leather_cat_tail", "fg": 782, "rotates": false }, + { "id": "overlay_worn_leather_pouch", "fg": 629, "rotates": false }, + { "id": "overlay_worn_leathersandals", "fg": 779, "rotates": false }, + { "id": "overlay_worn_leg_splint", "fg": 861, "rotates": false }, + { "id": "overlay_worn_leg_warmers", "fg": 862, "rotates": false }, + { "id": "overlay_worn_leg_warmers_f", "fg": 862, "rotates": false }, + { "id": "overlay_worn_leg_warmers_xl", "fg": 862, "rotates": false }, + { "id": "overlay_worn_leg_warmers_xlf", "fg": 862, "rotates": false }, + { "id": "overlay_worn_leggings", "fg": 974, "rotates": false }, + { "id": "overlay_worn_legguard_bronze", "fg": 859, "rotates": false }, + { "id": "overlay_worn_legguard_hard", "fg": 858, "rotates": false }, + { "id": [ "overlay_worn_legguard_metal", "overlay_worn_legguard_lightplate" ], "fg": 859, "rotates": false }, + { "id": "overlay_worn_legguard_paper", "fg": 860, "rotates": false }, + { "id": "overlay_worn_legrig", "fg": 954, "rotates": false }, + { "id": "overlay_worn_lmil_armor", "fg": 863, "rotates": false }, + { "id": "overlay_worn_loincloth", "fg": 864, "rotates": false }, + { "id": "overlay_worn_loincloth_fur", "fg": 864, "rotates": false }, + { "id": "overlay_worn_loincloth_leather", "fg": 864, "rotates": false }, + { "id": "overlay_worn_loincloth_wool", "fg": 864, "rotates": false }, + { "id": "overlay_worn_long_glove_white", "fg": 865, "rotates": false }, + { "id": "overlay_worn_long_knit_scarf", "fg": 645, "rotates": false }, + { "id": "overlay_worn_long_knit_scarf_loose", "fg": 645, "rotates": false }, + { "id": "overlay_worn_long_patchwork_scarf", "fg": 646, "rotates": false }, + { "id": "overlay_worn_long_patchwork_scarf_loose", "fg": 646, "rotates": false }, + { "id": "overlay_worn_lowtops", "fg": 866, "rotates": false }, + { "id": "overlay_worn_lsurvivor_armor", "fg": 867, "rotates": false }, + { "id": "overlay_worn_lsurvivor_pants", "fg": 905, "rotates": false }, + { "id": "overlay_worn_lsurvivor_suit", "fg": 957, "rotates": false }, + { "id": "overlay_worn_magbandolier", "fg": 668, "rotates": false }, + { "id": "overlay_worn_maid_dress", "fg": 868, "rotates": false }, + { "id": "overlay_worn_maid_hat", "fg": 869, "rotates": false }, + { "id": "overlay_worn_maid_stockings", "fg": 944, "rotates": false }, + { "id": "overlay_worn_makeshift_knapsack", "fg": 870, "rotates": false }, + { "id": "overlay_worn_makeshift_sling", "fg": 871, "rotates": false }, + { "id": "overlay_worn_mask_bal", "fg": 872, "rotates": false }, + { "id": "overlay_worn_mask_bunker", "fg": 647, "rotates": false }, + { "id": "overlay_worn_mask_bunker_on", "fg": 648, "rotates": false }, + { "id": "overlay_worn_mask_dust", "fg": 873, "rotates": false }, + { "id": "overlay_worn_mask_filter", "fg": 874, "rotates": false }, + { "id": "overlay_worn_mask_fsurvivor", "fg": 875, "rotates": false }, + { "id": "overlay_worn_mask_fsurvivorxl", "fg": 875, "rotates": false }, + { "id": "overlay_worn_mask_gas", "fg": 876, "rotates": false }, + { "id": "overlay_worn_mask_gas_xl", "fg": 876, "rotates": false }, + { "id": "overlay_worn_mask_guy_fawkes", "fg": 877, "rotates": false }, + { "id": "overlay_worn_mask_h20survivor", "fg": 649, "rotates": false }, + { "id": "overlay_worn_mask_h20survivor_on", "fg": 649, "rotates": false }, + { "id": "overlay_worn_mask_h20survivorxl", "fg": 649, "rotates": false }, + { "id": "overlay_worn_mask_h20survivorxl_on", "fg": 649, "rotates": false }, + { "id": "overlay_worn_mask_hockey", "fg": 878, "rotates": false }, + { "id": "overlay_worn_mask_hsurvivor", "fg": 879, "rotates": false }, + { "id": "overlay_worn_mask_lsurvivor", "fg": 880, "rotates": false }, + { "id": "overlay_worn_mask_rioter", "fg": 881, "rotates": false }, + { "id": [ "overlay_worn_mask_ski_loose", "mask_ski_loose" ], "fg": 651, "rotates": false }, + { "id": [ "overlay_worn_mask_ski", "mask_ski" ], "fg": 650, "rotates": false }, + { "id": "overlay_worn_mask_survivor", "fg": 880, "rotates": false }, + { "id": "overlay_worn_mask_survivorxl", "fg": 880, "rotates": false }, + { "id": "overlay_worn_mask_wsurvivor", "fg": 882, "rotates": false }, + { "id": "overlay_worn_mask_wsurvivorxl", "fg": 882, "rotates": false }, + { "id": "overlay_worn_mbag", "fg": 883, "rotates": false }, + { "id": "overlay_worn_megaarmor_armguards_1", "fg": 884, "rotates": false }, + { "id": "overlay_worn_megaarmor_boots_1", "fg": 885, "rotates": false }, + { "id": "overlay_worn_megaarmor_gloves_1", "fg": 886, "rotates": false }, + { "id": "overlay_worn_megaarmor_head_1", "fg": 887, "rotates": false }, + { "id": "overlay_worn_megaarmor_leggings_1", "fg": 888, "rotates": false }, + { "id": "overlay_worn_megaarmor_torso_1", "fg": 889, "rotates": false }, + { "id": "overlay_worn_megaarmor_torso_2", "fg": 890, "rotates": false }, + { "id": "overlay_worn_megaarmor_torso_3", "fg": 652, "rotates": false }, + { "id": "overlay_worn_megaarmor_torso_3_act", "fg": 653, "rotates": false }, + { "id": "overlay_worn_microskirt", "fg": 894, "rotates": false }, + { "id": "overlay_worn_mil_armor", "fg": 891, "rotates": false }, + { "id": "overlay_worn_mittens", "fg": 787, "rotates": false }, + { "id": "overlay_worn_mocassins", "fg": 759, "rotates": false }, + { "id": "overlay_worn_modularvest", "fg": 982, "rotates": false }, + { "id": "overlay_worn_modularvestceramic", "fg": 982, "rotates": false }, + { "id": "overlay_worn_modularvesthard", "fg": 982, "rotates": false }, + { "id": "overlay_worn_modularvestkevlar", "fg": 982, "rotates": false }, + { "id": "overlay_worn_modularveststeel", "fg": 982, "rotates": false }, + { "id": "overlay_worn_modularvestsuper", "fg": 982, "rotates": false }, + { "id": "overlay_worn_molle_pack", "fg": 892, "rotates": false }, + { "id": "overlay_worn_motorbike_armor", "fg": 893, "rotates": false }, + { "id": "overlay_worn_motorbike_boots", "fg": 733, "rotates": false }, + { "id": "overlay_worn_motorbike_pants", "fg": 968, "rotates": false }, + { "id": "overlay_worn_nanoskirt", "fg": 894, "rotates": false }, + { "id": "overlay_worn_nomex_gloves", "fg": 787, "rotates": false }, + { "id": "overlay_worn_nomex_hood", "fg": 827, "rotates": false }, + { "id": "overlay_worn_nomex_socks", "fg": 895, "rotates": false }, + { "id": "overlay_worn_nomex_suit", "fg": 896, "rotates": false }, + { "id": "overlay_worn_obi_gi", "fg": 857, "rotates": false }, + { "id": "overlay_worn_optical_cloak", "fg": 897, "rotates": false }, + { "id": "overlay_worn_panties", "fg": 898, "rotates": false }, + { "id": "overlay_worn_pants", "fg": 899, "rotates": false }, + { "id": "overlay_worn_pants_army", "fg": 900, "rotates": false }, + { "id": "overlay_worn_pants_cargo", "fg": 901, "rotates": false }, + { "id": "overlay_worn_pants_checkered", "fg": 902, "rotates": false }, + { "id": "overlay_worn_pants_fur", "fg": 903, "rotates": false }, + { "id": "overlay_worn_pants_leather", "fg": 903, "rotates": false }, + { "id": "overlay_worn_pants_ski", "fg": 904, "rotates": false }, + { "id": "overlay_worn_pants_survivor", "fg": 905, "rotates": false }, + { "id": "overlay_worn_patchwork_scarf", "fg": 661, "rotates": false }, + { "id": "overlay_worn_patchwork_scarf_loose", "fg": 661, "rotates": false }, + { "id": "overlay_worn_peacoat", "fg": 906, "rotates": false }, + { "id": "overlay_worn_plastic_shopping_bag", "fg": 907, "rotates": false }, + { "id": "overlay_worn_platinum_locket", "fg": 1040, "rotates": false }, + { "id": "overlay_worn_platinum_necklace", "fg": 1041, "rotates": false }, + { "id": [ "overlay_worn_platinum_ring", "overlay_worn_mring_platinum" ], "fg": 1042, "rotates": false }, + { "id": "overlay_worn_poncho", "fg": 908, "rotates": false }, + { "id": "overlay_worn_postman_hat", "fg": 909, "rotates": false }, + { "id": "overlay_worn_postman_shorts", "fg": 910, "rotates": false }, + { "id": "overlay_worn_pot_helmet", "fg": 911, "rotates": false }, + { "id": "overlay_worn_power_armor_basic", "fg": 912, "rotates": false }, + { "id": "overlay_worn_power_armor_heavy", "fg": 913, "rotates": false }, + { "id": "overlay_worn_power_armor_helmet_basic", "fg": 914, "rotates": false }, + { "id": "overlay_worn_power_armor_helmet_heavy", "fg": 915, "rotates": false }, + { "id": "overlay_worn_power_armor_helmet_light", "fg": 916, "rotates": false }, + { "id": "overlay_worn_power_armor_light", "fg": 917, "rotates": false }, + { "id": [ "overlay_worn_powered_earmuffs", "overlay_worn_powered_earmuffs_on" ], "fg": 683 }, + { "id": "overlay_worn_purse", "fg": 918, "rotates": false }, + { "id": "overlay_worn_quiver", "fg": 919, "rotates": false }, + { "id": "overlay_worn_quiver_birchbark", "fg": 919, "rotates": false }, + { "id": "overlay_worn_quiver_large", "fg": 920, "rotates": false }, + { "id": "overlay_worn_quiver_large_birchbark", "fg": 920, "rotates": false }, + { "id": "overlay_worn_rebreather", "fg": 1043, "rotates": false }, + { "id": "overlay_worn_rebreather_xl", "fg": 1043, "rotates": false }, + { "id": "overlay_worn_revenant_crown", "fg": 654, "rotates": false }, + { "id": [ "overlay_worn_diamond_ring", "overlay_worn_ring_wedding" ], "fg": 1009, "rotates": false }, + { "id": [ "overlay_worn_ring_engagement" ], "fg": 1044, "rotates": false }, + { "id": "overlay_worn_ring_purity", "fg": 1045, "rotates": false }, + { "id": "overlay_worn_ring_signet", "fg": 1046, "rotates": false }, + { "id": "overlay_worn_rm13_armor", "fg": 667, "rotates": false }, + { "id": "overlay_worn_rm13_armor_on", "fg": 655, "rotates": false }, + { "id": "overlay_worn_robe", "fg": 921, "rotates": false }, + { "id": "overlay_worn_roller_blades", "fg": 922, "rotates": false }, + { "id": "overlay_worn_rollerskates", "fg": 922, "rotates": false }, + { "id": "overlay_worn_rucksack", "fg": 923, "rotates": false }, + { "id": "overlay_worn_runner_bag", "fg": 924, "rotates": false }, + { "id": "overlay_worn_sac_purse", "fg": 656, "rotates": false }, + { "id": "overlay_worn_sac_purse_arm", "fg": 657, "rotates": false }, + { "id": "overlay_worn_sac_purse_leg", "fg": 658, "rotates": false }, + { "id": "overlay_worn_scabbard", "fg": 925, "rotates": false }, + { "id": "overlay_worn_scarf", "fg": 659, "rotates": false }, + { "id": "overlay_worn_scarf_fur", "fg": 660, "rotates": false }, + { "id": "overlay_worn_scarf_fur_long", "fg": 645, "rotates": false }, + { "id": "overlay_worn_scarf_fur_long_loose", "fg": 645, "rotates": false }, + { "id": "overlay_worn_scarf_fur_loose", "fg": 660, "rotates": false }, + { "id": "overlay_worn_scarf_long", "fg": 646, "rotates": false }, + { "id": "overlay_worn_scarf_long_loose", "fg": 646, "rotates": false }, + { "id": "overlay_worn_scarf_loose", "fg": 661, "rotates": false }, + { "id": "overlay_worn_shark_suit", "fg": 926, "rotates": false }, + { "id": "overlay_worn_shark_suit_faraday", "fg": 926, "rotates": false }, + { "id": "overlay_worn_sheath", "fg": 927, "rotates": false }, + { "id": "overlay_worn_sheet", "fg": 722, "rotates": false }, + { "id": "overlay_worn_shoes_birchbark", "fg": 928, "rotates": false }, + { "id": "overlay_worn_shoes_bowling", "fg": 929, "rotates": false }, + { "id": "overlay_worn_sholster", "fg": 824, "rotates": false }, + { "id": "overlay_worn_shorts", "fg": 930, "rotates": false }, + { "id": "overlay_worn_shorts_cargo", "fg": 931, "rotates": false }, + { "id": "overlay_worn_shorts_denim", "fg": 910, "rotates": false }, + { "id": "overlay_worn_silver_medal", "fg": 1048, "rotates": false }, + { "id": "overlay_worn_silver_necklace", "fg": 1049, "rotates": false }, + { "id": [ "overlay_worn_silver_ring", "overlay_worn_mring_silver" ], "fg": 1050, "rotates": false }, + { "id": "overlay_worn_skinny_tie", "fg": 932, "rotates": false }, + { "id": "overlay_worn_skirt", "fg": 933, "rotates": false }, + { "id": "overlay_worn_skirt_leather", "fg": 934, "rotates": false }, + { "id": "overlay_worn_sleeping_bag", "fg": 935, "rotates": false }, + { "id": "overlay_worn_sleeping_bag_fur", "fg": 935, "rotates": false }, + { "id": "overlay_worn_sleeveless_duster", "fg": 936, "rotates": false }, + { "id": "overlay_worn_sleeveless_duster_fur", "fg": 936, "rotates": false }, + { "id": "overlay_worn_sleeveless_duster_leather", "fg": 936, "rotates": false }, + { "id": "overlay_worn_sleeveless_duster_survivor", "fg": 937, "rotates": false }, + { "id": "overlay_worn_sleeveless_trenchcoat", "fg": 938, "rotates": false }, + { "id": "overlay_worn_sleeveless_trenchcoat_fur", "fg": 938, "rotates": false }, + { "id": "overlay_worn_sleeveless_trenchcoat_leather", "fg": 938, "rotates": false }, + { "id": "overlay_worn_sleeveless_trenchcoat_survivor", "fg": 939, "rotates": false }, + { "id": "overlay_worn_sleeveless_tunic", "fg": 978, "rotates": false }, + { "id": "overlay_worn_slingpack", "fg": 924, "rotates": false }, + { "id": "overlay_worn_slippers", "fg": 940, "rotates": false }, + { "id": "overlay_worn_sneakers", "fg": 941, "rotates": false }, + { "id": "overlay_worn_snuggie", "fg": 1052, "rotates": false }, + { "id": "overlay_worn_sockmitts", "fg": 865, "rotates": false }, + { "id": "overlay_worn_socks", "fg": 942, "rotates": false }, + { "id": "overlay_worn_socks_bag", "fg": 942, "rotates": false }, + { "id": "overlay_worn_socks_bowling", "fg": 942, "rotates": false }, + { "id": "overlay_worn_socks_wool", "fg": 942, "rotates": false }, + { "id": "overlay_worn_sports_bra", "fg": 943, "rotates": false }, + { "id": "overlay_worn_stealth_cloak", "fg": 662, "rotates": false }, + { "id": "overlay_worn_stillsuit", "fg": 833, "rotates": false }, + { "id": "overlay_worn_stockings", "fg": 944, "rotates": false }, + { "id": "overlay_worn_stockings_oath", "fg": 944, "rotates": false }, + { "id": "overlay_worn_stockings_tent_arms", "fg": 945, "rotates": false }, + { "id": "overlay_worn_stockings_tent_legs", "fg": 946, "rotates": false }, + { "id": "overlay_worn_stomach_sealed", "fg": 629, "rotates": false }, + { "id": "overlay_worn_straw_basket", "fg": 947, "rotates": false }, + { "id": "overlay_worn_straw_sandals", "fg": 779, "rotates": false }, + { "id": "overlay_worn_striped_pants", "fg": 1053, "rotates": false }, + { "id": "overlay_worn_striped_shirt", "fg": 948, "rotates": false }, + { "id": "overlay_worn_subsuit_xl", "fg": 972, "rotates": false }, + { "id": "overlay_worn_suit", "fg": 949, "rotates": false }, + { "id": "overlay_worn_suitcase_l", "fg": 950, "rotates": false }, + { "id": "overlay_worn_suitcase_m", "fg": 950, "rotates": false }, + { "id": "overlay_worn_sundress", "fg": 951, "rotates": false }, + { "id": "overlay_worn_sunglasses", "fg": 952, "rotates": false }, + { "id": "overlay_worn_surv_armor_suit", "fg": 959, "rotates": false }, + { "id": "overlay_worn_surv_suit", "fg": 960, "rotates": false }, + { "id": "overlay_worn_survbowpack", "fg": 953, "rotates": false }, + { "id": "overlay_worn_survivor_belt", "fg": 954, "rotates": false }, + { "id": "overlay_worn_survivor_belt_notools", "fg": 954, "rotates": false }, + { "id": "overlay_worn_survivor_duffel_bag", "fg": 955, "rotates": false }, + { "id": "overlay_worn_survivor_goggles", "fg": 792, "rotates": false }, + { "id": "overlay_worn_survivor_light", "fg": 663, "rotates": false }, + { "id": "overlay_worn_survivor_light_on", "fg": 664, "rotates": false }, + { "id": "overlay_worn_survivor_pack", "fg": 712, "rotates": false }, + { "id": "overlay_worn_survivor_rucksack", "fg": 956, "rotates": false }, + { "id": "overlay_worn_survivor_runner_pack", "fg": 924, "rotates": false }, + { "id": "overlay_worn_survivor_suit", "fg": 957, "rotates": false }, + { "id": "overlay_worn_survivor_vest", "fg": 958, "rotates": false }, + { "id": "overlay_worn_swag_bag", "fg": 961, "rotates": false }, + { "id": "overlay_worn_swat_armor", "fg": 962, "rotates": false }, + { "id": "overlay_worn_swat_badge_swat", "fg": 1057, "rotates": false }, + { "id": "overlay_worn_sweater", "fg": 963, "rotates": false }, + { "id": "overlay_worn_sweatshirt", "fg": 964, "rotates": false }, + { "id": "overlay_worn_swim_fins", "fg": 965, "rotates": false }, + { "id": "overlay_worn_tabi_dress", "fg": 942, "rotates": false }, + { "id": "overlay_worn_tabi_gi", "fg": 781, "rotates": false }, + { "id": "overlay_worn_tac_fullhelmet", "fg": 966, "rotates": false }, + { "id": "overlay_worn_tac_helmet", "fg": 820, "rotates": false }, + { "id": "overlay_worn_tank_top", "fg": 967, "rotates": false }, + { "id": "overlay_worn_tarp", "fg": 722, "rotates": false }, + { "id": "overlay_worn_technician_pants_gray", "fg": 968, "rotates": false }, + { "id": "overlay_worn_technician_shirt_blue", "fg": 969, "rotates": false }, + { "id": "overlay_worn_technician_shirt_gray", "fg": 970, "rotates": false }, + { "id": "overlay_worn_technician_shirt_ltblue", "fg": 971, "rotates": false }, + { "id": "overlay_worn_thawb", "fg": 972, "rotates": false }, + { "id": "overlay_worn_thermal_gloves", "fg": 790, "rotates": false }, + { "id": "overlay_worn_thermal_gloves_on", "fg": 790, "rotates": false }, + { "id": "overlay_worn_thermal_mask", "fg": 881, "rotates": false }, + { "id": "overlay_worn_thermal_mask_on", "fg": 881, "rotates": false }, + { "id": "overlay_worn_thermal_socks", "fg": 781, "rotates": false }, + { "id": "overlay_worn_thermal_socks_on", "fg": 781, "rotates": false }, + { "id": "overlay_worn_thigh_high_boots", "fg": 973, "rotates": false }, + { "id": "overlay_worn_thong", "fg": 898, "rotates": false }, + { "id": "overlay_worn_tights", "fg": 974, "rotates": false }, + { "id": "overlay_worn_tool_belt", "fg": 954, "rotates": false }, + { "id": "overlay_worn_touring_suit", "fg": 957, "rotates": false }, + { "id": "overlay_worn_trenchcoat", "fg": 975, "rotates": false }, + { "id": "overlay_worn_trenchcoat_fur", "fg": 975, "rotates": false }, + { "id": "overlay_worn_trenchcoat_leather", "fg": 975, "rotates": false }, + { "id": "overlay_worn_trenchcoat_survivor", "fg": 976, "rotates": false }, + { "id": "overlay_worn_tricorne", "fg": 977, "rotates": false }, + { "id": "overlay_worn_trunks", "fg": 910, "rotates": false }, + { "id": "overlay_worn_tunic", "fg": 978, "rotates": false }, + { "id": "overlay_worn_tunic_rag", "fg": 978, "rotates": false }, + { "id": "overlay_worn_turban", "fg": 979, "rotates": false }, + { "id": "overlay_worn_tux", "fg": 949, "rotates": false }, + { "id": "overlay_worn_under_armor_shorts", "fg": 981, "rotates": false }, + { "id": "overlay_worn_undershirt", "fg": 980, "rotates": false }, + { "id": "overlay_worn_vambrace_larmor", "fg": 786, "rotates": false }, + { "id": "overlay_worn_vest", "fg": 982, "rotates": false }, + { "id": "overlay_worn_vest_leather", "fg": 983, "rotates": false }, + { "id": "overlay_worn_vest_leather_mod", "fg": 983, "rotates": false }, + { "id": "overlay_worn_waistcoat", "fg": 984, "rotates": false }, + { "id": [ "overlay_worn_sf_watch", "overlay_worn_platinum_watch" ], "fg": 1047, "rotates": false }, + { "id": "overlay_worn_gold_watch", "fg": 1035, "rotates": false }, + { "id": "overlay_worn_waterskin2", "fg": 629, "rotates": false }, + { "id": "overlay_worn_waterskin3", "fg": 629, "rotates": false }, + { "id": "overlay_worn_waterskin", "fg": 629, "rotates": false }, + { "id": "overlay_worn_wearable_light", "fg": 665, "rotates": false }, + { "id": "overlay_worn_wearable_light_on", "fg": 666, "rotates": false }, + { "id": "overlay_worn_welding_mask", "fg": 1058, "rotates": false }, + { "id": "overlay_worn_welding_mask_crude", "fg": 1059, "rotates": false }, + { "id": "overlay_worn_wetsuit", "fg": 985, "rotates": false }, + { "id": "overlay_worn_wetsuit_booties", "fg": 986, "rotates": false }, + { "id": "overlay_worn_wetsuit_gloves", "fg": 791, "rotates": false }, + { "id": "overlay_worn_wetsuit_hood", "fg": 987, "rotates": false }, + { "id": "overlay_worn_wetsuit_spring", "fg": 988, "rotates": false }, + { "id": "overlay_worn_winter_gloves_army", "fg": 788, "rotates": false }, + { "id": "overlay_worn_winter_jacket_army", "fg": 989, "rotates": false }, + { "id": "overlay_worn_winter_pants_army", "fg": 990, "rotates": false }, + { "id": "overlay_worn_wolfsuit", "fg": 991, "rotates": false }, + { "id": "overlay_worn_wool_hoodie", "fg": 842, "rotates": false }, + { "id": "overlay_worn_wool_suit", "fg": 949, "rotates": false }, + { "id": "overlay_worn_wristwatch", "fg": 1060, "rotates": false }, + { "id": "overlay_worn_wsurvivor_suit", "fg": 992, "rotates": false }, + { "id": "overlay_worn_xlsurvivor_suit", "fg": 957, "rotates": false }, + { "id": "overlay_worn_zubon_gi", "fg": 904, "rotates": false }, { "id": "overlay_female_mutation_BARK", "fg": 248 }, { "id": "overlay_female_mutation_BEAK", "fg": 249 }, { "id": "overlay_female_mutation_SPINES", "fg": 265 }, @@ -1661,483 +1668,459 @@ { "id": "overlay_mutation_eye_gray", "fg": 321 }, { "id": "overlay_mutation_eye_green", "fg": 322 }, { "id": "overlay_mutation_eye_hazel", "fg": 323 }, - { "id": "overlay_female_mutation_SKIN_DARK", "fg": 416 }, - { "id": "overlay_female_mutation_SKIN_MEDIUM", "fg": 417 }, - { "id": "overlay_female_mutation_SKIN_PINK", "fg": 418 }, - { "id": "overlay_female_mutation_SKIN_TAN", "fg": 419 }, - { "id": "overlay_male_mutation_SKIN_DARK", "fg": 420 }, - { "id": "overlay_male_mutation_SKIN_LIGHT", "fg": 421 }, - { "id": "overlay_male_mutation_SKIN_MEDIUM", "fg": 422 }, - { "id": "overlay_male_mutation_SKIN_PINK", "fg": 423 }, - { "id": "overlay_wielded_primitive_shovel", "fg": 619 }, - { "id": "overlay_wielded_scalpel", "fg": 620 }, - { "id": "overlay_female_worn_boots_rubber", "fg": 986 }, - { "id": "overlay_male_worn_boots_rubber", "fg": 987 }, - { "id": "overlay_worn_bookplate", "fg": 995 }, - { "id": "overlay_worn_broken_dimensional_anchor", "fg": 996 }, - { "id": "overlay_worn_diamond_dental_grill", "fg": 1001 }, - { "id": "overlay_worn_dimensional_anchor", "fg": 1003 }, - { "id": "overlay_worn_dimensional_anchor_on", "fg": 1004 }, - { "id": "overlay_worn_eclipse_glasses", "fg": 1007 }, - { "id": "overlay_worn_fancy_glasses_bifocal", "fg": 1009 }, - { "id": "overlay_worn_fancy_glasses_eye", "fg": 1010 }, - { "id": "overlay_worn_fancy_glasses_reading", "fg": 1011 }, - { "id": "overlay_worn_fanny", "fg": 1012 }, - { "id": "overlay_worn_fur_cat_tail", "fg": 1016 }, - { "id": "overlay_worn_fur_collar", "fg": 1017 }, - { "id": "overlay_worn_glasses_bifocal", "fg": 1018 }, - { "id": "overlay_worn_glasses_eye", "fg": 1019 }, - { "id": "overlay_worn_glasses_reading", "fg": 1020 }, - { "id": "overlay_worn_gloves_rubber", "fg": 1022 }, - { "id": "overlay_worn_gold_ear", "fg": 1023 }, - { "id": "overlay_worn_helmet_motor_raised", "fg": 1029 }, - { "id": "overlay_worn_leather_collar", "fg": 1031 }, - { "id": "overlay_worn_silver_watch", "fg": 1044 }, - { "id": "overlay_worn_sunglasses_bifocal", "fg": 1047 }, - { "id": "overlay_worn_sunglasses_eye", "fg": 1048 }, - { "id": "overlay_worn_sunglasses_reading", "fg": 1049 }, - { "id": "overlay_worn_chestguard_hard", "fg": 1054 } + { "id": "overlay_female_mutation_RABBIT_FEET", "fg": 416 }, + { "id": "overlay_female_mutation_RABBIT_FUR", "fg": 417 }, + { "id": "overlay_male_mutation_RABBIT_FEET", "fg": 418 }, + { "id": "overlay_male_mutation_RABBIT_FUR", "fg": 419 }, + { "id": "overlay_mutation_RABBIT_NOSE", "fg": 420 }, + { "id": "overlay_mutation_TAIL_RABBIT", "fg": 421 }, + { "id": "overlay_female_mutation_SKIN_DARK", "fg": 422 }, + { "id": "overlay_female_mutation_SKIN_MEDIUM", "fg": 423 }, + { "id": "overlay_female_mutation_SKIN_PINK", "fg": 424 }, + { "id": "overlay_female_mutation_SKIN_TAN", "fg": 425 }, + { "id": "overlay_male_mutation_SKIN_DARK", "fg": 426 }, + { "id": "overlay_male_mutation_SKIN_LIGHT", "fg": 427 }, + { "id": "overlay_male_mutation_SKIN_MEDIUM", "fg": 428 }, + { "id": "overlay_male_mutation_SKIN_PINK", "fg": 429 }, + { "id": "overlay_wielded_1st_aid_box", "fg": 625 }, + { "id": "overlay_wielded_primitive_shovel", "fg": 626 }, + { "id": "overlay_wielded_scalpel", "fg": 627 }, + { "id": "overlay_female_worn_boots_rubber", "fg": 993 }, + { "id": "overlay_male_worn_boots_rubber", "fg": 994 }, + { "id": "overlay_worn_bookplate", "fg": 1002 }, + { "id": "overlay_worn_broken_dimensional_anchor", "fg": 1003 }, + { "id": "overlay_worn_diamond_dental_grill", "fg": 1008 }, + { "id": "overlay_worn_dimensional_anchor", "fg": 1010 }, + { "id": "overlay_worn_dimensional_anchor_on", "fg": 1011 }, + { "id": "overlay_worn_eclipse_glasses", "fg": 1014 }, + { "id": "overlay_worn_fancy_glasses_bifocal", "fg": 1016 }, + { "id": "overlay_worn_fancy_glasses_eye", "fg": 1017 }, + { "id": "overlay_worn_fancy_glasses_reading", "fg": 1018 }, + { "id": "overlay_worn_fanny", "fg": 1019 }, + { "id": "overlay_worn_fur_cat_tail", "fg": 1023 }, + { "id": "overlay_worn_fur_collar", "fg": 1024 }, + { "id": "overlay_worn_glasses_bifocal", "fg": 1025 }, + { "id": "overlay_worn_glasses_eye", "fg": 1026 }, + { "id": "overlay_worn_glasses_reading", "fg": 1027 }, + { "id": "overlay_worn_gloves_rubber", "fg": 1029 }, + { "id": "overlay_worn_gold_ear", "fg": 1030 }, + { "id": "overlay_worn_helmet_motor_raised", "fg": 1036 }, + { "id": "overlay_worn_leather_collar", "fg": 1038 }, + { "id": "overlay_worn_silver_watch", "fg": 1051 }, + { "id": "overlay_worn_sunglasses_bifocal", "fg": 1054 }, + { "id": "overlay_worn_sunglasses_eye", "fg": 1055 }, + { "id": "overlay_worn_sunglasses_reading", "fg": 1056 }, + { "id": "overlay_worn_chestguard_hard", "fg": 1061 } ] }, { "file": "ChibiNormalMonster.png", - "//": "range 1056 to 1567", + "//": "range 1072 to 1583", "tiles": [ - { "id": "debug_mon", "fg": 1056 }, - { "id": "mon_EMP_hack", "fg": 1129 }, - { "id": "mon_albino_penguin", "fg": 1057, "bg": 1323, "rotates": false }, - { "id": "mon_alpha_razorclaw", "fg": 1058, "bg": 1323 }, - { "id": "mon_ant", "fg": 1059, "bg": 1323, "rotates": false }, - { "id": "mon_ant_acid", "fg": 1275, "bg": 1323, "rotates": false }, - { "id": "mon_ant_acid_larva", "fg": 1274, "bg": 1323, "rotates": false }, - { "id": "mon_ant_acid_queen", "fg": 1276, "bg": 1323, "rotates": false }, - { "id": "mon_ant_acid_soldier", "fg": 1273, "rotates": false }, - { "id": "mon_ant_fungus", "fg": 1060, "bg": 1323, "rotates": false }, - { "id": "mon_ant_larva", "fg": 1061, "bg": 1323, "rotates": false }, - { "id": "mon_ant_queen", "fg": 1062, "bg": 1323, "rotates": false }, - { "id": "mon_ant_soldier", "fg": 1063, "bg": 1323, "rotates": false }, - { "id": "mon_bat", "fg": 1064, "bg": 1323, "rotates": false }, - { "id": "mon_bear", "fg": 1065, "bg": 1323, "rotates": false }, - { "id": "mon_bear_cub", "fg": 1066, "bg": 1323, "rotates": false }, - { "id": "mon_bear_smoky", "fg": 1067, "bg": 1323, "rotates": false }, - { "id": "mon_bee", "fg": 1068, "bg": 1323, "rotates": false }, - { "id": "mon_bee_mega", "fg": 1070, "rotates": false }, - { "id": "mon_bee_small", "fg": 1071, "rotates": false }, - { "id": "mon_beekeeper", "fg": 1069, "bg": 1323, "rotates": false }, - { "id": "mon_biollante", "fg": 1072, "bg": 1323, "rotates": false }, - { "id": "mon_black_rat", "fg": 1180, "rotates": false }, - { "id": "mon_blank", "fg": 1073, "bg": 1323, "rotates": false }, - { "id": "mon_blob", "fg": 1074, "bg": 1323, "rotates": false }, - { "id": "mon_blob_large", "fg": 1075, "rotates": false }, - { "id": "mon_blob_small", "fg": 1076, "rotates": false }, - { "id": "mon_bobcat", "fg": 1077, "bg": 1323, "rotates": false }, - { "id": "mon_boomer", "fg": 1078, "bg": 1323, "rotates": false }, - { "id": "mon_boomer_fungus", "fg": 1079, "bg": 1323, "rotates": false }, - { "id": "mon_breather", "fg": 1080, "rotates": false }, - { "id": "mon_breather_hub", "fg": 1081, "bg": 1323, "rotates": false }, - { "id": "mon_c4_hack", "fg": 1082, "bg": 1323, "rotates": false }, - { "id": "mon_cat", "fg": 1077, "bg": 1323, "rotates": false }, - { "id": "mon_centipede", "fg": 1083, "rotates": false }, - { "id": "mon_centipede_giant", "fg": 1084, "bg": 1323, "rotates": false }, - { "id": "mon_charred_nightmare", "fg": 1085, "rotates": false }, - { "id": "mon_chicken", "fg": 1086, "bg": 1323, "rotates": false }, - { "id": "mon_chipmunk", "fg": 1087, "bg": 1323, "rotates": false }, - { "id": "mon_chud", "fg": 1088, "bg": 1323, "rotates": false }, - { "id": "mon_compsognathus", "fg": 1089, "bg": 1323, "rotates": false }, - { "id": "mon_cougar", "fg": 1090, "bg": 1323, "rotates": false }, - { "id": "mon_coyote", "fg": 1091, "bg": 1323, "rotates": false }, - { "id": "mon_coyote_wolf", "fg": 1092, "bg": 1323, "rotates": false }, - { "id": "mon_crawler", "fg": 1093, "bg": 1323, "rotates": false }, - { "id": "mon_creeper_hub", "fg": 1094, "bg": 1323, "rotates": false }, - { "id": "mon_creeper_vine", "fg": 1095, "bg": 1323, "rotates": false }, - { "id": "mon_crow", "fg": 1096, "bg": 1323, "rotates": false }, - { "id": "mon_darkman", "fg": 1097, "bg": 1323, "rotates": false }, - { "id": "mon_deer", "fg": 1098, "bg": 1323, "rotates": false }, - { "id": "mon_deer_mouse", "fg": 1180, "rotates": false }, - { "id": "mon_deinonychus", "fg": 1099, "bg": 1323, "rotates": false }, - { "id": "mon_dementia", "fg": 1100, "bg": 1323, "rotates": false }, - { "id": "mon_dermatik", "fg": 1101, "bg": 1323, "rotates": false }, - { "id": "mon_dermatik_larva", "fg": 1102, "rotates": false }, - { "id": "mon_dilophosaurus", "fg": 1099, "bg": 1323, "rotates": false }, - { "id": "mon_dimorphodon", "fg": 1103, "bg": 1323, "rotates": false }, - { "id": "mon_dog_skeleton", "fg": 1104, "bg": 1323, "rotates": false }, - { "id": "mon_dog_zombie_cop", "fg": 1105, "bg": 1323, "rotates": false }, - { "id": "mon_dog_zombie_rot", "fg": 1106, "bg": [ ], "rotates": false }, - { "id": "mon_dragonfly_giant", "fg": 1108, "bg": 1323, "rotates": false }, - { "id": "mon_dragonfly_small", "fg": 1107, "rotates": false }, - { "id": "mon_duck", "fg": 1109, "bg": 1323, "rotates": false }, - { "id": "mon_eoraptor", "fg": 1089, "bg": 1323, "rotates": false }, - { "id": "mon_fant", "fg": 1110, "rotates": false }, - { "id": "mon_fish_blinky", "fg": 1111, "rotates": false }, - { "id": "mon_fish_bluegill", "fg": 1112, "rotates": false }, - { "id": "mon_fish_bowfin", "fg": 1113, "rotates": false }, - { "id": "mon_fish_bullhead", "fg": 1114, "rotates": false }, - { "id": "mon_fish_carp", "fg": 1115, "rotates": false }, - { "id": "mon_fish_crayfish", "fg": 1116, "rotates": false }, - { "id": "mon_fish_lbass", "fg": 1117, "rotates": false }, - { "id": "mon_fish_lobster", "fg": 1118, "rotates": false }, - { "id": "mon_fish_pbass", "fg": 1119, "rotates": false }, - { "id": "mon_fish_perch", "fg": 1120, "rotates": false }, - { "id": "mon_fish_pickerel", "fg": 1121, "rotates": false }, - { "id": "mon_fish_pike", "fg": 1122, "rotates": false }, - { "id": "mon_fish_salmon", "fg": 1123, "rotates": false }, - { "id": "mon_fish_sbass", "fg": 1124, "rotates": false }, - { "id": "mon_fish_sunfish", "fg": 1125, "rotates": false }, - { "id": "mon_fish_trout", "fg": 1126, "rotates": false }, - { "id": "mon_fish_whitefish", "fg": 1127, "rotates": false }, - { "id": "mon_flaming_eye", "fg": 1128, "bg": 1323, "rotates": false }, - { "id": "mon_flashbang_hack", "fg": 1129, "bg": 1323, "rotates": false }, - { "id": "mon_fly", "fg": 1130, "bg": 1323, "rotates": false }, - { "id": "mon_fox_gray", "fg": 1131, "bg": 1323, "rotates": false }, - { "id": "mon_fox_red", "fg": 1131, "bg": 1323, "rotates": false }, - { "id": "mon_fungal_blossom", "fg": 1133, "bg": 1323, "rotates": false }, - { "id": "mon_fungal_fighter", "fg": 1134, "bg": 1323, "rotates": false }, - { "id": "mon_fungal_hedgerow", "fg": 1135, "bg": 1323, "rotates": false }, - { "id": "mon_fungal_tendril", "fg": 1136, "bg": 1323, "rotates": false }, - { "id": "mon_fungal_wall", "fg": 1137, "bg": 1323, "rotates": false }, - { "id": "mon_fungaloid_dormant", "fg": 1264, "bg": 1323, "rotates": false }, - { "id": "mon_fungaloid_young", "fg": 1132, "bg": 1323, "rotates": false }, - { "id": "mon_gallimimus", "fg": 1138, "bg": 1323, "rotates": false }, - { "id": "mon_gasbomb_hack", "fg": 1139, "bg": 1323, "rotates": false }, - { "id": "mon_gator", "fg": 1140, "rotates": false }, - { "id": "mon_gelatin", "fg": 1141, "bg": 1323, "rotates": false }, - { "id": "mon_generator", "fg": 1142, "bg": 1323, "rotates": false }, - { "id": "mon_giant_cockroach", "fg": 1143, "rotates": false }, - { "id": "mon_giant_cockroach_nymph", "fg": 1144, "rotates": false }, - { "id": "mon_goat", "fg": 1145, "rotates": false }, - { "id": "mon_gozu", "fg": 1146, "bg": 1323, "rotates": false }, - { "id": "mon_graboid", "fg": 1147, "bg": 1323, "rotates": false }, - { "id": "mon_grenade_hack", "fg": 1148, "bg": 1323, "rotates": false }, - { "id": "mon_groundhog", "fg": 1087, "bg": 1323, "rotates": false }, - { "id": "mon_halfworm", "fg": 1149, "bg": 1323, "rotates": false }, - { "id": "mon_hallu_mom", "fg": 1150, "bg": 1323, "rotates": false }, - { "id": "mon_hare", "fg": 1151, "bg": 1323, "rotates": false }, - { "id": "mon_hare_season_winter", "fg": 1152, "bg": 1323, "rotates": false }, - { "id": "mon_headless_dog_thing", "fg": 1153, "bg": 1323, "rotates": false }, - { "id": "mon_hologram", "fg": 1265, "rotates": false }, - { "id": "mon_human_snail", "fg": 1154, "bg": 1323, "rotates": false }, - { "id": "mon_irradiated_wanderer_1", "fg": 1155, "bg": 1323 }, - { "id": "mon_irradiated_wanderer_2", "fg": 1156, "bg": 1323, "rotates": false }, - { "id": "mon_irradiated_wanderer_3", "fg": 1157, "bg": 1323 }, - { "id": "mon_irradiated_wanderer_4", "fg": 1158, "bg": 1323 }, - { "id": "mon_laserturret", "fg": 1159, "bg": 1323, "rotates": false }, - { "id": "mon_lemming", "fg": 1087, "bg": 1323, "rotates": false }, - { "id": "mon_manhack", "fg": 1160, "bg": 1323, "rotates": false }, - { "id": "mon_manhack_acid", "fg": 1161, "rotates": false }, - { "id": "mon_mi_go", "fg": 1163, "bg": 1323, "rotates": false }, - { "id": "mon_mininuke_hack", "fg": 1162, "bg": 1323, "rotates": false }, - { "id": "mon_mink", "fg": 1087, "bg": 1323, "rotates": false }, - { "id": "mon_moose", "fg": 1164, "bg": 1323, "rotates": false }, - { "id": "mon_mosquito", "fg": 1165, "rotates": false }, - { "id": "mon_mosquito_giant", "fg": 1166, "bg": 1323, "rotates": false }, - { "id": "mon_muskrat", "fg": 1180, "rotates": false }, - { "id": "mon_mutant_carp", "fg": 1167, "rotates": false }, - { "id": "mon_mutant_salmon", "fg": 1168, "rotates": false }, - { "id": "mon_one_eye", "fg": 1169, "bg": 1323, "rotates": false }, - { "id": "mon_otter", "fg": 1087, "bg": 1323, "rotates": false }, - { "id": "mon_player_blob", "fg": 1170, "bg": 1323, "rotates": false }, - { "id": "mon_pregnant_giant_cockroach", "fg": 1171, "rotates": false }, - { "id": "mon_prototype_cyborg", "fg": 1298, "bg": 1323, "rotates": false }, - { "id": "mon_rabbit", "fg": 1172, "bg": 1323, "rotates": false }, - { "id": "mon_raccoon", "fg": 1173, "bg": 1323, "rotates": false }, - { "id": "mon_rat_king", "fg": 1176, "bg": 1323, "rotates": false }, - { "id": "mon_rattlesnake", "fg": 1174, "bg": 1323, "rotates": false }, - { "id": "mon_rattlesnake_giant", "fg": 1175, "bg": 1323, "rotates": false }, - { "id": "mon_razorclaw", "fg": 1177, "bg": 1323 }, - { "id": "mon_riotbot", "fg": 1178, "bg": 1323, "rotates": false }, - { "id": "mon_sewer_fish", "fg": 1179, "bg": 1323, "rotates": false }, - { "id": "mon_sewer_rat", "fg": 1180, "bg": 1323, "rotates": false }, - { "id": "mon_sewer_snake", "fg": 1181, "bg": 1323, "rotates": false }, - { "id": "mon_shadow", "fg": 1182, "rotates": false }, - { "id": "mon_shadow_snake", "fg": 1183, "rotates": false }, - { "id": "mon_skeleton", "fg": 1184, "bg": 1323, "rotates": false }, - { "id": "mon_skeleton_electric", "fg": 1301, "bg": 1323, "rotates": false }, - { "id": "mon_skitterbot", "fg": 1185, "bg": 1323, "rotates": false }, - { "id": "mon_sludge_crawler", "fg": 1186, "bg": 1323, "rotates": false }, - { "id": "mon_spider_cellar_giant", "fg": 1187, "bg": 1323, "rotates": false }, - { "id": "mon_spider_cellar_giant_s", "fg": 1188, "bg": 1323, "rotates": false }, - { "id": "mon_spider_jumping_giant", "fg": 1190, "bg": 1323, "rotates": false }, - { "id": "mon_spider_jumping_giant_mega", "fg": 1191, "rotates": false }, - { "id": "mon_spider_jumping_small", "fg": 1189, "bg": 1323, "rotates": false }, - { "id": "mon_spider_trapdoor", "fg": 1192, "bg": 1323, "rotates": false }, - { "id": "mon_spider_trapdoor_giant", "fg": 1193, "bg": 1323, "rotates": false }, - { "id": "mon_spider_trapdoor_giant_mega", "fg": 1194, "rotates": false }, - { "id": "mon_spider_trapdoor_giant_small", "fg": 1195, "rotates": false }, - { "id": "mon_spider_web", "fg": 1196, "bg": 1323, "rotates": false }, - { "id": "mon_spider_web_giant", "fg": 1196, "bg": 1323, "rotates": false }, - { "id": "mon_spider_web_mega", "fg": 1197, "rotates": false }, - { "id": "mon_spider_web_s", "fg": 1198, "bg": 1323, "rotates": false }, - { "id": "mon_spider_widow_giant", "fg": 1200, "bg": 1323, "rotates": false }, - { "id": "mon_spider_widow_giant_s", "fg": 1201, "bg": 1323, "rotates": false }, - { "id": "mon_spider_widow_small", "fg": 1199, "bg": 1323, "rotates": false }, - { "id": "mon_spider_wolf_giant", "fg": 1203, "bg": 1323, "rotates": false }, - { "id": "mon_spider_wolf_small", "fg": 1202, "bg": 1323, "rotates": false }, - { "id": "mon_spore", "fg": 1204, "bg": 1323, "rotates": false }, - { "id": "mon_squirrel", "fg": 1205, "bg": 1323, "rotates": false }, - { "id": "mon_squirrel_red", "fg": 1205, "bg": 1323, "rotates": false }, - { "id": "mon_titanis", "fg": 1206, "bg": 1323, "rotates": false }, - { "id": "mon_turkey", "fg": 1207, "bg": 1323, "rotates": false }, - { "id": "mon_velociraptor", "fg": 1208, "bg": 1323, "rotates": false }, - { "id": "mon_vinebeast", "fg": 1209, "bg": 1323, "rotates": false }, - { "id": "mon_vortex", "fg": 1210, "bg": 1323, "rotates": false }, - { "id": "mon_w11b10", "fg": 1267, "rotates": false }, - { "id": "mon_w11b20b4", "fg": 1268, "rotates": false }, - { "id": "mon_w11h10", "fg": 1270, "rotates": false }, - { "id": "mon_w12b10", "fg": 1269, "rotates": false }, - { "id": "mon_w12n10", "fg": 1271, "rotates": false }, - { "id": "mon_wasp", "fg": 1211, "bg": 1323, "rotates": false }, - { "id": "mon_wasp_larvae", "fg": 1102 }, - { "id": "mon_wasp_mega", "fg": 1212 }, - { "id": "mon_wasp_small", "fg": 1213, "rotates": false }, - { "id": "mon_weasel", "fg": 1087, "bg": 1323, "rotates": false }, - { "id": "mon_wolf", "fg": 1214, "bg": 1323, "rotates": false }, - { "id": "mon_worm", "fg": 1215, "bg": 1323, "rotates": false }, - { "id": "mon_zhark", "fg": 1216 }, - { "id": "mon_zolf", "fg": 1217, "bg": 1323, "rotates": false }, - { "id": "mon_zolf_shady", "fg": 1218, "rotates": false }, - { "id": "mon_zombear", "fg": 1219, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_acidic", "fg": 1220, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_anklebiter", "fg": 1221, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_armored", "fg": 1222, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_bio_op", "fg": 1223, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_biter", "fg": 1224, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_blind", "fg": 1225, "rotates": false }, - { "id": "mon_zombie_brainless", "fg": 1305, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_brute", "fg": 1226, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_brute_grappler", "fg": 1227, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_brute_ninja", "fg": 1228, "bg": 1323 }, - { "id": "mon_zombie_brute_shocker", "fg": 1229, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_child_fungus", "fg": 1272, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_child_scorched", "fg": 1230, "bg": 1323 }, - { "id": "mon_zombie_child_scorched_2", "fg": 1231, "rotates": false }, - { "id": "mon_zombie_cop", "fg": 1232, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_crawler", "fg": 1233, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_creepy", "fg": 1234, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_dancer", "fg": 1235, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_dog", "fg": 1236, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_ears", "fg": 1306, "bg": 1323 }, - { "id": "mon_zombie_electric", "fg": 1237, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_fiend", "fg": 1307, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_fireman", "fg": 1238, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_fungus", "fg": [ 1239, 1308 ], "bg": 1323, "rotates": false }, - { "id": "mon_zombie_gasbag", "fg": 1240, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_grappler", "fg": 1241, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_hazmat", "fg": 1242, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_hollow", "fg": 1243, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_hunter", "fg": 1244, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_jackson", "fg": 1245, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_kevlar_1", "fg": 1312, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_mancroc", "fg": 1246, "bg": 1323 }, - { "id": "mon_zombie_master", "fg": 1247, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_military_pilot", "fg": 1266, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_necro", "fg": 1248, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_predator", "fg": 1249, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_rot", "fg": 1250, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_scorched", "fg": 1251, "bg": 1323 }, - { "id": "mon_zombie_shady", "fg": 1252, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_shady_ghost", "fg": 1253, "rotates": false }, - { "id": "mon_zombie_shriekling", "fg": 1254, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_skull", "fg": 1314, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_smoker", "fg": 1255, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_snotgobbler", "fg": 1256, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_soldier", "fg": 1257, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_soldier_acid_1", "fg": 1315, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_soldier_acid_2", "fg": 1316, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_soldier_blackops_1", "fg": 1317, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_soldier_blackops_2", "fg": 1318, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_spitter", "fg": 1258, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_sproglodyte", "fg": 1259, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_static", "fg": 1319, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_swimmer", "fg": 1260, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_thorny", "fg": 1320, "rotates": false, "bg": 1323 }, - { "id": "mon_zombie_waif", "fg": 1261, "bg": 1323, "rotates": false }, - { "id": "mon_zombie_wretched", "fg": 1321, "bg": 1323, "rotates": false }, - { "id": "mon_zoose", "fg": 1262, "bg": 1323, "rotates": false }, - { "id": "mon_zougar", "fg": 1263, "bg": 1323, "rotates": false }, - { "id": "mon_triffid", "fg": 1302, "bg": 1323 }, - { "id": "mon_triffid_sprig", "fg": 1303, "bg": 1323 }, - { "id": "mon_triffid_young", "fg": 1304, "bg": 1323 }, + { "id": "debug_mon", "fg": 1072 }, + { "id": "mon_EMP_hack", "fg": 1145 }, + { "id": "mon_albino_penguin", "fg": 1073, "bg": 1338, "rotates": false }, + { "id": "mon_alpha_razorclaw", "fg": 1074, "bg": 1338 }, + { "id": "mon_ant", "fg": 1075, "bg": 1338, "rotates": false }, + { "id": "mon_ant_acid", "fg": 1288, "bg": 1338, "rotates": false }, + { "id": "mon_ant_acid_larva", "fg": 1287, "bg": 1338, "rotates": false }, + { "id": "mon_ant_acid_queen", "fg": 1289, "bg": 1338, "rotates": false }, + { "id": "mon_ant_acid_soldier", "fg": 1286, "rotates": false }, + { "id": "mon_ant_fungus", "fg": 1076, "bg": 1338, "rotates": false }, + { "id": "mon_ant_larva", "fg": 1077, "bg": 1338, "rotates": false }, + { "id": "mon_ant_queen", "fg": 1078, "bg": 1338, "rotates": false }, + { "id": "mon_ant_soldier", "fg": 1079, "bg": 1338, "rotates": false }, + { "id": "mon_bat", "fg": 1080, "bg": 1338, "rotates": false }, + { "id": "mon_bear", "fg": 1081, "bg": 1338, "rotates": false }, + { "id": "mon_bear_cub", "fg": 1082, "bg": 1338, "rotates": false }, + { "id": "mon_bear_smoky", "fg": 1083, "bg": 1338, "rotates": false }, + { "id": "mon_bee", "fg": 1084, "bg": 1338, "rotates": false }, + { "id": "mon_bee_mega", "fg": 1086, "rotates": false }, + { "id": "mon_bee_small", "fg": 1087, "rotates": false }, + { "id": "mon_beekeeper", "fg": 1085, "bg": 1338, "rotates": false }, + { "id": "mon_biollante", "fg": 1088, "bg": 1338, "rotates": false }, + { "id": "mon_black_rat", "fg": 1193, "rotates": false }, + { "id": "mon_blank", "fg": 1089, "bg": 1338, "rotates": false }, + { "id": "mon_blob", "fg": 1090, "bg": 1338, "rotates": false }, + { "id": "mon_blob_large", "fg": 1091, "rotates": false }, + { "id": "mon_blob_small", "fg": 1092, "rotates": false }, + { "id": "mon_bobcat", "fg": 1093, "bg": 1338, "rotates": false }, + { "id": "mon_boomer", "fg": 1094, "bg": 1338, "rotates": false }, + { "id": "mon_boomer_fungus", "fg": 1095, "bg": 1338, "rotates": false }, + { "id": "mon_breather", "fg": 1096, "rotates": false }, + { "id": "mon_breather_hub", "fg": 1097, "bg": 1338, "rotates": false }, + { "id": "mon_c4_hack", "fg": 1098, "bg": 1338, "rotates": false }, + { "id": "mon_cat", "fg": 1093, "bg": 1338, "rotates": false }, + { "id": "mon_centipede", "fg": 1099, "rotates": false }, + { "id": "mon_centipede_giant", "fg": 1100, "bg": 1338, "rotates": false }, + { "id": "mon_charred_nightmare", "fg": 1101, "rotates": false }, + { "id": "mon_chicken", "fg": 1102, "bg": 1338, "rotates": false }, + { "id": "mon_chipmunk", "fg": 1103, "bg": 1338, "rotates": false }, + { "id": "mon_chud", "fg": 1104, "bg": 1338, "rotates": false }, + { "id": "mon_compsognathus", "fg": 1105, "bg": 1338, "rotates": false }, + { "id": "mon_cougar", "fg": 1106, "bg": 1338, "rotates": false }, + { "id": "mon_coyote", "fg": 1107, "bg": 1338, "rotates": false }, + { "id": "mon_coyote_wolf", "fg": 1108, "bg": 1338, "rotates": false }, + { "id": "mon_crawler", "fg": 1109, "bg": 1338, "rotates": false }, + { "id": "mon_creeper_hub", "fg": 1110, "bg": 1338, "rotates": false }, + { "id": "mon_creeper_vine", "fg": 1111, "bg": 1338, "rotates": false }, + { "id": "mon_crow", "fg": 1112, "bg": 1338, "rotates": false }, + { "id": "mon_darkman", "fg": 1113, "bg": 1338, "rotates": false }, + { "id": "mon_deer", "fg": 1114, "bg": 1338, "rotates": false }, + { "id": "mon_deer_mouse", "fg": 1193, "rotates": false }, + { "id": "mon_deinonychus", "fg": 1115, "bg": 1338, "rotates": false }, + { "id": "mon_dementia", "fg": 1116, "bg": 1338, "rotates": false }, + { "id": "mon_dermatik", "fg": 1117, "bg": 1338, "rotates": false }, + { "id": "mon_dermatik_larva", "fg": 1118, "rotates": false }, + { "id": "mon_dilophosaurus", "fg": 1115, "bg": 1338, "rotates": false }, + { "id": "mon_dimorphodon", "fg": 1119, "bg": 1338, "rotates": false }, + { "id": "mon_dog_skeleton", "fg": 1120, "bg": 1338, "rotates": false }, + { "id": "mon_dog_zombie_cop", "fg": 1121, "bg": 1338, "rotates": false }, + { "id": "mon_dog_zombie_rot", "fg": 1122, "bg": [ ], "rotates": false }, + { "id": "mon_dragonfly_giant", "fg": 1124, "bg": 1338, "rotates": false }, + { "id": "mon_dragonfly_small", "fg": 1123, "rotates": false }, + { "id": "mon_duck", "fg": 1125, "bg": 1338, "rotates": false }, + { "id": "mon_eoraptor", "fg": 1105, "bg": 1338, "rotates": false }, + { "id": "mon_fant", "fg": 1126, "rotates": false }, + { "id": "mon_fish_blinky", "fg": 1127, "rotates": false }, + { "id": "mon_fish_bluegill", "fg": 1128, "rotates": false }, + { "id": "mon_fish_bowfin", "fg": 1129, "rotates": false }, + { "id": "mon_fish_bullhead", "fg": 1130, "rotates": false }, + { "id": "mon_fish_carp", "fg": 1131, "rotates": false }, + { "id": "mon_fish_crayfish", "fg": 1132, "rotates": false }, + { "id": "mon_fish_lbass", "fg": 1133, "rotates": false }, + { "id": "mon_fish_lobster", "fg": 1134, "rotates": false }, + { "id": "mon_fish_pbass", "fg": 1135, "rotates": false }, + { "id": "mon_fish_perch", "fg": 1136, "rotates": false }, + { "id": "mon_fish_pickerel", "fg": 1137, "rotates": false }, + { "id": "mon_fish_pike", "fg": 1138, "rotates": false }, + { "id": "mon_fish_salmon", "fg": 1139, "rotates": false }, + { "id": "mon_fish_sbass", "fg": 1140, "rotates": false }, + { "id": "mon_fish_sunfish", "fg": 1141, "rotates": false }, + { "id": "mon_fish_trout", "fg": 1142, "rotates": false }, + { "id": "mon_fish_whitefish", "fg": 1143, "rotates": false }, + { "id": "mon_flaming_eye", "fg": 1144, "bg": 1338, "rotates": false }, + { "id": "mon_flashbang_hack", "fg": 1145, "bg": 1338, "rotates": false }, + { "id": "mon_fly", "fg": 1146, "bg": 1338, "rotates": false }, + { "id": "mon_fox_gray", "fg": 1147, "bg": 1338, "rotates": false }, + { "id": "mon_fox_red", "fg": 1147, "bg": 1338, "rotates": false }, + { "id": "mon_fungal_blossom", "fg": 1148, "bg": 1338, "rotates": false }, + { "id": "mon_fungal_fighter", "fg": 1149, "bg": 1338, "rotates": false }, + { "id": "mon_fungal_hedgerow", "fg": 1150, "bg": 1338, "rotates": false }, + { "id": "mon_fungal_tendril", "fg": 1151, "bg": 1338, "rotates": false }, + { "id": "mon_fungal_wall", "fg": 1152, "bg": 1338, "rotates": false }, + { "id": "mon_fungaloid_dormant", "fg": 1277, "bg": 1338, "rotates": false }, + { "id": "mon_gallimimus", "fg": 1153, "bg": 1338, "rotates": false }, + { "id": "mon_gasbomb_hack", "fg": 1154, "bg": 1338, "rotates": false }, + { "id": "mon_gator", "fg": 1155, "rotates": false }, + { "id": "mon_gelatin", "fg": 1156, "bg": 1338, "rotates": false }, + { "id": "mon_generator", "fg": 1157, "bg": 1338, "rotates": false }, + { "id": "mon_giant_cockroach", "fg": 1158, "rotates": false }, + { "id": "mon_giant_cockroach_nymph", "fg": 1159, "rotates": false }, + { "id": "mon_goat", "fg": 1160, "rotates": false }, + { "id": "mon_gozu", "fg": 1161, "bg": 1338, "rotates": false }, + { "id": "mon_graboid", "fg": 1162, "bg": 1338, "rotates": false }, + { "id": "mon_grenade_hack", "fg": 1163, "bg": 1338, "rotates": false }, + { "id": "mon_groundhog", "fg": 1103, "bg": 1338, "rotates": false }, + { "id": "mon_halfworm", "fg": 1164, "bg": 1338, "rotates": false }, + { "id": "mon_hallu_mom", "fg": 1165, "bg": 1338, "rotates": false }, + { "id": "mon_hare", "fg": 1166, "bg": 1338, "rotates": false }, + { "id": "mon_hare_season_winter", "fg": 1167, "bg": 1338, "rotates": false }, + { "id": "mon_headless_dog_thing", "fg": 1168, "bg": 1338, "rotates": false }, + { "id": "mon_hologram", "fg": 1278, "rotates": false }, + { "id": "mon_human_snail", "fg": 1169, "bg": 1338, "rotates": false }, + { "id": "mon_irradiated_wanderer_1", "fg": 1170, "bg": 1338 }, + { "id": "mon_irradiated_wanderer_2", "fg": 1171, "bg": 1338, "rotates": false }, + { "id": "mon_irradiated_wanderer_3", "fg": 1172, "bg": 1338 }, + { "id": "mon_irradiated_wanderer_4", "fg": 1173, "bg": 1338 }, + { "id": "mon_laserturret", "fg": 1174, "bg": 1338, "rotates": false }, + { "id": "mon_lemming", "fg": 1103, "bg": 1338, "rotates": false }, + { "id": "mon_manhack", "fg": 1175, "bg": 1338, "rotates": false }, + { "id": "mon_manhack_acid", "fg": 1176, "rotates": false }, + { "id": "mon_mi_go", "fg": 1178, "bg": 1338, "rotates": false }, + { "id": "mon_mininuke_hack", "fg": 1177, "bg": 1338, "rotates": false }, + { "id": "mon_mink", "fg": 1103, "bg": 1338, "rotates": false }, + { "id": "mon_moose", "fg": 1179, "bg": 1338, "rotates": false }, + { "id": "mon_mosquito_small", "fg": 1309, "bg": 1338, "rotates": false }, + { "id": "mon_muskrat", "fg": 1193, "rotates": false }, + { "id": "mon_mutant_carp", "fg": 1180, "rotates": false }, + { "id": "mon_mutant_salmon", "fg": 1181, "rotates": false }, + { "id": "mon_one_eye", "fg": 1182, "bg": 1338, "rotates": false }, + { "id": "mon_otter", "fg": 1103, "bg": 1338, "rotates": false }, + { "id": "mon_player_blob", "fg": 1183, "bg": 1338, "rotates": false }, + { "id": "mon_pregnant_giant_cockroach", "fg": 1184, "rotates": false }, + { "id": "mon_prototype_cyborg", "fg": 1313, "bg": 1338, "rotates": false }, + { "id": "mon_rabbit", "fg": 1185, "bg": 1338, "rotates": false }, + { "id": "mon_raccoon", "fg": 1186, "bg": 1338, "rotates": false }, + { "id": "mon_rat_king", "fg": 1189, "bg": 1338, "rotates": false }, + { "id": "mon_rattlesnake", "fg": 1187, "bg": 1338, "rotates": false }, + { "id": "mon_rattlesnake_giant", "fg": 1188, "bg": 1338, "rotates": false }, + { "id": "mon_razorclaw", "fg": 1190, "bg": 1338 }, + { "id": "mon_riotbot", "fg": 1191, "bg": 1338, "rotates": false }, + { "id": "mon_sewer_fish", "fg": 1192, "bg": 1338, "rotates": false }, + { "id": "mon_sewer_rat", "fg": 1193, "bg": 1338, "rotates": false }, + { "id": "mon_sewer_snake", "fg": 1194, "bg": 1338, "rotates": false }, + { "id": "mon_shadow", "fg": 1195, "rotates": false }, + { "id": "mon_shadow_snake", "fg": 1196, "rotates": false }, + { "id": "mon_skeleton", "fg": 1197, "bg": 1338, "rotates": false }, + { "id": "mon_skeleton_electric", "fg": 1316, "bg": 1338, "rotates": false }, + { "id": "mon_skitterbot", "fg": 1198, "bg": 1338, "rotates": false }, + { "id": "mon_sludge_crawler", "fg": 1199, "bg": 1338, "rotates": false }, + { "id": "mon_spider_cellar_giant", "fg": 1200, "bg": 1338, "rotates": false }, + { "id": "mon_spider_cellar_giant_s", "fg": 1201, "bg": 1338, "rotates": false }, + { "id": "mon_spider_jumping_giant", "fg": 1203, "bg": 1338, "rotates": false }, + { "id": "mon_spider_jumping_giant_mega", "fg": 1204, "rotates": false }, + { "id": "mon_spider_jumping_small", "fg": 1202, "bg": 1338, "rotates": false }, + { "id": "mon_spider_trapdoor", "fg": 1205, "bg": 1338, "rotates": false }, + { "id": "mon_spider_trapdoor_giant", "fg": 1206, "bg": 1338, "rotates": false }, + { "id": "mon_spider_trapdoor_giant_mega", "fg": 1207, "rotates": false }, + { "id": "mon_spider_trapdoor_giant_small", "fg": 1208, "rotates": false }, + { "id": "mon_spider_web", "fg": 1209, "bg": 1338, "rotates": false }, + { "id": "mon_spider_web_giant", "fg": 1209, "bg": 1338, "rotates": false }, + { "id": "mon_spider_web_mega", "fg": 1210, "rotates": false }, + { "id": "mon_spider_web_s", "fg": 1211, "bg": 1338, "rotates": false }, + { "id": "mon_spider_widow_giant", "fg": 1213, "bg": 1338, "rotates": false }, + { "id": "mon_spider_widow_giant_s", "fg": 1214, "bg": 1338, "rotates": false }, + { "id": "mon_spider_widow_small", "fg": 1212, "bg": 1338, "rotates": false }, + { "id": "mon_spider_wolf_giant", "fg": 1216, "bg": 1338, "rotates": false }, + { "id": "mon_spider_wolf_small", "fg": 1215, "bg": 1338, "rotates": false }, + { "id": "mon_spore", "fg": 1217, "bg": 1338, "rotates": false }, + { "id": "mon_squirrel", "fg": 1218, "bg": 1338, "rotates": false }, + { "id": "mon_squirrel_red", "fg": 1218, "bg": 1338, "rotates": false }, + { "id": "mon_titanis", "fg": 1219, "bg": 1338, "rotates": false }, + { "id": "mon_turkey", "fg": 1220, "bg": 1338, "rotates": false }, + { "id": "mon_velociraptor", "fg": 1221, "bg": 1338, "rotates": false }, + { "id": "mon_vinebeast", "fg": 1222, "bg": 1338, "rotates": false }, + { "id": "mon_vortex", "fg": 1223, "bg": 1338, "rotates": false }, + { "id": "mon_w11b10", "fg": 1280, "rotates": false }, + { "id": "mon_w11b20b4", "fg": 1281, "rotates": false }, + { "id": "mon_w11h10", "fg": 1283, "rotates": false }, + { "id": "mon_w12b10", "fg": 1282, "rotates": false }, + { "id": "mon_w12n10", "fg": 1284, "rotates": false }, + { "id": "mon_wasp", "fg": 1224, "bg": 1338, "rotates": false }, + { "id": "mon_wasp_larvae", "fg": 1118 }, + { "id": "mon_wasp_mega", "fg": 1225 }, + { "id": "mon_wasp_small", "fg": 1226, "rotates": false }, + { "id": "mon_weasel", "fg": 1103, "bg": 1338, "rotates": false }, + { "id": "mon_wolf", "fg": 1227, "bg": 1338, "rotates": false }, + { "id": "mon_worm", "fg": 1228, "bg": 1338, "rotates": false }, + { "id": "mon_zhark", "fg": 1229 }, + { "id": "mon_zolf", "fg": 1230, "bg": 1338, "rotates": false }, + { "id": "mon_zolf_shady", "fg": 1231, "rotates": false }, + { "id": "mon_zombear", "fg": 1232, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_acidic", "fg": 1233, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_anklebiter", "fg": 1234, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_armored", "fg": 1235, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_bio_op", "fg": 1236, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_biter", "fg": 1237, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_blind", "fg": 1238, "rotates": false }, + { "id": "mon_zombie_brainless", "fg": 1320, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_brute", "fg": 1239, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_brute_grappler", "fg": 1240, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_brute_ninja", "fg": 1241, "bg": 1338 }, + { "id": "mon_zombie_brute_shocker", "fg": 1242, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_child_fungus", "fg": 1285, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_child_scorched", "fg": 1243, "bg": 1338 }, + { "id": "mon_zombie_child_scorched_2", "fg": 1244, "rotates": false }, + { "id": "mon_zombie_cop", "fg": 1245, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_crawler", "fg": 1246, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_creepy", "fg": 1247, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_dancer", "fg": 1248, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_dog", "fg": 1249, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_ears", "fg": 1321, "bg": 1338 }, + { "id": "mon_zombie_electric", "fg": 1250, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_fiend", "fg": 1322, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_fireman", "fg": 1251, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_fungus", "fg": [ 1252, 1323 ], "bg": 1338, "rotates": false }, + { "id": "mon_zombie_gasbag", "fg": 1253, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_grappler", "fg": 1254, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_hazmat", "fg": 1255, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_hollow", "fg": 1256, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_hunter", "fg": 1257, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_jackson", "fg": 1258, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_kevlar_1", "fg": 1327, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_mancroc", "fg": 1259, "bg": 1338 }, + { "id": "mon_zombie_master", "fg": 1260, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_military_pilot", "fg": 1279, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_necro", "fg": 1261, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_predator", "fg": 1262, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_rot", "fg": 1263, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_scorched", "fg": 1264, "bg": 1338 }, + { "id": "mon_zombie_shady", "fg": 1265, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_shady_ghost", "fg": 1266, "rotates": false }, + { "id": "mon_zombie_shriekling", "fg": 1267, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_skull", "fg": 1329, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_smoker", "fg": 1268, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_snotgobbler", "fg": 1269, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_soldier", "fg": 1270, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_soldier_acid_1", "fg": 1330, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_soldier_acid_2", "fg": 1331, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_soldier_blackops_1", "fg": 1332, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_soldier_blackops_2", "fg": 1333, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_spitter", "fg": 1271, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_sproglodyte", "fg": 1272, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_static", "fg": 1334, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_swimmer", "fg": 1273, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_thorny", "fg": 1335, "rotates": false, "bg": 1338 }, + { "id": "mon_zombie_waif", "fg": 1274, "bg": 1338, "rotates": false }, + { "id": "mon_zombie_wretched", "fg": 1336, "bg": 1338, "rotates": false }, + { "id": "mon_zoose", "fg": 1275, "bg": 1338, "rotates": false }, + { "id": "mon_zougar", "fg": 1276, "bg": 1338, "rotates": false }, + { "id": "mon_triffid", "fg": 1317, "bg": 1338 }, + { "id": "mon_triffid_sprig", "fg": 1318, "bg": 1338 }, + { "id": "mon_triffid_young", "fg": 1319, "bg": 1338 }, { "id": "mon_broken_cyborg", "fg": [ - { "weight": 1, "sprite": 1333 }, - { "weight": 1, "sprite": 1334 }, - { "weight": 1, "sprite": 1335 }, - { "weight": 1, "sprite": 1336 }, - { "weight": 1, "sprite": 1337 }, - { "weight": 1, "sprite": 1338 } + { "weight": 1, "sprite": 1348 }, + { "weight": 1, "sprite": 1349 }, + { "weight": 1, "sprite": 1350 }, + { "weight": 1, "sprite": 1351 }, + { "weight": 1, "sprite": 1352 }, + { "weight": 1, "sprite": 1353 } ], - "bg": 1323, + "bg": 1338, "rotates": false }, { "id": [ "mon_dog", "mon_dog_thing" ], - "fg": [ { "weight": 10, "sprite": 1339 }, { "weight": 1, "sprite": 1340 } ], + "fg": [ { "weight": 10, "sprite": 1354 }, { "weight": 1, "sprite": 1355 } ], "rotates": false }, { "id": "mon_feral_human_crowbar", "fg": [ - { "weight": 1, "sprite": 1351 }, - { "weight": 1, "sprite": 1352 }, - { "weight": 1, "sprite": 1353 }, - { "weight": 1, "sprite": 1354 }, - { "weight": 1, "sprite": 1355 }, - { "weight": 1, "sprite": 1356 }, - { "weight": 1, "sprite": 1357 }, - { "weight": 1, "sprite": 1358 } + { "weight": 1, "sprite": 1366 }, + { "weight": 1, "sprite": 1367 }, + { "weight": 1, "sprite": 1368 }, + { "weight": 1, "sprite": 1369 }, + { "weight": 1, "sprite": 1370 }, + { "weight": 1, "sprite": 1371 }, + { "weight": 1, "sprite": 1372 }, + { "weight": 1, "sprite": 1373 } ], - "bg": 1323 + "bg": 1338 }, { "id": "mon_feral_human_pipe", "fg": [ + { "weight": 1, "sprite": 1374 }, + { "weight": 1, "sprite": 1375 }, + { "weight": 1, "sprite": 1376 }, + { "weight": 1, "sprite": 1377 }, + { "weight": 1, "sprite": 1378 }, + { "weight": 1, "sprite": 1379 }, + { "weight": 1, "sprite": 1380 }, + { "weight": 1, "sprite": 1381 } + ], + "bg": 1338 + }, + { + "id": "mon_feral_human_axe", + "fg": [ + { "weight": 1, "sprite": 1358 }, { "weight": 1, "sprite": 1359 }, { "weight": 1, "sprite": 1360 }, { "weight": 1, "sprite": 1361 }, { "weight": 1, "sprite": 1362 }, { "weight": 1, "sprite": 1363 }, { "weight": 1, "sprite": 1364 }, - { "weight": 1, "sprite": 1365 }, - { "weight": 1, "sprite": 1366 } - ], - "bg": 1323 - }, - { - "id": "mon_feral_human_axe", - "fg": [ - { "weight": 1, "sprite": 1343 }, - { "weight": 1, "sprite": 1344 }, - { "weight": 1, "sprite": 1345 }, - { "weight": 1, "sprite": 1346 }, - { "weight": 1, "sprite": 1347 }, - { "weight": 1, "sprite": 1348 }, - { "weight": 1, "sprite": 1349 }, - { "weight": 1, "sprite": 1350 } + { "weight": 1, "sprite": 1365 } ], - "bg": 1323 + "bg": 1338 }, { "id": "mon_feral_labsecurity_9mm", "fg": [ - { "weight": 1, "sprite": 1367 }, - { "weight": 1, "sprite": 1368 }, - { "weight": 1, "sprite": 1369 }, - { "weight": 1, "sprite": 1370 }, - { "weight": 1, "sprite": 1371 }, - { "weight": 1, "sprite": 1372 }, - { "weight": 1, "sprite": 1373 }, - { "weight": 1, "sprite": 1374 } + { "weight": 1, "sprite": 1382 }, + { "weight": 1, "sprite": 1383 }, + { "weight": 1, "sprite": 1384 }, + { "weight": 1, "sprite": 1385 }, + { "weight": 1, "sprite": 1386 }, + { "weight": 1, "sprite": 1387 }, + { "weight": 1, "sprite": 1388 }, + { "weight": 1, "sprite": 1389 } ], - "bg": 1323 + "bg": 1338 }, { "id": "mon_feral_labsecurity_flashlight", "fg": [ - { "weight": 1, "sprite": 1375 }, - { "weight": 1, "sprite": 1376 }, - { "weight": 1, "sprite": 1377 }, - { "weight": 1, "sprite": 1378 }, - { "weight": 1, "sprite": 1379 } + { "weight": 1, "sprite": 1390 }, + { "weight": 1, "sprite": 1391 }, + { "weight": 1, "sprite": 1392 }, + { "weight": 1, "sprite": 1393 }, + { "weight": 1, "sprite": 1394 } ], - "bg": 1323 + "bg": 1338 }, { "id": "mon_feral_scientist_scalpel", "fg": [ - { "weight": 1, "sprite": 1380 }, - { "weight": 1, "sprite": 1381 }, - { "weight": 1, "sprite": 1382 }, - { "weight": 1, "sprite": 1383 }, - { "weight": 1, "sprite": 1384 } + { "weight": 1, "sprite": 1395 }, + { "weight": 1, "sprite": 1396 }, + { "weight": 1, "sprite": 1397 }, + { "weight": 1, "sprite": 1398 }, + { "weight": 1, "sprite": 1399 } ], - "bg": 1323 + "bg": 1338 }, { "id": "mon_fungaloid", - "fg": [ { "weight": 100, "sprite": 1392 }, { "weight": 1, "sprite": 1393 } ], + "fg": [ { "weight": 100, "sprite": 1410 }, { "weight": 1, "sprite": 1411 } ], "rotates": false }, - { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 1405, "rotates": false }, + { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 1427, "rotates": false }, { "id": [ "corpse_mon_zombie_crawler_pupa", "corpse_mon_zombie_crawler_pupa_decoy" ], - "fg": 1404, + "fg": 1426, "rotates": false }, { "id": "mon_zombie_giant_heart", "animated": true, "fg": [ - { "weight": 15, "sprite": 1406 }, - { "weight": 15, "sprite": 1407 }, - { "weight": 15, "sprite": 1406 }, - { "weight": 15, "sprite": 1408 } + { "weight": 15, "sprite": 1428 }, + { "weight": 15, "sprite": 1429 }, + { "weight": 15, "sprite": 1428 }, + { "weight": 15, "sprite": 1430 } ], "rotates": false, - "bg": 1323 + "bg": 1338 }, - { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 1413, "rotates": false }, - { "id": [ "corpse_mon_zombie_pupa", "corpse_mon_zombie_pupa_decoy" ], "fg": 1412, "rotates": false }, + { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 1435, "rotates": false }, + { "id": [ "corpse_mon_zombie_pupa", "corpse_mon_zombie_pupa_decoy" ], "fg": 1434, "rotates": false }, { "id": "mon_twisted_body", - "fg": [ { "weight": 1, "sprite": 1420 }, { "weight": 1, "sprite": 1421 }, { "weight": 1, "sprite": 1422 } ], - "bg": 1323, + "fg": [ { "weight": 1, "sprite": 1444 }, { "weight": 1, "sprite": 1445 }, { "weight": 1, "sprite": 1446 } ], + "bg": 1338, "rotates": false }, { "id": "mon_zombie", "fg": [ - { "weight": 1, "sprite": 1433 }, - { "weight": 1, "sprite": 1444 }, + { "weight": 1, "sprite": 1457 }, + { "weight": 1, "sprite": 1468 }, + { "weight": 1, "sprite": 1475 }, + { "weight": 1, "sprite": 1476 }, + { "weight": 1, "sprite": 1477 }, + { "weight": 1, "sprite": 1478 }, + { "weight": 1, "sprite": 1479 }, + { "weight": 1, "sprite": 1480 }, + { "weight": 1, "sprite": 1481 }, + { "weight": 1, "sprite": 1447 }, + { "weight": 1, "sprite": 1448 }, + { "weight": 1, "sprite": 1449 }, + { "weight": 1, "sprite": 1450 }, { "weight": 1, "sprite": 1451 }, { "weight": 1, "sprite": 1452 }, { "weight": 1, "sprite": 1453 }, { "weight": 1, "sprite": 1454 }, { "weight": 1, "sprite": 1455 }, { "weight": 1, "sprite": 1456 }, - { "weight": 1, "sprite": 1457 }, - { "weight": 1, "sprite": 1423 }, - { "weight": 1, "sprite": 1424 }, - { "weight": 1, "sprite": 1425 }, - { "weight": 1, "sprite": 1426 }, - { "weight": 1, "sprite": 1427 }, - { "weight": 1, "sprite": 1428 }, - { "weight": 1, "sprite": 1429 }, - { "weight": 1, "sprite": 1430 }, - { "weight": 1, "sprite": 1431 }, - { "weight": 1, "sprite": 1432 }, - { "weight": 1, "sprite": 1434 }, - { "weight": 1, "sprite": 1435 }, - { "weight": 1, "sprite": 1436 }, - { "weight": 1, "sprite": 1437 }, - { "weight": 1, "sprite": 1438 }, - { "weight": 1, "sprite": 1439 }, - { "weight": 1, "sprite": 1440 }, - { "weight": 1, "sprite": 1441 }, - { "weight": 1, "sprite": 1442 }, - { "weight": 1, "sprite": 1443 }, - { "weight": 1, "sprite": 1445 }, - { "weight": 1, "sprite": 1446 }, - { "weight": 1, "sprite": 1447 }, - { "weight": 1, "sprite": 1448 }, - { "weight": 1, "sprite": 1449 }, - { "weight": 1, "sprite": 1450 } - ], - "bg": 1323, - "rotates": false - }, - { - "id": "mon_zombie_child", - "fg": [ { "weight": 1, "sprite": 1458 }, { "weight": 1, "sprite": 1459 }, { "weight": 1, "sprite": 1460 }, - { "weight": 1, "sprite": 1469 }, - { "weight": 1, "sprite": 1470 }, - { "weight": 1, "sprite": 1471 }, - { "weight": 1, "sprite": 1472 }, - { "weight": 1, "sprite": 1473 }, - { "weight": 1, "sprite": 1474 }, { "weight": 1, "sprite": 1461 }, { "weight": 1, "sprite": 1462 }, { "weight": 1, "sprite": 1463 }, @@ -2145,383 +2128,436 @@ { "weight": 1, "sprite": 1465 }, { "weight": 1, "sprite": 1466 }, { "weight": 1, "sprite": 1467 }, - { "weight": 1, "sprite": 1468 } + { "weight": 1, "sprite": 1469 }, + { "weight": 1, "sprite": 1470 }, + { "weight": 1, "sprite": 1471 }, + { "weight": 1, "sprite": 1472 }, + { "weight": 1, "sprite": 1473 }, + { "weight": 1, "sprite": 1474 } ], - "bg": 1323, + "bg": 1338, "rotates": false }, { - "id": "mon_zombie_fat", + "id": "mon_zombie_child", "fg": [ - { "weight": 1, "sprite": 1475 }, - { "weight": 1, "sprite": 1476 }, - { "weight": 1, "sprite": 1477 }, - { "weight": 1, "sprite": 1485 }, - { "weight": 1, "sprite": 1486 }, - { "weight": 1, "sprite": 1487 }, - { "weight": 1, "sprite": 1488 }, - { "weight": 1, "sprite": 1489 }, - { "weight": 1, "sprite": 1490 }, - { "weight": 1, "sprite": 1478 }, - { "weight": 1, "sprite": 1479 }, - { "weight": 1, "sprite": 1480 }, - { "weight": 1, "sprite": 1481 }, { "weight": 1, "sprite": 1482 }, { "weight": 1, "sprite": 1483 }, - { "weight": 1, "sprite": 1484 } - ], - "bg": 1323, - "rotates": false - }, - { - "id": "mon_zombie_grabber", - "fg": [ - { "weight": 1, "sprite": 1491 }, - { "weight": 1, "sprite": 1492 }, + { "weight": 1, "sprite": 1484 }, { "weight": 1, "sprite": 1493 }, { "weight": 1, "sprite": 1494 }, { "weight": 1, "sprite": 1495 }, { "weight": 1, "sprite": 1496 }, { "weight": 1, "sprite": 1497 }, { "weight": 1, "sprite": 1498 }, - { "weight": 1, "sprite": 1499 } + { "weight": 1, "sprite": 1485 }, + { "weight": 1, "sprite": 1486 }, + { "weight": 1, "sprite": 1487 }, + { "weight": 1, "sprite": 1488 }, + { "weight": 1, "sprite": 1489 }, + { "weight": 1, "sprite": 1490 }, + { "weight": 1, "sprite": 1491 }, + { "weight": 1, "sprite": 1492 } ], - "bg": 1323, + "bg": 1338, "rotates": false }, { - "id": "mon_zombie_labsecurity", + "id": "mon_zombie_fat", "fg": [ + { "weight": 1, "sprite": 1499 }, { "weight": 1, "sprite": 1500 }, { "weight": 1, "sprite": 1501 }, + { "weight": 1, "sprite": 1509 }, + { "weight": 1, "sprite": 1510 }, + { "weight": 1, "sprite": 1511 }, + { "weight": 1, "sprite": 1512 }, + { "weight": 1, "sprite": 1513 }, + { "weight": 1, "sprite": 1514 }, { "weight": 1, "sprite": 1502 }, { "weight": 1, "sprite": 1503 }, { "weight": 1, "sprite": 1504 }, - { "weight": 1, "sprite": 1505 } + { "weight": 1, "sprite": 1505 }, + { "weight": 1, "sprite": 1506 }, + { "weight": 1, "sprite": 1507 }, + { "weight": 1, "sprite": 1508 } + ], + "bg": 1338, + "rotates": false + }, + { + "id": "mon_zombie_grabber", + "fg": [ + { "weight": 1, "sprite": 1515 }, + { "weight": 1, "sprite": 1516 }, + { "weight": 1, "sprite": 1517 }, + { "weight": 1, "sprite": 1518 }, + { "weight": 1, "sprite": 1519 }, + { "weight": 1, "sprite": 1520 }, + { "weight": 1, "sprite": 1521 }, + { "weight": 1, "sprite": 1522 }, + { "weight": 1, "sprite": 1523 } + ], + "bg": 1338, + "rotates": false + }, + { + "id": "mon_zombie_labsecurity", + "fg": [ + { "weight": 1, "sprite": 1524 }, + { "weight": 1, "sprite": 1525 }, + { "weight": 1, "sprite": 1526 }, + { "weight": 1, "sprite": 1527 }, + { "weight": 1, "sprite": 1528 }, + { "weight": 1, "sprite": 1529 } ], - "bg": 1323, + "bg": 1338, "rotates": false }, { "id": "mon_zombie_prisoner", "fg": [ - { "weight": 1, "sprite": 1506 }, - { "weight": 1, "sprite": 1507 }, - { "weight": 1, "sprite": 1508 }, - { "weight": 1, "sprite": 1509 }, - { "weight": 1, "sprite": 1510 }, - { "weight": 1, "sprite": 1511 } + { "weight": 1, "sprite": 1530 }, + { "weight": 1, "sprite": 1531 }, + { "weight": 1, "sprite": 1532 }, + { "weight": 1, "sprite": 1533 }, + { "weight": 1, "sprite": 1534 }, + { "weight": 1, "sprite": 1535 } ], - "bg": 1323, + "bg": 1338, "rotates": false }, { "id": "mon_zombie_runner", "fg": [ - { "weight": 1, "sprite": 1512 }, - { "weight": 1, "sprite": 1513 }, - { "weight": 1, "sprite": 1514 }, - { "weight": 1, "sprite": 1515 }, - { "weight": 1, "sprite": 1516 } + { "weight": 1, "sprite": 1536 }, + { "weight": 1, "sprite": 1537 }, + { "weight": 1, "sprite": 1538 }, + { "weight": 1, "sprite": 1539 }, + { "weight": 1, "sprite": 1540 } ], - "bg": 1323, + "bg": 1338, "rotates": false }, { "id": "mon_zombie_scientist", "fg": [ - { "weight": 1, "sprite": 1517 }, - { "weight": 1, "sprite": 1520 }, - { "weight": 1, "sprite": 1521 }, - { "weight": 1, "sprite": 1522 }, - { "weight": 1, "sprite": 1523 }, - { "weight": 1, "sprite": 1524 }, - { "weight": 1, "sprite": 1525 }, - { "weight": 1, "sprite": 1526 }, - { "weight": 1, "sprite": 1527 }, - { "weight": 1, "sprite": 1518 }, - { "weight": 1, "sprite": 1519 } + { "weight": 1, "sprite": 1541 }, + { "weight": 1, "sprite": 1544 }, + { "weight": 1, "sprite": 1545 }, + { "weight": 1, "sprite": 1546 }, + { "weight": 1, "sprite": 1547 }, + { "weight": 1, "sprite": 1548 }, + { "weight": 1, "sprite": 1549 }, + { "weight": 1, "sprite": 1550 }, + { "weight": 1, "sprite": 1551 }, + { "weight": 1, "sprite": 1542 }, + { "weight": 1, "sprite": 1543 } ], - "bg": 1323, + "bg": 1338, "rotates": false }, { "id": "mon_zombie_screecher", "fg": [ - { "weight": 1, "sprite": 1528 }, - { "weight": 1, "sprite": 1529 }, - { "weight": 1, "sprite": 1530 }, - { "weight": 1, "sprite": 1531 } + { "weight": 1, "sprite": 1552 }, + { "weight": 1, "sprite": 1553 }, + { "weight": 1, "sprite": 1554 }, + { "weight": 1, "sprite": 1555 } ], - "bg": 1323, + "bg": 1338, "rotates": false }, { "id": "mon_zombie_shrieker", "fg": [ - { "weight": 1, "sprite": 1532 }, - { "weight": 1, "sprite": 1533 }, - { "weight": 1, "sprite": 1534 }, - { "weight": 1, "sprite": 1535 } + { "weight": 1, "sprite": 1556 }, + { "weight": 1, "sprite": 1557 }, + { "weight": 1, "sprite": 1558 }, + { "weight": 1, "sprite": 1559 } ], - "bg": 1323, + "bg": 1338, "rotates": false }, { "id": "mon_zombie_survivor", - "fg": [ { "weight": 1, "sprite": 1536 }, { "weight": 1, "sprite": 1537 } ], - "bg": 1323, + "fg": [ { "weight": 1, "sprite": 1560 }, { "weight": 1, "sprite": 1561 } ], + "bg": 1338, "rotates": false }, { "id": "mon_zombie_survivor_elite", - "fg": [ { "weight": 1, "sprite": 1538 }, { "weight": 1, "sprite": 1539 }, { "weight": 1, "sprite": 1540 } ], - "bg": 1323, + "fg": [ { "weight": 1, "sprite": 1562 }, { "weight": 1, "sprite": 1563 }, { "weight": 1, "sprite": 1564 } ], + "bg": 1338, "rotates": false }, { "id": "mon_zombie_technician", "fg": [ - { "weight": 1, "sprite": 1541 }, - { "weight": 1, "sprite": 1542 }, - { "weight": 1, "sprite": 1543 }, - { "weight": 1, "sprite": 1544 } + { "weight": 1, "sprite": 1565 }, + { "weight": 1, "sprite": 1566 }, + { "weight": 1, "sprite": 1567 }, + { "weight": 1, "sprite": 1568 } ], - "bg": 1323, + "bg": 1338, "rotates": false }, { "id": "mon_zombie_tough", "fg": [ - { "weight": 1, "sprite": 1545 }, - { "weight": 1, "sprite": 1546 }, - { "weight": 1, "sprite": 1547 }, - { "weight": 1, "sprite": 1554 }, - { "weight": 1, "sprite": 1555 }, - { "weight": 1, "sprite": 1556 }, - { "weight": 1, "sprite": 1557 }, - { "weight": 1, "sprite": 1558 }, - { "weight": 1, "sprite": 1559 }, - { "weight": 1, "sprite": 1548 }, - { "weight": 1, "sprite": 1549 }, - { "weight": 1, "sprite": 1550 }, - { "weight": 1, "sprite": 1551 }, - { "weight": 1, "sprite": 1552 }, - { "weight": 1, "sprite": 1553 } + { "weight": 1, "sprite": 1569 }, + { "weight": 1, "sprite": 1570 }, + { "weight": 1, "sprite": 1571 }, + { "weight": 1, "sprite": 1578 }, + { "weight": 1, "sprite": 1579 }, + { "weight": 1, "sprite": 1580 }, + { "weight": 1, "sprite": 1581 }, + { "weight": 1, "sprite": 1582 }, + { "weight": 1, "sprite": 1583 }, + { "weight": 1, "sprite": 1572 }, + { "weight": 1, "sprite": 1573 }, + { "weight": 1, "sprite": 1574 }, + { "weight": 1, "sprite": 1575 }, + { "weight": 1, "sprite": 1576 }, + { "weight": 1, "sprite": 1577 } ], - "bg": 1323, + "bg": 1338, "rotates": false }, - { "id": "corpse_mon_fish_lbass", "fg": 1277 }, - { "id": "corpse_mon_fish_pbass", "fg": 1278 }, - { "id": "corpse_mon_fish_salmon", "fg": 1279 }, - { "id": "corpse_mon_fish_sunfish", "fg": 1280 }, - { "id": "lemming_shadow", "fg": 1281 }, - { "id": "mon_boar_wild", "fg": 1282 }, - { "id": "mon_boar_wild_piglet", "fg": 1283 }, - { "id": "mon_copbot", "fg": 1284 }, - { "id": "mon_cow", "fg": 1285 }, - { "id": "mon_cow_calf", "fg": 1286 }, - { "id": "mon_fish_eel", "fg": 1287 }, - { "id": "mon_frog", "fg": 1288 }, - { "id": "mon_frog_small", "fg": 1289 }, - { "id": "mon_gracke", "fg": 1290 }, - { "id": "mon_grocerybot", "fg": 1291 }, - { "id": "mon_grocerybot_busted", "fg": 1292 }, - { "id": "mon_hallu_mannequin", "fg": 1293 }, - { "id": "mon_lab_rat", "fg": 1294 }, - { "id": "mon_pig", "fg": 1295 }, - { "id": "mon_pig_piglet", "fg": 1296 }, - { "id": "mon_pigeon", "fg": 1297 }, - { "id": "mon_sheep", "fg": 1299 }, - { "id": "mon_skeleton_brute", "fg": 1300 }, - { "id": "mon_zombie_gasbag_crawler", "fg": 1309 }, - { "id": "mon_zombie_gasbag_immobile", "fg": 1310 }, - { "id": "mon_zombie_hanging_innards", "fg": 1311 }, - { "id": "mon_zombie_pig", "fg": 1313 }, - { "id": "mon_zow", "fg": 1322 }, - { "id": "shadow_32x32_small", "fg": 1324 }, - { "id": "corpse_mon_beaver", "fg": 1325 }, - { "id": "corpse_mon_beaver_mutant_avian", "fg": 1326 }, - { "id": "corpse_mon_beaver_mutant_huge", "fg": 1327 }, - { "id": "corpse_mon_zombeaver", "fg": 1328 }, - { "id": "mon_beaver", "fg": 1329 }, - { "id": "mon_beaver_mutant_avian", "fg": 1330 }, - { "id": "mon_beaver_mutant_huge", "fg": 1331 }, - { "id": "mon_zombeaver", "fg": 1332 }, - { "id": "mon_dog_bull", "fg": 1341 }, - { "id": "mon_dog_rottweiler", "fg": 1342 }, - { "id": "corpse_mon_aphid", "fg": 1385 }, - { "id": "mon_aphid", "fg": 1386 }, - { "id": "corpse_mon_coyote_mutant_venom", "fg": 1387 }, - { "id": "mon_coyote_mutant_venom", "fg": 1388 }, - { "id": "bot_eyebot", "fg": 1389 }, - { "id": "broken_eyebot", "fg": 1390 }, - { "id": "mon_eyebot", "fg": 1391 }, - { "id": "corpse_mon_fungaloid_shambler", "fg": 1394 }, - { "id": "mon_fungaloid_shambler", "fg": 1395 }, - { "id": "mon_goose_canadian", "fg": 1396 }, - { "id": "mon_grouse", "fg": 1397 }, - { "id": "mon_kreck", "fg": 1398 }, - { "id": "corpse_mon_mantis_small", "fg": 1399 }, - { "id": "mon_mantis_small", "fg": 1400 }, - { "id": "mon_pheasant", "fg": 1401 }, - { "id": "mon_tadpole_grabber", "fg": 1402 }, - { "id": "mon_tazer_hack", "fg": 1403 }, - { "id": "mon_zombie_necro_boomer", "fg": 1409 }, - { "id": "mon_zombie_phase_skulker", "fg": 1410 }, - { "id": "mon_zombie_pig_gas", "fg": 1411 }, - { "id": "corpse_mon_zombie_rust", "fg": 1414 }, - { "id": "corpse_mon_zombie_shell", "fg": 1415 }, - { "id": "corpse_mon_zombie_urchin", "fg": 1416 }, - { "id": "mon_zombie_rust", "fg": 1417 }, - { "id": "mon_zombie_shell", "fg": 1418 }, - { "id": "mon_zombie_urchin", "fg": 1419 } + { "id": "corpse_mon_fish_lbass", "fg": 1290 }, + { "id": "corpse_mon_fish_pbass", "fg": 1291 }, + { "id": "corpse_mon_fish_salmon", "fg": 1292 }, + { "id": "corpse_mon_fish_sunfish", "fg": 1293 }, + { "id": "lemming_shadow", "fg": 1294 }, + { "id": "mon_boar_wild", "fg": 1295 }, + { "id": "mon_boar_wild_piglet", "fg": 1296 }, + { "id": "mon_copbot", "fg": 1297 }, + { "id": "mon_cow", "fg": 1298 }, + { "id": "mon_cow_calf", "fg": 1299 }, + { "id": "mon_fish_eel", "fg": 1300 }, + { "id": "mon_frog", "fg": 1301 }, + { "id": "mon_frog_small", "fg": 1302 }, + { "id": "mon_gracke", "fg": 1303 }, + { "id": "mon_grocerybot", "fg": 1304 }, + { "id": "mon_grocerybot_busted", "fg": 1305 }, + { "id": "mon_hallu_mannequin", "fg": 1306 }, + { "id": "mon_lab_rat", "fg": 1307 }, + { "id": "mon_mosquito_giant", "fg": 1308 }, + { "id": "mon_pig", "fg": 1310 }, + { "id": "mon_pig_piglet", "fg": 1311 }, + { "id": "mon_pigeon", "fg": 1312 }, + { "id": "mon_sheep", "fg": 1314 }, + { "id": "mon_skeleton_brute", "fg": 1315 }, + { "id": "mon_zombie_gasbag_crawler", "fg": 1324 }, + { "id": "mon_zombie_gasbag_immobile", "fg": 1325 }, + { "id": "mon_zombie_hanging_innards", "fg": 1326 }, + { "id": "mon_zombie_pig", "fg": 1328 }, + { "id": "mon_zow", "fg": 1337 }, + { "id": "shadow_32x32_small", "fg": 1339 }, + { "id": "corpse_mon_beaver", "fg": 1340 }, + { "id": "corpse_mon_beaver_mutant_avian", "fg": 1341 }, + { "id": "corpse_mon_beaver_mutant_huge", "fg": 1342 }, + { "id": "corpse_mon_zombeaver", "fg": 1343 }, + { "id": "mon_beaver", "fg": 1344 }, + { "id": "mon_beaver_mutant_avian", "fg": 1345 }, + { "id": "mon_beaver_mutant_huge", "fg": 1346 }, + { "id": "mon_zombeaver", "fg": 1347 }, + { "id": "mon_dog_bull", "fg": 1356 }, + { "id": "mon_dog_rottweiler", "fg": 1357 }, + { "id": "corpse_mon_aphid", "fg": 1400 }, + { "id": "mon_aphid", "fg": 1401 }, + { "id": "corpse_mon_cockatrice", "fg": 1402 }, + { "id": "mon_cockatrice", "fg": 1403 }, + { "id": "corpse_mon_coyote_mutant_venom", "fg": 1404 }, + { "id": "mon_coyote_mutant_venom", "fg": 1405 }, + { "id": "bot_eyebot", "fg": 1406 }, + { "id": "broken_eyebot", "fg": 1407 }, + { "id": "mon_eyebot", "fg": 1408 }, + { "id": "corpse_mon_fungaloid", "fg": 1409 }, + { "id": "corpse_mon_fungaloid_shambler", "fg": 1412 }, + { "id": "mon_fungaloid_shambler", "fg": 1413 }, + { "id": "corpse_mon_fungaloid_young", "fg": 1414 }, + { "id": "mon_fungaloid_young", "fg": 1415 }, + { "id": "mon_goose_canadian", "fg": 1416 }, + { "id": "mon_grouse", "fg": 1417 }, + { "id": "mon_kreck", "fg": 1418 }, + { "id": "corpse_mon_mantis_small", "fg": 1419 }, + { "id": "mon_mantis_small", "fg": 1420 }, + { "id": "mon_pheasant", "fg": 1421 }, + { "id": "corpse_mon_skeleton_medical", "fg": 1422 }, + { "id": "mon_skeleton_medical", "fg": 1423 }, + { "id": "mon_tadpole_grabber", "fg": 1424 }, + { "id": "mon_tazer_hack", "fg": 1425 }, + { "id": "mon_zombie_necro_boomer", "fg": 1431 }, + { "id": "mon_zombie_phase_skulker", "fg": 1432 }, + { "id": "mon_zombie_pig_gas", "fg": 1433 }, + { "id": "corpse_mon_zombie_regenerating", "fg": 1436 }, + { "id": "mon_zombie_regenerating", "fg": 1437 }, + { "id": "corpse_mon_zombie_rust", "fg": 1438 }, + { "id": "corpse_mon_zombie_shell", "fg": 1439 }, + { "id": "corpse_mon_zombie_urchin", "fg": 1440 }, + { "id": "mon_zombie_rust", "fg": 1441 }, + { "id": "mon_zombie_shell", "fg": 1442 }, + { "id": "mon_zombie_urchin", "fg": 1443 } ] }, { "file": "ChibiNormalCharacterMagiclysm.png", - "//": "range 1568 to 1615", + "//": "range 1584 to 1647", "tiles": [ - { "id": [ "overlay_male_mutation_WILDSHAPE:FISH" ], "fg": 1602, "rotates": false }, - { "id": [ "overlay_female_mutation_WILDSHAPE:FISH" ], "fg": 1585, "rotates": false }, - { "id": [ "overlay_male_mutation_WILDSHAPE:BEAR" ], "fg": 1600, "rotates": false }, - { "id": [ "overlay_female_mutation_WILDSHAPE:BEAR" ], "fg": 1583, "rotates": false }, - { "id": [ "overlay_male_mutation_WILDSHAPE:DEER" ], "fg": 1601, "rotates": false }, - { "id": [ "overlay_female_mutation_WILDSHAPE:DEER" ], "fg": 1584, "rotates": false }, - { "id": "overlay_mutation_bio_sneeze_beam", "fg": 1568 }, - { "id": "overlay_female_mutation_DEMON_SKIN", "fg": 1569 }, - { "id": "overlay_female_mutation_DEMON_TAIL", "fg": 1570 }, - { "id": "overlay_female_mutation_DRAGON_BREATH_BLACK", "fg": 1571 }, - { "id": "overlay_female_mutation_DRAGON_FEET", "fg": 1572 }, - { "id": "overlay_female_mutation_DRAGON_SCALES_BLACK", "fg": 1573 }, - { "id": "overlay_female_mutation_DRAGON_TAIL", "fg": 1574 }, - { "id": "overlay_female_mutation_DRAGON_TAIL_SCALED", "fg": 1575 }, - { "id": "overlay_female_mutation_DRAGON_TAIL_STUB", "fg": 1576 }, - { "id": "overlay_female_mutation_DRAGON_TALONS_BLACK", "fg": 1577 }, - { "id": "overlay_female_mutation_MANA_LUM", "fg": 1578 }, - { "id": "overlay_female_mutation_MANA_SILENT_SPELL", "fg": 1579 }, - { "id": "overlay_female_mutation_MANA_SUBTLE_SPELL", "fg": 1580 }, - { "id": "overlay_female_mutation_SCALED_HANDS", "fg": 1581 }, - { "id": "overlay_female_mutation_TOE_CLAWS", "fg": 1582 }, - { "id": "overlay_male_mutation_DEMON_SKIN", "fg": 1586 }, - { "id": "overlay_male_mutation_DEMON_TAIL", "fg": 1587 }, - { "id": "overlay_male_mutation_DRAGON_BREATH_BLACK", "fg": 1588 }, - { "id": "overlay_male_mutation_DRAGON_FEET", "fg": 1589 }, - { "id": "overlay_male_mutation_DRAGON_SCALES_BLACK", "fg": 1590 }, - { "id": "overlay_male_mutation_DRAGON_TAIL", "fg": 1591 }, - { "id": "overlay_male_mutation_DRAGON_TAIL_SCALED", "fg": 1592 }, - { "id": "overlay_male_mutation_DRAGON_TAIL_STUB", "fg": 1593 }, - { "id": "overlay_male_mutation_DRAGON_TALONS_BLACK", "fg": 1594 }, - { "id": "overlay_male_mutation_MANA_LUM", "fg": 1595 }, - { "id": "overlay_male_mutation_MANA_SILENT_SPELL", "fg": 1596 }, - { "id": "overlay_male_mutation_MANA_SUBTLE_SPELL", "fg": 1597 }, - { "id": "overlay_male_mutation_SCALED_HANDS", "fg": 1598 }, - { "id": "overlay_male_mutation_TOE_CLAWS", "fg": 1599 }, - { "id": "overlay_mutation_DEMON_CLAWS", "fg": 1603 }, - { "id": "overlay_mutation_DEMON_POSSES", "fg": 1604 }, - { "id": "overlay_mutation_DRAGON_MAGIC", "fg": 1605 }, - { "id": "overlay_mutation_DRAGON_MAW_BLACK", "fg": 1606 }, - { "id": "overlay_mutation_DRAGON_SPELLS", "fg": 1607 }, - { "id": "overlay_mutation_DRAGON_WINGS_BLACK", "fg": 1608 }, - { "id": "overlay_mutation_MANA_SEEKER_BOLTS", "fg": 1609 }, - { "id": "overlay_mutation_MANA_SIPHON_1", "fg": 1610 }, - { "id": "overlay_mutation_MANA_SIPHON_2", "fg": 1611 }, - { "id": "overlay_mutation_MANA_SIPHON_3", "fg": 1612 }, - { "id": "overlay_mutation_MUZZLE_DRAGON", "fg": 1613 } + { "id": [ "overlay_male_mutation_WILDSHAPE:FISH" ], "fg": 1618, "rotates": false }, + { "id": [ "overlay_female_mutation_WILDSHAPE:FISH" ], "fg": 1601, "rotates": false }, + { "id": [ "overlay_male_mutation_WILDSHAPE:BEAR" ], "fg": 1616, "rotates": false }, + { "id": [ "overlay_female_mutation_WILDSHAPE:BEAR" ], "fg": 1599, "rotates": false }, + { "id": [ "overlay_male_mutation_WILDSHAPE:DEER" ], "fg": 1617, "rotates": false }, + { "id": [ "overlay_female_mutation_WILDSHAPE:DEER" ], "fg": 1600, "rotates": false }, + { "id": "overlay_mutation_bio_sneeze_beam", "fg": 1584 }, + { "id": "overlay_female_mutation_DEMON_SKIN", "fg": 1585 }, + { "id": "overlay_female_mutation_DEMON_TAIL", "fg": 1586 }, + { "id": "overlay_female_mutation_DRAGON_BREATH_BLACK", "fg": 1587 }, + { "id": "overlay_female_mutation_DRAGON_FEET", "fg": 1588 }, + { "id": "overlay_female_mutation_DRAGON_SCALES_BLACK", "fg": 1589 }, + { "id": "overlay_female_mutation_DRAGON_TAIL", "fg": 1590 }, + { "id": "overlay_female_mutation_DRAGON_TAIL_SCALED", "fg": 1591 }, + { "id": "overlay_female_mutation_DRAGON_TAIL_STUB", "fg": 1592 }, + { "id": "overlay_female_mutation_DRAGON_TALONS_BLACK", "fg": 1593 }, + { "id": "overlay_female_mutation_MANA_LUM", "fg": 1594 }, + { "id": "overlay_female_mutation_MANA_SILENT_SPELL", "fg": 1595 }, + { "id": "overlay_female_mutation_MANA_SUBTLE_SPELL", "fg": 1596 }, + { "id": "overlay_female_mutation_SCALED_HANDS", "fg": 1597 }, + { "id": "overlay_female_mutation_TOE_CLAWS", "fg": 1598 }, + { "id": "overlay_male_mutation_DEMON_SKIN", "fg": 1602 }, + { "id": "overlay_male_mutation_DEMON_TAIL", "fg": 1603 }, + { "id": "overlay_male_mutation_DRAGON_BREATH_BLACK", "fg": 1604 }, + { "id": "overlay_male_mutation_DRAGON_FEET", "fg": 1605 }, + { "id": "overlay_male_mutation_DRAGON_SCALES_BLACK", "fg": 1606 }, + { "id": "overlay_male_mutation_DRAGON_TAIL", "fg": 1607 }, + { "id": "overlay_male_mutation_DRAGON_TAIL_SCALED", "fg": 1608 }, + { "id": "overlay_male_mutation_DRAGON_TAIL_STUB", "fg": 1609 }, + { "id": "overlay_male_mutation_DRAGON_TALONS_BLACK", "fg": 1610 }, + { "id": "overlay_male_mutation_MANA_LUM", "fg": 1611 }, + { "id": "overlay_male_mutation_MANA_SILENT_SPELL", "fg": 1612 }, + { "id": "overlay_male_mutation_MANA_SUBTLE_SPELL", "fg": 1613 }, + { "id": "overlay_male_mutation_SCALED_HANDS", "fg": 1614 }, + { "id": "overlay_male_mutation_TOE_CLAWS", "fg": 1615 }, + { "id": "overlay_mutation_DEMON_CLAWS", "fg": 1619 }, + { "id": "overlay_mutation_DEMON_POSSES", "fg": 1620 }, + { "id": "overlay_mutation_DRAGON_MAGIC", "fg": 1621 }, + { "id": "overlay_mutation_DRAGON_MAW_BLACK", "fg": 1622 }, + { "id": "overlay_mutation_DRAGON_SPELLS", "fg": 1623 }, + { "id": "overlay_mutation_DRAGON_WINGS_BLACK", "fg": 1624 }, + { "id": "overlay_mutation_MANA_SEEKER_BOLTS", "fg": 1625 }, + { "id": "overlay_mutation_MANA_SIPHON_1", "fg": 1626 }, + { "id": "overlay_mutation_MANA_SIPHON_2", "fg": 1627 }, + { "id": "overlay_mutation_MANA_SIPHON_3", "fg": 1628 }, + { "id": "overlay_mutation_MUZZLE_DRAGON", "fg": 1629 }, + { "id": "overlay_worn_copper_circlet", "fg": 1630 }, + { "id": "overlay_worn_copper_infuser", "fg": 1631 }, + { "id": "overlay_worn_silver_infuser", "fg": 1632 } ] }, { "file": "ChibiNormalMonsterMagiclysm.png", - "//": "range 1616 to 1631", + "//": "range 1648 to 1663", "tiles": [ { "id": "mon_demon_spiderling", "animated": true, "fg": [ - { "weight": 15, "sprite": 1619 }, - { "weight": 15, "sprite": 1620 }, - { "weight": 15, "sprite": 1621 }, - { "weight": 15, "sprite": 1620 } + { "weight": 15, "sprite": 1652 }, + { "weight": 15, "sprite": 1653 }, + { "weight": 15, "sprite": 1654 }, + { "weight": 15, "sprite": 1653 } + ], + "rotates": false + }, + { + "id": "mon_wisp", + "fg": [ + { "weight": 1, "sprite": 1655 }, + { "weight": 1, "sprite": 1656 }, + { "weight": 1, "sprite": 1657 }, + { "weight": 1, "sprite": 1658 } ], "rotates": false }, - { "id": "mon_goblin_chieftain", "fg": 1616 }, - { "id": "mon_goblin_slinger", "fg": 1617 }, - { "id": "mon_goblin_warrior", "fg": 1618 } + { "id": "mon_goblin_chieftain", "fg": 1648 }, + { "id": "mon_goblin_slinger", "fg": 1649 }, + { "id": "mon_goblin_warrior", "fg": 1650 }, + { "id": "mon_black_pudding", "fg": 1651 } ] }, { "file": "ChibiNormalMonsterMSC.png", - "//": "range 1632 to 1647", + "//": "range 1664 to 1679", "tiles": [ { "id": "mon_marshmallow_kid", - "fg": [ { "weight": 1, "sprite": 1635 }, { "weight": 1, "sprite": 1636 } ], + "fg": [ { "weight": 1, "sprite": 1667 }, { "weight": 1, "sprite": 1668 } ], "bg": [ ], "rotates": false }, { "id": "mon_necco", "fg": [ - { "weight": 1, "sprite": 1638 }, - { "weight": 1, "sprite": 1639 }, - { "weight": 1, "sprite": 1640 }, - { "weight": 1, "sprite": 1641 }, - { "weight": 1, "sprite": 1642 }, - { "weight": 1, "sprite": 1643 }, - { "weight": 1, "sprite": 1637 } + { "weight": 1, "sprite": 1670 }, + { "weight": 1, "sprite": 1671 }, + { "weight": 1, "sprite": 1672 }, + { "weight": 1, "sprite": 1673 }, + { "weight": 1, "sprite": 1674 }, + { "weight": 1, "sprite": 1675 }, + { "weight": 1, "sprite": 1669 } ], "bg": [ ], "rotates": false }, - { "id": "mon_cookie", "fg": 1632 }, - { "id": "mon_cow_calf_choc", "fg": 1633 }, - { "id": "mon_cow_choc", "fg": 1634 } + { "id": "mon_cookie", "fg": 1664 }, + { "id": "mon_cow_calf_choc", "fg": 1665 }, + { "id": "mon_cow_choc", "fg": 1666 } ] }, { "file": "ChibiWideMonster.png", - "//": "range 1648 to 1663", + "//": "range 1680 to 1695", "sprite_width": 48, "sprite_height": 48, "sprite_offset_x": -16, "sprite_offset_y": -16, "tiles": [ - { "id": "mon_secubot", "fg": 1648 }, - { "id": "mon_talon_m202a1", "fg": 1649 }, - { "id": "mon_halloween_dragon", "fg": 1650 } + { "id": "mon_secubot", "fg": 1680 }, + { "id": "mon_talon_m202a1", "fg": 1681 }, + { "id": "mon_halloween_dragon", "fg": 1682 } ] }, { "file": "ChibiTallMonster.png", - "//": "range 1664 to 1679", + "//": "range 1696 to 1711", "sprite_width": 32, "sprite_height": 48, "sprite_offset_x": 0, "sprite_offset_y": -16, "tiles": [ - { "id": "mon_nursebot", "fg": [ 1664, 1665, 1666 ], "rotates": false }, - { "id": [ "mon_brute_pupa", "mon_brute_pupa_decoy" ], "fg": 1668, "rotates": false }, + { "id": "mon_nursebot", "fg": [ 1696, 1697, 1698 ], "rotates": false }, + { "id": [ "mon_brute_pupa", "mon_brute_pupa_decoy" ], "fg": 1700, "rotates": false }, { "id": "mon_firefly", "animated": true, "fg": [ - { "weight": 15, "sprite": 1669 }, - { "weight": 15, "sprite": 1670 }, - { "weight": 15, "sprite": 1671 }, - { "weight": 15, "sprite": 1670 } + { "weight": 15, "sprite": 1701 }, + { "weight": 15, "sprite": 1702 }, + { "weight": 15, "sprite": 1703 }, + { "weight": 15, "sprite": 1702 } ] }, - { "id": "mon_zombie_scissorlimbs", "fg": 1667 }, - { "id": "mon_mantis_giant", "fg": 1672 }, - { "id": "mon_robofac_prototype", "fg": 1673 }, - { "id": "mon_spawn_raptor", "fg": 1674 } + { "id": "mon_zombie_scissorlimbs", "fg": 1699 }, + { "id": "mon_mantis_giant", "fg": 1704 }, + { "id": "mon_robofac_prototype", "fg": 1705 }, + { "id": "mon_spawn_raptor", "fg": 1706 } ] }, { "file": "ChibiTallMonsterMagiclysm.png", - "//": "range 1680 to 1695", + "//": "range 1712 to 1727", "sprite_width": 32, "sprite_height": 48, "sprite_offset_x": 0, @@ -2531,10 +2567,10 @@ "id": "mon_demon_spider", "animated": true, "fg": [ - { "weight": 15, "sprite": 1680 }, - { "weight": 15, "sprite": 1681 }, - { "weight": 15, "sprite": 1682 }, - { "weight": 15, "sprite": 1681 } + { "weight": 15, "sprite": 1712 }, + { "weight": 15, "sprite": 1713 }, + { "weight": 15, "sprite": 1714 }, + { "weight": 15, "sprite": 1713 } ], "rotates": false } @@ -2542,7 +2578,7 @@ }, { "file": "ChibiTallMonsterMSC.png", - "//": "range 1696 to 1711", + "//": "range 1728 to 1743", "sprite_width": 32, "sprite_height": 48, "sprite_offset_x": 0, @@ -2550,7 +2586,7 @@ "tiles": [ { "id": "mon_marshmallow_buff", - "fg": [ { "weight": 1, "sprite": 1696 }, { "weight": 1, "sprite": 1697 } ], + "fg": [ { "weight": 1, "sprite": 1728 }, { "weight": 1, "sprite": 1729 } ], "bg": [ ], "rotates": false } @@ -2558,76 +2594,76 @@ }, { "file": "ChibiTallOverlay.png", - "//": "range 1712 to 1791", + "//": "range 1744 to 1823", "sprite_width": 32, "sprite_height": 48, "sprite_offset_x": 0, "sprite_offset_y": -16, "tiles": [ - { "id": "overlay_worn_10gal_hat", "fg": 1712, "rotates": false }, - { "id": "overlay_worn_bowhat", "fg": 1713, "rotates": false }, - { "id": "overlay_worn_eboshi", "fg": 1714, "rotates": false }, - { "id": [ "overlay_worn_fedora", "fedora" ], "fg": 1715, "rotates": false }, - { "id": "overlay_worn_firehelmet", "fg": 1716, "rotates": false }, - { "id": "overlay_worn_hat_chef", "fg": 1717, "rotates": false }, - { "id": "overlay_worn_hat_hard", "fg": 1718, "rotates": false }, - { "id": "overlay_worn_hat_hard_hooded", "fg": 1719, "rotates": false }, - { "id": "overlay_worn_hat_sombrero", "fg": 1720, "rotates": false }, - { "id": "overlay_worn_helmet_kabuto", "fg": 1721, "rotates": false }, - { "id": "overlay_worn_miner_hat", "fg": 1722, "rotates": false }, - { "id": "overlay_worn_miner_hat_on", "fg": 1723, "rotates": false }, - { "id": "overlay_worn_pickelhaube", "fg": 1724, "rotates": false }, - { "id": "overlay_worn_porkpie", "fg": 1725, "rotates": false }, - { "id": "overlay_worn_straw_fedora", "fg": 1726, "rotates": false }, - { "id": "overlay_worn_straw_hat", "fg": 1727, "rotates": false }, - { "id": "overlay_worn_tinfoil_hat", "fg": 1728, "rotates": false }, - { "id": "overlay_worn_tophat", "fg": 1729, "rotates": false }, - { "id": "overlay_worn_veil_wedding", "fg": 1730, "rotates": false }, - { "id": "overlay_worn_welding_mask_crude_raised", "fg": 1731, "rotates": false }, - { "id": "overlay_worn_welding_mask_raised", "fg": 1732, "rotates": false }, - { "id": "overlay_effect_badpoison", "fg": 1734 }, - { "id": "overlay_effect_bleed", "fg": 1735 }, - { "id": "overlay_effect_bouldering", "fg": 1736 }, - { "id": "overlay_effect_common_cold", "fg": 1737 }, - { "id": "overlay_effect_dazed", "fg": 1738 }, - { "id": [ "overlay_effect_deaf", "overlay_effect_earphones" ], "fg": 1739 }, - { "id": "overlay_effect_downed", "fg": 1740 }, - { "id": "overlay_effect_drunk", "fg": 1741 }, - { "id": [ "overlay_effect_flu", "overlay_effect_Influenza" ], "fg": 1742 }, - { "id": [ "overlay_effect_foodpoison", "overlay_effect_nausea" ], "fg": 1743 }, - { "id": "overlay_effect_fungus", "fg": 1744 }, - { "id": "overlay_effect_grabbed", "fg": 1745 }, - { "id": "overlay_female_effect_haslight", "fg": 1754 }, - { "id": "overlay_male_effect_haslight", "fg": 1755 }, - { "id": "overlay_effect_high", "fg": 1746 }, - { "id": "overlay_effect_paralyzepoison", "fg": 1747 }, - { "id": "overlay_effect_poison", "fg": 1748 }, - { "id": "overlay_effect_sleep", "fg": 1749 }, - { "id": "overlay_effect_spores", "fg": 1750 }, - { "id": "overlay_effect_stunned", "fg": 1751 }, - { "id": "overlay_effect_visuals", "fg": 1752 }, - { "id": [ "overlay_effect_winded", "overlay_effect_asthma" ], "fg": 1753 }, - { "id": "overlay_female_mutation_hair_black_fro", "fg": 1767, "rotates": false }, - { "id": "overlay_female_mutation_hair_gray_fro", "fg": 1770, "rotates": false }, - { "id": "overlay_female_mutation_hair_blond_fro", "fg": 1768, "rotates": false }, - { "id": "overlay_female_mutation_hair_brown_fro", "fg": 1769, "rotates": false }, - { "id": "overlay_female_mutation_hair_white_fro", "fg": 1772, "rotates": false }, - { "id": "overlay_female_mutation_hair_red_fro", "fg": 1771, "rotates": false }, - { "id": "overlay_male_mutation_hair_black_fro", "fg": 1773, "rotates": false }, - { "id": "overlay_male_mutation_hair_gray_fro", "fg": 1776, "rotates": false }, - { "id": "overlay_male_mutation_hair_blond_fro", "fg": 1774, "rotates": false }, - { "id": "overlay_male_mutation_hair_brown_fro", "fg": 1775, "rotates": false }, - { "id": "overlay_male_mutation_hair_white_fro", "fg": 1778, "rotates": false }, - { "id": "overlay_male_mutation_hair_red_fro", "fg": 1777, "rotates": false }, - { "id": "overlay_mutation_hair_black_mohawk", "fg": 1779, "rotates": false }, - { "id": "overlay_mutation_hair_gray_mohawk", "fg": 1782, "rotates": false }, - { "id": "overlay_mutation_hair_blond_mohawk", "fg": 1780, "rotates": false }, - { "id": "overlay_mutation_hair_brown_mohawk", "fg": 1781, "rotates": false }, - { "id": "overlay_mutation_hair_white_mohawk", "fg": 1784, "rotates": false }, - { "id": "overlay_mutation_hair_red_mohawk", "fg": 1783, "rotates": false }, + { "id": "overlay_worn_10gal_hat", "fg": 1744, "rotates": false }, + { "id": "overlay_worn_bowhat", "fg": 1745, "rotates": false }, + { "id": "overlay_worn_eboshi", "fg": 1746, "rotates": false }, + { "id": [ "overlay_worn_fedora", "fedora" ], "fg": 1747, "rotates": false }, + { "id": "overlay_worn_firehelmet", "fg": 1748, "rotates": false }, + { "id": "overlay_worn_hat_chef", "fg": 1749, "rotates": false }, + { "id": "overlay_worn_hat_hard", "fg": 1750, "rotates": false }, + { "id": "overlay_worn_hat_hard_hooded", "fg": 1751, "rotates": false }, + { "id": "overlay_worn_hat_sombrero", "fg": 1752, "rotates": false }, + { "id": "overlay_worn_helmet_kabuto", "fg": 1753, "rotates": false }, + { "id": "overlay_worn_miner_hat", "fg": 1754, "rotates": false }, + { "id": "overlay_worn_miner_hat_on", "fg": 1755, "rotates": false }, + { "id": "overlay_worn_pickelhaube", "fg": 1756, "rotates": false }, + { "id": "overlay_worn_porkpie", "fg": 1757, "rotates": false }, + { "id": "overlay_worn_straw_fedora", "fg": 1758, "rotates": false }, + { "id": "overlay_worn_straw_hat", "fg": 1759, "rotates": false }, + { "id": "overlay_worn_tinfoil_hat", "fg": 1760, "rotates": false }, + { "id": "overlay_worn_tophat", "fg": 1761, "rotates": false }, + { "id": "overlay_worn_veil_wedding", "fg": 1762, "rotates": false }, + { "id": "overlay_worn_welding_mask_crude_raised", "fg": 1763, "rotates": false }, + { "id": "overlay_worn_welding_mask_raised", "fg": 1764, "rotates": false }, + { "id": "overlay_effect_badpoison", "fg": 1766 }, + { "id": "overlay_effect_bleed", "fg": 1767 }, + { "id": "overlay_effect_bouldering", "fg": 1768 }, + { "id": "overlay_effect_common_cold", "fg": 1769 }, + { "id": "overlay_effect_dazed", "fg": 1770 }, + { "id": [ "overlay_effect_deaf", "overlay_effect_earphones" ], "fg": 1771 }, + { "id": "overlay_effect_downed", "fg": 1772 }, + { "id": "overlay_effect_drunk", "fg": 1773 }, + { "id": [ "overlay_effect_flu", "overlay_effect_Influenza" ], "fg": 1774 }, + { "id": [ "overlay_effect_foodpoison", "overlay_effect_nausea" ], "fg": 1775 }, + { "id": "overlay_effect_fungus", "fg": 1776 }, + { "id": "overlay_effect_grabbed", "fg": 1777 }, + { "id": "overlay_female_effect_haslight", "fg": 1786 }, + { "id": "overlay_male_effect_haslight", "fg": 1787 }, + { "id": "overlay_effect_high", "fg": 1778 }, + { "id": "overlay_effect_paralyzepoison", "fg": 1779 }, + { "id": "overlay_effect_poison", "fg": 1780 }, + { "id": "overlay_effect_sleep", "fg": 1781 }, + { "id": "overlay_effect_spores", "fg": 1782 }, + { "id": "overlay_effect_stunned", "fg": 1783 }, + { "id": "overlay_effect_visuals", "fg": 1784 }, + { "id": [ "overlay_effect_winded", "overlay_effect_asthma" ], "fg": 1785 }, + { "id": "overlay_female_mutation_hair_black_fro", "fg": 1799, "rotates": false }, + { "id": "overlay_female_mutation_hair_gray_fro", "fg": 1802, "rotates": false }, + { "id": "overlay_female_mutation_hair_blond_fro", "fg": 1800, "rotates": false }, + { "id": "overlay_female_mutation_hair_brown_fro", "fg": 1801, "rotates": false }, + { "id": "overlay_female_mutation_hair_white_fro", "fg": 1804, "rotates": false }, + { "id": "overlay_female_mutation_hair_red_fro", "fg": 1803, "rotates": false }, + { "id": "overlay_male_mutation_hair_black_fro", "fg": 1805, "rotates": false }, + { "id": "overlay_male_mutation_hair_gray_fro", "fg": 1808, "rotates": false }, + { "id": "overlay_male_mutation_hair_blond_fro", "fg": 1806, "rotates": false }, + { "id": "overlay_male_mutation_hair_brown_fro", "fg": 1807, "rotates": false }, + { "id": "overlay_male_mutation_hair_white_fro", "fg": 1810, "rotates": false }, + { "id": "overlay_male_mutation_hair_red_fro", "fg": 1809, "rotates": false }, + { "id": "overlay_mutation_hair_black_mohawk", "fg": 1811, "rotates": false }, + { "id": "overlay_mutation_hair_gray_mohawk", "fg": 1814, "rotates": false }, + { "id": "overlay_mutation_hair_blond_mohawk", "fg": 1812, "rotates": false }, + { "id": "overlay_mutation_hair_brown_mohawk", "fg": 1813, "rotates": false }, + { "id": "overlay_mutation_hair_white_mohawk", "fg": 1816, "rotates": false }, + { "id": "overlay_mutation_hair_red_mohawk", "fg": 1815, "rotates": false }, { "id": [ "overlay_female_mutation_BIOLUM0", "overlay_female_mutation_BIOLUM1", "overlay_female_mutation_BIOLUM2" ], - "fg": 1785, + "fg": 1817, "rotates": false }, { @@ -2636,12 +2672,12 @@ "overlay_female_mutation_BIOLUM1_active", "overlay_female_mutation_BIOLUM2_active" ], - "fg": 1786, + "fg": 1818, "rotates": false }, { "id": [ "overlay_male_mutation_BIOLUM0", "overlay_male_mutation_BIOLUM1", "overlay_male_mutation_BIOLUM2" ], - "fg": 1787, + "fg": 1819, "rotates": false }, { @@ -2650,28 +2686,38 @@ "overlay_male_mutation_BIOLUM1_active", "overlay_male_mutation_BIOLUM2_active" ], - "fg": 1788, + "fg": 1820, "rotates": false }, - { "id": "overlay_mutation_HORNS_POINTED", "fg": 1789, "rotates": false }, - { "id": "overlay_crouch", "fg": 1733 }, - { "id": "overlay_run", "fg": 1756 }, - { "id": "overlay_effect_weary_0", "fg": 1757 }, - { "id": "overlay_effect_weary_1", "fg": 1758 }, - { "id": "overlay_effect_weary_2", "fg": 1759 }, - { "id": "overlay_effect_weary_3", "fg": 1760 }, - { "id": "overlay_effect_weary_4", "fg": 1761 }, - { "id": "overlay_effect_weary_5", "fg": 1762 }, - { "id": "overlay_effect_weary_6", "fg": 1763 }, - { "id": "overlay_effect_weary_7", "fg": 1764 }, - { "id": "overlay_effect_weary_8", "fg": 1765 }, - { "id": "overlay_prone", "fg": 1766 }, - { "id": "overlay_wielded_mattress", "fg": 1790 } + { "id": "overlay_mutation_HORNS_POINTED", "fg": 1821, "rotates": false }, + { "id": "overlay_crouch", "fg": 1765 }, + { "id": "overlay_run", "fg": 1788 }, + { "id": "overlay_effect_weary_0", "fg": 1789 }, + { "id": "overlay_effect_weary_1", "fg": 1790 }, + { "id": "overlay_effect_weary_2", "fg": 1791 }, + { "id": "overlay_effect_weary_3", "fg": 1792 }, + { "id": "overlay_effect_weary_4", "fg": 1793 }, + { "id": "overlay_effect_weary_5", "fg": 1794 }, + { "id": "overlay_effect_weary_6", "fg": 1795 }, + { "id": "overlay_effect_weary_7", "fg": 1796 }, + { "id": "overlay_effect_weary_8", "fg": 1797 }, + { "id": "overlay_prone", "fg": 1798 }, + { "id": "overlay_mutation_RABBIT_EARS", "fg": 1822 }, + { "id": "overlay_wielded_mattress", "fg": 1823 } ] }, + { + "file": "ChibiTallOverlayMagiclysm.png", + "//": "range 1824 to 1839", + "sprite_width": 32, + "sprite_height": 48, + "sprite_offset_x": 0, + "sprite_offset_y": -16, + "tiles": [ { "id": "overlay_worn_wizard_hat", "fg": 1824 } ] + }, { "file": "ChibiHugeAftershockMonster.png", - "//": "range 1792 to 1807", + "//": "range 1840 to 1855", "sprite_width": 128, "sprite_height": 128, "sprite_offset_x": -64, @@ -2679,64 +2725,64 @@ "tiles": [ { "id": "mon_tankbot", - "fg": [ { "weight": 10, "sprite": 1794 }, { "weight": 1, "sprite": 1795 }, { "weight": 3, "sprite": 1796 } ], + "fg": [ { "weight": 10, "sprite": 1842 }, { "weight": 1, "sprite": 1843 }, { "weight": 3, "sprite": 1844 } ], "rotates": false }, - { "id": "bot_tankbot", "fg": 1792 }, - { "id": "broken_tankbot", "fg": 1793 } + { "id": "bot_tankbot", "fg": 1840 }, + { "id": "broken_tankbot", "fg": 1841 } ] }, { "file": "ChibismallMonster.png", - "//": "range 1808 to 1823", + "//": "range 1856 to 1871", "sprite_width": 20, "sprite_height": 20, "sprite_offset_x": 0, "sprite_offset_y": 0, - "tiles": [ { "id": "corpse_mon_aphid_small", "fg": 1808 }, { "id": "mon_aphid_small", "fg": 1809 } ] + "tiles": [ { "id": "corpse_mon_aphid_small", "fg": 1856 }, { "id": "mon_aphid_small", "fg": 1857 } ] }, { "file": "small.png", - "//": "range 1824 to 2927", + "//": "range 1872 to 2975", "sprite_width": 20, "sprite_height": 20, "sprite_offset_x": 0, "sprite_offset_y": 0, "tiles": [ - { "id": [ "plastic_plate", "soap_holder" ], "fg": 1935 }, - { "id": "RAM", "fg": 1825 }, - { "id": [ "beans_cooked", "can_beans" ], "fg": 1826 }, - { "id": "ceramic_plate", "fg": 1935 }, - { "id": [ "fancy_glasses_bifocal", "fancy_glasses_eye", "fancy_glasses_reading" ], "fg": 1959 }, - { "id": [ "glasses_eye", "glasses_reading" ], "fg": 1979 }, - { "id": [ "jackhammer", "elec_jackhammer" ], "fg": 1997 }, - { "id": [ "sunglasses", "sunglasses_bifocal", "sunglasses_eye", "sunglasses_reading" ], "fg": 2060 }, - { "id": "helmet_motor", "fg": 2091 }, - { "id": "katana", "fg": 2092 }, - { "id": "katana_fake", "fg": 2092 }, - { "id": "katana_inferior", "fg": 2092 }, - { "id": "223_casing", "fg": 2093 }, - { "id": "40mm_casing", "fg": 2094 }, - { "id": "40x46mm_m118_casing", "fg": 2094 }, - { "id": "50_casing", "fg": 2095 }, - { "id": "9mm_casing", "fg": 2096 }, - { "id": "arrow_cf", "fg": 2097 }, - { "id": "arrow_exploding", "fg": 2098 }, - { "id": "arrow_field_point_fletched", "fg": 2099 }, - { "id": "arrow_fire_hardened_fletched", "fg": 2100 }, - { "id": "flamable_arrow", "fg": 2114 }, - { "id": "arrow_flamming", "fg": 2101 }, - { "id": "arrow_heavy_fire_hardened_fletched", "fg": 2102 }, - { "id": "arrow_metal", "fg": 2103 }, - { "id": "arrow_metal_sharpened_fletched", "fg": 2104 }, - { "id": "arrow_plastic", "fg": 2105 }, - { "id": "arrow_small_game_fletched", "fg": 2106 }, - { "id": "arrow_wood", "fg": 2107 }, - { "id": "arrow_wood_heavy", "fg": 2108 }, - { "id": "bolt_cf", "fg": 2109 }, - { "id": "bolt_explosive", "fg": 2110 }, - { "id": "bolt_metal", "fg": 2111 }, - { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 2112 }, + { "id": [ "plastic_plate", "soap_holder" ], "fg": 1983 }, + { "id": "RAM", "fg": 1873 }, + { "id": [ "beans_cooked", "can_beans" ], "fg": 1874 }, + { "id": "ceramic_plate", "fg": 1983 }, + { "id": [ "fancy_glasses_bifocal", "fancy_glasses_eye", "fancy_glasses_reading" ], "fg": 2007 }, + { "id": [ "glasses_eye", "glasses_reading" ], "fg": 2027 }, + { "id": [ "jackhammer", "elec_jackhammer" ], "fg": 2045 }, + { "id": [ "sunglasses", "sunglasses_bifocal", "sunglasses_eye", "sunglasses_reading" ], "fg": 2108 }, + { "id": "helmet_motor", "fg": 2140 }, + { "id": "katana", "fg": 2141 }, + { "id": "katana_fake", "fg": 2141 }, + { "id": "katana_inferior", "fg": 2141 }, + { "id": "223_casing", "fg": 2142 }, + { "id": "40mm_casing", "fg": 2143 }, + { "id": "40x46mm_m118_casing", "fg": 2143 }, + { "id": "50_casing", "fg": 2144 }, + { "id": "9mm_casing", "fg": 2145 }, + { "id": "arrow_cf", "fg": 2146 }, + { "id": "arrow_exploding", "fg": 2147 }, + { "id": "arrow_field_point_fletched", "fg": 2148 }, + { "id": "arrow_fire_hardened_fletched", "fg": 2149 }, + { "id": "flamable_arrow", "fg": 2163 }, + { "id": "arrow_flamming", "fg": 2150 }, + { "id": "arrow_heavy_fire_hardened_fletched", "fg": 2151 }, + { "id": "arrow_metal", "fg": 2152 }, + { "id": "arrow_metal_sharpened_fletched", "fg": 2153 }, + { "id": "arrow_plastic", "fg": 2154 }, + { "id": "arrow_small_game_fletched", "fg": 2155 }, + { "id": "arrow_wood", "fg": 2156 }, + { "id": "arrow_wood_heavy", "fg": 2157 }, + { "id": "bolt_cf", "fg": 2158 }, + { "id": "bolt_explosive", "fg": 2159 }, + { "id": "bolt_metal", "fg": 2160 }, + { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 2161 }, { "id": [ "bolt_wood", @@ -2747,62 +2793,62 @@ "bolt_wood_bodkin", "bolt_wood_small_game" ], - "fg": 2113 - }, - { "id": "shot_hull", "fg": 2115 }, - { "id": [ "90two", "90two40" ], "fg": 2127 }, - { "id": [ "TDI", "TDI_10" ], "fg": 2129 }, - { "id": [ "hk_mp5", "hk_mp5_10_semi" ], "fg": 2160 }, - { "id": [ "hptjcp", "hptjhp" ], "fg": 2166 }, - { "id": [ "m1911", "m1911a1_38super" ], "fg": 2177 }, - { "id": "basket_laundry", "fg": 2250 }, - { "id": "heavy_battery_cell", "fg": 2252 }, - { "id": "heavy_plus_battery_cell", "fg": 2252 }, - { "id": "heavy_disposable_cell", "fg": 2252 }, - { "id": "heavy_atomic_battery_cell", "fg": 2251 }, - { "id": "light_battery_cell", "fg": 2254 }, - { "id": "light_minus_battery_cell", "fg": 2256 }, - { "id": "light_plus_battery_cell", "fg": 2254 }, - { "id": "light_disposable_cell", "fg": 2254 }, - { "id": "light_atomic_battery_cell", "fg": 2253 }, - { "id": "light_minus_atomic_battery_cell", "fg": 2255 }, - { "id": "medium_battery_cell", "fg": 2258 }, - { "id": "medium_plus_battery_cell", "fg": 2258 }, - { "id": "medium_disposable_cell", "fg": 2258 }, - { "id": "medium_atomic_battery_cell", "fg": 2257 }, - { "id": "bead_bracelet", "fg": 2259 }, - { "id": "bone", "fg": 2260 }, - { "id": "bone_human", "fg": 2261 }, - { "id": "bone_tainted", "fg": 2262 }, - { "id": "SICP", "fg": 2263 }, - { "id": [ "flyer", "necropolis_leaflet", "abstractmap" ], "fg": 2266 }, - { "id": "book_fict_soft_tpl", "fg": 2276 }, - { "id": "novel_adventure", "fg": 2276 }, - { "id": "novel_buddy", "fg": 2277 }, - { "id": "novel_coa", "fg": 2278 }, - { "id": "novel_coa2", "fg": 2279 }, - { "id": "novel_crime", "fg": 2280 }, - { "id": "novel_crime2", "fg": 2281 }, - { "id": "novel_drama", "fg": 2282 }, - { "id": "novel_erotic", "fg": 2283 }, - { "id": "novel_experimental", "fg": 2284 }, - { "id": "novel_fantasy", "fg": 2285 }, - { "id": "novel_horror", "fg": 2286 }, - { "id": "novel_mystery", "fg": 2287 }, - { "id": "novel_pulp", "fg": 2288 }, - { "id": "novel_road", "fg": 2289 }, - { "id": "novel_romance", "fg": 2290 }, - { "id": "novel_samurai", "fg": 2291 }, - { "id": "novel_satire", "fg": 2292 }, - { "id": "novel_scifi", "fg": 2293 }, - { "id": "novel_sports", "fg": 2294 }, - { "id": "novel_spy", "fg": 2295 }, - { "id": "novel_swash", "fg": 2296 }, - { "id": "novel_thriller", "fg": 2297 }, - { "id": "novel_tragedy", "fg": 2298 }, - { "id": "novel_war", "fg": 2299 }, - { "id": "novel_war2", "fg": 2300 }, - { "id": "novel_western", "fg": 2301 }, + "fg": 2162 + }, + { "id": "shot_hull", "fg": 2164 }, + { "id": [ "90two", "90two40" ], "fg": 2176 }, + { "id": [ "TDI", "TDI_10" ], "fg": 2178 }, + { "id": [ "hk_mp5", "hk_mp5_10_semi" ], "fg": 2209 }, + { "id": [ "hptjcp", "hptjhp" ], "fg": 2215 }, + { "id": [ "m1911", "m1911a1_38super" ], "fg": 2226 }, + { "id": "basket_laundry", "fg": 2299 }, + { "id": "heavy_battery_cell", "fg": 2301 }, + { "id": "heavy_plus_battery_cell", "fg": 2301 }, + { "id": "heavy_disposable_cell", "fg": 2301 }, + { "id": "heavy_atomic_battery_cell", "fg": 2300 }, + { "id": "light_battery_cell", "fg": 2303 }, + { "id": "light_minus_battery_cell", "fg": 2305 }, + { "id": "light_plus_battery_cell", "fg": 2303 }, + { "id": "light_disposable_cell", "fg": 2303 }, + { "id": "light_atomic_battery_cell", "fg": 2302 }, + { "id": "light_minus_atomic_battery_cell", "fg": 2304 }, + { "id": "medium_battery_cell", "fg": 2307 }, + { "id": "medium_plus_battery_cell", "fg": 2307 }, + { "id": "medium_disposable_cell", "fg": 2307 }, + { "id": "medium_atomic_battery_cell", "fg": 2306 }, + { "id": "bead_bracelet", "fg": 2308 }, + { "id": "bone", "fg": 2309 }, + { "id": "bone_human", "fg": 2310 }, + { "id": "bone_tainted", "fg": 2311 }, + { "id": "SICP", "fg": 2312 }, + { "id": [ "flyer", "necropolis_leaflet", "abstractmap" ], "fg": 2315 }, + { "id": "book_fict_soft_tpl", "fg": 2325 }, + { "id": "novel_adventure", "fg": 2325 }, + { "id": "novel_buddy", "fg": 2326 }, + { "id": "novel_coa", "fg": 2327 }, + { "id": "novel_coa2", "fg": 2328 }, + { "id": "novel_crime", "fg": 2329 }, + { "id": "novel_crime2", "fg": 2330 }, + { "id": "novel_drama", "fg": 2331 }, + { "id": "novel_erotic", "fg": 2332 }, + { "id": "novel_experimental", "fg": 2333 }, + { "id": "novel_fantasy", "fg": 2334 }, + { "id": "novel_horror", "fg": 2335 }, + { "id": "novel_mystery", "fg": 2336 }, + { "id": "novel_pulp", "fg": 2337 }, + { "id": "novel_road", "fg": 2338 }, + { "id": "novel_romance", "fg": 2339 }, + { "id": "novel_samurai", "fg": 2340 }, + { "id": "novel_satire", "fg": 2341 }, + { "id": "novel_scifi", "fg": 2342 }, + { "id": "novel_sports", "fg": 2343 }, + { "id": "novel_spy", "fg": 2344 }, + { "id": "novel_swash", "fg": 2345 }, + { "id": "novel_thriller", "fg": 2346 }, + { "id": "novel_tragedy", "fg": 2347 }, + { "id": "novel_war", "fg": 2348 }, + { "id": "novel_war2", "fg": 2349 }, + { "id": "novel_western", "fg": 2350 }, { "id": [ "adv_chemistry", @@ -2822,7 +2868,7 @@ "modern_tanner", "repeater_mod_guide" ], - "fg": 2268 + "fg": 2317 }, { "id": [ @@ -2843,7 +2889,7 @@ "textbook_robots", "textbook_armschina" ], - "fg": 2275 + "fg": 2324 }, { "id": [ @@ -2858,7 +2904,7 @@ "cookbook_daintydishes", "cookbook_liverforkids" ], - "fg": 2269 + "fg": 2318 }, { "id": [ @@ -2871,7 +2917,7 @@ "recipe_melee", "recipe_labchem" ], - "fg": 2273 + "fg": 2322 }, { "id": [ @@ -2888,9 +2934,9 @@ "recipe_creepy", "recipe_maiar" ], - "fg": 2273 + "fg": 2322 }, - { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 2272 }, + { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 2321 }, { "id": [ "mag_rifle", @@ -2914,7 +2960,7 @@ "mag_swimming", "mag_news" ], - "fg": 2270 + "fg": 2319 }, { "id": [ @@ -2931,7 +2977,7 @@ "schematics_searchlight", "schematics_secubot" ], - "fg": 2274 + "fg": 2323 }, { "id": [ @@ -2952,113 +2998,113 @@ "manual_shotgun", "manual_fabrication" ], - "fg": 2271 - }, - { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 2267 }, - { "id": "bottle_twoliter", "fg": 2302 }, - { "id": "bowl_pewter", "fg": 2303 }, - { "id": [ "wearable_light", "survivor_light", "wearable_atomic_light_off" ], "fg": 2395 }, - { "id": [ "wearable_light_on", "survivor_light_on", "wearable_atomic_light" ], "fg": 2396 }, - { "id": [ "alternator_car", "alternator_bicycle", "alternator_motorbike" ], "fg": 2412 }, - { "id": [ "flour", "bread_flour" ], "fg": 2435 }, - { "id": [ "pizza_cheese", "pizza_veggy", "pizza_meat" ], "fg": 2466 }, - { "id": [ "microscope", "microscope_dissecting" ], "fg": 2460 }, - { "id": "digging_stick", "fg": 2484 }, - { "id": "sword_cane", "fg": 2543 }, - { "id": "hollow_cane", "fg": 2520 }, - { "id": "cane", "fg": 2546 }, - { "id": "i_staff", "fg": 2522 }, - { "id": "shock_staff", "fg": 2535 }, - { "id": "q_staff", "fg": 2536 }, - { "id": "scarf_fur", "fg": 2540 }, - { "id": "knit_scarf", "fg": 2523 }, - { "id": "scarf_fur_long", "fg": 2541 }, - { "id": "long_knit_scarf", "fg": 2524 }, - { "id": "long_patchwork_scarf", "fg": 2525 }, - { "id": "scarf_long", "fg": 2542 }, - { "id": "patchwork_scarf", "fg": 2533 }, - { "id": "scarf", "fg": 2539 }, - { "id": "scarf_fur_loose", "fg": 2540 }, - { "id": "knit_scarf_loose", "fg": 2523 }, - { "id": "scarf_fur_long_loose", "fg": 2541 }, - { "id": "long_knit_scarf_loose", "fg": 2524 }, - { "id": "long_patchwork_scarf_loose", "fg": 2525 }, - { "id": "scarf_long_loose", "fg": 2542 }, - { "id": "patchwork_scarf_loose", "fg": 2533 }, - { "id": "scarf_loose", "fg": 2539 }, - { "id": "ceramic_cup", "fg": 2556 }, - { "id": "ceramic_mug", "fg": 2557 }, - { "id": "ceramic_shard", "fg": 2558 }, - { "id": "chain", "fg": 2559 }, - { "id": "clay_lump", "fg": 2562 }, - { "id": "bag_plastic", "fg": 2563 }, - { "id": "bag_zipper", "fg": 2564 }, - { "id": "bottle_glass", "fg": 2565 }, - { "id": "bottle_plastic", "fg": 2566 }, - { "id": "bottle_plastic_small", "fg": 2567 }, - { "id": "box_cigarette", "fg": 2568 }, - { "id": "box_small", "fg": 2569 }, - { "id": "can_drink", "fg": 2570 }, - { "id": "can_drink_unsealed", "fg": 2571 }, - { "id": [ "glass", "base_glass_dish" ], "fg": 2572 }, - { "id": "jar_3l_glass", "fg": 2573 }, - { "id": "jar_3l_glass_sealed", "fg": 2574 }, - { "id": "jar_glass", "fg": 2575 }, - { "id": "jar_glass_sealed", "fg": 2576 }, - { "id": "jug_plastic", "fg": 2577 }, - { "id": "wrapper", "fg": 2578 }, - { "id": "cudgel", "fg": 2579 }, - { "id": [ "pie", "pie_maple", "pie_veggy", "pie_meat" ], "bg": 2651 }, - { "id": [ "waffles", "fruit_waffles" ], "fg": 2655 }, - { "id": [ "cookies", "crackers", "biscuit" ], "fg": 2647 }, - { "id": [ "cake2", "cake3", "space_cake" ], "fg": 2646 }, - { "id": "hinge", "fg": 2699 }, - { "id": "inhaler", "fg": 2700 }, - { "id": [ "kasaya", "samghati", "antarvasa", "uttarasanga" ], "fg": 2701 }, - { "id": "cig_butt", "fg": 2728 }, - { "id": "joint", "fg": 2731 }, - { "id": "joint_lit", "fg": 2732 }, - { "id": "joint_roach", "fg": 2733 }, - { "id": "aspirin", "fg": 2725 }, - { "id": "bandages", "fg": 2726 }, - { "id": "syringe", "fg": 2737 }, - { "id": "antibiotics", "fg": 2722 }, - { "id": "weak_antibiotic", "fg": 2740 }, - { "id": "strong_antibiotic", "fg": 2736 }, - { "id": "vitamins", "fg": 2739 }, - { "id": "gummy_vitamins", "fg": 2729 }, - { "id": "calcium_tablet", "fg": 2727 }, - { "id": "oxycodone", "fg": 2734 }, - { "id": "tramadol", "fg": 2738 }, - { "id": "codeine", "fg": 2753 }, - { "id": "prussian_blue", "fg": 2735 }, - { "id": "iodine", "fg": 2730 }, - { "id": "antiparasitic", "fg": 2724 }, - { "id": "antifungal", "fg": 2723 }, - { "id": "money_bundle", "fg": 2741 }, - { "id": "mp3", "fg": 2742 }, - { "id": "permanent_marker", "fg": 2777 }, - { "id": "pipe", "fg": 2779 }, - { "id": "cu_pipe", "fg": 2778 }, - { "id": "acorns", "fg": 2780 }, - { "id": "chips", "fg": 2784 }, - { "id": "apple", "fg": 2781 }, - { "id": "banana", "fg": 2782 }, - { "id": "broccoli", "fg": 2783 }, - { "id": "corn", "fg": 2785 }, - { "id": "cucumber", "fg": 2786 }, - { "id": "egg_bird", "fg": 2787 }, - { "id": "grapes", "fg": 2788 }, - { "id": "lemon", "fg": 2792 }, - { "id": "onion", "fg": 2793 }, - { "id": "orange", "fg": 2794 }, - { "id": "pear", "fg": 2795 }, - { "id": "potato", "fg": 2796 }, - { "id": "pumpkin", "fg": 2797 }, - { "id": "tomato", "fg": 2800 }, - { "id": "hickory_nut", "fg": 2789 }, - { "id": "hickory_root", "fg": 2790 }, - { "id": "juniper", "fg": 2791 }, + "fg": 2320 + }, + { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 2316 }, + { "id": "bottle_twoliter", "fg": 2351 }, + { "id": "bowl_pewter", "fg": 2352 }, + { "id": [ "wearable_light", "survivor_light", "wearable_atomic_light_off" ], "fg": 2444 }, + { "id": [ "wearable_light_on", "survivor_light_on", "wearable_atomic_light" ], "fg": 2445 }, + { "id": [ "alternator_car", "alternator_bicycle", "alternator_motorbike" ], "fg": 2461 }, + { "id": [ "flour", "bread_flour" ], "fg": 2486 }, + { "id": [ "pizza_cheese", "pizza_veggy", "pizza_meat" ], "fg": 2517 }, + { "id": [ "microscope", "microscope_dissecting" ], "fg": 2511 }, + { "id": "digging_stick", "fg": 2535 }, + { "id": "sword_cane", "fg": 2594 }, + { "id": "hollow_cane", "fg": 2571 }, + { "id": "cane", "fg": 2597 }, + { "id": "i_staff", "fg": 2573 }, + { "id": "shock_staff", "fg": 2586 }, + { "id": "q_staff", "fg": 2587 }, + { "id": "scarf_fur", "fg": 2591 }, + { "id": "knit_scarf", "fg": 2574 }, + { "id": "scarf_fur_long", "fg": 2592 }, + { "id": "long_knit_scarf", "fg": 2575 }, + { "id": "long_patchwork_scarf", "fg": 2576 }, + { "id": "scarf_long", "fg": 2593 }, + { "id": "patchwork_scarf", "fg": 2584 }, + { "id": "scarf", "fg": 2590 }, + { "id": "scarf_fur_loose", "fg": 2591 }, + { "id": "knit_scarf_loose", "fg": 2574 }, + { "id": "scarf_fur_long_loose", "fg": 2592 }, + { "id": "long_knit_scarf_loose", "fg": 2575 }, + { "id": "long_patchwork_scarf_loose", "fg": 2576 }, + { "id": "scarf_long_loose", "fg": 2593 }, + { "id": "patchwork_scarf_loose", "fg": 2584 }, + { "id": "scarf_loose", "fg": 2590 }, + { "id": "ceramic_cup", "fg": 2607 }, + { "id": "ceramic_mug", "fg": 2608 }, + { "id": "ceramic_shard", "fg": 2609 }, + { "id": "chain", "fg": 2610 }, + { "id": "clay_lump", "fg": 2613 }, + { "id": "bag_plastic", "fg": 2614 }, + { "id": "bag_zipper", "fg": 2615 }, + { "id": "bottle_glass", "fg": 2616 }, + { "id": "bottle_plastic", "fg": 2617 }, + { "id": "bottle_plastic_small", "fg": 2618 }, + { "id": "box_cigarette", "fg": 2619 }, + { "id": "box_small", "fg": 2620 }, + { "id": "can_drink", "fg": 2621 }, + { "id": "can_drink_unsealed", "fg": 2622 }, + { "id": [ "glass", "base_glass_dish" ], "fg": 2623 }, + { "id": "jar_3l_glass", "fg": 2624 }, + { "id": "jar_3l_glass_sealed", "fg": 2625 }, + { "id": "jar_glass", "fg": 2626 }, + { "id": "jar_glass_sealed", "fg": 2627 }, + { "id": "jug_plastic", "fg": 2628 }, + { "id": "wrapper", "fg": 2629 }, + { "id": "cudgel", "fg": 2630 }, + { "id": [ "pie", "pie_maple", "pie_veggy", "pie_meat" ], "bg": 2702 }, + { "id": [ "waffles", "fruit_waffles" ], "fg": 2706 }, + { "id": [ "cookies", "crackers", "biscuit" ], "fg": 2698 }, + { "id": [ "cake2", "cake3", "space_cake" ], "fg": 2697 }, + { "id": "hinge", "fg": 2750 }, + { "id": "inhaler", "fg": 2751 }, + { "id": [ "kasaya", "samghati", "antarvasa", "uttarasanga" ], "fg": 2752 }, + { "id": "cig_butt", "fg": 2779 }, + { "id": "joint", "fg": 2782 }, + { "id": "joint_lit", "fg": 2783 }, + { "id": "joint_roach", "fg": 2784 }, + { "id": "aspirin", "fg": 2776 }, + { "id": "bandages", "fg": 2777 }, + { "id": "syringe", "fg": 2788 }, + { "id": "antibiotics", "fg": 2773 }, + { "id": "weak_antibiotic", "fg": 2791 }, + { "id": "strong_antibiotic", "fg": 2787 }, + { "id": "vitamins", "fg": 2790 }, + { "id": "gummy_vitamins", "fg": 2780 }, + { "id": "calcium_tablet", "fg": 2778 }, + { "id": "oxycodone", "fg": 2785 }, + { "id": "tramadol", "fg": 2789 }, + { "id": "codeine", "fg": 2804 }, + { "id": "prussian_blue", "fg": 2786 }, + { "id": "iodine", "fg": 2781 }, + { "id": "antiparasitic", "fg": 2775 }, + { "id": "antifungal", "fg": 2774 }, + { "id": "money_bundle", "fg": 2792 }, + { "id": "mp3", "fg": 2793 }, + { "id": "permanent_marker", "fg": 2828 }, + { "id": "pipe", "fg": 2830 }, + { "id": "cu_pipe", "fg": 2829 }, + { "id": "acorns", "fg": 2831 }, + { "id": "chips", "fg": 2835 }, + { "id": "apple", "fg": 2832 }, + { "id": "banana", "fg": 2833 }, + { "id": "broccoli", "fg": 2834 }, + { "id": "corn", "fg": 2836 }, + { "id": "cucumber", "fg": 2837 }, + { "id": "egg_bird", "fg": 2838 }, + { "id": "grapes", "fg": 2839 }, + { "id": "lemon", "fg": 2843 }, + { "id": "onion", "fg": 2844 }, + { "id": "orange", "fg": 2845 }, + { "id": "pear", "fg": 2846 }, + { "id": "potato", "fg": 2847 }, + { "id": "pumpkin", "fg": 2848 }, + { "id": "tomato", "fg": 2851 }, + { "id": "hickory_nut", "fg": 2840 }, + { "id": "hickory_root", "fg": 2841 }, + { "id": "juniper", "fg": 2842 }, { "id": [ "seed_hops", @@ -3126,1096 +3172,1099 @@ "seed_mulberries", "seed_elderberries" ], - "fg": 2798 - }, - { "id": "straw_pile", "fg": 2799 }, - { "id": "wheat", "fg": 2801 }, - { "id": "withered", "fg": 2802 }, - { "id": "bee_balm", "fg": 2803 }, - { "id": "carrot_wild", "fg": 2804 }, - { "id": "dogbane", "fg": 2805 }, - { "id": "egg_reptile", "fg": 2806 }, - { "id": "mugwort", "fg": 2807 }, - { "id": "thyme", "fg": 2808 }, - { "id": "veggy_wild", "fg": 2809 }, - { "id": "wild_herbs", "fg": 2810 }, - { "id": "feces_manure", "fg": 2814 }, - { "id": "feces_bird", "fg": 2811 }, - { "id": "feces_cow", "fg": 2812 }, - { "id": "feces_dog", "fg": 2813 }, - { "id": "feces_roach", "fg": 2815 }, - { "id": "fetid_goop", "fg": 2816 }, - { "id": "rag_bloody", "fg": 2819 }, - { "id": "ash", "fg": 2869 }, - { "id": "brick", "fg": 2870 }, - { "id": "scrap", "fg": 2873 }, - { "id": "e_scrap", "fg": 2872 }, - { "id": "steel_chunk", "fg": 2874 }, - { "id": "steel_lump", "fg": 2875 }, - { "id": "wire", "fg": 2876 }, - { "id": "cable", "fg": 2871 }, - { "id": "spring", "fg": 2878 }, - { "id": "survnote", "fg": 2879 }, - { "id": "creepy_doll", "fg": 2880 }, - { "id": "talking_doll", "fg": 2880 }, - { "id": "teapot", "fg": 2882 }, - { "id": "thermometer", "fg": 2883 }, - { "id": "crucible_clay", "fg": 2885 }, - { "id": "flashlight", "fg": 2887 }, - { "id": "heavy_flashlight", "fg": 2890 }, - { "id": "saw", "fg": 2900 }, - { "id": "screwdriver_set", "fg": 2896 }, - { "id": "wrench", "fg": 2901 }, - { "id": "hammer", "fg": 2889 }, - { "id": "hacksaw", "fg": 2888 }, - { "id": "knife_meat_cleaver", "fg": 2895 }, - { "id": "knife_vegetable_cleaver", "fg": 2899 }, + "fg": 2849 + }, + { "id": "straw_pile", "fg": 2850 }, + { "id": "wheat", "fg": 2852 }, + { "id": "withered", "fg": 2853 }, + { "id": "bee_balm", "fg": 2854 }, + { "id": "carrot_wild", "fg": 2855 }, + { "id": "dogbane", "fg": 2856 }, + { "id": "egg_reptile", "fg": 2857 }, + { "id": "mugwort", "fg": 2858 }, + { "id": "thyme", "fg": 2859 }, + { "id": "veggy_wild", "fg": 2860 }, + { "id": "wild_herbs", "fg": 2861 }, + { "id": "feces_manure", "fg": 2865 }, + { "id": "feces_bird", "fg": 2862 }, + { "id": "feces_cow", "fg": 2863 }, + { "id": "feces_dog", "fg": 2864 }, + { "id": "feces_roach", "fg": 2866 }, + { "id": "fetid_goop", "fg": 2867 }, + { "id": "rag_bloody", "fg": 2870 }, + { "id": "ash", "fg": 2920 }, + { "id": "brick", "fg": 2921 }, + { "id": "scrap", "fg": 2924 }, + { "id": "e_scrap", "fg": 2923 }, + { "id": "steel_chunk", "fg": 2925 }, + { "id": "steel_lump", "fg": 2926 }, + { "id": "wire", "fg": 2927 }, + { "id": "cable", "fg": 2922 }, + { "id": "spring", "fg": 2929 }, + { "id": "survnote", "fg": 2930 }, + { "id": "creepy_doll", "fg": 2931 }, + { "id": "talking_doll", "fg": 2931 }, + { "id": "teapot", "fg": 2933 }, + { "id": "thermometer", "fg": 2934 }, + { "id": "crucible_clay", "fg": 2936 }, + { "id": "flashlight", "fg": 2938 }, + { "id": "heavy_flashlight", "fg": 2941 }, + { "id": "saw", "fg": 2951 }, + { "id": "screwdriver_set", "fg": 2947 }, + { "id": "wrench", "fg": 2952 }, + { "id": "hammer", "fg": 2940 }, + { "id": "hacksaw", "fg": 2939 }, + { "id": "knife_meat_cleaver", "fg": 2946 }, + { "id": "knife_vegetable_cleaver", "fg": 2950 }, { "id": "lighter", - "fg": [ { "weight": 1, "sprite": 2892 }, { "weight": 1, "sprite": 2891 }, { "weight": 1, "sprite": 2893 } ] - }, - { "id": "makeshift_crowbar", "fg": 2894 }, - { "id": "esbit_stove", "fg": 2886 }, - { "id": "usb_drive", "fg": 2898 }, - { "id": "cash_card", "fg": 2902 }, - { "id": "file", "fg": 2903 }, - { "id": "fp_loyalty_card", "fg": 2904 }, - { "id": "id_industrial", "fg": 2905 }, - { "id": "id_military", "fg": 2906 }, - { "id": "id_science", "fg": 2907 }, - { "id": "bowl_plastic", "fg": 2908 }, - { "id": "cup_plastic", "fg": 2909 }, - { "id": "fork", "fg": 2910 }, - { "id": "knife_butter", "fg": 2911 }, - { "id": "washboard", "fg": 2918 }, - { "id": "wash_kit", "fg": 2917 }, - { "id": "helmet_army", "fg": 2923 }, - { "id": "foodperson_mask", "fg": 2921 }, - { "id": "foodperson_mask_on", "fg": 2922 }, - { "id": "ballistic_vest_esapi", "fg": 2920 }, - { "id": "saddle", "fg": 1824 }, - { "id": "blt", "fg": 1827 }, - { "id": "brain_cooked", "fg": 1828 }, - { "id": "butter", "fg": 1829 }, - { "id": "cheese_fries", "fg": 1830 }, - { "id": "chili", "fg": 1831 }, - { "id": "chilidogs", "fg": 1832 }, - { "id": "cooked_dinner", "fg": 1833 }, - { "id": "corndogs_cooked", "fg": 1834 }, - { "id": "corndogs_frozen", "fg": 1835 }, - { "id": "corndogs_homemade", "fg": 1836 }, - { "id": "cracklins", "fg": 1837 }, - { "id": "currywurst", "fg": 1838 }, - { "id": "demihuman_cooked", "fg": 1839 }, - { "id": "demihuman_lard", "fg": 1840 }, - { "id": "demihuman_stomach_boiled", "fg": 1841 }, - { "id": "demihuman_tallow", "fg": 1842 }, - { "id": "fish_bagel", "fg": 1843 }, - { "id": "fish_cooked", "fg": 1844 }, - { "id": "fish_sandwich", "fg": 1845 }, - { "id": "fresh_fries", "fg": 1846 }, - { "id": "glazed_tenderloin", "fg": 1847 }, - { "id": "homemade_burrito", "fg": 1848 }, - { "id": "hotdogs_campfire", "fg": 1849 }, - { "id": "hotdogs_cooked", "fg": 1850 }, - { "id": "hotdogs_frozen", "fg": 1851 }, - { "id": "hotdogs_newyork", "fg": 1852 }, - { "id": "insta_salad", "fg": 1853 }, - { "id": "junk_burrito", "fg": 1854 }, - { "id": "kidney_cooked", "fg": 1855 }, - { "id": "lard", "fg": 1856 }, - { "id": "lentils_cooked", "fg": 1857 }, - { "id": "liver_cooked", "fg": 1858 }, - { "id": "liver_onion", "fg": 1859 }, - { "id": "lung_cooked", "fg": 1860 }, - { "id": "marshmallow", "fg": 1861 }, - { "id": "meat_cooked", "fg": 1862 }, - { "id": "meat_scrap_cooked", "fg": 1863 }, - { "id": "meat_smoked", "fg": 1864 }, - { "id": "meatball", "fg": 1865 }, - { "id": "meatball_raw", "fg": 1866 }, - { "id": "mutant_human_cooked", "fg": 1867 }, - { "id": "mutant_human_lard", "fg": 1868 }, - { "id": "mutant_human_tallow", "fg": 1869 }, - { "id": "mutant_lard", "fg": 1870 }, - { "id": "mutant_meat_cooked", "fg": 1871 }, - { "id": "mutant_tallow", "fg": 1872 }, - { "id": "nachos", "fg": 1873 }, - { "id": "nachosc", "fg": 1874 }, - { "id": "nachosm", "fg": 1875 }, - { "id": "nachosmc", "fg": 1876 }, - { "id": "nachosv", "fg": 1877 }, - { "id": "nachosvc", "fg": 1878 }, - { "id": "oatmeal_cooked", "fg": 1879 }, - { "id": "oatmeal_deluxe", "fg": 1880 }, - { "id": "pan_roasted_corn", "fg": 1881 }, - { "id": "pizza_supreme", "fg": 1882 }, - { "id": "popcorn", "fg": 1883 }, - { "id": "popcorn2", "fg": 1884 }, - { "id": "quesadilla_cheese", "fg": 1885 }, - { "id": "rice_cooked", "fg": 1886 }, - { "id": "sandwich_cheese", "fg": 1887 }, - { "id": "sandwich_cheese_grilled", "fg": 1888 }, - { "id": "sandwich_cucumber", "fg": 1889 }, - { "id": "sandwich_deluxe", "fg": 1890 }, - { "id": "sandwich_fairy", "fg": 1891 }, - { "id": "sandwich_honey", "fg": 1892 }, - { "id": "sandwich_jam", "fg": 1893 }, - { "id": "sandwich_jam_butter", "fg": 1894 }, - { "id": "sandwich_pb", "fg": 1895 }, - { "id": "sandwich_pbh", "fg": 1896 }, - { "id": "sandwich_pbj", "fg": 1897 }, - { "id": "sandwich_pbm", "fg": 1898 }, - { "id": "sandwich_sauce", "fg": 1899 }, - { "id": "sandwich_t", "fg": 1900 }, - { "id": "sandwich_veggy", "fg": 1901 }, - { "id": "sausage_cooked", "fg": 1902 }, - { "id": "sloppyjoe", "fg": 1903 }, - { "id": "spaghetti_cooked", "fg": 1904 }, - { "id": "stewed_tripe", "fg": 1905 }, - { "id": "stomach_boiled", "fg": 1906 }, - { "id": "stuffed_clams", "fg": 1907 }, - { "id": "sweetbread_cooked", "fg": 1908 }, - { "id": "taco", "fg": 1909 }, - { "id": "tallow", "fg": 1910 }, - { "id": "toasterpastry", "fg": 1911 }, - { "id": "veggy_cooked", "fg": 1912 }, - { "id": "2byarm_guard", "fg": 1913 }, - { "id": "2byshin_guard", "fg": 1914 }, - { "id": "adhesive_bandages", "fg": 1915 }, - { "id": "arm_warmers", "fg": 1916 }, - { "id": "arrowrest", "fg": 1917 }, - { "id": "atomic_light", "fg": 1918 }, - { "id": "atomic_light_off", "fg": 1919 }, - { "id": "b_paint", "fg": 1920 }, - { "id": "bandana", "fg": 1921 }, - { "id": "barley", "fg": 1922 }, - { "id": "boltcutters", "fg": 1923 }, - { "id": "bottle_opener", "fg": 1924 }, - { "id": "bow_saw", "fg": 1925 }, - { "id": "briefcase", "fg": 1926 }, - { "id": "cable_instrument", "fg": 1927 }, - { "id": "cable_xlr", "fg": 1928 }, - { "id": "can_opener", "fg": 1929 }, - { "id": "candle", "fg": 1930 }, - { "id": "candlestick", "fg": 1931 }, - { "id": "cannonball_4lb", "fg": 1932 }, - { "id": "carving_fork", "fg": 1933 }, - { "id": "ceramic_armor", "fg": 1934 }, - { "id": "chain_link", "fg": 1936 }, - { "id": "chainmail_arms", "fg": 1937 }, - { "id": "chainmail_hood", "fg": 1938 }, - { "id": "chainmail_legs", "fg": 1939 }, - { "id": "chainmail_suit_faraday", "fg": 1940 }, - { "id": "charcoal", "fg": 1941 }, - { "id": "chess", "fg": 1942 }, - { "id": "chipper", "fg": 1943 }, - { "id": "chisel", "fg": 1944 }, - { "id": "clarinet", "fg": 1945 }, - { "id": "clay_pot_flower", "fg": 1946 }, - { "id": "colander_steel", "fg": 1947 }, - { "id": "copper_pan", "fg": 1948 }, - { "id": "cordless_drill", "fg": 1949 }, - { "id": "corkscrew", "fg": 1950 }, - { "id": "cow_bell", "fg": 1951 }, - { "id": "crown_golden", "fg": 1952 }, - { "id": "data_card", "fg": 1953 }, - { "id": "diazepam", "fg": 1954 }, - { "id": "dish_towel", "fg": 1955 }, - { "id": "esapi_plate", "fg": 1956 }, - { "id": "esbi_plate", "fg": 1957 }, - { "id": "eyedrops", "fg": 1958 }, - { "id": "feather", "fg": 1960 }, - { "id": "felt_patch", "fg": 1961 }, - { "id": "fishing_hook_basic", "fg": 1962 }, - { "id": "flask_yeast", "fg": 1963 }, - { "id": "flint_steel", "fg": 1964 }, - { "id": "flute", "fg": 1965 }, - { "id": "folding_poncho", "fg": 1966 }, - { "id": "food_processor", "fg": 1967 }, - { "id": "footrags", "fg": 1968 }, - { "id": "footrags_fur", "fg": 1969 }, - { "id": "footrags_leather", "fg": 1970 }, - { "id": "footrags_wool", "fg": 1971 }, - { "id": "frisbee", "fg": 1972 }, - { "id": "g_paint", "fg": 1973 }, - { "id": "garlic", "fg": 1974 }, - { "id": "garlic_press", "fg": 1975 }, - { "id": "glass_plate", "fg": 1976 }, - { "id": "glass_tinted", "fg": 1977 }, - { "id": "glasses_bifocal", "fg": 1978 }, - { "id": "gloves_light", "fg": 1980 }, - { "id": "hair_dryer", "fg": 1981 }, - { "id": "hammer_sledge", "fg": 1982 }, - { "id": "hammer_sledge_engineer", "fg": 1983 }, - { "id": "hammer_sledge_heavy", "fg": 1984 }, - { "id": "hammer_sledge_short", "fg": 1985 }, - { "id": "hand_axe", "fg": 1986 }, - { "id": "hand_drill", "fg": 1987 }, - { "id": "hand_rims", "fg": 1988 }, - { "id": "handrolled_cig", "fg": 1989 }, - { "id": "hard_steel_armor", "fg": 1990 }, - { "id": "harmonica_holder", "fg": 1991 }, - { "id": "hat_chef", "fg": 1992 }, - { "id": "iron_pot", "fg": 1993 }, - { "id": "jack", "fg": 1994 }, - { "id": "jack_makeshift", "fg": 1995 }, - { "id": "jack_small", "fg": 1996 }, - { "id": "kettle", "fg": 1998 }, - { "id": "ladle", "fg": 1999 }, - { "id": "laptop", "fg": 2000 }, - { "id": "leg_warmers", "fg": 2001 }, - { "id": "link_sheet", "fg": 2002 }, - { "id": "machete", "fg": 2003 }, - { "id": "makeshift_bayonet", "fg": 2004 }, - { "id": "makeshift_hammer", "fg": 2005 }, - { "id": "makeshift_machete", "fg": 2006 }, - { "id": "makeshift_stethoscope", "fg": 2007 }, - { "id": "matches", "fg": 2008 }, - { "id": "material_shrd_limestone", "fg": 2009 }, - { "id": "mbag", "fg": 2010 }, - { "id": "mess_kit", "fg": 2011 }, - { "id": "mess_tin", "fg": 2012 }, - { "id": "meth", "fg": 2013 }, - { "id": "mil_mess_kit", "fg": 2014 }, - { "id": "morphine", "fg": 2015 }, - { "id": "mortar_pestle", "fg": 2016 }, - { "id": "motor_tiny", "fg": 2017 }, - { "id": "mouthpiece", "fg": 2018 }, - { "id": "office_holepunch", "fg": 2019 }, - { "id": "omnicamera", "fg": 2020 }, - { "id": "p_paint", "fg": 2021 }, - { "id": "paint_brush", "fg": 2022 }, - { "id": "pan", "fg": 2023 }, - { "id": "paper", "fg": 2024 }, - { "id": "peeler", "fg": 2025 }, - { "id": "pipe_fittings", "fg": 2026 }, - { "id": "plastic_pot_flower", "fg": 2027 }, - { "id": "pliers", "fg": 2028 }, - { "id": "plums", "fg": 2029 }, - { "id": "pot", "fg": 2030 }, - { "id": "pot_canning", "fg": 2031 }, - { "id": "pot_copper", "fg": 2032 }, - { "id": "pot_helmet", "fg": 2033 }, - { "id": "pot_makeshift", "fg": 2034 }, - { "id": "pot_makeshift_copper", "fg": 2035 }, - { "id": "potato_masher", "fg": 2036 }, - { "id": "r_paint", "fg": 2037 }, - { "id": "reading_light", "fg": 2038 }, - { "id": "reading_light_on", "fg": 2039 }, - { "id": "receiver", "fg": 2040 }, - { "id": "reinforced_glass_pane", "fg": 2041 }, - { "id": "rolling_pin", "fg": 2042 }, - { "id": "scrap_bronze", "fg": 2043 }, - { "id": "scrap_felt", "fg": 2044 }, - { "id": "sheet_felt", "fg": 2045 }, - { "id": "sheet_felt_patchwork", "fg": 2046 }, - { "id": "shocktonfa_off", "fg": 2047 }, - { "id": "shocktonfa_on", "fg": 2048 }, - { "id": "slingpack", "fg": 2049 }, - { "id": "smart_phone", "fg": 2050 }, - { "id": "soap", "fg": 2051 }, - { "id": "solder_wire", "fg": 2052 }, - { "id": "spatula", "fg": 2053 }, - { "id": "spider_egg", "fg": 2054 }, - { "id": "spike", "fg": 2055 }, - { "id": "steel_armor", "fg": 2056 }, - { "id": "steel_pan", "fg": 2057 }, - { "id": "stethoscope", "fg": 2058 }, - { "id": "stock_pot", "fg": 2059 }, - { "id": "survivor_mess_kit", "fg": 2061 }, - { "id": "swage", "fg": 2062 }, - { "id": "tazer", "fg": 2063 }, - { "id": "teleumbrella", "fg": 2064 }, - { "id": "tinder", "fg": 2065 }, - { "id": "tinderbox", "fg": 2066 }, - { "id": "tinfoil_hat", "fg": 2067 }, - { "id": "tonfa", "fg": 2068 }, - { "id": "tonfa_wood", "fg": 2069 }, - { "id": "tongs", "fg": 2070 }, - { "id": "unfinished_charcoal", "fg": 2071 }, - { "id": "w_paint", "fg": 2072 }, - { "id": "water_purifier", "fg": 2073 }, - { "id": "wheel", "fg": 2074 }, - { "id": "wheel_10", "fg": 2075 }, - { "id": "wheel_barrow", "fg": 2076 }, - { "id": "wheel_bicycle", "fg": 2077 }, - { "id": "wheel_bicycle_or", "fg": 2078 }, - { "id": "wheel_motorbike", "fg": 2079 }, - { "id": "wheel_motorbike_or", "fg": 2080 }, - { "id": "wheel_skate", "fg": 2081 }, - { "id": "wheel_slick", "fg": 2082 }, - { "id": "wheel_small", "fg": 2083 }, - { "id": "wheel_tricycle", "fg": 2084 }, - { "id": "wheel_wheelchair", "fg": 2085 }, - { "id": "whisk", "fg": 2086 }, - { "id": "wine_glass", "fg": 2087 }, - { "id": "wire_barbed", "fg": 2088 }, - { "id": "y_paint", "fg": 2089 }, - { "id": "halligan", "fg": 2090 }, - { "id": "cig", "fg": 2116 }, - { "id": "cig_lit", "fg": 2117 }, - { "id": "copper_ring", "fg": 2118 }, - { "id": "g_shovel", "fg": 2119 }, - { "id": "lsd", "fg": 2120 }, - { "id": "silver_ring", "fg": 2121 }, - { "id": "thermal_mask", "fg": 2122 }, - { "id": "thermal_socks", "fg": 2123 }, - { "id": "tie_clipon", "fg": 2124 }, - { "id": "whistle", "fg": 2125 }, - { "id": "2_shot_special", "fg": 2126 }, - { "id": "LAW_Packed", "fg": 2128 }, - { "id": "af2011a1_38super", "fg": 2130 }, - { "id": "ar_pistol", "fg": 2131 }, - { "id": "ashot", "fg": 2132 }, - { "id": "bfr", "fg": 2133 }, - { "id": "bigun", "fg": 2134 }, - { "id": "bond_410", "fg": 2135 }, - { "id": "bt_apc9k", "fg": 2136 }, - { "id": "colt_army", "fg": 2137 }, - { "id": "colt_navy", "fg": 2138 }, - { "id": "colt_saa", "fg": 2139 }, - { "id": "cop_38", "fg": 2140 }, - { "id": "cz75", "fg": 2141 }, - { "id": "deagle_44", "fg": 2142 }, - { "id": "draco", "fg": 2143 }, - { "id": "flamethrower_crude", "fg": 2144 }, - { "id": "flamethrower_simple", "fg": 2145 }, - { "id": "fn1910", "fg": 2146 }, - { "id": "fn57", "fg": 2147 }, - { "id": "fn_p90", "fg": 2148 }, - { "id": "glock_17", "fg": 2149 }, - { "id": "glock_18c", "fg": 2150 }, - { "id": "glock_19", "fg": 2151 }, - { "id": "glock_20", "fg": 2152 }, - { "id": "glock_20_var_glock_40", "fg": 2153 }, - { "id": "glock_21", "fg": 2154 }, - { "id": "glock_22", "fg": 2155 }, - { "id": "glock_29", "fg": 2156 }, - { "id": "glock_31", "fg": 2157 }, - { "id": "hi_power_40", "fg": 2158 }, - { "id": "hi_power_9mm", "fg": 2159 }, - { "id": "hk_mp5_semi_pistol", "fg": 2161 }, - { "id": "hk_mp7", "fg": 2162 }, - { "id": "hk_ump45", "fg": 2163 }, - { "id": "hptc9", "fg": 2164 }, - { "id": "hptcf380", "fg": 2165 }, - { "id": "kp32", "fg": 2167 }, - { "id": "kp3at", "fg": 2168 }, - { "id": "kpf9", "fg": 2169 }, - { "id": "l_bak_223", "fg": 2170 }, - { "id": "launcher_simple", "fg": 2171 }, - { "id": "lemat_revolver", "fg": 2172 }, - { "id": "m11", "fg": 2173 }, - { "id": "m17", "fg": 2174 }, - { "id": "m18", "fg": 2175 }, - { "id": "m1911-460", "fg": 2176 }, - { "id": "m1911_10", "fg": 2178 }, - { "id": "m1911_var_m1911_MEU", "fg": 2179 }, - { "id": "m320", "fg": 2180 }, - { "id": "m4_carbine_var_m4_cqbr", "fg": 2181 }, - { "id": "m9", "fg": 2182 }, - { "id": "mac_10", "fg": 2183 }, - { "id": "mac_11", "fg": 2184 }, - { "id": "makarov", "fg": 2185 }, - { "id": "mauser_c96", "fg": 2186 }, - { "id": "mauser_m714", "fg": 2187 }, - { "id": "mgl", "fg": 2188 }, - { "id": "minispeargun", "fg": 2189 }, - { "id": "model_10_revolver", "fg": 2190 }, - { "id": "moss_brownie", "fg": 2191 }, - { "id": "nailgun", "fg": 2192 }, - { "id": "nailrifle", "fg": 2193 }, - { "id": "needlepistol", "fg": 2194 }, - { "id": "oa93", "fg": 2195 }, - { "id": "p08", "fg": 2196 }, - { "id": "p220_10", "fg": 2197 }, - { "id": "p226_357sig", "fg": 2198 }, - { "id": "p226_9mm", "fg": 2199 }, - { "id": "p320_357sig", "fg": 2200 }, - { "id": "paintballgun", "fg": 2201 }, - { "id": "pipe_double_shotgun", "fg": 2202 }, - { "id": "pistol_flintlock", "fg": 2203 }, - { "id": "px4", "fg": 2204 }, - { "id": "px4_40", "fg": 2205 }, - { "id": "raging_bull", "fg": 2206 }, - { "id": "raging_judge", "fg": 2207 }, - { "id": "revolver_shotgun", "fg": 2208 }, - { "id": "rm103a_pistol", "fg": 2209 }, - { "id": "rm2000_smg", "fg": 2210 }, - { "id": "rm228", "fg": 2211 }, - { "id": "ruger_lcr_22", "fg": 2212 }, - { "id": "ruger_lcr_38", "fg": 2213 }, - { "id": "ruger_redhawk", "fg": 2214 }, - { "id": "rugerlcp", "fg": 2215 }, - { "id": "sig_40", "fg": 2216 }, - { "id": "sig_mosquito", "fg": 2217 }, - { "id": "sig_p230", "fg": 2218 }, - { "id": "skorpion_61", "fg": 2219 }, - { "id": "smg_40", "fg": 2220 }, - { "id": "smg_45", "fg": 2221 }, - { "id": "sp2022", "fg": 2222 }, - { "id": "streetsweeper", "fg": 2223 }, - { "id": "surv_hand_cannon", "fg": 2224 }, - { "id": "surv_six_shooter", "fg": 2225 }, - { "id": "sw629", "fg": 2226 }, - { "id": "sw_22", "fg": 2227 }, - { "id": "sw_500", "fg": 2228 }, - { "id": "sw_610", "fg": 2229 }, - { "id": "sw_619", "fg": 2230 }, - { "id": "taurus_spectrum", "fg": 2231 }, - { "id": "tec9", "fg": 2232 }, - { "id": "tokarev", "fg": 2233 }, - { "id": "triple_launcher_simple", "fg": 2234 }, - { "id": "unbio_blaster_gun", "fg": 2235 }, - { "id": "usp_45", "fg": 2236 }, - { "id": "usp_45_var_mk23", "fg": 2237 }, - { "id": "usp_9mm", "fg": 2238 }, - { "id": "uzi", "fg": 2239 }, - { "id": "v29", "fg": 2240 }, - { "id": "v29_cheap", "fg": 2241 }, - { "id": "walther_ccp", "fg": 2242 }, - { "id": "walther_p22", "fg": 2243 }, - { "id": "walther_p38", "fg": 2244 }, - { "id": "walther_ppq_40", "fg": 2245 }, - { "id": "walther_ppq_45", "fg": 2246 }, - { "id": "walther_ppq_9mm", "fg": 2247 }, - { "id": "witness_10", "fg": 2248 }, - { "id": "xd_10", "fg": 2249 }, - { "id": "book_pieces", "fg": 2264 }, - { "id": "book_ruined", "fg": 2265 }, - { "id": "button_plastic", "fg": 2304 }, - { "id": "button_steel", "fg": 2305 }, - { "id": "button_wood", "fg": 2306 }, - { "id": "antenna", "fg": 2307 }, - { "id": "badge_deputy", "fg": 2308 }, - { "id": "coconut", "fg": 2309 }, - { "id": "directional_antenna", "fg": 2310 }, - { "id": "halter_top", "fg": 2311 }, - { "id": "hand_crank_charger", "fg": 2312 }, - { "id": "hops", "fg": 2313 }, - { "id": "kidney", "fg": 2314 }, - { "id": "lettuce", "fg": 2315 }, - { "id": "lily_flower", "fg": 2316 }, - { "id": "scorecard", "fg": 2317 }, - { "id": "spinach", "fg": 2318 }, - { "id": "altered_comb", "fg": 2319 }, - { "id": "gasdiscount_gold", "fg": 2320 }, - { "id": "gasdiscount_platinum", "fg": 2321 }, - { "id": "gasdiscount_silver", "fg": 2322 }, - { "id": "gold_hairpin", "fg": 2323 }, - { "id": "nanoskirt", "fg": 2324 }, - { "id": "pearl", "fg": 2325 }, - { "id": "platinum_ring", "fg": 2326 }, - { "id": "skirt_grass", "fg": 2327 }, - { "id": "skirt_leather", "fg": 2328 }, - { "id": "wallet_leather", "fg": 2329 }, - { "id": "copper_necklace", "fg": 2330 }, - { "id": "pearl_collar", "fg": 2331 }, - { "id": "alexandrite_gold_pendant_necklace", "fg": 2332 }, - { "id": "amethyst_gold_pendant_necklace", "fg": 2333 }, - { "id": "aquamarine_gold_pendant_necklace", "fg": 2334 }, - { "id": "blue_topaz_gold_pendant_necklace", "fg": 2335 }, - { "id": "citrine_gold_pendant_necklace", "fg": 2336 }, - { "id": "diamond_gold_pendant_necklace", "fg": 2337 }, - { "id": "emerald_gold_pendant_necklace", "fg": 2338 }, - { "id": "garnet_gold_pendant_necklace", "fg": 2339 }, - { "id": "gold_necklace", "fg": 2340 }, - { "id": "opal_gold_pendant_necklace", "fg": 2341 }, - { "id": "pearl_gold_pendant_necklace", "fg": 2342 }, - { "id": "peridot_gold_pendant_necklace", "fg": 2343 }, - { "id": "ruby_gold_pendant_necklace", "fg": 2344 }, - { "id": "sapphire_gold_pendant_necklace", "fg": 2345 }, - { "id": "tourmaline_gold_pendant_necklace", "fg": 2346 }, - { "id": "alexandrite_platinum_pendant_necklace", "fg": 2347 }, - { "id": "amethyst_platinum_pendant_necklace", "fg": 2348 }, - { "id": "aquamarine_platinum_pendant_necklace", "fg": 2349 }, - { "id": "blue_topaz_platinum_pendant_necklace", "fg": 2350 }, - { "id": "citrine_platinum_pendant_necklace", "fg": 2351 }, - { "id": "diamond_platinum_pendant_necklace", "fg": 2352 }, - { "id": "emerald_platinum_pendant_necklace", "fg": 2353 }, - { "id": "garnet_platinum_pendant_necklace", "fg": 2354 }, - { "id": "opal_platinum_pendant_necklace", "fg": 2355 }, - { "id": "pearl_platinum_pendant_necklace", "fg": 2356 }, - { "id": "peridot_platinum_pendant_necklace", "fg": 2357 }, - { "id": "platinum_necklace", "fg": 2358 }, - { "id": "ruby_platinum_pendant_necklace", "fg": 2359 }, - { "id": "sapphire_platinum_pendant_necklace", "fg": 2360 }, - { "id": "tourmaline_platinum_pendant_necklace", "fg": 2361 }, - { "id": "alexandrite_silver_pendant_necklace", "fg": 2362 }, - { "id": "amethyst_silver_pendant_necklace", "fg": 2363 }, - { "id": "aquamarine_silver_pendant_necklace", "fg": 2364 }, - { "id": "blue_topaz_silver_pendant_necklace", "fg": 2365 }, - { "id": "citrine_silver_pendant_necklace", "fg": 2366 }, - { "id": "diamond_silver_pendant_necklace", "fg": 2367 }, - { "id": "emerald_silver_pendant_necklace", "fg": 2368 }, - { "id": "garnet_silver_pendant_necklace", "fg": 2369 }, - { "id": "opal_silver_pendant_necklace", "fg": 2370 }, - { "id": "pearl_silver_pendant_necklace", "fg": 2371 }, - { "id": "peridot_silver_pendant_necklace", "fg": 2372 }, - { "id": "ruby_silver_pendant_necklace", "fg": 2373 }, - { "id": "sapphire_silver_pendant_necklace", "fg": 2374 }, - { "id": "silver_necklace", "fg": 2375 }, - { "id": "tourmaline_silver_pendant_necklace", "fg": 2376 }, - { "id": "alder_bark", "fg": 2377 }, - { "id": "barrette", "fg": 2378 }, - { "id": "birchbark", "fg": 2379 }, - { "id": "caff_gum", "fg": 2380 }, - { "id": "cattail_stalk", "fg": 2381 }, - { "id": "golf_tee", "fg": 2382 }, - { "id": "gum", "fg": 2383 }, - { "id": "hand_pump", "fg": 2384 }, - { "id": "honeydew", "fg": 2385 }, - { "id": "ifak_pouch", "fg": 2386 }, - { "id": "knitting_needles", "fg": 2387 }, - { "id": "lasagne", "fg": 2388 }, - { "id": "magnifying_glass", "fg": 2389 }, - { "id": "mininuke", "fg": 2390 }, - { "id": "mininuke_act", "fg": 2391 }, - { "id": "net", "fg": 2392 }, - { "id": "rolling_paper", "fg": 2393 }, - { "id": "tanbark", "fg": 2394 }, - { "id": "willowbark", "fg": 2397 }, - { "id": "shoulder_strap", "fg": 2398 }, - { "id": "deck_of_cards", "fg": 2399 }, - { "id": "hairpin", "fg": 2400 }, - { "id": "weed", "fg": 2401 }, - { "id": "ceramic_bowl", "fg": 2402 }, - { "id": "chestrig", "fg": 2403 }, - { "id": "radio_car", "fg": 2404 }, - { "id": "radio_car_box", "fg": 2405 }, - { "id": "radio_car_on", "fg": 2406 }, - { "id": "radio_car_wheel", "fg": 2407 }, - { "id": "radiocontrol", "fg": 2408 }, - { "id": "rc_car_box", "fg": 2409 }, - { "id": "toaster", "fg": 2410 }, - { "id": "xl_chestrig", "fg": 2411 }, - { "id": "alternator_truck", "fg": 2413 }, - { "id": "ammolink", "fg": 2414 }, - { "id": "angle_grinder", "fg": 2415 }, - { "id": "atomic_lamp", "fg": 2416 }, - { "id": "atomic_lamp_off", "fg": 2417 }, - { "id": "barometer", "fg": 2418 }, - { "id": "birdfood", "fg": 2419 }, - { "id": "bismuth", "fg": 2420 }, - { "id": "brick_kiln", "fg": 2421 }, - { "id": "caffeine", "fg": 2422 }, - { "id": "camera", "fg": 2423 }, - { "id": "chem_citric_acid", "fg": 2424 }, - { "id": "chem_sulphur", "fg": 2425 }, - { "id": "chunk_sulfur", "fg": 2426 }, - { "id": "circsaw_off", "fg": 2427 }, - { "id": "circsaw_on", "fg": 2428 }, - { "id": "coal_lump", "fg": 2429 }, - { "id": "con_mix", "fg": 2430 }, - { "id": "disc_golf", "fg": 2431 }, - { "id": "drivebelt", "fg": 2432 }, - { "id": "eink_tablet_pc", "fg": 2433 }, - { "id": "flatbread", "fg": 2434 }, - { "id": "gelbox", "fg": 2436 }, - { "id": "generator_7500w", "fg": 2437 }, - { "id": "glowstick", "fg": 2438 }, - { "id": "glowstick_dead", "fg": 2439 }, - { "id": "glowstick_lit", "fg": 2440 }, - { "id": "gold_small", "fg": 2441 }, - { "id": "golf_club", "fg": 2442 }, - { "id": "handflare", "fg": 2443 }, - { "id": "heatpack", "fg": 2444 }, - { "id": "heatpack_used", "fg": 2445 }, - { "id": "hoe", "fg": 2446 }, - { "id": "homeopathic_pills", "fg": 2447 }, - { "id": "horn_bicycle", "fg": 2448 }, - { "id": "jumper_cable", "fg": 2449 }, - { "id": "kiln", "fg": 2450 }, - { "id": "lead", "fg": 2451 }, - { "id": "leather", "fg": 2452 }, - { "id": "lightstrip", "fg": 2453 }, - { "id": "material_aluminium_ingot", "fg": 2454 }, - { "id": "material_limestone", "fg": 2455 }, - { "id": "material_rhodonite", "fg": 2456 }, - { "id": "material_rocksalt", "fg": 2457 }, - { "id": "material_zincite", "fg": 2458 }, - { "id": "metal_smoother", "fg": 2459 }, - { "id": "multitool", "fg": 2461 }, - { "id": "nic_gum", "fg": 2462 }, - { "id": "pencil", "fg": 2463 }, - { "id": "pipe_cleaner", "fg": 2464 }, - { "id": "pipe_glass", "fg": 2465 }, - { "id": "platinum_small", "fg": 2467 }, - { "id": "polisher", "fg": 2468 }, - { "id": "press", "fg": 2469 }, - { "id": "puller", "fg": 2470 }, - { "id": "rake", "fg": 2471 }, - { "id": "razorclaw_roe", "fg": 2472 }, - { "id": "sickle", "fg": 2473 }, - { "id": "silver_small", "fg": 2474 }, - { "id": "small_repairkit", "fg": 2475 }, - { "id": "tanned_hide", "fg": 2476 }, - { "id": "tanned_pelt", "fg": 2477 }, - { "id": "tourist_table", "fg": 2478 }, - { "id": "zinc_metal", "fg": 2479 }, - { "id": "beartrap", "fg": 2480 }, - { "id": "tr_beartrap", "fg": 2481 }, - { "id": "wire_mesh", "fg": 2482 }, - { "id": "cannabis", "fg": 2483 }, - { "id": "dnd_handbook", "fg": 2485 }, - { "id": "holybook_bible1", "fg": 2486 }, - { "id": "holybook_bible3", "fg": 2487 }, - { "id": "l-stick", "fg": 2488 }, - { "id": "l-stick_on", "fg": 2489 }, - { "id": "makarovmag", "fg": 2490 }, - { "id": "manual_brawl", "fg": 2491 }, - { "id": "manual_carpentry", "fg": 2492 }, - { "id": "manual_dodge_kid", "fg": 2493 }, - { "id": "manual_driving", "fg": 2494 }, - { "id": "manual_melee", "fg": 2495 }, - { "id": "philosophy_book", "fg": 2496 }, - { "id": "phonebook", "fg": 2497 }, - { "id": "photo_album", "fg": 2498 }, - { "id": "plastic_bucket", "fg": 2499 }, - { "id": "record_weather", "fg": 2500 }, - { "id": "straw_fedora", "fg": 2501 }, - { "id": "textbook_computer", "fg": 2502 }, - { "id": "textbook_fabrication", "fg": 2503 }, - { "id": "textbook_survival", "fg": 2504 }, - { "id": "water_faucet", "fg": 2505 }, - { "id": "can_food", "fg": 2506 }, - { "id": "can_food_big", "fg": 2507 }, - { "id": "can_food_big_unsealed", "fg": 2508 }, - { "id": "can_food_unsealed", "fg": 2509 }, - { "id": "can_medium", "fg": 2510 }, - { "id": "can_medium_unsealed", "fg": 2511 }, - { "id": "clamp", "fg": 2512 }, - { "id": "crude_picklock", "fg": 2513 }, - { "id": "cured_hide", "fg": 2514 }, - { "id": "cured_pelt", "fg": 2515 }, - { "id": "demihuman_fat", "fg": 2516 }, - { "id": "fat", "fg": 2517 }, - { "id": "fat_tainted", "fg": 2518 }, - { "id": "headscarf", "fg": 2519 }, - { "id": "human_fat", "fg": 2521 }, - { "id": "marloss_scarf", "fg": 2526 }, - { "id": "meat", "fg": 2527 }, - { "id": "meat_tainted", "fg": 2528 }, - { "id": "mutant_fat", "fg": 2529 }, - { "id": "mutant_human_fat", "fg": 2530 }, - { "id": "mutant_human_flesh", "fg": 2531 }, - { "id": "mutant_meat", "fg": 2532 }, - { "id": "pipe_tobacco", "fg": 2534 }, - { "id": "raw_fur", "fg": 2537 }, - { "id": "raw_leather", "fg": 2538 }, - { "id": "tanning_hide", "fg": 2544 }, - { "id": "tanning_pelt", "fg": 2545 }, - { "id": "analytical_set_basic", "fg": 2547 }, - { "id": "balance_small", "fg": 2548 }, - { "id": "beaker", "fg": 2549 }, - { "id": "flask_glass", "fg": 2550 }, - { "id": "gradcylinder", "fg": 2551 }, - { "id": "ph_meter", "fg": 2552 }, - { "id": "spectrophotometer", "fg": 2553 }, - { "id": "test_tube", "fg": 2554 }, - { "id": "voltmeter", "fg": 2555 }, - { "id": "acidchitin_piece", "fg": 2560 }, - { "id": "chitin_piece", "fg": 2561 }, - { "id": "coin_dime", "fg": 2580 }, - { "id": "coin_dollar", "fg": 2581 }, - { "id": "coin_half_dollar", "fg": 2582 }, - { "id": "coin_nickel", "fg": 2583 }, - { "id": "coin_penny", "fg": 2584 }, - { "id": "coin_quarter", "fg": 2585 }, - { "id": "money_fifty", "fg": 2586 }, - { "id": "money_five", "fg": 2587 }, - { "id": "money_hundred", "fg": 2588 }, - { "id": "money_one", "fg": 2589 }, - { "id": "money_ten", "fg": 2590 }, - { "id": "money_twenty", "fg": 2591 }, - { "id": "money_two", "fg": 2592 }, - { "id": "alexandrite_gold_earring", "fg": 2593 }, - { "id": "alexandrite_platinum_earring", "fg": 2594 }, - { "id": "alexandrite_silver_earring", "fg": 2595 }, - { "id": "amethyst_gold_earring", "fg": 2596 }, - { "id": "amethyst_platinum_earring", "fg": 2597 }, - { "id": "amethyst_silver_earring", "fg": 2598 }, - { "id": "aquamarine_gold_earring", "fg": 2599 }, - { "id": "aquamarine_platinum_earring", "fg": 2600 }, - { "id": "aquamarine_silver_earring", "fg": 2601 }, - { "id": "bead_ear", "fg": 2602 }, - { "id": "blue_topaz_gold_earring", "fg": 2603 }, - { "id": "blue_topaz_platinum_earring", "fg": 2604 }, - { "id": "blue_topaz_silver_earring", "fg": 2605 }, - { "id": "citrine_gold_earring", "fg": 2606 }, - { "id": "citrine_platinum_earring", "fg": 2607 }, - { "id": "citrine_silver_earring", "fg": 2608 }, - { "id": "copper_ear", "fg": 2609 }, - { "id": "diamond_gold_earring", "fg": 2610 }, - { "id": "diamond_platinum_earring", "fg": 2611 }, - { "id": "diamond_silver_earring", "fg": 2612 }, - { "id": "emerald_gold_earring", "fg": 2613 }, - { "id": "emerald_platinum_earring", "fg": 2614 }, - { "id": "emerald_silver_earring", "fg": 2615 }, - { "id": "garnet_gold_earring", "fg": 2616 }, - { "id": "garnet_platinum_earring", "fg": 2617 }, - { "id": "garnet_silver_earring", "fg": 2618 }, - { "id": "gold_ear", "fg": 2619 }, - { "id": "opal_gold_earring", "fg": 2620 }, - { "id": "opal_platinum_earring", "fg": 2621 }, - { "id": "opal_silver_earring", "fg": 2622 }, - { "id": "pearl_gold_earring", "fg": 2623 }, - { "id": "pearl_platinum_earring", "fg": 2624 }, - { "id": "pearl_silver_earring", "fg": 2625 }, - { "id": "peridot_gold_earring", "fg": 2626 }, - { "id": "peridot_platinum_earring", "fg": 2627 }, - { "id": "peridot_silver_earring", "fg": 2628 }, - { "id": "platinum_ear", "fg": 2629 }, - { "id": "ruby_gold_earring", "fg": 2630 }, - { "id": "ruby_platinum_earring", "fg": 2631 }, - { "id": "ruby_silver_earring", "fg": 2632 }, - { "id": "sapphire_gold_earring", "fg": 2633 }, - { "id": "sapphire_platinum_earring", "fg": 2634 }, - { "id": "sapphire_silver_earring", "fg": 2635 }, - { "id": "silver_ear", "fg": 2636 }, - { "id": "tourmaline_gold_earring", "fg": 2637 }, - { "id": "tourmaline_platinum_earring", "fg": 2638 }, - { "id": "tourmaline_silver_earring", "fg": 2639 }, - { "id": "flaregun", "fg": 2640 }, - { "id": "signal_flare", "fg": 2641 }, - { "id": "bread", "fg": 2642 }, - { "id": "brioche", "fg": 2643 }, - { "id": "brown_bread", "fg": 2644 }, - { "id": "brownie", "fg": 2645 }, - { "id": "cornbread", "fg": 2648 }, - { "id": "jihelucake", "fg": 2649 }, - { "id": "pancakes", "fg": 2650 }, - { "id": "sourdough_bread", "fg": 2652 }, - { "id": "sponge_cake", "fg": 2653 }, - { "id": "tortilla_corn", "fg": 2654 }, - { "id": "wastebread", "fg": 2656 }, - { "id": "airhorn", "fg": 2657 }, - { "id": "aluminum_foil", "fg": 2658 }, - { "id": "bowling_pin", "fg": 2659 }, - { "id": "boxing_gloves", "fg": 2660 }, - { "id": "chopsticks", "fg": 2661 }, - { "id": "comb_pocket", "fg": 2662 }, - { "id": "copper", "fg": 2663 }, - { "id": "eclipse_glasses", "fg": 2664 }, - { "id": "fish", "fg": 2665 }, - { "id": "licorice", "fg": 2666 }, - { "id": "metal_tank", "fg": 2667 }, - { "id": "metal_tank_little", "fg": 2668 }, - { "id": "nanomaterial", "fg": 2669 }, - { "id": "plut_cell", "fg": 2670 }, - { "id": "rebreather_filter", "fg": 2671 }, - { "id": "rock_sock", "fg": 2672 }, - { "id": "rollerskates", "fg": 2673 }, - { "id": "sandpaper", "fg": 2674 }, - { "id": "throwing_stick", "fg": 2675 }, - { "id": "waterproof_gunmod", "fg": 2676 }, - { "id": "circsaw_blade", "fg": 2677 }, - { "id": "mirror", "fg": 2678 }, - { "id": "glass_bowl", "fg": 2679 }, - { "id": "plastic_bowl_kids", "fg": 2680 }, - { "id": "blue_pen", "fg": 2681 }, - { "id": "green_pen", "fg": 2682 }, - { "id": "pen", "fg": 2683 }, - { "id": "red_pen", "fg": 2684 }, - { "id": "soldering_iron", "fg": 2685 }, - { "id": "superglue", "fg": 2686 }, - { "id": "grenade", "fg": 2687 }, - { "id": "grenade_act", "fg": 2688 }, - { "id": "grenade_emp", "fg": 2689 }, - { "id": "grenade_emp_act", "fg": 2690 }, - { "id": "grenade_inc", "fg": 2691 }, - { "id": "grenade_inc_act", "fg": 2692 }, - { "id": "pipebomb", "fg": 2693 }, - { "id": "pipebomb_act", "fg": 2694 }, - { "id": "scrambler", "fg": 2695 }, - { "id": "scrambler_act", "fg": 2696 }, - { "id": "smokebomb", "fg": 2697 }, - { "id": "smokebomb_act", "fg": 2698 }, - { "id": "boxcutter", "fg": 2702 }, - { "id": "copper_knife", "fg": 2703 }, - { "id": "diveknife", "fg": 2704 }, - { "id": "knife_bread", "fg": 2705 }, - { "id": "knife_butcher", "fg": 2706 }, - { "id": "knife_carving", "fg": 2707 }, - { "id": "knife_chef", "fg": 2708 }, - { "id": "knife_combat", "fg": 2709 }, - { "id": "knife_folding", "fg": 2710 }, - { "id": "knife_hunting", "fg": 2711 }, - { "id": "knife_paring", "fg": 2712 }, - { "id": "knife_rambo", "fg": 2713 }, - { "id": "knife_rm42", "fg": 2714 }, - { "id": "knife_steak", "fg": 2715 }, - { "id": "knife_swissarmy", "fg": 2716 }, - { "id": "knife_trench", "fg": 2717 }, - { "id": "makeshift_knife", "fg": 2718 }, - { "id": "pockknife", "fg": 2719 }, - { "id": "primitive_knife", "fg": 2720 }, - { "id": "throwing_knife", "fg": 2721 }, - { "id": "baseball", "fg": 2743 }, - { "id": "basketball", "fg": 2744 }, - { "id": "battery_car", "fg": 2745 }, - { "id": "beach_volleyball", "fg": 2746 }, - { "id": "bowling_ball", "fg": 2747 }, - { "id": "cell_phone", "fg": 2748 }, - { "id": "cell_phone_flashlight", "fg": 2749 }, - { "id": "cigar", "fg": 2750 }, - { "id": "cigar_butt", "fg": 2751 }, - { "id": "cigar_lit", "fg": 2752 }, - { "id": "ear_plugs", "fg": 2754 }, - { "id": "fiddlehead_boiled", "fg": 2755 }, - { "id": "fiddlehead_raw", "fg": 2756 }, - { "id": "fiddlehead_sauteed", "fg": 2757 }, - { "id": "flask_hip", "fg": 2758 }, - { "id": "football", "fg": 2759 }, - { "id": "golf_ball", "fg": 2760 }, - { "id": "holo_sight", "fg": 2761 }, - { "id": "indoor_volleyball", "fg": 2762 }, - { "id": "misc_repairkit", "fg": 2763 }, - { "id": "mre_beef_box", "fg": 2764 }, - { "id": "peephole", "fg": 2765 }, - { "id": "portable_game", "fg": 2766 }, - { "id": "puck", "fg": 2767 }, - { "id": "purse", "fg": 2768 }, - { "id": "suppressor", "fg": 2769 }, - { "id": "tourniquet_upper", "fg": 2770 }, - { "id": "two_way_radio", "fg": 2771 }, - { "id": "wristwatch", "fg": 2772 }, - { "id": "mushroom", "fg": 2773 }, - { "id": "cable_speaker", "fg": 2774 }, - { "id": "headphones_circumaural", "fg": 2775 }, - { "id": "microphone_xlr_generic", "fg": 2776 }, - { "id": "popcan_stove", "fg": 2817 }, - { "id": "rad_badge", "fg": 2818 }, - { "id": "alexandrite_gold_ring", "fg": 2820 }, - { "id": "alexandrite_platinum_ring", "fg": 2821 }, - { "id": "alexandrite_silver_ring", "fg": 2822 }, - { "id": "amethyst_gold_ring", "fg": 2823 }, - { "id": "amethyst_platinum_ring", "fg": 2824 }, - { "id": "amethyst_silver_ring", "fg": 2825 }, - { "id": "aquamarine_gold_ring", "fg": 2826 }, - { "id": "aquamarine_platinum_ring", "fg": 2827 }, - { "id": "aquamarine_silver_ring", "fg": 2828 }, - { "id": "blue_topaz_gold_ring", "fg": 2829 }, - { "id": "blue_topaz_platinum_ring", "fg": 2830 }, - { "id": "blue_topaz_silver_ring", "fg": 2831 }, - { "id": "citrine_gold_ring", "fg": 2832 }, - { "id": "citrine_platinum_ring", "fg": 2833 }, - { "id": "citrine_silver_ring", "fg": 2834 }, - { "id": "diamond_platinum_ring", "fg": 2835 }, - { "id": "diamond_ring", "fg": 2836 }, - { "id": "diamond_silver_ring", "fg": 2837 }, - { "id": "emerald_gold_ring", "fg": 2838 }, - { "id": "emerald_platinum_ring", "fg": 2839 }, - { "id": "emerald_silver_ring", "fg": 2840 }, - { "id": "garnet_gold_ring", "fg": 2841 }, - { "id": "garnet_platinum_ring", "fg": 2842 }, - { "id": "garnet_silver_ring", "fg": 2843 }, - { "id": "gold_ring", "fg": 2844 }, - { "id": "opal_gold_ring", "fg": 2845 }, - { "id": "opal_platinum_ring", "fg": 2846 }, - { "id": "opal_silver_ring", "fg": 2847 }, - { "id": "pearl_gold_ring", "fg": 2848 }, - { "id": "pearl_platinum_ring", "fg": 2849 }, - { "id": "pearl_silver_ring", "fg": 2850 }, - { "id": "peridot_gold_ring", "fg": 2851 }, - { "id": "peridot_platinum_ring", "fg": 2852 }, - { "id": "peridot_silver_ring", "fg": 2853 }, - { "id": "ring_engagement", "fg": 2854 }, - { "id": "ruby_gold_ring", "fg": 2855 }, - { "id": "ruby_platinum_ring", "fg": 2856 }, - { "id": "ruby_silver_ring", "fg": 2857 }, - { "id": "sapphire_gold_ring", "fg": 2858 }, - { "id": "sapphire_platinum_ring", "fg": 2859 }, - { "id": "sapphire_silver_ring", "fg": 2860 }, - { "id": "tourmaline_gold_ring", "fg": 2861 }, - { "id": "tourmaline_platinum_ring", "fg": 2862 }, - { "id": "tourmaline_silver_ring", "fg": 2863 }, - { "id": "pebble", "fg": 2864 }, - { "id": "pebble_clay", "fg": 2865 }, - { "id": "rock", "fg": 2866 }, - { "id": "rock_flaking", "fg": 2867 }, - { "id": "rock_large", "fg": 2868 }, - { "id": "slime_scrap", "fg": 2877 }, - { "id": "clay_teapot", "fg": 2881 }, - { "id": "crucible", "fg": 2884 }, - { "id": "tire_iron", "fg": 2897 }, - { "id": "towel", "fg": 2912 }, - { "id": "towel_soiled", "fg": 2913 }, - { "id": "towel_wet", "fg": 2914 }, - { "id": "battery_charger", "fg": 2915 }, - { "id": "recharge_station", "fg": 2916 }, - { "id": "wax", "fg": 2919 } + "fg": [ { "weight": 1, "sprite": 2943 }, { "weight": 1, "sprite": 2942 }, { "weight": 1, "sprite": 2944 } ] + }, + { "id": "makeshift_crowbar", "fg": 2945 }, + { "id": "esbit_stove", "fg": 2937 }, + { "id": "usb_drive", "fg": 2949 }, + { "id": "cash_card", "fg": 2953 }, + { "id": "file", "fg": 2954 }, + { "id": "fp_loyalty_card", "fg": 2955 }, + { "id": "id_industrial", "fg": 2956 }, + { "id": "id_military", "fg": 2957 }, + { "id": "id_science", "fg": 2958 }, + { "id": "bowl_plastic", "fg": 2959 }, + { "id": "cup_plastic", "fg": 2960 }, + { "id": "fork", "fg": 2961 }, + { "id": "knife_butter", "fg": 2962 }, + { "id": "washboard", "fg": 2969 }, + { "id": "wash_kit", "fg": 2968 }, + { "id": "helmet_army", "fg": 2974 }, + { "id": "foodperson_mask", "fg": 2972 }, + { "id": "foodperson_mask_on", "fg": 2973 }, + { "id": "ballistic_vest_esapi", "fg": 2971 }, + { "id": "saddle", "fg": 1872 }, + { "id": "blt", "fg": 1875 }, + { "id": "brain_cooked", "fg": 1876 }, + { "id": "butter", "fg": 1877 }, + { "id": "cheese_fries", "fg": 1878 }, + { "id": "chili", "fg": 1879 }, + { "id": "chilidogs", "fg": 1880 }, + { "id": "cooked_dinner", "fg": 1881 }, + { "id": "corndogs_cooked", "fg": 1882 }, + { "id": "corndogs_frozen", "fg": 1883 }, + { "id": "corndogs_homemade", "fg": 1884 }, + { "id": "cracklins", "fg": 1885 }, + { "id": "currywurst", "fg": 1886 }, + { "id": "demihuman_cooked", "fg": 1887 }, + { "id": "demihuman_lard", "fg": 1888 }, + { "id": "demihuman_stomach_boiled", "fg": 1889 }, + { "id": "demihuman_tallow", "fg": 1890 }, + { "id": "fish_bagel", "fg": 1891 }, + { "id": "fish_cooked", "fg": 1892 }, + { "id": "fish_sandwich", "fg": 1893 }, + { "id": "fresh_fries", "fg": 1894 }, + { "id": "glazed_tenderloin", "fg": 1895 }, + { "id": "homemade_burrito", "fg": 1896 }, + { "id": "hotdogs_campfire", "fg": 1897 }, + { "id": "hotdogs_cooked", "fg": 1898 }, + { "id": "hotdogs_frozen", "fg": 1899 }, + { "id": "hotdogs_newyork", "fg": 1900 }, + { "id": "insta_salad", "fg": 1901 }, + { "id": "junk_burrito", "fg": 1902 }, + { "id": "kidney_cooked", "fg": 1903 }, + { "id": "lard", "fg": 1904 }, + { "id": "lentils_cooked", "fg": 1905 }, + { "id": "liver_cooked", "fg": 1906 }, + { "id": "liver_onion", "fg": 1907 }, + { "id": "lung_cooked", "fg": 1908 }, + { "id": "marshmallow", "fg": 1909 }, + { "id": "meat_cooked", "fg": 1910 }, + { "id": "meat_scrap_cooked", "fg": 1911 }, + { "id": "meat_smoked", "fg": 1912 }, + { "id": "meatball", "fg": 1913 }, + { "id": "meatball_raw", "fg": 1914 }, + { "id": "mutant_human_cooked", "fg": 1915 }, + { "id": "mutant_human_lard", "fg": 1916 }, + { "id": "mutant_human_tallow", "fg": 1917 }, + { "id": "mutant_lard", "fg": 1918 }, + { "id": "mutant_meat_cooked", "fg": 1919 }, + { "id": "mutant_tallow", "fg": 1920 }, + { "id": "nachos", "fg": 1921 }, + { "id": "nachosc", "fg": 1922 }, + { "id": "nachosm", "fg": 1923 }, + { "id": "nachosmc", "fg": 1924 }, + { "id": "nachosv", "fg": 1925 }, + { "id": "nachosvc", "fg": 1926 }, + { "id": "oatmeal_cooked", "fg": 1927 }, + { "id": "oatmeal_deluxe", "fg": 1928 }, + { "id": "pan_roasted_corn", "fg": 1929 }, + { "id": "pizza_supreme", "fg": 1930 }, + { "id": "popcorn", "fg": 1931 }, + { "id": "popcorn2", "fg": 1932 }, + { "id": "quesadilla_cheese", "fg": 1933 }, + { "id": "rice_cooked", "fg": 1934 }, + { "id": "sandwich_cheese", "fg": 1935 }, + { "id": "sandwich_cheese_grilled", "fg": 1936 }, + { "id": "sandwich_cucumber", "fg": 1937 }, + { "id": "sandwich_deluxe", "fg": 1938 }, + { "id": "sandwich_fairy", "fg": 1939 }, + { "id": "sandwich_honey", "fg": 1940 }, + { "id": "sandwich_jam", "fg": 1941 }, + { "id": "sandwich_jam_butter", "fg": 1942 }, + { "id": "sandwich_pb", "fg": 1943 }, + { "id": "sandwich_pbh", "fg": 1944 }, + { "id": "sandwich_pbj", "fg": 1945 }, + { "id": "sandwich_pbm", "fg": 1946 }, + { "id": "sandwich_sauce", "fg": 1947 }, + { "id": "sandwich_t", "fg": 1948 }, + { "id": "sandwich_veggy", "fg": 1949 }, + { "id": "sausage_cooked", "fg": 1950 }, + { "id": "sloppyjoe", "fg": 1951 }, + { "id": "spaghetti_cooked", "fg": 1952 }, + { "id": "stewed_tripe", "fg": 1953 }, + { "id": "stomach_boiled", "fg": 1954 }, + { "id": "stuffed_clams", "fg": 1955 }, + { "id": "sweetbread_cooked", "fg": 1956 }, + { "id": "taco", "fg": 1957 }, + { "id": "tallow", "fg": 1958 }, + { "id": "toasterpastry", "fg": 1959 }, + { "id": "veggy_cooked", "fg": 1960 }, + { "id": "2byarm_guard", "fg": 1961 }, + { "id": "2byshin_guard", "fg": 1962 }, + { "id": "adhesive_bandages", "fg": 1963 }, + { "id": "arm_warmers", "fg": 1964 }, + { "id": "arrowrest", "fg": 1965 }, + { "id": "atomic_light", "fg": 1966 }, + { "id": "atomic_light_off", "fg": 1967 }, + { "id": "b_paint", "fg": 1968 }, + { "id": "bandana", "fg": 1969 }, + { "id": "barley", "fg": 1970 }, + { "id": "boltcutters", "fg": 1971 }, + { "id": "bottle_opener", "fg": 1972 }, + { "id": "bow_saw", "fg": 1973 }, + { "id": "briefcase", "fg": 1974 }, + { "id": "cable_instrument", "fg": 1975 }, + { "id": "cable_xlr", "fg": 1976 }, + { "id": "can_opener", "fg": 1977 }, + { "id": "candle", "fg": 1978 }, + { "id": "candlestick", "fg": 1979 }, + { "id": "cannonball_4lb", "fg": 1980 }, + { "id": "carving_fork", "fg": 1981 }, + { "id": "ceramic_armor", "fg": 1982 }, + { "id": "chain_link", "fg": 1984 }, + { "id": "chainmail_arms", "fg": 1985 }, + { "id": "chainmail_hood", "fg": 1986 }, + { "id": "chainmail_legs", "fg": 1987 }, + { "id": "chainmail_suit_faraday", "fg": 1988 }, + { "id": "charcoal", "fg": 1989 }, + { "id": "chess", "fg": 1990 }, + { "id": "chipper", "fg": 1991 }, + { "id": "chisel", "fg": 1992 }, + { "id": "clarinet", "fg": 1993 }, + { "id": "clay_pot_flower", "fg": 1994 }, + { "id": "colander_steel", "fg": 1995 }, + { "id": "copper_pan", "fg": 1996 }, + { "id": "cordless_drill", "fg": 1997 }, + { "id": "corkscrew", "fg": 1998 }, + { "id": "cow_bell", "fg": 1999 }, + { "id": "crown_golden", "fg": 2000 }, + { "id": "data_card", "fg": 2001 }, + { "id": "diazepam", "fg": 2002 }, + { "id": "dish_towel", "fg": 2003 }, + { "id": "esapi_plate", "fg": 2004 }, + { "id": "esbi_plate", "fg": 2005 }, + { "id": "eyedrops", "fg": 2006 }, + { "id": "feather", "fg": 2008 }, + { "id": "felt_patch", "fg": 2009 }, + { "id": "fishing_hook_basic", "fg": 2010 }, + { "id": "flask_yeast", "fg": 2011 }, + { "id": "flint_steel", "fg": 2012 }, + { "id": "flute", "fg": 2013 }, + { "id": "folding_poncho", "fg": 2014 }, + { "id": "food_processor", "fg": 2015 }, + { "id": "footrags", "fg": 2016 }, + { "id": "footrags_fur", "fg": 2017 }, + { "id": "footrags_leather", "fg": 2018 }, + { "id": "footrags_wool", "fg": 2019 }, + { "id": "frisbee", "fg": 2020 }, + { "id": "g_paint", "fg": 2021 }, + { "id": "garlic", "fg": 2022 }, + { "id": "garlic_press", "fg": 2023 }, + { "id": "glass_plate", "fg": 2024 }, + { "id": "glass_tinted", "fg": 2025 }, + { "id": "glasses_bifocal", "fg": 2026 }, + { "id": "gloves_light", "fg": 2028 }, + { "id": "hair_dryer", "fg": 2029 }, + { "id": "hammer_sledge", "fg": 2030 }, + { "id": "hammer_sledge_engineer", "fg": 2031 }, + { "id": "hammer_sledge_heavy", "fg": 2032 }, + { "id": "hammer_sledge_short", "fg": 2033 }, + { "id": "hand_axe", "fg": 2034 }, + { "id": "hand_drill", "fg": 2035 }, + { "id": "hand_rims", "fg": 2036 }, + { "id": "handrolled_cig", "fg": 2037 }, + { "id": "hard_steel_armor", "fg": 2038 }, + { "id": "harmonica_holder", "fg": 2039 }, + { "id": "hat_chef", "fg": 2040 }, + { "id": "iron_pot", "fg": 2041 }, + { "id": "jack", "fg": 2042 }, + { "id": "jack_makeshift", "fg": 2043 }, + { "id": "jack_small", "fg": 2044 }, + { "id": "kettle", "fg": 2046 }, + { "id": "ladle", "fg": 2047 }, + { "id": "laptop", "fg": 2048 }, + { "id": "leg_warmers", "fg": 2049 }, + { "id": "link_sheet", "fg": 2050 }, + { "id": "machete", "fg": 2051 }, + { "id": "makeshift_bayonet", "fg": 2052 }, + { "id": "makeshift_hammer", "fg": 2053 }, + { "id": "makeshift_machete", "fg": 2054 }, + { "id": "makeshift_stethoscope", "fg": 2055 }, + { "id": "matches", "fg": 2056 }, + { "id": "material_shrd_limestone", "fg": 2057 }, + { "id": "mbag", "fg": 2058 }, + { "id": "mess_kit", "fg": 2059 }, + { "id": "mess_tin", "fg": 2060 }, + { "id": "meth", "fg": 2061 }, + { "id": "mil_mess_kit", "fg": 2062 }, + { "id": "morphine", "fg": 2063 }, + { "id": "mortar_pestle", "fg": 2064 }, + { "id": "motor_tiny", "fg": 2065 }, + { "id": "mouthpiece", "fg": 2066 }, + { "id": "office_holepunch", "fg": 2067 }, + { "id": "omnicamera", "fg": 2068 }, + { "id": "p_paint", "fg": 2069 }, + { "id": "paint_brush", "fg": 2070 }, + { "id": "pan", "fg": 2071 }, + { "id": "paper", "fg": 2072 }, + { "id": "peeler", "fg": 2073 }, + { "id": "pipe_fittings", "fg": 2074 }, + { "id": "plastic_pot_flower", "fg": 2075 }, + { "id": "pliers", "fg": 2076 }, + { "id": "plums", "fg": 2077 }, + { "id": "pot", "fg": 2078 }, + { "id": "pot_canning", "fg": 2079 }, + { "id": "pot_copper", "fg": 2080 }, + { "id": "pot_helmet", "fg": 2081 }, + { "id": "pot_makeshift", "fg": 2082 }, + { "id": "pot_makeshift_copper", "fg": 2083 }, + { "id": "potato_masher", "fg": 2084 }, + { "id": "r_paint", "fg": 2085 }, + { "id": "reading_light", "fg": 2086 }, + { "id": "reading_light_on", "fg": 2087 }, + { "id": "receiver", "fg": 2088 }, + { "id": "reinforced_glass_pane", "fg": 2089 }, + { "id": "rolling_pin", "fg": 2090 }, + { "id": "scrap_bronze", "fg": 2091 }, + { "id": "scrap_felt", "fg": 2092 }, + { "id": "sheet_felt", "fg": 2093 }, + { "id": "sheet_felt_patchwork", "fg": 2094 }, + { "id": "shocktonfa_off", "fg": 2095 }, + { "id": "shocktonfa_on", "fg": 2096 }, + { "id": "slingpack", "fg": 2097 }, + { "id": "smart_phone", "fg": 2098 }, + { "id": "soap", "fg": 2099 }, + { "id": "solder_wire", "fg": 2100 }, + { "id": "spatula", "fg": 2101 }, + { "id": "spider_egg", "fg": 2102 }, + { "id": "spike", "fg": 2103 }, + { "id": "steel_armor", "fg": 2104 }, + { "id": "steel_pan", "fg": 2105 }, + { "id": "stethoscope", "fg": 2106 }, + { "id": "stock_pot", "fg": 2107 }, + { "id": "survivor_mess_kit", "fg": 2109 }, + { "id": "swage", "fg": 2110 }, + { "id": "tazer", "fg": 2111 }, + { "id": "teleumbrella", "fg": 2112 }, + { "id": "tinder", "fg": 2113 }, + { "id": "tinderbox", "fg": 2114 }, + { "id": "tinfoil_hat", "fg": 2115 }, + { "id": "tonfa", "fg": 2116 }, + { "id": "tonfa_wood", "fg": 2117 }, + { "id": "tongs", "fg": 2118 }, + { "id": "tripwire", "fg": 2119 }, + { "id": "unfinished_charcoal", "fg": 2120 }, + { "id": "w_paint", "fg": 2121 }, + { "id": "water_purifier", "fg": 2122 }, + { "id": "wheel", "fg": 2123 }, + { "id": "wheel_10", "fg": 2124 }, + { "id": "wheel_barrow", "fg": 2125 }, + { "id": "wheel_bicycle", "fg": 2126 }, + { "id": "wheel_bicycle_or", "fg": 2127 }, + { "id": "wheel_motorbike", "fg": 2128 }, + { "id": "wheel_motorbike_or", "fg": 2129 }, + { "id": "wheel_skate", "fg": 2130 }, + { "id": "wheel_slick", "fg": 2131 }, + { "id": "wheel_small", "fg": 2132 }, + { "id": "wheel_tricycle", "fg": 2133 }, + { "id": "wheel_wheelchair", "fg": 2134 }, + { "id": "whisk", "fg": 2135 }, + { "id": "wine_glass", "fg": 2136 }, + { "id": "wire_barbed", "fg": 2137 }, + { "id": "y_paint", "fg": 2138 }, + { "id": "halligan", "fg": 2139 }, + { "id": "cig", "fg": 2165 }, + { "id": "cig_lit", "fg": 2166 }, + { "id": "copper_ring", "fg": 2167 }, + { "id": "g_shovel", "fg": 2168 }, + { "id": "lsd", "fg": 2169 }, + { "id": "silver_ring", "fg": 2170 }, + { "id": "thermal_mask", "fg": 2171 }, + { "id": "thermal_socks", "fg": 2172 }, + { "id": "tie_clipon", "fg": 2173 }, + { "id": "whistle", "fg": 2174 }, + { "id": "2_shot_special", "fg": 2175 }, + { "id": "LAW_Packed", "fg": 2177 }, + { "id": "af2011a1_38super", "fg": 2179 }, + { "id": "ar_pistol", "fg": 2180 }, + { "id": "ashot", "fg": 2181 }, + { "id": "bfr", "fg": 2182 }, + { "id": "bigun", "fg": 2183 }, + { "id": "bond_410", "fg": 2184 }, + { "id": "bt_apc9k", "fg": 2185 }, + { "id": "colt_army", "fg": 2186 }, + { "id": "colt_navy", "fg": 2187 }, + { "id": "colt_saa", "fg": 2188 }, + { "id": "cop_38", "fg": 2189 }, + { "id": "cz75", "fg": 2190 }, + { "id": "deagle_44", "fg": 2191 }, + { "id": "draco", "fg": 2192 }, + { "id": "flamethrower_crude", "fg": 2193 }, + { "id": "flamethrower_simple", "fg": 2194 }, + { "id": "fn1910", "fg": 2195 }, + { "id": "fn57", "fg": 2196 }, + { "id": "fn_p90", "fg": 2197 }, + { "id": "glock_17", "fg": 2198 }, + { "id": "glock_18c", "fg": 2199 }, + { "id": "glock_19", "fg": 2200 }, + { "id": "glock_20", "fg": 2201 }, + { "id": "glock_20_var_glock_40", "fg": 2202 }, + { "id": "glock_21", "fg": 2203 }, + { "id": "glock_22", "fg": 2204 }, + { "id": "glock_29", "fg": 2205 }, + { "id": "glock_31", "fg": 2206 }, + { "id": "hi_power_40", "fg": 2207 }, + { "id": "hi_power_9mm", "fg": 2208 }, + { "id": "hk_mp5_semi_pistol", "fg": 2210 }, + { "id": "hk_mp7", "fg": 2211 }, + { "id": "hk_ump45", "fg": 2212 }, + { "id": "hptc9", "fg": 2213 }, + { "id": "hptcf380", "fg": 2214 }, + { "id": "kp32", "fg": 2216 }, + { "id": "kp3at", "fg": 2217 }, + { "id": "kpf9", "fg": 2218 }, + { "id": "l_bak_223", "fg": 2219 }, + { "id": "launcher_simple", "fg": 2220 }, + { "id": "lemat_revolver", "fg": 2221 }, + { "id": "m11", "fg": 2222 }, + { "id": "m17", "fg": 2223 }, + { "id": "m18", "fg": 2224 }, + { "id": "m1911-460", "fg": 2225 }, + { "id": "m1911_10", "fg": 2227 }, + { "id": "m1911_var_m1911_MEU", "fg": 2228 }, + { "id": "m320", "fg": 2229 }, + { "id": "m4_carbine_var_m4_cqbr", "fg": 2230 }, + { "id": "m9", "fg": 2231 }, + { "id": "mac_10", "fg": 2232 }, + { "id": "mac_11", "fg": 2233 }, + { "id": "makarov", "fg": 2234 }, + { "id": "mauser_c96", "fg": 2235 }, + { "id": "mauser_m714", "fg": 2236 }, + { "id": "mgl", "fg": 2237 }, + { "id": "minispeargun", "fg": 2238 }, + { "id": "model_10_revolver", "fg": 2239 }, + { "id": "moss_brownie", "fg": 2240 }, + { "id": "nailgun", "fg": 2241 }, + { "id": "nailrifle", "fg": 2242 }, + { "id": "needlepistol", "fg": 2243 }, + { "id": "oa93", "fg": 2244 }, + { "id": "p08", "fg": 2245 }, + { "id": "p220_10", "fg": 2246 }, + { "id": "p226_357sig", "fg": 2247 }, + { "id": "p226_9mm", "fg": 2248 }, + { "id": "p320_357sig", "fg": 2249 }, + { "id": "paintballgun", "fg": 2250 }, + { "id": "pipe_double_shotgun", "fg": 2251 }, + { "id": "pistol_flintlock", "fg": 2252 }, + { "id": "px4", "fg": 2253 }, + { "id": "px4_40", "fg": 2254 }, + { "id": "raging_bull", "fg": 2255 }, + { "id": "raging_judge", "fg": 2256 }, + { "id": "revolver_shotgun", "fg": 2257 }, + { "id": "rm103a_pistol", "fg": 2258 }, + { "id": "rm2000_smg", "fg": 2259 }, + { "id": "rm228", "fg": 2260 }, + { "id": "ruger_lcr_22", "fg": 2261 }, + { "id": "ruger_lcr_38", "fg": 2262 }, + { "id": "ruger_redhawk", "fg": 2263 }, + { "id": "rugerlcp", "fg": 2264 }, + { "id": "sig_40", "fg": 2265 }, + { "id": "sig_mosquito", "fg": 2266 }, + { "id": "sig_p230", "fg": 2267 }, + { "id": "skorpion_61", "fg": 2268 }, + { "id": "smg_40", "fg": 2269 }, + { "id": "smg_45", "fg": 2270 }, + { "id": "sp2022", "fg": 2271 }, + { "id": "streetsweeper", "fg": 2272 }, + { "id": "surv_hand_cannon", "fg": 2273 }, + { "id": "surv_six_shooter", "fg": 2274 }, + { "id": "sw629", "fg": 2275 }, + { "id": "sw_22", "fg": 2276 }, + { "id": "sw_500", "fg": 2277 }, + { "id": "sw_610", "fg": 2278 }, + { "id": "sw_619", "fg": 2279 }, + { "id": "taurus_spectrum", "fg": 2280 }, + { "id": "tec9", "fg": 2281 }, + { "id": "tokarev", "fg": 2282 }, + { "id": "triple_launcher_simple", "fg": 2283 }, + { "id": "unbio_blaster_gun", "fg": 2284 }, + { "id": "usp_45", "fg": 2285 }, + { "id": "usp_45_var_mk23", "fg": 2286 }, + { "id": "usp_9mm", "fg": 2287 }, + { "id": "uzi", "fg": 2288 }, + { "id": "v29", "fg": 2289 }, + { "id": "v29_cheap", "fg": 2290 }, + { "id": "walther_ccp", "fg": 2291 }, + { "id": "walther_p22", "fg": 2292 }, + { "id": "walther_p38", "fg": 2293 }, + { "id": "walther_ppq_40", "fg": 2294 }, + { "id": "walther_ppq_45", "fg": 2295 }, + { "id": "walther_ppq_9mm", "fg": 2296 }, + { "id": "witness_10", "fg": 2297 }, + { "id": "xd_10", "fg": 2298 }, + { "id": "book_pieces", "fg": 2313 }, + { "id": "book_ruined", "fg": 2314 }, + { "id": "button_plastic", "fg": 2353 }, + { "id": "button_steel", "fg": 2354 }, + { "id": "button_wood", "fg": 2355 }, + { "id": "antenna", "fg": 2356 }, + { "id": "badge_deputy", "fg": 2357 }, + { "id": "coconut", "fg": 2358 }, + { "id": "directional_antenna", "fg": 2359 }, + { "id": "halter_top", "fg": 2360 }, + { "id": "hand_crank_charger", "fg": 2361 }, + { "id": "hops", "fg": 2362 }, + { "id": "kidney", "fg": 2363 }, + { "id": "lettuce", "fg": 2364 }, + { "id": "lily_flower", "fg": 2365 }, + { "id": "scorecard", "fg": 2366 }, + { "id": "spinach", "fg": 2367 }, + { "id": "altered_comb", "fg": 2368 }, + { "id": "gasdiscount_gold", "fg": 2369 }, + { "id": "gasdiscount_platinum", "fg": 2370 }, + { "id": "gasdiscount_silver", "fg": 2371 }, + { "id": "gold_hairpin", "fg": 2372 }, + { "id": "nanoskirt", "fg": 2373 }, + { "id": "pearl", "fg": 2374 }, + { "id": "platinum_ring", "fg": 2375 }, + { "id": "skirt_grass", "fg": 2376 }, + { "id": "skirt_leather", "fg": 2377 }, + { "id": "wallet_leather", "fg": 2378 }, + { "id": "copper_necklace", "fg": 2379 }, + { "id": "pearl_collar", "fg": 2380 }, + { "id": "alexandrite_gold_pendant_necklace", "fg": 2381 }, + { "id": "amethyst_gold_pendant_necklace", "fg": 2382 }, + { "id": "aquamarine_gold_pendant_necklace", "fg": 2383 }, + { "id": "blue_topaz_gold_pendant_necklace", "fg": 2384 }, + { "id": "citrine_gold_pendant_necklace", "fg": 2385 }, + { "id": "diamond_gold_pendant_necklace", "fg": 2386 }, + { "id": "emerald_gold_pendant_necklace", "fg": 2387 }, + { "id": "garnet_gold_pendant_necklace", "fg": 2388 }, + { "id": "gold_necklace", "fg": 2389 }, + { "id": "opal_gold_pendant_necklace", "fg": 2390 }, + { "id": "pearl_gold_pendant_necklace", "fg": 2391 }, + { "id": "peridot_gold_pendant_necklace", "fg": 2392 }, + { "id": "ruby_gold_pendant_necklace", "fg": 2393 }, + { "id": "sapphire_gold_pendant_necklace", "fg": 2394 }, + { "id": "tourmaline_gold_pendant_necklace", "fg": 2395 }, + { "id": "alexandrite_platinum_pendant_necklace", "fg": 2396 }, + { "id": "amethyst_platinum_pendant_necklace", "fg": 2397 }, + { "id": "aquamarine_platinum_pendant_necklace", "fg": 2398 }, + { "id": "blue_topaz_platinum_pendant_necklace", "fg": 2399 }, + { "id": "citrine_platinum_pendant_necklace", "fg": 2400 }, + { "id": "diamond_platinum_pendant_necklace", "fg": 2401 }, + { "id": "emerald_platinum_pendant_necklace", "fg": 2402 }, + { "id": "garnet_platinum_pendant_necklace", "fg": 2403 }, + { "id": "opal_platinum_pendant_necklace", "fg": 2404 }, + { "id": "pearl_platinum_pendant_necklace", "fg": 2405 }, + { "id": "peridot_platinum_pendant_necklace", "fg": 2406 }, + { "id": "platinum_necklace", "fg": 2407 }, + { "id": "ruby_platinum_pendant_necklace", "fg": 2408 }, + { "id": "sapphire_platinum_pendant_necklace", "fg": 2409 }, + { "id": "tourmaline_platinum_pendant_necklace", "fg": 2410 }, + { "id": "alexandrite_silver_pendant_necklace", "fg": 2411 }, + { "id": "amethyst_silver_pendant_necklace", "fg": 2412 }, + { "id": "aquamarine_silver_pendant_necklace", "fg": 2413 }, + { "id": "blue_topaz_silver_pendant_necklace", "fg": 2414 }, + { "id": "citrine_silver_pendant_necklace", "fg": 2415 }, + { "id": "diamond_silver_pendant_necklace", "fg": 2416 }, + { "id": "emerald_silver_pendant_necklace", "fg": 2417 }, + { "id": "garnet_silver_pendant_necklace", "fg": 2418 }, + { "id": "opal_silver_pendant_necklace", "fg": 2419 }, + { "id": "pearl_silver_pendant_necklace", "fg": 2420 }, + { "id": "peridot_silver_pendant_necklace", "fg": 2421 }, + { "id": "ruby_silver_pendant_necklace", "fg": 2422 }, + { "id": "sapphire_silver_pendant_necklace", "fg": 2423 }, + { "id": "silver_necklace", "fg": 2424 }, + { "id": "tourmaline_silver_pendant_necklace", "fg": 2425 }, + { "id": "alder_bark", "fg": 2426 }, + { "id": "barrette", "fg": 2427 }, + { "id": "birchbark", "fg": 2428 }, + { "id": "caff_gum", "fg": 2429 }, + { "id": "cattail_stalk", "fg": 2430 }, + { "id": "golf_tee", "fg": 2431 }, + { "id": "gum", "fg": 2432 }, + { "id": "hand_pump", "fg": 2433 }, + { "id": "honeydew", "fg": 2434 }, + { "id": "ifak_pouch", "fg": 2435 }, + { "id": "knitting_needles", "fg": 2436 }, + { "id": "lasagne", "fg": 2437 }, + { "id": "magnifying_glass", "fg": 2438 }, + { "id": "mininuke", "fg": 2439 }, + { "id": "mininuke_act", "fg": 2440 }, + { "id": "net", "fg": 2441 }, + { "id": "rolling_paper", "fg": 2442 }, + { "id": "tanbark", "fg": 2443 }, + { "id": "willowbark", "fg": 2446 }, + { "id": "shoulder_strap", "fg": 2447 }, + { "id": "deck_of_cards", "fg": 2448 }, + { "id": "hairpin", "fg": 2449 }, + { "id": "weed", "fg": 2450 }, + { "id": "ceramic_bowl", "fg": 2451 }, + { "id": "chestrig", "fg": 2452 }, + { "id": "radio_car", "fg": 2453 }, + { "id": "radio_car_box", "fg": 2454 }, + { "id": "radio_car_on", "fg": 2455 }, + { "id": "radio_car_wheel", "fg": 2456 }, + { "id": "radiocontrol", "fg": 2457 }, + { "id": "rc_car_box", "fg": 2458 }, + { "id": "toaster", "fg": 2459 }, + { "id": "xl_chestrig", "fg": 2460 }, + { "id": "alternator_truck", "fg": 2462 }, + { "id": "ammolink", "fg": 2463 }, + { "id": "angle_grinder", "fg": 2464 }, + { "id": "atomic_lamp", "fg": 2465 }, + { "id": "atomic_lamp_off", "fg": 2466 }, + { "id": "barometer", "fg": 2467 }, + { "id": "birdfood", "fg": 2468 }, + { "id": "bismuth", "fg": 2469 }, + { "id": "brick_kiln", "fg": 2470 }, + { "id": "caffeine", "fg": 2471 }, + { "id": "caltrops", "fg": 2472 }, + { "id": "caltrops_glass", "fg": 2473 }, + { "id": "camera", "fg": 2474 }, + { "id": "chem_citric_acid", "fg": 2475 }, + { "id": "chem_sulphur", "fg": 2476 }, + { "id": "chunk_sulfur", "fg": 2477 }, + { "id": "circsaw_off", "fg": 2478 }, + { "id": "circsaw_on", "fg": 2479 }, + { "id": "coal_lump", "fg": 2480 }, + { "id": "con_mix", "fg": 2481 }, + { "id": "disc_golf", "fg": 2482 }, + { "id": "drivebelt", "fg": 2483 }, + { "id": "eink_tablet_pc", "fg": 2484 }, + { "id": "flatbread", "fg": 2485 }, + { "id": "gelbox", "fg": 2487 }, + { "id": "generator_7500w", "fg": 2488 }, + { "id": "glowstick", "fg": 2489 }, + { "id": "glowstick_dead", "fg": 2490 }, + { "id": "glowstick_lit", "fg": 2491 }, + { "id": "gold_small", "fg": 2492 }, + { "id": "golf_club", "fg": 2493 }, + { "id": "handflare", "fg": 2494 }, + { "id": "heatpack", "fg": 2495 }, + { "id": "heatpack_used", "fg": 2496 }, + { "id": "hoe", "fg": 2497 }, + { "id": "homeopathic_pills", "fg": 2498 }, + { "id": "horn_bicycle", "fg": 2499 }, + { "id": "jumper_cable", "fg": 2500 }, + { "id": "kiln", "fg": 2501 }, + { "id": "lead", "fg": 2502 }, + { "id": "leather", "fg": 2503 }, + { "id": "lightstrip", "fg": 2504 }, + { "id": "material_aluminium_ingot", "fg": 2505 }, + { "id": "material_limestone", "fg": 2506 }, + { "id": "material_rhodonite", "fg": 2507 }, + { "id": "material_rocksalt", "fg": 2508 }, + { "id": "material_zincite", "fg": 2509 }, + { "id": "metal_smoother", "fg": 2510 }, + { "id": "multitool", "fg": 2512 }, + { "id": "nic_gum", "fg": 2513 }, + { "id": "pencil", "fg": 2514 }, + { "id": "pipe_cleaner", "fg": 2515 }, + { "id": "pipe_glass", "fg": 2516 }, + { "id": "platinum_small", "fg": 2518 }, + { "id": "polisher", "fg": 2519 }, + { "id": "press", "fg": 2520 }, + { "id": "puller", "fg": 2521 }, + { "id": "rake", "fg": 2522 }, + { "id": "razorclaw_roe", "fg": 2523 }, + { "id": "sickle", "fg": 2524 }, + { "id": "silver_small", "fg": 2525 }, + { "id": "small_repairkit", "fg": 2526 }, + { "id": "tanned_hide", "fg": 2527 }, + { "id": "tanned_pelt", "fg": 2528 }, + { "id": "tourist_table", "fg": 2529 }, + { "id": "zinc_metal", "fg": 2530 }, + { "id": "beartrap", "fg": 2531 }, + { "id": "landmine", "fg": 2532 }, + { "id": "wire_mesh", "fg": 2533 }, + { "id": "cannabis", "fg": 2534 }, + { "id": "dnd_handbook", "fg": 2536 }, + { "id": "holybook_bible1", "fg": 2537 }, + { "id": "holybook_bible3", "fg": 2538 }, + { "id": "l-stick", "fg": 2539 }, + { "id": "l-stick_on", "fg": 2540 }, + { "id": "makarovmag", "fg": 2541 }, + { "id": "manual_brawl", "fg": 2542 }, + { "id": "manual_carpentry", "fg": 2543 }, + { "id": "manual_dodge_kid", "fg": 2544 }, + { "id": "manual_driving", "fg": 2545 }, + { "id": "manual_melee", "fg": 2546 }, + { "id": "philosophy_book", "fg": 2547 }, + { "id": "phonebook", "fg": 2548 }, + { "id": "photo_album", "fg": 2549 }, + { "id": "plastic_bucket", "fg": 2550 }, + { "id": "record_weather", "fg": 2551 }, + { "id": "straw_fedora", "fg": 2552 }, + { "id": "textbook_computer", "fg": 2553 }, + { "id": "textbook_fabrication", "fg": 2554 }, + { "id": "textbook_survival", "fg": 2555 }, + { "id": "water_faucet", "fg": 2556 }, + { "id": "can_food", "fg": 2557 }, + { "id": "can_food_big", "fg": 2558 }, + { "id": "can_food_big_unsealed", "fg": 2559 }, + { "id": "can_food_unsealed", "fg": 2560 }, + { "id": "can_medium", "fg": 2561 }, + { "id": "can_medium_unsealed", "fg": 2562 }, + { "id": "clamp", "fg": 2563 }, + { "id": "crude_picklock", "fg": 2564 }, + { "id": "cured_hide", "fg": 2565 }, + { "id": "cured_pelt", "fg": 2566 }, + { "id": "demihuman_fat", "fg": 2567 }, + { "id": "fat", "fg": 2568 }, + { "id": "fat_tainted", "fg": 2569 }, + { "id": "headscarf", "fg": 2570 }, + { "id": "human_fat", "fg": 2572 }, + { "id": "marloss_scarf", "fg": 2577 }, + { "id": "meat", "fg": 2578 }, + { "id": "meat_tainted", "fg": 2579 }, + { "id": "mutant_fat", "fg": 2580 }, + { "id": "mutant_human_fat", "fg": 2581 }, + { "id": "mutant_human_flesh", "fg": 2582 }, + { "id": "mutant_meat", "fg": 2583 }, + { "id": "pipe_tobacco", "fg": 2585 }, + { "id": "raw_fur", "fg": 2588 }, + { "id": "raw_leather", "fg": 2589 }, + { "id": "tanning_hide", "fg": 2595 }, + { "id": "tanning_pelt", "fg": 2596 }, + { "id": "analytical_set_basic", "fg": 2598 }, + { "id": "balance_small", "fg": 2599 }, + { "id": "beaker", "fg": 2600 }, + { "id": "flask_glass", "fg": 2601 }, + { "id": "gradcylinder", "fg": 2602 }, + { "id": "ph_meter", "fg": 2603 }, + { "id": "spectrophotometer", "fg": 2604 }, + { "id": "test_tube", "fg": 2605 }, + { "id": "voltmeter", "fg": 2606 }, + { "id": "acidchitin_piece", "fg": 2611 }, + { "id": "chitin_piece", "fg": 2612 }, + { "id": "coin_dime", "fg": 2631 }, + { "id": "coin_dollar", "fg": 2632 }, + { "id": "coin_half_dollar", "fg": 2633 }, + { "id": "coin_nickel", "fg": 2634 }, + { "id": "coin_penny", "fg": 2635 }, + { "id": "coin_quarter", "fg": 2636 }, + { "id": "money_fifty", "fg": 2637 }, + { "id": "money_five", "fg": 2638 }, + { "id": "money_hundred", "fg": 2639 }, + { "id": "money_one", "fg": 2640 }, + { "id": "money_ten", "fg": 2641 }, + { "id": "money_twenty", "fg": 2642 }, + { "id": "money_two", "fg": 2643 }, + { "id": "alexandrite_gold_earring", "fg": 2644 }, + { "id": "alexandrite_platinum_earring", "fg": 2645 }, + { "id": "alexandrite_silver_earring", "fg": 2646 }, + { "id": "amethyst_gold_earring", "fg": 2647 }, + { "id": "amethyst_platinum_earring", "fg": 2648 }, + { "id": "amethyst_silver_earring", "fg": 2649 }, + { "id": "aquamarine_gold_earring", "fg": 2650 }, + { "id": "aquamarine_platinum_earring", "fg": 2651 }, + { "id": "aquamarine_silver_earring", "fg": 2652 }, + { "id": "bead_ear", "fg": 2653 }, + { "id": "blue_topaz_gold_earring", "fg": 2654 }, + { "id": "blue_topaz_platinum_earring", "fg": 2655 }, + { "id": "blue_topaz_silver_earring", "fg": 2656 }, + { "id": "citrine_gold_earring", "fg": 2657 }, + { "id": "citrine_platinum_earring", "fg": 2658 }, + { "id": "citrine_silver_earring", "fg": 2659 }, + { "id": "copper_ear", "fg": 2660 }, + { "id": "diamond_gold_earring", "fg": 2661 }, + { "id": "diamond_platinum_earring", "fg": 2662 }, + { "id": "diamond_silver_earring", "fg": 2663 }, + { "id": "emerald_gold_earring", "fg": 2664 }, + { "id": "emerald_platinum_earring", "fg": 2665 }, + { "id": "emerald_silver_earring", "fg": 2666 }, + { "id": "garnet_gold_earring", "fg": 2667 }, + { "id": "garnet_platinum_earring", "fg": 2668 }, + { "id": "garnet_silver_earring", "fg": 2669 }, + { "id": "gold_ear", "fg": 2670 }, + { "id": "opal_gold_earring", "fg": 2671 }, + { "id": "opal_platinum_earring", "fg": 2672 }, + { "id": "opal_silver_earring", "fg": 2673 }, + { "id": "pearl_gold_earring", "fg": 2674 }, + { "id": "pearl_platinum_earring", "fg": 2675 }, + { "id": "pearl_silver_earring", "fg": 2676 }, + { "id": "peridot_gold_earring", "fg": 2677 }, + { "id": "peridot_platinum_earring", "fg": 2678 }, + { "id": "peridot_silver_earring", "fg": 2679 }, + { "id": "platinum_ear", "fg": 2680 }, + { "id": "ruby_gold_earring", "fg": 2681 }, + { "id": "ruby_platinum_earring", "fg": 2682 }, + { "id": "ruby_silver_earring", "fg": 2683 }, + { "id": "sapphire_gold_earring", "fg": 2684 }, + { "id": "sapphire_platinum_earring", "fg": 2685 }, + { "id": "sapphire_silver_earring", "fg": 2686 }, + { "id": "silver_ear", "fg": 2687 }, + { "id": "tourmaline_gold_earring", "fg": 2688 }, + { "id": "tourmaline_platinum_earring", "fg": 2689 }, + { "id": "tourmaline_silver_earring", "fg": 2690 }, + { "id": "flaregun", "fg": 2691 }, + { "id": "signal_flare", "fg": 2692 }, + { "id": "bread", "fg": 2693 }, + { "id": "brioche", "fg": 2694 }, + { "id": "brown_bread", "fg": 2695 }, + { "id": "brownie", "fg": 2696 }, + { "id": "cornbread", "fg": 2699 }, + { "id": "jihelucake", "fg": 2700 }, + { "id": "pancakes", "fg": 2701 }, + { "id": "sourdough_bread", "fg": 2703 }, + { "id": "sponge_cake", "fg": 2704 }, + { "id": "tortilla_corn", "fg": 2705 }, + { "id": "wastebread", "fg": 2707 }, + { "id": "airhorn", "fg": 2708 }, + { "id": "aluminum_foil", "fg": 2709 }, + { "id": "bowling_pin", "fg": 2710 }, + { "id": "boxing_gloves", "fg": 2711 }, + { "id": "chopsticks", "fg": 2712 }, + { "id": "comb_pocket", "fg": 2713 }, + { "id": "copper", "fg": 2714 }, + { "id": "eclipse_glasses", "fg": 2715 }, + { "id": "fish", "fg": 2716 }, + { "id": "licorice", "fg": 2717 }, + { "id": "metal_tank", "fg": 2718 }, + { "id": "metal_tank_little", "fg": 2719 }, + { "id": "nanomaterial", "fg": 2720 }, + { "id": "plut_cell", "fg": 2721 }, + { "id": "rebreather_filter", "fg": 2722 }, + { "id": "rock_sock", "fg": 2723 }, + { "id": "rollerskates", "fg": 2724 }, + { "id": "sandpaper", "fg": 2725 }, + { "id": "throwing_stick", "fg": 2726 }, + { "id": "waterproof_gunmod", "fg": 2727 }, + { "id": "circsaw_blade", "fg": 2728 }, + { "id": "mirror", "fg": 2729 }, + { "id": "glass_bowl", "fg": 2730 }, + { "id": "plastic_bowl_kids", "fg": 2731 }, + { "id": "blue_pen", "fg": 2732 }, + { "id": "green_pen", "fg": 2733 }, + { "id": "pen", "fg": 2734 }, + { "id": "red_pen", "fg": 2735 }, + { "id": "soldering_iron", "fg": 2736 }, + { "id": "superglue", "fg": 2737 }, + { "id": "grenade", "fg": 2738 }, + { "id": "grenade_act", "fg": 2739 }, + { "id": "grenade_emp", "fg": 2740 }, + { "id": "grenade_emp_act", "fg": 2741 }, + { "id": "grenade_inc", "fg": 2742 }, + { "id": "grenade_inc_act", "fg": 2743 }, + { "id": "pipebomb", "fg": 2744 }, + { "id": "pipebomb_act", "fg": 2745 }, + { "id": "scrambler", "fg": 2746 }, + { "id": "scrambler_act", "fg": 2747 }, + { "id": "smokebomb", "fg": 2748 }, + { "id": "smokebomb_act", "fg": 2749 }, + { "id": "boxcutter", "fg": 2753 }, + { "id": "copper_knife", "fg": 2754 }, + { "id": "diveknife", "fg": 2755 }, + { "id": "knife_bread", "fg": 2756 }, + { "id": "knife_butcher", "fg": 2757 }, + { "id": "knife_carving", "fg": 2758 }, + { "id": "knife_chef", "fg": 2759 }, + { "id": "knife_combat", "fg": 2760 }, + { "id": "knife_folding", "fg": 2761 }, + { "id": "knife_hunting", "fg": 2762 }, + { "id": "knife_paring", "fg": 2763 }, + { "id": "knife_rambo", "fg": 2764 }, + { "id": "knife_rm42", "fg": 2765 }, + { "id": "knife_steak", "fg": 2766 }, + { "id": "knife_swissarmy", "fg": 2767 }, + { "id": "knife_trench", "fg": 2768 }, + { "id": "makeshift_knife", "fg": 2769 }, + { "id": "pockknife", "fg": 2770 }, + { "id": "primitive_knife", "fg": 2771 }, + { "id": "throwing_knife", "fg": 2772 }, + { "id": "baseball", "fg": 2794 }, + { "id": "basketball", "fg": 2795 }, + { "id": "battery_car", "fg": 2796 }, + { "id": "beach_volleyball", "fg": 2797 }, + { "id": "bowling_ball", "fg": 2798 }, + { "id": "cell_phone", "fg": 2799 }, + { "id": "cell_phone_flashlight", "fg": 2800 }, + { "id": "cigar", "fg": 2801 }, + { "id": "cigar_butt", "fg": 2802 }, + { "id": "cigar_lit", "fg": 2803 }, + { "id": "ear_plugs", "fg": 2805 }, + { "id": "fiddlehead_boiled", "fg": 2806 }, + { "id": "fiddlehead_raw", "fg": 2807 }, + { "id": "fiddlehead_sauteed", "fg": 2808 }, + { "id": "flask_hip", "fg": 2809 }, + { "id": "football", "fg": 2810 }, + { "id": "golf_ball", "fg": 2811 }, + { "id": "holo_sight", "fg": 2812 }, + { "id": "indoor_volleyball", "fg": 2813 }, + { "id": "misc_repairkit", "fg": 2814 }, + { "id": "mre_beef_box", "fg": 2815 }, + { "id": "peephole", "fg": 2816 }, + { "id": "portable_game", "fg": 2817 }, + { "id": "puck", "fg": 2818 }, + { "id": "purse", "fg": 2819 }, + { "id": "suppressor", "fg": 2820 }, + { "id": "tourniquet_upper", "fg": 2821 }, + { "id": "two_way_radio", "fg": 2822 }, + { "id": "wristwatch", "fg": 2823 }, + { "id": "mushroom", "fg": 2824 }, + { "id": "cable_speaker", "fg": 2825 }, + { "id": "headphones_circumaural", "fg": 2826 }, + { "id": "microphone_xlr_generic", "fg": 2827 }, + { "id": "popcan_stove", "fg": 2868 }, + { "id": "rad_badge", "fg": 2869 }, + { "id": "alexandrite_gold_ring", "fg": 2871 }, + { "id": "alexandrite_platinum_ring", "fg": 2872 }, + { "id": "alexandrite_silver_ring", "fg": 2873 }, + { "id": "amethyst_gold_ring", "fg": 2874 }, + { "id": "amethyst_platinum_ring", "fg": 2875 }, + { "id": "amethyst_silver_ring", "fg": 2876 }, + { "id": "aquamarine_gold_ring", "fg": 2877 }, + { "id": "aquamarine_platinum_ring", "fg": 2878 }, + { "id": "aquamarine_silver_ring", "fg": 2879 }, + { "id": "blue_topaz_gold_ring", "fg": 2880 }, + { "id": "blue_topaz_platinum_ring", "fg": 2881 }, + { "id": "blue_topaz_silver_ring", "fg": 2882 }, + { "id": "citrine_gold_ring", "fg": 2883 }, + { "id": "citrine_platinum_ring", "fg": 2884 }, + { "id": "citrine_silver_ring", "fg": 2885 }, + { "id": "diamond_platinum_ring", "fg": 2886 }, + { "id": "diamond_ring", "fg": 2887 }, + { "id": "diamond_silver_ring", "fg": 2888 }, + { "id": "emerald_gold_ring", "fg": 2889 }, + { "id": "emerald_platinum_ring", "fg": 2890 }, + { "id": "emerald_silver_ring", "fg": 2891 }, + { "id": "garnet_gold_ring", "fg": 2892 }, + { "id": "garnet_platinum_ring", "fg": 2893 }, + { "id": "garnet_silver_ring", "fg": 2894 }, + { "id": "gold_ring", "fg": 2895 }, + { "id": "opal_gold_ring", "fg": 2896 }, + { "id": "opal_platinum_ring", "fg": 2897 }, + { "id": "opal_silver_ring", "fg": 2898 }, + { "id": "pearl_gold_ring", "fg": 2899 }, + { "id": "pearl_platinum_ring", "fg": 2900 }, + { "id": "pearl_silver_ring", "fg": 2901 }, + { "id": "peridot_gold_ring", "fg": 2902 }, + { "id": "peridot_platinum_ring", "fg": 2903 }, + { "id": "peridot_silver_ring", "fg": 2904 }, + { "id": "ring_engagement", "fg": 2905 }, + { "id": "ruby_gold_ring", "fg": 2906 }, + { "id": "ruby_platinum_ring", "fg": 2907 }, + { "id": "ruby_silver_ring", "fg": 2908 }, + { "id": "sapphire_gold_ring", "fg": 2909 }, + { "id": "sapphire_platinum_ring", "fg": 2910 }, + { "id": "sapphire_silver_ring", "fg": 2911 }, + { "id": "tourmaline_gold_ring", "fg": 2912 }, + { "id": "tourmaline_platinum_ring", "fg": 2913 }, + { "id": "tourmaline_silver_ring", "fg": 2914 }, + { "id": "pebble", "fg": 2915 }, + { "id": "pebble_clay", "fg": 2916 }, + { "id": "rock", "fg": 2917 }, + { "id": "rock_flaking", "fg": 2918 }, + { "id": "rock_large", "fg": 2919 }, + { "id": "slime_scrap", "fg": 2928 }, + { "id": "clay_teapot", "fg": 2932 }, + { "id": "crucible", "fg": 2935 }, + { "id": "tire_iron", "fg": 2948 }, + { "id": "towel", "fg": 2963 }, + { "id": "towel_soiled", "fg": 2964 }, + { "id": "towel_wet", "fg": 2965 }, + { "id": "battery_charger", "fg": 2966 }, + { "id": "recharge_station", "fg": 2967 }, + { "id": "wax", "fg": 2970 } ] }, { "file": "normal.png", - "//": "range 2928 to 6287", + "//": "range 2976 to 6367", "tiles": [ { "id": "fd_acid", - "fg": 2949, + "fg": 2997, "multitile": true, "additional_tiles": [ { "id": "center", "animated": true, "fg": [ - { "weight": 8, "sprite": 2934 }, - { "weight": 8, "sprite": 2950 }, - { "weight": 8, "sprite": 2966 }, { "weight": 8, "sprite": 2982 }, { "weight": 8, "sprite": 2998 }, { "weight": 8, "sprite": 3014 }, { "weight": 8, "sprite": 3030 }, - { "weight": 8, "sprite": 3046 } + { "weight": 8, "sprite": 3046 }, + { "weight": 8, "sprite": 3062 }, + { "weight": 8, "sprite": 3078 }, + { "weight": 8, "sprite": 3094 } ] }, { "id": "corner", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 2936, 2938, 2937, 2935 ] }, - { "weight": 8, "sprite": [ 2952, 2954, 2953, 2951 ] }, - { "weight": 8, "sprite": [ 2968, 2970, 2969, 2967 ] }, { "weight": 8, "sprite": [ 2984, 2986, 2985, 2983 ] }, { "weight": 8, "sprite": [ 3000, 3002, 3001, 2999 ] }, { "weight": 8, "sprite": [ 3016, 3018, 3017, 3015 ] }, { "weight": 8, "sprite": [ 3032, 3034, 3033, 3031 ] }, - { "weight": 8, "sprite": [ 3048, 3050, 3049, 3047 ] } + { "weight": 8, "sprite": [ 3048, 3050, 3049, 3047 ] }, + { "weight": 8, "sprite": [ 3064, 3066, 3065, 3063 ] }, + { "weight": 8, "sprite": [ 3080, 3082, 3081, 3079 ] }, + { "weight": 8, "sprite": [ 3096, 3098, 3097, 3095 ] } ] }, { "id": "t_connection", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 2946, 2948, 2947, 2945 ] }, - { "weight": 8, "sprite": [ 2962, 2964, 2963, 2961 ] }, - { "weight": 8, "sprite": [ 2978, 2980, 2979, 2977 ] }, { "weight": 8, "sprite": [ 2994, 2996, 2995, 2993 ] }, { "weight": 8, "sprite": [ 3010, 3012, 3011, 3009 ] }, { "weight": 8, "sprite": [ 3026, 3028, 3027, 3025 ] }, { "weight": 8, "sprite": [ 3042, 3044, 3043, 3041 ] }, - { "weight": 8, "sprite": [ 3058, 3060, 3059, 3057 ] } + { "weight": 8, "sprite": [ 3058, 3060, 3059, 3057 ] }, + { "weight": 8, "sprite": [ 3074, 3076, 3075, 3073 ] }, + { "weight": 8, "sprite": [ 3090, 3092, 3091, 3089 ] }, + { "weight": 8, "sprite": [ 3106, 3108, 3107, 3105 ] } ] }, { "id": "edge", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 2940, 2939 ] }, - { "weight": 8, "sprite": [ 2956, 2955 ] }, - { "weight": 8, "sprite": [ 2972, 2971 ] }, { "weight": 8, "sprite": [ 2988, 2987 ] }, { "weight": 8, "sprite": [ 3004, 3003 ] }, { "weight": 8, "sprite": [ 3020, 3019 ] }, { "weight": 8, "sprite": [ 3036, 3035 ] }, - { "weight": 8, "sprite": [ 3052, 3051 ] } + { "weight": 8, "sprite": [ 3052, 3051 ] }, + { "weight": 8, "sprite": [ 3068, 3067 ] }, + { "weight": 8, "sprite": [ 3084, 3083 ] }, + { "weight": 8, "sprite": [ 3100, 3099 ] } ] }, { "id": "end_piece", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 2942, 2944, 2943, 2941 ] }, - { "weight": 8, "sprite": [ 2958, 2960, 2959, 2957 ] }, - { "weight": 8, "sprite": [ 2974, 2976, 2975, 2973 ] }, { "weight": 8, "sprite": [ 2990, 2992, 2991, 2989 ] }, { "weight": 8, "sprite": [ 3006, 3008, 3007, 3005 ] }, { "weight": 8, "sprite": [ 3022, 3024, 3023, 3021 ] }, { "weight": 8, "sprite": [ 3038, 3040, 3039, 3037 ] }, - { "weight": 8, "sprite": [ 3054, 3056, 3055, 3053 ] } + { "weight": 8, "sprite": [ 3054, 3056, 3055, 3053 ] }, + { "weight": 8, "sprite": [ 3070, 3072, 3071, 3069 ] }, + { "weight": 8, "sprite": [ 3086, 3088, 3087, 3085 ] }, + { "weight": 8, "sprite": [ 3102, 3104, 3103, 3101 ] } ] }, { "id": "unconnected", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 2949, 2949 ] }, - { "weight": 8, "sprite": [ 2965, 2965 ] }, - { "weight": 8, "sprite": [ 2981, 2981 ] }, { "weight": 8, "sprite": [ 2997, 2997 ] }, { "weight": 8, "sprite": [ 3013, 3013 ] }, { "weight": 8, "sprite": [ 3029, 3029 ] }, { "weight": 8, "sprite": [ 3045, 3045 ] }, - { "weight": 8, "sprite": [ 3061, 3061 ] } + { "weight": 8, "sprite": [ 3061, 3061 ] }, + { "weight": 8, "sprite": [ 3077, 3077 ] }, + { "weight": 8, "sprite": [ 3093, 3093 ] }, + { "weight": 8, "sprite": [ 3109, 3109 ] } ] } ] }, { "id": "fd_bile", - "fg": 3077, + "fg": 3125, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3062 }, - { "id": "corner", "fg": [ 3064, 3066, 3065, 3063 ] }, - { "id": "t_connection", "fg": [ 3074, 3076, 3075, 3073 ] }, - { "id": "edge", "fg": [ 3068, 3067 ] }, - { "id": "end_piece", "fg": [ 3070, 3072, 3071, 3069 ] }, - { "id": "unconnected", "fg": [ 3077, 3077 ] } + { "id": "center", "fg": 3110 }, + { "id": "corner", "fg": [ 3112, 3114, 3113, 3111 ] }, + { "id": "t_connection", "fg": [ 3122, 3124, 3123, 3121 ] }, + { "id": "edge", "fg": [ 3116, 3115 ] }, + { "id": "end_piece", "fg": [ 3118, 3120, 3119, 3117 ] }, + { "id": "unconnected", "fg": [ 3125, 3125 ] } ] }, { "id": "fd_electricity", - "fg": 3093, + "fg": 3141, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3078 }, - { "id": "corner", "fg": [ 3080, 3082, 3081, 3079 ] }, - { "id": "t_connection", "fg": [ 3090, 3092, 3091, 3089 ] }, - { "id": "edge", "fg": [ 3084, 3083 ] }, - { "id": "end_piece", "fg": [ 3086, 3088, 3087, 3085 ] }, - { "id": "unconnected", "fg": [ 3093, 3093 ] } + { "id": "center", "fg": 3126 }, + { "id": "corner", "fg": [ 3128, 3130, 3129, 3127 ] }, + { "id": "t_connection", "fg": [ 3138, 3140, 3139, 3137 ] }, + { "id": "edge", "fg": [ 3132, 3131 ] }, + { "id": "end_piece", "fg": [ 3134, 3136, 3135, 3133 ] }, + { "id": "unconnected", "fg": [ 3141, 3141 ] } ] }, { "id": "fd_sludge", - "fg": 3141, + "fg": 3189, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 3094 }, { "weight": 1, "sprite": 3110 }, { "weight": 1, "sprite": 3126 } ] + "fg": [ { "weight": 1, "sprite": 3142 }, { "weight": 1, "sprite": 3158 }, { "weight": 1, "sprite": 3174 } ] }, { "id": "corner", "fg": [ - { "weight": 1, "sprite": [ 3096, 3098, 3097, 3095 ] }, - { "weight": 1, "sprite": [ 3112, 3114, 3113, 3111 ] }, - { "weight": 1, "sprite": [ 3128, 3130, 3129, 3127 ] } + { "weight": 1, "sprite": [ 3144, 3146, 3145, 3143 ] }, + { "weight": 1, "sprite": [ 3160, 3162, 3161, 3159 ] }, + { "weight": 1, "sprite": [ 3176, 3178, 3177, 3175 ] } ] }, { "id": "t_connection", "fg": [ - { "weight": 1, "sprite": [ 3106, 3108, 3107, 3105 ] }, - { "weight": 1, "sprite": [ 3122, 3124, 3123, 3121 ] }, - { "weight": 1, "sprite": [ 3138, 3140, 3139, 3137 ] } + { "weight": 1, "sprite": [ 3154, 3156, 3155, 3153 ] }, + { "weight": 1, "sprite": [ 3170, 3172, 3171, 3169 ] }, + { "weight": 1, "sprite": [ 3186, 3188, 3187, 3185 ] } ] }, { "id": "edge", "fg": [ - { "weight": 1, "sprite": [ 3100, 3099 ] }, - { "weight": 1, "sprite": [ 3116, 3115 ] }, - { "weight": 1, "sprite": [ 3132, 3131 ] } + { "weight": 1, "sprite": [ 3148, 3147 ] }, + { "weight": 1, "sprite": [ 3164, 3163 ] }, + { "weight": 1, "sprite": [ 3180, 3179 ] } ] }, { "id": "end_piece", "fg": [ - { "weight": 1, "sprite": [ 3102, 3104, 3103, 3101 ] }, - { "weight": 1, "sprite": [ 3118, 3120, 3119, 3117 ] }, - { "weight": 1, "sprite": [ 3134, 3136, 3135, 3133 ] } + { "weight": 1, "sprite": [ 3150, 3152, 3151, 3149 ] }, + { "weight": 1, "sprite": [ 3166, 3168, 3167, 3165 ] }, + { "weight": 1, "sprite": [ 3182, 3184, 3183, 3181 ] } ] }, { "id": "unconnected", "fg": [ - { "weight": 1, "sprite": [ 3109, 3109 ] }, - { "weight": 1, "sprite": [ 3125, 3125 ] }, - { "weight": 1, "sprite": [ 3141, 3141 ] } + { "weight": 1, "sprite": [ 3157, 3157 ] }, + { "weight": 1, "sprite": [ 3173, 3173 ] }, + { "weight": 1, "sprite": [ 3189, 3189 ] } ] } ] @@ -4223,458 +4272,458 @@ { "id": "fd_tindalos_gas", "fg": [ - { "weight": 5, "sprite": 3152 }, - { "weight": 5, "sprite": 3154 }, - { "weight": 5, "sprite": 3155 }, - { "weight": 5, "sprite": 3156 }, - { "weight": 5, "sprite": 3157 }, - { "weight": 5, "sprite": 3158 }, - { "weight": 5, "sprite": 3159 }, - { "weight": 5, "sprite": 3160 }, - { "weight": 5, "sprite": 3161 }, - { "weight": 5, "sprite": 3153 } + { "weight": 5, "sprite": 3200 }, + { "weight": 5, "sprite": 3202 }, + { "weight": 5, "sprite": 3203 }, + { "weight": 5, "sprite": 3204 }, + { "weight": 5, "sprite": 3205 }, + { "weight": 5, "sprite": 3206 }, + { "weight": 5, "sprite": 3207 }, + { "weight": 5, "sprite": 3208 }, + { "weight": 5, "sprite": 3209 }, + { "weight": 5, "sprite": 3201 } ], "animated": true }, - { "id": "f_plant_seed", "fg": 3171, "rotates": false }, - { "id": "f_plant_seedling", "fg": 3172, "rotates": false }, - { "id": "f_plant_mature", "fg": 3170, "rotates": false }, - { "id": "f_plant_harvest", "fg": 3169, "rotates": false }, - { "id": "tr_rollmat", "fg": 3174 }, - { "id": "tr_fur_rollmat", "fg": 3173 }, - { "id": "f_air_conditioner", "fg": 3176 }, - { "id": "f_armchair", "rotates": true, "fg": [ 3179, 3180, 3178, 3177 ] }, - { "id": "f_ash", "fg": 3181 }, - { "id": "f_barricade_road", "fg": 3182 }, + { "id": "f_plant_seed", "fg": 3219, "rotates": false }, + { "id": "f_plant_seedling", "fg": 3220, "rotates": false }, + { "id": "f_plant_mature", "fg": 3218, "rotates": false }, + { "id": "f_plant_harvest", "fg": 3217, "rotates": false }, + { "id": "tr_rollmat", "fg": 3222 }, + { "id": "tr_fur_rollmat", "fg": 3221 }, + { "id": "f_air_conditioner", "fg": 3224 }, + { "id": "f_armchair", "rotates": true, "fg": [ 3227, 3228, 3226, 3225 ] }, + { "id": "f_ash", "fg": 3229 }, + { "id": "f_barricade_road", "fg": 3230 }, { "id": "f_bathtub", "multitile": true, - "fg": 3198, + "fg": 3246, "additional_tiles": [ - { "id": "center", "fg": 3183 }, - { "id": "corner", "fg": [ 3185, 3187, 3186, 3184 ] }, - { "id": "t_connection", "fg": [ 3195, 3197, 3196, 3194 ] }, - { "id": "edge", "fg": [ 3189, 3188 ] }, - { "id": "end_piece", "fg": [ 3191, 3193, 3192, 3190 ] }, - { "id": "unconnected", "fg": [ 3198, 3198 ] } + { "id": "center", "fg": 3231 }, + { "id": "corner", "fg": [ 3233, 3235, 3234, 3232 ] }, + { "id": "t_connection", "fg": [ 3243, 3245, 3244, 3242 ] }, + { "id": "edge", "fg": [ 3237, 3236 ] }, + { "id": "end_piece", "fg": [ 3239, 3241, 3240, 3238 ] }, + { "id": "unconnected", "fg": [ 3246, 3246 ] } ] }, { "id": "f_bed", "multitile": true, - "fg": 3216, + "fg": 3264, "additional_tiles": [ - { "id": "center", "fg": 3201 }, - { "id": "corner", "fg": [ 3203, 3205, 3204, 3202 ] }, - { "id": "t_connection", "fg": [ 3213, 3215, 3214, 3212 ] }, - { "id": "edge", "fg": [ 3207, 3206 ] }, - { "id": "end_piece", "fg": [ 3209, 3211, 3210, 3208 ] }, - { "id": "unconnected", "fg": [ 3216, 3216 ] } + { "id": "center", "fg": 3249 }, + { "id": "corner", "fg": [ 3251, 3253, 3252, 3250 ] }, + { "id": "t_connection", "fg": [ 3261, 3263, 3262, 3260 ] }, + { "id": "edge", "fg": [ 3255, 3254 ] }, + { "id": "end_piece", "fg": [ 3257, 3259, 3258, 3256 ] }, + { "id": "unconnected", "fg": [ 3264, 3264 ] } ] }, { "id": "f_bench", "multitile": true, - "fg": 3232, + "fg": 3280, "additional_tiles": [ - { "id": "center", "fg": 3217 }, - { "id": "corner", "fg": [ 3219, 3221, 3220, 3218 ] }, - { "id": "t_connection", "fg": [ 3229, 3231, 3230, 3228 ] }, - { "id": "edge", "fg": [ 3223, 3222 ] }, - { "id": "end_piece", "fg": [ 3225, 3227, 3226, 3224 ] }, - { "id": "unconnected", "fg": [ 3232, 3232 ] } + { "id": "center", "fg": 3265 }, + { "id": "corner", "fg": [ 3267, 3269, 3268, 3266 ] }, + { "id": "t_connection", "fg": [ 3277, 3279, 3278, 3276 ] }, + { "id": "edge", "fg": [ 3271, 3270 ] }, + { "id": "end_piece", "fg": [ 3273, 3275, 3274, 3272 ] }, + { "id": "unconnected", "fg": [ 3280, 3280 ] } ] }, - { "id": "f_bluebell", "fg": [ { "weight": 1, "sprite": 3234 }, { "weight": 2, "sprite": 3235 } ] }, - { "id": "f_boulder_medium", "fg": 3236 }, - { "id": "f_boulder_small", "fg": 3237 }, - { "id": "f_generator_broken", "fg": 3238 }, - { "id": "t_generator_broken", "fg": 3238, "bg": 4837 }, - { "id": "f_bulletin", "fg": 3239 }, - { "id": [ "f_canvas_door", "f_large_canvas_door" ], "fg": 3240 }, - { "id": [ "f_canvas_door_o", "f_large_canvas_door_o" ], "fg": 3241 }, + { "id": "f_bluebell", "fg": [ { "weight": 1, "sprite": 3282 }, { "weight": 2, "sprite": 3283 } ] }, + { "id": "f_boulder_medium", "fg": 3284 }, + { "id": "f_boulder_small", "fg": 3285 }, + { "id": "f_generator_broken", "fg": 3286 }, + { "id": "t_generator_broken", "fg": 3286, "bg": 4907 }, + { "id": "f_bulletin", "fg": 3287 }, + { "id": [ "f_canvas_door", "f_large_canvas_door" ], "fg": 3288 }, + { "id": [ "f_canvas_door_o", "f_large_canvas_door_o" ], "fg": 3289 }, { "id": [ "f_canvas_wall", "f_large_canvas_wall" ], "multitile": true, - "fg": 3257, + "fg": 3305, "additional_tiles": [ - { "id": "center", "fg": 3242 }, - { "id": "corner", "fg": [ 3244, 3246, 3245, 3243 ] }, - { "id": "t_connection", "fg": [ 3254, 3256, 3255, 3253 ] }, - { "id": "edge", "fg": [ 3248, 3247 ] }, - { "id": "end_piece", "fg": [ 3250, 3252, 3251, 3249 ] }, - { "id": "unconnected", "fg": 3257 } + { "id": "center", "fg": 3290 }, + { "id": "corner", "fg": [ 3292, 3294, 3293, 3291 ] }, + { "id": "t_connection", "fg": [ 3302, 3304, 3303, 3301 ] }, + { "id": "edge", "fg": [ 3296, 3295 ] }, + { "id": "end_piece", "fg": [ 3298, 3300, 3299, 3297 ] }, + { "id": "unconnected", "fg": 3305 } ] }, - { "id": "f_cardboard_box", "fg": 3258 }, - { "id": "f_centrifuge", "fg": 3259 }, - { "id": "t_centrifuge", "fg": 3259, "bg": 5066 }, - { "id": "f_chair", "rotates": true, "fg": [ 3262, 3263, 3261, 3260 ] }, - { "id": "f_chamomile", "fg": 3264 }, - { "id": "f_compact_ASRG_containment", "fg": 3266 }, + { "id": "f_cardboard_box", "fg": 3306 }, + { "id": "f_centrifuge", "fg": 3307 }, + { "id": "t_centrifuge", "fg": 3307, "bg": 5136 }, + { "id": "f_chair", "rotates": true, "fg": [ 3310, 3311, 3309, 3308 ] }, + { "id": "f_chamomile", "fg": 3312 }, + { "id": "f_compact_ASRG_containment", "fg": 3314 }, { "id": "f_counter", "multitile": true, - "fg": 3282, + "fg": 3330, "additional_tiles": [ - { "id": "center", "fg": 3267 }, - { "id": "corner", "fg": [ 3269, 3271, 3270, 3268 ] }, - { "id": "t_connection", "fg": [ 3279, 3281, 3280, 3278 ] }, - { "id": "edge", "fg": [ 3273, 3272 ] }, - { "id": "end_piece", "fg": [ 3275, 3277, 3276, 3274 ] }, - { "id": "unconnected", "fg": [ 3282, 3282 ] } + { "id": "center", "fg": 3315 }, + { "id": "corner", "fg": [ 3317, 3319, 3318, 3316 ] }, + { "id": "t_connection", "fg": [ 3327, 3329, 3328, 3326 ] }, + { "id": "edge", "fg": [ 3321, 3320 ] }, + { "id": "end_piece", "fg": [ 3323, 3325, 3324, 3322 ] }, + { "id": "unconnected", "fg": [ 3330, 3330 ] } ] }, { "id": "f_cupboard", "multitile": true, - "fg": 3298, + "fg": 3346, "additional_tiles": [ - { "id": "center", "fg": 3283 }, - { "id": "corner", "fg": [ 3285, 3287, 3286, 3284 ] }, - { "id": "t_connection", "fg": [ 3295, 3297, 3296, 3294 ] }, - { "id": "edge", "fg": [ 3289, 3288 ] }, - { "id": "end_piece", "fg": [ 3291, 3293, 3292, 3290 ] }, - { "id": "unconnected", "fg": [ 3298, 3298 ] } + { "id": "center", "fg": 3331 }, + { "id": "corner", "fg": [ 3333, 3335, 3334, 3332 ] }, + { "id": "t_connection", "fg": [ 3343, 3345, 3344, 3342 ] }, + { "id": "edge", "fg": [ 3337, 3336 ] }, + { "id": "end_piece", "fg": [ 3339, 3341, 3340, 3338 ] }, + { "id": "unconnected", "fg": [ 3346, 3346 ] } ] }, - { "id": "f_dahlia", "fg": [ { "weight": 1, "sprite": 3301 }, { "weight": 2, "sprite": 3302 } ] }, - { "id": "f_dandelion_season_spring", "fg": 3303 }, - { "id": "f_dandelion_season_summer", "fg": 3305 }, - { "id": "f_dandelion_season_autumn", "fg": 3304 }, - { "id": "f_dandelion_season_winter", "fg": 3306 }, - { "id": "f_datura", "fg": 3307 }, + { "id": "f_dahlia", "fg": [ { "weight": 1, "sprite": 3349 }, { "weight": 2, "sprite": 3350 } ] }, + { "id": "f_dandelion_season_spring", "fg": 3351 }, + { "id": "f_dandelion_season_summer", "fg": 3353 }, + { "id": "f_dandelion_season_autumn", "fg": 3352 }, + { "id": "f_dandelion_season_winter", "fg": 3354 }, + { "id": "f_datura", "fg": 3355 }, { "id": "f_desk", "multitile": true, - "fg": 3323, + "fg": 3371, "additional_tiles": [ - { "id": "center", "fg": 3308 }, - { "id": "corner", "fg": [ 3310, 3312, 3311, 3309 ] }, - { "id": "t_connection", "fg": [ 3320, 3322, 3321, 3319 ] }, - { "id": "edge", "fg": [ 3314, 3313 ] }, - { "id": "end_piece", "fg": [ 3316, 3318, 3317, 3315 ] }, - { "id": "unconnected", "fg": [ 3323, 3323 ] } + { "id": "center", "fg": 3356 }, + { "id": "corner", "fg": [ 3358, 3360, 3359, 3357 ] }, + { "id": "t_connection", "fg": [ 3368, 3370, 3369, 3367 ] }, + { "id": "edge", "fg": [ 3362, 3361 ] }, + { "id": "end_piece", "fg": [ 3364, 3366, 3365, 3363 ] }, + { "id": "unconnected", "fg": [ 3371, 3371 ] } ] }, - { "id": "f_displaycase", "fg": 3324 }, - { "id": "f_entertainment_center", "fg": 3325 }, - { "id": "f_filing_cabinet", "fg": 3326 }, - { "id": "f_firering", "fg": 3327 }, - { "id": "f_flower_spurge", "fg": 3328 }, - { "id": "f_flower_tulip", "fg": [ { "weight": 1, "sprite": 3329 }, { "weight": 2, "sprite": 3330 } ] }, + { "id": "f_displaycase", "fg": 3372 }, + { "id": "f_entertainment_center", "fg": 3373 }, + { "id": "f_filing_cabinet", "fg": 3374 }, + { "id": "f_firering", "fg": 3375 }, + { "id": "f_flower_spurge", "fg": 3376 }, + { "id": "f_flower_tulip", "fg": [ { "weight": 1, "sprite": 3377 }, { "weight": 2, "sprite": 3378 } ] }, { "id": [ "f_grave_stone", "f_grave_head" ], - "fg": [ { "weight": 1, "sprite": 3331 }, { "weight": 1, "sprite": 3332 } ] - }, - { "id": "f_grave_stone_old", "fg": [ { "weight": 1, "sprite": 3333 }, { "weight": 1, "sprite": 3334 } ] }, - { "id": [ "f_groundsheet", "f_large_groundsheet", "f_center_groundsheet", "f_fema_groundsheet" ], "fg": 3335 }, - { "id": "f_gunsafe_ml", "fg": 3338 }, - { "id": "f_gunsafe_mj", "fg": 3337 }, - { "id": "f_gun_safe_el", "fg": 3336 }, - { "id": "f_hay", "fg": 3339 }, - { "id": "f_indoor_plant", "fg": 3340 }, - { "id": "f_indoor_plant_y", "fg": 3341 }, - { "id": [ "f_indoor_plant_y_season_autumn", "f_indoor_plant_y_season_winter" ], "fg": 3342 }, - { "id": [ "f_kiln_empty", "f_kiln_full" ], "fg": 3343 }, - { "id": "f_leather_tarp", "fg": 3344 }, - { "id": "f_mailbox", "fg": 3346 }, - { "id": "f_metal_crate_r", "fg": 3349 }, - { "id": "f_metal_crate_c", "fg": 3347 }, - { "id": "f_metal_crate_o", "fg": 3348 }, + "fg": [ { "weight": 1, "sprite": 3379 }, { "weight": 1, "sprite": 3380 } ] + }, + { "id": "f_grave_stone_old", "fg": [ { "weight": 1, "sprite": 3381 }, { "weight": 1, "sprite": 3382 } ] }, + { "id": [ "f_groundsheet", "f_large_groundsheet", "f_center_groundsheet", "f_fema_groundsheet" ], "fg": 3383 }, + { "id": "f_gunsafe_ml", "fg": 3386 }, + { "id": "f_gunsafe_mj", "fg": 3385 }, + { "id": "f_gun_safe_el", "fg": 3384 }, + { "id": "f_hay", "fg": 3387 }, + { "id": "f_indoor_plant", "fg": 3388 }, + { "id": "f_indoor_plant_y", "fg": 3389 }, + { "id": [ "f_indoor_plant_y_season_autumn", "f_indoor_plant_y_season_winter" ], "fg": 3390 }, + { "id": [ "f_kiln_empty", "f_kiln_full" ], "fg": 3391 }, + { "id": "f_leather_tarp", "fg": 3392 }, + { "id": "f_mailbox", "fg": 3394 }, + { "id": "f_metal_crate_r", "fg": 3397 }, + { "id": "f_metal_crate_c", "fg": 3395 }, + { "id": "f_metal_crate_o", "fg": 3396 }, { "id": "f_metal_table", "multitile": true, - "fg": 3365, + "fg": 3413, "additional_tiles": [ - { "id": "center", "fg": 3350 }, - { "id": "corner", "fg": [ 3352, 3354, 3353, 3351 ] }, - { "id": "t_connection", "fg": [ 3362, 3364, 3363, 3361 ] }, - { "id": "edge", "fg": [ 3356, 3355 ] }, - { "id": "end_piece", "fg": [ 3358, 3360, 3359, 3357 ] }, - { "id": "unconnected", "fg": [ 3365, 3365 ] } + { "id": "center", "fg": 3398 }, + { "id": "corner", "fg": [ 3400, 3402, 3401, 3399 ] }, + { "id": "t_connection", "fg": [ 3410, 3412, 3411, 3409 ] }, + { "id": "edge", "fg": [ 3404, 3403 ] }, + { "id": "end_piece", "fg": [ 3406, 3408, 3407, 3405 ] }, + { "id": "unconnected", "fg": [ 3413, 3413 ] } ] }, - { "id": "f_alien_anemone", "fg": 3366 }, - { "id": "f_alien_table", "fg": 3367 }, - { "id": "f_mustard_season_spring", "fg": 3369, "rotates": false }, - { "id": "f_mustard_season_summer", "fg": 3370, "rotates": false }, - { "id": "f_mustard_season_autumn", "fg": 3368, "rotates": false }, - { "id": "f_mustard_season_winter", "fg": 3371, "rotates": false }, - { "id": "f_mutpoppy", "fg": 3372 }, + { "id": "f_alien_anemone", "fg": 3414 }, + { "id": "f_alien_table", "fg": 3415 }, + { "id": "f_mustard_season_spring", "fg": 3417, "rotates": false }, + { "id": "f_mustard_season_summer", "fg": 3418, "rotates": false }, + { "id": "f_mustard_season_autumn", "fg": 3416, "rotates": false }, + { "id": "f_mustard_season_winter", "fg": 3419, "rotates": false }, + { "id": "f_mutpoppy", "fg": 3420 }, { "id": "f_planter", "multitile": true, - "fg": 3388, + "fg": 3436, "additional_tiles": [ - { "id": "center", "fg": 3373 }, - { "id": "corner", "fg": [ 3375, 3377, 3376, 3374 ] }, - { "id": "t_connection", "fg": [ 3385, 3387, 3386, 3384 ] }, - { "id": "edge", "fg": [ 3379, 3378 ] }, - { "id": "end_piece", "fg": [ 3381, 3383, 3382, 3380 ] }, - { "id": "unconnected", "fg": [ 3388, 3388 ] } + { "id": "center", "fg": 3421 }, + { "id": "corner", "fg": [ 3423, 3425, 3424, 3422 ] }, + { "id": "t_connection", "fg": [ 3433, 3435, 3434, 3432 ] }, + { "id": "edge", "fg": [ 3427, 3426 ] }, + { "id": "end_piece", "fg": [ 3429, 3431, 3430, 3428 ] }, + { "id": "unconnected", "fg": [ 3436, 3436 ] } ] }, { "id": "f_planter_harvest", "multitile": true, - "fg": 3404, + "fg": 3452, "additional_tiles": [ - { "id": "center", "fg": 3389 }, - { "id": "corner", "fg": [ 3391, 3393, 3392, 3390 ] }, - { "id": "t_connection", "fg": [ 3401, 3403, 3402, 3400 ] }, - { "id": "edge", "fg": [ 3395, 3394 ] }, - { "id": "end_piece", "fg": [ 3397, 3399, 3398, 3396 ] }, - { "id": "unconnected", "fg": [ 3404, 3404 ] } + { "id": "center", "fg": 3437 }, + { "id": "corner", "fg": [ 3439, 3441, 3440, 3438 ] }, + { "id": "t_connection", "fg": [ 3449, 3451, 3450, 3448 ] }, + { "id": "edge", "fg": [ 3443, 3442 ] }, + { "id": "end_piece", "fg": [ 3445, 3447, 3446, 3444 ] }, + { "id": "unconnected", "fg": [ 3452, 3452 ] } ] }, { "id": "f_planter_mature", "multitile": true, - "fg": 3420, + "fg": 3468, "additional_tiles": [ - { "id": "center", "fg": 3405 }, - { "id": "corner", "fg": [ 3407, 3409, 3408, 3406 ] }, - { "id": "t_connection", "fg": [ 3417, 3419, 3418, 3416 ] }, - { "id": "edge", "fg": [ 3411, 3410 ] }, - { "id": "end_piece", "fg": [ 3413, 3415, 3414, 3412 ] }, - { "id": "unconnected", "fg": [ 3420, 3420 ] } + { "id": "center", "fg": 3453 }, + { "id": "corner", "fg": [ 3455, 3457, 3456, 3454 ] }, + { "id": "t_connection", "fg": [ 3465, 3467, 3466, 3464 ] }, + { "id": "edge", "fg": [ 3459, 3458 ] }, + { "id": "end_piece", "fg": [ 3461, 3463, 3462, 3460 ] }, + { "id": "unconnected", "fg": [ 3468, 3468 ] } ] }, { "id": "f_planter_seedling", "multitile": true, - "fg": 3436, + "fg": 3484, "additional_tiles": [ - { "id": "center", "fg": 3421 }, - { "id": "corner", "fg": [ 3423, 3425, 3424, 3422 ] }, - { "id": "t_connection", "fg": [ 3433, 3435, 3434, 3432 ] }, - { "id": "edge", "fg": [ 3427, 3426 ] }, - { "id": "end_piece", "fg": [ 3429, 3431, 3430, 3428 ] }, - { "id": "unconnected", "fg": [ 3436, 3436 ] } + { "id": "center", "fg": 3469 }, + { "id": "corner", "fg": [ 3471, 3473, 3472, 3470 ] }, + { "id": "t_connection", "fg": [ 3481, 3483, 3482, 3480 ] }, + { "id": "edge", "fg": [ 3475, 3474 ] }, + { "id": "end_piece", "fg": [ 3477, 3479, 3478, 3476 ] }, + { "id": "unconnected", "fg": [ 3484, 3484 ] } ] }, - { "id": "f_plastic_groundsheet", "fg": 3437 }, + { "id": "f_plastic_groundsheet", "fg": 3485 }, { "id": "f_pool_table", "multitile": true, - "fg": 3453, + "fg": 3501, "additional_tiles": [ - { "id": "center", "fg": 3438 }, - { "id": "corner", "fg": [ 3440, 3442, 3441, 3439 ] }, - { "id": "t_connection", "fg": [ 3450, 3452, 3451, 3449 ] }, - { "id": "edge", "fg": [ 3444, 3443 ] }, - { "id": "end_piece", "fg": [ 3446, 3448, 3447, 3445 ] }, - { "id": "unconnected", "fg": 3453 } + { "id": "center", "fg": 3486 }, + { "id": "corner", "fg": [ 3488, 3490, 3489, 3487 ] }, + { "id": "t_connection", "fg": [ 3498, 3500, 3499, 3497 ] }, + { "id": "edge", "fg": [ 3492, 3491 ] }, + { "id": "end_piece", "fg": [ 3494, 3496, 3495, 3493 ] }, + { "id": "unconnected", "fg": 3501 } ] }, - { "id": "f_rack", "fg": 3454 }, - { "id": "f_rack_wood", "fg": 3455 }, - { "id": "f_recycle_bin", "fg": 3456 }, - { "id": "f_rubble", "fg": 3457 }, - { "id": "f_rubble_rock", "fg": 3458 }, + { "id": "f_rack", "fg": 3502 }, + { "id": "f_rack_wood", "fg": 3503 }, + { "id": "f_recycle_bin", "fg": 3504 }, + { "id": "f_rubble", "fg": 3505 }, + { "id": "f_rubble_rock", "fg": 3506 }, { "id": "f_scrap_bridge", - "fg": 3474, + "fg": 3522, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3459 }, - { "id": "corner", "fg": [ 3461, 3463, 3462, 3460 ] }, - { "id": "t_connection", "fg": [ 3471, 3473, 3472, 3470 ] }, - { "id": "edge", "fg": [ 3465, 3464 ] }, - { "id": "end_piece", "fg": [ 3467, 3469, 3468, 3466 ] }, - { "id": "unconnected", "fg": [ 3474, 3474 ] } + { "id": "center", "fg": 3507 }, + { "id": "corner", "fg": [ 3509, 3511, 3510, 3508 ] }, + { "id": "t_connection", "fg": [ 3519, 3521, 3520, 3518 ] }, + { "id": "edge", "fg": [ 3513, 3512 ] }, + { "id": "end_piece", "fg": [ 3515, 3517, 3516, 3514 ] }, + { "id": "unconnected", "fg": [ 3522, 3522 ] } ] }, - { "id": "f_sign", "fg": 3475 }, - { "id": "f_skin_door", "fg": 3476 }, - { "id": "f_skin_door_o", "fg": 3477 }, + { "id": "f_sign", "fg": 3523 }, + { "id": "f_skin_door", "fg": 3524 }, + { "id": "f_skin_door_o", "fg": 3525 }, { "id": "f_skin_wall", - "fg": 3494, + "fg": 3542, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3479 }, - { "id": "corner", "fg": [ 3481, 3483, 3482, 3480 ] }, - { "id": "t_connection", "fg": [ 3491, 3493, 3492, 3490 ] }, - { "id": "edge", "fg": [ 3485, 3484 ] }, - { "id": "end_piece", "fg": [ 3487, 3489, 3488, 3486 ] }, - { "id": "unconnected", "fg": 3494 } + { "id": "center", "fg": 3527 }, + { "id": "corner", "fg": [ 3529, 3531, 3530, 3528 ] }, + { "id": "t_connection", "fg": [ 3539, 3541, 3540, 3538 ] }, + { "id": "edge", "fg": [ 3533, 3532 ] }, + { "id": "end_piece", "fg": [ 3535, 3537, 3536, 3534 ] }, + { "id": "unconnected", "fg": 3542 } ] }, { "id": "f_sofa", "multitile": true, - "fg": 3510, + "fg": 3558, "additional_tiles": [ - { "id": "center", "fg": 3495 }, - { "id": "corner", "fg": [ 3497, 3499, 3498, 3496 ] }, - { "id": "t_connection", "fg": [ 3507, 3509, 3508, 3506 ] }, - { "id": "edge", "fg": [ 3501, 3500 ] }, - { "id": "end_piece", "fg": [ 3503, 3505, 3504, 3502 ] }, - { "id": "unconnected", "fg": [ 3510, 3510 ] } + { "id": "center", "fg": 3543 }, + { "id": "corner", "fg": [ 3545, 3547, 3546, 3544 ] }, + { "id": "t_connection", "fg": [ 3555, 3557, 3556, 3554 ] }, + { "id": "edge", "fg": [ 3549, 3548 ] }, + { "id": "end_piece", "fg": [ 3551, 3553, 3552, 3550 ] }, + { "id": "unconnected", "fg": [ 3558, 3558 ] } ] }, - { "id": "f_stool", "fg": 3511 }, - { "id": "f_sunflower_season_spring", "fg": 3512 }, - { "id": "f_sunflower_season_winter", "fg": 3513 }, + { "id": "f_stool", "fg": 3559 }, + { "id": "f_sunflower_season_spring", "fg": 3560 }, + { "id": "f_sunflower_season_winter", "fg": 3561 }, { "id": "f_table", "multitile": true, - "fg": 3529, + "fg": 3577, "additional_tiles": [ - { "id": "center", "fg": 3514 }, - { "id": "corner", "fg": [ 3516, 3518, 3517, 3515 ] }, - { "id": "t_connection", "fg": [ 3526, 3528, 3527, 3525 ] }, - { "id": "edge", "fg": [ 3520, 3519 ] }, - { "id": "end_piece", "fg": [ 3522, 3524, 3523, 3521 ] }, - { "id": "unconnected", "fg": [ 3529, 3529 ] } + { "id": "center", "fg": 3562 }, + { "id": "corner", "fg": [ 3564, 3566, 3565, 3563 ] }, + { "id": "t_connection", "fg": [ 3574, 3576, 3575, 3573 ] }, + { "id": "edge", "fg": [ 3568, 3567 ] }, + { "id": "end_piece", "fg": [ 3570, 3572, 3571, 3569 ] }, + { "id": "unconnected", "fg": [ 3577, 3577 ] } ] }, - { "id": "f_toilet", "fg": 3530 }, - { "id": "f_trashcan", "fg": 3531 }, - { "id": "f_wreckage", "fg": 3532 }, - { "id": "f_lilypad", "fg": 3533 }, - { "id": "f_small_satelitte_dish", "fg": 3537 }, - { "id": "f_TV_antenna", "fg": 3534 }, - { "id": "f_cellphone_booster", "fg": 3535 }, - { "id": "f_vent_pipe", "fg": 3538 }, - { "id": "f_roof_turbine_vent", "fg": 3536 }, + { "id": "f_toilet", "fg": 3578 }, + { "id": "f_trashcan", "fg": 3579 }, + { "id": "f_wreckage", "fg": 3580 }, + { "id": "f_lilypad", "fg": 3581 }, + { "id": "f_small_satelitte_dish", "fg": 3585 }, + { "id": "f_TV_antenna", "fg": 3582 }, + { "id": "f_cellphone_booster", "fg": 3583 }, + { "id": "f_vent_pipe", "fg": 3586 }, + { "id": "f_roof_turbine_vent", "fg": 3584 }, { "id": "f_sandbag_half", "multitile": true, - "fg": 3554, - "additional_tiles": [ - { "id": "center", "fg": 3539 }, - { "id": "corner", "fg": [ 3541, 3543, 3542, 3540 ] }, - { "id": "t_connection", "fg": [ 3551, 3553, 3552, 3550 ] }, - { "id": "edge", "fg": [ 3545, 3544 ] }, - { "id": "end_piece", "fg": [ 3547, 3549, 3548, 3546 ] }, - { "id": "unconnected", "fg": [ 3554, 3554 ] } - ] - }, - { "id": "1st_aid", "fg": 3555 }, - { "id": "2x4", "fg": 3556 }, - { "id": "halberd", "fg": 3577 }, - { "id": "halberd_fake", "fg": 3577 }, - { "id": "nodachi", "fg": 3585 }, - { "id": "nodachi_fake", "fg": 3585 }, - { "id": "nodachi_inferior", "fg": 3585 }, - { "id": "arming_sword", "fg": 3721 }, - { "id": "art_sphere", "fg": 3736 }, - { "id": "art_rod", "fg": 3734 }, - { "id": "art_teardrop", "fg": 3738 }, - { "id": "art_lamp", "fg": 3730 }, - { "id": "art_snake", "fg": 3735 }, - { "id": "art_disc", "fg": 3727 }, - { "id": "art_beads", "fg": 3724 }, - { "id": "art_napkin", "fg": 3731 }, - { "id": "art_urchin", "fg": 3740 }, - { "id": "art_jelly", "fg": 3728 }, - { "id": "art_spiral", "fg": 3737 }, - { "id": "art_pin", "fg": 3732 }, - { "id": "art_tube", "fg": 3739 }, - { "id": "art_pyramid", "fg": 3733 }, - { "id": "art_crystal", "fg": 3726 }, - { "id": "art_knot", "fg": 3729 }, - { "id": "art_crescent", "fg": 3725 }, - { "id": "altered_teapot", "fg": 3722 }, - { "id": "architect_cube", "fg": 3723 }, - { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 3798 }, - { "id": [ "ak47", "aksemi" ], "fg": 3748 }, - { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 3762 }, - { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 3799 }, - { "id": [ "m249", "m249_semi" ], "fg": 3807 }, - { "id": [ "m60", "m60_semi" ], "fg": 3817 }, - { "id": [ "mp40", "mp40semi" ], "fg": 3833 }, - { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 3872 }, - { "id": "fire_ax", "fg": 3888 }, - { "id": "ax", "fg": 3891 }, - { "id": "hatchet", "fg": 3889 }, - { "id": "backpack", "fg": 3892 }, - { "id": "duffelbag", "fg": 3893 }, - { "id": "molle_pack", "fg": 3894 }, - { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 3897 }, - { "id": "bag_canvas", "fg": 3900 }, - { "id": "bat", "fg": 3901 }, - { "id": "bat_metal", "fg": 3902 }, - { "id": "blanket", "fg": 3903 }, - { "id": "down_blanket", "fg": 3904 }, - { "id": "electric_blanket", "fg": 3905 }, - { "id": "board_trap", "fg": 3906 }, - { "id": [ "compbow", "compbow_high", "compbow_low" ], "fg": 3907 }, - { "id": "box_large", "fg": 3918 }, - { "id": "box_medium", "fg": 3919 }, - { "id": "broom", "fg": 3920 }, - { "id": "bwirebat", "fg": 3921 }, - { "id": "cattlefodder", "fg": 3940 }, - { "id": "chainsaw_off", "fg": 3941 }, - { "id": "axe_ring", "fg": 3948 }, - { "id": "balclava", "fg": 3949 }, - { "id": "beret", "fg": 3950 }, - { "id": "boots", "fg": 3951 }, - { "id": "boxer_briefs", "fg": 3952 }, - { "id": "boxer_shorts", "fg": 3953 }, - { "id": "boy_shorts", "fg": 3954 }, - { "id": "bra", "fg": 3955 }, - { "id": "briefs", "fg": 3956 }, - { "id": "bscabbard", "fg": 3957 }, - { "id": "corset", "fg": 3960 }, - { "id": "cowboy_hat", "fg": 3961 }, - { "id": "dress_shoes", "fg": 3962 }, - { "id": "hat_ball", "fg": 3963 }, - { "id": "hat_cotton", "fg": 3964 }, - { "id": "hat_fur", "fg": 3965 }, - { "id": "hat_knit", "fg": 3967 }, - { "id": "hat_noise_cancelling", "fg": 3968 }, - { "id": "helmet_barbute", "fg": 3969 }, - { "id": "helmet_chitin", "fg": 3970 }, - { "id": "helmet_kabuto", "fg": 3971 }, - { "id": "holster", "fg": 3972 }, - { "id": "hoodie", "fg": 3973 }, - { "id": "jeans", "fg": 3976 }, - { "id": "leather_belt", "fg": 3977 }, - { "id": "longshirt", "fg": 3978 }, - { "id": "maid_dress", "fg": 3979 }, - { "id": "maid_hat", "fg": 3980 }, - { "id": "mask_dust", "fg": 3981 }, - { "id": "panties", "fg": 3982 }, - { "id": "pants", "fg": 3983 }, - { "id": "pants_cargo", "fg": 3984 }, - { "id": "polo_shirt", "fg": 3985 }, - { "id": "ragpouch", "fg": 3986 }, - { "id": "scabbard", "fg": 3987 }, - { "id": "sneakers", "fg": 3989 }, - { "id": "socks", "fg": 3990 }, - { "id": "spearsling", "fg": 3991 }, - { "id": "stockings", "fg": 3993 }, - { "id": "sweater", "fg": 3996 }, - { "id": "sweatshirt", "fg": 3997 }, - { "id": "tank_top", "fg": 3998 }, - { "id": "tool_belt", "fg": 3999 }, - { "id": "tshirt", "fg": 4000 }, - { "id": "turban", "fg": 4001 }, - { "id": "undershirt", "fg": 4002 }, - { "id": "coat_lab", "fg": 3958 }, - { "id": "coat_rain", "fg": 3959 }, - { "id": "sports_bra", "fg": 3992 }, - { "id": "skirt", "fg": 3988 }, - { "id": "jacket_light", "fg": 3975 }, - { "id": "jacket_army", "fg": 3974 }, - { "id": "hat_hard", "fg": 3966 }, - { "id": "striped_pants", "fg": 3994 }, - { "id": "striped_shirt", "fg": 3995 }, - { "id": "cloak", "fg": 4003 }, - { "id": "cloak_wool", "fg": 4006 }, - { "id": "cloak_leather", "fg": 4005 }, - { "id": "cloak_fur", "fg": 4004 }, - { "id": "coffeemaker", "fg": 4007 }, - { "id": "contacts", "fg": 4008 }, - { "id": "corpse", "fg": 4009 }, - { "id": "corpse_generic_human", "fg": 4010 }, - { "id": "crowbar", "fg": 4018 }, - { "id": "filter_air", "fg": 4019 }, - { "id": "fish_bait", "fg": 4020 }, + "fg": 3602, + "additional_tiles": [ + { "id": "center", "fg": 3587 }, + { "id": "corner", "fg": [ 3589, 3591, 3590, 3588 ] }, + { "id": "t_connection", "fg": [ 3599, 3601, 3600, 3598 ] }, + { "id": "edge", "fg": [ 3593, 3592 ] }, + { "id": "end_piece", "fg": [ 3595, 3597, 3596, 3594 ] }, + { "id": "unconnected", "fg": [ 3602, 3602 ] } + ] + }, + { "id": "1st_aid", "fg": 3603 }, + { "id": "2x4", "fg": 3604 }, + { "id": "halberd", "fg": 3625 }, + { "id": "halberd_fake", "fg": 3625 }, + { "id": "nodachi", "fg": 3633 }, + { "id": "nodachi_fake", "fg": 3633 }, + { "id": "nodachi_inferior", "fg": 3633 }, + { "id": "arming_sword", "fg": 3770 }, + { "id": "art_sphere", "fg": 3785 }, + { "id": "art_rod", "fg": 3783 }, + { "id": "art_teardrop", "fg": 3787 }, + { "id": "art_lamp", "fg": 3779 }, + { "id": "art_snake", "fg": 3784 }, + { "id": "art_disc", "fg": 3776 }, + { "id": "art_beads", "fg": 3773 }, + { "id": "art_napkin", "fg": 3780 }, + { "id": "art_urchin", "fg": 3789 }, + { "id": "art_jelly", "fg": 3777 }, + { "id": "art_spiral", "fg": 3786 }, + { "id": "art_pin", "fg": 3781 }, + { "id": "art_tube", "fg": 3788 }, + { "id": "art_pyramid", "fg": 3782 }, + { "id": "art_crystal", "fg": 3775 }, + { "id": "art_knot", "fg": 3778 }, + { "id": "art_crescent", "fg": 3774 }, + { "id": "altered_teapot", "fg": 3771 }, + { "id": "architect_cube", "fg": 3772 }, + { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 3847 }, + { "id": [ "ak47", "aksemi" ], "fg": 3797 }, + { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 3811 }, + { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 3848 }, + { "id": [ "m249", "m249_semi" ], "fg": 3856 }, + { "id": [ "m60", "m60_semi" ], "fg": 3866 }, + { "id": [ "mp40", "mp40semi" ], "fg": 3882 }, + { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 3921 }, + { "id": "fire_ax", "fg": 3937 }, + { "id": "ax", "fg": 3940 }, + { "id": "hatchet", "fg": 3938 }, + { "id": "backpack", "fg": 3941 }, + { "id": "duffelbag", "fg": 3942 }, + { "id": "molle_pack", "fg": 3943 }, + { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 3946 }, + { "id": "bag_canvas", "fg": 3949 }, + { "id": "bat", "fg": 3950 }, + { "id": "bat_metal", "fg": 3951 }, + { "id": "blanket", "fg": 3952 }, + { "id": "down_blanket", "fg": 3953 }, + { "id": "electric_blanket", "fg": 3954 }, + { "id": "board_trap", "fg": 3955 }, + { "id": [ "compbow", "compbow_high", "compbow_low" ], "fg": 3956 }, + { "id": "box_large", "fg": 3967 }, + { "id": "box_medium", "fg": 3968 }, + { "id": "broom", "fg": 3969 }, + { "id": "bwirebat", "fg": 3970 }, + { "id": "cattlefodder", "fg": 3988 }, + { "id": "chainsaw_off", "fg": 3989 }, + { "id": "axe_ring", "fg": 3996 }, + { "id": "balclava", "fg": 3997 }, + { "id": "beret", "fg": 3998 }, + { "id": "boots", "fg": 3999 }, + { "id": "boxer_briefs", "fg": 4000 }, + { "id": "boxer_shorts", "fg": 4001 }, + { "id": "boy_shorts", "fg": 4002 }, + { "id": "bra", "fg": 4003 }, + { "id": "briefs", "fg": 4004 }, + { "id": "bscabbard", "fg": 4005 }, + { "id": "corset", "fg": 4008 }, + { "id": "cowboy_hat", "fg": 4009 }, + { "id": "dress_shoes", "fg": 4010 }, + { "id": "hat_ball", "fg": 4011 }, + { "id": "hat_cotton", "fg": 4012 }, + { "id": "hat_fur", "fg": 4013 }, + { "id": "hat_knit", "fg": 4015 }, + { "id": "hat_noise_cancelling", "fg": 4016 }, + { "id": "helmet_barbute", "fg": 4017 }, + { "id": "helmet_chitin", "fg": 4018 }, + { "id": "helmet_kabuto", "fg": 4019 }, + { "id": "holster", "fg": 4020 }, + { "id": "hoodie", "fg": 4021 }, + { "id": "jeans", "fg": 4024 }, + { "id": "leather_belt", "fg": 4025 }, + { "id": "longshirt", "fg": 4026 }, + { "id": "maid_dress", "fg": 4027 }, + { "id": "maid_hat", "fg": 4028 }, + { "id": "mask_dust", "fg": 4029 }, + { "id": "panties", "fg": 4030 }, + { "id": "pants", "fg": 4031 }, + { "id": "pants_cargo", "fg": 4032 }, + { "id": "polo_shirt", "fg": 4033 }, + { "id": "ragpouch", "fg": 4034 }, + { "id": "scabbard", "fg": 4035 }, + { "id": "sneakers", "fg": 4037 }, + { "id": "socks", "fg": 4038 }, + { "id": "spearsling", "fg": 4039 }, + { "id": "stockings", "fg": 4041 }, + { "id": "sweater", "fg": 4044 }, + { "id": "sweatshirt", "fg": 4045 }, + { "id": "tank_top", "fg": 4046 }, + { "id": "tool_belt", "fg": 4047 }, + { "id": "tshirt", "fg": 4048 }, + { "id": "turban", "fg": 4049 }, + { "id": "undershirt", "fg": 4050 }, + { "id": "coat_lab", "fg": 4006 }, + { "id": "coat_rain", "fg": 4007 }, + { "id": "sports_bra", "fg": 4040 }, + { "id": "skirt", "fg": 4036 }, + { "id": "jacket_light", "fg": 4023 }, + { "id": "jacket_army", "fg": 4022 }, + { "id": "hat_hard", "fg": 4014 }, + { "id": "striped_pants", "fg": 4042 }, + { "id": "striped_shirt", "fg": 4043 }, + { "id": "cloak", "fg": 4051 }, + { "id": "cloak_wool", "fg": 4054 }, + { "id": "cloak_leather", "fg": 4053 }, + { "id": "cloak_fur", "fg": 4052 }, + { "id": "coffeemaker", "fg": 4055 }, + { "id": "contacts", "fg": 4056 }, + { "id": "corpse", "fg": 4057 }, + { "id": "corpse_generic_human", "fg": 4058 }, + { "id": "crowbar", "fg": 4066 }, + { "id": "filter_air", "fg": 4067 }, + { "id": "fish_bait", "fg": 4068 }, { "id": [ "corpse_mon_fish_brook_trout", @@ -4685,343 +4734,341 @@ "corpse_mon_fish_white_sucker", "corpse_mon_fish_fallfish" ], - "fg": 4023 - }, - { "id": "fish_trap", "fg": 4025 }, - { "id": "fishing_rod_basic", "fg": 4026 }, - { "id": "fishing_rod_professional", "fg": 4027 }, - { "id": "forge", "fg": 4029 }, - { "id": "char_forge", "fg": 4028 }, - { "id": "glass_shard", "fg": 4053 }, - { "id": "hoboreel", "fg": 4054 }, - { "id": "hydrogen_tank", "fg": 4055 }, - { "id": "leather_tarp", "fg": 4056 }, - { "id": "water", "fg": 4067 }, - { "id": "water_clean", "fg": 4068 }, - { "id": "gasoline", "fg": 4062 }, - { "id": "diesel", "fg": 4060 }, - { "id": "biodiesel", "fg": 4058 }, - { "id": "flamethrower_fuel", "fg": 4061 }, - { "id": "avgas", "fg": 4057 }, - { "id": "lamp_oil", "fg": 4064 }, - { "id": "motor_oil", "fg": 4065 }, - { "id": "napalm", "fg": 4066 }, - { "id": "gelled_gasoline", "fg": 4063 }, - { "id": "blood", "fg": 4059 }, - { "id": "log", "fg": 4069 }, - { "id": "lucern_hammer", "fg": 4070 }, - { "id": "marble", "fg": 4072 }, - { "id": "microwave", "fg": 4073 }, - { "id": "mjolnir", "fg": 4074 }, - { "id": "mop", "fg": 4075 }, - { "id": "mp5mag", "fg": 4076 }, - { "id": "nail", "fg": 4084 }, - { "id": "nailbat", "fg": 4085 }, - { "id": "nailboard", "fg": 4086 }, - { "id": "needle_bone", "fg": 4087 }, - { "id": "needle_curved", "fg": 4088 }, - { "id": "needle_wood", "fg": 4089 }, - { "id": "many_years_old_newspaper", "fg": 4090 }, - { "id": "years_old_newspaper", "fg": 4095 }, - { "id": "months_old_newspaper", "fg": 4091 }, - { "id": "newest_newspaper", "fg": 4092 }, - { "id": "one_year_old_newspaper", "fg": 4093 }, - { "id": "weeks_old_newspaper", "fg": 4094 }, - { "id": "2h_flail_wood", "fg": 4096 }, - { "id": "pillow", "fg": 4098 }, - { "id": "down_pillow", "fg": 4097 }, - { "id": "pine_bough", "fg": 4099 }, - { "id": "pinecone", "fg": 4100 }, + "fg": 4071 + }, + { "id": "fish_trap", "fg": 4073 }, + { "id": "fishing_rod_basic", "fg": 4074 }, + { "id": "fishing_rod_professional", "fg": 4075 }, + { "id": "forge", "fg": 4077 }, + { "id": "char_forge", "fg": 4076 }, + { "id": "glass_shard", "fg": 4101 }, + { "id": "hoboreel", "fg": 4102 }, + { "id": "hydrogen_tank", "fg": 4103 }, + { "id": "leather_tarp", "fg": 4104 }, + { "id": "water", "fg": 4115 }, + { "id": "water_clean", "fg": 4116 }, + { "id": "gasoline", "fg": 4110 }, + { "id": "diesel", "fg": 4108 }, + { "id": "biodiesel", "fg": 4106 }, + { "id": "flamethrower_fuel", "fg": 4109 }, + { "id": "avgas", "fg": 4105 }, + { "id": "lamp_oil", "fg": 4112 }, + { "id": "motor_oil", "fg": 4113 }, + { "id": "napalm", "fg": 4114 }, + { "id": "gelled_gasoline", "fg": 4111 }, + { "id": "blood", "fg": 4107 }, + { "id": "log", "fg": 4117 }, + { "id": "lucern_hammer", "fg": 4118 }, + { "id": "marble", "fg": 4120 }, + { "id": "microwave", "fg": 4121 }, + { "id": "mjolnir", "fg": 4122 }, + { "id": "mop", "fg": 4123 }, + { "id": "mp5mag", "fg": 4124 }, + { "id": "nail", "fg": 4132 }, + { "id": "nailbat", "fg": 4133 }, + { "id": "nailboard", "fg": 4134 }, + { "id": "needle_bone", "fg": 4135 }, + { "id": "needle_curved", "fg": 4136 }, + { "id": "needle_wood", "fg": 4137 }, + { "id": "many_years_old_newspaper", "fg": 4138 }, + { "id": "years_old_newspaper", "fg": 4143 }, + { "id": "months_old_newspaper", "fg": 4139 }, + { "id": "newest_newspaper", "fg": 4140 }, + { "id": "one_year_old_newspaper", "fg": 4141 }, + { "id": "weeks_old_newspaper", "fg": 4142 }, + { "id": "2h_flail_wood", "fg": 4144 }, + { "id": "pillow", "fg": 4146 }, + { "id": "down_pillow", "fg": 4145 }, + { "id": "pine_bough", "fg": 4147 }, + { "id": "pinecone", "fg": 4148 }, { "id": [ "rifle_9mm", "rifle_3006", "rifle_45", "rifle_22", "rifle_40", "rifle_44", "rifle_38", "rifle_223" ], - "fg": 4101 - }, - { "id": "plastic_sheet", "fg": 4103 }, - { "id": "plastic_shopping_bag", "fg": 4104 }, - { "id": "pneumatic_shotgun", "fg": 4105 }, - { "id": "pool_ball", "fg": 4106 }, - { "id": "powder_candy", "fg": 4108 }, - { "id": "rag", "fg": 4109 }, - { "id": "rebar", "fg": 4110 }, - { "id": [ "fur_rollmat", "broketent", "largebroketent" ], "fg": 4111 }, - { "id": [ "rollmat", "tent_kit", "large_tent_kit" ], "fg": 4112 }, - { "id": "scissors", "fg": 4113 }, - { "id": "screwdriver", "fg": 4114 }, - { "id": "sewing_kit", "fg": 4115 }, - { "id": "sharp_rock", "fg": 4116 }, - { "id": "sheet_metal", "fg": 4117 }, - { "id": "sheet_metal_small", "fg": 4118 }, - { "id": "shovel", "fg": 4119 }, - { "id": "slingshot", "fg": 4120 }, - { "id": "solar_panel", "fg": 4122 }, - { "id": "solar_cell", "fg": 4121 }, - { "id": "pointy_stick", "fg": 4123 }, - { "id": "spear_wood", "fg": 4131 }, - { "id": "spear_spike", "fg": 4129 }, - { "id": "spear_knife", "fg": 4125 }, - { "id": "spear_knife_superior", "fg": 4126 }, - { "id": "spear_pipe", "fg": 4127 }, - { "id": "spear_rebar", "fg": 4128 }, - { "id": "spear_steel", "fg": 4130 }, - { "id": "spear_copper", "fg": 4124 }, - { "id": "splinter", "fg": 4132 }, - { "id": "sponge", "fg": 4133 }, - { "id": "spoon", "fg": 4134 }, - { "id": "stick", "fg": 4135 }, - { "id": "stick_long", "fg": 4136 }, - { "id": "primitive_hammer", "fg": 4137 }, - { "id": "string_36", "fg": 4138 }, - { "id": "string_6", "fg": 4139 }, - { "id": "tailors_kit", "fg": 4141 }, - { "id": "tarp", "fg": 4142 }, - { "id": "television", "fg": 4143 }, - { "id": "thermos", "fg": 4144 }, - { "id": "thread", "fg": 4145 }, - { "id": "2h_flail_steel", "fg": 4150 }, - { "id": "welder", "fg": 4151 }, - { "id": "welder_crude", "fg": 4152 }, - { "id": "wood_panel", "fg": 4153 }, - { "id": "wood_sheet", "fg": 4154 }, - { "id": "corpse_mon_troll", "fg": 4155 }, - { "id": "mon_bluejay", "fg": 4160, "bg": 1324 }, - { "id": "mon_bluejay_chick", "fg": 4161, "bg": 1324 }, - { "id": "mon_cardinal", "fg": 4162, "bg": 1324 }, - { "id": "mon_cardinal_chick", "fg": 4163, "bg": 1324 }, - { "id": "mon_chicken_chick", "fg": 4166, "bg": 1324 }, - { "id": "mon_crow_chick", "fg": 4168, "bg": 1324 }, - { "id": "mon_crow_mutant", "fg": 4169, "bg": 1323 }, - { "id": "mon_duck_chick", "fg": 4171, "bg": 1324 }, - { "id": "mon_goose_canadian_chick", "fg": 4172, "bg": 1324 }, - { "id": "mon_grouse_chick", "fg": 4173, "bg": 1324 }, - { "id": "mon_pheasant_chick", "fg": 4174, "bg": 1324 }, - { "id": "mon_raven", "fg": 4175, "bg": 1324 }, - { "id": "mon_raven_chick", "fg": 4176, "bg": 1324 }, - { "id": "mon_robin", "fg": 4177, "bg": 1324 }, - { "id": "mon_robin_chick", "fg": 4178, "bg": 1324 }, - { "id": "mon_sparrow", "fg": 4179, "bg": 1324 }, - { "id": "mon_sparrow_chick", "fg": 4180, "bg": 1324 }, - { "id": "mon_turkey_chick", "fg": 4182, "bg": 1324 }, - { "id": "mon_crow_mutant_small", "fg": 4183, "bg": 1323 }, + "fg": 4149 + }, + { "id": "plastic_sheet", "fg": 4151 }, + { "id": "plastic_shopping_bag", "fg": 4152 }, + { "id": "pneumatic_shotgun", "fg": 4153 }, + { "id": "pool_ball", "fg": 4154 }, + { "id": "powder_candy", "fg": 4156 }, + { "id": "rag", "fg": 4157 }, + { "id": "rebar", "fg": 4158 }, + { "id": [ "fur_rollmat", "broketent", "largebroketent" ], "fg": 4159 }, + { "id": [ "rollmat", "tent_kit", "large_tent_kit" ], "fg": 4160 }, + { "id": "scissors", "fg": 4161 }, + { "id": "screwdriver", "fg": 4162 }, + { "id": "sewing_kit", "fg": 4163 }, + { "id": "sharp_rock", "fg": 4164 }, + { "id": "sheet_metal", "fg": 4165 }, + { "id": "sheet_metal_small", "fg": 4166 }, + { "id": "shovel", "fg": 4167 }, + { "id": "slingshot", "fg": 4168 }, + { "id": "solar_panel", "fg": 4170 }, + { "id": "solar_cell", "fg": 4169 }, + { "id": "pointy_stick", "fg": 4171 }, + { "id": "spear_wood", "fg": 4179 }, + { "id": "spear_spike", "fg": 4177 }, + { "id": "spear_knife", "fg": 4173 }, + { "id": "spear_knife_superior", "fg": 4174 }, + { "id": "spear_pipe", "fg": 4175 }, + { "id": "spear_rebar", "fg": 4176 }, + { "id": "spear_steel", "fg": 4178 }, + { "id": "spear_copper", "fg": 4172 }, + { "id": "splinter", "fg": 4180 }, + { "id": "sponge", "fg": 4181 }, + { "id": "spoon", "fg": 4182 }, + { "id": "stick", "fg": 4183 }, + { "id": "stick_long", "fg": 4184 }, + { "id": "primitive_hammer", "fg": 4185 }, + { "id": "string_36", "fg": 4186 }, + { "id": "string_6", "fg": 4187 }, + { "id": "tailors_kit", "fg": 4189 }, + { "id": "tarp", "fg": 4190 }, + { "id": "television", "fg": 4191 }, + { "id": "thermos", "fg": 4192 }, + { "id": "thread", "fg": 4193 }, + { "id": "2h_flail_steel", "fg": 4198 }, + { "id": "welder", "fg": 4199 }, + { "id": "welder_crude", "fg": 4200 }, + { "id": "wood_panel", "fg": 4201 }, + { "id": "wood_sheet", "fg": 4202 }, + { "id": "corpse_mon_troll", "fg": 4203 }, + { "id": "mon_bluejay", "fg": 4208, "bg": 1339 }, + { "id": "mon_bluejay_chick", "fg": 4209, "bg": 1339 }, + { "id": "mon_cardinal", "fg": 4210, "bg": 1339 }, + { "id": "mon_cardinal_chick", "fg": 4211, "bg": 1339 }, + { "id": "mon_chicken_chick", "fg": 4214, "bg": 1339 }, + { "id": "mon_crow_chick", "fg": 4216, "bg": 1339 }, + { "id": "mon_crow_mutant", "fg": 4217, "bg": 1338 }, + { "id": "mon_duck_chick", "fg": 4219, "bg": 1339 }, + { "id": "mon_goose_canadian_chick", "fg": 4220, "bg": 1339 }, + { "id": "mon_grouse_chick", "fg": 4221, "bg": 1339 }, + { "id": "mon_pheasant_chick", "fg": 4222, "bg": 1339 }, + { "id": "mon_raven", "fg": 4223, "bg": 1339 }, + { "id": "mon_raven_chick", "fg": 4224, "bg": 1339 }, + { "id": "mon_robin", "fg": 4225, "bg": 1339 }, + { "id": "mon_robin_chick", "fg": 4226, "bg": 1339 }, + { "id": "mon_sparrow", "fg": 4227, "bg": 1339 }, + { "id": "mon_sparrow_chick", "fg": 4228, "bg": 1339 }, + { "id": "mon_turkey_chick", "fg": 4230, "bg": 1339 }, + { "id": "mon_crow_mutant_small", "fg": 4231, "bg": 1338 }, { "id": "mon_cat_bengal", - "fg": [ { "weight": 1, "sprite": 4189 }, { "weight": 1, "sprite": 4188 } ], - "bg": 1324 + "fg": [ { "weight": 1, "sprite": 4237 }, { "weight": 1, "sprite": 4236 } ], + "bg": 1339 }, { "id": "mon_cat_calico", - "fg": [ { "weight": 1, "sprite": 4192 }, { "weight": 1, "sprite": 4191 } ], - "bg": 1324 + "fg": [ { "weight": 1, "sprite": 4240 }, { "weight": 1, "sprite": 4239 } ], + "bg": 1339 }, { "id": "mon_cat_chonker", - "fg": [ { "weight": 1, "sprite": 4195 }, { "weight": 1, "sprite": 4194 } ], - "bg": 1324 + "fg": [ { "weight": 1, "sprite": 4243 }, { "weight": 1, "sprite": 4242 } ], + "bg": 1339 }, { "id": "mon_cat_devon_rex", - "fg": [ { "weight": 1, "sprite": 4198 }, { "weight": 1, "sprite": 4197 } ], - "bg": 1324 + "fg": [ { "weight": 1, "sprite": 4246 }, { "weight": 1, "sprite": 4245 } ], + "bg": 1339 }, { "id": "mon_cat_longhair", - "fg": [ { "weight": 1, "sprite": 4201 }, { "weight": 1, "sprite": 4200 } ], - "bg": 1324 + "fg": [ { "weight": 1, "sprite": 4249 }, { "weight": 1, "sprite": 4248 } ], + "bg": 1339 }, { "id": "mon_cat_maine_coon", - "fg": [ { "weight": 1, "sprite": 4204 }, { "weight": 1, "sprite": 4203 } ], - "bg": 1324 + "fg": [ { "weight": 1, "sprite": 4252 }, { "weight": 1, "sprite": 4251 } ], + "bg": 1339 }, { "id": "mon_cat_persian", - "fg": [ { "weight": 1, "sprite": 4207 }, { "weight": 1, "sprite": 4206 } ], - "bg": 1324 + "fg": [ { "weight": 1, "sprite": 4255 }, { "weight": 1, "sprite": 4254 } ], + "bg": 1339 }, { "id": "mon_cat_siamese", - "fg": [ { "weight": 1, "sprite": 4213 }, { "weight": 1, "sprite": 4212 } ], - "bg": 1324 + "fg": [ { "weight": 1, "sprite": 4261 }, { "weight": 1, "sprite": 4260 } ], + "bg": 1339 }, { "id": "mon_cat_sphynx", - "fg": [ { "weight": 1, "sprite": 4216 }, { "weight": 1, "sprite": 4215 } ], - "bg": 1324 + "fg": [ { "weight": 1, "sprite": 4264 }, { "weight": 1, "sprite": 4263 } ], + "bg": 1339 }, { "id": "mon_cat_tabby", - "fg": [ { "weight": 1, "sprite": 4219 }, { "weight": 1, "sprite": 4218 } ], - "bg": 1324 - }, - { "id": "mon_cat_kitten", "fg": 4208, "bg": 1324 }, - { "id": "mon_cat_bengal_kitten", "fg": 4187, "bg": 1324 }, - { "id": "mon_cat_calico_kitten", "fg": 4190, "bg": 1324 }, - { "id": "mon_cat_chonker_kitten", "fg": 4193, "bg": 1324 }, - { "id": "mon_cat_devon_rex_kitten", "fg": 4196, "bg": 1324 }, - { "id": "mon_cat_longhair_kitten", "fg": 4199, "bg": 1324 }, - { "id": "mon_cat_maine_coon_kitten", "fg": 4202, "bg": 1324 }, - { "id": "mon_cat_persian_kitten", "fg": 4205, "bg": 1324 }, - { "id": "mon_cat_siamese_kitten", "fg": 4211, "bg": 1324 }, - { "id": "mon_cat_sphynx_kitten", "fg": 4214, "bg": 1324 }, - { "id": "mon_cat_tabby_kitten", "fg": 4217, "bg": 1324 }, - { "id": "mon_dog_beagle", "fg": 4226, "bg": 1324 }, - { "id": "mon_dog_gshepherd", "fg": 4237, "bg": 1323 }, - { "id": "mon_dog_boxer", "fg": 4228, "bg": 1323 }, - { "id": "mon_dog_dachshund", "fg": 4233, "bg": 1323 }, - { "id": "mon_dog_auscattle", "fg": 4222, "bg": 1323 }, - { "id": "mon_dog_bcollie", "fg": 4224, "bg": 1323 }, - { "id": "mon_dog_chihuahua", "fg": 4231, "bg": 1324 }, - { "id": "mon_dog_gpyrenees", "fg": 4235, "bg": 1323 }, - { "id": "mon_dog_pitbullmix", "fg": 4240, "bg": 1323 }, - { "id": "mon_dog_samoyed", "fg": 4244, "bg": 1323 }, - { "id": "mon_dog_mutant_mongrel", "fg": 4239, "bg": 1323 }, - { "id": "mon_dog_auscattle_pup", "fg": 4223, "bg": 1324 }, - { "id": "mon_dog_bcollie_pup", "fg": 4225, "bg": 1324 }, - { "id": "mon_dog_beagle_pup", "fg": 4227, "bg": 1324 }, - { "id": "mon_dog_boxer_pup", "fg": 4229, "bg": 1324 }, - { "id": "mon_dog_bull_pup", "fg": 4230, "bg": 1324 }, - { "id": "mon_dog_chihuahua_pup", "fg": 4232, "bg": 1324 }, - { "id": "mon_dog_dachshund_pup", "fg": 4234, "bg": 1324 }, - { "id": "mon_dog_gpyrenees_pup", "fg": 4236, "bg": 1324 }, - { "id": "mon_dog_gshepherd_pup", "fg": 4238, "bg": 1324 }, - { "id": "mon_dog_pitbullmix_pup", "fg": 4241, "bg": 1324 }, - { "id": "mon_dog_pup", "fg": 4242, "bg": 1324 }, - { "id": "mon_dog_rottweiler_pup", "fg": 4243, "bg": 1324 }, - { "id": "mon_dog_samoyed_pup", "fg": 4245, "bg": 1324 }, - { "id": "mon_fish_tiny", "fg": 4252 }, - { "id": "mon_fish_small", "fg": 4251 }, - { "id": "mon_fish_medium", "fg": 4250 }, - { "id": [ "mon_fish_large", "mon_fish_huge" ], "fg": 4249 }, - { "id": "mon_cockatrice_chick", "fg": 4257, "bg": 1324 }, - { "id": "mon_cockatrice", "fg": 4256, "bg": 1324 }, - { "id": "mon_opossum", "fg": 4275, "bg": 1324 }, - { "id": "mon_locust", "fg": 4282, "bg": 1323 }, - { "id": "mon_locust_nymph", "fg": 4283, "bg": 1324 }, - { "id": "mon_locust_small", "fg": 4284, "bg": 1324 }, - { "id": "mon_mosquito_small", "fg": 4285, "bg": 1324 }, - { "id": "corpse_mon_ant", "fg": 4286 }, - { "id": "corpse_mon_ant_acid", "fg": 4287 }, - { "id": "corpse_mon_ant_larva", "fg": 4289 }, - { "id": "corpse_mon_ant_acid_larva", "fg": 4288 }, - { "id": "mon_ant_small", "fg": 4296, "bg": 1324 }, - { "id": "mon_ant_acid_small", "fg": 4293, "bg": 1324 }, - { "id": "mon_plague_nymph", "fg": 4301, "bg": 1324 }, - { "id": "mon_plague_vector", "fg": 4302, "bg": 1323 }, - { "id": "mon_skittering_plague", "fg": 4304, "bg": 1323 }, - { "id": "mon_cat_mutant_kitten_prism", "fg": 4313, "bg": 1324 }, - { "id": "mon_cat_mutant_prism", "fg": 4314, "bg": 1324 }, - { "id": "mon_coyote_mutant_shark", "fg": 4315, "bg": 1323 }, - { "id": "mon_crayfish_small", "fg": 4316, "bg": 1323 }, - { "id": "mon_deer_fawn", "fg": 4318, "bg": 1323 }, - { "id": "mon_deer_mutant_spider_fawn", "fg": 4319, "bg": 1323 }, - { "id": "mon_grasshopper_small", "fg": 4327, "bg": 1324 }, - { "id": "mon_hallu_multicooker", "fg": 4329, "bg": 1323 }, - { "id": "mon_hazmatbot", "fg": 4330, "bg": 1323 }, + "fg": [ { "weight": 1, "sprite": 4267 }, { "weight": 1, "sprite": 4266 } ], + "bg": 1339 + }, + { "id": "mon_cat_kitten", "fg": 4256, "bg": 1339 }, + { "id": "mon_cat_bengal_kitten", "fg": 4235, "bg": 1339 }, + { "id": "mon_cat_calico_kitten", "fg": 4238, "bg": 1339 }, + { "id": "mon_cat_chonker_kitten", "fg": 4241, "bg": 1339 }, + { "id": "mon_cat_devon_rex_kitten", "fg": 4244, "bg": 1339 }, + { "id": "mon_cat_longhair_kitten", "fg": 4247, "bg": 1339 }, + { "id": "mon_cat_maine_coon_kitten", "fg": 4250, "bg": 1339 }, + { "id": "mon_cat_persian_kitten", "fg": 4253, "bg": 1339 }, + { "id": "mon_cat_siamese_kitten", "fg": 4259, "bg": 1339 }, + { "id": "mon_cat_sphynx_kitten", "fg": 4262, "bg": 1339 }, + { "id": "mon_cat_tabby_kitten", "fg": 4265, "bg": 1339 }, + { "id": "mon_dog_beagle", "fg": 4274, "bg": 1339 }, + { "id": "mon_dog_gshepherd", "fg": 4285, "bg": 1338 }, + { "id": "mon_dog_boxer", "fg": 4276, "bg": 1338 }, + { "id": "mon_dog_dachshund", "fg": 4281, "bg": 1338 }, + { "id": "mon_dog_auscattle", "fg": 4270, "bg": 1338 }, + { "id": "mon_dog_bcollie", "fg": 4272, "bg": 1338 }, + { "id": "mon_dog_chihuahua", "fg": 4279, "bg": 1339 }, + { "id": "mon_dog_gpyrenees", "fg": 4283, "bg": 1338 }, + { "id": "mon_dog_pitbullmix", "fg": 4288, "bg": 1338 }, + { "id": "mon_dog_samoyed", "fg": 4292, "bg": 1338 }, + { "id": "mon_dog_mutant_mongrel", "fg": 4287, "bg": 1338 }, + { "id": "mon_dog_auscattle_pup", "fg": 4271, "bg": 1339 }, + { "id": "mon_dog_bcollie_pup", "fg": 4273, "bg": 1339 }, + { "id": "mon_dog_beagle_pup", "fg": 4275, "bg": 1339 }, + { "id": "mon_dog_boxer_pup", "fg": 4277, "bg": 1339 }, + { "id": "mon_dog_bull_pup", "fg": 4278, "bg": 1339 }, + { "id": "mon_dog_chihuahua_pup", "fg": 4280, "bg": 1339 }, + { "id": "mon_dog_dachshund_pup", "fg": 4282, "bg": 1339 }, + { "id": "mon_dog_gpyrenees_pup", "fg": 4284, "bg": 1339 }, + { "id": "mon_dog_gshepherd_pup", "fg": 4286, "bg": 1339 }, + { "id": "mon_dog_pitbullmix_pup", "fg": 4289, "bg": 1339 }, + { "id": "mon_dog_pup", "fg": 4290, "bg": 1339 }, + { "id": "mon_dog_rottweiler_pup", "fg": 4291, "bg": 1339 }, + { "id": "mon_dog_samoyed_pup", "fg": 4293, "bg": 1339 }, + { "id": "mon_fish_tiny", "fg": 4300 }, + { "id": "mon_fish_small", "fg": 4299 }, + { "id": "mon_fish_medium", "fg": 4298 }, + { "id": [ "mon_fish_large", "mon_fish_huge" ], "fg": 4297 }, + { "id": "mon_cockatrice_chick", "fg": 4305, "bg": 1339 }, + { "id": "mon_opossum", "fg": 4323, "bg": 1339 }, + { "id": "mon_locust", "fg": 4330, "bg": 1338 }, + { "id": "mon_locust_nymph", "fg": 4331, "bg": 1339 }, + { "id": "mon_locust_small", "fg": 4332, "bg": 1339 }, + { "id": "corpse_mon_ant", "fg": 4333 }, + { "id": "corpse_mon_ant_acid", "fg": 4334 }, + { "id": "corpse_mon_ant_larva", "fg": 4336 }, + { "id": "corpse_mon_ant_acid_larva", "fg": 4335 }, + { "id": "mon_ant_small", "fg": 4343, "bg": 1339 }, + { "id": "mon_ant_acid_small", "fg": 4340, "bg": 1339 }, + { "id": "mon_plague_nymph", "fg": 4348, "bg": 1339 }, + { "id": "mon_plague_vector", "fg": 4349, "bg": 1338 }, + { "id": "mon_skittering_plague", "fg": 4351, "bg": 1338 }, + { "id": "mon_cat_mutant_kitten_prism", "fg": 4360, "bg": 1339 }, + { "id": "mon_cat_mutant_prism", "fg": 4361, "bg": 1339 }, + { "id": "mon_coyote_mutant_shark", "fg": 4362, "bg": 1338 }, + { "id": "mon_crayfish_small", "fg": 4363, "bg": 1338 }, + { "id": "mon_deer_fawn", "fg": 4365, "bg": 1338 }, + { "id": "mon_deer_mutant_spider_fawn", "fg": 4366, "bg": 1338 }, + { "id": "mon_grasshopper_small", "fg": 4373, "bg": 1339 }, + { "id": "mon_hallu_multicooker", "fg": 4375, "bg": 1338 }, + { "id": "mon_hazmatbot", "fg": 4376, "bg": 1338 }, { "id": [ "mon_hound_tindalos", "mon_hound_tindalos_afterimage" ], "fg": [ - { "weight": 1, "sprite": 4331 }, - { "weight": 1, "sprite": 4332 }, - { "weight": 1, "sprite": 4333 }, - { "weight": 1, "sprite": 4334 }, - { "weight": 1, "sprite": 4335 }, - { "weight": 1, "sprite": 4336 }, - { "weight": 1, "sprite": 4337 }, - { "weight": 1, "sprite": 4338 }, - { "weight": 1, "sprite": 4339 } + { "weight": 1, "sprite": 4377 }, + { "weight": 1, "sprite": 4378 }, + { "weight": 1, "sprite": 4379 }, + { "weight": 1, "sprite": 4380 }, + { "weight": 1, "sprite": 4381 }, + { "weight": 1, "sprite": 4382 }, + { "weight": 1, "sprite": 4383 }, + { "weight": 1, "sprite": 4384 }, + { "weight": 1, "sprite": 4385 } ] }, { "id": "mon_lab_security_drone_BM", "animated": true, "fg": [ - { "weight": 10, "sprite": 4343 }, - { "weight": 10, "sprite": 4344 }, - { "weight": 10, "sprite": 4345 }, - { "weight": 10, "sprite": 4344 } + { "weight": 10, "sprite": 4389 }, + { "weight": 10, "sprite": 4390 }, + { "weight": 10, "sprite": 4391 }, + { "weight": 10, "sprite": 4390 } ] }, { "id": "mon_lab_security_drone_BM2", "animated": true, "fg": [ - { "weight": 10, "sprite": 4340 }, - { "weight": 10, "sprite": 4341 }, - { "weight": 10, "sprite": 4342 }, - { "weight": 10, "sprite": 4341 } + { "weight": 10, "sprite": 4386 }, + { "weight": 10, "sprite": 4387 }, + { "weight": 10, "sprite": 4388 }, + { "weight": 10, "sprite": 4387 } ] }, { "id": "mon_lab_security_drone_BS", "animated": true, "fg": [ - { "weight": 10, "sprite": 4346 }, - { "weight": 10, "sprite": 4347 }, - { "weight": 10, "sprite": 4348 }, - { "weight": 10, "sprite": 4347 } + { "weight": 10, "sprite": 4392 }, + { "weight": 10, "sprite": 4393 }, + { "weight": 10, "sprite": 4394 }, + { "weight": 10, "sprite": 4393 } ] }, { "id": "mon_lab_security_drone_GM", "animated": true, "fg": [ - { "weight": 10, "sprite": 4349 }, - { "weight": 10, "sprite": 4350 }, - { "weight": 10, "sprite": 4351 }, - { "weight": 10, "sprite": 4350 } + { "weight": 10, "sprite": 4395 }, + { "weight": 10, "sprite": 4396 }, + { "weight": 10, "sprite": 4397 }, + { "weight": 10, "sprite": 4396 } ] }, { "id": "mon_lab_security_drone_GR", "animated": true, "fg": [ - { "weight": 10, "sprite": 4352 }, - { "weight": 10, "sprite": 4353 }, - { "weight": 10, "sprite": 4354 }, - { "weight": 10, "sprite": 4353 } + { "weight": 10, "sprite": 4398 }, + { "weight": 10, "sprite": 4399 }, + { "weight": 10, "sprite": 4400 }, + { "weight": 10, "sprite": 4399 } ] }, { "id": "mon_lab_security_drone_YM", "animated": true, "fg": [ - { "weight": 10, "sprite": 4355 }, - { "weight": 10, "sprite": 4356 }, - { "weight": 10, "sprite": 4357 }, - { "weight": 10, "sprite": 4356 } - ] - }, - { "id": "mon_large_cockroach", "fg": 4358, "bg": 1323 }, - { "id": "mon_reindeer_fawn", "fg": 4363, "bg": 1323 }, - { "id": "mon_sheep_lamb", "fg": 4365, "bg": 1323 }, - { "id": "mon_slug_small", "fg": 4366, "bg": 1323 }, - { "id": "mon_wolf_skeleton", "fg": 4373, "bg": 1323 }, - { "id": "mon_worm_small", "fg": 4375, "bg": 1324 }, - { "id": "mon_zombie_dog_acidic", "fg": 4378, "bg": 1323 }, - { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 4380, "bg": 1323 }, - { "id": "corpse_mon_zombie_rot", "fg": 4381 }, - { "id": "mon_spider_cellar_small", "fg": 4386, "bg": 1324 }, - { "id": "mon_spider_trapdoor_small", "fg": 4388, "bg": 1324 }, - { "id": "mon_spider_web_small", "fg": 4390, "bg": 1324 }, - { "id": "mon_zpider_mass", "fg": 4394, "bg": 1324 }, - { "id": "lighting_lowlight_dark", "fg": 4411 }, - { "id": "lighting_boomered_dark", "fg": 4406 }, + { "weight": 10, "sprite": 4401 }, + { "weight": 10, "sprite": 4402 }, + { "weight": 10, "sprite": 4403 }, + { "weight": 10, "sprite": 4402 } + ] + }, + { "id": "mon_large_cockroach", "fg": 4404, "bg": 1338 }, + { "id": "mon_reindeer_fawn", "fg": 4409, "bg": 1338 }, + { "id": "mon_sheep_lamb", "fg": 4411, "bg": 1338 }, + { "id": "mon_slug_small", "fg": 4412, "bg": 1338 }, + { "id": "mon_wolf_skeleton", "fg": 4419, "bg": 1338 }, + { "id": "mon_worm_small", "fg": 4421, "bg": 1339 }, + { "id": "mon_zombie_dog_acidic", "fg": 4424, "bg": 1338 }, + { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 4426, "bg": 1338 }, + { "id": "corpse_mon_zombie_rot", "fg": 4427 }, + { "id": "mon_spider_cellar_small", "fg": 4432, "bg": 1339 }, + { "id": "mon_spider_trapdoor_small", "fg": 4434, "bg": 1339 }, + { "id": "mon_spider_web_small", "fg": 4436, "bg": 1339 }, + { "id": "mon_zpider_mass", "fg": 4440, "bg": 1339 }, + { "id": "lighting_lowlight_dark", "fg": 4465 }, + { "id": "lighting_boomered_dark", "fg": 4460 }, { "id": "lighting_hidden", "fg": [ - { "weight": 100, "sprite": 4407 }, - { "weight": 100, "sprite": 4408 }, - { "weight": 100, "sprite": 4409 }, - { "weight": 100, "sprite": 4410 } + { "weight": 100, "sprite": 4461 }, + { "weight": 100, "sprite": 4462 }, + { "weight": 100, "sprite": 4463 }, + { "weight": 100, "sprite": 4464 } ] }, - { "id": "animation_hit", "fg": 4429 }, - { "id": "cursor", "fg": 4431 }, - { "id": "highlight", "fg": 4433 }, - { "id": "highlight_item", "fg": 4434 }, - { "id": "line_target", "fg": 4432 }, - { "id": "line_trail", "fg": 4435 }, - { "id": "animation_line", "fg": 4430 }, - { "id": "generic_city_building", "fg": 4455, "bg": 4452 }, + { "id": "animation_hit", "fg": 4483 }, + { "id": "cursor", "fg": 4485 }, + { "id": "highlight", "fg": 4487 }, + { "id": "highlight_item", "fg": 4488 }, + { "id": "line_target", "fg": 4486 }, + { "id": "line_trail", "fg": 4489 }, + { "id": "animation_line", "fg": 4484 }, + { "id": "generic_city_building", "fg": 4509, "bg": 4506 }, { "id": [ "abstorefront_1", @@ -5050,25 +5097,25 @@ "s_sports", "veterinarian" ], - "fg": 4455, - "bg": 4452 + "fg": 4509, + "bg": 4506 }, - { "id": "forest_water", "fg": 4460 }, - { "id": [ "forest", "special_forest" ], "fg": 4453, "bg": 4452 }, - { "id": [ "field", "special_field" ], "fg": 4452 }, - { "id": "open_air", "fg": 4454 }, + { "id": "forest_water", "fg": 4514 }, + { "id": [ "forest", "special_forest" ], "fg": 4507, "bg": 4506 }, + { "id": [ "field", "special_field" ], "fg": 4506 }, + { "id": "open_air", "fg": 4508 }, { "id": "railroad", - "fg": 5577, - "bg": 5554, + "fg": 5647, + "bg": 5624, "multitile": true, "additional_tiles": [ - { "id": "center", "bg": 5554, "fg": 5571 }, - { "id": "corner", "bg": 5554, "fg": [ 5573, 5575, 5574, 5572 ] }, - { "id": "t_connection", "bg": 5554, "fg": [ 5579, 5581, 5580, 5578 ] }, - { "id": "edge", "bg": 5554, "fg": [ 5577, 5576 ] }, - { "id": "end_piece", "bg": 5554, "fg": [ 5577, 5576, 5577, 5576 ] }, - { "id": "unconnected", "bg": 5554, "fg": [ 5577, 5576 ] } + { "id": "center", "bg": 5624, "fg": 5641 }, + { "id": "corner", "bg": 5624, "fg": [ 5643, 5645, 5644, 5642 ] }, + { "id": "t_connection", "bg": 5624, "fg": [ 5649, 5651, 5650, 5648 ] }, + { "id": "edge", "bg": 5624, "fg": [ 5647, 5646 ] }, + { "id": "end_piece", "bg": 5624, "fg": [ 5647, 5646, 5647, 5646 ] }, + { "id": "unconnected", "bg": 5624, "fg": [ 5647, 5646 ] } ] }, { @@ -5291,19 +5338,19 @@ "urban_13_11", "urban_13_12" ], - "fg": [ 4457, 4456, 4458, 4459 ], - "bg": 4452, + "fg": [ 4511, 4510, 4512, 4513 ], + "bg": 4506, "rotates": true }, - { "id": "anthill", "fg": 4462, "bg": 4452, "rotates": false }, - { "id": "acid_anthill", "fg": 4461, "bg": 4452, "rotates": false }, + { "id": "anthill", "fg": 4516, "bg": 4506, "rotates": false }, + { "id": "acid_anthill", "fg": 4515, "bg": 4506, "rotates": false }, { "id": [ "2farm_3", "farm_3", "farm_isherwood_3", "farm_dairy_twd_6", "farm_dairy_twd_12", "ranch_camp_66", "dairy_farm_SE" ], - "fg": [ 4464, 4463, 4464, 4463 ], - "bg": 4452, + "fg": [ 4518, 4517, 4518, 4517 ], + "bg": 4506, "rotates": true }, - { "id": [ "desolatebarn", "barn_aban1" ], "fg": 4465, "bg": 4452 }, + { "id": [ "desolatebarn", "barn_aban1" ], "fg": 4519, "bg": 4506 }, { "id": [ "2farm_loft_3", @@ -5316,8 +5363,8 @@ "ranch_camp_66_roof", "dairy_farm_SE_roof" ], - "fg": [ 4464, 4463, 4464, 4463 ], - "bg": 4454, + "fg": [ 4518, 4517, 4518, 4517 ], + "bg": 4508, "rotates": true }, { @@ -5339,8 +5386,8 @@ "cabin_strange_b", "riverside_dwelling" ], - "fg": [ 4467, 4466, 4468, 4469 ], - "bg": 4452, + "fg": [ 4521, 4520, 4522, 4523 ], + "bg": 4506, "rotates": true }, { @@ -5358,8 +5405,8 @@ "cabin_lake_roof", "lake_cabin_boathouse_roof" ], - "fg": [ 4467, 4466, 4468, 4469 ], - "bg": 4454, + "fg": [ 4521, 4520, 4522, 4523 ], + "bg": 4508, "rotates": true }, { @@ -5375,12 +5422,12 @@ "ws_survivor_camp", "homelesscamp" ], - "fg": 4470, - "bg": 4452 + "fg": 4524, + "bg": 4506 }, - { "id": "cave", "fg": 4471, "bg": 4452 }, - { "id": "cave_underground", "fg": 4471 }, - { "id": [ "airliner_2b_-1", "airliner_2c_-1" ], "fg": 4473, "rotates": false }, + { "id": "cave", "fg": 4525, "bg": 4506 }, + { "id": "cave_underground", "fg": 4525 }, + { "id": [ "airliner_2b_-1", "airliner_2c_-1" ], "fg": 4527, "rotates": false }, { "id": [ "airliner_1a", @@ -5413,26 +5460,26 @@ "airliner_2j", "airliner_3j" ], - "fg": 4474 + "fg": 4528 }, - { "id": [ "airliner_2a_1", "airliner_2c_1" ], "fg": 4454 }, - { "id": [ "dirt_road", "dirt_road_forest" ], "fg": [ 4481, 4480 ], "rotates": true }, - { "id": [ "dirt_road_3way", "dirt_road_3way_forest" ], "fg": [ 4487, 4486, 4488, 4489 ], "rotates": true }, - { "id": [ "dirt_road_turn", "dirt_road_turn_forest" ], "fg": [ 4476, 4478, 4479, 4477 ], "rotates": true }, - { "id": [ "dirt_road_turn1", "dirt_road_turn1_forest" ], "fg": [ 4477, 4476, 4478, 4479 ], "rotates": true }, + { "id": [ "airliner_2a_1", "airliner_2c_1" ], "fg": 4508 }, + { "id": [ "dirt_road", "dirt_road_forest" ], "fg": [ 4535, 4534 ], "rotates": true }, + { "id": [ "dirt_road_3way", "dirt_road_3way_forest" ], "fg": [ 4541, 4540, 4542, 4543 ], "rotates": true }, + { "id": [ "dirt_road_turn", "dirt_road_turn_forest" ], "fg": [ 4530, 4532, 4533, 4531 ], "rotates": true }, + { "id": [ "dirt_road_turn1", "dirt_road_turn1_forest" ], "fg": [ 4531, 4530, 4532, 4533 ], "rotates": true }, { "id": [ "shelter", "shelter_1", "shelter_2", "shelter_vandal", "shelter_1_vandal", "shelter_2_vandal" ], - "fg": [ 4492, 4491, 4493, 4494 ], - "bg": 4452, + "fg": [ 4546, 4545, 4547, 4548 ], + "bg": 4506, "rotates": true }, { "id": [ "shelter_roof", "shelter_roof_1", "shelter_roof_2" ], - "fg": [ 4492, 4491, 4493, 4494 ], - "bg": 4454, + "fg": [ 4546, 4545, 4547, 4548 ], + "bg": 4508, "rotates": true }, - { "id": "shelter_under", "fg": [ 4492, 4491, 4493, 4494 ], "rotates": true }, + { "id": "shelter_under", "fg": [ 4546, 4545, 4547, 4548 ], "rotates": true }, { "id": [ "2farm_1", @@ -5501,19 +5548,19 @@ "horse_farm_isherwood_2", "yard" ], - "fg": 4495 + "fg": 4549 }, { "id": "forest_trail", - "fg": 4511, + "fg": 4565, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4496 }, - { "id": "corner", "fg": [ 4498, 4500, 4499, 4497 ] }, - { "id": "t_connection", "fg": [ 4508, 4510, 4509, 4507 ] }, - { "id": "edge", "fg": [ 4502, 4501 ] }, - { "id": "end_piece", "fg": [ 4504, 4506, 4505, 4503 ] }, - { "id": "unconnected", "fg": [ 4511, 4511 ] } + { "id": "center", "fg": 4550 }, + { "id": "corner", "fg": [ 4552, 4554, 4553, 4551 ] }, + { "id": "t_connection", "fg": [ 4562, 4564, 4563, 4561 ] }, + { "id": "edge", "fg": [ 4556, 4555 ] }, + { "id": "end_piece", "fg": [ 4558, 4560, 4559, 4557 ] }, + { "id": "unconnected", "fg": [ 4565, 4565 ] } ] }, { @@ -5530,46 +5577,50 @@ "garage_gas_roof_2", "garage_gas_roof_3" ], - "fg": [ 4513, 4512, 4514, 4515 ], - "bg": 4452 - }, - { "id": "2farm_7", "fg": 4496 }, - { "id": "crater", "fg": 5409, "bg": 4452 }, - { "id": "ranch_camp_17", "fg": 6232, "bg": 4543 }, - { "id": "ranch_camp_76", "fg": 4496 }, - { "id": "ranch_camp_77", "fg": [ 4597, 4596, 4598, 4599 ], "bg": 4452, "rotates": true }, - { "id": "lighthouse_z2", "fg": 4523, "bg": 4454 }, - { "id": "lighthouse_z3", "fg": 4524, "bg": 4454 }, - { "id": "lighthouse_z4", "fg": 4525, "bg": 4454 }, - { "id": "lighthouse_z5", "fg": 4526, "bg": 4454 }, - { "id": "lighthouse_roof", "fg": 4522, "bg": 4454 }, - { "id": "note_!_black", "fg": 4527 }, - { "id": "note_!_red", "fg": 4540 }, - { "id": "note_!_green", "fg": 4532 }, - { "id": "note_!_brown", "fg": 4529 }, - { "id": "note_!_blue", "fg": 4528 }, - { "id": "note_!_magenta", "fg": 4538 }, - { "id": "note_!_cyan", "fg": 4530 }, - { "id": "note_!_light_gray", "fg": 4535 }, - { "id": "note_!_dark_gray", "fg": 4531 }, - { "id": "note_!_light_red", "fg": 4537 }, - { "id": "note_!_light_green", "fg": 4536 }, - { "id": "note_!_yellow", "fg": 4542 }, - { "id": "note_!_light_blue", "fg": 4533 }, - { "id": "note_!_pink", "fg": 4539 }, - { "id": "note_!_light_cyan", "fg": 4534 }, - { "id": "note_!_white", "fg": 4541 }, - { "id": "2farm_4", "fg": [ 4551, 4550, 4552, 4553 ], "rotates": true }, - { "id": "2farm_8", "fg": [ 4552, 4553, 4551, 4550 ], "rotates": true }, - { "id": "dairy_farm_NW", "fg": [ 4553, 4551, 4550, 4552 ], "rotates": true }, - { "id": "dairy_farm_NE", "fg": [ 4550, 4552, 4553, 4551 ], "rotates": true }, - { "id": "ranch_camp_1", "fg": [ 4547, 4546, 4548, 4549 ], "rotates": true }, + "fg": [ 4567, 4566, 4568, 4569 ], + "bg": 4506 + }, + { "id": "2farm_7", "fg": 4550 }, + { "id": "crater", "fg": 5479, "bg": 4506 }, + { "id": "ranch_camp_17", "fg": 6302, "bg": 4613 }, + { "id": "ranch_camp_76", "fg": 4550 }, + { "id": "ranch_camp_77", "fg": [ 4667, 4666, 4668, 4669 ], "bg": 4506, "rotates": true }, + { "id": "helipad_ne", "fg": [ 4571, 4573, 4572, 4570 ], "rotates": true }, + { "id": "helipad_nw", "fg": [ 4575, 4577, 4576, 4574 ], "rotates": true }, + { "id": "helipad_se", "fg": [ 4579, 4581, 4580, 4578 ], "rotates": true }, + { "id": "helipad_sw", "fg": [ 4583, 4585, 4584, 4582 ], "rotates": true }, + { "id": "lighthouse_z2", "fg": 4593, "bg": 4508 }, + { "id": "lighthouse_z3", "fg": 4594, "bg": 4508 }, + { "id": "lighthouse_z4", "fg": 4595, "bg": 4508 }, + { "id": "lighthouse_z5", "fg": 4596, "bg": 4508 }, + { "id": "lighthouse_roof", "fg": 4592, "bg": 4508 }, + { "id": "note_!_black", "fg": 4597 }, + { "id": "note_!_red", "fg": 4610 }, + { "id": "note_!_green", "fg": 4602 }, + { "id": "note_!_brown", "fg": 4599 }, + { "id": "note_!_blue", "fg": 4598 }, + { "id": "note_!_magenta", "fg": 4608 }, + { "id": "note_!_cyan", "fg": 4600 }, + { "id": "note_!_light_gray", "fg": 4605 }, + { "id": "note_!_dark_gray", "fg": 4601 }, + { "id": "note_!_light_red", "fg": 4607 }, + { "id": "note_!_light_green", "fg": 4606 }, + { "id": "note_!_yellow", "fg": 4612 }, + { "id": "note_!_light_blue", "fg": 4603 }, + { "id": "note_!_pink", "fg": 4609 }, + { "id": "note_!_light_cyan", "fg": 4604 }, + { "id": "note_!_white", "fg": 4611 }, + { "id": "2farm_4", "fg": [ 4621, 4620, 4622, 4623 ], "rotates": true }, + { "id": "2farm_8", "fg": [ 4622, 4623, 4621, 4620 ], "rotates": true }, + { "id": "dairy_farm_NW", "fg": [ 4623, 4621, 4620, 4622 ], "rotates": true }, + { "id": "dairy_farm_NE", "fg": [ 4620, 4622, 4623, 4621 ], "rotates": true }, + { "id": "ranch_camp_1", "fg": [ 4617, 4616, 4618, 4619 ], "rotates": true }, { "id": [ "ranch_camp_2", "ranch_camp_3", "ranch_camp_4", "ranch_camp_5", "ranch_camp_6", "ranch_camp_7", "ranch_camp_8" ], - "fg": [ 4555, 4554, 4556, 4557 ], + "fg": [ 4625, 4624, 4626, 4627 ], "rotates": true }, - { "id": "ranch_camp_9", "fg": [ 4546, 4548, 4549, 4547 ], "rotates": true }, + { "id": "ranch_camp_9", "fg": [ 4616, 4618, 4619, 4617 ], "rotates": true }, { "id": [ "ranch_camp_10", @@ -5580,7 +5631,7 @@ "ranch_camp_55", "ranch_camp_64" ], - "fg": [ 4557, 4555, 4554, 4556 ], + "fg": [ 4627, 4625, 4624, 4626 ], "rotates": true }, { @@ -5630,7 +5681,7 @@ "ranch_camp_70", "ranch_camp_71" ], - "fg": 4543, + "fg": 4613, "rotates": true }, { @@ -5643,730 +5694,730 @@ "ranch_camp_63", "ranch_camp_72" ], - "fg": [ 4554, 4556, 4557, 4555 ], + "fg": [ 4624, 4626, 4627, 4625 ], "rotates": true }, - { "id": [ "ranch_camp_73", "ranch_camp_78" ], "fg": [ 4549, 4547, 4546, 4548 ], "rotates": true }, + { "id": [ "ranch_camp_73", "ranch_camp_78" ], "fg": [ 4619, 4617, 4616, 4618 ], "rotates": true }, { "id": [ "ranch_camp_74", "ranch_camp_79", "ranch_camp_80" ], - "fg": [ 4556, 4557, 4555, 4554 ], + "fg": [ 4626, 4627, 4625, 4624 ], "rotates": true }, - { "id": [ "ranch_camp_75", "ranch_camp_81" ], "fg": [ 4548, 4549, 4547, 4546 ], "rotates": true }, - { "id": "pond_field", "fg": 4560, "bg": 4452, "rotates": false }, - { "id": "pond_forest", "fg": 4561, "bg": 4452, "rotates": false }, - { "id": "pond_swamp", "fg": 4562, "bg": 4452, "rotates": false }, - { "id": "hot_springs", "fg": 4559, "bg": 4452, "rotates": false }, + { "id": [ "ranch_camp_75", "ranch_camp_81" ], "fg": [ 4618, 4619, 4617, 4616 ], "rotates": true }, + { "id": "pond_field", "fg": 4630, "bg": 4506, "rotates": false }, + { "id": "pond_forest", "fg": 4631, "bg": 4506, "rotates": false }, + { "id": "pond_swamp", "fg": 4632, "bg": 4506, "rotates": false }, + { "id": "hot_springs", "fg": 4629, "bg": 4506, "rotates": false }, { "id": [ "pool", "pool_1", "pool_2", "pool_3", "pool_4" ], - "fg": [ 4564, 4563, 4565, 4566 ], - "bg": 4452, + "fg": [ 4634, 4633, 4635, 4636 ], + "bg": 4506, "rotates": true }, - { "id": [ "pool_5", "pool_6" ], "fg": [ 4568, 4567, 4569, 4570 ], "bg": 4452, "rotates": true }, + { "id": [ "pool_5", "pool_6" ], "fg": [ 4638, 4637, 4639, 4640 ], "bg": 4506, "rotates": true }, { "id": [ "pool_roof", "pool_roof_1", "pool_roof_2", "pool_roof_3", "pool_roof_4" ], - "fg": [ 4564, 4563, 4565, 4566 ], - "bg": 4454, + "fg": [ 4634, 4633, 4635, 4636 ], + "bg": 4508, "rotates": true }, - { "id": "publicgarden", "fg": 4571 }, - { "id": "PublicPond_1a", "fg": [ 4575, 4573, 4572, 4574 ], "rotates": true }, - { "id": "PublicPond_1b", "fg": [ 4572, 4574, 4575, 4573 ], "rotates": true }, - { "id": "river_nw", "fg": 4584, "bg": 4452, "rotates": false }, - { "id": "river_sw", "fg": 4587, "bg": 4452, "rotates": false }, - { "id": "river_se", "fg": 4585, "bg": 4452, "rotates": false }, - { "id": "river_ne", "fg": 4582, "bg": 4452, "rotates": false }, - { "id": "river_north", "fg": 4583, "bg": 4452, "rotates": false }, - { "id": "river_west", "fg": 4588, "bg": 4452, "rotates": false }, - { "id": "river_east", "fg": 4581, "bg": 4452, "rotates": false }, - { "id": "river_south", "fg": 4586, "bg": 4452, "rotates": false }, - { "id": "river_center", "fg": 4580, "bg": 4452, "rotates": false }, - { "id": "river", "fg": [ 4583, 4581, 4586, 4588 ], "bg": 4452, "rotates": true }, - { "id": "river_c_not_nw", "fg": 4577, "bg": 4452, "rotates": false }, - { "id": "river_c_not_ne", "fg": 4576, "bg": 4452, "rotates": false }, - { "id": "river_c_not_sw", "fg": 4579, "bg": 4452, "rotates": false }, - { "id": "river_c_not_se", "fg": 4578, "bg": 4452, "rotates": false }, + { "id": "publicgarden", "fg": 4641 }, + { "id": "PublicPond_1a", "fg": [ 4645, 4643, 4642, 4644 ], "rotates": true }, + { "id": "PublicPond_1b", "fg": [ 4642, 4644, 4645, 4643 ], "rotates": true }, + { "id": "river_nw", "fg": 4654, "bg": 4506, "rotates": false }, + { "id": "river_sw", "fg": 4657, "bg": 4506, "rotates": false }, + { "id": "river_se", "fg": 4655, "bg": 4506, "rotates": false }, + { "id": "river_ne", "fg": 4652, "bg": 4506, "rotates": false }, + { "id": "river_north", "fg": 4653, "bg": 4506, "rotates": false }, + { "id": "river_west", "fg": 4658, "bg": 4506, "rotates": false }, + { "id": "river_east", "fg": 4651, "bg": 4506, "rotates": false }, + { "id": "river_south", "fg": 4656, "bg": 4506, "rotates": false }, + { "id": "river_center", "fg": 4650, "bg": 4506, "rotates": false }, + { "id": "river", "fg": [ 4653, 4651, 4656, 4658 ], "bg": 4506, "rotates": true }, + { "id": "river_c_not_nw", "fg": 4647, "bg": 4506, "rotates": false }, + { "id": "river_c_not_ne", "fg": 4646, "bg": 4506, "rotates": false }, + { "id": "river_c_not_sw", "fg": 4649, "bg": 4506, "rotates": false }, + { "id": "river_c_not_se", "fg": 4648, "bg": 4506, "rotates": false }, { "id": "road", - "fg": 4604, + "fg": 4674, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4589 }, - { "id": "corner", "fg": [ 4591, 4593, 4592, 4590 ], "bg": 4452 }, - { "id": "t_connection", "fg": [ 4601, 4603, 4602, 4600 ] }, - { "id": "edge", "fg": [ 4595, 4594 ] }, - { "id": "end_piece", "fg": [ 4597, 4599, 4598, 4596 ] }, - { "id": "unconnected", "fg": [ 4604, 4604 ], "bg": 4452 } + { "id": "center", "fg": 4659 }, + { "id": "corner", "fg": [ 4661, 4663, 4662, 4660 ], "bg": 4506 }, + { "id": "t_connection", "fg": [ 4671, 4673, 4672, 4670 ] }, + { "id": "edge", "fg": [ 4665, 4664 ] }, + { "id": "end_piece", "fg": [ 4667, 4669, 4668, 4666 ] }, + { "id": "unconnected", "fg": [ 4674, 4674 ], "bg": 4506 } ] }, - { "id": "road_nesw_manhole", "fg": 4605, "bg": 4589 }, + { "id": "road_nesw_manhole", "fg": 4675, "bg": 4659 }, { "id": [ "house_farm", "farm_2", "farm_isherwood_2", "2farm_11" ], - "fg": [ 4607, 4606, 4608, 4609 ], - "bg": 4452, + "fg": [ 4677, 4676, 4678, 4679 ], + "bg": 4506, "rotates": true }, - { "id": [ "dairy_farm_SW", "ranch_camp_68" ], "fg": [ 4608, 4609, 4607, 4606 ], "bg": 4452, "rotates": true }, + { "id": [ "dairy_farm_SW", "ranch_camp_68" ], "fg": [ 4678, 4679, 4677, 4676 ], "bg": 4506, "rotates": true }, { "id": [ "house_farm_roof", "farm_2_roof", "farm_isherwood_2_roof", "2farm_roof_11" ], - "fg": [ 4607, 4606, 4608, 4609 ], - "bg": 4454, + "fg": [ 4677, 4676, 4678, 4679 ], + "bg": 4508, "rotates": true }, { "id": [ "dairy_farm_SW_roof", "ranch_camp_68_roof" ], - "fg": [ 4608, 4609, 4607, 4606 ], - "bg": 4454, + "fg": [ 4678, 4679, 4677, 4676 ], + "bg": 4508, "rotates": true }, - { "id": "farm_isherwood_2_cellar", "fg": [ 4607, 4606, 4608, 4609 ], "rotates": true }, - { "id": [ "2silos", "ranch_camp_57" ], "fg": [ 4611, 4610, 4611, 4610 ], "bg": 4452, "rotates": true }, + { "id": "farm_isherwood_2_cellar", "fg": [ 4677, 4676, 4678, 4679 ], "rotates": true }, + { "id": [ "2silos", "ranch_camp_57" ], "fg": [ 4681, 4680, 4681, 4680 ], "bg": 4506, "rotates": true }, { "id": [ "2silos_1", "2silos_2", "2silos_roof" ], - "fg": [ 4611, 4610, 4611, 4610 ], - "bg": 4454, + "fg": [ 4681, 4680, 4681, 4680 ], + "bg": 4508, "rotates": true }, - { "id": "slimepit_top", "fg": 4612, "bg": 4452 }, - { "id": [ "slimepit_bottom", "slimepit", "slimepit_down" ], "fg": 5841 }, - { "id": "hunter_shack", "fg": [ 4618, 4617, 4619, 4620 ], "bg": 4452, "rotates": true }, - { "id": "hunter_shack_1", "fg": [ 4615, 4613, 4614, 4616 ], "bg": 4452, "rotates": true }, - { "id": "hunter_shack_roof", "fg": [ 4618, 4617, 4619, 4620 ], "bg": 4454, "rotates": true }, - { "id": "hunter_shack_roof_1", "fg": [ 4615, 4613, 4614, 4616 ], "bg": 4454, "rotates": true }, - { "id": "ws_fire_lookout_tower_base", "fg": 4621, "bg": 4452, "rotates": false }, - { "id": "ws_fire_lookout_tower_f1", "fg": 4621, "bg": 4454 }, - { "id": [ "ws_fire_lookout_tower_f2", "ws_fire_lookout_tower_f3" ], "fg": 4622, "bg": 4454 }, - { "id": "t_reb_cage", "fg": 4624, "bg": 5634 }, + { "id": "slimepit_top", "fg": 4682, "bg": 4506 }, + { "id": [ "slimepit_bottom", "slimepit", "slimepit_down" ], "fg": 5911 }, + { "id": "hunter_shack", "fg": [ 4688, 4687, 4689, 4690 ], "bg": 4506, "rotates": true }, + { "id": "hunter_shack_1", "fg": [ 4685, 4683, 4684, 4686 ], "bg": 4506, "rotates": true }, + { "id": "hunter_shack_roof", "fg": [ 4688, 4687, 4689, 4690 ], "bg": 4508, "rotates": true }, + { "id": "hunter_shack_roof_1", "fg": [ 4685, 4683, 4684, 4686 ], "bg": 4508, "rotates": true }, + { "id": "ws_fire_lookout_tower_base", "fg": 4691, "bg": 4506, "rotates": false }, + { "id": "ws_fire_lookout_tower_f1", "fg": 4691, "bg": 4508 }, + { "id": [ "ws_fire_lookout_tower_f2", "ws_fire_lookout_tower_f3" ], "fg": 4692, "bg": 4508 }, + { "id": "t_reb_cage", "fg": 4694, "bg": 5704 }, { "id": "f_earthbag_half", "multitile": true, - "fg": 4640, - "bg": 5169, + "fg": 4710, + "bg": 5239, "additional_tiles": [ - { "id": "center", "fg": 4625 }, - { "id": "corner", "fg": [ 4627, 4629, 4628, 4626 ] }, - { "id": "t_connection", "fg": [ 4637, 4639, 4638, 4636 ] }, - { "id": "edge", "fg": [ 4631, 4630 ] }, - { "id": "end_piece", "fg": [ 4633, 4635, 4634, 4632 ] }, - { "id": "unconnected", "fg": [ 4640, 4640 ] } + { "id": "center", "fg": 4695 }, + { "id": "corner", "fg": [ 4697, 4699, 4698, 4696 ] }, + { "id": "t_connection", "fg": [ 4707, 4709, 4708, 4706 ] }, + { "id": "edge", "fg": [ 4701, 4700 ] }, + { "id": "end_piece", "fg": [ 4703, 4705, 4704, 4702 ] }, + { "id": "unconnected", "fg": [ 4710, 4710 ] } ] }, - { "id": [ "t_ramp_up_low", "t_ramp_down_low" ], "fg": 5374 }, - { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_down_low" ], "fg": 5825 }, + { "id": [ "t_ramp_up_low", "t_ramp_down_low" ], "fg": 5444 }, + { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_down_low" ], "fg": 5895 }, { "id": "t_splitrail_fence", "multitile": true, - "fg": 4683, - "bg": 5169, + "fg": 4753, + "bg": 5239, "additional_tiles": [ - { "id": "center", "bg": 5169, "fg": 4668 }, - { "id": "corner", "bg": 5169, "fg": [ 4670, 4672, 4671, 4669 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 4680, 4682, 4681, 4679 ] }, - { "id": "edge", "bg": 5169, "fg": [ 4674, 4673 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 4676, 4678, 4677, 4675 ] }, - { "bg": 5169, "id": "unconnected", "fg": [ 4683, 4683 ] } + { "id": "center", "bg": 5239, "fg": 4738 }, + { "id": "corner", "bg": 5239, "fg": [ 4740, 4742, 4741, 4739 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 4750, 4752, 4751, 4749 ] }, + { "id": "edge", "bg": 5239, "fg": [ 4744, 4743 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 4746, 4748, 4747, 4745 ] }, + { "bg": 5239, "id": "unconnected", "fg": [ 4753, 4753 ] } ] }, { "id": "t_splitrail_fence_season_summer", "multitile": true, - "fg": 4683, - "bg": 5179, + "fg": 4753, + "bg": 5249, "additional_tiles": [ - { "id": "center", "bg": 5179, "fg": 4668 }, - { "id": "corner", "bg": 5179, "fg": [ 4670, 4672, 4671, 4669 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 4680, 4682, 4681, 4679 ] }, - { "id": "edge", "bg": 5179, "fg": [ 4674, 4673 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 4676, 4678, 4677, 4675 ] }, - { "bg": 5179, "id": "unconnected", "fg": [ 4683, 4683 ] } + { "id": "center", "bg": 5249, "fg": 4738 }, + { "id": "corner", "bg": 5249, "fg": [ 4740, 4742, 4741, 4739 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 4750, 4752, 4751, 4749 ] }, + { "id": "edge", "bg": 5249, "fg": [ 4744, 4743 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 4746, 4748, 4747, 4745 ] }, + { "bg": 5249, "id": "unconnected", "fg": [ 4753, 4753 ] } ] }, { "id": "t_splitrail_fence_season_autumn", "multitile": true, - "fg": 4683, - "bg": 5174, + "fg": 4753, + "bg": 5244, "additional_tiles": [ - { "id": "center", "bg": 5174, "fg": 4668 }, - { "id": "corner", "bg": 5174, "fg": [ 4670, 4672, 4671, 4669 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 4680, 4682, 4681, 4679 ] }, - { "id": "edge", "bg": 5174, "fg": [ 4674, 4673 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 4676, 4678, 4677, 4675 ] }, - { "bg": 5174, "id": "unconnected", "fg": [ 4683, 4683 ] } + { "id": "center", "bg": 5244, "fg": 4738 }, + { "id": "corner", "bg": 5244, "fg": [ 4740, 4742, 4741, 4739 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 4750, 4752, 4751, 4749 ] }, + { "id": "edge", "bg": 5244, "fg": [ 4744, 4743 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 4746, 4748, 4747, 4745 ] }, + { "bg": 5244, "id": "unconnected", "fg": [ 4753, 4753 ] } ] }, { "id": "t_splitrail_fence_season_winter", "multitile": true, - "fg": 4683, - "bg": 4649, + "fg": 4753, + "bg": 4719, "additional_tiles": [ - { "id": "center", "bg": 4649, "fg": 4668 }, - { "id": "corner", "bg": 4649, "fg": [ 4670, 4672, 4671, 4669 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 4680, 4682, 4681, 4679 ] }, - { "id": "edge", "bg": 4649, "fg": [ 4674, 4673 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 4676, 4678, 4677, 4675 ] }, - { "bg": 4649, "id": "unconnected", "fg": [ 4683, 4683 ] } + { "id": "center", "bg": 4719, "fg": 4738 }, + { "id": "corner", "bg": 4719, "fg": [ 4740, 4742, 4741, 4739 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 4750, 4752, 4751, 4749 ] }, + { "id": "edge", "bg": 4719, "fg": [ 4744, 4743 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 4746, 4748, 4747, 4745 ] }, + { "bg": 4719, "id": "unconnected", "fg": [ 4753, 4753 ] } ] }, - { "id": "t_stairs_down", "fg": 4684 }, - { "id": "t_wood_stairs_down", "fg": 4685 }, + { "id": "t_stairs_down", "fg": 4754 }, + { "id": "t_wood_stairs_down", "fg": 4755 }, { "id": "t_adobe_brick_wall", "multitile": true, - "fg": 4701, + "fg": 4771, "additional_tiles": [ - { "id": "center", "fg": 4686 }, - { "id": "corner", "fg": [ 4688, 4690, 4689, 4687 ] }, - { "id": "t_connection", "fg": [ 4698, 4700, 4699, 4697 ] }, - { "id": "edge", "fg": [ 4692, 4691 ] }, - { "id": "end_piece", "fg": [ 4694, 4696, 4695, 4693 ] }, - { "id": "unconnected", "fg": [ 4701, 4701 ] } + { "id": "center", "fg": 4756 }, + { "id": "corner", "fg": [ 4758, 4760, 4759, 4757 ] }, + { "id": "t_connection", "fg": [ 4768, 4770, 4769, 4767 ] }, + { "id": "edge", "fg": [ 4762, 4761 ] }, + { "id": "end_piece", "fg": [ 4764, 4766, 4765, 4763 ] }, + { "id": "unconnected", "fg": [ 4771, 4771 ] } ] }, - { "id": "t_bars", "fg": 4702 }, + { "id": "t_bars", "fg": 4772 }, { "id": "t_brick_wall", "multitile": true, - "fg": 4718, + "fg": 4788, "additional_tiles": [ - { "id": "center", "fg": 4703 }, - { "id": "corner", "fg": [ 4705, 4707, 4706, 4704 ] }, - { "id": "t_connection", "fg": [ 4715, 4717, 4716, 4714 ] }, - { "id": "edge", "fg": [ 4709, 4708 ] }, - { "id": "end_piece", "fg": [ 4711, 4713, 4712, 4710 ] }, - { "id": "unconnected", "fg": 4718 } + { "id": "center", "fg": 4773 }, + { "id": "corner", "fg": [ 4775, 4777, 4776, 4774 ] }, + { "id": "t_connection", "fg": [ 4785, 4787, 4786, 4784 ] }, + { "id": "edge", "fg": [ 4779, 4778 ] }, + { "id": "end_piece", "fg": [ 4781, 4783, 4782, 4780 ] }, + { "id": "unconnected", "fg": 4788 } ] }, { "id": "t_bridge", "multitile": true, - "fg": 4734, + "fg": 4804, "additional_tiles": [ - { "id": "center", "fg": 4719 }, - { "id": "corner", "fg": [ 4721, 4723, 4722, 4720 ] }, - { "id": "t_connection", "fg": [ 4731, 4733, 4732, 4730 ] }, - { "id": "edge", "fg": [ 4725, 4724 ] }, - { "id": "end_piece", "fg": [ 4727, 4729, 4728, 4726 ] }, - { "id": "unconnected", "fg": [ 4734, 4734 ] } + { "id": "center", "fg": 4789 }, + { "id": "corner", "fg": [ 4791, 4793, 4792, 4790 ] }, + { "id": "t_connection", "fg": [ 4801, 4803, 4802, 4800 ] }, + { "id": "edge", "fg": [ 4795, 4794 ] }, + { "id": "end_piece", "fg": [ 4797, 4799, 4798, 4796 ] }, + { "id": "unconnected", "fg": [ 4804, 4804 ] } ] }, { "id": "t_carpet_green", "multitile": true, - "fg": 4753, + "fg": 4823, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 4735 }, - { "weight": 1, "sprite": 4736 }, - { "weight": 1, "sprite": 4737 }, - { "weight": 1, "sprite": 4738 } + { "weight": 1, "sprite": 4805 }, + { "weight": 1, "sprite": 4806 }, + { "weight": 1, "sprite": 4807 }, + { "weight": 1, "sprite": 4808 } ] }, - { "id": "corner", "fg": [ 4740, 4742, 4741, 4739 ] }, - { "id": "t_connection", "fg": [ 4750, 4752, 4751, 4749 ] }, - { "id": "edge", "fg": [ 4744, 4743 ] }, - { "id": "end_piece", "fg": [ 4746, 4748, 4747, 4745 ] }, - { "id": "unconnected", "fg": 4753 } + { "id": "corner", "fg": [ 4810, 4812, 4811, 4809 ] }, + { "id": "t_connection", "fg": [ 4820, 4822, 4821, 4819 ] }, + { "id": "edge", "fg": [ 4814, 4813 ] }, + { "id": "end_piece", "fg": [ 4816, 4818, 4817, 4815 ] }, + { "id": "unconnected", "fg": 4823 } ] }, { "id": "t_carpet_purple", "multitile": true, - "fg": 4772, + "fg": 4842, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 4754 }, - { "weight": 1, "sprite": 4755 }, - { "weight": 1, "sprite": 4756 }, - { "weight": 1, "sprite": 4757 } + { "weight": 1, "sprite": 4824 }, + { "weight": 1, "sprite": 4825 }, + { "weight": 1, "sprite": 4826 }, + { "weight": 1, "sprite": 4827 } ] }, - { "id": "corner", "fg": [ 4759, 4761, 4760, 4758 ] }, - { "id": "t_connection", "fg": [ 4769, 4771, 4770, 4768 ] }, - { "id": "edge", "fg": [ 4763, 4762 ] }, - { "id": "end_piece", "fg": [ 4765, 4767, 4766, 4764 ] }, - { "id": "unconnected", "fg": 4772 } + { "id": "corner", "fg": [ 4829, 4831, 4830, 4828 ] }, + { "id": "t_connection", "fg": [ 4839, 4841, 4840, 4838 ] }, + { "id": "edge", "fg": [ 4833, 4832 ] }, + { "id": "end_piece", "fg": [ 4835, 4837, 4836, 4834 ] }, + { "id": "unconnected", "fg": 4842 } ] }, { "id": "t_carpet_red", "multitile": true, - "fg": 4788, + "fg": 4858, "additional_tiles": [ - { "id": "center", "fg": 4773 }, - { "id": "corner", "fg": [ 4775, 4777, 4776, 4774 ] }, - { "id": "t_connection", "fg": [ 4785, 4787, 4786, 4784 ] }, - { "id": "edge", "fg": [ 4779, 4778 ] }, - { "id": "end_piece", "fg": [ 4781, 4783, 4782, 4780 ] }, - { "id": "unconnected", "fg": 4788 } + { "id": "center", "fg": 4843 }, + { "id": "corner", "fg": [ 4845, 4847, 4846, 4844 ] }, + { "id": "t_connection", "fg": [ 4855, 4857, 4856, 4854 ] }, + { "id": "edge", "fg": [ 4849, 4848 ] }, + { "id": "end_piece", "fg": [ 4851, 4853, 4852, 4850 ] }, + { "id": "unconnected", "fg": 4858 } ] }, { "id": "t_carpet_yellow", "multitile": true, - "fg": 4804, + "fg": 4874, "additional_tiles": [ - { "id": "center", "fg": 4789 }, - { "id": "corner", "fg": [ 4791, 4793, 4792, 4790 ] }, - { "id": "t_connection", "fg": [ 4801, 4803, 4802, 4800 ] }, - { "id": "edge", "fg": [ 4795, 4794 ] }, - { "id": "end_piece", "fg": [ 4797, 4799, 4798, 4796 ] }, - { "id": "unconnected", "fg": 4804 } + { "id": "center", "fg": 4859 }, + { "id": "corner", "fg": [ 4861, 4863, 4862, 4860 ] }, + { "id": "t_connection", "fg": [ 4871, 4873, 4872, 4870 ] }, + { "id": "edge", "fg": [ 4865, 4864 ] }, + { "id": "end_piece", "fg": [ 4867, 4869, 4868, 4866 ] }, + { "id": "unconnected", "fg": 4874 } ] }, { "id": "t_chainfence", - "fg": 4820, + "fg": 4890, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4805, "bg": 5374 }, - { "id": "corner", "fg": [ 4807, 4809, 4808, 4806 ], "bg": 5374 }, - { "id": "t_connection", "fg": [ 4817, 4819, 4818, 4816 ], "bg": 5374 }, - { "id": "edge", "fg": [ 4811, 4810 ], "bg": 5374 }, - { "id": "end_piece", "fg": [ 4813, 4815, 4814, 4812 ], "bg": 5374 }, - { "id": "unconnected", "fg": [ 4820, 4820 ], "bg": 5374 } + { "id": "center", "fg": 4875, "bg": 5444 }, + { "id": "corner", "fg": [ 4877, 4879, 4878, 4876 ], "bg": 5444 }, + { "id": "t_connection", "fg": [ 4887, 4889, 4888, 4886 ], "bg": 5444 }, + { "id": "edge", "fg": [ 4881, 4880 ], "bg": 5444 }, + { "id": "end_piece", "fg": [ 4883, 4885, 4884, 4882 ], "bg": 5444 }, + { "id": "unconnected", "fg": [ 4890, 4890 ], "bg": 5444 } ], - "bg": 5374 + "bg": 5444 }, { "id": "t_chainfence_season_winter", - "fg": 4820, + "fg": 4890, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4805, "bg": 4649 }, - { "id": "corner", "fg": [ 4807, 4809, 4808, 4806 ], "bg": 4649 }, - { "id": "t_connection", "fg": [ 4817, 4819, 4818, 4816 ], "bg": 4649 }, - { "id": "edge", "fg": [ 4811, 4810 ], "bg": 4649 }, - { "id": "end_piece", "fg": [ 4813, 4815, 4814, 4812 ], "bg": 4649 }, - { "id": "unconnected", "fg": [ 4820, 4820 ], "bg": 4649 } + { "id": "center", "fg": 4875, "bg": 4719 }, + { "id": "corner", "fg": [ 4877, 4879, 4878, 4876 ], "bg": 4719 }, + { "id": "t_connection", "fg": [ 4887, 4889, 4888, 4886 ], "bg": 4719 }, + { "id": "edge", "fg": [ 4881, 4880 ], "bg": 4719 }, + { "id": "end_piece", "fg": [ 4883, 4885, 4884, 4882 ], "bg": 4719 }, + { "id": "unconnected", "fg": [ 4890, 4890 ], "bg": 4719 } ], - "bg": 4649 + "bg": 4719 }, { "id": "t_clay", "multitile": true, - "fg": 4836, - "bg": 5169, + "fg": 4906, + "bg": 5239, "additional_tiles": [ - { "id": "center", "bg": 5169, "fg": 4821 }, - { "id": "corner", "bg": 5169, "fg": [ 4823, 4825, 4824, 4822 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 4833, 4835, 4834, 4832 ] }, - { "id": "edge", "bg": 5169, "fg": [ 4827, 4826 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 4829, 4831, 4830, 4828 ] }, - { "bg": 5169, "id": "unconnected", "fg": 4836 } + { "id": "center", "bg": 5239, "fg": 4891 }, + { "id": "corner", "bg": 5239, "fg": [ 4893, 4895, 4894, 4892 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 4903, 4905, 4904, 4902 ] }, + { "id": "edge", "bg": 5239, "fg": [ 4897, 4896 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 4899, 4901, 4900, 4898 ] }, + { "bg": 5239, "id": "unconnected", "fg": 4906 } ] }, { "id": "t_clay_season_summer", "multitile": true, - "fg": 4836, - "bg": 5179, + "fg": 4906, + "bg": 5249, "additional_tiles": [ - { "id": "center", "bg": 5179, "fg": 4821 }, - { "id": "corner", "bg": 5179, "fg": [ 4823, 4825, 4824, 4822 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 4833, 4835, 4834, 4832 ] }, - { "id": "edge", "bg": 5179, "fg": [ 4827, 4826 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 4829, 4831, 4830, 4828 ] }, - { "bg": 5179, "id": "unconnected", "fg": 4836 } + { "id": "center", "bg": 5249, "fg": 4891 }, + { "id": "corner", "bg": 5249, "fg": [ 4893, 4895, 4894, 4892 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 4903, 4905, 4904, 4902 ] }, + { "id": "edge", "bg": 5249, "fg": [ 4897, 4896 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 4899, 4901, 4900, 4898 ] }, + { "bg": 5249, "id": "unconnected", "fg": 4906 } ] }, { "id": "t_clay_season_autumn", "multitile": true, - "fg": 4836, - "bg": 5174, + "fg": 4906, + "bg": 5244, "additional_tiles": [ - { "id": "center", "bg": 5174, "fg": 4821 }, - { "id": "corner", "bg": 5174, "fg": [ 4823, 4825, 4824, 4822 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 4833, 4835, 4834, 4832 ] }, - { "id": "edge", "bg": 5174, "fg": [ 4827, 4826 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 4829, 4831, 4830, 4828 ] }, - { "bg": 5174, "id": "unconnected", "fg": 4836 } + { "id": "center", "bg": 5244, "fg": 4891 }, + { "id": "corner", "bg": 5244, "fg": [ 4893, 4895, 4894, 4892 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 4903, 4905, 4904, 4902 ] }, + { "id": "edge", "bg": 5244, "fg": [ 4897, 4896 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 4899, 4901, 4900, 4898 ] }, + { "bg": 5244, "id": "unconnected", "fg": 4906 } ] }, { "id": "t_clay_season_winter", "multitile": true, - "fg": 4836, - "bg": 4649, + "fg": 4906, + "bg": 4719, "additional_tiles": [ - { "id": "center", "bg": 4649, "fg": 4821 }, - { "id": "corner", "bg": 4649, "fg": [ 4823, 4825, 4824, 4822 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 4833, 4835, 4834, 4832 ] }, - { "id": "edge", "bg": 4649, "fg": [ 4827, 4826 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 4829, 4831, 4830, 4828 ] }, - { "bg": 4649, "id": "unconnected", "fg": 4836 } + { "id": "center", "bg": 4719, "fg": 4891 }, + { "id": "corner", "bg": 4719, "fg": [ 4893, 4895, 4894, 4892 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 4903, 4905, 4904, 4902 ] }, + { "id": "edge", "bg": 4719, "fg": [ 4897, 4896 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 4899, 4901, 4900, 4898 ] }, + { "bg": 4719, "id": "unconnected", "fg": 4906 } ] }, { "id": "t_concrete", "multitile": true, - "fg": 4852, + "fg": 4922, "additional_tiles": [ - { "id": "center", "fg": 4837 }, - { "id": "corner", "fg": [ 4839, 4841, 4840, 4838 ] }, - { "id": "t_connection", "fg": [ 4849, 4851, 4850, 4848 ] }, - { "id": "edge", "fg": [ 4843, 4842 ] }, - { "id": "end_piece", "fg": [ 4845, 4847, 4846, 4844 ] }, - { "id": "unconnected", "fg": 4852 } + { "id": "center", "fg": 4907 }, + { "id": "corner", "fg": [ 4909, 4911, 4910, 4908 ] }, + { "id": "t_connection", "fg": [ 4919, 4921, 4920, 4918 ] }, + { "id": "edge", "fg": [ 4913, 4912 ] }, + { "id": "end_piece", "fg": [ 4915, 4917, 4916, 4914 ] }, + { "id": "unconnected", "fg": 4922 } ] }, - { "id": "t_concrete_season_winter", "fg": 4649 }, + { "id": "t_concrete_season_winter", "fg": 4719 }, { "id": "t_concrete_wall", "multitile": true, - "fg": 4868, + "fg": 4938, "additional_tiles": [ - { "id": "center", "fg": 4853 }, - { "id": "corner", "fg": [ 4855, 4857, 4856, 4854 ] }, - { "id": "t_connection", "fg": [ 4865, 4867, 4866, 4864 ] }, - { "id": "edge", "fg": [ 4859, 4858 ] }, - { "id": "end_piece", "fg": [ 4861, 4863, 4862, 4860 ] }, - { "id": "unconnected", "fg": 4868 } + { "id": "center", "fg": 4923 }, + { "id": "corner", "fg": [ 4925, 4927, 4926, 4924 ] }, + { "id": "t_connection", "fg": [ 4935, 4937, 4936, 4934 ] }, + { "id": "edge", "fg": [ 4929, 4928 ] }, + { "id": "end_piece", "fg": [ 4931, 4933, 4932, 4930 ] }, + { "id": "unconnected", "fg": 4938 } ] }, { "id": "t_concrete_wall_flesh", - "fg": 4884, + "fg": 4954, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4869 }, - { "id": "corner", "fg": [ 4871, 4873, 4872, 4870 ] }, - { "id": "t_connection", "fg": [ 4881, 4883, 4882, 4880 ] }, - { "id": "edge", "fg": [ 4875, 4874 ] }, - { "id": "end_piece", "fg": [ 4877, 4879, 4878, 4876 ] }, - { "id": "unconnected", "fg": [ 4884, 4884 ] } + { "id": "center", "fg": 4939 }, + { "id": "corner", "fg": [ 4941, 4943, 4942, 4940 ] }, + { "id": "t_connection", "fg": [ 4951, 4953, 4952, 4950 ] }, + { "id": "edge", "fg": [ 4945, 4944 ] }, + { "id": "end_piece", "fg": [ 4947, 4949, 4948, 4946 ] }, + { "id": "unconnected", "fg": [ 4954, 4954 ] } ] }, { "id": "t_conveyor", "multitile": true, - "fg": 4900, - "bg": 5879, + "fg": 4970, + "bg": 5949, "additional_tiles": [ - { "id": "center", "bg": 5879, "fg": 4885 }, - { "id": "corner", "bg": 5879, "fg": [ 4887, 4889, 4888, 4886 ] }, - { "id": "t_connection", "bg": 5879, "fg": [ 4897, 4899, 4898, 4896 ] }, - { "id": "edge", "bg": 5879, "fg": [ 4891, 4890 ] }, - { "id": "end_piece", "bg": 5879, "fg": [ 4893, 4895, 4894, 4892 ] }, - { "bg": 5879, "id": "unconnected", "fg": [ 4900, 4900 ] } + { "id": "center", "bg": 5949, "fg": 4955 }, + { "id": "corner", "bg": 5949, "fg": [ 4957, 4959, 4958, 4956 ] }, + { "id": "t_connection", "bg": 5949, "fg": [ 4967, 4969, 4968, 4966 ] }, + { "id": "edge", "bg": 5949, "fg": [ 4961, 4960 ] }, + { "id": "end_piece", "bg": 5949, "fg": [ 4963, 4965, 4964, 4962 ] }, + { "bg": 5949, "id": "unconnected", "fg": [ 4970, 4970 ] } ] }, - { "id": "t_curtains", "fg": 4901 }, + { "id": "t_curtains", "fg": 4971 }, { "id": "t_dirt", - "fg": 4920, + "fg": 4990, "multitile": true, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 100, "sprite": 4902 }, - { "weight": 100, "sprite": 4903 }, - { "weight": 100, "sprite": 4904 }, - { "weight": 100, "sprite": 4905 } + { "weight": 100, "sprite": 4972 }, + { "weight": 100, "sprite": 4973 }, + { "weight": 100, "sprite": 4974 }, + { "weight": 100, "sprite": 4975 } ] }, - { "id": "corner", "fg": [ 4907, 4909, 4908, 4906 ] }, - { "id": "t_connection", "fg": [ 4917, 4919, 4918, 4916 ] }, - { "id": "edge", "fg": [ 4911, 4910 ] }, - { "id": "end_piece", "fg": [ 4913, 4915, 4914, 4912 ] }, - { "id": "unconnected", "fg": [ 4920, 4920 ] } + { "id": "corner", "fg": [ 4977, 4979, 4978, 4976 ] }, + { "id": "t_connection", "fg": [ 4987, 4989, 4988, 4986 ] }, + { "id": "edge", "fg": [ 4981, 4980 ] }, + { "id": "end_piece", "fg": [ 4983, 4985, 4984, 4982 ] }, + { "id": "unconnected", "fg": [ 4990, 4990 ] } ] }, { "id": "t_dirt_season_autumn", - "fg": 4939, + "fg": 5009, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": [ 4921, 4922, 4923, 4924 ] }, - { "id": "corner", "fg": [ 4926, 4928, 4927, 4925 ] }, - { "id": "t_connection", "fg": [ 4936, 4938, 4937, 4935 ] }, - { "id": "edge", "fg": [ 4930, 4929 ] }, - { "id": "end_piece", "fg": [ 4932, 4934, 4933, 4931 ] }, - { "id": "unconnected", "fg": [ 4939, 4939 ] } + { "id": "center", "fg": [ 4991, 4992, 4993, 4994 ] }, + { "id": "corner", "fg": [ 4996, 4998, 4997, 4995 ] }, + { "id": "t_connection", "fg": [ 5006, 5008, 5007, 5005 ] }, + { "id": "edge", "fg": [ 5000, 4999 ] }, + { "id": "end_piece", "fg": [ 5002, 5004, 5003, 5001 ] }, + { "id": "unconnected", "fg": [ 5009, 5009 ] } ] }, { "id": "t_dirt_season_summer", - "fg": 4958, + "fg": 5028, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": [ 4940, 4941, 4942, 4943 ] }, - { "id": "corner", "fg": [ 4945, 4947, 4946, 4944 ] }, - { "id": "t_connection", "fg": [ 4955, 4957, 4956, 4954 ] }, - { "id": "edge", "fg": [ 4949, 4948 ] }, - { "id": "end_piece", "fg": [ 4951, 4953, 4952, 4950 ] }, - { "id": "unconnected", "fg": [ 4958, 4958 ] } + { "id": "center", "fg": [ 5010, 5011, 5012, 5013 ] }, + { "id": "corner", "fg": [ 5015, 5017, 5016, 5014 ] }, + { "id": "t_connection", "fg": [ 5025, 5027, 5026, 5024 ] }, + { "id": "edge", "fg": [ 5019, 5018 ] }, + { "id": "end_piece", "fg": [ 5021, 5023, 5022, 5020 ] }, + { "id": "unconnected", "fg": [ 5028, 5028 ] } ] }, { "id": "t_dirt_season_winter", "fg": [ - { "weight": 100, "sprite": 4959 }, - { "weight": 100, "sprite": 4960 }, - { "weight": 100, "sprite": 4961 }, - { "weight": 100, "sprite": 4962 } + { "weight": 100, "sprite": 5029 }, + { "weight": 100, "sprite": 5030 }, + { "weight": 100, "sprite": 5031 }, + { "weight": 100, "sprite": 5032 } ] }, { "id": "t_dirtfloor", "multitile": true, - "fg": 4978, - "additional_tiles": [ - { "id": "center", "fg": 4963 }, - { "id": "corner", "fg": [ 4965, 4967, 4966, 4964 ] }, - { "id": "t_connection", "fg": [ 4975, 4977, 4976, 4974 ] }, - { "id": "edge", "fg": [ 4969, 4968 ] }, - { "id": "end_piece", "fg": [ 4971, 4973, 4972, 4970 ] }, - { "id": "unconnected", "fg": 4978 } - ] - }, - { "id": "t_door_c", "fg": 4980 }, - { "id": "t_door_locked", "fg": 4981 }, - { "id": "t_door_o", "fg": 4982 }, - { "id": "t_door_b", "fg": 4979 }, - { "id": "t_door_boarded", "fg": 4983 }, - { "id": "t_door_boarded_damaged", "fg": 4984 }, - { "id": "t_door_glass_c", "fg": 4985 }, - { "id": "t_door_glass_o", "fg": 4986 }, - { "id": "t_door_lab_c", "fg": 4987 }, - { "id": "t_door_lab_o", "fg": 4988 }, - { "id": "t_door_metal_c_peep", "fg": 4989 }, - { "id": [ "t_door_metal_locked", "t_door_metal_pickable" ], "fg": 4990 }, - { "id": "t_elevator", "fg": [ { "weight": 100, "sprite": 4997 }, { "weight": 100, "sprite": 4998 } ] }, + "fg": 5048, + "additional_tiles": [ + { "id": "center", "fg": 5033 }, + { "id": "corner", "fg": [ 5035, 5037, 5036, 5034 ] }, + { "id": "t_connection", "fg": [ 5045, 5047, 5046, 5044 ] }, + { "id": "edge", "fg": [ 5039, 5038 ] }, + { "id": "end_piece", "fg": [ 5041, 5043, 5042, 5040 ] }, + { "id": "unconnected", "fg": 5048 } + ] + }, + { "id": "t_door_c", "fg": 5050 }, + { "id": "t_door_locked", "fg": 5051 }, + { "id": "t_door_o", "fg": 5052 }, + { "id": "t_door_b", "fg": 5049 }, + { "id": "t_door_boarded", "fg": 5053 }, + { "id": "t_door_boarded_damaged", "fg": 5054 }, + { "id": "t_door_glass_c", "fg": 5055 }, + { "id": "t_door_glass_o", "fg": 5056 }, + { "id": "t_door_lab_c", "fg": 5057 }, + { "id": "t_door_lab_o", "fg": 5058 }, + { "id": "t_door_metal_c_peep", "fg": 5059 }, + { "id": [ "t_door_metal_locked", "t_door_metal_pickable" ], "fg": 5060 }, + { "id": "t_elevator", "fg": [ { "weight": 100, "sprite": 5067 }, { "weight": 100, "sprite": 5068 } ] }, { "id": "t_fence_season_spring", "multitile": true, - "fg": 5014, - "bg": 5169, + "fg": 5084, + "bg": 5239, "additional_tiles": [ - { "id": "center", "bg": 5169, "fg": 4999 }, - { "id": "corner", "bg": 5169, "fg": [ 5001, 5003, 5002, 5000 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 5011, 5013, 5012, 5010 ] }, - { "id": "edge", "bg": 5169, "fg": [ 5005, 5004 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 5007, 5009, 5008, 5006 ] }, - { "bg": 5169, "id": "unconnected", "fg": 5014 } + { "id": "center", "bg": 5239, "fg": 5069 }, + { "id": "corner", "bg": 5239, "fg": [ 5071, 5073, 5072, 5070 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 5081, 5083, 5082, 5080 ] }, + { "id": "edge", "bg": 5239, "fg": [ 5075, 5074 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 5077, 5079, 5078, 5076 ] }, + { "bg": 5239, "id": "unconnected", "fg": 5084 } ] }, { "id": "t_fence_season_summer", "multitile": true, - "fg": 5014, - "bg": 5179, + "fg": 5084, + "bg": 5249, "additional_tiles": [ - { "id": "center", "bg": 5179, "fg": 4999 }, - { "id": "corner", "bg": 5179, "fg": [ 5001, 5003, 5002, 5000 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 5011, 5013, 5012, 5010 ] }, - { "id": "edge", "bg": 5179, "fg": [ 5005, 5004 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 5007, 5009, 5008, 5006 ] }, - { "bg": 5179, "id": "unconnected", "fg": 5014 } + { "id": "center", "bg": 5249, "fg": 5069 }, + { "id": "corner", "bg": 5249, "fg": [ 5071, 5073, 5072, 5070 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 5081, 5083, 5082, 5080 ] }, + { "id": "edge", "bg": 5249, "fg": [ 5075, 5074 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 5077, 5079, 5078, 5076 ] }, + { "bg": 5249, "id": "unconnected", "fg": 5084 } ] }, { "id": "t_fence_season_autumn", "multitile": true, - "fg": 5014, - "bg": 5174, + "fg": 5084, + "bg": 5244, "additional_tiles": [ - { "id": "center", "bg": 5174, "fg": 4999 }, - { "id": "corner", "bg": 5174, "fg": [ 5001, 5003, 5002, 5000 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 5011, 5013, 5012, 5010 ] }, - { "id": "edge", "bg": 5174, "fg": [ 5005, 5004 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 5007, 5009, 5008, 5006 ] }, - { "bg": 5174, "id": "unconnected", "fg": 5014 } + { "id": "center", "bg": 5244, "fg": 5069 }, + { "id": "corner", "bg": 5244, "fg": [ 5071, 5073, 5072, 5070 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 5081, 5083, 5082, 5080 ] }, + { "id": "edge", "bg": 5244, "fg": [ 5075, 5074 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 5077, 5079, 5078, 5076 ] }, + { "bg": 5244, "id": "unconnected", "fg": 5084 } ] }, { "id": "t_fence_season_winter", "multitile": true, - "fg": 5014, - "bg": 4649, - "additional_tiles": [ - { "id": "center", "bg": 4649, "fg": 4999 }, - { "id": "corner", "bg": 4649, "fg": [ 5001, 5003, 5002, 5000 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 5011, 5013, 5012, 5010 ] }, - { "id": "edge", "bg": 4649, "fg": [ 5005, 5004 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 5007, 5009, 5008, 5006 ] }, - { "bg": 4649, "id": "unconnected", "fg": 5014 } - ] - }, - { "id": "t_fencegate_c_season_spring", "fg": 5015, "bg": 5169 }, - { "id": "t_fencegate_c_season_summer", "fg": 5015, "bg": 5179 }, - { "id": "t_fencegate_c_season_autumn", "fg": 5015, "bg": 5174 }, - { "id": "t_fencegate_c_season_winter", "fg": 5015, "bg": 4649 }, - { "id": "t_fencegate_o_season_spring", "fg": 5016, "bg": 5169 }, - { "id": "t_fencegate_o_season_summer", "fg": 5016, "bg": 5179 }, - { "id": "t_fencegate_o_season_autumn", "fg": 5016, "bg": 5174 }, - { "id": "t_fencegate_o_season_winter", "fg": 5016, "bg": 4649 }, - { "id": "t_fence_post_season_spring", "fg": 5014, "bg": 5169 }, - { "id": "t_fence_post_season_summer", "fg": 5014, "bg": 5179 }, - { "id": "t_fence_post_season_autumn", "fg": 5014, "bg": 5174 }, - { "id": "t_fence_post_season_winter", "fg": 5014, "bg": 4649 }, + "fg": 5084, + "bg": 4719, + "additional_tiles": [ + { "id": "center", "bg": 4719, "fg": 5069 }, + { "id": "corner", "bg": 4719, "fg": [ 5071, 5073, 5072, 5070 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 5081, 5083, 5082, 5080 ] }, + { "id": "edge", "bg": 4719, "fg": [ 5075, 5074 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 5077, 5079, 5078, 5076 ] }, + { "bg": 4719, "id": "unconnected", "fg": 5084 } + ] + }, + { "id": "t_fencegate_c_season_spring", "fg": 5085, "bg": 5239 }, + { "id": "t_fencegate_c_season_summer", "fg": 5085, "bg": 5249 }, + { "id": "t_fencegate_c_season_autumn", "fg": 5085, "bg": 5244 }, + { "id": "t_fencegate_c_season_winter", "fg": 5085, "bg": 4719 }, + { "id": "t_fencegate_o_season_spring", "fg": 5086, "bg": 5239 }, + { "id": "t_fencegate_o_season_summer", "fg": 5086, "bg": 5249 }, + { "id": "t_fencegate_o_season_autumn", "fg": 5086, "bg": 5244 }, + { "id": "t_fencegate_o_season_winter", "fg": 5086, "bg": 4719 }, + { "id": "t_fence_post_season_spring", "fg": 5084, "bg": 5239 }, + { "id": "t_fence_post_season_summer", "fg": 5084, "bg": 5249 }, + { "id": "t_fence_post_season_autumn", "fg": 5084, "bg": 5244 }, + { "id": "t_fence_post_season_winter", "fg": 5084, "bg": 4719 }, { "id": "t_fence_barbed_season_spring", "multitile": true, - "fg": 5032, - "bg": 5169, + "fg": 5102, + "bg": 5239, "additional_tiles": [ - { "id": "center", "bg": 5169, "fg": 5017 }, - { "id": "corner", "bg": 5169, "fg": [ 5019, 5021, 5020, 5018 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 5029, 5031, 5030, 5028 ] }, - { "id": "edge", "bg": 5169, "fg": [ 5023, 5022 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 5025, 5027, 5026, 5024 ] }, - { "bg": 5169, "id": "unconnected", "fg": 5032 } + { "id": "center", "bg": 5239, "fg": 5087 }, + { "id": "corner", "bg": 5239, "fg": [ 5089, 5091, 5090, 5088 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 5099, 5101, 5100, 5098 ] }, + { "id": "edge", "bg": 5239, "fg": [ 5093, 5092 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 5095, 5097, 5096, 5094 ] }, + { "bg": 5239, "id": "unconnected", "fg": 5102 } ] }, { "id": "t_fence_barbed_season_summer", "multitile": true, - "fg": 5032, - "bg": 5179, + "fg": 5102, + "bg": 5249, "additional_tiles": [ - { "id": "center", "bg": 5179, "fg": 5017 }, - { "id": "corner", "bg": 5179, "fg": [ 5019, 5021, 5020, 5018 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 5029, 5031, 5030, 5028 ] }, - { "id": "edge", "bg": 5179, "fg": [ 5023, 5022 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 5025, 5027, 5026, 5024 ] }, - { "bg": 5179, "id": "unconnected", "fg": 5032 } + { "id": "center", "bg": 5249, "fg": 5087 }, + { "id": "corner", "bg": 5249, "fg": [ 5089, 5091, 5090, 5088 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 5099, 5101, 5100, 5098 ] }, + { "id": "edge", "bg": 5249, "fg": [ 5093, 5092 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 5095, 5097, 5096, 5094 ] }, + { "bg": 5249, "id": "unconnected", "fg": 5102 } ] }, { "id": "t_fence_barbed_season_autumn", "multitile": true, - "fg": 5032, - "bg": 5174, + "fg": 5102, + "bg": 5244, "additional_tiles": [ - { "id": "center", "bg": 5174, "fg": 5017 }, - { "id": "corner", "bg": 5174, "fg": [ 5019, 5021, 5020, 5018 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 5029, 5031, 5030, 5028 ] }, - { "id": "edge", "bg": 5174, "fg": [ 5023, 5022 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 5025, 5027, 5026, 5024 ] }, - { "bg": 5174, "id": "unconnected", "fg": 5032 } + { "id": "center", "bg": 5244, "fg": 5087 }, + { "id": "corner", "bg": 5244, "fg": [ 5089, 5091, 5090, 5088 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 5099, 5101, 5100, 5098 ] }, + { "id": "edge", "bg": 5244, "fg": [ 5093, 5092 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 5095, 5097, 5096, 5094 ] }, + { "bg": 5244, "id": "unconnected", "fg": 5102 } ] }, { "id": "t_fence_barbed_season_winter", "multitile": true, - "fg": 5032, - "bg": 4649, + "fg": 5102, + "bg": 4719, "additional_tiles": [ - { "id": "center", "bg": 4649, "fg": 5017 }, - { "id": "corner", "bg": 4649, "fg": [ 5019, 5021, 5020, 5018 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 5029, 5031, 5030, 5028 ] }, - { "id": "edge", "bg": 4649, "fg": [ 5023, 5022 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 5025, 5027, 5026, 5024 ] }, - { "bg": 4649, "id": "unconnected", "fg": 5032 } + { "id": "center", "bg": 4719, "fg": 5087 }, + { "id": "corner", "bg": 4719, "fg": [ 5089, 5091, 5090, 5088 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 5099, 5101, 5100, 5098 ] }, + { "id": "edge", "bg": 4719, "fg": [ 5093, 5092 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 5095, 5097, 5096, 5094 ] }, + { "bg": 4719, "id": "unconnected", "fg": 5102 } ] }, { "id": "t_fence_rope_season_spring", - "fg": 5049, + "fg": 5119, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5034, "bg": 4902 }, - { "id": "corner", "fg": [ 5036, 5038, 5037, 5035 ], "bg": [ 4907, 4909, 4908, 4906 ] }, - { "id": "t_connection", "fg": [ 5046, 5048, 5047, 5045 ], "bg": [ 4917, 4919, 4918, 4916 ] }, - { "id": "edge", "fg": [ 5040, 5039 ], "bg": [ 4911, 4910 ] }, - { "id": "end_piece", "fg": [ 5042, 5044, 5043, 5041 ], "bg": [ 4913, 4915, 4914, 4912 ] }, - { "id": "unconnected", "fg": [ 5049, 5049 ], "bg": [ 4920, 4920 ] } + { "id": "center", "fg": 5104, "bg": 4972 }, + { "id": "corner", "fg": [ 5106, 5108, 5107, 5105 ], "bg": [ 4977, 4979, 4978, 4976 ] }, + { "id": "t_connection", "fg": [ 5116, 5118, 5117, 5115 ], "bg": [ 4987, 4989, 4988, 4986 ] }, + { "id": "edge", "fg": [ 5110, 5109 ], "bg": [ 4981, 4980 ] }, + { "id": "end_piece", "fg": [ 5112, 5114, 5113, 5111 ], "bg": [ 4983, 4985, 4984, 4982 ] }, + { "id": "unconnected", "fg": [ 5119, 5119 ], "bg": [ 4990, 4990 ] } ] }, { "id": "t_fence_rope_season_summer", - "fg": 5049, + "fg": 5119, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5034, "bg": 4940 }, - { "id": "corner", "fg": [ 5036, 5038, 5037, 5035 ], "bg": [ 4945, 4947, 4946, 4944 ] }, - { "id": "t_connection", "fg": [ 5046, 5048, 5047, 5045 ], "bg": [ 4955, 4957, 4956, 4954 ] }, - { "id": "edge", "fg": [ 5040, 5039 ], "bg": [ 4949, 4948 ] }, - { "id": "end_piece", "fg": [ 5042, 5044, 5043, 5041 ], "bg": [ 4951, 4953, 4952, 4950 ] }, - { "id": "unconnected", "fg": [ 5049, 5049 ], "bg": [ 4958, 4958 ] } + { "id": "center", "fg": 5104, "bg": 5010 }, + { "id": "corner", "fg": [ 5106, 5108, 5107, 5105 ], "bg": [ 5015, 5017, 5016, 5014 ] }, + { "id": "t_connection", "fg": [ 5116, 5118, 5117, 5115 ], "bg": [ 5025, 5027, 5026, 5024 ] }, + { "id": "edge", "fg": [ 5110, 5109 ], "bg": [ 5019, 5018 ] }, + { "id": "end_piece", "fg": [ 5112, 5114, 5113, 5111 ], "bg": [ 5021, 5023, 5022, 5020 ] }, + { "id": "unconnected", "fg": [ 5119, 5119 ], "bg": [ 5028, 5028 ] } ] }, { "id": "t_fence_rope_season_autumn", - "fg": 5049, + "fg": 5119, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5034, "bg": 4921 }, - { "id": "corner", "fg": [ 5036, 5038, 5037, 5035 ], "bg": [ 4926, 4928, 4927, 4925 ] }, - { "id": "t_connection", "fg": [ 5046, 5048, 5047, 5045 ], "bg": [ 4936, 4938, 4937, 4935 ] }, - { "id": "edge", "fg": [ 5040, 5039 ], "bg": [ 4930, 4929 ] }, - { "id": "end_piece", "fg": [ 5042, 5044, 5043, 5041 ], "bg": [ 4932, 4934, 4933, 4931 ] }, - { "id": "unconnected", "fg": [ 5049, 5049 ], "bg": [ 4939, 4939 ] } + { "id": "center", "fg": 5104, "bg": 4991 }, + { "id": "corner", "fg": [ 5106, 5108, 5107, 5105 ], "bg": [ 4996, 4998, 4997, 4995 ] }, + { "id": "t_connection", "fg": [ 5116, 5118, 5117, 5115 ], "bg": [ 5006, 5008, 5007, 5005 ] }, + { "id": "edge", "fg": [ 5110, 5109 ], "bg": [ 5000, 4999 ] }, + { "id": "end_piece", "fg": [ 5112, 5114, 5113, 5111 ], "bg": [ 5002, 5004, 5003, 5001 ] }, + { "id": "unconnected", "fg": [ 5119, 5119 ], "bg": [ 5009, 5009 ] } ] }, { "id": "t_fence_rope_season_winter", - "fg": 5049, + "fg": 5119, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": 5034, + "fg": 5104, "bg": [ - { "weight": 100, "sprite": 4959 }, - { "weight": 100, "sprite": 4960 }, - { "weight": 100, "sprite": 4961 }, - { "weight": 100, "sprite": 4962 } + { "weight": 100, "sprite": 5029 }, + { "weight": 100, "sprite": 5030 }, + { "weight": 100, "sprite": 5031 }, + { "weight": 100, "sprite": 5032 } ] }, { "id": "corner", - "fg": [ 5036, 5038, 5037, 5035 ], + "fg": [ 5106, 5108, 5107, 5105 ], "bg": [ - { "weight": 100, "sprite": 4959 }, - { "weight": 100, "sprite": 4960 }, - { "weight": 100, "sprite": 4961 }, - { "weight": 100, "sprite": 4962 } + { "weight": 100, "sprite": 5029 }, + { "weight": 100, "sprite": 5030 }, + { "weight": 100, "sprite": 5031 }, + { "weight": 100, "sprite": 5032 } ] }, { "id": "t_connection", - "fg": [ 5046, 5048, 5047, 5045 ], + "fg": [ 5116, 5118, 5117, 5115 ], "bg": [ - { "weight": 100, "sprite": 4959 }, - { "weight": 100, "sprite": 4960 }, - { "weight": 100, "sprite": 4961 }, - { "weight": 100, "sprite": 4962 } + { "weight": 100, "sprite": 5029 }, + { "weight": 100, "sprite": 5030 }, + { "weight": 100, "sprite": 5031 }, + { "weight": 100, "sprite": 5032 } ] }, { "id": "edge", - "fg": [ 5040, 5039 ], + "fg": [ 5110, 5109 ], "bg": [ - { "weight": 100, "sprite": 4959 }, - { "weight": 100, "sprite": 4960 }, - { "weight": 100, "sprite": 4961 }, - { "weight": 100, "sprite": 4962 } + { "weight": 100, "sprite": 5029 }, + { "weight": 100, "sprite": 5030 }, + { "weight": 100, "sprite": 5031 }, + { "weight": 100, "sprite": 5032 } ] }, { "id": "end_piece", - "fg": [ 5042, 5044, 5043, 5041 ], + "fg": [ 5112, 5114, 5113, 5111 ], "bg": [ - { "weight": 100, "sprite": 4959 }, - { "weight": 100, "sprite": 4960 }, - { "weight": 100, "sprite": 4961 }, - { "weight": 100, "sprite": 4962 } + { "weight": 100, "sprite": 5029 }, + { "weight": 100, "sprite": 5030 }, + { "weight": 100, "sprite": 5031 }, + { "weight": 100, "sprite": 5032 } ] }, { "id": "unconnected", - "fg": [ 5049, 5049 ], + "fg": [ 5119, 5119 ], "bg": [ - { "weight": 100, "sprite": 4959 }, - { "weight": 100, "sprite": 4960 }, - { "weight": 100, "sprite": 4961 }, - { "weight": 100, "sprite": 4962 } + { "weight": 100, "sprite": 5029 }, + { "weight": 100, "sprite": 5030 }, + { "weight": 100, "sprite": 5031 }, + { "weight": 100, "sprite": 5032 } ] } ] @@ -6374,3224 +6425,3226 @@ { "id": "t_fence_wire_season_spring", "multitile": true, - "fg": 5065, - "bg": 5169, + "fg": 5135, + "bg": 5239, "additional_tiles": [ - { "id": "center", "bg": 5169, "fg": 5050 }, - { "id": "corner", "bg": 5169, "fg": [ 5052, 5054, 5053, 5051 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 5062, 5064, 5063, 5061 ] }, - { "id": "edge", "bg": 5169, "fg": [ 5056, 5055 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 5058, 5060, 5059, 5057 ] }, - { "bg": 5169, "id": "unconnected", "fg": 5065 } + { "id": "center", "bg": 5239, "fg": 5120 }, + { "id": "corner", "bg": 5239, "fg": [ 5122, 5124, 5123, 5121 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 5132, 5134, 5133, 5131 ] }, + { "id": "edge", "bg": 5239, "fg": [ 5126, 5125 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 5128, 5130, 5129, 5127 ] }, + { "bg": 5239, "id": "unconnected", "fg": 5135 } ] }, { "id": "t_fence_wire_season_summer", "multitile": true, - "fg": 5065, - "bg": 5179, + "fg": 5135, + "bg": 5249, "additional_tiles": [ - { "id": "center", "bg": 5179, "fg": 5050 }, - { "id": "corner", "bg": 5179, "fg": [ 5052, 5054, 5053, 5051 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 5062, 5064, 5063, 5061 ] }, - { "id": "edge", "bg": 5179, "fg": [ 5056, 5055 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 5058, 5060, 5059, 5057 ] }, - { "bg": 5179, "id": "unconnected", "fg": 5065 } + { "id": "center", "bg": 5249, "fg": 5120 }, + { "id": "corner", "bg": 5249, "fg": [ 5122, 5124, 5123, 5121 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 5132, 5134, 5133, 5131 ] }, + { "id": "edge", "bg": 5249, "fg": [ 5126, 5125 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 5128, 5130, 5129, 5127 ] }, + { "bg": 5249, "id": "unconnected", "fg": 5135 } ] }, { "id": "t_fence_wire_season_autumn", "multitile": true, - "fg": 5065, - "bg": 5174, + "fg": 5135, + "bg": 5244, "additional_tiles": [ - { "id": "center", "bg": 5174, "fg": 5050 }, - { "id": "corner", "bg": 5174, "fg": [ 5052, 5054, 5053, 5051 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 5062, 5064, 5063, 5061 ] }, - { "id": "edge", "bg": 5174, "fg": [ 5056, 5055 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 5058, 5060, 5059, 5057 ] }, - { "bg": 5174, "id": "unconnected", "fg": 5065 } + { "id": "center", "bg": 5244, "fg": 5120 }, + { "id": "corner", "bg": 5244, "fg": [ 5122, 5124, 5123, 5121 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 5132, 5134, 5133, 5131 ] }, + { "id": "edge", "bg": 5244, "fg": [ 5126, 5125 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 5128, 5130, 5129, 5127 ] }, + { "bg": 5244, "id": "unconnected", "fg": 5135 } ] }, { "id": "t_fence_wire_season_winter", "multitile": true, - "fg": 5065, - "bg": 4649, + "fg": 5135, + "bg": 4719, "additional_tiles": [ - { "id": "center", "bg": 4649, "fg": 5050 }, - { "id": "corner", "bg": 4649, "fg": [ 5052, 5054, 5053, 5051 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 5062, 5064, 5063, 5061 ] }, - { "id": "edge", "bg": 4649, "fg": [ 5056, 5055 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 5058, 5060, 5059, 5057 ] }, - { "bg": 4649, "id": "unconnected", "fg": 5065 } + { "id": "center", "bg": 4719, "fg": 5120 }, + { "id": "corner", "bg": 4719, "fg": [ 5122, 5124, 5123, 5121 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 5132, 5134, 5133, 5131 ] }, + { "id": "edge", "bg": 4719, "fg": [ 5126, 5125 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 5128, 5130, 5129, 5127 ] }, + { "bg": 4719, "id": "unconnected", "fg": 5135 } ] }, { "id": "t_floor", "multitile": true, - "fg": 5083, + "fg": 5153, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 5066 }, { "weight": 1, "sprite": 5067 }, { "weight": 1, "sprite": 5068 } ] + "fg": [ { "weight": 1, "sprite": 5136 }, { "weight": 1, "sprite": 5137 }, { "weight": 1, "sprite": 5138 } ] }, - { "id": "corner", "fg": [ 5070, 5072, 5071, 5069 ] }, - { "id": "t_connection", "fg": [ 5080, 5082, 5081, 5079 ] }, - { "id": "edge", "fg": [ 5074, 5073 ] }, - { "id": "end_piece", "fg": [ 5076, 5078, 5077, 5075 ] }, - { "id": "unconnected", "fg": 5083 } + { "id": "corner", "fg": [ 5140, 5142, 5141, 5139 ] }, + { "id": "t_connection", "fg": [ 5150, 5152, 5151, 5149 ] }, + { "id": "edge", "fg": [ 5144, 5143 ] }, + { "id": "end_piece", "fg": [ 5146, 5148, 5147, 5145 ] }, + { "id": "unconnected", "fg": 5153 } ] }, { "id": "t_floor_resin", "multitile": true, - "fg": 5099, + "fg": 5169, "additional_tiles": [ - { "id": "center", "fg": 5084 }, - { "id": "corner", "fg": [ 5086, 5088, 5087, 5085 ] }, - { "id": "t_connection", "fg": [ 5096, 5098, 5097, 5095 ] }, - { "id": "edge", "fg": [ 5090, 5089 ] }, - { "id": "end_piece", "fg": [ 5092, 5094, 5093, 5091 ] }, - { "id": "unconnected", "fg": 5099 } + { "id": "center", "fg": 5154 }, + { "id": "corner", "fg": [ 5156, 5158, 5157, 5155 ] }, + { "id": "t_connection", "fg": [ 5166, 5168, 5167, 5165 ] }, + { "id": "edge", "fg": [ 5160, 5159 ] }, + { "id": "end_piece", "fg": [ 5162, 5164, 5163, 5161 ] }, + { "id": "unconnected", "fg": 5169 } ] }, { "id": "t_floor_wax", "multitile": true, - "fg": 5115, + "fg": 5185, "additional_tiles": [ - { "id": "center", "fg": 5100 }, - { "id": "corner", "fg": [ 5102, 5104, 5103, 5101 ] }, - { "id": "t_connection", "fg": [ 5112, 5114, 5113, 5111 ] }, - { "id": "edge", "fg": [ 5106, 5105 ] }, - { "id": "end_piece", "fg": [ 5108, 5110, 5109, 5107 ] }, - { "id": "unconnected", "fg": 5115 } + { "id": "center", "fg": 5170 }, + { "id": "corner", "fg": [ 5172, 5174, 5173, 5171 ] }, + { "id": "t_connection", "fg": [ 5182, 5184, 5183, 5181 ] }, + { "id": "edge", "fg": [ 5176, 5175 ] }, + { "id": "end_piece", "fg": [ 5178, 5180, 5179, 5177 ] }, + { "id": "unconnected", "fg": 5185 } ] }, { "id": "t_floor_waxed", "multitile": true, - "fg": 5131, + "fg": 5201, "additional_tiles": [ - { "id": "center", "fg": 5116 }, - { "id": "corner", "fg": [ 5118, 5120, 5119, 5117 ] }, - { "id": "t_connection", "fg": [ 5128, 5130, 5129, 5127 ] }, - { "id": "edge", "fg": [ 5122, 5121 ] }, - { "id": "end_piece", "fg": [ 5124, 5126, 5125, 5123 ] }, - { "id": "unconnected", "fg": 5131 } + { "id": "center", "fg": 5186 }, + { "id": "corner", "fg": [ 5188, 5190, 5189, 5187 ] }, + { "id": "t_connection", "fg": [ 5198, 5200, 5199, 5197 ] }, + { "id": "edge", "fg": [ 5192, 5191 ] }, + { "id": "end_piece", "fg": [ 5194, 5196, 5195, 5193 ] }, + { "id": "unconnected", "fg": 5201 } ] }, { "id": "t_floor_waxed_y", "multitile": true, - "fg": 5147, + "fg": 5217, "additional_tiles": [ - { "id": "center", "fg": 5132 }, - { "id": "corner", "fg": [ 5134, 5136, 5135, 5133 ] }, - { "id": "t_connection", "fg": [ 5144, 5146, 5145, 5143 ] }, - { "id": "edge", "fg": [ 5138, 5137 ] }, - { "id": "end_piece", "fg": [ 5140, 5142, 5141, 5139 ] }, - { "id": "unconnected", "fg": 5147 } + { "id": "center", "fg": 5202 }, + { "id": "corner", "fg": [ 5204, 5206, 5205, 5203 ] }, + { "id": "t_connection", "fg": [ 5214, 5216, 5215, 5213 ] }, + { "id": "edge", "fg": [ 5208, 5207 ] }, + { "id": "end_piece", "fg": [ 5210, 5212, 5211, 5209 ] }, + { "id": "unconnected", "fg": 5217 } ] }, { "id": [ "t_fungus", "t_fungus_floor_out" ], "multitile": true, - "fg": 5163, - "bg": 5169, + "fg": 5233, + "bg": 5239, "additional_tiles": [ - { "id": "center", "bg": 5169, "fg": 5148 }, - { "id": "corner", "bg": 5169, "fg": [ 5150, 5152, 5151, 5149 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 5160, 5162, 5161, 5159 ] }, - { "id": "edge", "bg": 5169, "fg": [ 5154, 5153 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 5156, 5158, 5157, 5155 ] }, - { "bg": 5169, "id": "unconnected", "fg": 5163 } + { "id": "center", "bg": 5239, "fg": 5218 }, + { "id": "corner", "bg": 5239, "fg": [ 5220, 5222, 5221, 5219 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 5230, 5232, 5231, 5229 ] }, + { "id": "edge", "bg": 5239, "fg": [ 5224, 5223 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 5226, 5228, 5227, 5225 ] }, + { "bg": 5239, "id": "unconnected", "fg": 5233 } ] }, { "id": "t_fungus_season_summer", "multitile": true, - "fg": 5163, - "bg": 5179, + "fg": 5233, + "bg": 5249, "additional_tiles": [ - { "id": "center", "bg": 5179, "fg": 5148 }, - { "id": "corner", "bg": 5179, "fg": [ 5150, 5152, 5151, 5149 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 5160, 5162, 5161, 5159 ] }, - { "id": "edge", "bg": 5179, "fg": [ 5154, 5153 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 5156, 5158, 5157, 5155 ] }, - { "bg": 5179, "id": "unconnected", "fg": 5163 } + { "id": "center", "bg": 5249, "fg": 5218 }, + { "id": "corner", "bg": 5249, "fg": [ 5220, 5222, 5221, 5219 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 5230, 5232, 5231, 5229 ] }, + { "id": "edge", "bg": 5249, "fg": [ 5224, 5223 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 5226, 5228, 5227, 5225 ] }, + { "bg": 5249, "id": "unconnected", "fg": 5233 } ] }, { "id": "t_fungus_season_autumn", "multitile": true, - "fg": 5163, - "bg": 5174, + "fg": 5233, + "bg": 5244, "additional_tiles": [ - { "id": "center", "bg": 5174, "fg": 5148 }, - { "id": "corner", "bg": 5174, "fg": [ 5150, 5152, 5151, 5149 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 5160, 5162, 5161, 5159 ] }, - { "id": "edge", "bg": 5174, "fg": [ 5154, 5153 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 5156, 5158, 5157, 5155 ] }, - { "bg": 5174, "id": "unconnected", "fg": 5163 } + { "id": "center", "bg": 5244, "fg": 5218 }, + { "id": "corner", "bg": 5244, "fg": [ 5220, 5222, 5221, 5219 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 5230, 5232, 5231, 5229 ] }, + { "id": "edge", "bg": 5244, "fg": [ 5224, 5223 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 5226, 5228, 5227, 5225 ] }, + { "bg": 5244, "id": "unconnected", "fg": 5233 } ] }, { "id": "t_fungus_season_winter", "multitile": true, - "fg": 5163, - "bg": 4649, + "fg": 5233, + "bg": 4719, "additional_tiles": [ - { "id": "center", "bg": 4649, "fg": 5148 }, - { "id": "corner", "bg": 4649, "fg": [ 5150, 5152, 5151, 5149 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 5160, 5162, 5161, 5159 ] }, - { "id": "edge", "bg": 4649, "fg": [ 5154, 5153 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 5156, 5158, 5157, 5155 ] }, - { "bg": 4649, "id": "unconnected", "fg": 5163 } + { "id": "center", "bg": 4719, "fg": 5218 }, + { "id": "corner", "bg": 4719, "fg": [ 5220, 5222, 5221, 5219 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 5230, 5232, 5231, 5229 ] }, + { "id": "edge", "bg": 4719, "fg": [ 5224, 5223 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 5226, 5228, 5227, 5225 ] }, + { "bg": 4719, "id": "unconnected", "fg": 5233 } ] }, { "id": [ "t_fungus_floor_in", "t_fungus_floor_sup" ], "multitile": true, - "fg": 5163, - "bg": 5879, - "additional_tiles": [ - { "id": "center", "bg": 5879, "fg": 5148 }, - { "id": "corner", "bg": 5879, "fg": [ 5150, 5152, 5151, 5149 ] }, - { "id": "t_connection", "bg": 5879, "fg": [ 5160, 5162, 5161, 5159 ] }, - { "id": "edge", "bg": 5879, "fg": [ 5154, 5153 ] }, - { "id": "end_piece", "bg": 5879, "fg": [ 5156, 5158, 5157, 5155 ] }, - { "bg": 5879, "id": "unconnected", "fg": [ 5163, 5163 ] } - ] - }, - { "id": "t_shrub_fungal", "fg": 5784, "bg": 5148 }, - { "id": "t_gates_mech_control", "fg": 5164, "bg": 5879 }, - { "id": "t_gates_mech_control_lab", "fg": 5165, "bg": 5879 }, - { "id": "t_gates_control_concrete", "fg": 5166, "bg": 4868 }, - { "id": "t_gates_control_concrete_lab", "fg": 5165, "bg": 7332 }, - { "id": "t_gates_control_brick", "fg": 5166, "bg": 4718 }, - { "id": "t_gates_control_brick_lab", "fg": 5165, "bg": 4718 }, - { "id": "t_gates_control_metal", "fg": 5166, "bg": 5986 }, - { "id": "t_gates_control_metal_lab", "fg": 5165, "bg": 5986 }, - { "id": "t_elevator_control", "fg": 5167, "bg": 5879 }, - { "id": "t_elevator_control_off", "fg": 5168, "bg": 5879 }, + "fg": 5233, + "bg": 5949, + "additional_tiles": [ + { "id": "center", "bg": 5949, "fg": 5218 }, + { "id": "corner", "bg": 5949, "fg": [ 5220, 5222, 5221, 5219 ] }, + { "id": "t_connection", "bg": 5949, "fg": [ 5230, 5232, 5231, 5229 ] }, + { "id": "edge", "bg": 5949, "fg": [ 5224, 5223 ] }, + { "id": "end_piece", "bg": 5949, "fg": [ 5226, 5228, 5227, 5225 ] }, + { "bg": 5949, "id": "unconnected", "fg": [ 5233, 5233 ] } + ] + }, + { "id": "t_shrub_fungal", "fg": 5854, "bg": 5218 }, + { "id": "t_gates_mech_control", "fg": 5234, "bg": 5949 }, + { "id": "t_gates_mech_control_lab", "fg": 5235, "bg": 5949 }, + { "id": "t_gates_control_concrete", "fg": 5236, "bg": 4938 }, + { "id": "t_gates_control_concrete_lab", "fg": 5235, "bg": 7444 }, + { "id": "t_gates_control_brick", "fg": 5236, "bg": 4788 }, + { "id": "t_gates_control_brick_lab", "fg": 5235, "bg": 4788 }, + { "id": "t_gates_control_metal", "fg": 5236, "bg": 6056 }, + { "id": "t_gates_control_metal_lab", "fg": 5235, "bg": 6056 }, + { "id": "t_elevator_control", "fg": 5237, "bg": 5949 }, + { "id": "t_elevator_control_off", "fg": 5238, "bg": 5949 }, { "id": "t_grass", "fg": [ - { "weight": 1, "sprite": 5170 }, - { "weight": 1, "sprite": 5171 }, - { "weight": 1, "sprite": 5172 }, - { "weight": 1, "sprite": 5173 } + { "weight": 1, "sprite": 5240 }, + { "weight": 1, "sprite": 5241 }, + { "weight": 1, "sprite": 5242 }, + { "weight": 1, "sprite": 5243 } ] }, { "id": "t_grass_season_summer", "fg": [ - { "weight": 1, "sprite": 5180 }, - { "weight": 1, "sprite": 5181 }, - { "weight": 1, "sprite": 5182 }, - { "weight": 1, "sprite": 5183 } + { "weight": 1, "sprite": 5250 }, + { "weight": 1, "sprite": 5251 }, + { "weight": 1, "sprite": 5252 }, + { "weight": 1, "sprite": 5253 } ] }, { "id": "t_grass_season_autumn", "fg": [ - { "weight": 1, "sprite": 5175 }, - { "weight": 1, "sprite": 5176 }, - { "weight": 1, "sprite": 5177 }, - { "weight": 1, "sprite": 5178 } + { "weight": 1, "sprite": 5245 }, + { "weight": 1, "sprite": 5246 }, + { "weight": 1, "sprite": 5247 }, + { "weight": 1, "sprite": 5248 } ] }, { "id": "t_grass_season_winter", - "fg": 4667, - "bg": 4649, + "fg": 4737, + "bg": 4719, "multitile": true, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 4649 }, - { "weight": 1, "sprite": 4650 }, - { "weight": 1, "sprite": 4651 }, - { "weight": 1, "sprite": 4652 } + { "weight": 1, "sprite": 4719 }, + { "weight": 1, "sprite": 4720 }, + { "weight": 1, "sprite": 4721 }, + { "weight": 1, "sprite": 4722 } ] }, - { "id": "corner", "bg": 4649, "fg": [ 4654, 4656, 4655, 4653 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 4664, 4666, 4665, 4663 ] }, - { "id": "edge", "bg": 4649, "fg": [ 4658, 4657 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 4660, 4662, 4661, 4659 ] }, - { "bg": 4649, "id": "unconnected", "fg": 4667 } + { "id": "corner", "bg": 4719, "fg": [ 4724, 4726, 4725, 4723 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 4734, 4736, 4735, 4733 ] }, + { "id": "edge", "bg": 4719, "fg": [ 4728, 4727 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 4730, 4732, 4731, 4729 ] }, + { "bg": 4719, "id": "unconnected", "fg": 4737 } ] }, { "id": "t_grass_dead", "multitile": true, - "fg": 5199, - "bg": 5169, + "fg": 5269, + "bg": 5239, "additional_tiles": [ - { "id": "center", "bg": 5169, "fg": 5184 }, - { "id": "corner", "bg": 5169, "fg": [ 5186, 5188, 5187, 5185 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 5196, 5198, 5197, 5195 ] }, - { "id": "edge", "bg": 5169, "fg": [ 5190, 5189 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 5192, 5194, 5193, 5191 ] }, - { "bg": 5169, "id": "unconnected", "fg": 5199 } + { "id": "center", "bg": 5239, "fg": 5254 }, + { "id": "corner", "bg": 5239, "fg": [ 5256, 5258, 5257, 5255 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 5266, 5268, 5267, 5265 ] }, + { "id": "edge", "bg": 5239, "fg": [ 5260, 5259 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 5262, 5264, 5263, 5261 ] }, + { "bg": 5239, "id": "unconnected", "fg": 5269 } ] }, { "id": "t_grass_dead_season_summer", "multitile": true, - "fg": 5231, - "bg": 5179, + "fg": 5301, + "bg": 5249, "additional_tiles": [ - { "id": "center", "bg": 5179, "fg": 5216 }, - { "id": "corner", "bg": 5179, "fg": [ 5218, 5220, 5219, 5217 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 5228, 5230, 5229, 5227 ] }, - { "id": "edge", "bg": 5179, "fg": [ 5222, 5221 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 5224, 5226, 5225, 5223 ] }, - { "bg": 5179, "id": "unconnected", "fg": 5231 } + { "id": "center", "bg": 5249, "fg": 5286 }, + { "id": "corner", "bg": 5249, "fg": [ 5288, 5290, 5289, 5287 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 5298, 5300, 5299, 5297 ] }, + { "id": "edge", "bg": 5249, "fg": [ 5292, 5291 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 5294, 5296, 5295, 5293 ] }, + { "bg": 5249, "id": "unconnected", "fg": 5301 } ] }, { "id": "t_grass_dead_season_autumn", "multitile": true, - "fg": 5215, - "bg": 5174, + "fg": 5285, + "bg": 5244, "additional_tiles": [ - { "id": "center", "bg": 5174, "fg": 5200 }, - { "id": "corner", "bg": 5174, "fg": [ 5202, 5204, 5203, 5201 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 5212, 5214, 5213, 5211 ] }, - { "id": "edge", "bg": 5174, "fg": [ 5206, 5205 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 5208, 5210, 5209, 5207 ] }, - { "bg": 5174, "id": "unconnected", "fg": 5215 } + { "id": "center", "bg": 5244, "fg": 5270 }, + { "id": "corner", "bg": 5244, "fg": [ 5272, 5274, 5273, 5271 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 5282, 5284, 5283, 5281 ] }, + { "id": "edge", "bg": 5244, "fg": [ 5276, 5275 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 5278, 5280, 5279, 5277 ] }, + { "bg": 5244, "id": "unconnected", "fg": 5285 } ] }, { "id": "t_grass_dead_season_winter", "multitile": true, - "fg": 4667, - "bg": 4649, + "fg": 4737, + "bg": 4719, "additional_tiles": [ { "id": "center", - "bg": 4649, + "bg": 4719, "fg": [ - { "weight": 1, "sprite": 4649 }, - { "weight": 1, "sprite": 4650 }, - { "weight": 1, "sprite": 4651 }, - { "weight": 1, "sprite": 4652 } + { "weight": 1, "sprite": 4719 }, + { "weight": 1, "sprite": 4720 }, + { "weight": 1, "sprite": 4721 }, + { "weight": 1, "sprite": 4722 } ] }, - { "id": "corner", "bg": 4649, "fg": [ 4654, 4656, 4655, 4653 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 4664, 4666, 4665, 4663 ] }, - { "id": "edge", "bg": 4649, "fg": [ 4658, 4657 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 4660, 4662, 4661, 4659 ] }, - { "bg": 4649, "id": "unconnected", "fg": 4667 } + { "id": "corner", "bg": 4719, "fg": [ 4724, 4726, 4725, 4723 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 4734, 4736, 4735, 4733 ] }, + { "id": "edge", "bg": 4719, "fg": [ 4728, 4727 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 4730, 4732, 4731, 4729 ] }, + { "bg": 4719, "id": "unconnected", "fg": 4737 } ] }, { "id": "t_grate", "multitile": true, - "fg": 5247, + "fg": 5317, "additional_tiles": [ - { "id": "center", "fg": 5232 }, - { "id": "corner", "fg": [ 5234, 5236, 5235, 5233 ] }, - { "id": "t_connection", "fg": [ 5244, 5246, 5245, 5243 ] }, - { "id": "edge", "fg": [ 5238, 5237 ] }, - { "id": "end_piece", "fg": [ 5240, 5242, 5241, 5239 ] }, - { "id": "unconnected", "fg": [ 5247, 5247 ] } + { "id": "center", "fg": 5302 }, + { "id": "corner", "fg": [ 5304, 5306, 5305, 5303 ] }, + { "id": "t_connection", "fg": [ 5314, 5316, 5315, 5313 ] }, + { "id": "edge", "fg": [ 5308, 5307 ] }, + { "id": "end_piece", "fg": [ 5310, 5312, 5311, 5309 ] }, + { "id": "unconnected", "fg": [ 5317, 5317 ] } ] }, { "id": [ "t_guardrail", "t_guardrail_bg_dp", "t_guardrail_hw_air" ], "multitile": true, - "fg": 5254, - "bg": 5825, + "fg": 5324, + "bg": 5895, "additional_tiles": [ - { "id": "edge", "bg": 5825, "fg": [ 5249, 5248 ] }, - { "id": "end_piece", "bg": 5825, "fg": [ 5251, 5253, 5252, 5250 ] }, - { "bg": 5825, "id": "unconnected", "fg": 5254 } + { "id": "edge", "bg": 5895, "fg": [ 5319, 5318 ] }, + { "id": "end_piece", "bg": 5895, "fg": [ 5321, 5323, 5322, 5320 ] }, + { "bg": 5895, "id": "unconnected", "fg": 5324 } ] }, { "id": "t_lava", - "fg": 5271, - "bg": 5617, + "fg": 5341, + "bg": 5687, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5256, "bg": 5617 }, - { "id": "corner", "fg": [ 5258, 5260, 5259, 5257 ], "bg": 5617 }, - { "id": "t_connection", "fg": [ 5268, 5270, 5269, 5267 ], "bg": 5617 }, - { "id": "edge", "fg": [ 5262, 5261 ], "bg": 5617 }, - { "id": "end_piece", "fg": [ 5264, 5266, 5265, 5263 ], "bg": 5617 }, - { "id": "unconnected", "fg": [ 5271, 5271 ], "bg": 5617 } + { "id": "center", "fg": 5326, "bg": 5687 }, + { "id": "corner", "fg": [ 5328, 5330, 5329, 5327 ], "bg": 5687 }, + { "id": "t_connection", "fg": [ 5338, 5340, 5339, 5337 ], "bg": 5687 }, + { "id": "edge", "fg": [ 5332, 5331 ], "bg": 5687 }, + { "id": "end_piece", "fg": [ 5334, 5336, 5335, 5333 ], "bg": 5687 }, + { "id": "unconnected", "fg": [ 5341, 5341 ], "bg": 5687 } ] }, { "id": [ "t_linoleum_gray", "t_linoleum_gray_no_roof" ], "multitile": true, - "fg": 5287, + "fg": 5357, "additional_tiles": [ - { "id": "center", "fg": 5272 }, - { "id": "corner", "fg": [ 5274, 5276, 5275, 5273 ] }, - { "id": "t_connection", "fg": [ 5284, 5286, 5285, 5283 ] }, - { "id": "edge", "fg": [ 5278, 5277 ] }, - { "id": "end_piece", "fg": [ 5280, 5282, 5281, 5279 ] }, - { "id": "unconnected", "fg": 5287 } + { "id": "center", "fg": 5342 }, + { "id": "corner", "fg": [ 5344, 5346, 5345, 5343 ] }, + { "id": "t_connection", "fg": [ 5354, 5356, 5355, 5353 ] }, + { "id": "edge", "fg": [ 5348, 5347 ] }, + { "id": "end_piece", "fg": [ 5350, 5352, 5351, 5349 ] }, + { "id": "unconnected", "fg": 5357 } ] }, { "id": [ "t_linoleum_white", "t_linoleum_white_no_roof" ], "multitile": true, - "fg": 5303, + "fg": 5373, "additional_tiles": [ - { "id": "center", "fg": 5288 }, - { "id": "corner", "fg": [ 5290, 5292, 5291, 5289 ] }, - { "id": "t_connection", "fg": [ 5300, 5302, 5301, 5299 ] }, - { "id": "edge", "fg": [ 5294, 5293 ] }, - { "id": "end_piece", "fg": [ 5296, 5298, 5297, 5295 ] }, - { "id": "unconnected", "fg": 5303 } + { "id": "center", "fg": 5358 }, + { "id": "corner", "fg": [ 5360, 5362, 5361, 5359 ] }, + { "id": "t_connection", "fg": [ 5370, 5372, 5371, 5369 ] }, + { "id": "edge", "fg": [ 5364, 5363 ] }, + { "id": "end_piece", "fg": [ 5366, 5368, 5367, 5365 ] }, + { "id": "unconnected", "fg": 5373 } ] }, - { "id": "t_manhole", "fg": 5304, "bg": 5374 }, - { "id": "t_manhole_cover", "fg": 5305, "bg": 5374 }, + { "id": "t_manhole", "fg": 5374, "bg": 5444 }, + { "id": "t_manhole_cover", "fg": 5375, "bg": 5444 }, { "id": "t_metal_floor", "multitile": true, - "fg": 5321, + "fg": 5391, "additional_tiles": [ - { "id": "center", "fg": 5306 }, - { "id": "corner", "fg": [ 5308, 5310, 5309, 5307 ] }, - { "id": "t_connection", "fg": [ 5318, 5320, 5319, 5317 ] }, - { "id": "edge", "fg": [ 5312, 5311 ] }, - { "id": "end_piece", "fg": [ 5314, 5316, 5315, 5313 ] }, - { "id": "unconnected", "fg": 5321 } + { "id": "center", "fg": 5376 }, + { "id": "corner", "fg": [ 5378, 5380, 5379, 5377 ] }, + { "id": "t_connection", "fg": [ 5388, 5390, 5389, 5387 ] }, + { "id": "edge", "fg": [ 5382, 5381 ] }, + { "id": "end_piece", "fg": [ 5384, 5386, 5385, 5383 ] }, + { "id": "unconnected", "fg": 5391 } ] }, { "id": "t_moss", "multitile": true, - "fg": 5338, - "bg": 5170, + "fg": 5408, + "bg": 5240, "additional_tiles": [ - { "id": "center", "bg": 5170, "fg": [ { "weight": 1, "sprite": 5322 }, { "weight": 1, "sprite": 5323 } ] }, - { "id": "corner", "bg": 5170, "fg": [ 5325, 5327, 5326, 5324 ] }, - { "id": "t_connection", "bg": 5170, "fg": [ 5335, 5337, 5336, 5334 ] }, - { "id": "edge", "bg": 5170, "fg": [ 5329, 5328 ] }, - { "id": "end_piece", "bg": 5170, "fg": [ 5331, 5333, 5332, 5330 ] }, - { "bg": 5170, "id": "unconnected", "fg": 5338 } + { "id": "center", "bg": 5240, "fg": [ { "weight": 1, "sprite": 5392 }, { "weight": 1, "sprite": 5393 } ] }, + { "id": "corner", "bg": 5240, "fg": [ 5395, 5397, 5396, 5394 ] }, + { "id": "t_connection", "bg": 5240, "fg": [ 5405, 5407, 5406, 5404 ] }, + { "id": "edge", "bg": 5240, "fg": [ 5399, 5398 ] }, + { "id": "end_piece", "bg": 5240, "fg": [ 5401, 5403, 5402, 5400 ] }, + { "bg": 5240, "id": "unconnected", "fg": 5408 } ] }, { "id": "t_moss_season_summer", "multitile": true, - "fg": 5372, - "bg": 5180, + "fg": 5442, + "bg": 5250, "additional_tiles": [ - { "id": "center", "bg": 5180, "fg": [ { "weight": 1, "sprite": 5356 }, { "weight": 1, "sprite": 5357 } ] }, - { "id": "corner", "bg": 5180, "fg": [ 5359, 5361, 5360, 5358 ] }, - { "id": "t_connection", "bg": 5180, "fg": [ 5369, 5371, 5370, 5368 ] }, - { "id": "edge", "bg": 5180, "fg": [ 5363, 5362 ] }, - { "id": "end_piece", "bg": 5180, "fg": [ 5365, 5367, 5366, 5364 ] }, - { "bg": 5180, "id": "unconnected", "fg": 5372 } + { "id": "center", "bg": 5250, "fg": [ { "weight": 1, "sprite": 5426 }, { "weight": 1, "sprite": 5427 } ] }, + { "id": "corner", "bg": 5250, "fg": [ 5429, 5431, 5430, 5428 ] }, + { "id": "t_connection", "bg": 5250, "fg": [ 5439, 5441, 5440, 5438 ] }, + { "id": "edge", "bg": 5250, "fg": [ 5433, 5432 ] }, + { "id": "end_piece", "bg": 5250, "fg": [ 5435, 5437, 5436, 5434 ] }, + { "bg": 5250, "id": "unconnected", "fg": 5442 } ] }, { "id": "t_moss_season_autumn", "multitile": true, - "fg": 5355, - "bg": 5175, + "fg": 5425, + "bg": 5245, "additional_tiles": [ - { "id": "center", "bg": 5175, "fg": [ { "weight": 1, "sprite": 5339 }, { "weight": 1, "sprite": 5340 } ] }, - { "id": "corner", "bg": 5175, "fg": [ 5342, 5344, 5343, 5341 ] }, - { "id": "t_connection", "bg": 5175, "fg": [ 5352, 5354, 5353, 5351 ] }, - { "id": "edge", "bg": 5175, "fg": [ 5346, 5345 ] }, - { "id": "end_piece", "bg": 5175, "fg": [ 5348, 5350, 5349, 5347 ] }, - { "bg": 5175, "id": "unconnected", "fg": 5355 } + { "id": "center", "bg": 5245, "fg": [ { "weight": 1, "sprite": 5409 }, { "weight": 1, "sprite": 5410 } ] }, + { "id": "corner", "bg": 5245, "fg": [ 5412, 5414, 5413, 5411 ] }, + { "id": "t_connection", "bg": 5245, "fg": [ 5422, 5424, 5423, 5421 ] }, + { "id": "edge", "bg": 5245, "fg": [ 5416, 5415 ] }, + { "id": "end_piece", "bg": 5245, "fg": [ 5418, 5420, 5419, 5417 ] }, + { "bg": 5245, "id": "unconnected", "fg": 5425 } ] }, { "id": "t_moss_season_winter", "multitile": true, - "fg": 4667, - "bg": 4649, + "fg": 4737, + "bg": 4719, "additional_tiles": [ - { "id": "center", "bg": 4649, "fg": [ { "weight": 1, "sprite": 4649 }, { "weight": 1, "sprite": 4650 } ] }, - { "id": "corner", "bg": 4649, "fg": [ 4654, 4656, 4655, 4653 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 4664, 4666, 4665, 4663 ] }, - { "id": "edge", "bg": 4649, "fg": [ 4658, 4657 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 4660, 4662, 4661, 4659 ] }, - { "bg": 4649, "id": "unconnected", "fg": 4667 } + { "id": "center", "bg": 4719, "fg": [ { "weight": 1, "sprite": 4719 }, { "weight": 1, "sprite": 4720 } ] }, + { "id": "corner", "bg": 4719, "fg": [ 4724, 4726, 4725, 4723 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 4734, 4736, 4735, 4733 ] }, + { "id": "edge", "bg": 4719, "fg": [ 4728, 4727 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 4730, 4732, 4731, 4729 ] }, + { "bg": 4719, "id": "unconnected", "fg": 4737 } ] }, { "id": "t_pavement", "multitile": true, - "fg": 5374, + "fg": 5444, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 5374 }, - { "weight": 1, "sprite": 5375 }, - { "weight": 1, "sprite": 5376 }, - { "weight": 1, "sprite": 5377 } + { "weight": 1, "sprite": 5444 }, + { "weight": 1, "sprite": 5445 }, + { "weight": 1, "sprite": 5446 }, + { "weight": 1, "sprite": 5447 } ] }, - { "id": "corner", "bg": 5169, "fg": [ 5386, 5389, 5388, 5385 ] }, - { "id": "t_connection", "fg": [ 5384, 5392, 5387, 5378 ] }, - { "id": "edge", "fg": [ 5391, 5383 ] }, - { "id": "end_piece", "fg": [ 5380, 5382, 5381, 5379 ] }, - { "id": "unconnected", "fg": 5390 } + { "id": "corner", "bg": 5239, "fg": [ 5456, 5459, 5458, 5455 ] }, + { "id": "t_connection", "fg": [ 5454, 5462, 5457, 5448 ] }, + { "id": "edge", "fg": [ 5461, 5453 ] }, + { "id": "end_piece", "fg": [ 5450, 5452, 5451, 5449 ] }, + { "id": "unconnected", "fg": 5460 } ] }, { "id": "t_pavement_season_summer", "multitile": true, - "fg": 5374, + "fg": 5444, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 5374 }, - { "weight": 1, "sprite": 5375 }, - { "weight": 1, "sprite": 5376 }, - { "weight": 1, "sprite": 5377 } + { "weight": 1, "sprite": 5444 }, + { "weight": 1, "sprite": 5445 }, + { "weight": 1, "sprite": 5446 }, + { "weight": 1, "sprite": 5447 } ] }, - { "id": "corner", "bg": 5179, "fg": [ 5386, 5389, 5388, 5385 ] }, - { "id": "t_connection", "fg": [ 5384, 5392, 5387, 5378 ] }, - { "id": "edge", "fg": [ 5391, 5383 ] }, - { "id": "end_piece", "fg": [ 5380, 5382, 5381, 5379 ] }, - { "id": "unconnected", "fg": 5390 } + { "id": "corner", "bg": 5249, "fg": [ 5456, 5459, 5458, 5455 ] }, + { "id": "t_connection", "fg": [ 5454, 5462, 5457, 5448 ] }, + { "id": "edge", "fg": [ 5461, 5453 ] }, + { "id": "end_piece", "fg": [ 5450, 5452, 5451, 5449 ] }, + { "id": "unconnected", "fg": 5460 } ] }, { "id": "t_pavement_season_autumn", "multitile": true, - "fg": 5374, + "fg": 5444, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 5374 }, - { "weight": 1, "sprite": 5375 }, - { "weight": 1, "sprite": 5376 }, - { "weight": 1, "sprite": 5377 } + { "weight": 1, "sprite": 5444 }, + { "weight": 1, "sprite": 5445 }, + { "weight": 1, "sprite": 5446 }, + { "weight": 1, "sprite": 5447 } ] }, - { "id": "corner", "bg": 5174, "fg": [ 5386, 5389, 5388, 5385 ] }, - { "id": "t_connection", "fg": [ 5384, 5392, 5387, 5378 ] }, - { "id": "edge", "fg": [ 5391, 5383 ] }, - { "id": "end_piece", "fg": [ 5380, 5382, 5381, 5379 ] }, - { "id": "unconnected", "fg": 5390 } + { "id": "corner", "bg": 5244, "fg": [ 5456, 5459, 5458, 5455 ] }, + { "id": "t_connection", "fg": [ 5454, 5462, 5457, 5448 ] }, + { "id": "edge", "fg": [ 5461, 5453 ] }, + { "id": "end_piece", "fg": [ 5450, 5452, 5451, 5449 ] }, + { "id": "unconnected", "fg": 5460 } ] }, - { "id": "t_pavement_season_winter", "fg": 4648 }, - { "id": "t_pavement_y", "fg": 5393 }, - { "id": "t_pavement_y_season_winter", "fg": 4648 }, + { "id": "t_pavement_season_winter", "fg": 4718 }, + { "id": "t_pavement_y", "fg": 5463 }, + { "id": "t_pavement_y_season_winter", "fg": 4718 }, { "id": "t_pit", - "fg": 5409, - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], + "fg": 5479, + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5394, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, + { "id": "center", "fg": 5464, "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "corner", - "fg": [ 5396, 5398, 5397, 5395 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5466, 5468, 5467, 5465 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "t_connection", - "fg": [ 5406, 5408, 5407, 5405 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5476, 5478, 5477, 5475 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "edge", - "fg": [ 5400, 5399 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5470, 5469 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "end_piece", - "fg": [ 5402, 5404, 5403, 5401 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5472, 5474, 5473, 5471 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "unconnected", - "fg": [ 5409, 5409 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5479, 5479 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] } ] }, { "id": "t_pit_season_summer", - "fg": 5409, - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], + "fg": 5479, + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5394, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, + { "id": "center", "fg": 5464, "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "corner", - "fg": [ 5396, 5398, 5397, 5395 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5466, 5468, 5467, 5465 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "t_connection", - "fg": [ 5406, 5408, 5407, 5405 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5476, 5478, 5477, 5475 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "edge", - "fg": [ 5400, 5399 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5470, 5469 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "end_piece", - "fg": [ 5402, 5404, 5403, 5401 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5472, 5474, 5473, 5471 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "unconnected", - "fg": [ 5409, 5409 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5479, 5479 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] } ] }, { "id": "t_pit_season_autumn", - "fg": 5409, - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], + "fg": 5479, + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5394, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, + { "id": "center", "fg": 5464, "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "corner", - "fg": [ 5396, 5398, 5397, 5395 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5466, 5468, 5467, 5465 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "t_connection", - "fg": [ 5406, 5408, 5407, 5405 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5476, 5478, 5477, 5475 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "edge", - "fg": [ 5400, 5399 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5470, 5469 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "end_piece", - "fg": [ 5402, 5404, 5403, 5401 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5472, 5474, 5473, 5471 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "unconnected", - "fg": [ 5409, 5409 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5479, 5479 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] } ] }, { "id": "t_pit_season_winter", - "fg": 5409, - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], + "fg": 5479, + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5394, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, + { "id": "center", "fg": 5464, "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "corner", - "fg": [ 5396, 5398, 5397, 5395 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5466, 5468, 5467, 5465 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "t_connection", - "fg": [ 5406, 5408, 5407, 5405 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5476, 5478, 5477, 5475 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "edge", - "fg": [ 5400, 5399 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5470, 5469 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "end_piece", - "fg": [ 5402, 5404, 5403, 5401 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5472, 5474, 5473, 5471 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "unconnected", - "fg": [ 5409, 5409 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5479, 5479 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] } ] }, { "id": "t_pit_corpsed", - "fg": 5425, - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], + "fg": 5495, + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5410, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, + { "id": "center", "fg": 5480, "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "corner", - "fg": [ 5412, 5414, 5413, 5411 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5482, 5484, 5483, 5481 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "t_connection", - "fg": [ 5422, 5424, 5423, 5421 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5492, 5494, 5493, 5491 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "edge", - "fg": [ 5416, 5415 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5486, 5485 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "end_piece", - "fg": [ 5418, 5420, 5419, 5417 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5488, 5490, 5489, 5487 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "unconnected", - "fg": [ 5425, 5425 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5495, 5495 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] } ] }, { "id": "t_pit_corpsed_season_summer", - "fg": 5425, - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], + "fg": 5495, + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5410, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, + { "id": "center", "fg": 5480, "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "corner", - "fg": [ 5412, 5414, 5413, 5411 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5482, 5484, 5483, 5481 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "t_connection", - "fg": [ 5422, 5424, 5423, 5421 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5492, 5494, 5493, 5491 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "edge", - "fg": [ 5416, 5415 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5486, 5485 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "end_piece", - "fg": [ 5418, 5420, 5419, 5417 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5488, 5490, 5489, 5487 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "unconnected", - "fg": [ 5425, 5425 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5495, 5495 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] } ] }, { "id": "t_pit_corpsed_season_autumn", - "fg": 5425, - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], + "fg": 5495, + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5410, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, + { "id": "center", "fg": 5480, "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "corner", - "fg": [ 5412, 5414, 5413, 5411 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5482, 5484, 5483, 5481 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "t_connection", - "fg": [ 5422, 5424, 5423, 5421 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5492, 5494, 5493, 5491 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "edge", - "fg": [ 5416, 5415 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5486, 5485 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "end_piece", - "fg": [ 5418, 5420, 5419, 5417 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5488, 5490, 5489, 5487 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "unconnected", - "fg": [ 5425, 5425 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5495, 5495 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] } ] }, { "id": "t_pit_corpsed_season_winter", - "fg": 5425, - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], + "fg": 5495, + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5410, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, + { "id": "center", "fg": 5480, "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "corner", - "fg": [ 5412, 5414, 5413, 5411 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5482, 5484, 5483, 5481 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "t_connection", - "fg": [ 5422, 5424, 5423, 5421 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5492, 5494, 5493, 5491 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "edge", - "fg": [ 5416, 5415 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5486, 5485 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "end_piece", - "fg": [ 5418, 5420, 5419, 5417 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5488, 5490, 5489, 5487 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "unconnected", - "fg": [ 5425, 5425 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5495, 5495 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] } ] }, { "id": "t_pit_covered", - "fg": 5441, - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], + "fg": 5511, + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5426, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, + { "id": "center", "fg": 5496, "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "corner", - "fg": [ 5428, 5430, 5429, 5427 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5498, 5500, 5499, 5497 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "t_connection", - "fg": [ 5438, 5440, 5439, 5437 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5508, 5510, 5509, 5507 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "edge", - "fg": [ 5432, 5431 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5502, 5501 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "end_piece", - "fg": [ 5434, 5436, 5435, 5433 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5504, 5506, 5505, 5503 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "unconnected", - "fg": [ 5441, 5441 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5511, 5511 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] } ] }, { "id": "t_pit_covered_season_summer", - "fg": 5441, - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], + "fg": 5511, + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5426, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, + { "id": "center", "fg": 5496, "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "corner", - "fg": [ 5428, 5430, 5429, 5427 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5498, 5500, 5499, 5497 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "t_connection", - "fg": [ 5438, 5440, 5439, 5437 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5508, 5510, 5509, 5507 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "edge", - "fg": [ 5432, 5431 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5502, 5501 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "end_piece", - "fg": [ 5434, 5436, 5435, 5433 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5504, 5506, 5505, 5503 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "unconnected", - "fg": [ 5441, 5441 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5511, 5511 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] } ] }, { "id": "t_pit_covered_season_autumn", - "fg": 5441, - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], + "fg": 5511, + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5426, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, + { "id": "center", "fg": 5496, "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "corner", - "fg": [ 5428, 5430, 5429, 5427 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5498, 5500, 5499, 5497 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "t_connection", - "fg": [ 5438, 5440, 5439, 5437 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5508, 5510, 5509, 5507 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "edge", - "fg": [ 5432, 5431 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5502, 5501 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "end_piece", - "fg": [ 5434, 5436, 5435, 5433 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5504, 5506, 5505, 5503 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "unconnected", - "fg": [ 5441, 5441 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5511, 5511 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] } ] }, { "id": "t_pit_covered_season_winter", - "fg": 5441, - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], + "fg": 5511, + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5426, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, + { "id": "center", "fg": 5496, "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "corner", - "fg": [ 5428, 5430, 5429, 5427 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5498, 5500, 5499, 5497 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "t_connection", - "fg": [ 5438, 5440, 5439, 5437 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5508, 5510, 5509, 5507 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "edge", - "fg": [ 5432, 5431 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5502, 5501 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "end_piece", - "fg": [ 5434, 5436, 5435, 5433 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5504, 5506, 5505, 5503 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "unconnected", - "fg": [ 5441, 5441 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5511, 5511 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] } ] }, { "id": "t_pit_glass", - "fg": 5457, - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], + "fg": 5527, + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5442, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, + { "id": "center", "fg": 5512, "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "corner", - "fg": [ 5444, 5446, 5445, 5443 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5514, 5516, 5515, 5513 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "t_connection", - "fg": [ 5454, 5456, 5455, 5453 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5524, 5526, 5525, 5523 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "edge", - "fg": [ 5448, 5447 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5518, 5517 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "end_piece", - "fg": [ 5450, 5452, 5451, 5449 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5520, 5522, 5521, 5519 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "unconnected", - "fg": [ 5457, 5457 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5527, 5527 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] } ] }, { "id": "t_pit_glass_season_summer", - "fg": 5457, - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], + "fg": 5527, + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5442, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, + { "id": "center", "fg": 5512, "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "corner", - "fg": [ 5444, 5446, 5445, 5443 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5514, 5516, 5515, 5513 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "t_connection", - "fg": [ 5454, 5456, 5455, 5453 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5524, 5526, 5525, 5523 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "edge", - "fg": [ 5448, 5447 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5518, 5517 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "end_piece", - "fg": [ 5450, 5452, 5451, 5449 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5520, 5522, 5521, 5519 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "unconnected", - "fg": [ 5457, 5457 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5527, 5527 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] } ] }, { "id": "t_pit_glass_season_autumn", - "fg": 5457, - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], + "fg": 5527, + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5442, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, + { "id": "center", "fg": 5512, "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "corner", - "fg": [ 5444, 5446, 5445, 5443 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5514, 5516, 5515, 5513 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "t_connection", - "fg": [ 5454, 5456, 5455, 5453 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5524, 5526, 5525, 5523 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "edge", - "fg": [ 5448, 5447 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5518, 5517 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "end_piece", - "fg": [ 5450, 5452, 5451, 5449 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5520, 5522, 5521, 5519 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "unconnected", - "fg": [ 5457, 5457 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5527, 5527 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] } ] }, { "id": "t_pit_glass_season_winter", - "fg": 5457, - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], + "fg": 5527, + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5442, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, + { "id": "center", "fg": 5512, "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "corner", - "fg": [ 5444, 5446, 5445, 5443 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5514, 5516, 5515, 5513 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "t_connection", - "fg": [ 5454, 5456, 5455, 5453 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5524, 5526, 5525, 5523 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "edge", - "fg": [ 5448, 5447 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5518, 5517 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "end_piece", - "fg": [ 5450, 5452, 5451, 5449 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5520, 5522, 5521, 5519 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "unconnected", - "fg": [ 5457, 5457 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5527, 5527 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] } ] }, { "id": "t_pit_glass_covered", - "fg": 5473, - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], + "fg": 5543, + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5458, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, + { "id": "center", "fg": 5528, "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "corner", - "fg": [ 5460, 5462, 5461, 5459 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5530, 5532, 5531, 5529 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "t_connection", - "fg": [ 5470, 5472, 5471, 5469 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5540, 5542, 5541, 5539 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "edge", - "fg": [ 5464, 5463 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5534, 5533 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "end_piece", - "fg": [ 5466, 5468, 5467, 5465 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5536, 5538, 5537, 5535 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "unconnected", - "fg": [ 5473, 5473 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5543, 5543 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] } ] }, { "id": "t_pit_glass_covered_season_summer", - "fg": 5473, - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], + "fg": 5543, + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5458, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, + { "id": "center", "fg": 5528, "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "corner", - "fg": [ 5460, 5462, 5461, 5459 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5530, 5532, 5531, 5529 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "t_connection", - "fg": [ 5470, 5472, 5471, 5469 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5540, 5542, 5541, 5539 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "edge", - "fg": [ 5464, 5463 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5534, 5533 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "end_piece", - "fg": [ 5466, 5468, 5467, 5465 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5536, 5538, 5537, 5535 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "unconnected", - "fg": [ 5473, 5473 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5543, 5543 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] } ] }, { "id": "t_pit_glass_covered_season_autumn", - "fg": 5473, - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], + "fg": 5543, + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5458, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, + { "id": "center", "fg": 5528, "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "corner", - "fg": [ 5460, 5462, 5461, 5459 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5530, 5532, 5531, 5529 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "t_connection", - "fg": [ 5470, 5472, 5471, 5469 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5540, 5542, 5541, 5539 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "edge", - "fg": [ 5464, 5463 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5534, 5533 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "end_piece", - "fg": [ 5466, 5468, 5467, 5465 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5536, 5538, 5537, 5535 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "unconnected", - "fg": [ 5473, 5473 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5543, 5543 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] } ] }, { "id": "t_pit_glass_covered_season_winter", - "fg": 5473, - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], + "fg": 5543, + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5458, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, + { "id": "center", "fg": 5528, "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "corner", - "fg": [ 5460, 5462, 5461, 5459 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5530, 5532, 5531, 5529 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "t_connection", - "fg": [ 5470, 5472, 5471, 5469 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5540, 5542, 5541, 5539 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "edge", - "fg": [ 5464, 5463 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5534, 5533 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "end_piece", - "fg": [ 5466, 5468, 5467, 5465 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5536, 5538, 5537, 5535 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "unconnected", - "fg": [ 5473, 5473 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5543, 5543 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] } ] }, { "id": "t_pit_shallow", - "fg": 5489, - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], + "fg": 5559, + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5474, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, + { "id": "center", "fg": 5544, "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "corner", - "fg": [ 5476, 5478, 5477, 5475 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5546, 5548, 5547, 5545 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "t_connection", - "fg": [ 5486, 5488, 5487, 5485 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5556, 5558, 5557, 5555 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "edge", - "fg": [ 5480, 5479 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5550, 5549 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "end_piece", - "fg": [ 5482, 5484, 5483, 5481 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5552, 5554, 5553, 5551 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "unconnected", - "fg": [ 5489, 5489 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5559, 5559 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] } ] }, { "id": "t_pit_shallow_season_summer", - "fg": 5489, - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], + "fg": 5559, + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5474, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, + { "id": "center", "fg": 5544, "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "corner", - "fg": [ 5476, 5478, 5477, 5475 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5546, 5548, 5547, 5545 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "t_connection", - "fg": [ 5486, 5488, 5487, 5485 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5556, 5558, 5557, 5555 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "edge", - "fg": [ 5480, 5479 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5550, 5549 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "end_piece", - "fg": [ 5482, 5484, 5483, 5481 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5552, 5554, 5553, 5551 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "unconnected", - "fg": [ 5489, 5489 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5559, 5559 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] } ] }, { "id": "t_pit_shallow_season_autumn", - "fg": 5489, - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], + "fg": 5559, + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5474, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, + { "id": "center", "fg": 5544, "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "corner", - "fg": [ 5476, 5478, 5477, 5475 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5546, 5548, 5547, 5545 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "t_connection", - "fg": [ 5486, 5488, 5487, 5485 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5556, 5558, 5557, 5555 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "edge", - "fg": [ 5480, 5479 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5550, 5549 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "end_piece", - "fg": [ 5482, 5484, 5483, 5481 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5552, 5554, 5553, 5551 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "unconnected", - "fg": [ 5489, 5489 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5559, 5559 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] } ] }, { "id": "t_pit_shallow_season_winter", - "fg": 5489, - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], + "fg": 5559, + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5474, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, + { "id": "center", "fg": 5544, "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "corner", - "fg": [ 5476, 5478, 5477, 5475 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5546, 5548, 5547, 5545 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "t_connection", - "fg": [ 5486, 5488, 5487, 5485 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5556, 5558, 5557, 5555 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "edge", - "fg": [ 5480, 5479 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5550, 5549 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "end_piece", - "fg": [ 5482, 5484, 5483, 5481 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5552, 5554, 5553, 5551 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "unconnected", - "fg": [ 5489, 5489 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5559, 5559 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] } ] }, { "id": "t_pit_spiked", - "fg": 5505, - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], + "fg": 5575, + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5490, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, + { "id": "center", "fg": 5560, "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "corner", - "fg": [ 5492, 5494, 5493, 5491 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5562, 5564, 5563, 5561 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "t_connection", - "fg": [ 5502, 5504, 5503, 5501 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5572, 5574, 5573, 5571 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "edge", - "fg": [ 5496, 5495 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5566, 5565 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "end_piece", - "fg": [ 5498, 5500, 5499, 5497 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5568, 5570, 5569, 5567 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "unconnected", - "fg": [ 5505, 5505 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5575, 5575 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] } ] }, { "id": "t_pit_spiked_season_summer", - "fg": 5505, - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], + "fg": 5575, + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5490, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, + { "id": "center", "fg": 5560, "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "corner", - "fg": [ 5492, 5494, 5493, 5491 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5562, 5564, 5563, 5561 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "t_connection", - "fg": [ 5502, 5504, 5503, 5501 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5572, 5574, 5573, 5571 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "edge", - "fg": [ 5496, 5495 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5566, 5565 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "end_piece", - "fg": [ 5498, 5500, 5499, 5497 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5568, 5570, 5569, 5567 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "unconnected", - "fg": [ 5505, 5505 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5575, 5575 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] } ] }, { "id": "t_pit_spiked_season_autumn", - "fg": 5505, - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], + "fg": 5575, + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5490, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, + { "id": "center", "fg": 5560, "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "corner", - "fg": [ 5492, 5494, 5493, 5491 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5562, 5564, 5563, 5561 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "t_connection", - "fg": [ 5502, 5504, 5503, 5501 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5572, 5574, 5573, 5571 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "edge", - "fg": [ 5496, 5495 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5566, 5565 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "end_piece", - "fg": [ 5498, 5500, 5499, 5497 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5568, 5570, 5569, 5567 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "unconnected", - "fg": [ 5505, 5505 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5575, 5575 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] } ] }, { "id": "t_pit_spiked_season_winter", - "fg": 5505, - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], + "fg": 5575, + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5490, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, + { "id": "center", "fg": 5560, "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "corner", - "fg": [ 5492, 5494, 5493, 5491 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5562, 5564, 5563, 5561 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "t_connection", - "fg": [ 5502, 5504, 5503, 5501 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5572, 5574, 5573, 5571 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "edge", - "fg": [ 5496, 5495 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5566, 5565 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "end_piece", - "fg": [ 5498, 5500, 5499, 5497 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5568, 5570, 5569, 5567 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "unconnected", - "fg": [ 5505, 5505 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5575, 5575 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] } ] }, { "id": "t_pit_spiked_covered", - "fg": 5521, - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ], + "fg": 5591, + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5506, "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] }, + { "id": "center", "fg": 5576, "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "corner", - "fg": [ 5508, 5510, 5509, 5507 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5578, 5580, 5579, 5577 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "t_connection", - "fg": [ 5518, 5520, 5519, 5517 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5588, 5590, 5589, 5587 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "edge", - "fg": [ 5512, 5511 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5582, 5581 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "end_piece", - "fg": [ 5514, 5516, 5515, 5513 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5584, 5586, 5585, 5583 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "unconnected", - "fg": [ 5521, 5521 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 5591, 5591 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] } ] }, { "id": "t_pit_spiked_covered_season_summer", - "fg": 5521, - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ], + "fg": 5591, + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5506, "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] }, + { "id": "center", "fg": 5576, "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "corner", - "fg": [ 5508, 5510, 5509, 5507 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5578, 5580, 5579, 5577 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "t_connection", - "fg": [ 5518, 5520, 5519, 5517 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5588, 5590, 5589, 5587 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "edge", - "fg": [ 5512, 5511 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5582, 5581 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "end_piece", - "fg": [ 5514, 5516, 5515, 5513 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5584, 5586, 5585, 5583 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "unconnected", - "fg": [ 5521, 5521 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 5591, 5591 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] } ] }, { "id": "t_pit_spiked_covered_season_autumn", - "fg": 5521, - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ], + "fg": 5591, + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5506, "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] }, + { "id": "center", "fg": 5576, "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "corner", - "fg": [ 5508, 5510, 5509, 5507 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5578, 5580, 5579, 5577 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "t_connection", - "fg": [ 5518, 5520, 5519, 5517 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5588, 5590, 5589, 5587 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "edge", - "fg": [ 5512, 5511 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5582, 5581 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "end_piece", - "fg": [ 5514, 5516, 5515, 5513 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5584, 5586, 5585, 5583 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, { "id": "unconnected", - "fg": [ 5521, 5521 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 5591, 5591 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] } ] }, { "id": "t_pit_spiked_covered_season_winter", - "fg": 5521, - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ], + "fg": 5591, + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5506, "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] }, + { "id": "center", "fg": 5576, "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "corner", - "fg": [ 5508, 5510, 5509, 5507 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5578, 5580, 5579, 5577 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "t_connection", - "fg": [ 5518, 5520, 5519, 5517 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5588, 5590, 5589, 5587 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "edge", - "fg": [ 5512, 5511 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5582, 5581 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "end_piece", - "fg": [ 5514, 5516, 5515, 5513 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5584, 5586, 5585, 5583 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] }, { "id": "unconnected", - "fg": [ 5521, 5521 ], - "bg": [ { "weight": 100, "sprite": 4649 }, { "weight": 100, "sprite": 4650 } ] + "fg": [ 5591, 5591 ], + "bg": [ { "weight": 100, "sprite": 4719 }, { "weight": 100, "sprite": 4720 } ] } ] }, { "id": "t_privacy_fence", "multitile": true, - "fg": 5537, - "bg": 5169, + "fg": 5607, + "bg": 5239, "additional_tiles": [ - { "id": "center", "bg": 5169, "fg": 5522 }, - { "id": "corner", "bg": 5169, "fg": [ 5524, 5526, 5525, 5523 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 5534, 5536, 5535, 5533 ] }, - { "id": "edge", "bg": 5169, "fg": [ 5528, 5527 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 5530, 5532, 5531, 5529 ] }, - { "bg": 5169, "id": "unconnected", "fg": [ 5537, 5537 ] } + { "id": "center", "bg": 5239, "fg": 5592 }, + { "id": "corner", "bg": 5239, "fg": [ 5594, 5596, 5595, 5593 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 5604, 5606, 5605, 5603 ] }, + { "id": "edge", "bg": 5239, "fg": [ 5598, 5597 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 5600, 5602, 5601, 5599 ] }, + { "bg": 5239, "id": "unconnected", "fg": [ 5607, 5607 ] } ] }, { "id": "t_privacy_fence_season_winter", "multitile": true, - "fg": 5537, - "bg": 4649, + "fg": 5607, + "bg": 4719, "additional_tiles": [ - { "id": "center", "bg": 4649, "fg": 5522 }, - { "id": "corner", "bg": 4649, "fg": [ 5524, 5526, 5525, 5523 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 5534, 5536, 5535, 5533 ] }, - { "id": "edge", "bg": 4649, "fg": [ 5528, 5527 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 5530, 5532, 5531, 5529 ] }, - { "bg": 4649, "id": "unconnected", "fg": [ 5537, 5537 ] } + { "id": "center", "bg": 4719, "fg": 5592 }, + { "id": "corner", "bg": 4719, "fg": [ 5594, 5596, 5595, 5593 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 5604, 5606, 5605, 5603 ] }, + { "id": "edge", "bg": 4719, "fg": [ 5598, 5597 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 5600, 5602, 5601, 5599 ] }, + { "bg": 4719, "id": "unconnected", "fg": [ 5607, 5607 ] } ] }, { "id": "t_railing", "multitile": true, - "fg": 5553, - "bg": 4852, + "fg": 5623, + "bg": 4922, "additional_tiles": [ - { "id": "center", "bg": 4852, "fg": 5538 }, - { "id": "corner", "bg": 4852, "fg": [ 5540, 5542, 5541, 5539 ] }, - { "id": "t_connection", "bg": 4852, "fg": [ 5550, 5552, 5551, 5549 ] }, - { "id": "edge", "bg": 4852, "fg": [ 5544, 5543 ] }, - { "id": "end_piece", "bg": 4852, "fg": [ 5546, 5548, 5547, 5545 ] }, - { "bg": 4852, "id": "unconnected", "fg": [ 5553, 5553 ] } + { "id": "center", "bg": 4922, "fg": 5608 }, + { "id": "corner", "bg": 4922, "fg": [ 5610, 5612, 5611, 5609 ] }, + { "id": "t_connection", "bg": 4922, "fg": [ 5620, 5622, 5621, 5619 ] }, + { "id": "edge", "bg": 4922, "fg": [ 5614, 5613 ] }, + { "id": "end_piece", "bg": 4922, "fg": [ 5616, 5618, 5617, 5615 ] }, + { "bg": 4922, "id": "unconnected", "fg": [ 5623, 5623 ] } ] }, { "id": "t_railroad_rubble", "multitile": true, - "fg": 5570, - "bg": 5169, + "fg": 5640, + "bg": 5239, "additional_tiles": [ - { "id": "center", "bg": 5169, "fg": [ { "weight": 1, "sprite": 5554 }, { "weight": 1, "sprite": 5555 } ] }, - { "id": "corner", "bg": 5169, "fg": [ 5557, 5559, 5558, 5556 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 5567, 5569, 5568, 5566 ] }, - { "id": "edge", "bg": 5169, "fg": [ 5561, 5560 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 5563, 5565, 5564, 5562 ] }, - { "bg": 5169, "id": "unconnected", "fg": 5570 } + { "id": "center", "bg": 5239, "fg": [ { "weight": 1, "sprite": 5624 }, { "weight": 1, "sprite": 5625 } ] }, + { "id": "corner", "bg": 5239, "fg": [ 5627, 5629, 5628, 5626 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 5637, 5639, 5638, 5636 ] }, + { "id": "edge", "bg": 5239, "fg": [ 5631, 5630 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 5633, 5635, 5634, 5632 ] }, + { "bg": 5239, "id": "unconnected", "fg": 5640 } ] }, { "id": "t_railroad_rubble_season_summer", "multitile": true, - "fg": 5570, - "bg": 5179, + "fg": 5640, + "bg": 5249, "additional_tiles": [ - { "id": "center", "bg": 5179, "fg": [ { "weight": 1, "sprite": 5554 }, { "weight": 1, "sprite": 5555 } ] }, - { "id": "corner", "bg": 5179, "fg": [ 5557, 5559, 5558, 5556 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 5567, 5569, 5568, 5566 ] }, - { "id": "edge", "bg": 5179, "fg": [ 5561, 5560 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 5563, 5565, 5564, 5562 ] }, - { "bg": 5179, "id": "unconnected", "fg": 5570 } + { "id": "center", "bg": 5249, "fg": [ { "weight": 1, "sprite": 5624 }, { "weight": 1, "sprite": 5625 } ] }, + { "id": "corner", "bg": 5249, "fg": [ 5627, 5629, 5628, 5626 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 5637, 5639, 5638, 5636 ] }, + { "id": "edge", "bg": 5249, "fg": [ 5631, 5630 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 5633, 5635, 5634, 5632 ] }, + { "bg": 5249, "id": "unconnected", "fg": 5640 } ] }, { "id": "t_railroad_rubble_season_autumn", "multitile": true, - "fg": 5570, - "bg": 5174, + "fg": 5640, + "bg": 5244, "additional_tiles": [ - { "id": "center", "bg": 5174, "fg": [ { "weight": 1, "sprite": 5554 }, { "weight": 1, "sprite": 5555 } ] }, - { "id": "corner", "bg": 5174, "fg": [ 5557, 5559, 5558, 5556 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 5567, 5569, 5568, 5566 ] }, - { "id": "edge", "bg": 5174, "fg": [ 5561, 5560 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 5563, 5565, 5564, 5562 ] }, - { "bg": 5174, "id": "unconnected", "fg": 5570 } + { "id": "center", "bg": 5244, "fg": [ { "weight": 1, "sprite": 5624 }, { "weight": 1, "sprite": 5625 } ] }, + { "id": "corner", "bg": 5244, "fg": [ 5627, 5629, 5628, 5626 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 5637, 5639, 5638, 5636 ] }, + { "id": "edge", "bg": 5244, "fg": [ 5631, 5630 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 5633, 5635, 5634, 5632 ] }, + { "bg": 5244, "id": "unconnected", "fg": 5640 } ] }, { "id": "t_railroad_rubble_season_winter", "multitile": true, - "fg": 5570, - "bg": 4649, + "fg": 5640, + "bg": 4719, "additional_tiles": [ - { "id": "center", "bg": 4649, "fg": [ { "weight": 1, "sprite": 5554 }, { "weight": 1, "sprite": 5555 } ] }, - { "id": "corner", "bg": 4649, "fg": [ 5557, 5559, 5558, 5556 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 5567, 5569, 5568, 5566 ] }, - { "id": "edge", "bg": 4649, "fg": [ 5561, 5560 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 5563, 5565, 5564, 5562 ] }, - { "bg": 4649, "id": "unconnected", "fg": 5570 } + { "id": "center", "bg": 4719, "fg": [ { "weight": 1, "sprite": 5624 }, { "weight": 1, "sprite": 5625 } ] }, + { "id": "corner", "bg": 4719, "fg": [ 5627, 5629, 5628, 5626 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 5637, 5639, 5638, 5636 ] }, + { "id": "edge", "bg": 4719, "fg": [ 5631, 5630 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 5633, 5635, 5634, 5632 ] }, + { "bg": 4719, "id": "unconnected", "fg": 5640 } ] }, { "id": "t_railroad_track_small", - "fg": 5577, - "bg": 5554, + "fg": 5647, + "bg": 5624, "multitile": true, "additional_tiles": [ - { "id": "center", "bg": 5554, "fg": 5571 }, - { "id": "corner", "bg": 5554, "fg": [ 5573, 5575, 5574, 5572 ] }, - { "id": "t_connection", "bg": 5554, "fg": [ 5579, 5581, 5580, 5578 ] }, - { "id": "edge", "bg": 5554, "fg": [ 5577, 5576 ] }, - { "id": "end_piece", "bg": 5554, "fg": [ 5577, 5576, 5577, 5576 ] }, - { "id": "unconnected", "bg": 5554, "fg": [ 5577, 5576 ] } + { "id": "center", "bg": 5624, "fg": 5641 }, + { "id": "corner", "bg": 5624, "fg": [ 5643, 5645, 5644, 5642 ] }, + { "id": "t_connection", "bg": 5624, "fg": [ 5649, 5651, 5650, 5648 ] }, + { "id": "edge", "bg": 5624, "fg": [ 5647, 5646 ] }, + { "id": "end_piece", "bg": 5624, "fg": [ 5647, 5646, 5647, 5646 ] }, + { "id": "unconnected", "bg": 5624, "fg": [ 5647, 5646 ] } ] }, - { "id": "t_rdoor_c", "fg": 5583 }, - { "id": "t_rdoor_o", "fg": 5584 }, - { "id": "t_rdoor_b", "fg": 5582 }, + { "id": "t_rdoor_c", "fg": 5653 }, + { "id": "t_rdoor_o", "fg": 5654 }, + { "id": "t_rdoor_b", "fg": 5652 }, { "id": "t_reinforced_glass", "multitile": true, - "fg": 5600, + "fg": 5670, "additional_tiles": [ - { "id": "center", "fg": 5585 }, - { "id": "corner", "fg": [ 5587, 5589, 5588, 5586 ] }, - { "id": "t_connection", "fg": [ 5597, 5599, 5598, 5596 ] }, - { "id": "edge", "fg": [ 5591, 5590 ] }, - { "id": "end_piece", "fg": [ 5593, 5595, 5594, 5592 ] }, - { "id": "unconnected", "fg": 5600 } + { "id": "center", "fg": 5655 }, + { "id": "corner", "fg": [ 5657, 5659, 5658, 5656 ] }, + { "id": "t_connection", "fg": [ 5667, 5669, 5668, 5666 ] }, + { "id": "edge", "fg": [ 5661, 5660 ] }, + { "id": "end_piece", "fg": [ 5663, 5665, 5664, 5662 ] }, + { "id": "unconnected", "fg": 5670 } ] }, { "id": "t_rock", "multitile": true, - "fg": 5616, + "fg": 5686, "additional_tiles": [ - { "id": "center", "fg": 5601 }, - { "id": "corner", "fg": [ 5603, 5605, 5604, 5602 ] }, - { "id": "t_connection", "fg": [ 5613, 5615, 5614, 5612 ] }, - { "id": "edge", "fg": [ 5607, 5606 ] }, - { "id": "end_piece", "fg": [ 5609, 5611, 5610, 5608 ] }, - { "id": "unconnected", "fg": 5616 } + { "id": "center", "fg": 5671 }, + { "id": "corner", "fg": [ 5673, 5675, 5674, 5672 ] }, + { "id": "t_connection", "fg": [ 5683, 5685, 5684, 5682 ] }, + { "id": "edge", "fg": [ 5677, 5676 ] }, + { "id": "end_piece", "fg": [ 5679, 5681, 5680, 5678 ] }, + { "id": "unconnected", "fg": 5686 } ] }, { "id": "t_rock_floor", "multitile": true, - "fg": 5634, + "fg": 5704, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 5617 }, { "weight": 1, "sprite": 5618 }, { "weight": 1, "sprite": 5619 } ] + "fg": [ { "weight": 1, "sprite": 5687 }, { "weight": 1, "sprite": 5688 }, { "weight": 1, "sprite": 5689 } ] }, - { "id": "corner", "fg": [ 5621, 5623, 5622, 5620 ] }, - { "id": "t_connection", "fg": [ 5631, 5633, 5632, 5630 ] }, - { "id": "edge", "fg": [ 5625, 5624 ] }, - { "id": "end_piece", "fg": [ 5627, 5629, 5628, 5626 ] }, - { "id": "unconnected", "fg": 5634 } + { "id": "corner", "fg": [ 5691, 5693, 5692, 5690 ] }, + { "id": "t_connection", "fg": [ 5701, 5703, 5702, 5700 ] }, + { "id": "edge", "fg": [ 5695, 5694 ] }, + { "id": "end_piece", "fg": [ 5697, 5699, 5698, 5696 ] }, + { "id": "unconnected", "fg": 5704 } ] }, { "id": "t_rock_wall", "multitile": true, - "fg": 5650, + "fg": 5720, "additional_tiles": [ - { "id": "center", "fg": 5635 }, - { "id": "corner", "fg": [ 5637, 5639, 5638, 5636 ] }, - { "id": "t_connection", "fg": [ 5647, 5649, 5648, 5646 ] }, - { "id": "edge", "fg": [ 5641, 5640 ] }, - { "id": "end_piece", "fg": [ 5643, 5645, 5644, 5642 ] }, - { "id": "unconnected", "fg": 5650 } + { "id": "center", "fg": 5705 }, + { "id": "corner", "fg": [ 5707, 5709, 5708, 5706 ] }, + { "id": "t_connection", "fg": [ 5717, 5719, 5718, 5716 ] }, + { "id": "edge", "fg": [ 5711, 5710 ] }, + { "id": "end_piece", "fg": [ 5713, 5715, 5714, 5712 ] }, + { "id": "unconnected", "fg": 5720 } ] }, { "id": "t_sand", "multitile": true, - "fg": 5669, - "bg": 5169, + "fg": 5739, + "bg": 5239, "additional_tiles": [ { "id": "center", - "bg": 5169, + "bg": 5239, "fg": [ - { "weight": 1, "sprite": 5651 }, - { "weight": 1, "sprite": 5652 }, - { "weight": 1, "sprite": 5653 }, - { "weight": 1, "sprite": 5654 } + { "weight": 1, "sprite": 5721 }, + { "weight": 1, "sprite": 5722 }, + { "weight": 1, "sprite": 5723 }, + { "weight": 1, "sprite": 5724 } ] }, - { "id": "corner", "bg": 5169, "fg": [ 5656, 5658, 5657, 5655 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 5666, 5668, 5667, 5665 ] }, - { "id": "edge", "bg": 5169, "fg": [ 5660, 5659 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 5662, 5664, 5663, 5661 ] }, - { "bg": 5169, "id": "unconnected", "fg": 5669 } + { "id": "corner", "bg": 5239, "fg": [ 5726, 5728, 5727, 5725 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 5736, 5738, 5737, 5735 ] }, + { "id": "edge", "bg": 5239, "fg": [ 5730, 5729 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 5732, 5734, 5733, 5731 ] }, + { "bg": 5239, "id": "unconnected", "fg": 5739 } ] }, { "id": "t_sand_season_summer", "multitile": true, - "fg": 5669, - "bg": 5179, + "fg": 5739, + "bg": 5249, "additional_tiles": [ - { "id": "center", "bg": 5179, "fg": [ { "weight": 1, "sprite": 5651 }, { "weight": 1, "sprite": 5652 } ] }, - { "id": "corner", "bg": 5179, "fg": [ 5656, 5658, 5657, 5655 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 5666, 5668, 5667, 5665 ] }, - { "id": "edge", "bg": 5179, "fg": [ 5660, 5659 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 5662, 5664, 5663, 5661 ] }, - { "bg": 5179, "id": "unconnected", "fg": 5669 } + { "id": "center", "bg": 5249, "fg": [ { "weight": 1, "sprite": 5721 }, { "weight": 1, "sprite": 5722 } ] }, + { "id": "corner", "bg": 5249, "fg": [ 5726, 5728, 5727, 5725 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 5736, 5738, 5737, 5735 ] }, + { "id": "edge", "bg": 5249, "fg": [ 5730, 5729 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 5732, 5734, 5733, 5731 ] }, + { "bg": 5249, "id": "unconnected", "fg": 5739 } ] }, { "id": "t_sand_season_autumn", "multitile": true, - "fg": 5669, - "bg": 5174, + "fg": 5739, + "bg": 5244, "additional_tiles": [ - { "id": "center", "bg": 5174, "fg": [ { "weight": 1, "sprite": 5651 }, { "weight": 1, "sprite": 5652 } ] }, - { "id": "corner", "bg": 5174, "fg": [ 5656, 5658, 5657, 5655 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 5666, 5668, 5667, 5665 ] }, - { "id": "edge", "bg": 5174, "fg": [ 5660, 5659 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 5662, 5664, 5663, 5661 ] }, - { "bg": 5174, "id": "unconnected", "fg": 5669 } + { "id": "center", "bg": 5244, "fg": [ { "weight": 1, "sprite": 5721 }, { "weight": 1, "sprite": 5722 } ] }, + { "id": "corner", "bg": 5244, "fg": [ 5726, 5728, 5727, 5725 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 5736, 5738, 5737, 5735 ] }, + { "id": "edge", "bg": 5244, "fg": [ 5730, 5729 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 5732, 5734, 5733, 5731 ] }, + { "bg": 5244, "id": "unconnected", "fg": 5739 } ] }, { "id": "t_sand_season_winter", "multitile": true, - "fg": 5669, - "bg": 4649, + "fg": 5739, + "bg": 4719, "additional_tiles": [ - { "id": "center", "bg": 4649, "fg": [ { "weight": 1, "sprite": 5651 }, { "weight": 1, "sprite": 5652 } ] }, - { "id": "corner", "bg": 4649, "fg": [ 5656, 5658, 5657, 5655 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 5666, 5668, 5667, 5665 ] }, - { "id": "edge", "bg": 4649, "fg": [ 5660, 5659 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 5662, 5664, 5663, 5661 ] }, - { "bg": 4649, "id": "unconnected", "fg": 5669 } + { "id": "center", "bg": 4719, "fg": [ { "weight": 1, "sprite": 5721 }, { "weight": 1, "sprite": 5722 } ] }, + { "id": "corner", "bg": 4719, "fg": [ 5726, 5728, 5727, 5725 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 5736, 5738, 5737, 5735 ] }, + { "id": "edge", "bg": 4719, "fg": [ 5730, 5729 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 5732, 5734, 5733, 5731 ] }, + { "bg": 4719, "id": "unconnected", "fg": 5739 } ] }, { "id": [ "t_sandmound_season_spring", "t_sandmound_season_summer", "t_sandmound_season_autumn" ], - "fg": 5670 + "fg": 5740 }, - { "id": "t_sandmound_season_winter", "fg": 7270 }, + { "id": "t_sandmound_season_winter", "fg": 7382 }, { "id": "t_scrap_floor", "multitile": true, - "fg": 5701, + "fg": 5771, "additional_tiles": [ - { "id": "center", "fg": [ { "weight": 1, "sprite": 5671 }, { "weight": 1, "sprite": 5672 } ] }, + { "id": "center", "fg": [ { "weight": 1, "sprite": 5741 }, { "weight": 1, "sprite": 5742 } ] }, { "id": "corner", - "fg": [ { "weight": 1, "sprite": [ 5675, 5679, 5673, 5677 ] }, { "weight": 1, "sprite": [ 5676, 5680, 5674, 5678 ] } ] + "fg": [ { "weight": 1, "sprite": [ 5745, 5749, 5743, 5747 ] }, { "weight": 1, "sprite": [ 5746, 5750, 5744, 5748 ] } ] }, { "id": "t_connection", - "fg": [ { "weight": 1, "sprite": [ 5695, 5699, 5697, 5693 ] }, { "weight": 1, "sprite": [ 5696, 5700, 5698, 5694 ] } ] + "fg": [ { "weight": 1, "sprite": [ 5765, 5769, 5767, 5763 ] }, { "weight": 1, "sprite": [ 5766, 5770, 5768, 5764 ] } ] }, { "id": "edge", - "fg": [ { "weight": 1, "sprite": [ 5683, 5681 ] }, { "weight": 1, "sprite": [ 5684, 5682 ] } ] + "fg": [ { "weight": 1, "sprite": [ 5753, 5751 ] }, { "weight": 1, "sprite": [ 5754, 5752 ] } ] }, { "id": "end_piece", - "fg": [ { "weight": 1, "sprite": [ 5687, 5691, 5689, 5685 ] }, { "weight": 1, "sprite": [ 5688, 5692, 5690, 5686 ] } ] + "fg": [ { "weight": 1, "sprite": [ 5757, 5761, 5759, 5755 ] }, { "weight": 1, "sprite": [ 5758, 5762, 5760, 5756 ] } ] }, - { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 5701 }, { "weight": 1, "sprite": 5702 } ] } + { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 5771 }, { "weight": 1, "sprite": 5772 } ] } ] }, { "id": "t_scrap_wall", "multitile": true, - "fg": 5718, + "fg": 5788, "additional_tiles": [ - { "id": "center", "fg": 5703 }, - { "id": "corner", "fg": [ 5705, 5707, 5706, 5704 ] }, - { "id": "t_connection", "fg": [ 5715, 5717, 5716, 5714 ] }, - { "id": "edge", "fg": [ 5709, 5708 ] }, - { "id": "end_piece", "fg": [ 5711, 5713, 5712, 5710 ] }, - { "id": "unconnected", "fg": 5718 } + { "id": "center", "fg": 5773 }, + { "id": "corner", "fg": [ 5775, 5777, 5776, 5774 ] }, + { "id": "t_connection", "fg": [ 5785, 5787, 5786, 5784 ] }, + { "id": "edge", "fg": [ 5779, 5778 ] }, + { "id": "end_piece", "fg": [ 5781, 5783, 5782, 5780 ] }, + { "id": "unconnected", "fg": 5788 } ] }, { "id": "t_screened_porch_wall", "multitile": true, - "fg": 5734, - "bg": 5066, + "fg": 5804, + "bg": 5136, "additional_tiles": [ - { "id": "center", "bg": 5066, "fg": 5719 }, - { "id": "corner", "bg": 5066, "fg": [ 5721, 5723, 5722, 5720 ] }, - { "id": "t_connection", "bg": 5066, "fg": [ 5731, 5733, 5732, 5730 ] }, - { "id": "edge", "bg": 5066, "fg": [ 5725, 5724 ] }, - { "id": "end_piece", "bg": 5066, "fg": [ 5727, 5729, 5728, 5726 ] }, - { "bg": 5066, "id": "unconnected", "fg": [ 5734, 5734 ] } + { "id": "center", "bg": 5136, "fg": 5789 }, + { "id": "corner", "bg": 5136, "fg": [ 5791, 5793, 5792, 5790 ] }, + { "id": "t_connection", "bg": 5136, "fg": [ 5801, 5803, 5802, 5800 ] }, + { "id": "edge", "bg": 5136, "fg": [ 5795, 5794 ] }, + { "id": "end_piece", "bg": 5136, "fg": [ 5797, 5799, 5798, 5796 ] }, + { "bg": 5136, "id": "unconnected", "fg": [ 5804, 5804 ] } ] }, { "id": "t_sewage", "multitile": true, - "fg": 5750, + "fg": 5820, "additional_tiles": [ - { "id": "center", "fg": 5735 }, - { "id": "corner", "fg": [ 5737, 5739, 5738, 5736 ] }, - { "id": "t_connection", "fg": [ 5747, 5749, 5748, 5746 ] }, - { "id": "edge", "fg": [ 5741, 5740 ] }, - { "id": "end_piece", "fg": [ 5743, 5745, 5744, 5742 ] }, - { "id": "unconnected", "fg": [ 5750, 5750 ] } + { "id": "center", "fg": 5805 }, + { "id": "corner", "fg": [ 5807, 5809, 5808, 5806 ] }, + { "id": "t_connection", "fg": [ 5817, 5819, 5818, 5816 ] }, + { "id": "edge", "fg": [ 5811, 5810 ] }, + { "id": "end_piece", "fg": [ 5813, 5815, 5814, 5812 ] }, + { "id": "unconnected", "fg": [ 5820, 5820 ] } ] }, { "id": "t_sewage_pipe", "multitile": true, - "fg": 5766, + "fg": 5836, "additional_tiles": [ - { "id": "center", "fg": 5751 }, - { "id": "corner", "fg": [ 5753, 5755, 5754, 5752 ] }, - { "id": "t_connection", "fg": [ 5763, 5765, 5764, 5762 ] }, - { "id": "edge", "fg": [ 5757, 5756 ] }, - { "id": "end_piece", "fg": [ 5759, 5761, 5760, 5758 ] }, - { "id": "unconnected", "fg": [ 5766, 5766 ] } + { "id": "center", "fg": 5821 }, + { "id": "corner", "fg": [ 5823, 5825, 5824, 5822 ] }, + { "id": "t_connection", "fg": [ 5833, 5835, 5834, 5832 ] }, + { "id": "edge", "fg": [ 5827, 5826 ] }, + { "id": "end_piece", "fg": [ 5829, 5831, 5830, 5828 ] }, + { "id": "unconnected", "fg": [ 5836, 5836 ] } ] }, { "id": "t_shingle_flat_roof", "multitile": true, - "fg": 5782, - "additional_tiles": [ - { "id": "center", "fg": 5767 }, - { "id": "corner", "fg": [ 5769, 5771, 5770, 5768 ] }, - { "id": "t_connection", "fg": [ 5779, 5781, 5780, 5778 ] }, - { "id": "edge", "fg": [ 5773, 5772 ] }, - { "id": "end_piece", "fg": [ 5775, 5777, 5776, 5774 ] }, - { "id": "unconnected", "fg": 5782 } - ] - }, - { "id": "t_shrub", "fg": 5783, "bg": 5169 }, - { "id": "t_shrub_season_summer", "fg": 5783, "bg": 5179 }, - { "id": "t_shrub_season_autumn", "fg": 5783, "bg": 5174 }, - { "id": "t_shrub_season_winter", "fg": 5785, "bg": 4647 }, - { "id": "t_shrub_blackberry", "fg": 5786, "bg": 5169 }, - { "id": "t_shrub_blackberry_harvested", "fg": 5787, "bg": 5179 }, - { "id": "t_shrub_blackberry_season_summer", "fg": 5788, "bg": 5179 }, - { "id": "t_shrub_blackberry_season_autumn", "fg": 5786, "bg": 5174 }, - { "id": "t_shrub_blackberry_season_winter", "fg": 5789, "bg": 4647 }, - { "id": "t_shrub_blueberry", "fg": 5790, "bg": 5169 }, - { "id": "t_shrub_blueberry_harvested", "fg": 5791, "bg": 5179 }, - { "id": "t_shrub_blueberry_season_summer", "fg": 5792, "bg": 5179 }, - { "id": "t_shrub_blueberry_season_autumn", "fg": 5790, "bg": 5174 }, - { "id": "t_shrub_blueberry_season_winter", "fg": 5793, "bg": 4647 }, - { "id": "t_shrub_grape", "fg": 5794, "bg": 5169 }, - { "id": "t_shrub_grape_harvested", "fg": 5795, "bg": 5179 }, - { "id": "t_shrub_grape_season_summer", "fg": 5796, "bg": 5179 }, - { "id": "t_shrub_grape_season_autumn", "fg": 5794, "bg": 5174 }, - { "id": "t_shrub_grape_season_winter", "fg": 5797, "bg": 4647 }, - { "id": "t_shrub_huckleberry", "fg": 5798, "bg": 5169 }, - { "id": "t_shrub_huckleberry_harvested", "fg": 5799, "bg": 5179 }, - { "id": "t_shrub_huckleberry_season_summer", "fg": 5800, "bg": 5179 }, - { "id": "t_shrub_huckleberry_season_autumn", "fg": 5798, "bg": 5174 }, - { "id": "t_shrub_huckleberry_season_winter", "fg": 5801, "bg": 4647 }, - { "id": "t_shrub_hydrangea", "fg": 5803, "bg": 5169 }, - { "id": "t_shrub_hydrangea_harvested", "fg": 5802, "bg": 5169 }, - { "id": "t_shrub_hydrangea_season_summer", "fg": 5804, "bg": 5179 }, - { "id": "t_shrub_hydrangea_season_autumn", "fg": 5803, "bg": 5174 }, - { "id": "t_shrub_hydrangea_season_winter", "fg": 5805, "bg": 4647 }, - { "id": "t_shrub_lilac", "fg": 5807, "bg": 5169 }, - { "id": "t_shrub_lilac_harvested", "fg": 5806, "bg": 5169 }, - { "id": "t_shrub_lilac_season_summer", "fg": 5808, "bg": 5179 }, - { "id": "t_shrub_lilac_season_autumn", "fg": 5806, "bg": 5174 }, - { "id": "t_shrub_lilac_season_winter", "fg": 5809, "bg": 4647 }, - { "id": "t_shrub_peanut", "fg": 5810, "bg": 5169 }, - { "id": "t_shrub_peanut_harvested", "fg": 5812, "bg": 5174 }, - { "id": "t_shrub_peanut_season_summer", "fg": 5810, "bg": 5179 }, - { "id": "t_shrub_peanut_season_autumn", "fg": 5811, "bg": 5174 }, - { "id": "t_shrub_peanut_season_winter", "fg": 5813, "bg": 4647 }, - { "id": "t_shrub_raspberry", "fg": 5814, "bg": 5169 }, - { "id": "t_shrub_raspberry_harvested", "fg": 5815, "bg": 5179 }, - { "id": "t_shrub_raspberry_season_summer", "fg": 5816, "bg": 5179 }, - { "id": "t_shrub_raspberry_season_autumn", "fg": 5814, "bg": 5174 }, - { "id": "t_shrub_raspberry_season_winter", "fg": 5817, "bg": 4647 }, - { "id": "t_shrub_rose", "fg": 5819, "bg": 5169 }, - { "id": "t_shrub_rose_season_summer", "fg": 5819, "bg": 5179 }, - { "id": "t_shrub_rose_harvested", "fg": 5819, "bg": 5174 }, - { "id": "t_shrub_rose_season_autumn", "fg": 5818, "bg": 5174 }, - { "id": "t_shrub_rose_season_winter", "fg": 5820, "bg": 4647 }, - { "id": "t_shrub_strawberry", "fg": 5821, "bg": 5169 }, - { "id": "t_shrub_strawberry_harvested", "fg": 5822, "bg": 5179 }, - { "id": "t_shrub_strawberry_season_summer", "fg": 5823, "bg": 5179 }, - { "id": "t_shrub_strawberry_season_autumn", "fg": 5821, "bg": 5174 }, - { "id": "t_shrub_strawberry_season_winter", "fg": 5824, "bg": 4647 }, + "fg": 5852, + "additional_tiles": [ + { "id": "center", "fg": 5837 }, + { "id": "corner", "fg": [ 5839, 5841, 5840, 5838 ] }, + { "id": "t_connection", "fg": [ 5849, 5851, 5850, 5848 ] }, + { "id": "edge", "fg": [ 5843, 5842 ] }, + { "id": "end_piece", "fg": [ 5845, 5847, 5846, 5844 ] }, + { "id": "unconnected", "fg": 5852 } + ] + }, + { "id": "t_shrub", "fg": 5853, "bg": 5239 }, + { "id": "t_shrub_season_summer", "fg": 5853, "bg": 5249 }, + { "id": "t_shrub_season_autumn", "fg": 5853, "bg": 5244 }, + { "id": "t_shrub_season_winter", "fg": 5855, "bg": 4717 }, + { "id": "t_shrub_blackberry", "fg": 5856, "bg": 5239 }, + { "id": "t_shrub_blackberry_harvested", "fg": 5857, "bg": 5249 }, + { "id": "t_shrub_blackberry_season_summer", "fg": 5858, "bg": 5249 }, + { "id": "t_shrub_blackberry_season_autumn", "fg": 5856, "bg": 5244 }, + { "id": "t_shrub_blackberry_season_winter", "fg": 5859, "bg": 4717 }, + { "id": "t_shrub_blueberry", "fg": 5860, "bg": 5239 }, + { "id": "t_shrub_blueberry_harvested", "fg": 5861, "bg": 5249 }, + { "id": "t_shrub_blueberry_season_summer", "fg": 5862, "bg": 5249 }, + { "id": "t_shrub_blueberry_season_autumn", "fg": 5860, "bg": 5244 }, + { "id": "t_shrub_blueberry_season_winter", "fg": 5863, "bg": 4717 }, + { "id": "t_shrub_grape", "fg": 5864, "bg": 5239 }, + { "id": "t_shrub_grape_harvested", "fg": 5865, "bg": 5249 }, + { "id": "t_shrub_grape_season_summer", "fg": 5866, "bg": 5249 }, + { "id": "t_shrub_grape_season_autumn", "fg": 5864, "bg": 5244 }, + { "id": "t_shrub_grape_season_winter", "fg": 5867, "bg": 4717 }, + { "id": "t_shrub_huckleberry", "fg": 5868, "bg": 5239 }, + { "id": "t_shrub_huckleberry_harvested", "fg": 5869, "bg": 5249 }, + { "id": "t_shrub_huckleberry_season_summer", "fg": 5870, "bg": 5249 }, + { "id": "t_shrub_huckleberry_season_autumn", "fg": 5868, "bg": 5244 }, + { "id": "t_shrub_huckleberry_season_winter", "fg": 5871, "bg": 4717 }, + { "id": "t_shrub_hydrangea", "fg": 5873, "bg": 5239 }, + { "id": "t_shrub_hydrangea_harvested", "fg": 5872, "bg": 5239 }, + { "id": "t_shrub_hydrangea_season_summer", "fg": 5874, "bg": 5249 }, + { "id": "t_shrub_hydrangea_season_autumn", "fg": 5873, "bg": 5244 }, + { "id": "t_shrub_hydrangea_season_winter", "fg": 5875, "bg": 4717 }, + { "id": "t_shrub_lilac", "fg": 5877, "bg": 5239 }, + { "id": "t_shrub_lilac_harvested", "fg": 5876, "bg": 5239 }, + { "id": "t_shrub_lilac_season_summer", "fg": 5878, "bg": 5249 }, + { "id": "t_shrub_lilac_season_autumn", "fg": 5876, "bg": 5244 }, + { "id": "t_shrub_lilac_season_winter", "fg": 5879, "bg": 4717 }, + { "id": "t_shrub_peanut", "fg": 5880, "bg": 5239 }, + { "id": "t_shrub_peanut_harvested", "fg": 5882, "bg": 5244 }, + { "id": "t_shrub_peanut_season_summer", "fg": 5880, "bg": 5249 }, + { "id": "t_shrub_peanut_season_autumn", "fg": 5881, "bg": 5244 }, + { "id": "t_shrub_peanut_season_winter", "fg": 5883, "bg": 4717 }, + { "id": "t_shrub_raspberry", "fg": 5884, "bg": 5239 }, + { "id": "t_shrub_raspberry_harvested", "fg": 5885, "bg": 5249 }, + { "id": "t_shrub_raspberry_season_summer", "fg": 5886, "bg": 5249 }, + { "id": "t_shrub_raspberry_season_autumn", "fg": 5884, "bg": 5244 }, + { "id": "t_shrub_raspberry_season_winter", "fg": 5887, "bg": 4717 }, + { "id": "t_shrub_rose", "fg": 5889, "bg": 5239 }, + { "id": "t_shrub_rose_season_summer", "fg": 5889, "bg": 5249 }, + { "id": "t_shrub_rose_harvested", "fg": 5889, "bg": 5244 }, + { "id": "t_shrub_rose_season_autumn", "fg": 5888, "bg": 5244 }, + { "id": "t_shrub_rose_season_winter", "fg": 5890, "bg": 4717 }, + { "id": "t_shrub_strawberry", "fg": 5891, "bg": 5239 }, + { "id": "t_shrub_strawberry_harvested", "fg": 5892, "bg": 5249 }, + { "id": "t_shrub_strawberry_season_summer", "fg": 5893, "bg": 5249 }, + { "id": "t_shrub_strawberry_season_autumn", "fg": 5891, "bg": 5244 }, + { "id": "t_shrub_strawberry_season_winter", "fg": 5894, "bg": 4717 }, { "id": [ "t_sidewalk", "t_sidewalk_bg_dp" ], "multitile": true, - "fg": 5840, + "fg": 5910, "additional_tiles": [ - { "id": "center", "fg": 5825 }, - { "id": "corner", "fg": [ 5827, 5829, 5828, 5826 ] }, - { "id": "t_connection", "fg": [ 5837, 5839, 5838, 5836 ] }, - { "id": "edge", "fg": [ 5831, 5830 ] }, - { "id": "end_piece", "fg": [ 5833, 5835, 5834, 5832 ] }, - { "id": "unconnected", "fg": 5840 } + { "id": "center", "fg": 5895 }, + { "id": "corner", "fg": [ 5897, 5899, 5898, 5896 ] }, + { "id": "t_connection", "fg": [ 5907, 5909, 5908, 5906 ] }, + { "id": "edge", "fg": [ 5901, 5900 ] }, + { "id": "end_piece", "fg": [ 5903, 5905, 5904, 5902 ] }, + { "id": "unconnected", "fg": 5910 } ] }, - { "id": "t_sidewalk_season_winter", "fg": 4649 }, - { "id": "t_slime", "fg": 5841 }, + { "id": "t_sidewalk_season_winter", "fg": 4719 }, + { "id": "t_slime", "fg": 5911 }, { "id": "t_soil", - "fg": 5857, + "fg": 5927, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5842 }, - { "id": "corner", "fg": [ 5844, 5846, 5845, 5843 ] }, - { "id": "t_connection", "fg": [ 5854, 5856, 5855, 5853 ] }, - { "id": "edge", "fg": [ 5848, 5847 ] }, - { "id": "end_piece", "fg": [ 5850, 5852, 5851, 5849 ] }, - { "id": "unconnected", "fg": [ 5857, 5857 ] } + { "id": "center", "fg": 5912 }, + { "id": "corner", "fg": [ 5914, 5916, 5915, 5913 ] }, + { "id": "t_connection", "fg": [ 5924, 5926, 5925, 5923 ] }, + { "id": "edge", "fg": [ 5918, 5917 ] }, + { "id": "end_piece", "fg": [ 5920, 5922, 5921, 5919 ] }, + { "id": "unconnected", "fg": [ 5927, 5927 ] } ] }, - { "id": "t_splitrail_fencegate_c", "fg": 5858, "bg": 5169 }, - { "id": "t_splitrail_fencegate_o", "fg": 5859, "bg": 5169 }, - { "id": "t_splitrail_fencegate_c_season_summer", "fg": 5858, "bg": 5179 }, - { "id": "t_splitrail_fencegate_o_season_summer", "fg": 5859, "bg": 5179 }, - { "id": "t_splitrail_fencegate_c_season_autumn", "fg": 5858, "bg": 5174 }, - { "id": "t_splitrail_fencegate_o_season_autumn", "fg": 5859, "bg": 5174 }, - { "id": "t_splitrail_fencegate_c_season_winter", "fg": 5858, "bg": 4649 }, - { "id": "t_splitrail_fencegate_o_season_winter", "fg": 5859, "bg": 4649 }, + { "id": "t_splitrail_fencegate_c", "fg": 5928, "bg": 5239 }, + { "id": "t_splitrail_fencegate_o", "fg": 5929, "bg": 5239 }, + { "id": "t_splitrail_fencegate_c_season_summer", "fg": 5928, "bg": 5249 }, + { "id": "t_splitrail_fencegate_o_season_summer", "fg": 5929, "bg": 5249 }, + { "id": "t_splitrail_fencegate_c_season_autumn", "fg": 5928, "bg": 5244 }, + { "id": "t_splitrail_fencegate_o_season_autumn", "fg": 5929, "bg": 5244 }, + { "id": "t_splitrail_fencegate_c_season_winter", "fg": 5928, "bg": 4719 }, + { "id": "t_splitrail_fencegate_o_season_winter", "fg": 5929, "bg": 4719 }, { "id": "t_strconc_floor", "multitile": true, - "fg": 5875, + "fg": 5945, "additional_tiles": [ - { "id": "center", "fg": 5860 }, - { "id": "corner", "fg": [ 5862, 5864, 5863, 5861 ] }, - { "id": "t_connection", "fg": [ 5872, 5874, 5873, 5871 ] }, - { "id": "edge", "fg": [ 5866, 5865 ] }, - { "id": "end_piece", "fg": [ 5868, 5870, 5869, 5867 ] }, - { "id": "unconnected", "fg": 5875 } + { "id": "center", "fg": 5930 }, + { "id": "corner", "fg": [ 5932, 5934, 5933, 5931 ] }, + { "id": "t_connection", "fg": [ 5942, 5944, 5943, 5941 ] }, + { "id": "edge", "fg": [ 5936, 5935 ] }, + { "id": "end_piece", "fg": [ 5938, 5940, 5939, 5937 ] }, + { "id": "unconnected", "fg": 5945 } ] }, - { "id": "t_stump", "fg": 5876, "bg": 5169 }, - { "id": "t_stump_season_summer", "fg": 5876, "bg": 5179 }, - { "id": "t_stump_season_autumn", "fg": 5876, "bg": 5174 }, - { "id": "t_stump_season_winter", "fg": 5876, "bg": 4647 }, - { "id": "f_tatami", "fg": [ { "weight": 100, "sprite": 5877 }, { "weight": 100, "sprite": 5878 } ] }, + { "id": "t_stump", "fg": 5946, "bg": 5239 }, + { "id": "t_stump_season_summer", "fg": 5946, "bg": 5249 }, + { "id": "t_stump_season_autumn", "fg": 5946, "bg": 5244 }, + { "id": "t_stump_season_winter", "fg": 5946, "bg": 4717 }, + { "id": "f_tatami", "fg": [ { "weight": 100, "sprite": 5947 }, { "weight": 100, "sprite": 5948 } ] }, { "id": "t_thconc_floor", "fg": [ - { "weight": 1, "sprite": 5879 }, - { "weight": 1, "sprite": 5880 }, - { "weight": 1, "sprite": 5881 }, - { "weight": 1, "sprite": 5882 }, - { "weight": 1, "sprite": 5883 }, - { "weight": 1, "sprite": 5884 } + { "weight": 1, "sprite": 5949 }, + { "weight": 1, "sprite": 5950 }, + { "weight": 1, "sprite": 5951 }, + { "weight": 1, "sprite": 5952 }, + { "weight": 1, "sprite": 5953 }, + { "weight": 1, "sprite": 5954 } ] }, { "id": "t_thconc_r", "fg": [ - { "weight": 1, "sprite": 5887 }, - { "weight": 1, "sprite": 5888 }, - { "weight": 1, "sprite": 5889 }, - { "weight": 1, "sprite": 5890 }, - { "weight": 1, "sprite": 5891 }, - { "weight": 1, "sprite": 5892 } + { "weight": 1, "sprite": 5957 }, + { "weight": 1, "sprite": 5958 }, + { "weight": 1, "sprite": 5959 }, + { "weight": 1, "sprite": 5960 }, + { "weight": 1, "sprite": 5961 }, + { "weight": 1, "sprite": 5962 } ] }, { "id": "t_thconc_y", "fg": [ - { "weight": 1, "sprite": 5893 }, - { "weight": 1, "sprite": 5894 }, - { "weight": 1, "sprite": 5895 }, - { "weight": 1, "sprite": 5896 }, - { "weight": 1, "sprite": 5897 }, - { "weight": 1, "sprite": 5898 } - ] - }, - { "id": "t_underbrush", "fg": 5899, "bg": 5169 }, - { "id": "t_underbrush_harvested_spring", "fg": 5900, "bg": 5169 }, - { "id": "t_underbrush_season_summer", "fg": 5899, "bg": 5179 }, - { "id": "t_underbrush_harvested_summer", "fg": 5900, "bg": 5179 }, - { "id": "t_underbrush_season_autumn", "fg": 5899, "bg": 5174 }, - { "id": "t_underbrush_harvested_autumn", "fg": 5900, "bg": 5174 }, - { "id": "t_underbrush_harvested_winter", "fg": 5900, "bg": 4647 }, - { "id": "t_underbrush_season_winter", "fg": 5899, "bg": 4647 }, + { "weight": 1, "sprite": 5963 }, + { "weight": 1, "sprite": 5964 }, + { "weight": 1, "sprite": 5965 }, + { "weight": 1, "sprite": 5966 }, + { "weight": 1, "sprite": 5967 }, + { "weight": 1, "sprite": 5968 } + ] + }, + { "id": "t_underbrush", "fg": 5969, "bg": 5239 }, + { "id": "t_underbrush_harvested_spring", "fg": 5970, "bg": 5239 }, + { "id": "t_underbrush_season_summer", "fg": 5969, "bg": 5249 }, + { "id": "t_underbrush_harvested_summer", "fg": 5970, "bg": 5249 }, + { "id": "t_underbrush_season_autumn", "fg": 5969, "bg": 5244 }, + { "id": "t_underbrush_harvested_autumn", "fg": 5970, "bg": 5244 }, + { "id": "t_underbrush_harvested_winter", "fg": 5970, "bg": 4717 }, + { "id": "t_underbrush_season_winter", "fg": 5969, "bg": 4717 }, { "id": "t_wall", "multitile": true, - "fg": 5916, + "fg": 5986, "additional_tiles": [ - { "id": "center", "fg": 5901 }, - { "id": "corner", "fg": [ 5903, 5905, 5904, 5902 ] }, - { "id": "t_connection", "fg": [ 5913, 5915, 5914, 5912 ] }, - { "id": "edge", "fg": [ 5907, 5906 ] }, - { "id": "end_piece", "fg": [ 5909, 5911, 5910, 5908 ] }, - { "id": "unconnected", "fg": 5916 } + { "id": "center", "fg": 5971 }, + { "id": "corner", "fg": [ 5973, 5975, 5974, 5972 ] }, + { "id": "t_connection", "fg": [ 5983, 5985, 5984, 5982 ] }, + { "id": "edge", "fg": [ 5977, 5976 ] }, + { "id": "end_piece", "fg": [ 5979, 5981, 5980, 5978 ] }, + { "id": "unconnected", "fg": 5986 } ] }, { "id": "t_wall_b", "multitile": true, - "fg": 5932, + "fg": 6002, "additional_tiles": [ - { "id": "center", "fg": 5917 }, - { "id": "corner", "fg": [ 5919, 5921, 5920, 5918 ] }, - { "id": "t_connection", "fg": [ 5929, 5931, 5930, 5928 ] }, - { "id": "edge", "fg": [ 5923, 5922 ] }, - { "id": "end_piece", "fg": [ 5925, 5927, 5926, 5924 ] }, - { "id": "unconnected", "fg": 5932 } + { "id": "center", "fg": 5987 }, + { "id": "corner", "fg": [ 5989, 5991, 5990, 5988 ] }, + { "id": "t_connection", "fg": [ 5999, 6001, 6000, 5998 ] }, + { "id": "edge", "fg": [ 5993, 5992 ] }, + { "id": "end_piece", "fg": [ 5995, 5997, 5996, 5994 ] }, + { "id": "unconnected", "fg": 6002 } ] }, { "id": "t_wall_g", "multitile": true, - "fg": 5948, + "fg": 6018, "additional_tiles": [ - { "id": "center", "fg": 5933 }, - { "id": "corner", "fg": [ 5935, 5937, 5936, 5934 ] }, - { "id": "t_connection", "fg": [ 5945, 5947, 5946, 5944 ] }, - { "id": "edge", "fg": [ 5939, 5938 ] }, - { "id": "end_piece", "fg": [ 5941, 5943, 5942, 5940 ] }, - { "id": "unconnected", "fg": 5948 } + { "id": "center", "fg": 6003 }, + { "id": "corner", "fg": [ 6005, 6007, 6006, 6004 ] }, + { "id": "t_connection", "fg": [ 6015, 6017, 6016, 6014 ] }, + { "id": "edge", "fg": [ 6009, 6008 ] }, + { "id": "end_piece", "fg": [ 6011, 6013, 6012, 6010 ] }, + { "id": "unconnected", "fg": 6018 } ] }, { "id": [ "t_wall_glass", "t_wall_glass_alarm" ], "multitile": true, - "fg": 5964, + "fg": 6034, "additional_tiles": [ - { "id": "center", "fg": 5949 }, - { "id": "corner", "fg": [ 5951, 5953, 5952, 5950 ] }, - { "id": "t_connection", "fg": [ 5961, 5963, 5962, 5960 ] }, - { "id": "edge", "fg": [ 5955, 5954 ] }, - { "id": "end_piece", "fg": [ 5957, 5959, 5958, 5956 ] }, - { "id": "unconnected", "fg": 5964 } + { "id": "center", "fg": 6019 }, + { "id": "corner", "fg": [ 6021, 6023, 6022, 6020 ] }, + { "id": "t_connection", "fg": [ 6031, 6033, 6032, 6030 ] }, + { "id": "edge", "fg": [ 6025, 6024 ] }, + { "id": "end_piece", "fg": [ 6027, 6029, 6028, 6026 ] }, + { "id": "unconnected", "fg": 6034 } ] }, { "id": "t_wall_log", "multitile": true, - "fg": 5980, - "bg": 5169, + "fg": 6050, + "bg": 5239, "additional_tiles": [ - { "id": "center", "fg": 5965 }, - { "id": "corner", "fg": [ 5967, 5969, 5968, 5966 ] }, - { "id": "t_connection", "fg": [ 5977, 5979, 5978, 5976 ] }, - { "id": "edge", "bg": 5169, "fg": [ 5971, 5970 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 5973, 5975, 5974, 5972 ] }, - { "bg": 5169, "id": "unconnected", "fg": 5980 } + { "id": "center", "fg": 6035 }, + { "id": "corner", "fg": [ 6037, 6039, 6038, 6036 ] }, + { "id": "t_connection", "fg": [ 6047, 6049, 6048, 6046 ] }, + { "id": "edge", "bg": 5239, "fg": [ 6041, 6040 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 6043, 6045, 6044, 6042 ] }, + { "bg": 5239, "id": "unconnected", "fg": 6050 } ] }, { "id": "t_wall_metal", - "fg": 5996, + "fg": 6066, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5981 }, - { "id": "corner", "fg": [ 5983, 5985, 5984, 5982 ] }, - { "id": "t_connection", "fg": [ 5993, 5995, 5994, 5992 ] }, - { "id": "edge", "fg": [ 5987, 5986 ] }, - { "id": "end_piece", "fg": [ 5989, 5991, 5990, 5988 ] }, - { "id": "unconnected", "fg": [ 5996, 5996 ] } + { "id": "center", "fg": 6051 }, + { "id": "corner", "fg": [ 6053, 6055, 6054, 6052 ] }, + { "id": "t_connection", "fg": [ 6063, 6065, 6064, 6062 ] }, + { "id": "edge", "fg": [ 6057, 6056 ] }, + { "id": "end_piece", "fg": [ 6059, 6061, 6060, 6058 ] }, + { "id": "unconnected", "fg": [ 6066, 6066 ] } ] }, { "id": "t_wall_metal_corrugated", - "fg": 6012, + "fg": 6082, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5997 }, - { "id": "corner", "fg": [ 5999, 6001, 6000, 5998 ] }, - { "id": "t_connection", "fg": [ 6009, 6011, 6010, 6008 ] }, - { "id": "edge", "fg": [ 6003, 6002 ] }, - { "id": "end_piece", "fg": [ 6005, 6007, 6006, 6004 ] }, - { "id": "unconnected", "fg": [ 6012, 6012 ] } + { "id": "center", "fg": 6067 }, + { "id": "corner", "fg": [ 6069, 6071, 6070, 6068 ] }, + { "id": "t_connection", "fg": [ 6079, 6081, 6080, 6078 ] }, + { "id": "edge", "fg": [ 6073, 6072 ] }, + { "id": "end_piece", "fg": [ 6075, 6077, 6076, 6074 ] }, + { "id": "unconnected", "fg": [ 6082, 6082 ] } ] }, { "id": "t_wall_p", "multitile": true, - "fg": 6028, + "fg": 6098, "additional_tiles": [ - { "id": "center", "fg": 6013 }, - { "id": "corner", "fg": [ 6015, 6017, 6016, 6014 ] }, - { "id": "t_connection", "fg": [ 6025, 6027, 6026, 6024 ] }, - { "id": "edge", "fg": [ 6019, 6018 ] }, - { "id": "end_piece", "fg": [ 6021, 6023, 6022, 6020 ] }, - { "id": "unconnected", "fg": 6028 } + { "id": "center", "fg": 6083 }, + { "id": "corner", "fg": [ 6085, 6087, 6086, 6084 ] }, + { "id": "t_connection", "fg": [ 6095, 6097, 6096, 6094 ] }, + { "id": "edge", "fg": [ 6089, 6088 ] }, + { "id": "end_piece", "fg": [ 6091, 6093, 6092, 6090 ] }, + { "id": "unconnected", "fg": 6098 } ] }, { "id": "t_wall_r", "multitile": true, - "fg": 6044, + "fg": 6114, "additional_tiles": [ - { "id": "center", "fg": 6029 }, - { "id": "corner", "fg": [ 6031, 6033, 6032, 6030 ] }, - { "id": "t_connection", "fg": [ 6041, 6043, 6042, 6040 ] }, - { "id": "edge", "fg": [ 6035, 6034 ] }, - { "id": "end_piece", "fg": [ 6037, 6039, 6038, 6036 ] }, - { "id": "unconnected", "fg": 6044 } + { "id": "center", "fg": 6099 }, + { "id": "corner", "fg": [ 6101, 6103, 6102, 6100 ] }, + { "id": "t_connection", "fg": [ 6111, 6113, 6112, 6110 ] }, + { "id": "edge", "fg": [ 6105, 6104 ] }, + { "id": "end_piece", "fg": [ 6107, 6109, 6108, 6106 ] }, + { "id": "unconnected", "fg": 6114 } ] }, { "id": "t_wall_rammed_earth", - "fg": 6060, + "fg": 6130, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6045 }, - { "id": "corner", "fg": [ 6047, 6049, 6048, 6046 ] }, - { "id": "t_connection", "fg": [ 6057, 6059, 6058, 6056 ] }, - { "id": "edge", "fg": [ 6051, 6050 ] }, - { "id": "end_piece", "fg": [ 6053, 6055, 6054, 6052 ] }, - { "id": "unconnected", "fg": [ 6060, 6060 ] } + { "id": "center", "fg": 6115 }, + { "id": "corner", "fg": [ 6117, 6119, 6118, 6116 ] }, + { "id": "t_connection", "fg": [ 6127, 6129, 6128, 6126 ] }, + { "id": "edge", "fg": [ 6121, 6120 ] }, + { "id": "end_piece", "fg": [ 6123, 6125, 6124, 6122 ] }, + { "id": "unconnected", "fg": [ 6130, 6130 ] } ] }, { "id": "t_wall_resin", "multitile": true, - "fg": 6078, + "fg": 6148, "additional_tiles": [ - { "id": "center", "fg": 6063 }, - { "id": "corner", "fg": [ 6065, 6067, 6066, 6064 ] }, - { "id": "t_connection", "fg": [ 6075, 6077, 6076, 6074 ] }, - { "id": "edge", "fg": [ 6069, 6068 ] }, - { "id": "end_piece", "fg": [ 6071, 6073, 6072, 6070 ] }, - { "id": "unconnected", "fg": 6078 } + { "id": "center", "fg": 6133 }, + { "id": "corner", "fg": [ 6135, 6137, 6136, 6134 ] }, + { "id": "t_connection", "fg": [ 6145, 6147, 6146, 6144 ] }, + { "id": "edge", "fg": [ 6139, 6138 ] }, + { "id": "end_piece", "fg": [ 6141, 6143, 6142, 6140 ] }, + { "id": "unconnected", "fg": 6148 } ] }, - { "id": "t_resin_hole_c", "fg": 6061 }, - { "id": "t_resin_hole_o", "fg": 6062 }, + { "id": "t_resin_hole_c", "fg": 6131 }, + { "id": "t_resin_hole_o", "fg": 6132 }, { "id": "t_wall_w", "multitile": true, - "fg": 6095, + "fg": 6165, "additional_tiles": [ - { "id": "center", "fg": 6080 }, - { "id": "corner", "fg": [ 6082, 6084, 6083, 6081 ] }, - { "id": "t_connection", "fg": [ 6092, 6094, 6093, 6091 ] }, - { "id": "edge", "fg": [ 6086, 6085 ] }, - { "id": "end_piece", "fg": [ 6088, 6090, 6089, 6087 ] }, - { "id": "unconnected", "fg": 6095 } + { "id": "center", "fg": 6150 }, + { "id": "corner", "fg": [ 6152, 6154, 6153, 6151 ] }, + { "id": "t_connection", "fg": [ 6162, 6164, 6163, 6161 ] }, + { "id": "edge", "fg": [ 6156, 6155 ] }, + { "id": "end_piece", "fg": [ 6158, 6160, 6159, 6157 ] }, + { "id": "unconnected", "fg": 6165 } ] }, { "id": [ "t_wall_wood", "t_wall_wood_chipped", "t_wall_wood_broken" ], "multitile": true, - "fg": 6111, + "fg": 6181, "additional_tiles": [ - { "id": "center", "fg": 6096 }, - { "id": "corner", "fg": [ 6098, 6100, 6099, 6097 ] }, - { "id": "t_connection", "fg": [ 6108, 6110, 6109, 6107 ] }, - { "id": "edge", "fg": [ 6102, 6101 ] }, - { "id": "end_piece", "fg": [ 6104, 6106, 6105, 6103 ] }, - { "id": "unconnected", "fg": 6111 } + { "id": "center", "fg": 6166 }, + { "id": "corner", "fg": [ 6168, 6170, 6169, 6167 ] }, + { "id": "t_connection", "fg": [ 6178, 6180, 6179, 6177 ] }, + { "id": "edge", "fg": [ 6172, 6171 ] }, + { "id": "end_piece", "fg": [ 6174, 6176, 6175, 6173 ] }, + { "id": "unconnected", "fg": 6181 } ] }, { "id": "t_wall_y", "multitile": true, - "fg": 6127, + "fg": 6197, "additional_tiles": [ - { "id": "center", "fg": 6112 }, - { "id": "corner", "fg": [ 6114, 6116, 6115, 6113 ] }, - { "id": "t_connection", "fg": [ 6124, 6126, 6125, 6123 ] }, - { "id": "edge", "fg": [ 6118, 6117 ] }, - { "id": "end_piece", "fg": [ 6120, 6122, 6121, 6119 ] }, - { "id": "unconnected", "fg": 6127 } + { "id": "center", "fg": 6182 }, + { "id": "corner", "fg": [ 6184, 6186, 6185, 6183 ] }, + { "id": "t_connection", "fg": [ 6194, 6196, 6195, 6193 ] }, + { "id": "edge", "fg": [ 6188, 6187 ] }, + { "id": "end_piece", "fg": [ 6190, 6192, 6191, 6189 ] }, + { "id": "unconnected", "fg": 6197 } ] }, { "id": [ "t_water_dp", "t_swater_dp" ], "multitile": true, - "fg": 6146, - "bg": 5169, + "fg": 6216, + "bg": 5239, "additional_tiles": [ { "id": "center", - "bg": 5169, + "bg": 5239, "fg": [ - { "weight": 1, "sprite": 6128 }, - { "weight": 1, "sprite": 6129 }, - { "weight": 1, "sprite": 6130 }, - { "weight": 1, "sprite": 6131 } + { "weight": 1, "sprite": 6198 }, + { "weight": 1, "sprite": 6199 }, + { "weight": 1, "sprite": 6200 }, + { "weight": 1, "sprite": 6201 } ] }, - { "id": "corner", "bg": 5169, "fg": [ 6133, 6135, 6134, 6132 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 6143, 6145, 6144, 6142 ] }, - { "id": "edge", "bg": 5169, "fg": [ 6137, 6136 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 6139, 6141, 6140, 6138 ] }, - { "bg": 5169, "id": "unconnected", "fg": 6146 } + { "id": "corner", "bg": 5239, "fg": [ 6203, 6205, 6204, 6202 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 6213, 6215, 6214, 6212 ] }, + { "id": "edge", "bg": 5239, "fg": [ 6207, 6206 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 6209, 6211, 6210, 6208 ] }, + { "bg": 5239, "id": "unconnected", "fg": 6216 } ] }, { "id": [ "t_water_dp_season_summer", "t_swater_dp_season_summer" ], "multitile": true, - "fg": 6146, - "bg": 5179, + "fg": 6216, + "bg": 5249, "additional_tiles": [ { "id": "center", - "bg": 5179, - "fg": [ { "weight": 1, "sprite": 6128 }, { "weight": 1, "sprite": 6129 }, { "weight": 1, "sprite": 6130 } ] + "bg": 5249, + "fg": [ { "weight": 1, "sprite": 6198 }, { "weight": 1, "sprite": 6199 }, { "weight": 1, "sprite": 6200 } ] }, - { "id": "corner", "bg": 5179, "fg": [ 6133, 6135, 6134, 6132 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 6143, 6145, 6144, 6142 ] }, - { "id": "edge", "bg": 5179, "fg": [ 6137, 6136 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 6139, 6141, 6140, 6138 ] }, - { "bg": 5179, "id": "unconnected", "fg": 6146 } + { "id": "corner", "bg": 5249, "fg": [ 6203, 6205, 6204, 6202 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 6213, 6215, 6214, 6212 ] }, + { "id": "edge", "bg": 5249, "fg": [ 6207, 6206 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 6209, 6211, 6210, 6208 ] }, + { "bg": 5249, "id": "unconnected", "fg": 6216 } ] }, { "id": [ "t_water_dp_season_autumn", "t_swater_dp_season_autumn" ], "multitile": true, - "fg": 6146, - "bg": 5174, + "fg": 6216, + "bg": 5244, "additional_tiles": [ { "id": "center", - "bg": 5174, - "fg": [ { "weight": 1, "sprite": 6128 }, { "weight": 1, "sprite": 6129 }, { "weight": 1, "sprite": 6130 } ] + "bg": 5244, + "fg": [ { "weight": 1, "sprite": 6198 }, { "weight": 1, "sprite": 6199 }, { "weight": 1, "sprite": 6200 } ] }, - { "id": "corner", "bg": 5174, "fg": [ 6133, 6135, 6134, 6132 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 6143, 6145, 6144, 6142 ] }, - { "id": "edge", "bg": 5174, "fg": [ 6137, 6136 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 6139, 6141, 6140, 6138 ] }, - { "bg": 5174, "id": "unconnected", "fg": 6146 } + { "id": "corner", "bg": 5244, "fg": [ 6203, 6205, 6204, 6202 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 6213, 6215, 6214, 6212 ] }, + { "id": "edge", "bg": 5244, "fg": [ 6207, 6206 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 6209, 6211, 6210, 6208 ] }, + { "bg": 5244, "id": "unconnected", "fg": 6216 } ] }, { "id": [ "t_water_dp_season_winter", "t_swater_dp_season_winter" ], "multitile": true, - "fg": 6146, - "bg": 4649, + "fg": 6216, + "bg": 4719, "additional_tiles": [ { "id": "center", - "bg": 4649, - "fg": [ { "weight": 1, "sprite": 6128 }, { "weight": 1, "sprite": 6129 }, { "weight": 1, "sprite": 6130 } ] + "bg": 4719, + "fg": [ { "weight": 1, "sprite": 6198 }, { "weight": 1, "sprite": 6199 }, { "weight": 1, "sprite": 6200 } ] }, - { "id": "corner", "bg": 4649, "fg": [ 6133, 6135, 6134, 6132 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 6143, 6145, 6144, 6142 ] }, - { "id": "edge", "bg": 4649, "fg": [ 6137, 6136 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 6139, 6141, 6140, 6138 ] }, - { "bg": 4649, "id": "unconnected", "fg": 6146 } + { "id": "corner", "bg": 4719, "fg": [ 6203, 6205, 6204, 6202 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 6213, 6215, 6214, 6212 ] }, + { "id": "edge", "bg": 4719, "fg": [ 6207, 6206 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 6209, 6211, 6210, 6208 ] }, + { "bg": 4719, "id": "unconnected", "fg": 6216 } ] }, { "id": "t_water_hot", - "fg": 6162, - "bg": 5169, + "fg": 6232, + "bg": 5239, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6147, "bg": 5169 }, - { "id": "corner", "fg": [ 6149, 6151, 6150, 6148 ], "bg": 5169 }, - { "id": "t_connection", "fg": [ 6159, 6161, 6160, 6158 ], "bg": 5169 }, - { "id": "edge", "fg": [ 6153, 6152 ], "bg": 5169 }, - { "id": "end_piece", "fg": [ 6155, 6157, 6156, 6154 ], "bg": 5169 }, - { "id": "unconnected", "fg": [ 6162, 6162 ], "bg": 5169 } + { "id": "center", "fg": 6217, "bg": 5239 }, + { "id": "corner", "fg": [ 6219, 6221, 6220, 6218 ], "bg": 5239 }, + { "id": "t_connection", "fg": [ 6229, 6231, 6230, 6228 ], "bg": 5239 }, + { "id": "edge", "fg": [ 6223, 6222 ], "bg": 5239 }, + { "id": "end_piece", "fg": [ 6225, 6227, 6226, 6224 ], "bg": 5239 }, + { "id": "unconnected", "fg": [ 6232, 6232 ], "bg": 5239 } ] }, { "id": "t_water_hot_season_summer", - "fg": 6162, - "bg": 5179, + "fg": 6232, + "bg": 5249, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6147, "bg": 5179 }, - { "id": "corner", "fg": [ 6149, 6151, 6150, 6148 ], "bg": 5179 }, - { "id": "t_connection", "fg": [ 6159, 6161, 6160, 6158 ], "bg": 5179 }, - { "id": "edge", "fg": [ 6153, 6152 ], "bg": 5179 }, - { "id": "end_piece", "fg": [ 6155, 6157, 6156, 6154 ], "bg": 5179 }, - { "id": "unconnected", "fg": [ 6162, 6162 ], "bg": 5179 } + { "id": "center", "fg": 6217, "bg": 5249 }, + { "id": "corner", "fg": [ 6219, 6221, 6220, 6218 ], "bg": 5249 }, + { "id": "t_connection", "fg": [ 6229, 6231, 6230, 6228 ], "bg": 5249 }, + { "id": "edge", "fg": [ 6223, 6222 ], "bg": 5249 }, + { "id": "end_piece", "fg": [ 6225, 6227, 6226, 6224 ], "bg": 5249 }, + { "id": "unconnected", "fg": [ 6232, 6232 ], "bg": 5249 } ] }, { "id": "t_water_hot_season_autumn", - "fg": 6162, - "bg": 5174, + "fg": 6232, + "bg": 5244, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6147, "bg": 5174 }, - { "id": "corner", "fg": [ 6149, 6151, 6150, 6148 ], "bg": 5174 }, - { "id": "t_connection", "fg": [ 6159, 6161, 6160, 6158 ], "bg": 5174 }, - { "id": "edge", "fg": [ 6153, 6152 ], "bg": 5174 }, - { "id": "end_piece", "fg": [ 6155, 6157, 6156, 6154 ], "bg": 5174 }, - { "id": "unconnected", "fg": [ 6162, 6162 ], "bg": 5174 } + { "id": "center", "fg": 6217, "bg": 5244 }, + { "id": "corner", "fg": [ 6219, 6221, 6220, 6218 ], "bg": 5244 }, + { "id": "t_connection", "fg": [ 6229, 6231, 6230, 6228 ], "bg": 5244 }, + { "id": "edge", "fg": [ 6223, 6222 ], "bg": 5244 }, + { "id": "end_piece", "fg": [ 6225, 6227, 6226, 6224 ], "bg": 5244 }, + { "id": "unconnected", "fg": [ 6232, 6232 ], "bg": 5244 } ] }, { "id": "t_water_hot_season_winter", - "fg": 6162, - "bg": 4649, + "fg": 6232, + "bg": 4719, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6147, "bg": 4649 }, - { "id": "corner", "fg": [ 6149, 6151, 6150, 6148 ], "bg": 4649 }, - { "id": "t_connection", "fg": [ 6159, 6161, 6160, 6158 ], "bg": 4649 }, - { "id": "edge", "fg": [ 6153, 6152 ], "bg": 4649 }, - { "id": "end_piece", "fg": [ 6155, 6157, 6156, 6154 ], "bg": 4649 }, - { "id": "unconnected", "fg": [ 6162, 6162 ], "bg": 4649 } + { "id": "center", "fg": 6217, "bg": 4719 }, + { "id": "corner", "fg": [ 6219, 6221, 6220, 6218 ], "bg": 4719 }, + { "id": "t_connection", "fg": [ 6229, 6231, 6230, 6228 ], "bg": 4719 }, + { "id": "edge", "fg": [ 6223, 6222 ], "bg": 4719 }, + { "id": "end_piece", "fg": [ 6225, 6227, 6226, 6224 ], "bg": 4719 }, + { "id": "unconnected", "fg": [ 6232, 6232 ], "bg": 4719 } ] }, { "id": [ "t_water_moving_dp", "t_swater_moving_dp" ], "multitile": true, - "fg": 6179, - "bg": 5169, + "fg": 6249, + "bg": 5239, "additional_tiles": [ - { "id": "center", "bg": 5169, "fg": [ { "weight": 1, "sprite": 6163 }, { "weight": 1, "sprite": 6164 } ] }, - { "id": "corner", "bg": 5169, "fg": [ 6166, 6168, 6167, 6165 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 6176, 6178, 6177, 6175 ] }, - { "id": "edge", "bg": 5169, "fg": [ 6170, 6169 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 6172, 6174, 6173, 6171 ] }, - { "bg": 5169, "id": "unconnected", "fg": 6179 } + { "id": "center", "bg": 5239, "fg": [ { "weight": 1, "sprite": 6233 }, { "weight": 1, "sprite": 6234 } ] }, + { "id": "corner", "bg": 5239, "fg": [ 6236, 6238, 6237, 6235 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 6246, 6248, 6247, 6245 ] }, + { "id": "edge", "bg": 5239, "fg": [ 6240, 6239 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 6242, 6244, 6243, 6241 ] }, + { "bg": 5239, "id": "unconnected", "fg": 6249 } ] }, { "id": [ "t_water_moving_dp_season_summer", "t_swater_moving_dp_season_summer" ], "multitile": true, - "fg": 6179, - "bg": 5179, + "fg": 6249, + "bg": 5249, "additional_tiles": [ - { "id": "center", "bg": 5179, "fg": [ { "weight": 1, "sprite": 6163 }, { "weight": 1, "sprite": 6164 } ] }, - { "id": "corner", "bg": 5179, "fg": [ 6166, 6168, 6167, 6165 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 6176, 6178, 6177, 6175 ] }, - { "id": "edge", "bg": 5179, "fg": [ 6170, 6169 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 6172, 6174, 6173, 6171 ] }, - { "bg": 5179, "id": "unconnected", "fg": 6179 } + { "id": "center", "bg": 5249, "fg": [ { "weight": 1, "sprite": 6233 }, { "weight": 1, "sprite": 6234 } ] }, + { "id": "corner", "bg": 5249, "fg": [ 6236, 6238, 6237, 6235 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 6246, 6248, 6247, 6245 ] }, + { "id": "edge", "bg": 5249, "fg": [ 6240, 6239 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 6242, 6244, 6243, 6241 ] }, + { "bg": 5249, "id": "unconnected", "fg": 6249 } ] }, { "id": [ "t_water_moving_dp_season_autumn", "t_swater_moving_dp_season_autumn" ], "multitile": true, - "fg": 6179, - "bg": 5174, + "fg": 6249, + "bg": 5244, "additional_tiles": [ - { "id": "center", "bg": 5174, "fg": [ { "weight": 1, "sprite": 6163 }, { "weight": 1, "sprite": 6164 } ] }, - { "id": "corner", "bg": 5174, "fg": [ 6166, 6168, 6167, 6165 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 6176, 6178, 6177, 6175 ] }, - { "id": "edge", "bg": 5174, "fg": [ 6170, 6169 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 6172, 6174, 6173, 6171 ] }, - { "bg": 5174, "id": "unconnected", "fg": 6179 } + { "id": "center", "bg": 5244, "fg": [ { "weight": 1, "sprite": 6233 }, { "weight": 1, "sprite": 6234 } ] }, + { "id": "corner", "bg": 5244, "fg": [ 6236, 6238, 6237, 6235 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 6246, 6248, 6247, 6245 ] }, + { "id": "edge", "bg": 5244, "fg": [ 6240, 6239 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 6242, 6244, 6243, 6241 ] }, + { "bg": 5244, "id": "unconnected", "fg": 6249 } ] }, { "id": [ "t_water_moving_dp_season_winter", "t_swater_moving_dp_season_winter" ], "multitile": true, - "fg": 6179, - "bg": 4649, + "fg": 6249, + "bg": 4719, "additional_tiles": [ - { "id": "center", "bg": 4649, "fg": [ { "weight": 1, "sprite": 6163 }, { "weight": 1, "sprite": 6164 } ] }, - { "id": "corner", "bg": 4649, "fg": [ 6166, 6168, 6167, 6165 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 6176, 6178, 6177, 6175 ] }, - { "id": "edge", "bg": 4649, "fg": [ 6170, 6169 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 6172, 6174, 6173, 6171 ] }, - { "bg": 4649, "id": "unconnected", "fg": 6179 } + { "id": "center", "bg": 4719, "fg": [ { "weight": 1, "sprite": 6233 }, { "weight": 1, "sprite": 6234 } ] }, + { "id": "corner", "bg": 4719, "fg": [ 6236, 6238, 6237, 6235 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 6246, 6248, 6247, 6245 ] }, + { "id": "edge", "bg": 4719, "fg": [ 6240, 6239 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 6242, 6244, 6243, 6241 ] }, + { "bg": 4719, "id": "unconnected", "fg": 6249 } ] }, { "id": [ "t_water_moving_sh", "t_swater_moving_sh" ], "multitile": true, - "fg": 6198, - "bg": 5169, + "fg": 6268, + "bg": 5239, "additional_tiles": [ { "id": "center", - "bg": 5169, + "bg": 5239, "fg": [ - { "weight": 1, "sprite": 6180 }, - { "weight": 1, "sprite": 6181 }, - { "weight": 1, "sprite": 6182 }, - { "weight": 1, "sprite": 6183 } + { "weight": 1, "sprite": 6250 }, + { "weight": 1, "sprite": 6251 }, + { "weight": 1, "sprite": 6252 }, + { "weight": 1, "sprite": 6253 } ] }, - { "id": "corner", "bg": 5169, "fg": [ 6185, 6187, 6186, 6184 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 6195, 6197, 6196, 6194 ] }, - { "id": "edge", "bg": 5169, "fg": [ 6189, 6188 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 6191, 6193, 6192, 6190 ] }, - { "bg": 5169, "id": "unconnected", "fg": 6198 } + { "id": "corner", "bg": 5239, "fg": [ 6255, 6257, 6256, 6254 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 6265, 6267, 6266, 6264 ] }, + { "id": "edge", "bg": 5239, "fg": [ 6259, 6258 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 6261, 6263, 6262, 6260 ] }, + { "bg": 5239, "id": "unconnected", "fg": 6268 } ] }, { "id": [ "t_water_moving_sh_season_summer", "t_swater_moving_sh_season_summer" ], "multitile": true, - "fg": 6198, - "bg": 5179, + "fg": 6268, + "bg": 5249, "additional_tiles": [ { "id": "center", - "bg": 5179, + "bg": 5249, "fg": [ - { "weight": 1, "sprite": 6180 }, - { "weight": 1, "sprite": 6181 }, - { "weight": 1, "sprite": 6182 }, - { "weight": 1, "sprite": 6183 } + { "weight": 1, "sprite": 6250 }, + { "weight": 1, "sprite": 6251 }, + { "weight": 1, "sprite": 6252 }, + { "weight": 1, "sprite": 6253 } ] }, - { "id": "corner", "bg": 5179, "fg": [ 6185, 6187, 6186, 6184 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 6195, 6197, 6196, 6194 ] }, - { "id": "edge", "bg": 5179, "fg": [ 6189, 6188 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 6191, 6193, 6192, 6190 ] }, - { "bg": 5179, "id": "unconnected", "fg": 6198 } + { "id": "corner", "bg": 5249, "fg": [ 6255, 6257, 6256, 6254 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 6265, 6267, 6266, 6264 ] }, + { "id": "edge", "bg": 5249, "fg": [ 6259, 6258 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 6261, 6263, 6262, 6260 ] }, + { "bg": 5249, "id": "unconnected", "fg": 6268 } ] }, { "id": [ "t_water_moving_sh_season_autumn", "t_swater_moving_sh_season_autumn" ], "multitile": true, - "fg": 6198, - "bg": 5174, + "fg": 6268, + "bg": 5244, "additional_tiles": [ { "id": "center", - "bg": 5174, + "bg": 5244, "fg": [ - { "weight": 1, "sprite": 6180 }, - { "weight": 1, "sprite": 6181 }, - { "weight": 1, "sprite": 6182 }, - { "weight": 1, "sprite": 6183 } + { "weight": 1, "sprite": 6250 }, + { "weight": 1, "sprite": 6251 }, + { "weight": 1, "sprite": 6252 }, + { "weight": 1, "sprite": 6253 } ] }, - { "id": "corner", "bg": 5174, "fg": [ 6185, 6187, 6186, 6184 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 6195, 6197, 6196, 6194 ] }, - { "id": "edge", "bg": 5174, "fg": [ 6189, 6188 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 6191, 6193, 6192, 6190 ] }, - { "bg": 5174, "id": "unconnected", "fg": 6198 } + { "id": "corner", "bg": 5244, "fg": [ 6255, 6257, 6256, 6254 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 6265, 6267, 6266, 6264 ] }, + { "id": "edge", "bg": 5244, "fg": [ 6259, 6258 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 6261, 6263, 6262, 6260 ] }, + { "bg": 5244, "id": "unconnected", "fg": 6268 } ] }, { "id": [ "t_water_moving_sh_season_winter", "t_swater_moving_sh_season_winter" ], "multitile": true, - "fg": 6198, - "bg": 4649, + "fg": 6268, + "bg": 4719, "additional_tiles": [ { "id": "center", - "bg": 4649, + "bg": 4719, "fg": [ - { "weight": 1, "sprite": 6180 }, - { "weight": 1, "sprite": 6181 }, - { "weight": 1, "sprite": 6182 }, - { "weight": 1, "sprite": 6183 } + { "weight": 1, "sprite": 6250 }, + { "weight": 1, "sprite": 6251 }, + { "weight": 1, "sprite": 6252 }, + { "weight": 1, "sprite": 6253 } ] }, - { "id": "corner", "bg": 4649, "fg": [ 6185, 6187, 6186, 6184 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 6195, 6197, 6196, 6194 ] }, - { "id": "edge", "bg": 4649, "fg": [ 6189, 6188 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 6191, 6193, 6192, 6190 ] }, - { "bg": 4649, "id": "unconnected", "fg": 6198 } + { "id": "corner", "bg": 4719, "fg": [ 6255, 6257, 6256, 6254 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 6265, 6267, 6266, 6264 ] }, + { "id": "edge", "bg": 4719, "fg": [ 6259, 6258 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 6261, 6263, 6262, 6260 ] }, + { "bg": 4719, "id": "unconnected", "fg": 6268 } ] }, { "id": [ "t_water_pool", "t_water_pool_shallow" ], "multitile": true, - "fg": 6213, + "fg": 6283, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 6214 }, { "weight": 1, "sprite": 6215 }, { "weight": 1, "sprite": 6216 } ] + "fg": [ { "weight": 1, "sprite": 6284 }, { "weight": 1, "sprite": 6285 }, { "weight": 1, "sprite": 6286 } ] }, - { "id": "corner", "fg": [ 6200, 6202, 6201, 6199 ] }, - { "id": "t_connection", "fg": [ 6210, 6212, 6211, 6209 ] }, - { "id": "edge", "fg": [ 6204, 6203 ] }, - { "id": "end_piece", "fg": [ 6206, 6208, 6207, 6205 ] }, - { "id": "unconnected", "fg": [ 6213, 6213 ] } + { "id": "corner", "fg": [ 6270, 6272, 6271, 6269 ] }, + { "id": "t_connection", "fg": [ 6280, 6282, 6281, 6279 ] }, + { "id": "edge", "fg": [ 6274, 6273 ] }, + { "id": "end_piece", "fg": [ 6276, 6278, 6277, 6275 ] }, + { "id": "unconnected", "fg": [ 6283, 6283 ] } ] }, { "id": [ "t_water_sh", "t_swater_sh" ], "multitile": true, - "fg": 6232, - "bg": 5169, + "fg": 6302, + "bg": 5239, "additional_tiles": [ { "id": "center", - "bg": 5169, + "bg": 5239, "fg": [ - { "weight": 1, "sprite": 6214 }, - { "weight": 1, "sprite": 6215 }, - { "weight": 1, "sprite": 6216 }, - { "weight": 1, "sprite": 6217 } + { "weight": 1, "sprite": 6284 }, + { "weight": 1, "sprite": 6285 }, + { "weight": 1, "sprite": 6286 }, + { "weight": 1, "sprite": 6287 } ] }, - { "id": "corner", "bg": 5169, "fg": [ 6219, 6221, 6220, 6218 ] }, - { "id": "t_connection", "bg": 5169, "fg": [ 6229, 6231, 6230, 6228 ] }, - { "id": "edge", "bg": 5169, "fg": [ 6223, 6222 ] }, - { "id": "end_piece", "bg": 5169, "fg": [ 6225, 6227, 6226, 6224 ] }, - { "bg": 5169, "id": "unconnected", "fg": 6232 } + { "id": "corner", "bg": 5239, "fg": [ 6289, 6291, 6290, 6288 ] }, + { "id": "t_connection", "bg": 5239, "fg": [ 6299, 6301, 6300, 6298 ] }, + { "id": "edge", "bg": 5239, "fg": [ 6293, 6292 ] }, + { "id": "end_piece", "bg": 5239, "fg": [ 6295, 6297, 6296, 6294 ] }, + { "bg": 5239, "id": "unconnected", "fg": 6302 } ] }, { "id": [ "t_water_sh_season_summer", "t_swater_sh_season_summer" ], "multitile": true, - "fg": 6232, - "bg": 5179, + "fg": 6302, + "bg": 5249, "additional_tiles": [ { "id": "center", - "bg": 5179, - "fg": [ { "weight": 1, "sprite": 6214 }, { "weight": 1, "sprite": 6215 }, { "weight": 1, "sprite": 6216 } ] + "bg": 5249, + "fg": [ { "weight": 1, "sprite": 6284 }, { "weight": 1, "sprite": 6285 }, { "weight": 1, "sprite": 6286 } ] }, - { "id": "corner", "bg": 5179, "fg": [ 6219, 6221, 6220, 6218 ] }, - { "id": "t_connection", "bg": 5179, "fg": [ 6229, 6231, 6230, 6228 ] }, - { "id": "edge", "bg": 5179, "fg": [ 6223, 6222 ] }, - { "id": "end_piece", "bg": 5179, "fg": [ 6225, 6227, 6226, 6224 ] }, - { "bg": 5179, "id": "unconnected", "fg": 6232 } + { "id": "corner", "bg": 5249, "fg": [ 6289, 6291, 6290, 6288 ] }, + { "id": "t_connection", "bg": 5249, "fg": [ 6299, 6301, 6300, 6298 ] }, + { "id": "edge", "bg": 5249, "fg": [ 6293, 6292 ] }, + { "id": "end_piece", "bg": 5249, "fg": [ 6295, 6297, 6296, 6294 ] }, + { "bg": 5249, "id": "unconnected", "fg": 6302 } ] }, { "id": [ "t_water_sh_season_autumn", "t_swater_sh_season_autumn" ], "multitile": true, - "fg": 6232, - "bg": 5174, + "fg": 6302, + "bg": 5244, "additional_tiles": [ { "id": "center", - "bg": 5174, - "fg": [ { "weight": 1, "sprite": 6214 }, { "weight": 1, "sprite": 6215 }, { "weight": 1, "sprite": 6216 } ] + "bg": 5244, + "fg": [ { "weight": 1, "sprite": 6284 }, { "weight": 1, "sprite": 6285 }, { "weight": 1, "sprite": 6286 } ] }, - { "id": "corner", "bg": 5174, "fg": [ 6219, 6221, 6220, 6218 ] }, - { "id": "t_connection", "bg": 5174, "fg": [ 6229, 6231, 6230, 6228 ] }, - { "id": "edge", "bg": 5174, "fg": [ 6223, 6222 ] }, - { "id": "end_piece", "bg": 5174, "fg": [ 6225, 6227, 6226, 6224 ] }, - { "bg": 5174, "id": "unconnected", "fg": 6232 } + { "id": "corner", "bg": 5244, "fg": [ 6289, 6291, 6290, 6288 ] }, + { "id": "t_connection", "bg": 5244, "fg": [ 6299, 6301, 6300, 6298 ] }, + { "id": "edge", "bg": 5244, "fg": [ 6293, 6292 ] }, + { "id": "end_piece", "bg": 5244, "fg": [ 6295, 6297, 6296, 6294 ] }, + { "bg": 5244, "id": "unconnected", "fg": 6302 } ] }, { "id": [ "t_water_sh_season_winter", "t_swater_sh_season_winter" ], "multitile": true, - "fg": 6232, - "bg": 4649, + "fg": 6302, + "bg": 4719, "additional_tiles": [ { "id": "center", - "bg": 4649, - "fg": [ { "weight": 1, "sprite": 6214 }, { "weight": 1, "sprite": 6215 }, { "weight": 1, "sprite": 6216 } ] + "bg": 4719, + "fg": [ { "weight": 1, "sprite": 6284 }, { "weight": 1, "sprite": 6285 }, { "weight": 1, "sprite": 6286 } ] }, - { "id": "corner", "bg": 4649, "fg": [ 6219, 6221, 6220, 6218 ] }, - { "id": "t_connection", "bg": 4649, "fg": [ 6229, 6231, 6230, 6228 ] }, - { "id": "edge", "bg": 4649, "fg": [ 6223, 6222 ] }, - { "id": "end_piece", "bg": 4649, "fg": [ 6225, 6227, 6226, 6224 ] }, - { "bg": 4649, "id": "unconnected", "fg": 6232 } + { "id": "corner", "bg": 4719, "fg": [ 6289, 6291, 6290, 6288 ] }, + { "id": "t_connection", "bg": 4719, "fg": [ 6299, 6301, 6300, 6298 ] }, + { "id": "edge", "bg": 4719, "fg": [ 6293, 6292 ] }, + { "id": "end_piece", "bg": 4719, "fg": [ 6295, 6297, 6296, 6294 ] }, + { "bg": 4719, "id": "unconnected", "fg": 6302 } ] }, - { "id": [ "t_window", "t_window_alarm" ], "fg": 6233 }, - { "id": "t_window_empty", "fg": 6236 }, - { "id": "t_window_domestic", "fg": 6234 }, - { "id": "t_window_open", "fg": 6240 }, - { "id": "t_window_no_curtains", "fg": 6237 }, - { "id": "t_window_no_curtains_open", "fg": 6238 }, - { "id": "t_woodchips", "fg": 6242 }, - { "id": "t_woodchips_season_winter", "fg": 4649 }, + { "id": [ "t_window", "t_window_alarm" ], "fg": 6303 }, + { "id": "t_window_empty", "fg": 6306 }, + { "id": "t_window_domestic", "fg": 6304 }, + { "id": "t_window_open", "fg": 6310 }, + { "id": "t_window_no_curtains", "fg": 6307 }, + { "id": "t_window_no_curtains_open", "fg": 6308 }, + { "id": "t_woodchips", "fg": 6312 }, + { "id": "t_woodchips_season_winter", "fg": 4719 }, { "id": [ "tr_downspout_funnel", "tr_pit", "tr_lava", "tr_ledge", "tr_glass_pit", "tr_spike_pit" ], - "fg": 2928 - }, - { "id": "tr_goo", "fg": [ { "weight": 2007, "sprite": 6247 }, { "weight": 1, "sprite": 6248 } ] }, - { "id": "tr_nailboard", "fg": 6243, "bg": 3906 }, - { "id": "tr_portal", "fg": 6251 }, - { "id": "tr_tripwire", "fg": 6253 }, + "fg": 2976 + }, + { "id": "tr_caltrops", "fg": 6313, "bg": 6315 }, + { "id": "tr_caltrops_glass", "fg": 6313, "bg": 6316 }, + { "id": "tr_telepad", "fg": 6313, "bg": 6317 }, + { "id": "tr_beartrap", "fg": 6313, "bg": 6318 }, + { "id": "tr_goo", "fg": [ { "weight": 2007, "sprite": 6319 }, { "weight": 1, "sprite": 6320 } ] }, + { "id": "tr_landmine", "fg": 6313, "bg": 6321 }, + { "id": "tr_landmine_buried", "fg": 6313, "bg": 6322 }, + { "id": "tr_nailboard", "fg": 6313, "bg": 6323 }, + { "id": "tr_portal", "fg": 6324 }, + { "id": "tr_tripwire", "fg": 6313, "bg": 6326 }, { "id": [ "vp_forklift_fork" ], - "fg": [ 6256, 6258, 6257, 6255 ], + "fg": [ 6329, 6331, 6330, 6328 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6256, 6258, 6257, 6255 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6329, 6331, 6330, 6328 ] } ] }, { "id": [ "vp_forklift_fork_horizontal_front" ], - "fg": [ 6257, 6255, 6256, 6258 ], + "fg": [ 6330, 6328, 6329, 6331 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6257, 6255, 6256, 6258 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6330, 6328, 6329, 6331 ] } ] }, { "id": "vp_saddle_motor", - "fg": [ 6260, 6262, 6261, 6259 ], + "fg": [ 6333, 6335, 6334, 6332 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6260, 6262, 6261, 6259 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6333, 6335, 6334, 6332 ] } ] }, { "id": [ "vp_wheel_motorbike", "vp_wheel_motorbike_steerable", "vp_wheel_motorbike_or", "vp_wheel_motorbike_or_steerable" ], - "fg": [ 6268, 6270, 6269, 6267 ], + "fg": [ 6341, 6343, 6342, 6340 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6268, 6270, 6269, 6267 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6341, 6343, 6342, 6340 ] } ] }, { "id": [ "vp_wheel_motorbike_rear", "vp_wheel_motorbike_or_rear" ], - "fg": [ 6264, 6266, 6265, 6263 ], + "fg": [ 6337, 6339, 6338, 6336 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6264, 6266, 6265, 6263 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6337, 6339, 6338, 6336 ] } ] }, { "id": [ "vp_wheel_small_scooter", "vp_wheel_small_scooter_steerable" ], - "fg": [ 6276, 6278, 6277, 6275 ], + "fg": [ 6349, 6351, 6350, 6348 ], "rotates": true }, - { "id": "vp_wheel_small_scooter_rear", "fg": [ 6272, 6274, 6273, 6271 ], "rotates": true }, + { "id": "vp_wheel_small_scooter_rear", "fg": [ 6345, 6347, 6346, 6344 ], "rotates": true }, { "id": "vp_battery_charger", - "fg": [ 6279, 6279, 6279, 6279 ], - "bg": 7511, + "fg": [ 6352, 6352, 6352, 6352 ], + "bg": 7623, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6279, 6279, 6279, 6279 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6352, 6352, 6352, 6352 ] } ] }, { "id": "vp_recharge_station", - "fg": [ 6280, 6280, 6280, 6280 ], - "bg": 7511, + "fg": [ 6353, 6353, 6353, 6353 ], + "bg": 7623, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6280, 6280, 6280, 6280 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6353, 6353, 6353, 6353 ] } ] }, { "id": "vp_spike_wood", - "fg": 6281, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 6281 } ] - }, - { "id": "fd_dazzling", "fg": 2929 }, - { "id": "fd_fatigue", "fg": 2930 }, - { "id": "fd_fire", "fg": 2931 }, - { "id": "fd_laser", "fg": 2932 }, - { "id": "fd_plasma", "fg": 2933 }, - { "id": "fd_extinguisher", "fg": 3142 }, - { "id": "fd_fungal_haze", "fg": 3143 }, - { "id": "fd_fungicidal_gas", "fg": 3144 }, - { "id": "fd_hot_air_sauna", "fg": 3145 }, - { "id": "fd_insecticidal_gas", "fg": 3146 }, - { "id": "fd_nuke_gas", "fg": 3147 }, - { "id": "fd_relax_gas", "fg": 3148 }, - { "id": "fd_smoke", "fg": 3149 }, - { "id": "fd_tear_gas", "fg": 3150 }, - { "id": "fd_toxic_gas", "fg": 3151 }, - { "id": "f_target", "fg": 3162 }, - { "id": "f_chest", "fg": 3163 }, - { "id": "f_dive_block", "fg": 3164 }, - { "id": "f_foot_locker", "fg": 3165 }, - { "id": "f_sand_castle", "fg": 3166 }, - { "id": "f_shredder", "fg": 3167 }, - { "id": "f_tourist_table", "fg": 3168 }, - { "id": "f_exodii_pump", "fg": 3175 }, - { "id": "f_beaded_door", "fg": 3199 }, - { "id": "f_beaded_door_o", "fg": 3200 }, - { "id": "f_black_eyed_susan", "fg": 3233 }, - { "id": "f_chimney", "fg": 3265 }, - { "id": "f_curtain", "fg": 3299 }, - { "id": "f_curtain_open", "fg": 3300 }, - { "id": "f_lily", "fg": 3345 }, - { "id": "f_skin_groundsheet", "fg": 3478 }, - { "id": "acidchitin_plate", "fg": 3557 }, - { "id": "acoustic_guitar", "fg": 3558 }, - { "id": "alloy_plate", "fg": 3559 }, - { "id": "armor_lorica", "fg": 3560 }, - { "id": "banjo", "fg": 3561 }, - { "id": "bionic_general", "fg": 3562 }, - { "id": "bodypillow", "fg": 3563 }, - { "id": "bookplate", "fg": 3564 }, - { "id": "bot_copbot", "fg": 3565 }, - { "id": "bot_riotbot", "fg": 3566 }, - { "id": "broken_copbot", "fg": 3567 }, - { "id": "broken_riotbot", "fg": 3568 }, - { "id": "chainmail_hauberk", "fg": 3569 }, - { "id": "char_smoker", "fg": 3570 }, - { "id": "dehydrator", "fg": 3571 }, - { "id": "folding_poncho_on", "fg": 3572 }, - { "id": "gambeson", "fg": 3573 }, - { "id": "glass_sheet", "fg": 3574 }, - { "id": "gown", "fg": 3575 }, - { "id": "guitar_electric", "fg": 3576 }, - { "id": "hand_paddles", "fg": 3578 }, - { "id": "i4_combustion", "fg": 3579 }, - { "id": "inflatable_boat", "fg": 3580 }, - { "id": "inflatable_section", "fg": 3581 }, - { "id": "lawnmower", "fg": 3582 }, - { "id": "mattress", "fg": 3583 }, - { "id": "mil_plate", "fg": 3584 }, - { "id": "rake_plastic", "fg": 3586 }, - { "id": "reinforced_glass_sheet", "fg": 3587 }, - { "id": "robe", "fg": 3588 }, - { "id": "rock_quern", "fg": 3589 }, - { "id": "saxophone", "fg": 3590 }, - { "id": "sheet", "fg": 3591 }, - { "id": "steel_plate", "fg": 3592 }, - { "id": "telepad", "fg": 3593 }, - { "id": "trumpet", "fg": 3594 }, - { "id": "tuba", "fg": 3595 }, - { "id": "tunic", "fg": 3596 }, - { "id": "tunic_rag", "fg": 3597 }, - { "id": "umbrella", "fg": 3598 }, - { "id": "wheel_armor", "fg": 3599 }, - { "id": "wheel_wide", "fg": 3600 }, - { "id": "wheel_wide_or", "fg": 3601 }, - { "id": "10mm_fmj", "fg": 3602 }, - { "id": "120mm_HEAT", "fg": 3603 }, - { "id": "123ln", "fg": 3604 }, - { "id": "12mm", "fg": 3605 }, - { "id": "20x66_beanbag", "fg": 3606 }, - { "id": "20x66_flare", "fg": 3607 }, - { "id": "20x66_flechette", "fg": 3608 }, - { "id": "20x66_frag", "fg": 3609 }, - { "id": "20x66_inc", "fg": 3610 }, - { "id": "20x66_shot", "fg": 3611 }, - { "id": "20x66_slug", "fg": 3612 }, - { "id": "223", "fg": 3613 }, - { "id": "22_cb", "fg": 3614 }, - { "id": "22_fmj", "fg": 3615 }, - { "id": "22_lr", "fg": 3616 }, - { "id": "22_ratshot", "fg": 3617 }, - { "id": "270win_jsp", "fg": 3618 }, - { "id": "3006", "fg": 3619 }, - { "id": "3006_incendiary", "fg": 3620 }, - { "id": "3006fmj", "fg": 3621 }, - { "id": "300_winmag", "fg": 3622 }, - { "id": "300blk", "fg": 3623 }, - { "id": "300blk_ss", "fg": 3624 }, - { "id": "308", "fg": 3625 }, - { "id": "32_acp", "fg": 3626 }, - { "id": "357mag_fmj", "fg": 3627 }, - { "id": "357mag_jhp", "fg": 3628 }, - { "id": "357sig_fmj", "fg": 3629 }, - { "id": "357sig_jhp", "fg": 3630 }, - { "id": "380_FMJ", "fg": 3631 }, - { "id": "380_JHP", "fg": 3632 }, - { "id": "380_p", "fg": 3633 }, - { "id": "38_fmj", "fg": 3634 }, - { "id": "38_special", "fg": 3635 }, - { "id": "38_super", "fg": 3636 }, - { "id": "38super_fmj", "fg": 3637 }, - { "id": "40fmj", "fg": 3638 }, - { "id": "40mm_flashbang", "fg": 3639 }, - { "id": "40mm_incendiary", "fg": 3640 }, - { "id": "40mm_slug", "fg": 3641 }, - { "id": "40sw", "fg": 3642 }, - { "id": "40x46mm_grenade", "fg": 3643 }, - { "id": "40x46mm_m1006", "fg": 3644 }, - { "id": "40x46mm_m433", "fg": 3645 }, - { "id": "40x46mm_m576", "fg": 3646 }, - { "id": "40x46mm_m651", "fg": 3647 }, - { "id": "40x53mm_buckshot_m169", "fg": 3648 }, - { "id": "40x53mm_flechette_m169", "fg": 3649 }, - { "id": "40x53mm_grenade", "fg": 3650 }, - { "id": "40x53mm_m1001", "fg": 3651 }, - { "id": "40x53mm_m430a1", "fg": 3652 }, - { "id": "40x53mm_slug_m169", "fg": 3653 }, - { "id": "410shot_000", "fg": 3654 }, - { "id": "44fmj", "fg": 3655 }, - { "id": "44magnum", "fg": 3656 }, - { "id": "454_Casull", "fg": 3657 }, - { "id": "4570_low", "fg": 3658 }, - { "id": "4570_pen", "fg": 3659 }, - { "id": "4570_sp", "fg": 3660 }, - { "id": "45_acp", "fg": 3661 }, - { "id": "45_jhp", "fg": 3662 }, - { "id": "45_super", "fg": 3663 }, - { "id": "45colt_jhp", "fg": 3664 }, - { "id": "460_fmj", "fg": 3665 }, - { "id": "460_rowland", "fg": 3666 }, - { "id": "46mm", "fg": 3667 }, - { "id": "500_Magnum", "fg": 3668 }, - { "id": "50_incendiary", "fg": 3669 }, - { "id": "50_mk211", "fg": 3670 }, - { "id": "50bmg", "fg": 3671 }, - { "id": "50match", "fg": 3672 }, - { "id": "50ss", "fg": 3673 }, - { "id": "545", "fg": 3674 }, - { "id": "545_ap", "fg": 3675 }, - { "id": "556", "fg": 3676 }, - { "id": "556_incendiary", "fg": 3677 }, - { "id": "57mm", "fg": 3678 }, - { "id": "5x50dart", "fg": 3679 }, - { "id": "5x50heavy", "fg": 3680 }, - { "id": "66mm_HEAT", "fg": 3681 }, - { "id": "700nx", "fg": 3682 }, - { "id": "762_25", "fg": 3683 }, - { "id": "762_25hot", "fg": 3684 }, - { "id": "762_25typeP", "fg": 3685 }, - { "id": "762_51", "fg": 3686 }, - { "id": "762_51_incendiary", "fg": 3687 }, - { "id": "762_54R", "fg": 3688 }, - { "id": "762_m43", "fg": 3689 }, - { "id": "762_m87", "fg": 3690 }, - { "id": "84x246mm_he", "fg": 3691 }, - { "id": "84x246mm_hedp", "fg": 3692 }, - { "id": "84x246mm_smoke", "fg": 3693 }, - { "id": "8mm_bootleg", "fg": 3694 }, - { "id": "8mm_caseless", "fg": 3695 }, - { "id": "8mm_civilian", "fg": 3696 }, - { "id": "8mm_fmj", "fg": 3697 }, - { "id": "8mm_hvp", "fg": 3698 }, - { "id": "8mm_inc", "fg": 3699 }, - { "id": "8mm_jhp", "fg": 3700 }, - { "id": "9mm", "fg": 3701 }, - { "id": "9mmP", "fg": 3702 }, - { "id": "9mmfmj", "fg": 3703 }, - { "id": "9x18mm", "fg": 3704 }, - { "id": "9x18mmP2", "fg": 3705 }, - { "id": "9x18mmfmj", "fg": 3706 }, - { "id": "RPG-7_ammo", "fg": 3707 }, - { "id": "RPG-7_og7v", "fg": 3708 }, - { "id": "RPG-7_pg7vr", "fg": 3709 }, - { "id": "RPG-7_tbg7v", "fg": 3710 }, - { "id": "atgm_heat", "fg": 3711 }, - { "id": "m235tpa", "fg": 3712 }, - { "id": "shot_00", "fg": 3713 }, - { "id": "shot_beanbag", "fg": 3714 }, - { "id": "shot_bird", "fg": 3715 }, - { "id": "shot_dragon", "fg": 3716 }, - { "id": "shot_flechette", "fg": 3717 }, - { "id": "shot_he", "fg": 3718 }, - { "id": "shot_scrap", "fg": 3719 }, - { "id": "shot_slug", "fg": 3720 }, - { "id": "1895sbl", "fg": 3741 }, - { "id": "AT4", "fg": 3742 }, - { "id": "LAW", "fg": 3743 }, - { "id": "M24", "fg": 3744 }, - { "id": "RPG", "fg": 3745 }, - { "id": "USAS_12", "fg": 3746 }, - { "id": "airspeargun", "fg": 3747 }, - { "id": "ak74", "fg": 3749 }, - { "id": "american_180", "fg": 3750 }, - { "id": "an94", "fg": 3751 }, - { "id": "ar10", "fg": 3752 }, - { "id": "ar15", "fg": 3753 }, - { "id": "arx160", "fg": 3754 }, - { "id": "as50", "fg": 3755 }, - { "id": "atgm_launcher", "fg": 3756 }, - { "id": "bbgun", "fg": 3757 }, - { "id": "bfg50", "fg": 3758 }, - { "id": "bh_m89", "fg": 3759 }, - { "id": "blunderbuss", "fg": 3760 }, - { "id": "browning_blr", "fg": 3761 }, - { "id": "chemical_thrower", "fg": 3763 }, - { "id": "coilgun", "fg": 3764 }, - { "id": "colt_lightning", "fg": 3765 }, - { "id": "colt_ro635", "fg": 3766 }, - { "id": "combination_gun", "fg": 3767 }, - { "id": "cx4", "fg": 3768 }, - { "id": "doublespeargun", "fg": 3769 }, - { "id": "emp_gun", "fg": 3770 }, - { "id": "famas", "fg": 3771 }, - { "id": "flamethrower", "fg": 3772 }, - { "id": "fn_fal", "fg": 3773 }, - { "id": "fs2000", "fg": 3774 }, - { "id": "ftk93", "fg": 3775 }, - { "id": "garand", "fg": 3776 }, - { "id": "heavy_rail_rifle", "fg": 3777 }, - { "id": "helsing", "fg": 3778 }, - { "id": "henry_big_boy", "fg": 3779 }, - { "id": "hk417_13", "fg": 3780 }, - { "id": "hk_g3", "fg": 3781 }, - { "id": "hk_g36", "fg": 3782 }, - { "id": "hk_g80", "fg": 3783 }, - { "id": "hk_mp5k", "fg": 3784 }, - { "id": "hk_mp5sd", "fg": 3785 }, - { "id": "iwi_tavor_x95_300blk", "fg": 3786 }, - { "id": "ksg-25", "fg": 3787 }, - { "id": "ksg", "fg": 3788 }, - { "id": "ksub2000", "fg": 3789 }, - { "id": "laser_cannon", "fg": 3790 }, - { "id": "laser_rifle", "fg": 3791 }, - { "id": "lever_shotgun", "fg": 3792 }, - { "id": "longrifle_flintlock", "fg": 3793 }, - { "id": "m107a1", "fg": 3794 }, - { "id": "m110a1", "fg": 3795 }, - { "id": "m134", "fg": 3796 }, - { "id": "m14ebr", "fg": 3797 }, - { "id": "m1903", "fg": 3800 }, - { "id": "m1918", "fg": 3801 }, - { "id": "m1a", "fg": 3802 }, - { "id": "m2010", "fg": 3803 }, - { "id": "m202_flash", "fg": 3804 }, - { "id": "m231pfw", "fg": 3805 }, - { "id": "m240", "fg": 3806 }, - { "id": "m27_assault_rifle_var_h&k416a5", "fg": 3808 }, - { "id": "m27_assault_rifle_var_m27iar", "fg": 3809 }, - { "id": "m27_assault_rifle_var_m38dmr", "fg": 3810 }, - { "id": "m27_assault_rifle_var_scar_l", "fg": 3811 }, - { "id": "m2browning", "fg": 3812 }, - { "id": "m2browning_sawn", "fg": 3813 }, - { "id": "m3_carlgustav", "fg": 3814 }, - { "id": "m4_carbine_var_m4a1", "fg": 3815 }, - { "id": "m4_carlgustav", "fg": 3816 }, - { "id": "m79", "fg": 3818 }, - { "id": "mark19", "fg": 3819 }, - { "id": "marlin_9a", "fg": 3820 }, - { "id": "mininuke_launcher", "fg": 3821 }, - { "id": "mosin44", "fg": 3822 }, - { "id": "mosin44_ebr", "fg": 3823 }, - { "id": "mosin91_30", "fg": 3824 }, - { "id": "mosin91_30_ebr", "fg": 3825 }, - { "id": "mossberg_500", "fg": 3826 }, - { "id": "mossberg_500_var_mossberg_500_security", "fg": 3827 }, - { "id": "mossberg_590", "fg": 3828 }, - { "id": "mossberg_590_var_SPAS_12", "fg": 3829 }, - { "id": "mossberg_930", "fg": 3830 }, - { "id": "mossberg_930_var_m1014", "fg": 3831 }, - { "id": "mp18", "fg": 3832 }, - { "id": "needlegun", "fg": 3834 }, - { "id": "pamd68", "fg": 3835 }, - { "id": "pamd71z", "fg": 3836 }, - { "id": "pipe_combination_gun", "fg": 3837 }, - { "id": "plasma_gun", "fg": 3838 }, - { "id": "plasma_rifle", "fg": 3839 }, - { "id": "ppsh", "fg": 3840 }, - { "id": "rebar_rifle", "fg": 3841 }, - { "id": "remington700_270", "fg": 3842 }, - { "id": "remington_700", "fg": 3843 }, - { "id": "remington_870", "fg": 3844 }, - { "id": "remington_870_breacher", "fg": 3845 }, - { "id": "remington_870_express", "fg": 3846 }, - { "id": "remington_870_var_browning_a5", "fg": 3847 }, - { "id": "remington_870_var_remington_1100", "fg": 3848 }, - { "id": "rifle_flintlock", "fg": 3849 }, - { "id": "rm120c", "fg": 3850 }, - { "id": "rm20", "fg": 3851 }, - { "id": "rm298", "fg": 3852 }, - { "id": "rm451_flamethrower", "fg": 3853 }, - { "id": "rm51_assault_rifle", "fg": 3854 }, - { "id": "rm614_lmg", "fg": 3855 }, - { "id": "rm802", "fg": 3856 }, - { "id": "rm88_battle_rifle", "fg": 3857 }, - { "id": "ruger_1022", "fg": 3858 }, - { "id": "ruger_mini", "fg": 3859 }, - { "id": "saiga_12", "fg": 3860 }, - { "id": "saiga_410", "fg": 3861 }, - { "id": "savage_111f", "fg": 3862 }, - { "id": "scar_h", "fg": 3863 }, - { "id": "sharps", "fg": 3864 }, - { "id": "shotgun_410", "fg": 3865 }, - { "id": "shotgun_d", "fg": 3866 }, - { "id": "shotgun_s", "fg": 3867 }, - { "id": "sig552", "fg": 3868 }, - { "id": "sig_mcx_rattler_sbr", "fg": 3869 }, - { "id": "skorpion_82", "fg": 3870 }, - { "id": "sks", "fg": 3871 }, - { "id": "smg_9mm", "fg": 3873 }, - { "id": "speargun", "fg": 3874 }, - { "id": "sten", "fg": 3875 }, - { "id": "steyr_aug", "fg": 3876 }, - { "id": "surv_rocket_launcher", "fg": 3877 }, - { "id": "survivor_special_700", "fg": 3878 }, - { "id": "tac50", "fg": 3879 }, - { "id": "tavor_12", "fg": 3880 }, - { "id": "tihar", "fg": 3881 }, - { "id": "tommygun", "fg": 3882 }, - { "id": "trex_gun", "fg": 3883 }, - { "id": "weatherby_5", "fg": 3884 }, - { "id": "win70", "fg": 3885 }, - { "id": "winchester_1887", "fg": 3886 }, - { "id": "winchester_1897", "fg": 3887 }, - { "id": "iceaxe", "fg": 3890 }, - { "id": "rifle_case_soft", "fg": 3895 }, - { "id": "rifle_case_soft_2", "fg": 3896 }, - { "id": "rifle_case_soft_leather_2", "fg": 3898 }, - { "id": "rucksack", "fg": 3899 }, - { "id": "compgreatbow", "fg": 3908 }, - { "id": "compositebow", "fg": 3909 }, - { "id": "hybridbow", "fg": 3910 }, - { "id": "longbow", "fg": 3911 }, - { "id": "recurbow", "fg": 3912 }, - { "id": "reflexbow", "fg": 3913 }, - { "id": "reflexrecurvebow", "fg": 3914 }, - { "id": "selfbow", "fg": 3915 }, - { "id": "shortbow", "fg": 3916 }, - { "id": "woodgreatbow", "fg": 3917 }, - { "id": "oxygen_cylinder", "fg": 3922 }, - { "id": "oxygen_tank", "fg": 3923 }, - { "id": "tinyweldtank", "fg": 3924 }, - { "id": "weldtank", "fg": 3925 }, - { "id": "cot", "fg": 3926 }, - { "id": "armguard_soft", "fg": 3927 }, - { "id": "chestwrap_leather", "fg": 3928 }, - { "id": "trenchcoat_leather", "fg": 3929 }, - { "id": "bat_nerf", "fg": 3930 }, - { "id": "golf_bag", "fg": 3931 }, - { "id": "polycarbonate_sheet", "fg": 3932 }, - { "id": "screen_mesh", "fg": 3933 }, - { "id": "bagpipes", "fg": 3934 }, - { "id": "caltrops", "fg": 3935 }, - { "id": "jumper_cable_heavy", "fg": 3936 }, - { "id": "scythe", "fg": 3937 }, - { "id": "motorbike_armor", "fg": 3938 }, - { "id": "rack_test_tube", "fg": 3939 }, - { "id": "bowl_clay", "fg": 3942 }, - { "id": "clay_hydria", "fg": 3943 }, - { "id": "clay_pot", "fg": 3944 }, - { "id": "clay_quern", "fg": 3945 }, - { "id": "clay_watercont", "fg": 3946 }, - { "id": "jug_clay", "fg": 3947 }, - { "id": "bullet_crossbow", "fg": 4011 }, - { "id": "compcrossbow", "fg": 4012 }, - { "id": "compositecrossbow", "fg": 4013 }, - { "id": "crossbow", "fg": 4014 }, - { "id": "hand_crossbow", "fg": 4015 }, - { "id": "huge_crossbow", "fg": 4016 }, - { "id": "rep_crossbow", "fg": 4017 }, - { "id": "amplifier_head", "fg": 4030 }, - { "id": "bindle", "fg": 4031 }, - { "id": "broken_dimensional_anchor", "fg": 4032 }, - { "id": "chainmail_vest", "fg": 4033 }, - { "id": "concrete", "fg": 4034 }, - { "id": "cs_lajatang_off", "fg": 4035 }, - { "id": "dimensional_anchor", "fg": 4036 }, - { "id": "dimensional_anchor_on", "fg": 4037 }, - { "id": "dnd", "fg": 4038 }, - { "id": "g_carpet", "fg": 4039 }, - { "id": "grapnel", "fg": 4040 }, - { "id": "optical_cloak", "fg": 4041 }, - { "id": "p_carpet", "fg": 4042 }, - { "id": "r_carpet", "fg": 4043 }, - { "id": "trimmer_off", "fg": 4044 }, - { "id": "trimmer_on", "fg": 4045 }, - { "id": "tux", "fg": 4046 }, - { "id": "v_scoop_item", "fg": 4047 }, - { "id": "wool_suit", "fg": 4048 }, - { "id": "y_carpet", "fg": 4049 }, - { "id": "multi_cooker", "fg": 4050 }, - { "id": "multi_cooker_filled", "fg": 4051 }, - { "id": "pet_carrier", "fg": 4052 }, - { "id": "manhole_cover", "fg": 4071 }, - { "id": "PR24-extended", "fg": 4077 }, - { "id": "PR24-retracted", "fg": 4078 }, - { "id": "baton-extended", "fg": 4079 }, - { "id": "baton", "fg": 4080 }, - { "id": "guitar_stand", "fg": 4081 }, - { "id": "mic_stand_tall", "fg": 4082 }, - { "id": "mixer_music", "fg": 4083 }, - { "id": "pipe_shotgun", "fg": 4102 }, - { "id": "pool_cue", "fg": 4107 }, - { "id": "bokken", "fg": 4140 }, - { "id": "UPS_off", "fg": 4146 }, - { "id": "hose", "fg": 4147 }, - { "id": "oxy_torch", "fg": 4148 }, - { "id": "picklocks", "fg": 4149 }, - { "id": "f_magic_circle", "fg": 4156 }, - { "id": "mon_dragonfly_naiad", "fg": 4306 }, - { "id": "mon_molebot", "fg": 4359 }, - { "id": "mon_spawn_raptor_electric", "fg": 4367 }, - { "id": "mon_spawn_raptor_shady", "fg": 4368 }, - { "id": "mon_spawn_raptor_unstable", "fg": 4369 }, - { "id": "mon_turret_riot", "fg": 4371 }, - { "id": "footstep", "fg": 4412 }, - { "id": "footstep_above", "fg": 4413 }, - { "id": "footstep_below", "fg": 4414 }, - { "id": "unknown_field", "fg": 4415 }, - { "id": "unknown_furniture", "fg": 4416 }, - { "id": "unknown_item", "fg": 4417 }, - { "id": "unknown_item_AMMO", "fg": 4418 }, - { "id": "unknown_item_ARMOR", "fg": 4419 }, - { "id": "unknown_item_BIONIC", "fg": 4420 }, - { "id": "unknown_item_BOOK", "fg": 4421 }, - { "id": "unknown_item_FOOD", "fg": 4422 }, - { "id": "unknown_item_GUN", "fg": 4423 }, - { "id": "unknown_item_TOOL", "fg": 4424 }, - { "id": "unknown_item_misc", "fg": 4425 }, - { "id": "unknown_terrain", "fg": 4426 }, - { "id": "unknown_trap", "fg": 4427 }, - { "id": "unknown_vehicle_part", "fg": 4428 }, - { "id": "overlay_effect_slimed", "fg": 4439 }, - { "id": "overlay_effect_wet", "fg": 4440 }, - { "id": "overlay_friendly_sees_player", "fg": 4441 }, - { "id": "overlay_hostile_sees_player", "fg": 4442 }, - { "id": "overlay_neutral_sees_player", "fg": 4443 }, - { "id": "overlay_other_sees_player", "fg": 4444 }, - { "id": "zombie_revival_indicator", "fg": 4445 }, - { "id": "overlay_female_mutation_HOOVES", "fg": 4446 }, - { "id": "overlay_male_mutation_HOOVES", "fg": 4447 }, - { "id": "overlay_female_mutation_LEG_TENTACLES", "fg": 4448 }, - { "id": "overlay_male_mutation_LEG_TENTACLES", "fg": 4449 }, - { "id": "overlay_wielded_bfg50", "fg": 4450 }, - { "id": "cemetery_small", "fg": 4472 }, - { "id": "dirt_road_center", "fg": 4475 }, - { "id": "dirt_road_end_piece_e", "fg": 4482 }, - { "id": "dirt_road_end_piece_n", "fg": 4483 }, - { "id": "dirt_road_end_piece_s", "fg": 4484 }, - { "id": "dirt_road_end_piece_w", "fg": 4485 }, - { "id": "dirt_road_unconnected", "fg": 4490 }, - { "id": "hunting_blind", "fg": 4516 }, - { "id": "overmap_horde_3", "fg": 4517 }, - { "id": "overmap_horde_4", "fg": 4518 }, - { "id": "overmap_horde_5", "fg": 4519 }, - { "id": "overmap_horde_6", "fg": 4520 }, - { "id": "overmap_remembered_vehicle", "fg": 4521 }, - { "id": "pasture_connection_ew", "fg": 4544 }, - { "id": "pasture_connection_ns", "fg": 4545 }, - { "id": "pasture_unconnected", "fg": 4558 }, - { "id": "t_metal_ventilation_shutter", "fg": 4623 }, - { "id": "t_ramp_down_high", "fg": 4641 }, - { "id": "t_ramp_up_high", "fg": 4642 }, - { "id": "t_sidewalk_ramp_down_high", "fg": 4643 }, - { "id": "t_sidewalk_ramp_up_high", "fg": 4644 }, - { "id": "t_slope_down", "fg": 4645 }, - { "id": "t_slope_up", "fg": 4646 }, - { "id": "t_door_b_peep", "fg": 4991 }, - { "id": "t_door_boarded_damaged_peep", "fg": 4992 }, - { "id": "t_door_boarded_peep", "fg": 4993 }, - { "id": "t_door_c_peep", "fg": 4994 }, - { "id": "t_door_locked_peep", "fg": 4995 }, - { "id": "t_door_o_peep", "fg": 4996 }, - { "id": "t_fence_post", "fg": 5033 }, - { "id": "t_ladder_down", "fg": 5255 }, - { "id": "t_mud", "fg": 5373 }, - { "id": "t_thconc_floor_unconnected", "fg": 5885 }, - { "id": "t_thconc_floor_flesh", "fg": 5886 }, - { "id": "t_wall_resin_cage", "fg": 6079 }, - { "id": "t_window_domestic_taped", "fg": 6235 }, - { "id": "t_window_no_curtains_taped", "fg": 6239 }, - { "id": "t_window_taped", "fg": 6241 }, - { "id": "tr_cot", "fg": 6244 }, - { "id": "tr_caltrops", "fg": 6245 }, - { "id": "tr_telepad", "fg": 6246 }, - { "id": "tr_landmine", "fg": 6249 }, - { "id": "tr_landmine_buried", "fg": 6250 }, - { "id": "tr_practice_target", "fg": 6252 }, - { "id": "metal_boat_hull", "fg": 6254 } + "fg": 6354, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 6354 } ] + }, + { "id": "fd_dazzling", "fg": 2977 }, + { "id": "fd_fatigue", "fg": 2978 }, + { "id": "fd_fire", "fg": 2979 }, + { "id": "fd_laser", "fg": 2980 }, + { "id": "fd_plasma", "fg": 2981 }, + { "id": "fd_extinguisher", "fg": 3190 }, + { "id": "fd_fungal_haze", "fg": 3191 }, + { "id": "fd_fungicidal_gas", "fg": 3192 }, + { "id": "fd_hot_air_sauna", "fg": 3193 }, + { "id": "fd_insecticidal_gas", "fg": 3194 }, + { "id": "fd_nuke_gas", "fg": 3195 }, + { "id": "fd_relax_gas", "fg": 3196 }, + { "id": "fd_smoke", "fg": 3197 }, + { "id": "fd_tear_gas", "fg": 3198 }, + { "id": "fd_toxic_gas", "fg": 3199 }, + { "id": "f_target", "fg": 3210 }, + { "id": "f_chest", "fg": 3211 }, + { "id": "f_dive_block", "fg": 3212 }, + { "id": "f_foot_locker", "fg": 3213 }, + { "id": "f_sand_castle", "fg": 3214 }, + { "id": "f_shredder", "fg": 3215 }, + { "id": "f_tourist_table", "fg": 3216 }, + { "id": "f_exodii_pump", "fg": 3223 }, + { "id": "f_beaded_door", "fg": 3247 }, + { "id": "f_beaded_door_o", "fg": 3248 }, + { "id": "f_black_eyed_susan", "fg": 3281 }, + { "id": "f_chimney", "fg": 3313 }, + { "id": "f_curtain", "fg": 3347 }, + { "id": "f_curtain_open", "fg": 3348 }, + { "id": "f_lily", "fg": 3393 }, + { "id": "f_skin_groundsheet", "fg": 3526 }, + { "id": "acidchitin_plate", "fg": 3605 }, + { "id": "acoustic_guitar", "fg": 3606 }, + { "id": "alloy_plate", "fg": 3607 }, + { "id": "armor_lorica", "fg": 3608 }, + { "id": "banjo", "fg": 3609 }, + { "id": "bionic_general", "fg": 3610 }, + { "id": "bodypillow", "fg": 3611 }, + { "id": "bookplate", "fg": 3612 }, + { "id": "bot_copbot", "fg": 3613 }, + { "id": "bot_riotbot", "fg": 3614 }, + { "id": "broken_copbot", "fg": 3615 }, + { "id": "broken_riotbot", "fg": 3616 }, + { "id": "chainmail_hauberk", "fg": 3617 }, + { "id": "char_smoker", "fg": 3618 }, + { "id": "dehydrator", "fg": 3619 }, + { "id": "folding_poncho_on", "fg": 3620 }, + { "id": "gambeson", "fg": 3621 }, + { "id": "glass_sheet", "fg": 3622 }, + { "id": "gown", "fg": 3623 }, + { "id": "guitar_electric", "fg": 3624 }, + { "id": "hand_paddles", "fg": 3626 }, + { "id": "i4_combustion", "fg": 3627 }, + { "id": "inflatable_boat", "fg": 3628 }, + { "id": "inflatable_section", "fg": 3629 }, + { "id": "lawnmower", "fg": 3630 }, + { "id": "mattress", "fg": 3631 }, + { "id": "mil_plate", "fg": 3632 }, + { "id": "rake_plastic", "fg": 3634 }, + { "id": "reinforced_glass_sheet", "fg": 3635 }, + { "id": "robe", "fg": 3636 }, + { "id": "rock_quern", "fg": 3637 }, + { "id": "saxophone", "fg": 3638 }, + { "id": "sheet", "fg": 3639 }, + { "id": "shotgun_trap", "fg": 3640 }, + { "id": "steel_plate", "fg": 3641 }, + { "id": "telepad", "fg": 3642 }, + { "id": "trumpet", "fg": 3643 }, + { "id": "tuba", "fg": 3644 }, + { "id": "tunic", "fg": 3645 }, + { "id": "tunic_rag", "fg": 3646 }, + { "id": "umbrella", "fg": 3647 }, + { "id": "wheel_armor", "fg": 3648 }, + { "id": "wheel_wide", "fg": 3649 }, + { "id": "wheel_wide_or", "fg": 3650 }, + { "id": "10mm_fmj", "fg": 3651 }, + { "id": "120mm_HEAT", "fg": 3652 }, + { "id": "123ln", "fg": 3653 }, + { "id": "12mm", "fg": 3654 }, + { "id": "20x66_beanbag", "fg": 3655 }, + { "id": "20x66_flare", "fg": 3656 }, + { "id": "20x66_flechette", "fg": 3657 }, + { "id": "20x66_frag", "fg": 3658 }, + { "id": "20x66_inc", "fg": 3659 }, + { "id": "20x66_shot", "fg": 3660 }, + { "id": "20x66_slug", "fg": 3661 }, + { "id": "223", "fg": 3662 }, + { "id": "22_cb", "fg": 3663 }, + { "id": "22_fmj", "fg": 3664 }, + { "id": "22_lr", "fg": 3665 }, + { "id": "22_ratshot", "fg": 3666 }, + { "id": "270win_jsp", "fg": 3667 }, + { "id": "3006", "fg": 3668 }, + { "id": "3006_incendiary", "fg": 3669 }, + { "id": "3006fmj", "fg": 3670 }, + { "id": "300_winmag", "fg": 3671 }, + { "id": "300blk", "fg": 3672 }, + { "id": "300blk_ss", "fg": 3673 }, + { "id": "308", "fg": 3674 }, + { "id": "32_acp", "fg": 3675 }, + { "id": "357mag_fmj", "fg": 3676 }, + { "id": "357mag_jhp", "fg": 3677 }, + { "id": "357sig_fmj", "fg": 3678 }, + { "id": "357sig_jhp", "fg": 3679 }, + { "id": "380_FMJ", "fg": 3680 }, + { "id": "380_JHP", "fg": 3681 }, + { "id": "380_p", "fg": 3682 }, + { "id": "38_fmj", "fg": 3683 }, + { "id": "38_special", "fg": 3684 }, + { "id": "38_super", "fg": 3685 }, + { "id": "38super_fmj", "fg": 3686 }, + { "id": "40fmj", "fg": 3687 }, + { "id": "40mm_flashbang", "fg": 3688 }, + { "id": "40mm_incendiary", "fg": 3689 }, + { "id": "40mm_slug", "fg": 3690 }, + { "id": "40sw", "fg": 3691 }, + { "id": "40x46mm_grenade", "fg": 3692 }, + { "id": "40x46mm_m1006", "fg": 3693 }, + { "id": "40x46mm_m433", "fg": 3694 }, + { "id": "40x46mm_m576", "fg": 3695 }, + { "id": "40x46mm_m651", "fg": 3696 }, + { "id": "40x53mm_buckshot_m169", "fg": 3697 }, + { "id": "40x53mm_flechette_m169", "fg": 3698 }, + { "id": "40x53mm_grenade", "fg": 3699 }, + { "id": "40x53mm_m1001", "fg": 3700 }, + { "id": "40x53mm_m430a1", "fg": 3701 }, + { "id": "40x53mm_slug_m169", "fg": 3702 }, + { "id": "410shot_000", "fg": 3703 }, + { "id": "44fmj", "fg": 3704 }, + { "id": "44magnum", "fg": 3705 }, + { "id": "454_Casull", "fg": 3706 }, + { "id": "4570_low", "fg": 3707 }, + { "id": "4570_pen", "fg": 3708 }, + { "id": "4570_sp", "fg": 3709 }, + { "id": "45_acp", "fg": 3710 }, + { "id": "45_jhp", "fg": 3711 }, + { "id": "45_super", "fg": 3712 }, + { "id": "45colt_jhp", "fg": 3713 }, + { "id": "460_fmj", "fg": 3714 }, + { "id": "460_rowland", "fg": 3715 }, + { "id": "46mm", "fg": 3716 }, + { "id": "500_Magnum", "fg": 3717 }, + { "id": "50_incendiary", "fg": 3718 }, + { "id": "50_mk211", "fg": 3719 }, + { "id": "50bmg", "fg": 3720 }, + { "id": "50match", "fg": 3721 }, + { "id": "50ss", "fg": 3722 }, + { "id": "545", "fg": 3723 }, + { "id": "545_ap", "fg": 3724 }, + { "id": "556", "fg": 3725 }, + { "id": "556_incendiary", "fg": 3726 }, + { "id": "57mm", "fg": 3727 }, + { "id": "5x50dart", "fg": 3728 }, + { "id": "5x50heavy", "fg": 3729 }, + { "id": "66mm_HEAT", "fg": 3730 }, + { "id": "700nx", "fg": 3731 }, + { "id": "762_25", "fg": 3732 }, + { "id": "762_25hot", "fg": 3733 }, + { "id": "762_25typeP", "fg": 3734 }, + { "id": "762_51", "fg": 3735 }, + { "id": "762_51_incendiary", "fg": 3736 }, + { "id": "762_54R", "fg": 3737 }, + { "id": "762_m43", "fg": 3738 }, + { "id": "762_m87", "fg": 3739 }, + { "id": "84x246mm_he", "fg": 3740 }, + { "id": "84x246mm_hedp", "fg": 3741 }, + { "id": "84x246mm_smoke", "fg": 3742 }, + { "id": "8mm_bootleg", "fg": 3743 }, + { "id": "8mm_caseless", "fg": 3744 }, + { "id": "8mm_civilian", "fg": 3745 }, + { "id": "8mm_fmj", "fg": 3746 }, + { "id": "8mm_hvp", "fg": 3747 }, + { "id": "8mm_inc", "fg": 3748 }, + { "id": "8mm_jhp", "fg": 3749 }, + { "id": "9mm", "fg": 3750 }, + { "id": "9mmP", "fg": 3751 }, + { "id": "9mmfmj", "fg": 3752 }, + { "id": "9x18mm", "fg": 3753 }, + { "id": "9x18mmP2", "fg": 3754 }, + { "id": "9x18mmfmj", "fg": 3755 }, + { "id": "RPG-7_ammo", "fg": 3756 }, + { "id": "RPG-7_og7v", "fg": 3757 }, + { "id": "RPG-7_pg7vr", "fg": 3758 }, + { "id": "RPG-7_tbg7v", "fg": 3759 }, + { "id": "atgm_heat", "fg": 3760 }, + { "id": "m235tpa", "fg": 3761 }, + { "id": "shot_00", "fg": 3762 }, + { "id": "shot_beanbag", "fg": 3763 }, + { "id": "shot_bird", "fg": 3764 }, + { "id": "shot_dragon", "fg": 3765 }, + { "id": "shot_flechette", "fg": 3766 }, + { "id": "shot_he", "fg": 3767 }, + { "id": "shot_scrap", "fg": 3768 }, + { "id": "shot_slug", "fg": 3769 }, + { "id": "1895sbl", "fg": 3790 }, + { "id": "AT4", "fg": 3791 }, + { "id": "LAW", "fg": 3792 }, + { "id": "M24", "fg": 3793 }, + { "id": "RPG", "fg": 3794 }, + { "id": "USAS_12", "fg": 3795 }, + { "id": "airspeargun", "fg": 3796 }, + { "id": "ak74", "fg": 3798 }, + { "id": "american_180", "fg": 3799 }, + { "id": "an94", "fg": 3800 }, + { "id": "ar10", "fg": 3801 }, + { "id": "ar15", "fg": 3802 }, + { "id": "arx160", "fg": 3803 }, + { "id": "as50", "fg": 3804 }, + { "id": "atgm_launcher", "fg": 3805 }, + { "id": "bbgun", "fg": 3806 }, + { "id": "bfg50", "fg": 3807 }, + { "id": "bh_m89", "fg": 3808 }, + { "id": "blunderbuss", "fg": 3809 }, + { "id": "browning_blr", "fg": 3810 }, + { "id": "chemical_thrower", "fg": 3812 }, + { "id": "coilgun", "fg": 3813 }, + { "id": "colt_lightning", "fg": 3814 }, + { "id": "colt_ro635", "fg": 3815 }, + { "id": "combination_gun", "fg": 3816 }, + { "id": "cx4", "fg": 3817 }, + { "id": "doublespeargun", "fg": 3818 }, + { "id": "emp_gun", "fg": 3819 }, + { "id": "famas", "fg": 3820 }, + { "id": "flamethrower", "fg": 3821 }, + { "id": "fn_fal", "fg": 3822 }, + { "id": "fs2000", "fg": 3823 }, + { "id": "ftk93", "fg": 3824 }, + { "id": "garand", "fg": 3825 }, + { "id": "heavy_rail_rifle", "fg": 3826 }, + { "id": "helsing", "fg": 3827 }, + { "id": "henry_big_boy", "fg": 3828 }, + { "id": "hk417_13", "fg": 3829 }, + { "id": "hk_g3", "fg": 3830 }, + { "id": "hk_g36", "fg": 3831 }, + { "id": "hk_g80", "fg": 3832 }, + { "id": "hk_mp5k", "fg": 3833 }, + { "id": "hk_mp5sd", "fg": 3834 }, + { "id": "iwi_tavor_x95_300blk", "fg": 3835 }, + { "id": "ksg-25", "fg": 3836 }, + { "id": "ksg", "fg": 3837 }, + { "id": "ksub2000", "fg": 3838 }, + { "id": "laser_cannon", "fg": 3839 }, + { "id": "laser_rifle", "fg": 3840 }, + { "id": "lever_shotgun", "fg": 3841 }, + { "id": "longrifle_flintlock", "fg": 3842 }, + { "id": "m107a1", "fg": 3843 }, + { "id": "m110a1", "fg": 3844 }, + { "id": "m134", "fg": 3845 }, + { "id": "m14ebr", "fg": 3846 }, + { "id": "m1903", "fg": 3849 }, + { "id": "m1918", "fg": 3850 }, + { "id": "m1a", "fg": 3851 }, + { "id": "m2010", "fg": 3852 }, + { "id": "m202_flash", "fg": 3853 }, + { "id": "m231pfw", "fg": 3854 }, + { "id": "m240", "fg": 3855 }, + { "id": "m27_assault_rifle_var_h&k416a5", "fg": 3857 }, + { "id": "m27_assault_rifle_var_m27iar", "fg": 3858 }, + { "id": "m27_assault_rifle_var_m38dmr", "fg": 3859 }, + { "id": "m27_assault_rifle_var_scar_l", "fg": 3860 }, + { "id": "m2browning", "fg": 3861 }, + { "id": "m2browning_sawn", "fg": 3862 }, + { "id": "m3_carlgustav", "fg": 3863 }, + { "id": "m4_carbine_var_m4a1", "fg": 3864 }, + { "id": "m4_carlgustav", "fg": 3865 }, + { "id": "m79", "fg": 3867 }, + { "id": "mark19", "fg": 3868 }, + { "id": "marlin_9a", "fg": 3869 }, + { "id": "mininuke_launcher", "fg": 3870 }, + { "id": "mosin44", "fg": 3871 }, + { "id": "mosin44_ebr", "fg": 3872 }, + { "id": "mosin91_30", "fg": 3873 }, + { "id": "mosin91_30_ebr", "fg": 3874 }, + { "id": "mossberg_500", "fg": 3875 }, + { "id": "mossberg_500_var_mossberg_500_security", "fg": 3876 }, + { "id": "mossberg_590", "fg": 3877 }, + { "id": "mossberg_590_var_SPAS_12", "fg": 3878 }, + { "id": "mossberg_930", "fg": 3879 }, + { "id": "mossberg_930_var_m1014", "fg": 3880 }, + { "id": "mp18", "fg": 3881 }, + { "id": "needlegun", "fg": 3883 }, + { "id": "pamd68", "fg": 3884 }, + { "id": "pamd71z", "fg": 3885 }, + { "id": "pipe_combination_gun", "fg": 3886 }, + { "id": "plasma_gun", "fg": 3887 }, + { "id": "plasma_rifle", "fg": 3888 }, + { "id": "ppsh", "fg": 3889 }, + { "id": "rebar_rifle", "fg": 3890 }, + { "id": "remington700_270", "fg": 3891 }, + { "id": "remington_700", "fg": 3892 }, + { "id": "remington_870", "fg": 3893 }, + { "id": "remington_870_breacher", "fg": 3894 }, + { "id": "remington_870_express", "fg": 3895 }, + { "id": "remington_870_var_browning_a5", "fg": 3896 }, + { "id": "remington_870_var_remington_1100", "fg": 3897 }, + { "id": "rifle_flintlock", "fg": 3898 }, + { "id": "rm120c", "fg": 3899 }, + { "id": "rm20", "fg": 3900 }, + { "id": "rm298", "fg": 3901 }, + { "id": "rm451_flamethrower", "fg": 3902 }, + { "id": "rm51_assault_rifle", "fg": 3903 }, + { "id": "rm614_lmg", "fg": 3904 }, + { "id": "rm802", "fg": 3905 }, + { "id": "rm88_battle_rifle", "fg": 3906 }, + { "id": "ruger_1022", "fg": 3907 }, + { "id": "ruger_mini", "fg": 3908 }, + { "id": "saiga_12", "fg": 3909 }, + { "id": "saiga_410", "fg": 3910 }, + { "id": "savage_111f", "fg": 3911 }, + { "id": "scar_h", "fg": 3912 }, + { "id": "sharps", "fg": 3913 }, + { "id": "shotgun_410", "fg": 3914 }, + { "id": "shotgun_d", "fg": 3915 }, + { "id": "shotgun_s", "fg": 3916 }, + { "id": "sig552", "fg": 3917 }, + { "id": "sig_mcx_rattler_sbr", "fg": 3918 }, + { "id": "skorpion_82", "fg": 3919 }, + { "id": "sks", "fg": 3920 }, + { "id": "smg_9mm", "fg": 3922 }, + { "id": "speargun", "fg": 3923 }, + { "id": "sten", "fg": 3924 }, + { "id": "steyr_aug", "fg": 3925 }, + { "id": "surv_rocket_launcher", "fg": 3926 }, + { "id": "survivor_special_700", "fg": 3927 }, + { "id": "tac50", "fg": 3928 }, + { "id": "tavor_12", "fg": 3929 }, + { "id": "tihar", "fg": 3930 }, + { "id": "tommygun", "fg": 3931 }, + { "id": "trex_gun", "fg": 3932 }, + { "id": "weatherby_5", "fg": 3933 }, + { "id": "win70", "fg": 3934 }, + { "id": "winchester_1887", "fg": 3935 }, + { "id": "winchester_1897", "fg": 3936 }, + { "id": "iceaxe", "fg": 3939 }, + { "id": "rifle_case_soft", "fg": 3944 }, + { "id": "rifle_case_soft_2", "fg": 3945 }, + { "id": "rifle_case_soft_leather_2", "fg": 3947 }, + { "id": "rucksack", "fg": 3948 }, + { "id": "compgreatbow", "fg": 3957 }, + { "id": "compositebow", "fg": 3958 }, + { "id": "hybridbow", "fg": 3959 }, + { "id": "longbow", "fg": 3960 }, + { "id": "recurbow", "fg": 3961 }, + { "id": "reflexbow", "fg": 3962 }, + { "id": "reflexrecurvebow", "fg": 3963 }, + { "id": "selfbow", "fg": 3964 }, + { "id": "shortbow", "fg": 3965 }, + { "id": "woodgreatbow", "fg": 3966 }, + { "id": "oxygen_cylinder", "fg": 3971 }, + { "id": "oxygen_tank", "fg": 3972 }, + { "id": "tinyweldtank", "fg": 3973 }, + { "id": "weldtank", "fg": 3974 }, + { "id": "cot", "fg": 3975 }, + { "id": "armguard_soft", "fg": 3976 }, + { "id": "chestwrap_leather", "fg": 3977 }, + { "id": "trenchcoat_leather", "fg": 3978 }, + { "id": "bat_nerf", "fg": 3979 }, + { "id": "golf_bag", "fg": 3980 }, + { "id": "polycarbonate_sheet", "fg": 3981 }, + { "id": "screen_mesh", "fg": 3982 }, + { "id": "bagpipes", "fg": 3983 }, + { "id": "jumper_cable_heavy", "fg": 3984 }, + { "id": "scythe", "fg": 3985 }, + { "id": "motorbike_armor", "fg": 3986 }, + { "id": "rack_test_tube", "fg": 3987 }, + { "id": "bowl_clay", "fg": 3990 }, + { "id": "clay_hydria", "fg": 3991 }, + { "id": "clay_pot", "fg": 3992 }, + { "id": "clay_quern", "fg": 3993 }, + { "id": "clay_watercont", "fg": 3994 }, + { "id": "jug_clay", "fg": 3995 }, + { "id": "bullet_crossbow", "fg": 4059 }, + { "id": "compcrossbow", "fg": 4060 }, + { "id": "compositecrossbow", "fg": 4061 }, + { "id": "crossbow", "fg": 4062 }, + { "id": "hand_crossbow", "fg": 4063 }, + { "id": "huge_crossbow", "fg": 4064 }, + { "id": "rep_crossbow", "fg": 4065 }, + { "id": "amplifier_head", "fg": 4078 }, + { "id": "bindle", "fg": 4079 }, + { "id": "broken_dimensional_anchor", "fg": 4080 }, + { "id": "chainmail_vest", "fg": 4081 }, + { "id": "concrete", "fg": 4082 }, + { "id": "cs_lajatang_off", "fg": 4083 }, + { "id": "dimensional_anchor", "fg": 4084 }, + { "id": "dimensional_anchor_on", "fg": 4085 }, + { "id": "dnd", "fg": 4086 }, + { "id": "g_carpet", "fg": 4087 }, + { "id": "grapnel", "fg": 4088 }, + { "id": "optical_cloak", "fg": 4089 }, + { "id": "p_carpet", "fg": 4090 }, + { "id": "r_carpet", "fg": 4091 }, + { "id": "trimmer_off", "fg": 4092 }, + { "id": "trimmer_on", "fg": 4093 }, + { "id": "tux", "fg": 4094 }, + { "id": "v_scoop_item", "fg": 4095 }, + { "id": "wool_suit", "fg": 4096 }, + { "id": "y_carpet", "fg": 4097 }, + { "id": "multi_cooker", "fg": 4098 }, + { "id": "multi_cooker_filled", "fg": 4099 }, + { "id": "pet_carrier", "fg": 4100 }, + { "id": "manhole_cover", "fg": 4119 }, + { "id": "PR24-extended", "fg": 4125 }, + { "id": "PR24-retracted", "fg": 4126 }, + { "id": "baton-extended", "fg": 4127 }, + { "id": "baton", "fg": 4128 }, + { "id": "guitar_stand", "fg": 4129 }, + { "id": "mic_stand_tall", "fg": 4130 }, + { "id": "mixer_music", "fg": 4131 }, + { "id": "pipe_shotgun", "fg": 4150 }, + { "id": "pool_cue", "fg": 4155 }, + { "id": "bokken", "fg": 4188 }, + { "id": "UPS_off", "fg": 4194 }, + { "id": "hose", "fg": 4195 }, + { "id": "oxy_torch", "fg": 4196 }, + { "id": "picklocks", "fg": 4197 }, + { "id": "f_magic_circle", "fg": 4204 }, + { "id": "mon_dragonfly_naiad", "fg": 4353 }, + { "id": "mon_molebot", "fg": 4405 }, + { "id": "mon_spawn_raptor_electric", "fg": 4413 }, + { "id": "mon_spawn_raptor_shady", "fg": 4414 }, + { "id": "mon_spawn_raptor_unstable", "fg": 4415 }, + { "id": "mon_turret_riot", "fg": 4417 }, + { "id": "footstep", "fg": 4466 }, + { "id": "footstep_above", "fg": 4467 }, + { "id": "footstep_below", "fg": 4468 }, + { "id": "unknown_field", "fg": 4469 }, + { "id": "unknown_furniture", "fg": 4470 }, + { "id": "unknown_item", "fg": 4471 }, + { "id": "unknown_item_AMMO", "fg": 4472 }, + { "id": "unknown_item_ARMOR", "fg": 4473 }, + { "id": "unknown_item_BIONIC", "fg": 4474 }, + { "id": "unknown_item_BOOK", "fg": 4475 }, + { "id": "unknown_item_FOOD", "fg": 4476 }, + { "id": "unknown_item_GUN", "fg": 4477 }, + { "id": "unknown_item_TOOL", "fg": 4478 }, + { "id": "unknown_item_misc", "fg": 4479 }, + { "id": "unknown_terrain", "fg": 4480 }, + { "id": "unknown_trap", "fg": 4481 }, + { "id": "unknown_vehicle_part", "fg": 4482 }, + { "id": "overlay_effect_slimed", "fg": 4493 }, + { "id": "overlay_effect_wet", "fg": 4494 }, + { "id": "overlay_friendly_sees_player", "fg": 4495 }, + { "id": "overlay_hostile_sees_player", "fg": 4496 }, + { "id": "overlay_neutral_sees_player", "fg": 4497 }, + { "id": "overlay_other_sees_player", "fg": 4498 }, + { "id": "zombie_revival_indicator", "fg": 4499 }, + { "id": "overlay_female_mutation_HOOVES", "fg": 4500 }, + { "id": "overlay_male_mutation_HOOVES", "fg": 4501 }, + { "id": "overlay_female_mutation_LEG_TENTACLES", "fg": 4502 }, + { "id": "overlay_male_mutation_LEG_TENTACLES", "fg": 4503 }, + { "id": "overlay_wielded_bfg50", "fg": 4504 }, + { "id": "cemetery_small", "fg": 4526 }, + { "id": "dirt_road_center", "fg": 4529 }, + { "id": "dirt_road_end_piece_e", "fg": 4536 }, + { "id": "dirt_road_end_piece_n", "fg": 4537 }, + { "id": "dirt_road_end_piece_s", "fg": 4538 }, + { "id": "dirt_road_end_piece_w", "fg": 4539 }, + { "id": "dirt_road_unconnected", "fg": 4544 }, + { "id": "hunting_blind", "fg": 4586 }, + { "id": "overmap_horde_3", "fg": 4587 }, + { "id": "overmap_horde_4", "fg": 4588 }, + { "id": "overmap_horde_5", "fg": 4589 }, + { "id": "overmap_horde_6", "fg": 4590 }, + { "id": "overmap_remembered_vehicle", "fg": 4591 }, + { "id": "pasture_connection_ew", "fg": 4614 }, + { "id": "pasture_connection_ns", "fg": 4615 }, + { "id": "pasture_unconnected", "fg": 4628 }, + { "id": "t_metal_ventilation_shutter", "fg": 4693 }, + { "id": "t_ramp_down_high", "fg": 4711 }, + { "id": "t_ramp_up_high", "fg": 4712 }, + { "id": "t_sidewalk_ramp_down_high", "fg": 4713 }, + { "id": "t_sidewalk_ramp_up_high", "fg": 4714 }, + { "id": "t_slope_down", "fg": 4715 }, + { "id": "t_slope_up", "fg": 4716 }, + { "id": "t_door_b_peep", "fg": 5061 }, + { "id": "t_door_boarded_damaged_peep", "fg": 5062 }, + { "id": "t_door_boarded_peep", "fg": 5063 }, + { "id": "t_door_c_peep", "fg": 5064 }, + { "id": "t_door_locked_peep", "fg": 5065 }, + { "id": "t_door_o_peep", "fg": 5066 }, + { "id": "t_fence_post", "fg": 5103 }, + { "id": "t_ladder_down", "fg": 5325 }, + { "id": "t_mud", "fg": 5443 }, + { "id": "t_thconc_floor_unconnected", "fg": 5955 }, + { "id": "t_thconc_floor_flesh", "fg": 5956 }, + { "id": "t_wall_resin_cage", "fg": 6149 }, + { "id": "t_window_domestic_taped", "fg": 6305 }, + { "id": "t_window_no_curtains_taped", "fg": 6309 }, + { "id": "t_window_taped", "fg": 6311 }, + { "id": "tr_cot", "fg": 6314 }, + { "id": "tr_practice_target", "fg": 6325 }, + { "id": "metal_boat_hull", "fg": 6327 } ] }, { "file": "tallfurniture.png", - "//": "range 6288 to 6447", + "//": "range 6368 to 6527", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, @@ -9599,190 +9652,190 @@ "tiles": [ { "id": "f_deckchair", - "fg": [ { "weight": 1, "sprite": 6288 }, { "weight": 1, "sprite": 6289 }, { "weight": 1, "sprite": 6290 } ] + "fg": [ { "weight": 1, "sprite": 6368 }, { "weight": 1, "sprite": 6369 }, { "weight": 1, "sprite": 6370 } ] }, - { "id": [ "f_fvat_empty", "f_fvat_full" ], "fg": 6292 }, - { "id": "f_punching_bag", "fg": 6296 }, - { "id": "f_exercise", "fg": 6295 }, - { "id": "f_ergometer", "fg": 6294 }, - { "id": "f_IV_pole", "fg": 6304 }, - { "id": "f_arcade_machine", "fg": 6305 }, - { "id": "f_autodoc_couch", "fg": 6306 }, - { "id": "f_birdbath", "fg": 6309 }, + { "id": [ "f_fvat_empty", "f_fvat_full" ], "fg": 6372 }, + { "id": "f_punching_bag", "fg": 6376 }, + { "id": "f_exercise", "fg": 6375 }, + { "id": "f_ergometer", "fg": 6374 }, + { "id": "f_IV_pole", "fg": 6384 }, + { "id": "f_arcade_machine", "fg": 6385 }, + { "id": "f_autodoc_couch", "fg": 6386 }, + { "id": "f_birdbath", "fg": 6389 }, { "id": "f_bookcase", "multitile": true, "rotates": false, - "fg": 6310, + "fg": 6390, "additional_tiles": [ - { "id": "center", "fg": 6310 }, - { "id": "corner", "fg": [ 6312, 6313, 6313, 6312 ] }, - { "id": "t_connection", "fg": [ 6310, 6311, 6310, 6311 ] }, - { "id": "edge", "fg": [ 6311, 6310 ] }, - { "id": "end_piece", "fg": [ 6312, 6310, 6313, 6310 ] }, - { "id": "unconnected", "fg": [ 6310, 6310 ] } + { "id": "center", "fg": 6390 }, + { "id": "corner", "fg": [ 6392, 6393, 6393, 6392 ] }, + { "id": "t_connection", "fg": [ 6390, 6391, 6390, 6391 ] }, + { "id": "edge", "fg": [ 6391, 6390 ] }, + { "id": "end_piece", "fg": [ 6392, 6390, 6393, 6390 ] }, + { "id": "unconnected", "fg": [ 6390, 6390 ] } ] }, - { "id": "f_boulder_large", "fg": 6314 }, - { "id": "f_cattails_season_spring", "fg": 6317, "rotates": false }, - { "id": "f_cattails_season_summer", "fg": 6318, "rotates": false }, - { "id": "f_cattails_season_autumn", "fg": 6316, "rotates": false }, - { "id": "f_cattails_season_winter", "fg": 6319, "rotates": false }, + { "id": "f_boulder_large", "fg": 6394 }, + { "id": "f_cattails_season_spring", "fg": 6397, "rotates": false }, + { "id": "f_cattails_season_summer", "fg": 6398, "rotates": false }, + { "id": "f_cattails_season_autumn", "fg": 6396, "rotates": false }, + { "id": "f_cattails_season_winter", "fg": 6399, "rotates": false }, { "id": "f_console", "multitile": true, - "fg": 6353, + "fg": 6433, "additional_tiles": [ - { "id": "center", "fg": 6338 }, - { "id": "corner", "fg": [ 6340, 6342, 6341, 6339 ] }, - { "id": "t_connection", "fg": [ 6350, 6352, 6351, 6349 ] }, - { "id": "edge", "fg": [ 6344, 6343 ] }, - { "id": "end_piece", "fg": [ 6346, 6348, 6347, 6345 ] }, - { "id": "unconnected", "fg": [ 6353, 6355, 6353, 6354 ] } + { "id": "center", "fg": 6418 }, + { "id": "corner", "fg": [ 6420, 6422, 6421, 6419 ] }, + { "id": "t_connection", "fg": [ 6430, 6432, 6431, 6429 ] }, + { "id": "edge", "fg": [ 6424, 6423 ] }, + { "id": "end_piece", "fg": [ 6426, 6428, 6427, 6425 ] }, + { "id": "unconnected", "fg": [ 6433, 6435, 6433, 6434 ] } ] }, { "id": "f_console_broken", "multitile": true, - "fg": 6336, + "fg": 6416, "additional_tiles": [ - { "id": "center", "fg": 6320 }, - { "id": "corner", "fg": [ 6322, 6324, 6323, 6321 ] }, - { "id": "t_connection", "fg": [ 6332, 6334, 6333, 6331 ] }, - { "id": "edge", "fg": [ 6326, 6325 ] }, - { "id": "end_piece", "fg": [ 6328, 6330, 6329, 6327 ] }, - { "id": "unconnected", "fg": [ 6336, 6337, 6336, 6335 ] } + { "id": "center", "fg": 6400 }, + { "id": "corner", "fg": [ 6402, 6404, 6403, 6401 ] }, + { "id": "t_connection", "fg": [ 6412, 6414, 6413, 6411 ] }, + { "id": "edge", "fg": [ 6406, 6405 ] }, + { "id": "end_piece", "fg": [ 6408, 6410, 6409, 6407 ] }, + { "id": "unconnected", "fg": [ 6416, 6417, 6416, 6415 ] } ] }, - { "id": "f_crate_c", "fg": 6356 }, - { "id": "f_crate_o", "fg": 6357 }, - { "id": "f_dialysis", "fg": 6358 }, - { "id": "f_dresser", "rotates": true, "fg": [ 6361, 6362, 6360, 6359 ] }, - { "id": "f_dryer", "fg": 6363 }, + { "id": "f_crate_c", "fg": 6436 }, + { "id": "f_crate_o", "fg": 6437 }, + { "id": "f_dialysis", "fg": 6438 }, + { "id": "f_dresser", "rotates": true, "fg": [ 6441, 6442, 6440, 6439 ] }, + { "id": "f_dryer", "fg": 6443 }, { "id": "f_dumpster", - "fg": 6370, + "fg": 6450, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6364 }, - { "id": "corner", "fg": [ 6369, 6369, 6366, 6366 ] }, - { "id": "t_connection", "fg": [ 6364, 6369, 6364, 6366 ] }, - { "id": "edge", "fg": [ 6365, 6364 ] }, - { "id": "end_piece", "fg": [ 6367, 6369, 6368, 6366 ] }, - { "id": "unconnected", "fg": [ 6370, 6370 ] } + { "id": "center", "fg": 6444 }, + { "id": "corner", "fg": [ 6449, 6449, 6446, 6446 ] }, + { "id": "t_connection", "fg": [ 6444, 6449, 6444, 6446 ] }, + { "id": "edge", "fg": [ 6445, 6444 ] }, + { "id": "end_piece", "fg": [ 6447, 6449, 6448, 6446 ] }, + { "id": "unconnected", "fg": [ 6450, 6450 ] } ] }, - { "id": "f_fireplace", "fg": 6371 }, - { "id": "f_floor_lamp", "fg": 6372 }, - { "id": "f_fridge", "rotates": true, "fg": [ 6375, 6376, 6374, 6373 ] }, - { "id": "t_gas_pump", "fg": 6377, "bg": 6491 }, - { "id": "f_gas_pump", "fg": 6377 }, - { "id": "f_glass_cabinet", "fg": 6378 }, - { "id": "f_glass_fridge", "fg": 6379 }, + { "id": "f_fireplace", "fg": 6451 }, + { "id": "f_floor_lamp", "fg": 6452 }, + { "id": "f_fridge", "rotates": true, "fg": [ 6455, 6456, 6454, 6453 ] }, + { "id": "t_gas_pump", "fg": 6457, "bg": 6571 }, + { "id": "f_gas_pump", "fg": 6457 }, + { "id": "f_glass_cabinet", "fg": 6458 }, + { "id": "f_glass_fridge", "fg": 6459 }, { "id": "f_ground_cable", "multitile": true, - "fg": 6398, + "fg": 6478, "additional_tiles": [ - { "id": "center", "fg": [ { "weight": 1, "sprite": 6380 }, { "weight": 1, "sprite": 6380 } ] }, + { "id": "center", "fg": [ { "weight": 1, "sprite": 6460 }, { "weight": 1, "sprite": 6460 } ] }, { "id": "corner", - "fg": [ { "weight": 1, "sprite": [ 6382, 6385, 6383, 6381 ] }, { "weight": 1, "sprite": [ 6382, 6385, 6384, 6381 ] } ] + "fg": [ { "weight": 1, "sprite": [ 6462, 6465, 6463, 6461 ] }, { "weight": 1, "sprite": [ 6462, 6465, 6464, 6461 ] } ] }, { "id": "t_connection", - "fg": [ { "weight": 1, "sprite": [ 6395, 6397, 6396, 6394 ] }, { "weight": 1, "sprite": [ 6395, 6397, 6396, 6394 ] } ] + "fg": [ { "weight": 1, "sprite": [ 6475, 6477, 6476, 6474 ] }, { "weight": 1, "sprite": [ 6475, 6477, 6476, 6474 ] } ] }, { "id": "edge", - "fg": [ { "weight": 1, "sprite": [ 6388, 6386 ] }, { "weight": 1, "sprite": [ 6389, 6387 ] } ] + "fg": [ { "weight": 1, "sprite": [ 6468, 6466 ] }, { "weight": 1, "sprite": [ 6469, 6467 ] } ] }, { "id": "end_piece", - "fg": [ { "weight": 1, "sprite": [ 6391, 6393, 6392, 6390 ] }, { "weight": 1, "sprite": [ 6391, 6393, 6392, 6390 ] } ] + "fg": [ { "weight": 1, "sprite": [ 6471, 6473, 6472, 6470 ] }, { "weight": 1, "sprite": [ 6471, 6473, 6472, 6470 ] } ] }, - { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 6398 }, { "weight": 1, "sprite": 6398 } ] } + { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 6478 }, { "weight": 1, "sprite": 6478 } ] } ] }, - { "id": "f_home_furnace", "fg": 6399 }, - { "id": "f_locker", "fg": 6401 }, - { "id": "f_machinery_old", "fg": 6408 }, - { "id": "t_machinery_old", "fg": 6408, "bg": 6483 }, - { "id": "f_machinery_electronic", "fg": 6402 }, - { "id": "t_machinery_electronic", "fg": 6402, "bg": 6483 }, + { "id": "f_home_furnace", "fg": 6479 }, + { "id": "f_locker", "fg": 6481 }, + { "id": "f_machinery_old", "fg": 6488 }, + { "id": "t_machinery_old", "fg": 6488, "bg": 6563 }, + { "id": "f_machinery_electronic", "fg": 6482 }, + { "id": "t_machinery_electronic", "fg": 6482, "bg": 6563 }, { "id": "f_machinery_heavy", - "fg": [ { "weight": 20, "sprite": 6403 }, { "weight": 150, "sprite": 6404 }, { "weight": 100, "sprite": 6405 } ] + "fg": [ { "weight": 20, "sprite": 6483 }, { "weight": 150, "sprite": 6484 }, { "weight": 100, "sprite": 6485 } ] }, { "id": "t_machinery_heavy", - "fg": [ { "weight": 20, "sprite": 6403 }, { "weight": 150, "sprite": 6404 }, { "weight": 100, "sprite": 6405 } ], - "bg": 6483 + "fg": [ { "weight": 20, "sprite": 6483 }, { "weight": 150, "sprite": 6484 }, { "weight": 100, "sprite": 6485 } ], + "bg": 6563 }, - { "id": "f_machinery_light", "fg": [ { "weight": 100, "sprite": 6407 }, { "weight": 100, "sprite": 6406 } ] }, + { "id": "f_machinery_light", "fg": [ { "weight": 100, "sprite": 6487 }, { "weight": 100, "sprite": 6486 } ] }, { "id": "t_machinery_light", - "fg": [ { "weight": 100, "sprite": 6407 }, { "weight": 100, "sprite": 6406 } ], - "bg": 6483 - }, - { "id": "f_mannequin", "fg": 6409 }, - { "id": "f_alien_tendril", "fg": 6413 }, - { "id": "f_alien_zapper", "fg": 6414 }, - { "id": [ "f_alien_pod", "f_alien_pod_organ" ], "fg": 6411 }, - { "id": "f_alien_pod_resin", "fg": 6412 }, - { "id": "f_oven", "rotates": true, "fg": [ 6417, 6418, 6416, 6415 ] }, - { "id": "f_rack_coat", "fg": 6419 }, - { "id": "f_scan_bed", "fg": 6420 }, + "fg": [ { "weight": 100, "sprite": 6487 }, { "weight": 100, "sprite": 6486 } ], + "bg": 6563 + }, + { "id": "f_mannequin", "fg": 6489 }, + { "id": "f_alien_tendril", "fg": 6493 }, + { "id": "f_alien_zapper", "fg": 6494 }, + { "id": [ "f_alien_pod", "f_alien_pod_organ" ], "fg": 6491 }, + { "id": "f_alien_pod_resin", "fg": 6492 }, + { "id": "f_oven", "rotates": true, "fg": [ 6497, 6498, 6496, 6495 ] }, + { "id": "f_rack_coat", "fg": 6499 }, + { "id": "f_scan_bed", "fg": 6500 }, { "id": "f_scrap_antenna", "animated": true, "fg": [ - { "weight": 15, "sprite": 6421 }, - { "weight": 15, "sprite": 6422 }, - { "weight": 15, "sprite": 6423 }, - { "weight": 15, "sprite": 6424 }, - { "weight": 15, "sprite": 6425 }, - { "weight": 15, "sprite": 6426 } + { "weight": 15, "sprite": 6501 }, + { "weight": 15, "sprite": 6502 }, + { "weight": 15, "sprite": 6503 }, + { "weight": 15, "sprite": 6504 }, + { "weight": 15, "sprite": 6505 }, + { "weight": 15, "sprite": 6506 } ], "rotates": false }, - { "id": "f_shower", "fg": 6427 }, - { "id": "f_standing_tank", "fg": 6428 }, - { "id": "f_statue", "fg": 6429 }, - { "id": "f_sunflower_season_summer", "fg": 6431 }, - { "id": "f_sunflower_season_autumn", "fg": 6430 }, - { "id": "f_vending_c", "fg": 6432 }, - { "id": "f_vending_reinforced", "fg": 6434 }, - { "id": "f_vending_o", "fg": 6433 }, - { "id": "f_ventilator", "fg": 6435 }, - { "id": "f_washer", "fg": 6436 }, - { "id": "f_water_heater", "fg": 6437 }, - { "id": "f_water_pump", "fg": 6438 }, - { "id": "t_water_pump", "fg": 6438, "bg": 6483 }, - { "id": "f_wind_mill", "fg": 6439 }, - { "id": "f_woodstove", "fg": 6440 }, - { "id": "f_workbench", "fg": 6441 }, - { "id": "f_dishwasher", "fg": 6291 }, - { "id": "f_wardrobe", "fg": 6293 }, - { "id": "f_treadmill", "fg": 6297 }, - { "id": "f_capacitor", "fg": 6298 }, - { "id": "f_exodii_charger", "fg": 6299 }, - { "id": "f_exodii_charger_cheap", "fg": 6300 }, - { "id": "f_exodii_lamp", "fg": 6301 }, - { "id": "f_exodii_portal_tower", "fg": 6302 }, - { "id": "f_exodii_scanner", "fg": 6303 }, - { "id": "f_bigmirror", "fg": 6307 }, - { "id": "f_bigmirror_b", "fg": 6308 }, - { "id": "f_canvas_floor", "fg": 6315 }, - { "id": "f_ladder", "fg": 6400 }, - { "id": "f_alien_gasper", "fg": 6410 }, - { "id": "f_street_light", "fg": 6442 }, - { "id": "f_traffic_light", "fg": 6443 } + { "id": "f_shower", "fg": 6507 }, + { "id": "f_standing_tank", "fg": 6508 }, + { "id": "f_statue", "fg": 6509 }, + { "id": "f_sunflower_season_summer", "fg": 6511 }, + { "id": "f_sunflower_season_autumn", "fg": 6510 }, + { "id": "f_vending_c", "fg": 6512 }, + { "id": "f_vending_reinforced", "fg": 6514 }, + { "id": "f_vending_o", "fg": 6513 }, + { "id": "f_ventilator", "fg": 6515 }, + { "id": "f_washer", "fg": 6516 }, + { "id": "f_water_heater", "fg": 6517 }, + { "id": "f_water_pump", "fg": 6518 }, + { "id": "t_water_pump", "fg": 6518, "bg": 6563 }, + { "id": "f_wind_mill", "fg": 6519 }, + { "id": "f_woodstove", "fg": 6520 }, + { "id": "f_workbench", "fg": 6521 }, + { "id": "f_dishwasher", "fg": 6371 }, + { "id": "f_wardrobe", "fg": 6373 }, + { "id": "f_treadmill", "fg": 6377 }, + { "id": "f_capacitor", "fg": 6378 }, + { "id": "f_exodii_charger", "fg": 6379 }, + { "id": "f_exodii_charger_cheap", "fg": 6380 }, + { "id": "f_exodii_lamp", "fg": 6381 }, + { "id": "f_exodii_portal_tower", "fg": 6382 }, + { "id": "f_exodii_scanner", "fg": 6383 }, + { "id": "f_bigmirror", "fg": 6387 }, + { "id": "f_bigmirror_b", "fg": 6388 }, + { "id": "f_canvas_floor", "fg": 6395 }, + { "id": "f_ladder", "fg": 6480 }, + { "id": "f_alien_gasper", "fg": 6490 }, + { "id": "f_street_light", "fg": 6522 }, + { "id": "f_traffic_light", "fg": 6523 } ] }, { "file": "tallmonsters.png", - "//": "range 6448 to 6479", + "//": "range 6528 to 6559", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, @@ -9791,69 +9844,69 @@ { "id": "mon_exodii_worker", "fg": [ - { "weight": 15, "sprite": 6449 }, - { "weight": 15, "sprite": 6450 }, - { "weight": 10, "sprite": 6451 }, - { "weight": 10, "sprite": 6452 } + { "weight": 15, "sprite": 6529 }, + { "weight": 15, "sprite": 6530 }, + { "weight": 10, "sprite": 6531 }, + { "weight": 10, "sprite": 6532 } ], - "bg": 6453 - }, - { "id": "mon_dispatch", "fg": 6456, "bg": 6448 }, - { "id": "mon_dispatch_military", "fg": 6457, "bg": 6448 }, - { "id": "mon_robofac_laserturret_mk1", "fg": 6462, "bg": 6448 }, - { "id": "mon_triffid_flower", "fg": 6463, "bg": 6448 }, - { "id": "mon_turret", "fg": 6464, "bg": 6448 }, - { "id": "mon_turret_speaker", "fg": 6465, "bg": 6448 }, - { "id": "mon_zombie_gasbag_fungus", "fg": 6467, "bg": 6448 }, - { "id": [ "corpse_mon_zombie_necro", "corpse_mon_zombie_master" ], "fg": 6468 } + "bg": 6533 + }, + { "id": "mon_dispatch", "fg": 6536, "bg": 6528 }, + { "id": "mon_dispatch_military", "fg": 6537, "bg": 6528 }, + { "id": "mon_robofac_laserturret_mk1", "fg": 6541, "bg": 6528 }, + { "id": "mon_triffid_flower", "fg": 6542, "bg": 6528 }, + { "id": "mon_turret", "fg": 6543, "bg": 6528 }, + { "id": "mon_turret_speaker", "fg": 6544, "bg": 6528 }, + { "id": "mon_zombie_gasbag_fungus", "fg": 6546, "bg": 6528 }, + { "id": [ "corpse_mon_zombie_necro", "corpse_mon_zombie_master" ], "fg": 6547 } ] }, { "file": "tallterrain.png", - "//": "range 6480 to 6655", + "//": "range 6560 to 6735", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, "sprite_offset_y": -32, "tiles": [ - { "id": "t_floor_olight", "fg": 6497, "bg": 6484 }, - { "id": "t_thconc_floor_olight", "fg": 6497, "bg": 6493 }, - { "id": "t_metal_floor_olight", "fg": 6497, "bg": 6490 }, - { "id": "t_thconc_y_olight", "fg": 6497, "bg": 6494 }, - { "id": "t_strconc_floor_olight", "fg": 6497, "bg": 6492 }, - { "id": "t_linoleum_whitefloor_olight", "fg": 6497, "bg": 6489 }, - { "id": "t_linoleum_gray_floor_olight", "fg": 6497, "bg": 6488 }, - { "id": "t_atm", "fg": 6498, "bg": 6483 }, - { "id": [ "t_barndoor", "t_palisade_pulley" ], "fg": 6499, "bg": 6480 }, - { "id": "t_column", "fg": 6500, "bg": 6483 }, + { "id": "t_floor_olight", "fg": 6577, "bg": 6564 }, + { "id": "t_thconc_floor_olight", "fg": 6577, "bg": 6573 }, + { "id": "t_metal_floor_olight", "fg": 6577, "bg": 6570 }, + { "id": "t_thconc_y_olight", "fg": 6577, "bg": 6574 }, + { "id": "t_strconc_floor_olight", "fg": 6577, "bg": 6572 }, + { "id": "t_linoleum_whitefloor_olight", "fg": 6577, "bg": 6569 }, + { "id": "t_linoleum_gray_floor_olight", "fg": 6577, "bg": 6568 }, + { "id": "t_atm", "fg": 6578, "bg": 6563 }, + { "id": [ "t_barndoor", "t_palisade_pulley" ], "fg": 6579, "bg": 6560 }, + { "id": "t_column", "fg": 6580, "bg": 6563 }, { "id": "t_grass_long", "multitile": true, - "fg": 6519, - "bg": 6487, + "fg": 6599, + "bg": 6567, "additional_tiles": [ { "id": "center", - "bg": 6487, + "bg": 6567, "fg": [ - { "weight": 100, "sprite": 6501 }, - { "weight": 100, "sprite": 6502 }, - { "weight": 100, "sprite": 6503 }, - { "weight": 100, "sprite": 6504 } + { "weight": 100, "sprite": 6581 }, + { "weight": 100, "sprite": 6582 }, + { "weight": 100, "sprite": 6583 }, + { "weight": 100, "sprite": 6584 } ] }, - { "id": "corner", "bg": 6487, "fg": [ 6506, 6508, 6507, 6505 ] }, - { "id": "t_connection", "bg": 6487, "fg": [ 6516, 6518, 6517, 6515 ] }, - { "id": "edge", "bg": 6487, "fg": [ 6510, 6509 ] }, - { "id": "end_piece", "bg": 6487, "fg": [ 6512, 6514, 6513, 6511 ] }, + { "id": "corner", "bg": 6567, "fg": [ 6586, 6588, 6587, 6585 ] }, + { "id": "t_connection", "bg": 6567, "fg": [ 6596, 6598, 6597, 6595 ] }, + { "id": "edge", "bg": 6567, "fg": [ 6590, 6589 ] }, + { "id": "end_piece", "bg": 6567, "fg": [ 6592, 6594, 6593, 6591 ] }, { "id": "unconnected", - "bg": 6487, + "bg": 6567, "fg": [ - { "weight": 100, "sprite": 6519 }, - { "weight": 100, "sprite": 6520 }, - { "weight": 100, "sprite": 6521 }, - { "weight": 100, "sprite": 6522 } + { "weight": 100, "sprite": 6599 }, + { "weight": 100, "sprite": 6600 }, + { "weight": 100, "sprite": 6601 }, + { "weight": 100, "sprite": 6602 } ] } ] @@ -9861,31 +9914,31 @@ { "id": "t_grass_long_season_summer", "multitile": true, - "fg": 6563, - "bg": 6486, + "fg": 6643, + "bg": 6566, "additional_tiles": [ { "id": "center", - "bg": 6486, + "bg": 6566, "fg": [ - { "weight": 100, "sprite": 6545 }, - { "weight": 100, "sprite": 6546 }, - { "weight": 100, "sprite": 6547 }, - { "weight": 100, "sprite": 6548 } + { "weight": 100, "sprite": 6625 }, + { "weight": 100, "sprite": 6626 }, + { "weight": 100, "sprite": 6627 }, + { "weight": 100, "sprite": 6628 } ] }, - { "id": "corner", "bg": 6486, "fg": [ 6550, 6552, 6551, 6549 ] }, - { "id": "t_connection", "bg": 6486, "fg": [ 6560, 6562, 6561, 6559 ] }, - { "id": "edge", "bg": 6486, "fg": [ 6554, 6553 ] }, - { "id": "end_piece", "bg": 6486, "fg": [ 6556, 6558, 6557, 6555 ] }, + { "id": "corner", "bg": 6566, "fg": [ 6630, 6632, 6631, 6629 ] }, + { "id": "t_connection", "bg": 6566, "fg": [ 6640, 6642, 6641, 6639 ] }, + { "id": "edge", "bg": 6566, "fg": [ 6634, 6633 ] }, + { "id": "end_piece", "bg": 6566, "fg": [ 6636, 6638, 6637, 6635 ] }, { "id": "unconnected", - "bg": 6486, + "bg": 6566, "fg": [ - { "weight": 100, "sprite": 6563 }, - { "weight": 100, "sprite": 6564 }, - { "weight": 100, "sprite": 6565 }, - { "weight": 100, "sprite": 6566 } + { "weight": 100, "sprite": 6643 }, + { "weight": 100, "sprite": 6644 }, + { "weight": 100, "sprite": 6645 }, + { "weight": 100, "sprite": 6646 } ] } ] @@ -9893,64 +9946,64 @@ { "id": "t_grass_long_season_autumn", "multitile": true, - "fg": 6541, - "bg": 6485, + "fg": 6621, + "bg": 6565, "additional_tiles": [ { "id": "center", - "bg": 6485, + "bg": 6565, "fg": [ - { "weight": 100, "sprite": 6523 }, - { "weight": 100, "sprite": 6524 }, - { "weight": 100, "sprite": 6525 }, - { "weight": 100, "sprite": 6526 } + { "weight": 100, "sprite": 6603 }, + { "weight": 100, "sprite": 6604 }, + { "weight": 100, "sprite": 6605 }, + { "weight": 100, "sprite": 6606 } ] }, - { "id": "corner", "bg": 6485, "fg": [ 6528, 6530, 6529, 6527 ] }, - { "id": "t_connection", "bg": 6485, "fg": [ 6538, 6540, 6539, 6537 ] }, - { "id": "edge", "bg": 6485, "fg": [ 6532, 6531 ] }, - { "id": "end_piece", "bg": 6485, "fg": [ 6534, 6536, 6535, 6533 ] }, + { "id": "corner", "bg": 6565, "fg": [ 6608, 6610, 6609, 6607 ] }, + { "id": "t_connection", "bg": 6565, "fg": [ 6618, 6620, 6619, 6617 ] }, + { "id": "edge", "bg": 6565, "fg": [ 6612, 6611 ] }, + { "id": "end_piece", "bg": 6565, "fg": [ 6614, 6616, 6615, 6613 ] }, { "id": "unconnected", - "bg": 6485, + "bg": 6565, "fg": [ - { "weight": 100, "sprite": 6541 }, - { "weight": 100, "sprite": 6542 }, - { "weight": 100, "sprite": 6543 }, - { "weight": 100, "sprite": 6544 } + { "weight": 100, "sprite": 6621 }, + { "weight": 100, "sprite": 6622 }, + { "weight": 100, "sprite": 6623 }, + { "weight": 100, "sprite": 6624 } ] } ] }, - { "id": "t_grass_long_season_winter", "fg": 6481 }, + { "id": "t_grass_long_season_winter", "fg": 6561 }, { "id": "t_grass_tall", "multitile": true, - "fg": 6585, - "bg": 6487, + "fg": 6665, + "bg": 6567, "additional_tiles": [ { "id": "center", - "bg": 6487, + "bg": 6567, "fg": [ - { "weight": 100, "sprite": 6567 }, - { "weight": 100, "sprite": 6568 }, - { "weight": 100, "sprite": 6569 }, - { "weight": 100, "sprite": 6570 } + { "weight": 100, "sprite": 6647 }, + { "weight": 100, "sprite": 6648 }, + { "weight": 100, "sprite": 6649 }, + { "weight": 100, "sprite": 6650 } ] }, - { "id": "corner", "bg": 6487, "fg": [ 6572, 6574, 6573, 6571 ] }, - { "id": "t_connection", "bg": 6487, "fg": [ 6582, 6584, 6583, 6581 ] }, - { "id": "edge", "bg": 6487, "fg": [ 6576, 6575 ] }, - { "id": "end_piece", "bg": 6487, "fg": [ 6578, 6580, 6579, 6577 ] }, + { "id": "corner", "bg": 6567, "fg": [ 6652, 6654, 6653, 6651 ] }, + { "id": "t_connection", "bg": 6567, "fg": [ 6662, 6664, 6663, 6661 ] }, + { "id": "edge", "bg": 6567, "fg": [ 6656, 6655 ] }, + { "id": "end_piece", "bg": 6567, "fg": [ 6658, 6660, 6659, 6657 ] }, { "id": "unconnected", - "bg": 6487, + "bg": 6567, "fg": [ - { "weight": 100, "sprite": 6585 }, - { "weight": 100, "sprite": 6586 }, - { "weight": 100, "sprite": 6587 }, - { "weight": 100, "sprite": 6588 } + { "weight": 100, "sprite": 6665 }, + { "weight": 100, "sprite": 6666 }, + { "weight": 100, "sprite": 6667 }, + { "weight": 100, "sprite": 6668 } ] } ] @@ -9958,31 +10011,31 @@ { "id": "t_grass_tall_season_summer", "multitile": true, - "fg": 6629, - "bg": 6486, + "fg": 6709, + "bg": 6566, "additional_tiles": [ { "id": "center", - "bg": 6486, + "bg": 6566, "fg": [ - { "weight": 100, "sprite": 6611 }, - { "weight": 100, "sprite": 6612 }, - { "weight": 100, "sprite": 6613 }, - { "weight": 100, "sprite": 6614 } + { "weight": 100, "sprite": 6691 }, + { "weight": 100, "sprite": 6692 }, + { "weight": 100, "sprite": 6693 }, + { "weight": 100, "sprite": 6694 } ] }, - { "id": "corner", "bg": 6486, "fg": [ 6616, 6618, 6617, 6615 ] }, - { "id": "t_connection", "bg": 6486, "fg": [ 6626, 6628, 6627, 6625 ] }, - { "id": "edge", "bg": 6486, "fg": [ 6620, 6619 ] }, - { "id": "end_piece", "bg": 6486, "fg": [ 6622, 6624, 6623, 6621 ] }, + { "id": "corner", "bg": 6566, "fg": [ 6696, 6698, 6697, 6695 ] }, + { "id": "t_connection", "bg": 6566, "fg": [ 6706, 6708, 6707, 6705 ] }, + { "id": "edge", "bg": 6566, "fg": [ 6700, 6699 ] }, + { "id": "end_piece", "bg": 6566, "fg": [ 6702, 6704, 6703, 6701 ] }, { "id": "unconnected", - "bg": 6486, + "bg": 6566, "fg": [ - { "weight": 100, "sprite": 6629 }, - { "weight": 100, "sprite": 6630 }, - { "weight": 100, "sprite": 6631 }, - { "weight": 100, "sprite": 6632 } + { "weight": 100, "sprite": 6709 }, + { "weight": 100, "sprite": 6710 }, + { "weight": 100, "sprite": 6711 }, + { "weight": 100, "sprite": 6712 } ] } ] @@ -9990,513 +10043,633 @@ { "id": "t_grass_tall_season_autumn", "multitile": true, - "fg": 6607, - "bg": 6485, + "fg": 6687, + "bg": 6565, "additional_tiles": [ { "id": "center", - "bg": 6485, + "bg": 6565, "fg": [ - { "weight": 100, "sprite": 6589 }, - { "weight": 100, "sprite": 6590 }, - { "weight": 100, "sprite": 6591 }, - { "weight": 100, "sprite": 6592 } + { "weight": 100, "sprite": 6669 }, + { "weight": 100, "sprite": 6670 }, + { "weight": 100, "sprite": 6671 }, + { "weight": 100, "sprite": 6672 } ] }, - { "id": "corner", "bg": 6485, "fg": [ 6594, 6596, 6595, 6593 ] }, - { "id": "t_connection", "bg": 6485, "fg": [ 6604, 6606, 6605, 6603 ] }, - { "id": "edge", "bg": 6485, "fg": [ 6598, 6597 ] }, - { "id": "end_piece", "bg": 6485, "fg": [ 6600, 6602, 6601, 6599 ] }, + { "id": "corner", "bg": 6565, "fg": [ 6674, 6676, 6675, 6673 ] }, + { "id": "t_connection", "bg": 6565, "fg": [ 6684, 6686, 6685, 6683 ] }, + { "id": "edge", "bg": 6565, "fg": [ 6678, 6677 ] }, + { "id": "end_piece", "bg": 6565, "fg": [ 6680, 6682, 6681, 6679 ] }, { "id": "unconnected", - "bg": 6485, + "bg": 6565, "fg": [ - { "weight": 100, "sprite": 6607 }, - { "weight": 100, "sprite": 6608 }, - { "weight": 100, "sprite": 6609 }, - { "weight": 100, "sprite": 6610 } + { "weight": 100, "sprite": 6687 }, + { "weight": 100, "sprite": 6688 }, + { "weight": 100, "sprite": 6689 }, + { "weight": 100, "sprite": 6690 } ] } ] }, - { "id": "t_grass_tall_season_winter", "fg": 6481 }, - { "id": "t_gutter_downspout", "fg": 6633, "bg": 6487 }, - { "id": "t_gutter_downspout_season_autumn", "fg": 6633, "bg": 6485 }, - { "id": "t_gutter_downspout_season_summer", "fg": 6633, "bg": 6486 }, - { "id": "t_gutter_downspout_season_winter", "fg": 6633, "bg": 6482 }, - { "id": "t_little_column", "fg": 6634, "bg": 6483 }, - { "id": "t_stairs_up", "fg": 6636 }, - { "id": "t_wood_stairs_up", "fg": 6637 }, - { "id": "t_utility_light", "fg": 6638 }, - { "id": "t_ladder_up", "fg": 6495 }, - { "id": "t_ladder_up_down", "fg": 6496 }, - { "id": "t_radio_tower", "fg": 6635 }, - { "id": "t_window_stained_blue", "fg": 6639 }, - { "id": "t_window_stained_green", "fg": 6640 }, - { "id": "t_window_stained_red", "fg": 6641 } + { "id": "t_grass_tall_season_winter", "fg": 6561 }, + { "id": "t_gutter_downspout", "fg": 6713, "bg": 6567 }, + { "id": "t_gutter_downspout_season_autumn", "fg": 6713, "bg": 6565 }, + { "id": "t_gutter_downspout_season_summer", "fg": 6713, "bg": 6566 }, + { "id": "t_gutter_downspout_season_winter", "fg": 6713, "bg": 6562 }, + { "id": "t_little_column", "fg": 6714, "bg": 6563 }, + { "id": "t_stairs_up", "fg": 6716 }, + { "id": "t_wood_stairs_up", "fg": 6717 }, + { "id": "t_utility_light", "fg": 6718 }, + { "id": "t_ladder_up", "fg": 6575 }, + { "id": "t_ladder_up_down", "fg": 6576 }, + { "id": "t_radio_tower", "fg": 6715 }, + { "id": "t_window_stained_blue", "fg": 6719 }, + { "id": "t_window_stained_green", "fg": 6720 }, + { "id": "t_window_stained_red", "fg": 6721 } ] }, { "file": "tallvehicle.png", - "//": "range 6656 to 6719", + "//": "range 6736 to 6831", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, "sprite_offset_y": -32, "tiles": [ + { + "id": [ "vp_door_rear", "vp_door_horizontal_rear" ], + "fg": [ 6757, 6746, 6760, 6740 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6758, 6743, 6759, 6741 ] }, + { "id": "broken", "fg": [ 6739, 6739, 6739, 6739 ], "bg": [ 6758, 6743, 6759, 6741 ] } + ] + }, + { + "id": [ "vp_door_front", "vp_door_horizontal_front" ], + "fg": [ 6760, 6740, 6757, 6746 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6759, 6741, 6758, 6743 ] }, + { "id": "broken", "fg": [ 6739, 6739, 6739, 6739 ], "bg": [ 6759, 6741, 6758, 6743 ] } + ] + }, + { + "id": [ "vp_door_opaque_rear", "vp_door_opaque_horizontal_rear" ], + "fg": [ 6755, 6746, 6756, 6740 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6758, 6751, 6759, 6750 ] }, + { "id": "broken", "fg": [ 6739, 6739, 6739, 6739 ], "bg": [ 6758, 6751, 6759, 6750 ] } + ] + }, + { + "id": [ "vp_door_opaque_front", "vp_door_opaque_horizontal_front" ], + "fg": [ 6756, 6740, 6755, 6746 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6759, 6750, 6758, 6751 ] }, + { "id": "broken", "fg": [ 6739, 6739, 6739, 6739 ], "bg": [ 6759, 6750, 6758, 6751 ] } + ] + }, + { + "id": "vp_door_sliding", + "fg": [ 6746, 6756, 6740, 6754 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6783, 6784, 6785, 6786 ] }, + { "id": "broken", "fg": [ 6739, 6739, 6739, 6739 ], "bg": [ 6783, 6784, 6785, 6786 ] } + ] + }, + { + "id": [ + "vp_door_full_left", + "vp_door_full_vertical_left", + "vp_door_full_nw", + "vp_door_full_front_left", + "vp_door_full_sw", + "vp_door_full_rear_left" + ], + "fg": [ 6740, 6747, 6746, 6745 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6741, 6744, 6743, 6742 ] }, + { "id": "broken", "fg": [ 6739, 6739, 6739, 6739 ], "bg": [ 6741, 6744, 6743, 6742 ] } + ] + }, + { + "id": [ + "vp_door_full_right", + "vp_door_full_vertical_right", + "vp_door_full_ne", + "vp_door_full_front_right", + "vp_door_full_se", + "vp_door_full_rear_right" + ], + "fg": [ 6746, 6760, 6740, 6749 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6743, 6759, 6741, 6748 ] }, + { "id": "broken", "fg": [ 6739, 6739, 6739, 6739 ], "bg": [ 6743, 6759, 6741, 6748 ] } + ] + }, + { + "id": "vp_door_opaque_full_left", + "fg": [ 6740, 6753, 6746, 6752 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6750, 6744, 6751, 6742 ] }, + { "id": "broken", "fg": [ 6739, 6739, 6739, 6739 ], "bg": [ 6750, 6744, 6751, 6742 ] } + ] + }, + { + "id": "vp_door_opaque_full_right", + "fg": [ 6746, 6756, 6740, 6754 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6751, 6759, 6750, 6748 ] }, + { "id": "broken", "fg": [ 6739, 6739, 6739, 6739 ], "bg": [ 6751, 6759, 6750, 6748 ] } + ] + }, + { + "id": [ "vp_door", "vp_door_internal", "vp_door_opaque" ], + "fg": [ 6768, 6772, 6770, 6767 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6769, 6766, 6771, 6765 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 6769, 6766, 6771, 6765 ] } + ] + }, + { + "id": "vp_door_internal_front", + "fg": [ 6756, 6740, 6764, 6746 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6759, 6763, 6762, 6761 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 6759, 6763, 6762, 6761 ] } + ] + }, + { + "id": "vp_door_shutter", + "fg": [ 6775, 6773, 6774, 6776 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6780, 6778, 6779, 6781 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 6780, 6778, 6779, 6781 ] } + ] + }, + { + "id": "vp_door_shutter_left", + "fg": [ 6776, 6777, 6773, 6774 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6781, 6782, 6778, 6779 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 6781, 6782, 6778, 6779 ] } + ] + }, + { + "id": "vp_door_shutter_right", + "fg": [ 6773, 6774, 6776, 6777 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 6778, 6779, 6781, 6782 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 6778, 6779, 6781, 6782 ] } + ] + }, { "id": "vp_frame_handle", - "fg": [ 6661, 6663, 6662, 6660 ], + "fg": [ 6788, 6790, 6789, 6787 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6661, 6663, 6662, 6660 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6788, 6790, 6789, 6787 ] } ] }, { "id": "vp_stowboard_ne", - "fg": [ 6669, 6672, 6671, 6670 ], + "fg": [ 6797, 6800, 6799, 6798 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6669, 6672, 6671, 6670 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6797, 6800, 6799, 6798 ] } ] }, { "id": "vp_stowboard_nw", - "fg": [ 6673, 6676, 6675, 6674 ], + "fg": [ 6800, 6802, 6801, 6797 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6673, 6676, 6675, 6674 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6800, 6802, 6801, 6797 ] } ] }, { "id": "vp_stowboard_se", - "fg": [ 6677, 6679, 6673, 6678 ], + "fg": [ 6803, 6797, 6800, 6804 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6677, 6679, 6673, 6678 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6803, 6797, 6800, 6804 ] } ] }, { "id": "vp_stowboard_sw", - "fg": [ 6680, 6682, 6669, 6681 ], + "fg": [ 6805, 6806, 6797, 6800 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6680, 6682, 6669, 6681 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6805, 6806, 6797, 6800 ] } ] }, { "id": "vp_stowboard_vertical_left", - "fg": [ 6683, 6685, 6686, 6684 ], + "fg": [ 6794, 6807, 6792, 6791 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6683, 6685, 6686, 6684 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6794, 6807, 6792, 6791 ] } ] }, { "id": "vp_stowboard_vertical_right", - "fg": [ 6686, 6684, 6683, 6685 ], + "fg": [ 6792, 6791, 6794, 6807 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6686, 6684, 6683, 6685 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6792, 6791, 6794, 6807 ] } ] }, { "id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_2" ], - "fg": [ 6664, 6687, 6664, 6687 ], + "fg": [ 6791, 6796, 6791, 6808 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6664, 6687, 6664, 6687 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6791, 6796, 6791, 6808 ] } ] }, { "id": "vp_stowboard_horizontal_front", - "fg": [ 6664, 6667, 6666, 6665 ], + "fg": [ 6791, 6794, 6793, 6792 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6664, 6667, 6666, 6665 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6791, 6794, 6793, 6792 ] } ] }, { "id": "vp_stowboard_horizontal_rear", - "fg": [ 6668, 6665, 6664, 6667 ], + "fg": [ 6795, 6792, 6791, 6794 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6668, 6665, 6664, 6667 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6795, 6792, 6791, 6794 ] } ] }, { "id": [ "vp_stowboard_vertical", "vp_stowboard_vertical_2" ], - "fg": [ 6687, 6664, 6687, 6664 ], + "fg": [ 6808, 6791, 6808, 6791 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6687, 6664, 6687, 6664 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6808, 6791, 6808, 6791 ] } ] }, { "id": "vp_stowboard_wheel_left", - "fg": [ 6667, 6688, 6665, 6684 ], + "fg": [ 6794, 6809, 6792, 6791 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6667, 6688, 6665, 6684 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6794, 6809, 6792, 6791 ] } ] }, { "id": "vp_stowboard_wheel_right", - "fg": [ 6665, 6684, 6667, 6688 ], + "fg": [ 6792, 6791, 6794, 6809 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 6665, 6684, 6667, 6688 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 6792, 6791, 6794, 6809 ] } ] }, { "id": "vp_door_trunk", - "fg": [ 6689, 6696, 6695, 6694 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6690, 6693, 6692, 6691 ] }, - { "id": "broken", "fg": [ 6659, 6659, 6659, 6659 ], "bg": [ 6690, 6693, 6692, 6691 ] } - ] - }, - { - "id": "vp_door_trunk_horizontal_2", - "fg": [ 6697, 6704, 6703, 6702 ], + "fg": [ 6810, 6817, 6816, 6815 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6698, 6701, 6700, 6699 ] }, - { "id": "broken", "fg": [ 6659, 6659, 6659, 6659 ], "bg": [ 6698, 6701, 6700, 6699 ] } + { "id": "open", "fg": [ 6811, 6814, 6813, 6812 ] }, + { "id": "broken", "fg": [ 6739, 6739, 6739, 6739 ], "bg": [ 6811, 6814, 6813, 6812 ] } ] }, - { "id": "crack_glass_center_tall", "fg": 6656 }, - { "id": "crack_glass_left_tall", "fg": 6657 }, - { "id": "crack_glass_right_tall", "fg": 6658 }, - { "id": "vp_travois", "fg": 6705 } + { "id": "crack_glass_center_tall", "fg": 6736 }, + { "id": "crack_glass_left_tall", "fg": 6737 }, + { "id": "crack_glass_right_tall", "fg": 6738 }, + { "id": "vp_travois", "fg": 6818 } ] }, { "file": "huge.png", - "//": "range 6720 to 6751", + "//": "range 6832 to 6863", "sprite_width": 64, "sprite_height": 96, "sprite_offset_x": -16, "sprite_offset_y": -64, "tiles": [ - { "id": "mon_zombie_nemesis", "fg": 6727, "bg": 6720 }, - { "id": "mon_skeleton_hulk_fungus", "fg": 6724 }, - { "id": "mon_mutant_evolved", "fg": 6730 }, - { "id": "mon_mutant_mollusk", "fg": 6731 }, - { "id": "corpse_mon_nakedmolerat_giant", "fg": 6732 } + { "id": "mon_zombie_nemesis", "fg": 6839, "bg": 6832 }, + { "id": "mon_skeleton_hulk_fungus", "fg": 6836 }, + { "id": "mon_mutant_evolved", "fg": 6842 }, + { "id": "mon_mutant_mollusk", "fg": 6843 }, + { "id": "corpse_mon_nakedmolerat_giant", "fg": 6844 } ] }, { "file": "centered.png", - "//": "range 6752 to 6767", + "//": "range 6864 to 6879", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -16, "tiles": [ - { "id": "vp_wing_mirror", "fg": [ 6761, 6763, 6762, 6760 ], "rotates": true }, - { "id": "vp_wing_mirror_left", "fg": [ 6753, 6755, 6754, 6752 ], "rotates": true }, - { "id": "vp_wing_mirror_right", "fg": [ 6757, 6759, 6758, 6756 ], "rotates": true } + { "id": "vp_wing_mirror", "fg": [ 6873, 6875, 6874, 6872 ], "rotates": true }, + { "id": "vp_wing_mirror_left", "fg": [ 6865, 6867, 6866, 6864 ], "rotates": true }, + { "id": "vp_wing_mirror_right", "fg": [ 6869, 6871, 6870, 6868 ], "rotates": true } ] }, { "file": "large.png", - "//": "range 6768 to 6943", + "//": "range 6880 to 7055", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -32, "tiles": [ - { "id": "f_CTscan", "fg": 6773 }, - { "id": "f_MRI", "fg": 6774 }, - { "id": "f_rotary_clothesline", "fg": 6775 }, - { "id": "mon_troll", "fg": 6777, "bg": 6782 }, - { "id": "mon_smoker_brute", "fg": 6780, "bg": 6783 }, + { "id": "f_CTscan", "fg": 6885 }, + { "id": "f_MRI", "fg": 6886 }, + { "id": "f_rotary_clothesline", "fg": 6887 }, + { "id": "mon_troll", "fg": 6889, "bg": 6894 }, + { "id": "mon_smoker_brute", "fg": 6892, "bg": 6895 }, { "id": "mon_exodii_quad", "fg": [ - { "weight": 15, "sprite": 6785 }, - { "weight": 10, "sprite": 6786 }, - { "weight": 15, "sprite": 6787 }, - { "weight": 15, "sprite": 6788 } + { "weight": 15, "sprite": 6897 }, + { "weight": 10, "sprite": 6898 }, + { "weight": 15, "sprite": 6899 }, + { "weight": 15, "sprite": 6900 } ], - "bg": 6782 + "bg": 6894 }, { "id": "mon_exodii_turret", "fg": [ - { "weight": 15, "sprite": 6789 }, - { "weight": 5, "sprite": 6790 }, - { "weight": 15, "sprite": 6791 }, - { "weight": 15, "sprite": 6792 } + { "weight": 15, "sprite": 6901 }, + { "weight": 5, "sprite": 6902 }, + { "weight": 15, "sprite": 6903 }, + { "weight": 15, "sprite": 6904 } ], - "bg": 6783 + "bg": 6895 }, - { "id": "mon_giant_crayfish", "fg": 6794, "bg": 6783 }, - { "id": "mon_slug_giant", "fg": 6795, "bg": 6782 }, - { "id": "mon_dog_zombie_hulk", "fg": 6796, "bg": 6783 }, - { "id": "corpse_mon_ant_soldier", "fg": 6801 }, - { "id": "corpse_mon_ant_acid_soldier", "fg": 6799 }, - { "id": "corpse_mon_ant_queen", "fg": 6800 }, - { "id": "corpse_mon_ant_acid_queen", "fg": 6798 }, - { "id": "mon_bear_mutant_3headed", "fg": 6807, "bg": 6783 }, + { "id": "mon_giant_crayfish", "fg": 6906, "bg": 6895 }, + { "id": "mon_slug_giant", "fg": 6907, "bg": 6894 }, + { "id": "mon_dog_zombie_hulk", "fg": 6908, "bg": 6895 }, + { "id": "corpse_mon_ant_soldier", "fg": 6913 }, + { "id": "corpse_mon_ant_acid_soldier", "fg": 6911 }, + { "id": "corpse_mon_ant_queen", "fg": 6912 }, + { "id": "corpse_mon_ant_acid_queen", "fg": 6910 }, + { "id": "mon_bear_mutant_3headed", "fg": 6919, "bg": 6895 }, { "id": "mon_deer_mutant_spider", - "fg": [ { "weight": 1, "sprite": 6820 }, { "weight": 2, "sprite": 6821 } ], - "bg": 6783 - }, - { "id": "mon_dog_skeleton_brute", "fg": 6822, "bg": 6783 }, - { "id": "mon_dog_zombie_brute", "fg": 6823, "bg": 6783 }, - { - "id": "mon_lady_bug_giant", - "fg": [ - { "weight": 90, "sprite": 6833 }, - { "weight": 60, "sprite": 6834 }, - { "weight": 50, "sprite": 6835 }, - { "weight": 20, "sprite": 6836 }, - { "weight": 1, "sprite": 6837 } - ], - "bg": 6783 - }, - { "id": "mon_mi_go_scout", "fg": 6839, "bg": 6783 }, - { "id": "mon_reindeer", "fg": 6844, "bg": 6783 }, - { "id": "mon_spider_fungus", "fg": 6845, "bg": 6784 }, - { "id": "mon_tiger", "fg": 6846, "bg": 6783 }, - { "id": "mon_wolf_mutant_huge", "fg": 6849, "bg": 6782 }, - { "id": "mon_zeer", "fg": 6851, "bg": 6783 }, - { "id": "mon_zeindeer", "fg": 6852, "bg": 6783 }, - { "id": "mon_ziger", "fg": 6853, "bg": 6783 }, - { "id": "mon_zombear_acidic", "fg": 6855, "bg": 6783 }, - { "id": "mon_zombear_skeleton", "fg": 6856, "bg": 6783 }, - { "id": "mon_zombie_brute_winged", "fg": 6858, "bg": 6782 }, - { "id": "mon_zombie_dog_brute_acidic", "fg": 6859, "bg": 6783 }, - { "id": "mon_zombie_smoker_fungus", "fg": 6865, "bg": 6784 }, - { "id": "mon_zombull", "fg": 6866, "bg": 6783 }, - { "id": "mon_zoose_brute", "fg": 6868, "bg": 6782 }, - { "id": "mon_zoose_thorny", "fg": 6869, "bg": 6782 }, - { "id": "mon_nursebot_defective", "fg": 6870, "bg": 6784 }, - { "id": "corpse_mon_spider_web", "fg": 6875 }, - { "id": "corpse_mon_spider_wolf_giant", "fg": 6876 }, - { "id": "mon_dermatik_incubator_spider", "fg": 6877, "bg": 6784 }, - { "id": "corpse_mon_dermatik_incubator_spider", "fg": 6875 }, - { "id": "mon_spider_cellar_mega", "fg": 6879, "bg": 6783 }, - { "id": "mon_spider_jumping_mega", "fg": 6881, "bg": 6783 }, - { "id": "mon_spider_trapdoor_mega", "fg": 6883, "bg": 6782 }, - { "id": "mon_spider_widow_mega", "fg": 6887, "bg": 6782 }, - { "id": "mon_spider_wolf_mega", "fg": 6889, "bg": 6782 }, - { "id": "mon_thing", "fg": 6892, "bg": 6782 }, - { "id": "mon_crows_m240", "fg": 6894, "bg": 6783 }, - { "id": "mon_turret_bmg", "fg": 6895, "bg": 6783 }, - { "id": "mon_turret_rifle", "fg": 6896, "bg": 6783 }, + "fg": [ { "weight": 1, "sprite": 6932 }, { "weight": 2, "sprite": 6933 } ], + "bg": 6895 + }, + { "id": "mon_dog_skeleton_brute", "fg": 6934, "bg": 6895 }, + { "id": "mon_dog_zombie_brute", "fg": 6935, "bg": 6895 }, + { "id": "mon_mi_go_scout", "fg": 6951, "bg": 6895 }, + { "id": "mon_reindeer", "fg": 6956, "bg": 6895 }, + { "id": "mon_spider_fungus", "fg": 6957, "bg": 6896 }, + { "id": "mon_tiger", "fg": 6958, "bg": 6895 }, + { "id": "mon_wolf_mutant_huge", "fg": 6961, "bg": 6894 }, + { "id": "mon_zeer", "fg": 6963, "bg": 6895 }, + { "id": "mon_zeindeer", "fg": 6964, "bg": 6895 }, + { "id": "mon_ziger", "fg": 6965, "bg": 6895 }, + { "id": "mon_zombear_acidic", "fg": 6967, "bg": 6895 }, + { "id": "mon_zombear_skeleton", "fg": 6968, "bg": 6895 }, + { "id": "mon_zombie_brute_winged", "fg": 6970, "bg": 6894 }, + { "id": "mon_zombie_dog_brute_acidic", "fg": 6971, "bg": 6895 }, + { "id": "mon_zombie_smoker_fungus", "fg": 6977, "bg": 6896 }, + { "id": "mon_zombull", "fg": 6978, "bg": 6895 }, + { "id": "mon_zoose_brute", "fg": 6980, "bg": 6894 }, + { "id": "mon_zoose_thorny", "fg": 6981, "bg": 6894 }, + { "id": "mon_nursebot_defective", "fg": 6982, "bg": 6896 }, + { "id": "corpse_mon_spider_web", "fg": 6987 }, + { "id": "corpse_mon_spider_wolf_giant", "fg": 6988 }, + { "id": "mon_dermatik_incubator_spider", "fg": 6989, "bg": 6896 }, + { "id": "corpse_mon_dermatik_incubator_spider", "fg": 6987 }, + { "id": "mon_spider_cellar_mega", "fg": 6991, "bg": 6895 }, + { "id": "mon_spider_jumping_mega", "fg": 6993, "bg": 6895 }, + { "id": "mon_spider_trapdoor_mega", "fg": 6995, "bg": 6894 }, + { "id": "mon_spider_widow_mega", "fg": 6999, "bg": 6894 }, + { "id": "mon_spider_wolf_mega", "fg": 7001, "bg": 6894 }, + { "id": "mon_thing", "fg": 7004, "bg": 6894 }, + { "id": "mon_crows_m240", "fg": 7006, "bg": 6895 }, + { "id": "mon_turret_bmg", "fg": 7007, "bg": 6895 }, + { "id": "mon_turret_rifle", "fg": 7008, "bg": 6895 }, { "id": [ "forest_thick", "special_forest_thick" ], - "fg": [ { "weight": 4, "sprite": 6905 }, { "weight": 1, "sprite": 6906 } ], - "bg": 6917, + "fg": [ { "weight": 4, "sprite": 7017 }, { "weight": 1, "sprite": 7018 } ], + "bg": 7029, "rotates": false }, - { "id": "bridgehead_ground", "fg": [ 6910, 6909, 6911, 6912 ], "bg": 6919, "rotates": true }, - { "id": "bridge", "fg": [ 6908, 6907, 6908, 6907 ], "bg": 6918, "rotates": true }, - { "id": "bridgehead_ramp", "fg": [ 6914, 6913, 6915, 6916 ], "rotates": true }, - { "id": "bridge_road", "fg": [ 6908, 6907, 6908, 6907 ], "rotates": true }, - { "id": "t_tree_young", "fg": 6926, "bg": 6922 }, - { "id": "t_tree_young_season_summer", "fg": 6925, "bg": 6923, "rotates": false }, + { "id": "bridgehead_ground", "fg": [ 7022, 7021, 7023, 7024 ], "bg": 7031, "rotates": true }, + { "id": "bridge", "fg": [ 7020, 7019, 7020, 7019 ], "bg": 7030, "rotates": true }, + { "id": "bridgehead_ramp", "fg": [ 7026, 7025, 7027, 7028 ], "rotates": true }, + { "id": "bridge_road", "fg": [ 7020, 7019, 7020, 7019 ], "rotates": true }, + { "id": "t_tree_young", "fg": 7038, "bg": 7034 }, + { "id": "t_tree_young_season_summer", "fg": 7037, "bg": 7035, "rotates": false }, { "id": "t_tree_young_season_autumn", - "fg": [ { "weight": 100, "sprite": 6927 }, { "weight": 100, "sprite": 6928 } ], - "bg": 6921, + "fg": [ { "weight": 100, "sprite": 7039 }, { "weight": 100, "sprite": 7040 } ], + "bg": 7033, "rotates": false }, - { "id": "t_tree_young_season_winter", "fg": 6929, "bg": 6920, "rotates": false }, - { "id": "t_vat", "fg": 6930, "bg": 6924 }, - { "id": "corpse_mon_zombie_spitter", "fg": 6768 }, - { "id": "f_exodii_generator_1", "fg": 6769 }, - { "id": "f_exodii_generator_2", "fg": 6770 }, - { "id": "f_exodii_generator_3", "fg": 6771 }, - { "id": "f_exodii_generator_4", "fg": 6772 }, - { "id": "f_magiclysm_translocator_gate", "fg": 6776 }, - { "id": "mon_blood_sacrifice", "fg": 6809 }, - { "id": "mon_mutant_arthropod", "fg": 6842 }, - { "id": "mon_leech_blossom", "fg": 6871 }, - { "id": "mon_leech_radio", "fg": 6872 }, - { "id": "overlay_wielded_as50", "fg": 6900 } + { "id": "t_tree_young_season_winter", "fg": 7041, "bg": 7032, "rotates": false }, + { "id": "t_vat", "fg": 7042, "bg": 7036 }, + { "id": "corpse_mon_zombie_spitter", "fg": 6880 }, + { "id": "f_exodii_generator_1", "fg": 6881 }, + { "id": "f_exodii_generator_2", "fg": 6882 }, + { "id": "f_exodii_generator_3", "fg": 6883 }, + { "id": "f_exodii_generator_4", "fg": 6884 }, + { "id": "f_magiclysm_translocator_gate", "fg": 6888 }, + { "id": "mon_blood_sacrifice", "fg": 6921 }, + { "id": "mon_mutant_arthropod", "fg": 6954 }, + { "id": "mon_leech_blossom", "fg": 6983 }, + { "id": "mon_leech_radio", "fg": 6984 }, + { "id": "overlay_wielded_as50", "fg": 7012 } ] }, { "file": "giant.png", - "//": "range 6944 to 7007", + "//": "range 7056 to 7119", "sprite_width": 96, "sprite_height": 96, "sprite_offset_x": -32, "sprite_offset_y": -64, "tiles": [ - { "id": "t_tree", "fg": 6956, "bg": 6949 }, - { "id": "t_tree_season_summer", "fg": 6951, "bg": 6950 }, + { "id": "t_tree", "fg": 7068, "bg": 7061 }, + { "id": "t_tree_season_summer", "fg": 7063, "bg": 7062 }, { "id": "t_tree_season_autumn", "fg": [ - { "weight": 100, "sprite": 6952 }, - { "weight": 100, "sprite": 6953 }, - { "weight": 100, "sprite": 6954 }, - { "weight": 100, "sprite": 6955 } + { "weight": 100, "sprite": 7064 }, + { "weight": 100, "sprite": 7065 }, + { "weight": 100, "sprite": 7066 }, + { "weight": 100, "sprite": 7067 } ], - "bg": 6948 + "bg": 7060 }, - { "id": "t_tree_season_winter", "fg": 6980, "bg": 6947 }, - { "id": "t_tree_apple", "fg": 6957, "bg": 6949 }, - { "id": "t_tree_apple_season_summer", "fg": 6957, "bg": 6950 }, - { "id": "t_tree_apple_season_winter", "fg": 6962, "bg": 6947 }, + { "id": "t_tree_season_winter", "fg": 7092, "bg": 7059 }, + { "id": "t_tree_apple", "fg": 7069, "bg": 7061 }, + { "id": "t_tree_apple_season_summer", "fg": 7069, "bg": 7062 }, + { "id": "t_tree_apple_season_winter", "fg": 7074, "bg": 7059 }, { "id": "t_tree_apple_season_autumn", - "fg": [ { "weight": 1, "sprite": 6958 }, { "weight": 1, "sprite": 6959 } ], - "bg": 6948 + "fg": [ { "weight": 1, "sprite": 7070 }, { "weight": 1, "sprite": 7071 } ], + "bg": 7060 }, { "id": "t_tree_apple_harvested", - "fg": [ { "weight": 1, "sprite": 6960 }, { "weight": 1, "sprite": 6961 } ], - "bg": 6948 + "fg": [ { "weight": 1, "sprite": 7072 }, { "weight": 1, "sprite": 7073 } ], + "bg": 7060 }, - { "id": "t_tree_beech", "fg": 6964, "bg": 6949 }, - { "id": "t_tree_beech_season_summer", "fg": 6965, "bg": 6950 }, - { "id": "t_tree_beech_season_autumn", "fg": 6963, "bg": 6948 }, - { "id": "t_tree_beech_season_winter", "fg": 6966, "bg": 6947 }, - { "id": "t_tree_birch", "fg": 6967, "bg": 6949 }, - { "id": "t_tree_birch_season_summer", "fg": 6967, "bg": 6950 }, - { "id": "t_tree_birch_season_winter", "fg": 6970, "bg": 6947 }, + { "id": "t_tree_beech", "fg": 7076, "bg": 7061 }, + { "id": "t_tree_beech_season_summer", "fg": 7077, "bg": 7062 }, + { "id": "t_tree_beech_season_autumn", "fg": 7075, "bg": 7060 }, + { "id": "t_tree_beech_season_winter", "fg": 7078, "bg": 7059 }, + { "id": "t_tree_birch", "fg": 7079, "bg": 7061 }, + { "id": "t_tree_birch_season_summer", "fg": 7079, "bg": 7062 }, + { "id": "t_tree_birch_season_winter", "fg": 7082, "bg": 7059 }, { "id": "t_tree_birch_season_autumn", - "fg": [ { "weight": 1, "sprite": 6968 }, { "weight": 1, "sprite": 6969 } ], - "bg": 6948 + "fg": [ { "weight": 1, "sprite": 7080 }, { "weight": 1, "sprite": 7081 } ], + "bg": 7060 }, - { "id": "t_tree_cherry", "fg": 6971, "bg": 6949 }, - { "id": "t_tree_cherry_season_summer", "fg": 6975, "bg": 6950 }, - { "id": "t_tree_cherry_harvested", "fg": 6974, "bg": 6950 }, - { "id": "t_tree_cherry_season_winter", "fg": 6976, "bg": 6947 }, + { "id": "t_tree_cherry", "fg": 7083, "bg": 7061 }, + { "id": "t_tree_cherry_season_summer", "fg": 7087, "bg": 7062 }, + { "id": "t_tree_cherry_harvested", "fg": 7086, "bg": 7062 }, + { "id": "t_tree_cherry_season_winter", "fg": 7088, "bg": 7059 }, { "id": "t_tree_cherry_season_autumn", - "fg": [ { "weight": 1, "sprite": 6972 }, { "weight": 1, "sprite": 6973 } ], - "bg": 6948 + "fg": [ { "weight": 1, "sprite": 7084 }, { "weight": 1, "sprite": 7085 } ], + "bg": 7060 }, - { "id": "t_tree_cottonwood_season_spring", "fg": 6978, "bg": 6949 }, - { "id": "t_tree_cottonwood_season_summer", "fg": 6979, "bg": 6950 }, - { "id": "t_tree_cottonwood_season_autumn", "fg": 6977, "bg": 6948 }, - { "id": "t_tree_cottonwood_season_winter", "fg": 6980, "bg": 6947 }, + { "id": "t_tree_cottonwood_season_spring", "fg": 7090, "bg": 7061 }, + { "id": "t_tree_cottonwood_season_summer", "fg": 7091, "bg": 7062 }, + { "id": "t_tree_cottonwood_season_autumn", "fg": 7089, "bg": 7060 }, + { "id": "t_tree_cottonwood_season_winter", "fg": 7092, "bg": 7059 }, { "id": "t_tree_dead", - "fg": [ { "weight": 100, "sprite": 6980 }, { "weight": 100, "sprite": 8452 } ], - "bg": 6949 + "fg": [ { "weight": 100, "sprite": 7092 }, { "weight": 100, "sprite": 8516 } ], + "bg": 7061 }, { "id": "t_tree_dead_season_summer", - "fg": [ { "weight": 100, "sprite": 6980 }, { "weight": 100, "sprite": 8452 } ], - "bg": 6950 + "fg": [ { "weight": 100, "sprite": 7092 }, { "weight": 100, "sprite": 8516 } ], + "bg": 7062 }, { "id": "t_tree_dead_season_autumn", - "fg": [ { "weight": 100, "sprite": 6980 }, { "weight": 100, "sprite": 8452 } ], - "bg": 6948 + "fg": [ { "weight": 100, "sprite": 7092 }, { "weight": 100, "sprite": 8516 } ], + "bg": 7060 }, { "id": "t_tree_dead_season_winter", - "fg": [ { "weight": 100, "sprite": 6980 }, { "weight": 100, "sprite": 8452 } ], - "bg": 6947 - }, - { "id": "t_tree_elm_season_spring", "fg": 6982, "bg": 6949 }, - { "id": "t_tree_elm_season_summer", "fg": 6983, "bg": 6950 }, - { "id": "t_tree_elm_season_autumn", "fg": 6981, "bg": 6948 }, - { "id": "t_tree_elm_season_winter", "fg": 6984, "bg": 6947 }, - { "id": "t_tree_maple", "fg": 6986, "bg": 6949 }, - { "id": "t_tree_maple_season_summer", "fg": 6987, "bg": 6950 }, - { "id": "t_tree_maple_season_autumn", "fg": 6985, "bg": 6948 }, - { "id": "t_tree_maple_season_winter", "fg": 6988, "bg": 6947 }, - { "id": "t_tree_peach_season_spring", "fg": 6989, "bg": 6949 }, - { "id": "t_tree_peach_season_summer", "fg": 6992, "bg": 6950 }, - { "id": "t_tree_peach_harvested", "fg": 6989, "bg": 6950 }, - { "id": "t_tree_peach_season_winter", "fg": 6993, "bg": 6947 }, + "fg": [ { "weight": 100, "sprite": 7092 }, { "weight": 100, "sprite": 8516 } ], + "bg": 7059 + }, + { "id": "t_tree_elm_season_spring", "fg": 7094, "bg": 7061 }, + { "id": "t_tree_elm_season_summer", "fg": 7095, "bg": 7062 }, + { "id": "t_tree_elm_season_autumn", "fg": 7093, "bg": 7060 }, + { "id": "t_tree_elm_season_winter", "fg": 7096, "bg": 7059 }, + { "id": "t_tree_maple", "fg": 7098, "bg": 7061 }, + { "id": "t_tree_maple_season_summer", "fg": 7099, "bg": 7062 }, + { "id": "t_tree_maple_season_autumn", "fg": 7097, "bg": 7060 }, + { "id": "t_tree_maple_season_winter", "fg": 7100, "bg": 7059 }, + { "id": "t_tree_peach_season_spring", "fg": 7101, "bg": 7061 }, + { "id": "t_tree_peach_season_summer", "fg": 7104, "bg": 7062 }, + { "id": "t_tree_peach_harvested", "fg": 7101, "bg": 7062 }, + { "id": "t_tree_peach_season_winter", "fg": 7105, "bg": 7059 }, { "id": "t_tree_peach_season_autumn", - "fg": [ { "weight": 1, "sprite": 6990 }, { "weight": 1, "sprite": 6991 } ], - "bg": 6948 + "fg": [ { "weight": 1, "sprite": 7102 }, { "weight": 1, "sprite": 7103 } ], + "bg": 7060 }, - { "id": "mon_ant_soldier_mega", "fg": 6944 }, - { "id": "mon_dragon_dummy", "fg": 6945 } + { "id": "mon_ant_soldier_mega", "fg": 7056 }, + { "id": "mon_dragon_dummy", "fg": 7057 } ] }, { "file": "incomplete.png", - "//": "range 7008 to 7807", + "//": "range 7120 to 7903", "tiles": [ - { "id": "unknown", "fg": 7008 }, + { "id": "unknown", "fg": 7120 }, { "id": "fd_blood", - "fg": 7040, + "fg": 7152, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7009 }, - { "id": "corner", "fg": [ 7011, 7013, 7012, 7010 ] }, - { "id": "t_connection", "fg": [ 7037, 7039, 7038, 7036 ] }, - { "id": "edge", "fg": [ 7015, 7014 ] }, - { "id": "end_piece", "fg": [ 7017, 7019, 7018, 7016 ] }, - { "id": "unconnected", "fg": [ 7040, 7040 ] } + { "id": "center", "fg": 7121 }, + { "id": "corner", "fg": [ 7123, 7125, 7124, 7122 ] }, + { "id": "t_connection", "fg": [ 7149, 7151, 7150, 7148 ] }, + { "id": "edge", "fg": [ 7127, 7126 ] }, + { "id": "end_piece", "fg": [ 7129, 7131, 7130, 7128 ] }, + { "id": "unconnected", "fg": [ 7152, 7152 ] } ] }, { "id": [ "fd_blood_insect", "fd_blood_invertebrate" ], - "fg": 7035, + "fg": 7147, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7020 }, - { "id": "corner", "fg": [ 7022, 7024, 7023, 7021 ] }, - { "id": "t_connection", "fg": [ 7032, 7034, 7033, 7031 ] }, - { "id": "edge", "fg": [ 7026, 7025 ] }, - { "id": "end_piece", "fg": [ 7028, 7030, 7029, 7027 ] }, - { "id": "unconnected", "fg": [ 7035, 7035 ] } + { "id": "center", "fg": 7132 }, + { "id": "corner", "fg": [ 7134, 7136, 7135, 7133 ] }, + { "id": "t_connection", "fg": [ 7144, 7146, 7145, 7143 ] }, + { "id": "edge", "fg": [ 7138, 7137 ] }, + { "id": "end_piece", "fg": [ 7140, 7142, 7141, 7139 ] }, + { "id": "unconnected", "fg": [ 7147, 7147 ] } ] }, { "id": "fd_web", "fg": [ - { "weight": 100, "sprite": 7041 }, - { "weight": 100, "sprite": 7042 }, - { "weight": 25, "sprite": 7043 }, - { "weight": 25, "sprite": 7044 } - ] - }, - { "id": "fd_spotlight", "fg": 7045 }, - { "id": "f_makeshift_bed", "fg": 7048 }, - { "id": "f_straw_bed", "fg": 7049 }, - { "id": "f_bed_frame", "fg": 7046 }, - { "id": "f_camp_chair", "fg": 7053 }, - { "id": "f_lane", "fg": 7054 }, - { "id": "f_piano", "fg": 7055 }, - { "id": "f_pinball_machine", "fg": 7056 }, - { "id": "f_seat_airplane", "fg": 7057 }, + { "weight": 100, "sprite": 7153 }, + { "weight": 100, "sprite": 7154 }, + { "weight": 25, "sprite": 7155 }, + { "weight": 25, "sprite": 7156 } + ] + }, + { "id": "fd_spotlight", "fg": 7157 }, + { "id": "f_makeshift_bed", "fg": 7160 }, + { "id": "f_straw_bed", "fg": 7161 }, + { "id": "f_bed_frame", "fg": 7158 }, + { "id": "f_camp_chair", "fg": 7165 }, + { "id": "f_lane", "fg": 7166 }, + { "id": "f_piano", "fg": 7167 }, + { "id": "f_pinball_machine", "fg": 7168 }, + { "id": "f_seat_airplane", "fg": 7169 }, { "id": "f_sink", "multitile": true, - "fg": 7073, - "additional_tiles": [ - { "id": "center", "fg": 7058 }, - { "id": "corner", "fg": [ 7060, 7062, 7061, 7059 ] }, - { "id": "t_connection", "fg": [ 7070, 7072, 7071, 7069 ] }, - { "id": "edge", "fg": [ 7064, 7063 ] }, - { "id": "end_piece", "fg": [ 7066, 7068, 7067, 7065 ] }, - { "id": "unconnected", "fg": 7073 } - ] - }, - { "id": "f_solar_unit", "fg": 7074 }, - { "id": "f_speaker_cabinet", "fg": 7075 }, - { "id": "f_water_mill", "fg": 7076 }, - { "id": "water_mill", "fg": 7077 }, - { "id": "f_water_purifier", "fg": 7078 }, - { "id": "f_wood_keg", "fg": 7216 }, - { "id": "30gal_barrel", "fg": 7079 }, - { "id": "30gal_drum", "fg": 7080 }, - { "id": "alarmclock", "fg": 7081 }, - { "id": "clock", "fg": 7081 }, - { "id": "anvil", "fg": 7085 }, - { "id": [ "autoclave", "vh_autoclave" ], "fg": 7086 }, - { "id": "bag_canvas_small", "fg": 7088 }, - { "id": "bathroom_scale", "fg": 7089 }, - { "id": "bead_necklace", "fg": 7090 }, - { "id": "bubblewrap", "fg": 7092 }, - { "id": "bucket", "fg": 7093 }, - { "id": "camera_pro", "fg": 7099 }, - { "id": "condom", "fg": 7100 }, - { "id": "craft", "fg": 7101 }, - { "id": "pomegranate", "fg": 7112 }, - { "id": "peach", "fg": 7110 }, - { "id": "strawberries", "fg": 7113 }, - { "id": "cabbage", "fg": 7102 }, - { "id": "mango", "fg": 7108 }, - { "id": "kiwi", "fg": 7107 }, - { "id": "papaya", "fg": 7109 }, - { "id": "grapefruit", "fg": 7106 }, - { "id": "pineapple", "fg": 7111 }, - { "id": "celery", "fg": 7104 }, - { "id": "chili_pepper", "fg": 7105 }, - { "id": "carrot", "fg": 7103 }, - { "id": "zucchini", "fg": 7114 }, - { "id": "akmag30", "fg": 7115 }, - { "id": "duct_tape", "fg": 7116 }, - { "id": "electric_lantern", "fg": 7117 }, - { "id": "extinguisher", "fg": 7118 }, - { "id": "sm_extinguisher", "fg": 7119 }, - { "id": "fan", "fg": 7120 }, + "fg": 7185, + "additional_tiles": [ + { "id": "center", "fg": 7170 }, + { "id": "corner", "fg": [ 7172, 7174, 7173, 7171 ] }, + { "id": "t_connection", "fg": [ 7182, 7184, 7183, 7181 ] }, + { "id": "edge", "fg": [ 7176, 7175 ] }, + { "id": "end_piece", "fg": [ 7178, 7180, 7179, 7177 ] }, + { "id": "unconnected", "fg": 7185 } + ] + }, + { "id": "f_solar_unit", "fg": 7186 }, + { "id": "f_speaker_cabinet", "fg": 7187 }, + { "id": "f_water_mill", "fg": 7188 }, + { "id": "water_mill", "fg": 7189 }, + { "id": "f_water_purifier", "fg": 7190 }, + { "id": "f_wood_keg", "fg": 7328 }, + { "id": "30gal_barrel", "fg": 7191 }, + { "id": "30gal_drum", "fg": 7192 }, + { "id": "alarmclock", "fg": 7193 }, + { "id": "clock", "fg": 7193 }, + { "id": "anvil", "fg": 7197 }, + { "id": [ "autoclave", "vh_autoclave" ], "fg": 7198 }, + { "id": "bag_canvas_small", "fg": 7200 }, + { "id": "bathroom_scale", "fg": 7201 }, + { "id": "bead_necklace", "fg": 7202 }, + { "id": "bubblewrap", "fg": 7204 }, + { "id": "bucket", "fg": 7205 }, + { "id": "camera_pro", "fg": 7211 }, + { "id": "condom", "fg": 7212 }, + { "id": "craft", "fg": 7213 }, + { "id": "pomegranate", "fg": 7224 }, + { "id": "peach", "fg": 7222 }, + { "id": "strawberries", "fg": 7225 }, + { "id": "cabbage", "fg": 7214 }, + { "id": "mango", "fg": 7220 }, + { "id": "kiwi", "fg": 7219 }, + { "id": "papaya", "fg": 7221 }, + { "id": "grapefruit", "fg": 7218 }, + { "id": "pineapple", "fg": 7223 }, + { "id": "celery", "fg": 7216 }, + { "id": "chili_pepper", "fg": 7217 }, + { "id": "carrot", "fg": 7215 }, + { "id": "zucchini", "fg": 7226 }, + { "id": "akmag30", "fg": 7227 }, + { "id": "duct_tape", "fg": 7228 }, + { "id": "electric_lantern", "fg": 7229 }, + { "id": "extinguisher", "fg": 7230 }, + { "id": "sm_extinguisher", "fg": 7231 }, + { "id": "fan", "fg": 7232 }, { "id": [ "family_photo", @@ -10511,19 +10684,19 @@ "battleship", "clue" ], - "fg": 7121 - }, - { "id": [ "birchbark_funnel", "funnel", "makeshift_funnel", "metal_funnel" ], "fg": 7122 }, - { "id": [ "tr_funnel", "tr_makeshift_funnel", "tr_raincatcher", "tr_metal_funnel" ], "fg": 7124 }, - { "id": "glock17_17", "fg": 7126 }, - { "id": "holy_symbol", "fg": 7127 }, - { "id": "holy_symbol_wood", "fg": 7128 }, - { "id": "hotplate", "fg": 7129 }, - { "id": "jerrycan", "fg": 7130 }, - { "id": "jerrycan_big", "fg": 7131 }, - { "id": "keg", "fg": 7132 }, - { "id": [ "toothbrush_plain", "toothbrush_dirty" ], "fg": 7146 }, - { "id": [ "fc_hairpin", "platinum_hairpin", "silver_hairpin", "copper_hairpin", "tieclip" ], "fg": 7139 }, + "fg": 7233 + }, + { "id": [ "birchbark_funnel", "funnel", "makeshift_funnel", "metal_funnel" ], "fg": 7234 }, + { "id": [ "tr_funnel", "tr_makeshift_funnel", "tr_raincatcher", "tr_metal_funnel" ], "fg": 7236 }, + { "id": "glock17_17", "fg": 7238 }, + { "id": "holy_symbol", "fg": 7239 }, + { "id": "holy_symbol_wood", "fg": 7240 }, + { "id": "hotplate", "fg": 7241 }, + { "id": "jerrycan", "fg": 7242 }, + { "id": "jerrycan_big", "fg": 7243 }, + { "id": "keg", "fg": 7244 }, + { "id": [ "toothbrush_plain", "toothbrush_dirty" ], "fg": 7258 }, + { "id": [ "fc_hairpin", "platinum_hairpin", "silver_hairpin", "copper_hairpin", "tieclip" ], "fg": 7251 }, { "id": [ "nyquil", @@ -10675,7 +10848,7 @@ "wine_chardonnay", "drink_martini" ], - "fg": 7149 + "fg": 7261 }, { "id": [ @@ -10716,7 +10889,7 @@ "soup_tomato", "young_yeast" ], - "fg": 7151 + "fg": 7263 }, { "id": [ @@ -10738,57 +10911,57 @@ "hi_q_distillate_tails", "hi_q_distillate" ], - "fg": 7150 - }, - { "id": "longsword", "fg": 7152 }, - { "id": "longsword_inferior", "fg": 7154 }, - { "id": "longsword_fake", "fg": 7153 }, - { "id": "mask_gas", "fg": 7155 }, - { "id": "plastic_chunk", "fg": 7156 }, - { "id": "scrap_copper", "fg": 7157 }, - { "id": "oil_lamp", "fg": 7158 }, - { "id": "pickaxe", "fg": 7159 }, - { "id": "pitchfork", "fg": 7160 }, - { "id": "plunger_futuristic", "fg": 7161 }, - { "id": "plunger_toilet", "fg": 7162 }, - { "id": "pocketwatch", "fg": 7163 }, - { "id": "bacon", "fg": 7164 }, - { "id": "porkbelly", "fg": 7165 }, - { "id": "raw_cured_fatty_meat", "fg": 7166 }, - { "id": "raw_curing_fatty_meat", "fg": 7167 }, - { "id": "material_sand", "fg": 7194 }, - { "id": "material_soil", "fg": 7196 }, - { "id": "chem_aluminium_powder", "fg": 7168 }, - { "id": "chem_aluminium_sulphate", "fg": 7169 }, - { "id": "chem_ammonium_nitrate", "fg": 7170 }, - { "id": "chem_black_powder", "fg": 7171 }, - { "id": "cac2powder", "fg": 7172 }, - { "id": "chilly-p", "fg": 7173 }, - { "id": "meal_chitin_piece", "fg": 7174 }, - { "id": "chem_chromium_oxide", "fg": 7175 }, - { "id": "coffee_raw", "fg": 7176 }, - { "id": "curry_powder", "fg": 7177 }, - { "id": "powder_eggs", "fg": 7178 }, - { "id": "fungicide", "fg": 7179 }, - { "id": "insecticide", "fg": 7181 }, - { "id": "chem_hmtd", "fg": 7180 }, - { "id": "lemonade_powder", "fg": 7182 }, - { "id": "lye_powder", "fg": 7183 }, - { "id": "magnesium", "fg": 7184 }, - { "id": "chem_manganese_dioxide", "fg": 7185 }, - { "id": "chem_match_head_powder", "fg": 7186 }, - { "id": "mustard_powder", "fg": 7187 }, - { "id": "oxy_powder", "fg": 7188 }, - { "id": "chem_peptone_broth", "fg": 7189 }, - { "id": "protein_powder", "fg": 7190 }, - { "id": "material_quicklime", "fg": 7191 }, - { "id": "chem_rocket_fuel", "fg": 7192 }, - { "id": "chem_saltpetre", "fg": 7193 }, - { "id": "gunpowder", "fg": 7195 }, - { "id": "chem_thermite", "fg": 7197 }, - { "id": "tin", "fg": 7198 }, - { "id": "yeast", "fg": 7200 }, - { "id": "chem_zinc_powder", "fg": 7201 }, + "fg": 7262 + }, + { "id": "longsword", "fg": 7264 }, + { "id": "longsword_inferior", "fg": 7266 }, + { "id": "longsword_fake", "fg": 7265 }, + { "id": "mask_gas", "fg": 7267 }, + { "id": "plastic_chunk", "fg": 7268 }, + { "id": "scrap_copper", "fg": 7269 }, + { "id": "oil_lamp", "fg": 7270 }, + { "id": "pickaxe", "fg": 7271 }, + { "id": "pitchfork", "fg": 7272 }, + { "id": "plunger_futuristic", "fg": 7273 }, + { "id": "plunger_toilet", "fg": 7274 }, + { "id": "pocketwatch", "fg": 7275 }, + { "id": "bacon", "fg": 7276 }, + { "id": "porkbelly", "fg": 7277 }, + { "id": "raw_cured_fatty_meat", "fg": 7278 }, + { "id": "raw_curing_fatty_meat", "fg": 7279 }, + { "id": "material_sand", "fg": 7306 }, + { "id": "material_soil", "fg": 7308 }, + { "id": "chem_aluminium_powder", "fg": 7280 }, + { "id": "chem_aluminium_sulphate", "fg": 7281 }, + { "id": "chem_ammonium_nitrate", "fg": 7282 }, + { "id": "chem_black_powder", "fg": 7283 }, + { "id": "cac2powder", "fg": 7284 }, + { "id": "chilly-p", "fg": 7285 }, + { "id": "meal_chitin_piece", "fg": 7286 }, + { "id": "chem_chromium_oxide", "fg": 7287 }, + { "id": "coffee_raw", "fg": 7288 }, + { "id": "curry_powder", "fg": 7289 }, + { "id": "powder_eggs", "fg": 7290 }, + { "id": "fungicide", "fg": 7291 }, + { "id": "insecticide", "fg": 7293 }, + { "id": "chem_hmtd", "fg": 7292 }, + { "id": "lemonade_powder", "fg": 7294 }, + { "id": "lye_powder", "fg": 7295 }, + { "id": "magnesium", "fg": 7296 }, + { "id": "chem_manganese_dioxide", "fg": 7297 }, + { "id": "chem_match_head_powder", "fg": 7298 }, + { "id": "mustard_powder", "fg": 7299 }, + { "id": "oxy_powder", "fg": 7300 }, + { "id": "chem_peptone_broth", "fg": 7301 }, + { "id": "protein_powder", "fg": 7302 }, + { "id": "material_quicklime", "fg": 7303 }, + { "id": "chem_rocket_fuel", "fg": 7304 }, + { "id": "chem_saltpetre", "fg": 7305 }, + { "id": "gunpowder", "fg": 7307 }, + { "id": "chem_thermite", "fg": 7309 }, + { "id": "tin", "fg": 7310 }, + { "id": "yeast", "fg": 7312 }, + { "id": "chem_zinc_powder", "fg": 7313 }, { "id": [ "sugar", @@ -10801,129 +10974,129 @@ "quikclot", "chem_acrylamide" ], - "fg": 7199 - }, - { "id": "radio", "fg": 7202 }, - { "id": "ref_lighter", "fg": 7203 }, - { "id": "rhubarb", "fg": 7204 }, - { "id": "rope_6", "fg": 7205 }, - { "id": "spray_can", "fg": 7206 }, - { "id": "stanag30", "fg": 7207 }, - { "id": "stepladder", "fg": 7208 }, - { "id": "stereo", "fg": 7209 }, - { "id": [ "toolbox", "toolbox_empty", "toolbox_workshop_empty" ], "fg": 7210 }, - { "id": "waffleiron", "fg": 7211 }, - { "id": "warhammer", "fg": 7212 }, - { "id": "welding_mask", "fg": 7213 }, - { "id": "wind_mill", "fg": 7214 }, - { "id": "wood_beam", "fg": 7215 }, - { "id": "wooden_barrel", "fg": 7216 }, - { "id": "zweihander", "fg": 7217 }, - { "id": "zweihander_inferior", "fg": 7219 }, - { "id": "zweihander_fake", "fg": 7218 }, - { "id": "bot_grenade_hack", "fg": 7222 }, - { "id": "bot_mininuke_hack", "fg": 7223 }, - { "id": "infrared_creature", "fg": 7233 }, + "fg": 7311 + }, + { "id": "radio", "fg": 7314 }, + { "id": "ref_lighter", "fg": 7315 }, + { "id": "rhubarb", "fg": 7316 }, + { "id": "rope_6", "fg": 7317 }, + { "id": "spray_can", "fg": 7318 }, + { "id": "stanag30", "fg": 7319 }, + { "id": "stepladder", "fg": 7320 }, + { "id": "stereo", "fg": 7321 }, + { "id": [ "toolbox", "toolbox_empty", "toolbox_workshop_empty" ], "fg": 7322 }, + { "id": "waffleiron", "fg": 7323 }, + { "id": "warhammer", "fg": 7324 }, + { "id": "welding_mask", "fg": 7325 }, + { "id": "wind_mill", "fg": 7326 }, + { "id": "wood_beam", "fg": 7327 }, + { "id": "wooden_barrel", "fg": 7328 }, + { "id": "zweihander", "fg": 7329 }, + { "id": "zweihander_inferior", "fg": 7331 }, + { "id": "zweihander_fake", "fg": 7330 }, + { "id": "bot_grenade_hack", "fg": 7334 }, + { "id": "bot_mininuke_hack", "fg": 7335 }, + { "id": "infrared_creature", "fg": 7345 }, { "id": "weather_rain_drop", "fg": [ - { "weight": 100, "sprite": 7235 }, - { "weight": 100, "sprite": 7237 }, - { "weight": 100, "sprite": 7238 }, - { "weight": 100, "sprite": 7239 }, - { "weight": 100, "sprite": 7240 }, - { "weight": 100, "sprite": 7241 }, - { "weight": 100, "sprite": 7242 }, - { "weight": 100, "sprite": 7243 }, - { "weight": 100, "sprite": 7244 }, - { "weight": 100, "sprite": 7236 } - ] - }, - { "id": "weather_snowflake", "fg": 7245 }, - { "id": "weather_acid_drop", "fg": 7234 }, - { "id": [ "t_card_science", "t_card_robofac" ], "fg": 7251 }, - { "id": "t_card_reader_broken", "fg": 7250 }, - { "id": "t_card_military", "fg": 7249 }, - { "id": "t_card_industrial", "fg": 7248 }, - { "id": "t_card_fp", "fg": 7247 }, - { "id": "t_floor_red", "fg": 7254 }, - { "id": "t_floor_green", "fg": 7253 }, - { "id": "t_floor_blue", "fg": 7252 }, - { "id": [ "t_searth_test", "t_searth" ], "fg": 7255 }, - { "id": "t_current_trans", "fg": 7256, "bg": 5825 }, - { "id": "t_potential_trans", "fg": 7257, "bg": 5825 }, - { "id": "graffiti", "fg": 7258 }, - { "id": "t_pedestal_wyrm", "fg": 7260, "bg": 5617 }, + { "weight": 100, "sprite": 7347 }, + { "weight": 100, "sprite": 7349 }, + { "weight": 100, "sprite": 7350 }, + { "weight": 100, "sprite": 7351 }, + { "weight": 100, "sprite": 7352 }, + { "weight": 100, "sprite": 7353 }, + { "weight": 100, "sprite": 7354 }, + { "weight": 100, "sprite": 7355 }, + { "weight": 100, "sprite": 7356 }, + { "weight": 100, "sprite": 7348 } + ] + }, + { "id": "weather_snowflake", "fg": 7357 }, + { "id": "weather_acid_drop", "fg": 7346 }, + { "id": [ "t_card_science", "t_card_robofac" ], "fg": 7363 }, + { "id": "t_card_reader_broken", "fg": 7362 }, + { "id": "t_card_military", "fg": 7361 }, + { "id": "t_card_industrial", "fg": 7360 }, + { "id": "t_card_fp", "fg": 7359 }, + { "id": "t_floor_red", "fg": 7366 }, + { "id": "t_floor_green", "fg": 7365 }, + { "id": "t_floor_blue", "fg": 7364 }, + { "id": [ "t_searth_test", "t_searth" ], "fg": 7367 }, + { "id": "t_current_trans", "fg": 7368, "bg": 5895 }, + { "id": "t_potential_trans", "fg": 7369, "bg": 5895 }, + { "id": "graffiti", "fg": 7370 }, + { "id": "t_pedestal_wyrm", "fg": 7372, "bg": 5687 }, { "id": "t_pedestal_temple", - "fg": [ { "weight": 100, "sprite": 7261 }, { "weight": 100, "sprite": 7259 } ], - "bg": 4978 + "fg": [ { "weight": 100, "sprite": 7373 }, { "weight": 100, "sprite": 7371 } ], + "bg": 5048 }, { "id": "t_pedestal_temple_season_winter", - "fg": [ { "weight": 100, "sprite": 7261 }, { "weight": 100, "sprite": 7259 } ], - "bg": 4649 + "fg": [ { "weight": 100, "sprite": 7373 }, { "weight": 100, "sprite": 7371 } ], + "bg": 4719 }, - { "id": "t_zebra", "fg": 7262 }, - { "id": "t_zebra_season_winter", "fg": 4648 }, + { "id": "t_zebra", "fg": 7374 }, + { "id": "t_zebra_season_winter", "fg": 4718 }, { "id": [ "t_metal_railing", "t_concrete_railing", "t_glass_railing" ], "multitile": true, - "fg": 5553, - "bg": 4852, - "additional_tiles": [ - { "id": "center", "bg": 4852, "fg": 5538 }, - { "id": "corner", "bg": 4852, "fg": [ 5540, 5542, 5541, 5539 ] }, - { "id": "t_connection", "bg": 4852, "fg": [ 5550, 5552, 5551, 5549 ] }, - { "id": "edge", "bg": 4852, "fg": [ 5544, 5543 ] }, - { "id": "end_piece", "bg": 4852, "fg": [ 5546, 5548, 5547, 5545 ] }, - { "bg": 4852, "id": "unconnected", "fg": [ 5553, 5553 ] } - ] - }, - { "id": "t_chaingate_c", "fg": 7264, "bg": 5374 }, - { "id": "t_chaingate_l", "fg": 7265, "bg": 5374 }, - { "id": "t_chaingate_o", "fg": 7266, "bg": 5374 }, - { "id": "t_chainfence_posts", "fg": 7263, "bg": 5374 }, - { "id": "t_chaingate_c_season_winter", "fg": 7264, "bg": 4649 }, - { "id": "t_chaingate_l_season_winter", "fg": 7265, "bg": 4649 }, - { "id": "t_chaingate_o_season_winter", "fg": 7266, "bg": 4649 }, - { "id": "t_chainfence_posts_season_winter", "fg": 7263, "bg": 4649 }, - { "id": "t_console", "fg": 7267 }, - { "id": "t_console_broken", "fg": 7268 }, - { "id": "t_dirtmound", "fg": 7269, "bg": 5169 }, - { "id": "t_dirtmound_season_summer", "fg": 7269, "bg": 5179 }, - { "id": "t_dirtmound_season_autumn", "fg": 7269, "bg": 5174 }, - { "id": "t_dirtmound_season_winter", "fg": 7270 }, - { "id": "t_door_metal_c", "fg": 7271 }, - { "id": "t_door_metal_o", "fg": 7272 }, - { "id": "t_fern", "fg": 7273, "bg": 5169 }, - { "id": "t_fern_harvested", "fg": 7274, "bg": 5169 }, - { "id": "t_fern_season_summer", "fg": 7273, "bg": 5179 }, - { "id": "t_fern_harvested_season_summer", "fg": 7274, "bg": 5179 }, - { "id": "t_fern_season_autumn", "fg": 7273, "bg": 5174 }, - { "id": "t_fern_harvested_season_autumn", "fg": 7274, "bg": 5174 }, - { "id": "t_fern_season_winter", "fg": 7273, "bg": 4647 }, - { "id": "t_fern_harvested_season_winter", "fg": 7274, "bg": 4647 }, + "fg": 5623, + "bg": 4922, + "additional_tiles": [ + { "id": "center", "bg": 4922, "fg": 5608 }, + { "id": "corner", "bg": 4922, "fg": [ 5610, 5612, 5611, 5609 ] }, + { "id": "t_connection", "bg": 4922, "fg": [ 5620, 5622, 5621, 5619 ] }, + { "id": "edge", "bg": 4922, "fg": [ 5614, 5613 ] }, + { "id": "end_piece", "bg": 4922, "fg": [ 5616, 5618, 5617, 5615 ] }, + { "bg": 4922, "id": "unconnected", "fg": [ 5623, 5623 ] } + ] + }, + { "id": "t_chaingate_c", "fg": 7376, "bg": 5444 }, + { "id": "t_chaingate_l", "fg": 7377, "bg": 5444 }, + { "id": "t_chaingate_o", "fg": 7378, "bg": 5444 }, + { "id": "t_chainfence_posts", "fg": 7375, "bg": 5444 }, + { "id": "t_chaingate_c_season_winter", "fg": 7376, "bg": 4719 }, + { "id": "t_chaingate_l_season_winter", "fg": 7377, "bg": 4719 }, + { "id": "t_chaingate_o_season_winter", "fg": 7378, "bg": 4719 }, + { "id": "t_chainfence_posts_season_winter", "fg": 7375, "bg": 4719 }, + { "id": "t_console", "fg": 7379 }, + { "id": "t_console_broken", "fg": 7380 }, + { "id": "t_dirtmound", "fg": 7381, "bg": 5239 }, + { "id": "t_dirtmound_season_summer", "fg": 7381, "bg": 5249 }, + { "id": "t_dirtmound_season_autumn", "fg": 7381, "bg": 5244 }, + { "id": "t_dirtmound_season_winter", "fg": 7382 }, + { "id": "t_door_metal_c", "fg": 7383 }, + { "id": "t_door_metal_o", "fg": 7384 }, + { "id": "t_fern", "fg": 7385, "bg": 5239 }, + { "id": "t_fern_harvested", "fg": 7386, "bg": 5239 }, + { "id": "t_fern_season_summer", "fg": 7385, "bg": 5249 }, + { "id": "t_fern_harvested_season_summer", "fg": 7386, "bg": 5249 }, + { "id": "t_fern_season_autumn", "fg": 7385, "bg": 5244 }, + { "id": "t_fern_harvested_season_autumn", "fg": 7386, "bg": 5244 }, + { "id": "t_fern_season_winter", "fg": 7385, "bg": 4717 }, + { "id": "t_fern_harvested_season_winter", "fg": 7386, "bg": 4717 }, { "id": [ "t_junk_palisade", "t_junk_wall" ], "fg": [ - { "weight": 100, "sprite": 7275 }, - { "weight": 100, "sprite": 7276 }, - { "weight": 100, "sprite": 7277 }, - { "weight": 100, "sprite": 7278 } + { "weight": 100, "sprite": 7387 }, + { "weight": 100, "sprite": 7388 }, + { "weight": 100, "sprite": 7389 }, + { "weight": 100, "sprite": 7390 } ] }, { "id": "t_paper", - "fg": 7294, + "fg": 7406, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7279 }, - { "id": "corner", "fg": [ 7281, 7283, 7282, 7280 ] }, - { "id": "t_connection", "fg": [ 7291, 7293, 7292, 7290 ] }, - { "id": "edge", "fg": [ 7285, 7284 ] }, - { "id": "end_piece", "fg": [ 7287, 7289, 7288, 7286 ] }, - { "id": "unconnected", "fg": [ 7294, 7294 ] } + { "id": "center", "fg": 7391 }, + { "id": "corner", "fg": [ 7393, 7395, 7394, 7392 ] }, + { "id": "t_connection", "fg": [ 7403, 7405, 7404, 7402 ] }, + { "id": "edge", "fg": [ 7397, 7396 ] }, + { "id": "end_piece", "fg": [ 7399, 7401, 7400, 7398 ] }, + { "id": "unconnected", "fg": [ 7406, 7406 ] } ] }, { @@ -10943,445 +11116,445 @@ "t_railroad_track_v_on_tie", "t_railroad_track_d_on_tie" ], - "fg": 7312, + "fg": 7424, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7297, "bg": 5554 }, - { "id": "corner", "fg": [ 7299, 7301, 7300, 7298 ], "bg": 5554 }, - { "id": "t_connection", "fg": [ 7309, 7311, 7310, 7308 ], "bg": 5554 }, - { "id": "edge", "fg": [ 7303, 7302 ], "bg": 5554 }, - { "id": "end_piece", "fg": [ 7305, 7307, 7306, 7304 ], "bg": 5554 }, - { "id": "unconnected", "fg": [ 7312, 7312 ], "bg": 5554 } + { "id": "center", "fg": 7409, "bg": 5624 }, + { "id": "corner", "fg": [ 7411, 7413, 7412, 7410 ], "bg": 5624 }, + { "id": "t_connection", "fg": [ 7421, 7423, 7422, 7420 ], "bg": 5624 }, + { "id": "edge", "fg": [ 7415, 7414 ], "bg": 5624 }, + { "id": "end_piece", "fg": [ 7417, 7419, 7418, 7416 ], "bg": 5624 }, + { "id": "unconnected", "fg": [ 7424, 7424 ], "bg": 5624 } ], - "bg": 5554 + "bg": 5624 }, - { "id": "t_reinforced_glass_shutter", "fg": 7313 }, - { "id": "t_reinforced_glass_shutter_open", "fg": 7314 }, + { "id": "t_reinforced_glass_shutter", "fg": 7425 }, + { "id": "t_reinforced_glass_shutter_open", "fg": 7426 }, { "id": "t_sandbox", - "fg": 7330, + "fg": 7442, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7315 }, - { "id": "corner", "fg": [ 7317, 7319, 7318, 7316 ] }, - { "id": "t_connection", "fg": [ 7327, 7329, 7328, 7326 ] }, - { "id": "edge", "fg": [ 7321, 7320 ] }, - { "id": "end_piece", "fg": [ 7323, 7325, 7324, 7322 ] }, - { "id": "unconnected", "fg": [ 7330, 7330 ] } + { "id": "center", "fg": 7427 }, + { "id": "corner", "fg": [ 7429, 7431, 7430, 7428 ] }, + { "id": "t_connection", "fg": [ 7439, 7441, 7440, 7438 ] }, + { "id": "edge", "fg": [ 7433, 7432 ] }, + { "id": "end_piece", "fg": [ 7435, 7437, 7436, 7434 ] }, + { "id": "unconnected", "fg": [ 7442, 7442 ] } ] }, - { "id": "t_slot_machine", "fg": 7331, "bg": 5066 }, - { "id": "t_strconc_wall", "fg": 7332 }, + { "id": "t_slot_machine", "fg": 7443, "bg": 5136 }, + { "id": "t_strconc_wall", "fg": 7444 }, { "id": "t_trunk", "multitile": true, - "fg": [ 7334, 7333 ], - "bg": [ { "weight": 100, "sprite": 5169 }, { "weight": 100, "sprite": 5171 } ] + "fg": [ 7446, 7445 ], + "bg": [ { "weight": 100, "sprite": 5239 }, { "weight": 100, "sprite": 5241 } ] }, { "id": "t_trunk_season_summer", "multitile": true, - "fg": [ 7334, 7333 ], - "bg": [ { "weight": 100, "sprite": 5179 }, { "weight": 100, "sprite": 5181 } ] + "fg": [ 7446, 7445 ], + "bg": [ { "weight": 100, "sprite": 5249 }, { "weight": 100, "sprite": 5251 } ] }, { "id": "t_trunk_season_autumn", "multitile": true, - "fg": [ 7334, 7333 ], - "bg": [ { "weight": 100, "sprite": 5174 }, { "weight": 100, "sprite": 5176 } ] + "fg": [ 7446, 7445 ], + "bg": [ { "weight": 100, "sprite": 5244 }, { "weight": 100, "sprite": 5246 } ] }, - { "id": "t_trunk_season_winter", "multitile": true, "fg": [ 7334, 7333 ], "bg": 4649 }, - { "id": "t_wall_half", "fg": 7335, "bg": 5066 }, + { "id": "t_trunk_season_winter", "multitile": true, "fg": [ 7446, 7445 ], "bg": 4719 }, + { "id": "t_wall_half", "fg": 7447, "bg": 5136 }, { "id": "t_wax", - "fg": 7351, + "fg": 7463, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7336 }, - { "id": "corner", "fg": [ 7338, 7340, 7339, 7337 ] }, - { "id": "t_connection", "fg": [ 7348, 7350, 7349, 7347 ] }, - { "id": "edge", "fg": [ 7342, 7341 ] }, - { "id": "end_piece", "fg": [ 7344, 7346, 7345, 7343 ] }, - { "id": "unconnected", "fg": [ 7351, 7351 ] } + { "id": "center", "fg": 7448 }, + { "id": "corner", "fg": [ 7450, 7452, 7451, 7449 ] }, + { "id": "t_connection", "fg": [ 7460, 7462, 7461, 7459 ] }, + { "id": "edge", "fg": [ 7454, 7453 ] }, + { "id": "end_piece", "fg": [ 7456, 7458, 7457, 7455 ] }, + { "id": "unconnected", "fg": [ 7463, 7463 ] } ] }, - { "id": [ "t_window_boarded", "t_window_boarded_noglass" ], "fg": 7352, "bg": 6233 }, - { "id": "t_window_frame", "fg": 7353 }, - { "id": [ "t_window_reinforced", "t_window_reinforced_noglass" ], "fg": 7354, "bg": 6233 }, - { "id": "tr_firewood_source", "fg": 7355 }, - { "id": "tr_unfinished_construction", "fg": 7356 }, + { "id": [ "t_window_boarded", "t_window_boarded_noglass" ], "fg": 7464, "bg": 6303 }, + { "id": "t_window_frame", "fg": 7465 }, + { "id": [ "t_window_reinforced", "t_window_reinforced_noglass" ], "fg": 7466, "bg": 6303 }, + { "id": "tr_firewood_source", "fg": 7467 }, + { "id": "tr_unfinished_construction", "fg": 7468 }, { "id": "vp_hdboard_ne", - "fg": [ 7383, 7386, 7385, 7384 ], + "fg": [ 7495, 7498, 7497, 7496 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7383, 7386, 7385, 7384 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7495, 7498, 7497, 7496 ] } ] }, { "id": "vp_hdboard_nw", - "fg": [ 7387, 7390, 7389, 7388 ], + "fg": [ 7499, 7502, 7501, 7500 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7387, 7390, 7389, 7388 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7499, 7502, 7501, 7500 ] } ] }, { "id": "vp_hdboard_se", - "fg": [ 7391, 7393, 7387, 7392 ], + "fg": [ 7503, 7505, 7499, 7504 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7391, 7393, 7387, 7392 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7503, 7505, 7499, 7504 ] } ] }, { "id": "vp_hdboard_sw", - "fg": [ 7394, 7396, 7383, 7395 ], + "fg": [ 7506, 7508, 7495, 7507 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7394, 7396, 7383, 7395 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7506, 7508, 7495, 7507 ] } ] }, { "id": "vp_hdboard_vertical_left", - "fg": [ 7397, 7399, 7400, 7398 ], + "fg": [ 7509, 7511, 7512, 7510 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7397, 7399, 7400, 7398 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7509, 7511, 7512, 7510 ] } ] }, { "id": "vp_hdboard_vertical_right", - "fg": [ 7400, 7402, 7397, 7401 ], + "fg": [ 7512, 7514, 7509, 7513 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7400, 7402, 7397, 7401 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7512, 7514, 7509, 7513 ] } ] }, { "id": [ "vp_hdboard_horizontal", "vp_hdboard_horizontal_2" ], - "fg": 7379, + "fg": 7491, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7379 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7491 } ] }, { "id": "vp_hdboard_horizontal_front", - "fg": [ 7379, 7381, 7379, 7380 ], + "fg": [ 7491, 7493, 7491, 7492 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7379, 7381, 7379, 7380 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7491, 7493, 7491, 7492 ] } ] }, { "id": "vp_hdboard_horizontal_rear", - "fg": [ 7382, 7380, 7379, 7381 ], + "fg": [ 7494, 7492, 7491, 7493 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7382, 7380, 7379, 7381 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7494, 7492, 7491, 7493 ] } ] }, { "id": [ "vp_hdboard_vertical", "vp_hdboard_vertical_2" ], - "fg": 7397, + "fg": 7509, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7397 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7509 } ] }, { "id": "vp_hdhalfboard_ne", - "fg": [ 7417, 7420, 7419, 7418 ], + "fg": [ 7529, 7532, 7531, 7530 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7417, 7420, 7419, 7418 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7529, 7532, 7531, 7530 ] } ] }, { "id": "vp_hdhalfboard_nw", - "fg": [ 7421, 7424, 7423, 7422 ], + "fg": [ 7533, 7536, 7535, 7534 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7421, 7424, 7423, 7422 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7533, 7536, 7535, 7534 ] } ] }, { "id": "vp_hdhalfboard_se", - "fg": [ 7425, 7428, 7427, 7426 ], + "fg": [ 7537, 7540, 7539, 7538 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7425, 7428, 7427, 7426 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7537, 7540, 7539, 7538 ] } ] }, { "id": "vp_hdhalfboard_sw", - "fg": [ 7429, 7432, 7431, 7430 ], + "fg": [ 7541, 7544, 7543, 7542 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7429, 7432, 7431, 7430 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7541, 7544, 7543, 7542 ] } ] }, { "id": "vp_hdhalfboard_vertical_left", - "fg": [ 7437, 7440, 7439, 7438 ], + "fg": [ 7549, 7552, 7551, 7550 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7437, 7440, 7439, 7438 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7549, 7552, 7551, 7550 ] } ] }, { "id": "vp_hdhalfboard_vertical_right", - "fg": [ 7441, 7444, 7443, 7442 ], + "fg": [ 7553, 7556, 7555, 7554 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7441, 7444, 7443, 7442 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7553, 7556, 7555, 7554 ] } ] }, { "id": "vp_hdhalfboard_horizontal", - "fg": [ 7412, 7415, 7414, 7413 ], + "fg": [ 7524, 7527, 7526, 7525 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7412, 7415, 7414, 7413 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7524, 7527, 7526, 7525 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2", - "fg": 7407, + "fg": 7519, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7407 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7519 } ] }, { "id": "vp_hdhalfboard_horizontal_front", - "fg": [ 7412, 7415, 7414, 7413 ], + "fg": [ 7524, 7527, 7526, 7525 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7412, 7415, 7414, 7413 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7524, 7527, 7526, 7525 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2_front", - "fg": [ 7407, 7410, 7409, 7408 ], + "fg": [ 7519, 7522, 7521, 7520 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7407, 7410, 7409, 7408 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7519, 7522, 7521, 7520 ] } ] }, { "id": "vp_hdhalfboard_horizontal_rear", - "fg": [ 7416, 7413, 7412, 7415 ], + "fg": [ 7528, 7525, 7524, 7527 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7416, 7413, 7412, 7415 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7528, 7525, 7524, 7527 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2_rear", - "fg": [ 7411, 7408, 7407, 7410 ], + "fg": [ 7523, 7520, 7519, 7522 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7411, 7408, 7407, 7410 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7523, 7520, 7519, 7522 ] } ] }, { "id": "vp_hdhalfboard_vertical", - "fg": 7433, + "fg": 7545, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7433 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7545 } ] }, { "id": "vp_hdhalfboard_vertical_2", - "fg": 7434, + "fg": 7546, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7434 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7546 } ] }, { "id": "vp_hdhalfboard_vertical_2_left", - "fg": [ 7435, 7440, 7439, 7438 ], + "fg": [ 7547, 7552, 7551, 7550 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7435, 7440, 7439, 7438 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7547, 7552, 7551, 7550 ] } ] }, { "id": "vp_hdhalfboard_vertical_2_right", - "fg": [ 7436, 7444, 7443, 7442 ], + "fg": [ 7548, 7556, 7555, 7554 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7436, 7444, 7443, 7442 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7548, 7556, 7555, 7554 ] } ] }, { "id": "vp_hdhalfboard_cover", - "fg": [ 7403, 7406, 7405, 7404 ], + "fg": [ 7515, 7518, 7517, 7516 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7403, 7406, 7405, 7404 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7515, 7518, 7517, 7516 ] } ] }, { "id": "vp_xlhalfboard_ne", - "fg": [ 7366, 7369, 7368, 7367 ], + "fg": [ 7478, 7481, 7480, 7479 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7366, 7369, 7368, 7367 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7478, 7481, 7480, 7479 ] } ] }, { "id": "vp_xlhalfboard_nw", - "fg": [ 7370, 7373, 7372, 7371 ], + "fg": [ 7482, 7485, 7484, 7483 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7370, 7373, 7372, 7371 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7482, 7485, 7484, 7483 ] } ] }, { "id": "vp_xlhalfboard_se", - "fg": 7374, + "fg": 7486, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7374 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7486 } ] }, { "id": "vp_xlhalfboard_sw", - "fg": 7375, + "fg": 7487, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7375 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7487 } ] }, { "id": "vp_xlhalfboard_vertical_left", - "fg": 7377, + "fg": 7489, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7377 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7489 } ] }, { "id": "vp_xlhalfboard_vertical_right", - "fg": 7378, + "fg": 7490, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7378 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7490 } ] }, { "id": [ "vp_xlhalfboard_horizontal", "vp_xlhalfboard_horizontal_2" ], - "fg": 7361, + "fg": 7473, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7361 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7473 } ] }, { "id": "vp_xlhalfboard_horizontal_front", - "fg": [ 7361, 7364, 7363, 7362 ], + "fg": [ 7473, 7476, 7475, 7474 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7361, 7364, 7363, 7362 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7473, 7476, 7475, 7474 ] } ] }, { "id": "vp_xlhalfboard_horizontal_rear", - "fg": 7365, + "fg": 7477, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7365 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7477 } ] }, { "id": [ "vp_xlhalfboard_vertical", "vp_xlhalfboard_vertical_2" ], - "fg": 7376, + "fg": 7488, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7376 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7488 } ] }, { "id": "vp_xlhalfboard_cover", - "fg": [ 7357, 7360, 7359, 7358 ], + "fg": [ 7469, 7472, 7471, 7470 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7357, 7360, 7359, 7358 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7469, 7472, 7471, 7470 ] } ] }, { "id": "vp_hdstowboard_ne", - "fg": [ 7450, 7453, 7452, 7451 ], + "fg": [ 7562, 7565, 7564, 7563 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7450, 7453, 7452, 7451 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7562, 7565, 7564, 7563 ] } ] }, { "id": "vp_hdstowboard_nw", - "fg": [ 7454, 7457, 7456, 7455 ], + "fg": [ 7566, 7569, 7568, 7567 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7454, 7457, 7456, 7455 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7566, 7569, 7568, 7567 ] } ] }, { "id": "vp_hdstowboard_se", - "fg": [ 7458, 7460, 7454, 7459 ], + "fg": [ 7570, 7572, 7566, 7571 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7458, 7460, 7454, 7459 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7570, 7572, 7566, 7571 ] } ] }, { "id": "vp_hdstowboard_sw", - "fg": [ 7461, 7463, 7450, 7462 ], + "fg": [ 7573, 7575, 7562, 7574 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7461, 7463, 7450, 7462 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7573, 7575, 7562, 7574 ] } ] }, { "id": "vp_hdstowboard_vertical_left", - "fg": [ 7464, 7466, 7467, 7465 ], + "fg": [ 7576, 7578, 7579, 7577 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7464, 7466, 7467, 7465 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7576, 7578, 7579, 7577 ] } ] }, { "id": "vp_hdstowboard_vertical_right", - "fg": [ 7467, 7465, 7464, 7466 ], + "fg": [ 7579, 7577, 7576, 7578 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7467, 7465, 7464, 7466 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7579, 7577, 7576, 7578 ] } ] }, { "id": [ "vp_hdstowboard_horizontal", "vp_hdstowboard_horizontal_2" ], - "fg": 7445, + "fg": 7557, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7445 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7557 } ] }, { "id": "vp_hdstowboard_horizontal_front", - "fg": [ 7445, 7448, 7447, 7446 ], + "fg": [ 7557, 7560, 7559, 7558 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7445, 7448, 7447, 7446 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7557, 7560, 7559, 7558 ] } ] }, { "id": "vp_hdstowboard_horizontal_rear", - "fg": [ 7449, 7446, 7445, 7448 ], + "fg": [ 7561, 7558, 7557, 7560 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7449, 7446, 7445, 7448 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7561, 7558, 7557, 7560 ] } ] }, { "id": "vp_hdstowboard_vertical", - "fg": 7465, + "fg": 7577, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7465 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7577 } ] }, { "id": "vp_woodboard_ne", - "fg": [ 7472, 7473, 7478, 7479 ], + "fg": [ 7584, 7585, 7590, 7591 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7472, 7473, 7478, 7479 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7584, 7585, 7590, 7591 ] } ] }, { "id": "vp_woodboard_nw", - "fg": [ 7474, 7475, 7476, 7477 ], + "fg": [ 7586, 7587, 7588, 7589 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7474, 7475, 7476, 7477 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7586, 7587, 7588, 7589 ] } ] }, { "id": "vp_woodboard_se", - "fg": [ 7476, 7477, 7474, 7475 ], + "fg": [ 7588, 7589, 7586, 7587 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7476, 7477, 7474, 7475 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7588, 7589, 7586, 7587 ] } ] }, { "id": "vp_woodboard_sw", - "fg": [ 7478, 7479, 7472, 7473 ], + "fg": [ 7590, 7591, 7584, 7585 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7478, 7479, 7472, 7473 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7590, 7591, 7584, 7585 ] } ] }, { "id": "vp_woodboard_vertical_left", - "fg": [ 7480, 7470, 7481, 7468 ], + "fg": [ 7592, 7582, 7593, 7580 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7480, 7470, 7481, 7468 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7592, 7582, 7593, 7580 ] } ] }, { "id": "vp_woodboard_vertical_right", - "fg": [ 7481, 7468, 7480, 7470 ], + "fg": [ 7593, 7580, 7592, 7582 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7481, 7468, 7480, 7470 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7593, 7580, 7592, 7582 ] } ] }, { "id": [ "vp_woodboard_horizontal", "vp_woodboard_vertical", "vp_woodboard_horizontal_front" ], - "fg": [ 7468, 7469, 7470, 7471 ], + "fg": [ 7580, 7581, 7582, 7583 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7468, 7469, 7470, 7471 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7580, 7581, 7582, 7583 ] } ] }, { "id": "vp_woodboard_horizontal_rear", - "fg": [ 7470, 7471, 7468, 7469 ], + "fg": [ 7582, 7583, 7580, 7581 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7470, 7471, 7468, 7469 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7582, 7583, 7580, 7581 ] } ] }, { "id": [ "vp_woodhalfboard_ne" ], - "fg": 7486, + "fg": 7598, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7486 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7598 } ] }, { "id": "vp_woodhalfboard_nw", - "fg": 7485, + "fg": 7597, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7485 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7597 } ] }, { "id": "vp_woodhalfboard_se", - "fg": 7490, + "fg": 7602, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7490 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7602 } ] }, { "id": "vp_woodhalfboard_sw", - "fg": 7489, + "fg": 7601, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7489 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7601 } ] }, { "id": [ "vp_woodhalfboard_vertical_left", "vp_woodhalfboard_vertical_2_left", "vp_woodhalfboard_vertical_T_left" ], - "fg": 7487, + "fg": 7599, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7487 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7599 } ] }, { "id": [ "vp_woodhalfboard_vertical_right", "vp_woodhalfboard_vertical_2_right", "vp_woodhalfboard_vertical_T_right" ], - "fg": 7491, + "fg": 7603, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7491 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7603 } ] }, { "id": [ @@ -11390,943 +11563,887 @@ "vp_woodhalfboard_horizontal_front", "vp_woodhalfboard_horizontal_2_front" ], - "fg": 7484, + "fg": 7596, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7484 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7596 } ] }, { "id": [ "vp_woodhalfboard_horizontal_rear", "vp_woodhalfboard_horizontal_2_rear" ], - "fg": 7488, + "fg": 7600, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7488 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7600 } ] }, { "id": [ "vp_woodhalfboard", "vp_woodhalfboard_cross", "vp_woodhalfboard_vertical", "vp_woodhalfboard_vertical_2" ], - "fg": 7483, + "fg": 7595, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7483 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7595 } ] }, { "id": [ "vp_woodhalfboard_cover" ], - "fg": 7482, + "fg": 7594, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7482 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7594 } ] }, { "id": [ "vp_basketsm", "vp_basketsm_external" ], - "fg": [ 7503, 7502 ], + "fg": [ 7615, 7614 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7503, 7502 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7615, 7614 ] } ] }, { "id": "vp_basketsm_bike_rear", - "fg": [ 7499, 7501, 7500, 7498 ], + "fg": [ 7611, 7613, 7612, 7610 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7499, 7501, 7500, 7498 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7611, 7613, 7612, 7610 ] } ] }, { "id": [ "vp_basketlg", "vp_basketlg_external" ], - "fg": [ 7497, 7496 ], + "fg": [ 7609, 7608 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7497, 7496 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7609, 7608 ] } ] }, { "id": "vp_basketlg_cart", - "fg": [ 7493, 7495, 7494, 7492 ], + "fg": [ 7605, 7607, 7606, 7604 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7493, 7495, 7494, 7492 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7605, 7607, 7606, 7604 ] } ] }, { "id": "vp_box", - "fg": [ 7504, 7505 ], + "fg": [ 7616, 7617 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7504, 7505 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7616, 7617 ] } ] }, { "id": "vp_wood box", - "fg": [ 7514, 7513 ], + "fg": [ 7626, 7625 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7514, 7513 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7626, 7625 ] } ] }, { "id": "vp_box_wheelbarrow", - "fg": [ 7507, 7509, 7508, 7506 ], + "fg": [ 7619, 7621, 7620, 7618 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7507, 7509, 7508, 7506 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7619, 7621, 7620, 7618 ] } ] }, { "id": "vp_trunk", - "fg": 7511, + "fg": 7623, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7511 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7623 } ] }, { "id": "vp_trunk_rear_edge", - "fg": 7512, + "fg": 7624, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7512 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7624 } ] }, { "id": [ "vp_cargo_space", "animal_compartment" ], - "fg": 7510, + "fg": 7622, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7510 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7622 } ] }, { "id": [ "vp_hddoor_trunk", "vp_hdhatch", "vp_hdhatch_opaque" ], - "fg": [ 7538, 7544, 7543, 7542 ], + "fg": [ 7650, 7656, 7655, 7654 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7539, 7541, 7539, 7540 ] }, { "id": "broken", "fg": 7518, "bg": [ 7539, 7541, 7539, 7540 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 7651, 7653, 7651, 7652 ] }, { "id": "broken", "fg": 7630, "bg": [ 7651, 7653, 7651, 7652 ] } ] }, { "id": [ "vp_hddoor", "vp_hddoor_front" ], - "fg": [ 7526, 7527, 7526, 7525 ], + "fg": [ 7638, 7639, 7638, 7637 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7520, 7521, 7520, 7519 ] }, { "id": "broken", "fg": 7518, "bg": [ 7520, 7521, 7520, 7519 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 7632, 7633, 7632, 7631 ] }, { "id": "broken", "fg": 7630, "bg": [ 7632, 7633, 7632, 7631 ] } ] }, { "id": "vp_hddoor_rear", - "fg": [ 7535, 7537, 7536, 7534 ], + "fg": [ 7647, 7649, 7648, 7646 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7523, 7524, 7523, 7522 ] }, { "id": "broken", "fg": 7518, "bg": [ 7523, 7524, 7523, 7522 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 7635, 7636, 7635, 7634 ] }, { "id": "broken", "fg": 7630, "bg": [ 7635, 7636, 7635, 7634 ] } ] }, { "id": [ "vp_hddoor_opaque", "vp_hddoor_opaque_front" ], - "fg": [ 7529, 7530, 7529, 7528 ], + "fg": [ 7641, 7642, 7641, 7640 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7520, 7521, 7520, 7519 ] }, { "id": "broken", "fg": 7518, "bg": [ 7520, 7521, 7520, 7519 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 7632, 7633, 7632, 7631 ] }, { "id": "broken", "fg": 7630, "bg": [ 7632, 7633, 7632, 7631 ] } ] }, { "id": "vp_hddoor_opaque_rear", - "fg": [ 7532, 7533, 7532, 7531 ], + "fg": [ 7644, 7645, 7644, 7643 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 7523, 7524, 7523, 7522 ] }, { "id": "broken", "fg": 7518, "bg": [ 7523, 7524, 7523, 7522 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 7635, 7636, 7635, 7634 ] }, { "id": "broken", "fg": 7630, "bg": [ 7635, 7636, 7635, 7634 ] } ] }, { "id": "vp_ram_spiked", - "fg": 7546, + "fg": 7658, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7546 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7658 } ] }, { "id": "vp_ram_steel", - "fg": 7547, + "fg": 7659, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7546 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7658 } ] }, { "id": "vp_spike", - "fg": 7548, + "fg": 7660, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7548 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7660 } ] }, { "id": "vp_frame_cover", - "fg": 7550, + "fg": 7662, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7550 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7662 } ] }, { "id": "vp_frame_cross", - "fg": 7551, + "fg": 7663, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7551 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7663 } ] }, { "id": "vp_frame_cross_unconnected", - "fg": 7552, + "fg": 7664, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7552 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7664 } ] }, { "id": "vp_frame_ne", - "fg": 7565, + "fg": 7677, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7565 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7677 } ] }, { "id": "vp_frame_nw", - "fg": 7566, + "fg": 7678, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7566 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7678 } ] }, { "id": "vp_frame_se", - "fg": 7567, + "fg": 7679, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7567 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7679 } ] }, { "id": "vp_frame_sw", - "fg": 7568, + "fg": 7680, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7568 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7680 } ] }, { "id": "vp_frame_vertical_unconnected", - "fg": 7576, + "fg": 7688, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7576 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7688 } ] }, { "id": "vp_frame_vertical_2_unconnected", - "fg": 7573, + "fg": 7685, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7573 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7685 } ] }, { "id": "vp_frame_vertical_left", - "fg": 7574, + "fg": 7686, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7574 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7686 } ] }, { "id": "vp_frame_vertical_2_left", - "fg": 7571, + "fg": 7683, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7571 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7683 } ] }, { "id": "vp_frame_vertical_right", - "fg": 7575, + "fg": 7687, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7575 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7687 } ] }, { "id": "vp_frame_vertical_2_right", - "fg": 7572, + "fg": 7684, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7572 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7684 } ] }, { "id": "vp_frame_horizontal", - "fg": 7553, + "fg": 7665, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7553 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7665 } ] }, { "id": "vp_frame_horizontal_2", - "fg": 7554, + "fg": 7666, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7554 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7666 } ] }, { "id": "vp_frame_horizontal_unconnected", - "fg": 7564, + "fg": 7676, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7564 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7676 } ] }, { "id": "vp_frame_horizontal_2_unconnected", - "fg": 7557, + "fg": 7669, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7557 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7669 } ] }, { "id": "vp_frame_horizontal_front", - "fg": 7560, + "fg": 7672, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7560 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7672 } ] }, { "id": "vp_frame_horizontal_2_front", - "fg": 7555, + "fg": 7667, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7555 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7667 } ] }, { "id": "vp_frame_horizontal_rear", - "fg": 7562, + "fg": 7674, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7562 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7674 } ] }, { "id": "vp_frame_horizontal_2_rear", - "fg": 7556, + "fg": 7668, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7556 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7668 } ] }, { "id": [ "vp_frame_horizontal_left", "vp_frame_vertical_T_left" ], - "fg": 7561, + "fg": 7673, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7561 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7673 } ] }, { "id": "vp_frame_horizontal_2_left", - "fg": 7558, + "fg": 7670, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7558 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7670 } ] }, { "id": [ "vp_frame_horizontal_right", "vp_frame_vertical_T_right" ], - "fg": 7563, + "fg": 7675, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7563 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7675 } ] }, { "id": "vp_frame_horizontal_2_right", - "fg": 7559, + "fg": 7671, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7559 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7671 } ] }, { "id": "vp_frame_vertical", - "fg": 7569, + "fg": 7681, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7569 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7681 } ] }, { "id": "vp_frame_vertical_2", - "fg": 7570, + "fg": 7682, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7570 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7682 } ] }, { "id": "vp_hdframe_cover", - "fg": 7577, + "fg": 7689, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7577 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7689 } ] }, { "id": "vp_hdframe_cross", - "fg": 7578, + "fg": 7690, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7578 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7690 } ] }, { "id": "vp_hdframe_cross_unconnected", - "fg": 7579, + "fg": 7691, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7579 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7691 } ] }, { "id": "vp_hdframe_ne", - "fg": 7592, + "fg": 7704, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7592 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7704 } ] }, { "id": "vp_hdframe_nw", - "fg": 7593, + "fg": 7705, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7593 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7705 } ] }, { "id": "vp_hdframe_se", - "fg": 7594, + "fg": 7706, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7594 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7706 } ] }, { "id": "vp_hdframe_sw", - "fg": 7595, + "fg": 7707, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7595 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7707 } ] }, { "id": "vp_hdframe_vertical_unconnected", - "fg": 7603, + "fg": 7715, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7603 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7715 } ] }, { "id": "vp_hdframe_vertical_2_unconnected", - "fg": 7600, + "fg": 7712, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7600 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7712 } ] }, { "id": "vp_hdframe_vertical_left", - "fg": 7601, + "fg": 7713, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7601 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7713 } ] }, { "id": "vp_hdframe_vertical_2_left", - "fg": 7598, + "fg": 7710, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7598 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7710 } ] }, { "id": "vp_hdframe_vertical_right", - "fg": 7602, + "fg": 7714, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7602 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7714 } ] }, { "id": "vp_hdframe_vertical_2_right", - "fg": 7599, + "fg": 7711, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7599 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7711 } ] }, { "id": "vp_hdframe_horizontal", - "fg": 7580, + "fg": 7692, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7580 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7692 } ] }, { "id": "vp_hdframe_horizontal_2", - "fg": 7581, + "fg": 7693, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7581 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7693 } ] }, { "id": "vp_hdframe_horizontal_unconnected", - "fg": 7591, + "fg": 7703, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7591 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7703 } ] }, { "id": "vp_hdframe_horizontal_2_unconnected", - "fg": 7584, + "fg": 7696, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7584 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7696 } ] }, { "id": "vp_hdframe_horizontal_front", - "fg": 7587, + "fg": 7699, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7587 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7699 } ] }, { "id": "vp_hdframe_horizontal_2_front", - "fg": 7582, + "fg": 7694, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7582 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7694 } ] }, { "id": "vp_hdframe_horizontal_rear", - "fg": 7589, + "fg": 7701, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7589 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7701 } ] }, { "id": "vp_hdframe_horizontal_2_rear", - "fg": 7583, + "fg": 7695, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7583 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7695 } ] }, { "id": [ "vp_hdframe_horizontal_left", "vp_hdframe_vertical_T_left" ], - "fg": 7588, + "fg": 7700, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7588 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7700 } ] }, { "id": "vp_hdframe_horizontal_2_left", - "fg": 7585, + "fg": 7697, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7585 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7697 } ] }, { "id": [ "vp_hdframe_horizontal_right", "vp_hdframe_vertical_T_right" ], - "fg": 7590, + "fg": 7702, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7590 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7702 } ] }, { "id": "vp_hdframe_horizontal_2_right", - "fg": 7586, + "fg": 7698, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7586 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7698 } ] }, { "id": "vp_hdframe_vertical", - "fg": 7596, + "fg": 7708, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7596 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7708 } ] }, { "id": "vp_hdframe_vertical_2", - "fg": 7597, + "fg": 7709, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7597 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7709 } ] }, { "id": "vp_xlframe_cover", - "fg": 7604, + "fg": 7716, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7604 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7716 } ] }, { "id": "vp_xlframe_cross", - "fg": 7605, + "fg": 7717, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7605 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7717 } ] }, { "id": "vp_xlframe_cross_unconnected", - "fg": 7606, + "fg": 7718, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7606 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7718 } ] }, { "id": "vp_xlframe_ne", - "fg": 7619, + "fg": 7731, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7619 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7731 } ] }, { "id": "vp_xlframe_nw", - "fg": 7620, + "fg": 7732, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7620 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7732 } ] }, { "id": "vp_xlframe_se", - "fg": 7621, + "fg": 7733, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7621 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7733 } ] }, { "id": "vp_xlframe_sw", - "fg": 7622, + "fg": 7734, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7622 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7734 } ] }, { "id": "vp_xlframe_vertical_unconnected", - "fg": 7630, + "fg": 7742, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7630 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7742 } ] }, { "id": "vp_xlframe_vertical_2_unconnected", - "fg": 7627, + "fg": 7739, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7627 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7739 } ] }, { "id": "vp_xlframe_vertical_left", - "fg": 7628, + "fg": 7740, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7628 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7740 } ] }, { "id": "vp_xlframe_vertical_2_left", - "fg": 7625, + "fg": 7737, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7625 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7737 } ] }, { "id": "vp_xlframe_vertical_right", - "fg": 7629, + "fg": 7741, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7629 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7741 } ] }, { "id": "vp_xlframe_vertical_2_right", - "fg": 7626, + "fg": 7738, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7626 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7738 } ] }, { "id": "vp_xlframe_horizontal", - "fg": 7607, + "fg": 7719, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7607 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7719 } ] }, { "id": "vp_xlframe_horizontal_2", - "fg": 7608, + "fg": 7720, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7608 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7720 } ] }, { "id": "vp_xlframe_horizontal_unconnected", - "fg": 7618, + "fg": 7730, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7618 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7730 } ] }, { "id": "vp_xlframe_horizontal_2_unconnected", - "fg": 7611, + "fg": 7723, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7611 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7723 } ] }, { "id": "vp_xlframe_horizontal_front", - "fg": 7614, + "fg": 7726, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7614 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7726 } ] }, { "id": "vp_xlframe_horizontal_2_front", - "fg": 7609, + "fg": 7721, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7609 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7721 } ] }, { "id": "vp_xlframe_horizontal_rear", - "fg": 7616, + "fg": 7728, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7616 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7728 } ] }, { "id": "vp_xlframe_horizontal_2_rear", - "fg": 7610, + "fg": 7722, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7610 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7722 } ] }, { "id": [ "vp_xlframe_horizontal_left", "vp_xlframe_vertical_T_left" ], - "fg": 7615, + "fg": 7727, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7615 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7727 } ] }, { "id": "vp_xlframe_horizontal_2_left", - "fg": 7612, + "fg": 7724, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7612 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7724 } ] }, { "id": [ "vp_xlframe_horizontal_right", "vp_xlframe_vertical_T_right" ], - "fg": 7617, + "fg": 7729, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7617 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7729 } ] }, { "id": "vp_xlframe_horizontal_2_right", - "fg": 7613, + "fg": 7725, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7613 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7725 } ] }, { "id": "vp_xlframe_vertical", - "fg": 7623, + "fg": 7735, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7623 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7735 } ] }, { "id": "vp_xlframe_vertical_2", - "fg": 7624, + "fg": 7736, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7624 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7736 } ] }, { "id": [ "vp_headlight", "vp_headlight_reinforced", "vp_wide_headlight_reinforced", "vp_wide_headlight" ], - "fg": 7632 + "fg": 7744 }, { "id": [ "vp_headlight_ne", "vp_headlight_reinforced_ne", "vp_wide_headlight_reinforced_ne", "vp_wide_headlight_ne" ], - "fg": 7631 + "fg": 7743 }, { "id": [ "vp_headlight_nw", "vp_headlight_reinforced_nw", "vp_wide_headlight_reinforced_nw", "vp_wide_headlight_nw" ], - "fg": 7632 - }, - { - "id": "vp_light_blue", - "fg": [ 7646, 7647 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7646, 7647 ] } ] - }, - { - "id": "vp_light_red", - "fg": [ 7648, 7649 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7648, 7649 ] } ] - }, - { - "id": [ "vp_floodlight", "vp_directed_floodlight" ], - "fg": [ 7640, 7642, 7641, 7639 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7640, 7642, 7641, 7639 ] } ] + "fg": 7744 }, { "id": "vp_omnicam", - "fg": 7655, + "fg": 8370, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7655 } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": 8370 } ] }, { "id": [ "vp_veh_table", "vp_veh_table_wood" ], - "fg": [ 7633, 7633 ], - "bg": [ 7661, 7660 ], + "fg": [ 7745, 7745 ], + "bg": [ 7764, 7763 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7634, "bg": [ 7661, 7660 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7746, "bg": [ 7764, 7763 ] } ] }, { "id": "vp_workbench", - "fg": [ 7662, 7662 ], - "bg": 5321, + "fg": [ 7765, 7765 ], + "bg": 5391, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7662, 7662 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7765, 7765 ] } ] }, { "id": "vp_minifridge", - "fg": [ 7653, 7653 ], + "fg": [ 7757, 7757 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7653, 7653 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7757, 7757 ] } ] }, { "id": "vp_minifreezer", - "fg": [ 7652, 7652 ], + "fg": [ 7756, 7756 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7652, 7652 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7756, 7756 ] } ] }, { "id": "vp_kitchen_unit", - "fg": [ 7645, 7645 ], + "fg": [ 7753, 7753 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7645, 7645 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7753, 7753 ] } ] }, { "id": "vp_welding_rig", - "fg": [ 7659, 7659 ], + "fg": [ 7762, 7762 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7659, 7659 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7762, 7762 ] } ] }, { "id": "vp_craft_rig", - "fg": [ 7638, 7638 ], + "fg": [ 7750, 7750 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7638, 7638 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7750, 7750 ] } ] }, { "id": "vp_washing_machine", - "fg": [ 7658, 7658 ], + "fg": [ 7761, 7761 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7658, 7658 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7761, 7761 ] } ] }, { "id": "vp_veh_forge", - "fg": [ 7643, 7643 ], + "fg": [ 7751, 7751 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7643, 7643 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7751, 7751 ] } ] }, { "id": "vp_veh_kiln", - "fg": [ 7644, 7644 ], + "fg": [ 7752, 7752 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7644, 7644 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7752, 7752 ] } ] }, { "id": "vp_chemlab", - "fg": [ 7637, 7637 ], + "fg": [ 7749, 7749 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7637, 7637 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7749, 7749 ] } ] }, { "id": "vp_aisle_vertical", - "fg": 7636, + "fg": 7748, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7636 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7748 } ] }, { "id": "vp_aisle_horizontal", - "fg": 7635, + "fg": 7747, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7635 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7747 } ] }, - { "id": "vp_trunk_floor", "fg": 7656, "bg": 7636 }, + { "id": "vp_trunk_floor", "fg": 7759, "bg": 7748 }, { "id": "vp_wooden_aisle_vertical", - "fg": [ 7661, 7660 ], + "fg": [ 7764, 7763 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7661, 7660 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7764, 7763 ] } ] }, { "id": "vp_wooden_aisle_horizontal", - "fg": [ 7660, 7661 ], + "fg": [ 7763, 7764 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7660, 7661 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7763, 7764 ] } ] }, { "id": "vp_lit_aisle_vertical", - "fg": 7651, + "fg": 7755, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7651 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7755 } ] }, { "id": "vp_lit_aisle_horizontal", - "fg": 7650, + "fg": 7754, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7650 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7754 } ] }, { "id": "vp_mounted_spare_tire", - "fg": 7654, + "fg": 7758, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7654 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7758 } ] }, { "id": [ "vp_saddle", "vp_saddle_pedal" ], - "fg": [ 7664, 7666, 7665, 7663 ], + "fg": [ 7767, 7769, 7768, 7766 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7664, 7666, 7665, 7663 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7767, 7769, 7768, 7766 ] } ] }, { "id": [ "vp_seat_wood", "seat_wood_bench" ], - "fg": [ 7671, 7671, 7672, 7672 ], - "bg": [ 7661, 7660 ], + "fg": [ 7774, 7774, 7775, 7775 ], + "bg": [ 7764, 7763 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7671, 7671, 7672, 7672 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7774, 7774, 7775, 7775 ] } ] }, { "id": "vp_seat_wood_flimsy", - "fg": [ 7669, 7669, 7670, 7670 ], - "bg": [ 7661, 7660 ], + "fg": [ 7772, 7772, 7773, 7773 ], + "bg": [ 7764, 7763 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7669, 7669, 7670, 7670 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7772, 7772, 7773, 7773 ] } ] }, { "id": [ "vp_folding_seat", "vp_reclining_seat", "vp_seat" ], - "fg": [ 7704, 7702, 7697, 7703 ], + "fg": [ 7807, 7805, 7800, 7806 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7704, 7702, 7697, 7703 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7807, 7805, 7800, 7806 ] } ] }, { "id": "vp_seat_back", - "fg": [ 7673, 7696, 7695, 7694 ], + "fg": [ 7776, 7799, 7798, 7797 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7673, 7696, 7695, 7694 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7776, 7799, 7798, 7797 ] } ] }, { "id": "vp_seat_back_left", - "fg": [ 7686, 7689, 7688, 7687 ], + "fg": [ 7789, 7792, 7791, 7790 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7686, 7689, 7688, 7687 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7789, 7792, 7791, 7790 ] } ] }, { "id": "vp_seat_back_right", - "fg": [ 7690, 7693, 7692, 7691 ], + "fg": [ 7793, 7796, 7795, 7794 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7690, 7693, 7692, 7691 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7793, 7796, 7795, 7794 ] } ] }, { "id": "vp_seat_back_vertical", - "fg": [ 7694, 7673, 7696, 7695 ], + "fg": [ 7797, 7776, 7799, 7798 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7694, 7673, 7696, 7695 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7797, 7776, 7799, 7798 ] } ] }, { "id": "vp_seat_back_vertical_left", - "fg": [ 7687, 7686, 7689, 7688 ], + "fg": [ 7790, 7789, 7792, 7791 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7687, 7686, 7689, 7688 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7790, 7789, 7792, 7791 ] } ] }, { "id": "vp_seat_back_vertical_right", - "fg": [ 7691, 7690, 7693, 7692 ], + "fg": [ 7794, 7793, 7796, 7795 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7691, 7690, 7693, 7692 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7794, 7793, 7796, 7795 ] } ] }, { "id": [ "vp_seat_leather", "vp_reclining_seat_leather" ], - "fg": [ 7701, 7699, 7698, 7700 ], + "fg": [ 7804, 7802, 7801, 7803 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7701, 7699, 7698, 7700 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7804, 7802, 7801, 7803 ] } ] }, { "id": "vp_seat_back_leather", - "fg": [ 7674, 7685, 7684, 7683 ], + "fg": [ 7777, 7788, 7787, 7786 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7674, 7685, 7684, 7683 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7777, 7788, 7787, 7786 ] } ] }, { "id": "vp_seat_back_leather_left", - "fg": [ 7675, 7678, 7677, 7676 ], + "fg": [ 7778, 7781, 7780, 7779 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7675, 7678, 7677, 7676 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7778, 7781, 7780, 7779 ] } ] }, { "id": "vp_seat_back_leather_right", - "fg": [ 7679, 7682, 7681, 7680 ], + "fg": [ 7782, 7785, 7784, 7783 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7679, 7682, 7681, 7680 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7782, 7785, 7784, 7783 ] } ] }, { "id": "vp_seat_back_leather_vertical", - "fg": [ 7683, 7674, 7685, 7684 ], + "fg": [ 7786, 7777, 7788, 7787 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7683, 7674, 7685, 7684 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7786, 7777, 7788, 7787 ] } ] }, { "id": "vp_seat_back_leather_vertical_left", - "fg": [ 7676, 7675, 7678, 7677 ], + "fg": [ 7779, 7778, 7781, 7780 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7676, 7675, 7678, 7677 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7779, 7778, 7781, 7780 ] } ] }, { "id": "vp_seat_back_leather_vertical_right", - "fg": [ 7680, 7679, 7682, 7681 ], + "fg": [ 7783, 7782, 7785, 7784 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7680, 7679, 7682, 7681 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7783, 7782, 7785, 7784 ] } ] }, { "id": "vp_seat_rear", - "fg": [ 7697, 7703, 7704, 7702 ], + "fg": [ 7800, 7806, 7807, 7805 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7697, 7703, 7704, 7702 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7800, 7806, 7807, 7805 ] } ] }, { "id": "vp_seat_leather_rear", - "fg": [ 7698, 7700, 7701, 7699 ], + "fg": [ 7801, 7803, 7804, 7802 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7698, 7700, 7701, 7699 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7801, 7803, 7804, 7802 ] } ] }, { "id": [ "vp_seed_drill" ], - "fg": [ 7706, 7708, 7707, 7705 ], + "fg": [ 7809, 7811, 7810, 7808 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8398, "bg": [ 7706, 7708, 7707, 7705 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8462, "bg": [ 7809, 7811, 7810, 7808 ] } ] }, { - "id": "vp_solar_panel", - "fg": 7709, + "id": "vp_external_tank", + "fg": [ 7812, 7813, 7814, 7815 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7709 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7812, 7813, 7814, 7815 ] } ] }, { - "id": "vp_reinforced_solar_panel", - "fg": 7712, - "bg": 7709, + "id": "vp_tank_55gal_drum", + "fg": [ 7817, 7816 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7709 } ] - }, - { - "id": "vp_solar_panel_v2", - "fg": 7710, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7710 } ] - }, - { - "id": "vp_reinforced_solar_panel_v2", - "fg": 7712, - "bg": 7710, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7710 } ] - }, - { - "id": "vp_solar_panel_v3", - "fg": 7711, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7711 } ] - }, - { - "id": "vp_afs_roof_external_tank", - "fg": [ 7714, 7713 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7714, 7713 ] } ] - }, - { - "id": "vp_external_tank", - "fg": [ 7715, 7716, 7717, 7718 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7715, 7716, 7717, 7718 ] } ] - }, - { - "id": "vp_tank_55gal_drum", - "fg": [ 7720, 7719 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7720, 7719 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7817, 7816 ] } ] }, { "id": [ @@ -12343,80 +12460,80 @@ "vp_mounted_m60_semi" ], "//": "rifles and machineguns", - "fg": 7723, - "bg": 7721, + "fg": 7820, + "bg": 7818, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7723 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7820 } ] }, { "id": [ "vp_mounted_emp_gun", "vp_mounted_plasma_gun", "vp_plasma_gun", "vp_laser_rifle" ], "//": "energy weapons", - "fg": 7722, - "bg": 7721, + "fg": 7819, + "bg": 7818, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7722 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7819 } ] }, { "id": [ "vp_mounted_hk_g80", "vp_mounted_coilgun" ], "//": "railguns", - "fg": 7724, - "bg": 7721, + "fg": 7821, + "bg": 7818, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7724 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7821 } ] }, { "id": [ "vp_mounted_bigun", "vp_mounted_m134" ], "//": "multibarrel weapons", - "fg": 7723, - "bg": 7721, + "fg": 7820, + "bg": 7818, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7723 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7820 } ] }, { "id": [ "vp_watercannon", "vp_flamethrower", "vp_mounted_chemical_thrower" ], "//": "liquid sprayers", - "fg": 7723, - "bg": 7721, + "fg": 7820, + "bg": 7818, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7723 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7820 } ] }, { "id": "vp_tow_launcher", "//": "rocket tubes", - "fg": 7723, - "bg": 7721, + "fg": 7820, + "bg": 7818, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7723 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7820 } ] }, { "id": "vp_animal_compartment", - "fg": [ 7725, 7725, 7725, 7725 ], + "fg": [ 7822, 7822, 7822, 7822 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7725, 7725, 7725, 7725 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7822, 7822, 7822, 7822 ] } ] }, { "id": "vp_basketsm_wheelchair", - "fg": [ 7727, 7729, 7728, 7726 ], + "fg": [ 7824, 7826, 7825, 7823 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7727, 7729, 7728, 7726 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7824, 7826, 7825, 7823 ] } ] }, { "id": [ "vp_wheel", "vp_wheel_steerable" ], - "fg": 7730, + "fg": 7827, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7730 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7827 } ] }, { "id": [ "vp_wheel_bicycle", "vp_wheel_bicycle_steerable", "vp_wheel_bicycle_or", "vp_wheel_bicycle_or_steerable" ], - "fg": [ 7732, 7734, 7733, 7731 ], + "fg": [ 7829, 7831, 7830, 7828 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7732, 7734, 7733, 7731 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7829, 7831, 7830, 7828 ] } ] }, { "id": [ "vp_wheel_bicycle_rear", "vp_wheel_bicycle_or_rear" ], - "fg": [ 7733, 7731, 7732, 7734 ], + "fg": [ 7830, 7828, 7829, 7831 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 7733, 7731, 7732, 7734 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 7830, 7828, 7829, 7831 ] } ] }, { "id": [ @@ -12425,384 +12542,501 @@ "vp_reinforced_windshield_horizontal_front", "vp_reinforced_windshield_front_edge" ], - "fg": [ 7735, 7738, 7737, 7736 ], + "fg": [ 7832, 7835, 7834, 7833 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7735, 7738, 7737, 7736 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": [ 7832, 7835, 7834, 7833 ] } ] }, { "id": "vp_reinforced_windshield_horizontal_rear", - "fg": 7739, + "fg": 7836, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7739 } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": 7836 } ] }, { "id": "vp_reinforced_windshield_horizontal_rear_edge", - "fg": 7740, + "fg": 7837, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7740 } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": 7837 } ] }, { "id": "vp_reinforced_windshield_nw", - "fg": [ 7745, 7748, 7747, 7746 ], + "fg": [ 7842, 7845, 7844, 7843 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7745, 7748, 7747, 7746 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": [ 7842, 7845, 7844, 7843 ] } ] }, { "id": "vp_reinforced_windshield_ne", - "fg": [ 7741, 7744, 7743, 7742 ], + "fg": [ 7838, 7841, 7840, 7839 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7741, 7744, 7743, 7742 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": [ 7838, 7841, 7840, 7839 ] } ] }, { "id": "vp_reinforced_windshield_sw", - "fg": 7754, + "fg": 7851, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7754 } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": 7851 } ] }, { "id": "vp_reinforced_windshield_se", - "fg": 7749, + "fg": 7846, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": 7749 } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": 7846 } ] }, { "id": "vp_reinforced_windshield_sw_edge", - "fg": [ 7755, 7758, 7757, 7756 ], + "fg": [ 7852, 7855, 7854, 7853 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7755, 7758, 7757, 7756 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": [ 7852, 7855, 7854, 7853 ] } ] }, { "id": "vp_reinforced_windshield_se_edge", - "fg": [ 7750, 7753, 7752, 7751 ], + "fg": [ 7847, 7850, 7849, 7848 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7750, 7753, 7752, 7751 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": [ 7847, 7850, 7849, 7848 ] } ] }, { "id": [ "vp_reinforced_windshield_vertical_left", "vp_reinforced_windshield_left" ], - "fg": [ 7759, 7762, 7761, 7760 ], + "fg": [ 7856, 7859, 7858, 7857 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7759, 7762, 7761, 7760 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": [ 7856, 7859, 7858, 7857 ] } ] }, { "id": [ "vp_reinforced_windshield_vertical_right", "vp_reinforced_windshield_right" ], - "fg": [ 7763, 7766, 7765, 7764 ], + "fg": [ 7860, 7863, 7862, 7861 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7763, 7766, 7765, 7764 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": [ 7860, 7863, 7862, 7861 ] } ] }, { "id": [ "vp_reinforced_windshield_full_vertical_left", "vp_reinforced_windshield_full_left" ], - "fg": [ 7759, 7762, 7761, 7760 ], + "fg": [ 7856, 7859, 7858, 7857 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7759, 7762, 7761, 7760 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": [ 7856, 7859, 7858, 7857 ] } ] }, { "id": [ "vp_reinforced_windshield_full_vertical_right", "vp_reinforced_windshield_full_right" ], - "fg": [ 7763, 7766, 7765, 7764 ], + "fg": [ 7860, 7863, 7862, 7861 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7515, "bg": [ 7763, 7766, 7765, 7764 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7627, "bg": [ 7860, 7863, 7862, 7861 ] } ] }, { "id": "vp_frame_wood_vertical_2", - "fg": 7787, + "fg": 7884, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7787 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7884 } ] }, { "id": "vp_frame_wood_vertical_2_unconnected", - "fg": 7790, + "fg": 7887, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7790 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7887 } ] }, { "id": "vp_frame_wood_vertical_2_right", - "fg": 7789, + "fg": 7886, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7789 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7886 } ] }, { "id": "vp_frame_wood_vertical_2_left", - "fg": 7788, + "fg": 7885, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7788 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7885 } ] }, { "id": "vp_frame_wood_vertical", - "fg": 7786, + "fg": 7883, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7786 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7883 } ] }, { "id": "vp_frame_wood_vertical_unconnected", - "fg": 7793, + "fg": 7890, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7793 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7890 } ] }, { "id": "vp_frame_wood_vertical_right", - "fg": 7792, + "fg": 7889, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7792 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7889 } ] }, { "id": "vp_frame_wood_vertical_left", - "fg": 7791, + "fg": 7888, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7791 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7888 } ] }, { "id": "vp_frame_wood_sw", - "fg": 7785, + "fg": 7882, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7785 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7882 } ] }, { "id": "vp_frame_wood_se", - "fg": 7784, + "fg": 7881, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7784 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7881 } ] }, { "id": "vp_frame_wood_nw", - "fg": 7783, + "fg": 7880, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7783 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7880 } ] }, { "id": "vp_frame_wood_ne", - "fg": 7782, + "fg": 7879, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7782 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7879 } ] }, { "id": "vp_frame_wood_horizontal_2", - "fg": 7771, + "fg": 7868, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7771 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7868 } ] }, { "id": "vp_frame_wood_horizontal_2_unconnected", - "fg": 7776, + "fg": 7873, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7776 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7873 } ] }, { "id": "vp_frame_wood_horizontal_2_right", - "fg": 7775, + "fg": 7872, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7775 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7872 } ] }, { "id": "vp_frame_wood_horizontal_2_rear", - "fg": 7774, + "fg": 7871, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7774 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7871 } ] }, { "id": "vp_frame_wood_horizontal_2_left", - "fg": 7773, + "fg": 7870, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7773 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7870 } ] }, { "id": "vp_frame_wood_horizontal_2_front", - "fg": 7772, + "fg": 7869, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7772 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7869 } ] }, { "id": "vp_frame_wood_horizontal", - "fg": 7770, + "fg": 7867, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7770 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7867 } ] }, { "id": "vp_frame_wood_horizontal_unconnected", - "fg": 7781, + "fg": 7878, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7781 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7878 } ] }, { "id": "vp_frame_wood_horizontal_right", - "fg": 7780, + "fg": 7877, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7780 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7877 } ] }, { "id": "vp_frame_wood_horizontal_rear", - "fg": 7779, + "fg": 7876, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7779 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7876 } ] }, { "id": "vp_frame_wood_horizontal_left", - "fg": 7778, + "fg": 7875, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7778 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7875 } ] }, { "id": "vp_frame_wood_horizontal_front", - "fg": 7777, + "fg": 7874, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7777 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7874 } ] }, { "id": "vp_frame_wood_cross", - "fg": 7768, + "fg": 7865, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7768 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7865 } ] }, { "id": [ "vp_frame_wood_cross_unconnected", "vp_frame_wood", "frame_wood" ], - "fg": 7769, + "fg": 7866, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7769 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7866 } ] }, { "id": "vp_frame_wood_cover", - "fg": 7767, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 7767 } ] - }, - { "id": "f_floor_mattress", "fg": 7047 }, - { "id": "f_fungal_mass", "fg": 7050 }, - { "id": "f_fungal_tangle", "fg": 7051 }, - { "id": "f_brazier", "fg": 7052 }, - { "id": "emer_blanket", "fg": 7082 }, - { "id": "emer_blanket_on", "fg": 7083 }, - { "id": "jacket_evac", "fg": 7084 }, - { "id": "f_autoclave", "fg": 7087 }, - { "id": "jeans_red", "fg": 7094 }, - { "id": "tights", "fg": 7095 }, - { "id": "blade", "fg": 7096 }, - { "id": "rm13_armor", "fg": 7097 }, - { "id": "55gal_drum", "fg": 7098 }, - { "id": "leather_funnel", "fg": 7123 }, - { "id": "tr_leather_funnel", "fg": 7125 }, - { "id": "brush", "fg": 7133 }, - { "id": "casserole", "fg": 7134 }, - { "id": "curling_iron", "fg": 7135 }, - { "id": "cutting_board", "fg": 7136 }, - { "id": "elec_hairtrimmer", "fg": 7137 }, - { "id": "hairbrush", "fg": 7138 }, - { "id": "metal_file", "fg": 7140 }, - { "id": "mobile_memory_card", "fg": 7141 }, - { "id": "plastic_straw", "fg": 7142 }, - { "id": "razor_blade", "fg": 7143 }, - { "id": "razor_shaving", "fg": 7144 }, - { "id": "string_floss", "fg": 7145 }, - { "id": "tumbler_plastic", "fg": 7147 }, - { "id": "xacto", "fg": 7148 }, - { "id": "f_rubble_landfill", "fg": 7246 }, - { "id": "t_roof_paper", "fg": 7295 }, - { "id": "crack_glass_left", "fg": 7516 }, - { "id": "vp_ram_mattress", "fg": 7545 }, - { "id": "vp_tearer", "fg": 7549 }, - { "id": "vp_vehicle_scoop", "fg": 7657 }, - { "id": "seat", "fg": 7667 }, - { "id": "seat_leather", "fg": 7668 } + "fg": 7864, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 7864 } ] + }, + { "id": "f_floor_mattress", "fg": 7159 }, + { "id": "f_fungal_mass", "fg": 7162 }, + { "id": "f_fungal_tangle", "fg": 7163 }, + { "id": "f_brazier", "fg": 7164 }, + { "id": "emer_blanket", "fg": 7194 }, + { "id": "emer_blanket_on", "fg": 7195 }, + { "id": "jacket_evac", "fg": 7196 }, + { "id": "f_autoclave", "fg": 7199 }, + { "id": "jeans_red", "fg": 7206 }, + { "id": "tights", "fg": 7207 }, + { "id": "blade", "fg": 7208 }, + { "id": "rm13_armor", "fg": 7209 }, + { "id": "55gal_drum", "fg": 7210 }, + { "id": "leather_funnel", "fg": 7235 }, + { "id": "tr_leather_funnel", "fg": 7237 }, + { "id": "brush", "fg": 7245 }, + { "id": "casserole", "fg": 7246 }, + { "id": "curling_iron", "fg": 7247 }, + { "id": "cutting_board", "fg": 7248 }, + { "id": "elec_hairtrimmer", "fg": 7249 }, + { "id": "hairbrush", "fg": 7250 }, + { "id": "metal_file", "fg": 7252 }, + { "id": "mobile_memory_card", "fg": 7253 }, + { "id": "plastic_straw", "fg": 7254 }, + { "id": "razor_blade", "fg": 7255 }, + { "id": "razor_shaving", "fg": 7256 }, + { "id": "string_floss", "fg": 7257 }, + { "id": "tumbler_plastic", "fg": 7259 }, + { "id": "xacto", "fg": 7260 }, + { "id": "f_rubble_landfill", "fg": 7358 }, + { "id": "t_roof_paper", "fg": 7407 }, + { "id": "crack_glass_left", "fg": 7628 }, + { "id": "vp_ram_mattress", "fg": 7657 }, + { "id": "vp_tearer", "fg": 7661 }, + { "id": "vp_vehicle_scoop", "fg": 7760 }, + { "id": "seat", "fg": 7770 }, + { "id": "seat_leather", "fg": 7771 } ] }, { "file": "incomplete_large.png", - "//": "range 7808 to 7855", + "//": "range 7904 to 7983", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -32, "tiles": [ - { "id": "mon_science_bot", "fg": 7811, "bg": 6784 }, + { "id": "mon_science_bot", "fg": 7907, "bg": 6896 }, + { + "id": "vp_door_trunk_horizontal_2", + "fg": [ 7909, 7916, 7915, 7914 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7910, 7913, 7912, 7911 ] }, + { "id": "broken", "fg": [ 6739, 6739, 6739, 6739 ], "bg": [ 7910, 7913, 7912, 7911 ] } + ] + }, { "id": "vp_halfboard_hatch_wheel_left", - "fg": [ 7813, 7816, 7815, 7814 ], + "fg": [ 7917, 7920, 7919, 7918 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7812, 7812, 7812, 7812 ], "bg": [ 7813, 7816, 7815, 7814 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 7908, 7908, 7908, 7908 ], "bg": [ 7917, 7920, 7919, 7918 ] } ] }, { "id": "vp_halfboard_hatch_wheel_right", - "fg": [ 7817, 7820, 7819, 7818 ], + "fg": [ 7921, 7924, 7923, 7922 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7812, 7812, 7812, 7812 ], "bg": [ 7817, 7820, 7819, 7818 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 7908, 7908, 7908, 7908 ], "bg": [ 7921, 7924, 7923, 7922 ] } ] }, { "id": "vp_halfboard_horizontal_2_rear", - "fg": [ 7821, 7824, 7823, 7822 ], + "fg": [ 7925, 7928, 7927, 7926 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 7812, 7812, 7812, 7812 ], "bg": [ 7821, 7824, 7823, 7822 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 7908, 7908, 7908, 7908 ], "bg": [ 7925, 7928, 7927, 7926 ] } ] }, { "id": "vp_hatch", - "fg": [ 7825, 7840, 7839, 7838 ], + "fg": [ 7929, 7944, 7943, 7942 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7834, 7837, 7836, 7835 ] }, - { "id": "broken", "fg": [ 7812, 7812, 7812, 7812 ], "bg": [ 7834, 7837, 7836, 7835 ] } + { "id": "open", "fg": [ 7938, 7941, 7940, 7939 ] }, + { "id": "broken", "fg": [ 7908, 7908, 7908, 7908 ], "bg": [ 7938, 7941, 7940, 7939 ] } ] }, { "id": "vp_hatch_opaque", - "fg": [ 7826, 7833, 7832, 7831 ], + "fg": [ 7930, 7937, 7936, 7935 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7931, 7934, 7933, 7932 ] }, + { "id": "broken", "fg": [ 7908, 7908, 7908, 7908 ], "bg": [ 7931, 7934, 7933, 7932 ] } + ] + }, + { + "id": "vp_hatch_left", + "fg": [ 7947, 7954, 7953, 7952 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7948, 7951, 7950, 7949 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 7948, 7951, 7950, 7949 ] } + ] + }, + { + "id": "vp_hatch_right", + "fg": [ 7953, 7952, 7947, 7954 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7827, 7830, 7829, 7828 ] }, - { "id": "broken", "fg": [ 7812, 7812, 7812, 7812 ], "bg": [ 7827, 7830, 7829, 7828 ] } + { "id": "open", "fg": [ 7950, 7949, 7948, 7951 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 7950, 7949, 7948, 7951 ] } + ] + }, + { + "id": "vp_hatch_wheel_left", + "fg": [ 7947, 7966, 7953, 7952 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7948, 7965, 7950, 7949 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 7948, 7951, 7950, 7949 ] } + ] + }, + { + "id": "vp_hatch_wheel_right", + "fg": [ 7953, 7952, 7947, 7966 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7950, 7949, 7948, 7965 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 7950, 7949, 7948, 7965 ] } + ] + }, + { + "id": [ "vp_hatch_horizontal_rear", "vp_hatch_horizontal", "vp_hatch_horizontal_2" ], + "fg": [ 7945, 7953, 7952, 7947 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7946, 7950, 7949, 7948 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 7946, 7950, 7949, 7948 ] } + ] + }, + { + "id": "vp_hatch_horizontal_front", + "fg": [ 7952, 7947, 7945, 7953 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7949, 7948, 7946, 7950 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 7949, 7948, 7946, 7950 ] } + ] + }, + { + "id": "vp_hatch_opaque_left", + "fg": [ 7947, 7962, 7953, 7961 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7957, 7960, 7959, 7958 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 7957, 7960, 7959, 7958 ] } + ] + }, + { + "id": "vp_hatch_opaque_right", + "fg": [ 7953, 7961, 7947, 7962 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7959, 7958, 7957, 7960 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 7959, 7958, 7957, 7960 ] } + ] + }, + { + "id": "vp_hatch_opaque_wheel_left", + "fg": [ 7947, 7964, 7953, 7961 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7957, 7963, 7959, 7958 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 7957, 7963, 7959, 7958 ] } + ] + }, + { + "id": "vp_hatch_opaque_wheel_right", + "fg": [ 7953, 7961, 7947, 7964 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7959, 7958, 7957, 7963 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 7959, 7958, 7957, 7963 ] } + ] + }, + { + "id": [ "vp_hatch_opaque_horizontal_rear", "vp_hatch_opaque_horizontal", "vp_hatch_opaque_horizontal_2" ], + "fg": [ 7955, 7953, 7961, 7947 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7956, 7959, 7958, 7957 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 7956, 7959, 7958, 7957 ] } + ] + }, + { + "id": "vp_hatch_opaque_horizontal_front", + "fg": [ 7961, 7947, 7955, 7953 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 7958, 7957, 7956, 7959 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 7958, 7957, 7956, 7959 ] } ] }, { "id": "vp_door_trunk_hatch_wheel_left", - "fg": [ 7841, 7848, 7847, 7846 ], + "fg": [ 7967, 7974, 7973, 7972 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7842, 7845, 7844, 7843 ] }, - { "id": "broken", "fg": [ 7812, 7812, 7812, 7812 ], "bg": [ 7842, 7845, 7844, 7843 ] } + { "id": "open", "fg": [ 7968, 7971, 7970, 7969 ] }, + { "id": "broken", "fg": [ 7908, 7908, 7908, 7908 ], "bg": [ 7968, 7971, 7970, 7969 ] } ] } ] }, { "file": "widemonsters.png", - "//": "range 7856 to 7983", + "//": "range 7984 to 8111", "sprite_width": 32, "sprite_height": 48, "sprite_offset_x": 0, "sprite_offset_y": -16, "tiles": [ - { "id": "mon_zombie_phase_shrike", "fg": 7856, "bg": 7872 }, + { "id": "mon_zombie_phase_shrike", "fg": 7984, "bg": 8000 }, { "id": "mon_zombie_reenactor", - "fg": [ { "weight": 2, "sprite": 7868 }, { "weight": 2, "sprite": 7867 }, { "weight": 1, "sprite": 7869 } ], - "bg": 7872 - }, - { "id": "mon_zombie_prisoner_tough", "fg": 7866, "bg": 7872 }, - { "id": "mon_zombie_prisoner_fat", "fg": 7865, "bg": 7872 }, - { "id": "mon_zombie_prisoner_brute", "fg": 7864, "bg": 7872 }, - { "id": "mon_zombie_resort_bouncer", "fg": 7870, "bg": 7872 }, - { "id": "mon_dragonfly_mega", "fg": 7888, "bg": 7872 }, - { "id": "mon_flesh_golem", "fg": 7889, "bg": 7872 }, - { "id": "mon_fleshy_shambler", "fg": 7890, "bg": 7872 }, - { "id": "mon_mannequin_decoy", "fg": 1293, "bg": 7872 }, + "fg": [ { "weight": 2, "sprite": 7996 }, { "weight": 2, "sprite": 7995 }, { "weight": 1, "sprite": 7997 } ], + "bg": 8000 + }, + { "id": "mon_zombie_prisoner_tough", "fg": 7994, "bg": 8000 }, + { "id": "mon_zombie_prisoner_fat", "fg": 7993, "bg": 8000 }, + { "id": "mon_zombie_prisoner_brute", "fg": 7992, "bg": 8000 }, + { "id": "mon_zombie_resort_bouncer", "fg": 7998, "bg": 8000 }, + { "id": "mon_dragonfly_mega", "fg": 8016, "bg": 8000 }, + { "id": "mon_flesh_golem", "fg": 8017, "bg": 8000 }, + { "id": "mon_fleshy_shambler", "fg": 8018, "bg": 8000 }, + { "id": "mon_mannequin_decoy", "fg": 1306, "bg": 8000 }, { "id": "mon_hunting_horror", - "fg": [ { "weight": 1, "sprite": 7895 }, { "weight": 1, "sprite": 7896 }, { "weight": 1, "sprite": 7897 } ], - "bg": 7872 + "fg": [ { "weight": 1, "sprite": 8023 }, { "weight": 1, "sprite": 8024 }, { "weight": 1, "sprite": 8025 } ], + "bg": 8000 }, - { "id": "mon_marloss_zealot_f", "fg": 7898, "bg": 7872 }, - { "id": "mon_marloss_zealot_m", "fg": 7899, "bg": 7872 }, - { "id": "mon_mutant_experimental", "fg": 7900, "bg": 7872 }, - { "id": [ "corpse_mon_skeleton", "corpse_mon_skeleton_brute" ], "fg": 4381 }, - { "id": "mon_zombie_bio_op2", "fg": 7907, "bg": 7872 }, - { "id": "mon_zombie_hammer_hands", "fg": 7918, "bg": 7871 }, - { "id": "mon_zombie_plated", "fg": 7926, "bg": 7871 }, + { "id": "mon_marloss_zealot_f", "fg": 8026, "bg": 8000 }, + { "id": "mon_marloss_zealot_m", "fg": 8027, "bg": 8000 }, + { "id": "mon_mutant_experimental", "fg": 8028, "bg": 8000 }, + { "id": [ "corpse_mon_skeleton", "corpse_mon_skeleton_brute" ], "fg": 4427 }, + { "id": "mon_zombie_bio_op2", "fg": 8035, "bg": 8000 }, + { "id": "mon_zombie_hammer_hands", "fg": 8046, "bg": 7999 }, + { "id": "mon_zombie_plated", "fg": 8054, "bg": 7999 }, { "id": "mon_zombie_resort_dancer", - "fg": [ { "weight": 1, "sprite": 7927 }, { "weight": 1, "sprite": 7928 } ], - "bg": 7872 + "fg": [ { "weight": 1, "sprite": 8055 }, { "weight": 1, "sprite": 8056 } ], + "bg": 8000 }, { "id": "mon_zombie_resort_staff", - "fg": [ { "weight": 1, "sprite": 7929 }, { "weight": 1, "sprite": 7930 } ], - "bg": 7872 + "fg": [ { "weight": 1, "sprite": 8057 }, { "weight": 1, "sprite": 8058 } ], + "bg": 8000 }, - { "id": [ "corpse_mon_zombie_soldier", "corpse_mon_zombie_military_pilot" ], "fg": 7934 }, + { "id": [ "corpse_mon_zombie_soldier", "corpse_mon_zombie_military_pilot" ], "fg": 8062 }, { "id": [ "corpse_mon_zombie", @@ -12839,11 +13073,11 @@ "corpse_mon_zombie_prisoner", "corpse_mon_zombie_winged" ], - "fg": 7947 + "fg": 8075 }, - { "id": "corpse_mon_zombie_scientist", "fg": 7949 }, - { "id": [ "corpse_mon_zombie_technician", "corpse_mon_zombie_hazmat" ], "fg": 7950 }, - { "id": [ "corpse_mon_zombie_cop", "corpse_mon_zombie_labsecurity" ], "fg": 7948 }, + { "id": "corpse_mon_zombie_scientist", "fg": 8077 }, + { "id": [ "corpse_mon_zombie_technician", "corpse_mon_zombie_hazmat" ], "fg": 8078 }, + { "id": [ "corpse_mon_zombie_cop", "corpse_mon_zombie_labsecurity" ], "fg": 8076 }, { "id": [ "corpse_mon_zombie_tough", @@ -12859,19 +13093,19 @@ "corpse_mon_zombie_soldier_blackops_2", "corpse_mon_zombie_soldier_blackops_1" ], - "fg": 7951 - }, - { "id": "mon_zombie_winged", "fg": 7966, "bg": 7872 }, - { "id": "mon_zougar_hunter", "fg": 7968, "bg": 7872 }, - { "id": "mon_zombie_swat", "fg": 7972, "bg": 7872 }, - { "id": "mon_zombie_flamer", "fg": 7973, "bg": 7872 }, - { "id": "corpse_mon_zombie_brainless", "fg": 7919 }, - { "id": "mon_zougar_shady", "fg": 7969 } + "fg": 8079 + }, + { "id": "mon_zombie_winged", "fg": 8094, "bg": 8000 }, + { "id": "mon_zougar_hunter", "fg": 8096, "bg": 8000 }, + { "id": "mon_zombie_swat", "fg": 8100, "bg": 8000 }, + { "id": "mon_zombie_flamer", "fg": 8101, "bg": 8000 }, + { "id": "corpse_mon_zombie_brainless", "fg": 8047 }, + { "id": "mon_zougar_shady", "fg": 8097 } ] }, { "file": "widevehicle.png", - "//": "range 7984 to 8383", + "//": "range 8112 to 8447", "sprite_width": 32, "sprite_height": 48, "sprite_offset_x": 0, @@ -12879,544 +13113,404 @@ "tiles": [ { "id": "vp_board_ne", - "fg": [ 7991, 7994, 7993, 7992 ], + "fg": [ 8119, 8122, 8121, 8120 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7991, 7994, 7993, 7992 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8119, 8122, 8121, 8120 ] } ] }, { "id": "vp_board_nw", - "fg": [ 7995, 7998, 7997, 7996 ], + "fg": [ 8122, 8124, 8123, 8119 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7995, 7998, 7997, 7996 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8122, 8124, 8123, 8119 ] } ] }, { "id": "vp_board_se", - "fg": [ 7999, 8001, 7995, 8000 ], + "fg": [ 8125, 8119, 8122, 8124 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7999, 8001, 7995, 8000 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8125, 8119, 8122, 8124 ] } ] }, { "id": "vp_board_sw", - "fg": [ 8002, 8004, 7991, 8003 ], + "fg": [ 8126, 8120, 8119, 8122 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8002, 8004, 7991, 8003 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8126, 8120, 8119, 8122 ] } ] }, { "id": "vp_board_vertical_left", - "fg": [ 7988, 8005, 7990, 7989 ], + "fg": [ 8115, 8127, 8113, 8117 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7988, 8005, 7990, 7989 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8115, 8127, 8113, 8117 ] } ] }, { "id": "vp_board_vertical_right", - "fg": [ 7990, 7989, 7988, 8005 ], + "fg": [ 8113, 8117, 8115, 8127 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7990, 7989, 7988, 8005 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8113, 8117, 8115, 8127 ] } ] }, { "id": "vp_board_wheel_left", - "fg": [ 7988, 8007, 7990, 7989 ], + "fg": [ 8115, 8129, 8113, 8117 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7988, 8007, 7990, 7989 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8115, 8129, 8113, 8117 ] } ] }, { "id": "vp_board_wheel_right", - "fg": [ 7990, 7989, 7988, 8007 ], + "fg": [ 8113, 8117, 8115, 8129 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7990, 7989, 7988, 8007 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8113, 8117, 8115, 8129 ] } ] }, { "id": [ "vp_board", "vp_board_horizontal", "vp_board_horizontal_2" ], - "fg": [ 7989, 8006, 7989, 8006 ], + "fg": [ 8112, 8118, 8112, 8128 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7989, 8006, 7989, 8006 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8112, 8118, 8112, 8128 ] } ] }, { "id": "vp_board_horizontal_front", - "fg": [ 7989, 7986, 7985, 7984 ], + "fg": [ 8112, 8115, 8114, 8113 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7989, 7986, 7985, 7984 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8117, 8115, 8114, 8113 ] } ] }, { "id": "vp_board_horizontal_rear", - "fg": [ 7987, 7990, 7989, 7988 ], + "fg": [ 8116, 8113, 8117, 8115 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7987, 7990, 7989, 7988 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8116, 8113, 8117, 8115 ] } ] }, { "id": [ "vp_board_vertical", "vp_board_vertical_2" ], - "fg": [ 8006, 7989, 8006, 7989 ], + "fg": [ 8128, 8117, 8128, 8117 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8006, 7989, 8006, 7989 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8128, 8117, 8128, 8117 ] } ] }, { "id": "vp_board_ne_edge", - "fg": [ 7991, 8009, 7993, 8008 ], + "fg": [ 8119, 8131, 8121, 8130 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7991, 8009, 7993, 8008 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8119, 8131, 8121, 8130 ] } ] }, { "id": "vp_board_nw_edge", - "fg": [ 7995, 8011, 7997, 8010 ], + "fg": [ 8122, 8133, 8123, 8132 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 7995, 8011, 7997, 8010 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8122, 8133, 8123, 8132 ] } ] }, { "id": "vp_clothboard_ne", - "fg": [ 8017, 8020, 8019, 8018 ], + "fg": [ 8139, 8142, 8141, 8140 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8017, 8020, 8019, 8018 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8139, 8142, 8141, 8140 ] } ] }, { "id": "vp_clothboard_nw", - "fg": [ 8020, 8022, 8021, 8017 ], + "fg": [ 8142, 8144, 8143, 8139 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8020, 8022, 8021, 8017 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8142, 8144, 8143, 8139 ] } ] }, { "id": "vp_clothboard_se", - "fg": [ 8023, 8025, 8020, 8024 ], + "fg": [ 8145, 8147, 8142, 8146 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8023, 8025, 8020, 8024 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8145, 8147, 8142, 8146 ] } ] }, { "id": "vp_clothboard_sw", - "fg": [ 8026, 8028, 8017, 8027 ], + "fg": [ 8148, 8150, 8139, 8149 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8026, 8028, 8017, 8027 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8148, 8150, 8139, 8149 ] } ] }, { "id": "vp_clothboard_vertical_left", - "fg": [ 8014, 8029, 8012, 8016 ], + "fg": [ 8136, 8151, 8134, 8138 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8014, 8029, 8012, 8016 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8136, 8151, 8134, 8138 ] } ] }, { "id": "vp_clothboard_vertical_right", - "fg": [ 8012, 8016, 8014, 8029 ], + "fg": [ 8134, 8138, 8136, 8151 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8012, 8016, 8014, 8029 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8134, 8138, 8136, 8151 ] } ] }, { "id": "vp_clothboard_wheel_left", - "fg": [ 8014, 8031, 8012, 8016 ], + "fg": [ 8136, 8153, 8134, 8138 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8014, 8031, 8012, 8016 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8136, 8153, 8134, 8138 ] } ] }, { "id": "vp_clothboard_wheel_right", - "fg": [ 8012, 8016, 8014, 8031 ], + "fg": [ 8134, 8138, 8136, 8153 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8012, 8016, 8014, 8031 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8134, 8138, 8136, 8153 ] } ] }, { "id": [ "vp_clothboard", "vp_clothboard_horizontal", "vp_clothboard_horizontal_2" ], - "fg": [ 8016, 8030, 8016, 8030 ], + "fg": [ 8138, 8152, 8138, 8152 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8016, 8030, 8016, 8030 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8138, 8152, 8138, 8152 ] } ] }, { "id": "vp_clothboard_horizontal_front", - "fg": [ 8016, 8014, 8013, 8012 ], + "fg": [ 8138, 8136, 8135, 8134 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8016, 8014, 8013, 8012 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8138, 8136, 8135, 8134 ] } ] }, { "id": "vp_clothboard_horizontal_rear", - "fg": [ 8015, 8012, 8016, 8014 ], + "fg": [ 8137, 8134, 8138, 8136 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8015, 8012, 8016, 8014 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8137, 8134, 8138, 8136 ] } ] }, { "id": [ "vp_clothboard_vertical", "vp_clothboard_vertical_2" ], - "fg": [ 8030, 8016, 8030, 8016 ], + "fg": [ 8152, 8138, 8152, 8138 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8030, 8016, 8030, 8016 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8152, 8138, 8152, 8138 ] } ] }, { "id": "vp_clothboard_ne_edge", - "fg": [ 8017, 8033, 8019, 8032 ], + "fg": [ 8139, 8155, 8141, 8154 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8017, 8033, 8019, 8032 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8139, 8155, 8141, 8154 ] } ] }, { "id": "vp_clothboard_nw_edge", - "fg": [ 8020, 8035, 8021, 8034 ], + "fg": [ 8142, 8157, 8143, 8156 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8020, 8035, 8021, 8034 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8142, 8157, 8143, 8156 ] } ] }, { "id": "vp_clothboard_se_edge", - "fg": [ 8023, 8037, 8020, 8036 ], + "fg": [ 8145, 8159, 8142, 8158 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8023, 8037, 8020, 8036 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8145, 8159, 8142, 8158 ] } ] }, { "id": "vp_clothboard_sw_edge", - "fg": [ 8026, 8039, 8017, 8038 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8026, 8039, 8017, 8038 ] } ] - }, - { - "id": [ - "vp_door_full_left", - "vp_door_full_vertical_left", - "vp_door_full_nw", - "vp_door_full_front_left", - "vp_door_full_sw", - "vp_door_full_rear_left" - ], - "fg": [ 8108, 8115, 8114, 8113 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8109, 8112, 8111, 8110 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8109, 8112, 8111, 8110 ] } - ] - }, - { - "id": [ - "vp_door_full_right", - "vp_door_full_vertical_right", - "vp_door_full_ne", - "vp_door_full_front_right", - "vp_door_full_se", - "vp_door_full_rear_right" - ], - "fg": [ 8134, 8133, 8132, 8117 ], + "fg": [ 8148, 8161, 8139, 8160 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8131, 8130, 8129, 8116 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8131, 8130, 8129, 8116 ] } - ] - }, - { - "id": "vp_door_opaque_full_left", - "fg": [ 8118, 8121, 8120, 8119 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8109, 8112, 8111, 8110 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8109, 8112, 8111, 8110 ] } - ] - }, - { - "id": "vp_door_opaque_full_right", - "fg": [ 8126, 8125, 8124, 8122 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8131, 8130, 8129, 8116 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8131, 8130, 8129, 8116 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8148, 8161, 8139, 8160 ] } ] }, { "id": [ "vp_door_left", "vp_door_vertical_left" ], - "fg": [ 8044, 8047, 8046, 8045 ], + "fg": [ 8166, 8169, 8168, 8167 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8053, 8055, 8054, 8052 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8053, 8055, 8054, 8052 ] } + { "id": "open", "fg": [ 8175, 8177, 8176, 8174 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8175, 8177, 8176, 8174 ] } ] }, { "id": "vp_door_nw", - "fg": [ 8064, 8071, 8070, 8069 ], + "fg": [ 8186, 8193, 8192, 8191 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8065, 8068, 8067, 8066 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8053, 8055, 8054, 8052 ] } + { "id": "open", "fg": [ 8187, 8190, 8189, 8188 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8175, 8177, 8176, 8174 ] } ] }, { "id": "vp_door_front_left", - "fg": [ 8155, 8162, 8161, 8160 ], + "fg": [ 8238, 8245, 8244, 8243 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8156, 8159, 8158, 8157 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8156, 8159, 8158, 8157 ] } + { "id": "open", "fg": [ 8239, 8242, 8241, 8240 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8239, 8242, 8241, 8240 ] } ] }, { "id": [ "vp_door_sw", "vp_door_rear_left" ], - "fg": [ 8100, 8107, 8106, 8105 ], + "fg": [ 8222, 8229, 8228, 8227 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8101, 8104, 8103, 8102 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8053, 8055, 8054, 8052 ] } + { "id": "open", "fg": [ 8223, 8226, 8225, 8224 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8175, 8177, 8176, 8174 ] } ] }, { "id": [ "vp_door_right", "vp_door_vertical_right" ], - "fg": [ 8048, 8051, 8050, 8049 ], + "fg": [ 8170, 8173, 8172, 8171 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8089, 8091, 8090, 8088 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8089, 8091, 8090, 8088 ] } + { "id": "open", "fg": [ 8211, 8213, 8212, 8210 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8211, 8213, 8212, 8210 ] } ] }, { "id": "vp_door_ne", - "fg": [ 8056, 8063, 8062, 8061 ], + "fg": [ 8178, 8185, 8184, 8183 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8057, 8060, 8059, 8058 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8089, 8091, 8090, 8088 ] } + { "id": "open", "fg": [ 8179, 8182, 8181, 8180 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8211, 8213, 8212, 8210 ] } ] }, { "id": "vp_door_front_right", - "fg": [ 8147, 8154, 8153, 8152 ], + "fg": [ 8230, 8237, 8236, 8235 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8148, 8151, 8150, 8149 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8148, 8151, 8150, 8149 ] } + { "id": "open", "fg": [ 8231, 8234, 8233, 8232 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8231, 8234, 8233, 8232 ] } ] }, { "id": [ "vp_door_se", "vp_door_rear_right" ], - "fg": [ 8092, 8099, 8098, 8097 ], + "fg": [ 8214, 8221, 8220, 8219 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8093, 8096, 8095, 8094 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8089, 8091, 8090, 8088 ] } + { "id": "open", "fg": [ 8215, 8218, 8217, 8216 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8211, 8213, 8212, 8210 ] } ] }, { "id": "vp_door_opaque_left", - "fg": [ 8077, 8079, 8078, 8076 ], + "fg": [ 8199, 8201, 8200, 8198 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8073, 8075, 8074, 8072 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8073, 8075, 8074, 8072 ] } + { "id": "open", "fg": [ 8195, 8197, 8196, 8194 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8195, 8197, 8196, 8194 ] } ] }, { "id": "vp_door_opaque_right", - "fg": [ 8085, 8087, 8086, 8084 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8081, 8083, 8082, 8080 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8081, 8083, 8082, 8080 ] } - ] - }, - { - "id": [ "vp_door_rear", "vp_door_horizontal_rear" ], - "fg": [ 8127, 8134, 8133, 8132 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8128, 8131, 8130, 8129 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8128, 8131, 8130, 8129 ] } - ] - }, - { - "id": [ "vp_door_front", "vp_door_horizontal_front" ], - "fg": [ 8133, 8132, 8127, 8134 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8130, 8129, 8128, 8131 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8130, 8129, 8128, 8131 ] } - ] - }, - { - "id": [ "vp_door_opaque_rear", "vp_door_opaque_horizontal_rear" ], - "fg": [ 8123, 8126, 8125, 8124 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8128, 8131, 8130, 8129 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8128, 8131, 8130, 8129 ] } - ] - }, - { - "id": [ "vp_door_opaque_front", "vp_door_opaque_horizontal_front" ], - "fg": [ 8125, 8124, 8123, 8126 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8130, 8129, 8128, 8131 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8130, 8129, 8128, 8131 ] } - ] - }, - { - "id": "vp_door_sliding", - "fg": [ 8126, 8125, 8124, 8122 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8173, 8174, 8175, 8176 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8173, 8174, 8175, 8176 ] } - ] - }, - { - "id": [ "vp_door", "vp_door_internal", "vp_door_opaque" ], - "fg": [ 8143, 8142, 8145, 8142 ], + "fg": [ 8207, 8209, 8208, 8206 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8144, 8141, 8146, 8141 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8144, 8141, 8146, 8141 ] } - ] - }, - { - "id": "vp_door_internal_front", - "fg": [ 8125, 8140, 8139, 8138 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8130, 8137, 8136, 8135 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8130, 8137, 8136, 8135 ] } - ] - }, - { - "id": "vp_door_shutter", - "fg": [ 8165, 8163, 8164, 8166 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8170, 8168, 8169, 8171 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8170, 8168, 8169, 8171 ] } - ] - }, - { - "id": "vp_door_shutter_left", - "fg": [ 8166, 8167, 8163, 8164 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8171, 8172, 8168, 8169 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8171, 8172, 8168, 8169 ] } - ] - }, - { - "id": "vp_door_shutter_right", - "fg": [ 8163, 8164, 8166, 8167 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8168, 8169, 8171, 8172 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8168, 8169, 8171, 8172 ] } + { "id": "open", "fg": [ 8203, 8205, 8204, 8202 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8203, 8205, 8204, 8202 ] } ] }, { "id": "vp_halfboard_ne", - "fg": [ 8197, 8200, 8199, 8198 ], + "fg": [ 8266, 8269, 8268, 8267 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8197, 8200, 8199, 8198 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8266, 8269, 8268, 8267 ] } ] }, { "id": "vp_halfboard_nw", - "fg": [ 8201, 8204, 8203, 8202 ], + "fg": [ 8270, 8273, 8272, 8271 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8201, 8204, 8203, 8202 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8270, 8273, 8272, 8271 ] } ] }, { "id": "vp_halfboard_se", - "fg": [ 8205, 8208, 8207, 8206 ], + "fg": [ 8274, 8277, 8276, 8275 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8205, 8208, 8207, 8206 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8274, 8277, 8276, 8275 ] } ] }, { "id": "vp_halfboard_sw", - "fg": [ 8209, 8212, 8211, 8210 ], + "fg": [ 8278, 8281, 8280, 8279 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8209, 8212, 8211, 8210 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8278, 8281, 8280, 8279 ] } ] }, { "id": [ "vp_halfboard_vertical_left", "vp_halfboard_vertical_2_left" ], - "fg": [ 8213, 8215, 8216, 8214 ], + "fg": [ 8282, 8284, 8285, 8283 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8213, 8215, 8216, 8214 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8282, 8284, 8285, 8283 ] } ] }, { "id": [ "vp_halfboard_vertical_right", "vp_halfboard_vertical_2_right" ], - "fg": [ 8216, 8214, 8213, 8215 ], + "fg": [ 8285, 8283, 8282, 8284 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8216, 8214, 8213, 8215 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8285, 8283, 8282, 8284 ] } ] }, { "id": "vp_halfboard_vertical_t_left", - "fg": [ 8220, 8222, 8221, 8219 ], + "fg": [ 8289, 8291, 8290, 8288 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8220, 8222, 8221, 8219 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8289, 8291, 8290, 8288 ] } ] }, { "id": "vp_halfboard_vertical_t_right", - "fg": [ 8224, 8226, 8225, 8223 ], + "fg": [ 8293, 8295, 8294, 8292 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8224, 8226, 8225, 8223 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8293, 8295, 8294, 8292 ] } ] }, { "id": [ "vp_halfboard_horizontal", "vp_halfboard_horizontal_2" ], - "fg": [ 8194, 8196, 8195, 8193 ], + "fg": [ 8263, 8265, 8264, 8262 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8194, 8196, 8195, 8193 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8263, 8265, 8264, 8262 ] } ] }, { "id": [ "vp_halfboard_horizontal_front", "vp_halfboard_horizontal_2_front", "vp_halfboard_cover" ], - "fg": [ 8185, 8188, 8187, 8186 ], + "fg": [ 8254, 8257, 8256, 8255 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8185, 8188, 8187, 8186 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8254, 8257, 8256, 8255 ] } ] }, { "id": "vp_halfboard_horizontal_rear", - "fg": [ 8189, 8192, 8191, 8190 ], + "fg": [ 8258, 8261, 8260, 8259 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8189, 8192, 8191, 8190 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8258, 8261, 8260, 8259 ] } ] }, { "id": [ "vp_halfboard_vertical", "vp_halfboard_vertical_2" ], - "fg": [ 8218, 8217, 8218, 8217 ], + "fg": [ 8287, 8286, 8287, 8286 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8218, 8217, 8218, 8217 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8287, 8286, 8287, 8286 ] } ] }, { "id": "vp_halfboard_cover_left", - "fg": [ 8177, 8180, 8179, 8178 ], + "fg": [ 8246, 8249, 8248, 8247 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8177, 8180, 8179, 8178 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8246, 8249, 8248, 8247 ] } ] }, { "id": "vp_halfboard_cover_right", - "fg": [ 8181, 8184, 8183, 8182 ], + "fg": [ 8250, 8253, 8252, 8251 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8181, 8184, 8183, 8182 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8250, 8253, 8252, 8251 ] } ] }, { "id": "vp_halfboard_wheel_left", - "fg": [ 8227, 8230, 8229, 8228 ], + "fg": [ 8296, 8299, 8298, 8297 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8227, 8230, 8229, 8228 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8296, 8299, 8298, 8297 ] } ] }, { "id": "vp_halfboard_wheel_right", - "fg": [ 8231, 8234, 8233, 8232 ], + "fg": [ 8300, 8303, 8302, 8301 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8231, 8234, 8233, 8232 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8300, 8303, 8302, 8301 ] } ] }, { "id": "vp_hddoor_left", - "fg": [ 8236, 8238, 8237, 8235 ], + "fg": [ 8305, 8307, 8306, 8304 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8244, 8246, 8245, 8243 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8244, 8246, 8245, 8243 ] } + { "id": "open", "fg": [ 8313, 8315, 8314, 8312 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8313, 8315, 8314, 8312 ] } ] }, { "id": "vp_hddoor_right", - "fg": [ 8240, 8242, 8241, 8239 ], + "fg": [ 8309, 8311, 8310, 8308 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8264, 8266, 8265, 8263 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8264, 8266, 8265, 8263 ] } + { "id": "open", "fg": [ 8333, 8335, 8334, 8332 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8333, 8335, 8334, 8332 ] } ] }, { "id": "vp_hddoor_opaque_left", - "fg": [ 8252, 8254, 8253, 8251 ], + "fg": [ 8321, 8323, 8322, 8320 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8248, 8250, 8249, 8247 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8248, 8250, 8249, 8247 ] } + { "id": "open", "fg": [ 8317, 8319, 8318, 8316 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8317, 8319, 8318, 8316 ] } ] }, { "id": "vp_hddoor_opaque_right", - "fg": [ 8260, 8262, 8261, 8259 ], + "fg": [ 8329, 8331, 8330, 8328 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8256, 8258, 8257, 8255 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8256, 8258, 8257, 8255 ] } + { "id": "open", "fg": [ 8325, 8327, 8326, 8324 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8325, 8327, 8326, 8324 ] } ] }, { @@ -13428,11 +13522,11 @@ "vp_hddoor_full_sw", "vp_hddoor_full_rear_left" ], - "fg": [ 8236, 8238, 8237, 8235 ], + "fg": [ 8305, 8307, 8306, 8304 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8244, 8246, 8245, 8243 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8244, 8246, 8245, 8243 ] } + { "id": "open", "fg": [ 8313, 8315, 8314, 8312 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8313, 8315, 8314, 8312 ] } ] }, { @@ -13444,636 +13538,584 @@ "vp_hddoor_full_se", "vp_hddoor_full_rear_right" ], - "fg": [ 8240, 8242, 8241, 8239 ], + "fg": [ 8309, 8311, 8310, 8308 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8264, 8266, 8265, 8263 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8264, 8266, 8265, 8263 ] } + { "id": "open", "fg": [ 8333, 8335, 8334, 8332 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8333, 8335, 8334, 8332 ] } ] }, { "id": "vp_hddoor_opaque_full_left", - "fg": [ 8252, 8254, 8253, 8251 ], + "fg": [ 8321, 8323, 8322, 8320 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8248, 8250, 8249, 8247 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8248, 8250, 8249, 8247 ] } + { "id": "open", "fg": [ 8317, 8319, 8318, 8316 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8317, 8319, 8318, 8316 ] } ] }, { "id": "vp_hddoor_opaque_full_right", - "fg": [ 8260, 8262, 8261, 8259 ], + "fg": [ 8329, 8331, 8330, 8328 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8256, 8258, 8257, 8255 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8256, 8258, 8257, 8255 ] } + { "id": "open", "fg": [ 8325, 8327, 8326, 8324 ] }, + { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8325, 8327, 8326, 8324 ] } ] }, - { "id": "vp_saddle_scooter", "fg": [ 8268, 8270, 8269, 8267 ], "rotates": true }, { - "id": [ "vp_seat_windshield_leather", "vp_reclining_seat_windshield_leather" ], - "fg": [ 8272, 8274, 8273, 8271 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8272, 8274, 8273, 8271 ] } ] - }, - { - "id": [ "vp_seat_windshield", "vp_reclining_seat_windshield" ], - "fg": [ 8276, 8278, 8277, 8275 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8276, 8278, 8277, 8275 ] } ] - }, - { - "id": "vp_bed", - "fg": [ 8280, 8282, 8281, 8279 ], + "id": "vp_light_blue", + "fg": [ 8342, 8343 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 8280, 8282, 8281, 8279 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8165, "bg": [ 8342, 8343 ] } ] }, { - "id": "vp_hatch_left", - "fg": [ 8285, 8292, 8291, 8290 ], + "id": "vp_light_red", + "fg": [ 8344, 8345 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8286, 8289, 8288, 8287 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8286, 8289, 8288, 8287 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 8165, "bg": [ 8344, 8345 ] } ] }, { - "id": "vp_hatch_right", - "fg": [ 8291, 8290, 8285, 8292 ], + "id": [ "vp_floodlight", "vp_directed_floodlight" ], + "fg": [ 8339, 8341, 8340, 8338 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8288, 8287, 8286, 8289 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8288, 8287, 8286, 8289 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 8165, "bg": [ 8339, 8341, 8340, 8338 ] } ] }, { - "id": "vp_hatch_wheel_left", - "fg": [ 8285, 8306, 8291, 8290 ], + "id": "vp_afs_roof_external_tank", + "fg": [ 8337, 8336 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8286, 8305, 8288, 8287 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8286, 8289, 8288, 8287 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 8165, "bg": [ 8337, 8336 ] } ] }, + { "id": "vp_saddle_scooter", "fg": [ 8347, 8349, 8348, 8346 ], "rotates": true }, { - "id": "vp_hatch_wheel_right", - "fg": [ 8291, 8290, 8285, 8306 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8288, 8287, 8286, 8305 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8288, 8287, 8286, 8305 ] } - ] - }, - { - "id": [ "vp_hatch_horizontal_rear", "vp_hatch_horizontal", "vp_hatch_horizontal_2" ], - "fg": [ 8283, 8291, 8290, 8285 ], + "id": [ "vp_seat_windshield_leather", "vp_reclining_seat_windshield_leather" ], + "fg": [ 8351, 8353, 8352, 8350 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8284, 8288, 8287, 8286 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8284, 8288, 8287, 8286 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8351, 8353, 8352, 8350 ] } ] }, { - "id": "vp_hatch_horizontal_front", - "fg": [ 8290, 8285, 8283, 8291 ], + "id": [ "vp_seat_windshield", "vp_reclining_seat_windshield" ], + "fg": [ 8355, 8357, 8356, 8354 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8287, 8286, 8284, 8288 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8287, 8286, 8284, 8288 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8355, 8357, 8356, 8354 ] } ] }, { - "id": "vp_hatch_opaque_left", - "fg": [ 8295, 8302, 8301, 8300 ], + "id": "vp_solar_panel", + "fg": [ 8358, 8365 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8296, 8299, 8298, 8297 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8296, 8299, 8298, 8297 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 8162, "bg": [ 8358, 8365 ] } ] }, { - "id": "vp_hatch_opaque_right", - "fg": [ 8301, 8300, 8295, 8302 ], + "id": "vp_reinforced_solar_panel", + "fg": [ 8363, 8364 ], + "bg": [ 8358, 8365 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8298, 8297, 8296, 8299 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8298, 8297, 8296, 8299 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 8162, "bg": [ 8358, 8365 ] } ] }, { - "id": "vp_hatch_opaque_wheel_left", - "fg": [ 8295, 8304, 8301, 8300 ], + "id": "vp_solar_panel_v2", + "fg": [ 8359, 8360 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8296, 8303, 8298, 8297 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8296, 8303, 8298, 8297 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 8162, "bg": [ 8359, 8360 ] } ] }, { - "id": "vp_hatch_opaque_wheel_right", - "fg": [ 8301, 8300, 8295, 8304 ], + "id": "vp_reinforced_solar_panel_v2", + "fg": [ 8363, 8364 ], + "bg": [ 8359, 8360 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8298, 8297, 8296, 8303 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8298, 8297, 8296, 8303 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 8162, "bg": [ 8359, 8360 ] } ] }, { - "id": [ "vp_hatch_opaque_horizontal_rear", "vp_hatch_opaque_horizontal", "vp_hatch_opaque_horizontal_2" ], - "fg": [ 8293, 8301, 8300, 8295 ], + "id": "vp_solar_panel_v3", + "fg": [ 8361, 8362 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8294, 8298, 8297, 8296 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8294, 8298, 8297, 8296 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 8162, "bg": [ 8361, 8362 ] } ] }, { - "id": "vp_hatch_opaque_horizontal_front", - "fg": [ 8300, 8295, 8293, 8301 ], + "id": "vp_bed", + "fg": [ 8367, 8369, 8368, 8366 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 8297, 8296, 8294, 8298 ] }, - { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8297, 8296, 8294, 8298 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 8367, 8369, 8368, 8366 ] } ] }, { "id": [ "vp_wheel_wide", "vp_wheel_wide_steerable", "vp_wheel_wide_or", "vp_wheel_wide_or_steerable" ], - "fg": [ 8308, 8307, 8308, 8307 ], + "fg": [ 8373, 8372, 8373, 8372 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": [ 8308, 8307, 8308, 8307 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": [ 8373, 8372, 8373, 8372 ] } ] }, { "id": [ "vp_windshield", "vp_windshield_horizontal", "vp_windshield_horizontal_front", "vp_windshield_front_edge" ], - "fg": [ 8317, 8320, 8319, 8318 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8317, 8320, 8319, 8318 ] } ], + "fg": [ 8382, 8385, 8384, 8383 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8162, 8162, 8162, 8162 ], "bg": [ 8382, 8385, 8384, 8383 ] } ], "multitile": true }, { "id": "vp_windshield_horizontal_rear", - "fg": [ 8334, 8335, 8334, 8333 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8334, 8335, 8334, 8333 ] } ], + "fg": [ 8399, 8400, 8399, 8398 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8162, 8162, 8162, 8162 ], "bg": [ 8399, 8400, 8399, 8398 ] } ], "multitile": true }, { "id": "vp_windshield_nw", - "fg": [ 8329, 8332, 8331, 8330 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8042, 8042, 8042, 8042 ], "bg": [ 8329, 8332, 8331, 8330 ] } ], + "fg": [ 8394, 8397, 8396, 8395 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8164, 8164, 8164, 8164 ], "bg": [ 8394, 8397, 8396, 8395 ] } ], "multitile": true }, { "id": "vp_windshield_ne", - "fg": [ 8325, 8328, 8327, 8326 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8041, 8041, 8041, 8041 ], "bg": [ 8325, 8328, 8327, 8326 ] } ], + "fg": [ 8390, 8393, 8392, 8391 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8163, 8163, 8163, 8163 ], "bg": [ 8390, 8393, 8392, 8391 ] } ], "multitile": true }, { "id": "vp_windshield_sw", - "fg": [ 8321, 8324, 8336, 8322 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8042, 8042, 8042, 8042 ], "bg": [ 8321, 8324, 8336, 8322 ] } ], + "fg": [ 8386, 8389, 8401, 8387 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8164, 8164, 8164, 8164 ], "bg": [ 8386, 8389, 8401, 8387 ] } ], "multitile": true }, { "id": "vp_windshield_se", - "fg": [ 8323, 8339, 8321, 8337 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8041, 8041, 8041, 8041 ], "bg": [ 8323, 8339, 8321, 8337 ] } ], + "fg": [ 8388, 8404, 8386, 8402 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8163, 8163, 8163, 8163 ], "bg": [ 8388, 8404, 8386, 8402 ] } ], "multitile": true }, { "id": [ "vp_windshield_vertical_left", "vp_windshield_left" ], - "fg": [ 8321, 8324, 8323, 8322 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8041, 8041, 8041, 8041 ], "bg": [ 8321, 8324, 8323, 8322 ] } ], + "fg": [ 8386, 8389, 8388, 8387 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8163, 8163, 8163, 8163 ], "bg": [ 8386, 8389, 8388, 8387 ] } ], "multitile": true }, { "id": [ "vp_windshield_vertical_right", "vp_windshield_right" ], - "fg": [ 8336, 8339, 8338, 8337 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8042, 8042, 8042, 8042 ], "bg": [ 8336, 8339, 8338, 8337 ] } ], + "fg": [ 8401, 8404, 8403, 8402 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8164, 8164, 8164, 8164 ], "bg": [ 8401, 8404, 8403, 8402 ] } ], "multitile": true }, { "id": "vp_windshield_cover_left", - "fg": [ 8309, 8312, 8311, 8310 ], + "fg": [ 8374, 8377, 8376, 8375 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8309, 8312, 8311, 8310 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8374, 8377, 8376, 8375 ] } ] }, { "id": "vp_windshield_cover_right", - "fg": [ 8313, 8316, 8315, 8314 ], + "fg": [ 8378, 8381, 8380, 8379 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8313, 8316, 8315, 8314 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8378, 8381, 8380, 8379 ] } ] }, { "id": "vp_windshield_wheel_left", - "fg": [ 8341, 8344, 8343, 8342 ], + "fg": [ 8406, 8409, 8408, 8407 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8341, 8344, 8343, 8342 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8406, 8409, 8408, 8407 ] } ] }, { "id": "vp_windshield_wheel_right", - "fg": [ 8345, 8348, 8347, 8346 ], + "fg": [ 8410, 8413, 8412, 8411 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8043, 8043, 8043, 8043 ], "bg": [ 8345, 8348, 8347, 8346 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8165, 8165, 8165, 8165 ], "bg": [ 8410, 8413, 8412, 8411 ] } ] }, { "id": "vp_windshield_vertical_2_left", - "fg": [ 8321, 8340, 8323, 8322 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8041, 8041, 8041, 8041 ], "bg": [ 8321, 8340, 8323, 8322 ] } ], + "fg": [ 8386, 8405, 8388, 8387 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8163, 8163, 8163, 8163 ], "bg": [ 8386, 8405, 8388, 8387 ] } ], "multitile": true }, { "id": "vp_windshield_vertical_2_right", - "fg": [ 8336, 8339, 8338, 8340 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8042, 8042, 8042, 8042 ], "bg": [ 8336, 8339, 8338, 8340 ] } ], + "fg": [ 8401, 8404, 8403, 8405 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8164, 8164, 8164, 8164 ], "bg": [ 8401, 8404, 8403, 8405 ] } ], "multitile": true }, { "id": [ "vp_windshield_full", "vp_windshield_full_horizontal_rear" ], - "fg": [ 8351, 8349, 8350, 8352 ], - "additional_tiles": [ { "id": "broken", "fg": 7517, "bg": [ 8351, 8349, 8350, 8352 ] } ], + "fg": [ 8416, 8414, 8415, 8417 ], + "additional_tiles": [ { "id": "broken", "fg": 7629, "bg": [ 8416, 8414, 8415, 8417 ] } ], "multitile": true }, { "id": "vp_windshield_full_horizontal_front", - "fg": [ 8350, 8352, 8351, 8349 ], - "additional_tiles": [ { "id": "broken", "fg": 7517, "bg": [ 8350, 8352, 8351, 8349 ] } ], + "fg": [ 8415, 8417, 8416, 8414 ], + "additional_tiles": [ { "id": "broken", "fg": 7629, "bg": [ 8415, 8417, 8416, 8414 ] } ], "multitile": true }, { "id": [ "vp_windshield_full_vertical_left", "vp_windshield_full_left" ], - "fg": [ 8352, 8353, 8349, 8350 ], - "additional_tiles": [ { "id": "broken", "fg": 7517, "bg": [ 8352, 8353, 8349, 8350 ] } ], + "fg": [ 8417, 8418, 8414, 8415 ], + "additional_tiles": [ { "id": "broken", "fg": 7629, "bg": [ 8417, 8418, 8414, 8415 ] } ], "multitile": true }, { "id": [ "vp_windshield_full_vertical_right", "vp_windshield_full_right" ], - "fg": [ 8349, 8350, 8352, 8353 ], - "additional_tiles": [ { "id": "broken", "fg": 7517, "bg": [ 8349, 8350, 8352, 8353 ] } ], + "fg": [ 8414, 8415, 8417, 8418 ], + "additional_tiles": [ { "id": "broken", "fg": 7629, "bg": [ 8414, 8415, 8417, 8418 ] } ], "multitile": true }, { "id": "vp_windshield_full_wheel_left", - "fg": [ 8352, 8354, 8349, 8350 ], - "additional_tiles": [ { "id": "broken", "fg": 7517, "bg": [ 8352, 8354, 8349, 8350 ] } ], + "fg": [ 8417, 8419, 8414, 8415 ], + "additional_tiles": [ { "id": "broken", "fg": 7629, "bg": [ 8417, 8419, 8414, 8415 ] } ], "multitile": true }, { "id": "vp_windshield_full_wheel_right", - "fg": [ 8349, 8350, 8352, 8354 ], - "additional_tiles": [ { "id": "broken", "fg": 7517, "bg": [ 8349, 8350, 8352, 8354 ] } ], + "fg": [ 8414, 8415, 8417, 8419 ], + "additional_tiles": [ { "id": "broken", "fg": 7629, "bg": [ 8414, 8415, 8417, 8419 ] } ], "multitile": true }, { "id": "vp_windshield_horizontal_front_edge", - "fg": [ 8356, 8358, 8357, 8355 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8356, 8358, 8357, 8355 ] } ], + "fg": [ 8421, 8423, 8422, 8420 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8162, 8162, 8162, 8162 ], "bg": [ 8421, 8423, 8422, 8420 ] } ], "multitile": true }, { "id": "vp_windshield_horizontal_rear_edge", - "fg": [ 8367, 8370, 8369, 8368 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8367, 8370, 8369, 8368 ] } ], + "fg": [ 8432, 8435, 8434, 8433 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8162, 8162, 8162, 8162 ], "bg": [ 8432, 8435, 8434, 8433 ] } ], "multitile": true }, { "id": "vp_windshield_nw_edge", - "fg": [ 8364, 8366, 8365, 8363 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8364, 8366, 8365, 8363 ] } ], + "fg": [ 8429, 8431, 8430, 8428 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8162, 8162, 8162, 8162 ], "bg": [ 8429, 8431, 8430, 8428 ] } ], "multitile": true }, { "id": "vp_windshield_ne_edge", - "fg": [ 8360, 8362, 8361, 8359 ], - "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8360, 8362, 8361, 8359 ] } ], + "fg": [ 8425, 8427, 8426, 8424 ], + "additional_tiles": [ { "id": "broken", "fg": [ 8162, 8162, 8162, 8162 ], "bg": [ 8425, 8427, 8426, 8424 ] } ], "multitile": true }, { "id": "vp_windshield_sw_edge", - "fg": [ 8209, 8212, 8211, 8210 ], + "fg": [ 8278, 8281, 8280, 8279 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8209, 8212, 8211, 8210 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8162, 8162, 8162, 8162 ], "bg": [ 8278, 8281, 8280, 8279 ] } ] }, { "id": "vp_windshield_se_edge", - "fg": [ 8205, 8208, 8207, 8206 ], + "fg": [ 8274, 8277, 8276, 8275 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8040, 8040, 8040, 8040 ], "bg": [ 8205, 8208, 8207, 8206 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8162, 8162, 8162, 8162 ], "bg": [ 8274, 8277, 8276, 8275 ] } ] } ] }, { "file": "fillerhoder.png", - "//": "range 8384 to 8447", + "//": "range 8448 to 8511", "tiles": [ { "id": "f_sandbag_wall", - "fg": 8384, + "fg": 8448, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 8384 }, - { "id": "center", "fg": 8385 }, - { "id": "corner", "fg": 8386 }, - { "id": "edge", "fg": 8387 }, - { "id": "end_piece", "fg": 8388 }, - { "id": "t_connection", "fg": 8389 } + { "id": "unconnected", "fg": 8448 }, + { "id": "center", "fg": 8449 }, + { "id": "corner", "fg": 8450 }, + { "id": "edge", "fg": 8451 }, + { "id": "end_piece", "fg": 8452 }, + { "id": "t_connection", "fg": 8453 } ] }, - { "id": "f_slab", "fg": 8390 }, - { "id": "animation_bullet_flame", "fg": 8391, "rotates": false }, - { "id": "animation_bullet_normal", "fg": 8392, "rotates": false }, - { "id": "animation_bullet_shrapnel", "fg": 8393 }, + { "id": "f_slab", "fg": 8454 }, + { "id": "animation_bullet_flame", "fg": 8455, "rotates": false }, + { "id": "animation_bullet_normal", "fg": 8456, "rotates": false }, + { "id": "animation_bullet_shrapnel", "fg": 8457 }, { "id": "explosion", - "fg": 8394, + "fg": 8458, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 8394 }, { "id": "edge", "fg": 8395 } ] + "additional_tiles": [ { "id": "corner", "fg": 8458 }, { "id": "edge", "fg": 8459 } ] }, { "id": "explosion_medium", "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 8394 }, { "id": "edge", "fg": 8395 } ], - "fg": 8394 + "additional_tiles": [ { "id": "corner", "fg": 8458 }, { "id": "edge", "fg": 8459 } ], + "fg": 8458 }, { "id": "explosion_weak", "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 8394 }, { "id": "edge", "fg": 8395 } ], - "fg": 8394 + "additional_tiles": [ { "id": "corner", "fg": 8458 }, { "id": "edge", "fg": 8459 } ], + "fg": 8458 }, { "id": "vp_chimes", - "fg": 8396, + "fg": 8460, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8396 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8460 } ] }, { "id": "vp_robot_controls", - "fg": 8397, + "fg": 8461, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8397 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8461 } ] }, - { "id": "vp_ram_wood", "fg": [ 8411, 8413, 8412, 8414 ], "rotates": true }, - { "id": "vp_ram_military", "fg": [ 8407, 8409, 8408, 8410 ], "rotates": true }, - { "id": "vp_ram_hardsteel", "fg": [ 8403, 8405, 8404, 8406 ], "rotates": true }, - { "id": "vp_ram_alloy", "fg": [ 8399, 8401, 8400, 8402 ], "rotates": true }, + { "id": "vp_ram_wood", "fg": [ 8475, 8477, 8476, 8478 ], "rotates": true }, + { "id": "vp_ram_military", "fg": [ 8471, 8473, 8472, 8474 ], "rotates": true }, + { "id": "vp_ram_hardsteel", "fg": [ 8467, 8469, 8468, 8470 ], "rotates": true }, + { "id": "vp_ram_alloy", "fg": [ 8463, 8465, 8464, 8466 ], "rotates": true }, { "id": "vp_roller_drum", - "fg": 8415, + "fg": 8479, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8398, "bg": 8415 } ] + "additional_tiles": [ { "id": "broken", "fg": 8462, "bg": 8479 } ] }, { "id": "vp_battery_motorbike", - "fg": 8427, + "fg": 8491, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8427 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8491 } ] }, { "id": "vp_blade_horizontal", - "fg": 8436, + "fg": 8500, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8436 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8500 } ] }, { "id": "vp_blade_vertical", - "fg": 8437, + "fg": 8501, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8437 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8501 } ] }, { "id": "vp_controls", - "fg": 8431, + "fg": 8495, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8431 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8495 } ] }, { "id": "vp_engine_1cyl", - "fg": 8420, + "fg": 8484, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8420 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8484 } ] }, { "id": "vp_engine_electric", - "fg": 8424, + "fg": 8488, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8424 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8488 } ] }, { "id": "vp_engine_electric_large", - "fg": 8425, + "fg": 8489, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8425 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8489 } ] }, - { "id": "vp_engine_v12", "fg": 8422, "bg": 8423 }, + { "id": "vp_engine_v12", "fg": 8486, "bg": 8487 }, { "id": "vp_engine_v6", - "fg": 8422, + "fg": 8486, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8422 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8486 } ] }, { "id": "vp_engine_v8", - "fg": 8423, + "fg": 8487, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8423 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8487 } ] }, { "id": "vp_engine_vtwin", - "fg": 8421, + "fg": 8485, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8421 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8485 } ] }, { "id": "vp_foot_pedals", - "fg": 8426, + "fg": 8490, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8426 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8490 } ] }, { "id": "vp_fusion_gun", - "fg": 8439, + "fg": 8503, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8439 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8503 } ] }, { "id": "vp_hdroof", - "fg": 8441, + "fg": 8505, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8441 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8505 } ] }, { "id": "vp_hydrogen_tank", - "fg": 8429, + "fg": 8493, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8429 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8493 } ] }, { "id": "vp_minireactor", - "fg": 8428, + "fg": 8492, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8428 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8492 } ] }, { "id": "vp_muffler", - "fg": 8430, + "fg": 8494, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8430 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8494 } ] }, { "id": "vp_plating_hard", - "fg": 8435, + "fg": 8499, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8435 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8499 } ] }, { "id": "vp_plating_military", - "fg": 8432, + "fg": 8496, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8432 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8496 } ] }, { "id": "vp_plating_spiked", - "fg": 8434, + "fg": 8498, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8434 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8498 } ] }, { "id": "vp_plating_steel", - "fg": 8432, + "fg": 8496, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8432 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8496 } ] }, { "id": "vp_plating_superalloy", - "fg": 8433, + "fg": 8497, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8433 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8497 } ] }, { "id": "vp_plating_wood", - "fg": 8444, + "fg": 8508, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8444 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8508 } ] }, { "id": "vp_roof", - "fg": 8442, + "fg": 8506, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8442 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8506 } ] }, { "id": "vp_roof_cloth", - "fg": 8443, + "fg": 8507, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8443 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8507 } ] }, { "id": "vp_seatbelt", - "fg": 8419, + "fg": 8483, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8419 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8483 } ] }, { "id": "vp_seatbelt_heavyduty", - "fg": 8419, + "fg": 8483, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8419 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8483 } ] }, { "id": "vp_small_storage_battery", - "fg": 8427, + "fg": 8491, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8427 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8491 } ] }, { "id": "vp_storage_battery", - "fg": 8427, + "fg": 8491, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8427 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8491 } ] }, { "id": "vp_v_curtain", - "fg": 8445, + "fg": 8509, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8445 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8509 } ] }, { "id": "vp_wheel_armor", - "fg": 8416, + "fg": 8480, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8416 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8480 } ] }, { "id": "vp_wheel_armor_steerable", - "fg": 8416, + "fg": 8480, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8416 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8480 } ] }, { "id": "vp_wheel_caster", - "fg": 8440, + "fg": 8504, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8440 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8504 } ] }, { "id": "vp_wheel_small", - "fg": 8418, + "fg": 8482, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8418 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8482 } ] }, { "id": "vp_wheel_small_steerable", - "fg": 8418, + "fg": 8482, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8418 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8482 } ] }, { "id": "vp_wheel_wheelchair", - "fg": 8417, + "fg": 8481, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8417 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8481 } ] }, { "id": "vp_wheel_wood", - "fg": 8447, + "fg": 8511, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8447 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8511 } ] }, { "id": [ "wheel_wood", "wheel_wood_b" ], - "fg": 8447, + "fg": 8511, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8447 } ] + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8511 } ] }, { "id": "vp_wheel_wood_b", - "fg": 8447, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 7518, "bg": 8447 } ] - }, - { "id": "foot_crank", "fg": 8426 }, - { "id": "frame", "fg": 8446 }, - { "id": "hard_plate", "fg": 8435 }, - { "id": "kitchen_unit", "fg": 8438 }, - { "id": "motor", "fg": 8424 }, - { "id": "motor_large", "fg": 8425 }, - { "id": "muffler", "fg": 8430 }, - { "id": "spiked_plate", "fg": 8434 }, - { "id": "storage_battery", "fg": 8427 }, - { "id": "vehicle_controls", "fg": 8431 }, - { "id": "1cyl_combustion", "fg": 8420 }, - { "id": "v2_combustion", "fg": 8421 }, - { "id": [ "v6_combustion", "v6_diesel" ], "fg": 8422 }, - { "id": "v8_combustion", "fg": 8423 } + "fg": 8511, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 7630, "bg": 8511 } ] + }, + { "id": "foot_crank", "fg": 8490 }, + { "id": "frame", "fg": 8510 }, + { "id": "hard_plate", "fg": 8499 }, + { "id": "kitchen_unit", "fg": 8502 }, + { "id": "motor", "fg": 8488 }, + { "id": "motor_large", "fg": 8489 }, + { "id": "muffler", "fg": 8494 }, + { "id": "spiked_plate", "fg": 8498 }, + { "id": "storage_battery", "fg": 8491 }, + { "id": "vehicle_controls", "fg": 8495 }, + { "id": "1cyl_combustion", "fg": 8484 }, + { "id": "v2_combustion", "fg": 8485 }, + { "id": [ "v6_combustion", "v6_diesel" ], "fg": 8486 }, + { "id": "v8_combustion", "fg": 8487 } ] }, { "file": "fillergiant.png", - "//": "range 8448 to 8463", + "//": "range 8512 to 8527", "sprite_width": 96, "sprite_height": 96, "sprite_offset_x": -32, @@ -14086,18 +14128,18 @@ "t_tree_pear_season_spring", "t_tree_plum_season_spring" ], - "fg": 6956, - "bg": 6949 + "fg": 7068, + "bg": 7061 }, - { "id": "t_tree_apricot_season_summer", "fg": 8448, "bg": 6950 }, - { "id": "t_tree_mulberry_season_summer", "fg": 8449, "bg": 6950 }, - { "id": "t_tree_elderberry_season_summer", "fg": 8449, "bg": 6950 }, - { "id": "t_tree_pear_season_autumn", "fg": 8450, "bg": 6950 }, - { "id": "t_tree_plum_season_summer", "fg": 8451, "bg": 6950 }, + { "id": "t_tree_apricot_season_summer", "fg": 8512, "bg": 7062 }, + { "id": "t_tree_mulberry_season_summer", "fg": 8513, "bg": 7062 }, + { "id": "t_tree_elderberry_season_summer", "fg": 8513, "bg": 7062 }, + { "id": "t_tree_pear_season_autumn", "fg": 8514, "bg": 7062 }, + { "id": "t_tree_plum_season_summer", "fg": 8515, "bg": 7062 }, { "id": [ "t_tree_apricot_harvested", "t_tree_mulberry_harvested", "t_tree_plum_harvested", "t_tree_pear_season_summer" ], - "fg": 6951, - "bg": 6950 + "fg": 7063, + "bg": 7062 }, { "id": [ @@ -14107,12 +14149,12 @@ "t_tree_pear_harvested" ], "fg": [ - { "weight": 100, "sprite": 6952 }, - { "weight": 100, "sprite": 6953 }, - { "weight": 100, "sprite": 6954 }, - { "weight": 100, "sprite": 6955 } + { "weight": 100, "sprite": 7064 }, + { "weight": 100, "sprite": 7065 }, + { "weight": 100, "sprite": 7066 }, + { "weight": 100, "sprite": 7067 } ], - "bg": 6948 + "bg": 7060 }, { "id": [ @@ -14121,29 +14163,29 @@ "t_tree_pear_season_winter", "t_tree_plum_season_winter" ], - "fg": 6980, - "bg": 6947 - }, - { "id": "t_tree_chestnut", "fg": 8453, "bg": 6949 }, - { "id": "t_tree_chestnut_season_summer", "fg": 8452, "bg": 6950 }, - { "id": "t_tree_chestnut_season_autumn", "fg": 8452, "bg": 6948 }, - { "id": "t_tree_chestnut_season_winter", "fg": 8452, "bg": 6947 }, - { "id": "t_tree_pine", "fg": 8457, "bg": 6949 }, - { "id": "t_tree_pine_season_summer", "fg": 8457, "bg": 6950 }, - { "id": "t_tree_pine_season_autumn", "fg": 8457, "bg": 6948 }, - { "id": "t_tree_pine_season_winter", "fg": 8457, "bg": 6947 }, - { "id": "t_tree_deadpine", "fg": 8454, "bg": 6949 }, - { "id": "t_tree_deadpine_season_summer", "fg": 8454, "bg": 6950 }, - { "id": "t_tree_deadpine_season_autumn", "fg": 8454, "bg": 6948 }, - { "id": "t_tree_deadpine_season_winter", "fg": 8454, "bg": 6947 }, - { "id": "t_tree_hickory", "fg": 8456, "bg": 6949 }, - { "id": "t_tree_hickory_season_summer", "fg": 8456, "bg": 6950 }, - { "id": "t_tree_hickory_season_autumn", "fg": 8456, "bg": 6948 }, - { "id": "t_tree_hickory_season_winter", "fg": 8455, "bg": 6947 }, - { "id": "t_tree_hickory_dead", "fg": 8455, "bg": 6949 }, - { "id": "t_tree_hickory_dead_season_summer", "fg": 8455, "bg": 6950 }, - { "id": "t_tree_hickory_dead_season_autumn", "fg": 8455, "bg": 6948 }, - { "id": "t_tree_hickory_dead_season_winter", "fg": 8455, "bg": 6947 } + "fg": 7092, + "bg": 7059 + }, + { "id": "t_tree_chestnut", "fg": 8517, "bg": 7061 }, + { "id": "t_tree_chestnut_season_summer", "fg": 8516, "bg": 7062 }, + { "id": "t_tree_chestnut_season_autumn", "fg": 8516, "bg": 7060 }, + { "id": "t_tree_chestnut_season_winter", "fg": 8516, "bg": 7059 }, + { "id": "t_tree_pine", "fg": 8521, "bg": 7061 }, + { "id": "t_tree_pine_season_summer", "fg": 8521, "bg": 7062 }, + { "id": "t_tree_pine_season_autumn", "fg": 8521, "bg": 7060 }, + { "id": "t_tree_pine_season_winter", "fg": 8521, "bg": 7059 }, + { "id": "t_tree_deadpine", "fg": 8518, "bg": 7061 }, + { "id": "t_tree_deadpine_season_summer", "fg": 8518, "bg": 7062 }, + { "id": "t_tree_deadpine_season_autumn", "fg": 8518, "bg": 7060 }, + { "id": "t_tree_deadpine_season_winter", "fg": 8518, "bg": 7059 }, + { "id": "t_tree_hickory", "fg": 8520, "bg": 7061 }, + { "id": "t_tree_hickory_season_summer", "fg": 8520, "bg": 7062 }, + { "id": "t_tree_hickory_season_autumn", "fg": 8520, "bg": 7060 }, + { "id": "t_tree_hickory_season_winter", "fg": 8519, "bg": 7059 }, + { "id": "t_tree_hickory_dead", "fg": 8519, "bg": 7061 }, + { "id": "t_tree_hickory_dead_season_summer", "fg": 8519, "bg": 7062 }, + { "id": "t_tree_hickory_dead_season_autumn", "fg": 8519, "bg": 7060 }, + { "id": "t_tree_hickory_dead_season_winter", "fg": 8519, "bg": 7059 } ] }, { diff --git a/gfx/ChibiUltica/widevehicle.png b/gfx/ChibiUltica/widevehicle.png index bb53c8637742d..e234b7934e6ca 100644 Binary files a/gfx/ChibiUltica/widevehicle.png and b/gfx/ChibiUltica/widevehicle.png differ diff --git a/gfx/MshockXotto+/large.png b/gfx/MshockXotto+/large.png index 20d8fbf76bf67..2829bad26bdba 100644 Binary files a/gfx/MshockXotto+/large.png and b/gfx/MshockXotto+/large.png differ diff --git a/gfx/MshockXotto+/overmap.png b/gfx/MshockXotto+/overmap.png index a2df1cc1fe403..6603874fd98ed 100644 Binary files a/gfx/MshockXotto+/overmap.png and b/gfx/MshockXotto+/overmap.png differ diff --git a/gfx/MshockXotto+/small.png b/gfx/MshockXotto+/small.png index 14bc6494e2524..bdc48a985f972 100644 Binary files a/gfx/MshockXotto+/small.png and b/gfx/MshockXotto+/small.png differ diff --git a/gfx/MshockXotto+/tall.png b/gfx/MshockXotto+/tall.png index 659ecad85b027..456996658e1a0 100644 Binary files a/gfx/MshockXotto+/tall.png and b/gfx/MshockXotto+/tall.png differ diff --git a/gfx/MshockXotto+/tile_config.json b/gfx/MshockXotto+/tile_config.json index 86b42276fdb6a..f70902020da2d 100644 --- a/gfx/MshockXotto+/tile_config.json +++ b/gfx/MshockXotto+/tile_config.json @@ -5,10 +5,10 @@ "tiles-new": [ { "file": "tiles.png", - "//": "range 1 to 5519", + "//": "range 1 to 5567", "tiles": [ - { "id": [ "player_female", "npc_female" ], "fg": 1, "rotates": false, "bg": 3161 }, - { "id": [ "player_male", "npc_male" ], "fg": 2, "rotates": false, "bg": 3161 }, + { "id": [ "player_female", "npc_female" ], "fg": 1, "rotates": false, "bg": 3178 }, + { "id": [ "player_male", "npc_male" ], "fg": 2, "rotates": false, "bg": 3178 }, { "id": "overlay_female_mutation_active_bio_ads", "fg": 3, "rotates": false }, { "id": "overlay_female_mutation_active_bio_alarm", "fg": 4, "rotates": false }, { "id": "overlay_female_mutation_active_bio_cloak", "fg": 5, "rotates": false }, @@ -315,1370 +315,1355 @@ { "id": "overlay_male_mutation_hair_brown_short", "fg": 292, "rotates": false }, { "id": "overlay_male_mutation_hair_white_short", "fg": 304, "rotates": false }, { "id": "overlay_male_mutation_hair_red_short", "fg": 300, "rotates": false }, - { "id": "overlay_wielded_2_shot_special", "fg": 366, "rotates": false }, - { "id": "overlay_wielded_2x4", "fg": 338, "rotates": false }, - { "id": "overlay_wielded_30gal_barrel", "fg": 316, "rotates": false }, - { "id": "overlay_wielded_30gal_drum", "fg": 316, "rotates": false }, - { "id": "overlay_wielded_50pistol", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_55gal_drum", "fg": 316, "rotates": false }, - { "id": "overlay_wielded_BFG", "fg": 373, "rotates": false }, - { "id": "overlay_wielded_LAW", "fg": 403, "rotates": false }, - { "id": "overlay_wielded_LAW_Packed", "fg": 403, "rotates": false }, - { "id": "overlay_wielded_PR24-extended", "fg": 322, "rotates": false }, - { "id": "overlay_wielded_PR24-retracted", "fg": 324, "rotates": false }, - { "id": "overlay_wielded_RPG", "fg": 429, "rotates": false }, - { "id": "overlay_wielded_TDI", "fg": 442, "rotates": false }, - { "id": "overlay_wielded_abzats", "fg": 428, "rotates": false }, - { "id": "overlay_wielded_acoustic_guitar", "fg": 501, "rotates": false }, - { "id": "overlay_wielded_acr", "fg": 367, "rotates": false }, - { "id": "overlay_wielded_airspeargun", "fg": 438, "rotates": false }, - { "id": "overlay_wielded_ak47", "fg": 368, "rotates": false }, - { "id": "overlay_wielded_ak74", "fg": 368, "rotates": false }, - { "id": "overlay_wielded_american_180", "fg": 426, "rotates": false }, - { "id": "overlay_wielded_an94", "fg": 368, "rotates": false }, - { "id": "overlay_wielded_ar15", "fg": 369, "rotates": false }, - { "id": "overlay_wielded_arccan", "fg": 443, "rotates": false }, - { "id": "overlay_wielded_arming_sword", "fg": 454, "rotates": false }, - { "id": "overlay_wielded_arming_sword_fake", "fg": 454, "rotates": false }, - { "id": "overlay_wielded_arming_sword_inferior", "fg": 454, "rotates": false }, - { "id": "overlay_wielded_arx160", "fg": 370, "rotates": false }, - { "id": "overlay_wielded_ashot", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_ax", "fg": 449, "rotates": false }, - { "id": "overlay_wielded_bag_canvas", "fg": 843, "rotates": false }, - { "id": "overlay_wielded_bag_canvas_small", "fg": 843, "rotates": false }, - { "id": "overlay_wielded_bagh_nakha", "fg": 320, "rotates": false }, - { "id": "overlay_wielded_bagpipes", "fg": 502, "rotates": false }, - { "id": "overlay_wielded_banjo", "fg": 450, "rotates": false }, - { "id": "overlay_wielded_bat", "fg": 321, "rotates": false }, - { "id": "overlay_wielded_bat_metal", "fg": 323, "rotates": false }, - { "id": "overlay_wielded_baton-extended", "fg": 322, "rotates": false }, - { "id": "overlay_wielded_baton", "fg": 324, "rotates": false }, - { "id": "overlay_wielded_battleaxe", "fg": 449, "rotates": false }, - { "id": "overlay_wielded_battleaxe_fake", "fg": 449, "rotates": false }, - { "id": "overlay_wielded_battleaxe_inferior", "fg": 449, "rotates": false }, - { "id": "overlay_wielded_battletorch", "fg": 451, "rotates": false }, - { "id": "overlay_wielded_battletorch_done", "fg": 451, "rotates": false }, - { "id": "overlay_wielded_battletorch_lit", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_bbgun", "fg": 372, "rotates": false }, - { "id": "overlay_wielded_bee_sting", "fg": 324, "rotates": false }, - { "id": "overlay_wielded_bh_m89", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_bigun", "fg": 374, "rotates": false }, - { "id": "overlay_wielded_bio_blade_weapon", "fg": 325, "rotates": false }, - { "id": "overlay_wielded_bio_claws_weapon", "fg": 326, "rotates": false }, - { "id": "overlay_wielded_bio_sword_weapon", "fg": 325, "rotates": false }, - { "id": "overlay_wielded_blade", "fg": 467, "rotates": false }, - { "id": "overlay_wielded_blowgun", "fg": 458, "rotates": false }, - { "id": "overlay_wielded_blunderbuss", "fg": 378, "rotates": false }, - { "id": "overlay_wielded_bokken", "fg": 327, "rotates": false }, - { "id": "overlay_wielded_bomblet_launcher_double", "fg": 375, "rotates": false }, - { "id": "overlay_wielded_bomblet_launcher_dualshot", "fg": 376, "rotates": false }, - { "id": "overlay_wielded_bomblet_launcher_rotary", "fg": 377, "rotates": false }, - { "id": "overlay_wielded_bomblet_launcher_single", "fg": 378, "rotates": false }, - { "id": "overlay_wielded_bowling_axe", "fg": 328, "rotates": false }, - { "id": [ "overlay_wielded_brazier", "brazier" ], "fg": 1687, "rotates": false }, - { "id": "overlay_wielded_briefcase_smg", "fg": 379, "rotates": false }, - { "id": "overlay_wielded_broadfire_off", "fg": 454, "rotates": false }, - { "id": "overlay_wielded_broadfire_on", "fg": 455, "rotates": false }, - { "id": "overlay_wielded_broadsword", "fg": 454, "rotates": false }, - { "id": "overlay_wielded_broadsword_fake", "fg": 454, "rotates": false }, - { "id": "overlay_wielded_broadsword_inferior", "fg": 454, "rotates": false }, - { "id": "overlay_wielded_broom", "fg": 329, "rotates": false }, - { "id": "overlay_wielded_browning_blr", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_bullet_crossbow", "fg": 381, "rotates": false }, - { "id": "overlay_wielded_bullwhip", "fg": 330, "rotates": false }, - { "id": "overlay_wielded_bwirebat", "fg": 331, "rotates": false }, - { "id": "overlay_wielded_calico", "fg": 382, "rotates": false }, - { "id": "overlay_wielded_candlestick", "fg": 332, "rotates": false }, - { "id": "overlay_wielded_cane", "fg": 333, "rotates": false }, - { "id": "overlay_wielded_carbine_flintlock", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_carbine_flintlock_double", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_carver_off", "fg": 456, "rotates": false }, - { "id": "overlay_wielded_carver_on", "fg": 456, "rotates": false }, - { "id": "overlay_wielded_chain", "fg": 334, "rotates": false }, - { "id": "overlay_wielded_chainsaw_off", "fg": 457, "rotates": false }, - { "id": "overlay_wielded_chainsaw_on", "fg": 457, "rotates": false }, - { "id": "overlay_wielded_chemical_thrower", "fg": 383, "rotates": false }, - { "id": "overlay_wielded_clarinet", "fg": 458, "rotates": false }, - { "id": "overlay_wielded_clay_hydria", "fg": 313, "rotates": false }, - { "id": "overlay_wielded_clay_watercont", "fg": 314, "rotates": false }, - { "id": "overlay_wielded_coilgun", "fg": 366, "rotates": false }, - { "id": "overlay_wielded_colt_army", "fg": 418, "rotates": false }, - { "id": "overlay_wielded_colt_navy", "fg": 418, "rotates": false }, - { "id": "overlay_wielded_combatsaw_off", "fg": 457, "rotates": false }, - { "id": "overlay_wielded_combatsaw_on", "fg": 457, "rotates": false }, - { "id": "overlay_wielded_combination_gun", "fg": 372, "rotates": false }, - { "id": "overlay_wielded_compbow", "fg": 385, "rotates": false }, - { "id": "overlay_wielded_compositebow", "fg": 386, "rotates": false }, - { "id": "overlay_wielded_cop_38", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_copper_ax", "fg": 453, "rotates": false }, - { "id": "overlay_wielded_copper_knife", "fg": 461, "rotates": false }, - { "id": "overlay_wielded_corpse", "fg": 335, "rotates": false }, - { "id": [ "overlay_wielded_crossbow", "overlay_wielded_crossbow_makeshift" ], "fg": 387, "rotates": false }, - { "id": "overlay_wielded_crowbar", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_crucible", "fg": 316, "rotates": false }, - { "id": "overlay_wielded_cs_lajatang_off", "fg": 459, "rotates": false }, - { "id": "overlay_wielded_cs_lajatang_on", "fg": 459, "rotates": false }, - { "id": "overlay_wielded_cu_pipe", "fg": 337, "rotates": false }, - { "id": "overlay_wielded_cudgel", "fg": 336, "rotates": false }, - { "id": "overlay_wielded_cutlass", "fg": 460, "rotates": false }, - { "id": "overlay_wielded_cutlass_fake", "fg": 460, "rotates": false }, - { "id": "overlay_wielded_cutlass_inferior", "fg": 460, "rotates": false }, - { "id": "overlay_wielded_cw-24", "fg": 368, "rotates": false }, - { "id": "overlay_wielded_cw-24hack", "fg": 368, "rotates": false }, - { "id": "overlay_wielded_cw-24k", "fg": 368, "rotates": false }, - { "id": "overlay_wielded_cw-24m", "fg": 368, "rotates": false }, - { "id": "overlay_wielded_cw-24m_hack", "fg": 368, "rotates": false }, - { "id": "overlay_wielded_cwd-63", "fg": 406, "rotates": false }, - { "id": "overlay_wielded_cx4", "fg": 388, "rotates": false }, - { "id": "overlay_wielded_dao", "fg": 466, "rotates": false }, - { "id": "overlay_wielded_deagle_44", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_digging_stick", "fg": 338, "rotates": false }, - { "id": "overlay_wielded_diveknife", "fg": 461, "rotates": false }, - { "id": "overlay_wielded_doublespeargun", "fg": 438, "rotates": false }, - { "id": "overlay_wielded_dusksword", "fg": 362, "rotates": false }, - { "id": "overlay_wielded_e_handcuffs", "fg": 464, "rotates": false }, - { "id": "overlay_wielded_e_tool", "fg": 465, "rotates": false }, - { "id": "overlay_wielded_elc_bld", "fg": 462, "rotates": false }, - { "id": "overlay_wielded_elc_blds", "fg": 463, "rotates": false }, - { "id": "overlay_wielded_elec_chainsaw_off", "fg": 457, "rotates": false }, - { "id": "overlay_wielded_elec_chainsaw_on", "fg": 457, "rotates": false }, - { "id": "overlay_wielded_emp_gun", "fg": 389, "rotates": false }, - { "id": "overlay_wielded_estoc", "fg": 339, "rotates": false }, - { "id": "overlay_wielded_estoc_fake", "fg": 339, "rotates": false }, - { "id": "overlay_wielded_ethereal_crossbow", "fg": 387, "rotates": false }, - { "id": "overlay_wielded_fencing_epee", "fg": 339, "rotates": false }, - { "id": "overlay_wielded_fencing_foil", "fg": 339, "rotates": false }, - { "id": "overlay_wielded_fencing_sabre", "fg": 339, "rotates": false }, - { "id": "overlay_wielded_ficrico", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_fighter_sting", "fg": 324, "rotates": false }, - { "id": "overlay_wielded_fire_ax", "fg": 469, "rotates": false }, - { "id": "overlay_wielded_fire_lance", "fg": 360, "rotates": false }, - { "id": "overlay_wielded_fishing_rod_basic", "fg": 470, "rotates": false }, - { "id": "overlay_wielded_fishing_rod_professional", "fg": 470, "rotates": false }, - { "id": "overlay_wielded_flamethrower", "fg": 390, "rotates": false }, - { "id": "overlay_wielded_flamethrower_crude", "fg": 390, "rotates": false }, - { "id": "overlay_wielded_flamethrower_simple", "fg": 390, "rotates": false }, - { "id": "overlay_wielded_flaregun", "fg": 366, "rotates": false }, - { "id": "overlay_wielded_flute", "fg": 458, "rotates": false }, - { "id": "overlay_wielded_fn57", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_fn_fal", "fg": 370, "rotates": false }, - { "id": "overlay_wielded_fn_p90", "fg": 391, "rotates": false }, - { "id": "overlay_wielded_ftk93", "fg": 392, "rotates": false }, - { "id": "overlay_wielded_garand", "fg": 393, "rotates": false }, - { "id": "overlay_wielded_gattler", "fg": 507, "rotates": false }, - { "id": "overlay_wielded_glaive", "fg": 361, "rotates": false }, - { "id": "overlay_wielded_glass_macuahuitl", "fg": 340, "rotates": false }, - { "id": "overlay_wielded_glass_shiv", "fg": 341, "rotates": false }, - { "id": "overlay_wielded_glock_17", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_glock_19", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_glock_22", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_glowstick", "fg": 473, "rotates": false }, - { "id": "overlay_wielded_glowstick_dead", "fg": 473, "rotates": false }, - { "id": "overlay_wielded_glowstick_lit", "fg": 474, "rotates": false }, - { "id": "overlay_wielded_golf_club", "fg": 342, "rotates": false }, - { "id": "overlay_wielded_grapnel", "fg": 343, "rotates": false }, - { "id": "overlay_wielded_gungnir_replica", "fg": 490, "rotates": false }, - { "id": "overlay_wielded_gunknife", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_gunsword", "fg": 416, "rotates": false }, - { "id": "overlay_wielded_h&k416a5", "fg": 506, "rotates": false }, - { "id": "overlay_wielded_halberd", "fg": 351, "rotates": false }, - { "id": "overlay_wielded_halberd_fake", "fg": 351, "rotates": false }, - { "id": "overlay_wielded_halligan", "fg": 471, "rotates": false }, - { "id": "overlay_wielded_hammer", "fg": 472, "rotates": false }, - { "id": "overlay_wielded_hammer_sledge", "fg": 344, "rotates": false }, - { "id": "overlay_wielded_hand_crossbow", "fg": 394, "rotates": false }, - { "id": "overlay_wielded_handflare", "fg": 473, "rotates": false }, - { "id": "overlay_wielded_handflare_dead", "fg": 473, "rotates": false }, - { "id": "overlay_wielded_handflare_lit", "fg": 474, "rotates": false }, - { "id": "overlay_wielded_hatchet", "fg": 453, "rotates": false }, - { "id": "overlay_wielded_heavy_flashlight", "fg": 473, "rotates": false }, - { "id": "overlay_wielded_heavy_flashlight_on", "fg": 474, "rotates": false }, - { "id": "overlay_wielded_heavy_rail_rifle", "fg": 398, "rotates": false }, - { "id": "overlay_wielded_helsing", "fg": 395, "rotates": false }, - { "id": "overlay_wielded_henry_big_boy", "fg": 372, "rotates": false }, - { "id": "overlay_wielded_hexenhammer", "fg": 344, "rotates": false }, - { "id": "overlay_wielded_hexenhammer_active", "fg": 344, "rotates": false }, - { "id": "overlay_wielded_hk_g36", "fg": 397, "rotates": false }, - { "id": "overlay_wielded_hk_g3", "fg": 396, "rotates": false }, - { "id": "overlay_wielded_hk_g80", "fg": 398, "rotates": false }, - { "id": "overlay_wielded_hk_mp5", "fg": 399, "rotates": false }, - { "id": "overlay_wielded_hk_mp5eod", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_hk_mp7", "fg": 412, "rotates": false }, - { "id": "overlay_wielded_hk_ucp", "fg": 366, "rotates": false }, - { "id": "overlay_wielded_hk_ump45", "fg": 399, "rotates": false }, - { "id": "overlay_wielded_hockey_stick", "fg": 342, "rotates": false }, - { "id": "overlay_wielded_hoe", "fg": 475, "rotates": false }, - { "id": "overlay_wielded_homewrecker", "fg": 331, "rotates": false }, - { "id": "overlay_wielded_honey_scraper", "fg": 456, "rotates": false }, - { "id": "overlay_wielded_huge_crossbow", "fg": 381, "rotates": false }, - { "id": "overlay_wielded_i_staff", "fg": 345, "rotates": false }, - { "id": "overlay_wielded_iceaxe", "fg": 476, "rotates": false }, - { "id": "overlay_wielded_ichaival_replica", "fg": 386, "rotates": false }, - { "id": "overlay_wielded_javelin", "fg": 336, "rotates": false }, - { "id": "overlay_wielded_javelin_copper", "fg": 336, "rotates": false }, - { "id": "overlay_wielded_javelin_iron", "fg": 346, "rotates": false }, - { "id": "overlay_wielded_javelin_stone", "fg": 346, "rotates": false }, - { "id": "overlay_wielded_jerrycan", "fg": 315, "rotates": false }, - { "id": "overlay_wielded_jerrycan_big", "fg": 315, "rotates": false }, - { "id": "overlay_wielded_ji", "fg": 361, "rotates": false }, - { "id": "overlay_wielded_jian", "fg": 362, "rotates": false }, - { "id": "overlay_wielded_jian_fake", "fg": 362, "rotates": false }, - { "id": "overlay_wielded_jian_inferior", "fg": 362, "rotates": false }, - { "id": "overlay_wielded_katana", "fg": 466, "rotates": false }, - { "id": "overlay_wielded_katana_fake", "fg": 466, "rotates": false }, - { "id": "overlay_wielded_katana_inferior", "fg": 466, "rotates": false }, - { "id": [ "overlay_wielded_keg", "overlay_wielded_keg_steel" ], "fg": 316, "rotates": false }, - { "id": "overlay_wielded_khopesh", "fg": 489, "rotates": false }, - { "id": "overlay_wielded_knife_butcher", "fg": 477, "rotates": false }, - { "id": "overlay_wielded_knife_combat", "fg": 478, "rotates": false }, - { "id": "overlay_wielded_knife_hunting", "fg": 478, "rotates": false }, - { "id": "overlay_wielded_knife_rambo", "fg": 478, "rotates": false }, - { "id": "overlay_wielded_knife_rm42", "fg": 478, "rotates": false }, - { "id": "overlay_wielded_knife_steak", "fg": 456, "rotates": false }, - { "id": "overlay_wielded_knife_swissarmy", "fg": 341, "rotates": false }, - { "id": "overlay_wielded_knife_trench", "fg": 478, "rotates": false }, - { "id": "overlay_wielded_knuckle_brass", "fg": 347, "rotates": false }, - { "id": "overlay_wielded_knuckle_katar", "fg": 348, "rotates": false }, - { "id": "overlay_wielded_knuckle_nail", "fg": 348, "rotates": false }, - { "id": "overlay_wielded_knuckle_steel", "fg": 347, "rotates": false }, - { "id": "overlay_wielded_kris", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_kris_fake", "fg": 479, "rotates": false }, - { "id": "overlay_wielded_ksg", "fg": 397, "rotates": false }, - { "id": "overlay_wielded_ksub2000", "fg": 370, "rotates": false }, - { "id": "overlay_wielded_kukri", "fg": 480, "rotates": false }, - { "id": "overlay_wielded_l-stick", "fg": 473, "rotates": false }, - { "id": "overlay_wielded_l-stick_on", "fg": 474, "rotates": false }, - { "id": "overlay_wielded_l_bak_223", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_l_base_223", "fg": 405, "rotates": false }, - { "id": "overlay_wielded_l_car_223", "fg": 405, "rotates": false }, - { "id": "overlay_wielded_l_def_12", "fg": 374, "rotates": false }, - { "id": "overlay_wielded_l_dsr_223", "fg": 405, "rotates": false }, - { "id": "overlay_wielded_l_enforcer_45", "fg": 366, "rotates": false }, - { "id": "overlay_wielded_l_lmg_223", "fg": 405, "rotates": false }, - { "id": "overlay_wielded_l_long_45", "fg": 393, "rotates": false }, - { "id": "overlay_wielded_l_lookout_9mm", "fg": 366, "rotates": false }, - { "id": "overlay_wielded_l_mbr_223", "fg": 405, "rotates": false }, - { "id": "overlay_wielded_l_mp_45", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_l_mp_9mm", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_l_sp_45", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_l_sp_9mm", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_laevateinn_replica", "fg": 454, "rotates": false }, - { "id": "overlay_wielded_lajatang", "fg": 349, "rotates": false }, - { "id": "overlay_wielded_laser_cannon", "fg": 400, "rotates": false }, - { "id": "overlay_wielded_laser_rifle", "fg": 401, "rotates": false }, - { "id": "overlay_wielded_launcher_simple", "fg": 402, "rotates": false }, - { "id": "overlay_wielded_lemat_revolver", "fg": 366, "rotates": false }, - { "id": "overlay_wielded_levergun_44", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_lobotomizer", "fg": 481, "rotates": false }, - { "id": "overlay_wielded_longbow", "fg": 404, "rotates": false }, - { "id": "overlay_wielded_longsword", "fg": 499, "rotates": false }, - { "id": "overlay_wielded_longsword_fake", "fg": 499, "rotates": false }, - { "id": "overlay_wielded_longsword_inferior", "fg": 499, "rotates": false }, - { "id": "overlay_wielded_ltcarb", "fg": 443, "rotates": false }, - { "id": "overlay_wielded_m1014", "fg": 374, "rotates": false }, - { "id": "overlay_wielded_m107a1", "fg": 406, "rotates": false }, - { "id": "overlay_wielded_m134", "fg": 407, "rotates": false }, - { "id": "overlay_wielded_m14a", "fg": 367, "rotates": false }, - { "id": "overlay_wielded_m14ebr", "fg": 367, "rotates": false }, - { "id": "overlay_wielded_m1903", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_m1911", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_m1918", "fg": 408, "rotates": false }, - { "id": "overlay_wielded_m1a", "fg": 372, "rotates": false }, - { "id": "overlay_wielded_m2010", "fg": 393, "rotates": false }, - { "id": "overlay_wielded_m202_flash", "fg": 409, "rotates": false }, - { "id": "overlay_wielded_m240", "fg": 408, "rotates": false }, - { "id": "overlay_wielded_m249", "fg": 408, "rotates": false }, - { "id": "overlay_wielded_m27iar", "fg": 369, "rotates": false }, - { "id": "overlay_wielded_m2browning", "fg": 410, "rotates": false }, - { "id": "overlay_wielded_m2browning_sawn", "fg": 408, "rotates": false }, - { "id": "overlay_wielded_m320", "fg": 402, "rotates": false }, - { "id": "overlay_wielded_m3_carlgustav", "fg": 411, "rotates": false }, - { "id": "overlay_wielded_m4a1", "fg": 506, "rotates": false }, - { "id": "overlay_wielded_m60", "fg": 408, "rotates": false }, - { "id": "overlay_wielded_m79", "fg": 402, "rotates": false }, - { "id": "overlay_wielded_m9", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_mac_10", "fg": 412, "rotates": false }, - { "id": "overlay_wielded_mace", "fg": 350, "rotates": false }, - { "id": "overlay_wielded_machete", "fg": 467, "rotates": false }, - { "id": "overlay_wielded_makarov", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_makeshift_axe", "fg": 485, "rotates": false }, - { "id": "overlay_wielded_makeshift_crowbar", "fg": 482, "rotates": false }, - { "id": "overlay_wielded_makeshift_halberd", "fg": 351, "rotates": false }, - { "id": "overlay_wielded_makeshift_hammer", "fg": 472, "rotates": false }, - { "id": "overlay_wielded_makeshift_knife", "fg": 461, "rotates": false }, - { "id": "overlay_wielded_makeshift_machete", "fg": 467, "rotates": false }, - { "id": "overlay_wielded_makeshift_shovel", "fg": 488, "rotates": false }, - { "id": "overlay_wielded_mark19", "fg": 413, "rotates": false }, - { "id": "overlay_wielded_marlin_9a", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_metal_tank", "fg": 317, "rotates": false }, - { "id": "overlay_wielded_metal_tank_little", "fg": 318, "rotates": false }, - { "id": "overlay_wielded_metal_tank_small", "fg": 318, "rotates": false }, - { "id": "overlay_wielded_mgl", "fg": 413, "rotates": false }, - { "id": "overlay_wielded_mininuke_launcher", "fg": 414, "rotates": false }, - { "id": "overlay_wielded_minispeargun", "fg": 415, "rotates": false }, - { "id": "overlay_wielded_mjolnir", "fg": 352, "rotates": false }, - { "id": "overlay_wielded_mjolnir_replica", "fg": 352, "rotates": false }, - { "id": "overlay_wielded_mop", "fg": 483, "rotates": false }, - { "id": "overlay_wielded_morningstar", "fg": 353, "rotates": false }, - { "id": "overlay_wielded_mosin44", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_mosin44_ebr", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_mosin91_30", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_mosin91_30_ebr", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_moss_brownie", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_mossberg_500", "fg": 374, "rotates": false }, - { "id": "overlay_wielded_naginata", "fg": 361, "rotates": false }, - { "id": "overlay_wielded_naginata_survivor", "fg": 361, "rotates": false }, - { "id": "overlay_wielded_nailbat", "fg": 331, "rotates": false }, - { "id": "overlay_wielded_nailboard", "fg": 354, "rotates": false }, - { "id": "overlay_wielded_nailgun", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_nailrifle", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_needlegun", "fg": 425, "rotates": false }, - { "id": "overlay_wielded_needlepistol", "fg": 423, "rotates": false }, - { "id": "overlay_wielded_nodachi", "fg": 484, "rotates": false }, - { "id": "overlay_wielded_nodachi_fake", "fg": 484, "rotates": false }, - { "id": "overlay_wielded_nx17", "fg": 443, "rotates": false }, - { "id": "overlay_wielded_pan", "fg": 355, "rotates": false }, - { "id": "overlay_wielded_pickaxe", "fg": 476, "rotates": false }, - { "id": "overlay_wielded_pipe", "fg": 356, "rotates": false }, - { "id": "overlay_wielded_pipe__gun_44", "fg": 416, "rotates": false }, - { "id": "overlay_wielded_pipe_combination_gun", "fg": 416, "rotates": false }, - { "id": "overlay_wielded_pipe_double_shotgun", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_pipe_shotgun", "fg": 372, "rotates": false }, - { "id": "overlay_wielded_pipe_shotgunsawn", "fg": 505, "rotates": false }, - { "id": "overlay_wielded_pistol_flintlock", "fg": 418, "rotates": false }, - { "id": "overlay_wielded_pistol_pepperbox", "fg": 416, "rotates": false }, - { "id": "overlay_wielded_pitchfork", "fg": 357, "rotates": false }, - { "id": "overlay_wielded_plasma_rifle", "fg": 419, "rotates": false }, - { "id": "overlay_wielded_pockknife", "fg": 461, "rotates": false }, - { "id": "overlay_wielded_pointy_stick", "fg": 336, "rotates": false }, - { "id": "overlay_wielded_pool_cue", "fg": 336, "rotates": false }, - { "id": "overlay_wielded_pot", "fg": 355, "rotates": false }, - { "id": "overlay_wielded_pot_copper", "fg": 355, "rotates": false }, - { "id": "overlay_wielded_ppsh", "fg": 420, "rotates": false }, - { "id": "overlay_wielded_primitive_adze", "fg": 485, "rotates": false }, - { "id": "overlay_wielded_primitive_axe", "fg": 485, "rotates": false }, - { "id": "overlay_wielded_primitive_hammer", "fg": 485, "rotates": false }, - { "id": "overlay_wielded_primitive_knife", "fg": 456, "rotates": false }, - { "id": "overlay_wielded_punch_dagger", "fg": 359, "rotates": false }, - { "id": "overlay_wielded_q_staff", "fg": 345, "rotates": false }, - { "id": "overlay_wielded_raging_bull", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_rapier", "fg": 486, "rotates": false }, - { "id": "overlay_wielded_rapier_fake", "fg": 486, "rotates": false }, - { "id": "overlay_wielded_rebar_rifle", "fg": 398, "rotates": false }, - { "id": "overlay_wielded_recurbow", "fg": 386, "rotates": false }, - { "id": "overlay_wielded_reflexbow", "fg": 386, "rotates": false }, - { "id": "overlay_wielded_reflexrecurvebow", "fg": 421, "rotates": false }, - { "id": "overlay_wielded_remington_700", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_remington_870", "fg": 372, "rotates": false }, - { "id": "overlay_wielded_rep_crossbow", "fg": 422, "rotates": false }, - { "id": "overlay_wielded_revolver_shotgun", "fg": 372, "rotates": false }, - { "id": "overlay_wielded_rifle_223", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_rifle_22", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_rifle_3006", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_rifle_308", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_rifle_38", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_rifle_40", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_rifle_44", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_rifle_45", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_rifle_9mm", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_rifle_flintlock", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_rm103a_pistol", "fg": 423, "rotates": false }, - { "id": "overlay_wielded_rm11b_sniper_rifle", "fg": 406, "rotates": false }, - { "id": "overlay_wielded_rm120c", "fg": 428, "rotates": false }, - { "id": "overlay_wielded_rm2000_smg", "fg": 425, "rotates": false }, - { "id": "overlay_wielded_rm20", "fg": 424, "rotates": false }, - { "id": "overlay_wielded_rm228", "fg": 399, "rotates": false }, - { "id": "overlay_wielded_rm298", "fg": 408, "rotates": false }, - { "id": "overlay_wielded_rm360_carbine", "fg": 426, "rotates": false }, - { "id": "overlay_wielded_rm451_flamethrower", "fg": 427, "rotates": false }, - { "id": "overlay_wielded_rm51_assault_rifle", "fg": 428, "rotates": false }, - { "id": "overlay_wielded_rm614_lmg", "fg": 424, "rotates": false }, - { "id": "overlay_wielded_rm802", "fg": 402, "rotates": false }, - { "id": "overlay_wielded_rm88_battle_rifle", "fg": 428, "rotates": false }, - { "id": "overlay_wielded_rm99_pistol", "fg": 423, "rotates": false }, - { "id": "overlay_wielded_rock", "fg": 359, "rotates": false }, - { "id": "overlay_wielded_rock_sock", "fg": 358, "rotates": false }, - { "id": "overlay_wielded_ruger_1022", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_ruger_lcr_22", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_ruger_lcr_38", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_ruger_mini", "fg": 367, "rotates": false }, - { "id": "overlay_wielded_ruger_redhawk", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_saiga_12", "fg": 396, "rotates": false }, - { "id": "overlay_wielded_saiga_sawn", "fg": 505, "rotates": false }, - { "id": "overlay_wielded_savage_111f", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_saxophone", "fg": 503, "rotates": false }, - { "id": "overlay_wielded_scar_h", "fg": 430, "rotates": false }, - { "id": "overlay_wielded_scar_l", "fg": 430, "rotates": false }, - { "id": "overlay_wielded_scimitar_fake", "fg": 466, "rotates": false }, - { "id": "overlay_wielded_scimitar_inferior", "fg": 466, "rotates": false }, + { "id": "overlay_wielded_2_shot_special", "fg": 372, "rotates": false }, + { "id": "overlay_wielded_2x4", "fg": 344, "rotates": false }, + { "id": "overlay_wielded_30gal_barrel", "fg": 322, "rotates": false }, + { "id": "overlay_wielded_30gal_drum", "fg": 322, "rotates": false }, + { "id": "overlay_wielded_50pistol", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_55gal_drum", "fg": 322, "rotates": false }, + { "id": "overlay_wielded_BFG", "fg": 379, "rotates": false }, + { "id": "overlay_wielded_LAW", "fg": 409, "rotates": false }, + { "id": "overlay_wielded_LAW_Packed", "fg": 409, "rotates": false }, + { "id": "overlay_wielded_PR24-extended", "fg": 328, "rotates": false }, + { "id": "overlay_wielded_PR24-retracted", "fg": 330, "rotates": false }, + { "id": "overlay_wielded_RPG", "fg": 435, "rotates": false }, + { "id": "overlay_wielded_TDI", "fg": 448, "rotates": false }, + { "id": "overlay_wielded_abzats", "fg": 434, "rotates": false }, + { "id": "overlay_wielded_acoustic_guitar", "fg": 507, "rotates": false }, + { "id": "overlay_wielded_acr", "fg": 373, "rotates": false }, + { "id": "overlay_wielded_airspeargun", "fg": 444, "rotates": false }, + { "id": "overlay_wielded_ak47", "fg": 374, "rotates": false }, + { "id": "overlay_wielded_ak74", "fg": 374, "rotates": false }, + { "id": "overlay_wielded_american_180", "fg": 432, "rotates": false }, + { "id": "overlay_wielded_an94", "fg": 374, "rotates": false }, + { "id": "overlay_wielded_ar15", "fg": 375, "rotates": false }, + { "id": "overlay_wielded_arccan", "fg": 449, "rotates": false }, + { "id": "overlay_wielded_arming_sword", "fg": 460, "rotates": false }, + { "id": "overlay_wielded_arming_sword_fake", "fg": 460, "rotates": false }, + { "id": "overlay_wielded_arming_sword_inferior", "fg": 460, "rotates": false }, + { "id": "overlay_wielded_arx160", "fg": 376, "rotates": false }, + { "id": "overlay_wielded_ashot", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_ax", "fg": 455, "rotates": false }, + { "id": "overlay_wielded_bag_canvas", "fg": 850, "rotates": false }, + { "id": "overlay_wielded_bag_canvas_small", "fg": 850, "rotates": false }, + { "id": "overlay_wielded_bagh_nakha", "fg": 326, "rotates": false }, + { "id": "overlay_wielded_bagpipes", "fg": 508, "rotates": false }, + { "id": "overlay_wielded_banjo", "fg": 456, "rotates": false }, + { "id": "overlay_wielded_bat", "fg": 327, "rotates": false }, + { "id": "overlay_wielded_bat_metal", "fg": 329, "rotates": false }, + { "id": "overlay_wielded_baton-extended", "fg": 328, "rotates": false }, + { "id": "overlay_wielded_baton", "fg": 330, "rotates": false }, + { "id": "overlay_wielded_battleaxe", "fg": 455, "rotates": false }, + { "id": "overlay_wielded_battleaxe_fake", "fg": 455, "rotates": false }, + { "id": "overlay_wielded_battleaxe_inferior", "fg": 455, "rotates": false }, + { "id": "overlay_wielded_battletorch", "fg": 457, "rotates": false }, + { "id": "overlay_wielded_battletorch_done", "fg": 457, "rotates": false }, + { "id": "overlay_wielded_battletorch_lit", "fg": 458, "rotates": false }, + { "id": "overlay_wielded_bbgun", "fg": 378, "rotates": false }, + { "id": "overlay_wielded_bee_sting", "fg": 330, "rotates": false }, + { "id": "overlay_wielded_bh_m89", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_bigun", "fg": 380, "rotates": false }, + { "id": "overlay_wielded_bio_blade_weapon", "fg": 331, "rotates": false }, + { "id": "overlay_wielded_bio_claws_weapon", "fg": 332, "rotates": false }, + { "id": "overlay_wielded_bio_sword_weapon", "fg": 331, "rotates": false }, + { "id": "overlay_wielded_blade", "fg": 473, "rotates": false }, + { "id": "overlay_wielded_blowgun", "fg": 464, "rotates": false }, + { "id": "overlay_wielded_blunderbuss", "fg": 384, "rotates": false }, + { "id": "overlay_wielded_bokken", "fg": 333, "rotates": false }, + { "id": "overlay_wielded_bomblet_launcher_double", "fg": 381, "rotates": false }, + { "id": "overlay_wielded_bomblet_launcher_dualshot", "fg": 382, "rotates": false }, + { "id": "overlay_wielded_bomblet_launcher_rotary", "fg": 383, "rotates": false }, + { "id": "overlay_wielded_bomblet_launcher_single", "fg": 384, "rotates": false }, + { "id": "overlay_wielded_bowling_axe", "fg": 334, "rotates": false }, + { "id": [ "overlay_wielded_brazier", "brazier" ], "fg": 1694, "rotates": false }, + { "id": "overlay_wielded_briefcase_smg", "fg": 385, "rotates": false }, + { "id": "overlay_wielded_broadfire_off", "fg": 460, "rotates": false }, + { "id": "overlay_wielded_broadfire_on", "fg": 461, "rotates": false }, + { "id": "overlay_wielded_broadsword", "fg": 460, "rotates": false }, + { "id": "overlay_wielded_broadsword_fake", "fg": 460, "rotates": false }, + { "id": "overlay_wielded_broadsword_inferior", "fg": 460, "rotates": false }, + { "id": "overlay_wielded_broom", "fg": 335, "rotates": false }, + { "id": "overlay_wielded_browning_blr", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_bullet_crossbow", "fg": 387, "rotates": false }, + { "id": "overlay_wielded_bullwhip", "fg": 336, "rotates": false }, + { "id": "overlay_wielded_bwirebat", "fg": 337, "rotates": false }, + { "id": "overlay_wielded_calico", "fg": 388, "rotates": false }, + { "id": "overlay_wielded_candlestick", "fg": 338, "rotates": false }, + { "id": "overlay_wielded_cane", "fg": 339, "rotates": false }, + { "id": "overlay_wielded_carbine_flintlock", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_carbine_flintlock_double", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_carver_off", "fg": 462, "rotates": false }, + { "id": "overlay_wielded_carver_on", "fg": 462, "rotates": false }, + { "id": "overlay_wielded_chain", "fg": 340, "rotates": false }, + { "id": "overlay_wielded_chainsaw_off", "fg": 463, "rotates": false }, + { "id": "overlay_wielded_chainsaw_on", "fg": 463, "rotates": false }, + { "id": "overlay_wielded_chemical_thrower", "fg": 389, "rotates": false }, + { "id": "overlay_wielded_clarinet", "fg": 464, "rotates": false }, + { "id": "overlay_wielded_clay_hydria", "fg": 319, "rotates": false }, + { "id": "overlay_wielded_clay_watercont", "fg": 320, "rotates": false }, + { "id": "overlay_wielded_coilgun", "fg": 372, "rotates": false }, + { "id": "overlay_wielded_colt_army", "fg": 424, "rotates": false }, + { "id": "overlay_wielded_colt_navy", "fg": 424, "rotates": false }, + { "id": "overlay_wielded_combatsaw_off", "fg": 463, "rotates": false }, + { "id": "overlay_wielded_combatsaw_on", "fg": 463, "rotates": false }, + { "id": "overlay_wielded_combination_gun", "fg": 378, "rotates": false }, + { "id": "overlay_wielded_compbow", "fg": 391, "rotates": false }, + { "id": "overlay_wielded_compositebow", "fg": 392, "rotates": false }, + { "id": "overlay_wielded_cop_38", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_copper_ax", "fg": 459, "rotates": false }, + { "id": "overlay_wielded_copper_knife", "fg": 467, "rotates": false }, + { "id": "overlay_wielded_corpse", "fg": 341, "rotates": false }, + { "id": [ "overlay_wielded_crossbow", "overlay_wielded_crossbow_makeshift" ], "fg": 393, "rotates": false }, + { "id": "overlay_wielded_crowbar", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_crucible", "fg": 322, "rotates": false }, + { "id": "overlay_wielded_cs_lajatang_off", "fg": 465, "rotates": false }, + { "id": "overlay_wielded_cs_lajatang_on", "fg": 465, "rotates": false }, + { "id": "overlay_wielded_cu_pipe", "fg": 343, "rotates": false }, + { "id": "overlay_wielded_cudgel", "fg": 342, "rotates": false }, + { "id": "overlay_wielded_cutlass", "fg": 466, "rotates": false }, + { "id": "overlay_wielded_cutlass_fake", "fg": 466, "rotates": false }, + { "id": "overlay_wielded_cutlass_inferior", "fg": 466, "rotates": false }, + { "id": "overlay_wielded_cw-24", "fg": 374, "rotates": false }, + { "id": "overlay_wielded_cw-24hack", "fg": 374, "rotates": false }, + { "id": "overlay_wielded_cw-24k", "fg": 374, "rotates": false }, + { "id": "overlay_wielded_cw-24m", "fg": 374, "rotates": false }, + { "id": "overlay_wielded_cw-24m_hack", "fg": 374, "rotates": false }, + { "id": "overlay_wielded_cwd-63", "fg": 412, "rotates": false }, + { "id": "overlay_wielded_cx4", "fg": 394, "rotates": false }, + { "id": "overlay_wielded_dao", "fg": 472, "rotates": false }, + { "id": "overlay_wielded_deagle_44", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_digging_stick", "fg": 344, "rotates": false }, + { "id": "overlay_wielded_diveknife", "fg": 467, "rotates": false }, + { "id": "overlay_wielded_doublespeargun", "fg": 444, "rotates": false }, + { "id": "overlay_wielded_dusksword", "fg": 368, "rotates": false }, + { "id": "overlay_wielded_e_handcuffs", "fg": 470, "rotates": false }, + { "id": "overlay_wielded_e_tool", "fg": 471, "rotates": false }, + { "id": "overlay_wielded_elc_bld", "fg": 468, "rotates": false }, + { "id": "overlay_wielded_elc_blds", "fg": 469, "rotates": false }, + { "id": "overlay_wielded_elec_chainsaw_off", "fg": 463, "rotates": false }, + { "id": "overlay_wielded_elec_chainsaw_on", "fg": 463, "rotates": false }, + { "id": "overlay_wielded_emp_gun", "fg": 395, "rotates": false }, + { "id": "overlay_wielded_estoc", "fg": 345, "rotates": false }, + { "id": "overlay_wielded_estoc_fake", "fg": 345, "rotates": false }, + { "id": "overlay_wielded_ethereal_crossbow", "fg": 393, "rotates": false }, + { "id": "overlay_wielded_fencing_epee", "fg": 345, "rotates": false }, + { "id": "overlay_wielded_fencing_foil", "fg": 345, "rotates": false }, + { "id": "overlay_wielded_fencing_sabre", "fg": 345, "rotates": false }, + { "id": "overlay_wielded_ficrico", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_fighter_sting", "fg": 330, "rotates": false }, + { "id": "overlay_wielded_fire_ax", "fg": 475, "rotates": false }, + { "id": "overlay_wielded_fire_lance", "fg": 366, "rotates": false }, + { "id": "overlay_wielded_fishing_rod_basic", "fg": 476, "rotates": false }, + { "id": "overlay_wielded_fishing_rod_professional", "fg": 476, "rotates": false }, + { "id": "overlay_wielded_flamethrower", "fg": 396, "rotates": false }, + { "id": "overlay_wielded_flamethrower_crude", "fg": 396, "rotates": false }, + { "id": "overlay_wielded_flamethrower_simple", "fg": 396, "rotates": false }, + { "id": "overlay_wielded_flaregun", "fg": 372, "rotates": false }, + { "id": "overlay_wielded_flute", "fg": 464, "rotates": false }, + { "id": "overlay_wielded_fn57", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_fn_fal", "fg": 376, "rotates": false }, + { "id": "overlay_wielded_fn_p90", "fg": 397, "rotates": false }, + { "id": "overlay_wielded_ftk93", "fg": 398, "rotates": false }, + { "id": "overlay_wielded_garand", "fg": 399, "rotates": false }, + { "id": "overlay_wielded_gattler", "fg": 513, "rotates": false }, + { "id": "overlay_wielded_glaive", "fg": 367, "rotates": false }, + { "id": "overlay_wielded_glass_macuahuitl", "fg": 346, "rotates": false }, + { "id": "overlay_wielded_glass_shiv", "fg": 347, "rotates": false }, + { "id": "overlay_wielded_glock_17", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_glock_19", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_glock_22", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_glowstick", "fg": 479, "rotates": false }, + { "id": "overlay_wielded_glowstick_dead", "fg": 479, "rotates": false }, + { "id": "overlay_wielded_glowstick_lit", "fg": 480, "rotates": false }, + { "id": "overlay_wielded_golf_club", "fg": 348, "rotates": false }, + { "id": "overlay_wielded_grapnel", "fg": 349, "rotates": false }, + { "id": "overlay_wielded_gungnir_replica", "fg": 496, "rotates": false }, + { "id": "overlay_wielded_gunknife", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_gunsword", "fg": 422, "rotates": false }, + { "id": "overlay_wielded_h&k416a5", "fg": 512, "rotates": false }, + { "id": "overlay_wielded_halberd", "fg": 357, "rotates": false }, + { "id": "overlay_wielded_halberd_fake", "fg": 357, "rotates": false }, + { "id": "overlay_wielded_halligan", "fg": 477, "rotates": false }, + { "id": "overlay_wielded_hammer", "fg": 478, "rotates": false }, + { "id": "overlay_wielded_hammer_sledge", "fg": 350, "rotates": false }, + { "id": "overlay_wielded_hand_crossbow", "fg": 400, "rotates": false }, + { "id": "overlay_wielded_handflare", "fg": 479, "rotates": false }, + { "id": "overlay_wielded_handflare_dead", "fg": 479, "rotates": false }, + { "id": "overlay_wielded_handflare_lit", "fg": 480, "rotates": false }, + { "id": "overlay_wielded_hatchet", "fg": 459, "rotates": false }, + { "id": "overlay_wielded_heavy_flashlight", "fg": 479, "rotates": false }, + { "id": "overlay_wielded_heavy_flashlight_on", "fg": 480, "rotates": false }, + { "id": "overlay_wielded_heavy_rail_rifle", "fg": 404, "rotates": false }, + { "id": "overlay_wielded_helsing", "fg": 401, "rotates": false }, + { "id": "overlay_wielded_henry_big_boy", "fg": 378, "rotates": false }, + { "id": "overlay_wielded_hexenhammer", "fg": 350, "rotates": false }, + { "id": "overlay_wielded_hexenhammer_active", "fg": 350, "rotates": false }, + { "id": "overlay_wielded_hk_g36", "fg": 403, "rotates": false }, + { "id": "overlay_wielded_hk_g3", "fg": 402, "rotates": false }, + { "id": "overlay_wielded_hk_g80", "fg": 404, "rotates": false }, + { "id": "overlay_wielded_hk_mp5", "fg": 405, "rotates": false }, + { "id": "overlay_wielded_hk_mp5eod", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_hk_mp7", "fg": 418, "rotates": false }, + { "id": "overlay_wielded_hk_ucp", "fg": 372, "rotates": false }, + { "id": "overlay_wielded_hk_ump45", "fg": 405, "rotates": false }, + { "id": "overlay_wielded_hockey_stick", "fg": 348, "rotates": false }, + { "id": "overlay_wielded_hoe", "fg": 481, "rotates": false }, + { "id": "overlay_wielded_homewrecker", "fg": 337, "rotates": false }, + { "id": "overlay_wielded_honey_scraper", "fg": 462, "rotates": false }, + { "id": "overlay_wielded_huge_crossbow", "fg": 387, "rotates": false }, + { "id": "overlay_wielded_i_staff", "fg": 351, "rotates": false }, + { "id": "overlay_wielded_iceaxe", "fg": 482, "rotates": false }, + { "id": "overlay_wielded_ichaival_replica", "fg": 392, "rotates": false }, + { "id": "overlay_wielded_javelin", "fg": 342, "rotates": false }, + { "id": "overlay_wielded_javelin_copper", "fg": 342, "rotates": false }, + { "id": "overlay_wielded_javelin_iron", "fg": 352, "rotates": false }, + { "id": "overlay_wielded_javelin_stone", "fg": 352, "rotates": false }, + { "id": "overlay_wielded_jerrycan", "fg": 321, "rotates": false }, + { "id": "overlay_wielded_jerrycan_big", "fg": 321, "rotates": false }, + { "id": "overlay_wielded_ji", "fg": 367, "rotates": false }, + { "id": "overlay_wielded_jian", "fg": 368, "rotates": false }, + { "id": "overlay_wielded_jian_fake", "fg": 368, "rotates": false }, + { "id": "overlay_wielded_jian_inferior", "fg": 368, "rotates": false }, + { "id": "overlay_wielded_katana", "fg": 472, "rotates": false }, + { "id": "overlay_wielded_katana_fake", "fg": 472, "rotates": false }, + { "id": "overlay_wielded_katana_inferior", "fg": 472, "rotates": false }, + { "id": [ "overlay_wielded_keg", "overlay_wielded_keg_steel" ], "fg": 322, "rotates": false }, + { "id": "overlay_wielded_khopesh", "fg": 495, "rotates": false }, + { "id": "overlay_wielded_knife_butcher", "fg": 483, "rotates": false }, + { "id": "overlay_wielded_knife_combat", "fg": 484, "rotates": false }, + { "id": "overlay_wielded_knife_hunting", "fg": 484, "rotates": false }, + { "id": "overlay_wielded_knife_rambo", "fg": 484, "rotates": false }, + { "id": "overlay_wielded_knife_rm42", "fg": 484, "rotates": false }, + { "id": "overlay_wielded_knife_steak", "fg": 462, "rotates": false }, + { "id": "overlay_wielded_knife_swissarmy", "fg": 347, "rotates": false }, + { "id": "overlay_wielded_knife_trench", "fg": 484, "rotates": false }, + { "id": "overlay_wielded_knuckle_brass", "fg": 353, "rotates": false }, + { "id": "overlay_wielded_knuckle_katar", "fg": 354, "rotates": false }, + { "id": "overlay_wielded_knuckle_nail", "fg": 354, "rotates": false }, + { "id": "overlay_wielded_knuckle_steel", "fg": 353, "rotates": false }, + { "id": "overlay_wielded_kris", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_kris_fake", "fg": 485, "rotates": false }, + { "id": "overlay_wielded_ksg", "fg": 403, "rotates": false }, + { "id": "overlay_wielded_ksub2000", "fg": 376, "rotates": false }, + { "id": "overlay_wielded_kukri", "fg": 486, "rotates": false }, + { "id": "overlay_wielded_l-stick", "fg": 479, "rotates": false }, + { "id": "overlay_wielded_l-stick_on", "fg": 480, "rotates": false }, + { "id": "overlay_wielded_l_bak_223", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_l_base_223", "fg": 411, "rotates": false }, + { "id": "overlay_wielded_l_car_223", "fg": 411, "rotates": false }, + { "id": "overlay_wielded_l_def_12", "fg": 380, "rotates": false }, + { "id": "overlay_wielded_l_dsr_223", "fg": 411, "rotates": false }, + { "id": "overlay_wielded_l_enforcer_45", "fg": 372, "rotates": false }, + { "id": "overlay_wielded_l_lmg_223", "fg": 411, "rotates": false }, + { "id": "overlay_wielded_l_long_45", "fg": 399, "rotates": false }, + { "id": "overlay_wielded_l_lookout_9mm", "fg": 372, "rotates": false }, + { "id": "overlay_wielded_l_mbr_223", "fg": 411, "rotates": false }, + { "id": "overlay_wielded_l_mp_45", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_l_mp_9mm", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_l_sp_45", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_l_sp_9mm", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_laevateinn_replica", "fg": 460, "rotates": false }, + { "id": "overlay_wielded_lajatang", "fg": 355, "rotates": false }, + { "id": "overlay_wielded_laser_cannon", "fg": 406, "rotates": false }, + { "id": "overlay_wielded_laser_rifle", "fg": 407, "rotates": false }, + { "id": "overlay_wielded_launcher_simple", "fg": 408, "rotates": false }, + { "id": "overlay_wielded_lemat_revolver", "fg": 372, "rotates": false }, + { "id": "overlay_wielded_levergun_44", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_lobotomizer", "fg": 487, "rotates": false }, + { "id": "overlay_wielded_longbow", "fg": 410, "rotates": false }, + { "id": "overlay_wielded_longsword", "fg": 505, "rotates": false }, + { "id": "overlay_wielded_longsword_fake", "fg": 505, "rotates": false }, + { "id": "overlay_wielded_longsword_inferior", "fg": 505, "rotates": false }, + { "id": "overlay_wielded_ltcarb", "fg": 449, "rotates": false }, + { "id": "overlay_wielded_m1014", "fg": 380, "rotates": false }, + { "id": "overlay_wielded_m107a1", "fg": 412, "rotates": false }, + { "id": "overlay_wielded_m134", "fg": 413, "rotates": false }, + { "id": "overlay_wielded_m14a", "fg": 373, "rotates": false }, + { "id": "overlay_wielded_m14ebr", "fg": 373, "rotates": false }, + { "id": "overlay_wielded_m1903", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_m1911", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_m1918", "fg": 414, "rotates": false }, + { "id": "overlay_wielded_m1a", "fg": 378, "rotates": false }, + { "id": "overlay_wielded_m2010", "fg": 399, "rotates": false }, + { "id": "overlay_wielded_m202_flash", "fg": 415, "rotates": false }, + { "id": "overlay_wielded_m240", "fg": 414, "rotates": false }, + { "id": "overlay_wielded_m249", "fg": 414, "rotates": false }, + { "id": "overlay_wielded_m27iar", "fg": 375, "rotates": false }, + { "id": "overlay_wielded_m2browning", "fg": 416, "rotates": false }, + { "id": "overlay_wielded_m2browning_sawn", "fg": 414, "rotates": false }, + { "id": "overlay_wielded_m320", "fg": 408, "rotates": false }, + { "id": "overlay_wielded_m3_carlgustav", "fg": 417, "rotates": false }, + { "id": "overlay_wielded_m4a1", "fg": 512, "rotates": false }, + { "id": "overlay_wielded_m60", "fg": 414, "rotates": false }, + { "id": "overlay_wielded_m79", "fg": 408, "rotates": false }, + { "id": "overlay_wielded_m9", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_mac_10", "fg": 418, "rotates": false }, + { "id": "overlay_wielded_mace", "fg": 356, "rotates": false }, + { "id": "overlay_wielded_machete", "fg": 473, "rotates": false }, + { "id": "overlay_wielded_makarov", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_makeshift_axe", "fg": 491, "rotates": false }, + { "id": "overlay_wielded_makeshift_crowbar", "fg": 488, "rotates": false }, + { "id": "overlay_wielded_makeshift_halberd", "fg": 357, "rotates": false }, + { "id": "overlay_wielded_makeshift_hammer", "fg": 478, "rotates": false }, + { "id": "overlay_wielded_makeshift_knife", "fg": 467, "rotates": false }, + { "id": "overlay_wielded_makeshift_machete", "fg": 473, "rotates": false }, + { "id": "overlay_wielded_makeshift_shovel", "fg": 494, "rotates": false }, + { "id": "overlay_wielded_mark19", "fg": 419, "rotates": false }, + { "id": "overlay_wielded_marlin_9a", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_metal_tank", "fg": 323, "rotates": false }, + { "id": "overlay_wielded_metal_tank_little", "fg": 324, "rotates": false }, + { "id": "overlay_wielded_metal_tank_small", "fg": 324, "rotates": false }, + { "id": "overlay_wielded_mgl", "fg": 419, "rotates": false }, + { "id": "overlay_wielded_mininuke_launcher", "fg": 420, "rotates": false }, + { "id": "overlay_wielded_minispeargun", "fg": 421, "rotates": false }, + { "id": "overlay_wielded_mjolnir", "fg": 358, "rotates": false }, + { "id": "overlay_wielded_mjolnir_replica", "fg": 358, "rotates": false }, + { "id": "overlay_wielded_mop", "fg": 489, "rotates": false }, + { "id": "overlay_wielded_morningstar", "fg": 359, "rotates": false }, + { "id": "overlay_wielded_mosin44", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_mosin44_ebr", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_mosin91_30", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_mosin91_30_ebr", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_moss_brownie", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_mossberg_500", "fg": 380, "rotates": false }, + { "id": "overlay_wielded_naginata", "fg": 367, "rotates": false }, + { "id": "overlay_wielded_naginata_survivor", "fg": 367, "rotates": false }, + { "id": "overlay_wielded_nailbat", "fg": 337, "rotates": false }, + { "id": "overlay_wielded_nailboard", "fg": 360, "rotates": false }, + { "id": "overlay_wielded_nailgun", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_nailrifle", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_needlegun", "fg": 431, "rotates": false }, + { "id": "overlay_wielded_needlepistol", "fg": 429, "rotates": false }, + { "id": "overlay_wielded_nodachi", "fg": 490, "rotates": false }, + { "id": "overlay_wielded_nodachi_fake", "fg": 490, "rotates": false }, + { "id": "overlay_wielded_nx17", "fg": 449, "rotates": false }, + { "id": "overlay_wielded_pan", "fg": 361, "rotates": false }, + { "id": "overlay_wielded_pickaxe", "fg": 482, "rotates": false }, + { "id": "overlay_wielded_pipe", "fg": 362, "rotates": false }, + { "id": "overlay_wielded_pipe__gun_44", "fg": 422, "rotates": false }, + { "id": "overlay_wielded_pipe_combination_gun", "fg": 422, "rotates": false }, + { "id": "overlay_wielded_pipe_double_shotgun", "fg": 423, "rotates": false }, + { "id": "overlay_wielded_pipe_shotgun", "fg": 378, "rotates": false }, + { "id": "overlay_wielded_pipe_shotgunsawn", "fg": 511, "rotates": false }, + { "id": "overlay_wielded_pistol_flintlock", "fg": 424, "rotates": false }, + { "id": "overlay_wielded_pistol_pepperbox", "fg": 422, "rotates": false }, + { "id": "overlay_wielded_pitchfork", "fg": 363, "rotates": false }, + { "id": "overlay_wielded_plasma_rifle", "fg": 425, "rotates": false }, + { "id": "overlay_wielded_pockknife", "fg": 467, "rotates": false }, + { "id": "overlay_wielded_pointy_stick", "fg": 342, "rotates": false }, + { "id": "overlay_wielded_pool_cue", "fg": 342, "rotates": false }, + { "id": "overlay_wielded_pot", "fg": 361, "rotates": false }, + { "id": "overlay_wielded_pot_copper", "fg": 361, "rotates": false }, + { "id": "overlay_wielded_ppsh", "fg": 426, "rotates": false }, + { "id": "overlay_wielded_primitive_adze", "fg": 491, "rotates": false }, + { "id": "overlay_wielded_primitive_axe", "fg": 491, "rotates": false }, + { "id": "overlay_wielded_primitive_hammer", "fg": 491, "rotates": false }, + { "id": "overlay_wielded_primitive_knife", "fg": 462, "rotates": false }, + { "id": "overlay_wielded_punch_dagger", "fg": 365, "rotates": false }, + { "id": "overlay_wielded_q_staff", "fg": 351, "rotates": false }, + { "id": "overlay_wielded_raging_bull", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_rapier", "fg": 492, "rotates": false }, + { "id": "overlay_wielded_rapier_fake", "fg": 492, "rotates": false }, + { "id": "overlay_wielded_rebar_rifle", "fg": 404, "rotates": false }, + { "id": "overlay_wielded_recurbow", "fg": 392, "rotates": false }, + { "id": "overlay_wielded_reflexbow", "fg": 392, "rotates": false }, + { "id": "overlay_wielded_reflexrecurvebow", "fg": 427, "rotates": false }, + { "id": "overlay_wielded_remington_700", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_remington_870", "fg": 378, "rotates": false }, + { "id": "overlay_wielded_rep_crossbow", "fg": 428, "rotates": false }, + { "id": "overlay_wielded_revolver_shotgun", "fg": 378, "rotates": false }, + { "id": "overlay_wielded_rifle_223", "fg": 423, "rotates": false }, + { "id": "overlay_wielded_rifle_22", "fg": 423, "rotates": false }, + { "id": "overlay_wielded_rifle_3006", "fg": 423, "rotates": false }, + { "id": "overlay_wielded_rifle_308", "fg": 423, "rotates": false }, + { "id": "overlay_wielded_rifle_38", "fg": 423, "rotates": false }, + { "id": "overlay_wielded_rifle_40", "fg": 423, "rotates": false }, + { "id": "overlay_wielded_rifle_44", "fg": 423, "rotates": false }, + { "id": "overlay_wielded_rifle_45", "fg": 423, "rotates": false }, + { "id": "overlay_wielded_rifle_9mm", "fg": 423, "rotates": false }, + { "id": "overlay_wielded_rifle_flintlock", "fg": 423, "rotates": false }, + { "id": "overlay_wielded_rm103a_pistol", "fg": 429, "rotates": false }, + { "id": "overlay_wielded_rm11b_sniper_rifle", "fg": 412, "rotates": false }, + { "id": "overlay_wielded_rm120c", "fg": 434, "rotates": false }, + { "id": "overlay_wielded_rm2000_smg", "fg": 431, "rotates": false }, + { "id": "overlay_wielded_rm20", "fg": 430, "rotates": false }, + { "id": "overlay_wielded_rm228", "fg": 405, "rotates": false }, + { "id": "overlay_wielded_rm298", "fg": 414, "rotates": false }, + { "id": "overlay_wielded_rm360_carbine", "fg": 432, "rotates": false }, + { "id": "overlay_wielded_rm451_flamethrower", "fg": 433, "rotates": false }, + { "id": "overlay_wielded_rm51_assault_rifle", "fg": 434, "rotates": false }, + { "id": "overlay_wielded_rm614_lmg", "fg": 430, "rotates": false }, + { "id": "overlay_wielded_rm802", "fg": 408, "rotates": false }, + { "id": "overlay_wielded_rm88_battle_rifle", "fg": 434, "rotates": false }, + { "id": "overlay_wielded_rm99_pistol", "fg": 429, "rotates": false }, + { "id": "overlay_wielded_rock", "fg": 365, "rotates": false }, + { "id": "overlay_wielded_rock_sock", "fg": 364, "rotates": false }, + { "id": "overlay_wielded_ruger_1022", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_ruger_lcr_22", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_ruger_lcr_38", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_ruger_mini", "fg": 373, "rotates": false }, + { "id": "overlay_wielded_ruger_redhawk", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_saiga_12", "fg": 402, "rotates": false }, + { "id": "overlay_wielded_saiga_sawn", "fg": 511, "rotates": false }, + { "id": "overlay_wielded_savage_111f", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_saxophone", "fg": 509, "rotates": false }, + { "id": "overlay_wielded_scar_h", "fg": 436, "rotates": false }, + { "id": "overlay_wielded_scar_l", "fg": 436, "rotates": false }, + { "id": "overlay_wielded_scimitar_fake", "fg": 472, "rotates": false }, + { "id": "overlay_wielded_scimitar_inferior", "fg": 472, "rotates": false }, { "id": [ "overlay_wielded_scimitar", "overlay_wielded_cavalry_sabre", "overlay_wielded_cavalry_sabre_fake" ], - "fg": 466, + "fg": 472, "rotates": false }, - { "id": "overlay_wielded_scourge_staff", "fg": 431, "rotates": false }, - { "id": "overlay_wielded_scrap", "fg": 359, "rotates": false }, - { "id": "overlay_wielded_scrap_copper", "fg": 359, "rotates": false }, - { "id": "overlay_wielded_screwdriver", "fg": 324, "rotates": false }, - { "id": "overlay_wielded_screwdriver_set", "fg": 324, "rotates": false }, - { "id": "overlay_wielded_scythe", "fg": 487, "rotates": false }, - { "id": "overlay_wielded_scythe_war", "fg": 487, "rotates": false }, - { "id": "overlay_wielded_selfbow", "fg": 404, "rotates": false }, - { "id": "overlay_wielded_sharp_rock", "fg": 359, "rotates": false }, - { "id": "overlay_wielded_sharp_toothbrush", "fg": 324, "rotates": false }, - { "id": "overlay_wielded_shishkebab_off", "fg": 467, "rotates": false }, - { "id": "overlay_wielded_shishkebab_on", "fg": 468, "rotates": false }, - { "id": "overlay_wielded_shock_staff", "fg": 345, "rotates": false }, - { "id": "overlay_wielded_shockcannon", "fg": 432, "rotates": false }, - { "id": "overlay_wielded_shocktonfa_off", "fg": 363, "rotates": false }, - { "id": "overlay_wielded_shocktonfa_on", "fg": 363, "rotates": false }, - { "id": "overlay_wielded_shortbow", "fg": 433, "rotates": false }, - { "id": "overlay_wielded_shotgun_d", "fg": 417, "rotates": false }, - { "id": "overlay_wielded_shotgun_s", "fg": 372, "rotates": false }, - { "id": "overlay_wielded_shotgun_sawn", "fg": 505, "rotates": false }, - { "id": "overlay_wielded_shovel", "fg": 488, "rotates": false }, - { "id": "overlay_wielded_sickle", "fg": 489, "rotates": false }, - { "id": "overlay_wielded_sig552", "fg": 434, "rotates": false }, - { "id": "overlay_wielded_sig_40", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_sig_mosquito", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_sig_p230", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_skorpion_61", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_skorpion_82", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_sks", "fg": 368, "rotates": false }, - { "id": "overlay_wielded_sling", "fg": 436, "rotates": false }, - { "id": "overlay_wielded_slingshot", "fg": 437, "rotates": false }, - { "id": "overlay_wielded_smg_22", "fg": 412, "rotates": false }, - { "id": "overlay_wielded_smg_38", "fg": 412, "rotates": false }, - { "id": "overlay_wielded_smg_40", "fg": 412, "rotates": false }, - { "id": "overlay_wielded_smg_45", "fg": 412, "rotates": false }, - { "id": "overlay_wielded_smg_9mm", "fg": 412, "rotates": false }, - { "id": "overlay_wielded_spear_copper", "fg": 360, "rotates": false }, - { "id": "overlay_wielded_spear_dory", "fg": 360, "rotates": false }, - { "id": "overlay_wielded_spear_forked", "fg": 357, "rotates": false }, - { "id": "overlay_wielded_spear_knife", "fg": 360, "rotates": false }, - { "id": "overlay_wielded_spear_pestilence", "fg": 490, "rotates": false }, - { "id": "overlay_wielded_spear_rebar", "fg": 360, "rotates": false }, - { "id": [ "overlay_wielded_spear_steel", "overlay_wielded_spear_pipe" ], "fg": 360, "rotates": false }, - { "id": "overlay_wielded_spear_survivor", "fg": 361, "rotates": false }, - { "id": "overlay_wielded_spear_wood", "fg": 346, "rotates": false }, - { "id": "overlay_wielded_speargun", "fg": 438, "rotates": false }, - { "id": "overlay_wielded_spike", "fg": 324, "rotates": false }, - { "id": "overlay_wielded_spiked_plate", "fg": 354, "rotates": false }, - { "id": "overlay_wielded_steel_chunk", "fg": 359, "rotates": false }, - { "id": "overlay_wielded_steel_lump", "fg": 359, "rotates": false }, - { "id": "overlay_wielded_sten", "fg": 439, "rotates": false }, - { "id": "overlay_wielded_steyr_aug", "fg": 440, "rotates": false }, - { "id": "overlay_wielded_stick", "fg": 337, "rotates": false }, - { "id": "overlay_wielded_stock_pot", "fg": 510, "rotates": false }, - { "id": "overlay_wielded_stormbringer", "fg": 454, "rotates": false }, - { "id": "overlay_wielded_stormbringer_on", "fg": 491, "rotates": false }, - { "id": "overlay_wielded_surv_carbine_223", "fg": 382, "rotates": false }, - { "id": "overlay_wielded_surv_hand_cannon", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_surv_levershotgun", "fg": 372, "rotates": false }, - { "id": "overlay_wielded_surv_rocket_launcher", "fg": 411, "rotates": false }, - { "id": "overlay_wielded_surv_six_shooter", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_survbow", "fg": 441, "rotates": false }, - { "id": "overlay_wielded_survivor_machete", "fg": 467, "rotates": false }, - { "id": "overlay_wielded_survivor_special_700", "fg": 393, "rotates": false }, - { "id": "overlay_wielded_svs-24", "fg": 368, "rotates": false }, - { "id": "overlay_wielded_svs-24c", "fg": 368, "rotates": false }, - { "id": "overlay_wielded_sw629", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_sw_22", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_sw_500", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_sw_610", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_sw_619", "fg": 371, "rotates": false }, - { "id": "overlay_wielded_switchblade", "fg": 341, "rotates": false }, - { "id": "overlay_wielded_sword_crude", "fg": 362, "rotates": false }, - { "id": "overlay_wielded_sword_forged", "fg": 362, "rotates": false }, - { "id": "overlay_wielded_sword_nail", "fg": 331, "rotates": false }, - { "id": "overlay_wielded_sword_wood", "fg": 327, "rotates": false }, - { "id": "overlay_wielded_sword_xiphos", "fg": 468, "rotates": false }, - { "id": "overlay_wielded_tanto", "fg": 492, "rotates": false }, - { "id": "overlay_wielded_taurus_38", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_tazer", "fg": 493, "rotates": false }, - { "id": "overlay_wielded_tec9", "fg": 412, "rotates": false }, - { "id": "overlay_wielded_teleumbrella", "fg": 364, "rotates": false }, - { "id": "overlay_wielded_tihar", "fg": 426, "rotates": false }, - { "id": "overlay_wielded_tokarev", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_tommygun", "fg": 435, "rotates": false }, - { "id": "overlay_wielded_tonfa", "fg": 363, "rotates": false }, - { "id": "overlay_wielded_tonfa_wood", "fg": 363, "rotates": false }, - { "id": "overlay_wielded_tool_anfo_charge", "fg": 316, "rotates": false }, - { "id": "overlay_wielded_tool_anfo_charge_act", "fg": 316, "rotates": false }, - { "id": "overlay_wielded_tool_rdx_charge", "fg": 316, "rotates": false }, - { "id": "overlay_wielded_tool_rdx_charge_act", "fg": 316, "rotates": false }, - { "id": "overlay_wielded_torch", "fg": 451, "rotates": false }, - { "id": "overlay_wielded_torch_done", "fg": 451, "rotates": false }, - { "id": "overlay_wielded_torch_lit", "fg": 452, "rotates": false }, - { "id": "overlay_wielded_trex_gun", "fg": 380, "rotates": false }, - { "id": "overlay_wielded_trimmer_off", "fg": 457, "rotates": false }, - { "id": "overlay_wielded_trimmer_on", "fg": 457, "rotates": false }, - { "id": "overlay_wielded_triple_launcher_simple", "fg": 370, "rotates": false }, - { "id": "overlay_wielded_trumpet", "fg": 494, "rotates": false }, - { "id": "overlay_wielded_tuba", "fg": 504, "rotates": false }, - { "id": "overlay_wielded_ukulele", "fg": 495, "rotates": false }, - { "id": "overlay_wielded_umbrella", "fg": 364, "rotates": false }, - { "id": "overlay_wielded_ups_rifle", "fg": 444, "rotates": false }, - { "id": "overlay_wielded_ups_rifle_crank", "fg": 445, "rotates": false }, - { "id": "overlay_wielded_usp_45", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_usp_9mm", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_uzi", "fg": 446, "rotates": false }, - { "id": "overlay_wielded_v29", "fg": 447, "rotates": false }, - { "id": "overlay_wielded_v29_cheap", "fg": 448, "rotates": false }, - { "id": "overlay_wielded_vibrator", "fg": 496, "rotates": false }, - { "id": "overlay_wielded_violin", "fg": 497, "rotates": false }, - { "id": "overlay_wielded_violin_golden", "fg": 497, "rotates": false }, - { "id": "overlay_wielded_wakizashi", "fg": 466, "rotates": false }, - { "id": "overlay_wielded_wakizashi_fake", "fg": 466, "rotates": false }, - { "id": "overlay_wielded_wakizashi_inferior", "fg": 466, "rotates": false }, - { "id": "overlay_wielded_walther_ppk", "fg": 384, "rotates": false }, - { "id": "overlay_wielded_warhammer", "fg": 365, "rotates": false }, - { "id": "overlay_wielded_wasp_sting", "fg": 324, "rotates": false }, - { "id": "overlay_wielded_weatherby_5", "fg": 374, "rotates": false }, - { "id": "overlay_wielded_win70", "fg": 426, "rotates": false }, - { "id": "overlay_wielded_wooden_barrel", "fg": 319, "rotates": false }, - { "id": "overlay_wielded_wrench", "fg": 498, "rotates": false }, - { "id": "overlay_wielded_wristrocket", "fg": 437, "rotates": false }, - { "id": "overlay_wielded_xacto", "fg": 341, "rotates": false }, - { "id": "overlay_wielded_zweifire_off", "fg": 499, "rotates": false }, - { "id": "overlay_wielded_zweifire_on", "fg": 500, "rotates": false }, - { "id": "overlay_wielded_zweihander", "fg": 499, "rotates": false }, - { "id": "overlay_wielded_zweihander_fake", "fg": 499, "rotates": false }, - { "id": "overlay_wielded_zweihander_inferior", "fg": 499, "rotates": false }, - { "id": "overlay_female_worn_dress_shirt", "fg": 552, "rotates": false }, - { "id": "overlay_female_worn_jumpsuit", "fg": 553, "rotates": false }, - { "id": "overlay_female_worn_jumpsuit_xl", "fg": 553, "rotates": false }, - { "id": "overlay_female_worn_linuxtshirt", "fg": 557, "rotates": false }, - { "id": "overlay_female_worn_long_underpants", "fg": 554, "rotates": false }, - { "id": "overlay_female_worn_long_undertop", "fg": 555, "rotates": false }, - { "id": "overlay_female_worn_longshirt", "fg": 556, "rotates": false }, - { "id": "overlay_female_worn_polo_shirt", "fg": 557, "rotates": false }, - { "id": "overlay_female_worn_postman_shirt", "fg": 552, "rotates": false }, - { "id": "overlay_female_worn_sheriffshirt", "fg": 556, "rotates": false }, - { "id": "overlay_female_worn_thermal_outfit", "fg": 512, "rotates": false }, - { "id": "overlay_female_worn_thermal_outfit_on", "fg": 512, "rotates": false }, - { "id": "overlay_female_worn_thermal_suit", "fg": 513, "rotates": false }, - { "id": "overlay_female_worn_thermal_suit_on", "fg": 513, "rotates": false }, - { "id": "overlay_female_worn_towel", "fg": 514, "rotates": false }, - { "id": "overlay_female_worn_towel_soiled", "fg": 567, "rotates": false }, - { "id": "overlay_female_worn_towel_wet", "fg": 514, "rotates": false }, - { "id": "overlay_female_worn_tshirt", "fg": 557, "rotates": false }, - { "id": "overlay_female_worn_tshirt_text", "fg": 557, "rotates": false }, - { "id": "overlay_female_worn_under_armor", "fg": 558, "rotates": false }, - { "id": "overlay_female_worn_union_suit", "fg": 559, "rotates": false }, - { "id": "overlay_male_worn_dress_shirt", "fg": 560, "rotates": false }, - { "id": "overlay_male_worn_jumpsuit", "fg": 561, "rotates": false }, - { "id": "overlay_male_worn_jumpsuit_xl", "fg": 561, "rotates": false }, - { "id": "overlay_male_worn_linuxtshirt", "fg": 566, "rotates": false }, - { "id": "overlay_male_worn_long_underpants", "fg": 562, "rotates": false }, - { "id": "overlay_male_worn_long_undertop", "fg": 563, "rotates": false }, - { "id": "overlay_male_worn_longshirt", "fg": 564, "rotates": false }, - { "id": "overlay_male_worn_polo_shirt", "fg": 566, "rotates": false }, - { "id": "overlay_male_worn_postman_shirt", "fg": 560, "rotates": false }, - { "id": "overlay_male_worn_sheriffshirt", "fg": 564, "rotates": false }, - { "id": "overlay_male_worn_thermal_outfit", "fg": 515, "rotates": false }, - { "id": "overlay_male_worn_thermal_outfit_on", "fg": 515, "rotates": false }, - { "id": "overlay_male_worn_thermal_suit", "fg": 516, "rotates": false }, - { "id": "overlay_male_worn_thermal_suit_on", "fg": 516, "rotates": false }, - { "id": "overlay_male_worn_towel", "fg": 517, "rotates": false }, - { "id": "overlay_male_worn_towel_soiled", "fg": 568, "rotates": false }, - { "id": "overlay_male_worn_towel_wet", "fg": 517, "rotates": false }, - { "id": "overlay_male_worn_tshirt", "fg": 566, "rotates": false }, - { "id": "overlay_male_worn_tshirt_text", "fg": 566, "rotates": false }, - { "id": "overlay_male_worn_under_armor", "fg": 570, "rotates": false }, - { "id": "overlay_male_worn_union_suit", "fg": 572, "rotates": false }, - { "id": "overlay_worn_2byarm_guard", "fg": 583, "rotates": false }, - { "id": "overlay_worn_2byshin_guard", "fg": 740, "rotates": false }, - { "id": "overlay_worn_XL_holster", "fg": 807, "rotates": false }, - { "id": "overlay_worn_aep_suit", "fg": 575, "rotates": false }, - { "id": "overlay_worn_american_flag", "fg": 579, "rotates": false }, - { "id": [ "overlay_worn_ammo_satchel", "overlay_worn_flintlock_pouch" ], "fg": 706, "rotates": false }, - { "id": "overlay_worn_anbc_suit", "fg": 581, "rotates": false }, - { "id": "overlay_worn_apron_leather", "fg": 860, "rotates": false }, - { "id": "overlay_worn_arm_splint", "fg": 592, "rotates": false }, - { "id": "overlay_worn_arm_warmers", "fg": 593, "rotates": false }, - { "id": "overlay_worn_armguard_acidchitin", "fg": 580, "rotates": false }, - { "id": "overlay_worn_armguard_chitin", "fg": 582, "rotates": false }, - { "id": "overlay_worn_armguard_hard", "fg": 583, "rotates": false }, - { "id": "overlay_worn_armguard_larmor", "fg": 582, "rotates": false }, - { "id": [ "overlay_worn_armguard_metal", "overlay_worn_armguard_lightplate" ], "fg": 910, "rotates": false }, - { "id": "overlay_worn_armguard_paper", "fg": 584, "rotates": false }, - { "id": "overlay_worn_armguard_soft", "fg": 583, "rotates": false }, - { "id": "overlay_worn_armor_acidchitin", "fg": 578, "rotates": false }, - { "id": "overlay_worn_armor_blarmor", "fg": 586, "rotates": false }, - { "id": "overlay_worn_armor_chitin", "fg": 585, "rotates": false }, - { "id": "overlay_worn_armor_cuirass", "fg": 636, "rotates": false }, - { "id": "overlay_worn_armor_farmor", "fg": 586, "rotates": false }, - { "id": "overlay_worn_armor_lamellar", "fg": 586, "rotates": false }, - { "id": "overlay_worn_armor_larmor", "fg": 586, "rotates": false }, - { "id": "overlay_worn_armor_lightplate", "fg": 588, "rotates": false }, - { "id": [ "overlay_worn_armor_lorica", "overlay_worn_cuirass_lightplate" ], "fg": 636, "rotates": false }, - { "id": "overlay_worn_armor_nomad", "fg": 877, "rotates": false }, - { "id": "overlay_worn_armor_plarmor", "fg": 587, "rotates": false }, - { "id": "overlay_worn_armor_plate", "fg": 588, "rotates": false }, - { "id": "overlay_worn_armor_samurai", "fg": 589, "rotates": false }, - { "id": "overlay_worn_armor_scavenger", "fg": 878, "rotates": false }, - { "id": "overlay_worn_armor_scrapsuit", "fg": 590, "rotates": false }, - { "id": "overlay_worn_armor_wyrm", "fg": 518, "rotates": false }, - { "id": "overlay_worn_army_top", "fg": 591, "rotates": false }, - { "id": "overlay_worn_b_shorts", "fg": 629, "rotates": false }, - { "id": "overlay_worn_back_holster", "fg": 595, "rotates": false }, - { "id": "overlay_worn_backpack", "fg": 594, "rotates": false }, - { "id": "overlay_worn_backpack_leather", "fg": 594, "rotates": false }, - { "id": "overlay_worn_badge_doctor", "fg": 879, "rotates": false }, - { "id": "overlay_worn_badge_foodkid", "fg": 880, "rotates": false }, - { "id": "overlay_worn_balclava", "fg": 596, "rotates": false }, - { "id": "overlay_worn_baldric", "fg": 807, "rotates": false }, - { "id": "overlay_worn_bandana", "fg": 597, "rotates": false }, - { "id": "overlay_worn_bastsandals", "fg": 598, "rotates": false }, - { "id": "overlay_worn_bead_bracelet", "fg": 881, "rotates": false }, - { "id": "overlay_worn_bead_ear", "fg": 882, "rotates": false }, - { "id": "overlay_worn_beekeeping_gloves", "fg": 672, "rotates": false }, - { "id": "overlay_worn_beekeeping_hood", "fg": 883, "rotates": false }, - { "id": "overlay_worn_beekeeping_suit", "fg": 599, "rotates": false }, - { "id": "overlay_worn_beret", "fg": 600, "rotates": false }, - { "id": "overlay_worn_beret_wool", "fg": 600, "rotates": false }, - { "id": "overlay_worn_bikini_bottom", "fg": 601, "rotates": false }, - { "id": "overlay_worn_bikini_top", "fg": 602, "rotates": false }, - { "id": "overlay_worn_bikini_top_fur", "fg": 638, "rotates": false }, - { "id": "overlay_worn_bikini_top_leather", "fg": 638, "rotates": false }, - { "id": "overlay_worn_bindle", "fg": 603, "rotates": false }, - { "id": "overlay_worn_blanket", "fg": 604, "rotates": false }, - { "id": "overlay_worn_blazer", "fg": 605, "rotates": false }, - { "id": "overlay_worn_blindfold", "fg": 606, "rotates": false }, - { "id": "overlay_worn_bondage_mask", "fg": 607, "rotates": false }, - { "id": "overlay_worn_bondage_suit", "fg": 608, "rotates": false }, - { "id": "overlay_worn_boots", "fg": 609, "rotates": false }, - { "id": "overlay_worn_boots_acidchitin", "fg": 573, "rotates": false }, - { "id": "overlay_worn_boots_bunker", "fg": 616, "rotates": false }, - { "id": "overlay_worn_boots_chitin", "fg": 612, "rotates": false }, - { "id": "overlay_worn_boots_combat", "fg": 613, "rotates": false }, - { "id": "overlay_worn_boots_fsurvivor", "fg": 616, "rotates": false }, - { "id": "overlay_worn_boots_fur", "fg": 615, "rotates": false }, - { "id": "overlay_worn_boots_h20survivor", "fg": 868, "rotates": false }, - { "id": "overlay_worn_boots_hiking", "fg": 609, "rotates": false }, - { "id": "overlay_worn_boots_hsurvivor", "fg": 614, "rotates": false }, - { "id": "overlay_worn_boots_larmor", "fg": 615, "rotates": false }, - { "id": "overlay_worn_boots_lsurvivor", "fg": 615, "rotates": false }, - { "id": "overlay_worn_boots_plate", "fg": 615, "rotates": false }, - { "id": "overlay_worn_boots_steel", "fg": 617, "rotates": false }, - { "id": "overlay_worn_boots_survivor", "fg": 615, "rotates": false }, - { "id": "overlay_worn_boots_western", "fg": 618, "rotates": false }, - { "id": "overlay_worn_boots_winter", "fg": 619, "rotates": false }, - { "id": "overlay_worn_boots_wsurvivor", "fg": 619, "rotates": false }, - { "id": "overlay_worn_boots_xlsurvivor", "fg": 619, "rotates": false }, - { "id": "overlay_worn_bootsheath", "fg": 610, "rotates": false }, - { "id": "overlay_worn_bootstrap", "fg": 611, "rotates": false }, - { "id": "overlay_worn_boxer_briefs", "fg": 620, "rotates": false }, - { "id": "overlay_worn_boxer_shorts", "fg": 620, "rotates": false }, - { "id": "overlay_worn_boxing_gloves", "fg": 621, "rotates": false }, - { "id": "overlay_worn_boy_shorts", "fg": 622, "rotates": false }, - { "id": "overlay_worn_bra", "fg": 623, "rotates": false }, - { "id": "overlay_worn_breeches", "fg": 785, "rotates": false }, - { "id": "overlay_worn_briefcase", "fg": 624, "rotates": false }, - { "id": "overlay_worn_briefs", "fg": 625, "rotates": false }, - { "id": "overlay_worn_bronze_medal", "fg": 886, "rotates": false }, - { "id": "overlay_worn_bscabbard", "fg": 626, "rotates": false }, - { "id": "overlay_worn_bunker_coat", "fg": 627, "rotates": false }, - { "id": "overlay_worn_bunker_pants", "fg": 628, "rotates": false }, - { "id": "overlay_worn_camisole", "fg": 630, "rotates": false }, - { "id": "overlay_worn_case_violin", "fg": 577, "rotates": false }, - { "id": "overlay_worn_cassock", "fg": 631, "rotates": false }, - { "id": [ "overlay_worn_fur_cat_ears", "overlay_worn_faux_fur_cat_ears" ], "fg": 904, "rotates": false }, - { "id": "overlay_worn_chainmail_arms", "fg": 632, "rotates": false }, - { "id": "overlay_worn_chainmail_hauberk", "fg": 636, "rotates": false }, - { "id": "overlay_worn_chainmail_hood", "fg": 633, "rotates": false }, - { "id": "overlay_worn_chainmail_legs", "fg": 634, "rotates": false }, - { "id": "overlay_worn_chainmail_suit", "fg": 635, "rotates": false }, - { "id": "overlay_worn_chainmail_vest", "fg": 636, "rotates": false }, - { "id": "overlay_worn_chaps_leather", "fg": 637, "rotates": false }, - { "id": "overlay_worn_chestrig", "fg": 864, "rotates": false }, - { "id": "overlay_worn_chestwrap", "fg": 638, "rotates": false }, - { "id": "overlay_worn_chestwrap_fur", "fg": 638, "rotates": false }, - { "id": "overlay_worn_chestwrap_leather", "fg": 638, "rotates": false }, - { "id": "overlay_worn_chestwrap_wool", "fg": 638, "rotates": false }, - { "id": "overlay_worn_cleansuit", "fg": 639, "rotates": false }, - { "id": "overlay_worn_cleats", "fg": 823, "rotates": false }, - { "id": "overlay_worn_cloak", "fg": 640, "rotates": false }, - { "id": "overlay_worn_cloak_bless", "fg": 645, "rotates": false }, - { "id": "overlay_worn_cloak_fur", "fg": 803, "rotates": false }, - { "id": "overlay_worn_cloak_leather", "fg": 803, "rotates": false }, - { "id": "overlay_worn_cloak_wool", "fg": 779, "rotates": false }, - { "id": "overlay_worn_clogs", "fg": 641, "rotates": false }, - { "id": "overlay_worn_clown_suit", "fg": 643, "rotates": false }, - { "id": "overlay_worn_clownshoes", "fg": 642, "rotates": false }, - { "id": "overlay_worn_coat_fur", "fg": 644, "rotates": false }, - { "id": "overlay_worn_coat_fur_sf", "fg": 644, "rotates": false }, - { "id": "overlay_worn_coat_lab", "fg": 645, "rotates": false }, - { "id": "overlay_worn_coat_rain", "fg": 646, "rotates": false }, - { "id": "overlay_worn_coat_winter", "fg": 647, "rotates": false }, - { "id": "overlay_worn_copper_locket", "fg": 887, "rotates": false }, - { "id": "overlay_worn_copper_necklace", "fg": 888, "rotates": false }, - { "id": [ "overlay_worn_copper_ring", "overlay_worn_mring_copper" ], "fg": 889, "rotates": false }, - { "id": "overlay_worn_corset", "fg": 648, "rotates": false }, - { "id": "overlay_worn_cowboy_hat", "fg": 649, "rotates": false }, - { "id": "overlay_worn_cowl_wool", "fg": 711, "rotates": false }, - { "id": [ "overlay_worn_crown_golden", "overlay_worn_crown_golden_survivor" ], "fg": 576, "rotates": false }, - { "id": "overlay_worn_dance_shoes", "fg": 687, "rotates": false }, - { "id": "overlay_worn_depowered_armor", "fg": 794, "rotates": false }, - { "id": "overlay_worn_depowered_helmet", "fg": 650, "rotates": false }, - { "id": "overlay_worn_dinosuit", "fg": 651, "rotates": false }, - { "id": "overlay_worn_dive_bag", "fg": 652, "rotates": false }, - { "id": "overlay_worn_diving_watch", "fg": 894, "rotates": false }, - { "id": "overlay_worn_down_blanket", "fg": 604, "rotates": false }, - { "id": "overlay_worn_dragonskin", "fg": 895, "rotates": false }, - { "id": "overlay_worn_dress", "fg": 653, "rotates": false }, - { "id": "overlay_worn_dress_bless", "fg": 654, "rotates": false }, - { "id": "overlay_worn_dress_shoes", "fg": 810, "rotates": false }, - { "id": "overlay_worn_dress_shoes_air", "fg": 687, "rotates": false }, - { "id": "overlay_worn_dress_skirt", "fg": 816, "rotates": false }, - { "id": "overlay_worn_dress_wedding", "fg": 654, "rotates": false }, - { "id": "overlay_worn_duffelbag", "fg": 837, "rotates": false }, - { "id": "overlay_worn_duster", "fg": 655, "rotates": false }, - { "id": "overlay_worn_duster_fur", "fg": 655, "rotates": false }, - { "id": "overlay_worn_duster_leather", "fg": 655, "rotates": false }, - { "id": "overlay_worn_duster_survivor", "fg": 656, "rotates": false }, - { "id": "overlay_worn_e_handcuffs", "fg": 464, "rotates": false }, + { "id": "overlay_wielded_scourge_staff", "fg": 437, "rotates": false }, + { "id": "overlay_wielded_scrap", "fg": 365, "rotates": false }, + { "id": "overlay_wielded_scrap_copper", "fg": 365, "rotates": false }, + { "id": "overlay_wielded_screwdriver", "fg": 330, "rotates": false }, + { "id": "overlay_wielded_screwdriver_set", "fg": 330, "rotates": false }, + { "id": "overlay_wielded_scythe", "fg": 493, "rotates": false }, + { "id": "overlay_wielded_scythe_war", "fg": 493, "rotates": false }, + { "id": "overlay_wielded_selfbow", "fg": 410, "rotates": false }, + { "id": "overlay_wielded_sharp_rock", "fg": 365, "rotates": false }, + { "id": "overlay_wielded_sharp_toothbrush", "fg": 330, "rotates": false }, + { "id": "overlay_wielded_shishkebab_off", "fg": 473, "rotates": false }, + { "id": "overlay_wielded_shishkebab_on", "fg": 474, "rotates": false }, + { "id": "overlay_wielded_shock_staff", "fg": 351, "rotates": false }, + { "id": "overlay_wielded_shockcannon", "fg": 438, "rotates": false }, + { "id": "overlay_wielded_shocktonfa_off", "fg": 369, "rotates": false }, + { "id": "overlay_wielded_shocktonfa_on", "fg": 369, "rotates": false }, + { "id": "overlay_wielded_shortbow", "fg": 439, "rotates": false }, + { "id": "overlay_wielded_shotgun_d", "fg": 423, "rotates": false }, + { "id": "overlay_wielded_shotgun_s", "fg": 378, "rotates": false }, + { "id": "overlay_wielded_shotgun_sawn", "fg": 511, "rotates": false }, + { "id": "overlay_wielded_shovel", "fg": 494, "rotates": false }, + { "id": "overlay_wielded_sickle", "fg": 495, "rotates": false }, + { "id": "overlay_wielded_sig552", "fg": 440, "rotates": false }, + { "id": "overlay_wielded_sig_40", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_sig_mosquito", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_sig_p230", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_skorpion_61", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_skorpion_82", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_sks", "fg": 374, "rotates": false }, + { "id": "overlay_wielded_sling", "fg": 442, "rotates": false }, + { "id": "overlay_wielded_slingshot", "fg": 443, "rotates": false }, + { "id": "overlay_wielded_smg_22", "fg": 418, "rotates": false }, + { "id": "overlay_wielded_smg_38", "fg": 418, "rotates": false }, + { "id": "overlay_wielded_smg_40", "fg": 418, "rotates": false }, + { "id": "overlay_wielded_smg_45", "fg": 418, "rotates": false }, + { "id": "overlay_wielded_smg_9mm", "fg": 418, "rotates": false }, + { "id": "overlay_wielded_spear_copper", "fg": 366, "rotates": false }, + { "id": "overlay_wielded_spear_dory", "fg": 366, "rotates": false }, + { "id": "overlay_wielded_spear_forked", "fg": 363, "rotates": false }, + { "id": "overlay_wielded_spear_knife", "fg": 366, "rotates": false }, + { "id": "overlay_wielded_spear_pestilence", "fg": 496, "rotates": false }, + { "id": "overlay_wielded_spear_rebar", "fg": 366, "rotates": false }, + { "id": [ "overlay_wielded_spear_steel", "overlay_wielded_spear_pipe" ], "fg": 366, "rotates": false }, + { "id": "overlay_wielded_spear_survivor", "fg": 367, "rotates": false }, + { "id": "overlay_wielded_spear_wood", "fg": 352, "rotates": false }, + { "id": "overlay_wielded_speargun", "fg": 444, "rotates": false }, + { "id": "overlay_wielded_spike", "fg": 330, "rotates": false }, + { "id": "overlay_wielded_spiked_plate", "fg": 360, "rotates": false }, + { "id": "overlay_wielded_steel_chunk", "fg": 365, "rotates": false }, + { "id": "overlay_wielded_steel_lump", "fg": 365, "rotates": false }, + { "id": "overlay_wielded_sten", "fg": 445, "rotates": false }, + { "id": "overlay_wielded_steyr_aug", "fg": 446, "rotates": false }, + { "id": "overlay_wielded_stick", "fg": 343, "rotates": false }, + { "id": "overlay_wielded_stock_pot", "fg": 517, "rotates": false }, + { "id": "overlay_wielded_stormbringer", "fg": 460, "rotates": false }, + { "id": "overlay_wielded_stormbringer_on", "fg": 497, "rotates": false }, + { "id": "overlay_wielded_surv_carbine_223", "fg": 388, "rotates": false }, + { "id": "overlay_wielded_surv_hand_cannon", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_surv_levershotgun", "fg": 378, "rotates": false }, + { "id": "overlay_wielded_surv_rocket_launcher", "fg": 417, "rotates": false }, + { "id": "overlay_wielded_surv_six_shooter", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_survbow", "fg": 447, "rotates": false }, + { "id": "overlay_wielded_survivor_machete", "fg": 473, "rotates": false }, + { "id": "overlay_wielded_survivor_special_700", "fg": 399, "rotates": false }, + { "id": "overlay_wielded_svs-24", "fg": 374, "rotates": false }, + { "id": "overlay_wielded_svs-24c", "fg": 374, "rotates": false }, + { "id": "overlay_wielded_sw629", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_sw_22", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_sw_500", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_sw_610", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_sw_619", "fg": 377, "rotates": false }, + { "id": "overlay_wielded_switchblade", "fg": 347, "rotates": false }, + { "id": "overlay_wielded_sword_crude", "fg": 368, "rotates": false }, + { "id": "overlay_wielded_sword_forged", "fg": 368, "rotates": false }, + { "id": "overlay_wielded_sword_nail", "fg": 337, "rotates": false }, + { "id": "overlay_wielded_sword_wood", "fg": 333, "rotates": false }, + { "id": "overlay_wielded_sword_xiphos", "fg": 474, "rotates": false }, + { "id": "overlay_wielded_tanto", "fg": 498, "rotates": false }, + { "id": "overlay_wielded_taurus_38", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_tazer", "fg": 499, "rotates": false }, + { "id": "overlay_wielded_tec9", "fg": 418, "rotates": false }, + { "id": "overlay_wielded_teleumbrella", "fg": 370, "rotates": false }, + { "id": "overlay_wielded_tihar", "fg": 432, "rotates": false }, + { "id": "overlay_wielded_tokarev", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_tommygun", "fg": 441, "rotates": false }, + { "id": "overlay_wielded_tonfa", "fg": 369, "rotates": false }, + { "id": "overlay_wielded_tonfa_wood", "fg": 369, "rotates": false }, + { "id": "overlay_wielded_tool_anfo_charge", "fg": 322, "rotates": false }, + { "id": "overlay_wielded_tool_anfo_charge_act", "fg": 322, "rotates": false }, + { "id": "overlay_wielded_tool_rdx_charge", "fg": 322, "rotates": false }, + { "id": "overlay_wielded_tool_rdx_charge_act", "fg": 322, "rotates": false }, + { "id": "overlay_wielded_torch", "fg": 457, "rotates": false }, + { "id": "overlay_wielded_torch_done", "fg": 457, "rotates": false }, + { "id": "overlay_wielded_torch_lit", "fg": 458, "rotates": false }, + { "id": "overlay_wielded_trex_gun", "fg": 386, "rotates": false }, + { "id": "overlay_wielded_trimmer_off", "fg": 463, "rotates": false }, + { "id": "overlay_wielded_trimmer_on", "fg": 463, "rotates": false }, + { "id": "overlay_wielded_triple_launcher_simple", "fg": 376, "rotates": false }, + { "id": "overlay_wielded_trumpet", "fg": 500, "rotates": false }, + { "id": "overlay_wielded_tuba", "fg": 510, "rotates": false }, + { "id": "overlay_wielded_ukulele", "fg": 501, "rotates": false }, + { "id": "overlay_wielded_umbrella", "fg": 370, "rotates": false }, + { "id": "overlay_wielded_ups_rifle", "fg": 450, "rotates": false }, + { "id": "overlay_wielded_ups_rifle_crank", "fg": 451, "rotates": false }, + { "id": "overlay_wielded_usp_45", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_usp_9mm", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_uzi", "fg": 452, "rotates": false }, + { "id": "overlay_wielded_v29", "fg": 453, "rotates": false }, + { "id": "overlay_wielded_v29_cheap", "fg": 454, "rotates": false }, + { "id": "overlay_wielded_vibrator", "fg": 502, "rotates": false }, + { "id": "overlay_wielded_violin", "fg": 503, "rotates": false }, + { "id": "overlay_wielded_violin_golden", "fg": 503, "rotates": false }, + { "id": "overlay_wielded_wakizashi", "fg": 472, "rotates": false }, + { "id": "overlay_wielded_wakizashi_fake", "fg": 472, "rotates": false }, + { "id": "overlay_wielded_wakizashi_inferior", "fg": 472, "rotates": false }, + { "id": "overlay_wielded_walther_ppk", "fg": 390, "rotates": false }, + { "id": "overlay_wielded_warhammer", "fg": 371, "rotates": false }, + { "id": "overlay_wielded_wasp_sting", "fg": 330, "rotates": false }, + { "id": "overlay_wielded_weatherby_5", "fg": 380, "rotates": false }, + { "id": "overlay_wielded_win70", "fg": 432, "rotates": false }, + { "id": "overlay_wielded_wooden_barrel", "fg": 325, "rotates": false }, + { "id": "overlay_wielded_wrench", "fg": 504, "rotates": false }, + { "id": "overlay_wielded_wristrocket", "fg": 443, "rotates": false }, + { "id": "overlay_wielded_xacto", "fg": 347, "rotates": false }, + { "id": "overlay_wielded_zweifire_off", "fg": 505, "rotates": false }, + { "id": "overlay_wielded_zweifire_on", "fg": 506, "rotates": false }, + { "id": "overlay_wielded_zweihander", "fg": 505, "rotates": false }, + { "id": "overlay_wielded_zweihander_fake", "fg": 505, "rotates": false }, + { "id": "overlay_wielded_zweihander_inferior", "fg": 505, "rotates": false }, + { "id": "overlay_female_worn_dress_shirt", "fg": 559, "rotates": false }, + { "id": "overlay_female_worn_jumpsuit", "fg": 560, "rotates": false }, + { "id": "overlay_female_worn_jumpsuit_xl", "fg": 560, "rotates": false }, + { "id": "overlay_female_worn_linuxtshirt", "fg": 564, "rotates": false }, + { "id": "overlay_female_worn_long_underpants", "fg": 561, "rotates": false }, + { "id": "overlay_female_worn_long_undertop", "fg": 562, "rotates": false }, + { "id": "overlay_female_worn_longshirt", "fg": 563, "rotates": false }, + { "id": "overlay_female_worn_polo_shirt", "fg": 564, "rotates": false }, + { "id": "overlay_female_worn_postman_shirt", "fg": 559, "rotates": false }, + { "id": "overlay_female_worn_sheriffshirt", "fg": 563, "rotates": false }, + { "id": "overlay_female_worn_thermal_outfit", "fg": 519, "rotates": false }, + { "id": "overlay_female_worn_thermal_outfit_on", "fg": 519, "rotates": false }, + { "id": "overlay_female_worn_thermal_suit", "fg": 520, "rotates": false }, + { "id": "overlay_female_worn_thermal_suit_on", "fg": 520, "rotates": false }, + { "id": "overlay_female_worn_towel", "fg": 521, "rotates": false }, + { "id": "overlay_female_worn_towel_soiled", "fg": 574, "rotates": false }, + { "id": "overlay_female_worn_towel_wet", "fg": 521, "rotates": false }, + { "id": "overlay_female_worn_tshirt", "fg": 564, "rotates": false }, + { "id": "overlay_female_worn_tshirt_text", "fg": 564, "rotates": false }, + { "id": "overlay_female_worn_under_armor", "fg": 565, "rotates": false }, + { "id": "overlay_female_worn_union_suit", "fg": 566, "rotates": false }, + { "id": "overlay_male_worn_dress_shirt", "fg": 567, "rotates": false }, + { "id": "overlay_male_worn_jumpsuit", "fg": 568, "rotates": false }, + { "id": "overlay_male_worn_jumpsuit_xl", "fg": 568, "rotates": false }, + { "id": "overlay_male_worn_linuxtshirt", "fg": 573, "rotates": false }, + { "id": "overlay_male_worn_long_underpants", "fg": 569, "rotates": false }, + { "id": "overlay_male_worn_long_undertop", "fg": 570, "rotates": false }, + { "id": "overlay_male_worn_longshirt", "fg": 571, "rotates": false }, + { "id": "overlay_male_worn_polo_shirt", "fg": 573, "rotates": false }, + { "id": "overlay_male_worn_postman_shirt", "fg": 567, "rotates": false }, + { "id": "overlay_male_worn_sheriffshirt", "fg": 571, "rotates": false }, + { "id": "overlay_male_worn_thermal_outfit", "fg": 522, "rotates": false }, + { "id": "overlay_male_worn_thermal_outfit_on", "fg": 522, "rotates": false }, + { "id": "overlay_male_worn_thermal_suit", "fg": 523, "rotates": false }, + { "id": "overlay_male_worn_thermal_suit_on", "fg": 523, "rotates": false }, + { "id": "overlay_male_worn_towel", "fg": 524, "rotates": false }, + { "id": "overlay_male_worn_towel_soiled", "fg": 575, "rotates": false }, + { "id": "overlay_male_worn_towel_wet", "fg": 524, "rotates": false }, + { "id": "overlay_male_worn_tshirt", "fg": 573, "rotates": false }, + { "id": "overlay_male_worn_tshirt_text", "fg": 573, "rotates": false }, + { "id": "overlay_male_worn_under_armor", "fg": 577, "rotates": false }, + { "id": "overlay_male_worn_union_suit", "fg": 579, "rotates": false }, + { "id": "overlay_worn_2byarm_guard", "fg": 590, "rotates": false }, + { "id": "overlay_worn_2byshin_guard", "fg": 747, "rotates": false }, + { "id": "overlay_worn_XL_holster", "fg": 814, "rotates": false }, + { "id": "overlay_worn_aep_suit", "fg": 582, "rotates": false }, + { "id": "overlay_worn_american_flag", "fg": 586, "rotates": false }, + { "id": [ "overlay_worn_ammo_satchel", "overlay_worn_flintlock_pouch" ], "fg": 713, "rotates": false }, + { "id": "overlay_worn_anbc_suit", "fg": 588, "rotates": false }, + { "id": "overlay_worn_apron_leather", "fg": 867, "rotates": false }, + { "id": "overlay_worn_arm_splint", "fg": 599, "rotates": false }, + { "id": "overlay_worn_arm_warmers", "fg": 600, "rotates": false }, + { "id": "overlay_worn_armguard_acidchitin", "fg": 587, "rotates": false }, + { "id": "overlay_worn_armguard_chitin", "fg": 589, "rotates": false }, + { "id": "overlay_worn_armguard_hard", "fg": 590, "rotates": false }, + { "id": "overlay_worn_armguard_larmor", "fg": 589, "rotates": false }, + { "id": [ "overlay_worn_armguard_metal", "overlay_worn_armguard_lightplate" ], "fg": 917, "rotates": false }, + { "id": "overlay_worn_armguard_paper", "fg": 591, "rotates": false }, + { "id": "overlay_worn_armguard_soft", "fg": 590, "rotates": false }, + { "id": "overlay_worn_armor_acidchitin", "fg": 585, "rotates": false }, + { "id": "overlay_worn_armor_blarmor", "fg": 593, "rotates": false }, + { "id": "overlay_worn_armor_chitin", "fg": 592, "rotates": false }, + { "id": "overlay_worn_armor_cuirass", "fg": 643, "rotates": false }, + { "id": "overlay_worn_armor_farmor", "fg": 593, "rotates": false }, + { "id": "overlay_worn_armor_lamellar", "fg": 593, "rotates": false }, + { "id": "overlay_worn_armor_larmor", "fg": 593, "rotates": false }, + { "id": "overlay_worn_armor_lightplate", "fg": 595, "rotates": false }, + { "id": [ "overlay_worn_armor_lorica", "overlay_worn_cuirass_lightplate" ], "fg": 643, "rotates": false }, + { "id": "overlay_worn_armor_nomad", "fg": 884, "rotates": false }, + { "id": "overlay_worn_armor_plarmor", "fg": 594, "rotates": false }, + { "id": "overlay_worn_armor_plate", "fg": 595, "rotates": false }, + { "id": "overlay_worn_armor_samurai", "fg": 596, "rotates": false }, + { "id": "overlay_worn_armor_scavenger", "fg": 885, "rotates": false }, + { "id": "overlay_worn_armor_scrapsuit", "fg": 597, "rotates": false }, + { "id": "overlay_worn_armor_wyrm", "fg": 525, "rotates": false }, + { "id": "overlay_worn_army_top", "fg": 598, "rotates": false }, + { "id": "overlay_worn_b_shorts", "fg": 636, "rotates": false }, + { "id": "overlay_worn_back_holster", "fg": 602, "rotates": false }, + { "id": "overlay_worn_backpack", "fg": 601, "rotates": false }, + { "id": "overlay_worn_backpack_leather", "fg": 601, "rotates": false }, + { "id": "overlay_worn_badge_doctor", "fg": 886, "rotates": false }, + { "id": "overlay_worn_badge_foodkid", "fg": 887, "rotates": false }, + { "id": "overlay_worn_balclava", "fg": 603, "rotates": false }, + { "id": "overlay_worn_baldric", "fg": 814, "rotates": false }, + { "id": "overlay_worn_bandana", "fg": 604, "rotates": false }, + { "id": "overlay_worn_bastsandals", "fg": 605, "rotates": false }, + { "id": "overlay_worn_bead_bracelet", "fg": 888, "rotates": false }, + { "id": "overlay_worn_bead_ear", "fg": 889, "rotates": false }, + { "id": "overlay_worn_beekeeping_gloves", "fg": 679, "rotates": false }, + { "id": "overlay_worn_beekeeping_hood", "fg": 890, "rotates": false }, + { "id": "overlay_worn_beekeeping_suit", "fg": 606, "rotates": false }, + { "id": "overlay_worn_beret", "fg": 607, "rotates": false }, + { "id": "overlay_worn_beret_wool", "fg": 607, "rotates": false }, + { "id": "overlay_worn_bikini_bottom", "fg": 608, "rotates": false }, + { "id": "overlay_worn_bikini_top", "fg": 609, "rotates": false }, + { "id": "overlay_worn_bikini_top_fur", "fg": 645, "rotates": false }, + { "id": "overlay_worn_bikini_top_leather", "fg": 645, "rotates": false }, + { "id": "overlay_worn_bindle", "fg": 610, "rotates": false }, + { "id": "overlay_worn_blanket", "fg": 611, "rotates": false }, + { "id": "overlay_worn_blazer", "fg": 612, "rotates": false }, + { "id": "overlay_worn_blindfold", "fg": 613, "rotates": false }, + { "id": "overlay_worn_bondage_mask", "fg": 614, "rotates": false }, + { "id": "overlay_worn_bondage_suit", "fg": 615, "rotates": false }, + { "id": "overlay_worn_boots", "fg": 616, "rotates": false }, + { "id": "overlay_worn_boots_acidchitin", "fg": 580, "rotates": false }, + { "id": "overlay_worn_boots_bunker", "fg": 623, "rotates": false }, + { "id": "overlay_worn_boots_chitin", "fg": 619, "rotates": false }, + { "id": "overlay_worn_boots_combat", "fg": 620, "rotates": false }, + { "id": "overlay_worn_boots_fsurvivor", "fg": 623, "rotates": false }, + { "id": "overlay_worn_boots_fur", "fg": 622, "rotates": false }, + { "id": "overlay_worn_boots_h20survivor", "fg": 875, "rotates": false }, + { "id": "overlay_worn_boots_hiking", "fg": 616, "rotates": false }, + { "id": "overlay_worn_boots_hsurvivor", "fg": 621, "rotates": false }, + { "id": "overlay_worn_boots_larmor", "fg": 622, "rotates": false }, + { "id": "overlay_worn_boots_lsurvivor", "fg": 622, "rotates": false }, + { "id": "overlay_worn_boots_plate", "fg": 622, "rotates": false }, + { "id": "overlay_worn_boots_steel", "fg": 624, "rotates": false }, + { "id": "overlay_worn_boots_survivor", "fg": 622, "rotates": false }, + { "id": "overlay_worn_boots_western", "fg": 625, "rotates": false }, + { "id": "overlay_worn_boots_winter", "fg": 626, "rotates": false }, + { "id": "overlay_worn_boots_wsurvivor", "fg": 626, "rotates": false }, + { "id": "overlay_worn_boots_xlsurvivor", "fg": 626, "rotates": false }, + { "id": "overlay_worn_bootsheath", "fg": 617, "rotates": false }, + { "id": "overlay_worn_bootstrap", "fg": 618, "rotates": false }, + { "id": "overlay_worn_boxer_briefs", "fg": 627, "rotates": false }, + { "id": "overlay_worn_boxer_shorts", "fg": 627, "rotates": false }, + { "id": "overlay_worn_boxing_gloves", "fg": 628, "rotates": false }, + { "id": "overlay_worn_boy_shorts", "fg": 629, "rotates": false }, + { "id": "overlay_worn_bra", "fg": 630, "rotates": false }, + { "id": "overlay_worn_breeches", "fg": 792, "rotates": false }, + { "id": "overlay_worn_briefcase", "fg": 631, "rotates": false }, + { "id": "overlay_worn_briefs", "fg": 632, "rotates": false }, + { "id": "overlay_worn_bronze_medal", "fg": 893, "rotates": false }, + { "id": "overlay_worn_bscabbard", "fg": 633, "rotates": false }, + { "id": "overlay_worn_bunker_coat", "fg": 634, "rotates": false }, + { "id": "overlay_worn_bunker_pants", "fg": 635, "rotates": false }, + { "id": "overlay_worn_camisole", "fg": 637, "rotates": false }, + { "id": "overlay_worn_case_violin", "fg": 584, "rotates": false }, + { "id": "overlay_worn_cassock", "fg": 638, "rotates": false }, + { "id": [ "overlay_worn_fur_cat_ears", "overlay_worn_faux_fur_cat_ears" ], "fg": 911, "rotates": false }, + { "id": "overlay_worn_chainmail_arms", "fg": 639, "rotates": false }, + { "id": "overlay_worn_chainmail_hauberk", "fg": 643, "rotates": false }, + { "id": "overlay_worn_chainmail_hood", "fg": 640, "rotates": false }, + { "id": "overlay_worn_chainmail_legs", "fg": 641, "rotates": false }, + { "id": "overlay_worn_chainmail_suit", "fg": 642, "rotates": false }, + { "id": "overlay_worn_chainmail_vest", "fg": 643, "rotates": false }, + { "id": "overlay_worn_chaps_leather", "fg": 644, "rotates": false }, + { "id": "overlay_worn_chestrig", "fg": 871, "rotates": false }, + { "id": "overlay_worn_chestwrap", "fg": 645, "rotates": false }, + { "id": "overlay_worn_chestwrap_fur", "fg": 645, "rotates": false }, + { "id": "overlay_worn_chestwrap_leather", "fg": 645, "rotates": false }, + { "id": "overlay_worn_chestwrap_wool", "fg": 645, "rotates": false }, + { "id": "overlay_worn_cleansuit", "fg": 646, "rotates": false }, + { "id": "overlay_worn_cleats", "fg": 830, "rotates": false }, + { "id": "overlay_worn_cloak", "fg": 647, "rotates": false }, + { "id": "overlay_worn_cloak_bless", "fg": 652, "rotates": false }, + { "id": "overlay_worn_cloak_fur", "fg": 810, "rotates": false }, + { "id": "overlay_worn_cloak_leather", "fg": 810, "rotates": false }, + { "id": "overlay_worn_cloak_wool", "fg": 786, "rotates": false }, + { "id": "overlay_worn_clogs", "fg": 648, "rotates": false }, + { "id": "overlay_worn_clown_suit", "fg": 650, "rotates": false }, + { "id": "overlay_worn_clownshoes", "fg": 649, "rotates": false }, + { "id": "overlay_worn_coat_fur", "fg": 651, "rotates": false }, + { "id": "overlay_worn_coat_fur_sf", "fg": 651, "rotates": false }, + { "id": "overlay_worn_coat_lab", "fg": 652, "rotates": false }, + { "id": "overlay_worn_coat_rain", "fg": 653, "rotates": false }, + { "id": "overlay_worn_coat_winter", "fg": 654, "rotates": false }, + { "id": "overlay_worn_copper_locket", "fg": 894, "rotates": false }, + { "id": "overlay_worn_copper_necklace", "fg": 895, "rotates": false }, + { "id": [ "overlay_worn_copper_ring", "overlay_worn_mring_copper" ], "fg": 896, "rotates": false }, + { "id": "overlay_worn_corset", "fg": 655, "rotates": false }, + { "id": "overlay_worn_cowboy_hat", "fg": 656, "rotates": false }, + { "id": "overlay_worn_cowl_wool", "fg": 718, "rotates": false }, + { "id": [ "overlay_worn_crown_golden", "overlay_worn_crown_golden_survivor" ], "fg": 583, "rotates": false }, + { "id": "overlay_worn_dance_shoes", "fg": 694, "rotates": false }, + { "id": "overlay_worn_depowered_armor", "fg": 801, "rotates": false }, + { "id": "overlay_worn_depowered_helmet", "fg": 657, "rotates": false }, + { "id": "overlay_worn_dinosuit", "fg": 658, "rotates": false }, + { "id": "overlay_worn_dive_bag", "fg": 659, "rotates": false }, + { "id": "overlay_worn_diving_watch", "fg": 901, "rotates": false }, + { "id": "overlay_worn_down_blanket", "fg": 611, "rotates": false }, + { "id": "overlay_worn_dragonskin", "fg": 902, "rotates": false }, + { "id": "overlay_worn_dress", "fg": 660, "rotates": false }, + { "id": "overlay_worn_dress_bless", "fg": 661, "rotates": false }, + { "id": "overlay_worn_dress_shoes", "fg": 817, "rotates": false }, + { "id": "overlay_worn_dress_shoes_air", "fg": 694, "rotates": false }, + { "id": "overlay_worn_dress_skirt", "fg": 823, "rotates": false }, + { "id": "overlay_worn_dress_wedding", "fg": 661, "rotates": false }, + { "id": "overlay_worn_duffelbag", "fg": 844, "rotates": false }, + { "id": "overlay_worn_duster", "fg": 662, "rotates": false }, + { "id": "overlay_worn_duster_fur", "fg": 662, "rotates": false }, + { "id": "overlay_worn_duster_leather", "fg": 662, "rotates": false }, + { "id": "overlay_worn_duster_survivor", "fg": 663, "rotates": false }, + { "id": "overlay_worn_e_handcuffs", "fg": 470, "rotates": false }, { "id": [ "overlay_worn_silver_ear", "overlay_worn_platinum_ear", "overlay_worn_pearl_ear" ], - "fg": 921, + "fg": 928, "rotates": false }, - { "id": "overlay_worn_elbow_pads", "fg": 657, "rotates": false }, - { "id": "overlay_worn_emer_blanket", "fg": 604, "rotates": false }, - { "id": "overlay_worn_emer_blanket_on", "fg": 604, "rotates": false }, - { "id": "overlay_worn_entry_suit", "fg": 897, "rotates": false }, - { "id": "overlay_worn_fancy_bra", "fg": 623, "rotates": false }, - { "id": "overlay_worn_fancy_sunglasses", "fg": 834, "rotates": false }, - { "id": "overlay_worn_fencing_jacket", "fg": 902, "rotates": false }, - { "id": "overlay_worn_fencing_mask", "fg": 903, "rotates": false }, - { "id": "overlay_worn_fencing_pants", "fg": 658, "rotates": false }, - { "id": "overlay_worn_fire_gauntlets", "fg": 669, "rotates": false }, - { "id": "overlay_worn_fireman_belt", "fg": 836, "rotates": false }, - { "id": "overlay_worn_fishing_waders", "fg": 659, "rotates": false }, - { "id": "overlay_worn_fitover_sunglasses", "fg": 834, "rotates": false }, - { "id": "overlay_worn_flag_shirt", "fg": 660, "rotates": false }, - { "id": "overlay_worn_flip_flops", "fg": 661, "rotates": false }, - { "id": [ "overlay_worn_flotation_vest", "overlay_worn_flotation_vest_ms" ], "fg": 722, "rotates": false }, - { "id": "overlay_worn_folding_poncho_on", "fg": 519, "rotates": false }, - { "id": "overlay_worn_football_armor", "fg": 662, "rotates": false }, - { "id": "overlay_worn_footrags", "fg": 663, "rotates": false }, - { "id": "overlay_worn_footrags_fur", "fg": 824, "rotates": false }, - { "id": "overlay_worn_footrags_leather", "fg": 777, "rotates": false }, - { "id": "overlay_worn_footrags_wool", "fg": 824, "rotates": false }, - { "id": "overlay_worn_fsurvivor_suit", "fg": 778, "rotates": false }, - { "id": "overlay_worn_fur_blanket", "fg": 604, "rotates": false }, + { "id": "overlay_worn_elbow_pads", "fg": 664, "rotates": false }, + { "id": "overlay_worn_emer_blanket", "fg": 611, "rotates": false }, + { "id": "overlay_worn_emer_blanket_on", "fg": 611, "rotates": false }, + { "id": "overlay_worn_entry_suit", "fg": 904, "rotates": false }, + { "id": "overlay_worn_fancy_bra", "fg": 630, "rotates": false }, + { "id": "overlay_worn_fancy_sunglasses", "fg": 841, "rotates": false }, + { "id": "overlay_worn_fencing_jacket", "fg": 909, "rotates": false }, + { "id": "overlay_worn_fencing_mask", "fg": 910, "rotates": false }, + { "id": "overlay_worn_fencing_pants", "fg": 665, "rotates": false }, + { "id": "overlay_worn_fire_gauntlets", "fg": 676, "rotates": false }, + { "id": "overlay_worn_fireman_belt", "fg": 843, "rotates": false }, + { "id": "overlay_worn_fishing_waders", "fg": 666, "rotates": false }, + { "id": "overlay_worn_fitover_sunglasses", "fg": 841, "rotates": false }, + { "id": "overlay_worn_flag_shirt", "fg": 667, "rotates": false }, + { "id": "overlay_worn_flip_flops", "fg": 668, "rotates": false }, + { "id": [ "overlay_worn_flotation_vest", "overlay_worn_flotation_vest_ms" ], "fg": 729, "rotates": false }, + { "id": "overlay_worn_folding_poncho_on", "fg": 526, "rotates": false }, + { "id": "overlay_worn_football_armor", "fg": 669, "rotates": false }, + { "id": "overlay_worn_footrags", "fg": 670, "rotates": false }, + { "id": "overlay_worn_footrags_fur", "fg": 831, "rotates": false }, + { "id": "overlay_worn_footrags_leather", "fg": 784, "rotates": false }, + { "id": "overlay_worn_footrags_wool", "fg": 831, "rotates": false }, + { "id": "overlay_worn_fsurvivor_suit", "fg": 785, "rotates": false }, + { "id": "overlay_worn_fur_blanket", "fg": 611, "rotates": false }, { "id": "overlay_female_worn_fur_cat_ears", "fg": 144, "rotates": false }, { "id": "overlay_male_worn_fur_cat_ears", "fg": 169, "rotates": false }, - { "id": "overlay_worn_gambeson", "fg": 860, "rotates": false }, - { "id": "overlay_worn_gauntlets_acidchitin", "fg": 574, "rotates": false }, - { "id": "overlay_worn_gauntlets_chitin", "fg": 670, "rotates": false }, - { "id": "overlay_worn_gauntlets_larmor", "fg": 670, "rotates": false }, - { "id": "overlay_worn_geta", "fg": 822, "rotates": false }, - { "id": "overlay_worn_glasses_bal", "fg": 674, "rotates": false }, - { "id": "overlay_worn_glasses_monocle", "fg": 665, "rotates": false }, - { "id": [ "overlay_worn_glasses_safety" ], "fg": 666, "rotates": false }, - { "id": "overlay_worn_glove_jackson", "fg": 672, "rotates": false }, - { "id": "overlay_worn_gloves_bag", "fg": 667, "rotates": false }, - { "id": "overlay_worn_gloves_fingerless", "fg": 668, "rotates": false }, - { "id": "overlay_worn_gloves_fingerless_mod", "fg": 668, "rotates": false }, - { "id": "overlay_worn_gloves_fsurvivor", "fg": 669, "rotates": false }, - { "id": "overlay_worn_gloves_fur", "fg": 670, "rotates": false }, - { "id": "overlay_worn_gloves_h20survivor", "fg": 671, "rotates": false }, - { "id": "overlay_worn_gloves_hsurvivor", "fg": 671, "rotates": false }, - { "id": "overlay_worn_gloves_leather", "fg": 670, "rotates": false }, - { "id": "overlay_worn_gloves_light", "fg": 672, "rotates": false }, - { "id": "overlay_worn_gloves_liner", "fg": 672, "rotates": false }, - { "id": "overlay_worn_gloves_lsurvivor", "fg": 671, "rotates": false }, - { "id": "overlay_worn_gloves_medical", "fg": 672, "rotates": false }, - { "id": "overlay_worn_gloves_plate", "fg": 672, "rotates": false }, - { "id": "overlay_worn_gloves_survivor", "fg": 671, "rotates": false }, - { "id": "overlay_worn_gloves_tactical", "fg": 671, "rotates": false }, - { "id": "overlay_worn_gloves_winter", "fg": 671, "rotates": false }, - { "id": "overlay_worn_gloves_wool", "fg": 672, "rotates": false }, - { "id": "overlay_worn_gloves_work", "fg": 673, "rotates": false }, - { "id": "overlay_worn_gloves_wraps", "fg": 672, "rotates": false }, - { "id": "overlay_worn_gloves_wraps_fur", "fg": 670, "rotates": false }, - { "id": "overlay_worn_gloves_wraps_leather", "fg": 670, "rotates": false }, - { "id": "overlay_worn_gloves_wraps_wool", "fg": 672, "rotates": false }, - { "id": "overlay_worn_gloves_wsurvivor", "fg": 671, "rotates": false }, - { "id": "overlay_worn_gloves_xlsurvivor", "fg": 671, "rotates": false }, - { "id": "overlay_worn_gobag", "fg": 837, "rotates": false }, - { "id": "overlay_worn_goggles_ir", "fg": 520, "rotates": false }, - { "id": "overlay_worn_goggles_ir_on", "fg": 521, "rotates": false }, - { "id": "overlay_worn_goggles_nv", "fg": 522, "rotates": false }, - { "id": "overlay_worn_goggles_nv_clairvoyance", "fg": 523, "rotates": false }, - { "id": "overlay_worn_goggles_nv_on", "fg": 524, "rotates": false }, - { "id": "overlay_worn_goggles_ski", "fg": 674, "rotates": false }, - { "id": "overlay_worn_goggles_swim", "fg": 674, "rotates": false }, - { "id": "overlay_worn_goggles_welding", "fg": 675, "rotates": false }, - { "id": "overlay_worn_gold_dental_grill", "fg": 571, "rotates": false }, - { "id": "overlay_worn_gold_locket", "fg": 913, "rotates": false }, - { "id": "overlay_worn_gold_medal", "fg": 914, "rotates": false }, - { "id": "overlay_worn_gold_necklace", "fg": 915, "rotates": false }, - { "id": [ "overlay_worn_gold_ring", "overlay_worn_mring_gold" ], "fg": 916, "rotates": false }, - { "id": "overlay_worn_gown", "fg": 653, "rotates": false }, - { "id": "overlay_worn_greatcoat", "fg": 676, "rotates": false }, - { "id": "overlay_worn_h20survivor_suit", "fg": 715, "rotates": false }, - { "id": "overlay_worn_hakama_gi", "fg": 677, "rotates": false }, - { "id": "overlay_worn_halter_top", "fg": 678, "rotates": false }, - { "id": "overlay_worn_harmonica_holder", "fg": 525, "rotates": false }, - { "id": "overlay_worn_hat_ball", "fg": 679, "rotates": false }, - { "id": "overlay_worn_hat_boonie", "fg": 680, "rotates": false }, - { "id": "overlay_worn_hat_cotton", "fg": 683, "rotates": false }, - { "id": "overlay_worn_hat_fur", "fg": 681, "rotates": false }, - { "id": "overlay_worn_hat_hunting", "fg": 682, "rotates": false }, - { "id": "overlay_worn_hat_knit", "fg": 683, "rotates": false }, - { "id": "overlay_worn_hat_newsboy", "fg": 684, "rotates": false }, - { "id": "overlay_worn_hat_noise_cancelling", "fg": 685, "rotates": false }, - { "id": "overlay_worn_hazmat_suit", "fg": 581, "rotates": false }, - { "id": "overlay_worn_headgear", "fg": 686, "rotates": false }, - { "id": "overlay_worn_heels", "fg": 687, "rotates": false }, - { "id": "overlay_worn_helmet_acidchitin", "fg": 569, "rotates": false }, - { "id": "overlay_worn_helmet_army", "fg": 688, "rotates": false }, - { "id": "overlay_worn_helmet_ball", "fg": 689, "rotates": false }, - { "id": "overlay_worn_helmet_barbute", "fg": 690, "rotates": false }, - { "id": "overlay_worn_helmet_bike", "fg": 691, "rotates": false }, - { "id": "overlay_worn_helmet_chitin", "fg": 692, "rotates": false }, - { "id": "overlay_worn_helmet_conical", "fg": 690, "rotates": false }, - { "id": "overlay_worn_helmet_corinthian", "fg": 690, "rotates": false }, - { "id": "overlay_worn_helmet_football", "fg": 693, "rotates": false }, - { "id": "overlay_worn_helmet_galea", "fg": 633, "rotates": false }, - { "id": "overlay_worn_helmet_hsurvivor", "fg": 694, "rotates": false }, - { "id": "overlay_worn_helmet_larmor", "fg": 695, "rotates": false }, - { "id": "overlay_worn_helmet_liner", "fg": 709, "rotates": false }, - { "id": "overlay_worn_helmet_lobster", "fg": 696, "rotates": false }, - { "id": "overlay_worn_helmet_motor", "fg": 697, "rotates": false }, - { "id": "overlay_worn_helmet_nasal", "fg": 633, "rotates": false }, - { "id": "overlay_worn_helmet_nomad", "fg": 698, "rotates": false }, - { "id": "overlay_worn_helmet_plate", "fg": 699, "rotates": false }, - { "id": "overlay_worn_helmet_riot", "fg": 700, "rotates": false }, - { "id": "overlay_worn_helmet_scavenger", "fg": 701, "rotates": false }, - { "id": "overlay_worn_helmet_skid", "fg": 702, "rotates": false }, - { "id": "overlay_worn_helmet_survivor", "fg": 703, "rotates": false }, - { "id": "overlay_worn_helmet_xlsurvivor", "fg": 704, "rotates": false }, - { "id": "overlay_worn_hmil_armor", "fg": 705, "rotates": false }, - { "id": "overlay_worn_holo_cloak", "fg": 551, "rotates": false }, - { "id": "overlay_worn_holster", "fg": 706, "rotates": false }, - { "id": "overlay_worn_hood_fsurvivor", "fg": 708, "rotates": false }, - { "id": "overlay_worn_hood_h20survivor", "fg": 709, "rotates": false }, - { "id": "overlay_worn_hood_lsurvivor", "fg": 710, "rotates": false }, - { "id": "overlay_worn_hood_rain", "fg": 709, "rotates": false }, - { "id": "overlay_worn_hood_survivor", "fg": 710, "rotates": false }, - { "id": "overlay_worn_hood_wsurvivor", "fg": 711, "rotates": false }, - { "id": "overlay_worn_hood_xlsurvivor", "fg": 710, "rotates": false }, - { "id": "overlay_worn_hoodie", "fg": 707, "rotates": false }, - { "id": "overlay_worn_hot_pants", "fg": 712, "rotates": false }, - { "id": "overlay_worn_hot_pants_fur", "fg": 712, "rotates": false }, - { "id": "overlay_worn_hot_pants_leather", "fg": 713, "rotates": false }, - { "id": "overlay_worn_house_coat", "fg": 714, "rotates": false }, - { "id": "overlay_worn_hsurvivor_suit", "fg": 715, "rotates": false }, - { "id": "overlay_worn_iggaak", "fg": 834, "rotates": false }, - { "id": "overlay_worn_jacket_army", "fg": 716, "rotates": false }, - { "id": "overlay_worn_jacket_chef", "fg": 717, "rotates": false }, - { "id": "overlay_worn_jacket_evac", "fg": 718, "rotates": false }, - { "id": "overlay_worn_jacket_flannel", "fg": 719, "rotates": false }, - { "id": "overlay_worn_jacket_jean", "fg": 720, "rotates": false }, - { "id": "overlay_worn_jacket_leather", "fg": 721, "rotates": false }, - { "id": "overlay_worn_jacket_leather_mod", "fg": 721, "rotates": false }, - { "id": "overlay_worn_jacket_leather_red", "fg": 722, "rotates": false }, - { "id": "overlay_worn_jacket_light", "fg": 723, "rotates": false }, - { "id": "overlay_worn_jacket_windbreaker", "fg": 724, "rotates": false }, - { "id": "overlay_worn_jade_brooch", "fg": 919, "rotates": false }, - { "id": "overlay_worn_jeans", "fg": 725, "rotates": false }, - { "id": "overlay_worn_jeans_red", "fg": 726, "rotates": false }, - { "id": "overlay_worn_jedi_cloak", "fg": 727, "rotates": false }, - { "id": "overlay_worn_jerrypack", "fg": 728, "rotates": false }, - { "id": "overlay_worn_jersey", "fg": 729, "rotates": false }, - { "id": "overlay_worn_judo_belt_black", "fg": 739, "rotates": false }, - { "id": "overlay_worn_judo_belt_blue", "fg": 739, "rotates": false }, - { "id": "overlay_worn_judo_belt_brown", "fg": 739, "rotates": false }, - { "id": "overlay_worn_judo_belt_green", "fg": 739, "rotates": false }, - { "id": "overlay_worn_judo_belt_orange", "fg": 739, "rotates": false }, - { "id": "overlay_worn_judo_belt_white", "fg": 739, "rotates": false }, - { "id": "overlay_worn_judo_belt_yellow", "fg": 739, "rotates": false }, - { "id": "overlay_worn_judo_gi", "fg": 730, "rotates": false }, - { "id": "overlay_worn_karate_gi", "fg": 730, "rotates": false }, - { "id": "overlay_worn_kariginu", "fg": 731, "rotates": false }, - { "id": "overlay_worn_keffiyeh", "fg": 763, "rotates": false }, - { "id": "overlay_worn_keikogi", "fg": 732, "rotates": false }, - { "id": "overlay_worn_kevlar", "fg": 895, "rotates": false }, - { "id": "overlay_worn_kilt", "fg": 815, "rotates": false }, - { "id": "overlay_worn_kimono", "fg": 733, "rotates": false }, - { "id": "overlay_worn_kippah", "fg": 734, "rotates": false }, - { "id": "overlay_worn_kittel", "fg": 735, "rotates": false }, - { "id": "overlay_worn_knee_high_boots", "fg": 736, "rotates": false }, - { "id": "overlay_worn_knee_pads", "fg": 737, "rotates": false }, - { "id": "overlay_worn_knit_scarf", "fg": 526, "rotates": false }, - { "id": "overlay_worn_knit_scarf_loose", "fg": 526, "rotates": false }, - { "id": "overlay_worn_kufi", "fg": 738, "rotates": false }, - { "id": "overlay_worn_leather_belt", "fg": 739, "rotates": false }, + { "id": "overlay_worn_gambeson", "fg": 867, "rotates": false }, + { "id": "overlay_worn_gauntlets_acidchitin", "fg": 581, "rotates": false }, + { "id": "overlay_worn_gauntlets_chitin", "fg": 677, "rotates": false }, + { "id": "overlay_worn_gauntlets_larmor", "fg": 677, "rotates": false }, + { "id": "overlay_worn_geta", "fg": 829, "rotates": false }, + { "id": "overlay_worn_glasses_bal", "fg": 681, "rotates": false }, + { "id": "overlay_worn_glasses_monocle", "fg": 672, "rotates": false }, + { "id": [ "overlay_worn_glasses_safety" ], "fg": 673, "rotates": false }, + { "id": "overlay_worn_glove_jackson", "fg": 679, "rotates": false }, + { "id": "overlay_worn_gloves_bag", "fg": 674, "rotates": false }, + { "id": "overlay_worn_gloves_fingerless", "fg": 675, "rotates": false }, + { "id": "overlay_worn_gloves_fingerless_mod", "fg": 675, "rotates": false }, + { "id": "overlay_worn_gloves_fsurvivor", "fg": 676, "rotates": false }, + { "id": "overlay_worn_gloves_fur", "fg": 677, "rotates": false }, + { "id": "overlay_worn_gloves_h20survivor", "fg": 678, "rotates": false }, + { "id": "overlay_worn_gloves_hsurvivor", "fg": 678, "rotates": false }, + { "id": "overlay_worn_gloves_leather", "fg": 677, "rotates": false }, + { "id": "overlay_worn_gloves_light", "fg": 679, "rotates": false }, + { "id": "overlay_worn_gloves_liner", "fg": 679, "rotates": false }, + { "id": "overlay_worn_gloves_lsurvivor", "fg": 678, "rotates": false }, + { "id": "overlay_worn_gloves_medical", "fg": 679, "rotates": false }, + { "id": "overlay_worn_gloves_plate", "fg": 679, "rotates": false }, + { "id": "overlay_worn_gloves_survivor", "fg": 678, "rotates": false }, + { "id": "overlay_worn_gloves_tactical", "fg": 678, "rotates": false }, + { "id": "overlay_worn_gloves_winter", "fg": 678, "rotates": false }, + { "id": "overlay_worn_gloves_wool", "fg": 679, "rotates": false }, + { "id": "overlay_worn_gloves_work", "fg": 680, "rotates": false }, + { "id": "overlay_worn_gloves_wraps", "fg": 679, "rotates": false }, + { "id": "overlay_worn_gloves_wraps_fur", "fg": 677, "rotates": false }, + { "id": "overlay_worn_gloves_wraps_leather", "fg": 677, "rotates": false }, + { "id": "overlay_worn_gloves_wraps_wool", "fg": 679, "rotates": false }, + { "id": "overlay_worn_gloves_wsurvivor", "fg": 678, "rotates": false }, + { "id": "overlay_worn_gloves_xlsurvivor", "fg": 678, "rotates": false }, + { "id": "overlay_worn_gobag", "fg": 844, "rotates": false }, + { "id": "overlay_worn_goggles_ir", "fg": 527, "rotates": false }, + { "id": "overlay_worn_goggles_ir_on", "fg": 528, "rotates": false }, + { "id": "overlay_worn_goggles_nv", "fg": 529, "rotates": false }, + { "id": "overlay_worn_goggles_nv_clairvoyance", "fg": 530, "rotates": false }, + { "id": "overlay_worn_goggles_nv_on", "fg": 531, "rotates": false }, + { "id": "overlay_worn_goggles_ski", "fg": 681, "rotates": false }, + { "id": "overlay_worn_goggles_swim", "fg": 681, "rotates": false }, + { "id": "overlay_worn_goggles_welding", "fg": 682, "rotates": false }, + { "id": "overlay_worn_gold_dental_grill", "fg": 578, "rotates": false }, + { "id": "overlay_worn_gold_locket", "fg": 920, "rotates": false }, + { "id": "overlay_worn_gold_medal", "fg": 921, "rotates": false }, + { "id": "overlay_worn_gold_necklace", "fg": 922, "rotates": false }, + { "id": [ "overlay_worn_gold_ring", "overlay_worn_mring_gold" ], "fg": 923, "rotates": false }, + { "id": "overlay_worn_gown", "fg": 660, "rotates": false }, + { "id": "overlay_worn_greatcoat", "fg": 683, "rotates": false }, + { "id": "overlay_worn_h20survivor_suit", "fg": 722, "rotates": false }, + { "id": "overlay_worn_hakama_gi", "fg": 684, "rotates": false }, + { "id": "overlay_worn_halter_top", "fg": 685, "rotates": false }, + { "id": "overlay_worn_harmonica_holder", "fg": 532, "rotates": false }, + { "id": "overlay_worn_hat_ball", "fg": 686, "rotates": false }, + { "id": "overlay_worn_hat_boonie", "fg": 687, "rotates": false }, + { "id": "overlay_worn_hat_cotton", "fg": 690, "rotates": false }, + { "id": "overlay_worn_hat_fur", "fg": 688, "rotates": false }, + { "id": "overlay_worn_hat_hunting", "fg": 689, "rotates": false }, + { "id": "overlay_worn_hat_knit", "fg": 690, "rotates": false }, + { "id": "overlay_worn_hat_newsboy", "fg": 691, "rotates": false }, + { "id": "overlay_worn_hat_noise_cancelling", "fg": 692, "rotates": false }, + { "id": "overlay_worn_hazmat_suit", "fg": 588, "rotates": false }, + { "id": "overlay_worn_headgear", "fg": 693, "rotates": false }, + { "id": "overlay_worn_heels", "fg": 694, "rotates": false }, + { "id": "overlay_worn_helmet_acidchitin", "fg": 576, "rotates": false }, + { "id": "overlay_worn_helmet_army", "fg": 695, "rotates": false }, + { "id": "overlay_worn_helmet_ball", "fg": 696, "rotates": false }, + { "id": "overlay_worn_helmet_barbute", "fg": 697, "rotates": false }, + { "id": "overlay_worn_helmet_bike", "fg": 698, "rotates": false }, + { "id": "overlay_worn_helmet_chitin", "fg": 699, "rotates": false }, + { "id": "overlay_worn_helmet_conical", "fg": 697, "rotates": false }, + { "id": "overlay_worn_helmet_corinthian", "fg": 697, "rotates": false }, + { "id": "overlay_worn_helmet_football", "fg": 700, "rotates": false }, + { "id": "overlay_worn_helmet_galea", "fg": 640, "rotates": false }, + { "id": "overlay_worn_helmet_hsurvivor", "fg": 701, "rotates": false }, + { "id": "overlay_worn_helmet_larmor", "fg": 702, "rotates": false }, + { "id": "overlay_worn_helmet_liner", "fg": 716, "rotates": false }, + { "id": "overlay_worn_helmet_lobster", "fg": 703, "rotates": false }, + { "id": "overlay_worn_helmet_motor", "fg": 704, "rotates": false }, + { "id": "overlay_worn_helmet_nasal", "fg": 640, "rotates": false }, + { "id": "overlay_worn_helmet_nomad", "fg": 705, "rotates": false }, + { "id": "overlay_worn_helmet_plate", "fg": 706, "rotates": false }, + { "id": "overlay_worn_helmet_riot", "fg": 707, "rotates": false }, + { "id": "overlay_worn_helmet_scavenger", "fg": 708, "rotates": false }, + { "id": "overlay_worn_helmet_skid", "fg": 709, "rotates": false }, + { "id": "overlay_worn_helmet_survivor", "fg": 710, "rotates": false }, + { "id": "overlay_worn_helmet_xlsurvivor", "fg": 711, "rotates": false }, + { "id": "overlay_worn_hmil_armor", "fg": 712, "rotates": false }, + { "id": "overlay_worn_holo_cloak", "fg": 558, "rotates": false }, + { "id": "overlay_worn_holster", "fg": 713, "rotates": false }, + { "id": "overlay_worn_hood_fsurvivor", "fg": 715, "rotates": false }, + { "id": "overlay_worn_hood_h20survivor", "fg": 716, "rotates": false }, + { "id": "overlay_worn_hood_lsurvivor", "fg": 717, "rotates": false }, + { "id": "overlay_worn_hood_rain", "fg": 716, "rotates": false }, + { "id": "overlay_worn_hood_survivor", "fg": 717, "rotates": false }, + { "id": "overlay_worn_hood_wsurvivor", "fg": 718, "rotates": false }, + { "id": "overlay_worn_hood_xlsurvivor", "fg": 717, "rotates": false }, + { "id": "overlay_worn_hoodie", "fg": 714, "rotates": false }, + { "id": "overlay_worn_hot_pants", "fg": 719, "rotates": false }, + { "id": "overlay_worn_hot_pants_fur", "fg": 719, "rotates": false }, + { "id": "overlay_worn_hot_pants_leather", "fg": 720, "rotates": false }, + { "id": "overlay_worn_house_coat", "fg": 721, "rotates": false }, + { "id": "overlay_worn_hsurvivor_suit", "fg": 722, "rotates": false }, + { "id": "overlay_worn_iggaak", "fg": 841, "rotates": false }, + { "id": "overlay_worn_jacket_army", "fg": 723, "rotates": false }, + { "id": "overlay_worn_jacket_chef", "fg": 724, "rotates": false }, + { "id": "overlay_worn_jacket_evac", "fg": 725, "rotates": false }, + { "id": "overlay_worn_jacket_flannel", "fg": 726, "rotates": false }, + { "id": "overlay_worn_jacket_jean", "fg": 727, "rotates": false }, + { "id": "overlay_worn_jacket_leather", "fg": 728, "rotates": false }, + { "id": "overlay_worn_jacket_leather_mod", "fg": 728, "rotates": false }, + { "id": "overlay_worn_jacket_leather_red", "fg": 729, "rotates": false }, + { "id": "overlay_worn_jacket_light", "fg": 730, "rotates": false }, + { "id": "overlay_worn_jacket_windbreaker", "fg": 731, "rotates": false }, + { "id": "overlay_worn_jade_brooch", "fg": 926, "rotates": false }, + { "id": "overlay_worn_jeans", "fg": 732, "rotates": false }, + { "id": "overlay_worn_jeans_red", "fg": 733, "rotates": false }, + { "id": "overlay_worn_jedi_cloak", "fg": 734, "rotates": false }, + { "id": "overlay_worn_jerrypack", "fg": 735, "rotates": false }, + { "id": "overlay_worn_jersey", "fg": 736, "rotates": false }, + { "id": "overlay_worn_judo_belt_black", "fg": 746, "rotates": false }, + { "id": "overlay_worn_judo_belt_blue", "fg": 746, "rotates": false }, + { "id": "overlay_worn_judo_belt_brown", "fg": 746, "rotates": false }, + { "id": "overlay_worn_judo_belt_green", "fg": 746, "rotates": false }, + { "id": "overlay_worn_judo_belt_orange", "fg": 746, "rotates": false }, + { "id": "overlay_worn_judo_belt_white", "fg": 746, "rotates": false }, + { "id": "overlay_worn_judo_belt_yellow", "fg": 746, "rotates": false }, + { "id": "overlay_worn_judo_gi", "fg": 737, "rotates": false }, + { "id": "overlay_worn_karate_gi", "fg": 737, "rotates": false }, + { "id": "overlay_worn_kariginu", "fg": 738, "rotates": false }, + { "id": "overlay_worn_keffiyeh", "fg": 770, "rotates": false }, + { "id": "overlay_worn_keikogi", "fg": 739, "rotates": false }, + { "id": "overlay_worn_kevlar", "fg": 902, "rotates": false }, + { "id": "overlay_worn_kilt", "fg": 822, "rotates": false }, + { "id": "overlay_worn_kimono", "fg": 740, "rotates": false }, + { "id": "overlay_worn_kippah", "fg": 741, "rotates": false }, + { "id": "overlay_worn_kittel", "fg": 742, "rotates": false }, + { "id": "overlay_worn_knee_high_boots", "fg": 743, "rotates": false }, + { "id": "overlay_worn_knee_pads", "fg": 744, "rotates": false }, + { "id": "overlay_worn_knit_scarf", "fg": 533, "rotates": false }, + { "id": "overlay_worn_knit_scarf_loose", "fg": 533, "rotates": false }, + { "id": "overlay_worn_kufi", "fg": 745, "rotates": false }, + { "id": "overlay_worn_leather_belt", "fg": 746, "rotates": false }, { "id": "overlay_female_worn_leather_cat_ears", "fg": 144, "rotates": false }, { "id": "overlay_male_worn_leather_cat_ears", "fg": 169, "rotates": false }, - { "id": "overlay_worn_leather_cat_tail", "fg": 664, "rotates": false }, - { "id": "overlay_worn_leather_pouch", "fg": 511, "rotates": false }, - { "id": "overlay_worn_leathersandals", "fg": 661, "rotates": false }, - { "id": "overlay_worn_leg_splint", "fg": 743, "rotates": false }, - { "id": "overlay_worn_leg_warmers", "fg": 744, "rotates": false }, - { "id": "overlay_worn_leg_warmers_f", "fg": 744, "rotates": false }, - { "id": "overlay_worn_leg_warmers_xl", "fg": 744, "rotates": false }, - { "id": "overlay_worn_leg_warmers_xlf", "fg": 744, "rotates": false }, - { "id": "overlay_worn_leggings", "fg": 856, "rotates": false }, - { "id": "overlay_worn_legguard_bronze", "fg": 741, "rotates": false }, - { "id": "overlay_worn_legguard_hard", "fg": 740, "rotates": false }, - { "id": [ "overlay_worn_legguard_metal", "overlay_worn_legguard_lightplate" ], "fg": 741, "rotates": false }, - { "id": "overlay_worn_legguard_paper", "fg": 742, "rotates": false }, - { "id": "overlay_worn_legrig", "fg": 836, "rotates": false }, - { "id": "overlay_worn_lmil_armor", "fg": 745, "rotates": false }, - { "id": "overlay_worn_loincloth", "fg": 746, "rotates": false }, - { "id": "overlay_worn_loincloth_fur", "fg": 746, "rotates": false }, - { "id": "overlay_worn_loincloth_leather", "fg": 746, "rotates": false }, - { "id": "overlay_worn_loincloth_wool", "fg": 746, "rotates": false }, - { "id": "overlay_worn_long_glove_white", "fg": 747, "rotates": false }, - { "id": "overlay_worn_long_knit_scarf", "fg": 527, "rotates": false }, - { "id": "overlay_worn_long_knit_scarf_loose", "fg": 527, "rotates": false }, - { "id": "overlay_worn_long_patchwork_scarf", "fg": 528, "rotates": false }, - { "id": "overlay_worn_long_patchwork_scarf_loose", "fg": 528, "rotates": false }, - { "id": "overlay_worn_lowtops", "fg": 748, "rotates": false }, - { "id": "overlay_worn_lsurvivor_armor", "fg": 749, "rotates": false }, - { "id": "overlay_worn_lsurvivor_pants", "fg": 787, "rotates": false }, - { "id": "overlay_worn_lsurvivor_suit", "fg": 839, "rotates": false }, - { "id": "overlay_worn_magbandolier", "fg": 550, "rotates": false }, - { "id": "overlay_worn_maid_dress", "fg": 750, "rotates": false }, - { "id": "overlay_worn_maid_hat", "fg": 751, "rotates": false }, - { "id": "overlay_worn_maid_stockings", "fg": 826, "rotates": false }, - { "id": "overlay_worn_makeshift_knapsack", "fg": 752, "rotates": false }, - { "id": "overlay_worn_makeshift_sling", "fg": 753, "rotates": false }, - { "id": "overlay_worn_mask_bal", "fg": 754, "rotates": false }, - { "id": "overlay_worn_mask_bunker", "fg": 529, "rotates": false }, - { "id": "overlay_worn_mask_bunker_on", "fg": 530, "rotates": false }, - { "id": "overlay_worn_mask_dust", "fg": 755, "rotates": false }, - { "id": "overlay_worn_mask_filter", "fg": 756, "rotates": false }, - { "id": "overlay_worn_mask_fsurvivor", "fg": 757, "rotates": false }, - { "id": "overlay_worn_mask_fsurvivorxl", "fg": 757, "rotates": false }, - { "id": "overlay_worn_mask_gas", "fg": 758, "rotates": false }, - { "id": "overlay_worn_mask_gas_xl", "fg": 758, "rotates": false }, - { "id": "overlay_worn_mask_guy_fawkes", "fg": 759, "rotates": false }, - { "id": "overlay_worn_mask_h20survivor", "fg": 531, "rotates": false }, - { "id": "overlay_worn_mask_h20survivor_on", "fg": 531, "rotates": false }, - { "id": "overlay_worn_mask_h20survivorxl", "fg": 531, "rotates": false }, - { "id": "overlay_worn_mask_h20survivorxl_on", "fg": 531, "rotates": false }, - { "id": "overlay_worn_mask_hockey", "fg": 760, "rotates": false }, - { "id": "overlay_worn_mask_hsurvivor", "fg": 761, "rotates": false }, - { "id": "overlay_worn_mask_lsurvivor", "fg": 762, "rotates": false }, - { "id": "overlay_worn_mask_rioter", "fg": 763, "rotates": false }, - { "id": [ "overlay_worn_mask_ski_loose", "mask_ski_loose" ], "fg": 533, "rotates": false }, - { "id": [ "overlay_worn_mask_ski", "mask_ski" ], "fg": 532, "rotates": false }, - { "id": "overlay_worn_mask_survivor", "fg": 762, "rotates": false }, - { "id": "overlay_worn_mask_survivorxl", "fg": 762, "rotates": false }, - { "id": "overlay_worn_mask_wsurvivor", "fg": 764, "rotates": false }, - { "id": "overlay_worn_mask_wsurvivorxl", "fg": 764, "rotates": false }, - { "id": "overlay_worn_mbag", "fg": 765, "rotates": false }, - { "id": "overlay_worn_megaarmor_armguards_1", "fg": 766, "rotates": false }, - { "id": "overlay_worn_megaarmor_boots_1", "fg": 767, "rotates": false }, - { "id": "overlay_worn_megaarmor_gloves_1", "fg": 768, "rotates": false }, - { "id": "overlay_worn_megaarmor_head_1", "fg": 769, "rotates": false }, - { "id": "overlay_worn_megaarmor_leggings_1", "fg": 770, "rotates": false }, - { "id": "overlay_worn_megaarmor_torso_1", "fg": 771, "rotates": false }, - { "id": "overlay_worn_megaarmor_torso_2", "fg": 772, "rotates": false }, - { "id": "overlay_worn_megaarmor_torso_3", "fg": 534, "rotates": false }, - { "id": "overlay_worn_megaarmor_torso_3_act", "fg": 535, "rotates": false }, - { "id": "overlay_worn_microskirt", "fg": 776, "rotates": false }, - { "id": "overlay_worn_mil_armor", "fg": 773, "rotates": false }, - { "id": "overlay_worn_mittens", "fg": 669, "rotates": false }, - { "id": "overlay_worn_mocassins", "fg": 641, "rotates": false }, - { "id": "overlay_worn_modularvest", "fg": 864, "rotates": false }, - { "id": "overlay_worn_modularvestceramic", "fg": 864, "rotates": false }, - { "id": "overlay_worn_modularvesthard", "fg": 864, "rotates": false }, - { "id": "overlay_worn_modularvestkevlar", "fg": 864, "rotates": false }, - { "id": "overlay_worn_modularveststeel", "fg": 864, "rotates": false }, - { "id": "overlay_worn_modularvestsuper", "fg": 864, "rotates": false }, - { "id": "overlay_worn_molle_pack", "fg": 774, "rotates": false }, - { "id": "overlay_worn_motorbike_armor", "fg": 775, "rotates": false }, - { "id": "overlay_worn_motorbike_boots", "fg": 615, "rotates": false }, - { "id": "overlay_worn_motorbike_pants", "fg": 850, "rotates": false }, - { "id": "overlay_worn_nanoskirt", "fg": 776, "rotates": false }, - { "id": "overlay_worn_nomex_gloves", "fg": 669, "rotates": false }, - { "id": "overlay_worn_nomex_hood", "fg": 709, "rotates": false }, - { "id": "overlay_worn_nomex_socks", "fg": 777, "rotates": false }, - { "id": "overlay_worn_nomex_suit", "fg": 778, "rotates": false }, - { "id": "overlay_worn_obi_gi", "fg": 739, "rotates": false }, - { "id": "overlay_worn_optical_cloak", "fg": 779, "rotates": false }, - { "id": "overlay_worn_panties", "fg": 780, "rotates": false }, - { "id": "overlay_worn_pants", "fg": 781, "rotates": false }, - { "id": "overlay_worn_pants_army", "fg": 782, "rotates": false }, - { "id": "overlay_worn_pants_cargo", "fg": 783, "rotates": false }, - { "id": "overlay_worn_pants_checkered", "fg": 784, "rotates": false }, - { "id": "overlay_worn_pants_fur", "fg": 785, "rotates": false }, - { "id": "overlay_worn_pants_leather", "fg": 785, "rotates": false }, - { "id": "overlay_worn_pants_ski", "fg": 786, "rotates": false }, - { "id": "overlay_worn_pants_survivor", "fg": 787, "rotates": false }, - { "id": "overlay_worn_patchwork_scarf", "fg": 543, "rotates": false }, - { "id": "overlay_worn_patchwork_scarf_loose", "fg": 543, "rotates": false }, - { "id": "overlay_worn_peacoat", "fg": 788, "rotates": false }, - { "id": "overlay_worn_plastic_shopping_bag", "fg": 789, "rotates": false }, - { "id": "overlay_worn_platinum_locket", "fg": 922, "rotates": false }, - { "id": "overlay_worn_platinum_necklace", "fg": 923, "rotates": false }, - { "id": [ "overlay_worn_platinum_ring", "overlay_worn_mring_platinum" ], "fg": 924, "rotates": false }, - { "id": "overlay_worn_poncho", "fg": 790, "rotates": false }, - { "id": "overlay_worn_postman_hat", "fg": 791, "rotates": false }, - { "id": "overlay_worn_postman_shorts", "fg": 792, "rotates": false }, - { "id": "overlay_worn_pot_helmet", "fg": 793, "rotates": false }, - { "id": "overlay_worn_power_armor_basic", "fg": 794, "rotates": false }, - { "id": "overlay_worn_power_armor_heavy", "fg": 795, "rotates": false }, - { "id": "overlay_worn_power_armor_helmet_basic", "fg": 796, "rotates": false }, - { "id": "overlay_worn_power_armor_helmet_heavy", "fg": 797, "rotates": false }, - { "id": "overlay_worn_power_armor_helmet_light", "fg": 798, "rotates": false }, - { "id": "overlay_worn_power_armor_light", "fg": 799, "rotates": false }, - { "id": [ "overlay_worn_powered_earmuffs", "overlay_worn_powered_earmuffs_on" ], "fg": 565 }, - { "id": "overlay_worn_purse", "fg": 800, "rotates": false }, - { "id": "overlay_worn_quiver", "fg": 801, "rotates": false }, - { "id": "overlay_worn_quiver_birchbark", "fg": 801, "rotates": false }, - { "id": "overlay_worn_quiver_large", "fg": 802, "rotates": false }, - { "id": "overlay_worn_quiver_large_birchbark", "fg": 802, "rotates": false }, - { "id": "overlay_worn_rebreather", "fg": 925, "rotates": false }, - { "id": "overlay_worn_rebreather_xl", "fg": 925, "rotates": false }, - { "id": "overlay_worn_revenant_crown", "fg": 536, "rotates": false }, - { "id": [ "overlay_worn_diamond_ring", "overlay_worn_ring_wedding" ], "fg": 891, "rotates": false }, - { "id": [ "overlay_worn_ring_engagement" ], "fg": 926, "rotates": false }, - { "id": "overlay_worn_ring_purity", "fg": 927, "rotates": false }, - { "id": "overlay_worn_ring_signet", "fg": 928, "rotates": false }, - { "id": "overlay_worn_rm13_armor", "fg": 549, "rotates": false }, - { "id": "overlay_worn_rm13_armor_on", "fg": 537, "rotates": false }, - { "id": "overlay_worn_robe", "fg": 803, "rotates": false }, - { "id": "overlay_worn_roller_blades", "fg": 804, "rotates": false }, - { "id": "overlay_worn_rollerskates", "fg": 804, "rotates": false }, - { "id": "overlay_worn_rucksack", "fg": 805, "rotates": false }, - { "id": "overlay_worn_runner_bag", "fg": 806, "rotates": false }, - { "id": "overlay_worn_sac_purse", "fg": 538, "rotates": false }, - { "id": "overlay_worn_sac_purse_arm", "fg": 539, "rotates": false }, - { "id": "overlay_worn_sac_purse_leg", "fg": 540, "rotates": false }, - { "id": "overlay_worn_scabbard", "fg": 807, "rotates": false }, - { "id": "overlay_worn_scarf", "fg": 541, "rotates": false }, - { "id": "overlay_worn_scarf_fur", "fg": 542, "rotates": false }, - { "id": "overlay_worn_scarf_fur_long", "fg": 527, "rotates": false }, - { "id": "overlay_worn_scarf_fur_long_loose", "fg": 527, "rotates": false }, - { "id": "overlay_worn_scarf_fur_loose", "fg": 542, "rotates": false }, - { "id": "overlay_worn_scarf_long", "fg": 528, "rotates": false }, - { "id": "overlay_worn_scarf_long_loose", "fg": 528, "rotates": false }, - { "id": "overlay_worn_scarf_loose", "fg": 543, "rotates": false }, - { "id": "overlay_worn_shark_suit", "fg": 808, "rotates": false }, - { "id": "overlay_worn_shark_suit_faraday", "fg": 808, "rotates": false }, - { "id": "overlay_worn_sheath", "fg": 809, "rotates": false }, - { "id": "overlay_worn_sheet", "fg": 604, "rotates": false }, - { "id": "overlay_worn_shoes_birchbark", "fg": 810, "rotates": false }, - { "id": "overlay_worn_shoes_bowling", "fg": 811, "rotates": false }, - { "id": "overlay_worn_sholster", "fg": 706, "rotates": false }, - { "id": "overlay_worn_shorts", "fg": 812, "rotates": false }, - { "id": "overlay_worn_shorts_cargo", "fg": 813, "rotates": false }, - { "id": "overlay_worn_shorts_denim", "fg": 792, "rotates": false }, - { "id": "overlay_worn_silver_medal", "fg": 930, "rotates": false }, - { "id": "overlay_worn_silver_necklace", "fg": 931, "rotates": false }, - { "id": [ "overlay_worn_silver_ring", "overlay_worn_mring_silver" ], "fg": 932, "rotates": false }, - { "id": "overlay_worn_skinny_tie", "fg": 814, "rotates": false }, - { "id": "overlay_worn_skirt", "fg": 815, "rotates": false }, - { "id": "overlay_worn_skirt_leather", "fg": 816, "rotates": false }, - { "id": "overlay_worn_sleeping_bag", "fg": 817, "rotates": false }, - { "id": "overlay_worn_sleeping_bag_fur", "fg": 817, "rotates": false }, - { "id": "overlay_worn_sleeveless_duster", "fg": 818, "rotates": false }, - { "id": "overlay_worn_sleeveless_duster_fur", "fg": 818, "rotates": false }, - { "id": "overlay_worn_sleeveless_duster_leather", "fg": 818, "rotates": false }, - { "id": "overlay_worn_sleeveless_duster_survivor", "fg": 819, "rotates": false }, - { "id": "overlay_worn_sleeveless_trenchcoat", "fg": 820, "rotates": false }, - { "id": "overlay_worn_sleeveless_trenchcoat_fur", "fg": 820, "rotates": false }, - { "id": "overlay_worn_sleeveless_trenchcoat_leather", "fg": 820, "rotates": false }, - { "id": "overlay_worn_sleeveless_trenchcoat_survivor", "fg": 821, "rotates": false }, - { "id": "overlay_worn_sleeveless_tunic", "fg": 860, "rotates": false }, - { "id": "overlay_worn_slingpack", "fg": 806, "rotates": false }, - { "id": "overlay_worn_slippers", "fg": 822, "rotates": false }, - { "id": "overlay_worn_sneakers", "fg": 823, "rotates": false }, - { "id": "overlay_worn_snuggie", "fg": 934, "rotates": false }, - { "id": "overlay_worn_sockmitts", "fg": 747, "rotates": false }, - { "id": "overlay_worn_socks", "fg": 824, "rotates": false }, - { "id": "overlay_worn_socks_bag", "fg": 824, "rotates": false }, - { "id": "overlay_worn_socks_bowling", "fg": 824, "rotates": false }, - { "id": "overlay_worn_socks_wool", "fg": 824, "rotates": false }, - { "id": "overlay_worn_sports_bra", "fg": 825, "rotates": false }, - { "id": "overlay_worn_stealth_cloak", "fg": 544, "rotates": false }, - { "id": "overlay_worn_stillsuit", "fg": 715, "rotates": false }, - { "id": "overlay_worn_stockings", "fg": 826, "rotates": false }, - { "id": "overlay_worn_stockings_oath", "fg": 826, "rotates": false }, - { "id": "overlay_worn_stockings_tent_arms", "fg": 827, "rotates": false }, - { "id": "overlay_worn_stockings_tent_legs", "fg": 828, "rotates": false }, - { "id": "overlay_worn_stomach_sealed", "fg": 511, "rotates": false }, - { "id": "overlay_worn_straw_basket", "fg": 829, "rotates": false }, - { "id": "overlay_worn_straw_sandals", "fg": 661, "rotates": false }, - { "id": "overlay_worn_striped_pants", "fg": 935, "rotates": false }, - { "id": "overlay_worn_striped_shirt", "fg": 830, "rotates": false }, - { "id": "overlay_worn_subsuit_xl", "fg": 854, "rotates": false }, - { "id": "overlay_worn_suit", "fg": 831, "rotates": false }, - { "id": "overlay_worn_suitcase_l", "fg": 832, "rotates": false }, - { "id": "overlay_worn_suitcase_m", "fg": 832, "rotates": false }, - { "id": "overlay_worn_sundress", "fg": 833, "rotates": false }, - { "id": "overlay_worn_sunglasses", "fg": 834, "rotates": false }, - { "id": "overlay_worn_surv_armor_suit", "fg": 841, "rotates": false }, - { "id": "overlay_worn_surv_suit", "fg": 842, "rotates": false }, - { "id": "overlay_worn_survbowpack", "fg": 835, "rotates": false }, - { "id": "overlay_worn_survivor_belt", "fg": 836, "rotates": false }, - { "id": "overlay_worn_survivor_belt_notools", "fg": 836, "rotates": false }, - { "id": "overlay_worn_survivor_duffel_bag", "fg": 837, "rotates": false }, - { "id": "overlay_worn_survivor_goggles", "fg": 674, "rotates": false }, - { "id": "overlay_worn_survivor_light", "fg": 545, "rotates": false }, - { "id": "overlay_worn_survivor_light_on", "fg": 546, "rotates": false }, - { "id": "overlay_worn_survivor_pack", "fg": 594, "rotates": false }, - { "id": "overlay_worn_survivor_rucksack", "fg": 838, "rotates": false }, - { "id": "overlay_worn_survivor_runner_pack", "fg": 806, "rotates": false }, - { "id": "overlay_worn_survivor_suit", "fg": 839, "rotates": false }, - { "id": "overlay_worn_survivor_vest", "fg": 840, "rotates": false }, - { "id": "overlay_worn_swag_bag", "fg": 843, "rotates": false }, - { "id": "overlay_worn_swat_armor", "fg": 844, "rotates": false }, - { "id": "overlay_worn_swat_badge_swat", "fg": 939, "rotates": false }, - { "id": "overlay_worn_sweater", "fg": 845, "rotates": false }, - { "id": "overlay_worn_sweatshirt", "fg": 846, "rotates": false }, - { "id": "overlay_worn_swim_fins", "fg": 847, "rotates": false }, - { "id": "overlay_worn_tabi_dress", "fg": 824, "rotates": false }, - { "id": "overlay_worn_tabi_gi", "fg": 663, "rotates": false }, - { "id": "overlay_worn_tac_fullhelmet", "fg": 848, "rotates": false }, - { "id": "overlay_worn_tac_helmet", "fg": 702, "rotates": false }, - { "id": "overlay_worn_tank_top", "fg": 849, "rotates": false }, - { "id": "overlay_worn_tarp", "fg": 604, "rotates": false }, - { "id": "overlay_worn_technician_pants_gray", "fg": 850, "rotates": false }, - { "id": "overlay_worn_technician_shirt_blue", "fg": 851, "rotates": false }, - { "id": "overlay_worn_technician_shirt_gray", "fg": 852, "rotates": false }, - { "id": "overlay_worn_technician_shirt_ltblue", "fg": 853, "rotates": false }, - { "id": "overlay_worn_thawb", "fg": 854, "rotates": false }, - { "id": "overlay_worn_thermal_gloves", "fg": 672, "rotates": false }, - { "id": "overlay_worn_thermal_gloves_on", "fg": 672, "rotates": false }, - { "id": "overlay_worn_thermal_mask", "fg": 763, "rotates": false }, - { "id": "overlay_worn_thermal_mask_on", "fg": 763, "rotates": false }, - { "id": "overlay_worn_thermal_socks", "fg": 663, "rotates": false }, - { "id": "overlay_worn_thermal_socks_on", "fg": 663, "rotates": false }, - { "id": "overlay_worn_thigh_high_boots", "fg": 855, "rotates": false }, - { "id": "overlay_worn_thong", "fg": 780, "rotates": false }, - { "id": "overlay_worn_tights", "fg": 856, "rotates": false }, - { "id": "overlay_worn_tool_belt", "fg": 836, "rotates": false }, - { "id": "overlay_worn_touring_suit", "fg": 839, "rotates": false }, - { "id": "overlay_worn_trenchcoat", "fg": 857, "rotates": false }, - { "id": "overlay_worn_trenchcoat_fur", "fg": 857, "rotates": false }, - { "id": "overlay_worn_trenchcoat_leather", "fg": 857, "rotates": false }, - { "id": "overlay_worn_trenchcoat_survivor", "fg": 858, "rotates": false }, - { "id": "overlay_worn_tricorne", "fg": 859, "rotates": false }, - { "id": "overlay_worn_trunks", "fg": 792, "rotates": false }, - { "id": "overlay_worn_tunic", "fg": 860, "rotates": false }, - { "id": "overlay_worn_tunic_rag", "fg": 860, "rotates": false }, - { "id": "overlay_worn_turban", "fg": 861, "rotates": false }, - { "id": "overlay_worn_tux", "fg": 831, "rotates": false }, - { "id": "overlay_worn_under_armor_shorts", "fg": 863, "rotates": false }, - { "id": "overlay_worn_undershirt", "fg": 862, "rotates": false }, - { "id": "overlay_worn_vambrace_larmor", "fg": 668, "rotates": false }, - { "id": "overlay_worn_vest", "fg": 864, "rotates": false }, - { "id": "overlay_worn_vest_leather", "fg": 865, "rotates": false }, - { "id": "overlay_worn_vest_leather_mod", "fg": 865, "rotates": false }, - { "id": "overlay_worn_waistcoat", "fg": 866, "rotates": false }, - { "id": [ "overlay_worn_sf_watch", "overlay_worn_platinum_watch" ], "fg": 929, "rotates": false }, - { "id": "overlay_worn_gold_watch", "fg": 917, "rotates": false }, - { "id": "overlay_worn_waterskin2", "fg": 511, "rotates": false }, - { "id": "overlay_worn_waterskin3", "fg": 511, "rotates": false }, - { "id": "overlay_worn_waterskin", "fg": 511, "rotates": false }, - { "id": "overlay_worn_wearable_light", "fg": 547, "rotates": false }, - { "id": "overlay_worn_wearable_light_on", "fg": 548, "rotates": false }, - { "id": "overlay_worn_welding_mask", "fg": 940, "rotates": false }, - { "id": "overlay_worn_welding_mask_crude", "fg": 941, "rotates": false }, - { "id": "overlay_worn_wetsuit", "fg": 867, "rotates": false }, - { "id": "overlay_worn_wetsuit_booties", "fg": 868, "rotates": false }, - { "id": "overlay_worn_wetsuit_gloves", "fg": 673, "rotates": false }, - { "id": "overlay_worn_wetsuit_hood", "fg": 869, "rotates": false }, - { "id": "overlay_worn_wetsuit_spring", "fg": 870, "rotates": false }, - { "id": "overlay_worn_winter_gloves_army", "fg": 670, "rotates": false }, - { "id": "overlay_worn_winter_jacket_army", "fg": 871, "rotates": false }, - { "id": "overlay_worn_winter_pants_army", "fg": 872, "rotates": false }, - { "id": "overlay_worn_wolfsuit", "fg": 873, "rotates": false }, - { "id": "overlay_worn_wool_hoodie", "fg": 724, "rotates": false }, - { "id": "overlay_worn_wool_suit", "fg": 831, "rotates": false }, - { "id": "overlay_worn_wristwatch", "fg": 942, "rotates": false }, - { "id": "overlay_worn_wsurvivor_suit", "fg": 874, "rotates": false }, - { "id": "overlay_worn_xlsurvivor_suit", "fg": 839, "rotates": false }, - { "id": "overlay_worn_zubon_gi", "fg": 786, "rotates": false }, - { "id": "fd_acid_vent", "bg": 945, "rotates": false }, - { "id": "fd_bees", "fg": 1042, "rotates": false }, + { "id": "overlay_worn_leather_cat_tail", "fg": 671, "rotates": false }, + { "id": "overlay_worn_leather_pouch", "fg": 518, "rotates": false }, + { "id": "overlay_worn_leathersandals", "fg": 668, "rotates": false }, + { "id": "overlay_worn_leg_splint", "fg": 750, "rotates": false }, + { "id": "overlay_worn_leg_warmers", "fg": 751, "rotates": false }, + { "id": "overlay_worn_leg_warmers_f", "fg": 751, "rotates": false }, + { "id": "overlay_worn_leg_warmers_xl", "fg": 751, "rotates": false }, + { "id": "overlay_worn_leg_warmers_xlf", "fg": 751, "rotates": false }, + { "id": "overlay_worn_leggings", "fg": 863, "rotates": false }, + { "id": "overlay_worn_legguard_bronze", "fg": 748, "rotates": false }, + { "id": "overlay_worn_legguard_hard", "fg": 747, "rotates": false }, + { "id": [ "overlay_worn_legguard_metal", "overlay_worn_legguard_lightplate" ], "fg": 748, "rotates": false }, + { "id": "overlay_worn_legguard_paper", "fg": 749, "rotates": false }, + { "id": "overlay_worn_legrig", "fg": 843, "rotates": false }, + { "id": "overlay_worn_lmil_armor", "fg": 752, "rotates": false }, + { "id": "overlay_worn_loincloth", "fg": 753, "rotates": false }, + { "id": "overlay_worn_loincloth_fur", "fg": 753, "rotates": false }, + { "id": "overlay_worn_loincloth_leather", "fg": 753, "rotates": false }, + { "id": "overlay_worn_loincloth_wool", "fg": 753, "rotates": false }, + { "id": "overlay_worn_long_glove_white", "fg": 754, "rotates": false }, + { "id": "overlay_worn_long_knit_scarf", "fg": 534, "rotates": false }, + { "id": "overlay_worn_long_knit_scarf_loose", "fg": 534, "rotates": false }, + { "id": "overlay_worn_long_patchwork_scarf", "fg": 535, "rotates": false }, + { "id": "overlay_worn_long_patchwork_scarf_loose", "fg": 535, "rotates": false }, + { "id": "overlay_worn_lowtops", "fg": 755, "rotates": false }, + { "id": "overlay_worn_lsurvivor_armor", "fg": 756, "rotates": false }, + { "id": "overlay_worn_lsurvivor_pants", "fg": 794, "rotates": false }, + { "id": "overlay_worn_lsurvivor_suit", "fg": 846, "rotates": false }, + { "id": "overlay_worn_magbandolier", "fg": 557, "rotates": false }, + { "id": "overlay_worn_maid_dress", "fg": 757, "rotates": false }, + { "id": "overlay_worn_maid_hat", "fg": 758, "rotates": false }, + { "id": "overlay_worn_maid_stockings", "fg": 833, "rotates": false }, + { "id": "overlay_worn_makeshift_knapsack", "fg": 759, "rotates": false }, + { "id": "overlay_worn_makeshift_sling", "fg": 760, "rotates": false }, + { "id": "overlay_worn_mask_bal", "fg": 761, "rotates": false }, + { "id": "overlay_worn_mask_bunker", "fg": 536, "rotates": false }, + { "id": "overlay_worn_mask_bunker_on", "fg": 537, "rotates": false }, + { "id": "overlay_worn_mask_dust", "fg": 762, "rotates": false }, + { "id": "overlay_worn_mask_filter", "fg": 763, "rotates": false }, + { "id": "overlay_worn_mask_fsurvivor", "fg": 764, "rotates": false }, + { "id": "overlay_worn_mask_fsurvivorxl", "fg": 764, "rotates": false }, + { "id": "overlay_worn_mask_gas", "fg": 765, "rotates": false }, + { "id": "overlay_worn_mask_gas_xl", "fg": 765, "rotates": false }, + { "id": "overlay_worn_mask_guy_fawkes", "fg": 766, "rotates": false }, + { "id": "overlay_worn_mask_h20survivor", "fg": 538, "rotates": false }, + { "id": "overlay_worn_mask_h20survivor_on", "fg": 538, "rotates": false }, + { "id": "overlay_worn_mask_h20survivorxl", "fg": 538, "rotates": false }, + { "id": "overlay_worn_mask_h20survivorxl_on", "fg": 538, "rotates": false }, + { "id": "overlay_worn_mask_hockey", "fg": 767, "rotates": false }, + { "id": "overlay_worn_mask_hsurvivor", "fg": 768, "rotates": false }, + { "id": "overlay_worn_mask_lsurvivor", "fg": 769, "rotates": false }, + { "id": "overlay_worn_mask_rioter", "fg": 770, "rotates": false }, + { "id": [ "overlay_worn_mask_ski_loose", "mask_ski_loose" ], "fg": 540, "rotates": false }, + { "id": [ "overlay_worn_mask_ski", "mask_ski" ], "fg": 539, "rotates": false }, + { "id": "overlay_worn_mask_survivor", "fg": 769, "rotates": false }, + { "id": "overlay_worn_mask_survivorxl", "fg": 769, "rotates": false }, + { "id": "overlay_worn_mask_wsurvivor", "fg": 771, "rotates": false }, + { "id": "overlay_worn_mask_wsurvivorxl", "fg": 771, "rotates": false }, + { "id": "overlay_worn_mbag", "fg": 772, "rotates": false }, + { "id": "overlay_worn_megaarmor_armguards_1", "fg": 773, "rotates": false }, + { "id": "overlay_worn_megaarmor_boots_1", "fg": 774, "rotates": false }, + { "id": "overlay_worn_megaarmor_gloves_1", "fg": 775, "rotates": false }, + { "id": "overlay_worn_megaarmor_head_1", "fg": 776, "rotates": false }, + { "id": "overlay_worn_megaarmor_leggings_1", "fg": 777, "rotates": false }, + { "id": "overlay_worn_megaarmor_torso_1", "fg": 778, "rotates": false }, + { "id": "overlay_worn_megaarmor_torso_2", "fg": 779, "rotates": false }, + { "id": "overlay_worn_megaarmor_torso_3", "fg": 541, "rotates": false }, + { "id": "overlay_worn_megaarmor_torso_3_act", "fg": 542, "rotates": false }, + { "id": "overlay_worn_microskirt", "fg": 783, "rotates": false }, + { "id": "overlay_worn_mil_armor", "fg": 780, "rotates": false }, + { "id": "overlay_worn_mittens", "fg": 676, "rotates": false }, + { "id": "overlay_worn_mocassins", "fg": 648, "rotates": false }, + { "id": "overlay_worn_modularvest", "fg": 871, "rotates": false }, + { "id": "overlay_worn_modularvestceramic", "fg": 871, "rotates": false }, + { "id": "overlay_worn_modularvesthard", "fg": 871, "rotates": false }, + { "id": "overlay_worn_modularvestkevlar", "fg": 871, "rotates": false }, + { "id": "overlay_worn_modularveststeel", "fg": 871, "rotates": false }, + { "id": "overlay_worn_modularvestsuper", "fg": 871, "rotates": false }, + { "id": "overlay_worn_molle_pack", "fg": 781, "rotates": false }, + { "id": "overlay_worn_motorbike_armor", "fg": 782, "rotates": false }, + { "id": "overlay_worn_motorbike_boots", "fg": 622, "rotates": false }, + { "id": "overlay_worn_motorbike_pants", "fg": 857, "rotates": false }, + { "id": "overlay_worn_nanoskirt", "fg": 783, "rotates": false }, + { "id": "overlay_worn_nomex_gloves", "fg": 676, "rotates": false }, + { "id": "overlay_worn_nomex_hood", "fg": 716, "rotates": false }, + { "id": "overlay_worn_nomex_socks", "fg": 784, "rotates": false }, + { "id": "overlay_worn_nomex_suit", "fg": 785, "rotates": false }, + { "id": "overlay_worn_obi_gi", "fg": 746, "rotates": false }, + { "id": "overlay_worn_optical_cloak", "fg": 786, "rotates": false }, + { "id": "overlay_worn_panties", "fg": 787, "rotates": false }, + { "id": "overlay_worn_pants", "fg": 788, "rotates": false }, + { "id": "overlay_worn_pants_army", "fg": 789, "rotates": false }, + { "id": "overlay_worn_pants_cargo", "fg": 790, "rotates": false }, + { "id": "overlay_worn_pants_checkered", "fg": 791, "rotates": false }, + { "id": "overlay_worn_pants_fur", "fg": 792, "rotates": false }, + { "id": "overlay_worn_pants_leather", "fg": 792, "rotates": false }, + { "id": "overlay_worn_pants_ski", "fg": 793, "rotates": false }, + { "id": "overlay_worn_pants_survivor", "fg": 794, "rotates": false }, + { "id": "overlay_worn_patchwork_scarf", "fg": 550, "rotates": false }, + { "id": "overlay_worn_patchwork_scarf_loose", "fg": 550, "rotates": false }, + { "id": "overlay_worn_peacoat", "fg": 795, "rotates": false }, + { "id": "overlay_worn_plastic_shopping_bag", "fg": 796, "rotates": false }, + { "id": "overlay_worn_platinum_locket", "fg": 929, "rotates": false }, + { "id": "overlay_worn_platinum_necklace", "fg": 930, "rotates": false }, + { "id": [ "overlay_worn_platinum_ring", "overlay_worn_mring_platinum" ], "fg": 931, "rotates": false }, + { "id": "overlay_worn_poncho", "fg": 797, "rotates": false }, + { "id": "overlay_worn_postman_hat", "fg": 798, "rotates": false }, + { "id": "overlay_worn_postman_shorts", "fg": 799, "rotates": false }, + { "id": "overlay_worn_pot_helmet", "fg": 800, "rotates": false }, + { "id": "overlay_worn_power_armor_basic", "fg": 801, "rotates": false }, + { "id": "overlay_worn_power_armor_heavy", "fg": 802, "rotates": false }, + { "id": "overlay_worn_power_armor_helmet_basic", "fg": 803, "rotates": false }, + { "id": "overlay_worn_power_armor_helmet_heavy", "fg": 804, "rotates": false }, + { "id": "overlay_worn_power_armor_helmet_light", "fg": 805, "rotates": false }, + { "id": "overlay_worn_power_armor_light", "fg": 806, "rotates": false }, + { "id": [ "overlay_worn_powered_earmuffs", "overlay_worn_powered_earmuffs_on" ], "fg": 572 }, + { "id": "overlay_worn_purse", "fg": 807, "rotates": false }, + { "id": "overlay_worn_quiver", "fg": 808, "rotates": false }, + { "id": "overlay_worn_quiver_birchbark", "fg": 808, "rotates": false }, + { "id": "overlay_worn_quiver_large", "fg": 809, "rotates": false }, + { "id": "overlay_worn_quiver_large_birchbark", "fg": 809, "rotates": false }, + { "id": "overlay_worn_rebreather", "fg": 932, "rotates": false }, + { "id": "overlay_worn_rebreather_xl", "fg": 932, "rotates": false }, + { "id": "overlay_worn_revenant_crown", "fg": 543, "rotates": false }, + { "id": [ "overlay_worn_diamond_ring", "overlay_worn_ring_wedding" ], "fg": 898, "rotates": false }, + { "id": [ "overlay_worn_ring_engagement" ], "fg": 933, "rotates": false }, + { "id": "overlay_worn_ring_purity", "fg": 934, "rotates": false }, + { "id": "overlay_worn_ring_signet", "fg": 935, "rotates": false }, + { "id": "overlay_worn_rm13_armor", "fg": 556, "rotates": false }, + { "id": "overlay_worn_rm13_armor_on", "fg": 544, "rotates": false }, + { "id": "overlay_worn_robe", "fg": 810, "rotates": false }, + { "id": "overlay_worn_roller_blades", "fg": 811, "rotates": false }, + { "id": "overlay_worn_rollerskates", "fg": 811, "rotates": false }, + { "id": "overlay_worn_rucksack", "fg": 812, "rotates": false }, + { "id": "overlay_worn_runner_bag", "fg": 813, "rotates": false }, + { "id": "overlay_worn_sac_purse", "fg": 545, "rotates": false }, + { "id": "overlay_worn_sac_purse_arm", "fg": 546, "rotates": false }, + { "id": "overlay_worn_sac_purse_leg", "fg": 547, "rotates": false }, + { "id": "overlay_worn_scabbard", "fg": 814, "rotates": false }, + { "id": "overlay_worn_scarf", "fg": 548, "rotates": false }, + { "id": "overlay_worn_scarf_fur", "fg": 549, "rotates": false }, + { "id": "overlay_worn_scarf_fur_long", "fg": 534, "rotates": false }, + { "id": "overlay_worn_scarf_fur_long_loose", "fg": 534, "rotates": false }, + { "id": "overlay_worn_scarf_fur_loose", "fg": 549, "rotates": false }, + { "id": "overlay_worn_scarf_long", "fg": 535, "rotates": false }, + { "id": "overlay_worn_scarf_long_loose", "fg": 535, "rotates": false }, + { "id": "overlay_worn_scarf_loose", "fg": 550, "rotates": false }, + { "id": "overlay_worn_shark_suit", "fg": 815, "rotates": false }, + { "id": "overlay_worn_shark_suit_faraday", "fg": 815, "rotates": false }, + { "id": "overlay_worn_sheath", "fg": 816, "rotates": false }, + { "id": "overlay_worn_sheet", "fg": 611, "rotates": false }, + { "id": "overlay_worn_shoes_birchbark", "fg": 817, "rotates": false }, + { "id": "overlay_worn_shoes_bowling", "fg": 818, "rotates": false }, + { "id": "overlay_worn_sholster", "fg": 713, "rotates": false }, + { "id": "overlay_worn_shorts", "fg": 819, "rotates": false }, + { "id": "overlay_worn_shorts_cargo", "fg": 820, "rotates": false }, + { "id": "overlay_worn_shorts_denim", "fg": 799, "rotates": false }, + { "id": "overlay_worn_silver_medal", "fg": 937, "rotates": false }, + { "id": "overlay_worn_silver_necklace", "fg": 938, "rotates": false }, + { "id": [ "overlay_worn_silver_ring", "overlay_worn_mring_silver" ], "fg": 939, "rotates": false }, + { "id": "overlay_worn_skinny_tie", "fg": 821, "rotates": false }, + { "id": "overlay_worn_skirt", "fg": 822, "rotates": false }, + { "id": "overlay_worn_skirt_leather", "fg": 823, "rotates": false }, + { "id": "overlay_worn_sleeping_bag", "fg": 824, "rotates": false }, + { "id": "overlay_worn_sleeping_bag_fur", "fg": 824, "rotates": false }, + { "id": "overlay_worn_sleeveless_duster", "fg": 825, "rotates": false }, + { "id": "overlay_worn_sleeveless_duster_fur", "fg": 825, "rotates": false }, + { "id": "overlay_worn_sleeveless_duster_leather", "fg": 825, "rotates": false }, + { "id": "overlay_worn_sleeveless_duster_survivor", "fg": 826, "rotates": false }, + { "id": "overlay_worn_sleeveless_trenchcoat", "fg": 827, "rotates": false }, + { "id": "overlay_worn_sleeveless_trenchcoat_fur", "fg": 827, "rotates": false }, + { "id": "overlay_worn_sleeveless_trenchcoat_leather", "fg": 827, "rotates": false }, + { "id": "overlay_worn_sleeveless_trenchcoat_survivor", "fg": 828, "rotates": false }, + { "id": "overlay_worn_sleeveless_tunic", "fg": 867, "rotates": false }, + { "id": "overlay_worn_slingpack", "fg": 813, "rotates": false }, + { "id": "overlay_worn_slippers", "fg": 829, "rotates": false }, + { "id": "overlay_worn_sneakers", "fg": 830, "rotates": false }, + { "id": "overlay_worn_snuggie", "fg": 941, "rotates": false }, + { "id": "overlay_worn_sockmitts", "fg": 754, "rotates": false }, + { "id": "overlay_worn_socks", "fg": 831, "rotates": false }, + { "id": "overlay_worn_socks_bag", "fg": 831, "rotates": false }, + { "id": "overlay_worn_socks_bowling", "fg": 831, "rotates": false }, + { "id": "overlay_worn_socks_wool", "fg": 831, "rotates": false }, + { "id": "overlay_worn_sports_bra", "fg": 832, "rotates": false }, + { "id": "overlay_worn_stealth_cloak", "fg": 551, "rotates": false }, + { "id": "overlay_worn_stillsuit", "fg": 722, "rotates": false }, + { "id": "overlay_worn_stockings", "fg": 833, "rotates": false }, + { "id": "overlay_worn_stockings_oath", "fg": 833, "rotates": false }, + { "id": "overlay_worn_stockings_tent_arms", "fg": 834, "rotates": false }, + { "id": "overlay_worn_stockings_tent_legs", "fg": 835, "rotates": false }, + { "id": "overlay_worn_stomach_sealed", "fg": 518, "rotates": false }, + { "id": "overlay_worn_straw_basket", "fg": 836, "rotates": false }, + { "id": "overlay_worn_straw_sandals", "fg": 668, "rotates": false }, + { "id": "overlay_worn_striped_pants", "fg": 942, "rotates": false }, + { "id": "overlay_worn_striped_shirt", "fg": 837, "rotates": false }, + { "id": "overlay_worn_subsuit_xl", "fg": 861, "rotates": false }, + { "id": "overlay_worn_suit", "fg": 838, "rotates": false }, + { "id": "overlay_worn_suitcase_l", "fg": 839, "rotates": false }, + { "id": "overlay_worn_suitcase_m", "fg": 839, "rotates": false }, + { "id": "overlay_worn_sundress", "fg": 840, "rotates": false }, + { "id": "overlay_worn_sunglasses", "fg": 841, "rotates": false }, + { "id": "overlay_worn_surv_armor_suit", "fg": 848, "rotates": false }, + { "id": "overlay_worn_surv_suit", "fg": 849, "rotates": false }, + { "id": "overlay_worn_survbowpack", "fg": 842, "rotates": false }, + { "id": "overlay_worn_survivor_belt", "fg": 843, "rotates": false }, + { "id": "overlay_worn_survivor_belt_notools", "fg": 843, "rotates": false }, + { "id": "overlay_worn_survivor_duffel_bag", "fg": 844, "rotates": false }, + { "id": "overlay_worn_survivor_goggles", "fg": 681, "rotates": false }, + { "id": "overlay_worn_survivor_light", "fg": 552, "rotates": false }, + { "id": "overlay_worn_survivor_light_on", "fg": 553, "rotates": false }, + { "id": "overlay_worn_survivor_pack", "fg": 601, "rotates": false }, + { "id": "overlay_worn_survivor_rucksack", "fg": 845, "rotates": false }, + { "id": "overlay_worn_survivor_runner_pack", "fg": 813, "rotates": false }, + { "id": "overlay_worn_survivor_suit", "fg": 846, "rotates": false }, + { "id": "overlay_worn_survivor_vest", "fg": 847, "rotates": false }, + { "id": "overlay_worn_swag_bag", "fg": 850, "rotates": false }, + { "id": "overlay_worn_swat_armor", "fg": 851, "rotates": false }, + { "id": "overlay_worn_swat_badge_swat", "fg": 946, "rotates": false }, + { "id": "overlay_worn_sweater", "fg": 852, "rotates": false }, + { "id": "overlay_worn_sweatshirt", "fg": 853, "rotates": false }, + { "id": "overlay_worn_swim_fins", "fg": 854, "rotates": false }, + { "id": "overlay_worn_tabi_dress", "fg": 831, "rotates": false }, + { "id": "overlay_worn_tabi_gi", "fg": 670, "rotates": false }, + { "id": "overlay_worn_tac_fullhelmet", "fg": 855, "rotates": false }, + { "id": "overlay_worn_tac_helmet", "fg": 709, "rotates": false }, + { "id": "overlay_worn_tank_top", "fg": 856, "rotates": false }, + { "id": "overlay_worn_tarp", "fg": 611, "rotates": false }, + { "id": "overlay_worn_technician_pants_gray", "fg": 857, "rotates": false }, + { "id": "overlay_worn_technician_shirt_blue", "fg": 858, "rotates": false }, + { "id": "overlay_worn_technician_shirt_gray", "fg": 859, "rotates": false }, + { "id": "overlay_worn_technician_shirt_ltblue", "fg": 860, "rotates": false }, + { "id": "overlay_worn_thawb", "fg": 861, "rotates": false }, + { "id": "overlay_worn_thermal_gloves", "fg": 679, "rotates": false }, + { "id": "overlay_worn_thermal_gloves_on", "fg": 679, "rotates": false }, + { "id": "overlay_worn_thermal_mask", "fg": 770, "rotates": false }, + { "id": "overlay_worn_thermal_mask_on", "fg": 770, "rotates": false }, + { "id": "overlay_worn_thermal_socks", "fg": 670, "rotates": false }, + { "id": "overlay_worn_thermal_socks_on", "fg": 670, "rotates": false }, + { "id": "overlay_worn_thigh_high_boots", "fg": 862, "rotates": false }, + { "id": "overlay_worn_thong", "fg": 787, "rotates": false }, + { "id": "overlay_worn_tights", "fg": 863, "rotates": false }, + { "id": "overlay_worn_tool_belt", "fg": 843, "rotates": false }, + { "id": "overlay_worn_touring_suit", "fg": 846, "rotates": false }, + { "id": "overlay_worn_trenchcoat", "fg": 864, "rotates": false }, + { "id": "overlay_worn_trenchcoat_fur", "fg": 864, "rotates": false }, + { "id": "overlay_worn_trenchcoat_leather", "fg": 864, "rotates": false }, + { "id": "overlay_worn_trenchcoat_survivor", "fg": 865, "rotates": false }, + { "id": "overlay_worn_tricorne", "fg": 866, "rotates": false }, + { "id": "overlay_worn_trunks", "fg": 799, "rotates": false }, + { "id": "overlay_worn_tunic", "fg": 867, "rotates": false }, + { "id": "overlay_worn_tunic_rag", "fg": 867, "rotates": false }, + { "id": "overlay_worn_turban", "fg": 868, "rotates": false }, + { "id": "overlay_worn_tux", "fg": 838, "rotates": false }, + { "id": "overlay_worn_under_armor_shorts", "fg": 870, "rotates": false }, + { "id": "overlay_worn_undershirt", "fg": 869, "rotates": false }, + { "id": "overlay_worn_vambrace_larmor", "fg": 675, "rotates": false }, + { "id": "overlay_worn_vest", "fg": 871, "rotates": false }, + { "id": "overlay_worn_vest_leather", "fg": 872, "rotates": false }, + { "id": "overlay_worn_vest_leather_mod", "fg": 872, "rotates": false }, + { "id": "overlay_worn_waistcoat", "fg": 873, "rotates": false }, + { "id": [ "overlay_worn_sf_watch", "overlay_worn_platinum_watch" ], "fg": 936, "rotates": false }, + { "id": "overlay_worn_gold_watch", "fg": 924, "rotates": false }, + { "id": "overlay_worn_waterskin2", "fg": 518, "rotates": false }, + { "id": "overlay_worn_waterskin3", "fg": 518, "rotates": false }, + { "id": "overlay_worn_waterskin", "fg": 518, "rotates": false }, + { "id": "overlay_worn_wearable_light", "fg": 554, "rotates": false }, + { "id": "overlay_worn_wearable_light_on", "fg": 555, "rotates": false }, + { "id": "overlay_worn_welding_mask", "fg": 947, "rotates": false }, + { "id": "overlay_worn_welding_mask_crude", "fg": 948, "rotates": false }, + { "id": "overlay_worn_wetsuit", "fg": 874, "rotates": false }, + { "id": "overlay_worn_wetsuit_booties", "fg": 875, "rotates": false }, + { "id": "overlay_worn_wetsuit_gloves", "fg": 680, "rotates": false }, + { "id": "overlay_worn_wetsuit_hood", "fg": 876, "rotates": false }, + { "id": "overlay_worn_wetsuit_spring", "fg": 877, "rotates": false }, + { "id": "overlay_worn_winter_gloves_army", "fg": 677, "rotates": false }, + { "id": "overlay_worn_winter_jacket_army", "fg": 878, "rotates": false }, + { "id": "overlay_worn_winter_pants_army", "fg": 879, "rotates": false }, + { "id": "overlay_worn_wolfsuit", "fg": 880, "rotates": false }, + { "id": "overlay_worn_wool_hoodie", "fg": 731, "rotates": false }, + { "id": "overlay_worn_wool_suit", "fg": 838, "rotates": false }, + { "id": "overlay_worn_wristwatch", "fg": 949, "rotates": false }, + { "id": "overlay_worn_wsurvivor_suit", "fg": 881, "rotates": false }, + { "id": "overlay_worn_xlsurvivor_suit", "fg": 846, "rotates": false }, + { "id": "overlay_worn_zubon_gi", "fg": 793, "rotates": false }, + { "id": "fd_acid_vent", "bg": 952, "rotates": false }, + { "id": "fd_bees", "fg": 1049, "rotates": false }, { "id": "fd_bile", - "fg": 946, + "fg": 953, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 947 }, - { "id": "corner", "fg": 948 }, - { "id": "edge", "fg": 949 }, - { "id": "t_connection", "fg": 951 }, - { "id": "end_piece", "fg": 950 }, - { "id": "unconnected", "fg": 946 } + { "id": "center", "fg": 954 }, + { "id": "corner", "fg": 955 }, + { "id": "edge", "fg": 956 }, + { "id": "t_connection", "fg": 958 }, + { "id": "end_piece", "fg": 957 }, + { "id": "unconnected", "fg": 953 } ] }, { "id": "fd_blood", - "bg": 1043, + "bg": 1050, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1043 }, - { "id": "corner", "fg": 952 }, - { "id": "edge", "fg": 953 }, - { "id": "t_connection", "fg": 967 }, - { "id": "end_piece", "fg": 954 }, - { "id": "unconnected", "fg": 968 } + { "id": "center", "fg": 1050 }, + { "id": "corner", "fg": 959 }, + { "id": "edge", "fg": 960 }, + { "id": "t_connection", "fg": 974 }, + { "id": "end_piece", "fg": 961 }, + { "id": "unconnected", "fg": 975 } ] }, { "id": "fd_blood_insect", - "fg": 955, + "fg": 962, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 956 }, - { "id": "corner", "fg": 957 }, - { "id": "edge", "fg": 958 }, - { "id": "t_connection", "fg": 960 }, - { "id": "end_piece", "fg": 959 }, - { "id": "unconnected", "fg": 955 } + { "id": "center", "fg": 963 }, + { "id": "corner", "fg": 964 }, + { "id": "edge", "fg": 965 }, + { "id": "t_connection", "fg": 967 }, + { "id": "end_piece", "fg": 966 }, + { "id": "unconnected", "fg": 962 } ] }, { "id": "fd_blood_invertebrate", - "fg": 961, + "fg": 968, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 962 }, - { "id": "corner", "fg": 963 }, - { "id": "edge", "fg": 964 }, - { "id": "t_connection", "fg": 966 }, - { "id": "end_piece", "fg": 965 }, - { "id": "unconnected", "fg": 961 } + { "id": "center", "fg": 969 }, + { "id": "corner", "fg": 970 }, + { "id": "edge", "fg": 971 }, + { "id": "t_connection", "fg": 973 }, + { "id": "end_piece", "fg": 972 }, + { "id": "unconnected", "fg": 968 } ] }, { "id": "fd_blood_veggy", - "fg": 969, + "fg": 976, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 970 }, - { "id": "corner", "fg": 971 }, - { "id": "edge", "fg": 972 }, - { "id": "t_connection", "fg": 974 }, - { "id": "end_piece", "fg": 973 }, - { "id": "unconnected", "fg": 969 } + { "id": "center", "fg": 977 }, + { "id": "corner", "fg": 978 }, + { "id": "edge", "fg": 979 }, + { "id": "t_connection", "fg": 981 }, + { "id": "end_piece", "fg": 980 }, + { "id": "unconnected", "fg": 976 } ] }, { "id": "fd_cigsmoke", - "fg": 1029, + "fg": 1036, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 975 }, - { "id": "corner", "fg": 976 }, - { "id": "edge", "fg": 977 }, - { "id": "t_connection", "fg": 979 }, - { "id": "end_piece", "fg": 978 }, - { "id": "unconnected", "fg": 980 } + { "id": "center", "fg": 982 }, + { "id": "corner", "fg": 983 }, + { "id": "edge", "fg": 984 }, + { "id": "t_connection", "fg": 986 }, + { "id": "end_piece", "fg": 985 }, + { "id": "unconnected", "fg": 987 } ] }, { "id": "fd_cracksmoke", - "fg": 1029, + "fg": 1036, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 975 }, - { "id": "corner", "fg": 976 }, - { "id": "edge", "fg": 977 }, - { "id": "t_connection", "fg": 979 }, - { "id": "end_piece", "fg": 978 }, - { "id": "unconnected", "fg": 980 } + { "id": "center", "fg": 982 }, + { "id": "corner", "fg": 983 }, + { "id": "edge", "fg": 984 }, + { "id": "t_connection", "fg": 986 }, + { "id": "end_piece", "fg": 985 }, + { "id": "unconnected", "fg": 987 } ] }, - { "id": "fd_dazzling", "fg": 981 }, + { "id": "fd_dazzling", "fg": 988 }, { "id": "fd_electricity", - "fg": 982, + "fg": 989, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 983 }, - { "id": "unconnected", "fg": 983 }, - { "id": "corner", "fg": 984 }, - { "id": "edge", "fg": 985 }, - { "id": "end_piece", "fg": 986 }, - { "id": "t_connection", "fg": 987 } + { "id": "center", "fg": 990 }, + { "id": "unconnected", "fg": 990 }, + { "id": "corner", "fg": 991 }, + { "id": "edge", "fg": 992 }, + { "id": "end_piece", "fg": 993 }, + { "id": "t_connection", "fg": 994 } ] }, - { "id": "fd_fatigue", "fg": 988 }, + { "id": "fd_fatigue", "fg": 995 }, { "id": "fd_fire", - "bg": 1044, + "bg": 1051, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 989, "bg": 1045 }, - { "id": "corner", "fg": 990, "bg": 1045 }, - { "id": "edge", "fg": 991, "bg": 1045 }, - { "id": "t_connection", "fg": 993, "bg": 1045 }, - { "id": "end_piece", "fg": 992, "bg": 1045 }, - { "id": "unconnected", "fg": 994, "bg": 1045 } + { "id": "center", "fg": 996, "bg": 1052 }, + { "id": "corner", "fg": 997, "bg": 1052 }, + { "id": "edge", "fg": 998, "bg": 1052 }, + { "id": "t_connection", "fg": 1000, "bg": 1052 }, + { "id": "end_piece", "fg": 999, "bg": 1052 }, + { "id": "unconnected", "fg": 1001, "bg": 1052 } ] }, - { "id": [ "fd_fire_vent", "testflames" ], "bg": 1044, "rotates": false }, + { "id": [ "fd_fire_vent", "testflames" ], "bg": 1051, "rotates": false }, { "id": "fd_flame_burst", - "bg": 1046, + "bg": 1053, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 995, "bg": 1045 }, - { "id": "corner", "fg": 996, "bg": 1045 }, - { "id": "edge", "fg": 997, "bg": 1045 }, - { "id": "t_connection", "fg": 999, "bg": 1045 }, - { "id": "end_piece", "fg": 998, "bg": 1045 }, - { "id": "unconnected", "fg": 1000, "bg": 1045 } + { "id": "center", "fg": 1002, "bg": 1052 }, + { "id": "corner", "fg": 1003, "bg": 1052 }, + { "id": "edge", "fg": 1004, "bg": 1052 }, + { "id": "t_connection", "fg": 1006, "bg": 1052 }, + { "id": "end_piece", "fg": 1005, "bg": 1052 }, + { "id": "unconnected", "fg": 1007, "bg": 1052 } ] }, - { "id": "fd_fungal_haze", "bg": 1047 }, - { "id": "fd_fungicidal_gas", "bg": 944, "rotates": false }, - { "id": "fd_gas_vent", "bg": 1048 }, - { "id": "fd_gibs_flesh", "fg": 1001 }, + { "id": "fd_fungal_haze", "bg": 1054 }, + { "id": "fd_fungicidal_gas", "bg": 951, "rotates": false }, + { "id": "fd_gas_vent", "bg": 1055 }, + { "id": "fd_gibs_flesh", "fg": 1008 }, { "id": "fd_gibs_insect", - "fg": 1002, + "fg": 1009, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1003 }, - { "id": "corner", "fg": 1004 }, - { "id": "edge", "fg": 1005 }, - { "id": "t_connection", "fg": 1007 }, - { "id": "end_piece", "fg": 1006 }, - { "id": "unconnected", "fg": 1002 } + { "id": "center", "fg": 1010 }, + { "id": "corner", "fg": 1011 }, + { "id": "edge", "fg": 1012 }, + { "id": "t_connection", "fg": 1014 }, + { "id": "end_piece", "fg": 1013 }, + { "id": "unconnected", "fg": 1009 } ] }, { "id": "fd_gibs_invertebrate", - "fg": 1008, - "rotates": false, - "multitile": true, - "additional_tiles": [ - { "id": "center", "fg": 1009 }, - { "id": "corner", "fg": 1010 }, - { "id": "edge", "fg": 1011 }, - { "id": "t_connection", "fg": 1013 }, - { "id": "end_piece", "fg": 1012 }, - { "id": "unconnected", "fg": 1008 } - ] - }, - { "id": "fd_gibs_veggy", "fg": 1014 }, - { - "id": "fd_incendiary", "fg": 1015, "rotates": false, "multitile": true, @@ -1688,637 +1673,652 @@ { "id": "edge", "fg": 1018 }, { "id": "t_connection", "fg": 1020 }, { "id": "end_piece", "fg": 1019 }, - { "id": "unconnected", "fg": 1021 } + { "id": "unconnected", "fg": 1015 } ] }, - { "id": "fd_laser", "bg": 1049 }, + { "id": "fd_gibs_veggy", "fg": 1021 }, { - "id": "fd_methsmoke", - "fg": 1029, + "id": "fd_incendiary", + "fg": 1022, "rotates": false, "multitile": true, - "additional_tiles": [ - { "id": "center", "fg": 975 }, - { "id": "corner", "fg": 976 }, - { "id": "edge", "fg": 977 }, - { "id": "t_connection", "fg": 979 }, - { "id": "end_piece", "fg": 978 }, - { "id": "unconnected", "fg": 980 } - ] - }, - { "id": "fd_nuke_gas", "fg": 1048 }, - { "id": "fd_plasma", "fg": 1022, "rotates": false }, - { "id": "fd_push_items", "bg": 980 }, - { - "id": "fd_relax_gas", - "fg": 1029, - "multitile": true, "additional_tiles": [ { "id": "center", "fg": 1023 }, { "id": "corner", "fg": 1024 }, { "id": "edge", "fg": 1025 }, - { "id": "end_piece", "fg": 1026 }, { "id": "t_connection", "fg": 1027 }, + { "id": "end_piece", "fg": 1026 }, { "id": "unconnected", "fg": 1028 } ] }, - { "id": "fd_rubble", "bg": 1050, "rotates": false }, - { "id": "fd_sap", "bg": 1051, "rotates": false }, - { "id": "fd_shock_vent", "bg": 982, "rotates": false }, - { "id": "fd_slime", "bg": 945, "rotates": false }, - { "id": "fd_sludge", "bg": 1051, "rotates": false }, + { "id": "fd_laser", "bg": 1056 }, { - "id": "fd_smoke", - "fg": 1029, + "id": "fd_methsmoke", + "fg": 1036, "rotates": false, "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 982 }, + { "id": "corner", "fg": 983 }, + { "id": "edge", "fg": 984 }, + { "id": "t_connection", "fg": 986 }, + { "id": "end_piece", "fg": 985 }, + { "id": "unconnected", "fg": 987 } + ] + }, + { "id": "fd_nuke_gas", "fg": 1055 }, + { "id": "fd_plasma", "fg": 1029, "rotates": false }, + { "id": "fd_push_items", "bg": 987 }, + { + "id": "fd_relax_gas", + "fg": 1036, + "multitile": true, "additional_tiles": [ { "id": "center", "fg": 1030 }, { "id": "corner", "fg": 1031 }, { "id": "edge", "fg": 1032 }, - { "id": "t_connection", "fg": 1034 }, { "id": "end_piece", "fg": 1033 }, + { "id": "t_connection", "fg": 1034 }, { "id": "unconnected", "fg": 1035 } ] }, - { "id": "fd_spotlight", "fg": 1036, "rotates": false }, - { "id": "fd_tear_gas", "bg": 980 }, - { "id": "fd_toxic_gas", "bg": 1048 }, + { "id": "fd_rubble", "bg": 1057, "rotates": false }, + { "id": "fd_sap", "bg": 1058, "rotates": false }, + { "id": "fd_shock_vent", "bg": 989, "rotates": false }, + { "id": "fd_slime", "bg": 952, "rotates": false }, + { "id": "fd_sludge", "bg": 1058, "rotates": false }, { - "id": "fd_web", - "bg": 1052, + "id": "fd_smoke", + "fg": 1036, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1052 }, { "id": "center", "fg": 1037 }, { "id": "corner", "fg": 1038 }, { "id": "edge", "fg": 1039 }, { "id": "t_connection", "fg": 1041 }, - { "id": "end_piece", "fg": 1040 } + { "id": "end_piece", "fg": 1040 }, + { "id": "unconnected", "fg": 1042 } + ] + }, + { "id": "fd_spotlight", "fg": 1043, "rotates": false }, + { "id": "fd_tear_gas", "bg": 987 }, + { "id": "fd_toxic_gas", "bg": 1055 }, + { + "id": "fd_web", + "bg": 1059, + "rotates": false, + "multitile": true, + "additional_tiles": [ + { "id": "unconnected", "fg": 1059 }, + { "id": "center", "fg": 1044 }, + { "id": "corner", "fg": 1045 }, + { "id": "edge", "fg": 1046 }, + { "id": "t_connection", "fg": 1048 }, + { "id": "end_piece", "fg": 1047 } ] }, { "id": "fd_weedsmoke", - "fg": 1029, + "fg": 1036, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1030 }, - { "id": "corner", "fg": 1031 }, - { "id": "edge", "fg": 1032 }, - { "id": "t_connection", "fg": 1034 }, - { "id": "end_piece", "fg": 1033 }, - { "id": "unconnected", "fg": 1035 } + { "id": "center", "fg": 1037 }, + { "id": "corner", "fg": 1038 }, + { "id": "edge", "fg": 1039 }, + { "id": "t_connection", "fg": 1041 }, + { "id": "end_piece", "fg": 1040 }, + { "id": "unconnected", "fg": 1042 } ] }, { "id": "fd_acid", - "fg": 1068, + "fg": 1075, "multitile": true, "additional_tiles": [ { "id": "center", "animated": true, "fg": [ - { "weight": 8, "sprite": 1053 }, - { "weight": 8, "sprite": 1069 }, - { "weight": 8, "sprite": 1085 }, - { "weight": 8, "sprite": 1101 }, - { "weight": 8, "sprite": 1117 }, - { "weight": 8, "sprite": 1133 }, - { "weight": 8, "sprite": 1149 }, - { "weight": 8, "sprite": 1165 } + { "weight": 8, "sprite": 1060 }, + { "weight": 8, "sprite": 1076 }, + { "weight": 8, "sprite": 1092 }, + { "weight": 8, "sprite": 1108 }, + { "weight": 8, "sprite": 1124 }, + { "weight": 8, "sprite": 1140 }, + { "weight": 8, "sprite": 1156 }, + { "weight": 8, "sprite": 1172 } ] }, { "id": "corner", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1055, 1057, 1056, 1054 ] }, - { "weight": 8, "sprite": [ 1071, 1073, 1072, 1070 ] }, - { "weight": 8, "sprite": [ 1087, 1089, 1088, 1086 ] }, - { "weight": 8, "sprite": [ 1103, 1105, 1104, 1102 ] }, - { "weight": 8, "sprite": [ 1119, 1121, 1120, 1118 ] }, - { "weight": 8, "sprite": [ 1135, 1137, 1136, 1134 ] }, - { "weight": 8, "sprite": [ 1151, 1153, 1152, 1150 ] }, - { "weight": 8, "sprite": [ 1167, 1169, 1168, 1166 ] } + { "weight": 8, "sprite": [ 1062, 1064, 1063, 1061 ] }, + { "weight": 8, "sprite": [ 1078, 1080, 1079, 1077 ] }, + { "weight": 8, "sprite": [ 1094, 1096, 1095, 1093 ] }, + { "weight": 8, "sprite": [ 1110, 1112, 1111, 1109 ] }, + { "weight": 8, "sprite": [ 1126, 1128, 1127, 1125 ] }, + { "weight": 8, "sprite": [ 1142, 1144, 1143, 1141 ] }, + { "weight": 8, "sprite": [ 1158, 1160, 1159, 1157 ] }, + { "weight": 8, "sprite": [ 1174, 1176, 1175, 1173 ] } ] }, { "id": "t_connection", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1065, 1067, 1066, 1064 ] }, - { "weight": 8, "sprite": [ 1081, 1083, 1082, 1080 ] }, - { "weight": 8, "sprite": [ 1097, 1099, 1098, 1096 ] }, - { "weight": 8, "sprite": [ 1113, 1115, 1114, 1112 ] }, - { "weight": 8, "sprite": [ 1129, 1131, 1130, 1128 ] }, - { "weight": 8, "sprite": [ 1145, 1147, 1146, 1144 ] }, - { "weight": 8, "sprite": [ 1161, 1163, 1162, 1160 ] }, - { "weight": 8, "sprite": [ 1177, 1179, 1178, 1176 ] } + { "weight": 8, "sprite": [ 1072, 1074, 1073, 1071 ] }, + { "weight": 8, "sprite": [ 1088, 1090, 1089, 1087 ] }, + { "weight": 8, "sprite": [ 1104, 1106, 1105, 1103 ] }, + { "weight": 8, "sprite": [ 1120, 1122, 1121, 1119 ] }, + { "weight": 8, "sprite": [ 1136, 1138, 1137, 1135 ] }, + { "weight": 8, "sprite": [ 1152, 1154, 1153, 1151 ] }, + { "weight": 8, "sprite": [ 1168, 1170, 1169, 1167 ] }, + { "weight": 8, "sprite": [ 1184, 1186, 1185, 1183 ] } ] }, { "id": "edge", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1059, 1058 ] }, - { "weight": 8, "sprite": [ 1075, 1074 ] }, - { "weight": 8, "sprite": [ 1091, 1090 ] }, - { "weight": 8, "sprite": [ 1107, 1106 ] }, - { "weight": 8, "sprite": [ 1123, 1122 ] }, - { "weight": 8, "sprite": [ 1139, 1138 ] }, - { "weight": 8, "sprite": [ 1155, 1154 ] }, - { "weight": 8, "sprite": [ 1171, 1170 ] } + { "weight": 8, "sprite": [ 1066, 1065 ] }, + { "weight": 8, "sprite": [ 1082, 1081 ] }, + { "weight": 8, "sprite": [ 1098, 1097 ] }, + { "weight": 8, "sprite": [ 1114, 1113 ] }, + { "weight": 8, "sprite": [ 1130, 1129 ] }, + { "weight": 8, "sprite": [ 1146, 1145 ] }, + { "weight": 8, "sprite": [ 1162, 1161 ] }, + { "weight": 8, "sprite": [ 1178, 1177 ] } ] }, { "id": "end_piece", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1061, 1063, 1062, 1060 ] }, - { "weight": 8, "sprite": [ 1077, 1079, 1078, 1076 ] }, - { "weight": 8, "sprite": [ 1093, 1095, 1094, 1092 ] }, - { "weight": 8, "sprite": [ 1109, 1111, 1110, 1108 ] }, - { "weight": 8, "sprite": [ 1125, 1127, 1126, 1124 ] }, - { "weight": 8, "sprite": [ 1141, 1143, 1142, 1140 ] }, - { "weight": 8, "sprite": [ 1157, 1159, 1158, 1156 ] }, - { "weight": 8, "sprite": [ 1173, 1175, 1174, 1172 ] } + { "weight": 8, "sprite": [ 1068, 1070, 1069, 1067 ] }, + { "weight": 8, "sprite": [ 1084, 1086, 1085, 1083 ] }, + { "weight": 8, "sprite": [ 1100, 1102, 1101, 1099 ] }, + { "weight": 8, "sprite": [ 1116, 1118, 1117, 1115 ] }, + { "weight": 8, "sprite": [ 1132, 1134, 1133, 1131 ] }, + { "weight": 8, "sprite": [ 1148, 1150, 1149, 1147 ] }, + { "weight": 8, "sprite": [ 1164, 1166, 1165, 1163 ] }, + { "weight": 8, "sprite": [ 1180, 1182, 1181, 1179 ] } ] }, { "id": "unconnected", "animated": true, "fg": [ - { "weight": 8, "sprite": [ 1068, 1068 ] }, - { "weight": 8, "sprite": [ 1084, 1084 ] }, - { "weight": 8, "sprite": [ 1100, 1100 ] }, - { "weight": 8, "sprite": [ 1116, 1116 ] }, - { "weight": 8, "sprite": [ 1132, 1132 ] }, - { "weight": 8, "sprite": [ 1148, 1148 ] }, - { "weight": 8, "sprite": [ 1164, 1164 ] }, - { "weight": 8, "sprite": [ 1180, 1180 ] } + { "weight": 8, "sprite": [ 1075, 1075 ] }, + { "weight": 8, "sprite": [ 1091, 1091 ] }, + { "weight": 8, "sprite": [ 1107, 1107 ] }, + { "weight": 8, "sprite": [ 1123, 1123 ] }, + { "weight": 8, "sprite": [ 1139, 1139 ] }, + { "weight": 8, "sprite": [ 1155, 1155 ] }, + { "weight": 8, "sprite": [ 1171, 1171 ] }, + { "weight": 8, "sprite": [ 1187, 1187 ] } ] } ] }, { "id": "fd_hot_air_sauna", - "fg": 1196, + "fg": 1203, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1181 }, - { "id": "corner", "fg": [ 1183, 1185, 1184, 1182 ] }, - { "id": "t_connection", "fg": [ 1193, 1195, 1194, 1192 ] }, - { "id": "edge", "fg": [ 1187, 1186 ] }, - { "id": "end_piece", "fg": [ 1189, 1191, 1190, 1188 ] }, - { "id": "unconnected", "fg": [ 1196, 1196 ] } + { "id": "center", "fg": 1188 }, + { "id": "corner", "fg": [ 1190, 1192, 1191, 1189 ] }, + { "id": "t_connection", "fg": [ 1200, 1202, 1201, 1199 ] }, + { "id": "edge", "fg": [ 1194, 1193 ] }, + { "id": "end_piece", "fg": [ 1196, 1198, 1197, 1195 ] }, + { "id": "unconnected", "fg": [ 1203, 1203 ] } ] }, - { "id": "f_air_conditioner", "fg": 1197, "bg": 3663, "rotates": false }, - { "id": "f_arcade_machine", "fg": 1198, "rotates": false }, - { "id": "f_armchair", "fg": 1199, "rotates": false }, - { "id": [ "f_ash", "ash" ], "fg": 1200, "rotates": false }, - { "id": "f_ball_mach", "fg": 1201, "rotates": false }, - { "id": "f_barricade_road", "fg": 1202, "rotates": false }, + { "id": "f_air_conditioner", "fg": 1204, "bg": 3689, "rotates": false }, + { "id": "f_arcade_machine", "fg": 1205, "rotates": false }, + { "id": "f_armchair", "fg": 1206, "rotates": false }, + { "id": [ "f_ash", "ash" ], "fg": 1207, "rotates": false }, + { "id": "f_ball_mach", "fg": 1208, "rotates": false }, + { "id": "f_barricade_road", "fg": 1209, "rotates": false }, { "id": "f_bathtub", - "fg": 1203, + "fg": 1210, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1203 }, - { "id": "center", "fg": 1204 }, - { "id": "corner", "fg": 1205 }, - { "id": "edge", "fg": 1206 }, - { "id": "end_piece", "fg": 1207 }, - { "id": "t_connection", "fg": 1208 } + { "id": "unconnected", "fg": 1210 }, + { "id": "center", "fg": 1211 }, + { "id": "corner", "fg": 1212 }, + { "id": "edge", "fg": 1213 }, + { "id": "end_piece", "fg": 1214 }, + { "id": "t_connection", "fg": 1215 } ] }, { "id": "f_bed", - "fg": 1209, + "fg": 1216, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1209 }, - { "id": "corner", "fg": 1210 }, - { "id": "edge", "fg": 1211 }, - { "id": "end_piece", "fg": 1212 }, - { "id": "t_connection", "fg": 1213 }, - { "id": "unconnected", "fg": 1214 } - ] - }, - { "id": "f_bench", "fg": 4786, "rotates": true }, - { "id": "f_blade", "fg": 1215, "rotates": false }, - { "id": "f_blade_upright", "fg": 1216, "bg": [ ], "rotates": false }, - { "id": "f_boulder_medium", "fg": 1217, "rotates": false }, - { "id": "f_boulder_small", "fg": 1218, "rotates": false }, - { "id": "f_canvas_floor", "fg": 1237 }, - { "id": "f_cattails", "fg": 1219, "rotates": false }, - { "id": "f_center_groundsheet", "fg": 1237 }, - { "id": "f_chair", "fg": 1220, "rotates": false }, - { "id": "f_clay_kiln", "fg": 1255 }, - { "id": "f_coffin_c", "fg": 1221 }, - { "id": "f_coffin_o", "fg": 1222 }, - { "id": "f_displaycase", "fg": 1223, "rotates": false }, - { "id": "f_displaycase_b", "fg": 1224, "rotates": false }, - { "id": "f_dive_block", "fg": 1225, "rotates": false }, - { "id": "f_dryer", "fg": 1226, "rotates": false }, + { "id": "center", "fg": 1216 }, + { "id": "corner", "fg": 1217 }, + { "id": "edge", "fg": 1218 }, + { "id": "end_piece", "fg": 1219 }, + { "id": "t_connection", "fg": 1220 }, + { "id": "unconnected", "fg": 1221 } + ] + }, + { "id": "f_bench", "fg": 4828, "rotates": true }, + { "id": "f_blade", "fg": 1222, "rotates": false }, + { "id": "f_blade_upright", "fg": 1223, "bg": [ ], "rotates": false }, + { "id": "f_boulder_medium", "fg": 1224, "rotates": false }, + { "id": "f_boulder_small", "fg": 1225, "rotates": false }, + { "id": "f_canvas_floor", "fg": 1244 }, + { "id": "f_cattails", "fg": 1226, "rotates": false }, + { "id": "f_center_groundsheet", "fg": 1244 }, + { "id": "f_chair", "fg": 1227, "rotates": false }, + { "id": "f_clay_kiln", "fg": 1262 }, + { "id": "f_coffin_c", "fg": 1228 }, + { "id": "f_coffin_o", "fg": 1229 }, + { "id": "f_displaycase", "fg": 1230, "rotates": false }, + { "id": "f_displaycase_b", "fg": 1231, "rotates": false }, + { "id": "f_dive_block", "fg": 1232, "rotates": false }, + { "id": "f_dryer", "fg": 1233, "rotates": false }, { "id": "f_dumpster", - "fg": 1227, + "fg": 1234, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1227 }, - { "id": "center", "fg": 1228 }, - { "id": "corner", "fg": 1229 }, - { "id": "edge", "fg": 1230 }, - { "id": "end_piece", "fg": 1231 }, - { "id": "t_connection", "fg": 1232 } - ] - }, - { "id": "f_egg_sackbw", "fg": 1233, "rotates": false }, - { "id": "f_egg_sackcs", "fg": 1233, "rotates": false }, - { "id": "f_egg_sacke", "fg": 1234, "rotates": false }, - { "id": "f_egg_sackws", "fg": 1235, "rotates": false }, - { "id": "f_ergometer", "fg": 1236, "rotates": false }, - { "id": "f_fema_groundsheet", "fg": 1237, "rotates": false }, - { "id": "f_file_cabinet", "fg": 1238, "rotates": false }, - { "id": "f_fireplace", "fg": 1239, "rotates": false }, - { "id": "f_firering", "fg": 1319, "rotates": false }, - { "id": "f_floor_canvas", "fg": 1240, "rotates": false }, - { "id": "f_flower_fungal", "bg": 1340, "rotates": false }, - { "id": "f_forge_rock", "fg": 1239 }, - { "id": "f_fungal_clump", "fg": 1241, "bg": 1340, "rotates": false }, - { "id": "f_fungal_mass", "fg": 1242, "bg": 1340, "rotates": false }, - { "id": "f_glass_fridge", "fg": 1243, "rotates": false }, - { "id": "f_grave_head", "fg": 1244 }, - { "id": "f_grave_monument", "fg": 1245 }, - { "id": "f_grave_stone", "fg": 1246 }, - { "id": "f_grave_stone_old", "fg": 1247 }, - { "id": "f_groundsheet", "fg": 1237, "rotates": false }, - { "id": "f_gun_safe_el", "fg": 1250, "rotates": false }, - { "id": "f_gunsafe_mj", "fg": 1248, "rotates": false }, - { "id": "f_gunsafe_ml", "fg": 1249, "rotates": false }, - { "id": "f_hay", "fg": 1251, "rotates": false }, - { "id": "f_home_furnace", "fg": 1252, "bg": 3663, "rotates": false }, - { "id": "f_indoor_plant", "fg": 1253, "rotates": false }, - { "id": "f_indoor_plant_y", "fg": 1254, "rotates": false }, - { "id": "f_kiln_empty", "fg": 1255 }, - { "id": "f_kiln_full", "fg": 1255, "rotates": false }, - { "id": "f_ladder", "fg": 3491, "rotates": false }, + { "id": "unconnected", "fg": 1234 }, + { "id": "center", "fg": 1235 }, + { "id": "corner", "fg": 1236 }, + { "id": "edge", "fg": 1237 }, + { "id": "end_piece", "fg": 1238 }, + { "id": "t_connection", "fg": 1239 } + ] + }, + { "id": "f_egg_sackbw", "fg": 1240, "rotates": false }, + { "id": "f_egg_sackcs", "fg": 1240, "rotates": false }, + { "id": "f_egg_sacke", "fg": 1241, "rotates": false }, + { "id": "f_egg_sackws", "fg": 1242, "rotates": false }, + { "id": "f_ergometer", "fg": 1243, "rotates": false }, + { "id": "f_fema_groundsheet", "fg": 1244, "rotates": false }, + { "id": "f_file_cabinet", "fg": 1245, "rotates": false }, + { "id": "f_fireplace", "fg": 1246, "rotates": false }, + { "id": "f_firering", "fg": 1326, "rotates": false }, + { "id": "f_floor_canvas", "fg": 1247, "rotates": false }, + { "id": "f_flower_fungal", "bg": 1347, "rotates": false }, + { "id": "f_forge_rock", "fg": 1246 }, + { "id": "f_fungal_clump", "fg": 1248, "bg": 1347, "rotates": false }, + { "id": "f_fungal_mass", "fg": 1249, "bg": 1347, "rotates": false }, + { "id": "f_glass_fridge", "fg": 1250, "rotates": false }, + { "id": "f_grave_head", "fg": 1251 }, + { "id": "f_grave_monument", "fg": 1252 }, + { "id": "f_grave_stone", "fg": 1253 }, + { "id": "f_grave_stone_old", "fg": 1254 }, + { "id": "f_groundsheet", "fg": 1244, "rotates": false }, + { "id": "f_gun_safe_el", "fg": 1257, "rotates": false }, + { "id": "f_gunsafe_mj", "fg": 1255, "rotates": false }, + { "id": "f_gunsafe_ml", "fg": 1256, "rotates": false }, + { "id": "f_hay", "fg": 1258, "rotates": false }, + { "id": "f_home_furnace", "fg": 1259, "bg": 3689, "rotates": false }, + { "id": "f_indoor_plant", "fg": 1260, "rotates": false }, + { "id": "f_indoor_plant_y", "fg": 1261, "rotates": false }, + { "id": "f_kiln_empty", "fg": 1262 }, + { "id": "f_kiln_full", "fg": 1262, "rotates": false }, + { "id": "f_ladder", "fg": 3517, "rotates": false }, { "id": "f_lane", - "fg": 1256, + "fg": 1263, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1256 }, - { "id": "corner", "fg": 1257 }, - { "id": "edge", "fg": 1258 }, - { "id": "end_piece", "fg": 1259 } + { "id": "unconnected", "fg": 1263 }, + { "id": "corner", "fg": 1264 }, + { "id": "edge", "fg": 1265 }, + { "id": "end_piece", "fg": 1266 } ] }, - { "id": "f_large_groundsheet", "fg": 1237 }, - { "id": "f_lilypad", "fg": 1323, "rotates": false }, - { "id": "f_locker", "fg": 1238, "rotates": false }, - { "id": "f_mailbox", "fg": 1321, "rotates": false }, + { "id": "f_large_groundsheet", "fg": 1244 }, + { "id": "f_lilypad", "fg": 1330, "rotates": false }, + { "id": "f_locker", "fg": 1245, "rotates": false }, + { "id": "f_mailbox", "fg": 1328, "rotates": false }, { "id": "f_makeshift_bed", - "fg": 1260, + "fg": 1267, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1261 }, - { "id": "corner", "fg": 1262 }, - { "id": "edge", "fg": 1263 }, - { "id": "end_piece", "fg": 1264 }, - { "id": "t_connection", "fg": 1265 }, - { "id": "unconnected", "fg": 1266 } + { "id": "center", "fg": 1268 }, + { "id": "corner", "fg": 1269 }, + { "id": "edge", "fg": 1270 }, + { "id": "end_piece", "fg": 1271 }, + { "id": "t_connection", "fg": 1272 }, + { "id": "unconnected", "fg": 1273 } ] }, - { "id": "f_mannequin", "fg": 1267, "rotates": false }, - { "id": "f_mutcactus_test", "fg": 1268, "bg": 1341, "rotates": false }, - { "id": "f_piano", "fg": 1337, "rotates": false }, - { "id": "f_pinball_machine", "fg": 1269, "rotates": false }, - { "id": "f_plant_harvest", "fg": 1270, "bg": 3670, "rotates": false }, - { "id": "f_plant_mature", "fg": 1271, "bg": 3670, "rotates": false }, - { "id": "f_plant_seed", "fg": 1272, "bg": 3670, "rotates": false }, - { "id": "f_plant_seedling", "fg": 1273, "bg": 3670, "rotates": false }, + { "id": "f_mannequin", "fg": 1274, "rotates": false }, + { "id": "f_mutcactus_test", "fg": 1275, "bg": 1348, "rotates": false }, + { "id": "f_piano", "fg": 1344, "rotates": false }, + { "id": "f_pinball_machine", "fg": 1276, "rotates": false }, + { "id": "f_plant_harvest", "fg": 1277, "bg": 3695, "rotates": false }, + { "id": "f_plant_mature", "fg": 1278, "bg": 3695, "rotates": false }, + { "id": "f_plant_seed", "fg": 1279, "bg": 3695, "rotates": false }, + { "id": "f_plant_seedling", "fg": 1280, "bg": 3695, "rotates": false }, { "id": "f_pool_table", - "fg": 1274, + "fg": 1281, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 1274 }, { "id": "end_piece", "fg": 1275 }, { "id": "t_connection", "fg": 1276 } ] + "additional_tiles": [ { "id": "corner", "fg": 1281 }, { "id": "end_piece", "fg": 1282 }, { "id": "t_connection", "fg": 1283 } ] }, - { "id": "f_rack", "fg": 1277, "rotates": false }, - { "id": "f_rack_coat", "fg": 1322, "rotates": false }, + { "id": "f_rack", "fg": 1284, "rotates": false }, + { "id": "f_rack_coat", "fg": 1329, "rotates": false }, { "id": "f_recycle_bin", - "fg": 1227, + "fg": 1234, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1227 }, - { "id": "center", "fg": 1228 }, - { "id": "corner", "fg": 1229 }, - { "id": "edge", "fg": 1230 }, - { "id": "end_piece", "fg": 1231 }, - { "id": "t_connection", "fg": 1232 } + { "id": "unconnected", "fg": 1234 }, + { "id": "center", "fg": 1235 }, + { "id": "corner", "fg": 1236 }, + { "id": "edge", "fg": 1237 }, + { "id": "end_piece", "fg": 1238 }, + { "id": "t_connection", "fg": 1239 } ] }, - { "id": "f_robotic_arm", "fg": 3485, "rotates": false }, - { "id": "f_rubble", "fg": 1278, "rotates": false }, + { "id": "f_robotic_arm", "fg": 3511, "rotates": false }, + { "id": "f_rubble", "fg": 1285, "rotates": false }, { "id": "f_rubble_landfill", - "fg": 1324, + "fg": 1331, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1327 }, - { "id": "corner", "fg": 1325 }, - { "id": "edge", "fg": 1329 }, - { "id": "end_piece", "fg": 1328 }, - { "id": "t_connection", "fg": 1326 }, - { "id": "unconnected", "fg": 1324 } + { "id": "center", "fg": 1334 }, + { "id": "corner", "fg": 1332 }, + { "id": "edge", "fg": 1336 }, + { "id": "end_piece", "fg": 1335 }, + { "id": "t_connection", "fg": 1333 }, + { "id": "unconnected", "fg": 1331 } ] }, { "id": "f_rubble_landfill_season_winter", - "fg": 1330, + "fg": 1337, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1333 }, - { "id": "corner", "fg": 1331 }, - { "id": "edge", "fg": 1335 }, - { "id": "end_piece", "fg": 1334 }, - { "id": "t_connection", "fg": 1332 }, - { "id": "unconnected", "fg": 1330 } + { "id": "center", "fg": 1340 }, + { "id": "corner", "fg": 1338 }, + { "id": "edge", "fg": 1342 }, + { "id": "end_piece", "fg": 1341 }, + { "id": "t_connection", "fg": 1339 }, + { "id": "unconnected", "fg": 1337 } ] }, - { "id": "f_rubble_rock", "fg": 1279, "rotates": false }, + { "id": "f_rubble_rock", "fg": 1286, "rotates": false }, { "id": "f_sandbag_half", - "fg": 1320, + "fg": 1327, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1320 }, - { "id": "center", "fg": 1281 }, - { "id": "corner", "fg": 1282 }, - { "id": "edge", "fg": 1283 }, - { "id": "end_piece", "fg": 1284 }, - { "id": "t_connection", "fg": 1285 } + { "id": "unconnected", "fg": 1327 }, + { "id": "center", "fg": 1288 }, + { "id": "corner", "fg": 1289 }, + { "id": "edge", "fg": 1290 }, + { "id": "end_piece", "fg": 1291 }, + { "id": "t_connection", "fg": 1292 } ] }, { "id": "f_sandbag_wall", - "fg": 1280, + "fg": 1287, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1280 }, - { "id": "center", "fg": 1286 }, - { "id": "corner", "fg": 1287 }, - { "id": "edge", "fg": 1288 }, - { "id": "end_piece", "fg": 1289 }, - { "id": "t_connection", "fg": 1290 } + { "id": "unconnected", "fg": 1287 }, + { "id": "center", "fg": 1293 }, + { "id": "corner", "fg": 1294 }, + { "id": "edge", "fg": 1295 }, + { "id": "end_piece", "fg": 1296 }, + { "id": "t_connection", "fg": 1297 } ] }, - { "id": "f_shackle", "fg": 1291 }, - { "id": "f_shower", "fg": 1292, "rotates": false }, - { "id": "f_sign", "fg": 1293, "rotates": false }, - { "id": "f_skin_groundsheet", "fg": 1237 }, - { "id": "f_slab", "fg": 1294 }, - { "id": "f_smoking_rack", "fg": 1295, "rotates": false }, + { "id": "f_shackle", "fg": 1298 }, + { "id": "f_shower", "fg": 1299, "rotates": false }, + { "id": "f_sign", "fg": 1300, "rotates": false }, + { "id": "f_skin_groundsheet", "fg": 1244 }, + { "id": "f_slab", "fg": 1301 }, + { "id": "f_smoking_rack", "fg": 1302, "rotates": false }, { "id": "f_sofa", - "fg": 1296, + "fg": 1303, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 1296 }, - { "id": "corner", "fg": 1297 }, - { "id": "edge", "fg": 1298 }, - { "id": "end_piece", "fg": 1299 } + { "id": "unconnected", "fg": 1303 }, + { "id": "corner", "fg": 1304 }, + { "id": "edge", "fg": 1305 }, + { "id": "end_piece", "fg": 1306 } ] }, - { "id": "f_spike", "fg": 1300, "rotates": false }, - { "id": "f_standing_tank", "fg": 3474 }, - { "id": [ "f_statue", "t_sliding_brick_wall_control" ], "fg": 1301, "rotates": false }, - { "id": "f_straw_bed", "fg": 1302, "rotates": false }, - { "id": "f_tank_trap", "fg": 1338, "rotates": false }, - { "id": "f_target", "fg": 1336, "rotates": false }, + { "id": "f_spike", "fg": 1307, "rotates": false }, + { "id": "f_standing_tank", "fg": 3500 }, + { "id": [ "f_statue", "t_sliding_brick_wall_control" ], "fg": 1308, "rotates": false }, + { "id": "f_straw_bed", "fg": 1309, "rotates": false }, + { "id": "f_tank_trap", "fg": 1345, "rotates": false }, + { "id": "f_target", "fg": 1343, "rotates": false }, { "id": "f_tatami", - "fg": 1309, + "fg": 1316, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 1310 }, { "id": "edge", "fg": 1309 }, { "id": "t_connection", "fg": 1311 } ] + "additional_tiles": [ { "id": "corner", "fg": 1317 }, { "id": "edge", "fg": 1316 }, { "id": "t_connection", "fg": 1318 } ] }, - { "id": "f_toilet", "fg": 1312, "rotates": false }, - { "id": "f_trashcan", "fg": 1313, "rotates": false }, - { "id": "f_treadmill", "fg": 1314, "rotates": false }, - { "id": "f_vending_reinforced", "fg": 1315, "rotates": false }, - { "id": "f_wardrobe", "fg": 1339, "rotates": false }, - { "id": "f_washer", "fg": 1316, "rotates": false }, - { "id": "f_water_heater", "fg": 3500, "rotates": true }, - { "id": "f_woodstove", "fg": 1317, "rotates": false }, - { "id": "f_wreckage", "fg": 1318, "rotates": false }, + { "id": "f_toilet", "fg": 1319, "rotates": false }, + { "id": "f_trashcan", "fg": 1320, "rotates": false }, + { "id": "f_treadmill", "fg": 1321, "rotates": false }, + { "id": "f_vending_reinforced", "fg": 1322, "rotates": false }, + { "id": "f_wardrobe", "fg": 1346, "rotates": false }, + { "id": "f_washer", "fg": 1323, "rotates": false }, + { "id": "f_water_heater", "fg": 3526, "rotates": true }, + { "id": "f_woodstove", "fg": 1324, "rotates": false }, + { "id": "f_wreckage", "fg": 1325, "rotates": false }, { "id": "f_counter", - "fg": 1370, + "fg": 1377, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1355 }, - { "id": "corner", "fg": [ 1357, 1359, 1358, 1356 ] }, - { "id": "t_connection", "fg": [ 1367, 1369, 1368, 1366 ] }, - { "id": "edge", "fg": [ 1361, 1360 ] }, - { "id": "end_piece", "fg": [ 1363, 1365, 1364, 1362 ] }, - { "id": "unconnected", "fg": [ 1370, 1370 ] } + { "id": "center", "fg": 1362 }, + { "id": "corner", "fg": [ 1364, 1366, 1365, 1363 ] }, + { "id": "t_connection", "fg": [ 1374, 1376, 1375, 1373 ] }, + { "id": "edge", "fg": [ 1368, 1367 ] }, + { "id": "end_piece", "fg": [ 1370, 1372, 1371, 1369 ] }, + { "id": "unconnected", "fg": [ 1377, 1377 ] } ] }, { "id": "f_cupboard", - "fg": 1386, + "fg": 1393, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1371 }, - { "id": "corner", "fg": [ 1373, 1375, 1374, 1372 ] }, - { "id": "t_connection", "fg": [ 1383, 1385, 1384, 1382 ] }, - { "id": "edge", "fg": [ 1377, 1376 ] }, - { "id": "end_piece", "fg": [ 1379, 1381, 1380, 1378 ] }, - { "id": "unconnected", "fg": [ 1386, 1386 ] } + { "id": "center", "fg": 1378 }, + { "id": "corner", "fg": [ 1380, 1382, 1381, 1379 ] }, + { "id": "t_connection", "fg": [ 1390, 1392, 1391, 1389 ] }, + { "id": "edge", "fg": [ 1384, 1383 ] }, + { "id": "end_piece", "fg": [ 1386, 1388, 1387, 1385 ] }, + { "id": "unconnected", "fg": [ 1393, 1393 ] } ] }, { "id": "f_alien_table", - "fg": 1404, + "fg": 1411, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1389 }, - { "id": "corner", "fg": [ 1391, 1393, 1392, 1390 ] }, - { "id": "t_connection", "fg": [ 1401, 1403, 1402, 1400 ] }, - { "id": "edge", "fg": [ 1395, 1394 ] }, - { "id": "end_piece", "fg": [ 1397, 1399, 1398, 1396 ] }, - { "id": "unconnected", "fg": [ 1404, 1404 ] } + { "id": "center", "fg": 1396 }, + { "id": "corner", "fg": [ 1398, 1400, 1399, 1397 ] }, + { "id": "t_connection", "fg": [ 1408, 1410, 1409, 1407 ] }, + { "id": "edge", "fg": [ 1402, 1401 ] }, + { "id": "end_piece", "fg": [ 1404, 1406, 1405, 1403 ] }, + { "id": "unconnected", "fg": [ 1411, 1411 ] } ] }, { "id": "f_canvas_door", - "fg": 1408, + "fg": 1415, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1408 }, - { "id": "t_connection", "fg": [ 1408, 1407, 1408, 1407 ] }, - { "id": "edge", "fg": [ 1407, 1408 ] }, - { "id": "unconnected", "fg": [ 1408, 1408 ] } + { "id": "center", "fg": 1415 }, + { "id": "t_connection", "fg": [ 1415, 1414, 1415, 1414 ] }, + { "id": "edge", "fg": [ 1414, 1415 ] }, + { "id": "unconnected", "fg": [ 1415, 1415 ] } ] }, { "id": "f_canvas_door_o", - "fg": 1406, + "fg": 1413, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1406 }, - { "id": "t_connection", "fg": [ 1406, 1405, 1406, 1405 ] }, - { "id": "edge", "fg": [ 1405, 1406 ] }, - { "id": "unconnected", "fg": [ 1406, 1406 ] } + { "id": "center", "fg": 1413 }, + { "id": "t_connection", "fg": [ 1413, 1412, 1413, 1412 ] }, + { "id": "edge", "fg": [ 1412, 1413 ] }, + { "id": "unconnected", "fg": [ 1413, 1413 ] } ] }, { "id": "f_canvas_wall", - "fg": 1419, + "fg": 1426, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1419 }, - { "id": "corner", "fg": [ 1410, 1412, 1411, 1409 ] }, - { "id": "t_connection", "fg": [ 1413, 1414, 1413, 1414 ] }, - { "id": "edge", "fg": [ 1414, 1413 ] }, - { "id": "end_piece", "fg": [ 1416, 1418, 1417, 1415 ] }, - { "id": "unconnected", "fg": [ 1419, 1419 ] } + { "id": "center", "fg": 1426 }, + { "id": "corner", "fg": [ 1417, 1419, 1418, 1416 ] }, + { "id": "t_connection", "fg": [ 1420, 1421, 1420, 1421 ] }, + { "id": "edge", "fg": [ 1421, 1420 ] }, + { "id": "end_piece", "fg": [ 1423, 1425, 1424, 1422 ] }, + { "id": "unconnected", "fg": [ 1426, 1426 ] } ] }, - { "id": "f_cardboard_box", "fg": 1420 }, + { "id": "f_cardboard_box", "fg": 1427 }, { "id": "f_curtain", - "fg": 1436, + "fg": 1443, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1436 }, - { "id": "corner", "fg": [ 1422, 1424, 1423, 1421 ] }, - { "id": "t_connection", "fg": [ 1433, 1435, 1434, 1432 ] }, - { "id": "edge", "fg": [ 1426, 1425 ] }, - { "id": "end_piece", "fg": [ 1428, 1430, 1429, 1427 ] }, - { "id": "unconnected", "fg": [ 1436, 1436 ] } + { "id": "center", "fg": 1443 }, + { "id": "corner", "fg": [ 1429, 1431, 1430, 1428 ] }, + { "id": "t_connection", "fg": [ 1440, 1442, 1441, 1439 ] }, + { "id": "edge", "fg": [ 1433, 1432 ] }, + { "id": "end_piece", "fg": [ 1435, 1437, 1436, 1434 ] }, + { "id": "unconnected", "fg": [ 1443, 1443 ] } ] }, { "id": "f_desk", - "fg": 1449, + "fg": 1456, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1437 }, - { "id": "corner", "fg": [ 1439, 1441, 1440, 1438 ] }, - { "id": "t_connection", "fg": [ 1448, 1443, 1442, 1443 ] }, - { "id": "edge", "fg": [ 1443, 1442 ] }, - { "id": "end_piece", "fg": [ 1445, 1447, 1446, 1444 ] }, - { "id": "unconnected", "fg": [ 1449, 1449 ] } + { "id": "center", "fg": 1444 }, + { "id": "corner", "fg": [ 1446, 1448, 1447, 1445 ] }, + { "id": "t_connection", "fg": [ 1455, 1450, 1449, 1450 ] }, + { "id": "edge", "fg": [ 1450, 1449 ] }, + { "id": "end_piece", "fg": [ 1452, 1454, 1453, 1451 ] }, + { "id": "unconnected", "fg": [ 1456, 1456 ] } ] }, - { "id": "f_filing_cabinet", "rotates": true, "fg": [ 1451, 1454, 1453, 1452 ] }, + { "id": "f_filing_cabinet", "rotates": true, "fg": [ 1458, 1461, 1460, 1459 ] }, { "id": "f_large_canvas_door", - "fg": 1460, + "fg": 1467, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1460 }, - { "id": "t_connection", "fg": [ 1460, 1459, 1460, 1459 ] }, - { "id": "edge", "fg": [ 1459, 1460 ] }, - { "id": "unconnected", "fg": [ 1460, 1460 ] } + { "id": "center", "fg": 1467 }, + { "id": "t_connection", "fg": [ 1467, 1466, 1467, 1466 ] }, + { "id": "edge", "fg": [ 1466, 1467 ] }, + { "id": "unconnected", "fg": [ 1467, 1467 ] } ] }, { "id": "f_large_canvas_door_o", - "fg": 1458, + "fg": 1465, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1458 }, - { "id": "t_connection", "fg": [ 1458, 1457, 1458, 1457 ] }, - { "id": "edge", "fg": [ 1457, 1458 ] }, - { "id": "unconnected", "fg": [ 1458, 1458 ] } + { "id": "center", "fg": 1465 }, + { "id": "t_connection", "fg": [ 1465, 1464, 1465, 1464 ] }, + { "id": "edge", "fg": [ 1464, 1465 ] }, + { "id": "unconnected", "fg": [ 1465, 1465 ] } ] }, { "id": "f_large_canvas_wall", - "fg": 1471, + "fg": 1478, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1471 }, - { "id": "corner", "fg": [ 1462, 1464, 1463, 1461 ] }, - { "id": "t_connection", "fg": [ 1465, 1466, 1465, 1466 ] }, - { "id": "edge", "fg": [ 1466, 1465 ] }, - { "id": "end_piece", "fg": [ 1468, 1470, 1469, 1467 ] }, - { "id": "unconnected", "fg": [ 1471, 1471 ] } + { "id": "center", "fg": 1478 }, + { "id": "corner", "fg": [ 1469, 1471, 1470, 1468 ] }, + { "id": "t_connection", "fg": [ 1472, 1473, 1472, 1473 ] }, + { "id": "edge", "fg": [ 1473, 1472 ] }, + { "id": "end_piece", "fg": [ 1475, 1477, 1476, 1474 ] }, + { "id": "unconnected", "fg": [ 1478, 1478 ] } ] }, { "id": "f_skin_door", - "fg": 1476, + "fg": 1483, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1476 }, - { "id": "t_connection", "fg": [ 1476, 1475, 1476, 1475 ] }, - { "id": "edge", "fg": [ 1475, 1476 ] }, - { "id": "unconnected", "fg": [ 1476, 1476 ] } + { "id": "center", "fg": 1483 }, + { "id": "t_connection", "fg": [ 1483, 1482, 1483, 1482 ] }, + { "id": "edge", "fg": [ 1482, 1483 ] }, + { "id": "unconnected", "fg": [ 1483, 1483 ] } ] }, { "id": "f_skin_door_o", - "fg": 1474, + "fg": 1481, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1474 }, - { "id": "t_connection", "fg": [ 1474, 1473, 1474, 1473 ] }, - { "id": "edge", "fg": [ 1473, 1474 ] }, - { "id": "unconnected", "fg": [ 1474, 1474 ] } + { "id": "center", "fg": 1481 }, + { "id": "t_connection", "fg": [ 1481, 1480, 1481, 1480 ] }, + { "id": "edge", "fg": [ 1480, 1481 ] }, + { "id": "unconnected", "fg": [ 1481, 1481 ] } ] }, { "id": "f_skin_wall", - "fg": 1488, + "fg": 1495, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1488 }, - { "id": "corner", "fg": [ 1478, 1480, 1479, 1477 ] }, - { "id": "t_connection", "fg": [ 1482, 1481, 1482, 1481 ] }, - { "id": "edge", "fg": [ 1482, 1481 ] }, - { "id": "end_piece", "fg": [ 1484, 1486, 1485, 1483 ] }, - { "id": "unconnected", "fg": [ 1488, 1488 ] } + { "id": "center", "fg": 1495 }, + { "id": "corner", "fg": [ 1485, 1487, 1486, 1484 ] }, + { "id": "t_connection", "fg": [ 1489, 1488, 1489, 1488 ] }, + { "id": "edge", "fg": [ 1489, 1488 ] }, + { "id": "end_piece", "fg": [ 1491, 1493, 1492, 1490 ] }, + { "id": "unconnected", "fg": [ 1495, 1495 ] } ] }, { "id": "f_table", - "fg": 1505, + "fg": 1512, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 1490 }, - { "id": "corner", "fg": [ 1492, 1494, 1493, 1491 ] }, - { "id": "t_connection", "fg": [ 1502, 1504, 1503, 1501 ] }, - { "id": "edge", "fg": [ 1496, 1495 ] }, - { "id": "end_piece", "fg": [ 1498, 1500, 1499, 1497 ] }, - { "id": "unconnected", "fg": [ 1505, 1505 ] } + { "id": "center", "fg": 1497 }, + { "id": "corner", "fg": [ 1499, 1501, 1500, 1498 ] }, + { "id": "t_connection", "fg": [ 1509, 1511, 1510, 1508 ] }, + { "id": "edge", "fg": [ 1503, 1502 ] }, + { "id": "end_piece", "fg": [ 1505, 1507, 1506, 1504 ] }, + { "id": "unconnected", "fg": [ 1512, 1512 ] } ] }, - { "id": [ "2byarm_guard", "2byshin_guard" ], "fg": 1519 }, - { "id": "fried_eggs", "fg": 1563, "rotates": false }, - { "id": [ "money_one", "money_ten", "money_twenty" ], "fg": 1590 }, - { "id": [ "flyer", "necropolis_leaflet" ], "fg": 1641 }, + { "id": [ "2byarm_guard", "2byshin_guard" ], "fg": 1526 }, + { "id": "fried_eggs", "fg": 1570, "rotates": false }, + { "id": [ "money_one", "money_ten", "money_twenty" ], "fg": 1597 }, + { "id": [ "flyer", "necropolis_leaflet" ], "fg": 1648 }, { "id": [ "adv_chemistry", @@ -2338,7 +2338,7 @@ "modern_tanner", "repeater_mod_guide" ], - "fg": 1643 + "fg": 1650 }, { "id": [ @@ -2359,7 +2359,7 @@ "textbook_robots", "textbook_armschina" ], - "fg": 1650 + "fg": 1657 }, { "id": [ @@ -2374,7 +2374,7 @@ "cookbook_daintydishes", "cookbook_liverforkids" ], - "fg": 1644 + "fg": 1651 }, { "id": [ @@ -2387,7 +2387,7 @@ "recipe_melee", "recipe_labchem" ], - "fg": 1648 + "fg": 1655 }, { "id": [ @@ -2404,9 +2404,9 @@ "recipe_creepy", "recipe_maiar" ], - "fg": 1648 + "fg": 1655 }, - { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 1647 }, + { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 1654 }, { "id": [ "mag_rifle", @@ -2426,7 +2426,7 @@ "mag_launcher", "mag_swimming" ], - "fg": 1645 + "fg": 1652 }, { "id": [ @@ -2443,7 +2443,7 @@ "schematics_searchlight", "schematics_secubot" ], - "fg": 1649 + "fg": 1656 }, { "id": [ @@ -2463,9 +2463,9 @@ "manual_shotgun", "manual_fabrication" ], - "fg": 1646 + "fg": 1653 }, - { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 1642 }, + { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 1649 }, { "id": [ "mre_asianbeef_box", @@ -2479,7 +2479,7 @@ "mre_beef_box", "mre_beefstew_box" ], - "fg": 1680, + "fg": 1687, "rotates": false }, { @@ -2490,7 +2490,7 @@ "mre_mexicanchickenstew_box", "mre_chicken_box" ], - "fg": 1682, + "fg": 1689, "rotates": false }, { @@ -2504,38 +2504,37 @@ "mre_ratatouille_box", "mre_sfettuccine_box" ], - "fg": 1686, + "fg": 1693, "rotates": false }, - { "id": [ "mre_hotdog_box", "mre_hashbrownbacon_box", "mre_maplesausage_box" ], "fg": 1683, "rotates": false }, - { "id": [ "mre_accessory", "mre_dessert" ], "fg": 1685, "rotates": false }, - { "id": [ "plastic_plate", "soap_holder" ], "fg": 1770 }, - { "id": "1st_aid", "fg": 1688 }, - { "id": "2x4", "fg": 1689 }, - { "id": "RAM", "fg": 1690 }, - { "id": "helmet_motor", "fg": 1691 }, - { "id": "223_casing", "fg": 1692 }, - { "id": "40mm_casing", "fg": 1693 }, - { "id": "40x46mm_m118_casing", "fg": 1693 }, - { "id": "50_casing", "fg": 1694 }, - { "id": "9mm_casing", "fg": 1695 }, - { "id": "arrow_cf", "fg": 1696 }, - { "id": "arrow_exploding", "fg": 1697 }, - { "id": "arrow_field_point_fletched", "fg": 1698 }, - { "id": "arrow_fire_hardened_fletched", "fg": 1699 }, - { "id": "arrow_flammable", "fg": 1700 }, - { "id": "arrow_flamming", "fg": 1701 }, - { "id": "arrow_heavy_fire_hardened_fletched", "fg": 1702 }, - { "id": "arrow_metal", "fg": 1703 }, - { "id": "arrow_metal_sharpened_fletched", "fg": 1704 }, - { "id": "arrow_plastic", "fg": 1705 }, - { "id": "arrow_small_game_fletched", "fg": 1706 }, - { "id": "arrow_wood", "fg": 1707 }, - { "id": "arrow_wood_heavy", "fg": 1708 }, - { "id": "bolt_cf", "fg": 1709 }, - { "id": "bolt_explosive", "fg": 1710 }, - { "id": "bolt_metal", "fg": 1711 }, - { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 1712 }, + { "id": [ "mre_hotdog_box", "mre_hashbrownbacon_box", "mre_maplesausage_box" ], "fg": 1690, "rotates": false }, + { "id": [ "mre_accessory", "mre_dessert" ], "fg": 1692, "rotates": false }, + { "id": [ "plastic_plate", "soap_holder" ], "fg": 1776 }, + { "id": "2x4", "fg": 1695 }, + { "id": "RAM", "fg": 1696 }, + { "id": "helmet_motor", "fg": 1697 }, + { "id": "223_casing", "fg": 1698 }, + { "id": "40mm_casing", "fg": 1699 }, + { "id": "40x46mm_m118_casing", "fg": 1699 }, + { "id": "50_casing", "fg": 1700 }, + { "id": "9mm_casing", "fg": 1701 }, + { "id": "arrow_cf", "fg": 1702 }, + { "id": "arrow_exploding", "fg": 1703 }, + { "id": "arrow_field_point_fletched", "fg": 1704 }, + { "id": "arrow_fire_hardened_fletched", "fg": 1705 }, + { "id": "arrow_flammable", "fg": 1706 }, + { "id": "arrow_flamming", "fg": 1707 }, + { "id": "arrow_heavy_fire_hardened_fletched", "fg": 1708 }, + { "id": "arrow_metal", "fg": 1709 }, + { "id": "arrow_metal_sharpened_fletched", "fg": 1710 }, + { "id": "arrow_plastic", "fg": 1711 }, + { "id": "arrow_small_game_fletched", "fg": 1712 }, + { "id": "arrow_wood", "fg": 1713 }, + { "id": "arrow_wood_heavy", "fg": 1714 }, + { "id": "bolt_cf", "fg": 1715 }, + { "id": "bolt_explosive", "fg": 1716 }, + { "id": "bolt_metal", "fg": 1717 }, + { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 1718 }, { "id": [ "bolt_wood", @@ -2546,865 +2545,879 @@ "bolt_wood_bodkin", "bolt_wood_small_game" ], - "fg": 1713 - }, - { "id": "shot_hull", "fg": 1714 }, - { "id": "art_sphere", "fg": 1729 }, - { "id": "art_rod", "fg": 1727 }, - { "id": "art_teardrop", "fg": 1731 }, - { "id": "art_lamp", "fg": 1723 }, - { "id": "art_snake", "fg": 1728 }, - { "id": "art_disc", "fg": 1720 }, - { "id": "art_beads", "fg": 1717 }, - { "id": "art_napkin", "fg": 1724 }, - { "id": "art_urchin", "fg": 1733 }, - { "id": "art_jelly", "fg": 1721 }, - { "id": "art_spiral", "fg": 1730 }, - { "id": "art_pin", "fg": 1725 }, - { "id": "art_tube", "fg": 1732 }, - { "id": "art_pyramid", "fg": 1726 }, - { "id": "art_crystal", "fg": 1719 }, - { "id": "art_knot", "fg": 1722 }, - { "id": "art_crescent", "fg": 1718 }, - { "id": "altered_teapot", "fg": 1715 }, - { "id": "architect_cube", "fg": 1716 }, - { "id": "fire_ax", "fg": 2416 }, - { "id": "ax", "fg": 1735 }, - { "id": "hatchet", "fg": 1734 }, - { "id": "backpack", "fg": 1736 }, - { "id": "duffelbag", "fg": 1737 }, - { "id": "molle_pack", "fg": 1738 }, - { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 1741 }, - { "id": "bag_canvas", "fg": 1744 }, - { "id": "basket_laundry", "fg": 1745 }, - { "id": "bat", "fg": 1746 }, - { "id": "bat_metal", "fg": 1747 }, - { "id": "heavy_battery_cell", "fg": 1749 }, - { "id": "heavy_plus_battery_cell", "fg": 1749 }, - { "id": "heavy_disposable_cell", "fg": 1749 }, - { "id": "heavy_atomic_battery_cell", "fg": 1748 }, - { "id": "light_battery_cell", "fg": 1751 }, - { "id": "light_minus_battery_cell", "fg": 1753 }, - { "id": "light_plus_battery_cell", "fg": 1751 }, - { "id": "light_disposable_battery_cell", "fg": 1751 }, - { "id": "light_atomic_battery_cell", "fg": 1750 }, - { "id": "light_minus_atomic_battery_cell", "fg": 1752 }, - { "id": "medium_battery_cell", "fg": 1755 }, - { "id": "medium_plus_battery_cell", "fg": 1755 }, - { "id": "medium_disposable_battery_cell", "fg": 1755 }, - { "id": "medium_atomic_battery_cell", "fg": 1754 }, - { "id": "bead_bracelet", "fg": 1756 }, - { "id": "board_trap", "fg": 1757 }, - { "id": "bone", "fg": 1758 }, - { "id": "bone_tainted", "fg": 1759 }, - { "id": "bottle_twoliter", "fg": 1760 }, - { "id": "box_large", "fg": 1761 }, - { "id": "box_medium", "fg": 1762 }, - { "id": "broom", "fg": 1763 }, - { "id": "knife_butcher", "fg": 1765 }, - { "id": "bwirebat", "fg": 1766 }, - { "id": "cattlefodder", "fg": 1767 }, - { "id": "ceramic_cup", "fg": 1768 }, - { "id": "ceramic_mug", "fg": 1769 }, - { "id": "ceramic_plate", "fg": 1770 }, - { "id": "chain", "fg": 1771 }, - { "id": "chainsaw_off", "fg": 1772 }, - { "id": "clay_lump", "fg": 1773 }, - { "id": "clay_watercont", "fg": 1776 }, - { "id": "clay_hydria", "fg": 1774 }, - { "id": "coffeemaker", "fg": 1808 }, - { "id": "bag_zipper", "fg": 1809 }, - { "id": "bottle_glass", "fg": 1810 }, - { "id": "bottle_plastic", "fg": 1811 }, - { "id": "bottle_plastic_small", "fg": 1812 }, - { "id": "box_cigarette", "fg": 1813 }, - { "id": "box_small", "fg": 1814 }, - { "id": "can_drink", "fg": 1815 }, - { "id": [ "can_drink_unsealed" ], "fg": 1816 }, - { "id": [ "glass", "base_glass_dish", "wine_glass" ], "fg": 1817 }, - { "id": "jar_3l_glass", "fg": 1818 }, - { "id": "jar_3l_glass_sealed", "fg": 1819 }, - { "id": "jar_glass", "fg": 1820 }, - { "id": "jar_glass_sealed", "fg": 1821 }, - { "id": "jug_plastic", "fg": 1822 }, - { "id": "crossbow", "fg": 1823 }, - { "id": "crowbar", "fg": 1824 }, - { "id": "cudgel", "fg": 1825 }, - { "id": "filter_air", "fg": 1826 }, - { "id": "fish_bait", "fg": 1827 }, - { "id": "corpse_mon_fish_tiny", "fg": 1831 }, - { "id": "corpse_mon_fish_small", "fg": 1830 }, - { "id": "corpse_mon_fish_medium", "fg": 1829 }, - { "id": "corpse_mon_fish_large", "fg": 1828 }, - { "id": "fish_trap", "fg": 1832 }, - { "id": "forge", "fg": 1834 }, - { "id": "char_forge", "fg": 1833 }, - { "id": [ "glock_17", "glock_19", "glock_18c", "glock_22", "glock_31" ], "fg": 1835 }, - { "id": "hoboreel", "fg": 1836 }, - { "id": "hydrogen_tank", "fg": 1837 }, - { "id": "inhaler", "fg": 1838 }, - { "id": "knife_chef", "fg": 1839 }, - { "id": "knife_rm42", "fg": 1840 }, - { "id": "leather_tarp", "fg": 1841 }, - { "id": "water", "fg": 1858 }, - { "id": "water_clean", "fg": 1859 }, - { "id": "gasoline", "fg": 1847 }, - { "id": "diesel", "fg": 2396 }, - { "id": "biodiesel", "fg": 1843 }, - { "id": "flamethrower_fuel", "fg": 1846 }, - { "id": "avgas", "fg": 1842 }, - { "id": "lamp_oil", "fg": 1850 }, - { "id": "motor_oil", "fg": 1852 }, - { "id": "napalm", "fg": 1853 }, - { "id": "gelled_gasoline", "fg": 1848 }, - { "id": "blood", "fg": 1844 }, - { "id": [ "oj", "lemonade" ], "fg": 1854 }, - { "id": "log", "fg": 1860 }, - { "id": "longbow", "fg": 1861 }, - { "id": "lucern_hammer", "fg": 1862 }, - { "id": "machete", "fg": 1863 }, - { "id": "matches", "fg": 1864 }, - { "id": "joint", "fg": 1874 }, - { "id": "joint_lit", "fg": 1875 }, - { "id": "aspirin", "fg": 1868 }, - { "id": "bandages", "fg": 1869 }, - { "id": "antibiotics", "fg": 1865 }, - { "id": "weak_antibiotic", "fg": 1881 }, - { "id": "strong_antibiotic", "fg": 1878 }, - { "id": "vitamins", "fg": 1880 }, - { "id": "gummy_vitamins", "fg": 1872 }, - { "id": "calcium_tablet", "fg": 1870 }, - { "id": "oxycodone", "fg": 1876 }, - { "id": "tramadol", "fg": 1879 }, - { "id": "codeine", "fg": 1871 }, - { "id": "prussian_blue", "fg": 1877 }, - { "id": "iodine", "fg": 1873 }, - { "id": "antiparasitic", "fg": 1867 }, - { "id": "antifungal", "fg": 1866 }, - { "id": "microwave", "fg": 1882 }, - { "id": "money_bundle", "fg": 1883 }, - { "id": "mop", "fg": 1884 }, - { "id": "mp5mag", "fg": 1885 }, - { "id": "nail", "fg": 1886 }, - { "id": "nailbat", "fg": 1887 }, - { "id": "nailboard", "fg": 1888 }, - { "id": "needle_bone", "fg": 1889 }, - { "id": "needle_curved", "fg": 1890 }, - { "id": "needle_wood", "fg": 1891 }, - { "id": [ "many_years_old_newspaper" ], "fg": 1892 }, - { "id": "years_old_newspaper", "fg": 1897 }, - { "id": "months_old_newspaper", "fg": 1893 }, - { "id": "newest_newspaper", "fg": 1894 }, - { "id": "one_year_old_newspaper", "fg": 1895 }, - { "id": "weeks_old_newspaper", "fg": 1896 }, - { "id": "pan", "fg": 1898 }, - { "id": "2h_flail_wood", "fg": 1899 }, - { "id": "pine_bough", "fg": 1900 }, - { "id": "pinecone", "fg": 1901 }, - { "id": "pipe", "fg": 1903 }, - { "id": "cu_pipe", "fg": 1902 }, + "fg": 1719 + }, + { "id": "shot_hull", "fg": 1720 }, + { "id": "art_sphere", "fg": 1735 }, + { "id": "art_rod", "fg": 1733 }, + { "id": "art_teardrop", "fg": 1737 }, + { "id": "art_lamp", "fg": 1729 }, + { "id": "art_snake", "fg": 1734 }, + { "id": "art_disc", "fg": 1726 }, + { "id": "art_beads", "fg": 1723 }, + { "id": "art_napkin", "fg": 1730 }, + { "id": "art_urchin", "fg": 1739 }, + { "id": "art_jelly", "fg": 1727 }, + { "id": "art_spiral", "fg": 1736 }, + { "id": "art_pin", "fg": 1731 }, + { "id": "art_tube", "fg": 1738 }, + { "id": "art_pyramid", "fg": 1732 }, + { "id": "art_crystal", "fg": 1725 }, + { "id": "art_knot", "fg": 1728 }, + { "id": "art_crescent", "fg": 1724 }, + { "id": "altered_teapot", "fg": 1721 }, + { "id": "architect_cube", "fg": 1722 }, + { "id": "fire_ax", "fg": 2421 }, + { "id": "ax", "fg": 1741 }, + { "id": "hatchet", "fg": 1740 }, + { "id": "backpack", "fg": 1742 }, + { "id": "duffelbag", "fg": 1743 }, + { "id": "molle_pack", "fg": 1744 }, + { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 1747 }, + { "id": "bag_canvas", "fg": 1750 }, + { "id": "basket_laundry", "fg": 1751 }, + { "id": "bat", "fg": 1752 }, + { "id": "bat_metal", "fg": 1753 }, + { "id": "heavy_battery_cell", "fg": 1755 }, + { "id": "heavy_plus_battery_cell", "fg": 1755 }, + { "id": "heavy_disposable_cell", "fg": 1755 }, + { "id": "heavy_atomic_battery_cell", "fg": 1754 }, + { "id": "light_battery_cell", "fg": 1757 }, + { "id": "light_minus_battery_cell", "fg": 1759 }, + { "id": "light_plus_battery_cell", "fg": 1757 }, + { "id": "light_disposable_battery_cell", "fg": 1757 }, + { "id": "light_atomic_battery_cell", "fg": 1756 }, + { "id": "light_minus_atomic_battery_cell", "fg": 1758 }, + { "id": "medium_battery_cell", "fg": 1761 }, + { "id": "medium_plus_battery_cell", "fg": 1761 }, + { "id": "medium_disposable_battery_cell", "fg": 1761 }, + { "id": "medium_atomic_battery_cell", "fg": 1760 }, + { "id": "bead_bracelet", "fg": 1762 }, + { "id": "board_trap", "fg": 1763 }, + { "id": "bone", "fg": 1764 }, + { "id": "bone_tainted", "fg": 1765 }, + { "id": "bottle_twoliter", "fg": 1766 }, + { "id": "box_large", "fg": 1767 }, + { "id": "box_medium", "fg": 1768 }, + { "id": "broom", "fg": 1769 }, + { "id": "knife_butcher", "fg": 1771 }, + { "id": "bwirebat", "fg": 1772 }, + { "id": "cattlefodder", "fg": 1773 }, + { "id": "ceramic_cup", "fg": 1774 }, + { "id": "ceramic_mug", "fg": 1775 }, + { "id": "ceramic_plate", "fg": 1776 }, + { "id": "chain", "fg": 1777 }, + { "id": "chainsaw_off", "fg": 1778 }, + { "id": "clay_lump", "fg": 1779 }, + { "id": "clay_watercont", "fg": 1782 }, + { "id": "clay_hydria", "fg": 1780 }, + { "id": "coffeemaker", "fg": 1814 }, + { "id": "bag_zipper", "fg": 1815 }, + { "id": "bottle_glass", "fg": 1816 }, + { "id": "bottle_plastic", "fg": 1817 }, + { "id": "bottle_plastic_small", "fg": 1818 }, + { "id": "box_cigarette", "fg": 1819 }, + { "id": "box_small", "fg": 1820 }, + { "id": "can_drink", "fg": 1821 }, + { "id": [ "can_drink_unsealed" ], "fg": 1822 }, + { "id": [ "glass", "base_glass_dish", "wine_glass" ], "fg": 1823 }, + { "id": "jar_3l_glass", "fg": 1824 }, + { "id": "jar_3l_glass_sealed", "fg": 1825 }, + { "id": "jar_glass", "fg": 1826 }, + { "id": "jar_glass_sealed", "fg": 1827 }, + { "id": "jug_plastic", "fg": 1828 }, + { "id": "crossbow", "fg": 1829 }, + { "id": "crowbar", "fg": 1830 }, + { "id": "cudgel", "fg": 1831 }, + { "id": "filter_air", "fg": 1832 }, + { "id": "fish_bait", "fg": 1833 }, + { "id": "corpse_mon_fish_tiny", "fg": 1837 }, + { "id": "corpse_mon_fish_small", "fg": 1836 }, + { "id": "corpse_mon_fish_medium", "fg": 1835 }, + { "id": "corpse_mon_fish_large", "fg": 1834 }, + { "id": "fish_trap", "fg": 1838 }, + { "id": "forge", "fg": 1840 }, + { "id": "char_forge", "fg": 1839 }, + { "id": [ "glock_17", "glock_19", "glock_18c", "glock_22", "glock_31" ], "fg": 1841 }, + { "id": "hoboreel", "fg": 1842 }, + { "id": "hydrogen_tank", "fg": 1843 }, + { "id": "inhaler", "fg": 1844 }, + { "id": "knife_chef", "fg": 1845 }, + { "id": "knife_rm42", "fg": 1846 }, + { "id": "leather_tarp", "fg": 1847 }, + { "id": "water", "fg": 1864 }, + { "id": "water_clean", "fg": 1865 }, + { "id": "gasoline", "fg": 1853 }, + { "id": "diesel", "fg": 2401 }, + { "id": "biodiesel", "fg": 1849 }, + { "id": "flamethrower_fuel", "fg": 1852 }, + { "id": "avgas", "fg": 1848 }, + { "id": "lamp_oil", "fg": 1856 }, + { "id": "motor_oil", "fg": 1858 }, + { "id": "napalm", "fg": 1859 }, + { "id": "gelled_gasoline", "fg": 1854 }, + { "id": "blood", "fg": 1850 }, + { "id": [ "oj", "lemonade" ], "fg": 1860 }, + { "id": "log", "fg": 1866 }, + { "id": "longbow", "fg": 1867 }, + { "id": "lucern_hammer", "fg": 1868 }, + { "id": "machete", "fg": 1869 }, + { "id": "matches", "fg": 1870 }, + { "id": "joint", "fg": 1880 }, + { "id": "joint_lit", "fg": 1881 }, + { "id": "aspirin", "fg": 1874 }, + { "id": "bandages", "fg": 1875 }, + { "id": "antibiotics", "fg": 1871 }, + { "id": "weak_antibiotic", "fg": 1887 }, + { "id": "strong_antibiotic", "fg": 1884 }, + { "id": "vitamins", "fg": 1886 }, + { "id": "gummy_vitamins", "fg": 1878 }, + { "id": "calcium_tablet", "fg": 1876 }, + { "id": "oxycodone", "fg": 1882 }, + { "id": "tramadol", "fg": 1885 }, + { "id": "codeine", "fg": 1877 }, + { "id": "prussian_blue", "fg": 1883 }, + { "id": "iodine", "fg": 1879 }, + { "id": "antiparasitic", "fg": 1873 }, + { "id": "antifungal", "fg": 1872 }, + { "id": "microwave", "fg": 1888 }, + { "id": "money_bundle", "fg": 1889 }, + { "id": "mop", "fg": 1890 }, + { "id": "mp5mag", "fg": 1891 }, + { "id": "nail", "fg": 1892 }, + { "id": "nailbat", "fg": 1893 }, + { "id": "nailboard", "fg": 1894 }, + { "id": "needle_bone", "fg": 1895 }, + { "id": "needle_curved", "fg": 1896 }, + { "id": "needle_wood", "fg": 1897 }, + { "id": [ "many_years_old_newspaper" ], "fg": 1898 }, + { "id": "years_old_newspaper", "fg": 1903 }, + { "id": "months_old_newspaper", "fg": 1899 }, + { "id": "newest_newspaper", "fg": 1900 }, + { "id": "one_year_old_newspaper", "fg": 1901 }, + { "id": "weeks_old_newspaper", "fg": 1902 }, + { "id": "pan", "fg": 1904 }, + { "id": "2h_flail_wood", "fg": 1905 }, + { "id": "pine_bough", "fg": 1906 }, + { "id": "pinecone", "fg": 1907 }, + { "id": "pipe", "fg": 1909 }, + { "id": "cu_pipe", "fg": 1908 }, { "id": [ "rifle_9mm", "rifle_3006", "rifle_45", "rifle_22", "rifle_40", "rifle_44", "rifle_38", "rifle_223" ], - "fg": 1904 - }, - { "id": "pipe_shotgun", "fg": 1905 }, - { "id": "plastic_sheet", "fg": 1906 }, - { "id": "pneumatic_shotgun", "fg": 1909 }, - { "id": "pot", "fg": 1911 }, - { "id": "powder_candy", "fg": 1912 }, - { "id": "rag", "fg": 1913 }, - { "id": "rag_bloody", "fg": 1914 }, - { "id": "rebar", "fg": 1915 }, - { "id": "rock", "fg": 1916 }, - { "id": "rolling_pin", "fg": 1917 }, - { "id": "fur_rollmat", "fg": 1918 }, - { "id": "rollmat", "fg": 1919 }, - { "id": "scissors", "fg": 1920 }, - { "id": "screwdriver", "fg": 1921 }, - { "id": "sewing_kit", "fg": 1922 }, - { "id": "sharp_rock", "fg": 1923 }, - { "id": "sheet_metal", "fg": 1924 }, - { "id": "shovel", "fg": 1925 }, - { "id": "slingshot", "fg": 1926 }, - { "id": "solar_panel", "fg": 1928 }, - { "id": "solar_cell", "fg": 1927 }, - { "id": "pointy_stick", "fg": 1929 }, - { "id": "spear_wood", "fg": 1937 }, - { "id": "spear_spike", "fg": 1935 }, - { "id": "spear_knife", "fg": 1931 }, - { "id": "spear_knife_superior", "fg": 1932 }, - { "id": "spear_pipe", "fg": 1933 }, - { "id": "spear_rebar", "fg": 1934 }, - { "id": "spear_steel", "fg": 1936 }, - { "id": "spear_copper", "fg": 1930 }, - { "id": "splinter", "fg": 1938 }, - { "id": "sponge", "fg": 1939 }, - { "id": "spring", "fg": 1940 }, - { "id": "stick", "fg": 1941 }, - { "id": "stick_long", "fg": 1942 }, - { "id": "primitive_hammer", "fg": 1943 }, - { "id": "string_36", "fg": 1944 }, - { "id": "string_6", "fg": 1945 }, - { "id": "survnote", "fg": 1946 }, - { "id": "tailors_kit", "fg": 1947 }, - { "id": "creepy_doll", "fg": 1948 }, - { "id": "talking_doll", "fg": 1948 }, - { "id": "tarp", "fg": 1949 }, - { "id": "television", "fg": 1950 }, - { "id": "thread", "fg": 1951 }, - { "id": "crucible_clay", "fg": 1952 }, - { "id": "flashlight", "fg": 1953 }, - { "id": "heavy_flashlight", "fg": 1955 }, - { "id": "saw", "fg": 1962 }, - { "id": "wrench", "fg": 1963 }, - { "id": "hammer", "fg": 1954 }, - { "id": "knife_meat_cleaver", "fg": 1959 }, - { "id": "knife_vegetable_cleaver", "fg": 1961 }, + "fg": 1910 + }, + { "id": "pipe_shotgun", "fg": 1911 }, + { "id": "plastic_sheet", "fg": 1912 }, + { "id": "pneumatic_shotgun", "fg": 1915 }, + { "id": "pot", "fg": 1917 }, + { "id": "powder_candy", "fg": 1918 }, + { "id": "rag", "fg": 1919 }, + { "id": "rag_bloody", "fg": 1920 }, + { "id": "rebar", "fg": 1921 }, + { "id": "rock", "fg": 1922 }, + { "id": "rolling_pin", "fg": 1923 }, + { "id": "fur_rollmat", "fg": 1924 }, + { "id": "rollmat", "fg": 1925 }, + { "id": "scissors", "fg": 1926 }, + { "id": "screwdriver", "fg": 1927 }, + { "id": "sewing_kit", "fg": 1928 }, + { "id": "sharp_rock", "fg": 1929 }, + { "id": "sheet_metal", "fg": 1930 }, + { "id": "shovel", "fg": 1931 }, + { "id": "slingshot", "fg": 1932 }, + { "id": "solar_panel", "fg": 1934 }, + { "id": "solar_cell", "fg": 1933 }, + { "id": "pointy_stick", "fg": 1935 }, + { "id": "spear_wood", "fg": 1943 }, + { "id": "spear_spike", "fg": 1941 }, + { "id": "spear_knife", "fg": 1937 }, + { "id": "spear_knife_superior", "fg": 1938 }, + { "id": "spear_pipe", "fg": 1939 }, + { "id": "spear_rebar", "fg": 1940 }, + { "id": "spear_steel", "fg": 1942 }, + { "id": "spear_copper", "fg": 1936 }, + { "id": "splinter", "fg": 1944 }, + { "id": "sponge", "fg": 1945 }, + { "id": "spring", "fg": 1946 }, + { "id": "stick", "fg": 1947 }, + { "id": "stick_long", "fg": 1948 }, + { "id": "primitive_hammer", "fg": 1949 }, + { "id": "string_36", "fg": 1950 }, + { "id": "string_6", "fg": 1951 }, + { "id": "survnote", "fg": 1952 }, + { "id": "tailors_kit", "fg": 1953 }, + { "id": "creepy_doll", "fg": 1954 }, + { "id": "talking_doll", "fg": 1954 }, + { "id": "tarp", "fg": 1955 }, + { "id": "television", "fg": 1956 }, + { "id": "thread", "fg": 1957 }, + { "id": "crucible_clay", "fg": 1958 }, + { "id": "flashlight", "fg": 1959 }, + { "id": "heavy_flashlight", "fg": 1961 }, + { "id": "saw", "fg": 1968 }, + { "id": "wrench", "fg": 1969 }, + { "id": "hammer", "fg": 1960 }, + { "id": "knife_meat_cleaver", "fg": 1965 }, + { "id": "knife_vegetable_cleaver", "fg": 1967 }, { "id": "lighter", - "fg": [ { "weight": 1, "sprite": 1957 }, { "weight": 1, "sprite": 1956 }, { "weight": 1, "sprite": 1958 } ] - }, - { "id": "usb_drive", "fg": 1960 }, - { "id": "cash_card", "fg": 1964 }, - { "id": "fp_loyalty_card", "fg": 1965 }, - { "id": "id_industrial", "fg": 1966 }, - { "id": "id_military", "fg": 1967 }, - { "id": "id_science", "fg": 1968 }, - { "id": "bowl_plastic", "fg": 1969 }, - { "id": "cup_plastic", "fg": 1970 }, - { "id": "fork", "fg": 1971 }, - { "id": "glass_plate", "fg": 1972 }, - { "id": "knife_butter", "fg": 1973 }, - { "id": "2h_flail_steel", "fg": 1977 }, - { "id": "washboard", "fg": 1979 }, - { "id": "wash_kit", "fg": 1978 }, - { "id": "welder", "fg": 1980 }, - { "id": "welder_crude", "fg": 1981 }, - { "id": "wood_panel", "fg": 1982 }, - { "id": "wood_sheet", "fg": 1983 }, - { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 2041 }, - { "id": [ "ak47", "aksemi" ], "fg": 1991 }, - { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 2005 }, - { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 2042 }, - { "id": [ "m249", "m249_semi" ], "fg": 2049 }, - { "id": [ "m60", "m60_semi" ], "fg": 2059 }, - { "id": [ "mp40", "mp40semi" ], "fg": 2075 }, - { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 2114 }, - { "id": "corpse_mon_alpha_razorclaw", "fg": 2133, "rotates": false }, - { "id": "corpse_mon_ant", "fg": 2134, "rotates": false }, - { "id": "corpse_mon_ant_gueen", "fg": 2135, "rotates": false }, - { "id": "corpse_mon_ant_larva", "fg": 2136, "rotates": false }, - { "id": "corpse_mon_ant_soldier", "fg": 2137, "rotates": false }, - { "id": "corpse_mon_bat", "fg": 2138, "rotates": false }, - { "id": "corpse_mon_bear", "fg": 2139, "rotates": false }, - { "id": "corpse_mon_bee", "fg": 2140, "rotates": false }, - { "id": "corpse_mon_biollante", "fg": 2141, "rotates": false }, - { "id": "corpse_mon_black_rat", "fg": 2142, "rotates": false }, - { "id": "corpse_mon_blank", "fg": 2143, "rotates": false }, - { "id": "corpse_mon_broken_cyborg", "fg": 2144, "rotates": false }, - { "id": "corpse_mon_cat", "fg": 2145, "rotates": false }, - { "id": "corpse_mon_chicken", "fg": 2146, "rotates": false }, - { "id": "corpse_mon_cougar", "fg": 2147, "rotates": false }, - { "id": "corpse_mon_crow", "fg": 2148, "rotates": false }, - { "id": "corpse_mon_deer", "fg": 2149, "rotates": false }, - { "id": "corpse_mon_dermatik", "fg": 2150, "rotates": false }, - { "id": "corpse_mon_dog", "fg": 2151, "rotates": false }, - { "id": "corpse_mon_dog_zombie_cop", "fg": 2152, "rotates": false }, - { "id": "corpse_mon_duck", "fg": 2153, "rotates": false }, - { "id": "corpse_mon_fish_bowfin", "fg": 2154, "rotates": false }, - { "id": "corpse_mon_fish_bullhead", "fg": 2155, "rotates": false }, - { "id": "corpse_mon_fish_carp", "fg": 2156, "rotates": false }, - { "id": "corpse_mon_fish_crayfish", "fg": 2157, "rotates": false }, - { "id": "corpse_mon_fish_perch", "fg": 2158, "rotates": false }, - { "id": "corpse_mon_fish_pickerel", "fg": 2159, "rotates": false }, - { "id": "corpse_mon_fish_pike", "fg": 2160, "rotates": false }, - { "id": "corpse_mon_fish_sbass", "fg": 2161, "rotates": false }, - { "id": "corpse_mon_fish_trout", "fg": 2162, "rotates": false }, - { "id": "corpse_mon_fish_whitefish", "fg": 2163, "rotates": false }, - { "id": "corpse_mon_fish_lbass", "fg": 3115, "rotates": false }, - { "id": "corpse_mon_fish_pbass", "fg": 3116, "rotates": false }, - { "id": "corpse_mon_fish_salmon", "fg": 3117, "rotates": false }, - { "id": "corpse_mon_fish_sunfish", "fg": 3118, "rotates": false }, - { "id": "corpse_mon_flaming_eye", "fg": 2164, "rotates": false }, - { "id": "corpse_mon_fly", "fg": 2165, "rotates": false }, - { "id": "corpse_mon_fox", "fg": 2166, "rotates": false }, - { "id": "corpse_mon_frog_giant", "fg": 2167, "rotates": false }, - { "id": "corpse_mon_frog_small", "fg": 2168, "rotates": false }, - { "id": "corpse_mon_fungaloid", "fg": 2169, "rotates": false }, - { "id": "corpse_mon_fungaloid_young", "fg": 2170, "rotates": false }, - { "id": "corpse_mon_gator", "fg": 2171, "rotates": false }, - { "id": "corpse_mon_giant_cockroach_nymph", "fg": 2172, "rotates": false }, - { "id": "corpse_mon_gozu", "fg": 2173, "rotates": false }, - { "id": "corpse_mon_gragonfly", "fg": 2174, "rotates": false }, - { "id": "corpse_mon_hare", "fg": 2175, "rotates": false }, - { "id": "corpse_mon_hare_season_winter", "fg": 2176, "rotates": false }, - { "id": "corpse_mon_human_snail", "fg": 2177, "rotates": false }, - { "id": "corpse_mon_large_cockroach", "fg": 2178, "rotates": false }, - { "id": "corpse_mon_mi_go", "fg": 2179, "rotates": false }, - { "id": "corpse_mon_moose", "fg": 2180, "rotates": false }, - { "id": "corpse_mon_mosquito", "fg": 2181, "rotates": false }, - { "id": "corpse_mon_racoon", "fg": 2182, "rotates": false }, - { "id": "corpse_mon_rattlesnake_giant", "fg": 2183, "rotates": false }, - { "id": "corpse_mon_razorclaw", "fg": 2184, "rotates": false }, - { "id": "corpse_mon_sewer_snake", "fg": 2185, "rotates": false }, - { "id": "corpse_mon_sheep", "fg": 2186, "rotates": false }, - { "id": "corpse_mon_skeleton", "fg": 2187, "rotates": false }, - { "id": "corpse_mon_slug", "fg": 2188, "rotates": false }, - { "id": "corpse_mon_spider_jumping_giant", "fg": 2189, "rotates": false }, - { "id": "corpse_mon_spider_web", "fg": 2190, "rotates": false }, - { "id": "corpse_mon_spider_web_s", "fg": 2191, "rotates": false }, - { "id": "corpse_mon_spider_widow_giant", "fg": 2192, "rotates": false }, - { "id": "corpse_mon_spider_widow_giant_s", "fg": 2193, "rotates": false }, - { "id": "corpse_mon_spider_wolf_giant", "fg": 2194, "rotates": false }, - { "id": "corpse_mon_spider_wolf_small", "fg": 2195, "rotates": false }, - { "id": "corpse_mon_squirrel", "fg": 2196, "rotates": false }, - { "id": "corpse_mon_turkey", "fg": 2197, "rotates": false }, - { "id": "corpse_mon_twisted_body", "fg": 2198, "rotates": false }, - { "id": "corpse_mon_wasp", "fg": 2199, "rotates": false }, - { "id": "corpse_mon_wolf", "fg": 2200, "rotates": false }, - { "id": "corpse_mon_worm", "fg": 2201, "rotates": false }, - { "id": "corpse_mon_zombear", "fg": 2202, "rotates": false }, - { "id": "corpse_mon_zombie", "fg": 2203, "rotates": false }, - { "id": "corpse_mon_zombie_acidic", "fg": 2204, "rotates": false }, - { "id": "corpse_mon_zombie_beekeeper", "fg": 2205, "rotates": false }, - { "id": "corpse_mon_zombie_bio_op", "fg": 2206, "rotates": false }, - { "id": "corpse_mon_zombie_biter", "fg": 2207, "rotates": false }, - { "id": "corpse_mon_zombie_brainless", "fg": 2208, "rotates": false }, - { "id": "corpse_mon_zombie_brute", "fg": 2209, "rotates": false }, - { "id": "corpse_mon_zombie_brute_grappler", "fg": 2210, "rotates": false }, - { "id": "corpse_mon_zombie_child", "fg": 2211, "rotates": false }, - { "id": "corpse_mon_zombie_child_scorched", "fg": 2212, "rotates": false }, - { "id": "corpse_mon_zombie_cop", "fg": 2213, "rotates": false }, - { "id": "corpse_mon_zombie_crawler", "fg": 2214, "rotates": false }, - { "id": "corpse_mon_zombie_dog", "fg": 2215, "rotates": false }, - { "id": "corpse_mon_zombie_ear", "fg": 2216, "rotates": false }, - { "id": "corpse_mon_zombie_fat", "fg": 2217, "rotates": false }, - { "id": "corpse_mon_zombie_fungus", "fg": 2218, "rotates": false }, - { "id": "corpse_mon_zombie_grappler", "fg": 2219, "rotates": false }, - { "id": "corpse_mon_zombie_hazmat", "fg": 2220, "rotates": false }, - { "id": "corpse_mon_zombie_hunter", "fg": 2221, "rotates": false }, - { "id": "corpse_mon_zombie_kevlar_1", "fg": 2222, "rotates": false }, - { "id": "corpse_mon_zombie_mancroc", "fg": 2223, "rotates": false }, - { "id": "corpse_mon_zombie_predator", "fg": 2224, "rotates": false }, - { "id": "corpse_mon_zombie_rot", "fg": 2225, "rotates": false }, - { "id": "corpse_mon_zombie_scientist", "fg": 2226, "rotates": false }, - { "id": "corpse_mon_zombie_screecher", "fg": 2227, "rotates": false }, - { "id": "corpse_mon_zombie_security", "fg": 2228, "rotates": false }, - { "id": "corpse_mon_zombie_shady", "fg": 2229, "rotates": false }, - { "id": "corpse_mon_zombie_shrieker", "fg": 2230, "rotates": false }, - { "id": "corpse_mon_zombie_shriekling", "fg": 2231, "rotates": false }, - { "id": "corpse_mon_zombie_skull", "fg": 2232, "rotates": false }, - { "id": "corpse_mon_zombie_soldier", "fg": 2233, "rotates": false }, - { "id": "corpse_mon_zombie_soldier_acid_1", "fg": 2234, "rotates": false }, - { "id": "corpse_mon_zombie_soldier_acid_2", "fg": 2235, "rotates": false }, - { "id": "corpse_mon_zombie_soldier_blackops_1", "fg": 2236, "rotates": false }, - { "id": "corpse_mon_zombie_soldier_blackops_2", "fg": 2237, "rotates": false }, - { "id": "corpse_mon_zombie_spitter", "fg": 2238, "rotates": false }, - { "id": "corpse_mon_zombie_sproglodyte", "fg": 2239, "rotates": false }, - { "id": "corpse_mon_zombie_technician", "fg": 2240, "rotates": false }, - { "id": "corpse_mon_zombie_tough", "fg": 2241, "rotates": false }, - { "id": "corpse_mon_zombie_waif", "fg": 2242, "rotates": false }, - { "id": "corpse_mon_zoose", "fg": 2243, "rotates": false }, - { "id": "corpse_mon_zougar", "fg": 2244, "rotates": false }, - { "id": [ "corpse_mon_brute_pupa", "corpse_mon_brute_pupa_decoy" ], "fg": 2245, "rotates": false }, - { "id": [ "bandages_makeshift", "bandages_makeshift_boiled" ], "fg": 2257, "rotates": false }, - { "id": [ "belt308_reusable", "belt308", "belt223" ], "fg": 2313, "rotates": false }, - { "id": [ "cutlass_inferior", "cutlass_fake" ], "fg": 2389, "rotates": false }, - { "id": [ "jian_fake", "jian_inferior" ], "fg": 2496, "rotates": false }, - { "id": [ "porkbelly", "raw_curing_fatty_meat" ], "fg": 2714, "rotates": false }, - { "id": "raw_cured_fatty_meat", "fg": 2715, "rotates": false }, - { "id": "bacon_uncut", "fg": 2712, "rotates": false }, - { "id": "meat_fatty_cooked", "fg": 2713, "rotates": false }, - { "id": [ "garnet_gold_ring", "ruby_gold_ring" ], "fg": 2736 }, - { "id": [ "garnet_silver_ring", "ruby_silver_ring" ], "fg": 2738 }, - { "id": [ "garnet_platinum_ring", "ruby_platinum_ring" ], "fg": 2737 }, - { "id": [ "sapphire_gold_ring", "alexandrite_gold_ring" ], "fg": 2745 }, - { "id": [ "sapphire_silver_ring", "alexandrite_silver_ring" ], "fg": 2747 }, - { "id": [ "sapphire_platinum_ring", "alexandrite_platinum_ring" ], "fg": 2746 }, - { "id": [ "opal_gold_ring", "pearl_gold_ring" ], "fg": 2739 }, - { "id": [ "opal_silver_ring", "pearl_silver_ring" ], "fg": 2741 }, - { "id": [ "opal_platinum_ring", "pearl_platinum_ring" ], "fg": 2740 }, - { "id": [ "overlay_wielded_weed", "weed" ], "fg": 2753, "rotates": false }, - { "id": "animation_bullet_flame", "fg": 2755, "rotates": false }, - { "id": "animation_bullet_normal", "fg": 2756, "rotates": false }, - { "id": "animation_bullet_shrapnel", "fg": 2757 }, - { "id": "animation_hit", "fg": 2758 }, - { "id": "animation_line", "bg": 2756 }, + "fg": [ { "weight": 1, "sprite": 1963 }, { "weight": 1, "sprite": 1962 }, { "weight": 1, "sprite": 1964 } ] + }, + { "id": "usb_drive", "fg": 1966 }, + { "id": "cash_card", "fg": 1970 }, + { "id": "fp_loyalty_card", "fg": 1971 }, + { "id": "id_industrial", "fg": 1972 }, + { "id": "id_military", "fg": 1973 }, + { "id": "id_science", "fg": 1974 }, + { "id": "bowl_plastic", "fg": 1975 }, + { "id": "cup_plastic", "fg": 1976 }, + { "id": "fork", "fg": 1977 }, + { "id": "glass_plate", "fg": 1978 }, + { "id": "knife_butter", "fg": 1979 }, + { "id": "2h_flail_steel", "fg": 1983 }, + { "id": "washboard", "fg": 1985 }, + { "id": "wash_kit", "fg": 1984 }, + { "id": "welder", "fg": 1986 }, + { "id": "welder_crude", "fg": 1987 }, + { "id": "wood_panel", "fg": 1988 }, + { "id": "wood_sheet", "fg": 1989 }, + { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 2047 }, + { "id": [ "ak47", "aksemi" ], "fg": 1997 }, + { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 2011 }, + { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 2048 }, + { "id": [ "m249", "m249_semi" ], "fg": 2055 }, + { "id": [ "m60", "m60_semi" ], "fg": 2065 }, + { "id": [ "mp40", "mp40semi" ], "fg": 2081 }, + { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 2120 }, + { "id": "corpse_mon_alpha_razorclaw", "fg": 2139, "rotates": false }, + { "id": "corpse_mon_ant", "fg": 2140, "rotates": false }, + { "id": "corpse_mon_ant_gueen", "fg": 2141, "rotates": false }, + { "id": "corpse_mon_ant_larva", "fg": 2142, "rotates": false }, + { "id": "corpse_mon_ant_soldier", "fg": 2143, "rotates": false }, + { "id": "corpse_mon_bat", "fg": 2144, "rotates": false }, + { "id": "corpse_mon_bear", "fg": 2145, "rotates": false }, + { "id": "corpse_mon_bee", "fg": 2146, "rotates": false }, + { "id": "corpse_mon_biollante", "fg": 2147, "rotates": false }, + { "id": "corpse_mon_black_rat", "fg": 2148, "rotates": false }, + { "id": "corpse_mon_blank", "fg": 2149, "rotates": false }, + { "id": "corpse_mon_broken_cyborg", "fg": 2150, "rotates": false }, + { "id": "corpse_mon_cat", "fg": 2151, "rotates": false }, + { "id": "corpse_mon_chicken", "fg": 2152, "rotates": false }, + { "id": "corpse_mon_cougar", "fg": 2153, "rotates": false }, + { "id": "corpse_mon_crow", "fg": 2154, "rotates": false }, + { "id": "corpse_mon_deer", "fg": 2155, "rotates": false }, + { "id": "corpse_mon_dermatik", "fg": 2156, "rotates": false }, + { "id": "corpse_mon_dog", "fg": 2157, "rotates": false }, + { "id": "corpse_mon_dog_zombie_cop", "fg": 2158, "rotates": false }, + { "id": "corpse_mon_duck", "fg": 2159, "rotates": false }, + { "id": "corpse_mon_fish_bowfin", "fg": 2160, "rotates": false }, + { "id": "corpse_mon_fish_bullhead", "fg": 2161, "rotates": false }, + { "id": "corpse_mon_fish_carp", "fg": 2162, "rotates": false }, + { "id": "corpse_mon_fish_crayfish", "fg": 2163, "rotates": false }, + { "id": "corpse_mon_fish_perch", "fg": 2164, "rotates": false }, + { "id": "corpse_mon_fish_pickerel", "fg": 2165, "rotates": false }, + { "id": "corpse_mon_fish_pike", "fg": 2166, "rotates": false }, + { "id": "corpse_mon_fish_sbass", "fg": 2167, "rotates": false }, + { "id": "corpse_mon_fish_trout", "fg": 2168, "rotates": false }, + { "id": "corpse_mon_fish_whitefish", "fg": 2169, "rotates": false }, + { "id": "corpse_mon_fish_lbass", "fg": 3130, "rotates": false }, + { "id": "corpse_mon_fish_pbass", "fg": 3131, "rotates": false }, + { "id": "corpse_mon_fish_salmon", "fg": 3132, "rotates": false }, + { "id": "corpse_mon_fish_sunfish", "fg": 3133, "rotates": false }, + { "id": "corpse_mon_flaming_eye", "fg": 2170, "rotates": false }, + { "id": "corpse_mon_fly", "fg": 2171, "rotates": false }, + { "id": "corpse_mon_fox", "fg": 2172, "rotates": false }, + { "id": "corpse_mon_frog_giant", "fg": 2173, "rotates": false }, + { "id": "corpse_mon_frog_small", "fg": 2174, "rotates": false }, + { "id": "corpse_mon_gator", "fg": 2175, "rotates": false }, + { "id": "corpse_mon_giant_cockroach_nymph", "fg": 2176, "rotates": false }, + { "id": "corpse_mon_gozu", "fg": 2177, "rotates": false }, + { "id": "corpse_mon_gragonfly", "fg": 2178, "rotates": false }, + { "id": "corpse_mon_hare", "fg": 2179, "rotates": false }, + { "id": "corpse_mon_hare_season_winter", "fg": 2180, "rotates": false }, + { "id": "corpse_mon_human_snail", "fg": 2181, "rotates": false }, + { "id": "corpse_mon_large_cockroach", "fg": 2182, "rotates": false }, + { "id": "corpse_mon_mi_go", "fg": 2183, "rotates": false }, + { "id": "corpse_mon_moose", "fg": 2184, "rotates": false }, + { "id": "corpse_mon_racoon", "fg": 2187, "rotates": false }, + { "id": "corpse_mon_rattlesnake_giant", "fg": 2188, "rotates": false }, + { "id": "corpse_mon_razorclaw", "fg": 2189, "rotates": false }, + { "id": "corpse_mon_sewer_snake", "fg": 2190, "rotates": false }, + { "id": "corpse_mon_sheep", "fg": 2191, "rotates": false }, + { "id": "corpse_mon_skeleton", "fg": 2192, "rotates": false }, + { "id": "corpse_mon_slug", "fg": 2193, "rotates": false }, + { "id": "corpse_mon_spider_jumping_giant", "fg": 2194, "rotates": false }, + { "id": "corpse_mon_spider_web", "fg": 2195, "rotates": false }, + { "id": "corpse_mon_spider_web_s", "fg": 2196, "rotates": false }, + { "id": "corpse_mon_spider_widow_giant", "fg": 2197, "rotates": false }, + { "id": "corpse_mon_spider_widow_giant_s", "fg": 2198, "rotates": false }, + { "id": "corpse_mon_spider_wolf_giant", "fg": 2199, "rotates": false }, + { "id": "corpse_mon_spider_wolf_small", "fg": 2200, "rotates": false }, + { "id": "corpse_mon_squirrel", "fg": 2201, "rotates": false }, + { "id": "corpse_mon_turkey", "fg": 2202, "rotates": false }, + { "id": "corpse_mon_twisted_body", "fg": 2203, "rotates": false }, + { "id": "corpse_mon_wasp", "fg": 2204, "rotates": false }, + { "id": "corpse_mon_wolf", "fg": 2205, "rotates": false }, + { "id": "corpse_mon_worm", "fg": 2206, "rotates": false }, + { "id": "corpse_mon_zombear", "fg": 2207, "rotates": false }, + { "id": "corpse_mon_zombie", "fg": 2208, "rotates": false }, + { "id": "corpse_mon_zombie_acidic", "fg": 2209, "rotates": false }, + { "id": "corpse_mon_zombie_beekeeper", "fg": 2210, "rotates": false }, + { "id": "corpse_mon_zombie_bio_op", "fg": 2211, "rotates": false }, + { "id": "corpse_mon_zombie_biter", "fg": 2212, "rotates": false }, + { "id": "corpse_mon_zombie_brainless", "fg": 2213, "rotates": false }, + { "id": "corpse_mon_zombie_brute", "fg": 2214, "rotates": false }, + { "id": "corpse_mon_zombie_brute_grappler", "fg": 2215, "rotates": false }, + { "id": "corpse_mon_zombie_child", "fg": 2216, "rotates": false }, + { "id": "corpse_mon_zombie_child_scorched", "fg": 2217, "rotates": false }, + { "id": "corpse_mon_zombie_cop", "fg": 2218, "rotates": false }, + { "id": "corpse_mon_zombie_crawler", "fg": 2219, "rotates": false }, + { "id": "corpse_mon_zombie_dog", "fg": 2220, "rotates": false }, + { "id": "corpse_mon_zombie_ear", "fg": 2221, "rotates": false }, + { "id": "corpse_mon_zombie_fat", "fg": 2222, "rotates": false }, + { "id": "corpse_mon_zombie_fungus", "fg": 2223, "rotates": false }, + { "id": "corpse_mon_zombie_grappler", "fg": 2224, "rotates": false }, + { "id": "corpse_mon_zombie_hazmat", "fg": 2225, "rotates": false }, + { "id": "corpse_mon_zombie_hunter", "fg": 2226, "rotates": false }, + { "id": "corpse_mon_zombie_kevlar_1", "fg": 2227, "rotates": false }, + { "id": "corpse_mon_zombie_mancroc", "fg": 2228, "rotates": false }, + { "id": "corpse_mon_zombie_predator", "fg": 2229, "rotates": false }, + { "id": "corpse_mon_zombie_rot", "fg": 2230, "rotates": false }, + { "id": "corpse_mon_zombie_scientist", "fg": 2231, "rotates": false }, + { "id": "corpse_mon_zombie_screecher", "fg": 2232, "rotates": false }, + { "id": "corpse_mon_zombie_security", "fg": 2233, "rotates": false }, + { "id": "corpse_mon_zombie_shady", "fg": 2234, "rotates": false }, + { "id": "corpse_mon_zombie_shrieker", "fg": 2235, "rotates": false }, + { "id": "corpse_mon_zombie_shriekling", "fg": 2236, "rotates": false }, + { "id": "corpse_mon_zombie_skull", "fg": 2237, "rotates": false }, + { "id": "corpse_mon_zombie_soldier", "fg": 2238, "rotates": false }, + { "id": "corpse_mon_zombie_soldier_acid_1", "fg": 2239, "rotates": false }, + { "id": "corpse_mon_zombie_soldier_acid_2", "fg": 2240, "rotates": false }, + { "id": "corpse_mon_zombie_soldier_blackops_1", "fg": 2241, "rotates": false }, + { "id": "corpse_mon_zombie_soldier_blackops_2", "fg": 2242, "rotates": false }, + { "id": "corpse_mon_zombie_spitter", "fg": 2243, "rotates": false }, + { "id": "corpse_mon_zombie_sproglodyte", "fg": 2244, "rotates": false }, + { "id": "corpse_mon_zombie_technician", "fg": 2245, "rotates": false }, + { "id": "corpse_mon_zombie_tough", "fg": 2246, "rotates": false }, + { "id": "corpse_mon_zombie_waif", "fg": 2247, "rotates": false }, + { "id": "corpse_mon_zoose", "fg": 2248, "rotates": false }, + { "id": "corpse_mon_zougar", "fg": 2249, "rotates": false }, + { "id": [ "corpse_mon_brute_pupa", "corpse_mon_brute_pupa_decoy" ], "fg": 2250, "rotates": false }, + { "id": [ "bandages_makeshift", "bandages_makeshift_boiled" ], "fg": 2262, "rotates": false }, + { "id": [ "belt308_reusable", "belt308", "belt223" ], "fg": 2318, "rotates": false }, + { "id": [ "cutlass_inferior", "cutlass_fake" ], "fg": 2394, "rotates": false }, + { "id": [ "jian_fake", "jian_inferior" ], "fg": 2501, "rotates": false }, + { "id": [ "porkbelly", "raw_curing_fatty_meat" ], "fg": 2719, "rotates": false }, + { "id": "raw_cured_fatty_meat", "fg": 2720, "rotates": false }, + { "id": "bacon_uncut", "fg": 2717, "rotates": false }, + { "id": "meat_fatty_cooked", "fg": 2718, "rotates": false }, + { "id": [ "garnet_gold_ring", "ruby_gold_ring" ], "fg": 2741 }, + { "id": [ "garnet_silver_ring", "ruby_silver_ring" ], "fg": 2743 }, + { "id": [ "garnet_platinum_ring", "ruby_platinum_ring" ], "fg": 2742 }, + { "id": [ "sapphire_gold_ring", "alexandrite_gold_ring" ], "fg": 2750 }, + { "id": [ "sapphire_silver_ring", "alexandrite_silver_ring" ], "fg": 2752 }, + { "id": [ "sapphire_platinum_ring", "alexandrite_platinum_ring" ], "fg": 2751 }, + { "id": [ "opal_gold_ring", "pearl_gold_ring" ], "fg": 2744 }, + { "id": [ "opal_silver_ring", "pearl_silver_ring" ], "fg": 2746 }, + { "id": [ "opal_platinum_ring", "pearl_platinum_ring" ], "fg": 2745 }, + { "id": [ "overlay_wielded_weed", "weed" ], "fg": 2758, "rotates": false }, + { "id": "animation_bullet_flame", "fg": 2760, "rotates": false }, + { "id": "animation_bullet_normal", "fg": 2761, "rotates": false }, + { "id": "animation_bullet_shrapnel", "fg": 2762 }, + { "id": "animation_hit", "fg": 2763 }, + { "id": "animation_line", "bg": 2761 }, { "id": "craft", "animated": true, - "fg": [ { "weight": 15, "sprite": 2779 }, { "weight": 15, "sprite": 2780 } ] + "fg": [ { "weight": 15, "sprite": 2784 }, { "weight": 15, "sprite": 2785 } ] }, - { "id": "cursor", "fg": 2759, "rotates": false }, + { "id": "cursor", "fg": 2764, "rotates": false }, { "id": "disassembly", "animated": true, - "fg": [ { "weight": 15, "sprite": 2781 }, { "weight": 15, "sprite": 2782 } ] + "fg": [ { "weight": 15, "sprite": 2786 }, { "weight": 15, "sprite": 2787 } ] }, { "id": [ "explosion", "explosion_medium", "explosion_weak" ], - "fg": 2783, + "fg": 2788, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2783 }, - { "id": "corner", "fg": 2760 }, - { "id": "edge", "fg": 2761 }, - { "id": "end_piece", "fg": 2784 }, - { "id": "t_connection", "fg": 2785 }, - { "id": "unconnected", "fg": 2783 } - ] - }, - { "id": "footstep", "fg": 2762, "rotates": false }, - { "id": "highlight", "fg": 2759, "rotates": false }, - { "id": "highlight_item", "fg": 2763, "rotates": false }, - { "id": "infrared_creature", "fg": 2789, "rotates": false }, - { "id": "lighting_boomered_dark", "fg": 2764, "rotates": false }, - { "id": "lighting_boomered_light", "fg": 2765, "rotates": false }, - { "id": [ "lighting_hidden", "unknown_terrain" ], "fg": 2768, "rotates": false }, - { "id": "lighting_lowlight_dark", "fg": 2766, "rotates": false }, - { "id": "lighting_lowlight_light", "fg": 2767, "rotates": false }, - { "id": "line_target", "bg": 2759, "rotates": false }, - { "id": "line_trail", "bg": 2759, "rotates": false }, - { "id": "night_filter1", "fg": 2773 }, - { "id": "night_filter2", "fg": 2774 }, - { "id": "night_filter3", "fg": 2775 }, - { "id": "night_filter4", "fg": 2776 }, - { "id": "night_filter", "fg": 2769 }, - { "id": "nv_filter", "fg": 2771 }, - { "id": "nv_over_filter", "fg": 2772 }, - { "id": "shadow_filter", "fg": 2770 }, + { "id": "center", "fg": 2788 }, + { "id": "corner", "fg": 2765 }, + { "id": "edge", "fg": 2766 }, + { "id": "end_piece", "fg": 2789 }, + { "id": "t_connection", "fg": 2790 }, + { "id": "unconnected", "fg": 2788 } + ] + }, + { "id": "footstep", "fg": 2767, "rotates": false }, + { "id": "highlight", "fg": 2764, "rotates": false }, + { "id": "highlight_item", "fg": 2768, "rotates": false }, + { "id": "infrared_creature", "fg": 2794, "rotates": false }, + { "id": "lighting_boomered_dark", "fg": 2769, "rotates": false }, + { "id": "lighting_boomered_light", "fg": 2770, "rotates": false }, + { "id": [ "lighting_hidden", "unknown_terrain" ], "fg": 2773, "rotates": false }, + { "id": "lighting_lowlight_dark", "fg": 2771, "rotates": false }, + { "id": "lighting_lowlight_light", "fg": 2772, "rotates": false }, + { "id": "line_target", "bg": 2764, "rotates": false }, + { "id": "line_trail", "bg": 2764, "rotates": false }, + { "id": "night_filter1", "fg": 2778 }, + { "id": "night_filter2", "fg": 2779 }, + { "id": "night_filter3", "fg": 2780 }, + { "id": "night_filter4", "fg": 2781 }, + { "id": "night_filter", "fg": 2774 }, + { "id": "nv_filter", "fg": 2776 }, + { "id": "nv_over_filter", "fg": 2777 }, + { "id": "shadow_filter", "fg": 2775 }, { "id": "tr_unfinished_construction", "animated": true, - "fg": [ { "weight": 15, "sprite": 2790 }, { "weight": 15, "sprite": 2791 } ] - }, - { "id": "unknown", "fg": 2792, "rotates": false }, - { "id": "weather_rain_drop", "fg": 2777, "rotates": false }, - { "id": "weather_snowflake", "fg": 2778, "rotates": false }, - { "id": [ "overlay_male_mutation_WILDSHAPE:FISH" ], "fg": 2828, "rotates": false }, - { "id": [ "overlay_female_mutation_WILDSHAPE:FISH" ], "fg": 2811, "rotates": false }, - { "id": [ "overlay_male_mutation_WILDSHAPE:BEAR" ], "fg": 2826, "rotates": false }, - { "id": [ "overlay_female_mutation_WILDSHAPE:BEAR" ], "fg": 2809, "rotates": false }, - { "id": [ "overlay_male_mutation_WILDSHAPE:DEER" ], "fg": 2827, "rotates": false }, - { "id": [ "overlay_female_mutation_WILDSHAPE:DEER" ], "fg": 2810, "rotates": false }, + "fg": [ { "weight": 15, "sprite": 2799 }, { "weight": 15, "sprite": 2800 } ] + }, + { "id": "unknown", "fg": 2801, "rotates": false }, + { "id": "weather_rain_drop", "fg": 2782, "rotates": false }, + { "id": "weather_snowflake", "fg": 2783, "rotates": false }, + { "id": [ "overlay_male_mutation_WILDSHAPE:FISH" ], "fg": 2837, "rotates": false }, + { "id": [ "overlay_female_mutation_WILDSHAPE:FISH" ], "fg": 2820, "rotates": false }, + { "id": [ "overlay_male_mutation_WILDSHAPE:BEAR" ], "fg": 2835, "rotates": false }, + { "id": [ "overlay_female_mutation_WILDSHAPE:BEAR" ], "fg": 2818, "rotates": false }, + { "id": [ "overlay_male_mutation_WILDSHAPE:DEER" ], "fg": 2836, "rotates": false }, + { "id": [ "overlay_female_mutation_WILDSHAPE:DEER" ], "fg": 2819, "rotates": false }, { "id": "mon_demon_spiderling", "animated": true, "fg": [ - { "weight": 15, "sprite": 2879 }, - { "weight": 15, "sprite": 2880 }, - { "weight": 15, "sprite": 2881 }, - { "weight": 15, "sprite": 2880 } + { "weight": 15, "sprite": 2893 }, + { "weight": 15, "sprite": 2894 }, + { "weight": 15, "sprite": 2895 }, + { "weight": 15, "sprite": 2894 } + ], + "rotates": false + }, + { + "id": "mon_wisp", + "fg": [ + { "weight": 1, "sprite": 2896 }, + { "weight": 1, "sprite": 2897 }, + { "weight": 1, "sprite": 2898 }, + { "weight": 1, "sprite": 2899 } ], "rotates": false }, { "id": "mon_marshmallow_kid", - "fg": [ { "weight": 1, "sprite": 2885 }, { "weight": 1, "sprite": 2886 } ], + "fg": [ { "weight": 1, "sprite": 2903 }, { "weight": 1, "sprite": 2904 } ], "bg": [ ], "rotates": false }, { "id": "mon_necco", "fg": [ - { "weight": 1, "sprite": 2888 }, - { "weight": 1, "sprite": 2889 }, - { "weight": 1, "sprite": 2890 }, - { "weight": 1, "sprite": 2891 }, - { "weight": 1, "sprite": 2892 }, - { "weight": 1, "sprite": 2893 }, - { "weight": 1, "sprite": 2887 } + { "weight": 1, "sprite": 2906 }, + { "weight": 1, "sprite": 2907 }, + { "weight": 1, "sprite": 2908 }, + { "weight": 1, "sprite": 2909 }, + { "weight": 1, "sprite": 2910 }, + { "weight": 1, "sprite": 2911 }, + { "weight": 1, "sprite": 2905 } ], "bg": [ ], "rotates": false }, - { "id": "debug_mon", "fg": 2894 }, - { "id": "mon_EMP_hack", "fg": 2967 }, - { "id": "mon_albino_penguin", "fg": 2895, "bg": 3161, "rotates": false }, - { "id": "mon_alpha_razorclaw", "fg": 2896, "bg": 3161 }, - { "id": "mon_ant", "fg": 2897, "bg": 3161, "rotates": false }, - { "id": "mon_ant_acid", "fg": 3113, "bg": 3161, "rotates": false }, - { "id": "mon_ant_acid_larva", "fg": 3112, "bg": 3161, "rotates": false }, - { "id": "mon_ant_acid_queen", "fg": 3114, "bg": 3161, "rotates": false }, - { "id": "mon_ant_acid_soldier", "fg": 3111, "rotates": false }, - { "id": "mon_ant_fungus", "fg": 2898, "bg": 3161, "rotates": false }, - { "id": "mon_ant_larva", "fg": 2899, "bg": 3161, "rotates": false }, - { "id": "mon_ant_queen", "fg": 2900, "bg": 3161, "rotates": false }, - { "id": "mon_ant_soldier", "fg": 2901, "bg": 3161, "rotates": false }, - { "id": "mon_bat", "fg": 2902, "bg": 3161, "rotates": false }, - { "id": "mon_bear", "fg": 2903, "bg": 3161, "rotates": false }, - { "id": "mon_bear_cub", "fg": 2904, "bg": 3161, "rotates": false }, - { "id": "mon_bear_smoky", "fg": 2905, "bg": 3161, "rotates": false }, - { "id": "mon_bee", "fg": 2906, "bg": 3161, "rotates": false }, - { "id": "mon_bee_mega", "fg": 2908, "rotates": false }, - { "id": "mon_bee_small", "fg": 2909, "rotates": false }, - { "id": "mon_beekeeper", "fg": 2907, "bg": 3161, "rotates": false }, - { "id": "mon_biollante", "fg": 2910, "bg": 3161, "rotates": false }, - { "id": "mon_black_rat", "fg": 3018, "rotates": false }, - { "id": "mon_blank", "fg": 2911, "bg": 3161, "rotates": false }, - { "id": "mon_blob", "fg": 2912, "bg": 3161, "rotates": false }, - { "id": "mon_blob_large", "fg": 2913, "rotates": false }, - { "id": "mon_blob_small", "fg": 2914, "rotates": false }, - { "id": "mon_bobcat", "fg": 2915, "bg": 3161, "rotates": false }, - { "id": "mon_boomer", "fg": 2916, "bg": 3161, "rotates": false }, - { "id": "mon_boomer_fungus", "fg": 2917, "bg": 3161, "rotates": false }, - { "id": "mon_breather", "fg": 2918, "rotates": false }, - { "id": "mon_breather_hub", "fg": 2919, "bg": 3161, "rotates": false }, - { "id": "mon_c4_hack", "fg": 2920, "bg": 3161, "rotates": false }, - { "id": "mon_cat", "fg": 2915, "bg": 3161, "rotates": false }, - { "id": "mon_centipede", "fg": 2921, "rotates": false }, - { "id": "mon_centipede_giant", "fg": 2922, "bg": 3161, "rotates": false }, - { "id": "mon_charred_nightmare", "fg": 2923, "rotates": false }, - { "id": "mon_chicken", "fg": 2924, "bg": 3161, "rotates": false }, - { "id": "mon_chipmunk", "fg": 2925, "bg": 3161, "rotates": false }, - { "id": "mon_chud", "fg": 2926, "bg": 3161, "rotates": false }, - { "id": "mon_compsognathus", "fg": 2927, "bg": 3161, "rotates": false }, - { "id": "mon_cougar", "fg": 2928, "bg": 3161, "rotates": false }, - { "id": "mon_coyote", "fg": 2929, "bg": 3161, "rotates": false }, - { "id": "mon_coyote_wolf", "fg": 2930, "bg": 3161, "rotates": false }, - { "id": "mon_crawler", "fg": 2931, "bg": 3161, "rotates": false }, - { "id": "mon_creeper_hub", "fg": 2932, "bg": 3161, "rotates": false }, - { "id": "mon_creeper_vine", "fg": 2933, "bg": 3161, "rotates": false }, - { "id": "mon_crow", "fg": 2934, "bg": 3161, "rotates": false }, - { "id": "mon_darkman", "fg": 2935, "bg": 3161, "rotates": false }, - { "id": "mon_deer", "fg": 2936, "bg": 3161, "rotates": false }, - { "id": "mon_deer_mouse", "fg": 3018, "rotates": false }, - { "id": "mon_deinonychus", "fg": 2937, "bg": 3161, "rotates": false }, - { "id": "mon_dementia", "fg": 2938, "bg": 3161, "rotates": false }, - { "id": "mon_dermatik", "fg": 2939, "bg": 3161, "rotates": false }, - { "id": "mon_dermatik_larva", "fg": 2940, "rotates": false }, - { "id": "mon_dilophosaurus", "fg": 2937, "bg": 3161, "rotates": false }, - { "id": "mon_dimorphodon", "fg": 2941, "bg": 3161, "rotates": false }, - { "id": "mon_dog_skeleton", "fg": 2942, "bg": 3161, "rotates": false }, - { "id": "mon_dog_zombie_cop", "fg": 2943, "bg": 3161, "rotates": false }, - { "id": "mon_dog_zombie_rot", "fg": 2944, "bg": [ ], "rotates": false }, - { "id": "mon_dragonfly_giant", "fg": 2946, "bg": 3161, "rotates": false }, - { "id": "mon_dragonfly_small", "fg": 2945, "rotates": false }, - { "id": "mon_duck", "fg": 2947, "bg": 3161, "rotates": false }, - { "id": "mon_eoraptor", "fg": 2927, "bg": 3161, "rotates": false }, - { "id": "mon_fant", "fg": 2948, "rotates": false }, - { "id": "mon_fish_blinky", "fg": 2949, "rotates": false }, - { "id": "mon_fish_bluegill", "fg": 2950, "rotates": false }, - { "id": "mon_fish_bowfin", "fg": 2951, "rotates": false }, - { "id": "mon_fish_bullhead", "fg": 2952, "rotates": false }, - { "id": "mon_fish_carp", "fg": 2953, "rotates": false }, - { "id": "mon_fish_crayfish", "fg": 2954, "rotates": false }, - { "id": "mon_fish_lbass", "fg": 2955, "rotates": false }, - { "id": "mon_fish_lobster", "fg": 2956, "rotates": false }, - { "id": "mon_fish_pbass", "fg": 2957, "rotates": false }, - { "id": "mon_fish_perch", "fg": 2958, "rotates": false }, - { "id": "mon_fish_pickerel", "fg": 2959, "rotates": false }, - { "id": "mon_fish_pike", "fg": 2960, "rotates": false }, - { "id": "mon_fish_salmon", "fg": 2961, "rotates": false }, - { "id": "mon_fish_sbass", "fg": 2962, "rotates": false }, - { "id": "mon_fish_sunfish", "fg": 2963, "rotates": false }, - { "id": "mon_fish_trout", "fg": 2964, "rotates": false }, - { "id": "mon_fish_whitefish", "fg": 2965, "rotates": false }, - { "id": "mon_flaming_eye", "fg": 2966, "bg": 3161, "rotates": false }, - { "id": "mon_flashbang_hack", "fg": 2967, "bg": 3161, "rotates": false }, - { "id": "mon_fly", "fg": 2968, "bg": 3161, "rotates": false }, - { "id": "mon_fox_gray", "fg": 2969, "bg": 3161, "rotates": false }, - { "id": "mon_fox_red", "fg": 2969, "bg": 3161, "rotates": false }, - { "id": "mon_fungal_blossom", "fg": 2971, "bg": 3161, "rotates": false }, - { "id": "mon_fungal_fighter", "fg": 2972, "bg": 3161, "rotates": false }, - { "id": "mon_fungal_hedgerow", "fg": 2973, "bg": 3161, "rotates": false }, - { "id": "mon_fungal_tendril", "fg": 2974, "bg": 3161, "rotates": false }, - { "id": "mon_fungal_wall", "fg": 2975, "bg": 3161, "rotates": false }, - { "id": "mon_fungaloid_dormant", "fg": 3102, "bg": 3161, "rotates": false }, - { "id": "mon_fungaloid_young", "fg": 2970, "bg": 3161, "rotates": false }, - { "id": "mon_gallimimus", "fg": 2976, "bg": 3161, "rotates": false }, - { "id": "mon_gasbomb_hack", "fg": 2977, "bg": 3161, "rotates": false }, - { "id": "mon_gator", "fg": 2978, "rotates": false }, - { "id": "mon_gelatin", "fg": 2979, "bg": 3161, "rotates": false }, - { "id": "mon_generator", "fg": 2980, "bg": 3161, "rotates": false }, - { "id": "mon_giant_cockroach", "fg": 2981, "rotates": false }, - { "id": "mon_giant_cockroach_nymph", "fg": 2982, "rotates": false }, - { "id": "mon_goat", "fg": 2983, "rotates": false }, - { "id": "mon_gozu", "fg": 2984, "bg": 3161, "rotates": false }, - { "id": "mon_graboid", "fg": 2985, "bg": 3161, "rotates": false }, - { "id": "mon_grenade_hack", "fg": 2986, "bg": 3161, "rotates": false }, - { "id": "mon_groundhog", "fg": 2925, "bg": 3161, "rotates": false }, - { "id": "mon_halfworm", "fg": 2987, "bg": 3161, "rotates": false }, - { "id": "mon_hallu_mom", "fg": 2988, "bg": 3161, "rotates": false }, - { "id": "mon_hare", "fg": 2989, "bg": 3161, "rotates": false }, - { "id": "mon_hare_season_winter", "fg": 2990, "bg": 3161, "rotates": false }, - { "id": "mon_headless_dog_thing", "fg": 2991, "bg": 3161, "rotates": false }, - { "id": "mon_hologram", "fg": 3103, "rotates": false }, - { "id": "mon_human_snail", "fg": 2992, "bg": 3161, "rotates": false }, - { "id": "mon_irradiated_wanderer_1", "fg": 2993, "bg": 3161 }, - { "id": "mon_irradiated_wanderer_2", "fg": 2994, "bg": 3161, "rotates": false }, - { "id": "mon_irradiated_wanderer_3", "fg": 2995, "bg": 3161 }, - { "id": "mon_irradiated_wanderer_4", "fg": 2996, "bg": 3161 }, - { "id": "mon_laserturret", "fg": 2997, "bg": 3161, "rotates": false }, - { "id": "mon_lemming", "fg": 2925, "bg": 3161, "rotates": false }, - { "id": "mon_manhack", "fg": 2998, "bg": 3161, "rotates": false }, - { "id": "mon_manhack_acid", "fg": 2999, "rotates": false }, - { "id": "mon_mi_go", "fg": 3001, "bg": 3161, "rotates": false }, - { "id": "mon_mininuke_hack", "fg": 3000, "bg": 3161, "rotates": false }, - { "id": "mon_mink", "fg": 2925, "bg": 3161, "rotates": false }, - { "id": "mon_moose", "fg": 3002, "bg": 3161, "rotates": false }, - { "id": "mon_mosquito", "fg": 3003, "rotates": false }, - { "id": "mon_mosquito_giant", "fg": 3004, "bg": 3161, "rotates": false }, - { "id": "mon_muskrat", "fg": 3018, "rotates": false }, - { "id": "mon_mutant_carp", "fg": 3005, "rotates": false }, - { "id": "mon_mutant_salmon", "fg": 3006, "rotates": false }, - { "id": "mon_one_eye", "fg": 3007, "bg": 3161, "rotates": false }, - { "id": "mon_otter", "fg": 2925, "bg": 3161, "rotates": false }, - { "id": "mon_player_blob", "fg": 3008, "bg": 3161, "rotates": false }, - { "id": "mon_pregnant_giant_cockroach", "fg": 3009, "rotates": false }, - { "id": "mon_prototype_cyborg", "fg": 3136, "bg": 3161, "rotates": false }, - { "id": "mon_rabbit", "fg": 3010, "bg": 3161, "rotates": false }, - { "id": "mon_raccoon", "fg": 3011, "bg": 3161, "rotates": false }, - { "id": "mon_rat_king", "fg": 3014, "bg": 3161, "rotates": false }, - { "id": "mon_rattlesnake", "fg": 3012, "bg": 3161, "rotates": false }, - { "id": "mon_rattlesnake_giant", "fg": 3013, "bg": 3161, "rotates": false }, - { "id": "mon_razorclaw", "fg": 3015, "bg": 3161 }, - { "id": "mon_riotbot", "fg": 3016, "bg": 3161, "rotates": false }, - { "id": "mon_sewer_fish", "fg": 3017, "bg": 3161, "rotates": false }, - { "id": "mon_sewer_rat", "fg": 3018, "bg": 3161, "rotates": false }, - { "id": "mon_sewer_snake", "fg": 3019, "bg": 3161, "rotates": false }, - { "id": "mon_shadow", "fg": 3020, "rotates": false }, - { "id": "mon_shadow_snake", "fg": 3021, "rotates": false }, - { "id": "mon_skeleton", "fg": 3022, "bg": 3161, "rotates": false }, - { "id": "mon_skeleton_electric", "fg": 3139, "bg": 3161, "rotates": false }, - { "id": "mon_skitterbot", "fg": 3023, "bg": 3161, "rotates": false }, - { "id": "mon_sludge_crawler", "fg": 3024, "bg": 3161, "rotates": false }, - { "id": "mon_spider_cellar_giant", "fg": 3025, "bg": 3161, "rotates": false }, - { "id": "mon_spider_cellar_giant_s", "fg": 3026, "bg": 3161, "rotates": false }, - { "id": "mon_spider_jumping_giant", "fg": 3028, "bg": 3161, "rotates": false }, - { "id": "mon_spider_jumping_giant_mega", "fg": 3029, "rotates": false }, - { "id": "mon_spider_jumping_small", "fg": 3027, "bg": 3161, "rotates": false }, - { "id": "mon_spider_trapdoor", "fg": 3030, "bg": 3161, "rotates": false }, - { "id": "mon_spider_trapdoor_giant", "fg": 3031, "bg": 3161, "rotates": false }, - { "id": "mon_spider_trapdoor_giant_mega", "fg": 3032, "rotates": false }, - { "id": "mon_spider_trapdoor_giant_small", "fg": 3033, "rotates": false }, - { "id": "mon_spider_web", "fg": 3034, "bg": 3161, "rotates": false }, - { "id": "mon_spider_web_giant", "fg": 3034, "bg": 3161, "rotates": false }, - { "id": "mon_spider_web_mega", "fg": 3035, "rotates": false }, - { "id": "mon_spider_web_s", "fg": 3036, "bg": 3161, "rotates": false }, - { "id": "mon_spider_widow_giant", "fg": 3038, "bg": 3161, "rotates": false }, - { "id": "mon_spider_widow_giant_s", "fg": 3039, "bg": 3161, "rotates": false }, - { "id": "mon_spider_widow_small", "fg": 3037, "bg": 3161, "rotates": false }, - { "id": "mon_spider_wolf_giant", "fg": 3041, "bg": 3161, "rotates": false }, - { "id": "mon_spider_wolf_small", "fg": 3040, "bg": 3161, "rotates": false }, - { "id": "mon_spore", "fg": 3042, "bg": 3161, "rotates": false }, - { "id": "mon_squirrel", "fg": 3043, "bg": 3161, "rotates": false }, - { "id": "mon_squirrel_red", "fg": 3043, "bg": 3161, "rotates": false }, - { "id": "mon_titanis", "fg": 3044, "bg": 3161, "rotates": false }, - { "id": "mon_turkey", "fg": 3045, "bg": 3161, "rotates": false }, - { "id": "mon_velociraptor", "fg": 3046, "bg": 3161, "rotates": false }, - { "id": "mon_vinebeast", "fg": 3047, "bg": 3161, "rotates": false }, - { "id": "mon_vortex", "fg": 3048, "bg": 3161, "rotates": false }, - { "id": "mon_w11b10", "fg": 3105, "rotates": false }, - { "id": "mon_w11b20b4", "fg": 3106, "rotates": false }, - { "id": "mon_w11h10", "fg": 3108, "rotates": false }, - { "id": "mon_w12b10", "fg": 3107, "rotates": false }, - { "id": "mon_w12n10", "fg": 3109, "rotates": false }, - { "id": "mon_wasp", "fg": 3049, "bg": 3161, "rotates": false }, - { "id": "mon_wasp_larvae", "fg": 2940 }, - { "id": "mon_wasp_mega", "fg": 3050 }, - { "id": "mon_wasp_small", "fg": 3051, "rotates": false }, - { "id": "mon_weasel", "fg": 2925, "bg": 3161, "rotates": false }, - { "id": "mon_wolf", "fg": 3052, "bg": 3161, "rotates": false }, - { "id": "mon_worm", "fg": 3053, "bg": 3161, "rotates": false }, - { "id": "mon_zhark", "fg": 3054 }, - { "id": "mon_zolf", "fg": 3055, "bg": 3161, "rotates": false }, - { "id": "mon_zolf_shady", "fg": 3056, "rotates": false }, - { "id": "mon_zombear", "fg": 3057, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_acidic", "fg": 3058, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_anklebiter", "fg": 3059, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_armored", "fg": 3060, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_bio_op", "fg": 3061, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_biter", "fg": 3062, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_blind", "fg": 3063, "rotates": false }, - { "id": "mon_zombie_brainless", "fg": 3143, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_brute", "fg": 3064, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_brute_grappler", "fg": 3065, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_brute_ninja", "fg": 3066, "bg": 3161 }, - { "id": "mon_zombie_brute_shocker", "fg": 3067, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_child_fungus", "fg": 3110, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_child_scorched", "fg": 3068, "bg": 3161 }, - { "id": "mon_zombie_child_scorched_2", "fg": 3069, "rotates": false }, - { "id": "mon_zombie_cop", "fg": 3070, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_crawler", "fg": 3071, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_creepy", "fg": 3072, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_dancer", "fg": 3073, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_dog", "fg": 3074, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_ears", "fg": 3144, "bg": 3161 }, - { "id": "mon_zombie_electric", "fg": 3075, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_fiend", "fg": 3145, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_fireman", "fg": 3076, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_fungus", "fg": [ 3077, 3146 ], "bg": 3161, "rotates": false }, - { "id": "mon_zombie_gasbag", "fg": 3078, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_grappler", "fg": 3079, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_hazmat", "fg": 3080, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_hollow", "fg": 3081, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_hunter", "fg": 3082, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_jackson", "fg": 3083, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_kevlar_1", "fg": 3150, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_mancroc", "fg": 3084, "bg": 3161 }, - { "id": "mon_zombie_master", "fg": 3085, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_military_pilot", "fg": 3104, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_necro", "fg": 3086, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_predator", "fg": 3087, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_rot", "fg": 3088, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_scorched", "fg": 3089, "bg": 3161 }, - { "id": "mon_zombie_shady", "fg": 3090, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_shady_ghost", "fg": 3091, "rotates": false }, - { "id": "mon_zombie_shriekling", "fg": 3092, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_skull", "fg": 3152, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_smoker", "fg": 3093, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_snotgobbler", "fg": 3094, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_soldier", "fg": 3095, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_soldier_acid_1", "fg": 3153, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_soldier_acid_2", "fg": 3154, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_soldier_blackops_1", "fg": 3155, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_soldier_blackops_2", "fg": 3156, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_spitter", "fg": 3096, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_sproglodyte", "fg": 3097, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_static", "fg": 3157, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_swimmer", "fg": 3098, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_thorny", "fg": 3158, "rotates": false, "bg": 3161 }, - { "id": "mon_zombie_waif", "fg": 3099, "bg": 3161, "rotates": false }, - { "id": "mon_zombie_wretched", "fg": 3159, "bg": 3161, "rotates": false }, - { "id": "mon_zoose", "fg": 3100, "bg": 3161, "rotates": false }, - { "id": "mon_zougar", "fg": 3101, "bg": 3161, "rotates": false }, - { "id": "mon_triffid", "fg": 3140, "bg": 3161 }, - { "id": "mon_triffid_sprig", "fg": 3141, "bg": 3161 }, - { "id": "mon_triffid_young", "fg": 3142, "bg": 3161 }, + { "id": "debug_mon", "fg": 2912 }, + { "id": "mon_EMP_hack", "fg": 2985 }, + { "id": "mon_albino_penguin", "fg": 2913, "bg": 3178, "rotates": false }, + { "id": "mon_alpha_razorclaw", "fg": 2914, "bg": 3178 }, + { "id": "mon_ant", "fg": 2915, "bg": 3178, "rotates": false }, + { "id": "mon_ant_acid", "fg": 3128, "bg": 3178, "rotates": false }, + { "id": "mon_ant_acid_larva", "fg": 3127, "bg": 3178, "rotates": false }, + { "id": "mon_ant_acid_queen", "fg": 3129, "bg": 3178, "rotates": false }, + { "id": "mon_ant_acid_soldier", "fg": 3126, "rotates": false }, + { "id": "mon_ant_fungus", "fg": 2916, "bg": 3178, "rotates": false }, + { "id": "mon_ant_larva", "fg": 2917, "bg": 3178, "rotates": false }, + { "id": "mon_ant_queen", "fg": 2918, "bg": 3178, "rotates": false }, + { "id": "mon_ant_soldier", "fg": 2919, "bg": 3178, "rotates": false }, + { "id": "mon_bat", "fg": 2920, "bg": 3178, "rotates": false }, + { "id": "mon_bear", "fg": 2921, "bg": 3178, "rotates": false }, + { "id": "mon_bear_cub", "fg": 2922, "bg": 3178, "rotates": false }, + { "id": "mon_bear_smoky", "fg": 2923, "bg": 3178, "rotates": false }, + { "id": "mon_bee", "fg": 2924, "bg": 3178, "rotates": false }, + { "id": "mon_bee_mega", "fg": 2926, "rotates": false }, + { "id": "mon_bee_small", "fg": 2927, "rotates": false }, + { "id": "mon_beekeeper", "fg": 2925, "bg": 3178, "rotates": false }, + { "id": "mon_biollante", "fg": 2928, "bg": 3178, "rotates": false }, + { "id": "mon_black_rat", "fg": 3033, "rotates": false }, + { "id": "mon_blank", "fg": 2929, "bg": 3178, "rotates": false }, + { "id": "mon_blob", "fg": 2930, "bg": 3178, "rotates": false }, + { "id": "mon_blob_large", "fg": 2931, "rotates": false }, + { "id": "mon_blob_small", "fg": 2932, "rotates": false }, + { "id": "mon_bobcat", "fg": 2933, "bg": 3178, "rotates": false }, + { "id": "mon_boomer", "fg": 2934, "bg": 3178, "rotates": false }, + { "id": "mon_boomer_fungus", "fg": 2935, "bg": 3178, "rotates": false }, + { "id": "mon_breather", "fg": 2936, "rotates": false }, + { "id": "mon_breather_hub", "fg": 2937, "bg": 3178, "rotates": false }, + { "id": "mon_c4_hack", "fg": 2938, "bg": 3178, "rotates": false }, + { "id": "mon_cat", "fg": 2933, "bg": 3178, "rotates": false }, + { "id": "mon_centipede", "fg": 2939, "rotates": false }, + { "id": "mon_centipede_giant", "fg": 2940, "bg": 3178, "rotates": false }, + { "id": "mon_charred_nightmare", "fg": 2941, "rotates": false }, + { "id": "mon_chicken", "fg": 2942, "bg": 3178, "rotates": false }, + { "id": "mon_chipmunk", "fg": 2943, "bg": 3178, "rotates": false }, + { "id": "mon_chud", "fg": 2944, "bg": 3178, "rotates": false }, + { "id": "mon_compsognathus", "fg": 2945, "bg": 3178, "rotates": false }, + { "id": "mon_cougar", "fg": 2946, "bg": 3178, "rotates": false }, + { "id": "mon_coyote", "fg": 2947, "bg": 3178, "rotates": false }, + { "id": "mon_coyote_wolf", "fg": 2948, "bg": 3178, "rotates": false }, + { "id": "mon_crawler", "fg": 2949, "bg": 3178, "rotates": false }, + { "id": "mon_creeper_hub", "fg": 2950, "bg": 3178, "rotates": false }, + { "id": "mon_creeper_vine", "fg": 2951, "bg": 3178, "rotates": false }, + { "id": "mon_crow", "fg": 2952, "bg": 3178, "rotates": false }, + { "id": "mon_darkman", "fg": 2953, "bg": 3178, "rotates": false }, + { "id": "mon_deer", "fg": 2954, "bg": 3178, "rotates": false }, + { "id": "mon_deer_mouse", "fg": 3033, "rotates": false }, + { "id": "mon_deinonychus", "fg": 2955, "bg": 3178, "rotates": false }, + { "id": "mon_dementia", "fg": 2956, "bg": 3178, "rotates": false }, + { "id": "mon_dermatik", "fg": 2957, "bg": 3178, "rotates": false }, + { "id": "mon_dermatik_larva", "fg": 2958, "rotates": false }, + { "id": "mon_dilophosaurus", "fg": 2955, "bg": 3178, "rotates": false }, + { "id": "mon_dimorphodon", "fg": 2959, "bg": 3178, "rotates": false }, + { "id": "mon_dog_skeleton", "fg": 2960, "bg": 3178, "rotates": false }, + { "id": "mon_dog_zombie_cop", "fg": 2961, "bg": 3178, "rotates": false }, + { "id": "mon_dog_zombie_rot", "fg": 2962, "bg": [ ], "rotates": false }, + { "id": "mon_dragonfly_giant", "fg": 2964, "bg": 3178, "rotates": false }, + { "id": "mon_dragonfly_small", "fg": 2963, "rotates": false }, + { "id": "mon_duck", "fg": 2965, "bg": 3178, "rotates": false }, + { "id": "mon_eoraptor", "fg": 2945, "bg": 3178, "rotates": false }, + { "id": "mon_fant", "fg": 2966, "rotates": false }, + { "id": "mon_fish_blinky", "fg": 2967, "rotates": false }, + { "id": "mon_fish_bluegill", "fg": 2968, "rotates": false }, + { "id": "mon_fish_bowfin", "fg": 2969, "rotates": false }, + { "id": "mon_fish_bullhead", "fg": 2970, "rotates": false }, + { "id": "mon_fish_carp", "fg": 2971, "rotates": false }, + { "id": "mon_fish_crayfish", "fg": 2972, "rotates": false }, + { "id": "mon_fish_lbass", "fg": 2973, "rotates": false }, + { "id": "mon_fish_lobster", "fg": 2974, "rotates": false }, + { "id": "mon_fish_pbass", "fg": 2975, "rotates": false }, + { "id": "mon_fish_perch", "fg": 2976, "rotates": false }, + { "id": "mon_fish_pickerel", "fg": 2977, "rotates": false }, + { "id": "mon_fish_pike", "fg": 2978, "rotates": false }, + { "id": "mon_fish_salmon", "fg": 2979, "rotates": false }, + { "id": "mon_fish_sbass", "fg": 2980, "rotates": false }, + { "id": "mon_fish_sunfish", "fg": 2981, "rotates": false }, + { "id": "mon_fish_trout", "fg": 2982, "rotates": false }, + { "id": "mon_fish_whitefish", "fg": 2983, "rotates": false }, + { "id": "mon_flaming_eye", "fg": 2984, "bg": 3178, "rotates": false }, + { "id": "mon_flashbang_hack", "fg": 2985, "bg": 3178, "rotates": false }, + { "id": "mon_fly", "fg": 2986, "bg": 3178, "rotates": false }, + { "id": "mon_fox_gray", "fg": 2987, "bg": 3178, "rotates": false }, + { "id": "mon_fox_red", "fg": 2987, "bg": 3178, "rotates": false }, + { "id": "mon_fungal_blossom", "fg": 2988, "bg": 3178, "rotates": false }, + { "id": "mon_fungal_fighter", "fg": 2989, "bg": 3178, "rotates": false }, + { "id": "mon_fungal_hedgerow", "fg": 2990, "bg": 3178, "rotates": false }, + { "id": "mon_fungal_tendril", "fg": 2991, "bg": 3178, "rotates": false }, + { "id": "mon_fungal_wall", "fg": 2992, "bg": 3178, "rotates": false }, + { "id": "mon_fungaloid_dormant", "fg": 3117, "bg": 3178, "rotates": false }, + { "id": "mon_gallimimus", "fg": 2993, "bg": 3178, "rotates": false }, + { "id": "mon_gasbomb_hack", "fg": 2994, "bg": 3178, "rotates": false }, + { "id": "mon_gator", "fg": 2995, "rotates": false }, + { "id": "mon_gelatin", "fg": 2996, "bg": 3178, "rotates": false }, + { "id": "mon_generator", "fg": 2997, "bg": 3178, "rotates": false }, + { "id": "mon_giant_cockroach", "fg": 2998, "rotates": false }, + { "id": "mon_giant_cockroach_nymph", "fg": 2999, "rotates": false }, + { "id": "mon_goat", "fg": 3000, "rotates": false }, + { "id": "mon_gozu", "fg": 3001, "bg": 3178, "rotates": false }, + { "id": "mon_graboid", "fg": 3002, "bg": 3178, "rotates": false }, + { "id": "mon_grenade_hack", "fg": 3003, "bg": 3178, "rotates": false }, + { "id": "mon_groundhog", "fg": 2943, "bg": 3178, "rotates": false }, + { "id": "mon_halfworm", "fg": 3004, "bg": 3178, "rotates": false }, + { "id": "mon_hallu_mom", "fg": 3005, "bg": 3178, "rotates": false }, + { "id": "mon_hare", "fg": 3006, "bg": 3178, "rotates": false }, + { "id": "mon_hare_season_winter", "fg": 3007, "bg": 3178, "rotates": false }, + { "id": "mon_headless_dog_thing", "fg": 3008, "bg": 3178, "rotates": false }, + { "id": "mon_hologram", "fg": 3118, "rotates": false }, + { "id": "mon_human_snail", "fg": 3009, "bg": 3178, "rotates": false }, + { "id": "mon_irradiated_wanderer_1", "fg": 3010, "bg": 3178 }, + { "id": "mon_irradiated_wanderer_2", "fg": 3011, "bg": 3178, "rotates": false }, + { "id": "mon_irradiated_wanderer_3", "fg": 3012, "bg": 3178 }, + { "id": "mon_irradiated_wanderer_4", "fg": 3013, "bg": 3178 }, + { "id": "mon_laserturret", "fg": 3014, "bg": 3178, "rotates": false }, + { "id": "mon_lemming", "fg": 2943, "bg": 3178, "rotates": false }, + { "id": "mon_manhack", "fg": 3015, "bg": 3178, "rotates": false }, + { "id": "mon_manhack_acid", "fg": 3016, "rotates": false }, + { "id": "mon_mi_go", "fg": 3018, "bg": 3178, "rotates": false }, + { "id": "mon_mininuke_hack", "fg": 3017, "bg": 3178, "rotates": false }, + { "id": "mon_mink", "fg": 2943, "bg": 3178, "rotates": false }, + { "id": "mon_moose", "fg": 3019, "bg": 3178, "rotates": false }, + { "id": "mon_mosquito_small", "fg": 3149, "bg": 3178, "rotates": false }, + { "id": "mon_muskrat", "fg": 3033, "rotates": false }, + { "id": "mon_mutant_carp", "fg": 3020, "rotates": false }, + { "id": "mon_mutant_salmon", "fg": 3021, "rotates": false }, + { "id": "mon_one_eye", "fg": 3022, "bg": 3178, "rotates": false }, + { "id": "mon_otter", "fg": 2943, "bg": 3178, "rotates": false }, + { "id": "mon_player_blob", "fg": 3023, "bg": 3178, "rotates": false }, + { "id": "mon_pregnant_giant_cockroach", "fg": 3024, "rotates": false }, + { "id": "mon_prototype_cyborg", "fg": 3153, "bg": 3178, "rotates": false }, + { "id": "mon_rabbit", "fg": 3025, "bg": 3178, "rotates": false }, + { "id": "mon_raccoon", "fg": 3026, "bg": 3178, "rotates": false }, + { "id": "mon_rat_king", "fg": 3029, "bg": 3178, "rotates": false }, + { "id": "mon_rattlesnake", "fg": 3027, "bg": 3178, "rotates": false }, + { "id": "mon_rattlesnake_giant", "fg": 3028, "bg": 3178, "rotates": false }, + { "id": "mon_razorclaw", "fg": 3030, "bg": 3178 }, + { "id": "mon_riotbot", "fg": 3031, "bg": 3178, "rotates": false }, + { "id": "mon_sewer_fish", "fg": 3032, "bg": 3178, "rotates": false }, + { "id": "mon_sewer_rat", "fg": 3033, "bg": 3178, "rotates": false }, + { "id": "mon_sewer_snake", "fg": 3034, "bg": 3178, "rotates": false }, + { "id": "mon_shadow", "fg": 3035, "rotates": false }, + { "id": "mon_shadow_snake", "fg": 3036, "rotates": false }, + { "id": "mon_skeleton", "fg": 3037, "bg": 3178, "rotates": false }, + { "id": "mon_skeleton_electric", "fg": 3156, "bg": 3178, "rotates": false }, + { "id": "mon_skitterbot", "fg": 3038, "bg": 3178, "rotates": false }, + { "id": "mon_sludge_crawler", "fg": 3039, "bg": 3178, "rotates": false }, + { "id": "mon_spider_cellar_giant", "fg": 3040, "bg": 3178, "rotates": false }, + { "id": "mon_spider_cellar_giant_s", "fg": 3041, "bg": 3178, "rotates": false }, + { "id": "mon_spider_jumping_giant", "fg": 3043, "bg": 3178, "rotates": false }, + { "id": "mon_spider_jumping_giant_mega", "fg": 3044, "rotates": false }, + { "id": "mon_spider_jumping_small", "fg": 3042, "bg": 3178, "rotates": false }, + { "id": "mon_spider_trapdoor", "fg": 3045, "bg": 3178, "rotates": false }, + { "id": "mon_spider_trapdoor_giant", "fg": 3046, "bg": 3178, "rotates": false }, + { "id": "mon_spider_trapdoor_giant_mega", "fg": 3047, "rotates": false }, + { "id": "mon_spider_trapdoor_giant_small", "fg": 3048, "rotates": false }, + { "id": "mon_spider_web", "fg": 3049, "bg": 3178, "rotates": false }, + { "id": "mon_spider_web_giant", "fg": 3049, "bg": 3178, "rotates": false }, + { "id": "mon_spider_web_mega", "fg": 3050, "rotates": false }, + { "id": "mon_spider_web_s", "fg": 3051, "bg": 3178, "rotates": false }, + { "id": "mon_spider_widow_giant", "fg": 3053, "bg": 3178, "rotates": false }, + { "id": "mon_spider_widow_giant_s", "fg": 3054, "bg": 3178, "rotates": false }, + { "id": "mon_spider_widow_small", "fg": 3052, "bg": 3178, "rotates": false }, + { "id": "mon_spider_wolf_giant", "fg": 3056, "bg": 3178, "rotates": false }, + { "id": "mon_spider_wolf_small", "fg": 3055, "bg": 3178, "rotates": false }, + { "id": "mon_spore", "fg": 3057, "bg": 3178, "rotates": false }, + { "id": "mon_squirrel", "fg": 3058, "bg": 3178, "rotates": false }, + { "id": "mon_squirrel_red", "fg": 3058, "bg": 3178, "rotates": false }, + { "id": "mon_titanis", "fg": 3059, "bg": 3178, "rotates": false }, + { "id": "mon_turkey", "fg": 3060, "bg": 3178, "rotates": false }, + { "id": "mon_velociraptor", "fg": 3061, "bg": 3178, "rotates": false }, + { "id": "mon_vinebeast", "fg": 3062, "bg": 3178, "rotates": false }, + { "id": "mon_vortex", "fg": 3063, "bg": 3178, "rotates": false }, + { "id": "mon_w11b10", "fg": 3120, "rotates": false }, + { "id": "mon_w11b20b4", "fg": 3121, "rotates": false }, + { "id": "mon_w11h10", "fg": 3123, "rotates": false }, + { "id": "mon_w12b10", "fg": 3122, "rotates": false }, + { "id": "mon_w12n10", "fg": 3124, "rotates": false }, + { "id": "mon_wasp", "fg": 3064, "bg": 3178, "rotates": false }, + { "id": "mon_wasp_larvae", "fg": 2958 }, + { "id": "mon_wasp_mega", "fg": 3065 }, + { "id": "mon_wasp_small", "fg": 3066, "rotates": false }, + { "id": "mon_weasel", "fg": 2943, "bg": 3178, "rotates": false }, + { "id": "mon_wolf", "fg": 3067, "bg": 3178, "rotates": false }, + { "id": "mon_worm", "fg": 3068, "bg": 3178, "rotates": false }, + { "id": "mon_zhark", "fg": 3069 }, + { "id": "mon_zolf", "fg": 3070, "bg": 3178, "rotates": false }, + { "id": "mon_zolf_shady", "fg": 3071, "rotates": false }, + { "id": "mon_zombear", "fg": 3072, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_acidic", "fg": 3073, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_anklebiter", "fg": 3074, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_armored", "fg": 3075, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_bio_op", "fg": 3076, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_biter", "fg": 3077, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_blind", "fg": 3078, "rotates": false }, + { "id": "mon_zombie_brainless", "fg": 3160, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_brute", "fg": 3079, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_brute_grappler", "fg": 3080, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_brute_ninja", "fg": 3081, "bg": 3178 }, + { "id": "mon_zombie_brute_shocker", "fg": 3082, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_child_fungus", "fg": 3125, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_child_scorched", "fg": 3083, "bg": 3178 }, + { "id": "mon_zombie_child_scorched_2", "fg": 3084, "rotates": false }, + { "id": "mon_zombie_cop", "fg": 3085, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_crawler", "fg": 3086, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_creepy", "fg": 3087, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_dancer", "fg": 3088, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_dog", "fg": 3089, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_ears", "fg": 3161, "bg": 3178 }, + { "id": "mon_zombie_electric", "fg": 3090, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_fiend", "fg": 3162, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_fireman", "fg": 3091, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_fungus", "fg": [ 3092, 3163 ], "bg": 3178, "rotates": false }, + { "id": "mon_zombie_gasbag", "fg": 3093, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_grappler", "fg": 3094, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_hazmat", "fg": 3095, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_hollow", "fg": 3096, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_hunter", "fg": 3097, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_jackson", "fg": 3098, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_kevlar_1", "fg": 3167, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_mancroc", "fg": 3099, "bg": 3178 }, + { "id": "mon_zombie_master", "fg": 3100, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_military_pilot", "fg": 3119, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_necro", "fg": 3101, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_predator", "fg": 3102, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_rot", "fg": 3103, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_scorched", "fg": 3104, "bg": 3178 }, + { "id": "mon_zombie_shady", "fg": 3105, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_shady_ghost", "fg": 3106, "rotates": false }, + { "id": "mon_zombie_shriekling", "fg": 3107, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_skull", "fg": 3169, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_smoker", "fg": 3108, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_snotgobbler", "fg": 3109, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_soldier", "fg": 3110, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_soldier_acid_1", "fg": 3170, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_soldier_acid_2", "fg": 3171, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_soldier_blackops_1", "fg": 3172, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_soldier_blackops_2", "fg": 3173, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_spitter", "fg": 3111, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_sproglodyte", "fg": 3112, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_static", "fg": 3174, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_swimmer", "fg": 3113, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_thorny", "fg": 3175, "rotates": false, "bg": 3178 }, + { "id": "mon_zombie_waif", "fg": 3114, "bg": 3178, "rotates": false }, + { "id": "mon_zombie_wretched", "fg": 3176, "bg": 3178, "rotates": false }, + { "id": "mon_zoose", "fg": 3115, "bg": 3178, "rotates": false }, + { "id": "mon_zougar", "fg": 3116, "bg": 3178, "rotates": false }, + { "id": "mon_triffid", "fg": 3157, "bg": 3178 }, + { "id": "mon_triffid_sprig", "fg": 3158, "bg": 3178 }, + { "id": "mon_triffid_young", "fg": 3159, "bg": 3178 }, { "id": "mon_broken_cyborg", "fg": [ - { "weight": 1, "sprite": 3171 }, - { "weight": 1, "sprite": 3172 }, - { "weight": 1, "sprite": 3173 }, - { "weight": 1, "sprite": 3174 }, - { "weight": 1, "sprite": 3175 }, - { "weight": 1, "sprite": 3176 } + { "weight": 1, "sprite": 3188 }, + { "weight": 1, "sprite": 3189 }, + { "weight": 1, "sprite": 3190 }, + { "weight": 1, "sprite": 3191 }, + { "weight": 1, "sprite": 3192 }, + { "weight": 1, "sprite": 3193 } ], - "bg": 3161, + "bg": 3178, "rotates": false }, { "id": [ "mon_dog", "mon_dog_thing" ], - "fg": [ { "weight": 10, "sprite": 3177 }, { "weight": 1, "sprite": 3178 } ], + "fg": [ { "weight": 10, "sprite": 3194 }, { "weight": 1, "sprite": 3195 } ], "rotates": false }, { "id": "mon_feral_human_crowbar", "fg": [ - { "weight": 1, "sprite": 3189 }, - { "weight": 1, "sprite": 3190 }, - { "weight": 1, "sprite": 3191 }, - { "weight": 1, "sprite": 3192 }, - { "weight": 1, "sprite": 3193 }, - { "weight": 1, "sprite": 3194 }, - { "weight": 1, "sprite": 3195 }, - { "weight": 1, "sprite": 3196 } + { "weight": 1, "sprite": 3206 }, + { "weight": 1, "sprite": 3207 }, + { "weight": 1, "sprite": 3208 }, + { "weight": 1, "sprite": 3209 }, + { "weight": 1, "sprite": 3210 }, + { "weight": 1, "sprite": 3211 }, + { "weight": 1, "sprite": 3212 }, + { "weight": 1, "sprite": 3213 } ], - "bg": 3161 + "bg": 3178 }, { "id": "mon_feral_human_pipe", "fg": [ - { "weight": 1, "sprite": 3197 }, + { "weight": 1, "sprite": 3214 }, + { "weight": 1, "sprite": 3215 }, + { "weight": 1, "sprite": 3216 }, + { "weight": 1, "sprite": 3217 }, + { "weight": 1, "sprite": 3218 }, + { "weight": 1, "sprite": 3219 }, + { "weight": 1, "sprite": 3220 }, + { "weight": 1, "sprite": 3221 } + ], + "bg": 3178 + }, + { + "id": "mon_feral_human_axe", + "fg": [ { "weight": 1, "sprite": 3198 }, { "weight": 1, "sprite": 3199 }, { "weight": 1, "sprite": 3200 }, { "weight": 1, "sprite": 3201 }, { "weight": 1, "sprite": 3202 }, { "weight": 1, "sprite": 3203 }, - { "weight": 1, "sprite": 3204 } - ], - "bg": 3161 - }, - { - "id": "mon_feral_human_axe", - "fg": [ - { "weight": 1, "sprite": 3181 }, - { "weight": 1, "sprite": 3182 }, - { "weight": 1, "sprite": 3183 }, - { "weight": 1, "sprite": 3184 }, - { "weight": 1, "sprite": 3185 }, - { "weight": 1, "sprite": 3186 }, - { "weight": 1, "sprite": 3187 }, - { "weight": 1, "sprite": 3188 } + { "weight": 1, "sprite": 3204 }, + { "weight": 1, "sprite": 3205 } ], - "bg": 3161 + "bg": 3178 }, { "id": "mon_feral_labsecurity_9mm", "fg": [ - { "weight": 1, "sprite": 3205 }, - { "weight": 1, "sprite": 3206 }, - { "weight": 1, "sprite": 3207 }, - { "weight": 1, "sprite": 3208 }, - { "weight": 1, "sprite": 3209 }, - { "weight": 1, "sprite": 3210 }, - { "weight": 1, "sprite": 3211 }, - { "weight": 1, "sprite": 3212 } + { "weight": 1, "sprite": 3222 }, + { "weight": 1, "sprite": 3223 }, + { "weight": 1, "sprite": 3224 }, + { "weight": 1, "sprite": 3225 }, + { "weight": 1, "sprite": 3226 }, + { "weight": 1, "sprite": 3227 }, + { "weight": 1, "sprite": 3228 }, + { "weight": 1, "sprite": 3229 } ], - "bg": 3161 + "bg": 3178 }, { "id": "mon_feral_labsecurity_flashlight", "fg": [ - { "weight": 1, "sprite": 3213 }, - { "weight": 1, "sprite": 3214 }, - { "weight": 1, "sprite": 3215 }, - { "weight": 1, "sprite": 3216 }, - { "weight": 1, "sprite": 3217 } + { "weight": 1, "sprite": 3230 }, + { "weight": 1, "sprite": 3231 }, + { "weight": 1, "sprite": 3232 }, + { "weight": 1, "sprite": 3233 }, + { "weight": 1, "sprite": 3234 } ], - "bg": 3161 + "bg": 3178 }, { "id": "mon_feral_scientist_scalpel", "fg": [ - { "weight": 1, "sprite": 3218 }, - { "weight": 1, "sprite": 3219 }, - { "weight": 1, "sprite": 3220 }, - { "weight": 1, "sprite": 3221 }, - { "weight": 1, "sprite": 3222 } + { "weight": 1, "sprite": 3235 }, + { "weight": 1, "sprite": 3236 }, + { "weight": 1, "sprite": 3237 }, + { "weight": 1, "sprite": 3238 }, + { "weight": 1, "sprite": 3239 } ], - "bg": 3161 + "bg": 3178 }, { "id": "mon_fungaloid", - "fg": [ { "weight": 100, "sprite": 3230 }, { "weight": 1, "sprite": 3231 } ], + "fg": [ { "weight": 100, "sprite": 3250 }, { "weight": 1, "sprite": 3251 } ], "rotates": false }, - { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 3243, "rotates": false }, + { "id": [ "mon_zombie_crawler_pupa", "mon_zombie_crawler_pupa_decoy" ], "fg": 3267, "rotates": false }, { "id": [ "corpse_mon_zombie_crawler_pupa", "corpse_mon_zombie_crawler_pupa_decoy" ], - "fg": 3242, + "fg": 3266, "rotates": false }, { "id": "mon_zombie_giant_heart", "animated": true, "fg": [ - { "weight": 15, "sprite": 3244 }, - { "weight": 15, "sprite": 3245 }, - { "weight": 15, "sprite": 3244 }, - { "weight": 15, "sprite": 3246 } + { "weight": 15, "sprite": 3268 }, + { "weight": 15, "sprite": 3269 }, + { "weight": 15, "sprite": 3268 }, + { "weight": 15, "sprite": 3270 } ], "rotates": false, - "bg": 3161 + "bg": 3178 }, - { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 3251, "rotates": false }, - { "id": [ "corpse_mon_zombie_pupa", "corpse_mon_zombie_pupa_decoy" ], "fg": 3250, "rotates": false }, + { "id": [ "mon_zombie_pupa", "mon_zombie_pupa_decoy" ], "fg": 3275, "rotates": false }, + { "id": [ "corpse_mon_zombie_pupa", "corpse_mon_zombie_pupa_decoy" ], "fg": 3274, "rotates": false }, { "id": "mon_twisted_body", - "fg": [ { "weight": 1, "sprite": 3258 }, { "weight": 1, "sprite": 3259 }, { "weight": 1, "sprite": 3260 } ], - "bg": 3161, + "fg": [ { "weight": 1, "sprite": 3284 }, { "weight": 1, "sprite": 3285 }, { "weight": 1, "sprite": 3286 } ], + "bg": 3178, "rotates": false }, { "id": "mon_zombie", "fg": [ - { "weight": 1, "sprite": 3271 }, - { "weight": 1, "sprite": 3282 }, + { "weight": 1, "sprite": 3297 }, + { "weight": 1, "sprite": 3308 }, + { "weight": 1, "sprite": 3315 }, + { "weight": 1, "sprite": 3316 }, + { "weight": 1, "sprite": 3317 }, + { "weight": 1, "sprite": 3318 }, + { "weight": 1, "sprite": 3319 }, + { "weight": 1, "sprite": 3320 }, + { "weight": 1, "sprite": 3321 }, + { "weight": 1, "sprite": 3287 }, + { "weight": 1, "sprite": 3288 }, { "weight": 1, "sprite": 3289 }, { "weight": 1, "sprite": 3290 }, { "weight": 1, "sprite": 3291 }, @@ -3412,48 +3425,8 @@ { "weight": 1, "sprite": 3293 }, { "weight": 1, "sprite": 3294 }, { "weight": 1, "sprite": 3295 }, - { "weight": 1, "sprite": 3261 }, - { "weight": 1, "sprite": 3262 }, - { "weight": 1, "sprite": 3263 }, - { "weight": 1, "sprite": 3264 }, - { "weight": 1, "sprite": 3265 }, - { "weight": 1, "sprite": 3266 }, - { "weight": 1, "sprite": 3267 }, - { "weight": 1, "sprite": 3268 }, - { "weight": 1, "sprite": 3269 }, - { "weight": 1, "sprite": 3270 }, - { "weight": 1, "sprite": 3272 }, - { "weight": 1, "sprite": 3273 }, - { "weight": 1, "sprite": 3274 }, - { "weight": 1, "sprite": 3275 }, - { "weight": 1, "sprite": 3276 }, - { "weight": 1, "sprite": 3277 }, - { "weight": 1, "sprite": 3278 }, - { "weight": 1, "sprite": 3279 }, - { "weight": 1, "sprite": 3280 }, - { "weight": 1, "sprite": 3281 }, - { "weight": 1, "sprite": 3283 }, - { "weight": 1, "sprite": 3284 }, - { "weight": 1, "sprite": 3285 }, - { "weight": 1, "sprite": 3286 }, - { "weight": 1, "sprite": 3287 }, - { "weight": 1, "sprite": 3288 } - ], - "bg": 3161, - "rotates": false - }, - { - "id": "mon_zombie_child", - "fg": [ { "weight": 1, "sprite": 3296 }, - { "weight": 1, "sprite": 3297 }, { "weight": 1, "sprite": 3298 }, - { "weight": 1, "sprite": 3307 }, - { "weight": 1, "sprite": 3308 }, - { "weight": 1, "sprite": 3309 }, - { "weight": 1, "sprite": 3310 }, - { "weight": 1, "sprite": 3311 }, - { "weight": 1, "sprite": 3312 }, { "weight": 1, "sprite": 3299 }, { "weight": 1, "sprite": 3300 }, { "weight": 1, "sprite": 3301 }, @@ -3461,288 +3434,319 @@ { "weight": 1, "sprite": 3303 }, { "weight": 1, "sprite": 3304 }, { "weight": 1, "sprite": 3305 }, - { "weight": 1, "sprite": 3306 } + { "weight": 1, "sprite": 3306 }, + { "weight": 1, "sprite": 3307 }, + { "weight": 1, "sprite": 3309 }, + { "weight": 1, "sprite": 3310 }, + { "weight": 1, "sprite": 3311 }, + { "weight": 1, "sprite": 3312 }, + { "weight": 1, "sprite": 3313 }, + { "weight": 1, "sprite": 3314 } ], - "bg": 3161, + "bg": 3178, "rotates": false }, { - "id": "mon_zombie_fat", + "id": "mon_zombie_child", "fg": [ - { "weight": 1, "sprite": 3313 }, - { "weight": 1, "sprite": 3314 }, - { "weight": 1, "sprite": 3315 }, + { "weight": 1, "sprite": 3322 }, { "weight": 1, "sprite": 3323 }, { "weight": 1, "sprite": 3324 }, + { "weight": 1, "sprite": 3333 }, + { "weight": 1, "sprite": 3334 }, + { "weight": 1, "sprite": 3335 }, + { "weight": 1, "sprite": 3336 }, + { "weight": 1, "sprite": 3337 }, + { "weight": 1, "sprite": 3338 }, { "weight": 1, "sprite": 3325 }, { "weight": 1, "sprite": 3326 }, { "weight": 1, "sprite": 3327 }, { "weight": 1, "sprite": 3328 }, - { "weight": 1, "sprite": 3316 }, - { "weight": 1, "sprite": 3317 }, - { "weight": 1, "sprite": 3318 }, - { "weight": 1, "sprite": 3319 }, - { "weight": 1, "sprite": 3320 }, - { "weight": 1, "sprite": 3321 }, - { "weight": 1, "sprite": 3322 } - ], - "bg": 3161, - "rotates": false - }, - { - "id": "mon_zombie_grabber", - "fg": [ { "weight": 1, "sprite": 3329 }, { "weight": 1, "sprite": 3330 }, { "weight": 1, "sprite": 3331 }, - { "weight": 1, "sprite": 3332 }, - { "weight": 1, "sprite": 3333 }, - { "weight": 1, "sprite": 3334 }, - { "weight": 1, "sprite": 3335 }, - { "weight": 1, "sprite": 3336 }, - { "weight": 1, "sprite": 3337 } + { "weight": 1, "sprite": 3332 } ], - "bg": 3161, + "bg": 3178, "rotates": false }, { - "id": "mon_zombie_labsecurity", + "id": "mon_zombie_fat", "fg": [ - { "weight": 1, "sprite": 3338 }, { "weight": 1, "sprite": 3339 }, { "weight": 1, "sprite": 3340 }, { "weight": 1, "sprite": 3341 }, + { "weight": 1, "sprite": 3349 }, + { "weight": 1, "sprite": 3350 }, + { "weight": 1, "sprite": 3351 }, + { "weight": 1, "sprite": 3352 }, + { "weight": 1, "sprite": 3353 }, + { "weight": 1, "sprite": 3354 }, { "weight": 1, "sprite": 3342 }, - { "weight": 1, "sprite": 3343 } - ], - "bg": 3161, - "rotates": false - }, - { - "id": "mon_zombie_prisoner", - "fg": [ + { "weight": 1, "sprite": 3343 }, { "weight": 1, "sprite": 3344 }, { "weight": 1, "sprite": 3345 }, { "weight": 1, "sprite": 3346 }, { "weight": 1, "sprite": 3347 }, - { "weight": 1, "sprite": 3348 }, - { "weight": 1, "sprite": 3349 } + { "weight": 1, "sprite": 3348 } ], - "bg": 3161, + "bg": 3178, "rotates": false }, { - "id": "mon_zombie_runner", - "fg": [ - { "weight": 1, "sprite": 3350 }, - { "weight": 1, "sprite": 3351 }, - { "weight": 1, "sprite": 3352 }, - { "weight": 1, "sprite": 3353 }, - { "weight": 1, "sprite": 3354 } - ], - "bg": 3161, - "rotates": false - }, - { - "id": "mon_zombie_scientist", + "id": "mon_zombie_grabber", "fg": [ { "weight": 1, "sprite": 3355 }, + { "weight": 1, "sprite": 3356 }, + { "weight": 1, "sprite": 3357 }, { "weight": 1, "sprite": 3358 }, { "weight": 1, "sprite": 3359 }, { "weight": 1, "sprite": 3360 }, { "weight": 1, "sprite": 3361 }, { "weight": 1, "sprite": 3362 }, - { "weight": 1, "sprite": 3363 }, - { "weight": 1, "sprite": 3364 }, - { "weight": 1, "sprite": 3365 }, - { "weight": 1, "sprite": 3356 }, - { "weight": 1, "sprite": 3357 } + { "weight": 1, "sprite": 3363 } ], - "bg": 3161, + "bg": 3178, "rotates": false }, { - "id": "mon_zombie_screecher", + "id": "mon_zombie_labsecurity", "fg": [ + { "weight": 1, "sprite": 3364 }, + { "weight": 1, "sprite": 3365 }, { "weight": 1, "sprite": 3366 }, { "weight": 1, "sprite": 3367 }, { "weight": 1, "sprite": 3368 }, { "weight": 1, "sprite": 3369 } ], - "bg": 3161, + "bg": 3178, "rotates": false }, { - "id": "mon_zombie_shrieker", + "id": "mon_zombie_prisoner", "fg": [ { "weight": 1, "sprite": 3370 }, { "weight": 1, "sprite": 3371 }, { "weight": 1, "sprite": 3372 }, - { "weight": 1, "sprite": 3373 } + { "weight": 1, "sprite": 3373 }, + { "weight": 1, "sprite": 3374 }, + { "weight": 1, "sprite": 3375 } + ], + "bg": 3178, + "rotates": false + }, + { + "id": "mon_zombie_runner", + "fg": [ + { "weight": 1, "sprite": 3376 }, + { "weight": 1, "sprite": 3377 }, + { "weight": 1, "sprite": 3378 }, + { "weight": 1, "sprite": 3379 }, + { "weight": 1, "sprite": 3380 } + ], + "bg": 3178, + "rotates": false + }, + { + "id": "mon_zombie_scientist", + "fg": [ + { "weight": 1, "sprite": 3381 }, + { "weight": 1, "sprite": 3384 }, + { "weight": 1, "sprite": 3385 }, + { "weight": 1, "sprite": 3386 }, + { "weight": 1, "sprite": 3387 }, + { "weight": 1, "sprite": 3388 }, + { "weight": 1, "sprite": 3389 }, + { "weight": 1, "sprite": 3390 }, + { "weight": 1, "sprite": 3391 }, + { "weight": 1, "sprite": 3382 }, + { "weight": 1, "sprite": 3383 } + ], + "bg": 3178, + "rotates": false + }, + { + "id": "mon_zombie_screecher", + "fg": [ + { "weight": 1, "sprite": 3392 }, + { "weight": 1, "sprite": 3393 }, + { "weight": 1, "sprite": 3394 }, + { "weight": 1, "sprite": 3395 } + ], + "bg": 3178, + "rotates": false + }, + { + "id": "mon_zombie_shrieker", + "fg": [ + { "weight": 1, "sprite": 3396 }, + { "weight": 1, "sprite": 3397 }, + { "weight": 1, "sprite": 3398 }, + { "weight": 1, "sprite": 3399 } ], - "bg": 3161, + "bg": 3178, "rotates": false }, { "id": "mon_zombie_survivor", - "fg": [ { "weight": 1, "sprite": 3374 }, { "weight": 1, "sprite": 3375 } ], - "bg": 3161, + "fg": [ { "weight": 1, "sprite": 3400 }, { "weight": 1, "sprite": 3401 } ], + "bg": 3178, "rotates": false }, { "id": "mon_zombie_survivor_elite", - "fg": [ { "weight": 1, "sprite": 3376 }, { "weight": 1, "sprite": 3377 }, { "weight": 1, "sprite": 3378 } ], - "bg": 3161, + "fg": [ { "weight": 1, "sprite": 3402 }, { "weight": 1, "sprite": 3403 }, { "weight": 1, "sprite": 3404 } ], + "bg": 3178, "rotates": false }, { "id": "mon_zombie_technician", "fg": [ - { "weight": 1, "sprite": 3379 }, - { "weight": 1, "sprite": 3380 }, - { "weight": 1, "sprite": 3381 }, - { "weight": 1, "sprite": 3382 } + { "weight": 1, "sprite": 3405 }, + { "weight": 1, "sprite": 3406 }, + { "weight": 1, "sprite": 3407 }, + { "weight": 1, "sprite": 3408 } ], - "bg": 3161, + "bg": 3178, "rotates": false }, { "id": "mon_zombie_tough", "fg": [ - { "weight": 1, "sprite": 3383 }, - { "weight": 1, "sprite": 3384 }, - { "weight": 1, "sprite": 3385 }, - { "weight": 1, "sprite": 3392 }, - { "weight": 1, "sprite": 3393 }, - { "weight": 1, "sprite": 3394 }, - { "weight": 1, "sprite": 3395 }, - { "weight": 1, "sprite": 3396 }, - { "weight": 1, "sprite": 3397 }, - { "weight": 1, "sprite": 3386 }, - { "weight": 1, "sprite": 3387 }, - { "weight": 1, "sprite": 3388 }, - { "weight": 1, "sprite": 3389 }, - { "weight": 1, "sprite": 3390 }, - { "weight": 1, "sprite": 3391 } + { "weight": 1, "sprite": 3409 }, + { "weight": 1, "sprite": 3410 }, + { "weight": 1, "sprite": 3411 }, + { "weight": 1, "sprite": 3418 }, + { "weight": 1, "sprite": 3419 }, + { "weight": 1, "sprite": 3420 }, + { "weight": 1, "sprite": 3421 }, + { "weight": 1, "sprite": 3422 }, + { "weight": 1, "sprite": 3423 }, + { "weight": 1, "sprite": 3412 }, + { "weight": 1, "sprite": 3413 }, + { "weight": 1, "sprite": 3414 }, + { "weight": 1, "sprite": 3415 }, + { "weight": 1, "sprite": 3416 }, + { "weight": 1, "sprite": 3417 } ], - "bg": 3161, + "bg": 3178, "rotates": false }, - { "id": "f_aut_gas_console", "fg": 3422 }, - { "id": "f_aut_gas_console_o", "fg": 3423 }, - { "id": "t_atm", "fg": 3400, "bg": 3663, "rotates": false }, - { "id": [ "t_backboard", "t_backboard_in" ], "fg": 3401, "bg": 3657, "rotates": false }, - { "id": "t_barndoor", "fg": 3402, "bg": 3809, "rotates": false }, - { "id": "t_barndoor_season_autumn", "fg": 3402, "bg": 3813 }, - { "id": "t_barndoor_season_summer", "fg": 3402, "bg": 3817 }, - { "id": "t_barndoor_season_winter", "fg": 3402, "bg": 3734 }, - { "id": "t_bars", "fg": 3403, "bg": 3663, "rotates": false }, - { "id": "t_brick_wall_halfway", "fg": 3404, "bg": 3825 }, - { "id": "t_bridge", "fg": 3405, "rotates": false }, - { "id": "t_card_military", "fg": 3406, "bg": 3663, "rotates": false }, - { "id": "t_card_reader_broken", "fg": 3407, "bg": 3663, "rotates": false }, - { "id": "t_card_science", "fg": 3406, "bg": 3663, "rotates": false }, - { "id": "t_carpet_green", "fg": 3408, "rotates": false }, - { "id": "t_carpet_purple", "fg": 3409, "rotates": false }, - { "id": "t_carpet_red", "fg": 3410, "rotates": false }, - { "id": "t_carpet_yellow", "fg": 3411, "rotates": false }, - { "id": "t_chainfence_posts", "fg": 3418, "bg": 3809, "rotates": false }, + { "id": "f_aut_gas_console", "fg": 3448 }, + { "id": "f_aut_gas_console_o", "fg": 3449 }, + { "id": "t_atm", "fg": 3426, "bg": 3689, "rotates": false }, + { "id": [ "t_backboard", "t_backboard_in" ], "fg": 3427, "bg": 3683, "rotates": false }, + { "id": "t_barndoor", "fg": 3428, "bg": 3835, "rotates": false }, + { "id": "t_barndoor_season_autumn", "fg": 3428, "bg": 3839 }, + { "id": "t_barndoor_season_summer", "fg": 3428, "bg": 3843 }, + { "id": "t_barndoor_season_winter", "fg": 3428, "bg": 3760 }, + { "id": "t_bars", "fg": 3429, "bg": 3689, "rotates": false }, + { "id": "t_brick_wall_halfway", "fg": 3430, "bg": 3851 }, + { "id": "t_bridge", "fg": 3431, "rotates": false }, + { "id": "t_card_military", "fg": 3432, "bg": 3689, "rotates": false }, + { "id": "t_card_reader_broken", "fg": 3433, "bg": 3689, "rotates": false }, + { "id": "t_card_science", "fg": 3432, "bg": 3689, "rotates": false }, + { "id": "t_carpet_green", "fg": 3434, "rotates": false }, + { "id": "t_carpet_purple", "fg": 3435, "rotates": false }, + { "id": "t_carpet_red", "fg": 3436, "rotates": false }, + { "id": "t_carpet_yellow", "fg": 3437, "rotates": false }, + { "id": "t_chainfence_posts", "fg": 3444, "bg": 3835, "rotates": false }, { "id": [ "t_chainfence", "t_chainfence_h" ], - "fg": 3412, - "bg": 3657, + "fg": 3438, + "bg": 3683, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3413, "bg": 3657 }, - { "id": "edge", "fg": 3414, "bg": 3657 }, - { "id": "t_connection", "fg": 3416, "bg": 3657 }, - { "id": "center", "fg": 3412, "bg": 3657 }, - { "id": "unconnected", "fg": 3417, "bg": 3657 }, - { "id": "end_piece", "fg": 3415, "bg": 3657 } + { "id": "corner", "fg": 3439, "bg": 3683 }, + { "id": "edge", "fg": 3440, "bg": 3683 }, + { "id": "t_connection", "fg": 3442, "bg": 3683 }, + { "id": "center", "fg": 3438, "bg": 3683 }, + { "id": "unconnected", "fg": 3443, "bg": 3683 }, + { "id": "end_piece", "fg": 3441, "bg": 3683 } ] }, { "id": "t_chainfence_v", - "fg": 3412, - "bg": 3657, + "fg": 3438, + "bg": 3683, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3413, "bg": 3657 }, - { "id": "edge", "fg": 3414, "bg": 3657 }, - { "id": "t_connection", "fg": 3416, "bg": 3657 }, - { "id": "center", "fg": 3412, "bg": 3657 }, - { "id": "unconnected", "fg": 3417, "bg": 3657 }, - { "id": "end_piece", "fg": 3415, "bg": 3657 } + { "id": "corner", "fg": 3439, "bg": 3683 }, + { "id": "edge", "fg": 3440, "bg": 3683 }, + { "id": "t_connection", "fg": 3442, "bg": 3683 }, + { "id": "center", "fg": 3438, "bg": 3683 }, + { "id": "unconnected", "fg": 3443, "bg": 3683 }, + { "id": "end_piece", "fg": 3441, "bg": 3683 } ] }, - { "id": "t_chaingate_c", "fg": 3419, "bg": 3657, "rotates": false }, - { "id": "t_chaingate_l", "fg": 3419, "bg": 3657, "rotates": false }, - { "id": "t_chaingate_o", "fg": 3420, "bg": 3657, "rotates": false }, - { "id": [ "t_claymound", "t_clay" ], "fg": 3666, "bg": 3809 }, - { "id": [ "t_claymound_season_autumn", "t_clay_season_autumn" ], "fg": 3666, "bg": 3813 }, - { "id": [ "t_claymound_season_summer", "t_clay_season_summer" ], "fg": 3666, "bg": 3817 }, - { "id": "t_column", "fg": 3421, "rotates": false }, - { "id": "t_concrete_floor", "fg": 3663, "rotates": false }, - { "id": "t_console", "fg": 3422, "rotates": false }, - { "id": [ "t_console_broken", "t_sliding_concrete_wall_control" ], "fg": 3423, "rotates": false }, + { "id": "t_chaingate_c", "fg": 3445, "bg": 3683, "rotates": false }, + { "id": "t_chaingate_l", "fg": 3445, "bg": 3683, "rotates": false }, + { "id": "t_chaingate_o", "fg": 3446, "bg": 3683, "rotates": false }, + { "id": [ "t_claymound", "t_clay" ], "fg": 3691, "bg": 3835 }, + { "id": [ "t_claymound_season_autumn", "t_clay_season_autumn" ], "fg": 3691, "bg": 3839 }, + { "id": [ "t_claymound_season_summer", "t_clay_season_summer" ], "fg": 3691, "bg": 3843 }, + { "id": "t_column", "fg": 3447, "rotates": false }, + { "id": "t_concrete_floor", "fg": 3689, "rotates": false }, + { "id": "t_console", "fg": 3448, "rotates": false }, + { "id": [ "t_console_broken", "t_sliding_concrete_wall_control" ], "fg": 3449, "rotates": false }, { "id": "t_conveyor", - "fg": 3424, - "bg": 3663, + "fg": 3450, + "bg": 3689, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "edge", "fg": 3424 }, - { "id": "end_piece", "fg": 3424 }, - { "id": "corner", "fg": 3425 }, - { "id": "t_connection", "fg": 3426 } + { "id": "edge", "fg": 3450 }, + { "id": "end_piece", "fg": 3450 }, + { "id": "corner", "fg": 3451 }, + { "id": "t_connection", "fg": 3452 } ] }, - { "id": "t_covered_well", "fg": 3427, "bg": 3663, "rotates": false }, - { "id": "t_current_trans", "fg": 3428, "bg": 3663, "rotates": false }, - { "id": "t_curtains", "fg": 3429, "rotates": false }, + { "id": "t_covered_well", "fg": 3453, "bg": 3689, "rotates": false }, + { "id": "t_current_trans", "fg": 3454, "bg": 3689, "rotates": false }, + { "id": "t_curtains", "fg": 3455, "rotates": false }, { "id": "t_cvdbody", - "fg": 3430, + "fg": 3456, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3431, "bg": 3657 }, - { "id": "t_connection", "fg": 3433, "bg": 3657 }, - { "id": "end_piece", "fg": 3432, "bg": 3657 }, - { "id": "unconnected", "fg": 3430 }, - { "id": "edge", "fg": 3430 }, - { "id": "center", "fg": 3430 } + { "id": "corner", "fg": 3457, "bg": 3683 }, + { "id": "t_connection", "fg": 3459, "bg": 3683 }, + { "id": "end_piece", "fg": 3458, "bg": 3683 }, + { "id": "unconnected", "fg": 3456 }, + { "id": "edge", "fg": 3456 }, + { "id": "center", "fg": 3456 } ] }, - { "id": "t_cvdmachine", "fg": 3434, "bg": 3657 }, - { "id": "t_diesel_pump", "fg": 3435, "bg": 3657 }, - { "id": "t_diesel_pump_smashed", "fg": 3436, "bg": 3657, "rotates": false }, - { "id": [ "t_dirtmound", "t_dirtmoundfloor" ], "fg": 3670, "bg": 3399, "rotates": false }, - { "id": "t_door_b_peep", "fg": 4782, "rotates": false }, + { "id": "t_cvdmachine", "fg": 3460, "bg": 3683 }, + { "id": "t_diesel_pump", "fg": 3461, "bg": 3683 }, + { "id": "t_diesel_pump_smashed", "fg": 3462, "bg": 3683, "rotates": false }, + { "id": [ "t_dirtmound", "t_dirtmoundfloor" ], "fg": 3695, "bg": 3425, "rotates": false }, + { "id": "t_door_b_peep", "fg": 4824, "rotates": false }, { "id": [ "t_door_b", "t_door_lab_b", "t_door_red_b", "t_door_green_b", "t_door_white_b", "t_door_gray_b" ], - "fg": 4784, + "fg": 4826, "rotates": false }, - { "id": "t_door_bar_c", "fg": 3437, "bg": 3663, "rotates": false }, - { "id": "t_door_bar_locked", "fg": 3437, "bg": 3663, "rotates": false }, - { "id": "t_door_bar_o", "fg": 3438, "bg": 3663, "rotates": false }, - { "id": "t_door_boarded", "fg": 3439, "rotates": false }, - { "id": "t_door_boarded_damaged", "fg": 3440, "rotates": false }, - { "id": "t_door_boarded_damaged_peep", "fg": 3441, "rotates": false }, - { "id": "t_door_boarded_peep", "fg": 3442, "rotates": false }, - { "id": "t_door_c_peep", "fg": 4781, "rotates": false }, + { "id": "t_door_bar_c", "fg": 3463, "bg": 3689, "rotates": false }, + { "id": "t_door_bar_locked", "fg": 3463, "bg": 3689, "rotates": false }, + { "id": "t_door_bar_o", "fg": 3464, "bg": 3689, "rotates": false }, + { "id": "t_door_boarded", "fg": 3465, "rotates": false }, + { "id": "t_door_boarded_damaged", "fg": 3466, "rotates": false }, + { "id": "t_door_boarded_damaged_peep", "fg": 3467, "rotates": false }, + { "id": "t_door_boarded_peep", "fg": 3468, "rotates": false }, + { "id": "t_door_c_peep", "fg": 4823, "rotates": false }, { "id": [ "t_door_c", "t_door_lab_c", "t_door_red_c", "t_door_green_c", "t_door_white_c", "t_door_gray_c" ], - "fg": 4783, + "fg": 4825, "rotates": false }, - { "id": "t_door_curtain_c", "fg": 3443, "rotates": false }, - { "id": "t_door_curtain_o", "fg": 3444, "rotates": false }, - { "id": "t_door_frame", "fg": 3445, "bg": 3658, "rotates": false }, + { "id": "t_door_curtain_c", "fg": 3469, "rotates": false }, + { "id": "t_door_curtain_o", "fg": 3470, "rotates": false }, + { "id": "t_door_frame", "fg": 3471, "bg": 3684, "rotates": false }, { "id": [ "t_door_glass_c", @@ -3754,78 +3758,78 @@ "t_door_glass_white_c", "t_door_glass_gray_c" ], - "fg": 3446, + "fg": 3472, "rotates": false }, - { "id": "t_door_glass_gray_o", "fg": 3447, "bg": 3494, "rotates": false }, - { "id": "t_door_glass_green_o", "fg": 3447, "bg": 3408, "rotates": false }, - { "id": [ "t_door_glass_lab_o", "t_door_glass_frosted_lab_o" ], "fg": 3447, "bg": 3663, "rotates": false }, - { "id": [ "t_door_glass_o", "t_door_glass_frosted_o" ], "fg": 3447, "bg": 3658, "rotates": false }, - { "id": "t_door_glass_red_o", "fg": 3447, "bg": 3410, "rotates": false }, - { "id": "t_door_glass_white_o", "fg": 3447, "bg": 3495, "rotates": false }, - { "id": "t_door_gray_frame", "fg": 3445, "bg": 3494, "rotates": false }, - { "id": "t_door_gray_o", "fg": 3454, "bg": 3494, "rotates": false }, - { "id": "t_door_green_frame", "fg": 3445, "bg": 3408, "rotates": false }, - { "id": "t_door_green_o", "fg": 3454, "bg": 3408, "rotates": false }, - { "id": "t_door_lab_frame", "fg": 3445, "bg": 3663, "rotates": false }, - { "id": "t_door_lab_o", "fg": 3454, "bg": 3663, "rotates": false }, - { "id": "t_door_locked", "fg": 4783, "rotates": false }, - { "id": "t_door_locked_alarm", "fg": 4783, "rotates": false }, - { "id": "t_door_locked_interior", "fg": 4783, "rotates": false }, - { "id": "t_door_locked_peep", "fg": 4781 }, - { "id": "t_door_makeshift_c", "fg": 3448, "rotates": false }, - { "id": "t_door_makeshift_o", "fg": 3449, "bg": 3658, "rotates": false }, - { "id": "t_door_metal_c_peep", "fg": 3451, "rotates": false }, - { "id": [ "t_door_metal_c", "t_door_metal_lab_c" ], "fg": 3450, "rotates": true }, - { "id": "t_door_metal_locked", "fg": 3450, "rotates": false }, - { "id": "t_door_metal_o_peep", "fg": 3452, "bg": 3663, "rotates": false }, - { "id": [ "t_door_metal_o", "t_door_metal_lab_o" ], "fg": 3452, "bg": 3663, "rotates": false }, - { "id": "t_door_metal_pickable", "fg": 3453 }, - { "id": "t_door_o", "fg": 3454, "bg": 3658, "rotates": false }, - { "id": "t_door_o_peep", "fg": 3454, "bg": 3658 }, - { "id": "t_door_red_frame", "fg": 3445, "bg": 3410, "rotates": false }, - { "id": "t_door_red_o", "fg": 3454, "bg": 3410, "rotates": false }, - { "id": "t_door_white_frame", "fg": 3445, "bg": 3495, "rotates": false }, - { "id": "t_door_white_o", "fg": 3454, "bg": 3495, "rotates": false }, - { "id": "t_elevator", "fg": 3455, "rotates": false }, - { "id": "t_elevator_control", "fg": 3422, "rotates": false }, - { "id": "t_elevator_control_off", "fg": 3423, "rotates": false }, - { "id": "t_emergency_light", "bg": 3663, "rotates": false }, - { "id": "t_emergency_light_flicker", "bg": 3663, "rotates": false }, - { "id": "t_fault", "fg": 3456, "rotates": false }, - { "id": "t_fence_barbed", "fg": 3459, "bg": 3809, "rotates": false }, - { "id": "t_fence_barbed_season_autumn", "fg": 3459, "bg": 3813 }, - { "id": "t_fence_barbed_season_summer", "fg": 3459, "bg": 3817 }, - { "id": "t_fence_barbed_season_winter", "fg": 3459, "bg": 3734 }, - { "id": "t_fence_post", "fg": 3460, "bg": 3809, "rotates": false }, - { "id": "t_fence_post_season_autumn", "fg": 3460, "bg": 3813 }, - { "id": "t_fence_post_season_summer", "fg": 3460, "bg": 3817 }, - { "id": "t_fence_post_season_winter", "fg": 3460, "bg": 3734 }, - { "id": [ "t_fence_season_autumn" ], "fg": 3461, "bg": 3813 }, - { "id": [ "t_fence_season_summer", "t_fence_h_season_summer" ], "fg": 3461, "bg": 3817 }, - { "id": [ "t_fence_season_winter", "t_fence_h_season_winter" ], "fg": 3461, "bg": 3734 }, - { "id": [ "t_fence", "t_fence_h" ], "fg": 3461, "bg": 3809, "rotates": true }, - { "id": "t_fence_v", "fg": 3461, "bg": 3809 }, - { "id": "t_fence_v_season_autumn", "fg": 3461, "bg": 3813 }, - { "id": "t_fence_v_season_summer", "fg": 3461, "bg": 3817 }, - { "id": "t_fence_v_season_winter", "fg": 3461, "bg": 3734 }, - { "id": "t_fence_wire", "fg": 3462, "bg": 3809, "rotates": false }, - { "id": "t_fence_wire_season_autumn", "fg": 3462, "bg": 3813 }, - { "id": "t_fence_wire_season_summer", "fg": 3462, "bg": 3817 }, - { "id": "t_fence_wire_season_winter", "fg": 3462, "bg": 3734 }, - { "id": "t_fencegate_c", "fg": 3457, "bg": 3809, "rotates": false }, - { "id": "t_fencegate_c_season_autumn", "fg": 3457, "bg": 3813 }, - { "id": "t_fencegate_c_season_summer", "fg": 3457, "bg": 3817 }, - { "id": "t_fencegate_c_season_winter", "fg": 3457, "bg": 3734 }, - { "id": "t_fencegate_o", "fg": 3458, "bg": 3809, "rotates": false }, - { "id": "t_fencegate_o_season_autumn", "fg": 3458, "bg": 3813 }, - { "id": "t_fencegate_o_season_summer", "fg": 3458, "bg": 3817 }, - { "id": "t_fencegate_o_season_winter", "fg": 3458, "bg": 3734 }, - { "id": "t_flat_roof", "bg": 3659, "rotates": false }, - { "id": "t_floor_blue", "fg": 3671, "rotates": false }, - { "id": "t_floor_green", "fg": 3672, "rotates": false }, - { "id": "t_floor_olight", "fg": 3673, "rotates": false }, - { "id": "t_floor_red", "fg": 3674, "rotates": false }, + { "id": "t_door_glass_gray_o", "fg": 3473, "bg": 3520, "rotates": false }, + { "id": "t_door_glass_green_o", "fg": 3473, "bg": 3434, "rotates": false }, + { "id": [ "t_door_glass_lab_o", "t_door_glass_frosted_lab_o" ], "fg": 3473, "bg": 3689, "rotates": false }, + { "id": [ "t_door_glass_o", "t_door_glass_frosted_o" ], "fg": 3473, "bg": 3684, "rotates": false }, + { "id": "t_door_glass_red_o", "fg": 3473, "bg": 3436, "rotates": false }, + { "id": "t_door_glass_white_o", "fg": 3473, "bg": 3521, "rotates": false }, + { "id": "t_door_gray_frame", "fg": 3471, "bg": 3520, "rotates": false }, + { "id": "t_door_gray_o", "fg": 3480, "bg": 3520, "rotates": false }, + { "id": "t_door_green_frame", "fg": 3471, "bg": 3434, "rotates": false }, + { "id": "t_door_green_o", "fg": 3480, "bg": 3434, "rotates": false }, + { "id": "t_door_lab_frame", "fg": 3471, "bg": 3689, "rotates": false }, + { "id": "t_door_lab_o", "fg": 3480, "bg": 3689, "rotates": false }, + { "id": "t_door_locked", "fg": 4825, "rotates": false }, + { "id": "t_door_locked_alarm", "fg": 4825, "rotates": false }, + { "id": "t_door_locked_interior", "fg": 4825, "rotates": false }, + { "id": "t_door_locked_peep", "fg": 4823 }, + { "id": "t_door_makeshift_c", "fg": 3474, "rotates": false }, + { "id": "t_door_makeshift_o", "fg": 3475, "bg": 3684, "rotates": false }, + { "id": "t_door_metal_c_peep", "fg": 3477, "rotates": false }, + { "id": [ "t_door_metal_c", "t_door_metal_lab_c" ], "fg": 3476, "rotates": true }, + { "id": "t_door_metal_locked", "fg": 3476, "rotates": false }, + { "id": "t_door_metal_o_peep", "fg": 3478, "bg": 3689, "rotates": false }, + { "id": [ "t_door_metal_o", "t_door_metal_lab_o" ], "fg": 3478, "bg": 3689, "rotates": false }, + { "id": "t_door_metal_pickable", "fg": 3479 }, + { "id": "t_door_o", "fg": 3480, "bg": 3684, "rotates": false }, + { "id": "t_door_o_peep", "fg": 3480, "bg": 3684 }, + { "id": "t_door_red_frame", "fg": 3471, "bg": 3436, "rotates": false }, + { "id": "t_door_red_o", "fg": 3480, "bg": 3436, "rotates": false }, + { "id": "t_door_white_frame", "fg": 3471, "bg": 3521, "rotates": false }, + { "id": "t_door_white_o", "fg": 3480, "bg": 3521, "rotates": false }, + { "id": "t_elevator", "fg": 3481, "rotates": false }, + { "id": "t_elevator_control", "fg": 3448, "rotates": false }, + { "id": "t_elevator_control_off", "fg": 3449, "rotates": false }, + { "id": "t_emergency_light", "bg": 3689, "rotates": false }, + { "id": "t_emergency_light_flicker", "bg": 3689, "rotates": false }, + { "id": "t_fault", "fg": 3482, "rotates": false }, + { "id": "t_fence_barbed", "fg": 3485, "bg": 3835, "rotates": false }, + { "id": "t_fence_barbed_season_autumn", "fg": 3485, "bg": 3839 }, + { "id": "t_fence_barbed_season_summer", "fg": 3485, "bg": 3843 }, + { "id": "t_fence_barbed_season_winter", "fg": 3485, "bg": 3760 }, + { "id": "t_fence_post", "fg": 3486, "bg": 3835, "rotates": false }, + { "id": "t_fence_post_season_autumn", "fg": 3486, "bg": 3839 }, + { "id": "t_fence_post_season_summer", "fg": 3486, "bg": 3843 }, + { "id": "t_fence_post_season_winter", "fg": 3486, "bg": 3760 }, + { "id": [ "t_fence_season_autumn" ], "fg": 3487, "bg": 3839 }, + { "id": [ "t_fence_season_summer", "t_fence_h_season_summer" ], "fg": 3487, "bg": 3843 }, + { "id": [ "t_fence_season_winter", "t_fence_h_season_winter" ], "fg": 3487, "bg": 3760 }, + { "id": [ "t_fence", "t_fence_h" ], "fg": 3487, "bg": 3835, "rotates": true }, + { "id": "t_fence_v", "fg": 3487, "bg": 3835 }, + { "id": "t_fence_v_season_autumn", "fg": 3487, "bg": 3839 }, + { "id": "t_fence_v_season_summer", "fg": 3487, "bg": 3843 }, + { "id": "t_fence_v_season_winter", "fg": 3487, "bg": 3760 }, + { "id": "t_fence_wire", "fg": 3488, "bg": 3835, "rotates": false }, + { "id": "t_fence_wire_season_autumn", "fg": 3488, "bg": 3839 }, + { "id": "t_fence_wire_season_summer", "fg": 3488, "bg": 3843 }, + { "id": "t_fence_wire_season_winter", "fg": 3488, "bg": 3760 }, + { "id": "t_fencegate_c", "fg": 3483, "bg": 3835, "rotates": false }, + { "id": "t_fencegate_c_season_autumn", "fg": 3483, "bg": 3839 }, + { "id": "t_fencegate_c_season_summer", "fg": 3483, "bg": 3843 }, + { "id": "t_fencegate_c_season_winter", "fg": 3483, "bg": 3760 }, + { "id": "t_fencegate_o", "fg": 3484, "bg": 3835, "rotates": false }, + { "id": "t_fencegate_o_season_autumn", "fg": 3484, "bg": 3839 }, + { "id": "t_fencegate_o_season_summer", "fg": 3484, "bg": 3843 }, + { "id": "t_fencegate_o_season_winter", "fg": 3484, "bg": 3760 }, + { "id": "t_flat_roof", "bg": 3685, "rotates": false }, + { "id": "t_floor_blue", "fg": 3696, "rotates": false }, + { "id": "t_floor_green", "fg": 3697, "rotates": false }, + { "id": "t_floor_olight", "fg": 3698, "rotates": false }, + { "id": "t_floor_red", "fg": 3699, "rotates": false }, { "id": [ "t_floor", @@ -3834,2522 +3838,2534 @@ "t_secretdoor_concrete_wall_o", "t_secretdoor_bookcase_o" ], - "bg": 3658, + "bg": 3684, "rotates": false }, - { "id": "t_floor_wax", "fg": 3463 }, - { "id": "t_floor_waxed", "fg": 3464, "rotates": false }, - { "id": "t_floor_waxed_y", "fg": 3656, "rotates": false }, - { "id": "t_fungus", "bg": 1340, "rotates": false }, - { "id": "t_fungus_floor_in", "bg": 3660, "rotates": false }, - { "id": "t_fungus_floor_out", "bg": 3661, "rotates": false }, - { "id": "t_fungus_floor_sup", "bg": 3662, "rotates": false }, - { "id": "t_fungus_mound", "fg": 3465, "bg": 1340, "rotates": false }, + { "id": "t_floor_wax", "fg": 3489 }, + { "id": "t_floor_waxed", "fg": 3490, "rotates": false }, + { "id": "t_floor_waxed_y", "fg": 3682, "rotates": false }, + { "id": "t_fungus", "bg": 1347, "rotates": false }, + { "id": "t_fungus_floor_in", "bg": 3686, "rotates": false }, + { "id": "t_fungus_floor_out", "bg": 3687, "rotates": false }, + { "id": "t_fungus_floor_sup", "bg": 3688, "rotates": false }, + { "id": "t_fungus_mound", "fg": 3491, "bg": 1347, "rotates": false }, { "id": "t_fungus_wall", - "fg": 3466, - "bg": 3662, + "fg": 3492, + "bg": 3688, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3467, "bg": 3662 }, - { "id": "corner", "fg": 3468, "bg": 3662 }, - { "id": "edge", "fg": 3469, "bg": 3662 }, - { "id": "t_connection", "fg": 3471, "bg": 3662 }, - { "id": "end_piece", "fg": 3470, "bg": 3662 }, - { "id": "unconnected", "fg": 3466, "bg": 3662 } + { "id": "center", "fg": 3493, "bg": 3688 }, + { "id": "corner", "fg": 3494, "bg": 3688 }, + { "id": "edge", "fg": 3495, "bg": 3688 }, + { "id": "t_connection", "fg": 3497, "bg": 3688 }, + { "id": "end_piece", "fg": 3496, "bg": 3688 }, + { "id": "unconnected", "fg": 3492, "bg": 3688 } ] }, { "id": "t_fungus_wall_transformed", - "fg": 3508, - "bg": 3467, - "multitile": true, - "additional_tiles": [ - { "id": "corner", "fg": 3524, "bg": 3467 }, - { "id": "edge", "fg": 3525, "bg": 3467 }, - { "id": "t_connection", "fg": 3527, "bg": 3467 }, - { "id": "center", "fg": 3523, "bg": 3467 }, - { "id": "end_piece", "fg": 3526, "bg": 3467 }, - { "id": "unconnected", "fg": 3508, "bg": 3467 } - ] - }, - { "id": "t_gas_pump", "fg": 3472, "bg": 3657, "rotates": false }, - { "id": "t_gas_pump_a", "fg": 3472, "bg": 3657 }, - { "id": "t_gas_pump_smashed", "fg": 3473, "bg": 3657, "rotates": false }, - { "id": "t_gas_tank", "fg": 3474, "bg": 3657 }, - { "id": "t_gates_control_brick", "fg": 3676, "rotates": false }, - { "id": "t_gates_control_brick_lab", "fg": 3677, "rotates": false }, - { "id": "t_gates_control_concrete", "fg": 3678, "rotates": false }, - { "id": "t_gates_control_concrete_lab", "fg": 3679, "rotates": false }, - { "id": "t_gates_control_metal", "fg": 3680, "rotates": false }, - { "id": "t_gates_control_metal_lab", "fg": 3681, "rotates": false }, - { "id": "t_gates_mech_control", "fg": 3682, "bg": 3505, "rotates": false }, - { "id": "t_gates_mech_control_lab", "fg": 3683, "bg": 3505, "rotates": false }, + "fg": 3534, + "bg": 3493, + "multitile": true, + "additional_tiles": [ + { "id": "corner", "fg": 3550, "bg": 3493 }, + { "id": "edge", "fg": 3551, "bg": 3493 }, + { "id": "t_connection", "fg": 3553, "bg": 3493 }, + { "id": "center", "fg": 3549, "bg": 3493 }, + { "id": "end_piece", "fg": 3552, "bg": 3493 }, + { "id": "unconnected", "fg": 3534, "bg": 3493 } + ] + }, + { "id": "t_gas_pump", "fg": 3498, "bg": 3683, "rotates": false }, + { "id": "t_gas_pump_a", "fg": 3498, "bg": 3683 }, + { "id": "t_gas_pump_smashed", "fg": 3499, "bg": 3683, "rotates": false }, + { "id": "t_gas_tank", "fg": 3500, "bg": 3683 }, + { "id": "t_gates_control_brick", "fg": 3701, "rotates": false }, + { "id": "t_gates_control_brick_lab", "fg": 3702, "rotates": false }, + { "id": "t_gates_control_concrete", "fg": 3703, "rotates": false }, + { "id": "t_gates_control_concrete_lab", "fg": 3704, "rotates": false }, + { "id": "t_gates_control_metal", "fg": 3705, "rotates": false }, + { "id": "t_gates_control_metal_lab", "fg": 3706, "rotates": false }, + { "id": "t_gates_mech_control", "fg": 3707, "bg": 3531, "rotates": false }, + { "id": "t_gates_mech_control_lab", "fg": 3708, "bg": 3531, "rotates": false }, { "id": "t_generator_broken", - "fg": 3475, + "fg": 3501, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "t_connection", "fg": 3476 } ] + "additional_tiles": [ { "id": "t_connection", "fg": 3502 } ] }, - { "id": "t_grate", "fg": 3455, "rotates": false }, + { "id": "t_grate", "fg": 3481, "rotates": false }, { "id": "t_guardrail_bg_dp", - "fg": 3536, - "bg": 3663, + "fg": 3562, + "bg": 3689, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3537, "bg": 3663 }, - { "id": "center", "fg": 3536, "bg": 3663 }, - { "id": "end_piece", "fg": 3539, "bg": 3663 }, - { "id": "t_connection", "fg": 3540, "bg": 3663 }, - { "id": "unconnected", "fg": 3541, "bg": 3663 }, - { "id": "edge", "fg": 3538, "bg": 3663 } + { "id": "corner", "fg": 3563, "bg": 3689 }, + { "id": "center", "fg": 3562, "bg": 3689 }, + { "id": "end_piece", "fg": 3565, "bg": 3689 }, + { "id": "t_connection", "fg": 3566, "bg": 3689 }, + { "id": "unconnected", "fg": 3567, "bg": 3689 }, + { "id": "edge", "fg": 3564, "bg": 3689 } ] }, { "id": "t_hole", - "fg": 3478, + "fg": 3504, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 3478 }, - { "id": "center", "fg": 3479 }, - { "id": "corner", "fg": 3480 }, - { "id": "edge", "fg": 3481 }, - { "id": "end_piece", "fg": 3482 }, - { "id": "t_connection", "fg": 3483 } + { "id": "unconnected", "fg": 3504 }, + { "id": "center", "fg": 3505 }, + { "id": "corner", "fg": 3506 }, + { "id": "edge", "fg": 3507 }, + { "id": "end_piece", "fg": 3508 }, + { "id": "t_connection", "fg": 3509 } ] }, - { "id": "t_improvised_shelter", "fg": 3484, "bg": 3809, "rotates": false }, - { "id": "t_improvised_shelter_season_autumn", "fg": 3484, "bg": 3813, "rotates": false }, - { "id": "t_improvised_shelter_season_summer", "fg": 3484, "bg": 3817, "rotates": false }, - { "id": "t_improvised_shelter_season_winter", "fg": 3484, "bg": 3734, "rotates": false }, - { "id": "t_ind_assembler", "fg": 3485, "bg": 3659 }, - { "id": "t_ind_drill", "fg": 3486, "bg": 3398, "rotates": false }, - { "id": "t_ind_furnace", "fg": 3487, "bg": 3657, "rotates": false }, - { "id": "t_ind_lathe", "fg": 3488, "rotates": false }, - { "id": "t_ind_mixer", "fg": 3489, "bg": 3398, "rotates": false }, + { "id": "t_improvised_shelter", "fg": 3510, "bg": 3835, "rotates": false }, + { "id": "t_improvised_shelter_season_autumn", "fg": 3510, "bg": 3839, "rotates": false }, + { "id": "t_improvised_shelter_season_summer", "fg": 3510, "bg": 3843, "rotates": false }, + { "id": "t_improvised_shelter_season_winter", "fg": 3510, "bg": 3760, "rotates": false }, + { "id": "t_ind_assembler", "fg": 3511, "bg": 3685 }, + { "id": "t_ind_drill", "fg": 3512, "bg": 3424, "rotates": false }, + { "id": "t_ind_furnace", "fg": 3513, "bg": 3683, "rotates": false }, + { "id": "t_ind_lathe", "fg": 3514, "rotates": false }, + { "id": "t_ind_mixer", "fg": 3515, "bg": 3424, "rotates": false }, { "id": "t_ind_pipe", - "fg": 3579, - "bg": 3663, + "fg": 3605, + "bg": 3689, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3580, "bg": 3663 }, - { "id": "corner", "fg": 3581, "bg": 3663 }, - { "id": "edge", "fg": 3582, "bg": 3663 }, - { "id": "t_connection", "fg": 3584, "bg": 3663 }, - { "id": "end_piece", "fg": 3583, "bg": 3663 }, - { "id": "unconnected", "fg": 3579, "bg": 3663 } - ] - }, - { "id": "t_ind_press", "fg": 3498 }, - { "id": "t_ladder_down", "fg": 3490, "bg": 3809, "rotates": false }, - { "id": "t_ladder_down_season_autumn", "fg": 3490, "bg": 3813 }, - { "id": "t_ladder_down_season_summer", "fg": 3490, "bg": 3817 }, - { "id": "t_ladder_down_season_winter", "fg": 3490, "bg": 3734 }, - { "id": "t_ladder_up", "fg": 3491, "bg": 3657, "rotates": false }, - { "id": "t_lava", "fg": 3492, "rotates": false }, - { "id": "t_lgtn_arrest", "fg": 3493, "bg": 3663, "rotates": false }, - { "id": "t_linoleum_gray", "fg": 3494, "rotates": false }, - { "id": "t_linoleum_white", "fg": 3495, "rotates": false }, - { "id": "t_little_column", "fg": 3496, "bg": 3657, "rotates": false }, - { "id": "t_low_stairs_begin", "fg": 3602, "rotates": false }, - { "id": "t_low_stairs_end", "fg": 3497, "bg": 3657, "rotates": false }, - { "id": "t_m_frame", "fg": 3515, "bg": 3657, "rotates": false }, - { "id": "t_machinery_electronic", "fg": 3499, "bg": 3663, "rotates": false }, - { "id": "t_machinery_heavy", "fg": 3498, "bg": 3663, "rotates": false }, - { "id": "t_machinery_light", "fg": 3499, "bg": 3663, "rotates": false }, - { "id": "t_machinery_old", "fg": 3500, "bg": 3663, "rotates": false }, - { "id": "t_manhole", "fg": 3501, "bg": 3657, "rotates": false }, - { "id": "t_manhole_cover", "fg": 3502, "bg": 3657, "rotates": false }, - { "id": "t_marloss", "fg": 3503, "bg": 1340, "rotates": false }, - { "id": "t_mdoor_frame", "fg": 3504, "bg": 3658, "rotates": false }, - { "id": "t_mdoor_lab_frame", "fg": 3504, "bg": 3663, "rotates": false }, - { "id": "t_metal_floor", "fg": 3505, "rotates": false }, - { "id": "t_metal_floor_olight", "fg": 3684, "rotates": false }, - { "id": "t_milking_machine", "fg": 3499, "bg": 3663, "rotates": false }, + { "id": "center", "fg": 3606, "bg": 3689 }, + { "id": "corner", "fg": 3607, "bg": 3689 }, + { "id": "edge", "fg": 3608, "bg": 3689 }, + { "id": "t_connection", "fg": 3610, "bg": 3689 }, + { "id": "end_piece", "fg": 3609, "bg": 3689 }, + { "id": "unconnected", "fg": 3605, "bg": 3689 } + ] + }, + { "id": "t_ind_press", "fg": 3524 }, + { "id": "t_ladder_down", "fg": 3516, "bg": 3835, "rotates": false }, + { "id": "t_ladder_down_season_autumn", "fg": 3516, "bg": 3839 }, + { "id": "t_ladder_down_season_summer", "fg": 3516, "bg": 3843 }, + { "id": "t_ladder_down_season_winter", "fg": 3516, "bg": 3760 }, + { "id": "t_ladder_up", "fg": 3517, "bg": 3683, "rotates": false }, + { "id": "t_lava", "fg": 3518, "rotates": false }, + { "id": "t_lgtn_arrest", "fg": 3519, "bg": 3689, "rotates": false }, + { "id": "t_linoleum_gray", "fg": 3520, "rotates": false }, + { "id": "t_linoleum_white", "fg": 3521, "rotates": false }, + { "id": "t_little_column", "fg": 3522, "bg": 3683, "rotates": false }, + { "id": "t_low_stairs_begin", "fg": 3628, "rotates": false }, + { "id": "t_low_stairs_end", "fg": 3523, "bg": 3683, "rotates": false }, + { "id": "t_m_frame", "fg": 3541, "bg": 3683, "rotates": false }, + { "id": "t_machinery_electronic", "fg": 3525, "bg": 3689, "rotates": false }, + { "id": "t_machinery_heavy", "fg": 3524, "bg": 3689, "rotates": false }, + { "id": "t_machinery_light", "fg": 3525, "bg": 3689, "rotates": false }, + { "id": "t_machinery_old", "fg": 3526, "bg": 3689, "rotates": false }, + { "id": "t_manhole", "fg": 3527, "bg": 3683, "rotates": false }, + { "id": "t_manhole_cover", "fg": 3528, "bg": 3683, "rotates": false }, + { "id": "t_marloss", "fg": 3529, "bg": 1347, "rotates": false }, + { "id": "t_mdoor_frame", "fg": 3530, "bg": 3684, "rotates": false }, + { "id": "t_mdoor_lab_frame", "fg": 3530, "bg": 3689, "rotates": false }, + { "id": "t_metal_floor", "fg": 3531, "rotates": false }, + { "id": "t_metal_floor_olight", "fg": 3709, "rotates": false }, + { "id": "t_milking_machine", "fg": 3525, "bg": 3689, "rotates": false }, { "id": "t_missile", - "fg": 3506, - "bg": 3657, + "fg": 3532, + "bg": 3683, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 3507, "bg": 3657 }, { "id": "center", "fg": 3506 }, { "id": "t_connection", "fg": 3511 } ] + "additional_tiles": [ { "id": "corner", "fg": 3533, "bg": 3683 }, { "id": "center", "fg": 3532 }, { "id": "t_connection", "fg": 3537 } ] }, { "id": "t_missile_exploded", - "bg": 3657, + "bg": 3683, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3509, "bg": 3657 }, - { "id": "center", "fg": 3508, "bg": 3663 }, - { "id": "t_connection", "fg": 3510 } + { "id": "corner", "fg": 3535, "bg": 3683 }, + { "id": "center", "fg": 3534, "bg": 3689 }, + { "id": "t_connection", "fg": 3536 } ] }, { "id": "t_monkey_bars", - "fg": 3512, - "bg": 3897, + "fg": 3538, + "bg": 3939, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3512, "bg": 3897 }, - { "id": "corner", "fg": 3513, "bg": 3897 }, - { "id": "t_connection", "fg": 3514, "bg": 3897 } + { "id": "center", "fg": 3538, "bg": 3939 }, + { "id": "corner", "fg": 3539, "bg": 3939 }, + { "id": "t_connection", "fg": 3540, "bg": 3939 } ] }, { "id": "t_monkey_bars_season_autumn", - "fg": 3512, - "bg": 3813, + "fg": 3538, + "bg": 3839, "multitile": true, "additional_tiles": [ - { "id": "edge", "bg": 3813 }, - { "id": "corner", "fg": 3513, "bg": 3813 }, - { "id": "center", "fg": 3512, "bg": 3813 }, - { "id": "t_connection", "fg": 3514, "bg": 3813 } + { "id": "edge", "bg": 3839 }, + { "id": "corner", "fg": 3539, "bg": 3839 }, + { "id": "center", "fg": 3538, "bg": 3839 }, + { "id": "t_connection", "fg": 3540, "bg": 3839 } ] }, { "id": "t_monkey_bars_season_summer", - "fg": 3512, - "bg": 3817, + "fg": 3538, + "bg": 3843, "multitile": true, "additional_tiles": [ - { "id": "edge", "bg": 3817 }, - { "id": "corner", "fg": 3513, "bg": 3817 }, - { "id": "center", "fg": 3512, "bg": 3817 }, - { "id": "t_connection", "fg": 3514, "bg": 3817 } + { "id": "edge", "bg": 3843 }, + { "id": "corner", "fg": 3539, "bg": 3843 }, + { "id": "center", "fg": 3538, "bg": 3843 }, + { "id": "t_connection", "fg": 3540, "bg": 3843 } ] }, { "id": "t_monkey_bars_season_winter", - "fg": 3512, - "bg": 3734, - "multitile": true, - "additional_tiles": [ - { "id": "edge", "bg": 3734 }, - { "id": "corner", "fg": 3513, "bg": 3734 }, - { "id": "center", "fg": 3512, "bg": 3734 }, - { "id": "t_connection", "fg": 3514, "bg": 3734 } - ] - }, - { "id": "t_oil_circ_brkr_l", "fg": 3516, "bg": 3663, "rotates": false }, - { "id": "t_oil_circ_brkr_s", "fg": 3517, "bg": 3663, "rotates": false }, - { "id": "t_open_air", "bg": 3664, "rotates": false }, - { "id": "t_open_air_rooved", "bg": 3664 }, - { "id": "t_ov_reb_cage", "fg": 3518, "bg": 3663 }, - { "id": "t_ov_smreb_cage", "fg": 3519, "rotates": false }, - { "id": "t_palisade", "fg": 3520, "bg": 3809 }, - { "id": "t_palisade_gate", "fg": 3521, "bg": 3809 }, - { "id": "t_palisade_gate_o", "fg": 3522, "bg": 3809 }, - { "id": "t_palisade_gate_o_season_autumn", "fg": 3522, "bg": 3813 }, - { "id": "t_palisade_gate_o_season_summer", "fg": 3522, "bg": 3817 }, - { "id": "t_palisade_gate_o_season_winter", "fg": 3522, "bg": 3734 }, - { "id": "t_palisade_gate_season_autumn", "fg": 3521, "bg": 3813 }, - { "id": "t_palisade_gate_season_summer", "fg": 3521, "bg": 3817 }, - { "id": "t_palisade_gate_season_winter", "fg": 3521, "bg": 3734 }, - { "id": "t_palisade_pulley", "fg": 3402, "bg": 3809, "rotates": false }, - { "id": "t_palisade_pulley_season_autumn", "fg": 3402, "bg": 3813 }, - { "id": "t_palisade_pulley_season_summer", "fg": 3402, "bg": 3817 }, - { "id": "t_palisade_pulley_season_winter", "fg": 3402, "bg": 3734 }, - { "id": "t_palisade_season_autumn", "fg": 3522, "bg": 3813 }, - { "id": "t_palisade_season_summer", "fg": 3522, "bg": 3817 }, - { "id": "t_palisade_season_winter", "fg": 3522, "bg": 3734 }, - { "id": "t_pavement", "bg": 3657, "rotates": false }, - { "id": "t_pavement_bg_dp", "bg": 3657 }, - { "id": "t_pavement_y", "fg": 3528, "bg": 3657, "rotates": false }, - { "id": "t_pavement_y_bg_dp", "fg": 3528, "bg": 3657 }, - { "id": "t_pedestal_temple", "fg": 3529, "bg": 3809, "rotates": false }, - { "id": "t_pedestal_wyrm", "fg": 3530, "bg": 3663 }, - { "id": "t_pit", "fg": 3685, "bg": 3809, "rotates": false }, - { "id": "t_pit_corpsed", "fg": 3686, "bg": 3809, "rotates": false }, - { "id": "t_pit_corpsed_season_autumn", "fg": 3686, "bg": 3813 }, - { "id": "t_pit_corpsed_season_summer", "fg": 3686, "bg": 3817 }, - { "id": "t_pit_corpsed_season_winter", "fg": 3686, "bg": 3734 }, - { "id": "t_pit_covered", "fg": 3687, "bg": 3809, "rotates": false }, - { "id": "t_pit_covered_season_autumn", "fg": 3687, "bg": 3813 }, - { "id": "t_pit_covered_season_summer", "fg": 3687, "bg": 3817 }, - { "id": "t_pit_covered_season_winter", "fg": 3688, "bg": 3734 }, - { "id": "t_pit_glass", "fg": 3689, "bg": 3809, "rotates": false }, - { "id": "t_pit_glass_covered", "fg": 3687, "bg": 3809 }, - { "id": "t_pit_glass_covered_season_autumn", "fg": 3687, "bg": 3813 }, - { "id": "t_pit_glass_covered_season_summer", "fg": 3687, "bg": 3817 }, - { "id": "t_pit_glass_covered_season_winter", "fg": 3688, "bg": 3734 }, - { "id": "t_pit_glass_season_autumn", "fg": 3689, "bg": 3813, "rotates": false }, - { "id": "t_pit_glass_season_summer", "fg": 3689, "bg": 3817, "rotates": false }, - { "id": "t_pit_glass_season_winter", "fg": 3689, "bg": 3734, "rotates": false }, - { "id": "t_pit_season_autumn", "fg": 3685, "bg": 3813 }, - { "id": "t_pit_season_summer", "fg": 3685, "bg": 3817 }, - { "id": "t_pit_season_winter", "fg": 3685, "bg": 3734 }, - { "id": "t_pit_shallow", "fg": 3690, "bg": 3809, "rotates": false }, - { "id": "t_pit_shallow_season_autumn", "fg": 3690, "bg": 3813 }, - { "id": "t_pit_shallow_season_summer", "fg": 3690, "bg": 3817 }, - { "id": "t_pit_shallow_season_winter", "fg": 3691, "bg": 3734 }, - { "id": "t_pit_spiked", "fg": 3692, "bg": 3809, "rotates": false }, - { "id": "t_pit_spiked_covered", "fg": 3687, "bg": 3809, "rotates": false }, - { "id": "t_pit_spiked_covered_season_autumn", "fg": 3687, "bg": 3813 }, - { "id": "t_pit_spiked_covered_season_summer", "fg": 3687, "bg": 3817 }, - { "id": "t_pit_spiked_covered_season_winter", "fg": 3688, "bg": 3734 }, - { "id": "t_pit_spiked_season_autumn", "fg": 3692, "bg": 3813 }, - { "id": "t_pit_spiked_season_summer", "fg": 3692, "bg": 3817 }, - { "id": "t_pit_spiked_season_winter", "fg": 3692, "bg": 3734 }, - { "id": "t_plut_generator", "fg": 3531, "bg": 3663 }, - { "id": "t_portcullis", "fg": 3532, "bg": 3659 }, - { "id": "t_potential_trans", "fg": 3533, "bg": 3663, "rotates": false }, - { "id": "t_radio_controls", "fg": 3423, "rotates": false }, + "fg": 3538, + "bg": 3760, + "multitile": true, + "additional_tiles": [ + { "id": "edge", "bg": 3760 }, + { "id": "corner", "fg": 3539, "bg": 3760 }, + { "id": "center", "fg": 3538, "bg": 3760 }, + { "id": "t_connection", "fg": 3540, "bg": 3760 } + ] + }, + { "id": "t_oil_circ_brkr_l", "fg": 3542, "bg": 3689, "rotates": false }, + { "id": "t_oil_circ_brkr_s", "fg": 3543, "bg": 3689, "rotates": false }, + { "id": [ "t_open_air", "t_open_air_rooved", "t_open_air_rooved_outside" ], "bg": 3710, "rotates": false }, + { "id": "t_ov_reb_cage", "fg": 3544, "bg": 3689 }, + { "id": "t_ov_smreb_cage", "fg": 3545, "rotates": false }, + { "id": "t_palisade", "fg": 3546, "bg": 3835 }, + { "id": "t_palisade_gate", "fg": 3547, "bg": 3835 }, + { "id": "t_palisade_gate_o", "fg": 3548, "bg": 3835 }, + { "id": "t_palisade_gate_o_season_autumn", "fg": 3548, "bg": 3839 }, + { "id": "t_palisade_gate_o_season_summer", "fg": 3548, "bg": 3843 }, + { "id": "t_palisade_gate_o_season_winter", "fg": 3548, "bg": 3760 }, + { "id": "t_palisade_gate_season_autumn", "fg": 3547, "bg": 3839 }, + { "id": "t_palisade_gate_season_summer", "fg": 3547, "bg": 3843 }, + { "id": "t_palisade_gate_season_winter", "fg": 3547, "bg": 3760 }, + { "id": "t_palisade_pulley", "fg": 3428, "bg": 3835, "rotates": false }, + { "id": "t_palisade_pulley_season_autumn", "fg": 3428, "bg": 3839 }, + { "id": "t_palisade_pulley_season_summer", "fg": 3428, "bg": 3843 }, + { "id": "t_palisade_pulley_season_winter", "fg": 3428, "bg": 3760 }, + { "id": "t_palisade_season_autumn", "fg": 3548, "bg": 3839 }, + { "id": "t_palisade_season_summer", "fg": 3548, "bg": 3843 }, + { "id": "t_palisade_season_winter", "fg": 3548, "bg": 3760 }, + { "id": "t_pavement", "bg": 3683, "rotates": false }, + { "id": "t_pavement_bg_dp", "bg": 3683 }, + { "id": "t_pavement_y", "fg": 3554, "bg": 3683, "rotates": false }, + { "id": "t_pavement_y_bg_dp", "fg": 3554, "bg": 3683 }, + { "id": "t_pedestal_temple", "fg": 3555, "bg": 3835, "rotates": false }, + { "id": "t_pedestal_wyrm", "fg": 3556, "bg": 3689 }, + { "id": "t_pit", "fg": 3711, "bg": 3835, "rotates": false }, + { "id": "t_pit_corpsed", "fg": 3712, "bg": 3835, "rotates": false }, + { "id": "t_pit_corpsed_season_autumn", "fg": 3712, "bg": 3839 }, + { "id": "t_pit_corpsed_season_summer", "fg": 3712, "bg": 3843 }, + { "id": "t_pit_corpsed_season_winter", "fg": 3712, "bg": 3760 }, + { "id": "t_pit_covered", "fg": 3713, "bg": 3835, "rotates": false }, + { "id": "t_pit_covered_season_autumn", "fg": 3713, "bg": 3839 }, + { "id": "t_pit_covered_season_summer", "fg": 3713, "bg": 3843 }, + { "id": "t_pit_covered_season_winter", "fg": 3714, "bg": 3760 }, + { "id": "t_pit_glass", "fg": 3715, "bg": 3835, "rotates": false }, + { "id": "t_pit_glass_covered", "fg": 3713, "bg": 3835 }, + { "id": "t_pit_glass_covered_season_autumn", "fg": 3713, "bg": 3839 }, + { "id": "t_pit_glass_covered_season_summer", "fg": 3713, "bg": 3843 }, + { "id": "t_pit_glass_covered_season_winter", "fg": 3714, "bg": 3760 }, + { "id": "t_pit_glass_season_autumn", "fg": 3715, "bg": 3839, "rotates": false }, + { "id": "t_pit_glass_season_summer", "fg": 3715, "bg": 3843, "rotates": false }, + { "id": "t_pit_glass_season_winter", "fg": 3715, "bg": 3760, "rotates": false }, + { "id": "t_pit_season_autumn", "fg": 3711, "bg": 3839 }, + { "id": "t_pit_season_summer", "fg": 3711, "bg": 3843 }, + { "id": "t_pit_season_winter", "fg": 3711, "bg": 3760 }, + { "id": "t_pit_shallow", "fg": 3716, "bg": 3835, "rotates": false }, + { "id": "t_pit_shallow_season_autumn", "fg": 3716, "bg": 3839 }, + { "id": "t_pit_shallow_season_summer", "fg": 3716, "bg": 3843 }, + { "id": "t_pit_shallow_season_winter", "fg": 3717, "bg": 3760 }, + { "id": "t_pit_spiked", "fg": 3718, "bg": 3835, "rotates": false }, + { "id": "t_pit_spiked_covered", "fg": 3713, "bg": 3835, "rotates": false }, + { "id": "t_pit_spiked_covered_season_autumn", "fg": 3713, "bg": 3839 }, + { "id": "t_pit_spiked_covered_season_summer", "fg": 3713, "bg": 3843 }, + { "id": "t_pit_spiked_covered_season_winter", "fg": 3714, "bg": 3760 }, + { "id": "t_pit_spiked_season_autumn", "fg": 3718, "bg": 3839 }, + { "id": "t_pit_spiked_season_summer", "fg": 3718, "bg": 3843 }, + { "id": "t_pit_spiked_season_winter", "fg": 3718, "bg": 3760 }, + { "id": "t_plut_generator", "fg": 3557, "bg": 3689 }, + { "id": "t_portcullis", "fg": 3558, "bg": 3685 }, + { "id": "t_potential_trans", "fg": 3559, "bg": 3689, "rotates": false }, + { "id": "t_radio_controls", "fg": 3449, "rotates": false }, { "id": "t_radio_tower", - "fg": 3534, - "bg": 3657, + "fg": 3560, + "bg": 3683, "multitile": true, - "additional_tiles": [ { "id": "center", "fg": 3535, "bg": 3657 } ] + "additional_tiles": [ { "id": "center", "fg": 3561, "bg": 3683 } ] }, { "id": [ "t_railing", "t_railing_h" ], - "fg": 3536, - "bg": 3663, + "fg": 3562, + "bg": 3689, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3536, "bg": 3663 }, - { "id": "corner", "fg": 3537, "bg": 3663 }, - { "id": "edge", "fg": 3538, "bg": 3663 }, - { "id": "t_connection", "fg": 3540, "bg": 3663 }, - { "id": "end_piece", "fg": 3539, "bg": 3663 }, - { "id": "unconnected", "fg": 3541, "bg": 3663 } + { "id": "center", "fg": 3562, "bg": 3689 }, + { "id": "corner", "fg": 3563, "bg": 3689 }, + { "id": "edge", "fg": 3564, "bg": 3689 }, + { "id": "t_connection", "fg": 3566, "bg": 3689 }, + { "id": "end_piece", "fg": 3565, "bg": 3689 }, + { "id": "unconnected", "fg": 3567, "bg": 3689 } ] }, { "id": "t_railing_v", - "fg": 3536, - "bg": 3663, + "fg": 3562, + "bg": 3689, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3536, "bg": 3663 }, - { "id": "corner", "fg": 3537, "bg": 3663 }, - { "id": "edge", "fg": 3538, "bg": 3663 }, - { "id": "t_connection", "fg": 3540, "bg": 3663 }, - { "id": "end_piece", "fg": 3539, "bg": 3663 }, - { "id": "unconnected", "fg": 3541, "bg": 3663 } + { "id": "center", "fg": 3562, "bg": 3689 }, + { "id": "corner", "fg": 3563, "bg": 3689 }, + { "id": "edge", "fg": 3564, "bg": 3689 }, + { "id": "t_connection", "fg": 3566, "bg": 3689 }, + { "id": "end_piece", "fg": 3565, "bg": 3689 }, + { "id": "unconnected", "fg": 3567, "bg": 3689 } ] }, - { "id": "t_railroad_rubble", "bg": 3647, "rotates": true }, + { "id": "t_railroad_rubble", "bg": 3673, "rotates": true }, { "id": "t_railroad_tie", - "fg": [ 3653, 3654, 3653, 3654 ], + "fg": [ 3679, 3680, 3679, 3680 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "unconnected", "fg": 3647 } ] + "additional_tiles": [ { "id": "unconnected", "fg": 3673 } ] }, - { "id": "t_railroad_tie_h", "fg": 3654, "rotates": false }, - { "id": "t_railroad_tie_v", "fg": 3653, "rotates": false }, + { "id": "t_railroad_tie_h", "fg": 3680, "rotates": false }, + { "id": "t_railroad_tie_v", "fg": 3679, "rotates": false }, { "id": "t_railroad_track", - "fg": [ 3648, 3649, 3648, 3649 ], - "rotates": true, - "multitile": true, - "additional_tiles": [ { "id": "center", "fg": 3655 } ] - }, - { "id": "t_railroad_track_d", "fg": 3650, "bg": 3647, "rotates": true }, - { "id": "t_railroad_track_on_tie", "fg": [ 3652, 3651, 3652, 3651 ], "rotates": true }, - { "id": "t_raincatcher", "fg": 3542, "bg": 1237, "rotates": false }, - { "id": "t_rdoor_b", "fg": 3543, "bg": 3658, "rotates": false }, - { "id": "t_rdoor_boarded", "fg": 3544, "rotates": false }, - { "id": "t_rdoor_boarded_damaged", "fg": 3545, "rotates": false }, - { "id": "t_rdoor_c", "fg": 3546, "bg": 3658, "rotates": false }, - { "id": "t_rdoor_o", "fg": 3547, "bg": 3658, "rotates": false }, - { "id": "t_reb_cage", "fg": 3548, "bg": 3663 }, - { "id": "t_recycler", "fg": 3549, "bg": 3663, "rotates": false }, - { "id": "t_reinforced_door_glass_c", "fg": 3550, "bg": 3657 }, - { "id": "t_reinforced_door_glass_lab_c", "fg": 3550, "bg": 3663 }, - { "id": "t_reinforced_door_glass_lab_o", "fg": 3551, "bg": 3663 }, - { "id": "t_reinforced_door_glass_o", "fg": 3551, "bg": 3657 }, - { "id": "t_reinforced_glass_shutter", "fg": 3552, "bg": 3657, "rotates": false }, - { "id": "t_reinforced_glass_shutter_open", "fg": 3553, "bg": 3657, "rotates": false }, - { "id": "t_rock_floor", "bg": 3657, "rotates": false }, + "fg": [ 3674, 3675, 3674, 3675 ], + "rotates": true, + "multitile": true, + "additional_tiles": [ { "id": "center", "fg": 3681 } ] + }, + { "id": "t_railroad_track_d", "fg": 3676, "bg": 3673, "rotates": true }, + { "id": "t_railroad_track_on_tie", "fg": [ 3678, 3677, 3678, 3677 ], "rotates": true }, + { "id": "t_raincatcher", "fg": 3568, "bg": 1244, "rotates": false }, + { "id": "t_rdoor_b", "fg": 3569, "bg": 3684, "rotates": false }, + { "id": "t_rdoor_boarded", "fg": 3570, "rotates": false }, + { "id": "t_rdoor_boarded_damaged", "fg": 3571, "rotates": false }, + { "id": "t_rdoor_c", "fg": 3572, "bg": 3684, "rotates": false }, + { "id": "t_rdoor_o", "fg": 3573, "bg": 3684, "rotates": false }, + { "id": "t_reb_cage", "fg": 3574, "bg": 3689 }, + { "id": "t_recycler", "fg": 3575, "bg": 3689, "rotates": false }, + { "id": "t_reinforced_door_glass_c", "fg": 3576, "bg": 3683 }, + { "id": "t_reinforced_door_glass_lab_c", "fg": 3576, "bg": 3689 }, + { "id": "t_reinforced_door_glass_lab_o", "fg": 3577, "bg": 3689 }, + { "id": "t_reinforced_door_glass_o", "fg": 3577, "bg": 3683 }, + { "id": "t_reinforced_glass_shutter", "fg": 3578, "bg": 3683, "rotates": false }, + { "id": "t_reinforced_glass_shutter_open", "fg": 3579, "bg": 3683, "rotates": false }, + { "id": "t_rock_floor", "bg": 3683, "rotates": false }, { "id": "t_rock_wall_half", - "fg": 3554, - "bg": 3809, + "fg": 3580, + "bg": 3835, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 3554 }, - { "id": "center", "fg": 3555 }, - { "id": "corner", "fg": 3556 }, - { "id": "edge", "fg": 3557 }, - { "id": "end_piece", "fg": 3558 }, - { "id": "t_connection", "fg": 3559 } + { "id": "unconnected", "fg": 3580 }, + { "id": "center", "fg": 3581 }, + { "id": "corner", "fg": 3582 }, + { "id": "edge", "fg": 3583 }, + { "id": "end_piece", "fg": 3584 }, + { "id": "t_connection", "fg": 3585 } ] }, { "id": "t_root_wall", - "fg": 3523, - "bg": 3665, + "fg": 3549, + "bg": 3690, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3524, "bg": 3665 }, - { "id": "center", "fg": 3523, "bg": 3665 }, - { "id": "end_piece", "fg": 3526, "bg": 3665 }, - { "id": "unconnected", "fg": 3508, "bg": 3665 }, - { "id": "t_connection", "fg": 3527, "bg": 3665 }, - { "id": "edge", "fg": 3525, "bg": 3665 } + { "id": "corner", "fg": 3550, "bg": 3690 }, + { "id": "center", "fg": 3549, "bg": 3690 }, + { "id": "end_piece", "fg": 3552, "bg": 3690 }, + { "id": "unconnected", "fg": 3534, "bg": 3690 }, + { "id": "t_connection", "fg": 3553, "bg": 3690 }, + { "id": "edge", "fg": 3551, "bg": 3690 } ] }, - { "id": "t_rope_up", "fg": 3560, "bg": 3657, "rotates": false }, - { "id": "t_sai_box", "fg": 3561, "bg": 3663, "rotates": false }, - { "id": "t_sai_box_damaged", "fg": 3562, "bg": 3663, "rotates": false }, - { "id": "t_sandmound", "fg": 3563, "rotates": false }, - { "id": "t_sconc_wall", "fg": 3564, "bg": 3663 }, - { "id": "t_sconc_wall_halfway", "fg": 3565, "bg": 3663 }, - { "id": "t_scrap_floor", "fg": 3505, "rotates": false }, + { "id": "t_rope_up", "fg": 3586, "bg": 3683, "rotates": false }, + { "id": "t_sai_box", "fg": 3587, "bg": 3689, "rotates": false }, + { "id": "t_sai_box_damaged", "fg": 3588, "bg": 3689, "rotates": false }, + { "id": "t_sandmound", "fg": 3589, "rotates": false }, + { "id": "t_sconc_wall", "fg": 3590, "bg": 3689 }, + { "id": "t_sconc_wall_halfway", "fg": 3591, "bg": 3689 }, + { "id": "t_scrap_floor", "fg": 3531, "rotates": false }, { "id": "t_scrap_wall_halfway", - "fg": 3566, - "bg": 3659, + "fg": 3592, + "bg": 3685, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "t_connection", "fg": 3570, "bg": 3659 }, - { "id": "edge", "fg": 3568, "bg": 3659 }, - { "id": "corner", "fg": 3567, "bg": 3659 }, - { "id": "center", "fg": 3566, "bg": 3659 }, - { "id": "end_piece", "fg": 3569, "bg": 3663 }, - { "id": "unconnected", "fg": 3571, "bg": 3663 } + { "id": "t_connection", "fg": 3596, "bg": 3685 }, + { "id": "edge", "fg": 3594, "bg": 3685 }, + { "id": "corner", "fg": 3593, "bg": 3685 }, + { "id": "center", "fg": 3592, "bg": 3685 }, + { "id": "end_piece", "fg": 3595, "bg": 3689 }, + { "id": "unconnected", "fg": 3597, "bg": 3689 } ] }, { "id": "t_searth_test", - "fg": 3572, - "bg": 4270, + "fg": 3598, + "bg": 4312, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3572, "bg": 4270 }, - { "id": "corner", "fg": 3573, "bg": 4270 }, - { "id": "edge", "fg": 3574, "bg": 4270 }, - { "id": "t_connection", "fg": 3576, "bg": 4270 }, - { "id": "end_piece", "fg": 3575, "bg": 4270 }, - { "id": "unconnected", "fg": 3577, "bg": 4270 } + { "id": "center", "fg": 3598, "bg": 4312 }, + { "id": "corner", "fg": 3599, "bg": 4312 }, + { "id": "edge", "fg": 3600, "bg": 4312 }, + { "id": "t_connection", "fg": 3602, "bg": 4312 }, + { "id": "end_piece", "fg": 3601, "bg": 4312 }, + { "id": "unconnected", "fg": 3603, "bg": 4312 } ] }, - { "id": "t_sewage", "fg": 3578, "rotates": false }, + { "id": "t_sewage", "fg": 3604, "rotates": false }, { "id": "t_sewage_pipe", - "fg": 3579, - "bg": 3663, + "fg": 3605, + "bg": 3689, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3580, "bg": 3663 }, - { "id": "corner", "fg": 3581, "bg": 3663 }, - { "id": "edge", "fg": 3582, "bg": 3663 }, - { "id": "t_connection", "fg": 3584, "bg": 3663 }, - { "id": "end_piece", "fg": 3583, "bg": 3663 }, - { "id": "unconnected", "fg": 3579, "bg": 3663 } + { "id": "center", "fg": 3606, "bg": 3689 }, + { "id": "corner", "fg": 3607, "bg": 3689 }, + { "id": "edge", "fg": 3608, "bg": 3689 }, + { "id": "t_connection", "fg": 3610, "bg": 3689 }, + { "id": "end_piece", "fg": 3609, "bg": 3689 }, + { "id": "unconnected", "fg": 3605, "bg": 3689 } ] }, { "id": "t_sewage_pump", - "bg": 3663, + "bg": 3689, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3585, "bg": 3663 }, - { "id": "corner", "fg": 3586, "bg": 3663 }, - { "id": "edge", "fg": 3582, "bg": 3663 }, - { "id": "t_connection", "fg": 3585, "bg": 3663 }, - { "id": "end_piece", "fg": 3583, "bg": 3663 }, - { "id": "unconnected", "fg": 3585, "bg": 3663 } - ] - }, - { "id": "t_shrub", "fg": 3587, "bg": 3809, "rotates": false }, - { "id": "t_shrub_blueberry", "fg": 3588, "bg": 3809 }, - { "id": "t_shrub_blueberry_harvested", "fg": 3588, "bg": 3809 }, - { "id": "t_shrub_blueberry_harvested_season_autumn", "fg": 3588, "bg": 3813 }, - { "id": "t_shrub_blueberry_harvested_season_summer", "fg": 3588, "bg": 3817 }, - { "id": "t_shrub_blueberry_harvested_season_winter", "fg": 3592, "bg": 3734 }, - { "id": "t_shrub_blueberry_season_autumn", "fg": 3477, "bg": 3813 }, - { "id": "t_shrub_blueberry_season_summer", "fg": 3477, "bg": 3817 }, - { "id": "t_shrub_blueberry_season_winter", "fg": 3592, "bg": 3734 }, - { "id": "t_shrub_fungal", "fg": 3589, "bg": 1340, "rotates": false }, - { "id": "t_shrub_season_autumn", "fg": 3587, "bg": 3813 }, - { "id": "t_shrub_season_summer", "fg": 3587, "bg": 3817 }, - { "id": "t_shrub_season_winter", "fg": 3590, "bg": 3734 }, - { "id": "t_shrub_strawberry", "fg": 3588, "bg": 3809 }, - { "id": "t_shrub_strawberry_harvested", "fg": 3588, "bg": 3809 }, - { "id": "t_shrub_strawberry_harvested_season_autumn", "fg": 3588, "bg": 3813 }, - { "id": "t_shrub_strawberry_harvested_season_summer", "fg": 3588, "bg": 3817 }, - { "id": "t_shrub_strawberry_harvested_season_winter", "fg": 3592, "bg": 3734 }, - { "id": "t_shrub_strawberry_season_autumn", "fg": 3591, "bg": 3813 }, - { "id": "t_shrub_strawberry_season_summer", "fg": 3591, "bg": 3817 }, - { "id": "t_shrub_strawberry_season_winter", "fg": 3588, "bg": 3734 }, - { "id": "t_sidewalk", "fg": 3663, "rotates": false }, - { "id": "t_sidewalk_bg_dp", "fg": 3663 }, - { "id": "t_skylight", "bg": 3663, "rotates": false }, + { "id": "center", "fg": 3611, "bg": 3689 }, + { "id": "corner", "fg": 3612, "bg": 3689 }, + { "id": "edge", "fg": 3608, "bg": 3689 }, + { "id": "t_connection", "fg": 3611, "bg": 3689 }, + { "id": "end_piece", "fg": 3609, "bg": 3689 }, + { "id": "unconnected", "fg": 3611, "bg": 3689 } + ] + }, + { "id": "t_shrub", "fg": 3613, "bg": 3835, "rotates": false }, + { "id": "t_shrub_blueberry", "fg": 3614, "bg": 3835 }, + { "id": "t_shrub_blueberry_harvested", "fg": 3614, "bg": 3835 }, + { "id": "t_shrub_blueberry_harvested_season_autumn", "fg": 3614, "bg": 3839 }, + { "id": "t_shrub_blueberry_harvested_season_summer", "fg": 3614, "bg": 3843 }, + { "id": "t_shrub_blueberry_harvested_season_winter", "fg": 3618, "bg": 3760 }, + { "id": "t_shrub_blueberry_season_autumn", "fg": 3503, "bg": 3839 }, + { "id": "t_shrub_blueberry_season_summer", "fg": 3503, "bg": 3843 }, + { "id": "t_shrub_blueberry_season_winter", "fg": 3618, "bg": 3760 }, + { "id": "t_shrub_fungal", "fg": 3615, "bg": 1347, "rotates": false }, + { "id": "t_shrub_season_autumn", "fg": 3613, "bg": 3839 }, + { "id": "t_shrub_season_summer", "fg": 3613, "bg": 3843 }, + { "id": "t_shrub_season_winter", "fg": 3616, "bg": 3760 }, + { "id": "t_shrub_strawberry", "fg": 3614, "bg": 3835 }, + { "id": "t_shrub_strawberry_harvested", "fg": 3614, "bg": 3835 }, + { "id": "t_shrub_strawberry_harvested_season_autumn", "fg": 3614, "bg": 3839 }, + { "id": "t_shrub_strawberry_harvested_season_summer", "fg": 3614, "bg": 3843 }, + { "id": "t_shrub_strawberry_harvested_season_winter", "fg": 3618, "bg": 3760 }, + { "id": "t_shrub_strawberry_season_autumn", "fg": 3617, "bg": 3839 }, + { "id": "t_shrub_strawberry_season_summer", "fg": 3617, "bg": 3843 }, + { "id": "t_shrub_strawberry_season_winter", "fg": 3614, "bg": 3760 }, + { "id": "t_sidewalk", "fg": 3689, "rotates": false }, + { "id": "t_sidewalk_bg_dp", "fg": 3689 }, + { "id": "t_skylight", "bg": 3689, "rotates": false }, { "id": "t_slide", - "fg": 3593, - "bg": 3897, + "fg": 3619, + "bg": 3939, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "edge", "fg": 3593, "bg": 3897 }, { "id": "end_piece", "fg": 3594, "bg": 3897 } ] + "additional_tiles": [ { "id": "edge", "fg": 3619, "bg": 3939 }, { "id": "end_piece", "fg": 3620, "bg": 3939 } ] }, { "id": "t_slide_season_autumn", - "fg": 3593, - "bg": 3813, + "fg": 3619, + "bg": 3839, "multitile": true, - "additional_tiles": [ { "id": "edge", "fg": 3593, "bg": 3813 }, { "id": "end_piece", "fg": 3594, "bg": 3813 } ] + "additional_tiles": [ { "id": "edge", "fg": 3619, "bg": 3839 }, { "id": "end_piece", "fg": 3620, "bg": 3839 } ] }, { "id": "t_slide_season_summer", - "fg": 3593, - "bg": 3817, + "fg": 3619, + "bg": 3843, "multitile": true, - "additional_tiles": [ { "id": "edge", "fg": 3593, "bg": 3817 }, { "id": "end_piece", "fg": 3594, "bg": 3817 } ] + "additional_tiles": [ { "id": "edge", "fg": 3619, "bg": 3843 }, { "id": "end_piece", "fg": 3620, "bg": 3843 } ] }, { "id": "t_slide_season_winter", - "fg": 3593, - "bg": 3734, + "fg": 3619, + "bg": 3760, "multitile": true, - "additional_tiles": [ { "id": "edge", "fg": 3593, "bg": 3734 }, { "id": "end_piece", "fg": 3594, "bg": 3734 } ] + "additional_tiles": [ { "id": "edge", "fg": 3619, "bg": 3760 }, { "id": "end_piece", "fg": 3620, "bg": 3760 } ] }, { "id": "t_slime", - "fg": 3595, - "bg": 3809, + "fg": 3621, + "bg": 3835, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 3595, "bg": 3809 }, - { "id": "center", "fg": 3596, "bg": 3809 }, - { "id": "corner", "fg": 3597, "bg": 3809 }, - { "id": "edge", "fg": 3598, "bg": 3809 }, - { "id": "end_piece", "fg": 3599, "bg": 3809 }, - { "id": "t_connection", "fg": 3600, "bg": 3809 } + { "id": "unconnected", "fg": 3621, "bg": 3835 }, + { "id": "center", "fg": 3622, "bg": 3835 }, + { "id": "corner", "fg": 3623, "bg": 3835 }, + { "id": "edge", "fg": 3624, "bg": 3835 }, + { "id": "end_piece", "fg": 3625, "bg": 3835 }, + { "id": "t_connection", "fg": 3626, "bg": 3835 } ] }, { "id": "t_slime_season_autumn", - "fg": 3595, - "bg": 3813, + "fg": 3621, + "bg": 3839, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 3595 }, - { "id": "center", "fg": 3596 }, - { "id": "corner", "fg": 3597 }, - { "id": "edge", "fg": 3598 }, - { "id": "end_piece", "fg": 3599 }, - { "id": "t_connection", "fg": 3600 } + { "id": "unconnected", "fg": 3621 }, + { "id": "center", "fg": 3622 }, + { "id": "corner", "fg": 3623 }, + { "id": "edge", "fg": 3624 }, + { "id": "end_piece", "fg": 3625 }, + { "id": "t_connection", "fg": 3626 } ] }, { "id": "t_slime_season_summer", - "fg": 3595, - "bg": 3817, + "fg": 3621, + "bg": 3843, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 3595 }, - { "id": "center", "fg": 3596 }, - { "id": "corner", "fg": 3597 }, - { "id": "edge", "fg": 3598 }, - { "id": "end_piece", "fg": 3599 }, - { "id": "t_connection", "fg": 3600 } + { "id": "unconnected", "fg": 3621 }, + { "id": "center", "fg": 3622 }, + { "id": "corner", "fg": 3623 }, + { "id": "edge", "fg": 3624 }, + { "id": "end_piece", "fg": 3625 }, + { "id": "t_connection", "fg": 3626 } ] }, { "id": "t_slime_season_winter", - "fg": 3595, - "bg": 3734, - "multitile": true, - "additional_tiles": [ - { "id": "unconnected", "fg": 3595 }, - { "id": "center", "fg": 3596 }, - { "id": "corner", "fg": 3597 }, - { "id": "edge", "fg": 3598 }, - { "id": "end_piece", "fg": 3599 }, - { "id": "t_connection", "fg": 3600 } - ] - }, - { "id": "t_slope_down", "fg": 3601, "rotates": false }, - { "id": "t_slope_up", "fg": 3602, "rotates": false }, - { "id": "t_slot_machine", "fg": 3603, "bg": 3663 }, - { "id": [ "t_stairs_down", "t_wood_stairs_down" ], "fg": 3604, "bg": 3658, "rotates": false }, - { "id": [ "t_stairs_up", "t_wood_stairs_up" ], "fg": 3605, "bg": 3657, "rotates": false }, - { "id": "t_station_disc", "fg": 3606, "bg": 3663, "rotates": false }, - { "id": "t_strconc_floor_halfway", "fg": 3607 }, - { "id": "t_strconc_wall_halfway", "fg": 3608, "bg": 3663 }, - { "id": "t_stump", "fg": 3645, "rotates": false, "bg": 3809 }, - { "id": "t_stump_season_autumn", "fg": 3645, "rotates": false, "bg": 3813 }, - { "id": "t_stump_season_summer", "fg": 3645, "rotates": false, "bg": 3817 }, - { "id": "t_stump_season_winter", "fg": 3646, "rotates": false, "bg": 3734 }, - { "id": "t_support_l", "fg": 3609, "bg": 3663, "rotates": false }, - { "id": "t_support_s", "fg": 3610, "bg": 3663, "rotates": false }, - { "id": "t_switchgear_l", "fg": 3611, "bg": 3663, "rotates": false }, - { "id": "t_switchgear_s", "fg": 3612, "bg": 3663, "rotates": false }, - { "id": "t_tarptent", "fg": 3613, "bg": 3809, "rotates": false }, - { "id": "t_thconc_floor", "fg": 3663, "rotates": false }, - { "id": "t_thconc_floor_olight", "fg": 3704, "rotates": false }, - { "id": "t_trunk", "fg": 3705, "bg": 3809, "rotates": false }, - { "id": "t_trunk_season_autumn", "fg": 3705, "bg": 3813 }, - { "id": "t_trunk_season_summer", "fg": 3705, "bg": 3817 }, - { "id": "t_trunk_season_winter", "fg": 3706, "bg": 3734 }, - { "id": "t_underbrush", "fg": 3614, "bg": 3809, "rotates": false }, - { "id": "t_underbrush_harvested_autumn", "fg": 3615, "bg": 3813, "rotates": false }, - { "id": "t_underbrush_harvested_autumn_season_autumn", "fg": 3615, "bg": 3813, "rotates": false }, - { "id": "t_underbrush_harvested_autumn_season_summer", "fg": 3615, "bg": 3817, "rotates": false }, - { "id": "t_underbrush_harvested_autumn_season_winter", "fg": 3615, "bg": 3734, "rotates": false }, - { "id": "t_underbrush_harvested_spring", "fg": 3615, "bg": 3809, "rotates": false }, - { "id": "t_underbrush_harvested_spring_season_winter", "fg": 3615, "bg": 3734, "rotates": false }, - { "id": "t_underbrush_harvested_summer", "fg": 3615, "bg": 3817, "rotates": false }, - { "id": "t_underbrush_harvested_summer_season_winter", "fg": 3615, "bg": 3734, "rotates": false }, - { "id": "t_underbrush_harvested_winter", "fg": 3616, "bg": 3821, "rotates": false }, - { "id": "t_underbrush_harvested_winter_season_winter", "fg": 3616, "bg": 3734, "rotates": false }, - { "id": "t_underbrush_season_winter", "fg": 3617, "bg": 3734, "rotates": false }, - { "id": "t_utility_light", "fg": 3618, "bg": 3663 }, - { "id": "t_wall_half", "fg": 3619 }, - { "id": "t_wall_half_season_winter", "fg": 3619 }, + "fg": 3621, + "bg": 3760, + "multitile": true, + "additional_tiles": [ + { "id": "unconnected", "fg": 3621 }, + { "id": "center", "fg": 3622 }, + { "id": "corner", "fg": 3623 }, + { "id": "edge", "fg": 3624 }, + { "id": "end_piece", "fg": 3625 }, + { "id": "t_connection", "fg": 3626 } + ] + }, + { "id": "t_slope_down", "fg": 3627, "rotates": false }, + { "id": "t_slope_up", "fg": 3628, "rotates": false }, + { "id": "t_slot_machine", "fg": 3629, "bg": 3689 }, + { "id": [ "t_stairs_down", "t_wood_stairs_down" ], "fg": 3630, "bg": 3684, "rotates": false }, + { "id": [ "t_stairs_up", "t_wood_stairs_up" ], "fg": 3631, "bg": 3683, "rotates": false }, + { "id": "t_station_disc", "fg": 3632, "bg": 3689, "rotates": false }, + { "id": "t_strconc_floor_halfway", "fg": 3633 }, + { "id": "t_strconc_wall_halfway", "fg": 3634, "bg": 3689 }, + { "id": "t_stump", "fg": 3671, "rotates": false, "bg": 3835 }, + { "id": "t_stump_season_autumn", "fg": 3671, "rotates": false, "bg": 3839 }, + { "id": "t_stump_season_summer", "fg": 3671, "rotates": false, "bg": 3843 }, + { "id": "t_stump_season_winter", "fg": 3672, "rotates": false, "bg": 3760 }, + { "id": "t_support_l", "fg": 3635, "bg": 3689, "rotates": false }, + { "id": "t_support_s", "fg": 3636, "bg": 3689, "rotates": false }, + { "id": "t_switchgear_l", "fg": 3637, "bg": 3689, "rotates": false }, + { "id": "t_switchgear_s", "fg": 3638, "bg": 3689, "rotates": false }, + { "id": "t_tarptent", "fg": 3639, "bg": 3835, "rotates": false }, + { "id": "t_thconc_floor", "fg": 3689, "rotates": false }, + { "id": "t_thconc_floor_olight", "fg": 3730, "rotates": false }, + { "id": "t_trunk", "fg": 3731, "bg": 3835, "rotates": false }, + { "id": "t_trunk_season_autumn", "fg": 3731, "bg": 3839 }, + { "id": "t_trunk_season_summer", "fg": 3731, "bg": 3843 }, + { "id": "t_trunk_season_winter", "fg": 3732, "bg": 3760 }, + { "id": "t_underbrush", "fg": 3640, "bg": 3835, "rotates": false }, + { "id": "t_underbrush_harvested_autumn", "fg": 3641, "bg": 3839, "rotates": false }, + { "id": "t_underbrush_harvested_autumn_season_autumn", "fg": 3641, "bg": 3839, "rotates": false }, + { "id": "t_underbrush_harvested_autumn_season_summer", "fg": 3641, "bg": 3843, "rotates": false }, + { "id": "t_underbrush_harvested_autumn_season_winter", "fg": 3641, "bg": 3760, "rotates": false }, + { "id": "t_underbrush_harvested_spring", "fg": 3641, "bg": 3835, "rotates": false }, + { "id": "t_underbrush_harvested_spring_season_winter", "fg": 3641, "bg": 3760, "rotates": false }, + { "id": "t_underbrush_harvested_summer", "fg": 3641, "bg": 3843, "rotates": false }, + { "id": "t_underbrush_harvested_summer_season_winter", "fg": 3641, "bg": 3760, "rotates": false }, + { "id": "t_underbrush_harvested_winter", "fg": 3642, "bg": 3847, "rotates": false }, + { "id": "t_underbrush_harvested_winter_season_winter", "fg": 3642, "bg": 3760, "rotates": false }, + { "id": "t_underbrush_season_winter", "fg": 3643, "bg": 3760, "rotates": false }, + { "id": "t_utility_light", "fg": 3644, "bg": 3689 }, + { "id": "t_wall_half", "fg": 3645 }, + { "id": "t_wall_half_season_winter", "fg": 3645 }, { "id": "t_wall_log_half", - "fg": 3620, + "fg": 3646, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3620 }, - { "id": "corner", "fg": 3621 }, - { "id": "edge", "fg": 3622 }, - { "id": "end_piece", "fg": 3623 }, - { "id": "t_connection", "fg": 3624 }, - { "id": "unconnected", "fg": 3625 } + { "id": "center", "fg": 3646 }, + { "id": "corner", "fg": 3647 }, + { "id": "edge", "fg": 3648 }, + { "id": "end_piece", "fg": 3649 }, + { "id": "t_connection", "fg": 3650 }, + { "id": "unconnected", "fg": 3651 } ] }, - { "id": "t_wall_wattle", "fg": 3626, "bg": 3809, "rotates": false }, - { "id": "t_wall_wattle_broken", "fg": 3627, "bg": 3809, "rotates": false }, - { "id": "t_wall_wattle_half", "fg": 3628, "bg": 3809, "rotates": false }, + { "id": "t_wall_wattle", "fg": 3652, "bg": 3835, "rotates": false }, + { "id": "t_wall_wattle_broken", "fg": 3653, "bg": 3835, "rotates": false }, + { "id": "t_wall_wattle_half", "fg": 3654, "bg": 3835, "rotates": false }, { "id": [ "t_water_dp", "t_swater_dp" ], - "fg": 3698, + "fg": 3724, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3698, "bg": 3809 }, - { "id": "corner", "fg": 3699, "bg": 3809 }, - { "id": "edge", "fg": 3700, "bg": 3809 }, - { "id": "end_piece", "fg": 3701, "bg": 3809 }, - { "id": "unconnected", "fg": 3702, "bg": 3809 } + { "id": "center", "fg": 3724, "bg": 3835 }, + { "id": "corner", "fg": 3725, "bg": 3835 }, + { "id": "edge", "fg": 3726, "bg": 3835 }, + { "id": "end_piece", "fg": 3727, "bg": 3835 }, + { "id": "unconnected", "fg": 3728, "bg": 3835 } ], - "bg": 3809 + "bg": 3835 }, { "id": [ "t_water_dp_season_autumn", "t_swater_dp_season_autumn" ], - "fg": 3698, + "fg": 3724, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3698, "bg": 3813 }, - { "id": "corner", "fg": 3699, "bg": 3813 }, - { "id": "edge", "fg": 3700, "bg": 3813 }, - { "id": "end_piece", "fg": 3701, "bg": 3813 }, - { "id": "unconnected", "fg": 3702, "bg": 3813 } + { "id": "center", "fg": 3724, "bg": 3839 }, + { "id": "corner", "fg": 3725, "bg": 3839 }, + { "id": "edge", "fg": 3726, "bg": 3839 }, + { "id": "end_piece", "fg": 3727, "bg": 3839 }, + { "id": "unconnected", "fg": 3728, "bg": 3839 } ], - "bg": 3813 + "bg": 3839 }, { "id": [ "t_water_dp_season_summer", "t_swater_dp_season_summer" ], - "fg": 3698, + "fg": 3724, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3698, "bg": 3817 }, - { "id": "corner", "fg": 3699, "bg": 3817 }, - { "id": "edge", "fg": 3700, "bg": 3817 }, - { "id": "end_piece", "fg": 3701, "bg": 3817 }, - { "id": "unconnected", "fg": 3702, "bg": 3817 } + { "id": "center", "fg": 3724, "bg": 3843 }, + { "id": "corner", "fg": 3725, "bg": 3843 }, + { "id": "edge", "fg": 3726, "bg": 3843 }, + { "id": "end_piece", "fg": 3727, "bg": 3843 }, + { "id": "unconnected", "fg": 3728, "bg": 3843 } ], - "bg": 3817 + "bg": 3843 }, { "id": [ "t_water_season_winter_dp", "t_swater_season_winter_dp" ], - "fg": 3698, + "fg": 3724, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3698, "bg": 3734 }, - { "id": "corner", "fg": 3699, "bg": 3734 }, - { "id": "edge", "fg": 3700, "bg": 3734 }, - { "id": "end_piece", "fg": 3701, "bg": 3734 }, - { "id": "unconnected", "fg": 3702, "bg": 3734 } + { "id": "center", "fg": 3724, "bg": 3760 }, + { "id": "corner", "fg": 3725, "bg": 3760 }, + { "id": "edge", "fg": 3726, "bg": 3760 }, + { "id": "end_piece", "fg": 3727, "bg": 3760 }, + { "id": "unconnected", "fg": 3728, "bg": 3760 } ], - "bg": 3734 + "bg": 3760 }, - { "id": "t_water_pump", "fg": 3629, "bg": 3663, "rotates": false }, + { "id": "t_water_pump", "fg": 3655, "bg": 3689, "rotates": false }, { "id": [ "t_water_sh", "t_swater_sh" ], - "fg": 3707, - "bg": 3809, + "fg": 3733, + "bg": 3835, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3708, "bg": 3809 }, - { "id": "edge", "fg": 3709, "bg": 3809 }, - { "id": "end_piece", "fg": 3710, "bg": 3809 }, - { "id": "center", "fg": 3707, "bg": 3809 }, - { "id": "t_connection", "fg": 3707, "bg": 3809 }, - { "id": "unconnected", "fg": 3711, "bg": 3809 } + { "id": "corner", "fg": 3734, "bg": 3835 }, + { "id": "edge", "fg": 3735, "bg": 3835 }, + { "id": "end_piece", "fg": 3736, "bg": 3835 }, + { "id": "center", "fg": 3733, "bg": 3835 }, + { "id": "t_connection", "fg": 3733, "bg": 3835 }, + { "id": "unconnected", "fg": 3737, "bg": 3835 } ] }, { "id": [ "t_water_sh_season_autumn", "t_swater_sh_season_autumn" ], - "fg": 3707, - "bg": 3813, + "fg": 3733, + "bg": 3839, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3708, "bg": 3813 }, - { "id": "edge", "fg": 3709, "bg": 3813 }, - { "id": "end_piece", "fg": 3710, "bg": 3813 }, - { "id": "center", "fg": 3707, "bg": 3813 }, - { "id": "t_connection", "fg": 3707, "bg": 3813 }, - { "id": "unconnected", "fg": 3711, "bg": 3813 } + { "id": "corner", "fg": 3734, "bg": 3839 }, + { "id": "edge", "fg": 3735, "bg": 3839 }, + { "id": "end_piece", "fg": 3736, "bg": 3839 }, + { "id": "center", "fg": 3733, "bg": 3839 }, + { "id": "t_connection", "fg": 3733, "bg": 3839 }, + { "id": "unconnected", "fg": 3737, "bg": 3839 } ] }, { "id": [ "t_water_sh_season_summer", "t_swater_sh_season_summer" ], - "fg": 3707, - "bg": 3817, + "fg": 3733, + "bg": 3843, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3708, "bg": 3817 }, - { "id": "edge", "fg": 3709, "bg": 3817 }, - { "id": "end_piece", "fg": 3710, "bg": 3817 }, - { "id": "center", "fg": 3707, "bg": 3817 }, - { "id": "t_connection", "fg": 3707, "bg": 3817 }, - { "id": "unconnected", "fg": 3711, "bg": 3817 } + { "id": "corner", "fg": 3734, "bg": 3843 }, + { "id": "edge", "fg": 3735, "bg": 3843 }, + { "id": "end_piece", "fg": 3736, "bg": 3843 }, + { "id": "center", "fg": 3733, "bg": 3843 }, + { "id": "t_connection", "fg": 3733, "bg": 3843 }, + { "id": "unconnected", "fg": 3737, "bg": 3843 } ] }, { "id": [ "t_water_sh_season_winter", "t_swater_sh_season_winter" ], - "fg": 3707, - "bg": 3734, + "fg": 3733, + "bg": 3760, "rotates": false, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": 3708, "bg": 3734 }, - { "id": "edge", "fg": 3709, "bg": 3734 }, - { "id": "end_piece", "fg": 3710, "bg": 3734 }, - { "id": "center", "fg": 3707, "bg": 3734 }, - { "id": "t_connection", "fg": 3707, "bg": 3734 }, - { "id": "unconnected", "fg": 3711, "bg": 3734 } - ] - }, - { "id": "t_window", "fg": 3630, "bg": 3658, "rotates": false }, - { "id": "t_window_alarm", "fg": 3630, "bg": 3658, "rotates": false }, - { "id": "t_window_alarm_taped", "fg": 3631, "bg": 3658, "rotates": false }, - { "id": "t_window_bars", "fg": 3632, "bg": 3658, "rotates": false }, - { "id": "t_window_bars_alarm", "fg": 3633, "bg": 3658, "rotates": false }, - { "id": "t_window_boarded", "fg": 3634, "bg": 3658, "rotates": false }, - { "id": "t_window_boarded_noglass", "fg": 3635, "bg": 3658, "rotates": false }, - { "id": "t_window_domestic", "fg": 3630, "bg": 3658, "rotates": false }, - { "id": "t_window_domestic_taped", "fg": 3631, "bg": 3658, "rotates": false }, - { "id": "t_window_empty", "fg": 3636, "bg": 3658, "rotates": false }, - { "id": "t_window_enhanced", "fg": 3637, "bg": 3658, "rotates": false }, - { "id": "t_window_enhanced_noglass", "fg": 3637 }, - { "id": "t_window_frame", "fg": 3515, "bg": 3658, "rotates": false }, - { "id": "t_window_no_curtains", "fg": 3630, "bg": 3658, "rotates": false }, - { "id": "t_window_no_curtains_open", "fg": 3638, "bg": 3658, "rotates": false }, - { "id": "t_window_no_curtains_taped", "fg": 3631, "bg": 3658, "rotates": false }, - { "id": "t_window_open", "fg": 3638, "bg": 3658, "rotates": false }, - { "id": "t_window_reinforced", "fg": 3639, "bg": 3658, "rotates": false }, - { "id": "t_window_reinforced_noglass", "fg": 3640, "bg": 3658, "rotates": false }, - { "id": "t_window_stained_blue", "fg": 3641, "rotates": false }, - { "id": "t_window_stained_green", "fg": 3642, "rotates": false }, - { "id": "t_window_stained_red", "fg": 3643, "rotates": false }, - { "id": "t_window_taped", "fg": 3631, "bg": 3658, "rotates": false }, - { "id": "t_zebra", "fg": 3712, "rotates": false }, - { "id": "tr_glass_pit", "fg": 3689, "bg": 3809 }, - { "id": "tr_glass_pit_season_autumn", "fg": 3689, "bg": 3813 }, - { "id": "tr_glass_pit_season_summer", "fg": 3689, "bg": 3817 }, - { "id": "tr_glass_pit_season_winter", "fg": 3689, "bg": 3734 }, - { "id": "tr_light_snare", "bg": 4761, "rotates": false }, - { "id": "tr_pit", "fg": 3685, "bg": 3809, "rotates": false }, - { "id": "tr_pit_season_autumn", "fg": 3685, "bg": 3813 }, - { "id": "tr_pit_season_summer", "fg": 3685, "bg": 3817 }, - { "id": "tr_pit_season_winter", "fg": 3685, "bg": 3734 }, - { "id": "tr_spike_pit", "fg": 3692, "bg": 3809, "rotates": false }, - { "id": "tr_spike_pit_season_autumn", "fg": 3692, "bg": 3813 }, - { "id": "tr_spike_pit_season_summer", "fg": 3692, "bg": 3817 }, - { "id": "tr_spike_pit_season_winter", "fg": 3692, "bg": 3734 }, - { "id": "t_floor_resin", "fg": 3713 }, - { "id": "t_resin_hole_c", "fg": 3715, "rotates": false, "bg": 3713 }, - { "id": "t_resin_hole_o", "fg": 3716, "rotates": false, "bg": 3713 }, + { "id": "corner", "fg": 3734, "bg": 3760 }, + { "id": "edge", "fg": 3735, "bg": 3760 }, + { "id": "end_piece", "fg": 3736, "bg": 3760 }, + { "id": "center", "fg": 3733, "bg": 3760 }, + { "id": "t_connection", "fg": 3733, "bg": 3760 }, + { "id": "unconnected", "fg": 3737, "bg": 3760 } + ] + }, + { "id": "t_window", "fg": 3656, "bg": 3684, "rotates": false }, + { "id": "t_window_alarm", "fg": 3656, "bg": 3684, "rotates": false }, + { "id": "t_window_alarm_taped", "fg": 3657, "bg": 3684, "rotates": false }, + { "id": "t_window_bars", "fg": 3658, "bg": 3684, "rotates": false }, + { "id": "t_window_bars_alarm", "fg": 3659, "bg": 3684, "rotates": false }, + { "id": "t_window_boarded", "fg": 3660, "bg": 3684, "rotates": false }, + { "id": "t_window_boarded_noglass", "fg": 3661, "bg": 3684, "rotates": false }, + { "id": "t_window_domestic", "fg": 3656, "bg": 3684, "rotates": false }, + { "id": "t_window_domestic_taped", "fg": 3657, "bg": 3684, "rotates": false }, + { "id": "t_window_empty", "fg": 3662, "bg": 3684, "rotates": false }, + { "id": "t_window_enhanced", "fg": 3663, "bg": 3684, "rotates": false }, + { "id": "t_window_enhanced_noglass", "fg": 3663 }, + { "id": "t_window_frame", "fg": 3541, "bg": 3684, "rotates": false }, + { "id": "t_window_no_curtains", "fg": 3656, "bg": 3684, "rotates": false }, + { "id": "t_window_no_curtains_open", "fg": 3664, "bg": 3684, "rotates": false }, + { "id": "t_window_no_curtains_taped", "fg": 3657, "bg": 3684, "rotates": false }, + { "id": "t_window_open", "fg": 3664, "bg": 3684, "rotates": false }, + { "id": "t_window_reinforced", "fg": 3665, "bg": 3684, "rotates": false }, + { "id": "t_window_reinforced_noglass", "fg": 3666, "bg": 3684, "rotates": false }, + { "id": "t_window_stained_blue", "fg": 3667, "rotates": false }, + { "id": "t_window_stained_green", "fg": 3668, "rotates": false }, + { "id": "t_window_stained_red", "fg": 3669, "rotates": false }, + { "id": "t_window_taped", "fg": 3657, "bg": 3684, "rotates": false }, + { "id": "t_zebra", "fg": 3738, "rotates": false }, + { "id": "tr_glass_pit", "fg": 3715, "bg": 3835 }, + { "id": "tr_glass_pit_season_autumn", "fg": 3715, "bg": 3839 }, + { "id": "tr_glass_pit_season_summer", "fg": 3715, "bg": 3843 }, + { "id": "tr_glass_pit_season_winter", "fg": 3715, "bg": 3760 }, + { "id": "tr_light_snare", "bg": 4803, "rotates": false }, + { "id": "tr_pit", "fg": 3711, "bg": 3835, "rotates": false }, + { "id": "tr_pit_season_autumn", "fg": 3711, "bg": 3839 }, + { "id": "tr_pit_season_summer", "fg": 3711, "bg": 3843 }, + { "id": "tr_pit_season_winter", "fg": 3711, "bg": 3760 }, + { "id": "tr_spike_pit", "fg": 3718, "bg": 3835, "rotates": false }, + { "id": "tr_spike_pit_season_autumn", "fg": 3718, "bg": 3839 }, + { "id": "tr_spike_pit_season_summer", "fg": 3718, "bg": 3843 }, + { "id": "tr_spike_pit_season_winter", "fg": 3718, "bg": 3760 }, + { "id": "t_floor_resin", "fg": 3739 }, + { "id": "t_resin_hole_c", "fg": 3741, "rotates": false, "bg": 3739 }, + { "id": "t_resin_hole_o", "fg": 3742, "rotates": false, "bg": 3739 }, { "id": "t_wall_resin", - "fg": 3732, + "fg": 3758, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3717, "bg": 3713 }, - { "id": "corner", "fg": [ 3719, 3721, 3720, 3718 ], "bg": 3713 }, - { "id": "t_connection", "fg": [ 3729, 3731, 3730, 3728 ], "bg": 3713 }, - { "id": "edge", "fg": [ 3723, 3722 ], "bg": 3713 }, - { "id": "end_piece", "fg": [ 3725, 3727, 3726, 3724 ], "bg": 3713 }, - { "id": "unconnected", "fg": [ 3732, 3732 ], "bg": 3713 } + { "id": "center", "fg": 3743, "bg": 3739 }, + { "id": "corner", "fg": [ 3745, 3747, 3746, 3744 ], "bg": 3739 }, + { "id": "t_connection", "fg": [ 3755, 3757, 3756, 3754 ], "bg": 3739 }, + { "id": "edge", "fg": [ 3749, 3748 ], "bg": 3739 }, + { "id": "end_piece", "fg": [ 3751, 3753, 3752, 3750 ], "bg": 3739 }, + { "id": "unconnected", "fg": [ 3758, 3758 ], "bg": 3739 } ] }, { "id": [ "t_brick_wall", "t_secretdoor_brick_wall_c", "t_sliding_brick_wall_c" ], - "fg": 3768, + "fg": 3794, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3753 }, - { "id": "corner", "fg": [ 3755, 3757, 3756, 3754 ] }, - { "id": "t_connection", "fg": [ 3765, 3767, 3766, 3764 ] }, - { "id": "edge", "fg": [ 3759, 3758 ] }, - { "id": "end_piece", "fg": [ 3761, 3763, 3762, 3760 ] }, - { "id": "unconnected", "fg": [ 3768, 3768 ] } + { "id": "center", "fg": 3779 }, + { "id": "corner", "fg": [ 3781, 3783, 3782, 3780 ] }, + { "id": "t_connection", "fg": [ 3791, 3793, 3792, 3790 ] }, + { "id": "edge", "fg": [ 3785, 3784 ] }, + { "id": "end_piece", "fg": [ 3787, 3789, 3788, 3786 ] }, + { "id": "unconnected", "fg": [ 3794, 3794 ] } ] }, { "id": "t_concrete_railing", - "fg": 3776, + "fg": 3802, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3776, "bg": 3663 }, - { "id": "corner", "fg": [ 3770, 3772, 3771, 3769 ], "bg": 3663 }, - { "id": "t_connection", "fg": [ 3776, 3773, 3776, 3773 ], "bg": 3663 }, - { "id": "edge", "fg": [ 3773, 3776 ], "bg": 3663 }, - { "id": "end_piece", "fg": [ 3774, 3776, 3775, 3776 ], "bg": 3663 }, - { "id": "unconnected", "fg": [ 3776, 3776 ], "bg": 3663 } + { "id": "center", "fg": 3802, "bg": 3689 }, + { "id": "corner", "fg": [ 3796, 3798, 3797, 3795 ], "bg": 3689 }, + { "id": "t_connection", "fg": [ 3802, 3799, 3802, 3799 ], "bg": 3689 }, + { "id": "edge", "fg": [ 3799, 3802 ], "bg": 3689 }, + { "id": "end_piece", "fg": [ 3800, 3802, 3801, 3802 ], "bg": 3689 }, + { "id": "unconnected", "fg": [ 3802, 3802 ], "bg": 3689 } ] }, { "id": [ "t_concrete_wall", "t_secretdoor_concrete_wall_c", "t_sliding_concrete_wall_c" ], - "fg": 3792, + "fg": 3818, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3777 }, - { "id": "corner", "fg": [ 3779, 3781, 3780, 3778 ] }, - { "id": "t_connection", "fg": [ 3789, 3791, 3790, 3788 ] }, - { "id": "edge", "fg": [ 3783, 3782 ] }, - { "id": "end_piece", "fg": [ 3785, 3787, 3786, 3784 ] }, - { "id": "unconnected", "fg": [ 3792, 3792 ] } + { "id": "center", "fg": 3803 }, + { "id": "corner", "fg": [ 3805, 3807, 3806, 3804 ] }, + { "id": "t_connection", "fg": [ 3815, 3817, 3816, 3814 ] }, + { "id": "edge", "fg": [ 3809, 3808 ] }, + { "id": "end_piece", "fg": [ 3811, 3813, 3812, 3810 ] }, + { "id": "unconnected", "fg": [ 3818, 3818 ] } ] }, { "id": "t_concrete_wall_flesh", - "fg": 3808, + "fg": 3834, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3793 }, - { "id": "corner", "fg": [ 3795, 3797, 3796, 3794 ] }, - { "id": "t_connection", "fg": [ 3805, 3807, 3806, 3804 ] }, - { "id": "edge", "fg": [ 3799, 3798 ] }, - { "id": "end_piece", "fg": [ 3801, 3803, 3802, 3800 ] }, - { "id": "unconnected", "fg": [ 3808, 3808 ] } + { "id": "center", "fg": 3819 }, + { "id": "corner", "fg": [ 3821, 3823, 3822, 3820 ] }, + { "id": "t_connection", "fg": [ 3831, 3833, 3832, 3830 ] }, + { "id": "edge", "fg": [ 3825, 3824 ] }, + { "id": "end_piece", "fg": [ 3827, 3829, 3828, 3826 ] }, + { "id": "unconnected", "fg": [ 3834, 3834 ] } ] }, { "id": "t_dirt", "bg": [ - { "weight": 100, "sprite": 3809 }, - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 } + { "weight": 100, "sprite": 3835 }, + { "weight": 100, "sprite": 3836 }, + { "weight": 100, "sprite": 3837 }, + { "weight": 100, "sprite": 3838 } ] }, { "id": "t_dirt_season_autumn", "bg": [ - { "weight": 100, "sprite": 3813 }, - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 } + { "weight": 100, "sprite": 3839 }, + { "weight": 100, "sprite": 3840 }, + { "weight": 100, "sprite": 3841 }, + { "weight": 100, "sprite": 3842 } ] }, { "id": "t_dirt_season_summer", "bg": [ - { "weight": 100, "sprite": 3817 }, - { "weight": 100, "sprite": 3818 }, - { "weight": 100, "sprite": 3819 }, - { "weight": 100, "sprite": 3820 } + { "weight": 100, "sprite": 3843 }, + { "weight": 100, "sprite": 3844 }, + { "weight": 100, "sprite": 3845 }, + { "weight": 100, "sprite": 3846 } ] }, { "id": "t_dirt_season_winter", "bg": [ - { "weight": 100, "sprite": 3821 }, - { "weight": 100, "sprite": 3822 }, - { "weight": 100, "sprite": 3823 }, - { "weight": 100, "sprite": 3824 } + { "weight": 100, "sprite": 3847 }, + { "weight": 100, "sprite": 3848 }, + { "weight": 100, "sprite": 3849 }, + { "weight": 100, "sprite": 3850 } ] }, { "id": "t_dirtfloor", - "fg": [ { "weight": 1, "sprite": 3825 }, { "weight": 1, "sprite": 3826 }, { "weight": 1, "sprite": 3827 } ], + "fg": [ { "weight": 1, "sprite": 3851 }, { "weight": 1, "sprite": 3852 }, { "weight": 1, "sprite": 3853 } ], "rotates": false }, { "id": "t_dock", - "fg": 3843, + "fg": 3869, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3828 }, - { "id": "corner", "fg": [ 3830, 3832, 3831, 3829 ] }, - { "id": "t_connection", "fg": [ 3840, 3842, 3841, 3839 ] }, - { "id": "edge", "fg": [ 3834, 3833 ] }, - { "id": "end_piece", "fg": [ 3836, 3838, 3837, 3835 ] }, - { "id": "unconnected", "fg": [ 3843, 3843 ] } + { "id": "center", "fg": 3854 }, + { "id": "corner", "fg": [ 3856, 3858, 3857, 3855 ] }, + { "id": "t_connection", "fg": [ 3866, 3868, 3867, 3865 ] }, + { "id": "edge", "fg": [ 3860, 3859 ] }, + { "id": "end_piece", "fg": [ 3862, 3864, 3863, 3861 ] }, + { "id": "unconnected", "fg": [ 3869, 3869 ] } ] }, { "id": "t_dock_deep", - "fg": 3859, + "fg": 3885, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3844 }, - { "id": "corner", "fg": [ 3846, 3848, 3847, 3845 ] }, - { "id": "t_connection", "fg": [ 3856, 3858, 3857, 3855 ] }, - { "id": "edge", "fg": [ 3850, 3849 ] }, - { "id": "end_piece", "fg": [ 3852, 3854, 3853, 3851 ] }, - { "id": "unconnected", "fg": [ 3859, 3859 ] } + { "id": "center", "fg": 3870 }, + { "id": "corner", "fg": [ 3872, 3874, 3873, 3871 ] }, + { "id": "t_connection", "fg": [ 3882, 3884, 3883, 3881 ] }, + { "id": "edge", "fg": [ 3876, 3875 ] }, + { "id": "end_piece", "fg": [ 3878, 3880, 3879, 3877 ] }, + { "id": "unconnected", "fg": [ 3885, 3885 ] } ] }, { "id": "t_fence_metal", - "fg": 3869, + "fg": 3895, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3869, "bg": 3658 }, - { "id": "corner", "fg": [ 3861, 3863, 3862, 3860 ], "bg": 3658 }, - { "id": "t_connection", "fg": [ 3869, 3868, 3869, 3867 ], "bg": 3658 }, - { "id": "edge", "fg": [ 3864, 3869 ], "bg": 3658 }, - { "id": "end_piece", "fg": [ 3865, 3869, 3866, 3869 ], "bg": 3658 }, - { "id": "unconnected", "fg": [ 3869, 3869 ], "bg": 3658 } + { "id": "center", "fg": 3895, "bg": 3684 }, + { "id": "corner", "fg": [ 3887, 3889, 3888, 3886 ], "bg": 3684 }, + { "id": "t_connection", "fg": [ 3895, 3894, 3895, 3893 ], "bg": 3684 }, + { "id": "edge", "fg": [ 3890, 3895 ], "bg": 3684 }, + { "id": "end_piece", "fg": [ 3891, 3895, 3892, 3895 ], "bg": 3684 }, + { "id": "unconnected", "fg": [ 3895, 3895 ], "bg": 3684 } ] }, { "id": "t_fence_rope", - "fg": 3880, + "fg": 3906, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": 3880, + "fg": 3906, "bg": [ - { "weight": 100, "sprite": 3809 }, - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 } + { "weight": 100, "sprite": 3835 }, + { "weight": 100, "sprite": 3836 }, + { "weight": 100, "sprite": 3837 }, + { "weight": 100, "sprite": 3838 } ] }, { "id": "corner", - "fg": [ 3871, 3873, 3872, 3870 ], + "fg": [ 3897, 3899, 3898, 3896 ], "bg": [ - { "weight": 100, "sprite": 3809 }, - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 } + { "weight": 100, "sprite": 3835 }, + { "weight": 100, "sprite": 3836 }, + { "weight": 100, "sprite": 3837 }, + { "weight": 100, "sprite": 3838 } ] }, { "id": "t_connection", - "fg": [ 3874, 3875, 3874, 3875 ], + "fg": [ 3900, 3901, 3900, 3901 ], "bg": [ - { "weight": 100, "sprite": 3809 }, - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 } + { "weight": 100, "sprite": 3835 }, + { "weight": 100, "sprite": 3836 }, + { "weight": 100, "sprite": 3837 }, + { "weight": 100, "sprite": 3838 } ] }, { "id": "edge", - "fg": [ 3875, 3874 ], + "fg": [ 3901, 3900 ], "bg": [ - { "weight": 100, "sprite": 3809 }, - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 } + { "weight": 100, "sprite": 3835 }, + { "weight": 100, "sprite": 3836 }, + { "weight": 100, "sprite": 3837 }, + { "weight": 100, "sprite": 3838 } ] }, { "id": "end_piece", - "fg": [ 3877, 3879, 3878, 3876 ], + "fg": [ 3903, 3905, 3904, 3902 ], "bg": [ - { "weight": 100, "sprite": 3809 }, - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 } + { "weight": 100, "sprite": 3835 }, + { "weight": 100, "sprite": 3836 }, + { "weight": 100, "sprite": 3837 }, + { "weight": 100, "sprite": 3838 } ] }, { "id": "unconnected", - "fg": [ 3880, 3880 ], + "fg": [ 3906, 3906 ], "bg": [ - { "weight": 100, "sprite": 3809 }, - { "weight": 100, "sprite": 3810 }, - { "weight": 100, "sprite": 3811 }, - { "weight": 100, "sprite": 3812 } + { "weight": 100, "sprite": 3835 }, + { "weight": 100, "sprite": 3836 }, + { "weight": 100, "sprite": 3837 }, + { "weight": 100, "sprite": 3838 } ] } ] }, { "id": "t_fence_rope_season_summer", - "fg": 3880, + "fg": 3906, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": 3880, + "fg": 3906, "bg": [ - { "weight": 100, "sprite": 3817 }, - { "weight": 100, "sprite": 3818 }, - { "weight": 100, "sprite": 3819 }, - { "weight": 100, "sprite": 3820 } + { "weight": 100, "sprite": 3843 }, + { "weight": 100, "sprite": 3844 }, + { "weight": 100, "sprite": 3845 }, + { "weight": 100, "sprite": 3846 } ] }, { "id": "corner", - "fg": [ 3871, 3873, 3872, 3870 ], + "fg": [ 3897, 3899, 3898, 3896 ], "bg": [ - { "weight": 100, "sprite": 3817 }, - { "weight": 100, "sprite": 3818 }, - { "weight": 100, "sprite": 3819 }, - { "weight": 100, "sprite": 3820 } + { "weight": 100, "sprite": 3843 }, + { "weight": 100, "sprite": 3844 }, + { "weight": 100, "sprite": 3845 }, + { "weight": 100, "sprite": 3846 } ] }, { "id": "t_connection", - "fg": [ 3874, 3875, 3874, 3875 ], + "fg": [ 3900, 3901, 3900, 3901 ], "bg": [ - { "weight": 100, "sprite": 3817 }, - { "weight": 100, "sprite": 3818 }, - { "weight": 100, "sprite": 3819 }, - { "weight": 100, "sprite": 3820 } + { "weight": 100, "sprite": 3843 }, + { "weight": 100, "sprite": 3844 }, + { "weight": 100, "sprite": 3845 }, + { "weight": 100, "sprite": 3846 } ] }, { "id": "edge", - "fg": [ 3875, 3874 ], + "fg": [ 3901, 3900 ], "bg": [ - { "weight": 100, "sprite": 3817 }, - { "weight": 100, "sprite": 3818 }, - { "weight": 100, "sprite": 3819 }, - { "weight": 100, "sprite": 3820 } + { "weight": 100, "sprite": 3843 }, + { "weight": 100, "sprite": 3844 }, + { "weight": 100, "sprite": 3845 }, + { "weight": 100, "sprite": 3846 } ] }, { "id": "end_piece", - "fg": [ 3877, 3879, 3878, 3876 ], + "fg": [ 3903, 3905, 3904, 3902 ], "bg": [ - { "weight": 100, "sprite": 3817 }, - { "weight": 100, "sprite": 3818 }, - { "weight": 100, "sprite": 3819 }, - { "weight": 100, "sprite": 3820 } + { "weight": 100, "sprite": 3843 }, + { "weight": 100, "sprite": 3844 }, + { "weight": 100, "sprite": 3845 }, + { "weight": 100, "sprite": 3846 } ] }, { "id": "unconnected", - "fg": [ 3880, 3880 ], + "fg": [ 3906, 3906 ], "bg": [ - { "weight": 100, "sprite": 3817 }, - { "weight": 100, "sprite": 3818 }, - { "weight": 100, "sprite": 3819 }, - { "weight": 100, "sprite": 3820 } + { "weight": 100, "sprite": 3843 }, + { "weight": 100, "sprite": 3844 }, + { "weight": 100, "sprite": 3845 }, + { "weight": 100, "sprite": 3846 } ] } ] }, { "id": "t_fence_rope_season_autumn", - "fg": 3880, + "fg": 3906, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": 3880, + "fg": 3906, "bg": [ - { "weight": 100, "sprite": 3813 }, - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 } + { "weight": 100, "sprite": 3839 }, + { "weight": 100, "sprite": 3840 }, + { "weight": 100, "sprite": 3841 }, + { "weight": 100, "sprite": 3842 } ] }, { "id": "corner", - "fg": [ 3871, 3873, 3872, 3870 ], + "fg": [ 3897, 3899, 3898, 3896 ], "bg": [ - { "weight": 100, "sprite": 3813 }, - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 } + { "weight": 100, "sprite": 3839 }, + { "weight": 100, "sprite": 3840 }, + { "weight": 100, "sprite": 3841 }, + { "weight": 100, "sprite": 3842 } ] }, { "id": "t_connection", - "fg": [ 3874, 3875, 3874, 3875 ], + "fg": [ 3900, 3901, 3900, 3901 ], "bg": [ - { "weight": 100, "sprite": 3813 }, - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 } + { "weight": 100, "sprite": 3839 }, + { "weight": 100, "sprite": 3840 }, + { "weight": 100, "sprite": 3841 }, + { "weight": 100, "sprite": 3842 } ] }, { "id": "edge", - "fg": [ 3875, 3874 ], + "fg": [ 3901, 3900 ], "bg": [ - { "weight": 100, "sprite": 3813 }, - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 } + { "weight": 100, "sprite": 3839 }, + { "weight": 100, "sprite": 3840 }, + { "weight": 100, "sprite": 3841 }, + { "weight": 100, "sprite": 3842 } ] }, { "id": "end_piece", - "fg": [ 3877, 3879, 3878, 3876 ], + "fg": [ 3903, 3905, 3904, 3902 ], "bg": [ - { "weight": 100, "sprite": 3813 }, - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 } + { "weight": 100, "sprite": 3839 }, + { "weight": 100, "sprite": 3840 }, + { "weight": 100, "sprite": 3841 }, + { "weight": 100, "sprite": 3842 } ] }, { "id": "unconnected", - "fg": [ 3880, 3880 ], + "fg": [ 3906, 3906 ], "bg": [ - { "weight": 100, "sprite": 3813 }, - { "weight": 100, "sprite": 3814 }, - { "weight": 100, "sprite": 3815 }, - { "weight": 100, "sprite": 3816 } + { "weight": 100, "sprite": 3839 }, + { "weight": 100, "sprite": 3840 }, + { "weight": 100, "sprite": 3841 }, + { "weight": 100, "sprite": 3842 } ] } ] }, { "id": "t_fence_rope_season_winter", - "fg": 3880, + "fg": 3906, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": 3880, + "fg": 3906, "bg": [ - { "weight": 100, "sprite": 3821 }, - { "weight": 100, "sprite": 3822 }, - { "weight": 100, "sprite": 3823 }, - { "weight": 100, "sprite": 3824 } + { "weight": 100, "sprite": 3847 }, + { "weight": 100, "sprite": 3848 }, + { "weight": 100, "sprite": 3849 }, + { "weight": 100, "sprite": 3850 } ] }, { "id": "corner", - "fg": [ 3871, 3873, 3872, 3870 ], + "fg": [ 3897, 3899, 3898, 3896 ], "bg": [ - { "weight": 100, "sprite": 3821 }, - { "weight": 100, "sprite": 3822 }, - { "weight": 100, "sprite": 3823 }, - { "weight": 100, "sprite": 3824 } + { "weight": 100, "sprite": 3847 }, + { "weight": 100, "sprite": 3848 }, + { "weight": 100, "sprite": 3849 }, + { "weight": 100, "sprite": 3850 } ] }, { "id": "t_connection", - "fg": [ 3874, 3875, 3874, 3875 ], + "fg": [ 3900, 3901, 3900, 3901 ], "bg": [ - { "weight": 100, "sprite": 3821 }, - { "weight": 100, "sprite": 3822 }, - { "weight": 100, "sprite": 3823 }, - { "weight": 100, "sprite": 3824 } + { "weight": 100, "sprite": 3847 }, + { "weight": 100, "sprite": 3848 }, + { "weight": 100, "sprite": 3849 }, + { "weight": 100, "sprite": 3850 } ] }, { "id": "edge", - "fg": [ 3875, 3874 ], + "fg": [ 3901, 3900 ], "bg": [ - { "weight": 100, "sprite": 3821 }, - { "weight": 100, "sprite": 3822 }, - { "weight": 100, "sprite": 3823 }, - { "weight": 100, "sprite": 3824 } + { "weight": 100, "sprite": 3847 }, + { "weight": 100, "sprite": 3848 }, + { "weight": 100, "sprite": 3849 }, + { "weight": 100, "sprite": 3850 } ] }, { "id": "end_piece", - "fg": [ 3877, 3879, 3878, 3876 ], + "fg": [ 3903, 3905, 3904, 3902 ], "bg": [ - { "weight": 100, "sprite": 3821 }, - { "weight": 100, "sprite": 3822 }, - { "weight": 100, "sprite": 3823 }, - { "weight": 100, "sprite": 3824 } + { "weight": 100, "sprite": 3847 }, + { "weight": 100, "sprite": 3848 }, + { "weight": 100, "sprite": 3849 }, + { "weight": 100, "sprite": 3850 } ] }, { "id": "unconnected", - "fg": [ 3880, 3880 ], + "fg": [ 3906, 3906 ], "bg": [ - { "weight": 100, "sprite": 3821 }, - { "weight": 100, "sprite": 3822 }, - { "weight": 100, "sprite": 3823 }, - { "weight": 100, "sprite": 3824 } + { "weight": 100, "sprite": 3847 }, + { "weight": 100, "sprite": 3848 }, + { "weight": 100, "sprite": 3849 }, + { "weight": 100, "sprite": 3850 } ] } ] }, { "id": "t_glass_railing", - "fg": 3895, + "fg": 3921, "multitile": true, "additional_tiles": [ - { "id": "corner", "fg": [ 3882, 3884, 3883, 3881 ], "bg": 3657 }, - { "id": "t_connection", "fg": [ 3892, 3894, 3893, 3891 ], "bg": 3657 }, - { "id": "edge", "fg": [ 3886, 3885 ], "bg": 3657 }, - { "id": "end_piece", "fg": [ 3888, 3890, 3889, 3887 ], "bg": 3657 }, - { "id": "unconnected", "fg": [ 3895, 3895 ], "bg": 3657 } + { "id": "corner", "fg": [ 3908, 3910, 3909, 3907 ], "bg": 3683 }, + { "id": "t_connection", "fg": [ 3918, 3920, 3919, 3917 ], "bg": 3683 }, + { "id": "edge", "fg": [ 3912, 3911 ], "bg": 3683 }, + { "id": "end_piece", "fg": [ 3914, 3916, 3915, 3913 ], "bg": 3683 }, + { "id": "unconnected", "fg": [ 3921, 3921 ], "bg": 3683 } + ] + }, + { + "id": "t_glass_roof", + "fg": 3937, + "multitile": true, + "additional_tiles": [ + { "id": "center", "fg": 3922 }, + { "id": "corner", "fg": [ 3924, 3926, 3925, 3923 ] }, + { "id": "t_connection", "fg": [ 3934, 3936, 3935, 3933 ] }, + { "id": "edge", "fg": [ 3928, 3927 ] }, + { "id": "end_piece", "fg": [ 3930, 3932, 3931, 3929 ] }, + { "id": "unconnected", "fg": [ 3937, 3937 ] } ] }, { "id": "t_grass", "multitile": true, - "fg": 3914, - "bg": 3809, + "fg": 3956, + "bg": 3835, "additional_tiles": [ { "id": "center", - "bg": 3809, + "bg": 3835, "fg": [ - { "weight": 1, "sprite": 3896 }, - { "weight": 1, "sprite": 3897 }, - { "weight": 1, "sprite": 3898 }, - { "weight": 1, "sprite": 3899 } + { "weight": 1, "sprite": 3938 }, + { "weight": 1, "sprite": 3939 }, + { "weight": 1, "sprite": 3940 }, + { "weight": 1, "sprite": 3941 } ] }, - { "id": "corner", "bg": 3809, "fg": [ 3901, 3903, 3902, 3900 ] }, - { "id": "t_connection", "bg": 3809, "fg": [ 3911, 3913, 3912, 3910 ] }, - { "id": "edge", "bg": 3809, "fg": [ 3905, 3904 ] }, - { "id": "end_piece", "bg": 3809, "fg": [ 3907, 3909, 3908, 3906 ] }, - { "bg": 3809, "id": "unconnected", "fg": 3914 } + { "id": "corner", "bg": 3835, "fg": [ 3943, 3945, 3944, 3942 ] }, + { "id": "t_connection", "bg": 3835, "fg": [ 3953, 3955, 3954, 3952 ] }, + { "id": "edge", "bg": 3835, "fg": [ 3947, 3946 ] }, + { "id": "end_piece", "bg": 3835, "fg": [ 3949, 3951, 3950, 3948 ] }, + { "bg": 3835, "id": "unconnected", "fg": 3956 } ] }, { "id": "t_grass_season_summer", "multitile": true, - "fg": 3952, - "bg": 3817, + "fg": 3994, + "bg": 3843, "additional_tiles": [ { "id": "center", - "bg": 3817, + "bg": 3843, "fg": [ - { "weight": 1, "sprite": 3934 }, - { "weight": 1, "sprite": 3935 }, - { "weight": 1, "sprite": 3936 }, - { "weight": 1, "sprite": 3937 } + { "weight": 1, "sprite": 3976 }, + { "weight": 1, "sprite": 3977 }, + { "weight": 1, "sprite": 3978 }, + { "weight": 1, "sprite": 3979 } ] }, - { "id": "corner", "bg": 3817, "fg": [ 3939, 3941, 3940, 3938 ] }, - { "id": "t_connection", "bg": 3817, "fg": [ 3949, 3951, 3950, 3948 ] }, - { "id": "edge", "bg": 3817, "fg": [ 3943, 3942 ] }, - { "id": "end_piece", "bg": 3817, "fg": [ 3945, 3947, 3946, 3944 ] }, - { "bg": 3817, "id": "unconnected", "fg": 3952 } + { "id": "corner", "bg": 3843, "fg": [ 3981, 3983, 3982, 3980 ] }, + { "id": "t_connection", "bg": 3843, "fg": [ 3991, 3993, 3992, 3990 ] }, + { "id": "edge", "bg": 3843, "fg": [ 3985, 3984 ] }, + { "id": "end_piece", "bg": 3843, "fg": [ 3987, 3989, 3988, 3986 ] }, + { "bg": 3843, "id": "unconnected", "fg": 3994 } ] }, { "id": "t_grass_season_autumn", "multitile": true, - "fg": 3933, - "bg": 3813, + "fg": 3975, + "bg": 3839, "additional_tiles": [ { "id": "center", - "bg": 3813, + "bg": 3839, "fg": [ - { "weight": 1, "sprite": 3915 }, - { "weight": 1, "sprite": 3916 }, - { "weight": 1, "sprite": 3917 }, - { "weight": 1, "sprite": 3918 } + { "weight": 1, "sprite": 3957 }, + { "weight": 1, "sprite": 3958 }, + { "weight": 1, "sprite": 3959 }, + { "weight": 1, "sprite": 3960 } ] }, - { "id": "corner", "bg": 3813, "fg": [ 3920, 3922, 3921, 3919 ] }, - { "id": "t_connection", "bg": 3813, "fg": [ 3930, 3932, 3931, 3929 ] }, - { "id": "edge", "bg": 3813, "fg": [ 3924, 3923 ] }, - { "id": "end_piece", "bg": 3813, "fg": [ 3926, 3928, 3927, 3925 ] }, - { "bg": 3813, "id": "unconnected", "fg": 3933 } + { "id": "corner", "bg": 3839, "fg": [ 3962, 3964, 3963, 3961 ] }, + { "id": "t_connection", "bg": 3839, "fg": [ 3972, 3974, 3973, 3971 ] }, + { "id": "edge", "bg": 3839, "fg": [ 3966, 3965 ] }, + { "id": "end_piece", "bg": 3839, "fg": [ 3968, 3970, 3969, 3967 ] }, + { "bg": 3839, "id": "unconnected", "fg": 3975 } ] }, { "id": "t_grass_season_winter", "multitile": true, - "fg": 3752, - "bg": 3821, + "fg": 3778, + "bg": 3847, "additional_tiles": [ { "id": "center", - "bg": 3821, + "bg": 3847, "fg": [ - { "weight": 1, "sprite": 3734 }, - { "weight": 1, "sprite": 3735 }, - { "weight": 1, "sprite": 3736 }, - { "weight": 1, "sprite": 3737 } + { "weight": 1, "sprite": 3760 }, + { "weight": 1, "sprite": 3761 }, + { "weight": 1, "sprite": 3762 }, + { "weight": 1, "sprite": 3763 } ] }, - { "id": "corner", "bg": 3821, "fg": [ 3739, 3741, 3740, 3738 ] }, - { "id": "t_connection", "bg": 3821, "fg": [ 3749, 3751, 3750, 3748 ] }, - { "id": "edge", "bg": 3821, "fg": [ 3743, 3742 ] }, - { "id": "end_piece", "bg": 3821, "fg": [ 3745, 3747, 3746, 3744 ] }, - { "bg": 3821, "id": "unconnected", "fg": 3752 } + { "id": "corner", "bg": 3847, "fg": [ 3765, 3767, 3766, 3764 ] }, + { "id": "t_connection", "bg": 3847, "fg": [ 3775, 3777, 3776, 3774 ] }, + { "id": "edge", "bg": 3847, "fg": [ 3769, 3768 ] }, + { "id": "end_piece", "bg": 3847, "fg": [ 3771, 3773, 3772, 3770 ] }, + { "bg": 3847, "id": "unconnected", "fg": 3778 } ] }, { "id": "t_grass_dead", "multitile": true, - "fg": 3968, - "bg": 3809, + "fg": 4010, + "bg": 3835, "additional_tiles": [ - { "id": "center", "bg": 3809, "fg": 3953 }, - { "id": "corner", "bg": 3809, "fg": [ 3955, 3957, 3956, 3954 ] }, - { "id": "t_connection", "bg": 3809, "fg": [ 3965, 3967, 3966, 3964 ] }, - { "id": "edge", "bg": 3809, "fg": [ 3959, 3958 ] }, - { "id": "end_piece", "bg": 3809, "fg": [ 3961, 3963, 3962, 3960 ] }, - { "bg": 3809, "id": "unconnected", "fg": 3968 } + { "id": "center", "bg": 3835, "fg": 3995 }, + { "id": "corner", "bg": 3835, "fg": [ 3997, 3999, 3998, 3996 ] }, + { "id": "t_connection", "bg": 3835, "fg": [ 4007, 4009, 4008, 4006 ] }, + { "id": "edge", "bg": 3835, "fg": [ 4001, 4000 ] }, + { "id": "end_piece", "bg": 3835, "fg": [ 4003, 4005, 4004, 4002 ] }, + { "bg": 3835, "id": "unconnected", "fg": 4010 } ] }, { "id": "t_grass_dead_season_summer", "multitile": true, - "fg": 4000, - "bg": 3817, + "fg": 4042, + "bg": 3843, "additional_tiles": [ - { "id": "center", "bg": 3817, "fg": 3985 }, - { "id": "corner", "bg": 3817, "fg": [ 3987, 3989, 3988, 3986 ] }, - { "id": "t_connection", "bg": 3817, "fg": [ 3997, 3999, 3998, 3996 ] }, - { "id": "edge", "bg": 3817, "fg": [ 3991, 3990 ] }, - { "id": "end_piece", "bg": 3817, "fg": [ 3993, 3995, 3994, 3992 ] }, - { "bg": 3817, "id": "unconnected", "fg": 4000 } + { "id": "center", "bg": 3843, "fg": 4027 }, + { "id": "corner", "bg": 3843, "fg": [ 4029, 4031, 4030, 4028 ] }, + { "id": "t_connection", "bg": 3843, "fg": [ 4039, 4041, 4040, 4038 ] }, + { "id": "edge", "bg": 3843, "fg": [ 4033, 4032 ] }, + { "id": "end_piece", "bg": 3843, "fg": [ 4035, 4037, 4036, 4034 ] }, + { "bg": 3843, "id": "unconnected", "fg": 4042 } ] }, { "id": "t_grass_dead_season_autumn", "multitile": true, - "fg": 3984, - "bg": 3813, + "fg": 4026, + "bg": 3839, "additional_tiles": [ - { "id": "center", "bg": 3813, "fg": 3969 }, - { "id": "corner", "bg": 3813, "fg": [ 3971, 3973, 3972, 3970 ] }, - { "id": "t_connection", "bg": 3813, "fg": [ 3981, 3983, 3982, 3980 ] }, - { "id": "edge", "bg": 3813, "fg": [ 3975, 3974 ] }, - { "id": "end_piece", "bg": 3813, "fg": [ 3977, 3979, 3978, 3976 ] }, - { "bg": 3813, "id": "unconnected", "fg": 3984 } + { "id": "center", "bg": 3839, "fg": 4011 }, + { "id": "corner", "bg": 3839, "fg": [ 4013, 4015, 4014, 4012 ] }, + { "id": "t_connection", "bg": 3839, "fg": [ 4023, 4025, 4024, 4022 ] }, + { "id": "edge", "bg": 3839, "fg": [ 4017, 4016 ] }, + { "id": "end_piece", "bg": 3839, "fg": [ 4019, 4021, 4020, 4018 ] }, + { "bg": 3839, "id": "unconnected", "fg": 4026 } ] }, { "id": "t_grass_dead_season_winter", "multitile": true, - "fg": 3752, - "bg": 3821, + "fg": 3778, + "bg": 3847, "additional_tiles": [ { "id": "center", - "bg": 3821, + "bg": 3847, "fg": [ - { "weight": 1, "sprite": 3734 }, - { "weight": 1, "sprite": 3735 }, - { "weight": 1, "sprite": 3736 }, - { "weight": 1, "sprite": 3737 } + { "weight": 1, "sprite": 3760 }, + { "weight": 1, "sprite": 3761 }, + { "weight": 1, "sprite": 3762 }, + { "weight": 1, "sprite": 3763 } ] }, - { "id": "corner", "bg": 3821, "fg": [ 3739, 3741, 3740, 3738 ] }, - { "id": "t_connection", "bg": 3821, "fg": [ 3749, 3751, 3750, 3748 ] }, - { "id": "edge", "bg": 3821, "fg": [ 3743, 3742 ] }, - { "id": "end_piece", "bg": 3821, "fg": [ 3745, 3747, 3746, 3744 ] }, - { "bg": 3821, "id": "unconnected", "fg": 3752 } + { "id": "corner", "bg": 3847, "fg": [ 3765, 3767, 3766, 3764 ] }, + { "id": "t_connection", "bg": 3847, "fg": [ 3775, 3777, 3776, 3774 ] }, + { "id": "edge", "bg": 3847, "fg": [ 3769, 3768 ] }, + { "id": "end_piece", "bg": 3847, "fg": [ 3771, 3773, 3772, 3770 ] }, + { "bg": 3847, "id": "unconnected", "fg": 3778 } ] }, { "id": "f_grass_long", "multitile": true, - "fg": 4016, + "fg": 4058, "additional_tiles": [ - { "id": "center", "fg": 4001 }, - { "id": "corner", "fg": [ 4003, 4005, 4004, 4002 ] }, - { "id": "t_connection", "fg": [ 4013, 4015, 4014, 4012 ] }, - { "id": "edge", "fg": [ 4007, 4006 ] }, - { "id": "end_piece", "fg": [ 4009, 4011, 4010, 4008 ] }, - { "id": "unconnected", "fg": 4016 } + { "id": "center", "fg": 4043 }, + { "id": "corner", "fg": [ 4045, 4047, 4046, 4044 ] }, + { "id": "t_connection", "fg": [ 4055, 4057, 4056, 4054 ] }, + { "id": "edge", "fg": [ 4049, 4048 ] }, + { "id": "end_piece", "fg": [ 4051, 4053, 4052, 4050 ] }, + { "id": "unconnected", "fg": 4058 } ] }, { "id": "f_grass_long_season_autumn", "multitile": true, - "fg": 4032, + "fg": 4074, "additional_tiles": [ - { "id": "center", "fg": 4017 }, - { "id": "corner", "fg": [ 4019, 4021, 4020, 4018 ] }, - { "id": "t_connection", "fg": [ 4029, 4031, 4030, 4028 ] }, - { "id": "edge", "fg": [ 4023, 4022 ] }, - { "id": "end_piece", "fg": [ 4025, 4027, 4026, 4024 ] }, - { "id": "unconnected", "fg": 4032 } + { "id": "center", "fg": 4059 }, + { "id": "corner", "fg": [ 4061, 4063, 4062, 4060 ] }, + { "id": "t_connection", "fg": [ 4071, 4073, 4072, 4070 ] }, + { "id": "edge", "fg": [ 4065, 4064 ] }, + { "id": "end_piece", "fg": [ 4067, 4069, 4068, 4066 ] }, + { "id": "unconnected", "fg": 4074 } ] }, { "id": "f_grass_long_season_summer", "multitile": true, - "fg": 4048, + "fg": 4090, "additional_tiles": [ - { "id": "center", "fg": 4033 }, - { "id": "corner", "fg": [ 4035, 4037, 4036, 4034 ] }, - { "id": "t_connection", "fg": [ 4045, 4047, 4046, 4044 ] }, - { "id": "edge", "fg": [ 4039, 4038 ] }, - { "id": "end_piece", "fg": [ 4041, 4043, 4042, 4040 ] }, - { "id": "unconnected", "fg": 4048 } + { "id": "center", "fg": 4075 }, + { "id": "corner", "fg": [ 4077, 4079, 4078, 4076 ] }, + { "id": "t_connection", "fg": [ 4087, 4089, 4088, 4086 ] }, + { "id": "edge", "fg": [ 4081, 4080 ] }, + { "id": "end_piece", "fg": [ 4083, 4085, 4084, 4082 ] }, + { "id": "unconnected", "fg": 4090 } ] }, { "id": "t_grass_long", "multitile": true, - "fg": 4016, - "bg": 3809, + "fg": 4058, + "bg": 3835, "additional_tiles": [ - { "id": "center", "bg": 3809, "fg": 4001 }, - { "id": "corner", "bg": 3809, "fg": [ 4003, 4005, 4004, 4002 ] }, - { "id": "t_connection", "bg": 3809, "fg": [ 4013, 4015, 4014, 4012 ] }, - { "id": "edge", "bg": 3809, "fg": [ 4007, 4006 ] }, - { "id": "end_piece", "bg": 3809, "fg": [ 4009, 4011, 4010, 4008 ] }, - { "bg": 3809, "id": "unconnected", "fg": 4016 } + { "id": "center", "bg": 3835, "fg": 4043 }, + { "id": "corner", "bg": 3835, "fg": [ 4045, 4047, 4046, 4044 ] }, + { "id": "t_connection", "bg": 3835, "fg": [ 4055, 4057, 4056, 4054 ] }, + { "id": "edge", "bg": 3835, "fg": [ 4049, 4048 ] }, + { "id": "end_piece", "bg": 3835, "fg": [ 4051, 4053, 4052, 4050 ] }, + { "bg": 3835, "id": "unconnected", "fg": 4058 } ] }, { "id": "t_grass_long_season_autumn", "multitile": true, - "fg": 4032, - "bg": 3813, + "fg": 4074, + "bg": 3839, "additional_tiles": [ - { "id": "center", "bg": 3813, "fg": 4017 }, - { "id": "corner", "bg": 3813, "fg": [ 4019, 4021, 4020, 4018 ] }, - { "id": "t_connection", "bg": 3813, "fg": [ 4029, 4031, 4030, 4028 ] }, - { "id": "edge", "bg": 3813, "fg": [ 4023, 4022 ] }, - { "id": "end_piece", "bg": 3813, "fg": [ 4025, 4027, 4026, 4024 ] }, - { "bg": 3813, "id": "unconnected", "fg": 4032 } + { "id": "center", "bg": 3839, "fg": 4059 }, + { "id": "corner", "bg": 3839, "fg": [ 4061, 4063, 4062, 4060 ] }, + { "id": "t_connection", "bg": 3839, "fg": [ 4071, 4073, 4072, 4070 ] }, + { "id": "edge", "bg": 3839, "fg": [ 4065, 4064 ] }, + { "id": "end_piece", "bg": 3839, "fg": [ 4067, 4069, 4068, 4066 ] }, + { "bg": 3839, "id": "unconnected", "fg": 4074 } ] }, { "id": "t_grass_long_season_summer", "multitile": true, - "fg": 4048, - "bg": 3817, + "fg": 4090, + "bg": 3843, "additional_tiles": [ - { "id": "center", "bg": 3817, "fg": 4033 }, - { "id": "corner", "bg": 3817, "fg": [ 4035, 4037, 4036, 4034 ] }, - { "id": "t_connection", "bg": 3817, "fg": [ 4045, 4047, 4046, 4044 ] }, - { "id": "edge", "bg": 3817, "fg": [ 4039, 4038 ] }, - { "id": "end_piece", "bg": 3817, "fg": [ 4041, 4043, 4042, 4040 ] }, - { "bg": 3817, "id": "unconnected", "fg": 4048 } + { "id": "center", "bg": 3843, "fg": 4075 }, + { "id": "corner", "bg": 3843, "fg": [ 4077, 4079, 4078, 4076 ] }, + { "id": "t_connection", "bg": 3843, "fg": [ 4087, 4089, 4088, 4086 ] }, + { "id": "edge", "bg": 3843, "fg": [ 4081, 4080 ] }, + { "id": "end_piece", "bg": 3843, "fg": [ 4083, 4085, 4084, 4082 ] }, + { "bg": 3843, "id": "unconnected", "fg": 4090 } ] }, - { "id": "t_grass_long_season_winter", "fg": 3733 }, + { "id": "t_grass_long_season_winter", "fg": 3759 }, { "id": "f_grass_tall", "multitile": true, - "fg": 4064, + "fg": 4106, "additional_tiles": [ - { "id": "center", "fg": 4049 }, - { "id": "corner", "fg": [ 4051, 4053, 4052, 4050 ] }, - { "id": "t_connection", "fg": [ 4061, 4063, 4062, 4060 ] }, - { "id": "edge", "fg": [ 4055, 4054 ] }, - { "id": "end_piece", "fg": [ 4057, 4059, 4058, 4056 ] }, - { "id": "unconnected", "fg": 4064 } + { "id": "center", "fg": 4091 }, + { "id": "corner", "fg": [ 4093, 4095, 4094, 4092 ] }, + { "id": "t_connection", "fg": [ 4103, 4105, 4104, 4102 ] }, + { "id": "edge", "fg": [ 4097, 4096 ] }, + { "id": "end_piece", "fg": [ 4099, 4101, 4100, 4098 ] }, + { "id": "unconnected", "fg": 4106 } ] }, { "id": "f_grass_tall_season_summer", "multitile": true, - "fg": 4096, + "fg": 4138, "additional_tiles": [ - { "id": "center", "fg": 4081 }, - { "id": "corner", "fg": [ 4083, 4085, 4084, 4082 ] }, - { "id": "t_connection", "fg": [ 4093, 4095, 4094, 4092 ] }, - { "id": "edge", "fg": [ 4087, 4086 ] }, - { "id": "end_piece", "fg": [ 4089, 4091, 4090, 4088 ] }, - { "id": "unconnected", "fg": 4096 } + { "id": "center", "fg": 4123 }, + { "id": "corner", "fg": [ 4125, 4127, 4126, 4124 ] }, + { "id": "t_connection", "fg": [ 4135, 4137, 4136, 4134 ] }, + { "id": "edge", "fg": [ 4129, 4128 ] }, + { "id": "end_piece", "fg": [ 4131, 4133, 4132, 4130 ] }, + { "id": "unconnected", "fg": 4138 } ] }, { "id": "f_grass_tall_season_autumn", "multitile": true, - "fg": 4080, + "fg": 4122, "additional_tiles": [ - { "id": "center", "fg": 4065 }, - { "id": "corner", "fg": [ 4067, 4069, 4068, 4066 ] }, - { "id": "t_connection", "fg": [ 4077, 4079, 4078, 4076 ] }, - { "id": "edge", "fg": [ 4071, 4070 ] }, - { "id": "end_piece", "fg": [ 4073, 4075, 4074, 4072 ] }, - { "id": "unconnected", "fg": 4080 } + { "id": "center", "fg": 4107 }, + { "id": "corner", "fg": [ 4109, 4111, 4110, 4108 ] }, + { "id": "t_connection", "fg": [ 4119, 4121, 4120, 4118 ] }, + { "id": "edge", "fg": [ 4113, 4112 ] }, + { "id": "end_piece", "fg": [ 4115, 4117, 4116, 4114 ] }, + { "id": "unconnected", "fg": 4122 } ] }, { "id": "t_grass_tall", "multitile": true, - "fg": 4064, - "bg": 3809, + "fg": 4106, + "bg": 3835, "additional_tiles": [ - { "id": "center", "bg": 3809, "fg": 4049 }, - { "id": "corner", "bg": 3809, "fg": [ 4051, 4053, 4052, 4050 ] }, - { "id": "t_connection", "bg": 3809, "fg": [ 4061, 4063, 4062, 4060 ] }, - { "id": "edge", "bg": 3809, "fg": [ 4055, 4054 ] }, - { "id": "end_piece", "bg": 3809, "fg": [ 4057, 4059, 4058, 4056 ] }, - { "bg": 3809, "id": "unconnected", "fg": 4064 } + { "id": "center", "bg": 3835, "fg": 4091 }, + { "id": "corner", "bg": 3835, "fg": [ 4093, 4095, 4094, 4092 ] }, + { "id": "t_connection", "bg": 3835, "fg": [ 4103, 4105, 4104, 4102 ] }, + { "id": "edge", "bg": 3835, "fg": [ 4097, 4096 ] }, + { "id": "end_piece", "bg": 3835, "fg": [ 4099, 4101, 4100, 4098 ] }, + { "bg": 3835, "id": "unconnected", "fg": 4106 } ] }, { "id": "t_grass_tall_season_summer", "multitile": true, - "fg": 4096, - "bg": 3817, + "fg": 4138, + "bg": 3843, "additional_tiles": [ - { "id": "center", "bg": 3817, "fg": 4081 }, - { "id": "corner", "bg": 3817, "fg": [ 4083, 4085, 4084, 4082 ] }, - { "id": "t_connection", "bg": 3817, "fg": [ 4093, 4095, 4094, 4092 ] }, - { "id": "edge", "bg": 3817, "fg": [ 4087, 4086 ] }, - { "id": "end_piece", "bg": 3817, "fg": [ 4089, 4091, 4090, 4088 ] }, - { "bg": 3817, "id": "unconnected", "fg": 4096 } + { "id": "center", "bg": 3843, "fg": 4123 }, + { "id": "corner", "bg": 3843, "fg": [ 4125, 4127, 4126, 4124 ] }, + { "id": "t_connection", "bg": 3843, "fg": [ 4135, 4137, 4136, 4134 ] }, + { "id": "edge", "bg": 3843, "fg": [ 4129, 4128 ] }, + { "id": "end_piece", "bg": 3843, "fg": [ 4131, 4133, 4132, 4130 ] }, + { "bg": 3843, "id": "unconnected", "fg": 4138 } ] }, { "id": "t_grass_tall_season_autumn", "multitile": true, - "fg": 4080, - "bg": 3813, + "fg": 4122, + "bg": 3839, "additional_tiles": [ - { "id": "center", "bg": 3813, "fg": 4065 }, - { "id": "corner", "bg": 3813, "fg": [ 4067, 4069, 4068, 4066 ] }, - { "id": "t_connection", "bg": 3813, "fg": [ 4077, 4079, 4078, 4076 ] }, - { "id": "edge", "bg": 3813, "fg": [ 4071, 4070 ] }, - { "id": "end_piece", "bg": 3813, "fg": [ 4073, 4075, 4074, 4072 ] }, - { "bg": 3813, "id": "unconnected", "fg": 4080 } + { "id": "center", "bg": 3839, "fg": 4107 }, + { "id": "corner", "bg": 3839, "fg": [ 4109, 4111, 4110, 4108 ] }, + { "id": "t_connection", "bg": 3839, "fg": [ 4119, 4121, 4120, 4118 ] }, + { "id": "edge", "bg": 3839, "fg": [ 4113, 4112 ] }, + { "id": "end_piece", "bg": 3839, "fg": [ 4115, 4117, 4116, 4114 ] }, + { "bg": 3839, "id": "unconnected", "fg": 4122 } ] }, - { "id": "t_grass_tall_season_winter", "fg": 3733 }, + { "id": "t_grass_tall_season_winter", "fg": 3759 }, { "id": "t_metal_railing", - "fg": 4104, + "fg": 4146, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4104, "bg": 3657 }, - { "id": "corner", "fg": [ 4098, 4100, 4099, 4097 ], "bg": 3657 }, - { "id": "t_connection", "fg": [ 4104, 4101, 4104, 4101 ], "bg": 3657 }, - { "id": "edge", "fg": [ 4101, 4104 ], "bg": 3657 }, - { "id": "end_piece", "fg": [ 4102, 4104, 4103, 4104 ], "bg": 3657 }, - { "id": "unconnected", "fg": [ 4104, 4104 ], "bg": 3657 } + { "id": "center", "fg": 4146, "bg": 3683 }, + { "id": "corner", "fg": [ 4140, 4142, 4141, 4139 ], "bg": 3683 }, + { "id": "t_connection", "fg": [ 4146, 4143, 4146, 4143 ], "bg": 3683 }, + { "id": "edge", "fg": [ 4143, 4146 ], "bg": 3683 }, + { "id": "end_piece", "fg": [ 4144, 4146, 4145, 4146 ], "bg": 3683 }, + { "id": "unconnected", "fg": [ 4146, 4146 ], "bg": 3683 } ] }, { "id": "t_paper", - "fg": 4121, + "fg": 4163, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4105 }, - { "id": "corner", "fg": [ 4107, 4109, 4108, 4106 ] }, - { "id": "t_connection", "fg": [ 4118, 4120, 4119, 4117 ] }, - { "id": "edge", "fg": [ 4111, 4110 ] }, - { "id": "end_piece", "fg": [ 4113, 4115, 4114, 4112 ] }, - { "id": "unconnected", "fg": [ 4121, 4121 ] } + { "id": "center", "fg": 4147 }, + { "id": "corner", "fg": [ 4149, 4151, 4150, 4148 ] }, + { "id": "t_connection", "fg": [ 4160, 4162, 4161, 4159 ] }, + { "id": "edge", "fg": [ 4153, 4152 ] }, + { "id": "end_piece", "fg": [ 4155, 4157, 4156, 4154 ] }, + { "id": "unconnected", "fg": [ 4163, 4163 ] } ] }, { "id": "t_pontoon", - "fg": 4137, + "fg": 4179, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4122 }, - { "id": "corner", "fg": [ 4124, 4126, 4125, 4123 ] }, - { "id": "t_connection", "fg": [ 4134, 4136, 4135, 4133 ] }, - { "id": "edge", "fg": [ 4128, 4127 ] }, - { "id": "end_piece", "fg": [ 4130, 4132, 4131, 4129 ] }, - { "id": "unconnected", "fg": [ 4137, 4137 ] } + { "id": "center", "fg": 4164 }, + { "id": "corner", "fg": [ 4166, 4168, 4167, 4165 ] }, + { "id": "t_connection", "fg": [ 4176, 4178, 4177, 4175 ] }, + { "id": "edge", "fg": [ 4170, 4169 ] }, + { "id": "end_piece", "fg": [ 4172, 4174, 4173, 4171 ] }, + { "id": "unconnected", "fg": [ 4179, 4179 ] } ] }, - { "id": [ "t_ramp_up_high", "t_ramp_up_low" ], "fg": 4139 }, - { "id": [ "t_ramp_down_high", "t_ramp_down_low" ], "fg": 4138 }, - { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_up_high" ], "fg": 4141 }, - { "id": [ "t_sidewalk_ramp_down_low", "t_sidewalk_ramp_down_high" ], "fg": 4140 }, + { "id": [ "t_ramp_up_high", "t_ramp_up_low" ], "fg": 4181 }, + { "id": [ "t_ramp_down_high", "t_ramp_down_low" ], "fg": 4180 }, + { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_up_high" ], "fg": 4183 }, + { "id": [ "t_sidewalk_ramp_down_low", "t_sidewalk_ramp_down_high" ], "fg": 4182 }, { "id": "t_reinforced_glass", - "fg": 4157, + "fg": 4199, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4142 }, - { "id": "corner", "fg": [ 4144, 4146, 4145, 4143 ] }, - { "id": "t_connection", "fg": [ 4154, 4156, 4155, 4153 ] }, - { "id": "edge", "fg": [ 4148, 4147 ] }, - { "id": "end_piece", "fg": [ 4150, 4152, 4151, 4149 ] }, - { "id": "unconnected", "fg": [ 4157, 4157 ] } + { "id": "center", "fg": 4184 }, + { "id": "corner", "fg": [ 4186, 4188, 4187, 4185 ] }, + { "id": "t_connection", "fg": [ 4196, 4198, 4197, 4195 ] }, + { "id": "edge", "fg": [ 4190, 4189 ] }, + { "id": "end_piece", "fg": [ 4192, 4194, 4193, 4191 ] }, + { "id": "unconnected", "fg": [ 4199, 4199 ] } ] }, { "id": "t_rock", - "fg": 4173, + "fg": 4215, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4158 }, - { "id": "corner", "fg": [ 4160, 4162, 4161, 4159 ] }, - { "id": "t_connection", "fg": [ 4170, 4172, 4171, 4169 ] }, - { "id": "edge", "fg": [ 4164, 4163 ] }, - { "id": "end_piece", "fg": [ 4166, 4168, 4167, 4165 ] }, - { "id": "unconnected", "fg": [ 4173, 4173 ] } + { "id": "center", "fg": 4200 }, + { "id": "corner", "fg": [ 4202, 4204, 4203, 4201 ] }, + { "id": "t_connection", "fg": [ 4212, 4214, 4213, 4211 ] }, + { "id": "edge", "fg": [ 4206, 4205 ] }, + { "id": "end_piece", "fg": [ 4208, 4210, 4209, 4207 ] }, + { "id": "unconnected", "fg": [ 4215, 4215 ] } ] }, { "id": "t_rock_blue", - "fg": 4189, + "fg": 4231, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4174 }, - { "id": "corner", "fg": [ 4176, 4178, 4177, 4175 ] }, - { "id": "t_connection", "fg": [ 4186, 4188, 4187, 4185 ] }, - { "id": "edge", "fg": [ 4180, 4179 ] }, - { "id": "end_piece", "fg": [ 4182, 4184, 4183, 4181 ] }, - { "id": "unconnected", "fg": [ 4189, 4189 ] } + { "id": "center", "fg": 4216 }, + { "id": "corner", "fg": [ 4218, 4220, 4219, 4217 ] }, + { "id": "t_connection", "fg": [ 4228, 4230, 4229, 4227 ] }, + { "id": "edge", "fg": [ 4222, 4221 ] }, + { "id": "end_piece", "fg": [ 4224, 4226, 4225, 4223 ] }, + { "id": "unconnected", "fg": [ 4231, 4231 ] } ] }, { "id": "t_rock_green", - "fg": 4205, + "fg": 4247, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4190 }, - { "id": "corner", "fg": [ 4192, 4194, 4193, 4191 ] }, - { "id": "t_connection", "fg": [ 4202, 4204, 4203, 4201 ] }, - { "id": "edge", "fg": [ 4196, 4195 ] }, - { "id": "end_piece", "fg": [ 4198, 4200, 4199, 4197 ] }, - { "id": "unconnected", "fg": [ 4205, 4205 ] } + { "id": "center", "fg": 4232 }, + { "id": "corner", "fg": [ 4234, 4236, 4235, 4233 ] }, + { "id": "t_connection", "fg": [ 4244, 4246, 4245, 4243 ] }, + { "id": "edge", "fg": [ 4238, 4237 ] }, + { "id": "end_piece", "fg": [ 4240, 4242, 4241, 4239 ] }, + { "id": "unconnected", "fg": [ 4247, 4247 ] } ] }, { "id": "t_rock_red", - "fg": 4221, + "fg": 4263, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4206 }, - { "id": "corner", "fg": [ 4208, 4210, 4209, 4207 ] }, - { "id": "t_connection", "fg": [ 4218, 4220, 4219, 4217 ] }, - { "id": "edge", "fg": [ 4212, 4211 ] }, - { "id": "end_piece", "fg": [ 4214, 4216, 4215, 4213 ] }, - { "id": "unconnected", "fg": [ 4221, 4221 ] } + { "id": "center", "fg": 4248 }, + { "id": "corner", "fg": [ 4250, 4252, 4251, 4249 ] }, + { "id": "t_connection", "fg": [ 4260, 4262, 4261, 4259 ] }, + { "id": "edge", "fg": [ 4254, 4253 ] }, + { "id": "end_piece", "fg": [ 4256, 4258, 4257, 4255 ] }, + { "id": "unconnected", "fg": [ 4263, 4263 ] } ] }, { "id": "t_rock_smooth", - "fg": 4237, + "fg": 4279, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4222 }, - { "id": "corner", "fg": [ 4224, 4226, 4225, 4223 ] }, - { "id": "t_connection", "fg": [ 4234, 4236, 4235, 4233 ] }, - { "id": "edge", "fg": [ 4228, 4227 ] }, - { "id": "end_piece", "fg": [ 4230, 4232, 4231, 4229 ] }, - { "id": "unconnected", "fg": [ 4237, 4237 ] } + { "id": "center", "fg": 4264 }, + { "id": "corner", "fg": [ 4266, 4268, 4267, 4265 ] }, + { "id": "t_connection", "fg": [ 4276, 4278, 4277, 4275 ] }, + { "id": "edge", "fg": [ 4270, 4269 ] }, + { "id": "end_piece", "fg": [ 4272, 4274, 4273, 4271 ] }, + { "id": "unconnected", "fg": [ 4279, 4279 ] } ] }, { "id": "t_rock_wall", - "fg": 4253, + "fg": 4295, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4238 }, - { "id": "corner", "fg": [ 4240, 4242, 4241, 4239 ] }, - { "id": "t_connection", "fg": [ 4250, 4252, 4251, 4249 ] }, - { "id": "edge", "fg": [ 4244, 4243 ] }, - { "id": "end_piece", "fg": [ 4246, 4248, 4247, 4245 ] }, - { "id": "unconnected", "fg": [ 4253, 4253 ] } + { "id": "center", "fg": 4280 }, + { "id": "corner", "fg": [ 4282, 4284, 4283, 4281 ] }, + { "id": "t_connection", "fg": [ 4292, 4294, 4293, 4291 ] }, + { "id": "edge", "fg": [ 4286, 4285 ] }, + { "id": "end_piece", "fg": [ 4288, 4290, 4289, 4287 ] }, + { "id": "unconnected", "fg": [ 4295, 4295 ] } ] }, { "id": "t_sand", - "fg": 4269, + "fg": 4311, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4254 }, - { "id": "corner", "fg": [ 4256, 4258, 4257, 4255 ] }, - { "id": "t_connection", "fg": [ 4266, 4268, 4267, 4265 ] }, - { "id": "edge", "fg": [ 4260, 4259 ] }, - { "id": "end_piece", "fg": [ 4262, 4264, 4263, 4261 ] }, - { "id": "unconnected", "fg": [ 4269, 4269 ] } + { "id": "center", "fg": 4296 }, + { "id": "corner", "fg": [ 4298, 4300, 4299, 4297 ] }, + { "id": "t_connection", "fg": [ 4308, 4310, 4309, 4307 ] }, + { "id": "edge", "fg": [ 4302, 4301 ] }, + { "id": "end_piece", "fg": [ 4304, 4306, 4305, 4303 ] }, + { "id": "unconnected", "fg": [ 4311, 4311 ] } ] }, { "id": "t_sandbox", - "fg": 4285, + "fg": 4327, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4270 }, - { "id": "corner", "fg": [ 4272, 4274, 4273, 4271 ] }, - { "id": "t_connection", "fg": [ 4282, 4284, 4283, 4281 ] }, - { "id": "edge", "fg": [ 4276, 4275 ] }, - { "id": "end_piece", "fg": [ 4278, 4280, 4279, 4277 ] }, - { "id": "unconnected", "fg": [ 4285, 4285 ] } + { "id": "center", "fg": 4312 }, + { "id": "corner", "fg": [ 4314, 4316, 4315, 4313 ] }, + { "id": "t_connection", "fg": [ 4324, 4326, 4325, 4323 ] }, + { "id": "edge", "fg": [ 4318, 4317 ] }, + { "id": "end_piece", "fg": [ 4320, 4322, 4321, 4319 ] }, + { "id": "unconnected", "fg": [ 4327, 4327 ] } ] }, { "id": "t_scrap_wall", - "fg": 4301, + "fg": 4343, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4286 }, - { "id": "corner", "fg": [ 4288, 4290, 4289, 4287 ] }, - { "id": "t_connection", "fg": [ 4298, 4300, 4299, 4297 ] }, - { "id": "edge", "fg": [ 4292, 4291 ] }, - { "id": "end_piece", "fg": [ 4294, 4296, 4295, 4293 ] }, - { "id": "unconnected", "fg": [ 4301, 4301 ] } + { "id": "center", "fg": 4328 }, + { "id": "corner", "fg": [ 4330, 4332, 4331, 4329 ] }, + { "id": "t_connection", "fg": [ 4340, 4342, 4341, 4339 ] }, + { "id": "edge", "fg": [ 4334, 4333 ] }, + { "id": "end_piece", "fg": [ 4336, 4338, 4337, 4335 ] }, + { "id": "unconnected", "fg": [ 4343, 4343 ] } ] }, { "id": "t_screened_porch_wall", - "fg": 4319, + "fg": 4361, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4304 }, - { "id": "corner", "fg": [ 4306, 4308, 4307, 4305 ] }, - { "id": "t_connection", "fg": [ 4316, 4318, 4317, 4315 ] }, - { "id": "edge", "fg": [ 4310, 4309 ] }, - { "id": "end_piece", "fg": [ 4312, 4314, 4313, 4311 ] }, - { "id": "unconnected", "fg": [ 4319, 4319 ] } + { "id": "center", "fg": 4346 }, + { "id": "corner", "fg": [ 4348, 4350, 4349, 4347 ] }, + { "id": "t_connection", "fg": [ 4358, 4360, 4359, 4357 ] }, + { "id": "edge", "fg": [ 4352, 4351 ] }, + { "id": "end_piece", "fg": [ 4354, 4356, 4355, 4353 ] }, + { "id": "unconnected", "fg": [ 4361, 4361 ] } ] }, { "id": "t_soil", - "fg": 4342, + "fg": 4384, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4320 }, + { "id": "center", "fg": 4362 }, { "id": "corner", "fg": [ - { "weight": 2, "sprite": [ 4322, 4325, 4323, 4321 ] }, - { "weight": 1, "sprite": [ 4322, 4326, 4323, 4321 ] }, - { "weight": 1, "sprite": [ 4322, 4325, 4324, 4321 ] } + { "weight": 2, "sprite": [ 4364, 4367, 4365, 4363 ] }, + { "weight": 1, "sprite": [ 4364, 4368, 4365, 4363 ] }, + { "weight": 1, "sprite": [ 4364, 4367, 4366, 4363 ] } ] }, { "id": "t_connection", - "fg": [ { "weight": 2, "sprite": [ 4338, 4341, 4339, 4337 ] }, { "weight": 1, "sprite": [ 4338, 4341, 4340, 4337 ] } ] + "fg": [ { "weight": 2, "sprite": [ 4380, 4383, 4381, 4379 ] }, { "weight": 1, "sprite": [ 4380, 4383, 4382, 4379 ] } ] }, { "id": "edge", - "fg": [ { "weight": 2, "sprite": [ 4329, 4327 ] }, { "weight": 1, "sprite": [ 4329, 4328 ] } ] + "fg": [ { "weight": 2, "sprite": [ 4371, 4369 ] }, { "weight": 1, "sprite": [ 4371, 4370 ] } ] }, { "id": "end_piece", "fg": [ - { "weight": 2, "sprite": [ 4332, 4335, 4333, 4330 ] }, - { "weight": 1, "sprite": [ 4332, 4336, 4333, 4330 ] }, - { "weight": 1, "sprite": [ 4332, 4335, 4334, 4330 ] }, - { "weight": 1, "sprite": [ 4332, 4335, 4333, 4331 ] } + { "weight": 2, "sprite": [ 4374, 4377, 4375, 4372 ] }, + { "weight": 1, "sprite": [ 4374, 4378, 4375, 4372 ] }, + { "weight": 1, "sprite": [ 4374, 4377, 4376, 4372 ] }, + { "weight": 1, "sprite": [ 4374, 4377, 4375, 4373 ] } ] }, - { "id": "unconnected", "fg": [ 4342, 4342 ] } + { "id": "unconnected", "fg": [ 4384, 4384 ] } ] }, { "id": "t_strconc_wall", - "fg": 4358, + "fg": 4400, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4343 }, - { "id": "corner", "fg": [ 4345, 4347, 4346, 4344 ] }, - { "id": "t_connection", "fg": [ 4355, 4357, 4356, 4354 ] }, - { "id": "edge", "fg": [ 4349, 4348 ] }, - { "id": "end_piece", "fg": [ 4351, 4353, 4352, 4350 ] }, - { "id": "unconnected", "fg": [ 4358, 4358 ] } + { "id": "center", "fg": 4385 }, + { "id": "corner", "fg": [ 4387, 4389, 4388, 4386 ] }, + { "id": "t_connection", "fg": [ 4397, 4399, 4398, 4396 ] }, + { "id": "edge", "fg": [ 4391, 4390 ] }, + { "id": "end_piece", "fg": [ 4393, 4395, 4394, 4392 ] }, + { "id": "unconnected", "fg": [ 4400, 4400 ] } ] }, { "id": "t_thatch_roof", - "fg": 4374, + "fg": 4416, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4359 }, - { "id": "corner", "fg": [ 4361, 4363, 4362, 4360 ] }, - { "id": "t_connection", "fg": [ 4371, 4373, 4372, 4370 ] }, - { "id": "edge", "fg": [ 4365, 4364 ] }, - { "id": "end_piece", "fg": [ 4367, 4369, 4368, 4366 ] }, - { "id": "unconnected", "fg": [ 4374, 4374 ] } + { "id": "center", "fg": 4401 }, + { "id": "corner", "fg": [ 4403, 4405, 4404, 4402 ] }, + { "id": "t_connection", "fg": [ 4413, 4415, 4414, 4412 ] }, + { "id": "edge", "fg": [ 4407, 4406 ] }, + { "id": "end_piece", "fg": [ 4409, 4411, 4410, 4408 ] }, + { "id": "unconnected", "fg": [ 4416, 4416 ] } ] }, { "id": "t_wall", - "fg": 4390, + "fg": 4432, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4375 }, - { "id": "corner", "fg": [ 4377, 4379, 4378, 4376 ] }, - { "id": "t_connection", "fg": [ 4387, 4389, 4388, 4386 ] }, - { "id": "edge", "fg": [ 4381, 4380 ] }, - { "id": "end_piece", "fg": [ 4383, 4385, 4384, 4382 ] }, - { "id": "unconnected", "fg": [ 4390, 4390 ] } + { "id": "center", "fg": 4417 }, + { "id": "corner", "fg": [ 4419, 4421, 4420, 4418 ] }, + { "id": "t_connection", "fg": [ 4429, 4431, 4430, 4428 ] }, + { "id": "edge", "fg": [ 4423, 4422 ] }, + { "id": "end_piece", "fg": [ 4425, 4427, 4426, 4424 ] }, + { "id": "unconnected", "fg": [ 4432, 4432 ] } ] }, { "id": "t_wall_P", - "fg": 4406, + "fg": 4448, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4391 }, - { "id": "corner", "fg": [ 4393, 4395, 4394, 4392 ] }, - { "id": "t_connection", "fg": [ 4403, 4405, 4404, 4402 ] }, - { "id": "edge", "fg": [ 4397, 4396 ] }, - { "id": "end_piece", "fg": [ 4399, 4401, 4400, 4398 ] }, - { "id": "unconnected", "fg": [ 4406, 4406 ] } + { "id": "center", "fg": 4433 }, + { "id": "corner", "fg": [ 4435, 4437, 4436, 4434 ] }, + { "id": "t_connection", "fg": [ 4445, 4447, 4446, 4444 ] }, + { "id": "edge", "fg": [ 4439, 4438 ] }, + { "id": "end_piece", "fg": [ 4441, 4443, 4442, 4440 ] }, + { "id": "unconnected", "fg": [ 4448, 4448 ] } ] }, { "id": "t_wall_b", - "fg": 4422, + "fg": 4464, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4407 }, - { "id": "corner", "fg": [ 4409, 4411, 4410, 4408 ] }, - { "id": "t_connection", "fg": [ 4419, 4421, 4420, 4418 ] }, - { "id": "edge", "fg": [ 4413, 4412 ] }, - { "id": "end_piece", "fg": [ 4415, 4417, 4416, 4414 ] }, - { "id": "unconnected", "fg": [ 4422, 4422 ] } + { "id": "center", "fg": 4449 }, + { "id": "corner", "fg": [ 4451, 4453, 4452, 4450 ] }, + { "id": "t_connection", "fg": [ 4461, 4463, 4462, 4460 ] }, + { "id": "edge", "fg": [ 4455, 4454 ] }, + { "id": "end_piece", "fg": [ 4457, 4459, 4458, 4456 ] }, + { "id": "unconnected", "fg": [ 4464, 4464 ] } ] }, { "id": "t_wall_g", - "fg": 4438, + "fg": 4480, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4423 }, - { "id": "corner", "fg": [ 4425, 4427, 4426, 4424 ] }, - { "id": "t_connection", "fg": [ 4435, 4437, 4436, 4434 ] }, - { "id": "edge", "fg": [ 4429, 4428 ] }, - { "id": "end_piece", "fg": [ 4431, 4433, 4432, 4430 ] }, - { "id": "unconnected", "fg": [ 4438, 4438 ] } + { "id": "center", "fg": 4465 }, + { "id": "corner", "fg": [ 4467, 4469, 4468, 4466 ] }, + { "id": "t_connection", "fg": [ 4477, 4479, 4478, 4476 ] }, + { "id": "edge", "fg": [ 4471, 4470 ] }, + { "id": "end_piece", "fg": [ 4473, 4475, 4474, 4472 ] }, + { "id": "unconnected", "fg": [ 4480, 4480 ] } ] }, { "id": "t_wall_p", - "fg": 4454, + "fg": 4496, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4439 }, - { "id": "corner", "fg": [ 4441, 4443, 4442, 4440 ] }, - { "id": "t_connection", "fg": [ 4451, 4453, 4452, 4450 ] }, - { "id": "edge", "fg": [ 4445, 4444 ] }, - { "id": "end_piece", "fg": [ 4447, 4449, 4448, 4446 ] }, - { "id": "unconnected", "fg": [ 4454, 4454 ] } + { "id": "center", "fg": 4481 }, + { "id": "corner", "fg": [ 4483, 4485, 4484, 4482 ] }, + { "id": "t_connection", "fg": [ 4493, 4495, 4494, 4492 ] }, + { "id": "edge", "fg": [ 4487, 4486 ] }, + { "id": "end_piece", "fg": [ 4489, 4491, 4490, 4488 ] }, + { "id": "unconnected", "fg": [ 4496, 4496 ] } ] }, { "id": "t_wall_r", - "fg": 4470, + "fg": 4512, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4455 }, - { "id": "corner", "fg": [ 4457, 4459, 4458, 4456 ] }, - { "id": "t_connection", "fg": [ 4467, 4469, 4468, 4466 ] }, - { "id": "edge", "fg": [ 4461, 4460 ] }, - { "id": "end_piece", "fg": [ 4463, 4465, 4464, 4462 ] }, - { "id": "unconnected", "fg": [ 4470, 4470 ] } + { "id": "center", "fg": 4497 }, + { "id": "corner", "fg": [ 4499, 4501, 4500, 4498 ] }, + { "id": "t_connection", "fg": [ 4509, 4511, 4510, 4508 ] }, + { "id": "edge", "fg": [ 4503, 4502 ] }, + { "id": "end_piece", "fg": [ 4505, 4507, 4506, 4504 ] }, + { "id": "unconnected", "fg": [ 4512, 4512 ] } ] }, { "id": "t_wall_w", - "fg": 4486, + "fg": 4528, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4471 }, - { "id": "corner", "fg": [ 4473, 4475, 4474, 4472 ] }, - { "id": "t_connection", "fg": [ 4483, 4485, 4484, 4482 ] }, - { "id": "edge", "fg": [ 4477, 4476 ] }, - { "id": "end_piece", "fg": [ 4479, 4481, 4480, 4478 ] }, - { "id": "unconnected", "fg": [ 4486, 4486 ] } + { "id": "center", "fg": 4513 }, + { "id": "corner", "fg": [ 4515, 4517, 4516, 4514 ] }, + { "id": "t_connection", "fg": [ 4525, 4527, 4526, 4524 ] }, + { "id": "edge", "fg": [ 4519, 4518 ] }, + { "id": "end_piece", "fg": [ 4521, 4523, 4522, 4520 ] }, + { "id": "unconnected", "fg": [ 4528, 4528 ] } ] }, { "id": "t_wall_y", - "fg": 4502, + "fg": 4544, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4487 }, - { "id": "corner", "fg": [ 4489, 4491, 4490, 4488 ] }, - { "id": "t_connection", "fg": [ 4499, 4501, 4500, 4498 ] }, - { "id": "edge", "fg": [ 4493, 4492 ] }, - { "id": "end_piece", "fg": [ 4495, 4497, 4496, 4494 ] }, - { "id": "unconnected", "fg": [ 4502, 4502 ] } + { "id": "center", "fg": 4529 }, + { "id": "corner", "fg": [ 4531, 4533, 4532, 4530 ] }, + { "id": "t_connection", "fg": [ 4541, 4543, 4542, 4540 ] }, + { "id": "edge", "fg": [ 4535, 4534 ] }, + { "id": "end_piece", "fg": [ 4537, 4539, 4538, 4536 ] }, + { "id": "unconnected", "fg": [ 4544, 4544 ] } ] }, { "id": "t_wall_glass", - "fg": 4518, + "fg": 4560, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4503 }, - { "id": "corner", "fg": [ 4505, 4507, 4506, 4504 ] }, - { "id": "t_connection", "fg": [ 4515, 4517, 4516, 4514 ] }, - { "id": "edge", "fg": [ 4509, 4508 ] }, - { "id": "end_piece", "fg": [ 4511, 4513, 4512, 4510 ] }, - { "id": "unconnected", "fg": [ 4518, 4518 ] } + { "id": "center", "fg": 4545 }, + { "id": "corner", "fg": [ 4547, 4549, 4548, 4546 ] }, + { "id": "t_connection", "fg": [ 4557, 4559, 4558, 4556 ] }, + { "id": "edge", "fg": [ 4551, 4550 ] }, + { "id": "end_piece", "fg": [ 4553, 4555, 4554, 4552 ] }, + { "id": "unconnected", "fg": [ 4560, 4560 ] } ] }, { "id": "t_wall_log", - "fg": 4534, + "fg": 4576, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4519 }, - { "id": "corner", "fg": [ 4521, 4523, 4522, 4520 ] }, - { "id": "t_connection", "fg": [ 4531, 4533, 4532, 4530 ] }, - { "id": "edge", "fg": [ 4525, 4524 ] }, - { "id": "end_piece", "fg": [ 4527, 4529, 4528, 4526 ] }, - { "id": "unconnected", "fg": [ 4534, 4534 ] } + { "id": "center", "fg": 4561 }, + { "id": "corner", "fg": [ 4563, 4565, 4564, 4562 ] }, + { "id": "t_connection", "fg": [ 4573, 4575, 4574, 4572 ] }, + { "id": "edge", "fg": [ 4567, 4566 ] }, + { "id": "end_piece", "fg": [ 4569, 4571, 4570, 4568 ] }, + { "id": "unconnected", "fg": [ 4576, 4576 ] } ] }, { "id": "t_wall_log_broken", - "fg": 4550, + "fg": 4592, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4535 }, - { "id": "corner", "fg": [ 4537, 4539, 4538, 4536 ] }, - { "id": "t_connection", "fg": [ 4547, 4549, 4548, 4546 ] }, - { "id": "edge", "fg": [ 4541, 4540 ] }, - { "id": "end_piece", "fg": [ 4543, 4545, 4544, 4542 ] }, - { "id": "unconnected", "fg": [ 4550, 4550 ] } + { "id": "center", "fg": 4577 }, + { "id": "corner", "fg": [ 4579, 4581, 4580, 4578 ] }, + { "id": "t_connection", "fg": [ 4589, 4591, 4590, 4588 ] }, + { "id": "edge", "fg": [ 4583, 4582 ] }, + { "id": "end_piece", "fg": [ 4585, 4587, 4586, 4584 ] }, + { "id": "unconnected", "fg": [ 4592, 4592 ] } ] }, { "id": "t_wall_log_chipped", - "fg": 4566, + "fg": 4608, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4551 }, - { "id": "corner", "fg": [ 4553, 4555, 4554, 4552 ] }, - { "id": "t_connection", "fg": [ 4563, 4565, 4564, 4562 ] }, - { "id": "edge", "fg": [ 4557, 4556 ] }, - { "id": "end_piece", "fg": [ 4559, 4561, 4560, 4558 ] }, - { "id": "unconnected", "fg": [ 4566, 4566 ] } + { "id": "center", "fg": 4593 }, + { "id": "corner", "fg": [ 4595, 4597, 4596, 4594 ] }, + { "id": "t_connection", "fg": [ 4605, 4607, 4606, 4604 ] }, + { "id": "edge", "fg": [ 4599, 4598 ] }, + { "id": "end_piece", "fg": [ 4601, 4603, 4602, 4600 ] }, + { "id": "unconnected", "fg": [ 4608, 4608 ] } ] }, { "id": "t_wall_metal", - "fg": 4582, + "fg": 4624, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4567 }, - { "id": "corner", "fg": [ 4569, 4571, 4570, 4568 ] }, - { "id": "t_connection", "fg": [ 4579, 4581, 4580, 4578 ] }, - { "id": "edge", "fg": [ 4573, 4572 ] }, - { "id": "end_piece", "fg": [ 4575, 4577, 4576, 4574 ] }, - { "id": "unconnected", "fg": [ 4582, 4582 ] } + { "id": "center", "fg": 4609 }, + { "id": "corner", "fg": [ 4611, 4613, 4612, 4610 ] }, + { "id": "t_connection", "fg": [ 4621, 4623, 4622, 4620 ] }, + { "id": "edge", "fg": [ 4615, 4614 ] }, + { "id": "end_piece", "fg": [ 4617, 4619, 4618, 4616 ] }, + { "id": "unconnected", "fg": [ 4624, 4624 ] } ] }, { "id": "t_wall_rammed_earth_autumn", - "fg": 4598, + "fg": 4640, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4583 }, - { "id": "corner", "fg": [ 4585, 4587, 4586, 4584 ] }, - { "id": "t_connection", "fg": [ 4595, 4597, 4596, 4594 ] }, - { "id": "edge", "fg": [ 4589, 4588 ] }, - { "id": "end_piece", "fg": [ 4591, 4593, 4592, 4590 ] }, - { "id": "unconnected", "fg": [ 4598, 4598 ] } + { "id": "center", "fg": 4625 }, + { "id": "corner", "fg": [ 4627, 4629, 4628, 4626 ] }, + { "id": "t_connection", "fg": [ 4637, 4639, 4638, 4636 ] }, + { "id": "edge", "fg": [ 4631, 4630 ] }, + { "id": "end_piece", "fg": [ 4633, 4635, 4634, 4632 ] }, + { "id": "unconnected", "fg": [ 4640, 4640 ] } ] }, { "id": "t_wall_rammed_earth", - "fg": 4614, + "fg": 4656, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4599 }, - { "id": "corner", "fg": [ 4601, 4603, 4602, 4600 ] }, - { "id": "t_connection", "fg": [ 4611, 4613, 4612, 4610 ] }, - { "id": "edge", "fg": [ 4605, 4604 ] }, - { "id": "end_piece", "fg": [ 4607, 4609, 4608, 4606 ] }, - { "id": "unconnected", "fg": [ 4614, 4614 ] } + { "id": "center", "fg": 4641 }, + { "id": "corner", "fg": [ 4643, 4645, 4644, 4642 ] }, + { "id": "t_connection", "fg": [ 4653, 4655, 4654, 4652 ] }, + { "id": "edge", "fg": [ 4647, 4646 ] }, + { "id": "end_piece", "fg": [ 4649, 4651, 4650, 4648 ] }, + { "id": "unconnected", "fg": [ 4656, 4656 ] } ] }, { "id": "t_wall_rammed_earth_summer", - "fg": 4630, + "fg": 4672, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4615 }, - { "id": "corner", "fg": [ 4617, 4619, 4618, 4616 ] }, - { "id": "t_connection", "fg": [ 4627, 4629, 4628, 4626 ] }, - { "id": "edge", "fg": [ 4621, 4620 ] }, - { "id": "end_piece", "fg": [ 4623, 4625, 4624, 4622 ] }, - { "id": "unconnected", "fg": [ 4630, 4630 ] } + { "id": "center", "fg": 4657 }, + { "id": "corner", "fg": [ 4659, 4661, 4660, 4658 ] }, + { "id": "t_connection", "fg": [ 4669, 4671, 4670, 4668 ] }, + { "id": "edge", "fg": [ 4663, 4662 ] }, + { "id": "end_piece", "fg": [ 4665, 4667, 4666, 4664 ] }, + { "id": "unconnected", "fg": [ 4672, 4672 ] } ] }, { "id": "t_wall_rammed_earth_winter", - "fg": 4646, + "fg": 4688, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4631 }, - { "id": "corner", "fg": [ 4633, 4635, 4634, 4632 ] }, - { "id": "t_connection", "fg": [ 4643, 4645, 4644, 4642 ] }, - { "id": "edge", "fg": [ 4637, 4636 ] }, - { "id": "end_piece", "fg": [ 4639, 4641, 4640, 4638 ] }, - { "id": "unconnected", "fg": [ 4646, 4646 ] } + { "id": "center", "fg": 4673 }, + { "id": "corner", "fg": [ 4675, 4677, 4676, 4674 ] }, + { "id": "t_connection", "fg": [ 4685, 4687, 4686, 4684 ] }, + { "id": "edge", "fg": [ 4679, 4678 ] }, + { "id": "end_piece", "fg": [ 4681, 4683, 4682, 4680 ] }, + { "id": "unconnected", "fg": [ 4688, 4688 ] } ] }, { "id": "t_wall_resin_cage", - "fg": 4662, + "fg": 4704, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4647 }, - { "id": "corner", "fg": [ 4649, 4651, 4650, 4648 ] }, - { "id": "t_connection", "fg": [ 4659, 4661, 4660, 4658 ] }, - { "id": "edge", "fg": [ 4653, 4652 ] }, - { "id": "end_piece", "fg": [ 4655, 4657, 4656, 4654 ] }, - { "id": "unconnected", "fg": [ 4662, 4662 ] } + { "id": "center", "fg": 4689 }, + { "id": "corner", "fg": [ 4691, 4693, 4692, 4690 ] }, + { "id": "t_connection", "fg": [ 4701, 4703, 4702, 4700 ] }, + { "id": "edge", "fg": [ 4695, 4694 ] }, + { "id": "end_piece", "fg": [ 4697, 4699, 4698, 4696 ] }, + { "id": "unconnected", "fg": [ 4704, 4704 ] } ] }, { "id": "t_wall_wood", - "fg": 4678, + "fg": 4720, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4663 }, - { "id": "corner", "fg": [ 4665, 4667, 4666, 4664 ] }, - { "id": "t_connection", "fg": [ 4675, 4677, 4676, 4674 ] }, - { "id": "edge", "fg": [ 4669, 4668 ] }, - { "id": "end_piece", "fg": [ 4671, 4673, 4672, 4670 ] }, - { "id": "unconnected", "fg": [ 4678, 4678 ] } + { "id": "center", "fg": 4705 }, + { "id": "corner", "fg": [ 4707, 4709, 4708, 4706 ] }, + { "id": "t_connection", "fg": [ 4717, 4719, 4718, 4716 ] }, + { "id": "edge", "fg": [ 4711, 4710 ] }, + { "id": "end_piece", "fg": [ 4713, 4715, 4714, 4712 ] }, + { "id": "unconnected", "fg": [ 4720, 4720 ] } ] }, { "id": "t_wall_wood_broken", - "fg": 4694, + "fg": 4736, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4679 }, - { "id": "corner", "fg": [ 4681, 4683, 4682, 4680 ] }, - { "id": "t_connection", "fg": [ 4691, 4693, 4692, 4690 ] }, - { "id": "edge", "fg": [ 4685, 4684 ] }, - { "id": "end_piece", "fg": [ 4687, 4689, 4688, 4686 ] }, - { "id": "unconnected", "fg": [ 4694, 4694 ] } + { "id": "center", "fg": 4721 }, + { "id": "corner", "fg": [ 4723, 4725, 4724, 4722 ] }, + { "id": "t_connection", "fg": [ 4733, 4735, 4734, 4732 ] }, + { "id": "edge", "fg": [ 4727, 4726 ] }, + { "id": "end_piece", "fg": [ 4729, 4731, 4730, 4728 ] }, + { "id": "unconnected", "fg": [ 4736, 4736 ] } ] }, { "id": "t_wall_wood_chipped", - "fg": 4710, + "fg": 4752, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4695 }, - { "id": "corner", "fg": [ 4697, 4699, 4698, 4696 ] }, - { "id": "t_connection", "fg": [ 4707, 4709, 4708, 4706 ] }, - { "id": "edge", "fg": [ 4701, 4700 ] }, - { "id": "end_piece", "fg": [ 4703, 4705, 4704, 4702 ] }, - { "id": "unconnected", "fg": [ 4710, 4710 ] } + { "id": "center", "fg": 4737 }, + { "id": "corner", "fg": [ 4739, 4741, 4740, 4738 ] }, + { "id": "t_connection", "fg": [ 4749, 4751, 4750, 4748 ] }, + { "id": "edge", "fg": [ 4743, 4742 ] }, + { "id": "end_piece", "fg": [ 4745, 4747, 4746, 4744 ] }, + { "id": "unconnected", "fg": [ 4752, 4752 ] } ] }, { "id": "t_water_hot", - "fg": 4726, + "fg": 4768, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4711 }, - { "id": "corner", "fg": [ 4713, 4715, 4714, 4712 ] }, - { "id": "t_connection", "fg": [ 4723, 4725, 4724, 4722 ] }, - { "id": "edge", "fg": [ 4717, 4716 ] }, - { "id": "end_piece", "fg": [ 4719, 4721, 4720, 4718 ] }, - { "id": "unconnected", "fg": [ 4726, 4726 ] } + { "id": "center", "fg": 4753 }, + { "id": "corner", "fg": [ 4755, 4757, 4756, 4754 ] }, + { "id": "t_connection", "fg": [ 4765, 4767, 4766, 4764 ] }, + { "id": "edge", "fg": [ 4759, 4758 ] }, + { "id": "end_piece", "fg": [ 4761, 4763, 4762, 4760 ] }, + { "id": "unconnected", "fg": [ 4768, 4768 ] } ] }, { "id": "t_water_pool", - "fg": 4758, + "fg": 4800, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4727 }, - { "id": "corner", "fg": [ 4729, 4731, 4730, 4728 ] }, - { "id": "t_connection", "fg": [ 4755, 4757, 4756, 4754 ] }, - { "id": "edge", "fg": [ 4733, 4732 ] }, - { "id": "end_piece", "fg": [ 4735, 4737, 4736, 4734 ] }, - { "id": "unconnected", "fg": [ 4758, 4758 ] } + { "id": "center", "fg": 4769 }, + { "id": "corner", "fg": [ 4771, 4773, 4772, 4770 ] }, + { "id": "t_connection", "fg": [ 4797, 4799, 4798, 4796 ] }, + { "id": "edge", "fg": [ 4775, 4774 ] }, + { "id": "end_piece", "fg": [ 4777, 4779, 4778, 4776 ] }, + { "id": "unconnected", "fg": [ 4800, 4800 ] } ] }, { "id": "t_water_pool_outdoors", - "fg": 4758, + "fg": 4800, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4727 }, - { "id": "corner", "fg": [ 4729, 4731, 4730, 4728 ] }, - { "id": "t_connection", "fg": [ 4755, 4757, 4756, 4754 ] }, - { "id": "edge", "fg": [ 4733, 4732 ] }, - { "id": "end_piece", "fg": [ 4735, 4737, 4736, 4734 ] }, - { "id": "unconnected", "fg": [ 4758, 4758 ] } + { "id": "center", "fg": 4769 }, + { "id": "corner", "fg": [ 4771, 4773, 4772, 4770 ] }, + { "id": "t_connection", "fg": [ 4797, 4799, 4798, 4796 ] }, + { "id": "edge", "fg": [ 4775, 4774 ] }, + { "id": "end_piece", "fg": [ 4777, 4779, 4778, 4776 ] }, + { "id": "unconnected", "fg": [ 4800, 4800 ] } ] }, { "id": "t_water_pool_shallow", - "fg": 4753, + "fg": 4795, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4738 }, - { "id": "corner", "fg": [ 4740, 4742, 4741, 4739 ] }, - { "id": "t_connection", "fg": [ 4750, 4752, 4751, 4749 ] }, - { "id": "edge", "fg": [ 4744, 4743 ] }, - { "id": "end_piece", "fg": [ 4746, 4748, 4747, 4745 ] }, - { "id": "unconnected", "fg": [ 4753, 4753 ] } + { "id": "center", "fg": 4780 }, + { "id": "corner", "fg": [ 4782, 4784, 4783, 4781 ] }, + { "id": "t_connection", "fg": [ 4792, 4794, 4793, 4791 ] }, + { "id": "edge", "fg": [ 4786, 4785 ] }, + { "id": "end_piece", "fg": [ 4788, 4790, 4789, 4787 ] }, + { "id": "unconnected", "fg": [ 4795, 4795 ] } ] }, { "id": "t_water_pool_shallow_outdoors", - "fg": 4753, + "fg": 4795, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4738 }, - { "id": "corner", "fg": [ 4740, 4742, 4741, 4739 ] }, - { "id": "t_connection", "fg": [ 4750, 4752, 4751, 4749 ] }, - { "id": "edge", "fg": [ 4744, 4743 ] }, - { "id": "end_piece", "fg": [ 4746, 4748, 4747, 4745 ] }, - { "id": "unconnected", "fg": [ 4753, 4753 ] } + { "id": "center", "fg": 4780 }, + { "id": "corner", "fg": [ 4782, 4784, 4783, 4781 ] }, + { "id": "t_connection", "fg": [ 4792, 4794, 4793, 4791 ] }, + { "id": "edge", "fg": [ 4786, 4785 ] }, + { "id": "end_piece", "fg": [ 4788, 4790, 4789, 4787 ] }, + { "id": "unconnected", "fg": [ 4795, 4795 ] } ] }, - { "id": "tr_beartrap", "bg": 4779, "rotates": false }, - { "id": "tr_beartrap_buried", "fg": 4764, "bg": 4779, "rotates": false }, - { "id": "tr_beartrap_buried_season_winter", "fg": 4765, "bg": 4779 }, + { "id": "tr_beartrap", "bg": 4821, "rotates": false }, + { "id": "tr_beartrap_buried", "fg": 4806, "bg": 4821, "rotates": false }, + { "id": "tr_beartrap_buried_season_winter", "fg": 4807, "bg": 4821 }, { "id": "tr_blade", - "fg": 4766, + "fg": 4808, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "edge", "fg": 4766 } ] + "additional_tiles": [ { "id": "edge", "fg": 4808 } ] }, - { "id": "tr_bubblewrap", "fg": 4767, "rotates": false }, - { "id": "tr_caltrops", "fg": 4768, "rotates": false }, - { "id": "tr_dissector", "fg": 4769, "rotates": false }, + { "id": "tr_bubblewrap", "fg": 4809, "rotates": false }, + { "id": "tr_caltrops", "fg": 4810, "rotates": false }, + { "id": "tr_dissector", "fg": 4811, "rotates": false }, { "id": "tr_drain", - "bg": 4780, + "bg": 4822, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "center", "bg": 4759 }, { "id": "t_connection", "bg": 4759 } ] - }, - { "id": "tr_engine", "fg": 4770 }, - { "id": "tr_fur_rollmat", "fg": 4771, "rotates": false }, - { "id": "tr_goo", "fg": 4772, "bg": 3657, "rotates": false }, - { "id": "tr_heavy_snare", "bg": 4760, "rotates": false }, - { "id": "tr_lava", "fg": 3492, "rotates": false }, - { "id": "tr_leather_funnel", "fg": 4773, "rotates": false }, - { "id": "tr_nailboard", "bg": 4762, "rotates": false }, - { "id": "tr_portal", "fg": 4774, "bg": [ ], "rotates": false }, - { "id": "tr_raincatcher", "fg": 3542, "rotates": false }, - { "id": "tr_rollmat", "fg": 4775, "rotates": false }, - { "id": "tr_sinkhole", "fg": 4776, "rotates": false }, - { "id": "tr_sinkhole_season_winter", "fg": 4777, "rotates": false }, - { "id": "tr_snare", "bg": 4760, "rotates": false }, - { "id": "tr_telepad", "fg": 4778, "bg": [ ], "rotates": false }, - { "id": "tr_temple_flood", "fg": 4776 }, - { "id": "tr_tripwire", "bg": 4763, "rotates": false }, + "additional_tiles": [ { "id": "center", "bg": 4801 }, { "id": "t_connection", "bg": 4801 } ] + }, + { "id": "tr_engine", "fg": 4812 }, + { "id": "tr_fur_rollmat", "fg": 4813, "rotates": false }, + { "id": "tr_goo", "fg": 4814, "bg": 3683, "rotates": false }, + { "id": "tr_heavy_snare", "bg": 4802, "rotates": false }, + { "id": "tr_lava", "fg": 3518, "rotates": false }, + { "id": "tr_leather_funnel", "fg": 4815, "rotates": false }, + { "id": "tr_nailboard", "bg": 4804, "rotates": false }, + { "id": "tr_portal", "fg": 4816, "bg": [ ], "rotates": false }, + { "id": "tr_raincatcher", "fg": 3568, "rotates": false }, + { "id": "tr_rollmat", "fg": 4817, "rotates": false }, + { "id": "tr_sinkhole", "fg": 4818, "rotates": false }, + { "id": "tr_sinkhole_season_winter", "fg": 4819, "rotates": false }, + { "id": "tr_snare", "bg": 4802, "rotates": false }, + { "id": "tr_telepad", "fg": 4820, "bg": [ ], "rotates": false }, + { "id": "tr_temple_flood", "fg": 4818 }, + { "id": "tr_tripwire", "bg": 4805, "rotates": false }, { "id": [ "vp_halfboard_cover_right", "vp_halfboard_cover_left" ], - "fg": [ 4826, 4829, 4828, 4827 ], + "fg": [ 4868, 4871, 4870, 4869 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4826, 4829, 4828, 4827 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4868, 4871, 4870, 4869 ] } ] }, { "id": "vp_halfboard_hatch_wheel_left", - "fg": [ 4846, 4849, 4848, 4847 ], + "fg": [ 4888, 4891, 4890, 4889 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4846, 4849, 4848, 4847 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4888, 4891, 4890, 4889 ] } ] }, { "id": "vp_halfboard_hatch_wheel_right", - "fg": [ 4842, 4845, 4844, 4843 ], + "fg": [ 4884, 4887, 4886, 4885 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4842, 4845, 4844, 4843 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4884, 4887, 4886, 4885 ] } ] }, { "id": "vp_halfboard_wheel_left", - "fg": [ 4857, 4859, 4860, 4858 ], + "fg": [ 4899, 4901, 4902, 4900 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4857, 4859, 4860, 4858 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4899, 4901, 4902, 4900 ] } ] }, { "id": "vp_halfboard_wheel_right", - "fg": [ 4860, 4858, 4857, 4859 ], + "fg": [ 4902, 4900, 4899, 4901 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4860, 4858, 4857, 4859 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4902, 4900, 4899, 4901 ] } ] }, { "id": [ "vp_board_wheel_left", "vp_board_nw_edge" ], - "fg": [ 4809, 4811, 4812, 4810 ], + "fg": [ 4851, 4853, 4854, 4852 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4809, 4811, 4812, 4810 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4851, 4853, 4854, 4852 ] } ] }, { "id": [ "vp_board_wheel_right", "vp_board_ne_edge" ], - "fg": [ 4812, 4810, 4809, 4811 ], + "fg": [ 4854, 4852, 4851, 4853 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4812, 4810, 4809, 4811 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4854, 4852, 4851, 4853 ] } ] }, { "id": "vp_stowboard_wheel_left", - "fg": [ 4979, 4981, 4982, 4980 ], + "fg": [ 5021, 5023, 5024, 5022 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4979, 4981, 4982, 4980 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5021, 5023, 5024, 5022 ] } ] }, { "id": "vp_stowboard_wheel_right", - "fg": [ 4982, 4980, 4979, 4981 ], + "fg": [ 5024, 5022, 5021, 5023 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4982, 4980, 4979, 4981 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5024, 5022, 5021, 5023 ] } ] }, { "id": "vp_windshield_wheel_left", - "fg": [ 5442, 5449, 5448, 5447 ], - "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5442, 5449, 5448, 5447 ] } ], + "fg": [ 5484, 5491, 5490, 5489 ], + "additional_tiles": [ { "id": "broken", "fg": 5077, "bg": [ 5484, 5491, 5490, 5489 ] } ], "multitile": true }, { "id": "vp_windshield_wheel_right", - "fg": [ 5434, 5441, 5440, 5439 ], - "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5434, 5441, 5440, 5439 ] } ], + "fg": [ 5476, 5483, 5482, 5481 ], + "additional_tiles": [ { "id": "broken", "fg": 5076, "bg": [ 5476, 5483, 5482, 5481 ] } ], "multitile": true }, { "id": "vp_windshield_full_wheel_left", - "fg": [ 5430, 5433, 5432, 5431 ], - "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5430, 5433, 5432, 5431 ] } ], + "fg": [ 5472, 5475, 5474, 5473 ], + "additional_tiles": [ { "id": "broken", "fg": 5076, "bg": [ 5472, 5475, 5474, 5473 ] } ], "multitile": true }, { "id": "vp_windshield_full_wheel_right", - "fg": [ 5458, 5461, 5460, 5459 ], - "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5458, 5461, 5460, 5459 ] } ], + "fg": [ 5500, 5503, 5502, 5501 ], + "additional_tiles": [ { "id": "broken", "fg": 5077, "bg": [ 5500, 5503, 5502, 5501 ] } ], "multitile": true }, { "id": "vp_windshield_vertical_2_left", - "fg": [ 5430, 5433, 5432, 5431 ], - "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5430, 5433, 5432, 5431 ] } ], + "fg": [ 5472, 5475, 5474, 5473 ], + "additional_tiles": [ { "id": "broken", "fg": 5076, "bg": [ 5472, 5475, 5474, 5473 ] } ], "multitile": true }, { "id": "vp_windshield_vertical_2_right", - "fg": [ 5458, 5461, 5460, 5459 ], - "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5458, 5461, 5460, 5459 ] } ], + "fg": [ 5500, 5503, 5502, 5501 ], + "additional_tiles": [ { "id": "broken", "fg": 5077, "bg": [ 5500, 5503, 5502, 5501 ] } ], "multitile": true }, { "id": [ "vp_seed_drill" ], - "fg": [ 4788, 4790, 4789, 4787 ], + "fg": [ 4830, 4832, 4831, 4829 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4788, 4790, 4789, 4787 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4830, 4832, 4831, 4829 ] } ] }, { "id": [ "vp_wing_mirror" ], - "fg": 4785, + "fg": 4827, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4785 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4827 } ] }, { "id": "vp_board_ne", - "fg": [ 4795, 4798, 4797, 4796 ], + "fg": [ 4837, 4840, 4839, 4838 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4795, 4798, 4797, 4796 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4837, 4840, 4839, 4838 ] } ] }, { "id": "vp_board_nw", - "fg": [ 4799, 4802, 4801, 4800 ], + "fg": [ 4841, 4844, 4843, 4842 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4799, 4802, 4801, 4800 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4841, 4844, 4843, 4842 ] } ] }, { "id": "vp_board_se", - "fg": [ 4803, 4805, 4799, 4804 ], + "fg": [ 4845, 4847, 4841, 4846 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4803, 4805, 4799, 4804 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4845, 4847, 4841, 4846 ] } ] }, { "id": "vp_board_sw", - "fg": [ 4806, 4808, 4795, 4807 ], + "fg": [ 4848, 4850, 4837, 4849 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4806, 4808, 4795, 4807 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4848, 4850, 4837, 4849 ] } ] }, { "id": "vp_board_vertical_left", - "fg": [ 4809, 4811, 4812, 4810 ], + "fg": [ 4851, 4853, 4854, 4852 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4809, 4811, 4812, 4810 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4851, 4853, 4854, 4852 ] } ] }, { "id": "vp_board_vertical_right", - "fg": [ 4812, 4810, 4809, 4811 ], + "fg": [ 4854, 4852, 4851, 4853 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4812, 4810, 4809, 4811 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4854, 4852, 4851, 4853 ] } ] }, { "id": [ "vp_board_horizontal", "vp_board_horizontal_2" ], - "fg": 4791, + "fg": 4833, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4791 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4833 } ] }, { "id": "vp_board_horizontal_front", - "fg": [ 4791, 4793, 4791, 4792 ], + "fg": [ 4833, 4835, 4833, 4834 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4791, 4793, 4791, 4792 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4833, 4835, 4833, 4834 ] } ] }, { "id": "vp_board_horizontal_rear", - "fg": [ 4794, 4792, 4791, 4793 ], + "fg": [ 4836, 4834, 4833, 4835 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4794, 4792, 4791, 4793 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4836, 4834, 4833, 4835 ] } ] }, { "id": [ "vp_board_vertical", "vp_board_vertical_2" ], - "fg": 4809, + "fg": 4851, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4809 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4851 } ] }, { "id": "vp_hdboard_ne", - "fg": [ 4873, 4876, 4875, 4874 ], + "fg": [ 4915, 4918, 4917, 4916 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4873, 4876, 4875, 4874 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4915, 4918, 4917, 4916 ] } ] }, { "id": "vp_hdboard_nw", - "fg": [ 4877, 4880, 4879, 4878 ], + "fg": [ 4919, 4922, 4921, 4920 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4877, 4880, 4879, 4878 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4919, 4922, 4921, 4920 ] } ] }, { "id": "vp_hdboard_se", - "fg": [ 4881, 4883, 4877, 4882 ], + "fg": [ 4923, 4925, 4919, 4924 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4881, 4883, 4877, 4882 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4923, 4925, 4919, 4924 ] } ] }, { "id": "vp_hdboard_sw", - "fg": [ 4884, 4886, 4873, 4885 ], + "fg": [ 4926, 4928, 4915, 4927 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4884, 4886, 4873, 4885 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4926, 4928, 4915, 4927 ] } ] }, { "id": "vp_hdboard_vertical_left", - "fg": [ 4887, 4889, 4888, 4889 ], + "fg": [ 4929, 4931, 4930, 4931 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4887, 4889, 4888, 4889 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4929, 4931, 4930, 4931 ] } ] }, { "id": "vp_hdboard_vertical_right", - "fg": [ 4888, 4889, 4887, 4889 ], + "fg": [ 4930, 4931, 4929, 4931 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4888, 4889, 4887, 4889 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4930, 4931, 4929, 4931 ] } ] }, { "id": [ "vp_hdboard_horizontal", "vp_hdboard_horizontal_2" ], - "fg": 4869, + "fg": 4911, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4869 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4911 } ] }, { "id": "vp_hdboard_horizontal_front", - "fg": [ 4869, 4871, 4869, 4870 ], + "fg": [ 4911, 4913, 4911, 4912 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4869, 4871, 4869, 4870 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4911, 4913, 4911, 4912 ] } ] }, { "id": "vp_hdboard_horizontal_rear", - "fg": [ 4872, 4870, 4869, 4871 ], + "fg": [ 4914, 4912, 4911, 4913 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4872, 4870, 4869, 4871 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4914, 4912, 4911, 4913 ] } ] }, { "id": [ "vp_hdboard_vertical", "vp_hdboard_vertical_2" ], - "fg": 4887, + "fg": 4929, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4887 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4929 } ] }, { "id": "vp_halfboard_ne", - "fg": [ 4834, 4837, 4836, 4835 ], + "fg": [ 4876, 4879, 4878, 4877 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4834, 4837, 4836, 4835 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4876, 4879, 4878, 4877 ] } ] }, { "id": "vp_halfboard_nw", - "fg": [ 4838, 4841, 4840, 4839 ], + "fg": [ 4880, 4883, 4882, 4881 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4838, 4841, 4840, 4839 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4880, 4883, 4882, 4881 ] } ] }, { "id": "vp_halfboard_se", - "fg": [ 4842, 4845, 4844, 4843 ], + "fg": [ 4884, 4887, 4886, 4885 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4842, 4845, 4844, 4843 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4884, 4887, 4886, 4885 ] } ] }, { "id": "vp_halfboard_sw", - "fg": [ 4846, 4849, 4848, 4847 ], + "fg": [ 4888, 4891, 4890, 4889 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4846, 4849, 4848, 4847 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4888, 4891, 4890, 4889 ] } ] }, { "id": "vp_halfboard_vertical_left", - "fg": [ 4857, 4859, 4860, 4858 ], + "fg": [ 4899, 4901, 4902, 4900 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4857, 4859, 4860, 4858 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4899, 4901, 4902, 4900 ] } ] }, { "id": "vp_halfboard_vertical_2_left", - "fg": [ 4851, 4853, 4854, 4852 ], + "fg": [ 4893, 4895, 4896, 4894 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4851, 4853, 4854, 4852 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4893, 4895, 4896, 4894 ] } ] }, { "id": "vp_halfboard_vertical_right", - "fg": [ 4860, 4858, 4857, 4859 ], + "fg": [ 4902, 4900, 4899, 4901 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4860, 4858, 4857, 4859 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4902, 4900, 4899, 4901 ] } ] }, { "id": "vp_halfboard_vertical_2_right", - "fg": [ 4854, 4856, 4851, 4855 ], + "fg": [ 4896, 4898, 4893, 4897 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4854, 4856, 4851, 4855 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4896, 4898, 4893, 4897 ] } ] }, { "id": "vp_halfboard_vertical_t_left", - "fg": [ 4862, 4864, 4863, 4861 ], + "fg": [ 4904, 4906, 4905, 4903 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4862, 4864, 4863, 4861 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4904, 4906, 4905, 4903 ] } ] }, { "id": "vp_halfboard_vertical_t_right", - "fg": [ 4866, 4868, 4867, 4865 ], + "fg": [ 4908, 4910, 4909, 4907 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4866, 4868, 4867, 4865 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4908, 4910, 4909, 4907 ] } ] }, { "id": [ "vp_halfboard_horizontal", "vp_halfboard_horizontal_2" ], - "fg": 4817, + "fg": 4859, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4817 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4859 } ] }, { "id": "vp_halfboard_horizontal_front", - "fg": [ 4826, 4829, 4828, 4827 ], + "fg": [ 4868, 4871, 4870, 4869 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4826, 4829, 4828, 4827 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4868, 4871, 4870, 4869 ] } ] }, { "id": "vp_halfboard_horizontal_2_front", - "fg": [ 4818, 4821, 4820, 4819 ], + "fg": [ 4860, 4863, 4862, 4861 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4818, 4821, 4820, 4819 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4860, 4863, 4862, 4861 ] } ] }, { "id": "vp_halfboard_horizontal_rear", - "fg": [ 4830, 4833, 4832, 4831 ], + "fg": [ 4872, 4875, 4874, 4873 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4830, 4833, 4832, 4831 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4872, 4875, 4874, 4873 ] } ] }, { "id": "vp_halfboard_horizontal_2_rear", - "fg": [ 4822, 4825, 4824, 4823 ], + "fg": [ 4864, 4867, 4866, 4865 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4822, 4825, 4824, 4823 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4864, 4867, 4866, 4865 ] } ] }, { "id": [ "vp_halfboard_vertical", "vp_halfboard_vertical_2" ], - "fg": 4850, + "fg": 4892, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4850 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4892 } ] }, { "id": "vp_halfboard_cover", - "fg": [ 4813, 4816, 4815, 4814 ], + "fg": [ 4855, 4858, 4857, 4856 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4813, 4816, 4815, 4814 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4855, 4858, 4857, 4856 ] } ] }, { "id": "vp_hdhalfboard_ne", - "fg": 4904, + "fg": 4946, "//": [ "vp_hdhalfboard_ne_rotW", "vp_hdhalfboard_ne_rotS", "vp_hdhalfboard_ne_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4904 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4946 } ] }, { "id": "vp_hdhalfboard_nw", - "fg": 4905, + "fg": 4947, "//": [ "vp_hdhalfboard_nw_rotW", "vp_hdhalfboard_nw_rotS", "vp_hdhalfboard_nw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4905 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4947 } ] }, { "id": "vp_hdhalfboard_se", - "fg": 4906, + "fg": 4948, "//": [ "vp_hdhalfboard_se_rotW", "vp_hdhalfboard_se_rotS", "vp_hdhalfboard_se_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4906 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4948 } ] }, { "id": "vp_hdhalfboard_sw", - "fg": 4907, + "fg": 4949, "//": [ "vp_hdhalfboard_sw_rotW", "vp_hdhalfboard_sw_rotS", "vp_hdhalfboard_sw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4907 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4949 } ] }, { "id": "vp_hdhalfboard_vertical_left", - "fg": 4912, + "fg": 4954, "//": [ "vp_hdhalfboard_vertical_left_rotW_right_rotE", "vp_hdhalfboard_vertical_right", @@ -6357,11 +6373,11 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4912 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4954 } ] }, { "id": "vp_hdhalfboard_vertical_right", - "fg": 4913, + "fg": 4955, "//": [ "vp_hdhalfboard_vertical_left_rotE_right_rotW", "vp_hdhalfboard_vertical_left", @@ -6369,118 +6385,118 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4913 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4955 } ] }, { "id": [ "vp_hdhalfboard_horizontal" ], - "fg": 4899, + "fg": 4941, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4899 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4941 } ] }, { "id": [ "vp_hdhalfboard_horizontal_2" ], - "fg": 4894, + "fg": 4936, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4894 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4936 } ] }, { "id": "vp_hdhalfboard_horizontal_front", - "fg": [ 4899, 4902, 4901, 4900 ], + "fg": [ 4941, 4944, 4943, 4942 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4899, 4902, 4901, 4900 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4941, 4944, 4943, 4942 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2_front", - "fg": [ 4894, 4897, 4896, 4895 ], + "fg": [ 4936, 4939, 4938, 4937 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4894, 4897, 4896, 4895 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4936, 4939, 4938, 4937 ] } ] }, { "id": "vp_hdhalfboard_horizontal_rear", - "fg": [ 4903, 4900, 4899, 4902 ], + "fg": [ 4945, 4942, 4941, 4944 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4903, 4900, 4899, 4902 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4945, 4942, 4941, 4944 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2_rear", - "fg": [ 4898, 4895, 4894, 4897 ], + "fg": [ 4940, 4937, 4936, 4939 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4898, 4895, 4894, 4897 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4940, 4937, 4936, 4939 ] } ] }, { "id": [ "vp_hdhalfboard_vertical" ], - "fg": 4908, + "fg": 4950, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4908 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4950 } ] }, { "id": [ "vp_hdhalfboard_vertical_2" ], - "fg": 4909, + "fg": 4951, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4909 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4951 } ] }, { "id": "vp_hdhalfboard_vertical_2_left", - "fg": 4910, + "fg": 4952, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4910 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4952 } ] }, { "id": "vp_hdhalfboard_vertical_2_right", - "fg": 4911, + "fg": 4953, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4911 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4953 } ] }, { "id": "vp_hdhalfboard_cover", - "fg": [ 4890, 4893, 4892, 4891 ], + "fg": [ 4932, 4935, 4934, 4933 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4890, 4893, 4892, 4891 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4932, 4935, 4934, 4933 ] } ] }, { "id": "vp_xlhalfboard_ne", - "fg": [ 4923, 4926, 4925, 4924 ], + "fg": [ 4965, 4968, 4967, 4966 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4923, 4926, 4925, 4924 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4965, 4968, 4967, 4966 ] } ] }, { "id": "vp_xlhalfboard_nw", - "fg": [ 4927, 4930, 4929, 4928 ], + "fg": [ 4969, 4972, 4971, 4970 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4927, 4930, 4929, 4928 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4969, 4972, 4971, 4970 ] } ] }, { "id": "vp_xlhalfboard_se", - "fg": 4931, + "fg": 4973, "//": [ "vp_xlhalfboard_se_rotW", "vp_xlhalfboard_se_rotS", "vp_xlhalfboard_se_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4931 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4973 } ] }, { "id": "vp_xlhalfboard_sw", - "fg": 4932, + "fg": 4974, "//": [ "vp_xlhalfboard_sw_rotW", "vp_xlhalfboard_sw_rotS", "vp_xlhalfboard_sw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4932 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4974 } ] }, { "id": "vp_xlhalfboard_vertical_left", - "fg": 4934, + "fg": 4976, "//": [ "vp_xlhalfboard_vertical_left_rotW_right_rotE", "vp_xlhalfboard_vertical_right", @@ -6488,11 +6504,11 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4934 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4976 } ] }, { "id": "vp_xlhalfboard_vertical_right", - "fg": 4935, + "fg": 4977, "//": [ "vp_xlhalfboard_vertical_left_rotE_right_rotW", "vp_xlhalfboard_vertical_left", @@ -6500,458 +6516,458 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4935 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4977 } ] }, { "id": [ "vp_xlhalfboard_horizontal", "vp_xlhalfboard_horizontal_2" ], - "fg": 4918, + "fg": 4960, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4918 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4960 } ] }, { "id": "vp_xlhalfboard_horizontal_front", - "fg": [ 4918, 4921, 4920, 4919 ], + "fg": [ 4960, 4963, 4962, 4961 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4918, 4921, 4920, 4919 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4960, 4963, 4962, 4961 ] } ] }, { "id": "vp_xlhalfboard_horizontal_rear", - "fg": 4922, + "fg": 4964, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4922 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4964 } ] }, { "id": [ "vp_xlhalfboard_vertical", "vp_xlhalfboard_vertical_2" ], - "fg": 4933, + "fg": 4975, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4933 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4975 } ] }, { "id": "vp_xlhalfboard_cover", - "fg": [ 4914, 4917, 4916, 4915 ], + "fg": [ 4956, 4959, 4958, 4957 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4914, 4917, 4916, 4915 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4956, 4959, 4958, 4957 ] } ] }, { "id": "vp_cloth_halfboard_horizontal", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_horizontal_front", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_horizontal_rear", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_horizontal_2", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_horizontal_2_front", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_horizontal_2_rear", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_ne", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_nw", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_se", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_sw", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_vertical", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_vertical_left", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_vertical_right", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_vertical_2", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_vertical_2_left", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_cloth_halfboard_vertical_2_right", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_clothboard_horizontal", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_clothboard_horizontal_front", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_clothboard_horizontal_rear", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_clothboard_ne", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_clothboard_nw", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_clothboard_se", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_clothboard_sw", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_clothboard_vertical", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_clothboard_vertical_left", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, { "id": "vp_clothboard_vertical_right", - "fg": 4936, + "fg": 4978, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4936 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4978 } ] }, - { "id": "vp_roof_cloth", "fg": 1237, "rotates": false }, + { "id": "vp_roof_cloth", "fg": 1244, "rotates": false }, { "id": "vp_stowboard_ne", - "fg": [ 4965, 4968, 4967, 4966 ], + "fg": [ 5007, 5010, 5009, 5008 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4965, 4968, 4967, 4966 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5007, 5010, 5009, 5008 ] } ] }, { "id": "vp_stowboard_nw", - "fg": [ 4969, 4972, 4971, 4970 ], + "fg": [ 5011, 5014, 5013, 5012 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4969, 4972, 4971, 4970 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5011, 5014, 5013, 5012 ] } ] }, { "id": "vp_stowboard_se", - "fg": [ 4973, 4975, 4969, 4974 ], + "fg": [ 5015, 5017, 5011, 5016 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4973, 4975, 4969, 4974 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5015, 5017, 5011, 5016 ] } ] }, { "id": "vp_stowboard_sw", - "fg": [ 4976, 4978, 4965, 4977 ], + "fg": [ 5018, 5020, 5007, 5019 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4976, 4978, 4965, 4977 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5018, 5020, 5007, 5019 ] } ] }, { "id": "vp_stowboard_vertical_left", - "fg": [ 4979, 4981, 4982, 4980 ], + "fg": [ 5021, 5023, 5024, 5022 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4979, 4981, 4982, 4980 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5021, 5023, 5024, 5022 ] } ] }, { "id": "vp_stowboard_vertical_right", - "fg": [ 4982, 4980, 4979, 4981 ], + "fg": [ 5024, 5022, 5021, 5023 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4982, 4980, 4979, 4981 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5024, 5022, 5021, 5023 ] } ] }, { "id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_2" ], - "fg": 4960, + "fg": 5002, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4960 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5002 } ] }, { "id": "vp_stowboard_horizontal_front", - "fg": [ 4960, 4963, 4962, 4961 ], + "fg": [ 5002, 5005, 5004, 5003 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4960, 4963, 4962, 4961 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5002, 5005, 5004, 5003 ] } ] }, { "id": "vp_stowboard_horizontal_rear", - "fg": [ 4964, 4961, 4960, 4963 ], + "fg": [ 5006, 5003, 5002, 5005 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4964, 4961, 4960, 4963 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5006, 5003, 5002, 5005 ] } ] }, { "id": [ "vp_stowboard_vertical" ], - "fg": 4980, + "fg": 5022, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4980 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5022 } ] }, { "id": "vp_hdstowboard_ne", - "fg": [ 4942, 4945, 4944, 4943 ], + "fg": [ 4984, 4987, 4986, 4985 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4942, 4945, 4944, 4943 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4984, 4987, 4986, 4985 ] } ] }, { "id": "vp_hdstowboard_nw", - "fg": [ 4946, 4949, 4948, 4947 ], + "fg": [ 4988, 4991, 4990, 4989 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4946, 4949, 4948, 4947 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4988, 4991, 4990, 4989 ] } ] }, { "id": "vp_hdstowboard_se", - "fg": [ 4950, 4952, 4946, 4951 ], + "fg": [ 4992, 4994, 4988, 4993 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4950, 4952, 4946, 4951 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4992, 4994, 4988, 4993 ] } ] }, { "id": "vp_hdstowboard_sw", - "fg": [ 4953, 4955, 4942, 4954 ], + "fg": [ 4995, 4997, 4984, 4996 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4953, 4955, 4942, 4954 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4995, 4997, 4984, 4996 ] } ] }, { "id": "vp_hdstowboard_vertical_left", - "fg": [ 4956, 4958, 4959, 4957 ], + "fg": [ 4998, 5000, 5001, 4999 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4956, 4958, 4959, 4957 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4998, 5000, 5001, 4999 ] } ] }, { "id": "vp_hdstowboard_vertical_right", - "fg": [ 4959, 4957, 4956, 4958 ], + "fg": [ 5001, 4999, 4998, 5000 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4959, 4957, 4956, 4958 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5001, 4999, 4998, 5000 ] } ] }, { "id": [ "vp_hdstowboard_horizontal", "vp_hdstowboard_horizontal_2" ], - "fg": 4937, + "fg": 4979, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4937 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4979 } ] }, { "id": "vp_hdstowboard_horizontal_front", - "fg": [ 4937, 4940, 4939, 4938 ], + "fg": [ 4979, 4982, 4981, 4980 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4937, 4940, 4939, 4938 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4979, 4982, 4981, 4980 ] } ] }, { "id": "vp_hdstowboard_horizontal_rear", - "fg": [ 4941, 4938, 4937, 4940 ], + "fg": [ 4983, 4980, 4979, 4982 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4941, 4938, 4937, 4940 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 4983, 4980, 4979, 4982 ] } ] }, { "id": [ "vp_hdstowboard_vertical" ], - "fg": 4957, + "fg": 4999, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4957 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 4999 } ] }, { "id": "vp_woodboard_ne", - "fg": [ 4987, 4988, 4993, 4994 ], + "fg": [ 5029, 5030, 5035, 5036 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4987, 4988, 4993, 4994 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5029, 5030, 5035, 5036 ] } ] }, { "id": "vp_woodboard_nw", - "fg": [ 4989, 4990, 4991, 4992 ], + "fg": [ 5031, 5032, 5033, 5034 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4989, 4990, 4991, 4992 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5031, 5032, 5033, 5034 ] } ] }, { "id": "vp_woodboard_se", - "fg": [ 4991, 4992, 4989, 4990 ], + "fg": [ 5033, 5034, 5031, 5032 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4991, 4992, 4989, 4990 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5033, 5034, 5031, 5032 ] } ] }, { "id": "vp_woodboard_sw", - "fg": [ 4993, 4994, 4987, 4988 ], + "fg": [ 5035, 5036, 5029, 5030 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4993, 4994, 4987, 4988 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5035, 5036, 5029, 5030 ] } ] }, { "id": "vp_woodboard_vertical_left", - "fg": [ 4995, 4985, 4996, 4983 ], + "fg": [ 5037, 5027, 5038, 5025 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4995, 4985, 4996, 4983 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5037, 5027, 5038, 5025 ] } ] }, { "id": "vp_woodboard_vertical_right", - "fg": [ 4996, 4983, 4995, 4985 ], + "fg": [ 5038, 5025, 5037, 5027 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4996, 4983, 4995, 4985 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5038, 5025, 5037, 5027 ] } ] }, { "id": [ "vp_woodboard_horizontal", "vp_woodboard_vertical", "vp_woodboard_horizontal_front" ], - "fg": [ 4983, 4984, 4985, 4986 ], + "fg": [ 5025, 5026, 5027, 5028 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4983, 4984, 4985, 4986 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5025, 5026, 5027, 5028 ] } ] }, { "id": "vp_woodboard_horizontal_rear", - "fg": [ 4985, 4986, 4983, 4984 ], + "fg": [ 5027, 5028, 5025, 5026 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 4985, 4986, 4983, 4984 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5027, 5028, 5025, 5026 ] } ] }, { "id": [ "vp_woodhalfboard_ne" ], - "fg": 5001, + "fg": 5043, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5001 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5043 } ] }, { "id": "vp_woodhalfboard_nw", - "fg": 5000, + "fg": 5042, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5000 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5042 } ] }, { "id": "vp_woodhalfboard_se", - "fg": 5005, + "fg": 5047, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5005 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5047 } ] }, { "id": "vp_woodhalfboard_sw", - "fg": 5004, + "fg": 5046, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5004 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5046 } ] }, { "id": [ "vp_woodhalfboard_vertical_left", "vp_woodhalfboard_vertical_2_left", "vp_woodhalfboard_vertical_T_left" ], - "fg": 5002, + "fg": 5044, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5002 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5044 } ] }, { "id": [ "vp_woodhalfboard_vertical_right", "vp_woodhalfboard_vertical_2_right", "vp_woodhalfboard_vertical_T_right" ], - "fg": 5006, + "fg": 5048, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5006 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5048 } ] }, { "id": [ @@ -6960,550 +6976,550 @@ "vp_woodhalfboard_horizontal_front", "vp_woodhalfboard_horizontal_2_front" ], - "fg": 4999, + "fg": 5041, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4999 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5041 } ] }, { "id": [ "vp_woodhalfboard_horizontal_rear", "vp_woodhalfboard_horizontal_2_rear" ], - "fg": 5003, + "fg": 5045, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5003 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5045 } ] }, { "id": [ "vp_woodhalfboard", "vp_woodhalfboard_cross", "vp_woodhalfboard_vertical", "vp_woodhalfboard_vertical_2" ], - "fg": 4998, + "fg": 5040, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4998 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5040 } ] }, { "id": [ "vp_woodhalfboard_cover" ], - "fg": 4997, + "fg": 5039, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 4997 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5039 } ] }, { "id": [ "vp_basketsm", "vp_basketsm_external" ], - "fg": [ 5020, 5019 ], + "fg": [ 5062, 5061 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5020, 5019 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5062, 5061 ] } ] }, { "id": "vp_basketsm_bike_rear", - "fg": [ 5016, 5018, 5017, 5015 ], + "fg": [ 5058, 5060, 5059, 5057 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5016, 5018, 5017, 5015 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5058, 5060, 5059, 5057 ] } ] }, { "id": [ "vp_basketlg", "vp_basketlg_external" ], - "fg": [ 5014, 5013 ], + "fg": [ 5056, 5055 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5014, 5013 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5056, 5055 ] } ] }, { "id": "vp_basketlg_cart", - "fg": [ 5010, 5012, 5011, 5009 ], + "fg": [ 5052, 5054, 5053, 5051 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5010, 5012, 5011, 5009 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5052, 5054, 5053, 5051 ] } ] }, { "id": "vp_box", - "fg": [ 5021, 5022 ], + "fg": [ 5063, 5064 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5021, 5022 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5063, 5064 ] } ] }, { "id": "vp_wood box", - "fg": [ 5031, 5030 ], + "fg": [ 5073, 5072 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5031, 5030 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5073, 5072 ] } ] }, { "id": "vp_box_wheelbarrow", - "fg": [ 5024, 5026, 5025, 5023 ], + "fg": [ 5066, 5068, 5067, 5065 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5024, 5026, 5025, 5023 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5066, 5068, 5067, 5065 ] } ] }, { "id": "vp_trunk", - "fg": 5028, + "fg": 5070, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5028 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5070 } ] }, { "id": "vp_trunk_rear_edge", - "fg": 5029, + "fg": 5071, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5029 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5071 } ] }, { "id": "vp_cargo_space", - "fg": 5027, + "fg": 5069, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5027 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5069 } ] }, { "id": "vp_external_tank", - "fg": 5007, + "fg": 5049, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5007 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5049 } ] }, { "id": [ "vp_door_internal" ], - "fg": [ 5056, 5060, 5058, 5054 ], + "fg": [ 5098, 5102, 5100, 5096 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5057, 5061, 5059, 5055 ] }, { "id": "broken", "fg": 5032, "bg": [ 5056, 5060, 5058, 5054 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5099, 5103, 5101, 5097 ] }, { "id": "broken", "fg": 5074, "bg": [ 5098, 5102, 5100, 5096 ] } ] }, { "id": [ "vp_door", "vp_door_inboard" ], - "fg": 5052, + "fg": 5094, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": 5053 }, { "id": "broken", "fg": 5032, "bg": 5052 } ] + "additional_tiles": [ { "id": "open", "fg": 5095 }, { "id": "broken", "fg": 5074, "bg": 5094 } ] }, { "id": [ "vp_door_front" ], - "fg": [ 5044, 5051, 5050, 5049 ], + "fg": [ 5086, 5093, 5092, 5091 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5046, 5048, 5047, 5045 ] }, { "id": "broken", "fg": 5032, "bg": [ 5044, 5051, 5050, 5049 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5088, 5090, 5089, 5087 ] }, { "id": "broken", "fg": 5074, "bg": [ 5086, 5093, 5092, 5091 ] } ] }, { "id": [ "vp_door_rear" ], - "fg": [ 5098, 5105, 5104, 5103 ], + "fg": [ 5140, 5147, 5146, 5145 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5100, 5102, 5101, 5099 ] }, { "id": "broken", "fg": 5032, "bg": [ 5098, 5105, 5104, 5103 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5142, 5144, 5143, 5141 ] }, { "id": "broken", "fg": 5074, "bg": [ 5140, 5147, 5146, 5145 ] } ] }, { "id": [ "vp_door_left", "vp_door_vertical_left" ], - "fg": [ 5036, 5039, 5038, 5037 ], + "fg": [ 5078, 5081, 5080, 5079 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5063, 5065, 5064, 5062 ] }, { "id": "broken", "fg": 5032, "bg": [ 5036, 5039, 5038, 5037 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5105, 5107, 5106, 5104 ] }, { "id": "broken", "fg": 5074, "bg": [ 5078, 5081, 5080, 5079 ] } ] }, { "id": [ "vp_door_nw", "vp_door_front_left" ], - "fg": [ 5070, 5073, 5072, 5071 ], + "fg": [ 5112, 5115, 5114, 5113 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5063, 5065, 5064, 5062 ] }, { "id": "broken", "fg": 5032, "bg": [ 5070, 5073, 5072, 5071 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5105, 5107, 5106, 5104 ] }, { "id": "broken", "fg": 5074, "bg": [ 5112, 5115, 5114, 5113 ] } ] }, { "id": [ "vp_door_sw", "vp_door_rear_left" ], - "fg": [ 5119, 5122, 5121, 5120 ], + "fg": [ 5161, 5164, 5163, 5162 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5063, 5065, 5064, 5062 ] }, { "id": "broken", "fg": 5032, "bg": [ 5119, 5122, 5121, 5120 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5105, 5107, 5106, 5104 ] }, { "id": "broken", "fg": 5074, "bg": [ 5161, 5164, 5163, 5162 ] } ] }, { "id": [ "vp_door_right", "vp_door_vertical_right", "vp_door_sliding" ], - "fg": [ 5040, 5043, 5042, 5041 ], + "fg": [ 5082, 5085, 5084, 5083 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5107, 5109, 5108, 5106 ] }, { "id": "broken", "fg": 5032, "bg": [ 5040, 5043, 5042, 5041 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5149, 5151, 5150, 5148 ] }, { "id": "broken", "fg": 5074, "bg": [ 5082, 5085, 5084, 5083 ] } ] }, { "id": [ "vp_door_ne", "vp_door_front_right" ], - "fg": [ 5066, 5069, 5068, 5067 ], + "fg": [ 5108, 5111, 5110, 5109 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5107, 5109, 5108, 5106 ] }, { "id": "broken", "fg": 5032, "bg": [ 5066, 5069, 5068, 5067 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5149, 5151, 5150, 5148 ] }, { "id": "broken", "fg": 5074, "bg": [ 5108, 5111, 5110, 5109 ] } ] }, { "id": [ "vp_door_se", "vp_door_rear_right" ], - "fg": [ 5110, 5113, 5112, 5111 ], + "fg": [ 5152, 5155, 5154, 5153 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5107, 5109, 5108, 5106 ] }, { "id": "broken", "fg": 5032, "bg": [ 5110, 5113, 5112, 5111 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5149, 5151, 5150, 5148 ] }, { "id": "broken", "fg": 5074, "bg": [ 5152, 5155, 5154, 5153 ] } ] }, { "id": "vp_door_shutter", - "fg": [ 5114, 5118, 5117, 5116 ], + "fg": [ 5156, 5160, 5159, 5158 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": 5115 }, { "id": "broken", "fg": 5032, "bg": [ 5114, 5118, 5117, 5116 ] } ] + "additional_tiles": [ { "id": "open", "fg": 5157 }, { "id": "broken", "fg": 5074, "bg": [ 5156, 5160, 5159, 5158 ] } ] }, { "id": "vp_door_trunk", - "fg": [ 5123, 5130, 5129, 5128 ], + "fg": [ 5165, 5172, 5171, 5170 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5124, 5127, 5126, 5125 ] }, { "id": "broken", "fg": 5032, "bg": [ 5123, 5130, 5129, 5128 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5166, 5169, 5168, 5167 ] }, { "id": "broken", "fg": 5074, "bg": [ 5165, 5172, 5171, 5170 ] } ] }, { "id": [ "vp_hddoor_trunk", "vp_hatch", "vp_hatch_opaque", "vp_hdhatch", "vp_hdhatch_opaque" ], - "fg": [ 5179, 5186, 5185, 5184 ], + "fg": [ 5221, 5228, 5227, 5226 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5180, 5183, 5182, 5181 ] }, { "id": "broken", "fg": 5032, "bg": [ 5179, 5186, 5185, 5184 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5222, 5225, 5224, 5223 ] }, { "id": "broken", "fg": 5074, "bg": [ 5221, 5228, 5227, 5226 ] } ] }, { "id": [ "vp_hddoor_left" ], - "fg": [ 5132, 5134, 5133, 5131 ], + "fg": [ 5174, 5176, 5175, 5173 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5144, 5146, 5145, 5143 ] }, { "id": "broken", "fg": 5032, "bg": [ 5132, 5134, 5133, 5131 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5186, 5188, 5187, 5185 ] }, { "id": "broken", "fg": 5074, "bg": [ 5174, 5176, 5175, 5173 ] } ] }, { "id": [ "vp_hddoor_right" ], - "fg": [ 5136, 5138, 5137, 5135 ], + "fg": [ 5178, 5180, 5179, 5177 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5176, 5178, 5177, 5175 ] }, { "id": "broken", "fg": 5032, "bg": [ 5136, 5138, 5137, 5135 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5218, 5220, 5219, 5217 ] }, { "id": "broken", "fg": 5074, "bg": [ 5178, 5180, 5179, 5177 ] } ] }, { "id": [ "vp_hddoor", "vp_hddoor_front" ], - "fg": [ 5140, 5142, 5141, 5139 ], + "fg": [ 5182, 5184, 5183, 5181 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5046, 5048, 5047, 5045 ] }, { "id": "broken", "fg": 5032, "bg": [ 5140, 5142, 5141, 5139 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5088, 5090, 5089, 5087 ] }, { "id": "broken", "fg": 5074, "bg": [ 5182, 5184, 5183, 5181 ] } ] }, { "id": [ "vp_hddoor_rear" ], - "fg": [ 5172, 5174, 5173, 5171 ], + "fg": [ 5214, 5216, 5215, 5213 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5100, 5102, 5101, 5099 ] }, { "id": "broken", "fg": 5032, "bg": [ 5172, 5174, 5173, 5171 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5142, 5144, 5143, 5141 ] }, { "id": "broken", "fg": 5074, "bg": [ 5214, 5216, 5215, 5213 ] } ] }, { "id": [ "vp_door_opaque_left" ], - "fg": [ 5083, 5085, 5084, 5082 ], + "fg": [ 5125, 5127, 5126, 5124 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5079, 5081, 5080, 5078 ] }, { "id": "broken", "fg": 5032, "bg": [ 5083, 5085, 5084, 5082 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5121, 5123, 5122, 5120 ] }, { "id": "broken", "fg": 5074, "bg": [ 5125, 5127, 5126, 5124 ] } ] }, { "id": [ "vp_door_opaque_right" ], - "fg": [ 5095, 5097, 5096, 5094 ], + "fg": [ 5137, 5139, 5138, 5136 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5091, 5093, 5092, 5090 ] }, { "id": "broken", "fg": 5032, "bg": [ 5095, 5097, 5096, 5094 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5133, 5135, 5134, 5132 ] }, { "id": "broken", "fg": 5074, "bg": [ 5137, 5139, 5138, 5136 ] } ] }, { "id": [ "vp_door_opaque", "vp_door_opaque_front" ], - "fg": [ 5075, 5077, 5076, 5074 ], + "fg": [ 5117, 5119, 5118, 5116 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5046, 5048, 5047, 5045 ] }, { "id": "broken", "fg": 5032, "bg": [ 5075, 5077, 5076, 5074 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5088, 5090, 5089, 5087 ] }, { "id": "broken", "fg": 5074, "bg": [ 5117, 5119, 5118, 5116 ] } ] }, { "id": [ "vp_door_opaque_rear" ], - "fg": [ 5087, 5089, 5088, 5086 ], + "fg": [ 5129, 5131, 5130, 5128 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5100, 5102, 5101, 5099 ] }, { "id": "broken", "fg": 5032, "bg": [ 5087, 5089, 5088, 5086 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5142, 5144, 5143, 5141 ] }, { "id": "broken", "fg": 5074, "bg": [ 5129, 5131, 5130, 5128 ] } ] }, { "id": [ "vp_hddoor_opaque_left" ], - "fg": [ 5156, 5158, 5157, 5155 ], + "fg": [ 5198, 5200, 5199, 5197 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5152, 5154, 5153, 5151 ] }, { "id": "broken", "fg": 5032, "bg": [ 5156, 5158, 5157, 5155 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5194, 5196, 5195, 5193 ] }, { "id": "broken", "fg": 5074, "bg": [ 5198, 5200, 5199, 5197 ] } ] }, { "id": [ "vp_hddoor_opaque_right" ], - "fg": [ 5168, 5170, 5169, 5167 ], + "fg": [ 5210, 5212, 5211, 5209 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5164, 5166, 5165, 5163 ] }, { "id": "broken", "fg": 5032, "bg": [ 5168, 5170, 5169, 5167 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5206, 5208, 5207, 5205 ] }, { "id": "broken", "fg": 5074, "bg": [ 5210, 5212, 5211, 5209 ] } ] }, { "id": [ "vp_hddoor_opaque", "vp_hddoor_opaque_front" ], - "fg": [ 5148, 5150, 5149, 5147 ], + "fg": [ 5190, 5192, 5191, 5189 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5046, 5048, 5047, 5045 ] }, { "id": "broken", "fg": 5032, "bg": [ 5148, 5150, 5149, 5147 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5088, 5090, 5089, 5087 ] }, { "id": "broken", "fg": 5074, "bg": [ 5190, 5192, 5191, 5189 ] } ] }, { "id": [ "vp_hddoor_opaque_rear" ], - "fg": [ 5160, 5162, 5161, 5159 ], + "fg": [ 5202, 5204, 5203, 5201 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 5100, 5102, 5101, 5099 ] }, { "id": "broken", "fg": 5032, "bg": [ 5160, 5162, 5161, 5159 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 5142, 5144, 5143, 5141 ] }, { "id": "broken", "fg": 5074, "bg": [ 5202, 5204, 5203, 5201 ] } ] }, { "id": "vp_frame_cover", - "fg": 5187, + "fg": 5229, "//": [ "frame_cover_rotW", "frame_cover_rotS", "frame_cover_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5187 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5229 } ] }, { "id": "vp_frame_cross", - "fg": 5188, + "fg": 5230, "//": [ "frame_cross_rotW", "frame_cross_rotS", "frame_cross_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5188 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5230 } ] }, { "id": "vp_frame_cross_unconnected", - "fg": 5189, + "fg": 5231, "//": [ "frame_cross_unconnected_rotW", "frame_cross_unconnected_rotS", "frame_cross_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5189 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5231 } ] }, { "id": "vp_frame_ne", - "fg": 5202, + "fg": 5244, "//": [ "frame_ne_rotW", "frame_ne_rotS", "frame_ne_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5202 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5244 } ] }, { "id": "vp_frame_nw", - "fg": 5203, + "fg": 5245, "//": [ "frame_nw_rotW", "frame_nw_rotS", "frame_nw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5203 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5245 } ] }, { "id": "vp_frame_se", - "fg": 5204, + "fg": 5246, "//": [ "frame_se_rotW", "frame_se_rotS", "frame_se_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5204 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5246 } ] }, { "id": "vp_frame_sw", - "fg": 5205, + "fg": 5247, "//": [ "frame_sw_rotW", "frame_sw_rotS", "frame_sw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5205 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5247 } ] }, { "id": "vp_frame_vertical_unconnected", - "fg": 5213, + "fg": 5255, "//": [ "frame_vertical_unconnected_rotW_right_rotE", "frame_vertical_right", "frame_vertical_unconnected_rotE_right_rotW" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5213 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5255 } ] }, { "id": "vp_frame_vertical_2_unconnected", - "fg": 5210, + "fg": 5252, "//": [ "frame_vertical2_unconnected_rotW", "frame_vertical2_right", "frame_vertical2_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5210 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5252 } ] }, { "id": "vp_frame_vertical_left", - "fg": 5211, + "fg": 5253, "//": [ "frame_vertical_left_rotW_right_rotE", "frame_vertical_right", "frame_vertical_left_rotE_right_rotW" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5211 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5253 } ] }, { "id": "vp_frame_vertical_2_left", - "fg": 5208, + "fg": 5250, "//": [ "frame_vertical2_left_rotW", "frame_vertical2_right", "frame_vertical2_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5208 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5250 } ] }, { "id": "vp_frame_vertical_right", - "fg": 5212, + "fg": 5254, "//": [ "frame_vertical_left_rotE_right_rotW", "frame_vertical_left", "frame_vertical_left_rotW_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5212 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5254 } ] }, { "id": "vp_frame_vertical_2_right", - "fg": 5209, + "fg": 5251, "//": [ "frame_vertical2_right_rotW", "frame_vertical2_left", "frame_vertical2_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5209 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5251 } ] }, { "id": "vp_frame_horizontal", - "fg": 5190, + "fg": 5232, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5190 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5232 } ] }, { "id": "vp_frame_horizontal_2", - "fg": 5191, + "fg": 5233, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5191 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5233 } ] }, { "id": "vp_frame_horizontal_unconnected", - "fg": 5201, + "fg": 5243, "//": [ "frame_horizontal_unconnected_rotW", "frame_horizontal_unconnected_rotS", "frame_horizontal_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5201 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5243 } ] }, { "id": "vp_frame_horizontal_2_unconnected", - "fg": 5194, + "fg": 5236, "//": [ "frame_horizontal2_unconnected_rotW", "frame_horizontal2_unconnected_rotS", "frame_horizontal2_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5194 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5236 } ] }, { "id": "vp_frame_horizontal_front", - "fg": 5197, + "fg": 5239, "//": [ "frame_horizontal_front_rotW", "frame_horizontal_front_rotS", "frame_horizontal_front_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5197 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5239 } ] }, { "id": "vp_frame_horizontal_2_front", - "fg": 5192, + "fg": 5234, "//": [ "frame_horizontal2_front_rotW", "frame_horizontal2_front_rotS", "frame_horizontal2_front_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5192 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5234 } ] }, { "id": "vp_frame_horizontal_rear", - "fg": 5199, + "fg": 5241, "//": [ "frame_horizontal_rear_rotW", "frame_horizontal_rear_rotS", "frame_horizontal_rear_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5199 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5241 } ] }, { "id": "vp_frame_horizontal_2_rear", - "fg": 5193, + "fg": 5235, "//": [ "frame_horizontal2_rear_rotW", "frame_horizontal2_rear_rotS", "frame_horizontal2_rear_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5193 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5235 } ] }, { "id": "vp_frame_horizontal_left", - "fg": 5198, + "fg": 5240, "//": [ "frame_horizontal_left_rotW", "frame_horizontal_left_rotS", "frame_horizontal_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5198 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5240 } ] }, { "id": "vp_frame_horizontal_2_left", - "fg": 5195, + "fg": 5237, "//": [ "frame_horizontal_2_left_rotW", "frame_horizontal_2_left_rotS", "frame_horizontal_2_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5195 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5237 } ] }, { "id": "vp_frame_horizontal_right", - "fg": 5200, + "fg": 5242, "//": [ "frame_horizontal_right_rotW", "frame_horizontal_right_rotS", "frame_horizontal_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5200 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5242 } ] }, { "id": "vp_frame_horizontal_2_right", - "fg": 5196, + "fg": 5238, "//": [ "frame_horizontal_2_right_rotW", "frame_horizontal_2_right_rotS", "frame_horizontal_2_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5196 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5238 } ] }, { "id": "vp_frame_vertical", - "fg": 5206, + "fg": 5248, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5206 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5248 } ] }, { "id": "vp_frame_vertical_2", - "fg": 5207, + "fg": 5249, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5207 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5249 } ] }, { "id": "vp_hdframe_cover", - "fg": 5214, + "fg": 5256, "//": [ "hdframe_cover_rotW", "hdframe_cover_rotS", "hdframe_cover_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5214 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5256 } ] }, { "id": "vp_hdframe_cross", - "fg": 5215, + "fg": 5257, "//": [ "hdframe_cross_rotW", "hdframe_cross_rotS", "hdframe_cross_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5215 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5257 } ] }, { "id": "vp_hdframe_cross_unconnected", - "fg": 5216, + "fg": 5258, "//": [ "hdframe_cross_unconnected_rotW", "hdframe_cross_unconnected_rotS", "hdframe_cross_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5216 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5258 } ] }, { "id": "vp_hdframe_ne", - "fg": 5229, + "fg": 5271, "//": [ "hdframe_ne_rotW", "hdframe_ne_rotS", "hdframe_ne_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5229 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5271 } ] }, { "id": "vp_hdframe_nw", - "fg": 5230, + "fg": 5272, "//": [ "hdframe_nw_rotW", "hdframe_nw_rotS", "hdframe_nw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5230 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5272 } ] }, { "id": "vp_hdframe_se", - "fg": 5231, + "fg": 5273, "//": [ "hdframe_se_rotW", "hdframe_se_rotS", "hdframe_se_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5231 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5273 } ] }, { "id": "vp_hdframe_sw", - "fg": 5232, + "fg": 5274, "//": [ "hdframe_sw_rotW", "hdframe_sw_rotS", "hdframe_sw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5232 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5274 } ] }, { "id": "vp_hdframe_vertical_unconnected", - "fg": 5240, + "fg": 5282, "//": [ "hdframe_vertical_unconnected_rotW_right_rotE", "hdframe_vertical_right", @@ -7511,73 +7527,73 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5240 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5282 } ] }, { "id": "vp_hdframe_vertical_2_unconnected", - "fg": 5237, + "fg": 5279, "//": [ "hdframe_vertical2_unconnected_rotW", "hdframe_vertical2_right", "hdframe_vertical2_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5237 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5279 } ] }, { "id": "vp_hdframe_vertical_left", - "fg": 5238, + "fg": 5280, "//": [ "hdframe_vertical_left_rotW_right_rotE", "hdframe_vertical_right", "hdframe_vertical_left_rotE_right_rotW" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5238 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5280 } ] }, { "id": "vp_hdframe_vertical_2_left", - "fg": 5235, + "fg": 5277, "//": [ "hdframe_vertical2_left_rotW", "hdframe_vertical2_right", "hdframe_vertical2_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5235 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5277 } ] }, { "id": "vp_hdframe_vertical_right", - "fg": 5239, + "fg": 5281, "//": [ "hdframe_vertical_left_rotE_right_rotW", "hdframe_vertical_left", "hdframe_vertical_left_rotW_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5239 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5281 } ] }, { "id": "vp_hdframe_vertical_2_right", - "fg": 5236, + "fg": 5278, "//": [ "hdframe_vertical2_right_rotW", "hdframe_vertical2_left", "hdframe_vertical2_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5236 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5278 } ] }, { "id": "vp_hdframe_horizontal", - "fg": 5217, + "fg": 5259, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5217 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5259 } ] }, { "id": "vp_hdframe_horizontal_2", - "fg": 5218, + "fg": 5260, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5218 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5260 } ] }, { "id": "vp_hdframe_horizontal_unconnected", - "fg": 5228, + "fg": 5270, "//": [ "hdframe_horizontal_unconnected_rotW", "hdframe_horizontal_unconnected_rotS", "hdframe_horizontal_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5228 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5270 } ] }, { "id": "vp_hdframe_horizontal_2_unconnected", - "fg": 5221, + "fg": 5263, "//": [ "hdframe_horizontal2_unconnected_rotW", "hdframe_horizontal2_unconnected_rotS", @@ -7585,145 +7601,145 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5221 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5263 } ] }, { "id": "vp_hdframe_horizontal_front", - "fg": 5224, + "fg": 5266, "//": [ "hdframe_horizontal_front_rotW", "hdframe_horizontal_front_rotS", "hdframe_horizontal_front_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5224 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5266 } ] }, { "id": "vp_hdframe_horizontal_2_front", - "fg": 5219, + "fg": 5261, "//": [ "hdframe_horizontal2_front_rotW", "hdframe_horizontal2_front_rotS", "hdframe_horizontal2_front_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5219 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5261 } ] }, { "id": "vp_hdframe_horizontal_rear", - "fg": 5226, + "fg": 5268, "//": [ "hdframe_horizontal_rear_rotW", "hdframe_horizontal_rear_rotS", "hdframe_horizontal_rear_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5226 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5268 } ] }, { "id": "vp_hdframe_horizontal_2_rear", - "fg": 5220, + "fg": 5262, "//": [ "hdframe_horizontal2_rear_rotW", "hdframe_horizontal2_rear_rotS", "hdframe_horizontal2_rear_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5220 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5262 } ] }, { "id": "vp_hdframe_horizontal_left", - "fg": 5225, + "fg": 5267, "//": [ "hdframe_horizontal_left_rotW", "hdframe_horizontal_left_rotS", "hdframe_horizontal_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5225 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5267 } ] }, { "id": "vp_hdframe_horizontal_2_left", - "fg": 5222, + "fg": 5264, "//": [ "hdframe_horizontal_2_left_rotW", "hdframe_horizontal_2_left_rotS", "hdframe_horizontal_2_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5222 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5264 } ] }, { "id": "vp_hdframe_horizontal_right", - "fg": 5227, + "fg": 5269, "//": [ "hdframe_horizontal_right_rotW", "hdframe_horizontal_right_rotS", "hdframe_horizontal_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5227 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5269 } ] }, { "id": "vp_hdframe_horizontal_2_right", - "fg": 5223, + "fg": 5265, "//": [ "hdframe_horizontal_2_right_rotW", "hdframe_horizontal_2_right_rotS", "hdframe_horizontal_2_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5223 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5265 } ] }, { "id": "vp_hdframe_vertical", - "fg": 5233, + "fg": 5275, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5233 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5275 } ] }, { "id": "vp_hdframe_vertical_2", - "fg": 5234, + "fg": 5276, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5234 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5276 } ] }, { "id": "vp_xlframe_cover", - "fg": 5241, + "fg": 5283, "//": [ "xlframe_cover_rotW", "xlframe_cover_rotS", "xlframe_cover_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5241 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5283 } ] }, { "id": "vp_xlframe_cross", - "fg": 5242, + "fg": 5284, "//": [ "xlframe_cross_rotW", "xlframe_cross_rotS", "xlframe_cross_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5242 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5284 } ] }, { "id": "vp_xlframe_cross_unconnected", - "fg": 5243, + "fg": 5285, "//": [ "xlframe_cross_unconnected_rotW", "xlframe_cross_unconnected_rotS", "xlframe_cross_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5243 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5285 } ] }, { "id": "vp_xlframe_ne", - "fg": 5256, + "fg": 5298, "//": [ "xlframe_ne_rotW", "xlframe_ne_rotS", "xlframe_ne_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5256 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5298 } ] }, { "id": "vp_xlframe_nw", - "fg": 5257, + "fg": 5299, "//": [ "xlframe_nw_rotW", "xlframe_nw_rotS", "xlframe_nw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5257 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5299 } ] }, { "id": "vp_xlframe_se", - "fg": 5258, + "fg": 5300, "//": [ "xlframe_se_rotW", "xlframe_se_rotS", "xlframe_se_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5258 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5300 } ] }, { "id": "vp_xlframe_sw", - "fg": 5259, + "fg": 5301, "//": [ "xlframe_sw_rotW", "xlframe_sw_rotS", "xlframe_sw_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5259 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5301 } ] }, { "id": "vp_xlframe_vertical_unconnected", - "fg": 5267, + "fg": 5309, "//": [ "xlframe_vertical_unconnected_rotW_right_rotE", "xlframe_vertical_unconnected", @@ -7731,73 +7747,73 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5267 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5309 } ] }, { "id": "vp_xlframe_vertical_2_unconnected", - "fg": 5264, + "fg": 5306, "//": [ "xlframe_vertical2_unconnected_rotW", "xlframe_vertical2_unconnected", "xlframe_vertical2_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5264 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5306 } ] }, { "id": "vp_xlframe_vertical_left", - "fg": 5265, + "fg": 5307, "//": [ "xlframe_vertical_left_rotW_right_rotE", "xlframe_vertical_right", "xlframe_vertical_left_rotE_right_rotW" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5265 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5307 } ] }, { "id": "vp_xlframe_vertical_2_left", - "fg": 5262, + "fg": 5304, "//": [ "xlframe_vertical2_left_rotW", "xlframe_vertical2_right", "xlframe_vertical2_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5262 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5304 } ] }, { "id": "vp_xlframe_vertical_right", - "fg": 5266, + "fg": 5308, "//": [ "xlframe_vertical_left_rotE_right_rotW", "xlframe_vertical_left", "vp_xlframe_vertical_left_rotW_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5266 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5308 } ] }, { "id": "vp_xlframe_vertical_2_right", - "fg": 5263, + "fg": 5305, "//": [ "xlframe_vertical2_right_rotW", "xlframe_vertical2_left", "vp_xlframe_vertical2_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5263 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5305 } ] }, { "id": "vp_xlframe_horizontal", - "fg": 5244, + "fg": 5286, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5244 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5286 } ] }, { "id": "vp_xlframe_horizontal_2", - "fg": 5245, + "fg": 5287, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5245 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5287 } ] }, { "id": "vp_xlframe_horizontal_unconnected", - "fg": 5255, + "fg": 5297, "//": [ "xlframe_horizontal_unconnected_rotW", "xlframe_horizontal_unconnected_rotS", "xlframe_horizontal_unconnected_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5255 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5297 } ] }, { "id": "vp_xlframe_horizontal_2_unconnected", - "fg": 5248, + "fg": 5290, "//": [ "xlframe_horizontal2_unconnected_rotW", "xlframe_horizontal2_unconnected_rotS", @@ -7805,425 +7821,425 @@ ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5248 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5290 } ] }, { "id": "vp_xlframe_horizontal_front", - "fg": 5251, + "fg": 5293, "//": [ "xlframe_horizontal_front_rotW", "xlframe_horizontal_front_rotS", "xlframe_horizontal_front_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5251 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5293 } ] }, { "id": "vp_xlframe_horizontal_2_front", - "fg": 5246, + "fg": 5288, "//": [ "xlframe_horizontal2_front_rotW", "xlframe_horizontal2_front_rotS", "xlframe_horizontal2_front_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5246 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5288 } ] }, { "id": "vp_xlframe_horizontal_rear", - "fg": 5253, + "fg": 5295, "//": [ "xlframe_horizontal_rear_rotW", "xlframe_horizontal_rear_rotS", "xlframe_horizontal_rear_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5253 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5295 } ] }, { "id": "vp_xlframe_horizontal_2_rear", - "fg": 5247, + "fg": 5289, "//": [ "xlframe_horizontal2_rear_rotW", "xlframe_horizontal2_rear_rotS", "xlframe_horizontal2_rear_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5247 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5289 } ] }, { "id": "vp_xlframe_horizontal_left", - "fg": 5252, + "fg": 5294, "//": [ "xlframe_horizontal_left_rotW", "xlframe_horizontal_left_rotS", "xlframe_horizontal_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5252 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5294 } ] }, { "id": "vp_xlframe_horizontal_2_left", - "fg": 5249, + "fg": 5291, "//": [ "xlframe_horizontal_2_left_rotW", "xlframe_horizontal_2_left_rotS", "xlframe_horizontal_2_left_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5249 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5291 } ] }, { "id": "vp_xlframe_horizontal_right", - "fg": 5254, + "fg": 5296, "//": [ "xlframe_horizontal_right_rotW", "xlframe_horizontal_right_rotS", "xlframe_horizontal_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5254 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5296 } ] }, { "id": "vp_xlframe_horizontal_2_right", - "fg": 5250, + "fg": 5292, "//": [ "xlframe_horizontal_2_right_rotW", "xlframe_horizontal_2_right_rotS", "xlframe_horizontal_2_right_rotE" ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5250 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5292 } ] }, { "id": "vp_xlframe_vertical", - "fg": 5260, + "fg": 5302, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5260 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5302 } ] }, { "id": "vp_xlframe_vertical_2", - "fg": 5261, + "fg": 5303, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5261 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5303 } ] }, { "id": [ "vp_headlight", "vp_headlight_reinforced", "vp_wide_headlight_reinforced", "vp_wide_headlight" ], - "fg": 5269 + "fg": 5311 }, { "id": [ "vp_headlight_ne", "vp_headlight_reinforced_ne", "vp_wide_headlight_reinforced_ne", "vp_wide_headlight_ne" ], - "fg": 5268 + "fg": 5310 }, { "id": [ "vp_headlight_nw", "vp_headlight_reinforced_nw", "vp_wide_headlight_reinforced_nw", "vp_wide_headlight_nw" ], - "fg": 5269 + "fg": 5311 }, { "id": "vp_saddle_motor", - "fg": [ 5271, 5273, 5272, 5270 ], + "fg": [ 5313, 5315, 5314, 5312 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5271, 5273, 5272, 5270 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5313, 5315, 5314, 5312 ] } ] }, { "id": [ "vp_wheel_motorbike", "vp_wheel_motorbike_steerable", "vp_wheel_motorbike_or", "vp_wheel_motorbike_or_steerable" ], - "fg": [ 5279, 5281, 5280, 5278 ], + "fg": [ 5321, 5323, 5322, 5320 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5279, 5281, 5280, 5278 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5321, 5323, 5322, 5320 ] } ] }, { "id": [ "vp_wheel_motorbike_rear", "vp_wheel_motorbike_or_rear" ], - "fg": [ 5275, 5277, 5276, 5274 ], + "fg": [ 5317, 5319, 5318, 5316 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5275, 5277, 5276, 5274 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5317, 5319, 5318, 5316 ] } ] }, { "id": "vp_light_blue", - "fg": [ 5300, 5301 ], + "fg": [ 5342, 5343 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5300, 5301 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5342, 5343 ] } ] }, { "id": "vp_light_red", - "fg": [ 5302, 5303 ], + "fg": [ 5344, 5345 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5302, 5303 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5344, 5345 ] } ] }, { "id": [ "vp_floodlight", "vp_directed_floodlight" ], - "fg": [ 5294, 5296, 5295, 5293 ], + "fg": [ 5336, 5338, 5337, 5335 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5294, 5296, 5295, 5293 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5336, 5338, 5337, 5335 ] } ] }, { "id": "vp_veh_table", - "fg": [ 5283, 5283 ], - "bg": [ 5313, 5312 ], - "additional_tiles": [ { "id": "broken", "fg": 5284, "bg": [ 5313, 5312 ] } ], + "fg": [ 5325, 5325 ], + "bg": [ 5355, 5354 ], + "additional_tiles": [ { "id": "broken", "fg": 5326, "bg": [ 5355, 5354 ] } ], "multitile": true, "rotates": true }, { "id": "vp_minifridge", - "fg": 5307, + "fg": 5349, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5307 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5349 } ] }, { "id": "vp_minifreezer", - "fg": 5306, + "fg": 5348, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5306 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5348 } ] }, { "id": "vp_kitchen_unit", - "fg": 5299, + "fg": 5341, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5299 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5341 } ] }, { "id": "vp_welding_rig", - "fg": 5311, + "fg": 5353, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5311 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5353 } ] }, { "id": "vp_craft_rig", - "fg": 5290, + "fg": 5332, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5290 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5332 } ] }, { "id": "vp_washing_machine", - "fg": 5310, + "fg": 5352, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5310 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5352 } ] }, { "id": "vp_bed", - "fg": 5288, + "fg": 5330, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5288 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5330 } ] }, { "id": "vp_veh_forge", - "fg": 5297, + "fg": 5339, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5297 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5339 } ] }, { "id": "vp_veh_kiln", - "fg": 5298, + "fg": 5340, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5298 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5340 } ] }, { "id": "vp_chemlab", - "fg": 5289, + "fg": 5331, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5289 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5331 } ] }, { "id": [ "vp_aisle_vertical" ], - "fg": 5286, + "fg": 5328, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5286 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5328 } ] }, { "id": [ "vp_aisle_horizontal" ], - "fg": 5285, + "fg": 5327, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5285 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5327 } ] }, { "id": [ "vp_trunk_floor" ], - "fg": 5309, - "bg": 5286, + "fg": 5351, + "bg": 5328, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5309 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5351 } ] }, { "id": [ "vp_wooden_aisle_vertical" ], - "fg": [ 5313, 5312 ], + "fg": [ 5355, 5354 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5313, 5312 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5355, 5354 ] } ] }, { "id": [ "vp_wooden_aisle_horizontal" ], - "fg": [ 5312, 5313 ], + "fg": [ 5354, 5355 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5312, 5313 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5354, 5355 ] } ] }, { "id": [ "vp_lit_aisle_vertical" ], - "fg": 5305, + "fg": 5347, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5305 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5347 } ] }, { "id": [ "vp_lit_aisle_horizontal" ], - "fg": 5304, + "fg": 5346, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5304 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5346 } ] }, - { "id": [ "vp_crane_medium", "vp_crane_small", "vp_crane_medium_internal", "crane_tiny" ], "fg": 5291 }, + { "id": [ "vp_crane_medium", "vp_crane_small", "vp_crane_medium_internal", "crane_tiny" ], "fg": 5333 }, { "id": "vp_omnicam", - "fg": 5282, + "fg": 5324, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5282 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5324 } ] }, - { "id": "vp_ram_spiked", "fg": [ 5326, 5328, 5327, 5329 ], "rotates": true }, - { "id": "vp_ram_wood", "fg": [ 5334, 5336, 5335, 5337 ], "rotates": true }, - { "id": "vp_spike_wood", "fg": [ 5338, 5340, 5339, 5341 ], "rotates": true }, - { "id": "vp_ram_military", "fg": [ 5322, 5324, 5323, 5325 ], "rotates": true }, - { "id": "vp_ram_steel", "fg": [ 5330, 5332, 5331, 5333 ], "rotates": true }, - { "id": "vp_ram_hardsteel", "fg": [ 5318, 5320, 5319, 5321 ], "rotates": true }, - { "id": "vp_ram_alloy", "fg": [ 5314, 5316, 5315, 5317 ], "rotates": true }, + { "id": "vp_ram_spiked", "fg": [ 5368, 5370, 5369, 5371 ], "rotates": true }, + { "id": "vp_ram_wood", "fg": [ 5376, 5378, 5377, 5379 ], "rotates": true }, + { "id": "vp_spike_wood", "fg": [ 5380, 5382, 5381, 5383 ], "rotates": true }, + { "id": "vp_ram_military", "fg": [ 5364, 5366, 5365, 5367 ], "rotates": true }, + { "id": "vp_ram_steel", "fg": [ 5372, 5374, 5373, 5375 ], "rotates": true }, + { "id": "vp_ram_hardsteel", "fg": [ 5360, 5362, 5361, 5363 ], "rotates": true }, + { "id": "vp_ram_alloy", "fg": [ 5356, 5358, 5357, 5359 ], "rotates": true }, { "id": [ "vp_folding_seat", "vp_reclining_seat", "vp_seat" ], "rotates": true, - "fg": [ 5377, 5375, 5370, 5376 ], + "fg": [ 5419, 5417, 5412, 5418 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5377, 5375, 5370, 5376 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5419, 5417, 5412, 5418 ] } ] }, { "id": [ "vp_seat_leather", "vp_reclining_seat_leather" ], "rotates": true, - "fg": [ 5374, 5372, 5371, 5373 ], + "fg": [ 5416, 5414, 5413, 5415 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5374, 5372, 5371, 5373 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5416, 5414, 5413, 5415 ] } ] }, { "id": [ "vp_seat_wood" ], "rotates": true, - "bg": [ 5313, 5312 ], - "fg": [ 5380, 5380, 5381, 5381 ], + "bg": [ 5355, 5354 ], + "fg": [ 5422, 5422, 5423, 5423 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5380, 5380, 5381, 5381 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5422, 5422, 5423, 5423 ] } ] }, { "id": [ "vp_seat_wood_flimsy" ], "rotates": true, - "bg": [ 5313, 5312 ], - "fg": [ 5378, 5378, 5379, 5379 ], + "bg": [ 5355, 5354 ], + "fg": [ 5420, 5420, 5421, 5421 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5378, 5378, 5379, 5379 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5420, 5420, 5421, 5421 ] } ] }, { "id": "vp_seat_back", - "fg": [ 5368, 5369, 5346, 5347 ], + "fg": [ 5410, 5411, 5388, 5389 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5368, 5369, 5346, 5347 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5410, 5411, 5388, 5389 ] } ] }, { "id": "vp_seat_back_right", - "fg": [ 5366, 5367, 5364, 5365 ], + "fg": [ 5408, 5409, 5406, 5407 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5366, 5367, 5364, 5365 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5408, 5409, 5406, 5407 ] } ] }, { "id": "vp_seat_back_left", - "fg": [ 5362, 5363, 5360, 5361 ], + "fg": [ 5404, 5405, 5402, 5403 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5362, 5363, 5360, 5361 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5404, 5405, 5402, 5403 ] } ] }, { "id": "vp_seat_back_leather", - "fg": [ 5358, 5359, 5348, 5349 ], + "fg": [ 5400, 5401, 5390, 5391 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5358, 5359, 5348, 5349 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5400, 5401, 5390, 5391 ] } ] }, { "id": "vp_seat_back_leather_right", - "fg": [ 5356, 5357, 5354, 5355 ], + "fg": [ 5398, 5399, 5396, 5397 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5356, 5357, 5354, 5355 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5398, 5399, 5396, 5397 ] } ] }, { "id": "vp_seat_back_leather_left", - "fg": [ 5352, 5353, 5350, 5351 ], + "fg": [ 5394, 5395, 5392, 5393 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5352, 5353, 5350, 5351 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5394, 5395, 5392, 5393 ] } ] }, { "id": "vp_seat_back_vertical", - "fg": [ 5347, 5368, 5369, 5346 ], + "fg": [ 5389, 5410, 5411, 5388 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5347, 5368, 5369, 5346 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5389, 5410, 5411, 5388 ] } ] }, { "id": "vp_seat_back_vertical_right", - "fg": [ 5365, 5366, 5367, 5364 ], + "fg": [ 5407, 5408, 5409, 5406 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5365, 5366, 5367, 5364 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5407, 5408, 5409, 5406 ] } ] }, { "id": "vp_seat_back_vertical_left", - "fg": [ 5361, 5362, 5363, 5360 ], + "fg": [ 5403, 5404, 5405, 5402 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5361, 5362, 5363, 5360 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5403, 5404, 5405, 5402 ] } ] }, { "id": "vp_seat_back_leather_vertical", - "fg": [ 5349, 5358, 5359, 5348 ], + "fg": [ 5391, 5400, 5401, 5390 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5349, 5358, 5359, 5348 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5391, 5400, 5401, 5390 ] } ] }, { "id": "vp_seat_back_leather_vertical_right", - "fg": [ 5355, 5356, 5357, 5354 ], + "fg": [ 5397, 5398, 5399, 5396 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5355, 5356, 5357, 5354 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5397, 5398, 5399, 5396 ] } ] }, { "id": "vp_seat_back_leather_vertical_left", - "fg": [ 5351, 5352, 5353, 5350 ], + "fg": [ 5393, 5394, 5395, 5392 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5351, 5352, 5353, 5350 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5393, 5394, 5395, 5392 ] } ] }, { "id": [ "vp_saddle", "vp_saddle_pedal" ], - "fg": [ 5343, 5345, 5344, 5342 ], + "fg": [ 5385, 5387, 5386, 5384 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5343, 5345, 5344, 5342 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5385, 5387, 5386, 5384 ] } ] }, { "id": [ "vp_reinforced_solar_panel_v2", "vp_xreinforced_solar_panel_v2" ], - "fg": 5384, + "fg": 5426, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5385 } ] + "additional_tiles": [ { "id": "broken", "fg": 5427 } ] }, { "id": [ "vp_reinforced_solar_panel", "vp_xreinforced_solar_panel" ], - "fg": 5382, + "fg": 5424, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5383 } ] + "additional_tiles": [ { "id": "broken", "fg": 5425 } ] }, { "id": [ "vp_solar_panel_v2", "vp_xsolar_panel_v2" ], - "fg": 5388, + "fg": 5430, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5389 } ] + "additional_tiles": [ { "id": "broken", "fg": 5431 } ] }, { "id": [ "vp_solar_panel_v3", "vp_xsolar_panel_v3" ], - "fg": 5390, + "fg": 5432, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5391 } ] + "additional_tiles": [ { "id": "broken", "fg": 5433 } ] }, { "id": [ "vp_solar_panel", "vp_xsolar_panel" ], - "fg": 5386, + "fg": 5428, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5387 } ] + "additional_tiles": [ { "id": "broken", "fg": 5429 } ] }, { "id": [ @@ -8240,228 +8256,228 @@ "vp_mounted_m60_semi" ], "//": "rifles and machineguns", - "fg": 5393, - "bg": 5392, + "fg": 5435, + "bg": 5434, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5393 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5435 } ] }, { "id": [ "vp_mounted_emp_gun", "vp_mounted_plasma_gun", "vp_plasma_gun", "vp_laser_rifle" ], "//": "energy weapons", - "fg": 5393, - "bg": 5392, + "fg": 5435, + "bg": 5434, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5393 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5435 } ] }, { "id": [ "vp_mounted_hk_g80", "vp_mounted_coilgun" ], "//": "railguns", - "fg": 5393, - "bg": 5392, + "fg": 5435, + "bg": 5434, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5393 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5435 } ] }, { "id": [ "vp_mounted_bigun", "vp_mounted_m134" ], "//": "multibarrel weapons", - "fg": 5393, - "bg": 5392, + "fg": 5435, + "bg": 5434, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5393 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5435 } ] }, { "id": [ "vp_watercannon", "vp_flamethrower", "vp_mounted_chemical_thrower" ], "//": "liquid sprayers", - "fg": 5393, - "bg": 5392, + "fg": 5435, + "bg": 5434, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5393 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5435 } ] }, { "id": [ "vp_tow_launcher" ], "//": "rocket tubes", - "fg": 5393, - "bg": 5392, + "fg": 5435, + "bg": 5434, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5393 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5435 } ] }, { "id": "vp_roller_drum", - "fg": 5394, + "fg": 5436, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5394 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5436 } ] }, { "id": [ "vp_wheel", "vp_wheel_steerable" ], - "fg": 5396, + "fg": 5438, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5396 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5438 } ] }, { "id": [ "vp_wheel_bicycle", "vp_wheel_bicycle_steerable" ], - "fg": [ 5402, 5404, 5403, 5401 ], + "fg": [ 5444, 5446, 5445, 5443 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5402, 5404, 5403, 5401 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5444, 5446, 5445, 5443 ] } ] }, { "id": [ "vp_wheel_bicycle_or" ], - "fg": [ 5398, 5400, 5399, 5397 ], + "fg": [ 5440, 5442, 5441, 5439 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5398, 5400, 5399, 5397 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5440, 5442, 5441, 5439 ] } ] }, { "id": [ "vp_wheel_bicycle_or_rear" ], - "fg": [ 5399, 5397, 5398, 5400 ], + "fg": [ 5441, 5439, 5440, 5442 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5399, 5397, 5398, 5400 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5441, 5439, 5440, 5442 ] } ] }, { "id": [ "vp_wheel_small", "vp_wheel_small_steerable" ], - "fg": [ 5406, 5408, 5407, 5405 ], + "fg": [ 5448, 5450, 5449, 5447 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5406, 5408, 5407, 5405 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5448, 5450, 5449, 5447 ] } ] }, { "id": [ "vp_wheel_bicycle_rear" ], - "fg": [ 5403, 5401, 5402, 5404 ], + "fg": [ 5445, 5443, 5444, 5446 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5403, 5401, 5402, 5404 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5445, 5443, 5444, 5446 ] } ] }, { "id": [ "vp_mounted_spare_tire" ], - "fg": 5395, + "fg": 5437, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5395 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5437 } ] }, { "id": [ "vp_wheel_wide" ], - "fg": 5409, + "fg": 5451, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5409 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5451 } ] }, { "id": [ "vp_wheel_wood" ], - "fg": [ 5415, 5417, 5416, 5414 ], + "fg": [ 5457, 5459, 5458, 5456 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5415, 5417, 5416, 5414 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5457, 5459, 5458, 5456 ] } ] }, { "id": [ "vp_wheel_wood_b" ], - "fg": [ 5411, 5413, 5412, 5410 ], + "fg": [ 5453, 5455, 5454, 5452 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5411, 5413, 5412, 5410 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5453, 5455, 5454, 5452 ] } ] }, { "id": [ "vp_yoke_harness" ], - "fg": [ 5421, 5419, 5418, 5420 ], + "fg": [ 5463, 5461, 5460, 5462 ], "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 5421, 5419, 5418, 5420 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 5463, 5461, 5460, 5462 ] } ] }, { "id": [ "vp_windshield", "vp_windshield_horizontal", "vp_windshield_horizontal_front", "vp_windshield_front_edge" ], - "fg": [ 5422, 5429, 5428, 5427 ], - "additional_tiles": [ { "id": "broken", "fg": 5033, "bg": [ 5422, 5429, 5428, 5427 ] } ], + "fg": [ 5464, 5471, 5470, 5469 ], + "additional_tiles": [ { "id": "broken", "fg": 5075, "bg": [ 5464, 5471, 5470, 5469 ] } ], "multitile": true, "rotates": true }, { "id": [ "vp_windshield_horizontal_rear" ], - "fg": [ 5450, 5457, 5456, 5455 ], - "additional_tiles": [ { "id": "broken", "fg": 5033, "bg": [ 5450, 5457, 5456, 5455 ] } ], + "fg": [ 5492, 5499, 5498, 5497 ], + "additional_tiles": [ { "id": "broken", "fg": 5075, "bg": [ 5492, 5499, 5498, 5497 ] } ], "multitile": true, "rotates": true }, { "id": [ "vp_windshield_horizontal_front_edge" ], - "fg": [ 5424, 5426, 5425, 5423 ], - "additional_tiles": [ { "id": "broken", "fg": 5033, "bg": [ 5424, 5426, 5425, 5423 ] } ], + "fg": [ 5466, 5468, 5467, 5465 ], + "additional_tiles": [ { "id": "broken", "fg": 5075, "bg": [ 5466, 5468, 5467, 5465 ] } ], "multitile": true, "rotates": true }, { "id": [ "vp_windshield_horizontal_rear_edge" ], - "fg": [ 5451, 5454, 5453, 5452 ], - "additional_tiles": [ { "id": "broken", "fg": 5033, "bg": [ 5451, 5454, 5453, 5452 ] } ], + "fg": [ 5493, 5496, 5495, 5494 ], + "additional_tiles": [ { "id": "broken", "fg": 5075, "bg": [ 5493, 5496, 5495, 5494 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_nw", - "fg": [ 5442, 5449, 5448, 5447 ], - "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5442, 5449, 5448, 5447 ] } ], + "fg": [ 5484, 5491, 5490, 5489 ], + "additional_tiles": [ { "id": "broken", "fg": 5077, "bg": [ 5484, 5491, 5490, 5489 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_ne", - "fg": [ 5434, 5441, 5440, 5439 ], - "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5434, 5441, 5440, 5439 ] } ], + "fg": [ 5476, 5483, 5482, 5481 ], + "additional_tiles": [ { "id": "broken", "fg": 5076, "bg": [ 5476, 5483, 5482, 5481 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_sw", - "fg": [ 5475, 5477, 5476, 5474 ], - "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5475, 5477, 5476, 5474 ] } ], + "fg": [ 5517, 5519, 5518, 5516 ], + "additional_tiles": [ { "id": "broken", "fg": 5077, "bg": [ 5517, 5519, 5518, 5516 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_se", - "fg": [ 5467, 5469, 5468, 5466 ], - "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5467, 5469, 5468, 5466 ] } ], + "fg": [ 5509, 5511, 5510, 5508 ], + "additional_tiles": [ { "id": "broken", "fg": 5076, "bg": [ 5509, 5511, 5510, 5508 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_nw_edge", - "fg": [ 5444, 5446, 5445, 5443 ], - "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5444, 5446, 5445, 5443 ] } ], + "fg": [ 5486, 5488, 5487, 5485 ], + "additional_tiles": [ { "id": "broken", "fg": 5077, "bg": [ 5486, 5488, 5487, 5485 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_ne_edge", - "fg": [ 5436, 5438, 5437, 5435 ], - "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5436, 5438, 5437, 5435 ] } ], + "fg": [ 5478, 5480, 5479, 5477 ], + "additional_tiles": [ { "id": "broken", "fg": 5076, "bg": [ 5478, 5480, 5479, 5477 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_sw_edge", - "fg": [ 5470, 5473, 5472, 5471 ], - "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5470, 5473, 5472, 5471 ] } ], + "fg": [ 5512, 5515, 5514, 5513 ], + "additional_tiles": [ { "id": "broken", "fg": 5077, "bg": [ 5512, 5515, 5514, 5513 ] } ], "multitile": true, "rotates": true }, { "id": "vp_windshield_se_edge", - "fg": [ 5462, 5465, 5464, 5463 ], - "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5462, 5465, 5464, 5463 ] } ], + "fg": [ 5504, 5507, 5506, 5505 ], + "additional_tiles": [ { "id": "broken", "fg": 5076, "bg": [ 5504, 5507, 5506, 5505 ] } ], "multitile": true, "rotates": true }, { "id": [ "vp_windshield_vertical_left", "vp_windshield_left" ], - "fg": [ 5430, 5433, 5432, 5431 ], - "additional_tiles": [ { "id": "broken", "fg": 5034, "bg": [ 5430, 5433, 5432, 5431 ] } ], + "fg": [ 5472, 5475, 5474, 5473 ], + "additional_tiles": [ { "id": "broken", "fg": 5076, "bg": [ 5472, 5475, 5474, 5473 ] } ], "multitile": true, "rotates": true }, { "id": [ "vp_windshield_vertical_right", "vp_windshield_right" ], - "fg": [ 5458, 5461, 5460, 5459 ], - "additional_tiles": [ { "id": "broken", "fg": 5035, "bg": [ 5458, 5461, 5460, 5459 ] } ], + "fg": [ 5500, 5503, 5502, 5501 ], + "additional_tiles": [ { "id": "broken", "fg": 5077, "bg": [ 5500, 5503, 5502, 5501 ] } ], "multitile": true, "rotates": true }, @@ -8472,283 +8488,283 @@ "vp_reinforced_windshield_horizontal_front", "vp_reinforced_windshield_front_edge" ], - "fg": 5478, + "fg": 5520, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5478 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5520 } ] }, { "id": [ "vp_reinforced_windshield_horizontal_rear" ], - "fg": 5479, + "fg": 5521, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5479 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5521 } ] }, { "id": [ "vp_reinforced_windshield_horizontal_rear_edge" ], - "fg": 5480, + "fg": 5522, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5480 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5522 } ] }, { "id": "vp_reinforced_windshield_nw", - "fg": 5482, + "fg": 5524, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5482 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5524 } ] }, { "id": "vp_reinforced_windshield_ne", - "fg": 5481, + "fg": 5523, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5481 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5523 } ] }, { "id": "vp_reinforced_windshield_sw", - "fg": 5485, + "fg": 5527, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5485 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5527 } ] }, { "id": "vp_reinforced_windshield_se", - "fg": 5483, + "fg": 5525, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5483 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5525 } ] }, { "id": "vp_reinforced_windshield_sw_edge", - "fg": 5486, + "fg": 5528, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5486 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5528 } ] }, { "id": "vp_reinforced_windshield_se_edge", - "fg": 5484, + "fg": 5526, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5484 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5526 } ] }, { "id": [ "vp_reinforced_windshield_vertical_left", "vp_reinforced_windshield_left" ], - "fg": 5487, + "fg": 5529, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5487 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5529 } ] }, { "id": [ "vp_reinforced_windshield_vertical_right", "vp_reinforced_windshield_right" ], - "fg": 5488, + "fg": 5530, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5488 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5530 } ] }, { "id": "vp_frame_wood_handle", - "fg": 5489, + "fg": 5531, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5489 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5531 } ] }, { "id": "vp_frame_wood_light_handle", - "fg": 5489, + "fg": 5531, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5489 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5531 } ] }, { "id": "vp_frame_wood_vertical_2", - "fg": 5510, + "fg": 5552, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5510 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5552 } ] }, { "id": "vp_frame_wood_vertical_2_unconnected", - "fg": 5513, + "fg": 5555, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5513 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5555 } ] }, { "id": "vp_frame_wood_vertical_2_right", - "fg": 5512, + "fg": 5554, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5512 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5554 } ] }, { "id": "vp_frame_wood_vertical_2_left", - "fg": 5511, + "fg": 5553, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5511 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5553 } ] }, { "id": "vp_frame_wood_vertical", - "fg": 5509, + "fg": 5551, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5509 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5551 } ] }, { "id": "vp_frame_wood_vertical_unconnected", - "fg": 5516, + "fg": 5558, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5516 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5558 } ] }, { "id": "vp_frame_wood_vertical_right", - "fg": 5515, + "fg": 5557, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5515 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5557 } ] }, { "id": "vp_frame_wood_vertical_left", - "fg": 5514, + "fg": 5556, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5514 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5556 } ] }, { "id": "vp_frame_wood_sw", - "fg": 5508, + "fg": 5550, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5508 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5550 } ] }, { "id": "vp_frame_wood_se", - "fg": 5507, + "fg": 5549, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5507 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5549 } ] }, { "id": "vp_frame_wood_nw", - "fg": 5506, + "fg": 5548, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5506 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5548 } ] }, { "id": "vp_frame_wood_ne", - "fg": 5505, + "fg": 5547, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5505 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5547 } ] }, { "id": "vp_frame_wood_horizontal_2", - "fg": 5494, + "fg": 5536, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5494 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5536 } ] }, { "id": "vp_frame_wood_horizontal_2_unconnected", - "fg": 5499, + "fg": 5541, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5499 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5541 } ] }, { "id": "vp_frame_wood_horizontal_2_right", - "fg": 5498, + "fg": 5540, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5498 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5540 } ] }, { "id": "vp_frame_wood_horizontal_2_rear", - "fg": 5497, + "fg": 5539, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5497 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5539 } ] }, { "id": "vp_frame_wood_horizontal_2_left", - "fg": 5496, + "fg": 5538, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5496 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5538 } ] }, { "id": "vp_frame_wood_horizontal_2_front", - "fg": 5495, + "fg": 5537, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5495 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5537 } ] }, { "id": "vp_frame_wood_horizontal", - "fg": 5493, + "fg": 5535, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5493 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5535 } ] }, { "id": "vp_frame_wood_horizontal_unconnected", - "fg": 5504, + "fg": 5546, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5504 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5546 } ] }, { "id": "vp_frame_wood_horizontal_right", - "fg": 5503, + "fg": 5545, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5503 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5545 } ] }, { "id": "vp_frame_wood_horizontal_rear", - "fg": 5502, + "fg": 5544, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5502 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5544 } ] }, { "id": "vp_frame_wood_horizontal_left", - "fg": 5501, + "fg": 5543, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5501 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5543 } ] }, { "id": "vp_frame_wood_horizontal_front", - "fg": 5500, + "fg": 5542, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5500 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5542 } ] }, { "id": "vp_frame_wood_cross", - "fg": 5491, + "fg": 5533, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5491 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5533 } ] }, { "id": [ "vp_frame_wood_cross_unconnected", "vp_frame_wood", "frame_wood" ], - "fg": 5492, + "fg": 5534, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5492 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5534 } ] }, { "id": "vp_frame_wood_cover", - "fg": 5490, + "fg": 5532, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": 5490 } ] + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": 5532 } ] }, { "id": "overlay_female_mutation_BARK", "fg": 137 }, { "id": "overlay_female_mutation_BEAK", "fg": 138 }, @@ -8777,1114 +8793,1142 @@ { "id": "overlay_mutation_eye_gray", "fg": 210 }, { "id": "overlay_mutation_eye_green", "fg": 211 }, { "id": "overlay_mutation_eye_hazel", "fg": 212 }, - { "id": "overlay_female_mutation_SKIN_DARK", "fg": 305 }, - { "id": "overlay_female_mutation_SKIN_MEDIUM", "fg": 306 }, - { "id": "overlay_female_mutation_SKIN_PINK", "fg": 307 }, - { "id": "overlay_female_mutation_SKIN_TAN", "fg": 308 }, - { "id": "overlay_male_mutation_SKIN_DARK", "fg": 309 }, - { "id": "overlay_male_mutation_SKIN_LIGHT", "fg": 310 }, - { "id": "overlay_male_mutation_SKIN_MEDIUM", "fg": 311 }, - { "id": "overlay_male_mutation_SKIN_PINK", "fg": 312 }, - { "id": "overlay_wielded_primitive_shovel", "fg": 508 }, - { "id": "overlay_wielded_scalpel", "fg": 509 }, - { "id": "overlay_female_worn_boots_rubber", "fg": 875 }, - { "id": "overlay_male_worn_boots_rubber", "fg": 876 }, - { "id": "overlay_worn_bookplate", "fg": 884 }, - { "id": "overlay_worn_broken_dimensional_anchor", "fg": 885 }, - { "id": "overlay_worn_diamond_dental_grill", "fg": 890 }, - { "id": "overlay_worn_dimensional_anchor", "fg": 892 }, - { "id": "overlay_worn_dimensional_anchor_on", "fg": 893 }, - { "id": "overlay_worn_eclipse_glasses", "fg": 896 }, - { "id": "overlay_worn_fancy_glasses_bifocal", "fg": 898 }, - { "id": "overlay_worn_fancy_glasses_eye", "fg": 899 }, - { "id": "overlay_worn_fancy_glasses_reading", "fg": 900 }, - { "id": "overlay_worn_fanny", "fg": 901 }, - { "id": "overlay_worn_fur_cat_tail", "fg": 905 }, - { "id": "overlay_worn_fur_collar", "fg": 906 }, - { "id": "overlay_worn_glasses_bifocal", "fg": 907 }, - { "id": "overlay_worn_glasses_eye", "fg": 908 }, - { "id": "overlay_worn_glasses_reading", "fg": 909 }, - { "id": "overlay_worn_gloves_rubber", "fg": 911 }, - { "id": "overlay_worn_gold_ear", "fg": 912 }, - { "id": "overlay_worn_helmet_motor_raised", "fg": 918 }, - { "id": "overlay_worn_leather_collar", "fg": 920 }, - { "id": "overlay_worn_silver_watch", "fg": 933 }, - { "id": "overlay_worn_sunglasses_bifocal", "fg": 936 }, - { "id": "overlay_worn_sunglasses_eye", "fg": 937 }, - { "id": "overlay_worn_sunglasses_reading", "fg": 938 }, - { "id": "overlay_worn_chestguard_hard", "fg": 943 }, - { "id": "1585_f_table_0", "fg": 1303 }, - { "id": "1586_f_table_1", "fg": 1304 }, - { "id": "1587_f_table_2", "fg": 1305 }, - { "id": "1588_f_table_3", "fg": 1306 }, - { "id": "1589_f_table_4", "fg": 1307 }, - { "id": "1590_f_table_5", "fg": 1308 }, - { "id": "f_alien_scar", "fg": 1342 }, - { "id": "f_birdbath", "fg": 1343 }, - { "id": "f_brazier", "fg": 1344 }, - { "id": "f_bulletin", "fg": 1345 }, - { "id": "f_chimney", "fg": 1346 }, - { "id": "f_dandelion", "fg": 1347 }, - { "id": "f_exercise", "fg": 1348 }, - { "id": "f_logstool", "fg": 1349 }, - { "id": "f_pillow_fort", "fg": 1350 }, - { "id": "f_roof_turbine_vent", "fg": 1351 }, - { "id": "f_sink", "fg": 1352 }, - { "id": "f_solar_unit", "fg": 1353 }, - { "id": "f_vent_pipe", "fg": 1354 }, - { "id": "f_crate_c", "fg": 1387 }, - { "id": "f_crate_o", "fg": 1388 }, - { "id": "f_curtain_open", "fg": 1431 }, - { "id": "f_dresser", "fg": 1450 }, - { "id": "f_floor_lamp", "fg": 1455 }, - { "id": "f_glowingbulb", "fg": 1456 }, - { "id": "f_oven", "fg": 1472 }, - { "id": "f_skin_wall_t_connection_e", "fg": 1487 }, - { "id": "f_speaker_cabinet", "fg": 1489 }, - { "id": "f_black_eyed_susan", "fg": 1506 }, - { "id": "f_bluebell", "fg": 1507 }, - { "id": "f_burdock", "fg": 1508 }, - { "id": "f_chamomile", "fg": 1509 }, - { "id": "f_chicory", "fg": 1510 }, - { "id": "f_dahlia", "fg": 1511 }, - { "id": "f_datura", "fg": 1512 }, - { "id": "f_flower_spurge", "fg": 1513 }, - { "id": "f_flower_tulip", "fg": 1514 }, - { "id": "f_lily", "fg": 1515 }, - { "id": "f_mustard", "fg": 1516 }, - { "id": "f_mutpoppy", "fg": 1517 }, - { "id": "f_sunflower", "fg": 1518 }, - { "id": "adhesive_bandages", "fg": 1520 }, - { "id": "airhorn", "fg": 1521 }, - { "id": "alloy_plate", "fg": 1522 }, - { "id": "amplifier_head", "fg": 1523 }, - { "id": "arm_warmers", "fg": 1524 }, - { "id": "autoclave", "fg": 1525 }, - { "id": "bag_plastic", "fg": 1526 }, - { "id": "boltcutters", "fg": 1527 }, - { "id": "bookplate", "fg": 1528 }, - { "id": "bottle_opener", "fg": 1529 }, - { "id": "bow_saw", "fg": 1530 }, - { "id": "boxing_gloves", "fg": 1531 }, - { "id": "broken_dimensional_anchor", "fg": 1532 }, - { "id": "bucket", "fg": 1533 }, - { "id": "butane_tank", "fg": 1534 }, - { "id": "cable_instrument", "fg": 1535 }, - { "id": "cable_xlr", "fg": 1536 }, - { "id": "can_food", "fg": 1537 }, - { "id": "can_opener", "fg": 1538 }, - { "id": "candle", "fg": 1539 }, - { "id": "candle_lit", "fg": 1540 }, - { "id": "cell_phone", "fg": 1541 }, - { "id": "chess", "fg": 1542 }, - { "id": "chopsticks", "fg": 1543 }, - { "id": "clamp", "fg": 1544 }, - { "id": "clay_pot_flower", "fg": 1545 }, - { "id": "comb_pocket", "fg": 1546 }, - { "id": "condom", "fg": 1547 }, - { "id": "cookies", "fg": 1548 }, - { "id": "cutting_board", "fg": 1549 }, - { "id": "dehydrator", "fg": 1550 }, - { "id": "dimensional_anchor", "fg": 1551 }, - { "id": "dimensional_anchor_on", "fg": 1552 }, - { "id": "dnd", "fg": 1553 }, - { "id": "eclipse_glasses", "fg": 1554 }, - { "id": "eyedrops", "fg": 1555 }, - { "id": "fan", "fg": 1556 }, - { "id": "fancy_glasses_bifocal", "fg": 1557 }, - { "id": "fancy_glasses_eye", "fg": 1558 }, - { "id": "fancy_glasses_reading", "fg": 1559 }, - { "id": "feather", "fg": 1560 }, - { "id": "fetid_goop", "fg": 1561 }, - { "id": "flask_hip", "fg": 1562 }, - { "id": "frisbee", "fg": 1564 }, - { "id": "funnel", "fg": 1565 }, - { "id": "glass_sheet", "fg": 1566 }, - { "id": "glasses_bifocale", "fg": 1567 }, - { "id": "glasses_eye", "fg": 1568 }, - { "id": "glasses_reading", "fg": 1569 }, - { "id": "hair_dryer", "fg": 1570 }, - { "id": "hammer_sledge", "fg": 1571 }, - { "id": "hammer_sledge_heavy", "fg": 1572 }, - { "id": "hammer_sledge_short", "fg": 1573 }, - { "id": "hinge", "fg": 1574 }, - { "id": "hotplate", "fg": 1575 }, - { "id": "kettle", "fg": 1576 }, - { "id": "knife_paring", "fg": 1577 }, - { "id": "knife_steak", "fg": 1578 }, - { "id": "knit_scarf", "fg": 1579 }, - { "id": "licorice", "fg": 1580 }, - { "id": "material_limestone", "fg": 1581 }, - { "id": "material_rhodonite", "fg": 1582 }, - { "id": "material_rocksalt", "fg": 1583 }, - { "id": "material_zincite", "fg": 1584 }, - { "id": "mattress", "fg": 1585 }, - { "id": "meat", "fg": 1586 }, - { "id": "meat_tainted", "fg": 1587 }, - { "id": "mil_plate", "fg": 1588 }, - { "id": "mobile_memory_card", "fg": 1589 }, - { "id": "motor_tiny", "fg": 1591 }, - { "id": "mp3", "fg": 1592 }, - { "id": "nanomaterial", "fg": 1593 }, - { "id": "office_holepunch", "fg": 1594 }, - { "id": "paper", "fg": 1595 }, - { "id": "pencil", "fg": 1596 }, - { "id": "permanent_marker", "fg": 1597 }, - { "id": "pipe_fittings", "fg": 1598 }, - { "id": "plastic_straw", "fg": 1599 }, - { "id": "plums", "fg": 1600 }, - { "id": "radio", "fg": 1601 }, - { "id": "radio_on", "fg": 1602 }, - { "id": "rake_plastic", "fg": 1603 }, - { "id": "rapier", "fg": 1604 }, - { "id": "rapier_fake", "fg": 1605 }, - { "id": "rc_car_box", "fg": 1606 }, - { "id": "rebreather_filter", "fg": 1607 }, - { "id": "reinforced_glass_pane", "fg": 1608 }, - { "id": "rhubarb", "fg": 1609 }, - { "id": "rock_flaking", "fg": 1610 }, - { "id": "rock_large", "fg": 1611 }, - { "id": "rock_quern", "fg": 1612 }, - { "id": "rock_sock", "fg": 1613 }, - { "id": "sandpaper", "fg": 1614 }, - { "id": "screwdriver_set", "fg": 1615 }, - { "id": "sm_extinguisher", "fg": 1616 }, - { "id": "spoon", "fg": 1617 }, - { "id": "spray_can", "fg": 1618 }, - { "id": "standard_template_construct", "fg": 1619 }, - { "id": "steel_armor", "fg": 1620 }, - { "id": "steel_plate", "fg": 1621 }, - { "id": "stereo", "fg": 1622 }, - { "id": "stock_pot", "fg": 1623 }, - { "id": "sunglasses", "fg": 1624 }, - { "id": "sunglasses_bifocal", "fg": 1625 }, - { "id": "sunglasses_eye", "fg": 1626 }, - { "id": "sunglasses_reading", "fg": 1627 }, - { "id": "swat_armor", "fg": 1628 }, - { "id": "syringe", "fg": 1629 }, - { "id": "teleumbrella", "fg": 1630 }, - { "id": "toolbox_empty", "fg": 1631 }, - { "id": "tux", "fg": 1632 }, - { "id": "two_way_radio", "fg": 1633 }, - { "id": "vh_autoclave", "fg": 1634 }, - { "id": "wetsuit_spring", "fg": 1635 }, - { "id": "wool_suit", "fg": 1636 }, - { "id": "wrapper", "fg": 1637 }, - { "id": "SICP", "fg": 1638 }, - { "id": "book_fict_soft_ya_rwya", "fg": 1639 }, - { "id": "book_pieces", "fg": 1640 }, - { "id": "manual_first_aid", "fg": 1651 }, - { "id": "novel_adventure", "fg": 1652 }, - { "id": "novel_buddy", "fg": 1653 }, - { "id": "novel_coa", "fg": 1654 }, - { "id": "novel_coa2", "fg": 1655 }, - { "id": "novel_crime", "fg": 1656 }, - { "id": "novel_crime2", "fg": 1657 }, - { "id": "novel_drama", "fg": 1658 }, - { "id": "novel_erotic", "fg": 1659 }, - { "id": "novel_experimental", "fg": 1660 }, - { "id": "novel_fantasy", "fg": 1661 }, - { "id": "novel_horror", "fg": 1662 }, - { "id": "novel_mystery", "fg": 1663 }, - { "id": "novel_pulp", "fg": 1664 }, - { "id": "novel_road", "fg": 1665 }, - { "id": "novel_romance", "fg": 1666 }, - { "id": "novel_samurai", "fg": 1667 }, - { "id": "novel_satire", "fg": 1668 }, - { "id": "novel_scifi", "fg": 1669 }, - { "id": "novel_sports", "fg": 1670 }, - { "id": "novel_spy", "fg": 1671 }, - { "id": "novel_swash", "fg": 1672 }, - { "id": "novel_thriller", "fg": 1673 }, - { "id": "novel_tragedy", "fg": 1674 }, - { "id": "novel_war", "fg": 1675 }, - { "id": "novel_war2", "fg": 1676 }, - { "id": "novel_western", "fg": 1677 }, - { "id": "paperback_novel", "fg": 1678 }, - { "id": "winemaking_beginner", "fg": 1679 }, - { "id": "mre_box", "fg": 1681 }, - { "id": "mre_lemontuna_box", "fg": 1684 }, - { "id": "rifle_case_soft", "fg": 1739 }, - { "id": "rifle_case_soft_2", "fg": 1740 }, - { "id": "rifle_case_soft_leather_2", "fg": 1742 }, - { "id": "rucksack", "fg": 1743 }, - { "id": "bubblewrap", "fg": 1764 }, - { "id": "clay_quern", "fg": 1775 }, - { "id": "balaclava", "fg": 1777 }, - { "id": "beret", "fg": 1778 }, - { "id": "boxer_briefs", "fg": 1779 }, - { "id": "boxer_shorts", "fg": 1780 }, - { "id": "boy_shorts", "fg": 1781 }, - { "id": "bra", "fg": 1782 }, - { "id": "briefs", "fg": 1783 }, - { "id": "coat_lab", "fg": 1784 }, - { "id": "corset", "fg": 1785 }, - { "id": "cowboy_hat", "fg": 1786 }, - { "id": "hat_ball", "fg": 1787 }, - { "id": "hat_cotton", "fg": 1788 }, - { "id": "hat_fur", "fg": 1789 }, - { "id": "helmet_barbute", "fg": 1790 }, - { "id": "helmet_chitin", "fg": 1791 }, - { "id": "helmet_kabuto", "fg": 1792 }, - { "id": "hoodie", "fg": 1793 }, - { "id": "jeans", "fg": 1794 }, - { "id": "longshirt", "fg": 1795 }, - { "id": "mask_dust", "fg": 1796 }, - { "id": "polo_shirt", "fg": 1797 }, - { "id": "ragpouch", "fg": 1798 }, - { "id": "skirt", "fg": 1799 }, - { "id": "sneakers", "fg": 1800 }, - { "id": "socks", "fg": 1801 }, - { "id": "striped_pants", "fg": 1802 }, - { "id": "striped_shirt", "fg": 1803 }, - { "id": "sweater", "fg": 1804 }, - { "id": "sweatshirt", "fg": 1805 }, - { "id": "tshirt", "fg": 1806 }, - { "id": "turban", "fg": 1807 }, - { "id": "cola", "fg": 1845 }, - { "id": "juice", "fg": 1849 }, - { "id": "milk", "fg": 1851 }, - { "id": "purple_drink", "fg": 1855 }, - { "id": "tomato_juice", "fg": 1856 }, - { "id": "vinegar", "fg": 1857 }, - { "id": "plunger_futuristic", "fg": 1907 }, - { "id": "plunger_toilet", "fg": 1908 }, - { "id": "portable_game", "fg": 1910 }, - { "id": "towel", "fg": 1974 }, - { "id": "towel_soiled", "fg": 1975 }, - { "id": "towel_wet", "fg": 1976 }, - { "id": "1895sbl", "fg": 1984 }, - { "id": "AT4", "fg": 1985 }, - { "id": "LAW", "fg": 1986 }, - { "id": "M24", "fg": 1987 }, - { "id": "RPG", "fg": 1988 }, - { "id": "USAS_12", "fg": 1989 }, - { "id": "airspeargun", "fg": 1990 }, - { "id": "ak74", "fg": 1992 }, - { "id": "american_180", "fg": 1993 }, - { "id": "an94", "fg": 1994 }, - { "id": "ar10", "fg": 1995 }, - { "id": "ar15", "fg": 1996 }, - { "id": "arx160", "fg": 1997 }, - { "id": "as50", "fg": 1998 }, - { "id": "atgm_launcher", "fg": 1999 }, - { "id": "bbgun", "fg": 2000 }, - { "id": "bfg50", "fg": 2001 }, - { "id": "bh_m89", "fg": 2002 }, - { "id": "blunderbuss", "fg": 2003 }, - { "id": "browning_blr", "fg": 2004 }, - { "id": "chemical_thrower", "fg": 2006 }, - { "id": "coilgun", "fg": 2007 }, - { "id": "colt_lightning", "fg": 2008 }, - { "id": "colt_ro635", "fg": 2009 }, - { "id": "combination_gun", "fg": 2010 }, - { "id": "cx4", "fg": 2011 }, - { "id": "doublespeargun", "fg": 2012 }, - { "id": "emp_gun", "fg": 2013 }, - { "id": "famas", "fg": 2014 }, - { "id": "flamethrower", "fg": 2015 }, - { "id": "fn_fal", "fg": 2016 }, - { "id": "fs2000", "fg": 2017 }, - { "id": "ftk93", "fg": 2018 }, - { "id": "garand", "fg": 2019 }, - { "id": "heavy_rail_rifle", "fg": 2020 }, - { "id": "helsing", "fg": 2021 }, - { "id": "henry_big_boy", "fg": 2022 }, - { "id": "hk417_13", "fg": 2023 }, - { "id": "hk_g3", "fg": 2024 }, - { "id": "hk_g36", "fg": 2025 }, - { "id": "hk_g80", "fg": 2026 }, - { "id": "hk_mp5k", "fg": 2027 }, - { "id": "hk_mp5sd", "fg": 2028 }, - { "id": "iwi_tavor_x95_300blk", "fg": 2029 }, - { "id": "ksg-25", "fg": 2030 }, - { "id": "ksg", "fg": 2031 }, - { "id": "ksub2000", "fg": 2032 }, - { "id": "laser_cannon", "fg": 2033 }, - { "id": "laser_rifle", "fg": 2034 }, - { "id": "lever_shotgun", "fg": 2035 }, - { "id": "longrifle_flintlock", "fg": 2036 }, - { "id": "m107a1", "fg": 2037 }, - { "id": "m110a1", "fg": 2038 }, - { "id": "m134", "fg": 2039 }, - { "id": "m14ebr", "fg": 2040 }, - { "id": "m1903", "fg": 2043 }, - { "id": "m1918", "fg": 2044 }, - { "id": "m1a", "fg": 2045 }, - { "id": "m2010", "fg": 2046 }, - { "id": "m231pfw", "fg": 2047 }, - { "id": "m240", "fg": 2048 }, - { "id": "m27_assault_rifle_var_h&k416a5", "fg": 2050 }, - { "id": "m27_assault_rifle_var_m27iar", "fg": 2051 }, - { "id": "m27_assault_rifle_var_m38dmr", "fg": 2052 }, - { "id": "m27_assault_rifle_var_scar_l", "fg": 2053 }, - { "id": "m2browning", "fg": 2054 }, - { "id": "m2browning_sawn", "fg": 2055 }, - { "id": "m3_carlgustav", "fg": 2056 }, - { "id": "m4_carbine_var_m4a1", "fg": 2057 }, - { "id": "m4_carlgustav", "fg": 2058 }, - { "id": "m79", "fg": 2060 }, - { "id": "mark19", "fg": 2061 }, - { "id": "marlin_9a", "fg": 2062 }, - { "id": "mininuke_launcher", "fg": 2063 }, - { "id": "mosin44", "fg": 2064 }, - { "id": "mosin44_ebr", "fg": 2065 }, - { "id": "mosin91_30", "fg": 2066 }, - { "id": "mosin91_30_ebr", "fg": 2067 }, - { "id": "mossberg_500", "fg": 2068 }, - { "id": "mossberg_500_var_mossberg_500_security", "fg": 2069 }, - { "id": "mossberg_590", "fg": 2070 }, - { "id": "mossberg_590_var_SPAS_12", "fg": 2071 }, - { "id": "mossberg_930", "fg": 2072 }, - { "id": "mossberg_930_var_m1014", "fg": 2073 }, - { "id": "mp18", "fg": 2074 }, - { "id": "needlegun", "fg": 2076 }, - { "id": "pamd68", "fg": 2077 }, - { "id": "pamd71z", "fg": 2078 }, - { "id": "pipe_combination_gun", "fg": 2079 }, - { "id": "plasma_gun", "fg": 2080 }, - { "id": "plasma_rifle", "fg": 2081 }, - { "id": "ppsh", "fg": 2082 }, - { "id": "rebar_rifle", "fg": 2083 }, - { "id": "remington700_270", "fg": 2084 }, - { "id": "remington_700", "fg": 2085 }, - { "id": "remington_870", "fg": 2086 }, - { "id": "remington_870_breacher", "fg": 2087 }, - { "id": "remington_870_express", "fg": 2088 }, - { "id": "remington_870_var_browning_a5", "fg": 2089 }, - { "id": "remington_870_var_remington_1100", "fg": 2090 }, - { "id": "rifle_flintlock", "fg": 2091 }, - { "id": "rm120c", "fg": 2092 }, - { "id": "rm20", "fg": 2093 }, - { "id": "rm298", "fg": 2094 }, - { "id": "rm451_flamethrower", "fg": 2095 }, - { "id": "rm51_assault_rifle", "fg": 2096 }, - { "id": "rm614_lmg", "fg": 2097 }, - { "id": "rm802", "fg": 2098 }, - { "id": "rm88_battle_rifle", "fg": 2099 }, - { "id": "ruger_1022", "fg": 2100 }, - { "id": "ruger_mini", "fg": 2101 }, - { "id": "saiga_12", "fg": 2102 }, - { "id": "saiga_410", "fg": 2103 }, - { "id": "savage_111f", "fg": 2104 }, - { "id": "scar_h", "fg": 2105 }, - { "id": "sharps", "fg": 2106 }, - { "id": "shotgun_410", "fg": 2107 }, - { "id": "shotgun_d", "fg": 2108 }, - { "id": "shotgun_s", "fg": 2109 }, - { "id": "sig552", "fg": 2110 }, - { "id": "sig_mcx_rattler_sbr", "fg": 2111 }, - { "id": "skorpion_82", "fg": 2112 }, - { "id": "sks", "fg": 2113 }, - { "id": "smg_9mm", "fg": 2115 }, - { "id": "speargun", "fg": 2116 }, - { "id": "sten", "fg": 2117 }, - { "id": "steyr_aug", "fg": 2118 }, - { "id": "surv_rocket_launcher", "fg": 2119 }, - { "id": "survivor_special_700", "fg": 2120 }, - { "id": "tac50", "fg": 2121 }, - { "id": "tavor_12", "fg": 2122 }, - { "id": "tihar", "fg": 2123 }, - { "id": "tommygun", "fg": 2124 }, - { "id": "trex_gun", "fg": 2125 }, - { "id": "weatherby_5", "fg": 2126 }, - { "id": "win70", "fg": 2127 }, - { "id": "winchester_1887", "fg": 2128 }, - { "id": "winchester_1897", "fg": 2129 }, - { "id": "broadsword", "fg": 2130 }, - { "id": "cards_magic", "fg": 2131 }, - { "id": "corpse", "fg": 2132 }, - { "id": "corpse_mon_mantis_giant", "fg": 2246 }, - { "id": "corpse_mon_spawn_raptor", "fg": 2247 }, - { "id": "foodperson_mask", "fg": 2248 }, - { "id": "foodperson_mask_on", "fg": 2249 }, - { "id": "gloves_fingerless", "fg": 2250 }, - { "id": "gloves_leather", "fg": 2251 }, - { "id": "gloves_liner", "fg": 2252 }, - { "id": "hand_pump", "fg": 2253 }, - { "id": "inflatable_dragon", "fg": 2254 }, - { "id": "analytical_set_basic", "fg": 2255 }, - { "id": "balance_small", "fg": 2256 }, - { "id": "bandages_makeshift_bleached", "fg": 2258 }, - { "id": "beaker", "fg": 2259 }, - { "id": "flask_glass", "fg": 2260 }, - { "id": "gradcylinder", "fg": 2261 }, - { "id": "ph_meter", "fg": 2262 }, - { "id": "rack_test_tube", "fg": 2263 }, - { "id": "spectrophotometer", "fg": 2264 }, - { "id": "test_tube", "fg": 2265 }, - { "id": "voltmeter", "fg": 2266 }, - { "id": "10mm", "fg": 2267 }, - { "id": "223", "fg": 2268 }, - { "id": "22_cb", "fg": 2269 }, - { "id": "22_fmj", "fg": 2270 }, - { "id": "22_lr", "fg": 2271 }, - { "id": "22_ratshot", "fg": 2272 }, - { "id": "3006_incendiary", "fg": 2273 }, - { "id": "36navy", "fg": 2274 }, - { "id": "38_special", "fg": 2275 }, - { "id": "38_super", "fg": 2276 }, - { "id": "40fmj", "fg": 2277 }, - { "id": "40mm_flechet", "fg": 2278 }, - { "id": "40mm_shot", "fg": 2279 }, - { "id": "44army", "fg": 2280 }, - { "id": "44magnum", "fg": 2281 }, - { "id": "45_acp", "fg": 2282 }, - { "id": "45_jhp", "fg": 2283 }, - { "id": "500_Magnum", "fg": 2284 }, - { "id": "50match", "fg": 2285 }, - { "id": "545-ap", "fg": 2286 }, - { "id": "762_51", "fg": 2287 }, - { "id": "762_51_incendiary", "fg": 2288 }, - { "id": "762_m43", "fg": 2289 }, - { "id": "9mmP", "fg": 2290 }, - { "id": "9mmfmj", "fg": 2291 }, - { "id": "abstractmap", "fg": 2292 }, - { "id": "acidchitin_piece", "fg": 2293 }, - { "id": "acidchitin_plate", "fg": 2294 }, - { "id": "acoustic_guitar", "fg": 2295 }, - { "id": "aluminum_foil", "fg": 2296 }, - { "id": "ammonia", "fg": 2297 }, - { "id": "arming_sword", "fg": 2298 }, - { "id": "armor_lorica", "fg": 2299 }, - { "id": "arrowrest", "fg": 2300 }, - { "id": "atgm_heat", "fg": 2301 }, - { "id": "atomic_coffee", "fg": 2302 }, - { "id": "b_paint", "fg": 2303 }, - { "id": "bag_canvas_small", "fg": 2304 }, - { "id": "bagpipes", "fg": 2305 }, - { "id": "ballistic_vest_esapi", "fg": 2306 }, - { "id": "banjo", "fg": 2307 }, - { "id": "barley", "fg": 2308 }, - { "id": "basketball", "fg": 2309 }, - { "id": "battleaxe", "fg": 2310 }, - { "id": "beer", "fg": 2311 }, - { "id": "belgian_ale", "fg": 2312 }, - { "id": "bfipowder", "fg": 2314 }, - { "id": "bindle", "fg": 2315 }, - { "id": "bio_int_enhancer", "fg": 2316 }, - { "id": "birchbark", "fg": 2317 }, - { "id": "bismuth", "fg": 2318 }, - { "id": "blanket", "fg": 2319 }, - { "id": "bleach", "fg": 2320 }, - { "id": "blueberries_cooked", "fg": 2321 }, - { "id": "boiled_egg", "fg": 2322 }, - { "id": "bone_flute", "fg": 2323 }, - { "id": "bone_human", "fg": 2324 }, - { "id": "boots_acidchitin", "fg": 2325 }, - { "id": "boots_bunker", "fg": 2326 }, - { "id": "boots_hsurvivor", "fg": 2327 }, - { "id": "boots_lsurvivor", "fg": 2328 }, - { "id": "boots_survivor", "fg": 2329 }, - { "id": "boots_western", "fg": 2330 }, - { "id": "bottle_folding", "fg": 2331 }, - { "id": "bottle_metal", "fg": 2332 }, - { "id": "bottle_plastic_smal", "fg": 2333 }, - { "id": "bowling_pin", "fg": 2334 }, - { "id": "briefcase", "fg": 2335 }, - { "id": "broken_manhack", "fg": 2336 }, - { "id": "broken_skitterbot", "fg": 2337 }, - { "id": "broth_bone", "fg": 2338 }, - { "id": "bum_wine", "fg": 2339 }, - { "id": "camisole", "fg": 2340 }, - { "id": "can_food_unsealed", "fg": 2341 }, - { "id": "case_violin", "fg": 2342 }, - { "id": "cattail_rhizome", "fg": 2343 }, - { "id": "cattail_stalk", "fg": 2344 }, - { "id": "cell_phone_flashlight", "fg": 2345 }, - { "id": "ceramic_armor", "fg": 2346 }, - { "id": "ceramic_shard", "fg": 2347 }, - { "id": "chainmail_arms", "fg": 2348 }, - { "id": "chainmail_hauberk", "fg": 2349 }, - { "id": "chainmail_hood", "fg": 2350 }, - { "id": "chainmail_legs", "fg": 2351 }, - { "id": "chainmail_vest", "fg": 2352 }, - { "id": "chem_aluminium_powder", "fg": 2353 }, - { "id": "chem_aluminium_sulphate", "fg": 2354 }, - { "id": "chem_hexamine", "fg": 2355 }, - { "id": "chestwrap", "fg": 2356 }, - { "id": "chestwrap_fur", "fg": 2357 }, - { "id": "chestwrap_leather", "fg": 2358 }, - { "id": "chestwrap_wool", "fg": 2359 }, - { "id": "chili", "fg": 2360 }, - { "id": "chili_pepper", "fg": 2361 }, - { "id": "chipper", "fg": 2362 }, - { "id": "choc_drink", "fg": 2363 }, - { "id": "chocpretzels", "fg": 2364 }, - { "id": "cig_butt", "fg": 2365 }, - { "id": "cig_lit", "fg": 2366 }, - { "id": "clarinet", "fg": 2367 }, - { "id": "coffee", "fg": 2368 }, - { "id": "colamdew", "fg": 2369 }, - { "id": "con_milk", "fg": 2370 }, - { "id": "con_mix", "fg": 2371 }, - { "id": "concrete", "fg": 2372 }, - { "id": "contacts", "fg": 2373 }, - { "id": "cooking_oil", "fg": 2374 }, - { "id": "copper", "fg": 2375 }, - { "id": "copper_bracelet", "fg": 2376 }, - { "id": "copper_knife", "fg": 2377 }, - { "id": "corndogs_cooked", "fg": 2378 }, - { "id": "corndogs_frozen", "fg": 2379 }, - { "id": "cow_bell", "fg": 2380 }, - { "id": "crispycran", "fg": 2381 }, - { "id": "crown_golden", "fg": 2382 }, - { "id": "cs_lajatang_off", "fg": 2383 }, - { "id": "cured_hide", "fg": 2384 }, - { "id": "cured_pelt", "fg": 2385 }, - { "id": "curry_meat", "fg": 2386 }, - { "id": "curry_powder", "fg": 2387 }, - { "id": "curry_veggy", "fg": 2388 }, - { "id": "dahlia_baked", "fg": 2390 }, - { "id": "dao", "fg": 2391 }, - { "id": "detergent", "fg": 2392 }, - { "id": "diamond", "fg": 2393 }, - { "id": "diamond_dental_grill", "fg": 2394 }, - { "id": "diazepam", "fg": 2395 }, - { "id": "distaff_spindle", "fg": 2397 }, - { "id": "down_blanket", "fg": 2398 }, - { "id": "down_pillow", "fg": 2399 }, - { "id": "dry_fish", "fg": 2400 }, - { "id": "dry_meat_tainted", "fg": 2401 }, - { "id": "dry_veggy_tainted", "fg": 2402 }, - { "id": "egg_bird", "fg": 2403 }, - { "id": "egg_reptile", "fg": 2404 }, - { "id": "eink_tablet_pc", "fg": 2405 }, - { "id": "elec_hairtrimmer", "fg": 2406 }, - { "id": "electric_blanket", "fg": 2407 }, - { "id": "emer_blanket", "fg": 2408 }, - { "id": "emer_blanket_on", "fg": 2409 }, - { "id": "esbit_stove", "fg": 2410 }, - { "id": "estoc", "fg": 2411 }, - { "id": "fat", "fg": 2412 }, - { "id": "fat_tainted", "fg": 2413 }, - { "id": "felt_patch", "fg": 2414 }, - { "id": "file", "fg": 2415 }, - { "id": "fire_lance", "fg": 2417 }, - { "id": "firehelmet", "fg": 2418 }, - { "id": "fish", "fg": 2419 }, - { "id": "fish_smoked", "fg": 2420 }, - { "id": "fishing_hook_basic", "fg": 2421 }, - { "id": "fishing_rod_basic", "fg": 2422 }, - { "id": "fishing_rod_professional", "fg": 2423 }, - { "id": "flask_yeast", "fg": 2424 }, - { "id": "flatbread", "fg": 2425 }, - { "id": "flint_steel", "fg": 2426 }, - { "id": "flute", "fg": 2427 }, - { "id": "folding_poncho", "fg": 2428 }, - { "id": "folding_poncho_on", "fg": 2429 }, - { "id": "food_processor", "fg": 2430 }, - { "id": "footrags", "fg": 2431 }, - { "id": "footrags_fur", "fg": 2432 }, - { "id": "footrags_leather", "fg": 2433 }, - { "id": "footrags_wool", "fg": 2434 }, - { "id": "fruit_cooked", "fg": 2435 }, - { "id": "fungicide", "fg": 2436 }, - { "id": "fur_blanket", "fg": 2437 }, - { "id": "g_carpet", "fg": 2438 }, - { "id": "g_paint", "fg": 2439 }, - { "id": "g_shovel", "fg": 2440 }, - { "id": "gal_drum", "fg": 2441 }, - { "id": "gambeson", "fg": 2442 }, - { "id": "garlic", "fg": 2443 }, - { "id": "gasdiscount_gold", "fg": 2444 }, - { "id": "gasdiscount_platinum", "fg": 2445 }, - { "id": "gasdiscount_silver", "fg": 2446 }, - { "id": "glass_shard", "fg": 2447 }, - { "id": "glass_shiv", "fg": 2448 }, - { "id": "glass_tinted", "fg": 2449 }, - { "id": "gloves_wraps_fur", "fg": 2450 }, - { "id": "gold_bracelet", "fg": 2451 }, - { "id": "gold_dental_grill", "fg": 2452 }, - { "id": "golf_ball", "fg": 2453 }, - { "id": "gown", "fg": 2454 }, - { "id": "grapnel", "fg": 2455 }, - { "id": "h&k416a5", "fg": 2456 }, - { "id": "hacksaw", "fg": 2457 }, - { "id": "halligan", "fg": 2458 }, - { "id": "halter_top", "fg": 2459 }, - { "id": "hand_axe", "fg": 2460 }, - { "id": "hand_paddles", "fg": 2461 }, - { "id": "hand_rims", "fg": 2462 }, - { "id": "handflare", "fg": 2463 }, - { "id": "handflare_dead", "fg": 2464 }, - { "id": "handflare_lit", "fg": 2465 }, - { "id": "handrolled_cig", "fg": 2466 }, - { "id": "hat_hard", "fg": 2467 }, - { "id": "hat_hard_hooded", "fg": 2468 }, - { "id": "hat_knit", "fg": 2469 }, - { "id": "hat_newsboy", "fg": 2470 }, - { "id": "hbolt_metal", "fg": 2471 }, - { "id": "hbolt_wood", "fg": 2472 }, - { "id": "hdframe", "fg": 2473 }, - { "id": "heatpack", "fg": 2474 }, - { "id": "heatpack_used", "fg": 2475 }, - { "id": "helmet_army", "fg": 2476 }, - { "id": "hickory_nut", "fg": 2477 }, - { "id": "hickory_nut_roasted", "fg": 2478 }, - { "id": "hickory_nut_unshell", "fg": 2479 }, - { "id": "hickory_root", "fg": 2480 }, - { "id": "hobo_stove", "fg": 2481 }, - { "id": "holy_symbol", "fg": 2482 }, - { "id": "honey_bottled", "fg": 2483 }, - { "id": "hotdogs_cooked", "fg": 2484 }, - { "id": "i_combustion", "fg": 2485 }, - { "id": "iceaxe", "fg": 2486 }, - { "id": "inflatable_boat", "fg": 2487 }, - { "id": "inflatable_section", "fg": 2488 }, - { "id": "jacket_army", "fg": 2489 }, - { "id": "jacket_jean", "fg": 2490 }, - { "id": "jacket_leather", "fg": 2491 }, - { "id": "jacket_light", "fg": 2492 }, - { "id": "jam_strawberries", "fg": 2493 }, - { "id": "ji", "fg": 2494 }, - { "id": "jian", "fg": 2495 }, - { "id": "joint_roach", "fg": 2497 }, - { "id": "khopesh", "fg": 2498 }, - { "id": "knife", "fg": 2499 }, - { "id": "kukri", "fg": 2500 }, - { "id": "l-stick", "fg": 2501 }, - { "id": "l-stick_on", "fg": 2502 }, - { "id": "lead_ball", "fg": 2503 }, - { "id": "leg_warmers_f", "fg": 2504 }, - { "id": "link_sheet", "fg": 2505 }, - { "id": "locket", "fg": 2506 }, - { "id": "longsword", "fg": 2507 }, - { "id": "longsword_fake", "fg": 2508 }, - { "id": "mace", "fg": 2509 }, - { "id": "maid_dress", "fg": 2510 }, - { "id": "maid_hat", "fg": 2511 }, - { "id": "makeshift_axe", "fg": 2512 }, - { "id": "makeshift_crowbar", "fg": 2513 }, - { "id": "makeshift_funnel", "fg": 2514 }, - { "id": "makeshift_hammer", "fg": 2515 }, - { "id": "marble", "fg": 2516 }, - { "id": "marshmallow", "fg": 2517 }, - { "id": "material_aluminium_ingot", "fg": 2518 }, - { "id": "material_sand", "fg": 2519 }, - { "id": "material_shrd_limestone", "fg": 2520 }, - { "id": "meat_salted", "fg": 2521 }, - { "id": "mess_tin", "fg": 2522 }, - { "id": "metal_funnel", "fg": 2523 }, - { "id": "metal_tank_little", "fg": 2524 }, - { "id": "metal_tank_small", "fg": 2525 }, - { "id": "meth", "fg": 2526 }, - { "id": "mjolnir", "fg": 2527 }, - { "id": "morphine", "fg": 2528 }, - { "id": "mortar_pestle", "fg": 2529 }, - { "id": "mouthpiece", "fg": 2530 }, - { "id": "mustard", "fg": 2531 }, - { "id": "mutagen_bird", "fg": 2532 }, - { "id": "mutagen_cattle", "fg": 2533 }, - { "id": "mutagen_elfa", "fg": 2534 }, - { "id": "mutagen_fish", "fg": 2535 }, - { "id": "mutagen_plant", "fg": 2536 }, - { "id": "mutagen_slime", "fg": 2537 }, - { "id": "nachosc", "fg": 2538 }, - { "id": "naginata", "fg": 2539 }, - { "id": "nanoskirt", "fg": 2540 }, - { "id": "omnicamera", "fg": 2541 }, - { "id": "onion_rings", "fg": 2542 }, - { "id": "oxy_torch", "fg": 2543 }, - { "id": "p_carpet", "fg": 2544 }, - { "id": "p_paint", "fg": 2545 }, - { "id": "panties", "fg": 2546 }, - { "id": "pants", "fg": 2547 }, - { "id": "pants_army", "fg": 2548 }, - { "id": "pants_cargo", "fg": 2549 }, - { "id": "pants_checkered", "fg": 2550 }, - { "id": "pants_leather", "fg": 2551 }, - { "id": "pants_ski", "fg": 2552 }, - { "id": "pillow", "fg": 2553 }, - { "id": "pitchfork", "fg": 2554 }, - { "id": "plastic_shopping_bag", "fg": 2555 }, - { "id": "pliers", "fg": 2556 }, - { "id": "plut_cell", "fg": 2557 }, - { "id": "pool_ball", "fg": 2558 }, - { "id": "pot_canning", "fg": 2559 }, - { "id": "pot_copper", "fg": 2560 }, - { "id": "pot_makeshift", "fg": 2561 }, - { "id": "pot_makeshift_copper", "fg": 2562 }, - { "id": "powder_eggs", "fg": 2563 }, - { "id": "powered_earmuffs", "fg": 2564 }, - { "id": "protein_powder", "fg": 2565 }, - { "id": "qiang", "fg": 2566 }, - { "id": "r_carpet", "fg": 2567 }, - { "id": "r_paint", "fg": 2568 }, - { "id": "radio_car", "fg": 2569 }, - { "id": "radio_car_on", "fg": 2570 }, - { "id": "radiocontrol", "fg": 2571 }, - { "id": "raw_fur", "fg": 2572 }, - { "id": "raw_hleather", "fg": 2573 }, - { "id": "razor_blade", "fg": 2574 }, - { "id": "ref_lighter", "fg": 2575 }, - { "id": "reinforced_glass_sheet", "fg": 2576 }, - { "id": "reloaded_454_Casull", "fg": 2577 }, - { "id": "reloaded_shot_he", "fg": 2578 }, - { "id": "reloaded_shot_slug", "fg": 2579 }, - { "id": "reloaded_signal_fla", "fg": 2580 }, - { "id": "reloaded_ss", "fg": 2581 }, - { "id": "reloaded_sw", "fg": 2582 }, - { "id": "reloaded_xdart", "fg": 2583 }, - { "id": "ring_engagement", "fg": 2584 }, - { "id": "robe", "fg": 2585 }, - { "id": "rollerskates", "fg": 2586 }, - { "id": "sandwich_cheese", "fg": 2587 }, - { "id": "sandwich_cheese_gri", "fg": 2588 }, - { "id": "sandwich_cucumber", "fg": 2589 }, - { "id": "sandwich_honey", "fg": 2590 }, - { "id": "sandwich_jam", "fg": 2591 }, - { "id": "sandwich_pb", "fg": 2592 }, - { "id": "sandwich_pbj", "fg": 2593 }, - { "id": "sandwich_pbm", "fg": 2594 }, - { "id": "sandwich_sauce", "fg": 2595 }, - { "id": "sausage_wasteland", "fg": 2596 }, - { "id": "saxophone", "fg": 2597 }, - { "id": "scabbard", "fg": 2598 }, - { "id": "scrap_bronze", "fg": 2599 }, - { "id": "scrap_copper", "fg": 2600 }, - { "id": "sharp_toothbrush", "fg": 2601 }, - { "id": "shavingkit", "fg": 2602 }, - { "id": "sheath", "fg": 2603 }, - { "id": "sheet_metal_small", "fg": 2604 }, - { "id": "shillelagh", "fg": 2605 }, - { "id": "shorts_denim", "fg": 2606 }, - { "id": "shot_00", "fg": 2607 }, - { "id": "shot_bird", "fg": 2608 }, - { "id": "shot_flechette", "fg": 2609 }, - { "id": "silver_bracelet", "fg": 2610 }, - { "id": "silver_small", "fg": 2611 }, - { "id": "skirt_leather", "fg": 2612 }, - { "id": "smart_phone", "fg": 2613 }, - { "id": "smart_phone_flashlight", "fg": 2614 }, - { "id": "soap", "fg": 2615 }, - { "id": "soup_chicken", "fg": 2616 }, - { "id": "soup_dumplings", "fg": 2617 }, - { "id": "soup_fish", "fg": 2618 }, - { "id": "soup_mushroom", "fg": 2619 }, - { "id": "soup_tomato", "fg": 2620 }, - { "id": "soup_veggy", "fg": 2621 }, - { "id": "soup_woods", "fg": 2622 }, - { "id": "spear_dory", "fg": 2623 }, - { "id": "spear_forked", "fg": 2624 }, - { "id": "spear_stone", "fg": 2625 }, - { "id": "spider_egg", "fg": 2626 }, - { "id": "sports_bra", "fg": 2627 }, - { "id": "stepladder", "fg": 2628 }, - { "id": "stomach", "fg": 2629 }, - { "id": "straw_doll", "fg": 2630 }, - { "id": "sugar_beet", "fg": 2631 }, - { "id": "survivor_hairtrimmer", "fg": 2632 }, - { "id": "survivor_scope", "fg": 2633 }, - { "id": "survivor_vest", "fg": 2634 }, - { "id": "sushi_fishroll", "fg": 2635 }, - { "id": "swag_bag", "fg": 2636 }, - { "id": "sword_xiphos", "fg": 2637 }, - { "id": "tallow", "fg": 2638 }, - { "id": "tallow_tainted", "fg": 2639 }, - { "id": "tanbark", "fg": 2640 }, - { "id": "tanned_hide", "fg": 2641 }, - { "id": "tanned_pelt", "fg": 2642 }, - { "id": "tanto", "fg": 2643 }, - { "id": "tea", "fg": 2644 }, - { "id": "telepad", "fg": 2645 }, - { "id": "thermometer", "fg": 2646 }, - { "id": "thermos", "fg": 2647 }, - { "id": "throwing_stick", "fg": 2648 }, - { "id": "tieclip", "fg": 2649 }, - { "id": "tin", "fg": 2650 }, - { "id": "tinder", "fg": 2651 }, - { "id": "tinderbox", "fg": 2652 }, - { "id": "tinfoil_hat", "fg": 2653 }, - { "id": "toothbrush_plain", "fg": 2654 }, - { "id": "trimmer_off", "fg": 2655 }, - { "id": "trimmer_on", "fg": 2656 }, - { "id": "trumpet", "fg": 2657 }, - { "id": "tuba", "fg": 2658 }, - { "id": "tunic", "fg": 2659 }, - { "id": "tunic_rag", "fg": 2660 }, - { "id": "ukulele", "fg": 2661 }, - { "id": "undershirt", "fg": 2662 }, - { "id": "unfinished_charcoal", "fg": 2663 }, - { "id": "v_combustion", "fg": 2664 }, - { "id": "v_scoop_item", "fg": 2665 }, - { "id": "vehicle_dashboard", "fg": 2666 }, - { "id": "vibrator", "fg": 2667 }, - { "id": "violin", "fg": 2668 }, - { "id": "violin_golden", "fg": 2669 }, - { "id": "w_paint", "fg": 2670 }, - { "id": "waffleiron", "fg": 2671 }, - { "id": "wakizashi", "fg": 2672 }, - { "id": "warhammer", "fg": 2673 }, - { "id": "water_acid_weak", "fg": 2674 }, - { "id": "waterproof_gunmod", "fg": 2675 }, - { "id": "wearable_light", "fg": 2676 }, - { "id": "wearable_light_on", "fg": 2677 }, - { "id": "wheel_armor", "fg": 2678 }, - { "id": "wheel_bicycle", "fg": 2679 }, - { "id": "wheel_caster", "fg": 2680 }, - { "id": "wheel_motorbike", "fg": 2681 }, - { "id": "wheel_small", "fg": 2682 }, - { "id": "wheel_wide", "fg": 2683 }, - { "id": "whiskey", "fg": 2684 }, - { "id": "whistle", "fg": 2685 }, - { "id": "y_carpet", "fg": 2686 }, - { "id": "y_paint", "fg": 2687 }, - { "id": "yarn", "fg": 2688 }, - { "id": "yeast", "fg": 2689 }, - { "id": "yoghurt", "fg": 2690 }, - { "id": "zubon_gi", "fg": 2691 }, - { "id": "zweihander", "fg": 2692 }, - { "id": "cloak", "fg": 2693 }, - { "id": "cloak_fur", "fg": 2694 }, - { "id": "cloak_leather", "fg": 2695 }, - { "id": "cloak_wool", "fg": 2696 }, - { "id": "coat_rain", "fg": 2697 }, - { "id": "optical_cloak", "fg": 2698 }, - { "id": "legrig", "fg": 2699 }, - { "id": "ketchup", "fg": 2700 }, - { "id": "mayonnaise", "fg": 2701 }, - { "id": "book_nonf_zine_news_anlyst", "fg": 2702 }, - { "id": "mag_animecon", "fg": 2703 }, - { "id": "mag_dodge", "fg": 2704 }, - { "id": "mag_fabrication", "fg": 2705 }, - { "id": "mag_firstaid", "fg": 2706 }, - { "id": "mag_guns", "fg": 2707 }, - { "id": "mag_news", "fg": 2708 }, - { "id": "mag_porn", "fg": 2709 }, - { "id": "mag_throwing", "fg": 2710 }, - { "id": "mag_unarmed", "fg": 2711 }, - { "id": "multi_cooker", "fg": 2716 }, - { "id": "multi_cooker_filled", "fg": 2717 }, - { "id": "oxygen_tank", "fg": 2718 }, - { "id": "pet_carrier", "fg": 2719 }, - { "id": "primitive_shovel", "fg": 2720 }, - { "id": "amethyst_gold_ring", "fg": 2721 }, - { "id": "amethyst_platinum_ring", "fg": 2722 }, - { "id": "amethyst_silver_ring", "fg": 2723 }, - { "id": "aquamarine_gold_ring", "fg": 2724 }, - { "id": "aquamarine_platinum_ring", "fg": 2725 }, - { "id": "aquamarine_silver_ring", "fg": 2726 }, - { "id": "citrine_gold_ring", "fg": 2727 }, - { "id": "citrine_platinum_ring", "fg": 2728 }, - { "id": "citrine_silver_ring", "fg": 2729 }, - { "id": "diamond_platinum_ring", "fg": 2730 }, - { "id": "diamond_ring", "fg": 2731 }, - { "id": "diamond_silver_ring", "fg": 2732 }, - { "id": "emerald_gold_ring", "fg": 2733 }, - { "id": "emerald_platinum_ring", "fg": 2734 }, - { "id": "emerald_silver_ring", "fg": 2735 }, - { "id": "peridot_gold_ring", "fg": 2742 }, - { "id": "peridot_platinum_ring", "fg": 2743 }, - { "id": "peridot_silver_ring", "fg": 2744 }, - { "id": "tourmaline_gold_ring", "fg": 2748 }, - { "id": "tourmaline_platinum_ring", "fg": 2749 }, - { "id": "tourmaline_silver_ring", "fg": 2750 }, - { "id": "teddy_bear", "fg": 2751 }, - { "id": "tire_iron", "fg": 2752 }, - { "id": "winter_gloves_army", "fg": 2754 }, - { "id": "footstep_above", "fg": 2786 }, - { "id": "footstep_below", "fg": 2787 }, - { "id": "graffiti", "fg": 2788 }, - { "id": "zombie_revival_indicator", "fg": 2793 }, - { "id": "overlay_mutation_bio_sneeze_beam", "fg": 2794 }, - { "id": "overlay_female_mutation_DEMON_SKIN", "fg": 2795 }, - { "id": "overlay_female_mutation_DEMON_TAIL", "fg": 2796 }, - { "id": "overlay_female_mutation_DRAGON_BREATH_BLACK", "fg": 2797 }, - { "id": "overlay_female_mutation_DRAGON_FEET", "fg": 2798 }, - { "id": "overlay_female_mutation_DRAGON_SCALES_BLACK", "fg": 2799 }, - { "id": "overlay_female_mutation_DRAGON_TAIL", "fg": 2800 }, - { "id": "overlay_female_mutation_DRAGON_TAIL_SCALED", "fg": 2801 }, - { "id": "overlay_female_mutation_DRAGON_TAIL_STUB", "fg": 2802 }, - { "id": "overlay_female_mutation_DRAGON_TALONS_BLACK", "fg": 2803 }, - { "id": "overlay_female_mutation_MANA_LUM", "fg": 2804 }, - { "id": "overlay_female_mutation_MANA_SILENT_SPELL", "fg": 2805 }, - { "id": "overlay_female_mutation_MANA_SUBTLE_SPELL", "fg": 2806 }, - { "id": "overlay_female_mutation_SCALED_HANDS", "fg": 2807 }, - { "id": "overlay_female_mutation_TOE_CLAWS", "fg": 2808 }, - { "id": "overlay_male_mutation_DEMON_SKIN", "fg": 2812 }, - { "id": "overlay_male_mutation_DEMON_TAIL", "fg": 2813 }, - { "id": "overlay_male_mutation_DRAGON_BREATH_BLACK", "fg": 2814 }, - { "id": "overlay_male_mutation_DRAGON_FEET", "fg": 2815 }, - { "id": "overlay_male_mutation_DRAGON_SCALES_BLACK", "fg": 2816 }, - { "id": "overlay_male_mutation_DRAGON_TAIL", "fg": 2817 }, - { "id": "overlay_male_mutation_DRAGON_TAIL_SCALED", "fg": 2818 }, - { "id": "overlay_male_mutation_DRAGON_TAIL_STUB", "fg": 2819 }, - { "id": "overlay_male_mutation_DRAGON_TALONS_BLACK", "fg": 2820 }, - { "id": "overlay_male_mutation_MANA_LUM", "fg": 2821 }, - { "id": "overlay_male_mutation_MANA_SILENT_SPELL", "fg": 2822 }, - { "id": "overlay_male_mutation_MANA_SUBTLE_SPELL", "fg": 2823 }, - { "id": "overlay_male_mutation_SCALED_HANDS", "fg": 2824 }, - { "id": "overlay_male_mutation_TOE_CLAWS", "fg": 2825 }, - { "id": "overlay_mutation_DEMON_CLAWS", "fg": 2829 }, - { "id": "overlay_mutation_DEMON_POSSES", "fg": 2830 }, - { "id": "overlay_mutation_DRAGON_MAGIC", "fg": 2831 }, - { "id": "overlay_mutation_DRAGON_MAW_BLACK", "fg": 2832 }, - { "id": "overlay_mutation_DRAGON_SPELLS", "fg": 2833 }, - { "id": "overlay_mutation_DRAGON_WINGS_BLACK", "fg": 2834 }, - { "id": "overlay_mutation_MANA_SEEKER_BOLTS", "fg": 2835 }, - { "id": "overlay_mutation_MANA_SIPHON_1", "fg": 2836 }, - { "id": "overlay_mutation_MANA_SIPHON_2", "fg": 2837 }, - { "id": "overlay_mutation_MANA_SIPHON_3", "fg": 2838 }, - { "id": "overlay_mutation_MUZZLE_DRAGON", "fg": 2839 }, - { "id": "DEBUG_spellbook", "fg": 2840 }, - { "id": "animist_shadows", "fg": 2841 }, - { "id": "bio_fuel_cell_blood", "fg": 2842 }, - { "id": "bio_sneeze_beam", "fg": 2843 }, - { "id": "biomancer_spellbook", "fg": 2844 }, - { "id": "disp_wand", "fg": 2845 }, - { "id": "druid_spellbook", "fg": 2846 }, - { "id": "eshaper_spellbook", "fg": 2847 }, - { "id": "generic_spellbook", "fg": 2848 }, - { "id": "light_manipulation_spellbook", "fg": 2849 }, - { "id": "magus_spellbook", "fg": 2850 }, - { "id": "magus_spellbook_move", "fg": 2851 }, - { "id": "mring_copper", "fg": 2852 }, - { "id": "mring_gold", "fg": 2853 }, - { "id": "mring_platinum", "fg": 2854 }, - { "id": "mring_silver", "fg": 2855 }, - { "id": "novice_stormshaper_book", "fg": 2856 }, - { "id": "priest_advanced", "fg": 2857 }, - { "id": "priest_beginner", "fg": 2858 }, - { "id": "pyro", "fg": 2859 }, - { "id": "recovery_spellbook", "fg": 2860 }, - { "id": "small_mana_crystal", "fg": 2861 }, - { "id": "spell_scroll", "fg": 2862 }, - { "id": "spell_wand", "fg": 2863 }, - { "id": "stat_up_spellbook", "fg": 2864 }, - { "id": "summon_scroll_smudged", "fg": 2865 }, - { "id": "summon_undead_spellbook", "fg": 2866 }, - { "id": "techno_em", "fg": 2867 }, - { "id": "techno_fundamentals", "fg": 2868 }, - { "id": "techno_idiots", "fg": 2869 }, - { "id": "tome_of_storms", "fg": 2870 }, - { "id": "translocate_spellbook", "fg": 2871 }, - { "id": "winter_grasp", "fg": 2872 }, - { "id": "wizard_advanced", "fg": 2873 }, - { "id": "wizard_beginner", "fg": 2874 }, - { "id": "wizard_utility", "fg": 2875 }, - { "id": "mon_goblin_chieftain", "fg": 2876 }, - { "id": "mon_goblin_slinger", "fg": 2877 }, - { "id": "mon_goblin_warrior", "fg": 2878 }, - { "id": "mon_cookie", "fg": 2882 }, - { "id": "mon_cow_calf_choc", "fg": 2883 }, - { "id": "mon_cow_choc", "fg": 2884 }, - { "id": "lemming_shadow", "fg": 3119 }, - { "id": "mon_boar_wild", "fg": 3120 }, - { "id": "mon_boar_wild_piglet", "fg": 3121 }, - { "id": "mon_copbot", "fg": 3122 }, - { "id": "mon_cow", "fg": 3123 }, - { "id": "mon_cow_calf", "fg": 3124 }, - { "id": "mon_fish_eel", "fg": 3125 }, - { "id": "mon_frog", "fg": 3126 }, - { "id": "mon_frog_small", "fg": 3127 }, - { "id": "mon_gracke", "fg": 3128 }, - { "id": "mon_grocerybot", "fg": 3129 }, - { "id": "mon_grocerybot_busted", "fg": 3130 }, - { "id": "mon_hallu_mannequin", "fg": 3131 }, - { "id": "mon_lab_rat", "fg": 3132 }, - { "id": "mon_pig", "fg": 3133 }, - { "id": "mon_pig_piglet", "fg": 3134 }, - { "id": "mon_pigeon", "fg": 3135 }, - { "id": "mon_sheep", "fg": 3137 }, - { "id": "mon_skeleton_brute", "fg": 3138 }, - { "id": "mon_zombie_gasbag_crawler", "fg": 3147 }, - { "id": "mon_zombie_gasbag_immobile", "fg": 3148 }, - { "id": "mon_zombie_hanging_innards", "fg": 3149 }, - { "id": "mon_zombie_pig", "fg": 3151 }, - { "id": "mon_zow", "fg": 3160 }, - { "id": "shadow_32x32_small", "fg": 3162 }, - { "id": "corpse_mon_beaver", "fg": 3163 }, - { "id": "corpse_mon_beaver_mutant_avian", "fg": 3164 }, - { "id": "corpse_mon_beaver_mutant_huge", "fg": 3165 }, - { "id": "corpse_mon_zombeaver", "fg": 3166 }, - { "id": "mon_beaver", "fg": 3167 }, - { "id": "mon_beaver_mutant_avian", "fg": 3168 }, - { "id": "mon_beaver_mutant_huge", "fg": 3169 }, - { "id": "mon_zombeaver", "fg": 3170 }, - { "id": "mon_dog_bull", "fg": 3179 }, - { "id": "mon_dog_rottweiler", "fg": 3180 }, - { "id": "corpse_mon_aphid", "fg": 3223 }, - { "id": "mon_aphid", "fg": 3224 }, - { "id": "corpse_mon_coyote_mutant_venom", "fg": 3225 }, - { "id": "mon_coyote_mutant_venom", "fg": 3226 }, - { "id": "bot_eyebot", "fg": 3227 }, - { "id": "broken_eyebot", "fg": 3228 }, - { "id": "mon_eyebot", "fg": 3229 }, - { "id": "corpse_mon_fungaloid_shambler", "fg": 3232 }, - { "id": "mon_fungaloid_shambler", "fg": 3233 }, - { "id": "mon_goose_canadian", "fg": 3234 }, - { "id": "mon_grouse", "fg": 3235 }, - { "id": "mon_kreck", "fg": 3236 }, - { "id": "corpse_mon_mantis_small", "fg": 3237 }, - { "id": "mon_mantis_small", "fg": 3238 }, - { "id": "mon_pheasant", "fg": 3239 }, - { "id": "mon_tadpole_grabber", "fg": 3240 }, - { "id": "mon_tazer_hack", "fg": 3241 }, - { "id": "mon_zombie_necro_boomer", "fg": 3247 }, - { "id": "mon_zombie_phase_skulker", "fg": 3248 }, - { "id": "mon_zombie_pig_gas", "fg": 3249 }, - { "id": "corpse_mon_zombie_rust", "fg": 3252 }, - { "id": "corpse_mon_zombie_shell", "fg": 3253 }, - { "id": "corpse_mon_zombie_urchin", "fg": 3254 }, - { "id": "mon_zombie_rust", "fg": 3255 }, - { "id": "mon_zombie_shell", "fg": 3256 }, - { "id": "mon_zombie_urchin", "fg": 3257 }, - { "id": "3957_t_metal_0", "fg": 3644 }, - { "id": "t_concrete", "fg": 3667 }, - { "id": "t_diesel_tank", "fg": 3668 }, - { "id": "t_diesel_tank_smashed", "fg": 3669 }, - { "id": "t_gas_tank_smashed", "fg": 3675 }, - { "id": "t_shingle_flat_roof", "fg": 3696 }, - { "id": "t_strconc_floor", "fg": 3697 }, - { "id": "t_thconc_floor_flesh", "fg": 3703 }, - { "id": "t_resin_hole", "fg": 3714 }, - { "id": "t_paper_roof", "fg": 4116 }, - { "id": "t_screen_door_c", "fg": 4302 }, - { "id": "t_screen_door_o", "fg": 4303 }, - { "id": "vp_animal_compartment", "fg": 5008 }, - { "id": "vp_autoclave", "fg": 5287 }, - { "id": "vp_dishwasher", "fg": 5292 }, - { "id": "vp_recharge_station", "fg": 5308 } + { "id": "overlay_female_mutation_RABBIT_FEET", "fg": 305 }, + { "id": "overlay_female_mutation_RABBIT_FUR", "fg": 306 }, + { "id": "overlay_male_mutation_RABBIT_FEET", "fg": 307 }, + { "id": "overlay_male_mutation_RABBIT_FUR", "fg": 308 }, + { "id": "overlay_mutation_RABBIT_NOSE", "fg": 309 }, + { "id": "overlay_mutation_TAIL_RABBIT", "fg": 310 }, + { "id": "overlay_female_mutation_SKIN_DARK", "fg": 311 }, + { "id": "overlay_female_mutation_SKIN_MEDIUM", "fg": 312 }, + { "id": "overlay_female_mutation_SKIN_PINK", "fg": 313 }, + { "id": "overlay_female_mutation_SKIN_TAN", "fg": 314 }, + { "id": "overlay_male_mutation_SKIN_DARK", "fg": 315 }, + { "id": "overlay_male_mutation_SKIN_LIGHT", "fg": 316 }, + { "id": "overlay_male_mutation_SKIN_MEDIUM", "fg": 317 }, + { "id": "overlay_male_mutation_SKIN_PINK", "fg": 318 }, + { "id": "overlay_wielded_1st_aid_box", "fg": 514 }, + { "id": "overlay_wielded_primitive_shovel", "fg": 515 }, + { "id": "overlay_wielded_scalpel", "fg": 516 }, + { "id": "overlay_female_worn_boots_rubber", "fg": 882 }, + { "id": "overlay_male_worn_boots_rubber", "fg": 883 }, + { "id": "overlay_worn_bookplate", "fg": 891 }, + { "id": "overlay_worn_broken_dimensional_anchor", "fg": 892 }, + { "id": "overlay_worn_diamond_dental_grill", "fg": 897 }, + { "id": "overlay_worn_dimensional_anchor", "fg": 899 }, + { "id": "overlay_worn_dimensional_anchor_on", "fg": 900 }, + { "id": "overlay_worn_eclipse_glasses", "fg": 903 }, + { "id": "overlay_worn_fancy_glasses_bifocal", "fg": 905 }, + { "id": "overlay_worn_fancy_glasses_eye", "fg": 906 }, + { "id": "overlay_worn_fancy_glasses_reading", "fg": 907 }, + { "id": "overlay_worn_fanny", "fg": 908 }, + { "id": "overlay_worn_fur_cat_tail", "fg": 912 }, + { "id": "overlay_worn_fur_collar", "fg": 913 }, + { "id": "overlay_worn_glasses_bifocal", "fg": 914 }, + { "id": "overlay_worn_glasses_eye", "fg": 915 }, + { "id": "overlay_worn_glasses_reading", "fg": 916 }, + { "id": "overlay_worn_gloves_rubber", "fg": 918 }, + { "id": "overlay_worn_gold_ear", "fg": 919 }, + { "id": "overlay_worn_helmet_motor_raised", "fg": 925 }, + { "id": "overlay_worn_leather_collar", "fg": 927 }, + { "id": "overlay_worn_silver_watch", "fg": 940 }, + { "id": "overlay_worn_sunglasses_bifocal", "fg": 943 }, + { "id": "overlay_worn_sunglasses_eye", "fg": 944 }, + { "id": "overlay_worn_sunglasses_reading", "fg": 945 }, + { "id": "overlay_worn_chestguard_hard", "fg": 950 }, + { "id": "1585_f_table_0", "fg": 1310 }, + { "id": "1586_f_table_1", "fg": 1311 }, + { "id": "1587_f_table_2", "fg": 1312 }, + { "id": "1588_f_table_3", "fg": 1313 }, + { "id": "1589_f_table_4", "fg": 1314 }, + { "id": "1590_f_table_5", "fg": 1315 }, + { "id": "f_alien_scar", "fg": 1349 }, + { "id": "f_birdbath", "fg": 1350 }, + { "id": "f_brazier", "fg": 1351 }, + { "id": "f_bulletin", "fg": 1352 }, + { "id": "f_chimney", "fg": 1353 }, + { "id": "f_dandelion", "fg": 1354 }, + { "id": "f_exercise", "fg": 1355 }, + { "id": "f_logstool", "fg": 1356 }, + { "id": "f_pillow_fort", "fg": 1357 }, + { "id": "f_roof_turbine_vent", "fg": 1358 }, + { "id": "f_sink", "fg": 1359 }, + { "id": "f_solar_unit", "fg": 1360 }, + { "id": "f_vent_pipe", "fg": 1361 }, + { "id": "f_crate_c", "fg": 1394 }, + { "id": "f_crate_o", "fg": 1395 }, + { "id": "f_curtain_open", "fg": 1438 }, + { "id": "f_dresser", "fg": 1457 }, + { "id": "f_floor_lamp", "fg": 1462 }, + { "id": "f_glowingbulb", "fg": 1463 }, + { "id": "f_oven", "fg": 1479 }, + { "id": "f_skin_wall_t_connection_e", "fg": 1494 }, + { "id": "f_speaker_cabinet", "fg": 1496 }, + { "id": "f_black_eyed_susan", "fg": 1513 }, + { "id": "f_bluebell", "fg": 1514 }, + { "id": "f_burdock", "fg": 1515 }, + { "id": "f_chamomile", "fg": 1516 }, + { "id": "f_chicory", "fg": 1517 }, + { "id": "f_dahlia", "fg": 1518 }, + { "id": "f_datura", "fg": 1519 }, + { "id": "f_flower_spurge", "fg": 1520 }, + { "id": "f_flower_tulip", "fg": 1521 }, + { "id": "f_lily", "fg": 1522 }, + { "id": "f_mustard", "fg": 1523 }, + { "id": "f_mutpoppy", "fg": 1524 }, + { "id": "f_sunflower", "fg": 1525 }, + { "id": "adhesive_bandages", "fg": 1527 }, + { "id": "airhorn", "fg": 1528 }, + { "id": "alloy_plate", "fg": 1529 }, + { "id": "amplifier_head", "fg": 1530 }, + { "id": "arm_warmers", "fg": 1531 }, + { "id": "autoclave", "fg": 1532 }, + { "id": "bag_plastic", "fg": 1533 }, + { "id": "boltcutters", "fg": 1534 }, + { "id": "bookplate", "fg": 1535 }, + { "id": "bottle_opener", "fg": 1536 }, + { "id": "bow_saw", "fg": 1537 }, + { "id": "boxing_gloves", "fg": 1538 }, + { "id": "broken_dimensional_anchor", "fg": 1539 }, + { "id": "bucket", "fg": 1540 }, + { "id": "butane_tank", "fg": 1541 }, + { "id": "cable_instrument", "fg": 1542 }, + { "id": "cable_xlr", "fg": 1543 }, + { "id": "can_food", "fg": 1544 }, + { "id": "can_opener", "fg": 1545 }, + { "id": "candle", "fg": 1546 }, + { "id": "candle_lit", "fg": 1547 }, + { "id": "cell_phone", "fg": 1548 }, + { "id": "chess", "fg": 1549 }, + { "id": "chopsticks", "fg": 1550 }, + { "id": "clamp", "fg": 1551 }, + { "id": "clay_pot_flower", "fg": 1552 }, + { "id": "comb_pocket", "fg": 1553 }, + { "id": "condom", "fg": 1554 }, + { "id": "cookies", "fg": 1555 }, + { "id": "cutting_board", "fg": 1556 }, + { "id": "dehydrator", "fg": 1557 }, + { "id": "dimensional_anchor", "fg": 1558 }, + { "id": "dimensional_anchor_on", "fg": 1559 }, + { "id": "dnd", "fg": 1560 }, + { "id": "eclipse_glasses", "fg": 1561 }, + { "id": "eyedrops", "fg": 1562 }, + { "id": "fan", "fg": 1563 }, + { "id": "fancy_glasses_bifocal", "fg": 1564 }, + { "id": "fancy_glasses_eye", "fg": 1565 }, + { "id": "fancy_glasses_reading", "fg": 1566 }, + { "id": "feather", "fg": 1567 }, + { "id": "fetid_goop", "fg": 1568 }, + { "id": "flask_hip", "fg": 1569 }, + { "id": "frisbee", "fg": 1571 }, + { "id": "funnel", "fg": 1572 }, + { "id": "glass_sheet", "fg": 1573 }, + { "id": "glasses_bifocale", "fg": 1574 }, + { "id": "glasses_eye", "fg": 1575 }, + { "id": "glasses_reading", "fg": 1576 }, + { "id": "hair_dryer", "fg": 1577 }, + { "id": "hammer_sledge", "fg": 1578 }, + { "id": "hammer_sledge_heavy", "fg": 1579 }, + { "id": "hammer_sledge_short", "fg": 1580 }, + { "id": "hinge", "fg": 1581 }, + { "id": "hotplate", "fg": 1582 }, + { "id": "kettle", "fg": 1583 }, + { "id": "knife_paring", "fg": 1584 }, + { "id": "knife_steak", "fg": 1585 }, + { "id": "knit_scarf", "fg": 1586 }, + { "id": "licorice", "fg": 1587 }, + { "id": "material_limestone", "fg": 1588 }, + { "id": "material_rhodonite", "fg": 1589 }, + { "id": "material_rocksalt", "fg": 1590 }, + { "id": "material_zincite", "fg": 1591 }, + { "id": "mattress", "fg": 1592 }, + { "id": "meat", "fg": 1593 }, + { "id": "meat_tainted", "fg": 1594 }, + { "id": "mil_plate", "fg": 1595 }, + { "id": "mobile_memory_card", "fg": 1596 }, + { "id": "motor_tiny", "fg": 1598 }, + { "id": "mp3", "fg": 1599 }, + { "id": "nanomaterial", "fg": 1600 }, + { "id": "office_holepunch", "fg": 1601 }, + { "id": "paper", "fg": 1602 }, + { "id": "pencil", "fg": 1603 }, + { "id": "permanent_marker", "fg": 1604 }, + { "id": "pipe_fittings", "fg": 1605 }, + { "id": "plastic_straw", "fg": 1606 }, + { "id": "plums", "fg": 1607 }, + { "id": "radio", "fg": 1608 }, + { "id": "radio_on", "fg": 1609 }, + { "id": "rake_plastic", "fg": 1610 }, + { "id": "rapier", "fg": 1611 }, + { "id": "rapier_fake", "fg": 1612 }, + { "id": "rc_car_box", "fg": 1613 }, + { "id": "rebreather_filter", "fg": 1614 }, + { "id": "reinforced_glass_pane", "fg": 1615 }, + { "id": "rhubarb", "fg": 1616 }, + { "id": "rock_flaking", "fg": 1617 }, + { "id": "rock_large", "fg": 1618 }, + { "id": "rock_quern", "fg": 1619 }, + { "id": "rock_sock", "fg": 1620 }, + { "id": "sandpaper", "fg": 1621 }, + { "id": "screwdriver_set", "fg": 1622 }, + { "id": "sm_extinguisher", "fg": 1623 }, + { "id": "spoon", "fg": 1624 }, + { "id": "spray_can", "fg": 1625 }, + { "id": "standard_template_construct", "fg": 1626 }, + { "id": "steel_armor", "fg": 1627 }, + { "id": "steel_plate", "fg": 1628 }, + { "id": "stereo", "fg": 1629 }, + { "id": "stock_pot", "fg": 1630 }, + { "id": "sunglasses", "fg": 1631 }, + { "id": "sunglasses_bifocal", "fg": 1632 }, + { "id": "sunglasses_eye", "fg": 1633 }, + { "id": "sunglasses_reading", "fg": 1634 }, + { "id": "swat_armor", "fg": 1635 }, + { "id": "syringe", "fg": 1636 }, + { "id": "teleumbrella", "fg": 1637 }, + { "id": "toolbox_empty", "fg": 1638 }, + { "id": "tux", "fg": 1639 }, + { "id": "two_way_radio", "fg": 1640 }, + { "id": "vh_autoclave", "fg": 1641 }, + { "id": "wetsuit_spring", "fg": 1642 }, + { "id": "wool_suit", "fg": 1643 }, + { "id": "wrapper", "fg": 1644 }, + { "id": "SICP", "fg": 1645 }, + { "id": "book_fict_soft_ya_rwya", "fg": 1646 }, + { "id": "book_pieces", "fg": 1647 }, + { "id": "manual_first_aid", "fg": 1658 }, + { "id": "novel_adventure", "fg": 1659 }, + { "id": "novel_buddy", "fg": 1660 }, + { "id": "novel_coa", "fg": 1661 }, + { "id": "novel_coa2", "fg": 1662 }, + { "id": "novel_crime", "fg": 1663 }, + { "id": "novel_crime2", "fg": 1664 }, + { "id": "novel_drama", "fg": 1665 }, + { "id": "novel_erotic", "fg": 1666 }, + { "id": "novel_experimental", "fg": 1667 }, + { "id": "novel_fantasy", "fg": 1668 }, + { "id": "novel_horror", "fg": 1669 }, + { "id": "novel_mystery", "fg": 1670 }, + { "id": "novel_pulp", "fg": 1671 }, + { "id": "novel_road", "fg": 1672 }, + { "id": "novel_romance", "fg": 1673 }, + { "id": "novel_samurai", "fg": 1674 }, + { "id": "novel_satire", "fg": 1675 }, + { "id": "novel_scifi", "fg": 1676 }, + { "id": "novel_sports", "fg": 1677 }, + { "id": "novel_spy", "fg": 1678 }, + { "id": "novel_swash", "fg": 1679 }, + { "id": "novel_thriller", "fg": 1680 }, + { "id": "novel_tragedy", "fg": 1681 }, + { "id": "novel_war", "fg": 1682 }, + { "id": "novel_war2", "fg": 1683 }, + { "id": "novel_western", "fg": 1684 }, + { "id": "paperback_novel", "fg": 1685 }, + { "id": "winemaking_beginner", "fg": 1686 }, + { "id": "mre_box", "fg": 1688 }, + { "id": "mre_lemontuna_box", "fg": 1691 }, + { "id": "rifle_case_soft", "fg": 1745 }, + { "id": "rifle_case_soft_2", "fg": 1746 }, + { "id": "rifle_case_soft_leather_2", "fg": 1748 }, + { "id": "rucksack", "fg": 1749 }, + { "id": "bubblewrap", "fg": 1770 }, + { "id": "clay_quern", "fg": 1781 }, + { "id": "balaclava", "fg": 1783 }, + { "id": "beret", "fg": 1784 }, + { "id": "boxer_briefs", "fg": 1785 }, + { "id": "boxer_shorts", "fg": 1786 }, + { "id": "boy_shorts", "fg": 1787 }, + { "id": "bra", "fg": 1788 }, + { "id": "briefs", "fg": 1789 }, + { "id": "coat_lab", "fg": 1790 }, + { "id": "corset", "fg": 1791 }, + { "id": "cowboy_hat", "fg": 1792 }, + { "id": "hat_ball", "fg": 1793 }, + { "id": "hat_cotton", "fg": 1794 }, + { "id": "hat_fur", "fg": 1795 }, + { "id": "helmet_barbute", "fg": 1796 }, + { "id": "helmet_chitin", "fg": 1797 }, + { "id": "helmet_kabuto", "fg": 1798 }, + { "id": "hoodie", "fg": 1799 }, + { "id": "jeans", "fg": 1800 }, + { "id": "longshirt", "fg": 1801 }, + { "id": "mask_dust", "fg": 1802 }, + { "id": "polo_shirt", "fg": 1803 }, + { "id": "ragpouch", "fg": 1804 }, + { "id": "skirt", "fg": 1805 }, + { "id": "sneakers", "fg": 1806 }, + { "id": "socks", "fg": 1807 }, + { "id": "striped_pants", "fg": 1808 }, + { "id": "striped_shirt", "fg": 1809 }, + { "id": "sweater", "fg": 1810 }, + { "id": "sweatshirt", "fg": 1811 }, + { "id": "tshirt", "fg": 1812 }, + { "id": "turban", "fg": 1813 }, + { "id": "cola", "fg": 1851 }, + { "id": "juice", "fg": 1855 }, + { "id": "milk", "fg": 1857 }, + { "id": "purple_drink", "fg": 1861 }, + { "id": "tomato_juice", "fg": 1862 }, + { "id": "vinegar", "fg": 1863 }, + { "id": "plunger_futuristic", "fg": 1913 }, + { "id": "plunger_toilet", "fg": 1914 }, + { "id": "portable_game", "fg": 1916 }, + { "id": "towel", "fg": 1980 }, + { "id": "towel_soiled", "fg": 1981 }, + { "id": "towel_wet", "fg": 1982 }, + { "id": "1895sbl", "fg": 1990 }, + { "id": "AT4", "fg": 1991 }, + { "id": "LAW", "fg": 1992 }, + { "id": "M24", "fg": 1993 }, + { "id": "RPG", "fg": 1994 }, + { "id": "USAS_12", "fg": 1995 }, + { "id": "airspeargun", "fg": 1996 }, + { "id": "ak74", "fg": 1998 }, + { "id": "american_180", "fg": 1999 }, + { "id": "an94", "fg": 2000 }, + { "id": "ar10", "fg": 2001 }, + { "id": "ar15", "fg": 2002 }, + { "id": "arx160", "fg": 2003 }, + { "id": "as50", "fg": 2004 }, + { "id": "atgm_launcher", "fg": 2005 }, + { "id": "bbgun", "fg": 2006 }, + { "id": "bfg50", "fg": 2007 }, + { "id": "bh_m89", "fg": 2008 }, + { "id": "blunderbuss", "fg": 2009 }, + { "id": "browning_blr", "fg": 2010 }, + { "id": "chemical_thrower", "fg": 2012 }, + { "id": "coilgun", "fg": 2013 }, + { "id": "colt_lightning", "fg": 2014 }, + { "id": "colt_ro635", "fg": 2015 }, + { "id": "combination_gun", "fg": 2016 }, + { "id": "cx4", "fg": 2017 }, + { "id": "doublespeargun", "fg": 2018 }, + { "id": "emp_gun", "fg": 2019 }, + { "id": "famas", "fg": 2020 }, + { "id": "flamethrower", "fg": 2021 }, + { "id": "fn_fal", "fg": 2022 }, + { "id": "fs2000", "fg": 2023 }, + { "id": "ftk93", "fg": 2024 }, + { "id": "garand", "fg": 2025 }, + { "id": "heavy_rail_rifle", "fg": 2026 }, + { "id": "helsing", "fg": 2027 }, + { "id": "henry_big_boy", "fg": 2028 }, + { "id": "hk417_13", "fg": 2029 }, + { "id": "hk_g3", "fg": 2030 }, + { "id": "hk_g36", "fg": 2031 }, + { "id": "hk_g80", "fg": 2032 }, + { "id": "hk_mp5k", "fg": 2033 }, + { "id": "hk_mp5sd", "fg": 2034 }, + { "id": "iwi_tavor_x95_300blk", "fg": 2035 }, + { "id": "ksg-25", "fg": 2036 }, + { "id": "ksg", "fg": 2037 }, + { "id": "ksub2000", "fg": 2038 }, + { "id": "laser_cannon", "fg": 2039 }, + { "id": "laser_rifle", "fg": 2040 }, + { "id": "lever_shotgun", "fg": 2041 }, + { "id": "longrifle_flintlock", "fg": 2042 }, + { "id": "m107a1", "fg": 2043 }, + { "id": "m110a1", "fg": 2044 }, + { "id": "m134", "fg": 2045 }, + { "id": "m14ebr", "fg": 2046 }, + { "id": "m1903", "fg": 2049 }, + { "id": "m1918", "fg": 2050 }, + { "id": "m1a", "fg": 2051 }, + { "id": "m2010", "fg": 2052 }, + { "id": "m231pfw", "fg": 2053 }, + { "id": "m240", "fg": 2054 }, + { "id": "m27_assault_rifle_var_h&k416a5", "fg": 2056 }, + { "id": "m27_assault_rifle_var_m27iar", "fg": 2057 }, + { "id": "m27_assault_rifle_var_m38dmr", "fg": 2058 }, + { "id": "m27_assault_rifle_var_scar_l", "fg": 2059 }, + { "id": "m2browning", "fg": 2060 }, + { "id": "m2browning_sawn", "fg": 2061 }, + { "id": "m3_carlgustav", "fg": 2062 }, + { "id": "m4_carbine_var_m4a1", "fg": 2063 }, + { "id": "m4_carlgustav", "fg": 2064 }, + { "id": "m79", "fg": 2066 }, + { "id": "mark19", "fg": 2067 }, + { "id": "marlin_9a", "fg": 2068 }, + { "id": "mininuke_launcher", "fg": 2069 }, + { "id": "mosin44", "fg": 2070 }, + { "id": "mosin44_ebr", "fg": 2071 }, + { "id": "mosin91_30", "fg": 2072 }, + { "id": "mosin91_30_ebr", "fg": 2073 }, + { "id": "mossberg_500", "fg": 2074 }, + { "id": "mossberg_500_var_mossberg_500_security", "fg": 2075 }, + { "id": "mossberg_590", "fg": 2076 }, + { "id": "mossberg_590_var_SPAS_12", "fg": 2077 }, + { "id": "mossberg_930", "fg": 2078 }, + { "id": "mossberg_930_var_m1014", "fg": 2079 }, + { "id": "mp18", "fg": 2080 }, + { "id": "needlegun", "fg": 2082 }, + { "id": "pamd68", "fg": 2083 }, + { "id": "pamd71z", "fg": 2084 }, + { "id": "pipe_combination_gun", "fg": 2085 }, + { "id": "plasma_gun", "fg": 2086 }, + { "id": "plasma_rifle", "fg": 2087 }, + { "id": "ppsh", "fg": 2088 }, + { "id": "rebar_rifle", "fg": 2089 }, + { "id": "remington700_270", "fg": 2090 }, + { "id": "remington_700", "fg": 2091 }, + { "id": "remington_870", "fg": 2092 }, + { "id": "remington_870_breacher", "fg": 2093 }, + { "id": "remington_870_express", "fg": 2094 }, + { "id": "remington_870_var_browning_a5", "fg": 2095 }, + { "id": "remington_870_var_remington_1100", "fg": 2096 }, + { "id": "rifle_flintlock", "fg": 2097 }, + { "id": "rm120c", "fg": 2098 }, + { "id": "rm20", "fg": 2099 }, + { "id": "rm298", "fg": 2100 }, + { "id": "rm451_flamethrower", "fg": 2101 }, + { "id": "rm51_assault_rifle", "fg": 2102 }, + { "id": "rm614_lmg", "fg": 2103 }, + { "id": "rm802", "fg": 2104 }, + { "id": "rm88_battle_rifle", "fg": 2105 }, + { "id": "ruger_1022", "fg": 2106 }, + { "id": "ruger_mini", "fg": 2107 }, + { "id": "saiga_12", "fg": 2108 }, + { "id": "saiga_410", "fg": 2109 }, + { "id": "savage_111f", "fg": 2110 }, + { "id": "scar_h", "fg": 2111 }, + { "id": "sharps", "fg": 2112 }, + { "id": "shotgun_410", "fg": 2113 }, + { "id": "shotgun_d", "fg": 2114 }, + { "id": "shotgun_s", "fg": 2115 }, + { "id": "sig552", "fg": 2116 }, + { "id": "sig_mcx_rattler_sbr", "fg": 2117 }, + { "id": "skorpion_82", "fg": 2118 }, + { "id": "sks", "fg": 2119 }, + { "id": "smg_9mm", "fg": 2121 }, + { "id": "speargun", "fg": 2122 }, + { "id": "sten", "fg": 2123 }, + { "id": "steyr_aug", "fg": 2124 }, + { "id": "surv_rocket_launcher", "fg": 2125 }, + { "id": "survivor_special_700", "fg": 2126 }, + { "id": "tac50", "fg": 2127 }, + { "id": "tavor_12", "fg": 2128 }, + { "id": "tihar", "fg": 2129 }, + { "id": "tommygun", "fg": 2130 }, + { "id": "trex_gun", "fg": 2131 }, + { "id": "weatherby_5", "fg": 2132 }, + { "id": "win70", "fg": 2133 }, + { "id": "winchester_1887", "fg": 2134 }, + { "id": "winchester_1897", "fg": 2135 }, + { "id": "broadsword", "fg": 2136 }, + { "id": "cards_magic", "fg": 2137 }, + { "id": "corpse", "fg": 2138 }, + { "id": "corpse_mon_mosquito_giant", "fg": 2185 }, + { "id": "corpse_mon_mosquito_small", "fg": 2186 }, + { "id": "corpse_mon_mantis_giant", "fg": 2251 }, + { "id": "corpse_mon_spawn_raptor", "fg": 2252 }, + { "id": "foodperson_mask", "fg": 2253 }, + { "id": "foodperson_mask_on", "fg": 2254 }, + { "id": "gloves_fingerless", "fg": 2255 }, + { "id": "gloves_leather", "fg": 2256 }, + { "id": "gloves_liner", "fg": 2257 }, + { "id": "hand_pump", "fg": 2258 }, + { "id": "inflatable_dragon", "fg": 2259 }, + { "id": "analytical_set_basic", "fg": 2260 }, + { "id": "balance_small", "fg": 2261 }, + { "id": "bandages_makeshift_bleached", "fg": 2263 }, + { "id": "beaker", "fg": 2264 }, + { "id": "flask_glass", "fg": 2265 }, + { "id": "gradcylinder", "fg": 2266 }, + { "id": "ph_meter", "fg": 2267 }, + { "id": "rack_test_tube", "fg": 2268 }, + { "id": "spectrophotometer", "fg": 2269 }, + { "id": "test_tube", "fg": 2270 }, + { "id": "voltmeter", "fg": 2271 }, + { "id": "10mm", "fg": 2272 }, + { "id": "223", "fg": 2273 }, + { "id": "22_cb", "fg": 2274 }, + { "id": "22_fmj", "fg": 2275 }, + { "id": "22_lr", "fg": 2276 }, + { "id": "22_ratshot", "fg": 2277 }, + { "id": "3006_incendiary", "fg": 2278 }, + { "id": "36navy", "fg": 2279 }, + { "id": "38_special", "fg": 2280 }, + { "id": "38_super", "fg": 2281 }, + { "id": "40fmj", "fg": 2282 }, + { "id": "40mm_flechet", "fg": 2283 }, + { "id": "40mm_shot", "fg": 2284 }, + { "id": "44army", "fg": 2285 }, + { "id": "44magnum", "fg": 2286 }, + { "id": "45_acp", "fg": 2287 }, + { "id": "45_jhp", "fg": 2288 }, + { "id": "500_Magnum", "fg": 2289 }, + { "id": "50match", "fg": 2290 }, + { "id": "545-ap", "fg": 2291 }, + { "id": "762_51", "fg": 2292 }, + { "id": "762_51_incendiary", "fg": 2293 }, + { "id": "762_m43", "fg": 2294 }, + { "id": "9mmP", "fg": 2295 }, + { "id": "9mmfmj", "fg": 2296 }, + { "id": "abstractmap", "fg": 2297 }, + { "id": "acidchitin_piece", "fg": 2298 }, + { "id": "acidchitin_plate", "fg": 2299 }, + { "id": "acoustic_guitar", "fg": 2300 }, + { "id": "aluminum_foil", "fg": 2301 }, + { "id": "ammonia", "fg": 2302 }, + { "id": "arming_sword", "fg": 2303 }, + { "id": "armor_lorica", "fg": 2304 }, + { "id": "arrowrest", "fg": 2305 }, + { "id": "atgm_heat", "fg": 2306 }, + { "id": "atomic_coffee", "fg": 2307 }, + { "id": "b_paint", "fg": 2308 }, + { "id": "bag_canvas_small", "fg": 2309 }, + { "id": "bagpipes", "fg": 2310 }, + { "id": "ballistic_vest_esapi", "fg": 2311 }, + { "id": "banjo", "fg": 2312 }, + { "id": "barley", "fg": 2313 }, + { "id": "basketball", "fg": 2314 }, + { "id": "battleaxe", "fg": 2315 }, + { "id": "beer", "fg": 2316 }, + { "id": "belgian_ale", "fg": 2317 }, + { "id": "bfipowder", "fg": 2319 }, + { "id": "bindle", "fg": 2320 }, + { "id": "bio_int_enhancer", "fg": 2321 }, + { "id": "birchbark", "fg": 2322 }, + { "id": "bismuth", "fg": 2323 }, + { "id": "blanket", "fg": 2324 }, + { "id": "bleach", "fg": 2325 }, + { "id": "blueberries_cooked", "fg": 2326 }, + { "id": "boiled_egg", "fg": 2327 }, + { "id": "bone_flute", "fg": 2328 }, + { "id": "bone_human", "fg": 2329 }, + { "id": "boots_acidchitin", "fg": 2330 }, + { "id": "boots_bunker", "fg": 2331 }, + { "id": "boots_hsurvivor", "fg": 2332 }, + { "id": "boots_lsurvivor", "fg": 2333 }, + { "id": "boots_survivor", "fg": 2334 }, + { "id": "boots_western", "fg": 2335 }, + { "id": "bottle_folding", "fg": 2336 }, + { "id": "bottle_metal", "fg": 2337 }, + { "id": "bottle_plastic_smal", "fg": 2338 }, + { "id": "bowling_pin", "fg": 2339 }, + { "id": "briefcase", "fg": 2340 }, + { "id": "broken_manhack", "fg": 2341 }, + { "id": "broken_skitterbot", "fg": 2342 }, + { "id": "broth_bone", "fg": 2343 }, + { "id": "bum_wine", "fg": 2344 }, + { "id": "camisole", "fg": 2345 }, + { "id": "can_food_unsealed", "fg": 2346 }, + { "id": "case_violin", "fg": 2347 }, + { "id": "cattail_rhizome", "fg": 2348 }, + { "id": "cattail_stalk", "fg": 2349 }, + { "id": "cell_phone_flashlight", "fg": 2350 }, + { "id": "ceramic_armor", "fg": 2351 }, + { "id": "ceramic_shard", "fg": 2352 }, + { "id": "chainmail_arms", "fg": 2353 }, + { "id": "chainmail_hauberk", "fg": 2354 }, + { "id": "chainmail_hood", "fg": 2355 }, + { "id": "chainmail_legs", "fg": 2356 }, + { "id": "chainmail_vest", "fg": 2357 }, + { "id": "chem_aluminium_powder", "fg": 2358 }, + { "id": "chem_aluminium_sulphate", "fg": 2359 }, + { "id": "chem_hexamine", "fg": 2360 }, + { "id": "chestwrap", "fg": 2361 }, + { "id": "chestwrap_fur", "fg": 2362 }, + { "id": "chestwrap_leather", "fg": 2363 }, + { "id": "chestwrap_wool", "fg": 2364 }, + { "id": "chili", "fg": 2365 }, + { "id": "chili_pepper", "fg": 2366 }, + { "id": "chipper", "fg": 2367 }, + { "id": "choc_drink", "fg": 2368 }, + { "id": "chocpretzels", "fg": 2369 }, + { "id": "cig_butt", "fg": 2370 }, + { "id": "cig_lit", "fg": 2371 }, + { "id": "clarinet", "fg": 2372 }, + { "id": "coffee", "fg": 2373 }, + { "id": "colamdew", "fg": 2374 }, + { "id": "con_milk", "fg": 2375 }, + { "id": "con_mix", "fg": 2376 }, + { "id": "concrete", "fg": 2377 }, + { "id": "contacts", "fg": 2378 }, + { "id": "cooking_oil", "fg": 2379 }, + { "id": "copper", "fg": 2380 }, + { "id": "copper_bracelet", "fg": 2381 }, + { "id": "copper_knife", "fg": 2382 }, + { "id": "corndogs_cooked", "fg": 2383 }, + { "id": "corndogs_frozen", "fg": 2384 }, + { "id": "cow_bell", "fg": 2385 }, + { "id": "crispycran", "fg": 2386 }, + { "id": "crown_golden", "fg": 2387 }, + { "id": "cs_lajatang_off", "fg": 2388 }, + { "id": "cured_hide", "fg": 2389 }, + { "id": "cured_pelt", "fg": 2390 }, + { "id": "curry_meat", "fg": 2391 }, + { "id": "curry_powder", "fg": 2392 }, + { "id": "curry_veggy", "fg": 2393 }, + { "id": "dahlia_baked", "fg": 2395 }, + { "id": "dao", "fg": 2396 }, + { "id": "detergent", "fg": 2397 }, + { "id": "diamond", "fg": 2398 }, + { "id": "diamond_dental_grill", "fg": 2399 }, + { "id": "diazepam", "fg": 2400 }, + { "id": "distaff_spindle", "fg": 2402 }, + { "id": "down_blanket", "fg": 2403 }, + { "id": "down_pillow", "fg": 2404 }, + { "id": "dry_fish", "fg": 2405 }, + { "id": "dry_meat_tainted", "fg": 2406 }, + { "id": "dry_veggy_tainted", "fg": 2407 }, + { "id": "egg_bird", "fg": 2408 }, + { "id": "egg_reptile", "fg": 2409 }, + { "id": "eink_tablet_pc", "fg": 2410 }, + { "id": "elec_hairtrimmer", "fg": 2411 }, + { "id": "electric_blanket", "fg": 2412 }, + { "id": "emer_blanket", "fg": 2413 }, + { "id": "emer_blanket_on", "fg": 2414 }, + { "id": "esbit_stove", "fg": 2415 }, + { "id": "estoc", "fg": 2416 }, + { "id": "fat", "fg": 2417 }, + { "id": "fat_tainted", "fg": 2418 }, + { "id": "felt_patch", "fg": 2419 }, + { "id": "file", "fg": 2420 }, + { "id": "fire_lance", "fg": 2422 }, + { "id": "firehelmet", "fg": 2423 }, + { "id": "fish", "fg": 2424 }, + { "id": "fish_smoked", "fg": 2425 }, + { "id": "fishing_hook_basic", "fg": 2426 }, + { "id": "fishing_rod_basic", "fg": 2427 }, + { "id": "fishing_rod_professional", "fg": 2428 }, + { "id": "flask_yeast", "fg": 2429 }, + { "id": "flatbread", "fg": 2430 }, + { "id": "flint_steel", "fg": 2431 }, + { "id": "flute", "fg": 2432 }, + { "id": "folding_poncho", "fg": 2433 }, + { "id": "folding_poncho_on", "fg": 2434 }, + { "id": "food_processor", "fg": 2435 }, + { "id": "footrags", "fg": 2436 }, + { "id": "footrags_fur", "fg": 2437 }, + { "id": "footrags_leather", "fg": 2438 }, + { "id": "footrags_wool", "fg": 2439 }, + { "id": "fruit_cooked", "fg": 2440 }, + { "id": "fungicide", "fg": 2441 }, + { "id": "fur_blanket", "fg": 2442 }, + { "id": "g_carpet", "fg": 2443 }, + { "id": "g_paint", "fg": 2444 }, + { "id": "g_shovel", "fg": 2445 }, + { "id": "gal_drum", "fg": 2446 }, + { "id": "gambeson", "fg": 2447 }, + { "id": "garlic", "fg": 2448 }, + { "id": "gasdiscount_gold", "fg": 2449 }, + { "id": "gasdiscount_platinum", "fg": 2450 }, + { "id": "gasdiscount_silver", "fg": 2451 }, + { "id": "glass_shard", "fg": 2452 }, + { "id": "glass_shiv", "fg": 2453 }, + { "id": "glass_tinted", "fg": 2454 }, + { "id": "gloves_wraps_fur", "fg": 2455 }, + { "id": "gold_bracelet", "fg": 2456 }, + { "id": "gold_dental_grill", "fg": 2457 }, + { "id": "golf_ball", "fg": 2458 }, + { "id": "gown", "fg": 2459 }, + { "id": "grapnel", "fg": 2460 }, + { "id": "h&k416a5", "fg": 2461 }, + { "id": "hacksaw", "fg": 2462 }, + { "id": "halligan", "fg": 2463 }, + { "id": "halter_top", "fg": 2464 }, + { "id": "hand_axe", "fg": 2465 }, + { "id": "hand_paddles", "fg": 2466 }, + { "id": "hand_rims", "fg": 2467 }, + { "id": "handflare", "fg": 2468 }, + { "id": "handflare_dead", "fg": 2469 }, + { "id": "handflare_lit", "fg": 2470 }, + { "id": "handrolled_cig", "fg": 2471 }, + { "id": "hat_hard", "fg": 2472 }, + { "id": "hat_hard_hooded", "fg": 2473 }, + { "id": "hat_knit", "fg": 2474 }, + { "id": "hat_newsboy", "fg": 2475 }, + { "id": "hbolt_metal", "fg": 2476 }, + { "id": "hbolt_wood", "fg": 2477 }, + { "id": "hdframe", "fg": 2478 }, + { "id": "heatpack", "fg": 2479 }, + { "id": "heatpack_used", "fg": 2480 }, + { "id": "helmet_army", "fg": 2481 }, + { "id": "hickory_nut", "fg": 2482 }, + { "id": "hickory_nut_roasted", "fg": 2483 }, + { "id": "hickory_nut_unshell", "fg": 2484 }, + { "id": "hickory_root", "fg": 2485 }, + { "id": "hobo_stove", "fg": 2486 }, + { "id": "holy_symbol", "fg": 2487 }, + { "id": "honey_bottled", "fg": 2488 }, + { "id": "hotdogs_cooked", "fg": 2489 }, + { "id": "i_combustion", "fg": 2490 }, + { "id": "iceaxe", "fg": 2491 }, + { "id": "inflatable_boat", "fg": 2492 }, + { "id": "inflatable_section", "fg": 2493 }, + { "id": "jacket_army", "fg": 2494 }, + { "id": "jacket_jean", "fg": 2495 }, + { "id": "jacket_leather", "fg": 2496 }, + { "id": "jacket_light", "fg": 2497 }, + { "id": "jam_strawberries", "fg": 2498 }, + { "id": "ji", "fg": 2499 }, + { "id": "jian", "fg": 2500 }, + { "id": "joint_roach", "fg": 2502 }, + { "id": "khopesh", "fg": 2503 }, + { "id": "knife", "fg": 2504 }, + { "id": "kukri", "fg": 2505 }, + { "id": "l-stick", "fg": 2506 }, + { "id": "l-stick_on", "fg": 2507 }, + { "id": "lead_ball", "fg": 2508 }, + { "id": "leg_warmers_f", "fg": 2509 }, + { "id": "link_sheet", "fg": 2510 }, + { "id": "locket", "fg": 2511 }, + { "id": "longsword", "fg": 2512 }, + { "id": "longsword_fake", "fg": 2513 }, + { "id": "mace", "fg": 2514 }, + { "id": "maid_dress", "fg": 2515 }, + { "id": "maid_hat", "fg": 2516 }, + { "id": "makeshift_axe", "fg": 2517 }, + { "id": "makeshift_crowbar", "fg": 2518 }, + { "id": "makeshift_funnel", "fg": 2519 }, + { "id": "makeshift_hammer", "fg": 2520 }, + { "id": "marble", "fg": 2521 }, + { "id": "marshmallow", "fg": 2522 }, + { "id": "material_aluminium_ingot", "fg": 2523 }, + { "id": "material_sand", "fg": 2524 }, + { "id": "material_shrd_limestone", "fg": 2525 }, + { "id": "meat_salted", "fg": 2526 }, + { "id": "mess_tin", "fg": 2527 }, + { "id": "metal_funnel", "fg": 2528 }, + { "id": "metal_tank_little", "fg": 2529 }, + { "id": "metal_tank_small", "fg": 2530 }, + { "id": "meth", "fg": 2531 }, + { "id": "mjolnir", "fg": 2532 }, + { "id": "morphine", "fg": 2533 }, + { "id": "mortar_pestle", "fg": 2534 }, + { "id": "mouthpiece", "fg": 2535 }, + { "id": "mustard", "fg": 2536 }, + { "id": "mutagen_bird", "fg": 2537 }, + { "id": "mutagen_cattle", "fg": 2538 }, + { "id": "mutagen_elfa", "fg": 2539 }, + { "id": "mutagen_fish", "fg": 2540 }, + { "id": "mutagen_plant", "fg": 2541 }, + { "id": "mutagen_slime", "fg": 2542 }, + { "id": "nachosc", "fg": 2543 }, + { "id": "naginata", "fg": 2544 }, + { "id": "nanoskirt", "fg": 2545 }, + { "id": "omnicamera", "fg": 2546 }, + { "id": "onion_rings", "fg": 2547 }, + { "id": "oxy_torch", "fg": 2548 }, + { "id": "p_carpet", "fg": 2549 }, + { "id": "p_paint", "fg": 2550 }, + { "id": "panties", "fg": 2551 }, + { "id": "pants", "fg": 2552 }, + { "id": "pants_army", "fg": 2553 }, + { "id": "pants_cargo", "fg": 2554 }, + { "id": "pants_checkered", "fg": 2555 }, + { "id": "pants_leather", "fg": 2556 }, + { "id": "pants_ski", "fg": 2557 }, + { "id": "pillow", "fg": 2558 }, + { "id": "pitchfork", "fg": 2559 }, + { "id": "plastic_shopping_bag", "fg": 2560 }, + { "id": "pliers", "fg": 2561 }, + { "id": "plut_cell", "fg": 2562 }, + { "id": "pool_ball", "fg": 2563 }, + { "id": "pot_canning", "fg": 2564 }, + { "id": "pot_copper", "fg": 2565 }, + { "id": "pot_makeshift", "fg": 2566 }, + { "id": "pot_makeshift_copper", "fg": 2567 }, + { "id": "powder_eggs", "fg": 2568 }, + { "id": "powered_earmuffs", "fg": 2569 }, + { "id": "protein_powder", "fg": 2570 }, + { "id": "qiang", "fg": 2571 }, + { "id": "r_carpet", "fg": 2572 }, + { "id": "r_paint", "fg": 2573 }, + { "id": "radio_car", "fg": 2574 }, + { "id": "radio_car_on", "fg": 2575 }, + { "id": "radiocontrol", "fg": 2576 }, + { "id": "raw_fur", "fg": 2577 }, + { "id": "raw_hleather", "fg": 2578 }, + { "id": "razor_blade", "fg": 2579 }, + { "id": "ref_lighter", "fg": 2580 }, + { "id": "reinforced_glass_sheet", "fg": 2581 }, + { "id": "reloaded_454_Casull", "fg": 2582 }, + { "id": "reloaded_shot_he", "fg": 2583 }, + { "id": "reloaded_shot_slug", "fg": 2584 }, + { "id": "reloaded_signal_fla", "fg": 2585 }, + { "id": "reloaded_ss", "fg": 2586 }, + { "id": "reloaded_sw", "fg": 2587 }, + { "id": "reloaded_xdart", "fg": 2588 }, + { "id": "ring_engagement", "fg": 2589 }, + { "id": "robe", "fg": 2590 }, + { "id": "rollerskates", "fg": 2591 }, + { "id": "sandwich_cheese", "fg": 2592 }, + { "id": "sandwich_cheese_gri", "fg": 2593 }, + { "id": "sandwich_cucumber", "fg": 2594 }, + { "id": "sandwich_honey", "fg": 2595 }, + { "id": "sandwich_jam", "fg": 2596 }, + { "id": "sandwich_pb", "fg": 2597 }, + { "id": "sandwich_pbj", "fg": 2598 }, + { "id": "sandwich_pbm", "fg": 2599 }, + { "id": "sandwich_sauce", "fg": 2600 }, + { "id": "sausage_wasteland", "fg": 2601 }, + { "id": "saxophone", "fg": 2602 }, + { "id": "scabbard", "fg": 2603 }, + { "id": "scrap_bronze", "fg": 2604 }, + { "id": "scrap_copper", "fg": 2605 }, + { "id": "sharp_toothbrush", "fg": 2606 }, + { "id": "shavingkit", "fg": 2607 }, + { "id": "sheath", "fg": 2608 }, + { "id": "sheet_metal_small", "fg": 2609 }, + { "id": "shillelagh", "fg": 2610 }, + { "id": "shorts_denim", "fg": 2611 }, + { "id": "shot_00", "fg": 2612 }, + { "id": "shot_bird", "fg": 2613 }, + { "id": "shot_flechette", "fg": 2614 }, + { "id": "silver_bracelet", "fg": 2615 }, + { "id": "silver_small", "fg": 2616 }, + { "id": "skirt_leather", "fg": 2617 }, + { "id": "smart_phone", "fg": 2618 }, + { "id": "smart_phone_flashlight", "fg": 2619 }, + { "id": "soap", "fg": 2620 }, + { "id": "soup_chicken", "fg": 2621 }, + { "id": "soup_dumplings", "fg": 2622 }, + { "id": "soup_fish", "fg": 2623 }, + { "id": "soup_mushroom", "fg": 2624 }, + { "id": "soup_tomato", "fg": 2625 }, + { "id": "soup_veggy", "fg": 2626 }, + { "id": "soup_woods", "fg": 2627 }, + { "id": "spear_dory", "fg": 2628 }, + { "id": "spear_forked", "fg": 2629 }, + { "id": "spear_stone", "fg": 2630 }, + { "id": "spider_egg", "fg": 2631 }, + { "id": "sports_bra", "fg": 2632 }, + { "id": "stepladder", "fg": 2633 }, + { "id": "stomach", "fg": 2634 }, + { "id": "straw_doll", "fg": 2635 }, + { "id": "sugar_beet", "fg": 2636 }, + { "id": "survivor_hairtrimmer", "fg": 2637 }, + { "id": "survivor_scope", "fg": 2638 }, + { "id": "survivor_vest", "fg": 2639 }, + { "id": "sushi_fishroll", "fg": 2640 }, + { "id": "swag_bag", "fg": 2641 }, + { "id": "sword_xiphos", "fg": 2642 }, + { "id": "tallow", "fg": 2643 }, + { "id": "tallow_tainted", "fg": 2644 }, + { "id": "tanbark", "fg": 2645 }, + { "id": "tanned_hide", "fg": 2646 }, + { "id": "tanned_pelt", "fg": 2647 }, + { "id": "tanto", "fg": 2648 }, + { "id": "tea", "fg": 2649 }, + { "id": "telepad", "fg": 2650 }, + { "id": "thermometer", "fg": 2651 }, + { "id": "thermos", "fg": 2652 }, + { "id": "throwing_stick", "fg": 2653 }, + { "id": "tieclip", "fg": 2654 }, + { "id": "tin", "fg": 2655 }, + { "id": "tinder", "fg": 2656 }, + { "id": "tinderbox", "fg": 2657 }, + { "id": "tinfoil_hat", "fg": 2658 }, + { "id": "toothbrush_plain", "fg": 2659 }, + { "id": "trimmer_off", "fg": 2660 }, + { "id": "trimmer_on", "fg": 2661 }, + { "id": "trumpet", "fg": 2662 }, + { "id": "tuba", "fg": 2663 }, + { "id": "tunic", "fg": 2664 }, + { "id": "tunic_rag", "fg": 2665 }, + { "id": "ukulele", "fg": 2666 }, + { "id": "undershirt", "fg": 2667 }, + { "id": "unfinished_charcoal", "fg": 2668 }, + { "id": "v_combustion", "fg": 2669 }, + { "id": "v_scoop_item", "fg": 2670 }, + { "id": "vehicle_dashboard", "fg": 2671 }, + { "id": "vibrator", "fg": 2672 }, + { "id": "violin", "fg": 2673 }, + { "id": "violin_golden", "fg": 2674 }, + { "id": "w_paint", "fg": 2675 }, + { "id": "waffleiron", "fg": 2676 }, + { "id": "wakizashi", "fg": 2677 }, + { "id": "warhammer", "fg": 2678 }, + { "id": "water_acid_weak", "fg": 2679 }, + { "id": "waterproof_gunmod", "fg": 2680 }, + { "id": "wearable_light", "fg": 2681 }, + { "id": "wearable_light_on", "fg": 2682 }, + { "id": "wheel_armor", "fg": 2683 }, + { "id": "wheel_bicycle", "fg": 2684 }, + { "id": "wheel_caster", "fg": 2685 }, + { "id": "wheel_motorbike", "fg": 2686 }, + { "id": "wheel_small", "fg": 2687 }, + { "id": "wheel_wide", "fg": 2688 }, + { "id": "whiskey", "fg": 2689 }, + { "id": "whistle", "fg": 2690 }, + { "id": "y_carpet", "fg": 2691 }, + { "id": "y_paint", "fg": 2692 }, + { "id": "yarn", "fg": 2693 }, + { "id": "yeast", "fg": 2694 }, + { "id": "yoghurt", "fg": 2695 }, + { "id": "zubon_gi", "fg": 2696 }, + { "id": "zweihander", "fg": 2697 }, + { "id": "cloak", "fg": 2698 }, + { "id": "cloak_fur", "fg": 2699 }, + { "id": "cloak_leather", "fg": 2700 }, + { "id": "cloak_wool", "fg": 2701 }, + { "id": "coat_rain", "fg": 2702 }, + { "id": "optical_cloak", "fg": 2703 }, + { "id": "legrig", "fg": 2704 }, + { "id": "ketchup", "fg": 2705 }, + { "id": "mayonnaise", "fg": 2706 }, + { "id": "book_nonf_zine_news_anlyst", "fg": 2707 }, + { "id": "mag_animecon", "fg": 2708 }, + { "id": "mag_dodge", "fg": 2709 }, + { "id": "mag_fabrication", "fg": 2710 }, + { "id": "mag_firstaid", "fg": 2711 }, + { "id": "mag_guns", "fg": 2712 }, + { "id": "mag_news", "fg": 2713 }, + { "id": "mag_porn", "fg": 2714 }, + { "id": "mag_throwing", "fg": 2715 }, + { "id": "mag_unarmed", "fg": 2716 }, + { "id": "multi_cooker", "fg": 2721 }, + { "id": "multi_cooker_filled", "fg": 2722 }, + { "id": "oxygen_tank", "fg": 2723 }, + { "id": "pet_carrier", "fg": 2724 }, + { "id": "primitive_shovel", "fg": 2725 }, + { "id": "amethyst_gold_ring", "fg": 2726 }, + { "id": "amethyst_platinum_ring", "fg": 2727 }, + { "id": "amethyst_silver_ring", "fg": 2728 }, + { "id": "aquamarine_gold_ring", "fg": 2729 }, + { "id": "aquamarine_platinum_ring", "fg": 2730 }, + { "id": "aquamarine_silver_ring", "fg": 2731 }, + { "id": "citrine_gold_ring", "fg": 2732 }, + { "id": "citrine_platinum_ring", "fg": 2733 }, + { "id": "citrine_silver_ring", "fg": 2734 }, + { "id": "diamond_platinum_ring", "fg": 2735 }, + { "id": "diamond_ring", "fg": 2736 }, + { "id": "diamond_silver_ring", "fg": 2737 }, + { "id": "emerald_gold_ring", "fg": 2738 }, + { "id": "emerald_platinum_ring", "fg": 2739 }, + { "id": "emerald_silver_ring", "fg": 2740 }, + { "id": "peridot_gold_ring", "fg": 2747 }, + { "id": "peridot_platinum_ring", "fg": 2748 }, + { "id": "peridot_silver_ring", "fg": 2749 }, + { "id": "tourmaline_gold_ring", "fg": 2753 }, + { "id": "tourmaline_platinum_ring", "fg": 2754 }, + { "id": "tourmaline_silver_ring", "fg": 2755 }, + { "id": "teddy_bear", "fg": 2756 }, + { "id": "tire_iron", "fg": 2757 }, + { "id": "winter_gloves_army", "fg": 2759 }, + { "id": "footstep_above", "fg": 2791 }, + { "id": "footstep_below", "fg": 2792 }, + { "id": "graffiti", "fg": 2793 }, + { "id": "overlay_friendly_sees_player", "fg": 2795 }, + { "id": "overlay_hostile_sees_player", "fg": 2796 }, + { "id": "overlay_neutral_sees_player", "fg": 2797 }, + { "id": "overlay_other_sees_player", "fg": 2798 }, + { "id": "zombie_revival_indicator", "fg": 2802 }, + { "id": "overlay_mutation_bio_sneeze_beam", "fg": 2803 }, + { "id": "overlay_female_mutation_DEMON_SKIN", "fg": 2804 }, + { "id": "overlay_female_mutation_DEMON_TAIL", "fg": 2805 }, + { "id": "overlay_female_mutation_DRAGON_BREATH_BLACK", "fg": 2806 }, + { "id": "overlay_female_mutation_DRAGON_FEET", "fg": 2807 }, + { "id": "overlay_female_mutation_DRAGON_SCALES_BLACK", "fg": 2808 }, + { "id": "overlay_female_mutation_DRAGON_TAIL", "fg": 2809 }, + { "id": "overlay_female_mutation_DRAGON_TAIL_SCALED", "fg": 2810 }, + { "id": "overlay_female_mutation_DRAGON_TAIL_STUB", "fg": 2811 }, + { "id": "overlay_female_mutation_DRAGON_TALONS_BLACK", "fg": 2812 }, + { "id": "overlay_female_mutation_MANA_LUM", "fg": 2813 }, + { "id": "overlay_female_mutation_MANA_SILENT_SPELL", "fg": 2814 }, + { "id": "overlay_female_mutation_MANA_SUBTLE_SPELL", "fg": 2815 }, + { "id": "overlay_female_mutation_SCALED_HANDS", "fg": 2816 }, + { "id": "overlay_female_mutation_TOE_CLAWS", "fg": 2817 }, + { "id": "overlay_male_mutation_DEMON_SKIN", "fg": 2821 }, + { "id": "overlay_male_mutation_DEMON_TAIL", "fg": 2822 }, + { "id": "overlay_male_mutation_DRAGON_BREATH_BLACK", "fg": 2823 }, + { "id": "overlay_male_mutation_DRAGON_FEET", "fg": 2824 }, + { "id": "overlay_male_mutation_DRAGON_SCALES_BLACK", "fg": 2825 }, + { "id": "overlay_male_mutation_DRAGON_TAIL", "fg": 2826 }, + { "id": "overlay_male_mutation_DRAGON_TAIL_SCALED", "fg": 2827 }, + { "id": "overlay_male_mutation_DRAGON_TAIL_STUB", "fg": 2828 }, + { "id": "overlay_male_mutation_DRAGON_TALONS_BLACK", "fg": 2829 }, + { "id": "overlay_male_mutation_MANA_LUM", "fg": 2830 }, + { "id": "overlay_male_mutation_MANA_SILENT_SPELL", "fg": 2831 }, + { "id": "overlay_male_mutation_MANA_SUBTLE_SPELL", "fg": 2832 }, + { "id": "overlay_male_mutation_SCALED_HANDS", "fg": 2833 }, + { "id": "overlay_male_mutation_TOE_CLAWS", "fg": 2834 }, + { "id": "overlay_mutation_DEMON_CLAWS", "fg": 2838 }, + { "id": "overlay_mutation_DEMON_POSSES", "fg": 2839 }, + { "id": "overlay_mutation_DRAGON_MAGIC", "fg": 2840 }, + { "id": "overlay_mutation_DRAGON_MAW_BLACK", "fg": 2841 }, + { "id": "overlay_mutation_DRAGON_SPELLS", "fg": 2842 }, + { "id": "overlay_mutation_DRAGON_WINGS_BLACK", "fg": 2843 }, + { "id": "overlay_mutation_MANA_SEEKER_BOLTS", "fg": 2844 }, + { "id": "overlay_mutation_MANA_SIPHON_1", "fg": 2845 }, + { "id": "overlay_mutation_MANA_SIPHON_2", "fg": 2846 }, + { "id": "overlay_mutation_MANA_SIPHON_3", "fg": 2847 }, + { "id": "overlay_mutation_MUZZLE_DRAGON", "fg": 2848 }, + { "id": "overlay_worn_copper_circlet", "fg": 2849 }, + { "id": "overlay_worn_copper_infuser", "fg": 2850 }, + { "id": "overlay_worn_silver_infuser", "fg": 2851 }, + { "id": "DEBUG_spellbook", "fg": 2852 }, + { "id": "animist_shadows", "fg": 2853 }, + { "id": "bio_fuel_cell_blood", "fg": 2854 }, + { "id": "bio_sneeze_beam", "fg": 2855 }, + { "id": "biomancer_spellbook", "fg": 2856 }, + { "id": "disp_wand", "fg": 2857 }, + { "id": "druid_spellbook", "fg": 2858 }, + { "id": "eshaper_spellbook", "fg": 2859 }, + { "id": "generic_spellbook", "fg": 2860 }, + { "id": "glow_dust", "fg": 2861 }, + { "id": "light_manipulation_spellbook", "fg": 2862 }, + { "id": "magus_spellbook", "fg": 2863 }, + { "id": "magus_spellbook_move", "fg": 2864 }, + { "id": "mring_copper", "fg": 2865 }, + { "id": "mring_gold", "fg": 2866 }, + { "id": "mring_platinum", "fg": 2867 }, + { "id": "mring_silver", "fg": 2868 }, + { "id": "novice_stormshaper_book", "fg": 2869 }, + { "id": "priest_advanced", "fg": 2870 }, + { "id": "priest_beginner", "fg": 2871 }, + { "id": "pyro", "fg": 2872 }, + { "id": "recovery_spellbook", "fg": 2873 }, + { "id": "small_mana_crystal", "fg": 2874 }, + { "id": "spell_scroll", "fg": 2875 }, + { "id": "spell_wand", "fg": 2876 }, + { "id": "stat_up_spellbook", "fg": 2877 }, + { "id": "summon_scroll_smudged", "fg": 2878 }, + { "id": "summon_undead_spellbook", "fg": 2879 }, + { "id": "techno_em", "fg": 2880 }, + { "id": "techno_fundamentals", "fg": 2881 }, + { "id": "techno_idiots", "fg": 2882 }, + { "id": "tome_of_storms", "fg": 2883 }, + { "id": "translocate_spellbook", "fg": 2884 }, + { "id": "winter_grasp", "fg": 2885 }, + { "id": "wizard_advanced", "fg": 2886 }, + { "id": "wizard_beginner", "fg": 2887 }, + { "id": "wizard_utility", "fg": 2888 }, + { "id": "mon_goblin_chieftain", "fg": 2889 }, + { "id": "mon_goblin_slinger", "fg": 2890 }, + { "id": "mon_goblin_warrior", "fg": 2891 }, + { "id": "mon_black_pudding", "fg": 2892 }, + { "id": "mon_cookie", "fg": 2900 }, + { "id": "mon_cow_calf_choc", "fg": 2901 }, + { "id": "mon_cow_choc", "fg": 2902 }, + { "id": "lemming_shadow", "fg": 3134 }, + { "id": "mon_boar_wild", "fg": 3135 }, + { "id": "mon_boar_wild_piglet", "fg": 3136 }, + { "id": "mon_copbot", "fg": 3137 }, + { "id": "mon_cow", "fg": 3138 }, + { "id": "mon_cow_calf", "fg": 3139 }, + { "id": "mon_fish_eel", "fg": 3140 }, + { "id": "mon_frog", "fg": 3141 }, + { "id": "mon_frog_small", "fg": 3142 }, + { "id": "mon_gracke", "fg": 3143 }, + { "id": "mon_grocerybot", "fg": 3144 }, + { "id": "mon_grocerybot_busted", "fg": 3145 }, + { "id": "mon_hallu_mannequin", "fg": 3146 }, + { "id": "mon_lab_rat", "fg": 3147 }, + { "id": "mon_mosquito_giant", "fg": 3148 }, + { "id": "mon_pig", "fg": 3150 }, + { "id": "mon_pig_piglet", "fg": 3151 }, + { "id": "mon_pigeon", "fg": 3152 }, + { "id": "mon_sheep", "fg": 3154 }, + { "id": "mon_skeleton_brute", "fg": 3155 }, + { "id": "mon_zombie_gasbag_crawler", "fg": 3164 }, + { "id": "mon_zombie_gasbag_immobile", "fg": 3165 }, + { "id": "mon_zombie_hanging_innards", "fg": 3166 }, + { "id": "mon_zombie_pig", "fg": 3168 }, + { "id": "mon_zow", "fg": 3177 }, + { "id": "shadow_32x32_small", "fg": 3179 }, + { "id": "corpse_mon_beaver", "fg": 3180 }, + { "id": "corpse_mon_beaver_mutant_avian", "fg": 3181 }, + { "id": "corpse_mon_beaver_mutant_huge", "fg": 3182 }, + { "id": "corpse_mon_zombeaver", "fg": 3183 }, + { "id": "mon_beaver", "fg": 3184 }, + { "id": "mon_beaver_mutant_avian", "fg": 3185 }, + { "id": "mon_beaver_mutant_huge", "fg": 3186 }, + { "id": "mon_zombeaver", "fg": 3187 }, + { "id": "mon_dog_bull", "fg": 3196 }, + { "id": "mon_dog_rottweiler", "fg": 3197 }, + { "id": "corpse_mon_aphid", "fg": 3240 }, + { "id": "mon_aphid", "fg": 3241 }, + { "id": "corpse_mon_cockatrice", "fg": 3242 }, + { "id": "mon_cockatrice", "fg": 3243 }, + { "id": "corpse_mon_coyote_mutant_venom", "fg": 3244 }, + { "id": "mon_coyote_mutant_venom", "fg": 3245 }, + { "id": "bot_eyebot", "fg": 3246 }, + { "id": "broken_eyebot", "fg": 3247 }, + { "id": "mon_eyebot", "fg": 3248 }, + { "id": "corpse_mon_fungaloid", "fg": 3249 }, + { "id": "corpse_mon_fungaloid_shambler", "fg": 3252 }, + { "id": "mon_fungaloid_shambler", "fg": 3253 }, + { "id": "corpse_mon_fungaloid_young", "fg": 3254 }, + { "id": "mon_fungaloid_young", "fg": 3255 }, + { "id": "mon_goose_canadian", "fg": 3256 }, + { "id": "mon_grouse", "fg": 3257 }, + { "id": "mon_kreck", "fg": 3258 }, + { "id": "corpse_mon_mantis_small", "fg": 3259 }, + { "id": "mon_mantis_small", "fg": 3260 }, + { "id": "mon_pheasant", "fg": 3261 }, + { "id": "corpse_mon_skeleton_medical", "fg": 3262 }, + { "id": "mon_skeleton_medical", "fg": 3263 }, + { "id": "mon_tadpole_grabber", "fg": 3264 }, + { "id": "mon_tazer_hack", "fg": 3265 }, + { "id": "mon_zombie_necro_boomer", "fg": 3271 }, + { "id": "mon_zombie_phase_skulker", "fg": 3272 }, + { "id": "mon_zombie_pig_gas", "fg": 3273 }, + { "id": "corpse_mon_zombie_regenerating", "fg": 3276 }, + { "id": "mon_zombie_regenerating", "fg": 3277 }, + { "id": "corpse_mon_zombie_rust", "fg": 3278 }, + { "id": "corpse_mon_zombie_shell", "fg": 3279 }, + { "id": "corpse_mon_zombie_urchin", "fg": 3280 }, + { "id": "mon_zombie_rust", "fg": 3281 }, + { "id": "mon_zombie_shell", "fg": 3282 }, + { "id": "mon_zombie_urchin", "fg": 3283 }, + { "id": "3957_t_metal_0", "fg": 3670 }, + { "id": "t_concrete", "fg": 3692 }, + { "id": "t_diesel_tank", "fg": 3693 }, + { "id": "t_diesel_tank_smashed", "fg": 3694 }, + { "id": "t_gas_tank_smashed", "fg": 3700 }, + { "id": "t_shingle_flat_roof", "fg": 3722 }, + { "id": "t_strconc_floor", "fg": 3723 }, + { "id": "t_thconc_floor_flesh", "fg": 3729 }, + { "id": "t_resin_hole", "fg": 3740 }, + { "id": "t_paper_roof", "fg": 4158 }, + { "id": "t_screen_door_c", "fg": 4344 }, + { "id": "t_screen_door_o", "fg": 4345 }, + { "id": "vp_animal_compartment", "fg": 5050 }, + { "id": "vp_autoclave", "fg": 5329 }, + { "id": "vp_dishwasher", "fg": 5334 }, + { "id": "vp_recharge_station", "fg": 5350 } ] }, { "file": "overmap.png", - "//": "range 5520 to 5839", + "//": "range 5568 to 5887", "tiles": [ { "id": [ "abandonedwarehouse", "abandonedwarehouse_1", "abandonedwarehouse_2", "abandonedwarehouse_3", "anandonedwarehouse_4" ], - "fg": 5521 + "fg": 5569 }, - { "id": [ "abstorefront", "abstorefront_1", "abstorefront_2" ], "fg": 5522 }, - { "id": [ "cabin", "cabin_1", "cabin_2", "cabin_3", "cabin_4", "cabin_5", "cabin_6", "cabin_7" ], "fg": 5523 }, - { "id": [ "campsite", "campsite_a" ], "fg": 5524 }, + { "id": [ "abstorefront", "abstorefront_1", "abstorefront_2" ], "fg": 5570 }, + { "id": [ "cabin", "cabin_1", "cabin_2", "cabin_3", "cabin_4", "cabin_5", "cabin_6", "cabin_7" ], "fg": 5571 }, + { "id": [ "campsite", "campsite_a" ], "fg": 5572 }, { "id": [ "dumpsite", "dump", "landfill", "junkyard 1a", "smallscrapyard", "cs_city_dump_small" ], - "fg": 5528 - }, - { "id": [ "fire_station", "fire_station_1" ], "fg": 5530 }, - { "id": [ "forest", "special_forest" ], "fg": 5531 }, - { "id": [ "forest_thick", "special_forest_thick" ], "fg": 5532 }, - { "id": [ "s_hardware", "home_improvement" ], "fg": 5544 }, - { "id": [ "s_restaurant_fast", "s_restaurant_fast_1", "s_restaurant_foodplace" ], "fg": 5545 }, - { "id": "bridgehead_ground", "fg": [ 5553, 5552, 5554, 5555 ], "rotates": true }, - { "id": "bridge", "fg": [ 5550, 5551, 5550, 5551 ], "rotates": true }, - { "id": "campground_1b", "fg": [ 5561, 5560, 5562, 5563 ], "rotates": true }, - { "id": "campground_1a", "fg": [ 5557, 5556, 5558, 5559 ], "rotates": true }, - { "id": "campground_2b", "fg": [ 5569, 5568, 5570, 5571 ], "rotates": true }, - { "id": "campground_2a", "fg": [ 5565, 5564, 5566, 5567 ], "rotates": true }, + "fg": 5576 + }, + { "id": [ "fire_station", "fire_station_1" ], "fg": 5578 }, + { "id": [ "forest", "special_forest" ], "fg": 5579 }, + { "id": [ "forest_thick", "special_forest_thick" ], "fg": 5580 }, + { "id": [ "s_hardware", "home_improvement" ], "fg": 5592 }, + { "id": [ "s_restaurant_fast", "s_restaurant_fast_1", "s_restaurant_foodplace" ], "fg": 5593 }, + { "id": "bridgehead_ground", "fg": [ 5602, 5601, 5603, 5604 ], "rotates": true }, + { "id": "bridge", "fg": [ 5599, 5600, 5599, 5600 ], "rotates": true }, + { "id": "campground_1b", "fg": [ 5610, 5609, 5611, 5612 ], "rotates": true }, + { "id": "campground_1a", "fg": [ 5606, 5605, 5607, 5608 ], "rotates": true }, + { "id": "campground_2b", "fg": [ 5618, 5617, 5619, 5620 ], "rotates": true }, + { "id": "campground_2a", "fg": [ 5614, 5613, 5615, 5616 ], "rotates": true }, { "id": "forest_trail", - "fg": 5587, + "fg": 5636, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5572 }, - { "id": "corner", "fg": [ 5574, 5576, 5575, 5573 ] }, - { "id": "t_connection", "fg": [ 5584, 5586, 5585, 5583 ] }, - { "id": "edge", "fg": [ 5578, 5577 ] }, - { "id": "end_piece", "fg": [ 5580, 5582, 5581, 5579 ] }, - { "id": "unconnected", "fg": [ 5587, 5587 ] } + { "id": "center", "fg": 5621 }, + { "id": "corner", "fg": [ 5623, 5625, 5624, 5622 ] }, + { "id": "t_connection", "fg": [ 5633, 5635, 5634, 5632 ] }, + { "id": "edge", "fg": [ 5627, 5626 ] }, + { "id": "end_piece", "fg": [ 5629, 5631, 5630, 5628 ] }, + { "id": "unconnected", "fg": [ 5636, 5636 ] } ] }, { @@ -9901,7 +9945,7 @@ "house_duplex8", "house_duplex9" ], - "fg": [ 5590, 5589, 5595, 5596 ], + "fg": [ 5639, 5638, 5644, 5645 ], "rotates": true }, { @@ -9918,7 +9962,7 @@ "house_duplex8_roof", "house_duplex9_roof" ], - "fg": [ 5592, 5591, 5593, 5594 ], + "fg": [ 5641, 5640, 5642, 5643 ], "rotates": true }, { @@ -9932,7 +9976,7 @@ "house_garage7", "house_garage8" ], - "fg": [ 5598, 5597, 5599, 5600 ], + "fg": [ 5647, 5646, 5648, 5649 ], "rotates": true }, { @@ -9946,12 +9990,12 @@ "house_garage7_roof", "house_garage8_roof" ], - "fg": [ 5602, 5601, 5603, 5604 ], + "fg": [ 5651, 5650, 5652, 5653 ], "rotates": true }, { "id": [ "generic_city_house", "generic_city_house_no_sidewalk" ], - "fg": [ 5606, 5605, 5607, 5608 ], + "fg": [ 5655, 5654, 5656, 5657 ], "rotates": true }, { @@ -10021,87 +10065,87 @@ "urban_18_9", "urban_18_10" ], - "fg": [ 5610, 5609, 5611, 5612 ], + "fg": [ 5659, 5658, 5660, 5661 ], "rotates": true }, - { "id": "icecream_shop", "fg": [ 5614, 5613, 5615, 5616 ], "rotates": true }, - { "id": "prison_1_1", "fg": [ 5618, 5617, 5619, 5620 ], "rotates": true }, - { "id": "prison_1_2", "fg": [ 5622, 5621, 5623, 5624 ], "rotates": true }, - { "id": "prison_1_3", "fg": [ 5626, 5625, 5627, 5628 ], "rotates": true }, - { "id": "prison_1_4", "fg": [ 5630, 5629, 5631, 5632 ], "rotates": true }, - { "id": "prison_1_5", "fg": [ 5634, 5633, 5635, 5636 ], "rotates": true }, - { "id": "prison_1_6", "fg": [ 5638, 5637, 5639, 5640 ], "rotates": true }, - { "id": "prison_1_7", "fg": [ 5642, 5641, 5643, 5644 ], "rotates": true }, - { "id": "prison_1_8", "fg": [ 5646, 5645, 5647, 5648 ], "rotates": true }, - { "id": "prison_1_9", "fg": [ 5650, 5649, 5651, 5652 ], "rotates": true }, - { "id": "river", "fg": [ 5660, 5658, 5663, 5665 ], "bg": 5699, "rotates": true }, + { "id": "icecream_shop", "fg": [ 5663, 5662, 5664, 5665 ], "rotates": true }, + { "id": "prison_1_1", "fg": [ 5667, 5666, 5668, 5669 ], "rotates": true }, + { "id": "prison_1_2", "fg": [ 5671, 5670, 5672, 5673 ], "rotates": true }, + { "id": "prison_1_3", "fg": [ 5675, 5674, 5676, 5677 ], "rotates": true }, + { "id": "prison_1_4", "fg": [ 5679, 5678, 5680, 5681 ], "rotates": true }, + { "id": "prison_1_5", "fg": [ 5683, 5682, 5684, 5685 ], "rotates": true }, + { "id": "prison_1_6", "fg": [ 5687, 5686, 5688, 5689 ], "rotates": true }, + { "id": "prison_1_7", "fg": [ 5691, 5690, 5692, 5693 ], "rotates": true }, + { "id": "prison_1_8", "fg": [ 5695, 5694, 5696, 5697 ], "rotates": true }, + { "id": "prison_1_9", "fg": [ 5699, 5698, 5700, 5701 ], "rotates": true }, + { "id": "river", "fg": [ 5709, 5707, 5712, 5714 ], "bg": 5748, "rotates": true }, { "id": "road", - "fg": 5682, + "fg": 5731, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5666 }, - { "id": "corner", "fg": [ 5668, 5670, 5669, 5667 ] }, - { "id": "t_connection", "fg": [ 5679, 5681, 5680, 5678 ] }, - { "id": "edge", "fg": [ 5672, 5671 ] }, - { "id": "end_piece", "fg": [ 5674, 5676, 5675, 5673 ] }, - { "id": "unconnected", "fg": [ 5682, 5682 ] } + { "id": "center", "fg": 5715 }, + { "id": "corner", "fg": [ 5717, 5719, 5718, 5716 ] }, + { "id": "t_connection", "fg": [ 5728, 5730, 5729, 5727 ] }, + { "id": "edge", "fg": [ 5721, 5720 ] }, + { "id": "end_piece", "fg": [ 5723, 5725, 5724, 5722 ] }, + { "id": "unconnected", "fg": [ 5731, 5731 ] } ] }, - { "id": "cemetery_small", "fg": [ 5684, 5683, 5685, 5686 ], "rotates": true }, - { "id": [ "dirt_road_forest", "dirt_road" ], "fg": [ 5692, 5691, 5692, 5691 ], "rotates": true }, - { "id": [ "dirt_road_turn1_forest", "dirt_road_turn1" ], "fg": [ 5694, 5693, 5695, 5696 ], "rotates": true }, - { "id": [ "dirt_road_turn_forest", "dirt_road_turn" ], "fg": [ 5696, 5695, 5693, 5694 ], "rotates": true }, - { "id": [ "dirt_road_3way_forest", "dirt_road_3way" ], "fg": [ 5688, 5687, 5689, 5690 ], "rotates": true }, + { "id": "cemetery_small", "fg": [ 5733, 5732, 5734, 5735 ], "rotates": true }, + { "id": [ "dirt_road_forest", "dirt_road" ], "fg": [ 5741, 5740, 5741, 5740 ], "rotates": true }, + { "id": [ "dirt_road_turn1_forest", "dirt_road_turn1" ], "fg": [ 5743, 5742, 5744, 5745 ], "rotates": true }, + { "id": [ "dirt_road_turn_forest", "dirt_road_turn" ], "fg": [ 5745, 5744, 5742, 5743 ], "rotates": true }, + { "id": [ "dirt_road_3way_forest", "dirt_road_3way" ], "fg": [ 5737, 5736, 5738, 5739 ], "rotates": true }, { "id": [ "shelter", "shelter_vandal", "shelter_1", "shelter_1_vandal", "shelter_2", "shelter_2_vandal" ], - "fg": 5697 + "fg": 5746 }, - { "id": [ "shelter_roof", "shelter_roof_1" ], "fg": 5698 }, + { "id": [ "shelter_roof", "shelter_roof_1" ], "fg": 5747 }, { "id": "field", "fg": [ - { "weight": 25, "sprite": 5699 }, - { "weight": 40, "sprite": 5700 }, - { "weight": 10, "sprite": 5701 }, - { "weight": 25, "sprite": 5702 } - ] - }, - { "id": [ "motel_entrance" ], "fg": [ 5783, 5782, 5788, 5789 ], "rotates": true }, - { "id": [ "motel_1" ], "fg": [ 5759, 5758, 5764, 5765 ], "rotates": true }, - { "id": [ "motel_2" ], "fg": [ 5767, 5766, 5772, 5773 ], "rotates": true }, - { "id": [ "motel_3" ], "fg": [ 5775, 5774, 5780, 5781 ], "rotates": true }, - { "id": [ "motel_entrance_roof" ], "fg": [ 5785, 5784, 5786, 5787 ], "rotates": true }, - { "id": [ "motel_1_roof" ], "fg": [ 5761, 5760, 5762, 5763 ], "rotates": true }, - { "id": [ "motel_2_roof" ], "fg": [ 5769, 5768, 5770, 5771 ], "rotates": true }, - { "id": [ "motel_3_roof" ], "fg": [ 5777, 5776, 5778, 5779 ], "rotates": true }, - { "id": [ "2fmotel_entrance" ], "fg": [ 5783, 5782, 5788, 5789 ], "rotates": true }, - { "id": [ "2fmotel_1" ], "fg": [ 5719, 5714, 5724, 5725 ], "rotates": true }, - { "id": [ "2fmotel_2" ], "fg": [ 5731, 5726, 5736, 5737 ], "rotates": true }, - { "id": [ "2fmotel_3" ], "fg": [ 5743, 5738, 5748, 5749 ], "rotates": true }, - { "id": [ "2fmotel_entrance_f2" ], "fg": [ 5751, 5750, 5752, 5753 ], "rotates": true }, - { "id": [ "2fmotel_1_f2" ], "fg": [ 5716, 5715, 5717, 5718 ], "rotates": true }, - { "id": [ "2fmotel_2_f2" ], "fg": [ 5728, 5727, 5729, 5730 ], "rotates": true }, - { "id": [ "2fmotel_3_f2" ], "fg": [ 5740, 5739, 5741, 5742 ], "rotates": true }, - { "id": [ "2fmotel_entrance_r" ], "fg": [ 5755, 5754, 5756, 5757 ], "rotates": true }, - { "id": [ "2fmotel_1_r" ], "fg": [ 5721, 5720, 5722, 5723 ], "rotates": true }, - { "id": [ "2fmotel_2_r" ], "fg": [ 5733, 5732, 5734, 5735 ], "rotates": true }, - { "id": [ "2fmotel_3_r" ], "fg": [ 5745, 5744, 5746, 5747 ], "rotates": true }, + { "weight": 25, "sprite": 5748 }, + { "weight": 40, "sprite": 5749 }, + { "weight": 10, "sprite": 5750 }, + { "weight": 25, "sprite": 5751 } + ] + }, + { "id": [ "motel_entrance" ], "fg": [ 5832, 5831, 5837, 5838 ], "rotates": true }, + { "id": [ "motel_1" ], "fg": [ 5808, 5807, 5813, 5814 ], "rotates": true }, + { "id": [ "motel_2" ], "fg": [ 5816, 5815, 5821, 5822 ], "rotates": true }, + { "id": [ "motel_3" ], "fg": [ 5824, 5823, 5829, 5830 ], "rotates": true }, + { "id": [ "motel_entrance_roof" ], "fg": [ 5834, 5833, 5835, 5836 ], "rotates": true }, + { "id": [ "motel_1_roof" ], "fg": [ 5810, 5809, 5811, 5812 ], "rotates": true }, + { "id": [ "motel_2_roof" ], "fg": [ 5818, 5817, 5819, 5820 ], "rotates": true }, + { "id": [ "motel_3_roof" ], "fg": [ 5826, 5825, 5827, 5828 ], "rotates": true }, + { "id": [ "2fmotel_entrance" ], "fg": [ 5832, 5831, 5837, 5838 ], "rotates": true }, + { "id": [ "2fmotel_1" ], "fg": [ 5768, 5763, 5773, 5774 ], "rotates": true }, + { "id": [ "2fmotel_2" ], "fg": [ 5780, 5775, 5785, 5786 ], "rotates": true }, + { "id": [ "2fmotel_3" ], "fg": [ 5792, 5787, 5797, 5798 ], "rotates": true }, + { "id": [ "2fmotel_entrance_f2" ], "fg": [ 5800, 5799, 5801, 5802 ], "rotates": true }, + { "id": [ "2fmotel_1_f2" ], "fg": [ 5765, 5764, 5766, 5767 ], "rotates": true }, + { "id": [ "2fmotel_2_f2" ], "fg": [ 5777, 5776, 5778, 5779 ], "rotates": true }, + { "id": [ "2fmotel_3_f2" ], "fg": [ 5789, 5788, 5790, 5791 ], "rotates": true }, + { "id": [ "2fmotel_entrance_r" ], "fg": [ 5804, 5803, 5805, 5806 ], "rotates": true }, + { "id": [ "2fmotel_1_r" ], "fg": [ 5770, 5769, 5771, 5772 ], "rotates": true }, + { "id": [ "2fmotel_2_r" ], "fg": [ 5782, 5781, 5783, 5784 ], "rotates": true }, + { "id": [ "2fmotel_3_r" ], "fg": [ 5794, 5793, 5795, 5796 ], "rotates": true }, { "id": "open_air", "fg": [ - { "weight": 1, "sprite": 5790 }, - { "weight": 1, "sprite": 5791 }, - { "weight": 1, "sprite": 5792 }, - { "weight": 1, "sprite": 5793 }, - { "weight": 1, "sprite": 5794 }, - { "weight": 1, "sprite": 5795 } + { "weight": 1, "sprite": 5839 }, + { "weight": 1, "sprite": 5840 }, + { "weight": 1, "sprite": 5841 }, + { "weight": 1, "sprite": 5842 }, + { "weight": 1, "sprite": 5843 }, + { "weight": 1, "sprite": 5844 } ] }, - { "id": [ "refctr_SW1e" ], "fg": [ { "weight": 1, "sprite": 5809 }, { "weight": 1, "sprite": 5810 } ] }, - { "id": [ "refctr_NW1a" ], "fg": [ { "weight": 1, "sprite": 5811 }, { "weight": 1, "sprite": 5812 } ] }, - { "id": [ "refctr_NE1a" ], "fg": [ { "weight": 1, "sprite": 5801 }, { "weight": 1, "sprite": 5802 } ] }, - { "id": [ "refctr_SE1e" ], "fg": [ { "weight": 1, "sprite": 5799 }, { "weight": 1, "sprite": 5800 } ] }, + { "id": [ "refctr_SW1e" ], "fg": [ { "weight": 1, "sprite": 5858 }, { "weight": 1, "sprite": 5859 } ] }, + { "id": [ "refctr_NW1a" ], "fg": [ { "weight": 1, "sprite": 5860 }, { "weight": 1, "sprite": 5861 } ] }, + { "id": [ "refctr_NE1a" ], "fg": [ { "weight": 1, "sprite": 5850 }, { "weight": 1, "sprite": 5851 } ] }, + { "id": [ "refctr_SE1e" ], "fg": [ { "weight": 1, "sprite": 5848 }, { "weight": 1, "sprite": 5849 } ] }, { "id": [ "refctr_NW2a", @@ -10114,7 +10158,7 @@ "refctr_N4a", "refctr_N5a" ], - "fg": [ { "weight": 1, "sprite": 5805 }, { "weight": 1, "sprite": 5806 } ] + "fg": [ { "weight": 1, "sprite": 5854 }, { "weight": 1, "sprite": 5855 } ] }, { "id": [ @@ -10128,7 +10172,7 @@ "refctr_S4e", "refctr_S5e" ], - "fg": [ { "weight": 1, "sprite": 5803 }, { "weight": 1, "sprite": 5804 } ] + "fg": [ { "weight": 1, "sprite": 5852 }, { "weight": 1, "sprite": 5853 } ] }, { "id": [ @@ -10146,7 +10190,7 @@ "refctr_NE1c", "refctr_NE1b" ], - "fg": [ { "weight": 1, "sprite": 5797 }, { "weight": 1, "sprite": 5798 } ] + "fg": [ { "weight": 1, "sprite": 5846 }, { "weight": 1, "sprite": 5847 } ] }, { "id": [ @@ -10164,140 +10208,148 @@ "refctr_NW1c", "refctr_NW1b" ], - "fg": [ { "weight": 80, "sprite": 5807 }, { "weight": 20, "sprite": 5808 } ] + "fg": [ { "weight": 80, "sprite": 5856 }, { "weight": 20, "sprite": 5857 } ] }, - { "id": "s_baseballfield_a1", "fg": [ 5813, 5814, 5816, 5815 ], "rotates": true }, - { "id": "s_baseballfield_a2", "fg": [ 5814, 5816, 5815, 5813 ], "rotates": true }, - { "id": "s_baseballfield_b1", "fg": [ 5815, 5813, 5814, 5816 ], "rotates": true }, - { "id": "s_baseballfield_b2", "fg": [ 5816, 5815, 5813, 5814 ], "rotates": true }, - { "id": [ "shipwreck_river_1" ], "fg": [ 5817, 5819, 5820, 5818 ], "rotates": true }, - { "id": [ "shipwreck_river_2" ], "fg": [ 5821, 5823, 5824, 5822 ], "rotates": true }, + { "id": "s_baseballfield_a1", "fg": [ 5862, 5863, 5865, 5864 ], "rotates": true }, + { "id": "s_baseballfield_a2", "fg": [ 5863, 5865, 5864, 5862 ], "rotates": true }, + { "id": "s_baseballfield_b1", "fg": [ 5864, 5862, 5863, 5865 ], "rotates": true }, + { "id": "s_baseballfield_b2", "fg": [ 5865, 5864, 5862, 5863 ], "rotates": true }, + { "id": [ "shipwreck_river_1" ], "fg": [ 5866, 5868, 5869, 5867 ], "rotates": true }, + { "id": [ "shipwreck_river_2" ], "fg": [ 5870, 5872, 5873, 5871 ], "rotates": true }, { "id": "solid_earth", "fg": [ - { "weight": 60, "sprite": 5825 }, - { "weight": 20, "sprite": 5826 }, - { "weight": 5, "sprite": 5827 }, - { "weight": 5, "sprite": 5828 }, - { "weight": 10, "sprite": 5829 } - ] - }, - { "id": "Cave", "fg": 5520 }, - { "id": "campsite_cabin_incomplete", "fg": 5525 }, - { "id": "campsite_field_biker_destroyed", "fg": 5526 }, - { "id": "crater", "fg": 5527 }, - { "id": "empty_rock", "fg": 5529 }, - { "id": "forest_water", "fg": 5533 }, - { "id": "hot_springs", "fg": 5534 }, - { "id": "lab", "fg": 5535 }, - { "id": "lake_shore", "fg": 5536 }, - { "id": "lake_surface", "fg": 5537 }, - { "id": "lmoe", "fg": 5538 }, - { "id": "nest_dermatik", "fg": 5539 }, - { "id": "park", "fg": 5540 }, - { "id": "pond_field", "fg": 5541 }, - { "id": "pond_forest", "fg": 5542 }, - { "id": "pond_swamp", "fg": 5543 }, - { "id": "slimepit", "fg": 5546 }, - { "id": "small_wooded_trail", "fg": 5547 }, - { "id": "swamp", "fg": 5548 }, - { "id": "veterinarian", "fg": 5549 }, - { "id": "forest_trailend_w", "fg": 5588 }, - { "id": "river_c_not_ne", "fg": 5653 }, - { "id": "river_c_not_nw", "fg": 5654 }, - { "id": "river_c_not_se", "fg": 5655 }, - { "id": "river_c_not_sw", "fg": 5656 }, - { "id": "river_center", "fg": 5657 }, - { "id": "river_ne", "fg": 5659 }, - { "id": "river_nw", "fg": 5661 }, - { "id": "river_se", "fg": 5662 }, - { "id": "river_sw", "fg": 5664 }, - { "id": "road_nesw_manhole", "fg": 5677 }, - { "id": "mission_arrow_down", "fg": 5703 }, - { "id": "mission_arrow_e", "fg": 5704 }, - { "id": "mission_arrow_n", "fg": 5705 }, - { "id": "mission_arrow_ne", "fg": 5706 }, - { "id": "mission_arrow_nw", "fg": 5707 }, - { "id": "mission_arrow_s", "fg": 5708 }, - { "id": "mission_arrow_se", "fg": 5709 }, - { "id": "mission_arrow_sw", "fg": 5710 }, - { "id": "mission_arrow_up", "fg": 5711 }, - { "id": "mission_arrow_w", "fg": 5712 }, - { "id": "mission_cursor", "fg": 5713 }, - { "id": "overmap_remembered_vehicle", "fg": 5796 } + { "weight": 60, "sprite": 5874 }, + { "weight": 20, "sprite": 5875 }, + { "weight": 5, "sprite": 5876 }, + { "weight": 5, "sprite": 5877 }, + { "weight": 10, "sprite": 5878 } + ] + }, + { "id": "Cave", "fg": 5568 }, + { "id": "campsite_cabin_incomplete", "fg": 5573 }, + { "id": "campsite_field_biker_destroyed", "fg": 5574 }, + { "id": "crater", "fg": 5575 }, + { "id": "empty_rock", "fg": 5577 }, + { "id": "forest_water", "fg": 5581 }, + { "id": "hot_springs", "fg": 5582 }, + { "id": "lab", "fg": 5583 }, + { "id": "lake_shore", "fg": 5584 }, + { "id": "lake_surface", "fg": 5585 }, + { "id": "lmoe", "fg": 5586 }, + { "id": "nest_dermatik", "fg": 5587 }, + { "id": "park", "fg": 5588 }, + { "id": "pond_field", "fg": 5589 }, + { "id": "pond_forest", "fg": 5590 }, + { "id": "pond_swamp", "fg": 5591 }, + { "id": "slimepit", "fg": 5594 }, + { "id": "small_wooded_trail", "fg": 5595 }, + { "id": "swamp", "fg": 5596 }, + { "id": "unknown_map_extra", "fg": 5597 }, + { "id": "veterinarian", "fg": 5598 }, + { "id": "forest_trailend_w", "fg": 5637 }, + { "id": "river_c_not_ne", "fg": 5702 }, + { "id": "river_c_not_nw", "fg": 5703 }, + { "id": "river_c_not_se", "fg": 5704 }, + { "id": "river_c_not_sw", "fg": 5705 }, + { "id": "river_center", "fg": 5706 }, + { "id": "river_ne", "fg": 5708 }, + { "id": "river_nw", "fg": 5710 }, + { "id": "river_se", "fg": 5711 }, + { "id": "river_sw", "fg": 5713 }, + { "id": "road_nesw_manhole", "fg": 5726 }, + { "id": "mission_arrow_down", "fg": 5752 }, + { "id": "mission_arrow_e", "fg": 5753 }, + { "id": "mission_arrow_n", "fg": 5754 }, + { "id": "mission_arrow_ne", "fg": 5755 }, + { "id": "mission_arrow_nw", "fg": 5756 }, + { "id": "mission_arrow_s", "fg": 5757 }, + { "id": "mission_arrow_se", "fg": 5758 }, + { "id": "mission_arrow_sw", "fg": 5759 }, + { "id": "mission_arrow_up", "fg": 5760 }, + { "id": "mission_arrow_w", "fg": 5761 }, + { "id": "mission_cursor", "fg": 5762 }, + { "id": "overmap_remembered_vehicle", "fg": 5845 } ] }, { "file": "small.png", - "//": "range 5840 to 5887", + "//": "range 5888 to 5951", "sprite_width": 20, "sprite_height": 20, "sprite_offset_x": 6, "sprite_offset_y": 0, "tiles": [ - { "id": "UPS_off", "fg": 5840 }, - { "id": "ZSG", "fg": 5841 }, - { "id": "book_ruined", "fg": 5842 }, - { "id": "bowl_clay", "fg": 5843 }, - { "id": "ceramic_bowl", "fg": 5844 }, - { "id": "glass_bowl", "fg": 5845 }, - { "id": "plastic_bowl_kids", "fg": 5846 }, - { "id": "brush", "fg": 5847 }, - { "id": "butter", "fg": 5848 }, - { "id": "charcoal", "fg": 5849 }, - { "id": "cigar_butt", "fg": 5850 }, - { "id": "circsaw_blade", "fg": 5851 }, - { "id": "judo_belt_black", "fg": 5852 }, - { "id": "judo_belt_blue", "fg": 5853 }, - { "id": "judo_belt_brown", "fg": 5854 }, - { "id": "judo_belt_green", "fg": 5855 }, - { "id": "judo_belt_orange", "fg": 5856 }, - { "id": "judo_belt_white", "fg": 5857 }, - { "id": "judo_belt_yellow", "fg": 5858 }, - { "id": "duct_tape", "fg": 5859 }, - { "id": "fetus", "fg": 5860 }, - { "id": "fish_bowl", "fg": 5861 }, - { "id": "honey_ant", "fg": 5862 }, - { "id": "leather_cat_tail", "fg": 5863 }, - { "id": "light_disposable_cell", "fg": 5864 }, - { "id": "magic_8_ball", "fg": 5865 }, - { "id": "match", "fg": 5866 }, - { "id": "mirror", "fg": 5867 }, - { "id": "money", "fg": 5868 }, - { "id": "pebble", "fg": 5869 }, - { "id": "blue_pen", "fg": 5870 }, - { "id": "green_pen", "fg": 5871 }, - { "id": "pen", "fg": 5872 }, - { "id": "red_pen", "fg": 5873 }, - { "id": "pipebomb", "fg": 5874 }, - { "id": "pipebomb_act", "fg": 5875 }, - { "id": "primitive_axe", "fg": 5876 }, - { "id": "pur_tablets", "fg": 5877 }, - { "id": "radio_car_wheel", "fg": 5878 }, - { "id": "soldering_iron", "fg": 5879 }, - { "id": "strawberries", "fg": 5880 }, - { "id": "superglue", "fg": 5881 }, - { "id": "toaster", "fg": 5882 }, - { "id": "corpse_mon_aphid_small", "fg": 5883 }, - { "id": "mon_aphid_small", "fg": 5884 } + { "id": "ruined_chunks", "fg": 5888 }, + { "id": "1st_aid_box", "fg": 5889 }, + { "id": "UPS_off", "fg": 5890 }, + { "id": "ZSG", "fg": 5891 }, + { "id": "book_ruined", "fg": 5892 }, + { "id": "bowl_clay", "fg": 5893 }, + { "id": "ceramic_bowl", "fg": 5894 }, + { "id": "glass_bowl", "fg": 5895 }, + { "id": "plastic_bowl_kids", "fg": 5896 }, + { "id": "brush", "fg": 5897 }, + { "id": "butter", "fg": 5898 }, + { "id": "charcoal", "fg": 5899 }, + { "id": "cigar_butt", "fg": 5900 }, + { "id": "circsaw_blade", "fg": 5901 }, + { "id": "judo_belt_black", "fg": 5902 }, + { "id": "judo_belt_blue", "fg": 5903 }, + { "id": "judo_belt_brown", "fg": 5904 }, + { "id": "judo_belt_green", "fg": 5905 }, + { "id": "judo_belt_orange", "fg": 5906 }, + { "id": "judo_belt_white", "fg": 5907 }, + { "id": "judo_belt_yellow", "fg": 5908 }, + { "id": "duct_tape", "fg": 5909 }, + { "id": "fetus", "fg": 5910 }, + { "id": "fish_bowl", "fg": 5911 }, + { "id": "honey_ant", "fg": 5912 }, + { "id": "leather_cat_tail", "fg": 5913 }, + { "id": "light_disposable_cell", "fg": 5914 }, + { "id": "magic_8_ball", "fg": 5915 }, + { "id": "match", "fg": 5916 }, + { "id": "mirror", "fg": 5917 }, + { "id": "money", "fg": 5918 }, + { "id": "pebble", "fg": 5919 }, + { "id": "blue_pen", "fg": 5920 }, + { "id": "green_pen", "fg": 5921 }, + { "id": "pen", "fg": 5922 }, + { "id": "red_pen", "fg": 5923 }, + { "id": "pipebomb", "fg": 5924 }, + { "id": "pipebomb_act", "fg": 5925 }, + { "id": "primitive_axe", "fg": 5926 }, + { "id": "pur_tablets", "fg": 5927 }, + { "id": "radio_car_wheel", "fg": 5928 }, + { "id": "soldering_iron", "fg": 5929 }, + { "id": "strawberries", "fg": 5930 }, + { "id": "superglue", "fg": 5931 }, + { "id": "toaster", "fg": 5932 }, + { "id": "copper_circlet", "fg": 5933 }, + { "id": "copper_infuser", "fg": 5934 }, + { "id": "silver_infuser", "fg": 5935 }, + { "id": "wizard_hat", "fg": 5936 }, + { "id": "corpse_mon_aphid_small", "fg": 5937 }, + { "id": "mon_aphid_small", "fg": 5938 } ] }, { "file": "wide.png", - "//": "range 5888 to 5903", + "//": "range 5952 to 5967", "sprite_width": 48, "sprite_height": 48, "sprite_offset_x": -16, "sprite_offset_y": -16, "tiles": [ - { "id": "mon_secubot", "fg": 5888 }, - { "id": "mon_talon_m202a1", "fg": 5889 }, - { "id": "mon_halloween_dragon", "fg": 5890 } + { "id": "f_magic_circle", "fg": 5952 }, + { "id": "mon_secubot", "fg": 5953 }, + { "id": "mon_talon_m202a1", "fg": 5954 }, + { "id": "mon_halloween_dragon", "fg": 5955 } ] }, { "file": "tall.png", - "//": "range 5904 to 6063", + "//": "range 5968 to 6127", "sprite_width": 32, "sprite_height": 48, "sprite_offset_x": 0, @@ -10307,11 +10359,11 @@ "id": "f_alien_zapper", "animated": true, "fg": [ - { "weight": 36, "sprite": 5913 }, - { "weight": 7, "sprite": 5914 }, - { "weight": 7, "sprite": 5915 }, - { "weight": 7, "sprite": 5916 }, - { "weight": 7, "sprite": 5917 } + { "weight": 36, "sprite": 5977 }, + { "weight": 7, "sprite": 5978 }, + { "weight": 7, "sprite": 5979 }, + { "weight": 7, "sprite": 5980 }, + { "weight": 7, "sprite": 5981 } ], "rotates": false }, @@ -10324,113 +10376,113 @@ "t_sliding_bookcase_control", "t_sliding_wall_control" ], - "fg": 5918, + "fg": 5982, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 5918 }, - { "id": "corner", "fg": [ 5920, 5920, 5920, 5920 ] }, - { "id": "t_connection", "fg": [ 5919, 5920, 5918, 5920 ] }, - { "id": "edge", "fg": [ 5920, 5918 ] }, - { "id": "end_piece", "fg": [ 5920, 5918, 5920, 5918 ] }, - { "id": "unconnected", "fg": [ 5918, 5918 ] } + { "id": "center", "fg": 5982 }, + { "id": "corner", "fg": [ 5984, 5984, 5984, 5984 ] }, + { "id": "t_connection", "fg": [ 5983, 5984, 5982, 5984 ] }, + { "id": "edge", "fg": [ 5984, 5982 ] }, + { "id": "end_piece", "fg": [ 5984, 5982, 5984, 5982 ] }, + { "id": "unconnected", "fg": [ 5982, 5982 ] } ] }, - { "id": "f_fridge", "rotates": true, "fg": [ 5921, 5924, 5923, 5922 ] }, - { "id": "f_vending_c", "rotates": true, "fg": [ 5925, 5928, 5927, 5926 ] }, - { "id": "f_vending_o", "rotates": true, "fg": [ 5929, 5932, 5931, 5930 ] }, + { "id": "f_fridge", "rotates": true, "fg": [ 5985, 5988, 5987, 5986 ] }, + { "id": "f_vending_c", "rotates": true, "fg": [ 5989, 5992, 5991, 5990 ] }, + { "id": "f_vending_o", "rotates": true, "fg": [ 5993, 5996, 5995, 5994 ] }, { "id": "mon_demon_spider", "animated": true, "fg": [ - { "weight": 15, "sprite": 5936 }, - { "weight": 15, "sprite": 5937 }, - { "weight": 15, "sprite": 5938 }, - { "weight": 15, "sprite": 5937 } + { "weight": 15, "sprite": 6000 }, + { "weight": 15, "sprite": 6001 }, + { "weight": 15, "sprite": 6002 }, + { "weight": 15, "sprite": 6001 } ], "rotates": false }, { "id": "mon_marshmallow_buff", - "fg": [ { "weight": 1, "sprite": 5939 }, { "weight": 1, "sprite": 5940 } ], + "fg": [ { "weight": 1, "sprite": 6004 }, { "weight": 1, "sprite": 6005 } ], "bg": [ ], "rotates": false }, - { "id": "mon_nursebot", "fg": [ 5941, 5942, 5943 ], "rotates": false }, - { "id": [ "mon_brute_pupa", "mon_brute_pupa_decoy" ], "fg": 5945, "rotates": false }, + { "id": "mon_nursebot", "fg": [ 6006, 6007, 6008 ], "rotates": false }, + { "id": [ "mon_brute_pupa", "mon_brute_pupa_decoy" ], "fg": 6010, "rotates": false }, { "id": "mon_firefly", "animated": true, "fg": [ - { "weight": 15, "sprite": 5946 }, - { "weight": 15, "sprite": 5947 }, - { "weight": 15, "sprite": 5948 }, - { "weight": 15, "sprite": 5947 } - ] - }, - { "id": "overlay_worn_10gal_hat", "fg": 5952, "rotates": false }, - { "id": "overlay_worn_bowhat", "fg": 5953, "rotates": false }, - { "id": "overlay_worn_eboshi", "fg": 5954, "rotates": false }, - { "id": [ "overlay_worn_fedora", "fedora" ], "fg": 5955, "rotates": false }, - { "id": "overlay_worn_firehelmet", "fg": 5956, "rotates": false }, - { "id": "overlay_worn_hat_chef", "fg": 5957, "rotates": false }, - { "id": "overlay_worn_hat_hard", "fg": 5958, "rotates": false }, - { "id": "overlay_worn_hat_hard_hooded", "fg": 5959, "rotates": false }, - { "id": "overlay_worn_hat_sombrero", "fg": 5960, "rotates": false }, - { "id": "overlay_worn_helmet_kabuto", "fg": 5961, "rotates": false }, - { "id": "overlay_worn_miner_hat", "fg": 5962, "rotates": false }, - { "id": "overlay_worn_miner_hat_on", "fg": 5963, "rotates": false }, - { "id": "overlay_worn_pickelhaube", "fg": 5964, "rotates": false }, - { "id": "overlay_worn_porkpie", "fg": 5965, "rotates": false }, - { "id": "overlay_worn_straw_fedora", "fg": 5966, "rotates": false }, - { "id": "overlay_worn_straw_hat", "fg": 5967, "rotates": false }, - { "id": "overlay_worn_tinfoil_hat", "fg": 5968, "rotates": false }, - { "id": "overlay_worn_tophat", "fg": 5969, "rotates": false }, - { "id": "overlay_worn_veil_wedding", "fg": 5970, "rotates": false }, - { "id": "overlay_worn_welding_mask_crude_raised", "fg": 5971, "rotates": false }, - { "id": "overlay_worn_welding_mask_raised", "fg": 5972, "rotates": false }, - { "id": "overlay_effect_badpoison", "fg": 5974 }, - { "id": "overlay_effect_bleed", "fg": 5975 }, - { "id": "overlay_effect_bouldering", "fg": 5976 }, - { "id": "overlay_effect_common_cold", "fg": 5977 }, - { "id": "overlay_effect_dazed", "fg": 5978 }, - { "id": [ "overlay_effect_deaf", "overlay_effect_earphones" ], "fg": 5979 }, - { "id": "overlay_effect_downed", "fg": 5980 }, - { "id": "overlay_effect_drunk", "fg": 5981 }, - { "id": [ "overlay_effect_flu", "overlay_effect_Influenza" ], "fg": 5982 }, - { "id": [ "overlay_effect_foodpoison", "overlay_effect_nausea" ], "fg": 5983 }, - { "id": "overlay_effect_fungus", "fg": 5984 }, - { "id": "overlay_effect_grabbed", "fg": 5985 }, - { "id": "overlay_female_effect_haslight", "fg": 5994 }, - { "id": "overlay_male_effect_haslight", "fg": 5995 }, - { "id": "overlay_effect_high", "fg": 5986 }, - { "id": "overlay_effect_paralyzepoison", "fg": 5987 }, - { "id": "overlay_effect_poison", "fg": 5988 }, - { "id": "overlay_effect_sleep", "fg": 5989 }, - { "id": "overlay_effect_spores", "fg": 5990 }, - { "id": "overlay_effect_stunned", "fg": 5991 }, - { "id": "overlay_effect_visuals", "fg": 5992 }, - { "id": [ "overlay_effect_winded", "overlay_effect_asthma" ], "fg": 5993 }, - { "id": "overlay_female_mutation_hair_black_fro", "fg": 6007, "rotates": false }, - { "id": "overlay_female_mutation_hair_gray_fro", "fg": 6010, "rotates": false }, - { "id": "overlay_female_mutation_hair_blond_fro", "fg": 6008, "rotates": false }, - { "id": "overlay_female_mutation_hair_brown_fro", "fg": 6009, "rotates": false }, - { "id": "overlay_female_mutation_hair_white_fro", "fg": 6012, "rotates": false }, - { "id": "overlay_female_mutation_hair_red_fro", "fg": 6011, "rotates": false }, - { "id": "overlay_male_mutation_hair_black_fro", "fg": 6013, "rotates": false }, - { "id": "overlay_male_mutation_hair_gray_fro", "fg": 6016, "rotates": false }, - { "id": "overlay_male_mutation_hair_blond_fro", "fg": 6014, "rotates": false }, - { "id": "overlay_male_mutation_hair_brown_fro", "fg": 6015, "rotates": false }, - { "id": "overlay_male_mutation_hair_white_fro", "fg": 6018, "rotates": false }, - { "id": "overlay_male_mutation_hair_red_fro", "fg": 6017, "rotates": false }, - { "id": "overlay_mutation_hair_black_mohawk", "fg": 6019, "rotates": false }, - { "id": "overlay_mutation_hair_gray_mohawk", "fg": 6022, "rotates": false }, - { "id": "overlay_mutation_hair_blond_mohawk", "fg": 6020, "rotates": false }, - { "id": "overlay_mutation_hair_brown_mohawk", "fg": 6021, "rotates": false }, - { "id": "overlay_mutation_hair_white_mohawk", "fg": 6024, "rotates": false }, - { "id": "overlay_mutation_hair_red_mohawk", "fg": 6023, "rotates": false }, + { "weight": 15, "sprite": 6011 }, + { "weight": 15, "sprite": 6012 }, + { "weight": 15, "sprite": 6013 }, + { "weight": 15, "sprite": 6012 } + ] + }, + { "id": "overlay_worn_10gal_hat", "fg": 6017, "rotates": false }, + { "id": "overlay_worn_bowhat", "fg": 6018, "rotates": false }, + { "id": "overlay_worn_eboshi", "fg": 6019, "rotates": false }, + { "id": [ "overlay_worn_fedora", "fedora" ], "fg": 6020, "rotates": false }, + { "id": "overlay_worn_firehelmet", "fg": 6021, "rotates": false }, + { "id": "overlay_worn_hat_chef", "fg": 6022, "rotates": false }, + { "id": "overlay_worn_hat_hard", "fg": 6023, "rotates": false }, + { "id": "overlay_worn_hat_hard_hooded", "fg": 6024, "rotates": false }, + { "id": "overlay_worn_hat_sombrero", "fg": 6025, "rotates": false }, + { "id": "overlay_worn_helmet_kabuto", "fg": 6026, "rotates": false }, + { "id": "overlay_worn_miner_hat", "fg": 6027, "rotates": false }, + { "id": "overlay_worn_miner_hat_on", "fg": 6028, "rotates": false }, + { "id": "overlay_worn_pickelhaube", "fg": 6029, "rotates": false }, + { "id": "overlay_worn_porkpie", "fg": 6030, "rotates": false }, + { "id": "overlay_worn_straw_fedora", "fg": 6031, "rotates": false }, + { "id": "overlay_worn_straw_hat", "fg": 6032, "rotates": false }, + { "id": "overlay_worn_tinfoil_hat", "fg": 6033, "rotates": false }, + { "id": "overlay_worn_tophat", "fg": 6034, "rotates": false }, + { "id": "overlay_worn_veil_wedding", "fg": 6035, "rotates": false }, + { "id": "overlay_worn_welding_mask_crude_raised", "fg": 6036, "rotates": false }, + { "id": "overlay_worn_welding_mask_raised", "fg": 6037, "rotates": false }, + { "id": "overlay_effect_badpoison", "fg": 6039 }, + { "id": "overlay_effect_bleed", "fg": 6040 }, + { "id": "overlay_effect_bouldering", "fg": 6041 }, + { "id": "overlay_effect_common_cold", "fg": 6042 }, + { "id": "overlay_effect_dazed", "fg": 6043 }, + { "id": [ "overlay_effect_deaf", "overlay_effect_earphones" ], "fg": 6044 }, + { "id": "overlay_effect_downed", "fg": 6045 }, + { "id": "overlay_effect_drunk", "fg": 6046 }, + { "id": [ "overlay_effect_flu", "overlay_effect_Influenza" ], "fg": 6047 }, + { "id": [ "overlay_effect_foodpoison", "overlay_effect_nausea" ], "fg": 6048 }, + { "id": "overlay_effect_fungus", "fg": 6049 }, + { "id": "overlay_effect_grabbed", "fg": 6050 }, + { "id": "overlay_female_effect_haslight", "fg": 6059 }, + { "id": "overlay_male_effect_haslight", "fg": 6060 }, + { "id": "overlay_effect_high", "fg": 6051 }, + { "id": "overlay_effect_paralyzepoison", "fg": 6052 }, + { "id": "overlay_effect_poison", "fg": 6053 }, + { "id": "overlay_effect_sleep", "fg": 6054 }, + { "id": "overlay_effect_spores", "fg": 6055 }, + { "id": "overlay_effect_stunned", "fg": 6056 }, + { "id": "overlay_effect_visuals", "fg": 6057 }, + { "id": [ "overlay_effect_winded", "overlay_effect_asthma" ], "fg": 6058 }, + { "id": "overlay_female_mutation_hair_black_fro", "fg": 6072, "rotates": false }, + { "id": "overlay_female_mutation_hair_gray_fro", "fg": 6075, "rotates": false }, + { "id": "overlay_female_mutation_hair_blond_fro", "fg": 6073, "rotates": false }, + { "id": "overlay_female_mutation_hair_brown_fro", "fg": 6074, "rotates": false }, + { "id": "overlay_female_mutation_hair_white_fro", "fg": 6077, "rotates": false }, + { "id": "overlay_female_mutation_hair_red_fro", "fg": 6076, "rotates": false }, + { "id": "overlay_male_mutation_hair_black_fro", "fg": 6078, "rotates": false }, + { "id": "overlay_male_mutation_hair_gray_fro", "fg": 6081, "rotates": false }, + { "id": "overlay_male_mutation_hair_blond_fro", "fg": 6079, "rotates": false }, + { "id": "overlay_male_mutation_hair_brown_fro", "fg": 6080, "rotates": false }, + { "id": "overlay_male_mutation_hair_white_fro", "fg": 6083, "rotates": false }, + { "id": "overlay_male_mutation_hair_red_fro", "fg": 6082, "rotates": false }, + { "id": "overlay_mutation_hair_black_mohawk", "fg": 6084, "rotates": false }, + { "id": "overlay_mutation_hair_gray_mohawk", "fg": 6087, "rotates": false }, + { "id": "overlay_mutation_hair_blond_mohawk", "fg": 6085, "rotates": false }, + { "id": "overlay_mutation_hair_brown_mohawk", "fg": 6086, "rotates": false }, + { "id": "overlay_mutation_hair_white_mohawk", "fg": 6089, "rotates": false }, + { "id": "overlay_mutation_hair_red_mohawk", "fg": 6088, "rotates": false }, { "id": [ "overlay_female_mutation_BIOLUM0", "overlay_female_mutation_BIOLUM1", "overlay_female_mutation_BIOLUM2" ], - "fg": 6025, + "fg": 6090, "rotates": false }, { @@ -10439,12 +10491,12 @@ "overlay_female_mutation_BIOLUM1_active", "overlay_female_mutation_BIOLUM2_active" ], - "fg": 6026, + "fg": 6091, "rotates": false }, { "id": [ "overlay_male_mutation_BIOLUM0", "overlay_male_mutation_BIOLUM1", "overlay_male_mutation_BIOLUM2" ], - "fg": 6027, + "fg": 6092, "rotates": false }, { @@ -10453,150 +10505,152 @@ "overlay_male_mutation_BIOLUM1_active", "overlay_male_mutation_BIOLUM2_active" ], - "fg": 6028, + "fg": 6093, "rotates": false }, - { "id": "overlay_mutation_HORNS_POINTED", "fg": 6029, "rotates": false }, + { "id": "overlay_mutation_HORNS_POINTED", "fg": 6094, "rotates": false }, { "id": "t_privacy_fence", - "fg": 6043, - "bg": 6034, + "fg": 6109, + "bg": 6100, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6043, "bg": 6034 }, - { "id": "corner", "fg": [ 6037, 6039, 6038, 6036 ], "bg": 6034 }, - { "id": "t_connection", "fg": [ 6040, 3693, 6040, 3693 ], "bg": 6034 }, - { "id": "edge", "fg": [ 3693, 6040 ], "bg": 6034 }, - { "id": "end_piece", "fg": [ 3694, 6042, 3695, 6041 ], "bg": 6034 }, - { "id": "unconnected", "fg": [ 6043, 6043 ], "bg": 6034 } + { "id": "center", "fg": 6109, "bg": 6100 }, + { "id": "corner", "fg": [ 6103, 6105, 6104, 6102 ], "bg": 6100 }, + { "id": "t_connection", "fg": [ 6106, 3719, 6106, 3719 ], "bg": 6100 }, + { "id": "edge", "fg": [ 3719, 6106 ], "bg": 6100 }, + { "id": "end_piece", "fg": [ 3720, 6108, 3721, 6107 ], "bg": 6100 }, + { "id": "unconnected", "fg": [ 6109, 6109 ], "bg": 6100 } ] }, { "id": "t_privacy_fence_season_autumn", - "fg": 6043, - "bg": 6032, + "fg": 6109, + "bg": 6098, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6043, "bg": 6032 }, - { "id": "corner", "fg": [ 6037, 6039, 6038, 6036 ], "bg": 6032 }, - { "id": "t_connection", "fg": [ 6040, 3693, 6040, 3693 ], "bg": 6032 }, - { "id": "edge", "fg": [ 3693, 6040 ], "bg": 6032 }, - { "id": "end_piece", "fg": [ 3694, 6042, 3695, 6041 ], "bg": 6032 }, - { "id": "unconnected", "fg": [ 6043, 6043 ], "bg": 6032 } + { "id": "center", "fg": 6109, "bg": 6098 }, + { "id": "corner", "fg": [ 6103, 6105, 6104, 6102 ], "bg": 6098 }, + { "id": "t_connection", "fg": [ 6106, 3719, 6106, 3719 ], "bg": 6098 }, + { "id": "edge", "fg": [ 3719, 6106 ], "bg": 6098 }, + { "id": "end_piece", "fg": [ 3720, 6108, 3721, 6107 ], "bg": 6098 }, + { "id": "unconnected", "fg": [ 6109, 6109 ], "bg": 6098 } ] }, { "id": "t_privacy_fence_season_summer", - "fg": 6043, - "bg": 6033, + "fg": 6109, + "bg": 6099, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6043, "bg": 6033 }, - { "id": "corner", "fg": [ 6037, 6039, 6038, 6036 ], "bg": 6033 }, - { "id": "t_connection", "fg": [ 6040, 3693, 6040, 3693 ], "bg": 6033 }, - { "id": "edge", "fg": [ 3693, 6040 ], "bg": 6033 }, - { "id": "end_piece", "fg": [ 3694, 6042, 3695, 6041 ], "bg": 6033 }, - { "id": "unconnected", "fg": [ 6043, 6043 ], "bg": 6033 } + { "id": "center", "fg": 6109, "bg": 6099 }, + { "id": "corner", "fg": [ 6103, 6105, 6104, 6102 ], "bg": 6099 }, + { "id": "t_connection", "fg": [ 6106, 3719, 6106, 3719 ], "bg": 6099 }, + { "id": "edge", "fg": [ 3719, 6106 ], "bg": 6099 }, + { "id": "end_piece", "fg": [ 3720, 6108, 3721, 6107 ], "bg": 6099 }, + { "id": "unconnected", "fg": [ 6109, 6109 ], "bg": 6099 } ] }, { "id": "t_privacy_fence_season_winter", - "fg": 6043, - "bg": 6035, + "fg": 6109, + "bg": 6101, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 6043, "bg": 6035 }, - { "id": "corner", "fg": [ 6037, 6039, 6038, 6036 ], "bg": 6035 }, - { "id": "t_connection", "fg": [ 6040, 3693, 6040, 3693 ], "bg": 6035 }, - { "id": "edge", "fg": [ 3693, 6040 ], "bg": 6035 }, - { "id": "end_piece", "fg": [ 3694, 6042, 3695, 6041 ], "bg": 6035 }, - { "id": "unconnected", "fg": [ 6043, 6043 ], "bg": 6035 } + { "id": "center", "fg": 6109, "bg": 6101 }, + { "id": "corner", "fg": [ 6103, 6105, 6104, 6102 ], "bg": 6101 }, + { "id": "t_connection", "fg": [ 6106, 3719, 6106, 3719 ], "bg": 6101 }, + { "id": "edge", "fg": [ 3719, 6106 ], "bg": 6101 }, + { "id": "end_piece", "fg": [ 3720, 6108, 3721, 6107 ], "bg": 6101 }, + { "id": "unconnected", "fg": [ 6109, 6109 ], "bg": 6101 } ] }, { "id": "t_vat", - "fg": [ { "weight": 1, "sprite": 6046 }, { "weight": 1, "sprite": 6044 }, { "weight": 1, "sprite": 6045 } ], + "fg": [ { "weight": 1, "sprite": 6112 }, { "weight": 1, "sprite": 6110 }, { "weight": 1, "sprite": 6111 } ], "rotates": false }, { "id": "vp_frame_handle", - "fg": [ 6048, 6050, 6049, 6047 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 5032, "bg": [ 6048, 6050, 6049, 6047 ] } ] - }, - { "id": "f_alien_anemone", "fg": 5904 }, - { "id": "f_alien_gasper", "fg": 5905 }, - { "id": "f_alien_pod", "fg": 5906 }, - { "id": "f_alien_pod_organ", "fg": 5907 }, - { "id": "f_alien_pod_resin", "fg": 5908 }, - { "id": "f_alien_tendril", "fg": 5909 }, - { "id": "f_bigmirror", "fg": 5910 }, - { "id": "f_bigmirror_b", "fg": 5911 }, - { "id": "f_rotary_clothesline", "fg": 5912 }, - { "id": "f_magiclysm_translocator_gate", "fg": 5933 }, - { "id": "cauldron_demon_chitin", "fg": 5934 }, - { "id": "cauldron_orichalcum", "fg": 5935 }, - { "id": "mon_zombie_scissorlimbs", "fg": 5944 }, - { "id": "mon_mantis_giant", "fg": 5949 }, - { "id": "mon_robofac_prototype", "fg": 5950 }, - { "id": "mon_spawn_raptor", "fg": 5951 }, - { "id": "overlay_crouch", "fg": 5973 }, - { "id": "overlay_run", "fg": 5996 }, - { "id": "overlay_effect_weary_0", "fg": 5997 }, - { "id": "overlay_effect_weary_1", "fg": 5998 }, - { "id": "overlay_effect_weary_2", "fg": 5999 }, - { "id": "overlay_effect_weary_3", "fg": 6000 }, - { "id": "overlay_effect_weary_4", "fg": 6001 }, - { "id": "overlay_effect_weary_5", "fg": 6002 }, - { "id": "overlay_effect_weary_6", "fg": 6003 }, - { "id": "overlay_effect_weary_7", "fg": 6004 }, - { "id": "overlay_effect_weary_8", "fg": 6005 }, - { "id": "overlay_prone", "fg": 6006 }, - { "id": "overlay_wielded_mattress", "fg": 6030 }, - { "id": "t_bulk_tank", "fg": 6031 } + "fg": [ 6114, 6116, 6115, 6113 ], + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 5074, "bg": [ 6114, 6116, 6115, 6113 ] } ] + }, + { "id": "f_alien_anemone", "fg": 5968 }, + { "id": "f_alien_gasper", "fg": 5969 }, + { "id": "f_alien_pod", "fg": 5970 }, + { "id": "f_alien_pod_organ", "fg": 5971 }, + { "id": "f_alien_pod_resin", "fg": 5972 }, + { "id": "f_alien_tendril", "fg": 5973 }, + { "id": "f_bigmirror", "fg": 5974 }, + { "id": "f_bigmirror_b", "fg": 5975 }, + { "id": "f_rotary_clothesline", "fg": 5976 }, + { "id": "f_magiclysm_translocator_gate", "fg": 5997 }, + { "id": "cauldron_demon_chitin", "fg": 5998 }, + { "id": "cauldron_orichalcum", "fg": 5999 }, + { "id": "overlay_worn_wizard_hat", "fg": 6003 }, + { "id": "mon_zombie_scissorlimbs", "fg": 6009 }, + { "id": "mon_mantis_giant", "fg": 6014 }, + { "id": "mon_robofac_prototype", "fg": 6015 }, + { "id": "mon_spawn_raptor", "fg": 6016 }, + { "id": "overlay_crouch", "fg": 6038 }, + { "id": "overlay_run", "fg": 6061 }, + { "id": "overlay_effect_weary_0", "fg": 6062 }, + { "id": "overlay_effect_weary_1", "fg": 6063 }, + { "id": "overlay_effect_weary_2", "fg": 6064 }, + { "id": "overlay_effect_weary_3", "fg": 6065 }, + { "id": "overlay_effect_weary_4", "fg": 6066 }, + { "id": "overlay_effect_weary_5", "fg": 6067 }, + { "id": "overlay_effect_weary_6", "fg": 6068 }, + { "id": "overlay_effect_weary_7", "fg": 6069 }, + { "id": "overlay_effect_weary_8", "fg": 6070 }, + { "id": "overlay_prone", "fg": 6071 }, + { "id": "overlay_mutation_RABBIT_EARS", "fg": 6095 }, + { "id": "overlay_wielded_mattress", "fg": 6096 }, + { "id": "t_bulk_tank", "fg": 6097 } ] }, { "file": "large.png", - "//": "range 6064 to 6239", + "//": "range 6128 to 6319", "sprite_width": 64, "sprite_height": 80, "sprite_offset_x": -16, "sprite_offset_y": -48, "tiles": [ - { "id": "f_street_light", "fg": 6064, "bg": [ ], "rotates": false }, - { "id": "f_traffic_light", "fg": 6065, "bg": [ ], "rotates": false }, - { "id": "corpse_mon_allosaurus", "fg": 6066, "rotates": false }, - { "id": "corpse_mon_amigara_horror", "fg": 6067, "rotates": false }, - { "id": "corpse_mon_ankylosaurus", "fg": 6068, "rotates": false }, - { "id": "corpse_mon_darck_wyrm", "fg": 6069, "rotates": false }, - { "id": "corpse_mon_devourer", "fg": 6070, "rotates": false }, - { "id": "corpse_mon_fungaloid_queen", "fg": 6071, "rotates": false }, - { "id": "corpse_mon_fungaloid_seeder", "fg": 6072, "rotates": false }, - { "id": "corpse_mon_fungaloid_tower", "fg": 6073, "rotates": false }, - { "id": "corpse_mon_mi_go_guard", "fg": 6074, "rotates": false }, - { "id": "corpse_mon_mi_go_myrmidon", "fg": 6075, "rotates": false }, - { "id": "corpse_mon_mi_go_slaver", "fg": 6076, "rotates": false }, - { "id": "corpse_mon_mi_go_surgeon", "fg": 6077, "rotates": false }, - { "id": "corpse_mon_naked_molerat", "fg": 6078, "rotates": false }, - { "id": "corpse_mon_parasaurolophus", "fg": 6079, "rotates": false }, - { "id": "corpse_mon_skeleton_hulk", "fg": 6080, "rotates": false }, - { "id": "corpse_mon_spinosaurus", "fg": 6081, "rotates": false }, - { "id": "corpse_mon_stegosaurus", "fg": 6082, "rotates": false }, - { "id": "corpse_mon_triceratops", "fg": 6083, "rotates": false }, - { "id": "corpse_mon_tyrannosaurus", "fg": 6084, "rotates": false }, - { "id": "corpse_mon_utahraptor", "fg": 6085, "rotates": false }, - { "id": "corpse_mon_yugg", "fg": 6086, "rotates": false }, - { "id": "corpse_mon_zombie_corrosive", "fg": 6087, "rotates": false }, - { "id": "corpse_mon_zombie_hulk", "fg": 6088, "rotates": false }, - { "id": "corpse_mon_zombie_kevlar_2", "fg": 6089, "rotates": false }, + { "id": "f_street_light", "fg": 6128, "bg": [ ], "rotates": false }, + { "id": "f_traffic_light", "fg": 6129, "bg": [ ], "rotates": false }, + { "id": "corpse_mon_allosaurus", "fg": 6130, "rotates": false }, + { "id": "corpse_mon_amigara_horror", "fg": 6131, "rotates": false }, + { "id": "corpse_mon_ankylosaurus", "fg": 6132, "rotates": false }, + { "id": "corpse_mon_darck_wyrm", "fg": 6133, "rotates": false }, + { "id": "corpse_mon_devourer", "fg": 6134, "rotates": false }, + { "id": "corpse_mon_fungaloid_queen", "fg": 6135, "rotates": false }, + { "id": "corpse_mon_fungaloid_seeder", "fg": 6136, "rotates": false }, + { "id": "corpse_mon_fungaloid_tower", "fg": 6137, "rotates": false }, + { "id": "corpse_mon_mi_go_guard", "fg": 6138, "rotates": false }, + { "id": "corpse_mon_mi_go_myrmidon", "fg": 6139, "rotates": false }, + { "id": "corpse_mon_mi_go_slaver", "fg": 6140, "rotates": false }, + { "id": "corpse_mon_mi_go_surgeon", "fg": 6141, "rotates": false }, + { "id": "corpse_mon_naked_molerat", "fg": 6142, "rotates": false }, + { "id": "corpse_mon_parasaurolophus", "fg": 6143, "rotates": false }, + { "id": "corpse_mon_skeleton_hulk", "fg": 6144, "rotates": false }, + { "id": "corpse_mon_spinosaurus", "fg": 6145, "rotates": false }, + { "id": "corpse_mon_stegosaurus", "fg": 6146, "rotates": false }, + { "id": "corpse_mon_triceratops", "fg": 6147, "rotates": false }, + { "id": "corpse_mon_tyrannosaurus", "fg": 6148, "rotates": false }, + { "id": "corpse_mon_utahraptor", "fg": 6149, "rotates": false }, + { "id": "corpse_mon_yugg", "fg": 6150, "rotates": false }, + { "id": "corpse_mon_zombie_corrosive", "fg": 6151, "rotates": false }, + { "id": "corpse_mon_zombie_hulk", "fg": 6152, "rotates": false }, + { "id": "corpse_mon_zombie_kevlar_2", "fg": 6153, "rotates": false }, { "id": "mon_claygolem", "fg": [ - { "weight": 10, "sprite": 6092 }, - { "weight": 1, "sprite": 6093 }, - { "weight": 2, "sprite": 6094 }, - { "weight": 3, "sprite": 6095 } + { "weight": 10, "sprite": 6158 }, + { "weight": 1, "sprite": 6159 }, + { "weight": 2, "sprite": 6160 }, + { "weight": 3, "sprite": 6161 } ], "rotates": false }, @@ -10604,77 +10658,77 @@ "id": "mon_demon_spider_queen", "animated": true, "fg": [ - { "weight": 15, "sprite": 6096 }, - { "weight": 15, "sprite": 6097 }, - { "weight": 15, "sprite": 6098 }, - { "weight": 15, "sprite": 6099 }, - { "weight": 15, "sprite": 6098 }, - { "weight": 15, "sprite": 6097 } + { "weight": 15, "sprite": 6162 }, + { "weight": 15, "sprite": 6163 }, + { "weight": 15, "sprite": 6164 }, + { "weight": 15, "sprite": 6165 }, + { "weight": 15, "sprite": 6164 }, + { "weight": 15, "sprite": 6163 } ], "rotates": false }, { "id": "mon_irongolem", - "fg": [ { "weight": 4, "sprite": 6101 }, { "weight": 1, "sprite": 6102 }, { "weight": 1, "sprite": 6103 } ], + "fg": [ { "weight": 4, "sprite": 6167 }, { "weight": 1, "sprite": 6168 }, { "weight": 1, "sprite": 6169 } ], "rotates": false }, { "id": "mon_plasticgolem", "fg": [ - { "weight": 10, "sprite": 6110 }, - { "weight": 10, "sprite": 6105 }, - { "weight": 6, "sprite": 6106 }, - { "weight": 5, "sprite": 6109 }, - { "weight": 3, "sprite": 6107 }, - { "weight": 1, "sprite": 6108 } + { "weight": 10, "sprite": 6176 }, + { "weight": 10, "sprite": 6171 }, + { "weight": 6, "sprite": 6172 }, + { "weight": 5, "sprite": 6175 }, + { "weight": 3, "sprite": 6173 }, + { "weight": 1, "sprite": 6174 } ], "rotates": false }, - { "id": "mon_allosaurus", "fg": 6131, "rotates": false }, - { "id": "mon_amigara_horror", "fg": 6134, "bg": [ ], "rotates": false }, - { "id": "mon_ankylosaurus", "fg": 6130, "rotates": false }, - { "id": "mon_blob_brain", "fg": 6119, "rotates": false }, - { "id": "mon_boomer_huge", "fg": 6135, "bg": [ ], "rotates": false }, - { "id": "mon_chickenbot", "fg": 6114, "rotates": false }, - { "id": "mon_dark_wyrm", "fg": 6136, "rotates": false }, - { "id": "mon_devourer", "fg": 6137, "rotates": false }, - { "id": "mon_fungaloid_queen", "fg": 6122, "rotates": false }, - { "id": "mon_fungaloid_seeder", "fg": 6120, "rotates": false }, - { "id": "mon_fungaloid_tower", "fg": 6121, "rotates": false }, - { "id": "mon_gas_zombie", "fg": 6139, "bg": [ ], "rotates": false }, - { "id": "mon_jabberwock", "fg": 6115, "rotates": false }, - { "id": "mon_mi_go_guard", "fg": 6144, "rotates": false }, - { "id": "mon_mi_go_myrmidon", "fg": 6145, "rotates": false }, - { "id": "mon_mi_go_slaver", "fg": 6146, "rotates": false }, - { "id": "mon_mi_go_surgeon", "fg": 6147, "rotates": false }, - { "id": "mon_nakedmolerat_giant", "fg": 6125, "rotates": false }, - { "id": "mon_parasaurolophus", "fg": 6132, "rotates": false }, - { "id": "mon_shoggoth", "fg": [ 6116, 6148 ], "rotates": false }, - { "id": "mon_skeleton_hulk", "fg": 6113, "rotates": false }, - { "id": "mon_spinosaurus", "fg": 6126, "rotates": false }, - { "id": "mon_stegosaurus", "fg": 6129, "rotates": false }, - { "id": "mon_triceratops", "fg": 6128, "rotates": false }, - { "id": "mon_triffid_heart", "fg": 6123, "rotates": false }, - { "id": "mon_triffid_queen", "fg": 6149, "bg": [ ], "rotates": false }, - { "id": "mon_turret_searchlight", "fg": 6118, "rotates": false }, - { "id": "mon_tyrannosaurus", "fg": 6127, "rotates": false }, - { "id": "mon_utahraptor", "fg": 6133, "rotates": false }, - { "id": "mon_yugg", "fg": 6124, "rotates": false }, - { "id": "mon_zombie_corrosive", "fg": 6150, "bg": [ ], "rotates": false }, - { "id": "mon_zombie_hulk", "fg": 6117, "rotates": false }, - { "id": "mon_zombie_kevlar_2", "fg": 6154, "bg": [ ], "rotates": false }, - { "id": "mon_zombie_nullfield", "fg": 6156, "bg": [ ], "rotates": false }, - { "id": [ "mon_hulk_pupa", "mon_hulk_pupa_decoy" ], "fg": 6166, "rotates": false }, - { "id": [ "corpse_mon_hulk_pupa", "corpse_mon_hulk_pupa_decoy" ], "fg": 6165, "rotates": false }, - { "id": "overlay_wielded_pike", "fg": 6169, "rotates": false }, - { "id": "overlay_wielded_qiang", "fg": 6169, "rotates": false }, - { "id": "f_boulder_large", "fg": 6214, "rotates": false }, - { "id": "t_leanto", "fg": 6210, "bg": 6233, "rotates": false }, - { "id": "t_leanto_season_winter", "fg": 6210, "bg": 6236, "rotates": false }, - { "id": "t_marloss_tree", "fg": 6198, "bg": 6199, "rotates": false }, - { "id": "t_tree", "fg": 6177, "bg": 6233, "rotates": false }, - { "id": "t_tree_almond_season_autumn", "fg": 6231, "bg": 6234, "rotates": false }, - { "id": "t_tree_almond_season_spring", "fg": 6230, "bg": 6233, "rotates": false }, + { "id": "mon_allosaurus", "fg": 6197, "rotates": false }, + { "id": "mon_amigara_horror", "fg": 6200, "bg": [ ], "rotates": false }, + { "id": "mon_ankylosaurus", "fg": 6196, "rotates": false }, + { "id": "mon_blob_brain", "fg": 6185, "rotates": false }, + { "id": "mon_boomer_huge", "fg": 6201, "bg": [ ], "rotates": false }, + { "id": "mon_chickenbot", "fg": 6180, "rotates": false }, + { "id": "mon_dark_wyrm", "fg": 6202, "rotates": false }, + { "id": "mon_devourer", "fg": 6203, "rotates": false }, + { "id": "mon_fungaloid_queen", "fg": 6188, "rotates": false }, + { "id": "mon_fungaloid_seeder", "fg": 6186, "rotates": false }, + { "id": "mon_fungaloid_tower", "fg": 6187, "rotates": false }, + { "id": "mon_gas_zombie", "fg": 6205, "bg": [ ], "rotates": false }, + { "id": "mon_jabberwock", "fg": 6181, "rotates": false }, + { "id": "mon_mi_go_guard", "fg": 6210, "rotates": false }, + { "id": "mon_mi_go_myrmidon", "fg": 6211, "rotates": false }, + { "id": "mon_mi_go_slaver", "fg": 6212, "rotates": false }, + { "id": "mon_mi_go_surgeon", "fg": 6213, "rotates": false }, + { "id": "mon_nakedmolerat_giant", "fg": 6191, "rotates": false }, + { "id": "mon_parasaurolophus", "fg": 6198, "rotates": false }, + { "id": "mon_shoggoth", "fg": [ 6182, 6214 ], "rotates": false }, + { "id": "mon_skeleton_hulk", "fg": 6179, "rotates": false }, + { "id": "mon_spinosaurus", "fg": 6192, "rotates": false }, + { "id": "mon_stegosaurus", "fg": 6195, "rotates": false }, + { "id": "mon_triceratops", "fg": 6194, "rotates": false }, + { "id": "mon_triffid_heart", "fg": 6189, "rotates": false }, + { "id": "mon_triffid_queen", "fg": 6215, "bg": [ ], "rotates": false }, + { "id": "mon_turret_searchlight", "fg": 6184, "rotates": false }, + { "id": "mon_tyrannosaurus", "fg": 6193, "rotates": false }, + { "id": "mon_utahraptor", "fg": 6199, "rotates": false }, + { "id": "mon_yugg", "fg": 6190, "rotates": false }, + { "id": "mon_zombie_corrosive", "fg": 6216, "bg": [ ], "rotates": false }, + { "id": "mon_zombie_hulk", "fg": 6183, "rotates": false }, + { "id": "mon_zombie_kevlar_2", "fg": 6220, "bg": [ ], "rotates": false }, + { "id": "mon_zombie_nullfield", "fg": 6222, "bg": [ ], "rotates": false }, + { "id": [ "mon_hulk_pupa", "mon_hulk_pupa_decoy" ], "fg": 6233, "rotates": false }, + { "id": [ "corpse_mon_hulk_pupa", "corpse_mon_hulk_pupa_decoy" ], "fg": 6232, "rotates": false }, + { "id": "overlay_wielded_pike", "fg": 6242, "rotates": false }, + { "id": "overlay_wielded_qiang", "fg": 6242, "rotates": false }, + { "id": "f_boulder_large", "fg": 6287, "rotates": false }, + { "id": "t_leanto", "fg": 6283, "bg": 6306, "rotates": false }, + { "id": "t_leanto_season_winter", "fg": 6283, "bg": 6309, "rotates": false }, + { "id": "t_marloss_tree", "fg": 6271, "bg": 6272, "rotates": false }, + { "id": "t_tree", "fg": 6250, "bg": 6306, "rotates": false }, + { "id": "t_tree_almond_season_autumn", "fg": 6304, "bg": 6307, "rotates": false }, + { "id": "t_tree_almond_season_spring", "fg": 6303, "bg": 6306, "rotates": false }, { "id": [ "t_tree_apple_harvested_season_winter", @@ -10690,8 +10744,8 @@ "t_tree_pear_season_winter", "t_tree_plum_season_winter" ], - "fg": 6189, - "bg": 6236 + "fg": 6262, + "bg": 6309 }, { "id": [ @@ -10708,19 +10762,19 @@ "t_tree_pear", "t_tree_plum" ], - "fg": 6182, - "bg": 6233 - }, - { "id": "t_tree_apple_season_autumn", "fg": 6185, "bg": 6234 }, - { "id": "t_tree_apricot_season_summer", "fg": 6187, "bg": 6235 }, - { "id": "t_tree_beech_season_autumn", "fg": 6225, "bg": 6234, "rotates": false }, - { "id": "t_tree_birch", "fg": 6200, "bg": 6233, "rotates": false }, - { "id": "t_tree_birch_harvested", "fg": 6201, "bg": 6233, "rotates": false }, - { "id": "t_tree_birch_harvested_season_winter", "fg": 6201, "bg": 6236, "rotates": false }, - { "id": "t_tree_birch_season_winter", "fg": 6202, "bg": 6236, "rotates": false }, - { "id": "t_tree_blackjack", "fg": 6190, "bg": 6233, "rotates": false }, - { "id": "t_tree_blackjack_season_winter", "fg": 6191, "bg": 6236, "rotates": false }, - { "id": "t_tree_cherry_season_summer", "fg": 6183, "bg": 6235 }, + "fg": 6255, + "bg": 6306 + }, + { "id": "t_tree_apple_season_autumn", "fg": 6258, "bg": 6307 }, + { "id": "t_tree_apricot_season_summer", "fg": 6260, "bg": 6308 }, + { "id": "t_tree_beech_season_autumn", "fg": 6298, "bg": 6307, "rotates": false }, + { "id": "t_tree_birch", "fg": 6273, "bg": 6306, "rotates": false }, + { "id": "t_tree_birch_harvested", "fg": 6274, "bg": 6306, "rotates": false }, + { "id": "t_tree_birch_harvested_season_winter", "fg": 6274, "bg": 6309, "rotates": false }, + { "id": "t_tree_birch_season_winter", "fg": 6275, "bg": 6309, "rotates": false }, + { "id": "t_tree_blackjack", "fg": 6263, "bg": 6306, "rotates": false }, + { "id": "t_tree_blackjack_season_winter", "fg": 6264, "bg": 6309, "rotates": false }, + { "id": "t_tree_cherry_season_summer", "fg": 6256, "bg": 6308 }, { "id": [ "t_tree_chestnut_harvested_season_autumn", @@ -10728,11 +10782,11 @@ "t_tree_pecan_harvested_season_autumn", "t_tree_beech_harvested_season_autumn" ], - "fg": 6220, - "bg": 6234, + "fg": 6293, + "bg": 6307, "rotates": false }, - { "id": "t_tree_chestnut_season_autumn", "fg": 6222, "bg": 6234, "rotates": false }, + { "id": "t_tree_chestnut_season_autumn", "fg": 6295, "bg": 6307, "rotates": false }, { "id": [ "t_tree_chestnut_season_winter", @@ -10744,29 +10798,29 @@ "t_tree_pecan_harvested_season_winter", "t_tree_beech_harvested_season_winter" ], - "fg": 6221, - "bg": 6236, + "fg": 6294, + "bg": 6309, "rotates": false }, { "id": [ "t_tree_chestnut", "t_tree_walnut", "t_tree_pecan", "t_tree_beech" ], - "fg": 6219, - "bg": 6233, + "fg": 6292, + "bg": 6306, "rotates": false }, - { "id": [ "t_tree_dead_season_winter", "t_tree_hickory_dead_season_winter" ], "fg": 6192, "bg": 6236 }, - { "id": [ "t_tree_dead", "t_tree_hickory_dead" ], "fg": 6192, "bg": 6233 }, - { "id": "t_tree_deadpine", "fg": 6193, "bg": 6233, "rotates": false }, - { "id": "t_tree_deadpine_season_winter", "fg": 6193, "bg": 6236, "rotates": false }, - { "id": "t_tree_elderberry_season_summer", "fg": 6176, "bg": 6235, "rotates": false }, - { "id": "t_tree_fungal", "fg": 6197, "bg": 6199, "rotates": false }, + { "id": [ "t_tree_dead_season_winter", "t_tree_hickory_dead_season_winter" ], "fg": 6265, "bg": 6309 }, + { "id": [ "t_tree_dead", "t_tree_hickory_dead" ], "fg": 6265, "bg": 6306 }, + { "id": "t_tree_deadpine", "fg": 6266, "bg": 6306, "rotates": false }, + { "id": "t_tree_deadpine_season_winter", "fg": 6266, "bg": 6309, "rotates": false }, + { "id": "t_tree_elderberry_season_summer", "fg": 6249, "bg": 6308, "rotates": false }, + { "id": "t_tree_fungal", "fg": 6270, "bg": 6272, "rotates": false }, { "id": [ "t_tree_hazelnut_harvested", "t_tree_almond_harvested", "t_tree_pistachio_harvested" ], - "fg": 6227, - "bg": 6233, + "fg": 6300, + "bg": 6306, "rotates": false }, - { "id": "t_tree_hazelnut_season_autumn", "fg": 6229, "bg": 6234, "rotates": false }, + { "id": "t_tree_hazelnut_season_autumn", "fg": 6302, "bg": 6307, "rotates": false }, { "id": [ "t_tree_hazelnut_season_winter", @@ -10776,26 +10830,26 @@ "t_tree_almond_harvested_season_winter", "t_tree_pistachio_harvested_season_winter" ], - "fg": 6228, - "bg": 6236, + "fg": 6301, + "bg": 6309, "rotates": false }, - { "id": [ "t_tree_hazelnut", "t_tree_almond", "t_tree_pistachio" ], "fg": 6226, "bg": 6233, "rotates": false }, - { "id": "t_tree_hickory_season_autumn", "fg": 6195, "bg": 6234, "rotates": false }, + { "id": [ "t_tree_hazelnut", "t_tree_almond", "t_tree_pistachio" ], "fg": 6299, "bg": 6306, "rotates": false }, + { "id": "t_tree_hickory_season_autumn", "fg": 6268, "bg": 6307, "rotates": false }, { "id": [ "t_tree_hickory_season_winter", "t_tree_hickory_harvested_season_winter" ], - "fg": 6196, - "bg": 6236, + "fg": 6269, + "bg": 6309, "rotates": false }, - { "id": [ "t_tree_hickory", "t_tree_hickory_harvested" ], "fg": 6194, "bg": 6233, "rotates": false }, - { "id": "t_tree_maple", "fg": 6203, "bg": 6233, "rotates": false }, - { "id": "t_tree_maple_season_autumn", "fg": 6205, "bg": 6234, "rotates": false }, - { "id": "t_tree_maple_season_winter", "fg": 6205, "bg": 6236, "rotates": false }, - { "id": "t_tree_maple_tapped", "fg": 6204, "bg": 6233 }, - { "id": "t_tree_maple_tapped_season_autumn", "fg": 6206, "bg": 6234 }, - { "id": "t_tree_maple_tapped_season_winter", "fg": 6206, "bg": 6236 }, - { "id": "t_tree_mulberry_season_summer", "fg": 6175, "bg": 6235, "rotates": false }, + { "id": [ "t_tree_hickory", "t_tree_hickory_harvested" ], "fg": 6267, "bg": 6306, "rotates": false }, + { "id": "t_tree_maple", "fg": 6276, "bg": 6306, "rotates": false }, + { "id": "t_tree_maple_season_autumn", "fg": 6278, "bg": 6307, "rotates": false }, + { "id": "t_tree_maple_season_winter", "fg": 6278, "bg": 6309, "rotates": false }, + { "id": "t_tree_maple_tapped", "fg": 6277, "bg": 6306 }, + { "id": "t_tree_maple_tapped_season_autumn", "fg": 6279, "bg": 6307 }, + { "id": "t_tree_maple_tapped_season_winter", "fg": 6279, "bg": 6309 }, + { "id": "t_tree_mulberry_season_summer", "fg": 6248, "bg": 6308, "rotates": false }, { "id": [ "t_tree_mulberry_season_winter", @@ -10803,98 +10857,107 @@ "t_tree_mulberry_harvested_season_winter", "t_tree_elderberry_harvested_season_winter" ], - "fg": 6174, - "bg": 6236, + "fg": 6247, + "bg": 6309, "rotates": false }, { "id": [ "t_tree_mulberry", "t_tree_elderberry", "t_tree_mulberry_harvested", "t_tree_elderberry_harvested" ], - "fg": 6173, - "bg": 6233, + "fg": 6246, + "bg": 6306, "rotates": false }, - { "id": "t_tree_peach_season_summer", "fg": 6184, "bg": 6235 }, - { "id": "t_tree_pear_season_autumn", "fg": 6186, "bg": 6235 }, - { "id": "t_tree_pecan_season_autumn", "fg": 6224, "bg": 6234, "rotates": false }, - { "id": "t_tree_pine", "fg": 6178, "bg": 6233, "rotates": false }, - { "id": "t_tree_pine_season_winter", "fg": 6181, "bg": 6236, "rotates": false }, - { "id": "t_tree_pistachio_season_autumn", "fg": 6232, "bg": 6234, "rotates": false }, - { "id": "t_tree_plum_season_summer", "fg": 6188, "bg": 6235 }, + { "id": "t_tree_peach_season_summer", "fg": 6257, "bg": 6308 }, + { "id": "t_tree_pear_season_autumn", "fg": 6259, "bg": 6308 }, + { "id": "t_tree_pecan_season_autumn", "fg": 6297, "bg": 6307, "rotates": false }, + { "id": "t_tree_pine", "fg": 6251, "bg": 6306, "rotates": false }, + { "id": "t_tree_pine_season_winter", "fg": 6254, "bg": 6309, "rotates": false }, + { "id": "t_tree_pistachio_season_autumn", "fg": 6305, "bg": 6307, "rotates": false }, + { "id": "t_tree_plum_season_summer", "fg": 6261, "bg": 6308 }, { "id": "t_tree_season_autumn", - "fg": [ { "weight": 1, "sprite": 6211 }, { "weight": 1, "sprite": 6213 } ], - "bg": 6234, + "fg": [ { "weight": 1, "sprite": 6284 }, { "weight": 1, "sprite": 6286 } ], + "bg": 6307, "rotates": false }, { "id": "t_tree_season_spring", - "fg": [ { "weight": 1, "sprite": 6177 }, { "weight": 1, "sprite": 6213 } ], - "bg": 6233, + "fg": [ { "weight": 1, "sprite": 6250 }, { "weight": 1, "sprite": 6286 } ], + "bg": 6306, "rotates": false }, - { "id": "t_tree_season_winter", "fg": 6180, "bg": 6236, "rotates": false }, - { "id": "t_tree_walnut_season_autumn", "fg": 6223, "bg": 6234, "rotates": false }, - { "id": "t_tree_willow", "fg": 6207, "bg": 6233, "rotates": false }, - { "id": "t_tree_willow_harvested", "fg": 6208, "bg": 6233, "rotates": false }, - { "id": "t_tree_willow_harvested_season_winter", "fg": 6208, "bg": 6236, "rotates": false }, - { "id": "t_tree_willow_season_winter", "fg": 6209, "bg": 6236, "rotates": false }, - { "id": "t_tree_young", "fg": 6179, "bg": 6233, "rotates": false }, - { "id": "t_tree_young_season_autumn", "fg": 6212, "bg": 6234, "rotates": false }, - { "id": "t_tree_young_season_winter", "fg": 6212, "bg": 6236, "rotates": false }, + { "id": "t_tree_season_winter", "fg": 6253, "bg": 6309, "rotates": false }, + { "id": "t_tree_walnut_season_autumn", "fg": 6296, "bg": 6307, "rotates": false }, + { "id": "t_tree_willow", "fg": 6280, "bg": 6306, "rotates": false }, + { "id": "t_tree_willow_harvested", "fg": 6281, "bg": 6306, "rotates": false }, + { "id": "t_tree_willow_harvested_season_winter", "fg": 6281, "bg": 6309, "rotates": false }, + { "id": "t_tree_willow_season_winter", "fg": 6282, "bg": 6309, "rotates": false }, + { "id": "t_tree_young", "fg": 6252, "bg": 6306, "rotates": false }, + { "id": "t_tree_young_season_autumn", "fg": 6285, "bg": 6307, "rotates": false }, + { "id": "t_tree_young_season_winter", "fg": 6285, "bg": 6309, "rotates": false }, { "id": "vp_solar_array2", - "fg": 6217, + "fg": 6290, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 6218 } ] + "additional_tiles": [ { "id": "broken", "fg": 6291 } ] }, { "id": "vp_solar_array2r", - "fg": 6217, + "fg": 6290, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 6218 } ] + "additional_tiles": [ { "id": "broken", "fg": 6291 } ] }, { "id": "vp_solar_array", - "fg": 6215, + "fg": 6288, "rotates": false, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 6216 } ] - }, - { "id": "corpse_mon_afs_headless_horror", "fg": 6090 }, - { "id": "broken_claygolem", "fg": 6091 }, - { "id": "broken_irongolem", "fg": 6100 }, - { "id": "broken_plasticgolem", "fg": 6104 }, - { "id": "broken_stonegolem", "fg": 6111 }, - { "id": "mon_stonegolem", "fg": 6112 }, - { "id": "mon_frog_giant", "fg": 6138 }, - { "id": "mon_horse", "fg": 6140 }, - { "id": "mon_mech_combat", "fg": 6141 }, - { "id": "mon_mech_lifter", "fg": 6142 }, - { "id": "mon_mech_recon", "fg": 6143 }, - { "id": "mon_zombie_crushed_giant", "fg": 6151 }, - { "id": "mon_zombie_gasbag_impaler", "fg": 6152 }, - { "id": "mon_zombie_horse", "fg": 6153 }, - { "id": "mon_zombie_living_wall", "fg": 6155 }, - { "id": "rid_mon_horse", "fg": 6157 }, - { "id": "rid_mon_mech_combat", "fg": 6158 }, - { "id": "rid_mon_mech_lifter", "fg": 6159 }, - { "id": "rid_mon_mech_recon", "fg": 6160 }, - { "id": "mon_afs_headless_horror", "fg": 6161 }, - { "id": "mon_flying_polyp", "fg": 6162 }, - { "id": "corpse_mon_frog_mother", "fg": 6163 }, - { "id": "mon_frog_mother", "fg": 6164 }, - { "id": "corpse_mon_zpig_brute", "fg": 6167 }, - { "id": "mon_zpig_brute", "fg": 6168 }, - { "id": "overlay_worn_cape_fp", "fg": 6170 }, - { "id": "overlay_worn_foodperson_mask", "fg": 6171 }, - { "id": "overlay_worn_foodperson_mask_on", "fg": 6172 } + "additional_tiles": [ { "id": "broken", "fg": 6289 } ] + }, + { "id": "corpse_mon_afs_headless_horror", "fg": 6154 }, + { "id": "f_glow_boulder", "fg": 6155 }, + { "id": "f_huge_mana_crystal", "fg": 6156 }, + { "id": "broken_claygolem", "fg": 6157 }, + { "id": "broken_irongolem", "fg": 6166 }, + { "id": "broken_plasticgolem", "fg": 6170 }, + { "id": "broken_stonegolem", "fg": 6177 }, + { "id": "mon_stonegolem", "fg": 6178 }, + { "id": "mon_frog_giant", "fg": 6204 }, + { "id": "mon_horse", "fg": 6206 }, + { "id": "mon_mech_combat", "fg": 6207 }, + { "id": "mon_mech_lifter", "fg": 6208 }, + { "id": "mon_mech_recon", "fg": 6209 }, + { "id": "mon_zombie_crushed_giant", "fg": 6217 }, + { "id": "mon_zombie_gasbag_impaler", "fg": 6218 }, + { "id": "mon_zombie_horse", "fg": 6219 }, + { "id": "mon_zombie_living_wall", "fg": 6221 }, + { "id": "rid_mon_horse", "fg": 6223 }, + { "id": "rid_mon_mech_combat", "fg": 6224 }, + { "id": "rid_mon_mech_lifter", "fg": 6225 }, + { "id": "rid_mon_mech_recon", "fg": 6226 }, + { "id": "mon_afs_headless_horror", "fg": 6227 }, + { "id": "mon_boomer_glutton", "fg": 6228 }, + { "id": "mon_flying_polyp", "fg": 6229 }, + { "id": "corpse_mon_frog_mother", "fg": 6230 }, + { "id": "mon_frog_mother", "fg": 6231 }, + { "id": "corpse_mon_lady_bug_giant", "fg": 6234 }, + { "id": "mon_lady_bug_giant", "fg": 6235 }, + { "id": "corpse_mon_locust_mega", "fg": 6236 }, + { "id": "mon_locust_mega", "fg": 6237 }, + { "id": "corpse_mon_mosquito_mega", "fg": 6238 }, + { "id": "mon_mosquito_mega", "fg": 6239 }, + { "id": "corpse_mon_zpig_brute", "fg": 6240 }, + { "id": "mon_zpig_brute", "fg": 6241 }, + { "id": "overlay_worn_cape_fp", "fg": 6243 }, + { "id": "overlay_worn_foodperson_mask", "fg": 6244 }, + { "id": "overlay_worn_foodperson_mask_on", "fg": 6245 } ] }, { "file": "huge.png", - "//": "range 6240 to 6255", + "//": "range 6320 to 6335", "sprite_width": 128, "sprite_height": 128, "sprite_offset_x": -64, @@ -10902,40 +10965,40 @@ "tiles": [ { "id": "mon_tankbot", - "fg": [ { "weight": 10, "sprite": 6242 }, { "weight": 1, "sprite": 6243 }, { "weight": 3, "sprite": 6244 } ], + "fg": [ { "weight": 10, "sprite": 6322 }, { "weight": 1, "sprite": 6323 }, { "weight": 3, "sprite": 6324 } ], "rotates": false }, - { "id": "bot_tankbot", "fg": 6240 }, - { "id": "broken_tankbot", "fg": 6241 } + { "id": "bot_tankbot", "fg": 6320 }, + { "id": "broken_tankbot", "fg": 6321 } ] }, { "file": "fillersmall.png", - "//": "range 6256 to 6319", + "//": "range 6336 to 6399", "sprite_width": 20, "sprite_height": 20, "sprite_offset_x": 0, "sprite_offset_y": 0, "tiles": [ - { "id": "jack", "fg": 6256 }, - { "id": "jack_small", "fg": 6258 }, - { "id": "jack_makeshift", "fg": 6257 }, - { "id": "acorns", "fg": 6272 }, - { "id": "chips", "fg": 6276 }, - { "id": "apple", "fg": 6273 }, - { "id": "banana", "fg": 6274 }, - { "id": "broccoli", "fg": 6275 }, - { "id": "corn", "fg": 6277 }, - { "id": "cucumber", "fg": 6278 }, - { "id": "grapes", "fg": 6279 }, - { "id": "lemon", "fg": 6281 }, - { "id": "onion", "fg": 6282 }, - { "id": "orange", "fg": 6283 }, - { "id": "pear", "fg": 6284 }, - { "id": "potato", "fg": 6285 }, - { "id": "pumpkin", "fg": 6286 }, - { "id": "tomato", "fg": 6289 }, - { "id": "juniper", "fg": 6280 }, + { "id": "jack", "fg": 6336 }, + { "id": "jack_small", "fg": 6338 }, + { "id": "jack_makeshift", "fg": 6337 }, + { "id": "acorns", "fg": 6352 }, + { "id": "chips", "fg": 6356 }, + { "id": "apple", "fg": 6353 }, + { "id": "banana", "fg": 6354 }, + { "id": "broccoli", "fg": 6355 }, + { "id": "corn", "fg": 6357 }, + { "id": "cucumber", "fg": 6358 }, + { "id": "grapes", "fg": 6359 }, + { "id": "lemon", "fg": 6361 }, + { "id": "onion", "fg": 6362 }, + { "id": "orange", "fg": 6363 }, + { "id": "pear", "fg": 6364 }, + { "id": "potato", "fg": 6365 }, + { "id": "pumpkin", "fg": 6366 }, + { "id": "tomato", "fg": 6369 }, + { "id": "juniper", "fg": 6360 }, { "id": [ "seed_hops", @@ -11003,176 +11066,176 @@ "seed_mulberries", "seed_elderberries" ], - "fg": 6287 - }, - { "id": "straw_pile", "fg": 6288 }, - { "id": "wheat", "fg": 6290 }, - { "id": "withered", "fg": 6291 }, - { "id": "bee_balm", "fg": 6292 }, - { "id": "carrot_wild", "fg": 6293 }, - { "id": "dogbane", "fg": 6294 }, - { "id": "mugwort", "fg": 6295 }, - { "id": "thyme", "fg": 6296 }, - { "id": "veggy_wild", "fg": 6297 }, - { "id": "wild_herbs", "fg": 6298 }, - { "id": "feces_manure", "fg": 6302 }, - { "id": "feces_bird", "fg": 6299 }, - { "id": "feces_cow", "fg": 6300 }, - { "id": "feces_dog", "fg": 6301 }, - { "id": "feces_roach", "fg": 6303 }, - { "id": "brick", "fg": 6304 }, - { "id": "scrap", "fg": 6307 }, - { "id": "e_scrap", "fg": 6306 }, - { "id": "steel_chunk", "fg": 6308 }, - { "id": "steel_lump", "fg": 6309 }, - { "id": "wire", "fg": 6310 }, - { "id": "cable", "fg": 6305 }, - { "id": "mbag", "fg": 6259 }, - { "id": "receiver", "fg": 6260 }, - { "id": "scarf", "fg": 6261 }, - { "id": "slingpack", "fg": 6262 }, - { "id": "baseball", "fg": 6263 }, - { "id": "beach_volleyball", "fg": 6264 }, - { "id": "bowling_ball", "fg": 6265 }, - { "id": "football", "fg": 6266 }, - { "id": "indoor_volleyball", "fg": 6267 }, - { "id": "misc_repairkit", "fg": 6268 }, - { "id": "puck", "fg": 6269 }, - { "id": "tourniquet_upper", "fg": 6270 }, - { "id": "wristwatch", "fg": 6271 }, - { "id": "wire_barbed", "fg": 6311 } + "fg": 6367 + }, + { "id": "straw_pile", "fg": 6368 }, + { "id": "wheat", "fg": 6370 }, + { "id": "withered", "fg": 6371 }, + { "id": "bee_balm", "fg": 6372 }, + { "id": "carrot_wild", "fg": 6373 }, + { "id": "dogbane", "fg": 6374 }, + { "id": "mugwort", "fg": 6375 }, + { "id": "thyme", "fg": 6376 }, + { "id": "veggy_wild", "fg": 6377 }, + { "id": "wild_herbs", "fg": 6378 }, + { "id": "feces_manure", "fg": 6382 }, + { "id": "feces_bird", "fg": 6379 }, + { "id": "feces_cow", "fg": 6380 }, + { "id": "feces_dog", "fg": 6381 }, + { "id": "feces_roach", "fg": 6383 }, + { "id": "brick", "fg": 6384 }, + { "id": "scrap", "fg": 6387 }, + { "id": "e_scrap", "fg": 6386 }, + { "id": "steel_chunk", "fg": 6388 }, + { "id": "steel_lump", "fg": 6389 }, + { "id": "wire", "fg": 6390 }, + { "id": "cable", "fg": 6385 }, + { "id": "mbag", "fg": 6339 }, + { "id": "receiver", "fg": 6340 }, + { "id": "scarf", "fg": 6341 }, + { "id": "slingpack", "fg": 6342 }, + { "id": "baseball", "fg": 6343 }, + { "id": "beach_volleyball", "fg": 6344 }, + { "id": "bowling_ball", "fg": 6345 }, + { "id": "football", "fg": 6346 }, + { "id": "indoor_volleyball", "fg": 6347 }, + { "id": "misc_repairkit", "fg": 6348 }, + { "id": "puck", "fg": 6349 }, + { "id": "tourniquet_upper", "fg": 6350 }, + { "id": "wristwatch", "fg": 6351 }, + { "id": "wire_barbed", "fg": 6391 } ] }, { "file": "fillerlarge.png", - "//": "range 6320 to 6335", + "//": "range 6400 to 6415", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -32, "tiles": [ - { "id": "mon_smoker_brute", "fg": 6322, "bg": 6321 }, + { "id": "mon_smoker_brute", "fg": 6402, "bg": 6401 }, { "id": "mon_exodii_quad", "fg": [ - { "weight": 15, "sprite": 6323 }, - { "weight": 10, "sprite": 6324 }, - { "weight": 15, "sprite": 6325 }, - { "weight": 15, "sprite": 6326 } + { "weight": 15, "sprite": 6403 }, + { "weight": 10, "sprite": 6404 }, + { "weight": 15, "sprite": 6405 }, + { "weight": 15, "sprite": 6406 } ], - "bg": 6320 + "bg": 6400 }, { "id": "mon_exodii_turret", "fg": [ - { "weight": 15, "sprite": 6327 }, - { "weight": 5, "sprite": 6328 }, - { "weight": 15, "sprite": 6329 }, - { "weight": 15, "sprite": 6330 } + { "weight": 15, "sprite": 6407 }, + { "weight": 5, "sprite": 6408 }, + { "weight": 15, "sprite": 6409 }, + { "weight": 15, "sprite": 6410 } ], - "bg": 6321 + "bg": 6401 }, - { "id": "mon_dog_zombie_hulk", "fg": 6331, "bg": 6321 }, - { "id": "mon_zombie_brute_winged", "fg": 6333, "bg": 6320 } + { "id": "mon_dog_zombie_hulk", "fg": 6411, "bg": 6401 }, + { "id": "mon_zombie_brute_winged", "fg": 6413, "bg": 6400 } ] }, { "file": "fillernormal.png", - "//": "range 6336 to 6383", + "//": "range 6416 to 6463", "tiles": [ - { "id": [ "ammolink223", "ammolink308", "ammolink50" ], "fg": 6336 }, + { "id": [ "ammolink223", "ammolink308", "ammolink50" ], "fg": 6416 }, { "id": "mon_cat_bengal", - "fg": [ { "weight": 1, "sprite": 6342 }, { "weight": 1, "sprite": 6341 } ], - "bg": 3162 + "fg": [ { "weight": 1, "sprite": 6422 }, { "weight": 1, "sprite": 6421 } ], + "bg": 3179 }, { "id": "mon_cat_calico", - "fg": [ { "weight": 1, "sprite": 6345 }, { "weight": 1, "sprite": 6344 } ], - "bg": 3162 + "fg": [ { "weight": 1, "sprite": 6425 }, { "weight": 1, "sprite": 6424 } ], + "bg": 3179 }, { "id": "mon_cat_chonker", - "fg": [ { "weight": 1, "sprite": 6348 }, { "weight": 1, "sprite": 6347 } ], - "bg": 3162 + "fg": [ { "weight": 1, "sprite": 6428 }, { "weight": 1, "sprite": 6427 } ], + "bg": 3179 }, { "id": "mon_cat_devon_rex", - "fg": [ { "weight": 1, "sprite": 6351 }, { "weight": 1, "sprite": 6350 } ], - "bg": 3162 + "fg": [ { "weight": 1, "sprite": 6431 }, { "weight": 1, "sprite": 6430 } ], + "bg": 3179 }, { "id": "mon_cat_longhair", - "fg": [ { "weight": 1, "sprite": 6354 }, { "weight": 1, "sprite": 6353 } ], - "bg": 3162 + "fg": [ { "weight": 1, "sprite": 6434 }, { "weight": 1, "sprite": 6433 } ], + "bg": 3179 }, { "id": "mon_cat_maine_coon", - "fg": [ { "weight": 1, "sprite": 6357 }, { "weight": 1, "sprite": 6356 } ], - "bg": 3162 + "fg": [ { "weight": 1, "sprite": 6437 }, { "weight": 1, "sprite": 6436 } ], + "bg": 3179 }, { "id": "mon_cat_persian", - "fg": [ { "weight": 1, "sprite": 6360 }, { "weight": 1, "sprite": 6359 } ], - "bg": 3162 + "fg": [ { "weight": 1, "sprite": 6440 }, { "weight": 1, "sprite": 6439 } ], + "bg": 3179 }, { "id": "mon_cat_siamese", - "fg": [ { "weight": 1, "sprite": 6364 }, { "weight": 1, "sprite": 6363 } ], - "bg": 3162 + "fg": [ { "weight": 1, "sprite": 6444 }, { "weight": 1, "sprite": 6443 } ], + "bg": 3179 }, { "id": "mon_cat_sphynx", - "fg": [ { "weight": 1, "sprite": 6367 }, { "weight": 1, "sprite": 6366 } ], - "bg": 3162 + "fg": [ { "weight": 1, "sprite": 6447 }, { "weight": 1, "sprite": 6446 } ], + "bg": 3179 }, { "id": "mon_cat_tabby", - "fg": [ { "weight": 1, "sprite": 6370 }, { "weight": 1, "sprite": 6369 } ], - "bg": 3162 - }, - { "id": "mon_cat_kitten", "fg": 6361, "bg": 3162 }, - { "id": "mon_cat_bengal_kitten", "fg": 6340, "bg": 3162 }, - { "id": "mon_cat_calico_kitten", "fg": 6343, "bg": 3162 }, - { "id": "mon_cat_chonker_kitten", "fg": 6346, "bg": 3162 }, - { "id": "mon_cat_devon_rex_kitten", "fg": 6349, "bg": 3162 }, - { "id": "mon_cat_longhair_kitten", "fg": 6352, "bg": 3162 }, - { "id": "mon_cat_maine_coon_kitten", "fg": 6355, "bg": 3162 }, - { "id": "mon_cat_persian_kitten", "fg": 6358, "bg": 3162 }, - { "id": "mon_cat_siamese_kitten", "fg": 6362, "bg": 3162 }, - { "id": "mon_cat_sphynx_kitten", "fg": 6365, "bg": 3162 }, - { "id": "mon_cat_tabby_kitten", "fg": 6368, "bg": 3162 }, - { "id": "mon_dog_beagle", "fg": 6371, "bg": 3162 }, - { "id": "mon_dog_boxer", "fg": 6372, "bg": 3161 }, - { "id": "mon_dog_gshepherd", "fg": 6374, "bg": 3161 }, - { "id": "mon_dog_dachshund", "fg": 6373, "bg": 3161 }, - { "id": "mon_crow_mutant_small", "fg": 6375, "bg": 3161 }, - { "id": "clay_pot", "fg": 6337 }, - { "id": "mic_stand_tall", "fg": 6338 }, - { "id": "spike", "fg": 6339 } + "fg": [ { "weight": 1, "sprite": 6450 }, { "weight": 1, "sprite": 6449 } ], + "bg": 3179 + }, + { "id": "mon_cat_kitten", "fg": 6441, "bg": 3179 }, + { "id": "mon_cat_bengal_kitten", "fg": 6420, "bg": 3179 }, + { "id": "mon_cat_calico_kitten", "fg": 6423, "bg": 3179 }, + { "id": "mon_cat_chonker_kitten", "fg": 6426, "bg": 3179 }, + { "id": "mon_cat_devon_rex_kitten", "fg": 6429, "bg": 3179 }, + { "id": "mon_cat_longhair_kitten", "fg": 6432, "bg": 3179 }, + { "id": "mon_cat_maine_coon_kitten", "fg": 6435, "bg": 3179 }, + { "id": "mon_cat_persian_kitten", "fg": 6438, "bg": 3179 }, + { "id": "mon_cat_siamese_kitten", "fg": 6442, "bg": 3179 }, + { "id": "mon_cat_sphynx_kitten", "fg": 6445, "bg": 3179 }, + { "id": "mon_cat_tabby_kitten", "fg": 6448, "bg": 3179 }, + { "id": "mon_dog_beagle", "fg": 6451, "bg": 3179 }, + { "id": "mon_dog_boxer", "fg": 6452, "bg": 3178 }, + { "id": "mon_dog_gshepherd", "fg": 6454, "bg": 3178 }, + { "id": "mon_dog_dachshund", "fg": 6453, "bg": 3178 }, + { "id": "mon_crow_mutant_small", "fg": 6455, "bg": 3178 }, + { "id": "clay_pot", "fg": 6417 }, + { "id": "mic_stand_tall", "fg": 6418 }, + { "id": "spike", "fg": 6419 } ] }, { "file": "fillertall.png", - "//": "range 6384 to 6399", + "//": "range 6464 to 6479", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, "sprite_offset_y": -32, "tiles": [ - { "id": "mon_zombie_phase_shrike", "fg": 6385, "bg": 6384 }, + { "id": "mon_zombie_phase_shrike", "fg": 6465, "bg": 6464 }, { "id": "mon_exodii_worker", "fg": [ - { "weight": 15, "sprite": 6386 }, - { "weight": 15, "sprite": 6387 }, - { "weight": 10, "sprite": 6388 }, - { "weight": 10, "sprite": 6389 } + { "weight": 15, "sprite": 6466 }, + { "weight": 15, "sprite": 6467 }, + { "weight": 10, "sprite": 6468 }, + { "weight": 10, "sprite": 6469 } ], - "bg": 6384 + "bg": 6464 }, - { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 6390, "bg": 6384 }, - { "id": "mon_zombie_winged", "fg": 6391, "bg": 6384 } + { "id": [ "mon_zombie_pupa_shady", "mon_zombie_pupa_decoy_shady" ], "fg": 6470, "bg": 6464 }, + { "id": "mon_zombie_winged", "fg": 6471, "bg": 6464 } ] }, { diff --git a/gfx/MshockXotto+/tiles.png b/gfx/MshockXotto+/tiles.png index 36cd5f7ab8cc5..f8b9876ef2abf 100644 Binary files a/gfx/MshockXotto+/tiles.png and b/gfx/MshockXotto+/tiles.png differ diff --git a/gfx/MshockXotto+/wide.png b/gfx/MshockXotto+/wide.png index 40873426a2cd4..311f6fc57c8a1 100644 Binary files a/gfx/MshockXotto+/wide.png and b/gfx/MshockXotto+/wide.png differ diff --git a/gfx/RetroDaysTileset/tile_config.json b/gfx/RetroDaysTileset/tile_config.json index 47768ecbd1453..95cca1e60ce28 100644 --- a/gfx/RetroDaysTileset/tile_config.json +++ b/gfx/RetroDaysTileset/tile_config.json @@ -5070,23 +5070,22 @@ { "id": "airliner_2j", "fg": 2502, "bg": 3106, "rotates": true }, { "id": "airliner_3c", "fg": 2497, "bg": 3106, "rotates": true }, { "id": "airliner_3g", "fg": 2500, "bg": 3106, "rotates": true }, - { - "id": "ants", - "fg": 2459, - "bg": 2443, - "multitile": true, - "additional_tiles": [ - { "id": "center", "fg": 2458, "bg": 2443 }, - { "id": "corner", "fg": [ 2450, 2453, 2452, 2451 ], "bg": 2443 }, - { "id": "t_connection", "fg": [ 2454 ], "bg": 2443 }, - { "id": "edge", "fg": [ 2448, 2449 ], "bg": 2443 }, - { "id": "end_piece", "fg": [ 2444, 2445, 2446, 2447 ], "bg": 2443 }, - { "id": "unconnected", "fg": [ 2766, 2766 ], "bg": 2614 } - ] - }, + { "id": "ants_end", "fg": [ 2444, 2445, 2446, 2447 ], "bg": 2443, "rotates": true }, + { "id": "ants_es", "fg": 2450, "bg": 2443, "rotates": false }, + { "id": "ants_esw", "fg": 2454, "bg": 2443, "rotates": false }, + { "id": "ants_ew", "fg": 2449, "bg": 2443, "rotates": false }, { "id": "ants_food", "fg": 2460, "rotates": false }, + { "id": "ants_isolated", "fg": 2459, "bg": 2443, "rotates": false }, { "id": "ants_larvae", "fg": 2461, "rotates": false }, + { "id": "ants_ne", "fg": 2453, "bg": 2443, "rotates": false }, + { "id": "ants_nes", "fg": 2457, "bg": 2443, "rotates": false }, + { "id": "ants_nesw", "fg": 2458, "bg": 2443, "rotates": false }, + { "id": "ants_new", "fg": 2456, "bg": 2443, "rotates": false }, + { "id": "ants_ns", "fg": 2448, "bg": 2443, "rotates": false }, + { "id": "ants_nsw", "fg": 2455, "bg": 2443, "rotates": false }, { "id": "ants_queen", "fg": 2462, "rotates": false }, + { "id": "ants_sw", "fg": 2451, "bg": 2443, "rotates": false }, + { "id": "ants_wn", "fg": 2452, "bg": 2443, "rotates": false }, { "id": [ "basement", @@ -5390,20 +5389,20 @@ { "id": "river_nw", "fg": 2350, "rotates": false }, { "id": "river_se", "fg": 2348, "rotates": false }, { "id": "river_sw", "fg": 2349, "rotates": false }, - { - "id": "road", - "fg": 2766, - "multitile": true, - "additional_tiles": [ - { "id": "center", "fg": 2327 }, - { "id": "corner", "fg": [ 2330 ] }, - { "id": "t_connection", "fg": [ 2337 ] }, - { "id": "edge", "fg": [ 2329, 2333 ] }, - { "id": "end_piece", "fg": [ 2323, 2326, 2325, 2324 ] }, - { "id": "unconnected", "fg": 2327, "bg": 2614 } - ] - }, + { "id": "road_end", "fg": [ 2323, 2324, 2325, 2326 ], "rotates": true }, + { "id": "road_es", "fg": 2330, "rotates": false }, + { "id": "road_esw", "fg": 2337, "rotates": false }, + { "id": "road_ew", "fg": 2333, "rotates": false }, + { "id": "road_isolated", "fg": 2327, "rotates": false }, + { "id": "road_ne", "fg": 2328, "rotates": false }, + { "id": "road_nes", "fg": 2331, "rotates": false }, + { "id": "road_nesw", "fg": 2338, "rotates": false }, { "id": "road_nesw_manhole", "fg": 2339, "rotates": false }, + { "id": "road_new", "fg": 2334, "rotates": false }, + { "id": "road_ns", "fg": 2329, "rotates": false }, + { "id": "road_nsw", "fg": 2336, "rotates": false }, + { "id": "road_sw", "fg": 2335, "rotates": false }, + { "id": "road_wn", "fg": 2332, "rotates": false }, { "id": [ "s_clothes", "s_clothes_1", "s_clothes_2", "s_clothes_3", "s_clothes_4", "s_clothes_5", "s_clothes_6" ], "fg": [ 2402, 2402, 2402, 2402 ], @@ -5440,20 +5439,19 @@ "bg": [ 2391, 2392, 2393, 2394 ], "rotates": true }, - { - "id": "sewer", - "fg": 2442, - "bg": 2426, - "multitile": true, - "additional_tiles": [ - { "id": "center", "fg": 2441, "bg": 2426 }, - { "id": "corner", "fg": [ 2433, 2436, 2435, 2434 ], "bg": 2426 }, - { "id": "t_connection", "fg": [ 2437 ], "bg": 2426 }, - { "id": "edge", "fg": [ 2431, 2432 ], "bg": 2426 }, - { "id": "end_piece", "fg": [ 2427, 2428, 2429 ], "bg": 2426 }, - { "id": "unconnected", "fg": [ 2766, 2766 ], "bg": 2614 } - ] - }, + { "id": "sewer_end", "fg": [ 2427, 2428, 2429, 2430 ], "bg": 2426, "rotates": true }, + { "id": "sewer_es", "fg": 2433, "bg": 2426, "rotates": false }, + { "id": "sewer_esw", "fg": 2437, "bg": 2426, "rotates": false }, + { "id": "sewer_ew", "fg": 2432, "bg": 2426, "rotates": false }, + { "id": "sewer_isolated", "fg": 2442, "bg": 2426, "rotates": false }, + { "id": "sewer_ne", "fg": 2436, "bg": 2426, "rotates": false }, + { "id": "sewer_nes", "fg": 2440, "bg": 2426, "rotates": false }, + { "id": "sewer_nesw", "fg": 2441, "bg": 2426, "rotates": false }, + { "id": "sewer_new", "fg": 2439, "bg": 2426, "rotates": false }, + { "id": "sewer_ns", "fg": 2431, "bg": 2426, "rotates": false }, + { "id": "sewer_nsw", "fg": 2438, "bg": 2426, "rotates": false }, + { "id": "sewer_sw", "fg": 2434, "bg": 2426, "rotates": false }, + { "id": "sewer_wn", "fg": 2435, "bg": 2426, "rotates": false }, { "id": [ "shelter", "shelter_1", "shelter_2", "shelter_vandal", "shelter_1_vandal", "shelter_2_vandal" ], "fg": [ 2536, 2536, 2536, 2536 ], @@ -5466,34 +5464,19 @@ "bg": [ 2391, 2392, 2393, 2394 ], "rotates": true }, - { - "id": "subway", - "fg": 2442, - "bg": 2508, - "multitile": true, - "additional_tiles": [ - { "id": "center", "fg": 2441, "bg": 2523 }, - { "id": "corner", "fg": [ 2433, 2436, 2435, 2434 ], "bg": [ 2515, 2518, 2517, 2516 ] }, - { "id": "t_connection", "fg": [ 2437, 2440, 2439, 2438 ], "bg": [ 2519, 2522, 2521, 2520 ] }, - { "id": "edge", "fg": [ 2431, 2432 ], "bg": [ 2513, 2514 ] }, - { "id": "end_piece", "fg": [ 2759, 2761, 2760, 2758 ] }, - { "id": "unconnected", "fg": [ 2427, 2428, 2429, 2430 ], "bg": [ 2509, 2510, 2511, 2512 ] } - ] - }, - { - "id": "lab_subway", - "fg": 2442, - "bg": 2508, - "multitile": true, - "additional_tiles": [ - { "id": "center", "fg": 2441, "bg": 2523 }, - { "id": "corner", "fg": [ 2433, 2436, 2435, 2434 ], "bg": [ 2515, 2518, 2517, 2516 ] }, - { "id": "t_connection", "fg": [ 2437, 2440, 2439, 2438 ], "bg": [ 2519, 2522, 2521, 2520 ] }, - { "id": "edge", "fg": [ 2431, 2432 ], "bg": [ 2513, 2514 ] }, - { "id": "end_piece", "fg": [ 2759, 2761, 2760, 2758 ] }, - { "id": "unconnected", "fg": [ 2427, 2428, 2429, 2430 ], "bg": [ 2509, 2510, 2511, 2512 ] } - ] - }, + { "id": "subway_end", "fg": [ 2427, 2428, 2429, 2430 ], "bg": [ 2509, 2510, 2511, 2512 ], "rotates": true }, + { "id": "subway_es", "fg": 2433, "bg": 2515, "rotates": false }, + { "id": "subway_esw", "fg": 2437, "bg": 2519, "rotates": false }, + { "id": "subway_ew", "fg": 2432, "bg": 2514, "rotates": false }, + { "id": "subway_isolated", "fg": 2442, "bg": 2508, "rotates": false }, + { "id": "subway_ne", "fg": 2436, "bg": 2518, "rotates": false }, + { "id": "subway_nes", "fg": 2440, "bg": 2522, "rotates": false }, + { "id": "subway_nesw", "fg": 2441, "bg": 2523, "rotates": false }, + { "id": "subway_new", "fg": 2439, "bg": 2521, "rotates": false }, + { "id": "subway_ns", "fg": 2431, "bg": 2513, "rotates": false }, + { "id": "subway_nsw", "fg": 2438, "bg": 2520, "rotates": false }, + { "id": "subway_sw", "fg": 2434, "bg": 2516, "rotates": false }, + { "id": "subway_wn", "fg": 2435, "bg": 2517, "rotates": false }, { "id": "temple_stairs", "fg": 2535, "rotates": false }, { "id": [ "trailhead_shack_z0", "trailhead_outhouse_z0", "trailhead" ], "fg": 2357, "rotates": true }, { diff --git a/gfx/RetroDaysTileset/tiles.png b/gfx/RetroDaysTileset/tiles.png index 2646d67a97f7d..bee7357f8077e 100644 Binary files a/gfx/RetroDaysTileset/tiles.png and b/gfx/RetroDaysTileset/tiles.png differ diff --git a/gfx/SurveyorsMap/overmap.png b/gfx/SurveyorsMap/overmap.png index 6d47f5c9871bb..6315879a0a01e 100644 Binary files a/gfx/SurveyorsMap/overmap.png and b/gfx/SurveyorsMap/overmap.png differ diff --git a/gfx/SurveyorsMap/tile_config.json b/gfx/SurveyorsMap/tile_config.json index af33d55960db5..4f7e5b562741e 100644 --- a/gfx/SurveyorsMap/tile_config.json +++ b/gfx/SurveyorsMap/tile_config.json @@ -5,867 +5,956 @@ "tiles-new": [ { "file": "overmap.png", - "//": "range 1 to 3071", + "//": "range 1 to 3407", "tiles": [ - { "id": [ "abandonedwarehouse" ], "fg": [ 2, 1, 3, 4 ], "bg": 2970, "rotates": true }, - { "id": [ "abandonedwarehouse_roof" ], "fg": [ 6, 5, 7, 8 ], "bg": 2973, "rotates": true }, - { "id": [ "abandonedwarehouse_1" ], "fg": [ 10, 9, 11, 12 ], "bg": 2970, "rotates": true }, - { "id": [ "abandonedwarehouse_1_roof" ], "fg": [ 14, 13, 15, 16 ], "bg": 2973, "rotates": true }, - { "id": [ "abandonedwarehouse_2" ], "fg": [ 18, 17, 19, 20 ], "bg": 2970, "rotates": true }, - { "id": [ "abandonedwarehouse_2_roof" ], "fg": [ 22, 21, 23, 24 ], "bg": 2973, "rotates": true }, - { "id": [ "abandonedwarehouse_3" ], "fg": [ 26, 25, 27, 28 ], "bg": 2970, "rotates": true }, - { "id": [ "abandonedwarehouse_3_roof" ], "fg": [ 30, 29, 31, 32 ], "bg": 2973, "rotates": true }, - { "id": [ "abandonedwarehouse_4" ], "fg": [ 34, 33, 35, 36 ], "bg": 2970, "rotates": true }, - { "id": [ "abandonedwarehouse_4_roof" ], "fg": [ 38, 37, 39, 40 ], "bg": 2973, "rotates": true }, - { "id": [ "abstorefront" ], "fg": [ 42, 41, 43, 44 ], "bg": 2970, "rotates": true }, - { "id": [ "abstorefront_roof" ], "fg": [ 46, 45, 47, 48 ], "bg": 2973, "rotates": true }, - { "id": [ "abstorefront_1" ], "fg": [ 50, 49, 51, 52 ], "bg": 2970, "rotates": true }, - { "id": [ "abstorefront_roof_1" ], "fg": [ 54, 53, 55, 56 ], "bg": 2973, "rotates": true }, - { "id": [ "abstorefront_2" ], "fg": [ 58, 57, 59, 60 ], "bg": 2970, "rotates": true }, - { "id": [ "abstorefront_roof_2" ], "fg": [ 62, 61, 63, 64 ], "bg": 2973, "rotates": true }, - { "id": [ "dirt_road" ], "fg": [ 70, 69 ], "bg": 2970, "rotates": true }, - { "id": [ "dirt_road_3way" ], "fg": [ 72, 71, 73, 74 ], "bg": 2970, "rotates": true }, - { "id": [ "dirt_road_turn" ], "fg": [ 65, 67, 68, 66 ], "bg": 2970, "rotates": true }, - { "id": [ "dirt_road_turn1" ], "fg": [ 66, 65, 67, 68 ], "bg": 2970, "rotates": true }, - { "id": [ "dirt_road_forest" ], "fg": [ 70, 69 ], "bg": 2971, "rotates": true }, - { "id": [ "dirt_road_3way_forest" ], "fg": [ 72, 71, 73, 74 ], "bg": 2971, "rotates": true }, - { "id": [ "dirt_road_turn_forest" ], "fg": [ 65, 67, 68, 66 ], "bg": 2971, "rotates": true }, - { "id": [ "dirt_road_turn1_forest" ], "fg": [ 66, 65, 67, 68 ], "bg": 2971, "rotates": true }, - { "id": [ "rural_road" ], "fg": [ 80, 79 ], "bg": 2970, "rotates": true }, - { "id": [ "rural_road_3way" ], "fg": [ 82, 81, 83, 84 ], "bg": 2970, "rotates": true }, - { "id": [ "rural_road_turn" ], "fg": [ 75, 77, 78, 76 ], "bg": 2970, "rotates": true }, - { "id": [ "rural_road_turn1" ], "fg": [ 76, 75, 77, 78 ], "bg": 2970, "rotates": true }, - { "id": [ "rural_road_forest" ], "fg": [ 80, 79 ], "bg": 2971, "rotates": true }, - { "id": [ "rural_road_3way_forest" ], "fg": [ 82, 81, 83, 84 ], "bg": 2971, "rotates": true }, - { "id": [ "rural_road_turn_forest" ], "fg": [ 75, 77, 78, 76 ], "bg": 2971, "rotates": true }, - { "id": [ "rural_road_turn1_forest" ], "fg": [ 76, 75, 77, 78 ], "bg": 2971, "rotates": true }, - { "id": [ "subway_ew", "lab_subway_ew" ], "fg": 89, "bg": 2975, "rotates": true }, - { "id": [ "subway_ns", "lab_subway_ns" ], "fg": 90, "bg": 2975, "rotates": true }, - { "id": [ "subway_nsw", "lab_subway_nsw" ], "fg": 98, "bg": 2975, "rotates": true }, - { "id": [ "subway_nes", "lab_subway_nes" ], "fg": 95, "bg": 2975, "rotates": true }, - { "id": [ "subway_esw", "lab_subway_esw" ], "fg": 96, "bg": 2975, "rotates": true }, - { "id": [ "subway_new", "lab_subway_new" ], "fg": 97, "bg": 2975, "rotates": true }, - { "id": [ "subway_sw", "lab_subway_sw" ], "fg": 88, "bg": 2975, "rotates": true }, - { "id": [ "subway_se", "lab_subway_se" ], "fg": 87, "bg": 2975, "rotates": true }, - { "id": [ "subway_nw", "lab_subway_nw" ], "fg": 86, "bg": 2975, "rotates": true }, - { "id": [ "subway_ne", "lab_subway_ne" ], "fg": 85, "bg": 2975, "rotates": true }, - { "id": [ "subway_end", "lab_subway_end" ], "fg": [ 92, 91, 93, 94 ], "bg": 2975, "rotates": true }, - { "id": [ "animalpound" ], "fg": [ 100, 99, 101, 102 ], "bg": 2970, "rotates": true }, - { "id": [ "animalpound_roof" ], "fg": [ 104, 103, 105, 106 ], "bg": 2973, "rotates": true }, - { "id": [ "animalshelter" ], "fg": [ 108, 107, 109, 110 ], "bg": 2970, "rotates": true }, - { "id": [ "animalshelter_roof" ], "fg": [ 112, 111, 113, 114 ], "bg": 2973, "rotates": true }, - { "id": [ "art_gallery" ], "fg": [ 116, 115, 117, 118 ], "bg": 2970, "rotates": true }, - { "id": [ "art_gallery_roof" ], "fg": [ 120, 119, 121, 122 ], "bg": 2973, "rotates": true }, + { "id": [ "abandonedwarehouse" ], "fg": [ 2, 1, 3, 4 ], "bg": 3282, "rotates": true }, + { "id": [ "abandonedwarehouse_roof" ], "fg": [ 6, 5, 7, 8 ], "bg": 3285, "rotates": true }, + { "id": [ "abandonedwarehouse_1" ], "fg": [ 10, 9, 11, 12 ], "bg": 3282, "rotates": true }, + { "id": [ "abandonedwarehouse_1_roof" ], "fg": [ 14, 13, 15, 16 ], "bg": 3285, "rotates": true }, + { "id": [ "abandonedwarehouse_2" ], "fg": [ 18, 17, 19, 20 ], "bg": 3282, "rotates": true }, + { "id": [ "abandonedwarehouse_2_roof" ], "fg": [ 22, 21, 23, 24 ], "bg": 3285, "rotates": true }, + { "id": [ "abandonedwarehouse_3" ], "fg": [ 26, 25, 27, 28 ], "bg": 3282, "rotates": true }, + { "id": [ "abandonedwarehouse_3_roof" ], "fg": [ 30, 29, 31, 32 ], "bg": 3285, "rotates": true }, + { "id": [ "abandonedwarehouse_4" ], "fg": [ 34, 33, 35, 36 ], "bg": 3282, "rotates": true }, + { "id": [ "abandonedwarehouse_4_roof" ], "fg": [ 38, 37, 39, 40 ], "bg": 3285, "rotates": true }, + { "id": [ "abstorefront" ], "fg": [ 42, 41, 43, 44 ], "bg": 3282, "rotates": true }, + { "id": [ "abstorefront_roof" ], "fg": [ 46, 45, 47, 48 ], "bg": 3285, "rotates": true }, + { "id": [ "abstorefront_1" ], "fg": [ 50, 49, 51, 52 ], "bg": 3282, "rotates": true }, + { "id": [ "abstorefront_roof_1" ], "fg": [ 54, 53, 55, 56 ], "bg": 3285, "rotates": true }, + { "id": [ "abstorefront_2" ], "fg": [ 58, 57, 59, 60 ], "bg": 3282, "rotates": true }, + { "id": [ "abstorefront_roof_2" ], "fg": [ 62, 61, 63, 64 ], "bg": 3285, "rotates": true }, + { "id": [ "dirt_road" ], "fg": [ 70, 69 ], "bg": 3282, "rotates": true }, + { "id": [ "dirt_road_3way" ], "fg": [ 72, 71, 73, 74 ], "bg": 3282, "rotates": true }, + { "id": [ "dirt_road_turn" ], "fg": [ 65, 67, 68, 66 ], "bg": 3282, "rotates": true }, + { "id": [ "dirt_road_turn1" ], "fg": [ 66, 65, 67, 68 ], "bg": 3282, "rotates": true }, + { "id": [ "dirt_road_forest" ], "fg": [ 70, 69 ], "bg": 3283, "rotates": true }, + { "id": [ "dirt_road_3way_forest" ], "fg": [ 72, 71, 73, 74 ], "bg": 3283, "rotates": true }, + { "id": [ "dirt_road_turn_forest" ], "fg": [ 65, 67, 68, 66 ], "bg": 3283, "rotates": true }, + { "id": [ "dirt_road_turn1_forest" ], "fg": [ 66, 65, 67, 68 ], "bg": 3283, "rotates": true }, + { "id": [ "rural_road" ], "fg": [ 80, 79 ], "bg": 3282, "rotates": true }, + { "id": [ "rural_road_3way" ], "fg": [ 82, 81, 83, 84 ], "bg": 3282, "rotates": true }, + { "id": [ "rural_road_turn" ], "fg": [ 75, 77, 78, 76 ], "bg": 3282, "rotates": true }, + { "id": [ "rural_road_turn1" ], "fg": [ 76, 75, 77, 78 ], "bg": 3282, "rotates": true }, + { "id": [ "rural_road_forest" ], "fg": [ 80, 79 ], "bg": 3283, "rotates": true }, + { "id": [ "rural_road_3way_forest" ], "fg": [ 82, 81, 83, 84 ], "bg": 3283, "rotates": true }, + { "id": [ "rural_road_turn_forest" ], "fg": [ 75, 77, 78, 76 ], "bg": 3283, "rotates": true }, + { "id": [ "rural_road_turn1_forest" ], "fg": [ 76, 75, 77, 78 ], "bg": 3283, "rotates": true }, + { "id": [ "subway_ew", "lab_subway_ew" ], "fg": 89, "bg": 3287, "rotates": true }, + { "id": [ "subway_ns", "lab_subway_ns" ], "fg": 90, "bg": 3287, "rotates": true }, + { "id": [ "subway_nsw", "lab_subway_nsw" ], "fg": 98, "bg": 3287, "rotates": true }, + { "id": [ "subway_nes", "lab_subway_nes" ], "fg": 95, "bg": 3287, "rotates": true }, + { "id": [ "subway_esw", "lab_subway_esw" ], "fg": 96, "bg": 3287, "rotates": true }, + { "id": [ "subway_new", "lab_subway_new" ], "fg": 97, "bg": 3287, "rotates": true }, + { "id": [ "subway_sw", "lab_subway_sw" ], "fg": 88, "bg": 3287, "rotates": true }, + { "id": [ "subway_se", "lab_subway_se" ], "fg": 87, "bg": 3287, "rotates": true }, + { "id": [ "subway_nw", "lab_subway_nw" ], "fg": 86, "bg": 3287, "rotates": true }, + { "id": [ "subway_ne", "lab_subway_ne" ], "fg": 85, "bg": 3287, "rotates": true }, + { "id": [ "subway_end", "lab_subway_end" ], "fg": [ 92, 91, 93, 94 ], "bg": 3287, "rotates": true }, + { "id": [ "animalpound" ], "fg": [ 100, 99, 101, 102 ], "bg": 3282, "rotates": true }, + { "id": [ "animalpound_roof" ], "fg": [ 104, 103, 105, 106 ], "bg": 3285, "rotates": true }, + { "id": [ "animalshelter" ], "fg": [ 108, 107, 109, 110 ], "bg": 3282, "rotates": true }, + { "id": [ "animalshelter_roof" ], "fg": [ 112, 111, 113, 114 ], "bg": 3285, "rotates": true }, + { "id": [ "art_gallery" ], "fg": [ 116, 115, 117, 118 ], "bg": 3282, "rotates": true }, + { "id": [ "art_gallery_roof" ], "fg": [ 120, 119, 121, 122 ], "bg": 3285, "rotates": true }, { "id": [ "bakery" ], "fg": [ 124, 123, 125, 126 ], "rotates": true }, - { "id": [ "bakery_roof" ], "fg": [ 128, 127, 129, 130 ], "bg": 2973, "rotates": true }, - { "id": [ "bakery_upper_roof" ], "fg": [ 132, 131, 133, 134 ], "bg": 2973, "rotates": true }, - { "id": [ "bank" ], "fg": [ 136, 135, 137, 138 ], "bg": 2970, "rotates": true }, - { "id": [ "bank_roof" ], "fg": [ 140, 139, 141, 142 ], "bg": 2973, "rotates": true }, - { "id": [ "bank_1" ], "fg": [ 144, 143, 145, 146 ], "bg": 2970, "rotates": true }, - { "id": [ "bank_roof_1" ], "fg": [ 148, 147, 149, 150 ], "bg": 2973, "rotates": true }, + { "id": [ "bakery_roof" ], "fg": [ 128, 127, 129, 130 ], "bg": 3285, "rotates": true }, + { "id": [ "bakery_upper_roof" ], "fg": [ 132, 131, 133, 134 ], "bg": 3285, "rotates": true }, + { "id": [ "bank" ], "fg": [ 136, 135, 137, 138 ], "bg": 3282, "rotates": true }, + { "id": [ "bank_roof" ], "fg": [ 140, 139, 141, 142 ], "bg": 3285, "rotates": true }, + { "id": [ "bank_1" ], "fg": [ 144, 143, 145, 146 ], "bg": 3282, "rotates": true }, + { "id": [ "bank_roof_1" ], "fg": [ 148, 147, 149, 150 ], "bg": 3285, "rotates": true }, { "id": [ "bar" ], "fg": [ 152, 151, 153, 154 ], "rotates": true }, - { "id": [ "bar_roof" ], "fg": [ 156, 155, 157, 158 ], "bg": 2973, "rotates": true }, + { "id": [ "bar_roof" ], "fg": [ 156, 155, 157, 158 ], "bg": 3285, "rotates": true }, { "id": [ "bar_1" ], "fg": [ 160, 159, 161, 162 ], "rotates": true }, - { "id": [ "bar_roof_1" ], "fg": [ 164, 163, 165, 166 ], "bg": 2973, "rotates": true }, - { "id": [ "s_baseballfield_a1" ], "fg": [ 168, 167, 169, 170 ], "bg": 2970, "rotates": true }, - { "id": [ "s_baseballfield_a2" ], "fg": [ 172, 171, 173, 174 ], "bg": 2970, "rotates": true }, - { "id": [ "s_baseballfield_b1" ], "fg": [ 176, 175, 177, 178 ], "bg": 2970, "rotates": true }, - { "id": [ "s_baseballfield_b2" ], "fg": [ 180, 179, 181, 182 ], "bg": 2970, "rotates": true }, + { "id": [ "bar_roof_1" ], "fg": [ 164, 163, 165, 166 ], "bg": 3285, "rotates": true }, + { "id": [ "s_baseballfield_a1" ], "fg": [ 168, 167, 169, 170 ], "bg": 3282, "rotates": true }, + { "id": [ "s_baseballfield_a2" ], "fg": [ 172, 171, 173, 174 ], "bg": 3282, "rotates": true }, + { "id": [ "s_baseballfield_b1" ], "fg": [ 176, 175, 177, 178 ], "bg": 3282, "rotates": true }, + { "id": [ "s_baseballfield_b2" ], "fg": [ 180, 179, 181, 182 ], "bg": 3282, "rotates": true }, { "id": [ "s_bookstore" ], "fg": [ 184, 183, 185, 186 ], "rotates": true }, - { "id": [ "s_bookstore_roof" ], "fg": [ 188, 187, 189, 190 ], "bg": 2973, "rotates": true }, - { "id": [ "s_bookstore_upper_roof" ], "fg": [ 192, 191, 193, 194 ], "bg": 2973, "rotates": true }, + { "id": [ "s_bookstore_roof" ], "fg": [ 188, 187, 189, 190 ], "bg": 3285, "rotates": true }, + { "id": [ "s_bookstore_upper_roof" ], "fg": [ 192, 191, 193, 194 ], "bg": 3285, "rotates": true }, { "id": [ "s_bookstore_1" ], "fg": [ 196, 195, 197, 198 ], "rotates": true }, - { "id": [ "s_bookstore_roof_1" ], "fg": [ 200, 199, 201, 202 ], "bg": 2973, "rotates": true }, - { "id": [ "s_bookstore_upper_roof_1" ], "fg": [ 204, 203, 205, 206 ], "bg": 2973, "rotates": true }, + { "id": [ "s_bookstore_roof_1" ], "fg": [ 200, 199, 201, 202 ], "bg": 3285, "rotates": true }, + { "id": [ "s_bookstore_upper_roof_1" ], "fg": [ 204, 203, 205, 206 ], "bg": 3285, "rotates": true }, { "id": [ "s_bookstore_2" ], "fg": [ 208, 207, 209, 210 ], "rotates": true }, - { "id": [ "s_bookstore_roof_2" ], "fg": [ 212, 211, 213, 214 ], "bg": 2973, "rotates": true }, + { "id": [ "s_bookstore_roof_2" ], "fg": [ 212, 211, 213, 214 ], "bg": 3285, "rotates": true }, { "id": [ "s_library" ], "fg": [ 216, 215, 217, 218 ], "rotates": true }, - { "id": [ "s_library_roof" ], "fg": [ 220, 219, 221, 222 ], "bg": 2973, "rotates": true }, + { "id": [ "s_library_roof" ], "fg": [ 220, 219, 221, 222 ], "bg": 3285, "rotates": true }, { "id": [ "s_library_1" ], "fg": [ 224, 223, 225, 226 ], "rotates": true }, - { "id": [ "s_library_roof_1" ], "fg": [ 228, 227, 229, 230 ], "bg": 2973, "rotates": true }, + { "id": [ "s_library_roof_1" ], "fg": [ 228, 227, 229, 230 ], "bg": 3285, "rotates": true }, { "id": [ "s_library_2" ], "fg": [ 232, 231, 233, 234 ], "rotates": true }, - { "id": [ "s_library_roof_2" ], "fg": [ 236, 235, 237, 238 ], "bg": 2973, "rotates": true }, - { "id": [ "bowling_alley" ], "fg": [ 240, 239, 241, 242 ], "bg": 2970, "rotates": true }, - { "id": [ "bowling_alley_roof" ], "fg": [ 244, 243, 245, 246 ], "bg": 2973, "rotates": true }, - { "id": [ "s_camping" ], "fg": [ 248, 247, 249, 250 ], "rotates": true }, - { "id": [ "s_camping_roof" ], "fg": [ 252, 251, 253, 254 ], "bg": 2973, "rotates": true }, - { "id": [ "candy_shop" ], "fg": [ 256, 255, 257, 258 ], "rotates": true }, - { "id": [ "candy_shop_roof" ], "fg": [ 260, 259, 261, 262 ], "bg": 2973, "rotates": true }, - { "id": [ "candy_shop_1" ], "fg": [ 264, 263, 265, 266 ], "rotates": true }, - { "id": [ "candy_shop_roof_1" ], "fg": [ 268, 267, 269, 270 ], "bg": 2973, "rotates": true }, - { "id": [ "cemetery_small" ], "fg": [ 272, 271, 273, 274 ], "bg": 2970, "rotates": true }, - { "id": [ "church" ], "fg": [ 276, 275, 277, 278 ], "bg": 2970, "rotates": true }, - { "id": [ "church_roof" ], "fg": [ 280, 279, 281, 282 ], "bg": 2973, "rotates": true }, - { "id": [ "church_steeple" ], "fg": [ 284, 283, 285, 286 ], "bg": 2973, "rotates": true }, - { "id": [ "church_steeple_end" ], "fg": [ 288, 287, 289, 290 ], "bg": 2973, "rotates": true }, - { "id": [ "church_steeple_roof" ], "fg": [ 292, 291, 293, 294 ], "bg": 2973, "rotates": true }, - { "id": [ "church_1" ], "fg": [ 296, 295, 297, 298 ], "bg": 2970, "rotates": true }, - { "id": [ "church_2ndfloor_1" ], "fg": [ 300, 299, 301, 302 ], "bg": 2973, "rotates": true }, - { "id": [ "church_3rdfloor_1" ], "fg": [ 304, 303, 305, 306 ], "bg": 2973, "rotates": true }, - { "id": [ "church_roof_1" ], "fg": [ 308, 307, 309, 310 ], "bg": 2973, "rotates": true }, - { "id": [ "crater_core", "crater" ], "fg": [ 312, 311, 313, 314 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_car_dealership" ], "fg": [ 316, 315, 317, 318 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_car_dealership_roof" ], "fg": [ 320, 319, 321, 322 ], "bg": 2973, "rotates": true }, - { "id": [ "cs_car_showroom" ], "fg": [ 328, 327, 329, 330 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_car_showroom_2ndfloor" ], "fg": [ 324, 323, 325, 326 ], "bg": 2973, "rotates": true }, - { "id": [ "cs_car_showroom_roof" ], "fg": [ 332, 331, 333, 334 ], "bg": 2973, "rotates": true }, - { "id": [ "cs_city_dump_small" ], "fg": [ 336, 335, 337, 338 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_gardening_allotment" ], "fg": [ 340, 339, 341, 342 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_gardening_allotment_roof" ], "fg": [ 344, 343, 345, 346 ], "bg": 2973, "rotates": true }, - { "id": [ "cs_internet_cafe" ], "fg": [ 348, 347, 349, 350 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_internet_cafe_roof" ], "fg": [ 352, 351, 353, 354 ], "bg": 2973, "rotates": true }, - { "id": [ "cs_internet_cafe_upper_roof" ], "fg": [ 356, 355, 357, 358 ], "bg": 2973, "rotates": true }, - { "id": [ "cs_market_small" ], "fg": [ 360, 359, 361, 362 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_open_sewer" ], "fg": [ 364, 363, 365, 366 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_private_park" ], "fg": [ 368, 367, 369, 370 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_private_park_roof" ], "fg": [ 372, 371, 373, 374 ], "bg": 2973, "rotates": true }, - { "id": [ "cs_public_art_piece" ], "fg": [ 376, 375, 377, 378 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_public_space" ], "fg": [ 380, 379, 381, 382 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_sex_shop" ], "fg": [ 384, 383, 385, 386 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_sex_shop_roof" ], "fg": [ 388, 387, 389, 390 ], "bg": 2973, "rotates": true }, - { "id": [ "cs_tire_shop" ], "fg": [ 392, 391, 393, 394 ], "bg": 2970, "rotates": true }, - { "id": [ "cs_tire_shop_roof" ], "fg": [ 396, 395, 397, 398 ], "bg": 2973, "rotates": true }, - { "id": [ "dispensary" ], "fg": [ 400, 399, 401, 402 ], "bg": 2970, "rotates": true }, - { "id": [ "dispensary_roof" ], "fg": [ 404, 403, 405, 406 ], "bg": 2973, "rotates": true }, - { "id": [ "dispensary_1" ], "fg": [ 408, 407, 409, 410 ], "bg": 2970, "rotates": true }, - { "id": [ "dispensary_roof_1" ], "fg": [ 412, 411, 413, 414 ], "bg": 2973, "rotates": true }, - { "id": [ "dispensary_2" ], "fg": [ 416, 415, 417, 418 ], "bg": 2970, "rotates": true }, - { "id": [ "dispensary_roof_2" ], "fg": [ 420, 419, 421, 422 ], "bg": 2973, "rotates": true }, - { "id": [ "dojo" ], "fg": [ 424, 423, 425, 426 ], "rotates": true }, - { "id": [ "dojo_roof" ], "fg": [ 428, 427, 429, 430 ], "bg": 2973, "rotates": true }, - { "id": [ "dojo_upper_roof" ], "fg": [ 432, 431, 433, 434 ], "bg": 2973, "rotates": true }, - { "id": [ "dojo_1" ], "fg": [ 436, 435, 437, 438 ], "rotates": true }, - { "id": [ "dojo_roof_1" ], "fg": [ 440, 439, 441, 442 ], "bg": 2973, "rotates": true }, - { "id": [ "dojo_upper_roof_1" ], "fg": [ 444, 443, 445, 446 ], "bg": 2973, "rotates": true }, - { "id": [ "dollarstore" ], "fg": [ 448, 447, 449, 450 ], "bg": 2970, "rotates": true }, - { "id": [ "dollarstore_roof" ], "fg": [ 452, 451, 453, 454 ], "bg": 2973, "rotates": true }, - { "id": [ "dollarstore_1" ], "fg": [ 456, 455, 457, 458 ], "bg": 2970, "rotates": true }, - { "id": [ "dollarstore_roof_1" ], "fg": [ 460, 459, 461, 462 ], "bg": 2973, "rotates": true }, - { "id": [ "dump" ], "fg": [ 464, 463, 465, 466 ], "bg": 2970, "rotates": true }, - { "id": [ "dumpsite" ], "fg": 467, "bg": 2971, "rotates": true }, - { "id": [ "emptycommerciallot" ], "fg": 468, "bg": 2970, "rotates": true }, - { "id": [ "emptyresidentiallot" ], "fg": 469, "bg": 2970, "rotates": true }, - { "id": [ "farm_lot_wire_straight_h" ], "fg": [ 479, 478, 480, 481 ], "bg": 2970, "rotates": true }, - { "id": [ "farm_lot_wire_straight_v" ], "fg": [ 487, 486, 488, 489 ], "bg": 2970, "rotates": true }, - { "id": [ "farm_lot_wire_straight_v_open" ], "fg": [ 491, 490, 492, 493 ], "bg": 2970, "rotates": true }, - { "id": [ "farm_lot_wire_straight_h_open" ], "fg": [ 483, 482, 484, 485 ], "bg": 2970, "rotates": true }, - { "id": [ "farm_lot_wire_turn_h_open" ], "fg": [ 499, 498, 500, 501 ], "bg": 2970, "rotates": true }, - { "id": [ "farm_lot_wire_turn_v_open" ], "fg": [ 511, 510, 512, 513 ], "bg": 2970, "rotates": true }, - { "id": [ "farm_lot_m" ], "fg": [ 471, 470, 472, 473 ], "bg": 2970, "rotates": true }, - { "id": [ "farm_lot_m1" ], "fg": [ 475, 474, 476, 477 ], "bg": 2970, "rotates": true }, - { "id": [ "farm_lot_wire_turn_h" ], "fg": [ 495, 494, 496, 497 ], "bg": 2970, "rotates": true }, - { "id": [ "farm_lot_wire_turn_uni" ], "fg": [ 503, 502, 504, 505 ], "bg": 2970, "rotates": true }, - { "id": [ "farm_lot_wire_turn_v" ], "fg": [ 507, 506, 508, 509 ], "bg": 2970, "rotates": true }, - { "id": [ "fire_station" ], "fg": [ 515, 514, 516, 517 ], "bg": 2970, "rotates": true }, - { "id": [ "fire_station_roof" ], "fg": [ 519, 518, 520, 521 ], "bg": 2973, "rotates": true }, - { "id": [ "fire_station_1" ], "fg": [ 523, 522, 524, 525 ], "bg": 2970, "rotates": true }, - { "id": [ "fire_station_roof_1" ], "fg": [ 527, 526, 528, 529 ], "bg": 2973, "rotates": true }, - { "id": [ "gym_fitness" ], "fg": [ 531, 530, 532, 533 ], "rotates": true }, - { "id": [ "gym_fitness_roof" ], "fg": [ 535, 534, 536, 537 ], "bg": 2973, "rotates": true }, - { "id": [ "gym_fitness_1" ], "fg": [ 539, 538, 540, 541 ], "rotates": true }, - { "id": [ "gym_fitness_2ndFloor_1" ], "fg": [ 543, 542, 544, 545 ], "bg": 2973, "rotates": true }, - { "id": [ "gym_fitness_roof_1" ], "fg": [ 547, 546, 548, 549 ], "bg": 2973, "rotates": true }, - { "id": [ "furniture" ], "fg": [ 551, 550, 552, 553 ], "bg": 2970, "rotates": true }, - { "id": [ "furniture_roof" ], "fg": [ 555, 554, 556, 557 ], "bg": 2973, "rotates": true }, - { "id": [ "furniture_upper_roof" ], "fg": [ 559, 558, 560, 561 ], "bg": 2973, "rotates": true }, - { "id": [ "gambling_hall" ], "fg": [ 563, 562, 564, 565 ], "bg": 2970, "rotates": true }, - { "id": [ "gambling_hall_roof" ], "fg": [ 567, 566, 568, 569 ], "bg": 2973, "rotates": true }, - { "id": [ "gambling_hall_upper_roof" ], "fg": [ 571, 570, 572, 573 ], "bg": 2973, "rotates": true }, - { "id": [ "gambling_hall_1" ], "fg": [ 575, 574, 576, 577 ], "bg": 2970, "rotates": true }, - { "id": [ "gambling_hall_roof_1" ], "fg": [ 579, 578, 580, 581 ], "bg": 2973, "rotates": true }, - { "id": [ "garage_gas_1" ], "fg": [ 583, 582, 584, 585 ], "bg": 2970, "rotates": true }, - { "id": [ "garage_gas_2" ], "fg": [ 587, 586, 588, 589 ], "bg": 2970, "rotates": true }, - { "id": [ "garage_gas_3" ], "fg": [ 591, 590, 592, 593 ], "bg": 2970, "rotates": true }, - { "id": [ "garage_gas_roof_1" ], "fg": [ 595, 594, 596, 597 ], "bg": 2973, "rotates": true }, - { "id": [ "garage_gas_roof_2" ], "fg": [ 599, 598, 600, 601 ], "bg": 2973, "rotates": true }, - { "id": [ "garage_gas_roof_3" ], "fg": [ 603, 602, 604, 605 ], "bg": 2973, "rotates": true }, - { "id": [ "craft_shop" ], "fg": [ 607, 606, 608, 609 ], "bg": 2970, "rotates": true }, - { "id": [ "craft_shop_roof" ], "fg": [ 611, 610, 612, 613 ], "bg": 2973, "rotates": true }, - { "id": [ "craft_shop_upper_roof" ], "fg": [ 615, 614, 616, 617 ], "bg": 2973, "rotates": true }, - { "id": [ "gym" ], "fg": [ 619, 618, 620, 621 ], "rotates": true }, - { "id": [ "gym_roof" ], "fg": [ 623, 622, 624, 625 ], "bg": 2973, "rotates": true }, - { "id": [ "gym_upper_roof" ], "fg": [ 627, 626, 628, 629 ], "bg": 2973, "rotates": true }, - { "id": [ "headshop" ], "fg": [ 631, 630, 632, 633 ], "bg": 2970, "rotates": true }, - { "id": [ "headshop_roof" ], "fg": [ 635, 634, 636, 637 ], "bg": 2973, "rotates": true }, - { "id": [ "headshop_upper_roof" ], "fg": [ 639, 638, 640, 641 ], "bg": 2973, "rotates": true }, - { "id": [ "home_improvement" ], "fg": [ 643, 642, 644, 645 ], "bg": 2970, "rotates": true }, - { "id": [ "home_improvement_roof" ], "fg": [ 647, 646, 648, 649 ], "bg": 2973, "rotates": true }, - { "id": [ "house_01" ], "fg": [ 691, 690, 692, 693 ], "bg": 2970, "rotates": true }, - { "id": [ "house_01_roof" ], "fg": [ 695, 694, 696, 697 ], "bg": 2973, "rotates": true }, - { "id": [ "house_02" ], "fg": [ 699, 698, 700, 701 ], "bg": 2970, "rotates": true }, - { "id": [ "house_02_roof" ], "fg": [ 703, 702, 704, 705 ], "bg": 2973, "rotates": true }, - { "id": [ "house_03" ], "fg": [ 707, 706, 708, 709 ], "bg": 2970, "rotates": true }, - { "id": [ "house_03_roof" ], "fg": [ 711, 710, 712, 713 ], "bg": 2973, "rotates": true }, - { "id": [ "house_04" ], "fg": [ 715, 714, 716, 717 ], "bg": 2970, "rotates": true }, - { "id": [ "house_04_roof" ], "fg": [ 723, 722, 724, 725 ], "bg": 2973, "rotates": true }, - { "id": [ "house_04_basement" ], "fg": [ 719, 718, 720, 721 ], "bg": 2974, "rotates": true }, - { "id": [ "house_05ab" ], "fg": [ 735, 734, 736, 737 ], "bg": 2970, "rotates": true }, - { "id": [ "house_05ab_basement" ], "fg": [ 739, 738, 740, 741 ], "bg": 2974, "rotates": true }, - { "id": [ "house_05" ], "fg": [ 727, 726, 728, 729 ], "bg": 2970, "rotates": true }, - { "id": [ "house_05_basement" ], "fg": [ 731, 730, 732, 733 ], "bg": 2974, "rotates": true }, - { "id": [ "house_06" ], "fg": [ 743, 742, 744, 745 ], "bg": 2970, "rotates": true }, - { "id": [ "house_07" ], "fg": [ 747, 746, 748, 749 ], "bg": 2970, "rotates": true }, - { "id": [ "house_08" ], "fg": [ 751, 750, 752, 753 ], "bg": 2970, "rotates": true }, - { "id": [ "house_08_roof" ], "fg": [ 759, 758, 760, 761 ], "bg": 2973, "rotates": true }, - { "id": [ "house_08_basement" ], "fg": [ 755, 754, 756, 757 ], "bg": 2974, "rotates": true }, - { "id": [ "house_09" ], "fg": [ 763, 762, 764, 765 ], "bg": 2970, "rotates": true }, - { "id": [ "house_09_roof" ], "fg": [ 771, 770, 772, 773 ], "bg": 2973, "rotates": true }, + { "id": [ "s_library_roof_2" ], "fg": [ 236, 235, 237, 238 ], "bg": 3285, "rotates": true }, + { "id": [ "bowling_alley" ], "fg": [ 240, 239, 241, 242 ], "bg": 3282, "rotates": true }, + { "id": [ "bowling_alley_roof" ], "fg": [ 244, 243, 245, 246 ], "bg": 3285, "rotates": true }, + { "id": [ "bus_stat_0" ], "fg": [ 248, 247, 249, 250 ], "bg": 3282, "rotates": true }, + { "id": [ "bus_stat_1" ], "fg": [ 256, 255, 257, 258 ], "bg": 3282, "rotates": true }, + { "id": [ "bus_stat_0_roof" ], "fg": [ 252, 251, 253, 254 ], "bg": 3285, "rotates": true }, + { "id": [ "bus_stat_1_roof" ], "fg": [ 260, 259, 261, 262 ], "bg": 3285, "rotates": true }, + { "id": [ "s_camping" ], "fg": [ 264, 263, 265, 266 ], "rotates": true }, + { "id": [ "s_camping_roof" ], "fg": [ 268, 267, 269, 270 ], "bg": 3285, "rotates": true }, + { "id": [ "candy_shop" ], "fg": [ 272, 271, 273, 274 ], "rotates": true }, + { "id": [ "candy_shop_roof" ], "fg": [ 276, 275, 277, 278 ], "bg": 3285, "rotates": true }, + { "id": [ "candy_shop_1" ], "fg": [ 280, 279, 281, 282 ], "rotates": true }, + { "id": [ "candy_shop_roof_1" ], "fg": [ 284, 283, 285, 286 ], "bg": 3285, "rotates": true }, + { "id": [ "Cemetery_1a" ], "fg": [ 288, 287, 289, 290 ], "bg": 3282, "rotates": true }, + { "id": [ "Cemetery_1b" ], "fg": [ 292, 291, 293, 294 ], "bg": 3282, "rotates": true }, + { "id": [ "cemetery_small" ], "fg": [ 296, 295, 297, 298 ], "bg": 3282, "rotates": true }, + { "id": [ "church" ], "fg": [ 300, 299, 301, 302 ], "bg": 3282, "rotates": true }, + { "id": [ "church_roof" ], "fg": [ 304, 303, 305, 306 ], "bg": 3285, "rotates": true }, + { "id": [ "church_steeple" ], "fg": [ 308, 307, 309, 310 ], "bg": 3285, "rotates": true }, + { "id": [ "church_steeple_end" ], "fg": [ 312, 311, 313, 314 ], "bg": 3285, "rotates": true }, + { "id": [ "church_steeple_roof" ], "fg": [ 316, 315, 317, 318 ], "bg": 3285, "rotates": true }, + { "id": [ "church_1" ], "fg": [ 320, 319, 321, 322 ], "bg": 3282, "rotates": true }, + { "id": [ "church_2ndfloor_1" ], "fg": [ 324, 323, 325, 326 ], "bg": 3285, "rotates": true }, + { "id": [ "church_3rdfloor_1" ], "fg": [ 328, 327, 329, 330 ], "bg": 3285, "rotates": true }, + { "id": [ "church_roof_1" ], "fg": [ 332, 331, 333, 334 ], "bg": 3285, "rotates": true }, + { "id": [ "crater_core", "crater" ], "fg": [ 336, 335, 337, 338 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_car_dealership" ], "fg": [ 340, 339, 341, 342 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_car_dealership_roof" ], "fg": [ 344, 343, 345, 346 ], "bg": 3285, "rotates": true }, + { "id": [ "cs_car_showroom" ], "fg": [ 352, 351, 353, 354 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_car_showroom_2ndfloor" ], "fg": [ 348, 347, 349, 350 ], "bg": 3285, "rotates": true }, + { "id": [ "cs_car_showroom_roof" ], "fg": [ 356, 355, 357, 358 ], "bg": 3285, "rotates": true }, + { "id": [ "cs_city_dump_small" ], "fg": [ 360, 359, 361, 362 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_gardening_allotment" ], "fg": [ 364, 363, 365, 366 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_gardening_allotment_roof" ], "fg": [ 368, 367, 369, 370 ], "bg": 3285, "rotates": true }, + { "id": [ "cs_internet_cafe" ], "fg": [ 372, 371, 373, 374 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_internet_cafe_roof" ], "fg": [ 376, 375, 377, 378 ], "bg": 3285, "rotates": true }, + { "id": [ "cs_internet_cafe_upper_roof" ], "fg": [ 380, 379, 381, 382 ], "bg": 3285, "rotates": true }, + { "id": [ "cs_market_small" ], "fg": [ 384, 383, 385, 386 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_open_sewer" ], "fg": [ 388, 387, 389, 390 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_private_park" ], "fg": [ 392, 391, 393, 394 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_private_park_roof" ], "fg": [ 396, 395, 397, 398 ], "bg": 3285, "rotates": true }, + { "id": [ "cs_public_art_piece" ], "fg": [ 400, 399, 401, 402 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_public_space" ], "fg": [ 404, 403, 405, 406 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_sex_shop" ], "fg": [ 408, 407, 409, 410 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_sex_shop_roof" ], "fg": [ 412, 411, 413, 414 ], "bg": 3285, "rotates": true }, + { "id": [ "cs_tire_shop" ], "fg": [ 416, 415, 417, 418 ], "bg": 3282, "rotates": true }, + { "id": [ "cs_tire_shop_roof" ], "fg": [ 420, 419, 421, 422 ], "bg": 3285, "rotates": true }, + { "id": [ "dispensary" ], "fg": [ 424, 423, 425, 426 ], "bg": 3282, "rotates": true }, + { "id": [ "dispensary_roof" ], "fg": [ 428, 427, 429, 430 ], "bg": 3285, "rotates": true }, + { "id": [ "dispensary_1" ], "fg": [ 432, 431, 433, 434 ], "bg": 3282, "rotates": true }, + { "id": [ "dispensary_roof_1" ], "fg": [ 436, 435, 437, 438 ], "bg": 3285, "rotates": true }, + { "id": [ "dispensary_2" ], "fg": [ 440, 439, 441, 442 ], "bg": 3282, "rotates": true }, + { "id": [ "dispensary_roof_2" ], "fg": [ 444, 443, 445, 446 ], "bg": 3285, "rotates": true }, + { "id": [ "dojo" ], "fg": [ 448, 447, 449, 450 ], "rotates": true }, + { "id": [ "dojo_roof" ], "fg": [ 452, 451, 453, 454 ], "bg": 3285, "rotates": true }, + { "id": [ "dojo_upper_roof" ], "fg": [ 456, 455, 457, 458 ], "bg": 3285, "rotates": true }, + { "id": [ "dojo_1" ], "fg": [ 460, 459, 461, 462 ], "rotates": true }, + { "id": [ "dojo_roof_1" ], "fg": [ 464, 463, 465, 466 ], "bg": 3285, "rotates": true }, + { "id": [ "dojo_upper_roof_1" ], "fg": [ 468, 467, 469, 470 ], "bg": 3285, "rotates": true }, + { "id": [ "dollarstore" ], "fg": [ 472, 471, 473, 474 ], "bg": 3282, "rotates": true }, + { "id": [ "dollarstore_roof" ], "fg": [ 476, 475, 477, 478 ], "bg": 3285, "rotates": true }, + { "id": [ "dollarstore_1" ], "fg": [ 480, 479, 481, 482 ], "bg": 3282, "rotates": true }, + { "id": [ "dollarstore_roof_1" ], "fg": [ 484, 483, 485, 486 ], "bg": 3285, "rotates": true }, + { "id": [ "dump", "landfill" ], "fg": [ 488, 487, 489, 490 ], "bg": 3282, "rotates": true }, + { "id": [ "dumpsite" ], "fg": 491, "bg": 3283, "rotates": true }, + { "id": [ "emptycommerciallot" ], "fg": 492, "bg": 3282, "rotates": true }, + { "id": [ "emptyresidentiallot" ], "fg": 493, "bg": 3282, "rotates": true }, + { "id": [ "farm_lot_wire_straight_h" ], "fg": [ 503, 502, 504, 505 ], "bg": 3282, "rotates": true }, + { "id": [ "farm_lot_wire_straight_v" ], "fg": [ 511, 510, 512, 513 ], "bg": 3282, "rotates": true }, + { "id": [ "farm_lot_wire_straight_v_open" ], "fg": [ 515, 514, 516, 517 ], "bg": 3282, "rotates": true }, + { "id": [ "farm_lot_wire_straight_h_open" ], "fg": [ 507, 506, 508, 509 ], "bg": 3282, "rotates": true }, + { "id": [ "farm_lot_wire_turn_h_open" ], "fg": [ 523, 522, 524, 525 ], "bg": 3282, "rotates": true }, + { "id": [ "farm_lot_wire_turn_v_open" ], "fg": [ 535, 534, 536, 537 ], "bg": 3282, "rotates": true }, + { "id": [ "farm_lot_m" ], "fg": [ 495, 494, 496, 497 ], "bg": 3282, "rotates": true }, + { "id": [ "farm_lot_m1" ], "fg": [ 499, 498, 500, 501 ], "bg": 3282, "rotates": true }, + { "id": [ "farm_lot_wire_turn_h" ], "fg": [ 519, 518, 520, 521 ], "bg": 3282, "rotates": true }, + { "id": [ "farm_lot_wire_turn_uni" ], "fg": [ 527, 526, 528, 529 ], "bg": 3282, "rotates": true }, + { "id": [ "farm_lot_wire_turn_v" ], "fg": [ 531, 530, 532, 533 ], "bg": 3282, "rotates": true }, + { "id": [ "2silos" ], "fg": [ 547, 546, 548, 549 ], "bg": 3282, "rotates": true }, + { "id": [ "2silos_1" ], "fg": [ 539, 538, 540, 541 ], "bg": 3285, "rotates": true }, + { "id": [ "2silos_2" ], "fg": [ 543, 542, 544, 545 ], "bg": 3285, "rotates": true }, + { "id": [ "2silos_roof" ], "fg": [ 551, 550, 552, 553 ], "bg": 3285, "rotates": true }, + { "id": [ "coop_chicken" ], "fg": [ 555, 554, 556, 557 ], "bg": 3282, "rotates": true }, + { "id": [ "house_farm" ], "fg": [ 559, 558, 560, 561 ], "bg": 3282, "rotates": true }, + { "id": [ "house_farm_roof" ], "fg": [ 563, 562, 564, 565 ], "bg": 3285, "rotates": true }, + { "id": [ "yard" ], "fg": [ 567, 566, 568, 569 ], "bg": 3282, "rotates": true }, + { "id": [ "fire_station" ], "fg": [ 571, 570, 572, 573 ], "bg": 3282, "rotates": true }, + { "id": [ "fire_station_roof" ], "fg": [ 575, 574, 576, 577 ], "bg": 3285, "rotates": true }, + { "id": [ "fire_station_1" ], "fg": [ 579, 578, 580, 581 ], "bg": 3282, "rotates": true }, + { "id": [ "fire_station_roof_1" ], "fg": [ 583, 582, 584, 585 ], "bg": 3285, "rotates": true }, + { "id": [ "gym_fitness" ], "fg": [ 587, 586, 588, 589 ], "rotates": true }, + { "id": [ "gym_fitness_roof" ], "fg": [ 591, 590, 592, 593 ], "bg": 3285, "rotates": true }, + { "id": [ "gym_fitness_1" ], "fg": [ 595, 594, 596, 597 ], "rotates": true }, + { "id": [ "gym_fitness_2ndFloor_1" ], "fg": [ 599, 598, 600, 601 ], "bg": 3285, "rotates": true }, + { "id": [ "gym_fitness_roof_1" ], "fg": [ 603, 602, 604, 605 ], "bg": 3285, "rotates": true }, + { "id": [ "furniture" ], "fg": [ 607, 606, 608, 609 ], "bg": 3282, "rotates": true }, + { "id": [ "furniture_roof" ], "fg": [ 611, 610, 612, 613 ], "bg": 3285, "rotates": true }, + { "id": [ "furniture_upper_roof" ], "fg": [ 615, 614, 616, 617 ], "bg": 3285, "rotates": true }, + { "id": [ "gambling_hall" ], "fg": [ 619, 618, 620, 621 ], "bg": 3282, "rotates": true }, + { "id": [ "gambling_hall_roof" ], "fg": [ 623, 622, 624, 625 ], "bg": 3285, "rotates": true }, + { "id": [ "gambling_hall_upper_roof" ], "fg": [ 627, 626, 628, 629 ], "bg": 3285, "rotates": true }, + { "id": [ "gambling_hall_1" ], "fg": [ 631, 630, 632, 633 ], "bg": 3282, "rotates": true }, + { "id": [ "gambling_hall_roof_1" ], "fg": [ 635, 634, 636, 637 ], "bg": 3285, "rotates": true }, + { "id": [ "garage_gas_1" ], "fg": [ 639, 638, 640, 641 ], "bg": 3282, "rotates": true }, + { "id": [ "garage_gas_2" ], "fg": [ 643, 642, 644, 645 ], "bg": 3282, "rotates": true }, + { "id": [ "garage_gas_3" ], "fg": [ 647, 646, 648, 649 ], "bg": 3282, "rotates": true }, + { "id": [ "garage_gas_roof_1" ], "fg": [ 651, 650, 652, 653 ], "bg": 3285, "rotates": true }, + { "id": [ "garage_gas_roof_2" ], "fg": [ 655, 654, 656, 657 ], "bg": 3285, "rotates": true }, + { "id": [ "garage_gas_roof_3" ], "fg": [ 659, 658, 660, 661 ], "bg": 3285, "rotates": true }, + { "id": [ "craft_shop" ], "fg": [ 663, 662, 664, 665 ], "bg": 3282, "rotates": true }, + { "id": [ "craft_shop_roof" ], "fg": [ 667, 666, 668, 669 ], "bg": 3285, "rotates": true }, + { "id": [ "craft_shop_upper_roof" ], "fg": [ 671, 670, 672, 673 ], "bg": 3285, "rotates": true }, + { "id": [ "gym" ], "fg": [ 675, 674, 676, 677 ], "rotates": true }, + { "id": [ "gym_roof" ], "fg": [ 679, 678, 680, 681 ], "bg": 3285, "rotates": true }, + { "id": [ "gym_upper_roof" ], "fg": [ 683, 682, 684, 685 ], "bg": 3285, "rotates": true }, + { "id": [ "headshop" ], "fg": [ 687, 686, 688, 689 ], "bg": 3282, "rotates": true }, + { "id": [ "headshop_roof" ], "fg": [ 691, 690, 692, 693 ], "bg": 3285, "rotates": true }, + { "id": [ "headshop_upper_roof" ], "fg": [ 695, 694, 696, 697 ], "bg": 3285, "rotates": true }, + { "id": [ "home_improvement" ], "fg": [ 699, 698, 700, 701 ], "bg": 3282, "rotates": true }, + { "id": [ "home_improvement_roof" ], "fg": [ 703, 702, 704, 705 ], "bg": 3285, "rotates": true }, + { "id": [ "house_01" ], "fg": [ 747, 746, 748, 749 ], "bg": 3282, "rotates": true }, + { "id": [ "house_01_roof" ], "fg": [ 751, 750, 752, 753 ], "bg": 3285, "rotates": true }, + { "id": [ "house_02" ], "fg": [ 755, 754, 756, 757 ], "bg": 3282, "rotates": true }, + { "id": [ "house_02_roof" ], "fg": [ 759, 758, 760, 761 ], "bg": 3285, "rotates": true }, + { "id": [ "house_03" ], "fg": [ 763, 762, 764, 765 ], "bg": 3282, "rotates": true }, + { "id": [ "house_03_roof" ], "fg": [ 767, 766, 768, 769 ], "bg": 3285, "rotates": true }, + { "id": [ "house_04" ], "fg": [ 771, 770, 772, 773 ], "bg": 3282, "rotates": true }, + { "id": [ "house_04_roof" ], "fg": [ 779, 778, 780, 781 ], "bg": 3285, "rotates": true }, + { "id": [ "house_04_basement" ], "fg": [ 775, 774, 776, 777 ], "bg": 3286, "rotates": true }, + { "id": [ "house_05ab" ], "fg": [ 791, 790, 792, 793 ], "bg": 3282, "rotates": true }, + { "id": [ "house_05ab_basement" ], "fg": [ 795, 794, 796, 797 ], "bg": 3286, "rotates": true }, + { "id": [ "house_05" ], "fg": [ 783, 782, 784, 785 ], "bg": 3282, "rotates": true }, + { "id": [ "house_05_basement" ], "fg": [ 787, 786, 788, 789 ], "bg": 3286, "rotates": true }, + { "id": [ "house_06" ], "fg": [ 799, 798, 800, 801 ], "bg": 3282, "rotates": true }, + { "id": [ "house_07" ], "fg": [ 803, 802, 804, 805 ], "bg": 3282, "rotates": true }, + { "id": [ "house_08" ], "fg": [ 807, 806, 808, 809 ], "bg": 3282, "rotates": true }, + { "id": [ "house_08_roof" ], "fg": [ 815, 814, 816, 817 ], "bg": 3285, "rotates": true }, + { "id": [ "house_08_basement" ], "fg": [ 811, 810, 812, 813 ], "bg": 3286, "rotates": true }, + { "id": [ "house_09" ], "fg": [ 819, 818, 820, 821 ], "bg": 3282, "rotates": true }, + { "id": [ "house_09_roof" ], "fg": [ 827, 826, 828, 829 ], "bg": 3285, "rotates": true }, { "id": [ "basement_bionic", "basement_bionic_decoy" ], - "fg": [ 767, 766, 768, 769 ], - "bg": 2974, + "fg": [ 823, 822, 824, 825 ], + "bg": 3286, "rotates": true }, - { "id": [ "house_10" ], "fg": [ 775, 774, 776, 777 ], "bg": 2970, "rotates": true }, - { "id": [ "house_10_roof" ], "fg": [ 783, 782, 784, 785 ], "bg": 2973, "rotates": true }, - { "id": [ "house_10_basement" ], "fg": [ 779, 778, 780, 781 ], "bg": 2974, "rotates": true }, - { "id": [ "house_11" ], "fg": [ 787, 786, 788, 789 ], "bg": 2970, "rotates": true }, - { "id": [ "house_11_roof" ], "fg": [ 795, 794, 796, 797 ], "bg": 2973, "rotates": true }, - { "id": [ "house_11_basement" ], "fg": [ 791, 790, 792, 793 ], "bg": 2974, "rotates": true }, - { "id": [ "house_12" ], "fg": [ 799, 798, 800, 801 ], "bg": 2970, "rotates": true }, - { "id": [ "house_12_roof" ], "fg": [ 807, 806, 808, 809 ], "bg": 2973, "rotates": true }, - { "id": [ "house_12_basement" ], "fg": [ 803, 802, 804, 805 ], "bg": 2974, "rotates": true }, - { "id": [ "house_dogs" ], "fg": [ 1276, 1275, 1277, 1278 ], "bg": 2970, "rotates": true }, - { "id": [ "house_dogs_roof" ], "fg": [ 1280, 1279, 1281, 1282 ], "bg": 2973, "rotates": true }, - { "id": [ "2storyModern01_first" ], "fg": [ 651, 650, 652, 653 ], "bg": 2970, "rotates": true }, - { "id": [ "2storyModern01_second" ], "fg": [ 658, 663, 664, 665 ], "bg": 2973, "rotates": true }, - { "id": [ "2storyModern01_roof" ], "fg": [ 655, 654, 656, 657 ], "bg": 2973, "rotates": true }, - { "id": [ "2storyModern01_basement" ], "fg": [ 660, 659, 661, 662 ], "bg": 2974, "rotates": true }, - { "id": [ "duplex" ], "fg": [ 667, 666, 668, 669 ], "bg": 2970, "rotates": true }, - { "id": [ "duplex_roof" ], "fg": [ 671, 670, 672, 673 ], "bg": 2973, "rotates": true }, - { "id": [ "garden_house_1_floor_1" ], "fg": [ 679, 678, 680, 681 ], "bg": 2970, "rotates": true }, - { "id": [ "garden_house_1_floor_2" ], "fg": [ 683, 682, 684, 685 ], "bg": 2973, "rotates": true }, - { "id": [ "garden_house_1_basement" ], "fg": [ 675, 674, 676, 677 ], "bg": 2974, "rotates": true }, - { "id": [ "garden_house_1_roof" ], "fg": [ 687, 686, 688, 689 ], "bg": 2973, "rotates": true }, - { "id": [ "house_13" ], "fg": [ 811, 810, 812, 813 ], "bg": 2970, "rotates": true }, - { "id": [ "house_13_roof" ], "fg": [ 819, 818, 820, 821 ], "bg": 2973, "rotates": true }, - { "id": [ "house_13_basement" ], "fg": [ 815, 814, 816, 817 ], "bg": 2974, "rotates": true }, - { "id": [ "house_14" ], "fg": [ 823, 822, 824, 825 ], "bg": 2970, "rotates": true }, - { "id": [ "house_14_roof" ], "fg": [ 831, 830, 832, 833 ], "bg": 2973, "rotates": true }, - { "id": [ "house_14_basement" ], "fg": [ 827, 826, 828, 829 ], "bg": 2974, "rotates": true }, - { "id": [ "house_15" ], "fg": [ 835, 834, 836, 837 ], "bg": 2970, "rotates": true }, - { "id": [ "house_15_roof" ], "fg": [ 843, 842, 844, 845 ], "bg": 2973, "rotates": true }, - { "id": [ "house_15_basement" ], "fg": [ 839, 838, 840, 841 ], "bg": 2974, "rotates": true }, - { "id": [ "house_16" ], "fg": [ 847, 846, 848, 849 ], "bg": 2970, "rotates": true }, - { "id": [ "house_16_roof" ], "fg": [ 855, 854, 856, 857 ], "bg": 2973, "rotates": true }, - { "id": [ "house_16_basement" ], "fg": [ 851, 850, 852, 853 ], "bg": 2974, "rotates": true }, - { "id": [ "house_17" ], "fg": [ 859, 858, 860, 861 ], "bg": 2970, "rotates": true }, - { "id": [ "house_17_roof" ], "fg": [ 867, 866, 868, 869 ], "bg": 2973, "rotates": true }, - { "id": [ "house_17_basement" ], "fg": [ 863, 862, 864, 865 ], "bg": 2974, "rotates": true }, - { "id": [ "house_18" ], "fg": [ 871, 870, 872, 873 ], "bg": 2970, "rotates": true }, - { "id": [ "house_18_roof" ], "fg": [ 875, 874, 876, 877 ], "bg": 2973, "rotates": true }, - { "id": [ "house_19" ], "fg": [ 879, 878, 880, 881 ], "bg": 2970, "rotates": true }, - { "id": [ "house_19_roof" ], "fg": [ 887, 886, 888, 889 ], "bg": 2973, "rotates": true }, - { "id": [ "house_19_basement" ], "fg": [ 883, 882, 884, 885 ], "bg": 2974, "rotates": true }, - { "id": [ "house_20" ], "fg": [ 891, 890, 892, 893 ], "bg": 2970, "rotates": true }, - { "id": [ "house_20_roof" ], "fg": [ 895, 894, 896, 897 ], "bg": 2973, "rotates": true }, - { "id": [ "house_21" ], "fg": [ 899, 898, 900, 901 ], "bg": 2970, "rotates": true }, - { "id": [ "house_21_roof" ], "fg": [ 903, 902, 904, 905 ], "bg": 2973, "rotates": true }, - { "id": [ "house_22" ], "fg": [ 907, 906, 908, 909 ], "bg": 2970, "rotates": true }, - { "id": [ "house_22_roof" ], "fg": [ 915, 914, 916, 917 ], "bg": 2973, "rotates": true }, - { "id": [ "house_22_basement" ], "fg": [ 911, 910, 912, 913 ], "bg": 2974, "rotates": true }, - { "id": [ "house_23" ], "fg": [ 919, 918, 920, 921 ], "bg": 2970, "rotates": true }, - { "id": [ "house_23_roof" ], "fg": [ 923, 922, 924, 925 ], "bg": 2973, "rotates": true }, - { "id": [ "house_24" ], "fg": [ 927, 926, 928, 929 ], "bg": 2970, "rotates": true }, - { "id": [ "house_24_roof" ], "fg": [ 931, 930, 932, 933 ], "bg": 2973, "rotates": true }, - { "id": [ "house_25" ], "fg": [ 935, 934, 936, 937 ], "bg": 2970, "rotates": true }, - { "id": [ "house_25_roof" ], "fg": [ 939, 938, 940, 941 ], "bg": 2973, "rotates": true }, - { "id": [ "house_26" ], "fg": [ 943, 942, 944, 945 ], "bg": 2970, "rotates": true }, - { "id": [ "house_26_roof" ], "fg": [ 951, 950, 952, 953 ], "bg": 2973, "rotates": true }, - { "id": [ "basement_survival" ], "fg": [ 947, 946, 948, 949 ], "bg": 2974, "rotates": true }, - { "id": [ "house_27" ], "fg": [ 955, 954, 956, 957 ], "bg": 2970, "rotates": true }, - { "id": [ "house_27_roof" ], "fg": [ 963, 962, 964, 965 ], "bg": 2973, "rotates": true }, - { "id": [ "basement_meth" ], "fg": [ 959, 958, 960, 961 ], "bg": 2974, "rotates": true }, - { "id": [ "house_28" ], "fg": [ 967, 966, 968, 969 ], "bg": 2970, "rotates": true }, - { "id": [ "house_28_roof" ], "fg": [ 975, 974, 976, 977 ], "bg": 2973, "rotates": true }, - { "id": [ "basement_weed" ], "fg": [ 971, 970, 972, 973 ], "bg": 2974, "rotates": true }, - { "id": [ "house_29" ], "fg": [ 979, 978, 980, 981 ], "bg": 2970, "rotates": true }, - { "id": [ "house_29_roof" ], "fg": [ 987, 986, 988, 989 ], "bg": 2973, "rotates": true }, - { "id": [ "basement_chem" ], "fg": [ 983, 982, 984, 985 ], "bg": 2974, "rotates": true }, - { "id": [ "house_2story_base" ], "fg": [ 991, 990, 992, 993 ], "bg": 2970, "rotates": true }, - { "id": [ "house_2story_second" ], "fg": [ 1003, 1002, 1004, 1005 ], "bg": 2973, "rotates": true }, - { "id": [ "house_2story_basement" ], "fg": [ 995, 994, 996, 997 ], "bg": 2974, "rotates": true }, - { "id": [ "house_2story_roof" ], "fg": [ 999, 998, 1000, 1001 ], "bg": 2973, "rotates": true }, - { "id": [ "house_30" ], "fg": [ 1007, 1006, 1008, 1009 ], "bg": 2970, "rotates": true }, - { "id": [ "house_30_roof" ], "fg": [ 1015, 1014, 1016, 1017 ], "bg": 2973, "rotates": true }, - { "id": [ "basement_chem2" ], "fg": [ 1011, 1010, 1012, 1013 ], "bg": 2974, "rotates": true }, - { "id": [ "house_31" ], "fg": [ 1020, 1019, 1021, 1022 ], "bg": 2970, "rotates": true }, - { "id": [ "house_31_roof" ], "fg": [ 1024, 1023, 1025, 1026 ], "bg": 2973, "rotates": true }, - { "id": [ "basement" ], "fg": 1018, "bg": 2974, "rotates": true }, - { "id": [ "house_32" ], "fg": [ 1028, 1027, 1029, 1030 ], "bg": 2970, "rotates": true }, - { "id": [ "house_32_roof" ], "fg": [ 1032, 1031, 1033, 1034 ], "bg": 2973, "rotates": true }, - { "id": [ "house_33" ], "fg": [ 1036, 1035, 1037, 1038 ], "bg": 2970, "rotates": true }, - { "id": [ "house_33_roof" ], "fg": [ 1044, 1043, 1045, 1046 ], "bg": 2973, "rotates": true }, - { "id": [ "house_33_basement" ], "fg": [ 1040, 1039, 1041, 1042 ], "bg": 2974, "rotates": true }, - { "id": [ "house_34" ], "fg": [ 1048, 1047, 1049, 1050 ], "bg": 2970, "rotates": true }, - { "id": [ "house_34_roof" ], "fg": [ 1056, 1055, 1057, 1058 ], "bg": 2973, "rotates": true }, - { "id": [ "house_34_basement" ], "fg": [ 1052, 1051, 1053, 1054 ], "bg": 2974, "rotates": true }, - { "id": [ "house_35" ], "fg": [ 1060, 1059, 1061, 1062 ], "bg": 2970, "rotates": true }, - { "id": [ "house_35_roof" ], "fg": [ 1064, 1063, 1065, 1066 ], "bg": 2973, "rotates": true }, - { "id": [ "house_36" ], "fg": [ 1068, 1067, 1069, 1070 ], "bg": 2970, "rotates": true }, - { "id": [ "house_36_roof" ], "fg": [ 1076, 1075, 1077, 1078 ], "bg": 2973, "rotates": true }, - { "id": [ "house_36_basement" ], "fg": [ 1072, 1071, 1073, 1074 ], "bg": 2974, "rotates": true }, - { "id": [ "house_37" ], "fg": [ 1080, 1079, 1081, 1082 ], "bg": 2970, "rotates": true }, - { "id": [ "house_37_roof" ], "fg": [ 1088, 1087, 1089, 1090 ], "bg": 2973, "rotates": true }, - { "id": [ "house_37_basement" ], "fg": [ 1084, 1083, 1085, 1086 ], "bg": 2974, "rotates": true }, - { "id": [ "house_38" ], "fg": [ 1092, 1091, 1093, 1094 ], "bg": 2970, "rotates": true }, - { "id": [ "house_38_roof" ], "fg": [ 1096, 1095, 1097, 1098 ], "bg": 2973, "rotates": true }, - { "id": [ "house_39" ], "fg": [ 1100, 1099, 1101, 1102 ], "bg": 2970, "rotates": true }, - { "id": [ "house_39_roof" ], "fg": [ 1108, 1107, 1109, 1110 ], "bg": 2973, "rotates": true }, - { "id": [ "house_39_basement" ], "fg": [ 1104, 1103, 1105, 1106 ], "bg": 2974, "rotates": true }, - { "id": [ "house_40" ], "fg": [ 1112, 1111, 1113, 1114 ], "bg": 2970, "rotates": true }, - { "id": [ "house_40_roof" ], "fg": [ 1116, 1115, 1117, 1118 ], "bg": 2973, "rotates": true }, - { "id": [ "house_41" ], "fg": [ 1120, 1119, 1121, 1122 ], "bg": 2970, "rotates": true }, - { "id": [ "house_41_roof" ], "fg": [ 1124, 1123, 1125, 1126 ], "bg": 2973, "rotates": true }, - { "id": [ "house_42" ], "fg": [ 1128, 1127, 1129, 1130 ], "bg": 2970, "rotates": true }, - { "id": [ "house_42_roof" ], "fg": [ 1132, 1131, 1133, 1134 ], "bg": 2973, "rotates": true }, - { "id": [ "house_crack1", "house_crack2" ], "fg": [ 1140, 1139, 1141, 1142 ], "bg": 2970, "rotates": true }, - { "id": [ "house_crack1_roof" ], "fg": [ 1144, 1143, 1145, 1146 ], "bg": 2973, "rotates": true }, - { "id": [ "basement_messed" ], "fg": [ 1136, 1135, 1137, 1138 ], "bg": 2974, "rotates": true }, - { "id": [ "house_crack3" ], "fg": [ 1148, 1147, 1149, 1150 ], "bg": 2970, "rotates": true }, - { "id": [ "house_crack3_roof" ], "fg": [ 1156, 1155, 1157, 1158 ], "bg": 2973, "rotates": true }, - { "id": [ "house_crack3_basement" ], "fg": [ 1152, 1151, 1153, 1154 ], "bg": 2974, "rotates": true }, - { "id": [ "house_detatched1" ], "fg": [ 1160, 1159, 1161, 1162 ], "bg": 2970, "rotates": true }, - { "id": [ "house_detatched1_roof" ], "fg": [ 1168, 1167, 1169, 1170 ], "bg": 2973, "rotates": true }, - { "id": [ "house_detatched1_basement" ], "fg": [ 1164, 1163, 1165, 1166 ], "bg": 2974, "rotates": true }, - { "id": [ "house_detatched10" ], "fg": [ 1172, 1171, 1173, 1174 ], "bg": 2970, "rotates": true }, - { "id": [ "house_detatched10_roof" ], "fg": [ 1176, 1175, 1177, 1178 ], "bg": 2973, "rotates": true }, - { "id": [ "house_detatched2" ], "fg": [ 1180, 1179, 1181, 1182 ], "bg": 2970, "rotates": true }, - { "id": [ "house_detatched2_roof" ], "fg": [ 1188, 1187, 1189, 1190 ], "bg": 2973, "rotates": true }, - { "id": [ "house_detatched2_basement" ], "fg": [ 1184, 1183, 1185, 1186 ], "bg": 2974, "rotates": true }, - { "id": [ "house_detatched3" ], "fg": [ 1192, 1191, 1193, 1194 ], "bg": 2970, "rotates": true }, - { "id": [ "house_detatched3_roof" ], "fg": [ 1200, 1199, 1201, 1202 ], "bg": 2973, "rotates": true }, - { "id": [ "house_detatched3_basement" ], "fg": [ 1196, 1195, 1197, 1198 ], "bg": 2974, "rotates": true }, - { "id": [ "house_detatched4" ], "fg": [ 1204, 1203, 1205, 1206 ], "bg": 2970, "rotates": true }, - { "id": [ "house_detatched4_roof" ], "fg": [ 1212, 1211, 1213, 1214 ], "bg": 2973, "rotates": true }, - { "id": [ "house_detatched4_basement" ], "fg": [ 1208, 1207, 1209, 1210 ], "bg": 2974, "rotates": true }, - { "id": [ "house_detatched5" ], "fg": [ 1216, 1215, 1217, 1218 ], "bg": 2970, "rotates": true }, - { "id": [ "house_detatched5_roof" ], "fg": [ 1224, 1223, 1225, 1226 ], "bg": 2973, "rotates": true }, - { "id": [ "house_detatched5_basement" ], "fg": [ 1220, 1219, 1221, 1222 ], "bg": 2974, "rotates": true }, - { "id": [ "house_detatched6" ], "fg": [ 1228, 1227, 1229, 1230 ], "bg": 2970, "rotates": true }, - { "id": [ "house_detatched6_roof" ], "fg": [ 1236, 1235, 1237, 1238 ], "bg": 2973, "rotates": true }, - { "id": [ "house_detatched6_basement" ], "fg": [ 1232, 1231, 1233, 1234 ], "bg": 2974, "rotates": true }, - { "id": [ "house_detatched7" ], "fg": [ 1240, 1239, 1241, 1242 ], "bg": 2970, "rotates": true }, - { "id": [ "house_detatched7_roof" ], "fg": [ 1248, 1247, 1249, 1250 ], "bg": 2973, "rotates": true }, - { "id": [ "house_detatched7_basement" ], "fg": [ 1244, 1243, 1245, 1246 ], "bg": 2974, "rotates": true }, - { "id": [ "house_detatched8" ], "fg": [ 1252, 1251, 1253, 1254 ], "bg": 2970, "rotates": true }, - { "id": [ "house_detatched8_roof" ], "fg": [ 1260, 1259, 1261, 1262 ], "bg": 2973, "rotates": true }, - { "id": [ "house_detatched8_basement" ], "fg": [ 1256, 1255, 1257, 1258 ], "bg": 2974, "rotates": true }, - { "id": [ "house_detatched9" ], "fg": [ 1264, 1263, 1265, 1266 ], "bg": 2970, "rotates": true }, - { "id": [ "house_detatched9_roof" ], "fg": [ 1272, 1271, 1273, 1274 ], "bg": 2973, "rotates": true }, - { "id": [ "house_detatched9_basement" ], "fg": [ 1268, 1267, 1269, 1270 ], "bg": 2974, "rotates": true }, - { "id": [ "house_duplex10" ], "fg": [ 1284, 1283, 1285, 1286 ], "bg": 2970, "rotates": true }, - { "id": [ "house_duplex10_roof" ], "fg": [ 1288, 1287, 1289, 1290 ], "bg": 2973, "rotates": true }, - { "id": [ "house_duplex11" ], "fg": [ 1292, 1291, 1293, 1294 ], "bg": 2970, "rotates": true }, - { "id": [ "house_duplex11_roof" ], "fg": [ 1296, 1295, 1297, 1298 ], "bg": 2973, "rotates": true }, - { "id": [ "house_duplex2" ], "fg": [ 1300, 1299, 1301, 1302 ], "bg": 2970, "rotates": true }, - { "id": [ "house_duplex2_roof" ], "fg": [ 1304, 1303, 1305, 1306 ], "bg": 2973, "rotates": true }, - { "id": [ "house_duplex3" ], "fg": [ 1308, 1307, 1309, 1310 ], "bg": 2970, "rotates": true }, - { "id": [ "house_duplex3_roof" ], "fg": [ 1312, 1311, 1313, 1314 ], "bg": 2973, "rotates": true }, - { "id": [ "house_duplex4" ], "fg": [ 1316, 1315, 1317, 1318 ], "bg": 2970, "rotates": true }, - { "id": [ "house_duplex4_roof" ], "fg": [ 1320, 1319, 1321, 1322 ], "bg": 2973, "rotates": true }, - { "id": [ "house_duplex5" ], "fg": [ 1324, 1323, 1325, 1326 ], "bg": 2970, "rotates": true }, - { "id": [ "house_duplex5_roof" ], "fg": [ 1328, 1327, 1329, 1330 ], "bg": 2973, "rotates": true }, - { "id": [ "house_duplex6" ], "fg": [ 1332, 1331, 1333, 1334 ], "bg": 2970, "rotates": true }, - { "id": [ "house_duplex6_roof" ], "fg": [ 1336, 1335, 1337, 1338 ], "bg": 2973, "rotates": true }, - { "id": [ "house_duplex7" ], "fg": [ 1340, 1339, 1341, 1342 ], "bg": 2970, "rotates": true }, - { "id": [ "house_duplex7_roof" ], "fg": [ 1344, 1343, 1345, 1346 ], "bg": 2973, "rotates": true }, - { "id": [ "house_duplex8" ], "fg": [ 1348, 1347, 1349, 1350 ], "bg": 2970, "rotates": true }, - { "id": [ "house_duplex8_roof" ], "fg": [ 1352, 1351, 1353, 1354 ], "bg": 2973, "rotates": true }, - { "id": [ "house_duplex9" ], "fg": [ 1356, 1355, 1357, 1358 ], "bg": 2970, "rotates": true }, - { "id": [ "house_duplex9_roof" ], "fg": [ 1360, 1359, 1361, 1362 ], "bg": 2973, "rotates": true }, - { "id": [ "house_fortified" ], "fg": [ 1364, 1363, 1365, 1366 ], "bg": 2970, "rotates": true }, - { "id": [ "house_fortified_roof" ], "fg": [ 1372, 1371, 1373, 1374 ], "bg": 2973, "rotates": true }, - { "id": [ "house_fortified_basement" ], "fg": [ 1368, 1367, 1369, 1370 ], "bg": 2974, "rotates": true }, - { "id": [ "house_garage" ], "fg": [ 1376, 1375, 1377, 1378 ], "bg": 2970, "rotates": true }, - { "id": [ "house_garage_roof" ], "fg": [ 1384, 1383, 1385, 1386 ], "bg": 2973, "rotates": true }, - { "id": [ "house_garage_basement" ], "fg": [ 1380, 1379, 1381, 1382 ], "bg": 2974, "rotates": true }, - { "id": [ "house_garage2" ], "fg": [ 1388, 1387, 1389, 1390 ], "bg": 2970, "rotates": true }, - { "id": [ "house_garage2_roof" ], "fg": [ 1396, 1395, 1397, 1398 ], "bg": 2973, "rotates": true }, - { "id": [ "house_garage2_basement" ], "fg": [ 1392, 1391, 1393, 1394 ], "bg": 2974, "rotates": true }, - { "id": [ "house_garage3" ], "fg": [ 1400, 1399, 1401, 1402 ], "bg": 2970, "rotates": true }, - { "id": [ "house_garage3_roof" ], "fg": [ 1408, 1407, 1409, 1410 ], "bg": 2973, "rotates": true }, - { "id": [ "house_garage3_basement" ], "fg": [ 1404, 1403, 1405, 1406 ], "bg": 2974, "rotates": true }, - { "id": [ "house_garage4" ], "fg": [ 1412, 1411, 1413, 1414 ], "bg": 2970, "rotates": true }, - { "id": [ "house_garage4_roof" ], "fg": [ 1420, 1419, 1421, 1422 ], "bg": 2973, "rotates": true }, - { "id": [ "house_garage4_basement" ], "fg": [ 1416, 1415, 1417, 1418 ], "bg": 2974, "rotates": true }, - { "id": [ "house_garage5" ], "fg": [ 1424, 1423, 1425, 1426 ], "bg": 2970, "rotates": true }, - { "id": [ "house_garage5_roof" ], "fg": [ 1432, 1431, 1433, 1434 ], "bg": 2973, "rotates": true }, - { "id": [ "house_garage5_basement" ], "fg": [ 1428, 1427, 1429, 1430 ], "bg": 2974, "rotates": true }, - { "id": [ "house_garage6" ], "fg": [ 1436, 1435, 1437, 1438 ], "bg": 2970, "rotates": true }, - { "id": [ "house_garage6_roof" ], "fg": [ 1444, 1443, 1445, 1446 ], "bg": 2973, "rotates": true }, - { "id": [ "house_garage6_basement" ], "fg": [ 1440, 1439, 1441, 1442 ], "bg": 2974, "rotates": true }, - { "id": [ "house_garage7" ], "fg": [ 1448, 1447, 1449, 1450 ], "bg": 2970, "rotates": true }, - { "id": [ "house_garage7_roof" ], "fg": [ 1456, 1455, 1457, 1458 ], "bg": 2973, "rotates": true }, - { "id": [ "house_garage7_basement" ], "fg": [ 1452, 1451, 1453, 1454 ], "bg": 2974, "rotates": true }, - { "id": [ "house_garage8" ], "fg": [ 1460, 1459, 1461, 1462 ], "bg": 2970, "rotates": true }, - { "id": [ "house_garage8_roof" ], "fg": [ 1468, 1467, 1469, 1470 ], "bg": 2973, "rotates": true }, - { "id": [ "house_garage8_basement" ], "fg": [ 1464, 1463, 1465, 1466 ], "bg": 2974, "rotates": true }, - { "id": [ "house_gardener" ], "fg": [ 1472, 1471, 1473, 1474 ], "bg": 2970, "rotates": true }, - { "id": [ "house_gardener_roof" ], "fg": [ 1480, 1479, 1481, 1482 ], "bg": 2973, "rotates": true }, - { "id": [ "house_gardener_basement" ], "fg": [ 1476, 1475, 1477, 1478 ], "bg": 2974, "rotates": true }, - { "id": [ "house_inner_garden" ], "fg": [ 1484, 1483, 1485, 1486 ], "bg": 2970, "rotates": true }, - { "id": [ "house_inner_garden_roof" ], "fg": [ 1488, 1487, 1489, 1490 ], "bg": 2973, "rotates": true }, - { "id": [ "house_library" ], "fg": [ 1492, 1491, 1493, 1494 ], "bg": 2970, "rotates": true }, - { "id": [ "house_modern_1" ], "fg": [ 1496, 1495, 1497, 1498 ], "bg": 2970, "rotates": true }, - { "id": [ "house_modern_1_roof" ], "fg": [ 1504, 1503, 1505, 1506 ], "bg": 2973, "rotates": true }, - { "id": [ "house_modern_1_basement" ], "fg": [ 1500, 1499, 1501, 1502 ], "bg": 2974, "rotates": true }, - { "id": [ "house_patio" ], "fg": [ 1508, 1507, 1509, 1510 ], "bg": 2970, "rotates": true }, - { "id": [ "house_patio_roof" ], "fg": [ 1516, 1515, 1517, 1518 ], "bg": 2973, "rotates": true }, - { "id": [ "house_patio_basement" ], "fg": [ 1512, 1511, 1513, 1514 ], "bg": 2974, "rotates": true }, - { "id": [ "house_porch" ], "fg": [ 1520, 1519, 1521, 1522 ], "bg": 2970, "rotates": true }, - { "id": [ "house_porch_roof" ], "fg": [ 1528, 1527, 1529, 1530 ], "bg": 2973, "rotates": true }, - { "id": [ "house_porch_basement" ], "fg": [ 1524, 1523, 1525, 1526 ], "bg": 2974, "rotates": true }, - { "id": [ "house_prepper" ], "fg": [ 1532, 1531, 1533, 1534 ], "bg": 2970, "rotates": true }, - { "id": [ "house_prepper_basement" ], "fg": [ 1536, 1535, 1537, 1538 ], "bg": 2974, "rotates": true }, - { "id": [ "house_prepper2" ], "fg": [ 1540, 1539, 1541, 1542 ], "bg": 2970, "rotates": true }, - { "id": [ "house_prepper2_roof" ], "fg": [ 1548, 1547, 1549, 1550 ], "bg": 2973, "rotates": true }, - { "id": [ "house_prepper2_basement" ], "fg": [ 1544, 1543, 1545, 1546 ], "bg": 2974, "rotates": true }, - { "id": [ "house_quiverfull" ], "fg": [ 1552, 1551, 1553, 1554 ], "bg": 2970, "rotates": true }, - { "id": [ "house_rv" ], "fg": [ 1556, 1555, 1557, 1558 ], "bg": 2970, "rotates": true }, - { "id": [ "house_rv_roof" ], "fg": [ 1564, 1563, 1565, 1566 ], "bg": 2973, "rotates": true }, - { "id": [ "house_rv_basement" ], "fg": [ 1560, 1559, 1561, 1562 ], "bg": 2974, "rotates": true }, - { "id": [ "house_suicide" ], "fg": [ 1568, 1567, 1569, 1570 ], "bg": 2970, "rotates": true }, - { "id": [ "house_suicide_roof" ], "fg": [ 1572, 1571, 1573, 1574 ], "bg": 2973, "rotates": true }, - { "id": [ "house_toolshed" ], "fg": [ 1576, 1575, 1577, 1578 ], "bg": 2970, "rotates": true }, - { "id": [ "house_toolshed_roof" ], "fg": [ 1584, 1583, 1585, 1586 ], "bg": 2973, "rotates": true }, - { "id": [ "house_toolshed_basement" ], "fg": [ 1580, 1579, 1581, 1582 ], "bg": 2974, "rotates": true }, - { "id": [ "urban_8_1" ], "fg": [ 1588, 1587, 1589, 1590 ], "bg": 2970, "rotates": true }, - { "id": [ "urban_8_2" ], "fg": [ 1592, 1591, 1593, 1594 ], "bg": 2970, "rotates": true }, - { "id": [ "urban_8_3" ], "fg": [ 1596, 1595, 1597, 1598 ], "bg": 2973, "rotates": true }, - { "id": [ "urban_8_4" ], "fg": [ 1600, 1599, 1601, 1602 ], "bg": 2973, "rotates": true }, - { "id": [ "urban_8_6" ], "fg": [ 1604, 1603, 1605, 1606 ], "bg": 2973, "rotates": true }, - { "id": [ "house_vacant" ], "fg": [ 1608, 1607, 1609, 1610 ], "bg": 2970, "rotates": true }, - { "id": [ "house_vacant2" ], "fg": [ 1612, 1611, 1613, 1614 ], "bg": 2970, "rotates": true }, - { "id": [ "house_w_1" ], "fg": [ 1616, 1615, 1617, 1618 ], "bg": 2970, "rotates": true }, - { "id": [ "house_w_1_roof" ], "fg": [ 1624, 1623, 1625, 1626 ], "bg": 2973, "rotates": true }, - { "id": [ "house_w_1_basement" ], "fg": [ 1620, 1619, 1621, 1622 ], "bg": 2974, "rotates": true }, - { "id": [ "house_w_2" ], "fg": [ 1628, 1627, 1629, 1630 ], "bg": 2970, "rotates": true }, - { "id": [ "house_w_2_roof" ], "fg": [ 1636, 1635, 1637, 1638 ], "bg": 2973, "rotates": true }, - { "id": [ "house_w_2_basement" ], "fg": [ 1632, 1631, 1633, 1634 ], "bg": 2974, "rotates": true }, - { "id": [ "house_w_3" ], "fg": [ 1640, 1639, 1641, 1642 ], "bg": 2970, "rotates": true }, - { "id": [ "house_w_3_roof" ], "fg": [ 1648, 1647, 1649, 1650 ], "bg": 2973, "rotates": true }, - { "id": [ "house_w_3_basement" ], "fg": [ 1644, 1643, 1645, 1646 ], "bg": 2974, "rotates": true }, - { "id": [ "house_w_4" ], "fg": [ 1652, 1651, 1653, 1654 ], "bg": 2970, "rotates": true }, - { "id": [ "house_w_4_roof" ], "fg": [ 1660, 1659, 1661, 1662 ], "bg": 2973, "rotates": true }, - { "id": [ "house_w_4_basement" ], "fg": [ 1656, 1655, 1657, 1658 ], "bg": 2974, "rotates": true }, - { "id": [ "house_w_5" ], "fg": [ 1664, 1663, 1665, 1666 ], "bg": 2970, "rotates": true }, - { "id": [ "house_w_5_roof" ], "fg": [ 1672, 1671, 1673, 1674 ], "bg": 2973, "rotates": true }, - { "id": [ "house_w_5_basement" ], "fg": [ 1668, 1667, 1669, 1670 ], "bg": 2974, "rotates": true }, - { "id": [ "house_w_6" ], "fg": [ 1680, 1679, 1681, 1682 ], "bg": 2970, "rotates": true }, - { "id": [ "house_w_6_2ndfloor" ], "fg": [ 1676, 1675, 1677, 1678 ], "bg": 2973, "rotates": true }, - { "id": [ "house_w_6_roof" ], "fg": [ 1688, 1687, 1689, 1690 ], "bg": 2973, "rotates": true }, - { "id": [ "house_w_6_basement" ], "fg": [ 1684, 1683, 1685, 1686 ], "bg": 2974, "rotates": true }, - { "id": [ "house_wooded" ], "fg": [ 1692, 1691, 1693, 1694 ], "bg": 2970, "rotates": true }, - { "id": [ "house_roof" ], "fg": [ 1696, 1695, 1697, 1698 ], "bg": 2973, "rotates": true }, - { "id": [ "rural_house1" ], "fg": [ 1700, 1699, 1701, 1702 ], "bg": 2970, "rotates": true }, - { "id": [ "rural_house1_roof" ], "fg": [ 1704, 1703, 1705, 1706 ], "bg": 2973, "rotates": true }, - { "id": [ "rural_house2" ], "fg": [ 1708, 1707, 1709, 1710 ], "bg": 2970, "rotates": true }, - { "id": [ "rural_house2_roof" ], "fg": [ 1716, 1715, 1717, 1718 ], "bg": 2973, "rotates": true }, - { "id": [ "rural_house2_basement" ], "fg": [ 1712, 1711, 1713, 1714 ], "bg": 2974, "rotates": true }, - { "id": [ "icecream_shop" ], "fg": [ 1720, 1719, 1721, 1722 ], "rotates": true }, - { "id": [ "icecream_shop_roof" ], "fg": [ 1724, 1723, 1725, 1726 ], "bg": 2973, "rotates": true }, - { "id": [ "lancenter" ], "fg": [ 1728, 1727, 1729, 1730 ], "bg": 2970, "rotates": true }, - { "id": [ "lancenter_roof" ], "fg": [ 1732, 1731, 1733, 1734 ], "bg": 2973, "rotates": true }, - { "id": [ "lancenter_1" ], "fg": [ 1736, 1735, 1737, 1738 ], "bg": 2970, "rotates": true }, - { "id": [ "lancenter_roof_1" ], "fg": [ 1740, 1739, 1741, 1742 ], "bg": 2973, "rotates": true }, - { "id": [ "landscapingsupplyco_1a" ], "fg": [ 1744, 1743, 1745, 1746 ], "bg": 2970, "rotates": true }, - { "id": [ "landscapingsupplyco_1b" ], "fg": [ 1748, 1747, 1749, 1750 ], "bg": 2970, "rotates": true }, - { "id": [ "landscapingsupplyco_1b_roof" ], "fg": [ 1752, 1751, 1753, 1754 ], "bg": 2973, "rotates": true }, - { "id": [ "craft_shop_1" ], "fg": [ 1756, 1755, 1757, 1758 ], "bg": 2970, "rotates": true }, - { "id": [ "craft_shop_roof_1" ], "fg": [ 1760, 1759, 1761, 1762 ], "bg": 2973, "rotates": true }, - { "id": [ "mil_surplus" ], "fg": [ 1764, 1763, 1765, 1766 ], "bg": 2970, "rotates": true }, - { "id": [ "mil_surplus_roof" ], "fg": [ 1768, 1767, 1769, 1770 ], "bg": 2973, "rotates": true }, - { "id": [ "mil_surplus_1" ], "fg": [ 1772, 1771, 1773, 1774 ], "bg": 2970, "rotates": true }, - { "id": [ "mil_surplus_roof_1" ], "fg": [ 1776, 1775, 1777, 1778 ], "bg": 2973, "rotates": true }, - { "id": [ "mil_surplus_2" ], "fg": [ 1780, 1779, 1781, 1782 ], "bg": 2970, "rotates": true }, - { "id": [ "mil_surplus_roof_2" ], "fg": [ 1784, 1783, 1785, 1786 ], "bg": 2973, "rotates": true }, - { "id": "cursor", "fg": 1787, "rotates": false }, - { "id": "overmap_horde_3", "fg": 1788, "rotates": false }, - { "id": "overmap_horde_4", "fg": 1789, "rotates": false }, - { "id": "overmap_horde_5", "fg": 1790, "rotates": false }, - { "id": "overmap_horde_6", "fg": 1791, "rotates": false }, - { "id": "mission_arrow_down", "fg": 1792, "rotates": false }, - { "id": "mission_arrow_e", "fg": 1793, "rotates": false }, - { "id": "mission_arrow_n", "fg": 1794, "rotates": false }, - { "id": "mission_arrow_ne", "fg": 1795, "rotates": false }, - { "id": "mission_arrow_nw", "fg": 1796, "rotates": false }, - { "id": "mission_arrow_s", "fg": 1797, "rotates": false }, - { "id": "mission_arrow_se", "fg": 1798, "rotates": false }, - { "id": "mission_arrow_sw", "fg": 1799, "rotates": false }, - { "id": "mission_arrow_up", "fg": 1800, "rotates": false }, - { "id": "mission_arrow_w", "fg": 1801, "rotates": false }, - { "id": "mission_cursor", "fg": 1802, "rotates": false }, - { "id": "npc_female", "fg": 1803, "rotates": false }, - { "id": "npc_male", "fg": 1803, "rotates": false }, - { "id": "player_male", "fg": 1805, "rotates": false }, - { "id": "player_female", "fg": 1805, "rotates": false }, - { "id": "overmap_remembered_vehicle", "fg": 1804, "rotates": false }, - { "id": [ "unknown_map_extra" ], "fg": 1806, "rotates": true }, - { "id": [ "moonshine_still" ], "fg": [ 1808, 1807, 1809, 1810 ], "bg": 2971, "rotates": true }, - { "id": [ "moonshine_still_roof" ], "fg": [ 1812, 1811, 1813, 1814 ], "bg": 2973, "rotates": true }, - { "id": [ "moonshine_still_1" ], "fg": [ 1816, 1815, 1817, 1818 ], "bg": 2971, "rotates": true }, - { "id": [ "moonshine_still_roof_1" ], "fg": [ 1820, 1819, 1821, 1822 ], "bg": 2973, "rotates": true }, - { "id": [ "moonshine_still_2" ], "fg": [ 1824, 1823, 1825, 1826 ], "bg": 2971, "rotates": true }, - { "id": [ "moonshine_still_roof_2" ], "fg": [ 1828, 1827, 1829, 1830 ], "bg": 2973, "rotates": true }, - { "id": [ "mortuary" ], "fg": [ 1832, 1831, 1833, 1834 ], "bg": 2970, "rotates": true }, - { "id": [ "mortuary_roof" ], "fg": [ 1836, 1835, 1837, 1838 ], "bg": 2973, "rotates": true }, - { "id": [ "museum" ], "fg": [ 1840, 1839, 1841, 1842 ], "bg": 2970, "rotates": true }, - { "id": [ "museum_roof" ], "fg": [ 1844, 1843, 1845, 1846 ], "bg": 2973, "rotates": true }, - { "id": [ "music_venue" ], "fg": [ 1848, 1847, 1849, 1850 ], "bg": 2970, "rotates": true }, - { "id": [ "music_venue_roof" ], "fg": [ 1852, 1851, 1853, 1854 ], "bg": 2973, "rotates": true }, - { "id": [ "music_venue_1" ], "fg": [ 1856, 1855, 1857, 1858 ], "bg": 2970, "rotates": true }, - { "id": [ "music_venue_1_roof" ], "fg": [ 1860, 1859, 1861, 1862 ], "bg": 2973, "rotates": true }, - { "id": [ "music_venue_1_roof_top" ], "fg": [ 1864, 1863, 1865, 1866 ], "bg": 2973, "rotates": true }, - { "id": [ "NatureTrail_1a" ], "fg": [ 1868, 1867, 1869, 1870 ], "bg": 2972, "rotates": true }, - { "id": [ "NatureTrail_1b" ], "fg": [ 1872, 1871, 1873, 1874 ], "bg": 2972, "rotates": true }, - { "id": [ "office_cubical" ], "fg": [ 1876, 1875, 1877, 1878 ], "bg": 2970, "rotates": true }, - { "id": [ "office_cubical_roof" ], "fg": [ 1880, 1879, 1881, 1882 ], "bg": 2973, "rotates": true }, - { "id": [ "office_cubical_1" ], "fg": [ 1884, 1883, 1885, 1886 ], "bg": 2970, "rotates": true }, - { "id": [ "office_cubical_roof_1" ], "fg": [ 1888, 1887, 1889, 1890 ], "bg": 2973, "rotates": true }, - { "id": [ "office_doctor" ], "fg": [ 1892, 1891, 1893, 1894 ], "rotates": true }, - { "id": [ "office_doctor_roof" ], "fg": [ 1896, 1895, 1897, 1898 ], "bg": 2973, "rotates": true }, - { "id": [ "office_doctor_1" ], "fg": [ 1900, 1899, 1901, 1902 ], "rotates": true }, - { "id": [ "office_doctor_roof_1" ], "fg": [ 1904, 1903, 1905, 1906 ], "bg": 2973, "rotates": true }, - { "id": [ "office_doctor_2" ], "fg": [ 1908, 1907, 1909, 1910 ], "rotates": true }, - { "id": [ "office_doctor_roof_2" ], "fg": [ 1912, 1911, 1913, 1914 ], "bg": 2973, "rotates": true }, - { "id": [ "office_doctor_upper_roof_2" ], "fg": [ 1916, 1915, 1917, 1918 ], "bg": 2973, "rotates": true }, - { "id": [ "orchard" ], "fg": [ 1920, 1919, 1921, 1922 ], "bg": 2970, "rotates": true }, - { "id": [ "paintball_field" ], "fg": [ 1924, 1923, 1925, 1926 ], "bg": 2970, "rotates": true }, - { "id": [ "paintball_field_roof" ], "fg": [ 1928, 1927, 1929, 1930 ], "bg": 2973, "rotates": true }, - { "id": [ "paintball_field_1" ], "fg": [ 1932, 1931, 1933, 1934 ], "bg": 2970, "rotates": true }, - { "id": [ "paintball_field_roof_1" ], "fg": [ 1936, 1935, 1937, 1938 ], "bg": 2973, "rotates": true }, - { "id": [ "publicgarden_2" ], "fg": 1995, "bg": 2970, "rotates": true }, - { "id": [ "communitygarden" ], "fg": [ 1949, 1948, 1950, 1951 ], "bg": 2970, "rotates": true }, - { "id": [ "communitygarden_2" ], "fg": 1943, "bg": 2970, "rotates": true }, - { "id": [ "communitygarden_3" ], "fg": [ 1945, 1944, 1946, 1947 ], "bg": 2970, "rotates": true }, - { "id": [ "baskeball_court" ], "fg": [ 1940, 1939, 1941, 1942 ], "rotates": true }, - { "id": [ "tennis_court" ], "fg": [ 1997, 1996, 1998, 1999 ], "rotates": true }, - { "id": [ "volleyball_court" ], "fg": [ 2001, 2000, 2002, 2003 ], "bg": 2970, "rotates": true }, - { "id": [ "dog_park" ], "fg": [ 1953, 1952, 1954, 1955 ], "bg": 2970, "rotates": true }, - { "id": [ "park_maze" ], "fg": [ 1984, 1983, 1985, 1986 ], "bg": 2970, "rotates": true }, - { "id": [ "park_maze_2" ], "fg": [ 1980, 1979, 1981, 1982 ], "bg": 2970, "rotates": true }, - { "id": [ "park" ], "fg": [ 1976, 1975, 1977, 1978 ], "bg": 2970, "rotates": true }, - { "id": [ "park_2" ], "fg": 1956, "bg": 2970, "rotates": true }, - { "id": [ "park_3" ], "fg": [ 1958, 1957, 1959, 1960 ], "bg": 2970, "rotates": true }, - { "id": [ "park_4" ], "fg": [ 1962, 1961, 1963, 1964 ], "bg": 2970, "rotates": true }, - { "id": [ "park_5" ], "fg": [ 1966, 1965, 1967, 1968 ], "bg": 2970, "rotates": true }, - { "id": [ "park_6" ], "fg": [ 1970, 1969, 1970, 1969 ], "bg": 2970, "rotates": true }, - { "id": [ "park_7" ], "fg": [ 1972, 1971, 1973, 1974 ], "bg": 2970, "rotates": true }, - { "id": [ "playground" ], "fg": [ 1992, 1991, 1993, 1994 ], "bg": 2970, "rotates": true }, - { "id": [ "playground_1" ], "fg": [ 1988, 1987, 1989, 1990 ], "bg": 2970, "rotates": true }, - { "id": [ "PublicPond_1a" ], "fg": [ 2005, 2004, 2006, 2007 ], "bg": 2971, "rotates": true }, - { "id": [ "PublicPond_1b" ], "fg": [ 2009, 2008, 2010, 2011 ], "bg": 2971, "rotates": true }, - { "id": [ "BotanicalGarden_1a" ], "fg": [ 2013, 2012, 2014, 2015 ], "bg": 2970, "rotates": true }, - { "id": [ "BotanicalGarden_1a_roof" ], "fg": [ 2017, 2016, 2018, 2019 ], "bg": 2973, "rotates": true }, - { "id": [ "BotanicalGarden_1b" ], "fg": [ 2021, 2020, 2022, 2023 ], "bg": 2970, "rotates": true }, - { "id": [ "BotanicalGarden_1b_roof" ], "fg": [ 2025, 2024, 2026, 2027 ], "bg": 2973, "rotates": true }, - { "id": [ "pavilion" ], "fg": [ 2029, 2028, 2030, 2031 ], "bg": 2970, "rotates": true }, - { "id": [ "pavilion_roof" ], "fg": [ 2033, 2032, 2034, 2035 ], "bg": 2973, "rotates": true }, - { "id": [ "pavilion_1" ], "fg": [ 2037, 2036, 2038, 2039 ], "bg": 2970, "rotates": true }, - { "id": [ "pavilion_roof_1" ], "fg": [ 2041, 2040, 2042, 2043 ], "bg": 2973, "rotates": true }, - { "id": [ "pawn" ], "fg": [ 2045, 2044, 2046, 2047 ], "bg": 2970, "rotates": true }, - { "id": [ "pawn_roof" ], "fg": [ 2049, 2048, 2050, 2051 ], "bg": 2973, "rotates": true }, - { "id": [ "pawn_1" ], "fg": [ 2053, 2052, 2054, 2055 ], "bg": 2970, "rotates": true }, - { "id": [ "pawn_roof_1" ], "fg": [ 2057, 2056, 2058, 2059 ], "bg": 2973, "rotates": true }, - { "id": [ "pawn_pf" ], "fg": [ 2061, 2060, 2062, 2063 ], "bg": 2970, "rotates": true }, - { "id": [ "pawn_pf_roof" ], "fg": [ 2065, 2064, 2066, 2067 ], "bg": 2973, "rotates": true }, - { "id": [ "pawn_pf_under" ], "fg": [ 2069, 2068, 2070, 2071 ], "bg": 2974, "rotates": true }, - { "id": [ "s_pharm" ], "fg": [ 2073, 2072, 2074, 2075 ], "rotates": true }, - { "id": [ "s_pharm_roof" ], "fg": [ 2077, 2076, 2078, 2079 ], "bg": 2973, "rotates": true }, - { "id": [ "s_pharm_1" ], "fg": [ 2081, 2080, 2082, 2083 ], "rotates": true }, - { "id": [ "s_pharm_roof_1" ], "fg": [ 2085, 2084, 2086, 2087 ], "bg": 2973, "rotates": true }, - { "id": [ "police" ], "fg": [ 2089, 2088, 2090, 2091 ], "bg": 2970, "rotates": true }, - { "id": [ "police_roof" ], "fg": [ 2093, 2092, 2094, 2095 ], "bg": 2973, "rotates": true }, - { "id": [ "police_1" ], "fg": [ 2097, 2096, 2098, 2099 ], "bg": 2970, "rotates": true }, - { "id": [ "police_2ndfloor_1" ], "fg": [ 2101, 2100, 2102, 2103 ], "bg": 2973, "rotates": true }, - { "id": [ "police_roof_1" ], "fg": [ 2105, 2104, 2106, 2107 ], "bg": 2973, "rotates": true }, - { "id": [ "police_2" ], "fg": [ 2109, 2108, 2110, 2111 ], "bg": 2970, "rotates": true }, - { "id": [ "police_roof_2" ], "fg": [ 2113, 2112, 2114, 2115 ], "bg": 2973, "rotates": true }, - { "id": [ "police_2ndfloor_2" ], "fg": [ 2117, 2116, 2118, 2119 ], "bg": 2973, "rotates": true }, - { "id": [ "pond_field" ], "fg": [ 2125, 2124, 2126, 2127 ], "bg": 2970, "rotates": true }, - { "id": [ "pond_forest" ], "fg": [ 2125, 2124, 2126, 2127 ], "bg": 2971, "rotates": true }, - { "id": [ "pond_swamp" ], "fg": [ 2125, 2124, 2126, 2127 ], "bg": 2976, "rotates": true }, - { "id": [ "hot_springs" ], "fg": [ 2121, 2120, 2122, 2123 ], "bg": 2970, "rotates": true }, - { "id": [ "pool" ], "fg": [ 2129, 2128, 2130, 2131 ], "bg": 2970, "rotates": true }, - { "id": [ "pool_roof" ], "fg": [ 2133, 2132, 2134, 2135 ], "bg": 2973, "rotates": true }, - { "id": [ "pool_1" ], "fg": [ 2137, 2136, 2138, 2139 ], "bg": 2970, "rotates": true }, - { "id": [ "pool_roof_1" ], "fg": [ 2141, 2140, 2142, 2143 ], "bg": 2973, "rotates": true }, - { "id": [ "pool_2" ], "fg": [ 2145, 2144, 2146, 2147 ], "bg": 2970, "rotates": true }, - { "id": [ "pool_roof_2" ], "fg": [ 2149, 2148, 2150, 2151 ], "bg": 2973, "rotates": true }, - { "id": [ "pool_3" ], "fg": [ 2153, 2152, 2154, 2155 ], "bg": 2970, "rotates": true }, - { "id": [ "pool_roof_3" ], "fg": [ 2157, 2156, 2158, 2159 ], "bg": 2973, "rotates": true }, - { "id": [ "pool_4" ], "fg": [ 2161, 2160, 2162, 2163 ], "bg": 2970, "rotates": true }, - { "id": [ "pool_roof_4" ], "fg": [ 2165, 2164, 2166, 2167 ], "bg": 2973, "rotates": true }, - { "id": [ "pool_5" ], "fg": [ 2169, 2168, 2170, 2171 ], "bg": 2970, "rotates": true }, - { "id": [ "pool_6" ], "fg": [ 2173, 2172, 2174, 2175 ], "bg": 2970, "rotates": true }, - { "id": [ "post_office" ], "fg": [ 2177, 2176, 2178, 2179 ], "bg": 2970, "rotates": true }, - { "id": [ "post_office_roof" ], "fg": [ 2181, 2180, 2182, 2183 ], "bg": 2973, "rotates": true }, - { "id": [ "post_office_1" ], "fg": [ 2185, 2184, 2186, 2187 ], "bg": 2970, "rotates": true }, - { "id": [ "post_office_roof_1" ], "fg": [ 2189, 2188, 2190, 2191 ], "bg": 2973, "rotates": true }, - { "id": [ "craft_shop_2" ], "fg": [ 2193, 2192, 2194, 2195 ], "bg": 2970, "rotates": true }, - { "id": [ "craft_shop_2ndfloor_2" ], "fg": [ 2197, 2196, 2198, 2199 ], "bg": 2973, "rotates": true }, - { "id": [ "craft_shop_roof_2" ], "fg": [ 2201, 2200, 2202, 2203 ], "bg": 2973, "rotates": true }, - { "id": [ "publicgarden" ], "fg": 2204, "bg": 2970, "rotates": true }, - { "id": [ "recyclecenter" ], "fg": [ 2206, 2205, 2207, 2208 ], "bg": 2970, "rotates": true }, - { "id": [ "recyclecenter_roof" ], "fg": [ 2210, 2209, 2211, 2212 ], "bg": 2973, "rotates": true }, - { "id": [ "recyclecenter_1" ], "fg": [ 2214, 2213, 2215, 2216 ], "bg": 2970, "rotates": true }, - { "id": [ "recyclecenter_roof_1" ], "fg": [ 2218, 2217, 2219, 2220 ], "bg": 2973, "rotates": true }, - { "id": [ "recyclecenter_2" ], "fg": [ 2222, 2221, 2223, 2224 ], "bg": 2970, "rotates": true }, - { "id": [ "recyclecenter_roof_2" ], "fg": [ 2226, 2225, 2227, 2228 ], "bg": 2973, "rotates": true }, - { "id": "road_nesw_manhole", "fg": 2240, "bg": 2229 }, + { "id": [ "house_10" ], "fg": [ 831, 830, 832, 833 ], "bg": 3282, "rotates": true }, + { "id": [ "house_10_roof" ], "fg": [ 839, 838, 840, 841 ], "bg": 3285, "rotates": true }, + { "id": [ "house_10_basement" ], "fg": [ 835, 834, 836, 837 ], "bg": 3286, "rotates": true }, + { "id": [ "house_11" ], "fg": [ 843, 842, 844, 845 ], "bg": 3282, "rotates": true }, + { "id": [ "house_11_roof" ], "fg": [ 851, 850, 852, 853 ], "bg": 3285, "rotates": true }, + { "id": [ "house_11_basement" ], "fg": [ 847, 846, 848, 849 ], "bg": 3286, "rotates": true }, + { "id": [ "house_12" ], "fg": [ 855, 854, 856, 857 ], "bg": 3282, "rotates": true }, + { "id": [ "house_12_roof" ], "fg": [ 863, 862, 864, 865 ], "bg": 3285, "rotates": true }, + { "id": [ "house_12_basement" ], "fg": [ 859, 858, 860, 861 ], "bg": 3286, "rotates": true }, + { "id": [ "house_dogs" ], "fg": [ 1332, 1331, 1333, 1334 ], "bg": 3282, "rotates": true }, + { "id": [ "house_dogs_roof" ], "fg": [ 1336, 1335, 1337, 1338 ], "bg": 3285, "rotates": true }, + { "id": [ "2storyModern01_first" ], "fg": [ 707, 706, 708, 709 ], "bg": 3282, "rotates": true }, + { "id": [ "2storyModern01_second" ], "fg": [ 714, 719, 720, 721 ], "bg": 3285, "rotates": true }, + { "id": [ "2storyModern01_roof" ], "fg": [ 711, 710, 712, 713 ], "bg": 3285, "rotates": true }, + { "id": [ "2storyModern01_basement" ], "fg": [ 716, 715, 717, 718 ], "bg": 3286, "rotates": true }, + { "id": [ "duplex" ], "fg": [ 723, 722, 724, 725 ], "bg": 3282, "rotates": true }, + { "id": [ "duplex_roof" ], "fg": [ 727, 726, 728, 729 ], "bg": 3285, "rotates": true }, + { "id": [ "garden_house_1_floor_1" ], "fg": [ 735, 734, 736, 737 ], "bg": 3282, "rotates": true }, + { "id": [ "garden_house_1_floor_2" ], "fg": [ 739, 738, 740, 741 ], "bg": 3285, "rotates": true }, + { "id": [ "garden_house_1_basement" ], "fg": [ 731, 730, 732, 733 ], "bg": 3286, "rotates": true }, + { "id": [ "garden_house_1_roof" ], "fg": [ 743, 742, 744, 745 ], "bg": 3285, "rotates": true }, + { "id": [ "house_13" ], "fg": [ 867, 866, 868, 869 ], "bg": 3282, "rotates": true }, + { "id": [ "house_13_roof" ], "fg": [ 875, 874, 876, 877 ], "bg": 3285, "rotates": true }, + { "id": [ "house_13_basement" ], "fg": [ 871, 870, 872, 873 ], "bg": 3286, "rotates": true }, + { "id": [ "house_14" ], "fg": [ 879, 878, 880, 881 ], "bg": 3282, "rotates": true }, + { "id": [ "house_14_roof" ], "fg": [ 887, 886, 888, 889 ], "bg": 3285, "rotates": true }, + { "id": [ "house_14_basement" ], "fg": [ 883, 882, 884, 885 ], "bg": 3286, "rotates": true }, + { "id": [ "house_15" ], "fg": [ 891, 890, 892, 893 ], "bg": 3282, "rotates": true }, + { "id": [ "house_15_roof" ], "fg": [ 899, 898, 900, 901 ], "bg": 3285, "rotates": true }, + { "id": [ "house_15_basement" ], "fg": [ 895, 894, 896, 897 ], "bg": 3286, "rotates": true }, + { "id": [ "house_16" ], "fg": [ 903, 902, 904, 905 ], "bg": 3282, "rotates": true }, + { "id": [ "house_16_roof" ], "fg": [ 911, 910, 912, 913 ], "bg": 3285, "rotates": true }, + { "id": [ "house_16_basement" ], "fg": [ 907, 906, 908, 909 ], "bg": 3286, "rotates": true }, + { "id": [ "house_17" ], "fg": [ 915, 914, 916, 917 ], "bg": 3282, "rotates": true }, + { "id": [ "house_17_roof" ], "fg": [ 923, 922, 924, 925 ], "bg": 3285, "rotates": true }, + { "id": [ "house_17_basement" ], "fg": [ 919, 918, 920, 921 ], "bg": 3286, "rotates": true }, + { "id": [ "house_18" ], "fg": [ 927, 926, 928, 929 ], "bg": 3282, "rotates": true }, + { "id": [ "house_18_roof" ], "fg": [ 931, 930, 932, 933 ], "bg": 3285, "rotates": true }, + { "id": [ "house_19" ], "fg": [ 935, 934, 936, 937 ], "bg": 3282, "rotates": true }, + { "id": [ "house_19_roof" ], "fg": [ 943, 942, 944, 945 ], "bg": 3285, "rotates": true }, + { "id": [ "house_19_basement" ], "fg": [ 939, 938, 940, 941 ], "bg": 3286, "rotates": true }, + { "id": [ "house_20" ], "fg": [ 947, 946, 948, 949 ], "bg": 3282, "rotates": true }, + { "id": [ "house_20_roof" ], "fg": [ 951, 950, 952, 953 ], "bg": 3285, "rotates": true }, + { "id": [ "house_21" ], "fg": [ 955, 954, 956, 957 ], "bg": 3282, "rotates": true }, + { "id": [ "house_21_roof" ], "fg": [ 959, 958, 960, 961 ], "bg": 3285, "rotates": true }, + { "id": [ "house_22" ], "fg": [ 963, 962, 964, 965 ], "bg": 3282, "rotates": true }, + { "id": [ "house_22_roof" ], "fg": [ 971, 970, 972, 973 ], "bg": 3285, "rotates": true }, + { "id": [ "house_22_basement" ], "fg": [ 967, 966, 968, 969 ], "bg": 3286, "rotates": true }, + { "id": [ "house_23" ], "fg": [ 975, 974, 976, 977 ], "bg": 3282, "rotates": true }, + { "id": [ "house_23_roof" ], "fg": [ 979, 978, 980, 981 ], "bg": 3285, "rotates": true }, + { "id": [ "house_24" ], "fg": [ 983, 982, 984, 985 ], "bg": 3282, "rotates": true }, + { "id": [ "house_24_roof" ], "fg": [ 987, 986, 988, 989 ], "bg": 3285, "rotates": true }, + { "id": [ "house_25" ], "fg": [ 991, 990, 992, 993 ], "bg": 3282, "rotates": true }, + { "id": [ "house_25_roof" ], "fg": [ 995, 994, 996, 997 ], "bg": 3285, "rotates": true }, + { "id": [ "house_26" ], "fg": [ 999, 998, 1000, 1001 ], "bg": 3282, "rotates": true }, + { "id": [ "house_26_roof" ], "fg": [ 1007, 1006, 1008, 1009 ], "bg": 3285, "rotates": true }, + { "id": [ "basement_survival" ], "fg": [ 1003, 1002, 1004, 1005 ], "bg": 3286, "rotates": true }, + { "id": [ "house_27" ], "fg": [ 1011, 1010, 1012, 1013 ], "bg": 3282, "rotates": true }, + { "id": [ "house_27_roof" ], "fg": [ 1019, 1018, 1020, 1021 ], "bg": 3285, "rotates": true }, + { "id": [ "basement_meth" ], "fg": [ 1015, 1014, 1016, 1017 ], "bg": 3286, "rotates": true }, + { "id": [ "house_28" ], "fg": [ 1023, 1022, 1024, 1025 ], "bg": 3282, "rotates": true }, + { "id": [ "house_28_roof" ], "fg": [ 1031, 1030, 1032, 1033 ], "bg": 3285, "rotates": true }, + { "id": [ "basement_weed" ], "fg": [ 1027, 1026, 1028, 1029 ], "bg": 3286, "rotates": true }, + { "id": [ "house_29" ], "fg": [ 1035, 1034, 1036, 1037 ], "bg": 3282, "rotates": true }, + { "id": [ "house_29_roof" ], "fg": [ 1043, 1042, 1044, 1045 ], "bg": 3285, "rotates": true }, + { "id": [ "basement_chem" ], "fg": [ 1039, 1038, 1040, 1041 ], "bg": 3286, "rotates": true }, + { "id": [ "house_2story_base" ], "fg": [ 1047, 1046, 1048, 1049 ], "bg": 3282, "rotates": true }, + { "id": [ "house_2story_second" ], "fg": [ 1059, 1058, 1060, 1061 ], "bg": 3285, "rotates": true }, + { "id": [ "house_2story_basement" ], "fg": [ 1051, 1050, 1052, 1053 ], "bg": 3286, "rotates": true }, + { "id": [ "house_2story_roof" ], "fg": [ 1055, 1054, 1056, 1057 ], "bg": 3285, "rotates": true }, + { "id": [ "house_30" ], "fg": [ 1063, 1062, 1064, 1065 ], "bg": 3282, "rotates": true }, + { "id": [ "house_30_roof" ], "fg": [ 1071, 1070, 1072, 1073 ], "bg": 3285, "rotates": true }, + { "id": [ "basement_chem2" ], "fg": [ 1067, 1066, 1068, 1069 ], "bg": 3286, "rotates": true }, + { "id": [ "house_31" ], "fg": [ 1076, 1075, 1077, 1078 ], "bg": 3282, "rotates": true }, + { "id": [ "house_31_roof" ], "fg": [ 1080, 1079, 1081, 1082 ], "bg": 3285, "rotates": true }, + { "id": [ "basement" ], "fg": 1074, "bg": 3286, "rotates": true }, + { "id": [ "house_32" ], "fg": [ 1084, 1083, 1085, 1086 ], "bg": 3282, "rotates": true }, + { "id": [ "house_32_roof" ], "fg": [ 1088, 1087, 1089, 1090 ], "bg": 3285, "rotates": true }, + { "id": [ "house_33" ], "fg": [ 1092, 1091, 1093, 1094 ], "bg": 3282, "rotates": true }, + { "id": [ "house_33_roof" ], "fg": [ 1100, 1099, 1101, 1102 ], "bg": 3285, "rotates": true }, + { "id": [ "house_33_basement" ], "fg": [ 1096, 1095, 1097, 1098 ], "bg": 3286, "rotates": true }, + { "id": [ "house_34" ], "fg": [ 1104, 1103, 1105, 1106 ], "bg": 3282, "rotates": true }, + { "id": [ "house_34_roof" ], "fg": [ 1112, 1111, 1113, 1114 ], "bg": 3285, "rotates": true }, + { "id": [ "house_34_basement" ], "fg": [ 1108, 1107, 1109, 1110 ], "bg": 3286, "rotates": true }, + { "id": [ "house_35" ], "fg": [ 1116, 1115, 1117, 1118 ], "bg": 3282, "rotates": true }, + { "id": [ "house_35_roof" ], "fg": [ 1120, 1119, 1121, 1122 ], "bg": 3285, "rotates": true }, + { "id": [ "house_36" ], "fg": [ 1124, 1123, 1125, 1126 ], "bg": 3282, "rotates": true }, + { "id": [ "house_36_roof" ], "fg": [ 1132, 1131, 1133, 1134 ], "bg": 3285, "rotates": true }, + { "id": [ "house_36_basement" ], "fg": [ 1128, 1127, 1129, 1130 ], "bg": 3286, "rotates": true }, + { "id": [ "house_37" ], "fg": [ 1136, 1135, 1137, 1138 ], "bg": 3282, "rotates": true }, + { "id": [ "house_37_roof" ], "fg": [ 1144, 1143, 1145, 1146 ], "bg": 3285, "rotates": true }, + { "id": [ "house_37_basement" ], "fg": [ 1140, 1139, 1141, 1142 ], "bg": 3286, "rotates": true }, + { "id": [ "house_38" ], "fg": [ 1148, 1147, 1149, 1150 ], "bg": 3282, "rotates": true }, + { "id": [ "house_38_roof" ], "fg": [ 1152, 1151, 1153, 1154 ], "bg": 3285, "rotates": true }, + { "id": [ "house_39" ], "fg": [ 1156, 1155, 1157, 1158 ], "bg": 3282, "rotates": true }, + { "id": [ "house_39_roof" ], "fg": [ 1164, 1163, 1165, 1166 ], "bg": 3285, "rotates": true }, + { "id": [ "house_39_basement" ], "fg": [ 1160, 1159, 1161, 1162 ], "bg": 3286, "rotates": true }, + { "id": [ "house_40" ], "fg": [ 1168, 1167, 1169, 1170 ], "bg": 3282, "rotates": true }, + { "id": [ "house_40_roof" ], "fg": [ 1172, 1171, 1173, 1174 ], "bg": 3285, "rotates": true }, + { "id": [ "house_41" ], "fg": [ 1176, 1175, 1177, 1178 ], "bg": 3282, "rotates": true }, + { "id": [ "house_41_roof" ], "fg": [ 1180, 1179, 1181, 1182 ], "bg": 3285, "rotates": true }, + { "id": [ "house_42" ], "fg": [ 1184, 1183, 1185, 1186 ], "bg": 3282, "rotates": true }, + { "id": [ "house_42_roof" ], "fg": [ 1188, 1187, 1189, 1190 ], "bg": 3285, "rotates": true }, + { "id": [ "house_crack1", "house_crack2" ], "fg": [ 1196, 1195, 1197, 1198 ], "bg": 3282, "rotates": true }, + { "id": [ "house_crack1_roof" ], "fg": [ 1200, 1199, 1201, 1202 ], "bg": 3285, "rotates": true }, + { "id": [ "basement_messed" ], "fg": [ 1192, 1191, 1193, 1194 ], "bg": 3286, "rotates": true }, + { "id": [ "house_crack3" ], "fg": [ 1204, 1203, 1205, 1206 ], "bg": 3282, "rotates": true }, + { "id": [ "house_crack3_roof" ], "fg": [ 1212, 1211, 1213, 1214 ], "bg": 3285, "rotates": true }, + { "id": [ "house_crack3_basement" ], "fg": [ 1208, 1207, 1209, 1210 ], "bg": 3286, "rotates": true }, + { "id": [ "house_detatched1" ], "fg": [ 1216, 1215, 1217, 1218 ], "bg": 3282, "rotates": true }, + { "id": [ "house_detatched1_roof" ], "fg": [ 1224, 1223, 1225, 1226 ], "bg": 3285, "rotates": true }, + { "id": [ "house_detatched1_basement" ], "fg": [ 1220, 1219, 1221, 1222 ], "bg": 3286, "rotates": true }, + { "id": [ "house_detatched10" ], "fg": [ 1228, 1227, 1229, 1230 ], "bg": 3282, "rotates": true }, + { "id": [ "house_detatched10_roof" ], "fg": [ 1232, 1231, 1233, 1234 ], "bg": 3285, "rotates": true }, + { "id": [ "house_detatched2" ], "fg": [ 1236, 1235, 1237, 1238 ], "bg": 3282, "rotates": true }, + { "id": [ "house_detatched2_roof" ], "fg": [ 1244, 1243, 1245, 1246 ], "bg": 3285, "rotates": true }, + { "id": [ "house_detatched2_basement" ], "fg": [ 1240, 1239, 1241, 1242 ], "bg": 3286, "rotates": true }, + { "id": [ "house_detatched3" ], "fg": [ 1248, 1247, 1249, 1250 ], "bg": 3282, "rotates": true }, + { "id": [ "house_detatched3_roof" ], "fg": [ 1256, 1255, 1257, 1258 ], "bg": 3285, "rotates": true }, + { "id": [ "house_detatched3_basement" ], "fg": [ 1252, 1251, 1253, 1254 ], "bg": 3286, "rotates": true }, + { "id": [ "house_detatched4" ], "fg": [ 1260, 1259, 1261, 1262 ], "bg": 3282, "rotates": true }, + { "id": [ "house_detatched4_roof" ], "fg": [ 1268, 1267, 1269, 1270 ], "bg": 3285, "rotates": true }, + { "id": [ "house_detatched4_basement" ], "fg": [ 1264, 1263, 1265, 1266 ], "bg": 3286, "rotates": true }, + { "id": [ "house_detatched5" ], "fg": [ 1272, 1271, 1273, 1274 ], "bg": 3282, "rotates": true }, + { "id": [ "house_detatched5_roof" ], "fg": [ 1280, 1279, 1281, 1282 ], "bg": 3285, "rotates": true }, + { "id": [ "house_detatched5_basement" ], "fg": [ 1276, 1275, 1277, 1278 ], "bg": 3286, "rotates": true }, + { "id": [ "house_detatched6" ], "fg": [ 1284, 1283, 1285, 1286 ], "bg": 3282, "rotates": true }, + { "id": [ "house_detatched6_roof" ], "fg": [ 1292, 1291, 1293, 1294 ], "bg": 3285, "rotates": true }, + { "id": [ "house_detatched6_basement" ], "fg": [ 1288, 1287, 1289, 1290 ], "bg": 3286, "rotates": true }, + { "id": [ "house_detatched7" ], "fg": [ 1296, 1295, 1297, 1298 ], "bg": 3282, "rotates": true }, + { "id": [ "house_detatched7_roof" ], "fg": [ 1304, 1303, 1305, 1306 ], "bg": 3285, "rotates": true }, + { "id": [ "house_detatched7_basement" ], "fg": [ 1300, 1299, 1301, 1302 ], "bg": 3286, "rotates": true }, + { "id": [ "house_detatched8" ], "fg": [ 1308, 1307, 1309, 1310 ], "bg": 3282, "rotates": true }, + { "id": [ "house_detatched8_roof" ], "fg": [ 1316, 1315, 1317, 1318 ], "bg": 3285, "rotates": true }, + { "id": [ "house_detatched8_basement" ], "fg": [ 1312, 1311, 1313, 1314 ], "bg": 3286, "rotates": true }, + { "id": [ "house_detatched9" ], "fg": [ 1320, 1319, 1321, 1322 ], "bg": 3282, "rotates": true }, + { "id": [ "house_detatched9_roof" ], "fg": [ 1328, 1327, 1329, 1330 ], "bg": 3285, "rotates": true }, + { "id": [ "house_detatched9_basement" ], "fg": [ 1324, 1323, 1325, 1326 ], "bg": 3286, "rotates": true }, + { "id": [ "house_duplex10" ], "fg": [ 1340, 1339, 1341, 1342 ], "bg": 3282, "rotates": true }, + { "id": [ "house_duplex10_roof" ], "fg": [ 1344, 1343, 1345, 1346 ], "bg": 3285, "rotates": true }, + { "id": [ "house_duplex11" ], "fg": [ 1348, 1347, 1349, 1350 ], "bg": 3282, "rotates": true }, + { "id": [ "house_duplex11_roof" ], "fg": [ 1352, 1351, 1353, 1354 ], "bg": 3285, "rotates": true }, + { "id": [ "house_duplex2" ], "fg": [ 1356, 1355, 1357, 1358 ], "bg": 3282, "rotates": true }, + { "id": [ "house_duplex2_roof" ], "fg": [ 1360, 1359, 1361, 1362 ], "bg": 3285, "rotates": true }, + { "id": [ "house_duplex3" ], "fg": [ 1364, 1363, 1365, 1366 ], "bg": 3282, "rotates": true }, + { "id": [ "house_duplex3_roof" ], "fg": [ 1368, 1367, 1369, 1370 ], "bg": 3285, "rotates": true }, + { "id": [ "house_duplex4" ], "fg": [ 1372, 1371, 1373, 1374 ], "bg": 3282, "rotates": true }, + { "id": [ "house_duplex4_roof" ], "fg": [ 1376, 1375, 1377, 1378 ], "bg": 3285, "rotates": true }, + { "id": [ "house_duplex5" ], "fg": [ 1380, 1379, 1381, 1382 ], "bg": 3282, "rotates": true }, + { "id": [ "house_duplex5_roof" ], "fg": [ 1384, 1383, 1385, 1386 ], "bg": 3285, "rotates": true }, + { "id": [ "house_duplex6" ], "fg": [ 1388, 1387, 1389, 1390 ], "bg": 3282, "rotates": true }, + { "id": [ "house_duplex6_roof" ], "fg": [ 1392, 1391, 1393, 1394 ], "bg": 3285, "rotates": true }, + { "id": [ "house_duplex7" ], "fg": [ 1396, 1395, 1397, 1398 ], "bg": 3282, "rotates": true }, + { "id": [ "house_duplex7_roof" ], "fg": [ 1400, 1399, 1401, 1402 ], "bg": 3285, "rotates": true }, + { "id": [ "house_duplex8" ], "fg": [ 1404, 1403, 1405, 1406 ], "bg": 3282, "rotates": true }, + { "id": [ "house_duplex8_roof" ], "fg": [ 1408, 1407, 1409, 1410 ], "bg": 3285, "rotates": true }, + { "id": [ "house_duplex9" ], "fg": [ 1412, 1411, 1413, 1414 ], "bg": 3282, "rotates": true }, + { "id": [ "house_duplex9_roof" ], "fg": [ 1416, 1415, 1417, 1418 ], "bg": 3285, "rotates": true }, + { "id": [ "house_fortified" ], "fg": [ 1420, 1419, 1421, 1422 ], "bg": 3282, "rotates": true }, + { "id": [ "house_fortified_roof" ], "fg": [ 1428, 1427, 1429, 1430 ], "bg": 3285, "rotates": true }, + { "id": [ "house_fortified_basement" ], "fg": [ 1424, 1423, 1425, 1426 ], "bg": 3286, "rotates": true }, + { "id": [ "house_garage" ], "fg": [ 1432, 1431, 1433, 1434 ], "bg": 3282, "rotates": true }, + { "id": [ "house_garage_roof" ], "fg": [ 1440, 1439, 1441, 1442 ], "bg": 3285, "rotates": true }, + { "id": [ "house_garage_basement" ], "fg": [ 1436, 1435, 1437, 1438 ], "bg": 3286, "rotates": true }, + { "id": [ "house_garage2" ], "fg": [ 1444, 1443, 1445, 1446 ], "bg": 3282, "rotates": true }, + { "id": [ "house_garage2_roof" ], "fg": [ 1452, 1451, 1453, 1454 ], "bg": 3285, "rotates": true }, + { "id": [ "house_garage2_basement" ], "fg": [ 1448, 1447, 1449, 1450 ], "bg": 3286, "rotates": true }, + { "id": [ "house_garage3" ], "fg": [ 1456, 1455, 1457, 1458 ], "bg": 3282, "rotates": true }, + { "id": [ "house_garage3_roof" ], "fg": [ 1464, 1463, 1465, 1466 ], "bg": 3285, "rotates": true }, + { "id": [ "house_garage3_basement" ], "fg": [ 1460, 1459, 1461, 1462 ], "bg": 3286, "rotates": true }, + { "id": [ "house_garage4" ], "fg": [ 1468, 1467, 1469, 1470 ], "bg": 3282, "rotates": true }, + { "id": [ "house_garage4_roof" ], "fg": [ 1476, 1475, 1477, 1478 ], "bg": 3285, "rotates": true }, + { "id": [ "house_garage4_basement" ], "fg": [ 1472, 1471, 1473, 1474 ], "bg": 3286, "rotates": true }, + { "id": [ "house_garage5" ], "fg": [ 1480, 1479, 1481, 1482 ], "bg": 3282, "rotates": true }, + { "id": [ "house_garage5_roof" ], "fg": [ 1488, 1487, 1489, 1490 ], "bg": 3285, "rotates": true }, + { "id": [ "house_garage5_basement" ], "fg": [ 1484, 1483, 1485, 1486 ], "bg": 3286, "rotates": true }, + { "id": [ "house_garage6" ], "fg": [ 1492, 1491, 1493, 1494 ], "bg": 3282, "rotates": true }, + { "id": [ "house_garage6_roof" ], "fg": [ 1500, 1499, 1501, 1502 ], "bg": 3285, "rotates": true }, + { "id": [ "house_garage6_basement" ], "fg": [ 1496, 1495, 1497, 1498 ], "bg": 3286, "rotates": true }, + { "id": [ "house_garage7" ], "fg": [ 1504, 1503, 1505, 1506 ], "bg": 3282, "rotates": true }, + { "id": [ "house_garage7_roof" ], "fg": [ 1512, 1511, 1513, 1514 ], "bg": 3285, "rotates": true }, + { "id": [ "house_garage7_basement" ], "fg": [ 1508, 1507, 1509, 1510 ], "bg": 3286, "rotates": true }, + { "id": [ "house_garage8" ], "fg": [ 1516, 1515, 1517, 1518 ], "bg": 3282, "rotates": true }, + { "id": [ "house_garage8_roof" ], "fg": [ 1524, 1523, 1525, 1526 ], "bg": 3285, "rotates": true }, + { "id": [ "house_garage8_basement" ], "fg": [ 1520, 1519, 1521, 1522 ], "bg": 3286, "rotates": true }, + { "id": [ "house_gardener" ], "fg": [ 1528, 1527, 1529, 1530 ], "bg": 3282, "rotates": true }, + { "id": [ "house_gardener_roof" ], "fg": [ 1536, 1535, 1537, 1538 ], "bg": 3285, "rotates": true }, + { "id": [ "house_gardener_basement" ], "fg": [ 1532, 1531, 1533, 1534 ], "bg": 3286, "rotates": true }, + { "id": [ "house_inner_garden" ], "fg": [ 1540, 1539, 1541, 1542 ], "bg": 3282, "rotates": true }, + { "id": [ "house_inner_garden_roof" ], "fg": [ 1544, 1543, 1545, 1546 ], "bg": 3285, "rotates": true }, + { "id": [ "house_library" ], "fg": [ 1548, 1547, 1549, 1550 ], "bg": 3282, "rotates": true }, + { "id": [ "house_modern_1" ], "fg": [ 1552, 1551, 1553, 1554 ], "bg": 3282, "rotates": true }, + { "id": [ "house_modern_1_roof" ], "fg": [ 1560, 1559, 1561, 1562 ], "bg": 3285, "rotates": true }, + { "id": [ "house_modern_1_basement" ], "fg": [ 1556, 1555, 1557, 1558 ], "bg": 3286, "rotates": true }, + { "id": [ "house_patio" ], "fg": [ 1564, 1563, 1565, 1566 ], "bg": 3282, "rotates": true }, + { "id": [ "house_patio_roof" ], "fg": [ 1572, 1571, 1573, 1574 ], "bg": 3285, "rotates": true }, + { "id": [ "house_patio_basement" ], "fg": [ 1568, 1567, 1569, 1570 ], "bg": 3286, "rotates": true }, + { "id": [ "house_porch" ], "fg": [ 1576, 1575, 1577, 1578 ], "bg": 3282, "rotates": true }, + { "id": [ "house_porch_roof" ], "fg": [ 1584, 1583, 1585, 1586 ], "bg": 3285, "rotates": true }, + { "id": [ "house_porch_basement" ], "fg": [ 1580, 1579, 1581, 1582 ], "bg": 3286, "rotates": true }, + { "id": [ "house_prepper" ], "fg": [ 1588, 1587, 1589, 1590 ], "bg": 3282, "rotates": true }, + { "id": [ "house_prepper_basement" ], "fg": [ 1592, 1591, 1593, 1594 ], "bg": 3286, "rotates": true }, + { "id": [ "house_prepper2" ], "fg": [ 1596, 1595, 1597, 1598 ], "bg": 3282, "rotates": true }, + { "id": [ "house_prepper2_roof" ], "fg": [ 1604, 1603, 1605, 1606 ], "bg": 3285, "rotates": true }, + { "id": [ "house_prepper2_basement" ], "fg": [ 1600, 1599, 1601, 1602 ], "bg": 3286, "rotates": true }, + { "id": [ "house_quiverfull" ], "fg": [ 1608, 1607, 1609, 1610 ], "bg": 3282, "rotates": true }, + { "id": [ "house_rv" ], "fg": [ 1612, 1611, 1613, 1614 ], "bg": 3282, "rotates": true }, + { "id": [ "house_rv_roof" ], "fg": [ 1620, 1619, 1621, 1622 ], "bg": 3285, "rotates": true }, + { "id": [ "house_rv_basement" ], "fg": [ 1616, 1615, 1617, 1618 ], "bg": 3286, "rotates": true }, + { "id": [ "house_suicide" ], "fg": [ 1624, 1623, 1625, 1626 ], "bg": 3282, "rotates": true }, + { "id": [ "house_suicide_roof" ], "fg": [ 1628, 1627, 1629, 1630 ], "bg": 3285, "rotates": true }, + { "id": [ "house_toolshed" ], "fg": [ 1632, 1631, 1633, 1634 ], "bg": 3282, "rotates": true }, + { "id": [ "house_toolshed_roof" ], "fg": [ 1640, 1639, 1641, 1642 ], "bg": 3285, "rotates": true }, + { "id": [ "house_toolshed_basement" ], "fg": [ 1636, 1635, 1637, 1638 ], "bg": 3286, "rotates": true }, + { "id": [ "urban_10_1" ], "fg": [ 1644, 1643, 1645, 1646 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_10_2" ], "fg": [ 1648, 1647, 1649, 1650 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_10_3" ], "fg": [ 1652, 1651, 1653, 1654 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_10_4" ], "fg": [ 1656, 1655, 1657, 1658 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_10_5" ], "fg": [ 1660, 1659, 1661, 1662 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_10_6" ], "fg": [ 1664, 1663, 1665, 1666 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_10_7" ], "fg": [ 1668, 1667, 1669, 1670 ], "bg": 3286, "rotates": true }, + { "id": [ "urban_10_8" ], "fg": [ 1672, 1671, 1673, 1674 ], "bg": 3286, "rotates": true }, + { "id": [ "urban_11_1" ], "fg": [ 1676, 1675, 1677, 1678 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_11_2" ], "fg": [ 1680, 1679, 1681, 1682 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_11_3" ], "fg": [ 1684, 1683, 1685, 1686 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_11_4" ], "fg": [ 1688, 1687, 1689, 1690 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_11_5" ], "fg": [ 1692, 1691, 1693, 1694 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_11_6" ], "fg": [ 1696, 1695, 1697, 1698 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_12_1" ], "fg": [ 1700, 1699, 1701, 1702 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_12_2" ], "fg": [ 1704, 1703, 1705, 1706 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_12_3" ], "fg": [ 1708, 1707, 1709, 1710 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_12_4" ], "fg": [ 1712, 1711, 1713, 1714 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_12_5" ], "fg": [ 1716, 1715, 1717, 1718 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_12_6" ], "fg": [ 1720, 1719, 1721, 1722 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_15_1" ], "fg": [ 1724, 1723, 1725, 1726 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_15_2" ], "fg": [ 1728, 1727, 1729, 1730 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_15_3" ], "fg": [ 1732, 1731, 1733, 1734 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_15_4" ], "fg": [ 1736, 1735, 1737, 1738 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_15_5" ], "fg": [ 1740, 1739, 1741, 1742 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_15_6" ], "fg": [ 1744, 1743, 1745, 1746 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_16_1" ], "fg": [ 1748, 1747, 1749, 1750 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_16_2" ], "fg": [ 1752, 1751, 1753, 1754 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_16_3" ], "fg": [ 1756, 1755, 1757, 1758 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_16_4" ], "fg": [ 1760, 1759, 1761, 1762 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_17_1" ], "fg": [ 1764, 1763, 1765, 1766 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_17_2" ], "fg": [ 1768, 1767, 1769, 1770 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_17_3" ], "fg": [ 1772, 1771, 1773, 1774 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_17_4" ], "fg": [ 1776, 1775, 1777, 1778 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_8_1" ], "fg": [ 1780, 1779, 1781, 1782 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_8_2" ], "fg": [ 1784, 1783, 1785, 1786 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_8_3" ], "fg": [ 1788, 1787, 1789, 1790 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_8_4" ], "fg": [ 1792, 1791, 1793, 1794 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_8_6" ], "fg": [ 1796, 1795, 1797, 1798 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_9_1" ], "fg": [ 1800, 1799, 1801, 1802 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_9_2" ], "fg": [ 1804, 1803, 1805, 1806 ], "bg": 3282, "rotates": true }, + { "id": [ "urban_9_3" ], "fg": [ 1808, 1807, 1809, 1810 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_9_4" ], "fg": [ 1812, 1811, 1813, 1814 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_9_5" ], "fg": [ 1816, 1815, 1817, 1818 ], "bg": 3285, "rotates": true }, + { "id": [ "urban_9_6" ], "fg": [ 1820, 1819, 1821, 1822 ], "bg": 3285, "rotates": true }, + { "id": [ "house_vacant" ], "fg": [ 1824, 1823, 1825, 1826 ], "bg": 3282, "rotates": true }, + { "id": [ "house_vacant2" ], "fg": [ 1828, 1827, 1829, 1830 ], "bg": 3282, "rotates": true }, + { "id": [ "house_w_1" ], "fg": [ 1832, 1831, 1833, 1834 ], "bg": 3282, "rotates": true }, + { "id": [ "house_w_1_roof" ], "fg": [ 1840, 1839, 1841, 1842 ], "bg": 3285, "rotates": true }, + { "id": [ "house_w_1_basement" ], "fg": [ 1836, 1835, 1837, 1838 ], "bg": 3286, "rotates": true }, + { "id": [ "house_w_2" ], "fg": [ 1844, 1843, 1845, 1846 ], "bg": 3282, "rotates": true }, + { "id": [ "house_w_2_roof" ], "fg": [ 1852, 1851, 1853, 1854 ], "bg": 3285, "rotates": true }, + { "id": [ "house_w_2_basement" ], "fg": [ 1848, 1847, 1849, 1850 ], "bg": 3286, "rotates": true }, + { "id": [ "house_w_3" ], "fg": [ 1856, 1855, 1857, 1858 ], "bg": 3282, "rotates": true }, + { "id": [ "house_w_3_roof" ], "fg": [ 1864, 1863, 1865, 1866 ], "bg": 3285, "rotates": true }, + { "id": [ "house_w_3_basement" ], "fg": [ 1860, 1859, 1861, 1862 ], "bg": 3286, "rotates": true }, + { "id": [ "house_w_4" ], "fg": [ 1868, 1867, 1869, 1870 ], "bg": 3282, "rotates": true }, + { "id": [ "house_w_4_roof" ], "fg": [ 1876, 1875, 1877, 1878 ], "bg": 3285, "rotates": true }, + { "id": [ "house_w_4_basement" ], "fg": [ 1872, 1871, 1873, 1874 ], "bg": 3286, "rotates": true }, + { "id": [ "house_w_5" ], "fg": [ 1880, 1879, 1881, 1882 ], "bg": 3282, "rotates": true }, + { "id": [ "house_w_5_roof" ], "fg": [ 1888, 1887, 1889, 1890 ], "bg": 3285, "rotates": true }, + { "id": [ "house_w_5_basement" ], "fg": [ 1884, 1883, 1885, 1886 ], "bg": 3286, "rotates": true }, + { "id": [ "house_w_6" ], "fg": [ 1896, 1895, 1897, 1898 ], "bg": 3282, "rotates": true }, + { "id": [ "house_w_6_2ndfloor" ], "fg": [ 1892, 1891, 1893, 1894 ], "bg": 3285, "rotates": true }, + { "id": [ "house_w_6_roof" ], "fg": [ 1904, 1903, 1905, 1906 ], "bg": 3285, "rotates": true }, + { "id": [ "house_w_6_basement" ], "fg": [ 1900, 1899, 1901, 1902 ], "bg": 3286, "rotates": true }, + { "id": [ "house_wooded" ], "fg": [ 1908, 1907, 1909, 1910 ], "bg": 3282, "rotates": true }, + { "id": [ "house_roof" ], "fg": [ 1912, 1911, 1913, 1914 ], "bg": 3285, "rotates": true }, + { "id": [ "rural_house1" ], "fg": [ 1916, 1915, 1917, 1918 ], "bg": 3282, "rotates": true }, + { "id": [ "rural_house1_roof" ], "fg": [ 1920, 1919, 1921, 1922 ], "bg": 3285, "rotates": true }, + { "id": [ "rural_house2" ], "fg": [ 1924, 1923, 1925, 1926 ], "bg": 3282, "rotates": true }, + { "id": [ "rural_house2_roof" ], "fg": [ 1932, 1931, 1933, 1934 ], "bg": 3285, "rotates": true }, + { "id": [ "rural_house2_basement" ], "fg": [ 1928, 1927, 1929, 1930 ], "bg": 3286, "rotates": true }, + { "id": [ "icecream_shop" ], "fg": [ 1936, 1935, 1937, 1938 ], "rotates": true }, + { "id": [ "icecream_shop_roof" ], "fg": [ 1940, 1939, 1941, 1942 ], "bg": 3285, "rotates": true }, + { "id": [ "lancenter" ], "fg": [ 1944, 1943, 1945, 1946 ], "bg": 3282, "rotates": true }, + { "id": [ "lancenter_roof" ], "fg": [ 1948, 1947, 1949, 1950 ], "bg": 3285, "rotates": true }, + { "id": [ "lancenter_1" ], "fg": [ 1952, 1951, 1953, 1954 ], "bg": 3282, "rotates": true }, + { "id": [ "lancenter_roof_1" ], "fg": [ 1956, 1955, 1957, 1958 ], "bg": 3285, "rotates": true }, + { "id": [ "landscapingsupplyco_1a" ], "fg": [ 1960, 1959, 1961, 1962 ], "bg": 3282, "rotates": true }, + { "id": [ "landscapingsupplyco_1b" ], "fg": [ 1964, 1963, 1965, 1966 ], "bg": 3282, "rotates": true }, + { "id": [ "landscapingsupplyco_1b_roof" ], "fg": [ 1968, 1967, 1969, 1970 ], "bg": 3285, "rotates": true }, + { "id": [ "medium_storage_units_1" ], "fg": [ 1972, 1971, 1973, 1974 ], "bg": 3282, "rotates": true }, + { "id": [ "medium_storage_units_2" ], "fg": [ 1976, 1975, 1977, 1978 ], "bg": 3282, "rotates": true }, + { "id": [ "medium_storage_units_roof_1" ], "fg": [ 1980, 1979, 1981, 1982 ], "bg": 3285, "rotates": true }, + { "id": [ "medium_storage_units_roof_2" ], "fg": [ 1984, 1983, 1985, 1986 ], "bg": 3285, "rotates": true }, + { "id": [ "craft_shop_1" ], "fg": [ 1988, 1987, 1989, 1990 ], "bg": 3282, "rotates": true }, + { "id": [ "craft_shop_roof_1" ], "fg": [ 1992, 1991, 1993, 1994 ], "bg": 3285, "rotates": true }, + { "id": [ "mil_surplus" ], "fg": [ 1996, 1995, 1997, 1998 ], "bg": 3282, "rotates": true }, + { "id": [ "mil_surplus_roof" ], "fg": [ 2000, 1999, 2001, 2002 ], "bg": 3285, "rotates": true }, + { "id": [ "mil_surplus_1" ], "fg": [ 2004, 2003, 2005, 2006 ], "bg": 3282, "rotates": true }, + { "id": [ "mil_surplus_roof_1" ], "fg": [ 2008, 2007, 2009, 2010 ], "bg": 3285, "rotates": true }, + { "id": [ "mil_surplus_2" ], "fg": [ 2012, 2011, 2013, 2014 ], "bg": 3282, "rotates": true }, + { "id": [ "mil_surplus_roof_2" ], "fg": [ 2016, 2015, 2017, 2018 ], "bg": 3285, "rotates": true }, + { "id": [ "mine_entrance" ], "fg": [ 2020, 2019, 2021, 2022 ], "bg": 3282, "rotates": true }, + { "id": [ "mine_entrance_loading_zone" ], "fg": [ 2024, 2023, 2025, 2026 ], "bg": 3282, "rotates": true }, + { "id": [ "mine_entrance_roof" ], "fg": [ 2032, 2031, 2033, 2034 ], "bg": 3285, "rotates": true }, + { "id": [ "mine_entrance_loading_zone_roof" ], "fg": [ 2028, 2027, 2029, 2030 ], "bg": 3285, "rotates": true }, + { "id": "cursor", "fg": 2035, "rotates": false }, + { "id": "overmap_horde_3", "fg": 2036, "rotates": false }, + { "id": "overmap_horde_4", "fg": 2037, "rotates": false }, + { "id": "overmap_horde_5", "fg": 2038, "rotates": false }, + { "id": "overmap_horde_6", "fg": 2039, "rotates": false }, + { "id": "mission_arrow_down", "fg": 2040, "rotates": false }, + { "id": "mission_arrow_e", "fg": 2041, "rotates": false }, + { "id": "mission_arrow_n", "fg": 2042, "rotates": false }, + { "id": "mission_arrow_ne", "fg": 2043, "rotates": false }, + { "id": "mission_arrow_nw", "fg": 2044, "rotates": false }, + { "id": "mission_arrow_s", "fg": 2045, "rotates": false }, + { "id": "mission_arrow_se", "fg": 2046, "rotates": false }, + { "id": "mission_arrow_sw", "fg": 2047, "rotates": false }, + { "id": "mission_arrow_up", "fg": 2048, "rotates": false }, + { "id": "mission_arrow_w", "fg": 2049, "rotates": false }, + { "id": "mission_cursor", "fg": 2050, "rotates": false }, + { "id": "npc_female", "fg": 2051, "rotates": false }, + { "id": "npc_male", "fg": 2051, "rotates": false }, + { "id": "player_male", "fg": 2053, "rotates": false }, + { "id": "player_female", "fg": 2053, "rotates": false }, + { "id": "overmap_remembered_vehicle", "fg": 2052, "rotates": false }, + { "id": [ "unknown_map_extra" ], "fg": 2054, "rotates": true }, + { "id": [ "moonshine_still" ], "fg": [ 2056, 2055, 2057, 2058 ], "bg": 3283, "rotates": true }, + { "id": [ "moonshine_still_roof" ], "fg": [ 2060, 2059, 2061, 2062 ], "bg": 3285, "rotates": true }, + { "id": [ "moonshine_still_1" ], "fg": [ 2064, 2063, 2065, 2066 ], "bg": 3283, "rotates": true }, + { "id": [ "moonshine_still_roof_1" ], "fg": [ 2068, 2067, 2069, 2070 ], "bg": 3285, "rotates": true }, + { "id": [ "moonshine_still_2" ], "fg": [ 2072, 2071, 2073, 2074 ], "bg": 3283, "rotates": true }, + { "id": [ "moonshine_still_roof_2" ], "fg": [ 2076, 2075, 2077, 2078 ], "bg": 3285, "rotates": true }, + { "id": [ "mortuary" ], "fg": [ 2080, 2079, 2081, 2082 ], "bg": 3282, "rotates": true }, + { "id": [ "mortuary_roof" ], "fg": [ 2084, 2083, 2085, 2086 ], "bg": 3285, "rotates": true }, + { "id": [ "museum" ], "fg": [ 2088, 2087, 2089, 2090 ], "bg": 3282, "rotates": true }, + { "id": [ "museum_roof" ], "fg": [ 2092, 2091, 2093, 2094 ], "bg": 3285, "rotates": true }, + { "id": [ "music_venue" ], "fg": [ 2096, 2095, 2097, 2098 ], "bg": 3282, "rotates": true }, + { "id": [ "music_venue_roof" ], "fg": [ 2100, 2099, 2101, 2102 ], "bg": 3285, "rotates": true }, + { "id": [ "music_venue_1" ], "fg": [ 2104, 2103, 2105, 2106 ], "bg": 3282, "rotates": true }, + { "id": [ "music_venue_1_roof" ], "fg": [ 2108, 2107, 2109, 2110 ], "bg": 3285, "rotates": true }, + { "id": [ "music_venue_1_roof_top" ], "fg": [ 2112, 2111, 2113, 2114 ], "bg": 3285, "rotates": true }, + { "id": [ "NatureTrail_1a" ], "fg": [ 2116, 2115, 2117, 2118 ], "bg": 3284, "rotates": true }, + { "id": [ "NatureTrail_1b" ], "fg": [ 2120, 2119, 2121, 2122 ], "bg": 3284, "rotates": true }, + { "id": [ "office_cubical" ], "fg": [ 2124, 2123, 2125, 2126 ], "bg": 3282, "rotates": true }, + { "id": [ "office_cubical_roof" ], "fg": [ 2128, 2127, 2129, 2130 ], "bg": 3285, "rotates": true }, + { "id": [ "office_cubical_1" ], "fg": [ 2132, 2131, 2133, 2134 ], "bg": 3282, "rotates": true }, + { "id": [ "office_cubical_roof_1" ], "fg": [ 2136, 2135, 2137, 2138 ], "bg": 3285, "rotates": true }, + { "id": [ "office_doctor" ], "fg": [ 2140, 2139, 2141, 2142 ], "rotates": true }, + { "id": [ "office_doctor_roof" ], "fg": [ 2144, 2143, 2145, 2146 ], "bg": 3285, "rotates": true }, + { "id": [ "office_doctor_1" ], "fg": [ 2148, 2147, 2149, 2150 ], "rotates": true }, + { "id": [ "office_doctor_roof_1" ], "fg": [ 2152, 2151, 2153, 2154 ], "bg": 3285, "rotates": true }, + { "id": [ "office_doctor_2" ], "fg": [ 2156, 2155, 2157, 2158 ], "rotates": true }, + { "id": [ "office_doctor_roof_2" ], "fg": [ 2160, 2159, 2161, 2162 ], "bg": 3285, "rotates": true }, + { "id": [ "office_doctor_upper_roof_2" ], "fg": [ 2164, 2163, 2165, 2166 ], "bg": 3285, "rotates": true }, + { "id": [ "orchard" ], "fg": [ 2168, 2167, 2169, 2170 ], "bg": 3282, "rotates": true }, + { "id": [ "paintball_field" ], "fg": [ 2172, 2171, 2173, 2174 ], "bg": 3282, "rotates": true }, + { "id": [ "paintball_field_roof" ], "fg": [ 2176, 2175, 2177, 2178 ], "bg": 3285, "rotates": true }, + { "id": [ "paintball_field_1" ], "fg": [ 2180, 2179, 2181, 2182 ], "bg": 3282, "rotates": true }, + { "id": [ "paintball_field_roof_1" ], "fg": [ 2184, 2183, 2185, 2186 ], "bg": 3285, "rotates": true }, + { "id": [ "parking_garage_down_0" ], "fg": [ 2208, 2207, 2209, 2210 ], "bg": 3286, "rotates": true }, + { "id": [ "parking_garage_down_1" ], "fg": [ 2212, 2211, 2213, 2214 ], "bg": 3286, "rotates": true }, + { "id": [ "parking_garage_0_0" ], "fg": [ 2188, 2187, 2189, 2190 ], "bg": 3282, "rotates": true }, + { "id": [ "parking_garage_0_1" ], "fg": [ 2192, 2191, 2193, 2194 ], "bg": 3282, "rotates": true }, + { + "id": [ "parking_garage_1_0", "parking_garage_2_0", "parking_garage_roof_0" ], + "fg": [ 2196, 2195, 2197, 2198 ], + "bg": 3285, + "rotates": true + }, + { "id": [ "parking_garage_1_1" ], "fg": [ 2200, 2199, 2201, 2202 ], "bg": 3285, "rotates": true }, + { "id": [ "parking_garage_2_1" ], "fg": [ 2204, 2203, 2205, 2206 ], "bg": 3285, "rotates": true }, + { "id": [ "parking_garage_roof_1" ], "fg": [ 2216, 2215, 2217, 2218 ], "bg": 3285, "rotates": true }, + { "id": [ "parking_garage_roof_top" ], "fg": [ 2220, 2219, 2221, 2222 ], "bg": 3285, "rotates": true }, + { "id": [ "publicgarden_2" ], "fg": 2279, "bg": 3282, "rotates": true }, + { "id": [ "communitygarden" ], "fg": [ 2233, 2232, 2234, 2235 ], "bg": 3282, "rotates": true }, + { "id": [ "communitygarden_2" ], "fg": 2227, "bg": 3282, "rotates": true }, + { "id": [ "communitygarden_3" ], "fg": [ 2229, 2228, 2230, 2231 ], "bg": 3282, "rotates": true }, + { "id": [ "baskeball_court" ], "fg": [ 2224, 2223, 2225, 2226 ], "rotates": true }, + { "id": [ "tennis_court" ], "fg": [ 2281, 2280, 2282, 2283 ], "rotates": true }, + { "id": [ "volleyball_court" ], "fg": [ 2285, 2284, 2286, 2287 ], "bg": 3282, "rotates": true }, + { "id": [ "dog_park" ], "fg": [ 2237, 2236, 2238, 2239 ], "bg": 3282, "rotates": true }, + { "id": [ "park_maze" ], "fg": [ 2268, 2267, 2269, 2270 ], "bg": 3282, "rotates": true }, + { "id": [ "park_maze_2" ], "fg": [ 2264, 2263, 2265, 2266 ], "bg": 3282, "rotates": true }, + { "id": [ "park" ], "fg": [ 2260, 2259, 2261, 2262 ], "bg": 3282, "rotates": true }, + { "id": [ "park_2" ], "fg": 2240, "bg": 3282, "rotates": true }, + { "id": [ "park_3" ], "fg": [ 2242, 2241, 2243, 2244 ], "bg": 3282, "rotates": true }, + { "id": [ "park_4" ], "fg": [ 2246, 2245, 2247, 2248 ], "bg": 3282, "rotates": true }, + { "id": [ "park_5" ], "fg": [ 2250, 2249, 2251, 2252 ], "bg": 3282, "rotates": true }, + { "id": [ "park_6" ], "fg": [ 2254, 2253, 2254, 2253 ], "bg": 3282, "rotates": true }, + { "id": [ "park_7" ], "fg": [ 2256, 2255, 2257, 2258 ], "bg": 3282, "rotates": true }, + { "id": [ "playground" ], "fg": [ 2276, 2275, 2277, 2278 ], "bg": 3282, "rotates": true }, + { "id": [ "playground_1" ], "fg": [ 2272, 2271, 2273, 2274 ], "bg": 3282, "rotates": true }, + { "id": [ "PublicPond_1a" ], "fg": [ 2289, 2288, 2290, 2291 ], "bg": 3283, "rotates": true }, + { "id": [ "PublicPond_1b" ], "fg": [ 2293, 2292, 2294, 2295 ], "bg": 3283, "rotates": true }, + { "id": [ "BotanicalGarden_1a" ], "fg": [ 2297, 2296, 2298, 2299 ], "bg": 3282, "rotates": true }, + { "id": [ "BotanicalGarden_1a_roof" ], "fg": [ 2301, 2300, 2302, 2303 ], "bg": 3285, "rotates": true }, + { "id": [ "BotanicalGarden_1b" ], "fg": [ 2305, 2304, 2306, 2307 ], "bg": 3282, "rotates": true }, + { "id": [ "BotanicalGarden_1b_roof" ], "fg": [ 2309, 2308, 2310, 2311 ], "bg": 3285, "rotates": true }, + { "id": [ "pavilion" ], "fg": [ 2313, 2312, 2314, 2315 ], "bg": 3282, "rotates": true }, + { "id": [ "pavilion_roof" ], "fg": [ 2317, 2316, 2318, 2319 ], "bg": 3285, "rotates": true }, + { "id": [ "pavilion_1" ], "fg": [ 2321, 2320, 2322, 2323 ], "bg": 3282, "rotates": true }, + { "id": [ "pavilion_roof_1" ], "fg": [ 2325, 2324, 2326, 2327 ], "bg": 3285, "rotates": true }, + { "id": [ "pawn" ], "fg": [ 2329, 2328, 2330, 2331 ], "bg": 3282, "rotates": true }, + { "id": [ "pawn_roof" ], "fg": [ 2333, 2332, 2334, 2335 ], "bg": 3285, "rotates": true }, + { "id": [ "pawn_1" ], "fg": [ 2337, 2336, 2338, 2339 ], "bg": 3282, "rotates": true }, + { "id": [ "pawn_roof_1" ], "fg": [ 2341, 2340, 2342, 2343 ], "bg": 3285, "rotates": true }, + { "id": [ "pawn_pf" ], "fg": [ 2345, 2344, 2346, 2347 ], "bg": 3282, "rotates": true }, + { "id": [ "pawn_pf_roof" ], "fg": [ 2349, 2348, 2350, 2351 ], "bg": 3285, "rotates": true }, + { "id": [ "pawn_pf_under" ], "fg": [ 2353, 2352, 2354, 2355 ], "bg": 3286, "rotates": true }, + { "id": [ "s_pharm" ], "fg": [ 2357, 2356, 2358, 2359 ], "rotates": true }, + { "id": [ "s_pharm_roof" ], "fg": [ 2361, 2360, 2362, 2363 ], "bg": 3285, "rotates": true }, + { "id": [ "s_pharm_1" ], "fg": [ 2365, 2364, 2366, 2367 ], "rotates": true }, + { "id": [ "s_pharm_roof_1" ], "fg": [ 2369, 2368, 2370, 2371 ], "bg": 3285, "rotates": true }, + { "id": [ "police" ], "fg": [ 2373, 2372, 2374, 2375 ], "bg": 3282, "rotates": true }, + { "id": [ "police_roof" ], "fg": [ 2377, 2376, 2378, 2379 ], "bg": 3285, "rotates": true }, + { "id": [ "police_1" ], "fg": [ 2381, 2380, 2382, 2383 ], "bg": 3282, "rotates": true }, + { "id": [ "police_2ndfloor_1" ], "fg": [ 2385, 2384, 2386, 2387 ], "bg": 3285, "rotates": true }, + { "id": [ "police_roof_1" ], "fg": [ 2389, 2388, 2390, 2391 ], "bg": 3285, "rotates": true }, + { "id": [ "police_2" ], "fg": [ 2393, 2392, 2394, 2395 ], "bg": 3282, "rotates": true }, + { "id": [ "police_roof_2" ], "fg": [ 2397, 2396, 2398, 2399 ], "bg": 3285, "rotates": true }, + { "id": [ "police_2ndfloor_2" ], "fg": [ 2401, 2400, 2402, 2403 ], "bg": 3285, "rotates": true }, + { "id": [ "pond_field" ], "fg": [ 2409, 2408, 2410, 2411 ], "bg": 3282, "rotates": true }, + { "id": [ "pond_forest" ], "fg": [ 2409, 2408, 2410, 2411 ], "bg": 3283, "rotates": true }, + { "id": [ "pond_swamp" ], "fg": [ 2409, 2408, 2410, 2411 ], "bg": 3288, "rotates": true }, + { "id": [ "hot_springs" ], "fg": [ 2405, 2404, 2406, 2407 ], "bg": 3282, "rotates": true }, + { "id": [ "pool" ], "fg": [ 2413, 2412, 2414, 2415 ], "bg": 3282, "rotates": true }, + { "id": [ "pool_roof" ], "fg": [ 2417, 2416, 2418, 2419 ], "bg": 3285, "rotates": true }, + { "id": [ "pool_1" ], "fg": [ 2421, 2420, 2422, 2423 ], "bg": 3282, "rotates": true }, + { "id": [ "pool_roof_1" ], "fg": [ 2425, 2424, 2426, 2427 ], "bg": 3285, "rotates": true }, + { "id": [ "pool_2" ], "fg": [ 2429, 2428, 2430, 2431 ], "bg": 3282, "rotates": true }, + { "id": [ "pool_roof_2" ], "fg": [ 2433, 2432, 2434, 2435 ], "bg": 3285, "rotates": true }, + { "id": [ "pool_3" ], "fg": [ 2437, 2436, 2438, 2439 ], "bg": 3282, "rotates": true }, + { "id": [ "pool_roof_3" ], "fg": [ 2441, 2440, 2442, 2443 ], "bg": 3285, "rotates": true }, + { "id": [ "pool_4" ], "fg": [ 2445, 2444, 2446, 2447 ], "bg": 3282, "rotates": true }, + { "id": [ "pool_roof_4" ], "fg": [ 2449, 2448, 2450, 2451 ], "bg": 3285, "rotates": true }, + { "id": [ "pool_5" ], "fg": [ 2453, 2452, 2454, 2455 ], "bg": 3282, "rotates": true }, + { "id": [ "pool_6" ], "fg": [ 2457, 2456, 2458, 2459 ], "bg": 3282, "rotates": true }, + { "id": [ "post_office" ], "fg": [ 2461, 2460, 2462, 2463 ], "bg": 3282, "rotates": true }, + { "id": [ "post_office_roof" ], "fg": [ 2465, 2464, 2466, 2467 ], "bg": 3285, "rotates": true }, + { "id": [ "post_office_1" ], "fg": [ 2469, 2468, 2470, 2471 ], "bg": 3282, "rotates": true }, + { "id": [ "post_office_roof_1" ], "fg": [ 2473, 2472, 2474, 2475 ], "bg": 3285, "rotates": true }, + { "id": [ "craft_shop_2" ], "fg": [ 2477, 2476, 2478, 2479 ], "bg": 3282, "rotates": true }, + { "id": [ "craft_shop_2ndfloor_2" ], "fg": [ 2481, 2480, 2482, 2483 ], "bg": 3285, "rotates": true }, + { "id": [ "craft_shop_roof_2" ], "fg": [ 2485, 2484, 2486, 2487 ], "bg": 3285, "rotates": true }, + { "id": [ "publicgarden" ], "fg": 2488, "bg": 3282, "rotates": true }, + { "id": [ "recyclecenter" ], "fg": [ 2490, 2489, 2491, 2492 ], "bg": 3282, "rotates": true }, + { "id": [ "recyclecenter_roof" ], "fg": [ 2494, 2493, 2495, 2496 ], "bg": 3285, "rotates": true }, + { "id": [ "recyclecenter_1" ], "fg": [ 2498, 2497, 2499, 2500 ], "bg": 3282, "rotates": true }, + { "id": [ "recyclecenter_roof_1" ], "fg": [ 2502, 2501, 2503, 2504 ], "bg": 3285, "rotates": true }, + { "id": [ "recyclecenter_2" ], "fg": [ 2506, 2505, 2507, 2508 ], "bg": 3282, "rotates": true }, + { "id": [ "recyclecenter_roof_2" ], "fg": [ 2510, 2509, 2511, 2512 ], "bg": 3285, "rotates": true }, + { "id": "road_nesw_manhole", "fg": 2524, "bg": 2513 }, { "id": "road", - "fg": 2245, + "fg": 2529, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2229 }, - { "id": "corner", "fg": [ 2231, 2233, 2232, 2230 ], "bg": 2970 }, - { "id": "t_connection", "fg": [ 2242, 2244, 2243, 2241 ] }, - { "id": "edge", "fg": [ 2235, 2234 ] }, - { "id": "end_piece", "fg": [ 2237, 2239, 2238, 2236 ] }, - { "id": "unconnected", "fg": [ 2245, 2245 ], "bg": 2970 } + { "id": "center", "fg": 2513 }, + { "id": "corner", "fg": [ 2515, 2517, 2516, 2514 ], "bg": 3282 }, + { "id": "t_connection", "fg": [ 2526, 2528, 2527, 2525 ] }, + { "id": "edge", "fg": [ 2519, 2518 ] }, + { "id": "end_piece", "fg": [ 2521, 2523, 2522, 2520 ] }, + { "id": "unconnected", "fg": [ 2529, 2529 ], "bg": 3282 } ] }, - { "id": [ "roadstop" ], "fg": [ 2247, 2246, 2248, 2249 ], "bg": 2970, "rotates": true }, - { "id": [ "roadstop_roof" ], "fg": [ 2251, 2250, 2252, 2253 ], "bg": 2973, "rotates": true }, - { "id": [ "roadstop_a" ], "fg": [ 2255, 2254, 2256, 2257 ], "bg": 2970, "rotates": true }, - { "id": [ "roadstop_a_roof" ], "fg": [ 2259, 2258, 2260, 2261 ], "bg": 2973, "rotates": true }, - { "id": [ "roadstop_b" ], "fg": [ 2263, 2262, 2264, 2265 ], "bg": 2970, "rotates": true }, - { "id": [ "roadstop_b_roof" ], "fg": [ 2267, 2266, 2268, 2269 ], "bg": 2973, "rotates": true }, - { "id": [ "s_antique" ], "fg": [ 2271, 2270, 2272, 2273 ], "bg": 2970, "rotates": true }, - { "id": [ "s_antique_roof" ], "fg": [ 2275, 2274, 2276, 2277 ], "bg": 2973, "rotates": true }, - { "id": [ "s_apt" ], "fg": [ 2283, 2282, 2284, 2285 ], "bg": 2970, "rotates": true }, - { "id": [ "s_apt_2ndfloor" ], "fg": [ 2279, 2278, 2280, 2281 ], "bg": 2973, "rotates": true }, - { "id": [ "s_apt_roof" ], "fg": [ 2287, 2286, 2288, 2289 ], "bg": 2973, "rotates": true }, - { "id": [ "s_apt_upper_roof" ], "fg": [ 2291, 2290, 2292, 2293 ], "bg": 2973, "rotates": true }, - { "id": [ "s_apt_2" ], "fg": [ 2299, 2298, 2300, 2301 ], "bg": 2970, "rotates": true }, - { "id": [ "s_apt_2_2ndfloor" ], "fg": [ 2295, 2294, 2296, 2297 ], "bg": 2973, "rotates": true }, - { "id": [ "s_apt_2_roof" ], "fg": [ 2303, 2302, 2304, 2305 ], "bg": 2973, "rotates": true }, - { "id": [ "s_apt_2_upper_roof" ], "fg": [ 2307, 2306, 2308, 2309 ], "bg": 2973, "rotates": true }, - { "id": [ "s_arcade" ], "fg": [ 2311, 2310, 2312, 2313 ], "bg": 2970, "rotates": true }, - { "id": [ "s_arcade_roof" ], "fg": [ 2315, 2314, 2316, 2317 ], "bg": 2973, "rotates": true }, - { "id": [ "s_bike_shop" ], "fg": [ 2319, 2318, 2320, 2321 ], "bg": 2970, "rotates": true }, - { "id": [ "s_bike_shop_roof" ], "fg": [ 2323, 2322, 2324, 2325 ], "bg": 2973, "rotates": true }, - { "id": [ "s_bike_shop_1" ], "fg": [ 2327, 2326, 2328, 2329 ], "bg": 2970, "rotates": true }, - { "id": [ "s_bike_shop_roof_1" ], "fg": [ 2331, 2330, 2332, 2333 ], "bg": 2973, "rotates": true }, - { "id": [ "s_butcher" ], "fg": [ 2335, 2334, 2336, 2337 ], "rotates": true }, - { "id": [ "s_butcher_roof" ], "fg": [ 2339, 2338, 2340, 2341 ], "bg": 2973, "rotates": true }, - { "id": [ "s_butcher_upper_roof" ], "fg": [ 2343, 2342, 2344, 2345 ], "bg": 2973, "rotates": true }, - { "id": [ "s_butcher_1" ], "fg": [ 2347, 2346, 2348, 2349 ], "rotates": true }, - { "id": [ "s_butcher_roof_1" ], "fg": [ 2351, 2350, 2352, 2353 ], "bg": 2973, "rotates": true }, - { "id": [ "s_butcher_upper_roof_1" ], "fg": [ 2355, 2354, 2356, 2357 ], "bg": 2973, "rotates": true }, - { "id": [ "s_butcher_2" ], "fg": [ 2359, 2358, 2360, 2361 ], "rotates": true }, - { "id": [ "s_butcher_roof_2" ], "fg": [ 2363, 2362, 2364, 2365 ], "bg": 2973, "rotates": true }, - { "id": [ "s_cardealer" ], "fg": [ 2367, 2366, 2368, 2369 ], "bg": 2970, "rotates": true }, - { "id": [ "s_cardealer_roof" ], "fg": [ 2371, 2370, 2372, 2373 ], "bg": 2973, "rotates": true }, - { "id": [ "s_clothes" ], "fg": [ 2375, 2374, 2376, 2377 ], "bg": 2970, "rotates": true }, - { "id": [ "s_clothes_roof" ], "fg": [ 2379, 2378, 2380, 2381 ], "bg": 2973, "rotates": true }, - { "id": [ "s_clothes_1" ], "fg": [ 2383, 2382, 2384, 2385 ], "bg": 2970, "rotates": true }, - { "id": [ "s_clothes_roof_1" ], "fg": [ 2387, 2386, 2388, 2389 ], "bg": 2973, "rotates": true }, - { "id": [ "s_clothes_2" ], "fg": [ 2391, 2390, 2392, 2393 ], "bg": 2970, "rotates": true }, - { "id": [ "s_clothes_roof_2" ], "fg": [ 2395, 2394, 2396, 2397 ], "bg": 2973, "rotates": true }, - { "id": [ "s_clothes_3" ], "fg": [ 2399, 2398, 2400, 2401 ], "bg": 2970, "rotates": true }, - { "id": [ "s_clothes_roof_3" ], "fg": [ 2403, 2402, 2404, 2405 ], "bg": 2973, "rotates": true }, - { "id": [ "s_clothes_4" ], "fg": [ 2407, 2406, 2408, 2409 ], "bg": 2970, "rotates": true }, - { "id": [ "s_clothes_roof_4" ], "fg": [ 2411, 2410, 2412, 2413 ], "bg": 2973, "rotates": true }, - { "id": [ "s_clothes_upper_roof_4" ], "fg": [ 2415, 2414, 2416, 2417 ], "bg": 2973, "rotates": true }, - { "id": [ "s_clothes_5" ], "fg": [ 2419, 2418, 2420, 2421 ], "bg": 2970, "rotates": true }, - { "id": [ "s_clothes_roof_5" ], "fg": [ 2423, 2422, 2424, 2425 ], "bg": 2973, "rotates": true }, - { "id": [ "s_clothes_6" ], "fg": [ 2427, 2426, 2428, 2429 ], "bg": 2970, "rotates": true }, - { "id": [ "s_clothes_roof_6" ], "fg": [ 2431, 2430, 2432, 2433 ], "bg": 2973, "rotates": true }, - { "id": [ "s_daycare" ], "fg": [ 2435, 2434, 2436, 2437 ], "bg": 2970, "rotates": true }, - { "id": [ "s_daycare_roof" ], "fg": [ 2439, 2438, 2440, 2441 ], "bg": 2973, "rotates": true }, - { "id": [ "s_diner" ], "fg": [ 2447, 2446, 2448, 2449 ], "rotates": true }, - { "id": [ "s_diner_2ndfloor" ], "fg": [ 2443, 2442, 2444, 2445 ], "bg": 2973, "rotates": true }, - { "id": [ "s_diner_roof" ], "fg": [ 2451, 2450, 2452, 2453 ], "bg": 2973, "rotates": true }, - { "id": [ "s_electronics" ], "fg": [ 2455, 2454, 2456, 2457 ], "bg": 2970, "rotates": true }, - { "id": [ "s_electronics_roof" ], "fg": [ 2459, 2458, 2460, 2461 ], "bg": 2973, "rotates": true }, - { "id": [ "s_electronics_1" ], "fg": [ 2463, 2462, 2464, 2465 ], "bg": 2970, "rotates": true }, - { "id": [ "s_electronics_roof_1" ], "fg": [ 2467, 2466, 2468, 2469 ], "bg": 2973, "rotates": true }, - { "id": [ "s_electronicstore" ], "fg": [ 2475, 2474, 2476, 2477 ], "bg": 2970, "rotates": true }, - { "id": [ "s_electronicstore_2ndfloor" ], "fg": [ 2471, 2470, 2472, 2473 ], "bg": 2973, "rotates": true }, - { "id": [ "s_electronicstore_roof" ], "fg": [ 2479, 2478, 2480, 2481 ], "bg": 2973, "rotates": true }, - { "id": [ "s_games" ], "fg": [ 2483, 2482, 2484, 2485 ], "bg": 2970, "rotates": true }, - { "id": [ "s_games_roof" ], "fg": [ 2487, 2486, 2488, 2489 ], "bg": 2973, "rotates": true }, - { "id": [ "s_garage" ], "fg": [ 2491, 2490, 2492, 2493 ], "rotates": true }, - { "id": [ "s_garage_roof" ], "fg": [ 2495, 2494, 2496, 2497 ], "bg": 2973, "rotates": true }, - { "id": [ "s_garage_1" ], "fg": [ 2499, 2498, 2500, 2501 ], "rotates": true }, - { "id": [ "s_garage_roof_1" ], "fg": [ 2503, 2502, 2504, 2505 ], "bg": 2973, "rotates": true }, - { "id": [ "s_garage_2" ], "fg": [ 2507, 2506, 2508, 2509 ], "rotates": true }, - { "id": [ "s_garage_roof_2" ], "fg": [ 2511, 2510, 2512, 2513 ], "bg": 2973, "rotates": true }, - { "id": [ "s_garage_upper_roof_2" ], "fg": [ 2515, 2514, 2516, 2517 ], "bg": 2973, "rotates": true }, - { "id": [ "s_gardening" ], "fg": [ 2519, 2518, 2520, 2521 ], "bg": 2970, "rotates": true }, - { "id": [ "s_gardening_roof" ], "fg": [ 2523, 2522, 2524, 2525 ], "bg": 2973, "rotates": true }, - { "id": [ "s_gas" ], "fg": [ 2527, 2526, 2528, 2529 ], "bg": 2970, "rotates": true }, - { "id": [ "s_gas_1" ], "fg": [ 2531, 2530, 2532, 2533 ], "bg": 2970, "rotates": true }, - { "id": [ "s_gas_roof_1" ], "fg": [ 2535, 2534, 2536, 2537 ], "bg": 2973, "rotates": true }, - { "id": [ "s_gas_rural" ], "fg": [ 2539, 2538, 2540, 2541 ], "bg": 2970, "rotates": true }, - { "id": [ "s_gas_rural_roof" ], "fg": [ 2543, 2542, 2544, 2545 ], "bg": 2973, "rotates": true }, - { "id": [ "s_grocery" ], "fg": [ 2547, 2546, 2548, 2549 ], "rotates": true }, - { "id": [ "s_grocery_roof" ], "fg": [ 2551, 2550, 2552, 2553 ], "bg": 2973, "rotates": true }, - { "id": [ "s_grocery_1" ], "fg": [ 2555, 2554, 2556, 2557 ], "rotates": true }, - { "id": [ "s_grocery_roof_1" ], "fg": [ 2559, 2558, 2560, 2561 ], "bg": 2973, "rotates": true }, - { "id": [ "s_gun" ], "fg": [ 2563, 2562, 2564, 2565 ], "rotates": true }, - { "id": [ "s_gun_roof" ], "fg": [ 2567, 2566, 2568, 2569 ], "bg": 2973, "rotates": true }, - { "id": [ "s_gun_1", "s_gun_2" ], "fg": [ 2571, 2570, 2572, 2573 ], "rotates": true }, - { "id": [ "s_gun_roof_1", "s_gun_roof_2" ], "fg": [ 2575, 2574, 2576, 2577 ], "bg": 2973, "rotates": true }, - { "id": [ "s_gun_3" ], "fg": [ 2579, 2578, 2580, 2581 ], "rotates": true }, - { "id": [ "s_gun_roof_3" ], "fg": [ 2583, 2582, 2584, 2585 ], "bg": 2973, "rotates": true }, - { "id": [ "s_gun_4" ], "fg": [ 2591, 2590, 2592, 2593 ], "rotates": true }, - { "id": [ "s_gun_2ndfloor_4" ], "fg": [ 2587, 2586, 2588, 2589 ], "bg": 2973, "rotates": true }, - { "id": [ "s_gun_roof_4" ], "fg": [ 2595, 2594, 2596, 2597 ], "bg": 2973, "rotates": true }, - { "id": [ "s_gunstore" ], "fg": [ 2603, 2602, 2604, 2605 ], "rotates": true }, - { "id": [ "s_gunstore_2ndfloor" ], "fg": [ 2599, 2598, 2600, 2601 ], "bg": 2973, "rotates": true }, - { "id": [ "s_gunstore_roof" ], "fg": [ 2607, 2606, 2608, 2609 ], "bg": 2973, "rotates": true }, - { "id": [ "s_hardware" ], "fg": [ 2611, 2610, 2612, 2613 ], "bg": 2970, "rotates": true }, - { "id": [ "s_hardware_roof" ], "fg": [ 2615, 2614, 2616, 2617 ], "bg": 2973, "rotates": true }, - { "id": [ "s_hardware_1" ], "fg": [ 2619, 2618, 2620, 2621 ], "bg": 2970, "rotates": true }, - { "id": [ "s_hardware_roof_1" ], "fg": [ 2623, 2622, 2624, 2625 ], "bg": 2973, "rotates": true }, - { "id": [ "s_hardware_2" ], "fg": [ 2627, 2626, 2628, 2629 ], "bg": 2970, "rotates": true }, - { "id": [ "s_hardware_roof_2" ], "fg": [ 2631, 2630, 2632, 2633 ], "bg": 2973, "rotates": true }, - { "id": [ "s_hardware_3" ], "fg": [ 2635, 2634, 2636, 2637 ], "bg": 2970, "rotates": true }, - { "id": [ "s_hardware_roof_3" ], "fg": [ 2639, 2638, 2640, 2641 ], "bg": 2973, "rotates": true }, - { "id": [ "s_hunting" ], "fg": [ 2643, 2642, 2644, 2645 ], "rotates": true }, - { "id": [ "s_hunting_roof" ], "fg": [ 2647, 2646, 2648, 2649 ], "bg": 2973, "rotates": true }, - { "id": [ "s_jewelry" ], "fg": [ 2651, 2650, 2652, 2653 ], "bg": 2970, "rotates": true }, - { "id": [ "s_jewelry_roof" ], "fg": [ 2655, 2654, 2656, 2657 ], "bg": 2973, "rotates": true }, - { "id": [ "s_laundromat" ], "fg": [ 2659, 2658, 2660, 2661 ], "bg": 2970, "rotates": true }, - { "id": [ "s_laundromat_roof" ], "fg": [ 2663, 2662, 2664, 2665 ], "bg": 2973, "rotates": true }, - { "id": [ "s_laundromat_1" ], "fg": [ 2667, 2666, 2668, 2669 ], "bg": 2970, "rotates": true }, - { "id": [ "s_laundromat_roof_1" ], "fg": [ 2671, 2670, 2672, 2673 ], "bg": 2973, "rotates": true }, - { "id": [ "s_liquor" ], "fg": [ 2675, 2674, 2676, 2677 ], "rotates": true }, - { "id": [ "s_liquor_roof" ], "fg": [ 2679, 2678, 2680, 2681 ], "bg": 2973, "rotates": true }, - { "id": [ "s_lot" ], "fg": [ 2683, 2682, 2684, 2685 ], "bg": 2970, "rotates": true }, - { "id": [ "s_music" ], "fg": [ 2687, 2686, 2688, 2689 ], "bg": 2970, "rotates": true }, - { "id": [ "s_music_roof" ], "fg": [ 2691, 2690, 2692, 2693 ], "bg": 2973, "rotates": true }, - { "id": [ "s_petstore" ], "fg": [ 2695, 2694, 2696, 2697 ], "bg": 2970, "rotates": true }, - { "id": [ "s_petstore_roof" ], "fg": [ 2699, 2698, 2700, 2701 ], "bg": 2973, "rotates": true }, - { "id": [ "s_petstore_1" ], "fg": [ 2703, 2702, 2704, 2705 ], "bg": 2970, "rotates": true }, - { "id": [ "s_petstore_roof_1" ], "fg": [ 2707, 2706, 2708, 2709 ], "bg": 2973, "rotates": true }, - { "id": [ "s_petstore_2" ], "fg": [ 2711, 2710, 2712, 2713 ], "bg": 2970, "rotates": true }, - { "id": [ "s_petstore_roof_2" ], "fg": [ 2715, 2714, 2716, 2717 ], "bg": 2973, "rotates": true }, - { "id": [ "s_pizza_parlor" ], "fg": [ 2719, 2718, 2720, 2721 ], "rotates": true }, - { "id": [ "s_pizza_parlor_roof" ], "fg": [ 2723, 2722, 2724, 2725 ], "bg": 2973, "rotates": true }, - { "id": [ "s_pizza_parlor_1" ], "fg": [ 2727, 2726, 2728, 2729 ], "rotates": true }, - { "id": [ "s_pizza_parlor_roof_1" ], "fg": [ 2731, 2730, 2732, 2733 ], "bg": 2973, "rotates": true }, - { "id": [ "s_restaurant", "s_restaurant_foodplace" ], "fg": [ 2735, 2734, 2736, 2737 ], "rotates": true }, - { "id": [ "s_restaurant_roof" ], "fg": [ 2739, 2738, 2740, 2741 ], "bg": 2973, "rotates": true }, - { "id": [ "s_restaurant_1" ], "fg": [ 2743, 2742, 2744, 2745 ], "rotates": true }, - { "id": [ "s_restaurant_roof_1" ], "fg": [ 2747, 2746, 2748, 2749 ], "bg": 2973, "rotates": true }, - { "id": [ "s_restaurant_2" ], "fg": [ 2751, 2750, 2752, 2753 ], "rotates": true }, - { "id": [ "s_restaurant_roof_2" ], "fg": [ 2755, 2754, 2756, 2757 ], "bg": 2973, "rotates": true }, - { "id": [ "s_restaurant_3" ], "fg": [ 2759, 2758, 2760, 2761 ], "rotates": true }, - { "id": [ "s_restaurant_roof_3" ], "fg": [ 2763, 2762, 2764, 2765 ], "bg": 2973, "rotates": true }, - { "id": [ "s_restaurant_coffee" ], "fg": [ 2767, 2766, 2768, 2769 ], "rotates": true }, - { "id": [ "s_restaurant_coffee_roof" ], "fg": [ 2771, 2770, 2772, 2773 ], "bg": 2973, "rotates": true }, - { "id": [ "s_restaurant_coffee_1" ], "fg": [ 2775, 2774, 2776, 2777 ], "rotates": true }, - { "id": [ "s_restaurant_coffee_roof_1" ], "fg": [ 2779, 2778, 2780, 2781 ], "bg": 2973, "rotates": true }, - { "id": [ "s_restaurant_coffee_2" ], "fg": [ 2783, 2782, 2784, 2785 ], "rotates": true }, - { "id": [ "s_restaurant_coffee_roof_2" ], "fg": [ 2787, 2786, 2788, 2789 ], "bg": 2973, "rotates": true }, - { "id": [ "s_restaurant_fast" ], "fg": [ 2791, 2790, 2792, 2793 ], "rotates": true }, - { "id": [ "s_restaurant_fast_roof" ], "fg": [ 2795, 2794, 2796, 2797 ], "bg": 2973, "rotates": true }, - { "id": [ "s_restaurant_fast_1" ], "fg": [ 2799, 2798, 2800, 2801 ], "rotates": true }, - { "id": [ "s_restaurant_fast_roof_1" ], "fg": [ 2803, 2802, 2804, 2805 ], "bg": 2973, "rotates": true }, - { "id": [ "s_restaurant_foodplace_roof" ], "fg": [ 2807, 2806, 2808, 2809 ], "bg": 2973, "rotates": true }, + { "id": [ "roadstop" ], "fg": [ 2531, 2530, 2532, 2533 ], "bg": 3282, "rotates": true }, + { "id": [ "roadstop_roof" ], "fg": [ 2535, 2534, 2536, 2537 ], "bg": 3285, "rotates": true }, + { "id": [ "roadstop_a" ], "fg": [ 2539, 2538, 2540, 2541 ], "bg": 3282, "rotates": true }, + { "id": [ "roadstop_a_roof" ], "fg": [ 2543, 2542, 2544, 2545 ], "bg": 3285, "rotates": true }, + { "id": [ "roadstop_b" ], "fg": [ 2547, 2546, 2548, 2549 ], "bg": 3282, "rotates": true }, + { "id": [ "roadstop_b_roof" ], "fg": [ 2551, 2550, 2552, 2553 ], "bg": 3285, "rotates": true }, + { "id": [ "s_antique" ], "fg": [ 2555, 2554, 2556, 2557 ], "bg": 3282, "rotates": true }, + { "id": [ "s_antique_roof" ], "fg": [ 2559, 2558, 2560, 2561 ], "bg": 3285, "rotates": true }, + { "id": [ "s_apt" ], "fg": [ 2567, 2566, 2568, 2569 ], "bg": 3282, "rotates": true }, + { "id": [ "s_apt_2ndfloor" ], "fg": [ 2563, 2562, 2564, 2565 ], "bg": 3285, "rotates": true }, + { "id": [ "s_apt_roof" ], "fg": [ 2571, 2570, 2572, 2573 ], "bg": 3285, "rotates": true }, + { "id": [ "s_apt_upper_roof" ], "fg": [ 2575, 2574, 2576, 2577 ], "bg": 3285, "rotates": true }, + { "id": [ "s_apt_2" ], "fg": [ 2583, 2582, 2584, 2585 ], "bg": 3282, "rotates": true }, + { "id": [ "s_apt_2_2ndfloor" ], "fg": [ 2579, 2578, 2580, 2581 ], "bg": 3285, "rotates": true }, + { "id": [ "s_apt_2_roof" ], "fg": [ 2587, 2586, 2588, 2589 ], "bg": 3285, "rotates": true }, + { "id": [ "s_apt_2_upper_roof" ], "fg": [ 2591, 2590, 2592, 2593 ], "bg": 3285, "rotates": true }, + { "id": [ "s_arcade" ], "fg": [ 2595, 2594, 2596, 2597 ], "bg": 3282, "rotates": true }, + { "id": [ "s_arcade_roof" ], "fg": [ 2599, 2598, 2600, 2601 ], "bg": 3285, "rotates": true }, + { "id": [ "s_bike_shop" ], "fg": [ 2603, 2602, 2604, 2605 ], "bg": 3282, "rotates": true }, + { "id": [ "s_bike_shop_roof" ], "fg": [ 2607, 2606, 2608, 2609 ], "bg": 3285, "rotates": true }, + { "id": [ "s_bike_shop_1" ], "fg": [ 2611, 2610, 2612, 2613 ], "bg": 3282, "rotates": true }, + { "id": [ "s_bike_shop_roof_1" ], "fg": [ 2615, 2614, 2616, 2617 ], "bg": 3285, "rotates": true }, + { "id": [ "s_butcher" ], "fg": [ 2619, 2618, 2620, 2621 ], "rotates": true }, + { "id": [ "s_butcher_roof" ], "fg": [ 2623, 2622, 2624, 2625 ], "bg": 3285, "rotates": true }, + { "id": [ "s_butcher_upper_roof" ], "fg": [ 2627, 2626, 2628, 2629 ], "bg": 3285, "rotates": true }, + { "id": [ "s_butcher_1" ], "fg": [ 2631, 2630, 2632, 2633 ], "rotates": true }, + { "id": [ "s_butcher_roof_1" ], "fg": [ 2635, 2634, 2636, 2637 ], "bg": 3285, "rotates": true }, + { "id": [ "s_butcher_upper_roof_1" ], "fg": [ 2639, 2638, 2640, 2641 ], "bg": 3285, "rotates": true }, + { "id": [ "s_butcher_2" ], "fg": [ 2643, 2642, 2644, 2645 ], "rotates": true }, + { "id": [ "s_butcher_roof_2" ], "fg": [ 2647, 2646, 2648, 2649 ], "bg": 3285, "rotates": true }, + { "id": [ "s_cardealer" ], "fg": [ 2651, 2650, 2652, 2653 ], "bg": 3282, "rotates": true }, + { "id": [ "s_cardealer_roof" ], "fg": [ 2655, 2654, 2656, 2657 ], "bg": 3285, "rotates": true }, + { "id": [ "s_clothes" ], "fg": [ 2659, 2658, 2660, 2661 ], "bg": 3282, "rotates": true }, + { "id": [ "s_clothes_roof" ], "fg": [ 2663, 2662, 2664, 2665 ], "bg": 3285, "rotates": true }, + { "id": [ "s_clothes_1" ], "fg": [ 2667, 2666, 2668, 2669 ], "bg": 3282, "rotates": true }, + { "id": [ "s_clothes_roof_1" ], "fg": [ 2671, 2670, 2672, 2673 ], "bg": 3285, "rotates": true }, + { "id": [ "s_clothes_2" ], "fg": [ 2675, 2674, 2676, 2677 ], "bg": 3282, "rotates": true }, + { "id": [ "s_clothes_roof_2" ], "fg": [ 2679, 2678, 2680, 2681 ], "bg": 3285, "rotates": true }, + { "id": [ "s_clothes_3" ], "fg": [ 2683, 2682, 2684, 2685 ], "bg": 3282, "rotates": true }, + { "id": [ "s_clothes_roof_3" ], "fg": [ 2687, 2686, 2688, 2689 ], "bg": 3285, "rotates": true }, + { "id": [ "s_clothes_4" ], "fg": [ 2691, 2690, 2692, 2693 ], "bg": 3282, "rotates": true }, + { "id": [ "s_clothes_roof_4" ], "fg": [ 2695, 2694, 2696, 2697 ], "bg": 3285, "rotates": true }, + { "id": [ "s_clothes_upper_roof_4" ], "fg": [ 2699, 2698, 2700, 2701 ], "bg": 3285, "rotates": true }, + { "id": [ "s_clothes_5" ], "fg": [ 2703, 2702, 2704, 2705 ], "bg": 3282, "rotates": true }, + { "id": [ "s_clothes_roof_5" ], "fg": [ 2707, 2706, 2708, 2709 ], "bg": 3285, "rotates": true }, + { "id": [ "s_clothes_6" ], "fg": [ 2711, 2710, 2712, 2713 ], "bg": 3282, "rotates": true }, + { "id": [ "s_clothes_roof_6" ], "fg": [ 2715, 2714, 2716, 2717 ], "bg": 3285, "rotates": true }, + { "id": [ "s_daycare" ], "fg": [ 2719, 2718, 2720, 2721 ], "bg": 3282, "rotates": true }, + { "id": [ "s_daycare_roof" ], "fg": [ 2723, 2722, 2724, 2725 ], "bg": 3285, "rotates": true }, + { "id": [ "s_diner" ], "fg": [ 2731, 2730, 2732, 2733 ], "rotates": true }, + { "id": [ "s_diner_2ndfloor" ], "fg": [ 2727, 2726, 2728, 2729 ], "bg": 3285, "rotates": true }, + { "id": [ "s_diner_roof" ], "fg": [ 2735, 2734, 2736, 2737 ], "bg": 3285, "rotates": true }, + { "id": [ "s_electronics" ], "fg": [ 2739, 2738, 2740, 2741 ], "bg": 3282, "rotates": true }, + { "id": [ "s_electronics_roof" ], "fg": [ 2743, 2742, 2744, 2745 ], "bg": 3285, "rotates": true }, + { "id": [ "s_electronics_1" ], "fg": [ 2747, 2746, 2748, 2749 ], "bg": 3282, "rotates": true }, + { "id": [ "s_electronics_roof_1" ], "fg": [ 2751, 2750, 2752, 2753 ], "bg": 3285, "rotates": true }, + { "id": [ "s_electronicstore" ], "fg": [ 2759, 2758, 2760, 2761 ], "bg": 3282, "rotates": true }, + { "id": [ "s_electronicstore_2ndfloor" ], "fg": [ 2755, 2754, 2756, 2757 ], "bg": 3285, "rotates": true }, + { "id": [ "s_electronicstore_roof" ], "fg": [ 2763, 2762, 2764, 2765 ], "bg": 3285, "rotates": true }, + { "id": [ "s_games" ], "fg": [ 2767, 2766, 2768, 2769 ], "bg": 3282, "rotates": true }, + { "id": [ "s_games_roof" ], "fg": [ 2771, 2770, 2772, 2773 ], "bg": 3285, "rotates": true }, + { "id": [ "s_garage" ], "fg": [ 2775, 2774, 2776, 2777 ], "rotates": true }, + { "id": [ "s_garage_roof" ], "fg": [ 2779, 2778, 2780, 2781 ], "bg": 3285, "rotates": true }, + { "id": [ "s_garage_1" ], "fg": [ 2783, 2782, 2784, 2785 ], "rotates": true }, + { "id": [ "s_garage_roof_1" ], "fg": [ 2787, 2786, 2788, 2789 ], "bg": 3285, "rotates": true }, + { "id": [ "s_garage_2" ], "fg": [ 2791, 2790, 2792, 2793 ], "rotates": true }, + { "id": [ "s_garage_roof_2" ], "fg": [ 2795, 2794, 2796, 2797 ], "bg": 3285, "rotates": true }, + { "id": [ "s_garage_upper_roof_2" ], "fg": [ 2799, 2798, 2800, 2801 ], "bg": 3285, "rotates": true }, + { "id": [ "s_gardening" ], "fg": [ 2803, 2802, 2804, 2805 ], "bg": 3282, "rotates": true }, + { "id": [ "s_gardening_roof" ], "fg": [ 2807, 2806, 2808, 2809 ], "bg": 3285, "rotates": true }, + { "id": [ "s_gas" ], "fg": [ 2811, 2810, 2812, 2813 ], "bg": 3282, "rotates": true }, + { "id": [ "s_gas_1" ], "fg": [ 2815, 2814, 2816, 2817 ], "bg": 3282, "rotates": true }, + { "id": [ "s_gas_roof_1" ], "fg": [ 2819, 2818, 2820, 2821 ], "bg": 3285, "rotates": true }, + { "id": [ "s_gas_rural" ], "fg": [ 2823, 2822, 2824, 2825 ], "bg": 3282, "rotates": true }, + { "id": [ "s_gas_rural_roof" ], "fg": [ 2827, 2826, 2828, 2829 ], "bg": 3285, "rotates": true }, + { "id": [ "s_grocery" ], "fg": [ 2831, 2830, 2832, 2833 ], "rotates": true }, + { "id": [ "s_grocery_roof" ], "fg": [ 2835, 2834, 2836, 2837 ], "bg": 3285, "rotates": true }, + { "id": [ "s_grocery_1" ], "fg": [ 2839, 2838, 2840, 2841 ], "rotates": true }, + { "id": [ "s_grocery_roof_1" ], "fg": [ 2843, 2842, 2844, 2845 ], "bg": 3285, "rotates": true }, + { "id": [ "s_gun" ], "fg": [ 2847, 2846, 2848, 2849 ], "rotates": true }, + { "id": [ "s_gun_roof" ], "fg": [ 2851, 2850, 2852, 2853 ], "bg": 3285, "rotates": true }, + { "id": [ "s_gun_1", "s_gun_2" ], "fg": [ 2855, 2854, 2856, 2857 ], "rotates": true }, + { "id": [ "s_gun_roof_1", "s_gun_roof_2" ], "fg": [ 2859, 2858, 2860, 2861 ], "bg": 3285, "rotates": true }, + { "id": [ "s_gun_3" ], "fg": [ 2863, 2862, 2864, 2865 ], "rotates": true }, + { "id": [ "s_gun_roof_3" ], "fg": [ 2867, 2866, 2868, 2869 ], "bg": 3285, "rotates": true }, + { "id": [ "s_gun_4" ], "fg": [ 2875, 2874, 2876, 2877 ], "rotates": true }, + { "id": [ "s_gun_2ndfloor_4" ], "fg": [ 2871, 2870, 2872, 2873 ], "bg": 3285, "rotates": true }, + { "id": [ "s_gun_roof_4" ], "fg": [ 2879, 2878, 2880, 2881 ], "bg": 3285, "rotates": true }, + { "id": [ "s_gunstore" ], "fg": [ 2887, 2886, 2888, 2889 ], "rotates": true }, + { "id": [ "s_gunstore_2ndfloor" ], "fg": [ 2883, 2882, 2884, 2885 ], "bg": 3285, "rotates": true }, + { "id": [ "s_gunstore_roof" ], "fg": [ 2891, 2890, 2892, 2893 ], "bg": 3285, "rotates": true }, + { "id": [ "s_hardware" ], "fg": [ 2895, 2894, 2896, 2897 ], "bg": 3282, "rotates": true }, + { "id": [ "s_hardware_roof" ], "fg": [ 2899, 2898, 2900, 2901 ], "bg": 3285, "rotates": true }, + { "id": [ "s_hardware_1" ], "fg": [ 2903, 2902, 2904, 2905 ], "bg": 3282, "rotates": true }, + { "id": [ "s_hardware_roof_1" ], "fg": [ 2907, 2906, 2908, 2909 ], "bg": 3285, "rotates": true }, + { "id": [ "s_hardware_2" ], "fg": [ 2911, 2910, 2912, 2913 ], "bg": 3282, "rotates": true }, + { "id": [ "s_hardware_roof_2" ], "fg": [ 2915, 2914, 2916, 2917 ], "bg": 3285, "rotates": true }, + { "id": [ "s_hardware_3" ], "fg": [ 2919, 2918, 2920, 2921 ], "bg": 3282, "rotates": true }, + { "id": [ "s_hardware_roof_3" ], "fg": [ 2923, 2922, 2924, 2925 ], "bg": 3285, "rotates": true }, + { "id": [ "s_hunting" ], "fg": [ 2927, 2926, 2928, 2929 ], "rotates": true }, + { "id": [ "s_hunting_roof" ], "fg": [ 2931, 2930, 2932, 2933 ], "bg": 3285, "rotates": true }, + { "id": [ "s_jewelry" ], "fg": [ 2935, 2934, 2936, 2937 ], "bg": 3282, "rotates": true }, + { "id": [ "s_jewelry_roof" ], "fg": [ 2939, 2938, 2940, 2941 ], "bg": 3285, "rotates": true }, + { "id": [ "s_laundromat" ], "fg": [ 2943, 2942, 2944, 2945 ], "bg": 3282, "rotates": true }, + { "id": [ "s_laundromat_roof" ], "fg": [ 2947, 2946, 2948, 2949 ], "bg": 3285, "rotates": true }, + { "id": [ "s_laundromat_1" ], "fg": [ 2951, 2950, 2952, 2953 ], "bg": 3282, "rotates": true }, + { "id": [ "s_laundromat_roof_1" ], "fg": [ 2955, 2954, 2956, 2957 ], "bg": 3285, "rotates": true }, + { "id": [ "s_liquor" ], "fg": [ 2959, 2958, 2960, 2961 ], "rotates": true }, + { "id": [ "s_liquor_roof" ], "fg": [ 2963, 2962, 2964, 2965 ], "bg": 3285, "rotates": true }, + { "id": [ "s_lot" ], "fg": [ 2967, 2966, 2968, 2969 ], "bg": 3282, "rotates": true }, + { "id": [ "s_music" ], "fg": [ 2971, 2970, 2972, 2973 ], "bg": 3282, "rotates": true }, + { "id": [ "s_music_roof" ], "fg": [ 2975, 2974, 2976, 2977 ], "bg": 3285, "rotates": true }, + { "id": [ "s_petstore" ], "fg": [ 2979, 2978, 2980, 2981 ], "bg": 3282, "rotates": true }, + { "id": [ "s_petstore_roof" ], "fg": [ 2983, 2982, 2984, 2985 ], "bg": 3285, "rotates": true }, + { "id": [ "s_petstore_1" ], "fg": [ 2987, 2986, 2988, 2989 ], "bg": 3282, "rotates": true }, + { "id": [ "s_petstore_roof_1" ], "fg": [ 2991, 2990, 2992, 2993 ], "bg": 3285, "rotates": true }, + { "id": [ "s_petstore_2" ], "fg": [ 2995, 2994, 2996, 2997 ], "bg": 3282, "rotates": true }, + { "id": [ "s_petstore_roof_2" ], "fg": [ 2999, 2998, 3000, 3001 ], "bg": 3285, "rotates": true }, + { "id": [ "s_pizza_parlor" ], "fg": [ 3003, 3002, 3004, 3005 ], "rotates": true }, + { "id": [ "s_pizza_parlor_roof" ], "fg": [ 3007, 3006, 3008, 3009 ], "bg": 3285, "rotates": true }, + { "id": [ "s_pizza_parlor_1" ], "fg": [ 3011, 3010, 3012, 3013 ], "rotates": true }, + { "id": [ "s_pizza_parlor_roof_1" ], "fg": [ 3015, 3014, 3016, 3017 ], "bg": 3285, "rotates": true }, + { "id": [ "s_restaurant", "s_restaurant_foodplace" ], "fg": [ 3019, 3018, 3020, 3021 ], "rotates": true }, + { "id": [ "s_restaurant_roof" ], "fg": [ 3023, 3022, 3024, 3025 ], "bg": 3285, "rotates": true }, + { "id": [ "s_restaurant_1" ], "fg": [ 3027, 3026, 3028, 3029 ], "rotates": true }, + { "id": [ "s_restaurant_roof_1" ], "fg": [ 3031, 3030, 3032, 3033 ], "bg": 3285, "rotates": true }, + { "id": [ "s_restaurant_2" ], "fg": [ 3035, 3034, 3036, 3037 ], "rotates": true }, + { "id": [ "s_restaurant_roof_2" ], "fg": [ 3039, 3038, 3040, 3041 ], "bg": 3285, "rotates": true }, + { "id": [ "s_restaurant_3" ], "fg": [ 3043, 3042, 3044, 3045 ], "rotates": true }, + { "id": [ "s_restaurant_roof_3" ], "fg": [ 3047, 3046, 3048, 3049 ], "bg": 3285, "rotates": true }, + { "id": [ "s_restaurant_coffee" ], "fg": [ 3051, 3050, 3052, 3053 ], "rotates": true }, + { "id": [ "s_restaurant_coffee_roof" ], "fg": [ 3055, 3054, 3056, 3057 ], "bg": 3285, "rotates": true }, + { "id": [ "s_restaurant_coffee_1" ], "fg": [ 3059, 3058, 3060, 3061 ], "rotates": true }, + { "id": [ "s_restaurant_coffee_roof_1" ], "fg": [ 3063, 3062, 3064, 3065 ], "bg": 3285, "rotates": true }, + { "id": [ "s_restaurant_coffee_2" ], "fg": [ 3067, 3066, 3068, 3069 ], "rotates": true }, + { "id": [ "s_restaurant_coffee_roof_2" ], "fg": [ 3071, 3070, 3072, 3073 ], "bg": 3285, "rotates": true }, + { "id": [ "s_restaurant_fast" ], "fg": [ 3075, 3074, 3076, 3077 ], "rotates": true }, + { "id": [ "s_restaurant_fast_roof" ], "fg": [ 3079, 3078, 3080, 3081 ], "bg": 3285, "rotates": true }, + { "id": [ "s_restaurant_fast_1" ], "fg": [ 3083, 3082, 3084, 3085 ], "rotates": true }, + { "id": [ "s_restaurant_fast_roof_1" ], "fg": [ 3087, 3086, 3088, 3089 ], "bg": 3285, "rotates": true }, + { "id": [ "s_restaurant_foodplace_roof" ], "fg": [ 3091, 3090, 3092, 3093 ], "bg": 3285, "rotates": true }, { "id": [ "s_restaurant_foodplace_upper_roof" ], - "fg": [ 2811, 2810, 2812, 2813 ], - "bg": 2973, + "fg": [ 3095, 3094, 3096, 3097 ], + "bg": 3285, "rotates": true }, - { "id": [ "s_sports" ], "fg": [ 2815, 2814, 2816, 2817 ], "rotates": true }, - { "id": [ "s_sports_roof" ], "fg": [ 2819, 2818, 2820, 2821 ], "bg": 2973, "rotates": true }, - { "id": [ "s_teashop" ], "fg": [ 2823, 2822, 2824, 2825 ], "rotates": true }, - { "id": [ "s_teashop_roof" ], "fg": [ 2827, 2826, 2828, 2829 ], "bg": 2973, "rotates": true }, - { "id": [ "s_teashop_1" ], "fg": [ 2831, 2830, 2832, 2833 ], "rotates": true }, - { "id": [ "s_teashop_roof_1" ], "fg": [ 2835, 2834, 2836, 2837 ], "bg": 2973, "rotates": true }, - { "id": [ "s_teashop_upper_roof_1" ], "fg": [ 2839, 2838, 2840, 2841 ], "bg": 2973, "rotates": true }, - { "id": [ "s_thrift" ], "fg": [ 2843, 2842, 2844, 2845 ], "bg": 2970, "rotates": true }, - { "id": [ "s_thrift_roof" ], "fg": [ 2847, 2846, 2848, 2849 ], "bg": 2973, "rotates": true }, - { "id": [ "sai" ], "fg": [ 2851, 2850, 2852, 2853 ], "bg": 2970, "rotates": true }, - { "id": [ "skate_park" ], "fg": [ 2855, 2854, 2856, 2857 ], "bg": 2970, "rotates": true }, - { "id": [ "small_office" ], "fg": [ 2859, 2858, 2860, 2861 ], "bg": 2970, "rotates": true }, - { "id": [ "small_office_roof" ], "fg": [ 2863, 2862, 2864, 2865 ], "bg": 2973, "rotates": true }, - { "id": [ "small_office_upper_roof" ], "fg": [ 2867, 2866, 2868, 2869 ], "bg": 2973, "rotates": true }, - { "id": [ "small_storage_units" ], "fg": [ 2871, 2870, 2872, 2873 ], "bg": 2970, "rotates": true }, - { "id": [ "small_storage_units_roof" ], "fg": [ 2875, 2874, 2876, 2877 ], "bg": 2973, "rotates": true }, - { "id": [ "small_storage_units_1" ], "fg": [ 2879, 2878, 2880, 2881 ], "bg": 2970, "rotates": true }, - { "id": [ "small_storage_units_roof_1" ], "fg": [ 2883, 2882, 2884, 2885 ], "bg": 2973, "rotates": true }, - { "id": [ "small_wooded_trail" ], "fg": [ 2891, 2890, 2892, 2893 ], "bg": 2971, "rotates": true }, - { "id": [ "small_wooded_trail_2" ], "fg": [ 2887, 2886, 2888, 2889 ], "bg": 2971, "rotates": true }, - { "id": [ "smallscrapyard" ], "fg": [ 2895, 2894, 2896, 2897 ], "bg": 2970, "rotates": true }, - { "id": [ "smoke_lounge" ], "fg": [ 2899, 2898, 2900, 2901 ], "bg": 2970, "rotates": true }, - { "id": [ "smoke_lounge_roof" ], "fg": [ 2903, 2902, 2904, 2905 ], "bg": 2973, "rotates": true }, - { "id": [ "smoke_lounge_1" ], "fg": [ 2907, 2906, 2908, 2909 ], "bg": 2970, "rotates": true }, - { "id": [ "smoke_lounge_roof_1" ], "fg": [ 2911, 2910, 2912, 2913 ], "bg": 2973, "rotates": true }, - { "id": [ "station_radio" ], "fg": [ 2915, 2914, 2916, 2917 ], "bg": 2970, "rotates": true }, - { "id": [ "station_radio_roof" ], "fg": [ 2919, 2918, 2920, 2921 ], "bg": 2973, "rotates": true }, - { "id": [ "station_radio_1" ], "fg": [ 2923, 2922, 2924, 2925 ], "bg": 2970, "rotates": true }, - { "id": [ "station_radio_roof_1" ], "fg": [ 2927, 2926, 2928, 2929 ], "bg": 2973, "rotates": true }, - { "id": [ "stripclub" ], "fg": [ 2931, 2930, 2932, 2933 ], "bg": 2970, "rotates": true }, - { "id": [ "stripclub_roof" ], "fg": [ 2935, 2934, 2936, 2937 ], "bg": 2973, "rotates": true }, - { "id": [ "stripclub_1" ], "fg": [ 2939, 2938, 2940, 2941 ], "bg": 2970, "rotates": true }, - { "id": [ "stripclub_roof_1" ], "fg": [ 2943, 2942, 2944, 2945 ], "bg": 2973, "rotates": true }, - { "id": [ "stripclub_2" ], "fg": [ 2947, 2946, 2948, 2949 ], "bg": 2970, "rotates": true }, - { "id": [ "stripclub_roof_2" ], "fg": [ 2951, 2950, 2952, 2953 ], "bg": 2973, "rotates": true }, - { "id": [ "sub_station" ], "fg": [ 2959, 2958, 2960, 2961 ], "bg": 2970, "rotates": true }, - { "id": [ "sub_station_roof" ], "fg": [ 2963, 2962, 2964, 2965 ], "bg": 2973, "rotates": true }, - { "id": [ "sewer_sub_station" ], "fg": [ 2955, 2954, 2956, 2957 ], "bg": 2974, "rotates": true }, - { "id": [ "underground_sub_station" ], "fg": [ 2967, 2966, 2968, 2969 ], "bg": 2974, "rotates": true }, - { "id": "forest_water", "fg": 2976 }, - { "id": [ "forest", "special_forest" ], "fg": 2971, "bg": 2970 }, - { "id": [ "forest_thick", "special_forest_thick" ], "fg": 2972, "bg": 2970 }, - { "id": [ "field", "special_field" ], "fg": 2970 }, - { "id": "open_air", "fg": 2973 }, - { "id": "solid_earth", "fg": 2974 }, - { "id": [ "deep_rock", "empty_rock" ], "fg": 2975 }, + { "id": [ "s_sports" ], "fg": [ 3099, 3098, 3100, 3101 ], "rotates": true }, + { "id": [ "s_sports_roof" ], "fg": [ 3103, 3102, 3104, 3105 ], "bg": 3285, "rotates": true }, + { "id": [ "s_teashop" ], "fg": [ 3107, 3106, 3108, 3109 ], "rotates": true }, + { "id": [ "s_teashop_roof" ], "fg": [ 3111, 3110, 3112, 3113 ], "bg": 3285, "rotates": true }, + { "id": [ "s_teashop_1" ], "fg": [ 3115, 3114, 3116, 3117 ], "rotates": true }, + { "id": [ "s_teashop_roof_1" ], "fg": [ 3119, 3118, 3120, 3121 ], "bg": 3285, "rotates": true }, + { "id": [ "s_teashop_upper_roof_1" ], "fg": [ 3123, 3122, 3124, 3125 ], "bg": 3285, "rotates": true }, + { "id": [ "s_thrift" ], "fg": [ 3127, 3126, 3128, 3129 ], "bg": 3282, "rotates": true }, + { "id": [ "s_thrift_roof" ], "fg": [ 3131, 3130, 3132, 3133 ], "bg": 3285, "rotates": true }, + { "id": [ "sai" ], "fg": [ 3135, 3134, 3136, 3137 ], "bg": 3282, "rotates": true }, + { "id": [ "shelter", "shelter_vandal" ], "fg": [ 3139, 3138, 3140, 3141 ], "bg": 3282, "rotates": true }, + { "id": [ "shelter_roof" ], "fg": [ 3143, 3142, 3144, 3145 ], "bg": 3285, "rotates": true }, + { "id": [ "shelter_under" ], "fg": [ 3147, 3146, 3148, 3149 ], "bg": 3286, "rotates": true }, + { "id": [ "shelter_1", "shelter_1_vandal" ], "fg": [ 3151, 3150, 3152, 3153 ], "bg": 3282, "rotates": true }, + { "id": [ "shelter_roof_1" ], "fg": [ 3155, 3154, 3156, 3157 ], "bg": 3285, "rotates": true }, + { "id": [ "shelter_2", "shelter_2_vandal" ], "fg": [ 3159, 3158, 3160, 3161 ], "bg": 3282, "rotates": true }, + { "id": [ "shelter_roof_2" ], "fg": [ 3163, 3162, 3164, 3165 ], "bg": 3285, "rotates": true }, + { "id": [ "skate_park" ], "fg": [ 3167, 3166, 3168, 3169 ], "bg": 3282, "rotates": true }, + { "id": [ "small_office" ], "fg": [ 3171, 3170, 3172, 3173 ], "bg": 3282, "rotates": true }, + { "id": [ "small_office_roof" ], "fg": [ 3175, 3174, 3176, 3177 ], "bg": 3285, "rotates": true }, + { "id": [ "small_office_upper_roof" ], "fg": [ 3179, 3178, 3180, 3181 ], "bg": 3285, "rotates": true }, + { "id": [ "small_storage_units" ], "fg": [ 3183, 3182, 3184, 3185 ], "bg": 3282, "rotates": true }, + { "id": [ "small_storage_units_roof" ], "fg": [ 3187, 3186, 3188, 3189 ], "bg": 3285, "rotates": true }, + { "id": [ "small_storage_units_1" ], "fg": [ 3191, 3190, 3192, 3193 ], "bg": 3282, "rotates": true }, + { "id": [ "small_storage_units_roof_1" ], "fg": [ 3195, 3194, 3196, 3197 ], "bg": 3285, "rotates": true }, + { "id": [ "small_wooded_trail" ], "fg": [ 3203, 3202, 3204, 3205 ], "bg": 3283, "rotates": true }, + { "id": [ "small_wooded_trail_2" ], "fg": [ 3199, 3198, 3200, 3201 ], "bg": 3283, "rotates": true }, + { "id": [ "smallscrapyard" ], "fg": [ 3207, 3206, 3208, 3209 ], "bg": 3282, "rotates": true }, + { "id": [ "smoke_lounge" ], "fg": [ 3211, 3210, 3212, 3213 ], "bg": 3282, "rotates": true }, + { "id": [ "smoke_lounge_roof" ], "fg": [ 3215, 3214, 3216, 3217 ], "bg": 3285, "rotates": true }, + { "id": [ "smoke_lounge_1" ], "fg": [ 3219, 3218, 3220, 3221 ], "bg": 3282, "rotates": true }, + { "id": [ "smoke_lounge_roof_1" ], "fg": [ 3223, 3222, 3224, 3225 ], "bg": 3285, "rotates": true }, + { "id": [ "station_radio" ], "fg": [ 3227, 3226, 3228, 3229 ], "bg": 3282, "rotates": true }, + { "id": [ "station_radio_roof" ], "fg": [ 3231, 3230, 3232, 3233 ], "bg": 3285, "rotates": true }, + { "id": [ "station_radio_1" ], "fg": [ 3235, 3234, 3236, 3237 ], "bg": 3282, "rotates": true }, + { "id": [ "station_radio_roof_1" ], "fg": [ 3239, 3238, 3240, 3241 ], "bg": 3285, "rotates": true }, + { "id": [ "stripclub" ], "fg": [ 3243, 3242, 3244, 3245 ], "bg": 3282, "rotates": true }, + { "id": [ "stripclub_roof" ], "fg": [ 3247, 3246, 3248, 3249 ], "bg": 3285, "rotates": true }, + { "id": [ "stripclub_1" ], "fg": [ 3251, 3250, 3252, 3253 ], "bg": 3282, "rotates": true }, + { "id": [ "stripclub_roof_1" ], "fg": [ 3255, 3254, 3256, 3257 ], "bg": 3285, "rotates": true }, + { "id": [ "stripclub_2" ], "fg": [ 3259, 3258, 3260, 3261 ], "bg": 3282, "rotates": true }, + { "id": [ "stripclub_roof_2" ], "fg": [ 3263, 3262, 3264, 3265 ], "bg": 3285, "rotates": true }, + { "id": [ "sub_station" ], "fg": [ 3271, 3270, 3272, 3273 ], "bg": 3282, "rotates": true }, + { "id": [ "sub_station_roof" ], "fg": [ 3275, 3274, 3276, 3277 ], "bg": 3285, "rotates": true }, + { "id": [ "sewer_sub_station" ], "fg": [ 3267, 3266, 3268, 3269 ], "bg": 3286, "rotates": true }, + { "id": [ "underground_sub_station" ], "fg": [ 3279, 3278, 3280, 3281 ], "bg": 3286, "rotates": true }, + { "id": "forest_water", "fg": 3288 }, + { "id": [ "forest", "special_forest" ], "fg": 3283, "bg": 3282 }, + { "id": [ "forest_thick", "special_forest_thick" ], "fg": 3284, "bg": 3282 }, + { "id": [ "field", "special_field" ], "fg": 3282 }, + { "id": "open_air", "fg": 3285 }, + { "id": "solid_earth", "fg": 3286 }, + { "id": [ "deep_rock", "empty_rock" ], "fg": 3287 }, { "id": "forest_trail", - "fg": 2992, + "fg": 3304, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2977, "bg": 2972 }, - { "id": "corner", "fg": [ 2979, 2981, 2980, 2978 ], "bg": 2972 }, - { "id": "t_connection", "fg": [ 2989, 2991, 2990, 2988 ], "bg": 2972 }, - { "id": "edge", "fg": [ 2983, 2982 ], "bg": 2972 }, - { "id": "end_piece", "fg": [ 2985, 2987, 2986, 2984 ], "bg": 2972 }, - { "id": "unconnected", "fg": 2992, "bg": 2972 } + { "id": "center", "fg": 3289, "bg": 3284 }, + { "id": "corner", "fg": [ 3291, 3293, 3292, 3290 ], "bg": 3284 }, + { "id": "t_connection", "fg": [ 3301, 3303, 3302, 3300 ], "bg": 3284 }, + { "id": "edge", "fg": [ 3295, 3294 ], "bg": 3284 }, + { "id": "end_piece", "fg": [ 3297, 3299, 3298, 3296 ], "bg": 3284 }, + { "id": "unconnected", "fg": 3304, "bg": 3284 } ] }, - { "id": "river_nw", "fg": 2999, "bg": 2970, "rotates": false }, - { "id": "river_sw", "fg": 3001, "bg": 2970, "rotates": false }, - { "id": "river_se", "fg": 3000, "bg": 2970, "rotates": false }, - { "id": "river_ne", "fg": 2998, "bg": 2970, "rotates": false }, - { "id": "river_north", "fg": 2994, "bg": 2970, "rotates": false }, - { "id": "river_west", "fg": 2996, "bg": 2970, "rotates": false }, - { "id": "river_east", "fg": 2993, "bg": 2970, "rotates": false }, - { "id": "river_south", "fg": 2995, "bg": 2970, "rotates": false }, + { "id": "river_nw", "fg": 3311, "bg": 3282, "rotates": false }, + { "id": "river_sw", "fg": 3313, "bg": 3282, "rotates": false }, + { "id": "river_se", "fg": 3312, "bg": 3282, "rotates": false }, + { "id": "river_ne", "fg": 3310, "bg": 3282, "rotates": false }, + { "id": "river_north", "fg": 3306, "bg": 3282, "rotates": false }, + { "id": "river_west", "fg": 3308, "bg": 3282, "rotates": false }, + { "id": "river_east", "fg": 3305, "bg": 3282, "rotates": false }, + { "id": "river_south", "fg": 3307, "bg": 3282, "rotates": false }, { "id": [ "river_center", "lake_surface", "lake_water_cube", "lake_shore" ], - "fg": 2997, - "bg": 2970, + "fg": 3309, + "bg": 3282, "rotates": false }, - { "id": "river", "fg": [ 2994, 2993, 2995, 2996 ], "bg": 2970, "rotates": true }, - { "id": "river_c_not_nw", "fg": 2997, "bg": 2970, "rotates": false }, - { "id": "river_c_not_ne", "fg": 2997, "bg": 2970, "rotates": false }, - { "id": "river_c_not_sw", "fg": 2997, "bg": 2970, "rotates": false }, - { "id": "river_c_not_se", "fg": 2997, "bg": 2970, "rotates": false }, - { "id": [ "trailhead" ], "fg": [ 3003, 3002, 3004, 3005 ], "bg": 2971, "rotates": true }, - { "id": [ "trailhead_outhouse_z0" ], "fg": [ 3007, 3006, 3008, 3009 ], "bg": 2971, "rotates": true }, - { "id": [ "trailhead_outhouse_z1" ], "fg": [ 3011, 3010, 3012, 3013 ], "bg": 2973, "rotates": true }, - { "id": [ "trailhead_shack_z0" ], "fg": [ 3015, 3014, 3016, 3017 ], "bg": 2971, "rotates": true }, - { "id": [ "trailhead_shack_z1" ], "fg": [ 3019, 3018, 3020, 3021 ], "bg": 2973, "rotates": true }, - { "id": [ "veterinarian" ], "fg": [ 3023, 3022, 3024, 3025 ], "bg": 2970, "rotates": true }, - { "id": [ "veterinarian_roof" ], "fg": [ 3027, 3026, 3028, 3029 ], "bg": 2973, "rotates": true }, - { "id": [ "s_vfw" ], "fg": [ 3031, 3030, 3032, 3033 ], "bg": 2970, "rotates": true }, - { "id": [ "s_vfw_roof" ], "fg": [ 3035, 3034, 3036, 3037 ], "bg": 2973, "rotates": true }, - { "id": [ "warehouse" ], "fg": [ 3039, 3038, 3040, 3041 ], "bg": 2970, "rotates": true }, - { "id": [ "warehouse_roof" ], "fg": [ 3043, 3042, 3044, 3045 ], "bg": 2973, "rotates": true }, - { "id": [ "craft_shop_3" ], "fg": [ 3051, 3050, 3052, 3053 ], "bg": 2970, "rotates": true }, - { "id": [ "craft_shop_2ndfloor_3" ], "fg": [ 3047, 3046, 3048, 3049 ], "bg": 2973, "rotates": true }, - { "id": [ "craft_shop_roof_3" ], "fg": [ 3055, 3054, 3056, 3057 ], "bg": 2973, "rotates": true } + { "id": "river", "fg": [ 3306, 3305, 3307, 3308 ], "bg": 3282, "rotates": true }, + { "id": "river_c_not_nw", "fg": 3309, "bg": 3282, "rotates": false }, + { "id": "river_c_not_ne", "fg": 3309, "bg": 3282, "rotates": false }, + { "id": "river_c_not_sw", "fg": 3309, "bg": 3282, "rotates": false }, + { "id": "river_c_not_se", "fg": 3309, "bg": 3282, "rotates": false }, + { "id": [ "trailerparksmall0" ], "fg": [ 3315, 3314, 3316, 3317 ], "bg": 3282, "rotates": true }, + { "id": [ "trailerparksmall1" ], "fg": [ 3323, 3322, 3324, 3325 ], "bg": 3282, "rotates": true }, + { "id": [ "trailerparksmall2" ], "fg": [ 3331, 3330, 3332, 3333 ], "bg": 3282, "rotates": true }, + { "id": [ "trailerparksmall0_roof" ], "fg": [ 3319, 3318, 3320, 3321 ], "bg": 3285, "rotates": true }, + { "id": [ "trailerparksmall1_roof" ], "fg": [ 3327, 3326, 3328, 3329 ], "bg": 3285, "rotates": true }, + { "id": [ "trailerparksmall2_roof" ], "fg": [ 3335, 3334, 3336, 3337 ], "bg": 3285, "rotates": true }, + { "id": [ "trailhead" ], "fg": [ 3339, 3338, 3340, 3341 ], "bg": 3283, "rotates": true }, + { "id": [ "trailhead_outhouse_z0" ], "fg": [ 3343, 3342, 3344, 3345 ], "bg": 3283, "rotates": true }, + { "id": [ "trailhead_outhouse_z1" ], "fg": [ 3347, 3346, 3348, 3349 ], "bg": 3285, "rotates": true }, + { "id": [ "trailhead_shack_z0" ], "fg": [ 3351, 3350, 3352, 3353 ], "bg": 3283, "rotates": true }, + { "id": [ "trailhead_shack_z1" ], "fg": [ 3355, 3354, 3356, 3357 ], "bg": 3285, "rotates": true }, + { "id": [ "veterinarian" ], "fg": [ 3359, 3358, 3360, 3361 ], "bg": 3282, "rotates": true }, + { "id": [ "veterinarian_roof" ], "fg": [ 3363, 3362, 3364, 3365 ], "bg": 3285, "rotates": true }, + { "id": [ "s_vfw" ], "fg": [ 3367, 3366, 3368, 3369 ], "bg": 3282, "rotates": true }, + { "id": [ "s_vfw_roof" ], "fg": [ 3371, 3370, 3372, 3373 ], "bg": 3285, "rotates": true }, + { "id": [ "warehouse" ], "fg": [ 3375, 3374, 3376, 3377 ], "bg": 3282, "rotates": true }, + { "id": [ "warehouse_roof" ], "fg": [ 3379, 3378, 3380, 3381 ], "bg": 3285, "rotates": true }, + { "id": [ "craft_shop_3" ], "fg": [ 3387, 3386, 3388, 3389 ], "bg": 3282, "rotates": true }, + { "id": [ "craft_shop_2ndfloor_3" ], "fg": [ 3383, 3382, 3384, 3385 ], "bg": 3285, "rotates": true }, + { "id": [ "craft_shop_roof_3" ], "fg": [ 3391, 3390, 3392, 3393 ], "bg": 3285, "rotates": true } ] }, { diff --git a/gfx/UltimateCataclysm/centered.png b/gfx/UltimateCataclysm/centered.png index 08abbe9534b70..28275a93e0000 100644 Binary files a/gfx/UltimateCataclysm/centered.png and b/gfx/UltimateCataclysm/centered.png differ diff --git a/gfx/UltimateCataclysm/human_body_plus.png b/gfx/UltimateCataclysm/human_body_plus.png index 0e863bd771f07..08adf291983d8 100644 Binary files a/gfx/UltimateCataclysm/human_body_plus.png and b/gfx/UltimateCataclysm/human_body_plus.png differ diff --git a/gfx/UltimateCataclysm/incomplete.png b/gfx/UltimateCataclysm/incomplete.png index fdad52550adc7..48b684167ef9c 100644 Binary files a/gfx/UltimateCataclysm/incomplete.png and b/gfx/UltimateCataclysm/incomplete.png differ diff --git a/gfx/UltimateCataclysm/incomplete_large.png b/gfx/UltimateCataclysm/incomplete_large.png index 18e10677f7493..c773e692d7525 100644 Binary files a/gfx/UltimateCataclysm/incomplete_large.png and b/gfx/UltimateCataclysm/incomplete_large.png differ diff --git a/gfx/UltimateCataclysm/large.png b/gfx/UltimateCataclysm/large.png index 536ec5cf5a2fb..281cb614bb1f6 100644 Binary files a/gfx/UltimateCataclysm/large.png and b/gfx/UltimateCataclysm/large.png differ diff --git a/gfx/UltimateCataclysm/normal.png b/gfx/UltimateCataclysm/normal.png index 2df2ef00edf8e..f15c51ba24045 100644 Binary files a/gfx/UltimateCataclysm/normal.png and b/gfx/UltimateCataclysm/normal.png differ diff --git a/gfx/UltimateCataclysm/small.png b/gfx/UltimateCataclysm/small.png index a08c16e1d0fef..d0462b3847aea 100644 Binary files a/gfx/UltimateCataclysm/small.png and b/gfx/UltimateCataclysm/small.png differ diff --git a/gfx/UltimateCataclysm/tall.png b/gfx/UltimateCataclysm/tall.png index 3905df30d4728..f2f12d56fe67d 100644 Binary files a/gfx/UltimateCataclysm/tall.png and b/gfx/UltimateCataclysm/tall.png differ diff --git a/gfx/UltimateCataclysm/tile_config.json b/gfx/UltimateCataclysm/tile_config.json index cdea145fc3670..d11681e5371fe 100644 --- a/gfx/UltimateCataclysm/tile_config.json +++ b/gfx/UltimateCataclysm/tile_config.json @@ -19,32 +19,32 @@ { "id": [ "glasses_eye", "glasses_reading" ], "fg": 156 }, { "id": [ "jackhammer", "elec_jackhammer" ], "fg": 174 }, { "id": [ "sunglasses", "sunglasses_bifocal", "sunglasses_eye", "sunglasses_reading" ], "fg": 237 }, - { "id": "helmet_motor", "fg": 268 }, - { "id": "katana", "fg": 269 }, - { "id": "katana_fake", "fg": 269 }, - { "id": "katana_inferior", "fg": 269 }, - { "id": "223_casing", "fg": 270 }, - { "id": "40mm_casing", "fg": 271 }, - { "id": "40x46mm_m118_casing", "fg": 271 }, - { "id": "50_casing", "fg": 272 }, - { "id": "9mm_casing", "fg": 273 }, - { "id": "arrow_cf", "fg": 274 }, - { "id": "arrow_exploding", "fg": 275 }, - { "id": "arrow_field_point_fletched", "fg": 276 }, - { "id": "arrow_fire_hardened_fletched", "fg": 277 }, - { "id": "flamable_arrow", "fg": 291 }, - { "id": "arrow_flamming", "fg": 278 }, - { "id": "arrow_heavy_fire_hardened_fletched", "fg": 279 }, - { "id": "arrow_metal", "fg": 280 }, - { "id": "arrow_metal_sharpened_fletched", "fg": 281 }, - { "id": "arrow_plastic", "fg": 282 }, - { "id": "arrow_small_game_fletched", "fg": 283 }, - { "id": "arrow_wood", "fg": 284 }, - { "id": "arrow_wood_heavy", "fg": 285 }, - { "id": "bolt_cf", "fg": 286 }, - { "id": "bolt_explosive", "fg": 287 }, - { "id": "bolt_metal", "fg": 288 }, - { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 289 }, + { "id": "helmet_motor", "fg": 269 }, + { "id": "katana", "fg": 270 }, + { "id": "katana_fake", "fg": 270 }, + { "id": "katana_inferior", "fg": 270 }, + { "id": "223_casing", "fg": 271 }, + { "id": "40mm_casing", "fg": 272 }, + { "id": "40x46mm_m118_casing", "fg": 272 }, + { "id": "50_casing", "fg": 273 }, + { "id": "9mm_casing", "fg": 274 }, + { "id": "arrow_cf", "fg": 275 }, + { "id": "arrow_exploding", "fg": 276 }, + { "id": "arrow_field_point_fletched", "fg": 277 }, + { "id": "arrow_fire_hardened_fletched", "fg": 278 }, + { "id": "flamable_arrow", "fg": 292 }, + { "id": "arrow_flamming", "fg": 279 }, + { "id": "arrow_heavy_fire_hardened_fletched", "fg": 280 }, + { "id": "arrow_metal", "fg": 281 }, + { "id": "arrow_metal_sharpened_fletched", "fg": 282 }, + { "id": "arrow_plastic", "fg": 283 }, + { "id": "arrow_small_game_fletched", "fg": 284 }, + { "id": "arrow_wood", "fg": 285 }, + { "id": "arrow_wood_heavy", "fg": 286 }, + { "id": "bolt_cf", "fg": 287 }, + { "id": "bolt_explosive", "fg": 288 }, + { "id": "bolt_metal", "fg": 289 }, + { "id": [ "bolt_steel", "bolt_steel_bodkin", "bolt_steel_target" ], "fg": 290 }, { "id": [ "bolt_wood", @@ -55,62 +55,62 @@ "bolt_wood_bodkin", "bolt_wood_small_game" ], - "fg": 290 - }, - { "id": "shot_hull", "fg": 292 }, - { "id": [ "90two", "90two40" ], "fg": 304 }, - { "id": [ "TDI", "TDI_10" ], "fg": 306 }, - { "id": [ "hk_mp5", "hk_mp5_10_semi" ], "fg": 337 }, - { "id": [ "hptjcp", "hptjhp" ], "fg": 343 }, - { "id": [ "m1911", "m1911a1_38super" ], "fg": 354 }, - { "id": "basket_laundry", "fg": 427 }, - { "id": "heavy_battery_cell", "fg": 429 }, - { "id": "heavy_plus_battery_cell", "fg": 429 }, - { "id": "heavy_disposable_cell", "fg": 429 }, - { "id": "heavy_atomic_battery_cell", "fg": 428 }, - { "id": "light_battery_cell", "fg": 431 }, - { "id": "light_minus_battery_cell", "fg": 433 }, - { "id": "light_plus_battery_cell", "fg": 431 }, - { "id": "light_disposable_cell", "fg": 431 }, - { "id": "light_atomic_battery_cell", "fg": 430 }, - { "id": "light_minus_atomic_battery_cell", "fg": 432 }, - { "id": "medium_battery_cell", "fg": 435 }, - { "id": "medium_plus_battery_cell", "fg": 435 }, - { "id": "medium_disposable_cell", "fg": 435 }, - { "id": "medium_atomic_battery_cell", "fg": 434 }, - { "id": "bead_bracelet", "fg": 436 }, - { "id": "bone", "fg": 437 }, - { "id": "bone_human", "fg": 438 }, - { "id": "bone_tainted", "fg": 439 }, - { "id": "SICP", "fg": 440 }, - { "id": [ "flyer", "necropolis_leaflet", "abstractmap" ], "fg": 443 }, - { "id": "book_fict_soft_tpl", "fg": 453 }, - { "id": "novel_adventure", "fg": 453 }, - { "id": "novel_buddy", "fg": 454 }, - { "id": "novel_coa", "fg": 455 }, - { "id": "novel_coa2", "fg": 456 }, - { "id": "novel_crime", "fg": 457 }, - { "id": "novel_crime2", "fg": 458 }, - { "id": "novel_drama", "fg": 459 }, - { "id": "novel_erotic", "fg": 460 }, - { "id": "novel_experimental", "fg": 461 }, - { "id": "novel_fantasy", "fg": 462 }, - { "id": "novel_horror", "fg": 463 }, - { "id": "novel_mystery", "fg": 464 }, - { "id": "novel_pulp", "fg": 465 }, - { "id": "novel_road", "fg": 466 }, - { "id": "novel_romance", "fg": 467 }, - { "id": "novel_samurai", "fg": 468 }, - { "id": "novel_satire", "fg": 469 }, - { "id": "novel_scifi", "fg": 470 }, - { "id": "novel_sports", "fg": 471 }, - { "id": "novel_spy", "fg": 472 }, - { "id": "novel_swash", "fg": 473 }, - { "id": "novel_thriller", "fg": 474 }, - { "id": "novel_tragedy", "fg": 475 }, - { "id": "novel_war", "fg": 476 }, - { "id": "novel_war2", "fg": 477 }, - { "id": "novel_western", "fg": 478 }, + "fg": 291 + }, + { "id": "shot_hull", "fg": 293 }, + { "id": [ "90two", "90two40" ], "fg": 305 }, + { "id": [ "TDI", "TDI_10" ], "fg": 307 }, + { "id": [ "hk_mp5", "hk_mp5_10_semi" ], "fg": 338 }, + { "id": [ "hptjcp", "hptjhp" ], "fg": 344 }, + { "id": [ "m1911", "m1911a1_38super" ], "fg": 355 }, + { "id": "basket_laundry", "fg": 428 }, + { "id": "heavy_battery_cell", "fg": 430 }, + { "id": "heavy_plus_battery_cell", "fg": 430 }, + { "id": "heavy_disposable_cell", "fg": 430 }, + { "id": "heavy_atomic_battery_cell", "fg": 429 }, + { "id": "light_battery_cell", "fg": 432 }, + { "id": "light_minus_battery_cell", "fg": 434 }, + { "id": "light_plus_battery_cell", "fg": 432 }, + { "id": "light_disposable_cell", "fg": 432 }, + { "id": "light_atomic_battery_cell", "fg": 431 }, + { "id": "light_minus_atomic_battery_cell", "fg": 433 }, + { "id": "medium_battery_cell", "fg": 436 }, + { "id": "medium_plus_battery_cell", "fg": 436 }, + { "id": "medium_disposable_cell", "fg": 436 }, + { "id": "medium_atomic_battery_cell", "fg": 435 }, + { "id": "bead_bracelet", "fg": 437 }, + { "id": "bone", "fg": 438 }, + { "id": "bone_human", "fg": 439 }, + { "id": "bone_tainted", "fg": 440 }, + { "id": "SICP", "fg": 441 }, + { "id": [ "flyer", "necropolis_leaflet", "abstractmap" ], "fg": 444 }, + { "id": "book_fict_soft_tpl", "fg": 454 }, + { "id": "novel_adventure", "fg": 454 }, + { "id": "novel_buddy", "fg": 455 }, + { "id": "novel_coa", "fg": 456 }, + { "id": "novel_coa2", "fg": 457 }, + { "id": "novel_crime", "fg": 458 }, + { "id": "novel_crime2", "fg": 459 }, + { "id": "novel_drama", "fg": 460 }, + { "id": "novel_erotic", "fg": 461 }, + { "id": "novel_experimental", "fg": 462 }, + { "id": "novel_fantasy", "fg": 463 }, + { "id": "novel_horror", "fg": 464 }, + { "id": "novel_mystery", "fg": 465 }, + { "id": "novel_pulp", "fg": 466 }, + { "id": "novel_road", "fg": 467 }, + { "id": "novel_romance", "fg": 468 }, + { "id": "novel_samurai", "fg": 469 }, + { "id": "novel_satire", "fg": 470 }, + { "id": "novel_scifi", "fg": 471 }, + { "id": "novel_sports", "fg": 472 }, + { "id": "novel_spy", "fg": 473 }, + { "id": "novel_swash", "fg": 474 }, + { "id": "novel_thriller", "fg": 475 }, + { "id": "novel_tragedy", "fg": 476 }, + { "id": "novel_war", "fg": 477 }, + { "id": "novel_war2", "fg": 478 }, + { "id": "novel_western", "fg": 479 }, { "id": [ "adv_chemistry", @@ -130,7 +130,7 @@ "modern_tanner", "repeater_mod_guide" ], - "fg": 445 + "fg": 446 }, { "id": [ @@ -151,7 +151,7 @@ "textbook_robots", "textbook_armschina" ], - "fg": 452 + "fg": 453 }, { "id": [ @@ -166,7 +166,7 @@ "cookbook_daintydishes", "cookbook_liverforkids" ], - "fg": 446 + "fg": 447 }, { "id": [ @@ -179,7 +179,7 @@ "recipe_melee", "recipe_labchem" ], - "fg": 450 + "fg": 451 }, { "id": [ @@ -196,9 +196,9 @@ "recipe_creepy", "recipe_maiar" ], - "fg": 450 + "fg": 451 }, - { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 449 }, + { "id": [ "pocket_firstaid", "pocket_firearms", "pocket_survival" ], "fg": 450 }, { "id": [ "mag_rifle", @@ -222,7 +222,7 @@ "mag_swimming", "mag_news" ], - "fg": 447 + "fg": 448 }, { "id": [ @@ -239,7 +239,7 @@ "schematics_searchlight", "schematics_secubot" ], - "fg": 451 + "fg": 452 }, { "id": [ @@ -260,113 +260,113 @@ "manual_shotgun", "manual_fabrication" ], - "fg": 448 - }, - { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 444 }, - { "id": "bottle_twoliter", "fg": 479 }, - { "id": "bowl_pewter", "fg": 480 }, - { "id": [ "wearable_light", "survivor_light", "wearable_atomic_light_off" ], "fg": 572 }, - { "id": [ "wearable_light_on", "survivor_light_on", "wearable_atomic_light" ], "fg": 573 }, - { "id": [ "alternator_car", "alternator_bicycle", "alternator_motorbike" ], "fg": 589 }, - { "id": [ "flour", "bread_flour" ], "fg": 612 }, - { "id": [ "pizza_cheese", "pizza_veggy", "pizza_meat" ], "fg": 643 }, - { "id": [ "microscope", "microscope_dissecting" ], "fg": 637 }, - { "id": "digging_stick", "fg": 661 }, - { "id": "sword_cane", "fg": 720 }, - { "id": "hollow_cane", "fg": 697 }, - { "id": "cane", "fg": 723 }, - { "id": "i_staff", "fg": 699 }, - { "id": "shock_staff", "fg": 712 }, - { "id": "q_staff", "fg": 713 }, - { "id": "scarf_fur", "fg": 717 }, - { "id": "knit_scarf", "fg": 700 }, - { "id": "scarf_fur_long", "fg": 718 }, - { "id": "long_knit_scarf", "fg": 701 }, - { "id": "long_patchwork_scarf", "fg": 702 }, - { "id": "scarf_long", "fg": 719 }, - { "id": "patchwork_scarf", "fg": 710 }, - { "id": "scarf", "fg": 716 }, - { "id": "scarf_fur_loose", "fg": 717 }, - { "id": "knit_scarf_loose", "fg": 700 }, - { "id": "scarf_fur_long_loose", "fg": 718 }, - { "id": "long_knit_scarf_loose", "fg": 701 }, - { "id": "long_patchwork_scarf_loose", "fg": 702 }, - { "id": "scarf_long_loose", "fg": 719 }, - { "id": "patchwork_scarf_loose", "fg": 710 }, - { "id": "scarf_loose", "fg": 716 }, - { "id": "ceramic_cup", "fg": 733 }, - { "id": "ceramic_mug", "fg": 734 }, - { "id": "ceramic_shard", "fg": 735 }, - { "id": "chain", "fg": 736 }, - { "id": "clay_lump", "fg": 739 }, - { "id": "bag_plastic", "fg": 740 }, - { "id": "bag_zipper", "fg": 741 }, - { "id": "bottle_glass", "fg": 742 }, - { "id": "bottle_plastic", "fg": 743 }, - { "id": "bottle_plastic_small", "fg": 744 }, - { "id": "box_cigarette", "fg": 745 }, - { "id": "box_small", "fg": 746 }, - { "id": "can_drink", "fg": 747 }, - { "id": "can_drink_unsealed", "fg": 748 }, - { "id": [ "glass", "base_glass_dish" ], "fg": 749 }, - { "id": "jar_3l_glass", "fg": 750 }, - { "id": "jar_3l_glass_sealed", "fg": 751 }, - { "id": "jar_glass", "fg": 752 }, - { "id": "jar_glass_sealed", "fg": 753 }, - { "id": "jug_plastic", "fg": 754 }, - { "id": "wrapper", "fg": 755 }, - { "id": "cudgel", "fg": 756 }, - { "id": [ "pie", "pie_maple", "pie_veggy", "pie_meat" ], "bg": 828 }, - { "id": [ "waffles", "fruit_waffles" ], "fg": 832 }, - { "id": [ "cookies", "crackers", "biscuit" ], "fg": 824 }, - { "id": [ "cake2", "cake3", "space_cake" ], "fg": 823 }, - { "id": "hinge", "fg": 876 }, - { "id": "inhaler", "fg": 877 }, - { "id": [ "kasaya", "samghati", "antarvasa", "uttarasanga" ], "fg": 878 }, - { "id": "cig_butt", "fg": 905 }, - { "id": "joint", "fg": 908 }, - { "id": "joint_lit", "fg": 909 }, - { "id": "joint_roach", "fg": 910 }, - { "id": "aspirin", "fg": 902 }, - { "id": "bandages", "fg": 903 }, - { "id": "syringe", "fg": 914 }, - { "id": "antibiotics", "fg": 899 }, - { "id": "weak_antibiotic", "fg": 917 }, - { "id": "strong_antibiotic", "fg": 913 }, - { "id": "vitamins", "fg": 916 }, - { "id": "gummy_vitamins", "fg": 906 }, - { "id": "calcium_tablet", "fg": 904 }, - { "id": "oxycodone", "fg": 911 }, - { "id": "tramadol", "fg": 915 }, - { "id": "codeine", "fg": 930 }, - { "id": "prussian_blue", "fg": 912 }, - { "id": "iodine", "fg": 907 }, - { "id": "antiparasitic", "fg": 901 }, - { "id": "antifungal", "fg": 900 }, - { "id": "money_bundle", "fg": 918 }, - { "id": "mp3", "fg": 919 }, - { "id": "permanent_marker", "fg": 954 }, - { "id": "pipe", "fg": 956 }, - { "id": "cu_pipe", "fg": 955 }, - { "id": "acorns", "fg": 957 }, - { "id": "chips", "fg": 961 }, - { "id": "apple", "fg": 958 }, - { "id": "banana", "fg": 959 }, - { "id": "broccoli", "fg": 960 }, - { "id": "corn", "fg": 962 }, - { "id": "cucumber", "fg": 963 }, - { "id": "egg_bird", "fg": 964 }, - { "id": "grapes", "fg": 965 }, - { "id": "lemon", "fg": 969 }, - { "id": "onion", "fg": 970 }, - { "id": "orange", "fg": 971 }, - { "id": "pear", "fg": 972 }, - { "id": "potato", "fg": 973 }, - { "id": "pumpkin", "fg": 974 }, - { "id": "tomato", "fg": 977 }, - { "id": "hickory_nut", "fg": 966 }, - { "id": "hickory_root", "fg": 967 }, - { "id": "juniper", "fg": 968 }, + "fg": 449 + }, + { "id": [ "record_patient", "tailor_portfolio", "isherwood_herbal_remedies" ], "fg": 445 }, + { "id": "bottle_twoliter", "fg": 480 }, + { "id": "bowl_pewter", "fg": 481 }, + { "id": [ "wearable_light", "survivor_light", "wearable_atomic_light_off" ], "fg": 573 }, + { "id": [ "wearable_light_on", "survivor_light_on", "wearable_atomic_light" ], "fg": 574 }, + { "id": [ "alternator_car", "alternator_bicycle", "alternator_motorbike" ], "fg": 590 }, + { "id": [ "flour", "bread_flour" ], "fg": 615 }, + { "id": [ "pizza_cheese", "pizza_veggy", "pizza_meat" ], "fg": 646 }, + { "id": [ "microscope", "microscope_dissecting" ], "fg": 640 }, + { "id": "digging_stick", "fg": 664 }, + { "id": "sword_cane", "fg": 723 }, + { "id": "hollow_cane", "fg": 700 }, + { "id": "cane", "fg": 726 }, + { "id": "i_staff", "fg": 702 }, + { "id": "shock_staff", "fg": 715 }, + { "id": "q_staff", "fg": 716 }, + { "id": "scarf_fur", "fg": 720 }, + { "id": "knit_scarf", "fg": 703 }, + { "id": "scarf_fur_long", "fg": 721 }, + { "id": "long_knit_scarf", "fg": 704 }, + { "id": "long_patchwork_scarf", "fg": 705 }, + { "id": "scarf_long", "fg": 722 }, + { "id": "patchwork_scarf", "fg": 713 }, + { "id": "scarf", "fg": 719 }, + { "id": "scarf_fur_loose", "fg": 720 }, + { "id": "knit_scarf_loose", "fg": 703 }, + { "id": "scarf_fur_long_loose", "fg": 721 }, + { "id": "long_knit_scarf_loose", "fg": 704 }, + { "id": "long_patchwork_scarf_loose", "fg": 705 }, + { "id": "scarf_long_loose", "fg": 722 }, + { "id": "patchwork_scarf_loose", "fg": 713 }, + { "id": "scarf_loose", "fg": 719 }, + { "id": "ceramic_cup", "fg": 736 }, + { "id": "ceramic_mug", "fg": 737 }, + { "id": "ceramic_shard", "fg": 738 }, + { "id": "chain", "fg": 739 }, + { "id": "clay_lump", "fg": 742 }, + { "id": "bag_plastic", "fg": 743 }, + { "id": "bag_zipper", "fg": 744 }, + { "id": "bottle_glass", "fg": 745 }, + { "id": "bottle_plastic", "fg": 746 }, + { "id": "bottle_plastic_small", "fg": 747 }, + { "id": "box_cigarette", "fg": 748 }, + { "id": "box_small", "fg": 749 }, + { "id": "can_drink", "fg": 750 }, + { "id": "can_drink_unsealed", "fg": 751 }, + { "id": [ "glass", "base_glass_dish" ], "fg": 752 }, + { "id": "jar_3l_glass", "fg": 753 }, + { "id": "jar_3l_glass_sealed", "fg": 754 }, + { "id": "jar_glass", "fg": 755 }, + { "id": "jar_glass_sealed", "fg": 756 }, + { "id": "jug_plastic", "fg": 757 }, + { "id": "wrapper", "fg": 758 }, + { "id": "cudgel", "fg": 759 }, + { "id": [ "pie", "pie_maple", "pie_veggy", "pie_meat" ], "bg": 831 }, + { "id": [ "waffles", "fruit_waffles" ], "fg": 835 }, + { "id": [ "cookies", "crackers", "biscuit" ], "fg": 827 }, + { "id": [ "cake2", "cake3", "space_cake" ], "fg": 826 }, + { "id": "hinge", "fg": 879 }, + { "id": "inhaler", "fg": 880 }, + { "id": [ "kasaya", "samghati", "antarvasa", "uttarasanga" ], "fg": 881 }, + { "id": "cig_butt", "fg": 908 }, + { "id": "joint", "fg": 911 }, + { "id": "joint_lit", "fg": 912 }, + { "id": "joint_roach", "fg": 913 }, + { "id": "aspirin", "fg": 905 }, + { "id": "bandages", "fg": 906 }, + { "id": "syringe", "fg": 917 }, + { "id": "antibiotics", "fg": 902 }, + { "id": "weak_antibiotic", "fg": 920 }, + { "id": "strong_antibiotic", "fg": 916 }, + { "id": "vitamins", "fg": 919 }, + { "id": "gummy_vitamins", "fg": 909 }, + { "id": "calcium_tablet", "fg": 907 }, + { "id": "oxycodone", "fg": 914 }, + { "id": "tramadol", "fg": 918 }, + { "id": "codeine", "fg": 933 }, + { "id": "prussian_blue", "fg": 915 }, + { "id": "iodine", "fg": 910 }, + { "id": "antiparasitic", "fg": 904 }, + { "id": "antifungal", "fg": 903 }, + { "id": "money_bundle", "fg": 921 }, + { "id": "mp3", "fg": 922 }, + { "id": "permanent_marker", "fg": 957 }, + { "id": "pipe", "fg": 959 }, + { "id": "cu_pipe", "fg": 958 }, + { "id": "acorns", "fg": 960 }, + { "id": "chips", "fg": 964 }, + { "id": "apple", "fg": 961 }, + { "id": "banana", "fg": 962 }, + { "id": "broccoli", "fg": 963 }, + { "id": "corn", "fg": 965 }, + { "id": "cucumber", "fg": 966 }, + { "id": "egg_bird", "fg": 967 }, + { "id": "grapes", "fg": 968 }, + { "id": "lemon", "fg": 972 }, + { "id": "onion", "fg": 973 }, + { "id": "orange", "fg": 974 }, + { "id": "pear", "fg": 975 }, + { "id": "potato", "fg": 976 }, + { "id": "pumpkin", "fg": 977 }, + { "id": "tomato", "fg": 980 }, + { "id": "hickory_nut", "fg": 969 }, + { "id": "hickory_root", "fg": 970 }, + { "id": "juniper", "fg": 971 }, { "id": [ "seed_hops", @@ -434,73 +434,73 @@ "seed_mulberries", "seed_elderberries" ], - "fg": 975 - }, - { "id": "straw_pile", "fg": 976 }, - { "id": "wheat", "fg": 978 }, - { "id": "withered", "fg": 979 }, - { "id": "bee_balm", "fg": 980 }, - { "id": "carrot_wild", "fg": 981 }, - { "id": "dogbane", "fg": 982 }, - { "id": "egg_reptile", "fg": 983 }, - { "id": "mugwort", "fg": 984 }, - { "id": "thyme", "fg": 985 }, - { "id": "veggy_wild", "fg": 986 }, - { "id": "wild_herbs", "fg": 987 }, - { "id": "feces_manure", "fg": 991 }, - { "id": "feces_bird", "fg": 988 }, - { "id": "feces_cow", "fg": 989 }, - { "id": "feces_dog", "fg": 990 }, - { "id": "feces_roach", "fg": 992 }, - { "id": "fetid_goop", "fg": 993 }, - { "id": "rag_bloody", "fg": 996 }, - { "id": "ash", "fg": 1046 }, - { "id": "brick", "fg": 1047 }, - { "id": "scrap", "fg": 1050 }, - { "id": "e_scrap", "fg": 1049 }, - { "id": "steel_chunk", "fg": 1051 }, - { "id": "steel_lump", "fg": 1052 }, - { "id": "wire", "fg": 1053 }, - { "id": "cable", "fg": 1048 }, - { "id": "spring", "fg": 1055 }, - { "id": "survnote", "fg": 1056 }, - { "id": "creepy_doll", "fg": 1057 }, - { "id": "talking_doll", "fg": 1057 }, - { "id": "teapot", "fg": 1059 }, - { "id": "thermometer", "fg": 1060 }, - { "id": "crucible_clay", "fg": 1062 }, - { "id": "flashlight", "fg": 1064 }, - { "id": "heavy_flashlight", "fg": 1067 }, - { "id": "saw", "fg": 1077 }, - { "id": "screwdriver_set", "fg": 1073 }, - { "id": "wrench", "fg": 1078 }, - { "id": "hammer", "fg": 1066 }, - { "id": "hacksaw", "fg": 1065 }, - { "id": "knife_meat_cleaver", "fg": 1072 }, - { "id": "knife_vegetable_cleaver", "fg": 1076 }, + "fg": 978 + }, + { "id": "straw_pile", "fg": 979 }, + { "id": "wheat", "fg": 981 }, + { "id": "withered", "fg": 982 }, + { "id": "bee_balm", "fg": 983 }, + { "id": "carrot_wild", "fg": 984 }, + { "id": "dogbane", "fg": 985 }, + { "id": "egg_reptile", "fg": 986 }, + { "id": "mugwort", "fg": 987 }, + { "id": "thyme", "fg": 988 }, + { "id": "veggy_wild", "fg": 989 }, + { "id": "wild_herbs", "fg": 990 }, + { "id": "feces_manure", "fg": 994 }, + { "id": "feces_bird", "fg": 991 }, + { "id": "feces_cow", "fg": 992 }, + { "id": "feces_dog", "fg": 993 }, + { "id": "feces_roach", "fg": 995 }, + { "id": "fetid_goop", "fg": 996 }, + { "id": "rag_bloody", "fg": 999 }, + { "id": "ash", "fg": 1049 }, + { "id": "brick", "fg": 1050 }, + { "id": "scrap", "fg": 1053 }, + { "id": "e_scrap", "fg": 1052 }, + { "id": "steel_chunk", "fg": 1054 }, + { "id": "steel_lump", "fg": 1055 }, + { "id": "wire", "fg": 1056 }, + { "id": "cable", "fg": 1051 }, + { "id": "spring", "fg": 1058 }, + { "id": "survnote", "fg": 1059 }, + { "id": "creepy_doll", "fg": 1060 }, + { "id": "talking_doll", "fg": 1060 }, + { "id": "teapot", "fg": 1062 }, + { "id": "thermometer", "fg": 1063 }, + { "id": "crucible_clay", "fg": 1065 }, + { "id": "flashlight", "fg": 1067 }, + { "id": "heavy_flashlight", "fg": 1070 }, + { "id": "saw", "fg": 1080 }, + { "id": "screwdriver_set", "fg": 1076 }, + { "id": "wrench", "fg": 1081 }, + { "id": "hammer", "fg": 1069 }, + { "id": "hacksaw", "fg": 1068 }, + { "id": "knife_meat_cleaver", "fg": 1075 }, + { "id": "knife_vegetable_cleaver", "fg": 1079 }, { "id": "lighter", - "fg": [ { "weight": 1, "sprite": 1069 }, { "weight": 1, "sprite": 1068 }, { "weight": 1, "sprite": 1070 } ] - }, - { "id": "makeshift_crowbar", "fg": 1071 }, - { "id": "esbit_stove", "fg": 1063 }, - { "id": "usb_drive", "fg": 1075 }, - { "id": "cash_card", "fg": 1079 }, - { "id": "file", "fg": 1080 }, - { "id": "fp_loyalty_card", "fg": 1081 }, - { "id": "id_industrial", "fg": 1082 }, - { "id": "id_military", "fg": 1083 }, - { "id": "id_science", "fg": 1084 }, - { "id": "bowl_plastic", "fg": 1085 }, - { "id": "cup_plastic", "fg": 1086 }, - { "id": "fork", "fg": 1087 }, - { "id": "knife_butter", "fg": 1088 }, - { "id": "washboard", "fg": 1095 }, - { "id": "wash_kit", "fg": 1094 }, - { "id": "helmet_army", "fg": 1100 }, - { "id": "foodperson_mask", "fg": 1098 }, - { "id": "foodperson_mask_on", "fg": 1099 }, - { "id": "ballistic_vest_esapi", "fg": 1097 }, + "fg": [ { "weight": 1, "sprite": 1072 }, { "weight": 1, "sprite": 1071 }, { "weight": 1, "sprite": 1073 } ] + }, + { "id": "makeshift_crowbar", "fg": 1074 }, + { "id": "esbit_stove", "fg": 1066 }, + { "id": "usb_drive", "fg": 1078 }, + { "id": "cash_card", "fg": 1082 }, + { "id": "file", "fg": 1083 }, + { "id": "fp_loyalty_card", "fg": 1084 }, + { "id": "id_industrial", "fg": 1085 }, + { "id": "id_military", "fg": 1086 }, + { "id": "id_science", "fg": 1087 }, + { "id": "bowl_plastic", "fg": 1088 }, + { "id": "cup_plastic", "fg": 1089 }, + { "id": "fork", "fg": 1090 }, + { "id": "knife_butter", "fg": 1091 }, + { "id": "washboard", "fg": 1098 }, + { "id": "wash_kit", "fg": 1097 }, + { "id": "helmet_army", "fg": 1103 }, + { "id": "foodperson_mask", "fg": 1101 }, + { "id": "foodperson_mask_on", "fg": 1102 }, + { "id": "ballistic_vest_esapi", "fg": 1100 }, { "id": "saddle", "fg": 1 }, { "id": "blt", "fg": 4 }, { "id": "brain_cooked", "fg": 5 }, @@ -741,624 +741,627 @@ { "id": "tonfa", "fg": 245 }, { "id": "tonfa_wood", "fg": 246 }, { "id": "tongs", "fg": 247 }, - { "id": "unfinished_charcoal", "fg": 248 }, - { "id": "w_paint", "fg": 249 }, - { "id": "water_purifier", "fg": 250 }, - { "id": "wheel", "fg": 251 }, - { "id": "wheel_10", "fg": 252 }, - { "id": "wheel_barrow", "fg": 253 }, - { "id": "wheel_bicycle", "fg": 254 }, - { "id": "wheel_bicycle_or", "fg": 255 }, - { "id": "wheel_motorbike", "fg": 256 }, - { "id": "wheel_motorbike_or", "fg": 257 }, - { "id": "wheel_skate", "fg": 258 }, - { "id": "wheel_slick", "fg": 259 }, - { "id": "wheel_small", "fg": 260 }, - { "id": "wheel_tricycle", "fg": 261 }, - { "id": "wheel_wheelchair", "fg": 262 }, - { "id": "whisk", "fg": 263 }, - { "id": "wine_glass", "fg": 264 }, - { "id": "wire_barbed", "fg": 265 }, - { "id": "y_paint", "fg": 266 }, - { "id": "halligan", "fg": 267 }, - { "id": "cig", "fg": 293 }, - { "id": "cig_lit", "fg": 294 }, - { "id": "copper_ring", "fg": 295 }, - { "id": "g_shovel", "fg": 296 }, - { "id": "lsd", "fg": 297 }, - { "id": "silver_ring", "fg": 298 }, - { "id": "thermal_mask", "fg": 299 }, - { "id": "thermal_socks", "fg": 300 }, - { "id": "tie_clipon", "fg": 301 }, - { "id": "whistle", "fg": 302 }, - { "id": "2_shot_special", "fg": 303 }, - { "id": "LAW_Packed", "fg": 305 }, - { "id": "af2011a1_38super", "fg": 307 }, - { "id": "ar_pistol", "fg": 308 }, - { "id": "ashot", "fg": 309 }, - { "id": "bfr", "fg": 310 }, - { "id": "bigun", "fg": 311 }, - { "id": "bond_410", "fg": 312 }, - { "id": "bt_apc9k", "fg": 313 }, - { "id": "colt_army", "fg": 314 }, - { "id": "colt_navy", "fg": 315 }, - { "id": "colt_saa", "fg": 316 }, - { "id": "cop_38", "fg": 317 }, - { "id": "cz75", "fg": 318 }, - { "id": "deagle_44", "fg": 319 }, - { "id": "draco", "fg": 320 }, - { "id": "flamethrower_crude", "fg": 321 }, - { "id": "flamethrower_simple", "fg": 322 }, - { "id": "fn1910", "fg": 323 }, - { "id": "fn57", "fg": 324 }, - { "id": "fn_p90", "fg": 325 }, - { "id": "glock_17", "fg": 326 }, - { "id": "glock_18c", "fg": 327 }, - { "id": "glock_19", "fg": 328 }, - { "id": "glock_20", "fg": 329 }, - { "id": "glock_20_var_glock_40", "fg": 330 }, - { "id": "glock_21", "fg": 331 }, - { "id": "glock_22", "fg": 332 }, - { "id": "glock_29", "fg": 333 }, - { "id": "glock_31", "fg": 334 }, - { "id": "hi_power_40", "fg": 335 }, - { "id": "hi_power_9mm", "fg": 336 }, - { "id": "hk_mp5_semi_pistol", "fg": 338 }, - { "id": "hk_mp7", "fg": 339 }, - { "id": "hk_ump45", "fg": 340 }, - { "id": "hptc9", "fg": 341 }, - { "id": "hptcf380", "fg": 342 }, - { "id": "kp32", "fg": 344 }, - { "id": "kp3at", "fg": 345 }, - { "id": "kpf9", "fg": 346 }, - { "id": "l_bak_223", "fg": 347 }, - { "id": "launcher_simple", "fg": 348 }, - { "id": "lemat_revolver", "fg": 349 }, - { "id": "m11", "fg": 350 }, - { "id": "m17", "fg": 351 }, - { "id": "m18", "fg": 352 }, - { "id": "m1911-460", "fg": 353 }, - { "id": "m1911_10", "fg": 355 }, - { "id": "m1911_var_m1911_MEU", "fg": 356 }, - { "id": "m320", "fg": 357 }, - { "id": "m4_carbine_var_m4_cqbr", "fg": 358 }, - { "id": "m9", "fg": 359 }, - { "id": "mac_10", "fg": 360 }, - { "id": "mac_11", "fg": 361 }, - { "id": "makarov", "fg": 362 }, - { "id": "mauser_c96", "fg": 363 }, - { "id": "mauser_m714", "fg": 364 }, - { "id": "mgl", "fg": 365 }, - { "id": "minispeargun", "fg": 366 }, - { "id": "model_10_revolver", "fg": 367 }, - { "id": "moss_brownie", "fg": 368 }, - { "id": "nailgun", "fg": 369 }, - { "id": "nailrifle", "fg": 370 }, - { "id": "needlepistol", "fg": 371 }, - { "id": "oa93", "fg": 372 }, - { "id": "p08", "fg": 373 }, - { "id": "p220_10", "fg": 374 }, - { "id": "p226_357sig", "fg": 375 }, - { "id": "p226_9mm", "fg": 376 }, - { "id": "p320_357sig", "fg": 377 }, - { "id": "paintballgun", "fg": 378 }, - { "id": "pipe_double_shotgun", "fg": 379 }, - { "id": "pistol_flintlock", "fg": 380 }, - { "id": "px4", "fg": 381 }, - { "id": "px4_40", "fg": 382 }, - { "id": "raging_bull", "fg": 383 }, - { "id": "raging_judge", "fg": 384 }, - { "id": "revolver_shotgun", "fg": 385 }, - { "id": "rm103a_pistol", "fg": 386 }, - { "id": "rm2000_smg", "fg": 387 }, - { "id": "rm228", "fg": 388 }, - { "id": "ruger_lcr_22", "fg": 389 }, - { "id": "ruger_lcr_38", "fg": 390 }, - { "id": "ruger_redhawk", "fg": 391 }, - { "id": "rugerlcp", "fg": 392 }, - { "id": "sig_40", "fg": 393 }, - { "id": "sig_mosquito", "fg": 394 }, - { "id": "sig_p230", "fg": 395 }, - { "id": "skorpion_61", "fg": 396 }, - { "id": "smg_40", "fg": 397 }, - { "id": "smg_45", "fg": 398 }, - { "id": "sp2022", "fg": 399 }, - { "id": "streetsweeper", "fg": 400 }, - { "id": "surv_hand_cannon", "fg": 401 }, - { "id": "surv_six_shooter", "fg": 402 }, - { "id": "sw629", "fg": 403 }, - { "id": "sw_22", "fg": 404 }, - { "id": "sw_500", "fg": 405 }, - { "id": "sw_610", "fg": 406 }, - { "id": "sw_619", "fg": 407 }, - { "id": "taurus_spectrum", "fg": 408 }, - { "id": "tec9", "fg": 409 }, - { "id": "tokarev", "fg": 410 }, - { "id": "triple_launcher_simple", "fg": 411 }, - { "id": "unbio_blaster_gun", "fg": 412 }, - { "id": "usp_45", "fg": 413 }, - { "id": "usp_45_var_mk23", "fg": 414 }, - { "id": "usp_9mm", "fg": 415 }, - { "id": "uzi", "fg": 416 }, - { "id": "v29", "fg": 417 }, - { "id": "v29_cheap", "fg": 418 }, - { "id": "walther_ccp", "fg": 419 }, - { "id": "walther_p22", "fg": 420 }, - { "id": "walther_p38", "fg": 421 }, - { "id": "walther_ppq_40", "fg": 422 }, - { "id": "walther_ppq_45", "fg": 423 }, - { "id": "walther_ppq_9mm", "fg": 424 }, - { "id": "witness_10", "fg": 425 }, - { "id": "xd_10", "fg": 426 }, - { "id": "book_pieces", "fg": 441 }, - { "id": "book_ruined", "fg": 442 }, - { "id": "button_plastic", "fg": 481 }, - { "id": "button_steel", "fg": 482 }, - { "id": "button_wood", "fg": 483 }, - { "id": "antenna", "fg": 484 }, - { "id": "badge_deputy", "fg": 485 }, - { "id": "coconut", "fg": 486 }, - { "id": "directional_antenna", "fg": 487 }, - { "id": "halter_top", "fg": 488 }, - { "id": "hand_crank_charger", "fg": 489 }, - { "id": "hops", "fg": 490 }, - { "id": "kidney", "fg": 491 }, - { "id": "lettuce", "fg": 492 }, - { "id": "lily_flower", "fg": 493 }, - { "id": "scorecard", "fg": 494 }, - { "id": "spinach", "fg": 495 }, - { "id": "altered_comb", "fg": 496 }, - { "id": "gasdiscount_gold", "fg": 497 }, - { "id": "gasdiscount_platinum", "fg": 498 }, - { "id": "gasdiscount_silver", "fg": 499 }, - { "id": "gold_hairpin", "fg": 500 }, - { "id": "nanoskirt", "fg": 501 }, - { "id": "pearl", "fg": 502 }, - { "id": "platinum_ring", "fg": 503 }, - { "id": "skirt_grass", "fg": 504 }, - { "id": "skirt_leather", "fg": 505 }, - { "id": "wallet_leather", "fg": 506 }, - { "id": "copper_necklace", "fg": 507 }, - { "id": "pearl_collar", "fg": 508 }, - { "id": "alexandrite_gold_pendant_necklace", "fg": 509 }, - { "id": "amethyst_gold_pendant_necklace", "fg": 510 }, - { "id": "aquamarine_gold_pendant_necklace", "fg": 511 }, - { "id": "blue_topaz_gold_pendant_necklace", "fg": 512 }, - { "id": "citrine_gold_pendant_necklace", "fg": 513 }, - { "id": "diamond_gold_pendant_necklace", "fg": 514 }, - { "id": "emerald_gold_pendant_necklace", "fg": 515 }, - { "id": "garnet_gold_pendant_necklace", "fg": 516 }, - { "id": "gold_necklace", "fg": 517 }, - { "id": "opal_gold_pendant_necklace", "fg": 518 }, - { "id": "pearl_gold_pendant_necklace", "fg": 519 }, - { "id": "peridot_gold_pendant_necklace", "fg": 520 }, - { "id": "ruby_gold_pendant_necklace", "fg": 521 }, - { "id": "sapphire_gold_pendant_necklace", "fg": 522 }, - { "id": "tourmaline_gold_pendant_necklace", "fg": 523 }, - { "id": "alexandrite_platinum_pendant_necklace", "fg": 524 }, - { "id": "amethyst_platinum_pendant_necklace", "fg": 525 }, - { "id": "aquamarine_platinum_pendant_necklace", "fg": 526 }, - { "id": "blue_topaz_platinum_pendant_necklace", "fg": 527 }, - { "id": "citrine_platinum_pendant_necklace", "fg": 528 }, - { "id": "diamond_platinum_pendant_necklace", "fg": 529 }, - { "id": "emerald_platinum_pendant_necklace", "fg": 530 }, - { "id": "garnet_platinum_pendant_necklace", "fg": 531 }, - { "id": "opal_platinum_pendant_necklace", "fg": 532 }, - { "id": "pearl_platinum_pendant_necklace", "fg": 533 }, - { "id": "peridot_platinum_pendant_necklace", "fg": 534 }, - { "id": "platinum_necklace", "fg": 535 }, - { "id": "ruby_platinum_pendant_necklace", "fg": 536 }, - { "id": "sapphire_platinum_pendant_necklace", "fg": 537 }, - { "id": "tourmaline_platinum_pendant_necklace", "fg": 538 }, - { "id": "alexandrite_silver_pendant_necklace", "fg": 539 }, - { "id": "amethyst_silver_pendant_necklace", "fg": 540 }, - { "id": "aquamarine_silver_pendant_necklace", "fg": 541 }, - { "id": "blue_topaz_silver_pendant_necklace", "fg": 542 }, - { "id": "citrine_silver_pendant_necklace", "fg": 543 }, - { "id": "diamond_silver_pendant_necklace", "fg": 544 }, - { "id": "emerald_silver_pendant_necklace", "fg": 545 }, - { "id": "garnet_silver_pendant_necklace", "fg": 546 }, - { "id": "opal_silver_pendant_necklace", "fg": 547 }, - { "id": "pearl_silver_pendant_necklace", "fg": 548 }, - { "id": "peridot_silver_pendant_necklace", "fg": 549 }, - { "id": "ruby_silver_pendant_necklace", "fg": 550 }, - { "id": "sapphire_silver_pendant_necklace", "fg": 551 }, - { "id": "silver_necklace", "fg": 552 }, - { "id": "tourmaline_silver_pendant_necklace", "fg": 553 }, - { "id": "alder_bark", "fg": 554 }, - { "id": "barrette", "fg": 555 }, - { "id": "birchbark", "fg": 556 }, - { "id": "caff_gum", "fg": 557 }, - { "id": "cattail_stalk", "fg": 558 }, - { "id": "golf_tee", "fg": 559 }, - { "id": "gum", "fg": 560 }, - { "id": "hand_pump", "fg": 561 }, - { "id": "honeydew", "fg": 562 }, - { "id": "ifak_pouch", "fg": 563 }, - { "id": "knitting_needles", "fg": 564 }, - { "id": "lasagne", "fg": 565 }, - { "id": "magnifying_glass", "fg": 566 }, - { "id": "mininuke", "fg": 567 }, - { "id": "mininuke_act", "fg": 568 }, - { "id": "net", "fg": 569 }, - { "id": "rolling_paper", "fg": 570 }, - { "id": "tanbark", "fg": 571 }, - { "id": "willowbark", "fg": 574 }, - { "id": "shoulder_strap", "fg": 575 }, - { "id": "deck_of_cards", "fg": 576 }, - { "id": "hairpin", "fg": 577 }, - { "id": "weed", "fg": 578 }, - { "id": "ceramic_bowl", "fg": 579 }, - { "id": "chestrig", "fg": 580 }, - { "id": "radio_car", "fg": 581 }, - { "id": "radio_car_box", "fg": 582 }, - { "id": "radio_car_on", "fg": 583 }, - { "id": "radio_car_wheel", "fg": 584 }, - { "id": "radiocontrol", "fg": 585 }, - { "id": "rc_car_box", "fg": 586 }, - { "id": "toaster", "fg": 587 }, - { "id": "xl_chestrig", "fg": 588 }, - { "id": "alternator_truck", "fg": 590 }, - { "id": "ammolink", "fg": 591 }, - { "id": "angle_grinder", "fg": 592 }, - { "id": "atomic_lamp", "fg": 593 }, - { "id": "atomic_lamp_off", "fg": 594 }, - { "id": "barometer", "fg": 595 }, - { "id": "birdfood", "fg": 596 }, - { "id": "bismuth", "fg": 597 }, - { "id": "brick_kiln", "fg": 598 }, - { "id": "caffeine", "fg": 599 }, - { "id": "camera", "fg": 600 }, - { "id": "chem_citric_acid", "fg": 601 }, - { "id": "chem_sulphur", "fg": 602 }, - { "id": "chunk_sulfur", "fg": 603 }, - { "id": "circsaw_off", "fg": 604 }, - { "id": "circsaw_on", "fg": 605 }, - { "id": "coal_lump", "fg": 606 }, - { "id": "con_mix", "fg": 607 }, - { "id": "disc_golf", "fg": 608 }, - { "id": "drivebelt", "fg": 609 }, - { "id": "eink_tablet_pc", "fg": 610 }, - { "id": "flatbread", "fg": 611 }, - { "id": "gelbox", "fg": 613 }, - { "id": "generator_7500w", "fg": 614 }, - { "id": "glowstick", "fg": 615 }, - { "id": "glowstick_dead", "fg": 616 }, - { "id": "glowstick_lit", "fg": 617 }, - { "id": "gold_small", "fg": 618 }, - { "id": "golf_club", "fg": 619 }, - { "id": "handflare", "fg": 620 }, - { "id": "heatpack", "fg": 621 }, - { "id": "heatpack_used", "fg": 622 }, - { "id": "hoe", "fg": 623 }, - { "id": "homeopathic_pills", "fg": 624 }, - { "id": "horn_bicycle", "fg": 625 }, - { "id": "jumper_cable", "fg": 626 }, - { "id": "kiln", "fg": 627 }, - { "id": "lead", "fg": 628 }, - { "id": "leather", "fg": 629 }, - { "id": "lightstrip", "fg": 630 }, - { "id": "material_aluminium_ingot", "fg": 631 }, - { "id": "material_limestone", "fg": 632 }, - { "id": "material_rhodonite", "fg": 633 }, - { "id": "material_rocksalt", "fg": 634 }, - { "id": "material_zincite", "fg": 635 }, - { "id": "metal_smoother", "fg": 636 }, - { "id": "multitool", "fg": 638 }, - { "id": "nic_gum", "fg": 639 }, - { "id": "pencil", "fg": 640 }, - { "id": "pipe_cleaner", "fg": 641 }, - { "id": "pipe_glass", "fg": 642 }, - { "id": "platinum_small", "fg": 644 }, - { "id": "polisher", "fg": 645 }, - { "id": "press", "fg": 646 }, - { "id": "puller", "fg": 647 }, - { "id": "rake", "fg": 648 }, - { "id": "razorclaw_roe", "fg": 649 }, - { "id": "sickle", "fg": 650 }, - { "id": "silver_small", "fg": 651 }, - { "id": "small_repairkit", "fg": 652 }, - { "id": "tanned_hide", "fg": 653 }, - { "id": "tanned_pelt", "fg": 654 }, - { "id": "tourist_table", "fg": 655 }, - { "id": "zinc_metal", "fg": 656 }, - { "id": "beartrap", "fg": 657 }, - { "id": "tr_beartrap", "fg": 658 }, - { "id": "wire_mesh", "fg": 659 }, - { "id": "cannabis", "fg": 660 }, - { "id": "dnd_handbook", "fg": 662 }, - { "id": "holybook_bible1", "fg": 663 }, - { "id": "holybook_bible3", "fg": 664 }, - { "id": "l-stick", "fg": 665 }, - { "id": "l-stick_on", "fg": 666 }, - { "id": "makarovmag", "fg": 667 }, - { "id": "manual_brawl", "fg": 668 }, - { "id": "manual_carpentry", "fg": 669 }, - { "id": "manual_dodge_kid", "fg": 670 }, - { "id": "manual_driving", "fg": 671 }, - { "id": "manual_melee", "fg": 672 }, - { "id": "philosophy_book", "fg": 673 }, - { "id": "phonebook", "fg": 674 }, - { "id": "photo_album", "fg": 675 }, - { "id": "plastic_bucket", "fg": 676 }, - { "id": "record_weather", "fg": 677 }, - { "id": "straw_fedora", "fg": 678 }, - { "id": "textbook_computer", "fg": 679 }, - { "id": "textbook_fabrication", "fg": 680 }, - { "id": "textbook_survival", "fg": 681 }, - { "id": "water_faucet", "fg": 682 }, - { "id": "can_food", "fg": 683 }, - { "id": "can_food_big", "fg": 684 }, - { "id": "can_food_big_unsealed", "fg": 685 }, - { "id": "can_food_unsealed", "fg": 686 }, - { "id": "can_medium", "fg": 687 }, - { "id": "can_medium_unsealed", "fg": 688 }, - { "id": "clamp", "fg": 689 }, - { "id": "crude_picklock", "fg": 690 }, - { "id": "cured_hide", "fg": 691 }, - { "id": "cured_pelt", "fg": 692 }, - { "id": "demihuman_fat", "fg": 693 }, - { "id": "fat", "fg": 694 }, - { "id": "fat_tainted", "fg": 695 }, - { "id": "headscarf", "fg": 696 }, - { "id": "human_fat", "fg": 698 }, - { "id": "marloss_scarf", "fg": 703 }, - { "id": "meat", "fg": 704 }, - { "id": "meat_tainted", "fg": 705 }, - { "id": "mutant_fat", "fg": 706 }, - { "id": "mutant_human_fat", "fg": 707 }, - { "id": "mutant_human_flesh", "fg": 708 }, - { "id": "mutant_meat", "fg": 709 }, - { "id": "pipe_tobacco", "fg": 711 }, - { "id": "raw_fur", "fg": 714 }, - { "id": "raw_leather", "fg": 715 }, - { "id": "tanning_hide", "fg": 721 }, - { "id": "tanning_pelt", "fg": 722 }, - { "id": "analytical_set_basic", "fg": 724 }, - { "id": "balance_small", "fg": 725 }, - { "id": "beaker", "fg": 726 }, - { "id": "flask_glass", "fg": 727 }, - { "id": "gradcylinder", "fg": 728 }, - { "id": "ph_meter", "fg": 729 }, - { "id": "spectrophotometer", "fg": 730 }, - { "id": "test_tube", "fg": 731 }, - { "id": "voltmeter", "fg": 732 }, - { "id": "acidchitin_piece", "fg": 737 }, - { "id": "chitin_piece", "fg": 738 }, - { "id": "coin_dime", "fg": 757 }, - { "id": "coin_dollar", "fg": 758 }, - { "id": "coin_half_dollar", "fg": 759 }, - { "id": "coin_nickel", "fg": 760 }, - { "id": "coin_penny", "fg": 761 }, - { "id": "coin_quarter", "fg": 762 }, - { "id": "money_fifty", "fg": 763 }, - { "id": "money_five", "fg": 764 }, - { "id": "money_hundred", "fg": 765 }, - { "id": "money_one", "fg": 766 }, - { "id": "money_ten", "fg": 767 }, - { "id": "money_twenty", "fg": 768 }, - { "id": "money_two", "fg": 769 }, - { "id": "alexandrite_gold_earring", "fg": 770 }, - { "id": "alexandrite_platinum_earring", "fg": 771 }, - { "id": "alexandrite_silver_earring", "fg": 772 }, - { "id": "amethyst_gold_earring", "fg": 773 }, - { "id": "amethyst_platinum_earring", "fg": 774 }, - { "id": "amethyst_silver_earring", "fg": 775 }, - { "id": "aquamarine_gold_earring", "fg": 776 }, - { "id": "aquamarine_platinum_earring", "fg": 777 }, - { "id": "aquamarine_silver_earring", "fg": 778 }, - { "id": "bead_ear", "fg": 779 }, - { "id": "blue_topaz_gold_earring", "fg": 780 }, - { "id": "blue_topaz_platinum_earring", "fg": 781 }, - { "id": "blue_topaz_silver_earring", "fg": 782 }, - { "id": "citrine_gold_earring", "fg": 783 }, - { "id": "citrine_platinum_earring", "fg": 784 }, - { "id": "citrine_silver_earring", "fg": 785 }, - { "id": "copper_ear", "fg": 786 }, - { "id": "diamond_gold_earring", "fg": 787 }, - { "id": "diamond_platinum_earring", "fg": 788 }, - { "id": "diamond_silver_earring", "fg": 789 }, - { "id": "emerald_gold_earring", "fg": 790 }, - { "id": "emerald_platinum_earring", "fg": 791 }, - { "id": "emerald_silver_earring", "fg": 792 }, - { "id": "garnet_gold_earring", "fg": 793 }, - { "id": "garnet_platinum_earring", "fg": 794 }, - { "id": "garnet_silver_earring", "fg": 795 }, - { "id": "gold_ear", "fg": 796 }, - { "id": "opal_gold_earring", "fg": 797 }, - { "id": "opal_platinum_earring", "fg": 798 }, - { "id": "opal_silver_earring", "fg": 799 }, - { "id": "pearl_gold_earring", "fg": 800 }, - { "id": "pearl_platinum_earring", "fg": 801 }, - { "id": "pearl_silver_earring", "fg": 802 }, - { "id": "peridot_gold_earring", "fg": 803 }, - { "id": "peridot_platinum_earring", "fg": 804 }, - { "id": "peridot_silver_earring", "fg": 805 }, - { "id": "platinum_ear", "fg": 806 }, - { "id": "ruby_gold_earring", "fg": 807 }, - { "id": "ruby_platinum_earring", "fg": 808 }, - { "id": "ruby_silver_earring", "fg": 809 }, - { "id": "sapphire_gold_earring", "fg": 810 }, - { "id": "sapphire_platinum_earring", "fg": 811 }, - { "id": "sapphire_silver_earring", "fg": 812 }, - { "id": "silver_ear", "fg": 813 }, - { "id": "tourmaline_gold_earring", "fg": 814 }, - { "id": "tourmaline_platinum_earring", "fg": 815 }, - { "id": "tourmaline_silver_earring", "fg": 816 }, - { "id": "flaregun", "fg": 817 }, - { "id": "signal_flare", "fg": 818 }, - { "id": "bread", "fg": 819 }, - { "id": "brioche", "fg": 820 }, - { "id": "brown_bread", "fg": 821 }, - { "id": "brownie", "fg": 822 }, - { "id": "cornbread", "fg": 825 }, - { "id": "jihelucake", "fg": 826 }, - { "id": "pancakes", "fg": 827 }, - { "id": "sourdough_bread", "fg": 829 }, - { "id": "sponge_cake", "fg": 830 }, - { "id": "tortilla_corn", "fg": 831 }, - { "id": "wastebread", "fg": 833 }, - { "id": "airhorn", "fg": 834 }, - { "id": "aluminum_foil", "fg": 835 }, - { "id": "bowling_pin", "fg": 836 }, - { "id": "boxing_gloves", "fg": 837 }, - { "id": "chopsticks", "fg": 838 }, - { "id": "comb_pocket", "fg": 839 }, - { "id": "copper", "fg": 840 }, - { "id": "eclipse_glasses", "fg": 841 }, - { "id": "fish", "fg": 842 }, - { "id": "licorice", "fg": 843 }, - { "id": "metal_tank", "fg": 844 }, - { "id": "metal_tank_little", "fg": 845 }, - { "id": "nanomaterial", "fg": 846 }, - { "id": "plut_cell", "fg": 847 }, - { "id": "rebreather_filter", "fg": 848 }, - { "id": "rock_sock", "fg": 849 }, - { "id": "rollerskates", "fg": 850 }, - { "id": "sandpaper", "fg": 851 }, - { "id": "throwing_stick", "fg": 852 }, - { "id": "waterproof_gunmod", "fg": 853 }, - { "id": "circsaw_blade", "fg": 854 }, - { "id": "mirror", "fg": 855 }, - { "id": "glass_bowl", "fg": 856 }, - { "id": "plastic_bowl_kids", "fg": 857 }, - { "id": "blue_pen", "fg": 858 }, - { "id": "green_pen", "fg": 859 }, - { "id": "pen", "fg": 860 }, - { "id": "red_pen", "fg": 861 }, - { "id": "soldering_iron", "fg": 862 }, - { "id": "superglue", "fg": 863 }, - { "id": "grenade", "fg": 864 }, - { "id": "grenade_act", "fg": 865 }, - { "id": "grenade_emp", "fg": 866 }, - { "id": "grenade_emp_act", "fg": 867 }, - { "id": "grenade_inc", "fg": 868 }, - { "id": "grenade_inc_act", "fg": 869 }, - { "id": "pipebomb", "fg": 870 }, - { "id": "pipebomb_act", "fg": 871 }, - { "id": "scrambler", "fg": 872 }, - { "id": "scrambler_act", "fg": 873 }, - { "id": "smokebomb", "fg": 874 }, - { "id": "smokebomb_act", "fg": 875 }, - { "id": "boxcutter", "fg": 879 }, - { "id": "copper_knife", "fg": 880 }, - { "id": "diveknife", "fg": 881 }, - { "id": "knife_bread", "fg": 882 }, - { "id": "knife_butcher", "fg": 883 }, - { "id": "knife_carving", "fg": 884 }, - { "id": "knife_chef", "fg": 885 }, - { "id": "knife_combat", "fg": 886 }, - { "id": "knife_folding", "fg": 887 }, - { "id": "knife_hunting", "fg": 888 }, - { "id": "knife_paring", "fg": 889 }, - { "id": "knife_rambo", "fg": 890 }, - { "id": "knife_rm42", "fg": 891 }, - { "id": "knife_steak", "fg": 892 }, - { "id": "knife_swissarmy", "fg": 893 }, - { "id": "knife_trench", "fg": 894 }, - { "id": "makeshift_knife", "fg": 895 }, - { "id": "pockknife", "fg": 896 }, - { "id": "primitive_knife", "fg": 897 }, - { "id": "throwing_knife", "fg": 898 }, - { "id": "baseball", "fg": 920 }, - { "id": "basketball", "fg": 921 }, - { "id": "battery_car", "fg": 922 }, - { "id": "beach_volleyball", "fg": 923 }, - { "id": "bowling_ball", "fg": 924 }, - { "id": "cell_phone", "fg": 925 }, - { "id": "cell_phone_flashlight", "fg": 926 }, - { "id": "cigar", "fg": 927 }, - { "id": "cigar_butt", "fg": 928 }, - { "id": "cigar_lit", "fg": 929 }, - { "id": "ear_plugs", "fg": 931 }, - { "id": "fiddlehead_boiled", "fg": 932 }, - { "id": "fiddlehead_raw", "fg": 933 }, - { "id": "fiddlehead_sauteed", "fg": 934 }, - { "id": "flask_hip", "fg": 935 }, - { "id": "football", "fg": 936 }, - { "id": "golf_ball", "fg": 937 }, - { "id": "holo_sight", "fg": 938 }, - { "id": "indoor_volleyball", "fg": 939 }, - { "id": "misc_repairkit", "fg": 940 }, - { "id": "mre_beef_box", "fg": 941 }, - { "id": "peephole", "fg": 942 }, - { "id": "portable_game", "fg": 943 }, - { "id": "puck", "fg": 944 }, - { "id": "purse", "fg": 945 }, - { "id": "suppressor", "fg": 946 }, - { "id": "tourniquet_upper", "fg": 947 }, - { "id": "two_way_radio", "fg": 948 }, - { "id": "wristwatch", "fg": 949 }, - { "id": "mushroom", "fg": 950 }, - { "id": "cable_speaker", "fg": 951 }, - { "id": "headphones_circumaural", "fg": 952 }, - { "id": "microphone_xlr_generic", "fg": 953 }, - { "id": "popcan_stove", "fg": 994 }, - { "id": "rad_badge", "fg": 995 }, - { "id": "alexandrite_gold_ring", "fg": 997 }, - { "id": "alexandrite_platinum_ring", "fg": 998 }, - { "id": "alexandrite_silver_ring", "fg": 999 }, - { "id": "amethyst_gold_ring", "fg": 1000 }, - { "id": "amethyst_platinum_ring", "fg": 1001 }, - { "id": "amethyst_silver_ring", "fg": 1002 }, - { "id": "aquamarine_gold_ring", "fg": 1003 }, - { "id": "aquamarine_platinum_ring", "fg": 1004 }, - { "id": "aquamarine_silver_ring", "fg": 1005 }, - { "id": "blue_topaz_gold_ring", "fg": 1006 }, - { "id": "blue_topaz_platinum_ring", "fg": 1007 }, - { "id": "blue_topaz_silver_ring", "fg": 1008 }, - { "id": "citrine_gold_ring", "fg": 1009 }, - { "id": "citrine_platinum_ring", "fg": 1010 }, - { "id": "citrine_silver_ring", "fg": 1011 }, - { "id": "diamond_platinum_ring", "fg": 1012 }, - { "id": "diamond_ring", "fg": 1013 }, - { "id": "diamond_silver_ring", "fg": 1014 }, - { "id": "emerald_gold_ring", "fg": 1015 }, - { "id": "emerald_platinum_ring", "fg": 1016 }, - { "id": "emerald_silver_ring", "fg": 1017 }, - { "id": "garnet_gold_ring", "fg": 1018 }, - { "id": "garnet_platinum_ring", "fg": 1019 }, - { "id": "garnet_silver_ring", "fg": 1020 }, - { "id": "gold_ring", "fg": 1021 }, - { "id": "opal_gold_ring", "fg": 1022 }, - { "id": "opal_platinum_ring", "fg": 1023 }, - { "id": "opal_silver_ring", "fg": 1024 }, - { "id": "pearl_gold_ring", "fg": 1025 }, - { "id": "pearl_platinum_ring", "fg": 1026 }, - { "id": "pearl_silver_ring", "fg": 1027 }, - { "id": "peridot_gold_ring", "fg": 1028 }, - { "id": "peridot_platinum_ring", "fg": 1029 }, - { "id": "peridot_silver_ring", "fg": 1030 }, - { "id": "ring_engagement", "fg": 1031 }, - { "id": "ruby_gold_ring", "fg": 1032 }, - { "id": "ruby_platinum_ring", "fg": 1033 }, - { "id": "ruby_silver_ring", "fg": 1034 }, - { "id": "sapphire_gold_ring", "fg": 1035 }, - { "id": "sapphire_platinum_ring", "fg": 1036 }, - { "id": "sapphire_silver_ring", "fg": 1037 }, - { "id": "tourmaline_gold_ring", "fg": 1038 }, - { "id": "tourmaline_platinum_ring", "fg": 1039 }, - { "id": "tourmaline_silver_ring", "fg": 1040 }, - { "id": "pebble", "fg": 1041 }, - { "id": "pebble_clay", "fg": 1042 }, - { "id": "rock", "fg": 1043 }, - { "id": "rock_flaking", "fg": 1044 }, - { "id": "rock_large", "fg": 1045 }, - { "id": "slime_scrap", "fg": 1054 }, - { "id": "clay_teapot", "fg": 1058 }, - { "id": "crucible", "fg": 1061 }, - { "id": "tire_iron", "fg": 1074 }, - { "id": "towel", "fg": 1089 }, - { "id": "towel_soiled", "fg": 1090 }, - { "id": "towel_wet", "fg": 1091 }, - { "id": "battery_charger", "fg": 1092 }, - { "id": "recharge_station", "fg": 1093 }, - { "id": "wax", "fg": 1096 } + { "id": "tripwire", "fg": 248 }, + { "id": "unfinished_charcoal", "fg": 249 }, + { "id": "w_paint", "fg": 250 }, + { "id": "water_purifier", "fg": 251 }, + { "id": "wheel", "fg": 252 }, + { "id": "wheel_10", "fg": 253 }, + { "id": "wheel_barrow", "fg": 254 }, + { "id": "wheel_bicycle", "fg": 255 }, + { "id": "wheel_bicycle_or", "fg": 256 }, + { "id": "wheel_motorbike", "fg": 257 }, + { "id": "wheel_motorbike_or", "fg": 258 }, + { "id": "wheel_skate", "fg": 259 }, + { "id": "wheel_slick", "fg": 260 }, + { "id": "wheel_small", "fg": 261 }, + { "id": "wheel_tricycle", "fg": 262 }, + { "id": "wheel_wheelchair", "fg": 263 }, + { "id": "whisk", "fg": 264 }, + { "id": "wine_glass", "fg": 265 }, + { "id": "wire_barbed", "fg": 266 }, + { "id": "y_paint", "fg": 267 }, + { "id": "halligan", "fg": 268 }, + { "id": "cig", "fg": 294 }, + { "id": "cig_lit", "fg": 295 }, + { "id": "copper_ring", "fg": 296 }, + { "id": "g_shovel", "fg": 297 }, + { "id": "lsd", "fg": 298 }, + { "id": "silver_ring", "fg": 299 }, + { "id": "thermal_mask", "fg": 300 }, + { "id": "thermal_socks", "fg": 301 }, + { "id": "tie_clipon", "fg": 302 }, + { "id": "whistle", "fg": 303 }, + { "id": "2_shot_special", "fg": 304 }, + { "id": "LAW_Packed", "fg": 306 }, + { "id": "af2011a1_38super", "fg": 308 }, + { "id": "ar_pistol", "fg": 309 }, + { "id": "ashot", "fg": 310 }, + { "id": "bfr", "fg": 311 }, + { "id": "bigun", "fg": 312 }, + { "id": "bond_410", "fg": 313 }, + { "id": "bt_apc9k", "fg": 314 }, + { "id": "colt_army", "fg": 315 }, + { "id": "colt_navy", "fg": 316 }, + { "id": "colt_saa", "fg": 317 }, + { "id": "cop_38", "fg": 318 }, + { "id": "cz75", "fg": 319 }, + { "id": "deagle_44", "fg": 320 }, + { "id": "draco", "fg": 321 }, + { "id": "flamethrower_crude", "fg": 322 }, + { "id": "flamethrower_simple", "fg": 323 }, + { "id": "fn1910", "fg": 324 }, + { "id": "fn57", "fg": 325 }, + { "id": "fn_p90", "fg": 326 }, + { "id": "glock_17", "fg": 327 }, + { "id": "glock_18c", "fg": 328 }, + { "id": "glock_19", "fg": 329 }, + { "id": "glock_20", "fg": 330 }, + { "id": "glock_20_var_glock_40", "fg": 331 }, + { "id": "glock_21", "fg": 332 }, + { "id": "glock_22", "fg": 333 }, + { "id": "glock_29", "fg": 334 }, + { "id": "glock_31", "fg": 335 }, + { "id": "hi_power_40", "fg": 336 }, + { "id": "hi_power_9mm", "fg": 337 }, + { "id": "hk_mp5_semi_pistol", "fg": 339 }, + { "id": "hk_mp7", "fg": 340 }, + { "id": "hk_ump45", "fg": 341 }, + { "id": "hptc9", "fg": 342 }, + { "id": "hptcf380", "fg": 343 }, + { "id": "kp32", "fg": 345 }, + { "id": "kp3at", "fg": 346 }, + { "id": "kpf9", "fg": 347 }, + { "id": "l_bak_223", "fg": 348 }, + { "id": "launcher_simple", "fg": 349 }, + { "id": "lemat_revolver", "fg": 350 }, + { "id": "m11", "fg": 351 }, + { "id": "m17", "fg": 352 }, + { "id": "m18", "fg": 353 }, + { "id": "m1911-460", "fg": 354 }, + { "id": "m1911_10", "fg": 356 }, + { "id": "m1911_var_m1911_MEU", "fg": 357 }, + { "id": "m320", "fg": 358 }, + { "id": "m4_carbine_var_m4_cqbr", "fg": 359 }, + { "id": "m9", "fg": 360 }, + { "id": "mac_10", "fg": 361 }, + { "id": "mac_11", "fg": 362 }, + { "id": "makarov", "fg": 363 }, + { "id": "mauser_c96", "fg": 364 }, + { "id": "mauser_m714", "fg": 365 }, + { "id": "mgl", "fg": 366 }, + { "id": "minispeargun", "fg": 367 }, + { "id": "model_10_revolver", "fg": 368 }, + { "id": "moss_brownie", "fg": 369 }, + { "id": "nailgun", "fg": 370 }, + { "id": "nailrifle", "fg": 371 }, + { "id": "needlepistol", "fg": 372 }, + { "id": "oa93", "fg": 373 }, + { "id": "p08", "fg": 374 }, + { "id": "p220_10", "fg": 375 }, + { "id": "p226_357sig", "fg": 376 }, + { "id": "p226_9mm", "fg": 377 }, + { "id": "p320_357sig", "fg": 378 }, + { "id": "paintballgun", "fg": 379 }, + { "id": "pipe_double_shotgun", "fg": 380 }, + { "id": "pistol_flintlock", "fg": 381 }, + { "id": "px4", "fg": 382 }, + { "id": "px4_40", "fg": 383 }, + { "id": "raging_bull", "fg": 384 }, + { "id": "raging_judge", "fg": 385 }, + { "id": "revolver_shotgun", "fg": 386 }, + { "id": "rm103a_pistol", "fg": 387 }, + { "id": "rm2000_smg", "fg": 388 }, + { "id": "rm228", "fg": 389 }, + { "id": "ruger_lcr_22", "fg": 390 }, + { "id": "ruger_lcr_38", "fg": 391 }, + { "id": "ruger_redhawk", "fg": 392 }, + { "id": "rugerlcp", "fg": 393 }, + { "id": "sig_40", "fg": 394 }, + { "id": "sig_mosquito", "fg": 395 }, + { "id": "sig_p230", "fg": 396 }, + { "id": "skorpion_61", "fg": 397 }, + { "id": "smg_40", "fg": 398 }, + { "id": "smg_45", "fg": 399 }, + { "id": "sp2022", "fg": 400 }, + { "id": "streetsweeper", "fg": 401 }, + { "id": "surv_hand_cannon", "fg": 402 }, + { "id": "surv_six_shooter", "fg": 403 }, + { "id": "sw629", "fg": 404 }, + { "id": "sw_22", "fg": 405 }, + { "id": "sw_500", "fg": 406 }, + { "id": "sw_610", "fg": 407 }, + { "id": "sw_619", "fg": 408 }, + { "id": "taurus_spectrum", "fg": 409 }, + { "id": "tec9", "fg": 410 }, + { "id": "tokarev", "fg": 411 }, + { "id": "triple_launcher_simple", "fg": 412 }, + { "id": "unbio_blaster_gun", "fg": 413 }, + { "id": "usp_45", "fg": 414 }, + { "id": "usp_45_var_mk23", "fg": 415 }, + { "id": "usp_9mm", "fg": 416 }, + { "id": "uzi", "fg": 417 }, + { "id": "v29", "fg": 418 }, + { "id": "v29_cheap", "fg": 419 }, + { "id": "walther_ccp", "fg": 420 }, + { "id": "walther_p22", "fg": 421 }, + { "id": "walther_p38", "fg": 422 }, + { "id": "walther_ppq_40", "fg": 423 }, + { "id": "walther_ppq_45", "fg": 424 }, + { "id": "walther_ppq_9mm", "fg": 425 }, + { "id": "witness_10", "fg": 426 }, + { "id": "xd_10", "fg": 427 }, + { "id": "book_pieces", "fg": 442 }, + { "id": "book_ruined", "fg": 443 }, + { "id": "button_plastic", "fg": 482 }, + { "id": "button_steel", "fg": 483 }, + { "id": "button_wood", "fg": 484 }, + { "id": "antenna", "fg": 485 }, + { "id": "badge_deputy", "fg": 486 }, + { "id": "coconut", "fg": 487 }, + { "id": "directional_antenna", "fg": 488 }, + { "id": "halter_top", "fg": 489 }, + { "id": "hand_crank_charger", "fg": 490 }, + { "id": "hops", "fg": 491 }, + { "id": "kidney", "fg": 492 }, + { "id": "lettuce", "fg": 493 }, + { "id": "lily_flower", "fg": 494 }, + { "id": "scorecard", "fg": 495 }, + { "id": "spinach", "fg": 496 }, + { "id": "altered_comb", "fg": 497 }, + { "id": "gasdiscount_gold", "fg": 498 }, + { "id": "gasdiscount_platinum", "fg": 499 }, + { "id": "gasdiscount_silver", "fg": 500 }, + { "id": "gold_hairpin", "fg": 501 }, + { "id": "nanoskirt", "fg": 502 }, + { "id": "pearl", "fg": 503 }, + { "id": "platinum_ring", "fg": 504 }, + { "id": "skirt_grass", "fg": 505 }, + { "id": "skirt_leather", "fg": 506 }, + { "id": "wallet_leather", "fg": 507 }, + { "id": "copper_necklace", "fg": 508 }, + { "id": "pearl_collar", "fg": 509 }, + { "id": "alexandrite_gold_pendant_necklace", "fg": 510 }, + { "id": "amethyst_gold_pendant_necklace", "fg": 511 }, + { "id": "aquamarine_gold_pendant_necklace", "fg": 512 }, + { "id": "blue_topaz_gold_pendant_necklace", "fg": 513 }, + { "id": "citrine_gold_pendant_necklace", "fg": 514 }, + { "id": "diamond_gold_pendant_necklace", "fg": 515 }, + { "id": "emerald_gold_pendant_necklace", "fg": 516 }, + { "id": "garnet_gold_pendant_necklace", "fg": 517 }, + { "id": "gold_necklace", "fg": 518 }, + { "id": "opal_gold_pendant_necklace", "fg": 519 }, + { "id": "pearl_gold_pendant_necklace", "fg": 520 }, + { "id": "peridot_gold_pendant_necklace", "fg": 521 }, + { "id": "ruby_gold_pendant_necklace", "fg": 522 }, + { "id": "sapphire_gold_pendant_necklace", "fg": 523 }, + { "id": "tourmaline_gold_pendant_necklace", "fg": 524 }, + { "id": "alexandrite_platinum_pendant_necklace", "fg": 525 }, + { "id": "amethyst_platinum_pendant_necklace", "fg": 526 }, + { "id": "aquamarine_platinum_pendant_necklace", "fg": 527 }, + { "id": "blue_topaz_platinum_pendant_necklace", "fg": 528 }, + { "id": "citrine_platinum_pendant_necklace", "fg": 529 }, + { "id": "diamond_platinum_pendant_necklace", "fg": 530 }, + { "id": "emerald_platinum_pendant_necklace", "fg": 531 }, + { "id": "garnet_platinum_pendant_necklace", "fg": 532 }, + { "id": "opal_platinum_pendant_necklace", "fg": 533 }, + { "id": "pearl_platinum_pendant_necklace", "fg": 534 }, + { "id": "peridot_platinum_pendant_necklace", "fg": 535 }, + { "id": "platinum_necklace", "fg": 536 }, + { "id": "ruby_platinum_pendant_necklace", "fg": 537 }, + { "id": "sapphire_platinum_pendant_necklace", "fg": 538 }, + { "id": "tourmaline_platinum_pendant_necklace", "fg": 539 }, + { "id": "alexandrite_silver_pendant_necklace", "fg": 540 }, + { "id": "amethyst_silver_pendant_necklace", "fg": 541 }, + { "id": "aquamarine_silver_pendant_necklace", "fg": 542 }, + { "id": "blue_topaz_silver_pendant_necklace", "fg": 543 }, + { "id": "citrine_silver_pendant_necklace", "fg": 544 }, + { "id": "diamond_silver_pendant_necklace", "fg": 545 }, + { "id": "emerald_silver_pendant_necklace", "fg": 546 }, + { "id": "garnet_silver_pendant_necklace", "fg": 547 }, + { "id": "opal_silver_pendant_necklace", "fg": 548 }, + { "id": "pearl_silver_pendant_necklace", "fg": 549 }, + { "id": "peridot_silver_pendant_necklace", "fg": 550 }, + { "id": "ruby_silver_pendant_necklace", "fg": 551 }, + { "id": "sapphire_silver_pendant_necklace", "fg": 552 }, + { "id": "silver_necklace", "fg": 553 }, + { "id": "tourmaline_silver_pendant_necklace", "fg": 554 }, + { "id": "alder_bark", "fg": 555 }, + { "id": "barrette", "fg": 556 }, + { "id": "birchbark", "fg": 557 }, + { "id": "caff_gum", "fg": 558 }, + { "id": "cattail_stalk", "fg": 559 }, + { "id": "golf_tee", "fg": 560 }, + { "id": "gum", "fg": 561 }, + { "id": "hand_pump", "fg": 562 }, + { "id": "honeydew", "fg": 563 }, + { "id": "ifak_pouch", "fg": 564 }, + { "id": "knitting_needles", "fg": 565 }, + { "id": "lasagne", "fg": 566 }, + { "id": "magnifying_glass", "fg": 567 }, + { "id": "mininuke", "fg": 568 }, + { "id": "mininuke_act", "fg": 569 }, + { "id": "net", "fg": 570 }, + { "id": "rolling_paper", "fg": 571 }, + { "id": "tanbark", "fg": 572 }, + { "id": "willowbark", "fg": 575 }, + { "id": "shoulder_strap", "fg": 576 }, + { "id": "deck_of_cards", "fg": 577 }, + { "id": "hairpin", "fg": 578 }, + { "id": "weed", "fg": 579 }, + { "id": "ceramic_bowl", "fg": 580 }, + { "id": "chestrig", "fg": 581 }, + { "id": "radio_car", "fg": 582 }, + { "id": "radio_car_box", "fg": 583 }, + { "id": "radio_car_on", "fg": 584 }, + { "id": "radio_car_wheel", "fg": 585 }, + { "id": "radiocontrol", "fg": 586 }, + { "id": "rc_car_box", "fg": 587 }, + { "id": "toaster", "fg": 588 }, + { "id": "xl_chestrig", "fg": 589 }, + { "id": "alternator_truck", "fg": 591 }, + { "id": "ammolink", "fg": 592 }, + { "id": "angle_grinder", "fg": 593 }, + { "id": "atomic_lamp", "fg": 594 }, + { "id": "atomic_lamp_off", "fg": 595 }, + { "id": "barometer", "fg": 596 }, + { "id": "birdfood", "fg": 597 }, + { "id": "bismuth", "fg": 598 }, + { "id": "brick_kiln", "fg": 599 }, + { "id": "caffeine", "fg": 600 }, + { "id": "caltrops", "fg": 601 }, + { "id": "caltrops_glass", "fg": 602 }, + { "id": "camera", "fg": 603 }, + { "id": "chem_citric_acid", "fg": 604 }, + { "id": "chem_sulphur", "fg": 605 }, + { "id": "chunk_sulfur", "fg": 606 }, + { "id": "circsaw_off", "fg": 607 }, + { "id": "circsaw_on", "fg": 608 }, + { "id": "coal_lump", "fg": 609 }, + { "id": "con_mix", "fg": 610 }, + { "id": "disc_golf", "fg": 611 }, + { "id": "drivebelt", "fg": 612 }, + { "id": "eink_tablet_pc", "fg": 613 }, + { "id": "flatbread", "fg": 614 }, + { "id": "gelbox", "fg": 616 }, + { "id": "generator_7500w", "fg": 617 }, + { "id": "glowstick", "fg": 618 }, + { "id": "glowstick_dead", "fg": 619 }, + { "id": "glowstick_lit", "fg": 620 }, + { "id": "gold_small", "fg": 621 }, + { "id": "golf_club", "fg": 622 }, + { "id": "handflare", "fg": 623 }, + { "id": "heatpack", "fg": 624 }, + { "id": "heatpack_used", "fg": 625 }, + { "id": "hoe", "fg": 626 }, + { "id": "homeopathic_pills", "fg": 627 }, + { "id": "horn_bicycle", "fg": 628 }, + { "id": "jumper_cable", "fg": 629 }, + { "id": "kiln", "fg": 630 }, + { "id": "lead", "fg": 631 }, + { "id": "leather", "fg": 632 }, + { "id": "lightstrip", "fg": 633 }, + { "id": "material_aluminium_ingot", "fg": 634 }, + { "id": "material_limestone", "fg": 635 }, + { "id": "material_rhodonite", "fg": 636 }, + { "id": "material_rocksalt", "fg": 637 }, + { "id": "material_zincite", "fg": 638 }, + { "id": "metal_smoother", "fg": 639 }, + { "id": "multitool", "fg": 641 }, + { "id": "nic_gum", "fg": 642 }, + { "id": "pencil", "fg": 643 }, + { "id": "pipe_cleaner", "fg": 644 }, + { "id": "pipe_glass", "fg": 645 }, + { "id": "platinum_small", "fg": 647 }, + { "id": "polisher", "fg": 648 }, + { "id": "press", "fg": 649 }, + { "id": "puller", "fg": 650 }, + { "id": "rake", "fg": 651 }, + { "id": "razorclaw_roe", "fg": 652 }, + { "id": "sickle", "fg": 653 }, + { "id": "silver_small", "fg": 654 }, + { "id": "small_repairkit", "fg": 655 }, + { "id": "tanned_hide", "fg": 656 }, + { "id": "tanned_pelt", "fg": 657 }, + { "id": "tourist_table", "fg": 658 }, + { "id": "zinc_metal", "fg": 659 }, + { "id": "beartrap", "fg": 660 }, + { "id": "landmine", "fg": 661 }, + { "id": "wire_mesh", "fg": 662 }, + { "id": "cannabis", "fg": 663 }, + { "id": "dnd_handbook", "fg": 665 }, + { "id": "holybook_bible1", "fg": 666 }, + { "id": "holybook_bible3", "fg": 667 }, + { "id": "l-stick", "fg": 668 }, + { "id": "l-stick_on", "fg": 669 }, + { "id": "makarovmag", "fg": 670 }, + { "id": "manual_brawl", "fg": 671 }, + { "id": "manual_carpentry", "fg": 672 }, + { "id": "manual_dodge_kid", "fg": 673 }, + { "id": "manual_driving", "fg": 674 }, + { "id": "manual_melee", "fg": 675 }, + { "id": "philosophy_book", "fg": 676 }, + { "id": "phonebook", "fg": 677 }, + { "id": "photo_album", "fg": 678 }, + { "id": "plastic_bucket", "fg": 679 }, + { "id": "record_weather", "fg": 680 }, + { "id": "straw_fedora", "fg": 681 }, + { "id": "textbook_computer", "fg": 682 }, + { "id": "textbook_fabrication", "fg": 683 }, + { "id": "textbook_survival", "fg": 684 }, + { "id": "water_faucet", "fg": 685 }, + { "id": "can_food", "fg": 686 }, + { "id": "can_food_big", "fg": 687 }, + { "id": "can_food_big_unsealed", "fg": 688 }, + { "id": "can_food_unsealed", "fg": 689 }, + { "id": "can_medium", "fg": 690 }, + { "id": "can_medium_unsealed", "fg": 691 }, + { "id": "clamp", "fg": 692 }, + { "id": "crude_picklock", "fg": 693 }, + { "id": "cured_hide", "fg": 694 }, + { "id": "cured_pelt", "fg": 695 }, + { "id": "demihuman_fat", "fg": 696 }, + { "id": "fat", "fg": 697 }, + { "id": "fat_tainted", "fg": 698 }, + { "id": "headscarf", "fg": 699 }, + { "id": "human_fat", "fg": 701 }, + { "id": "marloss_scarf", "fg": 706 }, + { "id": "meat", "fg": 707 }, + { "id": "meat_tainted", "fg": 708 }, + { "id": "mutant_fat", "fg": 709 }, + { "id": "mutant_human_fat", "fg": 710 }, + { "id": "mutant_human_flesh", "fg": 711 }, + { "id": "mutant_meat", "fg": 712 }, + { "id": "pipe_tobacco", "fg": 714 }, + { "id": "raw_fur", "fg": 717 }, + { "id": "raw_leather", "fg": 718 }, + { "id": "tanning_hide", "fg": 724 }, + { "id": "tanning_pelt", "fg": 725 }, + { "id": "analytical_set_basic", "fg": 727 }, + { "id": "balance_small", "fg": 728 }, + { "id": "beaker", "fg": 729 }, + { "id": "flask_glass", "fg": 730 }, + { "id": "gradcylinder", "fg": 731 }, + { "id": "ph_meter", "fg": 732 }, + { "id": "spectrophotometer", "fg": 733 }, + { "id": "test_tube", "fg": 734 }, + { "id": "voltmeter", "fg": 735 }, + { "id": "acidchitin_piece", "fg": 740 }, + { "id": "chitin_piece", "fg": 741 }, + { "id": "coin_dime", "fg": 760 }, + { "id": "coin_dollar", "fg": 761 }, + { "id": "coin_half_dollar", "fg": 762 }, + { "id": "coin_nickel", "fg": 763 }, + { "id": "coin_penny", "fg": 764 }, + { "id": "coin_quarter", "fg": 765 }, + { "id": "money_fifty", "fg": 766 }, + { "id": "money_five", "fg": 767 }, + { "id": "money_hundred", "fg": 768 }, + { "id": "money_one", "fg": 769 }, + { "id": "money_ten", "fg": 770 }, + { "id": "money_twenty", "fg": 771 }, + { "id": "money_two", "fg": 772 }, + { "id": "alexandrite_gold_earring", "fg": 773 }, + { "id": "alexandrite_platinum_earring", "fg": 774 }, + { "id": "alexandrite_silver_earring", "fg": 775 }, + { "id": "amethyst_gold_earring", "fg": 776 }, + { "id": "amethyst_platinum_earring", "fg": 777 }, + { "id": "amethyst_silver_earring", "fg": 778 }, + { "id": "aquamarine_gold_earring", "fg": 779 }, + { "id": "aquamarine_platinum_earring", "fg": 780 }, + { "id": "aquamarine_silver_earring", "fg": 781 }, + { "id": "bead_ear", "fg": 782 }, + { "id": "blue_topaz_gold_earring", "fg": 783 }, + { "id": "blue_topaz_platinum_earring", "fg": 784 }, + { "id": "blue_topaz_silver_earring", "fg": 785 }, + { "id": "citrine_gold_earring", "fg": 786 }, + { "id": "citrine_platinum_earring", "fg": 787 }, + { "id": "citrine_silver_earring", "fg": 788 }, + { "id": "copper_ear", "fg": 789 }, + { "id": "diamond_gold_earring", "fg": 790 }, + { "id": "diamond_platinum_earring", "fg": 791 }, + { "id": "diamond_silver_earring", "fg": 792 }, + { "id": "emerald_gold_earring", "fg": 793 }, + { "id": "emerald_platinum_earring", "fg": 794 }, + { "id": "emerald_silver_earring", "fg": 795 }, + { "id": "garnet_gold_earring", "fg": 796 }, + { "id": "garnet_platinum_earring", "fg": 797 }, + { "id": "garnet_silver_earring", "fg": 798 }, + { "id": "gold_ear", "fg": 799 }, + { "id": "opal_gold_earring", "fg": 800 }, + { "id": "opal_platinum_earring", "fg": 801 }, + { "id": "opal_silver_earring", "fg": 802 }, + { "id": "pearl_gold_earring", "fg": 803 }, + { "id": "pearl_platinum_earring", "fg": 804 }, + { "id": "pearl_silver_earring", "fg": 805 }, + { "id": "peridot_gold_earring", "fg": 806 }, + { "id": "peridot_platinum_earring", "fg": 807 }, + { "id": "peridot_silver_earring", "fg": 808 }, + { "id": "platinum_ear", "fg": 809 }, + { "id": "ruby_gold_earring", "fg": 810 }, + { "id": "ruby_platinum_earring", "fg": 811 }, + { "id": "ruby_silver_earring", "fg": 812 }, + { "id": "sapphire_gold_earring", "fg": 813 }, + { "id": "sapphire_platinum_earring", "fg": 814 }, + { "id": "sapphire_silver_earring", "fg": 815 }, + { "id": "silver_ear", "fg": 816 }, + { "id": "tourmaline_gold_earring", "fg": 817 }, + { "id": "tourmaline_platinum_earring", "fg": 818 }, + { "id": "tourmaline_silver_earring", "fg": 819 }, + { "id": "flaregun", "fg": 820 }, + { "id": "signal_flare", "fg": 821 }, + { "id": "bread", "fg": 822 }, + { "id": "brioche", "fg": 823 }, + { "id": "brown_bread", "fg": 824 }, + { "id": "brownie", "fg": 825 }, + { "id": "cornbread", "fg": 828 }, + { "id": "jihelucake", "fg": 829 }, + { "id": "pancakes", "fg": 830 }, + { "id": "sourdough_bread", "fg": 832 }, + { "id": "sponge_cake", "fg": 833 }, + { "id": "tortilla_corn", "fg": 834 }, + { "id": "wastebread", "fg": 836 }, + { "id": "airhorn", "fg": 837 }, + { "id": "aluminum_foil", "fg": 838 }, + { "id": "bowling_pin", "fg": 839 }, + { "id": "boxing_gloves", "fg": 840 }, + { "id": "chopsticks", "fg": 841 }, + { "id": "comb_pocket", "fg": 842 }, + { "id": "copper", "fg": 843 }, + { "id": "eclipse_glasses", "fg": 844 }, + { "id": "fish", "fg": 845 }, + { "id": "licorice", "fg": 846 }, + { "id": "metal_tank", "fg": 847 }, + { "id": "metal_tank_little", "fg": 848 }, + { "id": "nanomaterial", "fg": 849 }, + { "id": "plut_cell", "fg": 850 }, + { "id": "rebreather_filter", "fg": 851 }, + { "id": "rock_sock", "fg": 852 }, + { "id": "rollerskates", "fg": 853 }, + { "id": "sandpaper", "fg": 854 }, + { "id": "throwing_stick", "fg": 855 }, + { "id": "waterproof_gunmod", "fg": 856 }, + { "id": "circsaw_blade", "fg": 857 }, + { "id": "mirror", "fg": 858 }, + { "id": "glass_bowl", "fg": 859 }, + { "id": "plastic_bowl_kids", "fg": 860 }, + { "id": "blue_pen", "fg": 861 }, + { "id": "green_pen", "fg": 862 }, + { "id": "pen", "fg": 863 }, + { "id": "red_pen", "fg": 864 }, + { "id": "soldering_iron", "fg": 865 }, + { "id": "superglue", "fg": 866 }, + { "id": "grenade", "fg": 867 }, + { "id": "grenade_act", "fg": 868 }, + { "id": "grenade_emp", "fg": 869 }, + { "id": "grenade_emp_act", "fg": 870 }, + { "id": "grenade_inc", "fg": 871 }, + { "id": "grenade_inc_act", "fg": 872 }, + { "id": "pipebomb", "fg": 873 }, + { "id": "pipebomb_act", "fg": 874 }, + { "id": "scrambler", "fg": 875 }, + { "id": "scrambler_act", "fg": 876 }, + { "id": "smokebomb", "fg": 877 }, + { "id": "smokebomb_act", "fg": 878 }, + { "id": "boxcutter", "fg": 882 }, + { "id": "copper_knife", "fg": 883 }, + { "id": "diveknife", "fg": 884 }, + { "id": "knife_bread", "fg": 885 }, + { "id": "knife_butcher", "fg": 886 }, + { "id": "knife_carving", "fg": 887 }, + { "id": "knife_chef", "fg": 888 }, + { "id": "knife_combat", "fg": 889 }, + { "id": "knife_folding", "fg": 890 }, + { "id": "knife_hunting", "fg": 891 }, + { "id": "knife_paring", "fg": 892 }, + { "id": "knife_rambo", "fg": 893 }, + { "id": "knife_rm42", "fg": 894 }, + { "id": "knife_steak", "fg": 895 }, + { "id": "knife_swissarmy", "fg": 896 }, + { "id": "knife_trench", "fg": 897 }, + { "id": "makeshift_knife", "fg": 898 }, + { "id": "pockknife", "fg": 899 }, + { "id": "primitive_knife", "fg": 900 }, + { "id": "throwing_knife", "fg": 901 }, + { "id": "baseball", "fg": 923 }, + { "id": "basketball", "fg": 924 }, + { "id": "battery_car", "fg": 925 }, + { "id": "beach_volleyball", "fg": 926 }, + { "id": "bowling_ball", "fg": 927 }, + { "id": "cell_phone", "fg": 928 }, + { "id": "cell_phone_flashlight", "fg": 929 }, + { "id": "cigar", "fg": 930 }, + { "id": "cigar_butt", "fg": 931 }, + { "id": "cigar_lit", "fg": 932 }, + { "id": "ear_plugs", "fg": 934 }, + { "id": "fiddlehead_boiled", "fg": 935 }, + { "id": "fiddlehead_raw", "fg": 936 }, + { "id": "fiddlehead_sauteed", "fg": 937 }, + { "id": "flask_hip", "fg": 938 }, + { "id": "football", "fg": 939 }, + { "id": "golf_ball", "fg": 940 }, + { "id": "holo_sight", "fg": 941 }, + { "id": "indoor_volleyball", "fg": 942 }, + { "id": "misc_repairkit", "fg": 943 }, + { "id": "mre_beef_box", "fg": 944 }, + { "id": "peephole", "fg": 945 }, + { "id": "portable_game", "fg": 946 }, + { "id": "puck", "fg": 947 }, + { "id": "purse", "fg": 948 }, + { "id": "suppressor", "fg": 949 }, + { "id": "tourniquet_upper", "fg": 950 }, + { "id": "two_way_radio", "fg": 951 }, + { "id": "wristwatch", "fg": 952 }, + { "id": "mushroom", "fg": 953 }, + { "id": "cable_speaker", "fg": 954 }, + { "id": "headphones_circumaural", "fg": 955 }, + { "id": "microphone_xlr_generic", "fg": 956 }, + { "id": "popcan_stove", "fg": 997 }, + { "id": "rad_badge", "fg": 998 }, + { "id": "alexandrite_gold_ring", "fg": 1000 }, + { "id": "alexandrite_platinum_ring", "fg": 1001 }, + { "id": "alexandrite_silver_ring", "fg": 1002 }, + { "id": "amethyst_gold_ring", "fg": 1003 }, + { "id": "amethyst_platinum_ring", "fg": 1004 }, + { "id": "amethyst_silver_ring", "fg": 1005 }, + { "id": "aquamarine_gold_ring", "fg": 1006 }, + { "id": "aquamarine_platinum_ring", "fg": 1007 }, + { "id": "aquamarine_silver_ring", "fg": 1008 }, + { "id": "blue_topaz_gold_ring", "fg": 1009 }, + { "id": "blue_topaz_platinum_ring", "fg": 1010 }, + { "id": "blue_topaz_silver_ring", "fg": 1011 }, + { "id": "citrine_gold_ring", "fg": 1012 }, + { "id": "citrine_platinum_ring", "fg": 1013 }, + { "id": "citrine_silver_ring", "fg": 1014 }, + { "id": "diamond_platinum_ring", "fg": 1015 }, + { "id": "diamond_ring", "fg": 1016 }, + { "id": "diamond_silver_ring", "fg": 1017 }, + { "id": "emerald_gold_ring", "fg": 1018 }, + { "id": "emerald_platinum_ring", "fg": 1019 }, + { "id": "emerald_silver_ring", "fg": 1020 }, + { "id": "garnet_gold_ring", "fg": 1021 }, + { "id": "garnet_platinum_ring", "fg": 1022 }, + { "id": "garnet_silver_ring", "fg": 1023 }, + { "id": "gold_ring", "fg": 1024 }, + { "id": "opal_gold_ring", "fg": 1025 }, + { "id": "opal_platinum_ring", "fg": 1026 }, + { "id": "opal_silver_ring", "fg": 1027 }, + { "id": "pearl_gold_ring", "fg": 1028 }, + { "id": "pearl_platinum_ring", "fg": 1029 }, + { "id": "pearl_silver_ring", "fg": 1030 }, + { "id": "peridot_gold_ring", "fg": 1031 }, + { "id": "peridot_platinum_ring", "fg": 1032 }, + { "id": "peridot_silver_ring", "fg": 1033 }, + { "id": "ring_engagement", "fg": 1034 }, + { "id": "ruby_gold_ring", "fg": 1035 }, + { "id": "ruby_platinum_ring", "fg": 1036 }, + { "id": "ruby_silver_ring", "fg": 1037 }, + { "id": "sapphire_gold_ring", "fg": 1038 }, + { "id": "sapphire_platinum_ring", "fg": 1039 }, + { "id": "sapphire_silver_ring", "fg": 1040 }, + { "id": "tourmaline_gold_ring", "fg": 1041 }, + { "id": "tourmaline_platinum_ring", "fg": 1042 }, + { "id": "tourmaline_silver_ring", "fg": 1043 }, + { "id": "pebble", "fg": 1044 }, + { "id": "pebble_clay", "fg": 1045 }, + { "id": "rock", "fg": 1046 }, + { "id": "rock_flaking", "fg": 1047 }, + { "id": "rock_large", "fg": 1048 }, + { "id": "slime_scrap", "fg": 1057 }, + { "id": "clay_teapot", "fg": 1061 }, + { "id": "crucible", "fg": 1064 }, + { "id": "tire_iron", "fg": 1077 }, + { "id": "towel", "fg": 1092 }, + { "id": "towel_soiled", "fg": 1093 }, + { "id": "towel_wet", "fg": 1094 }, + { "id": "battery_charger", "fg": 1095 }, + { "id": "recharge_station", "fg": 1096 }, + { "id": "wax", "fg": 1099 } ] }, { "file": "normal.png", - "//": "range 1104 to 4511", + "//": "range 1104 to 4543", "tiles": [ { "id": "fd_acid", @@ -1597,7 +1600,7 @@ { "id": "f_boulder_medium", "fg": 1412 }, { "id": "f_boulder_small", "fg": 1413 }, { "id": "f_generator_broken", "fg": 1414 }, - { "id": "t_generator_broken", "fg": 1414, "bg": 3058 }, + { "id": "t_generator_broken", "fg": 1414, "bg": 3096 }, { "id": "f_bulletin", "fg": 1415 }, { "id": [ "f_canvas_door", "f_large_canvas_door" ], "fg": 1416 }, { "id": [ "f_canvas_door_o", "f_large_canvas_door_o" ], "fg": 1417 }, @@ -1616,7 +1619,7 @@ }, { "id": "f_cardboard_box", "fg": 1434 }, { "id": "f_centrifuge", "fg": 1435 }, - { "id": "t_centrifuge", "fg": 1435, "bg": 3287 }, + { "id": "t_centrifuge", "fg": 1435, "bg": 3325 }, { "id": "f_chair", "rotates": true, "fg": [ 1438, 1439, 1437, 1436 ] }, { "id": "f_chamomile", "fg": 1440 }, { "id": "f_compact_ASRG_containment", "fg": 1442 }, @@ -1868,53 +1871,53 @@ { "id": "nodachi", "fg": 1761 }, { "id": "nodachi_fake", "fg": 1761 }, { "id": "nodachi_inferior", "fg": 1761 }, - { "id": "arming_sword", "fg": 1897 }, - { "id": "art_sphere", "fg": 1912 }, - { "id": "art_rod", "fg": 1910 }, - { "id": "art_teardrop", "fg": 1914 }, - { "id": "art_lamp", "fg": 1906 }, - { "id": "art_snake", "fg": 1911 }, - { "id": "art_disc", "fg": 1903 }, - { "id": "art_beads", "fg": 1900 }, - { "id": "art_napkin", "fg": 1907 }, - { "id": "art_urchin", "fg": 1916 }, - { "id": "art_jelly", "fg": 1904 }, - { "id": "art_spiral", "fg": 1913 }, - { "id": "art_pin", "fg": 1908 }, - { "id": "art_tube", "fg": 1915 }, - { "id": "art_pyramid", "fg": 1909 }, - { "id": "art_crystal", "fg": 1902 }, - { "id": "art_knot", "fg": 1905 }, - { "id": "art_crescent", "fg": 1901 }, - { "id": "altered_teapot", "fg": 1898 }, - { "id": "architect_cube", "fg": 1899 }, - { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 1974 }, - { "id": [ "ak47", "aksemi" ], "fg": 1924 }, - { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 1938 }, - { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 1975 }, - { "id": [ "m249", "m249_semi" ], "fg": 1983 }, - { "id": [ "m60", "m60_semi" ], "fg": 1993 }, - { "id": [ "mp40", "mp40semi" ], "fg": 2009 }, - { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 2048 }, - { "id": "fire_ax", "fg": 2064 }, - { "id": "ax", "fg": 2067 }, - { "id": "hatchet", "fg": 2065 }, - { "id": "backpack", "fg": 2068 }, - { "id": "duffelbag", "fg": 2069 }, - { "id": "molle_pack", "fg": 2070 }, - { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 2073 }, - { "id": "bag_canvas", "fg": 2076 }, - { "id": "bat", "fg": 2077 }, - { "id": "bat_metal", "fg": 2078 }, - { "id": "blanket", "fg": 2079 }, - { "id": "down_blanket", "fg": 2080 }, - { "id": "electric_blanket", "fg": 2081 }, - { "id": "board_trap", "fg": 2082 }, - { "id": [ "compbow", "compbow_high", "compbow_low" ], "fg": 2083 }, - { "id": "box_large", "fg": 2094 }, - { "id": "box_medium", "fg": 2095 }, - { "id": "broom", "fg": 2096 }, - { "id": "bwirebat", "fg": 2097 }, + { "id": "arming_sword", "fg": 1898 }, + { "id": "art_sphere", "fg": 1913 }, + { "id": "art_rod", "fg": 1911 }, + { "id": "art_teardrop", "fg": 1915 }, + { "id": "art_lamp", "fg": 1907 }, + { "id": "art_snake", "fg": 1912 }, + { "id": "art_disc", "fg": 1904 }, + { "id": "art_beads", "fg": 1901 }, + { "id": "art_napkin", "fg": 1908 }, + { "id": "art_urchin", "fg": 1917 }, + { "id": "art_jelly", "fg": 1905 }, + { "id": "art_spiral", "fg": 1914 }, + { "id": "art_pin", "fg": 1909 }, + { "id": "art_tube", "fg": 1916 }, + { "id": "art_pyramid", "fg": 1910 }, + { "id": "art_crystal", "fg": 1903 }, + { "id": "art_knot", "fg": 1906 }, + { "id": "art_crescent", "fg": 1902 }, + { "id": "altered_teapot", "fg": 1899 }, + { "id": "architect_cube", "fg": 1900 }, + { "id": [ "m16_auto_rifle_var_acr", "acr_300blk" ], "fg": 1975 }, + { "id": [ "ak47", "aksemi" ], "fg": 1925 }, + { "id": [ "carbine_flintlock", "carbine_flintlock_double" ], "fg": 1939 }, + { "id": [ "m16a4", "m16_auto_rifle_var_m16a3" ], "fg": 1976 }, + { "id": [ "m249", "m249_semi" ], "fg": 1984 }, + { "id": [ "m60", "m60_semi" ], "fg": 1994 }, + { "id": [ "mp40", "mp40semi" ], "fg": 2010 }, + { "id": [ "slamfire_shotgun", "slamfire_shotgun_d" ], "fg": 2049 }, + { "id": "fire_ax", "fg": 2065 }, + { "id": "ax", "fg": 2068 }, + { "id": "hatchet", "fg": 2066 }, + { "id": "backpack", "fg": 2069 }, + { "id": "duffelbag", "fg": 2070 }, + { "id": "molle_pack", "fg": 2071 }, + { "id": [ "rifle_case_soft_leather", "rifle_case_xl_soft_leather" ], "fg": 2074 }, + { "id": "bag_canvas", "fg": 2077 }, + { "id": "bat", "fg": 2078 }, + { "id": "bat_metal", "fg": 2079 }, + { "id": "blanket", "fg": 2080 }, + { "id": "down_blanket", "fg": 2081 }, + { "id": "electric_blanket", "fg": 2082 }, + { "id": "board_trap", "fg": 2083 }, + { "id": [ "compbow", "compbow_high", "compbow_low" ], "fg": 2084 }, + { "id": "box_large", "fg": 2095 }, + { "id": "box_medium", "fg": 2096 }, + { "id": "broom", "fg": 2097 }, + { "id": "bwirebat", "fg": 2098 }, { "id": "cattlefodder", "fg": 2116 }, { "id": "chainsaw_off", "fg": 2117 }, { "id": "axe_ring", "fg": 2124 }, @@ -2485,40 +2488,65 @@ { "id": "mon_zpider_mass", "fg": 2605, "bg": 2498 }, { "id": "mon_spider_widow_small", "fg": 2603, "bg": 2498 }, { "id": "mon_dog_zombie_cop", "fg": 2606, "bg": 2497 }, + { "id": "mon_zombie_anklebiter", "fg": 2608, "bg": 2498 }, + { "id": "mon_zombie_creepy", "fg": 2611, "bg": 2498 }, + { "id": "mon_zombie_shriekling", "fg": 2612, "bg": 2498 }, + { "id": "mon_zombie_snotgobbler", "fg": 2613, "bg": 2498 }, + { "id": "mon_zombie_sproglodyte", "fg": 2614, "bg": 2498 }, + { "id": "mon_zombie_waif", "fg": 2607, "bg": 2498 }, + { "id": "mon_zombie_child_scorched", "fg": 2610, "bg": 2498 }, + { "id": "mon_zombie_child_fungus", "fg": 2609, "bg": 2498 }, { "id": "mon_zombie_child", - "fg": [ { "weight": 1, "sprite": 2609 }, { "weight": 1, "sprite": 2610 } ], + "fg": [ + { "weight": 1, "sprite": 2615 }, + { "weight": 1, "sprite": 2626 }, + { "weight": 1, "sprite": 2632 }, + { "weight": 1, "sprite": 2633 }, + { "weight": 1, "sprite": 2634 }, + { "weight": 1, "sprite": 2635 }, + { "weight": 1, "sprite": 2636 }, + { "weight": 1, "sprite": 2637 }, + { "weight": 1, "sprite": 2638 }, + { "weight": 1, "sprite": 2616 }, + { "weight": 1, "sprite": 2617 }, + { "weight": 1, "sprite": 2618 }, + { "weight": 1, "sprite": 2619 }, + { "weight": 1, "sprite": 2620 }, + { "weight": 1, "sprite": 2621 }, + { "weight": 1, "sprite": 2622 }, + { "weight": 1, "sprite": 2623 }, + { "weight": 1, "sprite": 2624 }, + { "weight": 1, "sprite": 2625 }, + { "weight": 1, "sprite": 2627 }, + { "weight": 1, "sprite": 2628 }, + { "weight": 1, "sprite": 2629 }, + { "weight": 1, "sprite": 2630 }, + { "weight": 1, "sprite": 2631 } + ], "bg": 2498 }, - { "id": "mon_zombie_anklebiter", "fg": 2608, "bg": 2498 }, - { "id": "mon_zombie_creepy", "fg": 2613, "bg": 2498 }, - { "id": "mon_zombie_shriekling", "fg": 2614, "bg": 2498 }, - { "id": "mon_zombie_snotgobbler", "fg": 2615, "bg": 2498 }, - { "id": "mon_zombie_sproglodyte", "fg": 2616, "bg": 2498 }, - { "id": "mon_zombie_waif", "fg": 2607, "bg": 2498 }, - { "id": "mon_zombie_child_scorched", "fg": 2612, "bg": 2498 }, - { "id": "mon_zombie_child_fungus", "fg": 2611, "bg": 2498 }, - { "id": "lighting_lowlight_dark", "fg": 2622 }, - { "id": "lighting_boomered_dark", "fg": 2617 }, + { "id": "lighting_lowlight_dark", "fg": 2644 }, + { "id": "lighting_boomered_dark", "fg": 2639 }, { "id": "lighting_hidden", "fg": [ - { "weight": 100, "sprite": 2618 }, - { "weight": 100, "sprite": 2619 }, - { "weight": 100, "sprite": 2620 }, - { "weight": 100, "sprite": 2621 } - ] - }, - { "id": "animation_hit", "fg": 2640 }, - { "id": "cursor", "fg": 2642 }, - { "id": "highlight", "fg": 2644 }, - { "id": "highlight_item", "fg": 2645 }, - { "id": "line_target", "fg": 2643 }, - { "id": "line_trail", "fg": 2646 }, - { "id": "animation_line", "fg": 2641 }, - { "id": "overlay_effect_common_cold", "fg": 2655 }, - { "id": "overlay_effect_flu", "fg": 2655 }, - { "id": "generic_city_building", "fg": 2676, "bg": 2673 }, + { "weight": 100, "sprite": 2640 }, + { "weight": 100, "sprite": 2641 }, + { "weight": 100, "sprite": 2642 }, + { "weight": 100, "sprite": 2643 } + ] + }, + { "id": "animation_hit", "fg": 2662 }, + { "id": "cursor", "fg": 2664 }, + { "id": "highlight", "fg": 2666 }, + { "id": "highlight_item", "fg": 2667 }, + { "id": "line_target", "fg": 2665 }, + { "id": "line_trail", "fg": 2668 }, + { "id": "animation_line", "fg": 2663 }, + { "id": "overlay_effect_common_cold", "fg": 2677 }, + { "id": "overlay_effect_flu", "fg": 2677 }, + { "id": "generic_city_building", "fg": 2698, "bg": 2695 }, { "id": [ "abstorefront_1", @@ -2547,25 +2575,25 @@ "s_sports", "veterinarian" ], - "fg": 2676, - "bg": 2673 + "fg": 2698, + "bg": 2695 }, - { "id": "forest_water", "fg": 2681 }, - { "id": [ "forest", "special_forest" ], "fg": 2674, "bg": 2673 }, - { "id": [ "field", "special_field" ], "fg": 2673 }, - { "id": "open_air", "fg": 2675 }, + { "id": "forest_water", "fg": 2703 }, + { "id": [ "forest", "special_forest" ], "fg": 2696, "bg": 2695 }, + { "id": [ "field", "special_field" ], "fg": 2695 }, + { "id": "open_air", "fg": 2697 }, { "id": "railroad", - "fg": 3798, - "bg": 3775, + "fg": 3836, + "bg": 3813, "multitile": true, "additional_tiles": [ - { "id": "center", "bg": 3775, "fg": 3792 }, - { "id": "corner", "bg": 3775, "fg": [ 3794, 3796, 3795, 3793 ] }, - { "id": "t_connection", "bg": 3775, "fg": [ 3800, 3802, 3801, 3799 ] }, - { "id": "edge", "bg": 3775, "fg": [ 3798, 3797 ] }, - { "id": "end_piece", "bg": 3775, "fg": [ 3798, 3797, 3798, 3797 ] }, - { "id": "unconnected", "bg": 3775, "fg": [ 3798, 3797 ] } + { "id": "center", "bg": 3813, "fg": 3830 }, + { "id": "corner", "bg": 3813, "fg": [ 3832, 3834, 3833, 3831 ] }, + { "id": "t_connection", "bg": 3813, "fg": [ 3838, 3840, 3839, 3837 ] }, + { "id": "edge", "bg": 3813, "fg": [ 3836, 3835 ] }, + { "id": "end_piece", "bg": 3813, "fg": [ 3836, 3835, 3836, 3835 ] }, + { "id": "unconnected", "bg": 3813, "fg": [ 3836, 3835 ] } ] }, { @@ -2788,19 +2816,19 @@ "urban_13_11", "urban_13_12" ], - "fg": [ 2678, 2677, 2679, 2680 ], - "bg": 2673, + "fg": [ 2700, 2699, 2701, 2702 ], + "bg": 2695, "rotates": true }, - { "id": "anthill", "fg": 2683, "bg": 2673, "rotates": false }, - { "id": "acid_anthill", "fg": 2682, "bg": 2673, "rotates": false }, + { "id": "anthill", "fg": 2705, "bg": 2695, "rotates": false }, + { "id": "acid_anthill", "fg": 2704, "bg": 2695, "rotates": false }, { "id": [ "2farm_3", "farm_3", "farm_isherwood_3", "farm_dairy_twd_6", "farm_dairy_twd_12", "ranch_camp_66", "dairy_farm_SE" ], - "fg": [ 2685, 2684, 2685, 2684 ], - "bg": 2673, + "fg": [ 2707, 2706, 2707, 2706 ], + "bg": 2695, "rotates": true }, - { "id": [ "desolatebarn", "barn_aban1" ], "fg": 2686, "bg": 2673 }, + { "id": [ "desolatebarn", "barn_aban1" ], "fg": 2708, "bg": 2695 }, { "id": [ "2farm_loft_3", @@ -2813,8 +2841,8 @@ "ranch_camp_66_roof", "dairy_farm_SE_roof" ], - "fg": [ 2685, 2684, 2685, 2684 ], - "bg": 2675, + "fg": [ 2707, 2706, 2707, 2706 ], + "bg": 2697, "rotates": true }, { @@ -2836,8 +2864,8 @@ "cabin_strange_b", "riverside_dwelling" ], - "fg": [ 2688, 2687, 2689, 2690 ], - "bg": 2673, + "fg": [ 2710, 2709, 2711, 2712 ], + "bg": 2695, "rotates": true }, { @@ -2855,8 +2883,8 @@ "cabin_lake_roof", "lake_cabin_boathouse_roof" ], - "fg": [ 2688, 2687, 2689, 2690 ], - "bg": 2675, + "fg": [ 2710, 2709, 2711, 2712 ], + "bg": 2697, "rotates": true }, { @@ -2872,12 +2900,12 @@ "ws_survivor_camp", "homelesscamp" ], - "fg": 2691, - "bg": 2673 + "fg": 2713, + "bg": 2695 }, - { "id": "cave", "fg": 2692, "bg": 2673 }, - { "id": "cave_underground", "fg": 2692 }, - { "id": [ "airliner_2b_-1", "airliner_2c_-1" ], "fg": 2694, "rotates": false }, + { "id": "cave", "fg": 2714, "bg": 2695 }, + { "id": "cave_underground", "fg": 2714 }, + { "id": [ "airliner_2b_-1", "airliner_2c_-1" ], "fg": 2716, "rotates": false }, { "id": [ "airliner_1a", @@ -2910,26 +2938,26 @@ "airliner_2j", "airliner_3j" ], - "fg": 2695 + "fg": 2717 }, - { "id": [ "airliner_2a_1", "airliner_2c_1" ], "fg": 2675 }, - { "id": [ "dirt_road", "dirt_road_forest" ], "fg": [ 2702, 2701 ], "rotates": true }, - { "id": [ "dirt_road_3way", "dirt_road_3way_forest" ], "fg": [ 2708, 2707, 2709, 2710 ], "rotates": true }, - { "id": [ "dirt_road_turn", "dirt_road_turn_forest" ], "fg": [ 2697, 2699, 2700, 2698 ], "rotates": true }, - { "id": [ "dirt_road_turn1", "dirt_road_turn1_forest" ], "fg": [ 2698, 2697, 2699, 2700 ], "rotates": true }, + { "id": [ "airliner_2a_1", "airliner_2c_1" ], "fg": 2697 }, + { "id": [ "dirt_road", "dirt_road_forest" ], "fg": [ 2724, 2723 ], "rotates": true }, + { "id": [ "dirt_road_3way", "dirt_road_3way_forest" ], "fg": [ 2730, 2729, 2731, 2732 ], "rotates": true }, + { "id": [ "dirt_road_turn", "dirt_road_turn_forest" ], "fg": [ 2719, 2721, 2722, 2720 ], "rotates": true }, + { "id": [ "dirt_road_turn1", "dirt_road_turn1_forest" ], "fg": [ 2720, 2719, 2721, 2722 ], "rotates": true }, { "id": [ "shelter", "shelter_1", "shelter_2", "shelter_vandal", "shelter_1_vandal", "shelter_2_vandal" ], - "fg": [ 2713, 2712, 2714, 2715 ], - "bg": 2673, + "fg": [ 2735, 2734, 2736, 2737 ], + "bg": 2695, "rotates": true }, { "id": [ "shelter_roof", "shelter_roof_1", "shelter_roof_2" ], - "fg": [ 2713, 2712, 2714, 2715 ], - "bg": 2675, + "fg": [ 2735, 2734, 2736, 2737 ], + "bg": 2697, "rotates": true }, - { "id": "shelter_under", "fg": [ 2713, 2712, 2714, 2715 ], "rotates": true }, + { "id": "shelter_under", "fg": [ 2735, 2734, 2736, 2737 ], "rotates": true }, { "id": [ "2farm_1", @@ -2998,19 +3026,19 @@ "horse_farm_isherwood_2", "yard" ], - "fg": 2716 + "fg": 2738 }, { "id": "forest_trail", - "fg": 2732, + "fg": 2754, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2717 }, - { "id": "corner", "fg": [ 2719, 2721, 2720, 2718 ] }, - { "id": "t_connection", "fg": [ 2729, 2731, 2730, 2728 ] }, - { "id": "edge", "fg": [ 2723, 2722 ] }, - { "id": "end_piece", "fg": [ 2725, 2727, 2726, 2724 ] }, - { "id": "unconnected", "fg": [ 2732, 2732 ] } + { "id": "center", "fg": 2739 }, + { "id": "corner", "fg": [ 2741, 2743, 2742, 2740 ] }, + { "id": "t_connection", "fg": [ 2751, 2753, 2752, 2750 ] }, + { "id": "edge", "fg": [ 2745, 2744 ] }, + { "id": "end_piece", "fg": [ 2747, 2749, 2748, 2746 ] }, + { "id": "unconnected", "fg": [ 2754, 2754 ] } ] }, { @@ -3027,46 +3055,50 @@ "garage_gas_roof_2", "garage_gas_roof_3" ], - "fg": [ 2734, 2733, 2735, 2736 ], - "bg": 2673 - }, - { "id": "2farm_7", "fg": 2717 }, - { "id": "crater", "fg": 3630, "bg": 2673 }, - { "id": "ranch_camp_17", "fg": 4453, "bg": 2764 }, - { "id": "ranch_camp_76", "fg": 2717 }, - { "id": "ranch_camp_77", "fg": [ 2818, 2817, 2819, 2820 ], "bg": 2673, "rotates": true }, - { "id": "lighthouse_z2", "fg": 2744, "bg": 2675 }, - { "id": "lighthouse_z3", "fg": 2745, "bg": 2675 }, - { "id": "lighthouse_z4", "fg": 2746, "bg": 2675 }, - { "id": "lighthouse_z5", "fg": 2747, "bg": 2675 }, - { "id": "lighthouse_roof", "fg": 2743, "bg": 2675 }, - { "id": "note_!_black", "fg": 2748 }, - { "id": "note_!_red", "fg": 2761 }, - { "id": "note_!_green", "fg": 2753 }, - { "id": "note_!_brown", "fg": 2750 }, - { "id": "note_!_blue", "fg": 2749 }, - { "id": "note_!_magenta", "fg": 2759 }, - { "id": "note_!_cyan", "fg": 2751 }, - { "id": "note_!_light_gray", "fg": 2756 }, - { "id": "note_!_dark_gray", "fg": 2752 }, - { "id": "note_!_light_red", "fg": 2758 }, - { "id": "note_!_light_green", "fg": 2757 }, - { "id": "note_!_yellow", "fg": 2763 }, - { "id": "note_!_light_blue", "fg": 2754 }, - { "id": "note_!_pink", "fg": 2760 }, - { "id": "note_!_light_cyan", "fg": 2755 }, - { "id": "note_!_white", "fg": 2762 }, - { "id": "2farm_4", "fg": [ 2772, 2771, 2773, 2774 ], "rotates": true }, - { "id": "2farm_8", "fg": [ 2773, 2774, 2772, 2771 ], "rotates": true }, - { "id": "dairy_farm_NW", "fg": [ 2774, 2772, 2771, 2773 ], "rotates": true }, - { "id": "dairy_farm_NE", "fg": [ 2771, 2773, 2774, 2772 ], "rotates": true }, - { "id": "ranch_camp_1", "fg": [ 2768, 2767, 2769, 2770 ], "rotates": true }, + "fg": [ 2756, 2755, 2757, 2758 ], + "bg": 2695 + }, + { "id": "2farm_7", "fg": 2739 }, + { "id": "crater", "fg": 3668, "bg": 2695 }, + { "id": "ranch_camp_17", "fg": 4491, "bg": 2802 }, + { "id": "ranch_camp_76", "fg": 2739 }, + { "id": "ranch_camp_77", "fg": [ 2856, 2855, 2857, 2858 ], "bg": 2695, "rotates": true }, + { "id": "helipad_ne", "fg": [ 2760, 2762, 2761, 2759 ], "rotates": true }, + { "id": "helipad_nw", "fg": [ 2764, 2766, 2765, 2763 ], "rotates": true }, + { "id": "helipad_se", "fg": [ 2768, 2770, 2769, 2767 ], "rotates": true }, + { "id": "helipad_sw", "fg": [ 2772, 2774, 2773, 2771 ], "rotates": true }, + { "id": "lighthouse_z2", "fg": 2782, "bg": 2697 }, + { "id": "lighthouse_z3", "fg": 2783, "bg": 2697 }, + { "id": "lighthouse_z4", "fg": 2784, "bg": 2697 }, + { "id": "lighthouse_z5", "fg": 2785, "bg": 2697 }, + { "id": "lighthouse_roof", "fg": 2781, "bg": 2697 }, + { "id": "note_!_black", "fg": 2786 }, + { "id": "note_!_red", "fg": 2799 }, + { "id": "note_!_green", "fg": 2791 }, + { "id": "note_!_brown", "fg": 2788 }, + { "id": "note_!_blue", "fg": 2787 }, + { "id": "note_!_magenta", "fg": 2797 }, + { "id": "note_!_cyan", "fg": 2789 }, + { "id": "note_!_light_gray", "fg": 2794 }, + { "id": "note_!_dark_gray", "fg": 2790 }, + { "id": "note_!_light_red", "fg": 2796 }, + { "id": "note_!_light_green", "fg": 2795 }, + { "id": "note_!_yellow", "fg": 2801 }, + { "id": "note_!_light_blue", "fg": 2792 }, + { "id": "note_!_pink", "fg": 2798 }, + { "id": "note_!_light_cyan", "fg": 2793 }, + { "id": "note_!_white", "fg": 2800 }, + { "id": "2farm_4", "fg": [ 2810, 2809, 2811, 2812 ], "rotates": true }, + { "id": "2farm_8", "fg": [ 2811, 2812, 2810, 2809 ], "rotates": true }, + { "id": "dairy_farm_NW", "fg": [ 2812, 2810, 2809, 2811 ], "rotates": true }, + { "id": "dairy_farm_NE", "fg": [ 2809, 2811, 2812, 2810 ], "rotates": true }, + { "id": "ranch_camp_1", "fg": [ 2806, 2805, 2807, 2808 ], "rotates": true }, { "id": [ "ranch_camp_2", "ranch_camp_3", "ranch_camp_4", "ranch_camp_5", "ranch_camp_6", "ranch_camp_7", "ranch_camp_8" ], - "fg": [ 2776, 2775, 2777, 2778 ], + "fg": [ 2814, 2813, 2815, 2816 ], "rotates": true }, - { "id": "ranch_camp_9", "fg": [ 2767, 2769, 2770, 2768 ], "rotates": true }, + { "id": "ranch_camp_9", "fg": [ 2805, 2807, 2808, 2806 ], "rotates": true }, { "id": [ "ranch_camp_10", @@ -3077,7 +3109,7 @@ "ranch_camp_55", "ranch_camp_64" ], - "fg": [ 2778, 2776, 2775, 2777 ], + "fg": [ 2816, 2814, 2813, 2815 ], "rotates": true }, { @@ -3127,7 +3159,7 @@ "ranch_camp_70", "ranch_camp_71" ], - "fg": 2764, + "fg": 2802, "rotates": true }, { @@ -3140,730 +3172,730 @@ "ranch_camp_63", "ranch_camp_72" ], - "fg": [ 2775, 2777, 2778, 2776 ], + "fg": [ 2813, 2815, 2816, 2814 ], "rotates": true }, - { "id": [ "ranch_camp_73", "ranch_camp_78" ], "fg": [ 2770, 2768, 2767, 2769 ], "rotates": true }, + { "id": [ "ranch_camp_73", "ranch_camp_78" ], "fg": [ 2808, 2806, 2805, 2807 ], "rotates": true }, { "id": [ "ranch_camp_74", "ranch_camp_79", "ranch_camp_80" ], - "fg": [ 2777, 2778, 2776, 2775 ], + "fg": [ 2815, 2816, 2814, 2813 ], "rotates": true }, - { "id": [ "ranch_camp_75", "ranch_camp_81" ], "fg": [ 2769, 2770, 2768, 2767 ], "rotates": true }, - { "id": "pond_field", "fg": 2781, "bg": 2673, "rotates": false }, - { "id": "pond_forest", "fg": 2782, "bg": 2673, "rotates": false }, - { "id": "pond_swamp", "fg": 2783, "bg": 2673, "rotates": false }, - { "id": "hot_springs", "fg": 2780, "bg": 2673, "rotates": false }, + { "id": [ "ranch_camp_75", "ranch_camp_81" ], "fg": [ 2807, 2808, 2806, 2805 ], "rotates": true }, + { "id": "pond_field", "fg": 2819, "bg": 2695, "rotates": false }, + { "id": "pond_forest", "fg": 2820, "bg": 2695, "rotates": false }, + { "id": "pond_swamp", "fg": 2821, "bg": 2695, "rotates": false }, + { "id": "hot_springs", "fg": 2818, "bg": 2695, "rotates": false }, { "id": [ "pool", "pool_1", "pool_2", "pool_3", "pool_4" ], - "fg": [ 2785, 2784, 2786, 2787 ], - "bg": 2673, + "fg": [ 2823, 2822, 2824, 2825 ], + "bg": 2695, "rotates": true }, - { "id": [ "pool_5", "pool_6" ], "fg": [ 2789, 2788, 2790, 2791 ], "bg": 2673, "rotates": true }, + { "id": [ "pool_5", "pool_6" ], "fg": [ 2827, 2826, 2828, 2829 ], "bg": 2695, "rotates": true }, { "id": [ "pool_roof", "pool_roof_1", "pool_roof_2", "pool_roof_3", "pool_roof_4" ], - "fg": [ 2785, 2784, 2786, 2787 ], - "bg": 2675, + "fg": [ 2823, 2822, 2824, 2825 ], + "bg": 2697, "rotates": true }, - { "id": "publicgarden", "fg": 2792 }, - { "id": "PublicPond_1a", "fg": [ 2796, 2794, 2793, 2795 ], "rotates": true }, - { "id": "PublicPond_1b", "fg": [ 2793, 2795, 2796, 2794 ], "rotates": true }, - { "id": "river_nw", "fg": 2805, "bg": 2673, "rotates": false }, - { "id": "river_sw", "fg": 2808, "bg": 2673, "rotates": false }, - { "id": "river_se", "fg": 2806, "bg": 2673, "rotates": false }, - { "id": "river_ne", "fg": 2803, "bg": 2673, "rotates": false }, - { "id": "river_north", "fg": 2804, "bg": 2673, "rotates": false }, - { "id": "river_west", "fg": 2809, "bg": 2673, "rotates": false }, - { "id": "river_east", "fg": 2802, "bg": 2673, "rotates": false }, - { "id": "river_south", "fg": 2807, "bg": 2673, "rotates": false }, - { "id": "river_center", "fg": 2801, "bg": 2673, "rotates": false }, - { "id": "river", "fg": [ 2804, 2802, 2807, 2809 ], "bg": 2673, "rotates": true }, - { "id": "river_c_not_nw", "fg": 2798, "bg": 2673, "rotates": false }, - { "id": "river_c_not_ne", "fg": 2797, "bg": 2673, "rotates": false }, - { "id": "river_c_not_sw", "fg": 2800, "bg": 2673, "rotates": false }, - { "id": "river_c_not_se", "fg": 2799, "bg": 2673, "rotates": false }, + { "id": "publicgarden", "fg": 2830 }, + { "id": "PublicPond_1a", "fg": [ 2834, 2832, 2831, 2833 ], "rotates": true }, + { "id": "PublicPond_1b", "fg": [ 2831, 2833, 2834, 2832 ], "rotates": true }, + { "id": "river_nw", "fg": 2843, "bg": 2695, "rotates": false }, + { "id": "river_sw", "fg": 2846, "bg": 2695, "rotates": false }, + { "id": "river_se", "fg": 2844, "bg": 2695, "rotates": false }, + { "id": "river_ne", "fg": 2841, "bg": 2695, "rotates": false }, + { "id": "river_north", "fg": 2842, "bg": 2695, "rotates": false }, + { "id": "river_west", "fg": 2847, "bg": 2695, "rotates": false }, + { "id": "river_east", "fg": 2840, "bg": 2695, "rotates": false }, + { "id": "river_south", "fg": 2845, "bg": 2695, "rotates": false }, + { "id": "river_center", "fg": 2839, "bg": 2695, "rotates": false }, + { "id": "river", "fg": [ 2842, 2840, 2845, 2847 ], "bg": 2695, "rotates": true }, + { "id": "river_c_not_nw", "fg": 2836, "bg": 2695, "rotates": false }, + { "id": "river_c_not_ne", "fg": 2835, "bg": 2695, "rotates": false }, + { "id": "river_c_not_sw", "fg": 2838, "bg": 2695, "rotates": false }, + { "id": "river_c_not_se", "fg": 2837, "bg": 2695, "rotates": false }, { "id": "road", - "fg": 2825, + "fg": 2863, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 2810 }, - { "id": "corner", "fg": [ 2812, 2814, 2813, 2811 ], "bg": 2673 }, - { "id": "t_connection", "fg": [ 2822, 2824, 2823, 2821 ] }, - { "id": "edge", "fg": [ 2816, 2815 ] }, - { "id": "end_piece", "fg": [ 2818, 2820, 2819, 2817 ] }, - { "id": "unconnected", "fg": [ 2825, 2825 ], "bg": 2673 } + { "id": "center", "fg": 2848 }, + { "id": "corner", "fg": [ 2850, 2852, 2851, 2849 ], "bg": 2695 }, + { "id": "t_connection", "fg": [ 2860, 2862, 2861, 2859 ] }, + { "id": "edge", "fg": [ 2854, 2853 ] }, + { "id": "end_piece", "fg": [ 2856, 2858, 2857, 2855 ] }, + { "id": "unconnected", "fg": [ 2863, 2863 ], "bg": 2695 } ] }, - { "id": "road_nesw_manhole", "fg": 2826, "bg": 2810 }, + { "id": "road_nesw_manhole", "fg": 2864, "bg": 2848 }, { "id": [ "house_farm", "farm_2", "farm_isherwood_2", "2farm_11" ], - "fg": [ 2828, 2827, 2829, 2830 ], - "bg": 2673, + "fg": [ 2866, 2865, 2867, 2868 ], + "bg": 2695, "rotates": true }, - { "id": [ "dairy_farm_SW", "ranch_camp_68" ], "fg": [ 2829, 2830, 2828, 2827 ], "bg": 2673, "rotates": true }, + { "id": [ "dairy_farm_SW", "ranch_camp_68" ], "fg": [ 2867, 2868, 2866, 2865 ], "bg": 2695, "rotates": true }, { "id": [ "house_farm_roof", "farm_2_roof", "farm_isherwood_2_roof", "2farm_roof_11" ], - "fg": [ 2828, 2827, 2829, 2830 ], - "bg": 2675, + "fg": [ 2866, 2865, 2867, 2868 ], + "bg": 2697, "rotates": true }, { "id": [ "dairy_farm_SW_roof", "ranch_camp_68_roof" ], - "fg": [ 2829, 2830, 2828, 2827 ], - "bg": 2675, + "fg": [ 2867, 2868, 2866, 2865 ], + "bg": 2697, "rotates": true }, - { "id": "farm_isherwood_2_cellar", "fg": [ 2828, 2827, 2829, 2830 ], "rotates": true }, - { "id": [ "2silos", "ranch_camp_57" ], "fg": [ 2832, 2831, 2832, 2831 ], "bg": 2673, "rotates": true }, + { "id": "farm_isherwood_2_cellar", "fg": [ 2866, 2865, 2867, 2868 ], "rotates": true }, + { "id": [ "2silos", "ranch_camp_57" ], "fg": [ 2870, 2869, 2870, 2869 ], "bg": 2695, "rotates": true }, { "id": [ "2silos_1", "2silos_2", "2silos_roof" ], - "fg": [ 2832, 2831, 2832, 2831 ], - "bg": 2675, + "fg": [ 2870, 2869, 2870, 2869 ], + "bg": 2697, "rotates": true }, - { "id": "slimepit_top", "fg": 2833, "bg": 2673 }, - { "id": [ "slimepit_bottom", "slimepit", "slimepit_down" ], "fg": 4062 }, - { "id": "hunter_shack", "fg": [ 2839, 2838, 2840, 2841 ], "bg": 2673, "rotates": true }, - { "id": "hunter_shack_1", "fg": [ 2836, 2834, 2835, 2837 ], "bg": 2673, "rotates": true }, - { "id": "hunter_shack_roof", "fg": [ 2839, 2838, 2840, 2841 ], "bg": 2675, "rotates": true }, - { "id": "hunter_shack_roof_1", "fg": [ 2836, 2834, 2835, 2837 ], "bg": 2675, "rotates": true }, - { "id": "ws_fire_lookout_tower_base", "fg": 2842, "bg": 2673, "rotates": false }, - { "id": "ws_fire_lookout_tower_f1", "fg": 2842, "bg": 2675 }, - { "id": [ "ws_fire_lookout_tower_f2", "ws_fire_lookout_tower_f3" ], "fg": 2843, "bg": 2675 }, - { "id": "t_reb_cage", "fg": 2845, "bg": 3855 }, + { "id": "slimepit_top", "fg": 2871, "bg": 2695 }, + { "id": [ "slimepit_bottom", "slimepit", "slimepit_down" ], "fg": 4100 }, + { "id": "hunter_shack", "fg": [ 2877, 2876, 2878, 2879 ], "bg": 2695, "rotates": true }, + { "id": "hunter_shack_1", "fg": [ 2874, 2872, 2873, 2875 ], "bg": 2695, "rotates": true }, + { "id": "hunter_shack_roof", "fg": [ 2877, 2876, 2878, 2879 ], "bg": 2697, "rotates": true }, + { "id": "hunter_shack_roof_1", "fg": [ 2874, 2872, 2873, 2875 ], "bg": 2697, "rotates": true }, + { "id": "ws_fire_lookout_tower_base", "fg": 2880, "bg": 2695, "rotates": false }, + { "id": "ws_fire_lookout_tower_f1", "fg": 2880, "bg": 2697 }, + { "id": [ "ws_fire_lookout_tower_f2", "ws_fire_lookout_tower_f3" ], "fg": 2881, "bg": 2697 }, + { "id": "t_reb_cage", "fg": 2883, "bg": 3893 }, { "id": "f_earthbag_half", "multitile": true, - "fg": 2861, - "bg": 3390, + "fg": 2899, + "bg": 3428, "additional_tiles": [ - { "id": "center", "fg": 2846 }, - { "id": "corner", "fg": [ 2848, 2850, 2849, 2847 ] }, - { "id": "t_connection", "fg": [ 2858, 2860, 2859, 2857 ] }, - { "id": "edge", "fg": [ 2852, 2851 ] }, - { "id": "end_piece", "fg": [ 2854, 2856, 2855, 2853 ] }, - { "id": "unconnected", "fg": [ 2861, 2861 ] } + { "id": "center", "fg": 2884 }, + { "id": "corner", "fg": [ 2886, 2888, 2887, 2885 ] }, + { "id": "t_connection", "fg": [ 2896, 2898, 2897, 2895 ] }, + { "id": "edge", "fg": [ 2890, 2889 ] }, + { "id": "end_piece", "fg": [ 2892, 2894, 2893, 2891 ] }, + { "id": "unconnected", "fg": [ 2899, 2899 ] } ] }, - { "id": [ "t_ramp_up_low", "t_ramp_down_low" ], "fg": 3595 }, - { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_down_low" ], "fg": 4046 }, + { "id": [ "t_ramp_up_low", "t_ramp_down_low" ], "fg": 3633 }, + { "id": [ "t_sidewalk_ramp_up_low", "t_sidewalk_ramp_down_low" ], "fg": 4084 }, { "id": "t_splitrail_fence", "multitile": true, - "fg": 2904, - "bg": 3390, + "fg": 2942, + "bg": 3428, "additional_tiles": [ - { "id": "center", "bg": 3390, "fg": 2889 }, - { "id": "corner", "bg": 3390, "fg": [ 2891, 2893, 2892, 2890 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 2901, 2903, 2902, 2900 ] }, - { "id": "edge", "bg": 3390, "fg": [ 2895, 2894 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 2897, 2899, 2898, 2896 ] }, - { "bg": 3390, "id": "unconnected", "fg": [ 2904, 2904 ] } + { "id": "center", "bg": 3428, "fg": 2927 }, + { "id": "corner", "bg": 3428, "fg": [ 2929, 2931, 2930, 2928 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 2939, 2941, 2940, 2938 ] }, + { "id": "edge", "bg": 3428, "fg": [ 2933, 2932 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 2935, 2937, 2936, 2934 ] }, + { "bg": 3428, "id": "unconnected", "fg": [ 2942, 2942 ] } ] }, { "id": "t_splitrail_fence_season_summer", "multitile": true, - "fg": 2904, - "bg": 3400, + "fg": 2942, + "bg": 3438, "additional_tiles": [ - { "id": "center", "bg": 3400, "fg": 2889 }, - { "id": "corner", "bg": 3400, "fg": [ 2891, 2893, 2892, 2890 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 2901, 2903, 2902, 2900 ] }, - { "id": "edge", "bg": 3400, "fg": [ 2895, 2894 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 2897, 2899, 2898, 2896 ] }, - { "bg": 3400, "id": "unconnected", "fg": [ 2904, 2904 ] } + { "id": "center", "bg": 3438, "fg": 2927 }, + { "id": "corner", "bg": 3438, "fg": [ 2929, 2931, 2930, 2928 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 2939, 2941, 2940, 2938 ] }, + { "id": "edge", "bg": 3438, "fg": [ 2933, 2932 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 2935, 2937, 2936, 2934 ] }, + { "bg": 3438, "id": "unconnected", "fg": [ 2942, 2942 ] } ] }, { "id": "t_splitrail_fence_season_autumn", "multitile": true, - "fg": 2904, - "bg": 3395, + "fg": 2942, + "bg": 3433, "additional_tiles": [ - { "id": "center", "bg": 3395, "fg": 2889 }, - { "id": "corner", "bg": 3395, "fg": [ 2891, 2893, 2892, 2890 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 2901, 2903, 2902, 2900 ] }, - { "id": "edge", "bg": 3395, "fg": [ 2895, 2894 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 2897, 2899, 2898, 2896 ] }, - { "bg": 3395, "id": "unconnected", "fg": [ 2904, 2904 ] } + { "id": "center", "bg": 3433, "fg": 2927 }, + { "id": "corner", "bg": 3433, "fg": [ 2929, 2931, 2930, 2928 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 2939, 2941, 2940, 2938 ] }, + { "id": "edge", "bg": 3433, "fg": [ 2933, 2932 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 2935, 2937, 2936, 2934 ] }, + { "bg": 3433, "id": "unconnected", "fg": [ 2942, 2942 ] } ] }, { "id": "t_splitrail_fence_season_winter", "multitile": true, - "fg": 2904, - "bg": 2870, + "fg": 2942, + "bg": 2908, "additional_tiles": [ - { "id": "center", "bg": 2870, "fg": 2889 }, - { "id": "corner", "bg": 2870, "fg": [ 2891, 2893, 2892, 2890 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 2901, 2903, 2902, 2900 ] }, - { "id": "edge", "bg": 2870, "fg": [ 2895, 2894 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 2897, 2899, 2898, 2896 ] }, - { "bg": 2870, "id": "unconnected", "fg": [ 2904, 2904 ] } + { "id": "center", "bg": 2908, "fg": 2927 }, + { "id": "corner", "bg": 2908, "fg": [ 2929, 2931, 2930, 2928 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 2939, 2941, 2940, 2938 ] }, + { "id": "edge", "bg": 2908, "fg": [ 2933, 2932 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 2935, 2937, 2936, 2934 ] }, + { "bg": 2908, "id": "unconnected", "fg": [ 2942, 2942 ] } ] }, - { "id": "t_stairs_down", "fg": 2905 }, - { "id": "t_wood_stairs_down", "fg": 2906 }, + { "id": "t_stairs_down", "fg": 2943 }, + { "id": "t_wood_stairs_down", "fg": 2944 }, { "id": "t_adobe_brick_wall", "multitile": true, - "fg": 2922, + "fg": 2960, "additional_tiles": [ - { "id": "center", "fg": 2907 }, - { "id": "corner", "fg": [ 2909, 2911, 2910, 2908 ] }, - { "id": "t_connection", "fg": [ 2919, 2921, 2920, 2918 ] }, - { "id": "edge", "fg": [ 2913, 2912 ] }, - { "id": "end_piece", "fg": [ 2915, 2917, 2916, 2914 ] }, - { "id": "unconnected", "fg": [ 2922, 2922 ] } + { "id": "center", "fg": 2945 }, + { "id": "corner", "fg": [ 2947, 2949, 2948, 2946 ] }, + { "id": "t_connection", "fg": [ 2957, 2959, 2958, 2956 ] }, + { "id": "edge", "fg": [ 2951, 2950 ] }, + { "id": "end_piece", "fg": [ 2953, 2955, 2954, 2952 ] }, + { "id": "unconnected", "fg": [ 2960, 2960 ] } ] }, - { "id": "t_bars", "fg": 2923 }, + { "id": "t_bars", "fg": 2961 }, { "id": "t_brick_wall", "multitile": true, - "fg": 2939, + "fg": 2977, "additional_tiles": [ - { "id": "center", "fg": 2924 }, - { "id": "corner", "fg": [ 2926, 2928, 2927, 2925 ] }, - { "id": "t_connection", "fg": [ 2936, 2938, 2937, 2935 ] }, - { "id": "edge", "fg": [ 2930, 2929 ] }, - { "id": "end_piece", "fg": [ 2932, 2934, 2933, 2931 ] }, - { "id": "unconnected", "fg": 2939 } + { "id": "center", "fg": 2962 }, + { "id": "corner", "fg": [ 2964, 2966, 2965, 2963 ] }, + { "id": "t_connection", "fg": [ 2974, 2976, 2975, 2973 ] }, + { "id": "edge", "fg": [ 2968, 2967 ] }, + { "id": "end_piece", "fg": [ 2970, 2972, 2971, 2969 ] }, + { "id": "unconnected", "fg": 2977 } ] }, { "id": "t_bridge", "multitile": true, - "fg": 2955, + "fg": 2993, "additional_tiles": [ - { "id": "center", "fg": 2940 }, - { "id": "corner", "fg": [ 2942, 2944, 2943, 2941 ] }, - { "id": "t_connection", "fg": [ 2952, 2954, 2953, 2951 ] }, - { "id": "edge", "fg": [ 2946, 2945 ] }, - { "id": "end_piece", "fg": [ 2948, 2950, 2949, 2947 ] }, - { "id": "unconnected", "fg": [ 2955, 2955 ] } + { "id": "center", "fg": 2978 }, + { "id": "corner", "fg": [ 2980, 2982, 2981, 2979 ] }, + { "id": "t_connection", "fg": [ 2990, 2992, 2991, 2989 ] }, + { "id": "edge", "fg": [ 2984, 2983 ] }, + { "id": "end_piece", "fg": [ 2986, 2988, 2987, 2985 ] }, + { "id": "unconnected", "fg": [ 2993, 2993 ] } ] }, { "id": "t_carpet_green", "multitile": true, - "fg": 2974, + "fg": 3012, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 2956 }, - { "weight": 1, "sprite": 2957 }, - { "weight": 1, "sprite": 2958 }, - { "weight": 1, "sprite": 2959 } + { "weight": 1, "sprite": 2994 }, + { "weight": 1, "sprite": 2995 }, + { "weight": 1, "sprite": 2996 }, + { "weight": 1, "sprite": 2997 } ] }, - { "id": "corner", "fg": [ 2961, 2963, 2962, 2960 ] }, - { "id": "t_connection", "fg": [ 2971, 2973, 2972, 2970 ] }, - { "id": "edge", "fg": [ 2965, 2964 ] }, - { "id": "end_piece", "fg": [ 2967, 2969, 2968, 2966 ] }, - { "id": "unconnected", "fg": 2974 } + { "id": "corner", "fg": [ 2999, 3001, 3000, 2998 ] }, + { "id": "t_connection", "fg": [ 3009, 3011, 3010, 3008 ] }, + { "id": "edge", "fg": [ 3003, 3002 ] }, + { "id": "end_piece", "fg": [ 3005, 3007, 3006, 3004 ] }, + { "id": "unconnected", "fg": 3012 } ] }, { "id": "t_carpet_purple", "multitile": true, - "fg": 2993, + "fg": 3031, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 2975 }, - { "weight": 1, "sprite": 2976 }, - { "weight": 1, "sprite": 2977 }, - { "weight": 1, "sprite": 2978 } + { "weight": 1, "sprite": 3013 }, + { "weight": 1, "sprite": 3014 }, + { "weight": 1, "sprite": 3015 }, + { "weight": 1, "sprite": 3016 } ] }, - { "id": "corner", "fg": [ 2980, 2982, 2981, 2979 ] }, - { "id": "t_connection", "fg": [ 2990, 2992, 2991, 2989 ] }, - { "id": "edge", "fg": [ 2984, 2983 ] }, - { "id": "end_piece", "fg": [ 2986, 2988, 2987, 2985 ] }, - { "id": "unconnected", "fg": 2993 } + { "id": "corner", "fg": [ 3018, 3020, 3019, 3017 ] }, + { "id": "t_connection", "fg": [ 3028, 3030, 3029, 3027 ] }, + { "id": "edge", "fg": [ 3022, 3021 ] }, + { "id": "end_piece", "fg": [ 3024, 3026, 3025, 3023 ] }, + { "id": "unconnected", "fg": 3031 } ] }, { "id": "t_carpet_red", "multitile": true, - "fg": 3009, + "fg": 3047, "additional_tiles": [ - { "id": "center", "fg": 2994 }, - { "id": "corner", "fg": [ 2996, 2998, 2997, 2995 ] }, - { "id": "t_connection", "fg": [ 3006, 3008, 3007, 3005 ] }, - { "id": "edge", "fg": [ 3000, 2999 ] }, - { "id": "end_piece", "fg": [ 3002, 3004, 3003, 3001 ] }, - { "id": "unconnected", "fg": 3009 } + { "id": "center", "fg": 3032 }, + { "id": "corner", "fg": [ 3034, 3036, 3035, 3033 ] }, + { "id": "t_connection", "fg": [ 3044, 3046, 3045, 3043 ] }, + { "id": "edge", "fg": [ 3038, 3037 ] }, + { "id": "end_piece", "fg": [ 3040, 3042, 3041, 3039 ] }, + { "id": "unconnected", "fg": 3047 } ] }, { "id": "t_carpet_yellow", "multitile": true, - "fg": 3025, + "fg": 3063, "additional_tiles": [ - { "id": "center", "fg": 3010 }, - { "id": "corner", "fg": [ 3012, 3014, 3013, 3011 ] }, - { "id": "t_connection", "fg": [ 3022, 3024, 3023, 3021 ] }, - { "id": "edge", "fg": [ 3016, 3015 ] }, - { "id": "end_piece", "fg": [ 3018, 3020, 3019, 3017 ] }, - { "id": "unconnected", "fg": 3025 } + { "id": "center", "fg": 3048 }, + { "id": "corner", "fg": [ 3050, 3052, 3051, 3049 ] }, + { "id": "t_connection", "fg": [ 3060, 3062, 3061, 3059 ] }, + { "id": "edge", "fg": [ 3054, 3053 ] }, + { "id": "end_piece", "fg": [ 3056, 3058, 3057, 3055 ] }, + { "id": "unconnected", "fg": 3063 } ] }, { "id": "t_chainfence", - "fg": 3041, + "fg": 3079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3026, "bg": 3595 }, - { "id": "corner", "fg": [ 3028, 3030, 3029, 3027 ], "bg": 3595 }, - { "id": "t_connection", "fg": [ 3038, 3040, 3039, 3037 ], "bg": 3595 }, - { "id": "edge", "fg": [ 3032, 3031 ], "bg": 3595 }, - { "id": "end_piece", "fg": [ 3034, 3036, 3035, 3033 ], "bg": 3595 }, - { "id": "unconnected", "fg": [ 3041, 3041 ], "bg": 3595 } + { "id": "center", "fg": 3064, "bg": 3633 }, + { "id": "corner", "fg": [ 3066, 3068, 3067, 3065 ], "bg": 3633 }, + { "id": "t_connection", "fg": [ 3076, 3078, 3077, 3075 ], "bg": 3633 }, + { "id": "edge", "fg": [ 3070, 3069 ], "bg": 3633 }, + { "id": "end_piece", "fg": [ 3072, 3074, 3073, 3071 ], "bg": 3633 }, + { "id": "unconnected", "fg": [ 3079, 3079 ], "bg": 3633 } ], - "bg": 3595 + "bg": 3633 }, { "id": "t_chainfence_season_winter", - "fg": 3041, + "fg": 3079, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3026, "bg": 2870 }, - { "id": "corner", "fg": [ 3028, 3030, 3029, 3027 ], "bg": 2870 }, - { "id": "t_connection", "fg": [ 3038, 3040, 3039, 3037 ], "bg": 2870 }, - { "id": "edge", "fg": [ 3032, 3031 ], "bg": 2870 }, - { "id": "end_piece", "fg": [ 3034, 3036, 3035, 3033 ], "bg": 2870 }, - { "id": "unconnected", "fg": [ 3041, 3041 ], "bg": 2870 } + { "id": "center", "fg": 3064, "bg": 2908 }, + { "id": "corner", "fg": [ 3066, 3068, 3067, 3065 ], "bg": 2908 }, + { "id": "t_connection", "fg": [ 3076, 3078, 3077, 3075 ], "bg": 2908 }, + { "id": "edge", "fg": [ 3070, 3069 ], "bg": 2908 }, + { "id": "end_piece", "fg": [ 3072, 3074, 3073, 3071 ], "bg": 2908 }, + { "id": "unconnected", "fg": [ 3079, 3079 ], "bg": 2908 } ], - "bg": 2870 + "bg": 2908 }, { "id": "t_clay", "multitile": true, - "fg": 3057, - "bg": 3390, + "fg": 3095, + "bg": 3428, "additional_tiles": [ - { "id": "center", "bg": 3390, "fg": 3042 }, - { "id": "corner", "bg": 3390, "fg": [ 3044, 3046, 3045, 3043 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 3054, 3056, 3055, 3053 ] }, - { "id": "edge", "bg": 3390, "fg": [ 3048, 3047 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 3050, 3052, 3051, 3049 ] }, - { "bg": 3390, "id": "unconnected", "fg": 3057 } + { "id": "center", "bg": 3428, "fg": 3080 }, + { "id": "corner", "bg": 3428, "fg": [ 3082, 3084, 3083, 3081 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 3092, 3094, 3093, 3091 ] }, + { "id": "edge", "bg": 3428, "fg": [ 3086, 3085 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 3088, 3090, 3089, 3087 ] }, + { "bg": 3428, "id": "unconnected", "fg": 3095 } ] }, { "id": "t_clay_season_summer", "multitile": true, - "fg": 3057, - "bg": 3400, + "fg": 3095, + "bg": 3438, "additional_tiles": [ - { "id": "center", "bg": 3400, "fg": 3042 }, - { "id": "corner", "bg": 3400, "fg": [ 3044, 3046, 3045, 3043 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 3054, 3056, 3055, 3053 ] }, - { "id": "edge", "bg": 3400, "fg": [ 3048, 3047 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 3050, 3052, 3051, 3049 ] }, - { "bg": 3400, "id": "unconnected", "fg": 3057 } + { "id": "center", "bg": 3438, "fg": 3080 }, + { "id": "corner", "bg": 3438, "fg": [ 3082, 3084, 3083, 3081 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 3092, 3094, 3093, 3091 ] }, + { "id": "edge", "bg": 3438, "fg": [ 3086, 3085 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 3088, 3090, 3089, 3087 ] }, + { "bg": 3438, "id": "unconnected", "fg": 3095 } ] }, { "id": "t_clay_season_autumn", "multitile": true, - "fg": 3057, - "bg": 3395, + "fg": 3095, + "bg": 3433, "additional_tiles": [ - { "id": "center", "bg": 3395, "fg": 3042 }, - { "id": "corner", "bg": 3395, "fg": [ 3044, 3046, 3045, 3043 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 3054, 3056, 3055, 3053 ] }, - { "id": "edge", "bg": 3395, "fg": [ 3048, 3047 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 3050, 3052, 3051, 3049 ] }, - { "bg": 3395, "id": "unconnected", "fg": 3057 } + { "id": "center", "bg": 3433, "fg": 3080 }, + { "id": "corner", "bg": 3433, "fg": [ 3082, 3084, 3083, 3081 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 3092, 3094, 3093, 3091 ] }, + { "id": "edge", "bg": 3433, "fg": [ 3086, 3085 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 3088, 3090, 3089, 3087 ] }, + { "bg": 3433, "id": "unconnected", "fg": 3095 } ] }, { "id": "t_clay_season_winter", "multitile": true, - "fg": 3057, - "bg": 2870, + "fg": 3095, + "bg": 2908, "additional_tiles": [ - { "id": "center", "bg": 2870, "fg": 3042 }, - { "id": "corner", "bg": 2870, "fg": [ 3044, 3046, 3045, 3043 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 3054, 3056, 3055, 3053 ] }, - { "id": "edge", "bg": 2870, "fg": [ 3048, 3047 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 3050, 3052, 3051, 3049 ] }, - { "bg": 2870, "id": "unconnected", "fg": 3057 } + { "id": "center", "bg": 2908, "fg": 3080 }, + { "id": "corner", "bg": 2908, "fg": [ 3082, 3084, 3083, 3081 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 3092, 3094, 3093, 3091 ] }, + { "id": "edge", "bg": 2908, "fg": [ 3086, 3085 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 3088, 3090, 3089, 3087 ] }, + { "bg": 2908, "id": "unconnected", "fg": 3095 } ] }, { "id": "t_concrete", "multitile": true, - "fg": 3073, + "fg": 3111, "additional_tiles": [ - { "id": "center", "fg": 3058 }, - { "id": "corner", "fg": [ 3060, 3062, 3061, 3059 ] }, - { "id": "t_connection", "fg": [ 3070, 3072, 3071, 3069 ] }, - { "id": "edge", "fg": [ 3064, 3063 ] }, - { "id": "end_piece", "fg": [ 3066, 3068, 3067, 3065 ] }, - { "id": "unconnected", "fg": 3073 } + { "id": "center", "fg": 3096 }, + { "id": "corner", "fg": [ 3098, 3100, 3099, 3097 ] }, + { "id": "t_connection", "fg": [ 3108, 3110, 3109, 3107 ] }, + { "id": "edge", "fg": [ 3102, 3101 ] }, + { "id": "end_piece", "fg": [ 3104, 3106, 3105, 3103 ] }, + { "id": "unconnected", "fg": 3111 } ] }, - { "id": "t_concrete_season_winter", "fg": 2870 }, + { "id": "t_concrete_season_winter", "fg": 2908 }, { "id": "t_concrete_wall", "multitile": true, - "fg": 3089, + "fg": 3127, "additional_tiles": [ - { "id": "center", "fg": 3074 }, - { "id": "corner", "fg": [ 3076, 3078, 3077, 3075 ] }, - { "id": "t_connection", "fg": [ 3086, 3088, 3087, 3085 ] }, - { "id": "edge", "fg": [ 3080, 3079 ] }, - { "id": "end_piece", "fg": [ 3082, 3084, 3083, 3081 ] }, - { "id": "unconnected", "fg": 3089 } + { "id": "center", "fg": 3112 }, + { "id": "corner", "fg": [ 3114, 3116, 3115, 3113 ] }, + { "id": "t_connection", "fg": [ 3124, 3126, 3125, 3123 ] }, + { "id": "edge", "fg": [ 3118, 3117 ] }, + { "id": "end_piece", "fg": [ 3120, 3122, 3121, 3119 ] }, + { "id": "unconnected", "fg": 3127 } ] }, { "id": "t_concrete_wall_flesh", - "fg": 3105, + "fg": 3143, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3090 }, - { "id": "corner", "fg": [ 3092, 3094, 3093, 3091 ] }, - { "id": "t_connection", "fg": [ 3102, 3104, 3103, 3101 ] }, - { "id": "edge", "fg": [ 3096, 3095 ] }, - { "id": "end_piece", "fg": [ 3098, 3100, 3099, 3097 ] }, - { "id": "unconnected", "fg": [ 3105, 3105 ] } + { "id": "center", "fg": 3128 }, + { "id": "corner", "fg": [ 3130, 3132, 3131, 3129 ] }, + { "id": "t_connection", "fg": [ 3140, 3142, 3141, 3139 ] }, + { "id": "edge", "fg": [ 3134, 3133 ] }, + { "id": "end_piece", "fg": [ 3136, 3138, 3137, 3135 ] }, + { "id": "unconnected", "fg": [ 3143, 3143 ] } ] }, { "id": "t_conveyor", "multitile": true, - "fg": 3121, - "bg": 4100, + "fg": 3159, + "bg": 4138, "additional_tiles": [ - { "id": "center", "bg": 4100, "fg": 3106 }, - { "id": "corner", "bg": 4100, "fg": [ 3108, 3110, 3109, 3107 ] }, - { "id": "t_connection", "bg": 4100, "fg": [ 3118, 3120, 3119, 3117 ] }, - { "id": "edge", "bg": 4100, "fg": [ 3112, 3111 ] }, - { "id": "end_piece", "bg": 4100, "fg": [ 3114, 3116, 3115, 3113 ] }, - { "bg": 4100, "id": "unconnected", "fg": [ 3121, 3121 ] } + { "id": "center", "bg": 4138, "fg": 3144 }, + { "id": "corner", "bg": 4138, "fg": [ 3146, 3148, 3147, 3145 ] }, + { "id": "t_connection", "bg": 4138, "fg": [ 3156, 3158, 3157, 3155 ] }, + { "id": "edge", "bg": 4138, "fg": [ 3150, 3149 ] }, + { "id": "end_piece", "bg": 4138, "fg": [ 3152, 3154, 3153, 3151 ] }, + { "bg": 4138, "id": "unconnected", "fg": [ 3159, 3159 ] } ] }, - { "id": "t_curtains", "fg": 3122 }, + { "id": "t_curtains", "fg": 3160 }, { "id": "t_dirt", - "fg": 3141, + "fg": 3179, "multitile": true, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 100, "sprite": 3123 }, - { "weight": 100, "sprite": 3124 }, - { "weight": 100, "sprite": 3125 }, - { "weight": 100, "sprite": 3126 } + { "weight": 100, "sprite": 3161 }, + { "weight": 100, "sprite": 3162 }, + { "weight": 100, "sprite": 3163 }, + { "weight": 100, "sprite": 3164 } ] }, - { "id": "corner", "fg": [ 3128, 3130, 3129, 3127 ] }, - { "id": "t_connection", "fg": [ 3138, 3140, 3139, 3137 ] }, - { "id": "edge", "fg": [ 3132, 3131 ] }, - { "id": "end_piece", "fg": [ 3134, 3136, 3135, 3133 ] }, - { "id": "unconnected", "fg": [ 3141, 3141 ] } + { "id": "corner", "fg": [ 3166, 3168, 3167, 3165 ] }, + { "id": "t_connection", "fg": [ 3176, 3178, 3177, 3175 ] }, + { "id": "edge", "fg": [ 3170, 3169 ] }, + { "id": "end_piece", "fg": [ 3172, 3174, 3173, 3171 ] }, + { "id": "unconnected", "fg": [ 3179, 3179 ] } ] }, { "id": "t_dirt_season_autumn", - "fg": 3160, + "fg": 3198, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": [ 3142, 3143, 3144, 3145 ] }, - { "id": "corner", "fg": [ 3147, 3149, 3148, 3146 ] }, - { "id": "t_connection", "fg": [ 3157, 3159, 3158, 3156 ] }, - { "id": "edge", "fg": [ 3151, 3150 ] }, - { "id": "end_piece", "fg": [ 3153, 3155, 3154, 3152 ] }, - { "id": "unconnected", "fg": [ 3160, 3160 ] } + { "id": "center", "fg": [ 3180, 3181, 3182, 3183 ] }, + { "id": "corner", "fg": [ 3185, 3187, 3186, 3184 ] }, + { "id": "t_connection", "fg": [ 3195, 3197, 3196, 3194 ] }, + { "id": "edge", "fg": [ 3189, 3188 ] }, + { "id": "end_piece", "fg": [ 3191, 3193, 3192, 3190 ] }, + { "id": "unconnected", "fg": [ 3198, 3198 ] } ] }, { "id": "t_dirt_season_summer", - "fg": 3179, + "fg": 3217, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": [ 3161, 3162, 3163, 3164 ] }, - { "id": "corner", "fg": [ 3166, 3168, 3167, 3165 ] }, - { "id": "t_connection", "fg": [ 3176, 3178, 3177, 3175 ] }, - { "id": "edge", "fg": [ 3170, 3169 ] }, - { "id": "end_piece", "fg": [ 3172, 3174, 3173, 3171 ] }, - { "id": "unconnected", "fg": [ 3179, 3179 ] } + { "id": "center", "fg": [ 3199, 3200, 3201, 3202 ] }, + { "id": "corner", "fg": [ 3204, 3206, 3205, 3203 ] }, + { "id": "t_connection", "fg": [ 3214, 3216, 3215, 3213 ] }, + { "id": "edge", "fg": [ 3208, 3207 ] }, + { "id": "end_piece", "fg": [ 3210, 3212, 3211, 3209 ] }, + { "id": "unconnected", "fg": [ 3217, 3217 ] } ] }, { "id": "t_dirt_season_winter", "fg": [ - { "weight": 100, "sprite": 3180 }, - { "weight": 100, "sprite": 3181 }, - { "weight": 100, "sprite": 3182 }, - { "weight": 100, "sprite": 3183 } + { "weight": 100, "sprite": 3218 }, + { "weight": 100, "sprite": 3219 }, + { "weight": 100, "sprite": 3220 }, + { "weight": 100, "sprite": 3221 } ] }, { "id": "t_dirtfloor", "multitile": true, - "fg": 3199, - "additional_tiles": [ - { "id": "center", "fg": 3184 }, - { "id": "corner", "fg": [ 3186, 3188, 3187, 3185 ] }, - { "id": "t_connection", "fg": [ 3196, 3198, 3197, 3195 ] }, - { "id": "edge", "fg": [ 3190, 3189 ] }, - { "id": "end_piece", "fg": [ 3192, 3194, 3193, 3191 ] }, - { "id": "unconnected", "fg": 3199 } - ] - }, - { "id": "t_door_c", "fg": 3201 }, - { "id": "t_door_locked", "fg": 3202 }, - { "id": "t_door_o", "fg": 3203 }, - { "id": "t_door_b", "fg": 3200 }, - { "id": "t_door_boarded", "fg": 3204 }, - { "id": "t_door_boarded_damaged", "fg": 3205 }, - { "id": "t_door_glass_c", "fg": 3206 }, - { "id": "t_door_glass_o", "fg": 3207 }, - { "id": "t_door_lab_c", "fg": 3208 }, - { "id": "t_door_lab_o", "fg": 3209 }, - { "id": "t_door_metal_c_peep", "fg": 3210 }, - { "id": [ "t_door_metal_locked", "t_door_metal_pickable" ], "fg": 3211 }, - { "id": "t_elevator", "fg": [ { "weight": 100, "sprite": 3218 }, { "weight": 100, "sprite": 3219 } ] }, + "fg": 3237, + "additional_tiles": [ + { "id": "center", "fg": 3222 }, + { "id": "corner", "fg": [ 3224, 3226, 3225, 3223 ] }, + { "id": "t_connection", "fg": [ 3234, 3236, 3235, 3233 ] }, + { "id": "edge", "fg": [ 3228, 3227 ] }, + { "id": "end_piece", "fg": [ 3230, 3232, 3231, 3229 ] }, + { "id": "unconnected", "fg": 3237 } + ] + }, + { "id": "t_door_c", "fg": 3239 }, + { "id": "t_door_locked", "fg": 3240 }, + { "id": "t_door_o", "fg": 3241 }, + { "id": "t_door_b", "fg": 3238 }, + { "id": "t_door_boarded", "fg": 3242 }, + { "id": "t_door_boarded_damaged", "fg": 3243 }, + { "id": "t_door_glass_c", "fg": 3244 }, + { "id": "t_door_glass_o", "fg": 3245 }, + { "id": "t_door_lab_c", "fg": 3246 }, + { "id": "t_door_lab_o", "fg": 3247 }, + { "id": "t_door_metal_c_peep", "fg": 3248 }, + { "id": [ "t_door_metal_locked", "t_door_metal_pickable" ], "fg": 3249 }, + { "id": "t_elevator", "fg": [ { "weight": 100, "sprite": 3256 }, { "weight": 100, "sprite": 3257 } ] }, { "id": "t_fence_season_spring", "multitile": true, - "fg": 3235, - "bg": 3390, + "fg": 3273, + "bg": 3428, "additional_tiles": [ - { "id": "center", "bg": 3390, "fg": 3220 }, - { "id": "corner", "bg": 3390, "fg": [ 3222, 3224, 3223, 3221 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 3232, 3234, 3233, 3231 ] }, - { "id": "edge", "bg": 3390, "fg": [ 3226, 3225 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 3228, 3230, 3229, 3227 ] }, - { "bg": 3390, "id": "unconnected", "fg": 3235 } + { "id": "center", "bg": 3428, "fg": 3258 }, + { "id": "corner", "bg": 3428, "fg": [ 3260, 3262, 3261, 3259 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 3270, 3272, 3271, 3269 ] }, + { "id": "edge", "bg": 3428, "fg": [ 3264, 3263 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 3266, 3268, 3267, 3265 ] }, + { "bg": 3428, "id": "unconnected", "fg": 3273 } ] }, { "id": "t_fence_season_summer", "multitile": true, - "fg": 3235, - "bg": 3400, + "fg": 3273, + "bg": 3438, "additional_tiles": [ - { "id": "center", "bg": 3400, "fg": 3220 }, - { "id": "corner", "bg": 3400, "fg": [ 3222, 3224, 3223, 3221 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 3232, 3234, 3233, 3231 ] }, - { "id": "edge", "bg": 3400, "fg": [ 3226, 3225 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 3228, 3230, 3229, 3227 ] }, - { "bg": 3400, "id": "unconnected", "fg": 3235 } + { "id": "center", "bg": 3438, "fg": 3258 }, + { "id": "corner", "bg": 3438, "fg": [ 3260, 3262, 3261, 3259 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 3270, 3272, 3271, 3269 ] }, + { "id": "edge", "bg": 3438, "fg": [ 3264, 3263 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 3266, 3268, 3267, 3265 ] }, + { "bg": 3438, "id": "unconnected", "fg": 3273 } ] }, { "id": "t_fence_season_autumn", "multitile": true, - "fg": 3235, - "bg": 3395, + "fg": 3273, + "bg": 3433, "additional_tiles": [ - { "id": "center", "bg": 3395, "fg": 3220 }, - { "id": "corner", "bg": 3395, "fg": [ 3222, 3224, 3223, 3221 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 3232, 3234, 3233, 3231 ] }, - { "id": "edge", "bg": 3395, "fg": [ 3226, 3225 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 3228, 3230, 3229, 3227 ] }, - { "bg": 3395, "id": "unconnected", "fg": 3235 } + { "id": "center", "bg": 3433, "fg": 3258 }, + { "id": "corner", "bg": 3433, "fg": [ 3260, 3262, 3261, 3259 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 3270, 3272, 3271, 3269 ] }, + { "id": "edge", "bg": 3433, "fg": [ 3264, 3263 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 3266, 3268, 3267, 3265 ] }, + { "bg": 3433, "id": "unconnected", "fg": 3273 } ] }, { "id": "t_fence_season_winter", "multitile": true, - "fg": 3235, - "bg": 2870, - "additional_tiles": [ - { "id": "center", "bg": 2870, "fg": 3220 }, - { "id": "corner", "bg": 2870, "fg": [ 3222, 3224, 3223, 3221 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 3232, 3234, 3233, 3231 ] }, - { "id": "edge", "bg": 2870, "fg": [ 3226, 3225 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 3228, 3230, 3229, 3227 ] }, - { "bg": 2870, "id": "unconnected", "fg": 3235 } - ] - }, - { "id": "t_fencegate_c_season_spring", "fg": 3236, "bg": 3390 }, - { "id": "t_fencegate_c_season_summer", "fg": 3236, "bg": 3400 }, - { "id": "t_fencegate_c_season_autumn", "fg": 3236, "bg": 3395 }, - { "id": "t_fencegate_c_season_winter", "fg": 3236, "bg": 2870 }, - { "id": "t_fencegate_o_season_spring", "fg": 3237, "bg": 3390 }, - { "id": "t_fencegate_o_season_summer", "fg": 3237, "bg": 3400 }, - { "id": "t_fencegate_o_season_autumn", "fg": 3237, "bg": 3395 }, - { "id": "t_fencegate_o_season_winter", "fg": 3237, "bg": 2870 }, - { "id": "t_fence_post_season_spring", "fg": 3235, "bg": 3390 }, - { "id": "t_fence_post_season_summer", "fg": 3235, "bg": 3400 }, - { "id": "t_fence_post_season_autumn", "fg": 3235, "bg": 3395 }, - { "id": "t_fence_post_season_winter", "fg": 3235, "bg": 2870 }, + "fg": 3273, + "bg": 2908, + "additional_tiles": [ + { "id": "center", "bg": 2908, "fg": 3258 }, + { "id": "corner", "bg": 2908, "fg": [ 3260, 3262, 3261, 3259 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 3270, 3272, 3271, 3269 ] }, + { "id": "edge", "bg": 2908, "fg": [ 3264, 3263 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 3266, 3268, 3267, 3265 ] }, + { "bg": 2908, "id": "unconnected", "fg": 3273 } + ] + }, + { "id": "t_fencegate_c_season_spring", "fg": 3274, "bg": 3428 }, + { "id": "t_fencegate_c_season_summer", "fg": 3274, "bg": 3438 }, + { "id": "t_fencegate_c_season_autumn", "fg": 3274, "bg": 3433 }, + { "id": "t_fencegate_c_season_winter", "fg": 3274, "bg": 2908 }, + { "id": "t_fencegate_o_season_spring", "fg": 3275, "bg": 3428 }, + { "id": "t_fencegate_o_season_summer", "fg": 3275, "bg": 3438 }, + { "id": "t_fencegate_o_season_autumn", "fg": 3275, "bg": 3433 }, + { "id": "t_fencegate_o_season_winter", "fg": 3275, "bg": 2908 }, + { "id": "t_fence_post_season_spring", "fg": 3273, "bg": 3428 }, + { "id": "t_fence_post_season_summer", "fg": 3273, "bg": 3438 }, + { "id": "t_fence_post_season_autumn", "fg": 3273, "bg": 3433 }, + { "id": "t_fence_post_season_winter", "fg": 3273, "bg": 2908 }, { "id": "t_fence_barbed_season_spring", "multitile": true, - "fg": 3253, - "bg": 3390, + "fg": 3291, + "bg": 3428, "additional_tiles": [ - { "id": "center", "bg": 3390, "fg": 3238 }, - { "id": "corner", "bg": 3390, "fg": [ 3240, 3242, 3241, 3239 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 3250, 3252, 3251, 3249 ] }, - { "id": "edge", "bg": 3390, "fg": [ 3244, 3243 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 3246, 3248, 3247, 3245 ] }, - { "bg": 3390, "id": "unconnected", "fg": 3253 } + { "id": "center", "bg": 3428, "fg": 3276 }, + { "id": "corner", "bg": 3428, "fg": [ 3278, 3280, 3279, 3277 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 3288, 3290, 3289, 3287 ] }, + { "id": "edge", "bg": 3428, "fg": [ 3282, 3281 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 3284, 3286, 3285, 3283 ] }, + { "bg": 3428, "id": "unconnected", "fg": 3291 } ] }, { "id": "t_fence_barbed_season_summer", "multitile": true, - "fg": 3253, - "bg": 3400, + "fg": 3291, + "bg": 3438, "additional_tiles": [ - { "id": "center", "bg": 3400, "fg": 3238 }, - { "id": "corner", "bg": 3400, "fg": [ 3240, 3242, 3241, 3239 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 3250, 3252, 3251, 3249 ] }, - { "id": "edge", "bg": 3400, "fg": [ 3244, 3243 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 3246, 3248, 3247, 3245 ] }, - { "bg": 3400, "id": "unconnected", "fg": 3253 } + { "id": "center", "bg": 3438, "fg": 3276 }, + { "id": "corner", "bg": 3438, "fg": [ 3278, 3280, 3279, 3277 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 3288, 3290, 3289, 3287 ] }, + { "id": "edge", "bg": 3438, "fg": [ 3282, 3281 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 3284, 3286, 3285, 3283 ] }, + { "bg": 3438, "id": "unconnected", "fg": 3291 } ] }, { "id": "t_fence_barbed_season_autumn", "multitile": true, - "fg": 3253, - "bg": 3395, + "fg": 3291, + "bg": 3433, "additional_tiles": [ - { "id": "center", "bg": 3395, "fg": 3238 }, - { "id": "corner", "bg": 3395, "fg": [ 3240, 3242, 3241, 3239 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 3250, 3252, 3251, 3249 ] }, - { "id": "edge", "bg": 3395, "fg": [ 3244, 3243 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 3246, 3248, 3247, 3245 ] }, - { "bg": 3395, "id": "unconnected", "fg": 3253 } + { "id": "center", "bg": 3433, "fg": 3276 }, + { "id": "corner", "bg": 3433, "fg": [ 3278, 3280, 3279, 3277 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 3288, 3290, 3289, 3287 ] }, + { "id": "edge", "bg": 3433, "fg": [ 3282, 3281 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 3284, 3286, 3285, 3283 ] }, + { "bg": 3433, "id": "unconnected", "fg": 3291 } ] }, { "id": "t_fence_barbed_season_winter", "multitile": true, - "fg": 3253, - "bg": 2870, + "fg": 3291, + "bg": 2908, "additional_tiles": [ - { "id": "center", "bg": 2870, "fg": 3238 }, - { "id": "corner", "bg": 2870, "fg": [ 3240, 3242, 3241, 3239 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 3250, 3252, 3251, 3249 ] }, - { "id": "edge", "bg": 2870, "fg": [ 3244, 3243 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 3246, 3248, 3247, 3245 ] }, - { "bg": 2870, "id": "unconnected", "fg": 3253 } + { "id": "center", "bg": 2908, "fg": 3276 }, + { "id": "corner", "bg": 2908, "fg": [ 3278, 3280, 3279, 3277 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 3288, 3290, 3289, 3287 ] }, + { "id": "edge", "bg": 2908, "fg": [ 3282, 3281 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 3284, 3286, 3285, 3283 ] }, + { "bg": 2908, "id": "unconnected", "fg": 3291 } ] }, { "id": "t_fence_rope_season_spring", - "fg": 3270, + "fg": 3308, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3255, "bg": 3123 }, - { "id": "corner", "fg": [ 3257, 3259, 3258, 3256 ], "bg": [ 3128, 3130, 3129, 3127 ] }, - { "id": "t_connection", "fg": [ 3267, 3269, 3268, 3266 ], "bg": [ 3138, 3140, 3139, 3137 ] }, - { "id": "edge", "fg": [ 3261, 3260 ], "bg": [ 3132, 3131 ] }, - { "id": "end_piece", "fg": [ 3263, 3265, 3264, 3262 ], "bg": [ 3134, 3136, 3135, 3133 ] }, - { "id": "unconnected", "fg": [ 3270, 3270 ], "bg": [ 3141, 3141 ] } + { "id": "center", "fg": 3293, "bg": 3161 }, + { "id": "corner", "fg": [ 3295, 3297, 3296, 3294 ], "bg": [ 3166, 3168, 3167, 3165 ] }, + { "id": "t_connection", "fg": [ 3305, 3307, 3306, 3304 ], "bg": [ 3176, 3178, 3177, 3175 ] }, + { "id": "edge", "fg": [ 3299, 3298 ], "bg": [ 3170, 3169 ] }, + { "id": "end_piece", "fg": [ 3301, 3303, 3302, 3300 ], "bg": [ 3172, 3174, 3173, 3171 ] }, + { "id": "unconnected", "fg": [ 3308, 3308 ], "bg": [ 3179, 3179 ] } ] }, { "id": "t_fence_rope_season_summer", - "fg": 3270, + "fg": 3308, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3255, "bg": 3161 }, - { "id": "corner", "fg": [ 3257, 3259, 3258, 3256 ], "bg": [ 3166, 3168, 3167, 3165 ] }, - { "id": "t_connection", "fg": [ 3267, 3269, 3268, 3266 ], "bg": [ 3176, 3178, 3177, 3175 ] }, - { "id": "edge", "fg": [ 3261, 3260 ], "bg": [ 3170, 3169 ] }, - { "id": "end_piece", "fg": [ 3263, 3265, 3264, 3262 ], "bg": [ 3172, 3174, 3173, 3171 ] }, - { "id": "unconnected", "fg": [ 3270, 3270 ], "bg": [ 3179, 3179 ] } + { "id": "center", "fg": 3293, "bg": 3199 }, + { "id": "corner", "fg": [ 3295, 3297, 3296, 3294 ], "bg": [ 3204, 3206, 3205, 3203 ] }, + { "id": "t_connection", "fg": [ 3305, 3307, 3306, 3304 ], "bg": [ 3214, 3216, 3215, 3213 ] }, + { "id": "edge", "fg": [ 3299, 3298 ], "bg": [ 3208, 3207 ] }, + { "id": "end_piece", "fg": [ 3301, 3303, 3302, 3300 ], "bg": [ 3210, 3212, 3211, 3209 ] }, + { "id": "unconnected", "fg": [ 3308, 3308 ], "bg": [ 3217, 3217 ] } ] }, { "id": "t_fence_rope_season_autumn", - "fg": 3270, + "fg": 3308, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3255, "bg": 3142 }, - { "id": "corner", "fg": [ 3257, 3259, 3258, 3256 ], "bg": [ 3147, 3149, 3148, 3146 ] }, - { "id": "t_connection", "fg": [ 3267, 3269, 3268, 3266 ], "bg": [ 3157, 3159, 3158, 3156 ] }, - { "id": "edge", "fg": [ 3261, 3260 ], "bg": [ 3151, 3150 ] }, - { "id": "end_piece", "fg": [ 3263, 3265, 3264, 3262 ], "bg": [ 3153, 3155, 3154, 3152 ] }, - { "id": "unconnected", "fg": [ 3270, 3270 ], "bg": [ 3160, 3160 ] } + { "id": "center", "fg": 3293, "bg": 3180 }, + { "id": "corner", "fg": [ 3295, 3297, 3296, 3294 ], "bg": [ 3185, 3187, 3186, 3184 ] }, + { "id": "t_connection", "fg": [ 3305, 3307, 3306, 3304 ], "bg": [ 3195, 3197, 3196, 3194 ] }, + { "id": "edge", "fg": [ 3299, 3298 ], "bg": [ 3189, 3188 ] }, + { "id": "end_piece", "fg": [ 3301, 3303, 3302, 3300 ], "bg": [ 3191, 3193, 3192, 3190 ] }, + { "id": "unconnected", "fg": [ 3308, 3308 ], "bg": [ 3198, 3198 ] } ] }, { "id": "t_fence_rope_season_winter", - "fg": 3270, + "fg": 3308, "multitile": true, "additional_tiles": [ { "id": "center", - "fg": 3255, + "fg": 3293, "bg": [ - { "weight": 100, "sprite": 3180 }, - { "weight": 100, "sprite": 3181 }, - { "weight": 100, "sprite": 3182 }, - { "weight": 100, "sprite": 3183 } + { "weight": 100, "sprite": 3218 }, + { "weight": 100, "sprite": 3219 }, + { "weight": 100, "sprite": 3220 }, + { "weight": 100, "sprite": 3221 } ] }, { "id": "corner", - "fg": [ 3257, 3259, 3258, 3256 ], + "fg": [ 3295, 3297, 3296, 3294 ], "bg": [ - { "weight": 100, "sprite": 3180 }, - { "weight": 100, "sprite": 3181 }, - { "weight": 100, "sprite": 3182 }, - { "weight": 100, "sprite": 3183 } + { "weight": 100, "sprite": 3218 }, + { "weight": 100, "sprite": 3219 }, + { "weight": 100, "sprite": 3220 }, + { "weight": 100, "sprite": 3221 } ] }, { "id": "t_connection", - "fg": [ 3267, 3269, 3268, 3266 ], + "fg": [ 3305, 3307, 3306, 3304 ], "bg": [ - { "weight": 100, "sprite": 3180 }, - { "weight": 100, "sprite": 3181 }, - { "weight": 100, "sprite": 3182 }, - { "weight": 100, "sprite": 3183 } + { "weight": 100, "sprite": 3218 }, + { "weight": 100, "sprite": 3219 }, + { "weight": 100, "sprite": 3220 }, + { "weight": 100, "sprite": 3221 } ] }, { "id": "edge", - "fg": [ 3261, 3260 ], + "fg": [ 3299, 3298 ], "bg": [ - { "weight": 100, "sprite": 3180 }, - { "weight": 100, "sprite": 3181 }, - { "weight": 100, "sprite": 3182 }, - { "weight": 100, "sprite": 3183 } + { "weight": 100, "sprite": 3218 }, + { "weight": 100, "sprite": 3219 }, + { "weight": 100, "sprite": 3220 }, + { "weight": 100, "sprite": 3221 } ] }, { "id": "end_piece", - "fg": [ 3263, 3265, 3264, 3262 ], + "fg": [ 3301, 3303, 3302, 3300 ], "bg": [ - { "weight": 100, "sprite": 3180 }, - { "weight": 100, "sprite": 3181 }, - { "weight": 100, "sprite": 3182 }, - { "weight": 100, "sprite": 3183 } + { "weight": 100, "sprite": 3218 }, + { "weight": 100, "sprite": 3219 }, + { "weight": 100, "sprite": 3220 }, + { "weight": 100, "sprite": 3221 } ] }, { "id": "unconnected", - "fg": [ 3270, 3270 ], + "fg": [ 3308, 3308 ], "bg": [ - { "weight": 100, "sprite": 3180 }, - { "weight": 100, "sprite": 3181 }, - { "weight": 100, "sprite": 3182 }, - { "weight": 100, "sprite": 3183 } + { "weight": 100, "sprite": 3218 }, + { "weight": 100, "sprite": 3219 }, + { "weight": 100, "sprite": 3220 }, + { "weight": 100, "sprite": 3221 } ] } ] @@ -3871,2721 +3903,2727 @@ { "id": "t_fence_wire_season_spring", "multitile": true, - "fg": 3286, - "bg": 3390, + "fg": 3324, + "bg": 3428, "additional_tiles": [ - { "id": "center", "bg": 3390, "fg": 3271 }, - { "id": "corner", "bg": 3390, "fg": [ 3273, 3275, 3274, 3272 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 3283, 3285, 3284, 3282 ] }, - { "id": "edge", "bg": 3390, "fg": [ 3277, 3276 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 3279, 3281, 3280, 3278 ] }, - { "bg": 3390, "id": "unconnected", "fg": 3286 } + { "id": "center", "bg": 3428, "fg": 3309 }, + { "id": "corner", "bg": 3428, "fg": [ 3311, 3313, 3312, 3310 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 3321, 3323, 3322, 3320 ] }, + { "id": "edge", "bg": 3428, "fg": [ 3315, 3314 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 3317, 3319, 3318, 3316 ] }, + { "bg": 3428, "id": "unconnected", "fg": 3324 } ] }, { "id": "t_fence_wire_season_summer", "multitile": true, - "fg": 3286, - "bg": 3400, + "fg": 3324, + "bg": 3438, "additional_tiles": [ - { "id": "center", "bg": 3400, "fg": 3271 }, - { "id": "corner", "bg": 3400, "fg": [ 3273, 3275, 3274, 3272 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 3283, 3285, 3284, 3282 ] }, - { "id": "edge", "bg": 3400, "fg": [ 3277, 3276 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 3279, 3281, 3280, 3278 ] }, - { "bg": 3400, "id": "unconnected", "fg": 3286 } + { "id": "center", "bg": 3438, "fg": 3309 }, + { "id": "corner", "bg": 3438, "fg": [ 3311, 3313, 3312, 3310 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 3321, 3323, 3322, 3320 ] }, + { "id": "edge", "bg": 3438, "fg": [ 3315, 3314 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 3317, 3319, 3318, 3316 ] }, + { "bg": 3438, "id": "unconnected", "fg": 3324 } ] }, { "id": "t_fence_wire_season_autumn", "multitile": true, - "fg": 3286, - "bg": 3395, + "fg": 3324, + "bg": 3433, "additional_tiles": [ - { "id": "center", "bg": 3395, "fg": 3271 }, - { "id": "corner", "bg": 3395, "fg": [ 3273, 3275, 3274, 3272 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 3283, 3285, 3284, 3282 ] }, - { "id": "edge", "bg": 3395, "fg": [ 3277, 3276 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 3279, 3281, 3280, 3278 ] }, - { "bg": 3395, "id": "unconnected", "fg": 3286 } + { "id": "center", "bg": 3433, "fg": 3309 }, + { "id": "corner", "bg": 3433, "fg": [ 3311, 3313, 3312, 3310 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 3321, 3323, 3322, 3320 ] }, + { "id": "edge", "bg": 3433, "fg": [ 3315, 3314 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 3317, 3319, 3318, 3316 ] }, + { "bg": 3433, "id": "unconnected", "fg": 3324 } ] }, { "id": "t_fence_wire_season_winter", "multitile": true, - "fg": 3286, - "bg": 2870, + "fg": 3324, + "bg": 2908, "additional_tiles": [ - { "id": "center", "bg": 2870, "fg": 3271 }, - { "id": "corner", "bg": 2870, "fg": [ 3273, 3275, 3274, 3272 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 3283, 3285, 3284, 3282 ] }, - { "id": "edge", "bg": 2870, "fg": [ 3277, 3276 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 3279, 3281, 3280, 3278 ] }, - { "bg": 2870, "id": "unconnected", "fg": 3286 } + { "id": "center", "bg": 2908, "fg": 3309 }, + { "id": "corner", "bg": 2908, "fg": [ 3311, 3313, 3312, 3310 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 3321, 3323, 3322, 3320 ] }, + { "id": "edge", "bg": 2908, "fg": [ 3315, 3314 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 3317, 3319, 3318, 3316 ] }, + { "bg": 2908, "id": "unconnected", "fg": 3324 } ] }, { "id": "t_floor", "multitile": true, - "fg": 3304, + "fg": 3342, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 3287 }, { "weight": 1, "sprite": 3288 }, { "weight": 1, "sprite": 3289 } ] + "fg": [ { "weight": 1, "sprite": 3325 }, { "weight": 1, "sprite": 3326 }, { "weight": 1, "sprite": 3327 } ] }, - { "id": "corner", "fg": [ 3291, 3293, 3292, 3290 ] }, - { "id": "t_connection", "fg": [ 3301, 3303, 3302, 3300 ] }, - { "id": "edge", "fg": [ 3295, 3294 ] }, - { "id": "end_piece", "fg": [ 3297, 3299, 3298, 3296 ] }, - { "id": "unconnected", "fg": 3304 } + { "id": "corner", "fg": [ 3329, 3331, 3330, 3328 ] }, + { "id": "t_connection", "fg": [ 3339, 3341, 3340, 3338 ] }, + { "id": "edge", "fg": [ 3333, 3332 ] }, + { "id": "end_piece", "fg": [ 3335, 3337, 3336, 3334 ] }, + { "id": "unconnected", "fg": 3342 } ] }, { "id": "t_floor_resin", "multitile": true, - "fg": 3320, + "fg": 3358, "additional_tiles": [ - { "id": "center", "fg": 3305 }, - { "id": "corner", "fg": [ 3307, 3309, 3308, 3306 ] }, - { "id": "t_connection", "fg": [ 3317, 3319, 3318, 3316 ] }, - { "id": "edge", "fg": [ 3311, 3310 ] }, - { "id": "end_piece", "fg": [ 3313, 3315, 3314, 3312 ] }, - { "id": "unconnected", "fg": 3320 } + { "id": "center", "fg": 3343 }, + { "id": "corner", "fg": [ 3345, 3347, 3346, 3344 ] }, + { "id": "t_connection", "fg": [ 3355, 3357, 3356, 3354 ] }, + { "id": "edge", "fg": [ 3349, 3348 ] }, + { "id": "end_piece", "fg": [ 3351, 3353, 3352, 3350 ] }, + { "id": "unconnected", "fg": 3358 } ] }, { "id": "t_floor_wax", "multitile": true, - "fg": 3336, + "fg": 3374, "additional_tiles": [ - { "id": "center", "fg": 3321 }, - { "id": "corner", "fg": [ 3323, 3325, 3324, 3322 ] }, - { "id": "t_connection", "fg": [ 3333, 3335, 3334, 3332 ] }, - { "id": "edge", "fg": [ 3327, 3326 ] }, - { "id": "end_piece", "fg": [ 3329, 3331, 3330, 3328 ] }, - { "id": "unconnected", "fg": 3336 } + { "id": "center", "fg": 3359 }, + { "id": "corner", "fg": [ 3361, 3363, 3362, 3360 ] }, + { "id": "t_connection", "fg": [ 3371, 3373, 3372, 3370 ] }, + { "id": "edge", "fg": [ 3365, 3364 ] }, + { "id": "end_piece", "fg": [ 3367, 3369, 3368, 3366 ] }, + { "id": "unconnected", "fg": 3374 } ] }, { "id": "t_floor_waxed", "multitile": true, - "fg": 3352, + "fg": 3390, "additional_tiles": [ - { "id": "center", "fg": 3337 }, - { "id": "corner", "fg": [ 3339, 3341, 3340, 3338 ] }, - { "id": "t_connection", "fg": [ 3349, 3351, 3350, 3348 ] }, - { "id": "edge", "fg": [ 3343, 3342 ] }, - { "id": "end_piece", "fg": [ 3345, 3347, 3346, 3344 ] }, - { "id": "unconnected", "fg": 3352 } + { "id": "center", "fg": 3375 }, + { "id": "corner", "fg": [ 3377, 3379, 3378, 3376 ] }, + { "id": "t_connection", "fg": [ 3387, 3389, 3388, 3386 ] }, + { "id": "edge", "fg": [ 3381, 3380 ] }, + { "id": "end_piece", "fg": [ 3383, 3385, 3384, 3382 ] }, + { "id": "unconnected", "fg": 3390 } ] }, { "id": "t_floor_waxed_y", "multitile": true, - "fg": 3368, + "fg": 3406, "additional_tiles": [ - { "id": "center", "fg": 3353 }, - { "id": "corner", "fg": [ 3355, 3357, 3356, 3354 ] }, - { "id": "t_connection", "fg": [ 3365, 3367, 3366, 3364 ] }, - { "id": "edge", "fg": [ 3359, 3358 ] }, - { "id": "end_piece", "fg": [ 3361, 3363, 3362, 3360 ] }, - { "id": "unconnected", "fg": 3368 } + { "id": "center", "fg": 3391 }, + { "id": "corner", "fg": [ 3393, 3395, 3394, 3392 ] }, + { "id": "t_connection", "fg": [ 3403, 3405, 3404, 3402 ] }, + { "id": "edge", "fg": [ 3397, 3396 ] }, + { "id": "end_piece", "fg": [ 3399, 3401, 3400, 3398 ] }, + { "id": "unconnected", "fg": 3406 } ] }, { "id": [ "t_fungus", "t_fungus_floor_out" ], "multitile": true, - "fg": 3384, - "bg": 3390, + "fg": 3422, + "bg": 3428, "additional_tiles": [ - { "id": "center", "bg": 3390, "fg": 3369 }, - { "id": "corner", "bg": 3390, "fg": [ 3371, 3373, 3372, 3370 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 3381, 3383, 3382, 3380 ] }, - { "id": "edge", "bg": 3390, "fg": [ 3375, 3374 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 3377, 3379, 3378, 3376 ] }, - { "bg": 3390, "id": "unconnected", "fg": 3384 } + { "id": "center", "bg": 3428, "fg": 3407 }, + { "id": "corner", "bg": 3428, "fg": [ 3409, 3411, 3410, 3408 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 3419, 3421, 3420, 3418 ] }, + { "id": "edge", "bg": 3428, "fg": [ 3413, 3412 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 3415, 3417, 3416, 3414 ] }, + { "bg": 3428, "id": "unconnected", "fg": 3422 } ] }, { "id": "t_fungus_season_summer", "multitile": true, - "fg": 3384, - "bg": 3400, + "fg": 3422, + "bg": 3438, "additional_tiles": [ - { "id": "center", "bg": 3400, "fg": 3369 }, - { "id": "corner", "bg": 3400, "fg": [ 3371, 3373, 3372, 3370 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 3381, 3383, 3382, 3380 ] }, - { "id": "edge", "bg": 3400, "fg": [ 3375, 3374 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 3377, 3379, 3378, 3376 ] }, - { "bg": 3400, "id": "unconnected", "fg": 3384 } + { "id": "center", "bg": 3438, "fg": 3407 }, + { "id": "corner", "bg": 3438, "fg": [ 3409, 3411, 3410, 3408 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 3419, 3421, 3420, 3418 ] }, + { "id": "edge", "bg": 3438, "fg": [ 3413, 3412 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 3415, 3417, 3416, 3414 ] }, + { "bg": 3438, "id": "unconnected", "fg": 3422 } ] }, { "id": "t_fungus_season_autumn", "multitile": true, - "fg": 3384, - "bg": 3395, + "fg": 3422, + "bg": 3433, "additional_tiles": [ - { "id": "center", "bg": 3395, "fg": 3369 }, - { "id": "corner", "bg": 3395, "fg": [ 3371, 3373, 3372, 3370 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 3381, 3383, 3382, 3380 ] }, - { "id": "edge", "bg": 3395, "fg": [ 3375, 3374 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 3377, 3379, 3378, 3376 ] }, - { "bg": 3395, "id": "unconnected", "fg": 3384 } + { "id": "center", "bg": 3433, "fg": 3407 }, + { "id": "corner", "bg": 3433, "fg": [ 3409, 3411, 3410, 3408 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 3419, 3421, 3420, 3418 ] }, + { "id": "edge", "bg": 3433, "fg": [ 3413, 3412 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 3415, 3417, 3416, 3414 ] }, + { "bg": 3433, "id": "unconnected", "fg": 3422 } ] }, { "id": "t_fungus_season_winter", "multitile": true, - "fg": 3384, - "bg": 2870, + "fg": 3422, + "bg": 2908, "additional_tiles": [ - { "id": "center", "bg": 2870, "fg": 3369 }, - { "id": "corner", "bg": 2870, "fg": [ 3371, 3373, 3372, 3370 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 3381, 3383, 3382, 3380 ] }, - { "id": "edge", "bg": 2870, "fg": [ 3375, 3374 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 3377, 3379, 3378, 3376 ] }, - { "bg": 2870, "id": "unconnected", "fg": 3384 } + { "id": "center", "bg": 2908, "fg": 3407 }, + { "id": "corner", "bg": 2908, "fg": [ 3409, 3411, 3410, 3408 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 3419, 3421, 3420, 3418 ] }, + { "id": "edge", "bg": 2908, "fg": [ 3413, 3412 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 3415, 3417, 3416, 3414 ] }, + { "bg": 2908, "id": "unconnected", "fg": 3422 } ] }, { "id": [ "t_fungus_floor_in", "t_fungus_floor_sup" ], "multitile": true, - "fg": 3384, - "bg": 4100, - "additional_tiles": [ - { "id": "center", "bg": 4100, "fg": 3369 }, - { "id": "corner", "bg": 4100, "fg": [ 3371, 3373, 3372, 3370 ] }, - { "id": "t_connection", "bg": 4100, "fg": [ 3381, 3383, 3382, 3380 ] }, - { "id": "edge", "bg": 4100, "fg": [ 3375, 3374 ] }, - { "id": "end_piece", "bg": 4100, "fg": [ 3377, 3379, 3378, 3376 ] }, - { "bg": 4100, "id": "unconnected", "fg": [ 3384, 3384 ] } - ] - }, - { "id": "t_shrub_fungal", "fg": 4005, "bg": 3369 }, - { "id": "t_gates_mech_control", "fg": 3385, "bg": 4100 }, - { "id": "t_gates_mech_control_lab", "fg": 3386, "bg": 4100 }, - { "id": "t_gates_control_concrete", "fg": 3387, "bg": 3089 }, - { "id": "t_gates_control_concrete_lab", "fg": 3386, "bg": 7846 }, - { "id": "t_gates_control_brick", "fg": 3387, "bg": 2939 }, - { "id": "t_gates_control_brick_lab", "fg": 3386, "bg": 2939 }, - { "id": "t_gates_control_metal", "fg": 3387, "bg": 4207 }, - { "id": "t_gates_control_metal_lab", "fg": 3386, "bg": 4207 }, - { "id": "t_elevator_control", "fg": 3388, "bg": 4100 }, - { "id": "t_elevator_control_off", "fg": 3389, "bg": 4100 }, + "fg": 3422, + "bg": 4138, + "additional_tiles": [ + { "id": "center", "bg": 4138, "fg": 3407 }, + { "id": "corner", "bg": 4138, "fg": [ 3409, 3411, 3410, 3408 ] }, + { "id": "t_connection", "bg": 4138, "fg": [ 3419, 3421, 3420, 3418 ] }, + { "id": "edge", "bg": 4138, "fg": [ 3413, 3412 ] }, + { "id": "end_piece", "bg": 4138, "fg": [ 3415, 3417, 3416, 3414 ] }, + { "bg": 4138, "id": "unconnected", "fg": [ 3422, 3422 ] } + ] + }, + { "id": "t_shrub_fungal", "fg": 4043, "bg": 3407 }, + { "id": "t_gates_mech_control", "fg": 3423, "bg": 4138 }, + { "id": "t_gates_mech_control_lab", "fg": 3424, "bg": 4138 }, + { "id": "t_gates_control_concrete", "fg": 3425, "bg": 3127 }, + { "id": "t_gates_control_concrete_lab", "fg": 3424, "bg": 7878 }, + { "id": "t_gates_control_brick", "fg": 3425, "bg": 2977 }, + { "id": "t_gates_control_brick_lab", "fg": 3424, "bg": 2977 }, + { "id": "t_gates_control_metal", "fg": 3425, "bg": 4245 }, + { "id": "t_gates_control_metal_lab", "fg": 3424, "bg": 4245 }, + { "id": "t_elevator_control", "fg": 3426, "bg": 4138 }, + { "id": "t_elevator_control_off", "fg": 3427, "bg": 4138 }, { "id": "t_grass", "fg": [ - { "weight": 1, "sprite": 3391 }, - { "weight": 1, "sprite": 3392 }, - { "weight": 1, "sprite": 3393 }, - { "weight": 1, "sprite": 3394 } + { "weight": 1, "sprite": 3429 }, + { "weight": 1, "sprite": 3430 }, + { "weight": 1, "sprite": 3431 }, + { "weight": 1, "sprite": 3432 } ] }, { "id": "t_grass_season_summer", "fg": [ - { "weight": 1, "sprite": 3401 }, - { "weight": 1, "sprite": 3402 }, - { "weight": 1, "sprite": 3403 }, - { "weight": 1, "sprite": 3404 } + { "weight": 1, "sprite": 3439 }, + { "weight": 1, "sprite": 3440 }, + { "weight": 1, "sprite": 3441 }, + { "weight": 1, "sprite": 3442 } ] }, { "id": "t_grass_season_autumn", "fg": [ - { "weight": 1, "sprite": 3396 }, - { "weight": 1, "sprite": 3397 }, - { "weight": 1, "sprite": 3398 }, - { "weight": 1, "sprite": 3399 } + { "weight": 1, "sprite": 3434 }, + { "weight": 1, "sprite": 3435 }, + { "weight": 1, "sprite": 3436 }, + { "weight": 1, "sprite": 3437 } ] }, { "id": "t_grass_season_winter", - "fg": 2888, - "bg": 2870, + "fg": 2926, + "bg": 2908, "multitile": true, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 2870 }, - { "weight": 1, "sprite": 2871 }, - { "weight": 1, "sprite": 2872 }, - { "weight": 1, "sprite": 2873 } + { "weight": 1, "sprite": 2908 }, + { "weight": 1, "sprite": 2909 }, + { "weight": 1, "sprite": 2910 }, + { "weight": 1, "sprite": 2911 } ] }, - { "id": "corner", "bg": 2870, "fg": [ 2875, 2877, 2876, 2874 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 2885, 2887, 2886, 2884 ] }, - { "id": "edge", "bg": 2870, "fg": [ 2879, 2878 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 2881, 2883, 2882, 2880 ] }, - { "bg": 2870, "id": "unconnected", "fg": 2888 } + { "id": "corner", "bg": 2908, "fg": [ 2913, 2915, 2914, 2912 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 2923, 2925, 2924, 2922 ] }, + { "id": "edge", "bg": 2908, "fg": [ 2917, 2916 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 2919, 2921, 2920, 2918 ] }, + { "bg": 2908, "id": "unconnected", "fg": 2926 } ] }, { "id": "t_grass_dead", "multitile": true, - "fg": 3420, - "bg": 3390, + "fg": 3458, + "bg": 3428, "additional_tiles": [ - { "id": "center", "bg": 3390, "fg": 3405 }, - { "id": "corner", "bg": 3390, "fg": [ 3407, 3409, 3408, 3406 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 3417, 3419, 3418, 3416 ] }, - { "id": "edge", "bg": 3390, "fg": [ 3411, 3410 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 3413, 3415, 3414, 3412 ] }, - { "bg": 3390, "id": "unconnected", "fg": 3420 } + { "id": "center", "bg": 3428, "fg": 3443 }, + { "id": "corner", "bg": 3428, "fg": [ 3445, 3447, 3446, 3444 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 3455, 3457, 3456, 3454 ] }, + { "id": "edge", "bg": 3428, "fg": [ 3449, 3448 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 3451, 3453, 3452, 3450 ] }, + { "bg": 3428, "id": "unconnected", "fg": 3458 } ] }, { "id": "t_grass_dead_season_summer", "multitile": true, - "fg": 3452, - "bg": 3400, + "fg": 3490, + "bg": 3438, "additional_tiles": [ - { "id": "center", "bg": 3400, "fg": 3437 }, - { "id": "corner", "bg": 3400, "fg": [ 3439, 3441, 3440, 3438 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 3449, 3451, 3450, 3448 ] }, - { "id": "edge", "bg": 3400, "fg": [ 3443, 3442 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 3445, 3447, 3446, 3444 ] }, - { "bg": 3400, "id": "unconnected", "fg": 3452 } + { "id": "center", "bg": 3438, "fg": 3475 }, + { "id": "corner", "bg": 3438, "fg": [ 3477, 3479, 3478, 3476 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 3487, 3489, 3488, 3486 ] }, + { "id": "edge", "bg": 3438, "fg": [ 3481, 3480 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 3483, 3485, 3484, 3482 ] }, + { "bg": 3438, "id": "unconnected", "fg": 3490 } ] }, { "id": "t_grass_dead_season_autumn", "multitile": true, - "fg": 3436, - "bg": 3395, + "fg": 3474, + "bg": 3433, "additional_tiles": [ - { "id": "center", "bg": 3395, "fg": 3421 }, - { "id": "corner", "bg": 3395, "fg": [ 3423, 3425, 3424, 3422 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 3433, 3435, 3434, 3432 ] }, - { "id": "edge", "bg": 3395, "fg": [ 3427, 3426 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 3429, 3431, 3430, 3428 ] }, - { "bg": 3395, "id": "unconnected", "fg": 3436 } + { "id": "center", "bg": 3433, "fg": 3459 }, + { "id": "corner", "bg": 3433, "fg": [ 3461, 3463, 3462, 3460 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 3471, 3473, 3472, 3470 ] }, + { "id": "edge", "bg": 3433, "fg": [ 3465, 3464 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 3467, 3469, 3468, 3466 ] }, + { "bg": 3433, "id": "unconnected", "fg": 3474 } ] }, { "id": "t_grass_dead_season_winter", "multitile": true, - "fg": 2888, - "bg": 2870, + "fg": 2926, + "bg": 2908, "additional_tiles": [ { "id": "center", - "bg": 2870, + "bg": 2908, "fg": [ - { "weight": 1, "sprite": 2870 }, - { "weight": 1, "sprite": 2871 }, - { "weight": 1, "sprite": 2872 }, - { "weight": 1, "sprite": 2873 } + { "weight": 1, "sprite": 2908 }, + { "weight": 1, "sprite": 2909 }, + { "weight": 1, "sprite": 2910 }, + { "weight": 1, "sprite": 2911 } ] }, - { "id": "corner", "bg": 2870, "fg": [ 2875, 2877, 2876, 2874 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 2885, 2887, 2886, 2884 ] }, - { "id": "edge", "bg": 2870, "fg": [ 2879, 2878 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 2881, 2883, 2882, 2880 ] }, - { "bg": 2870, "id": "unconnected", "fg": 2888 } + { "id": "corner", "bg": 2908, "fg": [ 2913, 2915, 2914, 2912 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 2923, 2925, 2924, 2922 ] }, + { "id": "edge", "bg": 2908, "fg": [ 2917, 2916 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 2919, 2921, 2920, 2918 ] }, + { "bg": 2908, "id": "unconnected", "fg": 2926 } ] }, { "id": "t_grate", "multitile": true, - "fg": 3468, + "fg": 3506, "additional_tiles": [ - { "id": "center", "fg": 3453 }, - { "id": "corner", "fg": [ 3455, 3457, 3456, 3454 ] }, - { "id": "t_connection", "fg": [ 3465, 3467, 3466, 3464 ] }, - { "id": "edge", "fg": [ 3459, 3458 ] }, - { "id": "end_piece", "fg": [ 3461, 3463, 3462, 3460 ] }, - { "id": "unconnected", "fg": [ 3468, 3468 ] } + { "id": "center", "fg": 3491 }, + { "id": "corner", "fg": [ 3493, 3495, 3494, 3492 ] }, + { "id": "t_connection", "fg": [ 3503, 3505, 3504, 3502 ] }, + { "id": "edge", "fg": [ 3497, 3496 ] }, + { "id": "end_piece", "fg": [ 3499, 3501, 3500, 3498 ] }, + { "id": "unconnected", "fg": [ 3506, 3506 ] } ] }, { "id": [ "t_guardrail", "t_guardrail_bg_dp", "t_guardrail_hw_air" ], "multitile": true, - "fg": 3475, - "bg": 4046, + "fg": 3513, + "bg": 4084, "additional_tiles": [ - { "id": "edge", "bg": 4046, "fg": [ 3470, 3469 ] }, - { "id": "end_piece", "bg": 4046, "fg": [ 3472, 3474, 3473, 3471 ] }, - { "bg": 4046, "id": "unconnected", "fg": 3475 } + { "id": "edge", "bg": 4084, "fg": [ 3508, 3507 ] }, + { "id": "end_piece", "bg": 4084, "fg": [ 3510, 3512, 3511, 3509 ] }, + { "bg": 4084, "id": "unconnected", "fg": 3513 } ] }, { "id": "t_lava", - "fg": 3492, - "bg": 3838, + "fg": 3530, + "bg": 3876, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3477, "bg": 3838 }, - { "id": "corner", "fg": [ 3479, 3481, 3480, 3478 ], "bg": 3838 }, - { "id": "t_connection", "fg": [ 3489, 3491, 3490, 3488 ], "bg": 3838 }, - { "id": "edge", "fg": [ 3483, 3482 ], "bg": 3838 }, - { "id": "end_piece", "fg": [ 3485, 3487, 3486, 3484 ], "bg": 3838 }, - { "id": "unconnected", "fg": [ 3492, 3492 ], "bg": 3838 } + { "id": "center", "fg": 3515, "bg": 3876 }, + { "id": "corner", "fg": [ 3517, 3519, 3518, 3516 ], "bg": 3876 }, + { "id": "t_connection", "fg": [ 3527, 3529, 3528, 3526 ], "bg": 3876 }, + { "id": "edge", "fg": [ 3521, 3520 ], "bg": 3876 }, + { "id": "end_piece", "fg": [ 3523, 3525, 3524, 3522 ], "bg": 3876 }, + { "id": "unconnected", "fg": [ 3530, 3530 ], "bg": 3876 } ] }, { "id": [ "t_linoleum_gray", "t_linoleum_gray_no_roof" ], "multitile": true, - "fg": 3508, + "fg": 3546, "additional_tiles": [ - { "id": "center", "fg": 3493 }, - { "id": "corner", "fg": [ 3495, 3497, 3496, 3494 ] }, - { "id": "t_connection", "fg": [ 3505, 3507, 3506, 3504 ] }, - { "id": "edge", "fg": [ 3499, 3498 ] }, - { "id": "end_piece", "fg": [ 3501, 3503, 3502, 3500 ] }, - { "id": "unconnected", "fg": 3508 } + { "id": "center", "fg": 3531 }, + { "id": "corner", "fg": [ 3533, 3535, 3534, 3532 ] }, + { "id": "t_connection", "fg": [ 3543, 3545, 3544, 3542 ] }, + { "id": "edge", "fg": [ 3537, 3536 ] }, + { "id": "end_piece", "fg": [ 3539, 3541, 3540, 3538 ] }, + { "id": "unconnected", "fg": 3546 } ] }, { "id": [ "t_linoleum_white", "t_linoleum_white_no_roof" ], "multitile": true, - "fg": 3524, + "fg": 3562, "additional_tiles": [ - { "id": "center", "fg": 3509 }, - { "id": "corner", "fg": [ 3511, 3513, 3512, 3510 ] }, - { "id": "t_connection", "fg": [ 3521, 3523, 3522, 3520 ] }, - { "id": "edge", "fg": [ 3515, 3514 ] }, - { "id": "end_piece", "fg": [ 3517, 3519, 3518, 3516 ] }, - { "id": "unconnected", "fg": 3524 } + { "id": "center", "fg": 3547 }, + { "id": "corner", "fg": [ 3549, 3551, 3550, 3548 ] }, + { "id": "t_connection", "fg": [ 3559, 3561, 3560, 3558 ] }, + { "id": "edge", "fg": [ 3553, 3552 ] }, + { "id": "end_piece", "fg": [ 3555, 3557, 3556, 3554 ] }, + { "id": "unconnected", "fg": 3562 } ] }, - { "id": "t_manhole", "fg": 3525, "bg": 3595 }, - { "id": "t_manhole_cover", "fg": 3526, "bg": 3595 }, + { "id": "t_manhole", "fg": 3563, "bg": 3633 }, + { "id": "t_manhole_cover", "fg": 3564, "bg": 3633 }, { "id": "t_metal_floor", "multitile": true, - "fg": 3542, + "fg": 3580, "additional_tiles": [ - { "id": "center", "fg": 3527 }, - { "id": "corner", "fg": [ 3529, 3531, 3530, 3528 ] }, - { "id": "t_connection", "fg": [ 3539, 3541, 3540, 3538 ] }, - { "id": "edge", "fg": [ 3533, 3532 ] }, - { "id": "end_piece", "fg": [ 3535, 3537, 3536, 3534 ] }, - { "id": "unconnected", "fg": 3542 } + { "id": "center", "fg": 3565 }, + { "id": "corner", "fg": [ 3567, 3569, 3568, 3566 ] }, + { "id": "t_connection", "fg": [ 3577, 3579, 3578, 3576 ] }, + { "id": "edge", "fg": [ 3571, 3570 ] }, + { "id": "end_piece", "fg": [ 3573, 3575, 3574, 3572 ] }, + { "id": "unconnected", "fg": 3580 } ] }, { "id": "t_moss", "multitile": true, - "fg": 3559, - "bg": 3391, + "fg": 3597, + "bg": 3429, "additional_tiles": [ - { "id": "center", "bg": 3391, "fg": [ { "weight": 1, "sprite": 3543 }, { "weight": 1, "sprite": 3544 } ] }, - { "id": "corner", "bg": 3391, "fg": [ 3546, 3548, 3547, 3545 ] }, - { "id": "t_connection", "bg": 3391, "fg": [ 3556, 3558, 3557, 3555 ] }, - { "id": "edge", "bg": 3391, "fg": [ 3550, 3549 ] }, - { "id": "end_piece", "bg": 3391, "fg": [ 3552, 3554, 3553, 3551 ] }, - { "bg": 3391, "id": "unconnected", "fg": 3559 } + { "id": "center", "bg": 3429, "fg": [ { "weight": 1, "sprite": 3581 }, { "weight": 1, "sprite": 3582 } ] }, + { "id": "corner", "bg": 3429, "fg": [ 3584, 3586, 3585, 3583 ] }, + { "id": "t_connection", "bg": 3429, "fg": [ 3594, 3596, 3595, 3593 ] }, + { "id": "edge", "bg": 3429, "fg": [ 3588, 3587 ] }, + { "id": "end_piece", "bg": 3429, "fg": [ 3590, 3592, 3591, 3589 ] }, + { "bg": 3429, "id": "unconnected", "fg": 3597 } ] }, { "id": "t_moss_season_summer", "multitile": true, - "fg": 3593, - "bg": 3401, + "fg": 3631, + "bg": 3439, "additional_tiles": [ - { "id": "center", "bg": 3401, "fg": [ { "weight": 1, "sprite": 3577 }, { "weight": 1, "sprite": 3578 } ] }, - { "id": "corner", "bg": 3401, "fg": [ 3580, 3582, 3581, 3579 ] }, - { "id": "t_connection", "bg": 3401, "fg": [ 3590, 3592, 3591, 3589 ] }, - { "id": "edge", "bg": 3401, "fg": [ 3584, 3583 ] }, - { "id": "end_piece", "bg": 3401, "fg": [ 3586, 3588, 3587, 3585 ] }, - { "bg": 3401, "id": "unconnected", "fg": 3593 } + { "id": "center", "bg": 3439, "fg": [ { "weight": 1, "sprite": 3615 }, { "weight": 1, "sprite": 3616 } ] }, + { "id": "corner", "bg": 3439, "fg": [ 3618, 3620, 3619, 3617 ] }, + { "id": "t_connection", "bg": 3439, "fg": [ 3628, 3630, 3629, 3627 ] }, + { "id": "edge", "bg": 3439, "fg": [ 3622, 3621 ] }, + { "id": "end_piece", "bg": 3439, "fg": [ 3624, 3626, 3625, 3623 ] }, + { "bg": 3439, "id": "unconnected", "fg": 3631 } ] }, { "id": "t_moss_season_autumn", "multitile": true, - "fg": 3576, - "bg": 3396, + "fg": 3614, + "bg": 3434, "additional_tiles": [ - { "id": "center", "bg": 3396, "fg": [ { "weight": 1, "sprite": 3560 }, { "weight": 1, "sprite": 3561 } ] }, - { "id": "corner", "bg": 3396, "fg": [ 3563, 3565, 3564, 3562 ] }, - { "id": "t_connection", "bg": 3396, "fg": [ 3573, 3575, 3574, 3572 ] }, - { "id": "edge", "bg": 3396, "fg": [ 3567, 3566 ] }, - { "id": "end_piece", "bg": 3396, "fg": [ 3569, 3571, 3570, 3568 ] }, - { "bg": 3396, "id": "unconnected", "fg": 3576 } + { "id": "center", "bg": 3434, "fg": [ { "weight": 1, "sprite": 3598 }, { "weight": 1, "sprite": 3599 } ] }, + { "id": "corner", "bg": 3434, "fg": [ 3601, 3603, 3602, 3600 ] }, + { "id": "t_connection", "bg": 3434, "fg": [ 3611, 3613, 3612, 3610 ] }, + { "id": "edge", "bg": 3434, "fg": [ 3605, 3604 ] }, + { "id": "end_piece", "bg": 3434, "fg": [ 3607, 3609, 3608, 3606 ] }, + { "bg": 3434, "id": "unconnected", "fg": 3614 } ] }, { "id": "t_moss_season_winter", "multitile": true, - "fg": 2888, - "bg": 2870, + "fg": 2926, + "bg": 2908, "additional_tiles": [ - { "id": "center", "bg": 2870, "fg": [ { "weight": 1, "sprite": 2870 }, { "weight": 1, "sprite": 2871 } ] }, - { "id": "corner", "bg": 2870, "fg": [ 2875, 2877, 2876, 2874 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 2885, 2887, 2886, 2884 ] }, - { "id": "edge", "bg": 2870, "fg": [ 2879, 2878 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 2881, 2883, 2882, 2880 ] }, - { "bg": 2870, "id": "unconnected", "fg": 2888 } + { "id": "center", "bg": 2908, "fg": [ { "weight": 1, "sprite": 2908 }, { "weight": 1, "sprite": 2909 } ] }, + { "id": "corner", "bg": 2908, "fg": [ 2913, 2915, 2914, 2912 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 2923, 2925, 2924, 2922 ] }, + { "id": "edge", "bg": 2908, "fg": [ 2917, 2916 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 2919, 2921, 2920, 2918 ] }, + { "bg": 2908, "id": "unconnected", "fg": 2926 } ] }, { "id": "t_pavement", "multitile": true, - "fg": 3595, + "fg": 3633, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 3595 }, - { "weight": 1, "sprite": 3596 }, - { "weight": 1, "sprite": 3597 }, - { "weight": 1, "sprite": 3598 } + { "weight": 1, "sprite": 3633 }, + { "weight": 1, "sprite": 3634 }, + { "weight": 1, "sprite": 3635 }, + { "weight": 1, "sprite": 3636 } ] }, - { "id": "corner", "bg": 3390, "fg": [ 3607, 3610, 3609, 3606 ] }, - { "id": "t_connection", "fg": [ 3605, 3613, 3608, 3599 ] }, - { "id": "edge", "fg": [ 3612, 3604 ] }, - { "id": "end_piece", "fg": [ 3601, 3603, 3602, 3600 ] }, - { "id": "unconnected", "fg": 3611 } + { "id": "corner", "bg": 3428, "fg": [ 3645, 3648, 3647, 3644 ] }, + { "id": "t_connection", "fg": [ 3643, 3651, 3646, 3637 ] }, + { "id": "edge", "fg": [ 3650, 3642 ] }, + { "id": "end_piece", "fg": [ 3639, 3641, 3640, 3638 ] }, + { "id": "unconnected", "fg": 3649 } ] }, { "id": "t_pavement_season_summer", "multitile": true, - "fg": 3595, + "fg": 3633, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 3595 }, - { "weight": 1, "sprite": 3596 }, - { "weight": 1, "sprite": 3597 }, - { "weight": 1, "sprite": 3598 } + { "weight": 1, "sprite": 3633 }, + { "weight": 1, "sprite": 3634 }, + { "weight": 1, "sprite": 3635 }, + { "weight": 1, "sprite": 3636 } ] }, - { "id": "corner", "bg": 3400, "fg": [ 3607, 3610, 3609, 3606 ] }, - { "id": "t_connection", "fg": [ 3605, 3613, 3608, 3599 ] }, - { "id": "edge", "fg": [ 3612, 3604 ] }, - { "id": "end_piece", "fg": [ 3601, 3603, 3602, 3600 ] }, - { "id": "unconnected", "fg": 3611 } + { "id": "corner", "bg": 3438, "fg": [ 3645, 3648, 3647, 3644 ] }, + { "id": "t_connection", "fg": [ 3643, 3651, 3646, 3637 ] }, + { "id": "edge", "fg": [ 3650, 3642 ] }, + { "id": "end_piece", "fg": [ 3639, 3641, 3640, 3638 ] }, + { "id": "unconnected", "fg": 3649 } ] }, { "id": "t_pavement_season_autumn", "multitile": true, - "fg": 3595, + "fg": 3633, "additional_tiles": [ { "id": "center", "fg": [ - { "weight": 1, "sprite": 3595 }, - { "weight": 1, "sprite": 3596 }, - { "weight": 1, "sprite": 3597 }, - { "weight": 1, "sprite": 3598 } + { "weight": 1, "sprite": 3633 }, + { "weight": 1, "sprite": 3634 }, + { "weight": 1, "sprite": 3635 }, + { "weight": 1, "sprite": 3636 } ] }, - { "id": "corner", "bg": 3395, "fg": [ 3607, 3610, 3609, 3606 ] }, - { "id": "t_connection", "fg": [ 3605, 3613, 3608, 3599 ] }, - { "id": "edge", "fg": [ 3612, 3604 ] }, - { "id": "end_piece", "fg": [ 3601, 3603, 3602, 3600 ] }, - { "id": "unconnected", "fg": 3611 } + { "id": "corner", "bg": 3433, "fg": [ 3645, 3648, 3647, 3644 ] }, + { "id": "t_connection", "fg": [ 3643, 3651, 3646, 3637 ] }, + { "id": "edge", "fg": [ 3650, 3642 ] }, + { "id": "end_piece", "fg": [ 3639, 3641, 3640, 3638 ] }, + { "id": "unconnected", "fg": 3649 } ] }, - { "id": "t_pavement_season_winter", "fg": 2869 }, - { "id": "t_pavement_y", "fg": 3614 }, - { "id": "t_pavement_y_season_winter", "fg": 2869 }, + { "id": "t_pavement_season_winter", "fg": 2907 }, + { "id": "t_pavement_y", "fg": 3652 }, + { "id": "t_pavement_y_season_winter", "fg": 2907 }, { "id": "t_pit", - "fg": 3630, - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], + "fg": 3668, + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3615, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, + { "id": "center", "fg": 3653, "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "corner", - "fg": [ 3617, 3619, 3618, 3616 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3655, 3657, 3656, 3654 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "t_connection", - "fg": [ 3627, 3629, 3628, 3626 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3665, 3667, 3666, 3664 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "edge", - "fg": [ 3621, 3620 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3659, 3658 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "end_piece", - "fg": [ 3623, 3625, 3624, 3622 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3661, 3663, 3662, 3660 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "unconnected", - "fg": [ 3630, 3630 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3668, 3668 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] } ] }, { "id": "t_pit_season_summer", - "fg": 3630, - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], + "fg": 3668, + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3615, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, + { "id": "center", "fg": 3653, "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "corner", - "fg": [ 3617, 3619, 3618, 3616 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3655, 3657, 3656, 3654 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "t_connection", - "fg": [ 3627, 3629, 3628, 3626 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3665, 3667, 3666, 3664 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "edge", - "fg": [ 3621, 3620 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3659, 3658 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "end_piece", - "fg": [ 3623, 3625, 3624, 3622 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3661, 3663, 3662, 3660 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "unconnected", - "fg": [ 3630, 3630 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3668, 3668 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] } ] }, { "id": "t_pit_season_autumn", - "fg": 3630, - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], + "fg": 3668, + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3615, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, + { "id": "center", "fg": 3653, "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "corner", - "fg": [ 3617, 3619, 3618, 3616 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3655, 3657, 3656, 3654 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "t_connection", - "fg": [ 3627, 3629, 3628, 3626 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3665, 3667, 3666, 3664 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "edge", - "fg": [ 3621, 3620 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3659, 3658 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "end_piece", - "fg": [ 3623, 3625, 3624, 3622 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3661, 3663, 3662, 3660 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "unconnected", - "fg": [ 3630, 3630 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3668, 3668 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] } ] }, { "id": "t_pit_season_winter", - "fg": 3630, - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], + "fg": 3668, + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3615, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, + { "id": "center", "fg": 3653, "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "corner", - "fg": [ 3617, 3619, 3618, 3616 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3655, 3657, 3656, 3654 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "t_connection", - "fg": [ 3627, 3629, 3628, 3626 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3665, 3667, 3666, 3664 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "edge", - "fg": [ 3621, 3620 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3659, 3658 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "end_piece", - "fg": [ 3623, 3625, 3624, 3622 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3661, 3663, 3662, 3660 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "unconnected", - "fg": [ 3630, 3630 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3668, 3668 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] } ] }, { "id": "t_pit_corpsed", - "fg": 3646, - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], + "fg": 3684, + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3631, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, + { "id": "center", "fg": 3669, "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "corner", - "fg": [ 3633, 3635, 3634, 3632 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3671, 3673, 3672, 3670 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "t_connection", - "fg": [ 3643, 3645, 3644, 3642 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3681, 3683, 3682, 3680 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "edge", - "fg": [ 3637, 3636 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3675, 3674 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "end_piece", - "fg": [ 3639, 3641, 3640, 3638 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3677, 3679, 3678, 3676 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "unconnected", - "fg": [ 3646, 3646 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3684, 3684 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] } ] }, { "id": "t_pit_corpsed_season_summer", - "fg": 3646, - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], + "fg": 3684, + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3631, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, + { "id": "center", "fg": 3669, "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "corner", - "fg": [ 3633, 3635, 3634, 3632 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3671, 3673, 3672, 3670 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "t_connection", - "fg": [ 3643, 3645, 3644, 3642 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3681, 3683, 3682, 3680 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "edge", - "fg": [ 3637, 3636 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3675, 3674 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "end_piece", - "fg": [ 3639, 3641, 3640, 3638 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3677, 3679, 3678, 3676 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "unconnected", - "fg": [ 3646, 3646 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3684, 3684 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] } ] }, { "id": "t_pit_corpsed_season_autumn", - "fg": 3646, - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], + "fg": 3684, + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3631, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, + { "id": "center", "fg": 3669, "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "corner", - "fg": [ 3633, 3635, 3634, 3632 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3671, 3673, 3672, 3670 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "t_connection", - "fg": [ 3643, 3645, 3644, 3642 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3681, 3683, 3682, 3680 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "edge", - "fg": [ 3637, 3636 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3675, 3674 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "end_piece", - "fg": [ 3639, 3641, 3640, 3638 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3677, 3679, 3678, 3676 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "unconnected", - "fg": [ 3646, 3646 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3684, 3684 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] } ] }, { "id": "t_pit_corpsed_season_winter", - "fg": 3646, - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], + "fg": 3684, + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3631, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, + { "id": "center", "fg": 3669, "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "corner", - "fg": [ 3633, 3635, 3634, 3632 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3671, 3673, 3672, 3670 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "t_connection", - "fg": [ 3643, 3645, 3644, 3642 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3681, 3683, 3682, 3680 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "edge", - "fg": [ 3637, 3636 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3675, 3674 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "end_piece", - "fg": [ 3639, 3641, 3640, 3638 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3677, 3679, 3678, 3676 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "unconnected", - "fg": [ 3646, 3646 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3684, 3684 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] } ] }, { "id": "t_pit_covered", - "fg": 3662, - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], + "fg": 3700, + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3647, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, + { "id": "center", "fg": 3685, "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "corner", - "fg": [ 3649, 3651, 3650, 3648 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3687, 3689, 3688, 3686 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "t_connection", - "fg": [ 3659, 3661, 3660, 3658 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3697, 3699, 3698, 3696 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "edge", - "fg": [ 3653, 3652 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3691, 3690 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "end_piece", - "fg": [ 3655, 3657, 3656, 3654 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3693, 3695, 3694, 3692 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "unconnected", - "fg": [ 3662, 3662 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3700, 3700 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] } ] }, { "id": "t_pit_covered_season_summer", - "fg": 3662, - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], + "fg": 3700, + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3647, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, + { "id": "center", "fg": 3685, "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "corner", - "fg": [ 3649, 3651, 3650, 3648 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3687, 3689, 3688, 3686 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "t_connection", - "fg": [ 3659, 3661, 3660, 3658 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3697, 3699, 3698, 3696 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "edge", - "fg": [ 3653, 3652 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3691, 3690 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "end_piece", - "fg": [ 3655, 3657, 3656, 3654 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3693, 3695, 3694, 3692 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "unconnected", - "fg": [ 3662, 3662 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3700, 3700 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] } ] }, { "id": "t_pit_covered_season_autumn", - "fg": 3662, - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], + "fg": 3700, + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3647, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, + { "id": "center", "fg": 3685, "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "corner", - "fg": [ 3649, 3651, 3650, 3648 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3687, 3689, 3688, 3686 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "t_connection", - "fg": [ 3659, 3661, 3660, 3658 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3697, 3699, 3698, 3696 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "edge", - "fg": [ 3653, 3652 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3691, 3690 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "end_piece", - "fg": [ 3655, 3657, 3656, 3654 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3693, 3695, 3694, 3692 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "unconnected", - "fg": [ 3662, 3662 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3700, 3700 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] } ] }, { "id": "t_pit_covered_season_winter", - "fg": 3662, - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], + "fg": 3700, + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3647, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, + { "id": "center", "fg": 3685, "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "corner", - "fg": [ 3649, 3651, 3650, 3648 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3687, 3689, 3688, 3686 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "t_connection", - "fg": [ 3659, 3661, 3660, 3658 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3697, 3699, 3698, 3696 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "edge", - "fg": [ 3653, 3652 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3691, 3690 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "end_piece", - "fg": [ 3655, 3657, 3656, 3654 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3693, 3695, 3694, 3692 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "unconnected", - "fg": [ 3662, 3662 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3700, 3700 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] } ] }, { "id": "t_pit_glass", - "fg": 3678, - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], + "fg": 3716, + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3663, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, + { "id": "center", "fg": 3701, "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "corner", - "fg": [ 3665, 3667, 3666, 3664 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3703, 3705, 3704, 3702 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "t_connection", - "fg": [ 3675, 3677, 3676, 3674 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3713, 3715, 3714, 3712 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "edge", - "fg": [ 3669, 3668 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3707, 3706 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "end_piece", - "fg": [ 3671, 3673, 3672, 3670 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3709, 3711, 3710, 3708 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "unconnected", - "fg": [ 3678, 3678 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3716, 3716 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] } ] }, { "id": "t_pit_glass_season_summer", - "fg": 3678, - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], + "fg": 3716, + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3663, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, + { "id": "center", "fg": 3701, "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "corner", - "fg": [ 3665, 3667, 3666, 3664 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3703, 3705, 3704, 3702 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "t_connection", - "fg": [ 3675, 3677, 3676, 3674 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3713, 3715, 3714, 3712 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "edge", - "fg": [ 3669, 3668 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3707, 3706 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "end_piece", - "fg": [ 3671, 3673, 3672, 3670 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3709, 3711, 3710, 3708 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "unconnected", - "fg": [ 3678, 3678 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3716, 3716 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] } ] }, { "id": "t_pit_glass_season_autumn", - "fg": 3678, - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], + "fg": 3716, + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3663, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, + { "id": "center", "fg": 3701, "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "corner", - "fg": [ 3665, 3667, 3666, 3664 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3703, 3705, 3704, 3702 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "t_connection", - "fg": [ 3675, 3677, 3676, 3674 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3713, 3715, 3714, 3712 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "edge", - "fg": [ 3669, 3668 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3707, 3706 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "end_piece", - "fg": [ 3671, 3673, 3672, 3670 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3709, 3711, 3710, 3708 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "unconnected", - "fg": [ 3678, 3678 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3716, 3716 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] } ] }, { "id": "t_pit_glass_season_winter", - "fg": 3678, - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], + "fg": 3716, + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3663, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, + { "id": "center", "fg": 3701, "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "corner", - "fg": [ 3665, 3667, 3666, 3664 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3703, 3705, 3704, 3702 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "t_connection", - "fg": [ 3675, 3677, 3676, 3674 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3713, 3715, 3714, 3712 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "edge", - "fg": [ 3669, 3668 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3707, 3706 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "end_piece", - "fg": [ 3671, 3673, 3672, 3670 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3709, 3711, 3710, 3708 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "unconnected", - "fg": [ 3678, 3678 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3716, 3716 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] } ] }, { "id": "t_pit_glass_covered", - "fg": 3694, - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], + "fg": 3732, + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3679, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, + { "id": "center", "fg": 3717, "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "corner", - "fg": [ 3681, 3683, 3682, 3680 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3719, 3721, 3720, 3718 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "t_connection", - "fg": [ 3691, 3693, 3692, 3690 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3729, 3731, 3730, 3728 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "edge", - "fg": [ 3685, 3684 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3723, 3722 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "end_piece", - "fg": [ 3687, 3689, 3688, 3686 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3725, 3727, 3726, 3724 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "unconnected", - "fg": [ 3694, 3694 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3732, 3732 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] } ] }, { "id": "t_pit_glass_covered_season_summer", - "fg": 3694, - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], + "fg": 3732, + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3679, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, + { "id": "center", "fg": 3717, "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "corner", - "fg": [ 3681, 3683, 3682, 3680 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3719, 3721, 3720, 3718 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "t_connection", - "fg": [ 3691, 3693, 3692, 3690 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3729, 3731, 3730, 3728 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "edge", - "fg": [ 3685, 3684 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3723, 3722 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "end_piece", - "fg": [ 3687, 3689, 3688, 3686 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3725, 3727, 3726, 3724 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "unconnected", - "fg": [ 3694, 3694 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3732, 3732 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] } ] }, { "id": "t_pit_glass_covered_season_autumn", - "fg": 3694, - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], + "fg": 3732, + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3679, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, + { "id": "center", "fg": 3717, "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "corner", - "fg": [ 3681, 3683, 3682, 3680 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3719, 3721, 3720, 3718 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "t_connection", - "fg": [ 3691, 3693, 3692, 3690 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3729, 3731, 3730, 3728 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "edge", - "fg": [ 3685, 3684 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3723, 3722 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "end_piece", - "fg": [ 3687, 3689, 3688, 3686 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3725, 3727, 3726, 3724 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "unconnected", - "fg": [ 3694, 3694 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3732, 3732 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] } ] }, { "id": "t_pit_glass_covered_season_winter", - "fg": 3694, - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], + "fg": 3732, + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3679, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, + { "id": "center", "fg": 3717, "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "corner", - "fg": [ 3681, 3683, 3682, 3680 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3719, 3721, 3720, 3718 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "t_connection", - "fg": [ 3691, 3693, 3692, 3690 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3729, 3731, 3730, 3728 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "edge", - "fg": [ 3685, 3684 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3723, 3722 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "end_piece", - "fg": [ 3687, 3689, 3688, 3686 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3725, 3727, 3726, 3724 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "unconnected", - "fg": [ 3694, 3694 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3732, 3732 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] } ] }, { "id": "t_pit_shallow", - "fg": 3710, - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], + "fg": 3748, + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3695, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, + { "id": "center", "fg": 3733, "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "corner", - "fg": [ 3697, 3699, 3698, 3696 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3735, 3737, 3736, 3734 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "t_connection", - "fg": [ 3707, 3709, 3708, 3706 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3745, 3747, 3746, 3744 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "edge", - "fg": [ 3701, 3700 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3739, 3738 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "end_piece", - "fg": [ 3703, 3705, 3704, 3702 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3741, 3743, 3742, 3740 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "unconnected", - "fg": [ 3710, 3710 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3748, 3748 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] } ] }, { "id": "t_pit_shallow_season_summer", - "fg": 3710, - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], + "fg": 3748, + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3695, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, + { "id": "center", "fg": 3733, "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "corner", - "fg": [ 3697, 3699, 3698, 3696 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3735, 3737, 3736, 3734 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "t_connection", - "fg": [ 3707, 3709, 3708, 3706 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3745, 3747, 3746, 3744 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "edge", - "fg": [ 3701, 3700 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3739, 3738 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "end_piece", - "fg": [ 3703, 3705, 3704, 3702 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3741, 3743, 3742, 3740 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "unconnected", - "fg": [ 3710, 3710 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3748, 3748 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] } ] }, { "id": "t_pit_shallow_season_autumn", - "fg": 3710, - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], + "fg": 3748, + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3695, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, + { "id": "center", "fg": 3733, "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "corner", - "fg": [ 3697, 3699, 3698, 3696 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3735, 3737, 3736, 3734 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "t_connection", - "fg": [ 3707, 3709, 3708, 3706 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3745, 3747, 3746, 3744 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "edge", - "fg": [ 3701, 3700 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3739, 3738 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "end_piece", - "fg": [ 3703, 3705, 3704, 3702 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3741, 3743, 3742, 3740 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "unconnected", - "fg": [ 3710, 3710 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3748, 3748 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] } ] }, { "id": "t_pit_shallow_season_winter", - "fg": 3710, - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], + "fg": 3748, + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3695, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, + { "id": "center", "fg": 3733, "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "corner", - "fg": [ 3697, 3699, 3698, 3696 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3735, 3737, 3736, 3734 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "t_connection", - "fg": [ 3707, 3709, 3708, 3706 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3745, 3747, 3746, 3744 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "edge", - "fg": [ 3701, 3700 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3739, 3738 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "end_piece", - "fg": [ 3703, 3705, 3704, 3702 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3741, 3743, 3742, 3740 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "unconnected", - "fg": [ 3710, 3710 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3748, 3748 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] } ] }, { "id": "t_pit_spiked", - "fg": 3726, - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], + "fg": 3764, + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3711, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, + { "id": "center", "fg": 3749, "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "corner", - "fg": [ 3713, 3715, 3714, 3712 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3751, 3753, 3752, 3750 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "t_connection", - "fg": [ 3723, 3725, 3724, 3722 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3761, 3763, 3762, 3760 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "edge", - "fg": [ 3717, 3716 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3755, 3754 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "end_piece", - "fg": [ 3719, 3721, 3720, 3718 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3757, 3759, 3758, 3756 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "unconnected", - "fg": [ 3726, 3726 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3764, 3764 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] } ] }, { "id": "t_pit_spiked_season_summer", - "fg": 3726, - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], + "fg": 3764, + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3711, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, + { "id": "center", "fg": 3749, "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "corner", - "fg": [ 3713, 3715, 3714, 3712 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3751, 3753, 3752, 3750 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "t_connection", - "fg": [ 3723, 3725, 3724, 3722 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3761, 3763, 3762, 3760 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "edge", - "fg": [ 3717, 3716 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3755, 3754 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "end_piece", - "fg": [ 3719, 3721, 3720, 3718 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3757, 3759, 3758, 3756 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "unconnected", - "fg": [ 3726, 3726 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3764, 3764 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] } ] }, { "id": "t_pit_spiked_season_autumn", - "fg": 3726, - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], + "fg": 3764, + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3711, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, + { "id": "center", "fg": 3749, "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "corner", - "fg": [ 3713, 3715, 3714, 3712 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3751, 3753, 3752, 3750 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "t_connection", - "fg": [ 3723, 3725, 3724, 3722 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3761, 3763, 3762, 3760 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "edge", - "fg": [ 3717, 3716 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3755, 3754 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "end_piece", - "fg": [ 3719, 3721, 3720, 3718 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3757, 3759, 3758, 3756 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "unconnected", - "fg": [ 3726, 3726 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3764, 3764 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] } ] }, { "id": "t_pit_spiked_season_winter", - "fg": 3726, - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], + "fg": 3764, + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3711, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, + { "id": "center", "fg": 3749, "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "corner", - "fg": [ 3713, 3715, 3714, 3712 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3751, 3753, 3752, 3750 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "t_connection", - "fg": [ 3723, 3725, 3724, 3722 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3761, 3763, 3762, 3760 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "edge", - "fg": [ 3717, 3716 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3755, 3754 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "end_piece", - "fg": [ 3719, 3721, 3720, 3718 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3757, 3759, 3758, 3756 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "unconnected", - "fg": [ 3726, 3726 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3764, 3764 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] } ] }, { "id": "t_pit_spiked_covered", - "fg": 3742, - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ], + "fg": 3780, + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3727, "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] }, + { "id": "center", "fg": 3765, "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "corner", - "fg": [ 3729, 3731, 3730, 3728 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3767, 3769, 3768, 3766 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "t_connection", - "fg": [ 3739, 3741, 3740, 3738 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3777, 3779, 3778, 3776 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "edge", - "fg": [ 3733, 3732 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3771, 3770 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "end_piece", - "fg": [ 3735, 3737, 3736, 3734 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3773, 3775, 3774, 3772 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "unconnected", - "fg": [ 3742, 3742 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 3780, 3780 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] } ] }, { "id": "t_pit_spiked_covered_season_summer", - "fg": 3742, - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ], + "fg": 3780, + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3727, "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] }, + { "id": "center", "fg": 3765, "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "corner", - "fg": [ 3729, 3731, 3730, 3728 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3767, 3769, 3768, 3766 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "t_connection", - "fg": [ 3739, 3741, 3740, 3738 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3777, 3779, 3778, 3776 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "edge", - "fg": [ 3733, 3732 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3771, 3770 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "end_piece", - "fg": [ 3735, 3737, 3736, 3734 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3773, 3775, 3774, 3772 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "unconnected", - "fg": [ 3742, 3742 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 3780, 3780 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] } ] }, { "id": "t_pit_spiked_covered_season_autumn", - "fg": 3742, - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ], + "fg": 3780, + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3727, "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] }, + { "id": "center", "fg": 3765, "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "corner", - "fg": [ 3729, 3731, 3730, 3728 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3767, 3769, 3768, 3766 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "t_connection", - "fg": [ 3739, 3741, 3740, 3738 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3777, 3779, 3778, 3776 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "edge", - "fg": [ 3733, 3732 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3771, 3770 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "end_piece", - "fg": [ 3735, 3737, 3736, 3734 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3773, 3775, 3774, 3772 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, { "id": "unconnected", - "fg": [ 3742, 3742 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 3780, 3780 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] } ] }, { "id": "t_pit_spiked_covered_season_winter", - "fg": 3742, - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ], + "fg": 3780, + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ], "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 3727, "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] }, + { "id": "center", "fg": 3765, "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "corner", - "fg": [ 3729, 3731, 3730, 3728 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3767, 3769, 3768, 3766 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "t_connection", - "fg": [ 3739, 3741, 3740, 3738 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3777, 3779, 3778, 3776 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "edge", - "fg": [ 3733, 3732 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3771, 3770 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "end_piece", - "fg": [ 3735, 3737, 3736, 3734 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3773, 3775, 3774, 3772 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] }, { "id": "unconnected", - "fg": [ 3742, 3742 ], - "bg": [ { "weight": 100, "sprite": 2870 }, { "weight": 100, "sprite": 2871 } ] + "fg": [ 3780, 3780 ], + "bg": [ { "weight": 100, "sprite": 2908 }, { "weight": 100, "sprite": 2909 } ] } ] }, { "id": "t_privacy_fence", "multitile": true, - "fg": 3758, - "bg": 3390, + "fg": 3796, + "bg": 3428, "additional_tiles": [ - { "id": "center", "bg": 3390, "fg": 3743 }, - { "id": "corner", "bg": 3390, "fg": [ 3745, 3747, 3746, 3744 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 3755, 3757, 3756, 3754 ] }, - { "id": "edge", "bg": 3390, "fg": [ 3749, 3748 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 3751, 3753, 3752, 3750 ] }, - { "bg": 3390, "id": "unconnected", "fg": [ 3758, 3758 ] } + { "id": "center", "bg": 3428, "fg": 3781 }, + { "id": "corner", "bg": 3428, "fg": [ 3783, 3785, 3784, 3782 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 3793, 3795, 3794, 3792 ] }, + { "id": "edge", "bg": 3428, "fg": [ 3787, 3786 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 3789, 3791, 3790, 3788 ] }, + { "bg": 3428, "id": "unconnected", "fg": [ 3796, 3796 ] } ] }, { "id": "t_privacy_fence_season_winter", "multitile": true, - "fg": 3758, - "bg": 2870, + "fg": 3796, + "bg": 2908, "additional_tiles": [ - { "id": "center", "bg": 2870, "fg": 3743 }, - { "id": "corner", "bg": 2870, "fg": [ 3745, 3747, 3746, 3744 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 3755, 3757, 3756, 3754 ] }, - { "id": "edge", "bg": 2870, "fg": [ 3749, 3748 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 3751, 3753, 3752, 3750 ] }, - { "bg": 2870, "id": "unconnected", "fg": [ 3758, 3758 ] } + { "id": "center", "bg": 2908, "fg": 3781 }, + { "id": "corner", "bg": 2908, "fg": [ 3783, 3785, 3784, 3782 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 3793, 3795, 3794, 3792 ] }, + { "id": "edge", "bg": 2908, "fg": [ 3787, 3786 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 3789, 3791, 3790, 3788 ] }, + { "bg": 2908, "id": "unconnected", "fg": [ 3796, 3796 ] } ] }, { "id": "t_railing", "multitile": true, - "fg": 3774, - "bg": 3073, + "fg": 3812, + "bg": 3111, "additional_tiles": [ - { "id": "center", "bg": 3073, "fg": 3759 }, - { "id": "corner", "bg": 3073, "fg": [ 3761, 3763, 3762, 3760 ] }, - { "id": "t_connection", "bg": 3073, "fg": [ 3771, 3773, 3772, 3770 ] }, - { "id": "edge", "bg": 3073, "fg": [ 3765, 3764 ] }, - { "id": "end_piece", "bg": 3073, "fg": [ 3767, 3769, 3768, 3766 ] }, - { "bg": 3073, "id": "unconnected", "fg": [ 3774, 3774 ] } + { "id": "center", "bg": 3111, "fg": 3797 }, + { "id": "corner", "bg": 3111, "fg": [ 3799, 3801, 3800, 3798 ] }, + { "id": "t_connection", "bg": 3111, "fg": [ 3809, 3811, 3810, 3808 ] }, + { "id": "edge", "bg": 3111, "fg": [ 3803, 3802 ] }, + { "id": "end_piece", "bg": 3111, "fg": [ 3805, 3807, 3806, 3804 ] }, + { "bg": 3111, "id": "unconnected", "fg": [ 3812, 3812 ] } ] }, { "id": "t_railroad_rubble", "multitile": true, - "fg": 3791, - "bg": 3390, + "fg": 3829, + "bg": 3428, "additional_tiles": [ - { "id": "center", "bg": 3390, "fg": [ { "weight": 1, "sprite": 3775 }, { "weight": 1, "sprite": 3776 } ] }, - { "id": "corner", "bg": 3390, "fg": [ 3778, 3780, 3779, 3777 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 3788, 3790, 3789, 3787 ] }, - { "id": "edge", "bg": 3390, "fg": [ 3782, 3781 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 3784, 3786, 3785, 3783 ] }, - { "bg": 3390, "id": "unconnected", "fg": 3791 } + { "id": "center", "bg": 3428, "fg": [ { "weight": 1, "sprite": 3813 }, { "weight": 1, "sprite": 3814 } ] }, + { "id": "corner", "bg": 3428, "fg": [ 3816, 3818, 3817, 3815 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 3826, 3828, 3827, 3825 ] }, + { "id": "edge", "bg": 3428, "fg": [ 3820, 3819 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 3822, 3824, 3823, 3821 ] }, + { "bg": 3428, "id": "unconnected", "fg": 3829 } ] }, { "id": "t_railroad_rubble_season_summer", "multitile": true, - "fg": 3791, - "bg": 3400, + "fg": 3829, + "bg": 3438, "additional_tiles": [ - { "id": "center", "bg": 3400, "fg": [ { "weight": 1, "sprite": 3775 }, { "weight": 1, "sprite": 3776 } ] }, - { "id": "corner", "bg": 3400, "fg": [ 3778, 3780, 3779, 3777 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 3788, 3790, 3789, 3787 ] }, - { "id": "edge", "bg": 3400, "fg": [ 3782, 3781 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 3784, 3786, 3785, 3783 ] }, - { "bg": 3400, "id": "unconnected", "fg": 3791 } + { "id": "center", "bg": 3438, "fg": [ { "weight": 1, "sprite": 3813 }, { "weight": 1, "sprite": 3814 } ] }, + { "id": "corner", "bg": 3438, "fg": [ 3816, 3818, 3817, 3815 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 3826, 3828, 3827, 3825 ] }, + { "id": "edge", "bg": 3438, "fg": [ 3820, 3819 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 3822, 3824, 3823, 3821 ] }, + { "bg": 3438, "id": "unconnected", "fg": 3829 } ] }, { "id": "t_railroad_rubble_season_autumn", "multitile": true, - "fg": 3791, - "bg": 3395, + "fg": 3829, + "bg": 3433, "additional_tiles": [ - { "id": "center", "bg": 3395, "fg": [ { "weight": 1, "sprite": 3775 }, { "weight": 1, "sprite": 3776 } ] }, - { "id": "corner", "bg": 3395, "fg": [ 3778, 3780, 3779, 3777 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 3788, 3790, 3789, 3787 ] }, - { "id": "edge", "bg": 3395, "fg": [ 3782, 3781 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 3784, 3786, 3785, 3783 ] }, - { "bg": 3395, "id": "unconnected", "fg": 3791 } + { "id": "center", "bg": 3433, "fg": [ { "weight": 1, "sprite": 3813 }, { "weight": 1, "sprite": 3814 } ] }, + { "id": "corner", "bg": 3433, "fg": [ 3816, 3818, 3817, 3815 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 3826, 3828, 3827, 3825 ] }, + { "id": "edge", "bg": 3433, "fg": [ 3820, 3819 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 3822, 3824, 3823, 3821 ] }, + { "bg": 3433, "id": "unconnected", "fg": 3829 } ] }, { "id": "t_railroad_rubble_season_winter", "multitile": true, - "fg": 3791, - "bg": 2870, + "fg": 3829, + "bg": 2908, "additional_tiles": [ - { "id": "center", "bg": 2870, "fg": [ { "weight": 1, "sprite": 3775 }, { "weight": 1, "sprite": 3776 } ] }, - { "id": "corner", "bg": 2870, "fg": [ 3778, 3780, 3779, 3777 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 3788, 3790, 3789, 3787 ] }, - { "id": "edge", "bg": 2870, "fg": [ 3782, 3781 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 3784, 3786, 3785, 3783 ] }, - { "bg": 2870, "id": "unconnected", "fg": 3791 } + { "id": "center", "bg": 2908, "fg": [ { "weight": 1, "sprite": 3813 }, { "weight": 1, "sprite": 3814 } ] }, + { "id": "corner", "bg": 2908, "fg": [ 3816, 3818, 3817, 3815 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 3826, 3828, 3827, 3825 ] }, + { "id": "edge", "bg": 2908, "fg": [ 3820, 3819 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 3822, 3824, 3823, 3821 ] }, + { "bg": 2908, "id": "unconnected", "fg": 3829 } ] }, { "id": "t_railroad_track_small", - "fg": 3798, - "bg": 3775, + "fg": 3836, + "bg": 3813, "multitile": true, "additional_tiles": [ - { "id": "center", "bg": 3775, "fg": 3792 }, - { "id": "corner", "bg": 3775, "fg": [ 3794, 3796, 3795, 3793 ] }, - { "id": "t_connection", "bg": 3775, "fg": [ 3800, 3802, 3801, 3799 ] }, - { "id": "edge", "bg": 3775, "fg": [ 3798, 3797 ] }, - { "id": "end_piece", "bg": 3775, "fg": [ 3798, 3797, 3798, 3797 ] }, - { "id": "unconnected", "bg": 3775, "fg": [ 3798, 3797 ] } + { "id": "center", "bg": 3813, "fg": 3830 }, + { "id": "corner", "bg": 3813, "fg": [ 3832, 3834, 3833, 3831 ] }, + { "id": "t_connection", "bg": 3813, "fg": [ 3838, 3840, 3839, 3837 ] }, + { "id": "edge", "bg": 3813, "fg": [ 3836, 3835 ] }, + { "id": "end_piece", "bg": 3813, "fg": [ 3836, 3835, 3836, 3835 ] }, + { "id": "unconnected", "bg": 3813, "fg": [ 3836, 3835 ] } ] }, - { "id": "t_rdoor_c", "fg": 3804 }, - { "id": "t_rdoor_o", "fg": 3805 }, - { "id": "t_rdoor_b", "fg": 3803 }, + { "id": "t_rdoor_c", "fg": 3842 }, + { "id": "t_rdoor_o", "fg": 3843 }, + { "id": "t_rdoor_b", "fg": 3841 }, { "id": "t_reinforced_glass", "multitile": true, - "fg": 3821, + "fg": 3859, "additional_tiles": [ - { "id": "center", "fg": 3806 }, - { "id": "corner", "fg": [ 3808, 3810, 3809, 3807 ] }, - { "id": "t_connection", "fg": [ 3818, 3820, 3819, 3817 ] }, - { "id": "edge", "fg": [ 3812, 3811 ] }, - { "id": "end_piece", "fg": [ 3814, 3816, 3815, 3813 ] }, - { "id": "unconnected", "fg": 3821 } + { "id": "center", "fg": 3844 }, + { "id": "corner", "fg": [ 3846, 3848, 3847, 3845 ] }, + { "id": "t_connection", "fg": [ 3856, 3858, 3857, 3855 ] }, + { "id": "edge", "fg": [ 3850, 3849 ] }, + { "id": "end_piece", "fg": [ 3852, 3854, 3853, 3851 ] }, + { "id": "unconnected", "fg": 3859 } ] }, { "id": "t_rock", "multitile": true, - "fg": 3837, + "fg": 3875, "additional_tiles": [ - { "id": "center", "fg": 3822 }, - { "id": "corner", "fg": [ 3824, 3826, 3825, 3823 ] }, - { "id": "t_connection", "fg": [ 3834, 3836, 3835, 3833 ] }, - { "id": "edge", "fg": [ 3828, 3827 ] }, - { "id": "end_piece", "fg": [ 3830, 3832, 3831, 3829 ] }, - { "id": "unconnected", "fg": 3837 } + { "id": "center", "fg": 3860 }, + { "id": "corner", "fg": [ 3862, 3864, 3863, 3861 ] }, + { "id": "t_connection", "fg": [ 3872, 3874, 3873, 3871 ] }, + { "id": "edge", "fg": [ 3866, 3865 ] }, + { "id": "end_piece", "fg": [ 3868, 3870, 3869, 3867 ] }, + { "id": "unconnected", "fg": 3875 } ] }, { "id": "t_rock_floor", "multitile": true, - "fg": 3855, + "fg": 3893, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 3838 }, { "weight": 1, "sprite": 3839 }, { "weight": 1, "sprite": 3840 } ] + "fg": [ { "weight": 1, "sprite": 3876 }, { "weight": 1, "sprite": 3877 }, { "weight": 1, "sprite": 3878 } ] }, - { "id": "corner", "fg": [ 3842, 3844, 3843, 3841 ] }, - { "id": "t_connection", "fg": [ 3852, 3854, 3853, 3851 ] }, - { "id": "edge", "fg": [ 3846, 3845 ] }, - { "id": "end_piece", "fg": [ 3848, 3850, 3849, 3847 ] }, - { "id": "unconnected", "fg": 3855 } + { "id": "corner", "fg": [ 3880, 3882, 3881, 3879 ] }, + { "id": "t_connection", "fg": [ 3890, 3892, 3891, 3889 ] }, + { "id": "edge", "fg": [ 3884, 3883 ] }, + { "id": "end_piece", "fg": [ 3886, 3888, 3887, 3885 ] }, + { "id": "unconnected", "fg": 3893 } ] }, { "id": "t_rock_wall", "multitile": true, - "fg": 3871, + "fg": 3909, "additional_tiles": [ - { "id": "center", "fg": 3856 }, - { "id": "corner", "fg": [ 3858, 3860, 3859, 3857 ] }, - { "id": "t_connection", "fg": [ 3868, 3870, 3869, 3867 ] }, - { "id": "edge", "fg": [ 3862, 3861 ] }, - { "id": "end_piece", "fg": [ 3864, 3866, 3865, 3863 ] }, - { "id": "unconnected", "fg": 3871 } + { "id": "center", "fg": 3894 }, + { "id": "corner", "fg": [ 3896, 3898, 3897, 3895 ] }, + { "id": "t_connection", "fg": [ 3906, 3908, 3907, 3905 ] }, + { "id": "edge", "fg": [ 3900, 3899 ] }, + { "id": "end_piece", "fg": [ 3902, 3904, 3903, 3901 ] }, + { "id": "unconnected", "fg": 3909 } ] }, { "id": "t_sand", "multitile": true, - "fg": 3890, - "bg": 3390, + "fg": 3928, + "bg": 3428, "additional_tiles": [ { "id": "center", - "bg": 3390, + "bg": 3428, "fg": [ - { "weight": 1, "sprite": 3872 }, - { "weight": 1, "sprite": 3873 }, - { "weight": 1, "sprite": 3874 }, - { "weight": 1, "sprite": 3875 } + { "weight": 1, "sprite": 3910 }, + { "weight": 1, "sprite": 3911 }, + { "weight": 1, "sprite": 3912 }, + { "weight": 1, "sprite": 3913 } ] }, - { "id": "corner", "bg": 3390, "fg": [ 3877, 3879, 3878, 3876 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 3887, 3889, 3888, 3886 ] }, - { "id": "edge", "bg": 3390, "fg": [ 3881, 3880 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 3883, 3885, 3884, 3882 ] }, - { "bg": 3390, "id": "unconnected", "fg": 3890 } + { "id": "corner", "bg": 3428, "fg": [ 3915, 3917, 3916, 3914 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 3925, 3927, 3926, 3924 ] }, + { "id": "edge", "bg": 3428, "fg": [ 3919, 3918 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 3921, 3923, 3922, 3920 ] }, + { "bg": 3428, "id": "unconnected", "fg": 3928 } ] }, { "id": "t_sand_season_summer", "multitile": true, - "fg": 3890, - "bg": 3400, + "fg": 3928, + "bg": 3438, "additional_tiles": [ - { "id": "center", "bg": 3400, "fg": [ { "weight": 1, "sprite": 3872 }, { "weight": 1, "sprite": 3873 } ] }, - { "id": "corner", "bg": 3400, "fg": [ 3877, 3879, 3878, 3876 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 3887, 3889, 3888, 3886 ] }, - { "id": "edge", "bg": 3400, "fg": [ 3881, 3880 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 3883, 3885, 3884, 3882 ] }, - { "bg": 3400, "id": "unconnected", "fg": 3890 } + { "id": "center", "bg": 3438, "fg": [ { "weight": 1, "sprite": 3910 }, { "weight": 1, "sprite": 3911 } ] }, + { "id": "corner", "bg": 3438, "fg": [ 3915, 3917, 3916, 3914 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 3925, 3927, 3926, 3924 ] }, + { "id": "edge", "bg": 3438, "fg": [ 3919, 3918 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 3921, 3923, 3922, 3920 ] }, + { "bg": 3438, "id": "unconnected", "fg": 3928 } ] }, { "id": "t_sand_season_autumn", "multitile": true, - "fg": 3890, - "bg": 3395, + "fg": 3928, + "bg": 3433, "additional_tiles": [ - { "id": "center", "bg": 3395, "fg": [ { "weight": 1, "sprite": 3872 }, { "weight": 1, "sprite": 3873 } ] }, - { "id": "corner", "bg": 3395, "fg": [ 3877, 3879, 3878, 3876 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 3887, 3889, 3888, 3886 ] }, - { "id": "edge", "bg": 3395, "fg": [ 3881, 3880 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 3883, 3885, 3884, 3882 ] }, - { "bg": 3395, "id": "unconnected", "fg": 3890 } + { "id": "center", "bg": 3433, "fg": [ { "weight": 1, "sprite": 3910 }, { "weight": 1, "sprite": 3911 } ] }, + { "id": "corner", "bg": 3433, "fg": [ 3915, 3917, 3916, 3914 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 3925, 3927, 3926, 3924 ] }, + { "id": "edge", "bg": 3433, "fg": [ 3919, 3918 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 3921, 3923, 3922, 3920 ] }, + { "bg": 3433, "id": "unconnected", "fg": 3928 } ] }, { "id": "t_sand_season_winter", "multitile": true, - "fg": 3890, - "bg": 2870, + "fg": 3928, + "bg": 2908, "additional_tiles": [ - { "id": "center", "bg": 2870, "fg": [ { "weight": 1, "sprite": 3872 }, { "weight": 1, "sprite": 3873 } ] }, - { "id": "corner", "bg": 2870, "fg": [ 3877, 3879, 3878, 3876 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 3887, 3889, 3888, 3886 ] }, - { "id": "edge", "bg": 2870, "fg": [ 3881, 3880 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 3883, 3885, 3884, 3882 ] }, - { "bg": 2870, "id": "unconnected", "fg": 3890 } + { "id": "center", "bg": 2908, "fg": [ { "weight": 1, "sprite": 3910 }, { "weight": 1, "sprite": 3911 } ] }, + { "id": "corner", "bg": 2908, "fg": [ 3915, 3917, 3916, 3914 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 3925, 3927, 3926, 3924 ] }, + { "id": "edge", "bg": 2908, "fg": [ 3919, 3918 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 3921, 3923, 3922, 3920 ] }, + { "bg": 2908, "id": "unconnected", "fg": 3928 } ] }, { "id": [ "t_sandmound_season_spring", "t_sandmound_season_summer", "t_sandmound_season_autumn" ], - "fg": 3891 + "fg": 3929 }, - { "id": "t_sandmound_season_winter", "fg": 7784 }, + { "id": "t_sandmound_season_winter", "fg": 7816 }, { "id": "t_scrap_floor", "multitile": true, - "fg": 3922, + "fg": 3960, "additional_tiles": [ - { "id": "center", "fg": [ { "weight": 1, "sprite": 3892 }, { "weight": 1, "sprite": 3893 } ] }, + { "id": "center", "fg": [ { "weight": 1, "sprite": 3930 }, { "weight": 1, "sprite": 3931 } ] }, { "id": "corner", - "fg": [ { "weight": 1, "sprite": [ 3896, 3900, 3894, 3898 ] }, { "weight": 1, "sprite": [ 3897, 3901, 3895, 3899 ] } ] + "fg": [ { "weight": 1, "sprite": [ 3934, 3938, 3932, 3936 ] }, { "weight": 1, "sprite": [ 3935, 3939, 3933, 3937 ] } ] }, { "id": "t_connection", - "fg": [ { "weight": 1, "sprite": [ 3916, 3920, 3918, 3914 ] }, { "weight": 1, "sprite": [ 3917, 3921, 3919, 3915 ] } ] + "fg": [ { "weight": 1, "sprite": [ 3954, 3958, 3956, 3952 ] }, { "weight": 1, "sprite": [ 3955, 3959, 3957, 3953 ] } ] }, { "id": "edge", - "fg": [ { "weight": 1, "sprite": [ 3904, 3902 ] }, { "weight": 1, "sprite": [ 3905, 3903 ] } ] + "fg": [ { "weight": 1, "sprite": [ 3942, 3940 ] }, { "weight": 1, "sprite": [ 3943, 3941 ] } ] }, { "id": "end_piece", - "fg": [ { "weight": 1, "sprite": [ 3908, 3912, 3910, 3906 ] }, { "weight": 1, "sprite": [ 3909, 3913, 3911, 3907 ] } ] + "fg": [ { "weight": 1, "sprite": [ 3946, 3950, 3948, 3944 ] }, { "weight": 1, "sprite": [ 3947, 3951, 3949, 3945 ] } ] }, - { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 3922 }, { "weight": 1, "sprite": 3923 } ] } + { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 3960 }, { "weight": 1, "sprite": 3961 } ] } ] }, { "id": "t_scrap_wall", "multitile": true, - "fg": 3939, + "fg": 3977, "additional_tiles": [ - { "id": "center", "fg": 3924 }, - { "id": "corner", "fg": [ 3926, 3928, 3927, 3925 ] }, - { "id": "t_connection", "fg": [ 3936, 3938, 3937, 3935 ] }, - { "id": "edge", "fg": [ 3930, 3929 ] }, - { "id": "end_piece", "fg": [ 3932, 3934, 3933, 3931 ] }, - { "id": "unconnected", "fg": 3939 } + { "id": "center", "fg": 3962 }, + { "id": "corner", "fg": [ 3964, 3966, 3965, 3963 ] }, + { "id": "t_connection", "fg": [ 3974, 3976, 3975, 3973 ] }, + { "id": "edge", "fg": [ 3968, 3967 ] }, + { "id": "end_piece", "fg": [ 3970, 3972, 3971, 3969 ] }, + { "id": "unconnected", "fg": 3977 } ] }, { "id": "t_screened_porch_wall", "multitile": true, - "fg": 3955, - "bg": 3287, + "fg": 3993, + "bg": 3325, "additional_tiles": [ - { "id": "center", "bg": 3287, "fg": 3940 }, - { "id": "corner", "bg": 3287, "fg": [ 3942, 3944, 3943, 3941 ] }, - { "id": "t_connection", "bg": 3287, "fg": [ 3952, 3954, 3953, 3951 ] }, - { "id": "edge", "bg": 3287, "fg": [ 3946, 3945 ] }, - { "id": "end_piece", "bg": 3287, "fg": [ 3948, 3950, 3949, 3947 ] }, - { "bg": 3287, "id": "unconnected", "fg": [ 3955, 3955 ] } + { "id": "center", "bg": 3325, "fg": 3978 }, + { "id": "corner", "bg": 3325, "fg": [ 3980, 3982, 3981, 3979 ] }, + { "id": "t_connection", "bg": 3325, "fg": [ 3990, 3992, 3991, 3989 ] }, + { "id": "edge", "bg": 3325, "fg": [ 3984, 3983 ] }, + { "id": "end_piece", "bg": 3325, "fg": [ 3986, 3988, 3987, 3985 ] }, + { "bg": 3325, "id": "unconnected", "fg": [ 3993, 3993 ] } ] }, { "id": "t_sewage", "multitile": true, - "fg": 3971, + "fg": 4009, "additional_tiles": [ - { "id": "center", "fg": 3956 }, - { "id": "corner", "fg": [ 3958, 3960, 3959, 3957 ] }, - { "id": "t_connection", "fg": [ 3968, 3970, 3969, 3967 ] }, - { "id": "edge", "fg": [ 3962, 3961 ] }, - { "id": "end_piece", "fg": [ 3964, 3966, 3965, 3963 ] }, - { "id": "unconnected", "fg": [ 3971, 3971 ] } + { "id": "center", "fg": 3994 }, + { "id": "corner", "fg": [ 3996, 3998, 3997, 3995 ] }, + { "id": "t_connection", "fg": [ 4006, 4008, 4007, 4005 ] }, + { "id": "edge", "fg": [ 4000, 3999 ] }, + { "id": "end_piece", "fg": [ 4002, 4004, 4003, 4001 ] }, + { "id": "unconnected", "fg": [ 4009, 4009 ] } ] }, { "id": "t_sewage_pipe", "multitile": true, - "fg": 3987, + "fg": 4025, "additional_tiles": [ - { "id": "center", "fg": 3972 }, - { "id": "corner", "fg": [ 3974, 3976, 3975, 3973 ] }, - { "id": "t_connection", "fg": [ 3984, 3986, 3985, 3983 ] }, - { "id": "edge", "fg": [ 3978, 3977 ] }, - { "id": "end_piece", "fg": [ 3980, 3982, 3981, 3979 ] }, - { "id": "unconnected", "fg": [ 3987, 3987 ] } + { "id": "center", "fg": 4010 }, + { "id": "corner", "fg": [ 4012, 4014, 4013, 4011 ] }, + { "id": "t_connection", "fg": [ 4022, 4024, 4023, 4021 ] }, + { "id": "edge", "fg": [ 4016, 4015 ] }, + { "id": "end_piece", "fg": [ 4018, 4020, 4019, 4017 ] }, + { "id": "unconnected", "fg": [ 4025, 4025 ] } ] }, { "id": "t_shingle_flat_roof", "multitile": true, - "fg": 4003, - "additional_tiles": [ - { "id": "center", "fg": 3988 }, - { "id": "corner", "fg": [ 3990, 3992, 3991, 3989 ] }, - { "id": "t_connection", "fg": [ 4000, 4002, 4001, 3999 ] }, - { "id": "edge", "fg": [ 3994, 3993 ] }, - { "id": "end_piece", "fg": [ 3996, 3998, 3997, 3995 ] }, - { "id": "unconnected", "fg": 4003 } - ] - }, - { "id": "t_shrub", "fg": 4004, "bg": 3390 }, - { "id": "t_shrub_season_summer", "fg": 4004, "bg": 3400 }, - { "id": "t_shrub_season_autumn", "fg": 4004, "bg": 3395 }, - { "id": "t_shrub_season_winter", "fg": 4006, "bg": 2868 }, - { "id": "t_shrub_blackberry", "fg": 4007, "bg": 3390 }, - { "id": "t_shrub_blackberry_harvested", "fg": 4008, "bg": 3400 }, - { "id": "t_shrub_blackberry_season_summer", "fg": 4009, "bg": 3400 }, - { "id": "t_shrub_blackberry_season_autumn", "fg": 4007, "bg": 3395 }, - { "id": "t_shrub_blackberry_season_winter", "fg": 4010, "bg": 2868 }, - { "id": "t_shrub_blueberry", "fg": 4011, "bg": 3390 }, - { "id": "t_shrub_blueberry_harvested", "fg": 4012, "bg": 3400 }, - { "id": "t_shrub_blueberry_season_summer", "fg": 4013, "bg": 3400 }, - { "id": "t_shrub_blueberry_season_autumn", "fg": 4011, "bg": 3395 }, - { "id": "t_shrub_blueberry_season_winter", "fg": 4014, "bg": 2868 }, - { "id": "t_shrub_grape", "fg": 4015, "bg": 3390 }, - { "id": "t_shrub_grape_harvested", "fg": 4016, "bg": 3400 }, - { "id": "t_shrub_grape_season_summer", "fg": 4017, "bg": 3400 }, - { "id": "t_shrub_grape_season_autumn", "fg": 4015, "bg": 3395 }, - { "id": "t_shrub_grape_season_winter", "fg": 4018, "bg": 2868 }, - { "id": "t_shrub_huckleberry", "fg": 4019, "bg": 3390 }, - { "id": "t_shrub_huckleberry_harvested", "fg": 4020, "bg": 3400 }, - { "id": "t_shrub_huckleberry_season_summer", "fg": 4021, "bg": 3400 }, - { "id": "t_shrub_huckleberry_season_autumn", "fg": 4019, "bg": 3395 }, - { "id": "t_shrub_huckleberry_season_winter", "fg": 4022, "bg": 2868 }, - { "id": "t_shrub_hydrangea", "fg": 4024, "bg": 3390 }, - { "id": "t_shrub_hydrangea_harvested", "fg": 4023, "bg": 3390 }, - { "id": "t_shrub_hydrangea_season_summer", "fg": 4025, "bg": 3400 }, - { "id": "t_shrub_hydrangea_season_autumn", "fg": 4024, "bg": 3395 }, - { "id": "t_shrub_hydrangea_season_winter", "fg": 4026, "bg": 2868 }, - { "id": "t_shrub_lilac", "fg": 4028, "bg": 3390 }, - { "id": "t_shrub_lilac_harvested", "fg": 4027, "bg": 3390 }, - { "id": "t_shrub_lilac_season_summer", "fg": 4029, "bg": 3400 }, - { "id": "t_shrub_lilac_season_autumn", "fg": 4027, "bg": 3395 }, - { "id": "t_shrub_lilac_season_winter", "fg": 4030, "bg": 2868 }, - { "id": "t_shrub_peanut", "fg": 4031, "bg": 3390 }, - { "id": "t_shrub_peanut_harvested", "fg": 4033, "bg": 3395 }, - { "id": "t_shrub_peanut_season_summer", "fg": 4031, "bg": 3400 }, - { "id": "t_shrub_peanut_season_autumn", "fg": 4032, "bg": 3395 }, - { "id": "t_shrub_peanut_season_winter", "fg": 4034, "bg": 2868 }, - { "id": "t_shrub_raspberry", "fg": 4035, "bg": 3390 }, - { "id": "t_shrub_raspberry_harvested", "fg": 4036, "bg": 3400 }, - { "id": "t_shrub_raspberry_season_summer", "fg": 4037, "bg": 3400 }, - { "id": "t_shrub_raspberry_season_autumn", "fg": 4035, "bg": 3395 }, - { "id": "t_shrub_raspberry_season_winter", "fg": 4038, "bg": 2868 }, - { "id": "t_shrub_rose", "fg": 4040, "bg": 3390 }, - { "id": "t_shrub_rose_season_summer", "fg": 4040, "bg": 3400 }, - { "id": "t_shrub_rose_harvested", "fg": 4040, "bg": 3395 }, - { "id": "t_shrub_rose_season_autumn", "fg": 4039, "bg": 3395 }, - { "id": "t_shrub_rose_season_winter", "fg": 4041, "bg": 2868 }, - { "id": "t_shrub_strawberry", "fg": 4042, "bg": 3390 }, - { "id": "t_shrub_strawberry_harvested", "fg": 4043, "bg": 3400 }, - { "id": "t_shrub_strawberry_season_summer", "fg": 4044, "bg": 3400 }, - { "id": "t_shrub_strawberry_season_autumn", "fg": 4042, "bg": 3395 }, - { "id": "t_shrub_strawberry_season_winter", "fg": 4045, "bg": 2868 }, + "fg": 4041, + "additional_tiles": [ + { "id": "center", "fg": 4026 }, + { "id": "corner", "fg": [ 4028, 4030, 4029, 4027 ] }, + { "id": "t_connection", "fg": [ 4038, 4040, 4039, 4037 ] }, + { "id": "edge", "fg": [ 4032, 4031 ] }, + { "id": "end_piece", "fg": [ 4034, 4036, 4035, 4033 ] }, + { "id": "unconnected", "fg": 4041 } + ] + }, + { "id": "t_shrub", "fg": 4042, "bg": 3428 }, + { "id": "t_shrub_season_summer", "fg": 4042, "bg": 3438 }, + { "id": "t_shrub_season_autumn", "fg": 4042, "bg": 3433 }, + { "id": "t_shrub_season_winter", "fg": 4044, "bg": 2906 }, + { "id": "t_shrub_blackberry", "fg": 4045, "bg": 3428 }, + { "id": "t_shrub_blackberry_harvested", "fg": 4046, "bg": 3438 }, + { "id": "t_shrub_blackberry_season_summer", "fg": 4047, "bg": 3438 }, + { "id": "t_shrub_blackberry_season_autumn", "fg": 4045, "bg": 3433 }, + { "id": "t_shrub_blackberry_season_winter", "fg": 4048, "bg": 2906 }, + { "id": "t_shrub_blueberry", "fg": 4049, "bg": 3428 }, + { "id": "t_shrub_blueberry_harvested", "fg": 4050, "bg": 3438 }, + { "id": "t_shrub_blueberry_season_summer", "fg": 4051, "bg": 3438 }, + { "id": "t_shrub_blueberry_season_autumn", "fg": 4049, "bg": 3433 }, + { "id": "t_shrub_blueberry_season_winter", "fg": 4052, "bg": 2906 }, + { "id": "t_shrub_grape", "fg": 4053, "bg": 3428 }, + { "id": "t_shrub_grape_harvested", "fg": 4054, "bg": 3438 }, + { "id": "t_shrub_grape_season_summer", "fg": 4055, "bg": 3438 }, + { "id": "t_shrub_grape_season_autumn", "fg": 4053, "bg": 3433 }, + { "id": "t_shrub_grape_season_winter", "fg": 4056, "bg": 2906 }, + { "id": "t_shrub_huckleberry", "fg": 4057, "bg": 3428 }, + { "id": "t_shrub_huckleberry_harvested", "fg": 4058, "bg": 3438 }, + { "id": "t_shrub_huckleberry_season_summer", "fg": 4059, "bg": 3438 }, + { "id": "t_shrub_huckleberry_season_autumn", "fg": 4057, "bg": 3433 }, + { "id": "t_shrub_huckleberry_season_winter", "fg": 4060, "bg": 2906 }, + { "id": "t_shrub_hydrangea", "fg": 4062, "bg": 3428 }, + { "id": "t_shrub_hydrangea_harvested", "fg": 4061, "bg": 3428 }, + { "id": "t_shrub_hydrangea_season_summer", "fg": 4063, "bg": 3438 }, + { "id": "t_shrub_hydrangea_season_autumn", "fg": 4062, "bg": 3433 }, + { "id": "t_shrub_hydrangea_season_winter", "fg": 4064, "bg": 2906 }, + { "id": "t_shrub_lilac", "fg": 4066, "bg": 3428 }, + { "id": "t_shrub_lilac_harvested", "fg": 4065, "bg": 3428 }, + { "id": "t_shrub_lilac_season_summer", "fg": 4067, "bg": 3438 }, + { "id": "t_shrub_lilac_season_autumn", "fg": 4065, "bg": 3433 }, + { "id": "t_shrub_lilac_season_winter", "fg": 4068, "bg": 2906 }, + { "id": "t_shrub_peanut", "fg": 4069, "bg": 3428 }, + { "id": "t_shrub_peanut_harvested", "fg": 4071, "bg": 3433 }, + { "id": "t_shrub_peanut_season_summer", "fg": 4069, "bg": 3438 }, + { "id": "t_shrub_peanut_season_autumn", "fg": 4070, "bg": 3433 }, + { "id": "t_shrub_peanut_season_winter", "fg": 4072, "bg": 2906 }, + { "id": "t_shrub_raspberry", "fg": 4073, "bg": 3428 }, + { "id": "t_shrub_raspberry_harvested", "fg": 4074, "bg": 3438 }, + { "id": "t_shrub_raspberry_season_summer", "fg": 4075, "bg": 3438 }, + { "id": "t_shrub_raspberry_season_autumn", "fg": 4073, "bg": 3433 }, + { "id": "t_shrub_raspberry_season_winter", "fg": 4076, "bg": 2906 }, + { "id": "t_shrub_rose", "fg": 4078, "bg": 3428 }, + { "id": "t_shrub_rose_season_summer", "fg": 4078, "bg": 3438 }, + { "id": "t_shrub_rose_harvested", "fg": 4078, "bg": 3433 }, + { "id": "t_shrub_rose_season_autumn", "fg": 4077, "bg": 3433 }, + { "id": "t_shrub_rose_season_winter", "fg": 4079, "bg": 2906 }, + { "id": "t_shrub_strawberry", "fg": 4080, "bg": 3428 }, + { "id": "t_shrub_strawberry_harvested", "fg": 4081, "bg": 3438 }, + { "id": "t_shrub_strawberry_season_summer", "fg": 4082, "bg": 3438 }, + { "id": "t_shrub_strawberry_season_autumn", "fg": 4080, "bg": 3433 }, + { "id": "t_shrub_strawberry_season_winter", "fg": 4083, "bg": 2906 }, { "id": [ "t_sidewalk", "t_sidewalk_bg_dp" ], "multitile": true, - "fg": 4061, + "fg": 4099, "additional_tiles": [ - { "id": "center", "fg": 4046 }, - { "id": "corner", "fg": [ 4048, 4050, 4049, 4047 ] }, - { "id": "t_connection", "fg": [ 4058, 4060, 4059, 4057 ] }, - { "id": "edge", "fg": [ 4052, 4051 ] }, - { "id": "end_piece", "fg": [ 4054, 4056, 4055, 4053 ] }, - { "id": "unconnected", "fg": 4061 } + { "id": "center", "fg": 4084 }, + { "id": "corner", "fg": [ 4086, 4088, 4087, 4085 ] }, + { "id": "t_connection", "fg": [ 4096, 4098, 4097, 4095 ] }, + { "id": "edge", "fg": [ 4090, 4089 ] }, + { "id": "end_piece", "fg": [ 4092, 4094, 4093, 4091 ] }, + { "id": "unconnected", "fg": 4099 } ] }, - { "id": "t_sidewalk_season_winter", "fg": 2870 }, - { "id": "t_slime", "fg": 4062 }, + { "id": "t_sidewalk_season_winter", "fg": 2908 }, + { "id": "t_slime", "fg": 4100 }, { "id": "t_soil", - "fg": 4078, + "fg": 4116, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4063 }, - { "id": "corner", "fg": [ 4065, 4067, 4066, 4064 ] }, - { "id": "t_connection", "fg": [ 4075, 4077, 4076, 4074 ] }, - { "id": "edge", "fg": [ 4069, 4068 ] }, - { "id": "end_piece", "fg": [ 4071, 4073, 4072, 4070 ] }, - { "id": "unconnected", "fg": [ 4078, 4078 ] } + { "id": "center", "fg": 4101 }, + { "id": "corner", "fg": [ 4103, 4105, 4104, 4102 ] }, + { "id": "t_connection", "fg": [ 4113, 4115, 4114, 4112 ] }, + { "id": "edge", "fg": [ 4107, 4106 ] }, + { "id": "end_piece", "fg": [ 4109, 4111, 4110, 4108 ] }, + { "id": "unconnected", "fg": [ 4116, 4116 ] } ] }, - { "id": "t_splitrail_fencegate_c", "fg": 4079, "bg": 3390 }, - { "id": "t_splitrail_fencegate_o", "fg": 4080, "bg": 3390 }, - { "id": "t_splitrail_fencegate_c_season_summer", "fg": 4079, "bg": 3400 }, - { "id": "t_splitrail_fencegate_o_season_summer", "fg": 4080, "bg": 3400 }, - { "id": "t_splitrail_fencegate_c_season_autumn", "fg": 4079, "bg": 3395 }, - { "id": "t_splitrail_fencegate_o_season_autumn", "fg": 4080, "bg": 3395 }, - { "id": "t_splitrail_fencegate_c_season_winter", "fg": 4079, "bg": 2870 }, - { "id": "t_splitrail_fencegate_o_season_winter", "fg": 4080, "bg": 2870 }, + { "id": "t_splitrail_fencegate_c", "fg": 4117, "bg": 3428 }, + { "id": "t_splitrail_fencegate_o", "fg": 4118, "bg": 3428 }, + { "id": "t_splitrail_fencegate_c_season_summer", "fg": 4117, "bg": 3438 }, + { "id": "t_splitrail_fencegate_o_season_summer", "fg": 4118, "bg": 3438 }, + { "id": "t_splitrail_fencegate_c_season_autumn", "fg": 4117, "bg": 3433 }, + { "id": "t_splitrail_fencegate_o_season_autumn", "fg": 4118, "bg": 3433 }, + { "id": "t_splitrail_fencegate_c_season_winter", "fg": 4117, "bg": 2908 }, + { "id": "t_splitrail_fencegate_o_season_winter", "fg": 4118, "bg": 2908 }, { "id": "t_strconc_floor", "multitile": true, - "fg": 4096, + "fg": 4134, "additional_tiles": [ - { "id": "center", "fg": 4081 }, - { "id": "corner", "fg": [ 4083, 4085, 4084, 4082 ] }, - { "id": "t_connection", "fg": [ 4093, 4095, 4094, 4092 ] }, - { "id": "edge", "fg": [ 4087, 4086 ] }, - { "id": "end_piece", "fg": [ 4089, 4091, 4090, 4088 ] }, - { "id": "unconnected", "fg": 4096 } + { "id": "center", "fg": 4119 }, + { "id": "corner", "fg": [ 4121, 4123, 4122, 4120 ] }, + { "id": "t_connection", "fg": [ 4131, 4133, 4132, 4130 ] }, + { "id": "edge", "fg": [ 4125, 4124 ] }, + { "id": "end_piece", "fg": [ 4127, 4129, 4128, 4126 ] }, + { "id": "unconnected", "fg": 4134 } ] }, - { "id": "t_stump", "fg": 4097, "bg": 3390 }, - { "id": "t_stump_season_summer", "fg": 4097, "bg": 3400 }, - { "id": "t_stump_season_autumn", "fg": 4097, "bg": 3395 }, - { "id": "t_stump_season_winter", "fg": 4097, "bg": 2868 }, - { "id": "f_tatami", "fg": [ { "weight": 100, "sprite": 4098 }, { "weight": 100, "sprite": 4099 } ] }, + { "id": "t_stump", "fg": 4135, "bg": 3428 }, + { "id": "t_stump_season_summer", "fg": 4135, "bg": 3438 }, + { "id": "t_stump_season_autumn", "fg": 4135, "bg": 3433 }, + { "id": "t_stump_season_winter", "fg": 4135, "bg": 2906 }, + { "id": "f_tatami", "fg": [ { "weight": 100, "sprite": 4136 }, { "weight": 100, "sprite": 4137 } ] }, { "id": "t_thconc_floor", "fg": [ - { "weight": 1, "sprite": 4100 }, - { "weight": 1, "sprite": 4101 }, - { "weight": 1, "sprite": 4102 }, - { "weight": 1, "sprite": 4103 }, - { "weight": 1, "sprite": 4104 }, - { "weight": 1, "sprite": 4105 } + { "weight": 1, "sprite": 4138 }, + { "weight": 1, "sprite": 4139 }, + { "weight": 1, "sprite": 4140 }, + { "weight": 1, "sprite": 4141 }, + { "weight": 1, "sprite": 4142 }, + { "weight": 1, "sprite": 4143 } ] }, { "id": "t_thconc_r", "fg": [ - { "weight": 1, "sprite": 4108 }, - { "weight": 1, "sprite": 4109 }, - { "weight": 1, "sprite": 4110 }, - { "weight": 1, "sprite": 4111 }, - { "weight": 1, "sprite": 4112 }, - { "weight": 1, "sprite": 4113 } + { "weight": 1, "sprite": 4146 }, + { "weight": 1, "sprite": 4147 }, + { "weight": 1, "sprite": 4148 }, + { "weight": 1, "sprite": 4149 }, + { "weight": 1, "sprite": 4150 }, + { "weight": 1, "sprite": 4151 } ] }, { "id": "t_thconc_y", "fg": [ - { "weight": 1, "sprite": 4114 }, - { "weight": 1, "sprite": 4115 }, - { "weight": 1, "sprite": 4116 }, - { "weight": 1, "sprite": 4117 }, - { "weight": 1, "sprite": 4118 }, - { "weight": 1, "sprite": 4119 } - ] - }, - { "id": "t_underbrush", "fg": 4120, "bg": 3390 }, - { "id": "t_underbrush_harvested_spring", "fg": 4121, "bg": 3390 }, - { "id": "t_underbrush_season_summer", "fg": 4120, "bg": 3400 }, - { "id": "t_underbrush_harvested_summer", "fg": 4121, "bg": 3400 }, - { "id": "t_underbrush_season_autumn", "fg": 4120, "bg": 3395 }, - { "id": "t_underbrush_harvested_autumn", "fg": 4121, "bg": 3395 }, - { "id": "t_underbrush_harvested_winter", "fg": 4121, "bg": 2868 }, - { "id": "t_underbrush_season_winter", "fg": 4120, "bg": 2868 }, + { "weight": 1, "sprite": 4152 }, + { "weight": 1, "sprite": 4153 }, + { "weight": 1, "sprite": 4154 }, + { "weight": 1, "sprite": 4155 }, + { "weight": 1, "sprite": 4156 }, + { "weight": 1, "sprite": 4157 } + ] + }, + { "id": "t_underbrush", "fg": 4158, "bg": 3428 }, + { "id": "t_underbrush_harvested_spring", "fg": 4159, "bg": 3428 }, + { "id": "t_underbrush_season_summer", "fg": 4158, "bg": 3438 }, + { "id": "t_underbrush_harvested_summer", "fg": 4159, "bg": 3438 }, + { "id": "t_underbrush_season_autumn", "fg": 4158, "bg": 3433 }, + { "id": "t_underbrush_harvested_autumn", "fg": 4159, "bg": 3433 }, + { "id": "t_underbrush_harvested_winter", "fg": 4159, "bg": 2906 }, + { "id": "t_underbrush_season_winter", "fg": 4158, "bg": 2906 }, { "id": "t_wall", "multitile": true, - "fg": 4137, + "fg": 4175, "additional_tiles": [ - { "id": "center", "fg": 4122 }, - { "id": "corner", "fg": [ 4124, 4126, 4125, 4123 ] }, - { "id": "t_connection", "fg": [ 4134, 4136, 4135, 4133 ] }, - { "id": "edge", "fg": [ 4128, 4127 ] }, - { "id": "end_piece", "fg": [ 4130, 4132, 4131, 4129 ] }, - { "id": "unconnected", "fg": 4137 } + { "id": "center", "fg": 4160 }, + { "id": "corner", "fg": [ 4162, 4164, 4163, 4161 ] }, + { "id": "t_connection", "fg": [ 4172, 4174, 4173, 4171 ] }, + { "id": "edge", "fg": [ 4166, 4165 ] }, + { "id": "end_piece", "fg": [ 4168, 4170, 4169, 4167 ] }, + { "id": "unconnected", "fg": 4175 } ] }, { "id": "t_wall_b", "multitile": true, - "fg": 4153, + "fg": 4191, "additional_tiles": [ - { "id": "center", "fg": 4138 }, - { "id": "corner", "fg": [ 4140, 4142, 4141, 4139 ] }, - { "id": "t_connection", "fg": [ 4150, 4152, 4151, 4149 ] }, - { "id": "edge", "fg": [ 4144, 4143 ] }, - { "id": "end_piece", "fg": [ 4146, 4148, 4147, 4145 ] }, - { "id": "unconnected", "fg": 4153 } + { "id": "center", "fg": 4176 }, + { "id": "corner", "fg": [ 4178, 4180, 4179, 4177 ] }, + { "id": "t_connection", "fg": [ 4188, 4190, 4189, 4187 ] }, + { "id": "edge", "fg": [ 4182, 4181 ] }, + { "id": "end_piece", "fg": [ 4184, 4186, 4185, 4183 ] }, + { "id": "unconnected", "fg": 4191 } ] }, { "id": "t_wall_g", "multitile": true, - "fg": 4169, + "fg": 4207, "additional_tiles": [ - { "id": "center", "fg": 4154 }, - { "id": "corner", "fg": [ 4156, 4158, 4157, 4155 ] }, - { "id": "t_connection", "fg": [ 4166, 4168, 4167, 4165 ] }, - { "id": "edge", "fg": [ 4160, 4159 ] }, - { "id": "end_piece", "fg": [ 4162, 4164, 4163, 4161 ] }, - { "id": "unconnected", "fg": 4169 } + { "id": "center", "fg": 4192 }, + { "id": "corner", "fg": [ 4194, 4196, 4195, 4193 ] }, + { "id": "t_connection", "fg": [ 4204, 4206, 4205, 4203 ] }, + { "id": "edge", "fg": [ 4198, 4197 ] }, + { "id": "end_piece", "fg": [ 4200, 4202, 4201, 4199 ] }, + { "id": "unconnected", "fg": 4207 } ] }, { "id": [ "t_wall_glass", "t_wall_glass_alarm" ], "multitile": true, - "fg": 4185, + "fg": 4223, "additional_tiles": [ - { "id": "center", "fg": 4170 }, - { "id": "corner", "fg": [ 4172, 4174, 4173, 4171 ] }, - { "id": "t_connection", "fg": [ 4182, 4184, 4183, 4181 ] }, - { "id": "edge", "fg": [ 4176, 4175 ] }, - { "id": "end_piece", "fg": [ 4178, 4180, 4179, 4177 ] }, - { "id": "unconnected", "fg": 4185 } + { "id": "center", "fg": 4208 }, + { "id": "corner", "fg": [ 4210, 4212, 4211, 4209 ] }, + { "id": "t_connection", "fg": [ 4220, 4222, 4221, 4219 ] }, + { "id": "edge", "fg": [ 4214, 4213 ] }, + { "id": "end_piece", "fg": [ 4216, 4218, 4217, 4215 ] }, + { "id": "unconnected", "fg": 4223 } ] }, { "id": "t_wall_log", "multitile": true, - "fg": 4201, - "bg": 3390, + "fg": 4239, + "bg": 3428, "additional_tiles": [ - { "id": "center", "fg": 4186 }, - { "id": "corner", "fg": [ 4188, 4190, 4189, 4187 ] }, - { "id": "t_connection", "fg": [ 4198, 4200, 4199, 4197 ] }, - { "id": "edge", "bg": 3390, "fg": [ 4192, 4191 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 4194, 4196, 4195, 4193 ] }, - { "bg": 3390, "id": "unconnected", "fg": 4201 } + { "id": "center", "fg": 4224 }, + { "id": "corner", "fg": [ 4226, 4228, 4227, 4225 ] }, + { "id": "t_connection", "fg": [ 4236, 4238, 4237, 4235 ] }, + { "id": "edge", "bg": 3428, "fg": [ 4230, 4229 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 4232, 4234, 4233, 4231 ] }, + { "bg": 3428, "id": "unconnected", "fg": 4239 } ] }, { "id": "t_wall_metal", - "fg": 4217, + "fg": 4255, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4202 }, - { "id": "corner", "fg": [ 4204, 4206, 4205, 4203 ] }, - { "id": "t_connection", "fg": [ 4214, 4216, 4215, 4213 ] }, - { "id": "edge", "fg": [ 4208, 4207 ] }, - { "id": "end_piece", "fg": [ 4210, 4212, 4211, 4209 ] }, - { "id": "unconnected", "fg": [ 4217, 4217 ] } + { "id": "center", "fg": 4240 }, + { "id": "corner", "fg": [ 4242, 4244, 4243, 4241 ] }, + { "id": "t_connection", "fg": [ 4252, 4254, 4253, 4251 ] }, + { "id": "edge", "fg": [ 4246, 4245 ] }, + { "id": "end_piece", "fg": [ 4248, 4250, 4249, 4247 ] }, + { "id": "unconnected", "fg": [ 4255, 4255 ] } ] }, { "id": "t_wall_metal_corrugated", - "fg": 4233, + "fg": 4271, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4218 }, - { "id": "corner", "fg": [ 4220, 4222, 4221, 4219 ] }, - { "id": "t_connection", "fg": [ 4230, 4232, 4231, 4229 ] }, - { "id": "edge", "fg": [ 4224, 4223 ] }, - { "id": "end_piece", "fg": [ 4226, 4228, 4227, 4225 ] }, - { "id": "unconnected", "fg": [ 4233, 4233 ] } + { "id": "center", "fg": 4256 }, + { "id": "corner", "fg": [ 4258, 4260, 4259, 4257 ] }, + { "id": "t_connection", "fg": [ 4268, 4270, 4269, 4267 ] }, + { "id": "edge", "fg": [ 4262, 4261 ] }, + { "id": "end_piece", "fg": [ 4264, 4266, 4265, 4263 ] }, + { "id": "unconnected", "fg": [ 4271, 4271 ] } ] }, { "id": "t_wall_p", "multitile": true, - "fg": 4249, + "fg": 4287, "additional_tiles": [ - { "id": "center", "fg": 4234 }, - { "id": "corner", "fg": [ 4236, 4238, 4237, 4235 ] }, - { "id": "t_connection", "fg": [ 4246, 4248, 4247, 4245 ] }, - { "id": "edge", "fg": [ 4240, 4239 ] }, - { "id": "end_piece", "fg": [ 4242, 4244, 4243, 4241 ] }, - { "id": "unconnected", "fg": 4249 } + { "id": "center", "fg": 4272 }, + { "id": "corner", "fg": [ 4274, 4276, 4275, 4273 ] }, + { "id": "t_connection", "fg": [ 4284, 4286, 4285, 4283 ] }, + { "id": "edge", "fg": [ 4278, 4277 ] }, + { "id": "end_piece", "fg": [ 4280, 4282, 4281, 4279 ] }, + { "id": "unconnected", "fg": 4287 } ] }, { "id": "t_wall_r", "multitile": true, - "fg": 4265, + "fg": 4303, "additional_tiles": [ - { "id": "center", "fg": 4250 }, - { "id": "corner", "fg": [ 4252, 4254, 4253, 4251 ] }, - { "id": "t_connection", "fg": [ 4262, 4264, 4263, 4261 ] }, - { "id": "edge", "fg": [ 4256, 4255 ] }, - { "id": "end_piece", "fg": [ 4258, 4260, 4259, 4257 ] }, - { "id": "unconnected", "fg": 4265 } + { "id": "center", "fg": 4288 }, + { "id": "corner", "fg": [ 4290, 4292, 4291, 4289 ] }, + { "id": "t_connection", "fg": [ 4300, 4302, 4301, 4299 ] }, + { "id": "edge", "fg": [ 4294, 4293 ] }, + { "id": "end_piece", "fg": [ 4296, 4298, 4297, 4295 ] }, + { "id": "unconnected", "fg": 4303 } ] }, { "id": "t_wall_rammed_earth", - "fg": 4281, + "fg": 4319, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4266 }, - { "id": "corner", "fg": [ 4268, 4270, 4269, 4267 ] }, - { "id": "t_connection", "fg": [ 4278, 4280, 4279, 4277 ] }, - { "id": "edge", "fg": [ 4272, 4271 ] }, - { "id": "end_piece", "fg": [ 4274, 4276, 4275, 4273 ] }, - { "id": "unconnected", "fg": [ 4281, 4281 ] } + { "id": "center", "fg": 4304 }, + { "id": "corner", "fg": [ 4306, 4308, 4307, 4305 ] }, + { "id": "t_connection", "fg": [ 4316, 4318, 4317, 4315 ] }, + { "id": "edge", "fg": [ 4310, 4309 ] }, + { "id": "end_piece", "fg": [ 4312, 4314, 4313, 4311 ] }, + { "id": "unconnected", "fg": [ 4319, 4319 ] } ] }, { "id": "t_wall_resin", "multitile": true, - "fg": 4299, + "fg": 4337, "additional_tiles": [ - { "id": "center", "fg": 4284 }, - { "id": "corner", "fg": [ 4286, 4288, 4287, 4285 ] }, - { "id": "t_connection", "fg": [ 4296, 4298, 4297, 4295 ] }, - { "id": "edge", "fg": [ 4290, 4289 ] }, - { "id": "end_piece", "fg": [ 4292, 4294, 4293, 4291 ] }, - { "id": "unconnected", "fg": 4299 } + { "id": "center", "fg": 4322 }, + { "id": "corner", "fg": [ 4324, 4326, 4325, 4323 ] }, + { "id": "t_connection", "fg": [ 4334, 4336, 4335, 4333 ] }, + { "id": "edge", "fg": [ 4328, 4327 ] }, + { "id": "end_piece", "fg": [ 4330, 4332, 4331, 4329 ] }, + { "id": "unconnected", "fg": 4337 } ] }, - { "id": "t_resin_hole_c", "fg": 4282 }, - { "id": "t_resin_hole_o", "fg": 4283 }, + { "id": "t_resin_hole_c", "fg": 4320 }, + { "id": "t_resin_hole_o", "fg": 4321 }, { "id": "t_wall_w", "multitile": true, - "fg": 4316, + "fg": 4354, "additional_tiles": [ - { "id": "center", "fg": 4301 }, - { "id": "corner", "fg": [ 4303, 4305, 4304, 4302 ] }, - { "id": "t_connection", "fg": [ 4313, 4315, 4314, 4312 ] }, - { "id": "edge", "fg": [ 4307, 4306 ] }, - { "id": "end_piece", "fg": [ 4309, 4311, 4310, 4308 ] }, - { "id": "unconnected", "fg": 4316 } + { "id": "center", "fg": 4339 }, + { "id": "corner", "fg": [ 4341, 4343, 4342, 4340 ] }, + { "id": "t_connection", "fg": [ 4351, 4353, 4352, 4350 ] }, + { "id": "edge", "fg": [ 4345, 4344 ] }, + { "id": "end_piece", "fg": [ 4347, 4349, 4348, 4346 ] }, + { "id": "unconnected", "fg": 4354 } ] }, { "id": [ "t_wall_wood", "t_wall_wood_chipped", "t_wall_wood_broken" ], "multitile": true, - "fg": 4332, + "fg": 4370, "additional_tiles": [ - { "id": "center", "fg": 4317 }, - { "id": "corner", "fg": [ 4319, 4321, 4320, 4318 ] }, - { "id": "t_connection", "fg": [ 4329, 4331, 4330, 4328 ] }, - { "id": "edge", "fg": [ 4323, 4322 ] }, - { "id": "end_piece", "fg": [ 4325, 4327, 4326, 4324 ] }, - { "id": "unconnected", "fg": 4332 } + { "id": "center", "fg": 4355 }, + { "id": "corner", "fg": [ 4357, 4359, 4358, 4356 ] }, + { "id": "t_connection", "fg": [ 4367, 4369, 4368, 4366 ] }, + { "id": "edge", "fg": [ 4361, 4360 ] }, + { "id": "end_piece", "fg": [ 4363, 4365, 4364, 4362 ] }, + { "id": "unconnected", "fg": 4370 } ] }, { "id": "t_wall_y", "multitile": true, - "fg": 4348, + "fg": 4386, "additional_tiles": [ - { "id": "center", "fg": 4333 }, - { "id": "corner", "fg": [ 4335, 4337, 4336, 4334 ] }, - { "id": "t_connection", "fg": [ 4345, 4347, 4346, 4344 ] }, - { "id": "edge", "fg": [ 4339, 4338 ] }, - { "id": "end_piece", "fg": [ 4341, 4343, 4342, 4340 ] }, - { "id": "unconnected", "fg": 4348 } + { "id": "center", "fg": 4371 }, + { "id": "corner", "fg": [ 4373, 4375, 4374, 4372 ] }, + { "id": "t_connection", "fg": [ 4383, 4385, 4384, 4382 ] }, + { "id": "edge", "fg": [ 4377, 4376 ] }, + { "id": "end_piece", "fg": [ 4379, 4381, 4380, 4378 ] }, + { "id": "unconnected", "fg": 4386 } ] }, { "id": [ "t_water_dp", "t_swater_dp" ], "multitile": true, - "fg": 4367, - "bg": 3390, + "fg": 4405, + "bg": 3428, "additional_tiles": [ { "id": "center", - "bg": 3390, + "bg": 3428, "fg": [ - { "weight": 1, "sprite": 4349 }, - { "weight": 1, "sprite": 4350 }, - { "weight": 1, "sprite": 4351 }, - { "weight": 1, "sprite": 4352 } + { "weight": 1, "sprite": 4387 }, + { "weight": 1, "sprite": 4388 }, + { "weight": 1, "sprite": 4389 }, + { "weight": 1, "sprite": 4390 } ] }, - { "id": "corner", "bg": 3390, "fg": [ 4354, 4356, 4355, 4353 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 4364, 4366, 4365, 4363 ] }, - { "id": "edge", "bg": 3390, "fg": [ 4358, 4357 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 4360, 4362, 4361, 4359 ] }, - { "bg": 3390, "id": "unconnected", "fg": 4367 } + { "id": "corner", "bg": 3428, "fg": [ 4392, 4394, 4393, 4391 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 4402, 4404, 4403, 4401 ] }, + { "id": "edge", "bg": 3428, "fg": [ 4396, 4395 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 4398, 4400, 4399, 4397 ] }, + { "bg": 3428, "id": "unconnected", "fg": 4405 } ] }, { "id": [ "t_water_dp_season_summer", "t_swater_dp_season_summer" ], "multitile": true, - "fg": 4367, - "bg": 3400, + "fg": 4405, + "bg": 3438, "additional_tiles": [ { "id": "center", - "bg": 3400, - "fg": [ { "weight": 1, "sprite": 4349 }, { "weight": 1, "sprite": 4350 }, { "weight": 1, "sprite": 4351 } ] + "bg": 3438, + "fg": [ { "weight": 1, "sprite": 4387 }, { "weight": 1, "sprite": 4388 }, { "weight": 1, "sprite": 4389 } ] }, - { "id": "corner", "bg": 3400, "fg": [ 4354, 4356, 4355, 4353 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 4364, 4366, 4365, 4363 ] }, - { "id": "edge", "bg": 3400, "fg": [ 4358, 4357 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 4360, 4362, 4361, 4359 ] }, - { "bg": 3400, "id": "unconnected", "fg": 4367 } + { "id": "corner", "bg": 3438, "fg": [ 4392, 4394, 4393, 4391 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 4402, 4404, 4403, 4401 ] }, + { "id": "edge", "bg": 3438, "fg": [ 4396, 4395 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 4398, 4400, 4399, 4397 ] }, + { "bg": 3438, "id": "unconnected", "fg": 4405 } ] }, { "id": [ "t_water_dp_season_autumn", "t_swater_dp_season_autumn" ], "multitile": true, - "fg": 4367, - "bg": 3395, + "fg": 4405, + "bg": 3433, "additional_tiles": [ { "id": "center", - "bg": 3395, - "fg": [ { "weight": 1, "sprite": 4349 }, { "weight": 1, "sprite": 4350 }, { "weight": 1, "sprite": 4351 } ] + "bg": 3433, + "fg": [ { "weight": 1, "sprite": 4387 }, { "weight": 1, "sprite": 4388 }, { "weight": 1, "sprite": 4389 } ] }, - { "id": "corner", "bg": 3395, "fg": [ 4354, 4356, 4355, 4353 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 4364, 4366, 4365, 4363 ] }, - { "id": "edge", "bg": 3395, "fg": [ 4358, 4357 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 4360, 4362, 4361, 4359 ] }, - { "bg": 3395, "id": "unconnected", "fg": 4367 } + { "id": "corner", "bg": 3433, "fg": [ 4392, 4394, 4393, 4391 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 4402, 4404, 4403, 4401 ] }, + { "id": "edge", "bg": 3433, "fg": [ 4396, 4395 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 4398, 4400, 4399, 4397 ] }, + { "bg": 3433, "id": "unconnected", "fg": 4405 } ] }, { "id": [ "t_water_dp_season_winter", "t_swater_dp_season_winter" ], "multitile": true, - "fg": 4367, - "bg": 2870, + "fg": 4405, + "bg": 2908, "additional_tiles": [ { "id": "center", - "bg": 2870, - "fg": [ { "weight": 1, "sprite": 4349 }, { "weight": 1, "sprite": 4350 }, { "weight": 1, "sprite": 4351 } ] + "bg": 2908, + "fg": [ { "weight": 1, "sprite": 4387 }, { "weight": 1, "sprite": 4388 }, { "weight": 1, "sprite": 4389 } ] }, - { "id": "corner", "bg": 2870, "fg": [ 4354, 4356, 4355, 4353 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 4364, 4366, 4365, 4363 ] }, - { "id": "edge", "bg": 2870, "fg": [ 4358, 4357 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 4360, 4362, 4361, 4359 ] }, - { "bg": 2870, "id": "unconnected", "fg": 4367 } + { "id": "corner", "bg": 2908, "fg": [ 4392, 4394, 4393, 4391 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 4402, 4404, 4403, 4401 ] }, + { "id": "edge", "bg": 2908, "fg": [ 4396, 4395 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 4398, 4400, 4399, 4397 ] }, + { "bg": 2908, "id": "unconnected", "fg": 4405 } ] }, { "id": "t_water_hot", - "fg": 4383, - "bg": 3390, + "fg": 4421, + "bg": 3428, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4368, "bg": 3390 }, - { "id": "corner", "fg": [ 4370, 4372, 4371, 4369 ], "bg": 3390 }, - { "id": "t_connection", "fg": [ 4380, 4382, 4381, 4379 ], "bg": 3390 }, - { "id": "edge", "fg": [ 4374, 4373 ], "bg": 3390 }, - { "id": "end_piece", "fg": [ 4376, 4378, 4377, 4375 ], "bg": 3390 }, - { "id": "unconnected", "fg": [ 4383, 4383 ], "bg": 3390 } + { "id": "center", "fg": 4406, "bg": 3428 }, + { "id": "corner", "fg": [ 4408, 4410, 4409, 4407 ], "bg": 3428 }, + { "id": "t_connection", "fg": [ 4418, 4420, 4419, 4417 ], "bg": 3428 }, + { "id": "edge", "fg": [ 4412, 4411 ], "bg": 3428 }, + { "id": "end_piece", "fg": [ 4414, 4416, 4415, 4413 ], "bg": 3428 }, + { "id": "unconnected", "fg": [ 4421, 4421 ], "bg": 3428 } ] }, { "id": "t_water_hot_season_summer", - "fg": 4383, - "bg": 3400, + "fg": 4421, + "bg": 3438, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4368, "bg": 3400 }, - { "id": "corner", "fg": [ 4370, 4372, 4371, 4369 ], "bg": 3400 }, - { "id": "t_connection", "fg": [ 4380, 4382, 4381, 4379 ], "bg": 3400 }, - { "id": "edge", "fg": [ 4374, 4373 ], "bg": 3400 }, - { "id": "end_piece", "fg": [ 4376, 4378, 4377, 4375 ], "bg": 3400 }, - { "id": "unconnected", "fg": [ 4383, 4383 ], "bg": 3400 } + { "id": "center", "fg": 4406, "bg": 3438 }, + { "id": "corner", "fg": [ 4408, 4410, 4409, 4407 ], "bg": 3438 }, + { "id": "t_connection", "fg": [ 4418, 4420, 4419, 4417 ], "bg": 3438 }, + { "id": "edge", "fg": [ 4412, 4411 ], "bg": 3438 }, + { "id": "end_piece", "fg": [ 4414, 4416, 4415, 4413 ], "bg": 3438 }, + { "id": "unconnected", "fg": [ 4421, 4421 ], "bg": 3438 } ] }, { "id": "t_water_hot_season_autumn", - "fg": 4383, - "bg": 3395, + "fg": 4421, + "bg": 3433, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4368, "bg": 3395 }, - { "id": "corner", "fg": [ 4370, 4372, 4371, 4369 ], "bg": 3395 }, - { "id": "t_connection", "fg": [ 4380, 4382, 4381, 4379 ], "bg": 3395 }, - { "id": "edge", "fg": [ 4374, 4373 ], "bg": 3395 }, - { "id": "end_piece", "fg": [ 4376, 4378, 4377, 4375 ], "bg": 3395 }, - { "id": "unconnected", "fg": [ 4383, 4383 ], "bg": 3395 } + { "id": "center", "fg": 4406, "bg": 3433 }, + { "id": "corner", "fg": [ 4408, 4410, 4409, 4407 ], "bg": 3433 }, + { "id": "t_connection", "fg": [ 4418, 4420, 4419, 4417 ], "bg": 3433 }, + { "id": "edge", "fg": [ 4412, 4411 ], "bg": 3433 }, + { "id": "end_piece", "fg": [ 4414, 4416, 4415, 4413 ], "bg": 3433 }, + { "id": "unconnected", "fg": [ 4421, 4421 ], "bg": 3433 } ] }, { "id": "t_water_hot_season_winter", - "fg": 4383, - "bg": 2870, + "fg": 4421, + "bg": 2908, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4368, "bg": 2870 }, - { "id": "corner", "fg": [ 4370, 4372, 4371, 4369 ], "bg": 2870 }, - { "id": "t_connection", "fg": [ 4380, 4382, 4381, 4379 ], "bg": 2870 }, - { "id": "edge", "fg": [ 4374, 4373 ], "bg": 2870 }, - { "id": "end_piece", "fg": [ 4376, 4378, 4377, 4375 ], "bg": 2870 }, - { "id": "unconnected", "fg": [ 4383, 4383 ], "bg": 2870 } + { "id": "center", "fg": 4406, "bg": 2908 }, + { "id": "corner", "fg": [ 4408, 4410, 4409, 4407 ], "bg": 2908 }, + { "id": "t_connection", "fg": [ 4418, 4420, 4419, 4417 ], "bg": 2908 }, + { "id": "edge", "fg": [ 4412, 4411 ], "bg": 2908 }, + { "id": "end_piece", "fg": [ 4414, 4416, 4415, 4413 ], "bg": 2908 }, + { "id": "unconnected", "fg": [ 4421, 4421 ], "bg": 2908 } ] }, { "id": [ "t_water_moving_dp", "t_swater_moving_dp" ], "multitile": true, - "fg": 4400, - "bg": 3390, + "fg": 4438, + "bg": 3428, "additional_tiles": [ - { "id": "center", "bg": 3390, "fg": [ { "weight": 1, "sprite": 4384 }, { "weight": 1, "sprite": 4385 } ] }, - { "id": "corner", "bg": 3390, "fg": [ 4387, 4389, 4388, 4386 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 4397, 4399, 4398, 4396 ] }, - { "id": "edge", "bg": 3390, "fg": [ 4391, 4390 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 4393, 4395, 4394, 4392 ] }, - { "bg": 3390, "id": "unconnected", "fg": 4400 } + { "id": "center", "bg": 3428, "fg": [ { "weight": 1, "sprite": 4422 }, { "weight": 1, "sprite": 4423 } ] }, + { "id": "corner", "bg": 3428, "fg": [ 4425, 4427, 4426, 4424 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 4435, 4437, 4436, 4434 ] }, + { "id": "edge", "bg": 3428, "fg": [ 4429, 4428 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 4431, 4433, 4432, 4430 ] }, + { "bg": 3428, "id": "unconnected", "fg": 4438 } ] }, { "id": [ "t_water_moving_dp_season_summer", "t_swater_moving_dp_season_summer" ], "multitile": true, - "fg": 4400, - "bg": 3400, + "fg": 4438, + "bg": 3438, "additional_tiles": [ - { "id": "center", "bg": 3400, "fg": [ { "weight": 1, "sprite": 4384 }, { "weight": 1, "sprite": 4385 } ] }, - { "id": "corner", "bg": 3400, "fg": [ 4387, 4389, 4388, 4386 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 4397, 4399, 4398, 4396 ] }, - { "id": "edge", "bg": 3400, "fg": [ 4391, 4390 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 4393, 4395, 4394, 4392 ] }, - { "bg": 3400, "id": "unconnected", "fg": 4400 } + { "id": "center", "bg": 3438, "fg": [ { "weight": 1, "sprite": 4422 }, { "weight": 1, "sprite": 4423 } ] }, + { "id": "corner", "bg": 3438, "fg": [ 4425, 4427, 4426, 4424 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 4435, 4437, 4436, 4434 ] }, + { "id": "edge", "bg": 3438, "fg": [ 4429, 4428 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 4431, 4433, 4432, 4430 ] }, + { "bg": 3438, "id": "unconnected", "fg": 4438 } ] }, { "id": [ "t_water_moving_dp_season_autumn", "t_swater_moving_dp_season_autumn" ], "multitile": true, - "fg": 4400, - "bg": 3395, + "fg": 4438, + "bg": 3433, "additional_tiles": [ - { "id": "center", "bg": 3395, "fg": [ { "weight": 1, "sprite": 4384 }, { "weight": 1, "sprite": 4385 } ] }, - { "id": "corner", "bg": 3395, "fg": [ 4387, 4389, 4388, 4386 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 4397, 4399, 4398, 4396 ] }, - { "id": "edge", "bg": 3395, "fg": [ 4391, 4390 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 4393, 4395, 4394, 4392 ] }, - { "bg": 3395, "id": "unconnected", "fg": 4400 } + { "id": "center", "bg": 3433, "fg": [ { "weight": 1, "sprite": 4422 }, { "weight": 1, "sprite": 4423 } ] }, + { "id": "corner", "bg": 3433, "fg": [ 4425, 4427, 4426, 4424 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 4435, 4437, 4436, 4434 ] }, + { "id": "edge", "bg": 3433, "fg": [ 4429, 4428 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 4431, 4433, 4432, 4430 ] }, + { "bg": 3433, "id": "unconnected", "fg": 4438 } ] }, { "id": [ "t_water_moving_dp_season_winter", "t_swater_moving_dp_season_winter" ], "multitile": true, - "fg": 4400, - "bg": 2870, + "fg": 4438, + "bg": 2908, "additional_tiles": [ - { "id": "center", "bg": 2870, "fg": [ { "weight": 1, "sprite": 4384 }, { "weight": 1, "sprite": 4385 } ] }, - { "id": "corner", "bg": 2870, "fg": [ 4387, 4389, 4388, 4386 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 4397, 4399, 4398, 4396 ] }, - { "id": "edge", "bg": 2870, "fg": [ 4391, 4390 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 4393, 4395, 4394, 4392 ] }, - { "bg": 2870, "id": "unconnected", "fg": 4400 } + { "id": "center", "bg": 2908, "fg": [ { "weight": 1, "sprite": 4422 }, { "weight": 1, "sprite": 4423 } ] }, + { "id": "corner", "bg": 2908, "fg": [ 4425, 4427, 4426, 4424 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 4435, 4437, 4436, 4434 ] }, + { "id": "edge", "bg": 2908, "fg": [ 4429, 4428 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 4431, 4433, 4432, 4430 ] }, + { "bg": 2908, "id": "unconnected", "fg": 4438 } ] }, { "id": [ "t_water_moving_sh", "t_swater_moving_sh" ], "multitile": true, - "fg": 4419, - "bg": 3390, + "fg": 4457, + "bg": 3428, "additional_tiles": [ { "id": "center", - "bg": 3390, + "bg": 3428, "fg": [ - { "weight": 1, "sprite": 4401 }, - { "weight": 1, "sprite": 4402 }, - { "weight": 1, "sprite": 4403 }, - { "weight": 1, "sprite": 4404 } + { "weight": 1, "sprite": 4439 }, + { "weight": 1, "sprite": 4440 }, + { "weight": 1, "sprite": 4441 }, + { "weight": 1, "sprite": 4442 } ] }, - { "id": "corner", "bg": 3390, "fg": [ 4406, 4408, 4407, 4405 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 4416, 4418, 4417, 4415 ] }, - { "id": "edge", "bg": 3390, "fg": [ 4410, 4409 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 4412, 4414, 4413, 4411 ] }, - { "bg": 3390, "id": "unconnected", "fg": 4419 } + { "id": "corner", "bg": 3428, "fg": [ 4444, 4446, 4445, 4443 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 4454, 4456, 4455, 4453 ] }, + { "id": "edge", "bg": 3428, "fg": [ 4448, 4447 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 4450, 4452, 4451, 4449 ] }, + { "bg": 3428, "id": "unconnected", "fg": 4457 } ] }, { "id": [ "t_water_moving_sh_season_summer", "t_swater_moving_sh_season_summer" ], "multitile": true, - "fg": 4419, - "bg": 3400, + "fg": 4457, + "bg": 3438, "additional_tiles": [ { "id": "center", - "bg": 3400, + "bg": 3438, "fg": [ - { "weight": 1, "sprite": 4401 }, - { "weight": 1, "sprite": 4402 }, - { "weight": 1, "sprite": 4403 }, - { "weight": 1, "sprite": 4404 } + { "weight": 1, "sprite": 4439 }, + { "weight": 1, "sprite": 4440 }, + { "weight": 1, "sprite": 4441 }, + { "weight": 1, "sprite": 4442 } ] }, - { "id": "corner", "bg": 3400, "fg": [ 4406, 4408, 4407, 4405 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 4416, 4418, 4417, 4415 ] }, - { "id": "edge", "bg": 3400, "fg": [ 4410, 4409 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 4412, 4414, 4413, 4411 ] }, - { "bg": 3400, "id": "unconnected", "fg": 4419 } + { "id": "corner", "bg": 3438, "fg": [ 4444, 4446, 4445, 4443 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 4454, 4456, 4455, 4453 ] }, + { "id": "edge", "bg": 3438, "fg": [ 4448, 4447 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 4450, 4452, 4451, 4449 ] }, + { "bg": 3438, "id": "unconnected", "fg": 4457 } ] }, { "id": [ "t_water_moving_sh_season_autumn", "t_swater_moving_sh_season_autumn" ], "multitile": true, - "fg": 4419, - "bg": 3395, + "fg": 4457, + "bg": 3433, "additional_tiles": [ { "id": "center", - "bg": 3395, + "bg": 3433, "fg": [ - { "weight": 1, "sprite": 4401 }, - { "weight": 1, "sprite": 4402 }, - { "weight": 1, "sprite": 4403 }, - { "weight": 1, "sprite": 4404 } + { "weight": 1, "sprite": 4439 }, + { "weight": 1, "sprite": 4440 }, + { "weight": 1, "sprite": 4441 }, + { "weight": 1, "sprite": 4442 } ] }, - { "id": "corner", "bg": 3395, "fg": [ 4406, 4408, 4407, 4405 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 4416, 4418, 4417, 4415 ] }, - { "id": "edge", "bg": 3395, "fg": [ 4410, 4409 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 4412, 4414, 4413, 4411 ] }, - { "bg": 3395, "id": "unconnected", "fg": 4419 } + { "id": "corner", "bg": 3433, "fg": [ 4444, 4446, 4445, 4443 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 4454, 4456, 4455, 4453 ] }, + { "id": "edge", "bg": 3433, "fg": [ 4448, 4447 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 4450, 4452, 4451, 4449 ] }, + { "bg": 3433, "id": "unconnected", "fg": 4457 } ] }, { "id": [ "t_water_moving_sh_season_winter", "t_swater_moving_sh_season_winter" ], "multitile": true, - "fg": 4419, - "bg": 2870, + "fg": 4457, + "bg": 2908, "additional_tiles": [ { "id": "center", - "bg": 2870, + "bg": 2908, "fg": [ - { "weight": 1, "sprite": 4401 }, - { "weight": 1, "sprite": 4402 }, - { "weight": 1, "sprite": 4403 }, - { "weight": 1, "sprite": 4404 } + { "weight": 1, "sprite": 4439 }, + { "weight": 1, "sprite": 4440 }, + { "weight": 1, "sprite": 4441 }, + { "weight": 1, "sprite": 4442 } ] }, - { "id": "corner", "bg": 2870, "fg": [ 4406, 4408, 4407, 4405 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 4416, 4418, 4417, 4415 ] }, - { "id": "edge", "bg": 2870, "fg": [ 4410, 4409 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 4412, 4414, 4413, 4411 ] }, - { "bg": 2870, "id": "unconnected", "fg": 4419 } + { "id": "corner", "bg": 2908, "fg": [ 4444, 4446, 4445, 4443 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 4454, 4456, 4455, 4453 ] }, + { "id": "edge", "bg": 2908, "fg": [ 4448, 4447 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 4450, 4452, 4451, 4449 ] }, + { "bg": 2908, "id": "unconnected", "fg": 4457 } ] }, { "id": [ "t_water_pool", "t_water_pool_shallow" ], "multitile": true, - "fg": 4434, + "fg": 4472, "additional_tiles": [ { "id": "center", - "fg": [ { "weight": 1, "sprite": 4435 }, { "weight": 1, "sprite": 4436 }, { "weight": 1, "sprite": 4437 } ] + "fg": [ { "weight": 1, "sprite": 4473 }, { "weight": 1, "sprite": 4474 }, { "weight": 1, "sprite": 4475 } ] }, - { "id": "corner", "fg": [ 4421, 4423, 4422, 4420 ] }, - { "id": "t_connection", "fg": [ 4431, 4433, 4432, 4430 ] }, - { "id": "edge", "fg": [ 4425, 4424 ] }, - { "id": "end_piece", "fg": [ 4427, 4429, 4428, 4426 ] }, - { "id": "unconnected", "fg": [ 4434, 4434 ] } + { "id": "corner", "fg": [ 4459, 4461, 4460, 4458 ] }, + { "id": "t_connection", "fg": [ 4469, 4471, 4470, 4468 ] }, + { "id": "edge", "fg": [ 4463, 4462 ] }, + { "id": "end_piece", "fg": [ 4465, 4467, 4466, 4464 ] }, + { "id": "unconnected", "fg": [ 4472, 4472 ] } ] }, { "id": [ "t_water_sh", "t_swater_sh" ], "multitile": true, - "fg": 4453, - "bg": 3390, + "fg": 4491, + "bg": 3428, "additional_tiles": [ { "id": "center", - "bg": 3390, + "bg": 3428, "fg": [ - { "weight": 1, "sprite": 4435 }, - { "weight": 1, "sprite": 4436 }, - { "weight": 1, "sprite": 4437 }, - { "weight": 1, "sprite": 4438 } + { "weight": 1, "sprite": 4473 }, + { "weight": 1, "sprite": 4474 }, + { "weight": 1, "sprite": 4475 }, + { "weight": 1, "sprite": 4476 } ] }, - { "id": "corner", "bg": 3390, "fg": [ 4440, 4442, 4441, 4439 ] }, - { "id": "t_connection", "bg": 3390, "fg": [ 4450, 4452, 4451, 4449 ] }, - { "id": "edge", "bg": 3390, "fg": [ 4444, 4443 ] }, - { "id": "end_piece", "bg": 3390, "fg": [ 4446, 4448, 4447, 4445 ] }, - { "bg": 3390, "id": "unconnected", "fg": 4453 } + { "id": "corner", "bg": 3428, "fg": [ 4478, 4480, 4479, 4477 ] }, + { "id": "t_connection", "bg": 3428, "fg": [ 4488, 4490, 4489, 4487 ] }, + { "id": "edge", "bg": 3428, "fg": [ 4482, 4481 ] }, + { "id": "end_piece", "bg": 3428, "fg": [ 4484, 4486, 4485, 4483 ] }, + { "bg": 3428, "id": "unconnected", "fg": 4491 } ] }, { "id": [ "t_water_sh_season_summer", "t_swater_sh_season_summer" ], "multitile": true, - "fg": 4453, - "bg": 3400, + "fg": 4491, + "bg": 3438, "additional_tiles": [ { "id": "center", - "bg": 3400, - "fg": [ { "weight": 1, "sprite": 4435 }, { "weight": 1, "sprite": 4436 }, { "weight": 1, "sprite": 4437 } ] + "bg": 3438, + "fg": [ { "weight": 1, "sprite": 4473 }, { "weight": 1, "sprite": 4474 }, { "weight": 1, "sprite": 4475 } ] }, - { "id": "corner", "bg": 3400, "fg": [ 4440, 4442, 4441, 4439 ] }, - { "id": "t_connection", "bg": 3400, "fg": [ 4450, 4452, 4451, 4449 ] }, - { "id": "edge", "bg": 3400, "fg": [ 4444, 4443 ] }, - { "id": "end_piece", "bg": 3400, "fg": [ 4446, 4448, 4447, 4445 ] }, - { "bg": 3400, "id": "unconnected", "fg": 4453 } + { "id": "corner", "bg": 3438, "fg": [ 4478, 4480, 4479, 4477 ] }, + { "id": "t_connection", "bg": 3438, "fg": [ 4488, 4490, 4489, 4487 ] }, + { "id": "edge", "bg": 3438, "fg": [ 4482, 4481 ] }, + { "id": "end_piece", "bg": 3438, "fg": [ 4484, 4486, 4485, 4483 ] }, + { "bg": 3438, "id": "unconnected", "fg": 4491 } ] }, { "id": [ "t_water_sh_season_autumn", "t_swater_sh_season_autumn" ], "multitile": true, - "fg": 4453, - "bg": 3395, + "fg": 4491, + "bg": 3433, "additional_tiles": [ { "id": "center", - "bg": 3395, - "fg": [ { "weight": 1, "sprite": 4435 }, { "weight": 1, "sprite": 4436 }, { "weight": 1, "sprite": 4437 } ] + "bg": 3433, + "fg": [ { "weight": 1, "sprite": 4473 }, { "weight": 1, "sprite": 4474 }, { "weight": 1, "sprite": 4475 } ] }, - { "id": "corner", "bg": 3395, "fg": [ 4440, 4442, 4441, 4439 ] }, - { "id": "t_connection", "bg": 3395, "fg": [ 4450, 4452, 4451, 4449 ] }, - { "id": "edge", "bg": 3395, "fg": [ 4444, 4443 ] }, - { "id": "end_piece", "bg": 3395, "fg": [ 4446, 4448, 4447, 4445 ] }, - { "bg": 3395, "id": "unconnected", "fg": 4453 } + { "id": "corner", "bg": 3433, "fg": [ 4478, 4480, 4479, 4477 ] }, + { "id": "t_connection", "bg": 3433, "fg": [ 4488, 4490, 4489, 4487 ] }, + { "id": "edge", "bg": 3433, "fg": [ 4482, 4481 ] }, + { "id": "end_piece", "bg": 3433, "fg": [ 4484, 4486, 4485, 4483 ] }, + { "bg": 3433, "id": "unconnected", "fg": 4491 } ] }, { "id": [ "t_water_sh_season_winter", "t_swater_sh_season_winter" ], "multitile": true, - "fg": 4453, - "bg": 2870, + "fg": 4491, + "bg": 2908, "additional_tiles": [ { "id": "center", - "bg": 2870, - "fg": [ { "weight": 1, "sprite": 4435 }, { "weight": 1, "sprite": 4436 }, { "weight": 1, "sprite": 4437 } ] + "bg": 2908, + "fg": [ { "weight": 1, "sprite": 4473 }, { "weight": 1, "sprite": 4474 }, { "weight": 1, "sprite": 4475 } ] }, - { "id": "corner", "bg": 2870, "fg": [ 4440, 4442, 4441, 4439 ] }, - { "id": "t_connection", "bg": 2870, "fg": [ 4450, 4452, 4451, 4449 ] }, - { "id": "edge", "bg": 2870, "fg": [ 4444, 4443 ] }, - { "id": "end_piece", "bg": 2870, "fg": [ 4446, 4448, 4447, 4445 ] }, - { "bg": 2870, "id": "unconnected", "fg": 4453 } + { "id": "corner", "bg": 2908, "fg": [ 4478, 4480, 4479, 4477 ] }, + { "id": "t_connection", "bg": 2908, "fg": [ 4488, 4490, 4489, 4487 ] }, + { "id": "edge", "bg": 2908, "fg": [ 4482, 4481 ] }, + { "id": "end_piece", "bg": 2908, "fg": [ 4484, 4486, 4485, 4483 ] }, + { "bg": 2908, "id": "unconnected", "fg": 4491 } ] }, - { "id": [ "t_window", "t_window_alarm" ], "fg": 4454 }, - { "id": "t_window_empty", "fg": 4457 }, - { "id": "t_window_domestic", "fg": 4455 }, - { "id": "t_window_open", "fg": 4461 }, - { "id": "t_window_no_curtains", "fg": 4458 }, - { "id": "t_window_no_curtains_open", "fg": 4459 }, - { "id": "t_woodchips", "fg": 4463 }, - { "id": "t_woodchips_season_winter", "fg": 2870 }, + { "id": [ "t_window", "t_window_alarm" ], "fg": 4492 }, + { "id": "t_window_empty", "fg": 4495 }, + { "id": "t_window_domestic", "fg": 4493 }, + { "id": "t_window_open", "fg": 4499 }, + { "id": "t_window_no_curtains", "fg": 4496 }, + { "id": "t_window_no_curtains_open", "fg": 4497 }, + { "id": "t_woodchips", "fg": 4501 }, + { "id": "t_woodchips_season_winter", "fg": 2908 }, { "id": [ "tr_downspout_funnel", "tr_pit", "tr_lava", "tr_ledge", "tr_glass_pit", "tr_spike_pit" ], "fg": 1104 }, - { "id": "tr_goo", "fg": [ { "weight": 2007, "sprite": 4468 }, { "weight": 1, "sprite": 4469 } ] }, - { "id": "tr_nailboard", "fg": 4464, "bg": 2082 }, - { "id": "tr_portal", "fg": 4472 }, - { "id": "tr_tripwire", "fg": 4474 }, + { "id": "tr_caltrops", "fg": 4502, "bg": 4504 }, + { "id": "tr_caltrops_glass", "fg": 4502, "bg": 4505 }, + { "id": "tr_telepad", "fg": 4502, "bg": 4506 }, + { "id": "tr_beartrap", "fg": 4502, "bg": 4507 }, + { "id": "tr_goo", "fg": [ { "weight": 2007, "sprite": 4508 }, { "weight": 1, "sprite": 4509 } ] }, + { "id": "tr_landmine", "fg": 4502, "bg": 4510 }, + { "id": "tr_landmine_buried", "fg": 4502, "bg": 4511 }, + { "id": "tr_nailboard", "fg": 4502, "bg": 4512 }, + { "id": "tr_portal", "fg": 4513 }, + { "id": "tr_tripwire", "fg": 4502, "bg": 4515 }, { "id": [ "vp_forklift_fork" ], - "fg": [ 4477, 4479, 4478, 4476 ], + "fg": [ 4518, 4520, 4519, 4517 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4477, 4479, 4478, 4476 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4518, 4520, 4519, 4517 ] } ] }, { "id": [ "vp_forklift_fork_horizontal_front" ], - "fg": [ 4478, 4476, 4477, 4479 ], + "fg": [ 4519, 4517, 4518, 4520 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4478, 4476, 4477, 4479 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4519, 4517, 4518, 4520 ] } ] }, { "id": "vp_saddle_motor", - "fg": [ 4481, 4483, 4482, 4480 ], + "fg": [ 4522, 4524, 4523, 4521 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4481, 4483, 4482, 4480 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4522, 4524, 4523, 4521 ] } ] }, { "id": [ "vp_wheel_motorbike", "vp_wheel_motorbike_steerable", "vp_wheel_motorbike_or", "vp_wheel_motorbike_or_steerable" ], - "fg": [ 4489, 4491, 4490, 4488 ], + "fg": [ 4530, 4532, 4531, 4529 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4489, 4491, 4490, 4488 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4530, 4532, 4531, 4529 ] } ] }, { "id": [ "vp_wheel_motorbike_rear", "vp_wheel_motorbike_or_rear" ], - "fg": [ 4485, 4487, 4486, 4484 ], + "fg": [ 4526, 4528, 4527, 4525 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4485, 4487, 4486, 4484 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4526, 4528, 4527, 4525 ] } ] }, { "id": [ "vp_wheel_small_scooter", "vp_wheel_small_scooter_steerable" ], - "fg": [ 4497, 4499, 4498, 4496 ], + "fg": [ 4538, 4540, 4539, 4537 ], "rotates": true }, - { "id": "vp_wheel_small_scooter_rear", "fg": [ 4493, 4495, 4494, 4492 ], "rotates": true }, + { "id": "vp_wheel_small_scooter_rear", "fg": [ 4534, 4536, 4535, 4533 ], "rotates": true }, { "id": "vp_battery_charger", - "fg": [ 4500, 4500, 4500, 4500 ], - "bg": 8025, + "fg": [ 4541, 4541, 4541, 4541 ], + "bg": 8057, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4500, 4500, 4500, 4500 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4541, 4541, 4541, 4541 ] } ] }, { "id": "vp_recharge_station", - "fg": [ 4501, 4501, 4501, 4501 ], - "bg": 8025, + "fg": [ 4542, 4542, 4542, 4542 ], + "bg": 8057, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4501, 4501, 4501, 4501 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4542, 4542, 4542, 4542 ] } ] }, { "id": "vp_spike_wood", - "fg": 4502, + "fg": 4543, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 4502 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 4543 } ] }, { "id": "fd_dazzling", "fg": 1105 }, { "id": "fd_fatigue", "fg": 1106 }, @@ -6651,303 +6689,303 @@ { "id": "rock_quern", "fg": 1765 }, { "id": "saxophone", "fg": 1766 }, { "id": "sheet", "fg": 1767 }, - { "id": "steel_plate", "fg": 1768 }, - { "id": "telepad", "fg": 1769 }, - { "id": "trumpet", "fg": 1770 }, - { "id": "tuba", "fg": 1771 }, - { "id": "tunic", "fg": 1772 }, - { "id": "tunic_rag", "fg": 1773 }, - { "id": "umbrella", "fg": 1774 }, - { "id": "wheel_armor", "fg": 1775 }, - { "id": "wheel_wide", "fg": 1776 }, - { "id": "wheel_wide_or", "fg": 1777 }, - { "id": "10mm_fmj", "fg": 1778 }, - { "id": "120mm_HEAT", "fg": 1779 }, - { "id": "123ln", "fg": 1780 }, - { "id": "12mm", "fg": 1781 }, - { "id": "20x66_beanbag", "fg": 1782 }, - { "id": "20x66_flare", "fg": 1783 }, - { "id": "20x66_flechette", "fg": 1784 }, - { "id": "20x66_frag", "fg": 1785 }, - { "id": "20x66_inc", "fg": 1786 }, - { "id": "20x66_shot", "fg": 1787 }, - { "id": "20x66_slug", "fg": 1788 }, - { "id": "223", "fg": 1789 }, - { "id": "22_cb", "fg": 1790 }, - { "id": "22_fmj", "fg": 1791 }, - { "id": "22_lr", "fg": 1792 }, - { "id": "22_ratshot", "fg": 1793 }, - { "id": "270win_jsp", "fg": 1794 }, - { "id": "3006", "fg": 1795 }, - { "id": "3006_incendiary", "fg": 1796 }, - { "id": "3006fmj", "fg": 1797 }, - { "id": "300_winmag", "fg": 1798 }, - { "id": "300blk", "fg": 1799 }, - { "id": "300blk_ss", "fg": 1800 }, - { "id": "308", "fg": 1801 }, - { "id": "32_acp", "fg": 1802 }, - { "id": "357mag_fmj", "fg": 1803 }, - { "id": "357mag_jhp", "fg": 1804 }, - { "id": "357sig_fmj", "fg": 1805 }, - { "id": "357sig_jhp", "fg": 1806 }, - { "id": "380_FMJ", "fg": 1807 }, - { "id": "380_JHP", "fg": 1808 }, - { "id": "380_p", "fg": 1809 }, - { "id": "38_fmj", "fg": 1810 }, - { "id": "38_special", "fg": 1811 }, - { "id": "38_super", "fg": 1812 }, - { "id": "38super_fmj", "fg": 1813 }, - { "id": "40fmj", "fg": 1814 }, - { "id": "40mm_flashbang", "fg": 1815 }, - { "id": "40mm_incendiary", "fg": 1816 }, - { "id": "40mm_slug", "fg": 1817 }, - { "id": "40sw", "fg": 1818 }, - { "id": "40x46mm_grenade", "fg": 1819 }, - { "id": "40x46mm_m1006", "fg": 1820 }, - { "id": "40x46mm_m433", "fg": 1821 }, - { "id": "40x46mm_m576", "fg": 1822 }, - { "id": "40x46mm_m651", "fg": 1823 }, - { "id": "40x53mm_buckshot_m169", "fg": 1824 }, - { "id": "40x53mm_flechette_m169", "fg": 1825 }, - { "id": "40x53mm_grenade", "fg": 1826 }, - { "id": "40x53mm_m1001", "fg": 1827 }, - { "id": "40x53mm_m430a1", "fg": 1828 }, - { "id": "40x53mm_slug_m169", "fg": 1829 }, - { "id": "410shot_000", "fg": 1830 }, - { "id": "44fmj", "fg": 1831 }, - { "id": "44magnum", "fg": 1832 }, - { "id": "454_Casull", "fg": 1833 }, - { "id": "4570_low", "fg": 1834 }, - { "id": "4570_pen", "fg": 1835 }, - { "id": "4570_sp", "fg": 1836 }, - { "id": "45_acp", "fg": 1837 }, - { "id": "45_jhp", "fg": 1838 }, - { "id": "45_super", "fg": 1839 }, - { "id": "45colt_jhp", "fg": 1840 }, - { "id": "460_fmj", "fg": 1841 }, - { "id": "460_rowland", "fg": 1842 }, - { "id": "46mm", "fg": 1843 }, - { "id": "500_Magnum", "fg": 1844 }, - { "id": "50_incendiary", "fg": 1845 }, - { "id": "50_mk211", "fg": 1846 }, - { "id": "50bmg", "fg": 1847 }, - { "id": "50match", "fg": 1848 }, - { "id": "50ss", "fg": 1849 }, - { "id": "545", "fg": 1850 }, - { "id": "545_ap", "fg": 1851 }, - { "id": "556", "fg": 1852 }, - { "id": "556_incendiary", "fg": 1853 }, - { "id": "57mm", "fg": 1854 }, - { "id": "5x50dart", "fg": 1855 }, - { "id": "5x50heavy", "fg": 1856 }, - { "id": "66mm_HEAT", "fg": 1857 }, - { "id": "700nx", "fg": 1858 }, - { "id": "762_25", "fg": 1859 }, - { "id": "762_25hot", "fg": 1860 }, - { "id": "762_25typeP", "fg": 1861 }, - { "id": "762_51", "fg": 1862 }, - { "id": "762_51_incendiary", "fg": 1863 }, - { "id": "762_54R", "fg": 1864 }, - { "id": "762_m43", "fg": 1865 }, - { "id": "762_m87", "fg": 1866 }, - { "id": "84x246mm_he", "fg": 1867 }, - { "id": "84x246mm_hedp", "fg": 1868 }, - { "id": "84x246mm_smoke", "fg": 1869 }, - { "id": "8mm_bootleg", "fg": 1870 }, - { "id": "8mm_caseless", "fg": 1871 }, - { "id": "8mm_civilian", "fg": 1872 }, - { "id": "8mm_fmj", "fg": 1873 }, - { "id": "8mm_hvp", "fg": 1874 }, - { "id": "8mm_inc", "fg": 1875 }, - { "id": "8mm_jhp", "fg": 1876 }, - { "id": "9mm", "fg": 1877 }, - { "id": "9mmP", "fg": 1878 }, - { "id": "9mmfmj", "fg": 1879 }, - { "id": "9x18mm", "fg": 1880 }, - { "id": "9x18mmP2", "fg": 1881 }, - { "id": "9x18mmfmj", "fg": 1882 }, - { "id": "RPG-7_ammo", "fg": 1883 }, - { "id": "RPG-7_og7v", "fg": 1884 }, - { "id": "RPG-7_pg7vr", "fg": 1885 }, - { "id": "RPG-7_tbg7v", "fg": 1886 }, - { "id": "atgm_heat", "fg": 1887 }, - { "id": "m235tpa", "fg": 1888 }, - { "id": "shot_00", "fg": 1889 }, - { "id": "shot_beanbag", "fg": 1890 }, - { "id": "shot_bird", "fg": 1891 }, - { "id": "shot_dragon", "fg": 1892 }, - { "id": "shot_flechette", "fg": 1893 }, - { "id": "shot_he", "fg": 1894 }, - { "id": "shot_scrap", "fg": 1895 }, - { "id": "shot_slug", "fg": 1896 }, - { "id": "1895sbl", "fg": 1917 }, - { "id": "AT4", "fg": 1918 }, - { "id": "LAW", "fg": 1919 }, - { "id": "M24", "fg": 1920 }, - { "id": "RPG", "fg": 1921 }, - { "id": "USAS_12", "fg": 1922 }, - { "id": "airspeargun", "fg": 1923 }, - { "id": "ak74", "fg": 1925 }, - { "id": "american_180", "fg": 1926 }, - { "id": "an94", "fg": 1927 }, - { "id": "ar10", "fg": 1928 }, - { "id": "ar15", "fg": 1929 }, - { "id": "arx160", "fg": 1930 }, - { "id": "as50", "fg": 1931 }, - { "id": "atgm_launcher", "fg": 1932 }, - { "id": "bbgun", "fg": 1933 }, - { "id": "bfg50", "fg": 1934 }, - { "id": "bh_m89", "fg": 1935 }, - { "id": "blunderbuss", "fg": 1936 }, - { "id": "browning_blr", "fg": 1937 }, - { "id": "chemical_thrower", "fg": 1939 }, - { "id": "coilgun", "fg": 1940 }, - { "id": "colt_lightning", "fg": 1941 }, - { "id": "colt_ro635", "fg": 1942 }, - { "id": "combination_gun", "fg": 1943 }, - { "id": "cx4", "fg": 1944 }, - { "id": "doublespeargun", "fg": 1945 }, - { "id": "emp_gun", "fg": 1946 }, - { "id": "famas", "fg": 1947 }, - { "id": "flamethrower", "fg": 1948 }, - { "id": "fn_fal", "fg": 1949 }, - { "id": "fs2000", "fg": 1950 }, - { "id": "ftk93", "fg": 1951 }, - { "id": "garand", "fg": 1952 }, - { "id": "heavy_rail_rifle", "fg": 1953 }, - { "id": "helsing", "fg": 1954 }, - { "id": "henry_big_boy", "fg": 1955 }, - { "id": "hk417_13", "fg": 1956 }, - { "id": "hk_g3", "fg": 1957 }, - { "id": "hk_g36", "fg": 1958 }, - { "id": "hk_g80", "fg": 1959 }, - { "id": "hk_mp5k", "fg": 1960 }, - { "id": "hk_mp5sd", "fg": 1961 }, - { "id": "iwi_tavor_x95_300blk", "fg": 1962 }, - { "id": "ksg-25", "fg": 1963 }, - { "id": "ksg", "fg": 1964 }, - { "id": "ksub2000", "fg": 1965 }, - { "id": "laser_cannon", "fg": 1966 }, - { "id": "laser_rifle", "fg": 1967 }, - { "id": "lever_shotgun", "fg": 1968 }, - { "id": "longrifle_flintlock", "fg": 1969 }, - { "id": "m107a1", "fg": 1970 }, - { "id": "m110a1", "fg": 1971 }, - { "id": "m134", "fg": 1972 }, - { "id": "m14ebr", "fg": 1973 }, - { "id": "m1903", "fg": 1976 }, - { "id": "m1918", "fg": 1977 }, - { "id": "m1a", "fg": 1978 }, - { "id": "m2010", "fg": 1979 }, - { "id": "m202_flash", "fg": 1980 }, - { "id": "m231pfw", "fg": 1981 }, - { "id": "m240", "fg": 1982 }, - { "id": "m27_assault_rifle_var_h&k416a5", "fg": 1984 }, - { "id": "m27_assault_rifle_var_m27iar", "fg": 1985 }, - { "id": "m27_assault_rifle_var_m38dmr", "fg": 1986 }, - { "id": "m27_assault_rifle_var_scar_l", "fg": 1987 }, - { "id": "m2browning", "fg": 1988 }, - { "id": "m2browning_sawn", "fg": 1989 }, - { "id": "m3_carlgustav", "fg": 1990 }, - { "id": "m4_carbine_var_m4a1", "fg": 1991 }, - { "id": "m4_carlgustav", "fg": 1992 }, - { "id": "m79", "fg": 1994 }, - { "id": "mark19", "fg": 1995 }, - { "id": "marlin_9a", "fg": 1996 }, - { "id": "mininuke_launcher", "fg": 1997 }, - { "id": "mosin44", "fg": 1998 }, - { "id": "mosin44_ebr", "fg": 1999 }, - { "id": "mosin91_30", "fg": 2000 }, - { "id": "mosin91_30_ebr", "fg": 2001 }, - { "id": "mossberg_500", "fg": 2002 }, - { "id": "mossberg_500_var_mossberg_500_security", "fg": 2003 }, - { "id": "mossberg_590", "fg": 2004 }, - { "id": "mossberg_590_var_SPAS_12", "fg": 2005 }, - { "id": "mossberg_930", "fg": 2006 }, - { "id": "mossberg_930_var_m1014", "fg": 2007 }, - { "id": "mp18", "fg": 2008 }, - { "id": "needlegun", "fg": 2010 }, - { "id": "pamd68", "fg": 2011 }, - { "id": "pamd71z", "fg": 2012 }, - { "id": "pipe_combination_gun", "fg": 2013 }, - { "id": "plasma_gun", "fg": 2014 }, - { "id": "plasma_rifle", "fg": 2015 }, - { "id": "ppsh", "fg": 2016 }, - { "id": "rebar_rifle", "fg": 2017 }, - { "id": "remington700_270", "fg": 2018 }, - { "id": "remington_700", "fg": 2019 }, - { "id": "remington_870", "fg": 2020 }, - { "id": "remington_870_breacher", "fg": 2021 }, - { "id": "remington_870_express", "fg": 2022 }, - { "id": "remington_870_var_browning_a5", "fg": 2023 }, - { "id": "remington_870_var_remington_1100", "fg": 2024 }, - { "id": "rifle_flintlock", "fg": 2025 }, - { "id": "rm120c", "fg": 2026 }, - { "id": "rm20", "fg": 2027 }, - { "id": "rm298", "fg": 2028 }, - { "id": "rm451_flamethrower", "fg": 2029 }, - { "id": "rm51_assault_rifle", "fg": 2030 }, - { "id": "rm614_lmg", "fg": 2031 }, - { "id": "rm802", "fg": 2032 }, - { "id": "rm88_battle_rifle", "fg": 2033 }, - { "id": "ruger_1022", "fg": 2034 }, - { "id": "ruger_mini", "fg": 2035 }, - { "id": "saiga_12", "fg": 2036 }, - { "id": "saiga_410", "fg": 2037 }, - { "id": "savage_111f", "fg": 2038 }, - { "id": "scar_h", "fg": 2039 }, - { "id": "sharps", "fg": 2040 }, - { "id": "shotgun_410", "fg": 2041 }, - { "id": "shotgun_d", "fg": 2042 }, - { "id": "shotgun_s", "fg": 2043 }, - { "id": "sig552", "fg": 2044 }, - { "id": "sig_mcx_rattler_sbr", "fg": 2045 }, - { "id": "skorpion_82", "fg": 2046 }, - { "id": "sks", "fg": 2047 }, - { "id": "smg_9mm", "fg": 2049 }, - { "id": "speargun", "fg": 2050 }, - { "id": "sten", "fg": 2051 }, - { "id": "steyr_aug", "fg": 2052 }, - { "id": "surv_rocket_launcher", "fg": 2053 }, - { "id": "survivor_special_700", "fg": 2054 }, - { "id": "tac50", "fg": 2055 }, - { "id": "tavor_12", "fg": 2056 }, - { "id": "tihar", "fg": 2057 }, - { "id": "tommygun", "fg": 2058 }, - { "id": "trex_gun", "fg": 2059 }, - { "id": "weatherby_5", "fg": 2060 }, - { "id": "win70", "fg": 2061 }, - { "id": "winchester_1887", "fg": 2062 }, - { "id": "winchester_1897", "fg": 2063 }, - { "id": "iceaxe", "fg": 2066 }, - { "id": "rifle_case_soft", "fg": 2071 }, - { "id": "rifle_case_soft_2", "fg": 2072 }, - { "id": "rifle_case_soft_leather_2", "fg": 2074 }, - { "id": "rucksack", "fg": 2075 }, - { "id": "compgreatbow", "fg": 2084 }, - { "id": "compositebow", "fg": 2085 }, - { "id": "hybridbow", "fg": 2086 }, - { "id": "longbow", "fg": 2087 }, - { "id": "recurbow", "fg": 2088 }, - { "id": "reflexbow", "fg": 2089 }, - { "id": "reflexrecurvebow", "fg": 2090 }, - { "id": "selfbow", "fg": 2091 }, - { "id": "shortbow", "fg": 2092 }, - { "id": "woodgreatbow", "fg": 2093 }, - { "id": "oxygen_cylinder", "fg": 2098 }, - { "id": "oxygen_tank", "fg": 2099 }, - { "id": "tinyweldtank", "fg": 2100 }, - { "id": "weldtank", "fg": 2101 }, - { "id": "cot", "fg": 2102 }, - { "id": "armguard_soft", "fg": 2103 }, - { "id": "chestwrap_leather", "fg": 2104 }, - { "id": "trenchcoat_leather", "fg": 2105 }, - { "id": "bat_nerf", "fg": 2106 }, - { "id": "golf_bag", "fg": 2107 }, - { "id": "polycarbonate_sheet", "fg": 2108 }, - { "id": "screen_mesh", "fg": 2109 }, - { "id": "bagpipes", "fg": 2110 }, - { "id": "caltrops", "fg": 2111 }, + { "id": "shotgun_trap", "fg": 1768 }, + { "id": "steel_plate", "fg": 1769 }, + { "id": "telepad", "fg": 1770 }, + { "id": "trumpet", "fg": 1771 }, + { "id": "tuba", "fg": 1772 }, + { "id": "tunic", "fg": 1773 }, + { "id": "tunic_rag", "fg": 1774 }, + { "id": "umbrella", "fg": 1775 }, + { "id": "wheel_armor", "fg": 1776 }, + { "id": "wheel_wide", "fg": 1777 }, + { "id": "wheel_wide_or", "fg": 1778 }, + { "id": "10mm_fmj", "fg": 1779 }, + { "id": "120mm_HEAT", "fg": 1780 }, + { "id": "123ln", "fg": 1781 }, + { "id": "12mm", "fg": 1782 }, + { "id": "20x66_beanbag", "fg": 1783 }, + { "id": "20x66_flare", "fg": 1784 }, + { "id": "20x66_flechette", "fg": 1785 }, + { "id": "20x66_frag", "fg": 1786 }, + { "id": "20x66_inc", "fg": 1787 }, + { "id": "20x66_shot", "fg": 1788 }, + { "id": "20x66_slug", "fg": 1789 }, + { "id": "223", "fg": 1790 }, + { "id": "22_cb", "fg": 1791 }, + { "id": "22_fmj", "fg": 1792 }, + { "id": "22_lr", "fg": 1793 }, + { "id": "22_ratshot", "fg": 1794 }, + { "id": "270win_jsp", "fg": 1795 }, + { "id": "3006", "fg": 1796 }, + { "id": "3006_incendiary", "fg": 1797 }, + { "id": "3006fmj", "fg": 1798 }, + { "id": "300_winmag", "fg": 1799 }, + { "id": "300blk", "fg": 1800 }, + { "id": "300blk_ss", "fg": 1801 }, + { "id": "308", "fg": 1802 }, + { "id": "32_acp", "fg": 1803 }, + { "id": "357mag_fmj", "fg": 1804 }, + { "id": "357mag_jhp", "fg": 1805 }, + { "id": "357sig_fmj", "fg": 1806 }, + { "id": "357sig_jhp", "fg": 1807 }, + { "id": "380_FMJ", "fg": 1808 }, + { "id": "380_JHP", "fg": 1809 }, + { "id": "380_p", "fg": 1810 }, + { "id": "38_fmj", "fg": 1811 }, + { "id": "38_special", "fg": 1812 }, + { "id": "38_super", "fg": 1813 }, + { "id": "38super_fmj", "fg": 1814 }, + { "id": "40fmj", "fg": 1815 }, + { "id": "40mm_flashbang", "fg": 1816 }, + { "id": "40mm_incendiary", "fg": 1817 }, + { "id": "40mm_slug", "fg": 1818 }, + { "id": "40sw", "fg": 1819 }, + { "id": "40x46mm_grenade", "fg": 1820 }, + { "id": "40x46mm_m1006", "fg": 1821 }, + { "id": "40x46mm_m433", "fg": 1822 }, + { "id": "40x46mm_m576", "fg": 1823 }, + { "id": "40x46mm_m651", "fg": 1824 }, + { "id": "40x53mm_buckshot_m169", "fg": 1825 }, + { "id": "40x53mm_flechette_m169", "fg": 1826 }, + { "id": "40x53mm_grenade", "fg": 1827 }, + { "id": "40x53mm_m1001", "fg": 1828 }, + { "id": "40x53mm_m430a1", "fg": 1829 }, + { "id": "40x53mm_slug_m169", "fg": 1830 }, + { "id": "410shot_000", "fg": 1831 }, + { "id": "44fmj", "fg": 1832 }, + { "id": "44magnum", "fg": 1833 }, + { "id": "454_Casull", "fg": 1834 }, + { "id": "4570_low", "fg": 1835 }, + { "id": "4570_pen", "fg": 1836 }, + { "id": "4570_sp", "fg": 1837 }, + { "id": "45_acp", "fg": 1838 }, + { "id": "45_jhp", "fg": 1839 }, + { "id": "45_super", "fg": 1840 }, + { "id": "45colt_jhp", "fg": 1841 }, + { "id": "460_fmj", "fg": 1842 }, + { "id": "460_rowland", "fg": 1843 }, + { "id": "46mm", "fg": 1844 }, + { "id": "500_Magnum", "fg": 1845 }, + { "id": "50_incendiary", "fg": 1846 }, + { "id": "50_mk211", "fg": 1847 }, + { "id": "50bmg", "fg": 1848 }, + { "id": "50match", "fg": 1849 }, + { "id": "50ss", "fg": 1850 }, + { "id": "545", "fg": 1851 }, + { "id": "545_ap", "fg": 1852 }, + { "id": "556", "fg": 1853 }, + { "id": "556_incendiary", "fg": 1854 }, + { "id": "57mm", "fg": 1855 }, + { "id": "5x50dart", "fg": 1856 }, + { "id": "5x50heavy", "fg": 1857 }, + { "id": "66mm_HEAT", "fg": 1858 }, + { "id": "700nx", "fg": 1859 }, + { "id": "762_25", "fg": 1860 }, + { "id": "762_25hot", "fg": 1861 }, + { "id": "762_25typeP", "fg": 1862 }, + { "id": "762_51", "fg": 1863 }, + { "id": "762_51_incendiary", "fg": 1864 }, + { "id": "762_54R", "fg": 1865 }, + { "id": "762_m43", "fg": 1866 }, + { "id": "762_m87", "fg": 1867 }, + { "id": "84x246mm_he", "fg": 1868 }, + { "id": "84x246mm_hedp", "fg": 1869 }, + { "id": "84x246mm_smoke", "fg": 1870 }, + { "id": "8mm_bootleg", "fg": 1871 }, + { "id": "8mm_caseless", "fg": 1872 }, + { "id": "8mm_civilian", "fg": 1873 }, + { "id": "8mm_fmj", "fg": 1874 }, + { "id": "8mm_hvp", "fg": 1875 }, + { "id": "8mm_inc", "fg": 1876 }, + { "id": "8mm_jhp", "fg": 1877 }, + { "id": "9mm", "fg": 1878 }, + { "id": "9mmP", "fg": 1879 }, + { "id": "9mmfmj", "fg": 1880 }, + { "id": "9x18mm", "fg": 1881 }, + { "id": "9x18mmP2", "fg": 1882 }, + { "id": "9x18mmfmj", "fg": 1883 }, + { "id": "RPG-7_ammo", "fg": 1884 }, + { "id": "RPG-7_og7v", "fg": 1885 }, + { "id": "RPG-7_pg7vr", "fg": 1886 }, + { "id": "RPG-7_tbg7v", "fg": 1887 }, + { "id": "atgm_heat", "fg": 1888 }, + { "id": "m235tpa", "fg": 1889 }, + { "id": "shot_00", "fg": 1890 }, + { "id": "shot_beanbag", "fg": 1891 }, + { "id": "shot_bird", "fg": 1892 }, + { "id": "shot_dragon", "fg": 1893 }, + { "id": "shot_flechette", "fg": 1894 }, + { "id": "shot_he", "fg": 1895 }, + { "id": "shot_scrap", "fg": 1896 }, + { "id": "shot_slug", "fg": 1897 }, + { "id": "1895sbl", "fg": 1918 }, + { "id": "AT4", "fg": 1919 }, + { "id": "LAW", "fg": 1920 }, + { "id": "M24", "fg": 1921 }, + { "id": "RPG", "fg": 1922 }, + { "id": "USAS_12", "fg": 1923 }, + { "id": "airspeargun", "fg": 1924 }, + { "id": "ak74", "fg": 1926 }, + { "id": "american_180", "fg": 1927 }, + { "id": "an94", "fg": 1928 }, + { "id": "ar10", "fg": 1929 }, + { "id": "ar15", "fg": 1930 }, + { "id": "arx160", "fg": 1931 }, + { "id": "as50", "fg": 1932 }, + { "id": "atgm_launcher", "fg": 1933 }, + { "id": "bbgun", "fg": 1934 }, + { "id": "bfg50", "fg": 1935 }, + { "id": "bh_m89", "fg": 1936 }, + { "id": "blunderbuss", "fg": 1937 }, + { "id": "browning_blr", "fg": 1938 }, + { "id": "chemical_thrower", "fg": 1940 }, + { "id": "coilgun", "fg": 1941 }, + { "id": "colt_lightning", "fg": 1942 }, + { "id": "colt_ro635", "fg": 1943 }, + { "id": "combination_gun", "fg": 1944 }, + { "id": "cx4", "fg": 1945 }, + { "id": "doublespeargun", "fg": 1946 }, + { "id": "emp_gun", "fg": 1947 }, + { "id": "famas", "fg": 1948 }, + { "id": "flamethrower", "fg": 1949 }, + { "id": "fn_fal", "fg": 1950 }, + { "id": "fs2000", "fg": 1951 }, + { "id": "ftk93", "fg": 1952 }, + { "id": "garand", "fg": 1953 }, + { "id": "heavy_rail_rifle", "fg": 1954 }, + { "id": "helsing", "fg": 1955 }, + { "id": "henry_big_boy", "fg": 1956 }, + { "id": "hk417_13", "fg": 1957 }, + { "id": "hk_g3", "fg": 1958 }, + { "id": "hk_g36", "fg": 1959 }, + { "id": "hk_g80", "fg": 1960 }, + { "id": "hk_mp5k", "fg": 1961 }, + { "id": "hk_mp5sd", "fg": 1962 }, + { "id": "iwi_tavor_x95_300blk", "fg": 1963 }, + { "id": "ksg-25", "fg": 1964 }, + { "id": "ksg", "fg": 1965 }, + { "id": "ksub2000", "fg": 1966 }, + { "id": "laser_cannon", "fg": 1967 }, + { "id": "laser_rifle", "fg": 1968 }, + { "id": "lever_shotgun", "fg": 1969 }, + { "id": "longrifle_flintlock", "fg": 1970 }, + { "id": "m107a1", "fg": 1971 }, + { "id": "m110a1", "fg": 1972 }, + { "id": "m134", "fg": 1973 }, + { "id": "m14ebr", "fg": 1974 }, + { "id": "m1903", "fg": 1977 }, + { "id": "m1918", "fg": 1978 }, + { "id": "m1a", "fg": 1979 }, + { "id": "m2010", "fg": 1980 }, + { "id": "m202_flash", "fg": 1981 }, + { "id": "m231pfw", "fg": 1982 }, + { "id": "m240", "fg": 1983 }, + { "id": "m27_assault_rifle_var_h&k416a5", "fg": 1985 }, + { "id": "m27_assault_rifle_var_m27iar", "fg": 1986 }, + { "id": "m27_assault_rifle_var_m38dmr", "fg": 1987 }, + { "id": "m27_assault_rifle_var_scar_l", "fg": 1988 }, + { "id": "m2browning", "fg": 1989 }, + { "id": "m2browning_sawn", "fg": 1990 }, + { "id": "m3_carlgustav", "fg": 1991 }, + { "id": "m4_carbine_var_m4a1", "fg": 1992 }, + { "id": "m4_carlgustav", "fg": 1993 }, + { "id": "m79", "fg": 1995 }, + { "id": "mark19", "fg": 1996 }, + { "id": "marlin_9a", "fg": 1997 }, + { "id": "mininuke_launcher", "fg": 1998 }, + { "id": "mosin44", "fg": 1999 }, + { "id": "mosin44_ebr", "fg": 2000 }, + { "id": "mosin91_30", "fg": 2001 }, + { "id": "mosin91_30_ebr", "fg": 2002 }, + { "id": "mossberg_500", "fg": 2003 }, + { "id": "mossberg_500_var_mossberg_500_security", "fg": 2004 }, + { "id": "mossberg_590", "fg": 2005 }, + { "id": "mossberg_590_var_SPAS_12", "fg": 2006 }, + { "id": "mossberg_930", "fg": 2007 }, + { "id": "mossberg_930_var_m1014", "fg": 2008 }, + { "id": "mp18", "fg": 2009 }, + { "id": "needlegun", "fg": 2011 }, + { "id": "pamd68", "fg": 2012 }, + { "id": "pamd71z", "fg": 2013 }, + { "id": "pipe_combination_gun", "fg": 2014 }, + { "id": "plasma_gun", "fg": 2015 }, + { "id": "plasma_rifle", "fg": 2016 }, + { "id": "ppsh", "fg": 2017 }, + { "id": "rebar_rifle", "fg": 2018 }, + { "id": "remington700_270", "fg": 2019 }, + { "id": "remington_700", "fg": 2020 }, + { "id": "remington_870", "fg": 2021 }, + { "id": "remington_870_breacher", "fg": 2022 }, + { "id": "remington_870_express", "fg": 2023 }, + { "id": "remington_870_var_browning_a5", "fg": 2024 }, + { "id": "remington_870_var_remington_1100", "fg": 2025 }, + { "id": "rifle_flintlock", "fg": 2026 }, + { "id": "rm120c", "fg": 2027 }, + { "id": "rm20", "fg": 2028 }, + { "id": "rm298", "fg": 2029 }, + { "id": "rm451_flamethrower", "fg": 2030 }, + { "id": "rm51_assault_rifle", "fg": 2031 }, + { "id": "rm614_lmg", "fg": 2032 }, + { "id": "rm802", "fg": 2033 }, + { "id": "rm88_battle_rifle", "fg": 2034 }, + { "id": "ruger_1022", "fg": 2035 }, + { "id": "ruger_mini", "fg": 2036 }, + { "id": "saiga_12", "fg": 2037 }, + { "id": "saiga_410", "fg": 2038 }, + { "id": "savage_111f", "fg": 2039 }, + { "id": "scar_h", "fg": 2040 }, + { "id": "sharps", "fg": 2041 }, + { "id": "shotgun_410", "fg": 2042 }, + { "id": "shotgun_d", "fg": 2043 }, + { "id": "shotgun_s", "fg": 2044 }, + { "id": "sig552", "fg": 2045 }, + { "id": "sig_mcx_rattler_sbr", "fg": 2046 }, + { "id": "skorpion_82", "fg": 2047 }, + { "id": "sks", "fg": 2048 }, + { "id": "smg_9mm", "fg": 2050 }, + { "id": "speargun", "fg": 2051 }, + { "id": "sten", "fg": 2052 }, + { "id": "steyr_aug", "fg": 2053 }, + { "id": "surv_rocket_launcher", "fg": 2054 }, + { "id": "survivor_special_700", "fg": 2055 }, + { "id": "tac50", "fg": 2056 }, + { "id": "tavor_12", "fg": 2057 }, + { "id": "tihar", "fg": 2058 }, + { "id": "tommygun", "fg": 2059 }, + { "id": "trex_gun", "fg": 2060 }, + { "id": "weatherby_5", "fg": 2061 }, + { "id": "win70", "fg": 2062 }, + { "id": "winchester_1887", "fg": 2063 }, + { "id": "winchester_1897", "fg": 2064 }, + { "id": "iceaxe", "fg": 2067 }, + { "id": "rifle_case_soft", "fg": 2072 }, + { "id": "rifle_case_soft_2", "fg": 2073 }, + { "id": "rifle_case_soft_leather_2", "fg": 2075 }, + { "id": "rucksack", "fg": 2076 }, + { "id": "compgreatbow", "fg": 2085 }, + { "id": "compositebow", "fg": 2086 }, + { "id": "hybridbow", "fg": 2087 }, + { "id": "longbow", "fg": 2088 }, + { "id": "recurbow", "fg": 2089 }, + { "id": "reflexbow", "fg": 2090 }, + { "id": "reflexrecurvebow", "fg": 2091 }, + { "id": "selfbow", "fg": 2092 }, + { "id": "shortbow", "fg": 2093 }, + { "id": "woodgreatbow", "fg": 2094 }, + { "id": "oxygen_cylinder", "fg": 2099 }, + { "id": "oxygen_tank", "fg": 2100 }, + { "id": "tinyweldtank", "fg": 2101 }, + { "id": "weldtank", "fg": 2102 }, + { "id": "cot", "fg": 2103 }, + { "id": "armguard_soft", "fg": 2104 }, + { "id": "chestwrap_leather", "fg": 2105 }, + { "id": "trenchcoat_leather", "fg": 2106 }, + { "id": "bat_nerf", "fg": 2107 }, + { "id": "golf_bag", "fg": 2108 }, + { "id": "polycarbonate_sheet", "fg": 2109 }, + { "id": "screen_mesh", "fg": 2110 }, + { "id": "bagpipes", "fg": 2111 }, { "id": "jumper_cable_heavy", "fg": 2112 }, { "id": "scythe", "fg": 2113 }, { "id": "motorbike_armor", "fg": 2114 }, @@ -7023,98 +7061,94 @@ { "id": "mon_tadpole_grabber", "fg": 2575 }, { "id": "mon_turret_riot", "fg": 2577 }, { "id": "mon_vortex", "fg": 2578 }, - { "id": "footstep", "fg": 2623 }, - { "id": "footstep_above", "fg": 2624 }, - { "id": "footstep_below", "fg": 2625 }, - { "id": "unknown_field", "fg": 2626 }, - { "id": "unknown_furniture", "fg": 2627 }, - { "id": "unknown_item", "fg": 2628 }, - { "id": "unknown_item_AMMO", "fg": 2629 }, - { "id": "unknown_item_ARMOR", "fg": 2630 }, - { "id": "unknown_item_BIONIC", "fg": 2631 }, - { "id": "unknown_item_BOOK", "fg": 2632 }, - { "id": "unknown_item_FOOD", "fg": 2633 }, - { "id": "unknown_item_GUN", "fg": 2634 }, - { "id": "unknown_item_TOOL", "fg": 2635 }, - { "id": "unknown_item_misc", "fg": 2636 }, - { "id": "unknown_terrain", "fg": 2637 }, - { "id": "unknown_trap", "fg": 2638 }, - { "id": "unknown_vehicle_part", "fg": 2639 }, - { "id": "overlay_crouch", "fg": 2647 }, - { "id": "overlay_effect_badpoison", "fg": 2648 }, - { "id": "overlay_effect_bleed", "fg": 2649 }, - { "id": "overlay_effect_cold", "fg": 2650 }, - { "id": "overlay_effect_deaf", "fg": 2651 }, - { "id": "overlay_effect_downed", "fg": 2652 }, - { "id": "overlay_effect_grabbed", "fg": 2653 }, - { "id": "overlay_effect_hot", "fg": 2654 }, - { "id": "overlay_effect_poison", "fg": 2656 }, - { "id": "overlay_effect_slimed", "fg": 2657 }, - { "id": "overlay_effect_wet", "fg": 2658 }, - { "id": "overlay_effect_winded", "fg": 2659 }, - { "id": "overlay_friendly_sees_player", "fg": 2660 }, - { "id": "overlay_hostile_sees_player", "fg": 2661 }, - { "id": "overlay_neutral_sees_player", "fg": 2662 }, - { "id": "overlay_other_sees_player", "fg": 2663 }, - { "id": "overlay_prone", "fg": 2664 }, - { "id": "overlay_run", "fg": 2665 }, - { "id": "zombie_revival_indicator", "fg": 2666 }, - { "id": "overlay_female_mutation_HOOVES", "fg": 2667 }, - { "id": "overlay_male_mutation_HOOVES", "fg": 2668 }, - { "id": "overlay_female_mutation_LEG_TENTACLES", "fg": 2669 }, - { "id": "overlay_male_mutation_LEG_TENTACLES", "fg": 2670 }, - { "id": "overlay_wielded_bfg50", "fg": 2671 }, - { "id": "overlay_worn_swim_fins", "fg": 2672 }, - { "id": "cemetery_small", "fg": 2693 }, - { "id": "dirt_road_center", "fg": 2696 }, - { "id": "dirt_road_end_piece_e", "fg": 2703 }, - { "id": "dirt_road_end_piece_n", "fg": 2704 }, - { "id": "dirt_road_end_piece_s", "fg": 2705 }, - { "id": "dirt_road_end_piece_w", "fg": 2706 }, - { "id": "dirt_road_unconnected", "fg": 2711 }, - { "id": "hunting_blind", "fg": 2737 }, - { "id": "overmap_horde_3", "fg": 2738 }, - { "id": "overmap_horde_4", "fg": 2739 }, - { "id": "overmap_horde_5", "fg": 2740 }, - { "id": "overmap_horde_6", "fg": 2741 }, - { "id": "overmap_remembered_vehicle", "fg": 2742 }, - { "id": "pasture_connection_ew", "fg": 2765 }, - { "id": "pasture_connection_ns", "fg": 2766 }, - { "id": "pasture_unconnected", "fg": 2779 }, - { "id": "t_metal_ventilation_shutter", "fg": 2844 }, - { "id": "t_ramp_down_high", "fg": 2862 }, - { "id": "t_ramp_up_high", "fg": 2863 }, - { "id": "t_sidewalk_ramp_down_high", "fg": 2864 }, - { "id": "t_sidewalk_ramp_up_high", "fg": 2865 }, - { "id": "t_slope_down", "fg": 2866 }, - { "id": "t_slope_up", "fg": 2867 }, - { "id": "t_door_b_peep", "fg": 3212 }, - { "id": "t_door_boarded_damaged_peep", "fg": 3213 }, - { "id": "t_door_boarded_peep", "fg": 3214 }, - { "id": "t_door_c_peep", "fg": 3215 }, - { "id": "t_door_locked_peep", "fg": 3216 }, - { "id": "t_door_o_peep", "fg": 3217 }, - { "id": "t_fence_post", "fg": 3254 }, - { "id": "t_ladder_down", "fg": 3476 }, - { "id": "t_mud", "fg": 3594 }, - { "id": "t_thconc_floor_unconnected", "fg": 4106 }, - { "id": "t_thconc_floor_flesh", "fg": 4107 }, - { "id": "t_wall_resin_cage", "fg": 4300 }, - { "id": "t_window_domestic_taped", "fg": 4456 }, - { "id": "t_window_no_curtains_taped", "fg": 4460 }, - { "id": "t_window_taped", "fg": 4462 }, - { "id": "tr_cot", "fg": 4465 }, - { "id": "tr_caltrops", "fg": 4466 }, - { "id": "tr_telepad", "fg": 4467 }, - { "id": "tr_landmine", "fg": 4470 }, - { "id": "tr_landmine_buried", "fg": 4471 }, - { "id": "tr_practice_target", "fg": 4473 }, - { "id": "metal_boat_hull", "fg": 4475 } + { "id": "footstep", "fg": 2645 }, + { "id": "footstep_above", "fg": 2646 }, + { "id": "footstep_below", "fg": 2647 }, + { "id": "unknown_field", "fg": 2648 }, + { "id": "unknown_furniture", "fg": 2649 }, + { "id": "unknown_item", "fg": 2650 }, + { "id": "unknown_item_AMMO", "fg": 2651 }, + { "id": "unknown_item_ARMOR", "fg": 2652 }, + { "id": "unknown_item_BIONIC", "fg": 2653 }, + { "id": "unknown_item_BOOK", "fg": 2654 }, + { "id": "unknown_item_FOOD", "fg": 2655 }, + { "id": "unknown_item_GUN", "fg": 2656 }, + { "id": "unknown_item_TOOL", "fg": 2657 }, + { "id": "unknown_item_misc", "fg": 2658 }, + { "id": "unknown_terrain", "fg": 2659 }, + { "id": "unknown_trap", "fg": 2660 }, + { "id": "unknown_vehicle_part", "fg": 2661 }, + { "id": "overlay_crouch", "fg": 2669 }, + { "id": "overlay_effect_badpoison", "fg": 2670 }, + { "id": "overlay_effect_bleed", "fg": 2671 }, + { "id": "overlay_effect_cold", "fg": 2672 }, + { "id": "overlay_effect_deaf", "fg": 2673 }, + { "id": "overlay_effect_downed", "fg": 2674 }, + { "id": "overlay_effect_grabbed", "fg": 2675 }, + { "id": "overlay_effect_hot", "fg": 2676 }, + { "id": "overlay_effect_poison", "fg": 2678 }, + { "id": "overlay_effect_slimed", "fg": 2679 }, + { "id": "overlay_effect_wet", "fg": 2680 }, + { "id": "overlay_effect_winded", "fg": 2681 }, + { "id": "overlay_friendly_sees_player", "fg": 2682 }, + { "id": "overlay_hostile_sees_player", "fg": 2683 }, + { "id": "overlay_neutral_sees_player", "fg": 2684 }, + { "id": "overlay_other_sees_player", "fg": 2685 }, + { "id": "overlay_prone", "fg": 2686 }, + { "id": "overlay_run", "fg": 2687 }, + { "id": "zombie_revival_indicator", "fg": 2688 }, + { "id": "overlay_female_mutation_HOOVES", "fg": 2689 }, + { "id": "overlay_male_mutation_HOOVES", "fg": 2690 }, + { "id": "overlay_female_mutation_LEG_TENTACLES", "fg": 2691 }, + { "id": "overlay_male_mutation_LEG_TENTACLES", "fg": 2692 }, + { "id": "overlay_wielded_bfg50", "fg": 2693 }, + { "id": "overlay_worn_swim_fins", "fg": 2694 }, + { "id": "cemetery_small", "fg": 2715 }, + { "id": "dirt_road_center", "fg": 2718 }, + { "id": "dirt_road_end_piece_e", "fg": 2725 }, + { "id": "dirt_road_end_piece_n", "fg": 2726 }, + { "id": "dirt_road_end_piece_s", "fg": 2727 }, + { "id": "dirt_road_end_piece_w", "fg": 2728 }, + { "id": "dirt_road_unconnected", "fg": 2733 }, + { "id": "hunting_blind", "fg": 2775 }, + { "id": "overmap_horde_3", "fg": 2776 }, + { "id": "overmap_horde_4", "fg": 2777 }, + { "id": "overmap_horde_5", "fg": 2778 }, + { "id": "overmap_horde_6", "fg": 2779 }, + { "id": "overmap_remembered_vehicle", "fg": 2780 }, + { "id": "pasture_connection_ew", "fg": 2803 }, + { "id": "pasture_connection_ns", "fg": 2804 }, + { "id": "pasture_unconnected", "fg": 2817 }, + { "id": "t_metal_ventilation_shutter", "fg": 2882 }, + { "id": "t_ramp_down_high", "fg": 2900 }, + { "id": "t_ramp_up_high", "fg": 2901 }, + { "id": "t_sidewalk_ramp_down_high", "fg": 2902 }, + { "id": "t_sidewalk_ramp_up_high", "fg": 2903 }, + { "id": "t_slope_down", "fg": 2904 }, + { "id": "t_slope_up", "fg": 2905 }, + { "id": "t_door_b_peep", "fg": 3250 }, + { "id": "t_door_boarded_damaged_peep", "fg": 3251 }, + { "id": "t_door_boarded_peep", "fg": 3252 }, + { "id": "t_door_c_peep", "fg": 3253 }, + { "id": "t_door_locked_peep", "fg": 3254 }, + { "id": "t_door_o_peep", "fg": 3255 }, + { "id": "t_fence_post", "fg": 3292 }, + { "id": "t_ladder_down", "fg": 3514 }, + { "id": "t_mud", "fg": 3632 }, + { "id": "t_thconc_floor_unconnected", "fg": 4144 }, + { "id": "t_thconc_floor_flesh", "fg": 4145 }, + { "id": "t_wall_resin_cage", "fg": 4338 }, + { "id": "t_window_domestic_taped", "fg": 4494 }, + { "id": "t_window_no_curtains_taped", "fg": 4498 }, + { "id": "t_window_taped", "fg": 4500 }, + { "id": "tr_cot", "fg": 4503 }, + { "id": "tr_practice_target", "fg": 4514 }, + { "id": "metal_boat_hull", "fg": 4516 } ] }, { "file": "tall.png", - "//": "range 4512 to 4943", + "//": "range 4544 to 5007", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, @@ -7122,222 +7156,222 @@ "tiles": [ { "id": "f_deckchair", - "fg": [ { "weight": 1, "sprite": 4512 }, { "weight": 1, "sprite": 4513 }, { "weight": 1, "sprite": 4514 } ] + "fg": [ { "weight": 1, "sprite": 4544 }, { "weight": 1, "sprite": 4545 }, { "weight": 1, "sprite": 4546 } ] }, - { "id": [ "f_fvat_empty", "f_fvat_full" ], "fg": 4516 }, - { "id": "f_punching_bag", "fg": 4520 }, - { "id": "f_exercise", "fg": 4519 }, - { "id": "f_ergometer", "fg": 4518 }, - { "id": "f_IV_pole", "fg": 4528 }, - { "id": "f_arcade_machine", "fg": 4529 }, - { "id": "f_autodoc_couch", "fg": 4530 }, - { "id": "f_birdbath", "fg": 4533 }, + { "id": [ "f_fvat_empty", "f_fvat_full" ], "fg": 4548 }, + { "id": "f_punching_bag", "fg": 4552 }, + { "id": "f_exercise", "fg": 4551 }, + { "id": "f_ergometer", "fg": 4550 }, + { "id": "f_IV_pole", "fg": 4560 }, + { "id": "f_arcade_machine", "fg": 4561 }, + { "id": "f_autodoc_couch", "fg": 4562 }, + { "id": "f_birdbath", "fg": 4565 }, { "id": "f_bookcase", "multitile": true, "rotates": false, - "fg": 4534, + "fg": 4566, "additional_tiles": [ - { "id": "center", "fg": 4534 }, - { "id": "corner", "fg": [ 4536, 4537, 4537, 4536 ] }, - { "id": "t_connection", "fg": [ 4534, 4535, 4534, 4535 ] }, - { "id": "edge", "fg": [ 4535, 4534 ] }, - { "id": "end_piece", "fg": [ 4536, 4534, 4537, 4534 ] }, - { "id": "unconnected", "fg": [ 4534, 4534 ] } + { "id": "center", "fg": 4566 }, + { "id": "corner", "fg": [ 4568, 4569, 4569, 4568 ] }, + { "id": "t_connection", "fg": [ 4566, 4567, 4566, 4567 ] }, + { "id": "edge", "fg": [ 4567, 4566 ] }, + { "id": "end_piece", "fg": [ 4568, 4566, 4569, 4566 ] }, + { "id": "unconnected", "fg": [ 4566, 4566 ] } ] }, - { "id": "f_boulder_large", "fg": 4538 }, - { "id": "f_cattails_season_spring", "fg": 4541, "rotates": false }, - { "id": "f_cattails_season_summer", "fg": 4542, "rotates": false }, - { "id": "f_cattails_season_autumn", "fg": 4540, "rotates": false }, - { "id": "f_cattails_season_winter", "fg": 4543, "rotates": false }, + { "id": "f_boulder_large", "fg": 4570 }, + { "id": "f_cattails_season_spring", "fg": 4573, "rotates": false }, + { "id": "f_cattails_season_summer", "fg": 4574, "rotates": false }, + { "id": "f_cattails_season_autumn", "fg": 4572, "rotates": false }, + { "id": "f_cattails_season_winter", "fg": 4575, "rotates": false }, { "id": "f_console", "multitile": true, - "fg": 4577, + "fg": 4609, "additional_tiles": [ - { "id": "center", "fg": 4562 }, - { "id": "corner", "fg": [ 4564, 4566, 4565, 4563 ] }, - { "id": "t_connection", "fg": [ 4574, 4576, 4575, 4573 ] }, - { "id": "edge", "fg": [ 4568, 4567 ] }, - { "id": "end_piece", "fg": [ 4570, 4572, 4571, 4569 ] }, - { "id": "unconnected", "fg": [ 4577, 4579, 4577, 4578 ] } + { "id": "center", "fg": 4594 }, + { "id": "corner", "fg": [ 4596, 4598, 4597, 4595 ] }, + { "id": "t_connection", "fg": [ 4606, 4608, 4607, 4605 ] }, + { "id": "edge", "fg": [ 4600, 4599 ] }, + { "id": "end_piece", "fg": [ 4602, 4604, 4603, 4601 ] }, + { "id": "unconnected", "fg": [ 4609, 4611, 4609, 4610 ] } ] }, { "id": "f_console_broken", "multitile": true, - "fg": 4560, + "fg": 4592, "additional_tiles": [ - { "id": "center", "fg": 4544 }, - { "id": "corner", "fg": [ 4546, 4548, 4547, 4545 ] }, - { "id": "t_connection", "fg": [ 4556, 4558, 4557, 4555 ] }, - { "id": "edge", "fg": [ 4550, 4549 ] }, - { "id": "end_piece", "fg": [ 4552, 4554, 4553, 4551 ] }, - { "id": "unconnected", "fg": [ 4560, 4561, 4560, 4559 ] } + { "id": "center", "fg": 4576 }, + { "id": "corner", "fg": [ 4578, 4580, 4579, 4577 ] }, + { "id": "t_connection", "fg": [ 4588, 4590, 4589, 4587 ] }, + { "id": "edge", "fg": [ 4582, 4581 ] }, + { "id": "end_piece", "fg": [ 4584, 4586, 4585, 4583 ] }, + { "id": "unconnected", "fg": [ 4592, 4593, 4592, 4591 ] } ] }, - { "id": "f_crate_c", "fg": 4580 }, - { "id": "f_crate_o", "fg": 4581 }, - { "id": "f_dialysis", "fg": 4582 }, - { "id": "f_dresser", "rotates": true, "fg": [ 4585, 4586, 4584, 4583 ] }, - { "id": "f_dryer", "fg": 4587 }, + { "id": "f_crate_c", "fg": 4612 }, + { "id": "f_crate_o", "fg": 4613 }, + { "id": "f_dialysis", "fg": 4614 }, + { "id": "f_dresser", "rotates": true, "fg": [ 4617, 4618, 4616, 4615 ] }, + { "id": "f_dryer", "fg": 4619 }, { "id": "f_dumpster", - "fg": 4594, + "fg": 4626, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 4588 }, - { "id": "corner", "fg": [ 4593, 4593, 4590, 4590 ] }, - { "id": "t_connection", "fg": [ 4588, 4593, 4588, 4590 ] }, - { "id": "edge", "fg": [ 4589, 4588 ] }, - { "id": "end_piece", "fg": [ 4591, 4593, 4592, 4590 ] }, - { "id": "unconnected", "fg": [ 4594, 4594 ] } + { "id": "center", "fg": 4620 }, + { "id": "corner", "fg": [ 4625, 4625, 4622, 4622 ] }, + { "id": "t_connection", "fg": [ 4620, 4625, 4620, 4622 ] }, + { "id": "edge", "fg": [ 4621, 4620 ] }, + { "id": "end_piece", "fg": [ 4623, 4625, 4624, 4622 ] }, + { "id": "unconnected", "fg": [ 4626, 4626 ] } ] }, - { "id": "f_fireplace", "fg": 4595 }, - { "id": "f_floor_lamp", "fg": 4596 }, - { "id": "f_fridge", "rotates": true, "fg": [ 4599, 4600, 4598, 4597 ] }, - { "id": "t_gas_pump", "fg": 4601, "bg": 4741 }, - { "id": "f_gas_pump", "fg": 4601 }, - { "id": "f_glass_cabinet", "fg": 4602 }, - { "id": "f_glass_fridge", "fg": 4603 }, + { "id": "f_fireplace", "fg": 4627 }, + { "id": "f_floor_lamp", "fg": 4628 }, + { "id": "f_fridge", "rotates": true, "fg": [ 4631, 4632, 4630, 4629 ] }, + { "id": "t_gas_pump", "fg": 4633, "bg": 4773 }, + { "id": "f_gas_pump", "fg": 4633 }, + { "id": "f_glass_cabinet", "fg": 4634 }, + { "id": "f_glass_fridge", "fg": 4635 }, { "id": "f_ground_cable", "multitile": true, - "fg": 4622, + "fg": 4654, "additional_tiles": [ - { "id": "center", "fg": [ { "weight": 1, "sprite": 4604 }, { "weight": 1, "sprite": 4604 } ] }, + { "id": "center", "fg": [ { "weight": 1, "sprite": 4636 }, { "weight": 1, "sprite": 4636 } ] }, { "id": "corner", - "fg": [ { "weight": 1, "sprite": [ 4606, 4609, 4607, 4605 ] }, { "weight": 1, "sprite": [ 4606, 4609, 4608, 4605 ] } ] + "fg": [ { "weight": 1, "sprite": [ 4638, 4641, 4639, 4637 ] }, { "weight": 1, "sprite": [ 4638, 4641, 4640, 4637 ] } ] }, { "id": "t_connection", - "fg": [ { "weight": 1, "sprite": [ 4619, 4621, 4620, 4618 ] }, { "weight": 1, "sprite": [ 4619, 4621, 4620, 4618 ] } ] + "fg": [ { "weight": 1, "sprite": [ 4651, 4653, 4652, 4650 ] }, { "weight": 1, "sprite": [ 4651, 4653, 4652, 4650 ] } ] }, { "id": "edge", - "fg": [ { "weight": 1, "sprite": [ 4612, 4610 ] }, { "weight": 1, "sprite": [ 4613, 4611 ] } ] + "fg": [ { "weight": 1, "sprite": [ 4644, 4642 ] }, { "weight": 1, "sprite": [ 4645, 4643 ] } ] }, { "id": "end_piece", - "fg": [ { "weight": 1, "sprite": [ 4615, 4617, 4616, 4614 ] }, { "weight": 1, "sprite": [ 4615, 4617, 4616, 4614 ] } ] + "fg": [ { "weight": 1, "sprite": [ 4647, 4649, 4648, 4646 ] }, { "weight": 1, "sprite": [ 4647, 4649, 4648, 4646 ] } ] }, - { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 4622 }, { "weight": 1, "sprite": 4622 } ] } + { "id": "unconnected", "fg": [ { "weight": 1, "sprite": 4654 }, { "weight": 1, "sprite": 4654 } ] } ] }, - { "id": "f_home_furnace", "fg": 4623 }, - { "id": "f_locker", "fg": 4625 }, - { "id": "f_machinery_old", "fg": 4632 }, - { "id": "t_machinery_old", "fg": 4632, "bg": 4733 }, - { "id": "f_machinery_electronic", "fg": 4626 }, - { "id": "t_machinery_electronic", "fg": 4626, "bg": 4733 }, + { "id": "f_home_furnace", "fg": 4655 }, + { "id": "f_locker", "fg": 4657 }, + { "id": "f_machinery_old", "fg": 4664 }, + { "id": "t_machinery_old", "fg": 4664, "bg": 4765 }, + { "id": "f_machinery_electronic", "fg": 4658 }, + { "id": "t_machinery_electronic", "fg": 4658, "bg": 4765 }, { "id": "f_machinery_heavy", - "fg": [ { "weight": 20, "sprite": 4627 }, { "weight": 150, "sprite": 4628 }, { "weight": 100, "sprite": 4629 } ] + "fg": [ { "weight": 20, "sprite": 4659 }, { "weight": 150, "sprite": 4660 }, { "weight": 100, "sprite": 4661 } ] }, { "id": "t_machinery_heavy", - "fg": [ { "weight": 20, "sprite": 4627 }, { "weight": 150, "sprite": 4628 }, { "weight": 100, "sprite": 4629 } ], - "bg": 4733 + "fg": [ { "weight": 20, "sprite": 4659 }, { "weight": 150, "sprite": 4660 }, { "weight": 100, "sprite": 4661 } ], + "bg": 4765 }, - { "id": "f_machinery_light", "fg": [ { "weight": 100, "sprite": 4631 }, { "weight": 100, "sprite": 4630 } ] }, + { "id": "f_machinery_light", "fg": [ { "weight": 100, "sprite": 4663 }, { "weight": 100, "sprite": 4662 } ] }, { "id": "t_machinery_light", - "fg": [ { "weight": 100, "sprite": 4631 }, { "weight": 100, "sprite": 4630 } ], - "bg": 4733 - }, - { "id": "f_mannequin", "fg": 4633 }, - { "id": "f_alien_tendril", "fg": 4637 }, - { "id": "f_alien_zapper", "fg": 4638 }, - { "id": [ "f_alien_pod", "f_alien_pod_organ" ], "fg": 4635 }, - { "id": "f_alien_pod_resin", "fg": 4636 }, - { "id": "f_oven", "rotates": true, "fg": [ 4641, 4642, 4640, 4639 ] }, - { "id": "f_rack_coat", "fg": 4643 }, - { "id": "f_scan_bed", "fg": 4644 }, + "fg": [ { "weight": 100, "sprite": 4663 }, { "weight": 100, "sprite": 4662 } ], + "bg": 4765 + }, + { "id": "f_mannequin", "fg": 4665 }, + { "id": "f_alien_tendril", "fg": 4669 }, + { "id": "f_alien_zapper", "fg": 4670 }, + { "id": [ "f_alien_pod", "f_alien_pod_organ" ], "fg": 4667 }, + { "id": "f_alien_pod_resin", "fg": 4668 }, + { "id": "f_oven", "rotates": true, "fg": [ 4673, 4674, 4672, 4671 ] }, + { "id": "f_rack_coat", "fg": 4675 }, + { "id": "f_scan_bed", "fg": 4676 }, { "id": "f_scrap_antenna", "animated": true, "fg": [ - { "weight": 15, "sprite": 4645 }, - { "weight": 15, "sprite": 4646 }, - { "weight": 15, "sprite": 4647 }, - { "weight": 15, "sprite": 4648 }, - { "weight": 15, "sprite": 4649 }, - { "weight": 15, "sprite": 4650 } + { "weight": 15, "sprite": 4677 }, + { "weight": 15, "sprite": 4678 }, + { "weight": 15, "sprite": 4679 }, + { "weight": 15, "sprite": 4680 }, + { "weight": 15, "sprite": 4681 }, + { "weight": 15, "sprite": 4682 } ], "rotates": false }, - { "id": "f_shower", "fg": 4651 }, - { "id": "f_standing_tank", "fg": 4652 }, - { "id": "f_statue", "fg": 4653 }, - { "id": "f_sunflower_season_summer", "fg": 4655 }, - { "id": "f_sunflower_season_autumn", "fg": 4654 }, - { "id": "f_vending_c", "fg": 4656 }, - { "id": "f_vending_reinforced", "fg": 4658 }, - { "id": "f_vending_o", "fg": 4657 }, - { "id": "f_ventilator", "fg": 4659 }, - { "id": "f_washer", "fg": 4660 }, - { "id": "f_water_heater", "fg": 4661 }, - { "id": "f_water_pump", "fg": 4662 }, - { "id": "t_water_pump", "fg": 4662, "bg": 4733 }, - { "id": "f_wind_mill", "fg": 4663 }, - { "id": "f_woodstove", "fg": 4664 }, - { "id": "f_workbench", "fg": 4665 }, - { "id": "mon_mech_combat", "fg": 4670, "bg": 4674 }, - { "id": "mon_mech_recon", "fg": 4671, "bg": 4674 }, + { "id": "f_shower", "fg": 4683 }, + { "id": "f_standing_tank", "fg": 4684 }, + { "id": "f_statue", "fg": 4685 }, + { "id": "f_sunflower_season_summer", "fg": 4687 }, + { "id": "f_sunflower_season_autumn", "fg": 4686 }, + { "id": "f_vending_c", "fg": 4688 }, + { "id": "f_vending_reinforced", "fg": 4690 }, + { "id": "f_vending_o", "fg": 4689 }, + { "id": "f_ventilator", "fg": 4691 }, + { "id": "f_washer", "fg": 4692 }, + { "id": "f_water_heater", "fg": 4693 }, + { "id": "f_water_pump", "fg": 4694 }, + { "id": "t_water_pump", "fg": 4694, "bg": 4765 }, + { "id": "f_wind_mill", "fg": 4695 }, + { "id": "f_woodstove", "fg": 4696 }, + { "id": "f_workbench", "fg": 4697 }, + { "id": "mon_mech_combat", "fg": 4702, "bg": 4706 }, + { "id": "mon_mech_recon", "fg": 4703, "bg": 4706 }, { "id": "mon_exodii_worker", "fg": [ - { "weight": 15, "sprite": 4675 }, - { "weight": 15, "sprite": 4676 }, - { "weight": 10, "sprite": 4677 }, - { "weight": 10, "sprite": 4678 } + { "weight": 15, "sprite": 4707 }, + { "weight": 15, "sprite": 4708 }, + { "weight": 10, "sprite": 4709 }, + { "weight": 10, "sprite": 4710 } ], - "bg": 4679 - }, - { "id": "mon_turret_searchlight", "fg": 4681, "bg": 4674 }, - { "id": "mon_biollante", "fg": 4682, "bg": 4674 }, - { "id": "mon_dispatch", "fg": 4683, "bg": 4674 }, - { "id": "mon_dispatch_military", "fg": 4684, "bg": 4674 }, - { "id": "mon_fungal_tendril", "fg": 4685, "bg": 4674 }, - { "id": "mon_fungaloid", "fg": 4686, "bg": 4674 }, - { "id": "mon_laserturret", "fg": 4687, "bg": 4674 }, - { "id": "mon_mosquito_giant", "fg": 4688, "bg": 4674 }, - { "id": "mon_robofac_laserturret_mk1", "fg": 4689, "bg": 4674 }, - { "id": "mon_triffid_flower", "fg": 4690, "bg": 4674 }, - { "id": "mon_turret", "fg": 4691, "bg": 4674 }, - { "id": "mon_turret_speaker", "fg": 4692, "bg": 4674 }, - { "id": "mon_zombie_fungus", "fg": 4693, "bg": 4674 }, - { "id": "mon_zombie_gasbag_fungus", "fg": 4694, "bg": 4674 }, - { "id": "mon_zombie_necro", "fg": 4697, "bg": 4674 }, - { "id": "mon_zombie_master", "fg": 4696, "bg": 4674 }, - { "id": [ "corpse_mon_zombie_necro", "corpse_mon_zombie_master" ], "fg": 4695 }, + "bg": 4711 + }, + { "id": "mon_turret_searchlight", "fg": 4713, "bg": 4706 }, + { "id": "mon_biollante", "fg": 4714, "bg": 4706 }, + { "id": "mon_dispatch", "fg": 4715, "bg": 4706 }, + { "id": "mon_dispatch_military", "fg": 4716, "bg": 4706 }, + { "id": "mon_fungal_tendril", "fg": 4717, "bg": 4706 }, + { "id": "mon_fungaloid", "fg": 4718, "bg": 4706 }, + { "id": "mon_laserturret", "fg": 4719, "bg": 4706 }, + { "id": "mon_mosquito_giant", "fg": 4720, "bg": 4706 }, + { "id": "mon_robofac_laserturret_mk1", "fg": 4721, "bg": 4706 }, + { "id": "mon_triffid_flower", "fg": 4722, "bg": 4706 }, + { "id": "mon_turret", "fg": 4723, "bg": 4706 }, + { "id": "mon_turret_speaker", "fg": 4724, "bg": 4706 }, + { "id": "mon_zombie_fungus", "fg": 4725, "bg": 4706 }, + { "id": "mon_zombie_gasbag_fungus", "fg": 4726, "bg": 4706 }, + { "id": "mon_zombie_necro", "fg": 4729, "bg": 4706 }, + { "id": "mon_zombie_master", "fg": 4728, "bg": 4706 }, + { "id": [ "corpse_mon_zombie_necro", "corpse_mon_zombie_master" ], "fg": 4727 }, { "id": "mon_triffid", - "fg": [ { "weight": 100, "sprite": 4701 }, { "weight": 50, "sprite": 4702 } ], - "bg": 4674 - }, - { "id": "mon_triffid_sprig", "fg": 4703, "bg": 4674 }, - { "id": "mon_triffid_young", "fg": 4704, "bg": 4674 }, - { "id": "overlay_wielded_long_pole", "fg": 4709 }, - { "id": "overlay_wielded_pike_copper", "fg": 4710 }, - { "id": "overlay_wielded_pike", "fg": 4711 }, - { "id": "overlay_wielded_pike_wood", "fg": 4712 }, - { "id": "overlay_female_wielded_wood_panel", "fg": 4713 }, - { "id": "overlay_male_wielded_wood_panel", "fg": 4714 }, - { "id": "overlay_female_wielded_wood_sheet", "fg": 4715 }, - { "id": "overlay_male_wielded_wood_sheet", "fg": 4716 }, - { "id": "airliner_2b_1", "fg": 4721, "bg": 4718, "rotates": false }, - { "id": "airliner_2b", "fg": 4720, "bg": 4722 }, - { "id": "lighthouse_ground", "fg": 4723, "bg": 4719 }, - { "id": "lighthouse_z1", "fg": 4724, "bg": 4718 }, - { "id": "park", "fg": 4725, "bg": 4717 }, + "fg": [ { "weight": 100, "sprite": 4733 }, { "weight": 50, "sprite": 4734 } ], + "bg": 4706 + }, + { "id": "mon_triffid_sprig", "fg": 4735, "bg": 4706 }, + { "id": "mon_triffid_young", "fg": 4736, "bg": 4706 }, + { "id": "overlay_wielded_long_pole", "fg": 4741 }, + { "id": "overlay_wielded_pike_copper", "fg": 4742 }, + { "id": "overlay_wielded_pike", "fg": 4743 }, + { "id": "overlay_wielded_pike_wood", "fg": 4744 }, + { "id": "overlay_female_wielded_wood_panel", "fg": 4745 }, + { "id": "overlay_male_wielded_wood_panel", "fg": 4746 }, + { "id": "overlay_female_wielded_wood_sheet", "fg": 4747 }, + { "id": "overlay_male_wielded_wood_sheet", "fg": 4748 }, + { "id": "airliner_2b_1", "fg": 4753, "bg": 4750, "rotates": false }, + { "id": "airliner_2b", "fg": 4752, "bg": 4754 }, + { "id": "lighthouse_ground", "fg": 4755, "bg": 4751 }, + { "id": "lighthouse_z1", "fg": 4756, "bg": 4750 }, + { "id": "park", "fg": 4757, "bg": 4749 }, { "id": [ "horse_farm_isherwood_13", "horse_farm_13", "farm_dairy_twd_4", "farm_stills_3" ], - "fg": [ 4727, 4726, 4728, 4729 ], - "bg": 4717, + "fg": [ 4759, 4758, 4760, 4761 ], + "bg": 4749, "rotates": true }, { @@ -7351,48 +7385,48 @@ "farm_stills_3_2nd", "farm_stills_3_roof" ], - "fg": [ 4727, 4726, 4728, 4729 ], - "bg": 4718, + "fg": [ 4759, 4758, 4760, 4761 ], + "bg": 4750, "rotates": true }, - { "id": "t_floor_olight", "fg": 4747, "bg": 4734 }, - { "id": "t_thconc_floor_olight", "fg": 4747, "bg": 4743 }, - { "id": "t_metal_floor_olight", "fg": 4747, "bg": 4740 }, - { "id": "t_thconc_y_olight", "fg": 4747, "bg": 4744 }, - { "id": "t_strconc_floor_olight", "fg": 4747, "bg": 4742 }, - { "id": "t_linoleum_whitefloor_olight", "fg": 4747, "bg": 4739 }, - { "id": "t_linoleum_gray_floor_olight", "fg": 4747, "bg": 4738 }, - { "id": "t_atm", "fg": 4748, "bg": 4733 }, - { "id": [ "t_barndoor", "t_palisade_pulley" ], "fg": 4749, "bg": 4730 }, - { "id": "t_column", "fg": 4750, "bg": 4733 }, + { "id": "t_floor_olight", "fg": 4779, "bg": 4766 }, + { "id": "t_thconc_floor_olight", "fg": 4779, "bg": 4775 }, + { "id": "t_metal_floor_olight", "fg": 4779, "bg": 4772 }, + { "id": "t_thconc_y_olight", "fg": 4779, "bg": 4776 }, + { "id": "t_strconc_floor_olight", "fg": 4779, "bg": 4774 }, + { "id": "t_linoleum_whitefloor_olight", "fg": 4779, "bg": 4771 }, + { "id": "t_linoleum_gray_floor_olight", "fg": 4779, "bg": 4770 }, + { "id": "t_atm", "fg": 4780, "bg": 4765 }, + { "id": [ "t_barndoor", "t_palisade_pulley" ], "fg": 4781, "bg": 4762 }, + { "id": "t_column", "fg": 4782, "bg": 4765 }, { "id": "t_grass_long", "multitile": true, - "fg": 4769, - "bg": 4737, + "fg": 4801, + "bg": 4769, "additional_tiles": [ { "id": "center", - "bg": 4737, + "bg": 4769, "fg": [ - { "weight": 100, "sprite": 4751 }, - { "weight": 100, "sprite": 4752 }, - { "weight": 100, "sprite": 4753 }, - { "weight": 100, "sprite": 4754 } + { "weight": 100, "sprite": 4783 }, + { "weight": 100, "sprite": 4784 }, + { "weight": 100, "sprite": 4785 }, + { "weight": 100, "sprite": 4786 } ] }, - { "id": "corner", "bg": 4737, "fg": [ 4756, 4758, 4757, 4755 ] }, - { "id": "t_connection", "bg": 4737, "fg": [ 4766, 4768, 4767, 4765 ] }, - { "id": "edge", "bg": 4737, "fg": [ 4760, 4759 ] }, - { "id": "end_piece", "bg": 4737, "fg": [ 4762, 4764, 4763, 4761 ] }, + { "id": "corner", "bg": 4769, "fg": [ 4788, 4790, 4789, 4787 ] }, + { "id": "t_connection", "bg": 4769, "fg": [ 4798, 4800, 4799, 4797 ] }, + { "id": "edge", "bg": 4769, "fg": [ 4792, 4791 ] }, + { "id": "end_piece", "bg": 4769, "fg": [ 4794, 4796, 4795, 4793 ] }, { "id": "unconnected", - "bg": 4737, + "bg": 4769, "fg": [ - { "weight": 100, "sprite": 4769 }, - { "weight": 100, "sprite": 4770 }, - { "weight": 100, "sprite": 4771 }, - { "weight": 100, "sprite": 4772 } + { "weight": 100, "sprite": 4801 }, + { "weight": 100, "sprite": 4802 }, + { "weight": 100, "sprite": 4803 }, + { "weight": 100, "sprite": 4804 } ] } ] @@ -7400,31 +7434,31 @@ { "id": "t_grass_long_season_summer", "multitile": true, - "fg": 4813, - "bg": 4736, + "fg": 4845, + "bg": 4768, "additional_tiles": [ { "id": "center", - "bg": 4736, + "bg": 4768, "fg": [ - { "weight": 100, "sprite": 4795 }, - { "weight": 100, "sprite": 4796 }, - { "weight": 100, "sprite": 4797 }, - { "weight": 100, "sprite": 4798 } + { "weight": 100, "sprite": 4827 }, + { "weight": 100, "sprite": 4828 }, + { "weight": 100, "sprite": 4829 }, + { "weight": 100, "sprite": 4830 } ] }, - { "id": "corner", "bg": 4736, "fg": [ 4800, 4802, 4801, 4799 ] }, - { "id": "t_connection", "bg": 4736, "fg": [ 4810, 4812, 4811, 4809 ] }, - { "id": "edge", "bg": 4736, "fg": [ 4804, 4803 ] }, - { "id": "end_piece", "bg": 4736, "fg": [ 4806, 4808, 4807, 4805 ] }, + { "id": "corner", "bg": 4768, "fg": [ 4832, 4834, 4833, 4831 ] }, + { "id": "t_connection", "bg": 4768, "fg": [ 4842, 4844, 4843, 4841 ] }, + { "id": "edge", "bg": 4768, "fg": [ 4836, 4835 ] }, + { "id": "end_piece", "bg": 4768, "fg": [ 4838, 4840, 4839, 4837 ] }, { "id": "unconnected", - "bg": 4736, + "bg": 4768, "fg": [ - { "weight": 100, "sprite": 4813 }, - { "weight": 100, "sprite": 4814 }, - { "weight": 100, "sprite": 4815 }, - { "weight": 100, "sprite": 4816 } + { "weight": 100, "sprite": 4845 }, + { "weight": 100, "sprite": 4846 }, + { "weight": 100, "sprite": 4847 }, + { "weight": 100, "sprite": 4848 } ] } ] @@ -7432,64 +7466,64 @@ { "id": "t_grass_long_season_autumn", "multitile": true, - "fg": 4791, - "bg": 4735, + "fg": 4823, + "bg": 4767, "additional_tiles": [ { "id": "center", - "bg": 4735, + "bg": 4767, "fg": [ - { "weight": 100, "sprite": 4773 }, - { "weight": 100, "sprite": 4774 }, - { "weight": 100, "sprite": 4775 }, - { "weight": 100, "sprite": 4776 } + { "weight": 100, "sprite": 4805 }, + { "weight": 100, "sprite": 4806 }, + { "weight": 100, "sprite": 4807 }, + { "weight": 100, "sprite": 4808 } ] }, - { "id": "corner", "bg": 4735, "fg": [ 4778, 4780, 4779, 4777 ] }, - { "id": "t_connection", "bg": 4735, "fg": [ 4788, 4790, 4789, 4787 ] }, - { "id": "edge", "bg": 4735, "fg": [ 4782, 4781 ] }, - { "id": "end_piece", "bg": 4735, "fg": [ 4784, 4786, 4785, 4783 ] }, + { "id": "corner", "bg": 4767, "fg": [ 4810, 4812, 4811, 4809 ] }, + { "id": "t_connection", "bg": 4767, "fg": [ 4820, 4822, 4821, 4819 ] }, + { "id": "edge", "bg": 4767, "fg": [ 4814, 4813 ] }, + { "id": "end_piece", "bg": 4767, "fg": [ 4816, 4818, 4817, 4815 ] }, { "id": "unconnected", - "bg": 4735, + "bg": 4767, "fg": [ - { "weight": 100, "sprite": 4791 }, - { "weight": 100, "sprite": 4792 }, - { "weight": 100, "sprite": 4793 }, - { "weight": 100, "sprite": 4794 } + { "weight": 100, "sprite": 4823 }, + { "weight": 100, "sprite": 4824 }, + { "weight": 100, "sprite": 4825 }, + { "weight": 100, "sprite": 4826 } ] } ] }, - { "id": "t_grass_long_season_winter", "fg": 4731 }, + { "id": "t_grass_long_season_winter", "fg": 4763 }, { "id": "t_grass_tall", "multitile": true, - "fg": 4835, - "bg": 4737, + "fg": 4867, + "bg": 4769, "additional_tiles": [ { "id": "center", - "bg": 4737, + "bg": 4769, "fg": [ - { "weight": 100, "sprite": 4817 }, - { "weight": 100, "sprite": 4818 }, - { "weight": 100, "sprite": 4819 }, - { "weight": 100, "sprite": 4820 } + { "weight": 100, "sprite": 4849 }, + { "weight": 100, "sprite": 4850 }, + { "weight": 100, "sprite": 4851 }, + { "weight": 100, "sprite": 4852 } ] }, - { "id": "corner", "bg": 4737, "fg": [ 4822, 4824, 4823, 4821 ] }, - { "id": "t_connection", "bg": 4737, "fg": [ 4832, 4834, 4833, 4831 ] }, - { "id": "edge", "bg": 4737, "fg": [ 4826, 4825 ] }, - { "id": "end_piece", "bg": 4737, "fg": [ 4828, 4830, 4829, 4827 ] }, + { "id": "corner", "bg": 4769, "fg": [ 4854, 4856, 4855, 4853 ] }, + { "id": "t_connection", "bg": 4769, "fg": [ 4864, 4866, 4865, 4863 ] }, + { "id": "edge", "bg": 4769, "fg": [ 4858, 4857 ] }, + { "id": "end_piece", "bg": 4769, "fg": [ 4860, 4862, 4861, 4859 ] }, { "id": "unconnected", - "bg": 4737, + "bg": 4769, "fg": [ - { "weight": 100, "sprite": 4835 }, - { "weight": 100, "sprite": 4836 }, - { "weight": 100, "sprite": 4837 }, - { "weight": 100, "sprite": 4838 } + { "weight": 100, "sprite": 4867 }, + { "weight": 100, "sprite": 4868 }, + { "weight": 100, "sprite": 4869 }, + { "weight": 100, "sprite": 4870 } ] } ] @@ -7497,31 +7531,31 @@ { "id": "t_grass_tall_season_summer", "multitile": true, - "fg": 4879, - "bg": 4736, + "fg": 4911, + "bg": 4768, "additional_tiles": [ { "id": "center", - "bg": 4736, + "bg": 4768, "fg": [ - { "weight": 100, "sprite": 4861 }, - { "weight": 100, "sprite": 4862 }, - { "weight": 100, "sprite": 4863 }, - { "weight": 100, "sprite": 4864 } + { "weight": 100, "sprite": 4893 }, + { "weight": 100, "sprite": 4894 }, + { "weight": 100, "sprite": 4895 }, + { "weight": 100, "sprite": 4896 } ] }, - { "id": "corner", "bg": 4736, "fg": [ 4866, 4868, 4867, 4865 ] }, - { "id": "t_connection", "bg": 4736, "fg": [ 4876, 4878, 4877, 4875 ] }, - { "id": "edge", "bg": 4736, "fg": [ 4870, 4869 ] }, - { "id": "end_piece", "bg": 4736, "fg": [ 4872, 4874, 4873, 4871 ] }, + { "id": "corner", "bg": 4768, "fg": [ 4898, 4900, 4899, 4897 ] }, + { "id": "t_connection", "bg": 4768, "fg": [ 4908, 4910, 4909, 4907 ] }, + { "id": "edge", "bg": 4768, "fg": [ 4902, 4901 ] }, + { "id": "end_piece", "bg": 4768, "fg": [ 4904, 4906, 4905, 4903 ] }, { "id": "unconnected", - "bg": 4736, + "bg": 4768, "fg": [ - { "weight": 100, "sprite": 4879 }, - { "weight": 100, "sprite": 4880 }, - { "weight": 100, "sprite": 4881 }, - { "weight": 100, "sprite": 4882 } + { "weight": 100, "sprite": 4911 }, + { "weight": 100, "sprite": 4912 }, + { "weight": 100, "sprite": 4913 }, + { "weight": 100, "sprite": 4914 } ] } ] @@ -7529,462 +7563,593 @@ { "id": "t_grass_tall_season_autumn", "multitile": true, - "fg": 4857, - "bg": 4735, + "fg": 4889, + "bg": 4767, "additional_tiles": [ { "id": "center", - "bg": 4735, + "bg": 4767, "fg": [ - { "weight": 100, "sprite": 4839 }, - { "weight": 100, "sprite": 4840 }, - { "weight": 100, "sprite": 4841 }, - { "weight": 100, "sprite": 4842 } + { "weight": 100, "sprite": 4871 }, + { "weight": 100, "sprite": 4872 }, + { "weight": 100, "sprite": 4873 }, + { "weight": 100, "sprite": 4874 } ] }, - { "id": "corner", "bg": 4735, "fg": [ 4844, 4846, 4845, 4843 ] }, - { "id": "t_connection", "bg": 4735, "fg": [ 4854, 4856, 4855, 4853 ] }, - { "id": "edge", "bg": 4735, "fg": [ 4848, 4847 ] }, - { "id": "end_piece", "bg": 4735, "fg": [ 4850, 4852, 4851, 4849 ] }, + { "id": "corner", "bg": 4767, "fg": [ 4876, 4878, 4877, 4875 ] }, + { "id": "t_connection", "bg": 4767, "fg": [ 4886, 4888, 4887, 4885 ] }, + { "id": "edge", "bg": 4767, "fg": [ 4880, 4879 ] }, + { "id": "end_piece", "bg": 4767, "fg": [ 4882, 4884, 4883, 4881 ] }, { "id": "unconnected", - "bg": 4735, + "bg": 4767, "fg": [ - { "weight": 100, "sprite": 4857 }, - { "weight": 100, "sprite": 4858 }, - { "weight": 100, "sprite": 4859 }, - { "weight": 100, "sprite": 4860 } + { "weight": 100, "sprite": 4889 }, + { "weight": 100, "sprite": 4890 }, + { "weight": 100, "sprite": 4891 }, + { "weight": 100, "sprite": 4892 } ] } ] }, - { "id": "t_grass_tall_season_winter", "fg": 4731 }, - { "id": "t_gutter_downspout", "fg": 4883, "bg": 4737 }, - { "id": "t_gutter_downspout_season_autumn", "fg": 4883, "bg": 4735 }, - { "id": "t_gutter_downspout_season_summer", "fg": 4883, "bg": 4736 }, - { "id": "t_gutter_downspout_season_winter", "fg": 4883, "bg": 4732 }, - { "id": "t_little_column", "fg": 4884, "bg": 4733 }, - { "id": "t_stairs_up", "fg": 4886 }, - { "id": "t_wood_stairs_up", "fg": 4887 }, - { "id": "t_utility_light", "fg": 4888 }, + { "id": "t_grass_tall_season_winter", "fg": 4763 }, + { "id": "t_gutter_downspout", "fg": 4915, "bg": 4769 }, + { "id": "t_gutter_downspout_season_autumn", "fg": 4915, "bg": 4767 }, + { "id": "t_gutter_downspout_season_summer", "fg": 4915, "bg": 4768 }, + { "id": "t_gutter_downspout_season_winter", "fg": 4915, "bg": 4764 }, + { "id": "t_little_column", "fg": 4916, "bg": 4765 }, + { "id": "t_stairs_up", "fg": 4918 }, + { "id": "t_wood_stairs_up", "fg": 4919 }, + { "id": "t_utility_light", "fg": 4920 }, + { + "id": [ "vp_door_rear", "vp_door_horizontal_rear" ], + "fg": [ 4945, 4934, 4948, 4928 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4946, 4931, 4947, 4929 ] }, + { "id": "broken", "fg": [ 4927, 4927, 4927, 4927 ], "bg": [ 4946, 4931, 4947, 4929 ] } + ] + }, + { + "id": [ "vp_door_front", "vp_door_horizontal_front" ], + "fg": [ 4948, 4928, 4945, 4934 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4947, 4929, 4946, 4931 ] }, + { "id": "broken", "fg": [ 4927, 4927, 4927, 4927 ], "bg": [ 4947, 4929, 4946, 4931 ] } + ] + }, + { + "id": [ "vp_door_opaque_rear", "vp_door_opaque_horizontal_rear" ], + "fg": [ 4943, 4934, 4944, 4928 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4946, 4939, 4947, 4938 ] }, + { "id": "broken", "fg": [ 4927, 4927, 4927, 4927 ], "bg": [ 4946, 4939, 4947, 4938 ] } + ] + }, + { + "id": [ "vp_door_opaque_front", "vp_door_opaque_horizontal_front" ], + "fg": [ 4944, 4928, 4943, 4934 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4947, 4938, 4946, 4939 ] }, + { "id": "broken", "fg": [ 4927, 4927, 4927, 4927 ], "bg": [ 4947, 4938, 4946, 4939 ] } + ] + }, + { + "id": "vp_door_sliding", + "fg": [ 4934, 4944, 4928, 4942 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4971, 4972, 4973, 4974 ] }, + { "id": "broken", "fg": [ 4927, 4927, 4927, 4927 ], "bg": [ 4971, 4972, 4973, 4974 ] } + ] + }, + { + "id": [ + "vp_door_full_left", + "vp_door_full_vertical_left", + "vp_door_full_nw", + "vp_door_full_front_left", + "vp_door_full_sw", + "vp_door_full_rear_left" + ], + "fg": [ 4928, 4935, 4934, 4933 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4929, 4932, 4931, 4930 ] }, + { "id": "broken", "fg": [ 4927, 4927, 4927, 4927 ], "bg": [ 4929, 4932, 4931, 4930 ] } + ] + }, + { + "id": [ + "vp_door_full_right", + "vp_door_full_vertical_right", + "vp_door_full_ne", + "vp_door_full_front_right", + "vp_door_full_se", + "vp_door_full_rear_right" + ], + "fg": [ 4934, 4948, 4928, 4937 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4931, 4947, 4929, 4936 ] }, + { "id": "broken", "fg": [ 4927, 4927, 4927, 4927 ], "bg": [ 4931, 4947, 4929, 4936 ] } + ] + }, + { + "id": "vp_door_opaque_full_left", + "fg": [ 4928, 4941, 4934, 4940 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4938, 4932, 4939, 4930 ] }, + { "id": "broken", "fg": [ 4927, 4927, 4927, 4927 ], "bg": [ 4938, 4932, 4939, 4930 ] } + ] + }, + { + "id": "vp_door_opaque_full_right", + "fg": [ 4934, 4944, 4928, 4942 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4939, 4947, 4938, 4936 ] }, + { "id": "broken", "fg": [ 4927, 4927, 4927, 4927 ], "bg": [ 4939, 4947, 4938, 4936 ] } + ] + }, + { + "id": [ "vp_door", "vp_door_internal", "vp_door_opaque" ], + "fg": [ 4956, 4960, 4958, 4955 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4957, 4954, 4959, 4953 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 4957, 4954, 4959, 4953 ] } + ] + }, + { + "id": "vp_door_internal_front", + "fg": [ 4944, 4928, 4952, 4934 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4947, 4951, 4950, 4949 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 4947, 4951, 4950, 4949 ] } + ] + }, + { + "id": "vp_door_shutter", + "fg": [ 4963, 4961, 4962, 4964 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4968, 4966, 4967, 4969 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 4968, 4966, 4967, 4969 ] } + ] + }, + { + "id": "vp_door_shutter_left", + "fg": [ 4964, 4965, 4961, 4962 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4969, 4970, 4966, 4967 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 4969, 4970, 4966, 4967 ] } + ] + }, + { + "id": "vp_door_shutter_right", + "fg": [ 4961, 4962, 4964, 4965 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4966, 4967, 4969, 4970 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 4966, 4967, 4969, 4970 ] } + ] + }, { "id": "vp_frame_handle", - "fg": [ 4897, 4899, 4898, 4896 ], + "fg": [ 4976, 4978, 4977, 4975 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4897, 4899, 4898, 4896 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4976, 4978, 4977, 4975 ] } ] }, { "id": "vp_stowboard_ne", - "fg": [ 4905, 4908, 4907, 4906 ], + "fg": [ 4985, 4988, 4987, 4986 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4905, 4908, 4907, 4906 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4985, 4988, 4987, 4986 ] } ] }, { "id": "vp_stowboard_nw", - "fg": [ 4909, 4912, 4911, 4910 ], + "fg": [ 4988, 4990, 4989, 4985 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4909, 4912, 4911, 4910 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4988, 4990, 4989, 4985 ] } ] }, { "id": "vp_stowboard_se", - "fg": [ 4913, 4915, 4909, 4914 ], + "fg": [ 4991, 4985, 4988, 4992 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4913, 4915, 4909, 4914 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4991, 4985, 4988, 4992 ] } ] }, { "id": "vp_stowboard_sw", - "fg": [ 4916, 4918, 4905, 4917 ], + "fg": [ 4993, 4994, 4985, 4988 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4916, 4918, 4905, 4917 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4993, 4994, 4985, 4988 ] } ] }, { "id": "vp_stowboard_vertical_left", - "fg": [ 4919, 4921, 4922, 4920 ], + "fg": [ 4982, 4995, 4980, 4979 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4919, 4921, 4922, 4920 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4982, 4995, 4980, 4979 ] } ] }, { "id": "vp_stowboard_vertical_right", - "fg": [ 4922, 4920, 4919, 4921 ], + "fg": [ 4980, 4979, 4982, 4995 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4922, 4920, 4919, 4921 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4980, 4979, 4982, 4995 ] } ] }, { "id": [ "vp_stowboard_horizontal", "vp_stowboard_horizontal_2" ], - "fg": [ 4900, 4923, 4900, 4923 ], + "fg": [ 4979, 4984, 4979, 4996 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4900, 4923, 4900, 4923 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4979, 4984, 4979, 4996 ] } ] }, { "id": "vp_stowboard_horizontal_front", - "fg": [ 4900, 4903, 4902, 4901 ], + "fg": [ 4979, 4982, 4981, 4980 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4900, 4903, 4902, 4901 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4979, 4982, 4981, 4980 ] } ] }, { "id": "vp_stowboard_horizontal_rear", - "fg": [ 4904, 4901, 4900, 4903 ], + "fg": [ 4983, 4980, 4979, 4982 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4904, 4901, 4900, 4903 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4983, 4980, 4979, 4982 ] } ] }, { "id": [ "vp_stowboard_vertical", "vp_stowboard_vertical_2" ], - "fg": [ 4923, 4900, 4923, 4900 ], + "fg": [ 4996, 4979, 4996, 4979 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4923, 4900, 4923, 4900 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4996, 4979, 4996, 4979 ] } ] }, { "id": "vp_stowboard_wheel_left", - "fg": [ 4903, 4924, 4901, 4920 ], + "fg": [ 4982, 4997, 4980, 4979 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4903, 4924, 4901, 4920 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4982, 4997, 4980, 4979 ] } ] }, { "id": "vp_stowboard_wheel_right", - "fg": [ 4901, 4920, 4903, 4924 ], + "fg": [ 4980, 4979, 4982, 4997 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 4901, 4920, 4903, 4924 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 4980, 4979, 4982, 4997 ] } ] }, { "id": "vp_door_trunk", - "fg": [ 4925, 4932, 4931, 4930 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 4926, 4929, 4928, 4927 ] }, - { "id": "broken", "fg": [ 4895, 4895, 4895, 4895 ], "bg": [ 4926, 4929, 4928, 4927 ] } - ] - }, - { - "id": "vp_door_trunk_horizontal_2", - "fg": [ 4933, 4940, 4939, 4938 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 4934, 4937, 4936, 4935 ] }, - { "id": "broken", "fg": [ 4895, 4895, 4895, 4895 ], "bg": [ 4934, 4937, 4936, 4935 ] } - ] - }, - { "id": "f_dishwasher", "fg": 4515 }, - { "id": "f_wardrobe", "fg": 4517 }, - { "id": "f_treadmill", "fg": 4521 }, - { "id": "f_capacitor", "fg": 4522 }, - { "id": "f_exodii_charger", "fg": 4523 }, - { "id": "f_exodii_charger_cheap", "fg": 4524 }, - { "id": "f_exodii_lamp", "fg": 4525 }, - { "id": "f_exodii_portal_tower", "fg": 4526 }, - { "id": "f_exodii_scanner", "fg": 4527 }, - { "id": "f_bigmirror", "fg": 4531 }, - { "id": "f_bigmirror_b", "fg": 4532 }, - { "id": "f_canvas_floor", "fg": 4539 }, - { "id": "f_ladder", "fg": 4624 }, - { "id": "f_alien_gasper", "fg": 4634 }, - { "id": "f_street_light", "fg": 4666 }, - { "id": "f_traffic_light", "fg": 4667 }, - { "id": "f_glow_boulder", "fg": 4668 }, - { "id": "f_magic_bench", "fg": 4669 }, - { "id": "rid_mon_mech_combat", "fg": 4672 }, - { "id": "rid_mon_mech_recon", "fg": 4673 }, - { "id": "mon_gracke", "fg": 4680 }, - { "id": "mon_zombie_necro_boomer", "fg": 4698 }, - { "id": "mon_zombie_soldier_blackops_1", "fg": 4699 }, - { "id": "mon_robofac_prototype", "fg": 4700 }, - { "id": "overlay_effect_playing_instrument", "fg": 4705 }, - { "id": "overlay_wielded_mattress", "fg": 4706 }, - { "id": "overlay_wielded_fishing_rod_basic", "fg": 4707 }, - { "id": "overlay_wielded_fishing_rod_professional", "fg": 4708 }, - { "id": "t_ladder_up", "fg": 4745 }, - { "id": "t_ladder_up_down", "fg": 4746 }, - { "id": "t_radio_tower", "fg": 4885 }, - { "id": "t_window_stained_blue", "fg": 4889 }, - { "id": "t_window_stained_green", "fg": 4890 }, - { "id": "t_window_stained_red", "fg": 4891 }, - { "id": "crack_glass_center_tall", "fg": 4892 }, - { "id": "crack_glass_left_tall", "fg": 4893 }, - { "id": "crack_glass_right_tall", "fg": 4894 }, - { "id": "vp_travois", "fg": 4941 } + "fg": [ 4998, 5005, 5004, 5003 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 4999, 5002, 5001, 5000 ] }, + { "id": "broken", "fg": [ 4927, 4927, 4927, 4927 ], "bg": [ 4999, 5002, 5001, 5000 ] } + ] + }, + { "id": "f_dishwasher", "fg": 4547 }, + { "id": "f_wardrobe", "fg": 4549 }, + { "id": "f_treadmill", "fg": 4553 }, + { "id": "f_capacitor", "fg": 4554 }, + { "id": "f_exodii_charger", "fg": 4555 }, + { "id": "f_exodii_charger_cheap", "fg": 4556 }, + { "id": "f_exodii_lamp", "fg": 4557 }, + { "id": "f_exodii_portal_tower", "fg": 4558 }, + { "id": "f_exodii_scanner", "fg": 4559 }, + { "id": "f_bigmirror", "fg": 4563 }, + { "id": "f_bigmirror_b", "fg": 4564 }, + { "id": "f_canvas_floor", "fg": 4571 }, + { "id": "f_ladder", "fg": 4656 }, + { "id": "f_alien_gasper", "fg": 4666 }, + { "id": "f_street_light", "fg": 4698 }, + { "id": "f_traffic_light", "fg": 4699 }, + { "id": "f_glow_boulder", "fg": 4700 }, + { "id": "f_magic_bench", "fg": 4701 }, + { "id": "rid_mon_mech_combat", "fg": 4704 }, + { "id": "rid_mon_mech_recon", "fg": 4705 }, + { "id": "mon_gracke", "fg": 4712 }, + { "id": "mon_zombie_necro_boomer", "fg": 4730 }, + { "id": "mon_zombie_soldier_blackops_1", "fg": 4731 }, + { "id": "mon_robofac_prototype", "fg": 4732 }, + { "id": "overlay_effect_playing_instrument", "fg": 4737 }, + { "id": "overlay_wielded_mattress", "fg": 4738 }, + { "id": "overlay_wielded_fishing_rod_basic", "fg": 4739 }, + { "id": "overlay_wielded_fishing_rod_professional", "fg": 4740 }, + { "id": "t_ladder_up", "fg": 4777 }, + { "id": "t_ladder_up_down", "fg": 4778 }, + { "id": "t_radio_tower", "fg": 4917 }, + { "id": "t_window_stained_blue", "fg": 4921 }, + { "id": "t_window_stained_green", "fg": 4922 }, + { "id": "t_window_stained_red", "fg": 4923 }, + { "id": "crack_glass_center_tall", "fg": 4924 }, + { "id": "crack_glass_left_tall", "fg": 4925 }, + { "id": "crack_glass_right_tall", "fg": 4926 }, + { "id": "vp_travois", "fg": 5006 } ] }, { "file": "human_body.png", - "//": "range 4944 to 6655", + "//": "range 5008 to 6719", "sprite_width": 32, "sprite_height": 36, "sprite_offset_x": 0, "sprite_offset_y": -8, "tiles": [ - { "id": [ "fd_cigsmoke", "fd_weedsmoke", "fd_cracksmoke", "fd_methsmoke" ], "fg": 4944 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_3DAYSTUBBLE", "fg": 4950 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_3DAYSTUBBLE", "fg": 4951 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_ANCHOR", "fg": 4952 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_ANCHOR", "fg": 4953 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_BEARD", "fg": 4954 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_BEARD", "fg": 4955 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_CHEVRON", "fg": 4956 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_CHEVRON", "fg": 4957 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_CURTAIN", "fg": 4958 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_CURTAIN", "fg": 4959 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_STRAP", "fg": 4960 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_STRAP", "fg": 4961 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_STRIP", "fg": 4962 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_STRIP", "fg": 4963 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_CIRCLE", "fg": 4964 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_CIRCLE", "fg": 4965 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_GOATEE", "fg": 4966 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_GOATEE", "fg": 4967 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_GUNSLINGER", "fg": 4968 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_GUNSLINGER", "fg": 4969 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_HANDLEBAR", "fg": 4970 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_HANDLEBAR", "fg": 4971 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_HORSESHOE", "fg": 4972 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_HORSESHOE", "fg": 4973 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_MUSTACHE", "fg": 4978 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_MUSTACHE", "fg": 4979 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_MUTTONCHOPS", "fg": 4974 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_MUTTONCHOPS", "fg": 4975 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_NECKBEARD", "fg": 4976 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_NECKBEARD", "fg": 4977 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_PENCIL", "fg": 4980 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_PENCIL", "fg": 4981 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_ROYALE", "fg": 4982 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_ROYALE", "fg": 4983 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_SHENANDOAH", "fg": 4984 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_SHENANDOAH", "fg": 4985 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_SHORTBOXED", "fg": 4986 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_SHORTBOXED", "fg": 4987 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_SIDEBURNS", "fg": 4988 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_SIDEBURNS", "fg": 4989 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_SOUL_PATCH", "fg": 4990 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_SOUL_PATCH", "fg": 4991 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_TOOTHBRUSH", "fg": 4994 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_TOOTHBRUSH", "fg": 4995 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_VANDYKE", "fg": 4996 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_VANDYKE", "fg": 4997 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_WALRUS", "fg": 4998 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_WALRUS", "fg": 4999 }, - { "id": "overlay_female_mutation_FACIAL_HAIR_ZAPPA", "fg": 4992 }, - { "id": "overlay_male_mutation_FACIAL_HAIR_ZAPPA", "fg": 4993 }, - { "id": "overlay_male_mutation_hair_black_crewcut", "fg": 5001 }, - { "id": "overlay_female_mutation_hair_black_crewcut", "fg": 5000 }, - { "id": "overlay_male_mutation_hair_black_fro", "fg": 5003 }, - { "id": "overlay_female_mutation_hair_black_fro", "fg": 5002 }, - { "id": "overlay_male_mutation_hair_black_long", "fg": 5005 }, - { "id": "overlay_female_mutation_hair_black_long", "fg": 5004 }, - { "id": "overlay_male_mutation_hair_black_medium", "fg": 5007 }, - { "id": "overlay_female_mutation_hair_black_medium", "fg": 5006 }, - { "id": "overlay_male_mutation_hair_black_mohawk", "fg": 5009 }, - { "id": "overlay_female_mutation_hair_black_mohawk", "fg": 5008 }, - { "id": "overlay_male_mutation_hair_black_short", "fg": 5011 }, - { "id": "overlay_female_mutation_hair_black_short", "fg": 5010 }, - { "id": "overlay_male_mutation_hair_blond_crewcut", "fg": 5013 }, - { "id": "overlay_female_mutation_hair_blond_crewcut", "fg": 5012 }, - { "id": "overlay_male_mutation_hair_blond_fro", "fg": 5015 }, - { "id": "overlay_female_mutation_hair_blond_fro", "fg": 5014 }, - { "id": "overlay_male_mutation_hair_blond_long", "fg": 5017 }, - { "id": "overlay_female_mutation_hair_blond_long", "fg": 5016 }, - { "id": "overlay_male_mutation_hair_blond_medium", "fg": 5019 }, - { "id": "overlay_female_mutation_hair_blond_medium", "fg": 5018 }, - { "id": "overlay_male_mutation_hair_blond_mohawk", "fg": 5021 }, - { "id": "overlay_female_mutation_hair_blond_mohawk", "fg": 5020 }, - { "id": "overlay_male_mutation_hair_blond_short", "fg": 5023 }, - { "id": "overlay_female_mutation_hair_blond_short", "fg": 5022 }, - { "id": "overlay_male_mutation_hair_brown_crewcut", "fg": 5025 }, - { "id": "overlay_female_mutation_hair_brown_crewcut", "fg": 5024 }, - { "id": "overlay_male_mutation_hair_brown_fro", "fg": 5027 }, - { "id": "overlay_female_mutation_hair_brown_fro", "fg": 5026 }, - { "id": "overlay_male_mutation_hair_brown_long", "fg": 5029 }, - { "id": "overlay_female_mutation_hair_brown_long", "fg": 5028 }, - { "id": "overlay_male_mutation_hair_brown_medium", "fg": 5031 }, - { "id": "overlay_female_mutation_hair_brown_medium", "fg": 5030 }, - { "id": "overlay_male_mutation_hair_brown_mohawk", "fg": 5033 }, - { "id": "overlay_female_mutation_hair_brown_mohawk", "fg": 5032 }, - { "id": "overlay_male_mutation_hair_brown_short", "fg": 5035 }, - { "id": "overlay_female_mutation_hair_brown_short", "fg": 5034 }, - { "id": "overlay_male_mutation_hair_gray_crewcut", "fg": 5037 }, - { "id": "overlay_female_mutation_hair_gray_crewcut", "fg": 5036 }, - { "id": "overlay_male_mutation_hair_gray_fro", "fg": 5039 }, - { "id": "overlay_female_mutation_hair_gray_fro", "fg": 5038 }, - { "id": "overlay_male_mutation_hair_gray_long", "fg": 5041 }, - { "id": "overlay_female_mutation_hair_gray_long", "fg": 5040 }, - { "id": "overlay_male_mutation_hair_gray_medium", "fg": 5043 }, - { "id": "overlay_female_mutation_hair_gray_medium", "fg": 5042 }, - { "id": "overlay_male_mutation_hair_gray_mohawk", "fg": 5045 }, - { "id": "overlay_female_mutation_hair_gray_mohawk", "fg": 5044 }, - { "id": "overlay_male_mutation_hair_gray_short", "fg": 5047 }, - { "id": "overlay_female_mutation_hair_gray_short", "fg": 5046 }, - { "id": "overlay_male_mutation_hair_red_crewcut", "fg": 5049 }, - { "id": "overlay_female_mutation_hair_red_crewcut", "fg": 5048 }, - { "id": "overlay_male_mutation_hair_red_fro", "fg": 5051 }, - { "id": "overlay_female_mutation_hair_red_fro", "fg": 5050 }, - { "id": "overlay_male_mutation_hair_red_long", "fg": 5053 }, - { "id": "overlay_female_mutation_hair_red_long", "fg": 5052 }, - { "id": "overlay_male_mutation_hair_red_medium", "fg": 5055 }, - { "id": "overlay_female_mutation_hair_red_medium", "fg": 5054 }, - { "id": "overlay_male_mutation_hair_red_mohawk", "fg": 5057 }, - { "id": "overlay_female_mutation_hair_red_mohawk", "fg": 5056 }, - { "id": "overlay_male_mutation_hair_red_short", "fg": 5059 }, - { "id": "overlay_female_mutation_hair_red_short", "fg": 5058 }, - { "id": "overlay_male_mutation_hair_white_crewcut", "fg": 5061 }, - { "id": "overlay_female_mutation_hair_white_crewcut", "fg": 5060 }, - { "id": "overlay_male_mutation_hair_white_fro", "fg": 5063 }, - { "id": "overlay_female_mutation_hair_white_fro", "fg": 5062 }, - { "id": "overlay_male_mutation_hair_white_long", "fg": 5065 }, - { "id": "overlay_female_mutation_hair_white_long", "fg": 5064 }, - { "id": "overlay_male_mutation_hair_white_medium", "fg": 5067 }, - { "id": "overlay_female_mutation_hair_white_medium", "fg": 5066 }, - { "id": "overlay_male_mutation_hair_white_mohawk", "fg": 5069 }, - { "id": "overlay_female_mutation_hair_white_mohawk", "fg": 5068 }, - { "id": "overlay_male_mutation_hair_white_short", "fg": 5071 }, - { "id": "overlay_female_mutation_hair_white_short", "fg": 5070 }, - { "id": "overlay_female_mutation_ARACHNID_ARMS", "fg": 5072 }, - { "id": "overlay_male_mutation_ARACHNID_ARMS", "fg": 5073 }, - { "id": "overlay_female_mutation_BEAK", "fg": 5080 }, - { "id": "overlay_male_mutation_BEAK", "fg": 5081 }, - { "id": "overlay_female_mutation_BEAK_HUM", "fg": 5082 }, - { "id": "overlay_male_mutation_BEAK_HUM", "fg": 5083 }, - { "id": "overlay_female_mutation_BEAK_PECK", "fg": 5084 }, - { "id": "overlay_male_mutation_BEAK_PECK", "fg": 5085 }, - { "id": "overlay_female_mutation_BIRD_EYE", "fg": 5086 }, - { "id": "overlay_male_mutation_BIRD_EYE", "fg": 5087 }, - { "id": "overlay_female_mutation_FANGS", "fg": 5090 }, - { "id": "overlay_male_mutation_FANGS", "fg": 5091 }, - { "id": "overlay_female_mutation_LEAVES", "fg": 5100 }, - { "id": "overlay_male_mutation_LEAVES", "fg": 5101 }, - { "id": "overlay_female_mutation_LIZ_EYE", "fg": 5102 }, - { "id": "overlay_male_mutation_LIZ_EYE", "fg": 5103 }, - { "id": "overlay_female_mutation_MUZZLE", "fg": 5112 }, - { "id": "overlay_male_mutation_MUZZLE", "fg": 5113 }, - { "id": "overlay_female_mutation_MUZZLE_LONG", "fg": 5114 }, - { "id": "overlay_male_mutation_MUZZLE_LONG", "fg": 5115 }, - { "id": "overlay_female_mutation_SABER_TEETH", "fg": 5116 }, - { "id": "overlay_male_mutation_SABER_TEETH", "fg": 5117 }, - { "id": "overlay_female_mutation_TAIL_THICK", "fg": 5126 }, - { "id": "overlay_male_mutation_TAIL_THICK", "fg": 5127 }, - { "id": "overlay_female_mutation_TALONS", "fg": 5128 }, - { "id": "overlay_male_mutation_TALONS", "fg": 5129 }, - { "id": "overlay_female_mutation_VINES1", "fg": 5130 }, - { "id": "overlay_male_mutation_VINES1", "fg": 5131 }, - { "id": "overlay_female_mutation_WINGS_BIRD", "fg": 5134 }, - { "id": "overlay_male_mutation_WINGS_BIRD", "fg": 5135 }, - { "id": "overlay_female_mutation_CHITIN", "fg": 5138 }, - { "id": "overlay_male_mutation_CHITIN", "fg": 5139 }, - { "id": "overlay_female_mutation_CHITIN2", "fg": 5136 }, - { "id": "overlay_male_mutation_CHITIN2", "fg": 5137 }, - { "id": "overlay_female_mutation_FEATHERS", "fg": 5140 }, - { "id": "overlay_male_mutation_FEATHERS", "fg": 5141 }, - { "id": "overlay_female_mutation_SCALES", "fg": 5154 }, - { "id": "overlay_male_mutation_SCALES", "fg": 5155 }, - { "id": "overlay_female_mutation_PLANTSKIN", "fg": 5152 }, - { "id": "overlay_male_mutation_PLANTSKIN", "fg": 5153 }, - { "id": "overlay_female_mutation_LUPINE_FUR", "fg": 5142 }, - { "id": "overlay_male_mutation_LUPINE_FUR", "fg": 5143 }, - { "id": "overlay_female_mutation_SKIN_DARK", "fg": 5156 }, - { "id": "overlay_male_mutation_SKIN_DARK", "fg": 5157 }, - { "id": "overlay_female_mutation_SKIN_LIGHT", "fg": 5158 }, - { "id": "overlay_male_mutation_SKIN_LIGHT", "fg": 5159 }, - { "id": "overlay_female_mutation_SKIN_PINK", "fg": 5160 }, - { "id": "overlay_male_mutation_SKIN_PINK", "fg": 5161 }, - { "id": "overlay_female_mutation_SKIN_TAN", "fg": 5162 }, - { "id": "overlay_male_mutation_SKIN_TAN", "fg": 5163 }, - { "id": "overlay_female_mutation_PALE", "fg": 5150 }, - { "id": "overlay_male_mutation_PALE", "fg": 5151 }, - { "id": "overlay_female_mutation_ALBINO", "fg": 5144 }, - { "id": "overlay_male_mutation_ALBINO", "fg": 5147 }, - { "id": "overlay_wielded_arming_sword_fake", "fg": 5220 }, - { "id": "overlay_wielded_arming_sword_inferior", "fg": 5220 }, - { "id": "overlay_wielded_battleaxe_inferior", "fg": 5169 }, - { "id": "overlay_wielded_battleaxe_fake", "fg": 5169 }, - { "id": "overlay_wielded_broadsword_inferior", "fg": 5519 }, - { "id": "overlay_wielded_broadsword_fake", "fg": 5519 }, - { "id": "overlay_wielded_cavalry_sabre_fake", "fg": 5173 }, - { "id": "overlay_wielded_cutlass_fake", "fg": 5175 }, - { "id": "overlay_wielded_cutlass_inferior", "fg": 5175 }, - { "id": "overlay_wielded_estoc_inferior", "fg": 5571 }, - { "id": "overlay_wielded_estoc_fake", "fg": 5571 }, - { "id": "overlay_female_wielded_halberd_fake", "fg": 5599 }, - { "id": "overlay_male_wielded_halberd_fake", "fg": 5600 }, - { "id": "overlay_wielded_jian_fake", "fg": 5181 }, - { "id": "overlay_wielded_jian_inferior", "fg": 5181 }, - { "id": "overlay_wielded_katana_fake", "fg": 5618 }, - { "id": "overlay_wielded_katana_inferior", "fg": 5618 }, - { "id": "overlay_wielded_kris_fake", "fg": 5624 }, - { "id": "overlay_wielded_longsword_fake", "fg": 5627 }, - { "id": "overlay_wielded_longsword_inferior", "fg": 5627 }, - { "id": "overlay_female_wielded_lucern_hammerfake", "fg": 5628 }, - { "id": "overlay_male_wielded_lucern_hammerfake", "fg": 5629 }, - { "id": "overlay_wielded_mace_inferior", "fg": 5630 }, - { "id": "overlay_wielded_mace_fake", "fg": 5630 }, - { "id": "overlay_wielded_morningstar_fake", "fg": 5631 }, - { "id": "overlay_wielded_morningstar_inferior", "fg": 5631 }, - { "id": "overlay_female_wielded_naginata_fake", "fg": 5192 }, - { "id": "overlay_male_wielded_naginata_fake", "fg": 5193 }, - { "id": "overlay_female_wielded_naginata_inferior", "fg": 5192 }, - { "id": "overlay_male_wielded_naginata_inferior", "fg": 5193 }, - { "id": "overlay_wielded_nodachi_inferior", "fg": 5684 }, - { "id": "overlay_wielded_nodachi_fake", "fg": 5684 }, - { "id": "overlay_wielded_pike_fake", "fg": 4711 }, - { "id": "overlay_wielded_pike_inferior", "fg": 4711 }, - { "id": "overlay_wielded_rapier_fake", "fg": 5712 }, - { "id": "overlay_wielded_tanto_inferior", "fg": 5825 }, - { "id": "overlay_wielded_tanto_fake", "fg": 5825 }, - { "id": "overlay_wielded_wakizashi_fake", "fg": 5849 }, - { "id": "overlay_wielded_wakizashi_inferior", "fg": 5849 }, - { "id": "overlay_wielded_zweihander_fake", "fg": 5871 }, - { "id": "overlay_wielded_zweihander_inferior", "fg": 5871 }, - { "id": "overlay_female_wielded_1st_aid", "fg": 5164 }, - { "id": "overlay_male_wielded_1st_aid", "fg": 5165 }, - { "id": "overlay_female_wielded_2x4", "fg": 5166 }, - { "id": "overlay_male_wielded_2x4", "fg": 5167 }, - { "id": "overlay_wielded_bowling_axe", "fg": 5168 }, - { "id": "overlay_wielded_battleaxe", "fg": 5169 }, - { "id": "overlay_wielded_knife_butcher", "fg": 5170 }, - { "id": "overlay_female_wielded_butterfly_swords", "fg": 5171 }, - { "id": "overlay_male_wielded_butterfly_swords", "fg": 5172 }, - { "id": "overlay_wielded_cavalry_sabre", "fg": 5173 }, - { "id": "overlay_wielded_sword_crude", "fg": 5174 }, - { "id": "overlay_wielded_cutlass", "fg": 5175 }, - { "id": "overlay_wielded_dao", "fg": 5176 }, - { "id": "overlay_wielded_diveknife", "fg": 5177 }, - { "id": "overlay_female_wielded_glaive", "fg": 5178 }, - { "id": "overlay_male_wielded_glaive", "fg": 5179 }, - { "id": "overlay_wielded_glass_shiv", "fg": 5180 }, - { "id": "overlay_wielded_jian", "fg": 5181 }, - { "id": "overlay_wielded_khopesh", "fg": 5182 }, - { "id": "overlay_wielded_kukri", "fg": 5183 }, - { "id": "overlay_wielded_lajatang", "fg": 5184 }, - { "id": "overlay_wielded_machete", "fg": 5185 }, - { "id": "overlay_female_wielded_makeshift_halberd", "fg": 5186 }, - { "id": "overlay_male_wielded_makeshift_halberd", "fg": 5187 }, - { "id": "overlay_wielded_makeshift_machete", "fg": 5188 }, - { "id": "overlay_wielded_glass_macuahuitl", "fg": 5189 }, - { "id": "overlay_female_wielded_makeshift_scythe_war", "fg": 5190 }, - { "id": "overlay_male_wielded_makeshift_scythe_war", "fg": 5191 }, - { "id": "overlay_female_wielded_naginata", "fg": 5192 }, - { "id": "overlay_male_wielded_naginata", "fg": 5193 }, - { "id": "overlay_wielded_knuckle_katar", "fg": 5194 }, - { "id": "overlay_wielded_scimitar", "fg": 5195 }, - { "id": "overlay_wielded_scythe", "fg": 5196 }, - { "id": "overlay_wielded_survivor_machete", "fg": 5197 }, - { "id": "overlay_wielded_sword_bayonet", "fg": 5198 }, - { "id": "overlay_female_wielded_bagh_nakha", "fg": 5199 }, - { "id": "overlay_male_wielded_bagh_nakha", "fg": 5200 }, - { "id": "overlay_female_wielded_scythe_war", "fg": 5201 }, - { "id": "overlay_male_wielded_scythe_war", "fg": 5202 }, - { "id": "overlay_wielded_sword_xiphos", "fg": 5203 }, - { "id": "overlay_wielded_acoustic_guitar", "fg": 5208 }, - { "id": "overlay_worn_acoustic_guitar", "fg": 5208 }, - { "id": "overlay_female_wielded_stepladder", "fg": 5218 }, - { "id": "overlay_male_wielded_stepladder", "fg": 5219 }, - { "id": "overlay_wielded_arming_sword", "fg": 5220 }, - { "id": [ "overlay_wielded_m16_auto_rifle_var_acr", "overlay_wielded_acr_300blk" ], "fg": 5324 }, - { "id": [ "overlay_wielded_ak47", "overlay_wielded_aksemi" ], "fg": 5234 }, - { "id": [ "overlay_wielded_carbine_flintlock", "overlay_wielded_carbine_flintlock_double" ], "fg": 5252 }, - { "id": [ "overlay_wielded_hk_mp5", "overlay_wielded_hk_mp5_10_semi" ], "fg": 5298 }, - { "id": [ "overlay_wielded_hptjcp", "overlay_wielded_hptjhp" ], "fg": 5306 }, - { "id": [ "overlay_wielded_longrifle_flintlock", "overlay_wielded_rifle_flintlock" ], "fg": 5320 }, - { "id": [ "overlay_wielded_m16a4", "overlay_wielded_m16_auto_rifle_var_m16a3" ], "fg": 5325 }, - { "id": [ "overlay_wielded_m1911", "overlay_wielded_m1911a1_38super" ], "fg": 5330 }, - { "id": [ "overlay_wielded_m249", "overlay_wielded_m249_semi" ], "fg": 5339 }, - { "id": [ "overlay_wielded_m60", "overlay_wielded_m60_semi" ], "fg": 5350 }, - { "id": [ "overlay_wielded_mp40", "overlay_wielded_mp40semi" ], "fg": 5375 }, + { "id": [ "fd_cigsmoke", "fd_weedsmoke", "fd_cracksmoke", "fd_methsmoke" ], "fg": 5008 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_3DAYSTUBBLE", "fg": 5014 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_3DAYSTUBBLE", "fg": 5015 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_ANCHOR", "fg": 5016 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_ANCHOR", "fg": 5017 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_BEARD", "fg": 5018 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_BEARD", "fg": 5019 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_CHEVRON", "fg": 5020 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_CHEVRON", "fg": 5021 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_CURTAIN", "fg": 5022 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_CURTAIN", "fg": 5023 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_STRAP", "fg": 5024 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_STRAP", "fg": 5025 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_CHIN_STRIP", "fg": 5026 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_CHIN_STRIP", "fg": 5027 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_CIRCLE", "fg": 5028 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_CIRCLE", "fg": 5029 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_GOATEE", "fg": 5030 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_GOATEE", "fg": 5031 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_GUNSLINGER", "fg": 5032 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_GUNSLINGER", "fg": 5033 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_HANDLEBAR", "fg": 5034 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_HANDLEBAR", "fg": 5035 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_HORSESHOE", "fg": 5036 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_HORSESHOE", "fg": 5037 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_MUSTACHE", "fg": 5042 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_MUSTACHE", "fg": 5043 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_MUTTONCHOPS", "fg": 5038 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_MUTTONCHOPS", "fg": 5039 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_NECKBEARD", "fg": 5040 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_NECKBEARD", "fg": 5041 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_PENCIL", "fg": 5044 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_PENCIL", "fg": 5045 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_ROYALE", "fg": 5046 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_ROYALE", "fg": 5047 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_SHENANDOAH", "fg": 5048 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_SHENANDOAH", "fg": 5049 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_SHORTBOXED", "fg": 5050 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_SHORTBOXED", "fg": 5051 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_SIDEBURNS", "fg": 5052 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_SIDEBURNS", "fg": 5053 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_SOUL_PATCH", "fg": 5054 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_SOUL_PATCH", "fg": 5055 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_TOOTHBRUSH", "fg": 5058 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_TOOTHBRUSH", "fg": 5059 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_VANDYKE", "fg": 5060 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_VANDYKE", "fg": 5061 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_WALRUS", "fg": 5062 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_WALRUS", "fg": 5063 }, + { "id": "overlay_female_mutation_FACIAL_HAIR_ZAPPA", "fg": 5056 }, + { "id": "overlay_male_mutation_FACIAL_HAIR_ZAPPA", "fg": 5057 }, + { "id": "overlay_male_mutation_hair_black_crewcut", "fg": 5065 }, + { "id": "overlay_female_mutation_hair_black_crewcut", "fg": 5064 }, + { "id": "overlay_male_mutation_hair_black_fro", "fg": 5067 }, + { "id": "overlay_female_mutation_hair_black_fro", "fg": 5066 }, + { "id": "overlay_male_mutation_hair_black_long", "fg": 5069 }, + { "id": "overlay_female_mutation_hair_black_long", "fg": 5068 }, + { "id": "overlay_male_mutation_hair_black_medium", "fg": 5071 }, + { "id": "overlay_female_mutation_hair_black_medium", "fg": 5070 }, + { "id": "overlay_male_mutation_hair_black_mohawk", "fg": 5073 }, + { "id": "overlay_female_mutation_hair_black_mohawk", "fg": 5072 }, + { "id": "overlay_male_mutation_hair_black_short", "fg": 5075 }, + { "id": "overlay_female_mutation_hair_black_short", "fg": 5074 }, + { "id": "overlay_male_mutation_hair_blond_crewcut", "fg": 5077 }, + { "id": "overlay_female_mutation_hair_blond_crewcut", "fg": 5076 }, + { "id": "overlay_male_mutation_hair_blond_fro", "fg": 5079 }, + { "id": "overlay_female_mutation_hair_blond_fro", "fg": 5078 }, + { "id": "overlay_male_mutation_hair_blond_long", "fg": 5081 }, + { "id": "overlay_female_mutation_hair_blond_long", "fg": 5080 }, + { "id": "overlay_male_mutation_hair_blond_medium", "fg": 5083 }, + { "id": "overlay_female_mutation_hair_blond_medium", "fg": 5082 }, + { "id": "overlay_male_mutation_hair_blond_mohawk", "fg": 5085 }, + { "id": "overlay_female_mutation_hair_blond_mohawk", "fg": 5084 }, + { "id": "overlay_male_mutation_hair_blond_short", "fg": 5087 }, + { "id": "overlay_female_mutation_hair_blond_short", "fg": 5086 }, + { "id": "overlay_male_mutation_hair_brown_crewcut", "fg": 5089 }, + { "id": "overlay_female_mutation_hair_brown_crewcut", "fg": 5088 }, + { "id": "overlay_male_mutation_hair_brown_fro", "fg": 5091 }, + { "id": "overlay_female_mutation_hair_brown_fro", "fg": 5090 }, + { "id": "overlay_male_mutation_hair_brown_long", "fg": 5093 }, + { "id": "overlay_female_mutation_hair_brown_long", "fg": 5092 }, + { "id": "overlay_male_mutation_hair_brown_medium", "fg": 5095 }, + { "id": "overlay_female_mutation_hair_brown_medium", "fg": 5094 }, + { "id": "overlay_male_mutation_hair_brown_mohawk", "fg": 5097 }, + { "id": "overlay_female_mutation_hair_brown_mohawk", "fg": 5096 }, + { "id": "overlay_male_mutation_hair_brown_short", "fg": 5099 }, + { "id": "overlay_female_mutation_hair_brown_short", "fg": 5098 }, + { "id": "overlay_male_mutation_hair_gray_crewcut", "fg": 5101 }, + { "id": "overlay_female_mutation_hair_gray_crewcut", "fg": 5100 }, + { "id": "overlay_male_mutation_hair_gray_fro", "fg": 5103 }, + { "id": "overlay_female_mutation_hair_gray_fro", "fg": 5102 }, + { "id": "overlay_male_mutation_hair_gray_long", "fg": 5105 }, + { "id": "overlay_female_mutation_hair_gray_long", "fg": 5104 }, + { "id": "overlay_male_mutation_hair_gray_medium", "fg": 5107 }, + { "id": "overlay_female_mutation_hair_gray_medium", "fg": 5106 }, + { "id": "overlay_male_mutation_hair_gray_mohawk", "fg": 5109 }, + { "id": "overlay_female_mutation_hair_gray_mohawk", "fg": 5108 }, + { "id": "overlay_male_mutation_hair_gray_short", "fg": 5111 }, + { "id": "overlay_female_mutation_hair_gray_short", "fg": 5110 }, + { "id": "overlay_male_mutation_hair_red_crewcut", "fg": 5113 }, + { "id": "overlay_female_mutation_hair_red_crewcut", "fg": 5112 }, + { "id": "overlay_male_mutation_hair_red_fro", "fg": 5115 }, + { "id": "overlay_female_mutation_hair_red_fro", "fg": 5114 }, + { "id": "overlay_male_mutation_hair_red_long", "fg": 5117 }, + { "id": "overlay_female_mutation_hair_red_long", "fg": 5116 }, + { "id": "overlay_male_mutation_hair_red_medium", "fg": 5119 }, + { "id": "overlay_female_mutation_hair_red_medium", "fg": 5118 }, + { "id": "overlay_male_mutation_hair_red_mohawk", "fg": 5121 }, + { "id": "overlay_female_mutation_hair_red_mohawk", "fg": 5120 }, + { "id": "overlay_male_mutation_hair_red_short", "fg": 5123 }, + { "id": "overlay_female_mutation_hair_red_short", "fg": 5122 }, + { "id": "overlay_male_mutation_hair_white_crewcut", "fg": 5125 }, + { "id": "overlay_female_mutation_hair_white_crewcut", "fg": 5124 }, + { "id": "overlay_male_mutation_hair_white_fro", "fg": 5127 }, + { "id": "overlay_female_mutation_hair_white_fro", "fg": 5126 }, + { "id": "overlay_male_mutation_hair_white_long", "fg": 5129 }, + { "id": "overlay_female_mutation_hair_white_long", "fg": 5128 }, + { "id": "overlay_male_mutation_hair_white_medium", "fg": 5131 }, + { "id": "overlay_female_mutation_hair_white_medium", "fg": 5130 }, + { "id": "overlay_male_mutation_hair_white_mohawk", "fg": 5133 }, + { "id": "overlay_female_mutation_hair_white_mohawk", "fg": 5132 }, + { "id": "overlay_male_mutation_hair_white_short", "fg": 5135 }, + { "id": "overlay_female_mutation_hair_white_short", "fg": 5134 }, + { "id": "overlay_female_mutation_ARACHNID_ARMS", "fg": 5136 }, + { "id": "overlay_male_mutation_ARACHNID_ARMS", "fg": 5137 }, + { "id": "overlay_female_mutation_BEAK", "fg": 5144 }, + { "id": "overlay_male_mutation_BEAK", "fg": 5145 }, + { "id": "overlay_female_mutation_BEAK_HUM", "fg": 5146 }, + { "id": "overlay_male_mutation_BEAK_HUM", "fg": 5147 }, + { "id": "overlay_female_mutation_BEAK_PECK", "fg": 5148 }, + { "id": "overlay_male_mutation_BEAK_PECK", "fg": 5149 }, + { "id": "overlay_female_mutation_BIRD_EYE", "fg": 5150 }, + { "id": "overlay_male_mutation_BIRD_EYE", "fg": 5151 }, + { "id": "overlay_female_mutation_FANGS", "fg": 5154 }, + { "id": "overlay_male_mutation_FANGS", "fg": 5155 }, + { "id": "overlay_female_mutation_LEAVES", "fg": 5164 }, + { "id": "overlay_male_mutation_LEAVES", "fg": 5165 }, + { "id": "overlay_female_mutation_LIZ_EYE", "fg": 5166 }, + { "id": "overlay_male_mutation_LIZ_EYE", "fg": 5167 }, + { "id": "overlay_female_mutation_MUZZLE", "fg": 5176 }, + { "id": "overlay_male_mutation_MUZZLE", "fg": 5177 }, + { "id": "overlay_female_mutation_MUZZLE_LONG", "fg": 5178 }, + { "id": "overlay_male_mutation_MUZZLE_LONG", "fg": 5179 }, + { "id": "overlay_female_mutation_SABER_TEETH", "fg": 5180 }, + { "id": "overlay_male_mutation_SABER_TEETH", "fg": 5181 }, + { "id": "overlay_female_mutation_TAIL_THICK", "fg": 5190 }, + { "id": "overlay_male_mutation_TAIL_THICK", "fg": 5191 }, + { "id": "overlay_female_mutation_TALONS", "fg": 5192 }, + { "id": "overlay_male_mutation_TALONS", "fg": 5193 }, + { "id": "overlay_female_mutation_VINES1", "fg": 5194 }, + { "id": "overlay_male_mutation_VINES1", "fg": 5195 }, + { "id": "overlay_female_mutation_WINGS_BIRD", "fg": 5198 }, + { "id": "overlay_male_mutation_WINGS_BIRD", "fg": 5199 }, + { "id": "overlay_female_mutation_CHITIN", "fg": 5202 }, + { "id": "overlay_male_mutation_CHITIN", "fg": 5203 }, + { "id": "overlay_female_mutation_CHITIN2", "fg": 5200 }, + { "id": "overlay_male_mutation_CHITIN2", "fg": 5201 }, + { "id": "overlay_female_mutation_FEATHERS", "fg": 5204 }, + { "id": "overlay_male_mutation_FEATHERS", "fg": 5205 }, + { "id": "overlay_female_mutation_SCALES", "fg": 5218 }, + { "id": "overlay_male_mutation_SCALES", "fg": 5219 }, + { "id": "overlay_female_mutation_PLANTSKIN", "fg": 5216 }, + { "id": "overlay_male_mutation_PLANTSKIN", "fg": 5217 }, + { "id": "overlay_female_mutation_LUPINE_FUR", "fg": 5206 }, + { "id": "overlay_male_mutation_LUPINE_FUR", "fg": 5207 }, + { "id": "overlay_female_mutation_SKIN_DARK", "fg": 5220 }, + { "id": "overlay_male_mutation_SKIN_DARK", "fg": 5221 }, + { "id": "overlay_female_mutation_SKIN_LIGHT", "fg": 5222 }, + { "id": "overlay_male_mutation_SKIN_LIGHT", "fg": 5223 }, + { "id": "overlay_female_mutation_SKIN_PINK", "fg": 5224 }, + { "id": "overlay_male_mutation_SKIN_PINK", "fg": 5225 }, + { "id": "overlay_female_mutation_SKIN_TAN", "fg": 5226 }, + { "id": "overlay_male_mutation_SKIN_TAN", "fg": 5227 }, + { "id": "overlay_female_mutation_PALE", "fg": 5214 }, + { "id": "overlay_male_mutation_PALE", "fg": 5215 }, + { "id": "overlay_female_mutation_ALBINO", "fg": 5208 }, + { "id": "overlay_male_mutation_ALBINO", "fg": 5211 }, + { "id": "overlay_wielded_arming_sword_fake", "fg": 5284 }, + { "id": "overlay_wielded_arming_sword_inferior", "fg": 5284 }, + { "id": "overlay_wielded_battleaxe_inferior", "fg": 5233 }, + { "id": "overlay_wielded_battleaxe_fake", "fg": 5233 }, + { "id": "overlay_wielded_broadsword_inferior", "fg": 5583 }, + { "id": "overlay_wielded_broadsword_fake", "fg": 5583 }, + { "id": "overlay_wielded_cavalry_sabre_fake", "fg": 5237 }, + { "id": "overlay_wielded_cutlass_fake", "fg": 5239 }, + { "id": "overlay_wielded_cutlass_inferior", "fg": 5239 }, + { "id": "overlay_wielded_estoc_inferior", "fg": 5635 }, + { "id": "overlay_wielded_estoc_fake", "fg": 5635 }, + { "id": "overlay_female_wielded_halberd_fake", "fg": 5663 }, + { "id": "overlay_male_wielded_halberd_fake", "fg": 5664 }, + { "id": "overlay_wielded_jian_fake", "fg": 5245 }, + { "id": "overlay_wielded_jian_inferior", "fg": 5245 }, + { "id": "overlay_wielded_katana_fake", "fg": 5682 }, + { "id": "overlay_wielded_katana_inferior", "fg": 5682 }, + { "id": "overlay_wielded_kris_fake", "fg": 5688 }, + { "id": "overlay_wielded_longsword_fake", "fg": 5691 }, + { "id": "overlay_wielded_longsword_inferior", "fg": 5691 }, + { "id": "overlay_female_wielded_lucern_hammerfake", "fg": 5692 }, + { "id": "overlay_male_wielded_lucern_hammerfake", "fg": 5693 }, + { "id": "overlay_wielded_mace_inferior", "fg": 5694 }, + { "id": "overlay_wielded_mace_fake", "fg": 5694 }, + { "id": "overlay_wielded_morningstar_fake", "fg": 5695 }, + { "id": "overlay_wielded_morningstar_inferior", "fg": 5695 }, + { "id": "overlay_female_wielded_naginata_fake", "fg": 5256 }, + { "id": "overlay_male_wielded_naginata_fake", "fg": 5257 }, + { "id": "overlay_female_wielded_naginata_inferior", "fg": 5256 }, + { "id": "overlay_male_wielded_naginata_inferior", "fg": 5257 }, + { "id": "overlay_wielded_nodachi_inferior", "fg": 5748 }, + { "id": "overlay_wielded_nodachi_fake", "fg": 5748 }, + { "id": "overlay_wielded_pike_fake", "fg": 4743 }, + { "id": "overlay_wielded_pike_inferior", "fg": 4743 }, + { "id": "overlay_wielded_rapier_fake", "fg": 5776 }, + { "id": "overlay_wielded_tanto_inferior", "fg": 5889 }, + { "id": "overlay_wielded_tanto_fake", "fg": 5889 }, + { "id": "overlay_wielded_wakizashi_fake", "fg": 5913 }, + { "id": "overlay_wielded_wakizashi_inferior", "fg": 5913 }, + { "id": "overlay_wielded_zweihander_fake", "fg": 5935 }, + { "id": "overlay_wielded_zweihander_inferior", "fg": 5935 }, + { "id": "overlay_female_wielded_1st_aid", "fg": 5228 }, + { "id": "overlay_male_wielded_1st_aid", "fg": 5229 }, + { "id": "overlay_female_wielded_2x4", "fg": 5230 }, + { "id": "overlay_male_wielded_2x4", "fg": 5231 }, + { "id": "overlay_wielded_bowling_axe", "fg": 5232 }, + { "id": "overlay_wielded_battleaxe", "fg": 5233 }, + { "id": "overlay_wielded_knife_butcher", "fg": 5234 }, + { "id": "overlay_female_wielded_butterfly_swords", "fg": 5235 }, + { "id": "overlay_male_wielded_butterfly_swords", "fg": 5236 }, + { "id": "overlay_wielded_cavalry_sabre", "fg": 5237 }, + { "id": "overlay_wielded_sword_crude", "fg": 5238 }, + { "id": "overlay_wielded_cutlass", "fg": 5239 }, + { "id": "overlay_wielded_dao", "fg": 5240 }, + { "id": "overlay_wielded_diveknife", "fg": 5241 }, + { "id": "overlay_female_wielded_glaive", "fg": 5242 }, + { "id": "overlay_male_wielded_glaive", "fg": 5243 }, + { "id": "overlay_wielded_glass_shiv", "fg": 5244 }, + { "id": "overlay_wielded_jian", "fg": 5245 }, + { "id": "overlay_wielded_khopesh", "fg": 5246 }, + { "id": "overlay_wielded_kukri", "fg": 5247 }, + { "id": "overlay_wielded_lajatang", "fg": 5248 }, + { "id": "overlay_wielded_machete", "fg": 5249 }, + { "id": "overlay_female_wielded_makeshift_halberd", "fg": 5250 }, + { "id": "overlay_male_wielded_makeshift_halberd", "fg": 5251 }, + { "id": "overlay_wielded_makeshift_machete", "fg": 5252 }, + { "id": "overlay_wielded_glass_macuahuitl", "fg": 5253 }, + { "id": "overlay_female_wielded_makeshift_scythe_war", "fg": 5254 }, + { "id": "overlay_male_wielded_makeshift_scythe_war", "fg": 5255 }, + { "id": "overlay_female_wielded_naginata", "fg": 5256 }, + { "id": "overlay_male_wielded_naginata", "fg": 5257 }, + { "id": "overlay_wielded_knuckle_katar", "fg": 5258 }, + { "id": "overlay_wielded_scimitar", "fg": 5259 }, + { "id": "overlay_wielded_scythe", "fg": 5260 }, + { "id": "overlay_wielded_survivor_machete", "fg": 5261 }, + { "id": "overlay_wielded_sword_bayonet", "fg": 5262 }, + { "id": "overlay_female_wielded_bagh_nakha", "fg": 5263 }, + { "id": "overlay_male_wielded_bagh_nakha", "fg": 5264 }, + { "id": "overlay_female_wielded_scythe_war", "fg": 5265 }, + { "id": "overlay_male_wielded_scythe_war", "fg": 5266 }, + { "id": "overlay_wielded_sword_xiphos", "fg": 5267 }, + { "id": "overlay_wielded_acoustic_guitar", "fg": 5272 }, + { "id": "overlay_worn_acoustic_guitar", "fg": 5272 }, + { "id": "overlay_female_wielded_stepladder", "fg": 5282 }, + { "id": "overlay_male_wielded_stepladder", "fg": 5283 }, + { "id": "overlay_wielded_arming_sword", "fg": 5284 }, + { "id": [ "overlay_wielded_m16_auto_rifle_var_acr", "overlay_wielded_acr_300blk" ], "fg": 5388 }, + { "id": [ "overlay_wielded_ak47", "overlay_wielded_aksemi" ], "fg": 5298 }, + { "id": [ "overlay_wielded_carbine_flintlock", "overlay_wielded_carbine_flintlock_double" ], "fg": 5316 }, + { "id": [ "overlay_wielded_hk_mp5", "overlay_wielded_hk_mp5_10_semi" ], "fg": 5362 }, + { "id": [ "overlay_wielded_hptjcp", "overlay_wielded_hptjhp" ], "fg": 5370 }, + { "id": [ "overlay_wielded_longrifle_flintlock", "overlay_wielded_rifle_flintlock" ], "fg": 5384 }, + { "id": [ "overlay_wielded_m16a4", "overlay_wielded_m16_auto_rifle_var_m16a3" ], "fg": 5389 }, + { "id": [ "overlay_wielded_m1911", "overlay_wielded_m1911a1_38super" ], "fg": 5394 }, + { "id": [ "overlay_wielded_m249", "overlay_wielded_m249_semi" ], "fg": 5403 }, + { "id": [ "overlay_wielded_m60", "overlay_wielded_m60_semi" ], "fg": 5414 }, + { "id": [ "overlay_wielded_mp40", "overlay_wielded_mp40semi" ], "fg": 5439 }, { "id": [ "overlay_wielded_rifle_9mm", @@ -7996,59 +8161,59 @@ "overlay_wielded_rifle_38", "overlay_wielded_rifle_223" ], - "fg": 5391 - }, - { "id": [ "overlay_wielded_slamfire_shotgun", "overlay_wielded_slamfire_shotgun_d" ], "fg": 5443 }, - { "id": "overlay_wielded_fire_ax", "fg": 5490 }, - { "id": "overlay_wielded_ax", "fg": 5492 }, - { "id": "overlay_wielded_hatchet", "fg": 5491 }, - { "id": "overlay_wielded_bag_canvas", "fg": 5493 }, - { "id": "overlay_wielded_bag_plastic", "fg": 5494 }, - { "id": "overlay_wielded_knife_baselard", "fg": 5495 }, - { "id": "overlay_female_wielded_bat", "fg": 5496 }, - { "id": "overlay_male_wielded_bat", "fg": 5497 }, - { "id": "overlay_female_wielded_bat_metal", "fg": 5498 }, - { "id": "overlay_male_wielded_bat_metal", "fg": 5499 }, - { "id": "overlay_wielded_bone_knife", "fg": 5500 }, - { "id": "overlay_wielded_bottle_glass", "fg": 5501 }, - { "id": "overlay_wielded_bottle_plastic", "fg": 5502 }, - { "id": "overlay_wielded_bottle_plastic_small", "fg": 5503 }, - { "id": "overlay_wielded_compositebow", "fg": 5504 }, - { "id": "overlay_wielded_reflexbow", "fg": 5505 }, - { "id": "overlay_wielded_compgreatbow", "fg": 5506 }, - { "id": "overlay_wielded_compbow", "fg": 5507 }, - { "id": "overlay_wielded_compbow_high", "fg": 5507 }, - { "id": "overlay_wielded_compbow_low", "fg": 5507 }, - { "id": "overlay_wielded_hybridbow", "fg": 5508 }, - { "id": "overlay_wielded_longbow", "fg": 5509 }, - { "id": "overlay_wielded_recurbow", "fg": 5510 }, - { "id": "overlay_wielded_reflexrecurvebow", "fg": 5511 }, - { "id": "overlay_wielded_shortbow", "fg": 5512 }, - { "id": "overlay_wielded_selfbow", "fg": 5513 }, - { "id": "overlay_wielded_box_large", "fg": 5514 }, - { "id": "overlay_wielded_box_medium", "fg": 5515 }, - { "id": "overlay_wielded_box_small", "fg": 5516 }, - { "id": "overlay_wielded_brick", "fg": 5518 }, - { "id": "overlay_wielded_broadsword", "fg": 5519 }, - { "id": "overlay_wielded_broom", "fg": 5520 }, - { "id": "overlay_female_wielded_bwirebat", "fg": 5521 }, - { "id": "overlay_male_wielded_bwirebat", "fg": 5522 }, - { "id": "overlay_wielded_sword_cane", "fg": 5545 }, - { "id": "overlay_wielded_hollow_cane", "fg": 5544 }, - { "id": "overlay_wielded_cane", "fg": 5546 }, - { "id": [ "overlay_female_wielded_cestus", "overlay_female_worn_cestus" ], "fg": 5548 }, - { "id": [ "overlay_male_wielded_cestus", "overlay_male_worn_cestus" ], "fg": 5549 }, - { "id": "overlay_female_wielded_chainsaw_off", "fg": 5550 }, - { "id": "overlay_male_wielded_chainsaw_off", "fg": 5551 }, - { "id": "overlay_wielded_coffeemaker", "fg": 5552 }, - { "id": "overlay_wielded_knife_combat", "fg": 5553 }, - { "id": "overlay_wielded_knife_combat_mod", "fg": 5553 }, - { "id": "overlay_wielded_copper_knife", "fg": 5554 }, - { "id": "overlay_female_wielded_corpse_generic_human", "fg": 5555 }, - { "id": "overlay_male_wielded_corpse_generic_human", "fg": 5556 }, + "fg": 5455 + }, + { "id": [ "overlay_wielded_slamfire_shotgun", "overlay_wielded_slamfire_shotgun_d" ], "fg": 5507 }, + { "id": "overlay_wielded_fire_ax", "fg": 5554 }, + { "id": "overlay_wielded_ax", "fg": 5556 }, + { "id": "overlay_wielded_hatchet", "fg": 5555 }, + { "id": "overlay_wielded_bag_canvas", "fg": 5557 }, + { "id": "overlay_wielded_bag_plastic", "fg": 5558 }, + { "id": "overlay_wielded_knife_baselard", "fg": 5559 }, + { "id": "overlay_female_wielded_bat", "fg": 5560 }, + { "id": "overlay_male_wielded_bat", "fg": 5561 }, + { "id": "overlay_female_wielded_bat_metal", "fg": 5562 }, + { "id": "overlay_male_wielded_bat_metal", "fg": 5563 }, + { "id": "overlay_wielded_bone_knife", "fg": 5564 }, + { "id": "overlay_wielded_bottle_glass", "fg": 5565 }, + { "id": "overlay_wielded_bottle_plastic", "fg": 5566 }, + { "id": "overlay_wielded_bottle_plastic_small", "fg": 5567 }, + { "id": "overlay_wielded_compositebow", "fg": 5568 }, + { "id": "overlay_wielded_reflexbow", "fg": 5569 }, + { "id": "overlay_wielded_compgreatbow", "fg": 5570 }, + { "id": "overlay_wielded_compbow", "fg": 5571 }, + { "id": "overlay_wielded_compbow_high", "fg": 5571 }, + { "id": "overlay_wielded_compbow_low", "fg": 5571 }, + { "id": "overlay_wielded_hybridbow", "fg": 5572 }, + { "id": "overlay_wielded_longbow", "fg": 5573 }, + { "id": "overlay_wielded_recurbow", "fg": 5574 }, + { "id": "overlay_wielded_reflexrecurvebow", "fg": 5575 }, + { "id": "overlay_wielded_shortbow", "fg": 5576 }, + { "id": "overlay_wielded_selfbow", "fg": 5577 }, + { "id": "overlay_wielded_box_large", "fg": 5578 }, + { "id": "overlay_wielded_box_medium", "fg": 5579 }, + { "id": "overlay_wielded_box_small", "fg": 5580 }, + { "id": "overlay_wielded_brick", "fg": 5582 }, + { "id": "overlay_wielded_broadsword", "fg": 5583 }, + { "id": "overlay_wielded_broom", "fg": 5584 }, + { "id": "overlay_female_wielded_bwirebat", "fg": 5585 }, + { "id": "overlay_male_wielded_bwirebat", "fg": 5586 }, + { "id": "overlay_wielded_sword_cane", "fg": 5609 }, + { "id": "overlay_wielded_hollow_cane", "fg": 5608 }, + { "id": "overlay_wielded_cane", "fg": 5610 }, + { "id": [ "overlay_female_wielded_cestus", "overlay_female_worn_cestus" ], "fg": 5612 }, + { "id": [ "overlay_male_wielded_cestus", "overlay_male_worn_cestus" ], "fg": 5613 }, + { "id": "overlay_female_wielded_chainsaw_off", "fg": 5614 }, + { "id": "overlay_male_wielded_chainsaw_off", "fg": 5615 }, + { "id": "overlay_wielded_coffeemaker", "fg": 5616 }, + { "id": "overlay_wielded_knife_combat", "fg": 5617 }, + { "id": "overlay_wielded_knife_combat_mod", "fg": 5617 }, + { "id": "overlay_wielded_copper_knife", "fg": 5618 }, + { "id": "overlay_female_wielded_corpse_generic_human", "fg": 5619 }, + { "id": "overlay_male_wielded_corpse_generic_human", "fg": 5620 }, { "id": [ "overlay_wielded_corpse_mon_ant", "overlay_wielded_corpse_mon_ant_soldier", "overlay_wielded_corpse_mon_ant_queen" ], - "fg": 5558 + "fg": 5622 }, { "id": [ @@ -8056,7 +8221,7 @@ "overlay_wielded_corpse_mon_ant_acid_soldier", "overlay_wielded_corpse_mon_ant_acid_queen" ], - "fg": 5557 + "fg": 5621 }, { "id": [ @@ -8115,7 +8280,7 @@ "overlay_male_wielded_corpse_mon_zombie_prisoner", "overlay_male_wielded_corpse_mon_zombie_military_pilot" ], - "fg": 5560 + "fg": 5624 }, { "id": [ @@ -8174,77 +8339,77 @@ "overlay_female_wielded_corpse_mon_zombie_prisoner", "overlay_female_wielded_corpse_mon_zombie_military_pilot" ], - "fg": 5559 - }, - { "id": "overlay_wielded_cudgel", "fg": 5568 }, - { "id": "overlay_female_wielded_spear_dory", "fg": 5569 }, - { "id": "overlay_male_wielded_spear_dory", "fg": 5570 }, - { "id": "overlay_wielded_estoc", "fg": 5571 }, - { "id": "overlay_wielded_shock_epee", "fg": 5572 }, - { "id": "overlay_wielded_shock_foil", "fg": 5573 }, - { "id": "overlay_wielded_shock_sabre", "fg": 5574 }, - { "id": "overlay_wielded_fencing_epee", "fg": 5575 }, - { "id": "overlay_wielded_fencing_foil", "fg": 5576 }, - { "id": "overlay_wielded_fencing_sabre", "fg": 5577 }, - { "id": "overlay_wielded_fencing_epee_sharpened", "fg": 5578 }, - { "id": "overlay_wielded_fencing_foil_sharpened", "fg": 5579 }, - { "id": "overlay_wielded_fencing_sabre_sharpened", "fg": 5580 }, - { "id": "overlay_wielded_flashlight", "fg": 5582 }, - { "id": "overlay_wielded_heavy_flashlight", "fg": 5583 }, - { "id": "overlay_wielded_spear_forked", "fg": 5584 }, - { "id": "overlay_wielded_glass_shard", "fg": 5585 }, - { "id": "overlay_wielded_grip_hook", "fg": 5598 }, - { "id": "overlay_male_wielded_halberd", "fg": 5600 }, - { "id": "overlay_female_wielded_halberd", "fg": 5599 }, - { "id": "overlay_wielded_crowbar", "fg": 5601 }, - { "id": "overlay_male_wielded_screwdriver", "fg": 5604 }, - { "id": "overlay_female_wielded_screwdriver", "fg": 5603 }, - { "id": "overlay_wielded_shovel", "fg": 5605 }, - { "id": "overlay_wielded_wrench", "fg": 5606 }, - { "id": "overlay_wielded_hammer", "fg": 5602 }, - { "id": "overlay_female_wielded_spear_homemade_halfpike", "fg": 5607 }, - { "id": "overlay_male_wielded_spear_homemade_halfpike", "fg": 5608 }, - { "id": "overlay_wielded_jar_3l_glass", "fg": 5609 }, - { "id": "overlay_wielded_jar_3l_glass_sealed", "fg": 5610 }, - { "id": "overlay_wielded_jar_glass", "fg": 5611 }, - { "id": "overlay_wielded_jar_glass_sealed", "fg": 5612 }, - { "id": "overlay_wielded_javelin", "fg": 5614 }, - { "id": "overlay_wielded_javelin_iron", "fg": 5613 }, - { "id": "overlay_female_wielded_ji", "fg": 5615 }, - { "id": "overlay_male_wielded_ji", "fg": 5616 }, - { "id": "overlay_wielded_jug_plastic", "fg": 5617 }, - { "id": "overlay_wielded_katana", "fg": 5618 }, - { "id": "overlay_wielded_kirpan", "fg": 5619 }, - { "id": "overlay_female_wielded_knuckle_nail", "fg": 5620 }, - { "id": "overlay_male_wielded_knuckle_nail", "fg": 5621 }, - { "id": "overlay_female_wielded_knuckle_steel", "fg": 5622 }, - { "id": "overlay_male_wielded_knuckle_steel", "fg": 5623 }, - { "id": "overlay_wielded_kris", "fg": 5624 }, - { "id": "overlay_wielded_shillelagh_weighted", "fg": 5625 }, - { "id": "overlay_wielded_log", "fg": 5626 }, - { "id": "overlay_wielded_longsword", "fg": 5627 }, - { "id": "overlay_male_wielded_lucern_hammer", "fg": 5629 }, - { "id": "overlay_female_wielded_lucern_hammer", "fg": 5628 }, - { "id": "overlay_wielded_mace", "fg": 5630 }, - { "id": "overlay_wielded_morningstar", "fg": 5631 }, - { "id": "overlay_wielded_makeshift_crowbar", "fg": 5632 }, - { "id": "overlay_wielded_makeshift_knife", "fg": 5633 }, - { "id": "overlay_wielded_makeshift_sap", "fg": 5634 }, - { "id": "overlay_wielded_antibiotics", "fg": 5637 }, - { "id": "overlay_wielded_weak_antibiotic", "fg": 5649 }, - { "id": "overlay_wielded_strong_antibiotic", "fg": 5646 }, - { "id": "overlay_wielded_calcium_tablet", "fg": 5640 }, - { "id": "overlay_wielded_vitamins", "fg": 5648 }, - { "id": "overlay_wielded_gummy_vitamins", "fg": 5641 }, - { "id": "overlay_wielded_antifungal", "fg": 5638 }, - { "id": "overlay_wielded_antiparasitic", "fg": 5639 }, - { "id": "overlay_wielded_iodine", "fg": 5642 }, - { "id": "overlay_wielded_prussian_blue", "fg": 5645 }, - { "id": "overlay_wielded_tramadol", "fg": 5647 }, - { "id": "overlay_wielded_oxycodone", "fg": 5644 }, - { "id": "overlay_female_wielded_mjolnir", "fg": 5650 }, - { "id": "overlay_male_wielded_mjolnir", "fg": 5651 }, - { "id": "overlay_wielded_mop", "fg": 5652 }, + "fg": 5623 + }, + { "id": "overlay_wielded_cudgel", "fg": 5632 }, + { "id": "overlay_female_wielded_spear_dory", "fg": 5633 }, + { "id": "overlay_male_wielded_spear_dory", "fg": 5634 }, + { "id": "overlay_wielded_estoc", "fg": 5635 }, + { "id": "overlay_wielded_shock_epee", "fg": 5636 }, + { "id": "overlay_wielded_shock_foil", "fg": 5637 }, + { "id": "overlay_wielded_shock_sabre", "fg": 5638 }, + { "id": "overlay_wielded_fencing_epee", "fg": 5639 }, + { "id": "overlay_wielded_fencing_foil", "fg": 5640 }, + { "id": "overlay_wielded_fencing_sabre", "fg": 5641 }, + { "id": "overlay_wielded_fencing_epee_sharpened", "fg": 5642 }, + { "id": "overlay_wielded_fencing_foil_sharpened", "fg": 5643 }, + { "id": "overlay_wielded_fencing_sabre_sharpened", "fg": 5644 }, + { "id": "overlay_wielded_flashlight", "fg": 5646 }, + { "id": "overlay_wielded_heavy_flashlight", "fg": 5647 }, + { "id": "overlay_wielded_spear_forked", "fg": 5648 }, + { "id": "overlay_wielded_glass_shard", "fg": 5649 }, + { "id": "overlay_wielded_grip_hook", "fg": 5662 }, + { "id": "overlay_male_wielded_halberd", "fg": 5664 }, + { "id": "overlay_female_wielded_halberd", "fg": 5663 }, + { "id": "overlay_wielded_crowbar", "fg": 5665 }, + { "id": "overlay_male_wielded_screwdriver", "fg": 5668 }, + { "id": "overlay_female_wielded_screwdriver", "fg": 5667 }, + { "id": "overlay_wielded_shovel", "fg": 5669 }, + { "id": "overlay_wielded_wrench", "fg": 5670 }, + { "id": "overlay_wielded_hammer", "fg": 5666 }, + { "id": "overlay_female_wielded_spear_homemade_halfpike", "fg": 5671 }, + { "id": "overlay_male_wielded_spear_homemade_halfpike", "fg": 5672 }, + { "id": "overlay_wielded_jar_3l_glass", "fg": 5673 }, + { "id": "overlay_wielded_jar_3l_glass_sealed", "fg": 5674 }, + { "id": "overlay_wielded_jar_glass", "fg": 5675 }, + { "id": "overlay_wielded_jar_glass_sealed", "fg": 5676 }, + { "id": "overlay_wielded_javelin", "fg": 5678 }, + { "id": "overlay_wielded_javelin_iron", "fg": 5677 }, + { "id": "overlay_female_wielded_ji", "fg": 5679 }, + { "id": "overlay_male_wielded_ji", "fg": 5680 }, + { "id": "overlay_wielded_jug_plastic", "fg": 5681 }, + { "id": "overlay_wielded_katana", "fg": 5682 }, + { "id": "overlay_wielded_kirpan", "fg": 5683 }, + { "id": "overlay_female_wielded_knuckle_nail", "fg": 5684 }, + { "id": "overlay_male_wielded_knuckle_nail", "fg": 5685 }, + { "id": "overlay_female_wielded_knuckle_steel", "fg": 5686 }, + { "id": "overlay_male_wielded_knuckle_steel", "fg": 5687 }, + { "id": "overlay_wielded_kris", "fg": 5688 }, + { "id": "overlay_wielded_shillelagh_weighted", "fg": 5689 }, + { "id": "overlay_wielded_log", "fg": 5690 }, + { "id": "overlay_wielded_longsword", "fg": 5691 }, + { "id": "overlay_male_wielded_lucern_hammer", "fg": 5693 }, + { "id": "overlay_female_wielded_lucern_hammer", "fg": 5692 }, + { "id": "overlay_wielded_mace", "fg": 5694 }, + { "id": "overlay_wielded_morningstar", "fg": 5695 }, + { "id": "overlay_wielded_makeshift_crowbar", "fg": 5696 }, + { "id": "overlay_wielded_makeshift_knife", "fg": 5697 }, + { "id": "overlay_wielded_makeshift_sap", "fg": 5698 }, + { "id": "overlay_wielded_antibiotics", "fg": 5701 }, + { "id": "overlay_wielded_weak_antibiotic", "fg": 5713 }, + { "id": "overlay_wielded_strong_antibiotic", "fg": 5710 }, + { "id": "overlay_wielded_calcium_tablet", "fg": 5704 }, + { "id": "overlay_wielded_vitamins", "fg": 5712 }, + { "id": "overlay_wielded_gummy_vitamins", "fg": 5705 }, + { "id": "overlay_wielded_antifungal", "fg": 5702 }, + { "id": "overlay_wielded_antiparasitic", "fg": 5703 }, + { "id": "overlay_wielded_iodine", "fg": 5706 }, + { "id": "overlay_wielded_prussian_blue", "fg": 5709 }, + { "id": "overlay_wielded_tramadol", "fg": 5711 }, + { "id": "overlay_wielded_oxycodone", "fg": 5708 }, + { "id": "overlay_female_wielded_mjolnir", "fg": 5714 }, + { "id": "overlay_male_wielded_mjolnir", "fg": 5715 }, + { "id": "overlay_wielded_mop", "fg": 5716 }, { "id": [ "overlay_wielded_tourniquet_upper", @@ -8252,590 +8417,590 @@ "overlay_wielded_tourniquet_lower", "overlay_wielded_tourniquet_lower_XL" ], - "fg": 5678 - }, - { "id": "overlay_female_wielded_nailbat", "fg": 5680 }, - { "id": "overlay_male_wielded_nailbat", "fg": 5681 }, - { "id": "overlay_female_wielded_nailboard", "fg": 5682 }, - { "id": "overlay_male_wielded_nailboard", "fg": 5683 }, - { "id": "overlay_wielded_nodachi", "fg": 5684 }, - { "id": "overlay_male_wielded_2h_flail_wood", "fg": 5686 }, - { "id": "overlay_female_wielded_2h_flail_wood", "fg": 5685 }, - { "id": "overlay_male_wielded_pillow", "fg": 5690 }, - { "id": "overlay_female_wielded_pillow", "fg": 5689 }, - { "id": "overlay_male_wielded_down_pillow", "fg": 5688 }, - { "id": "overlay_female_wielded_down_pillow", "fg": 5687 }, - { "id": "overlay_wielded_pipe", "fg": 5691 }, - { "id": "overlay_wielded_pitchfork", "fg": 5692 }, - { "id": "overlay_wielded_sharp_toothbrush", "fg": 5693 }, - { "id": "overlay_wielded_pockknife", "fg": 5694 }, - { "id": "overlay_female_wielded_pot", "fg": 5697 }, - { "id": "overlay_male_wielded_pot", "fg": 5698 }, - { "id": "overlay_female_wielded_pot_copper", "fg": 5699 }, - { "id": "overlay_male_wielded_pot_copper", "fg": 5700 }, - { "id": "overlay_wielded_punch_dagger", "fg": 5701 }, - { "id": "overlay_female_wielded_qiang", "fg": 5702 }, - { "id": "overlay_male_wielded_qiang", "fg": 5703 }, - { "id": "overlay_female_wielded_rag", "fg": 5710 }, - { "id": "overlay_male_wielded_rag", "fg": 5711 }, - { "id": "overlay_wielded_rapier", "fg": 5712 }, - { "id": "overlay_wielded_rebar", "fg": 5713 }, - { "id": "overlay_wielded_knife_rm42", "fg": 5714 }, - { "id": "overlay_wielded_rock", "fg": 5715 }, - { "id": "overlay_wielded_rock_sock", "fg": 5716 }, - { "id": "overlay_wielded_rolling_pin", "fg": 5717 }, - { "id": "overlay_wielded_scissors", "fg": 5718 }, - { "id": "overlay_wielded_sharp_rock", "fg": 5719 }, - { "id": "overlay_wielded_shillelagh", "fg": 5720 }, + "fg": 5742 + }, + { "id": "overlay_female_wielded_nailbat", "fg": 5744 }, + { "id": "overlay_male_wielded_nailbat", "fg": 5745 }, + { "id": "overlay_female_wielded_nailboard", "fg": 5746 }, + { "id": "overlay_male_wielded_nailboard", "fg": 5747 }, + { "id": "overlay_wielded_nodachi", "fg": 5748 }, + { "id": "overlay_male_wielded_2h_flail_wood", "fg": 5750 }, + { "id": "overlay_female_wielded_2h_flail_wood", "fg": 5749 }, + { "id": "overlay_male_wielded_pillow", "fg": 5754 }, + { "id": "overlay_female_wielded_pillow", "fg": 5753 }, + { "id": "overlay_male_wielded_down_pillow", "fg": 5752 }, + { "id": "overlay_female_wielded_down_pillow", "fg": 5751 }, + { "id": "overlay_wielded_pipe", "fg": 5755 }, + { "id": "overlay_wielded_pitchfork", "fg": 5756 }, + { "id": "overlay_wielded_sharp_toothbrush", "fg": 5757 }, + { "id": "overlay_wielded_pockknife", "fg": 5758 }, + { "id": "overlay_female_wielded_pot", "fg": 5761 }, + { "id": "overlay_male_wielded_pot", "fg": 5762 }, + { "id": "overlay_female_wielded_pot_copper", "fg": 5763 }, + { "id": "overlay_male_wielded_pot_copper", "fg": 5764 }, + { "id": "overlay_wielded_punch_dagger", "fg": 5765 }, + { "id": "overlay_female_wielded_qiang", "fg": 5766 }, + { "id": "overlay_male_wielded_qiang", "fg": 5767 }, + { "id": "overlay_female_wielded_rag", "fg": 5774 }, + { "id": "overlay_male_wielded_rag", "fg": 5775 }, + { "id": "overlay_wielded_rapier", "fg": 5776 }, + { "id": "overlay_wielded_rebar", "fg": 5777 }, + { "id": "overlay_wielded_knife_rm42", "fg": 5778 }, + { "id": "overlay_wielded_rock", "fg": 5779 }, + { "id": "overlay_wielded_rock_sock", "fg": 5780 }, + { "id": "overlay_wielded_rolling_pin", "fg": 5781 }, + { "id": "overlay_wielded_scissors", "fg": 5782 }, + { "id": "overlay_wielded_sharp_rock", "fg": 5783 }, + { "id": "overlay_wielded_shillelagh", "fg": 5784 }, { "id": "overlay_female_wielded_cigar_lit", "fg": [ - { "weight": 14, "sprite": 5723 }, - { "weight": 14, "sprite": 5724 }, - { "weight": 14, "sprite": 5725 }, - { "weight": 14, "sprite": 5726 }, - { "weight": 14, "sprite": 5727 }, - { "weight": 14, "sprite": 5728 }, - { "weight": 14, "sprite": 5729 } + { "weight": 14, "sprite": 5787 }, + { "weight": 14, "sprite": 5788 }, + { "weight": 14, "sprite": 5789 }, + { "weight": 14, "sprite": 5790 }, + { "weight": 14, "sprite": 5791 }, + { "weight": 14, "sprite": 5792 }, + { "weight": 14, "sprite": 5793 } ], "animated": true }, { "id": "overlay_male_wielded_cigar_lit", "fg": [ - { "weight": 14, "sprite": 5732 }, - { "weight": 14, "sprite": 5733 }, - { "weight": 14, "sprite": 5734 }, - { "weight": 14, "sprite": 5735 }, - { "weight": 14, "sprite": 5736 }, - { "weight": 14, "sprite": 5737 }, - { "weight": 14, "sprite": 5738 } + { "weight": 14, "sprite": 5796 }, + { "weight": 14, "sprite": 5797 }, + { "weight": 14, "sprite": 5798 }, + { "weight": 14, "sprite": 5799 }, + { "weight": 14, "sprite": 5800 }, + { "weight": 14, "sprite": 5801 }, + { "weight": 14, "sprite": 5802 } ], "animated": true }, { "id": "overlay_female_wielded_cig_lit", "fg": [ - { "weight": 14, "sprite": 5741 }, - { "weight": 14, "sprite": 5742 }, - { "weight": 14, "sprite": 5743 }, - { "weight": 14, "sprite": 5744 }, - { "weight": 14, "sprite": 5745 }, - { "weight": 14, "sprite": 5746 }, - { "weight": 14, "sprite": 5747 } + { "weight": 14, "sprite": 5805 }, + { "weight": 14, "sprite": 5806 }, + { "weight": 14, "sprite": 5807 }, + { "weight": 14, "sprite": 5808 }, + { "weight": 14, "sprite": 5809 }, + { "weight": 14, "sprite": 5810 }, + { "weight": 14, "sprite": 5811 } ], "animated": true }, { "id": "overlay_male_wielded_cig_lit", "fg": [ - { "weight": 14, "sprite": 5750 }, - { "weight": 14, "sprite": 5751 }, - { "weight": 14, "sprite": 5752 }, - { "weight": 14, "sprite": 5753 }, - { "weight": 14, "sprite": 5754 }, - { "weight": 14, "sprite": 5755 }, - { "weight": 14, "sprite": 5756 } + { "weight": 14, "sprite": 5814 }, + { "weight": 14, "sprite": 5815 }, + { "weight": 14, "sprite": 5816 }, + { "weight": 14, "sprite": 5817 }, + { "weight": 14, "sprite": 5818 }, + { "weight": 14, "sprite": 5819 }, + { "weight": 14, "sprite": 5820 } ], "animated": true }, { "id": "overlay_female_wielded_joint_lit", "fg": [ - { "weight": 14, "sprite": 5758 }, - { "weight": 14, "sprite": 5759 }, - { "weight": 14, "sprite": 5760 }, - { "weight": 14, "sprite": 5761 }, - { "weight": 14, "sprite": 5762 }, - { "weight": 14, "sprite": 5763 }, - { "weight": 14, "sprite": 5764 } + { "weight": 14, "sprite": 5822 }, + { "weight": 14, "sprite": 5823 }, + { "weight": 14, "sprite": 5824 }, + { "weight": 14, "sprite": 5825 }, + { "weight": 14, "sprite": 5826 }, + { "weight": 14, "sprite": 5827 }, + { "weight": 14, "sprite": 5828 } ], "animated": true }, { "id": "overlay_male_wielded_joint_lit", "fg": [ - { "weight": 14, "sprite": 5767 }, - { "weight": 14, "sprite": 5768 }, - { "weight": 14, "sprite": 5769 }, - { "weight": 14, "sprite": 5770 }, - { "weight": 14, "sprite": 5771 }, - { "weight": 14, "sprite": 5772 }, - { "weight": 14, "sprite": 5773 } + { "weight": 14, "sprite": 5831 }, + { "weight": 14, "sprite": 5832 }, + { "weight": 14, "sprite": 5833 }, + { "weight": 14, "sprite": 5834 }, + { "weight": 14, "sprite": 5835 }, + { "weight": 14, "sprite": 5836 }, + { "weight": 14, "sprite": 5837 } ], "animated": true }, { "id": "overlay_female_wielded_pipe_tobacco", "fg": [ - { "weight": 14, "sprite": 5775 }, - { "weight": 14, "sprite": 5776 }, - { "weight": 14, "sprite": 5777 }, - { "weight": 14, "sprite": 5778 }, - { "weight": 14, "sprite": 5779 }, - { "weight": 14, "sprite": 5780 }, - { "weight": 14, "sprite": 5781 } + { "weight": 14, "sprite": 5839 }, + { "weight": 14, "sprite": 5840 }, + { "weight": 14, "sprite": 5841 }, + { "weight": 14, "sprite": 5842 }, + { "weight": 14, "sprite": 5843 }, + { "weight": 14, "sprite": 5844 }, + { "weight": 14, "sprite": 5845 } ], "animated": true }, { "id": "overlay_male_wielded_pipe_tobacco", "fg": [ - { "weight": 14, "sprite": 5782 }, - { "weight": 14, "sprite": 5783 }, - { "weight": 14, "sprite": 5784 }, - { "weight": 14, "sprite": 5785 }, - { "weight": 14, "sprite": 5786 }, - { "weight": 14, "sprite": 5787 }, - { "weight": 14, "sprite": 5788 } + { "weight": 14, "sprite": 5846 }, + { "weight": 14, "sprite": 5847 }, + { "weight": 14, "sprite": 5848 }, + { "weight": 14, "sprite": 5849 }, + { "weight": 14, "sprite": 5850 }, + { "weight": 14, "sprite": 5851 }, + { "weight": 14, "sprite": 5852 } ], "animated": true }, - { "id": "overlay_male_wielded_pointy_stick", "fg": 5790 }, - { "id": "overlay_female_wielded_pointy_stick", "fg": 5789 }, - { "id": "overlay_male_wielded_spear_wood", "fg": 5806 }, - { "id": "overlay_female_wielded_spear_wood", "fg": 5805 }, - { "id": "overlay_male_wielded_spear_spike", "fg": 5802 }, - { "id": "overlay_female_wielded_spear_spike", "fg": 5801 }, - { "id": "overlay_male_wielded_spear_knife", "fg": 5794 }, - { "id": "overlay_female_wielded_spear_knife", "fg": 5793 }, - { "id": "overlay_male_wielded_spear_knife_superior", "fg": 5796 }, - { "id": "overlay_female_wielded_spear_knife_superior", "fg": 5795 }, - { "id": "overlay_male_wielded_spear_rebar", "fg": 5800 }, - { "id": "overlay_female_wielded_spear_rebar", "fg": 5799 }, - { "id": "overlay_male_wielded_spear_pipe", "fg": 5798 }, - { "id": "overlay_female_wielded_spear_pipe", "fg": 5797 }, - { "id": "overlay_male_wielded_spear_steel", "fg": 5804 }, - { "id": "overlay_female_wielded_spear_steel", "fg": 5803 }, - { "id": "overlay_male_wielded_spear_copper", "fg": 5792 }, - { "id": "overlay_female_wielded_spear_copper", "fg": 5791 }, - { "id": "overlay_female_wielded_splinter", "fg": 5807 }, - { "id": "overlay_male_wielded_splinter", "fg": 5808 }, - { "id": "overlay_wielded_knife_steak", "fg": 5809 }, - { "id": "overlay_wielded_steel_chunk", "fg": 5810 }, - { "id": "overlay_wielded_steel_lump", "fg": 5811 }, - { "id": "overlay_female_wielded_stick", "fg": 5812 }, - { "id": "overlay_male_wielded_stick", "fg": 5813 }, - { "id": "overlay_female_wielded_stick_long", "fg": 5814 }, - { "id": "overlay_male_wielded_stick_long", "fg": 5815 }, - { "id": "overlay_female_wielded_primitive_hammer", "fg": 5816 }, - { "id": "overlay_male_wielded_primitive_hammer", "fg": 5817 }, - { "id": "overlay_female_wielded_spear_stone", "fg": 5818 }, - { "id": "overlay_male_wielded_spear_stone", "fg": 5819 }, - { "id": "overlay_wielded_knife_rambo", "fg": 5820 }, - { "id": "overlay_female_wielded_spear_survivor", "fg": 5821 }, - { "id": "overlay_male_wielded_spear_survivor", "fg": 5822 }, - { "id": "overlay_wielded_switchblade", "fg": 5823 }, - { "id": "overlay_wielded_tanto", "fg": 5825 }, - { "id": "overlay_female_wielded_teapot", "fg": 5826 }, - { "id": "overlay_male_wielded_teapot", "fg": 5827 }, - { "id": "overlay_female_wielded_television", "fg": 5828 }, - { "id": "overlay_male_wielded_television", "fg": 5829 }, - { "id": "overlay_female_wielded_thermos", "fg": 5830 }, - { "id": "overlay_male_wielded_thermos", "fg": 5831 }, - { "id": "overlay_wielded_boltcutters", "fg": 5832 }, - { "id": "overlay_wielded_e_tool", "fg": 5834 }, - { "id": "overlay_wielded_halligan", "fg": 5835 }, - { "id": "overlay_wielded_jackhammer", "fg": 5837 }, - { "id": "overlay_wielded_elec_jackhammer", "fg": 5837 }, - { "id": "overlay_wielded_lobotomizer", "fg": 5838 }, - { "id": "overlay_wielded_makeshift_axe", "fg": 5839 }, - { "id": "overlay_wielded_ny_hook", "fg": 5840 }, - { "id": "overlay_wielded_pickaxe", "fg": 5841 }, - { "id": "overlay_wielded_hammer_sledge_engineer", "fg": 5842 }, - { "id": "overlay_wielded_hammer_sledge_heavy", "fg": 5843 }, - { "id": "overlay_wielded_hammer_sledge_short", "fg": 5844 }, - { "id": "overlay_wielded_hammer_sledge", "fg": 5845 }, - { "id": "overlay_wielded_g_shovel", "fg": 5846 }, - { "id": "overlay_wielded_primitive_shovel", "fg": 5847 }, - { "id": "overlay_wielded_knife_trench", "fg": 5848 }, - { "id": "overlay_wielded_wakizashi", "fg": 5849 }, - { "id": "overlay_male_wielded_2h_flail_steel", "fg": 5851 }, - { "id": "overlay_female_wielded_2h_flail_steel", "fg": 5850 }, - { "id": "overlay_wielded_warhammer", "fg": 5852 }, - { "id": "overlay_wielded_bolas", "fg": 5853 }, - { "id": "overlay_wielded_bullwhip", "fg": 5854 }, - { "id": "overlay_female_wielded_homewrecker", "fg": 5855 }, - { "id": "overlay_male_wielded_homewrecker", "fg": 5856 }, - { "id": "overlay_wielded_lawn_dart", "fg": 5857 }, - { "id": "overlay_wielded_net", "fg": 5858 }, - { "id": "overlay_wielded_bullwhip_razor", "fg": 5859 }, - { "id": "overlay_wielded_sling", "fg": 5860 }, - { "id": "overlay_wielded_staff_sling", "fg": 5861 }, - { "id": "overlay_wielded_throwing_axe", "fg": 5862 }, - { "id": "overlay_female_wielded_throwing_knife", "fg": 5863 }, - { "id": "overlay_male_wielded_throwing_knife", "fg": 5864 }, - { "id": "overlay_wielded_throwing_stick", "fg": 5865 }, - { "id": "overlay_wielded_shocktonfa_off", "fg": 5866 }, - { "id": "overlay_wielded_shocktonfa_on", "fg": 5866 }, - { "id": "overlay_wielded_tonfa", "fg": 5867 }, - { "id": "overlay_wielded_tonfa_wood", "fg": 5868 }, - { "id": "overlay_wielded_sword_wood", "fg": 5869 }, - { "id": "overlay_wielded_sword_nail", "fg": 5870 }, - { "id": "overlay_wielded_zweihander", "fg": 5871 }, - { "id": "overlay_female_worn_armor_samurai", "fg": 5872 }, - { "id": "overlay_male_worn_armor_samurai", "fg": 5873 }, - { "id": "overlay_female_worn_chainmail_suit", "fg": 5882 }, - { "id": "overlay_male_worn_chainmail_suit", "fg": 5883 }, - { "id": "overlay_female_worn_chainmail_feet", "fg": 5884 }, - { "id": "overlay_male_worn_chainmail_feet", "fg": 5885 }, - { "id": "overlay_female_worn_chainmail_hood", "fg": 5886 }, - { "id": "overlay_male_worn_chainmail_hood", "fg": 5887 }, - { "id": "overlay_female_worn_chainmail_hands", "fg": 5888 }, - { "id": "overlay_male_worn_chainmail_hands", "fg": 5889 }, - { "id": "overlay_female_worn_chainmail_hauberk", "fg": 5890 }, - { "id": "overlay_male_worn_chainmail_hauberk", "fg": 5891 }, - { "id": "overlay_female_worn_chainmail_legs", "fg": 5892 }, - { "id": "overlay_male_worn_chainmail_legs", "fg": 5893 }, - { "id": "overlay_female_worn_chainmail_arms", "fg": 5894 }, - { "id": "overlay_male_worn_chainmail_arms", "fg": 5895 }, - { "id": "overlay_female_worn_chainmail_vest", "fg": 5896 }, - { "id": "overlay_male_worn_chainmail_vest", "fg": 5897 }, - { "id": "overlay_female_worn_vest_leather_mod", "fg": 5878 }, - { "id": "overlay_male_worn_vest_leather_mod", "fg": 5879 }, - { "id": "overlay_female_worn_armor_blarmor", "fg": 5880 }, - { "id": "overlay_male_worn_armor_blarmor", "fg": 5881 }, - { "id": "overlay_female_worn_armguard_larmor", "fg": 5902 }, - { "id": "overlay_male_worn_armguard_larmor", "fg": 5903 }, - { "id": "overlay_female_worn_boots_larmor", "fg": 5904 }, - { "id": "overlay_male_worn_boots_larmor", "fg": 5905 }, - { "id": "overlay_male_worn_gauntlets_larmor", "fg": 5906 }, - { "id": "overlay_female_worn_gauntlets_larmor", "fg": 5907 }, - { "id": "overlay_male_worn_helmet_larmor", "fg": 5909 }, - { "id": "overlay_female_worn_helmet_larmor", "fg": 5908 }, - { "id": "overlay_female_worn_armor_larmor", "fg": 5910 }, - { "id": "overlay_male_worn_armor_larmor", "fg": 5911 }, - { "id": "overlay_female_worn_footrags_leather", "fg": 5912 }, - { "id": "overlay_male_worn_footrags_leather", "fg": 5913 }, - { "id": "overlay_female_worn_gloves_wraps_leather", "fg": 5914 }, - { "id": "overlay_male_worn_gloves_wraps_leather", "fg": 5915 }, - { "id": "overlay_female_worn_vambrace_larmor", "fg": 5916 }, - { "id": "overlay_male_worn_vambrace_larmor", "fg": 5917 }, - { "id": "overlay_female_worn_vest_leather", "fg": 5918 }, - { "id": "overlay_male_worn_vest_leather", "fg": 5919 }, - { "id": "overlay_female_worn_armor_plarmor", "fg": 5922 }, - { "id": "overlay_male_worn_armor_plarmor", "fg": 5923 }, - { "id": "overlay_female_worn_gloves_studded", "fg": 5930 }, - { "id": "overlay_male_worn_gloves_studded", "fg": 5931 }, - { "id": "overlay_male_worn_helmet_plate", "fg": 5901 }, - { "id": "overlay_male_worn_armor_lightplate", "fg": 5921 }, - { "id": "overlay_male_worn_gloves_plate", "fg": 5877 }, - { "id": "overlay_male_worn_boots_plate", "fg": 5875 }, - { "id": "overlay_male_worn_cuirass_lightplate", "fg": 5899 }, - { "id": "overlay_male_worn_armguard_lightplate", "fg": 5927 }, - { "id": "overlay_male_worn_legguard_lightplate", "fg": 5929 }, - { "id": "overlay_female_worn_helmet_plate", "fg": 5900 }, - { "id": "overlay_female_worn_armor_lightplate", "fg": 5920 }, - { "id": "overlay_female_worn_gloves_plate", "fg": 5876 }, - { "id": "overlay_female_worn_boots_plate", "fg": 5874 }, - { "id": "overlay_female_worn_cuirass_lightplate", "fg": 5898 }, - { "id": "overlay_female_worn_armguard_lightplate", "fg": 5926 }, - { "id": "overlay_female_worn_legguard_lightplate", "fg": 5928 }, - { "id": "overlay_female_worn_armguard_hard", "fg": 5932 }, - { "id": "overlay_male_worn_armguard_hard", "fg": 5933 }, - { "id": "overlay_female_worn_armor_riot", "fg": 5934 }, - { "id": "overlay_male_worn_armor_riot", "fg": 5935 }, - { "id": "overlay_female_worn_ballistic_vest_esapi", "fg": 5936 }, - { "id": "overlay_male_worn_ballistic_vest_esapi", "fg": 5937 }, - { "id": "overlay_female_worn_helmet_riot", "fg": 5938 }, - { "id": "overlay_male_worn_helmet_riot", "fg": 5939 }, - { "id": "overlay_female_worn_kevlar", "fg": 5940 }, - { "id": "overlay_male_worn_kevlar", "fg": 5941 }, - { "id": "overlay_female_worn_legguard_hard", "fg": 5942 }, - { "id": "overlay_male_worn_legguard_hard", "fg": 5943 }, - { "id": "overlay_female_worn_swat_armor", "fg": 5962 }, - { "id": "overlay_male_worn_swat_armor", "fg": 5963 }, - { "id": "overlay_female_worn_tac_fullhelmet", "fg": 5964 }, - { "id": "overlay_male_worn_tac_fullhelmet", "fg": 5965 }, - { "id": "overlay_female_worn_tac_helmet", "fg": 5966 }, - { "id": "overlay_male_worn_tac_helmet", "fg": 5967 }, - { "id": "overlay_female_worn_2byarm_guard", "fg": 5968 }, - { "id": "overlay_male_worn_2byarm_guard", "fg": 5969 }, - { "id": "overlay_female_worn_2byshin_guard", "fg": 5970 }, - { "id": "overlay_male_worn_2byshin_guard", "fg": 5971 }, - { "id": "overlay_female_worn_legguard_metal", "fg": 5972 }, - { "id": "overlay_male_worn_legguard_metal", "fg": 5973 }, - { "id": "overlay_female_worn_armguard_metal", "fg": 5974 }, - { "id": "overlay_male_worn_armguard_metal", "fg": 5975 }, - { "id": "overlay_male_worn_helmet_scrap", "fg": 5985 }, - { "id": "overlay_male_worn_armor_scrapsuit", "fg": 5989 }, - { "id": "overlay_male_worn_boots_scrap", "fg": 5981 }, - { "id": "overlay_male_worn_cuirass_scrap", "fg": 5983 }, - { "id": "overlay_male_worn_armguard_scrap", "fg": 5925 }, - { "id": "overlay_male_worn_legguard_scrap", "fg": 5987 }, - { "id": "overlay_female_worn_helmet_scrap", "fg": 5984 }, - { "id": "overlay_female_worn_armor_scrapsuit", "fg": 5988 }, - { "id": "overlay_female_worn_boots_scrap", "fg": 5980 }, - { "id": "overlay_female_worn_cuirass_scrap", "fg": 5982 }, - { "id": "overlay_female_worn_armguard_scrap", "fg": 5924 }, - { "id": "overlay_female_worn_legguard_scrap", "fg": 5986 }, - { "id": "overlay_male_worn_backpack", "fg": 5995 }, - { "id": "overlay_female_worn_backpack", "fg": 5990 }, - { "id": "overlay_male_worn_backpack_hiking", "fg": 5992 }, - { "id": "overlay_female_worn_backpack_hiking", "fg": 5991 }, - { "id": "overlay_female_worn_backpack_leather", "fg": 5993 }, - { "id": "overlay_male_worn_backpack_leather", "fg": 5994 }, - { "id": "overlay_male_worn_backpack_tactical_large", "fg": 5997 }, - { "id": "overlay_female_worn_backpack_tactical_large", "fg": 5996 }, - { "id": "overlay_male_worn_molle_pack", "fg": 5999 }, - { "id": "overlay_female_worn_molle_pack", "fg": 5998 }, - { "id": [ "overlay_female_worn_rifle_case_soft", "overlay_female_worn_rifle_case_soft_2" ], "fg": 6001 }, + { "id": "overlay_male_wielded_pointy_stick", "fg": 5854 }, + { "id": "overlay_female_wielded_pointy_stick", "fg": 5853 }, + { "id": "overlay_male_wielded_spear_wood", "fg": 5870 }, + { "id": "overlay_female_wielded_spear_wood", "fg": 5869 }, + { "id": "overlay_male_wielded_spear_spike", "fg": 5866 }, + { "id": "overlay_female_wielded_spear_spike", "fg": 5865 }, + { "id": "overlay_male_wielded_spear_knife", "fg": 5858 }, + { "id": "overlay_female_wielded_spear_knife", "fg": 5857 }, + { "id": "overlay_male_wielded_spear_knife_superior", "fg": 5860 }, + { "id": "overlay_female_wielded_spear_knife_superior", "fg": 5859 }, + { "id": "overlay_male_wielded_spear_rebar", "fg": 5864 }, + { "id": "overlay_female_wielded_spear_rebar", "fg": 5863 }, + { "id": "overlay_male_wielded_spear_pipe", "fg": 5862 }, + { "id": "overlay_female_wielded_spear_pipe", "fg": 5861 }, + { "id": "overlay_male_wielded_spear_steel", "fg": 5868 }, + { "id": "overlay_female_wielded_spear_steel", "fg": 5867 }, + { "id": "overlay_male_wielded_spear_copper", "fg": 5856 }, + { "id": "overlay_female_wielded_spear_copper", "fg": 5855 }, + { "id": "overlay_female_wielded_splinter", "fg": 5871 }, + { "id": "overlay_male_wielded_splinter", "fg": 5872 }, + { "id": "overlay_wielded_knife_steak", "fg": 5873 }, + { "id": "overlay_wielded_steel_chunk", "fg": 5874 }, + { "id": "overlay_wielded_steel_lump", "fg": 5875 }, + { "id": "overlay_female_wielded_stick", "fg": 5876 }, + { "id": "overlay_male_wielded_stick", "fg": 5877 }, + { "id": "overlay_female_wielded_stick_long", "fg": 5878 }, + { "id": "overlay_male_wielded_stick_long", "fg": 5879 }, + { "id": "overlay_female_wielded_primitive_hammer", "fg": 5880 }, + { "id": "overlay_male_wielded_primitive_hammer", "fg": 5881 }, + { "id": "overlay_female_wielded_spear_stone", "fg": 5882 }, + { "id": "overlay_male_wielded_spear_stone", "fg": 5883 }, + { "id": "overlay_wielded_knife_rambo", "fg": 5884 }, + { "id": "overlay_female_wielded_spear_survivor", "fg": 5885 }, + { "id": "overlay_male_wielded_spear_survivor", "fg": 5886 }, + { "id": "overlay_wielded_switchblade", "fg": 5887 }, + { "id": "overlay_wielded_tanto", "fg": 5889 }, + { "id": "overlay_female_wielded_teapot", "fg": 5890 }, + { "id": "overlay_male_wielded_teapot", "fg": 5891 }, + { "id": "overlay_female_wielded_television", "fg": 5892 }, + { "id": "overlay_male_wielded_television", "fg": 5893 }, + { "id": "overlay_female_wielded_thermos", "fg": 5894 }, + { "id": "overlay_male_wielded_thermos", "fg": 5895 }, + { "id": "overlay_wielded_boltcutters", "fg": 5896 }, + { "id": "overlay_wielded_e_tool", "fg": 5898 }, + { "id": "overlay_wielded_halligan", "fg": 5899 }, + { "id": "overlay_wielded_jackhammer", "fg": 5901 }, + { "id": "overlay_wielded_elec_jackhammer", "fg": 5901 }, + { "id": "overlay_wielded_lobotomizer", "fg": 5902 }, + { "id": "overlay_wielded_makeshift_axe", "fg": 5903 }, + { "id": "overlay_wielded_ny_hook", "fg": 5904 }, + { "id": "overlay_wielded_pickaxe", "fg": 5905 }, + { "id": "overlay_wielded_hammer_sledge_engineer", "fg": 5906 }, + { "id": "overlay_wielded_hammer_sledge_heavy", "fg": 5907 }, + { "id": "overlay_wielded_hammer_sledge_short", "fg": 5908 }, + { "id": "overlay_wielded_hammer_sledge", "fg": 5909 }, + { "id": "overlay_wielded_g_shovel", "fg": 5910 }, + { "id": "overlay_wielded_primitive_shovel", "fg": 5911 }, + { "id": "overlay_wielded_knife_trench", "fg": 5912 }, + { "id": "overlay_wielded_wakizashi", "fg": 5913 }, + { "id": "overlay_male_wielded_2h_flail_steel", "fg": 5915 }, + { "id": "overlay_female_wielded_2h_flail_steel", "fg": 5914 }, + { "id": "overlay_wielded_warhammer", "fg": 5916 }, + { "id": "overlay_wielded_bolas", "fg": 5917 }, + { "id": "overlay_wielded_bullwhip", "fg": 5918 }, + { "id": "overlay_female_wielded_homewrecker", "fg": 5919 }, + { "id": "overlay_male_wielded_homewrecker", "fg": 5920 }, + { "id": "overlay_wielded_lawn_dart", "fg": 5921 }, + { "id": "overlay_wielded_net", "fg": 5922 }, + { "id": "overlay_wielded_bullwhip_razor", "fg": 5923 }, + { "id": "overlay_wielded_sling", "fg": 5924 }, + { "id": "overlay_wielded_staff_sling", "fg": 5925 }, + { "id": "overlay_wielded_throwing_axe", "fg": 5926 }, + { "id": "overlay_female_wielded_throwing_knife", "fg": 5927 }, + { "id": "overlay_male_wielded_throwing_knife", "fg": 5928 }, + { "id": "overlay_wielded_throwing_stick", "fg": 5929 }, + { "id": "overlay_wielded_shocktonfa_off", "fg": 5930 }, + { "id": "overlay_wielded_shocktonfa_on", "fg": 5930 }, + { "id": "overlay_wielded_tonfa", "fg": 5931 }, + { "id": "overlay_wielded_tonfa_wood", "fg": 5932 }, + { "id": "overlay_wielded_sword_wood", "fg": 5933 }, + { "id": "overlay_wielded_sword_nail", "fg": 5934 }, + { "id": "overlay_wielded_zweihander", "fg": 5935 }, + { "id": "overlay_female_worn_armor_samurai", "fg": 5936 }, + { "id": "overlay_male_worn_armor_samurai", "fg": 5937 }, + { "id": "overlay_female_worn_chainmail_suit", "fg": 5946 }, + { "id": "overlay_male_worn_chainmail_suit", "fg": 5947 }, + { "id": "overlay_female_worn_chainmail_feet", "fg": 5948 }, + { "id": "overlay_male_worn_chainmail_feet", "fg": 5949 }, + { "id": "overlay_female_worn_chainmail_hood", "fg": 5950 }, + { "id": "overlay_male_worn_chainmail_hood", "fg": 5951 }, + { "id": "overlay_female_worn_chainmail_hands", "fg": 5952 }, + { "id": "overlay_male_worn_chainmail_hands", "fg": 5953 }, + { "id": "overlay_female_worn_chainmail_hauberk", "fg": 5954 }, + { "id": "overlay_male_worn_chainmail_hauberk", "fg": 5955 }, + { "id": "overlay_female_worn_chainmail_legs", "fg": 5956 }, + { "id": "overlay_male_worn_chainmail_legs", "fg": 5957 }, + { "id": "overlay_female_worn_chainmail_arms", "fg": 5958 }, + { "id": "overlay_male_worn_chainmail_arms", "fg": 5959 }, + { "id": "overlay_female_worn_chainmail_vest", "fg": 5960 }, + { "id": "overlay_male_worn_chainmail_vest", "fg": 5961 }, + { "id": "overlay_female_worn_vest_leather_mod", "fg": 5942 }, + { "id": "overlay_male_worn_vest_leather_mod", "fg": 5943 }, + { "id": "overlay_female_worn_armor_blarmor", "fg": 5944 }, + { "id": "overlay_male_worn_armor_blarmor", "fg": 5945 }, + { "id": "overlay_female_worn_armguard_larmor", "fg": 5966 }, + { "id": "overlay_male_worn_armguard_larmor", "fg": 5967 }, + { "id": "overlay_female_worn_boots_larmor", "fg": 5968 }, + { "id": "overlay_male_worn_boots_larmor", "fg": 5969 }, + { "id": "overlay_male_worn_gauntlets_larmor", "fg": 5970 }, + { "id": "overlay_female_worn_gauntlets_larmor", "fg": 5971 }, + { "id": "overlay_male_worn_helmet_larmor", "fg": 5973 }, + { "id": "overlay_female_worn_helmet_larmor", "fg": 5972 }, + { "id": "overlay_female_worn_armor_larmor", "fg": 5974 }, + { "id": "overlay_male_worn_armor_larmor", "fg": 5975 }, + { "id": "overlay_female_worn_footrags_leather", "fg": 5976 }, + { "id": "overlay_male_worn_footrags_leather", "fg": 5977 }, + { "id": "overlay_female_worn_gloves_wraps_leather", "fg": 5978 }, + { "id": "overlay_male_worn_gloves_wraps_leather", "fg": 5979 }, + { "id": "overlay_female_worn_vambrace_larmor", "fg": 5980 }, + { "id": "overlay_male_worn_vambrace_larmor", "fg": 5981 }, + { "id": "overlay_female_worn_vest_leather", "fg": 5982 }, + { "id": "overlay_male_worn_vest_leather", "fg": 5983 }, + { "id": "overlay_female_worn_armor_plarmor", "fg": 5986 }, + { "id": "overlay_male_worn_armor_plarmor", "fg": 5987 }, + { "id": "overlay_female_worn_gloves_studded", "fg": 5994 }, + { "id": "overlay_male_worn_gloves_studded", "fg": 5995 }, + { "id": "overlay_male_worn_helmet_plate", "fg": 5965 }, + { "id": "overlay_male_worn_armor_lightplate", "fg": 5985 }, + { "id": "overlay_male_worn_gloves_plate", "fg": 5941 }, + { "id": "overlay_male_worn_boots_plate", "fg": 5939 }, + { "id": "overlay_male_worn_cuirass_lightplate", "fg": 5963 }, + { "id": "overlay_male_worn_armguard_lightplate", "fg": 5991 }, + { "id": "overlay_male_worn_legguard_lightplate", "fg": 5993 }, + { "id": "overlay_female_worn_helmet_plate", "fg": 5964 }, + { "id": "overlay_female_worn_armor_lightplate", "fg": 5984 }, + { "id": "overlay_female_worn_gloves_plate", "fg": 5940 }, + { "id": "overlay_female_worn_boots_plate", "fg": 5938 }, + { "id": "overlay_female_worn_cuirass_lightplate", "fg": 5962 }, + { "id": "overlay_female_worn_armguard_lightplate", "fg": 5990 }, + { "id": "overlay_female_worn_legguard_lightplate", "fg": 5992 }, + { "id": "overlay_female_worn_armguard_hard", "fg": 5996 }, + { "id": "overlay_male_worn_armguard_hard", "fg": 5997 }, + { "id": "overlay_female_worn_armor_riot", "fg": 5998 }, + { "id": "overlay_male_worn_armor_riot", "fg": 5999 }, + { "id": "overlay_female_worn_ballistic_vest_esapi", "fg": 6000 }, + { "id": "overlay_male_worn_ballistic_vest_esapi", "fg": 6001 }, + { "id": "overlay_female_worn_helmet_riot", "fg": 6002 }, + { "id": "overlay_male_worn_helmet_riot", "fg": 6003 }, + { "id": "overlay_female_worn_kevlar", "fg": 6004 }, + { "id": "overlay_male_worn_kevlar", "fg": 6005 }, + { "id": "overlay_female_worn_legguard_hard", "fg": 6006 }, + { "id": "overlay_male_worn_legguard_hard", "fg": 6007 }, + { "id": "overlay_female_worn_swat_armor", "fg": 6026 }, + { "id": "overlay_male_worn_swat_armor", "fg": 6027 }, + { "id": "overlay_female_worn_tac_fullhelmet", "fg": 6028 }, + { "id": "overlay_male_worn_tac_fullhelmet", "fg": 6029 }, + { "id": "overlay_female_worn_tac_helmet", "fg": 6030 }, + { "id": "overlay_male_worn_tac_helmet", "fg": 6031 }, + { "id": "overlay_female_worn_2byarm_guard", "fg": 6032 }, + { "id": "overlay_male_worn_2byarm_guard", "fg": 6033 }, + { "id": "overlay_female_worn_2byshin_guard", "fg": 6034 }, + { "id": "overlay_male_worn_2byshin_guard", "fg": 6035 }, + { "id": "overlay_female_worn_legguard_metal", "fg": 6036 }, + { "id": "overlay_male_worn_legguard_metal", "fg": 6037 }, + { "id": "overlay_female_worn_armguard_metal", "fg": 6038 }, + { "id": "overlay_male_worn_armguard_metal", "fg": 6039 }, + { "id": "overlay_male_worn_helmet_scrap", "fg": 6049 }, + { "id": "overlay_male_worn_armor_scrapsuit", "fg": 6053 }, + { "id": "overlay_male_worn_boots_scrap", "fg": 6045 }, + { "id": "overlay_male_worn_cuirass_scrap", "fg": 6047 }, + { "id": "overlay_male_worn_armguard_scrap", "fg": 5989 }, + { "id": "overlay_male_worn_legguard_scrap", "fg": 6051 }, + { "id": "overlay_female_worn_helmet_scrap", "fg": 6048 }, + { "id": "overlay_female_worn_armor_scrapsuit", "fg": 6052 }, + { "id": "overlay_female_worn_boots_scrap", "fg": 6044 }, + { "id": "overlay_female_worn_cuirass_scrap", "fg": 6046 }, + { "id": "overlay_female_worn_armguard_scrap", "fg": 5988 }, + { "id": "overlay_female_worn_legguard_scrap", "fg": 6050 }, + { "id": "overlay_male_worn_backpack", "fg": 6059 }, + { "id": "overlay_female_worn_backpack", "fg": 6054 }, + { "id": "overlay_male_worn_backpack_hiking", "fg": 6056 }, + { "id": "overlay_female_worn_backpack_hiking", "fg": 6055 }, + { "id": "overlay_female_worn_backpack_leather", "fg": 6057 }, + { "id": "overlay_male_worn_backpack_leather", "fg": 6058 }, + { "id": "overlay_male_worn_backpack_tactical_large", "fg": 6061 }, + { "id": "overlay_female_worn_backpack_tactical_large", "fg": 6060 }, + { "id": "overlay_male_worn_molle_pack", "fg": 6063 }, + { "id": "overlay_female_worn_molle_pack", "fg": 6062 }, + { "id": [ "overlay_female_worn_rifle_case_soft", "overlay_female_worn_rifle_case_soft_2" ], "fg": 6065 }, { "id": [ "overlay_female_worn_rifle_case_soft_leather", "overlay_female_worn_rifle_case_soft_leather_2", "overlay_female_worn_rifle_case_xl_soft_leather" ], - "fg": 6002 + "fg": 6066 }, - { "id": [ "overlay_male_worn_rifle_case_soft", "overlay_male_worn_rifle_case_soft_2" ], "fg": 6005 }, + { "id": [ "overlay_male_worn_rifle_case_soft", "overlay_male_worn_rifle_case_soft_2" ], "fg": 6069 }, { "id": [ "overlay_male_worn_rifle_case_soft_leather", "overlay_male_worn_rifle_case_soft_leather_2", "overlay_male_worn_rifle_case_xl_soft_leather" ], - "fg": 6006 - }, - { "id": "overlay_female_worn_rucksack", "fg": 6008 }, - { "id": "overlay_male_worn_rucksack", "fg": 6009 }, - { "id": "overlay_worn_bead_necklace", "fg": 6011 }, - { "id": "overlay_worn_bead_bracelet", "fg": 6010 }, - { "id": "overlay_worn_leather_belt", "fg": 6021 }, - { "id": "overlay_worn_police_belt", "fg": 6035 }, - { "id": "overlay_worn_tool_belt", "fg": 6040 }, - { "id": "overlay_worn_webbing_belt", "fg": 6042 }, - { "id": "overlay_worn_briefcase", "fg": 6014 }, - { "id": "overlay_wielded_briefcase", "fg": 6014 }, - { "id": "overlay_worn_briefcase_smg", "fg": 6014 }, - { "id": "overlay_wielded_briefcase_smg", "fg": 6014 }, - { "id": "overlay_worn_hk_briefcase", "fg": 6014 }, - { "id": "overlay_wielded_hk_briefcase", "fg": 6014 }, - { "id": "overlay_female_worn_wearable_light", "fg": 6017 }, - { "id": "overlay_male_worn_wearable_light", "fg": 6018 }, - { "id": "overlay_female_worn_wearable_light_on", "fg": 6017 }, - { "id": "overlay_male_worn_wearable_light_on", "fg": 6018 }, - { "id": "overlay_female_worn_survivor_light", "fg": 6017 }, - { "id": "overlay_male_worn_survivor_light", "fg": 6018 }, - { "id": "overlay_female_worn_survivor_light_on", "fg": 6017 }, - { "id": "overlay_male_worn_survivor_light_on", "fg": 6018 }, - { "id": "overlay_female_worn_holster", "fg": 6019 }, - { "id": "overlay_male_worn_holster", "fg": 6020 }, - { "id": "overlay_female_worn_legpouch_large", "fg": 6022 }, - { "id": "overlay_male_worn_legpouch_large", "fg": 6023 }, - { "id": "overlay_female_worn_legrig", "fg": 6024 }, - { "id": "overlay_male_worn_legrig", "fg": 6025 }, - { "id": "overlay_worn_judo_belt_black", "fg": 6012 }, - { "id": "overlay_worn_judo_belt_blue", "fg": 6013 }, - { "id": "overlay_worn_judo_belt_brown", "fg": 6015 }, - { "id": "overlay_worn_judo_belt_green", "fg": 6016 }, - { "id": "overlay_worn_judo_belt_orange", "fg": 6026 }, - { "id": "overlay_worn_judo_belt_white", "fg": 6043 }, - { "id": "overlay_worn_judo_belt_yellow", "fg": 6044 }, - { "id": "overlay_female_worn_ragpouch", "fg": 6036 }, - { "id": "overlay_male_worn_ragpouch", "fg": 6037 }, - { "id": "overlay_female_worn_tacvest", "fg": 6038 }, - { "id": "overlay_male_worn_tacvest", "fg": 6039 }, - { "id": "overlay_worn_wearable_light", "fg": 6041 }, - { "id": "overlay_female_worn_dinosuit", "fg": 6045 }, - { "id": "overlay_male_worn_dinosuit", "fg": 6046 }, - { "id": "overlay_female_worn_hazmat_suit", "fg": 6047 }, - { "id": "overlay_male_worn_hazmat_suit", "fg": 6048 }, - { "id": "overlay_female_worn_judo_gi", "fg": 6049 }, - { "id": "overlay_male_worn_judo_gi", "fg": 6050 }, - { "id": "overlay_female_worn_jumpsuit", "fg": 6051 }, - { "id": "overlay_male_worn_jumpsuit", "fg": 6052 }, - { "id": "overlay_female_worn_karate_gi", "fg": 6053 }, - { "id": "overlay_male_worn_karate_gi", "fg": 6054 }, - { "id": "overlay_female_worn_robofac_jumpsuit", "fg": 6058 }, - { "id": "overlay_male_worn_robofac_jumpsuit", "fg": 6059 }, - { "id": "overlay_female_worn_suit", "fg": 6060 }, - { "id": "overlay_male_worn_suit", "fg": 6061 }, - { "id": "overlay_female_worn_touring_suit", "fg": 6062 }, - { "id": "overlay_male_worn_touring_suit", "fg": 6063 }, - { "id": "overlay_female_worn_boots", "fg": 6067 }, - { "id": "overlay_male_worn_boots", "fg": 6072 }, - { "id": "overlay_female_worn_boots_bunker", "fg": 6064 }, - { "id": "overlay_male_worn_boots_bunker", "fg": 6065 }, - { "id": "overlay_female_worn_boots_fur", "fg": 6068 }, - { "id": "overlay_male_worn_boots_fur", "fg": 6069 }, - { "id": "overlay_female_worn_boots_hiking", "fg": 6070 }, - { "id": "overlay_male_worn_boots_hiking", "fg": 6071 }, - { "id": "overlay_female_worn_boots_rubber", "fg": 6073 }, - { "id": "overlay_male_worn_boots_rubber", "fg": 6074 }, - { "id": "overlay_female_worn_boots_steel", "fg": 6075 }, - { "id": "overlay_male_worn_boots_steel", "fg": 6076 }, - { "id": "overlay_female_worn_boots_western", "fg": 6077 }, - { "id": "overlay_male_worn_boots_western", "fg": 6078 }, - { "id": "overlay_female_worn_boots_winter", "fg": 6079 }, - { "id": "overlay_male_worn_boots_winter", "fg": 6080 }, - { "id": "overlay_female_worn_motorbike_boots", "fg": 6081 }, - { "id": "overlay_male_worn_motorbike_boots", "fg": 6082 }, - { "id": "overlay_worn_boots_combat", "fg": 6066 }, - { "id": "overlay_male_worn_cape_fp", "fg": 6115 }, - { "id": "overlay_female_worn_cape_fp", "fg": 6114 }, - { "id": "overlay_male_worn_cloak", "fg": 6121 }, - { "id": "overlay_female_worn_cloak", "fg": 6116 }, - { "id": "overlay_male_worn_cloak_wool", "fg": 6123 }, - { "id": "overlay_female_worn_cloak_wool", "fg": 6122 }, - { "id": "overlay_male_worn_cloak_leather", "fg": 6120 }, - { "id": "overlay_female_worn_cloak_leather", "fg": 6119 }, - { "id": "overlay_male_worn_cloak_fur", "fg": 6118 }, - { "id": "overlay_female_worn_cloak_fur", "fg": 6117 }, - { "id": "overlay_female_worn_dress", "fg": 6141 }, - { "id": "overlay_male_worn_dress", "fg": 6142 }, - { "id": "overlay_female_worn_sundress", "fg": 6149 }, - { "id": "overlay_male_worn_sundress", "fg": 6150 }, - { "id": "overlay_female_worn_maid_hat", "fg": 6242 }, - { "id": "overlay_female_worn_maid_dress", "fg": 6143 }, - { "id": "overlay_male_worn_maid_hat", "fg": 6243 }, - { "id": "overlay_male_worn_maid_dress", "fg": 6144 }, - { "id": "overlay_female_worn_skirt", "fg": 6145 }, - { "id": "overlay_male_worn_skirt", "fg": 6148 }, - { "id": "overlay_female_worn_skirt_leather", "fg": 6146 }, - { "id": "overlay_male_worn_skirt_leather", "fg": 6147 }, - { "id": "overlay_worn_elbow_pads", "fg": 6151 }, - { "id": "overlay_female_worn_glasses_bal", "fg": 6152 }, - { "id": "overlay_male_worn_glasses_bal", "fg": 6153 }, - { "id": "overlay_female_worn_glasses_bifocal", "fg": 6154 }, - { "id": "overlay_male_worn_glasses_bifocal", "fg": 6155 }, - { "id": "overlay_female_worn_glasses_eye", "fg": 6156 }, - { "id": "overlay_male_worn_glasses_eye", "fg": 6157 }, - { "id": "overlay_female_worn_glasses_monocle", "fg": 6158 }, - { "id": "overlay_male_worn_glasses_monocle", "fg": 6159 }, - { "id": "overlay_female_worn_glasses_reading", "fg": 6160 }, - { "id": "overlay_male_worn_glasses_reading", "fg": 6161 }, - { "id": "overlay_female_worn_glasses_safety", "fg": 6162 }, - { "id": "overlay_male_worn_glasses_safety", "fg": 6163 }, - { "id": "overlay_female_worn_mask_ski", "fg": 6164 }, - { "id": "overlay_male_worn_mask_ski", "fg": 6167 }, - { "id": "overlay_female_worn_mask_ski_loose", "fg": 6165 }, - { "id": "overlay_male_worn_mask_ski_loose", "fg": 6166 }, - { "id": "overlay_female_worn_sunglasses", "fg": 6170 }, - { "id": "overlay_male_worn_sunglasses", "fg": 6171 }, - { "id": "overlay_female_worn_goggles_welding", "fg": 6172 }, - { "id": "overlay_male_worn_goggles_welding", "fg": 6173 }, - { "id": "overlay_female_worn_glove_jackson", "fg": 6174 }, - { "id": "overlay_male_worn_glove_jackson", "fg": 6175 }, - { "id": "overlay_female_worn_gloves_liner", "fg": 6188 }, - { "id": "overlay_male_worn_gloves_liner", "fg": 6189 }, - { "id": "overlay_female_worn_gloves_medical", "fg": 6190 }, - { "id": "overlay_male_worn_gloves_medical", "fg": 6191 }, - { "id": "overlay_female_worn_gloves_rubber", "fg": 6192 }, - { "id": "overlay_male_worn_gloves_rubber", "fg": 6193 }, - { "id": "overlay_female_worn_gloves_tactical", "fg": 6194 }, - { "id": "overlay_male_worn_gloves_tactical", "fg": 6195 }, - { "id": "overlay_female_worn_gloves_winter", "fg": 6196 }, - { "id": "overlay_male_worn_gloves_winter", "fg": 6197 }, - { "id": "overlay_female_worn_gloves_wool", "fg": 6198 }, - { "id": "overlay_male_worn_gloves_wool", "fg": 6199 }, - { "id": "overlay_female_worn_gloves_work", "fg": 6200 }, - { "id": "overlay_male_worn_gloves_work", "fg": 6201 }, - { "id": "overlay_female_worn_gloves_cut_resistant", "fg": 6176 }, - { "id": "overlay_male_worn_gloves_cut_resistant", "fg": 6177 }, - { "id": "overlay_female_worn_gloves_fingerless", "fg": 6178 }, - { "id": "overlay_male_worn_gloves_fingerless", "fg": 6179 }, - { "id": "overlay_female_worn_gloves_fur", "fg": 6180 }, - { "id": "overlay_male_worn_gloves_fur", "fg": 6181 }, - { "id": "overlay_female_worn_gloves_golf", "fg": 6182 }, - { "id": "overlay_male_worn_gloves_golf", "fg": 6183 }, - { "id": "overlay_female_worn_gloves_leather", "fg": 6184 }, - { "id": "overlay_male_worn_gloves_leather", "fg": 6185 }, - { "id": "overlay_female_worn_gloves_light", "fg": 6186 }, - { "id": "overlay_male_worn_gloves_light", "fg": 6187 }, - { "id": "overlay_male_worn_long_glove_white", "fg": 6203 }, - { "id": "overlay_female_worn_long_glove_white", "fg": 6202 }, - { "id": "overlay_female_worn_mittens", "fg": 6204 }, - { "id": "overlay_male_worn_mittens", "fg": 6205 }, - { "id": "overlay_female_worn_beret", "fg": 6208 }, - { "id": "overlay_male_worn_beret", "fg": 6209 }, - { "id": "overlay_female_worn_bowhat", "fg": 6210 }, - { "id": "overlay_male_worn_bowhat", "fg": 6211 }, - { "id": "overlay_female_worn_cowboy_hat", "fg": 6212 }, - { "id": "overlay_male_worn_cowboy_hat", "fg": 6213 }, - { "id": "overlay_female_worn_fedora", "fg": 6214 }, - { "id": "overlay_male_worn_fedora", "fg": 6215 }, - { "id": "overlay_female_worn_firehelmet", "fg": 6216 }, - { "id": "overlay_male_worn_firehelmet", "fg": 6217 }, - { "id": "overlay_female_worn_hat_ball", "fg": 6218 }, - { "id": "overlay_male_worn_hat_ball", "fg": 6219 }, - { "id": "overlay_male_worn_hat_cotton", "fg": 6221 }, - { "id": "overlay_female_worn_hat_cotton", "fg": 6220 }, - { "id": "overlay_male_worn_hat_fur", "fg": 6223 }, - { "id": "overlay_female_worn_hat_fur", "fg": 6222 }, - { "id": "overlay_female_worn_hat_hard", "fg": 6224 }, - { "id": "overlay_male_worn_hat_hard", "fg": 6225 }, - { "id": "overlay_female_worn_hat_noise_cancelling", "fg": 6228 }, - { "id": "overlay_male_worn_hat_noise_cancelling", "fg": 6229 }, - { "id": "overlay_female_worn_helmet_army", "fg": 6230 }, - { "id": "overlay_male_worn_helmet_army", "fg": 6231 }, - { "id": "overlay_female_worn_helmet_barbute", "fg": 6232 }, - { "id": "overlay_male_worn_helmet_barbute", "fg": 6233 }, - { "id": "overlay_female_worn_helmet_bike", "fg": 6234 }, - { "id": "overlay_male_worn_helmet_bike", "fg": 6235 }, - { "id": "overlay_female_worn_helmet_chitin", "fg": 6236 }, - { "id": "overlay_male_worn_helmet_chitin", "fg": 6237 }, - { "id": "overlay_female_worn_helmet_kabuto", "fg": 6238 }, - { "id": "overlay_male_worn_helmet_kabuto", "fg": 6239 }, - { "id": "overlay_female_worn_helmet_motor", "fg": 6240 }, - { "id": "overlay_male_worn_helmet_motor", "fg": 6241 }, - { "id": "overlay_female_worn_hat_knit", "fg": 6226 }, - { "id": "overlay_male_worn_hat_knit", "fg": 6227 }, - { "id": "overlay_female_worn_straw_fedora", "fg": 6250 }, - { "id": "overlay_male_worn_straw_fedora", "fg": 6251 }, - { "id": "overlay_female_worn_straw_hat", "fg": 6252 }, - { "id": "overlay_male_worn_straw_hat", "fg": 6253 }, - { "id": "overlay_female_worn_10gal_hat", "fg": 6254 }, - { "id": "overlay_male_worn_10gal_hat", "fg": 6255 }, - { "id": "overlay_female_worn_tophat", "fg": 6256 }, - { "id": "overlay_male_worn_tophat", "fg": 6257 }, - { "id": "overlay_male_worn_turban", "fg": 6259 }, - { "id": "overlay_female_worn_turban", "fg": 6258 }, - { "id": "overlay_female_worn_blazer", "fg": 6262 }, - { "id": "overlay_male_worn_blazer", "fg": 6263 }, - { "id": "overlay_female_worn_bunker_coat", "fg": 6264 }, - { "id": "overlay_male_worn_bunker_coat", "fg": 6265 }, - { "id": "overlay_female_worn_coat_lab", "fg": 6266 }, - { "id": "overlay_male_worn_coat_lab", "fg": 6267 }, - { "id": "overlay_female_worn_coat_rain", "fg": 6268 }, - { "id": "overlay_male_worn_coat_rain", "fg": 6269 }, - { "id": "overlay_female_worn_coat_winter", "fg": 6270 }, - { "id": "overlay_male_worn_coat_winter", "fg": 6271 }, - { "id": "overlay_female_worn_duster", "fg": 6272 }, - { "id": "overlay_male_worn_duster", "fg": 6273 }, - { "id": "overlay_female_worn_jacket_flannel", "fg": 6278 }, - { "id": "overlay_male_worn_jacket_flannel", "fg": 6279 }, - { "id": "overlay_female_worn_jacket_jean", "fg": 6280 }, - { "id": "overlay_male_worn_jacket_jean", "fg": 6281 }, - { "id": "overlay_female_worn_jacket_light", "fg": 6284 }, - { "id": "overlay_male_worn_jacket_light", "fg": 6285 }, - { "id": "overlay_female_worn_jacket_evac", "fg": 6276 }, - { "id": "overlay_male_worn_jacket_evac", "fg": 6277 }, - { "id": "overlay_female_worn_jacket_leather", "fg": 6286 }, - { "id": "overlay_male_worn_jacket_leather", "fg": 6287 }, - { "id": "overlay_female_worn_jacket_leather_red", "fg": 6282 }, - { "id": "overlay_male_worn_jacket_leather_red", "fg": 6283 }, - { "id": "overlay_female_worn_ski_jacket", "fg": 6288 }, - { "id": "overlay_male_worn_ski_jacket", "fg": 6289 }, - { "id": "overlay_female_worn_jacket_windbreaker", "fg": 6294 }, - { "id": "overlay_male_worn_jacket_windbreaker", "fg": 6295 }, - { "id": "overlay_female_worn_winter_jacket_army", "fg": 6260 }, - { "id": "overlay_male_worn_winter_jacket_army", "fg": 6261 }, - { "id": "overlay_female_worn_jacket_army", "fg": 6274 }, - { "id": "overlay_male_worn_jacket_army", "fg": 6275 }, - { "id": "overlay_female_worn_trenchcoat", "fg": 6290 }, - { "id": "overlay_male_worn_trenchcoat", "fg": 6291 }, - { "id": "overlay_female_worn_waistcoat", "fg": 6292 }, - { "id": "overlay_male_worn_waistcoat", "fg": 6293 }, - { "id": "overlay_female_worn_peacoat", "fg": 6296 }, - { "id": "overlay_male_worn_peacoat", "fg": 6297 }, - { "id": "overlay_female_worn_poncho", "fg": 6298 }, - { "id": "overlay_male_worn_poncho", "fg": 6299 }, - { "id": "overlay_worn_badge_swat", "fg": 6300 }, - { "id": "overlay_female_worn_barrette", "fg": 6301 }, - { "id": "overlay_male_worn_barrette", "fg": 6302 }, - { "id": "overlay_female_worn_badge_deputy", "fg": 6303 }, - { "id": "overlay_male_worn_badge_deputy", "fg": 6304 }, + "fg": 6070 + }, + { "id": "overlay_female_worn_rucksack", "fg": 6072 }, + { "id": "overlay_male_worn_rucksack", "fg": 6073 }, + { "id": "overlay_worn_bead_necklace", "fg": 6075 }, + { "id": "overlay_worn_bead_bracelet", "fg": 6074 }, + { "id": "overlay_worn_leather_belt", "fg": 6085 }, + { "id": "overlay_worn_police_belt", "fg": 6099 }, + { "id": "overlay_worn_tool_belt", "fg": 6104 }, + { "id": "overlay_worn_webbing_belt", "fg": 6106 }, + { "id": "overlay_worn_briefcase", "fg": 6078 }, + { "id": "overlay_wielded_briefcase", "fg": 6078 }, + { "id": "overlay_worn_briefcase_smg", "fg": 6078 }, + { "id": "overlay_wielded_briefcase_smg", "fg": 6078 }, + { "id": "overlay_worn_hk_briefcase", "fg": 6078 }, + { "id": "overlay_wielded_hk_briefcase", "fg": 6078 }, + { "id": "overlay_female_worn_wearable_light", "fg": 6081 }, + { "id": "overlay_male_worn_wearable_light", "fg": 6082 }, + { "id": "overlay_female_worn_wearable_light_on", "fg": 6081 }, + { "id": "overlay_male_worn_wearable_light_on", "fg": 6082 }, + { "id": "overlay_female_worn_survivor_light", "fg": 6081 }, + { "id": "overlay_male_worn_survivor_light", "fg": 6082 }, + { "id": "overlay_female_worn_survivor_light_on", "fg": 6081 }, + { "id": "overlay_male_worn_survivor_light_on", "fg": 6082 }, + { "id": "overlay_female_worn_holster", "fg": 6083 }, + { "id": "overlay_male_worn_holster", "fg": 6084 }, + { "id": "overlay_female_worn_legpouch_large", "fg": 6086 }, + { "id": "overlay_male_worn_legpouch_large", "fg": 6087 }, + { "id": "overlay_female_worn_legrig", "fg": 6088 }, + { "id": "overlay_male_worn_legrig", "fg": 6089 }, + { "id": "overlay_worn_judo_belt_black", "fg": 6076 }, + { "id": "overlay_worn_judo_belt_blue", "fg": 6077 }, + { "id": "overlay_worn_judo_belt_brown", "fg": 6079 }, + { "id": "overlay_worn_judo_belt_green", "fg": 6080 }, + { "id": "overlay_worn_judo_belt_orange", "fg": 6090 }, + { "id": "overlay_worn_judo_belt_white", "fg": 6107 }, + { "id": "overlay_worn_judo_belt_yellow", "fg": 6108 }, + { "id": "overlay_female_worn_ragpouch", "fg": 6100 }, + { "id": "overlay_male_worn_ragpouch", "fg": 6101 }, + { "id": "overlay_female_worn_tacvest", "fg": 6102 }, + { "id": "overlay_male_worn_tacvest", "fg": 6103 }, + { "id": "overlay_worn_wearable_light", "fg": 6105 }, + { "id": "overlay_female_worn_dinosuit", "fg": 6109 }, + { "id": "overlay_male_worn_dinosuit", "fg": 6110 }, + { "id": "overlay_female_worn_hazmat_suit", "fg": 6111 }, + { "id": "overlay_male_worn_hazmat_suit", "fg": 6112 }, + { "id": "overlay_female_worn_judo_gi", "fg": 6113 }, + { "id": "overlay_male_worn_judo_gi", "fg": 6114 }, + { "id": "overlay_female_worn_jumpsuit", "fg": 6115 }, + { "id": "overlay_male_worn_jumpsuit", "fg": 6116 }, + { "id": "overlay_female_worn_karate_gi", "fg": 6117 }, + { "id": "overlay_male_worn_karate_gi", "fg": 6118 }, + { "id": "overlay_female_worn_robofac_jumpsuit", "fg": 6122 }, + { "id": "overlay_male_worn_robofac_jumpsuit", "fg": 6123 }, + { "id": "overlay_female_worn_suit", "fg": 6124 }, + { "id": "overlay_male_worn_suit", "fg": 6125 }, + { "id": "overlay_female_worn_touring_suit", "fg": 6126 }, + { "id": "overlay_male_worn_touring_suit", "fg": 6127 }, + { "id": "overlay_female_worn_boots", "fg": 6131 }, + { "id": "overlay_male_worn_boots", "fg": 6136 }, + { "id": "overlay_female_worn_boots_bunker", "fg": 6128 }, + { "id": "overlay_male_worn_boots_bunker", "fg": 6129 }, + { "id": "overlay_female_worn_boots_fur", "fg": 6132 }, + { "id": "overlay_male_worn_boots_fur", "fg": 6133 }, + { "id": "overlay_female_worn_boots_hiking", "fg": 6134 }, + { "id": "overlay_male_worn_boots_hiking", "fg": 6135 }, + { "id": "overlay_female_worn_boots_rubber", "fg": 6137 }, + { "id": "overlay_male_worn_boots_rubber", "fg": 6138 }, + { "id": "overlay_female_worn_boots_steel", "fg": 6139 }, + { "id": "overlay_male_worn_boots_steel", "fg": 6140 }, + { "id": "overlay_female_worn_boots_western", "fg": 6141 }, + { "id": "overlay_male_worn_boots_western", "fg": 6142 }, + { "id": "overlay_female_worn_boots_winter", "fg": 6143 }, + { "id": "overlay_male_worn_boots_winter", "fg": 6144 }, + { "id": "overlay_female_worn_motorbike_boots", "fg": 6145 }, + { "id": "overlay_male_worn_motorbike_boots", "fg": 6146 }, + { "id": "overlay_worn_boots_combat", "fg": 6130 }, + { "id": "overlay_male_worn_cape_fp", "fg": 6179 }, + { "id": "overlay_female_worn_cape_fp", "fg": 6178 }, + { "id": "overlay_male_worn_cloak", "fg": 6185 }, + { "id": "overlay_female_worn_cloak", "fg": 6180 }, + { "id": "overlay_male_worn_cloak_wool", "fg": 6187 }, + { "id": "overlay_female_worn_cloak_wool", "fg": 6186 }, + { "id": "overlay_male_worn_cloak_leather", "fg": 6184 }, + { "id": "overlay_female_worn_cloak_leather", "fg": 6183 }, + { "id": "overlay_male_worn_cloak_fur", "fg": 6182 }, + { "id": "overlay_female_worn_cloak_fur", "fg": 6181 }, + { "id": "overlay_female_worn_dress", "fg": 6205 }, + { "id": "overlay_male_worn_dress", "fg": 6206 }, + { "id": "overlay_female_worn_sundress", "fg": 6213 }, + { "id": "overlay_male_worn_sundress", "fg": 6214 }, + { "id": "overlay_female_worn_maid_hat", "fg": 6306 }, + { "id": "overlay_female_worn_maid_dress", "fg": 6207 }, + { "id": "overlay_male_worn_maid_hat", "fg": 6307 }, + { "id": "overlay_male_worn_maid_dress", "fg": 6208 }, + { "id": "overlay_female_worn_skirt", "fg": 6209 }, + { "id": "overlay_male_worn_skirt", "fg": 6212 }, + { "id": "overlay_female_worn_skirt_leather", "fg": 6210 }, + { "id": "overlay_male_worn_skirt_leather", "fg": 6211 }, + { "id": "overlay_worn_elbow_pads", "fg": 6215 }, + { "id": "overlay_female_worn_glasses_bal", "fg": 6216 }, + { "id": "overlay_male_worn_glasses_bal", "fg": 6217 }, + { "id": "overlay_female_worn_glasses_bifocal", "fg": 6218 }, + { "id": "overlay_male_worn_glasses_bifocal", "fg": 6219 }, + { "id": "overlay_female_worn_glasses_eye", "fg": 6220 }, + { "id": "overlay_male_worn_glasses_eye", "fg": 6221 }, + { "id": "overlay_female_worn_glasses_monocle", "fg": 6222 }, + { "id": "overlay_male_worn_glasses_monocle", "fg": 6223 }, + { "id": "overlay_female_worn_glasses_reading", "fg": 6224 }, + { "id": "overlay_male_worn_glasses_reading", "fg": 6225 }, + { "id": "overlay_female_worn_glasses_safety", "fg": 6226 }, + { "id": "overlay_male_worn_glasses_safety", "fg": 6227 }, + { "id": "overlay_female_worn_mask_ski", "fg": 6228 }, + { "id": "overlay_male_worn_mask_ski", "fg": 6231 }, + { "id": "overlay_female_worn_mask_ski_loose", "fg": 6229 }, + { "id": "overlay_male_worn_mask_ski_loose", "fg": 6230 }, + { "id": "overlay_female_worn_sunglasses", "fg": 6234 }, + { "id": "overlay_male_worn_sunglasses", "fg": 6235 }, + { "id": "overlay_female_worn_goggles_welding", "fg": 6236 }, + { "id": "overlay_male_worn_goggles_welding", "fg": 6237 }, + { "id": "overlay_female_worn_glove_jackson", "fg": 6238 }, + { "id": "overlay_male_worn_glove_jackson", "fg": 6239 }, + { "id": "overlay_female_worn_gloves_liner", "fg": 6252 }, + { "id": "overlay_male_worn_gloves_liner", "fg": 6253 }, + { "id": "overlay_female_worn_gloves_medical", "fg": 6254 }, + { "id": "overlay_male_worn_gloves_medical", "fg": 6255 }, + { "id": "overlay_female_worn_gloves_rubber", "fg": 6256 }, + { "id": "overlay_male_worn_gloves_rubber", "fg": 6257 }, + { "id": "overlay_female_worn_gloves_tactical", "fg": 6258 }, + { "id": "overlay_male_worn_gloves_tactical", "fg": 6259 }, + { "id": "overlay_female_worn_gloves_winter", "fg": 6260 }, + { "id": "overlay_male_worn_gloves_winter", "fg": 6261 }, + { "id": "overlay_female_worn_gloves_wool", "fg": 6262 }, + { "id": "overlay_male_worn_gloves_wool", "fg": 6263 }, + { "id": "overlay_female_worn_gloves_work", "fg": 6264 }, + { "id": "overlay_male_worn_gloves_work", "fg": 6265 }, + { "id": "overlay_female_worn_gloves_cut_resistant", "fg": 6240 }, + { "id": "overlay_male_worn_gloves_cut_resistant", "fg": 6241 }, + { "id": "overlay_female_worn_gloves_fingerless", "fg": 6242 }, + { "id": "overlay_male_worn_gloves_fingerless", "fg": 6243 }, + { "id": "overlay_female_worn_gloves_fur", "fg": 6244 }, + { "id": "overlay_male_worn_gloves_fur", "fg": 6245 }, + { "id": "overlay_female_worn_gloves_golf", "fg": 6246 }, + { "id": "overlay_male_worn_gloves_golf", "fg": 6247 }, + { "id": "overlay_female_worn_gloves_leather", "fg": 6248 }, + { "id": "overlay_male_worn_gloves_leather", "fg": 6249 }, + { "id": "overlay_female_worn_gloves_light", "fg": 6250 }, + { "id": "overlay_male_worn_gloves_light", "fg": 6251 }, + { "id": "overlay_male_worn_long_glove_white", "fg": 6267 }, + { "id": "overlay_female_worn_long_glove_white", "fg": 6266 }, + { "id": "overlay_female_worn_mittens", "fg": 6268 }, + { "id": "overlay_male_worn_mittens", "fg": 6269 }, + { "id": "overlay_female_worn_beret", "fg": 6272 }, + { "id": "overlay_male_worn_beret", "fg": 6273 }, + { "id": "overlay_female_worn_bowhat", "fg": 6274 }, + { "id": "overlay_male_worn_bowhat", "fg": 6275 }, + { "id": "overlay_female_worn_cowboy_hat", "fg": 6276 }, + { "id": "overlay_male_worn_cowboy_hat", "fg": 6277 }, + { "id": "overlay_female_worn_fedora", "fg": 6278 }, + { "id": "overlay_male_worn_fedora", "fg": 6279 }, + { "id": "overlay_female_worn_firehelmet", "fg": 6280 }, + { "id": "overlay_male_worn_firehelmet", "fg": 6281 }, + { "id": "overlay_female_worn_hat_ball", "fg": 6282 }, + { "id": "overlay_male_worn_hat_ball", "fg": 6283 }, + { "id": "overlay_male_worn_hat_cotton", "fg": 6285 }, + { "id": "overlay_female_worn_hat_cotton", "fg": 6284 }, + { "id": "overlay_male_worn_hat_fur", "fg": 6287 }, + { "id": "overlay_female_worn_hat_fur", "fg": 6286 }, + { "id": "overlay_female_worn_hat_hard", "fg": 6288 }, + { "id": "overlay_male_worn_hat_hard", "fg": 6289 }, + { "id": "overlay_female_worn_hat_noise_cancelling", "fg": 6292 }, + { "id": "overlay_male_worn_hat_noise_cancelling", "fg": 6293 }, + { "id": "overlay_female_worn_helmet_army", "fg": 6294 }, + { "id": "overlay_male_worn_helmet_army", "fg": 6295 }, + { "id": "overlay_female_worn_helmet_barbute", "fg": 6296 }, + { "id": "overlay_male_worn_helmet_barbute", "fg": 6297 }, + { "id": "overlay_female_worn_helmet_bike", "fg": 6298 }, + { "id": "overlay_male_worn_helmet_bike", "fg": 6299 }, + { "id": "overlay_female_worn_helmet_chitin", "fg": 6300 }, + { "id": "overlay_male_worn_helmet_chitin", "fg": 6301 }, + { "id": "overlay_female_worn_helmet_kabuto", "fg": 6302 }, + { "id": "overlay_male_worn_helmet_kabuto", "fg": 6303 }, + { "id": "overlay_female_worn_helmet_motor", "fg": 6304 }, + { "id": "overlay_male_worn_helmet_motor", "fg": 6305 }, + { "id": "overlay_female_worn_hat_knit", "fg": 6290 }, + { "id": "overlay_male_worn_hat_knit", "fg": 6291 }, + { "id": "overlay_female_worn_straw_fedora", "fg": 6314 }, + { "id": "overlay_male_worn_straw_fedora", "fg": 6315 }, + { "id": "overlay_female_worn_straw_hat", "fg": 6316 }, + { "id": "overlay_male_worn_straw_hat", "fg": 6317 }, + { "id": "overlay_female_worn_10gal_hat", "fg": 6318 }, + { "id": "overlay_male_worn_10gal_hat", "fg": 6319 }, + { "id": "overlay_female_worn_tophat", "fg": 6320 }, + { "id": "overlay_male_worn_tophat", "fg": 6321 }, + { "id": "overlay_male_worn_turban", "fg": 6323 }, + { "id": "overlay_female_worn_turban", "fg": 6322 }, + { "id": "overlay_female_worn_blazer", "fg": 6326 }, + { "id": "overlay_male_worn_blazer", "fg": 6327 }, + { "id": "overlay_female_worn_bunker_coat", "fg": 6328 }, + { "id": "overlay_male_worn_bunker_coat", "fg": 6329 }, + { "id": "overlay_female_worn_coat_lab", "fg": 6330 }, + { "id": "overlay_male_worn_coat_lab", "fg": 6331 }, + { "id": "overlay_female_worn_coat_rain", "fg": 6332 }, + { "id": "overlay_male_worn_coat_rain", "fg": 6333 }, + { "id": "overlay_female_worn_coat_winter", "fg": 6334 }, + { "id": "overlay_male_worn_coat_winter", "fg": 6335 }, + { "id": "overlay_female_worn_duster", "fg": 6336 }, + { "id": "overlay_male_worn_duster", "fg": 6337 }, + { "id": "overlay_female_worn_jacket_flannel", "fg": 6342 }, + { "id": "overlay_male_worn_jacket_flannel", "fg": 6343 }, + { "id": "overlay_female_worn_jacket_jean", "fg": 6344 }, + { "id": "overlay_male_worn_jacket_jean", "fg": 6345 }, + { "id": "overlay_female_worn_jacket_light", "fg": 6348 }, + { "id": "overlay_male_worn_jacket_light", "fg": 6349 }, + { "id": "overlay_female_worn_jacket_evac", "fg": 6340 }, + { "id": "overlay_male_worn_jacket_evac", "fg": 6341 }, + { "id": "overlay_female_worn_jacket_leather", "fg": 6350 }, + { "id": "overlay_male_worn_jacket_leather", "fg": 6351 }, + { "id": "overlay_female_worn_jacket_leather_red", "fg": 6346 }, + { "id": "overlay_male_worn_jacket_leather_red", "fg": 6347 }, + { "id": "overlay_female_worn_ski_jacket", "fg": 6352 }, + { "id": "overlay_male_worn_ski_jacket", "fg": 6353 }, + { "id": "overlay_female_worn_jacket_windbreaker", "fg": 6358 }, + { "id": "overlay_male_worn_jacket_windbreaker", "fg": 6359 }, + { "id": "overlay_female_worn_winter_jacket_army", "fg": 6324 }, + { "id": "overlay_male_worn_winter_jacket_army", "fg": 6325 }, + { "id": "overlay_female_worn_jacket_army", "fg": 6338 }, + { "id": "overlay_male_worn_jacket_army", "fg": 6339 }, + { "id": "overlay_female_worn_trenchcoat", "fg": 6354 }, + { "id": "overlay_male_worn_trenchcoat", "fg": 6355 }, + { "id": "overlay_female_worn_waistcoat", "fg": 6356 }, + { "id": "overlay_male_worn_waistcoat", "fg": 6357 }, + { "id": "overlay_female_worn_peacoat", "fg": 6360 }, + { "id": "overlay_male_worn_peacoat", "fg": 6361 }, + { "id": "overlay_female_worn_poncho", "fg": 6362 }, + { "id": "overlay_male_worn_poncho", "fg": 6363 }, + { "id": "overlay_worn_badge_swat", "fg": 6364 }, + { "id": "overlay_female_worn_barrette", "fg": 6365 }, + { "id": "overlay_male_worn_barrette", "fg": 6366 }, + { "id": "overlay_female_worn_badge_deputy", "fg": 6367 }, + { "id": "overlay_male_worn_badge_deputy", "fg": 6368 }, { "id": [ "overlay_female_worn_gold_ear", @@ -8854,7 +9019,7 @@ "overlay_female_worn_sapphire_gold_earring", "overlay_female_worn_tourmaline_gold_earring" ], - "fg": 6307 + "fg": 6371 }, { "id": [ @@ -8874,7 +9039,7 @@ "overlay_female_worn_sapphire_platinum_earring", "overlay_female_worn_tourmaline_platinum_earring" ], - "fg": 6309 + "fg": 6373 }, { "id": [ @@ -8894,7 +9059,7 @@ "overlay_female_worn_sapphire_silver_earring", "overlay_female_worn_tourmaline_silver_earring" ], - "fg": 6310 + "fg": 6374 }, { "id": [ @@ -8914,7 +9079,7 @@ "overlay_male_worn_sapphire_gold_earring", "overlay_male_worn_tourmaline_gold_earring" ], - "fg": 6313 + "fg": 6377 }, { "id": [ @@ -8934,7 +9099,7 @@ "overlay_male_worn_sapphire_platinum_earring", "overlay_male_worn_tourmaline_platinum_earring" ], - "fg": 6315 + "fg": 6379 }, { "id": [ @@ -8954,7 +9119,7 @@ "overlay_male_worn_sapphire_silver_earring", "overlay_male_worn_tourmaline_silver_earring" ], - "fg": 6316 + "fg": 6380 }, { "id": [ @@ -8974,7 +9139,7 @@ "overlay_worn_sapphire_gold_ring", "overlay_worn_tourmaline_gold_ring" ], - "fg": 6317 + "fg": 6381 }, { "id": [ @@ -8994,7 +9159,7 @@ "overlay_worn_sapphire_platinum_ring", "overlay_worn_tourmaline_platinum_ring" ], - "fg": 6318 + "fg": 6382 }, { "id": [ @@ -9014,1112 +9179,1112 @@ "overlay_worn_sapphire_silver_ring", "overlay_worn_tourmaline_silver_ring" ], - "fg": 6319 - }, - { "id": "overlay_female_worn_knee_pads", "fg": 6328 }, - { "id": "overlay_male_worn_knee_pads", "fg": 6329 }, - { "id": "overlay_male_worn_arm_warmers", "fg": 6331 }, - { "id": "overlay_female_worn_arm_warmers", "fg": 6330 }, - { "id": "overlay_male_worn_leg_warmers", "fg": 6333 }, - { "id": "overlay_female_worn_leg_warmers", "fg": 6332 }, - { "id": "overlay_female_worn_armguard_soft", "fg": 6334 }, - { "id": "overlay_male_worn_armguard_soft", "fg": 6335 }, - { "id": "overlay_female_worn_balclava", "fg": 6336 }, - { "id": "overlay_male_worn_balclava", "fg": 6337 }, - { "id": "overlay_female_worn_bandana", "fg": 6338 }, - { "id": "overlay_male_worn_bandana", "fg": 6339 }, - { "id": "overlay_female_worn_beekeeping_hood", "fg": 6340 }, - { "id": "overlay_male_worn_beekeeping_hood", "fg": 6341 }, - { "id": "overlay_male_worn_foodperson_mask", "fg": 6343 }, - { "id": "overlay_female_worn_foodperson_mask", "fg": 6342 }, - { "id": "overlay_male_worn_foodperson_mask_on", "fg": 6345 }, - { "id": "overlay_female_worn_foodperson_mask_on", "fg": 6344 }, - { "id": "overlay_female_worn_mask_dust", "fg": 6346 }, - { "id": "overlay_male_worn_mask_dust", "fg": 6347 }, - { "id": "overlay_female_worn_mask_gas", "fg": 6348 }, - { "id": "overlay_male_worn_mask_gas", "fg": 6349 }, - { "id": "overlay_female_worn_welding_mask_crude", "fg": 6352 }, - { "id": "overlay_male_worn_welding_mask_crude", "fg": 6353 }, - { "id": "overlay_female_worn_welding_mask_crude_raised", "fg": 6354 }, - { "id": "overlay_male_worn_welding_mask_crude_raised", "fg": 6809 }, - { "id": "overlay_female_worn_welding_mask", "fg": 6355 }, - { "id": "overlay_male_worn_welding_mask", "fg": 6356 }, - { "id": "overlay_female_worn_welding_mask_raised", "fg": 6357 }, - { "id": "overlay_female_worn_mask_bal", "fg": 6358 }, - { "id": "overlay_male_worn_mask_bal", "fg": 6359 }, - { "id": "overlay_female_worn_fencing_mask", "fg": 6360 }, - { "id": "overlay_male_worn_fencing_mask", "fg": 6361 }, - { "id": "overlay_female_worn_mask_filter", "fg": 6362 }, - { "id": "overlay_male_worn_mask_filter", "fg": 6363 }, - { "id": "overlay_female_worn_mask_bunker", "fg": 6364 }, - { "id": "overlay_male_worn_mask_bunker", "fg": 6365 }, - { "id": "overlay_female_worn_mask_guy_fawkes", "fg": 6366 }, - { "id": "overlay_male_worn_mask_guy_fawkes", "fg": 6367 }, - { "id": "overlay_female_worn_mask_hockey", "fg": 6368 }, - { "id": "overlay_male_worn_mask_hockey", "fg": 6369 }, - { "id": "overlay_female_worn_mask_rioter", "fg": 6370 }, - { "id": "overlay_male_worn_mask_rioter", "fg": 6371 }, - { "id": "overlay_male_worn_robe", "fg": 6383 }, - { "id": "overlay_female_worn_robe", "fg": 6382 }, - { "id": "overlay_male_worn_house_coat", "fg": 6381 }, - { "id": "overlay_female_worn_house_coat", "fg": 6380 }, - { "id": "overlay_worn_binoculars", "fg": 6384 }, - { "id": "overlay_female_worn_knit_scarf", "fg": 6387 }, - { "id": "overlay_male_worn_knit_scarf", "fg": 6388 }, - { "id": "overlay_female_worn_scarf", "fg": 6390 }, - { "id": "overlay_female_worn_scarf_loose", "fg": 6390 }, - { "id": "overlay_male_worn_scarf", "fg": 6391 }, - { "id": "overlay_male_worn_scarf_loose", "fg": 6391 }, - { "id": "overlay_worn_tie_bow", "fg": 6385 }, - { "id": "overlay_worn_tie_clipon", "fg": 6386 }, - { "id": "overlay_worn_tie_necktie", "fg": 6389 }, - { "id": "overlay_worn_tie_skinny", "fg": 6392 }, - { "id": "overlay_female_worn_army_top", "fg": 6393 }, - { "id": "overlay_male_worn_army_top", "fg": 6394 }, - { "id": "overlay_female_worn_camisole", "fg": 6395 }, - { "id": "overlay_male_worn_camisole", "fg": 6396 }, - { "id": "overlay_female_worn_under_armor", "fg": 6397 }, - { "id": "overlay_male_worn_under_armor", "fg": 6398 }, - { "id": "overlay_female_worn_dress_shirt", "fg": 6399 }, - { "id": "overlay_male_worn_dress_shirt", "fg": 6400 }, - { "id": "overlay_female_worn_halter_top", "fg": 6401 }, - { "id": "overlay_male_worn_halter_top", "fg": 6402 }, - { "id": "overlay_female_worn_hoodie", "fg": 6403 }, - { "id": "overlay_male_worn_hoodie", "fg": 6404 }, - { "id": "overlay_female_worn_jersey", "fg": 6405 }, - { "id": "overlay_male_worn_jersey", "fg": 6406 }, - { "id": "overlay_female_worn_linuxtshirt", "fg": 6407 }, - { "id": "overlay_male_worn_linuxtshirt", "fg": 6408 }, - { "id": "overlay_female_worn_longshirt", "fg": 6409 }, - { "id": "overlay_male_worn_longshirt", "fg": 6410 }, - { "id": "overlay_female_worn_striped_shirt", "fg": 6411 }, - { "id": "overlay_male_worn_striped_shirt", "fg": 6412 }, - { "id": "overlay_female_worn_sweater", "fg": 6413 }, - { "id": "overlay_male_worn_sweater", "fg": 6414 }, - { "id": "overlay_female_worn_sweatshirt", "fg": 6415 }, - { "id": "overlay_male_worn_sweatshirt", "fg": 6416 }, - { "id": "overlay_female_worn_tank_top", "fg": 6417 }, - { "id": "overlay_male_worn_tank_top", "fg": 6418 }, - { "id": "overlay_female_worn_tshirt", "fg": 6419 }, - { "id": "overlay_male_worn_tshirt", "fg": 6420 }, - { "id": "overlay_female_worn_technician_shirt_gray", "fg": 6421 }, - { "id": "overlay_male_worn_technician_shirt_gray", "fg": 6422 }, - { "id": "overlay_worn_dress_shoes", "fg": 6423 }, - { "id": "overlay_female_worn_flip_flops", "fg": 6424 }, - { "id": "overlay_male_worn_flip_flops", "fg": 6425 }, - { "id": "overlay_female_worn_geta", "fg": 6426 }, - { "id": "overlay_male_worn_geta", "fg": 6427 }, - { "id": "overlay_worn_heels", "fg": 6428 }, - { "id": "overlay_worn_leathersandals", "fg": 6429 }, - { "id": "overlay_worn_lowtops", "fg": 6430 }, - { "id": "overlay_worn_roller_blades", "fg": 6431 }, - { "id": "overlay_female_worn_shoes_bowling", "fg": 6432 }, - { "id": "overlay_male_worn_shoes_bowling", "fg": 6433 }, - { "id": "overlay_female_worn_sneakers", "fg": 6434 }, - { "id": "overlay_male_worn_sneakers", "fg": 6435 }, - { "id": "overlay_female_worn_clogs", "fg": 6436 }, - { "id": "overlay_male_worn_clogs", "fg": 6437 }, - { "id": "overlay_female_worn_b_shorts", "fg": 6438 }, - { "id": "overlay_male_worn_b_shorts", "fg": 6439 }, - { "id": "overlay_female_worn_boy_shorts", "fg": 6440 }, - { "id": "overlay_male_worn_boy_shorts", "fg": 6441 }, - { "id": "overlay_female_worn_under_armor_shorts", "fg": 6442 }, - { "id": "overlay_male_worn_under_armor_shorts", "fg": 6443 }, - { "id": "overlay_female_worn_shorts_cargo", "fg": 6444 }, - { "id": "overlay_male_worn_shorts_cargo", "fg": 6445 }, - { "id": "overlay_female_worn_shorts_denim", "fg": 6446 }, - { "id": "overlay_male_worn_shorts_denim", "fg": 6447 }, - { "id": "overlay_female_worn_shorts", "fg": 6448 }, - { "id": "overlay_male_worn_shorts", "fg": 6449 }, + "fg": 6383 + }, + { "id": "overlay_female_worn_knee_pads", "fg": 6392 }, + { "id": "overlay_male_worn_knee_pads", "fg": 6393 }, + { "id": "overlay_male_worn_arm_warmers", "fg": 6395 }, + { "id": "overlay_female_worn_arm_warmers", "fg": 6394 }, + { "id": "overlay_male_worn_leg_warmers", "fg": 6397 }, + { "id": "overlay_female_worn_leg_warmers", "fg": 6396 }, + { "id": "overlay_female_worn_armguard_soft", "fg": 6398 }, + { "id": "overlay_male_worn_armguard_soft", "fg": 6399 }, + { "id": "overlay_female_worn_balclava", "fg": 6400 }, + { "id": "overlay_male_worn_balclava", "fg": 6401 }, + { "id": "overlay_female_worn_bandana", "fg": 6402 }, + { "id": "overlay_male_worn_bandana", "fg": 6403 }, + { "id": "overlay_female_worn_beekeeping_hood", "fg": 6404 }, + { "id": "overlay_male_worn_beekeeping_hood", "fg": 6405 }, + { "id": "overlay_male_worn_foodperson_mask", "fg": 6407 }, + { "id": "overlay_female_worn_foodperson_mask", "fg": 6406 }, + { "id": "overlay_male_worn_foodperson_mask_on", "fg": 6409 }, + { "id": "overlay_female_worn_foodperson_mask_on", "fg": 6408 }, + { "id": "overlay_female_worn_mask_dust", "fg": 6410 }, + { "id": "overlay_male_worn_mask_dust", "fg": 6411 }, + { "id": "overlay_female_worn_mask_gas", "fg": 6412 }, + { "id": "overlay_male_worn_mask_gas", "fg": 6413 }, + { "id": "overlay_female_worn_welding_mask_crude", "fg": 6416 }, + { "id": "overlay_male_worn_welding_mask_crude", "fg": 6417 }, + { "id": "overlay_female_worn_welding_mask_crude_raised", "fg": 6418 }, + { "id": "overlay_male_worn_welding_mask_crude_raised", "fg": 6873 }, + { "id": "overlay_female_worn_welding_mask", "fg": 6419 }, + { "id": "overlay_male_worn_welding_mask", "fg": 6420 }, + { "id": "overlay_female_worn_welding_mask_raised", "fg": 6421 }, + { "id": "overlay_female_worn_mask_bal", "fg": 6422 }, + { "id": "overlay_male_worn_mask_bal", "fg": 6423 }, + { "id": "overlay_female_worn_fencing_mask", "fg": 6424 }, + { "id": "overlay_male_worn_fencing_mask", "fg": 6425 }, + { "id": "overlay_female_worn_mask_filter", "fg": 6426 }, + { "id": "overlay_male_worn_mask_filter", "fg": 6427 }, + { "id": "overlay_female_worn_mask_bunker", "fg": 6428 }, + { "id": "overlay_male_worn_mask_bunker", "fg": 6429 }, + { "id": "overlay_female_worn_mask_guy_fawkes", "fg": 6430 }, + { "id": "overlay_male_worn_mask_guy_fawkes", "fg": 6431 }, + { "id": "overlay_female_worn_mask_hockey", "fg": 6432 }, + { "id": "overlay_male_worn_mask_hockey", "fg": 6433 }, + { "id": "overlay_female_worn_mask_rioter", "fg": 6434 }, + { "id": "overlay_male_worn_mask_rioter", "fg": 6435 }, + { "id": "overlay_male_worn_robe", "fg": 6447 }, + { "id": "overlay_female_worn_robe", "fg": 6446 }, + { "id": "overlay_male_worn_house_coat", "fg": 6445 }, + { "id": "overlay_female_worn_house_coat", "fg": 6444 }, + { "id": "overlay_worn_binoculars", "fg": 6448 }, + { "id": "overlay_female_worn_knit_scarf", "fg": 6451 }, + { "id": "overlay_male_worn_knit_scarf", "fg": 6452 }, + { "id": "overlay_female_worn_scarf", "fg": 6454 }, + { "id": "overlay_female_worn_scarf_loose", "fg": 6454 }, + { "id": "overlay_male_worn_scarf", "fg": 6455 }, + { "id": "overlay_male_worn_scarf_loose", "fg": 6455 }, + { "id": "overlay_worn_tie_bow", "fg": 6449 }, + { "id": "overlay_worn_tie_clipon", "fg": 6450 }, + { "id": "overlay_worn_tie_necktie", "fg": 6453 }, + { "id": "overlay_worn_tie_skinny", "fg": 6456 }, + { "id": "overlay_female_worn_army_top", "fg": 6457 }, + { "id": "overlay_male_worn_army_top", "fg": 6458 }, + { "id": "overlay_female_worn_camisole", "fg": 6459 }, + { "id": "overlay_male_worn_camisole", "fg": 6460 }, + { "id": "overlay_female_worn_under_armor", "fg": 6461 }, + { "id": "overlay_male_worn_under_armor", "fg": 6462 }, + { "id": "overlay_female_worn_dress_shirt", "fg": 6463 }, + { "id": "overlay_male_worn_dress_shirt", "fg": 6464 }, + { "id": "overlay_female_worn_halter_top", "fg": 6465 }, + { "id": "overlay_male_worn_halter_top", "fg": 6466 }, + { "id": "overlay_female_worn_hoodie", "fg": 6467 }, + { "id": "overlay_male_worn_hoodie", "fg": 6468 }, + { "id": "overlay_female_worn_jersey", "fg": 6469 }, + { "id": "overlay_male_worn_jersey", "fg": 6470 }, + { "id": "overlay_female_worn_linuxtshirt", "fg": 6471 }, + { "id": "overlay_male_worn_linuxtshirt", "fg": 6472 }, + { "id": "overlay_female_worn_longshirt", "fg": 6473 }, + { "id": "overlay_male_worn_longshirt", "fg": 6474 }, + { "id": "overlay_female_worn_striped_shirt", "fg": 6475 }, + { "id": "overlay_male_worn_striped_shirt", "fg": 6476 }, + { "id": "overlay_female_worn_sweater", "fg": 6477 }, + { "id": "overlay_male_worn_sweater", "fg": 6478 }, + { "id": "overlay_female_worn_sweatshirt", "fg": 6479 }, + { "id": "overlay_male_worn_sweatshirt", "fg": 6480 }, + { "id": "overlay_female_worn_tank_top", "fg": 6481 }, + { "id": "overlay_male_worn_tank_top", "fg": 6482 }, + { "id": "overlay_female_worn_tshirt", "fg": 6483 }, + { "id": "overlay_male_worn_tshirt", "fg": 6484 }, + { "id": "overlay_female_worn_technician_shirt_gray", "fg": 6485 }, + { "id": "overlay_male_worn_technician_shirt_gray", "fg": 6486 }, + { "id": "overlay_worn_dress_shoes", "fg": 6487 }, + { "id": "overlay_female_worn_flip_flops", "fg": 6488 }, + { "id": "overlay_male_worn_flip_flops", "fg": 6489 }, + { "id": "overlay_female_worn_geta", "fg": 6490 }, + { "id": "overlay_male_worn_geta", "fg": 6491 }, + { "id": "overlay_worn_heels", "fg": 6492 }, + { "id": "overlay_worn_leathersandals", "fg": 6493 }, + { "id": "overlay_worn_lowtops", "fg": 6494 }, + { "id": "overlay_worn_roller_blades", "fg": 6495 }, + { "id": "overlay_female_worn_shoes_bowling", "fg": 6496 }, + { "id": "overlay_male_worn_shoes_bowling", "fg": 6497 }, + { "id": "overlay_female_worn_sneakers", "fg": 6498 }, + { "id": "overlay_male_worn_sneakers", "fg": 6499 }, + { "id": "overlay_female_worn_clogs", "fg": 6500 }, + { "id": "overlay_male_worn_clogs", "fg": 6501 }, + { "id": "overlay_female_worn_b_shorts", "fg": 6502 }, + { "id": "overlay_male_worn_b_shorts", "fg": 6503 }, + { "id": "overlay_female_worn_boy_shorts", "fg": 6504 }, + { "id": "overlay_male_worn_boy_shorts", "fg": 6505 }, + { "id": "overlay_female_worn_under_armor_shorts", "fg": 6506 }, + { "id": "overlay_male_worn_under_armor_shorts", "fg": 6507 }, + { "id": "overlay_female_worn_shorts_cargo", "fg": 6508 }, + { "id": "overlay_male_worn_shorts_cargo", "fg": 6509 }, + { "id": "overlay_female_worn_shorts_denim", "fg": 6510 }, + { "id": "overlay_male_worn_shorts_denim", "fg": 6511 }, + { "id": "overlay_female_worn_shorts", "fg": 6512 }, + { "id": "overlay_male_worn_shorts", "fg": 6513 }, { "id": "overlay_female_worn_cigar_lit", "fg": [ - { "weight": 14, "sprite": 6450 }, - { "weight": 14, "sprite": 6451 }, - { "weight": 14, "sprite": 6452 }, - { "weight": 14, "sprite": 6453 }, - { "weight": 14, "sprite": 6454 }, - { "weight": 14, "sprite": 6455 }, - { "weight": 14, "sprite": 6456 } + { "weight": 14, "sprite": 6514 }, + { "weight": 14, "sprite": 6515 }, + { "weight": 14, "sprite": 6516 }, + { "weight": 14, "sprite": 6517 }, + { "weight": 14, "sprite": 6518 }, + { "weight": 14, "sprite": 6519 }, + { "weight": 14, "sprite": 6520 } ], "animated": true }, { "id": "overlay_male_worn_cigar_lit", "fg": [ - { "weight": 14, "sprite": 6457 }, - { "weight": 14, "sprite": 6458 }, - { "weight": 14, "sprite": 6459 }, - { "weight": 14, "sprite": 6460 }, - { "weight": 14, "sprite": 6461 }, - { "weight": 14, "sprite": 6462 }, - { "weight": 14, "sprite": 6463 } + { "weight": 14, "sprite": 6521 }, + { "weight": 14, "sprite": 6522 }, + { "weight": 14, "sprite": 6523 }, + { "weight": 14, "sprite": 6524 }, + { "weight": 14, "sprite": 6525 }, + { "weight": 14, "sprite": 6526 }, + { "weight": 14, "sprite": 6527 } ], "animated": true }, { "id": "overlay_female_worn_cig_lit", "fg": [ - { "weight": 14, "sprite": 6464 }, - { "weight": 14, "sprite": 6465 }, - { "weight": 14, "sprite": 6466 }, - { "weight": 14, "sprite": 6467 }, - { "weight": 14, "sprite": 6468 }, - { "weight": 14, "sprite": 6469 }, - { "weight": 14, "sprite": 6470 } + { "weight": 14, "sprite": 6528 }, + { "weight": 14, "sprite": 6529 }, + { "weight": 14, "sprite": 6530 }, + { "weight": 14, "sprite": 6531 }, + { "weight": 14, "sprite": 6532 }, + { "weight": 14, "sprite": 6533 }, + { "weight": 14, "sprite": 6534 } ], "animated": true }, { "id": "overlay_male_worn_cig_lit", "fg": [ - { "weight": 14, "sprite": 6471 }, - { "weight": 14, "sprite": 6472 }, - { "weight": 14, "sprite": 6473 }, - { "weight": 14, "sprite": 6474 }, - { "weight": 14, "sprite": 6475 }, - { "weight": 14, "sprite": 6476 }, - { "weight": 14, "sprite": 6477 } + { "weight": 14, "sprite": 6535 }, + { "weight": 14, "sprite": 6536 }, + { "weight": 14, "sprite": 6537 }, + { "weight": 14, "sprite": 6538 }, + { "weight": 14, "sprite": 6539 }, + { "weight": 14, "sprite": 6540 }, + { "weight": 14, "sprite": 6541 } ], "animated": true }, { "id": "overlay_female_worn_joint_lit", "fg": [ - { "weight": 14, "sprite": 6478 }, - { "weight": 14, "sprite": 6479 }, - { "weight": 14, "sprite": 6480 }, - { "weight": 14, "sprite": 6481 }, - { "weight": 14, "sprite": 6482 }, - { "weight": 14, "sprite": 6483 }, - { "weight": 14, "sprite": 6484 } + { "weight": 14, "sprite": 6542 }, + { "weight": 14, "sprite": 6543 }, + { "weight": 14, "sprite": 6544 }, + { "weight": 14, "sprite": 6545 }, + { "weight": 14, "sprite": 6546 }, + { "weight": 14, "sprite": 6547 }, + { "weight": 14, "sprite": 6548 } ], "animated": true }, { "id": "overlay_male_worn_joint_lit", "fg": [ - { "weight": 14, "sprite": 6485 }, - { "weight": 14, "sprite": 6486 }, - { "weight": 14, "sprite": 6487 }, - { "weight": 14, "sprite": 6488 }, - { "weight": 14, "sprite": 6489 }, - { "weight": 14, "sprite": 6490 }, - { "weight": 14, "sprite": 6491 } + { "weight": 14, "sprite": 6549 }, + { "weight": 14, "sprite": 6550 }, + { "weight": 14, "sprite": 6551 }, + { "weight": 14, "sprite": 6552 }, + { "weight": 14, "sprite": 6553 }, + { "weight": 14, "sprite": 6554 }, + { "weight": 14, "sprite": 6555 } ], "animated": true }, - { "id": "overlay_worn_boots_survivor", "fg": 6492 }, - { "id": "overlay_worn_boots_xlsurvivor", "fg": 6492 }, - { "id": "overlay_female_worn_sleeveless_duster_survivor", "fg": 6495 }, - { "id": "overlay_male_worn_sleeveless_duster_survivor", "fg": 6496 }, - { "id": "overlay_female_worn_sleeveless_trenchcoat_survivor", "fg": 6497 }, - { "id": "overlay_male_worn_sleeveless_trenchcoat_survivor", "fg": 6498 }, - { "id": "overlay_female_worn_survivor_belt_notools", "fg": 6561 }, - { "id": "overlay_male_worn_survivor_belt_notools", "fg": 6562 }, - { "id": "overlay_female_worn_duster_survivor", "fg": 6501 }, - { "id": "overlay_male_worn_duster_survivor", "fg": 6502 }, - { "id": "overlay_female_worn_xl_duster_survivor", "fg": 6501 }, - { "id": "overlay_male_worn_xl_duster_survivor", "fg": 6502 }, - { "id": "overlay_female_worn_gloves_survivor", "fg": 6505 }, - { "id": "overlay_male_worn_gloves_survivor", "fg": 6506 }, - { "id": "overlay_female_worn_gloves_xlsurvivor", "fg": 6505 }, - { "id": "overlay_male_worn_gloves_xlsurvivor", "fg": 6506 }, - { "id": "overlay_female_worn_survivor_vest", "fg": 6563 }, - { "id": "overlay_male_worn_survivor_vest", "fg": 6564 }, - { "id": "overlay_female_worn_xl_survivor_vest", "fg": 6563 }, - { "id": "overlay_male_worn_xl_survivor_vest", "fg": 6564 }, - { "id": "overlay_female_worn_hood_survivor", "fg": 6507 }, - { "id": "overlay_male_worn_hood_survivor", "fg": 6508 }, - { "id": "overlay_female_worn_hood_xlsurvivor", "fg": 6507 }, - { "id": "overlay_male_worn_hood_xlsurvivor", "fg": 6508 }, - { "id": "overlay_female_worn_survivor_suit", "fg": 6509 }, - { "id": "overlay_male_worn_survivor_suit", "fg": 6510 }, - { "id": "overlay_female_worn_xlsurvivor_suit", "fg": 6509 }, - { "id": "overlay_male_worn_xlsurvivor_suit", "fg": 6510 }, - { "id": "overlay_female_worn_trenchcoat_survivor", "fg": 6511 }, - { "id": "overlay_male_worn_trenchcoat_survivor", "fg": 6512 }, - { "id": "overlay_worn_boots_hsurvivor", "fg": 6527 }, - { "id": "overlay_worn_xl_boots_hsurvivor", "fg": 6527 }, - { "id": "overlay_female_worn_gloves_hsurvivor", "fg": 6528 }, - { "id": "overlay_male_worn_gloves_hsurvivor", "fg": 6529 }, - { "id": "overlay_female_worn_xl_gloves_hsurvivor", "fg": 6528 }, - { "id": "overlay_male_worn_xl_gloves_hsurvivor", "fg": 6529 }, - { "id": "overlay_female_worn_hsurvivor_suit", "fg": 6530 }, - { "id": "overlay_male_worn_hsurvivor_suit", "fg": 6531 }, - { "id": "overlay_female_worn_xlhsurvivor_suit", "fg": 6530 }, - { "id": "overlay_male_worn_xlhsurvivor_suit", "fg": 6531 }, - { "id": "overlay_worn_boots_fsurvivor", "fg": 6520 }, - { "id": "overlay_worn_xl_boots_fsurvivor", "fg": 6520 }, - { "id": "overlay_female_worn_gloves_fsurvivor", "fg": 6521 }, - { "id": "overlay_male_worn_gloves_fsurvivor", "fg": 6522 }, - { "id": "overlay_female_worn_xl_gloves_fsurvivor", "fg": 6521 }, - { "id": "overlay_male_worn_xl_gloves_fsurvivor", "fg": 6522 }, - { "id": "overlay_female_worn_hood_fsurvivor", "fg": 6523 }, - { "id": "overlay_male_worn_hood_fsurvivor", "fg": 6524 }, - { "id": "overlay_female_worn_xl_hood_fsurvivor", "fg": 6523 }, - { "id": "overlay_male_worn_xl_hood_fsurvivor", "fg": 6524 }, - { "id": "overlay_female_worn_fsurvivor_suit", "fg": 6525 }, - { "id": "overlay_male_worn_fsurvivor_suit", "fg": 6526 }, - { "id": "overlay_female_worn_xl_fsurvivor_suit", "fg": 6525 }, - { "id": "overlay_male_worn_xl_fsurvivor_suit", "fg": 6526 }, - { "id": [ "overlay_female_worn_pants_survivor", "overlay_female_worn_xl_pants_survivor" ], "fg": 6499 }, - { "id": [ "overlay_male_worn_pants_survivor", "overlay_male_worn_xl_pants_survivor" ], "fg": 6500 }, + { "id": "overlay_worn_boots_survivor", "fg": 6556 }, + { "id": "overlay_worn_boots_xlsurvivor", "fg": 6556 }, + { "id": "overlay_female_worn_sleeveless_duster_survivor", "fg": 6559 }, + { "id": "overlay_male_worn_sleeveless_duster_survivor", "fg": 6560 }, + { "id": "overlay_female_worn_sleeveless_trenchcoat_survivor", "fg": 6561 }, + { "id": "overlay_male_worn_sleeveless_trenchcoat_survivor", "fg": 6562 }, + { "id": "overlay_female_worn_survivor_belt_notools", "fg": 6625 }, + { "id": "overlay_male_worn_survivor_belt_notools", "fg": 6626 }, + { "id": "overlay_female_worn_duster_survivor", "fg": 6565 }, + { "id": "overlay_male_worn_duster_survivor", "fg": 6566 }, + { "id": "overlay_female_worn_xl_duster_survivor", "fg": 6565 }, + { "id": "overlay_male_worn_xl_duster_survivor", "fg": 6566 }, + { "id": "overlay_female_worn_gloves_survivor", "fg": 6569 }, + { "id": "overlay_male_worn_gloves_survivor", "fg": 6570 }, + { "id": "overlay_female_worn_gloves_xlsurvivor", "fg": 6569 }, + { "id": "overlay_male_worn_gloves_xlsurvivor", "fg": 6570 }, + { "id": "overlay_female_worn_survivor_vest", "fg": 6627 }, + { "id": "overlay_male_worn_survivor_vest", "fg": 6628 }, + { "id": "overlay_female_worn_xl_survivor_vest", "fg": 6627 }, + { "id": "overlay_male_worn_xl_survivor_vest", "fg": 6628 }, + { "id": "overlay_female_worn_hood_survivor", "fg": 6571 }, + { "id": "overlay_male_worn_hood_survivor", "fg": 6572 }, + { "id": "overlay_female_worn_hood_xlsurvivor", "fg": 6571 }, + { "id": "overlay_male_worn_hood_xlsurvivor", "fg": 6572 }, + { "id": "overlay_female_worn_survivor_suit", "fg": 6573 }, + { "id": "overlay_male_worn_survivor_suit", "fg": 6574 }, + { "id": "overlay_female_worn_xlsurvivor_suit", "fg": 6573 }, + { "id": "overlay_male_worn_xlsurvivor_suit", "fg": 6574 }, + { "id": "overlay_female_worn_trenchcoat_survivor", "fg": 6575 }, + { "id": "overlay_male_worn_trenchcoat_survivor", "fg": 6576 }, + { "id": "overlay_worn_boots_hsurvivor", "fg": 6591 }, + { "id": "overlay_worn_xl_boots_hsurvivor", "fg": 6591 }, + { "id": "overlay_female_worn_gloves_hsurvivor", "fg": 6592 }, + { "id": "overlay_male_worn_gloves_hsurvivor", "fg": 6593 }, + { "id": "overlay_female_worn_xl_gloves_hsurvivor", "fg": 6592 }, + { "id": "overlay_male_worn_xl_gloves_hsurvivor", "fg": 6593 }, + { "id": "overlay_female_worn_hsurvivor_suit", "fg": 6594 }, + { "id": "overlay_male_worn_hsurvivor_suit", "fg": 6595 }, + { "id": "overlay_female_worn_xlhsurvivor_suit", "fg": 6594 }, + { "id": "overlay_male_worn_xlhsurvivor_suit", "fg": 6595 }, + { "id": "overlay_worn_boots_fsurvivor", "fg": 6584 }, + { "id": "overlay_worn_xl_boots_fsurvivor", "fg": 6584 }, + { "id": "overlay_female_worn_gloves_fsurvivor", "fg": 6585 }, + { "id": "overlay_male_worn_gloves_fsurvivor", "fg": 6586 }, + { "id": "overlay_female_worn_xl_gloves_fsurvivor", "fg": 6585 }, + { "id": "overlay_male_worn_xl_gloves_fsurvivor", "fg": 6586 }, + { "id": "overlay_female_worn_hood_fsurvivor", "fg": 6587 }, + { "id": "overlay_male_worn_hood_fsurvivor", "fg": 6588 }, + { "id": "overlay_female_worn_xl_hood_fsurvivor", "fg": 6587 }, + { "id": "overlay_male_worn_xl_hood_fsurvivor", "fg": 6588 }, + { "id": "overlay_female_worn_fsurvivor_suit", "fg": 6589 }, + { "id": "overlay_male_worn_fsurvivor_suit", "fg": 6590 }, + { "id": "overlay_female_worn_xl_fsurvivor_suit", "fg": 6589 }, + { "id": "overlay_male_worn_xl_fsurvivor_suit", "fg": 6590 }, + { "id": [ "overlay_female_worn_pants_survivor", "overlay_female_worn_xl_pants_survivor" ], "fg": 6563 }, + { "id": [ "overlay_male_worn_pants_survivor", "overlay_male_worn_xl_pants_survivor" ], "fg": 6564 }, { "id": [ "overlay_female_worn_gloves_survivor_fingerless", "overlay_female_worn_xl_gloves_survivor_fingerless" ], - "fg": 6503 + "fg": 6567 }, { "id": [ "overlay_male_worn_gloves_survivor_fingerless", "overlay_male_worn_xl_gloves_survivor_fingerless" ], - "fg": 6504 - }, - { "id": "overlay_worn_boots_h20survivor", "fg": 6513 }, - { "id": "overlay_female_worn_gloves_h20survivor", "fg": 6514 }, - { "id": "overlay_male_worn_gloves_h20survivor", "fg": 6515 }, - { "id": "overlay_female_worn_hood_h20survivor", "fg": 6516 }, - { "id": "overlay_male_worn_hood_h20survivor", "fg": 6517 }, - { "id": "overlay_female_worn_h20survivor_suit", "fg": 6518 }, - { "id": "overlay_male_worn_h20survivor_suit", "fg": 6519 }, - { "id": [ "overlay_worn_boots_lsurvivor", "overlay_worn_xl_boots_lsurvivor" ], "fg": 6532 }, - { "id": [ "overlay_female_worn_gloves_lsurvivor", "overlay_female_worn_xl_gloves_lsurvivor" ], "fg": 6537 }, - { "id": [ "overlay_male_worn_gloves_lsurvivor", "overlay_male_worn_xl_gloves_lsurvivor" ], "fg": 6538 }, - { "id": [ "overlay_female_worn_hood_lsurvivor", "overlay_female_worn_xl_hood_lsurvivor" ], "fg": 6539 }, - { "id": [ "overlay_male_worn_hood_lsurvivor", "overlay_male_worn_xl_hood_lsurvivor" ], "fg": 6540 }, - { "id": [ "overlay_female_worn_lsurvivor_suit", "overlay_female_worn_xl_lsurvivor_suit" ], "fg": 6541 }, - { "id": [ "overlay_male_worn_lsurvivor_suit", "overlay_male_worn_xl_lsurvivor_suit" ], "fg": 6542 }, - { "id": [ "overlay_female_worn_lsurvivor_armor", "overlay_female_worn_xl_lsurvivor_armor" ], "fg": 6533 }, - { "id": [ "overlay_male_worn_lsurvivor_armor", "overlay_male_worn_xl_lsurvivor_armor" ], "fg": 6534 }, - { "id": [ "overlay_female_worn_lsurvivor_pants", "overlay_female_worn_xl_lsurvivor_pants" ], "fg": 6535 }, - { "id": [ "overlay_male_worn_lsurvivor_pants", "overlay_male_worn_xl_lsurvivor_pants" ], "fg": 6536 }, - { "id": "overlay_female_worn_mask_hsurvivor", "fg": 6543 }, - { "id": "overlay_male_worn_mask_hsurvivor", "fg": 6544 }, - { "id": "overlay_female_worn_mask_lsurvivor", "fg": 6545 }, - { "id": "overlay_male_worn_mask_lsurvivor", "fg": 6546 }, - { "id": "overlay_female_worn_mask_fsurvivor", "fg": 6547 }, - { "id": "overlay_male_worn_mask_fsurvivor", "fg": 6548 }, - { "id": "overlay_female_worn_mask_fsurvivorxl", "fg": 6547 }, - { "id": "overlay_male_worn_mask_fsurvivorxl", "fg": 6548 }, - { "id": "overlay_female_worn_mask_survivor", "fg": 6549 }, - { "id": "overlay_male_worn_mask_survivor", "fg": 6550 }, - { "id": "overlay_female_worn_mask_survivorxl", "fg": 6549 }, - { "id": "overlay_male_worn_mask_survivorxl", "fg": 6550 }, - { "id": "overlay_female_worn_mask_wsurvivor", "fg": 6551 }, - { "id": "overlay_male_worn_mask_wsurvivor", "fg": 6552 }, - { "id": "overlay_female_worn_mask_wsurvivorxl", "fg": 6551 }, - { "id": "overlay_male_worn_mask_wsurvivorxl", "fg": 6552 }, - { "id": [ "overlay_worn_boots_wsurvivor", "overlay_worn_xl_boots_wsurvivor" ], "fg": 6565 }, - { "id": [ "overlay_female_worn_gloves_wsurvivor", "overlay_female_worn_xl_gloves_wsurvivor" ], "fg": 6566 }, - { "id": [ "overlay_male_worn_gloves_wsurvivor", "overlay_male_worn_xl_gloves_wsurvivor" ], "fg": 6567 }, - { "id": [ "overlay_female_worn_hood_wsurvivor", "overlay_female_worn_xl_hood_wsurvivor" ], "fg": 6568 }, - { "id": [ "overlay_male_worn_hood_wsurvivor", "overlay_male_worn_xl_hood_wsurvivor" ], "fg": 6569 }, - { "id": [ "overlay_female_worn_wsurvivor_suit", "overlay_female_worn_xl_wsurvivor_suit" ], "fg": 6570 }, - { "id": [ "overlay_male_worn_wsurvivor_suit", "overlay_male_worn_xl_wsurvivor_suit" ], "fg": 6571 }, - { "id": "overlay_female_worn_bikini_bottom", "fg": 6572 }, - { "id": "overlay_male_worn_bikini_bottom", "fg": 6573 }, - { "id": "overlay_female_worn_bikini_top", "fg": 6574 }, - { "id": "overlay_male_worn_bikini_top", "fg": 6575 }, - { "id": "overlay_female_worn_bikini_top_fur", "fg": 6576 }, - { "id": "overlay_male_worn_bikini_top_fur", "fg": 6577 }, - { "id": "overlay_female_worn_bikini_top_leather", "fg": 6578 }, - { "id": "overlay_male_worn_bikini_top_leather", "fg": 6579 }, - { "id": "overlay_female_worn_winter_pants_army", "fg": 6580 }, - { "id": "overlay_male_worn_winter_pants_army", "fg": 6581 }, - { "id": "overlay_female_worn_bunker_pants", "fg": 6582 }, - { "id": "overlay_male_worn_bunker_pants", "fg": 6583 }, - { "id": "overlay_female_worn_striped_pants", "fg": 6606 }, - { "id": "overlay_male_worn_striped_pants", "fg": 6607 }, - { "id": "overlay_female_worn_technician_pants_gray", "fg": 6608 }, - { "id": "overlay_male_worn_technician_pants_gray", "fg": 6609 }, - { "id": "overlay_female_worn_jeans", "fg": 6584 }, - { "id": "overlay_male_worn_jeans", "fg": 6585 }, - { "id": "overlay_female_worn_jeans_red", "fg": 6586 }, - { "id": "overlay_male_worn_jeans_red", "fg": 6587 }, - { "id": "overlay_female_worn_motorbike_pants", "fg": 6588 }, - { "id": "overlay_male_worn_motorbike_pants", "fg": 6589 }, - { "id": "overlay_female_worn_pants_army", "fg": 6590 }, - { "id": "overlay_male_worn_pants_army", "fg": 6591 }, - { "id": "overlay_female_worn_pants_cargo", "fg": 6592 }, - { "id": "overlay_male_worn_pants_cargo", "fg": 6593 }, - { "id": "overlay_female_worn_pants_checkered", "fg": 6594 }, - { "id": "overlay_male_worn_pants_checkered", "fg": 6595 }, - { "id": "overlay_female_worn_pants_faux_fur", "fg": 6597 }, - { "id": "overlay_male_worn_pants_faux_fur", "fg": 6598 }, - { "id": "overlay_female_worn_pants_fur", "fg": 6599 }, - { "id": "overlay_male_worn_pants_fur", "fg": 6600 }, - { "id": "overlay_female_worn_pants_leather", "fg": 6601 }, - { "id": "overlay_male_worn_pants_leather", "fg": 6602 }, - { "id": "overlay_female_worn_pants", "fg": 6596 }, - { "id": "overlay_male_worn_pants", "fg": 6603 }, - { "id": "overlay_female_worn_pants_ski", "fg": 6604 }, - { "id": "overlay_male_worn_pants_ski", "fg": 6605 }, - { "id": "overlay_female_worn_bra", "fg": 6614 }, - { "id": "overlay_male_worn_bra", "fg": 6615 }, - { "id": "overlay_female_worn_corset", "fg": 6616 }, - { "id": "overlay_male_worn_corset", "fg": 6617 }, - { "id": "overlay_male_worn_undershirt", "fg": 6631 }, - { "id": "overlay_female_worn_undershirt", "fg": 6630 }, - { "id": "overlay_female_worn_socks", "fg": 6624 }, - { "id": "overlay_male_worn_socks", "fg": 6625 }, - { "id": "overlay_female_worn_stockings", "fg": 6628 }, - { "id": "overlay_male_worn_stockings", "fg": 6629 }, - { "id": "overlay_worn_socks_wool", "fg": 6634 }, - { "id": "overlay_female_worn_sports_bra", "fg": 6626 }, - { "id": "overlay_male_worn_sports_bra", "fg": 6627 }, - { "id": "overlay_female_worn_boxer_briefs", "fg": 6610 }, - { "id": "overlay_male_worn_boxer_briefs", "fg": 6611 }, - { "id": "overlay_female_worn_boxer_shorts", "fg": 6612 }, - { "id": "overlay_male_worn_boxer_shorts", "fg": 6613 }, - { "id": "overlay_female_worn_long_underpants", "fg": 6618 }, - { "id": "overlay_male_worn_long_underpants", "fg": 6619 }, - { "id": "overlay_female_worn_long_undertop", "fg": 6620 }, - { "id": "overlay_male_worn_long_undertop", "fg": 6621 }, - { "id": "overlay_female_worn_panties", "fg": 6622 }, - { "id": "overlay_male_worn_panties", "fg": 6623 }, - { "id": "overlay_female_worn_union_suit", "fg": 6632 }, - { "id": "overlay_male_worn_union_suit", "fg": 6633 }, - { "id": "overlay_male_worn_blanket", "fg": 6636 }, - { "id": "overlay_female_worn_blanket", "fg": 6635 }, - { "id": "overlay_male_worn_down_blanket", "fg": 6638 }, - { "id": "overlay_female_worn_down_blanket", "fg": 6637 }, - { "id": "overlay_female_worn_electric_blanket", "fg": 6639 }, - { "id": "overlay_male_worn_electric_blanket", "fg": 6640 }, - { "id": "overlay_female_worn_towel", "fg": 6641 }, - { "id": "overlay_male_worn_towel", "fg": 6642 }, - { "id": "overlay_female_worn_towel_wet", "fg": 6641 }, - { "id": "overlay_male_worn_towel_wet", "fg": 6642 }, - { "id": "overlay_female_worn_towel_soiled", "fg": 6641 }, - { "id": "overlay_male_worn_towel_soiled", "fg": 6642 }, - { "id": "overlay_mutation_bio_blaster", "fg": 4945 }, - { "id": "overlay_effect_attention", "fg": 4946 }, - { "id": "overlay_effect_boomered", "fg": 4947 }, - { "id": "overlay_effect_glare", "fg": 4948 }, - { "id": "overlay_effect_laserlocked", "fg": 4949 }, - { "id": "overlay_female_mutation_ARM_TENTACLES", "fg": 5074 }, - { "id": "overlay_male_mutation_ARM_TENTACLES", "fg": 5075 }, - { "id": "overlay_female_mutation_ARM_TENTACLES_4", "fg": 5076 }, - { "id": "overlay_male_mutation_ARM_TENTACLES_4", "fg": 5077 }, - { "id": "overlay_female_mutation_ARM_TENTACLES_8", "fg": 5078 }, - { "id": "overlay_male_mutation_ARM_TENTACLES_8", "fg": 5079 }, - { "id": "overlay_female_mutation_CANINE_EARS", "fg": 5088 }, - { "id": "overlay_male_mutation_CANINE_EARS", "fg": 5089 }, - { "id": "overlay_female_mutation_FEL_EYE", "fg": 5092 }, - { "id": "overlay_male_mutation_FEL_EYE", "fg": 5093 }, - { "id": "overlay_female_mutation_FELINE_EARS", "fg": 5094 }, - { "id": "overlay_male_mutation_FELINE_EARS", "fg": 5095 }, - { "id": "overlay_female_mutation_HORNS", "fg": 5096 }, - { "id": "overlay_male_mutation_HORNS", "fg": 5097 }, - { "id": "overlay_female_mutation_HORNS_CURLED", "fg": 5098 }, - { "id": "overlay_male_mutation_HORNS_CURLED", "fg": 5099 }, - { "id": "overlay_female_mutation_LUPINE_EARS", "fg": 5104 }, - { "id": "overlay_male_mutation_LUPINE_EARS", "fg": 5105 }, - { "id": "overlay_female_mutation_LYNX_FUR", "fg": 5106 }, - { "id": "overlay_male_mutation_LYNX_FUR", "fg": 5107 }, - { "id": "overlay_female_mutation_MINOTAUR", "fg": 5108 }, - { "id": "overlay_male_mutation_MINOTAUR", "fg": 5109 }, - { "id": "overlay_female_mutation_MOUTH_TENTACLES", "fg": 5110 }, - { "id": "overlay_male_mutation_MOUTH_TENTACLES", "fg": 5111 }, - { "id": "overlay_female_mutation_SHELL", "fg": 5118 }, - { "id": "overlay_male_mutation_SHELL", "fg": 5119 }, - { "id": "overlay_female_mutation_TAIL_CATTLE", "fg": 5120 }, - { "id": "overlay_male_mutation_TAIL_CATTLE", "fg": 5121 }, - { "id": "overlay_female_mutation_TAIL_FLUFFY", "fg": 5122 }, - { "id": "overlay_male_mutation_TAIL_FLUFFY", "fg": 5123 }, - { "id": "overlay_female_mutation_TAIL_LONG", "fg": 5124 }, - { "id": "overlay_male_mutation_TAIL_LONG", "fg": 5125 }, - { "id": "overlay_female_mutation_WHISKERS", "fg": 5132 }, - { "id": "overlay_male_mutation_WHISKERS", "fg": 5133 }, - { "id": "overlay_female_mutation_FELINE_FUR", "fg": 5145 }, - { "id": "overlay_female_mutation_FUR", "fg": 5146 }, - { "id": "overlay_male_mutation_FELINE_FUR", "fg": 5148 }, - { "id": "overlay_male_mutation_FUR", "fg": 5149 }, - { "id": "overlay_female_wielded_clay_teapot", "fg": 5204 }, - { "id": "overlay_female_worn_harmonica_holder", "fg": 5205 }, - { "id": "overlay_male_wielded_clay_teapot", "fg": 5206 }, - { "id": "overlay_male_worn_harmonica_holder", "fg": 5207 }, - { "id": "overlay_wielded_banjo", "fg": 5209 }, - { "id": "overlay_wielded_bodypillow", "fg": 5210 }, - { "id": "overlay_wielded_clay_pot", "fg": 5211 }, - { "id": "overlay_wielded_guitar_electric", "fg": 5212 }, - { "id": "overlay_wielded_laptop", "fg": 5213 }, - { "id": "overlay_wielded_makeshift_hammer", "fg": 5214 }, - { "id": "overlay_wielded_pot_makeshift", "fg": 5215 }, - { "id": "overlay_wielded_pot_makeshift_copper", "fg": 5216 }, - { "id": "overlay_wielded_tazer", "fg": 5217 }, - { "id": "overlay_wielded_1895sbl", "fg": 5221 }, - { "id": "overlay_wielded_2_shot_special", "fg": 5222 }, - { "id": "overlay_wielded_90two", "fg": 5223 }, - { "id": "overlay_wielded_90two40", "fg": 5224 }, - { "id": "overlay_wielded_AT4", "fg": 5225 }, - { "id": "overlay_wielded_LAW", "fg": 5226 }, - { "id": "overlay_wielded_LAW_Packed", "fg": 5227 }, - { "id": "overlay_wielded_M24", "fg": 5228 }, - { "id": "overlay_wielded_RPG", "fg": 5229 }, - { "id": "overlay_wielded_TDI", "fg": 5230 }, - { "id": "overlay_wielded_USAS_12", "fg": 5231 }, - { "id": "overlay_wielded_af2011a1_38super", "fg": 5232 }, - { "id": "overlay_wielded_airspeargun", "fg": 5233 }, - { "id": "overlay_wielded_ak74", "fg": 5235 }, - { "id": "overlay_wielded_american_180", "fg": 5236 }, - { "id": "overlay_wielded_an94", "fg": 5237 }, - { "id": "overlay_wielded_ar10", "fg": 5238 }, - { "id": "overlay_wielded_ar15", "fg": 5239 }, - { "id": "overlay_wielded_ar_pistol", "fg": 5240 }, - { "id": "overlay_wielded_arx160", "fg": 5241 }, - { "id": "overlay_wielded_ashot", "fg": 5242 }, - { "id": "overlay_wielded_atgm_launcher", "fg": 5243 }, - { "id": "overlay_wielded_bbgun", "fg": 5244 }, - { "id": "overlay_wielded_bfr", "fg": 5245 }, - { "id": "overlay_wielded_bh_m89", "fg": 5246 }, - { "id": "overlay_wielded_bigun", "fg": 5247 }, - { "id": "overlay_wielded_blunderbuss", "fg": 5248 }, - { "id": "overlay_wielded_bond_410", "fg": 5249 }, - { "id": "overlay_wielded_browning_blr", "fg": 5250 }, - { "id": "overlay_wielded_bt_apc9k", "fg": 5251 }, - { "id": "overlay_wielded_chemical_thrower", "fg": 5253 }, - { "id": "overlay_wielded_coilgun", "fg": 5254 }, - { "id": "overlay_wielded_colt_army", "fg": 5255 }, - { "id": "overlay_wielded_colt_lightning", "fg": 5256 }, - { "id": "overlay_wielded_colt_navy", "fg": 5257 }, - { "id": "overlay_wielded_colt_ro635", "fg": 5258 }, - { "id": "overlay_wielded_colt_saa", "fg": 5259 }, - { "id": "overlay_wielded_combination_gun", "fg": 5260 }, - { "id": "overlay_wielded_cop_38", "fg": 5261 }, - { "id": "overlay_wielded_cx4", "fg": 5262 }, - { "id": "overlay_wielded_cz75", "fg": 5263 }, - { "id": "overlay_wielded_deagle_44", "fg": 5264 }, - { "id": "overlay_wielded_doublespeargun", "fg": 5265 }, - { "id": "overlay_wielded_draco", "fg": 5266 }, - { "id": "overlay_wielded_emp_gun", "fg": 5267 }, - { "id": "overlay_wielded_famas", "fg": 5268 }, - { "id": "overlay_wielded_flamethrower", "fg": 5269 }, - { "id": "overlay_wielded_flamethrower_crude", "fg": 5270 }, - { "id": "overlay_wielded_flamethrower_simple", "fg": 5271 }, - { "id": "overlay_wielded_flaregun", "fg": 5272 }, - { "id": "overlay_wielded_fn1910", "fg": 5273 }, - { "id": "overlay_wielded_fn57", "fg": 5274 }, - { "id": "overlay_wielded_fn_fal", "fg": 5275 }, - { "id": "overlay_wielded_fn_p90", "fg": 5276 }, - { "id": "overlay_wielded_fs2000", "fg": 5277 }, - { "id": "overlay_wielded_ftk93", "fg": 5278 }, - { "id": "overlay_wielded_garand", "fg": 5279 }, - { "id": "overlay_wielded_glock_17", "fg": 5280 }, - { "id": "overlay_wielded_glock_18c", "fg": 5281 }, - { "id": "overlay_wielded_glock_19", "fg": 5282 }, - { "id": "overlay_wielded_glock_20", "fg": 5283 }, - { "id": "overlay_wielded_glock_20_var_glock_40", "fg": 5284 }, - { "id": "overlay_wielded_glock_21", "fg": 5285 }, - { "id": "overlay_wielded_glock_22", "fg": 5286 }, - { "id": "overlay_wielded_glock_29", "fg": 5287 }, - { "id": "overlay_wielded_glock_31", "fg": 5288 }, - { "id": "overlay_wielded_heavy_rail_rifle", "fg": 5289 }, - { "id": "overlay_wielded_helsing", "fg": 5290 }, - { "id": "overlay_wielded_henry_big_boy", "fg": 5291 }, - { "id": "overlay_wielded_hi_power_40", "fg": 5292 }, - { "id": "overlay_wielded_hi_power_9mm", "fg": 5293 }, - { "id": "overlay_wielded_hk417_13", "fg": 5294 }, - { "id": "overlay_wielded_hk_g3", "fg": 5295 }, - { "id": "overlay_wielded_hk_g36", "fg": 5296 }, - { "id": "overlay_wielded_hk_g80", "fg": 5297 }, - { "id": "overlay_wielded_hk_mp5_semi_pistol", "fg": 5299 }, - { "id": "overlay_wielded_hk_mp5k", "fg": 5300 }, - { "id": "overlay_wielded_hk_mp5sd", "fg": 5301 }, - { "id": "overlay_wielded_hk_mp7", "fg": 5302 }, - { "id": "overlay_wielded_hk_ump45", "fg": 5303 }, - { "id": "overlay_wielded_hptc9", "fg": 5304 }, - { "id": "overlay_wielded_hptcf380", "fg": 5305 }, - { "id": "overlay_wielded_iwi_tavor_x95_300blk", "fg": 5307 }, - { "id": "overlay_wielded_kp32", "fg": 5308 }, - { "id": "overlay_wielded_kp3at", "fg": 5309 }, - { "id": "overlay_wielded_kpf9", "fg": 5310 }, - { "id": "overlay_wielded_ksg-25", "fg": 5311 }, - { "id": "overlay_wielded_ksg", "fg": 5312 }, - { "id": "overlay_wielded_ksub2000", "fg": 5313 }, - { "id": "overlay_wielded_l_bak_223", "fg": 5314 }, - { "id": "overlay_wielded_laser_cannon", "fg": 5315 }, - { "id": "overlay_wielded_laser_rifle", "fg": 5316 }, - { "id": "overlay_wielded_launcher_simple", "fg": 5317 }, - { "id": "overlay_wielded_lemat_revolver", "fg": 5318 }, - { "id": "overlay_wielded_lever_shotgun", "fg": 5319 }, - { "id": "overlay_wielded_m11", "fg": 5321 }, - { "id": "overlay_wielded_m110a1", "fg": 5322 }, - { "id": "overlay_wielded_m14ebr", "fg": 5323 }, - { "id": "overlay_wielded_m17", "fg": 5326 }, - { "id": "overlay_wielded_m18", "fg": 5327 }, - { "id": "overlay_wielded_m1903", "fg": 5328 }, - { "id": "overlay_wielded_m1911-460", "fg": 5329 }, - { "id": "overlay_wielded_m1911_10", "fg": 5331 }, - { "id": "overlay_wielded_m1911_var_m1911_MEU", "fg": 5332 }, - { "id": "overlay_wielded_m1918", "fg": 5333 }, - { "id": "overlay_wielded_m1a", "fg": 5334 }, - { "id": "overlay_wielded_m2010", "fg": 5335 }, - { "id": "overlay_wielded_m202_flash", "fg": 5336 }, - { "id": "overlay_wielded_m231pfw", "fg": 5337 }, - { "id": "overlay_wielded_m240", "fg": 5338 }, - { "id": "overlay_wielded_m27_assault_rifle_var_h&k416a5", "fg": 5340 }, - { "id": "overlay_wielded_m27_assault_rifle_var_m27iar", "fg": 5341 }, - { "id": "overlay_wielded_m27_assault_rifle_var_m38dmr", "fg": 5342 }, - { "id": "overlay_wielded_m27_assault_rifle_var_scar_l", "fg": 5343 }, - { "id": "overlay_wielded_m2browning_sawn", "fg": 5344 }, - { "id": "overlay_wielded_m320", "fg": 5345 }, - { "id": "overlay_wielded_m3_carlgustav", "fg": 5346 }, - { "id": "overlay_wielded_m4_carbine_var_m4_cqbr", "fg": 5347 }, - { "id": "overlay_wielded_m4_carbine_var_m4a1", "fg": 5348 }, - { "id": "overlay_wielded_m4_carlgustav", "fg": 5349 }, - { "id": "overlay_wielded_m79", "fg": 5351 }, - { "id": "overlay_wielded_m9", "fg": 5352 }, - { "id": "overlay_wielded_mac_10", "fg": 5353 }, - { "id": "overlay_wielded_mac_11", "fg": 5354 }, - { "id": "overlay_wielded_makarov", "fg": 5355 }, - { "id": "overlay_wielded_marlin_9a", "fg": 5356 }, - { "id": "overlay_wielded_mauser_c96", "fg": 5357 }, - { "id": "overlay_wielded_mauser_m714", "fg": 5358 }, - { "id": "overlay_wielded_mgl", "fg": 5359 }, - { "id": "overlay_wielded_mininuke_launcher", "fg": 5360 }, - { "id": "overlay_wielded_minispeargun", "fg": 5361 }, - { "id": "overlay_wielded_model_10_revolver", "fg": 5362 }, - { "id": "overlay_wielded_mosin44", "fg": 5363 }, - { "id": "overlay_wielded_mosin44_ebr", "fg": 5364 }, - { "id": "overlay_wielded_mosin91_30", "fg": 5365 }, - { "id": "overlay_wielded_mosin91_30_ebr", "fg": 5366 }, - { "id": "overlay_wielded_moss_brownie", "fg": 5367 }, - { "id": "overlay_wielded_mossberg_500", "fg": 5368 }, - { "id": "overlay_wielded_mossberg_500_var_mossberg_500_security", "fg": 5369 }, - { "id": "overlay_wielded_mossberg_590", "fg": 5370 }, - { "id": "overlay_wielded_mossberg_590_var_SPAS_12", "fg": 5371 }, - { "id": "overlay_wielded_mossberg_930", "fg": 5372 }, - { "id": "overlay_wielded_mossberg_930_var_m1014", "fg": 5373 }, - { "id": "overlay_wielded_mp18", "fg": 5374 }, - { "id": "overlay_wielded_nailgun", "fg": 5376 }, - { "id": "overlay_wielded_nailrifle", "fg": 5377 }, - { "id": "overlay_wielded_needlegun", "fg": 5378 }, - { "id": "overlay_wielded_needlepistol", "fg": 5379 }, - { "id": "overlay_wielded_oa93", "fg": 5380 }, - { "id": "overlay_wielded_p08", "fg": 5381 }, - { "id": "overlay_wielded_p220_10", "fg": 5382 }, - { "id": "overlay_wielded_p226_357sig", "fg": 5383 }, - { "id": "overlay_wielded_p226_9mm", "fg": 5384 }, - { "id": "overlay_wielded_p320_357sig", "fg": 5385 }, - { "id": "overlay_wielded_paintballgun", "fg": 5386 }, - { "id": "overlay_wielded_pamd68", "fg": 5387 }, - { "id": "overlay_wielded_pamd71z", "fg": 5388 }, - { "id": "overlay_wielded_pipe_combination_gun", "fg": 5389 }, - { "id": "overlay_wielded_pipe_double_shotgun", "fg": 5390 }, - { "id": "overlay_wielded_pipe_shotgun", "fg": 5392 }, - { "id": "overlay_wielded_pistol_flintlock", "fg": 5393 }, - { "id": "overlay_wielded_plasma_gun", "fg": 5394 }, - { "id": "overlay_wielded_plasma_rifle", "fg": 5395 }, - { "id": "overlay_wielded_ppsh", "fg": 5396 }, - { "id": "overlay_wielded_px4", "fg": 5397 }, - { "id": "overlay_wielded_px4_40", "fg": 5398 }, - { "id": "overlay_wielded_raging_bull", "fg": 5399 }, - { "id": "overlay_wielded_raging_judge", "fg": 5400 }, - { "id": "overlay_wielded_rebar_rifle", "fg": 5401 }, - { "id": "overlay_wielded_remington700_270", "fg": 5402 }, - { "id": "overlay_wielded_remington_700", "fg": 5403 }, - { "id": "overlay_wielded_remington_870", "fg": 5404 }, - { "id": "overlay_wielded_remington_870_breacher", "fg": 5405 }, - { "id": "overlay_wielded_remington_870_express", "fg": 5406 }, - { "id": "overlay_wielded_remington_870_var_browning_a5", "fg": 5407 }, - { "id": "overlay_wielded_remington_870_var_remington_1100", "fg": 5408 }, - { "id": "overlay_wielded_revolver_shotgun", "fg": 5409 }, - { "id": "overlay_wielded_rm103a_pistol", "fg": 5410 }, - { "id": "overlay_wielded_rm120c", "fg": 5411 }, - { "id": "overlay_wielded_rm20", "fg": 5412 }, - { "id": "overlay_wielded_rm2000_smg", "fg": 5413 }, - { "id": "overlay_wielded_rm228", "fg": 5414 }, - { "id": "overlay_wielded_rm298", "fg": 5415 }, - { "id": "overlay_wielded_rm451_flamethrower", "fg": 5416 }, - { "id": "overlay_wielded_rm51_assault_rifle", "fg": 5417 }, - { "id": "overlay_wielded_rm614_lmg", "fg": 5418 }, - { "id": "overlay_wielded_rm802", "fg": 5419 }, - { "id": "overlay_wielded_rm88_battle_rifle", "fg": 5420 }, - { "id": "overlay_wielded_ruger_1022", "fg": 5421 }, - { "id": "overlay_wielded_ruger_lcr_22", "fg": 5422 }, - { "id": "overlay_wielded_ruger_lcr_38", "fg": 5423 }, - { "id": "overlay_wielded_ruger_mini", "fg": 5424 }, - { "id": "overlay_wielded_ruger_redhawk", "fg": 5425 }, - { "id": "overlay_wielded_rugerlcp", "fg": 5426 }, - { "id": "overlay_wielded_saiga_12", "fg": 5427 }, - { "id": "overlay_wielded_saiga_410", "fg": 5428 }, - { "id": "overlay_wielded_savage_111f", "fg": 5429 }, - { "id": "overlay_wielded_scar_h", "fg": 5430 }, - { "id": "overlay_wielded_sharps", "fg": 5431 }, - { "id": "overlay_wielded_shotgun_410", "fg": 5432 }, - { "id": "overlay_wielded_shotgun_d", "fg": 5433 }, - { "id": "overlay_wielded_shotgun_s", "fg": 5434 }, - { "id": "overlay_wielded_sig552", "fg": 5435 }, - { "id": "overlay_wielded_sig_40", "fg": 5436 }, - { "id": "overlay_wielded_sig_mcx_rattler_sbr", "fg": 5437 }, - { "id": "overlay_wielded_sig_mosquito", "fg": 5438 }, - { "id": "overlay_wielded_sig_p230", "fg": 5439 }, - { "id": "overlay_wielded_skorpion_61", "fg": 5440 }, - { "id": "overlay_wielded_skorpion_82", "fg": 5441 }, - { "id": "overlay_wielded_sks", "fg": 5442 }, - { "id": "overlay_wielded_smg_40", "fg": 5444 }, - { "id": "overlay_wielded_smg_45", "fg": 5445 }, - { "id": "overlay_wielded_smg_9mm", "fg": 5446 }, - { "id": "overlay_wielded_sp2022 - Copia", "fg": 5447 }, - { "id": "overlay_wielded_sp2022", "fg": 5448 }, - { "id": "overlay_wielded_speargun", "fg": 5449 }, - { "id": "overlay_wielded_sten", "fg": 5450 }, - { "id": "overlay_wielded_steyr_aug", "fg": 5451 }, - { "id": "overlay_wielded_streetsweeper", "fg": 5452 }, - { "id": "overlay_wielded_surv_hand_cannon", "fg": 5453 }, - { "id": "overlay_wielded_surv_rocket_launcher", "fg": 5454 }, - { "id": "overlay_wielded_surv_six_shooter", "fg": 5455 }, - { "id": "overlay_wielded_survivor_special_700", "fg": 5456 }, - { "id": "overlay_wielded_sw629", "fg": 5457 }, - { "id": "overlay_wielded_sw_22", "fg": 5458 }, - { "id": "overlay_wielded_sw_500", "fg": 5459 }, - { "id": "overlay_wielded_sw_610", "fg": 5460 }, - { "id": "overlay_wielded_sw_619", "fg": 5461 }, - { "id": "overlay_wielded_tac50", "fg": 5462 }, - { "id": "overlay_wielded_taurus_spectrum", "fg": 5463 }, - { "id": "overlay_wielded_tavor_12", "fg": 5464 }, - { "id": "overlay_wielded_tec9", "fg": 5465 }, - { "id": "overlay_wielded_tihar", "fg": 5466 }, - { "id": "overlay_wielded_tokarev", "fg": 5467 }, - { "id": "overlay_wielded_tommygun", "fg": 5468 }, - { "id": "overlay_wielded_trex_gun", "fg": 5469 }, - { "id": "overlay_wielded_triple_launcher_simple", "fg": 5470 }, - { "id": "overlay_wielded_unbio_blaster_gun", "fg": 5471 }, - { "id": "overlay_wielded_usp_45", "fg": 5472 }, - { "id": "overlay_wielded_usp_45_var_mk23", "fg": 5473 }, - { "id": "overlay_wielded_usp_9mm", "fg": 5474 }, - { "id": "overlay_wielded_uzi", "fg": 5475 }, - { "id": "overlay_wielded_v29", "fg": 5476 }, - { "id": "overlay_wielded_v29_cheap", "fg": 5477 }, - { "id": "overlay_wielded_walther_ccp", "fg": 5478 }, - { "id": "overlay_wielded_walther_p22", "fg": 5479 }, - { "id": "overlay_wielded_walther_p38", "fg": 5480 }, - { "id": "overlay_wielded_walther_ppq_40", "fg": 5481 }, - { "id": "overlay_wielded_walther_ppq_45", "fg": 5482 }, - { "id": "overlay_wielded_walther_ppq_9mm", "fg": 5483 }, - { "id": "overlay_wielded_weatherby_5", "fg": 5484 }, - { "id": "overlay_wielded_win70", "fg": 5485 }, - { "id": "overlay_wielded_winchester_1887", "fg": 5486 }, - { "id": "overlay_wielded_winchester_1897", "fg": 5487 }, - { "id": "overlay_wielded_witness_10", "fg": 5488 }, - { "id": "overlay_wielded_xd_10", "fg": 5489 }, - { "id": "overlay_wielded_brazier", "fg": 5517 }, - { "id": "overlay_wielded_cot", "fg": 5523 }, - { "id": "overlay_female_wielded_bat_nerf", "fg": 5524 }, - { "id": "overlay_female_wielded_golf_bag", "fg": 5525 }, - { "id": "overlay_male_wielded_bat_nerf", "fg": 5526 }, - { "id": "overlay_male_wielded_golf_bag", "fg": 5527 }, - { "id": "overlay_female_wielded_radio_car", "fg": 5528 }, - { "id": "overlay_female_wielded_radio_car_box", "fg": 5529 }, - { "id": "overlay_female_wielded_radio_car_on", "fg": 5530 }, - { "id": "overlay_female_wielded_radio_car_wheel", "fg": 5531 }, - { "id": "overlay_female_wielded_radiocontrol", "fg": 5532 }, - { "id": "overlay_female_wielded_rc_car_box", "fg": 5533 }, - { "id": "overlay_male_wielded_radio_car", "fg": 5534 }, - { "id": "overlay_male_wielded_radio_car_box", "fg": 5535 }, - { "id": "overlay_male_wielded_radio_car_on", "fg": 5536 }, - { "id": "overlay_male_wielded_radio_car_wheel", "fg": 5537 }, - { "id": "overlay_male_wielded_radiocontrol", "fg": 5538 }, - { "id": "overlay_male_wielded_rc_car_box", "fg": 5539 }, - { "id": "overlay_wielded_atomic_lamp", "fg": 5540 }, - { "id": "overlay_wielded_atomic_lamp_off", "fg": 5541 }, - { "id": "overlay_wielded_l-stick", "fg": 5542 }, - { "id": "overlay_wielded_l-stick_on", "fg": 5543 }, - { "id": "overlay_wielded_cattlefodder", "fg": 5547 }, - { "id": "overlay_wielded_bullet_crossbow", "fg": 5561 }, - { "id": "overlay_wielded_compcrossbow", "fg": 5562 }, - { "id": "overlay_wielded_compositecrossbow", "fg": 5563 }, - { "id": "overlay_wielded_crossbow", "fg": 5564 }, - { "id": "overlay_wielded_hand_crossbow", "fg": 5565 }, - { "id": "overlay_wielded_huge_crossbow", "fg": 5566 }, - { "id": "overlay_wielded_rep_crossbow", "fg": 5567 }, - { "id": "overlay_wielded_hoboreel", "fg": 5581 }, - { "id": "overlay_wielded_grenade", "fg": 5586 }, - { "id": "overlay_wielded_grenade_act", "fg": 5587 }, - { "id": "overlay_wielded_grenade_emp", "fg": 5588 }, - { "id": "overlay_wielded_grenade_emp_act", "fg": 5589 }, - { "id": "overlay_wielded_grenade_inc", "fg": 5590 }, - { "id": "overlay_wielded_grenade_inc_act", "fg": 5591 }, - { "id": "overlay_wielded_pipebomb", "fg": 5592 }, - { "id": "overlay_wielded_pipebomb_act", "fg": 5593 }, - { "id": "overlay_wielded_scrambler", "fg": 5594 }, - { "id": "overlay_wielded_scrambler_act", "fg": 5595 }, - { "id": "overlay_wielded_smokebomb", "fg": 5596 }, - { "id": "overlay_wielded_smokebomb_act", "fg": 5597 }, - { "id": "overlay_female_wielded_manhole_cover", "fg": 5635 }, - { "id": "overlay_male_wielded_manhole_cover", "fg": 5636 }, - { "id": "overlay_wielded_eyedrops", "fg": 5643 }, - { "id": "overlay_female_wielded_baseball", "fg": 5653 }, - { "id": "overlay_female_wielded_basketball", "fg": 5654 }, - { "id": "overlay_female_wielded_beach_volleyball", "fg": 5655 }, - { "id": "overlay_female_wielded_mre_beef_box", "fg": 5656 }, - { "id": "overlay_female_wielded_puck", "fg": 5657 }, - { "id": "overlay_male_wielded_baseball", "fg": 5658 }, - { "id": "overlay_male_wielded_basketball", "fg": 5659 }, - { "id": "overlay_male_wielded_beach_volleyball", "fg": 5660 }, - { "id": "overlay_male_wielded_mre_beef_box", "fg": 5661 }, - { "id": "overlay_male_wielded_puck", "fg": 5662 }, - { "id": "overlay_wielded_PR24-extended", "fg": 5663 }, - { "id": "overlay_wielded_PR24-retracted", "fg": 5664 }, - { "id": "overlay_wielded_baton-extended", "fg": 5665 }, - { "id": "overlay_wielded_baton", "fg": 5666 }, - { "id": "overlay_wielded_battery_car", "fg": 5667 }, - { "id": "overlay_wielded_bowling_ball", "fg": 5668 }, - { "id": "overlay_wielded_cell_phone", "fg": 5669 }, - { "id": "overlay_wielded_cell_phone_flashlight", "fg": 5670 }, - { "id": "overlay_wielded_codeine", "fg": 5671 }, - { "id": "overlay_wielded_flask_hip", "fg": 5672 }, - { "id": "overlay_wielded_football", "fg": 5673 }, - { "id": "overlay_wielded_golf_ball", "fg": 5674 }, - { "id": "overlay_wielded_indoor_volleyball", "fg": 5675 }, - { "id": "overlay_wielded_misc_repairkit", "fg": 5676 }, - { "id": "overlay_wielded_portable_game", "fg": 5677 }, - { "id": "overlay_wielded_two_way_radio", "fg": 5679 }, - { "id": "overlay_female_wielded_pool_cue", "fg": 5695 }, - { "id": "overlay_male_wielded_pool_cue", "fg": 5696 }, - { "id": "overlay_female_wielded_i_staff", "fg": 5704 }, - { "id": "overlay_female_wielded_q_staff", "fg": 5705 }, - { "id": "overlay_female_wielded_shock_staff", "fg": 5706 }, - { "id": "overlay_male_wielded_i_staff", "fg": 5707 }, - { "id": "overlay_male_wielded_q_staff", "fg": 5708 }, - { "id": "overlay_male_wielded_shock_staff", "fg": 5709 }, - { "id": "overlay_female_wielded_cigar", "fg": 5721 }, - { "id": "overlay_female_wielded_cigar_butt", "fg": 5722 }, - { "id": "overlay_male_wielded_cigar", "fg": 5730 }, - { "id": "overlay_male_wielded_cigar_butt", "fg": 5731 }, - { "id": "overlay_female_wielded_cig", "fg": 5739 }, - { "id": "overlay_female_wielded_cig_butt", "fg": 5740 }, - { "id": "overlay_male_wielded_cig", "fg": 5748 }, - { "id": "overlay_male_wielded_cig_butt", "fg": 5749 }, - { "id": "overlay_female_wielded_joint", "fg": 5757 }, - { "id": "overlay_female_wielded_joint_roach", "fg": 5765 }, - { "id": "overlay_male_wielded_joint", "fg": 5766 }, - { "id": "overlay_male_wielded_joint_roach", "fg": 5774 }, - { "id": "overlay_wielded_bokken", "fg": 5824 }, - { "id": "overlay_wielded_digging_stick", "fg": 5833 }, - { "id": "overlay_wielded_hoe", "fg": 5836 }, - { "id": "overlay_female_worn_aep_suit", "fg": 5944 }, - { "id": "overlay_female_worn_power_armor_basic", "fg": 5945 }, - { "id": "overlay_female_worn_power_armor_heavy", "fg": 5946 }, - { "id": "overlay_female_worn_power_armor_helmet_basic", "fg": 5947 }, - { "id": "overlay_female_worn_power_armor_helmet_heavy", "fg": 5948 }, - { "id": "overlay_female_worn_power_armor_helmet_light", "fg": 5949 }, - { "id": "overlay_female_worn_power_armor_light", "fg": 5950 }, - { "id": "overlay_female_worn_rm13_armor", "fg": 5951 }, - { "id": "overlay_female_worn_rm13_armor_on", "fg": 5952 }, - { "id": "overlay_male_worn_aep_suit", "fg": 5953 }, - { "id": "overlay_male_worn_power_armor_basic", "fg": 5954 }, - { "id": "overlay_male_worn_power_armor_heavy", "fg": 5955 }, - { "id": "overlay_male_worn_power_armor_helmet_basic", "fg": 5956 }, - { "id": "overlay_male_worn_power_armor_helmet_heavy", "fg": 5957 }, - { "id": "overlay_male_worn_power_armor_helmet_light", "fg": 5958 }, - { "id": "overlay_male_worn_power_armor_light", "fg": 5959 }, - { "id": "overlay_male_worn_rm13_armor", "fg": 5960 }, - { "id": "overlay_male_worn_rm13_armor_on", "fg": 5961 }, - { "id": "overlay_female_worn_chainmail_suit_faraday", "fg": 5976 }, - { "id": "overlay_female_worn_pot_helmet", "fg": 5977 }, - { "id": "overlay_male_worn_chainmail_suit_faraday", "fg": 5978 }, - { "id": "overlay_male_worn_pot_helmet", "fg": 5979 }, - { "id": "overlay_female_worn_duffelbag", "fg": 6000 }, - { "id": "overlay_female_worn_runner_bag", "fg": 6003 }, - { "id": "overlay_male_worn_duffelbag", "fg": 6004 }, - { "id": "overlay_male_worn_runner_bag", "fg": 6007 }, - { "id": "overlay_female_worn_chestrig", "fg": 6027 }, - { "id": "overlay_female_worn_grenadebandolier", "fg": 6028 }, - { "id": "overlay_female_worn_mbag", "fg": 6029 }, - { "id": "overlay_female_worn_slingpack", "fg": 6030 }, - { "id": "overlay_male_worn_chestrig", "fg": 6031 }, - { "id": "overlay_male_worn_grenadebandolier", "fg": 6032 }, - { "id": "overlay_male_worn_mbag", "fg": 6033 }, - { "id": "overlay_male_worn_slingpack", "fg": 6034 }, - { "id": "overlay_female_worn_subsuit_xl", "fg": 6055 }, - { "id": "overlay_male_worn_subsuit_xl", "fg": 6056 }, - { "id": "overlay_worn_wolfsuit", "fg": 6057 }, - { "id": "overlay_female_worn_chestwrap_leather", "fg": 6083 }, - { "id": "overlay_female_worn_tights", "fg": 6084 }, - { "id": "overlay_male_worn_chestwrap_leather", "fg": 6085 }, - { "id": "overlay_male_worn_tights", "fg": 6086 }, - { "id": "overlay_female_worn_copper_necklace", "fg": 6087 }, - { "id": "overlay_female_worn_gold_necklace", "fg": 6088 }, - { "id": "overlay_female_worn_platinum_necklace", "fg": 6089 }, - { "id": "overlay_female_worn_silver_necklace", "fg": 6090 }, - { "id": "overlay_male_worn_copper_necklace", "fg": 6091 }, - { "id": "overlay_male_worn_gold_necklace", "fg": 6092 }, - { "id": "overlay_male_worn_platinum_necklace", "fg": 6093 }, - { "id": "overlay_male_worn_silver_necklace", "fg": 6094 }, - { "id": "overlay_female_worn_nanoskirt", "fg": 6095 }, - { "id": "overlay_male_worn_nanoskirt", "fg": 6096 }, - { "id": "overlay_female_worn_motorbike_armor", "fg": 6097 }, - { "id": "overlay_male_worn_motorbike_armor", "fg": 6098 }, - { "id": "overlay_female_worn_headscarf", "fg": 6099 }, - { "id": "overlay_female_worn_long_knit_scarf", "fg": 6100 }, - { "id": "overlay_female_worn_long_patchwork_scarf", "fg": 6101 }, - { "id": "overlay_female_worn_marloss_scarf", "fg": 6102 }, - { "id": "overlay_female_worn_patchwork_scarf", "fg": 6103 }, - { "id": "overlay_female_worn_scarf_fur", "fg": 6104 }, - { "id": "overlay_female_worn_scarf_fur_long", "fg": 6105 }, - { "id": "overlay_male_worn_headscarf", "fg": 6106 }, - { "id": "overlay_male_worn_long_knit_scarf", "fg": 6107 }, - { "id": "overlay_male_worn_long_patchwork_scarf", "fg": 6108 }, - { "id": "overlay_male_worn_marloss_scarf", "fg": 6109 }, - { "id": "overlay_male_worn_patchwork_scarf", "fg": 6110 }, - { "id": "overlay_male_worn_scarf_fur", "fg": 6111 }, - { "id": "overlay_male_worn_scarf_fur_long", "fg": 6112 }, - { "id": "overlay_male_worn_scarf_long", "fg": 6113 }, - { "id": "overlay_female_worn_scuba_tank", "fg": 6124 }, - { "id": "overlay_female_worn_scuba_tank_on", "fg": 6125 }, - { "id": "overlay_female_worn_small_scuba_tank", "fg": 6126 }, - { "id": "overlay_female_worn_small_scuba_tank_on", "fg": 6127 }, - { "id": "overlay_female_worn_wetsuit", "fg": 6128 }, - { "id": "overlay_female_worn_wetsuit_gloves", "fg": 6129 }, - { "id": "overlay_female_worn_wetsuit_hood", "fg": 6130 }, - { "id": "overlay_female_worn_wetsuit_spring", "fg": 6131 }, - { "id": "overlay_male_worn_scuba_tank", "fg": 6132 }, - { "id": "overlay_male_worn_scuba_tank_on", "fg": 6133 }, - { "id": "overlay_male_worn_small_scuba_tank", "fg": 6134 }, - { "id": "overlay_male_worn_small_scuba_tank_on", "fg": 6135 }, - { "id": "overlay_male_worn_wetsuit", "fg": 6136 }, - { "id": "overlay_male_worn_wetsuit_gloves", "fg": 6137 }, - { "id": "overlay_male_worn_wetsuit_hood", "fg": 6138 }, - { "id": "overlay_male_worn_wetsuit_spring", "fg": 6139 }, - { "id": "overlay_worn_wetsuit_booties", "fg": 6140 }, - { "id": "overlay_female_worn_fitover_sunglasses", "fg": 6168 }, - { "id": "overlay_male_worn_fitover_sunglasses", "fg": 6169 }, - { "id": "overlay_female_worn_golf_bag", "fg": 6206 }, - { "id": "overlay_male_worn_golf_bag", "fg": 6207 }, - { "id": "overlay_female_worn_bandana_head", "fg": 6244 }, - { "id": "overlay_female_worn_hat_chef", "fg": 6245 }, - { "id": "overlay_female_worn_tricorne", "fg": 6246 }, - { "id": "overlay_male_worn_bandana_head", "fg": 6247 }, - { "id": "overlay_male_worn_hat_chef", "fg": 6248 }, - { "id": "overlay_male_worn_tricorne", "fg": 6249 }, - { "id": "overlay_female_worn_bead_ear", "fg": 6305 }, - { "id": "overlay_female_worn_copper_ear", "fg": 6306 }, - { "id": "overlay_female_worn_hairpin", "fg": 6308 }, - { "id": "overlay_male_worn_bead_ear", "fg": 6311 }, - { "id": "overlay_male_worn_copper_ear", "fg": 6312 }, - { "id": "overlay_male_worn_hairpin", "fg": 6314 }, - { "id": "overlay_female_worn_antarvasa", "fg": 6320 }, - { "id": "overlay_female_worn_kasaya", "fg": 6321 }, - { "id": "overlay_female_worn_samghati", "fg": 6322 }, - { "id": "overlay_female_worn_uttarasanga", "fg": 6323 }, - { "id": "overlay_male_worn_antarvasa", "fg": 6324 }, - { "id": "overlay_male_worn_kasaya", "fg": 6325 }, - { "id": "overlay_male_worn_samghati", "fg": 6326 }, - { "id": "overlay_male_worn_uttarasanga", "fg": 6327 }, - { "id": "overlay_female_worn_blindfold", "fg": 6350 }, - { "id": "overlay_male_worn_blindfold", "fg": 6351 }, - { "id": "overlay_female_worn_tourniquet_lower", "fg": 6372 }, - { "id": "overlay_female_worn_tourniquet_upper", "fg": 6373 }, - { "id": "overlay_female_worn_wristwatch", "fg": 6374 }, - { "id": "overlay_male_worn_tourniquet_lower", "fg": 6375 }, - { "id": "overlay_male_worn_tourniquet_upper", "fg": 6376 }, - { "id": "overlay_male_worn_wristwatch", "fg": 6377 }, - { "id": "overlay_worn_purse", "fg": 6378 }, - { "id": "overlay_worn_rad_badge", "fg": 6379 }, - { "id": "overlay_female_worn_survivor_goggles", "fg": 6493 }, - { "id": "overlay_male_worn_survivor_goggles", "fg": 6494 }, - { "id": "overlay_female_worn_survivor_duffel_bag", "fg": 6553 }, - { "id": "overlay_female_worn_survivor_pack", "fg": 6554 }, - { "id": "overlay_female_worn_survivor_rucksack", "fg": 6555 }, - { "id": "overlay_female_worn_survivor_runner_pack", "fg": 6556 }, - { "id": "overlay_male_worn_survivor_duffel_bag", "fg": 6557 }, - { "id": "overlay_male_worn_survivor_pack", "fg": 6558 }, - { "id": "overlay_male_worn_survivor_rucksack", "fg": 6559 }, - { "id": "overlay_male_worn_survivor_runner_pack", "fg": 6560 } + "fg": 6568 + }, + { "id": "overlay_worn_boots_h20survivor", "fg": 6577 }, + { "id": "overlay_female_worn_gloves_h20survivor", "fg": 6578 }, + { "id": "overlay_male_worn_gloves_h20survivor", "fg": 6579 }, + { "id": "overlay_female_worn_hood_h20survivor", "fg": 6580 }, + { "id": "overlay_male_worn_hood_h20survivor", "fg": 6581 }, + { "id": "overlay_female_worn_h20survivor_suit", "fg": 6582 }, + { "id": "overlay_male_worn_h20survivor_suit", "fg": 6583 }, + { "id": [ "overlay_worn_boots_lsurvivor", "overlay_worn_xl_boots_lsurvivor" ], "fg": 6596 }, + { "id": [ "overlay_female_worn_gloves_lsurvivor", "overlay_female_worn_xl_gloves_lsurvivor" ], "fg": 6601 }, + { "id": [ "overlay_male_worn_gloves_lsurvivor", "overlay_male_worn_xl_gloves_lsurvivor" ], "fg": 6602 }, + { "id": [ "overlay_female_worn_hood_lsurvivor", "overlay_female_worn_xl_hood_lsurvivor" ], "fg": 6603 }, + { "id": [ "overlay_male_worn_hood_lsurvivor", "overlay_male_worn_xl_hood_lsurvivor" ], "fg": 6604 }, + { "id": [ "overlay_female_worn_lsurvivor_suit", "overlay_female_worn_xl_lsurvivor_suit" ], "fg": 6605 }, + { "id": [ "overlay_male_worn_lsurvivor_suit", "overlay_male_worn_xl_lsurvivor_suit" ], "fg": 6606 }, + { "id": [ "overlay_female_worn_lsurvivor_armor", "overlay_female_worn_xl_lsurvivor_armor" ], "fg": 6597 }, + { "id": [ "overlay_male_worn_lsurvivor_armor", "overlay_male_worn_xl_lsurvivor_armor" ], "fg": 6598 }, + { "id": [ "overlay_female_worn_lsurvivor_pants", "overlay_female_worn_xl_lsurvivor_pants" ], "fg": 6599 }, + { "id": [ "overlay_male_worn_lsurvivor_pants", "overlay_male_worn_xl_lsurvivor_pants" ], "fg": 6600 }, + { "id": "overlay_female_worn_mask_hsurvivor", "fg": 6607 }, + { "id": "overlay_male_worn_mask_hsurvivor", "fg": 6608 }, + { "id": "overlay_female_worn_mask_lsurvivor", "fg": 6609 }, + { "id": "overlay_male_worn_mask_lsurvivor", "fg": 6610 }, + { "id": "overlay_female_worn_mask_fsurvivor", "fg": 6611 }, + { "id": "overlay_male_worn_mask_fsurvivor", "fg": 6612 }, + { "id": "overlay_female_worn_mask_fsurvivorxl", "fg": 6611 }, + { "id": "overlay_male_worn_mask_fsurvivorxl", "fg": 6612 }, + { "id": "overlay_female_worn_mask_survivor", "fg": 6613 }, + { "id": "overlay_male_worn_mask_survivor", "fg": 6614 }, + { "id": "overlay_female_worn_mask_survivorxl", "fg": 6613 }, + { "id": "overlay_male_worn_mask_survivorxl", "fg": 6614 }, + { "id": "overlay_female_worn_mask_wsurvivor", "fg": 6615 }, + { "id": "overlay_male_worn_mask_wsurvivor", "fg": 6616 }, + { "id": "overlay_female_worn_mask_wsurvivorxl", "fg": 6615 }, + { "id": "overlay_male_worn_mask_wsurvivorxl", "fg": 6616 }, + { "id": [ "overlay_worn_boots_wsurvivor", "overlay_worn_xl_boots_wsurvivor" ], "fg": 6629 }, + { "id": [ "overlay_female_worn_gloves_wsurvivor", "overlay_female_worn_xl_gloves_wsurvivor" ], "fg": 6630 }, + { "id": [ "overlay_male_worn_gloves_wsurvivor", "overlay_male_worn_xl_gloves_wsurvivor" ], "fg": 6631 }, + { "id": [ "overlay_female_worn_hood_wsurvivor", "overlay_female_worn_xl_hood_wsurvivor" ], "fg": 6632 }, + { "id": [ "overlay_male_worn_hood_wsurvivor", "overlay_male_worn_xl_hood_wsurvivor" ], "fg": 6633 }, + { "id": [ "overlay_female_worn_wsurvivor_suit", "overlay_female_worn_xl_wsurvivor_suit" ], "fg": 6634 }, + { "id": [ "overlay_male_worn_wsurvivor_suit", "overlay_male_worn_xl_wsurvivor_suit" ], "fg": 6635 }, + { "id": "overlay_female_worn_bikini_bottom", "fg": 6636 }, + { "id": "overlay_male_worn_bikini_bottom", "fg": 6637 }, + { "id": "overlay_female_worn_bikini_top", "fg": 6638 }, + { "id": "overlay_male_worn_bikini_top", "fg": 6639 }, + { "id": "overlay_female_worn_bikini_top_fur", "fg": 6640 }, + { "id": "overlay_male_worn_bikini_top_fur", "fg": 6641 }, + { "id": "overlay_female_worn_bikini_top_leather", "fg": 6642 }, + { "id": "overlay_male_worn_bikini_top_leather", "fg": 6643 }, + { "id": "overlay_female_worn_winter_pants_army", "fg": 6644 }, + { "id": "overlay_male_worn_winter_pants_army", "fg": 6645 }, + { "id": "overlay_female_worn_bunker_pants", "fg": 6646 }, + { "id": "overlay_male_worn_bunker_pants", "fg": 6647 }, + { "id": "overlay_female_worn_striped_pants", "fg": 6670 }, + { "id": "overlay_male_worn_striped_pants", "fg": 6671 }, + { "id": "overlay_female_worn_technician_pants_gray", "fg": 6672 }, + { "id": "overlay_male_worn_technician_pants_gray", "fg": 6673 }, + { "id": "overlay_female_worn_jeans", "fg": 6648 }, + { "id": "overlay_male_worn_jeans", "fg": 6649 }, + { "id": "overlay_female_worn_jeans_red", "fg": 6650 }, + { "id": "overlay_male_worn_jeans_red", "fg": 6651 }, + { "id": "overlay_female_worn_motorbike_pants", "fg": 6652 }, + { "id": "overlay_male_worn_motorbike_pants", "fg": 6653 }, + { "id": "overlay_female_worn_pants_army", "fg": 6654 }, + { "id": "overlay_male_worn_pants_army", "fg": 6655 }, + { "id": "overlay_female_worn_pants_cargo", "fg": 6656 }, + { "id": "overlay_male_worn_pants_cargo", "fg": 6657 }, + { "id": "overlay_female_worn_pants_checkered", "fg": 6658 }, + { "id": "overlay_male_worn_pants_checkered", "fg": 6659 }, + { "id": "overlay_female_worn_pants_faux_fur", "fg": 6661 }, + { "id": "overlay_male_worn_pants_faux_fur", "fg": 6662 }, + { "id": "overlay_female_worn_pants_fur", "fg": 6663 }, + { "id": "overlay_male_worn_pants_fur", "fg": 6664 }, + { "id": "overlay_female_worn_pants_leather", "fg": 6665 }, + { "id": "overlay_male_worn_pants_leather", "fg": 6666 }, + { "id": "overlay_female_worn_pants", "fg": 6660 }, + { "id": "overlay_male_worn_pants", "fg": 6667 }, + { "id": "overlay_female_worn_pants_ski", "fg": 6668 }, + { "id": "overlay_male_worn_pants_ski", "fg": 6669 }, + { "id": "overlay_female_worn_bra", "fg": 6678 }, + { "id": "overlay_male_worn_bra", "fg": 6679 }, + { "id": "overlay_female_worn_corset", "fg": 6680 }, + { "id": "overlay_male_worn_corset", "fg": 6681 }, + { "id": "overlay_male_worn_undershirt", "fg": 6695 }, + { "id": "overlay_female_worn_undershirt", "fg": 6694 }, + { "id": "overlay_female_worn_socks", "fg": 6688 }, + { "id": "overlay_male_worn_socks", "fg": 6689 }, + { "id": "overlay_female_worn_stockings", "fg": 6692 }, + { "id": "overlay_male_worn_stockings", "fg": 6693 }, + { "id": "overlay_worn_socks_wool", "fg": 6698 }, + { "id": "overlay_female_worn_sports_bra", "fg": 6690 }, + { "id": "overlay_male_worn_sports_bra", "fg": 6691 }, + { "id": "overlay_female_worn_boxer_briefs", "fg": 6674 }, + { "id": "overlay_male_worn_boxer_briefs", "fg": 6675 }, + { "id": "overlay_female_worn_boxer_shorts", "fg": 6676 }, + { "id": "overlay_male_worn_boxer_shorts", "fg": 6677 }, + { "id": "overlay_female_worn_long_underpants", "fg": 6682 }, + { "id": "overlay_male_worn_long_underpants", "fg": 6683 }, + { "id": "overlay_female_worn_long_undertop", "fg": 6684 }, + { "id": "overlay_male_worn_long_undertop", "fg": 6685 }, + { "id": "overlay_female_worn_panties", "fg": 6686 }, + { "id": "overlay_male_worn_panties", "fg": 6687 }, + { "id": "overlay_female_worn_union_suit", "fg": 6696 }, + { "id": "overlay_male_worn_union_suit", "fg": 6697 }, + { "id": "overlay_male_worn_blanket", "fg": 6700 }, + { "id": "overlay_female_worn_blanket", "fg": 6699 }, + { "id": "overlay_male_worn_down_blanket", "fg": 6702 }, + { "id": "overlay_female_worn_down_blanket", "fg": 6701 }, + { "id": "overlay_female_worn_electric_blanket", "fg": 6703 }, + { "id": "overlay_male_worn_electric_blanket", "fg": 6704 }, + { "id": "overlay_female_worn_towel", "fg": 6705 }, + { "id": "overlay_male_worn_towel", "fg": 6706 }, + { "id": "overlay_female_worn_towel_wet", "fg": 6705 }, + { "id": "overlay_male_worn_towel_wet", "fg": 6706 }, + { "id": "overlay_female_worn_towel_soiled", "fg": 6705 }, + { "id": "overlay_male_worn_towel_soiled", "fg": 6706 }, + { "id": "overlay_mutation_bio_blaster", "fg": 5009 }, + { "id": "overlay_effect_attention", "fg": 5010 }, + { "id": "overlay_effect_boomered", "fg": 5011 }, + { "id": "overlay_effect_glare", "fg": 5012 }, + { "id": "overlay_effect_laserlocked", "fg": 5013 }, + { "id": "overlay_female_mutation_ARM_TENTACLES", "fg": 5138 }, + { "id": "overlay_male_mutation_ARM_TENTACLES", "fg": 5139 }, + { "id": "overlay_female_mutation_ARM_TENTACLES_4", "fg": 5140 }, + { "id": "overlay_male_mutation_ARM_TENTACLES_4", "fg": 5141 }, + { "id": "overlay_female_mutation_ARM_TENTACLES_8", "fg": 5142 }, + { "id": "overlay_male_mutation_ARM_TENTACLES_8", "fg": 5143 }, + { "id": "overlay_female_mutation_CANINE_EARS", "fg": 5152 }, + { "id": "overlay_male_mutation_CANINE_EARS", "fg": 5153 }, + { "id": "overlay_female_mutation_FEL_EYE", "fg": 5156 }, + { "id": "overlay_male_mutation_FEL_EYE", "fg": 5157 }, + { "id": "overlay_female_mutation_FELINE_EARS", "fg": 5158 }, + { "id": "overlay_male_mutation_FELINE_EARS", "fg": 5159 }, + { "id": "overlay_female_mutation_HORNS", "fg": 5160 }, + { "id": "overlay_male_mutation_HORNS", "fg": 5161 }, + { "id": "overlay_female_mutation_HORNS_CURLED", "fg": 5162 }, + { "id": "overlay_male_mutation_HORNS_CURLED", "fg": 5163 }, + { "id": "overlay_female_mutation_LUPINE_EARS", "fg": 5168 }, + { "id": "overlay_male_mutation_LUPINE_EARS", "fg": 5169 }, + { "id": "overlay_female_mutation_LYNX_FUR", "fg": 5170 }, + { "id": "overlay_male_mutation_LYNX_FUR", "fg": 5171 }, + { "id": "overlay_female_mutation_MINOTAUR", "fg": 5172 }, + { "id": "overlay_male_mutation_MINOTAUR", "fg": 5173 }, + { "id": "overlay_female_mutation_MOUTH_TENTACLES", "fg": 5174 }, + { "id": "overlay_male_mutation_MOUTH_TENTACLES", "fg": 5175 }, + { "id": "overlay_female_mutation_SHELL", "fg": 5182 }, + { "id": "overlay_male_mutation_SHELL", "fg": 5183 }, + { "id": "overlay_female_mutation_TAIL_CATTLE", "fg": 5184 }, + { "id": "overlay_male_mutation_TAIL_CATTLE", "fg": 5185 }, + { "id": "overlay_female_mutation_TAIL_FLUFFY", "fg": 5186 }, + { "id": "overlay_male_mutation_TAIL_FLUFFY", "fg": 5187 }, + { "id": "overlay_female_mutation_TAIL_LONG", "fg": 5188 }, + { "id": "overlay_male_mutation_TAIL_LONG", "fg": 5189 }, + { "id": "overlay_female_mutation_WHISKERS", "fg": 5196 }, + { "id": "overlay_male_mutation_WHISKERS", "fg": 5197 }, + { "id": "overlay_female_mutation_FELINE_FUR", "fg": 5209 }, + { "id": "overlay_female_mutation_FUR", "fg": 5210 }, + { "id": "overlay_male_mutation_FELINE_FUR", "fg": 5212 }, + { "id": "overlay_male_mutation_FUR", "fg": 5213 }, + { "id": "overlay_female_wielded_clay_teapot", "fg": 5268 }, + { "id": "overlay_female_worn_harmonica_holder", "fg": 5269 }, + { "id": "overlay_male_wielded_clay_teapot", "fg": 5270 }, + { "id": "overlay_male_worn_harmonica_holder", "fg": 5271 }, + { "id": "overlay_wielded_banjo", "fg": 5273 }, + { "id": "overlay_wielded_bodypillow", "fg": 5274 }, + { "id": "overlay_wielded_clay_pot", "fg": 5275 }, + { "id": "overlay_wielded_guitar_electric", "fg": 5276 }, + { "id": "overlay_wielded_laptop", "fg": 5277 }, + { "id": "overlay_wielded_makeshift_hammer", "fg": 5278 }, + { "id": "overlay_wielded_pot_makeshift", "fg": 5279 }, + { "id": "overlay_wielded_pot_makeshift_copper", "fg": 5280 }, + { "id": "overlay_wielded_tazer", "fg": 5281 }, + { "id": "overlay_wielded_1895sbl", "fg": 5285 }, + { "id": "overlay_wielded_2_shot_special", "fg": 5286 }, + { "id": "overlay_wielded_90two", "fg": 5287 }, + { "id": "overlay_wielded_90two40", "fg": 5288 }, + { "id": "overlay_wielded_AT4", "fg": 5289 }, + { "id": "overlay_wielded_LAW", "fg": 5290 }, + { "id": "overlay_wielded_LAW_Packed", "fg": 5291 }, + { "id": "overlay_wielded_M24", "fg": 5292 }, + { "id": "overlay_wielded_RPG", "fg": 5293 }, + { "id": "overlay_wielded_TDI", "fg": 5294 }, + { "id": "overlay_wielded_USAS_12", "fg": 5295 }, + { "id": "overlay_wielded_af2011a1_38super", "fg": 5296 }, + { "id": "overlay_wielded_airspeargun", "fg": 5297 }, + { "id": "overlay_wielded_ak74", "fg": 5299 }, + { "id": "overlay_wielded_american_180", "fg": 5300 }, + { "id": "overlay_wielded_an94", "fg": 5301 }, + { "id": "overlay_wielded_ar10", "fg": 5302 }, + { "id": "overlay_wielded_ar15", "fg": 5303 }, + { "id": "overlay_wielded_ar_pistol", "fg": 5304 }, + { "id": "overlay_wielded_arx160", "fg": 5305 }, + { "id": "overlay_wielded_ashot", "fg": 5306 }, + { "id": "overlay_wielded_atgm_launcher", "fg": 5307 }, + { "id": "overlay_wielded_bbgun", "fg": 5308 }, + { "id": "overlay_wielded_bfr", "fg": 5309 }, + { "id": "overlay_wielded_bh_m89", "fg": 5310 }, + { "id": "overlay_wielded_bigun", "fg": 5311 }, + { "id": "overlay_wielded_blunderbuss", "fg": 5312 }, + { "id": "overlay_wielded_bond_410", "fg": 5313 }, + { "id": "overlay_wielded_browning_blr", "fg": 5314 }, + { "id": "overlay_wielded_bt_apc9k", "fg": 5315 }, + { "id": "overlay_wielded_chemical_thrower", "fg": 5317 }, + { "id": "overlay_wielded_coilgun", "fg": 5318 }, + { "id": "overlay_wielded_colt_army", "fg": 5319 }, + { "id": "overlay_wielded_colt_lightning", "fg": 5320 }, + { "id": "overlay_wielded_colt_navy", "fg": 5321 }, + { "id": "overlay_wielded_colt_ro635", "fg": 5322 }, + { "id": "overlay_wielded_colt_saa", "fg": 5323 }, + { "id": "overlay_wielded_combination_gun", "fg": 5324 }, + { "id": "overlay_wielded_cop_38", "fg": 5325 }, + { "id": "overlay_wielded_cx4", "fg": 5326 }, + { "id": "overlay_wielded_cz75", "fg": 5327 }, + { "id": "overlay_wielded_deagle_44", "fg": 5328 }, + { "id": "overlay_wielded_doublespeargun", "fg": 5329 }, + { "id": "overlay_wielded_draco", "fg": 5330 }, + { "id": "overlay_wielded_emp_gun", "fg": 5331 }, + { "id": "overlay_wielded_famas", "fg": 5332 }, + { "id": "overlay_wielded_flamethrower", "fg": 5333 }, + { "id": "overlay_wielded_flamethrower_crude", "fg": 5334 }, + { "id": "overlay_wielded_flamethrower_simple", "fg": 5335 }, + { "id": "overlay_wielded_flaregun", "fg": 5336 }, + { "id": "overlay_wielded_fn1910", "fg": 5337 }, + { "id": "overlay_wielded_fn57", "fg": 5338 }, + { "id": "overlay_wielded_fn_fal", "fg": 5339 }, + { "id": "overlay_wielded_fn_p90", "fg": 5340 }, + { "id": "overlay_wielded_fs2000", "fg": 5341 }, + { "id": "overlay_wielded_ftk93", "fg": 5342 }, + { "id": "overlay_wielded_garand", "fg": 5343 }, + { "id": "overlay_wielded_glock_17", "fg": 5344 }, + { "id": "overlay_wielded_glock_18c", "fg": 5345 }, + { "id": "overlay_wielded_glock_19", "fg": 5346 }, + { "id": "overlay_wielded_glock_20", "fg": 5347 }, + { "id": "overlay_wielded_glock_20_var_glock_40", "fg": 5348 }, + { "id": "overlay_wielded_glock_21", "fg": 5349 }, + { "id": "overlay_wielded_glock_22", "fg": 5350 }, + { "id": "overlay_wielded_glock_29", "fg": 5351 }, + { "id": "overlay_wielded_glock_31", "fg": 5352 }, + { "id": "overlay_wielded_heavy_rail_rifle", "fg": 5353 }, + { "id": "overlay_wielded_helsing", "fg": 5354 }, + { "id": "overlay_wielded_henry_big_boy", "fg": 5355 }, + { "id": "overlay_wielded_hi_power_40", "fg": 5356 }, + { "id": "overlay_wielded_hi_power_9mm", "fg": 5357 }, + { "id": "overlay_wielded_hk417_13", "fg": 5358 }, + { "id": "overlay_wielded_hk_g3", "fg": 5359 }, + { "id": "overlay_wielded_hk_g36", "fg": 5360 }, + { "id": "overlay_wielded_hk_g80", "fg": 5361 }, + { "id": "overlay_wielded_hk_mp5_semi_pistol", "fg": 5363 }, + { "id": "overlay_wielded_hk_mp5k", "fg": 5364 }, + { "id": "overlay_wielded_hk_mp5sd", "fg": 5365 }, + { "id": "overlay_wielded_hk_mp7", "fg": 5366 }, + { "id": "overlay_wielded_hk_ump45", "fg": 5367 }, + { "id": "overlay_wielded_hptc9", "fg": 5368 }, + { "id": "overlay_wielded_hptcf380", "fg": 5369 }, + { "id": "overlay_wielded_iwi_tavor_x95_300blk", "fg": 5371 }, + { "id": "overlay_wielded_kp32", "fg": 5372 }, + { "id": "overlay_wielded_kp3at", "fg": 5373 }, + { "id": "overlay_wielded_kpf9", "fg": 5374 }, + { "id": "overlay_wielded_ksg-25", "fg": 5375 }, + { "id": "overlay_wielded_ksg", "fg": 5376 }, + { "id": "overlay_wielded_ksub2000", "fg": 5377 }, + { "id": "overlay_wielded_l_bak_223", "fg": 5378 }, + { "id": "overlay_wielded_laser_cannon", "fg": 5379 }, + { "id": "overlay_wielded_laser_rifle", "fg": 5380 }, + { "id": "overlay_wielded_launcher_simple", "fg": 5381 }, + { "id": "overlay_wielded_lemat_revolver", "fg": 5382 }, + { "id": "overlay_wielded_lever_shotgun", "fg": 5383 }, + { "id": "overlay_wielded_m11", "fg": 5385 }, + { "id": "overlay_wielded_m110a1", "fg": 5386 }, + { "id": "overlay_wielded_m14ebr", "fg": 5387 }, + { "id": "overlay_wielded_m17", "fg": 5390 }, + { "id": "overlay_wielded_m18", "fg": 5391 }, + { "id": "overlay_wielded_m1903", "fg": 5392 }, + { "id": "overlay_wielded_m1911-460", "fg": 5393 }, + { "id": "overlay_wielded_m1911_10", "fg": 5395 }, + { "id": "overlay_wielded_m1911_var_m1911_MEU", "fg": 5396 }, + { "id": "overlay_wielded_m1918", "fg": 5397 }, + { "id": "overlay_wielded_m1a", "fg": 5398 }, + { "id": "overlay_wielded_m2010", "fg": 5399 }, + { "id": "overlay_wielded_m202_flash", "fg": 5400 }, + { "id": "overlay_wielded_m231pfw", "fg": 5401 }, + { "id": "overlay_wielded_m240", "fg": 5402 }, + { "id": "overlay_wielded_m27_assault_rifle_var_h&k416a5", "fg": 5404 }, + { "id": "overlay_wielded_m27_assault_rifle_var_m27iar", "fg": 5405 }, + { "id": "overlay_wielded_m27_assault_rifle_var_m38dmr", "fg": 5406 }, + { "id": "overlay_wielded_m27_assault_rifle_var_scar_l", "fg": 5407 }, + { "id": "overlay_wielded_m2browning_sawn", "fg": 5408 }, + { "id": "overlay_wielded_m320", "fg": 5409 }, + { "id": "overlay_wielded_m3_carlgustav", "fg": 5410 }, + { "id": "overlay_wielded_m4_carbine_var_m4_cqbr", "fg": 5411 }, + { "id": "overlay_wielded_m4_carbine_var_m4a1", "fg": 5412 }, + { "id": "overlay_wielded_m4_carlgustav", "fg": 5413 }, + { "id": "overlay_wielded_m79", "fg": 5415 }, + { "id": "overlay_wielded_m9", "fg": 5416 }, + { "id": "overlay_wielded_mac_10", "fg": 5417 }, + { "id": "overlay_wielded_mac_11", "fg": 5418 }, + { "id": "overlay_wielded_makarov", "fg": 5419 }, + { "id": "overlay_wielded_marlin_9a", "fg": 5420 }, + { "id": "overlay_wielded_mauser_c96", "fg": 5421 }, + { "id": "overlay_wielded_mauser_m714", "fg": 5422 }, + { "id": "overlay_wielded_mgl", "fg": 5423 }, + { "id": "overlay_wielded_mininuke_launcher", "fg": 5424 }, + { "id": "overlay_wielded_minispeargun", "fg": 5425 }, + { "id": "overlay_wielded_model_10_revolver", "fg": 5426 }, + { "id": "overlay_wielded_mosin44", "fg": 5427 }, + { "id": "overlay_wielded_mosin44_ebr", "fg": 5428 }, + { "id": "overlay_wielded_mosin91_30", "fg": 5429 }, + { "id": "overlay_wielded_mosin91_30_ebr", "fg": 5430 }, + { "id": "overlay_wielded_moss_brownie", "fg": 5431 }, + { "id": "overlay_wielded_mossberg_500", "fg": 5432 }, + { "id": "overlay_wielded_mossberg_500_var_mossberg_500_security", "fg": 5433 }, + { "id": "overlay_wielded_mossberg_590", "fg": 5434 }, + { "id": "overlay_wielded_mossberg_590_var_SPAS_12", "fg": 5435 }, + { "id": "overlay_wielded_mossberg_930", "fg": 5436 }, + { "id": "overlay_wielded_mossberg_930_var_m1014", "fg": 5437 }, + { "id": "overlay_wielded_mp18", "fg": 5438 }, + { "id": "overlay_wielded_nailgun", "fg": 5440 }, + { "id": "overlay_wielded_nailrifle", "fg": 5441 }, + { "id": "overlay_wielded_needlegun", "fg": 5442 }, + { "id": "overlay_wielded_needlepistol", "fg": 5443 }, + { "id": "overlay_wielded_oa93", "fg": 5444 }, + { "id": "overlay_wielded_p08", "fg": 5445 }, + { "id": "overlay_wielded_p220_10", "fg": 5446 }, + { "id": "overlay_wielded_p226_357sig", "fg": 5447 }, + { "id": "overlay_wielded_p226_9mm", "fg": 5448 }, + { "id": "overlay_wielded_p320_357sig", "fg": 5449 }, + { "id": "overlay_wielded_paintballgun", "fg": 5450 }, + { "id": "overlay_wielded_pamd68", "fg": 5451 }, + { "id": "overlay_wielded_pamd71z", "fg": 5452 }, + { "id": "overlay_wielded_pipe_combination_gun", "fg": 5453 }, + { "id": "overlay_wielded_pipe_double_shotgun", "fg": 5454 }, + { "id": "overlay_wielded_pipe_shotgun", "fg": 5456 }, + { "id": "overlay_wielded_pistol_flintlock", "fg": 5457 }, + { "id": "overlay_wielded_plasma_gun", "fg": 5458 }, + { "id": "overlay_wielded_plasma_rifle", "fg": 5459 }, + { "id": "overlay_wielded_ppsh", "fg": 5460 }, + { "id": "overlay_wielded_px4", "fg": 5461 }, + { "id": "overlay_wielded_px4_40", "fg": 5462 }, + { "id": "overlay_wielded_raging_bull", "fg": 5463 }, + { "id": "overlay_wielded_raging_judge", "fg": 5464 }, + { "id": "overlay_wielded_rebar_rifle", "fg": 5465 }, + { "id": "overlay_wielded_remington700_270", "fg": 5466 }, + { "id": "overlay_wielded_remington_700", "fg": 5467 }, + { "id": "overlay_wielded_remington_870", "fg": 5468 }, + { "id": "overlay_wielded_remington_870_breacher", "fg": 5469 }, + { "id": "overlay_wielded_remington_870_express", "fg": 5470 }, + { "id": "overlay_wielded_remington_870_var_browning_a5", "fg": 5471 }, + { "id": "overlay_wielded_remington_870_var_remington_1100", "fg": 5472 }, + { "id": "overlay_wielded_revolver_shotgun", "fg": 5473 }, + { "id": "overlay_wielded_rm103a_pistol", "fg": 5474 }, + { "id": "overlay_wielded_rm120c", "fg": 5475 }, + { "id": "overlay_wielded_rm20", "fg": 5476 }, + { "id": "overlay_wielded_rm2000_smg", "fg": 5477 }, + { "id": "overlay_wielded_rm228", "fg": 5478 }, + { "id": "overlay_wielded_rm298", "fg": 5479 }, + { "id": "overlay_wielded_rm451_flamethrower", "fg": 5480 }, + { "id": "overlay_wielded_rm51_assault_rifle", "fg": 5481 }, + { "id": "overlay_wielded_rm614_lmg", "fg": 5482 }, + { "id": "overlay_wielded_rm802", "fg": 5483 }, + { "id": "overlay_wielded_rm88_battle_rifle", "fg": 5484 }, + { "id": "overlay_wielded_ruger_1022", "fg": 5485 }, + { "id": "overlay_wielded_ruger_lcr_22", "fg": 5486 }, + { "id": "overlay_wielded_ruger_lcr_38", "fg": 5487 }, + { "id": "overlay_wielded_ruger_mini", "fg": 5488 }, + { "id": "overlay_wielded_ruger_redhawk", "fg": 5489 }, + { "id": "overlay_wielded_rugerlcp", "fg": 5490 }, + { "id": "overlay_wielded_saiga_12", "fg": 5491 }, + { "id": "overlay_wielded_saiga_410", "fg": 5492 }, + { "id": "overlay_wielded_savage_111f", "fg": 5493 }, + { "id": "overlay_wielded_scar_h", "fg": 5494 }, + { "id": "overlay_wielded_sharps", "fg": 5495 }, + { "id": "overlay_wielded_shotgun_410", "fg": 5496 }, + { "id": "overlay_wielded_shotgun_d", "fg": 5497 }, + { "id": "overlay_wielded_shotgun_s", "fg": 5498 }, + { "id": "overlay_wielded_sig552", "fg": 5499 }, + { "id": "overlay_wielded_sig_40", "fg": 5500 }, + { "id": "overlay_wielded_sig_mcx_rattler_sbr", "fg": 5501 }, + { "id": "overlay_wielded_sig_mosquito", "fg": 5502 }, + { "id": "overlay_wielded_sig_p230", "fg": 5503 }, + { "id": "overlay_wielded_skorpion_61", "fg": 5504 }, + { "id": "overlay_wielded_skorpion_82", "fg": 5505 }, + { "id": "overlay_wielded_sks", "fg": 5506 }, + { "id": "overlay_wielded_smg_40", "fg": 5508 }, + { "id": "overlay_wielded_smg_45", "fg": 5509 }, + { "id": "overlay_wielded_smg_9mm", "fg": 5510 }, + { "id": "overlay_wielded_sp2022 - Copia", "fg": 5511 }, + { "id": "overlay_wielded_sp2022", "fg": 5512 }, + { "id": "overlay_wielded_speargun", "fg": 5513 }, + { "id": "overlay_wielded_sten", "fg": 5514 }, + { "id": "overlay_wielded_steyr_aug", "fg": 5515 }, + { "id": "overlay_wielded_streetsweeper", "fg": 5516 }, + { "id": "overlay_wielded_surv_hand_cannon", "fg": 5517 }, + { "id": "overlay_wielded_surv_rocket_launcher", "fg": 5518 }, + { "id": "overlay_wielded_surv_six_shooter", "fg": 5519 }, + { "id": "overlay_wielded_survivor_special_700", "fg": 5520 }, + { "id": "overlay_wielded_sw629", "fg": 5521 }, + { "id": "overlay_wielded_sw_22", "fg": 5522 }, + { "id": "overlay_wielded_sw_500", "fg": 5523 }, + { "id": "overlay_wielded_sw_610", "fg": 5524 }, + { "id": "overlay_wielded_sw_619", "fg": 5525 }, + { "id": "overlay_wielded_tac50", "fg": 5526 }, + { "id": "overlay_wielded_taurus_spectrum", "fg": 5527 }, + { "id": "overlay_wielded_tavor_12", "fg": 5528 }, + { "id": "overlay_wielded_tec9", "fg": 5529 }, + { "id": "overlay_wielded_tihar", "fg": 5530 }, + { "id": "overlay_wielded_tokarev", "fg": 5531 }, + { "id": "overlay_wielded_tommygun", "fg": 5532 }, + { "id": "overlay_wielded_trex_gun", "fg": 5533 }, + { "id": "overlay_wielded_triple_launcher_simple", "fg": 5534 }, + { "id": "overlay_wielded_unbio_blaster_gun", "fg": 5535 }, + { "id": "overlay_wielded_usp_45", "fg": 5536 }, + { "id": "overlay_wielded_usp_45_var_mk23", "fg": 5537 }, + { "id": "overlay_wielded_usp_9mm", "fg": 5538 }, + { "id": "overlay_wielded_uzi", "fg": 5539 }, + { "id": "overlay_wielded_v29", "fg": 5540 }, + { "id": "overlay_wielded_v29_cheap", "fg": 5541 }, + { "id": "overlay_wielded_walther_ccp", "fg": 5542 }, + { "id": "overlay_wielded_walther_p22", "fg": 5543 }, + { "id": "overlay_wielded_walther_p38", "fg": 5544 }, + { "id": "overlay_wielded_walther_ppq_40", "fg": 5545 }, + { "id": "overlay_wielded_walther_ppq_45", "fg": 5546 }, + { "id": "overlay_wielded_walther_ppq_9mm", "fg": 5547 }, + { "id": "overlay_wielded_weatherby_5", "fg": 5548 }, + { "id": "overlay_wielded_win70", "fg": 5549 }, + { "id": "overlay_wielded_winchester_1887", "fg": 5550 }, + { "id": "overlay_wielded_winchester_1897", "fg": 5551 }, + { "id": "overlay_wielded_witness_10", "fg": 5552 }, + { "id": "overlay_wielded_xd_10", "fg": 5553 }, + { "id": "overlay_wielded_brazier", "fg": 5581 }, + { "id": "overlay_wielded_cot", "fg": 5587 }, + { "id": "overlay_female_wielded_bat_nerf", "fg": 5588 }, + { "id": "overlay_female_wielded_golf_bag", "fg": 5589 }, + { "id": "overlay_male_wielded_bat_nerf", "fg": 5590 }, + { "id": "overlay_male_wielded_golf_bag", "fg": 5591 }, + { "id": "overlay_female_wielded_radio_car", "fg": 5592 }, + { "id": "overlay_female_wielded_radio_car_box", "fg": 5593 }, + { "id": "overlay_female_wielded_radio_car_on", "fg": 5594 }, + { "id": "overlay_female_wielded_radio_car_wheel", "fg": 5595 }, + { "id": "overlay_female_wielded_radiocontrol", "fg": 5596 }, + { "id": "overlay_female_wielded_rc_car_box", "fg": 5597 }, + { "id": "overlay_male_wielded_radio_car", "fg": 5598 }, + { "id": "overlay_male_wielded_radio_car_box", "fg": 5599 }, + { "id": "overlay_male_wielded_radio_car_on", "fg": 5600 }, + { "id": "overlay_male_wielded_radio_car_wheel", "fg": 5601 }, + { "id": "overlay_male_wielded_radiocontrol", "fg": 5602 }, + { "id": "overlay_male_wielded_rc_car_box", "fg": 5603 }, + { "id": "overlay_wielded_atomic_lamp", "fg": 5604 }, + { "id": "overlay_wielded_atomic_lamp_off", "fg": 5605 }, + { "id": "overlay_wielded_l-stick", "fg": 5606 }, + { "id": "overlay_wielded_l-stick_on", "fg": 5607 }, + { "id": "overlay_wielded_cattlefodder", "fg": 5611 }, + { "id": "overlay_wielded_bullet_crossbow", "fg": 5625 }, + { "id": "overlay_wielded_compcrossbow", "fg": 5626 }, + { "id": "overlay_wielded_compositecrossbow", "fg": 5627 }, + { "id": "overlay_wielded_crossbow", "fg": 5628 }, + { "id": "overlay_wielded_hand_crossbow", "fg": 5629 }, + { "id": "overlay_wielded_huge_crossbow", "fg": 5630 }, + { "id": "overlay_wielded_rep_crossbow", "fg": 5631 }, + { "id": "overlay_wielded_hoboreel", "fg": 5645 }, + { "id": "overlay_wielded_grenade", "fg": 5650 }, + { "id": "overlay_wielded_grenade_act", "fg": 5651 }, + { "id": "overlay_wielded_grenade_emp", "fg": 5652 }, + { "id": "overlay_wielded_grenade_emp_act", "fg": 5653 }, + { "id": "overlay_wielded_grenade_inc", "fg": 5654 }, + { "id": "overlay_wielded_grenade_inc_act", "fg": 5655 }, + { "id": "overlay_wielded_pipebomb", "fg": 5656 }, + { "id": "overlay_wielded_pipebomb_act", "fg": 5657 }, + { "id": "overlay_wielded_scrambler", "fg": 5658 }, + { "id": "overlay_wielded_scrambler_act", "fg": 5659 }, + { "id": "overlay_wielded_smokebomb", "fg": 5660 }, + { "id": "overlay_wielded_smokebomb_act", "fg": 5661 }, + { "id": "overlay_female_wielded_manhole_cover", "fg": 5699 }, + { "id": "overlay_male_wielded_manhole_cover", "fg": 5700 }, + { "id": "overlay_wielded_eyedrops", "fg": 5707 }, + { "id": "overlay_female_wielded_baseball", "fg": 5717 }, + { "id": "overlay_female_wielded_basketball", "fg": 5718 }, + { "id": "overlay_female_wielded_beach_volleyball", "fg": 5719 }, + { "id": "overlay_female_wielded_mre_beef_box", "fg": 5720 }, + { "id": "overlay_female_wielded_puck", "fg": 5721 }, + { "id": "overlay_male_wielded_baseball", "fg": 5722 }, + { "id": "overlay_male_wielded_basketball", "fg": 5723 }, + { "id": "overlay_male_wielded_beach_volleyball", "fg": 5724 }, + { "id": "overlay_male_wielded_mre_beef_box", "fg": 5725 }, + { "id": "overlay_male_wielded_puck", "fg": 5726 }, + { "id": "overlay_wielded_PR24-extended", "fg": 5727 }, + { "id": "overlay_wielded_PR24-retracted", "fg": 5728 }, + { "id": "overlay_wielded_baton-extended", "fg": 5729 }, + { "id": "overlay_wielded_baton", "fg": 5730 }, + { "id": "overlay_wielded_battery_car", "fg": 5731 }, + { "id": "overlay_wielded_bowling_ball", "fg": 5732 }, + { "id": "overlay_wielded_cell_phone", "fg": 5733 }, + { "id": "overlay_wielded_cell_phone_flashlight", "fg": 5734 }, + { "id": "overlay_wielded_codeine", "fg": 5735 }, + { "id": "overlay_wielded_flask_hip", "fg": 5736 }, + { "id": "overlay_wielded_football", "fg": 5737 }, + { "id": "overlay_wielded_golf_ball", "fg": 5738 }, + { "id": "overlay_wielded_indoor_volleyball", "fg": 5739 }, + { "id": "overlay_wielded_misc_repairkit", "fg": 5740 }, + { "id": "overlay_wielded_portable_game", "fg": 5741 }, + { "id": "overlay_wielded_two_way_radio", "fg": 5743 }, + { "id": "overlay_female_wielded_pool_cue", "fg": 5759 }, + { "id": "overlay_male_wielded_pool_cue", "fg": 5760 }, + { "id": "overlay_female_wielded_i_staff", "fg": 5768 }, + { "id": "overlay_female_wielded_q_staff", "fg": 5769 }, + { "id": "overlay_female_wielded_shock_staff", "fg": 5770 }, + { "id": "overlay_male_wielded_i_staff", "fg": 5771 }, + { "id": "overlay_male_wielded_q_staff", "fg": 5772 }, + { "id": "overlay_male_wielded_shock_staff", "fg": 5773 }, + { "id": "overlay_female_wielded_cigar", "fg": 5785 }, + { "id": "overlay_female_wielded_cigar_butt", "fg": 5786 }, + { "id": "overlay_male_wielded_cigar", "fg": 5794 }, + { "id": "overlay_male_wielded_cigar_butt", "fg": 5795 }, + { "id": "overlay_female_wielded_cig", "fg": 5803 }, + { "id": "overlay_female_wielded_cig_butt", "fg": 5804 }, + { "id": "overlay_male_wielded_cig", "fg": 5812 }, + { "id": "overlay_male_wielded_cig_butt", "fg": 5813 }, + { "id": "overlay_female_wielded_joint", "fg": 5821 }, + { "id": "overlay_female_wielded_joint_roach", "fg": 5829 }, + { "id": "overlay_male_wielded_joint", "fg": 5830 }, + { "id": "overlay_male_wielded_joint_roach", "fg": 5838 }, + { "id": "overlay_wielded_bokken", "fg": 5888 }, + { "id": "overlay_wielded_digging_stick", "fg": 5897 }, + { "id": "overlay_wielded_hoe", "fg": 5900 }, + { "id": "overlay_female_worn_aep_suit", "fg": 6008 }, + { "id": "overlay_female_worn_power_armor_basic", "fg": 6009 }, + { "id": "overlay_female_worn_power_armor_heavy", "fg": 6010 }, + { "id": "overlay_female_worn_power_armor_helmet_basic", "fg": 6011 }, + { "id": "overlay_female_worn_power_armor_helmet_heavy", "fg": 6012 }, + { "id": "overlay_female_worn_power_armor_helmet_light", "fg": 6013 }, + { "id": "overlay_female_worn_power_armor_light", "fg": 6014 }, + { "id": "overlay_female_worn_rm13_armor", "fg": 6015 }, + { "id": "overlay_female_worn_rm13_armor_on", "fg": 6016 }, + { "id": "overlay_male_worn_aep_suit", "fg": 6017 }, + { "id": "overlay_male_worn_power_armor_basic", "fg": 6018 }, + { "id": "overlay_male_worn_power_armor_heavy", "fg": 6019 }, + { "id": "overlay_male_worn_power_armor_helmet_basic", "fg": 6020 }, + { "id": "overlay_male_worn_power_armor_helmet_heavy", "fg": 6021 }, + { "id": "overlay_male_worn_power_armor_helmet_light", "fg": 6022 }, + { "id": "overlay_male_worn_power_armor_light", "fg": 6023 }, + { "id": "overlay_male_worn_rm13_armor", "fg": 6024 }, + { "id": "overlay_male_worn_rm13_armor_on", "fg": 6025 }, + { "id": "overlay_female_worn_chainmail_suit_faraday", "fg": 6040 }, + { "id": "overlay_female_worn_pot_helmet", "fg": 6041 }, + { "id": "overlay_male_worn_chainmail_suit_faraday", "fg": 6042 }, + { "id": "overlay_male_worn_pot_helmet", "fg": 6043 }, + { "id": "overlay_female_worn_duffelbag", "fg": 6064 }, + { "id": "overlay_female_worn_runner_bag", "fg": 6067 }, + { "id": "overlay_male_worn_duffelbag", "fg": 6068 }, + { "id": "overlay_male_worn_runner_bag", "fg": 6071 }, + { "id": "overlay_female_worn_chestrig", "fg": 6091 }, + { "id": "overlay_female_worn_grenadebandolier", "fg": 6092 }, + { "id": "overlay_female_worn_mbag", "fg": 6093 }, + { "id": "overlay_female_worn_slingpack", "fg": 6094 }, + { "id": "overlay_male_worn_chestrig", "fg": 6095 }, + { "id": "overlay_male_worn_grenadebandolier", "fg": 6096 }, + { "id": "overlay_male_worn_mbag", "fg": 6097 }, + { "id": "overlay_male_worn_slingpack", "fg": 6098 }, + { "id": "overlay_female_worn_subsuit_xl", "fg": 6119 }, + { "id": "overlay_male_worn_subsuit_xl", "fg": 6120 }, + { "id": "overlay_worn_wolfsuit", "fg": 6121 }, + { "id": "overlay_female_worn_chestwrap_leather", "fg": 6147 }, + { "id": "overlay_female_worn_tights", "fg": 6148 }, + { "id": "overlay_male_worn_chestwrap_leather", "fg": 6149 }, + { "id": "overlay_male_worn_tights", "fg": 6150 }, + { "id": "overlay_female_worn_copper_necklace", "fg": 6151 }, + { "id": "overlay_female_worn_gold_necklace", "fg": 6152 }, + { "id": "overlay_female_worn_platinum_necklace", "fg": 6153 }, + { "id": "overlay_female_worn_silver_necklace", "fg": 6154 }, + { "id": "overlay_male_worn_copper_necklace", "fg": 6155 }, + { "id": "overlay_male_worn_gold_necklace", "fg": 6156 }, + { "id": "overlay_male_worn_platinum_necklace", "fg": 6157 }, + { "id": "overlay_male_worn_silver_necklace", "fg": 6158 }, + { "id": "overlay_female_worn_nanoskirt", "fg": 6159 }, + { "id": "overlay_male_worn_nanoskirt", "fg": 6160 }, + { "id": "overlay_female_worn_motorbike_armor", "fg": 6161 }, + { "id": "overlay_male_worn_motorbike_armor", "fg": 6162 }, + { "id": "overlay_female_worn_headscarf", "fg": 6163 }, + { "id": "overlay_female_worn_long_knit_scarf", "fg": 6164 }, + { "id": "overlay_female_worn_long_patchwork_scarf", "fg": 6165 }, + { "id": "overlay_female_worn_marloss_scarf", "fg": 6166 }, + { "id": "overlay_female_worn_patchwork_scarf", "fg": 6167 }, + { "id": "overlay_female_worn_scarf_fur", "fg": 6168 }, + { "id": "overlay_female_worn_scarf_fur_long", "fg": 6169 }, + { "id": "overlay_male_worn_headscarf", "fg": 6170 }, + { "id": "overlay_male_worn_long_knit_scarf", "fg": 6171 }, + { "id": "overlay_male_worn_long_patchwork_scarf", "fg": 6172 }, + { "id": "overlay_male_worn_marloss_scarf", "fg": 6173 }, + { "id": "overlay_male_worn_patchwork_scarf", "fg": 6174 }, + { "id": "overlay_male_worn_scarf_fur", "fg": 6175 }, + { "id": "overlay_male_worn_scarf_fur_long", "fg": 6176 }, + { "id": "overlay_male_worn_scarf_long", "fg": 6177 }, + { "id": "overlay_female_worn_scuba_tank", "fg": 6188 }, + { "id": "overlay_female_worn_scuba_tank_on", "fg": 6189 }, + { "id": "overlay_female_worn_small_scuba_tank", "fg": 6190 }, + { "id": "overlay_female_worn_small_scuba_tank_on", "fg": 6191 }, + { "id": "overlay_female_worn_wetsuit", "fg": 6192 }, + { "id": "overlay_female_worn_wetsuit_gloves", "fg": 6193 }, + { "id": "overlay_female_worn_wetsuit_hood", "fg": 6194 }, + { "id": "overlay_female_worn_wetsuit_spring", "fg": 6195 }, + { "id": "overlay_male_worn_scuba_tank", "fg": 6196 }, + { "id": "overlay_male_worn_scuba_tank_on", "fg": 6197 }, + { "id": "overlay_male_worn_small_scuba_tank", "fg": 6198 }, + { "id": "overlay_male_worn_small_scuba_tank_on", "fg": 6199 }, + { "id": "overlay_male_worn_wetsuit", "fg": 6200 }, + { "id": "overlay_male_worn_wetsuit_gloves", "fg": 6201 }, + { "id": "overlay_male_worn_wetsuit_hood", "fg": 6202 }, + { "id": "overlay_male_worn_wetsuit_spring", "fg": 6203 }, + { "id": "overlay_worn_wetsuit_booties", "fg": 6204 }, + { "id": "overlay_female_worn_fitover_sunglasses", "fg": 6232 }, + { "id": "overlay_male_worn_fitover_sunglasses", "fg": 6233 }, + { "id": "overlay_female_worn_golf_bag", "fg": 6270 }, + { "id": "overlay_male_worn_golf_bag", "fg": 6271 }, + { "id": "overlay_female_worn_bandana_head", "fg": 6308 }, + { "id": "overlay_female_worn_hat_chef", "fg": 6309 }, + { "id": "overlay_female_worn_tricorne", "fg": 6310 }, + { "id": "overlay_male_worn_bandana_head", "fg": 6311 }, + { "id": "overlay_male_worn_hat_chef", "fg": 6312 }, + { "id": "overlay_male_worn_tricorne", "fg": 6313 }, + { "id": "overlay_female_worn_bead_ear", "fg": 6369 }, + { "id": "overlay_female_worn_copper_ear", "fg": 6370 }, + { "id": "overlay_female_worn_hairpin", "fg": 6372 }, + { "id": "overlay_male_worn_bead_ear", "fg": 6375 }, + { "id": "overlay_male_worn_copper_ear", "fg": 6376 }, + { "id": "overlay_male_worn_hairpin", "fg": 6378 }, + { "id": "overlay_female_worn_antarvasa", "fg": 6384 }, + { "id": "overlay_female_worn_kasaya", "fg": 6385 }, + { "id": "overlay_female_worn_samghati", "fg": 6386 }, + { "id": "overlay_female_worn_uttarasanga", "fg": 6387 }, + { "id": "overlay_male_worn_antarvasa", "fg": 6388 }, + { "id": "overlay_male_worn_kasaya", "fg": 6389 }, + { "id": "overlay_male_worn_samghati", "fg": 6390 }, + { "id": "overlay_male_worn_uttarasanga", "fg": 6391 }, + { "id": "overlay_female_worn_blindfold", "fg": 6414 }, + { "id": "overlay_male_worn_blindfold", "fg": 6415 }, + { "id": "overlay_female_worn_tourniquet_lower", "fg": 6436 }, + { "id": "overlay_female_worn_tourniquet_upper", "fg": 6437 }, + { "id": "overlay_female_worn_wristwatch", "fg": 6438 }, + { "id": "overlay_male_worn_tourniquet_lower", "fg": 6439 }, + { "id": "overlay_male_worn_tourniquet_upper", "fg": 6440 }, + { "id": "overlay_male_worn_wristwatch", "fg": 6441 }, + { "id": "overlay_worn_purse", "fg": 6442 }, + { "id": "overlay_worn_rad_badge", "fg": 6443 }, + { "id": "overlay_female_worn_survivor_goggles", "fg": 6557 }, + { "id": "overlay_male_worn_survivor_goggles", "fg": 6558 }, + { "id": "overlay_female_worn_survivor_duffel_bag", "fg": 6617 }, + { "id": "overlay_female_worn_survivor_pack", "fg": 6618 }, + { "id": "overlay_female_worn_survivor_rucksack", "fg": 6619 }, + { "id": "overlay_female_worn_survivor_runner_pack", "fg": 6620 }, + { "id": "overlay_male_worn_survivor_duffel_bag", "fg": 6621 }, + { "id": "overlay_male_worn_survivor_pack", "fg": 6622 }, + { "id": "overlay_male_worn_survivor_rucksack", "fg": 6623 }, + { "id": "overlay_male_worn_survivor_runner_pack", "fg": 6624 } ] }, { "file": "human_body_plus.png", - "//": "range 6656 to 7199", + "//": "range 6720 to 7215", "sprite_width": 32, "sprite_height": 48, "sprite_offset_x": 0, "sprite_offset_y": -16, "tiles": [ - { "id": "npc_female", "fg": 6802, "bg": 6676 }, - { "id": "npc_male", "fg": 6803, "bg": 6676 }, - { "id": "player_female", "fg": 6802, "bg": 6676 }, - { "id": "player_male", "fg": 6803, "bg": 6676 }, - { "id": "mon_zombie_phase_skulker", "fg": 6658, "bg": 6676 }, - { "id": "mon_zombie_phase_shrike", "fg": 6657, "bg": 6676 }, - { "id": "mon_broken_cyborg", "fg": 6659, "bg": 6676 }, - { "id": "mon_prototype_cyborg", "fg": 6660, "bg": 6676 }, - { "id": "mon_boomer_fungus", "fg": 6662, "bg": 6676 }, - { "id": "mon_zombie_soldier_acid_1", "fg": 6663, "bg": 6676 }, + { "id": "npc_female", "fg": 6866, "bg": 6740 }, + { "id": "npc_male", "fg": 6867, "bg": 6740 }, + { "id": "player_female", "fg": 6866, "bg": 6740 }, + { "id": "player_male", "fg": 6867, "bg": 6740 }, + { "id": "mon_zombie_phase_skulker", "fg": 6722, "bg": 6740 }, + { "id": "mon_zombie_phase_shrike", "fg": 6721, "bg": 6740 }, + { "id": "mon_broken_cyborg", "fg": 6723, "bg": 6740 }, + { "id": "mon_prototype_cyborg", "fg": 6724, "bg": 6740 }, + { "id": "mon_boomer_fungus", "fg": 6726, "bg": 6740 }, + { "id": "mon_zombie_soldier_acid_1", "fg": 6727, "bg": 6740 }, { "id": "mon_zombie_reenactor", - "fg": [ { "weight": 2, "sprite": 6672 }, { "weight": 2, "sprite": 6671 }, { "weight": 1, "sprite": 6673 } ], - "bg": 6676 - }, - { "id": "mon_zombie_prisoner_tough", "fg": 6670, "bg": 6676 }, - { "id": "mon_zombie_prisoner_fat", "fg": 6669, "bg": 6676 }, - { "id": "mon_zombie_prisoner_brute", "fg": 6668, "bg": 6676 }, - { "id": "mon_zombie_resort_bouncer", "fg": 6674, "bg": 6676 }, - { "id": "mon_irradiated_wanderer_1", "fg": 6664, "bg": 6676 }, - { "id": "mon_irradiated_wanderer_2", "fg": 6665, "bg": 6676 }, - { "id": "mon_irradiated_wanderer_3", "fg": 6666, "bg": 6676 }, - { "id": "mon_irradiated_wanderer_4", "fg": 6667, "bg": 6676 }, + "fg": [ { "weight": 2, "sprite": 6736 }, { "weight": 2, "sprite": 6735 }, { "weight": 1, "sprite": 6737 } ], + "bg": 6740 + }, + { "id": "mon_zombie_prisoner_tough", "fg": 6734, "bg": 6740 }, + { "id": "mon_zombie_prisoner_fat", "fg": 6733, "bg": 6740 }, + { "id": "mon_zombie_prisoner_brute", "fg": 6732, "bg": 6740 }, + { "id": "mon_zombie_resort_bouncer", "fg": 6738, "bg": 6740 }, + { "id": "mon_irradiated_wanderer_1", "fg": 6728, "bg": 6740 }, + { "id": "mon_irradiated_wanderer_2", "fg": 6729, "bg": 6740 }, + { "id": "mon_irradiated_wanderer_3", "fg": 6730, "bg": 6740 }, + { "id": "mon_irradiated_wanderer_4", "fg": 6731, "bg": 6740 }, { "id": "mon_feral_human_crowbar", - "fg": [ { "weight": 100, "sprite": 6679 }, { "weight": 50, "sprite": 6680 } ], - "bg": 6676 + "fg": [ { "weight": 100, "sprite": 6743 }, { "weight": 50, "sprite": 6744 } ], + "bg": 6740 }, { "id": "mon_feral_human_pipe", - "fg": [ { "weight": 100, "sprite": 6683 }, { "weight": 50, "sprite": 6684 } ], - "bg": 6676 + "fg": [ { "weight": 100, "sprite": 6747 }, { "weight": 50, "sprite": 6748 } ], + "bg": 6740 }, { "id": "mon_feral_human_axe", - "fg": [ { "weight": 100, "sprite": 6677 }, { "weight": 50, "sprite": 6678 } ], - "bg": 6676 - }, - { "id": "mon_feral_labsecurity_9mm", "fg": 6681, "bg": 6676 }, - { "id": "mon_feral_labsecurity_flashlight", "fg": 6682, "bg": 6676 }, - { "id": "mon_feral_scientist_scalpel", "fg": 6685, "bg": 6676 }, - { "id": "mon_zombie_grabber", "fg": 6686, "bg": 6676 }, - { "id": "mon_zombie_kevlar_1", "fg": 6687, "bg": 6676 }, - { "id": "mon_bee", "fg": 6688, "bg": 6676 }, - { "id": "mon_blank", "fg": 6689, "bg": 6676 }, - { "id": "mon_boomer", "fg": 6690, "bg": 6676 }, - { "id": "mon_charred_nightmare", "fg": 6691, "bg": 6676 }, - { "id": "mon_cougar", "fg": 6692, "bg": 6676 }, - { "id": "mon_dementia", "fg": 6693, "bg": 6676 }, - { "id": "mon_dermatik", "fg": 6694, "bg": 6676 }, - { "id": "mon_dragonfly_giant", "fg": 6695, "bg": 6676 }, - { "id": "mon_dragonfly_mega", "fg": 6696, "bg": 6676 }, - { "id": "mon_flesh_golem", "fg": 6697, "bg": 6676 }, - { "id": "mon_fleshy_shambler", "fg": 6698, "bg": 6676 }, - { "id": "mon_fly", "fg": 6699, "bg": 6676 }, - { "id": "mon_gozu", "fg": 6700, "bg": 6676 }, - { "id": "mon_hallu_mannequin", "fg": 6701, "bg": 6676 }, - { "id": "mon_mannequin_decoy", "fg": 6701, "bg": 6676 }, - { "id": "mon_hallu_mom", "fg": 6702, "bg": 6676 }, - { "id": "mon_hologram", "fg": 6703, "bg": 6676 }, + "fg": [ { "weight": 100, "sprite": 6741 }, { "weight": 50, "sprite": 6742 } ], + "bg": 6740 + }, + { "id": "mon_feral_labsecurity_9mm", "fg": 6745, "bg": 6740 }, + { "id": "mon_feral_labsecurity_flashlight", "fg": 6746, "bg": 6740 }, + { "id": "mon_feral_scientist_scalpel", "fg": 6749, "bg": 6740 }, + { "id": "mon_zombie_grabber", "fg": 6750, "bg": 6740 }, + { "id": "mon_zombie_kevlar_1", "fg": 6751, "bg": 6740 }, + { "id": "mon_bee", "fg": 6752, "bg": 6740 }, + { "id": "mon_blank", "fg": 6753, "bg": 6740 }, + { "id": "mon_boomer", "fg": 6754, "bg": 6740 }, + { "id": "mon_charred_nightmare", "fg": 6755, "bg": 6740 }, + { "id": "mon_cougar", "fg": 6756, "bg": 6740 }, + { "id": "mon_dementia", "fg": 6757, "bg": 6740 }, + { "id": "mon_dermatik", "fg": 6758, "bg": 6740 }, + { "id": "mon_dragonfly_giant", "fg": 6759, "bg": 6740 }, + { "id": "mon_dragonfly_mega", "fg": 6760, "bg": 6740 }, + { "id": "mon_flesh_golem", "fg": 6761, "bg": 6740 }, + { "id": "mon_fleshy_shambler", "fg": 6762, "bg": 6740 }, + { "id": "mon_fly", "fg": 6763, "bg": 6740 }, + { "id": "mon_gozu", "fg": 6764, "bg": 6740 }, + { "id": "mon_hallu_mannequin", "fg": 6765, "bg": 6740 }, + { "id": "mon_mannequin_decoy", "fg": 6765, "bg": 6740 }, + { "id": "mon_hallu_mom", "fg": 6766, "bg": 6740 }, + { "id": "mon_hologram", "fg": 6767, "bg": 6740 }, { "id": "mon_hunting_horror", - "fg": [ { "weight": 1, "sprite": 6704 }, { "weight": 1, "sprite": 6705 }, { "weight": 1, "sprite": 6706 } ], - "bg": 6676 - }, - { "id": "mon_marloss_zealot_f", "fg": 6707, "bg": 6676 }, - { "id": "mon_marloss_zealot_m", "fg": 6708, "bg": 6676 }, - { "id": "mon_mutant_experimental", "fg": 6709, "bg": 6676 }, - { "id": "mon_one_eye", "fg": 6710, "bg": 6676 }, - { "id": "mon_riotbot", "fg": 6711, "bg": 6676 }, - { "id": "mon_skeleton", "fg": 6712, "bg": 6676 }, - { "id": "mon_skeleton_brute", "fg": 6713, "bg": 6676 }, + "fg": [ { "weight": 1, "sprite": 6768 }, { "weight": 1, "sprite": 6769 }, { "weight": 1, "sprite": 6770 } ], + "bg": 6740 + }, + { "id": "mon_marloss_zealot_f", "fg": 6771, "bg": 6740 }, + { "id": "mon_marloss_zealot_m", "fg": 6772, "bg": 6740 }, + { "id": "mon_mutant_experimental", "fg": 6773, "bg": 6740 }, + { "id": "mon_one_eye", "fg": 6774, "bg": 6740 }, + { "id": "mon_riotbot", "fg": 6775, "bg": 6740 }, + { "id": "mon_skeleton", "fg": 6776, "bg": 6740 }, + { "id": "mon_skeleton_brute", "fg": 6777, "bg": 6740 }, { "id": [ "corpse_mon_skeleton", "corpse_mon_skeleton_brute" ], "fg": 2591 }, - { "id": "mon_zombie_acidic", "fg": 6714, "bg": 6676 }, - { "id": "mon_zombie_corrosive", "fg": 6715, "bg": 6676 }, - { "id": "mon_zombie_spitter", "fg": 6716, "bg": 6676 }, - { "id": "mon_zombie_bio_op", "fg": 6717, "bg": 6676 }, - { "id": "mon_zombie_bio_op2", "fg": 6718, "bg": 6676 }, + { "id": "mon_zombie_acidic", "fg": 6778, "bg": 6740 }, + { "id": "mon_zombie_corrosive", "fg": 6779, "bg": 6740 }, + { "id": "mon_zombie_spitter", "fg": 6780, "bg": 6740 }, + { "id": "mon_zombie_bio_op", "fg": 6781, "bg": 6740 }, + { "id": "mon_zombie_bio_op2", "fg": 6782, "bg": 6740 }, { "id": "mon_zombie_brute", "fg": [ - { "weight": 100, "sprite": 6719 }, - { "weight": 100, "sprite": 6720 }, - { "weight": 50, "sprite": 6721 }, - { "weight": 50, "sprite": 6722 } + { "weight": 100, "sprite": 6783 }, + { "weight": 100, "sprite": 6784 }, + { "weight": 50, "sprite": 6785 }, + { "weight": 50, "sprite": 6786 } ], - "bg": 6675 + "bg": 6739 }, - { "id": "mon_zombie_ears", "fg": 6723, "bg": 6676 }, + { "id": "mon_zombie_ears", "fg": 6787, "bg": 6740 }, { "id": "mon_zombie_fat", - "fg": [ { "weight": 1, "sprite": 6724 }, { "weight": 1, "sprite": 6725 } ], - "bg": 6676 + "fg": [ { "weight": 1, "sprite": 6788 }, { "weight": 1, "sprite": 6789 } ], + "bg": 6740 }, - { "id": "mon_zombie_fiend", "fg": 6726, "bg": 6676 }, + { "id": "mon_zombie_fiend", "fg": 6790, "bg": 6740 }, { "id": "mon_zombie_gasbag", - "fg": [ { "weight": 1, "sprite": 6727 }, { "weight": 1, "sprite": 6728 } ], - "bg": 6676 + "fg": [ { "weight": 1, "sprite": 6791 }, { "weight": 1, "sprite": 6792 } ], + "bg": 6740 }, { "id": "mon_zombie_grappler", - "fg": [ { "weight": 1, "sprite": 6729 }, { "weight": 1, "sprite": 6730 } ], - "bg": 6676 + "fg": [ { "weight": 1, "sprite": 6793 }, { "weight": 1, "sprite": 6794 } ], + "bg": 6740 }, - { "id": "mon_zombie_hammer_hands", "fg": 6731, "bg": 6675 }, + { "id": "mon_zombie_hammer_hands", "fg": 6795, "bg": 6739 }, { "id": "mon_zombie_brainless", - "fg": [ { "weight": 100, "sprite": 6733 }, { "weight": 100, "sprite": 6734 } ], - "bg": 6676 + "fg": [ { "weight": 100, "sprite": 6797 }, { "weight": 100, "sprite": 6798 } ], + "bg": 6740 }, - { "id": "mon_zombie_hunter", "fg": 6735, "bg": 6676 }, - { "id": "mon_zombie_predator", "fg": 6736, "bg": 6676 }, + { "id": "mon_zombie_hunter", "fg": 6799, "bg": 6740 }, + { "id": "mon_zombie_predator", "fg": 6800, "bg": 6740 }, { "id": "mon_zombie_mancroc", - "fg": [ { "weight": 100, "sprite": 6737 }, { "weight": 100, "sprite": 6738 } ], - "bg": 6676 + "fg": [ { "weight": 100, "sprite": 6801 }, { "weight": 100, "sprite": 6802 } ], + "bg": 6740 }, - { "id": "mon_zombie_plated", "fg": 6739, "bg": 6675 }, + { "id": "mon_zombie_plated", "fg": 6803, "bg": 6739 }, { "id": "mon_zombie_resort_dancer", - "fg": [ { "weight": 1, "sprite": 6740 }, { "weight": 1, "sprite": 6741 } ], - "bg": 6676 + "fg": [ { "weight": 1, "sprite": 6804 }, { "weight": 1, "sprite": 6805 } ], + "bg": 6740 }, { "id": "mon_zombie_resort_staff", - "fg": [ { "weight": 1, "sprite": 6742 }, { "weight": 1, "sprite": 6743 } ], - "bg": 6676 + "fg": [ { "weight": 1, "sprite": 6806 }, { "weight": 1, "sprite": 6807 } ], + "bg": 6740 }, - { "id": "mon_zombie_runner", "fg": 6744, "bg": 6676 }, - { "id": "mon_zombie_rust", "fg": 6745, "bg": 6676 }, - { "id": "mon_zombie_scorched", "fg": 6746, "bg": 6676 }, - { "id": "mon_zombie_shell", "fg": 6748, "bg": 6676 }, - { "id": "mon_zombie_skull", "fg": 6749, "bg": 6676 }, + { "id": "mon_zombie_runner", "fg": 6808, "bg": 6740 }, + { "id": "mon_zombie_rust", "fg": 6809, "bg": 6740 }, + { "id": "mon_zombie_scorched", "fg": 6810, "bg": 6740 }, + { "id": "mon_zombie_shell", "fg": 6812, "bg": 6740 }, + { "id": "mon_zombie_skull", "fg": 6813, "bg": 6740 }, { "id": "mon_zombie_soldier", - "fg": [ { "weight": 100, "sprite": 6753 }, { "weight": 100, "sprite": 6754 } ], - "bg": 6676 + "fg": [ { "weight": 100, "sprite": 6817 }, { "weight": 100, "sprite": 6818 } ], + "bg": 6740 }, - { "id": "mon_zombie_military_pilot", "fg": 6752, "bg": 6676 }, - { "id": [ "corpse_mon_zombie_soldier", "corpse_mon_zombie_military_pilot" ], "fg": 6750 }, - { "id": "mon_zombie_static", "fg": 6755, "bg": 6676 }, - { "id": "mon_zombie_survivor", "fg": 6756, "bg": 6676 }, - { "id": "mon_zombie_survivor_elite", "fg": 6757, "bg": 6676 }, + { "id": "mon_zombie_military_pilot", "fg": 6816, "bg": 6740 }, + { "id": [ "corpse_mon_zombie_soldier", "corpse_mon_zombie_military_pilot" ], "fg": 6814 }, + { "id": "mon_zombie_static", "fg": 6819, "bg": 6740 }, + { "id": "mon_zombie_survivor", "fg": 6820, "bg": 6740 }, + { "id": "mon_zombie_survivor_elite", "fg": 6821, "bg": 6740 }, { "id": [ "mon_zombie_swimmer_base", "mon_zombie_swimmer" ], "fg": [ - { "weight": 200, "sprite": 6759 }, - { "weight": 200, "sprite": 6760 }, - { "weight": 200, "sprite": 6761 }, - { "weight": 200, "sprite": 6762 }, - { "weight": 200, "sprite": 6763 }, - { "weight": 1, "sprite": 6758 } + { "weight": 200, "sprite": 6823 }, + { "weight": 200, "sprite": 6824 }, + { "weight": 200, "sprite": 6825 }, + { "weight": 200, "sprite": 6826 }, + { "weight": 200, "sprite": 6827 }, + { "weight": 1, "sprite": 6822 } ], - "bg": 6676 + "bg": 6740 }, { "id": "mon_zombie", "fg": [ - { "weight": 100, "sprite": 6770 }, - { "weight": 150, "sprite": 6771 }, - { "weight": 100, "sprite": 6772 }, - { "weight": 100, "sprite": 6773 }, - { "weight": 150, "sprite": 6774 } + { "weight": 100, "sprite": 6834 }, + { "weight": 150, "sprite": 6835 }, + { "weight": 100, "sprite": 6836 }, + { "weight": 100, "sprite": 6837 }, + { "weight": 150, "sprite": 6838 } ], - "bg": 6676 + "bg": 6740 }, - { "id": "mon_zombie_hazmat", "fg": 6777, "bg": 6676 }, - { "id": "mon_zombie_fireman", "fg": 6776, "bg": 6676 }, + { "id": "mon_zombie_hazmat", "fg": 6841, "bg": 6740 }, + { "id": "mon_zombie_fireman", "fg": 6840, "bg": 6740 }, { "id": "mon_zombie_scientist", - "fg": [ { "weight": 1, "sprite": 6779 }, { "weight": 1, "sprite": 6780 } ], - "bg": 6676 + "fg": [ { "weight": 1, "sprite": 6843 }, { "weight": 1, "sprite": 6844 } ], + "bg": 6740 }, - { "id": "mon_zombie_cop", "fg": 6775, "bg": 6676 }, - { "id": "mon_zombie_labsecurity", "fg": 6778, "bg": 6676 }, + { "id": "mon_zombie_cop", "fg": 6839, "bg": 6740 }, + { "id": "mon_zombie_labsecurity", "fg": 6842, "bg": 6740 }, { "id": "mon_zombie_tough", - "fg": [ { "weight": 1, "sprite": 6783 }, { "weight": 1, "sprite": 6784 } ], - "bg": 6676 + "fg": [ { "weight": 1, "sprite": 6847 }, { "weight": 1, "sprite": 6848 } ], + "bg": 6740 }, { "id": "mon_zombie_technician", - "fg": [ { "weight": 1, "sprite": 6781 }, { "weight": 1, "sprite": 6782 } ], - "bg": 6676 + "fg": [ { "weight": 1, "sprite": 6845 }, { "weight": 1, "sprite": 6846 } ], + "bg": 6740 }, { "id": [ @@ -10157,11 +10322,11 @@ "corpse_mon_zombie_prisoner", "corpse_mon_zombie_winged" ], - "fg": 6764 + "fg": 6828 }, - { "id": "corpse_mon_zombie_scientist", "fg": 6766 }, - { "id": [ "corpse_mon_zombie_technician", "corpse_mon_zombie_hazmat" ], "fg": 6767 }, - { "id": [ "corpse_mon_zombie_cop", "corpse_mon_zombie_labsecurity" ], "fg": 6765 }, + { "id": "corpse_mon_zombie_scientist", "fg": 6830 }, + { "id": [ "corpse_mon_zombie_technician", "corpse_mon_zombie_hazmat" ], "fg": 6831 }, + { "id": [ "corpse_mon_zombie_cop", "corpse_mon_zombie_labsecurity" ], "fg": 6829 }, { "id": [ "corpse_mon_zombie_tough", @@ -10177,571 +10342,432 @@ "corpse_mon_zombie_soldier_blackops_2", "corpse_mon_zombie_soldier_blackops_1" ], - "fg": 6768 - }, - { "id": "mon_zombie_winged", "fg": 6785, "bg": 6676 }, - { "id": "mon_zougar", "fg": 6786, "bg": 6676 }, - { "id": "mon_zougar_hunter", "fg": 6787, "bg": 6676 }, - { "id": "mon_copbot", "fg": 6789, "bg": 6676 }, - { "id": "mon_zombie_screecher", "fg": 6790, "bg": 6676 }, - { "id": "mon_zombie_shrieker", "fg": 6791, "bg": 6676 }, - { "id": "mon_zombie_swat", "fg": 6792, "bg": 6676 }, - { "id": "mon_zombie_thorny", "fg": 6793, "bg": 6676 }, - { "id": "mon_zombie_flamer", "fg": 6794, "bg": 6676 }, + "fg": 6832 + }, + { "id": "mon_zombie_winged", "fg": 6849, "bg": 6740 }, + { "id": "mon_zougar", "fg": 6850, "bg": 6740 }, + { "id": "mon_zougar_hunter", "fg": 6851, "bg": 6740 }, + { "id": "mon_copbot", "fg": 6853, "bg": 6740 }, + { "id": "mon_zombie_screecher", "fg": 6854, "bg": 6740 }, + { "id": "mon_zombie_shrieker", "fg": 6855, "bg": 6740 }, + { "id": "mon_zombie_swat", "fg": 6856, "bg": 6740 }, + { "id": "mon_zombie_thorny", "fg": 6857, "bg": 6740 }, + { "id": "mon_zombie_flamer", "fg": 6858, "bg": 6740 }, { "id": "mon_zombie_prisoner", - "fg": [ { "weight": 1, "sprite": 6795 }, { "weight": 1, "sprite": 6796 }, { "weight": 1, "sprite": 6797 } ], - "bg": 6676 - }, - { "id": "overlay_female_mutation_SKIN_MEDIUM", "fg": 6802 }, - { "id": "overlay_male_mutation_SKIN_MEDIUM", "fg": 6803 }, - { "id": "overlay_female_wielded_teleumbrella", "fg": 6805 }, - { "id": "overlay_male_wielded_teleumbrella", "fg": 6806 }, - { "id": "overlay_female_wielded_umbrella", "fg": 6805 }, - { "id": "overlay_male_wielded_umbrella", "fg": 6806 }, - { "id": "overlay_male_worn_welding_mask_raised", "fg": 6810 }, - { "id": "overlay_female_worn_mossberg_500", "fg": 6811 }, - { "id": "overlay_male_worn_mossberg_500", "fg": 6812 }, + "fg": [ { "weight": 1, "sprite": 6859 }, { "weight": 1, "sprite": 6860 }, { "weight": 1, "sprite": 6861 } ], + "bg": 6740 + }, + { "id": "overlay_female_mutation_SKIN_MEDIUM", "fg": 6866 }, + { "id": "overlay_male_mutation_SKIN_MEDIUM", "fg": 6867 }, + { "id": "overlay_female_wielded_teleumbrella", "fg": 6869 }, + { "id": "overlay_male_wielded_teleumbrella", "fg": 6870 }, + { "id": "overlay_female_wielded_umbrella", "fg": 6869 }, + { "id": "overlay_male_wielded_umbrella", "fg": 6870 }, + { "id": "overlay_male_worn_welding_mask_raised", "fg": 6874 }, + { "id": "overlay_female_worn_mossberg_500", "fg": 6875 }, + { "id": "overlay_male_worn_mossberg_500", "fg": 6876 }, + { "id": [ "tr_shotgun_2", "tr_shotgun_1", "tr_shotgun_2_1" ], "fg": 6877 }, { "id": "vp_board_ne", - "fg": [ 6820, 6823, 6822, 6821 ], + "fg": [ 6885, 6888, 6887, 6886 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6820, 6823, 6822, 6821 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6885, 6888, 6887, 6886 ] } ] }, { "id": "vp_board_nw", - "fg": [ 6824, 6827, 6826, 6825 ], + "fg": [ 6888, 6890, 6889, 6885 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6824, 6827, 6826, 6825 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6888, 6890, 6889, 6885 ] } ] }, { "id": "vp_board_se", - "fg": [ 6828, 6830, 6824, 6829 ], + "fg": [ 6891, 6885, 6888, 6890 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6828, 6830, 6824, 6829 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6891, 6885, 6888, 6890 ] } ] }, { "id": "vp_board_sw", - "fg": [ 6831, 6833, 6820, 6832 ], + "fg": [ 6892, 6886, 6885, 6888 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6831, 6833, 6820, 6832 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6892, 6886, 6885, 6888 ] } ] }, { "id": "vp_board_vertical_left", - "fg": [ 6817, 6834, 6819, 6818 ], + "fg": [ 6881, 6893, 6879, 6883 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6817, 6834, 6819, 6818 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6881, 6893, 6879, 6883 ] } ] }, { "id": "vp_board_vertical_right", - "fg": [ 6819, 6818, 6817, 6834 ], + "fg": [ 6879, 6883, 6881, 6893 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6819, 6818, 6817, 6834 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6879, 6883, 6881, 6893 ] } ] }, { "id": "vp_board_wheel_left", - "fg": [ 6817, 6836, 6819, 6818 ], + "fg": [ 6881, 6895, 6879, 6883 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6817, 6836, 6819, 6818 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6881, 6895, 6879, 6883 ] } ] }, { "id": "vp_board_wheel_right", - "fg": [ 6819, 6818, 6817, 6836 ], + "fg": [ 6879, 6883, 6881, 6895 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6819, 6818, 6817, 6836 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6879, 6883, 6881, 6895 ] } ] }, { "id": [ "vp_board", "vp_board_horizontal", "vp_board_horizontal_2" ], - "fg": [ 6818, 6835, 6818, 6835 ], + "fg": [ 6878, 6884, 6878, 6894 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6818, 6835, 6818, 6835 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6878, 6884, 6878, 6894 ] } ] }, { "id": "vp_board_horizontal_front", - "fg": [ 6818, 6815, 6814, 6813 ], + "fg": [ 6878, 6881, 6880, 6879 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6818, 6815, 6814, 6813 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6883, 6881, 6880, 6879 ] } ] }, { "id": "vp_board_horizontal_rear", - "fg": [ 6816, 6819, 6818, 6817 ], + "fg": [ 6882, 6879, 6883, 6881 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6816, 6819, 6818, 6817 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6882, 6879, 6883, 6881 ] } ] }, { "id": [ "vp_board_vertical", "vp_board_vertical_2" ], - "fg": [ 6835, 6818, 6835, 6818 ], + "fg": [ 6894, 6883, 6894, 6883 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6835, 6818, 6835, 6818 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6894, 6883, 6894, 6883 ] } ] }, { "id": "vp_board_ne_edge", - "fg": [ 6820, 6838, 6822, 6837 ], + "fg": [ 6885, 6897, 6887, 6896 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6820, 6838, 6822, 6837 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6885, 6897, 6887, 6896 ] } ] }, { "id": "vp_board_nw_edge", - "fg": [ 6824, 6840, 6826, 6839 ], + "fg": [ 6888, 6899, 6889, 6898 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6824, 6840, 6826, 6839 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6888, 6899, 6889, 6898 ] } ] }, { "id": "vp_clothboard_ne", - "fg": [ 6846, 6849, 6848, 6847 ], + "fg": [ 6905, 6908, 6907, 6906 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6846, 6849, 6848, 6847 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6905, 6908, 6907, 6906 ] } ] }, { "id": "vp_clothboard_nw", - "fg": [ 6849, 6851, 6850, 6846 ], + "fg": [ 6908, 6910, 6909, 6905 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6849, 6851, 6850, 6846 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6908, 6910, 6909, 6905 ] } ] }, { "id": "vp_clothboard_se", - "fg": [ 6852, 6854, 6849, 6853 ], + "fg": [ 6911, 6913, 6908, 6912 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6852, 6854, 6849, 6853 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6911, 6913, 6908, 6912 ] } ] }, { "id": "vp_clothboard_sw", - "fg": [ 6855, 6857, 6846, 6856 ], + "fg": [ 6914, 6916, 6905, 6915 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6855, 6857, 6846, 6856 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6914, 6916, 6905, 6915 ] } ] }, { "id": "vp_clothboard_vertical_left", - "fg": [ 6843, 6858, 6841, 6845 ], + "fg": [ 6902, 6917, 6900, 6904 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6843, 6858, 6841, 6845 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6902, 6917, 6900, 6904 ] } ] }, { "id": "vp_clothboard_vertical_right", - "fg": [ 6841, 6845, 6843, 6858 ], + "fg": [ 6900, 6904, 6902, 6917 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6841, 6845, 6843, 6858 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6900, 6904, 6902, 6917 ] } ] }, { "id": "vp_clothboard_wheel_left", - "fg": [ 6843, 6860, 6841, 6845 ], + "fg": [ 6902, 6919, 6900, 6904 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6843, 6860, 6841, 6845 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6902, 6919, 6900, 6904 ] } ] }, { "id": "vp_clothboard_wheel_right", - "fg": [ 6841, 6845, 6843, 6860 ], + "fg": [ 6900, 6904, 6902, 6919 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6841, 6845, 6843, 6860 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6900, 6904, 6902, 6919 ] } ] }, { "id": [ "vp_clothboard", "vp_clothboard_horizontal", "vp_clothboard_horizontal_2" ], - "fg": [ 6845, 6859, 6845, 6859 ], + "fg": [ 6904, 6918, 6904, 6918 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6845, 6859, 6845, 6859 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6904, 6918, 6904, 6918 ] } ] }, { "id": "vp_clothboard_horizontal_front", - "fg": [ 6845, 6843, 6842, 6841 ], + "fg": [ 6904, 6902, 6901, 6900 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6845, 6843, 6842, 6841 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6904, 6902, 6901, 6900 ] } ] }, { "id": "vp_clothboard_horizontal_rear", - "fg": [ 6844, 6841, 6845, 6843 ], + "fg": [ 6903, 6900, 6904, 6902 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6844, 6841, 6845, 6843 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6903, 6900, 6904, 6902 ] } ] }, { "id": [ "vp_clothboard_vertical", "vp_clothboard_vertical_2" ], - "fg": [ 6859, 6845, 6859, 6845 ], + "fg": [ 6918, 6904, 6918, 6904 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6859, 6845, 6859, 6845 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6918, 6904, 6918, 6904 ] } ] }, { "id": "vp_clothboard_ne_edge", - "fg": [ 6846, 6862, 6848, 6861 ], + "fg": [ 6905, 6921, 6907, 6920 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6846, 6862, 6848, 6861 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6905, 6921, 6907, 6920 ] } ] }, { "id": "vp_clothboard_nw_edge", - "fg": [ 6849, 6864, 6850, 6863 ], + "fg": [ 6908, 6923, 6909, 6922 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6849, 6864, 6850, 6863 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6908, 6923, 6909, 6922 ] } ] }, { "id": "vp_clothboard_se_edge", - "fg": [ 6852, 6866, 6849, 6865 ], + "fg": [ 6911, 6925, 6908, 6924 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6852, 6866, 6849, 6865 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6911, 6925, 6908, 6924 ] } ] }, { "id": "vp_clothboard_sw_edge", - "fg": [ 6855, 6868, 6846, 6867 ], + "fg": [ 6914, 6927, 6905, 6926 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6855, 6868, 6846, 6867 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6914, 6927, 6905, 6926 ] } ] }, { - "id": [ - "vp_door_full_left", - "vp_door_full_vertical_left", - "vp_door_full_nw", - "vp_door_full_front_left", - "vp_door_full_sw", - "vp_door_full_rear_left" - ], - "fg": [ 6937, 6944, 6943, 6942 ], + "id": [ "vp_door_left", "vp_door_vertical_left" ], + "fg": [ 6932, 6935, 6934, 6933 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6938, 6941, 6940, 6939 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6938, 6941, 6940, 6939 ] } + { "id": "open", "fg": [ 6941, 6943, 6942, 6940 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6941, 6943, 6942, 6940 ] } ] }, { - "id": [ - "vp_door_full_right", - "vp_door_full_vertical_right", - "vp_door_full_ne", - "vp_door_full_front_right", - "vp_door_full_se", - "vp_door_full_rear_right" - ], - "fg": [ 6963, 6962, 6961, 6946 ], + "id": "vp_door_nw", + "fg": [ 6952, 6959, 6958, 6957 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6960, 6959, 6958, 6945 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6960, 6959, 6958, 6945 ] } + { "id": "open", "fg": [ 6953, 6956, 6955, 6954 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6941, 6943, 6942, 6940 ] } ] }, { - "id": "vp_door_opaque_full_left", - "fg": [ 6947, 6950, 6949, 6948 ], + "id": "vp_door_front_left", + "fg": [ 7004, 7011, 7010, 7009 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6938, 6941, 6940, 6939 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6938, 6941, 6940, 6939 ] } + { "id": "open", "fg": [ 7005, 7008, 7007, 7006 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7005, 7008, 7007, 7006 ] } ] }, { - "id": "vp_door_opaque_full_right", - "fg": [ 6955, 6954, 6953, 6951 ], + "id": [ "vp_door_sw", "vp_door_rear_left" ], + "fg": [ 6988, 6995, 6994, 6993 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6960, 6959, 6958, 6945 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6960, 6959, 6958, 6945 ] } - ] - }, - { - "id": [ "vp_door_left", "vp_door_vertical_left" ], - "fg": [ 6873, 6876, 6875, 6874 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6882, 6884, 6883, 6881 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6882, 6884, 6883, 6881 ] } - ] - }, - { - "id": "vp_door_nw", - "fg": [ 6893, 6900, 6899, 6898 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6894, 6897, 6896, 6895 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6882, 6884, 6883, 6881 ] } - ] - }, - { - "id": "vp_door_front_left", - "fg": [ 6984, 6991, 6990, 6989 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6985, 6988, 6987, 6986 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6985, 6988, 6987, 6986 ] } - ] - }, - { - "id": [ "vp_door_sw", "vp_door_rear_left" ], - "fg": [ 6929, 6936, 6935, 6934 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6930, 6933, 6932, 6931 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6882, 6884, 6883, 6881 ] } + { "id": "open", "fg": [ 6989, 6992, 6991, 6990 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6941, 6943, 6942, 6940 ] } ] }, { "id": [ "vp_door_right", "vp_door_vertical_right" ], - "fg": [ 6877, 6880, 6879, 6878 ], + "fg": [ 6936, 6939, 6938, 6937 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6918, 6920, 6919, 6917 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6918, 6920, 6919, 6917 ] } + { "id": "open", "fg": [ 6977, 6979, 6978, 6976 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6977, 6979, 6978, 6976 ] } ] }, { "id": "vp_door_ne", - "fg": [ 6885, 6892, 6891, 6890 ], + "fg": [ 6944, 6951, 6950, 6949 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6886, 6889, 6888, 6887 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6918, 6920, 6919, 6917 ] } + { "id": "open", "fg": [ 6945, 6948, 6947, 6946 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6977, 6979, 6978, 6976 ] } ] }, { "id": "vp_door_front_right", - "fg": [ 6976, 6983, 6982, 6981 ], + "fg": [ 6996, 7003, 7002, 7001 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6977, 6980, 6979, 6978 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6977, 6980, 6979, 6978 ] } + { "id": "open", "fg": [ 6997, 7000, 6999, 6998 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6997, 7000, 6999, 6998 ] } ] }, { "id": [ "vp_door_se", "vp_door_rear_right" ], - "fg": [ 6921, 6928, 6927, 6926 ], + "fg": [ 6980, 6987, 6986, 6985 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6922, 6925, 6924, 6923 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6918, 6920, 6919, 6917 ] } + { "id": "open", "fg": [ 6981, 6984, 6983, 6982 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6977, 6979, 6978, 6976 ] } ] }, { "id": "vp_door_opaque_left", - "fg": [ 6906, 6908, 6907, 6905 ], + "fg": [ 6965, 6967, 6966, 6964 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 6902, 6904, 6903, 6901 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6902, 6904, 6903, 6901 ] } + { "id": "open", "fg": [ 6961, 6963, 6962, 6960 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6961, 6963, 6962, 6960 ] } ] }, { "id": "vp_door_opaque_right", - "fg": [ 6914, 6916, 6915, 6913 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6910, 6912, 6911, 6909 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6910, 6912, 6911, 6909 ] } - ] - }, - { - "id": [ "vp_door_rear", "vp_door_horizontal_rear" ], - "fg": [ 6956, 6963, 6962, 6961 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6957, 6960, 6959, 6958 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6957, 6960, 6959, 6958 ] } - ] - }, - { - "id": [ "vp_door_front", "vp_door_horizontal_front" ], - "fg": [ 6962, 6961, 6956, 6963 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6959, 6958, 6957, 6960 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6959, 6958, 6957, 6960 ] } - ] - }, - { - "id": [ "vp_door_opaque_rear", "vp_door_opaque_horizontal_rear" ], - "fg": [ 6952, 6955, 6954, 6953 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6957, 6960, 6959, 6958 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6957, 6960, 6959, 6958 ] } - ] - }, - { - "id": [ "vp_door_opaque_front", "vp_door_opaque_horizontal_front" ], - "fg": [ 6954, 6953, 6952, 6955 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6959, 6958, 6957, 6960 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6959, 6958, 6957, 6960 ] } - ] - }, - { - "id": "vp_door_sliding", - "fg": [ 6955, 6954, 6953, 6951 ], + "fg": [ 6973, 6975, 6974, 6972 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7002, 7003, 7004, 7005 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7002, 7003, 7004, 7005 ] } - ] - }, - { - "id": [ "vp_door", "vp_door_internal", "vp_door_opaque" ], - "fg": [ 6972, 6971, 6974, 6971 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6973, 6970, 6975, 6970 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6973, 6970, 6975, 6970 ] } - ] - }, - { - "id": "vp_door_internal_front", - "fg": [ 6954, 6969, 6968, 6967 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6959, 6966, 6965, 6964 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6959, 6966, 6965, 6964 ] } - ] - }, - { - "id": "vp_door_shutter", - "fg": [ 6994, 6992, 6993, 6995 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6999, 6997, 6998, 7000 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6999, 6997, 6998, 7000 ] } - ] - }, - { - "id": "vp_door_shutter_left", - "fg": [ 6995, 6996, 6992, 6993 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7000, 7001, 6997, 6998 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7000, 7001, 6997, 6998 ] } - ] - }, - { - "id": "vp_door_shutter_right", - "fg": [ 6992, 6993, 6995, 6996 ], - "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 6997, 6998, 7000, 7001 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 6997, 6998, 7000, 7001 ] } + { "id": "open", "fg": [ 6969, 6971, 6970, 6968 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 6969, 6971, 6970, 6968 ] } ] }, { "id": "vp_halfboard_ne", - "fg": [ 7026, 7029, 7028, 7027 ], + "fg": [ 7032, 7035, 7034, 7033 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7026, 7029, 7028, 7027 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7032, 7035, 7034, 7033 ] } ] }, { "id": "vp_halfboard_nw", - "fg": [ 7030, 7033, 7032, 7031 ], + "fg": [ 7036, 7039, 7038, 7037 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7030, 7033, 7032, 7031 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7036, 7039, 7038, 7037 ] } ] }, { "id": "vp_halfboard_se", - "fg": [ 7034, 7037, 7036, 7035 ], + "fg": [ 7040, 7043, 7042, 7041 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7034, 7037, 7036, 7035 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7040, 7043, 7042, 7041 ] } ] }, { "id": "vp_halfboard_sw", - "fg": [ 7038, 7041, 7040, 7039 ], + "fg": [ 7044, 7047, 7046, 7045 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7038, 7041, 7040, 7039 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7044, 7047, 7046, 7045 ] } ] }, { "id": [ "vp_halfboard_vertical_left", "vp_halfboard_vertical_2_left" ], - "fg": [ 7042, 7044, 7045, 7043 ], + "fg": [ 7048, 7050, 7051, 7049 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7042, 7044, 7045, 7043 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7048, 7050, 7051, 7049 ] } ] }, { "id": [ "vp_halfboard_vertical_right", "vp_halfboard_vertical_2_right" ], - "fg": [ 7045, 7043, 7042, 7044 ], + "fg": [ 7051, 7049, 7048, 7050 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7045, 7043, 7042, 7044 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7051, 7049, 7048, 7050 ] } ] }, { "id": "vp_halfboard_vertical_t_left", - "fg": [ 7049, 7051, 7050, 7048 ], + "fg": [ 7055, 7057, 7056, 7054 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7049, 7051, 7050, 7048 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7055, 7057, 7056, 7054 ] } ] }, { "id": "vp_halfboard_vertical_t_right", - "fg": [ 7053, 7055, 7054, 7052 ], + "fg": [ 7059, 7061, 7060, 7058 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7053, 7055, 7054, 7052 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7059, 7061, 7060, 7058 ] } ] }, { "id": [ "vp_halfboard_horizontal", "vp_halfboard_horizontal_2" ], - "fg": [ 7023, 7025, 7024, 7022 ], + "fg": [ 7029, 7031, 7030, 7028 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7023, 7025, 7024, 7022 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7029, 7031, 7030, 7028 ] } ] }, { "id": [ "vp_halfboard_horizontal_front", "vp_halfboard_horizontal_2_front", "vp_halfboard_cover" ], - "fg": [ 7014, 7017, 7016, 7015 ], + "fg": [ 7020, 7023, 7022, 7021 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7014, 7017, 7016, 7015 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7020, 7023, 7022, 7021 ] } ] }, { "id": "vp_halfboard_horizontal_rear", - "fg": [ 7018, 7021, 7020, 7019 ], + "fg": [ 7024, 7027, 7026, 7025 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7018, 7021, 7020, 7019 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7024, 7027, 7026, 7025 ] } ] }, { "id": [ "vp_halfboard_vertical", "vp_halfboard_vertical_2" ], - "fg": [ 7047, 7046, 7047, 7046 ], + "fg": [ 7053, 7052, 7053, 7052 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7047, 7046, 7047, 7046 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7053, 7052, 7053, 7052 ] } ] }, { "id": "vp_halfboard_cover_left", - "fg": [ 7006, 7009, 7008, 7007 ], + "fg": [ 7012, 7015, 7014, 7013 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7006, 7009, 7008, 7007 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7012, 7015, 7014, 7013 ] } ] }, { "id": "vp_halfboard_cover_right", - "fg": [ 7010, 7013, 7012, 7011 ], + "fg": [ 7016, 7019, 7018, 7017 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7010, 7013, 7012, 7011 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7016, 7019, 7018, 7017 ] } ] }, { "id": "vp_halfboard_wheel_left", - "fg": [ 7056, 7059, 7058, 7057 ], + "fg": [ 7062, 7065, 7064, 7063 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7056, 7059, 7058, 7057 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7062, 7065, 7064, 7063 ] } ] }, { "id": "vp_halfboard_wheel_right", - "fg": [ 7060, 7063, 7062, 7061 ], + "fg": [ 7066, 7069, 7068, 7067 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7060, 7063, 7062, 7061 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7066, 7069, 7068, 7067 ] } ] }, { "id": "vp_hddoor_left", - "fg": [ 7065, 7067, 7066, 7064 ], + "fg": [ 7071, 7073, 7072, 7070 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7073, 7075, 7074, 7072 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7073, 7075, 7074, 7072 ] } + { "id": "open", "fg": [ 7079, 7081, 7080, 7078 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7079, 7081, 7080, 7078 ] } ] }, { "id": "vp_hddoor_right", - "fg": [ 7069, 7071, 7070, 7068 ], + "fg": [ 7075, 7077, 7076, 7074 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7093, 7095, 7094, 7092 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7093, 7095, 7094, 7092 ] } + { "id": "open", "fg": [ 7099, 7101, 7100, 7098 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7099, 7101, 7100, 7098 ] } ] }, { "id": "vp_hddoor_opaque_left", - "fg": [ 7081, 7083, 7082, 7080 ], + "fg": [ 7087, 7089, 7088, 7086 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7077, 7079, 7078, 7076 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7077, 7079, 7078, 7076 ] } + { "id": "open", "fg": [ 7083, 7085, 7084, 7082 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7083, 7085, 7084, 7082 ] } ] }, { "id": "vp_hddoor_opaque_right", - "fg": [ 7089, 7091, 7090, 7088 ], + "fg": [ 7095, 7097, 7096, 7094 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7085, 7087, 7086, 7084 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7085, 7087, 7086, 7084 ] } + { "id": "open", "fg": [ 7091, 7093, 7092, 7090 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7091, 7093, 7092, 7090 ] } ] }, { @@ -10753,11 +10779,11 @@ "vp_hddoor_full_sw", "vp_hddoor_full_rear_left" ], - "fg": [ 7065, 7067, 7066, 7064 ], + "fg": [ 7071, 7073, 7072, 7070 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7073, 7075, 7074, 7072 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7073, 7075, 7074, 7072 ] } + { "id": "open", "fg": [ 7079, 7081, 7080, 7078 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7079, 7081, 7080, 7078 ] } ] }, { @@ -10769,821 +10795,776 @@ "vp_hddoor_full_se", "vp_hddoor_full_rear_right" ], - "fg": [ 7069, 7071, 7070, 7068 ], + "fg": [ 7075, 7077, 7076, 7074 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7093, 7095, 7094, 7092 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7093, 7095, 7094, 7092 ] } + { "id": "open", "fg": [ 7099, 7101, 7100, 7098 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7099, 7101, 7100, 7098 ] } ] }, { "id": "vp_hddoor_opaque_full_left", - "fg": [ 7081, 7083, 7082, 7080 ], + "fg": [ 7087, 7089, 7088, 7086 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7077, 7079, 7078, 7076 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7077, 7079, 7078, 7076 ] } + { "id": "open", "fg": [ 7083, 7085, 7084, 7082 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7083, 7085, 7084, 7082 ] } ] }, { "id": "vp_hddoor_opaque_full_right", - "fg": [ 7089, 7091, 7090, 7088 ], + "fg": [ 7095, 7097, 7096, 7094 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 7085, 7087, 7086, 7084 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7085, 7087, 7086, 7084 ] } + { "id": "open", "fg": [ 7091, 7093, 7092, 7090 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7091, 7093, 7092, 7090 ] } ] }, - { "id": "vp_saddle_scooter", "fg": [ 7097, 7099, 7098, 7096 ], "rotates": true }, - { - "id": [ "vp_seat_windshield_leather", "vp_reclining_seat_windshield_leather" ], - "fg": [ 7101, 7103, 7102, 7100 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7101, 7103, 7102, 7100 ] } ] - }, { - "id": [ "vp_seat_windshield", "vp_reclining_seat_windshield" ], - "fg": [ 7105, 7107, 7106, 7104 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7105, 7107, 7106, 7104 ] } ] - }, - { - "id": "vp_bed", - "fg": [ 7109, 7111, 7110, 7108 ], + "id": "vp_light_blue", + "fg": [ 7108, 7109 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7109, 7111, 7110, 7108 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 6931, "bg": [ 7108, 7109 ] } ] }, { - "id": "vp_hatch_left", - "fg": [ 7114, 7121, 7120, 7119 ], + "id": "vp_light_red", + "fg": [ 7110, 7111 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7115, 7118, 7117, 7116 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7115, 7118, 7117, 7116 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 6931, "bg": [ 7110, 7111 ] } ] }, { - "id": "vp_hatch_right", - "fg": [ 7120, 7119, 7114, 7121 ], + "id": [ "vp_floodlight", "vp_directed_floodlight" ], + "fg": [ 7105, 7107, 7106, 7104 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7117, 7116, 7115, 7118 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7117, 7116, 7115, 7118 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 6931, "bg": [ 7105, 7107, 7106, 7104 ] } ] }, { - "id": "vp_hatch_wheel_left", - "fg": [ 7114, 7135, 7120, 7119 ], + "id": "vp_afs_roof_external_tank", + "fg": [ 7103, 7102 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7115, 7134, 7117, 7116 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7115, 7118, 7117, 7116 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 6931, "bg": [ 7103, 7102 ] } ] }, + { "id": "vp_saddle_scooter", "fg": [ 7113, 7115, 7114, 7112 ], "rotates": true }, { - "id": "vp_hatch_wheel_right", - "fg": [ 7120, 7119, 7114, 7135 ], + "id": [ "vp_seat_windshield_leather", "vp_reclining_seat_windshield_leather" ], + "fg": [ 7117, 7119, 7118, 7116 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7117, 7116, 7115, 7134 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7117, 7116, 7115, 7134 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7117, 7119, 7118, 7116 ] } ] }, { - "id": [ "vp_hatch_horizontal_rear", "vp_hatch_horizontal", "vp_hatch_horizontal_2" ], - "fg": [ 7112, 7120, 7119, 7114 ], + "id": [ "vp_seat_windshield", "vp_reclining_seat_windshield" ], + "fg": [ 7121, 7123, 7122, 7120 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7113, 7117, 7116, 7115 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7113, 7117, 7116, 7115 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7121, 7123, 7122, 7120 ] } ] }, { - "id": "vp_hatch_horizontal_front", - "fg": [ 7119, 7114, 7112, 7120 ], + "id": "vp_solar_panel", + "fg": [ 7124, 7131 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7116, 7115, 7113, 7117 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7116, 7115, 7113, 7117 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 6928, "bg": [ 7124, 7131 ] } ] }, { - "id": "vp_hatch_opaque_left", - "fg": [ 7124, 7131, 7130, 7129 ], + "id": "vp_reinforced_solar_panel", + "fg": [ 7129, 7130 ], + "bg": [ 7124, 7131 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7125, 7128, 7127, 7126 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7125, 7128, 7127, 7126 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 6928, "bg": [ 7124, 7131 ] } ] }, { - "id": "vp_hatch_opaque_right", - "fg": [ 7130, 7129, 7124, 7131 ], + "id": "vp_solar_panel_v2", + "fg": [ 7125, 7126 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7127, 7126, 7125, 7128 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7127, 7126, 7125, 7128 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 6928, "bg": [ 7125, 7126 ] } ] }, { - "id": "vp_hatch_opaque_wheel_left", - "fg": [ 7124, 7133, 7130, 7129 ], + "id": "vp_reinforced_solar_panel_v2", + "fg": [ 7129, 7130 ], + "bg": [ 7125, 7126 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7125, 7132, 7127, 7126 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7125, 7132, 7127, 7126 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 6928, "bg": [ 7125, 7126 ] } ] }, { - "id": "vp_hatch_opaque_wheel_right", - "fg": [ 7130, 7129, 7124, 7133 ], + "id": "vp_solar_panel_v3", + "fg": [ 7127, 7128 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7127, 7126, 7125, 7132 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7127, 7126, 7125, 7132 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 6928, "bg": [ 7127, 7128 ] } ] }, { - "id": [ "vp_hatch_opaque_horizontal_rear", "vp_hatch_opaque_horizontal", "vp_hatch_opaque_horizontal_2" ], - "fg": [ 7122, 7130, 7129, 7124 ], + "id": "vp_bed", + "fg": [ 7133, 7135, 7134, 7132 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7123, 7127, 7126, 7125 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7123, 7127, 7126, 7125 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7133, 7135, 7134, 7132 ] } ] }, { - "id": "vp_hatch_opaque_horizontal_front", - "fg": [ 7129, 7124, 7122, 7130 ], + "id": "vp_omnicam", + "fg": [ 7136, 7137 ], "multitile": true, - "additional_tiles": [ - { "id": "open", "fg": [ 7126, 7125, 7123, 7127 ] }, - { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7126, 7125, 7123, 7127 ] } - ] + "additional_tiles": [ { "id": "broken", "fg": 6931, "bg": [ 7136, 7137 ] } ] }, { "id": [ "vp_wheel_wide", "vp_wheel_wide_steerable", "vp_wheel_wide_or", "vp_wheel_wide_or_steerable" ], - "fg": [ 7137, 7136, 7137, 7136 ], + "fg": [ 7139, 7138, 7139, 7138 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7137, 7136, 7137, 7136 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7139, 7138, 7139, 7138 ] } ] }, { "id": [ "vp_windshield", "vp_windshield_horizontal", "vp_windshield_horizontal_front", "vp_windshield_front_edge" ], - "fg": [ 7146, 7149, 7148, 7147 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7146, 7149, 7148, 7147 ] } ], + "fg": [ 7148, 7151, 7150, 7149 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6928, 6928, 6928, 6928 ], "bg": [ 7148, 7151, 7150, 7149 ] } ], "multitile": true }, { "id": "vp_windshield_horizontal_rear", - "fg": [ 7163, 7164, 7163, 7162 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7163, 7164, 7163, 7162 ] } ], + "fg": [ 7165, 7166, 7165, 7164 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6928, 6928, 6928, 6928 ], "bg": [ 7165, 7166, 7165, 7164 ] } ], "multitile": true }, { "id": "vp_windshield_nw", - "fg": [ 7158, 7161, 7160, 7159 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6871, 6871, 6871, 6871 ], "bg": [ 7158, 7161, 7160, 7159 ] } ], + "fg": [ 7160, 7163, 7162, 7161 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6930, 6930, 6930, 6930 ], "bg": [ 7160, 7163, 7162, 7161 ] } ], "multitile": true }, { "id": "vp_windshield_ne", - "fg": [ 7154, 7157, 7156, 7155 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6870, 6870, 6870, 6870 ], "bg": [ 7154, 7157, 7156, 7155 ] } ], + "fg": [ 7156, 7159, 7158, 7157 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6929, 6929, 6929, 6929 ], "bg": [ 7156, 7159, 7158, 7157 ] } ], "multitile": true }, { "id": "vp_windshield_sw", - "fg": [ 7150, 7153, 7165, 7151 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6871, 6871, 6871, 6871 ], "bg": [ 7150, 7153, 7165, 7151 ] } ], + "fg": [ 7152, 7155, 7167, 7153 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6930, 6930, 6930, 6930 ], "bg": [ 7152, 7155, 7167, 7153 ] } ], "multitile": true }, { "id": "vp_windshield_se", - "fg": [ 7152, 7168, 7150, 7166 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6870, 6870, 6870, 6870 ], "bg": [ 7152, 7168, 7150, 7166 ] } ], + "fg": [ 7154, 7170, 7152, 7168 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6929, 6929, 6929, 6929 ], "bg": [ 7154, 7170, 7152, 7168 ] } ], "multitile": true }, { "id": [ "vp_windshield_vertical_left", "vp_windshield_left" ], - "fg": [ 7150, 7153, 7152, 7151 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6870, 6870, 6870, 6870 ], "bg": [ 7150, 7153, 7152, 7151 ] } ], + "fg": [ 7152, 7155, 7154, 7153 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6929, 6929, 6929, 6929 ], "bg": [ 7152, 7155, 7154, 7153 ] } ], "multitile": true }, { "id": [ "vp_windshield_vertical_right", "vp_windshield_right" ], - "fg": [ 7165, 7168, 7167, 7166 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6871, 6871, 6871, 6871 ], "bg": [ 7165, 7168, 7167, 7166 ] } ], + "fg": [ 7167, 7170, 7169, 7168 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6930, 6930, 6930, 6930 ], "bg": [ 7167, 7170, 7169, 7168 ] } ], "multitile": true }, { "id": "vp_windshield_cover_left", - "fg": [ 7138, 7141, 7140, 7139 ], + "fg": [ 7140, 7143, 7142, 7141 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7138, 7141, 7140, 7139 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7140, 7143, 7142, 7141 ] } ] }, { "id": "vp_windshield_cover_right", - "fg": [ 7142, 7145, 7144, 7143 ], + "fg": [ 7144, 7147, 7146, 7145 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7142, 7145, 7144, 7143 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7144, 7147, 7146, 7145 ] } ] }, { "id": "vp_windshield_wheel_left", - "fg": [ 7170, 7173, 7172, 7171 ], + "fg": [ 7172, 7175, 7174, 7173 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7170, 7173, 7172, 7171 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7172, 7175, 7174, 7173 ] } ] }, { "id": "vp_windshield_wheel_right", - "fg": [ 7174, 7177, 7176, 7175 ], + "fg": [ 7176, 7179, 7178, 7177 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6872, 6872, 6872, 6872 ], "bg": [ 7174, 7177, 7176, 7175 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 7176, 7179, 7178, 7177 ] } ] }, { "id": "vp_windshield_vertical_2_left", - "fg": [ 7150, 7169, 7152, 7151 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6870, 6870, 6870, 6870 ], "bg": [ 7150, 7169, 7152, 7151 ] } ], + "fg": [ 7152, 7171, 7154, 7153 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6929, 6929, 6929, 6929 ], "bg": [ 7152, 7171, 7154, 7153 ] } ], "multitile": true }, { "id": "vp_windshield_vertical_2_right", - "fg": [ 7165, 7168, 7167, 7169 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6871, 6871, 6871, 6871 ], "bg": [ 7165, 7168, 7167, 7169 ] } ], + "fg": [ 7167, 7170, 7169, 7171 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6930, 6930, 6930, 6930 ], "bg": [ 7167, 7170, 7169, 7171 ] } ], "multitile": true }, { "id": [ "vp_windshield_full", "vp_windshield_full_horizontal_rear" ], - "fg": [ 7180, 7178, 7179, 7181 ], - "additional_tiles": [ { "id": "broken", "fg": 8031, "bg": [ 7180, 7178, 7179, 7181 ] } ], + "fg": [ 7182, 7180, 7181, 7183 ], + "additional_tiles": [ { "id": "broken", "fg": 8063, "bg": [ 7182, 7180, 7181, 7183 ] } ], "multitile": true }, { "id": "vp_windshield_full_horizontal_front", - "fg": [ 7179, 7181, 7180, 7178 ], - "additional_tiles": [ { "id": "broken", "fg": 8031, "bg": [ 7179, 7181, 7180, 7178 ] } ], + "fg": [ 7181, 7183, 7182, 7180 ], + "additional_tiles": [ { "id": "broken", "fg": 8063, "bg": [ 7181, 7183, 7182, 7180 ] } ], "multitile": true }, { "id": [ "vp_windshield_full_vertical_left", "vp_windshield_full_left" ], - "fg": [ 7181, 7182, 7178, 7179 ], - "additional_tiles": [ { "id": "broken", "fg": 8031, "bg": [ 7181, 7182, 7178, 7179 ] } ], + "fg": [ 7183, 7184, 7180, 7181 ], + "additional_tiles": [ { "id": "broken", "fg": 8063, "bg": [ 7183, 7184, 7180, 7181 ] } ], "multitile": true }, { "id": [ "vp_windshield_full_vertical_right", "vp_windshield_full_right" ], - "fg": [ 7178, 7179, 7181, 7182 ], - "additional_tiles": [ { "id": "broken", "fg": 8031, "bg": [ 7178, 7179, 7181, 7182 ] } ], + "fg": [ 7180, 7181, 7183, 7184 ], + "additional_tiles": [ { "id": "broken", "fg": 8063, "bg": [ 7180, 7181, 7183, 7184 ] } ], "multitile": true }, { "id": "vp_windshield_full_wheel_left", - "fg": [ 7181, 7183, 7178, 7179 ], - "additional_tiles": [ { "id": "broken", "fg": 8031, "bg": [ 7181, 7183, 7178, 7179 ] } ], + "fg": [ 7183, 7185, 7180, 7181 ], + "additional_tiles": [ { "id": "broken", "fg": 8063, "bg": [ 7183, 7185, 7180, 7181 ] } ], "multitile": true }, { "id": "vp_windshield_full_wheel_right", - "fg": [ 7178, 7179, 7181, 7183 ], - "additional_tiles": [ { "id": "broken", "fg": 8031, "bg": [ 7178, 7179, 7181, 7183 ] } ], + "fg": [ 7180, 7181, 7183, 7185 ], + "additional_tiles": [ { "id": "broken", "fg": 8063, "bg": [ 7180, 7181, 7183, 7185 ] } ], "multitile": true }, { "id": "vp_windshield_horizontal_front_edge", - "fg": [ 7185, 7187, 7186, 7184 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7185, 7187, 7186, 7184 ] } ], + "fg": [ 7187, 7189, 7188, 7186 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6928, 6928, 6928, 6928 ], "bg": [ 7187, 7189, 7188, 7186 ] } ], "multitile": true }, { "id": "vp_windshield_horizontal_rear_edge", - "fg": [ 7196, 7199, 7198, 7197 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7196, 7199, 7198, 7197 ] } ], + "fg": [ 7198, 7201, 7200, 7199 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6928, 6928, 6928, 6928 ], "bg": [ 7198, 7201, 7200, 7199 ] } ], "multitile": true }, { "id": "vp_windshield_nw_edge", - "fg": [ 7193, 7195, 7194, 7192 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7193, 7195, 7194, 7192 ] } ], + "fg": [ 7195, 7197, 7196, 7194 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6928, 6928, 6928, 6928 ], "bg": [ 7195, 7197, 7196, 7194 ] } ], "multitile": true }, { "id": "vp_windshield_ne_edge", - "fg": [ 7189, 7191, 7190, 7188 ], - "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7189, 7191, 7190, 7188 ] } ], + "fg": [ 7191, 7193, 7192, 7190 ], + "additional_tiles": [ { "id": "broken", "fg": [ 6928, 6928, 6928, 6928 ], "bg": [ 7191, 7193, 7192, 7190 ] } ], "multitile": true }, { "id": "vp_windshield_sw_edge", - "fg": [ 7038, 7041, 7040, 7039 ], + "fg": [ 7044, 7047, 7046, 7045 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7038, 7041, 7040, 7039 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 6928, 6928, 6928, 6928 ], "bg": [ 7044, 7047, 7046, 7045 ] } ] }, { "id": "vp_windshield_se_edge", - "fg": [ 7034, 7037, 7036, 7035 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 6869, 6869, 6869, 6869 ], "bg": [ 7034, 7037, 7036, 7035 ] } ] - }, - { "id": "overlay_mutation_EXODII_BODY_1", "fg": 6656 }, - { "id": "mon_shadow", "fg": 6661 }, - { "id": "corpse_mon_zombie_brainless", "fg": 6732 }, - { "id": "mon_zombie_shady", "fg": 6747 }, - { "id": "mon_zombie_armored", "fg": 6751 }, - { "id": "mon_beekeeper", "fg": 6769 }, - { "id": "mon_zougar_shady", "fg": 6788 }, - { "id": "overlay_effect_earphones", "fg": 6798 }, - { "id": "overlay_effect_evil", "fg": 6799 }, - { "id": "overlay_effect_sleep", "fg": 6800 }, - { "id": "overlay_effect_teleglow", "fg": 6801 }, - { "id": "overlay_wielded_woodgreatbow", "fg": 6804 }, - { "id": "overlay_female_worn_helmet_riot_raised", "fg": 6807 }, - { "id": "overlay_male_worn_helmet_riot_raised", "fg": 6808 } + "fg": [ 7040, 7043, 7042, 7041 ], + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": [ 6928, 6928, 6928, 6928 ], "bg": [ 7040, 7043, 7042, 7041 ] } ] + }, + { "id": "overlay_mutation_EXODII_BODY_1", "fg": 6720 }, + { "id": "mon_shadow", "fg": 6725 }, + { "id": "corpse_mon_zombie_brainless", "fg": 6796 }, + { "id": "mon_zombie_shady", "fg": 6811 }, + { "id": "mon_zombie_armored", "fg": 6815 }, + { "id": "mon_beekeeper", "fg": 6833 }, + { "id": "mon_zougar_shady", "fg": 6852 }, + { "id": "overlay_effect_earphones", "fg": 6862 }, + { "id": "overlay_effect_evil", "fg": 6863 }, + { "id": "overlay_effect_sleep", "fg": 6864 }, + { "id": "overlay_effect_teleglow", "fg": 6865 }, + { "id": "overlay_wielded_woodgreatbow", "fg": 6868 }, + { "id": "overlay_female_worn_helmet_riot_raised", "fg": 6871 }, + { "id": "overlay_male_worn_helmet_riot_raised", "fg": 6872 } ] }, { "file": "centered.png", - "//": "range 7200 to 7215", + "//": "range 7216 to 7231", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -16, "tiles": [ - { "id": "vp_wing_mirror", "fg": [ 7209, 7211, 7210, 7208 ], "rotates": true }, - { "id": "vp_wing_mirror_left", "fg": [ 7201, 7203, 7202, 7200 ], "rotates": true }, - { "id": "vp_wing_mirror_right", "fg": [ 7205, 7207, 7206, 7204 ], "rotates": true } + { "id": "vp_wing_mirror", "fg": [ 7225, 7227, 7226, 7224 ], "rotates": true }, + { "id": "vp_wing_mirror_left", "fg": [ 7217, 7219, 7218, 7216 ], "rotates": true }, + { "id": "vp_wing_mirror_right", "fg": [ 7221, 7223, 7222, 7220 ], "rotates": true } ] }, { "file": "large.png", - "//": "range 7216 to 7407", + "//": "range 7232 to 7439", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -32, "tiles": [ - { "id": "f_CTscan", "fg": 7221 }, - { "id": "f_MRI", "fg": 7222 }, - { "id": "f_rotary_clothesline", "fg": 7223 }, - { "id": "mon_troll", "fg": 7225, "bg": 7236 }, - { "id": "mon_albino_penguin", "fg": 7226, "bg": 7237 }, - { "id": "mon_gelatin", "fg": 7227, "bg": 7237 }, - { "id": "mon_smoker_brute", "fg": 7228, "bg": 7237 }, + { "id": "f_CTscan", "fg": 7237 }, + { "id": "f_MRI", "fg": 7238 }, + { "id": "f_rotary_clothesline", "fg": 7239 }, + { "id": "mon_troll", "fg": 7241, "bg": 7252 }, + { "id": "mon_albino_penguin", "fg": 7242, "bg": 7253 }, + { "id": "mon_gelatin", "fg": 7243, "bg": 7253 }, + { "id": "mon_smoker_brute", "fg": 7244, "bg": 7253 }, { "id": "mon_exodii_quad", "fg": [ - { "weight": 15, "sprite": 7239 }, - { "weight": 10, "sprite": 7240 }, - { "weight": 15, "sprite": 7241 }, - { "weight": 15, "sprite": 7242 } + { "weight": 15, "sprite": 7255 }, + { "weight": 10, "sprite": 7256 }, + { "weight": 15, "sprite": 7257 }, + { "weight": 15, "sprite": 7258 } ], - "bg": 7236 + "bg": 7252 }, { "id": "mon_exodii_turret", "fg": [ - { "weight": 15, "sprite": 7243 }, - { "weight": 5, "sprite": 7244 }, - { "weight": 15, "sprite": 7245 }, - { "weight": 15, "sprite": 7246 } + { "weight": 15, "sprite": 7259 }, + { "weight": 5, "sprite": 7260 }, + { "weight": 15, "sprite": 7261 }, + { "weight": 15, "sprite": 7262 } ], - "bg": 7237 - }, - { "id": "mon_fungal_blossom", "fg": 7247, "bg": 7237 }, - { "id": "mon_gas_zombie", "fg": 7248, "bg": 7238 }, - { "id": "mon_giant_crayfish", "fg": 7249, "bg": 7237 }, - { "id": "mon_slug_giant", "fg": 7250, "bg": 7236 }, - { "id": "mon_dog_zombie_hulk", "fg": 7251, "bg": 7237 }, - { "id": "mon_zhark", "fg": 7252 }, - { "id": "mon_ant_soldier", "fg": 7260, "bg": 7236 }, - { "id": "mon_ant_acid_soldier", "fg": 7258, "bg": 7236 }, - { "id": "corpse_mon_ant_soldier", "fg": 7256 }, - { "id": "corpse_mon_ant_acid_soldier", "fg": 7254 }, - { "id": "mon_ant_queen", "fg": 7259, "bg": 7236 }, - { "id": "mon_ant_acid_queen", "fg": 7257, "bg": 7236 }, - { "id": "corpse_mon_ant_queen", "fg": 7255 }, - { "id": "corpse_mon_ant_acid_queen", "fg": 7253 }, - { "id": "mon_bear", "fg": 7261, "bg": 7237 }, - { "id": "mon_bear_mutant_3headed", "fg": 7262, "bg": 7237 }, - { "id": "mon_blob_large", "fg": 7263, "bg": 7236 }, - { "id": "mon_boomer_huge", "fg": 7265, "bg": 7237 }, + "bg": 7253 + }, + { "id": "mon_fungal_blossom", "fg": 7263, "bg": 7253 }, + { "id": "mon_gas_zombie", "fg": 7264, "bg": 7254 }, + { "id": "mon_giant_crayfish", "fg": 7265, "bg": 7253 }, + { "id": "mon_slug_giant", "fg": 7266, "bg": 7252 }, + { "id": "mon_dog_zombie_hulk", "fg": 7267, "bg": 7253 }, + { "id": "mon_zhark", "fg": 7268 }, + { "id": "mon_ant_soldier", "fg": 7276, "bg": 7252 }, + { "id": "mon_ant_acid_soldier", "fg": 7274, "bg": 7252 }, + { "id": "corpse_mon_ant_soldier", "fg": 7272 }, + { "id": "corpse_mon_ant_acid_soldier", "fg": 7270 }, + { "id": "mon_ant_queen", "fg": 7275, "bg": 7252 }, + { "id": "mon_ant_acid_queen", "fg": 7273, "bg": 7252 }, + { "id": "corpse_mon_ant_queen", "fg": 7271 }, + { "id": "corpse_mon_ant_acid_queen", "fg": 7269 }, + { "id": "mon_bear", "fg": 7277, "bg": 7253 }, + { "id": "mon_bear_mutant_3headed", "fg": 7278, "bg": 7253 }, + { "id": "mon_blob_large", "fg": 7279, "bg": 7252 }, + { "id": "mon_boomer_huge", "fg": 7281, "bg": 7253 }, { "id": "mon_cow", "fg": [ - { "weight": 1, "sprite": 7266 }, - { "weight": 12, "sprite": 7267 }, - { "weight": 6, "sprite": 7268 }, - { "weight": 6, "sprite": 7269 }, - { "weight": 12, "sprite": 7270 } + { "weight": 1, "sprite": 7282 }, + { "weight": 12, "sprite": 7283 }, + { "weight": 6, "sprite": 7284 }, + { "weight": 6, "sprite": 7285 }, + { "weight": 12, "sprite": 7286 } ], - "bg": 7237 + "bg": 7253 }, - { "id": "mon_zow", "fg": 7271, "bg": 7237 }, + { "id": "mon_zow", "fg": 7287, "bg": 7253 }, { "id": "mon_crawler", - "fg": [ { "weight": 1, "sprite": 7272 }, { "weight": 1, "sprite": 7273 }, { "weight": 1, "sprite": 7274 } ], - "bg": 7237 + "fg": [ { "weight": 1, "sprite": 7288 }, { "weight": 1, "sprite": 7289 }, { "weight": 1, "sprite": 7290 } ], + "bg": 7253 }, - { "id": "mon_dark_wyrm", "fg": 7275, "bg": 7236 }, - { "id": "mon_deer", "fg": [ { "weight": 1, "sprite": 7276 }, { "weight": 2, "sprite": 7277 } ], "bg": 7237 }, + { "id": "mon_dark_wyrm", "fg": 7291, "bg": 7252 }, + { "id": "mon_deer", "fg": [ { "weight": 1, "sprite": 7292 }, { "weight": 2, "sprite": 7293 } ], "bg": 7253 }, { "id": "mon_deer_mutant_spider", - "fg": [ { "weight": 1, "sprite": 7278 }, { "weight": 2, "sprite": 7279 } ], - "bg": 7237 + "fg": [ { "weight": 1, "sprite": 7294 }, { "weight": 2, "sprite": 7295 } ], + "bg": 7253 }, - { "id": "mon_devourer", "fg": 7280, "bg": 7237 }, - { "id": "mon_dog_skeleton_brute", "fg": 7281, "bg": 7237 }, - { "id": "mon_dog_zombie_brute", "fg": 7282, "bg": 7237 }, + { "id": "mon_devourer", "fg": 7296, "bg": 7253 }, + { "id": "mon_dog_skeleton_brute", "fg": 7297, "bg": 7253 }, + { "id": "mon_dog_zombie_brute", "fg": 7298, "bg": 7253 }, { "id": "mon_flying_polyp", - "fg": [ { "weight": 1, "sprite": 7283 }, { "weight": 1, "sprite": 7284 }, { "weight": 1, "sprite": 7285 } ] + "fg": [ { "weight": 1, "sprite": 7299 }, { "weight": 1, "sprite": 7300 }, { "weight": 1, "sprite": 7301 } ] }, - { "id": "mon_frog_giant", "fg": 7286, "bg": 7236 }, - { "id": "mon_gator", "fg": 7288, "bg": 7236 }, - { "id": "mon_horse", "fg": [ { "weight": 1, "sprite": 7289 }, { "weight": 1, "sprite": 7290 } ], "bg": 7237 }, - { "id": "mon_zombie_horse", "fg": 7291, "bg": 7237 }, - { "id": "mon_human_snail", "fg": 7292, "bg": 7236 }, - { "id": "mon_jabberwock", "fg": 7293, "bg": 7236 }, + { "id": "mon_frog_giant", "fg": 7302, "bg": 7252 }, + { "id": "mon_gator", "fg": 7304, "bg": 7252 }, + { "id": "mon_horse", "fg": [ { "weight": 1, "sprite": 7305 }, { "weight": 1, "sprite": 7306 } ], "bg": 7253 }, + { "id": "mon_zombie_horse", "fg": 7307, "bg": 7253 }, + { "id": "mon_human_snail", "fg": 7308, "bg": 7252 }, + { "id": "mon_jabberwock", "fg": 7309, "bg": 7252 }, { "id": "mon_lady_bug_giant", "fg": [ - { "weight": 90, "sprite": 7294 }, - { "weight": 60, "sprite": 7295 }, - { "weight": 50, "sprite": 7296 }, - { "weight": 20, "sprite": 7297 }, - { "weight": 1, "sprite": 7298 } + { "weight": 90, "sprite": 7310 }, + { "weight": 60, "sprite": 7311 }, + { "weight": 50, "sprite": 7312 }, + { "weight": 20, "sprite": 7313 }, + { "weight": 1, "sprite": 7314 } ], - "bg": 7237 - }, - { "id": "mon_mantis_small", "fg": 7299, "bg": 7237 }, - { "id": "mon_mech_lifter", "fg": 7300 }, - { "id": "rid_mon_mech_lifter", "fg": 7301 }, - { "id": "mon_mi_go", "fg": 7302, "bg": 7237 }, - { "id": "mon_mi_go_slaver", "fg": 7306, "bg": 7237 }, - { "id": "mon_mi_go_surgeon", "fg": 7307, "bg": 7237 }, - { "id": "mon_mi_go_scout", "fg": 7305, "bg": 7237 }, - { "id": "mon_mi_go_guard", "fg": 7303, "bg": 7236 }, - { "id": "mon_mi_go_myrmidon", "fg": 7304, "bg": 7236 }, - { "id": "mon_moose", "fg": [ { "weight": 2, "sprite": 7308 }, { "weight": 2, "sprite": 7309 } ], "bg": 7236 }, - { "id": "mon_reindeer", "fg": 7312, "bg": 7237 }, - { "id": "mon_sheep", "fg": 7313, "bg": 7238 }, - { "id": "mon_spider_fungus", "fg": 7314, "bg": 7238 }, - { "id": "mon_tiger", "fg": 7315, "bg": 7237 }, - { "id": "mon_twisted_body", "fg": 7316, "bg": 7237 }, - { "id": "mon_wasp", "fg": 7317, "bg": 7237 }, - { "id": "mon_wolf_mutant_huge", "fg": 7318, "bg": 7236 }, - { "id": "mon_darkman", "fg": 7319 }, - { "id": "mon_zeer", "fg": 7320, "bg": 7237 }, - { "id": "mon_zeindeer", "fg": 7321, "bg": 7237 }, - { "id": "mon_ziger", "fg": 7322, "bg": 7237 }, - { "id": "mon_zombear", "fg": 7323, "bg": 7237 }, - { "id": "mon_zombear_acidic", "fg": 7324, "bg": 7237 }, - { "id": "mon_zombear_skeleton", "fg": 7325, "bg": 7237 }, - { "id": "mon_zombie_biter", "fg": 7326, "bg": 7237 }, - { "id": "mon_zombie_brute_winged", "fg": 7327, "bg": 7236 }, - { "id": "mon_zombie_dog_brute_acidic", "fg": 7328, "bg": 7237 }, + "bg": 7253 + }, + { "id": "mon_locust_mega", "fg": 7315, "bg": 7252 }, + { "id": "mon_mantis_small", "fg": 7316, "bg": 7253 }, + { "id": "mon_mech_lifter", "fg": 7317 }, + { "id": "rid_mon_mech_lifter", "fg": 7318 }, + { "id": "mon_mi_go", "fg": 7319, "bg": 7253 }, + { "id": "mon_mi_go_slaver", "fg": 7323, "bg": 7253 }, + { "id": "mon_mi_go_surgeon", "fg": 7324, "bg": 7253 }, + { "id": "mon_mi_go_scout", "fg": 7322, "bg": 7253 }, + { "id": "mon_mi_go_guard", "fg": 7320, "bg": 7252 }, + { "id": "mon_mi_go_myrmidon", "fg": 7321, "bg": 7252 }, + { "id": "mon_moose", "fg": [ { "weight": 2, "sprite": 7325 }, { "weight": 2, "sprite": 7326 } ], "bg": 7252 }, + { "id": "mon_reindeer", "fg": 7329, "bg": 7253 }, + { "id": "mon_sheep", "fg": 7330, "bg": 7254 }, + { "id": "mon_spider_fungus", "fg": 7331, "bg": 7254 }, + { "id": "mon_tiger", "fg": 7332, "bg": 7253 }, + { "id": "mon_twisted_body", "fg": 7333, "bg": 7253 }, + { "id": "mon_wasp", "fg": 7334, "bg": 7253 }, + { "id": "mon_wolf_mutant_huge", "fg": 7335, "bg": 7252 }, + { "id": "mon_darkman", "fg": 7336 }, + { "id": "mon_zeer", "fg": 7337, "bg": 7253 }, + { "id": "mon_zeindeer", "fg": 7338, "bg": 7253 }, + { "id": "mon_ziger", "fg": 7339, "bg": 7253 }, + { "id": "mon_zombear", "fg": 7340, "bg": 7253 }, + { "id": "mon_zombear_acidic", "fg": 7341, "bg": 7253 }, + { "id": "mon_zombear_skeleton", "fg": 7342, "bg": 7253 }, + { "id": "mon_zombie_biter", "fg": 7343, "bg": 7253 }, + { "id": "mon_zombie_brute_winged", "fg": 7344, "bg": 7252 }, + { "id": "mon_zombie_dog_brute_acidic", "fg": 7345, "bg": 7253 }, { "id": "mon_zombie_electric", - "fg": [ { "weight": 1, "sprite": 7330 }, { "weight": 1, "sprite": 7329 } ], - "bg": 7238 + "fg": [ { "weight": 1, "sprite": 7347 }, { "weight": 1, "sprite": 7346 } ], + "bg": 7254 }, { "id": "mon_zombie_nullfield", - "fg": [ { "weight": 1, "sprite": 7332 }, { "weight": 1, "sprite": 7331 } ], - "bg": 7238 - }, - { "id": "mon_zombie_pig_gas", "fg": 7333, "bg": 7238 }, - { "id": "mon_zombie_smoker", "fg": 7334, "bg": 7238 }, - { "id": "mon_zombie_smoker_fungus", "fg": 7335, "bg": 7238 }, - { "id": "mon_zombie_soldier_acid_2", "fg": 7336, "bg": 7237 }, - { "id": "mon_zombie_urchin", "fg": 7338, "bg": 7237 }, - { "id": "mon_zombull", "fg": 7339, "bg": 7237 }, - { "id": "mon_zoose", "fg": 7340, "bg": 7236 }, - { "id": "mon_zoose_brute", "fg": 7341, "bg": 7236 }, - { "id": "mon_zoose_thorny", "fg": 7342, "bg": 7236 }, - { "id": "mon_nursebot_defective", "fg": 7344, "bg": 7238 }, - { "id": "mon_nursebot", "fg": 7343, "bg": 7238 }, - { "id": "mon_zombie_brute_shocker", "fg": 7347, "bg": 7237 }, - { "id": "mon_skeleton_electric", "fg": 7348, "bg": 7238 }, - { "id": "mon_sludge_crawler", "fg": 7349, "bg": 7236 }, - { "id": "mon_spider_jumping_giant", "fg": 7355, "bg": 7238 }, - { "id": "mon_spider_web", "fg": 7359, "bg": 7238 }, - { "id": "corpse_mon_spider_web", "fg": 7350 }, - { "id": "mon_spider_wolf_giant", "fg": 7363, "bg": 7238 }, - { "id": "corpse_mon_spider_wolf_giant", "fg": 7351 }, - { "id": "mon_dermatik_incubator_spider", "fg": 7352, "bg": 7238 }, - { "id": "corpse_mon_dermatik_incubator_spider", "fg": 7350 }, - { "id": "mon_spider_cellar_giant", "fg": 7353, "bg": 7238 }, - { "id": "mon_spider_cellar_mega", "fg": 7354, "bg": 7237 }, - { "id": "mon_spider_jumping_mega", "fg": 7356, "bg": 7237 }, - { "id": "mon_spider_trapdoor_giant", "fg": 7357, "bg": 7238 }, - { "id": "mon_spider_trapdoor_mega", "fg": 7358, "bg": 7236 }, - { "id": "mon_spider_web_mega", "fg": 7360, "bg": 7236 }, - { "id": "mon_spider_widow_giant", "fg": 7361, "bg": 7238 }, - { "id": "mon_spider_widow_mega", "fg": 7362, "bg": 7236 }, - { "id": "mon_spider_wolf_mega", "fg": 7364, "bg": 7236 }, - { "id": "mon_dog_thing", "fg": 7365, "bg": 7237 }, - { "id": "mon_headless_dog_thing", "fg": 7366, "bg": 7237 }, - { "id": "mon_thing", "fg": 7367, "bg": 7236 }, - { "id": "mon_triffid_queen", "fg": 7368, "bg": 7236 }, - { "id": "mon_crows_m240", "fg": 7369, "bg": 7237 }, - { "id": "mon_turret_bmg", "fg": 7370, "bg": 7237 }, - { "id": "mon_turret_rifle", "fg": 7371, "bg": 7237 }, - { "id": "mon_vinebeast", "fg": 7374, "bg": 7236 }, - { "id": "mon_zombie_brute_ninja", "fg": 7375, "bg": 7237 }, - { "id": "mon_zombie_brute_grappler", "fg": 7376, "bg": 7237 }, + "fg": [ { "weight": 1, "sprite": 7349 }, { "weight": 1, "sprite": 7348 } ], + "bg": 7254 + }, + { "id": "mon_zombie_pig_gas", "fg": 7350, "bg": 7254 }, + { "id": "mon_zombie_smoker", "fg": 7351, "bg": 7254 }, + { "id": "mon_zombie_smoker_fungus", "fg": 7352, "bg": 7254 }, + { "id": "mon_zombie_soldier_acid_2", "fg": 7353, "bg": 7253 }, + { "id": "mon_zombie_urchin", "fg": 7355, "bg": 7253 }, + { "id": "mon_zombull", "fg": 7356, "bg": 7253 }, + { "id": "mon_zoose", "fg": 7357, "bg": 7252 }, + { "id": "mon_zoose_brute", "fg": 7358, "bg": 7252 }, + { "id": "mon_zoose_thorny", "fg": 7359, "bg": 7252 }, + { "id": "mon_nursebot_defective", "fg": 7361, "bg": 7254 }, + { "id": "mon_nursebot", "fg": 7360, "bg": 7254 }, + { "id": "mon_zombie_brute_shocker", "fg": 7364, "bg": 7253 }, + { "id": "mon_skeleton_electric", "fg": 7365, "bg": 7254 }, + { "id": "mon_sludge_crawler", "fg": 7366, "bg": 7252 }, + { "id": "mon_spider_jumping_giant", "fg": 7372, "bg": 7254 }, + { "id": "mon_spider_web", "fg": 7376, "bg": 7254 }, + { "id": "corpse_mon_spider_web", "fg": 7367 }, + { "id": "mon_spider_wolf_giant", "fg": 7380, "bg": 7254 }, + { "id": "corpse_mon_spider_wolf_giant", "fg": 7368 }, + { "id": "mon_dermatik_incubator_spider", "fg": 7369, "bg": 7254 }, + { "id": "corpse_mon_dermatik_incubator_spider", "fg": 7367 }, + { "id": "mon_spider_cellar_giant", "fg": 7370, "bg": 7254 }, + { "id": "mon_spider_cellar_mega", "fg": 7371, "bg": 7253 }, + { "id": "mon_spider_jumping_mega", "fg": 7373, "bg": 7253 }, + { "id": "mon_spider_trapdoor_giant", "fg": 7374, "bg": 7254 }, + { "id": "mon_spider_trapdoor_mega", "fg": 7375, "bg": 7252 }, + { "id": "mon_spider_web_mega", "fg": 7377, "bg": 7252 }, + { "id": "mon_spider_widow_giant", "fg": 7378, "bg": 7254 }, + { "id": "mon_spider_widow_mega", "fg": 7379, "bg": 7252 }, + { "id": "mon_spider_wolf_mega", "fg": 7381, "bg": 7252 }, + { "id": "mon_dog_thing", "fg": 7382, "bg": 7253 }, + { "id": "mon_headless_dog_thing", "fg": 7383, "bg": 7253 }, + { "id": "mon_thing", "fg": 7384, "bg": 7252 }, + { "id": "mon_triffid_queen", "fg": 7385, "bg": 7252 }, + { "id": "mon_crows_m240", "fg": 7386, "bg": 7253 }, + { "id": "mon_turret_bmg", "fg": 7387, "bg": 7253 }, + { "id": "mon_turret_rifle", "fg": 7388, "bg": 7253 }, + { "id": "mon_vinebeast", "fg": 7391, "bg": 7252 }, + { "id": "mon_zombie_brute_ninja", "fg": 7392, "bg": 7253 }, + { "id": "mon_zombie_brute_grappler", "fg": 7393, "bg": 7253 }, { "id": [ "forest_thick", "special_forest_thick" ], - "fg": [ { "weight": 4, "sprite": 7382 }, { "weight": 1, "sprite": 7383 } ], - "bg": 7394, + "fg": [ { "weight": 4, "sprite": 7399 }, { "weight": 1, "sprite": 7400 } ], + "bg": 7411, "rotates": false }, - { "id": "bridgehead_ground", "fg": [ 7387, 7386, 7388, 7389 ], "bg": 7396, "rotates": true }, - { "id": "bridge", "fg": [ 7385, 7384, 7385, 7384 ], "bg": 7395, "rotates": true }, - { "id": "bridgehead_ramp", "fg": [ 7391, 7390, 7392, 7393 ], "rotates": true }, - { "id": "bridge_road", "fg": [ 7385, 7384, 7385, 7384 ], "rotates": true }, - { "id": "t_tree_young", "fg": 7403, "bg": 7399 }, - { "id": "t_tree_young_season_summer", "fg": 7402, "bg": 7400, "rotates": false }, + { "id": "bridgehead_ground", "fg": [ 7404, 7403, 7405, 7406 ], "bg": 7413, "rotates": true }, + { "id": "bridge", "fg": [ 7402, 7401, 7402, 7401 ], "bg": 7412, "rotates": true }, + { "id": "bridgehead_ramp", "fg": [ 7408, 7407, 7409, 7410 ], "rotates": true }, + { "id": "bridge_road", "fg": [ 7402, 7401, 7402, 7401 ], "rotates": true }, + { "id": "t_tree_young", "fg": 7420, "bg": 7416 }, + { "id": "t_tree_young_season_summer", "fg": 7419, "bg": 7417, "rotates": false }, { "id": "t_tree_young_season_autumn", - "fg": [ { "weight": 100, "sprite": 7404 }, { "weight": 100, "sprite": 7405 } ], - "bg": 7398, + "fg": [ { "weight": 100, "sprite": 7421 }, { "weight": 100, "sprite": 7422 } ], + "bg": 7415, "rotates": false }, - { "id": "t_tree_young_season_winter", "fg": 7406, "bg": 7397, "rotates": false }, - { "id": "t_vat", "fg": 7407, "bg": 7401 }, - { "id": "corpse_mon_zombie_spitter", "fg": 7216 }, - { "id": "f_exodii_generator_1", "fg": 7217 }, - { "id": "f_exodii_generator_2", "fg": 7218 }, - { "id": "f_exodii_generator_3", "fg": 7219 }, - { "id": "f_exodii_generator_4", "fg": 7220 }, - { "id": "f_magiclysm_translocator_gate", "fg": 7224 }, - { "id": "mon_zombie_gasbag_crawler", "fg": 7229 }, - { "id": "mon_zombie_gasbag_immobile", "fg": 7230 }, - { "id": "mon_zombie_gasbag_impaler", "fg": 7231 }, - { "id": "mon_zombie_giant_heart", "fg": 7232 }, - { "id": "mon_zombie_hanging_innards", "fg": 7233 }, - { "id": "mon_zombie_living_wall", "fg": 7234 }, - { "id": "mon_zombie_scissorlimbs", "fg": 7235 }, - { "id": "mon_blood_sacrifice", "fg": 7264 }, - { "id": "mon_fungal_wall", "fg": 7287 }, - { "id": "mon_mutant_arthropod", "fg": 7310 }, - { "id": "mon_rat_king", "fg": 7311 }, - { "id": "mon_zombie_soldier_blackops_2", "fg": 7337 }, - { "id": "mon_leech_blossom", "fg": 7345 }, - { "id": "mon_leech_radio", "fg": 7346 }, - { "id": "mon_secubot", "fg": 7372 }, - { "id": "mon_talon_m202a1", "fg": 7373 }, - { "id": "overlay_wielded_as50", "fg": 7377 }, - { "id": "overlay_wielded_m107a1", "fg": 7378 }, - { "id": "overlay_wielded_m134", "fg": 7379 }, - { "id": "overlay_wielded_m2browning", "fg": 7380 }, - { "id": "overlay_wielded_mark19", "fg": 7381 } + { "id": "t_tree_young_season_winter", "fg": 7423, "bg": 7414, "rotates": false }, + { "id": "t_vat", "fg": 7424, "bg": 7418 }, + { "id": "corpse_mon_zombie_spitter", "fg": 7232 }, + { "id": "f_exodii_generator_1", "fg": 7233 }, + { "id": "f_exodii_generator_2", "fg": 7234 }, + { "id": "f_exodii_generator_3", "fg": 7235 }, + { "id": "f_exodii_generator_4", "fg": 7236 }, + { "id": "f_magiclysm_translocator_gate", "fg": 7240 }, + { "id": "mon_zombie_gasbag_crawler", "fg": 7245 }, + { "id": "mon_zombie_gasbag_immobile", "fg": 7246 }, + { "id": "mon_zombie_gasbag_impaler", "fg": 7247 }, + { "id": "mon_zombie_giant_heart", "fg": 7248 }, + { "id": "mon_zombie_hanging_innards", "fg": 7249 }, + { "id": "mon_zombie_living_wall", "fg": 7250 }, + { "id": "mon_zombie_scissorlimbs", "fg": 7251 }, + { "id": "mon_blood_sacrifice", "fg": 7280 }, + { "id": "mon_fungal_wall", "fg": 7303 }, + { "id": "mon_mutant_arthropod", "fg": 7327 }, + { "id": "mon_rat_king", "fg": 7328 }, + { "id": "mon_zombie_soldier_blackops_2", "fg": 7354 }, + { "id": "mon_leech_blossom", "fg": 7362 }, + { "id": "mon_leech_radio", "fg": 7363 }, + { "id": "mon_secubot", "fg": 7389 }, + { "id": "mon_talon_m202a1", "fg": 7390 }, + { "id": "overlay_wielded_as50", "fg": 7394 }, + { "id": "overlay_wielded_m107a1", "fg": 7395 }, + { "id": "overlay_wielded_m134", "fg": 7396 }, + { "id": "overlay_wielded_m2browning", "fg": 7397 }, + { "id": "overlay_wielded_mark19", "fg": 7398 } ] }, { "file": "large_ridden.png", - "//": "range 7408 to 7423", + "//": "range 7440 to 7455", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -27, "tiles": [ - { "id": "rid_mon_horse", "fg": [ { "weight": 1, "sprite": 7409 }, { "weight": 1, "sprite": 7410 } ] }, - { "id": "rid_mon_cow", "fg": 7408 } + { "id": "rid_mon_horse", "fg": [ { "weight": 1, "sprite": 7441 }, { "weight": 1, "sprite": 7442 } ] }, + { "id": "rid_mon_cow", "fg": 7440 } ] }, { "file": "huge.png", - "//": "range 7424 to 7455", + "//": "range 7456 to 7487", "sprite_width": 64, "sprite_height": 96, "sprite_offset_x": -16, "sprite_offset_y": -64, "tiles": [ - { "id": "mon_fungaloid_queen", "fg": 7425, "bg": 7424 }, - { "id": "mon_fungaloid_seeder", "fg": 7426, "bg": 7424 }, - { "id": "mon_fungaloid_tower", "fg": 7427, "bg": 7424 }, - { "id": "mon_zombie_kevlar_2", "fg": 7431 }, - { "id": "mon_zombie_hulk", "fg": 7430, "bg": 7424 }, - { "id": "mon_skeleton_hulk", "fg": 7429 }, - { "id": "mon_zombie_nemesis", "fg": 7432, "bg": 7424 }, - { "id": "mon_amigara_horror", "fg": 7433 }, - { "id": "mon_blob_brain", "fg": 7434, "bg": 7424 }, - { "id": "mon_flaming_eye", "fg": 7435 }, - { "id": "mon_nakedmolerat_giant", "fg": 7440, "bg": 7424 }, - { "id": "mon_shoggoth", "fg": 7441, "bg": 7424 }, - { "id": "mon_triffid_heart", "fg": 7442 }, - { "id": "mon_yugg", "fg": 7443, "bg": 7424 }, - { "id": "mon_skeleton_hulk_fungus", "fg": 7428 }, - { "id": "mon_frog_mother", "fg": 7436 }, - { "id": "mon_mutant_evolved", "fg": 7437 }, - { "id": "mon_mutant_mollusk", "fg": 7438 }, - { "id": "corpse_mon_nakedmolerat_giant", "fg": 7439 }, - { "id": "mon_zombie_crushed_giant", "fg": 7444 } + { "id": "mon_fungaloid_queen", "fg": 7457, "bg": 7456 }, + { "id": "mon_fungaloid_seeder", "fg": 7458, "bg": 7456 }, + { "id": "mon_fungaloid_tower", "fg": 7459, "bg": 7456 }, + { "id": "mon_zombie_kevlar_2", "fg": 7463 }, + { "id": "mon_zombie_hulk", "fg": 7462, "bg": 7456 }, + { "id": "mon_skeleton_hulk", "fg": 7461 }, + { "id": "mon_zombie_nemesis", "fg": 7464, "bg": 7456 }, + { "id": "mon_amigara_horror", "fg": 7465 }, + { "id": "mon_blob_brain", "fg": 7466, "bg": 7456 }, + { "id": "mon_flaming_eye", "fg": 7467 }, + { "id": "mon_nakedmolerat_giant", "fg": 7472, "bg": 7456 }, + { "id": "mon_shoggoth", "fg": 7473, "bg": 7456 }, + { "id": "mon_triffid_heart", "fg": 7474 }, + { "id": "mon_yugg", "fg": 7475, "bg": 7456 }, + { "id": "mon_skeleton_hulk_fungus", "fg": 7460 }, + { "id": "mon_frog_mother", "fg": 7468 }, + { "id": "mon_mutant_evolved", "fg": 7469 }, + { "id": "mon_mutant_mollusk", "fg": 7470 }, + { "id": "corpse_mon_nakedmolerat_giant", "fg": 7471 }, + { "id": "mon_zombie_crushed_giant", "fg": 7476 } ] }, { "file": "giant.png", - "//": "range 7456 to 7519", + "//": "range 7488 to 7551", "sprite_width": 96, "sprite_height": 96, "sprite_offset_x": -32, "sprite_offset_y": -64, "tiles": [ - { "id": "t_tree", "fg": 7468, "bg": 7461 }, - { "id": "t_tree_season_summer", "fg": 7463, "bg": 7462 }, + { "id": "t_tree", "fg": 7500, "bg": 7493 }, + { "id": "t_tree_season_summer", "fg": 7495, "bg": 7494 }, { "id": "t_tree_season_autumn", "fg": [ - { "weight": 100, "sprite": 7464 }, - { "weight": 100, "sprite": 7465 }, - { "weight": 100, "sprite": 7466 }, - { "weight": 100, "sprite": 7467 } + { "weight": 100, "sprite": 7496 }, + { "weight": 100, "sprite": 7497 }, + { "weight": 100, "sprite": 7498 }, + { "weight": 100, "sprite": 7499 } ], - "bg": 7460 + "bg": 7492 }, - { "id": "t_tree_season_winter", "fg": 7492, "bg": 7459 }, - { "id": "t_tree_apple", "fg": 7469, "bg": 7461 }, - { "id": "t_tree_apple_season_summer", "fg": 7469, "bg": 7462 }, - { "id": "t_tree_apple_season_winter", "fg": 7474, "bg": 7459 }, + { "id": "t_tree_season_winter", "fg": 7524, "bg": 7491 }, + { "id": "t_tree_apple", "fg": 7501, "bg": 7493 }, + { "id": "t_tree_apple_season_summer", "fg": 7501, "bg": 7494 }, + { "id": "t_tree_apple_season_winter", "fg": 7506, "bg": 7491 }, { "id": "t_tree_apple_season_autumn", - "fg": [ { "weight": 1, "sprite": 7470 }, { "weight": 1, "sprite": 7471 } ], - "bg": 7460 + "fg": [ { "weight": 1, "sprite": 7502 }, { "weight": 1, "sprite": 7503 } ], + "bg": 7492 }, { "id": "t_tree_apple_harvested", - "fg": [ { "weight": 1, "sprite": 7472 }, { "weight": 1, "sprite": 7473 } ], - "bg": 7460 + "fg": [ { "weight": 1, "sprite": 7504 }, { "weight": 1, "sprite": 7505 } ], + "bg": 7492 }, - { "id": "t_tree_beech", "fg": 7476, "bg": 7461 }, - { "id": "t_tree_beech_season_summer", "fg": 7477, "bg": 7462 }, - { "id": "t_tree_beech_season_autumn", "fg": 7475, "bg": 7460 }, - { "id": "t_tree_beech_season_winter", "fg": 7478, "bg": 7459 }, - { "id": "t_tree_birch", "fg": 7479, "bg": 7461 }, - { "id": "t_tree_birch_season_summer", "fg": 7479, "bg": 7462 }, - { "id": "t_tree_birch_season_winter", "fg": 7482, "bg": 7459 }, + { "id": "t_tree_beech", "fg": 7508, "bg": 7493 }, + { "id": "t_tree_beech_season_summer", "fg": 7509, "bg": 7494 }, + { "id": "t_tree_beech_season_autumn", "fg": 7507, "bg": 7492 }, + { "id": "t_tree_beech_season_winter", "fg": 7510, "bg": 7491 }, + { "id": "t_tree_birch", "fg": 7511, "bg": 7493 }, + { "id": "t_tree_birch_season_summer", "fg": 7511, "bg": 7494 }, + { "id": "t_tree_birch_season_winter", "fg": 7514, "bg": 7491 }, { "id": "t_tree_birch_season_autumn", - "fg": [ { "weight": 1, "sprite": 7480 }, { "weight": 1, "sprite": 7481 } ], - "bg": 7460 + "fg": [ { "weight": 1, "sprite": 7512 }, { "weight": 1, "sprite": 7513 } ], + "bg": 7492 }, - { "id": "t_tree_cherry", "fg": 7483, "bg": 7461 }, - { "id": "t_tree_cherry_season_summer", "fg": 7487, "bg": 7462 }, - { "id": "t_tree_cherry_harvested", "fg": 7486, "bg": 7462 }, - { "id": "t_tree_cherry_season_winter", "fg": 7488, "bg": 7459 }, + { "id": "t_tree_cherry", "fg": 7515, "bg": 7493 }, + { "id": "t_tree_cherry_season_summer", "fg": 7519, "bg": 7494 }, + { "id": "t_tree_cherry_harvested", "fg": 7518, "bg": 7494 }, + { "id": "t_tree_cherry_season_winter", "fg": 7520, "bg": 7491 }, { "id": "t_tree_cherry_season_autumn", - "fg": [ { "weight": 1, "sprite": 7484 }, { "weight": 1, "sprite": 7485 } ], - "bg": 7460 + "fg": [ { "weight": 1, "sprite": 7516 }, { "weight": 1, "sprite": 7517 } ], + "bg": 7492 }, - { "id": "t_tree_cottonwood_season_spring", "fg": 7490, "bg": 7461 }, - { "id": "t_tree_cottonwood_season_summer", "fg": 7491, "bg": 7462 }, - { "id": "t_tree_cottonwood_season_autumn", "fg": 7489, "bg": 7460 }, - { "id": "t_tree_cottonwood_season_winter", "fg": 7492, "bg": 7459 }, + { "id": "t_tree_cottonwood_season_spring", "fg": 7522, "bg": 7493 }, + { "id": "t_tree_cottonwood_season_summer", "fg": 7523, "bg": 7494 }, + { "id": "t_tree_cottonwood_season_autumn", "fg": 7521, "bg": 7492 }, + { "id": "t_tree_cottonwood_season_winter", "fg": 7524, "bg": 7491 }, { "id": "t_tree_dead", - "fg": [ { "weight": 100, "sprite": 7492 }, { "weight": 100, "sprite": 8484 } ], - "bg": 7461 + "fg": [ { "weight": 100, "sprite": 7524 }, { "weight": 100, "sprite": 8532 } ], + "bg": 7493 }, { "id": "t_tree_dead_season_summer", - "fg": [ { "weight": 100, "sprite": 7492 }, { "weight": 100, "sprite": 8484 } ], - "bg": 7462 + "fg": [ { "weight": 100, "sprite": 7524 }, { "weight": 100, "sprite": 8532 } ], + "bg": 7494 }, { "id": "t_tree_dead_season_autumn", - "fg": [ { "weight": 100, "sprite": 7492 }, { "weight": 100, "sprite": 8484 } ], - "bg": 7460 + "fg": [ { "weight": 100, "sprite": 7524 }, { "weight": 100, "sprite": 8532 } ], + "bg": 7492 }, { "id": "t_tree_dead_season_winter", - "fg": [ { "weight": 100, "sprite": 7492 }, { "weight": 100, "sprite": 8484 } ], - "bg": 7459 - }, - { "id": "t_tree_elm_season_spring", "fg": 7494, "bg": 7461 }, - { "id": "t_tree_elm_season_summer", "fg": 7495, "bg": 7462 }, - { "id": "t_tree_elm_season_autumn", "fg": 7493, "bg": 7460 }, - { "id": "t_tree_elm_season_winter", "fg": 7496, "bg": 7459 }, - { "id": "t_tree_maple", "fg": 7498, "bg": 7461 }, - { "id": "t_tree_maple_season_summer", "fg": 7499, "bg": 7462 }, - { "id": "t_tree_maple_season_autumn", "fg": 7497, "bg": 7460 }, - { "id": "t_tree_maple_season_winter", "fg": 7500, "bg": 7459 }, - { "id": "t_tree_peach_season_spring", "fg": 7501, "bg": 7461 }, - { "id": "t_tree_peach_season_summer", "fg": 7504, "bg": 7462 }, - { "id": "t_tree_peach_harvested", "fg": 7501, "bg": 7462 }, - { "id": "t_tree_peach_season_winter", "fg": 7505, "bg": 7459 }, + "fg": [ { "weight": 100, "sprite": 7524 }, { "weight": 100, "sprite": 8532 } ], + "bg": 7491 + }, + { "id": "t_tree_elm_season_spring", "fg": 7526, "bg": 7493 }, + { "id": "t_tree_elm_season_summer", "fg": 7527, "bg": 7494 }, + { "id": "t_tree_elm_season_autumn", "fg": 7525, "bg": 7492 }, + { "id": "t_tree_elm_season_winter", "fg": 7528, "bg": 7491 }, + { "id": "t_tree_maple", "fg": 7530, "bg": 7493 }, + { "id": "t_tree_maple_season_summer", "fg": 7531, "bg": 7494 }, + { "id": "t_tree_maple_season_autumn", "fg": 7529, "bg": 7492 }, + { "id": "t_tree_maple_season_winter", "fg": 7532, "bg": 7491 }, + { "id": "t_tree_peach_season_spring", "fg": 7533, "bg": 7493 }, + { "id": "t_tree_peach_season_summer", "fg": 7536, "bg": 7494 }, + { "id": "t_tree_peach_harvested", "fg": 7533, "bg": 7494 }, + { "id": "t_tree_peach_season_winter", "fg": 7537, "bg": 7491 }, { "id": "t_tree_peach_season_autumn", - "fg": [ { "weight": 1, "sprite": 7502 }, { "weight": 1, "sprite": 7503 } ], - "bg": 7460 + "fg": [ { "weight": 1, "sprite": 7534 }, { "weight": 1, "sprite": 7535 } ], + "bg": 7492 }, - { "id": "mon_ant_soldier_mega", "fg": 7456 }, - { "id": "mon_dragon_dummy", "fg": 7457 }, - { "id": "mon_graboid", "fg": 7458 } + { "id": "mon_ant_soldier_mega", "fg": 7488 }, + { "id": "mon_dragon_dummy", "fg": 7489 }, + { "id": "mon_graboid", "fg": 7490 } ] }, { "file": "incomplete.png", - "//": "range 7520 to 8319", + "//": "range 7552 to 8335", "tiles": [ - { "id": "unknown", "fg": 7520 }, + { "id": "unknown", "fg": 7552 }, { "id": "fd_blood", - "fg": 7552, + "fg": 7584, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7521 }, - { "id": "corner", "fg": [ 7523, 7525, 7524, 7522 ] }, - { "id": "t_connection", "fg": [ 7549, 7551, 7550, 7548 ] }, - { "id": "edge", "fg": [ 7527, 7526 ] }, - { "id": "end_piece", "fg": [ 7529, 7531, 7530, 7528 ] }, - { "id": "unconnected", "fg": [ 7552, 7552 ] } + { "id": "center", "fg": 7553 }, + { "id": "corner", "fg": [ 7555, 7557, 7556, 7554 ] }, + { "id": "t_connection", "fg": [ 7581, 7583, 7582, 7580 ] }, + { "id": "edge", "fg": [ 7559, 7558 ] }, + { "id": "end_piece", "fg": [ 7561, 7563, 7562, 7560 ] }, + { "id": "unconnected", "fg": [ 7584, 7584 ] } ] }, { "id": [ "fd_blood_insect", "fd_blood_invertebrate" ], - "fg": 7547, + "fg": 7579, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7532 }, - { "id": "corner", "fg": [ 7534, 7536, 7535, 7533 ] }, - { "id": "t_connection", "fg": [ 7544, 7546, 7545, 7543 ] }, - { "id": "edge", "fg": [ 7538, 7537 ] }, - { "id": "end_piece", "fg": [ 7540, 7542, 7541, 7539 ] }, - { "id": "unconnected", "fg": [ 7547, 7547 ] } + { "id": "center", "fg": 7564 }, + { "id": "corner", "fg": [ 7566, 7568, 7567, 7565 ] }, + { "id": "t_connection", "fg": [ 7576, 7578, 7577, 7575 ] }, + { "id": "edge", "fg": [ 7570, 7569 ] }, + { "id": "end_piece", "fg": [ 7572, 7574, 7573, 7571 ] }, + { "id": "unconnected", "fg": [ 7579, 7579 ] } ] }, { "id": "fd_web", "fg": [ - { "weight": 100, "sprite": 7553 }, - { "weight": 100, "sprite": 7554 }, - { "weight": 25, "sprite": 7555 }, - { "weight": 25, "sprite": 7556 } - ] - }, - { "id": "fd_spotlight", "fg": 7557 }, - { "id": "f_makeshift_bed", "fg": 7560 }, - { "id": "f_straw_bed", "fg": 7561 }, - { "id": "f_bed_frame", "fg": 7558 }, - { "id": "f_camp_chair", "fg": 7565 }, - { "id": "f_lane", "fg": 7566 }, - { "id": "f_piano", "fg": 7567 }, - { "id": "f_pinball_machine", "fg": 7568 }, - { "id": "f_seat_airplane", "fg": 7569 }, + { "weight": 100, "sprite": 7585 }, + { "weight": 100, "sprite": 7586 }, + { "weight": 25, "sprite": 7587 }, + { "weight": 25, "sprite": 7588 } + ] + }, + { "id": "fd_spotlight", "fg": 7589 }, + { "id": "f_makeshift_bed", "fg": 7592 }, + { "id": "f_straw_bed", "fg": 7593 }, + { "id": "f_bed_frame", "fg": 7590 }, + { "id": "f_camp_chair", "fg": 7597 }, + { "id": "f_lane", "fg": 7598 }, + { "id": "f_piano", "fg": 7599 }, + { "id": "f_pinball_machine", "fg": 7600 }, + { "id": "f_seat_airplane", "fg": 7601 }, { "id": "f_sink", "multitile": true, - "fg": 7585, - "additional_tiles": [ - { "id": "center", "fg": 7570 }, - { "id": "corner", "fg": [ 7572, 7574, 7573, 7571 ] }, - { "id": "t_connection", "fg": [ 7582, 7584, 7583, 7581 ] }, - { "id": "edge", "fg": [ 7576, 7575 ] }, - { "id": "end_piece", "fg": [ 7578, 7580, 7579, 7577 ] }, - { "id": "unconnected", "fg": 7585 } - ] - }, - { "id": "f_solar_unit", "fg": 7586 }, - { "id": "f_speaker_cabinet", "fg": 7587 }, - { "id": "f_water_mill", "fg": 7588 }, - { "id": "water_mill", "fg": 7589 }, - { "id": "f_water_purifier", "fg": 7590 }, - { "id": "f_wood_keg", "fg": 7728 }, - { "id": "30gal_barrel", "fg": 7591 }, - { "id": "30gal_drum", "fg": 7592 }, - { "id": "alarmclock", "fg": 7593 }, - { "id": "clock", "fg": 7593 }, - { "id": "anvil", "fg": 7597 }, - { "id": [ "autoclave", "vh_autoclave" ], "fg": 7598 }, - { "id": "bag_canvas_small", "fg": 7600 }, - { "id": "bathroom_scale", "fg": 7601 }, - { "id": "bead_necklace", "fg": 7602 }, - { "id": "brazier", "fg": 7603 }, - { "id": "bubblewrap", "fg": 7604 }, - { "id": "bucket", "fg": 7605 }, - { "id": "camera_pro", "fg": 7611 }, - { "id": "condom", "fg": 7612 }, - { "id": "craft", "fg": 7613 }, - { "id": "pomegranate", "fg": 7624 }, - { "id": "peach", "fg": 7622 }, - { "id": "strawberries", "fg": 7625 }, - { "id": "cabbage", "fg": 7614 }, - { "id": "mango", "fg": 7620 }, - { "id": "kiwi", "fg": 7619 }, - { "id": "papaya", "fg": 7621 }, - { "id": "grapefruit", "fg": 7618 }, - { "id": "pineapple", "fg": 7623 }, - { "id": "celery", "fg": 7616 }, - { "id": "chili_pepper", "fg": 7617 }, - { "id": "carrot", "fg": 7615 }, - { "id": "zucchini", "fg": 7626 }, - { "id": "akmag30", "fg": 7627 }, - { "id": "duct_tape", "fg": 7628 }, - { "id": "electric_lantern", "fg": 7629 }, - { "id": "extinguisher", "fg": 7630 }, - { "id": "sm_extinguisher", "fg": 7631 }, - { "id": "fan", "fg": 7632 }, + "fg": 7617, + "additional_tiles": [ + { "id": "center", "fg": 7602 }, + { "id": "corner", "fg": [ 7604, 7606, 7605, 7603 ] }, + { "id": "t_connection", "fg": [ 7614, 7616, 7615, 7613 ] }, + { "id": "edge", "fg": [ 7608, 7607 ] }, + { "id": "end_piece", "fg": [ 7610, 7612, 7611, 7609 ] }, + { "id": "unconnected", "fg": 7617 } + ] + }, + { "id": "f_solar_unit", "fg": 7618 }, + { "id": "f_speaker_cabinet", "fg": 7619 }, + { "id": "f_water_mill", "fg": 7620 }, + { "id": "water_mill", "fg": 7621 }, + { "id": "f_water_purifier", "fg": 7622 }, + { "id": "f_wood_keg", "fg": 7760 }, + { "id": "30gal_barrel", "fg": 7623 }, + { "id": "30gal_drum", "fg": 7624 }, + { "id": "alarmclock", "fg": 7625 }, + { "id": "clock", "fg": 7625 }, + { "id": "anvil", "fg": 7629 }, + { "id": [ "autoclave", "vh_autoclave" ], "fg": 7630 }, + { "id": "bag_canvas_small", "fg": 7632 }, + { "id": "bathroom_scale", "fg": 7633 }, + { "id": "bead_necklace", "fg": 7634 }, + { "id": "brazier", "fg": 7635 }, + { "id": "bubblewrap", "fg": 7636 }, + { "id": "bucket", "fg": 7637 }, + { "id": "camera_pro", "fg": 7643 }, + { "id": "condom", "fg": 7644 }, + { "id": "craft", "fg": 7645 }, + { "id": "pomegranate", "fg": 7656 }, + { "id": "peach", "fg": 7654 }, + { "id": "strawberries", "fg": 7657 }, + { "id": "cabbage", "fg": 7646 }, + { "id": "mango", "fg": 7652 }, + { "id": "kiwi", "fg": 7651 }, + { "id": "papaya", "fg": 7653 }, + { "id": "grapefruit", "fg": 7650 }, + { "id": "pineapple", "fg": 7655 }, + { "id": "celery", "fg": 7648 }, + { "id": "chili_pepper", "fg": 7649 }, + { "id": "carrot", "fg": 7647 }, + { "id": "zucchini", "fg": 7658 }, + { "id": "akmag30", "fg": 7659 }, + { "id": "duct_tape", "fg": 7660 }, + { "id": "electric_lantern", "fg": 7661 }, + { "id": "extinguisher", "fg": 7662 }, + { "id": "sm_extinguisher", "fg": 7663 }, + { "id": "fan", "fg": 7664 }, { "id": [ "family_photo", @@ -11598,19 +11579,19 @@ "battleship", "clue" ], - "fg": 7633 - }, - { "id": [ "birchbark_funnel", "funnel", "makeshift_funnel", "metal_funnel" ], "fg": 7634 }, - { "id": [ "tr_funnel", "tr_makeshift_funnel", "tr_raincatcher", "tr_metal_funnel" ], "fg": 7636 }, - { "id": "glock17_17", "fg": 7638 }, - { "id": "holy_symbol", "fg": 7639 }, - { "id": "holy_symbol_wood", "fg": 7640 }, - { "id": "hotplate", "fg": 7641 }, - { "id": "jerrycan", "fg": 7642 }, - { "id": "jerrycan_big", "fg": 7643 }, - { "id": "keg", "fg": 7644 }, - { "id": [ "toothbrush_plain", "toothbrush_dirty" ], "fg": 7658 }, - { "id": [ "fc_hairpin", "platinum_hairpin", "silver_hairpin", "copper_hairpin", "tieclip" ], "fg": 7651 }, + "fg": 7665 + }, + { "id": [ "birchbark_funnel", "funnel", "makeshift_funnel", "metal_funnel" ], "fg": 7666 }, + { "id": [ "tr_funnel", "tr_makeshift_funnel", "tr_raincatcher", "tr_metal_funnel" ], "fg": 7668 }, + { "id": "glock17_17", "fg": 7670 }, + { "id": "holy_symbol", "fg": 7671 }, + { "id": "holy_symbol_wood", "fg": 7672 }, + { "id": "hotplate", "fg": 7673 }, + { "id": "jerrycan", "fg": 7674 }, + { "id": "jerrycan_big", "fg": 7675 }, + { "id": "keg", "fg": 7676 }, + { "id": [ "toothbrush_plain", "toothbrush_dirty" ], "fg": 7690 }, + { "id": [ "fc_hairpin", "platinum_hairpin", "silver_hairpin", "copper_hairpin", "tieclip" ], "fg": 7683 }, { "id": [ "nyquil", @@ -11762,7 +11743,7 @@ "wine_chardonnay", "drink_martini" ], - "fg": 7661 + "fg": 7693 }, { "id": [ @@ -11803,7 +11784,7 @@ "soup_tomato", "young_yeast" ], - "fg": 7663 + "fg": 7695 }, { "id": [ @@ -11825,57 +11806,57 @@ "hi_q_distillate_tails", "hi_q_distillate" ], - "fg": 7662 - }, - { "id": "longsword", "fg": 7664 }, - { "id": "longsword_inferior", "fg": 7666 }, - { "id": "longsword_fake", "fg": 7665 }, - { "id": "mask_gas", "fg": 7667 }, - { "id": "plastic_chunk", "fg": 7668 }, - { "id": "scrap_copper", "fg": 7669 }, - { "id": "oil_lamp", "fg": 7670 }, - { "id": "pickaxe", "fg": 7671 }, - { "id": "pitchfork", "fg": 7672 }, - { "id": "plunger_futuristic", "fg": 7673 }, - { "id": "plunger_toilet", "fg": 7674 }, - { "id": "pocketwatch", "fg": 7675 }, - { "id": "bacon", "fg": 7676 }, - { "id": "porkbelly", "fg": 7677 }, - { "id": "raw_cured_fatty_meat", "fg": 7678 }, - { "id": "raw_curing_fatty_meat", "fg": 7679 }, - { "id": "material_sand", "fg": 7706 }, - { "id": "material_soil", "fg": 7708 }, - { "id": "chem_aluminium_powder", "fg": 7680 }, - { "id": "chem_aluminium_sulphate", "fg": 7681 }, - { "id": "chem_ammonium_nitrate", "fg": 7682 }, - { "id": "chem_black_powder", "fg": 7683 }, - { "id": "cac2powder", "fg": 7684 }, - { "id": "chilly-p", "fg": 7685 }, - { "id": "meal_chitin_piece", "fg": 7686 }, - { "id": "chem_chromium_oxide", "fg": 7687 }, - { "id": "coffee_raw", "fg": 7688 }, - { "id": "curry_powder", "fg": 7689 }, - { "id": "powder_eggs", "fg": 7690 }, - { "id": "fungicide", "fg": 7691 }, - { "id": "insecticide", "fg": 7693 }, - { "id": "chem_hmtd", "fg": 7692 }, - { "id": "lemonade_powder", "fg": 7694 }, - { "id": "lye_powder", "fg": 7695 }, - { "id": "magnesium", "fg": 7696 }, - { "id": "chem_manganese_dioxide", "fg": 7697 }, - { "id": "chem_match_head_powder", "fg": 7698 }, - { "id": "mustard_powder", "fg": 7699 }, - { "id": "oxy_powder", "fg": 7700 }, - { "id": "chem_peptone_broth", "fg": 7701 }, - { "id": "protein_powder", "fg": 7702 }, - { "id": "material_quicklime", "fg": 7703 }, - { "id": "chem_rocket_fuel", "fg": 7704 }, - { "id": "chem_saltpetre", "fg": 7705 }, - { "id": "gunpowder", "fg": 7707 }, - { "id": "chem_thermite", "fg": 7709 }, - { "id": "tin", "fg": 7710 }, - { "id": "yeast", "fg": 7712 }, - { "id": "chem_zinc_powder", "fg": 7713 }, + "fg": 7694 + }, + { "id": "longsword", "fg": 7696 }, + { "id": "longsword_inferior", "fg": 7698 }, + { "id": "longsword_fake", "fg": 7697 }, + { "id": "mask_gas", "fg": 7699 }, + { "id": "plastic_chunk", "fg": 7700 }, + { "id": "scrap_copper", "fg": 7701 }, + { "id": "oil_lamp", "fg": 7702 }, + { "id": "pickaxe", "fg": 7703 }, + { "id": "pitchfork", "fg": 7704 }, + { "id": "plunger_futuristic", "fg": 7705 }, + { "id": "plunger_toilet", "fg": 7706 }, + { "id": "pocketwatch", "fg": 7707 }, + { "id": "bacon", "fg": 7708 }, + { "id": "porkbelly", "fg": 7709 }, + { "id": "raw_cured_fatty_meat", "fg": 7710 }, + { "id": "raw_curing_fatty_meat", "fg": 7711 }, + { "id": "material_sand", "fg": 7738 }, + { "id": "material_soil", "fg": 7740 }, + { "id": "chem_aluminium_powder", "fg": 7712 }, + { "id": "chem_aluminium_sulphate", "fg": 7713 }, + { "id": "chem_ammonium_nitrate", "fg": 7714 }, + { "id": "chem_black_powder", "fg": 7715 }, + { "id": "cac2powder", "fg": 7716 }, + { "id": "chilly-p", "fg": 7717 }, + { "id": "meal_chitin_piece", "fg": 7718 }, + { "id": "chem_chromium_oxide", "fg": 7719 }, + { "id": "coffee_raw", "fg": 7720 }, + { "id": "curry_powder", "fg": 7721 }, + { "id": "powder_eggs", "fg": 7722 }, + { "id": "fungicide", "fg": 7723 }, + { "id": "insecticide", "fg": 7725 }, + { "id": "chem_hmtd", "fg": 7724 }, + { "id": "lemonade_powder", "fg": 7726 }, + { "id": "lye_powder", "fg": 7727 }, + { "id": "magnesium", "fg": 7728 }, + { "id": "chem_manganese_dioxide", "fg": 7729 }, + { "id": "chem_match_head_powder", "fg": 7730 }, + { "id": "mustard_powder", "fg": 7731 }, + { "id": "oxy_powder", "fg": 7732 }, + { "id": "chem_peptone_broth", "fg": 7733 }, + { "id": "protein_powder", "fg": 7734 }, + { "id": "material_quicklime", "fg": 7735 }, + { "id": "chem_rocket_fuel", "fg": 7736 }, + { "id": "chem_saltpetre", "fg": 7737 }, + { "id": "gunpowder", "fg": 7739 }, + { "id": "chem_thermite", "fg": 7741 }, + { "id": "tin", "fg": 7742 }, + { "id": "yeast", "fg": 7744 }, + { "id": "chem_zinc_powder", "fg": 7745 }, { "id": [ "sugar", @@ -11888,140 +11869,140 @@ "quikclot", "chem_acrylamide" ], - "fg": 7711 - }, - { "id": "radio", "fg": 7714 }, - { "id": "ref_lighter", "fg": 7715 }, - { "id": "rhubarb", "fg": 7716 }, - { "id": "rope_6", "fg": 7717 }, - { "id": "spray_can", "fg": 7718 }, - { "id": "stanag30", "fg": 7719 }, - { "id": "stepladder", "fg": 7720 }, - { "id": "stereo", "fg": 7721 }, - { "id": [ "toolbox", "toolbox_empty", "toolbox_workshop_empty" ], "fg": 7722 }, - { "id": "waffleiron", "fg": 7723 }, - { "id": "warhammer", "fg": 7724 }, - { "id": "welding_mask", "fg": 7725 }, - { "id": "wind_mill", "fg": 7726 }, - { "id": "wood_beam", "fg": 7727 }, - { "id": "wooden_barrel", "fg": 7728 }, - { "id": "zweihander", "fg": 7729 }, - { "id": "zweihander_inferior", "fg": 7731 }, - { "id": "zweihander_fake", "fg": 7730 }, - { "id": "mon_grenade_hack", "fg": 7740, "bg": 2498 }, - { "id": "mon_mininuke_hack", "fg": 7742, "bg": 2498 }, - { "id": "bot_grenade_hack", "fg": 7734 }, - { "id": "bot_mininuke_hack", "fg": 7735 }, - { "id": "mon_manhack", "fg": 7741, "bg": 2498 }, - { "id": "mon_gasbomb_hack", "fg": 7739, "bg": 2498 }, - { "id": "mon_flashbang_hack", "fg": 7738, "bg": 2498 }, - { "id": "mon_c4_hack", "fg": 7737, "bg": 2498 }, - { "id": "mon_EMP_hack", "fg": 7736, "bg": 2498 }, - { "id": "mon_grocerybot", "fg": 7743, "bg": 2498 }, - { "id": "mon_grocerybot_busted", "fg": 7744, "bg": 2498 }, - { "id": "mon_raccoon", "fg": 7745, "bg": 2498 }, - { "id": "mon_weasel", "fg": 7746, "bg": 2498 }, - { "id": "infrared_creature", "fg": 7747 }, + "fg": 7743 + }, + { "id": "radio", "fg": 7746 }, + { "id": "ref_lighter", "fg": 7747 }, + { "id": "rhubarb", "fg": 7748 }, + { "id": "rope_6", "fg": 7749 }, + { "id": "spray_can", "fg": 7750 }, + { "id": "stanag30", "fg": 7751 }, + { "id": "stepladder", "fg": 7752 }, + { "id": "stereo", "fg": 7753 }, + { "id": [ "toolbox", "toolbox_empty", "toolbox_workshop_empty" ], "fg": 7754 }, + { "id": "waffleiron", "fg": 7755 }, + { "id": "warhammer", "fg": 7756 }, + { "id": "welding_mask", "fg": 7757 }, + { "id": "wind_mill", "fg": 7758 }, + { "id": "wood_beam", "fg": 7759 }, + { "id": "wooden_barrel", "fg": 7760 }, + { "id": "zweihander", "fg": 7761 }, + { "id": "zweihander_inferior", "fg": 7763 }, + { "id": "zweihander_fake", "fg": 7762 }, + { "id": "mon_grenade_hack", "fg": 7772, "bg": 2498 }, + { "id": "mon_mininuke_hack", "fg": 7774, "bg": 2498 }, + { "id": "bot_grenade_hack", "fg": 7766 }, + { "id": "bot_mininuke_hack", "fg": 7767 }, + { "id": "mon_manhack", "fg": 7773, "bg": 2498 }, + { "id": "mon_gasbomb_hack", "fg": 7771, "bg": 2498 }, + { "id": "mon_flashbang_hack", "fg": 7770, "bg": 2498 }, + { "id": "mon_c4_hack", "fg": 7769, "bg": 2498 }, + { "id": "mon_EMP_hack", "fg": 7768, "bg": 2498 }, + { "id": "mon_grocerybot", "fg": 7775, "bg": 2498 }, + { "id": "mon_grocerybot_busted", "fg": 7776, "bg": 2498 }, + { "id": "mon_raccoon", "fg": 7777, "bg": 2498 }, + { "id": "mon_weasel", "fg": 7778, "bg": 2498 }, + { "id": "infrared_creature", "fg": 7779 }, { "id": "weather_rain_drop", "fg": [ - { "weight": 100, "sprite": 7749 }, - { "weight": 100, "sprite": 7751 }, - { "weight": 100, "sprite": 7752 }, - { "weight": 100, "sprite": 7753 }, - { "weight": 100, "sprite": 7754 }, - { "weight": 100, "sprite": 7755 }, - { "weight": 100, "sprite": 7756 }, - { "weight": 100, "sprite": 7757 }, - { "weight": 100, "sprite": 7758 }, - { "weight": 100, "sprite": 7750 } - ] - }, - { "id": "weather_snowflake", "fg": 7759 }, - { "id": "weather_acid_drop", "fg": 7748 }, - { "id": [ "t_card_science", "t_card_robofac" ], "fg": 7765 }, - { "id": "t_card_reader_broken", "fg": 7764 }, - { "id": "t_card_military", "fg": 7763 }, - { "id": "t_card_industrial", "fg": 7762 }, - { "id": "t_card_fp", "fg": 7761 }, - { "id": "t_floor_red", "fg": 7768 }, - { "id": "t_floor_green", "fg": 7767 }, - { "id": "t_floor_blue", "fg": 7766 }, - { "id": [ "t_searth_test", "t_searth" ], "fg": 7769 }, - { "id": "t_current_trans", "fg": 7770, "bg": 4046 }, - { "id": "t_potential_trans", "fg": 7771, "bg": 4046 }, - { "id": "graffiti", "fg": 7772 }, - { "id": "t_pedestal_wyrm", "fg": 7774, "bg": 3838 }, + { "weight": 100, "sprite": 7781 }, + { "weight": 100, "sprite": 7783 }, + { "weight": 100, "sprite": 7784 }, + { "weight": 100, "sprite": 7785 }, + { "weight": 100, "sprite": 7786 }, + { "weight": 100, "sprite": 7787 }, + { "weight": 100, "sprite": 7788 }, + { "weight": 100, "sprite": 7789 }, + { "weight": 100, "sprite": 7790 }, + { "weight": 100, "sprite": 7782 } + ] + }, + { "id": "weather_snowflake", "fg": 7791 }, + { "id": "weather_acid_drop", "fg": 7780 }, + { "id": [ "t_card_science", "t_card_robofac" ], "fg": 7797 }, + { "id": "t_card_reader_broken", "fg": 7796 }, + { "id": "t_card_military", "fg": 7795 }, + { "id": "t_card_industrial", "fg": 7794 }, + { "id": "t_card_fp", "fg": 7793 }, + { "id": "t_floor_red", "fg": 7800 }, + { "id": "t_floor_green", "fg": 7799 }, + { "id": "t_floor_blue", "fg": 7798 }, + { "id": [ "t_searth_test", "t_searth" ], "fg": 7801 }, + { "id": "t_current_trans", "fg": 7802, "bg": 4084 }, + { "id": "t_potential_trans", "fg": 7803, "bg": 4084 }, + { "id": "graffiti", "fg": 7804 }, + { "id": "t_pedestal_wyrm", "fg": 7806, "bg": 3876 }, { "id": "t_pedestal_temple", - "fg": [ { "weight": 100, "sprite": 7775 }, { "weight": 100, "sprite": 7773 } ], - "bg": 3199 + "fg": [ { "weight": 100, "sprite": 7807 }, { "weight": 100, "sprite": 7805 } ], + "bg": 3237 }, { "id": "t_pedestal_temple_season_winter", - "fg": [ { "weight": 100, "sprite": 7775 }, { "weight": 100, "sprite": 7773 } ], - "bg": 2870 + "fg": [ { "weight": 100, "sprite": 7807 }, { "weight": 100, "sprite": 7805 } ], + "bg": 2908 }, - { "id": "t_zebra", "fg": 7776 }, - { "id": "t_zebra_season_winter", "fg": 2869 }, + { "id": "t_zebra", "fg": 7808 }, + { "id": "t_zebra_season_winter", "fg": 2907 }, { "id": [ "t_metal_railing", "t_concrete_railing", "t_glass_railing" ], "multitile": true, - "fg": 3774, - "bg": 3073, - "additional_tiles": [ - { "id": "center", "bg": 3073, "fg": 3759 }, - { "id": "corner", "bg": 3073, "fg": [ 3761, 3763, 3762, 3760 ] }, - { "id": "t_connection", "bg": 3073, "fg": [ 3771, 3773, 3772, 3770 ] }, - { "id": "edge", "bg": 3073, "fg": [ 3765, 3764 ] }, - { "id": "end_piece", "bg": 3073, "fg": [ 3767, 3769, 3768, 3766 ] }, - { "bg": 3073, "id": "unconnected", "fg": [ 3774, 3774 ] } - ] - }, - { "id": "t_chaingate_c", "fg": 7778, "bg": 3595 }, - { "id": "t_chaingate_l", "fg": 7779, "bg": 3595 }, - { "id": "t_chaingate_o", "fg": 7780, "bg": 3595 }, - { "id": "t_chainfence_posts", "fg": 7777, "bg": 3595 }, - { "id": "t_chaingate_c_season_winter", "fg": 7778, "bg": 2870 }, - { "id": "t_chaingate_l_season_winter", "fg": 7779, "bg": 2870 }, - { "id": "t_chaingate_o_season_winter", "fg": 7780, "bg": 2870 }, - { "id": "t_chainfence_posts_season_winter", "fg": 7777, "bg": 2870 }, - { "id": "t_console", "fg": 7781 }, - { "id": "t_console_broken", "fg": 7782 }, - { "id": "t_dirtmound", "fg": 7783, "bg": 3390 }, - { "id": "t_dirtmound_season_summer", "fg": 7783, "bg": 3400 }, - { "id": "t_dirtmound_season_autumn", "fg": 7783, "bg": 3395 }, - { "id": "t_dirtmound_season_winter", "fg": 7784 }, - { "id": "t_door_metal_c", "fg": 7785 }, - { "id": "t_door_metal_o", "fg": 7786 }, - { "id": "t_fern", "fg": 7787, "bg": 3390 }, - { "id": "t_fern_harvested", "fg": 7788, "bg": 3390 }, - { "id": "t_fern_season_summer", "fg": 7787, "bg": 3400 }, - { "id": "t_fern_harvested_season_summer", "fg": 7788, "bg": 3400 }, - { "id": "t_fern_season_autumn", "fg": 7787, "bg": 3395 }, - { "id": "t_fern_harvested_season_autumn", "fg": 7788, "bg": 3395 }, - { "id": "t_fern_season_winter", "fg": 7787, "bg": 2868 }, - { "id": "t_fern_harvested_season_winter", "fg": 7788, "bg": 2868 }, + "fg": 3812, + "bg": 3111, + "additional_tiles": [ + { "id": "center", "bg": 3111, "fg": 3797 }, + { "id": "corner", "bg": 3111, "fg": [ 3799, 3801, 3800, 3798 ] }, + { "id": "t_connection", "bg": 3111, "fg": [ 3809, 3811, 3810, 3808 ] }, + { "id": "edge", "bg": 3111, "fg": [ 3803, 3802 ] }, + { "id": "end_piece", "bg": 3111, "fg": [ 3805, 3807, 3806, 3804 ] }, + { "bg": 3111, "id": "unconnected", "fg": [ 3812, 3812 ] } + ] + }, + { "id": "t_chaingate_c", "fg": 7810, "bg": 3633 }, + { "id": "t_chaingate_l", "fg": 7811, "bg": 3633 }, + { "id": "t_chaingate_o", "fg": 7812, "bg": 3633 }, + { "id": "t_chainfence_posts", "fg": 7809, "bg": 3633 }, + { "id": "t_chaingate_c_season_winter", "fg": 7810, "bg": 2908 }, + { "id": "t_chaingate_l_season_winter", "fg": 7811, "bg": 2908 }, + { "id": "t_chaingate_o_season_winter", "fg": 7812, "bg": 2908 }, + { "id": "t_chainfence_posts_season_winter", "fg": 7809, "bg": 2908 }, + { "id": "t_console", "fg": 7813 }, + { "id": "t_console_broken", "fg": 7814 }, + { "id": "t_dirtmound", "fg": 7815, "bg": 3428 }, + { "id": "t_dirtmound_season_summer", "fg": 7815, "bg": 3438 }, + { "id": "t_dirtmound_season_autumn", "fg": 7815, "bg": 3433 }, + { "id": "t_dirtmound_season_winter", "fg": 7816 }, + { "id": "t_door_metal_c", "fg": 7817 }, + { "id": "t_door_metal_o", "fg": 7818 }, + { "id": "t_fern", "fg": 7819, "bg": 3428 }, + { "id": "t_fern_harvested", "fg": 7820, "bg": 3428 }, + { "id": "t_fern_season_summer", "fg": 7819, "bg": 3438 }, + { "id": "t_fern_harvested_season_summer", "fg": 7820, "bg": 3438 }, + { "id": "t_fern_season_autumn", "fg": 7819, "bg": 3433 }, + { "id": "t_fern_harvested_season_autumn", "fg": 7820, "bg": 3433 }, + { "id": "t_fern_season_winter", "fg": 7819, "bg": 2906 }, + { "id": "t_fern_harvested_season_winter", "fg": 7820, "bg": 2906 }, { "id": [ "t_junk_palisade", "t_junk_wall" ], "fg": [ - { "weight": 100, "sprite": 7789 }, - { "weight": 100, "sprite": 7790 }, - { "weight": 100, "sprite": 7791 }, - { "weight": 100, "sprite": 7792 } + { "weight": 100, "sprite": 7821 }, + { "weight": 100, "sprite": 7822 }, + { "weight": 100, "sprite": 7823 }, + { "weight": 100, "sprite": 7824 } ] }, { "id": "t_paper", - "fg": 7808, + "fg": 7840, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7793 }, - { "id": "corner", "fg": [ 7795, 7797, 7796, 7794 ] }, - { "id": "t_connection", "fg": [ 7805, 7807, 7806, 7804 ] }, - { "id": "edge", "fg": [ 7799, 7798 ] }, - { "id": "end_piece", "fg": [ 7801, 7803, 7802, 7800 ] }, - { "id": "unconnected", "fg": [ 7808, 7808 ] } + { "id": "center", "fg": 7825 }, + { "id": "corner", "fg": [ 7827, 7829, 7828, 7826 ] }, + { "id": "t_connection", "fg": [ 7837, 7839, 7838, 7836 ] }, + { "id": "edge", "fg": [ 7831, 7830 ] }, + { "id": "end_piece", "fg": [ 7833, 7835, 7834, 7832 ] }, + { "id": "unconnected", "fg": [ 7840, 7840 ] } ] }, { @@ -12041,445 +12022,445 @@ "t_railroad_track_v_on_tie", "t_railroad_track_d_on_tie" ], - "fg": 7826, + "fg": 7858, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7811, "bg": 3775 }, - { "id": "corner", "fg": [ 7813, 7815, 7814, 7812 ], "bg": 3775 }, - { "id": "t_connection", "fg": [ 7823, 7825, 7824, 7822 ], "bg": 3775 }, - { "id": "edge", "fg": [ 7817, 7816 ], "bg": 3775 }, - { "id": "end_piece", "fg": [ 7819, 7821, 7820, 7818 ], "bg": 3775 }, - { "id": "unconnected", "fg": [ 7826, 7826 ], "bg": 3775 } + { "id": "center", "fg": 7843, "bg": 3813 }, + { "id": "corner", "fg": [ 7845, 7847, 7846, 7844 ], "bg": 3813 }, + { "id": "t_connection", "fg": [ 7855, 7857, 7856, 7854 ], "bg": 3813 }, + { "id": "edge", "fg": [ 7849, 7848 ], "bg": 3813 }, + { "id": "end_piece", "fg": [ 7851, 7853, 7852, 7850 ], "bg": 3813 }, + { "id": "unconnected", "fg": [ 7858, 7858 ], "bg": 3813 } ], - "bg": 3775 + "bg": 3813 }, - { "id": "t_reinforced_glass_shutter", "fg": 7827 }, - { "id": "t_reinforced_glass_shutter_open", "fg": 7828 }, + { "id": "t_reinforced_glass_shutter", "fg": 7859 }, + { "id": "t_reinforced_glass_shutter_open", "fg": 7860 }, { "id": "t_sandbox", - "fg": 7844, + "fg": 7876, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7829 }, - { "id": "corner", "fg": [ 7831, 7833, 7832, 7830 ] }, - { "id": "t_connection", "fg": [ 7841, 7843, 7842, 7840 ] }, - { "id": "edge", "fg": [ 7835, 7834 ] }, - { "id": "end_piece", "fg": [ 7837, 7839, 7838, 7836 ] }, - { "id": "unconnected", "fg": [ 7844, 7844 ] } + { "id": "center", "fg": 7861 }, + { "id": "corner", "fg": [ 7863, 7865, 7864, 7862 ] }, + { "id": "t_connection", "fg": [ 7873, 7875, 7874, 7872 ] }, + { "id": "edge", "fg": [ 7867, 7866 ] }, + { "id": "end_piece", "fg": [ 7869, 7871, 7870, 7868 ] }, + { "id": "unconnected", "fg": [ 7876, 7876 ] } ] }, - { "id": "t_slot_machine", "fg": 7845, "bg": 3287 }, - { "id": "t_strconc_wall", "fg": 7846 }, + { "id": "t_slot_machine", "fg": 7877, "bg": 3325 }, + { "id": "t_strconc_wall", "fg": 7878 }, { "id": "t_trunk", "multitile": true, - "fg": [ 7848, 7847 ], - "bg": [ { "weight": 100, "sprite": 3390 }, { "weight": 100, "sprite": 3392 } ] + "fg": [ 7880, 7879 ], + "bg": [ { "weight": 100, "sprite": 3428 }, { "weight": 100, "sprite": 3430 } ] }, { "id": "t_trunk_season_summer", "multitile": true, - "fg": [ 7848, 7847 ], - "bg": [ { "weight": 100, "sprite": 3400 }, { "weight": 100, "sprite": 3402 } ] + "fg": [ 7880, 7879 ], + "bg": [ { "weight": 100, "sprite": 3438 }, { "weight": 100, "sprite": 3440 } ] }, { "id": "t_trunk_season_autumn", "multitile": true, - "fg": [ 7848, 7847 ], - "bg": [ { "weight": 100, "sprite": 3395 }, { "weight": 100, "sprite": 3397 } ] + "fg": [ 7880, 7879 ], + "bg": [ { "weight": 100, "sprite": 3433 }, { "weight": 100, "sprite": 3435 } ] }, - { "id": "t_trunk_season_winter", "multitile": true, "fg": [ 7848, 7847 ], "bg": 2870 }, - { "id": "t_wall_half", "fg": 7849, "bg": 3287 }, + { "id": "t_trunk_season_winter", "multitile": true, "fg": [ 7880, 7879 ], "bg": 2908 }, + { "id": "t_wall_half", "fg": 7881, "bg": 3325 }, { "id": "t_wax", - "fg": 7865, + "fg": 7897, "multitile": true, "additional_tiles": [ - { "id": "center", "fg": 7850 }, - { "id": "corner", "fg": [ 7852, 7854, 7853, 7851 ] }, - { "id": "t_connection", "fg": [ 7862, 7864, 7863, 7861 ] }, - { "id": "edge", "fg": [ 7856, 7855 ] }, - { "id": "end_piece", "fg": [ 7858, 7860, 7859, 7857 ] }, - { "id": "unconnected", "fg": [ 7865, 7865 ] } + { "id": "center", "fg": 7882 }, + { "id": "corner", "fg": [ 7884, 7886, 7885, 7883 ] }, + { "id": "t_connection", "fg": [ 7894, 7896, 7895, 7893 ] }, + { "id": "edge", "fg": [ 7888, 7887 ] }, + { "id": "end_piece", "fg": [ 7890, 7892, 7891, 7889 ] }, + { "id": "unconnected", "fg": [ 7897, 7897 ] } ] }, - { "id": [ "t_window_boarded", "t_window_boarded_noglass" ], "fg": 7866, "bg": 4454 }, - { "id": "t_window_frame", "fg": 7867 }, - { "id": [ "t_window_reinforced", "t_window_reinforced_noglass" ], "fg": 7868, "bg": 4454 }, - { "id": "tr_firewood_source", "fg": 7869 }, - { "id": "tr_unfinished_construction", "fg": 7870 }, + { "id": [ "t_window_boarded", "t_window_boarded_noglass" ], "fg": 7898, "bg": 4492 }, + { "id": "t_window_frame", "fg": 7899 }, + { "id": [ "t_window_reinforced", "t_window_reinforced_noglass" ], "fg": 7900, "bg": 4492 }, + { "id": "tr_firewood_source", "fg": 7901 }, + { "id": "tr_unfinished_construction", "fg": 7902 }, { "id": "vp_hdboard_ne", - "fg": [ 7897, 7900, 7899, 7898 ], + "fg": [ 7929, 7932, 7931, 7930 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7897, 7900, 7899, 7898 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7929, 7932, 7931, 7930 ] } ] }, { "id": "vp_hdboard_nw", - "fg": [ 7901, 7904, 7903, 7902 ], + "fg": [ 7933, 7936, 7935, 7934 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7901, 7904, 7903, 7902 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7933, 7936, 7935, 7934 ] } ] }, { "id": "vp_hdboard_se", - "fg": [ 7905, 7907, 7901, 7906 ], + "fg": [ 7937, 7939, 7933, 7938 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7905, 7907, 7901, 7906 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7937, 7939, 7933, 7938 ] } ] }, { "id": "vp_hdboard_sw", - "fg": [ 7908, 7910, 7897, 7909 ], + "fg": [ 7940, 7942, 7929, 7941 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7908, 7910, 7897, 7909 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7940, 7942, 7929, 7941 ] } ] }, { "id": "vp_hdboard_vertical_left", - "fg": [ 7911, 7913, 7914, 7912 ], + "fg": [ 7943, 7945, 7946, 7944 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7911, 7913, 7914, 7912 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7943, 7945, 7946, 7944 ] } ] }, { "id": "vp_hdboard_vertical_right", - "fg": [ 7914, 7916, 7911, 7915 ], + "fg": [ 7946, 7948, 7943, 7947 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7914, 7916, 7911, 7915 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7946, 7948, 7943, 7947 ] } ] }, { "id": [ "vp_hdboard_horizontal", "vp_hdboard_horizontal_2" ], - "fg": 7893, + "fg": 7925, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7893 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7925 } ] }, { "id": "vp_hdboard_horizontal_front", - "fg": [ 7893, 7895, 7893, 7894 ], + "fg": [ 7925, 7927, 7925, 7926 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7893, 7895, 7893, 7894 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7925, 7927, 7925, 7926 ] } ] }, { "id": "vp_hdboard_horizontal_rear", - "fg": [ 7896, 7894, 7893, 7895 ], + "fg": [ 7928, 7926, 7925, 7927 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7896, 7894, 7893, 7895 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7928, 7926, 7925, 7927 ] } ] }, { "id": [ "vp_hdboard_vertical", "vp_hdboard_vertical_2" ], - "fg": 7911, + "fg": 7943, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7911 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7943 } ] }, { "id": "vp_hdhalfboard_ne", - "fg": [ 7931, 7934, 7933, 7932 ], + "fg": [ 7963, 7966, 7965, 7964 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7931, 7934, 7933, 7932 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7963, 7966, 7965, 7964 ] } ] }, { "id": "vp_hdhalfboard_nw", - "fg": [ 7935, 7938, 7937, 7936 ], + "fg": [ 7967, 7970, 7969, 7968 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7935, 7938, 7937, 7936 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7967, 7970, 7969, 7968 ] } ] }, { "id": "vp_hdhalfboard_se", - "fg": [ 7939, 7942, 7941, 7940 ], + "fg": [ 7971, 7974, 7973, 7972 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7939, 7942, 7941, 7940 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7971, 7974, 7973, 7972 ] } ] }, { "id": "vp_hdhalfboard_sw", - "fg": [ 7943, 7946, 7945, 7944 ], + "fg": [ 7975, 7978, 7977, 7976 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7943, 7946, 7945, 7944 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7975, 7978, 7977, 7976 ] } ] }, { "id": "vp_hdhalfboard_vertical_left", - "fg": [ 7951, 7954, 7953, 7952 ], + "fg": [ 7983, 7986, 7985, 7984 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7951, 7954, 7953, 7952 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7983, 7986, 7985, 7984 ] } ] }, { "id": "vp_hdhalfboard_vertical_right", - "fg": [ 7955, 7958, 7957, 7956 ], + "fg": [ 7987, 7990, 7989, 7988 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7955, 7958, 7957, 7956 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7987, 7990, 7989, 7988 ] } ] }, { "id": "vp_hdhalfboard_horizontal", - "fg": [ 7926, 7929, 7928, 7927 ], + "fg": [ 7958, 7961, 7960, 7959 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7926, 7929, 7928, 7927 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7958, 7961, 7960, 7959 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2", - "fg": 7921, + "fg": 7953, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7921 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7953 } ] }, { "id": "vp_hdhalfboard_horizontal_front", - "fg": [ 7926, 7929, 7928, 7927 ], + "fg": [ 7958, 7961, 7960, 7959 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7926, 7929, 7928, 7927 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7958, 7961, 7960, 7959 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2_front", - "fg": [ 7921, 7924, 7923, 7922 ], + "fg": [ 7953, 7956, 7955, 7954 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7921, 7924, 7923, 7922 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7953, 7956, 7955, 7954 ] } ] }, { "id": "vp_hdhalfboard_horizontal_rear", - "fg": [ 7930, 7927, 7926, 7929 ], + "fg": [ 7962, 7959, 7958, 7961 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7930, 7927, 7926, 7929 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7962, 7959, 7958, 7961 ] } ] }, { "id": "vp_hdhalfboard_horizontal_2_rear", - "fg": [ 7925, 7922, 7921, 7924 ], + "fg": [ 7957, 7954, 7953, 7956 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7925, 7922, 7921, 7924 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7957, 7954, 7953, 7956 ] } ] }, { "id": "vp_hdhalfboard_vertical", - "fg": 7947, + "fg": 7979, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7947 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7979 } ] }, { "id": "vp_hdhalfboard_vertical_2", - "fg": 7948, + "fg": 7980, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7948 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7980 } ] }, { "id": "vp_hdhalfboard_vertical_2_left", - "fg": [ 7949, 7954, 7953, 7952 ], + "fg": [ 7981, 7986, 7985, 7984 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7949, 7954, 7953, 7952 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7981, 7986, 7985, 7984 ] } ] }, { "id": "vp_hdhalfboard_vertical_2_right", - "fg": [ 7950, 7958, 7957, 7956 ], + "fg": [ 7982, 7990, 7989, 7988 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7950, 7958, 7957, 7956 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7982, 7990, 7989, 7988 ] } ] }, { "id": "vp_hdhalfboard_cover", - "fg": [ 7917, 7920, 7919, 7918 ], + "fg": [ 7949, 7952, 7951, 7950 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7917, 7920, 7919, 7918 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7949, 7952, 7951, 7950 ] } ] }, { "id": "vp_xlhalfboard_ne", - "fg": [ 7880, 7883, 7882, 7881 ], + "fg": [ 7912, 7915, 7914, 7913 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7880, 7883, 7882, 7881 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7912, 7915, 7914, 7913 ] } ] }, { "id": "vp_xlhalfboard_nw", - "fg": [ 7884, 7887, 7886, 7885 ], + "fg": [ 7916, 7919, 7918, 7917 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7884, 7887, 7886, 7885 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7916, 7919, 7918, 7917 ] } ] }, { "id": "vp_xlhalfboard_se", - "fg": 7888, + "fg": 7920, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7888 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7920 } ] }, { "id": "vp_xlhalfboard_sw", - "fg": 7889, + "fg": 7921, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7889 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7921 } ] }, { "id": "vp_xlhalfboard_vertical_left", - "fg": 7891, + "fg": 7923, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7891 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7923 } ] }, { "id": "vp_xlhalfboard_vertical_right", - "fg": 7892, + "fg": 7924, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7892 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7924 } ] }, { "id": [ "vp_xlhalfboard_horizontal", "vp_xlhalfboard_horizontal_2" ], - "fg": 7875, + "fg": 7907, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7875 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7907 } ] }, { "id": "vp_xlhalfboard_horizontal_front", - "fg": [ 7875, 7878, 7877, 7876 ], + "fg": [ 7907, 7910, 7909, 7908 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7875, 7878, 7877, 7876 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7907, 7910, 7909, 7908 ] } ] }, { "id": "vp_xlhalfboard_horizontal_rear", - "fg": 7879, + "fg": 7911, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7879 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7911 } ] }, { "id": [ "vp_xlhalfboard_vertical", "vp_xlhalfboard_vertical_2" ], - "fg": 7890, + "fg": 7922, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7890 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7922 } ] }, { "id": "vp_xlhalfboard_cover", - "fg": [ 7871, 7874, 7873, 7872 ], + "fg": [ 7903, 7906, 7905, 7904 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7871, 7874, 7873, 7872 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7903, 7906, 7905, 7904 ] } ] }, { "id": "vp_hdstowboard_ne", - "fg": [ 7964, 7967, 7966, 7965 ], + "fg": [ 7996, 7999, 7998, 7997 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7964, 7967, 7966, 7965 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7996, 7999, 7998, 7997 ] } ] }, { "id": "vp_hdstowboard_nw", - "fg": [ 7968, 7971, 7970, 7969 ], + "fg": [ 8000, 8003, 8002, 8001 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7968, 7971, 7970, 7969 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8000, 8003, 8002, 8001 ] } ] }, { "id": "vp_hdstowboard_se", - "fg": [ 7972, 7974, 7968, 7973 ], + "fg": [ 8004, 8006, 8000, 8005 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7972, 7974, 7968, 7973 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8004, 8006, 8000, 8005 ] } ] }, { "id": "vp_hdstowboard_sw", - "fg": [ 7975, 7977, 7964, 7976 ], + "fg": [ 8007, 8009, 7996, 8008 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7975, 7977, 7964, 7976 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8007, 8009, 7996, 8008 ] } ] }, { "id": "vp_hdstowboard_vertical_left", - "fg": [ 7978, 7980, 7981, 7979 ], + "fg": [ 8010, 8012, 8013, 8011 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7978, 7980, 7981, 7979 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8010, 8012, 8013, 8011 ] } ] }, { "id": "vp_hdstowboard_vertical_right", - "fg": [ 7981, 7979, 7978, 7980 ], + "fg": [ 8013, 8011, 8010, 8012 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7981, 7979, 7978, 7980 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8013, 8011, 8010, 8012 ] } ] }, { "id": [ "vp_hdstowboard_horizontal", "vp_hdstowboard_horizontal_2" ], - "fg": 7959, + "fg": 7991, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7959 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 7991 } ] }, { "id": "vp_hdstowboard_horizontal_front", - "fg": [ 7959, 7962, 7961, 7960 ], + "fg": [ 7991, 7994, 7993, 7992 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7959, 7962, 7961, 7960 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7991, 7994, 7993, 7992 ] } ] }, { "id": "vp_hdstowboard_horizontal_rear", - "fg": [ 7963, 7960, 7959, 7962 ], + "fg": [ 7995, 7992, 7991, 7994 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7963, 7960, 7959, 7962 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 7995, 7992, 7991, 7994 ] } ] }, { "id": "vp_hdstowboard_vertical", - "fg": 7979, + "fg": 8011, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7979 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8011 } ] }, { "id": "vp_woodboard_ne", - "fg": [ 7986, 7987, 7992, 7993 ], + "fg": [ 8018, 8019, 8024, 8025 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7986, 7987, 7992, 7993 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8018, 8019, 8024, 8025 ] } ] }, { "id": "vp_woodboard_nw", - "fg": [ 7988, 7989, 7990, 7991 ], + "fg": [ 8020, 8021, 8022, 8023 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7988, 7989, 7990, 7991 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8020, 8021, 8022, 8023 ] } ] }, { "id": "vp_woodboard_se", - "fg": [ 7990, 7991, 7988, 7989 ], + "fg": [ 8022, 8023, 8020, 8021 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7990, 7991, 7988, 7989 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8022, 8023, 8020, 8021 ] } ] }, { "id": "vp_woodboard_sw", - "fg": [ 7992, 7993, 7986, 7987 ], + "fg": [ 8024, 8025, 8018, 8019 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7992, 7993, 7986, 7987 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8024, 8025, 8018, 8019 ] } ] }, { "id": "vp_woodboard_vertical_left", - "fg": [ 7994, 7984, 7995, 7982 ], + "fg": [ 8026, 8016, 8027, 8014 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7994, 7984, 7995, 7982 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8026, 8016, 8027, 8014 ] } ] }, { "id": "vp_woodboard_vertical_right", - "fg": [ 7995, 7982, 7994, 7984 ], + "fg": [ 8027, 8014, 8026, 8016 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7995, 7982, 7994, 7984 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8027, 8014, 8026, 8016 ] } ] }, { "id": [ "vp_woodboard_horizontal", "vp_woodboard_vertical", "vp_woodboard_horizontal_front" ], - "fg": [ 7982, 7983, 7984, 7985 ], + "fg": [ 8014, 8015, 8016, 8017 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7982, 7983, 7984, 7985 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8014, 8015, 8016, 8017 ] } ] }, { "id": "vp_woodboard_horizontal_rear", - "fg": [ 7984, 7985, 7982, 7983 ], + "fg": [ 8016, 8017, 8014, 8015 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 7984, 7985, 7982, 7983 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8016, 8017, 8014, 8015 ] } ] }, { "id": [ "vp_woodhalfboard_ne" ], - "fg": 8000, + "fg": 8032, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8000 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8032 } ] }, { "id": "vp_woodhalfboard_nw", - "fg": 7999, + "fg": 8031, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7999 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8031 } ] }, { "id": "vp_woodhalfboard_se", - "fg": 8004, + "fg": 8036, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8004 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8036 } ] }, { "id": "vp_woodhalfboard_sw", - "fg": 8003, + "fg": 8035, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8003 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8035 } ] }, { "id": [ "vp_woodhalfboard_vertical_left", "vp_woodhalfboard_vertical_2_left", "vp_woodhalfboard_vertical_T_left" ], - "fg": 8001, + "fg": 8033, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8001 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8033 } ] }, { "id": [ "vp_woodhalfboard_vertical_right", "vp_woodhalfboard_vertical_2_right", "vp_woodhalfboard_vertical_T_right" ], - "fg": 8005, + "fg": 8037, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8005 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8037 } ] }, { "id": [ @@ -12488,943 +12469,881 @@ "vp_woodhalfboard_horizontal_front", "vp_woodhalfboard_horizontal_2_front" ], - "fg": 7998, + "fg": 8030, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7998 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8030 } ] }, { "id": [ "vp_woodhalfboard_horizontal_rear", "vp_woodhalfboard_horizontal_2_rear" ], - "fg": 8002, + "fg": 8034, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8002 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8034 } ] }, { "id": [ "vp_woodhalfboard", "vp_woodhalfboard_cross", "vp_woodhalfboard_vertical", "vp_woodhalfboard_vertical_2" ], - "fg": 7997, + "fg": 8029, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7997 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8029 } ] }, { "id": [ "vp_woodhalfboard_cover" ], - "fg": 7996, + "fg": 8028, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 7996 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8028 } ] }, { "id": [ "vp_basketsm", "vp_basketsm_external" ], - "fg": [ 8017, 8016 ], + "fg": [ 8049, 8048 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8017, 8016 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8049, 8048 ] } ] }, { "id": "vp_basketsm_bike_rear", - "fg": [ 8013, 8015, 8014, 8012 ], + "fg": [ 8045, 8047, 8046, 8044 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8013, 8015, 8014, 8012 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8045, 8047, 8046, 8044 ] } ] }, { "id": [ "vp_basketlg", "vp_basketlg_external" ], - "fg": [ 8011, 8010 ], + "fg": [ 8043, 8042 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8011, 8010 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8043, 8042 ] } ] }, { "id": "vp_basketlg_cart", - "fg": [ 8007, 8009, 8008, 8006 ], + "fg": [ 8039, 8041, 8040, 8038 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8007, 8009, 8008, 8006 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8039, 8041, 8040, 8038 ] } ] }, { "id": "vp_box", - "fg": [ 8018, 8019 ], + "fg": [ 8050, 8051 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8018, 8019 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8050, 8051 ] } ] }, { "id": "vp_wood box", - "fg": [ 8028, 8027 ], + "fg": [ 8060, 8059 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8028, 8027 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8060, 8059 ] } ] }, { "id": "vp_box_wheelbarrow", - "fg": [ 8021, 8023, 8022, 8020 ], + "fg": [ 8053, 8055, 8054, 8052 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8021, 8023, 8022, 8020 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8053, 8055, 8054, 8052 ] } ] }, { "id": "vp_trunk", - "fg": 8025, + "fg": 8057, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8025 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8057 } ] }, { "id": "vp_trunk_rear_edge", - "fg": 8026, + "fg": 8058, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8026 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8058 } ] }, { "id": [ "vp_cargo_space", "animal_compartment" ], - "fg": 8024, + "fg": 8056, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8024 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8056 } ] }, { "id": [ "vp_hddoor_trunk", "vp_hdhatch", "vp_hdhatch_opaque" ], - "fg": [ 8052, 8058, 8057, 8056 ], + "fg": [ 8084, 8090, 8089, 8088 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 8053, 8055, 8053, 8054 ] }, { "id": "broken", "fg": 8032, "bg": [ 8053, 8055, 8053, 8054 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 8085, 8087, 8085, 8086 ] }, { "id": "broken", "fg": 8064, "bg": [ 8085, 8087, 8085, 8086 ] } ] }, { "id": [ "vp_hddoor", "vp_hddoor_front" ], - "fg": [ 8040, 8041, 8040, 8039 ], + "fg": [ 8072, 8073, 8072, 8071 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 8034, 8035, 8034, 8033 ] }, { "id": "broken", "fg": 8032, "bg": [ 8034, 8035, 8034, 8033 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 8066, 8067, 8066, 8065 ] }, { "id": "broken", "fg": 8064, "bg": [ 8066, 8067, 8066, 8065 ] } ] }, { "id": "vp_hddoor_rear", - "fg": [ 8049, 8051, 8050, 8048 ], + "fg": [ 8081, 8083, 8082, 8080 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 8037, 8038, 8037, 8036 ] }, { "id": "broken", "fg": 8032, "bg": [ 8037, 8038, 8037, 8036 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 8069, 8070, 8069, 8068 ] }, { "id": "broken", "fg": 8064, "bg": [ 8069, 8070, 8069, 8068 ] } ] }, { "id": [ "vp_hddoor_opaque", "vp_hddoor_opaque_front" ], - "fg": [ 8043, 8044, 8043, 8042 ], + "fg": [ 8075, 8076, 8075, 8074 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 8034, 8035, 8034, 8033 ] }, { "id": "broken", "fg": 8032, "bg": [ 8034, 8035, 8034, 8033 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 8066, 8067, 8066, 8065 ] }, { "id": "broken", "fg": 8064, "bg": [ 8066, 8067, 8066, 8065 ] } ] }, { "id": "vp_hddoor_opaque_rear", - "fg": [ 8046, 8047, 8046, 8045 ], + "fg": [ 8078, 8079, 8078, 8077 ], "multitile": true, - "additional_tiles": [ { "id": "open", "fg": [ 8037, 8038, 8037, 8036 ] }, { "id": "broken", "fg": 8032, "bg": [ 8037, 8038, 8037, 8036 ] } ] + "additional_tiles": [ { "id": "open", "fg": [ 8069, 8070, 8069, 8068 ] }, { "id": "broken", "fg": 8064, "bg": [ 8069, 8070, 8069, 8068 ] } ] }, { "id": "vp_ram_spiked", - "fg": 8060, + "fg": 8092, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8060 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8092 } ] }, { "id": "vp_ram_steel", - "fg": 8061, + "fg": 8093, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8060 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8092 } ] }, { "id": "vp_spike", - "fg": 8062, + "fg": 8094, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8062 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8094 } ] }, { "id": "vp_frame_cover", - "fg": 8064, + "fg": 8096, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8064 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8096 } ] }, { "id": "vp_frame_cross", - "fg": 8065, + "fg": 8097, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8065 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8097 } ] }, { "id": "vp_frame_cross_unconnected", - "fg": 8066, + "fg": 8098, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8066 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8098 } ] }, { "id": "vp_frame_ne", - "fg": 8079, + "fg": 8111, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8079 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8111 } ] }, { "id": "vp_frame_nw", - "fg": 8080, + "fg": 8112, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8080 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8112 } ] }, { "id": "vp_frame_se", - "fg": 8081, + "fg": 8113, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8081 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8113 } ] }, { "id": "vp_frame_sw", - "fg": 8082, + "fg": 8114, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8082 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8114 } ] }, { "id": "vp_frame_vertical_unconnected", - "fg": 8090, + "fg": 8122, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8090 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8122 } ] }, { "id": "vp_frame_vertical_2_unconnected", - "fg": 8087, + "fg": 8119, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8087 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8119 } ] }, { "id": "vp_frame_vertical_left", - "fg": 8088, + "fg": 8120, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8088 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8120 } ] }, { "id": "vp_frame_vertical_2_left", - "fg": 8085, + "fg": 8117, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8085 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8117 } ] }, { "id": "vp_frame_vertical_right", - "fg": 8089, + "fg": 8121, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8089 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8121 } ] }, { "id": "vp_frame_vertical_2_right", - "fg": 8086, + "fg": 8118, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8086 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8118 } ] }, { "id": "vp_frame_horizontal", - "fg": 8067, + "fg": 8099, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8067 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8099 } ] }, { "id": "vp_frame_horizontal_2", - "fg": 8068, + "fg": 8100, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8068 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8100 } ] }, { "id": "vp_frame_horizontal_unconnected", - "fg": 8078, + "fg": 8110, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8078 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8110 } ] }, { "id": "vp_frame_horizontal_2_unconnected", - "fg": 8071, + "fg": 8103, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8071 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8103 } ] }, { "id": "vp_frame_horizontal_front", - "fg": 8074, + "fg": 8106, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8074 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8106 } ] }, { "id": "vp_frame_horizontal_2_front", - "fg": 8069, + "fg": 8101, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8069 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8101 } ] }, { "id": "vp_frame_horizontal_rear", - "fg": 8076, + "fg": 8108, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8076 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8108 } ] }, { "id": "vp_frame_horizontal_2_rear", - "fg": 8070, + "fg": 8102, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8070 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8102 } ] }, { "id": [ "vp_frame_horizontal_left", "vp_frame_vertical_T_left" ], - "fg": 8075, + "fg": 8107, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8075 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8107 } ] }, { "id": "vp_frame_horizontal_2_left", - "fg": 8072, + "fg": 8104, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8072 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8104 } ] }, { "id": [ "vp_frame_horizontal_right", "vp_frame_vertical_T_right" ], - "fg": 8077, + "fg": 8109, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8077 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8109 } ] }, { "id": "vp_frame_horizontal_2_right", - "fg": 8073, + "fg": 8105, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8073 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8105 } ] }, { "id": "vp_frame_vertical", - "fg": 8083, + "fg": 8115, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8083 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8115 } ] }, { "id": "vp_frame_vertical_2", - "fg": 8084, + "fg": 8116, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8084 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8116 } ] }, { "id": "vp_hdframe_cover", - "fg": 8091, + "fg": 8123, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8091 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8123 } ] }, { "id": "vp_hdframe_cross", - "fg": 8092, + "fg": 8124, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8092 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8124 } ] }, { "id": "vp_hdframe_cross_unconnected", - "fg": 8093, + "fg": 8125, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8093 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8125 } ] }, { "id": "vp_hdframe_ne", - "fg": 8106, + "fg": 8138, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8106 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8138 } ] }, { "id": "vp_hdframe_nw", - "fg": 8107, + "fg": 8139, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8107 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8139 } ] }, { "id": "vp_hdframe_se", - "fg": 8108, + "fg": 8140, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8108 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8140 } ] }, { "id": "vp_hdframe_sw", - "fg": 8109, + "fg": 8141, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8109 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8141 } ] }, { "id": "vp_hdframe_vertical_unconnected", - "fg": 8117, + "fg": 8149, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8117 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8149 } ] }, { "id": "vp_hdframe_vertical_2_unconnected", - "fg": 8114, + "fg": 8146, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8114 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8146 } ] }, { "id": "vp_hdframe_vertical_left", - "fg": 8115, + "fg": 8147, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8115 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8147 } ] }, { "id": "vp_hdframe_vertical_2_left", - "fg": 8112, + "fg": 8144, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8112 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8144 } ] }, { "id": "vp_hdframe_vertical_right", - "fg": 8116, + "fg": 8148, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8116 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8148 } ] }, { "id": "vp_hdframe_vertical_2_right", - "fg": 8113, + "fg": 8145, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8113 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8145 } ] }, { "id": "vp_hdframe_horizontal", - "fg": 8094, + "fg": 8126, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8094 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8126 } ] }, { "id": "vp_hdframe_horizontal_2", - "fg": 8095, + "fg": 8127, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8095 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8127 } ] }, { "id": "vp_hdframe_horizontal_unconnected", - "fg": 8105, + "fg": 8137, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8105 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8137 } ] }, { "id": "vp_hdframe_horizontal_2_unconnected", - "fg": 8098, + "fg": 8130, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8098 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8130 } ] }, { "id": "vp_hdframe_horizontal_front", - "fg": 8101, + "fg": 8133, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8101 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8133 } ] }, { "id": "vp_hdframe_horizontal_2_front", - "fg": 8096, + "fg": 8128, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8096 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8128 } ] }, { "id": "vp_hdframe_horizontal_rear", - "fg": 8103, + "fg": 8135, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8103 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8135 } ] }, { "id": "vp_hdframe_horizontal_2_rear", - "fg": 8097, + "fg": 8129, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8097 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8129 } ] }, { "id": [ "vp_hdframe_horizontal_left", "vp_hdframe_vertical_T_left" ], - "fg": 8102, + "fg": 8134, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8102 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8134 } ] }, { "id": "vp_hdframe_horizontal_2_left", - "fg": 8099, + "fg": 8131, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8099 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8131 } ] }, { "id": [ "vp_hdframe_horizontal_right", "vp_hdframe_vertical_T_right" ], - "fg": 8104, + "fg": 8136, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8104 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8136 } ] }, { "id": "vp_hdframe_horizontal_2_right", - "fg": 8100, + "fg": 8132, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8100 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8132 } ] }, { "id": "vp_hdframe_vertical", - "fg": 8110, + "fg": 8142, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8110 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8142 } ] }, { "id": "vp_hdframe_vertical_2", - "fg": 8111, + "fg": 8143, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8111 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8143 } ] }, { "id": "vp_xlframe_cover", - "fg": 8118, + "fg": 8150, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8118 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8150 } ] }, { "id": "vp_xlframe_cross", - "fg": 8119, + "fg": 8151, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8119 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8151 } ] }, { "id": "vp_xlframe_cross_unconnected", - "fg": 8120, + "fg": 8152, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8120 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8152 } ] }, { "id": "vp_xlframe_ne", - "fg": 8133, + "fg": 8165, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8133 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8165 } ] }, { "id": "vp_xlframe_nw", - "fg": 8134, + "fg": 8166, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8134 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8166 } ] }, { "id": "vp_xlframe_se", - "fg": 8135, + "fg": 8167, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8135 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8167 } ] }, { "id": "vp_xlframe_sw", - "fg": 8136, + "fg": 8168, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8136 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8168 } ] }, { "id": "vp_xlframe_vertical_unconnected", - "fg": 8144, + "fg": 8176, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8144 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8176 } ] }, { "id": "vp_xlframe_vertical_2_unconnected", - "fg": 8141, + "fg": 8173, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8141 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8173 } ] }, { "id": "vp_xlframe_vertical_left", - "fg": 8142, + "fg": 8174, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8142 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8174 } ] }, { "id": "vp_xlframe_vertical_2_left", - "fg": 8139, + "fg": 8171, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8139 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8171 } ] }, { "id": "vp_xlframe_vertical_right", - "fg": 8143, + "fg": 8175, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8143 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8175 } ] }, { "id": "vp_xlframe_vertical_2_right", - "fg": 8140, + "fg": 8172, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8140 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8172 } ] }, { "id": "vp_xlframe_horizontal", - "fg": 8121, + "fg": 8153, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8121 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8153 } ] }, { "id": "vp_xlframe_horizontal_2", - "fg": 8122, + "fg": 8154, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8122 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8154 } ] }, { "id": "vp_xlframe_horizontal_unconnected", - "fg": 8132, + "fg": 8164, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8132 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8164 } ] }, { "id": "vp_xlframe_horizontal_2_unconnected", - "fg": 8125, + "fg": 8157, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8125 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8157 } ] }, { "id": "vp_xlframe_horizontal_front", - "fg": 8128, + "fg": 8160, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8128 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8160 } ] }, { "id": "vp_xlframe_horizontal_2_front", - "fg": 8123, + "fg": 8155, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8123 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8155 } ] }, { "id": "vp_xlframe_horizontal_rear", - "fg": 8130, + "fg": 8162, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8130 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8162 } ] }, { "id": "vp_xlframe_horizontal_2_rear", - "fg": 8124, + "fg": 8156, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8124 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8156 } ] }, { "id": [ "vp_xlframe_horizontal_left", "vp_xlframe_vertical_T_left" ], - "fg": 8129, + "fg": 8161, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8129 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8161 } ] }, { "id": "vp_xlframe_horizontal_2_left", - "fg": 8126, + "fg": 8158, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8126 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8158 } ] }, { "id": [ "vp_xlframe_horizontal_right", "vp_xlframe_vertical_T_right" ], - "fg": 8131, + "fg": 8163, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8131 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8163 } ] }, { "id": "vp_xlframe_horizontal_2_right", - "fg": 8127, + "fg": 8159, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8127 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8159 } ] }, { "id": "vp_xlframe_vertical", - "fg": 8137, + "fg": 8169, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8137 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8169 } ] }, { "id": "vp_xlframe_vertical_2", - "fg": 8138, + "fg": 8170, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8138 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8170 } ] }, { "id": [ "vp_headlight", "vp_headlight_reinforced", "vp_wide_headlight_reinforced", "vp_wide_headlight" ], - "fg": 8146 + "fg": 8178 }, { "id": [ "vp_headlight_ne", "vp_headlight_reinforced_ne", "vp_wide_headlight_reinforced_ne", "vp_wide_headlight_ne" ], - "fg": 8145 + "fg": 8177 }, { "id": [ "vp_headlight_nw", "vp_headlight_reinforced_nw", "vp_wide_headlight_reinforced_nw", "vp_wide_headlight_nw" ], - "fg": 8146 - }, - { - "id": "vp_light_blue", - "fg": [ 8160, 8161 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8160, 8161 ] } ] - }, - { - "id": "vp_light_red", - "fg": [ 8162, 8163 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8162, 8163 ] } ] - }, - { - "id": [ "vp_floodlight", "vp_directed_floodlight" ], - "fg": [ 8154, 8156, 8155, 8153 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8154, 8156, 8155, 8153 ] } ] - }, - { - "id": "vp_omnicam", - "fg": 8169, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8169 } ] + "fg": 8178 }, { "id": [ "vp_veh_table", "vp_veh_table_wood" ], - "fg": [ 8147, 8147 ], - "bg": [ 8175, 8174 ], + "fg": [ 8179, 8179 ], + "bg": [ 8198, 8197 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8148, "bg": [ 8175, 8174 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8180, "bg": [ 8198, 8197 ] } ] }, { "id": "vp_workbench", - "fg": [ 8176, 8176 ], - "bg": 3542, + "fg": [ 8199, 8199 ], + "bg": 3580, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8176, 8176 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8199, 8199 ] } ] }, { "id": "vp_minifridge", - "fg": [ 8167, 8167 ], + "fg": [ 8191, 8191 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8167, 8167 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8191, 8191 ] } ] }, { "id": "vp_minifreezer", - "fg": [ 8166, 8166 ], + "fg": [ 8190, 8190 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8166, 8166 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8190, 8190 ] } ] }, { "id": "vp_kitchen_unit", - "fg": [ 8159, 8159 ], + "fg": [ 8187, 8187 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8159, 8159 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8187, 8187 ] } ] }, { "id": "vp_welding_rig", - "fg": [ 8173, 8173 ], + "fg": [ 8196, 8196 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8173, 8173 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8196, 8196 ] } ] }, { "id": "vp_craft_rig", - "fg": [ 8152, 8152 ], + "fg": [ 8184, 8184 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8152, 8152 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8184, 8184 ] } ] }, { "id": "vp_washing_machine", - "fg": [ 8172, 8172 ], + "fg": [ 8195, 8195 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8172, 8172 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8195, 8195 ] } ] }, { "id": "vp_veh_forge", - "fg": [ 8157, 8157 ], + "fg": [ 8185, 8185 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8157, 8157 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8185, 8185 ] } ] }, { "id": "vp_veh_kiln", - "fg": [ 8158, 8158 ], + "fg": [ 8186, 8186 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8158, 8158 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8186, 8186 ] } ] }, { "id": "vp_chemlab", - "fg": [ 8151, 8151 ], + "fg": [ 8183, 8183 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8151, 8151 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8183, 8183 ] } ] }, { "id": "vp_aisle_vertical", - "fg": 8150, + "fg": 8182, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8150 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8182 } ] }, { "id": "vp_aisle_horizontal", - "fg": 8149, + "fg": 8181, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8149 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8181 } ] }, - { "id": "vp_trunk_floor", "fg": 8170, "bg": 8150 }, + { "id": "vp_trunk_floor", "fg": 8193, "bg": 8182 }, { "id": "vp_wooden_aisle_vertical", - "fg": [ 8175, 8174 ], + "fg": [ 8198, 8197 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8175, 8174 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8198, 8197 ] } ] }, { "id": "vp_wooden_aisle_horizontal", - "fg": [ 8174, 8175 ], + "fg": [ 8197, 8198 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8174, 8175 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8197, 8198 ] } ] }, { "id": "vp_lit_aisle_vertical", - "fg": 8165, + "fg": 8189, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8165 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8189 } ] }, { "id": "vp_lit_aisle_horizontal", - "fg": 8164, + "fg": 8188, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8164 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8188 } ] }, { "id": "vp_mounted_spare_tire", - "fg": 8168, + "fg": 8192, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8168 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8192 } ] }, { "id": [ "vp_saddle", "vp_saddle_pedal" ], - "fg": [ 8178, 8180, 8179, 8177 ], + "fg": [ 8201, 8203, 8202, 8200 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8178, 8180, 8179, 8177 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8201, 8203, 8202, 8200 ] } ] }, { "id": [ "vp_seat_wood", "seat_wood_bench" ], - "fg": [ 8185, 8185, 8186, 8186 ], - "bg": [ 8175, 8174 ], + "fg": [ 8208, 8208, 8209, 8209 ], + "bg": [ 8198, 8197 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8185, 8185, 8186, 8186 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8208, 8208, 8209, 8209 ] } ] }, { "id": "vp_seat_wood_flimsy", - "fg": [ 8183, 8183, 8184, 8184 ], - "bg": [ 8175, 8174 ], + "fg": [ 8206, 8206, 8207, 8207 ], + "bg": [ 8198, 8197 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8183, 8183, 8184, 8184 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8206, 8206, 8207, 8207 ] } ] }, { "id": [ "vp_folding_seat", "vp_reclining_seat", "vp_seat" ], - "fg": [ 8218, 8216, 8211, 8217 ], + "fg": [ 8241, 8239, 8234, 8240 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8218, 8216, 8211, 8217 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8241, 8239, 8234, 8240 ] } ] }, { "id": "vp_seat_back", - "fg": [ 8187, 8210, 8209, 8208 ], + "fg": [ 8210, 8233, 8232, 8231 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8187, 8210, 8209, 8208 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8210, 8233, 8232, 8231 ] } ] }, { "id": "vp_seat_back_left", - "fg": [ 8200, 8203, 8202, 8201 ], + "fg": [ 8223, 8226, 8225, 8224 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8200, 8203, 8202, 8201 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8223, 8226, 8225, 8224 ] } ] }, { "id": "vp_seat_back_right", - "fg": [ 8204, 8207, 8206, 8205 ], + "fg": [ 8227, 8230, 8229, 8228 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8204, 8207, 8206, 8205 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8227, 8230, 8229, 8228 ] } ] }, { "id": "vp_seat_back_vertical", - "fg": [ 8208, 8187, 8210, 8209 ], + "fg": [ 8231, 8210, 8233, 8232 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8208, 8187, 8210, 8209 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8231, 8210, 8233, 8232 ] } ] }, { "id": "vp_seat_back_vertical_left", - "fg": [ 8201, 8200, 8203, 8202 ], + "fg": [ 8224, 8223, 8226, 8225 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8201, 8200, 8203, 8202 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8224, 8223, 8226, 8225 ] } ] }, { "id": "vp_seat_back_vertical_right", - "fg": [ 8205, 8204, 8207, 8206 ], + "fg": [ 8228, 8227, 8230, 8229 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8205, 8204, 8207, 8206 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8228, 8227, 8230, 8229 ] } ] }, { "id": [ "vp_seat_leather", "vp_reclining_seat_leather" ], - "fg": [ 8215, 8213, 8212, 8214 ], + "fg": [ 8238, 8236, 8235, 8237 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8215, 8213, 8212, 8214 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8238, 8236, 8235, 8237 ] } ] }, { "id": "vp_seat_back_leather", - "fg": [ 8188, 8199, 8198, 8197 ], + "fg": [ 8211, 8222, 8221, 8220 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8188, 8199, 8198, 8197 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8211, 8222, 8221, 8220 ] } ] }, { "id": "vp_seat_back_leather_left", - "fg": [ 8189, 8192, 8191, 8190 ], + "fg": [ 8212, 8215, 8214, 8213 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8189, 8192, 8191, 8190 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8212, 8215, 8214, 8213 ] } ] }, { "id": "vp_seat_back_leather_right", - "fg": [ 8193, 8196, 8195, 8194 ], + "fg": [ 8216, 8219, 8218, 8217 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8193, 8196, 8195, 8194 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8216, 8219, 8218, 8217 ] } ] }, { "id": "vp_seat_back_leather_vertical", - "fg": [ 8197, 8188, 8199, 8198 ], + "fg": [ 8220, 8211, 8222, 8221 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8197, 8188, 8199, 8198 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8220, 8211, 8222, 8221 ] } ] }, { "id": "vp_seat_back_leather_vertical_left", - "fg": [ 8190, 8189, 8192, 8191 ], + "fg": [ 8213, 8212, 8215, 8214 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8190, 8189, 8192, 8191 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8213, 8212, 8215, 8214 ] } ] }, { "id": "vp_seat_back_leather_vertical_right", - "fg": [ 8194, 8193, 8196, 8195 ], + "fg": [ 8217, 8216, 8219, 8218 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8194, 8193, 8196, 8195 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8217, 8216, 8219, 8218 ] } ] }, { "id": "vp_seat_rear", - "fg": [ 8211, 8217, 8218, 8216 ], + "fg": [ 8234, 8240, 8241, 8239 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8211, 8217, 8218, 8216 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8234, 8240, 8241, 8239 ] } ] }, { "id": "vp_seat_leather_rear", - "fg": [ 8212, 8214, 8215, 8213 ], + "fg": [ 8235, 8237, 8238, 8236 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8212, 8214, 8215, 8213 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8235, 8237, 8238, 8236 ] } ] }, { "id": [ "vp_seed_drill" ], - "fg": [ 8220, 8222, 8221, 8219 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8382, "bg": [ 8220, 8222, 8221, 8219 ] } ] - }, - { - "id": "vp_solar_panel", - "fg": 8223, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8223 } ] - }, - { - "id": "vp_reinforced_solar_panel", - "fg": 8226, - "bg": 8223, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8223 } ] - }, - { - "id": "vp_solar_panel_v2", - "fg": 8224, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8224 } ] - }, - { - "id": "vp_reinforced_solar_panel_v2", - "fg": 8226, - "bg": 8224, + "fg": [ 8243, 8245, 8244, 8242 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8224 } ] - }, - { - "id": "vp_solar_panel_v3", - "fg": 8225, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8225 } ] - }, - { - "id": "vp_afs_roof_external_tank", - "fg": [ 8228, 8227 ], - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8228, 8227 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8430, "bg": [ 8243, 8245, 8244, 8242 ] } ] }, { "id": "vp_external_tank", - "fg": [ 8229, 8230, 8231, 8232 ], + "fg": [ 8246, 8247, 8248, 8249 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8229, 8230, 8231, 8232 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8246, 8247, 8248, 8249 ] } ] }, { "id": "vp_tank_55gal_drum", - "fg": [ 8234, 8233 ], + "fg": [ 8251, 8250 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8234, 8233 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8251, 8250 ] } ] }, { "id": [ @@ -13441,80 +13360,80 @@ "vp_mounted_m60_semi" ], "//": "rifles and machineguns", - "fg": 8237, - "bg": 8235, + "fg": 8254, + "bg": 8252, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8237 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8254 } ] }, { "id": [ "vp_mounted_emp_gun", "vp_mounted_plasma_gun", "vp_plasma_gun", "vp_laser_rifle" ], "//": "energy weapons", - "fg": 8236, - "bg": 8235, + "fg": 8253, + "bg": 8252, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8236 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8253 } ] }, { "id": [ "vp_mounted_hk_g80", "vp_mounted_coilgun" ], "//": "railguns", - "fg": 8238, - "bg": 8235, + "fg": 8255, + "bg": 8252, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8238 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8255 } ] }, { "id": [ "vp_mounted_bigun", "vp_mounted_m134" ], "//": "multibarrel weapons", - "fg": 8237, - "bg": 8235, + "fg": 8254, + "bg": 8252, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8237 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8254 } ] }, { "id": [ "vp_watercannon", "vp_flamethrower", "vp_mounted_chemical_thrower" ], "//": "liquid sprayers", - "fg": 8237, - "bg": 8235, + "fg": 8254, + "bg": 8252, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8237 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8254 } ] }, { "id": "vp_tow_launcher", "//": "rocket tubes", - "fg": 8237, - "bg": 8235, + "fg": 8254, + "bg": 8252, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8237 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8254 } ] }, { "id": "vp_animal_compartment", - "fg": [ 8239, 8239, 8239, 8239 ], + "fg": [ 8256, 8256, 8256, 8256 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8239, 8239, 8239, 8239 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8256, 8256, 8256, 8256 ] } ] }, { "id": "vp_basketsm_wheelchair", - "fg": [ 8241, 8243, 8242, 8240 ], + "fg": [ 8258, 8260, 8259, 8257 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8241, 8243, 8242, 8240 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8258, 8260, 8259, 8257 ] } ] }, { "id": [ "vp_wheel", "vp_wheel_steerable" ], - "fg": 8244, + "fg": 8261, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8244 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8261 } ] }, { "id": [ "vp_wheel_bicycle", "vp_wheel_bicycle_steerable", "vp_wheel_bicycle_or", "vp_wheel_bicycle_or_steerable" ], - "fg": [ 8246, 8248, 8247, 8245 ], + "fg": [ 8263, 8265, 8264, 8262 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8246, 8248, 8247, 8245 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8263, 8265, 8264, 8262 ] } ] }, { "id": [ "vp_wheel_bicycle_rear", "vp_wheel_bicycle_or_rear" ], - "fg": [ 8247, 8245, 8246, 8248 ], + "fg": [ 8264, 8262, 8263, 8265 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": [ 8247, 8245, 8246, 8248 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": [ 8264, 8262, 8263, 8265 ] } ] }, { "id": [ @@ -13523,691 +13442,808 @@ "vp_reinforced_windshield_horizontal_front", "vp_reinforced_windshield_front_edge" ], - "fg": [ 8249, 8252, 8251, 8250 ], + "fg": [ 8266, 8269, 8268, 8267 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8249, 8252, 8251, 8250 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": [ 8266, 8269, 8268, 8267 ] } ] }, { "id": "vp_reinforced_windshield_horizontal_rear", - "fg": 8253, + "fg": 8270, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8253 } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": 8270 } ] }, { "id": "vp_reinforced_windshield_horizontal_rear_edge", - "fg": 8254, + "fg": 8271, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8254 } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": 8271 } ] }, { "id": "vp_reinforced_windshield_nw", - "fg": [ 8259, 8262, 8261, 8260 ], + "fg": [ 8276, 8279, 8278, 8277 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8259, 8262, 8261, 8260 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": [ 8276, 8279, 8278, 8277 ] } ] }, { "id": "vp_reinforced_windshield_ne", - "fg": [ 8255, 8258, 8257, 8256 ], + "fg": [ 8272, 8275, 8274, 8273 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8255, 8258, 8257, 8256 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": [ 8272, 8275, 8274, 8273 ] } ] }, { "id": "vp_reinforced_windshield_sw", - "fg": 8268, + "fg": 8285, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8268 } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": 8285 } ] }, { "id": "vp_reinforced_windshield_se", - "fg": 8263, + "fg": 8280, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": 8263 } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": 8280 } ] }, { "id": "vp_reinforced_windshield_sw_edge", - "fg": [ 8269, 8272, 8271, 8270 ], + "fg": [ 8286, 8289, 8288, 8287 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8269, 8272, 8271, 8270 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": [ 8286, 8289, 8288, 8287 ] } ] }, { "id": "vp_reinforced_windshield_se_edge", - "fg": [ 8264, 8267, 8266, 8265 ], + "fg": [ 8281, 8284, 8283, 8282 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8264, 8267, 8266, 8265 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": [ 8281, 8284, 8283, 8282 ] } ] }, { "id": [ "vp_reinforced_windshield_vertical_left", "vp_reinforced_windshield_left" ], - "fg": [ 8273, 8276, 8275, 8274 ], + "fg": [ 8290, 8293, 8292, 8291 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8273, 8276, 8275, 8274 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": [ 8290, 8293, 8292, 8291 ] } ] }, { "id": [ "vp_reinforced_windshield_vertical_right", "vp_reinforced_windshield_right" ], - "fg": [ 8277, 8280, 8279, 8278 ], + "fg": [ 8294, 8297, 8296, 8295 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8277, 8280, 8279, 8278 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": [ 8294, 8297, 8296, 8295 ] } ] }, { "id": [ "vp_reinforced_windshield_full_vertical_left", "vp_reinforced_windshield_full_left" ], - "fg": [ 8273, 8276, 8275, 8274 ], + "fg": [ 8290, 8293, 8292, 8291 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8273, 8276, 8275, 8274 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": [ 8290, 8293, 8292, 8291 ] } ] }, { "id": [ "vp_reinforced_windshield_full_vertical_right", "vp_reinforced_windshield_full_right" ], - "fg": [ 8277, 8280, 8279, 8278 ], + "fg": [ 8294, 8297, 8296, 8295 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8029, "bg": [ 8277, 8280, 8279, 8278 ] } ] + "additional_tiles": [ { "id": "broken", "fg": 8061, "bg": [ 8294, 8297, 8296, 8295 ] } ] }, { "id": "vp_frame_wood_vertical_2", - "fg": 8301, + "fg": 8318, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8301 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8318 } ] }, { "id": "vp_frame_wood_vertical_2_unconnected", - "fg": 8304, + "fg": 8321, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8304 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8321 } ] }, { "id": "vp_frame_wood_vertical_2_right", - "fg": 8303, + "fg": 8320, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8303 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8320 } ] }, { "id": "vp_frame_wood_vertical_2_left", - "fg": 8302, + "fg": 8319, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8302 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8319 } ] }, { "id": "vp_frame_wood_vertical", - "fg": 8300, + "fg": 8317, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8300 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8317 } ] }, { "id": "vp_frame_wood_vertical_unconnected", - "fg": 8307, + "fg": 8324, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8307 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8324 } ] }, { "id": "vp_frame_wood_vertical_right", - "fg": 8306, + "fg": 8323, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8306 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8323 } ] }, { "id": "vp_frame_wood_vertical_left", - "fg": 8305, + "fg": 8322, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8305 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8322 } ] }, { "id": "vp_frame_wood_sw", - "fg": 8299, + "fg": 8316, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8299 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8316 } ] }, { "id": "vp_frame_wood_se", - "fg": 8298, + "fg": 8315, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8298 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8315 } ] }, { "id": "vp_frame_wood_nw", - "fg": 8297, + "fg": 8314, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8297 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8314 } ] }, { "id": "vp_frame_wood_ne", - "fg": 8296, + "fg": 8313, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8296 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8313 } ] }, { "id": "vp_frame_wood_horizontal_2", - "fg": 8285, + "fg": 8302, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8285 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8302 } ] }, { "id": "vp_frame_wood_horizontal_2_unconnected", - "fg": 8290, + "fg": 8307, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8290 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8307 } ] }, { "id": "vp_frame_wood_horizontal_2_right", - "fg": 8289, + "fg": 8306, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8289 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8306 } ] }, { "id": "vp_frame_wood_horizontal_2_rear", - "fg": 8288, + "fg": 8305, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8288 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8305 } ] }, { "id": "vp_frame_wood_horizontal_2_left", - "fg": 8287, + "fg": 8304, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8287 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8304 } ] }, { "id": "vp_frame_wood_horizontal_2_front", - "fg": 8286, + "fg": 8303, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8286 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8303 } ] }, { "id": "vp_frame_wood_horizontal", - "fg": 8284, + "fg": 8301, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8284 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8301 } ] }, { "id": "vp_frame_wood_horizontal_unconnected", - "fg": 8295, + "fg": 8312, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8295 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8312 } ] }, { "id": "vp_frame_wood_horizontal_right", - "fg": 8294, + "fg": 8311, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8294 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8311 } ] }, { "id": "vp_frame_wood_horizontal_rear", - "fg": 8293, + "fg": 8310, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8293 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8310 } ] }, { "id": "vp_frame_wood_horizontal_left", - "fg": 8292, + "fg": 8309, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8292 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8309 } ] }, { "id": "vp_frame_wood_horizontal_front", - "fg": 8291, + "fg": 8308, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8291 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8308 } ] }, { "id": "vp_frame_wood_cross", - "fg": 8282, + "fg": 8299, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8282 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8299 } ] }, { "id": [ "vp_frame_wood_cross_unconnected", "vp_frame_wood", "frame_wood" ], - "fg": 8283, + "fg": 8300, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8283 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8300 } ] }, { "id": "vp_frame_wood_cover", - "fg": 8281, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8281 } ] - }, - { "id": "f_floor_mattress", "fg": 7559 }, - { "id": "f_fungal_mass", "fg": 7562 }, - { "id": "f_fungal_tangle", "fg": 7563 }, - { "id": "f_brazier", "fg": 7564 }, - { "id": "emer_blanket", "fg": 7594 }, - { "id": "emer_blanket_on", "fg": 7595 }, - { "id": "jacket_evac", "fg": 7596 }, - { "id": "f_autoclave", "fg": 7599 }, - { "id": "jeans_red", "fg": 7606 }, - { "id": "tights", "fg": 7607 }, - { "id": "blade", "fg": 7608 }, - { "id": "rm13_armor", "fg": 7609 }, - { "id": "55gal_drum", "fg": 7610 }, - { "id": "leather_funnel", "fg": 7635 }, - { "id": "tr_leather_funnel", "fg": 7637 }, - { "id": "brush", "fg": 7645 }, - { "id": "casserole", "fg": 7646 }, - { "id": "curling_iron", "fg": 7647 }, - { "id": "cutting_board", "fg": 7648 }, - { "id": "elec_hairtrimmer", "fg": 7649 }, - { "id": "hairbrush", "fg": 7650 }, - { "id": "metal_file", "fg": 7652 }, - { "id": "mobile_memory_card", "fg": 7653 }, - { "id": "plastic_straw", "fg": 7654 }, - { "id": "razor_blade", "fg": 7655 }, - { "id": "razor_shaving", "fg": 7656 }, - { "id": "string_floss", "fg": 7657 }, - { "id": "tumbler_plastic", "fg": 7659 }, - { "id": "xacto", "fg": 7660 }, - { "id": "mon_creeper_hub", "fg": 7732 }, - { "id": "mon_creeper_vine", "fg": 7733 }, - { "id": "f_rubble_landfill", "fg": 7760 }, - { "id": "t_roof_paper", "fg": 7809 }, - { "id": "crack_glass_left", "fg": 8030 }, - { "id": "crack_glass_right", "fg": 8031 }, - { "id": "vp_ram_mattress", "fg": 8059 }, - { "id": "vp_tearer", "fg": 8063 }, - { "id": "vp_vehicle_scoop", "fg": 8171 }, - { "id": "seat", "fg": 8181 }, - { "id": "seat_leather", "fg": 8182 } + "fg": 8298, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8298 } ] + }, + { "id": "f_floor_mattress", "fg": 7591 }, + { "id": "f_fungal_mass", "fg": 7594 }, + { "id": "f_fungal_tangle", "fg": 7595 }, + { "id": "f_brazier", "fg": 7596 }, + { "id": "emer_blanket", "fg": 7626 }, + { "id": "emer_blanket_on", "fg": 7627 }, + { "id": "jacket_evac", "fg": 7628 }, + { "id": "f_autoclave", "fg": 7631 }, + { "id": "jeans_red", "fg": 7638 }, + { "id": "tights", "fg": 7639 }, + { "id": "blade", "fg": 7640 }, + { "id": "rm13_armor", "fg": 7641 }, + { "id": "55gal_drum", "fg": 7642 }, + { "id": "leather_funnel", "fg": 7667 }, + { "id": "tr_leather_funnel", "fg": 7669 }, + { "id": "brush", "fg": 7677 }, + { "id": "casserole", "fg": 7678 }, + { "id": "curling_iron", "fg": 7679 }, + { "id": "cutting_board", "fg": 7680 }, + { "id": "elec_hairtrimmer", "fg": 7681 }, + { "id": "hairbrush", "fg": 7682 }, + { "id": "metal_file", "fg": 7684 }, + { "id": "mobile_memory_card", "fg": 7685 }, + { "id": "plastic_straw", "fg": 7686 }, + { "id": "razor_blade", "fg": 7687 }, + { "id": "razor_shaving", "fg": 7688 }, + { "id": "string_floss", "fg": 7689 }, + { "id": "tumbler_plastic", "fg": 7691 }, + { "id": "xacto", "fg": 7692 }, + { "id": "mon_creeper_hub", "fg": 7764 }, + { "id": "mon_creeper_vine", "fg": 7765 }, + { "id": "f_rubble_landfill", "fg": 7792 }, + { "id": "t_roof_paper", "fg": 7841 }, + { "id": "crack_glass_left", "fg": 8062 }, + { "id": "crack_glass_right", "fg": 8063 }, + { "id": "vp_ram_mattress", "fg": 8091 }, + { "id": "vp_tearer", "fg": 8095 }, + { "id": "vp_vehicle_scoop", "fg": 8194 }, + { "id": "seat", "fg": 8204 }, + { "id": "seat_leather", "fg": 8205 } ] }, { "file": "incomplete_large.png", - "//": "range 8320 to 8367", + "//": "range 8336 to 8415", "sprite_width": 64, "sprite_height": 64, "sprite_offset_x": -16, "sprite_offset_y": -32, "tiles": [ - { "id": "mon_alpha_razorclaw", "fg": 8320, "bg": 7238 }, - { "id": "mon_chickenbot", "fg": 8321, "bg": 7238 }, - { "id": "mon_razorclaw", "fg": 8322, "bg": 7238 }, - { "id": "mon_science_bot", "fg": 8323, "bg": 7238 }, + { "id": "mon_alpha_razorclaw", "fg": 8336, "bg": 7254 }, + { "id": "mon_chickenbot", "fg": 8337, "bg": 7254 }, + { "id": "mon_razorclaw", "fg": 8338, "bg": 7254 }, + { "id": "mon_science_bot", "fg": 8339, "bg": 7254 }, + { + "id": "vp_door_trunk_horizontal_2", + "fg": [ 8341, 8348, 8347, 8346 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8342, 8345, 8344, 8343 ] }, + { "id": "broken", "fg": [ 4927, 4927, 4927, 4927 ], "bg": [ 8342, 8345, 8344, 8343 ] } + ] + }, { "id": "vp_halfboard_hatch_wheel_left", - "fg": [ 8325, 8328, 8327, 8326 ], + "fg": [ 8349, 8352, 8351, 8350 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8324, 8324, 8324, 8324 ], "bg": [ 8325, 8328, 8327, 8326 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8340, 8340, 8340, 8340 ], "bg": [ 8349, 8352, 8351, 8350 ] } ] }, { "id": "vp_halfboard_hatch_wheel_right", - "fg": [ 8329, 8332, 8331, 8330 ], + "fg": [ 8353, 8356, 8355, 8354 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8324, 8324, 8324, 8324 ], "bg": [ 8329, 8332, 8331, 8330 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8340, 8340, 8340, 8340 ], "bg": [ 8353, 8356, 8355, 8354 ] } ] }, { "id": "vp_halfboard_horizontal_2_rear", - "fg": [ 8333, 8336, 8335, 8334 ], + "fg": [ 8357, 8360, 8359, 8358 ], "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": [ 8324, 8324, 8324, 8324 ], "bg": [ 8333, 8336, 8335, 8334 ] } ] + "additional_tiles": [ { "id": "broken", "fg": [ 8340, 8340, 8340, 8340 ], "bg": [ 8357, 8360, 8359, 8358 ] } ] }, { "id": "vp_hatch", - "fg": [ 8337, 8352, 8351, 8350 ], + "fg": [ 8361, 8376, 8375, 8374 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8346, 8349, 8348, 8347 ] }, - { "id": "broken", "fg": [ 8324, 8324, 8324, 8324 ], "bg": [ 8346, 8349, 8348, 8347 ] } + { "id": "open", "fg": [ 8370, 8373, 8372, 8371 ] }, + { "id": "broken", "fg": [ 8340, 8340, 8340, 8340 ], "bg": [ 8370, 8373, 8372, 8371 ] } ] }, { "id": "vp_hatch_opaque", - "fg": [ 8338, 8345, 8344, 8343 ], + "fg": [ 8362, 8369, 8368, 8367 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8363, 8366, 8365, 8364 ] }, + { "id": "broken", "fg": [ 8340, 8340, 8340, 8340 ], "bg": [ 8363, 8366, 8365, 8364 ] } + ] + }, + { + "id": "vp_hatch_left", + "fg": [ 8379, 8386, 8385, 8384 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8380, 8383, 8382, 8381 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 8380, 8383, 8382, 8381 ] } + ] + }, + { + "id": "vp_hatch_right", + "fg": [ 8385, 8384, 8379, 8386 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8382, 8381, 8380, 8383 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 8382, 8381, 8380, 8383 ] } + ] + }, + { + "id": "vp_hatch_wheel_left", + "fg": [ 8379, 8398, 8385, 8384 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8380, 8397, 8382, 8381 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 8380, 8383, 8382, 8381 ] } + ] + }, + { + "id": "vp_hatch_wheel_right", + "fg": [ 8385, 8384, 8379, 8398 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8382, 8381, 8380, 8397 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 8382, 8381, 8380, 8397 ] } + ] + }, + { + "id": [ "vp_hatch_horizontal_rear", "vp_hatch_horizontal", "vp_hatch_horizontal_2" ], + "fg": [ 8377, 8385, 8384, 8379 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8339, 8342, 8341, 8340 ] }, - { "id": "broken", "fg": [ 8324, 8324, 8324, 8324 ], "bg": [ 8339, 8342, 8341, 8340 ] } + { "id": "open", "fg": [ 8378, 8382, 8381, 8380 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 8378, 8382, 8381, 8380 ] } + ] + }, + { + "id": "vp_hatch_horizontal_front", + "fg": [ 8384, 8379, 8377, 8385 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8381, 8380, 8378, 8382 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 8381, 8380, 8378, 8382 ] } + ] + }, + { + "id": "vp_hatch_opaque_left", + "fg": [ 8379, 8394, 8385, 8393 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8389, 8392, 8391, 8390 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 8389, 8392, 8391, 8390 ] } + ] + }, + { + "id": "vp_hatch_opaque_right", + "fg": [ 8385, 8393, 8379, 8394 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8391, 8390, 8389, 8392 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 8391, 8390, 8389, 8392 ] } + ] + }, + { + "id": "vp_hatch_opaque_wheel_left", + "fg": [ 8379, 8396, 8385, 8393 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8389, 8395, 8391, 8390 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 8389, 8395, 8391, 8390 ] } + ] + }, + { + "id": "vp_hatch_opaque_wheel_right", + "fg": [ 8385, 8393, 8379, 8396 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8391, 8390, 8389, 8395 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 8391, 8390, 8389, 8395 ] } + ] + }, + { + "id": [ "vp_hatch_opaque_horizontal_rear", "vp_hatch_opaque_horizontal", "vp_hatch_opaque_horizontal_2" ], + "fg": [ 8387, 8385, 8393, 8379 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8388, 8391, 8390, 8389 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 8388, 8391, 8390, 8389 ] } + ] + }, + { + "id": "vp_hatch_opaque_horizontal_front", + "fg": [ 8393, 8379, 8387, 8385 ], + "multitile": true, + "additional_tiles": [ + { "id": "open", "fg": [ 8390, 8389, 8388, 8391 ] }, + { "id": "broken", "fg": [ 6931, 6931, 6931, 6931 ], "bg": [ 8390, 8389, 8388, 8391 ] } ] }, { "id": "vp_door_trunk_hatch_wheel_left", - "fg": [ 8353, 8360, 8359, 8358 ], + "fg": [ 8399, 8406, 8405, 8404 ], "multitile": true, "additional_tiles": [ - { "id": "open", "fg": [ 8354, 8357, 8356, 8355 ] }, - { "id": "broken", "fg": [ 8324, 8324, 8324, 8324 ], "bg": [ 8354, 8357, 8356, 8355 ] } + { "id": "open", "fg": [ 8400, 8403, 8402, 8401 ] }, + { "id": "broken", "fg": [ 8340, 8340, 8340, 8340 ], "bg": [ 8400, 8403, 8402, 8401 ] } ] } ] }, { "file": "fillerhoder.png", - "//": "range 8368 to 8431", + "//": "range 8416 to 8479", "tiles": [ { "id": "f_sandbag_wall", - "fg": 8368, + "fg": 8416, "rotates": true, "multitile": true, "additional_tiles": [ - { "id": "unconnected", "fg": 8368 }, - { "id": "center", "fg": 8369 }, - { "id": "corner", "fg": 8370 }, - { "id": "edge", "fg": 8371 }, - { "id": "end_piece", "fg": 8372 }, - { "id": "t_connection", "fg": 8373 } + { "id": "unconnected", "fg": 8416 }, + { "id": "center", "fg": 8417 }, + { "id": "corner", "fg": 8418 }, + { "id": "edge", "fg": 8419 }, + { "id": "end_piece", "fg": 8420 }, + { "id": "t_connection", "fg": 8421 } ] }, - { "id": "f_slab", "fg": 8374 }, - { "id": "animation_bullet_flame", "fg": 8375, "rotates": false }, - { "id": "animation_bullet_normal", "fg": 8376, "rotates": false }, - { "id": "animation_bullet_shrapnel", "fg": 8377 }, + { "id": "f_slab", "fg": 8422 }, + { "id": "animation_bullet_flame", "fg": 8423, "rotates": false }, + { "id": "animation_bullet_normal", "fg": 8424, "rotates": false }, + { "id": "animation_bullet_shrapnel", "fg": 8425 }, { "id": "explosion", - "fg": 8378, + "fg": 8426, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 8378 }, { "id": "edge", "fg": 8379 } ] + "additional_tiles": [ { "id": "corner", "fg": 8426 }, { "id": "edge", "fg": 8427 } ] }, { "id": "explosion_medium", "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 8378 }, { "id": "edge", "fg": 8379 } ], - "fg": 8378 + "additional_tiles": [ { "id": "corner", "fg": 8426 }, { "id": "edge", "fg": 8427 } ], + "fg": 8426 }, { "id": "explosion_weak", "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "corner", "fg": 8378 }, { "id": "edge", "fg": 8379 } ], - "fg": 8378 + "additional_tiles": [ { "id": "corner", "fg": 8426 }, { "id": "edge", "fg": 8427 } ], + "fg": 8426 }, { "id": "vp_chimes", - "fg": 8380, + "fg": 8428, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8380 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8428 } ] }, { "id": "vp_robot_controls", - "fg": 8381, + "fg": 8429, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8381 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8429 } ] }, - { "id": "vp_ram_wood", "fg": [ 8395, 8397, 8396, 8398 ], "rotates": true }, - { "id": "vp_ram_military", "fg": [ 8391, 8393, 8392, 8394 ], "rotates": true }, - { "id": "vp_ram_hardsteel", "fg": [ 8387, 8389, 8388, 8390 ], "rotates": true }, - { "id": "vp_ram_alloy", "fg": [ 8383, 8385, 8384, 8386 ], "rotates": true }, + { "id": "vp_ram_wood", "fg": [ 8443, 8445, 8444, 8446 ], "rotates": true }, + { "id": "vp_ram_military", "fg": [ 8439, 8441, 8440, 8442 ], "rotates": true }, + { "id": "vp_ram_hardsteel", "fg": [ 8435, 8437, 8436, 8438 ], "rotates": true }, + { "id": "vp_ram_alloy", "fg": [ 8431, 8433, 8432, 8434 ], "rotates": true }, { "id": "vp_roller_drum", - "fg": 8399, + "fg": 8447, "rotates": true, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8382, "bg": 8399 } ] + "additional_tiles": [ { "id": "broken", "fg": 8430, "bg": 8447 } ] }, { "id": "vp_battery_motorbike", - "fg": 8411, + "fg": 8459, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8411 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8459 } ] }, { "id": "vp_blade_horizontal", - "fg": 8420, + "fg": 8468, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8420 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8468 } ] }, { "id": "vp_blade_vertical", - "fg": 8421, + "fg": 8469, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8421 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8469 } ] }, { "id": "vp_controls", - "fg": 8415, + "fg": 8463, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8415 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8463 } ] }, { "id": "vp_engine_1cyl", - "fg": 8404, + "fg": 8452, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8404 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8452 } ] }, { "id": "vp_engine_electric", - "fg": 8408, + "fg": 8456, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8408 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8456 } ] }, { "id": "vp_engine_electric_large", - "fg": 8409, + "fg": 8457, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8409 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8457 } ] }, - { "id": "vp_engine_v12", "fg": 8406, "bg": 8407 }, + { "id": "vp_engine_v12", "fg": 8454, "bg": 8455 }, { "id": "vp_engine_v6", - "fg": 8406, + "fg": 8454, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8406 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8454 } ] }, { "id": "vp_engine_v8", - "fg": 8407, + "fg": 8455, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8407 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8455 } ] }, { "id": "vp_engine_vtwin", - "fg": 8405, + "fg": 8453, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8405 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8453 } ] }, { "id": "vp_foot_pedals", - "fg": 8410, + "fg": 8458, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8410 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8458 } ] }, { "id": "vp_fusion_gun", - "fg": 8423, + "fg": 8471, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8423 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8471 } ] }, { "id": "vp_hdroof", - "fg": 8425, + "fg": 8473, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8425 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8473 } ] }, { "id": "vp_hydrogen_tank", - "fg": 8413, + "fg": 8461, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8413 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8461 } ] }, { "id": "vp_minireactor", - "fg": 8412, + "fg": 8460, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8412 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8460 } ] }, { "id": "vp_muffler", - "fg": 8414, + "fg": 8462, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8414 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8462 } ] }, { "id": "vp_plating_hard", - "fg": 8419, + "fg": 8467, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8419 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8467 } ] }, { "id": "vp_plating_military", - "fg": 8416, + "fg": 8464, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8416 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8464 } ] }, { "id": "vp_plating_spiked", - "fg": 8418, + "fg": 8466, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8418 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8466 } ] }, { "id": "vp_plating_steel", - "fg": 8416, + "fg": 8464, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8416 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8464 } ] }, { "id": "vp_plating_superalloy", - "fg": 8417, + "fg": 8465, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8417 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8465 } ] }, { "id": "vp_plating_wood", - "fg": 8428, + "fg": 8476, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8428 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8476 } ] }, { "id": "vp_roof", - "fg": 8426, + "fg": 8474, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8426 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8474 } ] }, { "id": "vp_roof_cloth", - "fg": 8427, + "fg": 8475, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8427 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8475 } ] }, { "id": "vp_seatbelt", - "fg": 8403, + "fg": 8451, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8403 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8451 } ] }, { "id": "vp_seatbelt_heavyduty", - "fg": 8403, + "fg": 8451, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8403 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8451 } ] }, { "id": "vp_small_storage_battery", - "fg": 8411, + "fg": 8459, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8411 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8459 } ] }, { "id": "vp_storage_battery", - "fg": 8411, + "fg": 8459, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8411 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8459 } ] }, { "id": "vp_v_curtain", - "fg": 8429, + "fg": 8477, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8429 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8477 } ] }, { "id": "vp_wheel_armor", - "fg": 8400, + "fg": 8448, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8400 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8448 } ] }, { "id": "vp_wheel_armor_steerable", - "fg": 8400, + "fg": 8448, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8400 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8448 } ] }, { "id": "vp_wheel_caster", - "fg": 8424, + "fg": 8472, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8424 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8472 } ] }, { "id": "vp_wheel_small", - "fg": 8402, + "fg": 8450, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8402 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8450 } ] }, { "id": "vp_wheel_small_steerable", - "fg": 8402, + "fg": 8450, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8402 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8450 } ] }, { "id": "vp_wheel_wheelchair", - "fg": 8401, + "fg": 8449, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8401 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8449 } ] }, { "id": "vp_wheel_wood", - "fg": 8431, + "fg": 8479, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8431 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8479 } ] }, { "id": [ "wheel_wood", "wheel_wood_b" ], - "fg": 8431, + "fg": 8479, "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8431 } ] + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8479 } ] }, { "id": "vp_wheel_wood_b", - "fg": 8431, - "multitile": true, - "additional_tiles": [ { "id": "broken", "fg": 8032, "bg": 8431 } ] - }, - { "id": "foot_crank", "fg": 8410 }, - { "id": "frame", "fg": 8430 }, - { "id": "hard_plate", "fg": 8419 }, - { "id": "kitchen_unit", "fg": 8422 }, - { "id": "motor", "fg": 8408 }, - { "id": "motor_large", "fg": 8409 }, - { "id": "muffler", "fg": 8414 }, - { "id": "spiked_plate", "fg": 8418 }, - { "id": "storage_battery", "fg": 8411 }, - { "id": "vehicle_controls", "fg": 8415 }, - { "id": "1cyl_combustion", "fg": 8404 }, - { "id": "v2_combustion", "fg": 8405 }, - { "id": [ "v6_combustion", "v6_diesel" ], "fg": 8406 }, - { "id": "v8_combustion", "fg": 8407 } + "fg": 8479, + "multitile": true, + "additional_tiles": [ { "id": "broken", "fg": 8064, "bg": 8479 } ] + }, + { "id": "foot_crank", "fg": 8458 }, + { "id": "frame", "fg": 8478 }, + { "id": "hard_plate", "fg": 8467 }, + { "id": "kitchen_unit", "fg": 8470 }, + { "id": "motor", "fg": 8456 }, + { "id": "motor_large", "fg": 8457 }, + { "id": "muffler", "fg": 8462 }, + { "id": "spiked_plate", "fg": 8466 }, + { "id": "storage_battery", "fg": 8459 }, + { "id": "vehicle_controls", "fg": 8463 }, + { "id": "1cyl_combustion", "fg": 8452 }, + { "id": "v2_combustion", "fg": 8453 }, + { "id": [ "v6_combustion", "v6_diesel" ], "fg": 8454 }, + { "id": "v8_combustion", "fg": 8455 } ] }, { "file": "filler.png", - "//": "range 8432 to 8463", + "//": "range 8480 to 8511", "tiles": [ { "id": "f_metal_bench", "multitile": true, - "fg": 8447, + "fg": 8495, "additional_tiles": [ - { "id": "center", "fg": 8432 }, - { "id": "corner", "fg": [ 8434, 8436, 8435, 8433 ] }, - { "id": "t_connection", "fg": [ 8444, 8446, 8445, 8443 ] }, - { "id": "edge", "fg": [ 8438, 8437 ] }, - { "id": "end_piece", "fg": [ 8440, 8442, 8441, 8439 ] }, - { "id": "unconnected", "fg": [ 8447, 8447 ] } + { "id": "center", "fg": 8480 }, + { "id": "corner", "fg": [ 8482, 8484, 8483, 8481 ] }, + { "id": "t_connection", "fg": [ 8492, 8494, 8493, 8491 ] }, + { "id": "edge", "fg": [ 8486, 8485 ] }, + { "id": "end_piece", "fg": [ 8488, 8490, 8489, 8487 ] }, + { "id": "unconnected", "fg": [ 8495, 8495 ] } ] }, - { "id": "mon_leech_pod_cluster", "fg": 8448 }, - { "id": "mon_leech_root_drone", "fg": 8449 }, - { "id": "mon_leech_root_runner", "fg": 8450 }, - { "id": "mon_leech_stalk", "fg": 8451 } + { "id": "mon_leech_pod_cluster", "fg": 8496 }, + { "id": "mon_leech_root_drone", "fg": 8497 }, + { "id": "mon_leech_root_runner", "fg": 8498 }, + { "id": "mon_leech_stalk", "fg": 8499 } ] }, { "file": "filler_tall.png", - "//": "range 8464 to 8479", + "//": "range 8512 to 8527", "sprite_width": 32, "sprite_height": 64, "sprite_offset_x": 0, "sprite_offset_y": -32, - "tiles": [ { "id": "f_exodii_printer_large", "fg": 8464 }, { "id": "f_exodii_printer_small", "fg": 8465 } ] + "tiles": [ { "id": "f_exodii_printer_large", "fg": 8512 }, { "id": "f_exodii_printer_small", "fg": 8513 } ] }, { "file": "fillergiant.png", - "//": "range 8480 to 8495", + "//": "range 8528 to 8543", "sprite_width": 96, "sprite_height": 96, "sprite_offset_x": -32, @@ -14220,18 +14256,18 @@ "t_tree_pear_season_spring", "t_tree_plum_season_spring" ], - "fg": 7468, - "bg": 7461 + "fg": 7500, + "bg": 7493 }, - { "id": "t_tree_apricot_season_summer", "fg": 8480, "bg": 7462 }, - { "id": "t_tree_mulberry_season_summer", "fg": 8481, "bg": 7462 }, - { "id": "t_tree_elderberry_season_summer", "fg": 8481, "bg": 7462 }, - { "id": "t_tree_pear_season_autumn", "fg": 8482, "bg": 7462 }, - { "id": "t_tree_plum_season_summer", "fg": 8483, "bg": 7462 }, + { "id": "t_tree_apricot_season_summer", "fg": 8528, "bg": 7494 }, + { "id": "t_tree_mulberry_season_summer", "fg": 8529, "bg": 7494 }, + { "id": "t_tree_elderberry_season_summer", "fg": 8529, "bg": 7494 }, + { "id": "t_tree_pear_season_autumn", "fg": 8530, "bg": 7494 }, + { "id": "t_tree_plum_season_summer", "fg": 8531, "bg": 7494 }, { "id": [ "t_tree_apricot_harvested", "t_tree_mulberry_harvested", "t_tree_plum_harvested", "t_tree_pear_season_summer" ], - "fg": 7463, - "bg": 7462 + "fg": 7495, + "bg": 7494 }, { "id": [ @@ -14241,12 +14277,12 @@ "t_tree_pear_harvested" ], "fg": [ - { "weight": 100, "sprite": 7464 }, - { "weight": 100, "sprite": 7465 }, - { "weight": 100, "sprite": 7466 }, - { "weight": 100, "sprite": 7467 } + { "weight": 100, "sprite": 7496 }, + { "weight": 100, "sprite": 7497 }, + { "weight": 100, "sprite": 7498 }, + { "weight": 100, "sprite": 7499 } ], - "bg": 7460 + "bg": 7492 }, { "id": [ @@ -14255,29 +14291,29 @@ "t_tree_pear_season_winter", "t_tree_plum_season_winter" ], - "fg": 7492, - "bg": 7459 - }, - { "id": "t_tree_chestnut", "fg": 8485, "bg": 7461 }, - { "id": "t_tree_chestnut_season_summer", "fg": 8484, "bg": 7462 }, - { "id": "t_tree_chestnut_season_autumn", "fg": 8484, "bg": 7460 }, - { "id": "t_tree_chestnut_season_winter", "fg": 8484, "bg": 7459 }, - { "id": "t_tree_pine", "fg": 8489, "bg": 7461 }, - { "id": "t_tree_pine_season_summer", "fg": 8489, "bg": 7462 }, - { "id": "t_tree_pine_season_autumn", "fg": 8489, "bg": 7460 }, - { "id": "t_tree_pine_season_winter", "fg": 8489, "bg": 7459 }, - { "id": "t_tree_deadpine", "fg": 8486, "bg": 7461 }, - { "id": "t_tree_deadpine_season_summer", "fg": 8486, "bg": 7462 }, - { "id": "t_tree_deadpine_season_autumn", "fg": 8486, "bg": 7460 }, - { "id": "t_tree_deadpine_season_winter", "fg": 8486, "bg": 7459 }, - { "id": "t_tree_hickory", "fg": 8488, "bg": 7461 }, - { "id": "t_tree_hickory_season_summer", "fg": 8488, "bg": 7462 }, - { "id": "t_tree_hickory_season_autumn", "fg": 8488, "bg": 7460 }, - { "id": "t_tree_hickory_season_winter", "fg": 8487, "bg": 7459 }, - { "id": "t_tree_hickory_dead", "fg": 8487, "bg": 7461 }, - { "id": "t_tree_hickory_dead_season_summer", "fg": 8487, "bg": 7462 }, - { "id": "t_tree_hickory_dead_season_autumn", "fg": 8487, "bg": 7460 }, - { "id": "t_tree_hickory_dead_season_winter", "fg": 8487, "bg": 7459 } + "fg": 7524, + "bg": 7491 + }, + { "id": "t_tree_chestnut", "fg": 8533, "bg": 7493 }, + { "id": "t_tree_chestnut_season_summer", "fg": 8532, "bg": 7494 }, + { "id": "t_tree_chestnut_season_autumn", "fg": 8532, "bg": 7492 }, + { "id": "t_tree_chestnut_season_winter", "fg": 8532, "bg": 7491 }, + { "id": "t_tree_pine", "fg": 8537, "bg": 7493 }, + { "id": "t_tree_pine_season_summer", "fg": 8537, "bg": 7494 }, + { "id": "t_tree_pine_season_autumn", "fg": 8537, "bg": 7492 }, + { "id": "t_tree_pine_season_winter", "fg": 8537, "bg": 7491 }, + { "id": "t_tree_deadpine", "fg": 8534, "bg": 7493 }, + { "id": "t_tree_deadpine_season_summer", "fg": 8534, "bg": 7494 }, + { "id": "t_tree_deadpine_season_autumn", "fg": 8534, "bg": 7492 }, + { "id": "t_tree_deadpine_season_winter", "fg": 8534, "bg": 7491 }, + { "id": "t_tree_hickory", "fg": 8536, "bg": 7493 }, + { "id": "t_tree_hickory_season_summer", "fg": 8536, "bg": 7494 }, + { "id": "t_tree_hickory_season_autumn", "fg": 8536, "bg": 7492 }, + { "id": "t_tree_hickory_season_winter", "fg": 8535, "bg": 7491 }, + { "id": "t_tree_hickory_dead", "fg": 8535, "bg": 7493 }, + { "id": "t_tree_hickory_dead_season_summer", "fg": 8535, "bg": 7494 }, + { "id": "t_tree_hickory_dead_season_autumn", "fg": 8535, "bg": 7492 }, + { "id": "t_tree_hickory_dead_season_winter", "fg": 8535, "bg": 7491 } ] }, { diff --git a/lang/Makefile b/lang/Makefile new file mode 100644 index 0000000000000..0a1c3de5fac51 --- /dev/null +++ b/lang/Makefile @@ -0,0 +1,36 @@ +PO_DIR := ./po + +ifndef LOCALE_DIR + MO_DIR := ./mo +else + MO_DIR := $(LOCALE_DIR) +endif + +ifndef LANGUAGES + PO := $(patsubst $(PO_DIR)/%,%,$(patsubst %.po,%,$(wildcard $(PO_DIR)/*.po))) +else + ifeq ($(LANGUAGES), all) + PO := $(patsubst $(PO_DIR)/%,%,$(patsubst %.po,%,$(wildcard $(PO_DIR)/*.po))) + else + PO := $(LANGUAGES) + endif +endif + +MO := $(patsubst %,$(MO_DIR)/%/LC_MESSAGES/cataclysm-dda.mo,$(PO)) + +all: $(MO) + +$(MO_DIR)/%/LC_MESSAGES/cataclysm-dda.mo: $(PO_DIR)/%.po + mkdir -p $$(dirname $@) + msgfmt -f -o $@ $< + +list_po: + @echo $(PO) + +list_mo: + @echo $(MO) + +clean: + rm -rf $(MO_DIR) + +.PHONY: all list_po list_mo clean diff --git a/lang/po/ar.po b/lang/po/ar.po index a6cb039ddfdbf..d1d7ff2f1ed25 100644 --- a/lang/po/ar.po +++ b/lang/po/ar.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Anas Bakhsh , 2021\n" "Language-Team: Arabic (https://www.transifex.com/cataclysm-dda-translators/teams/2217/ar/)\n" @@ -28,7 +28,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -45,7 +45,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "" @@ -60,7 +60,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -77,7 +77,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -94,7 +94,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "" @@ -109,7 +109,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "" @@ -141,7 +141,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "" @@ -156,7 +156,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -188,7 +188,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -233,7 +233,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "" @@ -263,7 +263,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -343,8 +343,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -432,7 +432,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -494,7 +494,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -527,7 +527,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -545,7 +545,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -560,7 +560,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -575,7 +575,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -591,7 +591,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -606,7 +606,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -621,7 +621,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -638,7 +638,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "" @@ -653,7 +653,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "" @@ -775,7 +775,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -792,7 +792,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "" @@ -808,7 +808,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "إذا كنت ترى هذا فإنه خلل." @@ -823,7 +823,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -841,7 +841,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -875,7 +875,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -991,7 +991,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -1008,7 +1008,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "" @@ -1077,7 +1077,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -1094,7 +1094,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -1126,7 +1126,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -1141,7 +1141,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "" @@ -1156,7 +1156,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -1201,7 +1201,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -1216,7 +1216,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -1232,7 +1232,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1250,7 +1250,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1267,7 +1267,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1284,7 +1284,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1301,7 +1301,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1336,7 +1336,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1370,7 +1370,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1388,7 +1388,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1403,7 +1403,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1421,7 +1421,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1441,7 +1441,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1458,7 +1458,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1475,7 +1475,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1494,7 +1494,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1513,7 +1513,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1530,7 +1530,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1548,7 +1548,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1567,7 +1567,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1585,7 +1585,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1603,7 +1603,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1623,7 +1623,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1643,7 +1643,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1663,7 +1663,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1682,7 +1682,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1701,7 +1701,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1720,7 +1720,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1738,7 +1738,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1755,7 +1755,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1776,7 +1776,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1795,7 +1795,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1814,7 +1814,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1833,7 +1833,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1852,7 +1852,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1871,7 +1871,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1889,7 +1889,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1907,7 +1907,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1925,7 +1925,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1943,7 +1943,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1961,7 +1961,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1978,7 +1978,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "" @@ -1993,7 +1993,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -2074,7 +2074,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -2093,7 +2093,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -2112,7 +2112,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -2130,7 +2130,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -2147,7 +2147,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -2164,7 +2164,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -2200,7 +2200,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -2218,7 +2218,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -2234,7 +2234,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -2251,7 +2251,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -2266,7 +2266,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -2284,7 +2284,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -2301,7 +2301,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "" @@ -2316,7 +2316,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "" @@ -2331,7 +2331,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2349,7 +2349,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2367,7 +2367,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2418,7 +2418,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "" @@ -2494,7 +2494,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2532,7 +2532,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2584,7 +2584,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2618,7 +2618,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2672,7 +2672,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2690,7 +2690,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2708,7 +2708,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2744,7 +2744,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2762,7 +2762,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2780,7 +2780,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2798,7 +2798,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2856,7 +2856,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2877,7 +2877,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2897,7 +2897,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2918,7 +2918,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2940,7 +2940,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2962,7 +2962,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -3039,7 +3039,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -3107,7 +3107,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -3125,7 +3125,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -3143,7 +3143,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -3161,7 +3161,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -3307,7 +3307,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -3325,7 +3325,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -3343,7 +3343,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -3420,7 +3420,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -3457,7 +3457,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -3475,7 +3475,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -3533,7 +3533,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -3550,7 +3550,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3625,7 +3625,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3659,7 +3659,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3726,7 +3726,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3745,7 +3745,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3764,7 +3764,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3833,7 +3833,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3861,7 +3861,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3879,7 +3879,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3947,7 +3947,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3965,7 +3965,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3983,7 +3983,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -4001,7 +4001,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -4019,8 +4019,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -4038,8 +4038,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -4094,8 +4094,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -4113,8 +4113,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -4200,7 +4200,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -4217,7 +4217,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -4259,7 +4259,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -4277,8 +4277,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -4309,8 +4309,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -4357,7 +4357,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -4382,7 +4382,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -4474,7 +4474,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -4491,7 +4491,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -4509,7 +4509,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -4577,7 +4577,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -4617,7 +4617,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4653,7 +4653,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4671,7 +4671,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4708,7 +4708,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4727,7 +4727,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4746,7 +4746,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -4785,7 +4785,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -4803,8 +4803,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -4833,7 +4833,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -4850,7 +4850,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4890,7 +4890,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4917,7 +4917,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4935,7 +4935,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4955,7 +4955,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4972,7 +4972,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4989,7 +4989,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -5012,7 +5012,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -5030,7 +5030,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -5050,7 +5050,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -5135,7 +5135,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -5154,7 +5154,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -5171,7 +5171,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -5189,7 +5189,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -5226,7 +5226,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -5247,8 +5247,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -5351,7 +5351,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -5368,7 +5368,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -5407,7 +5407,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -5426,7 +5426,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -5445,7 +5445,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -5494,7 +5494,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -5534,7 +5534,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -5569,7 +5569,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -5660,7 +5660,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -5677,7 +5677,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -5694,7 +5694,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -5712,7 +5712,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -5730,7 +5730,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -5749,7 +5749,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -5768,7 +5768,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -5786,7 +5786,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -5805,7 +5805,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -5822,7 +5822,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -5839,7 +5839,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -5916,7 +5916,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -5934,7 +5934,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -5952,7 +5952,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -5989,7 +5989,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -6007,7 +6007,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -6025,7 +6025,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -6043,7 +6043,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -6077,7 +6077,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -6094,7 +6094,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -6111,7 +6111,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -6128,7 +6128,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -6271,7 +6271,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -6447,7 +6447,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -6465,7 +6465,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -6480,7 +6480,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -6551,8 +6551,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -6743,7 +6743,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -6760,7 +6760,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "" @@ -7841,7 +7841,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "" @@ -7856,7 +7856,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "" @@ -7871,7 +7871,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "" @@ -7886,7 +7886,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "" @@ -7901,7 +7901,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "" @@ -7916,7 +7916,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "" @@ -8008,7 +8008,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -8023,8 +8023,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -8051,7 +8051,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -8070,7 +8070,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -8087,7 +8087,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -8104,7 +8104,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -8185,7 +8185,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -8202,7 +8202,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -8250,7 +8250,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -8319,7 +8319,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -8337,7 +8337,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -8354,7 +8354,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -8372,7 +8372,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -8389,7 +8389,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -8408,7 +8408,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -8425,7 +8425,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -8442,7 +8442,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -8459,7 +8459,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -8476,7 +8476,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -8510,7 +8510,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -8543,7 +8543,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -8576,7 +8576,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -8628,7 +8628,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -8663,7 +8663,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -8699,7 +8699,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -8732,7 +8732,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -8854,7 +8854,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -8890,7 +8890,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -8909,7 +8909,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -8928,7 +8928,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -8948,7 +8948,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -8967,7 +8967,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -8988,7 +8988,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -9005,7 +9005,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -9025,7 +9025,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -9042,7 +9042,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -9060,7 +9060,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -9078,7 +9078,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -9095,7 +9095,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -9284,7 +9284,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -9303,7 +9303,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -9362,7 +9362,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -9382,7 +9382,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -9442,7 +9442,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -9462,7 +9462,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -9522,7 +9522,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -9542,7 +9542,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -9602,7 +9602,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -9618,7 +9618,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -9635,7 +9635,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -9655,7 +9655,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -9694,7 +9694,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -9711,7 +9711,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -9729,7 +9729,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -9767,7 +9767,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -9784,7 +9784,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -9802,7 +9802,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -9880,7 +9880,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -9959,7 +9959,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -10028,7 +10028,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -10068,7 +10068,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -10083,7 +10083,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -10133,7 +10133,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -10154,7 +10154,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -10779,7 +10779,7 @@ msgstr[5] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -10795,7 +10795,7 @@ msgstr "" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -10839,7 +10839,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -11974,8 +11974,8 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" +msgid "tool belt" +msgid_plural "tool belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -11983,37 +11983,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -12217,33 +12194,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -12269,57 +12219,6 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -12335,34 +12234,6 @@ msgstr[5] "" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -12389,34 +12260,6 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -12515,24 +12358,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -12576,51 +12401,6 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -13819,33 +13599,6 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -13910,7 +13663,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -14139,7 +13892,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -14348,23 +14101,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -14433,23 +14169,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -14475,7 +14194,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -14543,23 +14262,6 @@ msgstr[5] "" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -14880,23 +14582,6 @@ msgstr[5] "" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -15392,33 +15077,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -15444,66 +15102,6 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -15595,87 +15193,6 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -15732,23 +15249,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -15910,49 +15410,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -16933,7 +16390,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -17075,40 +16532,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -17178,40 +16601,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -17471,44 +16860,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -17574,101 +16925,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -17684,72 +16940,6 @@ msgstr[5] "" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -18286,9 +17476,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -18303,9 +17493,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -18320,9 +17510,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -18337,9 +17527,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -18354,9 +17544,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -18371,9 +17561,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -18388,9 +17578,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -18405,9 +17595,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -18422,9 +17612,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -18439,9 +17629,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -18456,9 +17646,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -18473,9 +17663,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -18490,9 +17680,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -18507,9 +17697,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -23275,7 +22465,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -23327,7 +22517,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -23344,7 +22534,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -23363,7 +22553,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -23592,40 +22782,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -23641,40 +22797,6 @@ msgstr[5] "" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" @@ -23685,7 +22807,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -23702,7 +22824,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -23737,7 +22859,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "" @@ -23752,7 +22874,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -23784,7 +22906,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "" @@ -23799,7 +22921,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "" @@ -23814,7 +22936,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "" @@ -23829,7 +22951,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "" @@ -23866,7 +22988,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -23907,7 +23029,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -24007,7 +23129,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "" @@ -24022,15 +23144,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -24067,7 +23189,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -24082,7 +23204,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -24097,7 +23219,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "" @@ -24112,7 +23234,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -24127,7 +23249,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -24144,7 +23266,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "" @@ -24159,7 +23281,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -24176,7 +23298,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -24191,7 +23313,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "" @@ -24206,7 +23328,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -24221,7 +23343,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -24298,7 +23420,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -24337,7 +23459,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -25797,74 +24919,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -26447,41 +25501,6 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -26547,8 +25566,8 @@ msgstr[5] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -26566,23 +25585,6 @@ msgstr[5] "" msgid "An ornamental suit of Japanese samurai armor." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -26761,36 +25763,8 @@ msgstr[4] "" msgstr[5] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -26798,17 +25772,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for winter survivor suit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -26816,17 +25789,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -26834,16 +25807,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -26870,52 +25836,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -26999,23 +25919,6 @@ msgid "" "experience." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -27029,8 +25932,8 @@ msgstr[5] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" #: lang/json/ARMOR_from_json.py @@ -27050,50 +25953,6 @@ msgid "" "Light and very comfortable." msgstr "" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -27189,57 +26048,6 @@ msgstr[5] "" msgid "A neoprene hood, commonly worn by divers." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -27387,7 +26195,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -27620,7 +26428,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -27696,33 +26504,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -28062,7 +26843,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -28160,7 +26941,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -28544,7 +27325,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -28559,7 +27340,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -28574,7 +27355,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -28590,7 +27371,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -28607,7 +27388,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -28623,7 +27404,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -28656,7 +27437,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "" @@ -28865,7 +27646,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -28949,7 +27730,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -28982,7 +27763,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -29025,8 +27806,8 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sheet" -msgid_plural "sheets" +msgid "nomad gear" +msgid_plural "nomad gears" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29034,16 +27815,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for sheet +#. ~ Description for nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" -" a bunch of rags." +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "blanket" -msgid_plural "blankets" +msgid "light nomad gear" +msgid_plural "light nomad gears" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29051,14 +27832,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for blanket +#. ~ Description for light nomad gear #: lang/json/ARMOR_from_json.py -msgid "Hiding under here will not protect you from the monsters." +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "down-filled blanket" -msgid_plural "down-filled blankets" +msgid "scavenger gear" +msgid_plural "scavenger gears" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29066,16 +27850,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for down-filled blanket +#. ~ Description for scavenger gear #: lang/json/ARMOR_from_json.py msgid "" -"Hiding under here will not protect you from the monsters, but it'll keep you" -" warm." +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "fur blanket" -msgid_plural "fur blankets" +msgid "light survivor suit" +msgid_plural "light survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29083,14 +27867,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for fur blanket +#. ~ Description for light survivor suit #: lang/json/ARMOR_from_json.py -msgid "A heavy fur blanket that covers most of your body." +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "quilt" -msgid_plural "quilts" +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29098,16 +27885,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for quilt -#: lang/json/ARMOR_from_json.py -msgid "" -"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " -"cozy!" -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "patchwork quilt" -msgid_plural "patchwork quilts" +msgid "survivor suit" +msgid_plural "survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29115,14 +27895,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for patchwork quilt +#. ~ Description for survivor suit #: lang/json/ARMOR_from_json.py -msgid "A huge, patchwork wool quilt. Very, very warm." +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sleeping bag" -msgid_plural "sleeping bags" +msgid "XL survivor suit" +msgid_plural "XL survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29130,21 +27912,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for sleeping bag. -#: lang/json/ARMOR_from_json.py -msgid "You roll up the sleeping bag, preparing it for transport." -msgstr "" - -#. ~ Description for sleeping bag +#. ~ Description for XL survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A large sleeping bag that covers you head to toe. This one is medium " -"weight." +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cestus" -msgid_plural "cestuses" +msgid "winter survivor suit" +msgid_plural "winter survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29152,16 +27930,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for cestus +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A leather hand and arm wrap incorporating metal plates over the knuckles to " -"improve punching power and defence." +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of studded gloves" -msgid_plural "pairs of studded gloves" +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29169,14 +27948,25 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of studded gloves +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "A pair of gloves with studded metal knuckles." +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." msgstr "" +#. ~ Description for XL winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "impact knuckles" -msgid_plural "impact knuckles" +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29184,16 +27974,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for survivor wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of thick steel plates covering your proximal phalange. They are " -"strapped to your hands with metal braces." +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "skewer knuckles" -msgid_plural "skewer knuckles" +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29201,16 +27992,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for pair of light survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A single sturdy spike protrudes 5cm from the back of your hand. They are " -"strapped to your hands with metal braces." +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "telescoping umbrella" -msgid_plural "telescoping umbrellas" +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29218,16 +28010,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for telescoping umbrella -#: lang/json/ARMOR_from_json.py -msgid "" -"A telescoping umbrella which collapses down for easy storage, useful for " -"keeping dry when wielded." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "bag of holding" -msgid_plural "bags of holding" +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29235,19 +28020,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for bag of holding +#. ~ Description for pair of survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A sleek, unfathomably-complicated machine covered in dozens of blinking " -"lights, worn on the back by sturdy faux-leather straps. An electrode " -"dangles from the back, attaching to your forehead. How it operates without " -"annihilating spacetime isn't quite clear, but a localized portal allows " -"things to be stored in an extradimensional space." +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium vest" -msgid_plural "titanium vests" +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29255,17 +28038,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for titanium vest +#. ~ Description for pair of XL survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight armor vest made of pieces of titanium sewn together, with " -"cloth padding for comfort. Brittle against blunt force, but highly " -"resistant to cuts and corrosion." +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sentinel-lx cloak" -msgid_plural "sentinel-lx cloaks" +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29273,17 +28056,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for sentinel-lx cloak +#. ~ Description for pair of faux fur winter survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " -"unnatural shadow. Made from woven graphene, its lightweight and resistant, " -"but cannot be repaired" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL jeans" -msgid_plural "pairs of XL jeans" +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29291,14 +28073,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL jeans +#. ~ Description for pair of XL faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue jeans with two deep pockets." +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work pants" -msgid_plural "pairs of XL work pants" +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29306,21 +28090,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#. ~ Description for pair of winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue work pants." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "A pair of XL gray work pants." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "A pair of XL light-blue work pants." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work t-shirt" -msgid_plural "XL work t-shirts" +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29328,26 +28107,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL work t-shirt -#: lang/json/ARMOR_from_json.py -msgid "A gray XL work t-shirt with a small front pocket." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "An XL blue work t-shirt with a small front pocket." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "An XL gray work t-shirt with a small front pocket." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "An XL light-blue work t-shirt with a small front pocket." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "Uplifted SWAT armor" -msgid_plural "Uplifted SWAT armors" +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29355,17 +28117,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Uplifted SWAT armor +#. ~ Description for pair of survivor wetsuit boots #: lang/json/ARMOR_from_json.py msgid "" -"An extra large suit of black bulletproof armor with lots of pockets. The " -"word SWAT is emblazoned across the back. Specifically designed for Uplifted" -" officers such as Mastodons." +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "empty XL ballistic vest" -msgid_plural "empty XL ballistic vests" +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29373,16 +28134,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for empty XL ballistic vest +#. ~ Description for pair of light survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"Oversized ballistic armor without any armor inserts. The soft armor plate " -"carrier is still protective but it won't stop high energy projectiles." +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL ESAPI ballistic vest" -msgid_plural "XL ESAPI ballistic vests" +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29390,14 +28151,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL ESAPI ballistic vest -#: lang/json/ARMOR_from_json.py -msgid "Oversized ballistic armor with ESAPI ceramic armor plates." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of XL combat boots" -msgid_plural "pair of XL combat boots" +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29405,14 +28161,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of fingerless light survivor gloves #: lang/json/ARMOR_from_json.py -msgid "Modern oversized reinforced tactical combat boots. Very durable." +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL tactical gloves" -msgid_plural "pair of XL tactical gloves" +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29420,16 +28178,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " -"police and military units." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of Killophant gloves" -msgid_plural "pair of Killophant gloves" +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29437,17 +28188,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of fingerless survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of reinforced Kevlar tactical gloves, specifically designed to " -"accommodate three-fingered Killophants. Thinner than regular oversized " -"tactical gloves." +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leather belt" -msgid_plural "XL leather belts" +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29455,16 +28205,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL leather belt -#: lang/json/ARMOR_from_json.py -msgid "" -"An XL leather belt. Useful for making your pair of pants fit if you need " -"really big pants." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL police duty belt" -msgid_plural "XL police duty belts" +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29472,16 +28215,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL police duty belt +#. ~ Description for pair of survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL black leather belt used by extremely large uplifted police officers. " -"It has several pouches and a holder for a baton." +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL tactical full helmet" -msgid_plural "XL tactical full helmets" +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29489,16 +28232,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL tactical full helmet +#. ~ Description for pair of XL survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing massive black helmet that covers your entire face and " -"neck, providing excellent protection from all sorts of damage." +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leg ammo pouch" -msgid_plural "XL leg ammo pouches" +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29506,16 +28249,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL leg ammo pouch +#. ~ Description for pair of winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" -" two magazines close at hand." +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "crew jumpsuit" -msgid_plural "crew jumpsuits" +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29523,17 +28265,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for crew jumpsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " -"some freight hauling association or another. This one is a standard design " -"favored by spacers, with ample, easy access pockets." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "communications cap" -msgid_plural "communications caps" +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29541,18 +28275,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for communications cap +#. ~ Description for pair of faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A padded cotton cap built around an augmented reality headset. During " -"normal operation it would provide visual information about a ship subsystems" -" and a communications link with the rest of the crew, but severed from a " -"spaceship, only their hearing protection function retains any utility." +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "HERC rig" -msgid_plural "HERC rigs" +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29560,18 +28291,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for HERC rig +#. ~ Description for pair of XL faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " -"about in zero-g, Mars, the bottom of the Pacific, or other generally " -"inhospitable environments. It has several deep pockets, and two mounting " -"points for pressurized canisters or other large magazines." +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cecalia wetsuit" -msgid_plural "cecalia wetsuits" +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29579,16 +28308,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for cecalia wetsuit +#. ~ Description for pair of survivor wetsuit gloves #: lang/json/ARMOR_from_json.py msgid "" -"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " -"explorer suit with no head or tentacle protection." +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "combat wetsuit" -msgid_plural "combat wetsuits" +msgid "nomad cowl" +msgid_plural "nomad cowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29596,16 +28325,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for combat wetsuit +#. ~ Description for nomad cowl #: lang/json/ARMOR_from_json.py msgid "" -"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " -"will provide some level of protection for deep dwellers." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "nanomesh vest" -msgid_plural "nanomesh vests" +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29613,17 +28342,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for nanomesh vest +#. ~ Description for nomad cowl XL #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight nanomesh vest designed to face down many of the perils of " -"space travel. These vests are mass produced and often stacked in starship " -"lockers." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "vacuum cast cuirass" -msgid_plural "vacuum cast cuirasses" +msgid "survivor hood" +msgid_plural "survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29631,17 +28359,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for vacuum cast cuirass +#. ~ Description for survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"This piece of armor harkens back to renaissance designs. It differs in that" -" it is cast as a single piece in deep space installations where conditions " -"can be controlled absolutely." +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "carbide raider's helmet" -msgid_plural "carbide raider's helmets" +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29649,18 +28376,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for carbide raider's helmet +#. ~ Description for winter survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"This helmet is designed for the individual that is worried about catching " -"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " -"environmental protection features, but it just might stop even the largest " -"of ballistic rounds." +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "UICAS Point of Impact helmet" -msgid_plural "UICAS Point of Impact helmets" +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29668,18 +28391,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for UICAS Point of Impact helmet +#. ~ Description for XL winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight black helmet that provides excellent protection from all sorts" -" of damage, unless it's airborne. UICAS makes the point of designing all " -"headgear whenever possible with clear faceplates, in order to provide a " -"human touch to all interactions." +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cold resistance cream" -msgid_plural "cold resistance creams" +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29687,16 +28408,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for cold resistance cream +#. ~ Description for XL survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick layer of something that smells worse than walrus fat. But it keeps " -"you warm." +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "heat retention xtreme cream" -msgid_plural "heat retention xtreme creams" +msgid "light survivor hood" +msgid_plural "light survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29704,16 +28425,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for heat retention xtreme cream +#. ~ Description for light survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"The last word in cold snap protection designed to give short term protection" -" in the event of a suit breach in vacuum." +msgid "A customized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium watch" -msgid_plural "titanium watches" +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29721,16 +28440,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for titanium watch +#. ~ Description for XL light survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine watch made out of titanium. It is durable, light-weight " -"and water-resistant, an excellent watch to have in a hostile environment." +"A customized and oversized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium ring" -msgid_plural "titanium rings" +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29738,16 +28456,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for titanium ring +#. ~ Description for winter faux fur survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"A thick, masculine ring made out of titanium. Made in a variety of styles " -"and finishes, they're valued for their durability." +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "hazardous environment suit" -msgid_plural "hazardous environment suits" +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29755,19 +28471,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for hazardous environment suit +#. ~ Description for XL faux fur winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"Developed for the exploration of alien planes, the lightweight, orange-black" -" HEV suit covers everything below the neck. While it possesses only modest " -"physical protection, it provides excellent protection from most " -"environmental hazards. A hatch in the front opens to provide a small amount" -" of storage." +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "psychrophile handling gloves" -msgid_plural "psychrophile handling gloves" +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29775,16 +28488,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for survivor wetsuit hood #: lang/json/ARMOR_from_json.py msgid "" -"These gloves are designed for handling organisms that live in extremely cold" -" temperatures. They can also be used to freeze your foes to death." +"A customized armored neoprene and Kevlar hood, very strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Engineering Suit" -msgid_plural "CRIT Engineering Suits" +msgid "scavenger cowl" +msgid_plural "scavenger cowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29792,18 +28504,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT Engineering Suit +#. ~ Description for scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"An airtight, flexible suit of woven composite fibers complete with segmented" -" plates of armor. A complex system digitizes items in an individual pocket " -"universe for storage while built in joint-torsion ratchets generate the " -"necessary energy required to power the interface." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT face mask" -msgid_plural "CRIT face masks" +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29811,17 +28521,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT face mask +#. ~ Description for XL scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"A standard issue face mask, lined with Kevlar for extra protection. A few " -"filters provide decent environmental safety, but it was not intended for " -"extended use. It has a basic integrated HUD." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT boots" -msgid_plural "pairs of CRIT boots" +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29829,18 +28538,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of CRIT boots +#. ~ Description for light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " -"hygienic during long-term missions while absorbing shock and heat from " -"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " -"protection as well. Decently heavy though" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT LA boots" -msgid_plural "pairs of CRIT LA boots" +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29848,18 +28555,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of CRIT LA boots +#. ~ Description for XL light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " -"variant was created for missions in warmer climates. The LA boots keep most" -" of the old features of the standard issue boots but trade in protection for" -" easier movement." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less gloves" -msgid_plural "pairs of CRIT fingertip-less gloves" +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29867,17 +28572,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of CRIT fingertip-less gloves +#. ~ Description for survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue gloves. Made with superalloy mesh for those with " -"gene-modding and/or mutations while still allowing greater manipulation of " -"items and moderate protection." +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less liners" -msgid_plural "pairs of CRIT fingertip-less liners" +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29885,17 +28589,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of CRIT fingertip-less liners +#. ~ Description for XL survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " -"for warmth and fingertip-less for those with gene-modding and/or mutations " -"while still allowing greater manipulation of items and moderate protection." +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT backpack" -msgid_plural "CRIT backpacks" +msgid "survivor duster" +msgid_plural "survivor dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29903,18 +28606,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT backpack +#. ~ Description for survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " -"pack strikes a fine balance between storage space and encumbrance and allows" -" a larger weapon to be holstered, drawing and holstering is still rather " -"awkward even with the magnetized clips, but practice helps." +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT chestrig" -msgid_plural "CRIT chestrigs" +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29922,16 +28623,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT chestrig -#: lang/json/ARMOR_from_json.py -msgid "" -"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " -"with light-armor padding." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT leg guards" -msgid_plural "pairs of CRIT leg guards" +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29939,17 +28633,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of CRIT leg guards +#. ~ Description for sleeveless survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"Leg armor for those who fight. Simple design and durable material allows " -"for easy movement and the padding keeps the legs safe and warm in colder " -"conditions." +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT arm guards" -msgid_plural "pairs of CRIT arm guards" +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29957,17 +28650,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of CRIT arm guards +#. ~ Description for survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A pair of arm guards made from superalloy molded upon neoprene, and then " -"insulated with rubber. They are sturdy and will block attacks, but they are" -" ridiculously heavy." +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29975,16 +28667,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT web belt +#. ~ Description for sleeveless survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT infantry duster" -msgid_plural "CRIT infantry dusters" +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -29992,17 +28684,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT infantry duster +#. ~ Description for survivor duffel bag #: lang/json/ARMOR_from_json.py msgid "" -"A thick full-length duster coat with rubber insulation. More than mildly " -"encumbering, but rather protective against any anti-infantry electrical " -"discharges from the robots. Has several pockets for storage." +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Armored Anomaly Suit" -msgid_plural "CRIT Armored Anomaly Suits" +msgid "survivor backpack" +msgid_plural "survivor backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30010,18 +28701,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT Armored Anomaly Suit +#. ~ Description for survivor backpack #: lang/json/ARMOR_from_json.py msgid "" -"A relatively simple suit of armor. A suit of woven composite fibers " -"combined with a cleansuit core and strategically placed segmented Kevlar " -"plates keep the suit light-weight and the one wearing it alive while " -"offering superb resistance to the elements and ambient radiation." +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT drop leg pouch" -msgid_plural "CRIT drop leg pouches" +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30029,16 +28718,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT drop leg pouch +#. ~ Description for survivor rucksack #: lang/json/ARMOR_from_json.py msgid "" -"A set of pouches that can be worn on the thighs using buckled straps. This " -"variety is more compact and is favored by the C.R.I.T for its ease of use." +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Enforcer armor assembly" -msgid_plural "CRIT Enforcer armor assemblies" +msgid "survivor runner pack" +msgid_plural "survivor runner packs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30046,21 +28735,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT Enforcer armor assembly +#. ~ Description for survivor runner pack #: lang/json/ARMOR_from_json.py msgid "" -"A series of plates, guards and buckles which assemble into a suit of sturdy " -"body-armor which usually goes over other armor. Overlapping steel plates on" -" top of Kevlar plates cover vast expanses as the armor juts off in places so" -" it can deflect attacks. Built with the idea that comfort is less important" -" than safety, this heavy suit is difficult to move about in but highly " -"protective. Various adjustable connectors such as straps and clips hold it " -"together." +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT Enforcer docks" -msgid_plural "pairs of CRIT Enforcer docks" +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30068,19 +28752,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of CRIT Enforcer docks +#. ~ Description for pair of survivor fireboots #: lang/json/ARMOR_from_json.py msgid "" -"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " -"oversized feet which clamp down onto your own footwear keep your feet out of" -" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " -"designs, but they do seem to be worth using if you were to be in the middle " -"of a war zone." +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Soldier Suit" -msgid_plural "CRIT Soldier Suits" +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30088,18 +28769,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT Soldier Suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A suit of modern body-armor. Strategically placed superalloy plates keep " -"the suit's weight minimal while Kevlar plates other areas and a lining of " -"soft neoprene pads areas for extra comfort. Most importantly, this can be " -"worn comfortably under other armor." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT Lone Wolf Series Armor" -msgid_plural "CRIT Lone Wolf Series Armors" +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30107,18 +28779,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT Lone Wolf Series Armor +#. ~ Description for pair of heavy survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A matte black suit of outdated and bulky looking plate armor fitted onto a " -"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " -"armor will definitely protect you from practically anything. Just make sure" -" you can actually walk with it on though." +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT blouse" -msgid_plural "CRIT blouses" +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30126,18 +28797,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT blouse -#: lang/json/ARMOR_from_json.py -msgid "" -"A standard-issue military jacket. Durable, lightweight, and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather " -"while a sleek design keeps it from being too flashy. A zipper at the back " -"and front allows for quick donning and doffing." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT trousers" -msgid_plural "CRIT trousers" +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30145,16 +28807,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for pair of heavy survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue cargo pants. Durable, lightweight and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather." +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT pants" -msgid_plural "CRIT pants" +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30162,17 +28824,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'CRIT pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of dress pants. A minimalist sleek design makes the pants " -"lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" -" moderately cold weather." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT helmet liner" -msgid_plural "CRIT helmet liners" +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30180,14 +28834,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT helmet liner +#. ~ Description for pair of survivor firegloves #: lang/json/ARMOR_from_json.py -msgid "A standard-issue helmet liner. Keeps the noggin warm." +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT shoes" -msgid_plural "pairs of CRIT dress shoes" +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30195,14 +28851,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of CRIT shoes -#: lang/json/ARMOR_from_json.py -msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT rec gloves" -msgid_plural "pairs of CRIT rec gloves" +msgid "survivor firehood" +msgid_plural "survivor firehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30210,22 +28861,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of CRIT rec gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " -"are made with cotton with a neoprene lining for grip-pads and warmth." -msgstr "" - -#. ~ Description for CRIT web belt +#. ~ Description for survivor firehood #: lang/json/ARMOR_from_json.py -msgid "" -"A standard-issue belt. Keeps your trousers up and your tools on your hip." +msgid "A customized armored Nomex and Kevlar hood, strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT rec duster" -msgid_plural "CRIT rec dusters" +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30233,17 +28876,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT rec duster +#. ~ Description for XL survivor firehood #: lang/json/ARMOR_from_json.py msgid "" -"A waterproofed full-length duster coat. Made with neoprene, comfort and " -"functionality meet together to form a fancy but sleek contemporary design. " -"It has several pockets for storage." +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT rec hat" -msgid_plural "CRIT rec hats" +msgid "survivor firesuit" +msgid_plural "survivor firesuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30251,17 +28893,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT rec hat +#. ~ Description for survivor firesuit #: lang/json/ARMOR_from_json.py msgid "" -"Functionality meets fashion in this waterproofed CRIT standard issue rec " -"cover. Thick enough to provide warmth in colder weather, this hat shares " -"the same sleek design of most of C.R.I.T's gear." +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "plant fiber tunic" -msgid_plural "plant fiber tunics" +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30269,16 +28911,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for plant fiber tunic -#: lang/json/ARMOR_from_json.py -msgid "" -"A loose garment cobbled together from a collection of plant bundles and " -"wound together by makeshift cordage" -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "plant fiber bracelet" -msgid_plural "plant fiber bracelets" +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30286,16 +28921,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for plant fiber bracelet +#. ~ Description for heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A bracelet wound together by makeshift cordage. Has some cool looking " -"pebbles." +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT canteen" -msgid_plural "CRIT canteens" +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30303,16 +28939,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRIT canteen +#. ~ Description for XL heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A durable steel canteen that can heat up food with built in atomic heating " -"elements." +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "salvaged new order armor" -msgid_plural "salvaged new order armors" +msgid "light survivor body armor" +msgid_plural "light survivor body armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30320,18 +28957,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for salvaged new order armor +#. ~ Description for light survivor body armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of armor belonging to a human-sized soldier of the New Order. Its " -"terribly damaged from some combination of the combat its seen, the process " -"needed to pry it off its wearer, and some sort of dead man's switch on the " -"elements that actually power the thing and make it easy to wear." +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "new order shield" -msgid_plural "new order shields" +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30339,17 +28974,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for new order shield -#: lang/json/ARMOR_from_json.py -msgid "" -"A simple shield made of some sort of polycarbonates, used extensively by the" -" Vigilants, the gendarmerie of the New Order. Alongside their infamous " -"shock batons, this is an essential tool in 'keeping the peace'." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "new order battle shield" -msgid_plural "new order battle shields" +msgid "survivor belt" +msgid_plural "survivor belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30357,32 +28984,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for new order battle shield -#: lang/json/ARMOR_from_json.py -msgid "" -"A well forged shield made of steel, emblazoned with what appears to be a " -"highly stylized depiction of a sword piercing a star." -msgstr "" - -#. ~ Description for large quiver +#. ~ Use action holster_prompt for survivor belt. #: lang/json/ARMOR_from_json.py -msgid "" -"A large leather quiver trimmed with metal, worn on the back, that can hold " -"60 arrows. Historically used by horse archers, rather than foot archers, " -"but sometimes horses are a little hard to come by in this day and age. " -"Activate to store arrows." +msgid "Store item" msgstr "" -#. ~ Description for bra +#. ~ Description for survivor belt #: lang/json/ARMOR_from_json.py msgid "" -"A simple bra. For protecting those bits you don't want creatures to look " -"at." +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Ixythyug the Destroyer's soul" -msgid_plural "Ixythyug the Destroyer's souls" +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30390,14 +29008,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Ixythyug the Destroyer's soul +#. ~ Description for survivor goggles #: lang/json/ARMOR_from_json.py -msgid "RIP AND TEAR" +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Force Shield" -msgid_plural "Force Shield" +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30405,15 +29025,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for survivor harness #: lang/json/ARMOR_from_json.py msgid "" -"A shield of pure force that protects you from most types of physical damage." +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Soul Burn" -msgid_plural "Soul Burns" +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30421,16 +29044,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Soul Burn +#. ~ Description for XL survivor harness #: lang/json/ARMOR_from_json.py msgid "" -"A little of your soul has been burned away, leaving you in a weakened state." -" The soul heals quickly, so rest for now." +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" +msgid "sheet" +msgid_plural "sheets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30438,17 +29063,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for copper infusion bracelet -#. ~ Description for silver infusion bracelet +#. ~ Description for sheet #: lang/json/ARMOR_from_json.py 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." +"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" +" a bunch of rags." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" +msgid "blanket" +msgid_plural "blankets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30456,9 +29080,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#. ~ Description for blanket #: lang/json/ARMOR_from_json.py -msgid "copper circlet" -msgid_plural "copper circlets" +msgid "Hiding under here will not protect you from the monsters." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "down-filled blanket" +msgid_plural "down-filled blankets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30466,16 +29095,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for copper circlet +#. ~ Description for down-filled blanket #: lang/json/ARMOR_from_json.py msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." +"Hiding under here will not protect you from the monsters, but it'll keep you" +" warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin arm guards" -msgid_plural "pairs of demon chitin arm guards" +msgid "fur blanket" +msgid_plural "fur blankets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30483,16 +29112,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of demon chitin arm guards +#. ~ Description for fur blanket #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of arm guards crafted from the carefully cleaned and pruned red " -"exoskeletons of demon spiders. Fire-resistant and very durable." +msgid "A heavy fur blanket that covers most of your body." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "demon chitin armor" -msgid_plural "demon chitin armors" +msgid "quilt" +msgid_plural "quilts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30500,16 +29127,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for demon chitin armor +#. ~ Description for quilt #: lang/json/ARMOR_from_json.py msgid "" -"Leg and body armor crafted from the carefully cleaned and pruned red " -"exoskeletons of demon spiders. Fire-resistant and very durable." +"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " +"cozy!" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "demon chitin helmet" -msgid_plural "demon chitin helmets" +msgid "patchwork quilt" +msgid_plural "patchwork quilts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30517,16 +29144,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for demon chitin helmet +#. ~ Description for patchwork quilt #: lang/json/ARMOR_from_json.py -msgid "" -"A helmet crafted from the carefully cleaned and pruned red exoskeletons of " -"demon spiders. Covers the entire head; fire-resistant and very durable." +msgid "A huge, patchwork wool quilt. Very, very warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin gauntlets" -msgid_plural "pairs of demon chitin gauntlets" +msgid "sleeping bag" +msgid_plural "sleeping bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30534,16 +29159,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of demon chitin gauntlets +#. ~ Use action msg for sleeping bag. +#: lang/json/ARMOR_from_json.py +msgid "You roll up the sleeping bag, preparing it for transport." +msgstr "" + +#. ~ Description for sleeping bag #: lang/json/ARMOR_from_json.py msgid "" -"Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " -"demon spiders. Fire-resistant and very durable." +"A large sleeping bag that covers you head to toe. This one is medium " +"weight." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin boots" -msgid_plural "pairs of demon chitin boots" +msgid "cestus" +msgid_plural "cestuses" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30551,16 +29181,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of demon chitin boots +#. ~ Description for cestus #: lang/json/ARMOR_from_json.py msgid "" -"Boots crafted from carefully cleaned and pruned red exoskeletons of demon " -"spiders. Fire-resistant and very durable." +"A leather hand and arm wrap incorporating metal plates over the knuckles to " +"improve punching power and defence." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonscale boots" -msgid_plural "pairs of black dragonscale boots" +msgid "pair of studded gloves" +msgid_plural "pairs of studded gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30568,16 +29198,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of black dragonscale boots +#. ~ Description for pair of studded gloves #: lang/json/ARMOR_from_json.py -msgid "" -"Boots made of black incredibly durable dragonscale. Very protective, and " -"surprisingly light." +msgid "A pair of gloves with studded metal knuckles." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonhide boots" -msgid_plural "pairs of black dragonhide boots" +msgid "impact knuckles" +msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30585,16 +29213,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of black dragonhide boots +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" -"Boots made of very durable black dragonhide. Very protective, and " -"surprisingly light." +"A pair of thick steel plates covering your proximal phalange. They are " +"strapped to your hands with metal braces." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale helmet" -msgid_plural "black dragonscale helmets" +msgid "skewer knuckles" +msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30602,25 +29230,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for black dragonscale helmet. -#. ~ Use action msg for XL black dragonscale helmet. -#. ~ Use action msg for riot helmet. -#. ~ Use action msg for motorcycle helmet. -#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py -msgid "You raise your visor." -msgstr "" - -#. ~ Description for black dragonscale helmet +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" -"A helmet made from black incredibly durable dragonscale, held together with " -"black dragonhide. It comes equipped with a full face visor with only a thin" -" slit to see out of. Activate to raise the visor." +"A single sturdy spike protrudes 5cm from the back of your hand. They are " +"strapped to your hands with metal braces." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale helmet (raised visor)" -msgid_plural "black dragonscale helmets (raised visor)" +msgid "telescoping umbrella" +msgid_plural "telescoping umbrellas" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30628,24 +29247,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for black dragonscale helmet (raised visor). -#. ~ Use action msg for XL black dragonscale helmet (raised visor). -#. ~ Use action msg for riot helmet (raised visor). -#. ~ Use action msg for motorcycle helmet (raised visor). -#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py -msgid "You put down your visor." -msgstr "" - -#. ~ Description for black dragonscale helmet (raised visor) +#. ~ Description for telescoping umbrella #: lang/json/ARMOR_from_json.py msgid "" -"A helmet made from incredibly durable black dragonscale, held together with " -"black dragonhide. The visor is raised." +"A telescoping umbrella which collapses down for easy storage, useful for " +"keeping dry when wielded." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonhide helmet" -msgid_plural "black dragonhide helmets" +msgid "bag of holding" +msgid_plural "bags of holding" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30653,16 +29264,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for black dragonhide helmet +#. ~ Description for bag of holding #: lang/json/ARMOR_from_json.py msgid "" -"A helmet made from very durable black dragonhide. It protects your head " -"well, but doesn't cover your face." +"A sleek, unfathomably-complicated machine covered in dozens of blinking " +"lights, worn on the back by sturdy faux-leather straps. An electrode " +"dangles from the back, attaching to your forehead. How it operates without " +"annihilating spacetime isn't quite clear, but a localized portal allows " +"things to be stored in an extradimensional space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale armor" -msgid_plural "black dragonscale armors" +msgid "titanium vest" +msgid_plural "titanium vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30670,17 +29284,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for black dragonscale armor +#. ~ Description for titanium vest #: lang/json/ARMOR_from_json.py msgid "" -"A full suit of incredibly durable 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." +"A lightweight armor vest made of pieces of titanium sewn together, with " +"cloth padding for comfort. Brittle against blunt force, but highly " +"resistant to cuts and corrosion." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonhide armor" -msgid_plural "black dragonhide armors" +msgid "sentinel-lx cloak" +msgid_plural "sentinel-lx cloaks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30688,17 +29302,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for black dragonhide armor +#. ~ Description for sentinel-lx cloak #: lang/json/ARMOR_from_json.py msgid "" -"A full suit of very durable 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." +"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " +"unnatural shadow. Made from woven graphene, its lightweight and resistant, " +"but cannot be repaired" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonscale gauntlets" -msgid_plural "pairs of black dragonscale gauntlets" +msgid "XL jeans" +msgid_plural "pairs of XL jeans" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30706,16 +29320,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of black dragonscale gauntlets +#. ~ Description for XL jeans #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " -"that covers your hands." +msgid "A pair of XL blue jeans with two deep pockets." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonhide gloves" -msgid_plural "pairs of black dragonhide gloves" +msgid "XL work pants" +msgid_plural "pairs of XL work pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30723,16 +29335,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of black dragonhide gloves #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of gloves made of very durable black dragonhide, modified to be easy " -"to wear while providing maximum protection under extreme conditions." +msgid "A pair of XL blue work pants." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonscale boots" -msgid_plural "pairs of XL black dragonscale boots" +msgid "A pair of XL gray work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL light-blue work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL work t-shirt" +msgid_plural "XL work t-shirts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30740,16 +29357,26 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of XL black dragonscale boots +#. ~ Description for XL work t-shirt #: lang/json/ARMOR_from_json.py -msgid "" -"Massive boots made of incredibly durable black dragonscale, modified to fit " -"even the strangest of bodies. Very protective, and surprisingly light." +msgid "A gray XL work t-shirt with a small front pocket." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonhide boots" -msgid_plural "pairs of XL black dragonhide boots" +msgid "An XL blue work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL gray work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL light-blue work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Uplifted SWAT armor" +msgid_plural "Uplifted SWAT armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30757,16 +29384,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of XL black dragonhide boots +#. ~ Description for Uplifted SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"Massive boots made of very durable black dragonhide, modified to fit even " -"the strangest of bodies. Very protective, and surprisingly light." +"An extra large suit of black bulletproof armor with lots of pockets. The " +"word SWAT is emblazoned across the back. Specifically designed for Uplifted" +" officers such as Mastodons." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonscale gauntlets" -msgid_plural "pairs of XL black dragonscale gauntlets" +msgid "empty XL ballistic vest" +msgid_plural "empty XL ballistic vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30774,16 +29402,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of XL black dragonscale gauntlets +#. ~ Description for empty XL ballistic vest #: lang/json/ARMOR_from_json.py msgid "" -"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " -"that covers your hands, or whatever you use as hands." +"Oversized ballistic armor without any armor inserts. The soft armor plate " +"carrier is still protective but it won't stop high energy projectiles." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonhide gloves" -msgid_plural "pairs of XL black dragonhide gloves" +msgid "XL ESAPI ballistic vest" +msgid_plural "XL ESAPI ballistic vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30791,17 +29419,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of XL black dragonhide gloves +#. ~ Description for XL ESAPI ballistic vest #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of gloves made of very durable black dragonhide, modified to be easy " -"to wear while providing maximum protection under extreme conditions. Sized " -"to fit even the strangest of anatomy." +msgid "Oversized ballistic armor with ESAPI ceramic armor plates." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale helmet" -msgid_plural "XL black dragonscale helmets" +msgid "pair of XL combat boots" +msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30809,17 +29434,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL black dragonscale helmet +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py -msgid "" -"A massive helmet made from incredibly durable black dragonscale, held " -"together with black dragonhide. It comes equipped with a full face visor " -"you can raise and is large enough to fit even the strangest of heads." +msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale helmet (raised visor)" -msgid_plural "XL black dragonscale helmets (raised visor)" +msgid "pair of XL tactical gloves" +msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30827,17 +29449,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL black dragonscale helmet (raised visor) +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from incredibly durable black dragonscale, held " -"together with black dragonhide. It is large enough to fit even the " -"strangest of heads. The visor is raised" +"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " +"police and military units." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonhide helmet" -msgid_plural "XL black dragonhide helmets" +msgid "pair of Killophant gloves" +msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30845,17 +29466,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL black dragonhide helmet +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from very durable black dragonhide. It protects your " -"head well, and doesn't cover your face, but is large enough to fit even the " -"strangest of heads." +"A pair of reinforced Kevlar tactical gloves, specifically designed to " +"accommodate three-fingered Killophants. Thinner than regular oversized " +"tactical gloves." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale armor" -msgid_plural "XL black dragonscale armors" +msgid "XL leather belt" +msgid_plural "XL leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30863,17 +29484,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL black dragonscale armor +#. ~ Description for XL leather belt #: lang/json/ARMOR_from_json.py msgid "" -"A massive full suit of incredibly durable 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." +"An XL leather belt. Useful for making your pair of pants fit if you need " +"really big pants." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonhide armor" -msgid_plural "XL black dragonhide armors" +msgid "XL police duty belt" +msgid_plural "XL police duty belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30881,17 +29501,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for XL black dragonhide armor +#. ~ Description for XL police duty belt #: lang/json/ARMOR_from_json.py msgid "" -"A massive full suit of very durable black dragonhide armor. It comes with " -"all the accoutrements that cover your torso, legs, and arms; sized to fit " -"even the strangest of bodies." +"An XL black leather belt used by extremely large uplifted police officers. " +"It has several pouches and a holder for a baton." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "dragonhide backpack" -msgid_plural "dragonhide backpacks" +msgid "XL tactical full helmet" +msgid_plural "XL tactical full helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30899,16 +29518,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for dragonhide backpack +#. ~ Description for XL tactical full helmet #: lang/json/ARMOR_from_json.py msgid "" -"A custom-built backpack. Made of very durable dragon leather and carefully " -"crafted to hold as much stuff as possible." +"An all-encompassing massive black helmet that covers your entire face and " +"neck, providing excellent protection from all sorts of damage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL dragonhide backpack" -msgid_plural "XL dragonhide backpacks" +msgid "XL leg ammo pouch" +msgid_plural "XL leg ammo pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30916,9 +29535,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#. ~ Description for XL leg ammo pouch #: lang/json/ARMOR_from_json.py -msgid "belt of strength +2" -msgid_plural "belts of strength +2" +msgid "" +"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" +" two magazines close at hand." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "crew jumpsuit" +msgid_plural "crew jumpsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30926,9 +29552,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#. ~ Description for crew jumpsuit #: lang/json/ARMOR_from_json.py -msgid "belt of haste" -msgid_plural "belts of haste" +msgid "" +"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " +"some freight hauling association or another. This one is a standard design " +"favored by spacers, with ample, easy access pockets." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "communications cap" +msgid_plural "communications caps" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30936,9 +29570,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#. ~ Description for communications cap #: lang/json/ARMOR_from_json.py -msgid "wizard hat" -msgid_plural "wizard hats" +msgid "" +"A padded cotton cap built around an augmented reality headset. During " +"normal operation it would provide visual information about a ship subsystems" +" and a communications link with the rest of the crew, but severed from a " +"spaceship, only their hearing protection function retains any utility." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "HERC rig" +msgid_plural "HERC rigs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30946,16 +29589,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for wizard hat +#. ~ Description for HERC rig #: lang/json/ARMOR_from_json.py msgid "" -"A blue pointed hat with stars stitched into it. Wearing it increases your " -"maximum mana." +"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " +"about in zero-g, Mars, the bottom of the Pacific, or other generally " +"inhospitable environments. It has several deep pockets, and two mounting " +"points for pressurized canisters or other large magazines." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Cloak of Morthylla the Lamia" -msgid_plural "Cloaks of Morthylla the Lamia" +msgid "cecalia wetsuit" +msgid_plural "cecalia wetsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30963,16 +29608,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Cloak of Morthylla the Lamia +#. ~ Description for cecalia wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"This cloak seems to absorb light except for the pinpricks of stars that move" -" across its surface." +"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " +"explorer suit with no head or tentacle protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of wolfshead cufflinks" -msgid_plural "pairs of wolfshead cufflinks" +msgid "combat wetsuit" +msgid_plural "combat wetsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30980,17 +29625,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of wolfshead cufflinks +#. ~ Description for combat wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of silver cufflinks with a wolf's head engraved into them. Each " -"cufflink has a bright ruby eye and pearl teeth. They appear to be growling." -" There is an inscription, 'When the moon shines. I become alive.'" +"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " +"will provide some level of protection for deep dwellers." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" +msgid "nanomesh vest" +msgid_plural "nanomesh vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -30998,16 +29642,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for technomancer's toolbelt +#. ~ Description for nanomesh vest #: lang/json/ARMOR_from_json.py msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A lightweight nanomesh vest designed to face down many of the perils of " +"space travel. These vests are mass produced and often stacked in starship " +"lockers." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +msgid "vacuum cast cuirass" +msgid_plural "vacuum cast cuirasses" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31015,18 +29660,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for seven league boots -#. ~ Description for boots of haste +#. ~ Description for vacuum cast cuirass #: lang/json/ARMOR_from_json.py 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." +"This piece of armor harkens back to renaissance designs. It differs in that" +" it is cast as a single piece in deep space installations where conditions " +"can be controlled absolutely." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +msgid "carbide raider's helmet" +msgid_plural "carbide raider's helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31034,9 +29678,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#. ~ Description for carbide raider's helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"This helmet is designed for the individual that is worried about catching " +"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " +"environmental protection features, but it just might stop even the largest " +"of ballistic rounds." +msgstr "" + #: lang/json/ARMOR_from_json.py -msgid "freerunner's boots" -msgid_plural "freerunner's boots" +msgid "UICAS Point of Impact helmet" +msgid_plural "UICAS Point of Impact helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31044,19 +29697,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for UICAS Point of Impact helmet #: lang/json/ARMOR_from_json.py msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, seeming a bit more flexible and breathable than typical for their " -"materials. The enchantment they bear helps guide their wearer in their " -"motions, to make movement around and over obstacles much more fluid and " -"efficient." +"A lightweight black helmet that provides excellent protection from all sorts" +" of damage, unless it's airborne. UICAS makes the point of designing all " +"headgear whenever possible with clear faceplates, in order to provide a " +"human touch to all interactions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +msgid "cold resistance cream" +msgid_plural "cold resistance creams" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31064,17 +29716,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for boots of grounding +#. ~ Description for cold resistance cream #: lang/json/ARMOR_from_json.py 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 thick layer of something that smells worse than walrus fat. But it keeps " +"you warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Fish" -msgid_plural "Wildshape Cloaks: Fish" +msgid "heat retention xtreme cream" +msgid_plural "heat retention xtreme creams" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31082,17 +29733,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Wildshape Cloak: Fish +#. ~ Description for heat retention xtreme cream #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that shimmers like fresh water under a warm sun. It can be " -"worn to morph your body to a form that is excellent for swimming, but ill-" -"suited for combat." +"The last word in cold snap protection designed to give short term protection" +" in the event of a suit breach in vacuum." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Bear" -msgid_plural "Wildshape Cloak: Bears" +msgid "titanium watch" +msgid_plural "titanium watches" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31100,17 +29750,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Wildshape Cloak: Bear +#. ~ Description for titanium watch #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that smells of the forest. It can be worn to morph your " -"body to a form that is strong and resilient in melee combat. However, you " -"feel as if you would lose a part of yourself." +"A thick, masculine watch made out of titanium. It is durable, light-weight " +"and water-resistant, an excellent watch to have in a hostile environment." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Deer" -msgid_plural "Wildshape Cloak: Deers" +msgid "titanium ring" +msgid_plural "titanium rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31118,17 +29767,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Wildshape Cloak: Deer +#. ~ Description for titanium ring #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that feels soft to the touch. It can be worn to morph your " -"body to a form well-suited to escaping difficult situations. However, it " -"places a great strain on your body." +"A thick, masculine ring made out of titanium. Made in a variety of styles " +"and finishes, they're valued for their durability." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "enchanted parabolan wool blouse" -msgid_plural "enchanted parabolan wool blouse" +msgid "hazardous environment suit" +msgid_plural "hazardous environment suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31136,18 +29784,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for hazardous environment suit #: lang/json/ARMOR_from_json.py msgid "" -"A loose iridescent blouse in a style most often associated with pirates and " -"renfaires. It shimmers as you look at it. Made of parabolan wool, it " -"sometimes dimly shows reflections of things here and not. This particular " -"one has piratical flairs and glitters with enchantment." +"Developed for the exploration of alien planes, the lightweight, orange-black" +" HEV suit covers everything below the neck. While it possesses only modest " +"physical protection, it provides excellent protection from most " +"environmental hazards. A hatch in the front opens to provide a small amount" +" of storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "enchanted parabolan wool breeches" -msgid_plural "enchanted parabolan wool breeches" +msgid "psychrophile handling gloves" +msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31155,18 +29804,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" -"A well-made pair of old-fashioned pants, made of iridescent material. " -"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " -"parabolan wool, it sometimes dimly shows reflections of things here and not." -" This particular one has piratical flairs and gliters with enchantment." +"These gloves are designed for handling organisms that live in extremely cold" +" temperatures. They can also be used to freeze your foes to death." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "parabolan wool blouse" -msgid_plural "parabolan wool blouses" +msgid "CRIT Engineering Suit" +msgid_plural "CRIT Engineering Suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31174,17 +29821,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for parabolan wool blouse +#. ~ Description for CRIT Engineering Suit #: lang/json/ARMOR_from_json.py msgid "" -"A loose iridescent blouse in a style most often associated with pirates and " -"renfaires. It shimmers as you look at it. Made of parabolan wool, it " -"sometimes dimly shows reflections of things here and not." +"An airtight, flexible suit of woven composite fibers complete with segmented" +" plates of armor. A complex system digitizes items in an individual pocket " +"universe for storage while built in joint-torsion ratchets generate the " +"necessary energy required to power the interface." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "parabolan wool breeches" -msgid_plural "parabolan wool breeches" +msgid "CRIT face mask" +msgid_plural "CRIT face masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31192,17 +29840,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for CRIT face mask #: lang/json/ARMOR_from_json.py msgid "" -"A well-made pair of old-fashioned pants, made of iridescent material. " -"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " -"parabolan wool, it sometimes dimly shows reflections of things here and not." +"A standard issue face mask, lined with Kevlar for extra protection. A few " +"filters provide decent environmental safety, but it was not intended for " +"extended use. It has a basic integrated HUD." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT boots" +msgid_plural "pairs of CRIT boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31210,14 +29858,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pair of magical armored stone gauntlets -#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for pair of CRIT boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " +"hygienic during long-term missions while absorbing shock and heat from " +"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " +"protection as well. Decently heavy though" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "magic lamp" -msgid_plural "magic lamps" +msgid "pair of CRIT LA boots" +msgid_plural "pairs of CRIT LA boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31225,14 +29877,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for magic lamp +#. ~ Description for pair of CRIT LA boots #: lang/json/ARMOR_from_json.py -msgid "A magical light source that will light up a small area." +msgid "" +"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " +"variant was created for missions in warmer climates. The LA boots keep most" +" of the old features of the standard issue boots but trade in protection for" +" easier movement." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "magic light" -msgid_plural "magic lights" +msgid "pair of CRIT fingertip-less gloves" +msgid_plural "pairs of CRIT fingertip-less gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31240,14 +29896,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for magic light +#. ~ Description for pair of CRIT fingertip-less gloves #: lang/json/ARMOR_from_json.py -msgid "A small magical light that you can read by." +msgid "" +"A pair of standard-issue gloves. Made with superalloy mesh for those with " +"gene-modding and/or mutations while still allowing greater manipulation of " +"items and moderate protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +msgid "pair of CRIT fingertip-less liners" +msgid_plural "pairs of CRIT fingertip-less liners" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31255,14 +29914,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for large shield of magical ice +#. ~ Description for pair of CRIT fingertip-less liners #: lang/json/ARMOR_from_json.py -msgid "A lightweight but tough shield crafted entirely of magical ice." +msgid "" +"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " +"for warmth and fingertip-less for those with gene-modding and/or mutations " +"while still allowing greater manipulation of items and moderate protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +msgid "CRIT backpack" +msgid_plural "CRIT backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31270,16 +29932,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for CRIT backpack #: lang/json/ARMOR_from_json.py 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 standard-issue pack. Based on the MOLLE backpack's design, this smaller " +"pack strikes a fine balance between storage space and encumbrance and allows" +" a larger weapon to be holstered, drawing and holstering is still rather " +"awkward even with the magnetized clips, but practice helps." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "flesh pouch" -msgid_plural "flesh pouches" +msgid "CRIT chestrig" +msgid_plural "CRIT chestrigs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31287,17 +29951,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for flesh pouch +#. ~ Description for CRIT chestrig #: lang/json/ARMOR_from_json.py 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 slightly modified chestrig, has mesh and MOLLE loops for gear and slots " +"with light-armor padding." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +msgid "pair of CRIT leg guards" +msgid_plural "pairs of CRIT leg guards" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31305,16 +29968,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for obfuscating aura +#. ~ Description for pair of CRIT leg guards #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." +"Leg armor for those who fight. Simple design and durable material allows " +"for easy movement and the padding keeps the legs safe and warm in colder " +"conditions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +msgid "pair of CRIT arm guards" +msgid_plural "pairs of CRIT arm guards" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31322,15 +29986,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for acid resistance aura -#. ~ Description for greater acid resistance aura +#. ~ Description for pair of CRIT arm guards #: lang/json/ARMOR_from_json.py -msgid "An all-encompassing, invisible layer of protection against acid." +msgid "" +"A pair of arm guards made from superalloy molded upon neoprene, and then " +"insulated with rubber. They are sturdy and will block attacks, but they are" +" ridiculously heavy." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +msgid "CRIT infantry duster" +msgid_plural "CRIT infantry dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31338,9 +30004,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#. ~ Description for CRIT infantry duster #: lang/json/ARMOR_from_json.py -msgid "frost armor" -msgid_plural "frost armor" +msgid "" +"A thick full-length duster coat with rubber insulation. More than mildly " +"encumbering, but rather protective against any anti-infantry electrical " +"discharges from the robots. Has several pockets for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Armored Anomaly Suit" +msgid_plural "CRIT Armored Anomaly Suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31348,14 +30022,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for CRIT Armored Anomaly Suit #: lang/json/ARMOR_from_json.py -msgid "A thin layer of magical ice, covering the entire body." +msgid "" +"A relatively simple suit of armor. A suit of woven composite fibers " +"combined with a cleansuit core and strategically placed segmented Kevlar " +"plates keep the suit light-weight and the one wearing it alive while " +"offering superb resistance to the elements and ambient radiation." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +msgid "CRIT drop leg pouch" +msgid_plural "CRIT drop leg pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31363,16 +30041,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for CRIT drop leg pouch #: lang/json/ARMOR_from_json.py msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A set of pouches that can be worn on the thighs using buckled straps. This " +"variety is more compact and is favored by the C.R.I.T for its ease of use." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "overcharge burn" -msgid_plural "overcharge burns" +msgid "CRIT Enforcer armor assembly" +msgid_plural "CRIT Enforcer armor assemblies" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31380,14 +30058,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for overcharge burn +#. ~ Description for CRIT Enforcer armor assembly #: lang/json/ARMOR_from_json.py -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgid "" +"A series of plates, guards and buckles which assemble into a suit of sturdy " +"body-armor which usually goes over other armor. Overlapping steel plates on" +" top of Kevlar plates cover vast expanses as the armor juts off in places so" +" it can deflect attacks. Built with the idea that comfort is less important" +" than safety, this heavy suit is difficult to move about in but highly " +"protective. Various adjustable connectors such as straps and clips hold it " +"together." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "aura of protection" -msgid_plural "auras of protection" +msgid "pair of CRIT Enforcer docks" +msgid_plural "pairs of CRIT Enforcer docks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31395,16 +30080,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for aura of protection +#. ~ Description for pair of CRIT Enforcer docks #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " +"oversized feet which clamp down onto your own footwear keep your feet out of" +" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " +"designs, but they do seem to be worth using if you were to be in the middle " +"of a war zone." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "aura of repelling arc" -msgid_plural "auras of repelling arc" +msgid "CRIT Soldier Suit" +msgid_plural "CRIT Soldier Suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31412,15 +30100,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for aura of repelling arc +#. ~ Description for CRIT Soldier Suit #: lang/json/ARMOR_from_json.py msgid "" -"An invisible aura that strikes melee attackers with arcs of electricity." +"A suit of modern body-armor. Strategically placed superalloy plates keep " +"the suit's weight minimal while Kevlar plates other areas and a lining of " +"soft neoprene pads areas for extra comfort. Most importantly, this can be " +"worn comfortably under other armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "feral aura" -msgid_plural "feral auras" +msgid "CRIT Lone Wolf Series Armor" +msgid_plural "CRIT Lone Wolf Series Armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31428,15 +30119,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for feral aura +#. ~ Description for CRIT Lone Wolf Series Armor #: lang/json/ARMOR_from_json.py msgid "" -"The manifestation of your rage. It won't disappear until you calm down." +"A matte black suit of outdated and bulky looking plate armor fitted onto a " +"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " +"armor will definitely protect you from practically anything. Just make sure" +" you can actually walk with it on though." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "acid aura" -msgid_plural "acid auras" +msgid "CRIT blouse" +msgid_plural "CRIT blouses" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31444,16 +30138,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for acid aura +#. ~ Description for CRIT blouse #: lang/json/ARMOR_from_json.py msgid "" -"An aura of thin acid, swirling around your body ready to corrode when struck" -" or while striking." +"A standard-issue military jacket. Durable, lightweight, and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather " +"while a sleek design keeps it from being too flashy. A zipper at the back " +"and front allows for quick donning and doffing." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "werewolf aura" -msgid_plural "werewolf auras" +msgid "CRIT trousers" +msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31461,14 +30157,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for werewolf aura +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py -msgid "You have become the werewolf. Boys becoming men, men becoming wolves." +msgid "" +"A pair of standard-issue cargo pants. Durable, lightweight and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Black Dragon Shell" -msgid_plural "Black Dragon Shells" +#: lang/json/ARMOR_from_json.py +msgid "CRIT pants" +msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31476,16 +30174,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Black Dragon Shell +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" -"An aura of black and green draconic energy, swirling around your body " -"protecting you and punishing those who strike you." +"A pair of dress pants. A minimalist sleek design makes the pants " +"lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" +" moderately cold weather." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "spiritual armor" -msgid_plural "spiritual armor" +msgid "CRIT helmet liner" +msgid_plural "CRIT helmet liners" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31493,14 +30192,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for CRIT helmet liner #: lang/json/ARMOR_from_json.py -msgid "A summoned medieval armor. It glows softly and looks sturdy." +msgid "A standard-issue helmet liner. Keeps the noggin warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "auroral shell" -msgid_plural "auroral shell" +msgid "pair of CRIT shoes" +msgid_plural "pairs of CRIT dress shoes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31508,14 +30207,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for pair of CRIT shoes #: lang/json/ARMOR_from_json.py -msgid "A sturdy shell that wraps your body, gaining a sturdy defense." +msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." msgstr "" -#: lang/json/BATTERY_from_json.py -msgid "test battery" -msgid_plural "test batteries" +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT rec gloves" +msgid_plural "pairs of CRIT rec gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31523,16 +30222,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for test battery -#: lang/json/BATTERY_from_json.py +#. ~ Description for pair of CRIT rec gloves +#: lang/json/ARMOR_from_json.py msgid "" -"This is a testing item for the BATTERY item type. If you found one in game," -" it's a bug." +"A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " +"are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract bionic module" -msgid_plural "abstract bionic modules" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31540,9 +30239,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract bionic module (npc usable)" -msgid_plural "abstract bionic modules (npc usable)" +#. ~ Description for CRIT web belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A standard-issue belt. Keeps your trousers up and your tools on your hip." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT rec duster" +msgid_plural "CRIT rec dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31550,9 +30255,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract faulty bionic module" -msgid_plural "abstract faulty bionic modules" +#. ~ Description for CRIT rec duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A waterproofed full-length duster coat. Made with neoprene, comfort and " +"functionality meet together to form a fancy but sleek contemporary design. " +"It has several pockets for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT rec hat" +msgid_plural "CRIT rec hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31560,14 +30273,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for abstract faulty bionic module -#: lang/json/BIONIC_ITEM_from_json.py -msgid "This CBM is broken beyond repair, you can't do anything with it." +#. ~ Description for CRIT rec hat +#: lang/json/ARMOR_from_json.py +msgid "" +"Functionality meets fashion in this waterproofed CRIT standard issue rec " +"cover. Thick enough to provide warmth in colder weather, this hat shares " +"the same sleek design of most of C.R.I.T's gear." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Adrenaline Pump CBM" -msgid_plural "Adrenaline Pump CBMs" +#: lang/json/ARMOR_from_json.py +msgid "plant fiber tunic" +msgid_plural "plant fiber tunics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31575,17 +30291,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Adrenaline Pump CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for plant fiber tunic +#: lang/json/ARMOR_from_json.py msgid "" -"A stimulator system that is implanted alongside the adrenal glands, allowing" -" the user to trigger their body's adrenaline response at the cost of some " -"bionic power." +"A loose garment cobbled together from a collection of plant bundles and " +"wound together by makeshift cordage" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Active Defense System CBM" -msgid_plural "Active Defense System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "plant fiber bracelet" +msgid_plural "plant fiber bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31593,18 +30308,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Active Defense System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for plant fiber bracelet +#: lang/json/ARMOR_from_json.py msgid "" -"This bionic projects a thin forcefield around the user's body. Anything " -"attempting to penetrate this field has a chance of being deflected at the " -"cost of energy, reducing their ability to deal damage. Bullets will be " -"deflected more than swords and those in turn more than massive objects." +"A bracelet wound together by makeshift cordage. Has some cool looking " +"pebbles." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Alarm System CBM" -msgid_plural "Alarm System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "CRIT canteen" +msgid_plural "CRIT canteens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31612,17 +30325,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Alarm System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for CRIT canteen +#: lang/json/ARMOR_from_json.py msgid "" -"A motion-detecting alarm system will notice almost all movement within a " -"fifteen-foot radius, and will silently alert the user. This is very useful " -"during sleep, or if the user suspects a cloaked pursuer." +"A durable steel canteen that can heat up food with built in atomic heating " +"elements." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "salvaged new order armor" +msgid_plural "salvaged new order armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31630,16 +30342,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Arms Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for salvaged new order armor +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"A suit of armor belonging to a human-sized soldier of the New Order. Its " +"terribly damaged from some combination of the combat its seen, the process " +"needed to pry it off its wearer, and some sort of dead man's switch on the " +"elements that actually power the thing and make it easy to wear." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Protective Lenses CBM" -msgid_plural "Protective Lenses CBMs" +#: lang/json/ARMOR_from_json.py +msgid "new order shield" +msgid_plural "new order shields" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31647,17 +30361,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Protective Lenses CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for new order shield +#: lang/json/ARMOR_from_json.py msgid "" -"A bionic package that seals the user's eye sockets with highly protective " -"mirrored lenses and re-routes their tear ducts to their mouth. When the " -"user cries, they must spit out or swallow their tears." +"A simple shield made of some sort of polycarbonates, used extensively by the" +" Vigilants, the gendarmerie of the New Order. Alongside their infamous " +"shock batons, this is an essential tool in 'keeping the peace'." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "new order battle shield" +msgid_plural "new order battle shields" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31665,16 +30379,32 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Head Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for new order battle shield +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"A well forged shield made of steel, emblazoned with what appears to be a " +"highly stylized depiction of a sword piercing a star." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +#. ~ Description for large quiver +#: lang/json/ARMOR_from_json.py +msgid "" +"A large leather quiver trimmed with metal, worn on the back, that can hold " +"60 arrows. Historically used by horse archers, rather than foot archers, " +"but sometimes horses are a little hard to come by in this day and age. " +"Activate to store arrows." +msgstr "" + +#. ~ Description for bra +#: lang/json/ARMOR_from_json.py +msgid "" +"A simple bra. For protecting those bits you don't want creatures to look " +"at." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Ixythyug the Destroyer's soul" +msgid_plural "Ixythyug the Destroyer's souls" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31682,16 +30412,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Legs Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +#. ~ Description for Ixythyug the Destroyer's soul +#: lang/json/ARMOR_from_json.py +msgid "RIP AND TEAR" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Force Shield" +msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31699,16 +30427,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Torso Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Force Shield +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"A shield of pure force that protects you from most types of physical damage." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Battery System CBM" -msgid_plural "Battery System CBMs" +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Soul Burn" +msgid_plural "Soul Burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31716,16 +30443,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Battery System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Soul Burn +#: lang/json/ARMOR_from_json.py msgid "" -"A battery draining attachment to make use of the energy contained in normal," -" everyday batteries." +"A little of your soul has been burned away, leaving you in a weakened state." +" The soul heals quickly, so rest for now." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Monomolecular Blade CBM" -msgid_plural "Monomolecular Blade CBMs" +#: lang/json/ARMOR_from_json.py +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31733,18 +30460,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Monomolecular Blade CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for copper infusion bracelet +#. ~ Description for silver infusion bracelet +#: lang/json/ARMOR_from_json.py msgid "" -"A deadly foot-long blade made of advanced material that is installed inside " -"the forearm, capable of being extended through the back of the user's wrist " -"at the cost of a small amount of power. Though exceptionally sharp, it will" -" prevent the user from holding anything else while extended." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Shotgun Arm CBM" -msgid_plural "Shotgun Arm CBMs" +#: lang/json/ARMOR_from_json.py +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31752,16 +30478,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Shotgun Arm CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A concealed, single shot 12 gauge shotgun that is implanted inside the left " -"forearm. Perfect in a pinch." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Blood Analysis CBM" -msgid_plural "Blood Analysis CBMs" +#: lang/json/ARMOR_from_json.py +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31769,17 +30488,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Blood Analysis CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for copper circlet +#: lang/json/ARMOR_from_json.py msgid "" -"Small sensors that are implanted in the user's heart, allowing them to " -"analyze their blood. This will detect many illnesses, drugs, and other " -"conditions." +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Blood Filter CBM" -msgid_plural "Blood Filter CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin arm guards" +msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31787,18 +30505,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Blood Filter CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of demon chitin arm guards +#: lang/json/ARMOR_from_json.py msgid "" -"A filtration system that is installed in the heart and can actively filter " -"out chemical impurities, primarily drugs, with limited impact on viruses. " -"Note that it is not a targeted filter; ALL drugs in the system will be " -"affected." +"A pair of arm guards crafted from the carefully cleaned and pruned red " +"exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Cable Charger System CBM" -msgid_plural "Cable Charger System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "demon chitin armor" +msgid_plural "demon chitin armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31806,16 +30522,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Cable Charger System CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A complex port that is mounted above the hip. While active, it will " -"recharge bionic power when connected to a battery via jumper cable." +#. ~ Description for demon chitin armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Leg and body armor crafted from the carefully cleaned and pruned red " +"exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Subdermal Carbon Filament CBM" -msgid_plural "Subdermal Carbon Filament CBMs" +#: lang/json/ARMOR_from_json.py +msgid "demon chitin helmet" +msgid_plural "demon chitin helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31823,16 +30539,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Subdermal Carbon Filament CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for demon chitin helmet +#: lang/json/ARMOR_from_json.py msgid "" -"A thin armor made of carbon nanotubes, implanted just beneath the skin. " -"This reduces bashing damage by 2 and cutting damage by 4." +"A helmet crafted from the carefully cleaned and pruned red exoskeletons of " +"demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Chain Lightning CBM" -msgid_plural "Chain Lightning CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin gauntlets" +msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31840,17 +30556,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Chain Lightning CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of demon chitin gauntlets +#: lang/json/ARMOR_from_json.py msgid "" -"A chain lightning generator that emits a blast of lightning at a target, " -"leaving a trail of lightning in its wake and jumping to additional targets " -"within 4 tiles of the previous target." +"Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " +"demon spiders. Fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Bionic Claws CBM" -msgid_plural "Bionic Claws CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin boots" +msgid_plural "pairs of demon chitin boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31858,17 +30573,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Bionic Claws CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of demon chitin boots +#: lang/json/ARMOR_from_json.py msgid "" -"Vicious, retractable claws that are implanted inside the user's fingers. " -"These do considerable cutting damage, but prevent the user from holding " -"anything else while extended." +"Boots crafted from carefully cleaned and pruned red exoskeletons of demon " +"spiders. Fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Internal Climate Control CBM" -msgid_plural "Internal Climate Control CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonscale boots" +msgid_plural "pairs of black dragonscale boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31876,16 +30590,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Internal Climate Control CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of black dragonscale boots +#: lang/json/ARMOR_from_json.py msgid "" -"A network of thermal piping which eases the effects of high and low ambient " -"temperatures once activated." +"Boots made of black incredibly durable dragonscale. Very protective, and " +"surprisingly light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Cloaking System CBM" -msgid_plural "Cloaking System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonhide boots" +msgid_plural "pairs of black dragonhide boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31893,18 +30607,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Cloaking System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of black dragonhide boots +#: lang/json/ARMOR_from_json.py msgid "" -"This high-power system uses a set of cameras and LEDs to make the user blend" -" into their surroundings, rendering them fully invisible to eyes and optical" -" sensors. However, this doesn't prevent detection from other means such as " -"infrared, sonar, etc." +"Boots made of very durable black dragonhide. Very protective, and " +"surprisingly light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Close Quarters Battle CBM" -msgid_plural "Close Quarters Battle CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale helmet" +msgid_plural "black dragonscale helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31912,18 +30624,25 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Close Quarters Battle CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Use action msg for black dragonscale helmet. +#. ~ Use action msg for XL black dragonscale helmet. +#. ~ Use action msg for riot helmet. +#. ~ Use action msg for motorcycle helmet. +#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py +msgid "You raise your visor." +msgstr "" + +#. ~ Description for black dragonscale helmet +#: lang/json/ARMOR_from_json.py msgid "" -"A set of bionic processors and databanks, loaded with martial arts combat " -"programs. Whilst active, the CQB module will improve the user's hand-to-" -"hand combat skills, but prevents them from improving them through combat " -"experience." +"A helmet made from black incredibly durable dragonscale, held together with " +"black dragonhide. It comes equipped with a full face visor with only a thin" +" slit to see out of. Activate to raise the visor." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Wired Reflexes CBM" -msgid_plural "Wired Reflexes CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale helmet (raised visor)" +msgid_plural "black dragonscale helmets (raised visor)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31931,16 +30650,24 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Wired Reflexes CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Use action msg for black dragonscale helmet (raised visor). +#. ~ Use action msg for XL black dragonscale helmet (raised visor). +#. ~ Use action msg for riot helmet (raised visor). +#. ~ Use action msg for motorcycle helmet (raised visor). +#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py +msgid "You put down your visor." +msgstr "" + +#. ~ Description for black dragonscale helmet (raised visor) +#: lang/json/ARMOR_from_json.py msgid "" -"Bionic nerve stimulators that greatly enhance reaction times, granting a +2 " -"bonus to dexterity." +"A helmet made from incredibly durable black dragonscale, held together with " +"black dragonhide. The visor is raised." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Expanded Digestive System CBM" -msgid_plural "Expanded Digestive System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonhide helmet" +msgid_plural "black dragonhide helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31948,18 +30675,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Expanded Digestive System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for black dragonhide helmet +#: lang/json/ARMOR_from_json.py msgid "" -"This module contains three synthetic stomachs and industrial-grade " -"intestines. Not only will these extract much more nutrition from food, but " -"also increase the user's resistance to foodborne illness, and occasionally " -"allow the digestion of rotten food." +"A helmet made from very durable black dragonhide. It protects your head " +"well, but doesn't cover your face." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Enhanced Hearing CBM" -msgid_plural "Enhanced Hearing CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale armor" +msgid_plural "black dragonscale armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31967,18 +30692,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Enhanced Hearing CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for black dragonscale armor +#: lang/json/ARMOR_from_json.py msgid "" -"While this bionic is active, the user's hearing will be drastically " -"improved, allowing them to hear ten times better than the average person. " -"Additionally, high-intensity sounds will be automatically dampened before " -"they can damage their hearing." +"A full suit of incredibly durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Directional EMP CBM" -msgid_plural "Directional EMP CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonhide armor" +msgid_plural "black dragonhide armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -31986,17 +30710,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Directional EMP CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for black dragonhide armor +#: lang/json/ARMOR_from_json.py msgid "" -"Small parabolic EMP field generators that are mounted in the palm of the " -"user's right hand. These can be used to instantly fire a wide, but short-" -"ranged blast which will disable electronics and robots." +"A full suit of very durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "EMP Projector CBM" -msgid_plural "EMP Projector CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonscale gauntlets" +msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32004,18 +30728,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for EMP Projector CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of black dragonscale gauntlets +#: lang/json/ARMOR_from_json.py msgid "" -"A ranged EMP generator system that is implanted in the user's right arm and " -"hand. The system fires precise, single-target pulses that require time to " -"aim. Extremely effective against electronic targets but mostly useless " -"otherwise." +"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " +"that covers your hands." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Ethanol Burner CBM" -msgid_plural "Ethanol Burner CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonhide gloves" +msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32023,17 +30745,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Ethanol Burner CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of black dragonhide gloves +#: lang/json/ARMOR_from_json.py msgid "" -"A reactor that burns alcohol as fuel in an extremely efficient reaction. It" -" can store up to 500ml and accepts ethanol, methanol and denatured alcohol " -"as fuel." +"A pair of gloves made of very durable black dragonhide, modified to be easy " +"to wear while providing maximum protection under extreme conditions." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Aero-Evaporator CBM" -msgid_plural "Aero-Evaporator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonscale boots" +msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32041,17 +30762,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Aero-Evaporator CBM -#. ~ Description for Aero-Evaporator -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for pair of XL black dragonscale boots +#: lang/json/ARMOR_from_json.py msgid "" -"This unit draws moisture from the surrounding air, which slowly trickles " -"directly into your blood stream. It may fail in very dry environments." +"Massive boots made of incredibly durable black dragonscale, modified to fit " +"even the strangest of bodies. Very protective, and surprisingly light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Diamond Cornea CBM" -msgid_plural "Diamond Cornea CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonhide boots" +msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32059,16 +30779,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Diamond Cornea CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of XL black dragonhide boots +#: lang/json/ARMOR_from_json.py msgid "" -"A set of diamond corneas which greatly enhance the user's vision, granting a" -" +2 bonus to perception." +"Massive boots made of very durable black dragonhide, modified to fit even " +"the strangest of bodies. Very protective, and surprisingly light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Telescopic Eyes CBM" -msgid_plural "Telescopic Eyes CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonscale gauntlets" +msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32076,17 +30796,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Telescopic Eyes CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of XL black dragonscale gauntlets +#: lang/json/ARMOR_from_json.py msgid "" -"An array of high-powered, auto-focusing lenses that replaces much of the " -"material in the inner eye. This fixes any vision problems and allows for an" -" increased vision range akin to binoculars." +"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " +"that covers your hands, or whatever you use as hands." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Facial Distortion CBM" -msgid_plural "Facial Distortion CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonhide gloves" +msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32094,17 +30813,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Facial Distortion CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of XL black dragonhide gloves +#: lang/json/ARMOR_from_json.py msgid "" -"Through controlled application of electrochemical impulses, this bionic " -"module lets the user alter their facial structure so as to subtly affect the" -" reactions of others. This grants a bonus to all social interactions." +"A pair of gloves made of very durable black dragonhide, modified to be easy " +"to wear while providing maximum protection under extreme conditions. Sized " +"to fit even the strangest of anatomy." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Dielectric Capacitance System CBM" -msgid_plural "Dielectric Capacitance System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale helmet" +msgid_plural "XL black dragonscale helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32112,16 +30831,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Dielectric Capacitance System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for XL black dragonscale helmet +#: lang/json/ARMOR_from_json.py msgid "" -"A network of miniature piezoelectric capacitors, implanted throughout the " -"body to protect from external electrical discharge." +"A massive helmet made from incredibly durable black dragonscale, held " +"together with black dragonhide. It comes equipped with a full face visor " +"you can raise and is large enough to fit even the strangest of heads." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Fingerhack CBM" -msgid_plural "Fingerhack CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale helmet (raised visor)" +msgid_plural "XL black dragonscale helmets (raised visor)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32129,18 +30849,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Fingerhack CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for XL black dragonscale helmet (raised visor) +#: lang/json/ARMOR_from_json.py msgid "" -"A miniature electrohack, surgically embedded in a finger of the right hand." -" This is an all-purpose hacking unit used to override control panels and " -"the like, but not computers. Computer proficiency is important, and a " -"failed use may cause damage." +"A massive helmet made from incredibly durable black dragonscale, held " +"together with black dragonhide. It is large enough to fit even the " +"strangest of heads. The visor is raised" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Flashbang Generator CBM" -msgid_plural "Flashbang Generator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonhide helmet" +msgid_plural "XL black dragonhide helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32148,16 +30867,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Flashbang Generator CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for XL black dragonhide helmet +#: lang/json/ARMOR_from_json.py msgid "" -"A combination of LEDs and speakers that create a flash and sound comparable " -"to a flashbang grenade, deafening and blinding nearby enemies." +"A massive helmet made from very durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Cranial Flashlight CBM" -msgid_plural "Cranial Flashlight CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale armor" +msgid_plural "XL black dragonscale armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32165,14 +30885,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Cranial Flashlight CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "A small, but powerful LED flashlight that is mounted between the eyes." +#. ~ Description for XL black dragonscale armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive full suit of incredibly durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "LED Tattoo" -msgid_plural "LED Tattoos" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonhide armor" +msgid_plural "XL black dragonhide armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32180,17 +30903,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for LED Tattoo -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for XL black dragonhide armor +#: lang/json/ARMOR_from_json.py msgid "" -"An LED display implanted beneath the epidermis that can display patterns or " -"pictures through the skin. When active it glows dimly, providing a very " -"small amount of light." +"A massive full suit of very durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Integrated Dosimeter CBM" -msgid_plural "Integrated Dosimeter CBMs" +#: lang/json/ARMOR_from_json.py +msgid "dragonhide backpack" +msgid_plural "dragonhide backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32198,17 +30921,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Integrated Dosimeter CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for dragonhide backpack +#: lang/json/ARMOR_from_json.py msgid "" -"Small radiation sensors that are implanted throughout the body, allowing the" -" user to analyze their level of absorbed radiation. They will also alert " -"the user whenever exposed to environmental radiation." +"A custom-built backpack. Made of very durable dragon leather and carefully " +"crafted to hold as much stuff as possible." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Respirator CBM" -msgid_plural "Respirator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL dragonhide backpack" +msgid_plural "XL dragonhide backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32216,17 +30938,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Respirator CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A complex respiration augmentation system that increases the user's maximal " -"oxygen uptake and allows for underwater breathing akin to gills. Will " -"automatically activate if the user is drowning." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Terranian Sonar CBM" -msgid_plural "Terranian Sonar CBMs" +#: lang/json/ARMOR_from_json.py +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32234,16 +30948,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Terranian Sonar CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Precision sonar equipment, implanted in the feet to allow the detection of " -"below-ground movement, buried traps, and unstable terrain." -msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "belt of haste" +msgid_plural "belts of haste" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Heat Drain CBM" -msgid_plural "Heat Drain CBMs" +#: lang/json/ARMOR_from_json.py +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32251,17 +30968,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Heat Drain CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for wizard hat +#: lang/json/ARMOR_from_json.py msgid "" -"While fighting unarmed against a warm-blooded opponent, there is a chance " -"that a successful hit will drain body heat, inflicting a small amount of " -"extra damage, and recharging the user's bionic power reserves slightly." +"A blue pointed hat with stars stitched into it. Wearing it increases your " +"maximum mana." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Thermal Dissipation CBM" -msgid_plural "Thermal Dissipation CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Cloak of Morthylla the Lamia" +msgid_plural "Cloaks of Morthylla the Lamia" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32269,18 +30985,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Thermal Dissipation CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Cloak of Morthylla the Lamia +#: lang/json/ARMOR_from_json.py msgid "" -"Powerful heatsinks and supermaterials are woven into the user's flesh. " -"While powered, this system will prevent external heat damage up to 2000 " -"degrees Fahrenheit. Note that this does not affect the internal body " -"temperature." +"This cloak seems to absorb light except for the pinpricks of stars that move" +" across its surface." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Hydraulic Muscles CBM" -msgid_plural "Hydraulic Muscles CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of wolfshead cufflinks" +msgid_plural "pairs of wolfshead cufflinks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32288,16 +31002,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Hydraulic Muscles CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of wolfshead cufflinks +#: lang/json/ARMOR_from_json.py msgid "" -"A hydraulic muscle support system that when active, increases strength by " -"20." +"A pair of silver cufflinks with a wolf's head engraved into them. Each " +"cufflink has a bright ruby eye and pearl teeth. They appear to be growling." +" There is an inscription, 'When the moon shines. I become alive.'" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Infrared Vision CBM" -msgid_plural "Infrared Vision CBMs" +#: lang/json/ARMOR_from_json.py +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32305,16 +31020,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Infrared Vision CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for technomancer's toolbelt +#: lang/json/ARMOR_from_json.py msgid "" -"A bionic module that extends the range of vision into the infrared, allowing" -" the user to see warm-blooded creatures in the dark and through smoke." +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Cerebral Booster CBM" -msgid_plural "Cerebral Booster CBMs" +#: lang/json/ARMOR_from_json.py +msgid "seven league boots" +msgid_plural "pairs of seven league boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32322,16 +31037,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Cerebral Booster CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for seven league boots +#. ~ Description for boots of haste +#: lang/json/ARMOR_from_json.py msgid "" -"Bionic coprocessors that are implanted in the brain, granting a +2 bonus to " -"intelligence." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Finger-Mounted Laser CBM" -msgid_plural "Finger-Mounted Laser CBMs" +#: lang/json/ARMOR_from_json.py +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32339,17 +31056,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Finger-Mounted Laser CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A small, high-powered laser that is embedded in the fingertip. This long " -"range weapon is not incredibly damaging, but is very accurate, and has the " -"potential to start fires." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Leukocyte Breeder System CBM" -msgid_plural "Leukocyte Breeder System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "freerunner's boots" +msgid_plural "freerunner's boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32357,18 +31066,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Leukocyte Breeder System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for freerunner's boots +#: lang/json/ARMOR_from_json.py msgid "" -"Bionic stimulators which augment the user's haematopoiesis system, allowing " -"them to accelerate white blood cell production using bionic power. It is " -"designed for continuous use and may cause unpleasant side effects when " -"turned off." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, seeming a bit more flexible and breathable than typical for their " +"materials. The enchantment they bear helps guide their wearer in their " +"motions, to make movement around and over obstacles much more fluid and " +"efficient." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Finger Lighter CBM" -msgid_plural "Finger Lighter CBMs" +#: lang/json/ARMOR_from_json.py +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32376,16 +31086,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Finger Lighter CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for boots of grounding +#: lang/json/ARMOR_from_json.py msgid "" -"Powerful fire starters which extend from the tip of both hands' index " -"fingers." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Fingerpick CBM" -msgid_plural "Fingerpick CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Fish" +msgid_plural "Wildshape Cloaks: Fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32393,17 +31104,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Fingerpick CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Wildshape Cloak: Fish +#: lang/json/ARMOR_from_json.py msgid "" -"An electronic lockpick that is embedded in a fingertip. This automatic " -"system will quickly unlock all but the most advanced key locks without any " -"skill required on the part of the user." +"A magical cloak that shimmers like fresh water under a warm sun. It can be " +"worn to morph your body to a form that is excellent for swimming, but ill-" +"suited for combat." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Electromagnetic Unit CBM" -msgid_plural "Electromagnetic Unit CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Bear" +msgid_plural "Wildshape Cloak: Bears" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32411,17 +31122,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Electromagnetic Unit CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Wildshape Cloak: Bear +#: lang/json/ARMOR_from_json.py msgid "" -"A powerful electromagnet that is implanted into the user's right hand, " -"allowing them to indiscriminately pull all nearby magnetic objects towards " -"them. Unlucky bystanders might be injured or killed by flying objects." +"A magical cloak that smells of the forest. It can be worn to morph your " +"body to a form that is strong and resilient in melee combat. However, you " +"feel as if you would lose a part of yourself." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Nictating Membrane CBM" -msgid_plural "Nictating Membrane CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Deer" +msgid_plural "Wildshape Cloak: Deers" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32429,16 +31140,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Nictating Membrane CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Wildshape Cloak: Deer +#: lang/json/ARMOR_from_json.py msgid "" -"A thin membrane that closes over the eyes while underwater, negating any " -"vision penalties." +"A magical cloak that feels soft to the touch. It can be worn to morph your " +"body to a form well-suited to escaping difficult situations. However, it " +"places a great strain on your body." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Enhanced Memory Banks CBM" -msgid_plural "Enhanced Memory Banks CBMs" +#: lang/json/ARMOR_from_json.py +msgid "enchanted parabolan wool blouse" +msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32446,17 +31158,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Enhanced Memory Banks CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for enchanted parabolan wool blouse +#: lang/json/ARMOR_from_json.py msgid "" -"A set of highly-advanced quantum storage drives used to enhance memory. " -"While active, they increase the rate that the user learns skills, and give " -"them near-perfect memory of skills and terrain." +"A loose iridescent blouse in a style most often associated with pirates and " +"renfaires. It shimmers as you look at it. Made of parabolan wool, it " +"sometimes dimly shows reflections of things here and not. This particular " +"one has piratical flairs and glitters with enchantment." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Metabolic Interchange CBM" -msgid_plural "Metabolic Interchange CBMs" +#: lang/json/ARMOR_from_json.py +msgid "enchanted parabolan wool breeches" +msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32464,16 +31177,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Metabolic Interchange CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for enchanted parabolan wool breeches +#: lang/json/ARMOR_from_json.py msgid "" -"This module interconnects the user's digestive system and power supply, " -"letting them replenish bionic energy by burning calories." +"A well-made pair of old-fashioned pants, made of iridescent material. " +"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " +"parabolan wool, it sometimes dimly shows reflections of things here and not." +" This particular one has piratical flairs and gliters with enchantment." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Weather Reader CBM" -msgid_plural "Weather Reader CBMs" +#: lang/json/ARMOR_from_json.py +msgid "parabolan wool blouse" +msgid_plural "parabolan wool blouses" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32481,17 +31196,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Weather Reader CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for parabolan wool blouse +#: lang/json/ARMOR_from_json.py msgid "" -"A multitude of scientific instruments and sensors collect environmental " -"data. The data is compiled and presented as a simple readout of the current" -" weather. It also passively tells the user their external temperature." +"A loose iridescent blouse in a style most often associated with pirates and " +"renfaires. It shimmers as you look at it. Made of parabolan wool, it " +"sometimes dimly shows reflections of things here and not." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Repair Nanobots CBM" -msgid_plural "Repair Nanobots CBMs" +#: lang/json/ARMOR_from_json.py +msgid "parabolan wool breeches" +msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32499,16 +31214,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Repair Nanobots CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for parabolan wool breeches +#: lang/json/ARMOR_from_json.py msgid "" -"A fleet of tiny dormant robots. While activated they will flit about the " -"user's body, repairing damage and stopping bleeding at the cost of power." +"A well-made pair of old-fashioned pants, made of iridescent material. " +"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " +"parabolan wool, it sometimes dimly shows reflections of things here and not." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Artificial Night Generator CBM" -msgid_plural "Artificial Night Generator CBMs" +#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32516,16 +31232,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Artificial Night Generator CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"When active, this bionic eliminates all light within a 15 tile radius " -"through destructive interference." +#. ~ Description for pair of magical armored stone gauntlets +#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py +msgid "A magical flexible stonelike substance for protection and attack." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Implanted Night Vision CBM" -msgid_plural "Implanted Night Vision CBMs" +#: lang/json/ARMOR_from_json.py +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32533,16 +31247,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Implanted Night Vision CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"This bionic module modifies the user's eyes to amplify existing light, " -"allowing them to see in the dark." +#. ~ Description for magic lamp +#: lang/json/ARMOR_from_json.py +msgid "A magical light source that will light up a small area." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Offensive Defense System CBM" -msgid_plural "Offensive Defense System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32550,17 +31262,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Offensive Defense System CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A thin forcefield gets projected around the user's body, continually " -"draining power. This field does not deflect attacks, but rather delivers a " -"strong shock, damaging unarmed attackers and those with a conductive weapon." +#. ~ Description for magic light +#: lang/json/ARMOR_from_json.py +msgid "A small magical light that you can read by." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Sensory Dulling CBM" -msgid_plural "Sensory Dulling CBMs" +#: lang/json/ARMOR_from_json.py +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32568,17 +31277,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Sensory Dulling CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"This module lets the user's nervous system inhibit pain signals, allowing " -"them to dull their senses at will. However, the use of this system may " -"cause delayed reaction times and drowsiness." +#. ~ Description for large shield of magical ice +#: lang/json/ARMOR_from_json.py +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Power Armor Interface CBM" -msgid_plural "Power Armor Interface CBMs" +#: lang/json/ARMOR_from_json.py +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32586,17 +31292,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Power Armor Interface CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for slick icy coatings +#: lang/json/ARMOR_from_json.py msgid "" -"Interfaces the user's bionic power system with the internal charging port on" -" suits of power armor, allowing them to draw from the user's bionic power " -"banks." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Power Armor Mk. II Interface CBM" -msgid_plural "Power Armor Mk. II Interface CBMs" +#: lang/json/ARMOR_from_json.py +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32604,18 +31309,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Power Armor Mk. II Interface CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for flesh pouch +#: lang/json/ARMOR_from_json.py msgid "" -"Interfaces the user's bionic power system with the internal charging port on" -" suits of power armor, allowing them to draw from the user's bionic power " -"banks. Twice as efficient as the Mk. I model. The Mk. II was designed by " -"DoubleTech Inc., to meet the popularity of the Mk. II power armor series." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Power Storage CBM" -msgid_plural "Power Storage CBMs" +#: lang/json/ARMOR_from_json.py +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32623,17 +31327,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Power Storage CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for obfuscating aura +#: lang/json/ARMOR_from_json.py msgid "" -"A Compact Bionics Module that upgrades the user's power capacity by 100 " -"units. Having at least one of these is a prerequisite to using powered " -"bionics. The user will also need a power supply, found in various CBMs." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Power Storage CBM Mk. II" -msgid_plural "Power Storage CBM Mk. II" +#: lang/json/ARMOR_from_json.py +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32641,17 +31344,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A Compact Bionics Module developed at DoubleTech Industries as a replacement" -" for the highly successful Power Storage CBM. Increases the user's power " -"capacity by 250 units." +#. ~ Description for acid resistance aura +#. ~ Description for greater acid resistance aura +#: lang/json/ARMOR_from_json.py +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Probability Travel CBM" -msgid_plural "Probability Travel CBMs" +#: lang/json/ARMOR_from_json.py +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32659,17 +31360,24 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Probability Travel CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Increases the body's wavelength, allowing the user to quantum tunnel through" -" walls, reappearing on the other side. Power drain in standby is minimal, " -"but each tile tunneled through costs 250 bionic power." +#: lang/json/ARMOR_from_json.py +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for frost armor +#: lang/json/ARMOR_from_json.py +msgid "A thin layer of magical ice, covering the entire body." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Air Filtration System CBM" -msgid_plural "Air Filtration System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32677,17 +31385,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Air Filtration System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for stoneskin coating +#: lang/json/ARMOR_from_json.py msgid "" -"An advanced filtration system that is implanted in the trachea. If toxins, " -"or airborne diseases find their way into the windpipe, the filter will " -"attempt to remove them." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Radiation Scrubber System CBM" -msgid_plural "Radiation Scrubber System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32695,17 +31402,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Radiation Scrubber System CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A system of advanced piezomechanical blood filters that are implanted " -"throughout your body, allowing the user to purge themself of absorbed " -"radiation at the cost of some bionic power." +#. ~ Description for overcharge burn +#: lang/json/ARMOR_from_json.py +msgid "Ouch, this really smarts! It'll go away soon, maybe?" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Railgun CBM" -msgid_plural "Railgun CBMs" +#: lang/json/ARMOR_from_json.py +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32713,17 +31417,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Railgun CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for aura of protection +#: lang/json/ARMOR_from_json.py msgid "" -"EM field generators in the user's arms increase the range and damage of " -"thrown magnetic objects at a cost of 1 bionic power per throw. They will " -"create a trail of electricity that can cause additional damage." +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Fingertip Razors CBM" -msgid_plural "Fingertip Razors CBMs" +#: lang/json/ARMOR_from_json.py +msgid "aura of repelling arc" +msgid_plural "auras of repelling arc" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32731,17 +31434,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Fingertip Razors CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for aura of repelling arc +#: lang/json/ARMOR_from_json.py msgid "" -"A set of ten double-edged, four centimeter long razor-sharp claws that are " -"implanted underneath the fingernails. These will deal a small amount of " -"unarmed slashing damage whenever the user's fingertips are uncovered." +"An invisible aura that strikes melee attackers with arcs of electricity." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Gasoline Fuel Cell CBM" -msgid_plural "Gasoline Fuel Cell CBMs" +#: lang/json/ARMOR_from_json.py +msgid "feral aura" +msgid_plural "feral auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32749,17 +31450,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Gasoline Fuel Cell CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for feral aura +#: lang/json/ARMOR_from_json.py msgid "" -"A small gasoline fuel cell able to convert gasoline to bionic power. It's " -"connected to a diffuse network of bio-plastic bladders able to hold up to " -"500 ml of gasoline." +"The manifestation of your rage. It won't disappear until you calm down." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Recycler Unit CBM" -msgid_plural "Recycler Unit CBMs" +#: lang/json/ARMOR_from_json.py +msgid "acid aura" +msgid_plural "acid auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32767,17 +31466,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Recycler Unit CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for acid aura +#: lang/json/ARMOR_from_json.py msgid "" -"A series of filters and processors that is implanted in the user's digestive" -" system, allowing them to reclaim waste liquid and, to a lesser degree, " -"nutrients. The net effect is a greatly reduced need to eat and drink." +"An aura of thin acid, swirling around your body ready to corrode when struck" +" or while striking." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Remote Controller CBM" -msgid_plural "Remote Controller CBMs" +#: lang/json/ARMOR_from_json.py +msgid "werewolf aura" +msgid_plural "werewolf auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32785,16 +31483,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Remote Controller CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A small module that connects to the user's brain and allows them to " -"interface with nearby devices with wireless capabilities." +#. ~ Description for werewolf aura +#: lang/json/ARMOR_from_json.py +msgid "You have become the werewolf. Boys becoming men, men becoming wolves." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Sonic Resonator CBM" -msgid_plural "Sonic Resonator CBMs" +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Black Dragon Shell" +msgid_plural "Black Dragon Shells" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32802,17 +31498,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Sonic Resonator CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Black Dragon Shell +#: lang/json/ARMOR_from_json.py msgid "" -"This bionic module allows the user's entire body to resonate at very high " -"power, creating a short-range shockwave. While it will not do much damage " -"to creatures, solid objects such as walls and doors will be damaged." +"An aura of black and green draconic energy, swirling around your body " +"protecting you and punishing those who strike you." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Olfactory Mask CBM" -msgid_plural "Olfactory Mask CBMs" +#: lang/json/ARMOR_from_json.py +msgid "spiritual armor" +msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32820,16 +31515,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Olfactory Mask CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"While this system is powered, the user's body will produce very little odor," -" making it nearly impossible for creatures to track them by scent." +#. ~ Description for spiritual armor +#: lang/json/ARMOR_from_json.py +msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Electroshock Unit CBM" -msgid_plural "Electroshock Unit CBMs" +#: lang/json/ARMOR_from_json.py +msgid "auroral shell" +msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32837,17 +31530,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Electroshock Unit CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"While fighting unarmed, or with a weapon that conducts electricity, there is" -" a chance that a successful hit will shock the user's opponent, inflicting " -"extra damage and disabling them temporarily at the cost of some energy." +#. ~ Description for auroral shell +#: lang/json/ARMOR_from_json.py +msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Shockwave Generator CBM" -msgid_plural "Shockwave Generator CBMs" +#: lang/json/BATTERY_from_json.py +msgid "test battery" +msgid_plural "test batteries" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32855,18 +31545,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Shockwave Generator CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for test battery +#: lang/json/BATTERY_from_json.py msgid "" -"This bionic module generates a powerful shockwave, knocking back all nearby " -"creatures. Targets are stunned briefly, take damage and additional stun " -"upon impact with impassable terrain, and knock back any creatures they " -"collide with." +"This is a testing item for the BATTERY item type. If you found one in game," +" it's a bug." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Synaptic Accelerator CBM" -msgid_plural "Synaptic Accelerator CBMs" +msgid "abstract bionic module" +msgid_plural "abstract bionic modules" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32874,17 +31562,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Synaptic Accelerator CBM #: lang/json/BIONIC_ITEM_from_json.py -#, no-python-format -msgid "" -"Bionic stimulators that enhance the nervous system, granting a 10% boost to " -"your speed." -msgstr "" +msgid "abstract bionic module (npc usable)" +msgid_plural "abstract bionic modules (npc usable)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Muscle Augmentation CBM" -msgid_plural "Muscle Augmentation CBMs" +msgid "abstract faulty bionic module" +msgid_plural "abstract faulty bionic modules" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32892,16 +31582,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Muscle Augmentation CBM +#. ~ Description for abstract faulty bionic module #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Myomer fibers that enhance the muscular system, granting a +2 bonus to " -"strength." +msgid "This CBM is broken beyond repair, you can't do anything with it." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Autonomous Surgical Scalpels CBM" -msgid_plural "Autonomous Surgical Scalpels CBMs" +msgid "Adrenaline Pump CBM" +msgid_plural "Adrenaline Pump CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32909,17 +31597,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Autonomous Surgical Scalpels CBM +#. ~ Description for Adrenaline Pump CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A system of surgical grade scalpels that is implanted in the user's fingers." -" They allow for automated precise cuts and can be used as a high-quality " -"butchering tool." +"A stimulator system that is implanted alongside the adrenal glands, allowing" +" the user to trigger their body's adrenaline response at the cost of some " +"bionic power." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Anti-Glare Compensators CBM" -msgid_plural "Anti-Glare Compensators CBMs" +msgid "Active Defense System CBM" +msgid_plural "Active Defense System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32927,17 +31615,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Anti-Glare Compensators CBM +#. ~ Description for Active Defense System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of quick-reacting transition lenses that are installed over the user's" -" eyes. They negate glare penalties, partially protect from bright flashes, " -"and protect the eyes when welding." +"This bionic projects a thin forcefield around the user's body. Anything " +"attempting to penetrate this field has a chance of being deflected at the " +"cost of energy, reducing their ability to deal damage. Bullets will be " +"deflected more than swords and those in turn more than massive objects." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Targeting System CBM" -msgid_plural "Targeting System CBMs" +msgid "Alarm System CBM" +msgid_plural "Alarm System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32945,17 +31634,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Targeting System CBM +#. ~ Description for Alarm System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This bionic module contains range finders and synchronizes the movement of " -"the user's eyes with their arms, to a degree. Shots they fire will be much " -"more accurate, particularly at long ranges." +"A motion-detecting alarm system will notice almost all movement within a " +"fifteen-foot radius, and will silently alert the user. This is very useful " +"during sleep, or if the user suspects a cloaked pursuer." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Teleportation Unit CBM" -msgid_plural "Teleportation Unit CBMs" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32963,18 +31652,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Teleportation Unit CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This highly experimental unit folds space over short distances, instantly " -"transporting the user's body up to 25 feet in a random duration at the cost " -"of much power. Note that prolonged or frequent use may have dangerous side " -"effects." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Time Dilation CBM" -msgid_plural "Time Dilation CBMs" +msgid "Protective Lenses CBM" +msgid_plural "Protective Lenses CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -32982,17 +31671,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Time Dilation CBM +#. ~ Description for Protective Lenses CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"At the cost of all stored bionic power, the user may increase their body " -"speed and reactions dramatically, essentially freezing time. Violent or " -"rapid movements may cause damage due to friction." +"A bionic package that seals the user's eye sockets with highly protective " +"mirrored lenses and re-routes their tear ducts to their mouth. When the " +"user cries, they must spit out or swallow their tears." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Integrated Toolset CBM" -msgid_plural "Integrated Toolset CBMs" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33000,17 +31689,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Integrated Toolset CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A surgically implanted set of tools - screwdriver, hammer, wrench, hacksaw, " -"drill, welder and heating elements. These can be used in place of many " -"tools when crafting." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Joint Torsion Ratchet CBM" -msgid_plural "Joint Torsion Ratchet CBMs" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33018,17 +31706,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Joint Torsion Ratchet CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Torsion ratchets that replace the user's joints to slowly generate power " -"when they move. These can be toggled to generate more power, but movement " -"will require more effort." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Joint Servo CBM" -msgid_plural "Joint Servo CBMs" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33036,18 +31716,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Joint Servo CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of servomotors that get installed on leg joints to provide power-" -"assisted movement. They are optimized for running, but walking also " -"requires less effort while this bionic is active. However, when it's " -"offline it will hamper the user's movement." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Uncanny Dodge CBM" -msgid_plural "Uncanny Dodge CBMs" +msgid "Battery System CBM" +msgid_plural "Battery System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33055,16 +31733,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Uncanny Dodge CBM +#. ~ Description for Battery System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Bionic processors that augment the user's nervous system, allowing them to " -"dodge attacks beyond normal human capability, including bullets." +"A battery draining attachment to make use of the energy contained in normal," +" everyday batteries." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Unified Power System CBM" -msgid_plural "Unified Power System CBMs" +msgid "Monomolecular Blade CBM" +msgid_plural "Monomolecular Blade CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33072,17 +31750,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Unified Power System CBM +#. ~ Description for Monomolecular Blade CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A Unified Power System that is wired into the user's bionic power banks. " -"Objects that run on a UPS can now directly draw power from the bionic power " -"supply." +"A deadly foot-long blade made of advanced material that is installed inside " +"the forearm, capable of being extended through the back of the user's wrist " +"at the cost of a small amount of power. Though exceptionally sharp, it will" +" prevent the user from holding anything else while extended." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Internal Chronometer CBM" -msgid_plural "Internal Chronometer CBMs" +msgid "Shotgun Arm CBM" +msgid_plural "Shotgun Arm CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33090,16 +31769,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Internal Chronometer CBM +#. ~ Description for Shotgun Arm CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This bionic module contains an atomic clock, complete with silent alarm " -"clock function." +"A concealed, single shot 12 gauge shotgun that is implanted inside the left " +"forearm. Perfect in a pinch." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Water Extraction Unit CBM" -msgid_plural "Water Extraction Unit CBMs" +msgid "Blood Analysis CBM" +msgid_plural "Blood Analysis CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33107,17 +31786,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Water Extraction Unit CBM +#. ~ Description for Blood Analysis CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This module contains nanotubes that are embedded in the palm of the hand to " -"pump any available fluid out of a dead body, cleanse it of impurities and " -"convert it into potable water. Water container not included." +"Small sensors that are implanted in the user's heart, allowing them to " +"analyze their blood. This will detect many illnesses, drugs, and other " +"conditions." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Intravenous Needletip CBM" -msgid_plural "Intravenous Needletip CBMs" +msgid "Blood Filter CBM" +msgid_plural "Blood Filter CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33125,17 +31804,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Intravenous Needletip CBM +#. ~ Description for Blood Filter CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A small tube with a retractable needle that terminates in a net of tiny " -"hoses instead of a plunger. Installed, it allows the user to draw " -"substances directly into their bloodstream akin to a regular syringe." +"A filtration system that is installed in the heart and can actively filter " +"out chemical impurities, primarily drugs, with limited impact on viruses. " +"Note that it is not a targeted filter; ALL drugs in the system will be " +"affected." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Titanium Skeletal Bracing CBM" -msgid_plural "Titanium Skeletal Bracing CBMs" +msgid "Cable Charger System CBM" +msgid_plural "Cable Charger System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33143,17 +31823,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Titanium Skeletal Bracing CBM +#. ~ Description for Cable Charger System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of hinges, springs, and other synthetic augments for the skeletal " -"structure. These artificial enhancers strengthen the knees and elbows, " -"allowing the user to carry more weight." +"A complex port that is mounted above the hip. While active, it will " +"recharge bionic power when connected to a battery via jumper cable." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Taste Modifier CBM" -msgid_plural "Taste Modifier CBMs" +msgid "Subdermal Carbon Filament CBM" +msgid_plural "Subdermal Carbon Filament CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33161,17 +31840,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Taste Modifier CBM +#. ~ Description for Subdermal Carbon Filament CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of highly sensitive sensors implanted in the user's mouth, combined " -"with a sophisticated analyzer. While active, it will block all unpleasant " -"taste and texture at the cost of bionic energy." +"A thin armor made of carbon nanotubes, implanted just beneath the skin. " +"This reduces bashing damage by 2 and cutting damage by 4." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Soporific Induction CBM" -msgid_plural "Soporific Induction CBMs" +msgid "Chain Lightning CBM" +msgid_plural "Chain Lightning CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33179,16 +31857,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Soporific Induction CBM +#. ~ Description for Chain Lightning CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A microscopic electrode designed to gently stimulate a particular cluster of" -" neurons in the hypothalamus, helping the user to fall asleep." +"A chain lightning generator that emits a blast of lightning at a target, " +"leaving a trail of lightning in its wake and jumping to additional targets " +"within 4 tiles of the previous target." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Squeaky Ankles" -msgid_plural "Squeaky Ankles" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Bionic Claws CBM" +msgid_plural "Bionic Claws CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33196,14 +31875,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Bionic Claws CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "A pair of defective bionics that make squeaking noises." +msgid "" +"Vicious, retractable claws that are implanted inside the user's fingers. " +"These do considerable cutting damage, but prevent the user from holding " +"anything else while extended." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Pieces Of Junk" -msgid_plural "Pieces of Junk" +msgid "Internal Climate Control CBM" +msgid_plural "Internal Climate Control CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33211,16 +31893,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Pieces Of Junk +#. ~ Description for Internal Climate Control CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A jumble of broken metal pieces that were removed during reconstructive " -"surgery." +"A network of thermal piping which eases the effects of high and low ambient " +"temperatures once activated." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Acidic Leaking CBM" -msgid_plural "Acidic Leaking CBMs" +msgid "Cloaking System CBM" +msgid_plural "Cloaking System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33228,16 +31910,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Acidic Leaking CBM +#. ~ Description for Cloaking System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This CBM has been breached in several places and some acid is leaking from " -"it." +"This high-power system uses a set of cameras and LEDs to make the user blend" +" into their surroundings, rendering them fully invisible to eyes and optical" +" sensors. However, this doesn't prevent detection from other means such as " +"infrared, sonar, etc." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Faulty Electric System" -msgid_plural "Faulty Electric Systems" +msgid "Close Quarters Battle CBM" +msgid_plural "Close Quarters Battle CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33245,14 +31929,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Faulty Electric System +#. ~ Description for Close Quarters Battle CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "This CBM is a mess of naked wire and burnt resistors." +msgid "" +"A set of bionic processors and databanks, loaded with martial arts combat " +"programs. Whilst active, the CQB module will improve the user's hand-to-" +"hand combat skills, but prevents them from improving them through combat " +"experience." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Electrical Drain" -msgid_plural "Electrical Drains" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Wired Reflexes CBM" +msgid_plural "Wired Reflexes CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33260,16 +31948,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Electrical Drain +#. ~ Description for Wired Reflexes CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This CBM was wired incorrectly and would drain power from any system " -"connected to it." +"Bionic nerve stimulators that greatly enhance reaction times, granting a +2 " +"bonus to dexterity." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Itchy Metal Thing" -msgid_plural "Itchy Metal Things" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Expanded Digestive System CBM" +msgid_plural "Expanded Digestive System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33277,16 +31965,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Itchy Metal Thing +#. ~ Description for Expanded Digestive System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"You can't recognize what this is supposed to be, but it's a very awkward " -"thing to have in one's body." +"This module contains three synthetic stomachs and industrial-grade " +"intestines. Not only will these extract much more nutrition from food, but " +"also increase the user's resistance to foodborne illness, and occasionally " +"allow the digestion of rotten food." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Glowy Thing" -msgid_plural "Glowy Things" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Enhanced Hearing CBM" +msgid_plural "Enhanced Hearing CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33294,14 +31984,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Glowy Thing +#. ~ Description for Enhanced Hearing CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "It's a… thing? And it glows, at least it did when it was plugged in." +msgid "" +"While this bionic is active, the user's hearing will be drastically " +"improved, allowing them to hear ten times better than the average person. " +"Additionally, high-intensity sounds will be automatically dampened before " +"they can damage their hearing." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Leaky Bionic" -msgid_plural "Leaky Bionics" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Directional EMP CBM" +msgid_plural "Directional EMP CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33309,16 +32003,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Leaky Bionic +#. ~ Description for Directional EMP CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A mess of pierced pipes and broken seals, something unpleasant is leaking " -"from it." +"Small parabolic EMP field generators that are mounted in the palm of the " +"user's right hand. These can be used to instantly fire a wide, but short-" +"ranged blast which will disable electronics and robots." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Noisemaker" -msgid_plural "Noisemakers" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "EMP Projector CBM" +msgid_plural "EMP Projector CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33326,16 +32021,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Noisemaker +#. ~ Description for EMP Projector CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A malfunctioning bionic. When powered, it occasionally emits a loud burst " -"of noise." +"A ranged EMP generator system that is implanted in the user's right arm and " +"hand. The system fires precise, single-target pulses that require time to " +"aim. Extremely effective against electronic targets but mostly useless " +"otherwise." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Bionic Nostril" -msgid_plural "Bionic Nostrils" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Ethanol Burner CBM" +msgid_plural "Ethanol Burner CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33343,15 +32040,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Bionic Nostril +#. ~ Description for Ethanol Burner CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This thing was up someone's nose, they're probably glad to be rid of it." +"A reactor that burns alcohol as fuel in an extremely efficient reaction. It" +" can store up to 500ml and accepts ethanol, methanol and denatured alcohol " +"as fuel." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Bionic Visual Impairment" -msgid_plural "Bionic Visual Impairments" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Aero-Evaporator CBM" +msgid_plural "Aero-Evaporator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33359,14 +32058,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Bionic Visual Impairment -#: lang/json/BIONIC_ITEM_from_json.py -msgid "A defective bionic that impairs vision." +#. ~ Description for Aero-Evaporator CBM +#. ~ Description for Aero-Evaporator +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "" +"This unit draws moisture from the surrounding air, which slowly trickles " +"directly into your blood stream. It may fail in very dry environments." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Power Overload" -msgid_plural "Power Overloads" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Diamond Cornea CBM" +msgid_plural "Diamond Cornea CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33374,15 +32076,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Power Overload +#. ~ Description for Diamond Cornea CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A bunch of defective power circuits that are prone to short-circuiting." +"A set of diamond corneas which greatly enhance the user's vision, granting a" +" +2 bonus to perception." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Bionic Short Circuit" -msgid_plural "Bionic Short Circuits" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Telescopic Eyes CBM" +msgid_plural "Telescopic Eyes CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33390,14 +32093,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Bionic Short Circuit +#. ~ Description for Telescopic Eyes CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "This bionic is poorly wired and occasionally short-circuits." +msgid "" +"An array of high-powered, auto-focusing lenses that replaces much of the " +"material in the inner eye. This fixes any vision problems and allows for an" +" increased vision range akin to binoculars." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Endocrine Enervator" -msgid_plural "Endocrine Enervators" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Facial Distortion CBM" +msgid_plural "Facial Distortion CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33405,16 +32111,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Endocrine Enervator +#. ~ Description for Facial Distortion CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This malfunctioning bionic causes fatigue by altering the unfortunate user's" -" brain chemistry." +"Through controlled application of electrochemical impulses, this bionic " +"module lets the user alter their facial structure so as to subtly affect the" +" reactions of others. This grants a bonus to all social interactions." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Synaptic Regeneration System CBM" -msgid_plural "Synaptic Regeneration System CBMs" +msgid "Dielectric Capacitance System CBM" +msgid_plural "Dielectric Capacitance System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33422,18 +32129,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Synaptic Regeneration System CBM +#. ~ Description for Dielectric Capacitance System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An electromagnetic stimulator has been surgically implanted on the back of " -"your head and along your spine, continually draining power. As long as it's" -" active, you won't become sleep deprived; and if you're sleep deprived " -"already, it will boost the rate of recovery." +"A network of miniature piezoelectric capacitors, implanted throughout the " +"body to protect from external electrical discharge." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Motor Control Overstimulator" -msgid_plural "Motor Control Overstimulators" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Fingerhack CBM" +msgid_plural "Fingerhack CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33441,16 +32146,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Motor Control Overstimulator +#. ~ Description for Fingerhack CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"The result of poor configuration, this bionic module frequently causes " -"debilitating muscle spasms." +"A miniature electrohack, surgically embedded in a finger of the right hand." +" This is an all-purpose hacking unit used to override control panels and " +"the like, but not computers. Computer proficiency is important, and a " +"failed use may cause damage." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Wire-Induced Stiffness" -msgid_plural "Wire-Induced Stiffnesses" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Flashbang Generator CBM" +msgid_plural "Flashbang Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33458,14 +32165,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Wire-Induced Stiffness +#. ~ Description for Flashbang Generator CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "A length of poorly installed wiring that would cause stiffness." +msgid "" +"A combination of LEDs and speakers that create a flash and sound comparable " +"to a flashbang grenade, deafening and blinding nearby enemies." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Self-Locking Thumbs" -msgid_plural "Self-Locking Thumbs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Cranial Flashlight CBM" +msgid_plural "Cranial Flashlight CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33473,14 +32182,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Cranial Flashlight CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "A pair of faulty, self-locking thumb bionics." +msgid "A small, but powerful LED flashlight that is mounted between the eyes." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Visual Disruptor" -msgid_plural "Visual Disruptors" +msgid "LED Tattoo" +msgid_plural "LED Tattoos" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33488,16 +32197,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Visual Disruptor +#. ~ Description for LED Tattoo #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A pair of defective ocular bionics that cause visual distortion and " -"pixelation." +"An LED display implanted beneath the epidermis that can display patterns or " +"pictures through the skin. When active it glows dimly, providing a very " +"small amount of light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Voice Remodulator" -msgid_plural "Voice Remodulators" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Integrated Dosimeter CBM" +msgid_plural "Integrated Dosimeter CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33505,16 +32215,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Voice Remodulator +#. ~ Description for Integrated Dosimeter CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Part of the autodoc's 'Cyborg Identity Package', this bionic gives the user " -"a creepy robot voice." +"Small radiation sensors that are implanted throughout the body, allowing the" +" user to analyze their level of absorbed radiation. They will also alert " +"the user whenever exposed to environmental radiation." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Solar Panels CBM" -msgid_plural "Solar Panels CBMs" +msgid "Respirator CBM" +msgid_plural "Respirator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33522,17 +32233,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Solar Panels CBM +#. ~ Description for Respirator CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Installed on your back is a set of retractable solar panels. When in direct" -" sunlight, they will automatically deploy and slowly recharge your power " -"level." +"A complex respiration augmentation system that increases the user's maximal " +"oxygen uptake and allows for underwater breathing akin to gills. Will " +"automatically activate if the user is drowning." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Deployable Grenade Launcher CBM" -msgid_plural "Deployable Grenade Launcher CBMs" +msgid "Terranian Sonar CBM" +msgid_plural "Terranian Sonar CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33540,17 +32251,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Deployable Grenade Launcher CBM +#. ~ Description for Terranian Sonar CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A small, folding tube that attaches to your right arm. Once implanted, it " -"can serve as a portable, integrated tool for firing 40mm grenades and " -"canisters." +"Precision sonar equipment, implanted in the feet to allow the detection of " +"below-ground movement, buried traps, and unstable terrain." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Linguistic Coprocessor CBM" -msgid_plural "Linguistic Coprocessor CBMs" +msgid "Heat Drain CBM" +msgid_plural "Heat Drain CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33558,17 +32268,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Linguistic Coprocessor CBM +#. ~ Description for Heat Drain CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A microcomputer installed into the left hemisphere of your brain to increase" -" the speed that it processes language. When installed, it provides a " -"passive boost to reading speed." +"While fighting unarmed against a warm-blooded opponent, there is a chance " +"that a successful hit will drain body heat, inflicting a small amount of " +"extra damage, and recharging the user's bionic power reserves slightly." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Dopamine Stimulators CBM" -msgid_plural "Dopamine Stimulators CBMs" +msgid "Thermal Dissipation CBM" +msgid_plural "Thermal Dissipation CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33576,18 +32286,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Dopamine Stimulators CBM +#. ~ Description for Thermal Dissipation CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of tiny bionic nerve stimulators that install into the reward center " -"of your brain. When run with bionic power, it periodically releases a hit " -"of dopamine and other reward chemicals, inducing a state of euphoria and " -"suppressing fear." +"Powerful heatsinks and supermaterials are woven into the user's flesh. " +"While powered, this system will prevent external heat damage up to 2000 " +"degrees Fahrenheit. Note that this does not affect the internal body " +"temperature." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Counteractive Reflexes CBM" -msgid_plural "Counteractive Reflexes CBMs" +msgid "Hydraulic Muscles CBM" +msgid_plural "Hydraulic Muscles CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33595,18 +32305,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Counteractive Reflexes CBM -#. ~ Description for Counteractive Reflexes -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Hydraulic Muscles CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Cybernetic stimulators installed across your nervous system boost your " -"reflexes whenever you are hit in melee, granting you an extra action. This " -"bionic must be active to function." +"A hydraulic muscle support system that when active, increases strength by " +"20." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Melee Optimization Unit CBM" -msgid_plural "Melee Optimization Unit CBMs" +msgid "Infrared Vision CBM" +msgid_plural "Infrared Vision CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33614,17 +32322,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Melee Optimization Unit CBM +#. ~ Description for Infrared Vision CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An implanted AI executes the optimal followup for each of your melee " -"strikes, allowing you to chain them with unnatural speed and grace. This " -"bionic must be active to function." +"A bionic module that extends the range of vision into the infrared, allowing" +" the user to see warm-blooded creatures in the dark and through smoke." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Neurosoft: Aeronautics CBM" -msgid_plural "Neurosoft: Aeronautics CBMs" +msgid "Cerebral Booster CBM" +msgid_plural "Cerebral Booster CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33632,17 +32339,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Neurosoft: Aeronautics CBM -#. ~ Description for Neurosoft: Aeronautics -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Cerebral Booster CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A brain implant that grants instinctual knowledge about the operation of " -"flying machines." +"Bionic coprocessors that are implanted in the brain, granting a +2 bonus to " +"intelligence." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Cranium Bomb" -msgid_plural "Cranium Bombs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Finger-Mounted Laser CBM" +msgid_plural "Finger-Mounted Laser CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33650,16 +32356,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Cranium Bomb +#. ~ Description for Finger-Mounted Laser CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A bomb installed where your spine meets your brain stem. It's on a timer " -"from installation and you don't have the codes to reset the timer." +"A small, high-powered laser that is embedded in the fingertip. This long " +"range weapon is not incredibly damaging, but is very accurate, and has the " +"potential to start fires." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Skullgun CBM" -msgid_plural "Skullgun CBMs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Leukocyte Breeder System CBM" +msgid_plural "Leukocyte Breeder System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33667,16 +32374,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Skullgun CBM -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Leukocyte Breeder System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Concealed in your head is a single shot .40 pistol. Activate the bionic to " -"fire and reload the skullgun." +"Bionic stimulators which augment the user's haematopoiesis system, allowing " +"them to accelerate white blood cell production using bionic power. It is " +"designed for continuous use and may cause unpleasant side effects when " +"turned off." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Implanted translocator CBM" -msgid_plural "Implanted translocator CBMs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Finger Lighter CBM" +msgid_plural "Finger Lighter CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33684,17 +32393,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Implanted translocator CBM +#. ~ Description for Finger Lighter CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An experimental teleportation system carefully weaved into bone marrow and " -"coiled alongside the skeletal system. It allows its user to safely and " -"readily teleport towards a previously activated telepad." +"Powerful fire starters which extend from the tip of both hands' index " +"fingers." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Emergency Insulation" -msgid_plural "Emergency Insulations" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Fingerpick CBM" +msgid_plural "Fingerpick CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33702,16 +32410,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Emergency Insulation +#. ~ Description for Fingerpick CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A system designed to prevent instantaneous frostbite in workers exposed to " -"things like hard vacuum and liquid nitrogen." +"An electronic lockpick that is embedded in a fingertip. This automatic " +"system will quickly unlock all but the most advanced key locks without any " +"skill required on the part of the user." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Weak Energy Field CBM" -msgid_plural "Weak Energy Field CBMs" +msgid "Electromagnetic Unit CBM" +msgid_plural "Electromagnetic Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33719,19 +32428,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Weak Energy Field CBM +#. ~ Description for Electromagnetic Unit CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Imagine a computer inside your body playing pong against the universe. The " -"paddles are made of energy fields and how it causes this to happen are trade" -" secrets. -From the owners manual of HawkingCorps EnergyField Mark I. This" -" field is rated to reduce bashing and cut damage as viewed in your HUD by 5 " -"points." +"A powerful electromagnet that is implanted into the user's right hand, " +"allowing them to indiscriminately pull all nearby magnetic objects towards " +"them. Unlucky bystanders might be injured or killed by flying objects." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Combat Rated Energy Field CBM" -msgid_plural "Combat Rated Energy Field CBMs" +msgid "Nictating Membrane CBM" +msgid_plural "Nictating Membrane CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33739,18 +32446,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Combat Rated Energy Field CBM +#. ~ Description for Nictating Membrane CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"The HawkingCorps EnergyField Mark 2 was designed for police actions during " -"food riots and other civilian uprisings. It has proven cabaple of " -"protecting against most improvised weapons. This field is rated to reduce " -"bashing and cut damage as viewed in your HUD by 15 points." +"A thin membrane that closes over the eyes while underwater, negating any " +"vision penalties." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Debt Collection Agent Personal EnergyField CBM" -msgid_plural "Debt Collection Agent Personal EnergyField CBMs" +msgid "Enhanced Memory Banks CBM" +msgid_plural "Enhanced Memory Banks CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33758,19 +32463,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Debt Collection Agent Personal EnergyField CBM +#. ~ Description for Enhanced Memory Banks CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This class of personal energy field often sees action on both sides of the " -"vicious ship-to-ship boarding fights that are common with both repossession " -"and piracy. It remains practically impenetrable to melee weapons that lack " -"sharp piercing points. This field is rated to reduce bashing and cut damage" -" as viewed in your HUD by 25 points." +"A set of highly-advanced quantum storage drives used to enhance memory. " +"While active, they increase the rate that the user learns skills, and give " +"them near-perfect memory of skills and terrain." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Kinetic Attenuation Field CBM" -msgid_plural "Kinetic Attenuation Field CBMs" +msgid "Metabolic Interchange CBM" +msgid_plural "Metabolic Interchange CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33778,20 +32481,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Kinetic Attenuation Field CBM +#. ~ Description for Metabolic Interchange CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A personal kinetic attenuation field that slows incoming projectiles by " -"converting their kinetic energy into bursts of visible light. Although this" -" version is not powerful enough to defeat most pistol or rifle cartridges by" -" itself, it greatly increases survival odds when combined with traditional " -"ballistic armor. This field is rated to reduce ballistic and piercing " -"damage as viewed in your HUD by 10 points." +"This module interconnects the user's digestive system and power supply, " +"letting them replenish bionic energy by burning calories." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Pattern-U15 Attenuation Field CBM" -msgid_plural "Pattern-U15 Attenuation Field CBMs" +msgid "Weather Reader CBM" +msgid_plural "Weather Reader CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33799,21 +32498,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Pattern-U15 Attenuation Field CBM +#. ~ Description for Weather Reader CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A military grade kinetic attenuation system developed for use within UICA's " -"special service branches. Although much more effective than anything that " -"could be conceived with current technology, it remains a pale imitation of " -"the Hyperspace Age systems it was reverse engineered from. A side effect " -"modern engineering seems unable to address is the tendency for this unit to " -"release electrical fields when hit. This field is rated to reduce ballistic" -" and piercing damage as viewed in your HUD by 20 points" +"A multitude of scientific instruments and sensors collect environmental " +"data. The data is compiled and presented as a simple readout of the current" +" weather. It also passively tells the user their external temperature." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Kinetic annulment system CBM" -msgid_plural "Kinetic annulment system CBMs" +msgid "Repair Nanobots CBM" +msgid_plural "Repair Nanobots CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33821,18 +32516,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Kinetic annulment system CBM +#. ~ Description for Repair Nanobots CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A kinetic attenuation system salvaged from a pre-discontinuity robotic " -"warframe, crudely adapted for compatibility with biological hosts. Powerful" -" enough to completely stop most rifle cartridges. This field is rated to " -"reduce ballistic and piercing damage as viewed in your HUD by 40 points" +"A fleet of tiny dormant robots. While activated they will flit about the " +"user's body, repairing damage and stopping bleeding at the cost of power." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Precision Solderers CBM" -msgid_plural "Precision Solderers CBMs" +msgid "Artificial Night Generator CBM" +msgid_plural "Artificial Night Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33840,16 +32533,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Precision Solderers CBM +#. ~ Description for Artificial Night Generator CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of tiny electronics tools, including soldering irons and wire cutters." -" They serve no purpose on their own, but are required for crafting bionics." +"When active, this bionic eliminates all light within a 15 tile radius " +"through destructive interference." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Wind Turbine CBM" -msgid_plural "Wind Turbine CBMs" +msgid "Implanted Night Vision CBM" +msgid_plural "Implanted Night Vision CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33857,18 +32550,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Wind Turbine CBM -#. ~ Description for Wind Turbines -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Implanted Night Vision CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Installed on your body is a set of small retractable wind turbines. When " -"activated, they will deploy and slowly harvest wind power to recharge your " -"power level." +"This bionic module modifies the user's eyes to amplify existing light, " +"allowing them to see in the dark." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Ionic Overload Generator CBM" -msgid_plural "Ionic Overload Generator CBMs" +msgid "Offensive Defense System CBM" +msgid_plural "Offensive Defense System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33876,19 +32567,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Ionic Overload Generator CBM -#. ~ Description for Ionic Overload Generator -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Offensive Defense System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A powerful ion energy generator is implanted on your chest. Fires a " -"powerful, ever-expanding energy blast. The resulting blast ignites oxygen " -"creating fires as it moves and an explosion on impact. Close range use is " -"highly discouraged." +"A thin forcefield gets projected around the user's body, continually " +"draining power. This field does not deflect attacks, but rather delivers a " +"strong shock, damaging unarmed attackers and those with a conductive weapon." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Sensory Dulling CBM" +msgid_plural "Sensory Dulling CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33896,17 +32585,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Blood Power Generator CBM +#. ~ Description for Sensory Dulling CBM #: lang/json/BIONIC_ITEM_from_json.py 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." +"This module lets the user's nervous system inhibit pain signals, allowing " +"them to dull their senses at will. However, the use of this system may " +"cause delayed reaction times and drowsiness." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Power Armor Interface CBM" +msgid_plural "Power Armor Interface CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33914,19 +32603,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Crystallized Mana Nose Replacement -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Power Armor Interface CBM +#: lang/json/BIONIC_ITEM_from_json.py 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." +"Interfaces the user's bionic power system with the internal charging port on" +" suits of power armor, allowing them to draw from the user's bionic power " +"banks." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Museum of All Things Awesome and That Go Boom" -msgid_plural "copies of The Museum of All Things Awesome and That Go Boom" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Power Armor Mk. II Interface CBM" +msgid_plural "Power Armor Mk. II Interface CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33934,19 +32621,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Museum of All Things Awesome and That Go Boom -#: lang/json/BOOK_from_json.py +#. ~ Description for Power Armor Mk. II Interface CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"The Museum of All Things Awesome and That Go Boom is an anthology of science" -" fiction featuring blunt force trauma, explosions, adventure, derring-do, " -"tigers, Martians, zombies, fanged monsters, dinosaurs (alien and domestic), " -"ray guns, rocket ships, and anthropomorphized marshmallows. Published by " -"Upper Rubber Boot Books." +"Interfaces the user's bionic power system with the internal charging port on" +" suits of power armor, allowing them to draw from the user's bionic power " +"banks. Twice as efficient as the Mk. I model. The Mk. II was designed by " +"DoubleTech Inc., to meet the popularity of the Mk. II power armor series." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Sunvault: Stories of Solarpunk & Eco-Speculation" -msgid_plural "copies of Sunvault" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Power Storage CBM" +msgid_plural "Power Storage CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33954,20 +32640,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Sunvault: Stories of Solarpunk & Eco-Speculation -#: lang/json/BOOK_from_json.py +#. ~ Description for Power Storage CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Sunvault is the first English-language anthology to broadly collect " -"solarpunk short fiction, artwork, and poetry. A new genre for the 21st " -"Century, solarpunk is a revolution against despair. Focusing on solutions " -"to environmental disasters, solarpunk envisions a future of green, " -"sustainable energy used by societies that value inclusiveness, cooperation, " -"and personal freedom. Published by Upper Rubber Boot Books." +"A Compact Bionics Module that upgrades the user's power capacity by 100 " +"units. Having at least one of these is a prerequisite to using powered " +"bionics. The user will also need a power supply, found in various CBMs." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Sharp & Sugar Tooth" -msgid_plural "copies of Sharp & Sugar Tooth" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Power Storage CBM Mk. II" +msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33975,19 +32658,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Sharp & Sugar Tooth -#: lang/json/BOOK_from_json.py +#. ~ Description for Power Storage CBM Mk. II +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Sharp & Sugar Tooth: Women Up To No Good is a horror anthology of dark " -"fiction and darker appetites, edited by Octavia Cade. Containing 22 stories" -" of “bad” women, and “good” women who just haven’t been caught yet, it " -"features 22 fearless writers who identify as female, non-binary, or a " -"marginalized sex or gender identity. Published by Upper Rubber Boot Books." +"A Compact Bionics Module developed at DoubleTech Industries as a replacement" +" for the highly successful Power Storage CBM. Increases the user's power " +"capacity by 250 units." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Broad Knowledge" -msgid_plural "copies of Broad Knowledge" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Probability Travel CBM" +msgid_plural "Probability Travel CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -33995,18 +32676,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Broad Knowledge -#: lang/json/BOOK_from_json.py +#. ~ Description for Probability Travel CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Broad Knowledge: 35 Women Up To No Good is a feminist anthology of dark " -"fiction and darker knowledge, edited by Joanne Merriam. Containing 35 " -"stories of “bad” women, and “good” women who just haven’t been caught yet. " -"Published by Upper Rubber Boot Books." +"Increases the body's wavelength, allowing the user to quantum tunnel through" +" walls, reappearing on the other side. Power drain in standby is minimal, " +"but each tile tunneled through costs 250 bionic power." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Choose Wisely" -msgid_plural "copies of Choose Wisely" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Air Filtration System CBM" +msgid_plural "Air Filtration System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34014,19 +32694,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Choose Wisely -#: lang/json/BOOK_from_json.py +#. ~ Description for Air Filtration System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Choose Wisely: 35 Women Up To No Good is a feminist anthology of dark " -"fiction, co-edited by H. L. Nelson and Joanne Merriam. Containing 35 " -"stories of “bad” women, and “good” women who just haven’t been caught yet, " -"it features Joyce Carol Oates, Aimee Bender, Diane Cook, and 33 other " -"fearless women writers. Published by Upper Rubber Boot Books." +"An advanced filtration system that is implanted in the trachea. If toxins, " +"or airborne diseases find their way into the windpipe, the filter will " +"attempt to remove them." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Apocalypse Now" -msgid_plural "copies of Apocalypse Now" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Radiation Scrubber System CBM" +msgid_plural "Radiation Scrubber System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34034,23 +32712,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Apocalypse Now -#: lang/json/BOOK_from_json.py +#. ~ Description for Radiation Scrubber System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Every society and every generation has its version of the apocalypse: swine " -"flu, genetic mutation, global warming, nuclear fallout, the second coming, " -"peak oil, mass extinction, giant irradiated ants, zombies… Apocalypse Now: " -"Poems and Prose from the End of Days is the first anthology of its kind to " -"bring together the poetry and prose of some of America’s finest (though not " -"always most well-known) literary voices with an eye for the literary and the" -" popular, for story and lyric, for the past and the future, for the " -"psychological and the physical, for the real and the fantastic. Published " -"by Upper Rubber Boot Books." +"A system of advanced piezomechanical blood filters that are implanted " +"throughout your body, allowing the user to purge themself of absorbed " +"radiation at the cost of some bionic power." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "How to Live on Other Planets: A Handbook for Aspiring Aliens" -msgid_plural "copies of How to Live on Other Planets" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Railgun CBM" +msgid_plural "Railgun CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34058,19 +32730,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for How to Live on Other Planets: A Handbook for Aspiring -#. Aliens -#: lang/json/BOOK_from_json.py +#. ~ Description for Railgun CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"How to Live on Other Planets: A Handbook for Aspiring Aliens explores the " -"immigrant experience in a science fiction setting, with exciting fiction and" -" poetry from some of the genre’s best writers. Published by Upper Rubber " -"Boot Books." +"EM field generators in the user's arms increase the range and damage of " +"thrown magnetic objects at a cost of 1 bionic power per throw. They will " +"create a trail of electricity that can cause additional damage." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "archery skill training abstract" -msgid_plural "archery skill training abstracts" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Fingertip Razors CBM" +msgid_plural "Fingertip Razors CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34078,14 +32748,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for archery skill training abstract -#: lang/json/BOOK_from_json.py -msgid "template for heavy books that confer archery skill training" +#. ~ Description for Fingertip Razors CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A set of ten double-edged, four centimeter long razor-sharp claws that are " +"implanted underneath the fingernails. These will deal a small amount of " +"unarmed slashing damage whenever the user's fingertips are uncovered." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Lessons for the Novice Bowhunter" -msgid_plural "copies of Lessons for the Novice Bowhunter" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Gasoline Fuel Cell CBM" +msgid_plural "Gasoline Fuel Cell CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34093,16 +32766,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Lessons for the Novice Bowhunter -#: lang/json/BOOK_from_json.py +#. ~ Description for Gasoline Fuel Cell CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This hefty paperback book contains all the information needed for novice " -"archers to get started hunting with a variety of bows and crossbows." +"A small gasoline fuel cell able to convert gasoline to bionic power. It's " +"connected to a diffuse network of bio-plastic bladders able to hold up to " +"500 ml of gasoline." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Zen and the Art of Archery" -msgid_plural "copies of Zen and the Art of Archery" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Recycler Unit CBM" +msgid_plural "Recycler Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34110,16 +32784,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Zen and the Art of Archery -#: lang/json/BOOK_from_json.py +#. ~ Description for Recycler Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This massive book contains a wealth of vital information for the novice " -"archer." +"A series of filters and processors that is implanted in the user's digestive" +" system, allowing them to reclaim waste liquid and, to a lesser degree, " +"nutrients. The net effect is a greatly reduced need to eat and drink." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Archery for Kids" -msgid_plural "issues of Archery for Kids" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Remote Controller CBM" +msgid_plural "Remote Controller CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34127,17 +32802,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Archery for Kids -#: lang/json/BOOK_from_json.py +#. ~ Description for Remote Controller CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Will you be able to place the arrow right into the bullseye? It is not that" -" easy, but once you know how it's done, you will have a lot of fun with " -"archery." +"A small module that connects to the user's brain and allows them to " +"interface with nearby devices with wireless capabilities." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "car buyer's guide" -msgid_plural "car buyer's guides" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Sonic Resonator CBM" +msgid_plural "Sonic Resonator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34145,16 +32819,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for car buyer's guide -#: lang/json/BOOK_from_json.py +#. ~ Description for Sonic Resonator CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Normally this glossy, ad-filled magazine about cars would be pointless, but " -"it has a series of articles on haggling techniques." +"This bionic module allows the user's entire body to resonate at very high " +"power, creating a short-range shockwave. While it will not do much damage " +"to creatures, solid objects such as walls and doors will be damaged." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "How to Succeed in Business" -msgid_plural "copies of How to Succeed in Business" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Olfactory Mask CBM" +msgid_plural "Olfactory Mask CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34162,14 +32837,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for How to Succeed in Business -#: lang/json/BOOK_from_json.py -msgid "Useful if you want to get a good deal when purchasing goods." +#. ~ Description for Olfactory Mask CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"While this system is powered, the user's body will produce very little odor," +" making it nearly impossible for creatures to track them by scent." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Advanced Economics" -msgid_plural "copies of Advanced Economics" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Electroshock Unit CBM" +msgid_plural "Electroshock Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34177,14 +32854,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Advanced Economics -#: lang/json/BOOK_from_json.py -msgid "A college textbook on economics." +#. ~ Description for Electroshock Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"While fighting unarmed, or with a weapon that conducts electricity, there is" +" a chance that a successful hit will shock the user's opponent, inflicting " +"extra damage and disabling them temporarily at the cost of some energy." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Batter Up!" -msgid_plural "issues of Batter Up!" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Shockwave Generator CBM" +msgid_plural "Shockwave Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34192,17 +32872,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Batter Up! -#: lang/json/BOOK_from_json.py +#. ~ Description for Shockwave Generator CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A baseball magazine that focuses on batting tips. There are lots of " -"colorful, full-page photos of skilled athletes demonstrating proper form and" -" technique." +"This bionic module generates a powerful shockwave, knocking back all nearby " +"creatures. Targets are stunned briefly, take damage and additional stun " +"upon impact with impassable terrain, and knock back any creatures they " +"collide with." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "tactical baton defense manual" -msgid_plural "tactical baton defense manuals" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Synaptic Accelerator CBM" +msgid_plural "Synaptic Accelerator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34210,17 +32891,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for tactical baton defense manual -#: lang/json/BOOK_from_json.py +#. ~ Description for Synaptic Accelerator CBM +#: lang/json/BIONIC_ITEM_from_json.py +#, no-python-format msgid "" -"An informative guide to self-defense using clubs and batons. Aimed at the " -"law enforcement and military market, it is packed with time tested, no-" -"nonsense information and written to be understandable for beginners." +"Bionic stimulators that enhance the nervous system, granting a 10% boost to " +"your speed." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Advanced Physical Chemistry" -msgid_plural "copies of Advanced Physical Chemistry" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Muscle Augmentation CBM" +msgid_plural "Muscle Augmentation CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34228,17 +32909,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Advanced Physical Chemistry -#: lang/json/BOOK_from_json.py +#. ~ Description for Muscle Augmentation CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A university-level textbook on advanced principles of physical chemistry and" -" all its branches: thermochemistry, electrochemistry, solid-state chemistry," -" photochemistry, quantum chemistry et cetera." +"Myomer fibers that enhance the muscular system, granting a +2 bonus to " +"strength." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Modern Tanner" -msgid_plural "copies of The Modern Tanner" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Autonomous Surgical Scalpels CBM" +msgid_plural "Autonomous Surgical Scalpels CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34246,16 +32926,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Modern Tanner -#: lang/json/BOOK_from_json.py +#. ~ Description for Autonomous Surgical Scalpels CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An in-depth and easy to read guide that details a very modern take on the " -"ancient art of leather tanning." +"A system of surgical grade scalpels that is implanted in the user's fingers." +" They allow for automated precise cuts and can be used as a high-quality " +"butchering tool." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "PE050 \"Alpha\": Preliminary Report" -msgid_plural "copies of PE050 \"Alpha\": Preliminary Report" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Anti-Glare Compensators CBM" +msgid_plural "Anti-Glare Compensators CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34263,17 +32944,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for PE050 "Alpha": Preliminary Report -#: lang/json/BOOK_from_json.py +#. ~ Description for Anti-Glare Compensators CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This sheaf of papers--dated two weeks before all this started--describes " -"some new chemical formula, and its effects on human subjects. It's stamped " -"\"APPROVED\"…" +"A set of quick-reacting transition lenses that are installed over the user's" +" eyes. They negate glare penalties, partially protect from bright flashes, " +"and protect the eyes when welding." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "lab journal-Dionne" -msgid_plural "lab journals-Dionne" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Targeting System CBM" +msgid_plural "Targeting System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34281,17 +32962,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for lab journal-Dionne -#: lang/json/BOOK_from_json.py +#. ~ Description for Targeting System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This team logbook details several varieties of mutagenic experiments, " -"focusing on those derived from various Earth fauna. The team seems quite " -"enthusiastic--if not eager--about their results." +"This bionic module contains range finders and synchronizes the movement of " +"the user's eyes with their arms, to a degree. Shots they fire will be much " +"more accurate, particularly at long ranges." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "PE065 \"Chimera\": Best Practices" -msgid_plural "copies of PE065 \"Chimera\": Best Practices" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Teleportation Unit CBM" +msgid_plural "Teleportation Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34299,17 +32980,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for PE065 "Chimera": Best Practices -#: lang/json/BOOK_from_json.py +#. ~ Description for Teleportation Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This sheaf of papers describes a new chemical formula in detail and supplies" -" instructions for its use as some sort of… crowd-control catalyst? That " -"can't be right…" +"This highly experimental unit folds space over short distances, instantly " +"transporting the user's body up to 25 feet in a random duration at the cost " +"of much power. Note that prolonged or frequent use may have dangerous side " +"effects." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "lab journal-Smythe" -msgid_plural "lab journals-Smythe" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Time Dilation CBM" +msgid_plural "Time Dilation CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34317,17 +32999,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for lab journal-Smythe -#: lang/json/BOOK_from_json.py +#. ~ Description for Time Dilation CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This team logbook details several varieties of mutagenic experiments, " -"focusing on those derived from flesh contaminated with XE037. The results " -"look promising but the procurement methods seem awfully vague…" +"At the cost of all stored bionic power, the user may increase their body " +"speed and reactions dramatically, essentially freezing time. Violent or " +"rapid movements may cause damage due to friction." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "standpipe maintenance log" -msgid_plural "standpipe maintenance logs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Integrated Toolset CBM" +msgid_plural "Integrated Toolset CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34335,17 +33017,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for standpipe maintenance log -#: lang/json/BOOK_from_json.py +#. ~ Description for Integrated Toolset CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This binder details the scheduled maintenance for several plumbing systems " -"throughout the facility. However, some of the log sheets seem to be filled " -"with… a chemical formula?" -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "chemical reference-CLASSIFIED" -msgid_plural "chemical references-CLASSIFIED" +"A surgically implanted set of tools - screwdriver, hammer, wrench, hacksaw, " +"drill, welder and heating elements. These can be used in place of many " +"tools when crafting." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Joint Torsion Ratchet CBM" +msgid_plural "Joint Torsion Ratchet CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34353,19 +33035,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for chemical reference-CLASSIFIED -#: lang/json/BOOK_from_json.py +#. ~ Description for Joint Torsion Ratchet CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This somewhat technical binder has several intimidating security warnings on" -" the cover, yet guarantees unauthorized readers \"permanent employment, for " -"life\". It contains useful information on \"basic\" chemical projects like " -"methamphetamine and heroin, along with briefing on things called \"XE037\" " -"and \"PE012\"." +"Torsion ratchets that replace the user's joints to slowly generate power " +"when they move. These can be toggled to generate more power, but movement " +"will require more effort." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "lab journal-x-|xp" -msgid_plural "lab journals-x-|xp" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Joint Servo CBM" +msgid_plural "Joint Servo CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34373,17 +33053,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for lab journal-x-|xp -#: lang/json/BOOK_from_json.py +#. ~ Description for Joint Servo CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This damaged team logbook lacks (deliberately?) any identifying information," -" but still contains useful information on several types of mutagen and their" -" development." +"A set of servomotors that get installed on leg joints to provide power-" +"assisted movement. They are optimized for running, but walking also " +"requires less effort while this bionic is active. However, when it's " +"offline it will hamper the user's movement." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "PE023 \"Medical\": Application and Findings" -msgid_plural "copies of PE023 \"Medical\": Application and Findings" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Uncanny Dodge CBM" +msgid_plural "Uncanny Dodge CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34391,16 +33072,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for PE023 "Medical": Application and Findings -#: lang/json/BOOK_from_json.py +#. ~ Description for Uncanny Dodge CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This binder of highly technical papers describes some new chemical formula, " -"and its effects on human subjects. It's stamped \"APPROVED\"…" +"Bionic processors that augment the user's nervous system, allowing them to " +"dodge attacks beyond normal human capability, including bullets." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "PE070 \"Raptor\": Proposal" -msgid_plural "copies of PE070 \"Raptor\": Proposal" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Unified Power System CBM" +msgid_plural "Unified Power System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34408,17 +33089,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for PE070 "Raptor": Proposal -#: lang/json/BOOK_from_json.py +#. ~ Description for Unified Power System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This sheaf of papers is a highly speculative proposal for focusing " -"\"PE065\". Scribbled notes throughout seem to think that it might work, but" -" that there's no time." +"A Unified Power System that is wired into the user's bionic power banks. " +"Objects that run on a UPS can now directly draw power from the bionic power " +"supply." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Best Practices for Compound Delivery" -msgid_plural "copies of Best Practices for Compound Delivery" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Internal Chronometer CBM" +msgid_plural "Internal Chronometer CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34426,19 +33107,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Best Practices for Compound Delivery -#: lang/json/BOOK_from_json.py +#. ~ Description for Internal Chronometer CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This internal manual details several varieties of mutagenic experiments, as " -"well as describing the protocols used to concentrate mutagens for quicker " -"results. The authors recommend that researchers ensure that their subjects " -"are well-fed and in good health, as the concentrated serums draw heavily on " -"subjects' bodies." +"This bionic module contains an atomic clock, complete with silent alarm " +"clock function." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "CRC-Merck Handbook, 4th edition" -msgid_plural "copies of CRC-Merck Handbook, 4th edition" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Water Extraction Unit CBM" +msgid_plural "Water Extraction Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34446,17 +33124,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CRC-Merck Handbook, 4th edition -#: lang/json/BOOK_from_json.py +#. ~ Description for Water Extraction Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This huge hardbound book is a collection of reference data and formulae " -"pertinent to many technical disciplines. If poring over tables of chemical " -"and physical data is your thing, this is the book for you." +"This module contains nanotubes that are embedded in the palm of the hand to " +"pump any available fluid out of a dead body, cleanse it of impurities and " +"convert it into potable water. Water container not included." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "chemistry textbook" -msgid_plural "chemistry textbooks" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Intravenous Needletip CBM" +msgid_plural "Intravenous Needletip CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34464,14 +33142,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for chemistry textbook -#: lang/json/BOOK_from_json.py -msgid "A college textbook on chemistry." +#. ~ Description for Intravenous Needletip CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A small tube with a retractable needle that terminates in a net of tiny " +"hoses instead of a plunger. Installed, it allows the user to draw " +"substances directly into their bloodstream akin to a regular syringe." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Essential Oil Enthusiasts Handbook" -msgid_plural "copies of The Essential Oil Enthusiasts Handbook" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Titanium Skeletal Bracing CBM" +msgid_plural "Titanium Skeletal Bracing CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34479,17 +33160,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Essential Oil Enthusiasts Handbook -#: lang/json/BOOK_from_json.py +#. ~ Description for Titanium Skeletal Bracing CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A heavy hardback book explaining the process of essential oil making, with " -"schematics for the equipment to do it. Good luck, and don't blow yourself " -"up!" +"A set of hinges, springs, and other synthetic augments for the skeletal " +"structure. These artificial enhancers strengthen the knees and elbows, " +"allowing the user to carry more weight." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Art and Science of Chemical Warfare" -msgid_plural "copies of Art and Science of Chemical Warfare" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Taste Modifier CBM" +msgid_plural "Taste Modifier CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34497,19 +33178,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Art and Science of Chemical Warfare -#: lang/json/BOOK_from_json.py +#. ~ Description for Taste Modifier CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This in-depth and technical text covers the design, development, " -"dissemination of, and defenses against various chemical weapons throughout " -"the centuries. The photographs the author chose make it a difficult read at" -" times, though the information is top-notch." +"A set of highly sensitive sensors implanted in the user's mouth, combined " +"with a sophisticated analyzer. While active, it will block all unpleasant " +"taste and texture at the cost of bionic energy." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Chemistry for Kids: Awesome Science Experiments that Really Work" -msgid_plural "" -"copies of Chemistry for Kids: Awesome Science Experiments that Really Work" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Soporific Induction CBM" +msgid_plural "Soporific Induction CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34517,18 +33196,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Chemistry for Kids: Awesome Science Experiments that -#. Really Work -#: lang/json/BOOK_from_json.py +#. ~ Description for Soporific Induction CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A book with comprehensive and accurate step-by-step illustrated instructions" -" for many scientific experiments for young researchers and anyone else who " -"want to delve into an amazing world of chemistry." +"A microscopic electrode designed to gently stimulate a particular cluster of" +" neurons in the hypothalamus, helping the user to fall asleep." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Biodiesel: Renewable Fuel Resource" -msgid_plural "copies of Biodiesel: Renewable Fuel Resource" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Squeaky Ankles" +msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34536,14 +33213,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Biodiesel: Renewable Fuel Resource -#: lang/json/BOOK_from_json.py -msgid "A large textbook for college students about biodiesel." +#. ~ Description for Squeaky Ankles +#: lang/json/BIONIC_ITEM_from_json.py +msgid "A pair of defective bionics that make squeaking noises." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "SICP" -msgid_plural "copies of SICP" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Pieces Of Junk" +msgid_plural "Pieces of Junk" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34551,16 +33228,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for SICP -#: lang/json/BOOK_from_json.py +#. ~ Description for Pieces Of Junk +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A classic text, \"The Structure and Interpretation of Computer Programs.\" " -"Written with examples in LISP, but applicable to any language." +"A jumble of broken metal pieces that were removed during reconstructive " +"surgery." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Computer Science 301" -msgid_plural "copies of Computer Science 301" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Acidic Leaking CBM" +msgid_plural "Acidic Leaking CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34568,14 +33245,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Computer Science 301 -#: lang/json/BOOK_from_json.py -msgid "A college textbook on computer science." +#. ~ Description for Acidic Leaking CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"This CBM has been breached in several places and some acid is leaking from " +"it." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "How to Browse the Web" -msgid_plural "copies of How to Browse the Web" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Faulty Electric System" +msgid_plural "Faulty Electric Systems" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34583,14 +33262,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for How to Browse the Web -#: lang/json/BOOK_from_json.py -msgid "Very beginner-level information about computers." +#. ~ Description for Faulty Electric System +#: lang/json/BIONIC_ITEM_from_json.py +msgid "This CBM is a mess of naked wire and burnt resistors." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Computer World" -msgid_plural "issues of Computer World" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Electrical Drain" +msgid_plural "Electrical Drains" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34598,15 +33277,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Computer World -#: lang/json/BOOK_from_json.py +#. ~ Description for Electrical Drain +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An informative magazine all about computers, both hardware and software." +"This CBM was wired incorrectly and would drain power from any system " +"connected to it." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Computer Science 101" -msgid_plural "copies of Computer Science 101" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Itchy Metal Thing" +msgid_plural "Itchy Metal Things" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34614,14 +33294,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Computer Science 101 -#: lang/json/BOOK_from_json.py -msgid "An entry-level textbook about computers." +#. ~ Description for Itchy Metal Thing +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"You can't recognize what this is supposed to be, but it's a very awkward " +"thing to have in one's body." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Principles of Advanced Programming" -msgid_plural "copies of Principles of Advanced Programming" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Glowy Thing" +msgid_plural "Glowy Things" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34629,16 +33311,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Principles of Advanced Programming -#: lang/json/BOOK_from_json.py -msgid "" -"A heavy textbook dedicated to advanced-level software design, written for " -"several different programming languages." +#. ~ Description for Glowy Thing +#: lang/json/BIONIC_ITEM_from_json.py +msgid "It's a… thing? And it glows, at least it did when it was plugged in." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Web Design Basics" -msgid_plural "copies of Web Design Basics" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Leaky Bionic" +msgid_plural "Leaky Bionics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34646,16 +33326,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Web Design Basics -#: lang/json/BOOK_from_json.py +#. ~ Description for Leaky Bionic +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A thick glossy paperback instructional manual for aspiring web designers " -"that includes a teaching guide for young students." +"A mess of pierced pipes and broken seals, something unpleasant is leaking " +"from it." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Pro Hacker Secrets" -msgid_plural "copies of Pro Hacker Secrets" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Noisemaker" +msgid_plural "Noisemakers" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34663,17 +33343,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Pro Hacker Secrets -#: lang/json/BOOK_from_json.py +#. ~ Description for Noisemaker +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A thinly veiled attempt at teaching kids coding skills. Not nearly as " -"exciting as the authors might have hoped, but there's some real knowledge in" -" here." +"A malfunctioning bionic. When powered, it occasionally emits a loud burst " +"of noise." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Homebrewer's Bible" -msgid_plural "copies of The Homebrewer's Bible" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Bionic Nostril" +msgid_plural "Bionic Nostrils" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34681,16 +33360,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Homebrewer's Bible -#: lang/json/BOOK_from_json.py +#. ~ Description for Bionic Nostril +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A book full of easy-to-follow recipes and useful advice on homebrewing, " -"malting, and fermenting. It even smells faintly of booze." +"This thing was up someone's nose, they're probably glad to be rid of it." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Cooking on a Budget" -msgid_plural "copies of Cooking on a Budget" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Bionic Visual Impairment" +msgid_plural "Bionic Visual Impairments" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34698,15 +33376,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Cooking on a Budget -#: lang/json/BOOK_from_json.py -msgid "" -"A nice cook book that goes beyond recipes and into the chemistry of food." +#. ~ Description for Bionic Visual Impairment +#: lang/json/BIONIC_ITEM_from_json.py +msgid "A defective bionic that impairs vision." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "To Serve Man" -msgid_plural "copies of To Serve Man" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Power Overload" +msgid_plural "Power Overloads" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34714,14 +33391,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for To Serve Man -#: lang/json/BOOK_from_json.py -msgid "It's… it's a cookbook!" +#. ~ Description for Power Overload +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A bunch of defective power circuits that are prone to short-circuiting." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Cucina Italiana" -msgid_plural "copies of Cucina Italiana" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Bionic Short Circuit" +msgid_plural "Bionic Short Circuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34729,16 +33407,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Cucina Italiana -#: lang/json/BOOK_from_json.py -msgid "" -"This cookbook is written in Italian, but handily illustrated with step by " -"step photo instructions." +#. ~ Description for Bionic Short Circuit +#: lang/json/BIONIC_ITEM_from_json.py +msgid "This bionic is poorly wired and occasionally short-circuits." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Sushi Made Easy" -msgid_plural "copies of Sushi Made Easy" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Endocrine Enervator" +msgid_plural "Endocrine Enervators" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34746,17 +33422,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Sushi Made Easy -#: lang/json/BOOK_from_json.py +#. ~ Description for Endocrine Enervator +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A simple text for the aspiring sushi lover, this easy to read guide is " -"filled with lots of helpful illustrations for everything from basic rice " -"preparation to setting a proper Japanese table." +"This malfunctioning bionic causes fatigue by altering the unfortunate user's" +" brain chemistry." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "family cookbook" -msgid_plural "family cookbooks" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Synaptic Regeneration System CBM" +msgid_plural "Synaptic Regeneration System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34764,18 +33439,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for family cookbook -#: lang/json/BOOK_from_json.py +#. ~ Description for Synaptic Regeneration System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A big binder full of somebody's family recipes. The well-turned pages and " -"creased corners speak volumes of the culinary knowledge contained within. " -"You could probably learn a lot about cooking from studying this domestic " -"artifact." +"An electromagnetic stimulator has been surgically implanted on the back of " +"your head and along your spine, continually draining power. As long as it's" +" active, you won't become sleep deprived; and if you're sleep deprived " +"already, it will boost the rate of recovery." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Bon Appetit" -msgid_plural "issues of Bon Appetit" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Motor Control Overstimulator" +msgid_plural "Motor Control Overstimulators" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34783,15 +33458,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Bon Appetit -#: lang/json/BOOK_from_json.py +#. ~ Description for Motor Control Overstimulator +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Exciting recipes and restaurant reviews. Full of handy tips about cooking." +"The result of poor configuration, this bionic module frequently causes " +"debilitating muscle spasms." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Glamopolitan" -msgid_plural "issues of Glamopolitan" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Wire-Induced Stiffness" +msgid_plural "Wire-Induced Stiffnesses" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34799,19 +33475,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Glamopolitan -#: lang/json/BOOK_from_json.py -msgid "" -"This is a full-size glossy women's magazine. There are a few unoriginal " -"recipes and some simple cooking tips somewhere in between the fashion photos" -" and the sex advice columns." +#. ~ Description for Wire-Induced Stiffness +#: lang/json/BIONIC_ITEM_from_json.py +msgid "A length of poorly installed wiring that would cause stiffness." msgstr "" -#. ~ That would translate out to The Scottish Book of Cookery, or The Scottish -#. Cookbook. -#: lang/json/BOOK_from_json.py -msgid "Ye Scots Beuk o Cuikery" -msgid_plural "copies of Ye Scots Beuk o Cuikery" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Self-Locking Thumbs" +msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34819,18 +33490,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Ye Scots Beuk o Cuikery -#: lang/json/BOOK_from_json.py -msgid "" -"A semi-translated Gaelic cookbook from sixteenth century Scotland. While a " -"bit difficult to read, as there are a disquieting number of illustrations of" -" people stabbing each other mixed with rants about 'True Scotsman', it " -"provides insights into medieval Scottish cuisine and culture." +#. ~ Description for Self-Locking Thumbs +#: lang/json/BIONIC_ITEM_from_json.py +msgid "A pair of faulty, self-locking thumb bionics." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Vinegar Maker's Handbook" -msgid_plural "copies of Vinegar Maker's Handbook" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Visual Disruptor" +msgid_plural "Visual Disruptors" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34838,17 +33505,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Vinegar Maker's Handbook -#: lang/json/BOOK_from_json.py +#. ~ Description for Visual Disruptor +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This book describes in detail all the ways that one can make vinegar. You " -"would have thought that there wasn't much to making vinegar, but the girth " -"of this book tells you otherwise." +"A pair of defective ocular bionics that cause visual distortion and " +"pixelation." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Drink the Harvest" -msgid_plural "copies of Drink the Harvest" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Voice Remodulator" +msgid_plural "Voice Remodulators" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34856,16 +33522,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Drink the Harvest -#: lang/json/BOOK_from_json.py +#. ~ Description for Voice Remodulator +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Canning foods doesn't have to stop with jam and pickles. This book provides" -" a plethora of juices that can be preserved." +"Part of the autodoc's 'Cyborg Identity Package', this bionic gives the user " +"a creepy robot voice." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Offal Holiday Cooking" -msgid_plural "copies of Offal Holiday Cooking" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Solar Panels CBM" +msgid_plural "Solar Panels CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34873,16 +33539,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Offal Holiday Cooking -#: lang/json/BOOK_from_json.py +#. ~ Description for Solar Panels CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Offal Holiday Cooking, by Evelyn Turncoat, is a book of holiday recipes that" -" utilize organ meats from various animals. For the true nose-to-tail cook." +"Installed on your back is a set of retractable solar panels. When in direct" +" sunlight, they will automatically deploy and slowly recharge your power " +"level." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Things to do with Milk" -msgid_plural "copies of Things to do with Milk" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Deployable Grenade Launcher CBM" +msgid_plural "Deployable Grenade Launcher CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34890,15 +33557,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Things to do with Milk -#: lang/json/BOOK_from_json.py +#. ~ Description for Deployable Grenade Launcher CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Whatever you want to do with milk, you will probably find it in this book." +"A small, folding tube that attaches to your right arm. Once implanted, it " +"can serve as a portable, integrated tool for firing 40mm grenades and " +"canisters." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Liver-Licious Recipes Your Kids Will Love" -msgid_plural "copies of Liver-Licious Recipes" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Linguistic Coprocessor CBM" +msgid_plural "Linguistic Coprocessor CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34906,17 +33575,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Liver-Licious Recipes Your Kids Will Love -#: lang/json/BOOK_from_json.py +#. ~ Description for Linguistic Coprocessor CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This cookbook is written by liver enthusiast Tamsyn Beckerleg. Inside " -"you'll find a great deal of anecdotes about the near-certain ruination of " -"children who refuse to eat their liver." +"A microcomputer installed into the left hemisphere of your brain to increase" +" the speed that it processes language. When installed, it provides a " +"passive boost to reading speed." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Dainty Dishes Fit for a King" -msgid_plural "copies of Dainty Dishes" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Dopamine Stimulators CBM" +msgid_plural "Dopamine Stimulators CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34924,17 +33593,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Dainty Dishes Fit for a King -#: lang/json/BOOK_from_json.py +#. ~ Description for Dopamine Stimulators CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This cookbook contains many fanciful recipes. Some of them are even worth " -"the trouble to actually prepare. Lovely pen and ink illustrations of " -"overweight knights and gluttonous monks line the pages." +"A set of tiny bionic nerve stimulators that install into the reward center " +"of your brain. When run with bionic power, it periodically releases a hit " +"of dopamine and other reward chemicals, inducing a state of euphoria and " +"suppressing fear." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Eat Your Way to a Fit Physique" -msgid_plural "copies of Eat Your Way" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Counteractive Reflexes CBM" +msgid_plural "Counteractive Reflexes CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34942,17 +33612,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Eat Your Way to a Fit Physique -#: lang/json/BOOK_from_json.py +#. ~ Description for Counteractive Reflexes CBM +#. ~ Description for Counteractive Reflexes +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"This self-help book, by \"acclaimed nutrition and health guru Amar de " -"Freitas,\" is as dubious as its title. Worse, it is boring. It does, " -"however, contain a few basic cooking instructions." +"Cybernetic stimulators installed across your nervous system boost your " +"reflexes whenever you are hit in melee, granting you an extra action. This " +"bionic must be active to function." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Food Fashions for Young Moderns" -msgid_plural "copies of Food Fashions" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Melee Optimization Unit CBM" +msgid_plural "Melee Optimization Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34960,18 +33631,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Food Fashions for Young Moderns -#: lang/json/BOOK_from_json.py +#. ~ Description for Melee Optimization Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A cookbook professing itself to be for those seeking \"daring and " -"sophisticated flavors.\" The book exhorts the reader to defy convention and" -" break the rules, and then presents a number of useful rules and conventions" -" for preparing food." +"An implanted AI executes the optimal followup for each of your melee " +"strikes, allowing you to chain them with unnatural speed and grace. This " +"bionic must be active to function." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Winemaking for Beginners" -msgid_plural "copies of Winemaking for Beginners" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Neurosoft: Aeronautics CBM" +msgid_plural "Neurosoft: Aeronautics CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34979,16 +33649,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Winemaking for Beginners -#: lang/json/BOOK_from_json.py +#. ~ Description for Neurosoft: Aeronautics CBM +#. ~ Description for Neurosoft: Aeronautics +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"Winemaking, is an art form. This book teaches you how to crayon within the " -"lines." +"A brain implant that grants instinctual knowledge about the operation of " +"flying machines." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "You Can Can at Home" -msgid_plural "copies of You Can Can at Home" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Cranium Bomb" +msgid_plural "Cranium Bombs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -34996,17 +33667,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for You Can Can at Home -#: lang/json/BOOK_from_json.py +#. ~ Description for Cranium Bomb +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This entry-level guide to home canning talks about the importance of acidity" -" and food contents in preservation, and how to avoid contaminants in your " -"canning batches." +"A bomb installed where your spine meets your brain stem. It's on a timer " +"from installation and you don't have the codes to reset the timer." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Can Sealer Instructions" -msgid_plural "copies of Can Sealer Instructions" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Skullgun CBM" +msgid_plural "Skullgun CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35014,17 +33684,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Can Sealer Instructions -#: lang/json/BOOK_from_json.py +#. ~ Description for Skullgun CBM +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"This dry guide to a home-use tin can sealer goes into clear detail on " -"everything you can seal with the device and how to do it safely, and " -"includes some basic recipes." +"Concealed in your head is a single shot .40 pistol. Activate the bionic to " +"fire and reload the skullgun." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Baker's Companion" -msgid_plural "copies of The Baker's Companion" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Implanted translocator CBM" +msgid_plural "Implanted translocator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35032,15 +33701,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Baker's Companion -#: lang/json/BOOK_from_json.py +#. ~ Description for Implanted translocator CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This book promises to teach you the ways of baking, from cakes to souffles." +"An experimental teleportation system carefully weaved into bone marrow and " +"coiled alongside the skeletal system. It allows its user to safely and " +"readily teleport towards a previously activated telepad." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Fermenting Culture" -msgid_plural "copies of Fermenting Culture" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Emergency Insulation" +msgid_plural "Emergency Insulations" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35048,17 +33719,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Fermenting Culture -#: lang/json/BOOK_from_json.py +#. ~ Description for Emergency Insulation +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Fermenting as a cooking practice only recently came back into vogue before " -"the Cataclysm. Here is a book with dozens of recipes, many of which you are" -" unlikely to ever see the ingredients for again." +"A system designed to prevent instantaneous frostbite in workers exposed to " +"things like hard vacuum and liquid nitrogen." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Out of the Holler and into the Home: A guide to home distillation" -msgid_plural "copies of Out of the Holler" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Weak Energy Field CBM" +msgid_plural "Weak Energy Field CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35066,17 +33736,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Out of the Holler and into the Home: A guide to home -#. distillation -#: lang/json/BOOK_from_json.py +#. ~ Description for Weak Energy Field CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A book describing the history of at home distillation by liquor. Each " -"chapter contains a complete recipe for its namesake." +"Imagine a computer inside your body playing pong against the universe. The " +"paddles are made of energy fields and how it causes this to happen are trade" +" secrets. -From the owners manual of HawkingCorps EnergyField Mark I. This" +" field is rated to reduce bashing and cut damage as viewed in your HUD by 5 " +"points." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Sweets for your Sweet Child" -msgid_plural "copies of Sweets for Sweet" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Combat Rated Energy Field CBM" +msgid_plural "Combat Rated Energy Field CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35084,17 +33756,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Sweets for your Sweet Child -#: lang/json/BOOK_from_json.py +#. ~ Description for Combat Rated Energy Field CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Sweets for your Sweet Child is the best selling cooking book to the parents " -"of young children. Every recipe uses oversized text, easy words and diagram" -" instructions for children learning to cook with their parents." +"The HawkingCorps EnergyField Mark 2 was designed for police actions during " +"food riots and other civilian uprisings. It has proven cabaple of " +"protecting against most improvised weapons. This field is rated to reduce " +"bashing and cut damage as viewed in your HUD by 15 points." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Pocket Survival Cookbook" -msgid_plural "copies of Pocket Survival Cookbook" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Debt Collection Agent Personal EnergyField CBM" +msgid_plural "Debt Collection Agent Personal EnergyField CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35102,16 +33775,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Pocket Survival Cookbook -#: lang/json/BOOK_from_json.py +#. ~ Description for Debt Collection Agent Personal EnergyField CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"The smallest cookbook on the market, marketed exclusively to the " -"outdoorsman. Packs a surprising number of recipes for its tiny size." +"This class of personal energy field often sees action on both sides of the " +"vicious ship-to-ship boarding fights that are common with both repossession " +"and piracy. It remains practically impenetrable to melee weapons that lack " +"sharp piercing points. This field is rated to reduce bashing and cut damage" +" as viewed in your HUD by 25 points." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Tasting India" -msgid_plural "copies of Tasting India" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Kinetic Attenuation Field CBM" +msgid_plural "Kinetic Attenuation Field CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35119,16 +33795,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Tasting India -#: lang/json/BOOK_from_json.py +#. ~ Description for Kinetic Attenuation Field CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A thick hardcover book as much about Indian culture as it is a cookbook, " -"clearly written with adoration." +"A personal kinetic attenuation field that slows incoming projectiles by " +"converting their kinetic energy into bursts of visible light. Although this" +" version is not powerful enough to defeat most pistol or rifle cartridges by" +" itself, it greatly increases survival odds when combined with traditional " +"ballistic armor. This field is rated to reduce ballistic and piercing " +"damage as viewed in your HUD by 10 points." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "All About Swords" -msgid_plural "issues of All About Swords" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Pattern-U15 Attenuation Field CBM" +msgid_plural "Pattern-U15 Attenuation Field CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35136,16 +33816,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for All About Swords -#: lang/json/BOOK_from_json.py +#. ~ Description for Pattern-U15 Attenuation Field CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An interesting magazine that contains information about swords and sword " -"fighting techniques from all across the world." +"A military grade kinetic attenuation system developed for use within UICA's " +"special service branches. Although much more effective than anything that " +"could be conceived with current technology, it remains a pale imitation of " +"the Hyperspace Age systems it was reverse engineered from. A side effect " +"modern engineering seems unable to address is the tendency for this unit to " +"release electrical fields when hit. This field is rated to reduce ballistic" +" and piercing damage as viewed in your HUD by 20 points" msgstr "" -#: lang/json/BOOK_from_json.py -msgid "knife fighter's notes" -msgid_plural "knife fighter's notes" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Kinetic annulment system CBM" +msgid_plural "Kinetic annulment system CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35153,17 +33838,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} -#: lang/json/BOOK_from_json.py +#. ~ Description for Kinetic annulment system CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"It seems to be a guide to edged weapon combat, poorly photocopied and " -"released on spiral- bound paper. Still, there are lots of useful tips for " -"beginners." +"A kinetic attenuation system salvaged from a pre-discontinuity robotic " +"warframe, crudely adapted for compatibility with biological hosts. Powerful" +" enough to completely stop most rifle cartridges. This field is rated to " +"reduce ballistic and piercing damage as viewed in your HUD by 40 points" msgstr "" -#: lang/json/BOOK_from_json.py -msgid "USMC Sword Manual Procedure" -msgid_plural "copies of USMC Sword Manual Procedures" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Precision Solderers CBM" +msgid_plural "Precision Solderers CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35171,14 +33857,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for USMC Sword Manual Procedure -#: lang/json/BOOK_from_json.py -msgid "A text on stationary sword drills in US Marine Corps." +#. ~ Description for Precision Solderers CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A set of tiny electronics tools, including soldering irons and wire cutters." +" They serve no purpose on their own, but are required for crafting bionics." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Dance Dance Dance!" -msgid_plural "issues of Dance Dance Dance!" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Wind Turbine CBM" +msgid_plural "Wind Turbine CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35186,14 +33874,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Dance Dance Dance! -#: lang/json/BOOK_from_json.py -msgid "Learn the moves of the trendiest dances right now." +#. ~ Description for Wind Turbine CBM +#. ~ Description for Wind Turbines +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "" +"Installed on your body is a set of small retractable wind turbines. When " +"activated, they will deploy and slowly harvest wind power to recharge your " +"power level." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Book of Dances" -msgid_plural "copies of The Book of Dances" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Ionic Overload Generator CBM" +msgid_plural "Ionic Overload Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35201,17 +33893,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Book of Dances -#: lang/json/BOOK_from_json.py +#. ~ Description for Ionic Overload Generator CBM +#. ~ Description for Ionic Overload Generator +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"This massive antique book documents dances from all around the world in " -"great detail. A perceptive reader could learn a lot about defensive " -"footwork from some of the war dances." +"A powerful ion energy generator is implanted on your chest. Fires a " +"powerful, ever-expanding energy blast. The resulting blast ignites oxygen " +"creating fires as it moves and an explosion on impact. Close range use is " +"highly discouraged." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Break a Leg!" -msgid_plural "copies of Break a Leg!" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Blood Power Generator CBM" +msgid_plural "Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35219,14 +33913,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Break a Leg! -#: lang/json/BOOK_from_json.py -msgid "The Kids' Guide to Acting and Stagecraft." +#. ~ Description for Blood Power Generator CBM +#: lang/json/BIONIC_ITEM_from_json.py +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 "" -#: lang/json/BOOK_from_json.py -msgid "Treasury of Legends about Western Dancing" -msgid_plural "copies of Western Dancing" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35234,17 +33931,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Treasury of Legends about Western Dancing -#: lang/json/BOOK_from_json.py +#. ~ Description for Crystallized Mana Nose Replacement +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"Written by Emanuel Nogueira, a constabulario and historian of Nuevo Laredo, " -"this massive book details the movements and cultural legacies of a variety " -"of North American folk dances." +"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 "" #: lang/json/BOOK_from_json.py -msgid "AAA Guide" -msgid_plural "copies of AAA Guide" +msgid "The Museum of All Things Awesome and That Go Boom" +msgid_plural "copies of The Museum of All Things Awesome and That Go Boom" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35252,17 +33951,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for AAA Guide +#. ~ Description for The Museum of All Things Awesome and That Go Boom #: lang/json/BOOK_from_json.py msgid "" -"A tourist-centric guide to points of interest throughout the country. " -"Though it focuses on the north-central US, the driving sections contain some" -" practical tips on proper driving techniques." +"The Museum of All Things Awesome and That Go Boom is an anthology of science" +" fiction featuring blunt force trauma, explosions, adventure, derring-do, " +"tigers, Martians, zombies, fanged monsters, dinosaurs (alien and domestic), " +"ray guns, rocket ships, and anthropomorphized marshmallows. Published by " +"Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Top Gear magazine" -msgid_plural "Top Gear magazines" +msgid "Sunvault: Stories of Solarpunk & Eco-Speculation" +msgid_plural "copies of Sunvault" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35270,14 +33971,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Top Gear magazine +#. ~ Description for Sunvault: Stories of Solarpunk & Eco-Speculation #: lang/json/BOOK_from_json.py -msgid "Lots of articles about cars and driving techniques." +msgid "" +"Sunvault is the first English-language anthology to broadly collect " +"solarpunk short fiction, artwork, and poetry. A new genre for the 21st " +"Century, solarpunk is a revolution against despair. Focusing on solutions " +"to environmental disasters, solarpunk envisions a future of green, " +"sustainable energy used by societies that value inclusiveness, cooperation, " +"and personal freedom. Published by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Rules of the Road" -msgid_plural "copies of The Rules of the Road" +msgid "Sharp & Sugar Tooth" +msgid_plural "copies of Sharp & Sugar Tooth" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35285,25 +33992,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Rules of the Road -#: lang/json/BOOK_from_json.py -msgid "" -"A thick textbook for beginning drivers. It contains chapters on laws, safe " -"vehicle operation, and defensive driving concepts." -msgstr "" - -#. ~ Description for AAA Guide +#. ~ Description for Sharp & Sugar Tooth #: lang/json/BOOK_from_json.py msgid "" -"A tourist-centric guide to points of interest throughout the country. This " -"particular copy is apparently the Anonymous Anarchist's Annual: the cover " -"conceals a wealth of ways to help stick it to The Man, along with plenty of " -"advice for avoiding police." +"Sharp & Sugar Tooth: Women Up To No Good is a horror anthology of dark " +"fiction and darker appetites, edited by Octavia Cade. Containing 22 stories" +" of “bad” women, and “good” women who just haven’t been caught yet, it " +"features 22 fearless writers who identify as female, non-binary, or a " +"marginalized sex or gender identity. Published by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Advanced Electronics" -msgid_plural "copies of Advanced Electronics" +msgid "Broad Knowledge" +msgid_plural "copies of Broad Knowledge" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35311,14 +34012,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Advanced Electronics +#. ~ Description for Broad Knowledge #: lang/json/BOOK_from_json.py -msgid "A college textbook on circuit design." +msgid "" +"Broad Knowledge: 35 Women Up To No Good is a feminist anthology of dark " +"fiction and darker knowledge, edited by Joanne Merriam. Containing 35 " +"stories of “bad” women, and “good” women who just haven’t been caught yet. " +"Published by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ham Radio Illustrated" -msgid_plural "issues of Ham Radio Illustrated" +msgid "Choose Wisely" +msgid_plural "copies of Choose Wisely" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35326,16 +34031,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Ham Radio Illustrated +#. ~ Description for Choose Wisely #: lang/json/BOOK_from_json.py msgid "" -"An amusing magazine about ham radio, with lots of diagrams and illustrations" -" for making your own electronic devices." +"Choose Wisely: 35 Women Up To No Good is a feminist anthology of dark " +"fiction, co-edited by H. L. Nelson and Joanne Merriam. Containing 35 " +"stories of “bad” women, and “good” women who just haven’t been caught yet, " +"it features Joyce Carol Oates, Aimee Bender, Diane Cook, and 33 other " +"fearless women writers. Published by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "What's a Transistor?" -msgid_plural "copies of What's a Transistor?" +msgid "Apocalypse Now" +msgid_plural "copies of Apocalypse Now" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35343,14 +34051,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for What's a Transistor? +#. ~ Description for Apocalypse Now #: lang/json/BOOK_from_json.py -msgid "A basic manual of electronics and circuit design." +msgid "" +"Every society and every generation has its version of the apocalypse: swine " +"flu, genetic mutation, global warming, nuclear fallout, the second coming, " +"peak oil, mass extinction, giant irradiated ants, zombies… Apocalypse Now: " +"Poems and Prose from the End of Days is the first anthology of its kind to " +"bring together the poetry and prose of some of America’s finest (though not " +"always most well-known) literary voices with an eye for the literary and the" +" popular, for story and lyric, for the past and the future, for the " +"psychological and the physical, for the real and the fantastic. Published " +"by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "101 Important Integrated Circuits" -msgid_plural "copies of 101 Important Integrated Circuits" +msgid "How to Live on Other Planets: A Handbook for Aspiring Aliens" +msgid_plural "copies of How to Live on Other Planets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35358,19 +34075,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for 101 Important Integrated Circuits +#. ~ Description for How to Live on Other Planets: A Handbook for Aspiring +#. Aliens #: lang/json/BOOK_from_json.py msgid "" -"This reference manual contains datasheets and pinout diagrams for 101 of the" -" most popular IC chips, including the 555 timer, LM358 op-amp, and LM317 " -"voltage regulator, along with logic chips from the 74xx family, and even the" -" 6502 8-bit processor. If you want to do anything useful with integrated " -"circuits, a reference like this would be indispensable." +"How to Live on Other Planets: A Handbook for Aspiring Aliens explores the " +"immigrant experience in a science fiction setting, with exciting fiction and" +" poetry from some of the genre’s best writers. Published by Upper Rubber " +"Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Amateur Home Radio for Enthusiasts" -msgid_plural "copies of Amateur Home Radio for Enthusiasts" +msgid "archery skill training abstract" +msgid_plural "archery skill training abstracts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35378,16 +34095,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Amateur Home Radio for Enthusiasts +#. ~ Description for archery skill training abstract #: lang/json/BOOK_from_json.py -msgid "" -"A book about ham radio and citizen's band radio. It contains numerous " -"diagrams and illustrations explaining the science behind the electronics." +msgid "template for heavy books that confer archery skill training" msgstr "" #: lang/json/BOOK_from_json.py -msgid "computer printout" -msgid_plural "computer printouts" +msgid "Lessons for the Novice Bowhunter" +msgid_plural "copies of Lessons for the Novice Bowhunter" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35395,16 +34110,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for computer printout +#. ~ Description for Lessons for the Novice Bowhunter #: lang/json/BOOK_from_json.py msgid "" -"One side of this sheet is printed with a meaningless jumble of characters, " -"but the other side shows a complicated, hand-drawn circuit diagram." +"This hefty paperback book contains all the information needed for novice " +"archers to get started hunting with a variety of bows and crossbows." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Augmentative Tech Review" -msgid_plural "issues of Augmentative Tech Review" +msgid "Zen and the Art of Archery" +msgid_plural "copies of Zen and the Art of Archery" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35412,18 +34127,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Augmentative Tech Review +#. ~ Description for Zen and the Art of Archery #: lang/json/BOOK_from_json.py msgid "" -"This annual publication covers the various ways in which people use " -"technology to improve their bodies. There are a few in-depth and thoroughly" -" illustrated articles on bionic systems, though they tend to use too much " -"jargon." +"This massive book contains a wealth of vital information for the novice " +"archer." msgstr "" #: lang/json/BOOK_from_json.py -msgid "lab journal-Herrera" -msgid_plural "lab journals-Herrera" +msgid "Archery for Kids" +msgid_plural "issues of Archery for Kids" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35431,17 +34144,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for lab journal-Herrera +#. ~ Description for Archery for Kids #: lang/json/BOOK_from_json.py msgid "" -"This hefty binder contains a multitude of diagrams and technical " -"specifications for various electronic materials. Some of the diagrams use " -"symbols you've not seen before…" +"Will you be able to place the arrow right into the bullseye? It is not that" +" easy, but once you know how it's done, you will have a lot of fun with " +"archery." msgstr "" #: lang/json/BOOK_from_json.py -msgid "2XI design binder-CLASSIFIED" -msgid_plural "2XI design binders-CLASSIFIED" +msgid "car buyer's guide" +msgid_plural "car buyer's guides" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35449,18 +34162,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for 2XI design binder-CLASSIFIED +#. ~ Description for car buyer's guide #: lang/json/BOOK_from_json.py msgid "" -"This Doubletech Industries binder has several intimidating security warnings" -" on the cover. Probably because it contains complete design specs, " -"technical drawings, and test results for their military-grade bionic " -"implants." +"Normally this glossy, ad-filled magazine about cars would be pointless, but " +"it has a series of articles on haggling techniques." msgstr "" #: lang/json/BOOK_from_json.py -msgid "plans for a radio repeater mod" -msgid_plural "plans for a radio repeater mod" +msgid "How to Succeed in Business" +msgid_plural "copies of How to Succeed in Business" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35468,16 +34179,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for How to Succeed in Business #: lang/json/BOOK_from_json.py -msgid "" -"Instructions on how to create a mod for a radio station terminal which " -"converts the entire system into a repeater." +msgid "Useful if you want to get a good deal when purchasing goods." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Electronic Circuit Theory" -msgid_plural "copies of Electronic Circuit Theory" +msgid "Advanced Economics" +msgid_plural "copies of Advanced Economics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35485,15 +34194,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Electronic Circuit Theory +#. ~ Description for Advanced Economics #: lang/json/BOOK_from_json.py -msgid "" -"An advanced college textbook on circuit theory, design, and organization." +msgid "A college textbook on economics." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Robots for Fun & Profit" -msgid_plural "copies of Robots for Fun & Profit" +msgid "Batter Up!" +msgid_plural "issues of Batter Up!" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35501,16 +34209,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Robots for Fun & Profit +#. ~ Description for Batter Up! #: lang/json/BOOK_from_json.py msgid "" -"A rare book on the design of robots, with lots of helpful step-by-step " -"guides." +"A baseball magazine that focuses on batting tips. There are lots of " +"colorful, full-page photos of skilled athletes demonstrating proper form and" +" technique." msgstr "" #: lang/json/BOOK_from_json.py -msgid "trifacet handling procedures" -msgid_plural "trifacet handling procedures" +msgid "tactical baton defense manual" +msgid_plural "tactical baton defense manuals" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35518,18 +34227,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for tactical baton defense manual #: lang/json/BOOK_from_json.py msgid "" -"A heavy and disparate binder detailing the deactivation, storage and " -"transport procedures for a so called \"Trifacet\" UVG. The pages and " -"schematics within have been compiled from the internal reports of a vast " -"array of governmental agencies, many of which you had never heard of before." +"An informative guide to self-defense using clubs and batons. Aimed at the " +"law enforcement and military market, it is packed with time tested, no-" +"nonsense information and written to be understandable for beginners." msgstr "" #: lang/json/BOOK_from_json.py -msgid "schematics" -msgid_plural "schematics" +msgid "Advanced Physical Chemistry" +msgid_plural "copies of Advanced Physical Chemistry" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35537,33 +34245,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'schematics'} -#. ~ Description for animal -#. ~ Description for nearby fire -#. ~ Description for muscle -#. ~ Description for wind -#. ~ Description for sun light -#. ~ Description for metabolism -#. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} -#. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} -#. ~ Description for weapon -#: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/furniture_from_json.py lang/json/skill_from_json.py -msgid "seeing this is a bug" -msgid_plural "seeing this is a bug" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +#. ~ Description for Advanced Physical Chemistry +#: lang/json/BOOK_from_json.py +msgid "" +"A university-level textbook on advanced principles of physical chemistry and" +" all its branches: thermochemistry, electrochemistry, solid-state chemistry," +" photochemistry, quantum chemistry et cetera." +msgstr "" #: lang/json/BOOK_from_json.py -msgid "nurse bot schematics" -msgid_plural "nurse bot schematics" +msgid "The Modern Tanner" +msgid_plural "copies of The Modern Tanner" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35571,18 +34263,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for The Modern Tanner #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Uncanny, these are assembly plans, design specs, and " -"technical drawings for the nurse bot. Most of this is useless to you, but " -"you could use the assembly plans to re-assemble the robot from salvaged " -"parts." +"An in-depth and easy to read guide that details a very modern take on the " +"ancient art of leather tanning." msgstr "" #: lang/json/BOOK_from_json.py -msgid "grocery bot schematics" -msgid_plural "grocery bot schematics" +msgid "PE050 \"Alpha\": Preliminary Report" +msgid_plural "copies of PE050 \"Alpha\": Preliminary Report" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35590,18 +34280,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for PE050 "Alpha": Preliminary Report #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Uncanny, these are assembly plans, design specs, and " -"technical drawings for the grocery bot. Most of this is useless to you, but" -" you could use the assembly plans to re-assemble the robot from salvaged " -"parts." +"This sheaf of papers--dated two weeks before all this started--describes " +"some new chemical formula, and its effects on human subjects. It's stamped " +"\"APPROVED\"…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "police bot schematics" -msgid_plural "police bot schematics" +msgid "lab journal-Dionne" +msgid_plural "lab journals-Dionne" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35609,17 +34298,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for lab journal-Dionne #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the police bot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This team logbook details several varieties of mutagenic experiments, " +"focusing on those derived from various Earth fauna. The team seems quite " +"enthusiastic--if not eager--about their results." msgstr "" #: lang/json/BOOK_from_json.py -msgid "eyebot schematics" -msgid_plural "eyebot schematics" +msgid "PE065 \"Chimera\": Best Practices" +msgid_plural "copies of PE065 \"Chimera\": Best Practices" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35627,17 +34316,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for PE065 "Chimera": Best Practices #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the eyebot. Most " -"of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This sheaf of papers describes a new chemical formula in detail and supplies" +" instructions for its use as some sort of… crowd-control catalyst? That " +"can't be right…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "security bot schematics" -msgid_plural "security bot schematics" +msgid "lab journal-Smythe" +msgid_plural "lab journals-Smythe" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35645,17 +34334,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for lab journal-Smythe #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the security bot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This team logbook details several varieties of mutagenic experiments, " +"focusing on those derived from flesh contaminated with XE037. The results " +"look promising but the procurement methods seem awfully vague…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "skitterbot schematics" -msgid_plural "skitterbot schematics" +msgid "standpipe maintenance log" +msgid_plural "standpipe maintenance logs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35663,17 +34352,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for standpipe maintenance log #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the skitterbot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This binder details the scheduled maintenance for several plumbing systems " +"throughout the facility. However, some of the log sheets seem to be filled " +"with… a chemical formula?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "cleaner bot schematics" -msgid_plural "cleaner bot schematics" +msgid "chemical reference-CLASSIFIED" +msgid_plural "chemical references-CLASSIFIED" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35681,17 +34370,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for chemical reference-CLASSIFIED #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the cleaner bot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This somewhat technical binder has several intimidating security warnings on" +" the cover, yet guarantees unauthorized readers \"permanent employment, for " +"life\". It contains useful information on \"basic\" chemical projects like " +"methamphetamine and heroin, along with briefing on things called \"XE037\" " +"and \"PE012\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "miner bot schematics" -msgid_plural "miner bot schematics" +msgid "lab journal-x-|xp" +msgid_plural "lab journals-x-|xp" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35699,17 +34390,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for lab journal-x-|xp #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the miner bot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This damaged team logbook lacks (deliberately?) any identifying information," +" but still contains useful information on several types of mutagen and their" +" development." msgstr "" #: lang/json/BOOK_from_json.py -msgid "riot control bot schematics" -msgid_plural "riot control bot schematics" +msgid "PE023 \"Medical\": Application and Findings" +msgid_plural "copies of PE023 \"Medical\": Application and Findings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35717,17 +34408,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for PE023 "Medical": Application and Findings #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the riot control " -"bot. Most of this is useless to you, but you could use the assembly plans " -"to re-assemble the robot from salvaged parts." +"This binder of highly technical papers describes some new chemical formula, " +"and its effects on human subjects. It's stamped \"APPROVED\"…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "lab defense bot schematics" -msgid_plural "lab defense bot schematics" +msgid "PE070 \"Raptor\": Proposal" +msgid_plural "copies of PE070 \"Raptor\": Proposal" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35735,17 +34425,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for PE070 "Raptor": Proposal #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the lab defense " -"bot. Most of this is useless to you, but you could use the assembly plans " -"to re-assemble the robot from salvaged parts." +"This sheaf of papers is a highly speculative proposal for focusing " +"\"PE065\". Scribbled notes throughout seem to think that it might work, but" +" that there's no time." msgstr "" #: lang/json/BOOK_from_json.py -msgid "dispatch schematics" -msgid_plural "dispatch schematics" +msgid "Best Practices for Compound Delivery" +msgid_plural "copies of Best Practices for Compound Delivery" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35753,18 +34443,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for Best Practices for Compound Delivery #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Northrop, these are assembly plans, design specs, and " -"technical drawings for the dispatch. Most of this is useless to you, but " -"you could use the assembly plans to re-assemble the robot from salvaged " -"parts." +"This internal manual details several varieties of mutagenic experiments, as " +"well as describing the protocols used to concentrate mutagens for quicker " +"results. The authors recommend that researchers ensure that their subjects " +"are well-fed and in good health, as the concentrated serums draw heavily on " +"subjects' bodies." msgstr "" #: lang/json/BOOK_from_json.py -msgid "military dispatch schematics" -msgid_plural "military dispatch schematics" +msgid "CRC-Merck Handbook, 4th edition" +msgid_plural "copies of CRC-Merck Handbook, 4th edition" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35772,18 +34463,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for CRC-Merck Handbook, 4th edition #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Northrop, these are assembly plans, design specs, and " -"technical drawings for the military dispatch. Most of this is useless to " -"you, but you could use the assembly plans to re-assemble the robot from " -"salvaged parts." +"This huge hardbound book is a collection of reference data and formulae " +"pertinent to many technical disciplines. If poring over tables of chemical " +"and physical data is your thing, this is the book for you." msgstr "" #: lang/json/BOOK_from_json.py -msgid "anti-materiel turret schematics" -msgid_plural "anti-materiel turret schematics" +msgid "chemistry textbook" +msgid_plural "chemistry textbooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35791,17 +34481,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for chemistry textbook #: lang/json/BOOK_from_json.py -msgid "" -"Assembly plans, design specs, and technical drawings for the anti-materiel " -"turret. Most of this is useless to you, but you could use the assembly " -"plans to re-assemble the robot from salvaged parts." +msgid "A college textbook on chemistry." msgstr "" #: lang/json/BOOK_from_json.py -msgid "milspec searchlight schematics" -msgid_plural "milspec searchlight schematics" +msgid "The Essential Oil Enthusiasts Handbook" +msgid_plural "copies of The Essential Oil Enthusiasts Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35809,17 +34496,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for The Essential Oil Enthusiasts Handbook #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the milspec " -"searchlight. Most of this is useless to you, but you could use the assembly" -" plans to re-assemble the robot from salvaged parts." +"A heavy hardback book explaining the process of essential oil making, with " +"schematics for the equipment to do it. Good luck, and don't blow yourself " +"up!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Art of Glassblowing" -msgid_plural "copies of The Art of Glassblowing" +msgid "Art and Science of Chemical Warfare" +msgid_plural "copies of Art and Science of Chemical Warfare" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35827,16 +34514,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Art of Glassblowing +#. ~ Description for Art and Science of Chemical Warfare #: lang/json/BOOK_from_json.py msgid "" -"A textbook that illustrates the science and technique of the ancient art of " -"glassblowing." +"This in-depth and technical text covers the design, development, " +"dissemination of, and defenses against various chemical weapons throughout " +"the centuries. The photographs the author chose make it a difficult read at" +" times, though the information is top-notch." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Plastics & Polymers: Projects for the Classroom" -msgid_plural "copies of Plastics & Polymers: Projects for the Classroom" +msgid "Chemistry for Kids: Awesome Science Experiments that Really Work" +msgid_plural "" +"copies of Chemistry for Kids: Awesome Science Experiments that Really Work" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35844,16 +34534,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Plastics & Polymers: Projects for the Classroom +#. ~ Description for Chemistry for Kids: Awesome Science Experiments that +#. Really Work #: lang/json/BOOK_from_json.py msgid "" -"A textbook that goes through types and material properties of various common" -" plastics, and how to use them in several common projects." +"A book with comprehensive and accurate step-by-step illustrated instructions" +" for many scientific experiments for young researchers and anyone else who " +"want to delve into an amazing world of chemistry." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Prop Builder's Molding and Casting Handbook" -msgid_plural "copies of The Prop Builder's Molding and Casting Handbook" +msgid "Biodiesel: Renewable Fuel Resource" +msgid_plural "copies of Biodiesel: Renewable Fuel Resource" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35861,18 +34553,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Prop Builder's Molding and Casting Handbook +#. ~ Description for Biodiesel: Renewable Fuel Resource #: lang/json/BOOK_from_json.py -msgid "" -"The first book to contain, in one comprehensive volume, every molding and " -"casting procedure of use to the theater props builder of any skill level. " -"The author demonstrates the techniques involved in over thirty materials " -"from papier-mache to breakaway glass." +msgid "A large textbook for college students about biodiesel." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Antique Adornments" -msgid_plural "copies of Antique Adornments" +msgid "SICP" +msgid_plural "copies of SICP" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35880,16 +34568,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Antique Adornments +#. ~ Description for SICP #: lang/json/BOOK_from_json.py msgid "" -"A comprehensive and illustrated history of crown, bracelet, necklace and " -"others." +"A classic text, \"The Structure and Interpretation of Computer Programs.\" " +"Written with examples in LISP, but applicable to any language." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Crafty Crafter's Quarterly" -msgid_plural "Crafty Crafter's Quarterlies" +msgid "Computer Science 301" +msgid_plural "copies of Computer Science 301" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35897,16 +34585,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Crafty Crafter's Quarterly +#. ~ Description for Computer Science 301 #: lang/json/BOOK_from_json.py -msgid "" -"A fun quarterly magazine all about macaroni art and things you can make by " -"supergluing found objects together." +msgid "A college textbook on computer science." msgstr "" #: lang/json/BOOK_from_json.py -msgid "101 Crafts for Beginners" -msgid_plural "copies of 101 Crafts for Beginners" +msgid "How to Browse the Web" +msgid_plural "copies of How to Browse the Web" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35914,16 +34600,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for 101 Crafts for Beginners +#. ~ Description for How to Browse the Web #: lang/json/BOOK_from_json.py -msgid "" -"A large, paperback book detailing a hundred and one beginner's projects in " -"fabrication." +msgid "Very beginner-level information about computers." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Fletcher's Friend" -msgid_plural "copies of The Fletcher's Friend" +msgid "Computer World" +msgid_plural "issues of Computer World" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35931,18 +34615,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Fletcher's Friend +#. ~ Description for Computer World #: lang/json/BOOK_from_json.py msgid "" -"This hefty book is devoted to folks looking to handcraft their own arrows. " -"It starts with a hip and snappy disclaimer about the risks, both physical " -"and legal, of using explosives and flammable materials. Look for its " -"companion, \"The Bowyer's Buddy\"!" +"An informative magazine all about computers, both hardware and software." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Bowyer's Buddy" -msgid_plural "copies of The Bowyer's Buddy" +msgid "Computer Science 101" +msgid_plural "copies of Computer Science 101" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35950,17 +34631,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Bowyer's Buddy +#. ~ Description for Computer Science 101 #: lang/json/BOOK_from_json.py -msgid "" -"This hefty book is dedicated to craftsfolk and outdoors-y types looking to " -"make their own bows. It recommends its companion volume \"The Fletcher's " -"Friend\" for instructions on producing their ammunition." +msgid "An entry-level textbook about computers." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Handloader's Helper" -msgid_plural "copies of The Handloader's Helper" +msgid "Principles of Advanced Programming" +msgid_plural "copies of Principles of Advanced Programming" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35968,17 +34646,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Handloader's Helper +#. ~ Description for Principles of Advanced Programming #: lang/json/BOOK_from_json.py msgid "" -"Everything you could ever want to know about handloading ammunition, sealed " -"with a… childproof cover. Apparently a liability thing, because the chapter" -" on explosive rounds covers them in excellent detail too." +"A heavy textbook dedicated to advanced-level software design, written for " +"several different programming languages." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Rivtech design binder" -msgid_plural "Rivtech design binders" +msgid "Web Design Basics" +msgid_plural "copies of Web Design Basics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -35986,17 +34663,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Rivtech design binder +#. ~ Description for Web Design Basics #: lang/json/BOOK_from_json.py msgid "" -"This Rivtech binder warns that \"Unauthorized readers are our best test " -"subjects.\" With good reason: it contains complete design specs and " -"technical drawings for their entire line of products." +"A thick glossy paperback instructional manual for aspiring web designers " +"that includes a teaching guide for young students." msgstr "" #: lang/json/BOOK_from_json.py -msgid "lab journal-Gustav" -msgid_plural "lab journals-Gustav" +msgid "Pro Hacker Secrets" +msgid_plural "copies of Pro Hacker Secrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36004,19 +34680,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for lab journal-Gustav +#. ~ Description for Pro Hacker Secrets #: lang/json/BOOK_from_json.py msgid "" -"This paper notebook is mostly full of boring logs, experimental observations" -" and notes. Mixed in, however, are musings on how to use the lab's vapor " -"deposition machine to deposit amorphous carbon in a diamond-like form onto " -"common metals. The author's intended goal was a better non-stick frying " -"pan, but you can think of a couple of better uses for it." +"A thinly veiled attempt at teaching kids coding skills. Not nearly as " +"exciting as the authors might have hoped, but there's some real knowledge in" +" here." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Streetfighter's Sidekick" -msgid_plural "copies of The Streetfighter's Sidekick" +msgid "The Homebrewer's Bible" +msgid_plural "copies of The Homebrewer's Bible" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36024,18 +34698,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Streetfighter's Sidekick +#. ~ Description for The Homebrewer's Bible #: lang/json/BOOK_from_json.py msgid "" -"A sizable how-to guide for making hand-to-hand combat weapons. Though the " -"processes are thoroughly detailed and several illustrations are provided, " -"they rely heavily on technical jargon. More for machinists-turned-" -"weaponsmiths than streetfighters, really." +"A book full of easy-to-follow recipes and useful advice on homebrewing, " +"malting, and fermenting. It even smells faintly of booze." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Art of Japanese Armormaking" -msgid_plural "copies of The Art of Japanese Armormaking" +msgid "Cooking on a Budget" +msgid_plural "copies of Cooking on a Budget" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36043,16 +34715,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Art of Japanese Armormaking +#. ~ Description for Cooking on a Budget #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details various forms of ancient Japanese " -"armor crafting, and is well illustrated with lots of photos." +"A nice cook book that goes beyond recipes and into the chemistry of food." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Arms and Armor of Imperial China" -msgid_plural "copies of Arms and Armor of Imperial China" +msgid "To Serve Man" +msgid_plural "copies of To Serve Man" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36060,18 +34731,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Arms and Armor of Imperial China +#. ~ Description for To Serve Man #: lang/json/BOOK_from_json.py -msgid "" -"This textbook details the military history of ancient China, with a " -"particular focus on the nature of historical arms and armor. It also " -"details some of the equipment used by other cultures that came into conflict" -" with the empire over various dynasties." +msgid "It's… it's a cookbook!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Studies in Historic Armorsmithing" -msgid_plural "copies of Studies in Historic Armorsmithing" +msgid "Cucina Italiana" +msgid_plural "copies of Cucina Italiana" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36079,16 +34746,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Studies in Historic Armorsmithing +#. ~ Description for Cucina Italiana #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details various forms of ancient European " -"armor crafting, and is well illustrated with lots of photos." +"This cookbook is written in Italian, but handily illustrated with step by " +"step photo instructions." msgstr "" #: lang/json/BOOK_from_json.py -msgid "DIY Compendium" -msgid_plural "copies of DIY Compendium" +msgid "Sushi Made Easy" +msgid_plural "copies of Sushi Made Easy" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36096,16 +34763,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for DIY Compendium +#. ~ Description for Sushi Made Easy #: lang/json/BOOK_from_json.py msgid "" -"A thick, hardbound book detailing countless projects for inventions that " -"claim to improve all aspects of life." +"A simple text for the aspiring sushi lover, this easy to read guide is " +"filled with lots of helpful illustrations for everything from basic rice " +"preparation to setting a proper Japanese table." msgstr "" #: lang/json/BOOK_from_json.py -msgid "A History of Firefighting" -msgid_plural "copies of A History of Firefighting" +msgid "family cookbook" +msgid_plural "family cookbooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36113,17 +34781,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for A History of Firefighting +#. ~ Description for family cookbook #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details the history of firefighting from " -"ancient times into the modern era, with a focus on the technology used to " -"save lives." +"A big binder full of somebody's family recipes. The well-turned pages and " +"creased corners speak volumes of the culinary knowledge contained within. " +"You could probably learn a lot about cooking from studying this domestic " +"artifact." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Swords of the Samurai" -msgid_plural "copies of The Swords of the Samurai" +msgid "Bon Appetit" +msgid_plural "issues of Bon Appetit" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36131,17 +34800,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Swords of the Samurai +#. ~ Description for Bon Appetit #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details various forms of ancient Japanese " -"sword smithing, and is well illustrated with step by step photo " -"instructions." +"Exciting recipes and restaurant reviews. Full of handy tips about cooking." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Historic Weaponsmith" -msgid_plural "copies of The Historic Weaponsmith" +msgid "Glamopolitan" +msgid_plural "issues of Glamopolitan" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36149,17 +34816,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Historic Weaponsmith +#. ~ Description for Glamopolitan #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details various forms of ancient European " -"weapon smithing, and is well illustrated with step by step photo " -"instructions." +"This is a full-size glossy women's magazine. There are a few unoriginal " +"recipes and some simple cooking tips somewhere in between the fashion photos" +" and the sex advice columns." msgstr "" +#. ~ That would translate out to The Scottish Book of Cookery, or The Scottish +#. Cookbook. #: lang/json/BOOK_from_json.py -msgid "Welding and Metallurgy" -msgid_plural "copies of Welding and Metallurgy" +msgid "Ye Scots Beuk o Cuikery" +msgid_plural "copies of Ye Scots Beuk o Cuikery" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36167,16 +34836,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Welding and Metallurgy +#. ~ Description for Ye Scots Beuk o Cuikery #: lang/json/BOOK_from_json.py msgid "" -"A rather technical textbook that illustrates the science and technique of " -"becoming a better welder." +"A semi-translated Gaelic cookbook from sixteenth century Scotland. While a " +"bit difficult to read, as there are a disquieting number of illustrations of" +" people stabbing each other mixed with rants about 'True Scotsman', it " +"provides insights into medieval Scottish cuisine and culture." msgstr "" #: lang/json/BOOK_from_json.py -msgid "101 Home Repairs" -msgid_plural "copies of 101 Home Repairs" +msgid "The Vinegar Maker's Handbook" +msgid_plural "copies of Vinegar Maker's Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36184,16 +34855,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for 101 Home Repairs +#. ~ Description for The Vinegar Maker's Handbook #: lang/json/BOOK_from_json.py msgid "" -"A paperback book detailing 101 home repair projects for the novice " -"carpenter." +"This book describes in detail all the ways that one can make vinegar. You " +"would have thought that there wasn't much to making vinegar, but the girth " +"of this book tells you otherwise." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Complete Home Repair Guide" -msgid_plural "copies of The Complete Home Repair Guide" +msgid "Drink the Harvest" +msgid_plural "copies of Drink the Harvest" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36201,16 +34873,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Complete Home Repair Guide +#. ~ Description for Drink the Harvest #: lang/json/BOOK_from_json.py msgid "" -"A massive book that details virtually every aspect of remodeling and " -"repairing a home, with concise terminology aimed at experienced carpenters." +"Canning foods doesn't have to stop with jam and pickles. This book provides" +" a plethora of juices that can be preserved." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Birdhouse Monthly" -msgid_plural "Birdhouse Monthlies" +msgid "Offal Holiday Cooking" +msgid_plural "copies of Offal Holiday Cooking" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36218,14 +34890,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Birdhouse Monthly +#. ~ Description for Offal Holiday Cooking #: lang/json/BOOK_from_json.py -msgid "A riveting periodical all about birdhouses and their construction." +msgid "" +"Offal Holiday Cooking, by Evelyn Turncoat, is a book of holiday recipes that" +" utilize organ meats from various animals. For the true nose-to-tail cook." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Building for Beginners" -msgid_plural "copies of Building for Beginners" +msgid "Things to do with Milk" +msgid_plural "copies of Things to do with Milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36233,16 +34907,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Building for Beginners +#. ~ Description for Things to do with Milk #: lang/json/BOOK_from_json.py msgid "" -"A large, paperback book detailing several beginner's projects in " -"construction." +"Whatever you want to do with milk, you will probably find it in this book." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Engineering 301" -msgid_plural "copies of Engineering 301" +msgid "Liver-Licious Recipes Your Kids Will Love" +msgid_plural "copies of Liver-Licious Recipes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36250,14 +34923,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Engineering 301 +#. ~ Description for Liver-Licious Recipes Your Kids Will Love #: lang/json/BOOK_from_json.py -msgid "A textbook on civil engineering and construction." +msgid "" +"This cookbook is written by liver enthusiast Tamsyn Beckerleg. Inside " +"you'll find a great deal of anecdotes about the near-certain ruination of " +"children who refuse to eat their liver." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Machinery's Handbook" -msgid_plural "copies of Machinery's Handbook" +msgid "Dainty Dishes Fit for a King" +msgid_plural "copies of Dainty Dishes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36265,19 +34941,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Machinery's Handbook +#. ~ Description for Dainty Dishes Fit for a King #: lang/json/BOOK_from_json.py msgid "" -"This classic reference work contains extensive, dense chapters and tables on" -" materials, metrology, toolmaking, gears, threading and more. This recent " -"edition includes extensive data on what were the latest techniques in " -"additive manufacturing. If you need to know how best complete a certain " -"machining operation, the answer lies somewhere in these pages." +"This cookbook contains many fanciful recipes. Some of them are even worth " +"the trouble to actually prepare. Lovely pen and ink illustrations of " +"overweight knights and gluttonous monks line the pages." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Concrete Constructions" -msgid_plural "copies of Concrete Constructions" +msgid "Eat Your Way to a Fit Physique" +msgid_plural "copies of Eat Your Way" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36285,16 +34959,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Concrete Constructions +#. ~ Description for Eat Your Way to a Fit Physique #: lang/json/BOOK_from_json.py msgid "" -"A collection of notable uses of concrete. Contains detailed directions on " -"how to mix and use cement to form useful aggregates." +"This self-help book, by \"acclaimed nutrition and health guru Amar de " +"Freitas,\" is as dubious as its title. Worse, it is boring. It does, " +"however, contain a few basic cooking instructions." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Guide to Advanced Emergency Care" -msgid_plural "copies of Guide to Advanced Emergency Care" +msgid "Food Fashions for Young Moderns" +msgid_plural "copies of Food Fashions" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36302,16 +34977,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Guide to Advanced Emergency Care +#. ~ Description for Food Fashions for Young Moderns #: lang/json/BOOK_from_json.py msgid "" -"A thick textbook for paramedics describing advanced lifesaving procedures " -"and field-expedient care methods." +"A cookbook professing itself to be for those seeking \"daring and " +"sophisticated flavors.\" The book exhorts the reader to defy convention and" +" break the rules, and then presents a number of useful rules and conventions" +" for preparing food." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Paramedics" -msgid_plural "issues of Paramedics" +msgid "Winemaking for Beginners" +msgid_plural "copies of Winemaking for Beginners" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36319,14 +34996,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Paramedics +#. ~ Description for Winemaking for Beginners #: lang/json/BOOK_from_json.py -msgid "An educational magazine for EMTs." +msgid "" +"Winemaking, is an art form. This book teaches you how to crayon within the " +"lines." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Big Book of First Aid" -msgid_plural "copies of The Big Book of First Aid" +msgid "You Can Can at Home" +msgid_plural "copies of You Can Can at Home" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36334,14 +35013,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Big Book of First Aid +#. ~ Description for You Can Can at Home #: lang/json/BOOK_from_json.py -msgid "It's big and heavy, but full of great information about first aid." +msgid "" +"This entry-level guide to home canning talks about the importance of acidity" +" and food contents in preservation, and how to avoid contaminants in your " +"canning batches." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pocket Guide to First Aid" -msgid_plural "copies of Pocket Guide to First Aid" +msgid "Can Sealer Instructions" +msgid_plural "copies of Can Sealer Instructions" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36349,17 +35031,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Pocket Guide to First Aid +#. ~ Description for Can Sealer Instructions #: lang/json/BOOK_from_json.py msgid "" -"This pocket-sized leather-bound guide to first aid combines a wealth of " -"concise information with simple to follow instructions and easy to read " -"illustrations." +"This dry guide to a home-use tin can sealer goes into clear detail on " +"everything you can seal with the device and how to do it safely, and " +"includes some basic recipes." msgstr "" #: lang/json/BOOK_from_json.py -msgid "First Responder Handbook" -msgid_plural "copies of First Responder Handbook" +msgid "The Baker's Companion" +msgid_plural "copies of The Baker's Companion" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36367,16 +35049,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for First Responder Handbook +#. ~ Description for The Baker's Companion #: lang/json/BOOK_from_json.py msgid "" -"A hardbound book detailing advanced first aid techniques and field-expedient" -" medical care." +"This book promises to teach you the ways of baking, from cakes to souffles." msgstr "" #: lang/json/BOOK_from_json.py -msgid "First Aid Kit Instruction Booklet" -msgid_plural "copies of First Aid Kit Instruction Booklet" +msgid "Fermenting Culture" +msgid_plural "copies of Fermenting Culture" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36384,14 +35065,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for First Aid Kit Instruction Booklet +#. ~ Description for Fermenting Culture #: lang/json/BOOK_from_json.py -msgid "Illustrated how-to guide for your first aid kit." +msgid "" +"Fermenting as a cooking practice only recently came back into vogue before " +"the Cataclysm. Here is a book with dozens of recipes, many of which you are" +" unlikely to ever see the ingredients for again." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Physicians' Desk Reference" -msgid_plural "copies of Physicians' Desk Reference" +msgid "Out of the Holler and into the Home: A guide to home distillation" +msgid_plural "copies of Out of the Holler" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36399,21 +35083,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Physicians' Desk Reference +#. ~ Description for Out of the Holler and into the Home: A guide to home +#. distillation #: lang/json/BOOK_from_json.py msgid "" -"This hefty volume contains all the legally mandated information relevant to " -"physicians for writing prescriptions, generously supported by the efforts " -"and contributions of major pharmaceutical companies. For the most part, it " -"provides information identical to what is available on that of medication " -"packaging inserts, and cannot match the completeness of digital " -"pharmaceutical references like Medisoft. At least it doesn't need power to " -"be used." +"A book describing the history of at home distillation by liquor. Each " +"chapter contains a complete recipe for its namesake." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Merck Veterinary Manual" -msgid_plural "copies of Merck Veterinary Manual" +msgid "Sweets for your Sweet Child" +msgid_plural "copies of Sweets for Sweet" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36421,20 +35101,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Merck Veterinary Manual +#. ~ Description for Sweets for your Sweet Child #: lang/json/BOOK_from_json.py msgid "" -"This expansive text covers 'all domestic species and diseases in veterinary " -"medicine worldwide'. Should you need information regarding zoonotic " -"diseases, off-label use of medication for animals, common dysfunctions and " -"diseases of animals, or any other veterinary reference info, this is your " -"book. There are some interesting new chapters on animal cloning in this " -"edition." +"Sweets for your Sweet Child is the best selling cooking book to the parents " +"of young children. Every recipe uses oversized text, easy words and diagram" +" instructions for children learning to cook with their parents." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Textbook of Advanced Toxicology" -msgid_plural "copies of Textbook of Advanced Toxicology" +msgid "Pocket Survival Cookbook" +msgid_plural "copies of Pocket Survival Cookbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36442,18 +35119,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Textbook of Advanced Toxicology +#. ~ Description for Pocket Survival Cookbook #: lang/json/BOOK_from_json.py msgid "" -"This unassuming volume details the broad spectrum of chemical and biological" -" toxins known to modern medicine. While the obvious focus of the book is " -"the therapy of such poisonings, there are lengthy sections describing the " -"structure and synthesis of some compounds of interest." +"The smallest cookbook on the market, marketed exclusively to the " +"outdoorsman. Packs a surprising number of recipes for its tiny size." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Guns n Ammo" -msgid_plural "issues of Guns n Ammo" +msgid "Tasting India" +msgid_plural "copies of Tasting India" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36461,14 +35136,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Guns n Ammo +#. ~ Description for Tasting India #: lang/json/BOOK_from_json.py -msgid "Reviews of firearms, and various useful tips about their use." +msgid "" +"A thick hardcover book as much about Indian culture as it is a cookbook, " +"clearly written with adoration." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Gun Owner's Handbook" -msgid_plural "copies of The Gun Owner's Handbook" +msgid "All About Swords" +msgid_plural "issues of All About Swords" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36476,16 +35153,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Gun Owner's Handbook +#. ~ Description for All About Swords #: lang/json/BOOK_from_json.py msgid "" -"A thick soft-cover book that claims to be a complete guide to safely " -"operating, maintaining, and repairing firearms." +"An interesting magazine that contains information about swords and sword " +"fighting techniques from all across the world." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pocket Guide to Firearm Safety" -msgid_plural "copies of Pocket Guide to Firearm Safety" +msgid "knife fighter's notes" +msgid_plural "knife fighter's notes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36493,17 +35170,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Pocket Guide to Firearm Safety +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" -"This pocket-sized leather-bound guide to firearm safety combines a wealth of" -" concise information with simple to follow instructions and easy to read " -"illustrations." +"It seems to be a guide to edged weapon combat, poorly photocopied and " +"released on spiral- bound paper. Still, there are lots of useful tips for " +"beginners." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ballistics: Theory, Design, and Application" -msgid_plural "copies of Ballistics: Theory, Design, and Application" +msgid "USMC Sword Manual Procedure" +msgid_plural "copies of USMC Sword Manual Procedures" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36511,18 +35188,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Ballistics: Theory, Design, and Application +#. ~ Description for USMC Sword Manual Procedure #: lang/json/BOOK_from_json.py -msgid "" -"This hefty, hardbound textbook is written in obtuse, complex language. If " -"you already knew a bit about engineering and fabrication, it might be a " -"useful reference on gunsmithing and design, but without that knowledge it'd " -"be better used to prop up a table." +msgid "A text on stationary sword drills in US Marine Corps." msgstr "" #: lang/json/BOOK_from_json.py -msgid "High Explosives Quarterly" -msgid_plural "High Explosives Quarterlies" +msgid "Dance Dance Dance!" +msgid_plural "issues of Dance Dance Dance!" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36530,17 +35203,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for High Explosives Quarterly +#. ~ Description for Dance Dance Dance! #: lang/json/BOOK_from_json.py -msgid "" -"An interesting quarterly report about rocket launchers and recoilless " -"rifles. There are lots of large, exciting photos of explosions and " -"weaponry." +msgid "Learn the moves of the trendiest dances right now." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Jane's Mortars and Rocket Launchers" -msgid_plural "copies of Jane's Mortars and Rocket Launchers" +msgid "The Book of Dances" +msgid_plural "copies of The Book of Dances" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36548,17 +35218,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Jane's Mortars and Rocket Launchers +#. ~ Description for The Book of Dances #: lang/json/BOOK_from_json.py msgid "" -"An incredibly detailed guide to modern rockets, mortars, grenade launchers, " -"and recoilless weaponry. Lavishly illustrated with color photographs, it " -"contains a wealth of information." +"This massive antique book documents dances from all around the world in " +"great detail. A perceptive reader could learn a lot about defensive " +"footwork from some of the war dances." msgstr "" #: lang/json/BOOK_from_json.py -msgid "MIT Guide to Lock Picking" -msgid_plural "copies of MIT Guide to Lock Picking" +msgid "Break a Leg!" +msgid_plural "copies of Break a Leg!" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36566,16 +35236,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for MIT Guide to Lock Picking +#. ~ Description for Break a Leg! #: lang/json/BOOK_from_json.py -msgid "" -"A home-made booklet with large black-and-white pictures of several types of " -"modern locks and general information on how to crack them open." +msgid "The Kids' Guide to Acting and Stagecraft." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Spirit of Aikido" -msgid_plural "The Spirit of Aikido" +msgid "Treasury of Legends about Western Dancing" +msgid_plural "copies of Western Dancing" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36583,14 +35251,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for Treasury of Legends about Western Dancing #: lang/json/BOOK_from_json.py -msgid "A complete guide to Aikido." +msgid "" +"Written by Emanuel Nogueira, a constabulario and historian of Nuevo Laredo, " +"this massive book details the movements and cultural legacies of a variety " +"of North American folk dances." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Practical Pugilism" -msgid_plural "Practical Pugilism" +msgid "AAA Guide" +msgid_plural "copies of AAA Guide" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36598,15 +35269,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for AAA Guide #: lang/json/BOOK_from_json.py msgid "" -"A complete guide to boxing. Let's get ready to rough-up some ruffians!" +"A tourist-centric guide to points of interest throughout the country. " +"Though it focuses on the north-central US, the driving sections contain some" +" practical tips on proper driving techniques." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Capoeira 100" -msgid_plural "Capoeira 100" +msgid "Top Gear magazine" +msgid_plural "Top Gear magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36614,14 +35287,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Top Gear magazine #: lang/json/BOOK_from_json.py -msgid "A complete guide to Capoeira." +msgid "Lots of articles about cars and driving techniques." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Centipede Lu Feng" -msgid_plural "The Centipede Lu Feng" +msgid "The Rules of the Road" +msgid_plural "copies of The Rules of the Road" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36629,14 +35302,25 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Rules of the Road #: lang/json/BOOK_from_json.py -msgid "A complete guide to Centipede Kung Fu." +msgid "" +"A thick textbook for beginning drivers. It contains chapters on laws, safe " +"vehicle operation, and defensive driving concepts." msgstr "" +#. ~ Description for AAA Guide #: lang/json/BOOK_from_json.py -msgid "The Red Crane" -msgid_plural "The Red Crane" +msgid "" +"A tourist-centric guide to points of interest throughout the country. This " +"particular copy is apparently the Anonymous Anarchist's Annual: the cover " +"conceals a wealth of ways to help stick it to The Man, along with plenty of " +"advice for avoiding police." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Advanced Electronics" +msgid_plural "copies of Advanced Electronics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36644,14 +35328,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for Advanced Electronics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Crane Kung Fu." +msgid "A college textbook on circuit design." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Jade Dragon" -msgid_plural "The Jade Dragon" +msgid "Ham Radio Illustrated" +msgid_plural "issues of Ham Radio Illustrated" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36659,14 +35343,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for Ham Radio Illustrated #: lang/json/BOOK_from_json.py -msgid "A complete guide to Dragon Kung Fu." +msgid "" +"An amusing magazine about ham radio, with lots of diagrams and illustrations" +" for making your own electronic devices." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Practical Eskrima" -msgid_plural "Practical Eskrima" +msgid "What's a Transistor?" +msgid_plural "copies of What's a Transistor?" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36674,14 +35360,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for What's a Transistor? #: lang/json/BOOK_from_json.py -msgid "A complete guide to Eskrima." +msgid "A basic manual of electronics and circuit design." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Modern Swordsman" -msgid_plural "The Modern Swordsman" +msgid "101 Important Integrated Circuits" +msgid_plural "copies of 101 Important Integrated Circuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36689,14 +35375,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for 101 Important Integrated Circuits #: lang/json/BOOK_from_json.py -msgid "A complete guide to Fencing." +msgid "" +"This reference manual contains datasheets and pinout diagrams for 101 of the" +" most popular IC chips, including the 555 timer, LM358 op-amp, and LM317 " +"voltage regulator, along with logic chips from the 74xx family, and even the" +" 6502 8-bit processor. If you want to do anything useful with integrated " +"circuits, a reference like this would be indispensable." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Kodokan Judo" -msgid_plural "Kodokan Judo" +msgid "Amateur Home Radio for Enthusiasts" +msgid_plural "copies of Amateur Home Radio for Enthusiasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36704,14 +35395,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Amateur Home Radio for Enthusiasts #: lang/json/BOOK_from_json.py -msgid "A complete guide to Judo." +msgid "" +"A book about ham radio and citizen's band radio. It contains numerous " +"diagrams and illustrations explaining the science behind the electronics." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Shotokan Karate Handbook" -msgid_plural "The Shotokan Karate Handbook" +msgid "computer printout" +msgid_plural "computer printouts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36719,14 +35412,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for computer printout #: lang/json/BOOK_from_json.py -msgid "A complete guide to Shotokan Karate." +msgid "" +"One side of this sheet is printed with a meaningless jumble of characters, " +"but the other side shows a complicated, hand-drawn circuit diagram." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Complete Krav Maga" -msgid_plural "Complete Krav Maga" +msgid "Augmentative Tech Review" +msgid_plural "issues of Augmentative Tech Review" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36734,14 +35429,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Augmentative Tech Review #: lang/json/BOOK_from_json.py -msgid "A complete guide to Krav Maga." +msgid "" +"This annual publication covers the various ways in which people use " +"technology to improve their bodies. There are a few in-depth and thoroughly" +" illustrated articles on bionic systems, though they tend to use too much " +"jargon." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Deaf Leopard" -msgid_plural "The Deaf Leopard" +msgid "lab journal-Herrera" +msgid_plural "lab journals-Herrera" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36749,14 +35448,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for lab journal-Herrera #: lang/json/BOOK_from_json.py -msgid "A complete guide to Leopard Kung Fu." +msgid "" +"This hefty binder contains a multitude of diagrams and technical " +"specifications for various electronic materials. Some of the diagrams use " +"symbols you've not seen before…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Lizard Kuo Chui" -msgid_plural "The Lizard Kuo Chui" +msgid "2XI design binder-CLASSIFIED" +msgid_plural "2XI design binders-CLASSIFIED" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36764,14 +35466,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for 2XI design binder-CLASSIFIED #: lang/json/BOOK_from_json.py -msgid "A complete guide to Lizard Kung Fu." +msgid "" +"This Doubletech Industries binder has several intimidating security warnings" +" on the cover. Probably because it contains complete design specs, " +"technical drawings, and test results for their military-grade bionic " +"implants." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ultimate Muay Thai" -msgid_plural "Ultimate Muay Thai" +msgid "plans for a radio repeater mod" +msgid_plural "plans for a radio repeater mod" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36779,14 +35485,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py -msgid "A complete guide to Muay Thai." +msgid "" +"Instructions on how to create a mod for a radio station terminal which " +"converts the entire system into a repeater." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Essence of Ninjutsu" -msgid_plural "Essence of Ninjutsu" +msgid "Electronic Circuit Theory" +msgid_plural "copies of Electronic Circuit Theory" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36794,14 +35502,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Electronic Circuit Theory #: lang/json/BOOK_from_json.py -msgid "A complete guide to Ninjutsu." +msgid "" +"An advanced college textbook on circuit theory, design, and organization." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Book of Five Rings" -msgid_plural "The Book of Five Rings" +msgid "Robots for Fun & Profit" +msgid_plural "copies of Robots for Fun & Profit" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36809,16 +35518,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for Robots for Fun & Profit #: lang/json/BOOK_from_json.py msgid "" -"A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" -"Ryu." +"A rare book on the design of robots, with lots of helpful step-by-step " +"guides." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Modern Pankratiast" -msgid_plural "The Modern Pankratiast" +msgid "trifacet handling procedures" +msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36826,14 +35535,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py -msgid "A complete guide to Pankration." +msgid "" +"A heavy and disparate binder detailing the deactivation, storage and " +"transport procedures for a so called \"Trifacet\" UVG. The pages and " +"schematics within have been compiled from the internal reports of a vast " +"array of governmental agencies, many of which you had never heard of before." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Scorpion Sun Chien" -msgid_plural "The Scorpion Sun Chien" +msgid "schematics" +msgid_plural "schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36841,14 +35554,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} -#: lang/json/BOOK_from_json.py -msgid "A complete guide to Scorpion Kung Fu." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "The Indonesian Warrior" -msgid_plural "The Indonesian Warrior" +#. ~ Description for schematics +#. ~ Description for animal +#. ~ Description for nearby fire +#. ~ Description for muscle +#. ~ Description for wind +#. ~ Description for sun light +#. ~ Description for metabolism +#. ~ Description for a smoking device and a source of flame +#. ~ Description for none +#. ~ Description for abstract map +#. ~ Description for seeing this is a bug +#. ~ Description for weapon +#: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/furniture_from_json.py lang/json/skill_from_json.py +msgid "seeing this is a bug" +msgid_plural "seeing this is a bug" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36856,14 +35578,9 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} #: lang/json/BOOK_from_json.py -msgid "A complete guide to Pentjak Silat." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "The Black Snake" -msgid_plural "The Black Snake" +msgid "nurse bot schematics" +msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36871,14 +35588,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Snake Kung Fu." +msgid "" +"Bearing the logo of Uncanny, these are assembly plans, design specs, and " +"technical drawings for the nurse bot. Most of this is useless to you, but " +"you could use the assembly plans to re-assemble the robot from salvaged " +"parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Official Taekwondo Training Manual" -msgid_plural "Official Taekwondo Training Manual" +msgid "grocery bot schematics" +msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36886,14 +35607,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Taekwondo." +msgid "" +"Bearing the logo of Uncanny, these are assembly plans, design specs, and " +"technical drawings for the grocery bot. Most of this is useless to you, but" +" you could use the assembly plans to re-assemble the robot from salvaged " +"parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Becoming One with the Tao" -msgid_plural "Becoming One with the Tao" +msgid "police bot schematics" +msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36901,14 +35626,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to T'ai Chi Ch'uan." +msgid "" +"Assembly plans, design specs, and technical drawings for the police bot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The White Tiger" -msgid_plural "The White Tiger" +msgid "eyebot schematics" +msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36916,14 +35644,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Tiger Kung Fu." +msgid "" +"Assembly plans, design specs, and technical drawings for the eyebot. Most " +"of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Toad Lo Mang" -msgid_plural "The Toad Lo Mang" +msgid "security bot schematics" +msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36931,14 +35662,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Toad Kung Fu." +msgid "" +"Assembly plans, design specs, and technical drawings for the security bot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Viper Wei Pai" -msgid_plural "The Viper Wei Pai" +msgid "skitterbot schematics" +msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36946,14 +35680,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Viper Kung Fu." +msgid "" +"Assembly plans, design specs, and technical drawings for the skitterbot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Zui Quan and You" -msgid_plural "Zui Quan and You" +msgid "cleaner bot schematics" +msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36961,14 +35698,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Zui Quan." +msgid "" +"Assembly plans, design specs, and technical drawings for the cleaner bot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Way of the Spear" -msgid_plural "The Way of the Spear" +msgid "miner bot schematics" +msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36976,14 +35716,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Sōjutsu." +msgid "" +"Assembly plans, design specs, and technical drawings for the miner bot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Beautiful Springtime" -msgid_plural "Beautiful Springtime" +msgid "riot control bot schematics" +msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -36991,15 +35734,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Wing Chun Kung-fu." +msgid "" +"Assembly plans, design specs, and technical drawings for the riot control " +"bot. Most of this is useless to you, but you could use the assembly plans " +"to re-assemble the robot from salvaged parts." msgstr "" -#: lang/json/BOOK_from_json.py lang/json/martial_art_from_json.py -#: lang/json/martial_art_from_json.py -msgid "Fior Di Battaglia" -msgid_plural "Fior Di Battaglia" +#: lang/json/BOOK_from_json.py +msgid "lab defense bot schematics" +msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37007,17 +35752,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" -"A completely translated medieval guide teaching various techniques with " -"polearms, there is a chapter about the many variations of common polearms… " -"there are even pictures!" +"Assembly plans, design specs, and technical drawings for the lab defense " +"bot. Most of this is useless to you, but you could use the assembly plans " +"to re-assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Historic European Swordfighting" -msgid_plural "Historic European Swordfighting" +msgid "dispatch schematics" +msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37025,17 +35770,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" -"A complete guide to medieval swordsmanship. Compares the German and Italian" -" traditions for a multitude of swords, in and out of armor, with and without" -" shield." +"Bearing the logo of Northrop, these are assembly plans, design specs, and " +"technical drawings for the dispatch. Most of this is useless to you, but " +"you could use the assembly plans to re-assemble the robot from salvaged " +"parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Internal Combustion Fundamentals" -msgid_plural "copies of Internal Combustion Fundamentals" +msgid "military dispatch schematics" +msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37043,16 +35789,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Internal Combustion Fundamentals +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" -"A college-level textbook that details the operation, maintenance, and repair" -" of internal combustion engines." +"Bearing the logo of Northrop, these are assembly plans, design specs, and " +"technical drawings for the military dispatch. Most of this is useless to " +"you, but you could use the assembly plans to re-assemble the robot from " +"salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "army improvised field repairs manual" -msgid_plural "army improvised field repairs manuals" +msgid "anti-materiel turret schematics" +msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37060,16 +35808,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for army improvised field repairs manual +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" -"A compact manual with faded print detailing a number of improvised field " -"repairs that can be made to vehicles." +"Assembly plans, design specs, and technical drawings for the anti-materiel " +"turret. Most of this is useless to you, but you could use the assembly " +"plans to re-assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Popular Mechanics" -msgid_plural "issues of Popular Mechanics" +msgid "milspec searchlight schematics" +msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37077,16 +35826,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Popular Mechanics +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" -"A magazine about mechanical innovations. Full of entertaining articles and " -"advertisements for esoteric gadgets." +"Assembly plans, design specs, and technical drawings for the milspec " +"searchlight. Most of this is useless to you, but you could use the assembly" +" plans to re-assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Under the Hood" -msgid_plural "copies of Under the Hood" +msgid "The Art of Glassblowing" +msgid_plural "copies of The Art of Glassblowing" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37094,14 +35844,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Under the Hood +#. ~ Description for The Art of Glassblowing #: lang/json/BOOK_from_json.py -msgid "An advanced mechanics manual, covering all sorts of topics." +msgid "" +"A textbook that illustrates the science and technique of the ancient art of " +"glassblowing." msgstr "" #: lang/json/BOOK_from_json.py -msgid "lab journal-Curie" -msgid_plural "lab journals-Curie" +msgid "Plastics & Polymers: Projects for the Classroom" +msgid_plural "copies of Plastics & Polymers: Projects for the Classroom" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37109,18 +35861,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for lab journal-Curie +#. ~ Description for Plastics & Polymers: Projects for the Classroom #: lang/json/BOOK_from_json.py msgid "" -"This lab notebook is filled with the collective discoveries and refinements " -"of a research team dedicated to nuclear energy. You don't think you're " -"ready to start a second Cataclysm, but the general information provided " -"might be useful…" +"A textbook that goes through types and material properties of various common" +" plastics, and how to use them in several common projects." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Hot Rod Chassis & Suspension Handbook" -msgid_plural "copies of Hot Rod Handbook" +msgid "The Prop Builder's Molding and Casting Handbook" +msgid_plural "copies of The Prop Builder's Molding and Casting Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37128,16 +35878,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Hot Rod Chassis & Suspension Handbook +#. ~ Description for The Prop Builder's Molding and Casting Handbook #: lang/json/BOOK_from_json.py msgid "" -"By learning the fundamentals of chassis building and suspension design you " -"will gain the critical knowledge needed to hot rod properly." +"The first book to contain, in one comprehensive volume, every molding and " +"casting procedure of use to the theater props builder of any skill level. " +"The author demonstrates the techniques involved in over thirty materials " +"from papier-mache to breakaway glass." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Mechanical Mastery" -msgid_plural "copies of Mechanical Mastery" +msgid "Antique Adornments" +msgid_plural "copies of Antique Adornments" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37145,16 +35897,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Mechanical Mastery +#. ~ Description for Antique Adornments #: lang/json/BOOK_from_json.py msgid "" -"An advanced guide on mechanics and welding, covering topics like \"Grinding " -"off rust\" and \"Making cursive E's\"." +"A comprehensive and illustrated history of crown, bracelet, necklace and " +"others." msgstr "" #: lang/json/BOOK_from_json.py -msgid "CQB Monthly" -msgid_plural "CQB Monthlies" +msgid "Crafty Crafter's Quarterly" +msgid_plural "Crafty Crafter's Quarterlies" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37162,16 +35914,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for CQB Monthly +#. ~ Description for Crafty Crafter's Quarterly #: lang/json/BOOK_from_json.py msgid "" -"An in-depth look at various styles of close quarters fighting. There's an " -"amusing essay about dirty tricks in the front section." +"A fun quarterly magazine all about macaroni art and things you can make by " +"supergluing found objects together." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Close Quarter Fighting Manual" -msgid_plural "copies of Close Quarter Fighting Manual" +msgid "101 Crafts for Beginners" +msgid_plural "copies of 101 Crafts for Beginners" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37179,16 +35931,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Close Quarter Fighting Manual +#. ~ Description for 101 Crafts for Beginners #: lang/json/BOOK_from_json.py msgid "" -"A well-thumbed hardbound book which illustrates simple strategies and " -"techniques for close quarters combat encounters." +"A large, paperback book detailing a hundred and one beginner's projects in " +"fabrication." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Zombie Survival Guide" -msgid_plural "copies of Zombie Survival Guide" +msgid "The Fletcher's Friend" +msgid_plural "copies of The Fletcher's Friend" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37196,16 +35948,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Zombie Survival Guide +#. ~ Description for The Fletcher's Friend #: lang/json/BOOK_from_json.py msgid "" -"While this seems like it would be very useful in this situation, the sheer " -"amount of misinformation present makes it practically useless." +"This hefty book is devoted to folks looking to handcraft their own arrows. " +"It starts with a hip and snappy disclaimer about the risks, both physical " +"and legal, of using explosives and flammable materials. Look for its " +"companion, \"The Bowyer's Buddy\"!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "black box transcript" -msgid_plural "black box transcripts" +msgid "The Bowyer's Buddy" +msgid_plural "copies of The Bowyer's Buddy" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37213,15 +35967,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for black box transcript +#. ~ Description for The Bowyer's Buddy #: lang/json/BOOK_from_json.py msgid "" -"A full flight log for a military aircraft. Nothing of interest stands out." +"This hefty book is dedicated to craftsfolk and outdoors-y types looking to " +"make their own bows. It recommends its companion volume \"The Fletcher's " +"Friend\" for instructions on producing their ammunition." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ranch Prospectus" -msgid_plural "Ranch Prospectus" +msgid "The Handloader's Helper" +msgid_plural "copies of The Handloader's Helper" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37229,23 +35985,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} -#: lang/json/BOOK_from_json.py -msgid "" -"A short paper of the economic viability of constructing an agricultural " -"outpost." -msgstr "" - -#. ~ Description for standpipe maintenance log +#. ~ Description for The Handloader's Helper #: lang/json/BOOK_from_json.py msgid "" -"This binder details the scheduled maintenance for several plumbing systems " -"throughout the facility." +"Everything you could ever want to know about handloading ammunition, sealed " +"with a… childproof cover. Apparently a liability thing, because the chapter" +" on explosive rounds covers them in excellent detail too." msgstr "" #: lang/json/BOOK_from_json.py -msgid "book of essays" -msgid_plural "books of essays" +msgid "Rivtech design binder" +msgid_plural "Rivtech design binders" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37253,16 +36003,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for book of essays +#. ~ Description for Rivtech design binder #: lang/json/BOOK_from_json.py msgid "" -"A collection of essays by various authors from around the world, including " -"works by Churchill, Mailer, Eco, and Voltaire." +"This Rivtech binder warns that \"Unauthorized readers are our best test " +"subjects.\" With good reason: it contains complete design specs and " +"technical drawings for their entire line of products." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Hitchhiker's Guide to the Cataclysm" -msgid_plural "copies of The Hitchhiker's Guide to the Cataclysm" +msgid "lab journal-Gustav" +msgid_plural "lab journals-Gustav" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37270,16 +36021,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Hitchhiker's Guide to the Cataclysm +#. ~ Description for lab journal-Gustav #: lang/json/BOOK_from_json.py msgid "" -"Inscribed on the cover in large, friendly letters, is the message \"Don't " -"Panic\"." +"This paper notebook is mostly full of boring logs, experimental observations" +" and notes. Mixed in, however, are musings on how to use the lab's vapor " +"deposition machine to deposit amorphous carbon in a diamond-like form onto " +"common metals. The author's intended goal was a better non-stick frying " +"pan, but you can think of a couple of better uses for it." msgstr "" #: lang/json/BOOK_from_json.py -msgid "comic book" -msgid_plural "comic books" +msgid "The Streetfighter's Sidekick" +msgid_plural "copies of The Streetfighter's Sidekick" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37287,14 +36041,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for comic book +#. ~ Description for The Streetfighter's Sidekick #: lang/json/BOOK_from_json.py -msgid "A super-hero comic." +msgid "" +"A sizable how-to guide for making hand-to-hand combat weapons. Though the " +"processes are thoroughly detailed and several illustrations are provided, " +"they rely heavily on technical jargon. More for machinists-turned-" +"weaponsmiths than streetfighters, really." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Computer Gaming" -msgid_plural "issues of Computer Gaming" +msgid "The Art of Japanese Armormaking" +msgid_plural "copies of The Art of Japanese Armormaking" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37302,15 +36060,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Computer Gaming +#. ~ Description for The Art of Japanese Armormaking #: lang/json/BOOK_from_json.py msgid "" -"Reviews of recently released computer games and previews of upcoming titles." +"This in-depth and technical text details various forms of ancient Japanese " +"armor crafting, and is well illustrated with lots of photos." msgstr "" #: lang/json/BOOK_from_json.py -msgid "TIME magazine" -msgid_plural "TIME magazines" +msgid "Arms and Armor of Imperial China" +msgid_plural "copies of Arms and Armor of Imperial China" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37318,14 +36077,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for TIME magazine +#. ~ Description for Arms and Armor of Imperial China #: lang/json/BOOK_from_json.py -msgid "Current events concerning a bunch of people who're all (un)dead now." +msgid "" +"This textbook details the military history of ancient China, with a " +"particular focus on the nature of historical arms and armor. It also " +"details some of the equipment used by other cultures that came into conflict" +" with the empire over various dynasties." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Analyst" -msgid_plural "issues of The Analyst" +msgid "Studies in Historic Armorsmithing" +msgid_plural "copies of Studies in Historic Armorsmithing" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37333,16 +36096,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Analyst +#. ~ Description for Studies in Historic Armorsmithing #: lang/json/BOOK_from_json.py msgid "" -"This news magazine has been described as \"a kind of Reader's Digest for " -"America's corporate elite.\" These concerns are, of course, behind us now." +"This in-depth and technical text details various forms of ancient European " +"armor crafting, and is well illustrated with lots of photos." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Playboy" -msgid_plural "issues of Playboy" +msgid "DIY Compendium" +msgid_plural "copies of DIY Compendium" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37350,14 +36113,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Playboy +#. ~ Description for DIY Compendium #: lang/json/BOOK_from_json.py -msgid "You can read it for the articles. Or not." +msgid "" +"A thick, hardbound book detailing countless projects for inventions that " +"claim to improve all aspects of life." msgstr "" #: lang/json/BOOK_from_json.py -msgid "frequency list" -msgid_plural "frequency lists" +msgid "A History of Firefighting" +msgid_plural "copies of A History of Firefighting" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37365,14 +36130,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for frequency list +#. ~ Description for A History of Firefighting #: lang/json/BOOK_from_json.py -msgid "A notepad with a number of frequencies scribbled on it." +msgid "" +"This in-depth and technical text details the history of firefighting from " +"ancient times into the modern era, with a focus on the technology used to " +"save lives." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Rural Digest-Examiner" -msgid_plural "issues of Rural Digest-Examiner" +msgid "The Swords of the Samurai" +msgid_plural "copies of The Swords of the Samurai" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37380,17 +36148,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Rural Digest-Examiner +#. ~ Description for The Swords of the Samurai #: lang/json/BOOK_from_json.py msgid "" -"A newsweekly covering regional events. There is an article on the winter's " -"snowstorms and several letters to the editor concerning the community " -"response." +"This in-depth and technical text details various forms of ancient Japanese " +"sword smithing, and is well illustrated with step by step photo " +"instructions." msgstr "" #: lang/json/BOOK_from_json.py -msgid "adventure novel" -msgid_plural "adventure novels" +msgid "The Historic Weaponsmith" +msgid_plural "copies of The Historic Weaponsmith" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37398,16 +36166,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for adventure novel +#. ~ Description for The Historic Weaponsmith #: lang/json/BOOK_from_json.py msgid "" -"The stirring tale of a race against time, in search of a lost city located " -"in the heart of the African continent." +"This in-depth and technical text details various forms of ancient European " +"weapon smithing, and is well illustrated with step by step photo " +"instructions." msgstr "" #: lang/json/BOOK_from_json.py -msgid "buddy novel" -msgid_plural "buddy novels" +msgid "Welding and Metallurgy" +msgid_plural "copies of Welding and Metallurgy" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37415,16 +36184,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for buddy novel +#. ~ Description for Welding and Metallurgy #: lang/json/BOOK_from_json.py msgid "" -"A gripping tale of two friends struggling to survive on the streets of New " -"York City." +"A rather technical textbook that illustrates the science and technique of " +"becoming a better welder." msgstr "" #: lang/json/BOOK_from_json.py -msgid "crime novel" -msgid_plural "crime novels" +msgid "101 Home Repairs" +msgid_plural "copies of 101 Home Repairs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37432,24 +36201,33 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for crime novel +#. ~ Description for 101 Home Repairs #: lang/json/BOOK_from_json.py msgid "" -"After their diamond heist goes wrong, the surviving criminals begin to " -"suspect that one of them is a police informant." +"A paperback book detailing 101 home repair projects for the novice " +"carpenter." msgstr "" -#. ~ Description for crime novel +#: lang/json/BOOK_from_json.py +msgid "The Complete Home Repair Guide" +msgid_plural "copies of The Complete Home Repair Guide" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Complete Home Repair Guide #: lang/json/BOOK_from_json.py msgid "" -"A story about three people in the fictional city of Los Santos, a gangster, " -"an upper-class man, and a psychopath, eventually banding together to pull-" -"off the biggest heist in the city's history" +"A massive book that details virtually every aspect of remodeling and " +"repairing a home, with concise terminology aimed at experienced carpenters." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Murdered by the Grapevine" -msgid_plural "copies of Murdered by the Grapevine" +msgid "Birdhouse Monthly" +msgid_plural "Birdhouse Monthlies" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37457,18 +36235,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Murdered by the Grapevine +#. ~ Description for Birdhouse Monthly #: lang/json/BOOK_from_json.py -msgid "" -"This cheap paperback tells the story of a mob boss done in by mere " -"suspicion. She never breaks a confidence, never rats out an accomplice, and" -" never turns her back on a friend. Nonetheless her grip on the reigns of " -"the underworld is eroded by rumor and paranoia." +msgid "A riveting periodical all about birdhouses and their construction." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Midnight Cop" -msgid_plural "copies of Midnight Cop" +msgid "Building for Beginners" +msgid_plural "copies of Building for Beginners" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37476,18 +36250,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Midnight Cop +#. ~ Description for Building for Beginners #: lang/json/BOOK_from_json.py msgid "" -"In this bare-knuckled potboiler, a ruthless police detective schemes to shut" -" down local crime lords by pitting them against each other. When long-" -"simmering resentments finally flare the city learns why they call it \"the " -"dead of night.\"" +"A large, paperback book detailing several beginner's projects in " +"construction." msgstr "" #: lang/json/BOOK_from_json.py -msgid "drama novel" -msgid_plural "drama novels" +msgid "Engineering 301" +msgid_plural "copies of Engineering 301" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37495,14 +36267,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for drama novel +#. ~ Description for Engineering 301 #: lang/json/BOOK_from_json.py -msgid "A real book for real adults." +msgid "A textbook on civil engineering and construction." msgstr "" #: lang/json/BOOK_from_json.py -msgid "erotic novel" -msgid_plural "erotic novels" +msgid "Machinery's Handbook" +msgid_plural "copies of Machinery's Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37510,14 +36282,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for erotic novel +#. ~ Description for Machinery's Handbook #: lang/json/BOOK_from_json.py -msgid "A hackneyed fictional narrative concealing low-grade literary smut." +msgid "" +"This classic reference work contains extensive, dense chapters and tables on" +" materials, metrology, toolmaking, gears, threading and more. This recent " +"edition includes extensive data on what were the latest techniques in " +"additive manufacturing. If you need to know how best complete a certain " +"machining operation, the answer lies somewhere in these pages." msgstr "" #: lang/json/BOOK_from_json.py -msgid "experimental novel" -msgid_plural "experimental novels" +msgid "Concrete Constructions" +msgid_plural "copies of Concrete Constructions" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37525,16 +36302,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for experimental novel +#. ~ Description for Concrete Constructions #: lang/json/BOOK_from_json.py msgid "" -"A bizarre play about the philosophy of existential absurdity. Or maybe it's" -" about two guys waiting for their friend to show up. It's confusing." +"A collection of notable uses of concrete. Contains detailed directions on " +"how to mix and use cement to form useful aggregates." msgstr "" #: lang/json/BOOK_from_json.py -msgid "fantasy novel" -msgid_plural "fantasy novels" +msgid "Guide to Advanced Emergency Care" +msgid_plural "copies of Guide to Advanced Emergency Care" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37542,14 +36319,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for fantasy novel +#. ~ Description for Guide to Advanced Emergency Care #: lang/json/BOOK_from_json.py -msgid "Basic sword & sorcery." +msgid "" +"A thick textbook for paramedics describing advanced lifesaving procedures " +"and field-expedient care methods." msgstr "" #: lang/json/BOOK_from_json.py -msgid "horror novel" -msgid_plural "horror novels" +msgid "Paramedics" +msgid_plural "issues of Paramedics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37557,14 +36336,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for horror novel +#. ~ Description for Paramedics #: lang/json/BOOK_from_json.py -msgid "Maybe not the best reading material considering the situation." +msgid "An educational magazine for EMTs." msgstr "" #: lang/json/BOOK_from_json.py -msgid "mystery novel" -msgid_plural "mystery novels" +msgid "The Big Book of First Aid" +msgid_plural "copies of The Big Book of First Aid" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37572,14 +36351,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for mystery novel +#. ~ Description for The Big Book of First Aid #: lang/json/BOOK_from_json.py -msgid "A detective investigates an unusual murder in a secluded location." +msgid "It's big and heavy, but full of great information about first aid." msgstr "" #: lang/json/BOOK_from_json.py -msgid "road novel" -msgid_plural "road novels" +msgid "Pocket Guide to First Aid" +msgid_plural "copies of Pocket Guide to First Aid" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37587,16 +36366,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for road novel +#. ~ Description for Pocket Guide to First Aid #: lang/json/BOOK_from_json.py msgid "" -"A tale about a group of friends who wander the USA in the 1960s against a " -"backdrop of jazz, poetry and drug use." +"This pocket-sized leather-bound guide to first aid combines a wealth of " +"concise information with simple to follow instructions and easy to read " +"illustrations." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Gore Longtitude" -msgid_plural "copies of Gore Longitude" +msgid "First Responder Handbook" +msgid_plural "copies of First Responder Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37604,17 +36384,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Gore Longtitude +#. ~ Description for First Responder Handbook #: lang/json/BOOK_from_json.py msgid "" -"Award-winning author Cornac McCaffordy weaves a chilling tale of horror and " -"strife, following the compellingly lucrative, seductively dangerous bounty " -"hunting and scalping trade across the western frontier." +"A hardbound book detailing advanced first aid techniques and field-expedient" +" medical care." msgstr "" #: lang/json/BOOK_from_json.py -msgid "romance novel" -msgid_plural "romance novels" +msgid "First Aid Kit Instruction Booklet" +msgid_plural "copies of First Aid Kit Instruction Booklet" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37622,14 +36401,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for romance novel +#. ~ Description for First Aid Kit Instruction Booklet #: lang/json/BOOK_from_json.py -msgid "Drama and mild smut." +msgid "Illustrated how-to guide for your first aid kit." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Love and Circuses" -msgid_plural "copies of Love and Circuses" +msgid "Physicians' Desk Reference" +msgid_plural "copies of Physicians' Desk Reference" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37637,16 +36416,21 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Love and Circuses +#. ~ Description for Physicians' Desk Reference #: lang/json/BOOK_from_json.py msgid "" -"The passionate saga of two Boston politicians fiercely battling each other " -"for the mayor's office, and for Lydia's hand in marriage." +"This hefty volume contains all the legally mandated information relevant to " +"physicians for writing prescriptions, generously supported by the efforts " +"and contributions of major pharmaceutical companies. For the most part, it " +"provides information identical to what is available on that of medication " +"packaging inserts, and cannot match the completeness of digital " +"pharmaceutical references like Medisoft. At least it doesn't need power to " +"be used." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Cloven Kisses" -msgid_plural "copies of Cloven Kisses" +msgid "Merck Veterinary Manual" +msgid_plural "copies of Merck Veterinary Manual" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37654,17 +36438,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Cloven Kisses +#. ~ Description for Merck Veterinary Manual #: lang/json/BOOK_from_json.py msgid "" -"When the devil falls in love with a warlock, his proposal must be infernally" -" wicked. Will hooves, horns, and the scent of sulphur condemn love's flames" -" to hellfire?" +"This expansive text covers 'all domestic species and diseases in veterinary " +"medicine worldwide'. Should you need information regarding zoonotic " +"diseases, off-label use of medication for animals, common dysfunctions and " +"diseases of animals, or any other veterinary reference info, this is your " +"book. There are some interesting new chapters on animal cloning in this " +"edition." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Conquer Me Sweetly" -msgid_plural "copies of Conquer Me Sweetly" +msgid "Textbook of Advanced Toxicology" +msgid_plural "copies of Textbook of Advanced Toxicology" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37672,16 +36459,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Conquer Me Sweetly +#. ~ Description for Textbook of Advanced Toxicology #: lang/json/BOOK_from_json.py msgid "" -"Sweet Providence Books is delighted to offer you this romantic tale of " -"delicious dalliances and daring delights." +"This unassuming volume details the broad spectrum of chemical and biological" +" toxins known to modern medicine. While the obvious focus of the book is " +"the therapy of such poisonings, there are lengthy sections describing the " +"structure and synthesis of some compounds of interest." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Dubliner's Debutante" -msgid_plural "copies of Dubliner's Debutante" +msgid "Guns n Ammo" +msgid_plural "issues of Guns n Ammo" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37689,16 +36478,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Dubliner's Debutante +#. ~ Description for Guns n Ammo #: lang/json/BOOK_from_json.py -msgid "" -"His love songs were only for me, but I preferred the banjo over bagpipes. " -"How could I ever love a kilted yankee of foreign breeding?" +msgid "Reviews of firearms, and various useful tips about their use." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Blood Diodes" -msgid_plural "copies of Blood Diodes" +msgid "The Gun Owner's Handbook" +msgid_plural "copies of The Gun Owner's Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37706,17 +36493,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Blood Diodes +#. ~ Description for The Gun Owner's Handbook #: lang/json/BOOK_from_json.py msgid "" -"He is an automaton, she is a reformed vampire, can love find a way? In this" -" edgy romance by acclaimed author Kea Dekker, heartbreak is just the " -"beginning." +"A thick soft-cover book that claims to be a complete guide to safely " +"operating, maintaining, and repairing firearms." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Envying Heaven" -msgid_plural "copies of Envying Heaven" +msgid "Pocket Guide to Firearm Safety" +msgid_plural "copies of Pocket Guide to Firearm Safety" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37724,16 +36510,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Envying Heaven +#. ~ Description for Pocket Guide to Firearm Safety #: lang/json/BOOK_from_json.py msgid "" -"When her fiancee names a star for her Wanda begins to wonder if an " -"astronomer's wife can ever compete with the allure of the cosmos." +"This pocket-sized leather-bound guide to firearm safety combines a wealth of" +" concise information with simple to follow instructions and easy to read " +"illustrations." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Tall, Dark, and Gruesome" -msgid_plural "copies of Tall, Dark, and Gruesome" +msgid "Ballistics: Theory, Design, and Application" +msgid_plural "copies of Ballistics: Theory, Design, and Application" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37741,17 +36528,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Tall, Dark, and Gruesome +#. ~ Description for Ballistics: Theory, Design, and Application #: lang/json/BOOK_from_json.py msgid "" -"Fatima's obsession with the dead threatens to consume her when she falls in " -"love with a restless ghost. In this provocative romp celebrated author Kea " -"Dekker gently lifts the thin veil separating cold bodies from warm." +"This hefty, hardbound textbook is written in obtuse, complex language. If " +"you already knew a bit about engineering and fabrication, it might be a " +"useful reference on gunsmithing and design, but without that knowledge it'd " +"be better used to prop up a table." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Along Came a Rider" -msgid_plural "copies of Along Came a Rider" +msgid "High Explosives Quarterly" +msgid_plural "High Explosives Quarterlies" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37759,17 +36547,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Along Came a Rider +#. ~ Description for High Explosives Quarterly #: lang/json/BOOK_from_json.py msgid "" -"When Beth's career as a pro steeplechase jockey threatens to divide her from" -" her lover, Beth has to act fast. Will she ever find a man that can keep up" -" with her racing heart?" +"An interesting quarterly report about rocket launchers and recoilless " +"rifles. There are lots of large, exciting photos of explosions and " +"weaponry." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Rogue's Virtue" -msgid_plural "copies of Rogue's Virtue" +msgid "Jane's Mortars and Rocket Launchers" +msgid_plural "copies of Jane's Mortars and Rocket Launchers" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37777,16 +36565,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Rogue's Virtue +#. ~ Description for Jane's Mortars and Rocket Launchers #: lang/json/BOOK_from_json.py msgid "" -"Can Victoria reform the fugitive from justice who wooed her with false " -"pretenses and true passion?" +"An incredibly detailed guide to modern rockets, mortars, grenade launchers, " +"and recoilless weaponry. Lavishly illustrated with color photographs, it " +"contains a wealth of information." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Death of My Secret Life" -msgid_plural "copies of The Death of My Secret Life" +msgid "MIT Guide to Lock Picking" +msgid_plural "copies of MIT Guide to Lock Picking" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37794,17 +36583,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Death of My Secret Life +#. ~ Description for MIT Guide to Lock Picking #: lang/json/BOOK_from_json.py msgid "" -"Makeda comes out to her family, but she's still got plenty of skeletons in " -"her closet. Best selling authoress Kea Dekker breaks all the rules in this " -"macabre story of love and lies." +"A home-made booklet with large black-and-white pictures of several types of " +"modern locks and general information on how to crack them open." msgstr "" #: lang/json/BOOK_from_json.py -msgid "samurai novel" -msgid_plural "samurai novels" +msgid "The Spirit of Aikido" +msgid_plural "The Spirit of Aikido" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37812,17 +36600,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for samurai novel +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py -msgid "" -"The classic tale of a wandering swordsman who comes to a small settlement " -"and is hired to help the townsfolk defend themselves from a band of " -"marauding outlaws. This hardback is quite hefty." +msgid "A complete guide to Aikido." msgstr "" #: lang/json/BOOK_from_json.py -msgid "satire novel" -msgid_plural "satire novels" +msgid "Practical Pugilism" +msgid_plural "Practical Pugilism" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37830,16 +36615,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for satire novel +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" -"A political satire of the pre-apocalypse world. Looking back on it from " -"this side of Armageddon makes it seem all the more ridiculous." +"A complete guide to boxing. Let's get ready to rough-up some ruffians!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The House of God" -msgid_plural "copies of The House of God" +msgid "Capoeira 100" +msgid_plural "Capoeira 100" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37847,16 +36631,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The House of God +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py -msgid "" -"Set in a lightly disguised Boston hospital of high repute, Samuel Shem’s " -"novel dives deep into the agony of absurdity." +msgid "A complete guide to Capoeira." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Catch-22" -msgid_plural "copies of Catch-22" +msgid "The Centipede Lu Feng" +msgid_plural "The Centipede Lu Feng" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37864,17 +36646,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Catch-22 +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py -msgid "" -"There is a short informational forward in this paperback edition of " -"Catch-22. Apparently the original title for Joseph Heller’s excruciatingly " -"brilliant war satire was \"Catch-11.\"" +msgid "A complete guide to Centipede Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Master and Margarita" -msgid_plural "copies of Master and Margarita" +msgid "The Red Crane" +msgid_plural "The Red Crane" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37882,18 +36661,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Master and Margarita +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py -msgid "" -"Featuring a cast that includes Satan, Pontius Pilate, Jesus Christ, " -"vampires, a talking cat, and the literary elite of Moscow, this novel by " -"Mikhail Bulgakov explores philosophical issues on the nature of good and " -"evil." +msgid "A complete guide to Crane Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "A Handful of Dust" -msgid_plural "copies of A Handful of Dust" +msgid "The Jade Dragon" +msgid_plural "The Jade Dragon" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37901,16 +36676,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for A Handful of Dust +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py -msgid "" -"Laced with cynicism, Evelyn Waugh's \"A Handful of Dust\" satirizes a " -"stratum of characters who have wealth, but lack any other credentials." +msgid "A complete guide to Dragon Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Cat’s Cradle" -msgid_plural "copies of Cat’s Cradle" +msgid "Practical Eskrima" +msgid_plural "Practical Eskrima" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37918,16 +36691,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Cat’s Cradle +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py -msgid "" -"A paperback edition of Kurt Vonnegut's fourth novel, in which the threat of " -"nuclear destruction isn't much of an influence on human nature." +msgid "A complete guide to Eskrima." msgstr "" #: lang/json/BOOK_from_json.py -msgid "spy novel" -msgid_plural "spy novels" +msgid "The Modern Swordsman" +msgid_plural "The Modern Swordsman" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37935,15 +36706,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for spy novel +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py -msgid "" -"A tale of intrigue and espionage amongst Nazis, no, Commies, no, Iraqis!" +msgid "A complete guide to Fencing." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Come Fly the Treacherous Skies" -msgid_plural "copies of Come Fly the Treacherous Skies" +msgid "Kodokan Judo" +msgid_plural "Kodokan Judo" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37951,18 +36721,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Come Fly the Treacherous Skies +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py -msgid "" -"This tale of intrigue betrays the story of a debonair mechanic driven by a " -"lust for revenge. As she uncovers a sophisticated network of amateur pilots" -" turned smugglers, the good guys and the bad guys begin to all look the " -"same." +msgid "A complete guide to Judo." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Lies, Damn Lies, and Rocket Science" -msgid_plural "copies of Lies, Damn Lies, and Rocket Science" +msgid "The Shotokan Karate Handbook" +msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37970,18 +36736,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Lies, Damn Lies, and Rocket Science +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py -msgid "" -"This spy novel tells the story of a jaded rocket scientist looking for " -"redemption in all the wrong places. As selling state secrets becomes her " -"career, she learns there isn't much of difference between a double-agent and" -" a triple-agent." +msgid "A complete guide to Shotokan Karate." msgstr "" #: lang/json/BOOK_from_json.py -msgid "swashbuckling novel" -msgid_plural "swashbuckling novels" +msgid "Complete Krav Maga" +msgid_plural "Complete Krav Maga" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -37989,17 +36751,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for swashbuckling novel +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py -msgid "" -"An exciting seventeenth century tale of how an enslaved Irish doctor and his" -" comrades-in-chains escape and become heroic pirates of the Robin Hood " -"variety." +msgid "A complete guide to Krav Maga." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Black Freighter" -msgid_plural "copies of The Black Freighter" +msgid "The Deaf Leopard" +msgid_plural "The Deaf Leopard" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38007,16 +36766,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Black Freighter +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py -msgid "" -"Who watches the watchmen? Pirate Jenny, that's who! This swashbuckling " -"adventure novel will make you feel swell." +msgid "A complete guide to Leopard Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Captain Gosgold and the Sea Rovers of Buzzards Bay" -msgid_plural "copies of The Sea Rovers" +msgid "The Lizard Kuo Chui" +msgid_plural "The Lizard Kuo Chui" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38024,17 +36781,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Captain Gosgold and the Sea Rovers of Buzzards Bay +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py -msgid "" -"This lengthy paperback novel describes the ocean exploits of Captain " -"Gosgold. The British consider him an outlaw, but in America he is a " -"patriot." +msgid "A complete guide to Lizard Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Code of the Buccaneer" -msgid_plural "copies of The Buccaneer" +msgid "Ultimate Muay Thai" +msgid_plural "Ultimate Muay Thai" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38042,16 +36796,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Code of the Buccaneer +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py -msgid "" -"The cover of this paperback pirate story shows a shirtless man and a near " -"shirtless woman. Clearly it is not a dress code." +msgid "A complete guide to Muay Thai." msgstr "" #: lang/json/BOOK_from_json.py -msgid "thriller novel" -msgid_plural "thriller novels" +msgid "Essence of Ninjutsu" +msgid_plural "Essence of Ninjutsu" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38059,14 +36811,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for thriller novel +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py -msgid "A suspenseful tale of betrayal and revenge." +msgid "A complete guide to Ninjutsu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "tragedy novel" -msgid_plural "tragedy novels" +msgid "The Book of Five Rings" +msgid_plural "The Book of Five Rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38074,16 +36826,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for tragedy novel +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" -"The story of two young lovers whose feuding families threaten to keep them " -"apart." +"A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" +"Ryu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "war novel" -msgid_plural "war novels" +msgid "The Modern Pankratiast" +msgid_plural "The Modern Pankratiast" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38091,24 +36843,29 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for war novel +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py -msgid "" -"A thrilling narrative of survival in a prisoner of war camp during the " -"Second World War, filled with riveting subplots about rat farming and " -"dysentery." +msgid "A complete guide to Pankration." msgstr "" -#. ~ Description for war novel #: lang/json/BOOK_from_json.py -msgid "" -"A story about a Bosnian citizen who goes through many hardships and near " -"death during the breakup of Yugoslavia." +msgid "The Scorpion Sun Chien" +msgid_plural "The Scorpion Sun Chien" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Scorpion Sun Chien +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Scorpion Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "western novel" -msgid_plural "western novels" +msgid "The Indonesian Warrior" +msgid_plural "The Indonesian Warrior" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38116,17 +36873,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for western novel +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py -msgid "" -"The classic tale of a gunfighting stranger who comes to a small settlement " -"and is hired to help the townsfolk defend themselves from a band of " -"marauding outlaws." +msgid "A complete guide to Pentjak Silat." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Atwixt a Brace of Cacti" -msgid_plural "copies of Atwixt a Brace of Cacti" +msgid "The Black Snake" +msgid_plural "The Black Snake" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38134,16 +36888,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Atwixt a Brace of Cacti +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py -msgid "" -"A grizzled clodhopper interviews a mess of rangehands, flummoxing longhorns " -"and tenderfoot alike in a flusteration of jawing." +msgid "A complete guide to Snake Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Stinky Bart Puts on Starch" -msgid_plural "copies of Stinky Bart Puts on Starch" +msgid "Official Taekwondo Training Manual" +msgid_plural "Official Taekwondo Training Manual" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38151,16 +36903,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Stinky Bart Puts on Starch +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py -msgid "" -"A local bandit, driven by sadistic impulses, begins offering unlicensed " -"dentistry to brave frontiersmen with few options and fewer teeth." +msgid "A complete guide to Taekwondo." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Six Beans in the Wheel" -msgid_plural "copies of Six Beans in the Wheel" +msgid "Becoming One with the Tao" +msgid_plural "Becoming One with the Tao" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38168,16 +36918,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Six Beans in the Wheel +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py -msgid "" -"The safety is off in this gun slinging tale of revenge and redemption by " -"acclaimed author El Amor." +msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Irons at Calico Queen Annex" -msgid_plural "copies of Irons at Calico Queen Annex" +msgid "The White Tiger" +msgid_plural "The White Tiger" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38185,18 +36933,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Irons at Calico Queen Annex +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py -msgid "" -"The establishment of a telegraph line into the recently named town of Calico" -" Queen threatens to bring with it the long arm of the law. A trio of " -"enterprising gunfighters hatches a plan to keep Calico Queen wild by looting" -" the supply wagons." +msgid "A complete guide to Tiger Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Riot on the Range" -msgid_plural "copies of Riot on the Range" +msgid "The Toad Lo Mang" +msgid_plural "The Toad Lo Mang" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38204,16 +36948,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Riot on the Range +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py -msgid "" -"Best selling author El Amor paints a visceral study in red with his latest " -"western saga: Riot on the Range." +msgid "A complete guide to Toad Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Vaquero Sun" -msgid_plural "copies of Vaquero Sun" +msgid "The Viper Wei Pai" +msgid_plural "The Viper Wei Pai" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38221,17 +36963,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Vaquero Sun +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py -msgid "" -"Western author El Amor relates the story of a dispossessed young man " -"inspired by a heat stroke delusion to pursue justice against an evil land " -"baron." +msgid "A complete guide to Viper Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Vendetta Riders" -msgid_plural "copies of The Vendetta Riders" +msgid "Zui Quan and You" +msgid_plural "Zui Quan and You" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38239,16 +36978,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Vendetta Riders +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py -msgid "" -"A wild young man, fast on the draw, who thinks he has nothing to lose, falls" -" in with a group of gun runners." +msgid "A complete guide to Zui Quan." msgstr "" #: lang/json/BOOK_from_json.py -msgid "phone book" -msgid_plural "phone books" +msgid "The Way of the Spear" +msgid_plural "The Way of the Spear" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38256,17 +36993,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for phone book +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py -msgid "" -"This hefty volume contains the telephone numbers of individuals, businesses," -" and utilities in the nearby area, pretty useless during the apocalypse and " -"all." +msgid "A complete guide to Sōjutsu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "photo album" -msgid_plural "photo albums" +msgid "Beautiful Springtime" +msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38274,17 +37008,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for photo album +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py -msgid "" -"A leather album full of photos of somebody's family. You don't know any of " -"the people in them, but seeing these pictures still makes you think of " -"happier times." +msgid "A complete guide to Wing Chun Kung-fu." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "book of plays" -msgid_plural "books of plays" +#: lang/json/BOOK_from_json.py lang/json/martial_art_from_json.py +#: lang/json/martial_art_from_json.py +msgid "Fior Di Battaglia" +msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38292,16 +37024,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for book of plays +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" -"A collection of plays by various authors from around the world, including " -"scripts by Wilde, Beckett, Checkov, and Shakespeare." +"A completely translated medieval guide teaching various techniques with " +"polearms, there is a chapter about the many variations of common polearms… " +"there are even pictures!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "book of poetry" -msgid_plural "books of poetry" +msgid "Historic European Swordfighting" +msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38309,16 +37042,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for book of poetry +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" -"A collection of poetry by various authors from around the world, including " -"writings by Dickinson, Goethe, Thoreau, and Yeats." +"A complete guide to medieval swordsmanship. Compares the German and Italian" +" traditions for a multitude of swords, in and out of armor, with and without" +" shield." msgstr "" #: lang/json/BOOK_from_json.py -msgid "priest's diary" -msgid_plural "priests' diaries" +msgid "Internal Combustion Fundamentals" +msgid_plural "copies of Internal Combustion Fundamentals" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38326,16 +37060,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for priest's diary +#. ~ Description for Internal Combustion Fundamentals #: lang/json/BOOK_from_json.py msgid "" -"A small book filled with journal entries in Latin. You can read Latin, " -"right?" +"A college-level textbook that details the operation, maintenance, and repair" +" of internal combustion engines." msgstr "" #: lang/json/BOOK_from_json.py -msgid "corporate accounting ledger" -msgid_plural "corporate accounting ledgers" +msgid "army improvised field repairs manual" +msgid_plural "army improvised field repairs manuals" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38343,14 +37077,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for corporate accounting ledger +#. ~ Description for army improvised field repairs manual #: lang/json/BOOK_from_json.py -msgid "If you knew what to look for something might stand out…" +msgid "" +"A compact manual with faded print detailing a number of improvised field " +"repairs that can be made to vehicles." msgstr "" #: lang/json/BOOK_from_json.py -msgid "patient treatment records" -msgid_plural "patient treatment records" +msgid "Popular Mechanics" +msgid_plural "issues of Popular Mechanics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38358,14 +37094,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for Popular Mechanics #: lang/json/BOOK_from_json.py -msgid "A massive stack of medical records that contain every gory detail." +msgid "" +"A magazine about mechanical innovations. Full of entertaining articles and " +"advertisements for esoteric gadgets." msgstr "" #: lang/json/BOOK_from_json.py -msgid "national weather transcripts" -msgid_plural "national weather transcripts" +msgid "Under the Hood" +msgid_plural "copies of Under the Hood" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38373,14 +37111,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for Under the Hood #: lang/json/BOOK_from_json.py -msgid "Old weather records are about as interesting as a rock." +msgid "An advanced mechanics manual, covering all sorts of topics." msgstr "" #: lang/json/BOOK_from_json.py -msgid "big book of short stories" -msgid_plural "big books of short stories" +msgid "lab journal-Curie" +msgid_plural "lab journals-Curie" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38388,16 +37126,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for big book of short stories +#. ~ Description for lab journal-Curie #: lang/json/BOOK_from_json.py msgid "" -"This humongous volume contains a vast collection of short stories by " -"different authors, spanning a wide variety of topics and genres." +"This lab notebook is filled with the collective discoveries and refinements " +"of a research team dedicated to nuclear energy. You don't think you're " +"ready to start a second Cataclysm, but the general information provided " +"might be useful…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "book of tall tales" -msgid_plural "books of tall tales" +msgid "Hot Rod Chassis & Suspension Handbook" +msgid_plural "copies of Hot Rod Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38405,16 +37145,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for book of tall tales +#. ~ Description for Hot Rod Chassis & Suspension Handbook #: lang/json/BOOK_from_json.py msgid "" -"An entertaining collection of early American folklore, featuring tales of " -"larger than life individuals and their amazing adventures." +"By learning the fundamentals of chassis building and suspension design you " +"will gain the critical knowledge needed to hot rod properly." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Visions in Solitude" -msgid_plural "copies of Visions in Solitude" +msgid "Mechanical Mastery" +msgid_plural "copies of Mechanical Mastery" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38422,14 +37162,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Visions in Solitude +#. ~ Description for Mechanical Mastery #: lang/json/BOOK_from_json.py -msgid "A small book detailing 'visions' a prisoner had on death row." +msgid "" +"An advanced guide on mechanics and welding, covering topics like \"Grinding " +"off rust\" and \"Making cursive E's\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "book of classic literature" -msgid_plural "books of classic literature" +msgid "CQB Monthly" +msgid_plural "CQB Monthlies" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38437,269 +37179,269 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for book of classic literature +#. ~ Description for CQB Monthly #: lang/json/BOOK_from_json.py msgid "" -"A book of classic literature, timeless and enjoyable but a bit dense to " -"read." +"An in-depth look at various styles of close quarters fighting. There's an " +"amusing essay about dirty tricks in the front section." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Dickens' \"Bleak House\"." -msgstr "" +msgid "Close Quarter Fighting Manual" +msgid_plural "copies of Close Quarter Fighting Manual" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Close Quarter Fighting Manual #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Great Expectations\" by Charles Dickens." +msgid "" +"A well-thumbed hardbound book which illustrates simple strategies and " +"techniques for close quarters combat encounters." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of William Shinderling's \"Under the Beech Trees\"." -msgstr "" +msgid "Zombie Survival Guide" +msgid_plural "copies of Zombie Survival Guide" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Zombie Survival Guide #: lang/json/BOOK_from_json.py msgid "" -"This is a collection of three Jane Austen novels: \"Pride and Prejudice\", " -"\"Sense and Sensibility\", and \"Emma\"." +"While this seems like it would be very useful in this situation, the sheer " +"amount of misinformation present makes it practically useless." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a well-worn paperback copy of \"Lord of the Flies\"." -msgstr "" +msgid "black box transcript" +msgid_plural "black box transcripts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for black box transcript #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"To Kill a Mockingbird\" by Harper Lee." +msgid "" +"A full flight log for a military aircraft. Nothing of interest stands out." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of F. Scott Fitzgerald's \"The Great Gatsby.\"" -msgstr "" +msgid "Ranch Prospectus" +msgid_plural "Ranch Prospectus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py -msgid "This is copy of Michael Abanaderly's lesser-known work, \"He Walks\"." +msgid "" +"A short paper of the economic viability of constructing an agricultural " +"outpost." msgstr "" +#. ~ Description for standpipe maintenance log #: lang/json/BOOK_from_json.py msgid "" -"This is a collection of several vintage science fiction stories by Ray " -"Bradbury." +"This binder details the scheduled maintenance for several plumbing systems " +"throughout the facility." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Adventures of Tom Sawyer\" by Mark Twain." -msgstr "" +msgid "book of essays" +msgid_plural "books of essays" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for book of essays #: lang/json/BOOK_from_json.py -msgid "This is an illustrated copy of \"Innocents Abroad\" by Mark Twain." +msgid "" +"A collection of essays by various authors from around the world, including " +"works by Churchill, Mailer, Eco, and Voltaire." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Bram Stoker's \"Dracula\", with scholarly commentary in " -"the margins." -msgstr "" +msgid "The Hitchhiker's Guide to the Cataclysm" +msgid_plural "copies of The Hitchhiker's Guide to the Cataclysm" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for The Hitchhiker's Guide to the Cataclysm #: lang/json/BOOK_from_json.py msgid "" -"This is a large print copy of Tolstoy's \"War and Peace\". It might make a " -"decent improvised weapon." +"Inscribed on the cover in large, friendly letters, is the message \"Don't " +"Panic\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a paperback copy of the well-known classic \"Dark Days Ahead\", by " -"K. G. Ranade. There are scrawled margin notes all over it, apparently the " -"workings of a confused and feverish mind." -msgstr "" +msgid "comic book" +msgid_plural "comic books" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for comic book #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"Jane Eyre\". The cover art is quite out of place, " -"making it look more like a dime-store romance novel." +msgid "A super-hero comic." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a perfectly preserved hardcover copy of \"The Gunslinger\" by " -"Stephen King, autographed by the author. It contains a certificate of " -"authenticity pronouncing it to be a first edition." -msgstr "" +msgid "Computer Gaming" +msgid_plural "issues of Computer Gaming" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Computer Gaming #: lang/json/BOOK_from_json.py msgid "" -"This paperback copy of \"Wuthering Heights\" has a large coffee stain on the" -" first page." +"Reviews of recently released computer games and previews of upcoming titles." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a hardbound copy of \"Lady Chatterly's Lover\", by D. H. Lawrence. " -"It has some very explicit illustrations." -msgstr "" +msgid "TIME magazine" +msgid_plural "TIME magazines" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for TIME magazine #: lang/json/BOOK_from_json.py -msgid "" -"This is a hardbound copy of \"The Catcher in the Rye.\". It has some very " -"nicely done illustrations." +msgid "Current events concerning a bunch of people who're all (un)dead now." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a collection of classic renaissance era stories, headlined by \"Don " -"Quixote\"." -msgstr "" +msgid "The Analyst" +msgid_plural "issues of The Analyst" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for The Analyst #: lang/json/BOOK_from_json.py -msgid "This is a paperback copy of \"The Fellowship of the Ring\" by Tolkien." +msgid "" +"This news magazine has been described as \"a kind of Reader's Digest for " +"America's corporate elite.\" These concerns are, of course, behind us now." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a paperback copy of \"The Two Towers\" by Tolkien." -msgstr "" +msgid "Playboy" +msgid_plural "issues of Playboy" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Playboy #: lang/json/BOOK_from_json.py -msgid "This is a paperback copy of \"The Return of the King\" by Tolkien." +msgid "You can read it for the articles. Or not." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a hardbound collection of George Orwell's works, including \"1984\" " -"and \"Animal Farm\" as well as many of his less infamous titles." -msgstr "" +msgid "frequency list" +msgid_plural "frequency lists" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for frequency list #: lang/json/BOOK_from_json.py -msgid "" -"This is a paperback copy of \"Little Women\" by Louisa May Alcott. It " -"appears to have been read a great many times." +msgid "A notepad with a number of frequencies scribbled on it." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a paperback copy of \"Of Mice and Men\" by Steinbeck." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "" -"This is a hefty hardcover copy of \"Run and Run Again\" by Finn Calpay. " -"There is a lengthy forward about the controversy around the book's release." -msgstr "" +msgid "Rural Digest-Examiner" +msgid_plural "issues of Rural Digest-Examiner" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Rural Digest-Examiner #: lang/json/BOOK_from_json.py msgid "" -"This is a hardcover copy of \"The Gates Have Opened\" by Arianna Methusalah." -" You feel like you've read this before, but can't remember where. " -"Something about the book fills you with unease." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Count of Monte Cristo\" by Dumas." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Secret Garden\" by Frances Burnett." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Lieutenant Hornblower\" by C.S. Forester." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Master and Commander\" by Patrick O'Brian." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Warden\" by Anthony Trollope." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Far Side of the World\" by Patrick O'Brian." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"HMS Surprise\" by Patrick O'Brian." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Barchester Towers\" by Anthony Trollope." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Land Ironclads\" by H.G. Wells." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Great Boer War\" by Arthur Conan Doyle." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Crime of the Congo\" by Arthur Conan Doyle." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Parasite\" by Arthur Conan Doyle." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"By Stroke of Sword\" by Andrew Balfour." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Secret Agent\" by Joseph Conrad." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Lord Jim\" by Joseph Conrad." +"A newsweekly covering regional events. There is an article on the winter's " +"snowstorms and several letters to the editor concerning the community " +"response." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Vanity Fair\" by William Makepeace Thackeray." -msgstr "" +msgid "adventure novel" +msgid_plural "adventure novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for adventure novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Luck of Barry Lyndon\" by William Makepeace " -"Thackeray." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"North and South\" by Elizabeth Gaskell." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Mayor of Casterbridge\" by Thomas Hardy." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Wessex Tales\" by Thomas Hardy." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Far from the Madding Crowd\" by Thomas Hardy." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Captains Courageous\" by Rudyard Kipling." +"The stirring tale of a race against time, in search of a lost city located " +"in the heart of the African continent." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Canterbury Tales\" by Geoffrey Chaucer." -msgstr "" +msgid "buddy novel" +msgid_plural "buddy novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for buddy novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Harold, the Last of the Saxons\" by Edward Bulwer-" -"Lytton." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Mr Midshipman Easy\" by Frederick Marryat." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Peter Simple\" by Frederick Marryat." +"A gripping tale of two friends struggling to survive on the streets of New " +"York City." msgstr "" #: lang/json/BOOK_from_json.py -msgid "collector's edition book" -msgid_plural "collector's edition books" +msgid "crime novel" +msgid_plural "crime novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38707,144 +37449,171 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for collector's edition book -#: lang/json/BOOK_from_json.py -msgid "A unique, valuable book that has been kept as a collector's item." -msgstr "" - +#. ~ Description for crime novel #: lang/json/BOOK_from_json.py msgid "" -"This is a high-quality leather bound copy of Charles Dickens' \"A Tale of " -"Two Cities\"." +"After their diamond heist goes wrong, the surviving criminals begin to " +"suspect that one of them is a police informant." msgstr "" +#. ~ Description for crime novel #: lang/json/BOOK_from_json.py msgid "" -"This is a very old but well-preserved copy of Charles Dickens' \"Oliver " -"Twist\"." +"A story about three people in the fictional city of Los Santos, a gangster, " +"an upper-class man, and a psychopath, eventually banding together to pull-" +"off the biggest heist in the city's history" msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This high-quality copy of Jane Austen's \"Pride and Prejudice\" is dog-eared" -" and looks to have been read many times." -msgstr "" +msgid "Murdered by the Grapevine" +msgid_plural "copies of Murdered by the Grapevine" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Murdered by the Grapevine #: lang/json/BOOK_from_json.py msgid "" -"This is a hefty, hardcover print of William Shinderling's \"Vanity before " -"Justice\" with beautiful illustrations." +"This cheap paperback tells the story of a mob boss done in by mere " +"suspicion. She never breaks a confidence, never rats out an accomplice, and" +" never turns her back on a friend. Nonetheless her grip on the reigns of " +"the underworld is eroded by rumor and paranoia." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This copy of Jane Austen's \"Sense and Sensibility\" has a certificate of " -"authenticity declaring it to be an early edition. It would have been worth " -"an enormous amount of money, not long ago." -msgstr "" +msgid "Midnight Cop" +msgid_plural "copies of Midnight Cop" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Midnight Cop #: lang/json/BOOK_from_json.py msgid "" -"This is an excellent quality copy of \"To Kill a Mockingbird\" by Harper " -"Lee." +"In this bare-knuckled potboiler, a ruthless police detective schemes to shut" +" down local crime lords by pitting them against each other. When long-" +"simmering resentments finally flare the city learns why they call it \"the " +"dead of night.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a high-quality leather bound copy of F. Scott Fitzgerald's \"The " -"Great Gatsby.\"" -msgstr "" +msgid "drama novel" +msgid_plural "drama novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for drama novel #: lang/json/BOOK_from_json.py -msgid "" -"This is a hefty, hardcover print of Michael Abanaderly's opus, \"Lady " -"Wanderlust\". It is over a hundred years old, but doesn't look it." +msgid "A real book for real adults." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This copy of Ray Bradbury's \"Fahrenheit 451\" has a certificate of " -"authenticity declaring it to be an early edition. It would have been worth " -"an enormous amount of money, not long ago." -msgstr "" +msgid "erotic novel" +msgid_plural "erotic novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for erotic novel #: lang/json/BOOK_from_json.py -msgid "" -"This high-quality copy of \"Pride and Prejudice and Zombies\" has been " -"autographed by the author." +msgid "A hackneyed fictional narrative concealing low-grade literary smut." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a high-quality leather bound copy of \"The Adventures of Huckleberry" -" Finn\" by Mark Twain. It contains some margin notes which themselves are " -"quite old, and look to have been done by a scholar of some sort." -msgstr "" +msgid "experimental novel" +msgid_plural "experimental novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for experimental novel #: lang/json/BOOK_from_json.py msgid "" -"This is a very nice print of Bram Stoker's \"Dracula\". It has a " -"certificate of authenticity with it that declares it a genuine early " -"edition." +"A bizarre play about the philosophy of existential absurdity. Or maybe it's" +" about two guys waiting for their friend to show up. It's confusing." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This copy of Douglas Adams' \"The Hitchhiker's Guide to the Galaxy\" has a " -"certificate of authenticity declaring it to be a first edition, and is " -"autographed by the author himself." -msgstr "" +msgid "fantasy novel" +msgid_plural "fantasy novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for fantasy novel #: lang/json/BOOK_from_json.py -msgid "" -"This is a high-quality leather bound copy of the well-known classic \"Dark " -"Days Ahead\", by K. G. Ranade." +msgid "Basic sword & sorcery." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a well-kept leather bound copy of \"Oryx and Crake\" by Margaret " -"Atwood. Inscribed in the inner cover is a faded note wishing the owner a " -"happy birthday." -msgstr "" +msgid "horror novel" +msgid_plural "horror novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for horror novel #: lang/json/BOOK_from_json.py -msgid "" -"This bright orange hardcover copy of \"1984\" by George Orwell has been " -"carefully preserved, and appears to be a first or second edition judging " -"from the publisher's information." +msgid "Maybe not the best reading material considering the situation." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a very nice copy of \"Lady Chatterly's Lover\", probably quite " -"expensive in the days before the apocalypse." -msgstr "" +msgid "mystery novel" +msgid_plural "mystery novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for mystery novel #: lang/json/BOOK_from_json.py -msgid "" -"This is a high quality early edition hardcover copy of \"The Handmaid's " -"Tale\" by Margaret Atwood, signed by the author." +msgid "A detective investigates an unusual murder in a secluded location." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This ancient and worn book looks to be an 18th or early 19th century " -"handwritten copy of \"Don Quixote\". In the days of book traders it would " -"have been worth an absolute fortune. Now it's either a priceless piece of " -"history, some light reading before bed, or excellent kindling." -msgstr "" +msgid "road novel" +msgid_plural "road novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for road novel #: lang/json/BOOK_from_json.py msgid "" -"This is a first edition copy of Terry Pratchett's \"The Colour of Magic\". " -"In the inner cover is a handwritten note that reads \"To Chris, thanks for " -"believing I could do it. Best regards, Terry.\"" +"A tale about a group of friends who wander the USA in the 1960s against a " +"backdrop of jazz, poetry and drug use." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Economicon of Dobbs" -msgid_plural "copies of The Economicon" +msgid "Gore Longtitude" +msgid_plural "copies of Gore Longitude" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38852,17 +37621,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Economicon of Dobbs +#. ~ Description for Gore Longtitude #: lang/json/BOOK_from_json.py msgid "" -"These are the prescriptures Pile 18 Disk sg30 File 14. \"Look, small brain " -"of pink earth inside my null-grasping, and she/he receives Logos; and it lay" -" with the Wor.\"" +"Award-winning author Cornac McCaffordy weaves a chilling tale of horror and " +"strife, following the compellingly lucrative, seductively dangerous bounty " +"hunting and scalping trade across the western frontier." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Bobliographon" -msgid_plural "copies of The Bobliographon" +msgid "romance novel" +msgid_plural "romance novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38870,20 +37639,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Bobliographon +#. ~ Description for romance novel #: lang/json/BOOK_from_json.py -msgid "" -"The back cover of this cheaply published paperback reads: \"These newly-" -"released SubGenius revelations will SHOCK those who think they know Bob! " -"Unpredictables are not alone and possess amazing hidden powers of their own!" -" In a world without slack, a yeti lust revival saunters about. WARNING: Do" -" not fail to pay full price for this book; JHVH-1's wrath knows some " -"bounds.\"" +msgid "Drama and mild smut." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Glimpses of Solomon in Yellow" -msgid_plural "copies of Solomon in Yellow" +msgid "Love and Circuses" +msgid_plural "copies of Love and Circuses" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38891,20 +37654,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Glimpses of Solomon in Yellow +#. ~ Description for Love and Circuses #: lang/json/BOOK_from_json.py msgid "" -"This paperback is titled \"Glimpses of Solomon in Yellow; The Initiation " -"Rites of the Starry Wisdom Covenant, by Dr. Enoch Craven.\" It describes " -"not just the investiture of new adherents, but the history and beliefs of " -"the Church of Starry Wisdom. Someone has defaced the sparse citations " -"section by scrawling \"PUPPETS OF ROME!\" over its few pages. The book does" -" not provide any biography for Dr. Craven, let alone academic credentials." +"The passionate saga of two Boston politicians fiercely battling each other " +"for the mayor's office, and for Lydia's hand in marriage." msgstr "" #: lang/json/BOOK_from_json.py -msgid "new-age book" -msgid_plural "new-age books" +msgid "Cloven Kisses" +msgid_plural "copies of Cloven Kisses" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38912,16 +37671,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for new-age book +#. ~ Description for Cloven Kisses #: lang/json/BOOK_from_json.py msgid "" -"A mishmash of self-contradictory advice on spirits, auras, chakras, " -"crystals, and psychic powers." +"When the devil falls in love with a warlock, his proposal must be infernally" +" wicked. Will hooves, horns, and the scent of sulphur condemn love's flames" +" to hellfire?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Your Inner Psychic" -msgid_plural "copies of Your Inner Psychic" +msgid "Conquer Me Sweetly" +msgid_plural "copies of Conquer Me Sweetly" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38929,16 +37689,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Your Inner Psychic +#. ~ Description for Conquer Me Sweetly #: lang/json/BOOK_from_json.py msgid "" -"Could you secretly have psychic powers? Learn to see auras, attune to your " -"chakras, and get down and dirty with your astral self." +"Sweet Providence Books is delighted to offer you this romantic tale of " +"delicious dalliances and daring delights." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Healing Power of Crystals" -msgid_plural "copies of The Healing Power of Crystals" +msgid "Dubliner's Debutante" +msgid_plural "copies of Dubliner's Debutante" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38946,16 +37706,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Healing Power of Crystals +#. ~ Description for Dubliner's Debutante #: lang/json/BOOK_from_json.py msgid "" -"Why waste time with 'doctors' or 'medicine'? This guide will teach you to " -"harness the innate healing power of crystals and nurture your soul." +"His love songs were only for me, but I preferred the banjo over bagpipes. " +"How could I ever love a kilted yankee of foreign breeding?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Essential Secrets" -msgid_plural "copies of Essential Secrets" +msgid "Blood Diodes" +msgid_plural "copies of Blood Diodes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38963,17 +37723,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Essential Secrets +#. ~ Description for Blood Diodes #: lang/json/BOOK_from_json.py msgid "" -"The secret to happiness is simple: aromatherapy. Surround yourself with " -"products from our line of essential oils, using the discount code HAPPY for " -"10 percent off your first purchase, and you too can have it all." +"He is an automaton, she is a reformed vampire, can love find a way? In this" +" edgy romance by acclaimed author Kea Dekker, heartbreak is just the " +"beginning." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Witchcraft for Beginners" -msgid_plural "copies of Witchcraft for Beginners" +msgid "Envying Heaven" +msgid_plural "copies of Envying Heaven" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38981,17 +37741,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Witchcraft for Beginners +#. ~ Description for Envying Heaven #: lang/json/BOOK_from_json.py msgid "" -"This book starts with a spell for self-confidence (hang some lavender above " -"your bathroom mirror), and works its way up to a hex for an ex (slash their " -"tires)." +"When her fiancee names a star for her Wanda begins to wonder if an " +"astronomer's wife can ever compete with the allure of the cosmos." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Advanced Witchcraft" -msgid_plural "copies of Advanced Witchcraft" +msgid "Tall, Dark, and Gruesome" +msgid_plural "copies of Tall, Dark, and Gruesome" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -38999,17 +37758,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Advanced Witchcraft +#. ~ Description for Tall, Dark, and Gruesome #: lang/json/BOOK_from_json.py msgid "" -"This book apparently contains instructions for summoning and battling " -"powerful spirits from other realms. It doesn't say anything about zombies, " -"though." +"Fatima's obsession with the dead threatens to consume her when she falls in " +"love with a restless ghost. In this provocative romp celebrated author Kea " +"Dekker gently lifts the thin veil separating cold bodies from warm." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Beyond The Veil" -msgid_plural "copies of Beyond The Veil" +msgid "Along Came a Rider" +msgid_plural "copies of Along Came a Rider" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39017,17 +37776,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Beyond The Veil +#. ~ Description for Along Came a Rider #: lang/json/BOOK_from_json.py msgid "" -"What happens beyond death might be a mystery to the unlearned, but with " -"careful use of a crystal ball, available for purchase on our website, you " -"too can see beyond the veil." +"When Beth's career as a pro steeplechase jockey threatens to divide her from" +" her lover, Beth has to act fast. Will she ever find a man that can keep up" +" with her racing heart?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Weaponizing Crystals" -msgid_plural "copies of Weaponizing Crystals" +msgid "Rogue's Virtue" +msgid_plural "copies of Rogue's Virtue" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39035,16 +37794,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Weaponizing Crystals +#. ~ Description for Rogue's Virtue #: lang/json/BOOK_from_json.py msgid "" -"While this book claims crystals can be used to cast offensive spells, you " -"suspect it might be more effective to just throw them." +"Can Victoria reform the fugitive from justice who wooed her with false " +"pretenses and true passion?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ancient Alien Secrets" -msgid_plural "copies of Ancient Alien Secrets" +msgid "The Death of My Secret Life" +msgid_plural "copies of The Death of My Secret Life" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39052,17 +37811,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Ancient Alien Secrets +#. ~ Description for The Death of My Secret Life #: lang/json/BOOK_from_json.py msgid "" -"Who made the Bermuda Triangle? How did they build Stonehenge? What did the" -" alien king whisper in Cleopatra's ear that passionate night in the dunes? " -"These answers and more in the Alien Theorists' latest exposé." +"Makeda comes out to her family, but she's still got plenty of skeletons in " +"her closet. Best selling authoress Kea Dekker breaks all the rules in this " +"macabre story of love and lies." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Your Year in Horoscopes" -msgid_plural "copies of Your Year in Horoscopes" +msgid "samurai novel" +msgid_plural "samurai novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39070,17 +37829,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Your Year in Horoscopes +#. ~ Description for samurai novel #: lang/json/BOOK_from_json.py msgid "" -"A long, thorough list of horoscopes, sorted by date and by zodiac sign. " -"Today, you should \"take a minute to relax - It's not the end of the " -"world.\"" +"The classic tale of a wandering swordsman who comes to a small settlement " +"and is hired to help the townsfolk defend themselves from a band of " +"marauding outlaws. This hardback is quite hefty." msgstr "" #: lang/json/BOOK_from_json.py -msgid "book of philosophy" -msgid_plural "books of philosophy" +msgid "satire novel" +msgid_plural "satire novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39088,265 +37847,390 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for book of philosophy +#. ~ Description for satire novel #: lang/json/BOOK_from_json.py msgid "" -"A deep discussion of morality with an emphasis on epistemology and logic." +"A political satire of the pre-apocalypse world. Looking back on it from " +"this side of Armageddon makes it seem all the more ridiculous." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Nietzsche's \"Beyond Good and Evil\". Its cover is dog-" -"eared and creased." -msgstr "" +msgid "The House of God" +msgid_plural "copies of The House of God" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for The House of God #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Unique and Its Property\" by Max Stirner. A modern " -"translation by Wolfi Landstreicher." +"Set in a lightly disguised Boston hospital of high repute, Samuel Shem’s " +"novel dives deep into the agony of absurdity." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"A large, extended version of \"Madness and Civilisation\" by Michel " -"Foucault. The cover features a striking image of a Panopticonic Prison." -msgstr "" +msgid "Catch-22" +msgid_plural "copies of Catch-22" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Catch-22 #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Postmodern Condition: A Report on Knowledge\" by " -"Lyotard." +"There is a short informational forward in this paperback edition of " +"Catch-22. Apparently the original title for Joseph Heller’s excruciatingly " +"brilliant war satire was \"Catch-11.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"A collection of texts and essays by Jacques Derrida. Its pages are loose " -"and yellowed - you should probably handle it with care." -msgstr "" +msgid "The Master and Margarita" +msgid_plural "copies of Master and Margarita" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for The Master and Margarita #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Society of the Spectacle\" by Guy Debord. Its cover " -"shows rows of adults staring placidly into a screen." +"Featuring a cast that includes Satan, Pontius Pilate, Jesus Christ, " +"vampires, a talking cat, and the literary elite of Moscow, this novel by " +"Mikhail Bulgakov explores philosophical issues on the nature of good and " +"evil." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a split copy of both \"An Ethic of Sexual Difference\" and \"This " -"Sex Which Is Not One\" by Luce Irigaray." -msgstr "" +msgid "A Handful of Dust" +msgid_plural "copies of A Handful of Dust" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for A Handful of Dust #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of Baudrillard's \"Simulation and Simulacra\". The cover " -"contains an image of a man holding a colored pill in each hand, with the " -"caption \"Welcome to the Desert of the Real.\". You think you've seen this " -"movie." +"Laced with cynicism, Evelyn Waugh's \"A Handful of Dust\" satirizes a " +"stratum of characters who have wealth, but lack any other credentials." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a small, pocket version of Sartre's \"Existentialism and Humanism\"." -" It looks to have been used as a coaster in a past life." -msgstr "" +msgid "Cat’s Cradle" +msgid_plural "copies of Cat’s Cradle" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Cat’s Cradle #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Practical Ethics\" by Peter Singer. From the local " -"university press." +"A paperback edition of Kurt Vonnegut's fourth novel, in which the threat of " +"nuclear destruction isn't much of an influence on human nature." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a photocopied spiral-bound copy of \"Industrial Society and Its " -"Future\" by 'Freedom Club'. The original looks to have been written on a " -"typewriter before being copied." -msgstr "" +msgid "spy novel" +msgid_plural "spy novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for spy novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Industrial Society and Its Future\" by Ted Kaczynski. " -"Its cover is an image of a hand-crafted wooden box filled with wiring and an" -" ominous looking metal tube. Provocative." +"A tale of intrigue and espionage amongst Nazis, no, Commies, no, Iraqis!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a small reader on Hegel's Dialectics." -msgstr "" +msgid "Come Fly the Treacherous Skies" +msgid_plural "copies of Come Fly the Treacherous Skies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Come Fly the Treacherous Skies #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The State and Revolution\" by Vladimir Lenin. In " -"English, thankfully." +"This tale of intrigue betrays the story of a debonair mechanic driven by a " +"lust for revenge. As she uncovers a sophisticated network of amateur pilots" +" turned smugglers, the good guys and the bad guys begin to all look the " +"same." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"In Defense of Marxism\" by Leon Trotsky." -msgstr "" +msgid "Lies, Damn Lies, and Rocket Science" +msgid_plural "copies of Lies, Damn Lies, and Rocket Science" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Lies, Damn Lies, and Rocket Science #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Steal This Book\" by Abbie Hoffman. There is a security" -" tag on the back cover. It appears to still be active." +"This spy novel tells the story of a jaded rocket scientist looking for " +"redemption in all the wrong places. As selling state secrets becomes her " +"career, she learns there isn't much of difference between a double-agent and" +" a triple-agent." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"Walden: Or Life In The Woods\" by Henry David Thoreau. " -"It contains a dried and pressed leaf as a bookmark." -msgstr "" +msgid "swashbuckling novel" +msgid_plural "swashbuckling novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for swashbuckling novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Female Eunuch\" by Germaine Greer. A child has " -"scribbled over the contents page in red crayon." +"An exciting seventeenth century tale of how an enslaved Irish doctor and his" +" comrades-in-chains escape and become heroic pirates of the Robin Hood " +"variety." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"An Introduction to Metaphysics\" by Bergson." -msgstr "" +msgid "The Black Freighter" +msgid_plural "copies of The Black Freighter" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for The Black Freighter #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Four Fundamental Concepts of Psychoanalysis\" by " -"Jacques Lacan." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of Machiavelli's \"The Prince\". With intro by Q. Skinner." +"Who watches the watchmen? Pirate Jenny, that's who! This swashbuckling " +"adventure novel will make you feel swell." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"On The Revolution of Everyday Life\" by Raul Vangeigem." -msgstr "" +msgid "Captain Gosgold and the Sea Rovers of Buzzards Bay" +msgid_plural "copies of The Sea Rovers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Captain Gosgold and the Sea Rovers of Buzzards Bay #: lang/json/BOOK_from_json.py msgid "" -"This is a pocket copy of \"An Essay on Liberation\" by Herbert Marcuse. The" -" cover contains an image of a pelican." +"This lengthy paperback novel describes the ocean exploits of Captain " +"Gosgold. The British consider him an outlaw, but in America he is a " +"patriot." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Either-Or\" by Søren Kierkegaard." -msgstr "" +msgid "The Code of the Buccaneer" +msgid_plural "copies of The Buccaneer" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for The Code of the Buccaneer #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Allegory of the Cave\" by Plato." +msgid "" +"The cover of this paperback pirate story shows a shirtless man and a near " +"shirtless woman. Clearly it is not a dress code." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Leviathan\" by Thomas Hobbes." -msgstr "" +msgid "thriller novel" +msgid_plural "thriller novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for thriller novel #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Critique Of Pure Reason\" by Immanuel Kant." +msgid "A suspenseful tale of betrayal and revenge." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Principles of Philosophy\" by Descartes." -msgstr "" +msgid "tragedy novel" +msgid_plural "tragedy novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for tragedy novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of both \"On The Genealogy of Morals\" and \"The Gay " -"Science\" by Friederich Nietzsche." +"The story of two young lovers whose feuding families threaten to keep them " +"apart." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"The Myth of Sisyphus\", and other essays, by Albert " -"Camus. The cover depicts a bare-chested man and a large boulder." -msgstr "" +msgid "war novel" +msgid_plural "war novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for war novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Sickness Unto Death\" by Søren Kierkegaard. The " -"pages are dotted with post-it notes." +"A thrilling narrative of survival in a prisoner of war camp during the " +"Second World War, filled with riveting subplots about rat farming and " +"dysentery." msgstr "" +#. ~ Description for war novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Defence of Terrorism\" by Leon Trotsky. Despite the" -" title, it does not actually appear to be defending terrorism." +"A story about a Bosnian citizen who goes through many hardships and near " +"death during the breakup of Yugoslavia." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"Enquiry Concerning Political Justice\" by William " -"Godwin. This thick book is filled with antiquated phrases." -msgstr "" +msgid "western novel" +msgid_plural "western novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for western novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Abolition of Work and Other Essays\" by Bob Black. " -"It is likely that \"The Abolition of Work\" is the most famous essay in this" -" book." +"The classic tale of a gunfighting stranger who comes to a small settlement " +"and is hired to help the townsfolk defend themselves from a band of " +"marauding outlaws." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"What is Property?\" by Pierre-Joseph Proudhon. It looks" -" like this book has a surprisingly long track record of owners." -msgstr "" +msgid "Atwixt a Brace of Cacti" +msgid_plural "copies of Atwixt a Brace of Cacti" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Atwixt a Brace of Cacti #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Conquest of Bread\" by Peter Kropotkin. There is a " -"picture of an old philosopher with magnificent beard, instead of bread, on " -"the cover." +"A grizzled clodhopper interviews a mess of rangehands, flummoxing longhorns " +"and tenderfoot alike in a flusteration of jawing." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"The Trouble with Being Born\" by Emil Cioran. This book" -" might have been printed decades before the Cataclysm since the cover is " -"quite weathered." -msgstr "" +msgid "Stinky Bart Puts on Starch" +msgid_plural "copies of Stinky Bart Puts on Starch" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Stinky Bart Puts on Starch #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The World as Will and Representation\" by Arthur " -"Schopenhauer. It contains a few undecipherable notes and scribbles." +"A local bandit, driven by sadistic impulses, begins offering unlicensed " +"dentistry to brave frontiersmen with few options and fewer teeth." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"Up-Wingers: A Futurist Manifesto\" by FM-2030. It seems" -" that the author's real name is Fereidoun M. Esfandiary." -msgstr "" +msgid "Six Beans in the Wheel" +msgid_plural "copies of Six Beans in the Wheel" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Six Beans in the Wheel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Bastiat Collection\", a large collection of essays " -"by Frederic Bastiat." +"The safety is off in this gun slinging tale of revenge and redemption by " +"acclaimed author El Amor." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"Anarchy, State, and Utopia\" by Robert Nozick, one of " -"the most influential books of modern libertarianism." -msgstr "" +msgid "Irons at Calico Queen Annex" +msgid_plural "copies of Irons at Calico Queen Annex" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Irons at Calico Queen Annex #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Socialism\" by Ludwig von Mises, a critical examination " -"of socialism." +"The establishment of a telegraph line into the recently named town of Calico" +" Queen threatens to bring with it the long arm of the law. A trio of " +"enterprising gunfighters hatches a plan to keep Calico Queen wild by looting" +" the supply wagons." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"The ABC of Communism\" by Nikolai Bukharin, one of the " -"most influential books of early Marxism-Leninism." -msgstr "" +msgid "Riot on the Range" +msgid_plural "copies of Riot on the Range" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" +#. ~ Description for Riot on the Range #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Anti-Capitalist Mentality\" by Ludwig von Mises." +msgid "" +"Best selling author El Amor paints a visceral study in red with his latest " +"western saga: Riot on the Range." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Modal Logic as Metaphysics" -msgid_plural "copies of Modal Logic" +msgid "Vaquero Sun" +msgid_plural "copies of Vaquero Sun" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39354,16 +38238,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Modal Logic as Metaphysics +#. ~ Description for Vaquero Sun #: lang/json/BOOK_from_json.py msgid "" -"A treatise on applying logical tools to questions about that nature of " -"reality, this book contains detailed discussion of metaphysical issues." +"Western author El Amor relates the story of a dispossessed young man " +"inspired by a heat stroke delusion to pursue justice against an evil land " +"baron." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Aesthetics: A Critical Anthology" -msgid_plural "copies of Aesthetics" +msgid "The Vendetta Riders" +msgid_plural "copies of The Vendetta Riders" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39371,16 +38256,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Aesthetics: A Critical Anthology +#. ~ Description for The Vendetta Riders #: lang/json/BOOK_from_json.py msgid "" -"This hardbound anthology presents a collection of readings, scholarly works," -" and critical analyses on the subject of beauty." +"A wild young man, fast on the draw, who thinks he has nothing to lose, falls" +" in with a group of gun runners." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Philosophy of Information" -msgid_plural "copies of The Philosophy of Information" +msgid "phone book" +msgid_plural "phone books" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39388,18 +38273,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Philosophy of Information +#. ~ Description for phone book #: lang/json/BOOK_from_json.py msgid "" -"This university text details a critical investigation of the conceptual " -"nature and basic principles of information. The student will gain a " -"thorough appreciation of the conceptual frameworks commonly used to describe" -" and advance semantic investigations." +"This hefty volume contains the telephone numbers of individuals, businesses," +" and utilities in the nearby area, pretty useless during the apocalypse and " +"all." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Being and Nothingness" -msgid_plural "copies of Being and Nothingness" +msgid "photo album" +msgid_plural "photo albums" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39407,16 +38291,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Being and Nothingness +#. ~ Description for photo album #: lang/json/BOOK_from_json.py msgid "" -"This paperback is a copy of Jean-Paul Sartre's \"Being and Nothingness\". A" -" key work in the existentialist tradition." +"A leather album full of photos of somebody's family. You don't know any of " +"the people in them, but seeing these pictures still makes you think of " +"happier times." msgstr "" #: lang/json/BOOK_from_json.py -msgid "pulp novel" -msgid_plural "pulp novels" +msgid "book of plays" +msgid_plural "books of plays" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39424,15 +38309,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for pulp novel +#. ~ Description for book of plays #: lang/json/BOOK_from_json.py msgid "" -"A hardboiled detective tale filled with hard hitting action and intrigue." +"A collection of plays by various authors from around the world, including " +"scripts by Wilde, Beckett, Checkov, and Shakespeare." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Black Valkyries From Venus" -msgid_plural "copies of Black Valkyries" +msgid "book of poetry" +msgid_plural "books of poetry" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39440,16 +38326,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Black Valkyries From Venus +#. ~ Description for book of poetry #: lang/json/BOOK_from_json.py msgid "" -"You hold in your hands a weather-beaten novel written by someone named \"Lee" -" Racket.\"" +"A collection of poetry by various authors from around the world, including " +"writings by Dickinson, Goethe, Thoreau, and Yeats." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Wrong Tomorrow" -msgid_plural "copies of Wrong Tomorrow" +msgid "priest's diary" +msgid_plural "priests' diaries" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39457,16 +38343,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Wrong Tomorrow +#. ~ Description for priest's diary #: lang/json/BOOK_from_json.py msgid "" -"You hold in your hands a cheap drugstore paperback written by someone named " -"\"Lee Racket.\"" +"A small book filled with journal entries in Latin. You can read Latin, " +"right?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "No God From a Corpse" -msgid_plural "copies of No God" +msgid "corporate accounting ledger" +msgid_plural "corporate accounting ledgers" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39474,20 +38360,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for No God From a Corpse -#. ~ 'Hard-boiled enough to break a spoon' means melodramatic, exaggerated, -#. emotional but simple, and possessing a general lack of literary pretense. -#. Weatherworn means damaged by age. Skirt means woman. +#. ~ Description for corporate accounting ledger #: lang/json/BOOK_from_json.py -msgid "" -"This is a weatherworn paperback written by some skirt named \"Lee Racket.\"" -" It tells how rage and jealousy can turn a man, or a woman, into a monster." -" This story is hard-boiled enough to break a spoon." +msgid "If you knew what to look for something might stand out…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Deep Dive" -msgid_plural "copies of Deep Dive" +msgid "patient treatment records" +msgid_plural "patient treatment records" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39495,19 +38375,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Deep Dive -#. ~ Broad is a dismissive and outdated term that simply means "woman." The -#. term is used because it evokes the (decidedly misogynistic) era in which -#. the pulp genre gained popularity within the United States. +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py -msgid "" -"This dimestore short story about space travel is written by a broad named " -"\"Lee Racket.\"" +msgid "A massive stack of medical records that contain every gory detail." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Planet of the Murderous Squids that Time Forgot!" -msgid_plural "copies of Planet of the Murderous Squids that Time Forgot!" +msgid "national weather transcripts" +msgid_plural "national weather transcripts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39515,18 +38390,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Planet of the Murderous Squids that Time Forgot! +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py -msgid "" -"In this psychedelic adventure novel of cosmic exploration, an elderly " -"assassin discovers a planet too good to be true. Only once it is too late " -"does she discover the harrowing truth at the center of \"The Planet of the " -"Murderous Squids that Time Forgot!\"" +msgid "Old weather records are about as interesting as a rock." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Great Capes of Metropolis" -msgid_plural "copies of The Great Capes of Metropolis" +msgid "big book of short stories" +msgid_plural "big books of short stories" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39534,17 +38405,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Great Capes of Metropolis +#. ~ Description for big book of short stories #: lang/json/BOOK_from_json.py msgid "" -"In this classic pulp paperback of superheroic exploits, a group of masked " -"vigilantes with diverse superpowers learn to work together to defeat the " -"ultimate villain." +"This humongous volume contains a vast collection of short stories by " +"different authors, spanning a wide variety of topics and genres." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Yesterday's Murdered" -msgid_plural "copies of Yesterday's Murdered" +msgid "book of tall tales" +msgid_plural "books of tall tales" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39552,16 +38422,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Yesterday's Murdered +#. ~ Description for book of tall tales #: lang/json/BOOK_from_json.py msgid "" -"In this fast paced pulp noir, a hard-drinking detective with nerves of steel" -" has one last shot at vengeance." +"An entertaining collection of early American folklore, featuring tales of " +"larger than life individuals and their amazing adventures." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Flashgun Condor and the Crimson Criminal" -msgid_plural "copies of Flashgun Condor and the Crimson Criminal" +msgid "Visions in Solitude" +msgid_plural "copies of Visions in Solitude" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39569,18 +38439,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Flashgun Condor and the Crimson Criminal +#. ~ Description for Visions in Solitude #: lang/json/BOOK_from_json.py -msgid "" -"A hot-blooded photographer who fights crime with film, footage, and fists, " -"Condor is more than a mere shutterbug on the crime beat. But will she be " -"able to unravel a devious deception and bring the \"Crimson Criminal\" to " -"justice?" +msgid "A small book detailing 'visions' a prisoner had on death row." msgstr "" #: lang/json/BOOK_from_json.py -msgid "scifi novel" -msgid_plural "scifi novels" +msgid "book of classic literature" +msgid_plural "books of classic literature" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39588,294 +38454,269 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for scifi novel +#. ~ Description for book of classic literature #: lang/json/BOOK_from_json.py -msgid "Aliens, ray guns, and space ships." +msgid "" +"A book of classic literature, timeless and enjoyable but a bit dense to " +"read." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Gibson's \"Neuromancer\". Written in the eighties, it was" -" surprisingly accurate in predicting much of modern society… Until " -"recently." +msgid "This is a copy of Dickens' \"Bleak House\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"The Stars My Destination\" by Alfred Bester.\n" -"\n" -"Tyger, Tyger, Burning bright,\n" -"In the forests of the night:\n" -"What immortal hand or eye,\n" -"Dare frame thy fearful symmetry?" +msgid "This is a copy of \"Great Expectations\" by Charles Dickens." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"The Lathe of Heaven\" by Ursula Le Guin. Dirty finger-" -"stains have smudged the occasional word." +msgid "This is a copy of William Shinderling's \"Under the Beech Trees\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Dispossessed\" by Ursula Le Guin." +msgid "" +"This is a collection of three Jane Austen novels: \"Pride and Prejudice\", " +"\"Sense and Sensibility\", and \"Emma\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Hyperion\" by Dan Simmons." +msgid "This is a well-worn paperback copy of \"Lord of the Flies\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"Endymion\" by Dan Simmons. It opens with a poem by D.H. Lawrence:\n" -"\n" -"Give us gods. Oh give them us!\n" -"Give us gods.\n" -"We are so tired of men\n" -"And motor-power." +msgid "This is a copy of \"To Kill a Mockingbird\" by Harper Lee." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Philip K. Dick's \"Do Androids Dream of Electric Sheep?\"." +msgid "This is a copy of F. Scott Fitzgerald's \"The Great Gatsby.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a dog-eared copy of \"Nova Express\" by William Burroughs." +msgid "This is copy of Michael Abanaderly's lesser-known work, \"He Walks\"." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Foundation\" by Isaac Asimov. The back cover has been " -"ripped off." +"This is a collection of several vintage science fiction stories by Ray " +"Bradbury." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Trial\" by Franz Kafka. This book is rather worn." +msgid "This is a copy of \"The Adventures of Tom Sawyer\" by Mark Twain." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Handmaid's Tale\" by Margaret Atwood." +msgid "This is an illustrated copy of \"Innocents Abroad\" by Mark Twain." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Windup Girl\" by Paolo Bacigalupi. The blurb makes " -"you wonder how Thailand fared the end of the world." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Islands in the Net\" by Bruce Sterling." +"This is a copy of Bram Stoker's \"Dracula\", with scholarly commentary in " +"the margins." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Foundation and Empire\" by Isaac Asimov. The back page " -"contains a hand-written grocery list." +"This is a large print copy of Tolstoy's \"War and Peace\". It might make a " +"decent improvised weapon." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is an almost new copy of \"A Scanner Darkly\" by Philip K. Dick. It " -"still has the smell of new books within its pages." +"This is a paperback copy of the well-known classic \"Dark Days Ahead\", by " +"K. G. Ranade. There are scrawled margin notes all over it, apparently the " +"workings of a confused and feverish mind." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Mirrorshades: A Cyberpunk Anthology\" compiled by Bruce " -"Sterling. The cover has rings of coffee stains over it." +"This is a copy of \"Jane Eyre\". The cover art is quite out of place, " +"making it look more like a dime-store romance novel." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The World of Null-A\" by A. E. van Vogt. This copy " -"looks to have been used to press flowers." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Altered Carbon\" by Richard Morgan." +"This is a perfectly preserved hardcover copy of \"The Gunslinger\" by " +"Stephen King, autographed by the author. It contains a certificate of " +"authenticity pronouncing it to be a first edition." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of Mary Shelly's \"Frankenstein\". Wasn't that the name of " -"the monster?" +"This paperback copy of \"Wuthering Heights\" has a large coffee stain on the" +" first page." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Wasp\" by Eric Frank Russel. The futuristic terrorist's" -" handbook." +"This is a hardbound copy of \"Lady Chatterly's Lover\", by D. H. Lawrence. " +"It has some very explicit illustrations." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"I Am Legend\" by Richard Matheson. The sleeve is " -"covered in dried blood." +"This is a hardbound copy of \"The Catcher in the Rye.\". It has some very " +"nicely done illustrations." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Forever War\" by Joe Haldeman. This copy looks as " -"if it's been slightly chewed by a dog or other large animal." +"This is a collection of classic renaissance era stories, headlined by \"Don " +"Quixote\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Moon Is a Harsh Mistress\" by Robert A. Heinlein." +msgid "This is a paperback copy of \"The Fellowship of the Ring\" by Tolkien." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Samuel R. Delany's \"Nova\". The cover reads \"Review " -"Copy. Not for re-sale.\"" +msgid "This is a paperback copy of \"The Two Towers\" by Tolkien." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Vonnegut's \"The Sirens of Titan\"." +msgid "This is a paperback copy of \"The Return of the King\" by Tolkien." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Grass\" by Sheri S. Tepper. A child has scribbled over " -"the first pages in crayon." +"This is a hardbound collection of George Orwell's works, including \"1984\" " +"and \"Animal Farm\" as well as many of his less infamous titles." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of William Gibson's \"Count Zero\". The spine is stamped " -"with 'Library Copy'. And a sticker reading 'Science Fiction'." +"This is a paperback copy of \"Little Women\" by Louisa May Alcott. It " +"appears to have been read a great many times." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Weapon Makers\" by A. E. van Vogt." +msgid "This is a paperback copy of \"Of Mice and Men\" by Steinbeck." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Record of a Spaceborn Few\" by Becky Chambers. It looks" -" almost brand new." +"This is a hefty hardcover copy of \"Run and Run Again\" by Finn Calpay. " +"There is a lengthy forward about the controversy around the book's release." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Use of Weapons\" by Ian M. Banks. The spine is cracked " -"and worn, some pages appear to be loose." +"This is a hardcover copy of \"The Gates Have Opened\" by Arianna Methusalah." +" You feel like you've read this before, but can't remember where. " +"Something about the book fills you with unease." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Jean-Baptiste Cousin de Grainville's \"Le Dernier Homme\"." +msgid "This is a copy of \"The Count of Monte Cristo\" by Dumas." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Orwell's \"Nineteen Eighty-Four\". The pages are loose " -"and thin. You should probably be careful with this copy." +msgid "This is a copy of \"The Secret Garden\" by Frances Burnett." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Heinlein's \"Stranger in a Strange Land\". The cover is " -"dog-eared and worn." +msgid "This is a copy of \"Lieutenant Hornblower\" by C.S. Forester." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Orson Scott Card's \"Ender's Game\"." +msgid "This is a copy of \"Master and Commander\" by Patrick O'Brian." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Lost World\" by Arthur Conan Doyle." +msgid "This is a copy of \"The Warden\" by Anthony Trollope." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Islands in the Sky\" by Arthur C. Clarke." +msgid "This is a copy of \"The Far Side of the World\" by Patrick O'Brian." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of H. G. Wells' \"The Island of Doctor Moreau\"." +msgid "This is a copy of \"HMS Surprise\" by Patrick O'Brian." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Stanislaw Lem's \"His Masters Voice\"." +msgid "This is a copy of \"Barchester Towers\" by Anthony Trollope." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Fred Hoyle's \"The Black Cloud\"." +msgid "This is a copy of \"The Land Ironclads\" by H.G. Wells." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Last and First Men\" by Olaf Stapeldon." +msgid "This is a copy of \"The Great Boer War\" by Arthur Conan Doyle." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Stanislaw Lem's \"Solaris\"." +msgid "This is a copy of \"The Crime of the Congo\" by Arthur Conan Doyle." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Theodore Sturgeon's \"More Than Human\"." +msgid "This is a copy of \"The Parasite\" by Arthur Conan Doyle." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Vurt\" by Jeff Noon." +msgid "This is a copy of \"By Stroke of Sword\" by Andrew Balfour." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"A Canticle for Leibowitz\" by Walter M. Miller Jr." +msgid "This is a copy of \"The Secret Agent\" by Joseph Conrad." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The War of The Worlds\" by H.G Wells." +msgid "This is a copy of \"Lord Jim\" by Joseph Conrad." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Iron Sunrise\" by Charles Stross." +msgid "This is a copy of \"Vanity Fair\" by William Makepeace Thackeray." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Hunger Games\" by Suzanne Collins. Reading the " -"blurb reminds you of a Japanese movie you think you once caught on the " -"television late at night." +"This is a copy of \"The Luck of Barry Lyndon\" by William Makepeace " +"Thackeray." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Day of the Triffids\" by John Wyndham." +msgid "This is a copy of \"North and South\" by Elizabeth Gaskell." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"A Clockwork Orange\" by Anthony Burges." +msgid "This is a copy of \"The Mayor of Casterbridge\" by Thomas Hardy." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Man Who Fell to Earth\" by Walter Tevis." +msgid "This is a copy of \"Wessex Tales\" by Thomas Hardy." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Simulacron-3\" by Daniel F. Galouye." +msgid "This is a copy of \"Far from the Madding Crowd\" by Thomas Hardy." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Glass Bees\" by Ernst Jünger." +msgid "This is a copy of \"Captains Courageous\" by Rudyard Kipling." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Journey to The Center of the Earth\" by Jules Verne." +msgid "This is a copy of \"The Canterbury Tales\" by Geoffrey Chaucer." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of Larry Niven's \"Ringworld\". There are a couple of pages " -"missing from the end of the book. Luckily only mail-order advertisements." +"This is a copy of \"Harold, the Last of the Saxons\" by Edward Bulwer-" +"Lytton." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a well-worn copy of \"The Hitchhikers Guide to the Galaxy\" by " -"Douglas Adams." +msgid "This is a copy of \"Mr Midshipman Easy\" by Frederick Marryat." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Dune" -msgid_plural "copies of Dune" +msgid "This is a copy of \"Peter Simple\" by Frederick Marryat." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "collector's edition book" +msgid_plural "collector's edition books" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -39883,185 +38724,144 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Dune +#. ~ Description for collector's edition book #: lang/json/BOOK_from_json.py -msgid "" -"This is a dog-eared copy of \"Dune\" by Frank Herbert. It has sand between " -"some of its pages. Weird." +msgid "A unique, valuable book that has been kept as a collector's item." msgstr "" -#. ~ Description for Dune #: lang/json/BOOK_from_json.py msgid "" -"This is a sturdy copy of \"Dune\" by Frank Herbert. It is a fairly new " -"reprint with the words \"SOON TO BE A MAJOR MOTION PICTURE\" splashed across" -" its dust jacket." +"This is a high-quality leather bound copy of Charles Dickens' \"A Tale of " +"Two Cities\"." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Parable of the Talents" -msgid_plural "copies of Parable of the Talents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Description for Parable of the Talents #: lang/json/BOOK_from_json.py msgid "" -"This is a sturdy copy of \"Parable of the Talents.\". It is Octavia " -"Butler's sequel to her book \"Parable of the Sower.\"" +"This is a very old but well-preserved copy of Charles Dickens' \"Oliver " +"Twist\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Fifth Season" -msgid_plural "signed copies of Fifth Season" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This high-quality copy of Jane Austen's \"Pride and Prejudice\" is dog-eared" +" and looks to have been read many times." +msgstr "" -#. ~ Description for The Fifth Season #: lang/json/BOOK_from_json.py msgid "" -"This is a signed hardcover copy of the Hugo award winning \"The Fifth " -"Season\" by N.K. Jemisin. It smells faintly of dirt." +"This is a hefty, hardcover print of William Shinderling's \"Vanity before " +"Justice\" with beautiful illustrations." msgstr "" #: lang/json/BOOK_from_json.py -msgid "We" -msgid_plural "copies of We" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This copy of Jane Austen's \"Sense and Sensibility\" has a certificate of " +"authenticity declaring it to be an early edition. It would have been worth " +"an enormous amount of money, not long ago." +msgstr "" -#. ~ Description for We #: lang/json/BOOK_from_json.py msgid "" -"This hardback book is titled \"The Annotated We: A New Translation of Evgeny Zamiatin's Novel.\"\n" -"\n" -"It is Vladimir Wozniuk's 2015 translation of \"We,\" originally published in 1924 and generally seen as the first modern dystopian novel. The commentary examines the profusive allusions and highlights the poetic nature of Zamiatin's language." +"This is an excellent quality copy of \"To Kill a Mockingbird\" by Harper " +"Lee." msgstr "" -#. ~ Description for We #: lang/json/BOOK_from_json.py msgid "" -"A seminal work of dystopian fiction, Evgeny Zamiatin's \"We\" was first published in 1924 but suppresed by the Soviet Union until 1988.\n" -"\n" -"This mass-market 1993 edition you've found was translated from the Russian by Clarence Brown and includes a short introduction. The slightly worn cover features a surrealist photo of a person gazing backward suspiciouly." +"This is a high-quality leather bound copy of F. Scott Fitzgerald's \"The " +"Great Gatsby.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Cyberiad" -msgid_plural "copies of The Cyberiad" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a hefty, hardcover print of Michael Abanaderly's opus, \"Lady " +"Wanderlust\". It is over a hundred years old, but doesn't look it." +msgstr "" -#. ~ Description for The Cyberiad #: lang/json/BOOK_from_json.py msgid "" -"This 350 page paperback presents the exploits and robotic rivalries of Trurl" -" and Klapaucius. Originally written in Polish by Stanislaw Lem, it has been" -" masterfully translated into English by Michael Kandel." +"This copy of Ray Bradbury's \"Fahrenheit 451\" has a certificate of " +"authenticity declaring it to be an early edition. It would have been worth " +"an enormous amount of money, not long ago." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Brave New World" -msgid_plural "copies of Brave New World" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This high-quality copy of \"Pride and Prejudice and Zombies\" has been " +"autographed by the author." +msgstr "" -#. ~ Description for Brave New World #: lang/json/BOOK_from_json.py msgid "" -"This is weather worn copy of \"Brave New World\" by Aldous Huxley looks like" -" it has been left out in rain. The novel begins in a bleak building where " -"fetuses are grown in bottles on an assembly line." +"This is a high-quality leather bound copy of \"The Adventures of Huckleberry" +" Finn\" by Mark Twain. It contains some margin notes which themselves are " +"quite old, and look to have been done by a scholar of some sort." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Roadside Picnic" -msgid_plural "copies of Roadside Picnic" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a very nice print of Bram Stoker's \"Dracula\". It has a " +"certificate of authenticity with it that declares it a genuine early " +"edition." +msgstr "" -#. ~ Description for Roadside Picnic #: lang/json/BOOK_from_json.py msgid "" -"This is a paperback copy of \"Roadside Picnic\" by Arkady and Boris " -"Strugatsky. It has been translated into over 20 languages, occasionally " -"under the name \"Stalker.\" This copy, fortunately for you, just happens to" -" be in your native tongue." +"This copy of Douglas Adams' \"The Hitchhiker's Guide to the Galaxy\" has a " +"certificate of authenticity declaring it to be a first edition, and is " +"autographed by the author himself." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Fahrenheit 451" -msgid_plural "copies of Fahrenheit 451" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a high-quality leather bound copy of the well-known classic \"Dark " +"Days Ahead\", by K. G. Ranade." +msgstr "" -#. ~ Description for Fahrenheit 451 #: lang/json/BOOK_from_json.py -msgid "This is a copy of Ray Bradbury's \"Fahrenheit 451.\"" +msgid "" +"This is a well-kept leather bound copy of \"Oryx and Crake\" by Margaret " +"Atwood. Inscribed in the inner cover is a faded note wishing the owner a " +"happy birthday." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"Some joker has gently burnt the exterior edge of this paperback dystopia. " -"It's still perfectly readable." +"This bright orange hardcover copy of \"1984\" by George Orwell has been " +"carefully preserved, and appears to be a first or second edition judging " +"from the publisher's information." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"\"It was a pleasure to burn. It was a special pleasure to see things eaten," -" to see things blackened and changed.\"" +"This is a very nice copy of \"Lady Chatterly's Lover\", probably quite " +"expensive in the days before the apocalypse." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This 1979 softcover edition of Ray Bradbury's \"Fahrenheit 451\" was once a " -"library book. It still has a light blue checkout card pocketed on the torn " -"back cover. One \"Suzanne Collins\" borrowed it in 1981." +"This is a high quality early edition hardcover copy of \"The Handmaid's " +"Tale\" by Margaret Atwood, signed by the author." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"The red and black paperback novel you hold in your hands is a modern reprint" -" of Ray Bradbury's \"Fahrenheit 451.\"" +"This ancient and worn book looks to be an 18th or early 19th century " +"handwritten copy of \"Don Quixote\". In the days of book traders it would " +"have been worth an absolute fortune. Now it's either a priceless piece of " +"history, some light reading before bed, or excellent kindling." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This scifi novel is divided into three parts: \"The Hearth and the " -"Salamander,\" \"The Sieve and the Sand,\", and \"Burning Bright.\"" +"This is a first edition copy of Terry Pratchett's \"The Colour of Magic\". " +"In the inner cover is a handwritten note that reads \"To Chris, thanks for " +"believing I could do it. Best regards, Terry.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "sports novel" -msgid_plural "sports novels" +msgid "The Economicon of Dobbs" +msgid_plural "copies of The Economicon" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40069,17 +38869,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for sports novel +#. ~ Description for The Economicon of Dobbs #: lang/json/BOOK_from_json.py msgid "" -"The dramatic tale of a small-time boxer who gets a rare chance to fight the " -"heavy-weight champion, and seize his one chance to make a better life for " -"himself while impressing the cute girl who works in the pet store." +"These are the prescriptures Pile 18 Disk sg30 File 14. \"Look, small brain " +"of pink earth inside my null-grasping, and she/he receives Logos; and it lay" +" with the Wor.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Art of Bunting" -msgid_plural "copies of The Art of Bunting" +msgid "The Bobliographon" +msgid_plural "copies of The Bobliographon" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40087,17 +38887,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Art of Bunting +#. ~ Description for The Bobliographon #: lang/json/BOOK_from_json.py msgid "" -"While you might be forgiven for expecting instructions for party decorating," -" it is in fact a novel about baseball. In the final climactic game a young " -"star proves to himself that he is ready for the big leagues." +"The back cover of this cheaply published paperback reads: \"These newly-" +"released SubGenius revelations will SHOCK those who think they know Bob! " +"Unpredictables are not alone and possess amazing hidden powers of their own!" +" In a world without slack, a yeti lust revival saunters about. WARNING: Do" +" not fail to pay full price for this book; JHVH-1's wrath knows some " +"bounds.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Touchdown Special" -msgid_plural "copies of The Touchdown Special" +msgid "Glimpses of Solomon in Yellow" +msgid_plural "copies of Solomon in Yellow" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40105,16 +38908,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Touchdown Special +#. ~ Description for Glimpses of Solomon in Yellow #: lang/json/BOOK_from_json.py msgid "" -"In this absorbing novel of football fandom, a pizza delivery driver makes a " -"desperate gamble on the monday night game." +"This paperback is titled \"Glimpses of Solomon in Yellow; The Initiation " +"Rites of the Starry Wisdom Covenant, by Dr. Enoch Craven.\" It describes " +"not just the investiture of new adherents, but the history and beliefs of " +"the Church of Starry Wisdom. Someone has defaced the sparse citations " +"section by scrawling \"PUPPETS OF ROME!\" over its few pages. The book does" +" not provide any biography for Dr. Craven, let alone academic credentials." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Trophy Envy" -msgid_plural "copies of Trophy Envy" +msgid "new-age book" +msgid_plural "new-age books" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40122,16 +38929,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Trophy Envy +#. ~ Description for new-age book #: lang/json/BOOK_from_json.py msgid "" -"This paperback tells the story of a tennis prodigy who begins to regret her " -"own success." +"A mishmash of self-contradictory advice on spirits, auras, chakras, " +"crystals, and psychic powers." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Semi-Rough" -msgid_plural "copies of Semi-Rough" +msgid "Your Inner Psychic" +msgid_plural "copies of Your Inner Psychic" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40139,16 +38946,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Semi-Rough +#. ~ Description for Your Inner Psychic #: lang/json/BOOK_from_json.py msgid "" -"This novel follows the humorous adventures of a professional athlete turned " -"amateur reporter." +"Could you secretly have psychic powers? Learn to see auras, attune to your " +"chakras, and get down and dirty with your astral self." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Golf Omnivore" -msgid_plural "copies of The Golf Omnivore" +msgid "The Healing Power of Crystals" +msgid_plural "copies of The Healing Power of Crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40156,16 +38963,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Golf Omnivore +#. ~ Description for The Healing Power of Crystals #: lang/json/BOOK_from_json.py msgid "" -"This hardback book is a collection of short stories in which love and golf " -"are the only two constants." +"Why waste time with 'doctors' or 'medicine'? This guide will teach you to " +"harness the innate healing power of crystals and nurture your soul." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Uniform Boy" -msgid_plural "copies of Uniform Boy" +msgid "Essential Secrets" +msgid_plural "copies of Essential Secrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40173,16 +38980,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Uniform Boy +#. ~ Description for Essential Secrets #: lang/json/BOOK_from_json.py msgid "" -"This hardback book about an equipment manager for a minor league team " -"explores themes of loyalty and resentment." +"The secret to happiness is simple: aromatherapy. Surround yourself with " +"products from our line of essential oils, using the discount code HAPPY for " +"10 percent off your first purchase, and you too can have it all." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Budgetball: Winning a Rigged Game" -msgid_plural "copies of Budgetball" +msgid "Witchcraft for Beginners" +msgid_plural "copies of Witchcraft for Beginners" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40190,16 +38998,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Budgetball: Winning a Rigged Game +#. ~ Description for Witchcraft for Beginners #: lang/json/BOOK_from_json.py msgid "" -"Budgetball tells the true story of the curious case of Benny Bobbin and his " -"quixotic quest to defeat the deep-pocketed Orlando O's." +"This book starts with a spell for self-confidence (hang some lavender above " +"your bathroom mirror), and works its way up to a hex for an ex (slash their " +"tires)." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Lads of Summer" -msgid_plural "copies of The Lads of Summer" +msgid "Advanced Witchcraft" +msgid_plural "copies of Advanced Witchcraft" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40207,16 +39016,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Lads of Summer +#. ~ Description for Advanced Witchcraft #: lang/json/BOOK_from_json.py msgid "" -"This well worn paperback details the early baseball careers of one of the " -"greatest teams professional sports has ever known." +"This book apparently contains instructions for summoning and battling " +"powerful spirits from other realms. It doesn't say anything about zombies, " +"though." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Volleyball: Get Ready to Get Ready" -msgid_plural "copies of Volleyball" +msgid "Beyond The Veil" +msgid_plural "copies of Beyond The Veil" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40224,17 +39034,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Volleyball: Get Ready to Get Ready +#. ~ Description for Beyond The Veil #: lang/json/BOOK_from_json.py msgid "" -"\"Volleyball: Get Ready to Get Ready\" is YOUR illustrated guide to level up" -" your game. With full-color photos and diagrams, you will learn the drills " -"and techniques you need to dominate the competition." +"What happens beyond death might be a mystery to the unlearned, but with " +"careful use of a crystal ball, available for purchase on our website, you " +"too can see beyond the veil." msgstr "" #: lang/json/BOOK_from_json.py -msgid "William G. Morgan, the Godfather of Volleyball" -msgid_plural "copies of The Godfather of Volleyball" +msgid "Weaponizing Crystals" +msgid_plural "copies of Weaponizing Crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40242,18 +39052,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for William G. Morgan, the Godfather of Volleyball +#. ~ Description for Weaponizing Crystals #: lang/json/BOOK_from_json.py msgid "" -"This odd little hardbound book is only 98 pages long, and a dozen of those " -"are comprised of grainy black and white photos. If you read this book, you " -"learn that volleyball was originally called \"Mintonette\" and also some " -"biographic details about its inventor." +"While this book claims crystals can be used to cast offensive spells, you " +"suspect it might be more effective to just throw them." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Legendary Bike Rides" -msgid_plural "copies of Bike Rides" +msgid "Ancient Alien Secrets" +msgid_plural "copies of Ancient Alien Secrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40261,18 +39069,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Legendary Bike Rides +#. ~ Description for Ancient Alien Secrets #: lang/json/BOOK_from_json.py msgid "" -"This unwieldy coffeetable book is titled \"LEGENDARY Bike Rides Around the " -"WORLD.\" It provides a wealth of detail about paved bike trails in every " -"part of the globe except New England. But if you make it to Patagonia on " -"bike, you're all set." +"Who made the Bermuda Triangle? How did they build Stonehenge? What did the" +" alien king whisper in Cleopatra's ear that passionate night in the dunes? " +"These answers and more in the Alien Theorists' latest exposé." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Natare Ergo Sum" -msgid_plural "copies of Natare Ergo Sum" +msgid "Your Year in Horoscopes" +msgid_plural "copies of Your Year in Horoscopes" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40280,18 +39087,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Natare Ergo Sum +#. ~ Description for Your Year in Horoscopes #: lang/json/BOOK_from_json.py msgid "" -"The poorly translated title is supposed to be Latin for \"I Swim, Therefore " -"I Am.\" This short hardback presents \"A Philosophy of Swimming\" and then " -"playfully attributes a variety of famous philosophical expressions into " -"edorsements for the sport of swimming. It's not a bad book, just a bit odd." +"A long, thorough list of horoscopes, sorted by date and by zodiac sign. " +"Today, you should \"take a minute to relax - It's not the end of the " +"world.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Stratosphere: The Rise of Hoops" -msgid_plural "copies of Stratosphere" +msgid "book of philosophy" +msgid_plural "books of philosophy" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40299,325 +39105,265 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Stratosphere: The Rise of Hoops +#. ~ Description for book of philosophy #: lang/json/BOOK_from_json.py msgid "" -"\"Stratosphere: The Rise of Hoops\" chronicles four decades of professional " -"basketball against a backdrop of sustained social change." +"A deep discussion of morality with an emphasis on epistemology and logic." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Anything Can Be Beautiful" -msgid_plural "copies of Anything Can Be Beautiful" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a copy of Nietzsche's \"Beyond Good and Evil\". Its cover is dog-" +"eared and creased." +msgstr "" -#. ~ Description for Anything Can Be Beautiful #: lang/json/BOOK_from_json.py msgid "" -"Stylist, designer, and glitter goddess, Tiffynie Blust looks at the world " -"one mantra in mind: anything can be beautiful." +"This is a copy of \"The Unique and Its Property\" by Max Stirner. A modern " +"translation by Wolfi Landstreicher." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Greatest Rooms of the Century" -msgid_plural "copies of The Greatest Rooms of the Century" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"A large, extended version of \"Madness and Civilisation\" by Michel " +"Foucault. The cover features a striking image of a Panopticonic Prison." +msgstr "" -#. ~ Description for The Greatest Rooms of the Century #: lang/json/BOOK_from_json.py msgid "" -"A stunning collection of the best living spaces created and commissioned by " -"the most influential people in interior design." +"This is a copy of \"The Postmodern Condition: A Report on Knowledge\" by " +"Lyotard." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Hands-On Home" -msgid_plural "copies of The Hands-On Home" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"A collection of texts and essays by Jacques Derrida. Its pages are loose " +"and yellowed - you should probably handle it with care." +msgstr "" -#. ~ Description for The Hands-On Home #: lang/json/BOOK_from_json.py msgid "" -"An ecologically-minded take on modern homemaking, this is a practical guide " -"to maximising your time in the kitchen and beyond." +"This is a copy of \"Society of the Spectacle\" by Guy Debord. Its cover " +"shows rows of adults staring placidly into a screen." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Rooms We Love" -msgid_plural "copies of Rooms We Love" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a split copy of both \"An Ethic of Sexual Difference\" and \"This " +"Sex Which Is Not One\" by Luce Irigaray." +msgstr "" -#. ~ Description for Rooms We Love #: lang/json/BOOK_from_json.py msgid "" -"This is a guide on how to affordably decorate rooms to suit your " -"personality. In the book, we visit rooms inspired by the needs of each " -"homeowner and will see how they transformed their rooms." +"This is a copy of Baudrillard's \"Simulation and Simulacra\". The cover " +"contains an image of a man holding a colored pill in each hand, with the " +"caption \"Welcome to the Desert of the Real.\". You think you've seen this " +"movie." msgstr "" #: lang/json/BOOK_from_json.py -msgid "New York Parties" -msgid_plural "copies of New York Parties" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a small, pocket version of Sartre's \"Existentialism and Humanism\"." +" It looks to have been used as a coaster in a past life." +msgstr "" -#. ~ Description for New York Parties #: lang/json/BOOK_from_json.py msgid "" -"Visit the homes of savvy tastemakers from the worlds of fashion, finance, " -"and design, with this book of lavish photography." +"This is a copy of \"Practical Ethics\" by Peter Singer. From the local " +"university press." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Best Signature Outdoor Kitchens" -msgid_plural "copies of Best Signature Outdoor Kitchens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a photocopied spiral-bound copy of \"Industrial Society and Its " +"Future\" by 'Freedom Club'. The original looks to have been written on a " +"typewriter before being copied." +msgstr "" -#. ~ Description for Best Signature Outdoor Kitchens #: lang/json/BOOK_from_json.py msgid "" -"Outdoor space is one of the hottest amenities being considered by new and " -"existing homeowners. This book will show you how to turn any deck, patio, " -"or other outside area into a great place to cook." +"This is a copy of \"Industrial Society and Its Future\" by Ted Kaczynski. " +"Its cover is an image of a hand-crafted wooden box filled with wiring and an" +" ominous looking metal tube. Provocative." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Art of Using Plants to Transform Your Home" -msgid_plural "copies of The Art of Using Plants to Transform Your Home" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "This is a small reader on Hegel's Dialectics." +msgstr "" -#. ~ Description for The Art of Using Plants to Transform Your Home #: lang/json/BOOK_from_json.py msgid "" -"Bring gorgeous greenery into your life with this delightful guide to " -"decorating your living space with a wide variety of plants. Illustrated " -"examples enable you to easily transform every corner of your interior space." +"This is a copy of \"The State and Revolution\" by Vladimir Lenin. In " +"English, thankfully." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Woman of Color" -msgid_plural "copies of Woman of Color" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "This is a copy of \"In Defense of Marxism\" by Leon Trotsky." +msgstr "" -#. ~ Description for Woman of Color #: lang/json/BOOK_from_json.py msgid "" -"This is a collection of essays and advice on style, beauty, and motherhood." -" Part memoir, part lifestyle guide, this book reflects the author's " -"experience growing up as a woman of color in Brooklyn." +"This is a copy of \"Steal This Book\" by Abbie Hoffman. There is a security" +" tag on the back cover. It appears to still be active." msgstr "" #: lang/json/BOOK_from_json.py -msgid "10 Cool Things About Being A Ring Bearer" -msgid_plural "copies of 10 Cool Things About Being A Ring Bearer" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a copy of \"Walden: Or Life In The Woods\" by Henry David Thoreau. " +"It contains a dried and pressed leaf as a bookmark." +msgstr "" -#. ~ Description for 10 Cool Things About Being A Ring Bearer #: lang/json/BOOK_from_json.py msgid "" -"This book is for the delightful little ring bearer in your wedding. The " -"author depicts the responsibility and honor in being a ring bearer. Your " -"little angel will cherish this book as he or she learns how to behave on " -"your perfect day." +"This is a copy of \"The Female Eunuch\" by Germaine Greer. A child has " +"scribbled over the contents page in red crayon." msgstr "" #: lang/json/BOOK_from_json.py -msgid "How to Raise a Gentleman: A Civilized Guide to Parenting" -msgid_plural "" -"copies of How to Raise a Gentleman: A Civilized Guide to Parenting" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "This is a copy of \"An Introduction to Metaphysics\" by Bergson." +msgstr "" -#. ~ Description for How to Raise a Gentleman: A Civilized Guide to Parenting #: lang/json/BOOK_from_json.py msgid "" -"A revised edition for parents who hope their little boy children will grow " -"up to be the kind of men who know which fork to use, how to treat others, " -"and generally make their parents proud." +"This is a copy of \"The Four Fundamental Concepts of Psychoanalysis\" by " +"Jacques Lacan." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of Machiavelli's \"The Prince\". With intro by Q. Skinner." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"International Approaches to Securing Radioactive Sources Against Terrorism" -msgid_plural "" -"copies of International Approaches to Securing Radioactive Sources Against " -"Terrorism" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +"This is a copy of \"On The Revolution of Everyday Life\" by Raul Vangeigem." +msgstr "" -#. ~ Description for International Approaches to Securing Radioactive Sources -#. Against Terrorism #: lang/json/BOOK_from_json.py msgid "" -"This book presents how to enhance cooperation and assistance between " -"countries in support of International Atomic Energy Agency efforts to secure" -" radioactive sources against the threat of terrorism." +"This is a pocket copy of \"An Essay on Liberation\" by Herbert Marcuse. The" +" cover contains an image of a pelican." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Principles of Forensic Psychiatry" -msgid_plural "copies of Principles of Forensic Psychiatry" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "This is a copy of \"Either-Or\" by Søren Kierkegaard." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Allegory of the Cave\" by Plato." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Leviathan\" by Thomas Hobbes." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Critique Of Pure Reason\" by Immanuel Kant." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Principles of Philosophy\" by Descartes." +msgstr "" -#. ~ Description for Principles of Forensic Psychiatry #: lang/json/BOOK_from_json.py msgid "" -"This text addresses standards in the assessment and treatment of aggression " -"and violence as well as psychological and neuroimaging assessments." +"This is a copy of both \"On The Genealogy of Morals\" and \"The Gay " +"Science\" by Friederich Nietzsche." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Guide to Reflective Conflict Resolution" -msgid_plural "copies of The Guide to Reflective Conflict Resolution" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a copy of \"The Myth of Sisyphus\", and other essays, by Albert " +"Camus. The cover depicts a bare-chested man and a large boulder." +msgstr "" -#. ~ Description for The Guide to Reflective Conflict Resolution #: lang/json/BOOK_from_json.py msgid "" -"The back cover of this hardbound book reads: \"Why should professionals care" -" about reflective practice? How do its principles and methods increase " -"competence? What characteristics distinguish reflective practitioners?\"" +"This is a copy of \"The Sickness Unto Death\" by Søren Kierkegaard. The " +"pages are dotted with post-it notes." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Oxbridge Handbook of Mood Ailments" -msgid_plural "copies of The Oxbridge Handbook of Mood Ailments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a copy of \"The Defence of Terrorism\" by Leon Trotsky. Despite the" +" title, it does not actually appear to be defending terrorism." +msgstr "" -#. ~ Description for The Oxbridge Handbook of Mood Ailments #: lang/json/BOOK_from_json.py msgid "" -"The Oxbridge Handbook of Mood Ailments provides detailed coverage of the " -"characterization, understanding, and treatment of affective disorders. It " -"provides coverage of unipolar depression, bipolar disorder, and known " -"variants of these illnesses." +"This is a copy of \"Enquiry Concerning Political Justice\" by William " +"Godwin. This thick book is filled with antiquated phrases." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Phonological Acquisition and Disorders" -msgid_plural "copies of Phonological Acquisition and Disorders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a copy of \"The Abolition of Work and Other Essays\" by Bob Black. " +"It is likely that \"The Abolition of Work\" is the most famous essay in this" +" book." +msgstr "" -#. ~ Description for Phonological Acquisition and Disorders #: lang/json/BOOK_from_json.py msgid "" -"Studying the phonologies of children with non-organic speech disorders, this" -" volume details the latest findings in optimality theory, phonological " -"acquisition and disorders. It is intended for linguists and psychologists." +"This is a copy of \"What is Property?\" by Pierre-Joseph Proudhon. It looks" +" like this book has a surprisingly long track record of owners." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Therapeutic Gardens and Healing Spaces" -msgid_plural "copies of Therapeutic Gardens and Healing Spaces" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a copy of \"The Conquest of Bread\" by Peter Kropotkin. There is a " +"picture of an old philosopher with magnificent beard, instead of bread, on " +"the cover." +msgstr "" -#. ~ Description for Therapeutic Gardens and Healing Spaces #: lang/json/BOOK_from_json.py msgid "" -"This book addresses how to design therapeutic gardens. It illustrates a " -"variety of landscape designs appropriate for public spaces that promote " -"mental health." +"This is a copy of \"The Trouble with Being Born\" by Emil Cioran. This book" +" might have been printed decades before the Cataclysm since the cover is " +"quite weathered." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Advances in Drug Delivery Systems" -msgid_plural "copies of Advances in Drug Delivery Systems" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a copy of \"The World as Will and Representation\" by Arthur " +"Schopenhauer. It contains a few undecipherable notes and scribbles." +msgstr "" -#. ~ Description for Advances in Drug Delivery Systems #: lang/json/BOOK_from_json.py msgid "" -"This softcover reprint covers an array of topics in pharmacology. The " -"physicochemical concepts of the refinement of bioresponsive drug delivery " -"are presented in detail alongside a variety of current approaches employed " -"in the development of zero order release systems." +"This is a copy of \"Up-Wingers: A Futurist Manifesto\" by FM-2030. It seems" +" that the author's real name is Fereidoun M. Esfandiary." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Using Art to Treat Eating Disorders" -msgid_plural "copies of Using Art to Treat Eating Disorders" +msgid "" +"This is a copy of \"The Bastiat Collection\", a large collection of essays " +"by Frederic Bastiat." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"Anarchy, State, and Utopia\" by Robert Nozick, one of " +"the most influential books of modern libertarianism." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"Socialism\" by Ludwig von Mises, a critical examination " +"of socialism." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"The ABC of Communism\" by Nikolai Bukharin, one of the " +"most influential books of early Marxism-Leninism." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Anti-Capitalist Mentality\" by Ludwig von Mises." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Modal Logic as Metaphysics" +msgid_plural "copies of Modal Logic" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40625,18 +39371,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Using Art to Treat Eating Disorders +#. ~ Description for Modal Logic as Metaphysics #: lang/json/BOOK_from_json.py msgid "" -"This is an introductory guide for those wanting to explore the use of art to" -" address eating disorders. Art therapy is a particularly effective " -"therapeutic intervention, as it allows people to express uncomfortable " -"thoughts and feelings nonverbally." +"A treatise on applying logical tools to questions about that nature of " +"reality, this book contains detailed discussion of metaphysical issues." msgstr "" #: lang/json/BOOK_from_json.py -msgid "A Clinical Guide to Video Gamers" -msgid_plural "copies of A Clinical Guide to Video Gamers" +msgid "Aesthetics: A Critical Anthology" +msgid_plural "copies of Aesthetics" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40644,19 +39388,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for A Clinical Guide to Video Gamers +#. ~ Description for Aesthetics: A Critical Anthology #: lang/json/BOOK_from_json.py msgid "" -"This scholarly work considers the role that games play in psychological " -"experiences and mental health. Chapters examine the factors that compel " -"individual gamers to select and identify with particular games and " -"characters, as well as the different play styles, genres, and archetypes " -"common in video games." +"This hardbound anthology presents a collection of readings, scholarly works," +" and critical analyses on the subject of beauty." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Paranoia and the History of Madness" -msgid_plural "copies of Paranoia and the History of Madness" +msgid "The Philosophy of Information" +msgid_plural "copies of The Philosophy of Information" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40664,17 +39405,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Paranoia and the History of Madness +#. ~ Description for The Philosophy of Information #: lang/json/BOOK_from_json.py msgid "" -"This book is an analysis of the use and misuse of paranoia throughout " -"history and in contemporary society. The impact of paranoia on societies is" -" explored in detail." +"This university text details a critical investigation of the conceptual " +"nature and basic principles of information. The student will gain a " +"thorough appreciation of the conceptual frameworks commonly used to describe" +" and advance semantic investigations." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Psychoanalysis and Colonialism" -msgid_plural "copies of Psychoanalysis and Colonialism" +msgid "Being and Nothingness" +msgid_plural "copies of Being and Nothingness" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40682,19 +39424,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Psychoanalysis and Colonialism +#. ~ Description for Being and Nothingness #: lang/json/BOOK_from_json.py msgid "" -"Freud referred to women's sexuality as a \"dark continent\" for " -"psychoanalysis, drawing on colonial use of the same phrase to refer to " -"Africa. This book details how the problematic universalism of " -"psychoanalysis led theorists to reject its relevance for postcolonial " -"critique." +"This paperback is a copy of Jean-Paul Sartre's \"Being and Nothingness\". A" +" key work in the existentialist tradition." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Psychology of Stalking" -msgid_plural "copies of The Psychology of Stalking" +msgid "pulp novel" +msgid_plural "pulp novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40702,19 +39441,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Psychology of Stalking +#. ~ Description for pulp novel #: lang/json/BOOK_from_json.py msgid "" -"This book explores stalking from social, psychiatric, psychological and " -"behavioral perspectives. Topics include psychiatric diagnoses, offender-" -"victim typologies, cyberstalking, false victimization syndrome, erotomania, " -"domestic violence, the stalking of public figures, and many other aspects of" -" stalking." +"A hardboiled detective tale filled with hard hitting action and intrigue." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Tactical Handgun Digest" -msgid_plural "issues of Tactical Handgun Digest" +msgid "Black Valkyries From Venus" +msgid_plural "copies of Black Valkyries" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40722,16 +39457,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Tactical Handgun Digest +#. ~ Description for Black Valkyries From Venus #: lang/json/BOOK_from_json.py msgid "" -"A glossy magazine all about handguns and shooting. There is a good article " -"about proper sighting near the middle." +"You hold in your hands a weather-beaten novel written by someone named \"Lee" +" Racket.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Tao of the Handgun" -msgid_plural "copies of The Tao of the Handgun" +msgid "The Wrong Tomorrow" +msgid_plural "copies of Wrong Tomorrow" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40739,16 +39474,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Tao of the Handgun +#. ~ Description for The Wrong Tomorrow #: lang/json/BOOK_from_json.py msgid "" -"This introspective volume covers proper usage of handguns, from safety and " -"stance, to maintenance and proper sighting technique." +"You hold in your hands a cheap drugstore paperback written by someone named " +"\"Lee Racket.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Modern Rifleman" -msgid_plural "issues of Modern Rifleman" +msgid "No God From a Corpse" +msgid_plural "copies of No God" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40756,16 +39491,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Modern Rifleman +#. ~ Description for No God From a Corpse +#. ~ 'Hard-boiled enough to break a spoon' means melodramatic, exaggerated, +#. emotional but simple, and possessing a general lack of literary pretense. +#. Weatherworn means damaged by age. Skirt means woman. #: lang/json/BOOK_from_json.py msgid "" -"An informative magazine all about rifles and shooting. There is an " -"excellent article about proper maintenance in this issue." +"This is a weatherworn paperback written by some skirt named \"Lee Racket.\"" +" It tells how rage and jealousy can turn a man, or a woman, into a monster." +" This story is hard-boiled enough to break a spoon." msgstr "" #: lang/json/BOOK_from_json.py -msgid "FM 23-16 Army marksmanship manual" -msgid_plural "FM 23-16 Army marksmanship manuals" +msgid "The Deep Dive" +msgid_plural "copies of Deep Dive" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40773,16 +39512,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for FM 23-16 Army marksmanship manual +#. ~ Description for The Deep Dive +#. ~ Broad is a dismissive and outdated term that simply means "woman." The +#. term is used because it evokes the (decidedly misogynistic) era in which +#. the pulp genre gained popularity within the United States. #: lang/json/BOOK_from_json.py msgid "" -"A hefty military field manual about automatic rifle usage and techniques " -"which improve marksmanship and proper weapons-handling." +"This dimestore short story about space travel is written by a broad named " +"\"Lee Racket.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Trap and Field" -msgid_plural "issues of Trap and Field" +msgid "Planet of the Murderous Squids that Time Forgot!" +msgid_plural "copies of Planet of the Murderous Squids that Time Forgot!" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40790,16 +39532,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Trap and Field +#. ~ Description for Planet of the Murderous Squids that Time Forgot! #: lang/json/BOOK_from_json.py msgid "" -"An in-depth magazine all about shotguns and shooting. There is an " -"informative article about proper shooting stance in the back pages." +"In this psychedelic adventure novel of cosmic exploration, an elderly " +"assassin discovers a planet too good to be true. Only once it is too late " +"does she discover the harrowing truth at the center of \"The Planet of the " +"Murderous Squids that Time Forgot!\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Shotguns: The Art and Science" -msgid_plural "copies of Shotguns: The Art and Science" +msgid "The Great Capes of Metropolis" +msgid_plural "copies of The Great Capes of Metropolis" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40807,16 +39551,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Shotguns: The Art and Science +#. ~ Description for The Great Capes of Metropolis #: lang/json/BOOK_from_json.py msgid "" -"This book claims to address every problem the shotgunner is likely to face, " -"and offers solutions to ensure that shooters can make every shot count." +"In this classic pulp paperback of superheroic exploits, a group of masked " +"vigilantes with diverse superpowers learn to work together to defeat the " +"ultimate villain." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Submachine Gun Enthusiast" -msgid_plural "issues of Submachine Gun Enthusiast" +msgid "Yesterday's Murdered" +msgid_plural "copies of Yesterday's Murdered" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40824,16 +39569,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Submachine Gun Enthusiast +#. ~ Description for Yesterday's Murdered #: lang/json/BOOK_from_json.py msgid "" -"An in-depth magazine about submachine guns and shooting. There is an " -"exhaustive article about close quarter combat techniques in the front." +"In this fast paced pulp noir, a hard-drinking detective with nerves of steel" +" has one last shot at vengeance." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Submachine Gun Handbook" -msgid_plural "copies of The Submachine Gun Handbook" +msgid "Flashgun Condor and the Crimson Criminal" +msgid_plural "copies of Flashgun Condor and the Crimson Criminal" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40841,17 +39586,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Submachine Gun Handbook +#. ~ Description for Flashgun Condor and the Crimson Criminal #: lang/json/BOOK_from_json.py msgid "" -"This concise guide details the proper care and operation of most forms of " -"machine pistols and submachine guns currently used by regular armed and " -"reserve forces, as well as several obsolete weapons." +"A hot-blooded photographer who fights crime with film, footage, and fists, " +"Condor is more than a mere shutterbug on the crime beat. But will she be " +"able to unravel a devious deception and bring the \"Crimson Criminal\" to " +"justice?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "US Weekly" -msgid_plural "US Weeklies" +msgid "scifi novel" +msgid_plural "scifi novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40859,44 +39605,294 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for US Weekly +#. ~ Description for scifi novel #: lang/json/BOOK_from_json.py -msgid "Weekly news about a bunch of famous people who're all (un)dead now." +msgid "Aliens, ray guns, and space ships." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Self-Esteem for Dummies" -msgid_plural "copies of Self-Esteem for Dummies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a copy of Gibson's \"Neuromancer\". Written in the eighties, it was" +" surprisingly accurate in predicting much of modern society… Until " +"recently." +msgstr "" -#. ~ Description for Self-Esteem for Dummies #: lang/json/BOOK_from_json.py -msgid "Full of useful tips for showing confidence in your speech." +msgid "" +"This is a copy of \"The Stars My Destination\" by Alfred Bester.\n" +"\n" +"Tyger, Tyger, Burning bright,\n" +"In the forests of the night:\n" +"What immortal hand or eye,\n" +"Dare frame thy fearful symmetry?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Principles of Effective Communication" -msgid_plural "copies of Principles of Effective Communication" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgid "" +"This is a copy of \"The Lathe of Heaven\" by Ursula Le Guin. Dirty finger-" +"stains have smudged the occasional word." +msgstr "" -#. ~ Description for Principles of Effective Communication #: lang/json/BOOK_from_json.py -msgid "A hardbound book devoted to being an effective and persuasive speaker." +msgid "This is a copy of \"The Dispossessed\" by Ursula Le Guin." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Dungeon Master's Guide: 6th Edition" -msgid_plural "copies of Dungeon Master's Guide: 6th Edition" +msgid "This is a copy of \"Hyperion\" by Dan Simmons." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"Endymion\" by Dan Simmons. It opens with a poem by D.H. Lawrence:\n" +"\n" +"Give us gods. Oh give them us!\n" +"Give us gods.\n" +"We are so tired of men\n" +"And motor-power." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of Philip K. Dick's \"Do Androids Dream of Electric Sheep?\"." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a dog-eared copy of \"Nova Express\" by William Burroughs." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"Foundation\" by Isaac Asimov. The back cover has been " +"ripped off." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"The Trial\" by Franz Kafka. This book is rather worn." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"The Handmaid's Tale\" by Margaret Atwood." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"The Windup Girl\" by Paolo Bacigalupi. The blurb makes " +"you wonder how Thailand fared the end of the world." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Islands in the Net\" by Bruce Sterling." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"Foundation and Empire\" by Isaac Asimov. The back page " +"contains a hand-written grocery list." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is an almost new copy of \"A Scanner Darkly\" by Philip K. Dick. It " +"still has the smell of new books within its pages." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"Mirrorshades: A Cyberpunk Anthology\" compiled by Bruce " +"Sterling. The cover has rings of coffee stains over it." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"The World of Null-A\" by A. E. van Vogt. This copy " +"looks to have been used to press flowers." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Altered Carbon\" by Richard Morgan." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of Mary Shelly's \"Frankenstein\". Wasn't that the name of " +"the monster?" +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"Wasp\" by Eric Frank Russel. The futuristic terrorist's" +" handbook." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"I Am Legend\" by Richard Matheson. The sleeve is " +"covered in dried blood." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"The Forever War\" by Joe Haldeman. This copy looks as " +"if it's been slightly chewed by a dog or other large animal." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"The Moon Is a Harsh Mistress\" by Robert A. Heinlein." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of Samuel R. Delany's \"Nova\". The cover reads \"Review " +"Copy. Not for re-sale.\"" +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of Vonnegut's \"The Sirens of Titan\"." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"Grass\" by Sheri S. Tepper. A child has scribbled over " +"the first pages in crayon." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of William Gibson's \"Count Zero\". The spine is stamped " +"with 'Library Copy'. And a sticker reading 'Science Fiction'." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"The Weapon Makers\" by A. E. van Vogt." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"Record of a Spaceborn Few\" by Becky Chambers. It looks" +" almost brand new." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"Use of Weapons\" by Ian M. Banks. The spine is cracked " +"and worn, some pages appear to be loose." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of Jean-Baptiste Cousin de Grainville's \"Le Dernier Homme\"." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of Orwell's \"Nineteen Eighty-Four\". The pages are loose " +"and thin. You should probably be careful with this copy." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of Heinlein's \"Stranger in a Strange Land\". The cover is " +"dog-eared and worn." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of Orson Scott Card's \"Ender's Game\"." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"The Lost World\" by Arthur Conan Doyle." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Islands in the Sky\" by Arthur C. Clarke." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of H. G. Wells' \"The Island of Doctor Moreau\"." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of Stanislaw Lem's \"His Masters Voice\"." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of Fred Hoyle's \"The Black Cloud\"." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Last and First Men\" by Olaf Stapeldon." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of Stanislaw Lem's \"Solaris\"." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of Theodore Sturgeon's \"More Than Human\"." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Vurt\" by Jeff Noon." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"A Canticle for Leibowitz\" by Walter M. Miller Jr." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"The War of The Worlds\" by H.G Wells." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Iron Sunrise\" by Charles Stross." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of \"The Hunger Games\" by Suzanne Collins. Reading the " +"blurb reminds you of a Japanese movie you think you once caught on the " +"television late at night." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"The Day of the Triffids\" by John Wyndham." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"A Clockwork Orange\" by Anthony Burges." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"The Man Who Fell to Earth\" by Walter Tevis." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Simulacron-3\" by Daniel F. Galouye." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"The Glass Bees\" by Ernst Jünger." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"Journey to The Center of the Earth\" by Jules Verne." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a copy of Larry Niven's \"Ringworld\". There are a couple of pages " +"missing from the end of the book. Luckily only mail-order advertisements." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This is a well-worn copy of \"The Hitchhikers Guide to the Galaxy\" by " +"Douglas Adams." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Dune" +msgid_plural "copies of Dune" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40904,17 +39900,24 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Dungeon Master's Guide: 6th Edition +#. ~ Description for Dune #: lang/json/BOOK_from_json.py msgid "" -"A thick, hardcover volume with everything needed to weave legendary stories." -" It's full of information, but finding the things you're looking for can be" -" a chore." +"This is a dog-eared copy of \"Dune\" by Frank Herbert. It has sand between " +"some of its pages. Weird." +msgstr "" + +#. ~ Description for Dune +#: lang/json/BOOK_from_json.py +msgid "" +"This is a sturdy copy of \"Dune\" by Frank Herbert. It is a fairly new " +"reprint with the words \"SOON TO BE A MAJOR MOTION PICTURE\" splashed across" +" its dust jacket." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Nail Your Law Firm Interview" -msgid_plural "copies of Nail Your Law Firm Interview" +msgid "Parable of the Talents" +msgid_plural "copies of Parable of the Talents" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40922,17 +39925,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Nail Your Law Firm Interview +#. ~ Description for Parable of the Talents #: lang/json/BOOK_from_json.py msgid "" -"This lightweight book proclaims itself to be \"the ONLY gold star interview " -"guide for lawyers interviewing in any type of a job interview.\" It was " -"supposed to help new lawyers find work." +"This is a sturdy copy of \"Parable of the Talents.\". It is Octavia " +"Butler's sequel to her book \"Parable of the Sower.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "holybook abstract" -msgid_plural "holybook abstracts" +msgid "The Fifth Season" +msgid_plural "signed copies of Fifth Season" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40940,14 +39942,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for holybook abstract +#. ~ Description for The Fifth Season #: lang/json/BOOK_from_json.py -msgid "theoretically this isn't a book at all" +msgid "" +"This is a signed hardcover copy of the Hugo award winning \"The Fifth " +"Season\" by N.K. Jemisin. It smells faintly of dirt." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Mycenacean Hymns" -msgid_plural "copies of Mycenacean Hymns" +msgid "We" +msgid_plural "copies of We" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40955,16 +39959,25 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Mycenacean Hymns +#. ~ Description for We #: lang/json/BOOK_from_json.py msgid "" -"A vellum book containing the hymns central to Marloss faith. As the verses " -"lead to each other, the text sings of unity and promised paradise." +"This hardback book is titled \"The Annotated We: A New Translation of Evgeny Zamiatin's Novel.\"\n" +"\n" +"It is Vladimir Wozniuk's 2015 translation of \"We,\" originally published in 1924 and generally seen as the first modern dystopian novel. The commentary examines the profusive allusions and highlights the poetic nature of Zamiatin's language." msgstr "" +#. ~ Description for We #: lang/json/BOOK_from_json.py -msgid "King James Bible" -msgid_plural "copies of King James Bible" +msgid "" +"A seminal work of dystopian fiction, Evgeny Zamiatin's \"We\" was first published in 1924 but suppresed by the Soviet Union until 1988.\n" +"\n" +"This mass-market 1993 edition you've found was translated from the Russian by Clarence Brown and includes a short introduction. The slightly worn cover features a surrealist photo of a person gazing backward suspiciouly." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Cyberiad" +msgid_plural "copies of The Cyberiad" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40972,16 +39985,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for King James Bible +#. ~ Description for The Cyberiad #: lang/json/BOOK_from_json.py msgid "" -"An English translation of the Christian Bible, which originated in England " -"in the early 1600s." +"This 350 page paperback presents the exploits and robotic rivalries of Trurl" +" and Klapaucius. Originally written in Polish by Stanislaw Lem, it has been" +" masterfully translated into English by Michael Kandel." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Eastern Orthodox Bible" -msgid_plural "copies of Eastern Orthodox Bible" +msgid "Brave New World" +msgid_plural "copies of Brave New World" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -40989,14 +40003,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Eastern Orthodox Bible +#. ~ Description for Brave New World #: lang/json/BOOK_from_json.py -msgid "An English copy of the Eastern Orthodox translation of The Holy Bible." +msgid "" +"This is weather worn copy of \"Brave New World\" by Aldous Huxley looks like" +" it has been left out in rain. The novel begins in a bleak building where " +"fetuses are grown in bottles on an assembly line." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Gideon Bible" -msgid_plural "copies of Gideon Bible" +msgid "Roadside Picnic" +msgid_plural "copies of Roadside Picnic" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41004,16 +40021,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Gideon Bible +#. ~ Description for Roadside Picnic #: lang/json/BOOK_from_json.py msgid "" -"An English translation of the Christian Bible, distributed free of charge by" -" Gideons International." +"This is a paperback copy of \"Roadside Picnic\" by Arkady and Boris " +"Strugatsky. It has been translated into over 20 languages, occasionally " +"under the name \"Stalker.\" This copy, fortunately for you, just happens to" +" be in your native tongue." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Guru Granth Sahib" -msgid_plural "copies of The Guru Granth Sahib" +msgid "Fahrenheit 451" +msgid_plural "copies of Fahrenheit 451" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41021,14 +40040,45 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Guru Granth Sahib +#. ~ Description for Fahrenheit 451 #: lang/json/BOOK_from_json.py -msgid "A single-volume copy of the central religious texts of Sikhism." +msgid "This is a copy of Ray Bradbury's \"Fahrenheit 451.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Hadith" -msgid_plural "copies of Hadith" +msgid "" +"Some joker has gently burnt the exterior edge of this paperback dystopia. " +"It's still perfectly readable." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"\"It was a pleasure to burn. It was a special pleasure to see things eaten," +" to see things blackened and changed.\"" +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This 1979 softcover edition of Ray Bradbury's \"Fahrenheit 451\" was once a " +"library book. It still has a light blue checkout card pocketed on the torn " +"back cover. One \"Suzanne Collins\" borrowed it in 1981." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"The red and black paperback novel you hold in your hands is a modern reprint" +" of Ray Bradbury's \"Fahrenheit 451.\"" +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "" +"This scifi novel is divided into three parts: \"The Hearth and the " +"Salamander,\" \"The Sieve and the Sand,\", and \"Burning Bright.\"" +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "sports novel" +msgid_plural "sports novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41036,16 +40086,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Hadith +#. ~ Description for sports novel #: lang/json/BOOK_from_json.py msgid "" -"A Muslim religious text containing an account of the sayings and actions of " -"the prophet Muhammad." +"The dramatic tale of a small-time boxer who gets a rare chance to fight the " +"heavy-weight champion, and seize his one chance to make a better life for " +"himself while impressing the cute girl who works in the pet store." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Principia Discordia" -msgid_plural "copies of Principia Discordia" +msgid "The Art of Bunting" +msgid_plural "copies of The Art of Bunting" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41053,17 +40104,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Principia Discordia +#. ~ Description for The Art of Bunting #: lang/json/BOOK_from_json.py msgid "" -"A book that embodies the main beliefs of Discordianism. It seems to " -"primarily concern chaos, and features a card in the back which informs you " -"that you are now a 'genuine and authorized Pope of Discordia'." +"While you might be forgiven for expecting instructions for party decorating," +" it is in fact a novel about baseball. In the final climactic game a young " +"star proves to himself that he is ready for the big leagues." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Kojiki" -msgid_plural "copies of The Kojiki" +msgid "The Touchdown Special" +msgid_plural "copies of The Touchdown Special" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41071,16 +40122,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Kojiki +#. ~ Description for The Touchdown Special #: lang/json/BOOK_from_json.py msgid "" -"The oldest extant chronicle of Japan's myths and history, the stories " -"contained in the Kojiki are part of the inspiration behind Shinto practices." +"In this absorbing novel of football fandom, a pizza delivery driver makes a " +"desperate gamble on the monday night game." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Book of Mormon" -msgid_plural "copies of The Book of Mormon" +msgid "Trophy Envy" +msgid_plural "copies of Trophy Envy" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41088,16 +40139,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Book of Mormon +#. ~ Description for Trophy Envy #: lang/json/BOOK_from_json.py msgid "" -"The sacred text of the Latter Day Saint movement of Christianity, originally" -" published in 1830 by Joseph Smith." +"This paperback tells the story of a tennis prodigy who begins to regret her " +"own success." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Gospel of the Flying Spaghetti Monster" -msgid_plural "copies of The Gospel of the Flying Spaghetti Monster" +msgid "Semi-Rough" +msgid_plural "copies of Semi-Rough" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41105,17 +40156,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Gospel of the Flying Spaghetti Monster +#. ~ Description for Semi-Rough #: lang/json/BOOK_from_json.py msgid "" -"A book that embodies the main beliefs of the Church of the Flying Spaghetti " -"Monster. It seems to involve a lot of pirates and some sort of invisible " -"drunken monster made of pasta." +"This novel follows the humorous adventures of a professional athlete turned " +"amateur reporter." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Quran" -msgid_plural "copies of Quran" +msgid "The Golf Omnivore" +msgid_plural "copies of The Golf Omnivore" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41123,16 +40173,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Quran +#. ~ Description for The Golf Omnivore #: lang/json/BOOK_from_json.py msgid "" -"An English translation of the Muslim book of holy scriptures, with " -"explanatory notes and commentaries to aid in understanding." +"This hardback book is a collection of short stories in which love and golf " +"are the only two constants." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Satanic Bible" -msgid_plural "copies of The Satanic Bible" +msgid "Uniform Boy" +msgid_plural "copies of Uniform Boy" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41140,16 +40190,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Satanic Bible +#. ~ Description for Uniform Boy #: lang/json/BOOK_from_json.py msgid "" -"A collection of essays, observations, and rituals published by Anton LaVey " -"in 1969." +"This hardback book about an equipment manager for a minor league team " +"explores themes of loyalty and resentment." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Dianetics" -msgid_plural "copies of Dianetics" +msgid "Budgetball: Winning a Rigged Game" +msgid_plural "copies of Budgetball" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41157,17 +40207,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Dianetics +#. ~ Description for Budgetball: Winning a Rigged Game #: lang/json/BOOK_from_json.py msgid "" -"This book is the canonical text of Scientology. Written by a science " -"fiction author, it contains self-improvement techniques and musings on " -"psychology called Dianetics." +"Budgetball tells the true story of the curious case of Benny Bobbin and his " +"quixotic quest to defeat the deep-pocketed Orlando O's." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Book of the SubGenius" -msgid_plural "copies of The Book of the SubGenius" +msgid "The Lads of Summer" +msgid_plural "copies of The Lads of Summer" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41175,16 +40224,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Book of the SubGenius +#. ~ Description for The Lads of Summer #: lang/json/BOOK_from_json.py msgid "" -"A book about the Church of the SubGenius. It seems to involve a salesman " -"named J. R. \"Bob\" Dobbs and a concept called 'slack'." +"This well worn paperback details the early baseball careers of one of the " +"greatest teams professional sports has ever known." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Sutras of the Buddha" -msgid_plural "copies of The Sutras of the Buddha" +msgid "Volleyball: Get Ready to Get Ready" +msgid_plural "copies of Volleyball" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41192,15 +40241,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Sutras of the Buddha +#. ~ Description for Volleyball: Get Ready to Get Ready #: lang/json/BOOK_from_json.py msgid "" -"A collection of discourses attributed to the Buddha and his close disciples." +"\"Volleyball: Get Ready to Get Ready\" is YOUR illustrated guide to level up" +" your game. With full-color photos and diagrams, you will learn the drills " +"and techniques you need to dominate the competition." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Talmud" -msgid_plural "copies of the Talmud" +msgid "William G. Morgan, the Godfather of Volleyball" +msgid_plural "copies of The Godfather of Volleyball" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41208,16 +40259,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Talmud +#. ~ Description for William G. Morgan, the Godfather of Volleyball #: lang/json/BOOK_from_json.py msgid "" -"One of the central texts of Rabbinic Judaism, the Talmud expounds upon the " -"Hebrew Bible with teachings and opinions of thousands of rabbis." +"This odd little hardbound book is only 98 pages long, and a dozen of those " +"are comprised of grainy black and white photos. If you read this book, you " +"learn that volleyball was originally called \"Mintonette\" and also some " +"biographic details about its inventor." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Tanakh" -msgid_plural "copies of Tanakh" +msgid "Legendary Bike Rides" +msgid_plural "copies of Bike Rides" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41225,15 +40278,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Tanakh +#. ~ Description for Legendary Bike Rides #: lang/json/BOOK_from_json.py msgid "" -"A single-volume book containing the complete canon of the Jewish Bible." +"This unwieldy coffeetable book is titled \"LEGENDARY Bike Rides Around the " +"WORLD.\" It provides a wealth of detail about paved bike trails in every " +"part of the globe except New England. But if you make it to Patagonia on " +"bike, you're all set." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Tripitaka" -msgid_plural "copies of The Tripitaka" +msgid "Natare Ergo Sum" +msgid_plural "copies of Natare Ergo Sum" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41241,16 +40297,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Tripitaka +#. ~ Description for Natare Ergo Sum #: lang/json/BOOK_from_json.py msgid "" -"A collection of sacred Buddhist writings describing their canons of " -"scriptures." +"The poorly translated title is supposed to be Latin for \"I Swim, Therefore " +"I Am.\" This short hardback presents \"A Philosophy of Swimming\" and then " +"playfully attributes a variety of famous philosophical expressions into " +"edorsements for the sport of swimming. It's not a bad book, just a bit odd." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Upanishads" -msgid_plural "copies of The Upanishads" +msgid "Stratosphere: The Rise of Hoops" +msgid_plural "copies of Stratosphere" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41258,16 +40316,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Upanishads +#. ~ Description for Stratosphere: The Rise of Hoops #: lang/json/BOOK_from_json.py msgid "" -"A collection of sacred Hindu writings regarding the nature of reality and " -"describing the character and form of human salvation." +"\"Stratosphere: The Rise of Hoops\" chronicles four decades of professional " +"basketball against a backdrop of sustained social change." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Four Vedas" -msgid_plural "copies of The Four Vedas" +msgid "Anything Can Be Beautiful" +msgid_plural "copies of Anything Can Be Beautiful" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41275,16 +40333,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Four Vedas +#. ~ Description for Anything Can Be Beautiful #: lang/json/BOOK_from_json.py msgid "" -"A single volume containing all four Vedas, which are the oldest scriptures " -"of Hinduism." +"Stylist, designer, and glitter goddess, Tiffynie Blust looks at the world " +"one mantra in mind: anything can be beautiful." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Hávamál" -msgid_plural "copies of Hávamál" +msgid "The Greatest Rooms of the Century" +msgid_plural "copies of The Greatest Rooms of the Century" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41292,17 +40350,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Hávamál +#. ~ Description for The Greatest Rooms of the Century #: lang/json/BOOK_from_json.py msgid "" -"An English translation of several Old Norse poems. The poems contain " -"proverbs and stories attributed to the god Odin, many transcribed from oral " -"history." +"A stunning collection of the best living spaces created and commissioned by " +"the most influential people in interior design." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Duelist's Annual" -msgid_plural "Duelist's Annuals" +msgid "The Hands-On Home" +msgid_plural "copies of The Hands-On Home" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41310,16 +40367,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Duelist's Annual +#. ~ Description for The Hands-On Home #: lang/json/BOOK_from_json.py msgid "" -"An annual publication about fencing and dueling. There are many good " -"illustrations which describe proper technique and form." +"An ecologically-minded take on modern homemaking, this is a practical guide " +"to maximising your time in the kitchen and beyond." msgstr "" #: lang/json/BOOK_from_json.py -msgid "FM 23-25 Army bayonet manual" -msgid_plural "FM 23-25 Army bayonet manuals" +msgid "Rooms We Love" +msgid_plural "copies of Rooms We Love" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41327,14 +40384,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for FM 23-25 Army bayonet manual +#. ~ Description for Rooms We Love #: lang/json/BOOK_from_json.py -msgid "A hefty military field manual about bayonet usage and combat theory." +msgid "" +"This is a guide on how to affordably decorate rooms to suit your " +"personality. In the book, we visit rooms inspired by the needs of each " +"homeowner and will see how they transformed their rooms." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Spetsnaz Knife Techniques" -msgid_plural "copies of Spetsnaz Knife Techniques" +msgid "New York Parties" +msgid_plural "copies of New York Parties" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41342,14 +40402,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Spetsnaz Knife Techniques +#. ~ Description for New York Parties #: lang/json/BOOK_from_json.py -msgid "A classic Soviet text on the art of attacking with a blade." +msgid "" +"Visit the homes of savvy tastemakers from the worlds of fashion, finance, " +"and design, with this book of lavish photography." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Survival Under Atomic Attack" -msgid_plural "copies of Survival Under Atomic Attack" +msgid "Best Signature Outdoor Kitchens" +msgid_plural "copies of Best Signature Outdoor Kitchens" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41357,18 +40419,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Survival Under Atomic Attack +#. ~ Description for Best Signature Outdoor Kitchens #: lang/json/BOOK_from_json.py msgid "" -"A wordy and intricate guide to wilderness and urban survival in a worst-case" -" scenario. While filled with loads of useful information, the madman who " -"wrote this was a terrible writer, and gleaning knowledge from the rants is a" -" chore." +"Outdoor space is one of the hottest amenities being considered by new and " +"existing homeowners. This book will show you how to turn any deck, patio, " +"or other outside area into a great place to cook." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Through the Lens" -msgid_plural "copies of Through the Lens" +msgid "The Art of Using Plants to Transform Your Home" +msgid_plural "copies of The Art of Using Plants to Transform Your Home" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41376,17 +40437,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Through the Lens +#. ~ Description for The Art of Using Plants to Transform Your Home #: lang/json/BOOK_from_json.py msgid "" -"A colorful digest devoted to backpacking and wilderness photography. The " -"photos are beautiful, though the terminology in the sections on " -"survivalcraft assume some proficiency." +"Bring gorgeous greenery into your life with this delightful guide to " +"decorating your living space with a wide variety of plants. Illustrated " +"examples enable you to easily transform every corner of your interior space." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Alpha Male Quarterly" -msgid_plural "Alpha Male Quarterlies" +msgid "Woman of Color" +msgid_plural "copies of Woman of Color" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41394,17 +40455,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Alpha Male Quarterly +#. ~ Description for Woman of Color #: lang/json/BOOK_from_json.py msgid "" -"This is a full-size glossy men's magazine. There's a brief article about " -"hiking and a list of simple wilderness survival tips somewhere in between " -"the photos of bikini-clad women and the gadget advertisements." +"This is a collection of essays and advice on style, beauty, and motherhood." +" Part memoir, part lifestyle guide, this book reflects the author's " +"experience growing up as a woman of color in Brooklyn." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Outdoor Adventures" -msgid_plural "issues of Outdoor Adventures" +msgid "10 Cool Things About Being A Ring Bearer" +msgid_plural "copies of 10 Cool Things About Being A Ring Bearer" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41412,16 +40473,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Outdoor Adventures +#. ~ Description for 10 Cool Things About Being A Ring Bearer #: lang/json/BOOK_from_json.py msgid "" -"A glossy magazine about surviving and hunting in the wilderness. There's an" -" exciting article about a bear attack in the back pages." +"This book is for the delightful little ring bearer in your wedding. The " +"author depicts the responsibility and honor in being a ring bearer. Your " +"little angel will cherish this book as he or she learns how to behave on " +"your perfect day." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pitching a Tent" -msgid_plural "copies of Pitching a Tent" +msgid "How to Raise a Gentleman: A Civilized Guide to Parenting" +msgid_plural "" +"copies of How to Raise a Gentleman: A Civilized Guide to Parenting" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41429,14 +40493,20 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Pitching a Tent +#. ~ Description for How to Raise a Gentleman: A Civilized Guide to Parenting #: lang/json/BOOK_from_json.py -msgid "A guide detailing the basics of woodsmanship and outdoor survival." +msgid "" +"A revised edition for parents who hope their little boy children will grow " +"up to be the kind of men who know which fork to use, how to treat others, " +"and generally make their parents proud." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pocket Survival Guide" -msgid_plural "copies of Pocket Survival Guide" +msgid "" +"International Approaches to Securing Radioactive Sources Against Terrorism" +msgid_plural "" +"copies of International Approaches to Securing Radioactive Sources Against " +"Terrorism" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41444,17 +40514,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Pocket Survival Guide +#. ~ Description for International Approaches to Securing Radioactive Sources +#. Against Terrorism #: lang/json/BOOK_from_json.py msgid "" -"This pocket-sized leather-bound survival guide combines a wealth of concise " -"information with simple to follow instructions and easy to read " -"illustrations." +"This book presents how to enhance cooperation and assistance between " +"countries in support of International Atomic Energy Agency efforts to secure" +" radioactive sources against the threat of terrorism." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Autobiography of a Mountain Man" -msgid_plural "copies of Autobiography of a Mountain Man" +msgid "Principles of Forensic Psychiatry" +msgid_plural "copies of Principles of Forensic Psychiatry" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41462,17 +40533,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Autobiography of a Mountain Man +#. ~ Description for Principles of Forensic Psychiatry #: lang/json/BOOK_from_json.py msgid "" -"An amusing historical novel filled with detailed descriptions of surviving " -"in the wild, potentially containing great insights for an experienced " -"outdoorsman." +"This text addresses standards in the assessment and treatment of aggression " +"and violence as well as psychological and neuroimaging assessments." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Outdoor Survival Guide" -msgid_plural "copies of Outdoor Survival Guide" +msgid "The Guide to Reflective Conflict Resolution" +msgid_plural "copies of The Guide to Reflective Conflict Resolution" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41480,16 +40550,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Outdoor Survival Guide +#. ~ Description for The Guide to Reflective Conflict Resolution #: lang/json/BOOK_from_json.py msgid "" -"A thick soft-cover book filled with vital information about surviving in the" -" wild, aimed at the experienced backpacker." +"The back cover of this hardbound book reads: \"Why should professionals care" +" about reflective practice? How do its principles and methods increase " +"competence? What characteristics distinguish reflective practitioners?\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Introduction to Plant Biology" -msgid_plural "copies of Introduction to Plant Biology" +msgid "The Oxbridge Handbook of Mood Ailments" +msgid_plural "copies of The Oxbridge Handbook of Mood Ailments" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41497,17 +40568,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Introduction to Plant Biology +#. ~ Description for The Oxbridge Handbook of Mood Ailments #: lang/json/BOOK_from_json.py msgid "" -"A college-level textbook about plants of all shapes and sizes. Covers a " -"wide range of subjects, from horticulture to the identification of tropical" -" plants. As such, it is of limited practical use in your current situation." +"The Oxbridge Handbook of Mood Ailments provides detailed coverage of the " +"characterization, understanding, and treatment of affective disorders. It " +"provides coverage of unipolar depression, bipolar disorder, and known " +"variants of these illnesses." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Wonderful World of Arthropodology" -msgid_plural "copies of The Wonderful World of Arthropodology" +msgid "Phonological Acquisition and Disorders" +msgid_plural "copies of Phonological Acquisition and Disorders" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41515,21 +40587,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Wonderful World of Arthropodology +#. ~ Description for Phonological Acquisition and Disorders #: lang/json/BOOK_from_json.py msgid "" -"A three-volume doorstopper introducing the whole breadth of modern " -"arthropodology, beginning with a lengthy section on the comparative anatomy " -"of the described taxa. The authors somehow manage to maintain a gushingly " -"enthusiastic tone, even as they describe the grisly effects of arthropod " -"venoms or the mating habits of horseshoe crabs. Given the curious lack of " -"man-sized wasps in the illustrations, you have to wonder how much of the " -"contents is still applicable." +"Studying the phonologies of children with non-organic speech disorders, this" +" volume details the latest findings in optimality theory, phonological " +"acquisition and disorders. It is intended for linguists and psychologists." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Natural Remedies of New England" -msgid_plural "copies of Natural Remedies of New England" +msgid "Therapeutic Gardens and Healing Spaces" +msgid_plural "copies of Therapeutic Gardens and Healing Spaces" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41537,16 +40605,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Natural Remedies of New England +#. ~ Description for Therapeutic Gardens and Healing Spaces #: lang/json/BOOK_from_json.py msgid "" -"A leather bound manuscript, it features native herbal remedies with hand " -"colored illustrations of each plant." +"This book addresses how to design therapeutic gardens. It illustrates a " +"variety of landscape designs appropriate for public spaces that promote " +"mental health." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Swim Planet" -msgid_plural "issues of Swim Planet" +msgid "Advances in Drug Delivery Systems" +msgid_plural "copies of Advances in Drug Delivery Systems" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41554,14 +40623,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Swim Planet +#. ~ Description for Advances in Drug Delivery Systems #: lang/json/BOOK_from_json.py -msgid "The world's leading resource about aquatic sports." +msgid "" +"This softcover reprint covers an array of topics in pharmacology. The " +"physicochemical concepts of the refinement of bioresponsive drug delivery " +"are presented in detail alongside a variety of current approaches employed " +"in the development of zero order release systems." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Water Survival Training Field Manual" -msgid_plural "copies of Water Survival Training Field Manual" +msgid "Using Art to Treat Eating Disorders" +msgid_plural "copies of Using Art to Treat Eating Disorders" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41569,16 +40642,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Water Survival Training Field Manual +#. ~ Description for Using Art to Treat Eating Disorders #: lang/json/BOOK_from_json.py msgid "" -"A commercially produced survival guide that details swimming and deep water " -"survival techniques tailored to emergency scenarios." +"This is an introductory guide for those wanting to explore the use of art to" +" address eating disorders. Art therapy is a particularly effective " +"therapeutic intervention, as it allows people to express uncomfortable " +"thoughts and feelings nonverbally." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Boston AnimeCon magazine" -msgid_plural "Boston AnimeCon magazines" +msgid "A Clinical Guide to Video Gamers" +msgid_plural "copies of A Clinical Guide to Video Gamers" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41586,17 +40661,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Boston AnimeCon magazine +#. ~ Description for A Clinical Guide to Video Gamers #: lang/json/BOOK_from_json.py msgid "" -"A short magazine printed as an advertisement for the now canceled Boston " -"AnimeCon. A few costume ideas are intermixed with miscellaneous information" -" about the event." +"This scholarly work considers the role that games play in psychological " +"experiences and mental health. Chapters examine the factors that compel " +"individual gamers to select and identify with particular games and " +"characters, as well as the different play styles, genres, and archetypes " +"common in video games." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Beauty Magazine" -msgid_plural "Beauty Magazines" +msgid "Paranoia and the History of Madness" +msgid_plural "copies of Paranoia and the History of Madness" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41604,17 +40681,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Beauty Magazine +#. ~ Description for Paranoia and the History of Madness #: lang/json/BOOK_from_json.py msgid "" -"This is a full-size glossy women's magazine. There are a few simple " -"patterns and basic sewing tips somewhere in between the fashion photos and " -"the makeup advertisements." +"This book is an analysis of the use and misuse of paranoia throughout " +"history and in contemporary society. The impact of paranoia on societies is" +" explored in detail." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Sew Awesome Monthly" -msgid_plural "Sew Awesome Monthlies" +msgid "Psychoanalysis and Colonialism" +msgid_plural "copies of Psychoanalysis and Colonialism" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41622,16 +40699,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Sew Awesome Monthly +#. ~ Description for Psychoanalysis and Colonialism #: lang/json/BOOK_from_json.py msgid "" -"A well presented monthly magazine all about knitting, crocheting, and " -"needlepoint. Filled with ideas and project patterns." +"Freud referred to women's sexuality as a \"dark continent\" for " +"psychoanalysis, drawing on colonial use of the same phrase to refer to " +"Africa. This book details how the problematic universalism of " +"psychoanalysis led theorists to reject its relevance for postcolonial " +"critique." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Sew What? Clothing!" -msgid_plural "copies of Sew What? Clothing!" +msgid "The Psychology of Stalking" +msgid_plural "copies of The Psychology of Stalking" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41639,14 +40719,19 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Sew What? Clothing! +#. ~ Description for The Psychology of Stalking #: lang/json/BOOK_from_json.py -msgid "A colorful book about tailoring." +msgid "" +"This book explores stalking from social, psychiatric, psychological and " +"behavioral perspectives. Topics include psychiatric diagnoses, offender-" +"victim typologies, cyberstalking, false victimization syndrome, erotomania, " +"domestic violence, the stalking of public figures, and many other aspects of" +" stalking." msgstr "" #: lang/json/BOOK_from_json.py -msgid "clothing designer's portfolio" -msgid_plural "clothing designer's portfolios" +msgid "Tactical Handgun Digest" +msgid_plural "issues of Tactical Handgun Digest" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41654,17 +40739,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for clothing designer's portfolio +#. ~ Description for Tactical Handgun Digest #: lang/json/BOOK_from_json.py msgid "" -"A leather bound portfolio that once belonged to a clothing designer. Filled" -" with sketches and notes, a skilled tailor could learn a lot from this " -"volume." +"A glossy magazine all about handguns and shooting. There is a good article " +"about proper sighting near the middle." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Traditional Japanese Kimono" -msgid_plural "copies of Traditional Japanese Kimono" +msgid "The Tao of the Handgun" +msgid_plural "copies of The Tao of the Handgun" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41672,14 +40756,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Traditional Japanese Kimono +#. ~ Description for The Tao of the Handgun #: lang/json/BOOK_from_json.py -msgid "An illustrated textbook on the crafting of Japanese traditional garb." +msgid "" +"This introspective volume covers proper usage of handguns, from safety and " +"stance, to maintenance and proper sighting technique." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Friendly, Humane Fashion" -msgid_plural "copies of Friendly, Humane Fashion" +msgid "Modern Rifleman" +msgid_plural "issues of Modern Rifleman" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41687,18 +40773,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Friendly, Humane Fashion +#. ~ Description for Modern Rifleman #: lang/json/BOOK_from_json.py msgid "" -"An educational book detailing the uses of fake fur, as well as its benefits " -"and disadvantages. The prose is rather passionate, and a disclaimer on the " -"cover proudly states that the book is printed and distributed by the Gryphon" -" Animal Rights Organization." +"An informative magazine all about rifles and shooting. There is an " +"excellent article about proper maintenance in this issue." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Sewing Techniques for Designers" -msgid_plural "copies of Sewing Techniques for Designers" +msgid "FM 23-16 Army marksmanship manual" +msgid_plural "FM 23-16 Army marksmanship manuals" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41706,16 +40790,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Sewing Techniques for Designers +#. ~ Description for FM 23-16 Army marksmanship manual #: lang/json/BOOK_from_json.py msgid "" -"A massive, hardbound book full of a wealth of information for the " -"professional clothing designer." +"A hefty military field manual about automatic rifle usage and techniques " +"which improve marksmanship and proper weapons-handling." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ye Scots Beuk o Tailorin'" -msgid_plural "copies of Ye Scots Beuk o Tailorin'" +msgid "Trap and Field" +msgid_plural "issues of Trap and Field" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41723,17 +40807,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Ye Scots Beuk o Tailorin' +#. ~ Description for Trap and Field #: lang/json/BOOK_from_json.py msgid "" -"A translated Gaelic book from Scotland. While boring to read due to its " -"technical tone, it provides insights into Scottish culture and information " -"about tailoring." +"An in-depth magazine all about shotguns and shooting. There is an " +"informative article about proper shooting stance in the back pages." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Dieselpunk Designs" -msgid_plural "copies of Dieselpunk Designs" +msgid "Shotguns: The Art and Science" +msgid_plural "copies of Shotguns: The Art and Science" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41741,16 +40824,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Dieselpunk Designs +#. ~ Description for Shotguns: The Art and Science #: lang/json/BOOK_from_json.py msgid "" -"A large, leatherbound book containing a number of leather and rubber pieces " -"for the fashionable dieselpunk." +"This book claims to address every problem the shotgunner is likely to face, " +"and offers solutions to ensure that shooters can make every shot count." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Diskobolus" -msgid_plural "issues of Diskobolus" +msgid "Submachine Gun Enthusiast" +msgid_plural "issues of Submachine Gun Enthusiast" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41758,14 +40841,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Diskobolus +#. ~ Description for Submachine Gun Enthusiast #: lang/json/BOOK_from_json.py -msgid "A biannual magazine devoted to the art and science of discus-throwing." +msgid "" +"An in-depth magazine about submachine guns and shooting. There is an " +"exhaustive article about close quarter combat techniques in the front." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Complete Guide to Pitching" -msgid_plural "copies of The Complete Guide to Pitching" +msgid "The Submachine Gun Handbook" +msgid_plural "copies of The Submachine Gun Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41773,16 +40858,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Complete Guide to Pitching +#. ~ Description for The Submachine Gun Handbook #: lang/json/BOOK_from_json.py msgid "" -"A detailed guide for baseball pitchers that combines time-tested techniques " -"and information mixed with a common sense approach to pitching." +"This concise guide details the proper care and operation of most forms of " +"machine pistols and submachine guns currently used by regular armed and " +"reserve forces, as well as several obsolete weapons." msgstr "" #: lang/json/BOOK_from_json.py -msgid "How to Trap Anything" -msgid_plural "copies of How to Trap Anything" +msgid "US Weekly" +msgid_plural "US Weeklies" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41790,15 +40876,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for How to Trap Anything +#. ~ Description for US Weekly #: lang/json/BOOK_from_json.py -msgid "" -"A worn manual that describes how to set and disarm a wide variety of traps." +msgid "Weekly news about a bunch of famous people who're all (un)dead now." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Trapper's Life" -msgid_plural "issues of Trapper's Life" +msgid "Self-Esteem for Dummies" +msgid_plural "copies of Self-Esteem for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41806,16 +40891,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Trapper's Life +#. ~ Description for Self-Esteem for Dummies #: lang/json/BOOK_from_json.py -msgid "" -"An in-depth magazine about trapping game. There are lots of articles and " -"diagrams that explain simple trap designs." +msgid "Full of useful tips for showing confidence in your speech." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Modern Trapper" -msgid_plural "copies of The Modern Trapper" +msgid "Principles of Effective Communication" +msgid_plural "copies of Principles of Effective Communication" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41823,14 +40906,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Modern Trapper +#. ~ Description for Principles of Effective Communication #: lang/json/BOOK_from_json.py -msgid "An extensive volume that details numerous methods of trapping game." +msgid "A hardbound book devoted to being an effective and persuasive speaker." msgstr "" #: lang/json/BOOK_from_json.py -msgid "FM 20-32 Mine/Countermine Operations manual" -msgid_plural "copies of FM 20-32 Mine/Countermine Operations manual" +msgid "Dungeon Master's Guide: 6th Edition" +msgid_plural "copies of Dungeon Master's Guide: 6th Edition" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41838,18 +40921,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for FM 20-32 Mine/Countermine Operations manual +#. ~ Description for Dungeon Master's Guide: 6th Edition #: lang/json/BOOK_from_json.py msgid "" -"A hefty military field manual about mine-warfare principles, the mechanics " -"of different types of mines/IED's, and countermine operations." +"A thick, hardcover volume with everything needed to weave legendary stories." +" It's full of information, but finding the things you're looking for can be" +" a chore." msgstr "" -#. ~ The spelling is intentionally archaic, as this form is commonly used in -#. the titles of books. #: lang/json/BOOK_from_json.py -msgid "The Compleat Trapper" -msgid_plural "copies of The Compleat Trapper" +msgid "Nail Your Law Firm Interview" +msgid_plural "copies of Nail Your Law Firm Interview" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41857,16 +40939,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Compleat Trapper +#. ~ Description for Nail Your Law Firm Interview #: lang/json/BOOK_from_json.py msgid "" -"An in-depth book about trapping game animals, covering methods both modern " -"and ancient." +"This lightweight book proclaims itself to be \"the ONLY gold star interview " +"guide for lawyers interviewing in any type of a job interview.\" It was " +"supposed to help new lawyers find work." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Trapper's Companion" -msgid_plural "copies of The Trapper's Companion" +msgid "holybook abstract" +msgid_plural "holybook abstracts" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41874,17 +40957,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for The Trapper's Companion +#. ~ Description for holybook abstract #: lang/json/BOOK_from_json.py -msgid "" -"A folksy guide to trapping wild game using time-tested methods. A bit in-" -"depth for the beginner, it can provide a wealth of information to a " -"knowledgeable trapper." +msgid "theoretically this isn't a book at all" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Boxing Monthly" -msgid_plural "Boxing Monthlies" +msgid "Mycenacean Hymns" +msgid_plural "copies of Mycenacean Hymns" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41892,16 +40972,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Boxing Monthly +#. ~ Description for Mycenacean Hymns #: lang/json/BOOK_from_json.py msgid "" -"An exciting monthly magazine about boxing. There are lots of large, " -"colorful photos of pugilistic exploits." +"A vellum book containing the hymns central to Marloss faith. As the verses " +"lead to each other, the text sings of unity and promised paradise." msgstr "" #: lang/json/BOOK_from_json.py -msgid "101 Wrestling Moves" -msgid_plural "copies of 101 Wrestling Moves" +msgid "King James Bible" +msgid_plural "copies of King James Bible" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41909,17 +40989,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for 101 Wrestling Moves +#. ~ Description for King James Bible #: lang/json/BOOK_from_json.py msgid "" -"It seems to be a wrestling manual, poorly photocopied and released on " -"spiral-bound paper. Still, there are lots of useful tips for unarmed " -"combat." +"An English translation of the Christian Bible, which originated in England " +"in the early 1600s." msgstr "" #: lang/json/BOOK_from_json.py -msgid "children's book" -msgid_plural "children's books" +msgid "Eastern Orthodox Bible" +msgid_plural "copies of Eastern Orthodox Bible" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -41927,17 +41006,955 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for children's book +#. ~ Description for Eastern Orthodox Bible #: lang/json/BOOK_from_json.py -msgid "" -"A little book for little readers. The colorful cartoon characters and sweet" -" stories contained herein belong to a different time, before the dead walked" -" and the world moved on." +msgid "An English copy of the Eastern Orthodox translation of The Holy Bible." msgstr "" #: lang/json/BOOK_from_json.py -msgid "book of fairy tales" -msgid_plural "books of fairy tales" +msgid "Gideon Bible" +msgid_plural "copies of Gideon Bible" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Gideon Bible +#: lang/json/BOOK_from_json.py +msgid "" +"An English translation of the Christian Bible, distributed free of charge by" +" Gideons International." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Guru Granth Sahib" +msgid_plural "copies of The Guru Granth Sahib" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Guru Granth Sahib +#: lang/json/BOOK_from_json.py +msgid "A single-volume copy of the central religious texts of Sikhism." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Hadith" +msgid_plural "copies of Hadith" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Hadith +#: lang/json/BOOK_from_json.py +msgid "" +"A Muslim religious text containing an account of the sayings and actions of " +"the prophet Muhammad." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Principia Discordia" +msgid_plural "copies of Principia Discordia" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Principia Discordia +#: lang/json/BOOK_from_json.py +msgid "" +"A book that embodies the main beliefs of Discordianism. It seems to " +"primarily concern chaos, and features a card in the back which informs you " +"that you are now a 'genuine and authorized Pope of Discordia'." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Kojiki" +msgid_plural "copies of The Kojiki" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Kojiki +#: lang/json/BOOK_from_json.py +msgid "" +"The oldest extant chronicle of Japan's myths and history, the stories " +"contained in the Kojiki are part of the inspiration behind Shinto practices." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Book of Mormon" +msgid_plural "copies of The Book of Mormon" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Book of Mormon +#: lang/json/BOOK_from_json.py +msgid "" +"The sacred text of the Latter Day Saint movement of Christianity, originally" +" published in 1830 by Joseph Smith." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Gospel of the Flying Spaghetti Monster" +msgid_plural "copies of The Gospel of the Flying Spaghetti Monster" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Gospel of the Flying Spaghetti Monster +#: lang/json/BOOK_from_json.py +msgid "" +"A book that embodies the main beliefs of the Church of the Flying Spaghetti " +"Monster. It seems to involve a lot of pirates and some sort of invisible " +"drunken monster made of pasta." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Quran" +msgid_plural "copies of Quran" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Quran +#: lang/json/BOOK_from_json.py +msgid "" +"An English translation of the Muslim book of holy scriptures, with " +"explanatory notes and commentaries to aid in understanding." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Satanic Bible" +msgid_plural "copies of The Satanic Bible" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Satanic Bible +#: lang/json/BOOK_from_json.py +msgid "" +"A collection of essays, observations, and rituals published by Anton LaVey " +"in 1969." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Dianetics" +msgid_plural "copies of Dianetics" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Dianetics +#: lang/json/BOOK_from_json.py +msgid "" +"This book is the canonical text of Scientology. Written by a science " +"fiction author, it contains self-improvement techniques and musings on " +"psychology called Dianetics." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Book of the SubGenius" +msgid_plural "copies of The Book of the SubGenius" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Book of the SubGenius +#: lang/json/BOOK_from_json.py +msgid "" +"A book about the Church of the SubGenius. It seems to involve a salesman " +"named J. R. \"Bob\" Dobbs and a concept called 'slack'." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Sutras of the Buddha" +msgid_plural "copies of The Sutras of the Buddha" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Sutras of the Buddha +#: lang/json/BOOK_from_json.py +msgid "" +"A collection of discourses attributed to the Buddha and his close disciples." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Talmud" +msgid_plural "copies of the Talmud" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Talmud +#: lang/json/BOOK_from_json.py +msgid "" +"One of the central texts of Rabbinic Judaism, the Talmud expounds upon the " +"Hebrew Bible with teachings and opinions of thousands of rabbis." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Tanakh" +msgid_plural "copies of Tanakh" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Tanakh +#: lang/json/BOOK_from_json.py +msgid "" +"A single-volume book containing the complete canon of the Jewish Bible." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Tripitaka" +msgid_plural "copies of The Tripitaka" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Tripitaka +#: lang/json/BOOK_from_json.py +msgid "" +"A collection of sacred Buddhist writings describing their canons of " +"scriptures." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Upanishads" +msgid_plural "copies of The Upanishads" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Upanishads +#: lang/json/BOOK_from_json.py +msgid "" +"A collection of sacred Hindu writings regarding the nature of reality and " +"describing the character and form of human salvation." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Four Vedas" +msgid_plural "copies of The Four Vedas" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Four Vedas +#: lang/json/BOOK_from_json.py +msgid "" +"A single volume containing all four Vedas, which are the oldest scriptures " +"of Hinduism." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Hávamál" +msgid_plural "copies of Hávamál" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Hávamál +#: lang/json/BOOK_from_json.py +msgid "" +"An English translation of several Old Norse poems. The poems contain " +"proverbs and stories attributed to the god Odin, many transcribed from oral " +"history." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Duelist's Annual" +msgid_plural "Duelist's Annuals" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Duelist's Annual +#: lang/json/BOOK_from_json.py +msgid "" +"An annual publication about fencing and dueling. There are many good " +"illustrations which describe proper technique and form." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "FM 23-25 Army bayonet manual" +msgid_plural "FM 23-25 Army bayonet manuals" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for FM 23-25 Army bayonet manual +#: lang/json/BOOK_from_json.py +msgid "A hefty military field manual about bayonet usage and combat theory." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Spetsnaz Knife Techniques" +msgid_plural "copies of Spetsnaz Knife Techniques" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Spetsnaz Knife Techniques +#: lang/json/BOOK_from_json.py +msgid "A classic Soviet text on the art of attacking with a blade." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Survival Under Atomic Attack" +msgid_plural "copies of Survival Under Atomic Attack" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Survival Under Atomic Attack +#: lang/json/BOOK_from_json.py +msgid "" +"A wordy and intricate guide to wilderness and urban survival in a worst-case" +" scenario. While filled with loads of useful information, the madman who " +"wrote this was a terrible writer, and gleaning knowledge from the rants is a" +" chore." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Through the Lens" +msgid_plural "copies of Through the Lens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Through the Lens +#: lang/json/BOOK_from_json.py +msgid "" +"A colorful digest devoted to backpacking and wilderness photography. The " +"photos are beautiful, though the terminology in the sections on " +"survivalcraft assume some proficiency." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Alpha Male Quarterly" +msgid_plural "Alpha Male Quarterlies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Alpha Male Quarterly +#: lang/json/BOOK_from_json.py +msgid "" +"This is a full-size glossy men's magazine. There's a brief article about " +"hiking and a list of simple wilderness survival tips somewhere in between " +"the photos of bikini-clad women and the gadget advertisements." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Outdoor Adventures" +msgid_plural "issues of Outdoor Adventures" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Outdoor Adventures +#: lang/json/BOOK_from_json.py +msgid "" +"A glossy magazine about surviving and hunting in the wilderness. There's an" +" exciting article about a bear attack in the back pages." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Pitching a Tent" +msgid_plural "copies of Pitching a Tent" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Pitching a Tent +#: lang/json/BOOK_from_json.py +msgid "A guide detailing the basics of woodsmanship and outdoor survival." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Pocket Survival Guide" +msgid_plural "copies of Pocket Survival Guide" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Pocket Survival Guide +#: lang/json/BOOK_from_json.py +msgid "" +"This pocket-sized leather-bound survival guide combines a wealth of concise " +"information with simple to follow instructions and easy to read " +"illustrations." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Autobiography of a Mountain Man" +msgid_plural "copies of Autobiography of a Mountain Man" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Autobiography of a Mountain Man +#: lang/json/BOOK_from_json.py +msgid "" +"An amusing historical novel filled with detailed descriptions of surviving " +"in the wild, potentially containing great insights for an experienced " +"outdoorsman." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Outdoor Survival Guide" +msgid_plural "copies of Outdoor Survival Guide" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Outdoor Survival Guide +#: lang/json/BOOK_from_json.py +msgid "" +"A thick soft-cover book filled with vital information about surviving in the" +" wild, aimed at the experienced backpacker." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Introduction to Plant Biology" +msgid_plural "copies of Introduction to Plant Biology" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Introduction to Plant Biology +#: lang/json/BOOK_from_json.py +msgid "" +"A college-level textbook about plants of all shapes and sizes. Covers a " +"wide range of subjects, from horticulture to the identification of tropical" +" plants. As such, it is of limited practical use in your current situation." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Wonderful World of Arthropodology" +msgid_plural "copies of The Wonderful World of Arthropodology" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Wonderful World of Arthropodology +#: lang/json/BOOK_from_json.py +msgid "" +"A three-volume doorstopper introducing the whole breadth of modern " +"arthropodology, beginning with a lengthy section on the comparative anatomy " +"of the described taxa. The authors somehow manage to maintain a gushingly " +"enthusiastic tone, even as they describe the grisly effects of arthropod " +"venoms or the mating habits of horseshoe crabs. Given the curious lack of " +"man-sized wasps in the illustrations, you have to wonder how much of the " +"contents is still applicable." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Natural Remedies of New England" +msgid_plural "copies of Natural Remedies of New England" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Natural Remedies of New England +#: lang/json/BOOK_from_json.py +msgid "" +"A leather bound manuscript, it features native herbal remedies with hand " +"colored illustrations of each plant." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Swim Planet" +msgid_plural "issues of Swim Planet" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Swim Planet +#: lang/json/BOOK_from_json.py +msgid "The world's leading resource about aquatic sports." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Water Survival Training Field Manual" +msgid_plural "copies of Water Survival Training Field Manual" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Water Survival Training Field Manual +#: lang/json/BOOK_from_json.py +msgid "" +"A commercially produced survival guide that details swimming and deep water " +"survival techniques tailored to emergency scenarios." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Boston AnimeCon magazine" +msgid_plural "Boston AnimeCon magazines" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Boston AnimeCon magazine +#: lang/json/BOOK_from_json.py +msgid "" +"A short magazine printed as an advertisement for the now canceled Boston " +"AnimeCon. A few costume ideas are intermixed with miscellaneous information" +" about the event." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Beauty Magazine" +msgid_plural "Beauty Magazines" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Beauty Magazine +#: lang/json/BOOK_from_json.py +msgid "" +"This is a full-size glossy women's magazine. There are a few simple " +"patterns and basic sewing tips somewhere in between the fashion photos and " +"the makeup advertisements." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Sew Awesome Monthly" +msgid_plural "Sew Awesome Monthlies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Sew Awesome Monthly +#: lang/json/BOOK_from_json.py +msgid "" +"A well presented monthly magazine all about knitting, crocheting, and " +"needlepoint. Filled with ideas and project patterns." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Sew What? Clothing!" +msgid_plural "copies of Sew What? Clothing!" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Sew What? Clothing! +#: lang/json/BOOK_from_json.py +msgid "A colorful book about tailoring." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "clothing designer's portfolio" +msgid_plural "clothing designer's portfolios" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for clothing designer's portfolio +#: lang/json/BOOK_from_json.py +msgid "" +"A leather bound portfolio that once belonged to a clothing designer. Filled" +" with sketches and notes, a skilled tailor could learn a lot from this " +"volume." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Traditional Japanese Kimono" +msgid_plural "copies of Traditional Japanese Kimono" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Traditional Japanese Kimono +#: lang/json/BOOK_from_json.py +msgid "An illustrated textbook on the crafting of Japanese traditional garb." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Friendly, Humane Fashion" +msgid_plural "copies of Friendly, Humane Fashion" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Friendly, Humane Fashion +#: lang/json/BOOK_from_json.py +msgid "" +"An educational book detailing the uses of fake fur, as well as its benefits " +"and disadvantages. The prose is rather passionate, and a disclaimer on the " +"cover proudly states that the book is printed and distributed by the Gryphon" +" Animal Rights Organization." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Sewing Techniques for Designers" +msgid_plural "copies of Sewing Techniques for Designers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Sewing Techniques for Designers +#: lang/json/BOOK_from_json.py +msgid "" +"A massive, hardbound book full of a wealth of information for the " +"professional clothing designer." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Ye Scots Beuk o Tailorin'" +msgid_plural "copies of Ye Scots Beuk o Tailorin'" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Ye Scots Beuk o Tailorin' +#: lang/json/BOOK_from_json.py +msgid "" +"A translated Gaelic book from Scotland. While boring to read due to its " +"technical tone, it provides insights into Scottish culture and information " +"about tailoring." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Dieselpunk Designs" +msgid_plural "copies of Dieselpunk Designs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Dieselpunk Designs +#: lang/json/BOOK_from_json.py +msgid "" +"A large, leatherbound book containing a number of leather and rubber pieces " +"for the fashionable dieselpunk." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Diskobolus" +msgid_plural "issues of Diskobolus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Diskobolus +#: lang/json/BOOK_from_json.py +msgid "A biannual magazine devoted to the art and science of discus-throwing." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Complete Guide to Pitching" +msgid_plural "copies of The Complete Guide to Pitching" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Complete Guide to Pitching +#: lang/json/BOOK_from_json.py +msgid "" +"A detailed guide for baseball pitchers that combines time-tested techniques " +"and information mixed with a common sense approach to pitching." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "How to Trap Anything" +msgid_plural "copies of How to Trap Anything" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for How to Trap Anything +#: lang/json/BOOK_from_json.py +msgid "" +"A worn manual that describes how to set and disarm a wide variety of traps." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Trapper's Life" +msgid_plural "issues of Trapper's Life" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Trapper's Life +#: lang/json/BOOK_from_json.py +msgid "" +"An in-depth magazine about trapping game. There are lots of articles and " +"diagrams that explain simple trap designs." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Modern Trapper" +msgid_plural "copies of The Modern Trapper" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Modern Trapper +#: lang/json/BOOK_from_json.py +msgid "An extensive volume that details numerous methods of trapping game." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "FM 20-32 Mine/Countermine Operations manual" +msgid_plural "copies of FM 20-32 Mine/Countermine Operations manual" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for FM 20-32 Mine/Countermine Operations manual +#: lang/json/BOOK_from_json.py +msgid "" +"A hefty military field manual about mine-warfare principles, the mechanics " +"of different types of mines/IED's, and countermine operations." +msgstr "" + +#. ~ The spelling is intentionally archaic, as this form is commonly used in +#. the titles of books. +#: lang/json/BOOK_from_json.py +msgid "The Compleat Trapper" +msgid_plural "copies of The Compleat Trapper" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Compleat Trapper +#: lang/json/BOOK_from_json.py +msgid "" +"An in-depth book about trapping game animals, covering methods both modern " +"and ancient." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Trapper's Companion" +msgid_plural "copies of The Trapper's Companion" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for The Trapper's Companion +#: lang/json/BOOK_from_json.py +msgid "" +"A folksy guide to trapping wild game using time-tested methods. A bit in-" +"depth for the beginner, it can provide a wealth of information to a " +"knowledgeable trapper." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Boxing Monthly" +msgid_plural "Boxing Monthlies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Boxing Monthly +#: lang/json/BOOK_from_json.py +msgid "" +"An exciting monthly magazine about boxing. There are lots of large, " +"colorful photos of pugilistic exploits." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "101 Wrestling Moves" +msgid_plural "copies of 101 Wrestling Moves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for 101 Wrestling Moves +#: lang/json/BOOK_from_json.py +msgid "" +"It seems to be a wrestling manual, poorly photocopied and released on " +"spiral-bound paper. Still, there are lots of useful tips for unarmed " +"combat." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "children's book" +msgid_plural "children's books" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for children's book +#: lang/json/BOOK_from_json.py +msgid "" +"A little book for little readers. The colorful cartoon characters and sweet" +" stories contained herein belong to a different time, before the dead walked" +" and the world moved on." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "book of fairy tales" +msgid_plural "books of fairy tales" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -42485,7 +42502,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -42504,7 +42521,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -42523,7 +42540,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -42542,7 +42559,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -42561,7 +42578,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -42847,7 +42864,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -42862,7 +42879,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -42877,7 +42894,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -42894,7 +42911,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -42909,7 +42926,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -42926,7 +42943,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -42944,7 +42961,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -42959,7 +42976,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -42976,7 +42993,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -42991,7 +43008,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -43026,6 +43043,25 @@ msgstr[5] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -45734,7 +45770,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -45810,7 +45846,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" @@ -45821,7 +45857,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -45838,7 +45874,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -45855,7 +45891,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -45870,7 +45906,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -45885,7 +45921,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -45902,7 +45938,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -45919,7 +45955,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "" @@ -45934,7 +45970,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -45964,7 +46000,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -45983,7 +46019,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -46001,7 +46037,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -46040,7 +46076,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -46055,7 +46091,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -46072,7 +46108,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -46091,7 +46127,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -46110,7 +46146,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -46128,7 +46164,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -46148,7 +46184,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -46165,7 +46201,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -46183,7 +46219,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -46202,7 +46238,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -46219,7 +46255,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -46236,7 +46272,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -46253,7 +46289,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -46268,7 +46304,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -46369,13 +46405,28 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -46430,7 +46481,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -46445,7 +46496,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" @@ -46460,7 +46511,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "" @@ -46475,7 +46526,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -46492,7 +46543,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -46509,7 +46560,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -46524,7 +46575,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -46541,7 +46592,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -46556,7 +46607,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -46572,7 +46623,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -46589,7 +46640,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -46606,7 +46657,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -46623,7 +46674,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -46640,7 +46691,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -46655,7 +46706,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "" @@ -46670,7 +46721,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -46685,7 +46736,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -46700,7 +46751,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -46716,7 +46767,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -46733,7 +46784,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -46750,7 +46801,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -46785,7 +46836,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "" @@ -46800,7 +46851,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -46815,7 +46866,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -46832,7 +46883,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -46848,7 +46899,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -46865,7 +46916,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -46880,7 +46931,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -46897,7 +46948,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -46912,7 +46963,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -46930,7 +46981,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -46947,7 +46998,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -46964,7 +47015,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -46981,7 +47032,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -46996,7 +47047,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -47013,7 +47064,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -47066,7 +47117,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "" @@ -47081,7 +47132,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -47096,7 +47147,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -47111,7 +47162,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -47126,7 +47177,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -47142,7 +47193,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -47159,7 +47210,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -47174,7 +47225,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "" @@ -47189,7 +47240,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -47206,7 +47257,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -47325,7 +47376,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -47340,7 +47391,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -47355,7 +47406,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -47372,7 +47423,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -47389,7 +47440,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "" @@ -47404,7 +47455,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "" @@ -47419,7 +47470,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -47436,7 +47487,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -47451,7 +47502,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -47468,7 +47519,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -47484,7 +47535,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -47499,7 +47550,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -47516,7 +47567,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "" @@ -47561,7 +47612,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -47593,7 +47644,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -47611,7 +47662,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -47626,7 +47677,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -47973,18 +48024,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -47999,8 +48050,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -48017,14 +48068,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -48039,7 +48090,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -48079,7 +48130,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "" @@ -48212,7 +48263,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -48343,7 +48394,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -48394,7 +48445,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -48461,7 +48512,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -48574,7 +48625,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -48592,7 +48643,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -48607,7 +48658,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -48625,7 +48676,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -48672,8 +48723,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" @@ -48684,8 +48734,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" @@ -48696,8 +48745,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" @@ -48708,7 +48756,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -48724,7 +48772,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -48740,7 +48788,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" @@ -48751,8 +48799,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" @@ -48763,18 +48810,13 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -48803,7 +48845,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -48876,7 +48918,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -48947,7 +48989,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -48962,7 +49004,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -49073,7 +49115,7 @@ msgstr[5] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -49269,7 +49311,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -49582,7 +49624,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -49719,7 +49761,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -49734,7 +49776,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -49780,6 +49822,43 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" @@ -49790,7 +49869,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -49808,7 +49887,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -49825,7 +49904,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -49840,7 +49919,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -49856,7 +49935,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -49873,7 +49952,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -49890,7 +49969,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -49907,7 +49986,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -49924,7 +50003,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -49958,7 +50037,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -49990,7 +50069,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -50022,7 +50101,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -50037,7 +50116,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -50052,7 +50131,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -50069,7 +50148,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -50088,7 +50167,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -50106,7 +50185,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -50122,7 +50201,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -50154,7 +50233,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -50170,7 +50249,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -50186,7 +50265,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -50235,7 +50314,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -50252,7 +50331,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "" @@ -50282,7 +50361,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -50297,7 +50376,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -50314,7 +50393,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -50331,7 +50410,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -50346,7 +50425,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "" @@ -50395,7 +50474,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -50413,7 +50492,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -50445,7 +50524,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" @@ -50460,7 +50539,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -50494,7 +50573,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -50512,7 +50591,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -50530,7 +50609,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -50624,7 +50703,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -50639,7 +50718,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -50710,7 +50789,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -50725,7 +50804,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -50789,7 +50868,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -50823,7 +50902,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -50838,7 +50917,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -50919,7 +50998,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -50969,7 +51048,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -51018,13 +51097,13 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -51058,7 +51137,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "" @@ -51090,7 +51169,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -51139,7 +51218,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -51156,7 +51235,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -51171,7 +51250,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -51340,7 +51419,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -51355,7 +51434,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -51388,7 +51467,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -51405,7 +51484,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -51422,7 +51501,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -51439,7 +51518,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "" @@ -51454,7 +51533,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -51469,7 +51548,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -51486,7 +51565,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "" @@ -51501,7 +51580,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -51983,7 +52062,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "" @@ -52013,7 +52092,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -52030,7 +52109,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -52047,7 +52126,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -52064,7 +52143,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -52316,7 +52395,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -52410,7 +52489,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -52440,7 +52519,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -52487,7 +52566,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -52505,7 +52584,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -52538,7 +52617,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -52555,7 +52634,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -52587,7 +52666,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -53097,7 +53176,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -53165,7 +53244,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -53233,7 +53312,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -53250,7 +53329,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -53386,12 +53465,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -53406,7 +53485,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -53423,7 +53502,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -53440,7 +53519,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "" @@ -53455,7 +53534,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -53470,7 +53549,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "" @@ -53515,7 +53594,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -53530,7 +53609,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -53577,7 +53656,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -53592,12 +53671,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -53661,7 +53740,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -53759,7 +53838,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -53776,7 +53855,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -53838,7 +53917,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -53853,7 +53932,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -53883,7 +53962,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -53917,8 +53996,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "" @@ -53933,7 +54012,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "" @@ -53948,7 +54027,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -53965,7 +54044,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -53982,8 +54061,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" @@ -53994,8 +54072,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" @@ -54006,8 +54083,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" @@ -54018,7 +54094,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -54035,8 +54111,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" @@ -54047,8 +54123,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" @@ -54059,8 +54135,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" @@ -54071,7 +54147,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -54088,7 +54164,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -54105,7 +54181,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -54203,7 +54279,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" @@ -54218,7 +54294,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -54318,7 +54394,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "" @@ -54434,8 +54510,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -54622,7 +54697,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" @@ -54633,8 +54708,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" @@ -54645,17 +54719,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -54682,8 +54751,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" @@ -54694,7 +54762,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -54721,8 +54789,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" @@ -54733,7 +54800,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -54775,7 +54842,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" @@ -54786,8 +54853,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" @@ -54798,8 +54864,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -54828,7 +54893,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -54895,7 +54960,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -54912,8 +54977,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -54925,7 +54989,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -54943,7 +55007,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -54955,8 +55019,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -54968,8 +55031,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -54998,9 +55060,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -55012,9 +55073,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -55026,9 +55086,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -55058,7 +55117,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -55075,7 +55134,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -55092,7 +55151,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -55108,7 +55167,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -55125,7 +55184,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -55170,8 +55229,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -55200,7 +55258,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -55212,8 +55270,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -55225,8 +55282,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -55238,7 +55294,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -55274,7 +55330,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -55324,8 +55380,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" @@ -55336,8 +55391,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" @@ -55348,8 +55403,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -55378,7 +55432,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -55390,8 +55444,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -55403,8 +55456,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -55416,7 +55468,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -55434,8 +55486,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" @@ -55446,7 +55497,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -55458,8 +55509,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -55503,8 +55553,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" @@ -55515,8 +55564,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" @@ -55527,8 +55576,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -55554,7 +55602,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -55571,7 +55619,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "" @@ -55586,7 +55634,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "" @@ -55616,7 +55664,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -55646,8 +55694,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" @@ -55658,8 +55705,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -55687,8 +55733,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" @@ -55699,7 +55744,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" @@ -55714,8 +55759,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" @@ -55726,7 +55770,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" @@ -55741,8 +55785,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" @@ -55753,7 +55797,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -55770,7 +55814,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" @@ -55781,8 +55825,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" @@ -55793,7 +55836,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -55820,7 +55863,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" @@ -55831,8 +55874,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" @@ -55843,8 +55885,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -55888,8 +55929,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" @@ -55900,8 +55940,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" @@ -55912,8 +55952,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" @@ -55924,7 +55964,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -55941,7 +55981,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" @@ -55952,8 +55992,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -55981,8 +56020,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" @@ -55993,7 +56031,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -56020,8 +56058,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" @@ -56032,7 +56069,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -56044,8 +56081,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -56057,7 +56093,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -56072,7 +56108,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -56084,8 +56120,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -56097,7 +56132,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -56126,7 +56161,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" @@ -56141,8 +56176,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -56154,7 +56188,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -56167,8 +56201,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -56214,7 +56247,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" @@ -56225,8 +56258,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" @@ -56237,8 +56269,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -56265,7 +56296,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" @@ -56276,8 +56307,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" @@ -56288,8 +56318,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -56318,7 +56347,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -56330,8 +56359,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -56343,7 +56371,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -56372,8 +56400,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" @@ -56384,7 +56411,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -56412,10 +56439,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -56427,12 +56452,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -56478,9 +56502,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -56511,7 +56534,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -56528,8 +56551,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -56541,7 +56563,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -56558,7 +56580,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -56590,7 +56612,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -56619,8 +56641,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -56649,8 +56670,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" @@ -56661,7 +56681,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -56688,7 +56708,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" @@ -56699,8 +56719,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -56749,12 +56768,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -56813,7 +56832,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -56848,7 +56867,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -56950,7 +56969,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -57022,7 +57041,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -57090,12 +57109,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -57113,7 +57132,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -57167,7 +57186,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -57185,12 +57204,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -57207,7 +57226,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -57225,7 +57244,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -57256,7 +57275,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -57273,12 +57292,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -57299,12 +57318,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -57324,12 +57343,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -57347,16 +57366,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -57374,7 +57391,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -57392,7 +57409,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -57410,7 +57427,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -57428,7 +57445,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -57446,7 +57463,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -57465,7 +57482,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -57484,7 +57501,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -57502,7 +57519,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -57520,12 +57537,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -57625,7 +57642,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -57658,13 +57675,13 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -57760,7 +57777,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -57778,7 +57795,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -57847,7 +57864,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -57886,7 +57903,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -57943,7 +57960,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -57958,15 +57975,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -57985,7 +58001,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -58025,7 +58041,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -58059,7 +58075,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -58362,12 +58378,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -58385,7 +58401,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -58420,7 +58436,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -58437,7 +58453,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -58520,7 +58536,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -58539,7 +58555,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -59168,7 +59184,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -59494,9 +59510,8 @@ msgstr[5] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -59587,7 +59602,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -59778,7 +59793,8 @@ msgstr[5] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -59972,7 +59988,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -59987,7 +60003,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -60004,7 +60020,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -60020,7 +60036,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -60035,7 +60051,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -60050,7 +60066,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -60066,7 +60082,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -60081,7 +60097,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "" @@ -60096,7 +60112,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -60113,7 +60129,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -60128,7 +60144,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -60143,7 +60159,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -60158,7 +60174,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -60175,7 +60191,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -60190,7 +60206,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -60207,7 +60223,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -60222,7 +60238,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -60239,7 +60255,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -60254,7 +60270,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -60269,7 +60285,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -60284,7 +60300,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -60301,7 +60317,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -60378,7 +60394,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -60395,7 +60411,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -60410,7 +60426,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -60427,7 +60443,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -60443,7 +60459,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "" @@ -60518,7 +60534,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -60803,7 +60819,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -60839,7 +60855,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -60855,7 +60871,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -60870,7 +60886,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -60886,7 +60902,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -60901,7 +60917,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -60916,7 +60932,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -60979,7 +60995,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -60996,7 +61012,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "" @@ -61011,8 +61027,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -61039,7 +61055,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -61054,7 +61070,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -61088,7 +61104,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -61104,7 +61120,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -61122,7 +61138,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -61137,7 +61153,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -61152,7 +61168,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -61169,7 +61185,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -61186,7 +61202,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -61237,7 +61253,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -61254,7 +61270,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -61271,7 +61287,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -61288,7 +61304,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -61305,7 +61321,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -61322,7 +61338,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -61489,7 +61505,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -61540,8 +61556,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" @@ -61552,7 +61567,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -61564,14 +61579,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -61600,8 +61612,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" @@ -61612,7 +61623,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -61624,7 +61635,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -61661,8 +61672,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" @@ -61673,7 +61683,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -61702,7 +61712,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -61714,7 +61724,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -61805,7 +61815,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -61820,7 +61830,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" @@ -61835,7 +61845,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "" @@ -61850,7 +61860,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "" @@ -61865,7 +61875,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -61880,7 +61890,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -61897,7 +61907,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -61912,7 +61922,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "" @@ -61974,7 +61984,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "" @@ -62005,7 +62015,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -62095,7 +62105,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "" @@ -62171,7 +62181,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "" @@ -62228,7 +62238,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -62244,7 +62254,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "" @@ -62259,7 +62269,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -62291,7 +62301,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -62356,7 +62366,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -62388,7 +62398,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "" @@ -62403,7 +62413,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -62484,7 +62494,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -62502,7 +62512,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -62665,7 +62675,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -62714,7 +62724,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -62731,7 +62741,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -62748,7 +62758,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -62878,7 +62888,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -62925,7 +62935,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -62942,7 +62952,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -62957,7 +62967,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -63006,8 +63016,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -63025,6 +63034,35 @@ msgid "" "nutritious!" msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -63110,7 +63148,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -63174,8 +63212,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" @@ -63186,8 +63223,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" @@ -63198,10 +63235,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -63361,7 +63396,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -63376,7 +63411,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "" @@ -63395,7 +63430,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "" @@ -63414,7 +63449,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "" @@ -63433,7 +63468,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "" @@ -63452,7 +63487,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -63471,7 +63506,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -63490,7 +63525,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -63509,7 +63544,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "" @@ -63528,7 +63563,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "" @@ -63547,7 +63582,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -63566,7 +63601,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -63585,7 +63620,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -63604,7 +63639,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "" @@ -63619,7 +63654,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "" @@ -63634,7 +63669,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "" @@ -63649,7 +63684,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "" @@ -63664,7 +63699,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "" @@ -63679,7 +63714,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -63698,7 +63733,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "" @@ -63713,7 +63748,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "" @@ -63728,7 +63763,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "" @@ -63743,7 +63778,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "" @@ -63762,7 +63797,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -63781,7 +63816,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -63800,7 +63835,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -63815,7 +63850,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -63830,7 +63865,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -63845,7 +63880,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -63866,7 +63901,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -63900,7 +63935,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "" @@ -63915,7 +63950,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "" @@ -63934,7 +63969,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "" @@ -63949,7 +63984,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "" @@ -63983,7 +64018,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -64022,7 +64057,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -64041,7 +64076,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -64050,7 +64085,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -64069,7 +64104,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -64094,7 +64129,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -64109,7 +64144,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -64124,7 +64159,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -64150,7 +64185,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -64165,7 +64200,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -64180,7 +64215,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -64195,7 +64230,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -64210,7 +64245,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -64229,7 +64264,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -64248,7 +64283,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -64267,7 +64302,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -64286,7 +64321,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -64301,7 +64336,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -64316,7 +64351,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -64338,7 +64373,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "" @@ -64353,7 +64388,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "" @@ -64378,7 +64413,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "" @@ -64403,7 +64438,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -64437,7 +64472,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "" @@ -64452,7 +64487,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -64467,7 +64502,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -64486,7 +64521,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -64505,7 +64540,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -64520,7 +64555,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -64535,7 +64570,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -64550,7 +64585,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -64580,8 +64615,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -64623,7 +64657,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" @@ -64634,8 +64668,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -64691,8 +64724,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -64718,10 +64750,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -64807,7 +64837,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" @@ -64839,7 +64869,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -64856,7 +64886,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -64873,7 +64903,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -64888,7 +64918,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -64905,7 +64935,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "" @@ -64920,7 +64950,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -64937,7 +64967,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -64952,7 +64982,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -64967,7 +64997,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -64984,7 +65014,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -65003,7 +65033,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -65020,7 +65050,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "" @@ -65040,7 +65070,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -65106,7 +65136,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -65123,7 +65153,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" @@ -65138,7 +65168,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -65154,7 +65184,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -65169,7 +65199,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -65218,7 +65248,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -65249,7 +65279,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -65265,7 +65295,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "" @@ -65280,7 +65310,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -65295,7 +65325,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -65310,7 +65340,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -65327,7 +65357,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "" @@ -65342,7 +65372,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" @@ -65357,7 +65387,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -65374,7 +65404,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "" @@ -65389,7 +65419,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "" @@ -65404,7 +65434,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -65421,7 +65451,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -65436,7 +65466,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -65453,7 +65483,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -65548,7 +65578,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -65597,7 +65627,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "" @@ -65628,7 +65658,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -65679,7 +65709,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -65711,7 +65741,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -65811,7 +65841,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -65826,7 +65856,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -65843,7 +65873,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -65877,7 +65907,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -65909,7 +65939,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -65924,7 +65954,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -65946,7 +65976,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "" @@ -65961,7 +65991,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -65978,7 +66008,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -65995,7 +66025,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "" @@ -66010,7 +66040,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -66025,7 +66055,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -66040,7 +66070,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "" @@ -66055,7 +66085,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -66072,14 +66102,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "" @@ -66094,7 +66124,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -66111,7 +66141,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -66225,7 +66255,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -66272,7 +66302,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -66304,7 +66334,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -66558,7 +66588,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -66573,7 +66603,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -66588,7 +66618,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -66603,7 +66633,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -66618,7 +66648,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -66633,7 +66663,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -66698,7 +66728,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -66760,7 +66790,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -66777,7 +66807,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -66830,7 +66860,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -66976,7 +67006,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -66994,7 +67024,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -67112,7 +67142,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -67130,7 +67160,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -67148,7 +67178,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -67164,7 +67194,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -67181,7 +67211,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -67252,7 +67282,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -67272,7 +67302,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -67290,7 +67320,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -67308,7 +67338,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -67385,7 +67415,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -67403,7 +67433,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -67419,7 +67449,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -67451,7 +67481,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -67485,7 +67515,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -67503,7 +67533,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -67523,7 +67553,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -67576,7 +67606,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -67658,7 +67688,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -67683,7 +67713,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -68050,8 +68080,8 @@ msgstr[4] "" msgstr[5] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -68069,6 +68099,26 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -68139,6 +68189,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -68339,6 +68399,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -68399,36 +68469,6 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -68827,7 +68867,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -68913,7 +68953,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -68989,14 +69029,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -69087,7 +69127,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -69096,7 +69136,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -69112,7 +69152,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -69127,7 +69167,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -69144,7 +69184,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -69167,7 +69207,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -69185,7 +69225,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -70002,7 +70042,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -70017,7 +70057,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -70034,7 +70074,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -70083,7 +70123,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -70098,7 +70138,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -70113,7 +70153,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -70128,7 +70168,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -70143,7 +70183,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -70158,7 +70198,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -70173,7 +70213,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -70188,7 +70228,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -70566,6 +70606,22 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -70581,6 +70637,23 @@ msgstr[5] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -71601,7 +71674,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -71616,7 +71689,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -71885,6 +71958,37 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -72179,7 +72283,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" @@ -72559,7 +72663,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -72745,7 +72849,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "" @@ -73851,7 +73955,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -74022,7 +74126,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -74056,7 +74160,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -74103,7 +74207,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "" @@ -74162,7 +74266,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -74179,7 +74283,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -74209,7 +74313,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -74760,7 +74864,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -75175,7 +75279,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -75206,7 +75310,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -75695,6 +75799,126 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -76587,7 +76811,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -76772,7 +76996,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -76789,7 +77013,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -76831,7 +77055,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -76851,7 +77075,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -76871,7 +77095,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -76891,7 +77115,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -76911,7 +77135,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -76931,7 +77155,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -76951,7 +77175,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -76971,7 +77195,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -76991,7 +77215,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77011,7 +77235,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77031,7 +77255,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77051,7 +77275,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77071,7 +77295,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77091,7 +77315,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77111,7 +77335,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77131,8 +77355,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77152,7 +77375,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77172,7 +77395,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77192,7 +77415,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77212,7 +77435,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77232,7 +77455,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77252,8 +77475,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -77283,7 +77505,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -77298,7 +77520,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "" @@ -77313,7 +77535,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "" @@ -77328,7 +77550,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "" @@ -77343,7 +77565,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "" @@ -77358,7 +77580,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -77373,7 +77595,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -77388,7 +77610,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -77742,6 +77964,23 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" @@ -77752,9 +77991,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" @@ -77765,7 +78003,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -77777,7 +78015,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -78044,7 +78282,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -78460,6 +78698,116 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -80683,7 +81031,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -80787,7 +81135,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -81561,7 +81909,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -81569,14 +81917,14 @@ msgid "" "edge, it's still quite capable of inflicting deadly wounds." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -82270,7 +82618,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -82563,7 +82911,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -82620,7 +82968,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -82628,7 +82976,7 @@ msgid "" "or by their wives in defense of the household." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -82636,7 +82984,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -82654,7 +83002,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -82821,7 +83169,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -82897,6 +83245,24 @@ msgid "" "offers a good bit of slashing power." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -82908,7 +83274,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -83012,14 +83378,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -83037,14 +83403,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -83222,7 +83588,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -83310,7 +83676,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -83395,7 +83761,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -83694,6 +84060,24 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" @@ -83704,7 +84088,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -83724,7 +84108,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -83780,7 +84164,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -84158,7 +84542,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -84504,7 +84888,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -84785,17 +85169,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -86321,7 +86705,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -86351,7 +86735,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -86366,7 +86750,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -87502,7 +87886,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -87520,7 +87904,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "" @@ -87535,7 +87919,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -87565,7 +87949,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "" @@ -87580,7 +87964,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -87611,7 +87995,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -87907,12 +88291,23 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -88081,6 +88476,21 @@ msgstr[5] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -88660,7 +89070,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -88735,7 +89145,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -89123,7 +89533,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -89140,7 +89550,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -89298,7 +89708,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -89313,7 +89723,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -89560,7 +89970,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -89577,7 +89987,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -89594,7 +90004,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -89611,7 +90021,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -89628,7 +90038,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -89645,7 +90055,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -89662,7 +90072,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -89679,7 +90089,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -89696,7 +90106,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -89713,7 +90123,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -89730,7 +90140,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -89747,7 +90157,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -89888,7 +90298,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -89922,7 +90332,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -89939,7 +90349,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -89973,7 +90383,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -90018,7 +90428,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -90473,7 +90883,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -91407,7 +91817,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -93494,7 +93904,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -93760,7 +94170,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -93913,7 +94323,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -93930,7 +94340,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -94733,6 +95143,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -94877,8 +95298,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -95313,6 +95734,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -95817,7 +96243,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -95832,7 +96258,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -95847,7 +96273,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -95862,7 +96288,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -95877,7 +96303,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -96057,7 +96483,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -96074,7 +96500,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -96089,7 +96515,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -96106,7 +96532,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -96123,7 +96549,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -96172,7 +96598,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -96187,7 +96613,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -96218,7 +96644,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -96233,7 +96659,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -96248,7 +96674,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -96263,7 +96689,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -96278,7 +96704,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -96295,7 +96721,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -96342,7 +96768,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -96357,7 +96783,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -96486,7 +96912,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -96521,7 +96947,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -96560,7 +96986,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -96577,7 +97003,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -96594,7 +97020,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -97435,7 +97861,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -97678,7 +98104,7 @@ msgstr[5] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -99814,7 +100240,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -100065,7 +100491,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -100268,7 +100694,7 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -100624,10 +101050,11 @@ msgstr[5] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -100638,6 +101065,21 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -103465,7 +103907,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -103484,7 +103926,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -103702,7 +104144,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -103853,17 +104295,18 @@ msgstr[5] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -104409,7 +104852,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -104465,7 +104908,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -104483,7 +104926,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -105092,7 +105535,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -107449,7 +107892,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -108137,7 +108580,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -108154,7 +108597,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -108171,7 +108614,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -108189,7 +108632,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -108207,7 +108650,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -108224,7 +108667,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -108242,13 +108685,30 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" @@ -108259,7 +108719,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -108276,7 +108736,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -108293,7 +108753,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -108310,7 +108770,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -108327,7 +108787,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -108361,7 +108821,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -108378,7 +108838,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -108429,7 +108889,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -108446,7 +108906,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -108463,7 +108923,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -108480,7 +108940,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -108495,7 +108955,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -108512,7 +108972,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -108529,7 +108989,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -108546,7 +109006,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -108563,7 +109023,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -108579,7 +109039,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -108596,7 +109056,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -108613,7 +109073,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -108629,7 +109089,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -108646,7 +109106,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -108663,7 +109123,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -108678,7 +109138,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -108695,7 +109155,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -108712,7 +109172,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -108727,7 +109187,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -108744,7 +109204,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -108761,7 +109221,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -108778,7 +109238,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -108796,7 +109256,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -108813,7 +109273,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -108830,7 +109290,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -108847,7 +109307,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -108864,7 +109324,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -108881,7 +109341,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -108898,7 +109358,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -108915,7 +109375,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -108932,7 +109392,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -108949,7 +109409,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -108966,7 +109426,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -108983,7 +109443,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -109000,7 +109460,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -109127,6 +109587,24 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -109800,8 +110278,8 @@ msgstr[4] "" msgstr[5] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -109810,8 +110288,8 @@ msgstr[4] "" msgstr[5] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -109820,8 +110298,8 @@ msgstr[4] "" msgstr[5] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -109917,7 +110395,6 @@ msgstr[4] "" msgstr[5] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -109942,8 +110419,8 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -109951,9 +110428,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -109961,14 +110443,92 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -110267,6 +110827,23 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -110413,7 +110990,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -111005,6 +111582,7 @@ msgstr[5] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -111074,6 +111652,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -111634,6 +112222,23 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -111678,7 +112283,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -111695,7 +112300,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -111713,7 +112318,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -111787,7 +112392,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -111870,7 +112475,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -112182,8 +112787,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -112191,7 +112813,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -112200,8 +112822,8 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -112209,17 +112831,16 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -112227,17 +112848,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -112245,16 +112866,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -112262,16 +112884,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -112279,7 +112902,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -112287,8 +112910,8 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -112296,7 +112919,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -112305,8 +112928,8 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -112314,7 +112937,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -112323,8 +112946,8 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -112332,11 +112955,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -112374,7 +112997,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -112391,7 +113014,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -112408,7 +113032,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -112425,13 +113049,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" @@ -112442,7 +113076,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -112459,7 +113093,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -112493,7 +113127,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -112509,7 +113143,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -112526,8 +113160,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -112554,7 +113188,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -112572,7 +113206,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -112589,7 +113223,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -112606,7 +113240,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -112623,7 +113257,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -112640,7 +113274,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -112657,7 +113291,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -112674,7 +113308,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -112691,7 +113325,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -112709,7 +113343,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -112727,7 +113361,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -112744,7 +113378,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -112761,7 +113395,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -112778,7 +113412,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -112795,7 +113429,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -112812,7 +113446,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -112829,7 +113463,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -112846,7 +113480,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -112863,7 +113497,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -112880,7 +113514,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -112897,7 +113531,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -112914,7 +113548,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -112931,7 +113565,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -112948,7 +113582,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -112966,7 +113600,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -112984,7 +113618,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -113001,7 +113635,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -113018,7 +113652,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -113071,7 +113705,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -113091,7 +113725,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -113488,7 +114122,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -113878,7 +114512,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -114047,6 +114681,26 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -114408,7 +115062,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -114770,7 +115424,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -120062,7 +120716,7 @@ msgstr[5] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -120106,7 +120760,7 @@ msgstr "" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -121222,7 +121876,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -121958,17 +122612,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -121977,7 +122631,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -122260,7 +122914,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -122278,6 +122931,14 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -122704,7 +123365,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -123495,7 +124156,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -123590,7 +124251,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -124576,7 +125237,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -126809,7 +127470,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -126817,7 +127478,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -126914,7 +127575,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -126976,7 +127637,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -126984,7 +127645,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -127020,7 +127681,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -127121,14 +127782,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -127142,7 +127803,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -127346,7 +128007,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -128303,7 +128964,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -131168,8 +131829,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -132034,6 +132695,51 @@ msgstr[5] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -132926,7 +133632,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -132941,7 +133647,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -132997,6 +133703,40 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -133678,7 +134418,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -133696,7 +134436,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -134305,8 +135045,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -134318,8 +135058,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -134331,8 +135071,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -134344,8 +135084,8 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -134357,7 +135097,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -134918,7 +135658,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -135197,13 +135937,13 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -135220,13 +135960,13 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -135818,6 +136558,25 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -136186,13 +136945,32 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -136262,6 +137040,41 @@ msgid "" "to have the right tools for more precise work." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -136423,8 +137236,8 @@ msgid "" msgstr "" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -136432,13 +137245,49 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -136819,40 +137668,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -136887,6 +137702,16 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -137165,8 +137990,8 @@ msgstr[5] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -137727,7 +138552,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -138229,7 +139054,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -138276,7 +139101,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -138298,7 +139123,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -139631,6 +140456,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -139698,6 +140532,30 @@ msgstr[5] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -140698,7 +141556,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -141175,6 +142033,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -142049,15 +142911,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" +msgid "Intradermal Alloy - Arms" msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -142073,37 +142934,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" +msgid "Intradermal Alloy - Legs" msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -142114,8 +142974,8 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -147642,7 +148502,7 @@ msgstr "" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -152828,8 +153688,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "" @@ -152845,9 +153704,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "" @@ -153523,7 +154381,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "" @@ -155798,7 +156656,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "" @@ -155920,6 +156779,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -158882,8 +159755,8 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -158893,7 +159766,7 @@ msgstr[5] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -159076,8 +159949,8 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -159087,9 +159960,9 @@ msgstr[5] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -160352,8 +161225,8 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -160363,7 +161236,7 @@ msgstr[5] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -163328,6 +164201,23 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -166547,8 +167437,9 @@ msgstr[5] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -166564,10 +167455,10 @@ msgstr[5] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -167221,17 +168112,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -169559,6 +170454,11 @@ msgid "" "the punishment of combat." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -170414,6 +171314,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "" @@ -170582,6 +171489,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -171694,6 +172605,10 @@ msgstr "" msgid "Move cursor down" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -171894,6 +172809,20 @@ msgstr "" msgid "No" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -173672,8 +174601,8 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -173682,7 +174611,7 @@ msgstr[4] "" msgstr[5] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -173764,8 +174693,8 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -173774,7 +174703,7 @@ msgstr[4] "" msgstr[5] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -174607,8 +175536,8 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -174617,7 +175546,7 @@ msgstr[4] "" msgstr[5] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -178700,6 +179629,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -179122,8 +180061,8 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -179147,7 +180086,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -179161,7 +180101,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -179174,9 +180114,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "" @@ -179336,7 +180305,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -179351,7 +180320,8 @@ msgstr "" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -179381,17 +180351,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -179402,10 +180371,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -179416,9 +180399,10 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -179433,33 +180417,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"\n" +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -179550,6 +180555,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "" @@ -179607,7 +180626,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -179621,8 +180640,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -179636,6 +180656,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -179687,6 +180708,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "" @@ -179772,6 +180806,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "" @@ -179918,6 +180967,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "" @@ -180254,16 +181318,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -180366,7 +181431,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -180473,33 +181538,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -180620,7 +181685,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -180818,6 +181883,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -180878,10 +181958,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -180982,10 +182063,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -181629,7 +182711,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -181639,11 +182736,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -181737,6 +182835,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -181749,21 +182861,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -181841,6 +182954,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -183473,7 +184600,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -183668,7 +184795,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -183873,7 +185000,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -183927,8 +185054,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -184088,7 +185214,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -184102,7 +185228,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -184141,7 +185267,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -184176,7 +185302,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -184207,7 +185333,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -184249,7 +185375,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -184291,16 +185417,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -184347,7 +185507,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -184397,7 +185557,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -184439,7 +185599,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -184488,7 +185648,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -184515,7 +185675,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -184550,7 +185710,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -185416,7 +186576,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -185451,7 +186611,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -185488,7 +186648,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -185523,7 +186683,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -185551,7 +186711,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -185603,7 +186763,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -185634,7 +186794,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -185663,7 +186823,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -185693,7 +186853,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -185962,8 +187122,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -186364,7 +187523,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -186405,7 +187564,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -186432,7 +187591,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -186514,7 +187673,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -186551,7 +187710,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -186595,7 +187754,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -186644,7 +187803,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -186686,7 +187845,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -186727,7 +187886,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -186762,7 +187921,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -186807,7 +187966,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -186818,6 +187977,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -186964,7 +188181,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -187019,7 +188236,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -187058,7 +188275,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -187095,11 +188312,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -187125,15 +188394,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -187190,7 +188455,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -187240,7 +188505,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -187285,7 +188550,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -187326,11 +188591,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -187373,7 +188639,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -187421,7 +188687,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -187465,7 +188731,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -189124,7 +190390,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -189143,7 +190409,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -189170,7 +190436,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -189204,7 +190470,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -189251,7 +190517,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -190027,6 +191293,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -190719,13 +192009,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -191455,6 +192745,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -192363,7 +193675,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -192374,6 +193685,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -192505,7 +193823,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -192749,8 +194067,8 @@ msgstr "" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" #: lang/json/mutation_from_json.py @@ -195727,8 +197045,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -195968,7 +197286,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -195977,7 +197295,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -195986,7 +197304,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -195995,7 +197313,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -196013,7 +197331,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -196022,7 +197340,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -196031,7 +197349,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -196040,7 +197358,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -196058,7 +197376,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -196067,7 +197385,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -196077,7 +197395,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -196087,7 +197405,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -196117,7 +197435,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -196126,7 +197444,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -196135,7 +197453,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -196144,7 +197462,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -196642,7 +197960,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -196761,7 +198079,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -201270,6 +202588,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -201305,6 +202624,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -201863,6 +203190,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -201998,6 +203333,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -202166,6 +203505,10 @@ msgstr "" msgid "Guard" msgstr "" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "" @@ -202334,6 +203677,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -203269,6 +204616,10 @@ msgstr "" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -203958,6 +205309,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -203966,24 +205321,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -204350,6 +205721,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -205806,6 +207181,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -205916,6 +207345,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -205952,7 +207409,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -205965,7 +207422,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -206558,6 +208015,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -206814,6 +208297,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -206940,6 +208477,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -206988,6 +208553,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -207010,6 +208603,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -211564,6 +213209,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -215914,6 +217617,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -216778,4398 +218503,5871 @@ msgid "" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the northern part of the camp." +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "stone shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle and daub shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need to barricade front windows, let's build wooden walls over them." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden barricades" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need to barricade front windows, let's build mi-go resin walls over them." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin barricades" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We could build butchery rack to start hunting larger animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "butchery rack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should reinforce front doors to make this base safer." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "reinforce doors" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey military helipad garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "military helipad garage survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a root cellar will help us preserving fish and other food." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We must barricade windows, let's use wooden walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We must barricade windows, let's use resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "resin barricades" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Building a butchery rack will allow us hunting bigger animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should reinforce doors to further secure our base." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 1. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 1. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 2. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 2. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 3. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 3. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 4. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 4. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 5. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 5. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 1. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 1. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 2. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 2. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 3. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 3. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 4. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 4. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 5. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 5. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey Light Industry Workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "expansion survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's add a drop hammer for even more crafting possibilities." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "drop hammer" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's remove plants from garden and plow a few plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare garden" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a radio tower and console" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's entrance." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "entrance survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's swimming pool." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "swimming pool survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bedrooms." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bedrooms survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's???." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "??? survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's library." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "library survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bedroom survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's living rooms." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "living rooms survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "swimming survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bar." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bar survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bunk bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build another bunk bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "another bunk bed" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a well will give us easy access to water and allow us to start small" +" farm." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's plow some plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "small farm" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could try to fix reactor's controller to power lights, it would really " +"help us in planning missions." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix reactor's controller" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's set up a radio tower to improve our recruitment efforts, we will " +"redirect some power into it from nuclear reactor." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal shack with a metal roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth shack with a sod roof for our blacksmith's " +"workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a stone shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "stone blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle and daub shack with a sod roof for our blacksmith's " +"workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle and daub blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wooden shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock forge and a workbench to start smithing." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "workbench and forge" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second workbench and a drop hammer for more productive " +"smithing." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "workbench and drop hammer" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a butchery rack, so we can start hunting large animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should remove some of display racks and counters, then build a pair of " +"mattress beds inside radio control's room for our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds inside radio tower shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the northeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in NE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southwest corner shack for " +"our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southwest side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southeast corner shack for " +"our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the south side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in S side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should remove some of display racks and counters, then build a pair of " +"straw beds inside radio control's room for our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds inside radio tower shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the northeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in NE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southwest corner shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southwest side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southeast corner shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the south side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in S side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a root cellar will give us a way to preserve food." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a well will give us easy access to water." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's fix up radio tower and controls to improve our recruitment efforts." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix radio tower and controls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should dig pits for palisade around camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should build palisade around camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build palisade" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could try to fix whole tower and supply it with enough power, which could" +" give us remote access to computer systems connected to backbone network or " +"communication satellites." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix whole radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the south " +"side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the south " +"side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build migo resin walls over windows in radio " +"control's room." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "barricade radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"inside radio tower." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the south" +" side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build wooden walls over windows in radio control's " +"room." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof inside " +"radio tower." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should reorganize that dining area into our " +"kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare the kitchen area" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well, put it near that winch. This will make our future " +"here more secure." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a well" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's set up a radio tower to improve our recruitment efforts, we'll " +"repurpose that terminal for it." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should add some storage and a root cellar in" +" our kitchen area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "add storage and root cellar" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's break up some pavement so we can farm." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "break up driveway" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a privacy fence around the garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a privacy fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot. Let's put it in that dining area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a fireplace" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should set up a brazier for cooking, and " +"grab a pot. Let's put it in that dining area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a brazier" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot. Let's put it in that dining area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wood stove" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some smokers and a charcoal kiln for food preservation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build smoking racks and charcoal kiln" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's make a butchery area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build butchery area" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's add a vat for fermenting." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build fermenting vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's gather some tools so we can work on cars." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "add tools for garage" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southwest bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the SW bedroom" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the northwest bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the NW bedroom" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southeast bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the SE bedroom" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the northeast bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the NE bedroom" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the common area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the common area furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a fabrication workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metalworking forge" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build an anvil and crucible to increase our crafting options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "add an anvil and crucible" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build pottery kiln and get the tools we'll need for glassworking." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a pottery kiln" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We need some tools for metal working." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place advanced tools" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get a nice workbench built to improve our work. Place it next to the " +"anvil." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a workbench" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's add a bellows and barrel for quenching the steel, we'll need more " +"tools too." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bellows and barrel" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a drop hammer for some mass production." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a drop hammer." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with standard walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the standard white living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with wood panel walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with log walls, we'll use that far vehicle " +"bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with metal walls, we'll use that far vehicle " +"bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with mi-go resin walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with rammed earth walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with rock walls, we'll use that far vehicle " +"bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock earth living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with wattle and daub walls, we'll use that far" +" vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle and daub living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should survey the roof top and set up a bulletin board." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace in the northeast " +"shack." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast fireplace" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should set up a brazier in the northeast " +"shack." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast brazier" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove in the northeast shack." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast stove" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "A straw bed in the northeast shack will make sleeping easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast straw bed" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A proper bed in the northeast shack will give one of us a place to sleep " +"soundly." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast bed" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Another straw bed in the northeast shack will make sleeping easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Another proper bed in the northeast shack will give one of us a place to " +"sleep soundly." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the east tent will allow us to house two more people" +" and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "east straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the east tent will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "east beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the east room will allow us to house two more people" +" and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the east room will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the southeast tent will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "southeast straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the southeast tent will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "southeast beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the southeast room will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the southeast room will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the northwest building will allow us to house two " +"more people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northwest straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the northwest building will allow us to house two " +"more people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northwest beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the west tent will allow us to house two more people" +" and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "west straw beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the northwestern part of the camp." +"A pair of proper beds in the west tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the western part of the camp." +msgid "west beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the southwestern part of the camp." +"A pair of straw beds in the west room will allow us to house two more people" +" and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southern part of the camp." +"A pair of proper beds in the west room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "rammed earth shack" +msgid "" +"A pair of straw beds in the southwest tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southeastern part of the camp." +msgid "southwest straw beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"eastern part of the camp." +"A pair of proper beds in the southwest tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northeastern part of the camp." +msgid "southwest beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northern part of the camp." +"A pair of straw beds in the southwest room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northwestern part of the camp." +"A pair of proper beds in the southwest room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"western part of the camp." +"A fireplace, counter, and some pots and pans in the central building will " +"allow us to cook simple recipes and organize hunting expeditions." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southwestern part of the camp." +msgid "central fireplace" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southern part of the camp." +"We need a butchery rack to maximize the harvest from our hunting and " +"trapping efforts." msgstr "" #: lang/json/recipe_from_json.py -msgid "stone shack" +msgid "central butchery rack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southeastern part of the camp." +"A tool rack in the central building will give us a place to store tools." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"eastern part of the camp." +msgid "central tool rack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northeastern part of the camp." +"Setting up some tables and chairs will make the central building into a " +"dining area, and we can also use them as a workspace to organize the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northern part of the camp." +msgid "central dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northwestern part of the camp." +msgid "south dining hall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"western part of the camp." +"A wood stove, counter, and some pots and pans in the south half of the " +"central building will allow us to cook simple recipes and organize hunting " +"expeditions. The stove will be more efficient than a fireplace." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southwestern part of the camp." +msgid "south wood stove" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southern part of the camp." +msgid "north water well" msgstr "" #: lang/json/recipe_from_json.py -msgid "wattle and daub shack" +msgid "north root cellar" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southeastern part of the camp." +msgid "We could build a radio tower to improve the range of our radios." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the eastern part of the camp." +msgid "north radio tower" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northeastern part of the camp." +"Adding a console to control the radio tower will help with recruiting more " +"survivors." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northern part of the camp." +msgid "north radio console" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northwestern part of the camp." +"Digging a trench along the north edge of the camp would provide some defense" +" and generate building materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the western part of the camp." +msgid "north trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southwestern part of the camp." +"Digging a trench along the south edge of the camp would provide some defense" +" and generate building materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southern part of the camp." +msgid "south trench" msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden shack" +msgid "" +"Digging a trench along the northeast corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the east side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southeastern part of the camp." +msgid "northeast trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"eastern part of the camp." +"Digging a trench along the northwest corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the west side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northeastern part of the camp." +msgid "northwest trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northern part of the camp." +"Digging a trench along the southeast corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the east side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northwestern part of the camp." +msgid "southeast trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"western part of the camp." +"Digging a trench along the southwest corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the west side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southwestern part of the camp." +msgid "southwest trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need to barricade front windows, let's build wooden walls over them." +"Digging a trench along the east edge of the camp would provide some defense " +"and generate building materials. We'll need to run the trench the length of" +" the camp if we don't have solid buildings all along the east side." msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden barricades" +msgid "east trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need to barricade front windows, let's build mi-go resin walls over them." +"Digging a trench along the west edge of the camp would provide some defense " +"and generate building materials. We'll need to run the trench the length of" +" the camp if we don't have solid buildings all along the west side." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go resin barricades" +msgid "west trench" msgstr "" #: lang/json/recipe_from_json.py -msgid "We could build butchery rack to start hunting larger animals." +msgid "" +"We need some shelter, so build half of a log shack with a wooden roof on the" +" northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py -msgid "butchery rack" +msgid "northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should reinforce front doors to make this base safer." +msgid "" +"We should use logs to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "reinforce doors" +msgid "expand northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey military helipad garage." +msgid "We should use logs to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "military helipad garage survey" +msgid "finish northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a root cellar will help us preserving fish and other food." +msgid "" +"We should expand our housing by putting up a log building on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "We must barricade windows, let's use wooden walls." +msgid "east shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "We must barricade windows, let's use resin walls." +msgid "" +"We should expand our housing by adding a log room on the east side, which we" +" can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "resin barricades" +msgid "east room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a butchery rack will allow us hunting bigger animals." +msgid "" +"We should expand our housing by putting up a log building on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should reinforce doors to further secure our base." +msgid "southeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 1. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 1. pair of mattress beds" +msgid "southeast room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 2. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the northwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2. pair of mattress beds" +msgid "northwest shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 3. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3. pair of mattress beds" +msgid "west shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 4. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the west side, which we" +" can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 4. pair of mattress beds" +msgid "west room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 5. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 5. pair of mattress beds" +msgid "southwest shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 1. pair of straw beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 1. pair of straw beds" +msgid "southwest room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 2. pair of straw beds in place of desks." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2. pair of straw beds" +msgid "central building NE corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 3. pair of straw beds in place of desks." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3. pair of straw beds" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 4. pair of straw beds in place of desks." +msgid "central building NW corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "build 4. pair of straw beds" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 5. pair of straw beds in place of desks." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 5. pair of straw beds" +msgid "central building north half" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey Light Industry Workshop." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "expansion survey" +msgid "central building SE corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's add a drop hammer for even more crafting possibilities." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "drop hammer" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's remove plants from garden and plow a few plots." +msgid "central building SW corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare garden" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a radio tower and console" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's entrance." +msgid "central building south half" msgstr "" #: lang/json/recipe_from_json.py -msgid "entrance survey" +msgid "" +"We need some shelter, so build half of a metal shack with a metal roof on " +"the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's swimming pool." +msgid "" +"We should use metal to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "swimming pool survey" +msgid "We should use metal to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bedrooms." +msgid "" +"We should expand our housing by putting up a metal building on the east " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "bedrooms survey" +msgid "" +"We should expand our housing by adding a metal room on the east side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's???." +msgid "" +"We should expand our housing by putting up a metal building on the southeast" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "??? survey" +msgid "" +"We should expand our housing by adding a metal room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's kitchen." +msgid "" +"We should expand our housing by putting up a metal building on the northwest" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's library." +msgid "" +"We should expand our housing by putting up a metal building on the west " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "library survey" +msgid "" +"We should expand our housing by adding a metal room on the west side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bedroom." +msgid "" +"We should expand our housing by putting up a metal building on the southwest" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "bedroom survey" +msgid "" +"We should expand our housing by adding a metal room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's living rooms." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "living rooms survey" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "swimming survey" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bar." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "bar survey" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a bunk bed." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build another bunk bed." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "another bunk bed" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a well will give us easy access to water and allow us to start small" -" farm." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's plow some plots." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "small farm" +msgid "" +"We need some shelter, so build half of a mi-go resin shack with a sod roof " +"on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could try to fix reactor's controller to power lights, it would really " -"help us in planning missions." +"We should use mi-go resin to expand the shelter so we have space for another" +" bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix reactor's controller" +msgid "We should use mi-go resin to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's set up a radio tower to improve our recruitment efforts, we will " -"redirect some power into it from nuclear reactor." +"We should expand our housing by putting up a mi-go resin building on the " +"east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a log shack with a wooden roof for our blacksmith's workshop." +"We should expand our housing by adding a mi-go resin room on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "log blacksmith workshop" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a metal shack with a metal roof for our blacksmith's workshop." +"We should expand our housing by adding a mi-go resin room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "metal blacksmith workshop" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go blacksmith workshop" +msgid "" +"We should expand our housing by adding a mi-go resin room on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a rammed earth shack with a sod roof for our blacksmith's " -"workshop." +"We should expand our housing by putting up a mi-go resin building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "rammed earth blacksmith workshop" +msgid "" +"We should expand our housing by adding a mi-go resin room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a stone shack with a wooden roof for our blacksmith's workshop." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "stone blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a wattle and daub shack with a sod roof for our blacksmith's " -"workshop." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "wattle and daub blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a wooden shack with a wooden roof for our blacksmith's workshop." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rock forge and a workbench to start smithing." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "workbench and forge" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a second workbench and a drop hammer for more productive " -"smithing." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "workbench and drop hammer" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a butchery rack, so we can start hunting large animals." +msgid "" +"We need some shelter, so build half of a rammed earth shack with a sod roof " +"on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should remove some of display racks and counters, then build a pair of " -"mattress beds inside radio control's room for our survivors." +"We should use rammed earth to expand the shelter so we have space for " +"another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in radio control's room" +msgid "We should use rammed earth to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds inside radio tower shack for our " -"survivors." +"We should expand our housing by putting up a rammed earth building on the " +"east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in radio tower" +msgid "" +"We should expand our housing by adding a rammed earth room on the east side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the northeast side shack for our " -"survivors." +"We should expand our housing by putting up a rammed earth building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in NE side shack" +msgid "" +"We should expand our housing by adding a rammed earth room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southwest corner shack for " -"our survivors." +"We should expand our housing by putting up a rammed earth building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW corner shack" +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southwest side shack for our " -"survivors." +"We should expand our housing by adding a rammed earth room on the west side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW side shack" +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southeast side shack for our " -"survivors." +"We should expand our housing by adding a rammed earth room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE side shack" +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southeast corner shack for " -"our survivors." +"A central building can act as a core and dining hall. We should build out " +"from the east room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE corner shack" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the south side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build out " +"from the west room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in S side shack" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should remove some of display racks and counters, then build a pair of " -"straw beds inside radio control's room for our survivors." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in radio control's room" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds inside radio tower shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in radio tower" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the northeast side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in NE side shack" +msgid "" +"We need some shelter, so build half of a stone shack with a wooden roof on " +"the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwest corner shack for our " -"survivors." +"We should use rocks to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW corner shack" +msgid "We should use rocks to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwest side shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the east side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW side shack" +msgid "" +"We should expand our housing by adding a rock room on the east side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southeast side shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE side shack" +msgid "" +"We should expand our housing by adding a rock room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southeast corner shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the northwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE corner shack" +msgid "" +"We should expand our housing by putting up a rock building on the west side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the south side shack for our " -"survivors." +"We should expand our housing by adding a rock room on the west side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in S side shack" +msgid "" +"We should expand our housing by putting up a rock building on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a root cellar will give us a way to preserve food." +msgid "" +"We should expand our housing by adding a rock room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a well will give us easy access to water." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's fix up radio tower and controls to improve our recruitment efforts." +"A central building can act as a core and dining hall. We should build out " +"from the east room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix radio tower and controls" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should dig pits for palisade around camp." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build palisade around camp." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "build palisade" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could try to fix whole tower and supply it with enough power, which could" -" give us remote access to computer systems connected to backbone network or " -"communication satellites." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix whole radio tower" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"northeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"southwest corner of the camp." +"We need some shelter, so set up a tent on the northeast side of the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof on the south " -"side of the camp." +msgid "northeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"northeast side of the camp." +"We should expand our housing by putting up a tent on the east side, though " +"doing so will mean we need more materials to build the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southwest corner of the camp." +msgid "east tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southwest side of the camp." +"We should expand our housing by putting up a tent on the southeast side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southeast side of the camp." +msgid "southeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southeast corner of the camp." +"We should expand our housing by putting up a tent on the northwest side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the south " -"side of the camp." +msgid "northwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build migo resin walls over windows in radio " -"control's room." +"We should expand our housing by putting up a tent on the west side, though " +"doing so will mean we need more materials to build the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "barricade radio control's room" +msgid "west tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"inside radio tower." +"We should expand our housing by putting up a tent on the southwest side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the northeast side of the camp." +msgid "southwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southwest corner of the camp." +"We need some shelter, so build half of a wattle-and-daub shack with a sod " +"roof on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southwest side of the camp." +"We should use wattle-and-daub to expand the shelter so we have space for " +"another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southeast side of the camp." +msgid "We should use wattle-and-daub to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southeast corner of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the south side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the east " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"northeast side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southwest corner of the camp." +"We should expand our housing by adding a wattle-and-daub room on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southwest side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southeast side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southeast corner of the camp." +"We should expand our housing by adding a wattle-and-daub room on the west " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"south side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"northeast side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southwest corner of the camp." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southwest side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the east room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southeast side of the camp." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the west room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the south" -" side of the camp." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the northeast side of the camp." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southwest corner of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southwest side of the camp." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southeast corner of the camp." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the south side of the camp." +"We need some shelter, so build half of a wood panel shack with a wooden roof" +" on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build wooden walls over windows in radio control's " -"room." +"We should use wood panel to expand the shelter so we have space for another " +"bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should use wood panel to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof inside " -"radio tower." +"We should expand our housing by putting up a wood panel building on the east" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"northeast side of the camp." +"We should expand our housing by adding a wood panel room on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southwest corner of the camp." +"We should expand our housing by putting up a wood panel building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southwest side of the camp." +"We should expand our housing by adding a wood panel room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southeast side of the camp." +"We should expand our housing by putting up a wood panel building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southeast corner of the camp." +"We should expand our housing by putting up a wood panel building on the west" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"south side of the camp." +"We should expand our housing by adding a wood panel room on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should reorganize that dining area into our " -"kitchen." +"We should expand our housing by putting up a wood panel building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare the kitchen area" +msgid "" +"We should expand our housing by adding a wood panel room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a well, put it near that winch. This will make our future " -"here more secure." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a well" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's set up a radio tower to improve our recruitment efforts, we'll " -"repurpose that terminal for it." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should add some storage and a root cellar in" -" our kitchen area." +"A central building can act as a core and dining hall. We should build out " +"from the west room with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "add storage and root cellar" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's break up some pavement so we can farm." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "break up driveway" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a privacy fence around the garden." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a privacy fence" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a fireplace for cooking and " -"grab a pot. Let's put it in that dining area." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a fireplace" +msgid "We need to survey the base site first." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should set up a brazier for cooking, and " -"grab a pot. Let's put it in that dining area." +"The first thing we are going to need is a command tent to manage and task " +"workers from." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a brazier" +msgid "basic northeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a stove for cooking and grab a " -"pot. Let's put it in that dining area." +"We're going to need a fire pit and a bed if we want to stay here " +"permanently." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood stove" +msgid "basic firepit" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some smokers and a charcoal kiln for food preservation." +msgid "" +"To make this outpost functional we are going to need storage containers to " +"organize our supplies." msgstr "" #: lang/json/recipe_from_json.py -msgid "build smoking racks and charcoal kiln" +msgid "basic storage" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a butchery area." +msgid "" +"Next we should expand the camp to comfortably support two people " +"indefinitely." msgstr "" #: lang/json/recipe_from_json.py -msgid "build butchery area" +msgid "basic northeast bed" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's add a vat for fermenting." +msgid "" +"Additional housing and storage will allow our camp to expand into " +"specialized industries." msgstr "" #: lang/json/recipe_from_json.py -msgid "build fermenting vats" +msgid "basic northwest tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's gather some tools so we can work on cars." +msgid "" +"Constructing a hard command post will transform our little camp into a true " +"base." msgstr "" #: lang/json/recipe_from_json.py -msgid "add tools for garage" +msgid "basic central building" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom." +msgid "" +"Building additional housing will allow us to send companions out to find " +"recruits." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the SW bedroom" +msgid "basic west tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom." +msgid "We need to expand our base to include basic dining facilities." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the NW bedroom" +msgid "basic central kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom." +msgid "More housing means that we can support additional specialists." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the SE bedroom" +msgid "basic southeast tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northeast bedroom." +msgid "An expanded kitchen is needed to support our growing settlement." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the NE bedroom" +msgid "basic expanded kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the common area." +msgid "" +"Finishing the hard structure will give us a more secure place to retreat to " +"if we come under attack." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the common area furniture" +msgid "basic completed central building" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a fabrication workshop." +msgid "" +"I'm surprised we've made it this long without securing a clean water source," +" we need a well." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metalworking forge" +msgid "basic water well" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build an anvil and crucible to increase our crafting options." +msgid "" +"Building a strong wall will keep the base secure even if a small horde " +"attacks." msgstr "" #: lang/json/recipe_from_json.py -msgid "add an anvil and crucible" +msgid "basic partial wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build pottery kiln and get the tools we'll need for glassworking." +msgid "We need to finish our half built fortifications." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a pottery kiln" +msgid "basic complete wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need some tools for metal working." +msgid "We're running out of room and need another living quarters." msgstr "" #: lang/json/recipe_from_json.py -msgid "place advanced tools" +msgid "basic east tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's get a nice workbench built to improve our work. Place it next to the " -"anvil." +msgid "Our kitchen isn't able to keep up with demand, we need to expand it." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a workbench" +msgid "basic dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's add a bellows and barrel for quenching the steel, we'll need more " -"tools too." +msgid "We should build stronger doors to secure our compound." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a bellows and barrel" +msgid "basic reinforced gates" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a drop hammer for some mass production." +msgid "One more tent and our living space will be full." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a drop hammer." +msgid "basic southwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with standard walls, we'll use that far " -"vehicle bay." +"We could construct a radio tower to improve communication range, first step " +"is the tower structure." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the standard white living quarters walls" +msgid "basic radio tower" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with wood panel walls, we'll use that far " -"vehicle bay." +msgid "We need to build a console to control the radio tower." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wood panel living quarters walls" +msgid "basic radio console" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with log walls, we'll use that far vehicle " -"bay." +msgid "Survey land for a kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the log living quarters walls" +msgid "Kitchen survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with metal walls, we'll use that far vehicle " -"bay." +msgid "Building a cook-shack is our first task." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the metal living quarters walls" +msgid "Kitchen fireplace shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with mi-go resin walls, we'll use that far " -"vehicle bay." +msgid "We need to finish framing the walls for the cook-shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the mi-go resin living quarters walls" +msgid "Kitchen finished shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with rammed earth walls, we'll use that far " -"vehicle bay." +"Expanding the shack by including a smoker will increase our versatility." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rammed earth living quarters walls" +msgid "Kitchen charcoal smoker" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with rock walls, we'll use that far vehicle " -"bay." +msgid "A pantry will allow our cooks to store more non-perishables." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rock earth living quarters walls" +msgid "Kitchen pantry expansion" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with wattle and daub walls, we'll use that far" -" vehicle bay." +"Increasing our number of smoking racks will let us craft larger batches." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wattle and daub living quarters walls" +msgid "Kitchen more smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should survey the roof top and set up a bulletin board." +msgid "A well is needed so our cooks don't have to haul in water." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Kitchen water well" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a fireplace in the northeast " -"shack." +"Wood stoves will give us greater control of temperatures and let us craft " +"more difficult recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast fireplace" +msgid "Kitchen wood stoves" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should set up a brazier in the northeast " -"shack." +"Finally, expanding the pantry further will let us store additional " +"materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast brazier" +msgid "Kitchen expanded pantry" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a stove in the northeast shack." +"A trench that may deter movement but is meant to be the foundation of a " +"picket or palisade. Requirements are for 1/2 an over map tile." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast stove" +msgid "" +"A deep trench filled with spikes, requires a trench. Requirements are for " +"1/2 an over map tile." msgstr "" #: lang/json/recipe_from_json.py -msgid "A straw bed in the northeast shack will make sleeping easier." +msgid "Survey land for a blacksmith shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast straw bed" +msgid "Blacksmithy survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A proper bed in the northeast shack will give one of us a place to sleep " -"soundly." +msgid "Building a forge and kiln is our first task." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast bed" +msgid "Blacksmithy forge and kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "Another straw bed in the northeast shack will make sleeping easier." +msgid "Building a proper roof for the shop is the next step." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Another proper bed in the northeast shack will give one of us a place to " -"sleep soundly." +msgid "Blacksmithy roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the east tent will allow us to house two more people" -" and expand the camp." +msgid "Building a working table and placing an anvil are next." msgstr "" #: lang/json/recipe_from_json.py -msgid "east straw beds" +msgid "Blacksmithy anvil and workbench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the east tent will allow us to house two more " -"people and expand the camp." +"If we're going to do more than simple metal casting we need a bigger shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "east beds" +msgid "Blacksmithy expanded shop" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the east room will allow us to house two more people" -" and expand the camp." +msgid "We need some basic tools to make more advanced crafts." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the east room will allow us to house two more " -"people and expand the camp." +msgid "Blacksmithy forging tools" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southeast tent will allow us to house two more " -"people and expand the camp." +msgid "An expanded forge will allow us to work on bigger projects." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast straw beds" +msgid "Blacksmithy expanded forge" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southeast tent will allow us to house two more " -"people and expand the camp." +msgid "Proper steel work requires a bellows and quenching setup." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast beds" +msgid "Blacksmithy bellows and quenching barrels" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southeast room will allow us to house two more " -"people and expand the camp." +msgid "A separate workshop will allow us to do the most basic of machining." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southeast room will allow us to house two more " -"people and expand the camp." +msgid "Blacksmithy machine shop" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the northwest building will allow us to house two " -"more people and expand the camp." +msgid "Next we need to add some basic tools and vises to the workshop." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest straw beds" +msgid "Blacksmithy machine shop tools" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the northwest building will allow us to house two " -"more people and expand the camp." +msgid "Advanced forging processes require more room to work." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest beds" +msgid "Blacksmithy machine shop expansion" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the west tent will allow us to house two more people" -" and expand the camp." +msgid "An on-site well will allow us to fill boilers as needed." msgstr "" #: lang/json/recipe_from_json.py -msgid "west straw beds" +msgid "Blacksmithy well" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the west tent will allow us to house two more " -"people and expand the camp." +"A steam-powered drop hammer will greatly increase production speed in " +"exchange for charcoal." msgstr "" #: lang/json/recipe_from_json.py -msgid "west beds" +msgid "Blacksmithy drop hammer" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the west room will allow us to house two more people" -" and expand the camp." +"We should build a fireplace for cooking and grab a pot. Let's set up near " +"the working terminal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the west room will allow us to house two more " -"people and expand the camp." +"We should build a brazier for cooking and grab a pot. Let's set up near the" +" working terminal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the southwest tent will allow us to house two more " -"people and expand the camp." +"We should build a wood stove for cooking and grab a pot. Let's set up near " +"the working terminal." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest straw beds" +msgid "" +"We should build a well, put it near the terminal. This will make our future" +" here more secure." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southwest tent will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the southeast bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest beds" +msgid "Let's furnish the east bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southwest room will allow us to house two more " -"people and expand the camp." +msgid "furnish the E bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southwest room will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the southeast bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A fireplace, counter, and some pots and pans in the central building will " -"allow us to cook simple recipes and organize hunting expeditions." +msgid "Let's furnish the east bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central fireplace" +msgid "Let's furnish the southeast bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need a butchery rack to maximize the harvest from our hunting and " -"trapping efforts." +msgid "Let's furnish the east bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central butchery rack" +msgid "Let's furnish the southwest bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A tool rack in the central building will give us a place to store tools." +msgid "Let's furnish the west bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central tool rack" +msgid "furnish the W bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Setting up some tables and chairs will make the central building into a " -"dining area, and we can also use them as a workspace to organize the camp." +msgid "Let's furnish the northwest bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central dining hall" +msgid "Let's furnish the southwest bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "south dining hall" +msgid "Let's furnish the west bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A wood stove, counter, and some pots and pans in the south half of the " -"central building will allow us to cook simple recipes and organize hunting " -"expeditions. The stove will be more efficient than a fireplace." +msgid "Let's furnish the northwest bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "south wood stove" +msgid "Let's furnish the southwest bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "north water well" +msgid "Let's furnish the west bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "north root cellar" +msgid "Let's furnish the northwest bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "We could build a radio tower to improve the range of our radios." +msgid "Let's make a dining area." msgstr "" #: lang/json/recipe_from_json.py -msgid "north radio tower" +msgid "furnish the dining room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Adding a console to control the radio tower will help with recruiting more " -"survivors." +msgid "Let's make a living room area." msgstr "" #: lang/json/recipe_from_json.py -msgid "north radio console" +msgid "furnish the living room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the north edge of the camp would provide some defense" -" and generate building materials." +msgid "Let's build some pantry storage." msgstr "" #: lang/json/recipe_from_json.py -msgid "north trench" +msgid "build some wooden racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the south edge of the camp would provide some defense" -" and generate building materials." +msgid "Let's build a work bench." msgstr "" #: lang/json/recipe_from_json.py -msgid "south trench" +msgid "build a work bench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the northeast corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the east side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +"Let's build some living quarters so we can expand. We will start in the " +"southeast corner." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast trench" +msgid "build SE log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the northwest corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the west side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +"Let's build some living quarters so we can expand. We will continue along " +"the same wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest trench" +msgid "build E log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the southeast corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the east side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." -msgstr "" - -#: lang/json/recipe_from_json.py -msgid "southeast trench" +"Let's build some living quarters so we can expand. We will continue along " +"the other wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the southwest corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the west side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +msgid "build SW log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest trench" +msgid "build W log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the east edge of the camp would provide some defense " -"and generate building materials. We'll need to run the trench the length of" -" the camp if we don't have solid buildings all along the east side." +msgid "build NW log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east trench" +msgid "build SE rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the west edge of the camp would provide some defense " -"and generate building materials. We'll need to run the trench the length of" -" the camp if we don't have solid buildings all along the west side." +msgid "build E rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "west trench" +msgid "build SW rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a log shack with a wooden roof on the" -" northeast side of the camp" +msgid "build W rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast shack" +msgid "build NW rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use logs to expand the shelter so we have space for another bed." +msgid "build SE standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "expand northeast shack" +msgid "build E standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use logs to finish the northeast shack." +msgid "build SW standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "finish northeast shack" +msgid "build W standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the east side, " -"which we can also use as part of the central building." +msgid "build NW standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east shack" +msgid "build SE wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the east side, which we" -" can also use as part of the central building." +msgid "build E wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east room" +msgid "build SW wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the southeast " -"side, which we can also use as part of the central building." +msgid "build W wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast shack" +msgid "build NW wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the southeast side, " -"which we can also use as part of the central building." +msgid "build SE wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast room" +msgid "build E wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the northwest " -"side, which we can also use as part of the central building." +msgid "build SW wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest shack" +msgid "build W wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the west side, " -"which we can also use as part of the central building." +msgid "build NW wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "west shack" +msgid "Let's furnish the southeast bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the west side, which we" -" can also use as part of the central building." +msgid "Let's furnish the southeast bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "west room" +msgid "Let's furnish the west bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the southwest " -"side, which we can also use as part of the central building." +msgid "Let's furnish the southeast bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest shack" +msgid "Let's furnish the west bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the southwest side, " -"which we can also use as part of the central building." +msgid "Let's furnish the southwest bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest room" +msgid "Let's furnish the southwest bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from logs." +msgid "Let's furnish the southwest bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building NE corner" +msgid "Let's furnish the southern bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with logs." +msgid "furnish the S bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from logs." +msgid "Let's furnish the southern bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building NW corner" +msgid "Let's furnish the southern bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with logs." +"Let's build some living quarters so we can expand. We will start in the " +"northwest corner." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with logs." +"Let's build some living quarters so we can expand. We will continue along " +"the west wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building north half" +msgid "" +"Let's build some living quarters so we can expand. We will continue along " +"the southwest corner." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from logs." +"Let's build some living quarters so we can expand. We will continue along " +"the south wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building SE corner" +msgid "build S log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with logs." +msgid "build S rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from logs." +msgid "build S standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "central building SW corner" +msgid "build S wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with logs." +msgid "build NW wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with logs." +msgid "build W wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "central building south half" +msgid "build SW wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a metal shack with a metal roof on " -"the northeast side of the camp" +msgid "build S wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should use metal to expand the shelter so we have space for another bed." +"We should build a well, across from the terminal. This will make our future" +" here more secure." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use metal to finish the northeast shack." +msgid "Let's furnish the northwest bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the east " -"side, which we can also use as part of the central building." +msgid "Let's furnish the west bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the east side, which " -"we can also use as part of the central building." +msgid "Let's furnish the west bedroom with regular a bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the southeast" -" side, which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the southeast side, " -"which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the northwest" -" side, which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the west " -"side, which we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the west side, which " -"we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the southwest" -" side, which we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a metal room on the southwest side, " -"which we can also use as part of the central building." +"Let's build some living quarters so we can expand. We will enclose the west" +" side of the stairs." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from metal." +"Let's build two living quarters so we can expand. We will continue along " +"the south wall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with metal." +"Let's build another bedroom so we can expand. We will continue to enclose " +"the stairwell and add new doors." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from metal." +msgid "build central E bedroom log walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with metal." +msgid "Let's build another bedroom on the east wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with metal." +msgid "build E bedroom log walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from metal." +msgid "build central E bedroom rock walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with metal." +msgid "build E bedroom rock walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from metal." +msgid "build central E bedroom standard walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with metal." +msgid "build E bedroom standard walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with metal." +msgid "build central E bedroom wattle and daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a mi-go resin shack with a sod roof " -"on the northeast side of the camp" +msgid "build E bedroom wattle and daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use mi-go resin to expand the shelter so we have space for another" -" bed." +msgid "build S wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use mi-go resin to finish the northeast shack." +msgid "build central E bedroom wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"east side, which we can also use as part of the central building." +msgid "build E bedroom wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the east side, " -"which we can also use as part of the central building." +msgid "Survey land for a kitchen and dining area." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"southeast side, which we can also use as part of the central building." +"Now that we have some cover, we should build 2 fireplaces for cooking and " +"grab a pot." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the southeast " -"side, which we can also use as part of the central building." +msgid "build 2 fireplaces" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"northwest side, which we can also use as part of the central building." +"Now that we have some cover, we should build 2 stoves for cooking and grab a" +" pot." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"west side, which we can also use as part of the central building." +msgid "build 2 wood stoves" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the west side, " -"which we can also use as part of the central building." +msgid "We should build a well. This will make cooking more convenient." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's build some counters and shelves." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the southwest " -"side, which we can also use as part of the central building." +msgid "build kitchen counters" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from mi-go resin." +msgid "build 3 smoking racks and a charcoal kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with mi-go resin." +msgid "Lets furnish the pantry and build 2 root cellars." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from mi-go resin." +msgid "furnish the pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with mi-go resin." +msgid "Let's make some furniture for the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with mi-go resin." +msgid "Let's build some planters to the north for a chef's garden." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from mi-go resin." +msgid "build some planters" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with mi-go resin." +msgid "Let's start building the central kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from mi-go resin." +msgid "build the log wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with mi-go resin." +msgid "Let's finish the central kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with mi-go resin." +msgid "finish the log wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build half of a rammed earth shack with a sod roof " -"on the northeast side of the camp" +"Let's get this log wall smoking area covered to protect the workers from the" +" weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use rammed earth to expand the shelter so we have space for " -"another bed." +msgid "build a log wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use rammed earth to finish the northeast shack." +msgid "Let's build a log wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"east side, which we can also use as part of the central building." +msgid "build a log wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the east side," -" which we can also use as part of the central building." +msgid "Let's build the west log wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"southeast side, which we can also use as part of the central building." +msgid "build W log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the southeast " -"side, which we can also use as part of the central building." +msgid "Let's build the east log wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"northwest side, which we can also use as part of the central building." +msgid "build E log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"west side, which we can also use as part of the central building." +msgid "Let's build the center of the log wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the west side," -" which we can also use as part of the central building." +msgid "build center of the log wall dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's start building the central kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the southwest " -"side, which we can also use as part of the central building." +msgid "build the metal wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from rammed earth." +msgid "Let's finish the central kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with rammed earth." +msgid "finish the metal wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from rammed earth." +"Let's get this metal wall smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with rammed earth." +msgid "build a metal wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with rammed earth." +msgid "Let's build a metal wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from rammed earth." +msgid "build a metal wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with rammed earth." +msgid "Let's build the west metal wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from rammed earth." +msgid "build W metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with rammed earth." +msgid "Let's build the east metal wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with rammed earth." +msgid "build E metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a stone shack with a wooden roof on " -"the northeast side of the camp" +msgid "Let's build the center of the metal wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use rocks to expand the shelter so we have space for another bed." +msgid "build center of the metal wall dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use rocks to finish the northeast shack." +msgid "Let's start building the central kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the east side," -" which we can also use as part of the central building." +msgid "build the mi-go resin central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the east side, which " -"we can also use as part of the central building." +msgid "Let's finish the central kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the southeast " -"side, which we can also use as part of the central building." +msgid "finish the mi-go resin central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a rock room on the southeast side, " -"which we can also use as part of the central building." +"Let's get this mi-go resin smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the northwest " -"side, which we can also use as part of the central building." +msgid "build a mi-go resin roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the west side," -" which we can also use as part of the central building." +msgid "Let's build a mi-go resin wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the west side, which " -"we can also use as part of the central building." +msgid "build a mi-go resin pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the southwest " -"side, which we can also use as part of the central building." +msgid "Let's build the west mi-go resin wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the southwest side, " -"which we can also use as part of the central building." +msgid "build W mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from rocks." +msgid "Let's build the east mi-go resin wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with rocks." +msgid "build E mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from rocks." +msgid "Let's build the center of the mi-go resin dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with rocks." +msgid "build center of the mi-go resin dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with rocks." +msgid "Let's start building the central kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from rocks." +msgid "build the rammed earth central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with rocks." +msgid "Let's finish the central kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from rocks." +msgid "finish the rammed earth central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with rocks." +"Let's get this rammed earth smoking area covered to protect the workers from" +" the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with rocks." +msgid "build a rammed earth roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so set up a tent on the northeast side of the camp." +msgid "Let's build a rammed earth wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast tent" +msgid "build a rammed earth pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the east side, though " -"doing so will mean we need more materials to build the central building." +msgid "Let's build the west rammed earth wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "east tent" +msgid "build W rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the southeast side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's build the east rammed earth wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast tent" +msgid "build E rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the northwest side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's build the center of the rammed earth dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest tent" +msgid "build center of the rammed earth dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the west side, though " -"doing so will mean we need more materials to build the central building." +msgid "Let's start building the central kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "west tent" +msgid "build the central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the southwest side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's finish the central kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest tent" +msgid "finish the rock wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build half of a wattle-and-daub shack with a sod " -"roof on the northeast side of the camp" +"Let's get this rock wall smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use wattle-and-daub to expand the shelter so we have space for " -"another bed." +msgid "build a rock wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use wattle-and-daub to finish the northeast shack." +msgid "Let's build a rock wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" east side, which we can also use as part of the central building." +msgid "build a rock wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the east " -"side, which we can also use as part of the central building." +msgid "Let's build the west rock wall of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" southeast side, which we can also use as part of the central building." +msgid "build W rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the " -"southeast side, which we can also use as part of the central building." +msgid "Let's build the east rock wall of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" northwest side, which we can also use as part of the central building." +msgid "build E rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" west side, which we can also use as part of the central building." +msgid "Let's build the center of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the west " -"side, which we can also use as part of the central building." +msgid "build center of the rock dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" southwest side, which we can also use as part of the central building." +msgid "Let's start building the central kitchen wattle and daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the " -"southwest side, which we can also use as part of the central building." +msgid "build the wattle and daub central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from wattle-and-daub." +msgid "Let's finish the central kitchen wattle and daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with wattle-and-daub." +msgid "finish the wattle and daub central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from wattle-and-daub." +"Let's get this wattle and daub smoking area covered to protect the workers " +"from the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with wattle-and-daub." +msgid "build a wattle and daub roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with wattle-and-daub." +msgid "Let's build a wattle and daub wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from wattle-and-daub." +msgid "build a wattle and daub pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with wattle-and-daub." +msgid "Let's build the west wattle and daub wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from wattle-and-daub." +msgid "build W wattle and daub wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with wattle-and-daub." +msgid "Let's build the east wattle and daub wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with wattle-and-daub." +msgid "build E wattle and daub wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a wood panel shack with a wooden roof" -" on the northeast side of the camp" +msgid "Let's build the center of the wattle and daub dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use wood panel to expand the shelter so we have space for another " -"bed." +msgid "build center of the wattle and daub dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use wood panel to finish the northeast shack." +msgid "Let's start building the central kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the east" -" side, which we can also use as part of the central building." +msgid "build the wood panel central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the east side, " -"which we can also use as part of the central building." +msgid "Let's finish the central kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"southeast side, which we can also use as part of the central building." +msgid "finish the wood panel central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a wood panel room on the southeast " -"side, which we can also use as part of the central building." +"Let's get this wood panel smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"northwest side, which we can also use as part of the central building." +msgid "build a wood panel roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the west" -" side, which we can also use as part of the central building." +msgid "Let's build a wood panel pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the west side, " -"which we can also use as part of the central building." +msgid "build a wood panel pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's build the west wood panel wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the southwest " -"side, which we can also use as part of the central building." +msgid "build W wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from wood panel." +msgid "Let's build the east wood panel wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with wood panel." +msgid "build E wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from wood panel." +msgid "Let's build the center of the wood panel dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with wood panel." +msgid "build center of the dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with wood panel." +msgid "Survey land for a canteen." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from wood panel." +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with wood panel." +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from wood panel." +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with wood panel." +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with wood panel." +msgid "Lets build 2 root cellars in the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to survey the base site first." +msgid "build root cellars" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"The first thing we are going to need is a command tent to manage and task " -"workers from." +msgid "Lets furnish the pantry." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic northeast tent" +msgid "Let's build some planters for a chef's garden." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We're going to need a fire pit and a bed if we want to stay here " -"permanently." -msgstr "" - -#: lang/json/recipe_from_json.py -msgid "basic firepit" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"To make this outpost functional we are going to need storage containers to " -"organize our supplies." +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic storage" +msgid "build salt water tanks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Next we should expand the camp to comfortably support two people " -"indefinitely." +msgid "Let's install some vats in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic northeast bed" +msgid "install some brewery vats" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Additional housing and storage will allow our camp to expand into " -"specialized industries." +msgid "Let's install some racks for storage in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic northwest tent" +msgid "install some brewery racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Constructing a hard command post will transform our little camp into a true " -"base." +msgid "Let's install a still in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic central building" +msgid "install a still in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Building additional housing will allow us to send companions out to find " -"recruits." +msgid "Let's build a windmill to allow us to grid flour efficiently" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic west tent" +msgid "build a windmill" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to expand our base to include basic dining facilities." +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic central kitchen" +msgid "build a bench and a bird bath" msgstr "" #: lang/json/recipe_from_json.py -msgid "More housing means that we can support additional specialists." +msgid "Let's start building the kitchen concrete walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic southeast tent" +msgid "build the concrete kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "An expanded kitchen is needed to support our growing settlement." +msgid "Let's finish the kitchen concrete walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic expanded kitchen" +msgid "finish the concrete kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Finishing the hard structure will give us a more secure place to retreat to " -"if we come under attack." +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic completed central building" +msgid "build a concrete roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"I'm surprised we've made it this long without securing a clean water source," -" we need a well." +msgid "Let's build a concrete wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic water well" +msgid "build a concrete pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Building a strong wall will keep the base secure even if a small horde " -"attacks." +msgid "Let's build the first concrete part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic partial wall" +msgid "build first dining concrete section" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to finish our half built fortifications." +msgid "Let's build the second concrete part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic complete wall" +msgid "build second dining concrete section" msgstr "" #: lang/json/recipe_from_json.py -msgid "We're running out of room and need another living quarters." +msgid "Let's build a the concrete brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic east tent" +msgid "build concrete brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Our kitchen isn't able to keep up with demand, we need to expand it." +msgid "Let's start building the kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic dining hall" +msgid "build the log kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build stronger doors to secure our compound." +msgid "Let's finish the kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic reinforced gates" +msgid "finish the log kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "One more tent and our living space will be full." +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic southwest tent" +msgid "build a log roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could construct a radio tower to improve communication range, first step " -"is the tower structure." +msgid "Let's build a log wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic radio tower" +msgid "build a log pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to build a console to control the radio tower." +msgid "Let's build the first log part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic radio console" +msgid "build first dining log section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen." +msgid "Let's build the second log part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen survey" +msgid "build second dining log section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a cook-shack is our first task." +msgid "Let's build a the log brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen fireplace shack" +msgid "build log brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to finish framing the walls for the cook-shack." +msgid "Let's start building the kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen finished shack" +msgid "build the metal kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Expanding the shack by including a smoker will increase our versatility." +msgid "Let's finish the kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen charcoal smoker" +msgid "finish the metal kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "A pantry will allow our cooks to store more non-perishables." +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen pantry expansion" +msgid "build a metal roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Increasing our number of smoking racks will let us craft larger batches." +msgid "Let's build a metal wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen more smoking racks" +msgid "build a metal pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "A well is needed so our cooks don't have to haul in water." +msgid "Let's build the first metal part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen water well" +msgid "build first dining metal section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Wood stoves will give us greater control of temperatures and let us craft " -"more difficult recipes." +msgid "Let's build the second metal part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen wood stoves" +msgid "build second dining metal section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Finally, expanding the pantry further will let us store additional " -"materials." +msgid "Let's build a the metal brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen expanded pantry" +msgid "build metal brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A trench that may deter movement but is meant to be the foundation of a " -"picket or palisade. Requirements are for 1/2 an over map tile." +msgid "Let's start building the kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A deep trench filled with spikes, requires a trench. Requirements are for " -"1/2 an over map tile." +msgid "build the mi-go resin kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a blacksmith shop." +msgid "Let's finish the kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy survey" +msgid "finish the mi-go resin kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a forge and kiln is our first task." +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy forge and kiln" +msgid "Let's build the first mi-go resin part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a proper roof for the shop is the next step." +msgid "build first dining mi-go resin section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy roof" +msgid "Let's build the second mi-go resin part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a working table and placing an anvil are next." +msgid "build second dining mi-go resin section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy anvil and workbench" +msgid "Let's build a the mi-go resin brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"If we're going to do more than simple metal casting we need a bigger shop." +msgid "build mi-go resin brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy expanded shop" +msgid "Let's start building the kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "We need some basic tools to make more advanced crafts." +msgid "build the rammed earth kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy forging tools" +msgid "Let's finish the kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "An expanded forge will allow us to work on bigger projects." +msgid "finish the rammed earth kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy expanded forge" +msgid "Let's build a rammed earth wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Proper steel work requires a bellows and quenching setup." +msgid "Let's build the first rammed earth part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy bellows and quenching barrels" +msgid "build first dining rammed earth section" msgstr "" #: lang/json/recipe_from_json.py -msgid "A separate workshop will allow us to do the most basic of machining." +msgid "Let's build the second rammed earth part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop" +msgid "build second dining rammed earth section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Next we need to add some basic tools and vises to the workshop." +msgid "Let's build a the rammed earth brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop tools" +msgid "build rammed earth brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Advanced forging processes require more room to work." +msgid "Let's start building the kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop expansion" +msgid "build the rock kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "An on-site well will allow us to fill boilers as needed." +msgid "Let's finish the kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy well" +msgid "finish the rock kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A steam-powered drop hammer will greatly increase production speed in " -"exchange for charcoal." +"Let's get this rock smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy drop hammer" +msgid "build a rock roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a fireplace for cooking and grab a pot. Let's set up near " -"the working terminal." +msgid "Let's build a rock wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a brazier for cooking and grab a pot. Let's set up near the" -" working terminal." +msgid "build a rock pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a wood stove for cooking and grab a pot. Let's set up near " -"the working terminal." +msgid "Let's build the first rock part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a well, put it near the terminal. This will make our future" -" here more secure." +msgid "build first dining rock section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with regular beds." +msgid "Let's build the second rock part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with regular beds." +msgid "build second dining rock section" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the E bedroom" +msgid "Let's build a the rock brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with straw beds." +msgid "build rock brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with straw beds." +msgid "Let's start building the kitchen wattle-and-daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with makeshift beds." +msgid "build the wattle-and-daub kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with makeshift beds." +msgid "Let's finish the kitchen wattle-and-daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with regular beds." +msgid "finish the wattle-and-daub kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular beds." +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the W bedroom" +msgid "build a wattle-and-daub roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with regular beds." +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with straw beds." +msgid "build a wattle-and-daub pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with straw beds." +msgid "Let's build the first wattle-and-daub part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with straw beds." +msgid "build first dining wattle-and-daub section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with makeshift beds." +msgid "Let's build the second wattle-and-daub part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with makeshift beds." +msgid "build second dining wattle-and-daub section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with makeshift beds." +msgid "Let's build a the wattle-and-daub brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a dining area." +msgid "build wattle-and-daub brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the dining room" +msgid "Let's start building the kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a living room area." +msgid "build the wood panel kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the living room" +msgid "Let's finish the kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some pantry storage." +msgid "finish the wood panel kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "build some wooden racks" +msgid "Let's build a wood panel wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a work bench." +msgid "Let's build the first wood panel part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a work bench" +msgid "build first dining wood panel section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"southeast corner." +msgid "Let's build the second wood panel part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE log bedroom walls" +msgid "build second dining wood panel section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the same wall." +msgid "Let's build a the wood panel brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E log bedroom walls" +msgid "build wood panel brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the other wall." +msgid "Survey land for a farming area." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW log bedroom walls" +msgid "farm area survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W log bedroom walls" +msgid "Plowing a few plots should get us started." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW log bedroom walls" +msgid "Farm basic plots" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE rock bedroom walls" +msgid "We could use a farming shed to store resources where we'll be working." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rock bedroom walls" +msgid "Farm basic shed" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW rock bedroom walls" +msgid "" +"Our farm could be expanded by finishing the shed and adding additional " +"plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rock bedroom walls" +msgid "Farm upgraded shed" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW rock bedroom walls" +msgid "" +"Building a processing shack should allow us to reclaim additional seeds from" +" our byproducts." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE standard bedroom walls" +msgid "Farm processing shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E standard bedroom walls" +msgid "Prepare a row of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW standard bedroom walls" +msgid "prepare farm plots" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W standard bedroom walls" +msgid "Prepare a second row of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW standard bedroom walls" +msgid "Prepare another pair of rows of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE wattle and daub bedroom walls" +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wattle and daub bedroom walls" +msgid "erect a fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wattle and daub bedroom walls" +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wattle and daub bedroom walls" +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wattle and daub bedroom walls" +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE wood panel bedroom walls" +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wood panel bedroom walls" +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wood panel bedroom walls" +msgid "build a palisade gate" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood panel bedroom walls" +msgid "Survey land for a garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wood panel bedroom walls" +msgid "Building a tool rack should be the first priority." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a regular bed." +msgid "Garage tool rack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a straw bed." +msgid "We should start construction of a roof for the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a straw bed." +msgid "Garage partial roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a makeshift bed." +msgid "Finishing out the roof will let our mechanics work rain or shine." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a makeshift bed." +msgid "Garage completed roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a regular bed." +msgid "" +"Our garage isn't big enough to work on larger vehicles. Let's start " +"expanding it." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a straw bed." +msgid "Garage partial expansion" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a makeshift bed." +msgid "Finishing the roof will let us park RVs and buses in the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with regular beds." +msgid "Garage expanded roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the S bedroom" +msgid "" +"Attaching quarters will let our mechanics work longer hours when needed." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with straw beds." +msgid "Garage mechanics quarters" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with makeshift beds." +msgid "Let's connect the two walls with the missing roof piece." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"northwest corner." +msgid "build the missing roof section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the west wall." +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the southwest corner." +msgid "build some furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the south wall." +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S log bedroom walls" +msgid "build an outer palisade gate" msgstr "" #: lang/json/recipe_from_json.py -msgid "build S rock bedroom walls" +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S standard bedroom walls" +msgid "Let's start building the first garage concrete wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wattle and daub bedroom walls" +msgid "build the first concrete garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wood bedroom walls" +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood bedroom walls" +msgid "build the second concrete garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wood bedroom walls" +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wood bedroom walls" +msgid "build an inner concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a well, across from the terminal. This will make our future" -" here more secure." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with a regular bed." +msgid "extend the first wall using concrete" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a regular bed." +msgid "Let's extend the second wall to match the first one, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular a bed." +msgid "extend the second wall using concrete" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a regular bed." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a straw bed." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a makeshift bed." +msgid "Let's start building the first garage log wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a regular bed." +msgid "build the first log garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a straw bed." +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a makeshift bed." +msgid "build the second log garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will enclose the west" -" side of the stairs." +"Let's build a log wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build two living quarters so we can expand. We will continue along " -"the south wall." +msgid "build an inner log wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build another bedroom so we can expand. We will continue to enclose " -"the stairwell and add new doors." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom log walls" +msgid "extend the first wall using logs" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build another bedroom on the east wall." +msgid "Let's extend the second wall to match the first one, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom log walls" +msgid "extend the second wall using log" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom rock walls" +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom rock walls" +msgid "extend the second wall using logs" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom standard walls" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom standard walls" +msgid "Let's start building the first garage metal wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wattle and daub" +msgid "build the first metal garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom wattle and daub" +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wood panel bedroom walls" +msgid "build the second metal garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wood panel bedroom walls" +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom wood panel bedroom walls" +msgid "build an inner metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen and dining area." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Now that we have some cover, we should build 2 fireplaces for cooking and " -"grab a pot." +msgid "extend the first wall using metal" msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2 fireplaces" +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build 2 stoves for cooking and grab a" -" pot." +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2 wood stoves" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build a well. This will make cooking more convenient." +msgid "Let's start building the first garage mi-go resin wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some counters and shelves." +msgid "build the first mi-go resin garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build kitchen counters" +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3 smoking racks and a charcoal kiln" +msgid "build the second mi-go resin garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Lets furnish the pantry and build 2 root cellars." +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the pantry" +msgid "build an inner mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make some furniture for the dining hall." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some planters to the north for a chef's garden." +msgid "extend the first wall using mi-go resin" msgstr "" #: lang/json/recipe_from_json.py -msgid "build some planters" +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen log walls." +msgid "extend the second wall using mi-go resin" msgstr "" #: lang/json/recipe_from_json.py -msgid "build the log wall central kitchen room" +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen log walls." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the log wall central kitchen room" +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this log wall smoking area covered to protect the workers from the" -" weather." +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a log wall roofed area for smoking racks" +msgid "build the second rammed earth garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a log wall pantry west of the kitchen." +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a log wall pantry" +msgid "build an inner rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west log wall of the dining hall." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W log wall" +msgid "extend the first wall using rammed earth" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east log wall of the dining hall." +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E log wall" +msgid "extend the second wall using rammed earth" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the log wall dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the log wall dining hall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen metal walls." +msgid "Let's start building the first garage rock wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the metal wall central kitchen room" +msgid "build the first rock garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen metal walls." +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the metal wall central kitchen room" +msgid "build the second rock garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this metal wall smoking area covered to protect the workers from " -"the weather." +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metal wall roofed area for smoking racks" +msgid "build an inner rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a metal wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metal wall pantry" +msgid "extend the first wall using rock" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west metal wall of the dining hall." +msgid "Let's extend the second wall to match the first one, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W metal wall" +msgid "extend the second wall using rock" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east metal wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E metal wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the metal wall dining hall." +msgid "Let's start building the first garage wattle-and-daub wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the metal wall dining hall" +msgid "build the first wattle-and-daub garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen mi-go resin walls." +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the mi-go resin central kitchen room" +msgid "build the second wattle-and-daub garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen mi-go resin walls." +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the mi-go resin central kitchen room" +msgid "build an inner wattle-and-daub wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this mi-go resin smoking area covered to protect the workers from " -"the weather." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a mi-go resin roofed area for smoking racks" +msgid "extend the first wall using wattle-and-daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a mi-go resin wall pantry west of the kitchen." +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a mi-go resin pantry" +msgid "extend the second wall using wattle-and-daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west mi-go resin wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W mi-go resin wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east mi-go resin wall of the dining hall." +msgid "Let's start building the first garage wood wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E mi-go resin wall" +msgid "build the first wood garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the mi-go resin dining hall." +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the mi-go resin dining hall" +msgid "build the second wood garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rammed earth walls." +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rammed earth central kitchen room" +msgid "build an inner wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rammed earth walls." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the rammed earth central kitchen room" +msgid "extend the first wall using wood panels" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rammed earth smoking area covered to protect the workers from" -" the weather." +"Let's extend the second wall to match the first one, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rammed earth roofed area for smoking racks" +msgid "extend the second wall using wood" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rammed earth wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rammed earth pantry" +msgid "extend the second wall using wood panels" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west rammed earth wall of the dining hall." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rammed earth wall" +msgid "Survey land for a livestock area." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east rammed earth wall of the dining hall." +msgid "Livestock survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rammed earth wall" +msgid "" +"We could use a fence to contain our chickens and other birds, so build a " +"chickenwire fence on the east side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rammed earth dining hall." +msgid "east coop yard" msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the rammed earth dining hall" +msgid "" +"We could use paddock for the stable, so build a split-rail fence on the " +"north side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rock walls." +msgid "north paddock" msgstr "" #: lang/json/recipe_from_json.py -msgid "build the central kitchen room" +msgid "" +"We could use paddock for the stable, so build a split-rail fence in the " +"center of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rock walls." +msgid "center paddock" msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the rock wall central kitchen room" +msgid "" +"We could use paddock for the stable, so build a split-rail fence to close " +"off the south end of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rock wall smoking area covered to protect the workers from " -"the weather." +"We could use a coop to contain our chickens and other birds, so build a log " +"shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rock wall roofed area for smoking racks" +msgid "northeast coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rock wall pantry west of the kitchen." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rock wall pantry" +msgid "southeast storage room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west rock wall of the rock wall dining hall." +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rock wall" +msgid "southwest stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east rock wall of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the west" +" side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rock wall" +msgid "west stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the " +"northwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the rock dining hall" +msgid "northwest stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wattle and daub walls." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"metal sheet shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wattle and daub central kitchen room" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal sheet shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wattle and daub walls." +msgid "" +"We could use a stable for larger livestock, so build a metal sheet shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the wattle and daub central kitchen room" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a mi-" +"go resin shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wattle and daub smoking area covered to protect the workers " -"from the weather." +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub roofed area for smoking racks" +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a wattle and daub wall pantry west of the kitchen." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"rammed earth shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub pantry" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west wattle and daub wall of the dining hall." +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wattle and daub wall" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"stone shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east wattle and daub wall of the dining hall." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"stone shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wattle and daub wall" +msgid "" +"We could use a stable for larger livestock, so build a stone shack with a " +"roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wattle and daub dining hall." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"wattle and daub shack with a roof on the northeast side of the livestock " +"field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the wattle and daub dining hall" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle and daub shack with a roof on the southeast side of the livestock " +"field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wood panel walls." +msgid "" +"We could use a stable for larger livestock, so build a wattle and daub shack" +" with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wood panel central kitchen room" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a wood" +" panel shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wood panel walls." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the wood panel central kitchen room" +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wood panel smoking area covered to protect the workers from " -"the weather." +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood panel roofed area for smoking racks" +msgid "chicken coop yard" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a wood panel pantry west of the kitchen." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood panel pantry" +msgid "remote paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west wood panel wall of the dining hall." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood wall" +msgid "side paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east wood panel wall of the dining hall." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wood wall" +msgid "near paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wood panel dining hall." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the dining hall" +msgid "concrete chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a farming area." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "farm area survey" +msgid "concrete storage shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Plowing a few plots should get us started." +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm basic plots" +msgid "concrete stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "We could use a farming shed to store resources where we'll be working." +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm basic shed" +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Our farm could be expanded by finishing the shed and adding additional " -"plots." +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm upgraded shed" +msgid "log chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Building a processing shack should allow us to reclaim additional seeds from" -" our byproducts." +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm processing shack" +msgid "log storage shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a garage." +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a tool rack should be the first priority." +msgid "log stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage tool rack" +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should start construction of a roof for the garage." +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage partial roof" +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Finishing out the roof will let our mechanics work rain or shine." +msgid "metal chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage completed roof" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Our garage isn't big enough to work on larger vehicles. Let's start " -"expanding it." +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage partial expansion" +msgid "metal stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Finishing the roof will let us park RVs and buses in the garage." +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage expanded roof" +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Attaching quarters will let our mechanics work longer hours when needed." +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage mechanics quarters" +msgid "mi-go resin chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a livestock area." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Livestock survey" +msgid "mi-go resin storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a fence to contain our chickens and other birds, so build a " -"chickenwire fence on the east side of the livestock field." +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "east coop yard" +msgid "mi-go resin stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence on the " -"north side of the livestock field." +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "north paddock" +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence in the " -"center of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "center paddock" +msgid "rammed earth chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence to close " -"off the south end of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a log " -"shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast coop" +msgid "rammed earth stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a log " -"shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast storage room" +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a log shack with a roof" -" on the southwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest stable" +msgid "rock chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the west" -" side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "west stable" +msgid "rock storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the " -"northwest side of the livestock field." +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest stable" +msgid "rock stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"metal sheet shack with a roof on the northeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rock walled " +"stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"metal sheet shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a metal sheet shack " -"with a roof on the southwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a mi-" -"go resin shack with a roof on the northeast side of the livestock field." +msgid "wattle-and-daub chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a mi-" -"go resin shack with a roof on the southeast side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a mi-go resin shack " -"with a roof on the southwest side of the livestock field." +msgid "wattle-and-daub storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"rammed earth shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"rammed earth shack with a roof on the southeast side of the livestock field." +msgid "wattle-and-daub stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a rammed earth shack " -"with a roof on the southwest side of the livestock field." +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"stone shack with a roof on the northeast side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"stone shack with a roof on the southeast side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a stone shack with a " -"roof on the southwest side of the livestock field." +msgid "wood panel chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"wattle and daub shack with a roof on the northeast side of the livestock " -"field." +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"wattle and daub shack with a roof on the southeast side of the livestock " -"field." +msgid "wood panel storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wattle and daub shack" -" with a roof on the southwest side of the livestock field." +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a wood" -" panel shack with a roof on the northeast side of the livestock field." +msgid "wood panel stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a wood" -" panel shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wood panel shack with" -" a roof on the southwest side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." msgstr "" #: lang/json/recipe_from_json.py @@ -221866,6 +225064,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -222131,60 +225968,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -223019,7 +227165,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -223031,12 +227181,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -223044,11 +227204,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -223211,6 +227381,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -225348,6 +229574,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -225660,7 +229912,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -226398,8 +230650,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -227169,15 +231421,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -232224,6 +236477,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -232232,7 +236751,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -232349,7 +236868,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -236934,7 +241453,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -236993,7 +241512,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -237006,7 +241525,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -237024,17 +241543,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -237113,7 +241632,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -237223,8 +241742,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -237632,7 +242151,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -237642,8 +242161,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -239065,6 +243584,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -241365,7 +245946,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "" @@ -242026,6 +246607,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -242044,6 +246737,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -243211,6 +247919,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -245537,6 +250323,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -245646,6 +250439,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -245669,6 +250480,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -247179,7 +251997,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -247349,19 +252167,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -247434,95 +252252,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" +msgid "\"Wanna play with me?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" +msgid "\"Sing with me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" +msgid "\"Please take me with you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" +msgid "\"May I have a cookie?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -247530,31 +252352,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" +msgid "\"Hey kids. Want some candy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -247570,19 +252392,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -248649,6 +253467,10 @@ msgstr "" msgid "Gun Store" msgstr "" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "" @@ -250082,6 +254904,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -257302,6 +262128,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -257948,6 +263552,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -258017,6 +263625,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -260449,10 +266068,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -264245,10 +269860,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -264577,6 +270188,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -264868,6 +270588,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -264958,6 +270687,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -267729,6 +273510,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -267914,20 +273712,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -268535,20 +274319,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "" @@ -268584,54 +274354,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -268715,20 +274475,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -268847,34 +274593,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -268890,45 +274608,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -269012,17 +274730,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -269064,7 +274782,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -269077,6 +274795,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -269223,20 +274945,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -269341,20 +275049,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -269455,20 +275149,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -269793,41 +275473,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -270028,20 +275704,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -270802,20 +276464,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -270914,20 +276562,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -270970,20 +276604,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -273224,6 +278844,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "" @@ -276613,24 +282245,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -276638,32 +282270,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -276671,35 +282303,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -276707,33 +282334,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -276741,10 +282368,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -276752,10 +282379,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -276763,40 +282390,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -276804,21 +282429,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" +msgid "reinforced triple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" -msgstr "" - -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -276826,44 +282447,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -276871,14 +282483,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -276896,12 +282504,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -276909,21 +282512,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" +msgid "plastic window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Plastic window" -msgstr "" - -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -276931,10 +282530,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -276942,7 +282541,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -276951,10 +282550,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -276963,21 +282562,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -276985,10 +282580,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -276997,10 +282592,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -277008,7 +282603,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -277017,26 +282612,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -277050,11 +282645,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -279557,18 +285148,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "" @@ -279931,6 +285629,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -280408,6 +286157,15 @@ msgstr "" msgid "wooden aisle" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -280541,6 +286299,10 @@ msgstr "" msgid "wood table" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -280609,6 +286371,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -280715,6 +286481,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -281898,8 +287670,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -284700,6 +290472,18 @@ msgstr "" msgid "Coverage:" msgstr "" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "" @@ -284791,8 +290575,9 @@ msgstr "" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -284804,6 +290589,12 @@ msgstr "" msgid "Storage (%s)" msgstr "" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "" @@ -289089,11 +294880,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "" @@ -289404,6 +295190,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -291590,10 +297384,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -292134,6 +297924,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -292560,6 +298358,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -292648,6 +298451,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -293409,7 +299217,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -293431,15 +299239,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -296795,6 +302594,10 @@ msgstr "" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -297079,6 +302882,15 @@ msgstr "" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "" @@ -299404,10 +305216,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "" @@ -299548,6 +305356,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -299907,10 +305723,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -300445,13 +306257,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -303784,6 +309589,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -306859,13 +312679,19 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" +msgid "Set the timer to how many seconds (0 to cancel)?" msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: src/iuse.cpp msgid "Tick!" @@ -307602,8 +313428,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -307833,38 +313658,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -309109,87 +314902,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -312031,7 +317767,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -316989,6 +322737,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -317862,21 +323615,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -318140,11 +323878,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -319882,11 +325629,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -320651,6 +326393,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -320658,14 +326409,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -322989,20 +328745,6 @@ msgstr "" msgid "# Unexplored" msgstr "" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -323343,6 +329085,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -323391,6 +329138,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -325782,6 +331533,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -330166,6 +335927,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "" diff --git a/lang/po/cs.po b/lang/po/cs.po index 5943484f004b4..4fe308f10345d 100644 --- a/lang/po/cs.po +++ b/lang/po/cs.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Tomáš Mayer, 2021\n" "Language-Team: Czech (https://www.transifex.com/cataclysm-dda-translators/teams/2217/cs/)\n" @@ -28,7 +28,7 @@ msgstr[1] "baterií" msgstr[2] "baterií" msgstr[3] "baterie" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -45,7 +45,7 @@ msgstr[1] "butan" msgstr[2] "butan" msgstr[3] "butan" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Běžná hořlavá kapalina používaná v zapalovačích." @@ -58,7 +58,7 @@ msgstr[1] "barvy ve spreji" msgstr[2] "barvy ve spreji" msgstr[3] "barva ve spreji" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -75,7 +75,7 @@ msgstr[1] "permanentní inkousty" msgstr[2] "permanentní inkousty" msgstr[3] "permanentní inkoust" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -92,7 +92,7 @@ msgstr[1] "svíčkových vosků" msgstr[2] "svíčkových vosků" msgstr[3] "svíčkový vosk" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "Hořlavá pevná látka používaná k výrobě svíček." @@ -105,7 +105,7 @@ msgstr[1] "světlicových pyrotechnik" msgstr[2] "světlicových pyrotechnik" msgstr[3] "světlicová pyrotechnika" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "Pyrotechnická chemikálie používaná ve světlicích." @@ -133,7 +133,7 @@ msgstr[1] "kyslík" msgstr[2] "kyslík" msgstr[3] "kyslík" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Stlačený lékařský kyslík." @@ -146,7 +146,7 @@ msgstr[1] "alobaly" msgstr[2] "alobaly" msgstr[3] "alobal" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -176,7 +176,7 @@ msgstr[1] "nit" msgstr[2] "nit" msgstr[3] "nit" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "Trocha nitě. Dala by se použít k doplnění šitíčka." @@ -216,7 +216,7 @@ msgstr[1] "příze" msgstr[2] "příze" msgstr[3] "příze" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Vlněná příze. Dalo by se z ní uplést nějaké oblečení." @@ -242,7 +242,7 @@ msgstr[1] "role kobercovky" msgstr[2] "role kobercovky" msgstr[3] "role kobercovky" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -321,8 +321,8 @@ msgstr[1] "plutoniová kaše" msgstr[2] "plutoniová kaše" msgstr[3] "plutoniová kaše" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -402,7 +402,7 @@ msgstr[1] "kuličky z ložisek" msgstr[2] "kuličky z ložisek" msgstr[3] "kuličky z ložisek" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "Krabička kovových kuliček z ložisek. Hodí se jako munice do praku." @@ -458,7 +458,7 @@ msgstr[1] "120mm protitankové střely" msgstr[2] "120mm protitankové střely" msgstr[3] "120mm protitanková střela" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -491,7 +491,7 @@ msgstr[1] "směsi bezdýmných prachů" msgstr[2] "směsi bezdýmných prachů" msgstr[3] "směs bezdýmných prachů" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -510,7 +510,7 @@ msgstr[1] "bezdýmné prachy do brokovnice" msgstr[2] "bezdýmné prachy do brokovnice" msgstr[3] "bezdýmný prach do brokovnice" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -524,7 +524,7 @@ msgstr[1] "bezdýmné prachy do pistole" msgstr[2] "bezdýmné prachy do pistole" msgstr[3] "bezdýmný prach do pistole" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -538,7 +538,7 @@ msgstr[1] "bezdýmné prachy pro magnum" msgstr[2] "bezdýmné prachy pro magnum" msgstr[3] "bezdýmný prach pro magnum" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -554,7 +554,7 @@ msgstr[1] "bezdýmné prachy do pušek" msgstr[2] "bezdýmné prachy do pušek" msgstr[3] "bezdýmný prach do pušek" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -568,7 +568,7 @@ msgstr[1] "bezdýmné prachy do velkých pušek" msgstr[2] "bezdýmné prachy do velkých pušek" msgstr[3] "bezdýmný prach do velkých pušek" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -583,7 +583,7 @@ msgstr[1] "dělostřelecké prachy" msgstr[2] "dělostřelecké prachy" msgstr[3] "dělostřelecké prachy" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -598,7 +598,7 @@ msgstr[1] "prášková oxidační činidla" msgstr[2] "prášková oxidační činidla" msgstr[3] "práškové oxidační činidlo" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Těkavé chemické oxidační činidlo v prášku." @@ -611,7 +611,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Práškový louh neboli hydroxid sodný." @@ -719,7 +719,7 @@ msgstr[1] "měď" msgstr[2] "měď" msgstr[3] "měď" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -736,7 +736,7 @@ msgstr[1] "medicínské pásky" msgstr[2] "medicínskÿch pásek" msgstr[3] "medicínské pásky" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Role medicínské pásky. Podobná kobercovce." @@ -750,7 +750,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "POKUD TOHLE ČTETE, NAŠLI JSTE BUG." @@ -763,7 +763,7 @@ msgstr[1] "dřevěné uhlí" msgstr[2] "dřevěné uhlí" msgstr[3] "dřevěné uhlí" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -782,7 +782,7 @@ msgstr[1] "směs na karbid" msgstr[2] "směs na karbid" msgstr[3] "směs na karbid" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -816,7 +816,7 @@ msgstr[1] "albuterol" msgstr[2] "albuterol" msgstr[3] "albuterol" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -927,7 +927,7 @@ msgstr[1] "tekutého nikotinu" msgstr[2] "tekutého nikotinu" msgstr[3] "tekutý nikotin" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -944,7 +944,7 @@ msgstr[1] "návnady na ryby" msgstr[2] "návnady na ryby" msgstr[3] "návnada na ryby" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Návnada, na kterou se ryby lákají do pastí." @@ -1015,7 +1015,7 @@ msgstr[1] "nedokončeného dřevěného uhlí" msgstr[2] "nedokončeného dřevěného uhlí" msgstr[3] "nedokončené dřevěné uhlí" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -1032,7 +1032,7 @@ msgstr[1] "nedokončeného carbidu vápníku" msgstr[2] "nedokončeného carbidu vápníku" msgstr[3] "nedokončený carbid vápníku" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -1062,7 +1062,7 @@ msgstr[1] "nitrox" msgstr[2] "nitrox" msgstr[3] "nitrox" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "Směs kyslíku a dusíku v poměru vhodném k potápění." @@ -1075,7 +1075,7 @@ msgstr[1] "hasícího agentu" msgstr[2] "hasícího agentu" msgstr[3] "hasící agent" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Suchá chemická sloučenina užitečná pro hašení ohně." @@ -1088,7 +1088,7 @@ msgstr[1] "troudy" msgstr[2] "troudy" msgstr[3] "troudy" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "Hořlavá látka rozřezaná najemno, aby se snadno vznítila." @@ -1127,7 +1127,7 @@ msgstr[1] "bronz" msgstr[2] "bronz" msgstr[3] "bronz" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -1141,7 +1141,7 @@ msgstr[1] "náplní do svítící tyče" msgstr[2] "náplní do svítící tyče" msgstr[3] "náplň do svítící tyče" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -1157,7 +1157,7 @@ msgstr[1] "grafitu" msgstr[2] "grafitu" msgstr[3] "grafit" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1176,7 +1176,7 @@ msgstr[1] "černé náplně do pera" msgstr[2] "černých náplní do pera" msgstr[3] "černé náplně do pera" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1193,7 +1193,7 @@ msgstr[1] "modré náplně do pera" msgstr[2] "modrých náplní do pera" msgstr[3] "modré náplně do pera" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1208,7 +1208,7 @@ msgstr[1] "zelené náplně do pera" msgstr[2] "zelených náplní do pera" msgstr[3] "zelené náplně do pera" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1225,7 +1225,7 @@ msgstr[1] "zelené náplně do pera" msgstr[2] "zelených náplní do pera" msgstr[3] "zelené náplně do pera" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1261,7 +1261,7 @@ msgstr[1] "síry" msgstr[2] "síry" msgstr[3] "síra" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1295,7 +1295,7 @@ msgstr[1] "cement" msgstr[2] "cement" msgstr[3] "cement" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1314,7 +1314,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1327,7 +1327,7 @@ msgstr[1] "vápence" msgstr[2] "vápence" msgstr[3] "vápence" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1345,7 +1345,7 @@ msgstr[1] "pálená vápna" msgstr[2] "pálených vápen" msgstr[3] "pálená vápna" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1366,7 +1366,7 @@ msgstr[1] "písek" msgstr[2] "písek" msgstr[3] "písek" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1383,7 +1383,7 @@ msgstr[1] "zeminy" msgstr[2] "zemin" msgstr[3] "zemina" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1400,7 +1400,7 @@ msgstr[1] "hliníkové prášky" msgstr[2] "hliníkových prášků" msgstr[3] "hliníkový prášek" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1421,7 +1421,7 @@ msgstr[1] "cínové prášky" msgstr[2] "cínových prášků" msgstr[3] "cínový prášek" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1441,7 +1441,7 @@ msgstr[1] "oxidy zinku" msgstr[2] "oxidu zinku" msgstr[3] "oxid zinku" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1458,7 +1458,7 @@ msgstr[1] "dioxid manganatý" msgstr[2] "dioxidu manganatého" msgstr[3] "dioxid manganatý" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1476,7 +1476,7 @@ msgstr[1] "chlorid draselný" msgstr[2] "chloridu draselného" msgstr[3] "chlorid draselný" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1497,7 +1497,7 @@ msgstr[1] "hydroxid draselný" msgstr[2] "hydroxidu draselného" msgstr[3] "hydroxid draselný" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1516,7 +1516,7 @@ msgstr[1] "aceton" msgstr[2] "acetonu" msgstr[3] "aceton" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1535,7 +1535,7 @@ msgstr[1] "oxid chromitý" msgstr[2] "oxidu chromitého" msgstr[3] "oxid chromitý" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1558,7 +1558,7 @@ msgstr[1] "carbid vápníku" msgstr[2] "carbidu vápníku" msgstr[3] "carbid vápníku" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1580,7 +1580,7 @@ msgstr[1] "hexamin" msgstr[2] "hexaminu" msgstr[3] "hexamin" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1603,7 +1603,7 @@ msgstr[1] "peroxid vodíku (koncentrovaný)" msgstr[2] "peroxidu vodíku (koncentrovaného)" msgstr[3] "peroxid vodíku (koncentrovaný)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1624,7 +1624,7 @@ msgstr[1] "dusičnan amonný" msgstr[2] "dusičnan amonný" msgstr[3] "dusičnan amonný" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1644,7 +1644,7 @@ msgstr[1] "peletky dusičnanu amonného" msgstr[2] "peletky dusičnanu amonného" msgstr[3] "peletky dusičnanu amonného" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1664,7 +1664,7 @@ msgstr[1] "ledek" msgstr[2] "ledek" msgstr[3] "ledek" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1683,7 +1683,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1700,7 +1700,7 @@ msgstr[1] "síran hlinitý" msgstr[2] "síranu hlinitého" msgstr[3] "síran hlinitý" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1724,7 +1724,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1745,7 +1745,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1766,7 +1766,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1786,7 +1786,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1807,7 +1807,7 @@ msgstr[1] "černý střelný prach" msgstr[2] "černého střelného prachu" msgstr[3] "černý střelný prach" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1828,7 +1828,7 @@ msgstr[1] "prášek z hlaviček zápalek" msgstr[2] "prášku z hlaviček zápalek" msgstr[3] "prášek z hlaviček zápalek" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1847,7 +1847,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1867,7 +1867,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1886,7 +1886,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1905,7 +1905,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1924,7 +1924,7 @@ msgstr[1] "improvizované raketové paliva" msgstr[2] "improvizovaných raketových paliv" msgstr[3] "improvizované raketové palivo" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1941,7 +1941,7 @@ msgstr[1] "čistící prostředky" msgstr[2] "čistícího prostředku" msgstr[3] "čistící prostředek" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "Populární před-Cataklystický prací prášek." @@ -1954,7 +1954,7 @@ msgstr[1] "nasekaná mýdla" msgstr[2] "nasekaného mýdla" msgstr[3] "nasekané mýdlo" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "Kostka mýdla nasekaná na kousky. Vhodná do pračky." @@ -2030,7 +2030,7 @@ msgstr[1] "koncentrovaný jed" msgstr[2] "koncentrovaného jedu" msgstr[3] "koncentrovaný jed" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -2051,7 +2051,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -2073,7 +2073,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -2092,7 +2092,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -2107,7 +2107,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -2122,7 +2122,7 @@ msgstr[1] "dávky ethanolu" msgstr[2] "dávek ethanolu" msgstr[3] "dávky ethanolu" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -2159,7 +2159,7 @@ msgstr[1] "methanol" msgstr[2] "methanolu" msgstr[3] "methanol" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -2177,7 +2177,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -2193,7 +2193,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -2210,7 +2210,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -2224,7 +2224,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -2242,7 +2242,7 @@ msgstr[1] "benzín" msgstr[2] "benzínu" msgstr[3] "benzín" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -2259,7 +2259,7 @@ msgstr[1] "lampový olej" msgstr[2] "lampového oleje" msgstr[3] "lampový olej" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "Čistě hořící olej užívaný v olejových lampách." @@ -2272,7 +2272,7 @@ msgstr[1] "motorový olej" msgstr[2] "motorového oleje" msgstr[3] "motorový olej" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "Olej užívaný v automobilových motorech." @@ -2285,7 +2285,7 @@ msgstr[1] "napalm" msgstr[2] "napalmu" msgstr[3] "napalm" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2303,7 +2303,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2322,7 +2322,7 @@ msgstr[1] "palivo do plamenometu" msgstr[2] "paliva do plamenometu" msgstr[3] "palivo do plamonometu" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2335,15 +2335,15 @@ msgstr "" #: lang/json/AMMO_from_json.py lang/json/ammunition_type_from_json.py msgid "paper" msgid_plural "papers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "papír" +msgstr[1] "papíry" +msgstr[2] "papírů" +msgstr[3] "papír" #. ~ Description for paper #: lang/json/AMMO_from_json.py msgid "A piece of paper. Can be used for fires." -msgstr "" +msgstr "Kus papíru. Může být použit na oheň." #: lang/json/AMMO_from_json.py msgid "autoclave pouch" @@ -2372,7 +2372,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "Pokroucený, ostrý kousek kovu." @@ -2440,7 +2440,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2472,7 +2472,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2526,7 +2526,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2561,7 +2561,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2618,7 +2618,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2637,7 +2637,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2656,7 +2656,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2694,7 +2694,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2713,7 +2713,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2732,7 +2732,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2751,7 +2751,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2802,7 +2802,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2821,7 +2821,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2839,7 +2839,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2858,7 +2858,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2878,7 +2878,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2898,7 +2898,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2963,7 +2963,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -3029,7 +3029,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -3049,7 +3049,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -3068,7 +3068,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -3087,7 +3087,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -3227,7 +3227,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -3246,7 +3246,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -3265,7 +3265,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -3330,7 +3330,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -3361,7 +3361,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -3377,7 +3377,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -3425,7 +3425,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -3440,7 +3440,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3503,7 +3503,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3533,7 +3533,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3588,7 +3588,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3605,7 +3605,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3622,7 +3622,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3679,7 +3679,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3703,7 +3703,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3719,7 +3719,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3775,7 +3775,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3791,7 +3791,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3807,7 +3807,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3823,7 +3823,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3839,8 +3839,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3856,8 +3856,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3906,8 +3906,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3923,8 +3923,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3996,7 +3996,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -4011,7 +4011,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -4047,7 +4047,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -4063,8 +4063,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -4091,8 +4091,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -4131,7 +4131,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -4152,7 +4152,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -4230,7 +4230,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -4245,7 +4245,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -4261,7 +4261,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -4317,7 +4317,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -4351,7 +4351,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4383,7 +4383,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4399,7 +4399,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4432,7 +4432,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4449,7 +4449,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4466,7 +4466,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -4499,7 +4499,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -4515,8 +4515,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -4541,7 +4541,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -4556,7 +4556,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4590,7 +4590,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4613,7 +4613,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4629,7 +4629,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4647,7 +4647,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4662,7 +4662,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4677,7 +4677,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -4698,7 +4698,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4714,7 +4714,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -4732,7 +4732,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -4803,7 +4803,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -4820,7 +4820,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -4835,7 +4835,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -4851,7 +4851,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -4882,7 +4882,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4901,8 +4901,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4993,7 +4993,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -5008,7 +5008,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -5041,7 +5041,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -5058,7 +5058,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -5075,7 +5075,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -5116,7 +5116,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -5150,7 +5150,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -5181,7 +5181,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -5260,7 +5260,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -5275,7 +5275,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -5290,7 +5290,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -5306,7 +5306,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -5322,7 +5322,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -5339,7 +5339,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -5356,7 +5356,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -5372,7 +5372,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -5389,7 +5389,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -5404,7 +5404,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -5419,7 +5419,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -5482,7 +5482,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -5498,7 +5498,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -5514,7 +5514,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -5545,7 +5545,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5561,7 +5561,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5577,7 +5577,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5593,7 +5593,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -5623,7 +5623,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -5638,7 +5638,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -5653,7 +5653,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -5668,7 +5668,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -5797,7 +5797,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -5943,7 +5943,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -5959,7 +5959,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -5972,7 +5972,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -6037,8 +6037,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -6211,7 +6211,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -6226,7 +6226,7 @@ msgstr[1] "houbové výtrusy." msgstr[2] "houbových výtrusů" msgstr[3] "houbové výtrusy" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Nějaké výtrusy hub." @@ -7207,7 +7207,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "" @@ -7220,7 +7220,7 @@ msgstr[1] "modré barvy" msgstr[2] "modré barvy" msgstr[3] "modrá barva" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Plechovka modré barvy." @@ -7233,7 +7233,7 @@ msgstr[1] "bílé barvy" msgstr[2] "bílé barvy" msgstr[3] "bílá barva" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Plechovka bílé barvy." @@ -7246,7 +7246,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "" @@ -7259,7 +7259,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "" @@ -7272,7 +7272,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "" @@ -7352,7 +7352,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -7365,8 +7365,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -7389,7 +7389,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -7406,7 +7406,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -7421,7 +7421,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -7436,7 +7436,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -7507,7 +7507,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -7522,7 +7522,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -7564,7 +7564,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -7625,7 +7625,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -7641,7 +7641,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -7656,7 +7656,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -7672,7 +7672,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -7687,7 +7687,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -7704,7 +7704,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -7719,7 +7719,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -7734,7 +7734,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -7749,7 +7749,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -7764,7 +7764,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -7794,7 +7794,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -7823,7 +7823,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -7852,7 +7852,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -7898,7 +7898,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -7929,7 +7929,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -7961,7 +7961,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -7990,7 +7990,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -8098,7 +8098,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -8130,7 +8130,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -8147,7 +8147,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -8164,7 +8164,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -8182,7 +8182,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -8199,7 +8199,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -8218,7 +8218,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -8233,7 +8233,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -8251,7 +8251,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -8266,7 +8266,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -8282,7 +8282,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -8298,7 +8298,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -8313,7 +8313,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -8480,7 +8480,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -8497,7 +8497,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -8546,7 +8546,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -8564,7 +8564,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -8614,7 +8614,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8632,7 +8632,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8682,7 +8682,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8700,7 +8700,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8750,7 +8750,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -8764,7 +8764,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -8779,7 +8779,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8797,7 +8797,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8830,7 +8830,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -8845,7 +8845,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -8861,7 +8861,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -8893,7 +8893,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -8908,7 +8908,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -8924,7 +8924,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -8988,7 +8988,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -9053,7 +9053,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -9114,7 +9114,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -9148,7 +9148,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -9161,7 +9161,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -9205,7 +9205,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -9224,7 +9224,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -9783,7 +9783,7 @@ msgstr[3] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -9799,7 +9799,7 @@ msgstr "" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -9839,7 +9839,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -10850,42 +10850,21 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" +msgid "tool belt" +msgid_plural "tool belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -11063,29 +11042,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "pár bot přeživšího do ohně" -msgstr[1] "páry bot přeživšího do ohně" -msgstr[2] "párů bot přeživšího do ohně" -msgstr[3] "páry bot přeživšího do ohně" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "pár XL bot přeživšího" -msgstr[1] "páry XL bot přeživšího" -msgstr[2] "párů XL bot přeživšího" -msgstr[3] "páry XL bot přeživšího" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -11107,51 +11063,6 @@ msgstr[1] "páry XL kožešinových bot" msgstr[2] "párů XL kožešinových bot" msgstr[3] "páry XL kožešinových bot" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "pár bot přeživšího do vody" -msgstr[1] "páry bot přeživšího do vody" -msgstr[2] "párů bot přeživšího do vody" -msgstr[3] "páry bot přeživšího do vody" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -11165,30 +11076,6 @@ msgstr[3] "páry turistických bot" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "pár těžkých bot přeživšího" -msgstr[1] "páry těžkých bot přeživšího" -msgstr[2] "párů těžkých bot přeživšího" -msgstr[3] "páry těžkých bot přeživšího " - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "pár XL těžkých bot přeživšího" -msgstr[1] "páry XL těžkých bot přeživšího" -msgstr[2] "párů XL těžkých bot přeživšího" -msgstr[3] "páry XL těžkých bot přeživšího" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -11211,30 +11098,6 @@ msgstr[1] "páry XL vyztužených kožených bot" msgstr[2] "párů XL vyztužených kožených bot" msgstr[3] "páry XL vyztužených kožených bot" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "pár lehkých bot přeživšího" -msgstr[1] "páry lehkých bot přeživšího" -msgstr[2] "párů lehkých bot přeživšího" -msgstr[3] "páry lehkých bot přeživšího" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "pár XL lehkých bot přeživšího" -msgstr[1] "páry XL lehkých bot přeživšího" -msgstr[2] "párů XL lehkých bot přeživšího" -msgstr[3] "páry XL lehkých bot přeživšího" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -11319,22 +11182,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "pár bot přeživšího" -msgstr[1] "páry bot přeživšího" -msgstr[2] "párů bot přeživšího" -msgstr[3] "páry bot přeživšího" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -11372,45 +11219,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -12455,29 +12263,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -12534,7 +12319,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -12735,7 +12520,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -12920,21 +12705,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -12995,21 +12765,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -13031,7 +12786,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -13091,21 +12846,6 @@ msgstr[3] "" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -13388,21 +13128,6 @@ msgstr[3] "" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -13836,29 +13561,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -13880,58 +13582,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -14009,75 +13659,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -14126,21 +13707,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -14282,43 +13848,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -15179,7 +14708,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -15305,36 +14834,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -15396,36 +14895,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -15655,40 +15124,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -15746,89 +15181,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -15842,64 +15194,6 @@ msgstr[3] "" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -16372,9 +15666,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -16387,9 +15681,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -16402,9 +15696,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -16417,9 +15711,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -16432,9 +15726,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -16447,9 +15741,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -16462,9 +15756,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -16477,9 +15771,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -16492,9 +15786,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -16507,9 +15801,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -16522,9 +15816,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -16537,9 +15831,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -16552,9 +15846,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -16567,9 +15861,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -20741,7 +20035,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -20787,7 +20081,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -20802,7 +20096,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -20819,7 +20113,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -21020,36 +20314,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -21063,36 +20327,6 @@ msgstr[3] "" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" @@ -21101,7 +20335,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -21116,7 +20350,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -21147,7 +20381,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "" @@ -21160,7 +20394,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -21188,7 +20422,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "" @@ -21201,7 +20435,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "" @@ -21214,7 +20448,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "" @@ -21227,7 +20461,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "" @@ -21262,7 +20496,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -21297,7 +20531,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -21385,7 +20619,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "" @@ -21398,15 +20632,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -21441,7 +20675,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -21454,7 +20688,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -21467,7 +20701,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "" @@ -21480,7 +20714,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -21493,7 +20727,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -21508,7 +20742,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "" @@ -21521,7 +20755,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -21536,7 +20770,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -21549,7 +20783,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "" @@ -21562,7 +20796,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -21575,7 +20809,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -21644,7 +20878,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -21679,7 +20913,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -22984,66 +22218,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -23552,37 +22726,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -23638,8 +22781,8 @@ msgstr[3] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -23655,21 +22798,6 @@ msgstr[3] "" msgid "An ornamental suit of Japanese samurai armor." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -23826,79 +22954,47 @@ msgstr[2] "" msgstr[3] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for winter survivor suit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -23921,46 +23017,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -24034,21 +23090,6 @@ msgid "" "experience." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -24060,8 +23101,8 @@ msgstr[3] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" #: lang/json/ARMOR_from_json.py @@ -24079,46 +23120,6 @@ msgid "" "Light and very comfortable." msgstr "" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -24202,51 +23203,6 @@ msgstr[3] "" msgid "A neoprene hood, commonly worn by divers." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -24374,7 +23330,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -24575,7 +23531,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -24643,29 +23599,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -24969,7 +23902,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -25061,7 +23994,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -25403,7 +24336,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -25416,7 +24349,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -25429,7 +24362,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -25443,7 +24376,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -25458,7 +24391,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -25472,7 +24405,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -25502,7 +24435,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "" @@ -25685,7 +24618,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -25759,7 +24692,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -25788,7 +24721,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -25827,7236 +24760,8316 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sheet" -msgid_plural "sheets" +msgid "nomad gear" +msgid_plural "nomad gears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sheet +#. ~ Description for nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" -" a bunch of rags." +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "blanket" -msgid_plural "blankets" +msgid "light nomad gear" +msgid_plural "light nomad gears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for blanket +#. ~ Description for light nomad gear #: lang/json/ARMOR_from_json.py -msgid "Hiding under here will not protect you from the monsters." +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "down-filled blanket" -msgid_plural "down-filled blankets" +msgid "scavenger gear" +msgid_plural "scavenger gears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for down-filled blanket +#. ~ Description for scavenger gear #: lang/json/ARMOR_from_json.py msgid "" -"Hiding under here will not protect you from the monsters, but it'll keep you" -" warm." +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "fur blanket" -msgid_plural "fur blankets" +msgid "light survivor suit" +msgid_plural "light survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fur blanket +#. ~ Description for light survivor suit #: lang/json/ARMOR_from_json.py -msgid "A heavy fur blanket that covers most of your body." +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "quilt" -msgid_plural "quilts" +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for quilt -#: lang/json/ARMOR_from_json.py -msgid "" -"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " -"cozy!" -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "patchwork quilt" -msgid_plural "patchwork quilts" +msgid "survivor suit" +msgid_plural "survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for patchwork quilt +#. ~ Description for survivor suit #: lang/json/ARMOR_from_json.py -msgid "A huge, patchwork wool quilt. Very, very warm." +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sleeping bag" -msgid_plural "sleeping bags" +msgid "XL survivor suit" +msgid_plural "XL survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for sleeping bag. -#: lang/json/ARMOR_from_json.py -msgid "You roll up the sleeping bag, preparing it for transport." -msgstr "" - -#. ~ Description for sleeping bag +#. ~ Description for XL survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A large sleeping bag that covers you head to toe. This one is medium " -"weight." +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cestus" -msgid_plural "cestuses" +msgid "winter survivor suit" +msgid_plural "winter survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cestus +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A leather hand and arm wrap incorporating metal plates over the knuckles to " -"improve punching power and defence." +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of studded gloves" -msgid_plural "pairs of studded gloves" +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of studded gloves +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "A pair of gloves with studded metal knuckles." +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." msgstr "" +#. ~ Description for XL winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "impact knuckles" -msgid_plural "impact knuckles" +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for survivor wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of thick steel plates covering your proximal phalange. They are " -"strapped to your hands with metal braces." +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "skewer knuckles" -msgid_plural "skewer knuckles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "pár lehkých bot přeživšího" +msgstr[1] "páry lehkých bot přeživšího" +msgstr[2] "párů lehkých bot přeživšího" +msgstr[3] "páry lehkých bot přeživšího" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for pair of light survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A single sturdy spike protrudes 5cm from the back of your hand. They are " -"strapped to your hands with metal braces." +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "telescoping umbrella" -msgid_plural "telescoping umbrellas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "pár XL lehkých bot přeživšího" +msgstr[1] "páry XL lehkých bot přeživšího" +msgstr[2] "párů XL lehkých bot přeživšího" +msgstr[3] "páry XL lehkých bot přeživšího" -#. ~ Description for telescoping umbrella +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "pár bot přeživšího" +msgstr[1] "páry bot přeživšího" +msgstr[2] "párů bot přeživšího" +msgstr[3] "páry bot přeživšího" + +#. ~ Description for pair of survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A telescoping umbrella which collapses down for easy storage, useful for " -"keeping dry when wielded." +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "bag of holding" -msgid_plural "bags of holding" +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bag of holding +#. ~ Description for pair of XL survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A sleek, unfathomably-complicated machine covered in dozens of blinking " -"lights, worn on the back by sturdy faux-leather straps. An electrode " -"dangles from the back, attaching to your forehead. How it operates without " -"annihilating spacetime isn't quite clear, but a localized portal allows " -"things to be stored in an extradimensional space." +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium vest" -msgid_plural "titanium vests" +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for titanium vest +#. ~ Description for pair of faux fur winter survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight armor vest made of pieces of titanium sewn together, with " -"cloth padding for comfort. Brittle against blunt force, but highly " -"resistant to cuts and corrosion." +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sentinel-lx cloak" -msgid_plural "sentinel-lx cloaks" +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sentinel-lx cloak +#. ~ Description for pair of XL faux fur winter survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " -"unnatural shadow. Made from woven graphene, its lightweight and resistant, " -"but cannot be repaired" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL jeans" -msgid_plural "pairs of XL jeans" +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL jeans +#. ~ Description for pair of winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue jeans with two deep pockets." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work pants" -msgid_plural "pairs of XL work pants" +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue work pants." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "A pair of XL gray work pants." -msgstr "" +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "pár bot přeživšího do vody" +msgstr[1] "páry bot přeživšího do vody" +msgstr[2] "párů bot přeživšího do vody" +msgstr[3] "páry bot přeživšího do vody" +#. ~ Description for pair of survivor wetsuit boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL light-blue work pants." +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work t-shirt" -msgid_plural "XL work t-shirts" +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL work t-shirt -#: lang/json/ARMOR_from_json.py -msgid "A gray XL work t-shirt with a small front pocket." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "An XL blue work t-shirt with a small front pocket." -msgstr "" - +#. ~ Description for pair of light survivor gloves #: lang/json/ARMOR_from_json.py -msgid "An XL gray work t-shirt with a small front pocket." +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "An XL light-blue work t-shirt with a small front pocket." -msgstr "" +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/ARMOR_from_json.py -msgid "Uplifted SWAT armor" -msgid_plural "Uplifted SWAT armors" +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Uplifted SWAT armor +#. ~ Description for pair of fingerless light survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An extra large suit of black bulletproof armor with lots of pockets. The " -"word SWAT is emblazoned across the back. Specifically designed for Uplifted" -" officers such as Mastodons." +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "empty XL ballistic vest" -msgid_plural "empty XL ballistic vests" +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for empty XL ballistic vest -#: lang/json/ARMOR_from_json.py -msgid "" -"Oversized ballistic armor without any armor inserts. The soft armor plate " -"carrier is still protective but it won't stop high energy projectiles." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL ESAPI ballistic vest" -msgid_plural "XL ESAPI ballistic vests" +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL ESAPI ballistic vest +#. ~ Description for pair of fingerless survivor gloves #: lang/json/ARMOR_from_json.py -msgid "Oversized ballistic armor with ESAPI ceramic armor plates." +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL combat boots" -msgid_plural "pair of XL combat boots" +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} -#: lang/json/ARMOR_from_json.py -msgid "Modern oversized reinforced tactical combat boots. Very durable." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of XL tactical gloves" -msgid_plural "pair of XL tactical gloves" +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " -"police and military units." +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of Killophant gloves" -msgid_plural "pair of Killophant gloves" +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of XL survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of reinforced Kevlar tactical gloves, specifically designed to " -"accommodate three-fingered Killophants. Thinner than regular oversized " -"tactical gloves." +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leather belt" -msgid_plural "XL leather belts" +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL leather belt +#. ~ Description for pair of winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL leather belt. Useful for making your pair of pants fit if you need " -"really big pants." +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL police duty belt" -msgid_plural "XL police duty belts" +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL police duty belt -#: lang/json/ARMOR_from_json.py -msgid "" -"An XL black leather belt used by extremely large uplifted police officers. " -"It has several pouches and a holder for a baton." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL tactical full helmet" -msgid_plural "XL tactical full helmets" +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL tactical full helmet +#. ~ Description for pair of faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing massive black helmet that covers your entire face and " -"neck, providing excellent protection from all sorts of damage." +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leg ammo pouch" -msgid_plural "XL leg ammo pouches" +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL leg ammo pouch +#. ~ Description for pair of XL faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" -" two magazines close at hand." +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "crew jumpsuit" -msgid_plural "crew jumpsuits" +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for crew jumpsuit +#. ~ Description for pair of survivor wetsuit gloves #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " -"some freight hauling association or another. This one is a standard design " -"favored by spacers, with ample, easy access pockets." +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "communications cap" -msgid_plural "communications caps" +msgid "nomad cowl" +msgid_plural "nomad cowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for communications cap +#. ~ Description for nomad cowl #: lang/json/ARMOR_from_json.py msgid "" -"A padded cotton cap built around an augmented reality headset. During " -"normal operation it would provide visual information about a ship subsystems" -" and a communications link with the rest of the crew, but severed from a " -"spaceship, only their hearing protection function retains any utility." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "HERC rig" -msgid_plural "HERC rigs" +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for HERC rig +#. ~ Description for nomad cowl XL #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " -"about in zero-g, Mars, the bottom of the Pacific, or other generally " -"inhospitable environments. It has several deep pockets, and two mounting " -"points for pressurized canisters or other large magazines." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cecalia wetsuit" -msgid_plural "cecalia wetsuits" +msgid "survivor hood" +msgid_plural "survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cecalia wetsuit +#. ~ Description for survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " -"explorer suit with no head or tentacle protection." +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "combat wetsuit" -msgid_plural "combat wetsuits" +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for combat wetsuit +#. ~ Description for winter survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " -"will provide some level of protection for deep dwellers." +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "nanomesh vest" -msgid_plural "nanomesh vests" +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nanomesh vest +#. ~ Description for XL winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight nanomesh vest designed to face down many of the perils of " -"space travel. These vests are mass produced and often stacked in starship " -"lockers." +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "vacuum cast cuirass" -msgid_plural "vacuum cast cuirasses" +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vacuum cast cuirass +#. ~ Description for XL survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"This piece of armor harkens back to renaissance designs. It differs in that" -" it is cast as a single piece in deep space installations where conditions " -"can be controlled absolutely." +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "carbide raider's helmet" -msgid_plural "carbide raider's helmets" +msgid "light survivor hood" +msgid_plural "light survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for carbide raider's helmet +#. ~ Description for light survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"This helmet is designed for the individual that is worried about catching " -"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " -"environmental protection features, but it just might stop even the largest " -"of ballistic rounds." +msgid "A customized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "UICAS Point of Impact helmet" -msgid_plural "UICAS Point of Impact helmets" +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for UICAS Point of Impact helmet +#. ~ Description for XL light survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight black helmet that provides excellent protection from all sorts" -" of damage, unless it's airborne. UICAS makes the point of designing all " -"headgear whenever possible with clear faceplates, in order to provide a " -"human touch to all interactions." +"A customized and oversized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cold resistance cream" -msgid_plural "cold resistance creams" +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cold resistance cream +#. ~ Description for winter faux fur survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"A thick layer of something that smells worse than walrus fat. But it keeps " -"you warm." +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "heat retention xtreme cream" -msgid_plural "heat retention xtreme creams" +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for heat retention xtreme cream +#. ~ Description for XL faux fur winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"The last word in cold snap protection designed to give short term protection" -" in the event of a suit breach in vacuum." +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium watch" -msgid_plural "titanium watches" +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for titanium watch +#. ~ Description for survivor wetsuit hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine watch made out of titanium. It is durable, light-weight " -"and water-resistant, an excellent watch to have in a hostile environment." +"A customized armored neoprene and Kevlar hood, very strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium ring" -msgid_plural "titanium rings" +msgid "scavenger cowl" +msgid_plural "scavenger cowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for titanium ring +#. ~ Description for scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine ring made out of titanium. Made in a variety of styles " -"and finishes, they're valued for their durability." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "hazardous environment suit" -msgid_plural "hazardous environment suits" +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hazardous environment suit +#. ~ Description for XL scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"Developed for the exploration of alien planes, the lightweight, orange-black" -" HEV suit covers everything below the neck. While it possesses only modest " -"physical protection, it provides excellent protection from most " -"environmental hazards. A hatch in the front opens to provide a small amount" -" of storage." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "psychrophile handling gloves" -msgid_plural "psychrophile handling gloves" +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"These gloves are designed for handling organisms that live in extremely cold" -" temperatures. They can also be used to freeze your foes to death." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Engineering Suit" -msgid_plural "CRIT Engineering Suits" +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT Engineering Suit +#. ~ Description for XL light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"An airtight, flexible suit of woven composite fibers complete with segmented" -" plates of armor. A complex system digitizes items in an individual pocket " -"universe for storage while built in joint-torsion ratchets generate the " -"necessary energy required to power the interface." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT face mask" -msgid_plural "CRIT face masks" +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT face mask +#. ~ Description for survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A standard issue face mask, lined with Kevlar for extra protection. A few " -"filters provide decent environmental safety, but it was not intended for " -"extended use. It has a basic integrated HUD." +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT boots" -msgid_plural "pairs of CRIT boots" +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT boots +#. ~ Description for XL survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " -"hygienic during long-term missions while absorbing shock and heat from " -"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " -"protection as well. Decently heavy though" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT LA boots" -msgid_plural "pairs of CRIT LA boots" +msgid "survivor duster" +msgid_plural "survivor dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT LA boots +#. ~ Description for survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " -"variant was created for missions in warmer climates. The LA boots keep most" -" of the old features of the standard issue boots but trade in protection for" -" easier movement." +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less gloves" -msgid_plural "pairs of CRIT fingertip-less gloves" +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT fingertip-less gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of standard-issue gloves. Made with superalloy mesh for those with " -"gene-modding and/or mutations while still allowing greater manipulation of " -"items and moderate protection." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less liners" -msgid_plural "pairs of CRIT fingertip-less liners" +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT fingertip-less liners +#. ~ Description for sleeveless survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " -"for warmth and fingertip-less for those with gene-modding and/or mutations " -"while still allowing greater manipulation of items and moderate protection." +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT backpack" -msgid_plural "CRIT backpacks" +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT backpack +#. ~ Description for survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " -"pack strikes a fine balance between storage space and encumbrance and allows" -" a larger weapon to be holstered, drawing and holstering is still rather " -"awkward even with the magnetized clips, but practice helps." +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT chestrig" -msgid_plural "CRIT chestrigs" +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT chestrig +#. ~ Description for sleeveless survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " -"with light-armor padding." +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT leg guards" -msgid_plural "pairs of CRIT leg guards" +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT leg guards +#. ~ Description for survivor duffel bag #: lang/json/ARMOR_from_json.py msgid "" -"Leg armor for those who fight. Simple design and durable material allows " -"for easy movement and the padding keeps the legs safe and warm in colder " -"conditions." +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT arm guards" -msgid_plural "pairs of CRIT arm guards" +msgid "survivor backpack" +msgid_plural "survivor backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT arm guards +#. ~ Description for survivor backpack #: lang/json/ARMOR_from_json.py msgid "" -"A pair of arm guards made from superalloy molded upon neoprene, and then " -"insulated with rubber. They are sturdy and will block attacks, but they are" -" ridiculously heavy." +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT web belt +#. ~ Description for survivor rucksack #: lang/json/ARMOR_from_json.py msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT infantry duster" -msgid_plural "CRIT infantry dusters" +msgid "survivor runner pack" +msgid_plural "survivor runner packs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT infantry duster +#. ~ Description for survivor runner pack #: lang/json/ARMOR_from_json.py msgid "" -"A thick full-length duster coat with rubber insulation. More than mildly " -"encumbering, but rather protective against any anti-infantry electrical " -"discharges from the robots. Has several pockets for storage." +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Armored Anomaly Suit" -msgid_plural "CRIT Armored Anomaly Suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "pár bot přeživšího do ohně" +msgstr[1] "páry bot přeživšího do ohně" +msgstr[2] "párů bot přeživšího do ohně" +msgstr[3] "páry bot přeživšího do ohně" -#. ~ Description for CRIT Armored Anomaly Suit +#. ~ Description for pair of survivor fireboots #: lang/json/ARMOR_from_json.py msgid "" -"A relatively simple suit of armor. A suit of woven composite fibers " -"combined with a cleansuit core and strategically placed segmented Kevlar " -"plates keep the suit light-weight and the one wearing it alive while " -"offering superb resistance to the elements and ambient radiation." +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT drop leg pouch" -msgid_plural "CRIT drop leg pouches" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "pár XL bot přeživšího" +msgstr[1] "páry XL bot přeživšího" +msgstr[2] "párů XL bot přeživšího" +msgstr[3] "páry XL bot přeživšího" -#. ~ Description for CRIT drop leg pouch +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "pár těžkých bot přeživšího" +msgstr[1] "páry těžkých bot přeživšího" +msgstr[2] "párů těžkých bot přeživšího" +msgstr[3] "páry těžkých bot přeživšího " + +#. ~ Description for pair of heavy survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A set of pouches that can be worn on the thighs using buckled straps. This " -"variety is more compact and is favored by the C.R.I.T for its ease of use." +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Enforcer armor assembly" -msgid_plural "CRIT Enforcer armor assemblies" +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "pár XL těžkých bot přeživšího" +msgstr[1] "páry XL těžkých bot přeživšího" +msgstr[2] "párů XL těžkých bot přeživšího" +msgstr[3] "páry XL těžkých bot přeživšího" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT Enforcer armor assembly +#. ~ Description for pair of heavy survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A series of plates, guards and buckles which assemble into a suit of sturdy " -"body-armor which usually goes over other armor. Overlapping steel plates on" -" top of Kevlar plates cover vast expanses as the armor juts off in places so" -" it can deflect attacks. Built with the idea that comfort is less important" -" than safety, this heavy suit is difficult to move about in but highly " -"protective. Various adjustable connectors such as straps and clips hold it " -"together." +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT Enforcer docks" -msgid_plural "pairs of CRIT Enforcer docks" +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT Enforcer docks -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " -"oversized feet which clamp down onto your own footwear keep your feet out of" -" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " -"designs, but they do seem to be worth using if you were to be in the middle " -"of a war zone." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT Soldier Suit" -msgid_plural "CRIT Soldier Suits" +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT Soldier Suit +#. ~ Description for pair of survivor firegloves #: lang/json/ARMOR_from_json.py msgid "" -"A suit of modern body-armor. Strategically placed superalloy plates keep " -"the suit's weight minimal while Kevlar plates other areas and a lining of " -"soft neoprene pads areas for extra comfort. Most importantly, this can be " -"worn comfortably under other armor." +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Lone Wolf Series Armor" -msgid_plural "CRIT Lone Wolf Series Armors" +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT Lone Wolf Series Armor -#: lang/json/ARMOR_from_json.py -msgid "" -"A matte black suit of outdated and bulky looking plate armor fitted onto a " -"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " -"armor will definitely protect you from practically anything. Just make sure" -" you can actually walk with it on though." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT blouse" -msgid_plural "CRIT blouses" +msgid "survivor firehood" +msgid_plural "survivor firehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT blouse +#. ~ Description for survivor firehood #: lang/json/ARMOR_from_json.py -msgid "" -"A standard-issue military jacket. Durable, lightweight, and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather " -"while a sleek design keeps it from being too flashy. A zipper at the back " -"and front allows for quick donning and doffing." +msgid "A customized armored Nomex and Kevlar hood, strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT trousers" -msgid_plural "CRIT trousers" +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for XL survivor firehood #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue cargo pants. Durable, lightweight and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather." +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT pants" -msgid_plural "CRIT pants" +msgid "survivor firesuit" +msgid_plural "survivor firesuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for survivor firesuit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of dress pants. A minimalist sleek design makes the pants " -"lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" -" moderately cold weather." +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT helmet liner" -msgid_plural "CRIT helmet liners" +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT helmet liner -#: lang/json/ARMOR_from_json.py -msgid "A standard-issue helmet liner. Keeps the noggin warm." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT shoes" -msgid_plural "pairs of CRIT dress shoes" +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT shoes +#. ~ Description for heavy survivor suit #: lang/json/ARMOR_from_json.py -msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT rec gloves" -msgid_plural "pairs of CRIT rec gloves" +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT rec gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " -"are made with cotton with a neoprene lining for grip-pads and warmth." -msgstr "" - -#. ~ Description for CRIT web belt +#. ~ Description for XL heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue belt. Keeps your trousers up and your tools on your hip." +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT rec duster" -msgid_plural "CRIT rec dusters" +msgid "light survivor body armor" +msgid_plural "light survivor body armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT rec duster +#. ~ Description for light survivor body armor #: lang/json/ARMOR_from_json.py msgid "" -"A waterproofed full-length duster coat. Made with neoprene, comfort and " -"functionality meet together to form a fancy but sleek contemporary design. " -"It has several pockets for storage." +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT rec hat" -msgid_plural "CRIT rec hats" +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT rec hat -#: lang/json/ARMOR_from_json.py -msgid "" -"Functionality meets fashion in this waterproofed CRIT standard issue rec " -"cover. Thick enough to provide warmth in colder weather, this hat shares " -"the same sleek design of most of C.R.I.T's gear." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "plant fiber tunic" -msgid_plural "plant fiber tunics" +msgid "survivor belt" +msgid_plural "survivor belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plant fiber tunic +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt #: lang/json/ARMOR_from_json.py msgid "" -"A loose garment cobbled together from a collection of plant bundles and " -"wound together by makeshift cordage" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "plant fiber bracelet" -msgid_plural "plant fiber bracelets" +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plant fiber bracelet +#. ~ Description for survivor goggles #: lang/json/ARMOR_from_json.py msgid "" -"A bracelet wound together by makeshift cordage. Has some cool looking " -"pebbles." +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT canteen" -msgid_plural "CRIT canteens" +msgid "survivor harness" +msgid_plural "survivor harnesses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT canteen +#. ~ Description for survivor harness #: lang/json/ARMOR_from_json.py msgid "" -"A durable steel canteen that can heat up food with built in atomic heating " -"elements." +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "salvaged new order armor" -msgid_plural "salvaged new order armors" +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for salvaged new order armor +#. ~ Description for XL survivor harness #: lang/json/ARMOR_from_json.py msgid "" -"A suit of armor belonging to a human-sized soldier of the New Order. Its " -"terribly damaged from some combination of the combat its seen, the process " -"needed to pry it off its wearer, and some sort of dead man's switch on the " -"elements that actually power the thing and make it easy to wear." +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "new order shield" -msgid_plural "new order shields" +msgid "sheet" +msgid_plural "sheets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for new order shield +#. ~ Description for sheet #: lang/json/ARMOR_from_json.py msgid "" -"A simple shield made of some sort of polycarbonates, used extensively by the" -" Vigilants, the gendarmerie of the New Order. Alongside their infamous " -"shock batons, this is an essential tool in 'keeping the peace'." +"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" +" a bunch of rags." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "new order battle shield" -msgid_plural "new order battle shields" +msgid "blanket" +msgid_plural "blankets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for new order battle shield +#. ~ Description for blanket #: lang/json/ARMOR_from_json.py -msgid "" -"A well forged shield made of steel, emblazoned with what appears to be a " -"highly stylized depiction of a sword piercing a star." +msgid "Hiding under here will not protect you from the monsters." msgstr "" -#. ~ Description for large quiver #: lang/json/ARMOR_from_json.py -msgid "" -"A large leather quiver trimmed with metal, worn on the back, that can hold " -"60 arrows. Historically used by horse archers, rather than foot archers, " -"but sometimes horses are a little hard to come by in this day and age. " -"Activate to store arrows." -msgstr "" +msgid "down-filled blanket" +msgid_plural "down-filled blankets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for bra +#. ~ Description for down-filled blanket #: lang/json/ARMOR_from_json.py msgid "" -"A simple bra. For protecting those bits you don't want creatures to look " -"at." +"Hiding under here will not protect you from the monsters, but it'll keep you" +" warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Ixythyug the Destroyer's soul" -msgid_plural "Ixythyug the Destroyer's souls" +msgid "fur blanket" +msgid_plural "fur blankets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ixythyug the Destroyer's soul +#. ~ Description for fur blanket #: lang/json/ARMOR_from_json.py -msgid "RIP AND TEAR" +msgid "A heavy fur blanket that covers most of your body." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Force Shield" -msgid_plural "Force Shield" +#: lang/json/ARMOR_from_json.py +msgid "quilt" +msgid_plural "quilts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for quilt #: lang/json/ARMOR_from_json.py msgid "" -"A shield of pure force that protects you from most types of physical damage." +"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " +"cozy!" msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Soul Burn" -msgid_plural "Soul Burns" +#: lang/json/ARMOR_from_json.py +msgid "patchwork quilt" +msgid_plural "patchwork quilts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Soul Burn +#. ~ Description for patchwork quilt #: lang/json/ARMOR_from_json.py -msgid "" -"A little of your soul has been burned away, leaving you in a weakened state." -" The soul heals quickly, so rest for now." +msgid "A huge, patchwork wool quilt. Very, very warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" +msgid "sleeping bag" +msgid_plural "sleeping bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for copper infusion bracelet -#. ~ Description for silver infusion bracelet +#. ~ Use action msg for sleeping bag. #: lang/json/ARMOR_from_json.py -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." +msgid "You roll up the sleeping bag, preparing it for transport." msgstr "" +#. ~ Description for sleeping bag #: lang/json/ARMOR_from_json.py -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A large sleeping bag that covers you head to toe. This one is medium " +"weight." +msgstr "" #: lang/json/ARMOR_from_json.py -msgid "copper circlet" -msgid_plural "copper circlets" +msgid "cestus" +msgid_plural "cestuses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for copper circlet +#. ~ Description for cestus #: lang/json/ARMOR_from_json.py msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." +"A leather hand and arm wrap incorporating metal plates over the knuckles to " +"improve punching power and defence." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin arm guards" -msgid_plural "pairs of demon chitin arm guards" +msgid "pair of studded gloves" +msgid_plural "pairs of studded gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of demon chitin arm guards +#. ~ Description for pair of studded gloves #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of arm guards crafted from the carefully cleaned and pruned red " -"exoskeletons of demon spiders. Fire-resistant and very durable." +msgid "A pair of gloves with studded metal knuckles." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "demon chitin armor" -msgid_plural "demon chitin armors" +msgid "impact knuckles" +msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for demon chitin armor +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" -"Leg and body armor crafted from the carefully cleaned and pruned red " -"exoskeletons of demon spiders. Fire-resistant and very durable." +"A pair of thick steel plates covering your proximal phalange. They are " +"strapped to your hands with metal braces." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "demon chitin helmet" -msgid_plural "demon chitin helmets" +msgid "skewer knuckles" +msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for demon chitin helmet +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" -"A helmet crafted from the carefully cleaned and pruned red exoskeletons of " -"demon spiders. Covers the entire head; fire-resistant and very durable." +"A single sturdy spike protrudes 5cm from the back of your hand. They are " +"strapped to your hands with metal braces." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin gauntlets" -msgid_plural "pairs of demon chitin gauntlets" +msgid "telescoping umbrella" +msgid_plural "telescoping umbrellas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of demon chitin gauntlets +#. ~ Description for telescoping umbrella #: lang/json/ARMOR_from_json.py msgid "" -"Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " -"demon spiders. Fire-resistant and very durable." +"A telescoping umbrella which collapses down for easy storage, useful for " +"keeping dry when wielded." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin boots" -msgid_plural "pairs of demon chitin boots" +msgid "bag of holding" +msgid_plural "bags of holding" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of demon chitin boots +#. ~ Description for bag of holding #: lang/json/ARMOR_from_json.py msgid "" -"Boots crafted from carefully cleaned and pruned red exoskeletons of demon " -"spiders. Fire-resistant and very durable." +"A sleek, unfathomably-complicated machine covered in dozens of blinking " +"lights, worn on the back by sturdy faux-leather straps. An electrode " +"dangles from the back, attaching to your forehead. How it operates without " +"annihilating spacetime isn't quite clear, but a localized portal allows " +"things to be stored in an extradimensional space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonscale boots" -msgid_plural "pairs of black dragonscale boots" +msgid "titanium vest" +msgid_plural "titanium vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of black dragonscale boots +#. ~ Description for titanium vest #: lang/json/ARMOR_from_json.py msgid "" -"Boots made of black incredibly durable dragonscale. Very protective, and " -"surprisingly light." +"A lightweight armor vest made of pieces of titanium sewn together, with " +"cloth padding for comfort. Brittle against blunt force, but highly " +"resistant to cuts and corrosion." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonhide boots" -msgid_plural "pairs of black dragonhide boots" +msgid "sentinel-lx cloak" +msgid_plural "sentinel-lx cloaks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of black dragonhide boots +#. ~ Description for sentinel-lx cloak #: lang/json/ARMOR_from_json.py msgid "" -"Boots made of very durable black dragonhide. Very protective, and " -"surprisingly light." +"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " +"unnatural shadow. Made from woven graphene, its lightweight and resistant, " +"but cannot be repaired" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale helmet" -msgid_plural "black dragonscale helmets" +msgid "XL jeans" +msgid_plural "pairs of XL jeans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for black dragonscale helmet. -#. ~ Use action msg for XL black dragonscale helmet. -#. ~ Use action msg for riot helmet. -#. ~ Use action msg for motorcycle helmet. -#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py -msgid "You raise your visor." -msgstr "" - -#. ~ Description for black dragonscale helmet +#. ~ Description for XL jeans #: lang/json/ARMOR_from_json.py -msgid "" -"A helmet made from black incredibly durable dragonscale, held together with " -"black dragonhide. It comes equipped with a full face visor with only a thin" -" slit to see out of. Activate to raise the visor." +msgid "A pair of XL blue jeans with two deep pockets." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale helmet (raised visor)" -msgid_plural "black dragonscale helmets (raised visor)" +msgid "XL work pants" +msgid_plural "pairs of XL work pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for black dragonscale helmet (raised visor). -#. ~ Use action msg for XL black dragonscale helmet (raised visor). -#. ~ Use action msg for riot helmet (raised visor). -#. ~ Use action msg for motorcycle helmet (raised visor). -#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py -msgid "You put down your visor." +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL blue work pants." msgstr "" -#. ~ Description for black dragonscale helmet (raised visor) #: lang/json/ARMOR_from_json.py -msgid "" -"A helmet made from incredibly durable black dragonscale, held together with " -"black dragonhide. The visor is raised." +msgid "A pair of XL gray work pants." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonhide helmet" -msgid_plural "black dragonhide helmets" +msgid "A pair of XL light-blue work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL work t-shirt" +msgid_plural "XL work t-shirts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black dragonhide helmet +#. ~ Description for XL work t-shirt #: lang/json/ARMOR_from_json.py -msgid "" -"A helmet made from very durable black dragonhide. It protects your head " -"well, but doesn't cover your face." +msgid "A gray XL work t-shirt with a small front pocket." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale armor" -msgid_plural "black dragonscale armors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "An XL blue work t-shirt with a small front pocket." +msgstr "" -#. ~ Description for black dragonscale armor #: lang/json/ARMOR_from_json.py -msgid "" -"A full suit of incredibly durable 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." +msgid "An XL gray work t-shirt with a small front pocket." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonhide armor" -msgid_plural "black dragonhide armors" +msgid "An XL light-blue work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Uplifted SWAT armor" +msgid_plural "Uplifted SWAT armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black dragonhide armor +#. ~ Description for Uplifted SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A full suit of very durable 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." +"An extra large suit of black bulletproof armor with lots of pockets. The " +"word SWAT is emblazoned across the back. Specifically designed for Uplifted" +" officers such as Mastodons." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonscale gauntlets" -msgid_plural "pairs of black dragonscale gauntlets" +msgid "empty XL ballistic vest" +msgid_plural "empty XL ballistic vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of black dragonscale gauntlets +#. ~ Description for empty XL ballistic vest #: lang/json/ARMOR_from_json.py msgid "" -"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " -"that covers your hands." +"Oversized ballistic armor without any armor inserts. The soft armor plate " +"carrier is still protective but it won't stop high energy projectiles." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonhide gloves" -msgid_plural "pairs of black dragonhide gloves" +msgid "XL ESAPI ballistic vest" +msgid_plural "XL ESAPI ballistic vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of black dragonhide gloves +#. ~ Description for XL ESAPI ballistic vest #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of gloves made of very durable black dragonhide, modified to be easy " -"to wear while providing maximum protection under extreme conditions." +msgid "Oversized ballistic armor with ESAPI ceramic armor plates." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonscale boots" -msgid_plural "pairs of XL black dragonscale boots" +msgid "pair of XL combat boots" +msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of XL black dragonscale boots +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py -msgid "" -"Massive boots made of incredibly durable black dragonscale, modified to fit " -"even the strangest of bodies. Very protective, and surprisingly light." +msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonhide boots" -msgid_plural "pairs of XL black dragonhide boots" +msgid "pair of XL tactical gloves" +msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of XL black dragonhide boots +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" -"Massive boots made of very durable black dragonhide, modified to fit even " -"the strangest of bodies. Very protective, and surprisingly light." +"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " +"police and military units." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonscale gauntlets" -msgid_plural "pairs of XL black dragonscale gauntlets" +msgid "pair of Killophant gloves" +msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of XL black dragonscale gauntlets +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " -"that covers your hands, or whatever you use as hands." +"A pair of reinforced Kevlar tactical gloves, specifically designed to " +"accommodate three-fingered Killophants. Thinner than regular oversized " +"tactical gloves." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonhide gloves" -msgid_plural "pairs of XL black dragonhide gloves" +msgid "XL leather belt" +msgid_plural "XL leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of XL black dragonhide gloves +#. ~ Description for XL leather belt #: lang/json/ARMOR_from_json.py msgid "" -"A pair of gloves made of very durable black dragonhide, modified to be easy " -"to wear while providing maximum protection under extreme conditions. Sized " -"to fit even the strangest of anatomy." +"An XL leather belt. Useful for making your pair of pants fit if you need " +"really big pants." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale helmet" -msgid_plural "XL black dragonscale helmets" +msgid "XL police duty belt" +msgid_plural "XL police duty belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL black dragonscale helmet +#. ~ Description for XL police duty belt #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from incredibly durable black dragonscale, held " -"together with black dragonhide. It comes equipped with a full face visor " -"you can raise and is large enough to fit even the strangest of heads." +"An XL black leather belt used by extremely large uplifted police officers. " +"It has several pouches and a holder for a baton." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale helmet (raised visor)" -msgid_plural "XL black dragonscale helmets (raised visor)" +msgid "XL tactical full helmet" +msgid_plural "XL tactical full helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL black dragonscale helmet (raised visor) +#. ~ Description for XL tactical full helmet #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from incredibly durable black dragonscale, held " -"together with black dragonhide. It is large enough to fit even the " -"strangest of heads. The visor is raised" +"An all-encompassing massive black helmet that covers your entire face and " +"neck, providing excellent protection from all sorts of damage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonhide helmet" -msgid_plural "XL black dragonhide helmets" +msgid "XL leg ammo pouch" +msgid_plural "XL leg ammo pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL black dragonhide helmet +#. ~ Description for XL leg ammo pouch #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from very durable black dragonhide. It protects your " -"head well, and doesn't cover your face, but is large enough to fit even the " -"strangest of heads." +"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" +" two magazines close at hand." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale armor" -msgid_plural "XL black dragonscale armors" +msgid "crew jumpsuit" +msgid_plural "crew jumpsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL black dragonscale armor +#. ~ Description for crew jumpsuit #: lang/json/ARMOR_from_json.py msgid "" -"A massive full suit of incredibly durable 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." +"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " +"some freight hauling association or another. This one is a standard design " +"favored by spacers, with ample, easy access pockets." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonhide armor" -msgid_plural "XL black dragonhide armors" +msgid "communications cap" +msgid_plural "communications caps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL black dragonhide armor +#. ~ Description for communications cap #: lang/json/ARMOR_from_json.py msgid "" -"A massive full suit of very durable black dragonhide armor. It comes with " -"all the accoutrements that cover your torso, legs, and arms; sized to fit " -"even the strangest of bodies." +"A padded cotton cap built around an augmented reality headset. During " +"normal operation it would provide visual information about a ship subsystems" +" and a communications link with the rest of the crew, but severed from a " +"spaceship, only their hearing protection function retains any utility." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "dragonhide backpack" -msgid_plural "dragonhide backpacks" +msgid "HERC rig" +msgid_plural "HERC rigs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dragonhide backpack +#. ~ Description for HERC rig #: lang/json/ARMOR_from_json.py msgid "" -"A custom-built backpack. Made of very durable dragon leather and carefully " -"crafted to hold as much stuff as possible." +"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " +"about in zero-g, Mars, the bottom of the Pacific, or other generally " +"inhospitable environments. It has several deep pockets, and two mounting " +"points for pressurized canisters or other large magazines." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL dragonhide backpack" -msgid_plural "XL dragonhide backpacks" +msgid "cecalia wetsuit" +msgid_plural "cecalia wetsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for cecalia wetsuit #: lang/json/ARMOR_from_json.py -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " +"explorer suit with no head or tentacle protection." +msgstr "" #: lang/json/ARMOR_from_json.py -msgid "belt of haste" -msgid_plural "belts of haste" +msgid "combat wetsuit" +msgid_plural "combat wetsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for combat wetsuit #: lang/json/ARMOR_from_json.py -msgid "wizard hat" -msgid_plural "wizard hats" +msgid "" +"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " +"will provide some level of protection for deep dwellers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nanomesh vest" +msgid_plural "nanomesh vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wizard hat +#. ~ Description for nanomesh vest #: lang/json/ARMOR_from_json.py msgid "" -"A blue pointed hat with stars stitched into it. Wearing it increases your " -"maximum mana." +"A lightweight nanomesh vest designed to face down many of the perils of " +"space travel. These vests are mass produced and often stacked in starship " +"lockers." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Cloak of Morthylla the Lamia" -msgid_plural "Cloaks of Morthylla the Lamia" +msgid "vacuum cast cuirass" +msgid_plural "vacuum cast cuirasses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cloak of Morthylla the Lamia +#. ~ Description for vacuum cast cuirass #: lang/json/ARMOR_from_json.py msgid "" -"This cloak seems to absorb light except for the pinpricks of stars that move" -" across its surface." +"This piece of armor harkens back to renaissance designs. It differs in that" +" it is cast as a single piece in deep space installations where conditions " +"can be controlled absolutely." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of wolfshead cufflinks" -msgid_plural "pairs of wolfshead cufflinks" +msgid "carbide raider's helmet" +msgid_plural "carbide raider's helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of wolfshead cufflinks +#. ~ Description for carbide raider's helmet #: lang/json/ARMOR_from_json.py msgid "" -"A pair of silver cufflinks with a wolf's head engraved into them. Each " -"cufflink has a bright ruby eye and pearl teeth. They appear to be growling." -" There is an inscription, 'When the moon shines. I become alive.'" +"This helmet is designed for the individual that is worried about catching " +"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " +"environmental protection features, but it just might stop even the largest " +"of ballistic rounds." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" +msgid "UICAS Point of Impact helmet" +msgid_plural "UICAS Point of Impact helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for technomancer's toolbelt +#. ~ Description for UICAS Point of Impact helmet #: lang/json/ARMOR_from_json.py msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A lightweight black helmet that provides excellent protection from all sorts" +" of damage, unless it's airborne. UICAS makes the point of designing all " +"headgear whenever possible with clear faceplates, in order to provide a " +"human touch to all interactions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +msgid "cold resistance cream" +msgid_plural "cold resistance creams" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for seven league boots -#. ~ Description for boots of haste +#. ~ Description for cold resistance cream #: lang/json/ARMOR_from_json.py 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 thick layer of something that smells worse than walrus fat. But it keeps " +"you warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +msgid "heat retention xtreme cream" +msgid_plural "heat retention xtreme creams" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for heat retention xtreme cream #: lang/json/ARMOR_from_json.py -msgid "freerunner's boots" -msgid_plural "freerunner's boots" +msgid "" +"The last word in cold snap protection designed to give short term protection" +" in the event of a suit breach in vacuum." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "titanium watch" +msgid_plural "titanium watches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for titanium watch #: lang/json/ARMOR_from_json.py msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, seeming a bit more flexible and breathable than typical for their " -"materials. The enchantment they bear helps guide their wearer in their " -"motions, to make movement around and over obstacles much more fluid and " -"efficient." +"A thick, masculine watch made out of titanium. It is durable, light-weight " +"and water-resistant, an excellent watch to have in a hostile environment." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +msgid "titanium ring" +msgid_plural "titanium rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for boots of grounding +#. ~ Description for titanium ring #: lang/json/ARMOR_from_json.py 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 thick, masculine ring made out of titanium. Made in a variety of styles " +"and finishes, they're valued for their durability." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Fish" -msgid_plural "Wildshape Cloaks: Fish" +msgid "hazardous environment suit" +msgid_plural "hazardous environment suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wildshape Cloak: Fish +#. ~ Description for hazardous environment suit #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that shimmers like fresh water under a warm sun. It can be " -"worn to morph your body to a form that is excellent for swimming, but ill-" -"suited for combat." +"Developed for the exploration of alien planes, the lightweight, orange-black" +" HEV suit covers everything below the neck. While it possesses only modest " +"physical protection, it provides excellent protection from most " +"environmental hazards. A hatch in the front opens to provide a small amount" +" of storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Bear" -msgid_plural "Wildshape Cloak: Bears" +msgid "psychrophile handling gloves" +msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wildshape Cloak: Bear +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that smells of the forest. It can be worn to morph your " -"body to a form that is strong and resilient in melee combat. However, you " -"feel as if you would lose a part of yourself." +"These gloves are designed for handling organisms that live in extremely cold" +" temperatures. They can also be used to freeze your foes to death." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Deer" -msgid_plural "Wildshape Cloak: Deers" +msgid "CRIT Engineering Suit" +msgid_plural "CRIT Engineering Suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wildshape Cloak: Deer +#. ~ Description for CRIT Engineering Suit #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that feels soft to the touch. It can be worn to morph your " -"body to a form well-suited to escaping difficult situations. However, it " -"places a great strain on your body." +"An airtight, flexible suit of woven composite fibers complete with segmented" +" plates of armor. A complex system digitizes items in an individual pocket " +"universe for storage while built in joint-torsion ratchets generate the " +"necessary energy required to power the interface." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "enchanted parabolan wool blouse" -msgid_plural "enchanted parabolan wool blouse" +msgid "CRIT face mask" +msgid_plural "CRIT face masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for CRIT face mask #: lang/json/ARMOR_from_json.py msgid "" -"A loose iridescent blouse in a style most often associated with pirates and " -"renfaires. It shimmers as you look at it. Made of parabolan wool, it " -"sometimes dimly shows reflections of things here and not. This particular " -"one has piratical flairs and glitters with enchantment." +"A standard issue face mask, lined with Kevlar for extra protection. A few " +"filters provide decent environmental safety, but it was not intended for " +"extended use. It has a basic integrated HUD." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "enchanted parabolan wool breeches" -msgid_plural "enchanted parabolan wool breeches" +msgid "pair of CRIT boots" +msgid_plural "pairs of CRIT boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for pair of CRIT boots #: lang/json/ARMOR_from_json.py msgid "" -"A well-made pair of old-fashioned pants, made of iridescent material. " -"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " -"parabolan wool, it sometimes dimly shows reflections of things here and not." -" This particular one has piratical flairs and gliters with enchantment." +"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " +"hygienic during long-term missions while absorbing shock and heat from " +"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " +"protection as well. Decently heavy though" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "parabolan wool blouse" -msgid_plural "parabolan wool blouses" +msgid "pair of CRIT LA boots" +msgid_plural "pairs of CRIT LA boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for parabolan wool blouse +#. ~ Description for pair of CRIT LA boots #: lang/json/ARMOR_from_json.py msgid "" -"A loose iridescent blouse in a style most often associated with pirates and " -"renfaires. It shimmers as you look at it. Made of parabolan wool, it " -"sometimes dimly shows reflections of things here and not." +"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " +"variant was created for missions in warmer climates. The LA boots keep most" +" of the old features of the standard issue boots but trade in protection for" +" easier movement." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "parabolan wool breeches" -msgid_plural "parabolan wool breeches" +msgid "pair of CRIT fingertip-less gloves" +msgid_plural "pairs of CRIT fingertip-less gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for pair of CRIT fingertip-less gloves #: lang/json/ARMOR_from_json.py msgid "" -"A well-made pair of old-fashioned pants, made of iridescent material. " -"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " -"parabolan wool, it sometimes dimly shows reflections of things here and not." +"A pair of standard-issue gloves. Made with superalloy mesh for those with " +"gene-modding and/or mutations while still allowing greater manipulation of " +"items and moderate protection." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT fingertip-less liners" +msgid_plural "pairs of CRIT fingertip-less liners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of magical armored stone gauntlets -#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for pair of CRIT fingertip-less liners +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " +"for warmth and fingertip-less for those with gene-modding and/or mutations " +"while still allowing greater manipulation of items and moderate protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "magic lamp" -msgid_plural "magic lamps" +msgid "CRIT backpack" +msgid_plural "CRIT backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic lamp +#. ~ Description for CRIT backpack #: lang/json/ARMOR_from_json.py -msgid "A magical light source that will light up a small area." +msgid "" +"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " +"pack strikes a fine balance between storage space and encumbrance and allows" +" a larger weapon to be holstered, drawing and holstering is still rather " +"awkward even with the magnetized clips, but practice helps." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "magic light" -msgid_plural "magic lights" +msgid "CRIT chestrig" +msgid_plural "CRIT chestrigs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic light +#. ~ Description for CRIT chestrig #: lang/json/ARMOR_from_json.py -msgid "A small magical light that you can read by." +msgid "" +"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " +"with light-armor padding." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +msgid "pair of CRIT leg guards" +msgid_plural "pairs of CRIT leg guards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large shield of magical ice +#. ~ Description for pair of CRIT leg guards #: lang/json/ARMOR_from_json.py -msgid "A lightweight but tough shield crafted entirely of magical ice." +msgid "" +"Leg armor for those who fight. Simple design and durable material allows " +"for easy movement and the padding keeps the legs safe and warm in colder " +"conditions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +msgid "pair of CRIT arm guards" +msgid_plural "pairs of CRIT arm guards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for pair of CRIT arm guards #: lang/json/ARMOR_from_json.py 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 pair of arm guards made from superalloy molded upon neoprene, and then " +"insulated with rubber. They are sturdy and will block attacks, but they are" +" ridiculously heavy." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "flesh pouch" -msgid_plural "flesh pouches" +msgid "CRIT infantry duster" +msgid_plural "CRIT infantry dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for flesh pouch +#. ~ Description for CRIT infantry duster #: lang/json/ARMOR_from_json.py 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 thick full-length duster coat with rubber insulation. More than mildly " +"encumbering, but rather protective against any anti-infantry electrical " +"discharges from the robots. Has several pockets for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +msgid "CRIT Armored Anomaly Suit" +msgid_plural "CRIT Armored Anomaly Suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for obfuscating aura +#. ~ Description for CRIT Armored Anomaly Suit #: lang/json/ARMOR_from_json.py 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 relatively simple suit of armor. A suit of woven composite fibers " +"combined with a cleansuit core and strategically placed segmented Kevlar " +"plates keep the suit light-weight and the one wearing it alive while " +"offering superb resistance to the elements and ambient radiation." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +msgid "CRIT drop leg pouch" +msgid_plural "CRIT drop leg pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for acid resistance aura -#. ~ Description for greater acid resistance aura +#. ~ Description for CRIT drop leg pouch #: lang/json/ARMOR_from_json.py -msgid "An all-encompassing, invisible layer of protection against acid." +msgid "" +"A set of pouches that can be worn on the thighs using buckled straps. This " +"variety is more compact and is favored by the C.R.I.T for its ease of use." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +msgid "CRIT Enforcer armor assembly" +msgid_plural "CRIT Enforcer armor assemblies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for CRIT Enforcer armor assembly #: lang/json/ARMOR_from_json.py -msgid "frost armor" -msgid_plural "frost armor" +msgid "" +"A series of plates, guards and buckles which assemble into a suit of sturdy " +"body-armor which usually goes over other armor. Overlapping steel plates on" +" top of Kevlar plates cover vast expanses as the armor juts off in places so" +" it can deflect attacks. Built with the idea that comfort is less important" +" than safety, this heavy suit is difficult to move about in but highly " +"protective. Various adjustable connectors such as straps and clips hold it " +"together." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT Enforcer docks" +msgid_plural "pairs of CRIT Enforcer docks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for pair of CRIT Enforcer docks #: lang/json/ARMOR_from_json.py -msgid "A thin layer of magical ice, covering the entire body." +msgid "" +"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " +"oversized feet which clamp down onto your own footwear keep your feet out of" +" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " +"designs, but they do seem to be worth using if you were to be in the middle " +"of a war zone." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +msgid "CRIT Soldier Suit" +msgid_plural "CRIT Soldier Suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for CRIT Soldier Suit #: lang/json/ARMOR_from_json.py msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A suit of modern body-armor. Strategically placed superalloy plates keep " +"the suit's weight minimal while Kevlar plates other areas and a lining of " +"soft neoprene pads areas for extra comfort. Most importantly, this can be " +"worn comfortably under other armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "overcharge burn" -msgid_plural "overcharge burns" +msgid "CRIT Lone Wolf Series Armor" +msgid_plural "CRIT Lone Wolf Series Armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for overcharge burn +#. ~ Description for CRIT Lone Wolf Series Armor #: lang/json/ARMOR_from_json.py -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgid "" +"A matte black suit of outdated and bulky looking plate armor fitted onto a " +"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " +"armor will definitely protect you from practically anything. Just make sure" +" you can actually walk with it on though." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "aura of protection" -msgid_plural "auras of protection" +msgid "CRIT blouse" +msgid_plural "CRIT blouses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for aura of protection +#. ~ Description for CRIT blouse #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"A standard-issue military jacket. Durable, lightweight, and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather " +"while a sleek design keeps it from being too flashy. A zipper at the back " +"and front allows for quick donning and doffing." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "aura of repelling arc" -msgid_plural "auras of repelling arc" +msgid "CRIT trousers" +msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for aura of repelling arc +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" -"An invisible aura that strikes melee attackers with arcs of electricity." +"A pair of standard-issue cargo pants. Durable, lightweight and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "feral aura" -msgid_plural "feral auras" +msgid "CRIT pants" +msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for feral aura +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" -"The manifestation of your rage. It won't disappear until you calm down." +"A pair of dress pants. A minimalist sleek design makes the pants " +"lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" +" moderately cold weather." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "acid aura" -msgid_plural "acid auras" +msgid "CRIT helmet liner" +msgid_plural "CRIT helmet liners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for acid aura +#. ~ Description for CRIT helmet liner #: lang/json/ARMOR_from_json.py -msgid "" -"An aura of thin acid, swirling around your body ready to corrode when struck" -" or while striking." +msgid "A standard-issue helmet liner. Keeps the noggin warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "werewolf aura" -msgid_plural "werewolf auras" +msgid "pair of CRIT shoes" +msgid_plural "pairs of CRIT dress shoes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for werewolf aura +#. ~ Description for pair of CRIT shoes #: lang/json/ARMOR_from_json.py -msgid "You have become the werewolf. Boys becoming men, men becoming wolves." +msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Black Dragon Shell" -msgid_plural "Black Dragon Shells" +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT rec gloves" +msgid_plural "pairs of CRIT rec gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Black Dragon Shell +#. ~ Description for pair of CRIT rec gloves #: lang/json/ARMOR_from_json.py msgid "" -"An aura of black and green draconic energy, swirling around your body " -"protecting you and punishing those who strike you." +"A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " +"are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "spiritual armor" -msgid_plural "spiritual armor" +msgid "CRIT web belt" +msgid_plural "CRIT web belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py -msgid "A summoned medieval armor. It glows softly and looks sturdy." +msgid "" +"A standard-issue belt. Keeps your trousers up and your tools on your hip." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "auroral shell" -msgid_plural "auroral shell" +msgid "CRIT rec duster" +msgid_plural "CRIT rec dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for CRIT rec duster #: lang/json/ARMOR_from_json.py -msgid "A sturdy shell that wraps your body, gaining a sturdy defense." +msgid "" +"A waterproofed full-length duster coat. Made with neoprene, comfort and " +"functionality meet together to form a fancy but sleek contemporary design. " +"It has several pockets for storage." msgstr "" -#: lang/json/BATTERY_from_json.py -msgid "test battery" -msgid_plural "test batteries" +#: lang/json/ARMOR_from_json.py +msgid "CRIT rec hat" +msgid_plural "CRIT rec hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for test battery -#: lang/json/BATTERY_from_json.py +#. ~ Description for CRIT rec hat +#: lang/json/ARMOR_from_json.py msgid "" -"This is a testing item for the BATTERY item type. If you found one in game," -" it's a bug." +"Functionality meets fashion in this waterproofed CRIT standard issue rec " +"cover. Thick enough to provide warmth in colder weather, this hat shares " +"the same sleek design of most of C.R.I.T's gear." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract bionic module" -msgid_plural "abstract bionic modules" +#: lang/json/ARMOR_from_json.py +msgid "plant fiber tunic" +msgid_plural "plant fiber tunics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract bionic module (npc usable)" -msgid_plural "abstract bionic modules (npc usable)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#. ~ Description for plant fiber tunic +#: lang/json/ARMOR_from_json.py +msgid "" +"A loose garment cobbled together from a collection of plant bundles and " +"wound together by makeshift cordage" +msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract faulty bionic module" -msgid_plural "abstract faulty bionic modules" +#: lang/json/ARMOR_from_json.py +msgid "plant fiber bracelet" +msgid_plural "plant fiber bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for abstract faulty bionic module -#: lang/json/BIONIC_ITEM_from_json.py -msgid "This CBM is broken beyond repair, you can't do anything with it." +#. ~ Description for plant fiber bracelet +#: lang/json/ARMOR_from_json.py +msgid "" +"A bracelet wound together by makeshift cordage. Has some cool looking " +"pebbles." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Adrenaline Pump CBM" -msgid_plural "Adrenaline Pump CBMs" +#: lang/json/ARMOR_from_json.py +msgid "CRIT canteen" +msgid_plural "CRIT canteens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Adrenaline Pump CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for CRIT canteen +#: lang/json/ARMOR_from_json.py msgid "" -"A stimulator system that is implanted alongside the adrenal glands, allowing" -" the user to trigger their body's adrenaline response at the cost of some " -"bionic power." +"A durable steel canteen that can heat up food with built in atomic heating " +"elements." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Active Defense System CBM" -msgid_plural "Active Defense System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "salvaged new order armor" +msgid_plural "salvaged new order armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Active Defense System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for salvaged new order armor +#: lang/json/ARMOR_from_json.py msgid "" -"This bionic projects a thin forcefield around the user's body. Anything " -"attempting to penetrate this field has a chance of being deflected at the " -"cost of energy, reducing their ability to deal damage. Bullets will be " -"deflected more than swords and those in turn more than massive objects." +"A suit of armor belonging to a human-sized soldier of the New Order. Its " +"terribly damaged from some combination of the combat its seen, the process " +"needed to pry it off its wearer, and some sort of dead man's switch on the " +"elements that actually power the thing and make it easy to wear." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Alarm System CBM" -msgid_plural "Alarm System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "new order shield" +msgid_plural "new order shields" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Alarm System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for new order shield +#: lang/json/ARMOR_from_json.py msgid "" -"A motion-detecting alarm system will notice almost all movement within a " -"fifteen-foot radius, and will silently alert the user. This is very useful " -"during sleep, or if the user suspects a cloaked pursuer." +"A simple shield made of some sort of polycarbonates, used extensively by the" +" Vigilants, the gendarmerie of the New Order. Alongside their infamous " +"shock batons, this is an essential tool in 'keeping the peace'." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "new order battle shield" +msgid_plural "new order battle shields" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Arms Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for new order battle shield +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"A well forged shield made of steel, emblazoned with what appears to be a " +"highly stylized depiction of a sword piercing a star." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Protective Lenses CBM" -msgid_plural "Protective Lenses CBMs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#. ~ Description for large quiver +#: lang/json/ARMOR_from_json.py +msgid "" +"A large leather quiver trimmed with metal, worn on the back, that can hold " +"60 arrows. Historically used by horse archers, rather than foot archers, " +"but sometimes horses are a little hard to come by in this day and age. " +"Activate to store arrows." +msgstr "" -#. ~ Description for Protective Lenses CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for bra +#: lang/json/ARMOR_from_json.py msgid "" -"A bionic package that seals the user's eye sockets with highly protective " -"mirrored lenses and re-routes their tear ducts to their mouth. When the " -"user cries, they must spit out or swallow their tears." +"A simple bra. For protecting those bits you don't want creatures to look " +"at." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Ixythyug the Destroyer's soul" +msgid_plural "Ixythyug the Destroyer's souls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Head Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +#. ~ Description for Ixythyug the Destroyer's soul +#: lang/json/ARMOR_from_json.py +msgid "RIP AND TEAR" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Force Shield" +msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Legs Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Force Shield +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"A shield of pure force that protects you from most types of physical damage." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Soul Burn" +msgid_plural "Soul Burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Torso Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Soul Burn +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"A little of your soul has been burned away, leaving you in a weakened state." +" The soul heals quickly, so rest for now." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Battery System CBM" -msgid_plural "Battery System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Battery System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for copper infusion bracelet +#. ~ Description for silver infusion bracelet +#: lang/json/ARMOR_from_json.py msgid "" -"A battery draining attachment to make use of the energy contained in normal," -" everyday batteries." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Monomolecular Blade CBM" -msgid_plural "Monomolecular Blade CBMs" +#: lang/json/ARMOR_from_json.py +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Monomolecular Blade CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A deadly foot-long blade made of advanced material that is installed inside " -"the forearm, capable of being extended through the back of the user's wrist " -"at the cost of a small amount of power. Though exceptionally sharp, it will" -" prevent the user from holding anything else while extended." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Shotgun Arm CBM" -msgid_plural "Shotgun Arm CBMs" +#: lang/json/ARMOR_from_json.py +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Shotgun Arm CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for copper circlet +#: lang/json/ARMOR_from_json.py msgid "" -"A concealed, single shot 12 gauge shotgun that is implanted inside the left " -"forearm. Perfect in a pinch." +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Blood Analysis CBM" -msgid_plural "Blood Analysis CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin arm guards" +msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Blood Analysis CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of demon chitin arm guards +#: lang/json/ARMOR_from_json.py msgid "" -"Small sensors that are implanted in the user's heart, allowing them to " -"analyze their blood. This will detect many illnesses, drugs, and other " -"conditions." +"A pair of arm guards crafted from the carefully cleaned and pruned red " +"exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Blood Filter CBM" -msgid_plural "Blood Filter CBMs" +#: lang/json/ARMOR_from_json.py +msgid "demon chitin armor" +msgid_plural "demon chitin armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Blood Filter CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for demon chitin armor +#: lang/json/ARMOR_from_json.py msgid "" -"A filtration system that is installed in the heart and can actively filter " -"out chemical impurities, primarily drugs, with limited impact on viruses. " -"Note that it is not a targeted filter; ALL drugs in the system will be " -"affected." +"Leg and body armor crafted from the carefully cleaned and pruned red " +"exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Cable Charger System CBM" -msgid_plural "Cable Charger System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "demon chitin helmet" +msgid_plural "demon chitin helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cable Charger System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for demon chitin helmet +#: lang/json/ARMOR_from_json.py msgid "" -"A complex port that is mounted above the hip. While active, it will " -"recharge bionic power when connected to a battery via jumper cable." +"A helmet crafted from the carefully cleaned and pruned red exoskeletons of " +"demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Subdermal Carbon Filament CBM" -msgid_plural "Subdermal Carbon Filament CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin gauntlets" +msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Subdermal Carbon Filament CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of demon chitin gauntlets +#: lang/json/ARMOR_from_json.py msgid "" -"A thin armor made of carbon nanotubes, implanted just beneath the skin. " -"This reduces bashing damage by 2 and cutting damage by 4." +"Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " +"demon spiders. Fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Chain Lightning CBM" -msgid_plural "Chain Lightning CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin boots" +msgid_plural "pairs of demon chitin boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Chain Lightning CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of demon chitin boots +#: lang/json/ARMOR_from_json.py msgid "" -"A chain lightning generator that emits a blast of lightning at a target, " -"leaving a trail of lightning in its wake and jumping to additional targets " -"within 4 tiles of the previous target." +"Boots crafted from carefully cleaned and pruned red exoskeletons of demon " +"spiders. Fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Bionic Claws CBM" -msgid_plural "Bionic Claws CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonscale boots" +msgid_plural "pairs of black dragonscale boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Bionic Claws CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of black dragonscale boots +#: lang/json/ARMOR_from_json.py msgid "" -"Vicious, retractable claws that are implanted inside the user's fingers. " -"These do considerable cutting damage, but prevent the user from holding " -"anything else while extended." +"Boots made of black incredibly durable dragonscale. Very protective, and " +"surprisingly light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Internal Climate Control CBM" -msgid_plural "Internal Climate Control CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonhide boots" +msgid_plural "pairs of black dragonhide boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Internal Climate Control CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of black dragonhide boots +#: lang/json/ARMOR_from_json.py msgid "" -"A network of thermal piping which eases the effects of high and low ambient " -"temperatures once activated." +"Boots made of very durable black dragonhide. Very protective, and " +"surprisingly light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Cloaking System CBM" -msgid_plural "Cloaking System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale helmet" +msgid_plural "black dragonscale helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cloaking System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Use action msg for black dragonscale helmet. +#. ~ Use action msg for XL black dragonscale helmet. +#. ~ Use action msg for riot helmet. +#. ~ Use action msg for motorcycle helmet. +#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py +msgid "You raise your visor." +msgstr "" + +#. ~ Description for black dragonscale helmet +#: lang/json/ARMOR_from_json.py msgid "" -"This high-power system uses a set of cameras and LEDs to make the user blend" -" into their surroundings, rendering them fully invisible to eyes and optical" -" sensors. However, this doesn't prevent detection from other means such as " -"infrared, sonar, etc." +"A helmet made from black incredibly durable dragonscale, held together with " +"black dragonhide. It comes equipped with a full face visor with only a thin" +" slit to see out of. Activate to raise the visor." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Close Quarters Battle CBM" -msgid_plural "Close Quarters Battle CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale helmet (raised visor)" +msgid_plural "black dragonscale helmets (raised visor)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Close Quarters Battle CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A set of bionic processors and databanks, loaded with martial arts combat " -"programs. Whilst active, the CQB module will improve the user's hand-to-" -"hand combat skills, but prevents them from improving them through combat " -"experience." -msgstr "" +#. ~ Use action msg for black dragonscale helmet (raised visor). +#. ~ Use action msg for XL black dragonscale helmet (raised visor). +#. ~ Use action msg for riot helmet (raised visor). +#. ~ Use action msg for motorcycle helmet (raised visor). +#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py +msgid "You put down your visor." +msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Wired Reflexes CBM" -msgid_plural "Wired Reflexes CBMs" +#. ~ Description for black dragonscale helmet (raised visor) +#: lang/json/ARMOR_from_json.py +msgid "" +"A helmet made from incredibly durable black dragonscale, held together with " +"black dragonhide. The visor is raised." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonhide helmet" +msgid_plural "black dragonhide helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wired Reflexes CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for black dragonhide helmet +#: lang/json/ARMOR_from_json.py msgid "" -"Bionic nerve stimulators that greatly enhance reaction times, granting a +2 " -"bonus to dexterity." +"A helmet made from very durable black dragonhide. It protects your head " +"well, but doesn't cover your face." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Expanded Digestive System CBM" -msgid_plural "Expanded Digestive System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale armor" +msgid_plural "black dragonscale armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Expanded Digestive System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for black dragonscale armor +#: lang/json/ARMOR_from_json.py msgid "" -"This module contains three synthetic stomachs and industrial-grade " -"intestines. Not only will these extract much more nutrition from food, but " -"also increase the user's resistance to foodborne illness, and occasionally " -"allow the digestion of rotten food." +"A full suit of incredibly durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Enhanced Hearing CBM" -msgid_plural "Enhanced Hearing CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonhide armor" +msgid_plural "black dragonhide armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Enhanced Hearing CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for black dragonhide armor +#: lang/json/ARMOR_from_json.py msgid "" -"While this bionic is active, the user's hearing will be drastically " -"improved, allowing them to hear ten times better than the average person. " -"Additionally, high-intensity sounds will be automatically dampened before " -"they can damage their hearing." +"A full suit of very durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Directional EMP CBM" -msgid_plural "Directional EMP CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonscale gauntlets" +msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Directional EMP CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of black dragonscale gauntlets +#: lang/json/ARMOR_from_json.py msgid "" -"Small parabolic EMP field generators that are mounted in the palm of the " -"user's right hand. These can be used to instantly fire a wide, but short-" -"ranged blast which will disable electronics and robots." +"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " +"that covers your hands." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "EMP Projector CBM" -msgid_plural "EMP Projector CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonhide gloves" +msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for EMP Projector CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of black dragonhide gloves +#: lang/json/ARMOR_from_json.py msgid "" -"A ranged EMP generator system that is implanted in the user's right arm and " -"hand. The system fires precise, single-target pulses that require time to " -"aim. Extremely effective against electronic targets but mostly useless " -"otherwise." +"A pair of gloves made of very durable black dragonhide, modified to be easy " +"to wear while providing maximum protection under extreme conditions." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Ethanol Burner CBM" -msgid_plural "Ethanol Burner CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonscale boots" +msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ethanol Burner CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of XL black dragonscale boots +#: lang/json/ARMOR_from_json.py msgid "" -"A reactor that burns alcohol as fuel in an extremely efficient reaction. It" -" can store up to 500ml and accepts ethanol, methanol and denatured alcohol " -"as fuel." +"Massive boots made of incredibly durable black dragonscale, modified to fit " +"even the strangest of bodies. Very protective, and surprisingly light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Aero-Evaporator CBM" -msgid_plural "Aero-Evaporator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonhide boots" +msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Aero-Evaporator CBM -#. ~ Description for Aero-Evaporator -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for pair of XL black dragonhide boots +#: lang/json/ARMOR_from_json.py msgid "" -"This unit draws moisture from the surrounding air, which slowly trickles " -"directly into your blood stream. It may fail in very dry environments." +"Massive boots made of very durable black dragonhide, modified to fit even " +"the strangest of bodies. Very protective, and surprisingly light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Diamond Cornea CBM" -msgid_plural "Diamond Cornea CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonscale gauntlets" +msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Diamond Cornea CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of XL black dragonscale gauntlets +#: lang/json/ARMOR_from_json.py msgid "" -"A set of diamond corneas which greatly enhance the user's vision, granting a" -" +2 bonus to perception." +"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " +"that covers your hands, or whatever you use as hands." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Telescopic Eyes CBM" -msgid_plural "Telescopic Eyes CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonhide gloves" +msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Telescopic Eyes CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of XL black dragonhide gloves +#: lang/json/ARMOR_from_json.py msgid "" -"An array of high-powered, auto-focusing lenses that replaces much of the " -"material in the inner eye. This fixes any vision problems and allows for an" -" increased vision range akin to binoculars." +"A pair of gloves made of very durable black dragonhide, modified to be easy " +"to wear while providing maximum protection under extreme conditions. Sized " +"to fit even the strangest of anatomy." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Facial Distortion CBM" -msgid_plural "Facial Distortion CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale helmet" +msgid_plural "XL black dragonscale helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Facial Distortion CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for XL black dragonscale helmet +#: lang/json/ARMOR_from_json.py msgid "" -"Through controlled application of electrochemical impulses, this bionic " -"module lets the user alter their facial structure so as to subtly affect the" -" reactions of others. This grants a bonus to all social interactions." +"A massive helmet made from incredibly durable black dragonscale, held " +"together with black dragonhide. It comes equipped with a full face visor " +"you can raise and is large enough to fit even the strangest of heads." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Dielectric Capacitance System CBM" -msgid_plural "Dielectric Capacitance System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale helmet (raised visor)" +msgid_plural "XL black dragonscale helmets (raised visor)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dielectric Capacitance System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for XL black dragonscale helmet (raised visor) +#: lang/json/ARMOR_from_json.py msgid "" -"A network of miniature piezoelectric capacitors, implanted throughout the " -"body to protect from external electrical discharge." +"A massive helmet made from incredibly durable black dragonscale, held " +"together with black dragonhide. It is large enough to fit even the " +"strangest of heads. The visor is raised" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Fingerhack CBM" -msgid_plural "Fingerhack CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonhide helmet" +msgid_plural "XL black dragonhide helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Fingerhack CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for XL black dragonhide helmet +#: lang/json/ARMOR_from_json.py msgid "" -"A miniature electrohack, surgically embedded in a finger of the right hand." -" This is an all-purpose hacking unit used to override control panels and " -"the like, but not computers. Computer proficiency is important, and a " -"failed use may cause damage." +"A massive helmet made from very durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Flashbang Generator CBM" -msgid_plural "Flashbang Generator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale armor" +msgid_plural "XL black dragonscale armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Flashbang Generator CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for XL black dragonscale armor +#: lang/json/ARMOR_from_json.py msgid "" -"A combination of LEDs and speakers that create a flash and sound comparable " -"to a flashbang grenade, deafening and blinding nearby enemies." +"A massive full suit of incredibly durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Cranial Flashlight CBM" -msgid_plural "Cranial Flashlight CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonhide armor" +msgid_plural "XL black dragonhide armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cranial Flashlight CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "A small, but powerful LED flashlight that is mounted between the eyes." +#. ~ Description for XL black dragonhide armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive full suit of very durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "LED Tattoo" -msgid_plural "LED Tattoos" +#: lang/json/ARMOR_from_json.py +msgid "dragonhide backpack" +msgid_plural "dragonhide backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for LED Tattoo -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for dragonhide backpack +#: lang/json/ARMOR_from_json.py msgid "" -"An LED display implanted beneath the epidermis that can display patterns or " -"pictures through the skin. When active it glows dimly, providing a very " -"small amount of light." +"A custom-built backpack. Made of very durable dragon leather and carefully " +"crafted to hold as much stuff as possible." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Integrated Dosimeter CBM" -msgid_plural "Integrated Dosimeter CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL dragonhide backpack" +msgid_plural "XL dragonhide backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Integrated Dosimeter CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Small radiation sensors that are implanted throughout the body, allowing the" -" user to analyze their level of absorbed radiation. They will also alert " -"the user whenever exposed to environmental radiation." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Respirator CBM" -msgid_plural "Respirator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Respirator CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A complex respiration augmentation system that increases the user's maximal " -"oxygen uptake and allows for underwater breathing akin to gills. Will " -"automatically activate if the user is drowning." -msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "belt of haste" +msgid_plural "belts of haste" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Terranian Sonar CBM" -msgid_plural "Terranian Sonar CBMs" +#: lang/json/ARMOR_from_json.py +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Terranian Sonar CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for wizard hat +#: lang/json/ARMOR_from_json.py msgid "" -"Precision sonar equipment, implanted in the feet to allow the detection of " -"below-ground movement, buried traps, and unstable terrain." +"A blue pointed hat with stars stitched into it. Wearing it increases your " +"maximum mana." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Heat Drain CBM" -msgid_plural "Heat Drain CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Cloak of Morthylla the Lamia" +msgid_plural "Cloaks of Morthylla the Lamia" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Heat Drain CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Cloak of Morthylla the Lamia +#: lang/json/ARMOR_from_json.py msgid "" -"While fighting unarmed against a warm-blooded opponent, there is a chance " -"that a successful hit will drain body heat, inflicting a small amount of " -"extra damage, and recharging the user's bionic power reserves slightly." +"This cloak seems to absorb light except for the pinpricks of stars that move" +" across its surface." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Thermal Dissipation CBM" -msgid_plural "Thermal Dissipation CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of wolfshead cufflinks" +msgid_plural "pairs of wolfshead cufflinks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Thermal Dissipation CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of wolfshead cufflinks +#: lang/json/ARMOR_from_json.py msgid "" -"Powerful heatsinks and supermaterials are woven into the user's flesh. " -"While powered, this system will prevent external heat damage up to 2000 " -"degrees Fahrenheit. Note that this does not affect the internal body " -"temperature." +"A pair of silver cufflinks with a wolf's head engraved into them. Each " +"cufflink has a bright ruby eye and pearl teeth. They appear to be growling." +" There is an inscription, 'When the moon shines. I become alive.'" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Hydraulic Muscles CBM" -msgid_plural "Hydraulic Muscles CBMs" +#: lang/json/ARMOR_from_json.py +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Hydraulic Muscles CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for technomancer's toolbelt +#: lang/json/ARMOR_from_json.py msgid "" -"A hydraulic muscle support system that when active, increases strength by " -"20." +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Infrared Vision CBM" -msgid_plural "Infrared Vision CBMs" +#: lang/json/ARMOR_from_json.py +msgid "seven league boots" +msgid_plural "pairs of seven league boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Infrared Vision CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for seven league boots +#. ~ Description for boots of haste +#: lang/json/ARMOR_from_json.py msgid "" -"A bionic module that extends the range of vision into the infrared, allowing" -" the user to see warm-blooded creatures in the dark and through smoke." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Cerebral Booster CBM" -msgid_plural "Cerebral Booster CBMs" +#: lang/json/ARMOR_from_json.py +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cerebral Booster CBM -#: lang/json/BIONIC_ITEM_from_json.py +#: lang/json/ARMOR_from_json.py +msgid "freerunner's boots" +msgid_plural "freerunner's boots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for freerunner's boots +#: lang/json/ARMOR_from_json.py msgid "" -"Bionic coprocessors that are implanted in the brain, granting a +2 bonus to " -"intelligence." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, seeming a bit more flexible and breathable than typical for their " +"materials. The enchantment they bear helps guide their wearer in their " +"motions, to make movement around and over obstacles much more fluid and " +"efficient." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Finger-Mounted Laser CBM" -msgid_plural "Finger-Mounted Laser CBMs" +#: lang/json/ARMOR_from_json.py +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Finger-Mounted Laser CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for boots of grounding +#: lang/json/ARMOR_from_json.py msgid "" -"A small, high-powered laser that is embedded in the fingertip. This long " -"range weapon is not incredibly damaging, but is very accurate, and has the " -"potential to start fires." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Leukocyte Breeder System CBM" -msgid_plural "Leukocyte Breeder System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Fish" +msgid_plural "Wildshape Cloaks: Fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Leukocyte Breeder System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Wildshape Cloak: Fish +#: lang/json/ARMOR_from_json.py msgid "" -"Bionic stimulators which augment the user's haematopoiesis system, allowing " -"them to accelerate white blood cell production using bionic power. It is " -"designed for continuous use and may cause unpleasant side effects when " -"turned off." +"A magical cloak that shimmers like fresh water under a warm sun. It can be " +"worn to morph your body to a form that is excellent for swimming, but ill-" +"suited for combat." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Finger Lighter CBM" -msgid_plural "Finger Lighter CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Bear" +msgid_plural "Wildshape Cloak: Bears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Finger Lighter CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Wildshape Cloak: Bear +#: lang/json/ARMOR_from_json.py msgid "" -"Powerful fire starters which extend from the tip of both hands' index " -"fingers." +"A magical cloak that smells of the forest. It can be worn to morph your " +"body to a form that is strong and resilient in melee combat. However, you " +"feel as if you would lose a part of yourself." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Fingerpick CBM" -msgid_plural "Fingerpick CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Deer" +msgid_plural "Wildshape Cloak: Deers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Fingerpick CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Wildshape Cloak: Deer +#: lang/json/ARMOR_from_json.py msgid "" -"An electronic lockpick that is embedded in a fingertip. This automatic " -"system will quickly unlock all but the most advanced key locks without any " -"skill required on the part of the user." +"A magical cloak that feels soft to the touch. It can be worn to morph your " +"body to a form well-suited to escaping difficult situations. However, it " +"places a great strain on your body." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Electromagnetic Unit CBM" -msgid_plural "Electromagnetic Unit CBMs" +#: lang/json/ARMOR_from_json.py +msgid "enchanted parabolan wool blouse" +msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Electromagnetic Unit CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for enchanted parabolan wool blouse +#: lang/json/ARMOR_from_json.py msgid "" -"A powerful electromagnet that is implanted into the user's right hand, " -"allowing them to indiscriminately pull all nearby magnetic objects towards " -"them. Unlucky bystanders might be injured or killed by flying objects." +"A loose iridescent blouse in a style most often associated with pirates and " +"renfaires. It shimmers as you look at it. Made of parabolan wool, it " +"sometimes dimly shows reflections of things here and not. This particular " +"one has piratical flairs and glitters with enchantment." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Nictating Membrane CBM" -msgid_plural "Nictating Membrane CBMs" +#: lang/json/ARMOR_from_json.py +msgid "enchanted parabolan wool breeches" +msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Nictating Membrane CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for enchanted parabolan wool breeches +#: lang/json/ARMOR_from_json.py msgid "" -"A thin membrane that closes over the eyes while underwater, negating any " -"vision penalties." +"A well-made pair of old-fashioned pants, made of iridescent material. " +"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " +"parabolan wool, it sometimes dimly shows reflections of things here and not." +" This particular one has piratical flairs and gliters with enchantment." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Enhanced Memory Banks CBM" -msgid_plural "Enhanced Memory Banks CBMs" +#: lang/json/ARMOR_from_json.py +msgid "parabolan wool blouse" +msgid_plural "parabolan wool blouses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Enhanced Memory Banks CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for parabolan wool blouse +#: lang/json/ARMOR_from_json.py msgid "" -"A set of highly-advanced quantum storage drives used to enhance memory. " -"While active, they increase the rate that the user learns skills, and give " -"them near-perfect memory of skills and terrain." +"A loose iridescent blouse in a style most often associated with pirates and " +"renfaires. It shimmers as you look at it. Made of parabolan wool, it " +"sometimes dimly shows reflections of things here and not." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Metabolic Interchange CBM" -msgid_plural "Metabolic Interchange CBMs" +#: lang/json/ARMOR_from_json.py +msgid "parabolan wool breeches" +msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Metabolic Interchange CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for parabolan wool breeches +#: lang/json/ARMOR_from_json.py msgid "" -"This module interconnects the user's digestive system and power supply, " -"letting them replenish bionic energy by burning calories." +"A well-made pair of old-fashioned pants, made of iridescent material. " +"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " +"parabolan wool, it sometimes dimly shows reflections of things here and not." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Weather Reader CBM" -msgid_plural "Weather Reader CBMs" +#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py +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 Weather Reader CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A multitude of scientific instruments and sensors collect environmental " -"data. The data is compiled and presented as a simple readout of the current" -" weather. It also passively tells the user their external temperature." +#. ~ Description for pair of magical armored stone gauntlets +#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py +msgid "A magical flexible stonelike substance for protection and attack." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Repair Nanobots CBM" -msgid_plural "Repair Nanobots CBMs" +#: lang/json/ARMOR_from_json.py +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Repair Nanobots CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A fleet of tiny dormant robots. While activated they will flit about the " -"user's body, repairing damage and stopping bleeding at the cost of power." +#. ~ Description for magic lamp +#: lang/json/ARMOR_from_json.py +msgid "A magical light source that will light up a small area." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Artificial Night Generator CBM" -msgid_plural "Artificial Night Generator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Artificial Night Generator CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"When active, this bionic eliminates all light within a 15 tile radius " -"through destructive interference." +#. ~ Description for magic light +#: lang/json/ARMOR_from_json.py +msgid "A small magical light that you can read by." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Implanted Night Vision CBM" -msgid_plural "Implanted Night Vision CBMs" +#: lang/json/ARMOR_from_json.py +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Implanted Night Vision CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"This bionic module modifies the user's eyes to amplify existing light, " -"allowing them to see in the dark." +#. ~ Description for large shield of magical ice +#: lang/json/ARMOR_from_json.py +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Offensive Defense System CBM" -msgid_plural "Offensive Defense System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Offensive Defense System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for slick icy coatings +#: lang/json/ARMOR_from_json.py msgid "" -"A thin forcefield gets projected around the user's body, continually " -"draining power. This field does not deflect attacks, but rather delivers a " -"strong shock, damaging unarmed attackers and those with a conductive 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Sensory Dulling CBM" -msgid_plural "Sensory Dulling CBMs" +#: lang/json/ARMOR_from_json.py +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Sensory Dulling CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for flesh pouch +#: lang/json/ARMOR_from_json.py msgid "" -"This module lets the user's nervous system inhibit pain signals, allowing " -"them to dull their senses at will. However, the use of this system may " -"cause delayed reaction times and drowsiness." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Power Armor Interface CBM" -msgid_plural "Power Armor Interface CBMs" +#: lang/json/ARMOR_from_json.py +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Power Armor Interface CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for obfuscating aura +#: lang/json/ARMOR_from_json.py msgid "" -"Interfaces the user's bionic power system with the internal charging port on" -" suits of power armor, allowing them to draw from the user's bionic power " -"banks." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Power Armor Mk. II Interface CBM" -msgid_plural "Power Armor Mk. II Interface CBMs" +#: lang/json/ARMOR_from_json.py +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Power Armor Mk. II Interface CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Interfaces the user's bionic power system with the internal charging port on" -" suits of power armor, allowing them to draw from the user's bionic power " -"banks. Twice as efficient as the Mk. I model. The Mk. II was designed by " -"DoubleTech Inc., to meet the popularity of the Mk. II power armor series." +#. ~ Description for acid resistance aura +#. ~ Description for greater acid resistance aura +#: lang/json/ARMOR_from_json.py +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Power Storage CBM" -msgid_plural "Power Storage CBMs" +#: lang/json/ARMOR_from_json.py +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Power Storage CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A Compact Bionics Module that upgrades the user's power capacity by 100 " -"units. Having at least one of these is a prerequisite to using powered " -"bionics. The user will also need a power supply, found in various CBMs." +#: lang/json/ARMOR_from_json.py +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for frost armor +#: lang/json/ARMOR_from_json.py +msgid "A thin layer of magical ice, covering the entire body." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Power Storage CBM Mk. II" -msgid_plural "Power Storage CBM Mk. II" +#: lang/json/ARMOR_from_json.py +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for stoneskin coating +#: lang/json/ARMOR_from_json.py msgid "" -"A Compact Bionics Module developed at DoubleTech Industries as a replacement" -" for the highly successful Power Storage CBM. Increases the user's power " -"capacity by 250 units." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Probability Travel CBM" -msgid_plural "Probability Travel CBMs" +#: lang/json/ARMOR_from_json.py +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Probability Travel CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Increases the body's wavelength, allowing the user to quantum tunnel through" -" walls, reappearing on the other side. Power drain in standby is minimal, " -"but each tile tunneled through costs 250 bionic power." +#. ~ Description for overcharge burn +#: lang/json/ARMOR_from_json.py +msgid "Ouch, this really smarts! It'll go away soon, maybe?" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Air Filtration System CBM" -msgid_plural "Air Filtration System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Air Filtration System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for aura of protection +#: lang/json/ARMOR_from_json.py msgid "" -"An advanced filtration system that is implanted in the trachea. If toxins, " -"or airborne diseases find their way into the windpipe, the filter will " -"attempt to remove them." +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Radiation Scrubber System CBM" -msgid_plural "Radiation Scrubber System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "aura of repelling arc" +msgid_plural "auras of repelling arc" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Radiation Scrubber System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for aura of repelling arc +#: lang/json/ARMOR_from_json.py msgid "" -"A system of advanced piezomechanical blood filters that are implanted " -"throughout your body, allowing the user to purge themself of absorbed " -"radiation at the cost of some bionic power." +"An invisible aura that strikes melee attackers with arcs of electricity." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Railgun CBM" -msgid_plural "Railgun CBMs" +#: lang/json/ARMOR_from_json.py +msgid "feral aura" +msgid_plural "feral auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Railgun CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for feral aura +#: lang/json/ARMOR_from_json.py msgid "" -"EM field generators in the user's arms increase the range and damage of " -"thrown magnetic objects at a cost of 1 bionic power per throw. They will " -"create a trail of electricity that can cause additional damage." +"The manifestation of your rage. It won't disappear until you calm down." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Fingertip Razors CBM" -msgid_plural "Fingertip Razors CBMs" +#: lang/json/ARMOR_from_json.py +msgid "acid aura" +msgid_plural "acid auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Fingertip Razors CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for acid aura +#: lang/json/ARMOR_from_json.py msgid "" -"A set of ten double-edged, four centimeter long razor-sharp claws that are " -"implanted underneath the fingernails. These will deal a small amount of " -"unarmed slashing damage whenever the user's fingertips are uncovered." +"An aura of thin acid, swirling around your body ready to corrode when struck" +" or while striking." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Gasoline Fuel Cell CBM" -msgid_plural "Gasoline Fuel Cell CBMs" +#: lang/json/ARMOR_from_json.py +msgid "werewolf aura" +msgid_plural "werewolf auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Gasoline Fuel Cell CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A small gasoline fuel cell able to convert gasoline to bionic power. It's " -"connected to a diffuse network of bio-plastic bladders able to hold up to " -"500 ml of gasoline." +#. ~ Description for werewolf aura +#: lang/json/ARMOR_from_json.py +msgid "You have become the werewolf. Boys becoming men, men becoming wolves." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Recycler Unit CBM" -msgid_plural "Recycler Unit CBMs" +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Black Dragon Shell" +msgid_plural "Black Dragon Shells" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Recycler Unit CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Black Dragon Shell +#: lang/json/ARMOR_from_json.py msgid "" -"A series of filters and processors that is implanted in the user's digestive" -" system, allowing them to reclaim waste liquid and, to a lesser degree, " -"nutrients. The net effect is a greatly reduced need to eat and drink." +"An aura of black and green draconic energy, swirling around your body " +"protecting you and punishing those who strike you." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Remote Controller CBM" -msgid_plural "Remote Controller CBMs" +#: lang/json/ARMOR_from_json.py +msgid "spiritual armor" +msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Remote Controller CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A small module that connects to the user's brain and allows them to " -"interface with nearby devices with wireless capabilities." +#. ~ Description for spiritual armor +#: lang/json/ARMOR_from_json.py +msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Sonic Resonator CBM" -msgid_plural "Sonic Resonator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "auroral shell" +msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Sonic Resonator CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"This bionic module allows the user's entire body to resonate at very high " -"power, creating a short-range shockwave. While it will not do much damage " -"to creatures, solid objects such as walls and doors will be damaged." +#. ~ Description for auroral shell +#: lang/json/ARMOR_from_json.py +msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Olfactory Mask CBM" -msgid_plural "Olfactory Mask CBMs" +#: lang/json/BATTERY_from_json.py +msgid "test battery" +msgid_plural "test batteries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Olfactory Mask CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for test battery +#: lang/json/BATTERY_from_json.py msgid "" -"While this system is powered, the user's body will produce very little odor," -" making it nearly impossible for creatures to track them by scent." +"This is a testing item for the BATTERY item type. If you found one in game," +" it's a bug." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Electroshock Unit CBM" -msgid_plural "Electroshock Unit CBMs" +msgid "abstract bionic module" +msgid_plural "abstract bionic modules" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Electroshock Unit CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"While fighting unarmed, or with a weapon that conducts electricity, there is" -" a chance that a successful hit will shock the user's opponent, inflicting " -"extra damage and disabling them temporarily at the cost of some energy." -msgstr "" +msgid "abstract bionic module (npc usable)" +msgid_plural "abstract bionic modules (npc usable)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Shockwave Generator CBM" -msgid_plural "Shockwave Generator CBMs" +msgid "abstract faulty bionic module" +msgid_plural "abstract faulty bionic modules" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Shockwave Generator CBM +#. ~ Description for abstract faulty bionic module #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"This bionic module generates a powerful shockwave, knocking back all nearby " -"creatures. Targets are stunned briefly, take damage and additional stun " -"upon impact with impassable terrain, and knock back any creatures they " -"collide with." +msgid "This CBM is broken beyond repair, you can't do anything with it." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Synaptic Accelerator CBM" -msgid_plural "Synaptic Accelerator CBMs" +msgid "Adrenaline Pump CBM" +msgid_plural "Adrenaline Pump CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Synaptic Accelerator CBM +#. ~ Description for Adrenaline Pump CBM #: lang/json/BIONIC_ITEM_from_json.py -#, no-python-format msgid "" -"Bionic stimulators that enhance the nervous system, granting a 10% boost to " -"your speed." +"A stimulator system that is implanted alongside the adrenal glands, allowing" +" the user to trigger their body's adrenaline response at the cost of some " +"bionic power." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Muscle Augmentation CBM" -msgid_plural "Muscle Augmentation CBMs" +msgid "Active Defense System CBM" +msgid_plural "Active Defense System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Muscle Augmentation CBM +#. ~ Description for Active Defense System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Myomer fibers that enhance the muscular system, granting a +2 bonus to " -"strength." +"This bionic projects a thin forcefield around the user's body. Anything " +"attempting to penetrate this field has a chance of being deflected at the " +"cost of energy, reducing their ability to deal damage. Bullets will be " +"deflected more than swords and those in turn more than massive objects." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Autonomous Surgical Scalpels CBM" -msgid_plural "Autonomous Surgical Scalpels CBMs" +msgid "Alarm System CBM" +msgid_plural "Alarm System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Autonomous Surgical Scalpels CBM +#. ~ Description for Alarm System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A system of surgical grade scalpels that is implanted in the user's fingers." -" They allow for automated precise cuts and can be used as a high-quality " -"butchering tool." +"A motion-detecting alarm system will notice almost all movement within a " +"fifteen-foot radius, and will silently alert the user. This is very useful " +"during sleep, or if the user suspects a cloaked pursuer." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Anti-Glare Compensators CBM" -msgid_plural "Anti-Glare Compensators CBMs" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Anti-Glare Compensators CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of quick-reacting transition lenses that are installed over the user's" -" eyes. They negate glare penalties, partially protect from bright flashes, " -"and protect the eyes when welding." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Targeting System CBM" -msgid_plural "Targeting System CBMs" +msgid "Protective Lenses CBM" +msgid_plural "Protective Lenses CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Targeting System CBM +#. ~ Description for Protective Lenses CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This bionic module contains range finders and synchronizes the movement of " -"the user's eyes with their arms, to a degree. Shots they fire will be much " -"more accurate, particularly at long ranges." +"A bionic package that seals the user's eye sockets with highly protective " +"mirrored lenses and re-routes their tear ducts to their mouth. When the " +"user cries, they must spit out or swallow their tears." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Teleportation Unit CBM" -msgid_plural "Teleportation Unit CBMs" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Teleportation Unit CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This highly experimental unit folds space over short distances, instantly " -"transporting the user's body up to 25 feet in a random duration at the cost " -"of much power. Note that prolonged or frequent use may have dangerous side " -"effects." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Time Dilation CBM" -msgid_plural "Time Dilation CBMs" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Time Dilation CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"At the cost of all stored bionic power, the user may increase their body " -"speed and reactions dramatically, essentially freezing time. Violent or " -"rapid movements may cause damage due to friction." -msgstr "" - #: lang/json/BIONIC_ITEM_from_json.py -msgid "Integrated Toolset CBM" -msgid_plural "Integrated Toolset CBMs" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Integrated Toolset CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A surgically implanted set of tools - screwdriver, hammer, wrench, hacksaw, " -"drill, welder and heating elements. These can be used in place of many " -"tools when crafting." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" -"Chirurgicky implantovaná sada nástrojů: šroubovák, kladivo, montážní klíč, " -"pilka na železo, vrták, pájka a ohřívač. Jednoduše mohou být prožity místo " -"obyčejných nástrojů při práci." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Joint Torsion Ratchet CBM" -msgid_plural "Joint Torsion Ratchet CBMs" +msgid "Battery System CBM" +msgid_plural "Battery System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Joint Torsion Ratchet CBM +#. ~ Description for Battery System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Torsion ratchets that replace the user's joints to slowly generate power " -"when they move. These can be toggled to generate more power, but movement " -"will require more effort." +"A battery draining attachment to make use of the energy contained in normal," +" everyday batteries." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Joint Servo CBM" -msgid_plural "Joint Servo CBMs" +msgid "Monomolecular Blade CBM" +msgid_plural "Monomolecular Blade CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Joint Servo CBM +#. ~ Description for Monomolecular Blade CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of servomotors that get installed on leg joints to provide power-" -"assisted movement. They are optimized for running, but walking also " -"requires less effort while this bionic is active. However, when it's " -"offline it will hamper the user's movement." +"A deadly foot-long blade made of advanced material that is installed inside " +"the forearm, capable of being extended through the back of the user's wrist " +"at the cost of a small amount of power. Though exceptionally sharp, it will" +" prevent the user from holding anything else while extended." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Uncanny Dodge CBM" -msgid_plural "Uncanny Dodge CBMs" +msgid "Shotgun Arm CBM" +msgid_plural "Shotgun Arm CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Uncanny Dodge CBM +#. ~ Description for Shotgun Arm CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Bionic processors that augment the user's nervous system, allowing them to " -"dodge attacks beyond normal human capability, including bullets." +"A concealed, single shot 12 gauge shotgun that is implanted inside the left " +"forearm. Perfect in a pinch." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Unified Power System CBM" -msgid_plural "Unified Power System CBMs" +msgid "Blood Analysis CBM" +msgid_plural "Blood Analysis CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Unified Power System CBM +#. ~ Description for Blood Analysis CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A Unified Power System that is wired into the user's bionic power banks. " -"Objects that run on a UPS can now directly draw power from the bionic power " -"supply." +"Small sensors that are implanted in the user's heart, allowing them to " +"analyze their blood. This will detect many illnesses, drugs, and other " +"conditions." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Internal Chronometer CBM" -msgid_plural "Internal Chronometer CBMs" +msgid "Blood Filter CBM" +msgid_plural "Blood Filter CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Internal Chronometer CBM +#. ~ Description for Blood Filter CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This bionic module contains an atomic clock, complete with silent alarm " -"clock function." +"A filtration system that is installed in the heart and can actively filter " +"out chemical impurities, primarily drugs, with limited impact on viruses. " +"Note that it is not a targeted filter; ALL drugs in the system will be " +"affected." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Water Extraction Unit CBM" -msgid_plural "Water Extraction Unit CBMs" +msgid "Cable Charger System CBM" +msgid_plural "Cable Charger System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Water Extraction Unit CBM +#. ~ Description for Cable Charger System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This module contains nanotubes that are embedded in the palm of the hand to " -"pump any available fluid out of a dead body, cleanse it of impurities and " -"convert it into potable water. Water container not included." +"A complex port that is mounted above the hip. While active, it will " +"recharge bionic power when connected to a battery via jumper cable." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Intravenous Needletip CBM" -msgid_plural "Intravenous Needletip CBMs" +msgid "Subdermal Carbon Filament CBM" +msgid_plural "Subdermal Carbon Filament CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Intravenous Needletip CBM +#. ~ Description for Subdermal Carbon Filament CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A small tube with a retractable needle that terminates in a net of tiny " -"hoses instead of a plunger. Installed, it allows the user to draw " -"substances directly into their bloodstream akin to a regular syringe." +"A thin armor made of carbon nanotubes, implanted just beneath the skin. " +"This reduces bashing damage by 2 and cutting damage by 4." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Titanium Skeletal Bracing CBM" -msgid_plural "Titanium Skeletal Bracing CBMs" +msgid "Chain Lightning CBM" +msgid_plural "Chain Lightning CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Titanium Skeletal Bracing CBM +#. ~ Description for Chain Lightning CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of hinges, springs, and other synthetic augments for the skeletal " -"structure. These artificial enhancers strengthen the knees and elbows, " -"allowing the user to carry more weight." +"A chain lightning generator that emits a blast of lightning at a target, " +"leaving a trail of lightning in its wake and jumping to additional targets " +"within 4 tiles of the previous target." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Taste Modifier CBM" -msgid_plural "Taste Modifier CBMs" +msgid "Bionic Claws CBM" +msgid_plural "Bionic Claws CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Taste Modifier CBM +#. ~ Description for Bionic Claws CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of highly sensitive sensors implanted in the user's mouth, combined " -"with a sophisticated analyzer. While active, it will block all unpleasant " -"taste and texture at the cost of bionic energy." +"Vicious, retractable claws that are implanted inside the user's fingers. " +"These do considerable cutting damage, but prevent the user from holding " +"anything else while extended." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Soporific Induction CBM" -msgid_plural "Soporific Induction CBMs" +msgid "Internal Climate Control CBM" +msgid_plural "Internal Climate Control CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Soporific Induction CBM +#. ~ Description for Internal Climate Control CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A microscopic electrode designed to gently stimulate a particular cluster of" -" neurons in the hypothalamus, helping the user to fall asleep." +"A network of thermal piping which eases the effects of high and low ambient " +"temperatures once activated." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Squeaky Ankles" -msgid_plural "Squeaky Ankles" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Cloaking System CBM" +msgid_plural "Cloaking System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Cloaking System CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "A pair of defective bionics that make squeaking noises." +msgid "" +"This high-power system uses a set of cameras and LEDs to make the user blend" +" into their surroundings, rendering them fully invisible to eyes and optical" +" sensors. However, this doesn't prevent detection from other means such as " +"infrared, sonar, etc." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Pieces Of Junk" -msgid_plural "Pieces of Junk" +msgid "Close Quarters Battle CBM" +msgid_plural "Close Quarters Battle CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pieces Of Junk +#. ~ Description for Close Quarters Battle CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A jumble of broken metal pieces that were removed during reconstructive " -"surgery." +"A set of bionic processors and databanks, loaded with martial arts combat " +"programs. Whilst active, the CQB module will improve the user's hand-to-" +"hand combat skills, but prevents them from improving them through combat " +"experience." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Acidic Leaking CBM" -msgid_plural "Acidic Leaking CBMs" +msgid "Wired Reflexes CBM" +msgid_plural "Wired Reflexes CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Acidic Leaking CBM +#. ~ Description for Wired Reflexes CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This CBM has been breached in several places and some acid is leaking from " -"it." +"Bionic nerve stimulators that greatly enhance reaction times, granting a +2 " +"bonus to dexterity." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Faulty Electric System" -msgid_plural "Faulty Electric Systems" +msgid "Expanded Digestive System CBM" +msgid_plural "Expanded Digestive System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Faulty Electric System +#. ~ Description for Expanded Digestive System CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "This CBM is a mess of naked wire and burnt resistors." +msgid "" +"This module contains three synthetic stomachs and industrial-grade " +"intestines. Not only will these extract much more nutrition from food, but " +"also increase the user's resistance to foodborne illness, and occasionally " +"allow the digestion of rotten food." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Electrical Drain" -msgid_plural "Electrical Drains" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Enhanced Hearing CBM" +msgid_plural "Enhanced Hearing CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Electrical Drain +#. ~ Description for Enhanced Hearing CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This CBM was wired incorrectly and would drain power from any system " -"connected to it." +"While this bionic is active, the user's hearing will be drastically " +"improved, allowing them to hear ten times better than the average person. " +"Additionally, high-intensity sounds will be automatically dampened before " +"they can damage their hearing." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Itchy Metal Thing" -msgid_plural "Itchy Metal Things" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Directional EMP CBM" +msgid_plural "Directional EMP CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Itchy Metal Thing +#. ~ Description for Directional EMP CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"You can't recognize what this is supposed to be, but it's a very awkward " -"thing to have in one's body." +"Small parabolic EMP field generators that are mounted in the palm of the " +"user's right hand. These can be used to instantly fire a wide, but short-" +"ranged blast which will disable electronics and robots." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Glowy Thing" -msgid_plural "Glowy Things" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "EMP Projector CBM" +msgid_plural "EMP Projector CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Glowy Thing +#. ~ Description for EMP Projector CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "It's a… thing? And it glows, at least it did when it was plugged in." +msgid "" +"A ranged EMP generator system that is implanted in the user's right arm and " +"hand. The system fires precise, single-target pulses that require time to " +"aim. Extremely effective against electronic targets but mostly useless " +"otherwise." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Leaky Bionic" -msgid_plural "Leaky Bionics" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Ethanol Burner CBM" +msgid_plural "Ethanol Burner CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Leaky Bionic +#. ~ Description for Ethanol Burner CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A mess of pierced pipes and broken seals, something unpleasant is leaking " -"from it." +"A reactor that burns alcohol as fuel in an extremely efficient reaction. It" +" can store up to 500ml and accepts ethanol, methanol and denatured alcohol " +"as fuel." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Noisemaker" -msgid_plural "Noisemakers" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Aero-Evaporator CBM" +msgid_plural "Aero-Evaporator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Noisemaker -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Aero-Evaporator CBM +#. ~ Description for Aero-Evaporator +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"A malfunctioning bionic. When powered, it occasionally emits a loud burst " -"of noise." +"This unit draws moisture from the surrounding air, which slowly trickles " +"directly into your blood stream. It may fail in very dry environments." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Bionic Nostril" -msgid_plural "Bionic Nostrils" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Diamond Cornea CBM" +msgid_plural "Diamond Cornea CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Bionic Nostril +#. ~ Description for Diamond Cornea CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This thing was up someone's nose, they're probably glad to be rid of it." +"A set of diamond corneas which greatly enhance the user's vision, granting a" +" +2 bonus to perception." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Bionic Visual Impairment" -msgid_plural "Bionic Visual Impairments" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Telescopic Eyes CBM" +msgid_plural "Telescopic Eyes CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Bionic Visual Impairment +#. ~ Description for Telescopic Eyes CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "A defective bionic that impairs vision." +msgid "" +"An array of high-powered, auto-focusing lenses that replaces much of the " +"material in the inner eye. This fixes any vision problems and allows for an" +" increased vision range akin to binoculars." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Power Overload" -msgid_plural "Power Overloads" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Facial Distortion CBM" +msgid_plural "Facial Distortion CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Power Overload +#. ~ Description for Facial Distortion CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A bunch of defective power circuits that are prone to short-circuiting." +"Through controlled application of electrochemical impulses, this bionic " +"module lets the user alter their facial structure so as to subtly affect the" +" reactions of others. This grants a bonus to all social interactions." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Bionic Short Circuit" -msgid_plural "Bionic Short Circuits" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Dielectric Capacitance System CBM" +msgid_plural "Dielectric Capacitance System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Bionic Short Circuit +#. ~ Description for Dielectric Capacitance System CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "This bionic is poorly wired and occasionally short-circuits." +msgid "" +"A network of miniature piezoelectric capacitors, implanted throughout the " +"body to protect from external electrical discharge." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Endocrine Enervator" -msgid_plural "Endocrine Enervators" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Fingerhack CBM" +msgid_plural "Fingerhack CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Endocrine Enervator +#. ~ Description for Fingerhack CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This malfunctioning bionic causes fatigue by altering the unfortunate user's" -" brain chemistry." +"A miniature electrohack, surgically embedded in a finger of the right hand." +" This is an all-purpose hacking unit used to override control panels and " +"the like, but not computers. Computer proficiency is important, and a " +"failed use may cause damage." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Synaptic Regeneration System CBM" -msgid_plural "Synaptic Regeneration System CBMs" +msgid "Flashbang Generator CBM" +msgid_plural "Flashbang Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Synaptic Regeneration System CBM +#. ~ Description for Flashbang Generator CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An electromagnetic stimulator has been surgically implanted on the back of " -"your head and along your spine, continually draining power. As long as it's" -" active, you won't become sleep deprived; and if you're sleep deprived " -"already, it will boost the rate of recovery." +"A combination of LEDs and speakers that create a flash and sound comparable " +"to a flashbang grenade, deafening and blinding nearby enemies." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Motor Control Overstimulator" -msgid_plural "Motor Control Overstimulators" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Cranial Flashlight CBM" +msgid_plural "Cranial Flashlight CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Motor Control Overstimulator +#. ~ Description for Cranial Flashlight CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"The result of poor configuration, this bionic module frequently causes " -"debilitating muscle spasms." +msgid "A small, but powerful LED flashlight that is mounted between the eyes." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Wire-Induced Stiffness" -msgid_plural "Wire-Induced Stiffnesses" +msgid "LED Tattoo" +msgid_plural "LED Tattoos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wire-Induced Stiffness +#. ~ Description for LED Tattoo #: lang/json/BIONIC_ITEM_from_json.py -msgid "A length of poorly installed wiring that would cause stiffness." +msgid "" +"An LED display implanted beneath the epidermis that can display patterns or " +"pictures through the skin. When active it glows dimly, providing a very " +"small amount of light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Self-Locking Thumbs" -msgid_plural "Self-Locking Thumbs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Integrated Dosimeter CBM" +msgid_plural "Integrated Dosimeter CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Integrated Dosimeter CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "A pair of faulty, self-locking thumb bionics." +msgid "" +"Small radiation sensors that are implanted throughout the body, allowing the" +" user to analyze their level of absorbed radiation. They will also alert " +"the user whenever exposed to environmental radiation." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Visual Disruptor" -msgid_plural "Visual Disruptors" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Respirator CBM" +msgid_plural "Respirator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Visual Disruptor +#. ~ Description for Respirator CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A pair of defective ocular bionics that cause visual distortion and " -"pixelation." +"A complex respiration augmentation system that increases the user's maximal " +"oxygen uptake and allows for underwater breathing akin to gills. Will " +"automatically activate if the user is drowning." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Voice Remodulator" -msgid_plural "Voice Remodulators" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Terranian Sonar CBM" +msgid_plural "Terranian Sonar CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Voice Remodulator +#. ~ Description for Terranian Sonar CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Part of the autodoc's 'Cyborg Identity Package', this bionic gives the user " -"a creepy robot voice." +"Precision sonar equipment, implanted in the feet to allow the detection of " +"below-ground movement, buried traps, and unstable terrain." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Solar Panels CBM" -msgid_plural "Solar Panels CBMs" +msgid "Heat Drain CBM" +msgid_plural "Heat Drain CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Solar Panels CBM +#. ~ Description for Heat Drain CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Installed on your back is a set of retractable solar panels. When in direct" -" sunlight, they will automatically deploy and slowly recharge your power " -"level." +"While fighting unarmed against a warm-blooded opponent, there is a chance " +"that a successful hit will drain body heat, inflicting a small amount of " +"extra damage, and recharging the user's bionic power reserves slightly." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Deployable Grenade Launcher CBM" -msgid_plural "Deployable Grenade Launcher CBMs" +msgid "Thermal Dissipation CBM" +msgid_plural "Thermal Dissipation CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Deployable Grenade Launcher CBM +#. ~ Description for Thermal Dissipation CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A small, folding tube that attaches to your right arm. Once implanted, it " -"can serve as a portable, integrated tool for firing 40mm grenades and " -"canisters." +"Powerful heatsinks and supermaterials are woven into the user's flesh. " +"While powered, this system will prevent external heat damage up to 2000 " +"degrees Fahrenheit. Note that this does not affect the internal body " +"temperature." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Linguistic Coprocessor CBM" -msgid_plural "Linguistic Coprocessor CBMs" +msgid "Hydraulic Muscles CBM" +msgid_plural "Hydraulic Muscles CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Linguistic Coprocessor CBM +#. ~ Description for Hydraulic Muscles CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A microcomputer installed into the left hemisphere of your brain to increase" -" the speed that it processes language. When installed, it provides a " -"passive boost to reading speed." +"A hydraulic muscle support system that when active, increases strength by " +"20." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Dopamine Stimulators CBM" -msgid_plural "Dopamine Stimulators CBMs" +msgid "Infrared Vision CBM" +msgid_plural "Infrared Vision CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dopamine Stimulators CBM +#. ~ Description for Infrared Vision CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of tiny bionic nerve stimulators that install into the reward center " -"of your brain. When run with bionic power, it periodically releases a hit " -"of dopamine and other reward chemicals, inducing a state of euphoria and " -"suppressing fear." +"A bionic module that extends the range of vision into the infrared, allowing" +" the user to see warm-blooded creatures in the dark and through smoke." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Counteractive Reflexes CBM" -msgid_plural "Counteractive Reflexes CBMs" +msgid "Cerebral Booster CBM" +msgid_plural "Cerebral Booster CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Counteractive Reflexes CBM -#. ~ Description for Counteractive Reflexes -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Cerebral Booster CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Cybernetic stimulators installed across your nervous system boost your " -"reflexes whenever you are hit in melee, granting you an extra action. This " -"bionic must be active to function." +"Bionic coprocessors that are implanted in the brain, granting a +2 bonus to " +"intelligence." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Melee Optimization Unit CBM" -msgid_plural "Melee Optimization Unit CBMs" +msgid "Finger-Mounted Laser CBM" +msgid_plural "Finger-Mounted Laser CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Melee Optimization Unit CBM +#. ~ Description for Finger-Mounted Laser CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An implanted AI executes the optimal followup for each of your melee " -"strikes, allowing you to chain them with unnatural speed and grace. This " -"bionic must be active to function." +"A small, high-powered laser that is embedded in the fingertip. This long " +"range weapon is not incredibly damaging, but is very accurate, and has the " +"potential to start fires." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Neurosoft: Aeronautics CBM" -msgid_plural "Neurosoft: Aeronautics CBMs" +msgid "Leukocyte Breeder System CBM" +msgid_plural "Leukocyte Breeder System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Neurosoft: Aeronautics CBM -#. ~ Description for Neurosoft: Aeronautics -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Leukocyte Breeder System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A brain implant that grants instinctual knowledge about the operation of " -"flying machines." +"Bionic stimulators which augment the user's haematopoiesis system, allowing " +"them to accelerate white blood cell production using bionic power. It is " +"designed for continuous use and may cause unpleasant side effects when " +"turned off." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Cranium Bomb" -msgid_plural "Cranium Bombs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Finger Lighter CBM" +msgid_plural "Finger Lighter CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cranium Bomb +#. ~ Description for Finger Lighter CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A bomb installed where your spine meets your brain stem. It's on a timer " -"from installation and you don't have the codes to reset the timer." +"Powerful fire starters which extend from the tip of both hands' index " +"fingers." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Skullgun CBM" -msgid_plural "Skullgun CBMs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Fingerpick CBM" +msgid_plural "Fingerpick CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Skullgun CBM -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Fingerpick CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Concealed in your head is a single shot .40 pistol. Activate the bionic to " -"fire and reload the skullgun." +"An electronic lockpick that is embedded in a fingertip. This automatic " +"system will quickly unlock all but the most advanced key locks without any " +"skill required on the part of the user." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Implanted translocator CBM" -msgid_plural "Implanted translocator CBMs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Electromagnetic Unit CBM" +msgid_plural "Electromagnetic Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Implanted translocator CBM +#. ~ Description for Electromagnetic Unit CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An experimental teleportation system carefully weaved into bone marrow and " -"coiled alongside the skeletal system. It allows its user to safely and " -"readily teleport towards a previously activated telepad." +"A powerful electromagnet that is implanted into the user's right hand, " +"allowing them to indiscriminately pull all nearby magnetic objects towards " +"them. Unlucky bystanders might be injured or killed by flying objects." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Emergency Insulation" -msgid_plural "Emergency Insulations" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Nictating Membrane CBM" +msgid_plural "Nictating Membrane CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Emergency Insulation +#. ~ Description for Nictating Membrane CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A system designed to prevent instantaneous frostbite in workers exposed to " -"things like hard vacuum and liquid nitrogen." +"A thin membrane that closes over the eyes while underwater, negating any " +"vision penalties." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Weak Energy Field CBM" -msgid_plural "Weak Energy Field CBMs" +msgid "Enhanced Memory Banks CBM" +msgid_plural "Enhanced Memory Banks CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Weak Energy Field CBM +#. ~ Description for Enhanced Memory Banks CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Imagine a computer inside your body playing pong against the universe. The " -"paddles are made of energy fields and how it causes this to happen are trade" -" secrets. -From the owners manual of HawkingCorps EnergyField Mark I. This" -" field is rated to reduce bashing and cut damage as viewed in your HUD by 5 " -"points." +"A set of highly-advanced quantum storage drives used to enhance memory. " +"While active, they increase the rate that the user learns skills, and give " +"them near-perfect memory of skills and terrain." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Combat Rated Energy Field CBM" -msgid_plural "Combat Rated Energy Field CBMs" +msgid "Metabolic Interchange CBM" +msgid_plural "Metabolic Interchange CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Combat Rated Energy Field CBM +#. ~ Description for Metabolic Interchange CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"The HawkingCorps EnergyField Mark 2 was designed for police actions during " -"food riots and other civilian uprisings. It has proven cabaple of " -"protecting against most improvised weapons. This field is rated to reduce " -"bashing and cut damage as viewed in your HUD by 15 points." +"This module interconnects the user's digestive system and power supply, " +"letting them replenish bionic energy by burning calories." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Debt Collection Agent Personal EnergyField CBM" -msgid_plural "Debt Collection Agent Personal EnergyField CBMs" +msgid "Weather Reader CBM" +msgid_plural "Weather Reader CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Debt Collection Agent Personal EnergyField CBM +#. ~ Description for Weather Reader CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This class of personal energy field often sees action on both sides of the " -"vicious ship-to-ship boarding fights that are common with both repossession " -"and piracy. It remains practically impenetrable to melee weapons that lack " -"sharp piercing points. This field is rated to reduce bashing and cut damage" -" as viewed in your HUD by 25 points." +"A multitude of scientific instruments and sensors collect environmental " +"data. The data is compiled and presented as a simple readout of the current" +" weather. It also passively tells the user their external temperature." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Kinetic Attenuation Field CBM" -msgid_plural "Kinetic Attenuation Field CBMs" +msgid "Repair Nanobots CBM" +msgid_plural "Repair Nanobots CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Kinetic Attenuation Field CBM +#. ~ Description for Repair Nanobots CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A personal kinetic attenuation field that slows incoming projectiles by " -"converting their kinetic energy into bursts of visible light. Although this" -" version is not powerful enough to defeat most pistol or rifle cartridges by" -" itself, it greatly increases survival odds when combined with traditional " -"ballistic armor. This field is rated to reduce ballistic and piercing " -"damage as viewed in your HUD by 10 points." +"A fleet of tiny dormant robots. While activated they will flit about the " +"user's body, repairing damage and stopping bleeding at the cost of power." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Pattern-U15 Attenuation Field CBM" -msgid_plural "Pattern-U15 Attenuation Field CBMs" +msgid "Artificial Night Generator CBM" +msgid_plural "Artificial Night Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pattern-U15 Attenuation Field CBM +#. ~ Description for Artificial Night Generator CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A military grade kinetic attenuation system developed for use within UICA's " -"special service branches. Although much more effective than anything that " -"could be conceived with current technology, it remains a pale imitation of " -"the Hyperspace Age systems it was reverse engineered from. A side effect " -"modern engineering seems unable to address is the tendency for this unit to " -"release electrical fields when hit. This field is rated to reduce ballistic" -" and piercing damage as viewed in your HUD by 20 points" +"When active, this bionic eliminates all light within a 15 tile radius " +"through destructive interference." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Kinetic annulment system CBM" -msgid_plural "Kinetic annulment system CBMs" +msgid "Implanted Night Vision CBM" +msgid_plural "Implanted Night Vision CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Kinetic annulment system CBM +#. ~ Description for Implanted Night Vision CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A kinetic attenuation system salvaged from a pre-discontinuity robotic " -"warframe, crudely adapted for compatibility with biological hosts. Powerful" -" enough to completely stop most rifle cartridges. This field is rated to " -"reduce ballistic and piercing damage as viewed in your HUD by 40 points" +"This bionic module modifies the user's eyes to amplify existing light, " +"allowing them to see in the dark." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Precision Solderers CBM" -msgid_plural "Precision Solderers CBMs" +msgid "Offensive Defense System CBM" +msgid_plural "Offensive Defense System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Precision Solderers CBM +#. ~ Description for Offensive Defense System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of tiny electronics tools, including soldering irons and wire cutters." -" They serve no purpose on their own, but are required for crafting bionics." +"A thin forcefield gets projected around the user's body, continually " +"draining power. This field does not deflect attacks, but rather delivers a " +"strong shock, damaging unarmed attackers and those with a conductive weapon." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Wind Turbine CBM" -msgid_plural "Wind Turbine CBMs" +msgid "Sensory Dulling CBM" +msgid_plural "Sensory Dulling CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wind Turbine CBM -#. ~ Description for Wind Turbines -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Sensory Dulling CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Installed on your body is a set of small retractable wind turbines. When " -"activated, they will deploy and slowly harvest wind power to recharge your " -"power level." +"This module lets the user's nervous system inhibit pain signals, allowing " +"them to dull their senses at will. However, the use of this system may " +"cause delayed reaction times and drowsiness." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Ionic Overload Generator CBM" -msgid_plural "Ionic Overload Generator CBMs" +msgid "Power Armor Interface CBM" +msgid_plural "Power Armor Interface CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ionic Overload Generator CBM -#. ~ Description for Ionic Overload Generator -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Power Armor Interface CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A powerful ion energy generator is implanted on your chest. Fires a " -"powerful, ever-expanding energy blast. The resulting blast ignites oxygen " -"creating fires as it moves and an explosion on impact. Close range use is " -"highly discouraged." +"Interfaces the user's bionic power system with the internal charging port on" +" suits of power armor, allowing them to draw from the user's bionic power " +"banks." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Power Armor Mk. II Interface CBM" +msgid_plural "Power Armor Mk. II Interface CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Blood Power Generator CBM +#. ~ Description for Power Armor Mk. II Interface CBM #: lang/json/BIONIC_ITEM_from_json.py 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." +"Interfaces the user's bionic power system with the internal charging port on" +" suits of power armor, allowing them to draw from the user's bionic power " +"banks. Twice as efficient as the Mk. I model. The Mk. II was designed by " +"DoubleTech Inc., to meet the popularity of the Mk. II power armor series." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Power Storage CBM" +msgid_plural "Power Storage CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Crystallized Mana Nose Replacement -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Power Storage CBM +#: lang/json/BIONIC_ITEM_from_json.py 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." +"A Compact Bionics Module that upgrades the user's power capacity by 100 " +"units. Having at least one of these is a prerequisite to using powered " +"bionics. The user will also need a power supply, found in various CBMs." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Museum of All Things Awesome and That Go Boom" -msgid_plural "copies of The Museum of All Things Awesome and That Go Boom" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Power Storage CBM Mk. II" +msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Museum of All Things Awesome and That Go Boom -#: lang/json/BOOK_from_json.py +#. ~ Description for Power Storage CBM Mk. II +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"The Museum of All Things Awesome and That Go Boom is an anthology of science" -" fiction featuring blunt force trauma, explosions, adventure, derring-do, " -"tigers, Martians, zombies, fanged monsters, dinosaurs (alien and domestic), " -"ray guns, rocket ships, and anthropomorphized marshmallows. Published by " -"Upper Rubber Boot Books." +"A Compact Bionics Module developed at DoubleTech Industries as a replacement" +" for the highly successful Power Storage CBM. Increases the user's power " +"capacity by 250 units." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Sunvault: Stories of Solarpunk & Eco-Speculation" -msgid_plural "copies of Sunvault" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Probability Travel CBM" +msgid_plural "Probability Travel CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Sunvault: Stories of Solarpunk & Eco-Speculation -#: lang/json/BOOK_from_json.py +#. ~ Description for Probability Travel CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Sunvault is the first English-language anthology to broadly collect " -"solarpunk short fiction, artwork, and poetry. A new genre for the 21st " -"Century, solarpunk is a revolution against despair. Focusing on solutions " -"to environmental disasters, solarpunk envisions a future of green, " -"sustainable energy used by societies that value inclusiveness, cooperation, " -"and personal freedom. Published by Upper Rubber Boot Books." +"Increases the body's wavelength, allowing the user to quantum tunnel through" +" walls, reappearing on the other side. Power drain in standby is minimal, " +"but each tile tunneled through costs 250 bionic power." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Sharp & Sugar Tooth" -msgid_plural "copies of Sharp & Sugar Tooth" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Air Filtration System CBM" +msgid_plural "Air Filtration System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Sharp & Sugar Tooth -#: lang/json/BOOK_from_json.py +#. ~ Description for Air Filtration System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Sharp & Sugar Tooth: Women Up To No Good is a horror anthology of dark " -"fiction and darker appetites, edited by Octavia Cade. Containing 22 stories" -" of “bad” women, and “good” women who just haven’t been caught yet, it " -"features 22 fearless writers who identify as female, non-binary, or a " -"marginalized sex or gender identity. Published by Upper Rubber Boot Books." +"An advanced filtration system that is implanted in the trachea. If toxins, " +"or airborne diseases find their way into the windpipe, the filter will " +"attempt to remove them." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Broad Knowledge" -msgid_plural "copies of Broad Knowledge" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Radiation Scrubber System CBM" +msgid_plural "Radiation Scrubber System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Broad Knowledge -#: lang/json/BOOK_from_json.py +#. ~ Description for Radiation Scrubber System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Broad Knowledge: 35 Women Up To No Good is a feminist anthology of dark " -"fiction and darker knowledge, edited by Joanne Merriam. Containing 35 " -"stories of “bad” women, and “good” women who just haven’t been caught yet. " -"Published by Upper Rubber Boot Books." +"A system of advanced piezomechanical blood filters that are implanted " +"throughout your body, allowing the user to purge themself of absorbed " +"radiation at the cost of some bionic power." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Choose Wisely" -msgid_plural "copies of Choose Wisely" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Railgun CBM" +msgid_plural "Railgun CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Choose Wisely -#: lang/json/BOOK_from_json.py +#. ~ Description for Railgun CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Choose Wisely: 35 Women Up To No Good is a feminist anthology of dark " -"fiction, co-edited by H. L. Nelson and Joanne Merriam. Containing 35 " -"stories of “bad” women, and “good” women who just haven’t been caught yet, " -"it features Joyce Carol Oates, Aimee Bender, Diane Cook, and 33 other " -"fearless women writers. Published by Upper Rubber Boot Books." +"EM field generators in the user's arms increase the range and damage of " +"thrown magnetic objects at a cost of 1 bionic power per throw. They will " +"create a trail of electricity that can cause additional damage." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Apocalypse Now" -msgid_plural "copies of Apocalypse Now" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Fingertip Razors CBM" +msgid_plural "Fingertip Razors CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Apocalypse Now -#: lang/json/BOOK_from_json.py +#. ~ Description for Fingertip Razors CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Every society and every generation has its version of the apocalypse: swine " -"flu, genetic mutation, global warming, nuclear fallout, the second coming, " -"peak oil, mass extinction, giant irradiated ants, zombies… Apocalypse Now: " -"Poems and Prose from the End of Days is the first anthology of its kind to " -"bring together the poetry and prose of some of America’s finest (though not " -"always most well-known) literary voices with an eye for the literary and the" -" popular, for story and lyric, for the past and the future, for the " -"psychological and the physical, for the real and the fantastic. Published " -"by Upper Rubber Boot Books." +"A set of ten double-edged, four centimeter long razor-sharp claws that are " +"implanted underneath the fingernails. These will deal a small amount of " +"unarmed slashing damage whenever the user's fingertips are uncovered." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "How to Live on Other Planets: A Handbook for Aspiring Aliens" -msgid_plural "copies of How to Live on Other Planets" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Gasoline Fuel Cell CBM" +msgid_plural "Gasoline Fuel Cell CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for How to Live on Other Planets: A Handbook for Aspiring -#. Aliens -#: lang/json/BOOK_from_json.py +#. ~ Description for Gasoline Fuel Cell CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"How to Live on Other Planets: A Handbook for Aspiring Aliens explores the " -"immigrant experience in a science fiction setting, with exciting fiction and" -" poetry from some of the genre’s best writers. Published by Upper Rubber " -"Boot Books." +"A small gasoline fuel cell able to convert gasoline to bionic power. It's " +"connected to a diffuse network of bio-plastic bladders able to hold up to " +"500 ml of gasoline." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "archery skill training abstract" -msgid_plural "archery skill training abstracts" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Recycler Unit CBM" +msgid_plural "Recycler Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for archery skill training abstract -#: lang/json/BOOK_from_json.py -msgid "template for heavy books that confer archery skill training" +#. ~ Description for Recycler Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A series of filters and processors that is implanted in the user's digestive" +" system, allowing them to reclaim waste liquid and, to a lesser degree, " +"nutrients. The net effect is a greatly reduced need to eat and drink." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Lessons for the Novice Bowhunter" -msgid_plural "copies of Lessons for the Novice Bowhunter" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Remote Controller CBM" +msgid_plural "Remote Controller CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Lessons for the Novice Bowhunter -#: lang/json/BOOK_from_json.py +#. ~ Description for Remote Controller CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This hefty paperback book contains all the information needed for novice " -"archers to get started hunting with a variety of bows and crossbows." +"A small module that connects to the user's brain and allows them to " +"interface with nearby devices with wireless capabilities." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Zen and the Art of Archery" -msgid_plural "copies of Zen and the Art of Archery" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Sonic Resonator CBM" +msgid_plural "Sonic Resonator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Zen and the Art of Archery -#: lang/json/BOOK_from_json.py +#. ~ Description for Sonic Resonator CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This massive book contains a wealth of vital information for the novice " -"archer." +"This bionic module allows the user's entire body to resonate at very high " +"power, creating a short-range shockwave. While it will not do much damage " +"to creatures, solid objects such as walls and doors will be damaged." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Archery for Kids" -msgid_plural "issues of Archery for Kids" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Olfactory Mask CBM" +msgid_plural "Olfactory Mask CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Archery for Kids -#: lang/json/BOOK_from_json.py +#. ~ Description for Olfactory Mask CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Will you be able to place the arrow right into the bullseye? It is not that" -" easy, but once you know how it's done, you will have a lot of fun with " -"archery." +"While this system is powered, the user's body will produce very little odor," +" making it nearly impossible for creatures to track them by scent." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "car buyer's guide" -msgid_plural "car buyer's guides" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Electroshock Unit CBM" +msgid_plural "Electroshock Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for car buyer's guide -#: lang/json/BOOK_from_json.py +#. ~ Description for Electroshock Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Normally this glossy, ad-filled magazine about cars would be pointless, but " -"it has a series of articles on haggling techniques." +"While fighting unarmed, or with a weapon that conducts electricity, there is" +" a chance that a successful hit will shock the user's opponent, inflicting " +"extra damage and disabling them temporarily at the cost of some energy." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "How to Succeed in Business" -msgid_plural "copies of How to Succeed in Business" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Shockwave Generator CBM" +msgid_plural "Shockwave Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for How to Succeed in Business -#: lang/json/BOOK_from_json.py -msgid "Useful if you want to get a good deal when purchasing goods." +#. ~ Description for Shockwave Generator CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"This bionic module generates a powerful shockwave, knocking back all nearby " +"creatures. Targets are stunned briefly, take damage and additional stun " +"upon impact with impassable terrain, and knock back any creatures they " +"collide with." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Advanced Economics" -msgid_plural "copies of Advanced Economics" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Synaptic Accelerator CBM" +msgid_plural "Synaptic Accelerator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Advanced Economics -#: lang/json/BOOK_from_json.py -msgid "A college textbook on economics." +#. ~ Description for Synaptic Accelerator CBM +#: lang/json/BIONIC_ITEM_from_json.py +#, no-python-format +msgid "" +"Bionic stimulators that enhance the nervous system, granting a 10% boost to " +"your speed." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Batter Up!" -msgid_plural "issues of Batter Up!" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Muscle Augmentation CBM" +msgid_plural "Muscle Augmentation CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Batter Up! -#: lang/json/BOOK_from_json.py +#. ~ Description for Muscle Augmentation CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A baseball magazine that focuses on batting tips. There are lots of " -"colorful, full-page photos of skilled athletes demonstrating proper form and" -" technique." +"Myomer fibers that enhance the muscular system, granting a +2 bonus to " +"strength." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "tactical baton defense manual" -msgid_plural "tactical baton defense manuals" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Autonomous Surgical Scalpels CBM" +msgid_plural "Autonomous Surgical Scalpels CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tactical baton defense manual -#: lang/json/BOOK_from_json.py +#. ~ Description for Autonomous Surgical Scalpels CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An informative guide to self-defense using clubs and batons. Aimed at the " -"law enforcement and military market, it is packed with time tested, no-" -"nonsense information and written to be understandable for beginners." +"A system of surgical grade scalpels that is implanted in the user's fingers." +" They allow for automated precise cuts and can be used as a high-quality " +"butchering tool." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Advanced Physical Chemistry" -msgid_plural "copies of Advanced Physical Chemistry" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Anti-Glare Compensators CBM" +msgid_plural "Anti-Glare Compensators CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Advanced Physical Chemistry -#: lang/json/BOOK_from_json.py +#. ~ Description for Anti-Glare Compensators CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A university-level textbook on advanced principles of physical chemistry and" -" all its branches: thermochemistry, electrochemistry, solid-state chemistry," -" photochemistry, quantum chemistry et cetera." +"A set of quick-reacting transition lenses that are installed over the user's" +" eyes. They negate glare penalties, partially protect from bright flashes, " +"and protect the eyes when welding." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Modern Tanner" -msgid_plural "copies of The Modern Tanner" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Targeting System CBM" +msgid_plural "Targeting System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Modern Tanner -#: lang/json/BOOK_from_json.py +#. ~ Description for Targeting System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An in-depth and easy to read guide that details a very modern take on the " -"ancient art of leather tanning." +"This bionic module contains range finders and synchronizes the movement of " +"the user's eyes with their arms, to a degree. Shots they fire will be much " +"more accurate, particularly at long ranges." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "PE050 \"Alpha\": Preliminary Report" -msgid_plural "copies of PE050 \"Alpha\": Preliminary Report" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Teleportation Unit CBM" +msgid_plural "Teleportation Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for PE050 "Alpha": Preliminary Report -#: lang/json/BOOK_from_json.py +#. ~ Description for Teleportation Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This sheaf of papers--dated two weeks before all this started--describes " -"some new chemical formula, and its effects on human subjects. It's stamped " -"\"APPROVED\"…" +"This highly experimental unit folds space over short distances, instantly " +"transporting the user's body up to 25 feet in a random duration at the cost " +"of much power. Note that prolonged or frequent use may have dangerous side " +"effects." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "lab journal-Dionne" -msgid_plural "lab journals-Dionne" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Time Dilation CBM" +msgid_plural "Time Dilation CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lab journal-Dionne -#: lang/json/BOOK_from_json.py +#. ~ Description for Time Dilation CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This team logbook details several varieties of mutagenic experiments, " -"focusing on those derived from various Earth fauna. The team seems quite " -"enthusiastic--if not eager--about their results." +"At the cost of all stored bionic power, the user may increase their body " +"speed and reactions dramatically, essentially freezing time. Violent or " +"rapid movements may cause damage due to friction." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "PE065 \"Chimera\": Best Practices" -msgid_plural "copies of PE065 \"Chimera\": Best Practices" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Integrated Toolset CBM" +msgid_plural "Integrated Toolset CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for PE065 "Chimera": Best Practices -#: lang/json/BOOK_from_json.py +#. ~ Description for Integrated Toolset CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This sheaf of papers describes a new chemical formula in detail and supplies" -" instructions for its use as some sort of… crowd-control catalyst? That " -"can't be right…" +"A surgically implanted set of tools - screwdriver, hammer, wrench, hacksaw, " +"drill, welder and heating elements. These can be used in place of many " +"tools when crafting." msgstr "" +"Chirurgicky implantovaná sada nástrojů: šroubovák, kladivo, montážní klíč, " +"pilka na železo, vrták, pájka a ohřívač. Jednoduše mohou být prožity místo " +"obyčejných nástrojů při práci." -#: lang/json/BOOK_from_json.py -msgid "lab journal-Smythe" -msgid_plural "lab journals-Smythe" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Joint Torsion Ratchet CBM" +msgid_plural "Joint Torsion Ratchet CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lab journal-Smythe -#: lang/json/BOOK_from_json.py +#. ~ Description for Joint Torsion Ratchet CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This team logbook details several varieties of mutagenic experiments, " -"focusing on those derived from flesh contaminated with XE037. The results " -"look promising but the procurement methods seem awfully vague…" +"Torsion ratchets that replace the user's joints to slowly generate power " +"when they move. These can be toggled to generate more power, but movement " +"will require more effort." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "standpipe maintenance log" -msgid_plural "standpipe maintenance logs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Joint Servo CBM" +msgid_plural "Joint Servo CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for standpipe maintenance log -#: lang/json/BOOK_from_json.py +#. ~ Description for Joint Servo CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This binder details the scheduled maintenance for several plumbing systems " -"throughout the facility. However, some of the log sheets seem to be filled " -"with… a chemical formula?" +"A set of servomotors that get installed on leg joints to provide power-" +"assisted movement. They are optimized for running, but walking also " +"requires less effort while this bionic is active. However, when it's " +"offline it will hamper the user's movement." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "chemical reference-CLASSIFIED" -msgid_plural "chemical references-CLASSIFIED" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Uncanny Dodge CBM" +msgid_plural "Uncanny Dodge CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chemical reference-CLASSIFIED -#: lang/json/BOOK_from_json.py +#. ~ Description for Uncanny Dodge CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This somewhat technical binder has several intimidating security warnings on" -" the cover, yet guarantees unauthorized readers \"permanent employment, for " -"life\". It contains useful information on \"basic\" chemical projects like " -"methamphetamine and heroin, along with briefing on things called \"XE037\" " -"and \"PE012\"." +"Bionic processors that augment the user's nervous system, allowing them to " +"dodge attacks beyond normal human capability, including bullets." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "lab journal-x-|xp" -msgid_plural "lab journals-x-|xp" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Unified Power System CBM" +msgid_plural "Unified Power System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lab journal-x-|xp -#: lang/json/BOOK_from_json.py +#. ~ Description for Unified Power System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This damaged team logbook lacks (deliberately?) any identifying information," -" but still contains useful information on several types of mutagen and their" -" development." +"A Unified Power System that is wired into the user's bionic power banks. " +"Objects that run on a UPS can now directly draw power from the bionic power " +"supply." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "PE023 \"Medical\": Application and Findings" -msgid_plural "copies of PE023 \"Medical\": Application and Findings" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Internal Chronometer CBM" +msgid_plural "Internal Chronometer CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for PE023 "Medical": Application and Findings -#: lang/json/BOOK_from_json.py +#. ~ Description for Internal Chronometer CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This binder of highly technical papers describes some new chemical formula, " -"and its effects on human subjects. It's stamped \"APPROVED\"…" +"This bionic module contains an atomic clock, complete with silent alarm " +"clock function." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "PE070 \"Raptor\": Proposal" -msgid_plural "copies of PE070 \"Raptor\": Proposal" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Water Extraction Unit CBM" +msgid_plural "Water Extraction Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for PE070 "Raptor": Proposal -#: lang/json/BOOK_from_json.py +#. ~ Description for Water Extraction Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This sheaf of papers is a highly speculative proposal for focusing " -"\"PE065\". Scribbled notes throughout seem to think that it might work, but" -" that there's no time." +"This module contains nanotubes that are embedded in the palm of the hand to " +"pump any available fluid out of a dead body, cleanse it of impurities and " +"convert it into potable water. Water container not included." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Best Practices for Compound Delivery" -msgid_plural "copies of Best Practices for Compound Delivery" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Intravenous Needletip CBM" +msgid_plural "Intravenous Needletip CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Best Practices for Compound Delivery -#: lang/json/BOOK_from_json.py +#. ~ Description for Intravenous Needletip CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This internal manual details several varieties of mutagenic experiments, as " -"well as describing the protocols used to concentrate mutagens for quicker " -"results. The authors recommend that researchers ensure that their subjects " -"are well-fed and in good health, as the concentrated serums draw heavily on " -"subjects' bodies." +"A small tube with a retractable needle that terminates in a net of tiny " +"hoses instead of a plunger. Installed, it allows the user to draw " +"substances directly into their bloodstream akin to a regular syringe." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "CRC-Merck Handbook, 4th edition" -msgid_plural "copies of CRC-Merck Handbook, 4th edition" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Titanium Skeletal Bracing CBM" +msgid_plural "Titanium Skeletal Bracing CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRC-Merck Handbook, 4th edition -#: lang/json/BOOK_from_json.py +#. ~ Description for Titanium Skeletal Bracing CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This huge hardbound book is a collection of reference data and formulae " -"pertinent to many technical disciplines. If poring over tables of chemical " -"and physical data is your thing, this is the book for you." +"A set of hinges, springs, and other synthetic augments for the skeletal " +"structure. These artificial enhancers strengthen the knees and elbows, " +"allowing the user to carry more weight." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "chemistry textbook" -msgid_plural "chemistry textbooks" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Taste Modifier CBM" +msgid_plural "Taste Modifier CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chemistry textbook -#: lang/json/BOOK_from_json.py -msgid "A college textbook on chemistry." +#. ~ Description for Taste Modifier CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A set of highly sensitive sensors implanted in the user's mouth, combined " +"with a sophisticated analyzer. While active, it will block all unpleasant " +"taste and texture at the cost of bionic energy." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Essential Oil Enthusiasts Handbook" -msgid_plural "copies of The Essential Oil Enthusiasts Handbook" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Soporific Induction CBM" +msgid_plural "Soporific Induction CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Essential Oil Enthusiasts Handbook -#: lang/json/BOOK_from_json.py +#. ~ Description for Soporific Induction CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A heavy hardback book explaining the process of essential oil making, with " -"schematics for the equipment to do it. Good luck, and don't blow yourself " -"up!" +"A microscopic electrode designed to gently stimulate a particular cluster of" +" neurons in the hypothalamus, helping the user to fall asleep." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Art and Science of Chemical Warfare" -msgid_plural "copies of Art and Science of Chemical Warfare" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Squeaky Ankles" +msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Art and Science of Chemical Warfare -#: lang/json/BOOK_from_json.py -msgid "" -"This in-depth and technical text covers the design, development, " -"dissemination of, and defenses against various chemical weapons throughout " -"the centuries. The photographs the author chose make it a difficult read at" -" times, though the information is top-notch." +#. ~ Description for Squeaky Ankles +#: lang/json/BIONIC_ITEM_from_json.py +msgid "A pair of defective bionics that make squeaking noises." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Chemistry for Kids: Awesome Science Experiments that Really Work" -msgid_plural "" -"copies of Chemistry for Kids: Awesome Science Experiments that Really Work" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Pieces Of Junk" +msgid_plural "Pieces of Junk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Chemistry for Kids: Awesome Science Experiments that -#. Really Work -#: lang/json/BOOK_from_json.py +#. ~ Description for Pieces Of Junk +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A book with comprehensive and accurate step-by-step illustrated instructions" -" for many scientific experiments for young researchers and anyone else who " -"want to delve into an amazing world of chemistry." +"A jumble of broken metal pieces that were removed during reconstructive " +"surgery." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Biodiesel: Renewable Fuel Resource" -msgid_plural "copies of Biodiesel: Renewable Fuel Resource" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Acidic Leaking CBM" +msgid_plural "Acidic Leaking CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Biodiesel: Renewable Fuel Resource -#: lang/json/BOOK_from_json.py -msgid "A large textbook for college students about biodiesel." +#. ~ Description for Acidic Leaking CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"This CBM has been breached in several places and some acid is leaking from " +"it." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "SICP" -msgid_plural "copies of SICP" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Faulty Electric System" +msgid_plural "Faulty Electric Systems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for SICP -#: lang/json/BOOK_from_json.py -msgid "" -"A classic text, \"The Structure and Interpretation of Computer Programs.\" " -"Written with examples in LISP, but applicable to any language." +#. ~ Description for Faulty Electric System +#: lang/json/BIONIC_ITEM_from_json.py +msgid "This CBM is a mess of naked wire and burnt resistors." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Computer Science 301" -msgid_plural "copies of Computer Science 301" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Electrical Drain" +msgid_plural "Electrical Drains" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Computer Science 301 -#: lang/json/BOOK_from_json.py -msgid "A college textbook on computer science." +#. ~ Description for Electrical Drain +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"This CBM was wired incorrectly and would drain power from any system " +"connected to it." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "How to Browse the Web" -msgid_plural "copies of How to Browse the Web" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Itchy Metal Thing" +msgid_plural "Itchy Metal Things" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for How to Browse the Web -#: lang/json/BOOK_from_json.py -msgid "Very beginner-level information about computers." +#. ~ Description for Itchy Metal Thing +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"You can't recognize what this is supposed to be, but it's a very awkward " +"thing to have in one's body." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Computer World" -msgid_plural "issues of Computer World" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Glowy Thing" +msgid_plural "Glowy Things" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Computer World -#: lang/json/BOOK_from_json.py -msgid "" -"An informative magazine all about computers, both hardware and software." +#. ~ Description for Glowy Thing +#: lang/json/BIONIC_ITEM_from_json.py +msgid "It's a… thing? And it glows, at least it did when it was plugged in." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Computer Science 101" -msgid_plural "copies of Computer Science 101" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Leaky Bionic" +msgid_plural "Leaky Bionics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Computer Science 101 -#: lang/json/BOOK_from_json.py -msgid "An entry-level textbook about computers." +#. ~ Description for Leaky Bionic +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A mess of pierced pipes and broken seals, something unpleasant is leaking " +"from it." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Principles of Advanced Programming" -msgid_plural "copies of Principles of Advanced Programming" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Noisemaker" +msgid_plural "Noisemakers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Principles of Advanced Programming -#: lang/json/BOOK_from_json.py +#. ~ Description for Noisemaker +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A heavy textbook dedicated to advanced-level software design, written for " -"several different programming languages." +"A malfunctioning bionic. When powered, it occasionally emits a loud burst " +"of noise." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Web Design Basics" -msgid_plural "copies of Web Design Basics" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Bionic Nostril" +msgid_plural "Bionic Nostrils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Web Design Basics -#: lang/json/BOOK_from_json.py +#. ~ Description for Bionic Nostril +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A thick glossy paperback instructional manual for aspiring web designers " -"that includes a teaching guide for young students." +"This thing was up someone's nose, they're probably glad to be rid of it." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Pro Hacker Secrets" -msgid_plural "copies of Pro Hacker Secrets" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Bionic Visual Impairment" +msgid_plural "Bionic Visual Impairments" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pro Hacker Secrets -#: lang/json/BOOK_from_json.py -msgid "" -"A thinly veiled attempt at teaching kids coding skills. Not nearly as " -"exciting as the authors might have hoped, but there's some real knowledge in" -" here." +#. ~ Description for Bionic Visual Impairment +#: lang/json/BIONIC_ITEM_from_json.py +msgid "A defective bionic that impairs vision." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Homebrewer's Bible" -msgid_plural "copies of The Homebrewer's Bible" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Power Overload" +msgid_plural "Power Overloads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Homebrewer's Bible -#: lang/json/BOOK_from_json.py +#. ~ Description for Power Overload +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A book full of easy-to-follow recipes and useful advice on homebrewing, " -"malting, and fermenting. It even smells faintly of booze." +"A bunch of defective power circuits that are prone to short-circuiting." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Cooking on a Budget" -msgid_plural "copies of Cooking on a Budget" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Bionic Short Circuit" +msgid_plural "Bionic Short Circuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cooking on a Budget -#: lang/json/BOOK_from_json.py -msgid "" -"A nice cook book that goes beyond recipes and into the chemistry of food." +#. ~ Description for Bionic Short Circuit +#: lang/json/BIONIC_ITEM_from_json.py +msgid "This bionic is poorly wired and occasionally short-circuits." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "To Serve Man" -msgid_plural "copies of To Serve Man" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Endocrine Enervator" +msgid_plural "Endocrine Enervators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for To Serve Man -#: lang/json/BOOK_from_json.py -msgid "It's… it's a cookbook!" +#. ~ Description for Endocrine Enervator +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"This malfunctioning bionic causes fatigue by altering the unfortunate user's" +" brain chemistry." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Cucina Italiana" -msgid_plural "copies of Cucina Italiana" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Synaptic Regeneration System CBM" +msgid_plural "Synaptic Regeneration System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cucina Italiana -#: lang/json/BOOK_from_json.py +#. ~ Description for Synaptic Regeneration System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This cookbook is written in Italian, but handily illustrated with step by " -"step photo instructions." +"An electromagnetic stimulator has been surgically implanted on the back of " +"your head and along your spine, continually draining power. As long as it's" +" active, you won't become sleep deprived; and if you're sleep deprived " +"already, it will boost the rate of recovery." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Sushi Made Easy" -msgid_plural "copies of Sushi Made Easy" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Motor Control Overstimulator" +msgid_plural "Motor Control Overstimulators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Sushi Made Easy -#: lang/json/BOOK_from_json.py +#. ~ Description for Motor Control Overstimulator +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A simple text for the aspiring sushi lover, this easy to read guide is " -"filled with lots of helpful illustrations for everything from basic rice " -"preparation to setting a proper Japanese table." +"The result of poor configuration, this bionic module frequently causes " +"debilitating muscle spasms." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "family cookbook" -msgid_plural "family cookbooks" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Wire-Induced Stiffness" +msgid_plural "Wire-Induced Stiffnesses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for family cookbook -#: lang/json/BOOK_from_json.py -msgid "" -"A big binder full of somebody's family recipes. The well-turned pages and " -"creased corners speak volumes of the culinary knowledge contained within. " -"You could probably learn a lot about cooking from studying this domestic " -"artifact." +#. ~ Description for Wire-Induced Stiffness +#: lang/json/BIONIC_ITEM_from_json.py +msgid "A length of poorly installed wiring that would cause stiffness." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Bon Appetit" -msgid_plural "issues of Bon Appetit" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Self-Locking Thumbs" +msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Bon Appetit -#: lang/json/BOOK_from_json.py -msgid "" -"Exciting recipes and restaurant reviews. Full of handy tips about cooking." +#. ~ Description for Self-Locking Thumbs +#: lang/json/BIONIC_ITEM_from_json.py +msgid "A pair of faulty, self-locking thumb bionics." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Glamopolitan" -msgid_plural "issues of Glamopolitan" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Visual Disruptor" +msgid_plural "Visual Disruptors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Glamopolitan -#: lang/json/BOOK_from_json.py +#. ~ Description for Visual Disruptor +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This is a full-size glossy women's magazine. There are a few unoriginal " -"recipes and some simple cooking tips somewhere in between the fashion photos" -" and the sex advice columns." +"A pair of defective ocular bionics that cause visual distortion and " +"pixelation." msgstr "" -#. ~ That would translate out to The Scottish Book of Cookery, or The Scottish -#. Cookbook. -#: lang/json/BOOK_from_json.py -msgid "Ye Scots Beuk o Cuikery" -msgid_plural "copies of Ye Scots Beuk o Cuikery" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Voice Remodulator" +msgid_plural "Voice Remodulators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ye Scots Beuk o Cuikery -#: lang/json/BOOK_from_json.py +#. ~ Description for Voice Remodulator +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A semi-translated Gaelic cookbook from sixteenth century Scotland. While a " -"bit difficult to read, as there are a disquieting number of illustrations of" -" people stabbing each other mixed with rants about 'True Scotsman', it " -"provides insights into medieval Scottish cuisine and culture." +"Part of the autodoc's 'Cyborg Identity Package', this bionic gives the user " +"a creepy robot voice." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Vinegar Maker's Handbook" -msgid_plural "copies of Vinegar Maker's Handbook" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Solar Panels CBM" +msgid_plural "Solar Panels CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Vinegar Maker's Handbook -#: lang/json/BOOK_from_json.py +#. ~ Description for Solar Panels CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This book describes in detail all the ways that one can make vinegar. You " -"would have thought that there wasn't much to making vinegar, but the girth " -"of this book tells you otherwise." +"Installed on your back is a set of retractable solar panels. When in direct" +" sunlight, they will automatically deploy and slowly recharge your power " +"level." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Drink the Harvest" -msgid_plural "copies of Drink the Harvest" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Deployable Grenade Launcher CBM" +msgid_plural "Deployable Grenade Launcher CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Drink the Harvest -#: lang/json/BOOK_from_json.py +#. ~ Description for Deployable Grenade Launcher CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Canning foods doesn't have to stop with jam and pickles. This book provides" -" a plethora of juices that can be preserved." +"A small, folding tube that attaches to your right arm. Once implanted, it " +"can serve as a portable, integrated tool for firing 40mm grenades and " +"canisters." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Offal Holiday Cooking" -msgid_plural "copies of Offal Holiday Cooking" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Linguistic Coprocessor CBM" +msgid_plural "Linguistic Coprocessor CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Offal Holiday Cooking -#: lang/json/BOOK_from_json.py +#. ~ Description for Linguistic Coprocessor CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Offal Holiday Cooking, by Evelyn Turncoat, is a book of holiday recipes that" -" utilize organ meats from various animals. For the true nose-to-tail cook." +"A microcomputer installed into the left hemisphere of your brain to increase" +" the speed that it processes language. When installed, it provides a " +"passive boost to reading speed." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Things to do with Milk" -msgid_plural "copies of Things to do with Milk" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Dopamine Stimulators CBM" +msgid_plural "Dopamine Stimulators CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Things to do with Milk -#: lang/json/BOOK_from_json.py +#. ~ Description for Dopamine Stimulators CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Whatever you want to do with milk, you will probably find it in this book." +"A set of tiny bionic nerve stimulators that install into the reward center " +"of your brain. When run with bionic power, it periodically releases a hit " +"of dopamine and other reward chemicals, inducing a state of euphoria and " +"suppressing fear." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Liver-Licious Recipes Your Kids Will Love" -msgid_plural "copies of Liver-Licious Recipes" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Counteractive Reflexes CBM" +msgid_plural "Counteractive Reflexes CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Liver-Licious Recipes Your Kids Will Love -#: lang/json/BOOK_from_json.py +#. ~ Description for Counteractive Reflexes CBM +#. ~ Description for Counteractive Reflexes +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"This cookbook is written by liver enthusiast Tamsyn Beckerleg. Inside " -"you'll find a great deal of anecdotes about the near-certain ruination of " -"children who refuse to eat their liver." +"Cybernetic stimulators installed across your nervous system boost your " +"reflexes whenever you are hit in melee, granting you an extra action. This " +"bionic must be active to function." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Dainty Dishes Fit for a King" -msgid_plural "copies of Dainty Dishes" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Melee Optimization Unit CBM" +msgid_plural "Melee Optimization Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dainty Dishes Fit for a King -#: lang/json/BOOK_from_json.py +#. ~ Description for Melee Optimization Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This cookbook contains many fanciful recipes. Some of them are even worth " -"the trouble to actually prepare. Lovely pen and ink illustrations of " -"overweight knights and gluttonous monks line the pages." +"An implanted AI executes the optimal followup for each of your melee " +"strikes, allowing you to chain them with unnatural speed and grace. This " +"bionic must be active to function." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Eat Your Way to a Fit Physique" -msgid_plural "copies of Eat Your Way" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Neurosoft: Aeronautics CBM" +msgid_plural "Neurosoft: Aeronautics CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Eat Your Way to a Fit Physique -#: lang/json/BOOK_from_json.py +#. ~ Description for Neurosoft: Aeronautics CBM +#. ~ Description for Neurosoft: Aeronautics +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"This self-help book, by \"acclaimed nutrition and health guru Amar de " -"Freitas,\" is as dubious as its title. Worse, it is boring. It does, " -"however, contain a few basic cooking instructions." +"A brain implant that grants instinctual knowledge about the operation of " +"flying machines." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Food Fashions for Young Moderns" -msgid_plural "copies of Food Fashions" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Cranium Bomb" +msgid_plural "Cranium Bombs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Food Fashions for Young Moderns -#: lang/json/BOOK_from_json.py +#. ~ Description for Cranium Bomb +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A cookbook professing itself to be for those seeking \"daring and " -"sophisticated flavors.\" The book exhorts the reader to defy convention and" -" break the rules, and then presents a number of useful rules and conventions" -" for preparing food." +"A bomb installed where your spine meets your brain stem. It's on a timer " +"from installation and you don't have the codes to reset the timer." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Winemaking for Beginners" -msgid_plural "copies of Winemaking for Beginners" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Skullgun CBM" +msgid_plural "Skullgun CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Winemaking for Beginners -#: lang/json/BOOK_from_json.py +#. ~ Description for Skullgun CBM +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"Winemaking, is an art form. This book teaches you how to crayon within the " -"lines." +"Concealed in your head is a single shot .40 pistol. Activate the bionic to " +"fire and reload the skullgun." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "You Can Can at Home" -msgid_plural "copies of You Can Can at Home" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Implanted translocator CBM" +msgid_plural "Implanted translocator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for You Can Can at Home -#: lang/json/BOOK_from_json.py +#. ~ Description for Implanted translocator CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This entry-level guide to home canning talks about the importance of acidity" -" and food contents in preservation, and how to avoid contaminants in your " -"canning batches." +"An experimental teleportation system carefully weaved into bone marrow and " +"coiled alongside the skeletal system. It allows its user to safely and " +"readily teleport towards a previously activated telepad." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Can Sealer Instructions" -msgid_plural "copies of Can Sealer Instructions" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Emergency Insulation" +msgid_plural "Emergency Insulations" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Can Sealer Instructions -#: lang/json/BOOK_from_json.py +#. ~ Description for Emergency Insulation +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This dry guide to a home-use tin can sealer goes into clear detail on " -"everything you can seal with the device and how to do it safely, and " -"includes some basic recipes." +"A system designed to prevent instantaneous frostbite in workers exposed to " +"things like hard vacuum and liquid nitrogen." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Baker's Companion" -msgid_plural "copies of The Baker's Companion" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Weak Energy Field CBM" +msgid_plural "Weak Energy Field CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Baker's Companion -#: lang/json/BOOK_from_json.py +#. ~ Description for Weak Energy Field CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This book promises to teach you the ways of baking, from cakes to souffles." +"Imagine a computer inside your body playing pong against the universe. The " +"paddles are made of energy fields and how it causes this to happen are trade" +" secrets. -From the owners manual of HawkingCorps EnergyField Mark I. This" +" field is rated to reduce bashing and cut damage as viewed in your HUD by 5 " +"points." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Fermenting Culture" -msgid_plural "copies of Fermenting Culture" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Combat Rated Energy Field CBM" +msgid_plural "Combat Rated Energy Field CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Fermenting Culture -#: lang/json/BOOK_from_json.py +#. ~ Description for Combat Rated Energy Field CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Fermenting as a cooking practice only recently came back into vogue before " -"the Cataclysm. Here is a book with dozens of recipes, many of which you are" -" unlikely to ever see the ingredients for again." +"The HawkingCorps EnergyField Mark 2 was designed for police actions during " +"food riots and other civilian uprisings. It has proven cabaple of " +"protecting against most improvised weapons. This field is rated to reduce " +"bashing and cut damage as viewed in your HUD by 15 points." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Out of the Holler and into the Home: A guide to home distillation" -msgid_plural "copies of Out of the Holler" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Debt Collection Agent Personal EnergyField CBM" +msgid_plural "Debt Collection Agent Personal EnergyField CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Out of the Holler and into the Home: A guide to home -#. distillation -#: lang/json/BOOK_from_json.py +#. ~ Description for Debt Collection Agent Personal EnergyField CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A book describing the history of at home distillation by liquor. Each " -"chapter contains a complete recipe for its namesake." +"This class of personal energy field often sees action on both sides of the " +"vicious ship-to-ship boarding fights that are common with both repossession " +"and piracy. It remains practically impenetrable to melee weapons that lack " +"sharp piercing points. This field is rated to reduce bashing and cut damage" +" as viewed in your HUD by 25 points." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Sweets for your Sweet Child" -msgid_plural "copies of Sweets for Sweet" -msgstr[0] "Sladkosti pro tvého malého miláčka" -msgstr[1] "výtisky Sladkosti pro tvého malého miláčka" -msgstr[2] "výtisků Sladkosti pro tvého malého miláčka" -msgstr[3] "výtisky Sladkosti pro tvého malého miláčka" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Kinetic Attenuation Field CBM" +msgid_plural "Kinetic Attenuation Field CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for Sweets for your Sweet Child -#: lang/json/BOOK_from_json.py +#. ~ Description for Kinetic Attenuation Field CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Sweets for your Sweet Child is the best selling cooking book to the parents " -"of young children. Every recipe uses oversized text, easy words and diagram" -" instructions for children learning to cook with their parents." +"A personal kinetic attenuation field that slows incoming projectiles by " +"converting their kinetic energy into bursts of visible light. Although this" +" version is not powerful enough to defeat most pistol or rifle cartridges by" +" itself, it greatly increases survival odds when combined with traditional " +"ballistic armor. This field is rated to reduce ballistic and piercing " +"damage as viewed in your HUD by 10 points." msgstr "" -"Tato kniha patří mezi nejprodávanější kuchařky pro rodiče malých dětí. " -"Recepty jsou psané velkým písmem a použití obrázků a snadných slov ji dělají" -" ideální pro děti, které chtějí rodičům pomoci při vaření." -#: lang/json/BOOK_from_json.py -msgid "Pocket Survival Cookbook" -msgid_plural "copies of Pocket Survival Cookbook" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Pattern-U15 Attenuation Field CBM" +msgid_plural "Pattern-U15 Attenuation Field CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pocket Survival Cookbook -#: lang/json/BOOK_from_json.py +#. ~ Description for Pattern-U15 Attenuation Field CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"The smallest cookbook on the market, marketed exclusively to the " -"outdoorsman. Packs a surprising number of recipes for its tiny size." +"A military grade kinetic attenuation system developed for use within UICA's " +"special service branches. Although much more effective than anything that " +"could be conceived with current technology, it remains a pale imitation of " +"the Hyperspace Age systems it was reverse engineered from. A side effect " +"modern engineering seems unable to address is the tendency for this unit to " +"release electrical fields when hit. This field is rated to reduce ballistic" +" and piercing damage as viewed in your HUD by 20 points" msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Tasting India" -msgid_plural "copies of Tasting India" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Kinetic annulment system CBM" +msgid_plural "Kinetic annulment system CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Tasting India -#: lang/json/BOOK_from_json.py +#. ~ Description for Kinetic annulment system CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A thick hardcover book as much about Indian culture as it is a cookbook, " -"clearly written with adoration." +"A kinetic attenuation system salvaged from a pre-discontinuity robotic " +"warframe, crudely adapted for compatibility with biological hosts. Powerful" +" enough to completely stop most rifle cartridges. This field is rated to " +"reduce ballistic and piercing damage as viewed in your HUD by 40 points" msgstr "" -#: lang/json/BOOK_from_json.py -msgid "All About Swords" -msgid_plural "issues of All About Swords" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Precision Solderers CBM" +msgid_plural "Precision Solderers CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for All About Swords -#: lang/json/BOOK_from_json.py +#. ~ Description for Precision Solderers CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An interesting magazine that contains information about swords and sword " -"fighting techniques from all across the world." +"A set of tiny electronics tools, including soldering irons and wire cutters." +" They serve no purpose on their own, but are required for crafting bionics." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "knife fighter's notes" -msgid_plural "knife fighter's notes" -msgstr[0] "poznámka bojovníků s noži" -msgstr[1] "poznámky bojovníků s noži" -msgstr[2] "poznámek bojovníků s noži" -msgstr[3] "poznámky bojovníků s noži" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Wind Turbine CBM" +msgid_plural "Wind Turbine CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} -#: lang/json/BOOK_from_json.py +#. ~ Description for Wind Turbine CBM +#. ~ Description for Wind Turbines +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"It seems to be a guide to edged weapon combat, poorly photocopied and " -"released on spiral- bound paper. Still, there are lots of useful tips for " -"beginners." +"Installed on your body is a set of small retractable wind turbines. When " +"activated, they will deploy and slowly harvest wind power to recharge your " +"power level." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "USMC Sword Manual Procedure" -msgid_plural "copies of USMC Sword Manual Procedures" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Ionic Overload Generator CBM" +msgid_plural "Ionic Overload Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for USMC Sword Manual Procedure -#: lang/json/BOOK_from_json.py -msgid "A text on stationary sword drills in US Marine Corps." +#. ~ Description for Ionic Overload Generator CBM +#. ~ Description for Ionic Overload Generator +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "" +"A powerful ion energy generator is implanted on your chest. Fires a " +"powerful, ever-expanding energy blast. The resulting blast ignites oxygen " +"creating fires as it moves and an explosion on impact. Close range use is " +"highly discouraged." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Dance Dance Dance!" -msgid_plural "issues of Dance Dance Dance!" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Blood Power Generator CBM" +msgid_plural "Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dance Dance Dance! -#: lang/json/BOOK_from_json.py -msgid "Learn the moves of the trendiest dances right now." +#. ~ Description for Blood Power Generator CBM +#: lang/json/BIONIC_ITEM_from_json.py +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 "" -#: lang/json/BOOK_from_json.py -msgid "The Book of Dances" -msgid_plural "copies of The Book of Dances" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Book of Dances -#: lang/json/BOOK_from_json.py +#. ~ Description for Crystallized Mana Nose Replacement +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"This massive antique book documents dances from all around the world in " -"great detail. A perceptive reader could learn a lot about defensive " -"footwork from some of the war dances." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Break a Leg!" -msgid_plural "copies of Break a Leg!" +msgid "The Museum of All Things Awesome and That Go Boom" +msgid_plural "copies of The Museum of All Things Awesome and That Go Boom" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Break a Leg! +#. ~ Description for The Museum of All Things Awesome and That Go Boom #: lang/json/BOOK_from_json.py -msgid "The Kids' Guide to Acting and Stagecraft." +msgid "" +"The Museum of All Things Awesome and That Go Boom is an anthology of science" +" fiction featuring blunt force trauma, explosions, adventure, derring-do, " +"tigers, Martians, zombies, fanged monsters, dinosaurs (alien and domestic), " +"ray guns, rocket ships, and anthropomorphized marshmallows. Published by " +"Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Treasury of Legends about Western Dancing" -msgid_plural "copies of Western Dancing" +msgid "Sunvault: Stories of Solarpunk & Eco-Speculation" +msgid_plural "copies of Sunvault" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Treasury of Legends about Western Dancing +#. ~ Description for Sunvault: Stories of Solarpunk & Eco-Speculation #: lang/json/BOOK_from_json.py msgid "" -"Written by Emanuel Nogueira, a constabulario and historian of Nuevo Laredo, " -"this massive book details the movements and cultural legacies of a variety " -"of North American folk dances." +"Sunvault is the first English-language anthology to broadly collect " +"solarpunk short fiction, artwork, and poetry. A new genre for the 21st " +"Century, solarpunk is a revolution against despair. Focusing on solutions " +"to environmental disasters, solarpunk envisions a future of green, " +"sustainable energy used by societies that value inclusiveness, cooperation, " +"and personal freedom. Published by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "AAA Guide" -msgid_plural "copies of AAA Guide" +msgid "Sharp & Sugar Tooth" +msgid_plural "copies of Sharp & Sugar Tooth" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for AAA Guide +#. ~ Description for Sharp & Sugar Tooth #: lang/json/BOOK_from_json.py msgid "" -"A tourist-centric guide to points of interest throughout the country. " -"Though it focuses on the north-central US, the driving sections contain some" -" practical tips on proper driving techniques." +"Sharp & Sugar Tooth: Women Up To No Good is a horror anthology of dark " +"fiction and darker appetites, edited by Octavia Cade. Containing 22 stories" +" of “bad” women, and “good” women who just haven’t been caught yet, it " +"features 22 fearless writers who identify as female, non-binary, or a " +"marginalized sex or gender identity. Published by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Top Gear magazine" -msgid_plural "Top Gear magazines" +msgid "Broad Knowledge" +msgid_plural "copies of Broad Knowledge" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Top Gear magazine +#. ~ Description for Broad Knowledge #: lang/json/BOOK_from_json.py -msgid "Lots of articles about cars and driving techniques." +msgid "" +"Broad Knowledge: 35 Women Up To No Good is a feminist anthology of dark " +"fiction and darker knowledge, edited by Joanne Merriam. Containing 35 " +"stories of “bad” women, and “good” women who just haven’t been caught yet. " +"Published by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Rules of the Road" -msgid_plural "copies of The Rules of the Road" +msgid "Choose Wisely" +msgid_plural "copies of Choose Wisely" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Rules of the Road -#: lang/json/BOOK_from_json.py -msgid "" -"A thick textbook for beginning drivers. It contains chapters on laws, safe " -"vehicle operation, and defensive driving concepts." -msgstr "" - -#. ~ Description for AAA Guide +#. ~ Description for Choose Wisely #: lang/json/BOOK_from_json.py msgid "" -"A tourist-centric guide to points of interest throughout the country. This " -"particular copy is apparently the Anonymous Anarchist's Annual: the cover " -"conceals a wealth of ways to help stick it to The Man, along with plenty of " -"advice for avoiding police." +"Choose Wisely: 35 Women Up To No Good is a feminist anthology of dark " +"fiction, co-edited by H. L. Nelson and Joanne Merriam. Containing 35 " +"stories of “bad” women, and “good” women who just haven’t been caught yet, " +"it features Joyce Carol Oates, Aimee Bender, Diane Cook, and 33 other " +"fearless women writers. Published by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Advanced Electronics" -msgid_plural "copies of Advanced Electronics" +msgid "Apocalypse Now" +msgid_plural "copies of Apocalypse Now" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Advanced Electronics +#. ~ Description for Apocalypse Now #: lang/json/BOOK_from_json.py -msgid "A college textbook on circuit design." +msgid "" +"Every society and every generation has its version of the apocalypse: swine " +"flu, genetic mutation, global warming, nuclear fallout, the second coming, " +"peak oil, mass extinction, giant irradiated ants, zombies… Apocalypse Now: " +"Poems and Prose from the End of Days is the first anthology of its kind to " +"bring together the poetry and prose of some of America’s finest (though not " +"always most well-known) literary voices with an eye for the literary and the" +" popular, for story and lyric, for the past and the future, for the " +"psychological and the physical, for the real and the fantastic. Published " +"by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ham Radio Illustrated" -msgid_plural "issues of Ham Radio Illustrated" +msgid "How to Live on Other Planets: A Handbook for Aspiring Aliens" +msgid_plural "copies of How to Live on Other Planets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ham Radio Illustrated +#. ~ Description for How to Live on Other Planets: A Handbook for Aspiring +#. Aliens #: lang/json/BOOK_from_json.py msgid "" -"An amusing magazine about ham radio, with lots of diagrams and illustrations" -" for making your own electronic devices." +"How to Live on Other Planets: A Handbook for Aspiring Aliens explores the " +"immigrant experience in a science fiction setting, with exciting fiction and" +" poetry from some of the genre’s best writers. Published by Upper Rubber " +"Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "What's a Transistor?" -msgid_plural "copies of What's a Transistor?" +msgid "archery skill training abstract" +msgid_plural "archery skill training abstracts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for What's a Transistor? +#. ~ Description for archery skill training abstract #: lang/json/BOOK_from_json.py -msgid "A basic manual of electronics and circuit design." +msgid "template for heavy books that confer archery skill training" msgstr "" #: lang/json/BOOK_from_json.py -msgid "101 Important Integrated Circuits" -msgid_plural "copies of 101 Important Integrated Circuits" +msgid "Lessons for the Novice Bowhunter" +msgid_plural "copies of Lessons for the Novice Bowhunter" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 101 Important Integrated Circuits +#. ~ Description for Lessons for the Novice Bowhunter #: lang/json/BOOK_from_json.py msgid "" -"This reference manual contains datasheets and pinout diagrams for 101 of the" -" most popular IC chips, including the 555 timer, LM358 op-amp, and LM317 " -"voltage regulator, along with logic chips from the 74xx family, and even the" -" 6502 8-bit processor. If you want to do anything useful with integrated " -"circuits, a reference like this would be indispensable." +"This hefty paperback book contains all the information needed for novice " +"archers to get started hunting with a variety of bows and crossbows." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Amateur Home Radio for Enthusiasts" -msgid_plural "copies of Amateur Home Radio for Enthusiasts" +msgid "Zen and the Art of Archery" +msgid_plural "copies of Zen and the Art of Archery" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Amateur Home Radio for Enthusiasts +#. ~ Description for Zen and the Art of Archery #: lang/json/BOOK_from_json.py msgid "" -"A book about ham radio and citizen's band radio. It contains numerous " -"diagrams and illustrations explaining the science behind the electronics." +"This massive book contains a wealth of vital information for the novice " +"archer." msgstr "" #: lang/json/BOOK_from_json.py -msgid "computer printout" -msgid_plural "computer printouts" +msgid "Archery for Kids" +msgid_plural "issues of Archery for Kids" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for computer printout +#. ~ Description for Archery for Kids #: lang/json/BOOK_from_json.py msgid "" -"One side of this sheet is printed with a meaningless jumble of characters, " -"but the other side shows a complicated, hand-drawn circuit diagram." +"Will you be able to place the arrow right into the bullseye? It is not that" +" easy, but once you know how it's done, you will have a lot of fun with " +"archery." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Augmentative Tech Review" -msgid_plural "issues of Augmentative Tech Review" +msgid "car buyer's guide" +msgid_plural "car buyer's guides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Augmentative Tech Review +#. ~ Description for car buyer's guide #: lang/json/BOOK_from_json.py msgid "" -"This annual publication covers the various ways in which people use " -"technology to improve their bodies. There are a few in-depth and thoroughly" -" illustrated articles on bionic systems, though they tend to use too much " -"jargon." +"Normally this glossy, ad-filled magazine about cars would be pointless, but " +"it has a series of articles on haggling techniques." msgstr "" #: lang/json/BOOK_from_json.py -msgid "lab journal-Herrera" -msgid_plural "lab journals-Herrera" +msgid "How to Succeed in Business" +msgid_plural "copies of How to Succeed in Business" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lab journal-Herrera +#. ~ Description for How to Succeed in Business #: lang/json/BOOK_from_json.py -msgid "" -"This hefty binder contains a multitude of diagrams and technical " -"specifications for various electronic materials. Some of the diagrams use " -"symbols you've not seen before…" +msgid "Useful if you want to get a good deal when purchasing goods." msgstr "" #: lang/json/BOOK_from_json.py -msgid "2XI design binder-CLASSIFIED" -msgid_plural "2XI design binders-CLASSIFIED" +msgid "Advanced Economics" +msgid_plural "copies of Advanced Economics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 2XI design binder-CLASSIFIED +#. ~ Description for Advanced Economics #: lang/json/BOOK_from_json.py -msgid "" -"This Doubletech Industries binder has several intimidating security warnings" -" on the cover. Probably because it contains complete design specs, " -"technical drawings, and test results for their military-grade bionic " -"implants." +msgid "A college textbook on economics." msgstr "" #: lang/json/BOOK_from_json.py -msgid "plans for a radio repeater mod" -msgid_plural "plans for a radio repeater mod" +msgid "Batter Up!" +msgid_plural "issues of Batter Up!" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for Batter Up! #: lang/json/BOOK_from_json.py msgid "" -"Instructions on how to create a mod for a radio station terminal which " -"converts the entire system into a repeater." +"A baseball magazine that focuses on batting tips. There are lots of " +"colorful, full-page photos of skilled athletes demonstrating proper form and" +" technique." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Electronic Circuit Theory" -msgid_plural "copies of Electronic Circuit Theory" +msgid "tactical baton defense manual" +msgid_plural "tactical baton defense manuals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Electronic Circuit Theory +#. ~ Description for tactical baton defense manual #: lang/json/BOOK_from_json.py msgid "" -"An advanced college textbook on circuit theory, design, and organization." +"An informative guide to self-defense using clubs and batons. Aimed at the " +"law enforcement and military market, it is packed with time tested, no-" +"nonsense information and written to be understandable for beginners." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Robots for Fun & Profit" -msgid_plural "copies of Robots for Fun & Profit" +msgid "Advanced Physical Chemistry" +msgid_plural "copies of Advanced Physical Chemistry" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Robots for Fun & Profit +#. ~ Description for Advanced Physical Chemistry #: lang/json/BOOK_from_json.py msgid "" -"A rare book on the design of robots, with lots of helpful step-by-step " -"guides." +"A university-level textbook on advanced principles of physical chemistry and" +" all its branches: thermochemistry, electrochemistry, solid-state chemistry," +" photochemistry, quantum chemistry et cetera." msgstr "" #: lang/json/BOOK_from_json.py -msgid "trifacet handling procedures" -msgid_plural "trifacet handling procedures" +msgid "The Modern Tanner" +msgid_plural "copies of The Modern Tanner" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for The Modern Tanner #: lang/json/BOOK_from_json.py msgid "" -"A heavy and disparate binder detailing the deactivation, storage and " -"transport procedures for a so called \"Trifacet\" UVG. The pages and " -"schematics within have been compiled from the internal reports of a vast " -"array of governmental agencies, many of which you had never heard of before." +"An in-depth and easy to read guide that details a very modern take on the " +"ancient art of leather tanning." msgstr "" #: lang/json/BOOK_from_json.py -msgid "schematics" -msgid_plural "schematics" +msgid "PE050 \"Alpha\": Preliminary Report" +msgid_plural "copies of PE050 \"Alpha\": Preliminary Report" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'schematics'} -#. ~ Description for animal -#. ~ Description for nearby fire -#. ~ Description for muscle -#. ~ Description for wind -#. ~ Description for sun light -#. ~ Description for metabolism -#. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} -#. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} -#. ~ Description for weapon -#: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/furniture_from_json.py lang/json/skill_from_json.py -msgid "seeing this is a bug" -msgid_plural "seeing this is a bug" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#. ~ Description for PE050 "Alpha": Preliminary Report +#: lang/json/BOOK_from_json.py +msgid "" +"This sheaf of papers--dated two weeks before all this started--describes " +"some new chemical formula, and its effects on human subjects. It's stamped " +"\"APPROVED\"…" +msgstr "" #: lang/json/BOOK_from_json.py -msgid "nurse bot schematics" -msgid_plural "nurse bot schematics" +msgid "lab journal-Dionne" +msgid_plural "lab journals-Dionne" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for lab journal-Dionne #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Uncanny, these are assembly plans, design specs, and " -"technical drawings for the nurse bot. Most of this is useless to you, but " -"you could use the assembly plans to re-assemble the robot from salvaged " -"parts." +"This team logbook details several varieties of mutagenic experiments, " +"focusing on those derived from various Earth fauna. The team seems quite " +"enthusiastic--if not eager--about their results." msgstr "" #: lang/json/BOOK_from_json.py -msgid "grocery bot schematics" -msgid_plural "grocery bot schematics" +msgid "PE065 \"Chimera\": Best Practices" +msgid_plural "copies of PE065 \"Chimera\": Best Practices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for PE065 "Chimera": Best Practices #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Uncanny, these are assembly plans, design specs, and " -"technical drawings for the grocery bot. Most of this is useless to you, but" -" you could use the assembly plans to re-assemble the robot from salvaged " -"parts." +"This sheaf of papers describes a new chemical formula in detail and supplies" +" instructions for its use as some sort of… crowd-control catalyst? That " +"can't be right…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "police bot schematics" -msgid_plural "police bot schematics" +msgid "lab journal-Smythe" +msgid_plural "lab journals-Smythe" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for lab journal-Smythe #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the police bot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This team logbook details several varieties of mutagenic experiments, " +"focusing on those derived from flesh contaminated with XE037. The results " +"look promising but the procurement methods seem awfully vague…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "eyebot schematics" -msgid_plural "eyebot schematics" +msgid "standpipe maintenance log" +msgid_plural "standpipe maintenance logs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for standpipe maintenance log #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the eyebot. Most " -"of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This binder details the scheduled maintenance for several plumbing systems " +"throughout the facility. However, some of the log sheets seem to be filled " +"with… a chemical formula?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "security bot schematics" -msgid_plural "security bot schematics" +msgid "chemical reference-CLASSIFIED" +msgid_plural "chemical references-CLASSIFIED" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for chemical reference-CLASSIFIED #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the security bot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This somewhat technical binder has several intimidating security warnings on" +" the cover, yet guarantees unauthorized readers \"permanent employment, for " +"life\". It contains useful information on \"basic\" chemical projects like " +"methamphetamine and heroin, along with briefing on things called \"XE037\" " +"and \"PE012\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "skitterbot schematics" -msgid_plural "skitterbot schematics" +msgid "lab journal-x-|xp" +msgid_plural "lab journals-x-|xp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for lab journal-x-|xp #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the skitterbot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This damaged team logbook lacks (deliberately?) any identifying information," +" but still contains useful information on several types of mutagen and their" +" development." msgstr "" #: lang/json/BOOK_from_json.py -msgid "cleaner bot schematics" -msgid_plural "cleaner bot schematics" +msgid "PE023 \"Medical\": Application and Findings" +msgid_plural "copies of PE023 \"Medical\": Application and Findings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for PE023 "Medical": Application and Findings #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the cleaner bot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This binder of highly technical papers describes some new chemical formula, " +"and its effects on human subjects. It's stamped \"APPROVED\"…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "miner bot schematics" -msgid_plural "miner bot schematics" +msgid "PE070 \"Raptor\": Proposal" +msgid_plural "copies of PE070 \"Raptor\": Proposal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for PE070 "Raptor": Proposal #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the miner bot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This sheaf of papers is a highly speculative proposal for focusing " +"\"PE065\". Scribbled notes throughout seem to think that it might work, but" +" that there's no time." msgstr "" #: lang/json/BOOK_from_json.py -msgid "riot control bot schematics" -msgid_plural "riot control bot schematics" +msgid "Best Practices for Compound Delivery" +msgid_plural "copies of Best Practices for Compound Delivery" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for Best Practices for Compound Delivery #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the riot control " -"bot. Most of this is useless to you, but you could use the assembly plans " -"to re-assemble the robot from salvaged parts." +"This internal manual details several varieties of mutagenic experiments, as " +"well as describing the protocols used to concentrate mutagens for quicker " +"results. The authors recommend that researchers ensure that their subjects " +"are well-fed and in good health, as the concentrated serums draw heavily on " +"subjects' bodies." msgstr "" #: lang/json/BOOK_from_json.py -msgid "lab defense bot schematics" -msgid_plural "lab defense bot schematics" +msgid "CRC-Merck Handbook, 4th edition" +msgid_plural "copies of CRC-Merck Handbook, 4th edition" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for CRC-Merck Handbook, 4th edition #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the lab defense " -"bot. Most of this is useless to you, but you could use the assembly plans " -"to re-assemble the robot from salvaged parts." +"This huge hardbound book is a collection of reference data and formulae " +"pertinent to many technical disciplines. If poring over tables of chemical " +"and physical data is your thing, this is the book for you." msgstr "" #: lang/json/BOOK_from_json.py -msgid "dispatch schematics" -msgid_plural "dispatch schematics" +msgid "chemistry textbook" +msgid_plural "chemistry textbooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for chemistry textbook #: lang/json/BOOK_from_json.py -msgid "" -"Bearing the logo of Northrop, these are assembly plans, design specs, and " -"technical drawings for the dispatch. Most of this is useless to you, but " -"you could use the assembly plans to re-assemble the robot from salvaged " -"parts." +msgid "A college textbook on chemistry." msgstr "" #: lang/json/BOOK_from_json.py -msgid "military dispatch schematics" -msgid_plural "military dispatch schematics" +msgid "The Essential Oil Enthusiasts Handbook" +msgid_plural "copies of The Essential Oil Enthusiasts Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for The Essential Oil Enthusiasts Handbook #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Northrop, these are assembly plans, design specs, and " -"technical drawings for the military dispatch. Most of this is useless to " -"you, but you could use the assembly plans to re-assemble the robot from " -"salvaged parts." +"A heavy hardback book explaining the process of essential oil making, with " +"schematics for the equipment to do it. Good luck, and don't blow yourself " +"up!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "anti-materiel turret schematics" -msgid_plural "anti-materiel turret schematics" +msgid "Art and Science of Chemical Warfare" +msgid_plural "copies of Art and Science of Chemical Warfare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for Art and Science of Chemical Warfare #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the anti-materiel " -"turret. Most of this is useless to you, but you could use the assembly " -"plans to re-assemble the robot from salvaged parts." +"This in-depth and technical text covers the design, development, " +"dissemination of, and defenses against various chemical weapons throughout " +"the centuries. The photographs the author chose make it a difficult read at" +" times, though the information is top-notch." msgstr "" #: lang/json/BOOK_from_json.py -msgid "milspec searchlight schematics" -msgid_plural "milspec searchlight schematics" +msgid "Chemistry for Kids: Awesome Science Experiments that Really Work" +msgid_plural "" +"copies of Chemistry for Kids: Awesome Science Experiments that Really Work" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for Chemistry for Kids: Awesome Science Experiments that +#. Really Work #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the milspec " -"searchlight. Most of this is useless to you, but you could use the assembly" -" plans to re-assemble the robot from salvaged parts." +"A book with comprehensive and accurate step-by-step illustrated instructions" +" for many scientific experiments for young researchers and anyone else who " +"want to delve into an amazing world of chemistry." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Art of Glassblowing" -msgid_plural "copies of The Art of Glassblowing" +msgid "Biodiesel: Renewable Fuel Resource" +msgid_plural "copies of Biodiesel: Renewable Fuel Resource" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Art of Glassblowing +#. ~ Description for Biodiesel: Renewable Fuel Resource #: lang/json/BOOK_from_json.py -msgid "" -"A textbook that illustrates the science and technique of the ancient art of " -"glassblowing." +msgid "A large textbook for college students about biodiesel." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Plastics & Polymers: Projects for the Classroom" -msgid_plural "copies of Plastics & Polymers: Projects for the Classroom" +msgid "SICP" +msgid_plural "copies of SICP" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Plastics & Polymers: Projects for the Classroom +#. ~ Description for SICP #: lang/json/BOOK_from_json.py msgid "" -"A textbook that goes through types and material properties of various common" -" plastics, and how to use them in several common projects." +"A classic text, \"The Structure and Interpretation of Computer Programs.\" " +"Written with examples in LISP, but applicable to any language." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Prop Builder's Molding and Casting Handbook" -msgid_plural "copies of The Prop Builder's Molding and Casting Handbook" +msgid "Computer Science 301" +msgid_plural "copies of Computer Science 301" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Prop Builder's Molding and Casting Handbook +#. ~ Description for Computer Science 301 #: lang/json/BOOK_from_json.py -msgid "" -"The first book to contain, in one comprehensive volume, every molding and " -"casting procedure of use to the theater props builder of any skill level. " -"The author demonstrates the techniques involved in over thirty materials " -"from papier-mache to breakaway glass." +msgid "A college textbook on computer science." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Antique Adornments" -msgid_plural "copies of Antique Adornments" +msgid "How to Browse the Web" +msgid_plural "copies of How to Browse the Web" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Antique Adornments +#. ~ Description for How to Browse the Web #: lang/json/BOOK_from_json.py -msgid "" -"A comprehensive and illustrated history of crown, bracelet, necklace and " -"others." +msgid "Very beginner-level information about computers." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Crafty Crafter's Quarterly" -msgid_plural "Crafty Crafter's Quarterlies" +msgid "Computer World" +msgid_plural "issues of Computer World" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Crafty Crafter's Quarterly +#. ~ Description for Computer World #: lang/json/BOOK_from_json.py msgid "" -"A fun quarterly magazine all about macaroni art and things you can make by " -"supergluing found objects together." +"An informative magazine all about computers, both hardware and software." msgstr "" #: lang/json/BOOK_from_json.py -msgid "101 Crafts for Beginners" -msgid_plural "copies of 101 Crafts for Beginners" +msgid "Computer Science 101" +msgid_plural "copies of Computer Science 101" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 101 Crafts for Beginners +#. ~ Description for Computer Science 101 #: lang/json/BOOK_from_json.py -msgid "" -"A large, paperback book detailing a hundred and one beginner's projects in " -"fabrication." +msgid "An entry-level textbook about computers." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Fletcher's Friend" -msgid_plural "copies of The Fletcher's Friend" +msgid "Principles of Advanced Programming" +msgid_plural "copies of Principles of Advanced Programming" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Fletcher's Friend +#. ~ Description for Principles of Advanced Programming #: lang/json/BOOK_from_json.py msgid "" -"This hefty book is devoted to folks looking to handcraft their own arrows. " -"It starts with a hip and snappy disclaimer about the risks, both physical " -"and legal, of using explosives and flammable materials. Look for its " -"companion, \"The Bowyer's Buddy\"!" +"A heavy textbook dedicated to advanced-level software design, written for " +"several different programming languages." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Bowyer's Buddy" -msgid_plural "copies of The Bowyer's Buddy" +msgid "Web Design Basics" +msgid_plural "copies of Web Design Basics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Bowyer's Buddy +#. ~ Description for Web Design Basics #: lang/json/BOOK_from_json.py msgid "" -"This hefty book is dedicated to craftsfolk and outdoors-y types looking to " -"make their own bows. It recommends its companion volume \"The Fletcher's " -"Friend\" for instructions on producing their ammunition." +"A thick glossy paperback instructional manual for aspiring web designers " +"that includes a teaching guide for young students." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Handloader's Helper" -msgid_plural "copies of The Handloader's Helper" +msgid "Pro Hacker Secrets" +msgid_plural "copies of Pro Hacker Secrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Handloader's Helper +#. ~ Description for Pro Hacker Secrets #: lang/json/BOOK_from_json.py msgid "" -"Everything you could ever want to know about handloading ammunition, sealed " -"with a… childproof cover. Apparently a liability thing, because the chapter" -" on explosive rounds covers them in excellent detail too." +"A thinly veiled attempt at teaching kids coding skills. Not nearly as " +"exciting as the authors might have hoped, but there's some real knowledge in" +" here." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Rivtech design binder" -msgid_plural "Rivtech design binders" +msgid "The Homebrewer's Bible" +msgid_plural "copies of The Homebrewer's Bible" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Rivtech design binder +#. ~ Description for The Homebrewer's Bible #: lang/json/BOOK_from_json.py msgid "" -"This Rivtech binder warns that \"Unauthorized readers are our best test " -"subjects.\" With good reason: it contains complete design specs and " -"technical drawings for their entire line of products." +"A book full of easy-to-follow recipes and useful advice on homebrewing, " +"malting, and fermenting. It even smells faintly of booze." msgstr "" #: lang/json/BOOK_from_json.py -msgid "lab journal-Gustav" -msgid_plural "lab journals-Gustav" +msgid "Cooking on a Budget" +msgid_plural "copies of Cooking on a Budget" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lab journal-Gustav +#. ~ Description for Cooking on a Budget #: lang/json/BOOK_from_json.py msgid "" -"This paper notebook is mostly full of boring logs, experimental observations" -" and notes. Mixed in, however, are musings on how to use the lab's vapor " -"deposition machine to deposit amorphous carbon in a diamond-like form onto " -"common metals. The author's intended goal was a better non-stick frying " -"pan, but you can think of a couple of better uses for it." +"A nice cook book that goes beyond recipes and into the chemistry of food." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Streetfighter's Sidekick" -msgid_plural "copies of The Streetfighter's Sidekick" -msgstr[0] "Pomocník Pouličního Rváče" -msgstr[1] "výtisky Pomocníka Pouličního Rváče" -msgstr[2] "výtisků Pomocníka Pouličního Rváče" -msgstr[3] "výtisky Pomocníka Pouličního Rváče." +msgid "To Serve Man" +msgid_plural "copies of To Serve Man" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for The Streetfighter's Sidekick +#. ~ Description for To Serve Man #: lang/json/BOOK_from_json.py -msgid "" -"A sizable how-to guide for making hand-to-hand combat weapons. Though the " -"processes are thoroughly detailed and several illustrations are provided, " -"they rely heavily on technical jargon. More for machinists-turned-" -"weaponsmiths than streetfighters, really." +msgid "It's… it's a cookbook!" msgstr "" -"Slušně tlustá příručka pro tvorbu chladných zbraní. I když je velmi detailní" -" s množstvím obrázků, je plná technického žargonu. Zamýšlená spíše pro " -"odborné výrobce zbraní, než pro obyčejné pouliční rváče." #: lang/json/BOOK_from_json.py -msgid "The Art of Japanese Armormaking" -msgid_plural "copies of The Art of Japanese Armormaking" +msgid "Cucina Italiana" +msgid_plural "copies of Cucina Italiana" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Art of Japanese Armormaking +#. ~ Description for Cucina Italiana #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details various forms of ancient Japanese " -"armor crafting, and is well illustrated with lots of photos." +"This cookbook is written in Italian, but handily illustrated with step by " +"step photo instructions." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Arms and Armor of Imperial China" -msgid_plural "copies of Arms and Armor of Imperial China" +msgid "Sushi Made Easy" +msgid_plural "copies of Sushi Made Easy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Arms and Armor of Imperial China +#. ~ Description for Sushi Made Easy #: lang/json/BOOK_from_json.py msgid "" -"This textbook details the military history of ancient China, with a " -"particular focus on the nature of historical arms and armor. It also " -"details some of the equipment used by other cultures that came into conflict" -" with the empire over various dynasties." +"A simple text for the aspiring sushi lover, this easy to read guide is " +"filled with lots of helpful illustrations for everything from basic rice " +"preparation to setting a proper Japanese table." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Studies in Historic Armorsmithing" -msgid_plural "copies of Studies in Historic Armorsmithing" +msgid "family cookbook" +msgid_plural "family cookbooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Studies in Historic Armorsmithing +#. ~ Description for family cookbook #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details various forms of ancient European " -"armor crafting, and is well illustrated with lots of photos." +"A big binder full of somebody's family recipes. The well-turned pages and " +"creased corners speak volumes of the culinary knowledge contained within. " +"You could probably learn a lot about cooking from studying this domestic " +"artifact." msgstr "" #: lang/json/BOOK_from_json.py -msgid "DIY Compendium" -msgid_plural "copies of DIY Compendium" +msgid "Bon Appetit" +msgid_plural "issues of Bon Appetit" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for DIY Compendium +#. ~ Description for Bon Appetit #: lang/json/BOOK_from_json.py msgid "" -"A thick, hardbound book detailing countless projects for inventions that " -"claim to improve all aspects of life." +"Exciting recipes and restaurant reviews. Full of handy tips about cooking." msgstr "" #: lang/json/BOOK_from_json.py -msgid "A History of Firefighting" -msgid_plural "copies of A History of Firefighting" +msgid "Glamopolitan" +msgid_plural "issues of Glamopolitan" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for A History of Firefighting +#. ~ Description for Glamopolitan #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details the history of firefighting from " -"ancient times into the modern era, with a focus on the technology used to " -"save lives." +"This is a full-size glossy women's magazine. There are a few unoriginal " +"recipes and some simple cooking tips somewhere in between the fashion photos" +" and the sex advice columns." msgstr "" +#. ~ That would translate out to The Scottish Book of Cookery, or The Scottish +#. Cookbook. #: lang/json/BOOK_from_json.py -msgid "The Swords of the Samurai" -msgid_plural "copies of The Swords of the Samurai" +msgid "Ye Scots Beuk o Cuikery" +msgid_plural "copies of Ye Scots Beuk o Cuikery" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Swords of the Samurai +#. ~ Description for Ye Scots Beuk o Cuikery #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details various forms of ancient Japanese " -"sword smithing, and is well illustrated with step by step photo " -"instructions." +"A semi-translated Gaelic cookbook from sixteenth century Scotland. While a " +"bit difficult to read, as there are a disquieting number of illustrations of" +" people stabbing each other mixed with rants about 'True Scotsman', it " +"provides insights into medieval Scottish cuisine and culture." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Historic Weaponsmith" -msgid_plural "copies of The Historic Weaponsmith" +msgid "The Vinegar Maker's Handbook" +msgid_plural "copies of Vinegar Maker's Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Historic Weaponsmith +#. ~ Description for The Vinegar Maker's Handbook #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details various forms of ancient European " -"weapon smithing, and is well illustrated with step by step photo " -"instructions." +"This book describes in detail all the ways that one can make vinegar. You " +"would have thought that there wasn't much to making vinegar, but the girth " +"of this book tells you otherwise." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Welding and Metallurgy" -msgid_plural "copies of Welding and Metallurgy" +msgid "Drink the Harvest" +msgid_plural "copies of Drink the Harvest" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Welding and Metallurgy +#. ~ Description for Drink the Harvest #: lang/json/BOOK_from_json.py msgid "" -"A rather technical textbook that illustrates the science and technique of " -"becoming a better welder." +"Canning foods doesn't have to stop with jam and pickles. This book provides" +" a plethora of juices that can be preserved." msgstr "" #: lang/json/BOOK_from_json.py -msgid "101 Home Repairs" -msgid_plural "copies of 101 Home Repairs" +msgid "Offal Holiday Cooking" +msgid_plural "copies of Offal Holiday Cooking" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 101 Home Repairs +#. ~ Description for Offal Holiday Cooking #: lang/json/BOOK_from_json.py msgid "" -"A paperback book detailing 101 home repair projects for the novice " -"carpenter." +"Offal Holiday Cooking, by Evelyn Turncoat, is a book of holiday recipes that" +" utilize organ meats from various animals. For the true nose-to-tail cook." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Complete Home Repair Guide" -msgid_plural "copies of The Complete Home Repair Guide" +msgid "Things to do with Milk" +msgid_plural "copies of Things to do with Milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Complete Home Repair Guide +#. ~ Description for Things to do with Milk #: lang/json/BOOK_from_json.py msgid "" -"A massive book that details virtually every aspect of remodeling and " -"repairing a home, with concise terminology aimed at experienced carpenters." +"Whatever you want to do with milk, you will probably find it in this book." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Birdhouse Monthly" -msgid_plural "Birdhouse Monthlies" +msgid "Liver-Licious Recipes Your Kids Will Love" +msgid_plural "copies of Liver-Licious Recipes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Birdhouse Monthly +#. ~ Description for Liver-Licious Recipes Your Kids Will Love #: lang/json/BOOK_from_json.py -msgid "A riveting periodical all about birdhouses and their construction." +msgid "" +"This cookbook is written by liver enthusiast Tamsyn Beckerleg. Inside " +"you'll find a great deal of anecdotes about the near-certain ruination of " +"children who refuse to eat their liver." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Building for Beginners" -msgid_plural "copies of Building for Beginners" +msgid "Dainty Dishes Fit for a King" +msgid_plural "copies of Dainty Dishes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Building for Beginners +#. ~ Description for Dainty Dishes Fit for a King #: lang/json/BOOK_from_json.py msgid "" -"A large, paperback book detailing several beginner's projects in " -"construction." +"This cookbook contains many fanciful recipes. Some of them are even worth " +"the trouble to actually prepare. Lovely pen and ink illustrations of " +"overweight knights and gluttonous monks line the pages." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Engineering 301" -msgid_plural "copies of Engineering 301" +msgid "Eat Your Way to a Fit Physique" +msgid_plural "copies of Eat Your Way" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Engineering 301 +#. ~ Description for Eat Your Way to a Fit Physique #: lang/json/BOOK_from_json.py -msgid "A textbook on civil engineering and construction." +msgid "" +"This self-help book, by \"acclaimed nutrition and health guru Amar de " +"Freitas,\" is as dubious as its title. Worse, it is boring. It does, " +"however, contain a few basic cooking instructions." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Machinery's Handbook" -msgid_plural "copies of Machinery's Handbook" +msgid "Food Fashions for Young Moderns" +msgid_plural "copies of Food Fashions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Machinery's Handbook +#. ~ Description for Food Fashions for Young Moderns #: lang/json/BOOK_from_json.py msgid "" -"This classic reference work contains extensive, dense chapters and tables on" -" materials, metrology, toolmaking, gears, threading and more. This recent " -"edition includes extensive data on what were the latest techniques in " -"additive manufacturing. If you need to know how best complete a certain " -"machining operation, the answer lies somewhere in these pages." +"A cookbook professing itself to be for those seeking \"daring and " +"sophisticated flavors.\" The book exhorts the reader to defy convention and" +" break the rules, and then presents a number of useful rules and conventions" +" for preparing food." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Concrete Constructions" -msgid_plural "copies of Concrete Constructions" +msgid "Winemaking for Beginners" +msgid_plural "copies of Winemaking for Beginners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Concrete Constructions +#. ~ Description for Winemaking for Beginners #: lang/json/BOOK_from_json.py msgid "" -"A collection of notable uses of concrete. Contains detailed directions on " -"how to mix and use cement to form useful aggregates." +"Winemaking, is an art form. This book teaches you how to crayon within the " +"lines." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Guide to Advanced Emergency Care" -msgid_plural "copies of Guide to Advanced Emergency Care" +msgid "You Can Can at Home" +msgid_plural "copies of You Can Can at Home" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Guide to Advanced Emergency Care +#. ~ Description for You Can Can at Home #: lang/json/BOOK_from_json.py msgid "" -"A thick textbook for paramedics describing advanced lifesaving procedures " -"and field-expedient care methods." +"This entry-level guide to home canning talks about the importance of acidity" +" and food contents in preservation, and how to avoid contaminants in your " +"canning batches." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Paramedics" -msgid_plural "issues of Paramedics" +msgid "Can Sealer Instructions" +msgid_plural "copies of Can Sealer Instructions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Paramedics +#. ~ Description for Can Sealer Instructions #: lang/json/BOOK_from_json.py -msgid "An educational magazine for EMTs." +msgid "" +"This dry guide to a home-use tin can sealer goes into clear detail on " +"everything you can seal with the device and how to do it safely, and " +"includes some basic recipes." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Big Book of First Aid" -msgid_plural "copies of The Big Book of First Aid" +msgid "The Baker's Companion" +msgid_plural "copies of The Baker's Companion" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Big Book of First Aid +#. ~ Description for The Baker's Companion #: lang/json/BOOK_from_json.py -msgid "It's big and heavy, but full of great information about first aid." +msgid "" +"This book promises to teach you the ways of baking, from cakes to souffles." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pocket Guide to First Aid" -msgid_plural "copies of Pocket Guide to First Aid" +msgid "Fermenting Culture" +msgid_plural "copies of Fermenting Culture" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pocket Guide to First Aid +#. ~ Description for Fermenting Culture #: lang/json/BOOK_from_json.py msgid "" -"This pocket-sized leather-bound guide to first aid combines a wealth of " -"concise information with simple to follow instructions and easy to read " -"illustrations." +"Fermenting as a cooking practice only recently came back into vogue before " +"the Cataclysm. Here is a book with dozens of recipes, many of which you are" +" unlikely to ever see the ingredients for again." msgstr "" #: lang/json/BOOK_from_json.py -msgid "First Responder Handbook" -msgid_plural "copies of First Responder Handbook" +msgid "Out of the Holler and into the Home: A guide to home distillation" +msgid_plural "copies of Out of the Holler" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for First Responder Handbook +#. ~ Description for Out of the Holler and into the Home: A guide to home +#. distillation #: lang/json/BOOK_from_json.py msgid "" -"A hardbound book detailing advanced first aid techniques and field-expedient" -" medical care." +"A book describing the history of at home distillation by liquor. Each " +"chapter contains a complete recipe for its namesake." msgstr "" #: lang/json/BOOK_from_json.py -msgid "First Aid Kit Instruction Booklet" -msgid_plural "copies of First Aid Kit Instruction Booklet" +msgid "Sweets for your Sweet Child" +msgid_plural "copies of Sweets for Sweet" +msgstr[0] "Sladkosti pro tvého malého miláčka" +msgstr[1] "výtisky Sladkosti pro tvého malého miláčka" +msgstr[2] "výtisků Sladkosti pro tvého malého miláčka" +msgstr[3] "výtisky Sladkosti pro tvého malého miláčka" + +#. ~ Description for Sweets for your Sweet Child +#: lang/json/BOOK_from_json.py +msgid "" +"Sweets for your Sweet Child is the best selling cooking book to the parents " +"of young children. Every recipe uses oversized text, easy words and diagram" +" instructions for children learning to cook with their parents." +msgstr "" +"Tato kniha patří mezi nejprodávanější kuchařky pro rodiče malých dětí. " +"Recepty jsou psané velkým písmem a použití obrázků a snadných slov ji dělají" +" ideální pro děti, které chtějí rodičům pomoci při vaření." + +#: lang/json/BOOK_from_json.py +msgid "Pocket Survival Cookbook" +msgid_plural "copies of Pocket Survival Cookbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for First Aid Kit Instruction Booklet +#. ~ Description for Pocket Survival Cookbook #: lang/json/BOOK_from_json.py -msgid "Illustrated how-to guide for your first aid kit." +msgid "" +"The smallest cookbook on the market, marketed exclusively to the " +"outdoorsman. Packs a surprising number of recipes for its tiny size." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Physicians' Desk Reference" -msgid_plural "copies of Physicians' Desk Reference" +msgid "Tasting India" +msgid_plural "copies of Tasting India" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Physicians' Desk Reference +#. ~ Description for Tasting India #: lang/json/BOOK_from_json.py msgid "" -"This hefty volume contains all the legally mandated information relevant to " -"physicians for writing prescriptions, generously supported by the efforts " -"and contributions of major pharmaceutical companies. For the most part, it " -"provides information identical to what is available on that of medication " -"packaging inserts, and cannot match the completeness of digital " -"pharmaceutical references like Medisoft. At least it doesn't need power to " -"be used." +"A thick hardcover book as much about Indian culture as it is a cookbook, " +"clearly written with adoration." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Merck Veterinary Manual" -msgid_plural "copies of Merck Veterinary Manual" +msgid "All About Swords" +msgid_plural "issues of All About Swords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Merck Veterinary Manual +#. ~ Description for All About Swords #: lang/json/BOOK_from_json.py msgid "" -"This expansive text covers 'all domestic species and diseases in veterinary " -"medicine worldwide'. Should you need information regarding zoonotic " -"diseases, off-label use of medication for animals, common dysfunctions and " -"diseases of animals, or any other veterinary reference info, this is your " -"book. There are some interesting new chapters on animal cloning in this " -"edition." +"An interesting magazine that contains information about swords and sword " +"fighting techniques from all across the world." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Textbook of Advanced Toxicology" -msgid_plural "copies of Textbook of Advanced Toxicology" +msgid "knife fighter's notes" +msgid_plural "knife fighter's notes" +msgstr[0] "poznámka bojovníků s noži" +msgstr[1] "poznámky bojovníků s noži" +msgstr[2] "poznámek bojovníků s noži" +msgstr[3] "poznámky bojovníků s noži" + +#. ~ Description for knife fighter's notes +#: lang/json/BOOK_from_json.py +msgid "" +"It seems to be a guide to edged weapon combat, poorly photocopied and " +"released on spiral- bound paper. Still, there are lots of useful tips for " +"beginners." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "USMC Sword Manual Procedure" +msgid_plural "copies of USMC Sword Manual Procedures" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Textbook of Advanced Toxicology +#. ~ Description for USMC Sword Manual Procedure #: lang/json/BOOK_from_json.py -msgid "" -"This unassuming volume details the broad spectrum of chemical and biological" -" toxins known to modern medicine. While the obvious focus of the book is " -"the therapy of such poisonings, there are lengthy sections describing the " -"structure and synthesis of some compounds of interest." +msgid "A text on stationary sword drills in US Marine Corps." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Guns n Ammo" -msgid_plural "issues of Guns n Ammo" +msgid "Dance Dance Dance!" +msgid_plural "issues of Dance Dance Dance!" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Guns n Ammo +#. ~ Description for Dance Dance Dance! #: lang/json/BOOK_from_json.py -msgid "Reviews of firearms, and various useful tips about their use." +msgid "Learn the moves of the trendiest dances right now." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Gun Owner's Handbook" -msgid_plural "copies of The Gun Owner's Handbook" +msgid "The Book of Dances" +msgid_plural "copies of The Book of Dances" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Gun Owner's Handbook +#. ~ Description for The Book of Dances #: lang/json/BOOK_from_json.py msgid "" -"A thick soft-cover book that claims to be a complete guide to safely " -"operating, maintaining, and repairing firearms." +"This massive antique book documents dances from all around the world in " +"great detail. A perceptive reader could learn a lot about defensive " +"footwork from some of the war dances." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pocket Guide to Firearm Safety" -msgid_plural "copies of Pocket Guide to Firearm Safety" +msgid "Break a Leg!" +msgid_plural "copies of Break a Leg!" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pocket Guide to Firearm Safety +#. ~ Description for Break a Leg! #: lang/json/BOOK_from_json.py -msgid "" -"This pocket-sized leather-bound guide to firearm safety combines a wealth of" -" concise information with simple to follow instructions and easy to read " -"illustrations." +msgid "The Kids' Guide to Acting and Stagecraft." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ballistics: Theory, Design, and Application" -msgid_plural "copies of Ballistics: Theory, Design, and Application" +msgid "Treasury of Legends about Western Dancing" +msgid_plural "copies of Western Dancing" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ballistics: Theory, Design, and Application +#. ~ Description for Treasury of Legends about Western Dancing #: lang/json/BOOK_from_json.py msgid "" -"This hefty, hardbound textbook is written in obtuse, complex language. If " -"you already knew a bit about engineering and fabrication, it might be a " -"useful reference on gunsmithing and design, but without that knowledge it'd " -"be better used to prop up a table." +"Written by Emanuel Nogueira, a constabulario and historian of Nuevo Laredo, " +"this massive book details the movements and cultural legacies of a variety " +"of North American folk dances." msgstr "" #: lang/json/BOOK_from_json.py -msgid "High Explosives Quarterly" -msgid_plural "High Explosives Quarterlies" +msgid "AAA Guide" +msgid_plural "copies of AAA Guide" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for High Explosives Quarterly +#. ~ Description for AAA Guide #: lang/json/BOOK_from_json.py msgid "" -"An interesting quarterly report about rocket launchers and recoilless " -"rifles. There are lots of large, exciting photos of explosions and " -"weaponry." +"A tourist-centric guide to points of interest throughout the country. " +"Though it focuses on the north-central US, the driving sections contain some" +" practical tips on proper driving techniques." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Jane's Mortars and Rocket Launchers" -msgid_plural "copies of Jane's Mortars and Rocket Launchers" +msgid "Top Gear magazine" +msgid_plural "Top Gear magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Jane's Mortars and Rocket Launchers +#. ~ Description for Top Gear magazine #: lang/json/BOOK_from_json.py -msgid "" -"An incredibly detailed guide to modern rockets, mortars, grenade launchers, " -"and recoilless weaponry. Lavishly illustrated with color photographs, it " -"contains a wealth of information." +msgid "Lots of articles about cars and driving techniques." msgstr "" #: lang/json/BOOK_from_json.py -msgid "MIT Guide to Lock Picking" -msgid_plural "copies of MIT Guide to Lock Picking" +msgid "The Rules of the Road" +msgid_plural "copies of The Rules of the Road" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MIT Guide to Lock Picking +#. ~ Description for The Rules of the Road #: lang/json/BOOK_from_json.py msgid "" -"A home-made booklet with large black-and-white pictures of several types of " -"modern locks and general information on how to crack them open." +"A thick textbook for beginning drivers. It contains chapters on laws, safe " +"vehicle operation, and defensive driving concepts." msgstr "" +#. ~ Description for AAA Guide #: lang/json/BOOK_from_json.py -msgid "The Spirit of Aikido" -msgid_plural "The Spirit of Aikido" +msgid "" +"A tourist-centric guide to points of interest throughout the country. This " +"particular copy is apparently the Anonymous Anarchist's Annual: the cover " +"conceals a wealth of ways to help stick it to The Man, along with plenty of " +"advice for avoiding police." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Advanced Electronics" +msgid_plural "copies of Advanced Electronics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for Advanced Electronics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Aikido." +msgid "A college textbook on circuit design." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Practical Pugilism" -msgid_plural "Practical Pugilism" +msgid "Ham Radio Illustrated" +msgid_plural "issues of Ham Radio Illustrated" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Ham Radio Illustrated #: lang/json/BOOK_from_json.py msgid "" -"A complete guide to boxing. Let's get ready to rough-up some ruffians!" +"An amusing magazine about ham radio, with lots of diagrams and illustrations" +" for making your own electronic devices." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Capoeira 100" -msgid_plural "Capoeira 100" +msgid "What's a Transistor?" +msgid_plural "copies of What's a Transistor?" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for What's a Transistor? #: lang/json/BOOK_from_json.py -msgid "A complete guide to Capoeira." +msgid "A basic manual of electronics and circuit design." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Centipede Lu Feng" -msgid_plural "The Centipede Lu Feng" +msgid "101 Important Integrated Circuits" +msgid_plural "copies of 101 Important Integrated Circuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for 101 Important Integrated Circuits #: lang/json/BOOK_from_json.py -msgid "A complete guide to Centipede Kung Fu." +msgid "" +"This reference manual contains datasheets and pinout diagrams for 101 of the" +" most popular IC chips, including the 555 timer, LM358 op-amp, and LM317 " +"voltage regulator, along with logic chips from the 74xx family, and even the" +" 6502 8-bit processor. If you want to do anything useful with integrated " +"circuits, a reference like this would be indispensable." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Red Crane" -msgid_plural "The Red Crane" +msgid "Amateur Home Radio for Enthusiasts" +msgid_plural "copies of Amateur Home Radio for Enthusiasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for Amateur Home Radio for Enthusiasts #: lang/json/BOOK_from_json.py -msgid "A complete guide to Crane Kung Fu." +msgid "" +"A book about ham radio and citizen's band radio. It contains numerous " +"diagrams and illustrations explaining the science behind the electronics." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Jade Dragon" -msgid_plural "The Jade Dragon" +msgid "computer printout" +msgid_plural "computer printouts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for computer printout #: lang/json/BOOK_from_json.py -msgid "A complete guide to Dragon Kung Fu." +msgid "" +"One side of this sheet is printed with a meaningless jumble of characters, " +"but the other side shows a complicated, hand-drawn circuit diagram." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Practical Eskrima" -msgid_plural "Practical Eskrima" +msgid "Augmentative Tech Review" +msgid_plural "issues of Augmentative Tech Review" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Augmentative Tech Review #: lang/json/BOOK_from_json.py -msgid "A complete guide to Eskrima." +msgid "" +"This annual publication covers the various ways in which people use " +"technology to improve their bodies. There are a few in-depth and thoroughly" +" illustrated articles on bionic systems, though they tend to use too much " +"jargon." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Modern Swordsman" -msgid_plural "The Modern Swordsman" +msgid "lab journal-Herrera" +msgid_plural "lab journals-Herrera" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for lab journal-Herrera #: lang/json/BOOK_from_json.py -msgid "A complete guide to Fencing." +msgid "" +"This hefty binder contains a multitude of diagrams and technical " +"specifications for various electronic materials. Some of the diagrams use " +"symbols you've not seen before…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Kodokan Judo" -msgid_plural "Kodokan Judo" +msgid "2XI design binder-CLASSIFIED" +msgid_plural "2XI design binders-CLASSIFIED" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for 2XI design binder-CLASSIFIED #: lang/json/BOOK_from_json.py -msgid "A complete guide to Judo." +msgid "" +"This Doubletech Industries binder has several intimidating security warnings" +" on the cover. Probably because it contains complete design specs, " +"technical drawings, and test results for their military-grade bionic " +"implants." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Shotokan Karate Handbook" -msgid_plural "The Shotokan Karate Handbook" +msgid "plans for a radio repeater mod" +msgid_plural "plans for a radio repeater mod" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py -msgid "A complete guide to Shotokan Karate." +msgid "" +"Instructions on how to create a mod for a radio station terminal which " +"converts the entire system into a repeater." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Complete Krav Maga" -msgid_plural "Complete Krav Maga" +msgid "Electronic Circuit Theory" +msgid_plural "copies of Electronic Circuit Theory" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Electronic Circuit Theory #: lang/json/BOOK_from_json.py -msgid "A complete guide to Krav Maga." +msgid "" +"An advanced college textbook on circuit theory, design, and organization." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Deaf Leopard" -msgid_plural "The Deaf Leopard" +msgid "Robots for Fun & Profit" +msgid_plural "copies of Robots for Fun & Profit" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for Robots for Fun & Profit #: lang/json/BOOK_from_json.py -msgid "A complete guide to Leopard Kung Fu." +msgid "" +"A rare book on the design of robots, with lots of helpful step-by-step " +"guides." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Lizard Kuo Chui" -msgid_plural "The Lizard Kuo Chui" +msgid "trifacet handling procedures" +msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py -msgid "A complete guide to Lizard Kung Fu." +msgid "" +"A heavy and disparate binder detailing the deactivation, storage and " +"transport procedures for a so called \"Trifacet\" UVG. The pages and " +"schematics within have been compiled from the internal reports of a vast " +"array of governmental agencies, many of which you had never heard of before." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ultimate Muay Thai" -msgid_plural "Ultimate Muay Thai" +msgid "schematics" +msgid_plural "schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} -#: lang/json/BOOK_from_json.py -msgid "A complete guide to Muay Thai." -msgstr "" +#. ~ Description for schematics +#. ~ Description for animal +#. ~ Description for nearby fire +#. ~ Description for muscle +#. ~ Description for wind +#. ~ Description for sun light +#. ~ Description for metabolism +#. ~ Description for a smoking device and a source of flame +#. ~ Description for none +#. ~ Description for abstract map +#. ~ Description for seeing this is a bug +#. ~ Description for weapon +#: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/furniture_from_json.py lang/json/skill_from_json.py +msgid "seeing this is a bug" +msgid_plural "seeing this is a bug" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/BOOK_from_json.py -msgid "Essence of Ninjutsu" -msgid_plural "Essence of Ninjutsu" +msgid "nurse bot schematics" +msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Ninjutsu." +msgid "" +"Bearing the logo of Uncanny, these are assembly plans, design specs, and " +"technical drawings for the nurse bot. Most of this is useless to you, but " +"you could use the assembly plans to re-assemble the robot from salvaged " +"parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Book of Five Rings" -msgid_plural "The Book of Five Rings" +msgid "grocery bot schematics" +msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" -"A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" -"Ryu." +"Bearing the logo of Uncanny, these are assembly plans, design specs, and " +"technical drawings for the grocery bot. Most of this is useless to you, but" +" you could use the assembly plans to re-assemble the robot from salvaged " +"parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Modern Pankratiast" -msgid_plural "The Modern Pankratiast" +msgid "police bot schematics" +msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Pankration." +msgid "" +"Assembly plans, design specs, and technical drawings for the police bot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Scorpion Sun Chien" -msgid_plural "The Scorpion Sun Chien" +msgid "eyebot schematics" +msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Scorpion Kung Fu." +msgid "" +"Assembly plans, design specs, and technical drawings for the eyebot. Most " +"of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Indonesian Warrior" -msgid_plural "The Indonesian Warrior" +msgid "security bot schematics" +msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Pentjak Silat." +msgid "" +"Assembly plans, design specs, and technical drawings for the security bot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Black Snake" -msgid_plural "The Black Snake" +msgid "skitterbot schematics" +msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Snake Kung Fu." +msgid "" +"Assembly plans, design specs, and technical drawings for the skitterbot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Official Taekwondo Training Manual" -msgid_plural "Official Taekwondo Training Manual" +msgid "cleaner bot schematics" +msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Taekwondo." +msgid "" +"Assembly plans, design specs, and technical drawings for the cleaner bot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Becoming One with the Tao" -msgid_plural "Becoming One with the Tao" +msgid "miner bot schematics" +msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to T'ai Chi Ch'uan." +msgid "" +"Assembly plans, design specs, and technical drawings for the miner bot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The White Tiger" -msgid_plural "The White Tiger" +msgid "riot control bot schematics" +msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Tiger Kung Fu." +msgid "" +"Assembly plans, design specs, and technical drawings for the riot control " +"bot. Most of this is useless to you, but you could use the assembly plans " +"to re-assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Toad Lo Mang" -msgid_plural "The Toad Lo Mang" +msgid "lab defense bot schematics" +msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Toad Kung Fu." +msgid "" +"Assembly plans, design specs, and technical drawings for the lab defense " +"bot. Most of this is useless to you, but you could use the assembly plans " +"to re-assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Viper Wei Pai" -msgid_plural "The Viper Wei Pai" +msgid "dispatch schematics" +msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Viper Kung Fu." +msgid "" +"Bearing the logo of Northrop, these are assembly plans, design specs, and " +"technical drawings for the dispatch. Most of this is useless to you, but " +"you could use the assembly plans to re-assemble the robot from salvaged " +"parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Zui Quan and You" -msgid_plural "Zui Quan and You" +msgid "military dispatch schematics" +msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Zui Quan." +msgid "" +"Bearing the logo of Northrop, these are assembly plans, design specs, and " +"technical drawings for the military dispatch. Most of this is useless to " +"you, but you could use the assembly plans to re-assemble the robot from " +"salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Way of the Spear" -msgid_plural "The Way of the Spear" +msgid "anti-materiel turret schematics" +msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Sōjutsu." +msgid "" +"Assembly plans, design specs, and technical drawings for the anti-materiel " +"turret. Most of this is useless to you, but you could use the assembly " +"plans to re-assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Beautiful Springtime" -msgid_plural "Beautiful Springtime" +msgid "milspec searchlight schematics" +msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Wing Chun Kung-fu." +msgid "" +"Assembly plans, design specs, and technical drawings for the milspec " +"searchlight. Most of this is useless to you, but you could use the assembly" +" plans to re-assemble the robot from salvaged parts." msgstr "" -#: lang/json/BOOK_from_json.py lang/json/martial_art_from_json.py -#: lang/json/martial_art_from_json.py -msgid "Fior Di Battaglia" -msgid_plural "Fior Di Battaglia" +#: lang/json/BOOK_from_json.py +msgid "The Art of Glassblowing" +msgid_plural "copies of The Art of Glassblowing" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for The Art of Glassblowing #: lang/json/BOOK_from_json.py msgid "" -"A completely translated medieval guide teaching various techniques with " -"polearms, there is a chapter about the many variations of common polearms… " -"there are even pictures!" +"A textbook that illustrates the science and technique of the ancient art of " +"glassblowing." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Historic European Swordfighting" -msgid_plural "Historic European Swordfighting" +msgid "Plastics & Polymers: Projects for the Classroom" +msgid_plural "copies of Plastics & Polymers: Projects for the Classroom" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Plastics & Polymers: Projects for the Classroom #: lang/json/BOOK_from_json.py msgid "" -"A complete guide to medieval swordsmanship. Compares the German and Italian" -" traditions for a multitude of swords, in and out of armor, with and without" -" shield." +"A textbook that goes through types and material properties of various common" +" plastics, and how to use them in several common projects." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Internal Combustion Fundamentals" -msgid_plural "copies of Internal Combustion Fundamentals" +msgid "The Prop Builder's Molding and Casting Handbook" +msgid_plural "copies of The Prop Builder's Molding and Casting Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Internal Combustion Fundamentals +#. ~ Description for The Prop Builder's Molding and Casting Handbook #: lang/json/BOOK_from_json.py msgid "" -"A college-level textbook that details the operation, maintenance, and repair" -" of internal combustion engines." +"The first book to contain, in one comprehensive volume, every molding and " +"casting procedure of use to the theater props builder of any skill level. " +"The author demonstrates the techniques involved in over thirty materials " +"from papier-mache to breakaway glass." msgstr "" #: lang/json/BOOK_from_json.py -msgid "army improvised field repairs manual" -msgid_plural "army improvised field repairs manuals" +msgid "Antique Adornments" +msgid_plural "copies of Antique Adornments" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for army improvised field repairs manual +#. ~ Description for Antique Adornments #: lang/json/BOOK_from_json.py msgid "" -"A compact manual with faded print detailing a number of improvised field " -"repairs that can be made to vehicles." +"A comprehensive and illustrated history of crown, bracelet, necklace and " +"others." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Popular Mechanics" -msgid_plural "issues of Popular Mechanics" +msgid "Crafty Crafter's Quarterly" +msgid_plural "Crafty Crafter's Quarterlies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Popular Mechanics +#. ~ Description for Crafty Crafter's Quarterly #: lang/json/BOOK_from_json.py msgid "" -"A magazine about mechanical innovations. Full of entertaining articles and " -"advertisements for esoteric gadgets." +"A fun quarterly magazine all about macaroni art and things you can make by " +"supergluing found objects together." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Under the Hood" -msgid_plural "copies of Under the Hood" +msgid "101 Crafts for Beginners" +msgid_plural "copies of 101 Crafts for Beginners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Under the Hood +#. ~ Description for 101 Crafts for Beginners #: lang/json/BOOK_from_json.py -msgid "An advanced mechanics manual, covering all sorts of topics." +msgid "" +"A large, paperback book detailing a hundred and one beginner's projects in " +"fabrication." msgstr "" #: lang/json/BOOK_from_json.py -msgid "lab journal-Curie" -msgid_plural "lab journals-Curie" +msgid "The Fletcher's Friend" +msgid_plural "copies of The Fletcher's Friend" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lab journal-Curie +#. ~ Description for The Fletcher's Friend #: lang/json/BOOK_from_json.py msgid "" -"This lab notebook is filled with the collective discoveries and refinements " -"of a research team dedicated to nuclear energy. You don't think you're " -"ready to start a second Cataclysm, but the general information provided " -"might be useful…" +"This hefty book is devoted to folks looking to handcraft their own arrows. " +"It starts with a hip and snappy disclaimer about the risks, both physical " +"and legal, of using explosives and flammable materials. Look for its " +"companion, \"The Bowyer's Buddy\"!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Hot Rod Chassis & Suspension Handbook" -msgid_plural "copies of Hot Rod Handbook" +msgid "The Bowyer's Buddy" +msgid_plural "copies of The Bowyer's Buddy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Hot Rod Chassis & Suspension Handbook +#. ~ Description for The Bowyer's Buddy #: lang/json/BOOK_from_json.py msgid "" -"By learning the fundamentals of chassis building and suspension design you " -"will gain the critical knowledge needed to hot rod properly." +"This hefty book is dedicated to craftsfolk and outdoors-y types looking to " +"make their own bows. It recommends its companion volume \"The Fletcher's " +"Friend\" for instructions on producing their ammunition." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Mechanical Mastery" -msgid_plural "copies of Mechanical Mastery" +msgid "The Handloader's Helper" +msgid_plural "copies of The Handloader's Helper" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Mechanical Mastery +#. ~ Description for The Handloader's Helper #: lang/json/BOOK_from_json.py msgid "" -"An advanced guide on mechanics and welding, covering topics like \"Grinding " -"off rust\" and \"Making cursive E's\"." +"Everything you could ever want to know about handloading ammunition, sealed " +"with a… childproof cover. Apparently a liability thing, because the chapter" +" on explosive rounds covers them in excellent detail too." msgstr "" #: lang/json/BOOK_from_json.py -msgid "CQB Monthly" -msgid_plural "CQB Monthlies" +msgid "Rivtech design binder" +msgid_plural "Rivtech design binders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CQB Monthly +#. ~ Description for Rivtech design binder #: lang/json/BOOK_from_json.py msgid "" -"An in-depth look at various styles of close quarters fighting. There's an " -"amusing essay about dirty tricks in the front section." +"This Rivtech binder warns that \"Unauthorized readers are our best test " +"subjects.\" With good reason: it contains complete design specs and " +"technical drawings for their entire line of products." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Close Quarter Fighting Manual" -msgid_plural "copies of Close Quarter Fighting Manual" +msgid "lab journal-Gustav" +msgid_plural "lab journals-Gustav" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Close Quarter Fighting Manual +#. ~ Description for lab journal-Gustav #: lang/json/BOOK_from_json.py msgid "" -"A well-thumbed hardbound book which illustrates simple strategies and " -"techniques for close quarters combat encounters." +"This paper notebook is mostly full of boring logs, experimental observations" +" and notes. Mixed in, however, are musings on how to use the lab's vapor " +"deposition machine to deposit amorphous carbon in a diamond-like form onto " +"common metals. The author's intended goal was a better non-stick frying " +"pan, but you can think of a couple of better uses for it." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Streetfighter's Sidekick" +msgid_plural "copies of The Streetfighter's Sidekick" +msgstr[0] "Pomocník Pouličního Rváče" +msgstr[1] "výtisky Pomocníka Pouličního Rváče" +msgstr[2] "výtisků Pomocníka Pouličního Rváče" +msgstr[3] "výtisky Pomocníka Pouličního Rváče." + +#. ~ Description for The Streetfighter's Sidekick +#: lang/json/BOOK_from_json.py +msgid "" +"A sizable how-to guide for making hand-to-hand combat weapons. Though the " +"processes are thoroughly detailed and several illustrations are provided, " +"they rely heavily on technical jargon. More for machinists-turned-" +"weaponsmiths than streetfighters, really." +msgstr "" +"Slušně tlustá příručka pro tvorbu chladných zbraní. I když je velmi detailní" +" s množstvím obrázků, je plná technického žargonu. Zamýšlená spíše pro " +"odborné výrobce zbraní, než pro obyčejné pouliční rváče." + +#: lang/json/BOOK_from_json.py +msgid "The Art of Japanese Armormaking" +msgid_plural "copies of The Art of Japanese Armormaking" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Art of Japanese Armormaking +#: lang/json/BOOK_from_json.py +msgid "" +"This in-depth and technical text details various forms of ancient Japanese " +"armor crafting, and is well illustrated with lots of photos." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Arms and Armor of Imperial China" +msgid_plural "copies of Arms and Armor of Imperial China" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Arms and Armor of Imperial China +#: lang/json/BOOK_from_json.py +msgid "" +"This textbook details the military history of ancient China, with a " +"particular focus on the nature of historical arms and armor. It also " +"details some of the equipment used by other cultures that came into conflict" +" with the empire over various dynasties." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Studies in Historic Armorsmithing" +msgid_plural "copies of Studies in Historic Armorsmithing" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Studies in Historic Armorsmithing +#: lang/json/BOOK_from_json.py +msgid "" +"This in-depth and technical text details various forms of ancient European " +"armor crafting, and is well illustrated with lots of photos." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "DIY Compendium" +msgid_plural "copies of DIY Compendium" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for DIY Compendium +#: lang/json/BOOK_from_json.py +msgid "" +"A thick, hardbound book detailing countless projects for inventions that " +"claim to improve all aspects of life." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "A History of Firefighting" +msgid_plural "copies of A History of Firefighting" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for A History of Firefighting +#: lang/json/BOOK_from_json.py +msgid "" +"This in-depth and technical text details the history of firefighting from " +"ancient times into the modern era, with a focus on the technology used to " +"save lives." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Swords of the Samurai" +msgid_plural "copies of The Swords of the Samurai" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Swords of the Samurai +#: lang/json/BOOK_from_json.py +msgid "" +"This in-depth and technical text details various forms of ancient Japanese " +"sword smithing, and is well illustrated with step by step photo " +"instructions." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Historic Weaponsmith" +msgid_plural "copies of The Historic Weaponsmith" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Historic Weaponsmith +#: lang/json/BOOK_from_json.py +msgid "" +"This in-depth and technical text details various forms of ancient European " +"weapon smithing, and is well illustrated with step by step photo " +"instructions." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Welding and Metallurgy" +msgid_plural "copies of Welding and Metallurgy" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Welding and Metallurgy +#: lang/json/BOOK_from_json.py +msgid "" +"A rather technical textbook that illustrates the science and technique of " +"becoming a better welder." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "101 Home Repairs" +msgid_plural "copies of 101 Home Repairs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for 101 Home Repairs +#: lang/json/BOOK_from_json.py +msgid "" +"A paperback book detailing 101 home repair projects for the novice " +"carpenter." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Complete Home Repair Guide" +msgid_plural "copies of The Complete Home Repair Guide" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Complete Home Repair Guide +#: lang/json/BOOK_from_json.py +msgid "" +"A massive book that details virtually every aspect of remodeling and " +"repairing a home, with concise terminology aimed at experienced carpenters." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Birdhouse Monthly" +msgid_plural "Birdhouse Monthlies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Birdhouse Monthly +#: lang/json/BOOK_from_json.py +msgid "A riveting periodical all about birdhouses and their construction." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Building for Beginners" +msgid_plural "copies of Building for Beginners" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Building for Beginners +#: lang/json/BOOK_from_json.py +msgid "" +"A large, paperback book detailing several beginner's projects in " +"construction." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Engineering 301" +msgid_plural "copies of Engineering 301" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Engineering 301 +#: lang/json/BOOK_from_json.py +msgid "A textbook on civil engineering and construction." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Machinery's Handbook" +msgid_plural "copies of Machinery's Handbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Machinery's Handbook +#: lang/json/BOOK_from_json.py +msgid "" +"This classic reference work contains extensive, dense chapters and tables on" +" materials, metrology, toolmaking, gears, threading and more. This recent " +"edition includes extensive data on what were the latest techniques in " +"additive manufacturing. If you need to know how best complete a certain " +"machining operation, the answer lies somewhere in these pages." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Concrete Constructions" +msgid_plural "copies of Concrete Constructions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Concrete Constructions +#: lang/json/BOOK_from_json.py +msgid "" +"A collection of notable uses of concrete. Contains detailed directions on " +"how to mix and use cement to form useful aggregates." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Guide to Advanced Emergency Care" +msgid_plural "copies of Guide to Advanced Emergency Care" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Guide to Advanced Emergency Care +#: lang/json/BOOK_from_json.py +msgid "" +"A thick textbook for paramedics describing advanced lifesaving procedures " +"and field-expedient care methods." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Paramedics" +msgid_plural "issues of Paramedics" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Paramedics +#: lang/json/BOOK_from_json.py +msgid "An educational magazine for EMTs." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Big Book of First Aid" +msgid_plural "copies of The Big Book of First Aid" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Big Book of First Aid +#: lang/json/BOOK_from_json.py +msgid "It's big and heavy, but full of great information about first aid." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Pocket Guide to First Aid" +msgid_plural "copies of Pocket Guide to First Aid" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Pocket Guide to First Aid +#: lang/json/BOOK_from_json.py +msgid "" +"This pocket-sized leather-bound guide to first aid combines a wealth of " +"concise information with simple to follow instructions and easy to read " +"illustrations." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "First Responder Handbook" +msgid_plural "copies of First Responder Handbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for First Responder Handbook +#: lang/json/BOOK_from_json.py +msgid "" +"A hardbound book detailing advanced first aid techniques and field-expedient" +" medical care." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "First Aid Kit Instruction Booklet" +msgid_plural "copies of First Aid Kit Instruction Booklet" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for First Aid Kit Instruction Booklet +#: lang/json/BOOK_from_json.py +msgid "Illustrated how-to guide for your first aid kit." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Physicians' Desk Reference" +msgid_plural "copies of Physicians' Desk Reference" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Physicians' Desk Reference +#: lang/json/BOOK_from_json.py +msgid "" +"This hefty volume contains all the legally mandated information relevant to " +"physicians for writing prescriptions, generously supported by the efforts " +"and contributions of major pharmaceutical companies. For the most part, it " +"provides information identical to what is available on that of medication " +"packaging inserts, and cannot match the completeness of digital " +"pharmaceutical references like Medisoft. At least it doesn't need power to " +"be used." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Merck Veterinary Manual" +msgid_plural "copies of Merck Veterinary Manual" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Merck Veterinary Manual +#: lang/json/BOOK_from_json.py +msgid "" +"This expansive text covers 'all domestic species and diseases in veterinary " +"medicine worldwide'. Should you need information regarding zoonotic " +"diseases, off-label use of medication for animals, common dysfunctions and " +"diseases of animals, or any other veterinary reference info, this is your " +"book. There are some interesting new chapters on animal cloning in this " +"edition." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Textbook of Advanced Toxicology" +msgid_plural "copies of Textbook of Advanced Toxicology" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Textbook of Advanced Toxicology +#: lang/json/BOOK_from_json.py +msgid "" +"This unassuming volume details the broad spectrum of chemical and biological" +" toxins known to modern medicine. While the obvious focus of the book is " +"the therapy of such poisonings, there are lengthy sections describing the " +"structure and synthesis of some compounds of interest." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Guns n Ammo" +msgid_plural "issues of Guns n Ammo" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Guns n Ammo +#: lang/json/BOOK_from_json.py +msgid "Reviews of firearms, and various useful tips about their use." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Gun Owner's Handbook" +msgid_plural "copies of The Gun Owner's Handbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Gun Owner's Handbook +#: lang/json/BOOK_from_json.py +msgid "" +"A thick soft-cover book that claims to be a complete guide to safely " +"operating, maintaining, and repairing firearms." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Pocket Guide to Firearm Safety" +msgid_plural "copies of Pocket Guide to Firearm Safety" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Pocket Guide to Firearm Safety +#: lang/json/BOOK_from_json.py +msgid "" +"This pocket-sized leather-bound guide to firearm safety combines a wealth of" +" concise information with simple to follow instructions and easy to read " +"illustrations." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Ballistics: Theory, Design, and Application" +msgid_plural "copies of Ballistics: Theory, Design, and Application" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Ballistics: Theory, Design, and Application +#: lang/json/BOOK_from_json.py +msgid "" +"This hefty, hardbound textbook is written in obtuse, complex language. If " +"you already knew a bit about engineering and fabrication, it might be a " +"useful reference on gunsmithing and design, but without that knowledge it'd " +"be better used to prop up a table." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "High Explosives Quarterly" +msgid_plural "High Explosives Quarterlies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for High Explosives Quarterly +#: lang/json/BOOK_from_json.py +msgid "" +"An interesting quarterly report about rocket launchers and recoilless " +"rifles. There are lots of large, exciting photos of explosions and " +"weaponry." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Jane's Mortars and Rocket Launchers" +msgid_plural "copies of Jane's Mortars and Rocket Launchers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Jane's Mortars and Rocket Launchers +#: lang/json/BOOK_from_json.py +msgid "" +"An incredibly detailed guide to modern rockets, mortars, grenade launchers, " +"and recoilless weaponry. Lavishly illustrated with color photographs, it " +"contains a wealth of information." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "MIT Guide to Lock Picking" +msgid_plural "copies of MIT Guide to Lock Picking" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for MIT Guide to Lock Picking +#: lang/json/BOOK_from_json.py +msgid "" +"A home-made booklet with large black-and-white pictures of several types of " +"modern locks and general information on how to crack them open." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Spirit of Aikido" +msgid_plural "The Spirit of Aikido" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Spirit of Aikido +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Aikido." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Practical Pugilism" +msgid_plural "Practical Pugilism" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Practical Pugilism +#: lang/json/BOOK_from_json.py +msgid "" +"A complete guide to boxing. Let's get ready to rough-up some ruffians!" +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Capoeira 100" +msgid_plural "Capoeira 100" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Capoeira 100 +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Capoeira." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Centipede Lu Feng" +msgid_plural "The Centipede Lu Feng" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Centipede Lu Feng +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Centipede Kung Fu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Red Crane" +msgid_plural "The Red Crane" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Red Crane +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Crane Kung Fu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Jade Dragon" +msgid_plural "The Jade Dragon" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Jade Dragon +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Dragon Kung Fu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Practical Eskrima" +msgid_plural "Practical Eskrima" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Practical Eskrima +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Eskrima." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Modern Swordsman" +msgid_plural "The Modern Swordsman" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Modern Swordsman +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Fencing." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Kodokan Judo" +msgid_plural "Kodokan Judo" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Kodokan Judo +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Judo." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Shotokan Karate Handbook" +msgid_plural "The Shotokan Karate Handbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Shotokan Karate Handbook +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Shotokan Karate." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Complete Krav Maga" +msgid_plural "Complete Krav Maga" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Complete Krav Maga +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Krav Maga." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Deaf Leopard" +msgid_plural "The Deaf Leopard" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Deaf Leopard +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Leopard Kung Fu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Lizard Kuo Chui" +msgid_plural "The Lizard Kuo Chui" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Lizard Kuo Chui +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Lizard Kung Fu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Ultimate Muay Thai" +msgid_plural "Ultimate Muay Thai" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Ultimate Muay Thai +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Muay Thai." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Essence of Ninjutsu" +msgid_plural "Essence of Ninjutsu" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Essence of Ninjutsu +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Ninjutsu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Book of Five Rings" +msgid_plural "The Book of Five Rings" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Book of Five Rings +#: lang/json/BOOK_from_json.py +msgid "" +"A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" +"Ryu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Modern Pankratiast" +msgid_plural "The Modern Pankratiast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Modern Pankratiast +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Pankration." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Scorpion Sun Chien" +msgid_plural "The Scorpion Sun Chien" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Scorpion Sun Chien +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Scorpion Kung Fu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Indonesian Warrior" +msgid_plural "The Indonesian Warrior" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Indonesian Warrior +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Pentjak Silat." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Black Snake" +msgid_plural "The Black Snake" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Black Snake +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Snake Kung Fu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Official Taekwondo Training Manual" +msgid_plural "Official Taekwondo Training Manual" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Official Taekwondo Training Manual +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Taekwondo." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Becoming One with the Tao" +msgid_plural "Becoming One with the Tao" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Becoming One with the Tao +#: lang/json/BOOK_from_json.py +msgid "A complete guide to T'ai Chi Ch'uan." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The White Tiger" +msgid_plural "The White Tiger" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The White Tiger +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Tiger Kung Fu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Toad Lo Mang" +msgid_plural "The Toad Lo Mang" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Toad Lo Mang +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Toad Kung Fu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Viper Wei Pai" +msgid_plural "The Viper Wei Pai" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Viper Wei Pai +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Viper Kung Fu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Zui Quan and You" +msgid_plural "Zui Quan and You" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Zui Quan and You +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Zui Quan." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Way of the Spear" +msgid_plural "The Way of the Spear" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Way of the Spear +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Sōjutsu." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Beautiful Springtime" +msgid_plural "Beautiful Springtime" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Beautiful Springtime +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Wing Chun Kung-fu." +msgstr "" + +#: lang/json/BOOK_from_json.py lang/json/martial_art_from_json.py +#: lang/json/martial_art_from_json.py +msgid "Fior Di Battaglia" +msgid_plural "Fior Di Battaglia" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Fior Di Battaglia +#: lang/json/BOOK_from_json.py +msgid "" +"A completely translated medieval guide teaching various techniques with " +"polearms, there is a chapter about the many variations of common polearms… " +"there are even pictures!" +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Historic European Swordfighting" +msgid_plural "Historic European Swordfighting" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Historic European Swordfighting +#: lang/json/BOOK_from_json.py +msgid "" +"A complete guide to medieval swordsmanship. Compares the German and Italian" +" traditions for a multitude of swords, in and out of armor, with and without" +" shield." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Internal Combustion Fundamentals" +msgid_plural "copies of Internal Combustion Fundamentals" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Internal Combustion Fundamentals +#: lang/json/BOOK_from_json.py +msgid "" +"A college-level textbook that details the operation, maintenance, and repair" +" of internal combustion engines." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "army improvised field repairs manual" +msgid_plural "army improvised field repairs manuals" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for army improvised field repairs manual +#: lang/json/BOOK_from_json.py +msgid "" +"A compact manual with faded print detailing a number of improvised field " +"repairs that can be made to vehicles." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Popular Mechanics" +msgid_plural "issues of Popular Mechanics" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Popular Mechanics +#: lang/json/BOOK_from_json.py +msgid "" +"A magazine about mechanical innovations. Full of entertaining articles and " +"advertisements for esoteric gadgets." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Under the Hood" +msgid_plural "copies of Under the Hood" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Under the Hood +#: lang/json/BOOK_from_json.py +msgid "An advanced mechanics manual, covering all sorts of topics." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "lab journal-Curie" +msgid_plural "lab journals-Curie" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for lab journal-Curie +#: lang/json/BOOK_from_json.py +msgid "" +"This lab notebook is filled with the collective discoveries and refinements " +"of a research team dedicated to nuclear energy. You don't think you're " +"ready to start a second Cataclysm, but the general information provided " +"might be useful…" +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Hot Rod Chassis & Suspension Handbook" +msgid_plural "copies of Hot Rod Handbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Hot Rod Chassis & Suspension Handbook +#: lang/json/BOOK_from_json.py +msgid "" +"By learning the fundamentals of chassis building and suspension design you " +"will gain the critical knowledge needed to hot rod properly." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Mechanical Mastery" +msgid_plural "copies of Mechanical Mastery" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Mechanical Mastery +#: lang/json/BOOK_from_json.py +msgid "" +"An advanced guide on mechanics and welding, covering topics like \"Grinding " +"off rust\" and \"Making cursive E's\"." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "CQB Monthly" +msgid_plural "CQB Monthlies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for CQB Monthly +#: lang/json/BOOK_from_json.py +msgid "" +"An in-depth look at various styles of close quarters fighting. There's an " +"amusing essay about dirty tricks in the front section." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Close Quarter Fighting Manual" +msgid_plural "copies of Close Quarter Fighting Manual" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Close Quarter Fighting Manual +#: lang/json/BOOK_from_json.py +msgid "" +"A well-thumbed hardbound book which illustrates simple strategies and " +"techniques for close quarters combat encounters." msgstr "" #: lang/json/BOOK_from_json.py @@ -33096,7 +33109,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -34095,7 +34108,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -34108,7 +34121,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "Staré záznamy počasí které jsou tak zajímavé jako kámen." @@ -38089,7 +38102,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -38106,7 +38119,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -38123,7 +38136,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -38140,7 +38153,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -38157,7 +38170,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -38415,7 +38428,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -38428,7 +38441,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -38441,7 +38454,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -38456,7 +38469,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -38469,7 +38482,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -38484,7 +38497,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -38500,7 +38513,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -38513,7 +38526,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -38528,7 +38541,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -38541,7 +38554,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -38572,6 +38585,23 @@ msgstr[3] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -40966,7 +40996,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -41032,7 +41062,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" @@ -41041,7 +41071,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -41056,7 +41086,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -41071,7 +41101,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -41084,7 +41114,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -41097,7 +41127,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -41112,7 +41142,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -41127,7 +41157,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "" @@ -41140,7 +41170,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -41166,7 +41196,7 @@ msgstr[1] "kyselina sírová" msgstr[2] "kyselniny sírové" msgstr[3] "kyselina sírová" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -41187,7 +41217,7 @@ msgstr[1] "kyselina chlorovodíková" msgstr[2] "kyseliny chlorovodíkové" msgstr[3] "kyselina chlorovodíková" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -41206,7 +41236,7 @@ msgstr[1] "dusičná kyselina" msgstr[2] "dusičné kyseliny" msgstr[3] "dusičná kyselina" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -41246,7 +41276,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -41259,7 +41289,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -41274,7 +41304,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -41291,7 +41321,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -41308,7 +41338,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -41324,7 +41354,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -41342,7 +41372,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -41357,7 +41387,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -41373,7 +41403,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -41390,7 +41420,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -41405,7 +41435,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -41420,7 +41450,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -41435,7 +41465,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -41448,7 +41478,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -41537,13 +41567,26 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -41590,7 +41633,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -41603,7 +41646,7 @@ msgstr[1] "ryzlink" msgstr[2] "ryzlink" msgstr[3] "ryzlink" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "Šumivé bílé víno vyrobené z nejušlechtilejších hroznů světa." @@ -41616,7 +41659,7 @@ msgstr[1] "chardonnay" msgstr[2] "chardonnay" msgstr[3] "chardonnay" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "Nejoblíbenější víno v Americe, a z dobrých důvodů." @@ -41629,7 +41672,7 @@ msgstr[1] "cabernet sauvignon" msgstr[2] "cabernet sauvignon" msgstr[3] "cabernet sauvignon" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -41646,7 +41689,7 @@ msgstr[1] "pinot noir" msgstr[2] "pinot noir" msgstr[3] "pinot noir" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -41663,7 +41706,7 @@ msgstr[1] "marsala" msgstr[2] "marsala" msgstr[3] "marsala" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -41678,7 +41721,7 @@ msgstr[1] "vermut" msgstr[2] "vermut" msgstr[3] "vermut" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -41695,7 +41738,7 @@ msgstr[1] "ječmenné víno" msgstr[2] "ječmenné víno" msgstr[3] "ječmenné víno" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "Velmi silné pivo." @@ -41708,7 +41751,7 @@ msgstr[1] "whiskey" msgstr[2] "whiskey" msgstr[3] "whiskey" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -41722,7 +41765,7 @@ msgstr[1] "vodka" msgstr[2] "vodka" msgstr[3] "vodka" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -41739,7 +41782,7 @@ msgstr[1] "džin" msgstr[2] "džin" msgstr[3] "džin" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -41756,7 +41799,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -41771,7 +41814,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -41786,7 +41829,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -41799,7 +41842,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "" @@ -41812,7 +41855,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -41825,7 +41868,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -41838,7 +41881,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -41852,7 +41895,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -41867,7 +41910,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -41882,7 +41925,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -41913,7 +41956,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "" @@ -41926,7 +41969,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -41939,7 +41982,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -41954,7 +41997,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -41968,7 +42011,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -41983,7 +42026,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -41996,7 +42039,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -42011,7 +42054,7 @@ msgstr[1] "domácí pivo" msgstr[2] "domácí pivo" msgstr[3] "domácí pivo" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -42026,7 +42069,7 @@ msgstr[1] "samohonka" msgstr[2] "samohonka" msgstr[3] "samohonka" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -42045,7 +42088,7 @@ msgstr[1] "evropský pilsner" msgstr[2] "evropský pilsner" msgstr[3] "evropský pilsner" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -42062,7 +42105,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -42077,7 +42120,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -42092,7 +42135,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -42105,7 +42148,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -42120,7 +42163,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -42167,7 +42210,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "" @@ -42180,7 +42223,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -42193,7 +42236,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -42206,7 +42249,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -42219,7 +42262,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -42233,7 +42276,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -42248,7 +42291,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -42261,7 +42304,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "" @@ -42274,7 +42317,7 @@ msgstr[1] "houba" msgstr[2] "houba" msgstr[3] "houba" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -42292,7 +42335,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -42397,7 +42440,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -42410,7 +42453,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -42423,7 +42466,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -42438,7 +42481,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -42453,7 +42496,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "" @@ -42466,7 +42509,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "Zdravý a výživný." @@ -42479,7 +42522,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -42494,7 +42537,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -42507,7 +42550,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -42522,7 +42565,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -42536,7 +42579,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -42549,7 +42592,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -42564,7 +42607,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "" @@ -42603,7 +42646,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -42631,7 +42674,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -42647,7 +42690,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -42660,7 +42703,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -42965,18 +43008,18 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -42989,8 +43032,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -43005,14 +43048,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -43025,7 +43068,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -43059,7 +43102,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "" @@ -43176,7 +43219,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -43293,7 +43336,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -43338,7 +43381,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -43395,7 +43438,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -43494,7 +43537,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -43510,7 +43553,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -43523,7 +43566,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -43539,7 +43582,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -43580,8 +43623,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" @@ -43590,8 +43632,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" @@ -43600,8 +43641,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" @@ -43610,7 +43650,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -43624,7 +43664,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -43638,7 +43678,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" @@ -43647,8 +43687,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" @@ -43657,18 +43696,13 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -43693,7 +43727,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -43756,7 +43790,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -43817,7 +43851,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -43830,7 +43864,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -43925,7 +43959,7 @@ msgstr[3] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -44099,7 +44133,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -44376,7 +44410,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -44497,7 +44531,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -44510,7 +44544,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -44552,6 +44586,37 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" @@ -44560,7 +44625,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -44576,7 +44641,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -44591,7 +44656,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -44604,7 +44669,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -44618,7 +44683,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -44633,7 +44698,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -44648,7 +44713,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -44663,7 +44728,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -44678,7 +44743,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -44708,7 +44773,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -44737,7 +44802,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -44765,7 +44830,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -44778,7 +44843,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -44791,7 +44856,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -44806,7 +44871,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -44823,7 +44888,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -44839,7 +44904,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -44853,7 +44918,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -44881,7 +44946,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -44895,7 +44960,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -44909,7 +44974,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -44952,7 +45017,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -44967,7 +45032,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "" @@ -44993,7 +45058,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -45006,7 +45071,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -45021,7 +45086,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -45036,7 +45101,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -45049,7 +45114,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "" @@ -45092,7 +45157,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -45108,7 +45173,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -45136,7 +45201,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" @@ -45149,7 +45214,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -45179,7 +45244,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -45195,7 +45260,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -45214,7 +45279,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -45296,7 +45361,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -45309,7 +45374,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -45372,7 +45437,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -45385,7 +45450,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -45441,7 +45506,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -45471,7 +45536,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -45484,7 +45549,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -45555,7 +45620,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -45599,7 +45664,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -45642,13 +45707,13 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -45678,7 +45743,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "" @@ -45706,7 +45771,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -45749,7 +45814,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -45764,7 +45829,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -45777,7 +45842,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -45929,7 +45994,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "Voda a cukerný roztok získaný extrakcí z javorového sirupu." @@ -45942,7 +46007,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -45971,7 +46036,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -45986,7 +46051,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -46001,7 +46066,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -46016,7 +46081,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "" @@ -46029,7 +46094,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -46042,7 +46107,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -46057,7 +46122,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "" @@ -46070,7 +46135,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -46482,7 +46547,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "" @@ -46508,7 +46573,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -46523,7 +46588,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -46538,7 +46603,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -46553,7 +46618,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -46775,7 +46840,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -46857,7 +46922,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -46883,7 +46948,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -46924,7 +46989,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -46940,7 +47005,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -46969,7 +47034,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -46984,7 +47049,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -47012,7 +47077,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -47462,7 +47527,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -47522,7 +47587,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -47582,7 +47647,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -47597,7 +47662,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -47719,12 +47784,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -47737,7 +47802,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -47752,7 +47817,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -47767,7 +47832,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "" @@ -47780,7 +47845,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -47793,7 +47858,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "" @@ -47832,7 +47897,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -47845,7 +47910,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -47886,7 +47951,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -47899,12 +47964,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -47960,7 +48025,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -48046,7 +48111,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -48061,7 +48126,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -48117,7 +48182,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -48130,7 +48195,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -48156,7 +48221,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -48186,8 +48251,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "" @@ -48200,7 +48265,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "" @@ -48213,7 +48278,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -48228,7 +48293,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -48243,8 +48308,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" @@ -48253,8 +48317,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" @@ -48263,8 +48326,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" @@ -48273,7 +48335,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -48288,8 +48350,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" @@ -48298,8 +48360,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" @@ -48308,8 +48370,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" @@ -48318,7 +48380,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -48333,7 +48395,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -48348,7 +48410,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -48434,7 +48496,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" @@ -48447,7 +48509,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -48535,7 +48597,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "" @@ -48637,8 +48699,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -48803,7 +48864,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" @@ -48812,8 +48873,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" @@ -48822,17 +48882,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -48855,8 +48910,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" @@ -48865,7 +48919,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -48888,8 +48942,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" @@ -48898,7 +48951,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -48934,7 +48987,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" @@ -48943,8 +48996,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" @@ -48953,8 +49005,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -48979,7 +49030,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -49038,7 +49089,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -49053,8 +49104,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -49064,7 +49114,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -49080,7 +49130,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -49090,8 +49140,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -49101,8 +49150,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -49127,9 +49175,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -49139,9 +49186,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -49151,9 +49197,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -49179,7 +49224,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -49194,7 +49239,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -49209,7 +49254,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -49223,7 +49268,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -49238,7 +49283,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -49277,8 +49322,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -49303,7 +49347,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -49313,8 +49357,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -49324,8 +49367,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -49335,7 +49377,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -49367,7 +49409,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -49411,8 +49453,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" @@ -49421,8 +49462,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" @@ -49431,8 +49472,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -49457,7 +49497,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -49467,8 +49507,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -49478,8 +49517,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -49489,7 +49527,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -49505,8 +49543,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" @@ -49515,7 +49552,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -49525,8 +49562,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -49564,8 +49600,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" @@ -49574,8 +49609,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" @@ -49584,8 +49619,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -49607,7 +49641,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -49622,7 +49656,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "" @@ -49635,7 +49669,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "" @@ -49661,7 +49695,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -49687,8 +49721,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" @@ -49697,8 +49730,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -49722,8 +49754,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" @@ -49732,7 +49763,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" @@ -49745,8 +49776,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" @@ -49755,7 +49785,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" @@ -49768,8 +49798,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" @@ -49778,7 +49808,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -49793,7 +49823,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" @@ -49802,8 +49832,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" @@ -49812,7 +49841,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -49835,7 +49864,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" @@ -49844,8 +49873,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" @@ -49854,8 +49882,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -49893,8 +49920,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" @@ -49903,8 +49929,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" @@ -49913,8 +49939,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" @@ -49923,7 +49949,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -49938,7 +49964,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" @@ -49947,8 +49973,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -49972,8 +49997,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" @@ -49982,7 +50006,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -50005,8 +50029,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" @@ -50015,7 +50038,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -50025,8 +50048,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -50036,7 +50058,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -50049,7 +50071,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -50059,8 +50081,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -50070,7 +50091,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -50095,7 +50116,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" @@ -50108,8 +50129,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -50119,7 +50139,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -50130,8 +50150,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -50171,7 +50190,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" @@ -50180,8 +50199,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" @@ -50190,8 +50208,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -50214,7 +50231,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" @@ -50223,8 +50240,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" @@ -50233,8 +50249,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -50259,7 +50274,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -50269,8 +50284,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -50280,7 +50294,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -50305,8 +50319,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" @@ -50315,7 +50328,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -50339,10 +50352,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -50352,12 +50363,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -50397,9 +50407,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -50426,7 +50435,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -50441,8 +50450,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -50452,7 +50460,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -50467,7 +50475,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -50495,7 +50503,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -50520,8 +50528,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -50546,8 +50553,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" @@ -50556,7 +50562,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -50579,7 +50585,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" @@ -50588,8 +50594,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -50632,12 +50637,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -50690,7 +50695,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -50721,7 +50726,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -50811,7 +50816,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -50875,7 +50880,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -50935,12 +50940,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -50956,7 +50961,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -51004,7 +51009,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -51020,12 +51025,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "Vykouřil jsi trochu cracku. Máma by byla pyšná." -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -51040,7 +51045,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -51056,7 +51061,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -51083,7 +51088,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -51098,12 +51103,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -51122,12 +51127,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -51145,12 +51150,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -51166,16 +51171,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -51191,7 +51194,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -51207,7 +51210,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -51223,7 +51226,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -51239,7 +51242,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -51255,7 +51258,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -51272,7 +51275,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -51289,7 +51292,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -51305,7 +51308,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -51321,12 +51324,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -51416,7 +51419,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -51445,13 +51448,13 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -51537,7 +51540,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -51553,7 +51556,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -51614,7 +51617,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -51649,7 +51652,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -51700,7 +51703,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -51713,15 +51716,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -51738,7 +51740,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -51774,7 +51776,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -51804,7 +51806,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -52081,12 +52083,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -52102,7 +52104,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -52133,7 +52135,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -52148,7 +52150,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -52223,7 +52225,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -52240,7 +52242,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -52793,7 +52795,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -53081,9 +53083,8 @@ msgstr[3] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -53162,7 +53163,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -53317,7 +53318,8 @@ msgstr[3] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -53485,7 +53487,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -53498,7 +53500,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -53513,7 +53515,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -53527,7 +53529,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -53540,7 +53542,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -53553,7 +53555,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -53567,7 +53569,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -53580,7 +53582,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "" @@ -53593,7 +53595,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -53608,7 +53610,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -53621,7 +53623,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -53634,7 +53636,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -53647,7 +53649,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -53662,7 +53664,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -53675,7 +53677,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -53690,7 +53692,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -53703,7 +53705,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -53718,7 +53720,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -53731,7 +53733,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -53744,7 +53746,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -53757,7 +53759,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -53772,7 +53774,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -53839,7 +53841,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -53854,7 +53856,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -53867,7 +53869,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -53882,7 +53884,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -53896,7 +53898,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "" @@ -53961,7 +53963,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -54210,7 +54212,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -54242,7 +54244,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -54256,7 +54258,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -54269,7 +54271,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -54283,7 +54285,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -54296,7 +54298,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -54309,7 +54311,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -54364,7 +54366,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -54379,7 +54381,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "" @@ -54392,8 +54394,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -54416,7 +54418,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -54429,7 +54431,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -54459,7 +54461,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -54473,7 +54475,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -54489,7 +54491,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -54502,7 +54504,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -54515,7 +54517,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -54530,7 +54532,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -54545,7 +54547,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -54590,7 +54592,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -54605,7 +54607,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -54620,7 +54622,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -54635,7 +54637,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -54650,7 +54652,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -54665,7 +54667,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -54812,7 +54814,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -54857,8 +54859,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" @@ -54867,7 +54868,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -54877,14 +54878,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -54909,8 +54907,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" @@ -54919,7 +54916,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -54929,7 +54926,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -54962,8 +54959,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" @@ -54972,7 +54968,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -54997,7 +54993,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -55007,7 +55003,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -55086,7 +55082,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -55099,7 +55095,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" @@ -55112,7 +55108,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "" @@ -55125,7 +55121,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "" @@ -55138,7 +55134,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -55151,7 +55147,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -55166,7 +55162,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -55179,7 +55175,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "" @@ -55233,7 +55229,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "Červené a sladké ovoce, které roste na stromě." @@ -55260,7 +55256,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -55338,7 +55334,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "" @@ -55404,7 +55400,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "" @@ -55453,7 +55449,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -55467,7 +55463,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "" @@ -55480,7 +55476,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -55508,7 +55504,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -55565,7 +55561,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -55593,7 +55589,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "" @@ -55606,7 +55602,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -55677,7 +55673,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -55693,7 +55689,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -55836,7 +55832,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -55879,7 +55875,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -55894,7 +55890,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -55909,7 +55905,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -56023,7 +56019,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -56064,7 +56060,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -56079,7 +56075,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -56092,7 +56088,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -56135,8 +56131,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -56152,6 +56147,31 @@ msgid "" "nutritious!" msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -56225,7 +56245,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -56281,8 +56301,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" @@ -56291,8 +56310,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" @@ -56301,10 +56320,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -56442,7 +56459,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -56455,7 +56472,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "" @@ -56472,7 +56489,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "" @@ -56489,7 +56506,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "" @@ -56506,7 +56523,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "" @@ -56523,7 +56540,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -56540,7 +56557,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -56557,7 +56574,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -56574,7 +56591,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "" @@ -56591,7 +56608,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "" @@ -56608,7 +56625,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -56625,7 +56642,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -56642,7 +56659,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -56659,7 +56676,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "" @@ -56672,7 +56689,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "" @@ -56685,7 +56702,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "" @@ -56698,7 +56715,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "" @@ -56711,7 +56728,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "" @@ -56724,7 +56741,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -56741,7 +56758,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "" @@ -56754,7 +56771,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "" @@ -56767,7 +56784,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "" @@ -56780,7 +56797,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "" @@ -56797,7 +56814,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -56814,7 +56831,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -56831,7 +56848,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -56844,7 +56861,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -56857,7 +56874,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -56870,7 +56887,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -56889,7 +56906,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -56919,7 +56936,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "" @@ -56932,7 +56949,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "" @@ -56949,7 +56966,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "" @@ -56962,7 +56979,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "" @@ -56992,7 +57009,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -57027,7 +57044,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -57044,7 +57061,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -57053,7 +57070,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -57070,7 +57087,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -57091,7 +57108,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -57104,7 +57121,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -57117,7 +57134,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -57139,7 +57156,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -57152,7 +57169,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -57165,7 +57182,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -57178,7 +57195,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -57191,7 +57208,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -57208,7 +57225,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -57225,7 +57242,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -57242,7 +57259,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -57259,7 +57276,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -57272,7 +57289,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -57285,7 +57302,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -57305,7 +57322,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "" @@ -57318,7 +57335,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "" @@ -57339,7 +57356,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "" @@ -57360,7 +57377,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -57390,7 +57407,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "" @@ -57403,7 +57420,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -57416,7 +57433,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -57433,7 +57450,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -57450,7 +57467,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -57463,7 +57480,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -57476,7 +57493,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -57489,7 +57506,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -57515,8 +57532,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -57552,7 +57568,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" @@ -57561,8 +57577,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -57610,8 +57625,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -57633,10 +57647,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -57710,7 +57722,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" @@ -57738,7 +57750,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -57753,7 +57765,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -57768,7 +57780,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -57781,7 +57793,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -57796,7 +57808,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "" @@ -57809,7 +57821,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -57824,7 +57836,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -57837,7 +57849,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -57850,7 +57862,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -57865,7 +57877,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -57882,7 +57894,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -57897,7 +57909,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "" @@ -57915,7 +57927,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -57973,7 +57985,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -57988,7 +58000,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" @@ -58001,7 +58013,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -58015,7 +58027,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -58028,7 +58040,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -58071,7 +58083,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -58098,7 +58110,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -58112,7 +58124,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "" @@ -58125,7 +58137,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -58138,7 +58150,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -58151,7 +58163,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -58166,7 +58178,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "" @@ -58179,7 +58191,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" @@ -58192,7 +58204,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -58207,7 +58219,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "" @@ -58220,7 +58232,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "" @@ -58233,7 +58245,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -58248,7 +58260,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -58261,7 +58273,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -58276,7 +58288,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -58359,7 +58371,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -58402,7 +58414,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "" @@ -58429,7 +58441,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -58474,7 +58486,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -58502,7 +58514,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -58590,7 +58602,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -58603,7 +58615,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -58618,7 +58630,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -58648,7 +58660,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -58676,7 +58688,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -58689,7 +58701,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -58709,7 +58721,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "" @@ -58722,7 +58734,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -58737,7 +58749,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -58752,7 +58764,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "" @@ -58765,7 +58777,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -58778,7 +58790,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -58791,7 +58803,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "" @@ -58804,7 +58816,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -58819,14 +58831,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "" @@ -58839,7 +58851,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -58854,7 +58866,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -58954,7 +58966,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -58995,7 +59007,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -59023,7 +59035,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -59247,7 +59259,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -59260,7 +59272,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -59273,7 +59285,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -59286,7 +59298,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -59299,7 +59311,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -59312,7 +59324,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -59369,7 +59381,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -59423,7 +59435,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -59438,7 +59450,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -59485,7 +59497,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -59613,7 +59625,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -59629,7 +59641,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -59733,7 +59745,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -59749,7 +59761,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -59765,7 +59777,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -59779,7 +59791,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -59794,7 +59806,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -59857,7 +59869,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -59875,7 +59887,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -59891,7 +59903,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -59907,7 +59919,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -59976,7 +59988,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -59992,7 +60004,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -60006,7 +60018,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -60034,7 +60046,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -60064,7 +60076,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -60080,7 +60092,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -60098,7 +60110,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -60145,7 +60157,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -60217,7 +60229,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -60240,7 +60252,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -60565,8 +60577,8 @@ msgstr[2] "" msgstr[3] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -60580,6 +60592,22 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -60636,6 +60664,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -60796,6 +60832,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -60844,30 +60888,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -61216,7 +61236,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -61292,7 +61312,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -61360,14 +61380,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -61454,7 +61474,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -61463,7 +61483,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -61477,7 +61497,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -61490,7 +61510,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -61505,7 +61525,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -61526,7 +61546,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -61542,7 +61562,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -62247,7 +62267,7 @@ msgstr[1] "kamenné soli" msgstr[2] "kamená sůl" msgstr[3] "kamená sůl" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -62261,7 +62281,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -62276,7 +62296,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -62319,7 +62339,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -62332,7 +62352,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -62345,7 +62365,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -62358,7 +62378,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -62371,7 +62391,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -62384,7 +62404,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -62397,7 +62417,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -62410,7 +62430,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -62742,6 +62762,20 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -62755,6 +62789,21 @@ msgstr[3] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -63654,7 +63703,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -63667,7 +63716,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -63904,6 +63953,33 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -64152,7 +64228,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" @@ -64486,7 +64562,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -64650,7 +64726,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "" @@ -65624,7 +65700,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -65775,7 +65851,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -65805,7 +65881,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -65846,7 +65922,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "" @@ -65899,7 +65975,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -65914,7 +65990,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -65940,7 +66016,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -66429,7 +66505,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -66790,7 +66866,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -66817,7 +66893,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -67248,6 +67324,112 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -68040,7 +68222,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -68201,7 +68383,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68216,7 +68398,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68252,7 +68434,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68270,7 +68452,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68288,7 +68470,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68306,7 +68488,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68324,7 +68506,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68342,7 +68524,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68360,7 +68542,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68378,7 +68560,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68396,7 +68578,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68414,7 +68596,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68432,7 +68614,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68450,7 +68632,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68468,7 +68650,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68486,7 +68668,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68504,7 +68686,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68522,8 +68704,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68541,7 +68722,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68559,7 +68740,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68577,7 +68758,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68595,7 +68776,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68613,7 +68794,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68631,8 +68812,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -68658,7 +68838,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -68671,7 +68851,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "" @@ -68684,7 +68864,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "" @@ -68697,7 +68877,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "" @@ -68710,7 +68890,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "Medicínská data o krvi zombií." @@ -68723,7 +68903,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -68736,7 +68916,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -68749,7 +68929,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -69071,6 +69251,21 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" @@ -69079,9 +69274,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" @@ -69090,7 +69284,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -69100,7 +69294,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -69363,7 +69557,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -69754,6 +69948,108 @@ msgstr "" "Zombie nelze zastrašit ani ponížit, takže tato tvrdá štětka je dobrá opravdu" " jen na smýčení záchodových mís." +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -71728,7 +72024,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -71820,7 +72116,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -72532,7 +72828,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -72540,14 +72836,14 @@ msgid "" "edge, it's still quite capable of inflicting deadly wounds." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -73175,7 +73471,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -73432,7 +73728,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -73483,7 +73779,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -73491,7 +73787,7 @@ msgid "" "or by their wives in defense of the household." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -73499,7 +73795,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -73515,7 +73811,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -73664,7 +73960,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -73732,6 +74028,22 @@ msgid "" "offers a good bit of slashing power." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -73741,7 +74053,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -73835,14 +74147,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -73858,14 +74170,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -74023,7 +74335,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -74101,7 +74413,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -74176,7 +74488,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -74443,6 +74755,22 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" @@ -74451,7 +74779,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -74469,7 +74797,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -74519,7 +74847,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -74853,7 +75181,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -75159,7 +75487,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -75408,17 +75736,17 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -76778,7 +77106,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -76804,7 +77132,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -76817,7 +77145,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -77813,7 +78141,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -77829,7 +78157,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "" @@ -77842,7 +78170,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -77868,7 +78196,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "" @@ -77881,7 +78209,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -77908,7 +78236,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -78168,12 +78496,21 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -78322,6 +78659,19 @@ msgstr[3] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -78829,7 +79179,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -78896,7 +79246,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -79236,7 +79586,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -79251,7 +79601,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -79391,7 +79741,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -79404,7 +79754,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -79623,7 +79973,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -79638,7 +79988,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -79653,7 +80003,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -79668,7 +80018,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -79683,7 +80033,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -79698,7 +80048,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -79713,7 +80063,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -79728,7 +80078,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -79743,7 +80093,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -79758,7 +80108,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -79773,7 +80123,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -79788,7 +80138,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -79913,7 +80263,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -79943,7 +80293,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -79958,7 +80308,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -79988,7 +80338,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -80027,7 +80377,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -80428,7 +80778,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -81254,7 +81604,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -83029,7 +83379,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -83269,7 +83619,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -83406,7 +83756,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -83421,7 +83771,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -84224,6 +84574,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -84368,8 +84729,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -84756,6 +85117,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -85208,7 +85574,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -85221,7 +85587,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -85234,7 +85600,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -85247,7 +85613,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -85260,7 +85626,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -85418,7 +85784,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -85433,7 +85799,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -85446,7 +85812,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -85461,7 +85827,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -85476,7 +85842,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -85519,7 +85885,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -85532,7 +85898,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -85559,7 +85925,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -85572,7 +85938,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -85585,7 +85951,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -85598,7 +85964,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -85611,7 +85977,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -85626,7 +85992,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -85667,7 +86033,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -85680,7 +86046,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -85793,7 +86159,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -85824,7 +86190,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -85859,7 +86225,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -85874,7 +86240,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -85889,7 +86255,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -86640,7 +87006,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -86855,7 +87221,7 @@ msgstr[3] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -88745,7 +89111,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -88968,7 +89334,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -89149,7 +89515,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -89471,10 +89837,11 @@ msgstr[3] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -89485,6 +89852,19 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -92022,7 +92402,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -92039,7 +92419,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -92237,7 +92617,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -92379,17 +92759,18 @@ msgstr[3] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -92883,7 +93264,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -92933,7 +93314,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -92949,7 +93330,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -93494,7 +93875,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -95605,7 +95986,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -96221,7 +96602,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -96236,7 +96617,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -96251,7 +96632,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -96267,7 +96648,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -96283,7 +96664,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -96298,7 +96679,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -96314,13 +96695,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" @@ -96329,7 +96725,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -96344,7 +96740,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -96359,7 +96755,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -96374,7 +96770,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -96389,7 +96785,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -96419,7 +96815,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -96434,7 +96830,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -96479,7 +96875,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -96494,7 +96890,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -96509,7 +96905,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -96524,7 +96920,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -96537,7 +96933,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -96552,7 +96948,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -96567,7 +96963,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -96582,7 +96978,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -96597,7 +96993,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -96611,7 +97007,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -96626,7 +97022,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -96641,7 +97037,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -96655,7 +97051,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -96670,7 +97066,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -96685,7 +97081,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -96698,7 +97094,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -96713,7 +97109,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -96728,7 +97124,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -96741,7 +97137,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -96756,7 +97152,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -96771,7 +97167,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -96786,7 +97182,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -96802,7 +97198,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -96817,7 +97213,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -96832,7 +97228,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -96847,7 +97243,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -96862,7 +97258,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -96877,7 +97273,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -96892,7 +97288,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -96907,7 +97303,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -96922,7 +97318,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -96937,7 +97333,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -96952,7 +97348,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -96967,7 +97363,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -96982,7 +97378,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -97097,6 +97493,22 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -97690,24 +98102,24 @@ msgstr[2] "" msgstr[3] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -97785,7 +98197,6 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -97808,29 +98219,102 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for juvenile allosaurus #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -98091,6 +98575,21 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -98219,7 +98718,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -98745,6 +99244,7 @@ msgstr[3] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -98804,6 +99304,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -99286,6 +99794,21 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -99324,7 +99847,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -99339,7 +99862,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -99355,7 +99878,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -99421,7 +99944,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -99494,7 +100017,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -99772,14 +100295,29 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99788,76 +100326,77 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99865,14 +100404,14 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99881,14 +100420,14 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99897,18 +100436,18 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -99942,7 +100481,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -99957,7 +100496,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99972,7 +100512,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -99987,13 +100527,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" @@ -100002,7 +100550,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -100017,7 +100565,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -100047,7 +100595,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -100061,7 +100609,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -100076,8 +100624,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -100100,7 +100648,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -100116,7 +100664,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -100131,7 +100679,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -100146,7 +100694,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -100161,7 +100709,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -100176,7 +100724,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -100191,7 +100739,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -100206,7 +100754,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -100221,7 +100769,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -100237,7 +100785,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -100253,7 +100801,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -100268,7 +100816,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -100283,7 +100831,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -100298,7 +100846,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -100313,7 +100861,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -100328,7 +100876,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -100343,7 +100891,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -100358,7 +100906,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -100373,7 +100921,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -100388,7 +100936,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -100403,7 +100951,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -100418,7 +100966,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -100433,7 +100981,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -100448,7 +100996,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -100464,7 +101012,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -100480,7 +101028,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -100495,7 +101043,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -100510,7 +101058,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -100557,7 +101105,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -100575,7 +101123,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -100930,7 +101478,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -101278,7 +101826,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -101429,6 +101977,24 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -101748,7 +102314,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -102070,7 +102636,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -107252,7 +107818,7 @@ msgstr[3] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -107296,7 +107862,7 @@ msgstr "" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -108308,7 +108874,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -108970,17 +109536,17 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -108989,7 +109555,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -109242,7 +109808,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -109258,6 +109823,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -109646,7 +110219,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -110355,7 +110928,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -110440,7 +111013,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -111304,7 +111877,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -113313,7 +113886,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -113321,7 +113894,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -113412,7 +113985,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -113468,7 +114041,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -113476,7 +114049,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -113510,7 +114083,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -113605,14 +114178,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -113626,7 +114199,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -113808,7 +114381,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -114661,7 +115234,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -117259,8 +117832,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -118033,6 +118606,45 @@ msgstr[3] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -118829,7 +119441,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -118842,7 +119454,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -118892,6 +119504,36 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -119505,7 +120147,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -119521,7 +120163,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -120064,8 +120706,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -120075,8 +120717,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -120086,8 +120728,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -120097,8 +120739,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -120108,7 +120750,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -120609,7 +121251,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -120864,13 +121506,13 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -120885,13 +121527,13 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -121432,6 +122074,23 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -121761,13 +122420,30 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -121836,6 +122512,37 @@ msgstr "" "Množství šroubováků o různých velikostech a s různými hlavami. Garantuje " "správný nástroj pro každou situaci." +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -121979,20 +122686,52 @@ msgid "" msgstr "" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wrench +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -122331,38 +123070,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -122395,6 +123102,14 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -122645,8 +123360,8 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -123147,7 +123862,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -123609,7 +124324,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -123656,7 +124371,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -123676,7 +124391,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -124845,6 +125560,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -124904,6 +125628,30 @@ msgstr[3] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -125856,7 +126604,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -126333,6 +127081,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -127205,15 +127957,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" +msgid "Intradermal Alloy - Arms" msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -127229,37 +127980,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" +msgid "Intradermal Alloy - Legs" msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -127270,8 +128020,8 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -132796,7 +133546,7 @@ msgstr "" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -137762,8 +138512,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "" @@ -137779,9 +138528,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "" @@ -138458,7 +139206,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "" @@ -140752,7 +141500,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "" @@ -140874,6 +141623,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -143614,8 +144377,8 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -143623,7 +144386,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -143784,8 +144547,8 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -143793,9 +144556,9 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -144912,8 +145675,8 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -144921,7 +145684,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -147534,6 +148297,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -150401,8 +151179,9 @@ msgstr[3] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -150416,10 +151195,10 @@ msgstr[3] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -150997,17 +151776,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -153341,6 +154124,11 @@ msgid "" "the punishment of combat." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -154188,6 +154976,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "" @@ -154356,6 +155151,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -155468,6 +156267,10 @@ msgstr "" msgid "Move cursor down" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -155668,6 +156471,20 @@ msgstr "" msgid "No" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -157250,15 +158067,15 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -157330,15 +158147,15 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -158059,15 +158876,15 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -161826,6 +162643,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -162248,8 +163075,8 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -162273,7 +163100,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -162287,7 +163115,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -162300,9 +163128,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "" @@ -162462,7 +163319,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -162477,7 +163334,8 @@ msgstr "" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -162507,17 +163365,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -162528,10 +163385,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -162542,9 +163413,10 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -162559,33 +163431,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"\n" +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -162676,6 +163569,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "" @@ -162733,7 +163640,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -162747,8 +163654,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -162762,6 +163670,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -162813,6 +163722,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "" @@ -162898,6 +163820,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "" @@ -163044,6 +163981,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "" @@ -163380,16 +164332,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -163492,7 +164445,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -163599,33 +164552,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -163746,7 +164699,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -163944,6 +164897,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -164004,10 +164972,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -164108,10 +165077,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -164755,7 +165725,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -164765,11 +165750,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -164863,6 +165849,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -164875,21 +165875,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -164967,6 +165968,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -166599,7 +167614,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -166794,7 +167809,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -166999,7 +168014,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -167053,8 +168068,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -167214,7 +168228,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -167228,7 +168242,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -167267,7 +168281,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -167302,7 +168316,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -167333,7 +168347,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -167375,7 +168389,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -167417,16 +168431,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -167473,7 +168521,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -167523,7 +168571,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -167565,7 +168613,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -167614,7 +168662,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -167641,7 +168689,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -167676,7 +168724,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -168552,7 +169600,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -168587,7 +169635,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -168624,7 +169672,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -168659,7 +169707,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -168687,7 +169735,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -168739,7 +169787,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -168770,7 +169818,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -168799,7 +169847,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -168829,7 +169877,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -169098,8 +170146,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -169500,7 +170547,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -169541,7 +170588,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -169568,7 +170615,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -169650,7 +170697,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -169687,7 +170734,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -169731,7 +170778,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -169780,7 +170827,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -169822,7 +170869,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -169863,7 +170910,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -169898,7 +170945,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -169943,7 +170990,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -169954,6 +171001,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -170100,7 +171205,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -170155,7 +171260,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -170194,7 +171299,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -170231,11 +171336,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -170261,15 +171418,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -170326,7 +171479,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -170376,7 +171529,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -170421,7 +171574,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -170462,11 +171615,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -170509,7 +171663,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -170557,7 +171711,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -170601,7 +171755,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -172260,7 +173414,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -172279,7 +173433,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -172306,7 +173460,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -172340,7 +173494,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -172387,7 +173541,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -173163,6 +174317,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -173855,13 +175033,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -174591,6 +175769,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "Vlasy: černé, na ježka" @@ -175499,7 +176699,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -175510,6 +176709,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -175641,7 +176847,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -175885,8 +177091,8 @@ msgstr "" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" #: lang/json/mutation_from_json.py @@ -178863,8 +180069,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -179104,7 +180310,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -179113,7 +180319,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -179122,7 +180328,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -179131,7 +180337,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -179149,7 +180355,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -179158,7 +180364,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -179167,7 +180373,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -179176,7 +180382,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -179194,7 +180400,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -179203,7 +180409,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -179213,7 +180419,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -179223,7 +180429,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -179253,7 +180459,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -179262,7 +180468,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -179271,7 +180477,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -179280,7 +180486,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -179778,7 +180984,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -179897,7 +181103,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -184414,6 +185620,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -184449,6 +185656,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -185007,6 +186222,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -185142,6 +186365,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -185310,6 +186537,10 @@ msgstr "" msgid "Guard" msgstr "" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "" @@ -185478,6 +186709,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -186413,6 +187648,10 @@ msgstr "" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -187102,6 +188341,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -187110,24 +188353,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -187494,6 +188753,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -188950,6 +190213,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -189060,6 +190377,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -189096,7 +190441,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -189109,7 +190454,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -189702,6 +191047,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -189958,6 +191329,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -190084,6 +191509,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -190132,6 +191585,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -190154,6 +191635,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -194732,6 +196265,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -199092,6 +200683,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -199956,4398 +201569,5871 @@ msgid "" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the northern part of the camp." +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "stone shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle and daub shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need to barricade front windows, let's build wooden walls over them." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden barricades" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need to barricade front windows, let's build mi-go resin walls over them." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin barricades" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We could build butchery rack to start hunting larger animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "butchery rack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should reinforce front doors to make this base safer." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "reinforce doors" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey military helipad garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "military helipad garage survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a root cellar will help us preserving fish and other food." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We must barricade windows, let's use wooden walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We must barricade windows, let's use resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "resin barricades" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Building a butchery rack will allow us hunting bigger animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should reinforce doors to further secure our base." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 1. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 1. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 2. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 2. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 3. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 3. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 4. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 4. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 5. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 5. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 1. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 1. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 2. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 2. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 3. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 3. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 4. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 4. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 5. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 5. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey Light Industry Workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "expansion survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's add a drop hammer for even more crafting possibilities." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "drop hammer" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's remove plants from garden and plow a few plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare garden" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a radio tower and console" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's entrance." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "entrance survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's swimming pool." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "swimming pool survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bedrooms." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bedrooms survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's???." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "??? survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's library." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "library survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bedroom survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's living rooms." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "living rooms survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "swimming survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bar." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bar survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bunk bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build another bunk bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "another bunk bed" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a well will give us easy access to water and allow us to start small" +" farm." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's plow some plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "small farm" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could try to fix reactor's controller to power lights, it would really " +"help us in planning missions." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix reactor's controller" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's set up a radio tower to improve our recruitment efforts, we will " +"redirect some power into it from nuclear reactor." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal shack with a metal roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth shack with a sod roof for our blacksmith's " +"workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a stone shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "stone blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle and daub shack with a sod roof for our blacksmith's " +"workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle and daub blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wooden shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock forge and a workbench to start smithing." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "workbench and forge" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second workbench and a drop hammer for more productive " +"smithing." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "workbench and drop hammer" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a butchery rack, so we can start hunting large animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should remove some of display racks and counters, then build a pair of " +"mattress beds inside radio control's room for our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds inside radio tower shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the northeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in NE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southwest corner shack for " +"our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southwest side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southeast corner shack for " +"our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the south side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in S side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should remove some of display racks and counters, then build a pair of " +"straw beds inside radio control's room for our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds inside radio tower shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the northeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in NE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southwest corner shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southwest side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southeast corner shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the south side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in S side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a root cellar will give us a way to preserve food." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a well will give us easy access to water." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's fix up radio tower and controls to improve our recruitment efforts." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix radio tower and controls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should dig pits for palisade around camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should build palisade around camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build palisade" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could try to fix whole tower and supply it with enough power, which could" +" give us remote access to computer systems connected to backbone network or " +"communication satellites." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix whole radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the south " +"side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the south " +"side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build migo resin walls over windows in radio " +"control's room." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "barricade radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"inside radio tower." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the south" +" side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build wooden walls over windows in radio control's " +"room." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof inside " +"radio tower." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should reorganize that dining area into our " +"kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare the kitchen area" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well, put it near that winch. This will make our future " +"here more secure." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a well" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's set up a radio tower to improve our recruitment efforts, we'll " +"repurpose that terminal for it." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should add some storage and a root cellar in" +" our kitchen area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "add storage and root cellar" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's break up some pavement so we can farm." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "break up driveway" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a privacy fence around the garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a privacy fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot. Let's put it in that dining area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a fireplace" +msgstr "Postav ohniště" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should set up a brazier for cooking, and " +"grab a pot. Let's put it in that dining area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a brazier" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot. Let's put it in that dining area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wood stove" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some smokers and a charcoal kiln for food preservation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build smoking racks and charcoal kiln" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's make a butchery area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build butchery area" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's add a vat for fermenting." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build fermenting vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's gather some tools so we can work on cars." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "add tools for garage" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southwest bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the SW bedroom" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the northwest bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the NW bedroom" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southeast bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the SE bedroom" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the northeast bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the NE bedroom" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the common area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the common area furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a fabrication workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metalworking forge" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build an anvil and crucible to increase our crafting options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "add an anvil and crucible" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build pottery kiln and get the tools we'll need for glassworking." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a pottery kiln" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We need some tools for metal working." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place advanced tools" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get a nice workbench built to improve our work. Place it next to the " +"anvil." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a workbench" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's add a bellows and barrel for quenching the steel, we'll need more " +"tools too." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bellows and barrel" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a drop hammer for some mass production." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a drop hammer." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with standard walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the standard white living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with wood panel walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with log walls, we'll use that far vehicle " +"bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with metal walls, we'll use that far vehicle " +"bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with mi-go resin walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with rammed earth walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with rock walls, we'll use that far vehicle " +"bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock earth living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with wattle and daub walls, we'll use that far" +" vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle and daub living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should survey the roof top and set up a bulletin board." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace in the northeast " +"shack." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast fireplace" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should set up a brazier in the northeast " +"shack." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast brazier" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove in the northeast shack." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast stove" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "A straw bed in the northeast shack will make sleeping easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast straw bed" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A proper bed in the northeast shack will give one of us a place to sleep " +"soundly." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast bed" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Another straw bed in the northeast shack will make sleeping easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Another proper bed in the northeast shack will give one of us a place to " +"sleep soundly." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the east tent will allow us to house two more people" +" and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "east straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the east tent will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "east beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the east room will allow us to house two more people" +" and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the east room will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the southeast tent will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "southeast straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the southeast tent will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "southeast beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the southeast room will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the southeast room will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the northwest building will allow us to house two " +"more people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northwest straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the northwest building will allow us to house two " +"more people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northwest beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the west tent will allow us to house two more people" +" and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "west straw beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the northwestern part of the camp." +"A pair of proper beds in the west tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the western part of the camp." +msgid "west beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the southwestern part of the camp." +"A pair of straw beds in the west room will allow us to house two more people" +" and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southern part of the camp." +"A pair of proper beds in the west room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "rammed earth shack" +msgid "" +"A pair of straw beds in the southwest tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southeastern part of the camp." +msgid "southwest straw beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"eastern part of the camp." +"A pair of proper beds in the southwest tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northeastern part of the camp." +msgid "southwest beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northern part of the camp." +"A pair of straw beds in the southwest room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northwestern part of the camp." +"A pair of proper beds in the southwest room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"western part of the camp." +"A fireplace, counter, and some pots and pans in the central building will " +"allow us to cook simple recipes and organize hunting expeditions." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southwestern part of the camp." +msgid "central fireplace" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southern part of the camp." +"We need a butchery rack to maximize the harvest from our hunting and " +"trapping efforts." msgstr "" #: lang/json/recipe_from_json.py -msgid "stone shack" +msgid "central butchery rack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southeastern part of the camp." +"A tool rack in the central building will give us a place to store tools." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"eastern part of the camp." +msgid "central tool rack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northeastern part of the camp." +"Setting up some tables and chairs will make the central building into a " +"dining area, and we can also use them as a workspace to organize the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northern part of the camp." +msgid "central dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northwestern part of the camp." +msgid "south dining hall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"western part of the camp." +"A wood stove, counter, and some pots and pans in the south half of the " +"central building will allow us to cook simple recipes and organize hunting " +"expeditions. The stove will be more efficient than a fireplace." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southwestern part of the camp." +msgid "south wood stove" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southern part of the camp." +msgid "north water well" msgstr "" #: lang/json/recipe_from_json.py -msgid "wattle and daub shack" +msgid "north root cellar" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southeastern part of the camp." +msgid "We could build a radio tower to improve the range of our radios." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the eastern part of the camp." +msgid "north radio tower" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northeastern part of the camp." +"Adding a console to control the radio tower will help with recruiting more " +"survivors." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northern part of the camp." +msgid "north radio console" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northwestern part of the camp." +"Digging a trench along the north edge of the camp would provide some defense" +" and generate building materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the western part of the camp." +msgid "north trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southwestern part of the camp." +"Digging a trench along the south edge of the camp would provide some defense" +" and generate building materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southern part of the camp." +msgid "south trench" msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden shack" +msgid "" +"Digging a trench along the northeast corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the east side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southeastern part of the camp." +msgid "northeast trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"eastern part of the camp." +"Digging a trench along the northwest corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the west side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northeastern part of the camp." +msgid "northwest trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northern part of the camp." +"Digging a trench along the southeast corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the east side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northwestern part of the camp." +msgid "southeast trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"western part of the camp." +"Digging a trench along the southwest corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the west side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southwestern part of the camp." +msgid "southwest trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need to barricade front windows, let's build wooden walls over them." +"Digging a trench along the east edge of the camp would provide some defense " +"and generate building materials. We'll need to run the trench the length of" +" the camp if we don't have solid buildings all along the east side." msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden barricades" +msgid "east trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need to barricade front windows, let's build mi-go resin walls over them." +"Digging a trench along the west edge of the camp would provide some defense " +"and generate building materials. We'll need to run the trench the length of" +" the camp if we don't have solid buildings all along the west side." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go resin barricades" +msgid "west trench" msgstr "" #: lang/json/recipe_from_json.py -msgid "We could build butchery rack to start hunting larger animals." +msgid "" +"We need some shelter, so build half of a log shack with a wooden roof on the" +" northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py -msgid "butchery rack" +msgid "northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should reinforce front doors to make this base safer." +msgid "" +"We should use logs to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "reinforce doors" +msgid "expand northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey military helipad garage." +msgid "We should use logs to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "military helipad garage survey" +msgid "finish northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a root cellar will help us preserving fish and other food." +msgid "" +"We should expand our housing by putting up a log building on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "We must barricade windows, let's use wooden walls." +msgid "east shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "We must barricade windows, let's use resin walls." +msgid "" +"We should expand our housing by adding a log room on the east side, which we" +" can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "resin barricades" +msgid "east room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a butchery rack will allow us hunting bigger animals." +msgid "" +"We should expand our housing by putting up a log building on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should reinforce doors to further secure our base." +msgid "southeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 1. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 1. pair of mattress beds" +msgid "southeast room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 2. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the northwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2. pair of mattress beds" +msgid "northwest shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 3. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3. pair of mattress beds" +msgid "west shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 4. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the west side, which we" +" can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 4. pair of mattress beds" +msgid "west room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 5. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 5. pair of mattress beds" +msgid "southwest shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 1. pair of straw beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 1. pair of straw beds" +msgid "southwest room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 2. pair of straw beds in place of desks." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2. pair of straw beds" +msgid "central building NE corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 3. pair of straw beds in place of desks." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3. pair of straw beds" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 4. pair of straw beds in place of desks." +msgid "central building NW corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "build 4. pair of straw beds" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 5. pair of straw beds in place of desks." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 5. pair of straw beds" +msgid "central building north half" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey Light Industry Workshop." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "expansion survey" +msgid "central building SE corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's add a drop hammer for even more crafting possibilities." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "drop hammer" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's remove plants from garden and plow a few plots." +msgid "central building SW corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare garden" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a radio tower and console" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's entrance." +msgid "central building south half" msgstr "" #: lang/json/recipe_from_json.py -msgid "entrance survey" +msgid "" +"We need some shelter, so build half of a metal shack with a metal roof on " +"the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's swimming pool." +msgid "" +"We should use metal to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "swimming pool survey" +msgid "We should use metal to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bedrooms." +msgid "" +"We should expand our housing by putting up a metal building on the east " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "bedrooms survey" +msgid "" +"We should expand our housing by adding a metal room on the east side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's???." +msgid "" +"We should expand our housing by putting up a metal building on the southeast" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "??? survey" +msgid "" +"We should expand our housing by adding a metal room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's kitchen." +msgid "" +"We should expand our housing by putting up a metal building on the northwest" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's library." +msgid "" +"We should expand our housing by putting up a metal building on the west " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "library survey" +msgid "" +"We should expand our housing by adding a metal room on the west side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bedroom." +msgid "" +"We should expand our housing by putting up a metal building on the southwest" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "bedroom survey" +msgid "" +"We should expand our housing by adding a metal room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's living rooms." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "living rooms survey" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "swimming survey" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bar." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "bar survey" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a bunk bed." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build another bunk bed." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "another bunk bed" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a well will give us easy access to water and allow us to start small" -" farm." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's plow some plots." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "small farm" +msgid "" +"We need some shelter, so build half of a mi-go resin shack with a sod roof " +"on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could try to fix reactor's controller to power lights, it would really " -"help us in planning missions." +"We should use mi-go resin to expand the shelter so we have space for another" +" bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix reactor's controller" +msgid "We should use mi-go resin to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's set up a radio tower to improve our recruitment efforts, we will " -"redirect some power into it from nuclear reactor." +"We should expand our housing by putting up a mi-go resin building on the " +"east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a log shack with a wooden roof for our blacksmith's workshop." +"We should expand our housing by adding a mi-go resin room on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "log blacksmith workshop" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a metal shack with a metal roof for our blacksmith's workshop." +"We should expand our housing by adding a mi-go resin room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "metal blacksmith workshop" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go blacksmith workshop" +msgid "" +"We should expand our housing by adding a mi-go resin room on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a rammed earth shack with a sod roof for our blacksmith's " -"workshop." +"We should expand our housing by putting up a mi-go resin building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "rammed earth blacksmith workshop" +msgid "" +"We should expand our housing by adding a mi-go resin room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a stone shack with a wooden roof for our blacksmith's workshop." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "stone blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a wattle and daub shack with a sod roof for our blacksmith's " -"workshop." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "wattle and daub blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a wooden shack with a wooden roof for our blacksmith's workshop." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rock forge and a workbench to start smithing." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "workbench and forge" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a second workbench and a drop hammer for more productive " -"smithing." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "workbench and drop hammer" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a butchery rack, so we can start hunting large animals." +msgid "" +"We need some shelter, so build half of a rammed earth shack with a sod roof " +"on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should remove some of display racks and counters, then build a pair of " -"mattress beds inside radio control's room for our survivors." +"We should use rammed earth to expand the shelter so we have space for " +"another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in radio control's room" +msgid "We should use rammed earth to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds inside radio tower shack for our " -"survivors." +"We should expand our housing by putting up a rammed earth building on the " +"east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in radio tower" +msgid "" +"We should expand our housing by adding a rammed earth room on the east side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the northeast side shack for our " -"survivors." +"We should expand our housing by putting up a rammed earth building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in NE side shack" +msgid "" +"We should expand our housing by adding a rammed earth room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southwest corner shack for " -"our survivors." +"We should expand our housing by putting up a rammed earth building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW corner shack" +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southwest side shack for our " -"survivors." +"We should expand our housing by adding a rammed earth room on the west side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW side shack" +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southeast side shack for our " -"survivors." +"We should expand our housing by adding a rammed earth room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE side shack" +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southeast corner shack for " -"our survivors." +"A central building can act as a core and dining hall. We should build out " +"from the east room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE corner shack" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the south side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build out " +"from the west room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in S side shack" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should remove some of display racks and counters, then build a pair of " -"straw beds inside radio control's room for our survivors." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in radio control's room" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds inside radio tower shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in radio tower" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the northeast side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in NE side shack" +msgid "" +"We need some shelter, so build half of a stone shack with a wooden roof on " +"the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwest corner shack for our " -"survivors." +"We should use rocks to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW corner shack" +msgid "We should use rocks to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwest side shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the east side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW side shack" +msgid "" +"We should expand our housing by adding a rock room on the east side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southeast side shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE side shack" +msgid "" +"We should expand our housing by adding a rock room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southeast corner shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the northwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE corner shack" +msgid "" +"We should expand our housing by putting up a rock building on the west side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the south side shack for our " -"survivors." +"We should expand our housing by adding a rock room on the west side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in S side shack" +msgid "" +"We should expand our housing by putting up a rock building on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a root cellar will give us a way to preserve food." +msgid "" +"We should expand our housing by adding a rock room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a well will give us easy access to water." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's fix up radio tower and controls to improve our recruitment efforts." +"A central building can act as a core and dining hall. We should build out " +"from the east room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix radio tower and controls" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should dig pits for palisade around camp." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build palisade around camp." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "build palisade" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could try to fix whole tower and supply it with enough power, which could" -" give us remote access to computer systems connected to backbone network or " -"communication satellites." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix whole radio tower" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"northeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"southwest corner of the camp." +"We need some shelter, so set up a tent on the northeast side of the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof on the south " -"side of the camp." +msgid "northeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"northeast side of the camp." +"We should expand our housing by putting up a tent on the east side, though " +"doing so will mean we need more materials to build the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southwest corner of the camp." +msgid "east tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southwest side of the camp." +"We should expand our housing by putting up a tent on the southeast side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southeast side of the camp." +msgid "southeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southeast corner of the camp." +"We should expand our housing by putting up a tent on the northwest side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the south " -"side of the camp." +msgid "northwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build migo resin walls over windows in radio " -"control's room." +"We should expand our housing by putting up a tent on the west side, though " +"doing so will mean we need more materials to build the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "barricade radio control's room" +msgid "west tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"inside radio tower." +"We should expand our housing by putting up a tent on the southwest side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the northeast side of the camp." +msgid "southwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southwest corner of the camp." +"We need some shelter, so build half of a wattle-and-daub shack with a sod " +"roof on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southwest side of the camp." +"We should use wattle-and-daub to expand the shelter so we have space for " +"another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southeast side of the camp." +msgid "We should use wattle-and-daub to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southeast corner of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the south side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the east " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"northeast side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southwest corner of the camp." +"We should expand our housing by adding a wattle-and-daub room on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southwest side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southeast side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southeast corner of the camp." +"We should expand our housing by adding a wattle-and-daub room on the west " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"south side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"northeast side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southwest corner of the camp." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southwest side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the east room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southeast side of the camp." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the west room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the south" -" side of the camp." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the northeast side of the camp." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southwest corner of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southwest side of the camp." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southeast corner of the camp." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the south side of the camp." +"We need some shelter, so build half of a wood panel shack with a wooden roof" +" on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build wooden walls over windows in radio control's " -"room." +"We should use wood panel to expand the shelter so we have space for another " +"bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should use wood panel to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof inside " -"radio tower." +"We should expand our housing by putting up a wood panel building on the east" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"northeast side of the camp." +"We should expand our housing by adding a wood panel room on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southwest corner of the camp." +"We should expand our housing by putting up a wood panel building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southwest side of the camp." +"We should expand our housing by adding a wood panel room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southeast side of the camp." +"We should expand our housing by putting up a wood panel building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southeast corner of the camp." +"We should expand our housing by putting up a wood panel building on the west" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"south side of the camp." +"We should expand our housing by adding a wood panel room on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should reorganize that dining area into our " -"kitchen." +"We should expand our housing by putting up a wood panel building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare the kitchen area" +msgid "" +"We should expand our housing by adding a wood panel room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a well, put it near that winch. This will make our future " -"here more secure." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a well" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's set up a radio tower to improve our recruitment efforts, we'll " -"repurpose that terminal for it." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should add some storage and a root cellar in" -" our kitchen area." +"A central building can act as a core and dining hall. We should build out " +"from the west room with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "add storage and root cellar" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's break up some pavement so we can farm." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "break up driveway" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a privacy fence around the garden." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a privacy fence" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a fireplace for cooking and " -"grab a pot. Let's put it in that dining area." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a fireplace" -msgstr "Postav ohniště" +msgid "We need to survey the base site first." +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should set up a brazier for cooking, and " -"grab a pot. Let's put it in that dining area." +"The first thing we are going to need is a command tent to manage and task " +"workers from." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a brazier" +msgid "basic northeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a stove for cooking and grab a " -"pot. Let's put it in that dining area." +"We're going to need a fire pit and a bed if we want to stay here " +"permanently." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood stove" +msgid "basic firepit" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some smokers and a charcoal kiln for food preservation." +msgid "" +"To make this outpost functional we are going to need storage containers to " +"organize our supplies." msgstr "" #: lang/json/recipe_from_json.py -msgid "build smoking racks and charcoal kiln" +msgid "basic storage" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a butchery area." +msgid "" +"Next we should expand the camp to comfortably support two people " +"indefinitely." msgstr "" #: lang/json/recipe_from_json.py -msgid "build butchery area" +msgid "basic northeast bed" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's add a vat for fermenting." +msgid "" +"Additional housing and storage will allow our camp to expand into " +"specialized industries." msgstr "" #: lang/json/recipe_from_json.py -msgid "build fermenting vats" +msgid "basic northwest tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's gather some tools so we can work on cars." +msgid "" +"Constructing a hard command post will transform our little camp into a true " +"base." msgstr "" #: lang/json/recipe_from_json.py -msgid "add tools for garage" +msgid "basic central building" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom." +msgid "" +"Building additional housing will allow us to send companions out to find " +"recruits." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the SW bedroom" +msgid "basic west tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom." +msgid "We need to expand our base to include basic dining facilities." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the NW bedroom" +msgid "basic central kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom." +msgid "More housing means that we can support additional specialists." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the SE bedroom" +msgid "basic southeast tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northeast bedroom." +msgid "An expanded kitchen is needed to support our growing settlement." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the NE bedroom" +msgid "basic expanded kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the common area." +msgid "" +"Finishing the hard structure will give us a more secure place to retreat to " +"if we come under attack." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the common area furniture" +msgid "basic completed central building" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a fabrication workshop." +msgid "" +"I'm surprised we've made it this long without securing a clean water source," +" we need a well." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metalworking forge" +msgid "basic water well" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build an anvil and crucible to increase our crafting options." +msgid "" +"Building a strong wall will keep the base secure even if a small horde " +"attacks." msgstr "" #: lang/json/recipe_from_json.py -msgid "add an anvil and crucible" +msgid "basic partial wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build pottery kiln and get the tools we'll need for glassworking." +msgid "We need to finish our half built fortifications." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a pottery kiln" +msgid "basic complete wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need some tools for metal working." +msgid "We're running out of room and need another living quarters." msgstr "" #: lang/json/recipe_from_json.py -msgid "place advanced tools" +msgid "basic east tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's get a nice workbench built to improve our work. Place it next to the " -"anvil." +msgid "Our kitchen isn't able to keep up with demand, we need to expand it." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a workbench" +msgid "basic dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's add a bellows and barrel for quenching the steel, we'll need more " -"tools too." +msgid "We should build stronger doors to secure our compound." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a bellows and barrel" +msgid "basic reinforced gates" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a drop hammer for some mass production." +msgid "One more tent and our living space will be full." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a drop hammer." +msgid "basic southwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with standard walls, we'll use that far " -"vehicle bay." +"We could construct a radio tower to improve communication range, first step " +"is the tower structure." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the standard white living quarters walls" +msgid "basic radio tower" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with wood panel walls, we'll use that far " -"vehicle bay." +msgid "We need to build a console to control the radio tower." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wood panel living quarters walls" +msgid "basic radio console" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with log walls, we'll use that far vehicle " -"bay." +msgid "Survey land for a kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the log living quarters walls" +msgid "Kitchen survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with metal walls, we'll use that far vehicle " -"bay." +msgid "Building a cook-shack is our first task." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the metal living quarters walls" +msgid "Kitchen fireplace shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with mi-go resin walls, we'll use that far " -"vehicle bay." +msgid "We need to finish framing the walls for the cook-shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the mi-go resin living quarters walls" +msgid "Kitchen finished shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with rammed earth walls, we'll use that far " -"vehicle bay." +"Expanding the shack by including a smoker will increase our versatility." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rammed earth living quarters walls" +msgid "Kitchen charcoal smoker" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with rock walls, we'll use that far vehicle " -"bay." +msgid "A pantry will allow our cooks to store more non-perishables." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rock earth living quarters walls" +msgid "Kitchen pantry expansion" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with wattle and daub walls, we'll use that far" -" vehicle bay." +"Increasing our number of smoking racks will let us craft larger batches." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wattle and daub living quarters walls" +msgid "Kitchen more smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should survey the roof top and set up a bulletin board." +msgid "A well is needed so our cooks don't have to haul in water." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Kitchen water well" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a fireplace in the northeast " -"shack." +"Wood stoves will give us greater control of temperatures and let us craft " +"more difficult recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast fireplace" +msgid "Kitchen wood stoves" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should set up a brazier in the northeast " -"shack." +"Finally, expanding the pantry further will let us store additional " +"materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast brazier" +msgid "Kitchen expanded pantry" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a stove in the northeast shack." +"A trench that may deter movement but is meant to be the foundation of a " +"picket or palisade. Requirements are for 1/2 an over map tile." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast stove" +msgid "" +"A deep trench filled with spikes, requires a trench. Requirements are for " +"1/2 an over map tile." msgstr "" #: lang/json/recipe_from_json.py -msgid "A straw bed in the northeast shack will make sleeping easier." +msgid "Survey land for a blacksmith shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast straw bed" +msgid "Blacksmithy survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A proper bed in the northeast shack will give one of us a place to sleep " -"soundly." +msgid "Building a forge and kiln is our first task." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast bed" +msgid "Blacksmithy forge and kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "Another straw bed in the northeast shack will make sleeping easier." +msgid "Building a proper roof for the shop is the next step." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Another proper bed in the northeast shack will give one of us a place to " -"sleep soundly." +msgid "Blacksmithy roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the east tent will allow us to house two more people" -" and expand the camp." +msgid "Building a working table and placing an anvil are next." msgstr "" #: lang/json/recipe_from_json.py -msgid "east straw beds" +msgid "Blacksmithy anvil and workbench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the east tent will allow us to house two more " -"people and expand the camp." +"If we're going to do more than simple metal casting we need a bigger shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "east beds" +msgid "Blacksmithy expanded shop" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the east room will allow us to house two more people" -" and expand the camp." +msgid "We need some basic tools to make more advanced crafts." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the east room will allow us to house two more " -"people and expand the camp." +msgid "Blacksmithy forging tools" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southeast tent will allow us to house two more " -"people and expand the camp." +msgid "An expanded forge will allow us to work on bigger projects." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast straw beds" +msgid "Blacksmithy expanded forge" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southeast tent will allow us to house two more " -"people and expand the camp." +msgid "Proper steel work requires a bellows and quenching setup." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast beds" +msgid "Blacksmithy bellows and quenching barrels" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southeast room will allow us to house two more " -"people and expand the camp." +msgid "A separate workshop will allow us to do the most basic of machining." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southeast room will allow us to house two more " -"people and expand the camp." +msgid "Blacksmithy machine shop" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the northwest building will allow us to house two " -"more people and expand the camp." +msgid "Next we need to add some basic tools and vises to the workshop." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest straw beds" +msgid "Blacksmithy machine shop tools" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the northwest building will allow us to house two " -"more people and expand the camp." +msgid "Advanced forging processes require more room to work." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest beds" +msgid "Blacksmithy machine shop expansion" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the west tent will allow us to house two more people" -" and expand the camp." +msgid "An on-site well will allow us to fill boilers as needed." msgstr "" #: lang/json/recipe_from_json.py -msgid "west straw beds" +msgid "Blacksmithy well" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the west tent will allow us to house two more " -"people and expand the camp." +"A steam-powered drop hammer will greatly increase production speed in " +"exchange for charcoal." msgstr "" #: lang/json/recipe_from_json.py -msgid "west beds" +msgid "Blacksmithy drop hammer" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the west room will allow us to house two more people" -" and expand the camp." +"We should build a fireplace for cooking and grab a pot. Let's set up near " +"the working terminal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the west room will allow us to house two more " -"people and expand the camp." +"We should build a brazier for cooking and grab a pot. Let's set up near the" +" working terminal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the southwest tent will allow us to house two more " -"people and expand the camp." +"We should build a wood stove for cooking and grab a pot. Let's set up near " +"the working terminal." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest straw beds" +msgid "" +"We should build a well, put it near the terminal. This will make our future" +" here more secure." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southwest tent will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the southeast bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest beds" +msgid "Let's furnish the east bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southwest room will allow us to house two more " -"people and expand the camp." +msgid "furnish the E bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southwest room will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the southeast bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A fireplace, counter, and some pots and pans in the central building will " -"allow us to cook simple recipes and organize hunting expeditions." +msgid "Let's furnish the east bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central fireplace" +msgid "Let's furnish the southeast bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need a butchery rack to maximize the harvest from our hunting and " -"trapping efforts." +msgid "Let's furnish the east bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central butchery rack" +msgid "Let's furnish the southwest bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A tool rack in the central building will give us a place to store tools." +msgid "Let's furnish the west bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central tool rack" +msgid "furnish the W bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Setting up some tables and chairs will make the central building into a " -"dining area, and we can also use them as a workspace to organize the camp." +msgid "Let's furnish the northwest bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central dining hall" +msgid "Let's furnish the southwest bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "south dining hall" +msgid "Let's furnish the west bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A wood stove, counter, and some pots and pans in the south half of the " -"central building will allow us to cook simple recipes and organize hunting " -"expeditions. The stove will be more efficient than a fireplace." +msgid "Let's furnish the northwest bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "south wood stove" +msgid "Let's furnish the southwest bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "north water well" +msgid "Let's furnish the west bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "north root cellar" +msgid "Let's furnish the northwest bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "We could build a radio tower to improve the range of our radios." +msgid "Let's make a dining area." msgstr "" #: lang/json/recipe_from_json.py -msgid "north radio tower" +msgid "furnish the dining room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Adding a console to control the radio tower will help with recruiting more " -"survivors." +msgid "Let's make a living room area." msgstr "" #: lang/json/recipe_from_json.py -msgid "north radio console" +msgid "furnish the living room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the north edge of the camp would provide some defense" -" and generate building materials." +msgid "Let's build some pantry storage." msgstr "" #: lang/json/recipe_from_json.py -msgid "north trench" +msgid "build some wooden racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the south edge of the camp would provide some defense" -" and generate building materials." +msgid "Let's build a work bench." msgstr "" #: lang/json/recipe_from_json.py -msgid "south trench" +msgid "build a work bench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the northeast corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the east side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +"Let's build some living quarters so we can expand. We will start in the " +"southeast corner." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast trench" +msgid "build SE log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the northwest corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the west side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +"Let's build some living quarters so we can expand. We will continue along " +"the same wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest trench" +msgid "build E log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the southeast corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the east side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." -msgstr "" - -#: lang/json/recipe_from_json.py -msgid "southeast trench" +"Let's build some living quarters so we can expand. We will continue along " +"the other wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the southwest corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the west side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +msgid "build SW log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest trench" +msgid "build W log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the east edge of the camp would provide some defense " -"and generate building materials. We'll need to run the trench the length of" -" the camp if we don't have solid buildings all along the east side." +msgid "build NW log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east trench" +msgid "build SE rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the west edge of the camp would provide some defense " -"and generate building materials. We'll need to run the trench the length of" -" the camp if we don't have solid buildings all along the west side." +msgid "build E rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "west trench" +msgid "build SW rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a log shack with a wooden roof on the" -" northeast side of the camp" +msgid "build W rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast shack" +msgid "build NW rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use logs to expand the shelter so we have space for another bed." +msgid "build SE standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "expand northeast shack" +msgid "build E standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use logs to finish the northeast shack." +msgid "build SW standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "finish northeast shack" +msgid "build W standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the east side, " -"which we can also use as part of the central building." +msgid "build NW standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east shack" +msgid "build SE wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the east side, which we" -" can also use as part of the central building." +msgid "build E wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east room" +msgid "build SW wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the southeast " -"side, which we can also use as part of the central building." +msgid "build W wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast shack" +msgid "build NW wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the southeast side, " -"which we can also use as part of the central building." +msgid "build SE wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast room" +msgid "build E wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the northwest " -"side, which we can also use as part of the central building." +msgid "build SW wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest shack" +msgid "build W wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the west side, " -"which we can also use as part of the central building." +msgid "build NW wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "west shack" +msgid "Let's furnish the southeast bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the west side, which we" -" can also use as part of the central building." +msgid "Let's furnish the southeast bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "west room" +msgid "Let's furnish the west bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the southwest " -"side, which we can also use as part of the central building." +msgid "Let's furnish the southeast bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest shack" +msgid "Let's furnish the west bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the southwest side, " -"which we can also use as part of the central building." +msgid "Let's furnish the southwest bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest room" +msgid "Let's furnish the southwest bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from logs." +msgid "Let's furnish the southwest bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building NE corner" +msgid "Let's furnish the southern bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with logs." +msgid "furnish the S bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from logs." +msgid "Let's furnish the southern bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building NW corner" +msgid "Let's furnish the southern bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with logs." +"Let's build some living quarters so we can expand. We will start in the " +"northwest corner." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with logs." +"Let's build some living quarters so we can expand. We will continue along " +"the west wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building north half" +msgid "" +"Let's build some living quarters so we can expand. We will continue along " +"the southwest corner." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from logs." +"Let's build some living quarters so we can expand. We will continue along " +"the south wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building SE corner" +msgid "build S log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with logs." +msgid "build S rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from logs." +msgid "build S standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "central building SW corner" +msgid "build S wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with logs." +msgid "build NW wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with logs." +msgid "build W wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "central building south half" +msgid "build SW wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a metal shack with a metal roof on " -"the northeast side of the camp" +msgid "build S wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should use metal to expand the shelter so we have space for another bed." +"We should build a well, across from the terminal. This will make our future" +" here more secure." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use metal to finish the northeast shack." +msgid "Let's furnish the northwest bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the east " -"side, which we can also use as part of the central building." +msgid "Let's furnish the west bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the east side, which " -"we can also use as part of the central building." +msgid "Let's furnish the west bedroom with regular a bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the southeast" -" side, which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the southeast side, " -"which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the northwest" -" side, which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the west " -"side, which we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the west side, which " -"we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the southwest" -" side, which we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a metal room on the southwest side, " -"which we can also use as part of the central building." +"Let's build some living quarters so we can expand. We will enclose the west" +" side of the stairs." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from metal." +"Let's build two living quarters so we can expand. We will continue along " +"the south wall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with metal." +"Let's build another bedroom so we can expand. We will continue to enclose " +"the stairwell and add new doors." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from metal." +msgid "build central E bedroom log walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with metal." +msgid "Let's build another bedroom on the east wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with metal." +msgid "build E bedroom log walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from metal." +msgid "build central E bedroom rock walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with metal." +msgid "build E bedroom rock walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from metal." +msgid "build central E bedroom standard walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with metal." +msgid "build E bedroom standard walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with metal." +msgid "build central E bedroom wattle and daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a mi-go resin shack with a sod roof " -"on the northeast side of the camp" +msgid "build E bedroom wattle and daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use mi-go resin to expand the shelter so we have space for another" -" bed." +msgid "build S wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use mi-go resin to finish the northeast shack." +msgid "build central E bedroom wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"east side, which we can also use as part of the central building." +msgid "build E bedroom wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the east side, " -"which we can also use as part of the central building." +msgid "Survey land for a kitchen and dining area." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"southeast side, which we can also use as part of the central building." +"Now that we have some cover, we should build 2 fireplaces for cooking and " +"grab a pot." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the southeast " -"side, which we can also use as part of the central building." +msgid "build 2 fireplaces" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"northwest side, which we can also use as part of the central building." +"Now that we have some cover, we should build 2 stoves for cooking and grab a" +" pot." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"west side, which we can also use as part of the central building." +msgid "build 2 wood stoves" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the west side, " -"which we can also use as part of the central building." +msgid "We should build a well. This will make cooking more convenient." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's build some counters and shelves." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the southwest " -"side, which we can also use as part of the central building." +msgid "build kitchen counters" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from mi-go resin." +msgid "build 3 smoking racks and a charcoal kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with mi-go resin." +msgid "Lets furnish the pantry and build 2 root cellars." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from mi-go resin." +msgid "furnish the pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with mi-go resin." +msgid "Let's make some furniture for the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with mi-go resin." +msgid "Let's build some planters to the north for a chef's garden." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from mi-go resin." +msgid "build some planters" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with mi-go resin." +msgid "Let's start building the central kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from mi-go resin." +msgid "build the log wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with mi-go resin." +msgid "Let's finish the central kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with mi-go resin." +msgid "finish the log wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build half of a rammed earth shack with a sod roof " -"on the northeast side of the camp" +"Let's get this log wall smoking area covered to protect the workers from the" +" weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use rammed earth to expand the shelter so we have space for " -"another bed." +msgid "build a log wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use rammed earth to finish the northeast shack." +msgid "Let's build a log wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"east side, which we can also use as part of the central building." +msgid "build a log wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the east side," -" which we can also use as part of the central building." +msgid "Let's build the west log wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"southeast side, which we can also use as part of the central building." +msgid "build W log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the southeast " -"side, which we can also use as part of the central building." +msgid "Let's build the east log wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"northwest side, which we can also use as part of the central building." +msgid "build E log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"west side, which we can also use as part of the central building." +msgid "Let's build the center of the log wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the west side," -" which we can also use as part of the central building." +msgid "build center of the log wall dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's start building the central kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the southwest " -"side, which we can also use as part of the central building." +msgid "build the metal wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from rammed earth." +msgid "Let's finish the central kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with rammed earth." +msgid "finish the metal wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from rammed earth." +"Let's get this metal wall smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with rammed earth." +msgid "build a metal wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with rammed earth." +msgid "Let's build a metal wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from rammed earth." +msgid "build a metal wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with rammed earth." +msgid "Let's build the west metal wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from rammed earth." +msgid "build W metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with rammed earth." +msgid "Let's build the east metal wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with rammed earth." +msgid "build E metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a stone shack with a wooden roof on " -"the northeast side of the camp" +msgid "Let's build the center of the metal wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use rocks to expand the shelter so we have space for another bed." +msgid "build center of the metal wall dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use rocks to finish the northeast shack." +msgid "Let's start building the central kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the east side," -" which we can also use as part of the central building." +msgid "build the mi-go resin central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the east side, which " -"we can also use as part of the central building." +msgid "Let's finish the central kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the southeast " -"side, which we can also use as part of the central building." +msgid "finish the mi-go resin central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a rock room on the southeast side, " -"which we can also use as part of the central building." +"Let's get this mi-go resin smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the northwest " -"side, which we can also use as part of the central building." +msgid "build a mi-go resin roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the west side," -" which we can also use as part of the central building." +msgid "Let's build a mi-go resin wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the west side, which " -"we can also use as part of the central building." +msgid "build a mi-go resin pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the southwest " -"side, which we can also use as part of the central building." +msgid "Let's build the west mi-go resin wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the southwest side, " -"which we can also use as part of the central building." +msgid "build W mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from rocks." +msgid "Let's build the east mi-go resin wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with rocks." +msgid "build E mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from rocks." +msgid "Let's build the center of the mi-go resin dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with rocks." +msgid "build center of the mi-go resin dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with rocks." +msgid "Let's start building the central kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from rocks." +msgid "build the rammed earth central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with rocks." +msgid "Let's finish the central kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from rocks." +msgid "finish the rammed earth central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with rocks." +"Let's get this rammed earth smoking area covered to protect the workers from" +" the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with rocks." +msgid "build a rammed earth roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so set up a tent on the northeast side of the camp." +msgid "Let's build a rammed earth wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast tent" +msgid "build a rammed earth pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the east side, though " -"doing so will mean we need more materials to build the central building." +msgid "Let's build the west rammed earth wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "east tent" +msgid "build W rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the southeast side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's build the east rammed earth wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast tent" +msgid "build E rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the northwest side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's build the center of the rammed earth dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest tent" +msgid "build center of the rammed earth dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the west side, though " -"doing so will mean we need more materials to build the central building." +msgid "Let's start building the central kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "west tent" +msgid "build the central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the southwest side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's finish the central kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest tent" +msgid "finish the rock wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build half of a wattle-and-daub shack with a sod " -"roof on the northeast side of the camp" +"Let's get this rock wall smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use wattle-and-daub to expand the shelter so we have space for " -"another bed." +msgid "build a rock wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use wattle-and-daub to finish the northeast shack." +msgid "Let's build a rock wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" east side, which we can also use as part of the central building." +msgid "build a rock wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the east " -"side, which we can also use as part of the central building." +msgid "Let's build the west rock wall of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" southeast side, which we can also use as part of the central building." +msgid "build W rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the " -"southeast side, which we can also use as part of the central building." +msgid "Let's build the east rock wall of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" northwest side, which we can also use as part of the central building." +msgid "build E rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" west side, which we can also use as part of the central building." +msgid "Let's build the center of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the west " -"side, which we can also use as part of the central building." +msgid "build center of the rock dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" southwest side, which we can also use as part of the central building." +msgid "Let's start building the central kitchen wattle and daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the " -"southwest side, which we can also use as part of the central building." +msgid "build the wattle and daub central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from wattle-and-daub." +msgid "Let's finish the central kitchen wattle and daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with wattle-and-daub." +msgid "finish the wattle and daub central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from wattle-and-daub." +"Let's get this wattle and daub smoking area covered to protect the workers " +"from the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with wattle-and-daub." +msgid "build a wattle and daub roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with wattle-and-daub." +msgid "Let's build a wattle and daub wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from wattle-and-daub." +msgid "build a wattle and daub pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with wattle-and-daub." +msgid "Let's build the west wattle and daub wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from wattle-and-daub." +msgid "build W wattle and daub wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with wattle-and-daub." +msgid "Let's build the east wattle and daub wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with wattle-and-daub." +msgid "build E wattle and daub wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a wood panel shack with a wooden roof" -" on the northeast side of the camp" +msgid "Let's build the center of the wattle and daub dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use wood panel to expand the shelter so we have space for another " -"bed." +msgid "build center of the wattle and daub dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use wood panel to finish the northeast shack." +msgid "Let's start building the central kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the east" -" side, which we can also use as part of the central building." +msgid "build the wood panel central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the east side, " -"which we can also use as part of the central building." +msgid "Let's finish the central kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"southeast side, which we can also use as part of the central building." +msgid "finish the wood panel central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a wood panel room on the southeast " -"side, which we can also use as part of the central building." +"Let's get this wood panel smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"northwest side, which we can also use as part of the central building." +msgid "build a wood panel roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the west" -" side, which we can also use as part of the central building." +msgid "Let's build a wood panel pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the west side, " -"which we can also use as part of the central building." +msgid "build a wood panel pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's build the west wood panel wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the southwest " -"side, which we can also use as part of the central building." +msgid "build W wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from wood panel." +msgid "Let's build the east wood panel wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with wood panel." +msgid "build E wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from wood panel." +msgid "Let's build the center of the wood panel dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with wood panel." +msgid "build center of the dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with wood panel." +msgid "Survey land for a canteen." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from wood panel." +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with wood panel." +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from wood panel." +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with wood panel." +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with wood panel." +msgid "Lets build 2 root cellars in the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to survey the base site first." +msgid "build root cellars" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"The first thing we are going to need is a command tent to manage and task " -"workers from." +msgid "Lets furnish the pantry." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic northeast tent" +msgid "Let's build some planters for a chef's garden." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We're going to need a fire pit and a bed if we want to stay here " -"permanently." -msgstr "" - -#: lang/json/recipe_from_json.py -msgid "basic firepit" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"To make this outpost functional we are going to need storage containers to " -"organize our supplies." +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic storage" +msgid "build salt water tanks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Next we should expand the camp to comfortably support two people " -"indefinitely." +msgid "Let's install some vats in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic northeast bed" +msgid "install some brewery vats" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Additional housing and storage will allow our camp to expand into " -"specialized industries." +msgid "Let's install some racks for storage in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic northwest tent" +msgid "install some brewery racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Constructing a hard command post will transform our little camp into a true " -"base." +msgid "Let's install a still in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic central building" +msgid "install a still in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Building additional housing will allow us to send companions out to find " -"recruits." +msgid "Let's build a windmill to allow us to grid flour efficiently" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic west tent" +msgid "build a windmill" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to expand our base to include basic dining facilities." +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic central kitchen" +msgid "build a bench and a bird bath" msgstr "" #: lang/json/recipe_from_json.py -msgid "More housing means that we can support additional specialists." +msgid "Let's start building the kitchen concrete walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic southeast tent" +msgid "build the concrete kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "An expanded kitchen is needed to support our growing settlement." +msgid "Let's finish the kitchen concrete walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic expanded kitchen" +msgid "finish the concrete kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Finishing the hard structure will give us a more secure place to retreat to " -"if we come under attack." +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic completed central building" +msgid "build a concrete roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"I'm surprised we've made it this long without securing a clean water source," -" we need a well." +msgid "Let's build a concrete wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic water well" +msgid "build a concrete pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Building a strong wall will keep the base secure even if a small horde " -"attacks." +msgid "Let's build the first concrete part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic partial wall" +msgid "build first dining concrete section" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to finish our half built fortifications." +msgid "Let's build the second concrete part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic complete wall" +msgid "build second dining concrete section" msgstr "" #: lang/json/recipe_from_json.py -msgid "We're running out of room and need another living quarters." +msgid "Let's build a the concrete brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic east tent" +msgid "build concrete brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Our kitchen isn't able to keep up with demand, we need to expand it." +msgid "Let's start building the kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic dining hall" +msgid "build the log kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build stronger doors to secure our compound." +msgid "Let's finish the kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic reinforced gates" +msgid "finish the log kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "One more tent and our living space will be full." +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic southwest tent" +msgid "build a log roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could construct a radio tower to improve communication range, first step " -"is the tower structure." +msgid "Let's build a log wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic radio tower" +msgid "build a log pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to build a console to control the radio tower." +msgid "Let's build the first log part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic radio console" +msgid "build first dining log section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen." +msgid "Let's build the second log part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen survey" +msgid "build second dining log section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a cook-shack is our first task." +msgid "Let's build a the log brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen fireplace shack" +msgid "build log brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to finish framing the walls for the cook-shack." +msgid "Let's start building the kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen finished shack" +msgid "build the metal kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Expanding the shack by including a smoker will increase our versatility." +msgid "Let's finish the kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen charcoal smoker" +msgid "finish the metal kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "A pantry will allow our cooks to store more non-perishables." +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen pantry expansion" +msgid "build a metal roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Increasing our number of smoking racks will let us craft larger batches." +msgid "Let's build a metal wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen more smoking racks" +msgid "build a metal pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "A well is needed so our cooks don't have to haul in water." +msgid "Let's build the first metal part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen water well" +msgid "build first dining metal section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Wood stoves will give us greater control of temperatures and let us craft " -"more difficult recipes." +msgid "Let's build the second metal part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen wood stoves" +msgid "build second dining metal section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Finally, expanding the pantry further will let us store additional " -"materials." +msgid "Let's build a the metal brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen expanded pantry" +msgid "build metal brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A trench that may deter movement but is meant to be the foundation of a " -"picket or palisade. Requirements are for 1/2 an over map tile." +msgid "Let's start building the kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A deep trench filled with spikes, requires a trench. Requirements are for " -"1/2 an over map tile." +msgid "build the mi-go resin kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a blacksmith shop." +msgid "Let's finish the kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy survey" +msgid "finish the mi-go resin kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a forge and kiln is our first task." +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy forge and kiln" +msgid "Let's build the first mi-go resin part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a proper roof for the shop is the next step." +msgid "build first dining mi-go resin section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy roof" +msgid "Let's build the second mi-go resin part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a working table and placing an anvil are next." +msgid "build second dining mi-go resin section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy anvil and workbench" +msgid "Let's build a the mi-go resin brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"If we're going to do more than simple metal casting we need a bigger shop." +msgid "build mi-go resin brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy expanded shop" +msgid "Let's start building the kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "We need some basic tools to make more advanced crafts." +msgid "build the rammed earth kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy forging tools" +msgid "Let's finish the kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "An expanded forge will allow us to work on bigger projects." +msgid "finish the rammed earth kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy expanded forge" +msgid "Let's build a rammed earth wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Proper steel work requires a bellows and quenching setup." +msgid "Let's build the first rammed earth part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy bellows and quenching barrels" +msgid "build first dining rammed earth section" msgstr "" #: lang/json/recipe_from_json.py -msgid "A separate workshop will allow us to do the most basic of machining." +msgid "Let's build the second rammed earth part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop" +msgid "build second dining rammed earth section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Next we need to add some basic tools and vises to the workshop." +msgid "Let's build a the rammed earth brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop tools" +msgid "build rammed earth brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Advanced forging processes require more room to work." +msgid "Let's start building the kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop expansion" +msgid "build the rock kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "An on-site well will allow us to fill boilers as needed." +msgid "Let's finish the kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy well" +msgid "finish the rock kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A steam-powered drop hammer will greatly increase production speed in " -"exchange for charcoal." +"Let's get this rock smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy drop hammer" +msgid "build a rock roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a fireplace for cooking and grab a pot. Let's set up near " -"the working terminal." +msgid "Let's build a rock wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a brazier for cooking and grab a pot. Let's set up near the" -" working terminal." +msgid "build a rock pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a wood stove for cooking and grab a pot. Let's set up near " -"the working terminal." +msgid "Let's build the first rock part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a well, put it near the terminal. This will make our future" -" here more secure." +msgid "build first dining rock section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with regular beds." +msgid "Let's build the second rock part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with regular beds." +msgid "build second dining rock section" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the E bedroom" +msgid "Let's build a the rock brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with straw beds." +msgid "build rock brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with straw beds." +msgid "Let's start building the kitchen wattle-and-daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with makeshift beds." +msgid "build the wattle-and-daub kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with makeshift beds." +msgid "Let's finish the kitchen wattle-and-daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with regular beds." +msgid "finish the wattle-and-daub kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular beds." +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the W bedroom" +msgid "build a wattle-and-daub roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with regular beds." +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with straw beds." +msgid "build a wattle-and-daub pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with straw beds." +msgid "Let's build the first wattle-and-daub part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with straw beds." +msgid "build first dining wattle-and-daub section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with makeshift beds." +msgid "Let's build the second wattle-and-daub part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with makeshift beds." +msgid "build second dining wattle-and-daub section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with makeshift beds." +msgid "Let's build a the wattle-and-daub brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a dining area." +msgid "build wattle-and-daub brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the dining room" +msgid "Let's start building the kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a living room area." +msgid "build the wood panel kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the living room" +msgid "Let's finish the kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some pantry storage." +msgid "finish the wood panel kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "build some wooden racks" +msgid "Let's build a wood panel wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a work bench." +msgid "Let's build the first wood panel part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a work bench" +msgid "build first dining wood panel section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"southeast corner." +msgid "Let's build the second wood panel part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE log bedroom walls" +msgid "build second dining wood panel section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the same wall." +msgid "Let's build a the wood panel brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E log bedroom walls" +msgid "build wood panel brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the other wall." +msgid "Survey land for a farming area." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW log bedroom walls" +msgid "farm area survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W log bedroom walls" +msgid "Plowing a few plots should get us started." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW log bedroom walls" +msgid "Farm basic plots" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE rock bedroom walls" +msgid "We could use a farming shed to store resources where we'll be working." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rock bedroom walls" +msgid "Farm basic shed" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW rock bedroom walls" +msgid "" +"Our farm could be expanded by finishing the shed and adding additional " +"plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rock bedroom walls" +msgid "Farm upgraded shed" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW rock bedroom walls" +msgid "" +"Building a processing shack should allow us to reclaim additional seeds from" +" our byproducts." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE standard bedroom walls" +msgid "Farm processing shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E standard bedroom walls" +msgid "Prepare a row of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW standard bedroom walls" +msgid "prepare farm plots" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W standard bedroom walls" +msgid "Prepare a second row of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW standard bedroom walls" +msgid "Prepare another pair of rows of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE wattle and daub bedroom walls" +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wattle and daub bedroom walls" +msgid "erect a fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wattle and daub bedroom walls" +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wattle and daub bedroom walls" +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wattle and daub bedroom walls" +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE wood panel bedroom walls" +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wood panel bedroom walls" +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wood panel bedroom walls" +msgid "build a palisade gate" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood panel bedroom walls" +msgid "Survey land for a garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wood panel bedroom walls" +msgid "Building a tool rack should be the first priority." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a regular bed." +msgid "Garage tool rack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a straw bed." +msgid "We should start construction of a roof for the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a straw bed." +msgid "Garage partial roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a makeshift bed." +msgid "Finishing out the roof will let our mechanics work rain or shine." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a makeshift bed." +msgid "Garage completed roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a regular bed." +msgid "" +"Our garage isn't big enough to work on larger vehicles. Let's start " +"expanding it." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a straw bed." +msgid "Garage partial expansion" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a makeshift bed." +msgid "Finishing the roof will let us park RVs and buses in the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with regular beds." +msgid "Garage expanded roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the S bedroom" +msgid "" +"Attaching quarters will let our mechanics work longer hours when needed." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with straw beds." +msgid "Garage mechanics quarters" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with makeshift beds." +msgid "Let's connect the two walls with the missing roof piece." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"northwest corner." +msgid "build the missing roof section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the west wall." +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the southwest corner." +msgid "build some furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the south wall." +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S log bedroom walls" +msgid "build an outer palisade gate" msgstr "" #: lang/json/recipe_from_json.py -msgid "build S rock bedroom walls" +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S standard bedroom walls" +msgid "Let's start building the first garage concrete wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wattle and daub bedroom walls" +msgid "build the first concrete garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wood bedroom walls" +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood bedroom walls" +msgid "build the second concrete garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wood bedroom walls" +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wood bedroom walls" +msgid "build an inner concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a well, across from the terminal. This will make our future" -" here more secure." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with a regular bed." +msgid "extend the first wall using concrete" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a regular bed." +msgid "Let's extend the second wall to match the first one, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular a bed." +msgid "extend the second wall using concrete" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a regular bed." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a straw bed." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a makeshift bed." +msgid "Let's start building the first garage log wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a regular bed." +msgid "build the first log garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a straw bed." +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a makeshift bed." +msgid "build the second log garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will enclose the west" -" side of the stairs." +"Let's build a log wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build two living quarters so we can expand. We will continue along " -"the south wall." +msgid "build an inner log wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build another bedroom so we can expand. We will continue to enclose " -"the stairwell and add new doors." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom log walls" +msgid "extend the first wall using logs" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build another bedroom on the east wall." +msgid "Let's extend the second wall to match the first one, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom log walls" +msgid "extend the second wall using log" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom rock walls" +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom rock walls" +msgid "extend the second wall using logs" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom standard walls" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom standard walls" +msgid "Let's start building the first garage metal wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wattle and daub" +msgid "build the first metal garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom wattle and daub" +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wood panel bedroom walls" +msgid "build the second metal garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wood panel bedroom walls" +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom wood panel bedroom walls" +msgid "build an inner metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen and dining area." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Now that we have some cover, we should build 2 fireplaces for cooking and " -"grab a pot." +msgid "extend the first wall using metal" msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2 fireplaces" +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build 2 stoves for cooking and grab a" -" pot." +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2 wood stoves" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build a well. This will make cooking more convenient." +msgid "Let's start building the first garage mi-go resin wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some counters and shelves." +msgid "build the first mi-go resin garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build kitchen counters" +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3 smoking racks and a charcoal kiln" +msgid "build the second mi-go resin garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Lets furnish the pantry and build 2 root cellars." +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the pantry" +msgid "build an inner mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make some furniture for the dining hall." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some planters to the north for a chef's garden." +msgid "extend the first wall using mi-go resin" msgstr "" #: lang/json/recipe_from_json.py -msgid "build some planters" +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen log walls." +msgid "extend the second wall using mi-go resin" msgstr "" #: lang/json/recipe_from_json.py -msgid "build the log wall central kitchen room" +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen log walls." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the log wall central kitchen room" +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this log wall smoking area covered to protect the workers from the" -" weather." +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a log wall roofed area for smoking racks" +msgid "build the second rammed earth garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a log wall pantry west of the kitchen." +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a log wall pantry" +msgid "build an inner rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west log wall of the dining hall." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W log wall" +msgid "extend the first wall using rammed earth" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east log wall of the dining hall." +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E log wall" +msgid "extend the second wall using rammed earth" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the log wall dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the log wall dining hall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen metal walls." +msgid "Let's start building the first garage rock wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the metal wall central kitchen room" +msgid "build the first rock garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen metal walls." +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the metal wall central kitchen room" +msgid "build the second rock garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this metal wall smoking area covered to protect the workers from " -"the weather." +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metal wall roofed area for smoking racks" +msgid "build an inner rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a metal wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metal wall pantry" +msgid "extend the first wall using rock" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west metal wall of the dining hall." +msgid "Let's extend the second wall to match the first one, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W metal wall" +msgid "extend the second wall using rock" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east metal wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E metal wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the metal wall dining hall." +msgid "Let's start building the first garage wattle-and-daub wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the metal wall dining hall" +msgid "build the first wattle-and-daub garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen mi-go resin walls." +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the mi-go resin central kitchen room" +msgid "build the second wattle-and-daub garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen mi-go resin walls." +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the mi-go resin central kitchen room" +msgid "build an inner wattle-and-daub wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this mi-go resin smoking area covered to protect the workers from " -"the weather." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a mi-go resin roofed area for smoking racks" +msgid "extend the first wall using wattle-and-daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a mi-go resin wall pantry west of the kitchen." +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a mi-go resin pantry" +msgid "extend the second wall using wattle-and-daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west mi-go resin wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W mi-go resin wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east mi-go resin wall of the dining hall." +msgid "Let's start building the first garage wood wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E mi-go resin wall" +msgid "build the first wood garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the mi-go resin dining hall." +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the mi-go resin dining hall" +msgid "build the second wood garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rammed earth walls." +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rammed earth central kitchen room" +msgid "build an inner wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rammed earth walls." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the rammed earth central kitchen room" +msgid "extend the first wall using wood panels" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rammed earth smoking area covered to protect the workers from" -" the weather." +"Let's extend the second wall to match the first one, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rammed earth roofed area for smoking racks" +msgid "extend the second wall using wood" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rammed earth wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rammed earth pantry" +msgid "extend the second wall using wood panels" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west rammed earth wall of the dining hall." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rammed earth wall" +msgid "Survey land for a livestock area." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east rammed earth wall of the dining hall." +msgid "Livestock survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rammed earth wall" +msgid "" +"We could use a fence to contain our chickens and other birds, so build a " +"chickenwire fence on the east side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rammed earth dining hall." +msgid "east coop yard" msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the rammed earth dining hall" +msgid "" +"We could use paddock for the stable, so build a split-rail fence on the " +"north side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rock walls." +msgid "north paddock" msgstr "" #: lang/json/recipe_from_json.py -msgid "build the central kitchen room" +msgid "" +"We could use paddock for the stable, so build a split-rail fence in the " +"center of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rock walls." +msgid "center paddock" msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the rock wall central kitchen room" +msgid "" +"We could use paddock for the stable, so build a split-rail fence to close " +"off the south end of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rock wall smoking area covered to protect the workers from " -"the weather." +"We could use a coop to contain our chickens and other birds, so build a log " +"shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rock wall roofed area for smoking racks" +msgid "northeast coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rock wall pantry west of the kitchen." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rock wall pantry" +msgid "southeast storage room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west rock wall of the rock wall dining hall." +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rock wall" +msgid "southwest stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east rock wall of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the west" +" side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rock wall" +msgid "west stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the " +"northwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the rock dining hall" +msgid "northwest stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wattle and daub walls." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"metal sheet shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wattle and daub central kitchen room" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal sheet shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wattle and daub walls." +msgid "" +"We could use a stable for larger livestock, so build a metal sheet shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the wattle and daub central kitchen room" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a mi-" +"go resin shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wattle and daub smoking area covered to protect the workers " -"from the weather." +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub roofed area for smoking racks" +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a wattle and daub wall pantry west of the kitchen." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"rammed earth shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub pantry" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west wattle and daub wall of the dining hall." +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wattle and daub wall" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"stone shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east wattle and daub wall of the dining hall." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"stone shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wattle and daub wall" +msgid "" +"We could use a stable for larger livestock, so build a stone shack with a " +"roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wattle and daub dining hall." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"wattle and daub shack with a roof on the northeast side of the livestock " +"field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the wattle and daub dining hall" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle and daub shack with a roof on the southeast side of the livestock " +"field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wood panel walls." +msgid "" +"We could use a stable for larger livestock, so build a wattle and daub shack" +" with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wood panel central kitchen room" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a wood" +" panel shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wood panel walls." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the wood panel central kitchen room" +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wood panel smoking area covered to protect the workers from " -"the weather." +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood panel roofed area for smoking racks" +msgid "chicken coop yard" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a wood panel pantry west of the kitchen." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood panel pantry" +msgid "remote paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west wood panel wall of the dining hall." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood wall" +msgid "side paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east wood panel wall of the dining hall." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wood wall" +msgid "near paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wood panel dining hall." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the dining hall" +msgid "concrete chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a farming area." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "farm area survey" +msgid "concrete storage shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Plowing a few plots should get us started." +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm basic plots" +msgid "concrete stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "We could use a farming shed to store resources where we'll be working." +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm basic shed" +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Our farm could be expanded by finishing the shed and adding additional " -"plots." +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm upgraded shed" +msgid "log chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Building a processing shack should allow us to reclaim additional seeds from" -" our byproducts." +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm processing shack" +msgid "log storage shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a garage." +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a tool rack should be the first priority." +msgid "log stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage tool rack" +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should start construction of a roof for the garage." +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage partial roof" +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Finishing out the roof will let our mechanics work rain or shine." +msgid "metal chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage completed roof" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Our garage isn't big enough to work on larger vehicles. Let's start " -"expanding it." +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage partial expansion" +msgid "metal stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Finishing the roof will let us park RVs and buses in the garage." +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage expanded roof" +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Attaching quarters will let our mechanics work longer hours when needed." +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage mechanics quarters" +msgid "mi-go resin chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a livestock area." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Livestock survey" +msgid "mi-go resin storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a fence to contain our chickens and other birds, so build a " -"chickenwire fence on the east side of the livestock field." +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "east coop yard" +msgid "mi-go resin stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence on the " -"north side of the livestock field." +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "north paddock" +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence in the " -"center of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "center paddock" +msgid "rammed earth chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence to close " -"off the south end of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a log " -"shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast coop" +msgid "rammed earth stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a log " -"shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast storage room" +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a log shack with a roof" -" on the southwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest stable" +msgid "rock chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the west" -" side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "west stable" +msgid "rock storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the " -"northwest side of the livestock field." +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest stable" +msgid "rock stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"metal sheet shack with a roof on the northeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rock walled " +"stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"metal sheet shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a metal sheet shack " -"with a roof on the southwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a mi-" -"go resin shack with a roof on the northeast side of the livestock field." +msgid "wattle-and-daub chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a mi-" -"go resin shack with a roof on the southeast side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a mi-go resin shack " -"with a roof on the southwest side of the livestock field." +msgid "wattle-and-daub storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"rammed earth shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"rammed earth shack with a roof on the southeast side of the livestock field." +msgid "wattle-and-daub stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a rammed earth shack " -"with a roof on the southwest side of the livestock field." +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"stone shack with a roof on the northeast side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"stone shack with a roof on the southeast side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a stone shack with a " -"roof on the southwest side of the livestock field." +msgid "wood panel chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"wattle and daub shack with a roof on the northeast side of the livestock " -"field." +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"wattle and daub shack with a roof on the southeast side of the livestock " -"field." +msgid "wood panel storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wattle and daub shack" -" with a roof on the southwest side of the livestock field." +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a wood" -" panel shack with a roof on the northeast side of the livestock field." +msgid "wood panel stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a wood" -" panel shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wood panel shack with" -" a roof on the southwest side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." msgstr "" #: lang/json/recipe_from_json.py @@ -205044,6 +208130,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -205309,60 +209034,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -206197,7 +210231,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -206209,12 +210247,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -206222,11 +210270,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -206389,6 +210447,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -208534,6 +212648,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -208846,7 +212986,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -209584,8 +213724,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -210355,15 +214495,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -215410,6 +219551,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -215418,7 +219825,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -215535,7 +219942,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -220120,7 +224527,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -220179,7 +224586,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -220192,7 +224599,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -220210,17 +224617,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -220299,7 +224706,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -220409,8 +224816,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -220818,7 +225225,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -220828,8 +225235,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -222251,6 +226658,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -224549,7 +229018,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "" @@ -225210,6 +229679,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -225228,6 +229809,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -226396,6 +230992,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -228722,6 +233396,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -228831,6 +233512,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -228854,6 +233553,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -230364,7 +235070,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -230534,19 +235240,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -230619,95 +235325,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" +msgid "\"Wanna play with me?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" +msgid "\"Sing with me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" +msgid "\"Please take me with you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" +msgid "\"May I have a cookie?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -230715,31 +235425,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" +msgid "\"Hey kids. Want some candy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -230755,19 +235465,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -231834,6 +236540,10 @@ msgstr "" msgid "Gun Store" msgstr "" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "" @@ -233267,6 +237977,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -240487,6 +245201,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -241133,6 +246625,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -241202,6 +246698,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -243636,10 +249143,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -247432,10 +252935,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -247764,6 +253263,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -248055,6 +253663,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -248145,6 +253762,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -250916,6 +256585,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -251101,20 +256787,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -251722,20 +257394,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "" @@ -251771,54 +257429,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -251902,20 +257550,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -252034,34 +257668,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -252077,45 +257683,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -252199,17 +257805,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -252251,7 +257857,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -252264,6 +257870,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -252410,20 +258020,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -252528,20 +258124,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -252642,20 +258224,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -252980,41 +258548,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -253215,20 +258779,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -253989,20 +259539,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -254101,20 +259637,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -254157,20 +259679,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -256423,6 +261931,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "" @@ -259840,24 +265360,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -259865,32 +265385,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -259898,35 +265418,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -259934,33 +265449,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -259968,10 +265483,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -259979,10 +265494,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -259990,40 +265505,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -260031,21 +265544,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -260053,44 +265562,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -260098,14 +265598,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -260123,12 +265619,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -260136,21 +265627,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -260158,10 +265645,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -260169,7 +265656,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -260178,10 +265665,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -260190,21 +265677,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -260212,10 +265695,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -260224,10 +265707,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -260235,7 +265718,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -260244,26 +265727,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -260277,11 +265760,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -262784,18 +268263,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "" @@ -263158,6 +268744,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -263635,6 +269272,15 @@ msgstr "" msgid "wooden aisle" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -263768,6 +269414,10 @@ msgstr "" msgid "wood table" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -263836,6 +269486,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -263942,6 +269596,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -265125,8 +270785,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -267883,6 +273543,18 @@ msgstr "" msgid "Coverage:" msgstr "" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "" @@ -267974,8 +273646,9 @@ msgstr "" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -267987,6 +273660,12 @@ msgstr "" msgid "Storage (%s)" msgstr "" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "" @@ -272222,11 +277901,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "" @@ -272537,6 +278211,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -274716,10 +280398,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -275260,6 +280938,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -275686,6 +281372,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -275774,6 +281465,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -276531,7 +282227,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -276553,15 +282249,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -279905,6 +285592,10 @@ msgstr "" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -280189,6 +285880,15 @@ msgstr "" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "" @@ -282506,10 +288206,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "" @@ -282650,6 +288346,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -283009,10 +288713,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -283543,13 +289243,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -286868,6 +292561,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -289907,13 +295615,17 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" +msgid "Set the timer to how many seconds (0 to cancel)?" msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: src/iuse.cpp msgid "Tick!" @@ -290650,8 +296362,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -290877,38 +296588,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -292143,87 +297822,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -295053,7 +300675,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -299993,6 +305627,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "Mluvit s %s" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -300864,21 +306503,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -301142,11 +306766,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -302850,11 +308483,6 @@ msgstr "Nemůžeš mluvit bez obličeje!" msgid "What do you want to do?" msgstr "Co chceš dělat?" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "Mluvit s %s" - #: src/npctalk.cpp msgid "Talk to…" msgstr "Mluvit k..." @@ -303621,6 +309249,15 @@ msgstr "" "Pokud povoleno, umožňuje automatické použití drženého krumpáče nebo " "pneumatického kladiva kdykoli se pokusíš přesunout na vytěžitelný terén." +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -303628,14 +309265,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -305955,20 +311597,6 @@ msgstr "" msgid "# Unexplored" msgstr "" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -306309,6 +311937,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -306357,6 +311990,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -308748,6 +314385,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -313096,6 +318743,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "" diff --git a/lang/po/da.po b/lang/po/da.po index 54e20975a2994..935bc74c60a9f 100644 --- a/lang/po/da.po +++ b/lang/po/da.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Rasmus Nylander , 2021\n" "Language-Team: Danish (https://www.transifex.com/cataclysm-dda-translators/teams/2217/da/)\n" @@ -22,7 +22,7 @@ msgid_plural "battery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -35,7 +35,7 @@ msgid_plural "butane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "" @@ -46,7 +46,7 @@ msgid_plural "aerosol paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -59,7 +59,7 @@ msgid_plural "permanent ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -72,7 +72,7 @@ msgid_plural "candle wax" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "" @@ -83,7 +83,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "" @@ -107,7 +107,7 @@ msgid_plural "oxygen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "" @@ -118,7 +118,7 @@ msgid_plural "aluminum foil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -142,7 +142,7 @@ msgid_plural "thread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -175,7 +175,7 @@ msgid_plural "yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Uldgarn, kan bruges til at strikke uldtøj." @@ -197,7 +197,7 @@ msgid_plural "duct tape" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -257,8 +257,8 @@ msgid_plural "plutonium slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -322,7 +322,7 @@ msgid_plural "bearings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -368,7 +368,7 @@ msgid_plural "120mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -393,7 +393,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -407,7 +407,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -418,7 +418,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -429,7 +429,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -441,7 +441,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -452,7 +452,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -463,7 +463,7 @@ msgid_plural "artillery propellant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -476,7 +476,7 @@ msgid_plural "oxidizer powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "" @@ -487,7 +487,7 @@ msgid_plural "lye powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "" @@ -577,7 +577,7 @@ msgid_plural "copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -590,7 +590,7 @@ msgid_plural "medical tape" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "" @@ -602,7 +602,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "" @@ -613,7 +613,7 @@ msgid_plural "charcoal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -627,7 +627,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -653,7 +653,7 @@ msgid_plural "albuterol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -741,7 +741,7 @@ msgid_plural "nicotine liquid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -754,7 +754,7 @@ msgid_plural "fish bait" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "" @@ -807,7 +807,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -820,7 +820,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -844,7 +844,7 @@ msgid_plural "nitrox" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -855,7 +855,7 @@ msgid_plural "extinguishing agent" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "" @@ -866,7 +866,7 @@ msgid_plural "tinder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -899,7 +899,7 @@ msgid_plural "bronze" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -910,7 +910,7 @@ msgid_plural "glowstick juice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -922,7 +922,7 @@ msgid_plural "graphite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -936,7 +936,7 @@ msgid_plural "black pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -949,7 +949,7 @@ msgid_plural "blue pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -962,7 +962,7 @@ msgid_plural "green pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -975,7 +975,7 @@ msgid_plural "red pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1002,7 +1002,7 @@ msgid_plural "sulfur" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1028,7 +1028,7 @@ msgid_plural "cement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1042,7 +1042,7 @@ msgid_plural "gravel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1053,7 +1053,7 @@ msgid_plural "limestone" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1067,7 +1067,7 @@ msgid_plural "quicklime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1083,7 +1083,7 @@ msgid_plural "sand" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1096,7 +1096,7 @@ msgid_plural "soil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1109,7 +1109,7 @@ msgid_plural "aluminum powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1124,7 +1124,7 @@ msgid_plural "zinc powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1139,7 +1139,7 @@ msgid_plural "zinc oxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1152,7 +1152,7 @@ msgid_plural "manganese dioxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1166,7 +1166,7 @@ msgid_plural "potassium chloride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1181,7 +1181,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1195,7 +1195,7 @@ msgid_plural "acetone" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1209,7 +1209,7 @@ msgid_plural "chromium oxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1225,7 +1225,7 @@ msgid_plural "calcium carbide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1241,7 +1241,7 @@ msgid_plural "hexamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1257,7 +1257,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1272,7 +1272,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1287,7 +1287,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1302,7 +1302,7 @@ msgid_plural "saltpeter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1316,7 +1316,7 @@ msgid_plural "niter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1329,7 +1329,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1346,7 +1346,7 @@ msgid_plural "acetic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1361,7 +1361,7 @@ msgid_plural "formaldehyde" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1376,7 +1376,7 @@ msgid_plural "thermite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1391,7 +1391,7 @@ msgid_plural "ANFO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1406,7 +1406,7 @@ msgid_plural "black gunpowder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1421,7 +1421,7 @@ msgid_plural "match head powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1435,7 +1435,7 @@ msgid_plural "RDX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1449,7 +1449,7 @@ msgid_plural "composition b" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1463,7 +1463,7 @@ msgid_plural "HMTD" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1477,7 +1477,7 @@ msgid_plural "APEX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1491,7 +1491,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1504,7 +1504,7 @@ msgid_plural "detergent" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "" @@ -1515,7 +1515,7 @@ msgid_plural "soap flakes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1576,7 +1576,7 @@ msgid_plural "concentrated venom" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1591,7 +1591,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1606,7 +1606,7 @@ msgid_plural "rocuronium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1620,7 +1620,7 @@ msgid_plural "red phosphorous" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1633,7 +1633,7 @@ msgid_plural "iodine crystal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1646,7 +1646,7 @@ msgid_plural "ethanol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1674,7 +1674,7 @@ msgid_plural "methanol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1688,7 +1688,7 @@ msgid_plural "diesel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1700,7 +1700,7 @@ msgid_plural "JP8 fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1713,7 +1713,7 @@ msgid_plural "avgas fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -1724,7 +1724,7 @@ msgid_plural "biodiesel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1738,7 +1738,7 @@ msgid_plural "gasoline" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1751,7 +1751,7 @@ msgid_plural "lamp oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "" @@ -1762,7 +1762,7 @@ msgid_plural "motor oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "" @@ -1773,7 +1773,7 @@ msgid_plural "napalm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -1787,7 +1787,7 @@ msgid_plural "gelled gasoline" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -1801,7 +1801,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -1840,7 +1840,7 @@ msgid_plural "shrapnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "" @@ -1896,7 +1896,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -1922,7 +1922,7 @@ msgid_plural "H&K 12mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -1962,7 +1962,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -1988,7 +1988,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2030,7 +2030,7 @@ msgid_plural "20x66mm frag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2044,7 +2044,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2058,7 +2058,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2086,7 +2086,7 @@ msgid_plural ".22 CB" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2100,7 +2100,7 @@ msgid_plural ".22 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2114,7 +2114,7 @@ msgid_plural ".22 LR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2128,7 +2128,7 @@ msgid_plural ".22 rat-shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2166,7 +2166,7 @@ msgid_plural ".223 Remington" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2183,7 +2183,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2199,7 +2199,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2216,7 +2216,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2234,7 +2234,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2252,7 +2252,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2301,7 +2301,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2349,7 +2349,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2363,7 +2363,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2377,7 +2377,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2391,7 +2391,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2493,7 +2493,7 @@ msgid_plural ".308 Winchester" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2507,7 +2507,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2521,7 +2521,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2570,7 +2570,7 @@ msgid_plural ".32 ACP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2595,7 +2595,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2609,7 +2609,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2647,7 +2647,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2660,7 +2660,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -2711,7 +2711,7 @@ msgid_plural ".38 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -2737,7 +2737,7 @@ msgid_plural ".38 Super" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -2780,7 +2780,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -2795,7 +2795,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -2810,7 +2810,7 @@ msgid_plural ".380 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -2855,7 +2855,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -2875,7 +2875,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -2889,7 +2889,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -2933,7 +2933,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -2947,7 +2947,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -2961,7 +2961,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -2975,7 +2975,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -2989,8 +2989,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3004,8 +3004,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3048,8 +3048,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3063,8 +3063,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3122,7 +3122,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3135,7 +3135,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3165,7 +3165,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3179,8 +3179,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3203,8 +3203,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3235,7 +3235,7 @@ msgid_plural ".410 000 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3252,7 +3252,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3316,7 +3316,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3329,7 +3329,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3343,7 +3343,7 @@ msgid_plural ".45 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3387,7 +3387,7 @@ msgid_plural ".454 Casull" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3415,7 +3415,7 @@ msgid_plural ".45-70 SP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3443,7 +3443,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3457,7 +3457,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3486,7 +3486,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3501,7 +3501,7 @@ msgid_plural ".45-70, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3516,7 +3516,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3543,7 +3543,7 @@ msgid_plural "4.6x30mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3557,8 +3557,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3579,7 +3579,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3592,7 +3592,7 @@ msgid_plural ".460 Rowland" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -3620,7 +3620,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -3639,7 +3639,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3653,7 +3653,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -3669,7 +3669,7 @@ msgid_plural ".50 BMG Match" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -3682,7 +3682,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -3695,7 +3695,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -3714,7 +3714,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3728,7 +3728,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -3744,7 +3744,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -3801,7 +3801,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -3816,7 +3816,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -3829,7 +3829,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -3843,7 +3843,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -3868,7 +3868,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3885,8 +3885,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3965,7 +3965,7 @@ msgid_plural "66mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -3978,7 +3978,7 @@ msgid_plural ".700 NX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4005,7 +4005,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4020,7 +4020,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4035,7 +4035,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4068,7 +4068,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4096,7 +4096,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4123,7 +4123,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4190,7 +4190,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4203,7 +4203,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4216,7 +4216,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4230,7 +4230,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4244,7 +4244,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4259,7 +4259,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4274,7 +4274,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4288,7 +4288,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4303,7 +4303,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4316,7 +4316,7 @@ msgid_plural "9x19mm +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4329,7 +4329,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4378,7 +4378,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4392,7 +4392,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4406,7 +4406,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4431,7 +4431,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4445,7 +4445,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4459,7 +4459,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4473,7 +4473,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -4499,7 +4499,7 @@ msgid_plural "cannon round shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -4512,7 +4512,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -4525,7 +4525,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -4538,7 +4538,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -4649,7 +4649,7 @@ msgid_plural "paintball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -4765,7 +4765,7 @@ msgid_plural "00 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -4779,7 +4779,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -4790,7 +4790,7 @@ msgid_plural "birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -4845,8 +4845,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -4997,7 +4997,7 @@ msgid_plural "oxyacetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5010,7 +5010,7 @@ msgid_plural "fungal seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "" @@ -5831,7 +5831,7 @@ msgid_plural "red paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "" @@ -5842,7 +5842,7 @@ msgid_plural "blue paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "" @@ -5853,7 +5853,7 @@ msgid_plural "white paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "" @@ -5864,7 +5864,7 @@ msgid_plural "green paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "" @@ -5875,7 +5875,7 @@ msgid_plural "purple paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "" @@ -5886,7 +5886,7 @@ msgid_plural "yellow paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "" @@ -5954,7 +5954,7 @@ msgid_plural "bismuth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -5965,8 +5965,8 @@ msgid_plural "gold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -5985,7 +5985,7 @@ msgid_plural "zinc" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6000,7 +6000,7 @@ msgid_plural "lead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6013,7 +6013,7 @@ msgid_plural "magnesium powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6026,7 +6026,7 @@ msgid_plural "silver" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -6087,7 +6087,7 @@ msgid_plural "tin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -6100,7 +6100,7 @@ msgid_plural "solder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -6136,7 +6136,7 @@ msgid_plural "fuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -6189,7 +6189,7 @@ msgid_plural "cotton scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -6203,7 +6203,7 @@ msgid_plural "faux fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -6216,7 +6216,7 @@ msgid_plural "felt scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -6230,7 +6230,7 @@ msgid_plural "fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -6243,7 +6243,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -6258,7 +6258,7 @@ msgid_plural "leather scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -6271,7 +6271,7 @@ msgid_plural "Lycra scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -6284,7 +6284,7 @@ msgid_plural "neoprene scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -6297,7 +6297,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -6310,7 +6310,7 @@ msgid_plural "Nomex scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -6336,7 +6336,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -6361,7 +6361,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -6386,7 +6386,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -6426,7 +6426,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -6453,7 +6453,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -6481,7 +6481,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -6506,7 +6506,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -6600,7 +6600,7 @@ msgid_plural "titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -6628,7 +6628,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -6643,7 +6643,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -6658,7 +6658,7 @@ msgid_plural "25mm canister shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -6674,7 +6674,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -6689,7 +6689,7 @@ msgid_plural "7.50mm RP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -6706,7 +6706,7 @@ msgid_plural "electric charge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -6719,7 +6719,7 @@ msgid_plural "foamcrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -6735,7 +6735,7 @@ msgid_plural "solid hydrogen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -6748,7 +6748,7 @@ msgid_plural "lead pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -6762,7 +6762,7 @@ msgid_plural "domed HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -6776,7 +6776,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -6789,7 +6789,7 @@ msgid_plural "alloy pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -6934,7 +6934,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6949,7 +6949,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6988,7 +6988,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -7004,7 +7004,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -7044,7 +7044,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7060,7 +7060,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7100,7 +7100,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7116,7 +7116,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7156,7 +7156,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -7168,7 +7168,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -7181,7 +7181,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7197,7 +7197,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7224,7 +7224,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -7237,7 +7237,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -7251,7 +7251,7 @@ msgid_plural "rocket, smoke" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -7277,7 +7277,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -7290,7 +7290,7 @@ msgid_plural "shotshell, slug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -7304,7 +7304,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -7354,7 +7354,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -7405,7 +7405,7 @@ msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -7458,7 +7458,7 @@ msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -7486,7 +7486,7 @@ msgid_plural "parabolan yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -7497,7 +7497,7 @@ msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -7535,7 +7535,7 @@ msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -7552,7 +7552,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -8045,7 +8045,7 @@ msgstr[1] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -8061,7 +8061,7 @@ msgstr "" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -8097,7 +8097,7 @@ msgid_plural "chest rig" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -8976,38 +8976,19 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" +msgid "tool belt" +msgid_plural "tool belts" msgstr[0] "" msgstr[1] "" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "" -msgstr[1] "" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -9159,25 +9140,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -9195,45 +9157,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -9245,26 +9168,6 @@ msgstr[1] "" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -9283,26 +9186,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -9373,20 +9256,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -9418,39 +9287,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -10341,25 +10177,6 @@ msgid_plural "XL leather dusters" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -10408,7 +10225,7 @@ msgid_plural "army jacket" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -10581,7 +10398,7 @@ msgid_plural "kimono" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -10742,19 +10559,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -10807,19 +10611,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -10837,7 +10628,7 @@ msgid_plural "thawb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -10889,19 +10680,6 @@ msgstr[1] "" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -11146,19 +10924,6 @@ msgstr[1] "" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -11530,25 +11295,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -11566,50 +11312,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -11673,63 +11375,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -11770,19 +11415,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -11904,37 +11536,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -12675,7 +12276,7 @@ msgid_plural "kabuto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -12785,32 +12386,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -12864,32 +12439,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -13089,36 +12638,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -13168,77 +12687,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -13250,56 +12698,6 @@ msgstr[1] "" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -13708,9 +13106,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -13721,9 +13119,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -13734,9 +13132,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -13747,9 +13145,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -13760,9 +13158,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -13773,9 +13171,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -13786,9 +13184,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -13799,9 +13197,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -13812,9 +13210,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -13825,9 +13223,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -13838,9 +13236,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -13851,9 +13249,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -13864,9 +13262,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -13877,9 +13275,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -17457,7 +16855,7 @@ msgid_plural "turnout trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -17497,7 +16895,7 @@ msgid_plural "leather chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -17510,7 +16908,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -17525,7 +16923,7 @@ msgid_plural "fencing pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -17698,32 +17096,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -17735,39 +17107,13 @@ msgstr[1] "" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -17780,7 +17126,7 @@ msgid_plural "light EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -17807,7 +17153,7 @@ msgid_plural "basketball shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "" @@ -17818,7 +17164,7 @@ msgid_plural "breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -17842,7 +17188,7 @@ msgid_plural "hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "" @@ -17853,7 +17199,7 @@ msgid_plural "fur hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "" @@ -17864,7 +17210,7 @@ msgid_plural "leather hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "" @@ -17875,7 +17221,7 @@ msgid_plural "jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "" @@ -17908,7 +17254,7 @@ msgid_plural "red jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -17937,7 +17283,7 @@ msgid_plural "leggings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -18013,7 +17359,7 @@ msgid_plural "pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "" @@ -18024,15 +17370,15 @@ msgid_plural "army pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -18065,7 +17411,7 @@ msgid_plural "cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -18076,7 +17422,7 @@ msgid_plural "checkered pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -18087,7 +17433,7 @@ msgid_plural "fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "" @@ -18098,7 +17444,7 @@ msgid_plural "faux fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -18109,7 +17455,7 @@ msgid_plural "leather pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -18122,7 +17468,7 @@ msgid_plural "ski pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "" @@ -18133,7 +17479,7 @@ msgid_plural "police breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -18146,7 +17492,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -18157,7 +17503,7 @@ msgid_plural "shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "" @@ -18168,7 +17514,7 @@ msgid_plural "cargo shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -18179,7 +17525,7 @@ msgid_plural "denim shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -18240,7 +17586,7 @@ msgid_plural "striped pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -18271,7 +17617,7 @@ msgid_plural "army winter pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -19411,58 +18757,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -19897,33 +19191,6 @@ msgid_plural "XL plate armors" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -19969,8 +19236,8 @@ msgstr[1] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -19984,19 +19251,6 @@ msgstr[1] "" msgid "An ornamental suit of Japanese samurai armor." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -20131,69 +19385,41 @@ msgstr[0] "" msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for survivor firesuit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" @@ -20212,40 +19438,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -20309,19 +19501,6 @@ msgid "" "experience." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -20331,8 +19510,8 @@ msgstr[1] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" #: lang/json/ARMOR_from_json.py @@ -20348,42 +19527,6 @@ msgid "" "Light and very comfortable." msgstr "" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -20455,45 +19598,6 @@ msgstr[1] "" msgid "A neoprene hood, commonly worn by divers." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -20601,7 +19705,7 @@ msgid_plural "lorica segmentata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -20770,7 +19874,7 @@ msgid_plural "tire leather armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -20830,25 +19934,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -21116,7 +20201,7 @@ msgid_plural "leotard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -21202,7 +20287,7 @@ msgid_plural "French maid clothes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -21502,7 +20587,7 @@ msgid_plural "boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -21513,7 +20598,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -21524,7 +20609,7 @@ msgid_plural "boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -21536,7 +20621,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -21549,7 +20634,7 @@ msgid_plural "boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21561,7 +20646,7 @@ msgid_plural "XL boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21586,7 +20671,7 @@ msgid_plural "briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "" @@ -21743,7 +20828,7 @@ msgid_plural "panties" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -21807,7 +20892,7 @@ msgid_plural "tights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -21832,7 +20917,7 @@ msgid_plural "compression shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -21866,6 +20951,942 @@ msgid "" "unitard provides overall coverage with great flexibility." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -21986,7 +22007,7 @@ msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -21999,7 +22020,7 @@ msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -22159,7 +22180,7 @@ msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -22170,7 +22191,7 @@ msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -22183,7 +22204,7 @@ msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -22445,7 +22466,7 @@ msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -22595,19 +22616,6 @@ msgid "" " ridiculously heavy." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -22735,7 +22743,7 @@ msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -22748,7 +22756,7 @@ msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -22791,6 +22799,12 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -22939,7 +22953,7 @@ msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -23426,7 +23440,7 @@ msgid_plural "freerunner's boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -23498,7 +23512,7 @@ msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -23513,7 +23527,7 @@ msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23542,7 +23556,7 @@ msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23600,7 +23614,7 @@ msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -23658,7 +23672,7 @@ msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -23669,7 +23683,7 @@ msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -23767,7 +23781,7 @@ msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -23778,7 +23792,7 @@ msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -23863,16 +23877,18 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -23890,42 +23906,35 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -24651,7 +24660,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -25082,7 +25091,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -25291,7 +25300,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -26595,7 +26604,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -26838,7 +26847,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -26876,7 +26885,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -26891,7 +26900,7 @@ msgid_plural "schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -26899,9 +26908,9 @@ msgstr[1] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -26917,7 +26926,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -26932,7 +26941,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -26947,7 +26956,7 @@ msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -26961,7 +26970,7 @@ msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -26975,7 +26984,7 @@ msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -26989,7 +26998,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -27003,7 +27012,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -27017,7 +27026,7 @@ msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -27031,7 +27040,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -27045,7 +27054,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -27059,7 +27068,7 @@ msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27074,7 +27083,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27089,7 +27098,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -27103,7 +27112,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -27701,7 +27710,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "" @@ -27712,7 +27721,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -27724,7 +27733,7 @@ msgid_plural "Capoeira 100" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "" @@ -27735,7 +27744,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "" @@ -27746,7 +27755,7 @@ msgid_plural "The Red Crane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "" @@ -27757,7 +27766,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "" @@ -27768,7 +27777,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "" @@ -27779,7 +27788,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "" @@ -27790,7 +27799,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "" @@ -27801,7 +27810,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "" @@ -27812,7 +27821,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "" @@ -27823,7 +27832,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "" @@ -27834,7 +27843,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "" @@ -27845,7 +27854,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "" @@ -27856,7 +27865,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "" @@ -27867,7 +27876,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -27880,7 +27889,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "" @@ -27891,7 +27900,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "" @@ -27902,7 +27911,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "" @@ -27913,7 +27922,7 @@ msgid_plural "The Black Snake" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "" @@ -27924,7 +27933,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -27935,7 +27944,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" @@ -27946,7 +27955,7 @@ msgid_plural "The White Tiger" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "" @@ -27957,7 +27966,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "" @@ -27968,7 +27977,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "" @@ -27979,7 +27988,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "" @@ -27990,7 +27999,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "" @@ -28001,7 +28010,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -28013,7 +28022,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -28027,7 +28036,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -28183,7 +28192,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -29052,7 +29061,7 @@ msgid_plural "patient treatment records" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -29063,7 +29072,7 @@ msgid_plural "national weather transcripts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -32495,7 +32504,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32510,7 +32519,7 @@ msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32525,7 +32534,7 @@ msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32540,7 +32549,7 @@ msgid_plural "tank drone schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32555,7 +32564,7 @@ msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -32785,7 +32794,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -32796,7 +32805,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -32807,7 +32816,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -32820,7 +32829,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -32831,7 +32840,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -32844,7 +32853,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -32858,7 +32867,7 @@ msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -32869,7 +32878,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -32882,7 +32891,7 @@ msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -32893,7 +32902,7 @@ msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -32920,6 +32929,21 @@ msgstr[1] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -35000,7 +35024,7 @@ msgid_plural "bird litter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -35056,14 +35080,14 @@ msgid_plural "bleach" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -35076,7 +35100,7 @@ msgid_plural "ammonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -35089,7 +35113,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -35100,7 +35124,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -35111,7 +35135,7 @@ msgid_plural "fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -35124,7 +35148,7 @@ msgid_plural "insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -35137,7 +35161,7 @@ msgid_plural "salt water" msgstr[0] "saltvand" msgstr[1] "saltvand" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "" @@ -35148,7 +35172,7 @@ msgid_plural "soapy water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -35170,7 +35194,7 @@ msgid_plural "sulfuric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -35185,7 +35209,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -35199,7 +35223,7 @@ msgid_plural "nitric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -35230,7 +35254,7 @@ msgid_plural "sewage water" msgstr[0] "spildevand" msgstr[1] "spildevand" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -35241,7 +35265,7 @@ msgid_plural "lye" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -35254,7 +35278,7 @@ msgid_plural "ether" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -35269,7 +35293,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -35284,7 +35308,7 @@ msgid_plural "chloroform" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -35298,7 +35322,7 @@ msgid_plural "phenol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -35314,7 +35338,7 @@ msgid_plural "glycerol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -35327,7 +35351,7 @@ msgid_plural "peptone broth powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -35341,7 +35365,7 @@ msgid_plural "agar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -35356,7 +35380,7 @@ msgid_plural "acrylamide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -35369,7 +35393,7 @@ msgid_plural "acetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -35382,7 +35406,7 @@ msgid_plural "formic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -35395,7 +35419,7 @@ msgid_plural "latex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -35406,7 +35430,7 @@ msgid_plural "citric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -35483,13 +35507,24 @@ msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -35528,7 +35563,7 @@ msgid_plural "marloss wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -35539,7 +35574,7 @@ msgid_plural "Riesling" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" @@ -35550,7 +35585,7 @@ msgid_plural "Chardonnay" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "" @@ -35561,7 +35596,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -35574,7 +35609,7 @@ msgid_plural "pinot noir" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -35587,7 +35622,7 @@ msgid_plural "marsala" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -35598,7 +35633,7 @@ msgid_plural "vermouth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -35611,7 +35646,7 @@ msgid_plural "barley wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -35622,7 +35657,7 @@ msgid_plural "whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -35634,7 +35669,7 @@ msgid_plural "vodka" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -35647,7 +35682,7 @@ msgid_plural "gin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -35660,7 +35695,7 @@ msgid_plural "rum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -35673,7 +35708,7 @@ msgid_plural "tequila" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -35686,7 +35721,7 @@ msgid_plural "triple sec" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -35697,7 +35732,7 @@ msgid_plural "cheap wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "" @@ -35708,7 +35743,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -35719,7 +35754,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -35730,7 +35765,7 @@ msgid_plural "fruit wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -35742,7 +35777,7 @@ msgid_plural "brandy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -35755,7 +35790,7 @@ msgid_plural "Irish coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -35768,7 +35803,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -35795,7 +35830,7 @@ msgid_plural "wild apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "" @@ -35806,7 +35841,7 @@ msgid_plural "rum & cola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -35817,7 +35852,7 @@ msgid_plural "beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -35830,7 +35865,7 @@ msgid_plural "spiced mead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -35842,7 +35877,7 @@ msgid_plural "dandelion wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -35855,7 +35890,7 @@ msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -35866,7 +35901,7 @@ msgid_plural "pine wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -35879,7 +35914,7 @@ msgid_plural "homebrew beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -35890,7 +35925,7 @@ msgid_plural "moonshine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -35904,7 +35939,7 @@ msgid_plural "European pilsner" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -35917,7 +35952,7 @@ msgid_plural "American pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -35930,7 +35965,7 @@ msgid_plural "India pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -35943,7 +35978,7 @@ msgid_plural "stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -35954,7 +35989,7 @@ msgid_plural "Belgian ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -35967,7 +36002,7 @@ msgid_plural "imperial stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -36008,7 +36043,7 @@ msgid_plural "single malt whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "" @@ -36019,7 +36054,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -36030,7 +36065,7 @@ msgid_plural "cheap whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -36041,7 +36076,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -36052,7 +36087,7 @@ msgid_plural "sherry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -36064,7 +36099,7 @@ msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -36077,7 +36112,7 @@ msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -36088,7 +36123,7 @@ msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "" @@ -36099,7 +36134,7 @@ msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -36112,7 +36147,7 @@ msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -36203,7 +36238,7 @@ msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -36214,7 +36249,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -36225,7 +36260,7 @@ msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -36238,7 +36273,7 @@ msgid_plural "sourdough bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -36251,7 +36286,7 @@ msgid_plural "flatbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "" @@ -36262,7 +36297,7 @@ msgid_plural "bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "" @@ -36273,7 +36308,7 @@ msgid_plural "toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -36286,7 +36321,7 @@ msgid_plural "buttered toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -36297,7 +36332,7 @@ msgid_plural "jam toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -36310,7 +36345,7 @@ msgid_plural "peanut butter toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -36322,7 +36357,7 @@ msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -36333,7 +36368,7 @@ msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -36346,7 +36381,7 @@ msgid_plural "cornbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "" @@ -36379,7 +36414,7 @@ msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -36403,7 +36438,7 @@ msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -36417,7 +36452,7 @@ msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -36428,7 +36463,7 @@ msgid_plural "hallula" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -36691,18 +36726,18 @@ msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -36713,8 +36748,8 @@ msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -36727,14 +36762,14 @@ msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -36745,7 +36780,7 @@ msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -36773,7 +36808,7 @@ msgid_plural "cooked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "" @@ -36874,7 +36909,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -36977,7 +37012,7 @@ msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -37016,7 +37051,7 @@ msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -37063,7 +37098,7 @@ msgid_plural "butchery refuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -37148,7 +37183,7 @@ msgid_plural "cooked offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -37162,7 +37197,7 @@ msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -37173,7 +37208,7 @@ msgid_plural "pickled offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -37187,7 +37222,7 @@ msgid_plural "canned offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -37222,31 +37257,28 @@ msgid_plural "meat jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -37258,7 +37290,7 @@ msgid_plural "salted fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -37270,33 +37302,27 @@ msgid_plural "smoked meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -37317,7 +37343,7 @@ msgid_plural "smoked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -37370,7 +37396,7 @@ msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -37421,7 +37447,7 @@ msgid_plural "raw brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -37432,7 +37458,7 @@ msgid_plural "cooked brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -37511,7 +37537,7 @@ msgstr[1] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -37663,7 +37689,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -37904,7 +37930,7 @@ msgid_plural "alien fronds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -38009,7 +38035,7 @@ msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -38020,7 +38046,7 @@ msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -38058,13 +38084,38 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -38078,7 +38129,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -38091,7 +38142,7 @@ msgid_plural "cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -38102,7 +38153,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -38114,7 +38165,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -38127,7 +38178,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -38140,7 +38191,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -38153,7 +38204,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -38166,7 +38217,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -38192,7 +38243,7 @@ msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -38216,7 +38267,7 @@ msgid_plural "wheat cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -38240,7 +38291,7 @@ msgid_plural "milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -38251,7 +38302,7 @@ msgid_plural "chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -38262,7 +38313,7 @@ msgid_plural "reconstituted milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -38275,7 +38326,7 @@ msgid_plural "raw milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -38290,7 +38341,7 @@ msgid_plural "shelf stable milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -38304,7 +38355,7 @@ msgid_plural "evaporated milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -38316,7 +38367,7 @@ msgid_plural "buttermilk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -38340,7 +38391,7 @@ msgid_plural "butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -38352,7 +38403,7 @@ msgid_plural "raw butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -38364,7 +38415,7 @@ msgid_plural "ghee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -38401,7 +38452,7 @@ msgid_plural "hard cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -38414,7 +38465,7 @@ msgid_plural "cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "" @@ -38436,7 +38487,7 @@ msgid_plural "powdered milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -38447,7 +38498,7 @@ msgid_plural "condensed milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -38460,7 +38511,7 @@ msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -38473,7 +38524,7 @@ msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -38484,7 +38535,7 @@ msgid_plural "apple cider" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "" @@ -38521,7 +38572,7 @@ msgid_plural "atomic coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -38535,7 +38586,7 @@ msgid_plural "bee balm tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -38559,7 +38610,7 @@ msgid_plural "chai tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" @@ -38570,7 +38621,7 @@ msgid_plural "chamomile tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -38596,7 +38647,7 @@ msgid_plural "coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -38610,7 +38661,7 @@ msgid_plural "coffee substitute" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -38624,7 +38675,7 @@ msgid_plural "chicory brew" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -38694,7 +38745,7 @@ msgid_plural "dandelion tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -38705,7 +38756,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -38760,7 +38811,7 @@ msgid_plural "herbal tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -38771,7 +38822,7 @@ msgid_plural "hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -38819,7 +38870,7 @@ msgid_plural "lemonade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -38845,7 +38896,7 @@ msgid_plural "lotus tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -38856,7 +38907,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -38917,7 +38968,7 @@ msgid_plural "pine needle tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -38955,7 +39006,7 @@ msgid_plural "root beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -38992,13 +39043,13 @@ msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -39024,7 +39075,7 @@ msgid_plural "sweet water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "" @@ -39048,7 +39099,7 @@ msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -39085,7 +39136,7 @@ msgid_plural "water" msgstr[0] "vand" msgstr[1] "vand" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -39098,7 +39149,7 @@ msgid_plural "clean water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -39109,7 +39160,7 @@ msgid_plural "mineral water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -39238,7 +39289,7 @@ msgid_plural "maple sap" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -39249,7 +39300,7 @@ msgid_plural "mayonnaise" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -39274,7 +39325,7 @@ msgid_plural "mustard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -39287,7 +39338,7 @@ msgid_plural "forest honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -39300,7 +39351,7 @@ msgid_plural "vinegar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -39313,7 +39364,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "" @@ -39324,7 +39375,7 @@ msgid_plural "animal cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -39335,7 +39386,7 @@ msgid_plural "molasses" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -39348,7 +39399,7 @@ msgid_plural "horseradish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "" @@ -39359,7 +39410,7 @@ msgid_plural "coffee syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -39701,7 +39752,7 @@ msgid_plural "scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "" @@ -39723,7 +39774,7 @@ msgid_plural "fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -39736,7 +39787,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -39749,7 +39800,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -39762,7 +39813,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -39954,7 +40005,7 @@ msgid_plural "frozen yogurt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -40024,7 +40075,7 @@ msgid_plural "peaches in syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -40046,7 +40097,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -40081,7 +40132,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -40095,7 +40146,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -40120,7 +40171,7 @@ msgid_plural "canned fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -40133,7 +40184,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -40157,7 +40208,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -40549,7 +40600,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -40601,7 +40652,7 @@ msgid_plural "irradiated corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -40653,7 +40704,7 @@ msgid_plural "irradiated celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -40666,7 +40717,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -40774,12 +40825,12 @@ msgid_plural "potato chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -40790,7 +40841,7 @@ msgid_plural "popcorn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -40803,7 +40854,7 @@ msgid_plural "popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -40816,7 +40867,7 @@ msgid_plural "salted popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "" @@ -40827,7 +40878,7 @@ msgid_plural "buttered popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -40838,7 +40889,7 @@ msgid_plural "pretzels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "" @@ -40871,7 +40922,7 @@ msgid_plural "marshmallows" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -40882,7 +40933,7 @@ msgid_plural "s'mores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -40917,7 +40968,7 @@ msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -40928,12 +40979,12 @@ msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -40981,7 +41032,7 @@ msgid_plural "powder candy sticks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -41055,7 +41106,7 @@ msgid_plural "maple syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -41068,7 +41119,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -41118,7 +41169,7 @@ msgid_plural "fast-food French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -41129,7 +41180,7 @@ msgid_plural "French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -41151,7 +41202,7 @@ msgid_plural "Necco wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -41177,8 +41228,8 @@ msgid_plural "caramel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "" @@ -41189,7 +41240,7 @@ msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "" @@ -41200,7 +41251,7 @@ msgid_plural "tortilla chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -41213,7 +41264,7 @@ msgid_plural "cheese nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -41226,31 +41277,28 @@ msgid_plural "meat nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -41263,31 +41311,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -41300,7 +41348,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -41313,7 +41361,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -41387,7 +41435,7 @@ msgid_plural "chili dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" @@ -41398,7 +41446,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -41474,7 +41522,7 @@ msgid_plural "cheese fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "" @@ -41562,8 +41610,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -41706,32 +41753,26 @@ msgid_plural "raw sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -41750,15 +41791,14 @@ msgid_plural "smoked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -41777,15 +41817,14 @@ msgid_plural "cooked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -41815,23 +41854,21 @@ msgid_plural "bratwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -41852,7 +41889,7 @@ msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -41903,7 +41940,7 @@ msgid_plural "cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -41916,8 +41953,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -41925,7 +41961,7 @@ msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -41939,7 +41975,7 @@ msgid_plural "currywursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -41947,8 +41983,7 @@ msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -41956,8 +41991,7 @@ msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -41978,9 +42012,8 @@ msgid_plural "aspics" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -41988,9 +42021,8 @@ msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -41998,9 +42030,8 @@ msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -42022,7 +42053,7 @@ msgid_plural "dehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -42035,7 +42066,7 @@ msgid_plural "rehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -42048,7 +42079,7 @@ msgid_plural "pickled fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -42060,7 +42091,7 @@ msgid_plural "canned fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -42073,7 +42104,7 @@ msgid_plural "batter fried fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -42106,8 +42137,7 @@ msgid_plural "lunch meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -42128,7 +42158,7 @@ msgid_plural "bologna" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -42136,8 +42166,7 @@ msgid_plural "brat %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -42145,8 +42174,7 @@ msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -42154,7 +42182,7 @@ msgid_plural "bleak %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -42182,7 +42210,7 @@ msgid_plural "SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -42220,24 +42248,22 @@ msgid_plural "sausage gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -42258,7 +42284,7 @@ msgid_plural "pemmican" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -42266,8 +42292,7 @@ msgid_plural "prepper %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -42275,8 +42300,7 @@ msgid_plural "Orley %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -42284,7 +42308,7 @@ msgid_plural "pernicious %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -42298,15 +42322,14 @@ msgid_plural "hamburger helpers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -42314,8 +42337,7 @@ msgid_plural "halfling helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -42347,24 +42369,22 @@ msgid_plural "chilis con carne" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -42382,7 +42402,7 @@ msgid_plural "pork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -42395,7 +42415,7 @@ msgid_plural "canned tuna fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "" @@ -42406,7 +42426,7 @@ msgid_plural "canned salmon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "" @@ -42428,7 +42448,7 @@ msgid_plural "pickled herring" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -42450,16 +42470,14 @@ msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -42479,15 +42497,14 @@ msgid_plural "baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" @@ -42498,15 +42515,14 @@ msgid_plural "meat fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" @@ -42517,15 +42533,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -42538,22 +42554,21 @@ msgid_plural "meat pies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -42572,23 +42587,21 @@ msgid_plural "meat pizzas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -42620,31 +42633,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -42657,15 +42669,14 @@ msgid_plural "canned meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -42685,15 +42696,14 @@ msgid_plural "salted meat slices" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -42712,15 +42722,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -42728,8 +42737,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -42737,7 +42745,7 @@ msgid_plural "gnarly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -42748,7 +42756,7 @@ msgid_plural "lasagnes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -42756,8 +42764,7 @@ msgid_plural "Luigi %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -42765,7 +42772,7 @@ msgid_plural "Lab %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -42786,7 +42793,7 @@ msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" @@ -42797,8 +42804,7 @@ msgid_plural "cheeseburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -42806,7 +42812,7 @@ msgid_plural "chump %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -42815,8 +42821,7 @@ msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -42850,23 +42855,21 @@ msgid_plural "hamburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -42885,23 +42888,21 @@ msgid_plural "sloppy joes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -42922,7 +42923,7 @@ msgid_plural "tacos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -42930,8 +42931,7 @@ msgid_plural "tio %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -42939,7 +42939,7 @@ msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -42960,15 +42960,14 @@ msgid_plural "pickled meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -42988,10 +42987,8 @@ msgid_plural "dehydrated meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -42999,12 +42996,11 @@ msgid_plural "%s, human" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -43038,9 +43034,8 @@ msgid_plural "haggises" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -43063,7 +43058,7 @@ msgid_plural "fish makizushi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -43076,8 +43071,7 @@ msgid_plural "meat temaki" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -43085,7 +43079,7 @@ msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -43098,7 +43092,7 @@ msgid_plural "sashimi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -43122,7 +43116,7 @@ msgid_plural "pelmenis" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -43143,8 +43137,7 @@ msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -43165,15 +43158,14 @@ msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -43192,15 +43184,14 @@ msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -43237,12 +43228,12 @@ msgid_plural "prescription stimulant" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -43289,7 +43280,7 @@ msgid_plural "antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -43316,7 +43307,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -43394,7 +43385,7 @@ msgid_plural "antiseptic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -43450,7 +43441,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -43502,12 +43493,12 @@ msgid_plural "codeine" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -43521,7 +43512,7 @@ msgid_plural "cocaine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -43563,7 +43554,7 @@ msgid_plural "cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -43577,12 +43568,12 @@ msgid_plural "crack" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -43595,7 +43586,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -43609,7 +43600,7 @@ msgid_plural "antiseptic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -43632,7 +43623,7 @@ msgid_plural "prescription sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -43645,12 +43636,12 @@ msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43667,12 +43658,12 @@ msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43688,12 +43679,12 @@ msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -43707,16 +43698,14 @@ msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -43730,7 +43719,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43744,7 +43733,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43758,7 +43747,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43772,7 +43761,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43786,7 +43775,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43801,7 +43790,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43816,7 +43805,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -43830,7 +43819,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -43844,12 +43833,12 @@ msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43929,7 +43918,7 @@ msgid_plural "chewing gum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -43954,13 +43943,13 @@ msgid_plural "heroin" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -44036,7 +44025,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44050,7 +44039,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44103,7 +44092,7 @@ msgid_plural "cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -44134,7 +44123,7 @@ msgid_plural "sleeping pill" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -44179,7 +44168,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -44190,15 +44179,14 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -44213,7 +44201,7 @@ msgid_plural "antidepressant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -44245,7 +44233,7 @@ msgid_plural "hemostatic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -44271,7 +44259,7 @@ msgid_plural "antipsychotic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -44522,12 +44510,12 @@ msgid_plural "marijuana" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -44541,7 +44529,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -44568,7 +44556,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -44581,7 +44569,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -44648,7 +44636,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -44663,7 +44651,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -45140,7 +45128,7 @@ msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -45390,9 +45378,8 @@ msgstr[1] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -45459,7 +45446,7 @@ msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -45578,7 +45565,8 @@ msgstr[1] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -45720,7 +45708,7 @@ msgid_plural "pine nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -45731,7 +45719,7 @@ msgid_plural "junipers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -45744,7 +45732,7 @@ msgid_plural "shelled pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -45756,7 +45744,7 @@ msgid_plural "roasted pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -45767,7 +45755,7 @@ msgid_plural "shelled almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -45778,7 +45766,7 @@ msgid_plural "almond pulp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -45790,7 +45778,7 @@ msgid_plural "roasted almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -45801,7 +45789,7 @@ msgid_plural "cashews" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "" @@ -45812,7 +45800,7 @@ msgid_plural "shelled pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -45825,7 +45813,7 @@ msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -45836,7 +45824,7 @@ msgid_plural "shelled peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -45847,7 +45835,7 @@ msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -45858,7 +45846,7 @@ msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -45871,7 +45859,7 @@ msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -45882,7 +45870,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -45895,7 +45883,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -45906,7 +45894,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -45919,7 +45907,7 @@ msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -45930,7 +45918,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -45941,7 +45929,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -45952,7 +45940,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -45965,7 +45953,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -46022,7 +46010,7 @@ msgid_plural "acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -46035,7 +46023,7 @@ msgid_plural "roasted acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -46046,7 +46034,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -46059,7 +46047,7 @@ msgid_plural "foie gras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -46071,7 +46059,7 @@ msgid_plural "liver & onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "" @@ -46126,7 +46114,7 @@ msgid_plural "leverpostej" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -46339,7 +46327,7 @@ msgid_plural "marloss gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -46367,7 +46355,7 @@ msgid_plural "yeast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -46379,7 +46367,7 @@ msgid_plural "bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -46390,7 +46378,7 @@ msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -46402,7 +46390,7 @@ msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -46413,7 +46401,7 @@ msgid_plural "tainted bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -46424,7 +46412,7 @@ msgid_plural "chitin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -46471,7 +46459,7 @@ msgid_plural "dried beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -46484,7 +46472,7 @@ msgid_plural "cooked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "" @@ -46495,8 +46483,8 @@ msgid_plural "tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -46515,7 +46503,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -46526,7 +46514,7 @@ msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -46552,7 +46540,7 @@ msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -46564,7 +46552,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -46578,7 +46566,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -46589,7 +46577,7 @@ msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -46600,7 +46588,7 @@ msgid_plural "coffee powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -46613,7 +46601,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -46626,7 +46614,7 @@ msgid_plural "candied honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -46665,7 +46653,7 @@ msgid_plural "cattle fodder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -46678,7 +46666,7 @@ msgid_plural "bird food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -46691,7 +46679,7 @@ msgid_plural "wet dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -46704,7 +46692,7 @@ msgid_plural "dry dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -46717,7 +46705,7 @@ msgid_plural "wet cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -46730,7 +46718,7 @@ msgid_plural "dry cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -46857,7 +46845,7 @@ msgid_plural "instant coffee mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -46896,15 +46884,14 @@ msgid_plural "protein drinks" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -46912,14 +46899,11 @@ msgid_plural "sapient green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -46940,15 +46924,14 @@ msgid_plural "protein powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -46956,7 +46939,7 @@ msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -46985,15 +46968,14 @@ msgid_plural "protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -47014,7 +46996,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -47022,7 +47004,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -47089,7 +47071,7 @@ msgid_plural "blueberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -47100,7 +47082,7 @@ msgid_plural "strawberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" @@ -47111,7 +47093,7 @@ msgid_plural "cranberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "" @@ -47122,7 +47104,7 @@ msgid_plural "raspberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "" @@ -47133,7 +47115,7 @@ msgid_plural "huckleberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -47144,7 +47126,7 @@ msgid_plural "mulberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -47157,7 +47139,7 @@ msgid_plural "elderberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -47168,7 +47150,7 @@ msgid_plural "rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "" @@ -47214,7 +47196,7 @@ msgid_plural "cherries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "" @@ -47237,7 +47219,7 @@ msgid_plural "grapes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -47303,7 +47285,7 @@ msgid_plural "blackberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "" @@ -47359,7 +47341,7 @@ msgid_plural "apricots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "" @@ -47400,7 +47382,7 @@ msgid_plural "bee balm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -47412,7 +47394,7 @@ msgid_plural "broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "" @@ -47423,7 +47405,7 @@ msgid_plural "buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -47447,7 +47429,7 @@ msgid_plural "spinach" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -47496,7 +47478,7 @@ msgid_plural "celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -47520,7 +47502,7 @@ msgid_plural "corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "" @@ -47531,7 +47513,7 @@ msgid_plural "empty corn cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -47592,7 +47574,7 @@ msgid_plural "salsify" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -47606,7 +47588,7 @@ msgid_plural "chicory" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -47729,7 +47711,7 @@ msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -47766,7 +47748,7 @@ msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -47779,7 +47761,7 @@ msgid_plural "dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -47792,7 +47774,7 @@ msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -47890,7 +47872,7 @@ msgid_plural "wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -47925,7 +47907,7 @@ msgid_plural "raw beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -47938,7 +47920,7 @@ msgid_plural "raw lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -47949,7 +47931,7 @@ msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -47986,8 +47968,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -48001,6 +47982,27 @@ msgid "" "nutritious!" msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -48062,7 +48064,7 @@ msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -48110,26 +48112,23 @@ msgid_plural "meat sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -48245,7 +48244,7 @@ msgid_plural "mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -48256,7 +48255,7 @@ msgid_plural "hop rhizomes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "" @@ -48271,7 +48270,7 @@ msgid_plural "blackberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "" @@ -48286,7 +48285,7 @@ msgid_plural "blueberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "" @@ -48301,7 +48300,7 @@ msgid_plural "cranberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "" @@ -48316,7 +48315,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -48331,7 +48330,7 @@ msgid_plural "mulberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -48346,7 +48345,7 @@ msgid_plural "elderberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -48361,7 +48360,7 @@ msgid_plural "raspberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "" @@ -48376,7 +48375,7 @@ msgid_plural "strawberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "" @@ -48391,7 +48390,7 @@ msgid_plural "grape seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -48406,7 +48405,7 @@ msgid_plural "rose seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -48421,7 +48420,7 @@ msgid_plural "tobacco seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -48436,7 +48435,7 @@ msgid_plural "barley seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "" @@ -48447,7 +48446,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "" @@ -48458,7 +48457,7 @@ msgid_plural "lettuce seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "" @@ -48469,7 +48468,7 @@ msgid_plural "cabbage seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "" @@ -48480,7 +48479,7 @@ msgid_plural "tomato seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "" @@ -48491,7 +48490,7 @@ msgid_plural "cotton seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -48506,7 +48505,7 @@ msgid_plural "broccoli seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "" @@ -48517,7 +48516,7 @@ msgid_plural "zucchini seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "" @@ -48528,7 +48527,7 @@ msgid_plural "onion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "" @@ -48539,7 +48538,7 @@ msgid_plural "garlic seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "" @@ -48554,7 +48553,7 @@ msgid_plural "cattail seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -48569,7 +48568,7 @@ msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -48584,7 +48583,7 @@ msgid_plural "salsify seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -48595,7 +48594,7 @@ msgid_plural "chicory seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -48606,7 +48605,7 @@ msgid_plural "wild root seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -48617,7 +48616,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -48634,7 +48633,7 @@ msgid_plural "cactus seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -48660,7 +48659,7 @@ msgid_plural "carrot seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "" @@ -48671,7 +48670,7 @@ msgid_plural "corn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "" @@ -48686,7 +48685,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "" @@ -48697,7 +48696,7 @@ msgid_plural "cucumber seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "" @@ -48723,7 +48722,7 @@ msgid_plural "cannabis seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -48754,7 +48753,7 @@ msgid_plural "bean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -48769,7 +48768,7 @@ msgid_plural "soybean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -48778,7 +48777,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -48793,7 +48792,7 @@ msgid_plural "thyme seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -48810,7 +48809,7 @@ msgid_plural "canola seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -48821,7 +48820,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -48832,7 +48831,7 @@ msgid_plural "sunflower seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -48850,7 +48849,7 @@ msgid_plural "dogbane seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -48861,7 +48860,7 @@ msgid_plural "bee balm seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -48872,7 +48871,7 @@ msgid_plural "mugwort seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -48883,7 +48882,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -48894,7 +48893,7 @@ msgid_plural "wild herb seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -48909,7 +48908,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -48924,7 +48923,7 @@ msgid_plural "dandelion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -48939,7 +48938,7 @@ msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -48954,7 +48953,7 @@ msgid_plural "rhubarb stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -48965,7 +48964,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -48976,7 +48975,7 @@ msgid_plural "datura seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -48994,7 +48993,7 @@ msgid_plural "celery seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "" @@ -49005,7 +49004,7 @@ msgid_plural "oat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "" @@ -49022,7 +49021,7 @@ msgid_plural "wheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "" @@ -49039,7 +49038,7 @@ msgid_plural "fried seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -49065,7 +49064,7 @@ msgid_plural "coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "" @@ -49076,7 +49075,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -49087,7 +49086,7 @@ msgid_plural "chamomile seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -49102,7 +49101,7 @@ msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -49117,7 +49116,7 @@ msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -49128,7 +49127,7 @@ msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -49139,7 +49138,7 @@ msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -49150,7 +49149,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -49172,8 +49171,7 @@ msgid_plural "bone broths" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -49203,15 +49201,14 @@ msgid_plural "meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -49251,8 +49248,7 @@ msgid_plural "curries with meat" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -49270,10 +49266,8 @@ msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -49335,7 +49329,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" @@ -49359,7 +49353,7 @@ msgid_plural "chili powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -49372,7 +49366,7 @@ msgid_plural "hot sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -49385,7 +49379,7 @@ msgid_plural "cinnamon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -49396,7 +49390,7 @@ msgid_plural "curry powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -49409,7 +49403,7 @@ msgid_plural "black pepper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "" @@ -49420,7 +49414,7 @@ msgid_plural "salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -49433,7 +49427,7 @@ msgid_plural "Italian seasoning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -49444,7 +49438,7 @@ msgid_plural "seasoned salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -49455,7 +49449,7 @@ msgid_plural "sugar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -49468,7 +49462,7 @@ msgid_plural "sprinkles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -49483,7 +49477,7 @@ msgid_plural "wild herbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -49496,7 +49490,7 @@ msgid_plural "soy sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "" @@ -49512,7 +49506,7 @@ msgid_plural "mustard powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -49562,7 +49556,7 @@ msgid_plural "starch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -49575,7 +49569,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" @@ -49586,7 +49580,7 @@ msgid_plural "fried dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -49598,7 +49592,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -49609,7 +49603,7 @@ msgid_plural "fried burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -49646,7 +49640,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -49669,7 +49663,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -49681,7 +49675,7 @@ msgid_plural "canned corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "" @@ -49692,7 +49686,7 @@ msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -49703,7 +49697,7 @@ msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -49714,7 +49708,7 @@ msgid_plural "hominy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -49727,7 +49721,7 @@ msgid_plural "cornmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "" @@ -49738,7 +49732,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" @@ -49749,7 +49743,7 @@ msgid_plural "dried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -49762,7 +49756,7 @@ msgid_plural "cooked rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "" @@ -49773,7 +49767,7 @@ msgid_plural "fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "" @@ -49784,7 +49778,7 @@ msgid_plural "beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -49797,7 +49791,7 @@ msgid_plural "tofu fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -49808,7 +49802,7 @@ msgid_plural "tofu stirfry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -49821,7 +49815,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -49892,7 +49886,7 @@ msgid_plural "pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -49929,7 +49923,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "" @@ -49952,7 +49946,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -49991,7 +49985,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -50015,7 +50009,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -50091,7 +50085,7 @@ msgid_plural "sushi rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -50102,7 +50096,7 @@ msgid_plural "onigiri" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -50115,7 +50109,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -50141,7 +50135,7 @@ msgid_plural "sauerkraut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -50165,7 +50159,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -50176,7 +50170,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -50194,7 +50188,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "" @@ -50205,7 +50199,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -50218,7 +50212,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -50231,7 +50225,7 @@ msgid_plural "boiled noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "" @@ -50242,7 +50236,7 @@ msgid_plural "raw macaroni" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -50253,7 +50247,7 @@ msgid_plural "mac & cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -50264,7 +50258,7 @@ msgid_plural "flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "" @@ -50275,7 +50269,7 @@ msgid_plural "bread flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -50288,14 +50282,14 @@ msgid_plural "oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "" @@ -50306,7 +50300,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -50319,7 +50313,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -50405,7 +50399,7 @@ msgid_plural "oyster crackers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -50440,7 +50434,7 @@ msgid_plural "granola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -50464,7 +50458,7 @@ msgid_plural "fast noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -50658,7 +50652,7 @@ msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -50669,7 +50663,7 @@ msgid_plural "melon seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -50680,7 +50674,7 @@ msgid_plural "banana saplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -50691,7 +50685,7 @@ msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -50702,7 +50696,7 @@ msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -50713,7 +50707,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -50762,7 +50756,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -50808,7 +50802,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -50821,7 +50815,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -50862,7 +50856,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -50972,7 +50966,7 @@ msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -50986,7 +50980,7 @@ msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -51076,7 +51070,7 @@ msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -51090,7 +51084,7 @@ msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -51104,7 +51098,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -51116,7 +51110,7 @@ msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -51129,7 +51123,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -51184,7 +51178,7 @@ msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -51200,7 +51194,7 @@ msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -51214,7 +51208,7 @@ msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -51228,7 +51222,7 @@ msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -51289,7 +51283,7 @@ msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -51303,7 +51297,7 @@ msgid_plural "food cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -51315,7 +51309,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -51339,7 +51333,7 @@ msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -51365,7 +51359,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -51379,7 +51373,7 @@ msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -51395,7 +51389,7 @@ msgid_plural "caffex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -51436,7 +51430,7 @@ msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -51498,7 +51492,7 @@ msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -51519,7 +51513,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -51802,8 +51796,8 @@ msgstr[0] "" msgstr[1] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" @@ -51813,6 +51807,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -51855,6 +51861,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -51975,6 +51987,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -52011,24 +52029,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "" msgstr[1] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -52327,7 +52327,7 @@ msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -52393,7 +52393,7 @@ msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -52453,14 +52453,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -52543,7 +52543,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -52552,7 +52552,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -52564,7 +52564,7 @@ msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -52575,7 +52575,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -52588,7 +52588,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -52607,7 +52607,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -52621,7 +52621,7 @@ msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -53214,7 +53214,7 @@ msgid_plural "rock salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -53225,7 +53225,7 @@ msgid_plural "rhodonite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -53238,7 +53238,7 @@ msgid_plural "zincite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -53275,7 +53275,7 @@ msgid_plural "hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -53286,7 +53286,7 @@ msgid_plural "pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -53297,7 +53297,7 @@ msgid_plural "pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -53308,7 +53308,7 @@ msgid_plural "almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -53319,7 +53319,7 @@ msgid_plural "peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -53330,7 +53330,7 @@ msgid_plural "hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -53341,7 +53341,7 @@ msgid_plural "chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -53352,7 +53352,7 @@ msgid_plural "walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -53638,6 +53638,18 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -53649,6 +53661,19 @@ msgstr[1] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -54421,7 +54446,7 @@ msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -54432,7 +54457,7 @@ msgid_plural "smoldering embers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -54637,6 +54662,29 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -54839,7 +54887,7 @@ msgid_plural "superglue" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" @@ -55127,7 +55175,7 @@ msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -55269,7 +55317,7 @@ msgid_plural "concrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "" @@ -56111,7 +56159,7 @@ msgid_plural "clockworks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -56242,7 +56290,7 @@ msgid_plural "chamomile flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -56268,7 +56316,7 @@ msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -56303,7 +56351,7 @@ msgid_plural "mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "" @@ -56350,7 +56398,7 @@ msgid_plural "adobe mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -56363,7 +56411,7 @@ msgid_plural "tanbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -56385,7 +56433,7 @@ msgid_plural "willowbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -56812,7 +56860,7 @@ msgid_plural "raw tobacco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -57119,7 +57167,7 @@ msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -57142,7 +57190,7 @@ msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -57515,6 +57563,98 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -58207,7 +58347,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -58344,7 +58484,7 @@ msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58357,7 +58497,7 @@ msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58387,7 +58527,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58403,7 +58543,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58419,7 +58559,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58435,7 +58575,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58451,7 +58591,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58467,7 +58607,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58483,7 +58623,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58499,7 +58639,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58515,7 +58655,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58531,7 +58671,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58547,7 +58687,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58563,7 +58703,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58579,7 +58719,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58595,7 +58735,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58611,7 +58751,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58627,8 +58767,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58644,7 +58783,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58660,7 +58799,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58676,7 +58815,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58692,7 +58831,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58708,7 +58847,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58724,8 +58863,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58747,7 +58885,7 @@ msgid_plural "misc software" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -58758,7 +58896,7 @@ msgid_plural "hackPRO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "" @@ -58769,7 +58907,7 @@ msgid_plural "MediSoft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "" @@ -58780,7 +58918,7 @@ msgid_plural "MatheMAX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "" @@ -58791,7 +58929,7 @@ msgid_plural "infection data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "" @@ -58802,7 +58940,7 @@ msgid_plural "lab data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -58813,7 +58951,7 @@ msgid_plural "train data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -58824,7 +58962,7 @@ msgid_plural "neural data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -59114,22 +59252,34 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -59137,7 +59287,7 @@ msgid_plural "skinned %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -59376,7 +59526,7 @@ msgid_plural "trifacet remains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -59712,6 +59862,100 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -61431,7 +61675,7 @@ msgid_plural "headphones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -61511,7 +61755,7 @@ msgid_plural "spare parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -62109,7 +62353,7 @@ msgid_plural "bokken" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -62117,14 +62361,14 @@ msgid "" "edge, it's still quite capable of inflicting deadly wounds." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -62670,7 +62914,7 @@ msgid_plural "bionic claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -62891,7 +63135,7 @@ msgid_plural "qiang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -62936,7 +63180,7 @@ msgid_plural "naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -62944,7 +63188,7 @@ msgid "" "or by their wives in defense of the household." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -62952,7 +63196,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -62966,7 +63210,7 @@ msgid_plural "survivor naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -63097,7 +63341,7 @@ msgid_plural "ji" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -63157,6 +63401,20 @@ msgid "" "offers a good bit of slashing power." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -63164,7 +63422,7 @@ msgid_plural "jian" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -63248,14 +63506,14 @@ msgid_plural "tanto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -63269,14 +63527,14 @@ msgid_plural "nodachi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -63414,7 +63672,7 @@ msgid_plural "katana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -63482,7 +63740,7 @@ msgid_plural "wakizashi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -63547,7 +63805,7 @@ msgid_plural "tiger claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -63778,13 +64036,27 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -63800,7 +64072,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -63844,7 +64116,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -64134,7 +64406,7 @@ msgid_plural "scrap copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -64396,7 +64668,7 @@ msgid_plural "splintered wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -64613,17 +64885,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -65817,7 +66089,7 @@ msgid_plural "oars" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -65839,7 +66111,7 @@ msgid_plural "inflatable section" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -65850,7 +66122,7 @@ msgid_plural "inflatable airbag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -66706,7 +66978,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -66720,7 +66992,7 @@ msgid_plural "sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "" @@ -66731,7 +67003,7 @@ msgid_plural "wired sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -66753,7 +67025,7 @@ msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "" @@ -66764,7 +67036,7 @@ msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -66787,7 +67059,7 @@ msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -67011,12 +67283,19 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -67145,6 +67424,17 @@ msgstr[1] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -67580,7 +67870,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -67639,7 +67929,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -67931,7 +68221,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -67944,7 +68234,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -68066,7 +68356,7 @@ msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -68077,7 +68367,7 @@ msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -68268,7 +68558,7 @@ msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68281,7 +68571,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68294,7 +68584,7 @@ msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68307,7 +68597,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68320,7 +68610,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68333,7 +68623,7 @@ msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -68346,7 +68636,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68359,7 +68649,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68372,7 +68662,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68385,7 +68675,7 @@ msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68398,7 +68688,7 @@ msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68411,7 +68701,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -68520,7 +68810,7 @@ msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -68546,7 +68836,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -68559,7 +68849,7 @@ msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -68585,7 +68875,7 @@ msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -68618,7 +68908,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -68965,7 +69255,7 @@ msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -69679,7 +69969,7 @@ msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -71130,7 +71420,7 @@ msgid_plural "subzero talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -71344,7 +71634,7 @@ msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -71465,7 +71755,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71478,7 +71768,7 @@ msgid_plural "Beagle chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72281,6 +72571,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -72425,8 +72726,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -72765,6 +73066,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -73165,7 +73471,7 @@ msgid_plural "tiny fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -73176,7 +73482,7 @@ msgid_plural "small fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -73187,7 +73493,7 @@ msgid_plural "medium fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -73198,7 +73504,7 @@ msgid_plural "large fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -73209,7 +73515,7 @@ msgid_plural "huge fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -73345,7 +73651,7 @@ msgid_plural "whitefish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -73358,7 +73664,7 @@ msgid_plural "largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -73369,7 +73675,7 @@ msgid_plural "smallmouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -73382,7 +73688,7 @@ msgid_plural "striped bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -73395,7 +73701,7 @@ msgid_plural "white bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -73432,7 +73738,7 @@ msgid_plural "sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73443,7 +73749,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73466,7 +73772,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73477,7 +73783,7 @@ msgid_plural "green sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73488,7 +73794,7 @@ msgid_plural "longear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73499,7 +73805,7 @@ msgid_plural "redear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73510,7 +73816,7 @@ msgid_plural "rock bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -73523,7 +73829,7 @@ msgid_plural "calico bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -73558,7 +73864,7 @@ msgid_plural "channel catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -73569,7 +73875,7 @@ msgid_plural "white catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -73666,7 +73972,7 @@ msgid_plural "fallfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -73693,7 +73999,7 @@ msgid_plural "crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -73724,7 +74030,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -73737,7 +74043,7 @@ msgid_plural "giant crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -73750,7 +74056,7 @@ msgid_plural "colossal crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -74403,7 +74709,7 @@ msgid_plural "fused dragonflies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -74590,7 +74896,7 @@ msgstr[1] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -76234,7 +76540,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -76429,7 +76735,7 @@ msgid_plural "moose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -76588,7 +76894,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -76876,10 +77182,11 @@ msgstr[1] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -76890,6 +77197,17 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -79109,7 +79427,7 @@ msgid_plural "sawbones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -79124,7 +79442,7 @@ msgid_plural "doctor burns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -79302,7 +79620,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -79421,17 +79739,18 @@ msgstr[1] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -79865,7 +80184,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -79909,7 +80228,7 @@ msgid_plural "scissorlimbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -79923,7 +80242,7 @@ msgid_plural "hanging innards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -80404,7 +80723,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -82269,7 +82588,7 @@ msgid_plural "wisp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -82813,7 +83132,7 @@ msgid_plural "coelophysis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -82826,7 +83145,7 @@ msgid_plural "dilophosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -82839,7 +83158,7 @@ msgid_plural "ceratosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -82853,7 +83172,7 @@ msgid_plural "spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -82867,7 +83186,7 @@ msgid_plural "allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -82880,7 +83199,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -82894,20 +83213,33 @@ msgid_plural "siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -82920,7 +83252,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -82933,7 +83265,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -82946,7 +83278,7 @@ msgid_plural "compsognathus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -82959,7 +83291,7 @@ msgid_plural "gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -82985,7 +83317,7 @@ msgid_plural "nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -82998,7 +83330,7 @@ msgid_plural "deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -83037,7 +83369,7 @@ msgid_plural "amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -83050,7 +83382,7 @@ msgid_plural "apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -83063,7 +83395,7 @@ msgid_plural "brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -83076,7 +83408,7 @@ msgid_plural "diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -83087,7 +83419,7 @@ msgid_plural "camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -83100,7 +83432,7 @@ msgid_plural "brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -83113,7 +83445,7 @@ msgid_plural "alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -83126,7 +83458,7 @@ msgid_plural "scutellosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -83139,7 +83471,7 @@ msgid_plural "stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -83151,7 +83483,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83164,7 +83496,7 @@ msgid_plural "ankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83177,7 +83509,7 @@ msgid_plural "nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -83189,7 +83521,7 @@ msgid_plural "edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -83202,7 +83534,7 @@ msgid_plural "camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -83215,7 +83547,7 @@ msgid_plural "parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -83226,7 +83558,7 @@ msgid_plural "maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -83239,7 +83571,7 @@ msgid_plural "corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -83252,7 +83584,7 @@ msgid_plural "edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -83263,7 +83595,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -83276,7 +83608,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -83289,7 +83621,7 @@ msgid_plural "pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -83302,7 +83634,7 @@ msgid_plural "kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -83316,7 +83648,7 @@ msgid_plural "torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -83329,7 +83661,7 @@ msgid_plural "triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -83342,7 +83674,7 @@ msgid_plural "dimorphodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -83355,7 +83687,7 @@ msgid_plural "pteranodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -83368,7 +83700,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -83381,7 +83713,7 @@ msgid_plural "mosasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -83394,7 +83726,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -83407,7 +83739,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -83420,7 +83752,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -83433,7 +83765,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -83446,7 +83778,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -83459,7 +83791,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -83472,7 +83804,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -83575,6 +83907,20 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -84088,20 +84434,20 @@ msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" @@ -84161,7 +84507,6 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -84182,25 +84527,88 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" +#. ~ Description for juvenile allosaurus #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -84423,6 +84831,19 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -84533,7 +84954,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -84993,6 +85414,7 @@ msgstr[1] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -85042,6 +85464,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "" msgstr[1] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -85446,6 +85874,19 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -85478,7 +85919,7 @@ msgid_plural "Rage Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -85491,7 +85932,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -85505,7 +85946,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -85563,7 +86004,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -85626,7 +86067,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -85870,12 +86311,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" msgstr[1] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85884,66 +86338,67 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85951,12 +86406,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85965,12 +86420,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85979,16 +86434,16 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -86018,7 +86473,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -86031,7 +86486,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86044,7 +86500,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -86057,20 +86513,26 @@ msgid_plural "skeletal siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86083,7 +86545,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -86109,7 +86571,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -86121,7 +86583,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86134,8 +86596,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86154,7 +86616,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -86168,7 +86630,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -86181,7 +86643,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -86194,7 +86656,7 @@ msgid_plural "armored diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -86207,7 +86669,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -86220,7 +86682,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -86233,7 +86695,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -86246,7 +86708,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -86259,7 +86721,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -86273,7 +86735,7 @@ msgid_plural "Bone Fortress" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -86287,7 +86749,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86300,7 +86762,7 @@ msgid_plural "armored edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86313,7 +86775,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -86326,7 +86788,7 @@ msgid_plural "armored maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -86339,7 +86801,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -86352,7 +86814,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -86365,7 +86827,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -86378,7 +86840,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -86391,7 +86853,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -86404,7 +86866,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -86417,7 +86879,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -86430,7 +86892,7 @@ msgid_plural "armored torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -86443,7 +86905,7 @@ msgid_plural "armored triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -86456,7 +86918,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -86470,7 +86932,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -86484,7 +86946,7 @@ msgid_plural "Goliath Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -86497,7 +86959,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -86510,7 +86972,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -86551,7 +87013,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -86567,7 +87029,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -86880,7 +87342,7 @@ msgid_plural "forge hounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -87186,7 +87648,7 @@ msgid_plural "hunllef rams" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -87319,6 +87781,22 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -87596,7 +88074,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -87878,7 +88356,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -92950,7 +93428,7 @@ msgstr[1] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -92994,7 +93472,7 @@ msgstr "" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -93902,7 +94380,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -94490,17 +94968,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -94509,7 +94987,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -94732,7 +95210,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -94746,6 +95223,14 @@ msgid_plural "military flight helmets (on)" msgstr[0] "" msgstr[1] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -95096,7 +95581,7 @@ msgid_plural "bagpipes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -95723,7 +96208,7 @@ msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -95798,7 +96283,7 @@ msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -96540,7 +97025,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -98325,7 +98810,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -98333,7 +98818,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -98418,7 +98903,7 @@ msgid_plural "dao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -98468,7 +98953,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -98476,7 +98961,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -98508,7 +98993,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -98597,14 +99082,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -98618,7 +99103,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -98778,7 +99263,7 @@ msgid_plural "synthetic fabric" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -99519,7 +100004,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -101836,8 +102321,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -102518,6 +103003,39 @@ msgstr[1] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -103214,7 +103732,7 @@ msgid_plural "shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -103225,7 +103743,7 @@ msgid_plural "electric shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -103269,6 +103787,32 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -103814,7 +104358,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -103828,7 +104372,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -104305,8 +104849,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -104314,8 +104858,8 @@ msgid_plural "%s (happy)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -104323,8 +104867,8 @@ msgid_plural "%s (focus)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -104332,8 +104876,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -104341,7 +104885,7 @@ msgid_plural "%s (wake up)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -104782,7 +105326,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -105013,13 +105557,13 @@ msgid_plural "loose caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -105032,13 +105576,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -105502,6 +106046,21 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -105782,13 +106341,28 @@ msgid_plural "pliers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -105842,6 +106416,33 @@ msgid "" "to have the right tools for more precise work." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -105967,18 +106568,46 @@ msgid "" msgstr "" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" msgstr[0] "" msgstr[1] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -106275,36 +106904,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -106335,6 +106934,12 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -106557,8 +107162,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -106999,7 +107604,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -107421,7 +108026,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -107468,7 +108073,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -107486,7 +108091,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -108491,6 +109096,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -108542,6 +109156,30 @@ msgstr[1] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -109446,7 +110084,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -109923,6 +110561,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -110793,15 +111435,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" +msgid "Intradermal Alloy - Arms" msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -110817,37 +111458,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" +msgid "Intradermal Alloy - Legs" msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -110858,8 +111498,8 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -116374,7 +117014,7 @@ msgstr "" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -121120,8 +121760,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "" @@ -121137,9 +121776,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "" @@ -121815,7 +122453,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "" @@ -124090,7 +124728,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "" @@ -124212,6 +124851,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -126730,14 +127383,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -126876,16 +127529,16 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -127856,14 +128509,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -130124,6 +130777,19 @@ msgid_plural "acid dart guns" msgstr[0] "" msgstr[1] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -132639,8 +133305,9 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -132652,10 +133319,10 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -133157,17 +133824,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -135495,6 +136166,11 @@ msgid "" "the punishment of combat." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -136334,6 +137010,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "" @@ -136502,6 +137185,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -137614,6 +138301,10 @@ msgstr "" msgid "Move cursor down" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -137814,6 +138505,20 @@ msgstr "" msgid "No" msgstr "Nej" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -139200,13 +139905,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -139268,13 +139973,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -139883,13 +140588,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -143324,6 +144029,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -143746,8 +144461,8 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -143771,7 +144486,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -143785,7 +144501,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -143798,9 +144514,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "" @@ -143960,7 +144705,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -143975,7 +144720,8 @@ msgstr "" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -144005,17 +144751,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -144026,10 +144771,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144040,9 +144799,10 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -144057,33 +144817,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" +"\n" +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -144174,6 +144955,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "" @@ -144231,7 +145026,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -144245,8 +145040,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144260,6 +145056,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -144311,6 +145108,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "" @@ -144396,6 +145206,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "" @@ -144542,6 +145367,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "" @@ -144878,16 +145718,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -144990,7 +145831,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -145097,33 +145938,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -145244,7 +146085,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -145442,6 +146283,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -145502,10 +146358,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -145606,10 +146463,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -146253,7 +147111,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -146263,11 +147136,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146361,6 +147235,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -146373,21 +147261,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146465,6 +147354,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -148097,7 +149000,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -148292,7 +149195,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -148497,7 +149400,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -148551,8 +149454,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -148712,7 +149614,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -148726,7 +149628,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -148765,7 +149667,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -148800,7 +149702,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -148831,7 +149733,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -148873,7 +149775,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -148915,16 +149817,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -148971,7 +149907,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -149021,7 +149957,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -149063,7 +149999,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -149112,7 +150048,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -149139,7 +150075,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -149174,7 +150110,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -150040,7 +150976,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -150075,7 +151011,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -150112,7 +151048,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -150147,7 +151083,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -150175,7 +151111,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -150227,7 +151163,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -150258,7 +151194,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -150287,7 +151223,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -150317,7 +151253,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -150586,8 +151522,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -150988,7 +151923,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -151029,7 +151964,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -151056,7 +151991,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -151138,7 +152073,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -151175,7 +152110,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -151219,7 +152154,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -151268,7 +152203,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -151310,7 +152245,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -151351,7 +152286,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -151386,7 +152321,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -151431,7 +152366,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -151442,6 +152377,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -151588,7 +152581,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -151643,7 +152636,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -151682,7 +152675,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -151719,11 +152712,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -151749,15 +152794,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -151814,7 +152855,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -151864,7 +152905,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -151909,7 +152950,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -151950,11 +152991,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -151997,7 +153039,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -152045,7 +153087,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -152089,7 +153131,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -153748,7 +154790,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -153767,7 +154809,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -153794,7 +154836,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -153828,7 +154870,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -153875,7 +154917,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -154651,6 +155693,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -155343,13 +156409,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -156079,6 +157145,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -156987,7 +158075,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -156998,6 +158085,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -157129,7 +158223,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -157373,8 +158467,8 @@ msgstr "" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" #: lang/json/mutation_from_json.py @@ -160351,8 +161445,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -160592,7 +161686,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160601,7 +161695,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160610,7 +161704,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160619,7 +161713,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160637,7 +161731,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160646,7 +161740,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160655,7 +161749,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160664,7 +161758,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160682,7 +161776,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160691,7 +161785,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160701,7 +161795,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160711,7 +161805,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160741,7 +161835,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160750,7 +161844,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160759,7 +161853,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160768,7 +161862,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -161266,7 +162360,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -161385,7 +162479,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -165894,6 +166988,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -165929,6 +167024,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -166487,6 +167590,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -166622,6 +167733,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -166790,6 +167905,10 @@ msgstr "" msgid "Guard" msgstr "" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "" @@ -166958,6 +168077,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -167893,6 +169016,10 @@ msgstr "" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -168582,6 +169709,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -168590,24 +169721,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -168974,6 +170121,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -170430,6 +171581,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -170540,6 +171745,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -170576,7 +171809,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -170589,7 +171822,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -171182,6 +172415,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -171438,6 +172697,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -171564,6 +172877,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -171612,6 +172953,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -171634,6 +173003,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -176188,6 +177609,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -180538,6 +182017,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -185493,6 +186994,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -185537,6 +187560,63 @@ msgstr "" msgid "Farm processing shack" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "" @@ -185592,6 +187672,524 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "" @@ -185796,6 +188394,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -186490,6 +189464,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -186755,60 +190368,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -187643,7 +191565,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187655,12 +191581,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187668,11 +191604,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187835,6 +191781,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -189972,6 +193974,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -190284,7 +194312,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -191022,8 +195050,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -191793,15 +195821,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -196848,6 +200877,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -196856,7 +201151,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -196973,7 +201268,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -201558,7 +205853,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -201617,7 +205912,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -201630,7 +205925,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -201648,17 +205943,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -201737,7 +206032,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -201847,8 +206142,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -202256,7 +206551,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -202266,8 +206561,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -203689,6 +207984,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -205985,7 +210342,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "" @@ -206646,6 +211003,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -206664,6 +211133,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -207831,6 +212315,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -210157,6 +214719,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -210266,6 +214835,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -210289,6 +214876,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -211799,7 +216393,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -211969,19 +216563,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -212054,95 +216648,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" +msgid "\"Wanna play with me?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" +msgid "\"Sing with me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" +msgid "\"Please take me with you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" +msgid "\"May I have a cookie?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -212150,31 +216748,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" +msgid "\"Hey kids. Want some candy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -212190,19 +216788,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -213269,6 +217863,10 @@ msgstr "" msgid "Gun Store" msgstr "" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "" @@ -214702,6 +219300,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -221922,6 +226524,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -222568,6 +227948,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -222637,6 +228021,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -225069,10 +230464,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -228865,10 +234256,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -229197,6 +234584,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -229488,6 +234984,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -229578,6 +235083,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -232349,6 +237906,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -232534,20 +238108,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -233155,20 +238715,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "" @@ -233204,54 +238750,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -233335,20 +238871,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -233467,34 +238989,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -233510,45 +239004,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -233632,17 +239126,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -233684,7 +239178,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -233697,6 +239191,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -233843,20 +239341,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -233961,20 +239445,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -234075,20 +239545,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -234413,41 +239869,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -234648,20 +240100,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -235422,20 +240860,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -235534,20 +240958,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -235590,20 +241000,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -237844,6 +243240,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "æbletræ" @@ -241233,24 +246641,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -241258,32 +246666,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -241291,35 +246699,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -241327,33 +246730,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -241361,10 +246764,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -241372,10 +246775,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -241383,40 +246786,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -241424,21 +246825,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -241446,44 +246843,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -241491,14 +246879,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -241516,12 +246900,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -241529,21 +246908,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -241551,10 +246926,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -241562,7 +246937,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -241571,10 +246946,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -241583,21 +246958,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -241605,10 +246976,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -241617,10 +246988,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -241628,7 +246999,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -241637,26 +247008,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -241670,11 +247041,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -244177,18 +249544,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "" @@ -244551,6 +250025,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -245028,6 +250553,15 @@ msgstr "" msgid "wooden aisle" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -245161,6 +250695,10 @@ msgstr "" msgid "wood table" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -245229,6 +250767,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -245335,6 +250877,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -246518,8 +252066,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -249232,6 +254780,18 @@ msgstr "" msgid "Coverage:" msgstr "" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "" @@ -249323,8 +254883,9 @@ msgstr "" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -249336,6 +254897,12 @@ msgstr "" msgid "Storage (%s)" msgstr "" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "" @@ -253521,11 +259088,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "" @@ -253836,6 +259398,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -256002,10 +261572,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -256546,6 +262112,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -256972,6 +262546,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -257060,6 +262639,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -257813,7 +263397,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -257835,15 +263419,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -261175,6 +266750,10 @@ msgstr "" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -261459,6 +267038,15 @@ msgstr "" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "" @@ -263768,10 +269356,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "" @@ -263912,6 +269496,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -264271,10 +269863,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -264801,13 +270389,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -268112,6 +273693,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -271115,13 +276711,15 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" +msgid "Set the timer to how many seconds (0 to cancel)?" msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -271858,8 +277456,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -272081,38 +277678,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -273337,87 +278902,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -276235,7 +281743,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -281157,6 +286677,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -282026,21 +287551,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -282304,11 +287814,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -283978,11 +289497,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -284749,6 +290263,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -284756,14 +290279,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -287085,20 +292613,6 @@ msgstr "" msgid "# Unexplored" msgstr "" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -287439,6 +292953,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -287487,6 +293006,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -289878,6 +295401,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -294190,6 +299723,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "" diff --git a/lang/po/de.po b/lang/po/de.po index 48bf72ac4bc73..b6dc2da000430 100644 --- a/lang/po/de.po +++ b/lang/po/de.po @@ -35,7 +35,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Vlasov Vitaly , 2021\n" "Language-Team: German (https://www.transifex.com/cataclysm-dda-translators/teams/2217/de/)\n" @@ -51,7 +51,7 @@ msgid_plural "battery" msgstr[0] "Batterie" msgstr[1] "Batterien" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -66,7 +66,7 @@ msgid_plural "butane" msgstr[0] "Butan" msgstr[1] "Butan" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "" @@ -79,7 +79,7 @@ msgid_plural "aerosol paint" msgstr[0] "Sprühfarbe" msgstr[1] "Sprühfarben" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -94,7 +94,7 @@ msgid_plural "permanent ink" msgstr[0] "Permanentfarbe" msgstr[1] "Permanentfarben" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -110,7 +110,7 @@ msgid_plural "candle wax" msgstr[0] "Kerzenwachs" msgstr[1] "Kerzenwachs" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "" @@ -123,7 +123,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "Pyrotechnik für Leuchtsignale" msgstr[1] "Pyrotechnik für Leuchtsignale" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "Eine pyrotechnische Chemikalie für Leuchtsignale." @@ -149,7 +149,7 @@ msgid_plural "oxygen" msgstr[0] "Sauerstoff" msgstr[1] "Sauerstoff" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Komprimierter medizinischer Sauerstoff" @@ -160,7 +160,7 @@ msgid_plural "aluminum foil" msgstr[0] "Alufolie" msgstr[1] "Alufolien" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -186,7 +186,7 @@ msgid_plural "thread" msgstr[0] "Faden" msgstr[1] "Fäden" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -224,7 +224,7 @@ msgid_plural "yarn" msgstr[0] "Garn" msgstr[1] "Garne" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Wollgarn, könnte zum Stricken von Kleidung gebraucht werden." @@ -246,7 +246,7 @@ msgid_plural "duct tape" msgstr[0] "Gewebeband" msgstr[1] "Gewebeband" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -319,8 +319,8 @@ msgid_plural "plutonium slurry" msgstr[0] "Plutoniumschlamm" msgstr[1] "Plutoniumschlamm" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -392,7 +392,7 @@ msgid_plural "bearings" msgstr[0] "Kugellager" msgstr[1] "Kugellager" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -443,7 +443,7 @@ msgid_plural "120mm HEAT" msgstr[0] "120mm HEAT" msgstr[1] "120mm HEAT" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -473,7 +473,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "Gemischtes rauchloses Schießpulver" msgstr[1] "Gemischtes rauchloses Schießpulver" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -491,7 +491,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "Rauchschwaches Schrotflinten Pulver" msgstr[1] "Rauchschwaches Schrotflinten Pulver" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -504,7 +504,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "Rauchschwaches Pistolenpulver" msgstr[1] "Rauchschwaches Pistolenpulver" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -516,7 +516,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "Rauchschwaches Pulver für Magnum" msgstr[1] "Rauchschwaches Pulver für Magnum" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -530,7 +530,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "Rauchschwaches Pulver für Gewehre" msgstr[1] "Rauchschwaches Pulver für Gewehre" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -542,7 +542,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "rauchfreies Vollmantel-Gewehrpulver" msgstr[1] "rauchfreies Vollmantel-Gewehrpulver" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -555,7 +555,7 @@ msgid_plural "artillery propellant" msgstr[0] "Treibladung für Artillerie" msgstr[1] "Treibladungen für Artillerie" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -570,7 +570,7 @@ msgid_plural "oxidizer powder" msgstr[0] "Oxidationsmittel-Pulver" msgstr[1] "Oxidationsmittel-Pulver" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Flüchtiges chemisches Oxidationsmittel in Pulverform." @@ -581,7 +581,7 @@ msgid_plural "lye powder" msgstr[0] "Laugen-Pulver" msgstr[1] "Laugen-Pulver" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Ätznatron in Pulverform." @@ -673,7 +673,7 @@ msgid_plural "copper" msgstr[0] "Kupfer" msgstr[1] "Kupfer" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -688,7 +688,7 @@ msgid_plural "medical tape" msgstr[0] "Medizinisches Band" msgstr[1] "Medizinische Bänder" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Eine Rolle medizinisches Band, ähnlich wie Isolierband." @@ -700,7 +700,7 @@ msgstr[0] "Platzhaltermunition" msgstr[1] "Platzhaltermunition" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "WENN DU DIES SIEHST, IST ES EIN BUG." @@ -711,7 +711,7 @@ msgid_plural "charcoal" msgstr[0] "Holzkohle" msgstr[1] "Holzkohlen" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -729,7 +729,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "Kalziumkarbid Vormischung" msgstr[1] "Kalziumkarbid Vormischungen" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -759,7 +759,7 @@ msgid_plural "albuterol" msgstr[0] "Albuterol" msgstr[1] "Albuterol" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -859,7 +859,7 @@ msgid_plural "nicotine liquid" msgstr[0] "Nikotinflüssigkeit" msgstr[1] "Nikotinflüssigkeiten" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -874,7 +874,7 @@ msgid_plural "fish bait" msgstr[0] "Fischköder" msgstr[1] "Fischköder" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Ein Köder, der in Fallen benutzt wird, im Fische anzulocken." @@ -938,7 +938,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "unfertige Holzkohle" msgstr[1] "unfertige Holzkohlen" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -953,7 +953,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "unfertiges Kalziumkarbid" msgstr[1] "unfertiges Kalziumkarbid" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -979,7 +979,7 @@ msgid_plural "nitrox" msgstr[0] "Nitrox" msgstr[1] "Nitrox" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -992,7 +992,7 @@ msgid_plural "extinguishing agent" msgstr[0] "Löschmittel" msgstr[1] "Löschmittel" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Trockene chemische Lösung, um effektiv Feuer zu löschen." @@ -1003,7 +1003,7 @@ msgid_plural "tinder" msgstr[0] "Zunder" msgstr[1] "Zunder" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -1038,7 +1038,7 @@ msgid_plural "bronze" msgstr[0] "Bronze" msgstr[1] "Bronze" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -1051,7 +1051,7 @@ msgid_plural "glowstick juice" msgstr[0] "Knicklicht-Flüssigkeit" msgstr[1] "Knicklicht-Flüssigkeiten" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -1065,7 +1065,7 @@ msgid_plural "graphite" msgstr[0] "Graphit" msgstr[1] "Graphit" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1083,7 +1083,7 @@ msgid_plural "black pen ink" msgstr[0] "Schwarze Kugelschreiber-Tinte" msgstr[1] "Schwarze Kugelschreiber-Tinten" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1098,7 +1098,7 @@ msgid_plural "blue pen ink" msgstr[0] "Blaue Kugelschreiber-Tinte" msgstr[1] "Blaue Kugelschreiber-Tinten" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1114,7 +1114,7 @@ msgid_plural "green pen ink" msgstr[0] "Grüne Kugelschreiber-Tinte" msgstr[1] "Grüne Kugelschreiber-Tinten" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1129,7 +1129,7 @@ msgid_plural "red pen ink" msgstr[0] "Rote Kugelschreiber-Tinte" msgstr[1] "Rote Kugelschreiber-Tinten" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1162,7 +1162,7 @@ msgid_plural "sulfur" msgstr[0] "Schwefel" msgstr[1] "Schwefel" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1192,7 +1192,7 @@ msgid_plural "cement" msgstr[0] "Zement" msgstr[1] "Zement" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1209,7 +1209,7 @@ msgid_plural "gravel" msgstr[0] "Kies" msgstr[1] "Kies" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "Eine Handvoll Kies, kleiner als Kieselsteine aber größer als Sand." @@ -1220,7 +1220,7 @@ msgid_plural "limestone" msgstr[0] "Kalkstein" msgstr[1] "Kalkstein" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1237,7 +1237,7 @@ msgid_plural "quicklime" msgstr[0] "Branntkalk" msgstr[1] "Branntkalk" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1257,7 +1257,7 @@ msgid_plural "sand" msgstr[0] "Sand" msgstr[1] "Sand" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1273,7 +1273,7 @@ msgid_plural "soil" msgstr[0] "Erde" msgstr[1] "Erde" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1288,7 +1288,7 @@ msgid_plural "aluminum powder" msgstr[0] "Aluminiumpulver" msgstr[1] "Aluminiumpulver" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1308,7 +1308,7 @@ msgid_plural "zinc powder" msgstr[0] "Zinkpulver" msgstr[1] "Zinkpulver" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1327,7 +1327,7 @@ msgid_plural "zinc oxide" msgstr[0] "Zinkoxid" msgstr[1] "Zinkoxid" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1342,7 +1342,7 @@ msgid_plural "manganese dioxide" msgstr[0] "Mangandioxid" msgstr[1] "Mangandioxid" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1359,7 +1359,7 @@ msgid_plural "potassium chloride" msgstr[0] "Kaliumchlorid" msgstr[1] "Kaliumchlorid" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1378,7 +1378,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "Kaliumhydroxid" msgstr[1] "Kaliumhydroxide" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1395,7 +1395,7 @@ msgid_plural "acetone" msgstr[0] "Azeton" msgstr[1] "Azeton" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1413,7 +1413,7 @@ msgid_plural "chromium oxide" msgstr[0] "Chromoxid" msgstr[1] "Chromoxid" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1435,7 +1435,7 @@ msgid_plural "calcium carbide" msgstr[0] "Kalziumkarbid" msgstr[1] "Kalziumkarbid" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1457,7 +1457,7 @@ msgid_plural "hexamine" msgstr[0] "Hexamin" msgstr[1] "Hexamin" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1478,7 +1478,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "Wasserstoffperoxid (konzentriert)" msgstr[1] "Wasserstoffperoxid (konzentriert)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1498,7 +1498,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "Ammoniumnitrat" msgstr[1] "Ammoniumnitrat" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1518,7 +1518,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "Ammoniumnitrat Brocken" msgstr[1] "Ammoniumnitrat Brocken" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1538,7 +1538,7 @@ msgid_plural "saltpeter" msgstr[0] "Salpeter" msgstr[1] "Salpeter" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1555,7 +1555,7 @@ msgid_plural "niter" msgstr[0] "Nitrokalit" msgstr[1] "Nitrokalit" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1570,7 +1570,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "Aluminiumsulfat" msgstr[1] "Aluminiumsulfat" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1594,7 +1594,7 @@ msgid_plural "acetic acid" msgstr[0] "Ethansäure" msgstr[1] "Ethansäure" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1613,7 +1613,7 @@ msgid_plural "formaldehyde" msgstr[0] "Formaldehyd" msgstr[1] "Formaldehyd" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1632,7 +1632,7 @@ msgid_plural "thermite" msgstr[0] "Thermit" msgstr[1] "Thermit" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1651,7 +1651,7 @@ msgid_plural "ANFO" msgstr[0] "ANC-Sprengstoff" msgstr[1] "ANC-Sprengstoff" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1671,7 +1671,7 @@ msgid_plural "black gunpowder" msgstr[0] "Schwarzpulver" msgstr[1] "Schwarzpulver" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1690,7 +1690,7 @@ msgid_plural "match head powder" msgstr[0] "Streichholzkopfpulver" msgstr[1] "Streichholzkopfpulver" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1708,7 +1708,7 @@ msgid_plural "RDX" msgstr[0] "Hexogen" msgstr[1] "Hexogen" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1726,7 +1726,7 @@ msgid_plural "composition b" msgstr[0] "Komposit-B" msgstr[1] "Komposit-B" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1743,7 +1743,7 @@ msgid_plural "HMTD" msgstr[0] "HMTD" msgstr[1] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1761,7 +1761,7 @@ msgid_plural "APEX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1778,7 +1778,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "improvisierter Raketentreibstoff" msgstr[1] "improvisierter Raketentreibstoff" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1794,7 +1794,7 @@ msgid_plural "detergent" msgstr[0] "Reinigungsmittel" msgstr[1] "Reinigungsmittel" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "Ein beliebtes Waschpulver aus der Zeit vor der großen Katastrophe." @@ -1805,7 +1805,7 @@ msgid_plural "soap flakes" msgstr[0] "Seifenflocken" msgstr[1] "Seifenflocken" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1877,7 +1877,7 @@ msgid_plural "concentrated venom" msgstr[0] "konzentriertes Gift" msgstr[1] "konzentrierte Gifte" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1897,7 +1897,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1917,7 +1917,7 @@ msgid_plural "rocuronium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1931,7 +1931,7 @@ msgid_plural "red phosphorous" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1944,7 +1944,7 @@ msgid_plural "iodine crystal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1957,7 +1957,7 @@ msgid_plural "ethanol" msgstr[0] "Ethanol" msgstr[1] "Ethanol" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1992,7 +1992,7 @@ msgid_plural "methanol" msgstr[0] "Methanol" msgstr[1] "Methanol" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -2008,7 +2008,7 @@ msgid_plural "diesel" msgstr[0] "Diesel" msgstr[1] "Diesel" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -2022,7 +2022,7 @@ msgid_plural "JP8 fuel" msgstr[0] "JP8 Treibsoff" msgstr[1] "JP8 Treibsoff" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -2035,7 +2035,7 @@ msgid_plural "avgas fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -2046,7 +2046,7 @@ msgid_plural "biodiesel" msgstr[0] "Biodiesel" msgstr[1] "Biodiesel" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -2062,7 +2062,7 @@ msgid_plural "gasoline" msgstr[0] "Benzin" msgstr[1] "Benzin" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -2077,7 +2077,7 @@ msgid_plural "lamp oil" msgstr[0] "Lampenöl" msgstr[1] "Lampenöl" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "Ein dünnes und leicht entflammbares Öl zur Verwendung in Öllampen." @@ -2088,7 +2088,7 @@ msgid_plural "motor oil" msgstr[0] "Motoröl" msgstr[1] "Motoröl" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "Ein Öl, gemacht zur Verwendung in Fahrzeugmotoren." @@ -2099,7 +2099,7 @@ msgid_plural "napalm" msgstr[0] "Napalm" msgstr[1] "Napalm" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2116,7 +2116,7 @@ msgid_plural "gelled gasoline" msgstr[0] "geliertes Benzin" msgstr[1] "geliertes Benzin" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2133,7 +2133,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "Flammenwerfer Brennstoff" msgstr[1] "Flammenwerfer Brennstoff" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2179,7 +2179,7 @@ msgid_plural "shrapnel" msgstr[0] "Schrapnell" msgstr[1] "Schrapnell" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "Eine verdrillte Scherbe aus gezacktem Metall." @@ -2237,7 +2237,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2263,7 +2263,7 @@ msgid_plural "H&K 12mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2311,7 +2311,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2343,7 +2343,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2394,7 +2394,7 @@ msgid_plural "20x66mm frag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2411,7 +2411,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2428,7 +2428,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2462,7 +2462,7 @@ msgid_plural ".22 CB" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2480,7 +2480,7 @@ msgid_plural ".22 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2498,7 +2498,7 @@ msgid_plural ".22 LR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2516,7 +2516,7 @@ msgid_plural ".22 rat-shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2558,7 +2558,7 @@ msgid_plural ".223 Remington" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2575,7 +2575,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2591,7 +2591,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2608,7 +2608,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2626,7 +2626,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2644,7 +2644,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "5.56 NATO Leuchtspur" msgstr[1] "5.56 NATO Leuchtspur" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2696,7 +2696,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] ".270 Winchester JSP" msgstr[1] ".270 Winchester JSP" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2753,7 +2753,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2770,7 +2770,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2788,7 +2788,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2805,7 +2805,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2924,7 +2924,7 @@ msgid_plural ".308 Winchester" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2941,7 +2941,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2958,7 +2958,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -3010,7 +3010,7 @@ msgid_plural ".32 ACP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -3037,7 +3037,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -3051,7 +3051,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -3089,7 +3089,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -3105,7 +3105,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3161,7 +3161,7 @@ msgid_plural ".38 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3192,7 +3192,7 @@ msgid_plural ".38 Super" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3237,7 +3237,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3256,7 +3256,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3275,7 +3275,7 @@ msgid_plural ".380 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3324,7 +3324,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3347,7 +3347,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3365,7 +3365,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3412,7 +3412,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3429,7 +3429,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3443,7 +3443,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3457,7 +3457,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3471,8 +3471,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3486,8 +3486,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3530,8 +3530,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3545,8 +3545,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3604,7 +3604,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3617,7 +3617,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3647,7 +3647,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3661,8 +3661,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3688,8 +3688,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3720,7 +3720,7 @@ msgid_plural ".410 000 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3739,7 +3739,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3807,7 +3807,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3820,7 +3820,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3837,7 +3837,7 @@ msgid_plural ".45 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3881,7 +3881,7 @@ msgid_plural ".454 Casull" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3915,7 +3915,7 @@ msgid_plural ".45-70 SP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3950,7 +3950,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3968,7 +3968,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4005,7 +4005,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4025,7 +4025,7 @@ msgid_plural ".45-70, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4044,7 +4044,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -4076,7 +4076,7 @@ msgid_plural "4.6x30mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -4093,8 +4093,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -4120,7 +4120,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -4136,7 +4136,7 @@ msgid_plural ".460 Rowland" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4170,7 +4170,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4192,7 +4192,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4210,7 +4210,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4232,7 +4232,7 @@ msgid_plural ".50 BMG Match" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4247,7 +4247,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4263,7 +4263,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -4292,7 +4292,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4310,7 +4310,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -4332,7 +4332,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -4396,7 +4396,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -4415,7 +4415,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -4430,7 +4430,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -4447,7 +4447,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -4475,7 +4475,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4498,8 +4498,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4596,7 +4596,7 @@ msgid_plural "66mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -4609,7 +4609,7 @@ msgid_plural ".700 NX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4640,7 +4640,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4659,7 +4659,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4678,7 +4678,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4715,7 +4715,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4749,7 +4749,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4781,7 +4781,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4859,7 +4859,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4875,7 +4875,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4891,7 +4891,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4909,7 +4909,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4926,7 +4926,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4946,7 +4946,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4965,7 +4965,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4982,7 +4982,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -5001,7 +5001,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -5014,7 +5014,7 @@ msgid_plural "9x19mm +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -5030,7 +5030,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -5082,7 +5082,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -5099,7 +5099,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -5116,7 +5116,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -5143,7 +5143,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5161,7 +5161,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5179,7 +5179,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5197,7 +5197,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -5228,7 +5228,7 @@ msgid_plural "cannon round shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -5241,7 +5241,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -5257,7 +5257,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -5273,7 +5273,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -5403,7 +5403,7 @@ msgid_plural "paintball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -5520,7 +5520,7 @@ msgid_plural "00 shot" msgstr[0] "00-Schrotkugel" msgstr[1] "00-Schrotkugeln" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -5537,7 +5537,7 @@ msgstr[0] "Schrotflinten-Beanbag" msgstr[1] "Schrotflinten-Beanbags" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -5550,7 +5550,7 @@ msgid_plural "birdshot" msgstr[0] "Vogeldunst" msgstr[1] "Vogeldunst" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -5618,8 +5618,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "00 Schrot, Schrot geladen" msgstr[1] "00 Schrot, Schrot geladen" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5789,7 +5789,7 @@ msgid_plural "oxyacetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5804,7 +5804,7 @@ msgid_plural "fungal seeds" msgstr[0] "Pilzsporen" msgstr[1] "Pilzsporen" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Einige Pilzsporen." @@ -6665,7 +6665,7 @@ msgid_plural "red paint" msgstr[0] "rote Farbe" msgstr[1] "rote Farbe" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Ein Farbeimer mit roter Farbe." @@ -6676,7 +6676,7 @@ msgid_plural "blue paint" msgstr[0] "blaue Farbe" msgstr[1] "blaue Farbe" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Ein Farbeimer mit blauer Farbe." @@ -6687,7 +6687,7 @@ msgid_plural "white paint" msgstr[0] "weiße Farbe" msgstr[1] "weiße Farbe" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Ein Farbeimer mit weißer Farbe." @@ -6698,7 +6698,7 @@ msgid_plural "green paint" msgstr[0] "grüne Farbe" msgstr[1] "grüne Farbe" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Ein Farbeimer mit grüner Farbe." @@ -6709,7 +6709,7 @@ msgid_plural "purple paint" msgstr[0] "violette Farbe" msgstr[1] "violette Farbe" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Ein Farbeimer mit violetter Farbe." @@ -6720,7 +6720,7 @@ msgid_plural "yellow paint" msgstr[0] "gelbe Farbe" msgstr[1] "gelbe Farbe" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Ein Farbeimer mit gelber Farbe." @@ -6790,7 +6790,7 @@ msgid_plural "bismuth" msgstr[0] "Wismut" msgstr[1] "Wismut" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -6803,8 +6803,8 @@ msgid_plural "gold" msgstr[0] "Gold" msgstr[1] "Gold" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -6825,7 +6825,7 @@ msgid_plural "zinc" msgstr[0] "Zink" msgstr[1] "Zink" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6844,7 +6844,7 @@ msgid_plural "lead" msgstr[0] "Blei" msgstr[1] "Blei" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6860,7 +6860,7 @@ msgid_plural "magnesium powder" msgstr[0] "Magnesiumpulver" msgstr[1] "Magnesiumpulver" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6876,7 +6876,7 @@ msgid_plural "silver" msgstr[0] "Silber" msgstr[1] "Silber" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -6944,7 +6944,7 @@ msgid_plural "tin powder" msgstr[0] "Zinnpulver" msgstr[1] "Zinnpulver" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -6960,7 +6960,7 @@ msgid_plural "solder" msgstr[0] "Lötzinn" msgstr[1] "Lötzinn" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -6998,7 +6998,7 @@ msgid_plural "fuse" msgstr[0] "Zündschnur" msgstr[1] "Zündschnüre" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -7055,7 +7055,7 @@ msgid_plural "cotton scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -7072,7 +7072,7 @@ msgid_plural "faux fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -7087,7 +7087,7 @@ msgid_plural "felt scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -7104,7 +7104,7 @@ msgid_plural "fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -7119,7 +7119,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -7138,7 +7138,7 @@ msgid_plural "leather scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -7153,7 +7153,7 @@ msgid_plural "Lycra scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -7166,7 +7166,7 @@ msgid_plural "neoprene scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -7181,7 +7181,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -7196,7 +7196,7 @@ msgid_plural "Nomex scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -7227,7 +7227,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -7258,7 +7258,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -7287,7 +7287,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -7331,7 +7331,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -7360,7 +7360,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -7394,7 +7394,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -7425,7 +7425,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -7532,7 +7532,7 @@ msgid_plural "titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -7562,7 +7562,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -7577,7 +7577,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -7592,7 +7592,7 @@ msgid_plural "25mm canister shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -7608,7 +7608,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -7623,7 +7623,7 @@ msgid_plural "7.50mm RP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -7640,7 +7640,7 @@ msgid_plural "electric charge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -7653,7 +7653,7 @@ msgid_plural "foamcrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -7669,7 +7669,7 @@ msgid_plural "solid hydrogen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -7682,7 +7682,7 @@ msgid_plural "lead pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -7699,7 +7699,7 @@ msgid_plural "domed HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -7717,7 +7717,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -7732,7 +7732,7 @@ msgid_plural "alloy pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -7898,7 +7898,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7919,7 +7919,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7964,7 +7964,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -7987,7 +7987,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -8034,7 +8034,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8050,7 +8050,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8090,7 +8090,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8112,7 +8112,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8158,7 +8158,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -8170,7 +8170,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -8183,7 +8183,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8205,7 +8205,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8237,7 +8237,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -8252,7 +8252,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -8270,7 +8270,7 @@ msgid_plural "rocket, smoke" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -8296,7 +8296,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -8309,7 +8309,7 @@ msgid_plural "shotshell, slug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -8323,7 +8323,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -8373,7 +8373,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -8424,7 +8424,7 @@ msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -8477,7 +8477,7 @@ msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -8505,7 +8505,7 @@ msgid_plural "parabolan yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -8516,7 +8516,7 @@ msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -8554,7 +8554,7 @@ msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -8571,7 +8571,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -9076,7 +9076,7 @@ msgstr[1] "Munitionsumhängetaschen" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -9092,7 +9092,7 @@ msgstr "Du lagerst ein: %s." #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -9128,7 +9128,7 @@ msgid_plural "chest rig" msgstr[0] "Brustgurt" msgstr[1] "Brustgurte" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -10044,38 +10044,19 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "Überlebendengürtel" -msgstr[1] "Überlebendengürtel" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "Werkzeuggürtel" +msgstr[1] "Werkzeuggürtel" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "Werkzeuggürtel" -msgstr[1] "Werkzeuggürtel" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -10229,25 +10210,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "Paar Überlebendenfeuerschutzschuhe" -msgstr[1] "Paar Überlebendenfeuerschutzschuhe" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -10265,45 +10227,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "Paar Überlebendentaucheranzugsstiefel" -msgstr[1] "Paar Überlebendentaucheranzugsstiefel" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -10315,26 +10238,6 @@ msgstr[1] "Paar Wanderschuhe" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "Paar schwere Überlebendenstiefel" -msgstr[1] "Paar schwere Überlebendenstiefel" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -10353,26 +10256,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "Paar leichte Überlebendenstiefel" -msgstr[1] "Paar leichte Überlebendenstiefel" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -10444,20 +10327,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "Paar Überlebendenstiefel" -msgstr[1] "Paar Überlebendenstiefel" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -10489,39 +10358,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "Paar Winterüberlebendenstiefel" -msgstr[1] "Paar Winterüberlebendenstiefel" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "Paar große Überlebendenstiefel" -msgstr[1] "Paar große Überlebendenstiefel" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -11479,28 +11315,6 @@ msgid_plural "XL leather dusters" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "Überlebendenstaubmantel" -msgstr[1] "Überlebendenstaubmäntel" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" -"Ein mit Kevlar geschützter angepasster Staubmantel in Lebensgröße, der mit " -"Taschen und Einsätzen überzogen ist. Komfortabel, stabil und großartig zum " -"Lagern." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -11553,7 +11367,7 @@ msgid_plural "army jacket" msgstr[0] "Armeejacke" msgstr[1] "Armeejacken" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -11737,7 +11551,7 @@ msgid_plural "kimono" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -11910,22 +11724,6 @@ msgstr "" "Ein dicker Staubmantel in voller Länge ohne Ärmel; er lässt deine Arme " "unbelastet. Hat viel Lagerplatz aufgrund seiner vielen Taschen." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "ärmelloser Überlebendenstaubmantel" -msgstr[1] "ärmellose Überlebendenstaubmäntel" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" -"Ein angepasster mit Kevlar geschützter Staubmantel in Lebensgröße, der mit " -"Taschen und Einsätzen überzogen ist. Komfortabel, stabil und großartig zum " -"Lagern." - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -11986,22 +11784,6 @@ msgstr "" "Ein dicker Ledertrenchcoat, der deine Arme unbelastet lässt. Hat viel " "Lagerplatz aufgrund seiner vielen Taschen." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "ärmelloser Überlebendentrenchcoat" -msgstr[1] "ärmellose Überlebendentrenchcoats" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" -"Ein angepasster mit Kevlar geschützter Trenchcoat, der mit Taschen und " -"Einsätzen überzogen ist. Komfortabel, stabil und großartig zum Lagern von " -"Gegenständen." - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -12020,7 +11802,7 @@ msgid_plural "thawb" msgstr[0] "Thawb" msgstr[1] "Thawbs" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -12079,21 +11861,6 @@ msgstr "" "Ein dicker Leder-Trenchcoat, in dem Taschen genäht wurden. Großartig als " "Lagerplatz." -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "Überlebendentrenchcoat" -msgstr[1] "Überlebendentrenchcoats" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" -"Ein mit Kevlar geschützter angepasster Trenchcoat, der mit Taschen und " -"Einsätzen überzogen ist. Komfortabel, stabil und großartig zum Lagern." - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -12371,21 +12138,6 @@ msgstr[1] "Sonnenbrillen" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "Eine Sonnenbrille. Gut, um nicht geblendet zu werden." -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "Überlebendenbrille" -msgstr[1] "Überlebendenbrillen" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" -"Eine selbstgebaute gepanzerte Brille mit getönten Linsen. Sie ist bequem, " -"widerstandsfähig, und bietet ausgezeichneten Schutz vor Umweltgefahren." - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -12759,25 +12511,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "Paar Überlebendenfeuerschutzhandschuhe" -msgstr[1] "Paar Überlebendenfeuerschutzhandschuhe" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -12795,50 +12528,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "Paar schwere Überlebendenhandschuhe" -msgstr[1] "Paar schwere Überlebendenhandschuhe" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -12905,63 +12594,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "Paar leichte Überlebendenhandschuhe" -msgstr[1] "Paar leichte Überlebendenhandschuhe" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -13006,19 +12638,6 @@ msgstr "" "Ein Paar Gummihandschuhe, oft beim Reinigen mit ätzenden Materialien " "benutzt." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "Paar Überlebendenhandschuhe" -msgstr[1] "Paar Überlebendenhandschuhe" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -13151,37 +12770,6 @@ msgstr "" "werden, um einen geringfügigen Schutz beim Schlagen und anderem Unfug zu " "bieten." -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "Paar Winterüberlebendenhandschuhe" -msgstr[1] "Paar Winterüberlebendenhandschuhe" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "Paar große Überlebendenhandschuhe" -msgstr[1] "Paar große Überlebendenhandschuhe" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -13997,7 +13585,7 @@ msgid_plural "kabuto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -14118,34 +13706,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "Nomadenhaube" -msgstr[1] "Nomadenhauben" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" -"Eine behelfsmäßige Haube, die auch die Augen bedeckt. Schützt vor Regen und " -"vor der Sonne. Ausgelegt für lange Reisen." - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -14201,35 +13761,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "Sammlerkapuze" -msgstr[1] "Sammlerkapuzen" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" -"Eine stabile schützende Bundhaube, die bis runter zum Hals geht, " -"ausgestattet mit einem Atemgerät und Augenschutz. Für gefährliche " -"Plünderausflüge." - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -14455,41 +13986,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "Überlebendenharnisch" -msgstr[1] "Überlebendenharnische" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" -"Ein selbstgeschneiderter leichter Harnisch, der mit Beuteln überzogen ist " -"und mit einer eingenähten taktischen Schlinge für ein kleines Gewehr oder " -"einer ähnlichen Waffe ausgestattet ist. Langlebig und sorgfältig für hohen " -"Tragekomfort geschneidert. Aktiviere diesen Gegenstand, um deine Waffe zu " -"ziehen bzw. wieder einzustecken." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -14545,77 +14041,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "Überlebendenfeuerkapuze" -msgstr[1] "Überlebendenfeuerkapuzen" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "leichte Überlebendenkapuze" -msgstr[1] "leichte Überlebendenkapuzen" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -14627,56 +14052,6 @@ msgstr[1] "Regenhauben" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "Überlebendenkapuze" -msgstr[1] "Überlebendenkapuzen" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "Winterüberlebendenkapuze" -msgstr[1] "Winterüberlebendenkapuzen" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "große Überlebendenkapuze" -msgstr[1] "große Überlebendenkapuzen" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -15094,9 +14469,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -15107,9 +14482,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -15120,9 +14495,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -15133,9 +14508,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -15146,9 +14521,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -15159,9 +14534,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -15172,9 +14547,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -15185,9 +14560,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -15198,9 +14573,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -15211,9 +14586,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -15224,9 +14599,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -15237,9 +14612,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -15250,9 +14625,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -15263,9 +14638,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -18942,7 +18317,7 @@ msgid_plural "turnout trousers" msgstr[0] "Feuerwehrschutzhose" msgstr[1] "Feuerwehrschutzhosen" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -18982,7 +18357,7 @@ msgid_plural "leather chaps" msgstr[0] "Leder-Chaps" msgstr[1] "Leder-Chaps" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -18997,7 +18372,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -19012,7 +18387,7 @@ msgid_plural "fencing pants" msgstr[0] "Fechthose" msgstr[1] "Fechthosen" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -19192,34 +18567,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "leichte Überlebendencargohose" -msgstr[1] "leichte Überlebendencargohosen" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" -"Leichte, Kevlar-Cargohosen, die darauf ausgelegt sind, möglichst viel " -"Lagerplatz zu bieten. Robust und größtenteils wasserundurchlässig." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -19231,39 +18578,13 @@ msgstr[1] "Motorradfahrerhosen" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "Eine Hose, die für Geländeradfahrer und Motorradfahrer gemacht ist." -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "Überlebendencargohose" -msgstr[1] "Überlebendencargohosen" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -19276,7 +18597,7 @@ msgid_plural "light EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -19303,7 +18624,7 @@ msgid_plural "basketball shorts" msgstr[0] "Basketball-Shorts" msgstr[1] "Basketball-Shorts" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "Eine Basketball-Shorts. Bequem und leicht." @@ -19314,7 +18635,7 @@ msgid_plural "breeches" msgstr[0] "Breeches" msgstr[1] "Breeches" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -19342,7 +18663,7 @@ msgid_plural "hot pants" msgstr[0] "Hotpants" msgstr[1] "Hotpants" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "Einfache kurze Shorts." @@ -19353,7 +18674,7 @@ msgid_plural "fur hot pants" msgstr[0] "Pelz-Hotpants" msgstr[1] "Pelz-Hotpants" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "Einfache pelzige kurze Shorts." @@ -19364,7 +18685,7 @@ msgid_plural "leather hot pants" msgstr[0] "Leder-Hotpants" msgstr[1] "Leder-Hotpants" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "Einfache lederne kurze Shorts." @@ -19375,7 +18696,7 @@ msgid_plural "jeans" msgstr[0] "Jeans" msgstr[1] "Jeans" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "Eine Bluejeans mit zwei tiefen Taschen." @@ -19408,7 +18729,7 @@ msgid_plural "red jeans" msgstr[0] "rote Jeans" msgstr[1] "rote Jeans" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "Eine eng anliegende liebesapfelrote Jeans mit zwei tiefen Taschen." @@ -19439,7 +18760,7 @@ msgid_plural "leggings" msgstr[0] "Leggings" msgstr[1] "Leggings" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -19526,7 +18847,7 @@ msgid_plural "pants" msgstr[0] "Hose" msgstr[1] "Hosen" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "Eine Khakihose. Geringfügig wärmer als Jeans." @@ -19537,15 +18858,15 @@ msgid_plural "army pants" msgstr[0] "Armeehose" msgstr[1] "Armeehosen" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "Eine widerstandsfähige Hose mit Taschen. Vom Militär bevorzugt." #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -19578,7 +18899,7 @@ msgid_plural "cargo pants" msgstr[0] "Cargohose" msgstr[1] "Cargohosen" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "Eine Hose mit Taschen, die viel Platz bieten." @@ -19589,7 +18910,7 @@ msgid_plural "checkered pants" msgstr[0] "Karohose" msgstr[1] "Karohosen" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -19601,7 +18922,7 @@ msgid_plural "fur pants" msgstr[0] "Pelzhose" msgstr[1] "Pelzhosen" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "Eine starke pelzgefütterte Hose." @@ -19612,7 +18933,7 @@ msgid_plural "faux fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "Eine lange Baumwollhose, die mit warmem Kunstpelz gefüttert wurde." @@ -19623,7 +18944,7 @@ msgid_plural "leather pants" msgstr[0] "Lederhose" msgstr[1] "Lederhosen" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -19638,7 +18959,7 @@ msgid_plural "ski pants" msgstr[0] "Skihose" msgstr[1] "Skihosen" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "Eine Hose für Ski Alpin." @@ -19649,7 +18970,7 @@ msgid_plural "police breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -19662,7 +18983,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "Briefträgershorts" msgstr[1] "Briefträgershorts" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "Eine dunkelblaue Shorts, so wie sie von Briefträgern benutzt wird." @@ -19673,7 +18994,7 @@ msgid_plural "shorts" msgstr[0] "Shorts" msgstr[1] "Shorts" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "Eine Khahi-Shorts." @@ -19684,7 +19005,7 @@ msgid_plural "cargo shorts" msgstr[0] "Cargoshorts" msgstr[1] "Cargoshorts" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "Shorts mit Taschen, die akzeptablen Lagerplatz bieten." @@ -19695,7 +19016,7 @@ msgid_plural "denim shorts" msgstr[0] "kurze Jeanshose" msgstr[1] "kurze Jeanshosen" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -19760,7 +19081,7 @@ msgid_plural "striped pants" msgstr[0] "gestreifte Hose" msgstr[1] "gestreifte Hosen" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "Eine Hose mit horizontalen schwarzen und weißen Streifen." @@ -19791,7 +19112,7 @@ msgid_plural "army winter pants" msgstr[0] "Armeewinterhose" msgstr[1] "Armeewinterhosen" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -21024,67 +20345,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "Überlebendenreisetasche" -msgstr[1] "Überlebendenreisetaschen" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Eine selbstgefertigte schwere Reisetasche. Widerstandsfähig und sorgfältig " -"so angefertigt, dass sie so viele Sachen wie möglich beinhalten kann." - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "Überlebendenrucksack" -msgstr[1] "Überlebendenrucksäcke" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" -"Ein selbstgefertigter Rucksack. Widerstandsfähig und sorgfältig so " -"angefertigt, dass er so viele Sachen wie möglich beinhalten kann." - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "Überlebendenrucksack" -msgstr[1] "Überlebendenrucksäcke" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Ein selbstgefertigter schwerer Rucksack. Widerstandsfähig und sorgfältig so " -"angefertigt, dass er so viele Sachen wie möglich beinhalten kann." - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "Überlebendenläuferrucksack" -msgstr[1] "Überlebendenläuferrucksäcke" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" -"Ein selbstgefertigter leichtgewichtiger Läuferrucksack. Widerstandsfähig und" -" sorgfältig so angefertigt, dass er so viele Sachen wie möglich beinhalten " -"kann." - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -21544,33 +20804,6 @@ msgid_plural "XL plate armors" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "Nomadenkleidung" -msgstr[1] "Nomadenkleidungen" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "leichte Nomadenkleidung" -msgstr[1] "leichte Nomadenkleidungen" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -21616,8 +20849,8 @@ msgstr[1] "Spezialeinheitsrüstungen" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -21631,19 +20864,6 @@ msgstr[1] "Oyorois" msgid "An ornamental suit of Japanese samurai armor." msgstr "Eine dekorative japanische Samurai-Rüstung." -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "Sammlerausrüstung" -msgstr[1] "Sammlerausrüstungen" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -21784,57 +21004,6 @@ msgid_plural "XL entry suits" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "Überlebenden-Feuerschutzanzug" -msgstr[1] "Überlebenden-Feuerschutzanzüge" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" -"Schwere, selbstgebaute Verbundrüstung aus einer aufgeschnittenen " -"kugelsicheren Weste und einem verstärkten, schwer entflammbaren Nomex-" -"Overall. Schützt den Träger vor Feuer und vor den Elementen." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "Winterüberlebendenanzug" -msgstr[1] "Winterüberlebendenanzüge" - -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "gambeson" msgid_plural "gambesons" @@ -21851,12 +21020,32 @@ msgstr "" "oder anderer Rüstung getragen zu werden. Oder für sich alleine, falls du dir" " eine anständige Rüstung nicht leisten kannst." +#: lang/json/ARMOR_from_json.py +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for kevlar gambeson +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "XL gambeson" msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" +#: lang/json/ARMOR_from_json.py +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" +msgstr[0] "" +msgstr[1] "" + #: lang/json/ARMOR_from_json.py msgid "hazmat suit" msgid_plural "hazmat suits" @@ -21872,46 +21061,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "schwerer Überlebendenanzug" -msgstr[1] "schwere Überlebendenanzüge" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" -"Eine schwere, selbstgebaute Verbundrüstung aus einer verstärkten " -"kugelsicheren Weste und einem metallverstärktem Lederoverall. Schützt vor " -"den Elementen sowie vor Schaden." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "leichter Überlebendenanzug" -msgstr[1] "leichte Überlebendenanzüge" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" -"Eine leichte, handgefertigte Verbundrüstung aus einer zerschnittenen " -"kugelsicheren Weste und einem verstärktem Stoff-Overall. Schützt vor den " -"Elementen sowie vor Schaden." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -21980,21 +21129,6 @@ msgstr "" "Ein Ganzkörper-Stoffanzug. Lässt dich die Apokalypse wie ein Gentleman " "erleben." -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "Überlebendenanzug" -msgstr[1] "Überlebendenanzüge" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" -"Eine handgefertigte Verbundrüstung aus einer kugelsicheren Weste und einem " -"verstärkten Lederoverall. Schützt vor den Elementen sowie vor Schaden." - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -22004,11 +21138,9 @@ msgstr[1] "SWAT-Panzerungen" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" -"Ein schwarzer kugelsicherer gepanzerter Schutzanzug mit vielen Taschen. Auf " -"der Rückseite steht das Wort »SWAT«." #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -22025,45 +21157,6 @@ msgstr "" "Ein dicker Leder-Ganzkörperanzug zum Schutz bei der Motorradfahrt. Leicht " "und sehr bequem." -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"Eine warme und schwere handgefertigte Verbundrüstung aus einer verstärkten " -"kugelsicheren Weste und einem gefütterten Lederoverall. Schützt vor den " -"Elementen sowie vor Schaden." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "großer Überlebendenanzug" -msgstr[1] "große Überlebendenanzüge" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -22135,53 +21228,6 @@ msgstr[1] "Neoprenanzugskapuzen" msgid "A neoprene hood, commonly worn by divers." msgstr "Eine Neoprenanzugskapuze, üblicherweise von Tauchern getragen." -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "Überlebendentaucheranzugsmaske" -msgstr[1] "Überlebendentaucheranzugsmasken" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" -"Eine maßgeschneiderte gepanzerte Neopren- und Kevlarkapuze, sehr stark und " -"strapazierfähig." - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "Überlebendentaucheranzug" -msgstr[1] "Überlebendentaucheranzüge" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" -"Eine leichte, handgefertigte Verbundrüstung aus einer zerschnittenen " -"kugelsicheren Weste und einem Neoprentaucheranzug. Schützt vor den Elementen" -" sowie vor Schaden." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "Paar Überlebendentaucheranzugshandschuhe" -msgstr[1] "Paar Überlebendentaucheranzugshandschuhe" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" -"Ein Paar angepasste, mit Kevlar gepanzerte Neoprenhandschuhe, die so " -"modifiziert wurden, dass sie einfach zu tragen sind und gleichzeitig " -"maximalen Schutz unter extremen Bedingungen bieten." - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -22300,7 +21346,7 @@ msgid_plural "lorica segmentata" msgstr[0] "Lorica Segmentata" msgstr[1] "Lorica Segmentata" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -22474,7 +21520,7 @@ msgid_plural "tire leather armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -22536,25 +21582,6 @@ msgstr "" "Eine leichte, durchschusshemmende Weste. Dazu geeignet, unter Kleidung " "getragen zu werden." -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "leichte Überlebendenpanzerweste" -msgstr[1] "leichte Überlebendenpanzerwesten" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -22829,7 +21856,7 @@ msgid_plural "leotard" msgstr[0] "Leotard" msgstr[1] "Leotard" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -22930,7 +21957,7 @@ msgid_plural "French maid clothes" msgstr[0] "Französische-Magd-Kleidung" msgstr[1] "Französische-Magd-Kleidungen" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -23239,7 +22266,7 @@ msgid_plural "boxer briefs" msgstr[0] "Boxerslip" msgstr[1] "Boxerslips" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "Die uralte Frage: Boxershorts oder Slip? Deine Antwort: Ja." @@ -23250,7 +22277,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -23261,7 +22288,7 @@ msgid_plural "boxer shorts" msgstr[0] "Boxershorts" msgstr[1] "Boxershorts" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -23275,7 +22302,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -23288,7 +22315,7 @@ msgid_plural "boy shorts" msgstr[0] "Boyshorts" msgstr[1] "Boyshorts" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -23302,7 +22329,7 @@ msgid_plural "XL boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -23329,7 +22356,7 @@ msgid_plural "briefs" msgstr[0] "Unterhose" msgstr[1] "Unterhosen" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "" @@ -23511,7 +22538,7 @@ msgid_plural "panties" msgstr[0] "Höschen" msgstr[1] "Höschen" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -23580,7 +22607,7 @@ msgid_plural "tights" msgstr[0] "Strumpfhose" msgstr[1] "Strumpfhosen" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -23609,7 +22636,7 @@ msgid_plural "compression shorts" msgstr[0] "Kompressionsshorts" msgstr[1] "Kompressionsshorts" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -23653,858 +22680,1837 @@ msgstr "" "Vorführungen als Kostüm." #: lang/json/ARMOR_from_json.py -msgid "sheet" -msgid_plural "sheets" -msgstr[0] "Laken" -msgstr[1] "Laken" +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "Nomadenkleidung" +msgstr[1] "Nomadenkleidungen" -#. ~ Description for sheet +#. ~ Description for nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" -" a bunch of rags." -msgstr "" -"Ein großes Stofflaken, es könnte als Vorhang oder als Bettdecken benutzt " -"werden; oder es könnte für eine Menge Lumpen zerschnitten werden." - -#: lang/json/ARMOR_from_json.py -msgid "blanket" -msgid_plural "blankets" -msgstr[0] "Bettdecke" -msgstr[1] "Bettdecken" - -#. ~ Description for blanket -#: lang/json/ARMOR_from_json.py -msgid "Hiding under here will not protect you from the monsters." +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." msgstr "" -"Sich darunter zu verstecken wird dich nicht vor den Monstern schützen." #: lang/json/ARMOR_from_json.py -msgid "down-filled blanket" -msgid_plural "down-filled blankets" -msgstr[0] "Daunendecke" -msgstr[1] "Daunendecken" +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "leichte Nomadenkleidung" +msgstr[1] "leichte Nomadenkleidungen" -#. ~ Description for down-filled blanket +#. ~ Description for light nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"Hiding under here will not protect you from the monsters, but it'll keep you" -" warm." +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." msgstr "" -"Wenn du dich darunter versteckst, wird dich das nicht vor den Monstern " -"schützen, aber es hält dich warm." - -#: lang/json/ARMOR_from_json.py -msgid "fur blanket" -msgid_plural "fur blankets" -msgstr[0] "Pelzdecke" -msgstr[1] "Pelzdecken" - -#. ~ Description for fur blanket -#: lang/json/ARMOR_from_json.py -msgid "A heavy fur blanket that covers most of your body." -msgstr "Eine schwere Pelzdecke, die das Meiste deines Körpers bedeckt." #: lang/json/ARMOR_from_json.py -msgid "quilt" -msgid_plural "quilts" -msgstr[0] "Quilt" -msgstr[1] "Quilts" +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "Sammlerausrüstung" +msgstr[1] "Sammlerausrüstungen" -#. ~ Description for quilt +#. ~ Description for scavenger gear #: lang/json/ARMOR_from_json.py msgid "" -"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " -"cozy!" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "patchwork quilt" -msgid_plural "patchwork quilts" -msgstr[0] "Flickenquilt" -msgstr[1] "Flickenquilts" +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "leichter Überlebendenanzug" +msgstr[1] "leichte Überlebendenanzüge" -#. ~ Description for patchwork quilt +#. ~ Description for light survivor suit #: lang/json/ARMOR_from_json.py -msgid "A huge, patchwork wool quilt. Very, very warm." +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." msgstr "" +"Eine leichte, handgefertigte Verbundrüstung aus einer zerschnittenen " +"kugelsicheren Weste und einem verstärktem Stoff-Overall. Schützt vor den " +"Elementen sowie vor Schaden." #: lang/json/ARMOR_from_json.py -msgid "sleeping bag" -msgid_plural "sleeping bags" -msgstr[0] "Schlafsack" -msgstr[1] "Schlafsäcke" +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" +msgstr[1] "" -#. ~ Use action msg for sleeping bag. #: lang/json/ARMOR_from_json.py -msgid "You roll up the sleeping bag, preparing it for transport." -msgstr "" -"Du rollst deinen Schlafsack auf und bereitest ihn für den Transport vor." +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "Überlebendenanzug" +msgstr[1] "Überlebendenanzüge" -#. ~ Description for sleeping bag +#. ~ Description for survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A large sleeping bag that covers you head to toe. This one is medium " -"weight." +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." msgstr "" +"Eine handgefertigte Verbundrüstung aus einer kugelsicheren Weste und einem " +"verstärkten Lederoverall. Schützt vor den Elementen sowie vor Schaden." #: lang/json/ARMOR_from_json.py -msgid "cestus" -msgid_plural "cestuses" -msgstr[0] "Cestus" -msgstr[1] "Cestusse" +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "großer Überlebendenanzug" +msgstr[1] "große Überlebendenanzüge" -#. ~ Description for cestus +#. ~ Description for XL survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A leather hand and arm wrap incorporating metal plates over the knuckles to " -"improve punching power and defence." +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of studded gloves" -msgid_plural "pairs of studded gloves" -msgstr[0] "" -msgstr[1] "" +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "Winterüberlebendenanzug" +msgstr[1] "Winterüberlebendenanzüge" -#. ~ Description for pair of studded gloves +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "A pair of gloves with studded metal knuckles." +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" +"Eine warme und schwere handgefertigte Verbundrüstung aus einer verstärkten " +"kugelsicheren Weste und einem gefütterten Lederoverall. Schützt vor den " +"Elementen sowie vor Schaden." #: lang/json/ARMOR_from_json.py -msgid "impact knuckles" -msgid_plural "impact knuckles" +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of thick steel plates covering your proximal phalange. They are " -"strapped to your hands with metal braces." +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "skewer knuckles" -msgid_plural "skewer knuckles" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for XL winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A single sturdy spike protrudes 5cm from the back of your hand. They are " -"strapped to your hands with metal braces." +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "telescoping umbrella" -msgid_plural "telescoping umbrellas" -msgstr[0] "einschiebbarer Schirm" -msgstr[1] "einschiebbare Schirme" +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "Überlebendentaucheranzug" +msgstr[1] "Überlebendentaucheranzüge" -#. ~ Description for telescoping umbrella +#. ~ Description for survivor wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A telescoping umbrella which collapses down for easy storage, useful for " -"keeping dry when wielded." +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." msgstr "" -"Ein Schirm, der für die einfache Lagerung eingeschoben werden kann. Er ist " -"nützlich, um trocken zu bleiben, wenn er gehalten wird." +"Eine leichte, handgefertigte Verbundrüstung aus einer zerschnittenen " +"kugelsicheren Weste und einem Neoprentaucheranzug. Schützt vor den Elementen" +" sowie vor Schaden." #: lang/json/ARMOR_from_json.py -msgid "bag of holding" -msgid_plural "bags of holding" -msgstr[0] "" -msgstr[1] "" +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "Paar leichte Überlebendenstiefel" +msgstr[1] "Paar leichte Überlebendenstiefel" -#. ~ Description for bag of holding +#. ~ Description for pair of light survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A sleek, unfathomably-complicated machine covered in dozens of blinking " -"lights, worn on the back by sturdy faux-leather straps. An electrode " -"dangles from the back, attaching to your forehead. How it operates without " -"annihilating spacetime isn't quite clear, but a localized portal allows " -"things to be stored in an extradimensional space." +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium vest" -msgid_plural "titanium vests" +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for titanium vest +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "Paar Überlebendenstiefel" +msgstr[1] "Paar Überlebendenstiefel" + +#. ~ Description for pair of survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight armor vest made of pieces of titanium sewn together, with " -"cloth padding for comfort. Brittle against blunt force, but highly " -"resistant to cuts and corrosion." +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sentinel-lx cloak" -msgid_plural "sentinel-lx cloaks" -msgstr[0] "" -msgstr[1] "" +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "Paar große Überlebendenstiefel" +msgstr[1] "Paar große Überlebendenstiefel" -#. ~ Description for sentinel-lx cloak +#. ~ Description for pair of XL survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " -"unnatural shadow. Made from woven graphene, its lightweight and resistant, " -"but cannot be repaired" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL jeans" -msgid_plural "pairs of XL jeans" +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL jeans +#. ~ Description for pair of faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue jeans with two deep pockets." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work pants" -msgid_plural "pairs of XL work pants" +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" +#. ~ Description for pair of XL faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue work pants." +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "A pair of XL gray work pants." -msgstr "" +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "Paar Winterüberlebendenstiefel" +msgstr[1] "Paar Winterüberlebendenstiefel" +#. ~ Description for pair of winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL light-blue work pants." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work t-shirt" -msgid_plural "XL work t-shirts" +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL work t-shirt #: lang/json/ARMOR_from_json.py -msgid "A gray XL work t-shirt with a small front pocket." -msgstr "" +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "Paar Überlebendentaucheranzugsstiefel" +msgstr[1] "Paar Überlebendentaucheranzugsstiefel" +#. ~ Description for pair of survivor wetsuit boots #: lang/json/ARMOR_from_json.py -msgid "An XL blue work t-shirt with a small front pocket." +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "An XL gray work t-shirt with a small front pocket." -msgstr "" +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "Paar leichte Überlebendenhandschuhe" +msgstr[1] "Paar leichte Überlebendenhandschuhe" +#. ~ Description for pair of light survivor gloves #: lang/json/ARMOR_from_json.py -msgid "An XL light-blue work t-shirt with a small front pocket." +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Uplifted SWAT armor" -msgid_plural "Uplifted SWAT armors" +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for Uplifted SWAT armor -#: lang/json/ARMOR_from_json.py -msgid "" -"An extra large suit of black bulletproof armor with lots of pockets. The " -"word SWAT is emblazoned across the back. Specifically designed for Uplifted" -" officers such as Mastodons." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "empty XL ballistic vest" -msgid_plural "empty XL ballistic vests" -msgstr[0] "leere ballistische XL-Weste" -msgstr[1] "leere ballistische XL-Westen" +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for empty XL ballistic vest +#. ~ Description for pair of fingerless light survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"Oversized ballistic armor without any armor inserts. The soft armor plate " -"carrier is still protective but it won't stop high energy projectiles." +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." msgstr "" -"Übergroße ballistische Rüstung ohne Rüstungseinsätze. Der weiche " -"Panzerplattenträger ist immer noch schützend, stoppt aber keine " -"Hochenergieprojektile." #: lang/json/ARMOR_from_json.py -msgid "XL ESAPI ballistic vest" -msgid_plural "XL ESAPI ballistic vests" -msgstr[0] "ESAPI ballistische XL-Weste" -msgstr[1] "ESAPI ballistische XL-Westen" +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for XL ESAPI ballistic vest #: lang/json/ARMOR_from_json.py -msgid "Oversized ballistic armor with ESAPI ceramic armor plates." -msgstr "Übergroße ballistische Rüstung mit ESAPI-Keramik-Panzerplatten." +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" +#. ~ Description for pair of fingerless survivor gloves #: lang/json/ARMOR_from_json.py -msgid "pair of XL combat boots" -msgid_plural "pair of XL combat boots" -msgstr[0] "Paar extragroße Kampfstiefel" -msgstr[1] "Paar extragroße Kampfstiefel" +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} #: lang/json/ARMOR_from_json.py -msgid "Modern oversized reinforced tactical combat boots. Very durable." -msgstr "Moderne übergroße verstärkte taktische Kampfstiefel. Sehr langlebig." +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL tactical gloves" -msgid_plural "pair of XL tactical gloves" -msgstr[0] "Paar taktische XL-Handschuhe" -msgstr[1] "Paar taktische XL-Handschuhe" +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "Paar Überlebendenhandschuhe" +msgstr[1] "Paar Überlebendenhandschuhe" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " -"police and military units." +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." msgstr "" -"Ein Paar übergroße, verstärkte taktische Kevlar-Handschuhe. Wird häufig von " -"Polizei- und Militäreinheiten verwendet." #: lang/json/ARMOR_from_json.py -msgid "pair of Killophant gloves" -msgid_plural "pair of Killophant gloves" -msgstr[0] "Paar Killophant-Handschuhe" -msgstr[1] "Paar Killophant-Handschuhe" +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "Paar große Überlebendenhandschuhe" +msgstr[1] "Paar große Überlebendenhandschuhe" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of XL survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of reinforced Kevlar tactical gloves, specifically designed to " -"accommodate three-fingered Killophants. Thinner than regular oversized " -"tactical gloves." +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." msgstr "" -"Ein Paar verstärkte taktische Kevlar-Handschuhe, die speziell für " -"Killophanten mit drei Fingern entwickelt wurden. Dünner als normale " -"übergroße taktische Handschuhe." #: lang/json/ARMOR_from_json.py -msgid "XL leather belt" -msgid_plural "XL leather belts" -msgstr[0] "" -msgstr[1] "" +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "Paar Winterüberlebendenhandschuhe" +msgstr[1] "Paar Winterüberlebendenhandschuhe" -#. ~ Description for XL leather belt +#. ~ Description for pair of winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL leather belt. Useful for making your pair of pants fit if you need " -"really big pants." +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL police duty belt" -msgid_plural "XL police duty belts" +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL police duty belt -#: lang/json/ARMOR_from_json.py -msgid "" -"An XL black leather belt used by extremely large uplifted police officers. " -"It has several pouches and a holder for a baton." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL tactical full helmet" -msgid_plural "XL tactical full helmets" +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL tactical full helmet +#. ~ Description for pair of faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing massive black helmet that covers your entire face and " -"neck, providing excellent protection from all sorts of damage." +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leg ammo pouch" -msgid_plural "XL leg ammo pouches" +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL leg ammo pouch +#. ~ Description for pair of XL faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" -" two magazines close at hand." +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "crew jumpsuit" -msgid_plural "crew jumpsuits" -msgstr[0] "" -msgstr[1] "" +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "Paar Überlebendentaucheranzugshandschuhe" +msgstr[1] "Paar Überlebendentaucheranzugshandschuhe" -#. ~ Description for crew jumpsuit +#. ~ Description for pair of survivor wetsuit gloves #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " -"some freight hauling association or another. This one is a standard design " -"favored by spacers, with ample, easy access pockets." +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." msgstr "" +"Ein Paar angepasste, mit Kevlar gepanzerte Neoprenhandschuhe, die so " +"modifiziert wurden, dass sie einfach zu tragen sind und gleichzeitig " +"maximalen Schutz unter extremen Bedingungen bieten." #: lang/json/ARMOR_from_json.py -msgid "communications cap" -msgid_plural "communications caps" -msgstr[0] "" -msgstr[1] "" +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "Nomadenhaube" +msgstr[1] "Nomadenhauben" -#. ~ Description for communications cap +#. ~ Description for nomad cowl #: lang/json/ARMOR_from_json.py msgid "" -"A padded cotton cap built around an augmented reality headset. During " -"normal operation it would provide visual information about a ship subsystems" -" and a communications link with the rest of the crew, but severed from a " -"spaceship, only their hearing protection function retains any utility." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." msgstr "" +"Eine behelfsmäßige Haube, die auch die Augen bedeckt. Schützt vor Regen und " +"vor der Sonne. Ausgelegt für lange Reisen." #: lang/json/ARMOR_from_json.py -msgid "HERC rig" -msgid_plural "HERC rigs" +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" msgstr[0] "" msgstr[1] "" -#. ~ Description for HERC rig +#. ~ Description for nomad cowl XL #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " -"about in zero-g, Mars, the bottom of the Pacific, or other generally " -"inhospitable environments. It has several deep pockets, and two mounting " -"points for pressurized canisters or other large magazines." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cecalia wetsuit" -msgid_plural "cecalia wetsuits" -msgstr[0] "" -msgstr[1] "" +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "Überlebendenkapuze" +msgstr[1] "Überlebendenkapuzen" -#. ~ Description for cecalia wetsuit +#. ~ Description for survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " -"explorer suit with no head or tentacle protection." +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "combat wetsuit" -msgid_plural "combat wetsuits" -msgstr[0] "" -msgstr[1] "" +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "Winterüberlebendenkapuze" +msgstr[1] "Winterüberlebendenkapuzen" -#. ~ Description for combat wetsuit +#. ~ Description for winter survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " -"will provide some level of protection for deep dwellers." +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "nanomesh vest" -msgid_plural "nanomesh vests" +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for nanomesh vest +#. ~ Description for XL winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight nanomesh vest designed to face down many of the perils of " -"space travel. These vests are mass produced and often stacked in starship " -"lockers." +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "vacuum cast cuirass" -msgid_plural "vacuum cast cuirasses" -msgstr[0] "" -msgstr[1] "" +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "große Überlebendenkapuze" +msgstr[1] "große Überlebendenkapuzen" -#. ~ Description for vacuum cast cuirass +#. ~ Description for XL survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"This piece of armor harkens back to renaissance designs. It differs in that" -" it is cast as a single piece in deep space installations where conditions " -"can be controlled absolutely." +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "carbide raider's helmet" -msgid_plural "carbide raider's helmets" -msgstr[0] "" -msgstr[1] "" +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "leichte Überlebendenkapuze" +msgstr[1] "leichte Überlebendenkapuzen" -#. ~ Description for carbide raider's helmet +#. ~ Description for light survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"This helmet is designed for the individual that is worried about catching " -"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " -"environmental protection features, but it just might stop even the largest " -"of ballistic rounds." +msgid "A customized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "UICAS Point of Impact helmet" -msgid_plural "UICAS Point of Impact helmets" +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for UICAS Point of Impact helmet +#. ~ Description for XL light survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight black helmet that provides excellent protection from all sorts" -" of damage, unless it's airborne. UICAS makes the point of designing all " -"headgear whenever possible with clear faceplates, in order to provide a " -"human touch to all interactions." +"A customized and oversized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cold resistance cream" -msgid_plural "cold resistance creams" +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for cold resistance cream +#. ~ Description for winter faux fur survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"A thick layer of something that smells worse than walrus fat. But it keeps " -"you warm." +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "heat retention xtreme cream" -msgid_plural "heat retention xtreme creams" +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for heat retention xtreme cream +#. ~ Description for XL faux fur winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"The last word in cold snap protection designed to give short term protection" -" in the event of a suit breach in vacuum." +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium watch" -msgid_plural "titanium watches" -msgstr[0] "" -msgstr[1] "" +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "Überlebendentaucheranzugsmaske" +msgstr[1] "Überlebendentaucheranzugsmasken" -#. ~ Description for titanium watch +#. ~ Description for survivor wetsuit hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine watch made out of titanium. It is durable, light-weight " -"and water-resistant, an excellent watch to have in a hostile environment." +"A customized armored neoprene and Kevlar hood, very strong and durable." msgstr "" +"Eine maßgeschneiderte gepanzerte Neopren- und Kevlarkapuze, sehr stark und " +"strapazierfähig." #: lang/json/ARMOR_from_json.py -msgid "titanium ring" -msgid_plural "titanium rings" -msgstr[0] "" -msgstr[1] "" +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "Sammlerkapuze" +msgstr[1] "Sammlerkapuzen" -#. ~ Description for titanium ring +#. ~ Description for scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine ring made out of titanium. Made in a variety of styles " -"and finishes, they're valued for their durability." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." msgstr "" +"Eine stabile schützende Bundhaube, die bis runter zum Hals geht, " +"ausgestattet mit einem Atemgerät und Augenschutz. Für gefährliche " +"Plünderausflüge." #: lang/json/ARMOR_from_json.py -msgid "hazardous environment suit" -msgid_plural "hazardous environment suits" +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" msgstr[0] "" msgstr[1] "" -#. ~ Description for hazardous environment suit +#. ~ Description for XL scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"Developed for the exploration of alien planes, the lightweight, orange-black" -" HEV suit covers everything below the neck. While it possesses only modest " -"physical protection, it provides excellent protection from most " -"environmental hazards. A hatch in the front opens to provide a small amount" -" of storage." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "psychrophile handling gloves" -msgid_plural "psychrophile handling gloves" -msgstr[0] "" -msgstr[1] "" +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "leichte Überlebendencargohose" +msgstr[1] "leichte Überlebendencargohosen" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"These gloves are designed for handling organisms that live in extremely cold" -" temperatures. They can also be used to freeze your foes to death." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." msgstr "" +"Leichte, Kevlar-Cargohosen, die darauf ausgelegt sind, möglichst viel " +"Lagerplatz zu bieten. Robust und größtenteils wasserundurchlässig." #: lang/json/ARMOR_from_json.py -msgid "CRIT Engineering Suit" -msgid_plural "CRIT Engineering Suits" +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Engineering Suit +#. ~ Description for XL light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"An airtight, flexible suit of woven composite fibers complete with segmented" -" plates of armor. A complex system digitizes items in an individual pocket " -"universe for storage while built in joint-torsion ratchets generate the " -"necessary energy required to power the interface." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT face mask" -msgid_plural "CRIT face masks" -msgstr[0] "" -msgstr[1] "" +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "Überlebendencargohose" +msgstr[1] "Überlebendencargohosen" -#. ~ Description for CRIT face mask +#. ~ Description for survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A standard issue face mask, lined with Kevlar for extra protection. A few " -"filters provide decent environmental safety, but it was not intended for " -"extended use. It has a basic integrated HUD." +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT boots" -msgid_plural "pairs of CRIT boots" +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT boots +#. ~ Description for XL survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " -"hygienic during long-term missions while absorbing shock and heat from " -"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " -"protection as well. Decently heavy though" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT LA boots" -msgid_plural "pairs of CRIT LA boots" -msgstr[0] "" -msgstr[1] "" +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "Überlebendenstaubmantel" +msgstr[1] "Überlebendenstaubmäntel" -#. ~ Description for pair of CRIT LA boots +#. ~ Description for survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " -"variant was created for missions in warmer climates. The LA boots keep most" -" of the old features of the standard issue boots but trade in protection for" -" easier movement." +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." msgstr "" +"Ein mit Kevlar geschützter angepasster Staubmantel in Lebensgröße, der mit " +"Taschen und Einsätzen überzogen ist. Komfortabel, stabil und großartig zum " +"Lagern." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less gloves" -msgid_plural "pairs of CRIT fingertip-less gloves" +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT fingertip-less gloves +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "ärmelloser Überlebendenstaubmantel" +msgstr[1] "ärmellose Überlebendenstaubmäntel" + +#. ~ Description for sleeveless survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue gloves. Made with superalloy mesh for those with " -"gene-modding and/or mutations while still allowing greater manipulation of " -"items and moderate protection." +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." msgstr "" +"Ein angepasster mit Kevlar geschützter Staubmantel in Lebensgröße, der mit " +"Taschen und Einsätzen überzogen ist. Komfortabel, stabil und großartig zum " +"Lagern." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less liners" -msgid_plural "pairs of CRIT fingertip-less liners" -msgstr[0] "" -msgstr[1] "" +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "Überlebendentrenchcoat" +msgstr[1] "Überlebendentrenchcoats" -#. ~ Description for pair of CRIT fingertip-less liners +#. ~ Description for survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " -"for warmth and fingertip-less for those with gene-modding and/or mutations " -"while still allowing greater manipulation of items and moderate protection." +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." msgstr "" +"Ein mit Kevlar geschützter angepasster Trenchcoat, der mit Taschen und " +"Einsätzen überzogen ist. Komfortabel, stabil und großartig zum Lagern." #: lang/json/ARMOR_from_json.py -msgid "CRIT backpack" -msgid_plural "CRIT backpacks" -msgstr[0] "" -msgstr[1] "" +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "ärmelloser Überlebendentrenchcoat" +msgstr[1] "ärmellose Überlebendentrenchcoats" -#. ~ Description for CRIT backpack +#. ~ Description for sleeveless survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " -"pack strikes a fine balance between storage space and encumbrance and allows" -" a larger weapon to be holstered, drawing and holstering is still rather " -"awkward even with the magnetized clips, but practice helps." +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." msgstr "" +"Ein angepasster mit Kevlar geschützter Trenchcoat, der mit Taschen und " +"Einsätzen überzogen ist. Komfortabel, stabil und großartig zum Lagern von " +"Gegenständen." #: lang/json/ARMOR_from_json.py -msgid "CRIT chestrig" -msgid_plural "CRIT chestrigs" -msgstr[0] "" -msgstr[1] "" +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "Überlebendenreisetasche" +msgstr[1] "Überlebendenreisetaschen" -#. ~ Description for CRIT chestrig +#. ~ Description for survivor duffel bag #: lang/json/ARMOR_from_json.py msgid "" -"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " -"with light-armor padding." +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" +"Eine selbstgefertigte schwere Reisetasche. Widerstandsfähig und sorgfältig " +"so angefertigt, dass sie so viele Sachen wie möglich beinhalten kann." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT leg guards" -msgid_plural "pairs of CRIT leg guards" -msgstr[0] "" -msgstr[1] "" +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "Überlebendenrucksack" +msgstr[1] "Überlebendenrucksäcke" -#. ~ Description for pair of CRIT leg guards +#. ~ Description for survivor backpack #: lang/json/ARMOR_from_json.py msgid "" -"Leg armor for those who fight. Simple design and durable material allows " -"for easy movement and the padding keeps the legs safe and warm in colder " -"conditions." +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." msgstr "" +"Ein selbstgefertigter Rucksack. Widerstandsfähig und sorgfältig so " +"angefertigt, dass er so viele Sachen wie möglich beinhalten kann." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT arm guards" -msgid_plural "pairs of CRIT arm guards" -msgstr[0] "" -msgstr[1] "" +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "Überlebendenrucksack" +msgstr[1] "Überlebendenrucksäcke" -#. ~ Description for pair of CRIT arm guards +#. ~ Description for survivor rucksack #: lang/json/ARMOR_from_json.py msgid "" -"A pair of arm guards made from superalloy molded upon neoprene, and then " -"insulated with rubber. They are sturdy and will block attacks, but they are" -" ridiculously heavy." +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" +"Ein selbstgefertigter schwerer Rucksack. Widerstandsfähig und sorgfältig so " +"angefertigt, dass er so viele Sachen wie möglich beinhalten kann." #: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "Überlebendenläuferrucksack" +msgstr[1] "Überlebendenläuferrucksäcke" -#. ~ Description for CRIT web belt +#. ~ Description for survivor runner pack #: lang/json/ARMOR_from_json.py msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." msgstr "" +"Ein selbstgefertigter leichtgewichtiger Läuferrucksack. Widerstandsfähig und" +" sorgfältig so angefertigt, dass er so viele Sachen wie möglich beinhalten " +"kann." #: lang/json/ARMOR_from_json.py -msgid "CRIT infantry duster" -msgid_plural "CRIT infantry dusters" -msgstr[0] "" -msgstr[1] "" +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "Paar Überlebendenfeuerschutzschuhe" +msgstr[1] "Paar Überlebendenfeuerschutzschuhe" -#. ~ Description for CRIT infantry duster +#. ~ Description for pair of survivor fireboots #: lang/json/ARMOR_from_json.py msgid "" -"A thick full-length duster coat with rubber insulation. More than mildly " -"encumbering, but rather protective against any anti-infantry electrical " -"discharges from the robots. Has several pockets for storage." +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Armored Anomaly Suit" -msgid_plural "CRIT Armored Anomaly Suits" +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Armored Anomaly Suit +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "Paar schwere Überlebendenstiefel" +msgstr[1] "Paar schwere Überlebendenstiefel" + +#. ~ Description for pair of heavy survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A relatively simple suit of armor. A suit of woven composite fibers " -"combined with a cleansuit core and strategically placed segmented Kevlar " -"plates keep the suit light-weight and the one wearing it alive while " -"offering superb resistance to the elements and ambient radiation." +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT drop leg pouch" -msgid_plural "CRIT drop leg pouches" +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT drop leg pouch +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "Paar schwere Überlebendenhandschuhe" +msgstr[1] "Paar schwere Überlebendenhandschuhe" + +#. ~ Description for pair of heavy survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A set of pouches that can be worn on the thighs using buckled straps. This " -"variety is more compact and is favored by the C.R.I.T for its ease of use." +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Enforcer armor assembly" -msgid_plural "CRIT Enforcer armor assemblies" +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Enforcer armor assembly +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "Paar Überlebendenfeuerschutzhandschuhe" +msgstr[1] "Paar Überlebendenfeuerschutzhandschuhe" + +#. ~ Description for pair of survivor firegloves #: lang/json/ARMOR_from_json.py msgid "" -"A series of plates, guards and buckles which assemble into a suit of sturdy " -"body-armor which usually goes over other armor. Overlapping steel plates on" -" top of Kevlar plates cover vast expanses as the armor juts off in places so" -" it can deflect attacks. Built with the idea that comfort is less important" -" than safety, this heavy suit is difficult to move about in but highly " -"protective. Various adjustable connectors such as straps and clips hold it " -"together." +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT Enforcer docks" -msgid_plural "pairs of CRIT Enforcer docks" +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT Enforcer docks #: lang/json/ARMOR_from_json.py -msgid "" -"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " -"oversized feet which clamp down onto your own footwear keep your feet out of" -" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " -"designs, but they do seem to be worth using if you were to be in the middle " -"of a war zone." +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "Überlebendenfeuerkapuze" +msgstr[1] "Überlebendenfeuerkapuzen" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Soldier Suit" -msgid_plural "CRIT Soldier Suits" +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Soldier Suit +#. ~ Description for XL survivor firehood #: lang/json/ARMOR_from_json.py msgid "" -"A suit of modern body-armor. Strategically placed superalloy plates keep " -"the suit's weight minimal while Kevlar plates other areas and a lining of " -"soft neoprene pads areas for extra comfort. Most importantly, this can be " -"worn comfortably under other armor." +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Lone Wolf Series Armor" -msgid_plural "CRIT Lone Wolf Series Armors" -msgstr[0] "" +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "Überlebenden-Feuerschutzanzug" +msgstr[1] "Überlebenden-Feuerschutzanzüge" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" +"Schwere, selbstgebaute Verbundrüstung aus einer aufgeschnittenen " +"kugelsicheren Weste und einem verstärkten, schwer entflammbaren Nomex-" +"Overall. Schützt den Träger vor Feuer und vor den Elementen." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "schwerer Überlebendenanzug" +msgstr[1] "schwere Überlebendenanzüge" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" +"Eine schwere, selbstgebaute Verbundrüstung aus einer verstärkten " +"kugelsicheren Weste und einem metallverstärktem Lederoverall. Schützt vor " +"den Elementen sowie vor Schaden." + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "leichte Überlebendenpanzerweste" +msgstr[1] "leichte Überlebendenpanzerwesten" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "Überlebendengürtel" +msgstr[1] "Überlebendengürtel" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "Überlebendenbrille" +msgstr[1] "Überlebendenbrillen" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" +"Eine selbstgebaute gepanzerte Brille mit getönten Linsen. Sie ist bequem, " +"widerstandsfähig, und bietet ausgezeichneten Schutz vor Umweltgefahren." + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "Überlebendenharnisch" +msgstr[1] "Überlebendenharnische" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" +"Ein selbstgeschneiderter leichter Harnisch, der mit Beuteln überzogen ist " +"und mit einer eingenähten taktischen Schlinge für ein kleines Gewehr oder " +"einer ähnlichen Waffe ausgestattet ist. Langlebig und sorgfältig für hohen " +"Tragekomfort geschneidert. Aktiviere diesen Gegenstand, um deine Waffe zu " +"ziehen bzw. wieder einzustecken." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sheet" +msgid_plural "sheets" +msgstr[0] "Laken" +msgstr[1] "Laken" + +#. ~ Description for sheet +#: lang/json/ARMOR_from_json.py +msgid "" +"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" +" a bunch of rags." +msgstr "" +"Ein großes Stofflaken, es könnte als Vorhang oder als Bettdecken benutzt " +"werden; oder es könnte für eine Menge Lumpen zerschnitten werden." + +#: lang/json/ARMOR_from_json.py +msgid "blanket" +msgid_plural "blankets" +msgstr[0] "Bettdecke" +msgstr[1] "Bettdecken" + +#. ~ Description for blanket +#: lang/json/ARMOR_from_json.py +msgid "Hiding under here will not protect you from the monsters." +msgstr "" +"Sich darunter zu verstecken wird dich nicht vor den Monstern schützen." + +#: lang/json/ARMOR_from_json.py +msgid "down-filled blanket" +msgid_plural "down-filled blankets" +msgstr[0] "Daunendecke" +msgstr[1] "Daunendecken" + +#. ~ Description for down-filled blanket +#: lang/json/ARMOR_from_json.py +msgid "" +"Hiding under here will not protect you from the monsters, but it'll keep you" +" warm." +msgstr "" +"Wenn du dich darunter versteckst, wird dich das nicht vor den Monstern " +"schützen, aber es hält dich warm." + +#: lang/json/ARMOR_from_json.py +msgid "fur blanket" +msgid_plural "fur blankets" +msgstr[0] "Pelzdecke" +msgstr[1] "Pelzdecken" + +#. ~ Description for fur blanket +#: lang/json/ARMOR_from_json.py +msgid "A heavy fur blanket that covers most of your body." +msgstr "Eine schwere Pelzdecke, die das Meiste deines Körpers bedeckt." + +#: lang/json/ARMOR_from_json.py +msgid "quilt" +msgid_plural "quilts" +msgstr[0] "Quilt" +msgstr[1] "Quilts" + +#. ~ Description for quilt +#: lang/json/ARMOR_from_json.py +msgid "" +"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " +"cozy!" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "patchwork quilt" +msgid_plural "patchwork quilts" +msgstr[0] "Flickenquilt" +msgstr[1] "Flickenquilts" + +#. ~ Description for patchwork quilt +#: lang/json/ARMOR_from_json.py +msgid "A huge, patchwork wool quilt. Very, very warm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeping bag" +msgid_plural "sleeping bags" +msgstr[0] "Schlafsack" +msgstr[1] "Schlafsäcke" + +#. ~ Use action msg for sleeping bag. +#: lang/json/ARMOR_from_json.py +msgid "You roll up the sleeping bag, preparing it for transport." +msgstr "" +"Du rollst deinen Schlafsack auf und bereitest ihn für den Transport vor." + +#. ~ Description for sleeping bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A large sleeping bag that covers you head to toe. This one is medium " +"weight." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "cestus" +msgid_plural "cestuses" +msgstr[0] "Cestus" +msgstr[1] "Cestusse" + +#. ~ Description for cestus +#: lang/json/ARMOR_from_json.py +msgid "" +"A leather hand and arm wrap incorporating metal plates over the knuckles to " +"improve punching power and defence." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of studded gloves" +msgid_plural "pairs of studded gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of studded gloves +#: lang/json/ARMOR_from_json.py +msgid "A pair of gloves with studded metal knuckles." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "impact knuckles" +msgid_plural "impact knuckles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for impact knuckles +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of thick steel plates covering your proximal phalange. They are " +"strapped to your hands with metal braces." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "skewer knuckles" +msgid_plural "skewer knuckles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for skewer knuckles +#: lang/json/ARMOR_from_json.py +msgid "" +"A single sturdy spike protrudes 5cm from the back of your hand. They are " +"strapped to your hands with metal braces." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "telescoping umbrella" +msgid_plural "telescoping umbrellas" +msgstr[0] "einschiebbarer Schirm" +msgstr[1] "einschiebbare Schirme" + +#. ~ Description for telescoping umbrella +#: lang/json/ARMOR_from_json.py +msgid "" +"A telescoping umbrella which collapses down for easy storage, useful for " +"keeping dry when wielded." +msgstr "" +"Ein Schirm, der für die einfache Lagerung eingeschoben werden kann. Er ist " +"nützlich, um trocken zu bleiben, wenn er gehalten wird." + +#: lang/json/ARMOR_from_json.py +msgid "bag of holding" +msgid_plural "bags of holding" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bag of holding +#: lang/json/ARMOR_from_json.py +msgid "" +"A sleek, unfathomably-complicated machine covered in dozens of blinking " +"lights, worn on the back by sturdy faux-leather straps. An electrode " +"dangles from the back, attaching to your forehead. How it operates without " +"annihilating spacetime isn't quite clear, but a localized portal allows " +"things to be stored in an extradimensional space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "titanium vest" +msgid_plural "titanium vests" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for titanium vest +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight armor vest made of pieces of titanium sewn together, with " +"cloth padding for comfort. Brittle against blunt force, but highly " +"resistant to cuts and corrosion." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sentinel-lx cloak" +msgid_plural "sentinel-lx cloaks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sentinel-lx cloak +#: lang/json/ARMOR_from_json.py +msgid "" +"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " +"unnatural shadow. Made from woven graphene, its lightweight and resistant, " +"but cannot be repaired" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL jeans" +msgid_plural "pairs of XL jeans" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL jeans +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL blue jeans with two deep pockets." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL work pants" +msgid_plural "pairs of XL work pants" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL blue work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL gray work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL light-blue work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL work t-shirt" +msgid_plural "XL work t-shirts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL work t-shirt +#: lang/json/ARMOR_from_json.py +msgid "A gray XL work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL blue work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL gray work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL light-blue work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Uplifted SWAT armor" +msgid_plural "Uplifted SWAT armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Uplifted SWAT armor +#: lang/json/ARMOR_from_json.py +msgid "" +"An extra large suit of black bulletproof armor with lots of pockets. The " +"word SWAT is emblazoned across the back. Specifically designed for Uplifted" +" officers such as Mastodons." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "empty XL ballistic vest" +msgid_plural "empty XL ballistic vests" +msgstr[0] "leere ballistische XL-Weste" +msgstr[1] "leere ballistische XL-Westen" + +#. ~ Description for empty XL ballistic vest +#: lang/json/ARMOR_from_json.py +msgid "" +"Oversized ballistic armor without any armor inserts. The soft armor plate " +"carrier is still protective but it won't stop high energy projectiles." +msgstr "" +"Übergroße ballistische Rüstung ohne Rüstungseinsätze. Der weiche " +"Panzerplattenträger ist immer noch schützend, stoppt aber keine " +"Hochenergieprojektile." + +#: lang/json/ARMOR_from_json.py +msgid "XL ESAPI ballistic vest" +msgid_plural "XL ESAPI ballistic vests" +msgstr[0] "ESAPI ballistische XL-Weste" +msgstr[1] "ESAPI ballistische XL-Westen" + +#. ~ Description for XL ESAPI ballistic vest +#: lang/json/ARMOR_from_json.py +msgid "Oversized ballistic armor with ESAPI ceramic armor plates." +msgstr "Übergroße ballistische Rüstung mit ESAPI-Keramik-Panzerplatten." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL combat boots" +msgid_plural "pair of XL combat boots" +msgstr[0] "Paar extragroße Kampfstiefel" +msgstr[1] "Paar extragroße Kampfstiefel" + +#. ~ Description for pair of XL combat boots +#: lang/json/ARMOR_from_json.py +msgid "Modern oversized reinforced tactical combat boots. Very durable." +msgstr "Moderne übergroße verstärkte taktische Kampfstiefel. Sehr langlebig." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL tactical gloves" +msgid_plural "pair of XL tactical gloves" +msgstr[0] "Paar taktische XL-Handschuhe" +msgstr[1] "Paar taktische XL-Handschuhe" + +#. ~ Description for pair of XL tactical gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " +"police and military units." +msgstr "" +"Ein Paar übergroße, verstärkte taktische Kevlar-Handschuhe. Wird häufig von " +"Polizei- und Militäreinheiten verwendet." + +#: lang/json/ARMOR_from_json.py +msgid "pair of Killophant gloves" +msgid_plural "pair of Killophant gloves" +msgstr[0] "Paar Killophant-Handschuhe" +msgstr[1] "Paar Killophant-Handschuhe" + +#. ~ Description for pair of Killophant gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of reinforced Kevlar tactical gloves, specifically designed to " +"accommodate three-fingered Killophants. Thinner than regular oversized " +"tactical gloves." +msgstr "" +"Ein Paar verstärkte taktische Kevlar-Handschuhe, die speziell für " +"Killophanten mit drei Fingern entwickelt wurden. Dünner als normale " +"übergroße taktische Handschuhe." + +#: lang/json/ARMOR_from_json.py +msgid "XL leather belt" +msgid_plural "XL leather belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL leather belt +#: lang/json/ARMOR_from_json.py +msgid "" +"An XL leather belt. Useful for making your pair of pants fit if you need " +"really big pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL police duty belt" +msgid_plural "XL police duty belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL police duty belt +#: lang/json/ARMOR_from_json.py +msgid "" +"An XL black leather belt used by extremely large uplifted police officers. " +"It has several pouches and a holder for a baton." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL tactical full helmet" +msgid_plural "XL tactical full helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL tactical full helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"An all-encompassing massive black helmet that covers your entire face and " +"neck, providing excellent protection from all sorts of damage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL leg ammo pouch" +msgid_plural "XL leg ammo pouches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL leg ammo pouch +#: lang/json/ARMOR_from_json.py +msgid "" +"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" +" two magazines close at hand." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "crew jumpsuit" +msgid_plural "crew jumpsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for crew jumpsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " +"some freight hauling association or another. This one is a standard design " +"favored by spacers, with ample, easy access pockets." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "communications cap" +msgid_plural "communications caps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for communications cap +#: lang/json/ARMOR_from_json.py +msgid "" +"A padded cotton cap built around an augmented reality headset. During " +"normal operation it would provide visual information about a ship subsystems" +" and a communications link with the rest of the crew, but severed from a " +"spaceship, only their hearing protection function retains any utility." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "HERC rig" +msgid_plural "HERC rigs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for HERC rig +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " +"about in zero-g, Mars, the bottom of the Pacific, or other generally " +"inhospitable environments. It has several deep pockets, and two mounting " +"points for pressurized canisters or other large magazines." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "cecalia wetsuit" +msgid_plural "cecalia wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cecalia wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " +"explorer suit with no head or tentacle protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "combat wetsuit" +msgid_plural "combat wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for combat wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " +"will provide some level of protection for deep dwellers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nanomesh vest" +msgid_plural "nanomesh vests" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nanomesh vest +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight nanomesh vest designed to face down many of the perils of " +"space travel. These vests are mass produced and often stacked in starship " +"lockers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "vacuum cast cuirass" +msgid_plural "vacuum cast cuirasses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for vacuum cast cuirass +#: lang/json/ARMOR_from_json.py +msgid "" +"This piece of armor harkens back to renaissance designs. It differs in that" +" it is cast as a single piece in deep space installations where conditions " +"can be controlled absolutely." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "carbide raider's helmet" +msgid_plural "carbide raider's helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for carbide raider's helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"This helmet is designed for the individual that is worried about catching " +"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " +"environmental protection features, but it just might stop even the largest " +"of ballistic rounds." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "UICAS Point of Impact helmet" +msgid_plural "UICAS Point of Impact helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for UICAS Point of Impact helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight black helmet that provides excellent protection from all sorts" +" of damage, unless it's airborne. UICAS makes the point of designing all " +"headgear whenever possible with clear faceplates, in order to provide a " +"human touch to all interactions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "cold resistance cream" +msgid_plural "cold resistance creams" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cold resistance cream +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick layer of something that smells worse than walrus fat. But it keeps " +"you warm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "heat retention xtreme cream" +msgid_plural "heat retention xtreme creams" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for heat retention xtreme cream +#: lang/json/ARMOR_from_json.py +msgid "" +"The last word in cold snap protection designed to give short term protection" +" in the event of a suit breach in vacuum." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "titanium watch" +msgid_plural "titanium watches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for titanium watch +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick, masculine watch made out of titanium. It is durable, light-weight " +"and water-resistant, an excellent watch to have in a hostile environment." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "titanium ring" +msgid_plural "titanium rings" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for titanium ring +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick, masculine ring made out of titanium. Made in a variety of styles " +"and finishes, they're valued for their durability." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "hazardous environment suit" +msgid_plural "hazardous environment suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for hazardous environment suit +#: lang/json/ARMOR_from_json.py +msgid "" +"Developed for the exploration of alien planes, the lightweight, orange-black" +" HEV suit covers everything below the neck. While it possesses only modest " +"physical protection, it provides excellent protection from most " +"environmental hazards. A hatch in the front opens to provide a small amount" +" of storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "psychrophile handling gloves" +msgid_plural "psychrophile handling gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for psychrophile handling gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"These gloves are designed for handling organisms that live in extremely cold" +" temperatures. They can also be used to freeze your foes to death." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Engineering Suit" +msgid_plural "CRIT Engineering Suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Engineering Suit +#: lang/json/ARMOR_from_json.py +msgid "" +"An airtight, flexible suit of woven composite fibers complete with segmented" +" plates of armor. A complex system digitizes items in an individual pocket " +"universe for storage while built in joint-torsion ratchets generate the " +"necessary energy required to power the interface." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT face mask" +msgid_plural "CRIT face masks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT face mask +#: lang/json/ARMOR_from_json.py +msgid "" +"A standard issue face mask, lined with Kevlar for extra protection. A few " +"filters provide decent environmental safety, but it was not intended for " +"extended use. It has a basic integrated HUD." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT boots" +msgid_plural "pairs of CRIT boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " +"hygienic during long-term missions while absorbing shock and heat from " +"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " +"protection as well. Decently heavy though" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT LA boots" +msgid_plural "pairs of CRIT LA boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT LA boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " +"variant was created for missions in warmer climates. The LA boots keep most" +" of the old features of the standard issue boots but trade in protection for" +" easier movement." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT fingertip-less gloves" +msgid_plural "pairs of CRIT fingertip-less gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT fingertip-less gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue gloves. Made with superalloy mesh for those with " +"gene-modding and/or mutations while still allowing greater manipulation of " +"items and moderate protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT fingertip-less liners" +msgid_plural "pairs of CRIT fingertip-less liners" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT fingertip-less liners +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " +"for warmth and fingertip-less for those with gene-modding and/or mutations " +"while still allowing greater manipulation of items and moderate protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT backpack" +msgid_plural "CRIT backpacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " +"pack strikes a fine balance between storage space and encumbrance and allows" +" a larger weapon to be holstered, drawing and holstering is still rather " +"awkward even with the magnetized clips, but practice helps." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT chestrig" +msgid_plural "CRIT chestrigs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT chestrig +#: lang/json/ARMOR_from_json.py +msgid "" +"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " +"with light-armor padding." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT leg guards" +msgid_plural "pairs of CRIT leg guards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT leg guards +#: lang/json/ARMOR_from_json.py +msgid "" +"Leg armor for those who fight. Simple design and durable material allows " +"for easy movement and the padding keeps the legs safe and warm in colder " +"conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT arm guards" +msgid_plural "pairs of CRIT arm guards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT arm guards +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of arm guards made from superalloy molded upon neoprene, and then " +"insulated with rubber. They are sturdy and will block attacks, but they are" +" ridiculously heavy." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT infantry duster" +msgid_plural "CRIT infantry dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT infantry duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick full-length duster coat with rubber insulation. More than mildly " +"encumbering, but rather protective against any anti-infantry electrical " +"discharges from the robots. Has several pockets for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Armored Anomaly Suit" +msgid_plural "CRIT Armored Anomaly Suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Armored Anomaly Suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A relatively simple suit of armor. A suit of woven composite fibers " +"combined with a cleansuit core and strategically placed segmented Kevlar " +"plates keep the suit light-weight and the one wearing it alive while " +"offering superb resistance to the elements and ambient radiation." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT drop leg pouch" +msgid_plural "CRIT drop leg pouches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT drop leg pouch +#: lang/json/ARMOR_from_json.py +msgid "" +"A set of pouches that can be worn on the thighs using buckled straps. This " +"variety is more compact and is favored by the C.R.I.T for its ease of use." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Enforcer armor assembly" +msgid_plural "CRIT Enforcer armor assemblies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Enforcer armor assembly +#: lang/json/ARMOR_from_json.py +msgid "" +"A series of plates, guards and buckles which assemble into a suit of sturdy " +"body-armor which usually goes over other armor. Overlapping steel plates on" +" top of Kevlar plates cover vast expanses as the armor juts off in places so" +" it can deflect attacks. Built with the idea that comfort is less important" +" than safety, this heavy suit is difficult to move about in but highly " +"protective. Various adjustable connectors such as straps and clips hold it " +"together." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT Enforcer docks" +msgid_plural "pairs of CRIT Enforcer docks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT Enforcer docks +#: lang/json/ARMOR_from_json.py +msgid "" +"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " +"oversized feet which clamp down onto your own footwear keep your feet out of" +" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " +"designs, but they do seem to be worth using if you were to be in the middle " +"of a war zone." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Soldier Suit" +msgid_plural "CRIT Soldier Suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Soldier Suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A suit of modern body-armor. Strategically placed superalloy plates keep " +"the suit's weight minimal while Kevlar plates other areas and a lining of " +"soft neoprene pads areas for extra comfort. Most importantly, this can be " +"worn comfortably under other armor." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Lone Wolf Series Armor" +msgid_plural "CRIT Lone Wolf Series Armors" +msgstr[0] "" msgstr[1] "" #. ~ Description for CRIT Lone Wolf Series Armor @@ -24537,7 +24543,7 @@ msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -24550,7 +24556,7 @@ msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -24593,6 +24599,12 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -24741,7 +24753,7 @@ msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -25228,7 +25240,7 @@ msgid_plural "freerunner's boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -25300,7 +25312,7 @@ msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -25315,7 +25327,7 @@ msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -25344,7 +25356,7 @@ msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -25402,7 +25414,7 @@ msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -25460,7 +25472,7 @@ msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -25471,7 +25483,7 @@ msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -25569,7 +25581,7 @@ msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -25580,7 +25592,7 @@ msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -25665,16 +25677,18 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "Armlegierungsplattierungs-KBM" -msgstr[1] "Armlegierungsplattierungs-KBMs" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -25692,42 +25706,35 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" -msgstr[0] "Kopflegierungsplattierungs-KBM" -msgstr[1] "Kopflegierungsplattierungs-KBMs" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" -msgstr[0] "Beinlegierungsplattierungs-KBM" -msgstr[1] "Beinlegierungsplattierungs-KBMs" - -#. ~ Description for Legs Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" -msgstr[0] "Torsolegierungsplattierungs-KBM" -msgstr[1] "Torsolegierungsplattierungs-KBMs" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -26453,7 +26460,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "Stromspeicher-KBM Mk. II" msgstr[1] "Stromspeicher-KBMs Mk. II" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -26884,7 +26891,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "Quietschende Knöchel" msgstr[1] "Quietschende Knöchel" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -27098,7 +27105,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "Selbsteinrastende Daumen" msgstr[1] "Selbsteinrastende Daumen" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -28486,7 +28493,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "Notizen eines Messerkämpfers" msgstr[1] "Notizen eines Messerkämpfers" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -28761,7 +28768,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "Pläne für eine Radiosender-Verstärker-Modifikation" msgstr[1] "Pläne für eine Radiosender-Verstärker-Modifikation" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -28805,7 +28812,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -28820,7 +28827,7 @@ msgid_plural "schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -28828,9 +28835,9 @@ msgstr[1] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -28846,7 +28853,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -28861,7 +28868,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -28876,7 +28883,7 @@ msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -28890,7 +28897,7 @@ msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -28904,7 +28911,7 @@ msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -28918,7 +28925,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -28932,7 +28939,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -28946,7 +28953,7 @@ msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -28960,7 +28967,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -28974,7 +28981,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -28988,7 +28995,7 @@ msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -29003,7 +29010,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -29018,7 +29025,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -29032,7 +29039,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -29711,7 +29718,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "Der Geist des Aikido" msgstr[1] "Der Geist des Aikido" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "Ein vollständiger Führer über Aikido." @@ -29722,7 +29729,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "Praktischer Pugilismus" msgstr[1] "Praktischer Pugilismus" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -29736,7 +29743,7 @@ msgid_plural "Capoeira 100" msgstr[0] "Capoeira für Anfänger" msgstr[1] "Capoeira für Anfänger" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "Ein kompletter Führer über Caopeira." @@ -29747,7 +29754,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "Das Tausendfüßler-Lu-Feng" msgstr[1] "Das Tausendfüßler-Lu-Feng" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "Ein vollständiger Führer über Tausendfüßler-Kung-Fu." @@ -29758,7 +29765,7 @@ msgid_plural "The Red Crane" msgstr[0] "Der rote Kranich" msgstr[1] "Der rote Kranich" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "Ein vollständiger Führer über Kranich-Kung-Fu." @@ -29769,7 +29776,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "Der Jadedrache" msgstr[1] "Der rote Kranich" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "Ein vollständiger Führer über Drachen-Kung-Fu." @@ -29780,7 +29787,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "Eskrima-Praxis" msgstr[1] "Eskrima-Praxis" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "Ein vollständiger Führer über Eskrima." @@ -29791,7 +29798,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "Der Moderne Fechter" msgstr[1] "Der Moderne Fechter" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "Ein vollständiger Führer über das Fechten." @@ -29802,7 +29809,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "Kodokan-Judo" msgstr[1] "Kodokan-Judo" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "Ein vollständiger Führer über Judo." @@ -29813,7 +29820,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "Das Shotokan-Karate-Handbuch" msgstr[1] "Das Shotokan-Karate-Handbuch" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "Ein vollständiger Führer über Shotokan-Karate." @@ -29824,7 +29831,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "Krav Maga komplett" msgstr[1] "Krav Maga komplett" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "Ein vollständiger Führer über Krav Maga." @@ -29835,7 +29842,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "Der taube Leopard" msgstr[1] "Der taube Leopard" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "Ein vollständiger Führer über Leoparden-Kung-Fu." @@ -29846,7 +29853,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "Das Echsen-Kuo-Chui" msgstr[1] "Das Echsen-Kuo-Chui" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "Ein vollständiger Führer über Echsen-Kung-Fu." @@ -29857,7 +29864,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "Muay Thai ultimativ" msgstr[1] "Muay Thai ultimativ" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "Ein vollständiger Führer über Muay Thai." @@ -29868,7 +29875,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "Die Essenz des Ninjutsu" msgstr[1] "Die Essenz des Ninjutsu" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "Ein vollständiger Führer über Ninjutsu." @@ -29879,7 +29886,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "Das Buch der fünf Ringe" msgstr[1] "Das Buch der fünf Ringe" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -29894,7 +29901,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "Der moderne Pankratiast" msgstr[1] "Der moderne Pankratiast" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "Ein vollständiger Führer über Pankration." @@ -29905,7 +29912,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "Das Skorpions-Sun-Chien" msgstr[1] "Das Skorpions-Sun-Chien" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "Ein vollständiger Führer über Skorpions-Kung-Fu." @@ -29916,7 +29923,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "Der indonesiche Krieger" msgstr[1] "Der indonesiche Krieger" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "Ein vollständiger Führer über Pencak Silat." @@ -29927,7 +29934,7 @@ msgid_plural "The Black Snake" msgstr[0] "Die schwarze Schlange" msgstr[1] "Die schwarze Schlange" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "Ein vollständiger Führer über Schlangen-Kung-Fu." @@ -29938,7 +29945,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "Offizielles Taekwondo-Trainingshandbuch" msgstr[1] "Offizielles Taekwondo-Trainingshandbuch" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "Ein vollständiger Führer über Taekwondo." @@ -29949,7 +29956,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "Eins mit dem Dao werden" msgstr[1] "Eins mit dem Dao werden" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "Ein kompletter Führer über Taijiquan." @@ -29960,7 +29967,7 @@ msgid_plural "The White Tiger" msgstr[0] "Der weiße Tiger" msgstr[1] "Der weiße Tiger" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "Ein vollständiger Führer über Tiger-Kung-Fu." @@ -29971,7 +29978,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "Das Kröten Lo-Mang" msgstr[1] "Das Kröten Lo-Mang" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "Ein vollständiger Führer über Kröten-Kung-Fu." @@ -29982,7 +29989,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "Das Viper-Wei-Pai" msgstr[1] "Das Viper-Wei-Pai" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "Ein vollständiger Führer über Viper-Kung-Fu." @@ -29993,7 +30000,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "Zui Quan und du" msgstr[1] "Zui Quan und du" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "Ein vollständiger Führer über Zui Quan." @@ -30004,7 +30011,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "Der Weg des Speers" msgstr[1] "Der Weg des Speers" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "Ein vollständiger Führer über Sōjutsu." @@ -30015,7 +30022,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -30027,7 +30034,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -30041,7 +30048,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -30216,7 +30223,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "Ranch-Prospekt" msgstr[1] "Ranch-Prospekte" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -31151,7 +31158,7 @@ msgid_plural "patient treatment records" msgstr[0] "Patientenakte" msgstr[1] "Patientenakten" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -31164,7 +31171,7 @@ msgid_plural "national weather transcripts" msgstr[0] "nationale Wettertransskripte" msgstr[1] "nationale Wettertransskripte" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "Alte Wetteraufzeichnungen sind in etwa so interessant wie Steine." @@ -34773,7 +34780,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -34788,7 +34795,7 @@ msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -34803,7 +34810,7 @@ msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -34818,7 +34825,7 @@ msgid_plural "tank drone schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -34833,7 +34840,7 @@ msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -35071,7 +35078,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -35082,7 +35089,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -35093,7 +35100,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -35106,7 +35113,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -35117,7 +35124,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -35130,7 +35137,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -35144,7 +35151,7 @@ msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -35155,7 +35162,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -35168,7 +35175,7 @@ msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -35179,7 +35186,7 @@ msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -35206,6 +35213,21 @@ msgstr[1] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -37286,7 +37308,7 @@ msgid_plural "bird litter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -37344,14 +37366,14 @@ msgid_plural "bleach" msgstr[0] "Bleichmittel" msgstr[1] "Bleichmittel" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -37366,7 +37388,7 @@ msgid_plural "ammonia" msgstr[0] "Ammoniak" msgstr[1] "Ammoniak" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -37381,7 +37403,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "Flüssigdünger" msgstr[1] "Flüssigdünger" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -37392,7 +37414,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "Handelsdünger" msgstr[1] "Handelsdünger" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -37403,7 +37425,7 @@ msgid_plural "fungicide" msgstr[0] "Fungizid" msgstr[1] "Fungizid" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -37416,7 +37438,7 @@ msgid_plural "insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -37429,7 +37451,7 @@ msgid_plural "salt water" msgstr[0] "Salzwasser" msgstr[1] "Salzwasser" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "Wasser mit Salz. Nicht zum Trinken geeignet." @@ -37440,7 +37462,7 @@ msgid_plural "soapy water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -37462,7 +37484,7 @@ msgid_plural "sulfuric acid" msgstr[0] "Schwefelsäure" msgstr[1] "Schwefelsäure" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -37481,7 +37503,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "Salzsäure" msgstr[1] "Salzsäure" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -37499,7 +37521,7 @@ msgid_plural "nitric acid" msgstr[0] "Salpetersäure" msgstr[1] "Salpetersäure" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -37540,7 +37562,7 @@ msgid_plural "sewage water" msgstr[0] "Abwasser" msgstr[1] "Abwasser" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -37551,7 +37573,7 @@ msgid_plural "lye" msgstr[0] "Lauge" msgstr[1] "Lauge" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -37564,7 +37586,7 @@ msgid_plural "ether" msgstr[0] "Äther" msgstr[1] "Äther" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -37579,7 +37601,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -37594,7 +37616,7 @@ msgid_plural "chloroform" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -37608,7 +37630,7 @@ msgid_plural "phenol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -37624,7 +37646,7 @@ msgid_plural "glycerol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -37637,7 +37659,7 @@ msgid_plural "peptone broth powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -37651,7 +37673,7 @@ msgid_plural "agar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -37666,7 +37688,7 @@ msgid_plural "acrylamide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -37679,7 +37701,7 @@ msgid_plural "acetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -37692,7 +37714,7 @@ msgid_plural "formic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -37705,7 +37727,7 @@ msgid_plural "latex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -37716,7 +37738,7 @@ msgid_plural "citric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -37793,13 +37815,24 @@ msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -37844,7 +37877,7 @@ msgid_plural "marloss wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -37855,7 +37888,7 @@ msgid_plural "Riesling" msgstr[0] "Riesling" msgstr[1] "Rieslinge" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "Ein Schaum- und Weißwein, gemacht aus der weltnobelsten Weintraube." @@ -37866,7 +37899,7 @@ msgid_plural "Chardonnay" msgstr[0] "Chardonnay" msgstr[1] "Chardonnays" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "Amerikas beliebtester Wein, und das aus gutem Grund." @@ -37877,7 +37910,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "Cabernet Sauvignon" msgstr[1] "Cabernet Sauvignons" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -37892,7 +37925,7 @@ msgid_plural "pinot noir" msgstr[0] "Spätburgunder" msgstr[1] "Spätburgunder" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -37907,7 +37940,7 @@ msgid_plural "marsala" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -37918,7 +37951,7 @@ msgid_plural "vermouth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -37931,7 +37964,7 @@ msgid_plural "barley wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -37942,7 +37975,7 @@ msgid_plural "whiskey" msgstr[0] "Whisky" msgstr[1] "Whiskys" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -37956,7 +37989,7 @@ msgid_plural "vodka" msgstr[0] "Wodka" msgstr[1] "Wodkas" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -37971,7 +38004,7 @@ msgid_plural "gin" msgstr[0] "Gin" msgstr[1] "Gin" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -37986,7 +38019,7 @@ msgid_plural "rum" msgstr[0] "Rum" msgstr[1] "Rum" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -37999,7 +38032,7 @@ msgid_plural "tequila" msgstr[0] "Tequila" msgstr[1] "Tequila" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -38015,7 +38048,7 @@ msgid_plural "triple sec" msgstr[0] "Blauer Curaçao" msgstr[1] "Blauer Curaçao" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -38028,7 +38061,7 @@ msgid_plural "cheap wine" msgstr[0] "billiger Wein" msgstr[1] "billiger Wein" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "Sehr billiger gespriteter Wein." @@ -38039,7 +38072,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "starker Alkoholmix" msgstr[1] "starker Alkoholmix" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -38051,7 +38084,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "schwacher Alkoholmix" msgstr[1] "schwacher Alkoholmix" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -38063,7 +38096,7 @@ msgid_plural "fruit wine" msgstr[0] "Obstwein" msgstr[1] "Obstwein" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -38076,7 +38109,7 @@ msgid_plural "brandy" msgstr[0] "Weinbrand" msgstr[1] "Weinbrand" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -38091,7 +38124,7 @@ msgid_plural "Irish coffee" msgstr[0] "Irish Coffee" msgstr[1] "Irish Coffee" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -38106,7 +38139,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "Long Island Iced Tea" msgstr[1] "Long Island Iced Tea" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -38139,7 +38172,7 @@ msgid_plural "wild apple" msgstr[0] "Wild Apple" msgstr[1] "Wild Apple" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "Wie Apfelsaft, nur mit Wodka." @@ -38150,7 +38183,7 @@ msgid_plural "rum & cola" msgstr[0] "Rum und Cola" msgstr[1] "Rum und Cola" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -38163,7 +38196,7 @@ msgid_plural "beer" msgstr[0] "Bier" msgstr[1] "Bier" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -38179,7 +38212,7 @@ msgid_plural "spiced mead" msgstr[0] "gewürzter Met" msgstr[1] "gewürzter Met" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -38193,7 +38226,7 @@ msgid_plural "dandelion wine" msgstr[0] "Löwenzahnwein" msgstr[1] "Löwenzahnwein" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -38208,7 +38241,7 @@ msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -38219,7 +38252,7 @@ msgid_plural "pine wine" msgstr[0] "Kiefernwein" msgstr[1] "Kiefernwein" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -38234,7 +38267,7 @@ msgid_plural "homebrew beer" msgstr[0] "selbstgebrautes Bier" msgstr[1] "selbstgebrautes Bier" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -38247,7 +38280,7 @@ msgid_plural "moonshine" msgstr[0] "selbstgemachter Schnaps" msgstr[1] "selbstgemachter Schnaps" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -38261,7 +38294,7 @@ msgid_plural "European pilsner" msgstr[0] "Pilsener" msgstr[1] "Pilsener" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -38276,7 +38309,7 @@ msgid_plural "American pale ale" msgstr[0] "American Pale Ale" msgstr[1] "American Pale Ale" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -38291,7 +38324,7 @@ msgid_plural "India pale ale" msgstr[0] "India Pale Ale" msgstr[1] "India Pale Ale" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -38306,7 +38339,7 @@ msgid_plural "stout" msgstr[0] "Starkbier" msgstr[1] "Starkbier" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -38319,7 +38352,7 @@ msgid_plural "Belgian ale" msgstr[0] "Belgisches Bier" msgstr[1] "Belgisches Bier" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -38334,7 +38367,7 @@ msgid_plural "imperial stout" msgstr[0] "Imperial Stout" msgstr[1] "Imperial Stout" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -38383,7 +38416,7 @@ msgid_plural "single malt whiskey" msgstr[0] "Single-Malt-Whisky" msgstr[1] "Single-Malt-Whisky" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "Nur der beste Whisky, frisch gezapft." @@ -38394,7 +38427,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -38405,7 +38438,7 @@ msgid_plural "cheap whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -38416,7 +38449,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -38427,7 +38460,7 @@ msgid_plural "sherry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -38439,7 +38472,7 @@ msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -38452,7 +38485,7 @@ msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -38463,7 +38496,7 @@ msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "Dies schmeckt eindeutig wie ein Landstreicherdrink." @@ -38474,7 +38507,7 @@ msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -38490,7 +38523,7 @@ msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -38592,7 +38625,7 @@ msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -38603,7 +38636,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -38614,7 +38647,7 @@ msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -38627,7 +38660,7 @@ msgid_plural "sourdough bread" msgstr[0] "Sauerteigbrot" msgstr[1] "Sauerteigbrote" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -38642,7 +38675,7 @@ msgid_plural "flatbread" msgstr[0] "Fladenbrot" msgstr[1] "Fladenbrote" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "Einfaches ungesäuertes Brot." @@ -38653,7 +38686,7 @@ msgid_plural "bread" msgstr[0] "Brot" msgstr[1] "Brote" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "Gesund und füllend." @@ -38664,7 +38697,7 @@ msgid_plural "toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -38677,7 +38710,7 @@ msgid_plural "buttered toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -38688,7 +38721,7 @@ msgid_plural "jam toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -38701,7 +38734,7 @@ msgid_plural "peanut butter toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -38713,7 +38746,7 @@ msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -38724,7 +38757,7 @@ msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -38737,7 +38770,7 @@ msgid_plural "cornbread" msgstr[0] "Maisbrot" msgstr[1] "Maisbrote" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "Gesundes und stopfendes Maisbrot." @@ -38772,7 +38805,7 @@ msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -38798,7 +38831,7 @@ msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -38815,7 +38848,7 @@ msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -38826,7 +38859,7 @@ msgid_plural "hallula" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -39109,18 +39142,18 @@ msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -39131,8 +39164,8 @@ msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -39147,14 +39180,14 @@ msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -39165,7 +39198,7 @@ msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -39193,7 +39226,7 @@ msgid_plural "cooked fish" msgstr[0] "gekochter Fisch" msgstr[1] "gekochte Fische" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "Ein frisch gekochter Fisch. Sehr nahrhaft." @@ -39299,7 +39332,7 @@ msgstr "" "Frisch geschlachtetes Fleisch. Du könntest es roh essen, gekocht schmeckt es" " aber besser." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -39404,7 +39437,7 @@ msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -39443,7 +39476,7 @@ msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -39490,7 +39523,7 @@ msgid_plural "butchery refuse" msgstr[0] "Schlachtabfall" msgstr[1] "Schlachtabfälle" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -39585,7 +39618,7 @@ msgid_plural "cooked offal" msgstr[0] "gekochte Innereien" msgstr[1] "gekochte Innereien" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -39602,7 +39635,7 @@ msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -39613,7 +39646,7 @@ msgid_plural "pickled offal" msgstr[0] "eingelegte Innereien" msgstr[1] "eingelegte Innereien" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -39630,7 +39663,7 @@ msgid_plural "canned offal" msgstr[0] "Doseninnereien" msgstr[1] "Doseninnereien" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -39668,31 +39701,28 @@ msgid_plural "meat jerky" msgstr[0] "Dörrfleisch" msgstr[1] "Dörrfleisch" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "Dörrmenschenfleisch" msgstr[1] "Dörrmenschenfleisch" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -39706,7 +39736,7 @@ msgid_plural "salted fish" msgstr[0] "Salzfisch" msgstr[1] "Salzfische" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -39720,33 +39750,27 @@ msgid_plural "smoked meats" msgstr[0] "Rauchfleisch" msgstr[1] "Rauchfleisch" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -39770,7 +39794,7 @@ msgid_plural "smoked fish" msgstr[0] "Räucherfisch" msgstr[1] "Räucherfische" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -39834,7 +39858,7 @@ msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -39889,7 +39913,7 @@ msgid_plural "raw brains" msgstr[0] "Rohes Gehirn" msgstr[1] "Rohe Gehirne" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -39900,7 +39924,7 @@ msgid_plural "cooked brains" msgstr[0] "Gekochtes Gehirn" msgstr[1] "Gekochte Gehirne" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -39987,7 +40011,7 @@ msgid "Normally a delicacy, it needs a little… something." msgstr "" "Normalerweise eine Delikatesse, es fehlt aber noch das gewisse Etwas. " -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "Blut, vermutlich das eines Menschen. Widerwärtig!" @@ -40163,7 +40187,7 @@ msgstr "" "Fleisch, das offensichtlich ungesund ist. Du könntest es essen, aber das " "würde dich vergiften." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -40440,7 +40464,7 @@ msgid_plural "alien fronds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -40545,7 +40569,7 @@ msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -40556,7 +40580,7 @@ msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -40594,13 +40618,38 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -40614,7 +40663,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -40627,7 +40676,7 @@ msgid_plural "cereal" msgstr[0] "Müslis" msgstr[1] "Müslis" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -40638,7 +40687,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -40650,7 +40699,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -40663,7 +40712,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -40676,7 +40725,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -40689,7 +40738,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -40702,7 +40751,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -40728,7 +40777,7 @@ msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -40754,7 +40803,7 @@ msgid_plural "wheat cereal" msgstr[0] "Weizenmüsli" msgstr[1] "Weizenmüslis" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -40782,7 +40831,7 @@ msgid_plural "milk" msgstr[0] "Milch" msgstr[1] "Milch" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -40794,7 +40843,7 @@ msgid_plural "chocolate milk" msgstr[0] "Schokoladenmilch" msgstr[1] "Schokoladenmilch" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -40805,7 +40854,7 @@ msgid_plural "reconstituted milk" msgstr[0] "Rekonstituierte Milch" msgstr[1] "Rekonstituierte Milch" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -40818,7 +40867,7 @@ msgid_plural "raw milk" msgstr[0] "Rohmilch" msgstr[1] "Rohmilch" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -40838,7 +40887,7 @@ msgid_plural "shelf stable milk" msgstr[0] "H-Milch" msgstr[1] "H-Milch" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -40852,7 +40901,7 @@ msgid_plural "evaporated milk" msgstr[0] "Kondensmilch" msgstr[1] "Kondensmilch" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -40864,7 +40913,7 @@ msgid_plural "buttermilk" msgstr[0] "Buttermilch" msgstr[1] "Buttermilch" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -40888,7 +40937,7 @@ msgid_plural "butter" msgstr[0] "Butter" msgstr[1] "Butter" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -40902,7 +40951,7 @@ msgid_plural "raw butter" msgstr[0] "Rohe Butter" msgstr[1] "Rohe Butter" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -40916,7 +40965,7 @@ msgid_plural "ghee" msgstr[0] "Butterschmalz" msgstr[1] "Butterschmalz" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -40957,7 +41006,7 @@ msgid_plural "hard cheese" msgstr[0] "Hartkäse" msgstr[1] "Hartkäse" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -40972,7 +41021,7 @@ msgid_plural "cheese" msgstr[0] "Käse" msgstr[1] "Käse" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "Ein Block aus gelben verarbeitetem Käse." @@ -40994,7 +41043,7 @@ msgid_plural "powdered milk" msgstr[0] "Milchpulver" msgstr[1] "Milchpulver" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -41006,7 +41055,7 @@ msgid_plural "condensed milk" msgstr[0] "Kondensmilch" msgstr[1] "Kondensmilch" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -41021,7 +41070,7 @@ msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -41034,7 +41083,7 @@ msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -41045,7 +41094,7 @@ msgid_plural "apple cider" msgstr[0] "Apfelsaft" msgstr[1] "Apfelsaft" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "Frisch gepresst aus echten Äpfeln. Schmackhaft und gesund." @@ -41082,7 +41131,7 @@ msgid_plural "atomic coffee" msgstr[0] "Atomkaffee" msgstr[1] "Atomkaffee" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -41099,7 +41148,7 @@ msgid_plural "bee balm tea" msgstr[0] "Tee der Wilden Bergamotte" msgstr[1] "Tee der Wilden Bergamotte" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -41126,7 +41175,7 @@ msgid_plural "chai tea" msgstr[0] "Chai-Tee" msgstr[1] "Chai-Tee" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "Ein traditioneller südasiatischer Mischgewürztee mit Milch." @@ -41137,7 +41186,7 @@ msgid_plural "chamomile tea" msgstr[0] "Kamilletee" msgstr[1] "Kamilletees" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -41166,7 +41215,7 @@ msgid_plural "coffee" msgstr[0] "Kaffee" msgstr[1] "Kaffee" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -41184,7 +41233,7 @@ msgid_plural "coffee substitute" msgstr[0] "Kaffeeersatzgeränk" msgstr[1] "Kaffeeersatzgeränke" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -41198,7 +41247,7 @@ msgid_plural "chicory brew" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -41273,7 +41322,7 @@ msgid_plural "dandelion tea" msgstr[0] "Löwenzahntee" msgstr[1] "Löwenzahntees" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -41286,7 +41335,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "Löwenzahn-Kletten-Tee" msgstr[1] "Löwenzahn-Kletten-Tees" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -41351,7 +41400,7 @@ msgid_plural "herbal tea" msgstr[0] "Kräutertee" msgstr[1] "Kräutertee" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -41364,7 +41413,7 @@ msgid_plural "hot chocolate" msgstr[0] "heiße Schokolade" msgstr[1] "heiße Schokolade" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -41414,7 +41463,7 @@ msgid_plural "lemonade" msgstr[0] "Limonade" msgstr[1] "Limonade" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -41445,7 +41494,7 @@ msgid_plural "lotus tea" msgstr[0] "Lotustee" msgstr[1] "Lotustee" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -41456,7 +41505,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "Mexikanische heiße Schokolade" msgstr[1] "Mexikanische heiße Schokolade" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -41524,7 +41573,7 @@ msgid_plural "pine needle tea" msgstr[0] "Kiefernnadeltee" msgstr[1] "Kiefernnadeltee" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -41567,7 +41616,7 @@ msgid_plural "root beer" msgstr[0] "Wurzelbier" msgstr[1] "Wurzelbier" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "Wie Cola, nur ohne Koffein. Trotzdem nicht sehr gesund." @@ -41606,13 +41655,13 @@ msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -41638,7 +41687,7 @@ msgid_plural "sweet water" msgstr[0] "süßes Wasser" msgstr[1] "süßes Wasser" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "Wasser mit Zucker- oder Honigzugabe. Schmeckt okay." @@ -41662,7 +41711,7 @@ msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -41702,7 +41751,7 @@ msgid_plural "water" msgstr[0] "Wasser" msgstr[1] "Wasser" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -41717,7 +41766,7 @@ msgid_plural "clean water" msgstr[0] "klares Wasser" msgstr[1] "klares Wasser" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -41730,7 +41779,7 @@ msgid_plural "mineral water" msgstr[0] "Mineralwasser" msgstr[1] "Mineralwasser" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -41861,7 +41910,7 @@ msgid_plural "maple sap" msgstr[0] "Ahornsaft" msgstr[1] "Ahornsaft" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -41873,7 +41922,7 @@ msgid_plural "mayonnaise" msgstr[0] "Mayonnaise" msgstr[1] "Mayonnaise" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -41900,7 +41949,7 @@ msgid_plural "mustard" msgstr[0] "Senf" msgstr[1] "Senf" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -41915,7 +41964,7 @@ msgid_plural "forest honey" msgstr[0] "Waldhonig" msgstr[1] "Waldhonig" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -41931,7 +41980,7 @@ msgid_plural "vinegar" msgstr[0] "Essig" msgstr[1] "Essig" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -41946,7 +41995,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "Pflanzliches Öl" msgstr[1] "Pflanzliche Öle" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "Dünnflüssiges gelbes Pflanzenöl, das zum Kochen benutzt wird." @@ -41957,7 +42006,7 @@ msgid_plural "animal cooking oil" msgstr[0] "Tierisches Öl" msgstr[1] "Tierische Öle" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -41968,7 +42017,7 @@ msgid_plural "molasses" msgstr[0] "Sirup" msgstr[1] "Sirupe" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -41984,7 +42033,7 @@ msgid_plural "horseradish" msgstr[0] "Meerrettich" msgstr[1] "Meerrettich" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "" @@ -41997,7 +42046,7 @@ msgid_plural "coffee syrup" msgstr[0] "Kaffeesirup" msgstr[1] "Kaffeesirup" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -42343,7 +42392,7 @@ msgid_plural "scrambled eggs" msgstr[0] "Rührei" msgstr[1] "Rühreier" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "Schaumige und leckere Rühreier." @@ -42365,7 +42414,7 @@ msgid_plural "fried eggs" msgstr[0] "Spiegelei" msgstr[1] "Spiegeleier" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -42378,7 +42427,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -42391,7 +42440,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -42404,7 +42453,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -42615,7 +42664,7 @@ msgid_plural "frozen yogurt" msgstr[0] "Frozen Yogurt" msgstr[1] "Frozen Yogurt" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -42692,7 +42741,7 @@ msgid_plural "peaches in syrup" msgstr[0] "Pfirsiche im Sirup" msgstr[1] "Pfirsiche im Sirup" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -42716,7 +42765,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "Limonadenpulvermischung" msgstr[1] "Limonadenpulvermischungen" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -42753,7 +42802,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "Trockenobst" msgstr[1] "Trockenobst" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -42770,7 +42819,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "rehydriertes Obst" msgstr[1] "rehydriertes Obst" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -42799,7 +42848,7 @@ msgid_plural "canned fruit" msgstr[0] "Dosenobst" msgstr[1] "Dosenobst" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -42814,7 +42863,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "Kürbisbrot" msgstr[1] "Kürbisbrote" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -42838,7 +42887,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "bestrahlte Hagebutte" msgstr[1] "bestrahlte Hagebutten" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -43289,7 +43338,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "bestrahlter Brokkoli" msgstr[1] "bestrahlte Brokkoli" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -43349,7 +43398,7 @@ msgid_plural "irradiated corn" msgstr[0] "bestrahlter Maiskolben" msgstr[1] "bestrahlte Maiskolben" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -43409,7 +43458,7 @@ msgid_plural "irradiated celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -43424,7 +43473,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -43542,12 +43591,12 @@ msgid_plural "potato chips" msgstr[0] "Kartoffelchips" msgstr[1] "Kartoffelchips" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "Einige gewöhnliche gesalzene Kartoffelchips." -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "Oh, Mann, du liebst diese Chips! Volltreffer!" @@ -43558,7 +43607,7 @@ msgid_plural "popcorn kernels" msgstr[0] "Popcorn-Kerne" msgstr[1] "Popcorn-Kerne" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -43573,7 +43622,7 @@ msgid_plural "popcorn" msgstr[0] "Popcorn" msgstr[1] "Popcorn" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -43588,7 +43637,7 @@ msgid_plural "salted popcorn" msgstr[0] "gesalzenes Popcorn" msgstr[1] "gesalzenes Popcorn" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "Popcorn mit Salz für mehr Geschmack." @@ -43599,7 +43648,7 @@ msgid_plural "buttered popcorn" msgstr[0] "gebuttertes Popcorn" msgstr[1] "gebuttertes Popcorn" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "Popcorn mit einem leichten Butterüberzug für den besseren Geschmack." @@ -43610,7 +43659,7 @@ msgid_plural "pretzels" msgstr[0] "Brezeln" msgstr[1] "Brezeln" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "Eine salzige Leckerei." @@ -43643,7 +43692,7 @@ msgid_plural "marshmallows" msgstr[0] "Marshmallows" msgstr[1] "Marshmallows" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -43655,7 +43704,7 @@ msgid_plural "s'mores" msgstr[0] "S'mores" msgstr[1] "S'mores" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -43691,7 +43740,7 @@ msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "Eine Handvoll bunte Kausüßigkeiten mit Frucht-Aromen." @@ -43702,12 +43751,12 @@ msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -43755,7 +43804,7 @@ msgid_plural "powder candy sticks" msgstr[0] "Pulversüßigkeit" msgstr[1] "Pulversüßigkeiten" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -43836,7 +43885,7 @@ msgid_plural "maple syrup" msgstr[0] "Ahornsirup" msgstr[1] "Ahornsirupe" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -43851,7 +43900,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "Zuckerrübensirup" msgstr[1] "Zuckerrübensirups" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -43907,7 +43956,7 @@ msgid_plural "fast-food French fries" msgstr[0] "Fast-Food-Pommes" msgstr[1] "Fast-Food-Pommes" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "Fast-Food Röstkartoffeln. Irgendwie sind sie noch immer essbar." @@ -43918,7 +43967,7 @@ msgid_plural "French fries" msgstr[0] "Pommes frites" msgstr[1] "Pommes frites" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -43940,7 +43989,7 @@ msgid_plural "Necco wafers" msgstr[0] "Necco-Oblate" msgstr[1] "Necco-Oblaten" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -43971,8 +44020,8 @@ msgid_plural "caramel" msgstr[0] "Karamell" msgstr[1] "Karamell" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "Etwas Karamell. Immer noch schlecht für deine Zähne." @@ -43983,7 +44032,7 @@ msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "Ich wette, dass du nicht nur einen davon essen kannst." @@ -43994,7 +44043,7 @@ msgid_plural "tortilla chips" msgstr[0] "Tortillachips" msgstr[1] "Tortillachips" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -44009,7 +44058,7 @@ msgid_plural "cheese nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -44024,31 +44073,28 @@ msgid_plural "meat nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "Nörgler-Nachos" msgstr[1] "Nörgler-Nachos" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -44063,31 +44109,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "Nörgler-Nachos mit Käse" msgstr[1] "Nörgler-Nachos mit Käse" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -44102,7 +44148,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -44115,7 +44161,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -44196,7 +44242,7 @@ msgid_plural "chili dogs" msgstr[0] "Chili Dogs" msgstr[1] "Chili Dogs" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "Ein Hot Dog mit Chili con Carne als Garnierung. Mjam!" @@ -44207,7 +44253,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "rohe Corn Dogs" msgstr[1] "rohe Corn Dogs" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -44287,7 +44333,7 @@ msgid_plural "cheese fries" msgstr[0] "Käsepommes" msgstr[1] "Käsepommes" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "Gebratene Kartoffeln, die mit leckerem Käse bedeckt wurden." @@ -44380,8 +44426,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -44524,32 +44569,26 @@ msgid_plural "raw sausages" msgstr[0] "Rohwurst" msgstr[1] "Rohwürste" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -44569,15 +44608,14 @@ msgid_plural "smoked sausages" msgstr[0] "Geräucherte Wurst" msgstr[1] "Geräucherte Würste" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -44598,15 +44636,14 @@ msgid_plural "cooked sausages" msgstr[0] "Gekochte Wurst" msgstr[1] "Gekochte Würste" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -44637,23 +44674,21 @@ msgid_plural "bratwursts" msgstr[0] "Bratwurst" msgstr[1] "Bratwürste" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -44676,7 +44711,7 @@ msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -44735,7 +44770,7 @@ msgid_plural "cracklins" msgstr[0] "Bratenkrusten" msgstr[1] "Bratenkrusten" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -44750,8 +44785,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -44759,7 +44793,7 @@ msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -44776,7 +44810,7 @@ msgid_plural "currywursts" msgstr[0] "Currywurst" msgstr[1] "Currywürste" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -44784,8 +44818,7 @@ msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -44793,8 +44826,7 @@ msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -44817,9 +44849,8 @@ msgid_plural "aspics" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -44827,9 +44858,8 @@ msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -44837,9 +44867,8 @@ msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -44863,7 +44892,7 @@ msgid_plural "dehydrated fish" msgstr[0] "dehydrierter Fisch" msgstr[1] "dehydrierte Fische" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -44878,7 +44907,7 @@ msgid_plural "rehydrated fish" msgstr[0] "rehydrierter Fisch" msgstr[1] "rehydrierte Fische" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -44893,7 +44922,7 @@ msgid_plural "pickled fish" msgstr[0] "eingelegter Fisch" msgstr[1] "eingelegte Fische" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -44907,7 +44936,7 @@ msgid_plural "canned fish" msgstr[0] "Dosenfisch" msgstr[1] "Dosenfische" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -44922,7 +44951,7 @@ msgid_plural "batter fried fish" msgstr[0] "Backfisch" msgstr[1] "Backfische" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -44957,8 +44986,7 @@ msgid_plural "lunch meats" msgstr[0] "Aufschnitt" msgstr[1] "Aufschnitt" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -44981,7 +45009,7 @@ msgid_plural "bologna" msgstr[0] "Bologna Wurst" msgstr[1] "Bologna Würste" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -44989,8 +45017,7 @@ msgid_plural "brat %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -44998,8 +45025,7 @@ msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -45007,7 +45033,7 @@ msgid_plural "bleak %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -45041,7 +45067,7 @@ msgid_plural "SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -45082,24 +45108,22 @@ msgid_plural "sausage gravies" msgstr[0] "Wurstbratensoße" msgstr[1] "Wurstbratensoßen" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "Mannwurstbratensoße" msgstr[1] "Mannwurstbratensoßen" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -45122,7 +45146,7 @@ msgid_plural "pemmican" msgstr[0] "Pemmikan" msgstr[1] "Pemmikan" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -45130,8 +45154,7 @@ msgid_plural "prepper %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -45139,8 +45162,7 @@ msgid_plural "Orley %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -45148,7 +45170,7 @@ msgid_plural "pernicious %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -45166,15 +45188,14 @@ msgid_plural "hamburger helpers" msgstr[0] "Makkaroni mit Käse und Fleisch" msgstr[1] "Makkaroni mit Käse und Fleisch" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -45182,8 +45203,7 @@ msgid_plural "halfling helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -45217,24 +45237,22 @@ msgid_plural "chilis con carne" msgstr[0] "Chili con Carne" msgstr[1] "Chili con Carne" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -45253,7 +45271,7 @@ msgid_plural "pork and beans" msgstr[0] "Schweinefleisch und Bohnen" msgstr[1] "Schweinefleisch und Bohnen" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -45268,7 +45286,7 @@ msgid_plural "canned tuna fish" msgstr[0] "konservierter Thunfisch" msgstr[1] "konservierte Thunfische" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "Jetzt mit 95 Prozent weniger Delphinen!" @@ -45279,7 +45297,7 @@ msgid_plural "canned salmon" msgstr[0] "Dosenlachs" msgstr[1] "Dosenlachs" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "Hellrosa Fischpaste in einer Dose!" @@ -45301,7 +45319,7 @@ msgid_plural "pickled herring" msgstr[0] "Bismarckhering" msgstr[1] "Bismarckheringe" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "Fischfilets, die in einer Art würzigen weißen Soße eingelegt wurden." @@ -45323,16 +45341,14 @@ msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -45352,15 +45368,14 @@ msgid_plural "baked beans" msgstr[0] "gebackene Bohnen" msgstr[1] "gebackene Bohnen" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "Langsam gegarte Bohnen mit Fleisch. Lecker und sehr stopfend." @@ -45371,15 +45386,14 @@ msgid_plural "meat fried rice" msgstr[0] "gebratener Reis mit Fleisch" msgstr[1] "gebratener Reis mit Fleisch" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "Leckerer gebratener Reis mit Fleisch. Lecker und sehr stopfend." @@ -45390,15 +45404,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "Bohnen mit Reis deluxe" msgstr[1] "Bohnen mit Reis deluxe" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -45413,22 +45427,21 @@ msgid_plural "meat pies" msgstr[0] "Fleischpastete" msgstr[1] "Fleischpasteten" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -45447,23 +45460,21 @@ msgid_plural "meat pizzas" msgstr[0] "Fleischpizza" msgstr[1] "Fleischpizzen" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -45495,31 +45506,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "Luxus-Rührei" msgstr[1] "Luxus-Rühreier" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -45534,15 +45544,14 @@ msgid_plural "canned meats" msgstr[0] "Dosenfleisch" msgstr[1] "Dosenfleisch" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -45565,15 +45574,14 @@ msgid_plural "salted meat slices" msgstr[0] "Gesalzenes Fleischstück" msgstr[1] "Gesalzene Fleischstücke" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -45592,15 +45600,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "Spaghetti Bolognese" msgstr[1] "Spaghetti Bolognese" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -45608,8 +45615,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -45617,7 +45623,7 @@ msgid_plural "gnarly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "Spaghetti mit einer dicken Fleischsoße bedeckt. Lecker!" @@ -45628,7 +45634,7 @@ msgid_plural "lasagnes" msgstr[0] "Lasagne" msgstr[1] "Lasagne" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -45636,8 +45642,7 @@ msgid_plural "Luigi %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -45645,7 +45650,7 @@ msgid_plural "Lab %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -45669,7 +45674,7 @@ msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "Gebraten ist dieses Frühstücksfleisch tatsächlich ziemlich lecker." @@ -45680,8 +45685,7 @@ msgid_plural "cheeseburgers" msgstr[0] "Cheeseburger" msgstr[1] "Cheeseburger" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -45689,7 +45693,7 @@ msgid_plural "chump %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -45698,8 +45702,7 @@ msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -45733,23 +45736,21 @@ msgid_plural "hamburgers" msgstr[0] "Hamburger" msgstr[1] "Hamburger" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -45768,23 +45769,21 @@ msgid_plural "sloppy joes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "Menschwich" msgstr[1] "Menschwiches" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -45807,7 +45806,7 @@ msgid_plural "tacos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -45815,8 +45814,7 @@ msgid_plural "tio %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -45824,7 +45822,7 @@ msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -45847,15 +45845,14 @@ msgid_plural "pickled meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -45877,10 +45874,8 @@ msgid_plural "dehydrated meats" msgstr[0] "Gerocknetes Fleisch" msgstr[1] "Gerocknetes Fleisch" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -45888,12 +45883,11 @@ msgid_plural "%s, human" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -45931,9 +45925,8 @@ msgid_plural "haggises" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -45960,7 +45953,7 @@ msgid_plural "fish makizushi" msgstr[0] "Fisch-Makisushi" msgstr[1] "Fisch-Makisushi" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -45975,8 +45968,7 @@ msgid_plural "meat temaki" msgstr[0] "Fleisch-Temaki" msgstr[1] "Fleisch-Temaki" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -45984,7 +45976,7 @@ msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -45999,7 +45991,7 @@ msgid_plural "sashimi" msgstr[0] "Sashimi" msgstr[1] "Sashimi" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "Leckere dünne Scheibchen eines Rohfisches und leckerem Gemüse." @@ -46025,7 +46017,7 @@ msgid_plural "pelmenis" msgstr[0] "Pelmeni" msgstr[1] "Pelmeni" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -46048,8 +46040,7 @@ msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -46070,15 +46061,14 @@ msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -46097,15 +46087,14 @@ msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -46142,12 +46131,12 @@ msgid_plural "prescription stimulant" msgstr[0] "verschreibungspflichtiges Stimulans" msgstr[1] "verschreibungspflichtige Stimulanzien" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "Du nimmst ein paar Stimulanzien. " -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -46201,7 +46190,7 @@ msgid_plural "antibiotics" msgstr[0] "Antibiotika" msgstr[1] "Antibiotika" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -46228,7 +46217,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "Antiparasitikum" msgstr[1] "Antiparasitikum" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -46315,7 +46304,7 @@ msgid_plural "antiseptic powder" msgstr[0] "antiseptisches Pulver" msgstr[1] "antiseptische Pulver" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -46374,7 +46363,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "Wasserstoffperoxid" msgstr[1] "Wasserstoffperoxid" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -46434,12 +46423,12 @@ msgid_plural "codeine" msgstr[0] "Codein" msgstr[1] "Codein" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "Du nimmst etwas Codein ein." -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -46456,7 +46445,7 @@ msgid_plural "cocaine" msgstr[0] "Kokain" msgstr[1] "Kokain" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -46508,7 +46497,7 @@ msgid_plural "cotton balls" msgstr[0] "Wattebällchen" msgstr[1] "Wattebällchen" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -46524,12 +46513,12 @@ msgid_plural "crack" msgstr[0] "Crack" msgstr[1] "Crack" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "Du rauchst deinen Crack. Mutter wäre Stolz." -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -46544,7 +46533,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "nicht müdemachender Hustensaft" msgstr[1] "nicht müdemachender Hustensaft" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -46561,7 +46550,7 @@ msgid_plural "antiseptic" msgstr[0] "Desinfektion" msgstr[1] "Desinfektion" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -46584,7 +46573,7 @@ msgid_plural "prescription sedative" msgstr[0] "Verschreibungspflichtiges Schlafmittel" msgstr[1] "Verschreibungspflichtige Schlafmittel" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -46599,12 +46588,12 @@ msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -46621,12 +46610,12 @@ msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -46642,12 +46631,12 @@ msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -46661,16 +46650,14 @@ msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -46684,7 +46671,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -46698,7 +46685,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -46712,7 +46699,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -46726,7 +46713,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -46740,7 +46727,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -46755,7 +46742,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -46770,7 +46757,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -46784,7 +46771,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -46798,12 +46785,12 @@ msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -46889,7 +46876,7 @@ msgid_plural "chewing gum" msgstr[0] "Kaugummi" msgstr[1] "Kaugummi" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -46917,13 +46904,13 @@ msgid_plural "heroin" msgstr[0] "Heroin" msgstr[1] "Heroin" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "Du spritzt dir die Droge." -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -47008,7 +46995,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "geringgradiges Methamphetamin" msgstr[1] "geringgradiges Methamphetamin" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -47025,7 +47012,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -47080,7 +47067,7 @@ msgid_plural "cough syrup" msgstr[0] "Hustensaft" msgstr[1] "Hustensaft" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -47115,7 +47102,7 @@ msgid_plural "sleeping pill" msgstr[0] "Schlaftablette" msgstr[1] "Schlaftabletten" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -47166,7 +47153,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "Mohnhustensaft" msgstr[1] "Mohnhustensaft" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "Hustensaft aus mutierten Mohnblumen. Wird dich müde machen." @@ -47177,15 +47164,14 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -47200,7 +47186,7 @@ msgid_plural "antidepressant" msgstr[0] "Antidepressivum" msgstr[1] "Antidepressiva" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -47239,7 +47225,7 @@ msgid_plural "hemostatic powder" msgstr[0] "Blutstillungspulver" msgstr[1] "Blutstillungspulver" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -47269,7 +47255,7 @@ msgid_plural "antipsychotic" msgstr[0] "Antipsychotika" msgstr[1] "Antipsychotika" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -47546,12 +47532,12 @@ msgid_plural "marijuana" msgstr[0] "Marijuana" msgstr[1] "Marijuana" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "Du rauchst etwas Gras. Gutes Zeug, Mann!" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -47569,7 +47555,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "Schnell-wirkendes Betäubungsmittel" msgstr[1] "Schnell-wirkende Betäubungsmittel" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -47596,7 +47582,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "Desinfektionsmittelgetränkte Wattebällchen" msgstr[1] "Desinfektionsmittelgetränkte Wattebällchen" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -47609,7 +47595,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "Schmalspektrumantibiotika" msgstr[1] "Schmalspektrumantibiotika" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -47678,7 +47664,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "Breitspektrumantibiotika" msgstr[1] "Breitspektrumantibiotika" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -47693,7 +47679,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -48248,7 +48234,7 @@ msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -48500,9 +48486,8 @@ msgstr[1] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -48569,7 +48554,7 @@ msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -48688,7 +48673,8 @@ msgstr[1] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -48837,7 +48823,7 @@ msgid_plural "pine nuts" msgstr[0] "Kiefernkern" msgstr[1] "Kiefernkerne" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -48848,7 +48834,7 @@ msgid_plural "junipers" msgstr[0] "Wacholderbeere" msgstr[1] "Wacholderbeeren" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -48861,7 +48847,7 @@ msgid_plural "shelled pistachios" msgstr[0] "Geschälte Pistazie" msgstr[1] "Geschälte Pistazien" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -48873,7 +48859,7 @@ msgid_plural "roasted pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -48884,7 +48870,7 @@ msgid_plural "shelled almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "Eine Handvoll harter Nüsse eines Mandelbaums ohne Schalen." @@ -48895,7 +48881,7 @@ msgid_plural "almond pulp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -48907,7 +48893,7 @@ msgid_plural "roasted almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "Eine Handvoll geröstete Nüsse eines Mandelbaums." @@ -48918,7 +48904,7 @@ msgid_plural "cashews" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "Eine Handvoll salziger Cashewnüsse." @@ -48929,7 +48915,7 @@ msgid_plural "shelled pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -48944,7 +48930,7 @@ msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "Eine Handvoll geröstete Nüsse eines Pekannussbaums." @@ -48955,7 +48941,7 @@ msgid_plural "shelled peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -48966,7 +48952,7 @@ msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -48977,7 +48963,7 @@ msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -48990,7 +48976,7 @@ msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "Eine Handvoll geröstete Nüsse eines Walnussbaums." @@ -49001,7 +48987,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -49014,7 +49000,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "Eine Handvoll geröstete Nüsse eines Kastanienbaums." @@ -49025,7 +49011,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -49038,7 +49024,7 @@ msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -49049,7 +49035,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -49060,7 +49046,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "Eine Handvoll geröstete Nüsse eines Haselnussbaums." @@ -49071,7 +49057,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "Hickorynuss in Schale" msgstr[1] "Hickorynüsse in Schale" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -49086,7 +49072,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "Eine Handvoll geröstete Nüsse eines Hickorybaums." @@ -49145,7 +49131,7 @@ msgid_plural "acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -49158,7 +49144,7 @@ msgid_plural "roasted acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "Eine Handvoll geröstete Nussfrüchte einer Eiche." @@ -49169,7 +49155,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -49184,7 +49170,7 @@ msgid_plural "foie gras" msgstr[0] "Foie gras" msgstr[1] "Foie gras" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -49196,7 +49182,7 @@ msgid_plural "liver & onions" msgstr[0] "Leber & Zwiebeln" msgstr[1] "Leber & Zwiebeln" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "Eine sehr klassische Art, Leber zu servieren." @@ -49253,7 +49239,7 @@ msgid_plural "leverpostej" msgstr[0] "Leberpastete" msgstr[1] "Leberpastete" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -49476,7 +49462,7 @@ msgid_plural "marloss gelatin" msgstr[0] "Marlossgelantine" msgstr[1] "Marlossgelantine" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -49507,7 +49493,7 @@ msgid_plural "yeast" msgstr[0] "Hefe" msgstr[1] "Hefen" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -49521,7 +49507,7 @@ msgid_plural "bone meal" msgstr[0] "Knochenmehl" msgstr[1] "Knochenmehl" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -49534,7 +49520,7 @@ msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -49546,7 +49532,7 @@ msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -49557,7 +49543,7 @@ msgid_plural "tainted bone meal" msgstr[0] "Verpestetes Knochenmehl" msgstr[1] "Verpestetes Knochenmehl" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -49570,7 +49556,7 @@ msgid_plural "chitin powder" msgstr[0] "Chitinpulver" msgstr[1] "Chitinpulver" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -49621,7 +49607,7 @@ msgid_plural "dried beans" msgstr[0] "getrocknete Bohnen" msgstr[1] "getrocknete Bohnen" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -49635,7 +49621,7 @@ msgid_plural "cooked beans" msgstr[0] "gekochte Bohnen" msgstr[1] "gekochte Bohnen" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "Eine herzhafte Portion gekochter Bohnen." @@ -49646,8 +49632,8 @@ msgid_plural "tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -49666,7 +49652,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -49677,7 +49663,7 @@ msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -49703,7 +49689,7 @@ msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -49715,7 +49701,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -49729,7 +49715,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -49740,7 +49726,7 @@ msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -49751,7 +49737,7 @@ msgid_plural "coffee powder" msgstr[0] "Kaffeepulver" msgstr[1] "Kaffeepulver" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -49766,7 +49752,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -49779,7 +49765,7 @@ msgid_plural "candied honey" msgstr[0] "kristallisierter Honig" msgstr[1] "kristallisierter Honig" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -49825,7 +49811,7 @@ msgid_plural "cattle fodder" msgstr[0] "Rindviehfutter" msgstr[1] "Rindviehfutter" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -49840,7 +49826,7 @@ msgid_plural "bird food" msgstr[0] "Vogelfutter" msgstr[1] "Vogelfutter" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -49855,7 +49841,7 @@ msgid_plural "wet dog food" msgstr[0] "Nasses Hundefutter" msgstr[1] "Nasses Hundefutter" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -49868,7 +49854,7 @@ msgid_plural "dry dog food" msgstr[0] "Trockenes Hundefutter" msgstr[1] "Trockenes Hundefutter" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -49881,7 +49867,7 @@ msgid_plural "wet cat food" msgstr[0] "Nasses Katzenfutter" msgstr[1] "Nasses Katzenfutter" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -49894,7 +49880,7 @@ msgid_plural "dry cat food" msgstr[0] "Trockenes Katzenfutter" msgstr[1] "Trockenes Katzenfutter" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -50021,7 +50007,7 @@ msgid_plural "instant coffee mix" msgstr[0] "Instant-Kaffee-Mix" msgstr[1] "Instant-Kaffee-Mix" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -50060,15 +50046,14 @@ msgid_plural "protein drinks" msgstr[0] "Proteingetränk" msgstr[1] "Proteingetränke" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -50076,14 +50061,11 @@ msgid_plural "sapient green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -50106,15 +50088,14 @@ msgid_plural "protein powder" msgstr[0] "Proteinpulver" msgstr[1] "Proteinpulver" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -50122,7 +50103,7 @@ msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -50153,15 +50134,14 @@ msgid_plural "protein shakes" msgstr[0] "Proteinshake" msgstr[1] "Proteinshakes" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -50184,7 +50164,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -50192,7 +50172,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -50265,7 +50245,7 @@ msgid_plural "blueberries" msgstr[0] "Blaubeeren" msgstr[1] "Blaubeeren" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "Sie sind blau, was aber nicht heißt, dass sie besoffen sind." @@ -50276,7 +50256,7 @@ msgid_plural "strawberries" msgstr[0] "Erdbeeren" msgstr[1] "Erdbeeren" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "Leckere saftige Beere. Oft wild in Feldern gefunden." @@ -50287,7 +50267,7 @@ msgid_plural "cranberries" msgstr[0] "Cranberrys" msgstr[1] "Cranberrys" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "Saure rote Beeren. Gut für deine Gesundheit." @@ -50298,7 +50278,7 @@ msgid_plural "raspberries" msgstr[0] "Himbeeren" msgstr[1] "Himbeeren" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "Eine süße rote Beere." @@ -50309,7 +50289,7 @@ msgid_plural "huckleberries" msgstr[0] "Heidelbeeren" msgstr[1] "Heidelbeeren" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "Heidelbeeren, werden oft mit Blaubeeren verwechselt." @@ -50320,7 +50300,7 @@ msgid_plural "mulberries" msgstr[0] "Maulbeeren" msgstr[1] "Maulbeeren" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -50335,7 +50315,7 @@ msgid_plural "elderberries" msgstr[0] "Holunderbeeren" msgstr[1] "Holunderbeeren" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -50348,7 +50328,7 @@ msgid_plural "rose hips" msgstr[0] "Hagebutten" msgstr[1] "Hagebutten" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "Die Frucht einer bestäubten Rose." @@ -50396,7 +50376,7 @@ msgid_plural "cherries" msgstr[0] "Kirschen" msgstr[1] "Kirschen" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "Eine rote süße Frucht, welche in Bäumen wächst." @@ -50420,7 +50400,7 @@ msgid_plural "grapes" msgstr[0] "Weintrauben" msgstr[1] "Weintrauben" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "Eine Rispe saftiger Weintrauben." @@ -50487,7 +50467,7 @@ msgid_plural "blackberries" msgstr[0] "Brombeeren" msgstr[1] "Brombeeren" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "Eine dunklere Cousine der Himbeere." @@ -50546,7 +50526,7 @@ msgid_plural "apricots" msgstr[0] "Aprikose" msgstr[1] "Aprikosen" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "Eine weichhäutige Frucht, verwandt zur Pfirsich." @@ -50587,7 +50567,7 @@ msgid_plural "bee balm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -50599,7 +50579,7 @@ msgid_plural "broccoli" msgstr[0] "Brokkoli" msgstr[1] "Brokkoli" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "Es ist etwas zäh, aber recht lecker." @@ -50610,7 +50590,7 @@ msgid_plural "buckwheat" msgstr[0] "Buchweizen" msgstr[1] "Buchweizen" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -50637,7 +50617,7 @@ msgid_plural "spinach" msgstr[0] "Spinat" msgstr[1] "Spinate" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -50691,7 +50671,7 @@ msgid_plural "celery" msgstr[0] "Sellerie" msgstr[1] "Sellerie" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -50716,7 +50696,7 @@ msgid_plural "corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "Leckere goldene Kerne." @@ -50727,7 +50707,7 @@ msgid_plural "empty corn cob" msgstr[0] "Leerer Maiskolben" msgstr[1] "Leere Maiskolben" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -50795,7 +50775,7 @@ msgid_plural "salsify" msgstr[0] "Haferwurz" msgstr[1] "Haferwurz" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -50811,7 +50791,7 @@ msgid_plural "chicory" msgstr[0] "Wegwarte" msgstr[1] "Wegwarten" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -50948,7 +50928,7 @@ msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -50988,7 +50968,7 @@ msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -51001,7 +50981,7 @@ msgid_plural "dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -51016,7 +50996,7 @@ msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -51122,7 +51102,7 @@ msgid_plural "wild vegetables" msgstr[0] "Wildgemüse" msgstr[1] "Wildgemüse" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -51159,7 +51139,7 @@ msgid_plural "raw beans" msgstr[0] "rohe Bohnen" msgstr[1] "rohe Bohnen" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -51172,7 +51152,7 @@ msgid_plural "raw lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -51183,7 +51163,7 @@ msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -51221,8 +51201,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "Luxus-Sandwich" msgstr[1] "Luxus-Sandwichs" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -51237,6 +51216,27 @@ msgid "" msgstr "" "Ein Sandwich mit Fleisch, Gemüse und Käse mit Gewürzen. Lecker und nahrhaft!" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -51300,7 +51300,7 @@ msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -51350,26 +51350,23 @@ msgid_plural "meat sandwiches" msgstr[0] "Fleisch-Sandwich" msgstr[1] "Fleisch-Sandwichs" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "Sapiens-Sandwich" msgstr[1] "Sapiens-Sandwichs" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -51495,7 +51492,7 @@ msgid_plural "mushroom spores" msgstr[0] "Pilzsporen" msgstr[1] "Pilzsporen" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -51506,7 +51503,7 @@ msgid_plural "hop rhizomes" msgstr[0] "Hopfenwurzelstamm" msgstr[1] "Hopfenwurzelstämme" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "Wurzeln einer Hopfenpflanze, um deine eigenen zu züchten." @@ -51521,7 +51518,7 @@ msgid_plural "blackberry seeds" msgstr[0] "Brombeersamen" msgstr[1] "Brombeersamen" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "Einige Brombeersamen." @@ -51536,7 +51533,7 @@ msgid_plural "blueberry seeds" msgstr[0] "Blaubeersamen" msgstr[1] "Blaubeersamen" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "Ein paar Blaubeersamen." @@ -51551,7 +51548,7 @@ msgid_plural "cranberry seeds" msgstr[0] "Cranberrysamen" msgstr[1] "Cranberrysamen" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "Einige Cranberrysamen." @@ -51566,7 +51563,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "Heidelbeersamen" msgstr[1] "Heidelbeersamen" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "Einige Heidelbeersamen." @@ -51581,7 +51578,7 @@ msgid_plural "mulberry seeds" msgstr[0] "Maulbeersamen" msgstr[1] "Maulbeersamen" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "Einige Maulbeersamen." @@ -51596,7 +51593,7 @@ msgid_plural "elderberry seeds" msgstr[0] "Holunderbeersamen" msgstr[1] "Holunderbeersamen" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "Einige Holunderbeersamen." @@ -51611,7 +51608,7 @@ msgid_plural "raspberry seeds" msgstr[0] "Himbeeresamen" msgstr[1] "Himbeeresamen" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "Einige Himbeeresamen." @@ -51626,7 +51623,7 @@ msgid_plural "strawberry seeds" msgstr[0] "Erdbeersamen" msgstr[1] "Erdbeersamen" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "Einige Erdbeersamen." @@ -51641,7 +51638,7 @@ msgid_plural "grape seeds" msgstr[0] "Traubenkern" msgstr[1] "Traubenkerne" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "Einige Traubenkerne." @@ -51656,7 +51653,7 @@ msgid_plural "rose seeds" msgstr[0] "Rosensamen" msgstr[1] "Rosensamen" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "Einige Rosensamen." @@ -51671,7 +51668,7 @@ msgid_plural "tobacco seeds" msgstr[0] "Tabaksamen" msgstr[1] "Tabaksamen" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "Einige Tabaksamen." @@ -51686,7 +51683,7 @@ msgid_plural "barley seeds" msgstr[0] "Gerstensamen" msgstr[1] "Gerstensamen" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "Einige Gerstensamen." @@ -51697,7 +51694,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "Zuckerrübensamen" msgstr[1] "Zuckerrübensamen" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "Einige Zuckerrübensamen." @@ -51708,7 +51705,7 @@ msgid_plural "lettuce seeds" msgstr[0] "Salatsamen" msgstr[1] "Salatsamen" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "Einige Salatsamen." @@ -51719,7 +51716,7 @@ msgid_plural "cabbage seeds" msgstr[0] "Kohlsamen" msgstr[1] "Kohlsamen" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "Einige Weißkohlsamen." @@ -51730,7 +51727,7 @@ msgid_plural "tomato seeds" msgstr[0] "Tomatensamen" msgstr[1] "Tomatensamen" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "Einige Tomatensamen." @@ -51741,7 +51738,7 @@ msgid_plural "cotton seeds" msgstr[0] "Baumwollsamen" msgstr[1] "Baumwollsamen" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "Ein paar Baumwollsamen. Können zu einem Speiseöl verarbeitet werden." @@ -51756,7 +51753,7 @@ msgid_plural "broccoli seeds" msgstr[0] "Brokkolisamen" msgstr[1] "Brokkolisamen" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "Einige Brokkolisamen." @@ -51767,7 +51764,7 @@ msgid_plural "zucchini seeds" msgstr[0] "Zucchinisamen" msgstr[1] "Zucchinisamen" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "Einige Zucchinisamen." @@ -51778,7 +51775,7 @@ msgid_plural "onion seeds" msgstr[0] "Zwiebelsamen" msgstr[1] "Zwiebelsamen" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "Einige Zwiebelsamen." @@ -51789,7 +51786,7 @@ msgid_plural "garlic seeds" msgstr[0] "Knoblauchsamen" msgstr[1] "Knoblauchsamen" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "Einige Knoblauchsamen." @@ -51804,7 +51801,7 @@ msgid_plural "cattail seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -51819,7 +51816,7 @@ msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -51834,7 +51831,7 @@ msgid_plural "salsify seeds" msgstr[0] "Haferwurzsamen" msgstr[1] "Haferwurzsamen" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "Einige Haferwurzsamen." @@ -51845,7 +51842,7 @@ msgid_plural "chicory seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -51856,7 +51853,7 @@ msgid_plural "wild root seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -51867,7 +51864,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -51884,7 +51881,7 @@ msgid_plural "cactus seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -51910,7 +51907,7 @@ msgid_plural "carrot seeds" msgstr[0] "Karottensamen" msgstr[1] "Karottensamen" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "Einige Karottensamen." @@ -51921,7 +51918,7 @@ msgid_plural "corn seeds" msgstr[0] "Maissamen" msgstr[1] "Maissamen" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "Einige Kornsamen." @@ -51936,7 +51933,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "Chilipfeffersamen" msgstr[1] "Chilipfeffersamen" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "Einige Chilisamen." @@ -51947,7 +51944,7 @@ msgid_plural "cucumber seeds" msgstr[0] "Gurkensamen" msgstr[1] "Gurkensamen" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "Einige Gurkensamen." @@ -51975,7 +51972,7 @@ msgid_plural "cannabis seeds" msgstr[0] "Cannabissamen" msgstr[1] "Cannabissamen" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -52008,7 +52005,7 @@ msgid_plural "bean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -52023,7 +52020,7 @@ msgid_plural "soybean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -52032,7 +52029,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -52047,7 +52044,7 @@ msgid_plural "thyme seeds" msgstr[0] "Thymiansamen" msgstr[1] "Thymiansamen" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "Einige Thymiansamen." @@ -52064,7 +52061,7 @@ msgid_plural "canola seeds" msgstr[0] "Rapssamen" msgstr[1] "Rapssamen" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -52075,7 +52072,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "Kürbiskerne" msgstr[1] "Kürbiskerne" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -52086,7 +52083,7 @@ msgid_plural "sunflower seeds" msgstr[0] "Sonnenblumensamen" msgstr[1] "Sonnenblumensamen" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "Ein paar Sonnenblumensamen. Können zu Öl verarbeitet werden." @@ -52104,7 +52101,7 @@ msgid_plural "dogbane seeds" msgstr[0] "Hundsgiftsamen" msgstr[1] "Hundsgiftsamen" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -52115,7 +52112,7 @@ msgid_plural "bee balm seeds" msgstr[0] "Samen der Wilden Bergamotte" msgstr[1] "Samen der Wilden Bergamotte" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -52126,7 +52123,7 @@ msgid_plural "mugwort seeds" msgstr[0] "Beifußsamen" msgstr[1] "Beifußsamen" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -52137,7 +52134,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "Buchweizensamen" msgstr[1] "Buchweizensamen" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -52148,7 +52145,7 @@ msgid_plural "wild herb seeds" msgstr[0] "Wildkräutersamen" msgstr[1] "Wildkräutersamen" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -52163,7 +52160,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "Wildgemüsestängel" msgstr[1] "Wildgemüsestängel" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -52178,7 +52175,7 @@ msgid_plural "dandelion seeds" msgstr[0] "Löwenzahnsamen" msgstr[1] "Löwenzahnsamen" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -52193,7 +52190,7 @@ msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -52208,7 +52205,7 @@ msgid_plural "rhubarb stems" msgstr[0] "Rhababerstängel" msgstr[1] "Rhababerstängel" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -52219,7 +52216,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "Morchelsporen" msgstr[1] "Morchelsporen" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -52230,7 +52227,7 @@ msgid_plural "datura seeds" msgstr[0] "Stechapfelsamen" msgstr[1] "Stechapfelsamen" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -52252,7 +52249,7 @@ msgid_plural "celery seeds" msgstr[0] "Selleriesamen" msgstr[1] "Selleriesamen" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "Einige Selleriesamen." @@ -52263,7 +52260,7 @@ msgid_plural "oat seeds" msgstr[0] "Hafersamen" msgstr[1] "Hafersamen" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "Einige Hafersamen." @@ -52280,7 +52277,7 @@ msgid_plural "wheat seeds" msgstr[0] "Weizensamen" msgstr[1] "Weizensamen" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "Einige Weizensamen." @@ -52297,7 +52294,7 @@ msgid_plural "fried seeds" msgstr[0] "gebratene Samen" msgstr[1] "gebratene Samen" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -52325,7 +52322,7 @@ msgid_plural "coffee beans" msgstr[0] "Kaffeebohnen" msgstr[1] "Kaffeebohnen" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "Einige Kaffeebohnen, können geröstet werden." @@ -52336,7 +52333,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "geröstete Kaffeebohnen" msgstr[1] "geröstete Kaffeebohnen" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "Einige geröstete Kaffeebohnen, können zu Pulver gemahlen werden." @@ -52347,7 +52344,7 @@ msgid_plural "chamomile seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -52362,7 +52359,7 @@ msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -52377,7 +52374,7 @@ msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -52388,7 +52385,7 @@ msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -52399,7 +52396,7 @@ msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -52410,7 +52407,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -52433,8 +52430,7 @@ msgid_plural "bone broths" msgstr[0] "Knochenmarkbrühe" msgstr[1] "Knochenmarkbrühen" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -52464,15 +52460,14 @@ msgid_plural "meat soups" msgstr[0] "Fleischsuppe" msgstr[1] "Fleischsuppen" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "Trottelsuppe" msgstr[1] "Trottelsuppen" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -52512,8 +52507,7 @@ msgid_plural "curries with meat" msgstr[0] "Curry mit Fleisch" msgstr[1] "Currys mit Fleisch" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -52532,10 +52526,8 @@ msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -52603,7 +52595,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "Hühnchen und Klöße" msgstr[1] "Hühnchen und Klöße" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "Eine Suppe mit Hühnchenstücken und Teigbällchen. Nicht schlecht." @@ -52629,7 +52621,7 @@ msgid_plural "chili powder" msgstr[0] "Chilipulver" msgstr[1] "Chilipulver" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -52644,7 +52636,7 @@ msgid_plural "hot sauce" msgstr[0] "Scharfe Soße" msgstr[1] "Scharfe Soßen" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -52657,7 +52649,7 @@ msgid_plural "cinnamon" msgstr[0] "Zimt" msgstr[1] "Zimt" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "Gemahlene Zimtrinde mit einem süßen aber leicht scharfen Geschmack." @@ -52668,7 +52660,7 @@ msgid_plural "curry powder" msgstr[0] "Currypulver" msgstr[1] "Currypulver" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -52684,7 +52676,7 @@ msgid_plural "black pepper" msgstr[0] "schwarzer Pfeffer" msgstr[1] "schwarzer Pfeffer" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "Tiefschwarze, würzige Beeren mit einem scharfen Aroma." @@ -52695,7 +52687,7 @@ msgid_plural "salt" msgstr[0] "Salz" msgstr[1] "Salz" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -52710,7 +52702,7 @@ msgid_plural "Italian seasoning" msgstr[0] "italienische Gewürzmischung" msgstr[1] "italienische Gewürzmischungen" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -52723,7 +52715,7 @@ msgid_plural "seasoned salt" msgstr[0] "Gewürzsalz" msgstr[1] "Gewürzsalze" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -52736,7 +52728,7 @@ msgid_plural "sugar" msgstr[0] "Zucker" msgstr[1] "Zucker" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -52751,7 +52743,7 @@ msgid_plural "sprinkles" msgstr[0] "Sträusel" msgstr[1] "Sträusel" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -52766,7 +52758,7 @@ msgid_plural "wild herbs" msgstr[0] "Wildkräuter" msgstr[1] "Wildkräuter" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -52779,7 +52771,7 @@ msgid_plural "soy sauce" msgstr[0] "Sojasoße" msgstr[1] "Sojasoße" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "Salzige gegorene Sojabohnensoße." @@ -52795,7 +52787,7 @@ msgid_plural "mustard powder" msgstr[0] "Senfpulver" msgstr[1] "Senfpulver" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -52847,7 +52839,7 @@ msgid_plural "starch" msgstr[0] "Stärke" msgstr[1] "Stärke" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -52862,7 +52854,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "gekochtes Löwenzahngrünzeug" msgstr[1] "gekochtes Löwenzahngrünzeug" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "Gekochte Blätter von wildem Löwenzahn. Lecker und nahrhaft." @@ -52873,7 +52865,7 @@ msgid_plural "fried dandelions" msgstr[0] "gebratener Löwenzahn" msgstr[1] "gebratener Löwenzahn" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -52885,7 +52877,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -52896,7 +52888,7 @@ msgid_plural "fried burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -52933,7 +52925,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "gekochtes Wildgemüse" msgstr[1] "gekochtes Wildgemüse" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -52960,7 +52952,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "gekochter Buchweizen" msgstr[1] "gekochte Buchweizen" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -52973,7 +52965,7 @@ msgid_plural "canned corn" msgstr[0] "Dosenmais" msgstr[1] "Dosenmais" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "Konservierter Mais in Wasser. Iss auf!" @@ -52984,7 +52976,7 @@ msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -52995,7 +52987,7 @@ msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -53006,7 +52998,7 @@ msgid_plural "hominy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -53019,7 +53011,7 @@ msgid_plural "cornmeal" msgstr[0] "Maismehl" msgstr[1] "Maismehl" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "Dieses gelbe Maismehl ist nützlich zum Backen." @@ -53030,7 +53022,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "gebackene Bohnen für Vegetarier" msgstr[1] "gebackene Bohnen für Vegetarier" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "Langsam gegarte Bohnen mit Gemüse. Lecker und sehr stopfend." @@ -53041,7 +53033,7 @@ msgid_plural "dried rice" msgstr[0] "getrockneter Reis" msgstr[1] "getrockneter Reis" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -53055,7 +53047,7 @@ msgid_plural "cooked rice" msgstr[0] "gekochter Reis" msgstr[1] "gekochter Reis" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "Ein herzhaftes Gericht aus gegartem weißen Langkornreis." @@ -53066,7 +53058,7 @@ msgid_plural "fried rice" msgstr[0] "gebratener Reis" msgstr[1] "gebratener Reis" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "Leckerer gebratener Reis mit Gemüse. Lecker und sehr stopfend." @@ -53077,7 +53069,7 @@ msgid_plural "beans and rice" msgstr[0] "Bohnen mit Reis" msgstr[1] "Bohnen mit Reis" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -53092,7 +53084,7 @@ msgid_plural "tofu fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -53103,7 +53095,7 @@ msgid_plural "tofu stirfry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -53116,7 +53108,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "Bohnen mit Reis deluxe (vegetarisch)" msgstr[1] "Bohnen mit Reis deluxe (vegetarisch)" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -53195,7 +53187,7 @@ msgid_plural "pesto" msgstr[0] "Pesto" msgstr[1] "Pesto" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "Olivenöl, Basilikum, Knoblauch, Kiefernkerne. Einfach und lecker." @@ -53236,7 +53228,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "Spaghetti al Pesto" msgstr[1] "Spaghetti al Pesto" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "Spaghetti, mit einer Menge Pesto bedeckt. Lecker!" @@ -53261,7 +53253,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "Sauerkraut m. sautierten Zwiebeln" msgstr[1] "Sauerkraut m. sautierten Zwiebeln" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -53307,7 +53299,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -53333,7 +53325,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -53413,7 +53405,7 @@ msgid_plural "sushi rice" msgstr[0] "Sushireis" msgstr[1] "Sushireis" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -53426,7 +53418,7 @@ msgid_plural "onigiri" msgstr[0] "Onigiri" msgstr[1] "Onigiri" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -53441,7 +53433,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "Gemüse-Hosomaki" msgstr[1] "Gemüse-Hosomaki" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -53469,7 +53461,7 @@ msgid_plural "sauerkraut" msgstr[0] "Sauerkraut" msgstr[1] "Sauerkraut" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -53496,7 +53488,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -53507,7 +53499,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -53525,7 +53517,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "Roher Weizen, nicht sehr lecker." @@ -53536,7 +53528,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "Rohe Spaghetti" msgstr[1] "Rohe Spaghetti" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -53549,7 +53541,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "Rohe Lasagne" msgstr[1] "Rohe Lasagne" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -53562,7 +53554,7 @@ msgid_plural "boiled noodles" msgstr[0] "gekochte Nudeln" msgstr[1] "gekochte Nudeln" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "Frischgekochte Nudeln. Schmecken nach nichts aber machen satt." @@ -53573,7 +53565,7 @@ msgid_plural "raw macaroni" msgstr[0] "rohe Makkaroni" msgstr[1] "rohe Makkaroni" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -53586,7 +53578,7 @@ msgid_plural "mac & cheese" msgstr[0] "Makkaroni mit Käse" msgstr[1] "Makkaroni mit Käse" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "Sieh, sobald der Käse rinnt, Kraft dir deine Nudeln bringt." @@ -53597,7 +53589,7 @@ msgid_plural "flour" msgstr[0] "Mehl" msgstr[1] "Mehl" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "Dieses angereicherte weiße Mehl ist nützlich fürs Backen." @@ -53608,7 +53600,7 @@ msgid_plural "bread flour" msgstr[0] "Brotmehl" msgstr[1] "Brotmehl" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -53621,7 +53613,7 @@ msgid_plural "oatmeal" msgstr[0] "Haferflocken" msgstr[1] "Haferflocken" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " @@ -53630,7 +53622,7 @@ msgstr "" "Trockene Flocken plattgedrückter Körner. Sie sind gekocht lecker und " "nahrhaft und eignen sich auch als Trockennahrung für Pferde." -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "Unverarbeiteter Hafer." @@ -53641,7 +53633,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "Gekochte Haferflocken" msgstr[1] "Gekochte Haferflocken" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -53656,7 +53648,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "Gekochte Deluxe-Haferflocken" msgstr[1] "Gekochte Deluxe-Haferflocken" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -53754,7 +53746,7 @@ msgid_plural "oyster crackers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -53790,7 +53782,7 @@ msgid_plural "granola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -53816,7 +53808,7 @@ msgid_plural "fast noodles" msgstr[0] "Schnellnudeln" msgstr[1] "Schnellnudeln" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "Sogenannte Ramen-Nudeln. Können roh gegessen werden." @@ -54016,7 +54008,7 @@ msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -54027,7 +54019,7 @@ msgid_plural "melon seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -54038,7 +54030,7 @@ msgid_plural "banana saplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -54049,7 +54041,7 @@ msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -54060,7 +54052,7 @@ msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -54071,7 +54063,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -54120,7 +54112,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -54166,7 +54158,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -54179,7 +54171,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -54220,7 +54212,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -54330,7 +54322,7 @@ msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -54344,7 +54336,7 @@ msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -54434,7 +54426,7 @@ msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -54448,7 +54440,7 @@ msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -54462,7 +54454,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -54474,7 +54466,7 @@ msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -54487,7 +54479,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -54542,7 +54534,7 @@ msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -54558,7 +54550,7 @@ msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -54572,7 +54564,7 @@ msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -54586,7 +54578,7 @@ msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -54647,7 +54639,7 @@ msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -54661,7 +54653,7 @@ msgid_plural "food cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -54673,7 +54665,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -54697,7 +54689,7 @@ msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -54723,7 +54715,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -54737,7 +54729,7 @@ msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -54753,7 +54745,7 @@ msgid_plural "caffex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -54794,7 +54786,7 @@ msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -54856,7 +54848,7 @@ msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -54877,7 +54869,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -55160,8 +55152,8 @@ msgstr[0] "" msgstr[1] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" @@ -55171,6 +55163,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -55213,6 +55217,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -55333,6 +55343,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -55369,24 +55385,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "" msgstr[1] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -55685,7 +55683,7 @@ msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -55751,7 +55749,7 @@ msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -55811,14 +55809,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -55901,7 +55899,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -55910,7 +55908,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -55922,7 +55920,7 @@ msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -55933,7 +55931,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -55946,7 +55944,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -55965,7 +55963,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -55979,7 +55977,7 @@ msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -56611,7 +56609,7 @@ msgid_plural "rock salt" msgstr[0] "Steinsalz" msgstr[1] "Steinsalz" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -56623,7 +56621,7 @@ msgid_plural "rhodonite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -56636,7 +56634,7 @@ msgid_plural "zincite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -56673,7 +56671,7 @@ msgid_plural "hickory nuts" msgstr[0] "Hickorynuss" msgstr[1] "Hickorynüsse" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -56685,7 +56683,7 @@ msgid_plural "pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -56697,7 +56695,7 @@ msgid_plural "pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -56710,7 +56708,7 @@ msgid_plural "almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -56721,7 +56719,7 @@ msgid_plural "peanuts" msgstr[0] "Erdnuss" msgstr[1] "Erdnüsse" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -56734,7 +56732,7 @@ msgid_plural "hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -56746,7 +56744,7 @@ msgid_plural "chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -56759,7 +56757,7 @@ msgid_plural "walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -57061,6 +57059,18 @@ msgstr "" "Herzkrankheit, Emphysem und kann zu Komplikationen in der Schwangerschaft " "führen." +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -57074,6 +57084,19 @@ msgstr "" "Eine kleine Kartonschachtel. Nicht kleiner als 30 Zentimeter in der " "Ausdehnung." +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -57901,7 +57924,7 @@ msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -57912,7 +57935,7 @@ msgid_plural "smoldering embers" msgstr[0] "schwelende Glut" msgstr[1] "schwelende Glut" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -58141,6 +58164,29 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -58352,7 +58398,7 @@ msgid_plural "superglue" msgstr[0] "Superkleber" msgstr[1] "Superkleber" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Eine Tube starken Klebstoffs. In vielen Fertigungsrezepten verwendet." @@ -58660,7 +58706,7 @@ msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -58814,7 +58860,7 @@ msgid_plural "concrete" msgstr[0] "Beton" msgstr[1] "Beton" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "Etwas Beton, bereit, um in einem Bauprojekt verwendet zu werden." @@ -59739,7 +59785,7 @@ msgid_plural "clockworks" msgstr[0] "Uhrwerk" msgstr[1] "Uhrwerke" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "Eine kleine Auswahl von Zahnrädern und anderem Uhrwerk-Zeugs." @@ -59886,7 +59932,7 @@ msgid_plural "chamomile flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -59912,7 +59958,7 @@ msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -59947,7 +59993,7 @@ msgid_plural "mortar" msgstr[0] "Mörtel" msgstr[1] "Mörtel" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "Etwas Mörtel, bereit, um in einem Bauprojekt verwendet zu werden." @@ -59994,7 +60040,7 @@ msgid_plural "adobe mortar" msgstr[0] "Weicher Lehm-Mörtel" msgstr[1] "Weicher Lehm-Mörtel" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -60007,7 +60053,7 @@ msgid_plural "tanbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -60033,7 +60079,7 @@ msgid_plural "willowbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -60491,7 +60537,7 @@ msgid_plural "raw tobacco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -60818,7 +60864,7 @@ msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -60841,7 +60887,7 @@ msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -61220,6 +61266,98 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -62044,7 +62182,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -62181,7 +62319,7 @@ msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -62194,7 +62332,7 @@ msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -62224,7 +62362,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62240,7 +62378,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62256,7 +62394,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62272,7 +62410,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62288,7 +62426,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62304,7 +62442,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62320,7 +62458,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62336,7 +62474,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62352,7 +62490,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62368,7 +62506,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62384,7 +62522,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62400,7 +62538,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62416,7 +62554,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62432,7 +62570,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62448,7 +62586,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62464,8 +62602,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62481,7 +62618,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62497,7 +62634,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62513,7 +62650,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62529,7 +62666,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62545,7 +62682,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62561,8 +62698,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62584,7 +62720,7 @@ msgid_plural "misc software" msgstr[0] "sonstige Software" msgstr[1] "sonstige Software" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "Irgeindeine Hobbysoftware. Wahrscheinlich nutzlos." @@ -62595,7 +62731,7 @@ msgid_plural "hackPRO" msgstr[0] "hackPRO" msgstr[1] "hackPRO" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "Eine Hackingsoftware." @@ -62606,7 +62742,7 @@ msgid_plural "MediSoft" msgstr[0] "MediSoft" msgstr[1] "MediSoft" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "Eine medizinische Software." @@ -62617,7 +62753,7 @@ msgid_plural "MatheMAX" msgstr[0] "MatheMAX" msgstr[1] "MatheMAX" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "Eine Mathematik-Software." @@ -62628,7 +62764,7 @@ msgid_plural "infection data" msgstr[0] "Infektionsdaten" msgstr[1] "Infektionsdaten" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "Medizinische Daten über Zombieblut." @@ -62639,7 +62775,7 @@ msgid_plural "lab data" msgstr[0] "Labordaten" msgstr[1] "Labordaten" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "Forschungsarchive von einem Regierungslabor." @@ -62650,7 +62786,7 @@ msgid_plural "train data" msgstr[0] "Zugdaten" msgstr[1] "Zugdaten" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "Logistische Daten zu unterirdischen Zugstrecken und Fahrplänen." @@ -62661,7 +62797,7 @@ msgid_plural "neural data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -62979,22 +63115,34 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "Leiche" msgstr[1] "Leichen" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "Kadaver" msgstr[1] "Kadaver" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -63002,7 +63150,7 @@ msgid_plural "skinned %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -63241,7 +63389,7 @@ msgid_plural "trifacet remains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -63577,6 +63725,100 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -65330,7 +65572,7 @@ msgid_plural "headphones" msgstr[0] "Kopfhörer" msgstr[1] "Kopfhörer" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -65410,7 +65652,7 @@ msgid_plural "spare parts" msgstr[0] "Ersatzteil" msgstr[1] "Ersatzteile" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -66066,7 +66308,7 @@ msgid_plural "bokken" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -66078,7 +66320,7 @@ msgstr "" "ihres Fehlens einer scharfen Metallklinge ist sie immer noch ziemlich fähig," " tödliche Wunden zuzufügen." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " @@ -66087,7 +66329,7 @@ msgstr "" "Dies ist ein Trainings-Katana aus massivem Holz, fühlt sich aber viel zu " "leicht an, um eine effektive Waffe zu sein." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -66726,7 +66968,7 @@ msgid_plural "bionic claws" msgstr[0] "bionische Klauen" msgstr[1] "bionische Klauen" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "Kurze scharfe Krallen. Hergestellt aus einem Hightechmaterial." @@ -66961,7 +67203,7 @@ msgid_plural "qiang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -67011,7 +67253,7 @@ msgid_plural "naginata" msgstr[0] "Naginata" msgstr[1] "Naginata" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -67023,7 +67265,7 @@ msgstr "" " Samurai in den frühen Zeitaltern benutzt, oder von ihren Frauen zur " "Verteidigung des Haushalts." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -67031,7 +67273,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -67045,7 +67287,7 @@ msgid_plural "survivor naginata" msgstr[0] "Überlebendennaginata" msgstr[1] "Überlebendennaginatas" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -67193,7 +67435,7 @@ msgid_plural "ji" msgstr[0] "Ji" msgstr[1] "Ji" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -67261,6 +67503,20 @@ msgstr "" "Holzschwerts aussieht, gehauen wurden. Das zusätzliche Gewicht ist nicht " "ausbalanciert, aber die gezackte Schneide macht ein bisschen Schnittschaden." +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -67268,7 +67524,7 @@ msgid_plural "jian" msgstr[0] "Jian" msgstr[1] "Jian" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -67355,14 +67611,14 @@ msgid_plural "tanto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -67376,14 +67632,14 @@ msgid_plural "nodachi" msgstr[0] "Nodachi" msgstr[1] "Nodachi" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -67551,7 +67807,7 @@ msgid_plural "katana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -67634,7 +67890,7 @@ msgid_plural "wakizashi" msgstr[0] "Wakizashi" msgstr[1] "Wakizashis" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -67711,7 +67967,7 @@ msgid_plural "tiger claws" msgstr[0] "Tigerklauen" msgstr[1] "Tigerklauen" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -67963,13 +68219,27 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -67985,7 +68255,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -68029,7 +68299,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -68327,7 +68597,7 @@ msgid_plural "scrap copper" msgstr[0] "Kupferstückchen" msgstr[1] "Kupferstückchen" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -68601,7 +68871,7 @@ msgid_plural "splintered wood" msgstr[0] "Zersplittertes Holz" msgstr[1] "Zersplitterte Hölzer" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -68828,17 +69098,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "Versiegelte Hefekultur" msgstr[1] "Versiegelte Hefekulturen" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "Du öffnest das Fläschchen und erntest die Kultur." -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "Die Hefe ist noch nicht fertig." -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -70113,7 +70383,7 @@ msgid_plural "oars" msgstr[0] "Paar Ruder" msgstr[1] "Paar Ruder" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "Ruder für ein Boot." @@ -70135,7 +70405,7 @@ msgid_plural "inflatable section" msgstr[0] "aufblasbares Segment" msgstr[1] "aufblasbares Segment" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "Ein aufblasbares Bootsegment." @@ -70146,7 +70416,7 @@ msgid_plural "inflatable airbag" msgstr[0] "aufblasbarer Airbag" msgstr[1] "aufblasbarer Airbag" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "Ein aufblasbarer Airbag." @@ -71105,7 +71375,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "Melodienlautsprecher" msgstr[1] "Melodienlautsprecher" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -71123,7 +71393,7 @@ msgid_plural "sheet metal" msgstr[0] "Metallblech" msgstr[1] "Metallbleche" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "Ein dünnes Blech." @@ -71134,7 +71404,7 @@ msgid_plural "wired sheet metal" msgstr[0] "Verkabeltes Metallblech" msgstr[1] "Verkabelte Metallbleche" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -71156,7 +71426,7 @@ msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "Ein Stück Panzerungsplattierung aus Stahl." @@ -71167,7 +71437,7 @@ msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "Ein Stück Panzerungsplattierung aus robuster Superlegierung." @@ -71190,7 +71460,7 @@ msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -71454,6 +71724,7 @@ msgstr[0] "Solarpaneel" msgstr[1] "Solarpaneele" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " @@ -71462,6 +71733,12 @@ msgstr "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -71607,6 +71884,17 @@ msgstr[1] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -72052,7 +72340,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -72111,7 +72399,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -72412,7 +72700,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -72425,7 +72713,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -72553,7 +72841,7 @@ msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -72564,7 +72852,7 @@ msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "Ein kleiner Zylinder aus silbrigem Metall, immer noch sehr warm." @@ -72761,7 +73049,7 @@ msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72774,7 +73062,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72787,7 +73075,7 @@ msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72800,7 +73088,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72813,7 +73101,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72826,7 +73114,7 @@ msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -72839,7 +73127,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72852,7 +73140,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72865,7 +73153,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72878,7 +73166,7 @@ msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72891,7 +73179,7 @@ msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72904,7 +73192,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -73018,7 +73306,7 @@ msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -73044,7 +73332,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -73057,7 +73345,7 @@ msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -73083,7 +73371,7 @@ msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -73116,7 +73404,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -73463,7 +73751,7 @@ msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -74193,7 +74481,7 @@ msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -75644,7 +75932,7 @@ msgid_plural "subzero talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -75858,7 +76146,7 @@ msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -75979,7 +76267,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -75992,7 +76280,7 @@ msgid_plural "Beagle chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -76813,6 +77101,17 @@ msgid "" msgstr "" "Entfernt alle Monster vom Spiel, außer die aus der Kategorie »Wildtiere«." +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -76957,8 +77256,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -77324,6 +77623,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "ein Klick." @@ -77749,7 +78053,7 @@ msgid_plural "tiny fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -77760,7 +78064,7 @@ msgid_plural "small fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -77771,7 +78075,7 @@ msgid_plural "medium fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -77782,7 +78086,7 @@ msgid_plural "large fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -77793,7 +78097,7 @@ msgid_plural "huge fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -77929,7 +78233,7 @@ msgid_plural "whitefish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -77944,7 +78248,7 @@ msgid_plural "largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "Ein Forellenbarsch. Sehr beliebt unter Angelsportlern." @@ -77955,7 +78259,7 @@ msgid_plural "smallmouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -77968,7 +78272,7 @@ msgid_plural "striped bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -77983,7 +78287,7 @@ msgid_plural "white bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -78020,7 +78324,7 @@ msgid_plural "sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -78031,7 +78335,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -78056,7 +78360,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -78067,7 +78371,7 @@ msgid_plural "green sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -78078,7 +78382,7 @@ msgid_plural "longear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -78089,7 +78393,7 @@ msgid_plural "redear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -78100,7 +78404,7 @@ msgid_plural "rock bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -78113,7 +78417,7 @@ msgid_plural "calico bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -78150,7 +78454,7 @@ msgid_plural "channel catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -78161,7 +78465,7 @@ msgid_plural "white catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -78260,7 +78564,7 @@ msgid_plural "fallfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -78287,7 +78591,7 @@ msgid_plural "crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -78321,7 +78625,7 @@ msgstr "" " Dämme gebaut wurden. Sieht so aus, als bekämen sie eine zweite Chance, da " "die Dämme nicht mehr im Betrieb sind." -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -78334,7 +78638,7 @@ msgid_plural "giant crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -78349,7 +78653,7 @@ msgid_plural "colossal crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -79068,7 +79372,7 @@ msgid_plural "fused dragonflies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -79263,7 +79567,7 @@ msgstr[1] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -81016,7 +81320,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -81239,7 +81543,7 @@ msgid_plural "moose" msgstr[0] "Elch" msgstr[1] "Elche" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -81420,7 +81724,7 @@ msgstr[0] "Lamm" msgstr[1] "Lämmer" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -81728,10 +82032,11 @@ msgstr[1] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -81742,6 +82047,17 @@ msgstr "%s schmilzt dahin." msgid "This monster exists only for testing purposes." msgstr "Dieses Monster existiert nur für Testzwecke." +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -84135,7 +84451,7 @@ msgid_plural "sawbones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -84150,7 +84466,7 @@ msgid_plural "doctor burns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -84328,7 +84644,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -84457,17 +84773,18 @@ msgstr[1] "Feuerzombiekinder" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -84955,7 +85272,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -84999,7 +85316,7 @@ msgid_plural "scissorlimbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -85013,7 +85330,7 @@ msgid_plural "hanging innards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -85518,7 +85835,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "Shia LaBeouf" msgstr[1] "Shia LaBeouf" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -87440,7 +87757,7 @@ msgid_plural "wisp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -87984,7 +88301,7 @@ msgid_plural "coelophysis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -87997,7 +88314,7 @@ msgid_plural "dilophosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -88010,7 +88327,7 @@ msgid_plural "ceratosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -88024,7 +88341,7 @@ msgid_plural "spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -88038,7 +88355,7 @@ msgid_plural "allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -88053,7 +88370,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -88067,20 +88384,33 @@ msgid_plural "siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -88093,7 +88423,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -88106,7 +88436,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -88119,7 +88449,7 @@ msgid_plural "compsognathus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -88132,7 +88462,7 @@ msgid_plural "gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -88162,7 +88492,7 @@ msgid_plural "nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -88175,7 +88505,7 @@ msgid_plural "deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -88218,7 +88548,7 @@ msgid_plural "amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -88231,7 +88561,7 @@ msgid_plural "apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -88244,7 +88574,7 @@ msgid_plural "brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -88257,7 +88587,7 @@ msgid_plural "diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -88268,7 +88598,7 @@ msgid_plural "camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -88281,7 +88611,7 @@ msgid_plural "brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -88294,7 +88624,7 @@ msgid_plural "alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -88307,7 +88637,7 @@ msgid_plural "scutellosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -88320,7 +88650,7 @@ msgid_plural "stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -88332,7 +88662,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -88345,7 +88675,7 @@ msgid_plural "ankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -88358,7 +88688,7 @@ msgid_plural "nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -88370,7 +88700,7 @@ msgid_plural "edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -88383,7 +88713,7 @@ msgid_plural "camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -88396,7 +88726,7 @@ msgid_plural "parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -88407,7 +88737,7 @@ msgid_plural "maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -88420,7 +88750,7 @@ msgid_plural "corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -88433,7 +88763,7 @@ msgid_plural "edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -88444,7 +88774,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -88457,7 +88787,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -88470,7 +88800,7 @@ msgid_plural "pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -88483,7 +88813,7 @@ msgid_plural "kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -88497,7 +88827,7 @@ msgid_plural "torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -88510,7 +88840,7 @@ msgid_plural "triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -88525,7 +88855,7 @@ msgid_plural "dimorphodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -88538,7 +88868,7 @@ msgid_plural "pteranodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -88551,7 +88881,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -88564,7 +88894,7 @@ msgid_plural "mosasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -88577,7 +88907,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -88590,7 +88920,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -88603,7 +88933,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -88616,7 +88946,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -88629,7 +88959,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -88642,7 +88972,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -88655,7 +88985,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -88758,6 +89088,20 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -89271,20 +89615,20 @@ msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" @@ -89344,7 +89688,6 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -89365,25 +89708,88 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -89606,6 +90012,19 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -89716,7 +90135,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -90176,6 +90595,7 @@ msgstr[1] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -90225,6 +90645,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "" msgstr[1] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -90629,6 +91055,19 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -90661,7 +91100,7 @@ msgid_plural "Rage Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -90674,7 +91113,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -90688,7 +91127,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -90746,7 +91185,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -90809,7 +91248,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -91053,12 +91492,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -91067,66 +91519,67 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -91134,12 +91587,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -91148,12 +91601,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -91162,16 +91615,16 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -91201,7 +91654,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -91214,7 +91667,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -91227,7 +91681,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -91240,20 +91694,26 @@ msgid_plural "skeletal siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -91266,7 +91726,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -91292,7 +91752,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -91304,7 +91764,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -91317,8 +91777,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -91337,7 +91797,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -91351,7 +91811,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -91364,7 +91824,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -91377,7 +91837,7 @@ msgid_plural "armored diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -91390,7 +91850,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -91403,7 +91863,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -91416,7 +91876,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -91429,7 +91889,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -91442,7 +91902,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -91456,7 +91916,7 @@ msgid_plural "Bone Fortress" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -91470,7 +91930,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -91483,7 +91943,7 @@ msgid_plural "armored edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -91496,7 +91956,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -91509,7 +91969,7 @@ msgid_plural "armored maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -91522,7 +91982,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -91535,7 +91995,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -91548,7 +92008,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -91561,7 +92021,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -91574,7 +92034,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -91587,7 +92047,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -91600,7 +92060,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -91613,7 +92073,7 @@ msgid_plural "armored torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -91626,7 +92086,7 @@ msgid_plural "armored triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -91639,7 +92099,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -91653,7 +92113,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -91667,7 +92127,7 @@ msgid_plural "Goliath Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -91680,7 +92140,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -91693,7 +92153,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -91734,7 +92194,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -91750,7 +92210,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -92063,7 +92523,7 @@ msgid_plural "forge hounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -92369,7 +92829,7 @@ msgid_plural "hunllef rams" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -92502,6 +92962,22 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -92779,7 +93255,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -93081,7 +93557,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -98165,7 +98641,7 @@ msgstr[1] "Berghelme (an)" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -98209,7 +98685,7 @@ msgstr "Ausschalten" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -99230,7 +99706,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "RX11-Stimulansverabreichungssystem" msgstr[1] "RX11-Stimulansverabreichungssystem" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -99911,17 +100387,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "Schützen-Ohrenschützer" msgstr[1] "Schützen-Ohrenschützer" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "Du schaltest die Ohrenschützer an." -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "Die Batterien des Ohrenschützers sind leer." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -99930,7 +100406,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -100167,7 +100643,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -100181,6 +100656,14 @@ msgid_plural "military flight helmets (on)" msgstr[0] "" msgstr[1] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -100541,7 +101024,7 @@ msgid_plural "bagpipes" msgstr[0] "Dudelsack" msgstr[1] "Dudelsäcke" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -101180,7 +101663,7 @@ msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -101255,7 +101738,7 @@ msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -102001,7 +102484,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -103933,7 +104416,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -103945,7 +104428,7 @@ msgstr "" " vier bekannten Waffen aus der Folklore, gemeinsam mit dem Dao-Säbel, dem " "Qiang-Speer und dem Gun-Stab." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -104053,7 +104536,7 @@ msgid_plural "dao" msgstr[0] "Dao" msgstr[1] "Dao" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -104112,7 +104595,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -104124,7 +104607,7 @@ msgstr "" "eine tödliche Klinge, sogar, wenn sie kleiner als ihre berühmteren " "Verwandten ist." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -104160,7 +104643,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -104260,7 +104743,7 @@ msgstr "" " bevorzugte Waffe von Gentlemen und Haudegen aus. Es ist leicht und schnell " "und macht aus jedem Kampf einen stilvollen Kampf." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " @@ -104269,7 +104752,7 @@ msgstr "" "Dies ist ein seltenes Schwert aus Japan. Tödlich gegen ungepanzerte Ziele " "und immer noch sehr effektiv gegen Rüstungen." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -104288,7 +104771,7 @@ msgstr "" "Dies ist ein großes zweihändiges Schwert aus Deutschland. Du bist dir nicht " "ganz sicher, dass es so verbogen sein sollte." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -104460,7 +104943,7 @@ msgid_plural "synthetic fabric" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -105302,7 +105785,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "Elektronische Handschellen" msgstr[1] "Elektronische Handschellen" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -107850,13 +108333,9 @@ msgstr "Die Batterien der Hochleistungstaschenlampe sind leer." #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" -"Dies ist eine rohrförmige Hochleistungs-Aluminium-LED-Taschenlampe, wie sie " -"oft von Sicherheitspersonal benutzt wird. Ist als Nahkampfwaffe halbwegs zu " -"gebrauchen. Die Taschenlampe zu benutzen, wird sie einschalten und Licht " -"spenden, angenommen, dass sie aufgeladene Batterien hat." #: lang/json/TOOL_from_json.py msgid "heavy duty flashlight (on)" @@ -108613,6 +109092,39 @@ msgstr[1] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -109368,7 +109880,7 @@ msgid_plural "shears" msgstr[0] "Schurschere" msgstr[1] "Schurscheren" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -109379,7 +109891,7 @@ msgid_plural "electric shears" msgstr[0] "Elektrische Schurschere" msgstr[1] "Elektrische Schurscheren" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -109426,6 +109938,32 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -110017,7 +110555,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -110031,7 +110569,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -110545,8 +111083,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -110554,8 +111092,8 @@ msgid_plural "%s (happy)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -110563,8 +111101,8 @@ msgid_plural "%s (focus)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -110572,8 +111110,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -110581,7 +111119,7 @@ msgid_plural "%s (wake up)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -111068,7 +111606,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -111322,13 +111860,13 @@ msgid_plural "loose caltrops" msgstr[0] "lose Krähenfüße" msgstr[1] "lose Krähenfüße" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "Du breitest die Krähenfüße aus auf: %s." -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -111344,13 +111882,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "lose Glaskrähenfüße" msgstr[1] "lose Glaskrähenfüße" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "Du breitest die Glaskrähenfüße aus auf: %s. " -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -111856,6 +112394,21 @@ msgstr "" "Dies ist ein drahtloser batteriebetriebener Bohrer mit einer Auswahl an " "Bohreinsätzen zum Bohren." +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -112170,7 +112723,7 @@ msgid_plural "pliers" msgstr[0] "Zange" msgstr[1] "Zange" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " @@ -112180,6 +112733,21 @@ msgstr "" " geeignet ist. Alles, was zu komplex ist, wird einen Schraubenschlüssel " "benötigen." +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -112241,6 +112809,33 @@ msgstr "" "Abtrieben. Damit hat man garantiert die richtigen Werkzeuge für präzisere " "Arbeiten." +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -112383,12 +112978,26 @@ msgstr "" "ist zu klein, um damit Leichen zu schlachten." #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" -msgstr[0] "Schraubenschlüssel" -msgstr[1] "Schraubenschlüssel" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" -#. ~ Description for wrench +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " @@ -112398,6 +113007,20 @@ msgstr "" "Nahkampfwaffe sein und wird in vielen mechanischen Anfertigungsrezepten " "verwendet." +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -112708,38 +113331,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" -"Der Chicken-Walker steht auf, schwankt von Ihnen weg und beginnt, das Gebiet" -" zu vermessen." - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -112770,6 +113361,12 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -113007,8 +113604,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -113465,7 +114062,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -113912,7 +114509,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -113959,7 +114556,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -113977,7 +114574,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -114982,6 +115579,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -115033,6 +115639,32 @@ msgstr[1] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" +"Der Chicken-Walker steht auf, schwankt von Ihnen weg und beginnt, das Gebiet" +" zu vermessen." + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -115954,7 +116586,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -116431,6 +117063,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -117311,15 +117947,14 @@ msgstr "" "machen, wenn du gehst." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "Legierungsplattierung – Arme" +msgid "Intradermal Alloy - Arms" +msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -117338,37 +117973,36 @@ msgstr "" "umgeleitet. Wenn du weinst, musst du spucken oder deine Tränen schlucken." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "Legierungsplattierung – Beine" +msgid "Intradermal Alloy - Legs" +msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -117379,8 +118013,8 @@ msgstr "Batteriesystem" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -123326,8 +123960,8 @@ msgstr "Du hast eine infizierte Bisswunde." #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." -msgstr "Deine Bisswunde fühlt sich infiziert an." +msgid "Your wound feels infected." +msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus #. Filled'. @@ -128158,8 +128792,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "»Bonk!«" @@ -128175,9 +128808,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "»Schepper!«." @@ -128853,7 +129485,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "»Knirsch!«." @@ -131146,7 +131778,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "Schmiede" @@ -131281,6 +131914,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -133944,14 +134591,14 @@ msgstr "" "nützlich finden." #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -134104,16 +134751,16 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -135162,20 +135809,17 @@ msgstr "" "Patrone." #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" -msgstr[0] "FN Five-Seven" -msgstr[1] "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" +msgstr[0] "" +msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" -"Entworfen, um mit FNs proprietärer 5,7×28-mm-Munition zu funktionieren ist " -"die Five-Seven eine leichtgewichtige Pistole mit sehr hoher Kapazität; sie " -"wird am besten gegen gerüstete Gegner eingesetzt." #: lang/json/gun_from_json.py msgid "FN P90" @@ -137706,6 +138350,19 @@ msgid_plural "acid dart guns" msgstr[0] "" msgstr[1] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -140347,13 +141004,10 @@ msgstr[1] "Zweibeine" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" -"Zweibeine werden üblicherweise auf Gewehren und Maschinengewehren als eine " -"vordere Stütze benutzt, um die Bewegung zu verringern. Obwohl sie die " -"Handhabbarkeit des Rückstoßes stark verbessern, können sie nur auf " -"bestimmten Oberflächen benutzt werden und es braucht lange, sie anzubringen." #: lang/json/gunmod_from_json.py msgid "modified bipod" @@ -140364,10 +141018,10 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -140894,22 +141548,22 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" -msgstr "Du nimmst den Fisch aus und entgrätest ihn" +msgid "You gut and fillet the fish." +msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" -"Vorsichtig knackst du das Exoskelett auf, um an das darunter liegende " -"Fleisch zu gelangen" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" -"Du suchst nach rettenswerter Bionik-Hardware in dem, was von diesem " -"fehlgeschlagenem Experiment noch übrig geblieben ist." #: lang/json/harvest_from_json.py msgid "" @@ -143345,6 +143999,11 @@ msgstr "" "Als Waffe ist dieser Gegenstand langlebig und wird den " "Belastungen des Kampfes widerstehen." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -144287,6 +144946,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "Hochscrollen" @@ -144455,6 +145121,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "Seitenwechsel getragener Kleidung" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "Inventarzeichen zu Kleidung zuweisen" @@ -145567,6 +146237,10 @@ msgstr "Cursor nach oben bewegen" msgid "Move cursor down" msgstr "Cursor nach unten bewegen" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "Diesen Tastenbildschirm verlassen" @@ -145767,6 +146441,20 @@ msgstr "Ja" msgid "No" msgstr "Nein" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "Abbrechen" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -147197,13 +147885,13 @@ msgstr "" "Ein Standardmagazin mit 20 Schuss für die Skorpion Vz. 61, mit .32 ACP." #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -147265,13 +147953,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -147908,14 +148596,14 @@ msgstr "" "es ursprünglich für das leichte Maschinengewehr RPK-74 ausgelegt wurde." #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." -msgstr "Ein Standardkapazitätsmagazin zur Verwendung mit der FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." +msgstr "" #: lang/json/magazine_from_json.py msgid "P90 50-round magazine" @@ -151396,6 +152084,16 @@ msgstr "-Pfad" msgid "PLEASE No fish cleaning or dish washing." msgstr "BITTE – Hier keine Fische ausnehmen oder Geschirr spülen." +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -151820,8 +152518,8 @@ msgstr "Aikido" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -151845,7 +152543,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -151859,7 +152558,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -151872,9 +152571,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "Boxen" @@ -152034,7 +152762,7 @@ msgstr "Capoeira-Tempo" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -152049,7 +152777,8 @@ msgstr "Kranich-Kung-Fu" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -152079,17 +152808,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" -msgstr "Flug des Kranichs" +msgid "Crane's Stance" +msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -152100,10 +152828,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "Flug des Kranichs" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -152114,9 +152856,10 @@ msgstr "Drachen-Kung-Fu" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -152131,35 +152874,56 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" -msgstr "Flug des Drachen" +msgid "Dragon's Knowledge" +msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+10% bash damage.\n" +"Lasts 3 turns." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" +"\n" +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" +msgstr "Drachenwirbel" + #: lang/json/martial_art_from_json.py msgid "Eskrima" msgstr "Eskrima" @@ -152251,6 +153015,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "Parieren" @@ -152308,7 +153086,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -152322,8 +153100,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -152337,6 +153116,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -152388,6 +153168,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "Karate" @@ -152481,6 +153274,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "Leopard-Kung-Fu" @@ -152627,6 +153435,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "Muay Thai" @@ -152967,16 +153790,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -153079,7 +153903,7 @@ msgstr "Sōjutsu-Stellung" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -153186,33 +154010,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -153337,7 +154161,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -153538,6 +154362,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -153598,10 +154437,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -153702,10 +154542,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -154354,7 +155195,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -154364,11 +155220,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -154462,6 +155319,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -154474,21 +155345,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -154566,6 +155438,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -156322,7 +157208,7 @@ msgstr "Ich glaube nicht, dass wir ihn gekriegt haben." msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -156544,7 +157430,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -156764,7 +157650,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "Beweise, dass du ein Überlebenskünstler bist" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -156837,8 +157723,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "Sammele Rohrkolbenstängel, um Rohrkolbengelee herzustellen" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -157019,7 +157904,7 @@ msgstr "Dann sollst du es noch einmal versuchen, bis du es hörst." msgid "Protect fisherman's daughter" msgstr "Verteidige die Tochter vom Fischer" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -157035,7 +157920,7 @@ msgstr "-" msgid "Lighthouse" msgstr "Leuchtturm" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "Führe Mikhail zum Leuchtturm." @@ -157075,7 +157960,7 @@ msgstr "" msgid "House cleaning" msgstr "Haus putzen" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "Reinige den Leuchtturm von mit Mikhail." @@ -157110,7 +157995,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -157141,7 +158026,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -157183,7 +158068,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "Repariere Leichtturm" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -157225,16 +158110,50 @@ msgstr "Sehr gut, ! Nun können wir nur noch abwarten..." msgid "Protect fisherman's wife" msgstr "Verteidige die Frau vom Fischer" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "Finde 100 Salz." @@ -157288,7 +158207,7 @@ msgstr "Mach dir darüber keine Sorgen, so wichtig ist es nicht. " msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "Finde 5 Glasgefäße." @@ -157347,7 +158266,7 @@ msgstr "Das ist keine große Sache, es ist nicht so dringend. " msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "Finde ein Fleischermesser." @@ -157396,7 +158315,7 @@ msgstr "Ich bin dankbar für die Hilfe, die du geleistet hast. " msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -157445,7 +158364,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -157472,7 +158391,7 @@ msgstr "" msgid "Sweets" msgstr "Süßigkeiten" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "Finde 25 Brombeeren." @@ -157507,7 +158426,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -158426,7 +159345,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -158461,7 +159380,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -158498,7 +159417,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -158533,7 +159452,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -158561,7 +159480,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -158613,7 +159532,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -158644,7 +159563,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -158673,7 +159592,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -158703,7 +159622,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -158972,8 +159891,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -159385,7 +160303,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -159426,7 +160344,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -159457,7 +160375,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -159539,7 +160457,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -159576,7 +160494,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -159620,7 +160538,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "Hinterhof säubern" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -159675,7 +160593,7 @@ msgstr "" msgid "Missing Caravan" msgstr "Karawane vermisst" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -159717,7 +160635,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "Prognose holen" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -159760,7 +160678,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -159799,7 +160717,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -159844,7 +160762,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -159855,6 +160773,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -160050,7 +161026,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -160105,7 +161081,7 @@ msgstr "" msgid "Kill Bandits" msgstr "Töte Banditen" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -160149,7 +161125,7 @@ msgstr "" msgid "Deal with Informant" msgstr "Kümmere dich um Informanten" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -160196,11 +161172,64 @@ msgstr "" "Danke! Wenn irgendjemand anderes danach fragt, werde ich mich um die " "Erklärungen kümmern." +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" +"Gute Arbeit! Ich war mir nicht sicher, zu was ich dich geschickt habe." + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -160228,16 +161257,11 @@ msgstr "" "Die Büsche nach irgendwelchen Spuren absuchen? Ich bin kein " "Pfadfinderexperte, aber du solltest in der Lage sein, irgendwas zu finden." -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" -"Gute Arbeit! Ich war mir nicht sicher, zu was ich dich geschickt habe." - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -160310,7 +161334,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -160360,7 +161384,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -160405,7 +161429,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -160446,11 +161470,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -160493,7 +161518,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -160541,7 +161566,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -160585,7 +161610,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -162442,7 +163467,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -162461,7 +163486,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -162488,7 +163513,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -162522,7 +163547,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -162569,7 +163594,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -163357,6 +164382,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -164049,14 +165098,14 @@ msgstr "Dein Herz rast wild, während sich die Injektion festsetzt." #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." -msgstr "Ergriff seine bestialische Natur." +msgid "Embraced their bestial nature." +msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." -msgstr "Ergriff seine bestialische Natur." +msgid "Embraced their bestial nature." +msgstr "" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py @@ -164798,6 +165847,28 @@ msgstr "" "Du bist ein Schüler des Giftklans. Du beginnst mit einem der Fünf Tödlichen " "Gifte: Tausendfüßler, Viper, Skorpion, Echse oder Kröte." +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "Haar: schwarz, Bürstenschnitt" @@ -165716,7 +166787,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -165727,6 +166797,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -165876,7 +166953,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -166154,9 +167231,11 @@ msgstr "Furchterregend" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" +"Es gibt etwas an dir, was Kreaturen Angst macht und sie werden " +"wahrscheinlicher versuchen, zu fliehen." #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -169567,8 +170646,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -169846,8 +170925,8 @@ msgstr "Stark" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" -msgstr "Deine Muskeln sind ein bisschen stärker. Stärke +1" +msgid "Your muscles are a little stronger. +1 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Strong" @@ -169855,8 +170934,8 @@ msgstr "Sehr stark" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" -msgstr "Deine Muskeln sind stärker. Stärke +2" +msgid "Your muscles are stronger. +2 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Strong" @@ -169864,8 +170943,8 @@ msgstr "Extrem stark" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" -msgstr "Deine Muskeln sind viel stärker. Stärke +4" +msgid "Your muscles are much stronger. +4 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Strong" @@ -169873,8 +170952,8 @@ msgstr "Wahnsinnig stark" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" -msgstr "Deine Muskeln stehen bemerkenswert hevor. Stärke +7" +msgid "Your muscles are noticeably bulging. +7 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Strength" @@ -169891,8 +170970,8 @@ msgstr "Geschickt" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" -msgstr "Du bist ein bisschen wendiger. Geschicklichkeit +1" +msgid "You are a little nimbler. +1 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Dextrous" @@ -169900,8 +170979,8 @@ msgstr "Sehr geschickt" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" -msgstr "Du bist wendiger. Geschicklichkeit +2" +msgid "You are nimbler. +2 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Dextrous" @@ -169909,8 +170988,8 @@ msgstr "Extrem geschickt" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" -msgstr "Du bist wendig und schnell. Geschicklichkeit +4" +msgid "You are nimble and quick. +4 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Dextrous" @@ -169918,8 +170997,8 @@ msgstr "Wahnsinnig geschickt" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" -msgstr "Du bist viel wendiger als zuvor. Geschicklichkeit +7" +msgid "You are much nimbler than before. +7 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Dexterity" @@ -169936,8 +171015,8 @@ msgstr "Klug" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" -msgstr "Du bist etwas klüger. Intelligenz +1" +msgid "You are a little smarter. +1 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Smart" @@ -169945,8 +171024,8 @@ msgstr "Sehr klug" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" -msgstr "Du bist klüger. Intelligenz +2" +msgid "You are smarter. +2 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Smart" @@ -169955,9 +171034,8 @@ msgstr "Extrem klug" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" -"Du bist viel klüger und dein Schädel tritt etwas hervor. Intelligenz +4" #: lang/json/mutation_from_json.py msgid "Insanely Smart" @@ -169966,10 +171044,8 @@ msgstr "Wahnsinnig klug" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" -"Dein Schädel sticht merklich hervor mit deinem eindrucksvollem Gehirn. " -"Intelligenz +7" #: lang/json/mutation_from_json.py msgid "Prime Intelligence" @@ -170002,8 +171078,8 @@ msgstr "Wahrnehmend" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" -msgstr "Deine Sinne sind etwas schärfer. Wahrnehmung +1" +msgid "Your senses are a little keener. +1 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Perceptive" @@ -170011,8 +171087,8 @@ msgstr "Sehr wahrnehmend" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" -msgstr "Deine Sinne sind schärfer. Wahrnehmung +2" +msgid "Your senses are keener. +2 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Perceptive" @@ -170020,8 +171096,8 @@ msgstr "Extrem wahrnehmend" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" -msgstr "Deine Sinne sind viel schärfer. Wahrnehmung +4" +msgid "Your senses are much keener. +4 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Perceptive" @@ -170029,9 +171105,8 @@ msgstr "Wahnsinnig wahrnehmend" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" -"Du kannst Dinge wahrnehmen, die du dir nie vorstelltest. Wahrnehmung +7" #: lang/json/mutation_from_json.py msgid "Prime Perception" @@ -170601,7 +171676,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -170730,10 +171805,8 @@ msgstr "Sehr schläfrig" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" -"Du musst recht häufig schlafen. Ungefähr die Hälfte deiner Zeit verbringst " -"du im oder ums Bett." #: lang/json/mutation_from_json.py msgid "Weakening" @@ -175528,6 +176601,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "Cyborg" @@ -175563,6 +176637,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -176121,6 +177203,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -176256,6 +177346,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -176424,6 +177518,10 @@ msgstr "Makler" msgid "Guard" msgstr "Wache" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "Makayla Sanchez" @@ -176592,6 +177690,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -177535,6 +178637,10 @@ msgstr "Schleimgrube" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -178224,6 +179330,10 @@ msgstr "Stachelgraben" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "Schmiede in Vorbereitung" @@ -178232,24 +179342,40 @@ msgstr "Schmiede in Vorbereitung" msgid "blacksmith shop" msgstr "Schmiede" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -178616,6 +179742,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -180080,6 +181210,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -180198,6 +181382,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -180234,7 +181446,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -180247,7 +181459,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -180858,6 +182070,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -181126,6 +182364,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -181252,6 +182544,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -181300,6 +182620,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -181322,6 +182670,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -186197,6 +187597,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -190580,6 +192038,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "Fasernverdrillung" @@ -195595,6 +197075,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -195645,6 +197647,63 @@ msgstr "" msgid "Farm processing shack" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "Kundschafte Land für eine Garage aus." @@ -195706,6 +197765,524 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "" @@ -195910,6 +198487,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -196604,6 +199557,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -196869,60 +200461,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -197757,7 +201658,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -197769,12 +201674,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -197782,11 +201697,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -197949,6 +201874,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -200140,6 +204121,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -200461,7 +204468,7 @@ msgstr "" " Diese Fertigkeit spielt in der Fertigung zahlreicher Dinge eine wichtige " "Rolle." -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "Nahrungsverarb." @@ -201380,12 +205387,9 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" -"Wenn du von einer Zombiehorde gejagt wirst, versuch dich in die U-Bahn zu " -"verscharren, geh ein oder zwei Felder umher, dann komm wieder zurück nach " -"oben." #: lang/json/snippet_from_json.py msgid "" @@ -202336,22 +206340,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" -"Bin mir nicht sicher, ob Mike noch bei Verstand ist. Er hatte das Pech, in " -"eine Schule gefahren zu werden. Dieses Erlebnis brach ihn mehr als seine " -"Rippen." #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" -"Ein Gedanke über Sprengstoffe: Wenn du immer noch rennen kannst, und es noch" -" nicht »Bumm« gemacht hat, renn weiter. Es gibt keinen überflüssigen Abstand" -" zwischen dir und einer Stange Dynamit." #: lang/json/snippet_from_json.py msgid "Avoid using launchers in narrow hallways, you might miss." @@ -207407,6 +211406,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -207415,7 +211680,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -207532,7 +211797,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -212672,7 +216937,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -212731,7 +216996,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -212744,7 +217009,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -212762,17 +217027,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -212851,7 +217116,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -212961,8 +217226,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -213370,7 +217635,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -213380,8 +217645,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -214820,6 +219085,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -217140,7 +221467,7 @@ msgstr "Lass mich endlich etwas töten!" msgid "I'm your best friend, right?" msgstr "Ich bin dein bester Freund, oder?" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "Ich liebe dich!" @@ -217822,6 +222149,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "Ha-ha! Ein amüsantes Katzenfoto." + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "Ausgezeichnete Naturbilder." + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "Ein paar sehr interessante Reisefotos." + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "Bilder eines Konzerts einer polulären Band." + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "Fotos von irgendeinem luxuriösem Haus." + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "Du fühlst dich nostalgisch, während du dieses Foto anstarrst." + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "Mit Sicherheit." + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "Ich sehe es ganz deutlich." + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "Ohne Zweifel." + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "Ja, auf jeden Fall." + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "Verlass dich drauf!" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "So, wie ich es sehe, ja." + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "Höchstwahrscheinlich." + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "Die Aussichten sehen gut aus." + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "Ja." + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "Die Zeichen stehen auf ja." + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "In Nebel gehüllt erscheint die Antwort: »Versuchs noch einmal.«" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "Frag später noch einmal." + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "Das sollte ich dir jetzt besser noch nicht sagen." + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "Konzentriere dich und frag noch einmal." + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "Ich würde nicht darauf wetten." + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "Meine Antwort ist nein." + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "Meine Quellen sagen »Nein«." + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "Sieht nicht so gut aus." + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "Sehr zweifelhaft." + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -217840,6 +222279,21 @@ msgstr "»wir werden das durchstehen!«" msgid "\"i'm here for you!\"" msgstr "»ich bin für dich da!«" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "»WIR HATTEN RECHT DIE REGIERUNG HAT'S GETAN«" @@ -219253,6 +223707,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -221687,6 +226219,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -221796,6 +226335,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -221819,6 +226376,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -223352,7 +227916,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -223522,19 +228086,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -223607,95 +228171,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "Willst du mit mir spielen?" +msgid "\"Wanna play with me?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "Sing mit mir!" +msgid "\"Sing with me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" -msgstr "Bitte nimm mich mit!" +msgid "\"I love you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "Kann ich einen Keks haben?" +msgid "\"Please take me with you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "Lasst uns zusammen spielen!" +msgid "\"May I have a cookie?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" -msgstr "Zeit zum Spielen!" +msgid "\"Let's play together!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" -msgstr "Mjam, mjam, mjam! Lecker!" +msgid "\"Time to play!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" -msgstr "Bist du meine Mami?" +msgid "\"Om nom nom! Delicious!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" -msgstr "Oh, wie lustig!" +msgid "\"Are you my mommy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" -msgstr "Du bist mein bester Freund!" +msgid "\"Oh, how fun!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" -msgstr "Hihi!" +msgid "\"You're my best friend!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" -msgstr "Lasst uns Spaß haben!" +msgid "\"Heehee!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" -msgstr "Lasst uns eine Teeparty machen!" +msgid "\"Let's have fun!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" -msgstr "Du bist spitze!" +msgid "\"Let's have a tea party!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." -msgstr "Das solltest du nicht getan haben." +msgid "\"You're the best!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "Ich hasse dich." +msgid "\"Let's play… Russian roulette.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" -msgstr "Los, bring dich um!" +msgid "\"I hate you.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" -msgstr "Stirb für mich!" +msgid "\"Big Brother is watching you…\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" -msgstr "Warum stirbst du nicht?" +msgid "\"Die for me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -223703,33 +228271,32 @@ msgid "AAAIEEEEEEE!" msgstr "KREISCH!" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" -msgstr "FICK DICH!" +msgid "\"FUCK YOU!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" -msgstr "Was hast du mit meiner Mami getan?" +msgid "\"What did you do with my Mommy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "Hallo, Kinder. Wollt ihr was zum Naschen?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" -msgstr "Da unten treiben sie ALLE!" +msgid "\"Down here, they ALL float!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" -msgstr "Brauchst du wirklich so viel Honig?" +msgid "\"Do you really need that much honey?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" -"Meine vorherige Besitzerin quiekte wie eine Sau, als ich sie ausweidete!" #: lang/json/speech_from_json.py msgid "BARK!" @@ -223744,19 +228311,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -224867,6 +229430,10 @@ msgstr "Lebensmittelgeschäft" msgid "Gun Store" msgstr "Waffengeschäft" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "Garage" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "Pfandleihgeschäft" @@ -226301,6 +230868,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -234342,6 +238913,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -234988,6 +240337,10 @@ msgstr "Irgendwas, wobei ich helfen kann?" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -235057,6 +240410,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -237560,10 +242924,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -241506,10 +246866,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -241860,6 +247216,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -242195,6 +247660,15 @@ msgid "Is there any way I can join the 'Old Guard'?" msgstr "" "Gibt es irgendeine Möglichkeit, wie ich der »Alten Garde« beitreten kann?" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "Braucht die Alte Garde irgendwas?" @@ -242312,6 +247786,58 @@ msgstr "" " eine großarige Möglichkeit, dir selbst einen Namen unter den stärksten noch" " lebenden Menschen zu machen." +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -245188,6 +250714,23 @@ msgstr "Nicht im Moment, versuch es später vielleicht noch mal." msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -245373,20 +250916,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "Packt eure Sachen, . Wir gehen auf eine Reise." -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "Du blockst %s ab und lieferst einen Konterangriff" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr " blockt %s ab und lieferst einen Konterangriff" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "Entwaffnen" @@ -245994,20 +251523,6 @@ msgstr "Du entwaffnest %s mit deiner Peitsche" msgid " disarms %s using their whip" msgstr " entwaffnet %s mit der Peitsche" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "Konterangriff" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "Du verpasst %s einen Konterangriff" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr " verpasst %s einen Konterangriff" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "Täuschungsmanöver" @@ -246043,54 +251558,44 @@ msgid " jabs deftly at %s" msgstr "Geschickt verpasst %s einen Jab" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" -msgstr "" +msgid "You smoothly throw %s" +msgstr "Reibungslos wirfst du %s" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly throw %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -246174,20 +251679,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "Zurückschlagen" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "Du fängst den Angriff von %s ab und schlägst zurück" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr " fängt %s und kontert" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -246306,34 +251797,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "Kranichflattern" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "Kranichschlag" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -246349,45 +251812,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" -msgstr "" +msgid "Crane Flap" +msgstr "Kranichflattern" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" -msgstr "" +msgid "Crane Strike" +msgstr "Kranichschlag" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -246471,18 +251934,18 @@ msgid " combination strikes %s" msgstr " kombischlägt %s" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" -msgstr "Du verpasst %s einen Puño" +msgid "You deliver a stunning strike to %s" +msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" -msgstr " verpasst %s einen Puño" +msgid " delivers a stunning strike to %s" +msgstr "" #: lang/json/technique_from_json.py msgid "Low Strike" @@ -246523,7 +251986,7 @@ msgid " lunges at %s" msgstr " stürzt sich auf %s" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -246536,6 +251999,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -246682,20 +252149,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -246800,20 +252253,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -246917,20 +252356,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -247254,20 +252679,6 @@ msgstr "" msgid " lashes out at %s with a vicious Snake Strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Push" -msgstr "Schieben" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You push %s away" -msgstr "Du schiebst %s weg" - -#: lang/json/technique_from_json.py -#, python-format -msgid " pushes %s away" -msgstr " schiebt %s weg" - #: lang/json/technique_from_json.py msgid "Shove" msgstr "" @@ -247292,6 +252703,16 @@ msgstr "Du bringst %s zum Stolpern" msgid " deftly trips %s" msgstr " bringt %s zum Stolpern" +#: lang/json/technique_from_json.py +#, python-format +msgid "You fake a thrust at %s" +msgstr "" + +#: lang/json/technique_from_json.py +#, python-format +msgid " fakes a thrust at %s" +msgstr "" + #: lang/json/technique_from_json.py msgid "Snatch Weapon" msgstr "" @@ -247490,20 +252911,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -248264,20 +253671,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -248376,20 +253769,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -248432,20 +253811,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -250915,6 +256280,18 @@ msgstr "" "Ein relativ junger Setzling einer ungewissen Art. Es könnte Jahrzehnte " "dauern, bevor er ausgewachsen ist, also hat es keinen Sinn, zu warten." +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "Apfelbaum" @@ -254614,24 +259991,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -254639,32 +260016,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -254672,35 +260049,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -254708,33 +260080,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -254742,10 +260114,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -254753,10 +260125,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -254764,40 +260136,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -254805,21 +260175,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -254827,44 +260193,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -254872,14 +260229,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" +msgid "reinforced quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -254897,12 +260250,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -254910,21 +260258,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -254932,10 +260276,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -254943,7 +260287,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -254952,10 +260296,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -254964,21 +260308,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -254986,10 +260326,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -254998,10 +260338,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -255009,7 +260349,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -255018,26 +260358,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -255051,11 +260391,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -257596,6 +262932,75 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " @@ -257605,6 +263010,24 @@ msgstr "" "Wasserkreislauf. Verbrennt Kohle oder Holzkohle aus einem Fahrzeug-" "Brennstofflager, um Dampf zu erzeugen." +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py @@ -257613,6 +263036,26 @@ msgstr "" "Eine Tür. Hat ein Fenster, damit du nach draußen sehen kannst, selbst, wenn " "sie geschlossen ist." +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "undurchsichtige Türe" @@ -258052,6 +263495,57 @@ msgstr "" msgid "An electric motor." msgstr "Ein Elektromotor." +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -258566,6 +264060,15 @@ msgstr "Ein Gang." msgid "wooden aisle" msgstr "Holzgang" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -258709,6 +264212,10 @@ msgstr "klappbare Holzkiste" msgid "wood table" msgstr "Holztisch" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "Holz-Bootsrumpf" @@ -258780,6 +264287,10 @@ msgstr "Ein Rahmen, der ein paar Lampen und Steuerungen enthält." msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -258893,6 +264404,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -260166,8 +265683,8 @@ msgstr "Müdigkeit" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "Müdigkeit" @@ -262978,6 +268495,18 @@ msgstr "Eigenschaften" msgid "Coverage:" msgstr "Bedeckung:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "Hinderung:" @@ -263069,8 +268598,9 @@ msgstr "Kleidung sortieren" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -263082,6 +268612,12 @@ msgstr "(innerst)" msgid "Storage (%s)" msgstr "Lagerplatz (%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(äußerst)" @@ -267342,11 +272878,6 @@ msgstr "Du glaubst nicht, dass das eine Wirkung zeigen wird." msgid "No limb would benefit from it." msgstr "Weder Leib noch Glieder würden davon profitieren." -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "Abbrechen" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "Du hast Schwierigkeiten, gerade zu stehen." @@ -267667,6 +273198,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -269879,10 +275418,6 @@ msgstr "nach Primärfertigkeit suchen" msgid "any skill used to craft" msgstr "nach jeglicher Fertigkeit suchen" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "Kochen" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "zur Fertigung erforderliche Qualität" @@ -270427,6 +275962,14 @@ msgstr "" msgid "Test weather" msgstr "Wetter testen" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -270853,6 +276396,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -270941,6 +276489,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -271695,7 +277248,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "Dieses Programm wurde nicht mit Kachel-Unterstützung kompiliert." @@ -271717,15 +277270,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -275095,6 +280639,10 @@ msgstr "Handel" msgid "You swap places with %s." msgstr "Du vertauschst die Plätze mit %s." +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -275392,6 +280940,15 @@ msgstr "Du kannst nicht dorthin reisen." msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "Gegenstände" @@ -277774,10 +283331,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "Sicher das du schlafen willst? " -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "Ja." - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "Ja, und ich will davor auch das Spiel speichern." @@ -277921,6 +283474,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -278291,10 +283852,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "Was soll mit %s getan werden?" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "Trinken" @@ -278828,17 +284385,6 @@ msgstr "Du versuchst das Schloss von %1$s mit %2$s zu knacken." msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" -"Diese Wand ist perfekt vertikal. Merkwürdige, verdrilte Locher sind in ihr\n" -"gesetzt, die so weit in den festen Stein hineinragen, wie du sehen kannst.\n" -"Die Löcher sind von der Form her humanoid, aber mit langen, verdrehten,\n" -"geblähten Gliedmaßen." - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -282246,6 +287792,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -285337,13 +290898,15 @@ msgid "BEES!" msgstr "BIENEN!" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "Auf welchen Wert soll der Timer gestellt werden (»0« zum Abbrechen)?" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "Du stellst den Timer auf %d." +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -286084,9 +291647,8 @@ msgid "Your vision is fine already." msgstr "Deine Sicht ist schon in Ordnung." #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" -msgstr "Du hörst »%s«" +msgid "You press a button on the doll to make it talk." +msgstr "" #: src/iuse.cpp msgid "You need a mechanics skill of 2 to use this repair kit." @@ -286311,38 +291873,6 @@ msgstr "Speicherkarte entschlüsseln (niedrige Erfahrung)" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "Ha-ha! Ein amüsantes Katzenfoto." - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "Ausgezeichnete Naturbilder." - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "Ein paar sehr interessante Reisefotos." - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "Bilder eines Konzerts einer polulären Band." - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "Fotos von irgendeinem luxuriösem Haus." - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "Du fühlst dich nostalgisch, während du dieses Foto anstarrst." - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -287596,88 +293126,31 @@ msgstr "Zahl!" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "You start playing." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "It is certain." -msgstr "Mit Sicherheit." - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "Ich sehe es ganz deutlich." - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "Ohne Zweifel." - -#: src/iuse.cpp -msgid "Yes - definitely." -msgstr "Ja, auf jeden Fall." - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "Verlass dich drauf!" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "So, wie ich es sehe, ja." - -#: src/iuse.cpp -msgid "Most likely." -msgstr "Höchstwahrscheinlich." - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "Die Aussichten sehen gut aus." - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "Die Zeichen stehen auf ja." - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "In Nebel gehüllt erscheint die Antwort: »Versuchs noch einmal.«" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "Frag später noch einmal." - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "Das sollte ich dir jetzt besser noch nicht sagen." - -#: src/iuse.cpp -msgid "Can't predict now." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "Konzentriere dich und frag noch einmal." - -#: src/iuse.cpp -msgid "Don't count on it." -msgstr "Ich würde nicht darauf wetten." - -#: src/iuse.cpp -msgid "My reply is no." -msgstr "Meine Antwort ist nein." - -#: src/iuse.cpp -msgid "My sources say no." -msgstr "Meine Quellen sagen »Nein«." +msgid "You and your friend start playing." +msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." -msgstr "Sieht nicht so gut aus." +msgid "You start playing." +msgstr "" #: src/iuse.cpp -msgid "Very doubtful." -msgstr "Sehr zweifelhaft." +#, c-format +msgid "Play a game with the %s?" +msgstr "" #: src/iuse.cpp #, c-format @@ -290537,8 +296010,20 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " -msgstr "Benötigt: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " +msgstr "" #: src/martialarts.cpp msgid "activate" @@ -295577,6 +301062,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -296451,21 +301941,6 @@ msgstr "" "Du konzentrierst dich und mit einem angenehmen Abspaltungsgefühl bringst du " "einen Schleimsprössling zur Welt!" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "komm schon, großes ich, lasst uns gehen!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "wir sind ein team, wir schaffen das!" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -296737,11 +302212,20 @@ msgstr "Untersuchung" msgid "%s to activate mutation, " msgstr "%s, um Mutation zu aktivieren, " +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "%s, um Inventarzeichen neu zuzuweisen, " +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -298463,11 +303947,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -299262,6 +304741,15 @@ msgstr "" "Falls wahr, werden gehaltene Spitzhacken und Presslufthämmer beim Bewegen in" " abbaubares Gelände automatisch verwendet." +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "Automatische Nahrungssuche" @@ -299269,14 +304757,19 @@ msgstr "Automatische Nahrungssuche" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "Büsche" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "Alles" @@ -301823,20 +307316,6 @@ msgstr "Zone:" msgid "# Unexplored" msgstr "# Unerforscht" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -302177,6 +307656,11 @@ msgstr "Gegen Einbruch der Dunkelheit" msgid "Night" msgstr "Nacht" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s,%2d. Tag" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -302225,6 +307709,10 @@ msgstr "Sehr kalt!" msgid "Freezing!" msgstr "Erfrierend!" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -304664,6 +310152,16 @@ msgstr "[%s] Verstecke Schusslinie" msgid "[%s] Show lines of fire" msgstr "[%s] Zeige Schusslinie" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "Reichweite: %d" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -309046,6 +314544,10 @@ msgstr "Zu wenig Strom, um die Inhalte aus %2$s von %1$s zu reinigen" msgid "You purify the contents of the %1$s's %2$s" msgstr "Du reinigst die Inhalte aus %2$s von %1$s" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "Montag" diff --git a/lang/po/el.po b/lang/po/el.po index 6ac41651611a7..fdeeeb21ddcbe 100644 --- a/lang/po/el.po +++ b/lang/po/el.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: KosmicGR , 2021\n" "Language-Team: Greek (https://www.transifex.com/cataclysm-dda-translators/teams/2217/el/)\n" @@ -25,7 +25,7 @@ msgid_plural "battery" msgstr[0] "μπαταρία" msgstr[1] "μπαταρίες" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -41,7 +41,7 @@ msgid_plural "butane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Ένα κοινό εύφλεκτο υγρό που χρησιμοποιείται σε αναπτήρες." @@ -52,7 +52,7 @@ msgid_plural "aerosol paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -67,7 +67,7 @@ msgid_plural "permanent ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -82,7 +82,7 @@ msgid_plural "candle wax" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "" @@ -94,7 +94,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "Μια πυροτεχνική χημική ουσία που χρησιμοποιείται στις φωτοβολίδες." @@ -118,7 +118,7 @@ msgid_plural "oxygen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Συμπιεσμένο ιατρικό οξυγόνο." @@ -129,7 +129,7 @@ msgid_plural "aluminum foil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -155,7 +155,7 @@ msgid_plural "thread" msgstr[0] "νήμα" msgstr[1] "νήμα" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -190,7 +190,7 @@ msgid_plural "yarn" msgstr[0] "νήμα" msgstr[1] "νήμα" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "" @@ -214,7 +214,7 @@ msgid_plural "duct tape" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -285,8 +285,8 @@ msgid_plural "plutonium slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -353,7 +353,7 @@ msgid_plural "bearings" msgstr[0] "ρουλεμάν" msgstr[1] "ρουλεμάν" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -399,7 +399,7 @@ msgid_plural "120mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -424,7 +424,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -438,7 +438,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -449,7 +449,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -460,7 +460,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -472,7 +472,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -483,7 +483,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -494,7 +494,7 @@ msgid_plural "artillery propellant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -507,7 +507,7 @@ msgid_plural "oxidizer powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Πτητικός χημικός οξειδωτής σε σκόνη." @@ -518,7 +518,7 @@ msgid_plural "lye powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Σκόνη καυστικής σόδας." @@ -608,7 +608,7 @@ msgid_plural "copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -621,7 +621,7 @@ msgid_plural "medical tape" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Ένα ρολό ιατρικής ταινίας, παρόμοιο με μονωτική ταινία." @@ -633,7 +633,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "ΑΝ ΤΟ ΒΛΕΠΕΤΕ ΑΥΤΟ ΕΙΝΑΙ ΕΝΑ ΣΦΑΛΜΑ." @@ -644,7 +644,7 @@ msgid_plural "charcoal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -658,7 +658,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -684,7 +684,7 @@ msgid_plural "albuterol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -772,7 +772,7 @@ msgid_plural "nicotine liquid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -785,7 +785,7 @@ msgid_plural "fish bait" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Δόλωμα που χρησιμοποιείται στις παγίδες για προσέλκυση ψαριών" @@ -841,7 +841,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -854,7 +854,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -878,7 +878,7 @@ msgid_plural "nitrox" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -889,7 +889,7 @@ msgid_plural "extinguishing agent" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "" @@ -900,7 +900,7 @@ msgid_plural "tinder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -934,7 +934,7 @@ msgid_plural "bronze" msgstr[0] "μπρούντζος" msgstr[1] "μπρούντζος" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -945,7 +945,7 @@ msgid_plural "glowstick juice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -957,7 +957,7 @@ msgid_plural "graphite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -971,7 +971,7 @@ msgid_plural "black pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -984,7 +984,7 @@ msgid_plural "blue pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -997,7 +997,7 @@ msgid_plural "green pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1010,7 +1010,7 @@ msgid_plural "red pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1037,7 +1037,7 @@ msgid_plural "sulfur" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1063,7 +1063,7 @@ msgid_plural "cement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1081,7 +1081,7 @@ msgid_plural "gravel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1092,7 +1092,7 @@ msgid_plural "limestone" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1106,7 +1106,7 @@ msgid_plural "quicklime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1122,7 +1122,7 @@ msgid_plural "sand" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1138,7 +1138,7 @@ msgid_plural "soil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1151,7 +1151,7 @@ msgid_plural "aluminum powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1166,7 +1166,7 @@ msgid_plural "zinc powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1181,7 +1181,7 @@ msgid_plural "zinc oxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1194,7 +1194,7 @@ msgid_plural "manganese dioxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1208,7 +1208,7 @@ msgid_plural "potassium chloride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1223,7 +1223,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1237,7 +1237,7 @@ msgid_plural "acetone" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1251,7 +1251,7 @@ msgid_plural "chromium oxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1267,7 +1267,7 @@ msgid_plural "calcium carbide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1283,7 +1283,7 @@ msgid_plural "hexamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1299,7 +1299,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1314,7 +1314,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1329,7 +1329,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1344,7 +1344,7 @@ msgid_plural "saltpeter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1358,7 +1358,7 @@ msgid_plural "niter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1371,7 +1371,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1388,7 +1388,7 @@ msgid_plural "acetic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1403,7 +1403,7 @@ msgid_plural "formaldehyde" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1418,7 +1418,7 @@ msgid_plural "thermite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1433,7 +1433,7 @@ msgid_plural "ANFO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1448,7 +1448,7 @@ msgid_plural "black gunpowder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1463,7 +1463,7 @@ msgid_plural "match head powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1477,7 +1477,7 @@ msgid_plural "RDX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1491,7 +1491,7 @@ msgid_plural "composition b" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1505,7 +1505,7 @@ msgid_plural "HMTD" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1519,7 +1519,7 @@ msgid_plural "APEX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1533,7 +1533,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1546,7 +1546,7 @@ msgid_plural "detergent" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "" @@ -1557,7 +1557,7 @@ msgid_plural "soap flakes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1618,7 +1618,7 @@ msgid_plural "concentrated venom" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1633,7 +1633,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1648,7 +1648,7 @@ msgid_plural "rocuronium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1662,7 +1662,7 @@ msgid_plural "red phosphorous" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1675,7 +1675,7 @@ msgid_plural "iodine crystal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1688,7 +1688,7 @@ msgid_plural "ethanol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1716,7 +1716,7 @@ msgid_plural "methanol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1730,7 +1730,7 @@ msgid_plural "diesel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1742,7 +1742,7 @@ msgid_plural "JP8 fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1755,7 +1755,7 @@ msgid_plural "avgas fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -1766,7 +1766,7 @@ msgid_plural "biodiesel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1780,7 +1780,7 @@ msgid_plural "gasoline" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1795,7 +1795,7 @@ msgid_plural "lamp oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "Ένα λεπτό και καθαρό λάδι φτιαγμένο για χρήση σε λαμπτήρες λαδιού." @@ -1806,7 +1806,7 @@ msgid_plural "motor oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "" @@ -1817,7 +1817,7 @@ msgid_plural "napalm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -1834,7 +1834,7 @@ msgid_plural "gelled gasoline" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -1848,7 +1848,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -1887,7 +1887,7 @@ msgid_plural "shrapnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "" @@ -1943,7 +1943,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -1969,7 +1969,7 @@ msgid_plural "H&K 12mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2016,7 +2016,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2046,7 +2046,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2096,7 +2096,7 @@ msgid_plural "20x66mm frag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2113,7 +2113,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2129,7 +2129,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2163,7 +2163,7 @@ msgid_plural ".22 CB" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2177,7 +2177,7 @@ msgid_plural ".22 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2191,7 +2191,7 @@ msgid_plural ".22 LR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2205,7 +2205,7 @@ msgid_plural ".22 rat-shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2243,7 +2243,7 @@ msgid_plural ".223 Remington" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2260,7 +2260,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2276,7 +2276,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2293,7 +2293,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2311,7 +2311,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2329,7 +2329,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2378,7 +2378,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2426,7 +2426,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2444,7 +2444,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2458,7 +2458,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2472,7 +2472,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2574,7 +2574,7 @@ msgid_plural ".308 Winchester" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2588,7 +2588,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2602,7 +2602,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2651,7 +2651,7 @@ msgid_plural ".32 ACP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2676,7 +2676,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2690,7 +2690,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2728,7 +2728,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2741,7 +2741,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -2794,7 +2794,7 @@ msgid_plural ".38 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -2820,7 +2820,7 @@ msgid_plural ".38 Super" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -2863,7 +2863,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -2878,7 +2878,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -2893,7 +2893,7 @@ msgid_plural ".380 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -2938,7 +2938,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -2958,7 +2958,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -2972,7 +2972,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3016,7 +3016,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3030,7 +3030,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3044,7 +3044,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3058,7 +3058,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3072,8 +3072,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3087,8 +3087,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3131,8 +3131,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3146,8 +3146,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3205,7 +3205,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3218,7 +3218,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3248,7 +3248,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3262,8 +3262,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3286,8 +3286,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3318,7 +3318,7 @@ msgid_plural ".410 000 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3335,7 +3335,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3403,7 +3403,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3416,7 +3416,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3430,7 +3430,7 @@ msgid_plural ".45 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3474,7 +3474,7 @@ msgid_plural ".454 Casull" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3502,7 +3502,7 @@ msgid_plural ".45-70 SP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3530,7 +3530,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3544,7 +3544,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3573,7 +3573,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3588,7 +3588,7 @@ msgid_plural ".45-70, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3603,7 +3603,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3630,7 +3630,7 @@ msgid_plural "4.6x30mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3644,8 +3644,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3666,7 +3666,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3679,7 +3679,7 @@ msgid_plural ".460 Rowland" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -3707,7 +3707,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -3726,7 +3726,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3740,7 +3740,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -3756,7 +3756,7 @@ msgid_plural ".50 BMG Match" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -3769,7 +3769,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -3785,7 +3785,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -3804,7 +3804,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3818,7 +3818,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -3834,7 +3834,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -3891,7 +3891,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -3906,7 +3906,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -3919,7 +3919,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -3933,7 +3933,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -3958,7 +3958,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3975,8 +3975,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4065,7 +4065,7 @@ msgid_plural "66mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -4078,7 +4078,7 @@ msgid_plural ".700 NX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4110,7 +4110,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4125,7 +4125,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4140,7 +4140,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4173,7 +4173,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4201,7 +4201,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4228,7 +4228,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4300,7 +4300,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4313,7 +4313,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4328,7 +4328,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4342,7 +4342,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4358,7 +4358,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4377,7 +4377,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4392,7 +4392,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4408,7 +4408,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4423,7 +4423,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4436,7 +4436,7 @@ msgid_plural "9x19mm +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4449,7 +4449,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4498,7 +4498,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4512,7 +4512,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4526,7 +4526,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4551,7 +4551,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4565,7 +4565,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4579,7 +4579,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4593,7 +4593,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -4619,7 +4619,7 @@ msgid_plural "cannon round shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -4632,7 +4632,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -4645,7 +4645,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -4658,7 +4658,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -4772,7 +4772,7 @@ msgid_plural "paintball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -4888,7 +4888,7 @@ msgid_plural "00 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -4902,7 +4902,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -4915,7 +4915,7 @@ msgid_plural "birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -4976,8 +4976,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5130,7 +5130,7 @@ msgid_plural "oxyacetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5143,7 +5143,7 @@ msgid_plural "fungal seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Μερικοί σπόροι μυκήτων." @@ -5969,7 +5969,7 @@ msgid_plural "red paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Ένα δοχείο κόκκινης μπογιάς." @@ -5980,7 +5980,7 @@ msgid_plural "blue paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Ένα δοχείο μπλε μπογιάς." @@ -5991,7 +5991,7 @@ msgid_plural "white paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Ένα δοχείο άσπρης μπογιάς." @@ -6002,7 +6002,7 @@ msgid_plural "green paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Ένα δοχείο πράσινης μπογιάς." @@ -6013,7 +6013,7 @@ msgid_plural "purple paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Ένα δοχείο μωβ μπογιάς." @@ -6024,7 +6024,7 @@ msgid_plural "yellow paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Ένα δοχείο κίτρινης μπογιάς." @@ -6092,7 +6092,7 @@ msgid_plural "bismuth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -6103,8 +6103,8 @@ msgid_plural "gold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -6123,7 +6123,7 @@ msgid_plural "zinc" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6138,7 +6138,7 @@ msgid_plural "lead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6151,7 +6151,7 @@ msgid_plural "magnesium powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6164,7 +6164,7 @@ msgid_plural "silver" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -6225,7 +6225,7 @@ msgid_plural "tin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -6238,7 +6238,7 @@ msgid_plural "solder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -6278,7 +6278,7 @@ msgid_plural "fuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -6331,7 +6331,7 @@ msgid_plural "cotton scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -6345,7 +6345,7 @@ msgid_plural "faux fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -6358,7 +6358,7 @@ msgid_plural "felt scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -6372,7 +6372,7 @@ msgid_plural "fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -6385,7 +6385,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -6400,7 +6400,7 @@ msgid_plural "leather scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -6413,7 +6413,7 @@ msgid_plural "Lycra scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -6426,7 +6426,7 @@ msgid_plural "neoprene scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -6439,7 +6439,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -6452,7 +6452,7 @@ msgid_plural "Nomex scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -6478,7 +6478,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -6503,7 +6503,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -6528,7 +6528,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -6568,7 +6568,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -6595,7 +6595,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -6623,7 +6623,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -6648,7 +6648,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -6742,7 +6742,7 @@ msgid_plural "titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -6770,7 +6770,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -6785,7 +6785,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -6800,7 +6800,7 @@ msgid_plural "25mm canister shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -6816,7 +6816,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -6831,7 +6831,7 @@ msgid_plural "7.50mm RP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -6848,7 +6848,7 @@ msgid_plural "electric charge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -6861,7 +6861,7 @@ msgid_plural "foamcrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -6877,7 +6877,7 @@ msgid_plural "solid hydrogen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -6890,7 +6890,7 @@ msgid_plural "lead pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -6904,7 +6904,7 @@ msgid_plural "domed HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -6918,7 +6918,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -6931,7 +6931,7 @@ msgid_plural "alloy pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -7076,7 +7076,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7091,7 +7091,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7130,7 +7130,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -7146,7 +7146,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -7186,7 +7186,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7202,7 +7202,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7242,7 +7242,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7258,7 +7258,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7298,7 +7298,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -7310,7 +7310,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -7323,7 +7323,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7339,7 +7339,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7366,7 +7366,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -7379,7 +7379,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -7393,7 +7393,7 @@ msgid_plural "rocket, smoke" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -7419,7 +7419,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -7432,7 +7432,7 @@ msgid_plural "shotshell, slug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -7446,7 +7446,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -7496,7 +7496,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -7547,7 +7547,7 @@ msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -7600,7 +7600,7 @@ msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -7628,7 +7628,7 @@ msgid_plural "parabolan yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -7639,7 +7639,7 @@ msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -7677,7 +7677,7 @@ msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -7694,7 +7694,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -8190,7 +8190,7 @@ msgstr[1] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -8206,7 +8206,7 @@ msgstr "" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -8242,7 +8242,7 @@ msgid_plural "chest rig" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -9131,38 +9131,19 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" +msgid "tool belt" +msgid_plural "tool belts" msgstr[0] "" msgstr[1] "" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "" -msgstr[1] "" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -9316,25 +9297,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -9352,45 +9314,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -9402,26 +9325,6 @@ msgstr[1] "" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -9440,26 +9343,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -9532,20 +9415,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -9577,39 +9446,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -10525,25 +10361,6 @@ msgid_plural "XL leather dusters" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -10592,7 +10409,7 @@ msgid_plural "army jacket" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "Ένα σκληρό μπουφάν με πολλές τσέπες. Προτιμούνται από τον στρατό." @@ -10767,7 +10584,7 @@ msgid_plural "kimono" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -10928,19 +10745,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -10993,19 +10797,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -11023,7 +10814,7 @@ msgid_plural "thawb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -11081,19 +10872,6 @@ msgstr "" "Ένα παχύ δερμάτινο παλτό, επενδεδυμένο με τσέπες. Εξαιρετικό για την " "αποθήκευση." -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -11349,19 +11127,6 @@ msgstr "" "Ένα ζευγάρι γυαλιά ηλίου, καλό για να κρατήσει την αντηλιά έξω από τα μάτια " "σας." -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -11733,25 +11498,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -11769,50 +11515,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -11878,63 +11580,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -11979,19 +11624,6 @@ msgstr "" "Ένα ζευγάρι γάντια από καουτσούκ, που χρησιμοποιούνται συχνά κατά τον " "καθαρισμό με καυστικά υλικά." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -12113,37 +11745,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -12910,7 +12511,7 @@ msgid_plural "kabuto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -13024,32 +12625,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -13105,32 +12680,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -13334,36 +12883,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -13413,77 +12932,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -13495,56 +12943,6 @@ msgstr[1] "" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -13956,9 +13354,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -13969,9 +13367,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -13982,9 +13380,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -13995,9 +13393,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -14008,9 +13406,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -14021,9 +13419,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -14034,9 +13432,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -14047,9 +13445,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -14060,9 +13458,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -14073,9 +13471,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -14086,9 +13484,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -14099,9 +13497,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -14112,9 +13510,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -14125,9 +13523,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -17719,7 +17117,7 @@ msgid_plural "turnout trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -17759,7 +17157,7 @@ msgid_plural "leather chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -17772,7 +17170,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -17787,7 +17185,7 @@ msgid_plural "fencing pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -17962,32 +17360,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -17999,39 +17371,13 @@ msgstr[1] "" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -18044,7 +17390,7 @@ msgid_plural "light EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -18071,7 +17417,7 @@ msgid_plural "basketball shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "" @@ -18082,7 +17428,7 @@ msgid_plural "breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -18106,7 +17452,7 @@ msgid_plural "hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "Ένα απλό ζευγάρι κοντά σορτσάκια." @@ -18117,7 +17463,7 @@ msgid_plural "fur hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "Ένα απλό ζευγάρι γούνινα κοντά σορτσάκια." @@ -18128,7 +17474,7 @@ msgid_plural "leather hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "Ένα απλό ζευγάρι δερμάτινα κοντά σορτς." @@ -18139,7 +17485,7 @@ msgid_plural "jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "Ένα ζευγάρι μπλε τζιν με δύο βαθιές τσέπες." @@ -18172,7 +17518,7 @@ msgid_plural "red jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -18201,7 +17547,7 @@ msgid_plural "leggings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -18285,7 +17631,7 @@ msgid_plural "pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "Ένα ζευγάρι χακί παντελόνι. Λίγο πιο ζεστό από το τζιν." @@ -18296,7 +17642,7 @@ msgid_plural "army pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" @@ -18304,8 +17650,8 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -18338,7 +17684,7 @@ msgid_plural "cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -18350,7 +17696,7 @@ msgid_plural "checkered pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -18361,7 +17707,7 @@ msgid_plural "fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "Ένα μεγάλο ζευγάρι γούνινο παντελόνι." @@ -18372,7 +17718,7 @@ msgid_plural "faux fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -18383,7 +17729,7 @@ msgid_plural "leather pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -18398,7 +17744,7 @@ msgid_plural "ski pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "Ένα παντελόνι που προοριζόταν για αλπικό σκι." @@ -18409,7 +17755,7 @@ msgid_plural "police breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -18422,7 +17768,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -18435,7 +17781,7 @@ msgid_plural "shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "Ένα ζευγάρι χακί σορτς." @@ -18446,7 +17792,7 @@ msgid_plural "cargo shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "Ένα ζευγάρι σορτς με τσέπες, προσφέροντας αξιοπρεπή αποθήκευση." @@ -18457,7 +17803,7 @@ msgid_plural "denim shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -18521,7 +17867,7 @@ msgid_plural "striped pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -18552,7 +17898,7 @@ msgid_plural "army winter pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -19715,66 +19061,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Ένα βαρύ σακίδιο. Ανθεκτικό και προσεκτικά κατασκευασμένο για να κρατήσει " -"όσο το δυνατόν περισσότερα πράγματα." - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" -"Ένα προσαρμοσμένο σακίδιο. Ανθεκτικό και προσεκτικά σχεδιασμένο για να " -"κρατάει όσο το δυνατόν περισσότερα πράγματα." - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Ένα βαρύ σακίδιο προσαρμοσμένο στις ανάγκες σας. Ανθεκτικό και προσεκτικά " -"σχεδιασμένο για να κρατάει όσο το δυνατόν περισσότερα πράγματα." - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" -"Ένα ελαφρύ δέμα δρομέων προσαρμοσμένο στις ανάγκες σας. Ανθεκτικό και " -"προσεκτικά σχεδιασμένο για να κρατάει όσο το δυνατόν περισσότερα πράγματα." - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -20221,33 +19507,6 @@ msgid_plural "XL plate armors" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -20293,8 +19552,8 @@ msgstr[1] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -20308,19 +19567,6 @@ msgstr[1] "" msgid "An ornamental suit of Japanese samurai armor." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -20458,69 +19704,41 @@ msgstr[0] "" msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for winter survivor suit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" @@ -20539,40 +19757,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -20641,19 +19825,6 @@ msgstr "" "Ένα ολόσωμο βαμβακερό κουστούμι. Κάνει την αποκάλυψη μια πραγματικά " "εμπειρία για τζέντλεμαν." -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -20663,8 +19834,8 @@ msgstr[1] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" #: lang/json/ARMOR_from_json.py @@ -20682,42 +19853,6 @@ msgstr "" "Μια παχιά δερμάτινη στολή που φτιάχτηκε για προστασία για τους " "μοτοσικλετιστές. Ελαφριά και πολύ άνετη." -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -20789,45 +19924,6 @@ msgstr[1] "" msgid "A neoprene hood, commonly worn by divers." msgstr "Μια κουκούλα νεοπρένιο, φοριέται συνήθως από δύτες." -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -20935,7 +20031,7 @@ msgid_plural "lorica segmentata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -21104,7 +20200,7 @@ msgid_plural "tire leather armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -21166,25 +20262,6 @@ msgstr "" "Ένα ελαφρύ, ανθεκτικό αλεξίσφαιρο γιλέκο. Κατάλληλο να φορεθεί κάτω από τα " "ρούχα." -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -21454,7 +20531,7 @@ msgid_plural "leotard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -21540,7 +20617,7 @@ msgid_plural "French maid clothes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "Φόρεμα Γαλλικής υπηρέτριας, μπλε με μια άσπρη ποδιά." @@ -21845,7 +20922,7 @@ msgid_plural "boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -21856,7 +20933,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -21867,7 +20944,7 @@ msgid_plural "boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -21879,7 +20956,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -21892,7 +20969,7 @@ msgid_plural "boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21904,7 +20981,7 @@ msgid_plural "XL boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21930,7 +21007,7 @@ msgid_plural "briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "Ένα ζευγάρι σλιπάκια. Άνετα εσώρουχα φοριούνται από άνδρες." @@ -22094,7 +21171,7 @@ msgid_plural "panties" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -22163,7 +21240,7 @@ msgid_plural "tights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -22192,7 +21269,7 @@ msgid_plural "compression shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -22230,6 +21307,950 @@ msgid "" "unitard provides overall coverage with great flexibility." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" +"Ένα βαρύ σακίδιο. Ανθεκτικό και προσεκτικά κατασκευασμένο για να κρατήσει " +"όσο το δυνατόν περισσότερα πράγματα." + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "" +"Ένα προσαρμοσμένο σακίδιο. Ανθεκτικό και προσεκτικά σχεδιασμένο για να " +"κρατάει όσο το δυνατόν περισσότερα πράγματα." + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" +"Ένα βαρύ σακίδιο προσαρμοσμένο στις ανάγκες σας. Ανθεκτικό και προσεκτικά " +"σχεδιασμένο για να κρατάει όσο το δυνατόν περισσότερα πράγματα." + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "" +"Ένα ελαφρύ δέμα δρομέων προσαρμοσμένο στις ανάγκες σας. Ανθεκτικό και " +"προσεκτικά σχεδιασμένο για να κρατάει όσο το δυνατόν περισσότερα πράγματα." + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -22350,7 +22371,7 @@ msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -22363,7 +22384,7 @@ msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -22523,7 +22544,7 @@ msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -22534,7 +22555,7 @@ msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -22547,7 +22568,7 @@ msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -22809,7 +22830,7 @@ msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -22959,19 +22980,6 @@ msgid "" " ridiculously heavy." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -23099,7 +23107,7 @@ msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -23112,7 +23120,7 @@ msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -23155,6 +23163,12 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -23303,7 +23317,7 @@ msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -23790,7 +23804,7 @@ msgid_plural "freerunner's boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -23862,7 +23876,7 @@ msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -23877,7 +23891,7 @@ msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23906,7 +23920,7 @@ msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23964,7 +23978,7 @@ msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -24022,7 +24036,7 @@ msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -24033,7 +24047,7 @@ msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -24131,7 +24145,7 @@ msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -24142,7 +24156,7 @@ msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -24227,16 +24241,18 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -24254,42 +24270,35 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -25015,7 +25024,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -25446,7 +25455,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -25655,7 +25664,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -26978,7 +26987,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -27226,7 +27235,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -27264,7 +27273,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -27279,7 +27288,7 @@ msgid_plural "schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -27287,9 +27296,9 @@ msgstr[1] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -27305,7 +27314,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -27320,7 +27329,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -27335,7 +27344,7 @@ msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -27349,7 +27358,7 @@ msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -27363,7 +27372,7 @@ msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -27377,7 +27386,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -27391,7 +27400,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -27405,7 +27414,7 @@ msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -27419,7 +27428,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -27433,7 +27442,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -27447,7 +27456,7 @@ msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27462,7 +27471,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27477,7 +27486,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -27491,7 +27500,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -28097,7 +28106,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "" @@ -28108,7 +28117,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -28120,7 +28129,7 @@ msgid_plural "Capoeira 100" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "" @@ -28131,7 +28140,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "" @@ -28142,7 +28151,7 @@ msgid_plural "The Red Crane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "" @@ -28153,7 +28162,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "" @@ -28164,7 +28173,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "" @@ -28175,7 +28184,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "" @@ -28186,7 +28195,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "" @@ -28197,7 +28206,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "" @@ -28208,7 +28217,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "" @@ -28219,7 +28228,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "" @@ -28230,7 +28239,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "" @@ -28241,7 +28250,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "" @@ -28252,7 +28261,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "" @@ -28263,7 +28272,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -28276,7 +28285,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "" @@ -28287,7 +28296,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "" @@ -28298,7 +28307,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "" @@ -28309,7 +28318,7 @@ msgid_plural "The Black Snake" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "" @@ -28320,7 +28329,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -28331,7 +28340,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" @@ -28342,7 +28351,7 @@ msgid_plural "The White Tiger" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "" @@ -28353,7 +28362,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "" @@ -28364,7 +28373,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "" @@ -28375,7 +28384,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "" @@ -28386,7 +28395,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "" @@ -28397,7 +28406,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -28409,7 +28418,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -28423,7 +28432,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -28585,7 +28594,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -29462,7 +29471,7 @@ msgid_plural "patient treatment records" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -29473,7 +29482,7 @@ msgid_plural "national weather transcripts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -32954,7 +32963,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32969,7 +32978,7 @@ msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32984,7 +32993,7 @@ msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32999,7 +33008,7 @@ msgid_plural "tank drone schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -33014,7 +33023,7 @@ msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -33244,7 +33253,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -33255,7 +33264,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -33266,7 +33275,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -33279,7 +33288,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -33290,7 +33299,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -33303,7 +33312,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -33317,7 +33326,7 @@ msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -33328,7 +33337,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -33341,7 +33350,7 @@ msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -33352,7 +33361,7 @@ msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -33379,6 +33388,21 @@ msgstr[1] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -35459,7 +35483,7 @@ msgid_plural "bird litter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -35515,14 +35539,14 @@ msgid_plural "bleach" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -35535,7 +35559,7 @@ msgid_plural "ammonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -35548,7 +35572,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -35559,7 +35583,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -35570,7 +35594,7 @@ msgid_plural "fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -35583,7 +35607,7 @@ msgid_plural "insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -35596,7 +35620,7 @@ msgid_plural "salt water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "" @@ -35607,7 +35631,7 @@ msgid_plural "soapy water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -35629,7 +35653,7 @@ msgid_plural "sulfuric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -35644,7 +35668,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -35658,7 +35682,7 @@ msgid_plural "nitric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -35689,7 +35713,7 @@ msgid_plural "sewage water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -35700,7 +35724,7 @@ msgid_plural "lye" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -35713,7 +35737,7 @@ msgid_plural "ether" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -35728,7 +35752,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -35743,7 +35767,7 @@ msgid_plural "chloroform" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -35757,7 +35781,7 @@ msgid_plural "phenol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -35773,7 +35797,7 @@ msgid_plural "glycerol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -35786,7 +35810,7 @@ msgid_plural "peptone broth powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -35800,7 +35824,7 @@ msgid_plural "agar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -35815,7 +35839,7 @@ msgid_plural "acrylamide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -35828,7 +35852,7 @@ msgid_plural "acetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -35841,7 +35865,7 @@ msgid_plural "formic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -35854,7 +35878,7 @@ msgid_plural "latex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -35865,7 +35889,7 @@ msgid_plural "citric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -35942,13 +35966,24 @@ msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -35987,7 +36022,7 @@ msgid_plural "marloss wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -35998,7 +36033,7 @@ msgid_plural "Riesling" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" @@ -36009,7 +36044,7 @@ msgid_plural "Chardonnay" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "" @@ -36020,7 +36055,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -36033,7 +36068,7 @@ msgid_plural "pinot noir" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -36046,7 +36081,7 @@ msgid_plural "marsala" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -36057,7 +36092,7 @@ msgid_plural "vermouth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -36070,7 +36105,7 @@ msgid_plural "barley wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -36081,7 +36116,7 @@ msgid_plural "whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -36093,7 +36128,7 @@ msgid_plural "vodka" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -36106,7 +36141,7 @@ msgid_plural "gin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -36119,7 +36154,7 @@ msgid_plural "rum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -36132,7 +36167,7 @@ msgid_plural "tequila" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -36145,7 +36180,7 @@ msgid_plural "triple sec" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -36156,7 +36191,7 @@ msgid_plural "cheap wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "" @@ -36167,7 +36202,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -36178,7 +36213,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -36189,7 +36224,7 @@ msgid_plural "fruit wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -36201,7 +36236,7 @@ msgid_plural "brandy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -36214,7 +36249,7 @@ msgid_plural "Irish coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -36227,7 +36262,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -36254,7 +36289,7 @@ msgid_plural "wild apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "" @@ -36265,7 +36300,7 @@ msgid_plural "rum & cola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -36276,7 +36311,7 @@ msgid_plural "beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -36289,7 +36324,7 @@ msgid_plural "spiced mead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -36301,7 +36336,7 @@ msgid_plural "dandelion wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -36314,7 +36349,7 @@ msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -36325,7 +36360,7 @@ msgid_plural "pine wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -36338,7 +36373,7 @@ msgid_plural "homebrew beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -36349,7 +36384,7 @@ msgid_plural "moonshine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -36363,7 +36398,7 @@ msgid_plural "European pilsner" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -36376,7 +36411,7 @@ msgid_plural "American pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -36389,7 +36424,7 @@ msgid_plural "India pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -36402,7 +36437,7 @@ msgid_plural "stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -36413,7 +36448,7 @@ msgid_plural "Belgian ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -36426,7 +36461,7 @@ msgid_plural "imperial stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -36467,7 +36502,7 @@ msgid_plural "single malt whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "" @@ -36478,7 +36513,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -36489,7 +36524,7 @@ msgid_plural "cheap whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -36500,7 +36535,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -36511,7 +36546,7 @@ msgid_plural "sherry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -36523,7 +36558,7 @@ msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -36536,7 +36571,7 @@ msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -36547,7 +36582,7 @@ msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "" @@ -36558,7 +36593,7 @@ msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -36571,7 +36606,7 @@ msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -36662,7 +36697,7 @@ msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -36673,7 +36708,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -36684,7 +36719,7 @@ msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -36697,7 +36732,7 @@ msgid_plural "sourdough bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -36710,7 +36745,7 @@ msgid_plural "flatbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "" @@ -36721,7 +36756,7 @@ msgid_plural "bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "" @@ -36732,7 +36767,7 @@ msgid_plural "toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -36745,7 +36780,7 @@ msgid_plural "buttered toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -36756,7 +36791,7 @@ msgid_plural "jam toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -36769,7 +36804,7 @@ msgid_plural "peanut butter toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -36781,7 +36816,7 @@ msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -36792,7 +36827,7 @@ msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -36805,7 +36840,7 @@ msgid_plural "cornbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "" @@ -36838,7 +36873,7 @@ msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -36862,7 +36897,7 @@ msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -36876,7 +36911,7 @@ msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -36887,7 +36922,7 @@ msgid_plural "hallula" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -37150,18 +37185,18 @@ msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -37172,8 +37207,8 @@ msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -37186,14 +37221,14 @@ msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -37204,7 +37239,7 @@ msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -37232,7 +37267,7 @@ msgid_plural "cooked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "" @@ -37333,7 +37368,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -37436,7 +37471,7 @@ msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -37475,7 +37510,7 @@ msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -37522,7 +37557,7 @@ msgid_plural "butchery refuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -37607,7 +37642,7 @@ msgid_plural "cooked offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -37621,7 +37656,7 @@ msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -37632,7 +37667,7 @@ msgid_plural "pickled offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -37646,7 +37681,7 @@ msgid_plural "canned offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -37681,31 +37716,28 @@ msgid_plural "meat jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -37717,7 +37749,7 @@ msgid_plural "salted fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -37729,33 +37761,27 @@ msgid_plural "smoked meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -37776,7 +37802,7 @@ msgid_plural "smoked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -37829,7 +37855,7 @@ msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -37880,7 +37906,7 @@ msgid_plural "raw brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -37891,7 +37917,7 @@ msgid_plural "cooked brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -37970,7 +37996,7 @@ msgstr[1] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -38122,7 +38148,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -38363,7 +38389,7 @@ msgid_plural "alien fronds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -38468,7 +38494,7 @@ msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -38479,7 +38505,7 @@ msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -38517,13 +38543,38 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -38537,7 +38588,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -38550,7 +38601,7 @@ msgid_plural "cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -38561,7 +38612,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -38573,7 +38624,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -38586,7 +38637,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -38599,7 +38650,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -38612,7 +38663,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -38625,7 +38676,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -38651,7 +38702,7 @@ msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -38675,7 +38726,7 @@ msgid_plural "wheat cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -38699,7 +38750,7 @@ msgid_plural "milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -38710,7 +38761,7 @@ msgid_plural "chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -38721,7 +38772,7 @@ msgid_plural "reconstituted milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -38734,7 +38785,7 @@ msgid_plural "raw milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -38749,7 +38800,7 @@ msgid_plural "shelf stable milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -38763,7 +38814,7 @@ msgid_plural "evaporated milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -38775,7 +38826,7 @@ msgid_plural "buttermilk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -38799,7 +38850,7 @@ msgid_plural "butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -38811,7 +38862,7 @@ msgid_plural "raw butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -38823,7 +38874,7 @@ msgid_plural "ghee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -38860,7 +38911,7 @@ msgid_plural "hard cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -38873,7 +38924,7 @@ msgid_plural "cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "" @@ -38895,7 +38946,7 @@ msgid_plural "powdered milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -38906,7 +38957,7 @@ msgid_plural "condensed milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -38919,7 +38970,7 @@ msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -38932,7 +38983,7 @@ msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -38943,7 +38994,7 @@ msgid_plural "apple cider" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "" @@ -38980,7 +39031,7 @@ msgid_plural "atomic coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -38994,7 +39045,7 @@ msgid_plural "bee balm tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -39018,7 +39069,7 @@ msgid_plural "chai tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" @@ -39029,7 +39080,7 @@ msgid_plural "chamomile tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -39055,7 +39106,7 @@ msgid_plural "coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -39069,7 +39120,7 @@ msgid_plural "coffee substitute" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -39083,7 +39134,7 @@ msgid_plural "chicory brew" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -39153,7 +39204,7 @@ msgid_plural "dandelion tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -39164,7 +39215,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -39219,7 +39270,7 @@ msgid_plural "herbal tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -39230,7 +39281,7 @@ msgid_plural "hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -39278,7 +39329,7 @@ msgid_plural "lemonade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -39304,7 +39355,7 @@ msgid_plural "lotus tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -39315,7 +39366,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -39376,7 +39427,7 @@ msgid_plural "pine needle tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -39414,7 +39465,7 @@ msgid_plural "root beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -39451,13 +39502,13 @@ msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -39483,7 +39534,7 @@ msgid_plural "sweet water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "" @@ -39507,7 +39558,7 @@ msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -39544,7 +39595,7 @@ msgid_plural "water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -39557,7 +39608,7 @@ msgid_plural "clean water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -39568,7 +39619,7 @@ msgid_plural "mineral water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -39697,7 +39748,7 @@ msgid_plural "maple sap" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -39708,7 +39759,7 @@ msgid_plural "mayonnaise" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -39733,7 +39784,7 @@ msgid_plural "mustard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -39746,7 +39797,7 @@ msgid_plural "forest honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -39759,7 +39810,7 @@ msgid_plural "vinegar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -39772,7 +39823,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "" @@ -39783,7 +39834,7 @@ msgid_plural "animal cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -39794,7 +39845,7 @@ msgid_plural "molasses" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -39807,7 +39858,7 @@ msgid_plural "horseradish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "" @@ -39818,7 +39869,7 @@ msgid_plural "coffee syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -40160,7 +40211,7 @@ msgid_plural "scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "" @@ -40182,7 +40233,7 @@ msgid_plural "fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -40195,7 +40246,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -40208,7 +40259,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -40221,7 +40272,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -40413,7 +40464,7 @@ msgid_plural "frozen yogurt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -40483,7 +40534,7 @@ msgid_plural "peaches in syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -40505,7 +40556,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -40540,7 +40591,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -40554,7 +40605,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -40579,7 +40630,7 @@ msgid_plural "canned fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -40592,7 +40643,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -40616,7 +40667,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -41006,7 +41057,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -41058,7 +41109,7 @@ msgid_plural "irradiated corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -41110,7 +41161,7 @@ msgid_plural "irradiated celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -41123,7 +41174,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -41231,12 +41282,12 @@ msgid_plural "potato chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -41247,7 +41298,7 @@ msgid_plural "popcorn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -41260,7 +41311,7 @@ msgid_plural "popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -41273,7 +41324,7 @@ msgid_plural "salted popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "" @@ -41284,7 +41335,7 @@ msgid_plural "buttered popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -41295,7 +41346,7 @@ msgid_plural "pretzels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "" @@ -41328,7 +41379,7 @@ msgid_plural "marshmallows" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -41339,7 +41390,7 @@ msgid_plural "s'mores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -41374,7 +41425,7 @@ msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -41385,12 +41436,12 @@ msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -41438,7 +41489,7 @@ msgid_plural "powder candy sticks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -41512,7 +41563,7 @@ msgid_plural "maple syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -41525,7 +41576,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -41575,7 +41626,7 @@ msgid_plural "fast-food French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -41586,7 +41637,7 @@ msgid_plural "French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -41608,7 +41659,7 @@ msgid_plural "Necco wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -41634,8 +41685,8 @@ msgid_plural "caramel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "" @@ -41646,7 +41697,7 @@ msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "" @@ -41657,7 +41708,7 @@ msgid_plural "tortilla chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -41670,7 +41721,7 @@ msgid_plural "cheese nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -41683,31 +41734,28 @@ msgid_plural "meat nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -41720,31 +41768,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -41757,7 +41805,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -41770,7 +41818,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -41844,7 +41892,7 @@ msgid_plural "chili dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" @@ -41855,7 +41903,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -41931,7 +41979,7 @@ msgid_plural "cheese fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "" @@ -42019,8 +42067,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -42163,32 +42210,26 @@ msgid_plural "raw sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -42207,15 +42248,14 @@ msgid_plural "smoked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -42234,15 +42274,14 @@ msgid_plural "cooked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -42272,23 +42311,21 @@ msgid_plural "bratwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -42309,7 +42346,7 @@ msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -42360,7 +42397,7 @@ msgid_plural "cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -42373,8 +42410,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -42382,7 +42418,7 @@ msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -42396,7 +42432,7 @@ msgid_plural "currywursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -42404,8 +42440,7 @@ msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -42413,8 +42448,7 @@ msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -42435,9 +42469,8 @@ msgid_plural "aspics" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -42445,9 +42478,8 @@ msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -42455,9 +42487,8 @@ msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -42479,7 +42510,7 @@ msgid_plural "dehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -42492,7 +42523,7 @@ msgid_plural "rehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -42505,7 +42536,7 @@ msgid_plural "pickled fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -42517,7 +42548,7 @@ msgid_plural "canned fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -42530,7 +42561,7 @@ msgid_plural "batter fried fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -42563,8 +42594,7 @@ msgid_plural "lunch meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -42585,7 +42615,7 @@ msgid_plural "bologna" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -42593,8 +42623,7 @@ msgid_plural "brat %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -42602,8 +42631,7 @@ msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -42611,7 +42639,7 @@ msgid_plural "bleak %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -42639,7 +42667,7 @@ msgid_plural "SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -42677,24 +42705,22 @@ msgid_plural "sausage gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -42715,7 +42741,7 @@ msgid_plural "pemmican" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -42723,8 +42749,7 @@ msgid_plural "prepper %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -42732,8 +42757,7 @@ msgid_plural "Orley %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -42741,7 +42765,7 @@ msgid_plural "pernicious %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -42755,15 +42779,14 @@ msgid_plural "hamburger helpers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -42771,8 +42794,7 @@ msgid_plural "halfling helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -42804,24 +42826,22 @@ msgid_plural "chilis con carne" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -42839,7 +42859,7 @@ msgid_plural "pork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -42852,7 +42872,7 @@ msgid_plural "canned tuna fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "" @@ -42863,7 +42883,7 @@ msgid_plural "canned salmon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "" @@ -42885,7 +42905,7 @@ msgid_plural "pickled herring" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -42907,16 +42927,14 @@ msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -42936,15 +42954,14 @@ msgid_plural "baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" @@ -42955,15 +42972,14 @@ msgid_plural "meat fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" @@ -42974,15 +42990,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -42995,22 +43011,21 @@ msgid_plural "meat pies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -43029,23 +43044,21 @@ msgid_plural "meat pizzas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -43077,31 +43090,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -43114,15 +43126,14 @@ msgid_plural "canned meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -43142,15 +43153,14 @@ msgid_plural "salted meat slices" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -43169,15 +43179,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -43185,8 +43194,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -43194,7 +43202,7 @@ msgid_plural "gnarly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -43205,7 +43213,7 @@ msgid_plural "lasagnes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -43213,8 +43221,7 @@ msgid_plural "Luigi %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -43222,7 +43229,7 @@ msgid_plural "Lab %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -43243,7 +43250,7 @@ msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" @@ -43254,8 +43261,7 @@ msgid_plural "cheeseburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -43263,7 +43269,7 @@ msgid_plural "chump %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -43272,8 +43278,7 @@ msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -43307,23 +43312,21 @@ msgid_plural "hamburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -43342,23 +43345,21 @@ msgid_plural "sloppy joes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -43379,7 +43380,7 @@ msgid_plural "tacos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -43387,8 +43388,7 @@ msgid_plural "tio %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -43396,7 +43396,7 @@ msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -43417,15 +43417,14 @@ msgid_plural "pickled meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -43445,10 +43444,8 @@ msgid_plural "dehydrated meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -43456,12 +43453,11 @@ msgid_plural "%s, human" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -43495,9 +43491,8 @@ msgid_plural "haggises" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -43520,7 +43515,7 @@ msgid_plural "fish makizushi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -43533,8 +43528,7 @@ msgid_plural "meat temaki" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -43542,7 +43536,7 @@ msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -43555,7 +43549,7 @@ msgid_plural "sashimi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -43579,7 +43573,7 @@ msgid_plural "pelmenis" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -43600,8 +43594,7 @@ msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -43622,15 +43615,14 @@ msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -43649,15 +43641,14 @@ msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -43694,12 +43685,12 @@ msgid_plural "prescription stimulant" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -43746,7 +43737,7 @@ msgid_plural "antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -43773,7 +43764,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -43851,7 +43842,7 @@ msgid_plural "antiseptic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -43907,7 +43898,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -43959,12 +43950,12 @@ msgid_plural "codeine" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -43978,7 +43969,7 @@ msgid_plural "cocaine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -44020,7 +44011,7 @@ msgid_plural "cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -44034,12 +44025,12 @@ msgid_plural "crack" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -44052,7 +44043,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -44066,7 +44057,7 @@ msgid_plural "antiseptic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -44089,7 +44080,7 @@ msgid_plural "prescription sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -44102,12 +44093,12 @@ msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -44124,12 +44115,12 @@ msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -44145,12 +44136,12 @@ msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -44164,16 +44155,14 @@ msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -44187,7 +44176,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -44201,7 +44190,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -44215,7 +44204,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -44229,7 +44218,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -44243,7 +44232,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -44258,7 +44247,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -44273,7 +44262,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -44287,7 +44276,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -44301,12 +44290,12 @@ msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -44386,7 +44375,7 @@ msgid_plural "chewing gum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -44411,13 +44400,13 @@ msgid_plural "heroin" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -44493,7 +44482,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44507,7 +44496,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44560,7 +44549,7 @@ msgid_plural "cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -44591,7 +44580,7 @@ msgid_plural "sleeping pill" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -44636,7 +44625,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -44647,15 +44636,14 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -44670,7 +44658,7 @@ msgid_plural "antidepressant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -44702,7 +44690,7 @@ msgid_plural "hemostatic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -44728,7 +44716,7 @@ msgid_plural "antipsychotic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -44979,12 +44967,12 @@ msgid_plural "marijuana" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -44998,7 +44986,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -45025,7 +45013,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -45038,7 +45026,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -45105,7 +45093,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -45120,7 +45108,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -45597,7 +45585,7 @@ msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -45847,9 +45835,8 @@ msgstr[1] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -45916,7 +45903,7 @@ msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -46035,7 +46022,8 @@ msgstr[1] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -46177,7 +46165,7 @@ msgid_plural "pine nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -46188,7 +46176,7 @@ msgid_plural "junipers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -46201,7 +46189,7 @@ msgid_plural "shelled pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -46213,7 +46201,7 @@ msgid_plural "roasted pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -46224,7 +46212,7 @@ msgid_plural "shelled almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -46235,7 +46223,7 @@ msgid_plural "almond pulp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -46247,7 +46235,7 @@ msgid_plural "roasted almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -46258,7 +46246,7 @@ msgid_plural "cashews" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "" @@ -46269,7 +46257,7 @@ msgid_plural "shelled pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -46282,7 +46270,7 @@ msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -46293,7 +46281,7 @@ msgid_plural "shelled peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -46304,7 +46292,7 @@ msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -46315,7 +46303,7 @@ msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -46328,7 +46316,7 @@ msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -46339,7 +46327,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -46352,7 +46340,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -46363,7 +46351,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -46376,7 +46364,7 @@ msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -46387,7 +46375,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -46398,7 +46386,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -46409,7 +46397,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -46422,7 +46410,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -46479,7 +46467,7 @@ msgid_plural "acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -46492,7 +46480,7 @@ msgid_plural "roasted acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -46503,7 +46491,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -46516,7 +46504,7 @@ msgid_plural "foie gras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -46528,7 +46516,7 @@ msgid_plural "liver & onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "" @@ -46583,7 +46571,7 @@ msgid_plural "leverpostej" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -46796,7 +46784,7 @@ msgid_plural "marloss gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -46824,7 +46812,7 @@ msgid_plural "yeast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -46836,7 +46824,7 @@ msgid_plural "bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -46847,7 +46835,7 @@ msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -46859,7 +46847,7 @@ msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -46870,7 +46858,7 @@ msgid_plural "tainted bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -46881,7 +46869,7 @@ msgid_plural "chitin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -46928,7 +46916,7 @@ msgid_plural "dried beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -46941,7 +46929,7 @@ msgid_plural "cooked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "" @@ -46952,8 +46940,8 @@ msgid_plural "tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -46972,7 +46960,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -46983,7 +46971,7 @@ msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -47009,7 +46997,7 @@ msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -47021,7 +47009,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -47035,7 +47023,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -47046,7 +47034,7 @@ msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -47057,7 +47045,7 @@ msgid_plural "coffee powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -47070,7 +47058,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -47083,7 +47071,7 @@ msgid_plural "candied honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -47122,7 +47110,7 @@ msgid_plural "cattle fodder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -47135,7 +47123,7 @@ msgid_plural "bird food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -47148,7 +47136,7 @@ msgid_plural "wet dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -47161,7 +47149,7 @@ msgid_plural "dry dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -47174,7 +47162,7 @@ msgid_plural "wet cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -47187,7 +47175,7 @@ msgid_plural "dry cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -47314,7 +47302,7 @@ msgid_plural "instant coffee mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -47353,15 +47341,14 @@ msgid_plural "protein drinks" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -47369,14 +47356,11 @@ msgid_plural "sapient green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -47397,15 +47381,14 @@ msgid_plural "protein powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -47413,7 +47396,7 @@ msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -47442,15 +47425,14 @@ msgid_plural "protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -47471,7 +47453,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -47479,7 +47461,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -47546,7 +47528,7 @@ msgid_plural "blueberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -47557,7 +47539,7 @@ msgid_plural "strawberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" @@ -47568,7 +47550,7 @@ msgid_plural "cranberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "" @@ -47579,7 +47561,7 @@ msgid_plural "raspberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "Ένα πολύ γλυκό κόκκινο μούρο." @@ -47590,7 +47572,7 @@ msgid_plural "huckleberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -47601,7 +47583,7 @@ msgid_plural "mulberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -47614,7 +47596,7 @@ msgid_plural "elderberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -47625,7 +47607,7 @@ msgid_plural "rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "" @@ -47671,7 +47653,7 @@ msgid_plural "cherries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "" @@ -47694,7 +47676,7 @@ msgid_plural "grapes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -47760,7 +47742,7 @@ msgid_plural "blackberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "" @@ -47816,7 +47798,7 @@ msgid_plural "apricots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "" @@ -47857,7 +47839,7 @@ msgid_plural "bee balm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -47869,7 +47851,7 @@ msgid_plural "broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "" @@ -47880,7 +47862,7 @@ msgid_plural "buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -47904,7 +47886,7 @@ msgid_plural "spinach" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -47953,7 +47935,7 @@ msgid_plural "celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -47977,7 +47959,7 @@ msgid_plural "corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "" @@ -47988,7 +47970,7 @@ msgid_plural "empty corn cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -48049,7 +48031,7 @@ msgid_plural "salsify" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -48063,7 +48045,7 @@ msgid_plural "chicory" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -48186,7 +48168,7 @@ msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -48223,7 +48205,7 @@ msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -48236,7 +48218,7 @@ msgid_plural "dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -48249,7 +48231,7 @@ msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -48347,7 +48329,7 @@ msgid_plural "wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -48382,7 +48364,7 @@ msgid_plural "raw beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -48395,7 +48377,7 @@ msgid_plural "raw lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -48406,7 +48388,7 @@ msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -48443,8 +48425,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -48458,6 +48439,27 @@ msgid "" "nutritious!" msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -48519,7 +48521,7 @@ msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -48567,26 +48569,23 @@ msgid_plural "meat sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -48702,7 +48701,7 @@ msgid_plural "mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -48713,7 +48712,7 @@ msgid_plural "hop rhizomes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "Ρίζες φυτού λυκίσκου, για να καλλιεργήσετε την δικιά σας σοδειά." @@ -48728,7 +48727,7 @@ msgid_plural "blackberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "" @@ -48743,7 +48742,7 @@ msgid_plural "blueberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "Μερικοί σπόροι βατόμουρου." @@ -48758,7 +48757,7 @@ msgid_plural "cranberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "" @@ -48773,7 +48772,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -48788,7 +48787,7 @@ msgid_plural "mulberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -48803,7 +48802,7 @@ msgid_plural "elderberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -48818,7 +48817,7 @@ msgid_plural "raspberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "" @@ -48833,7 +48832,7 @@ msgid_plural "strawberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "Μερικοί σπόροι φράουλας." @@ -48848,7 +48847,7 @@ msgid_plural "grape seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -48863,7 +48862,7 @@ msgid_plural "rose seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -48878,7 +48877,7 @@ msgid_plural "tobacco seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -48893,7 +48892,7 @@ msgid_plural "barley seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "Μερικοί σπόροι κριθαριού." @@ -48904,7 +48903,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "Μερικοί σπόροι ζαχαρότευτλων." @@ -48915,7 +48914,7 @@ msgid_plural "lettuce seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "" @@ -48926,7 +48925,7 @@ msgid_plural "cabbage seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "" @@ -48937,7 +48936,7 @@ msgid_plural "tomato seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "Μερικοί σπόροι ντομάτας." @@ -48948,7 +48947,7 @@ msgid_plural "cotton seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -48965,7 +48964,7 @@ msgid_plural "broccoli seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "" @@ -48976,7 +48975,7 @@ msgid_plural "zucchini seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "" @@ -48987,7 +48986,7 @@ msgid_plural "onion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "" @@ -48998,7 +48997,7 @@ msgid_plural "garlic seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "" @@ -49013,7 +49012,7 @@ msgid_plural "cattail seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -49028,7 +49027,7 @@ msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -49043,7 +49042,7 @@ msgid_plural "salsify seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -49054,7 +49053,7 @@ msgid_plural "chicory seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -49065,7 +49064,7 @@ msgid_plural "wild root seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -49076,7 +49075,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -49093,7 +49092,7 @@ msgid_plural "cactus seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -49119,7 +49118,7 @@ msgid_plural "carrot seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "" @@ -49130,7 +49129,7 @@ msgid_plural "corn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "" @@ -49145,7 +49144,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "" @@ -49156,7 +49155,7 @@ msgid_plural "cucumber seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "" @@ -49182,7 +49181,7 @@ msgid_plural "cannabis seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -49213,7 +49212,7 @@ msgid_plural "bean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -49228,7 +49227,7 @@ msgid_plural "soybean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -49237,7 +49236,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -49252,7 +49251,7 @@ msgid_plural "thyme seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -49269,7 +49268,7 @@ msgid_plural "canola seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -49280,7 +49279,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -49291,7 +49290,7 @@ msgid_plural "sunflower seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -49309,7 +49308,7 @@ msgid_plural "dogbane seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -49320,7 +49319,7 @@ msgid_plural "bee balm seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -49331,7 +49330,7 @@ msgid_plural "mugwort seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -49342,7 +49341,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -49353,7 +49352,7 @@ msgid_plural "wild herb seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -49368,7 +49367,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -49383,7 +49382,7 @@ msgid_plural "dandelion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -49398,7 +49397,7 @@ msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -49413,7 +49412,7 @@ msgid_plural "rhubarb stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -49424,7 +49423,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -49435,7 +49434,7 @@ msgid_plural "datura seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -49453,7 +49452,7 @@ msgid_plural "celery seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "" @@ -49464,7 +49463,7 @@ msgid_plural "oat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "" @@ -49481,7 +49480,7 @@ msgid_plural "wheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "Μερικοί σπόροι σιταριού." @@ -49498,7 +49497,7 @@ msgid_plural "fried seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -49524,7 +49523,7 @@ msgid_plural "coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "" @@ -49535,7 +49534,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -49546,7 +49545,7 @@ msgid_plural "chamomile seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -49561,7 +49560,7 @@ msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -49576,7 +49575,7 @@ msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -49587,7 +49586,7 @@ msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -49598,7 +49597,7 @@ msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -49609,7 +49608,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -49631,8 +49630,7 @@ msgid_plural "bone broths" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -49662,15 +49660,14 @@ msgid_plural "meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -49710,8 +49707,7 @@ msgid_plural "curries with meat" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -49729,10 +49725,8 @@ msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -49794,7 +49788,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" @@ -49818,7 +49812,7 @@ msgid_plural "chili powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -49831,7 +49825,7 @@ msgid_plural "hot sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -49844,7 +49838,7 @@ msgid_plural "cinnamon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -49855,7 +49849,7 @@ msgid_plural "curry powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -49868,7 +49862,7 @@ msgid_plural "black pepper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "" @@ -49879,7 +49873,7 @@ msgid_plural "salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -49892,7 +49886,7 @@ msgid_plural "Italian seasoning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -49903,7 +49897,7 @@ msgid_plural "seasoned salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -49914,7 +49908,7 @@ msgid_plural "sugar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -49927,7 +49921,7 @@ msgid_plural "sprinkles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -49942,7 +49936,7 @@ msgid_plural "wild herbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -49955,7 +49949,7 @@ msgid_plural "soy sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "" @@ -49971,7 +49965,7 @@ msgid_plural "mustard powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -50021,7 +50015,7 @@ msgid_plural "starch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -50034,7 +50028,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" @@ -50045,7 +50039,7 @@ msgid_plural "fried dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -50057,7 +50051,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -50068,7 +50062,7 @@ msgid_plural "fried burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -50105,7 +50099,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -50128,7 +50122,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -50140,7 +50134,7 @@ msgid_plural "canned corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "" @@ -50151,7 +50145,7 @@ msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -50162,7 +50156,7 @@ msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -50173,7 +50167,7 @@ msgid_plural "hominy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -50186,7 +50180,7 @@ msgid_plural "cornmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "" @@ -50197,7 +50191,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" @@ -50208,7 +50202,7 @@ msgid_plural "dried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -50221,7 +50215,7 @@ msgid_plural "cooked rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "" @@ -50232,7 +50226,7 @@ msgid_plural "fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "" @@ -50243,7 +50237,7 @@ msgid_plural "beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -50256,7 +50250,7 @@ msgid_plural "tofu fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -50267,7 +50261,7 @@ msgid_plural "tofu stirfry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -50280,7 +50274,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -50351,7 +50345,7 @@ msgid_plural "pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -50388,7 +50382,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "" @@ -50411,7 +50405,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -50450,7 +50444,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -50474,7 +50468,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -50550,7 +50544,7 @@ msgid_plural "sushi rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -50561,7 +50555,7 @@ msgid_plural "onigiri" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -50574,7 +50568,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -50600,7 +50594,7 @@ msgid_plural "sauerkraut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -50624,7 +50618,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -50635,7 +50629,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -50653,7 +50647,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "" @@ -50664,7 +50658,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -50677,7 +50671,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -50690,7 +50684,7 @@ msgid_plural "boiled noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "" @@ -50701,7 +50695,7 @@ msgid_plural "raw macaroni" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -50712,7 +50706,7 @@ msgid_plural "mac & cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -50723,7 +50717,7 @@ msgid_plural "flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "" @@ -50734,7 +50728,7 @@ msgid_plural "bread flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -50747,14 +50741,14 @@ msgid_plural "oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "" @@ -50765,7 +50759,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -50778,7 +50772,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -50864,7 +50858,7 @@ msgid_plural "oyster crackers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -50899,7 +50893,7 @@ msgid_plural "granola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -50923,7 +50917,7 @@ msgid_plural "fast noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -51117,7 +51111,7 @@ msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -51128,7 +51122,7 @@ msgid_plural "melon seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -51139,7 +51133,7 @@ msgid_plural "banana saplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -51150,7 +51144,7 @@ msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -51161,7 +51155,7 @@ msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -51172,7 +51166,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -51221,7 +51215,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -51267,7 +51261,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -51280,7 +51274,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -51321,7 +51315,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -51431,7 +51425,7 @@ msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -51445,7 +51439,7 @@ msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -51535,7 +51529,7 @@ msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -51549,7 +51543,7 @@ msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -51563,7 +51557,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -51575,7 +51569,7 @@ msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -51588,7 +51582,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -51643,7 +51637,7 @@ msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -51659,7 +51653,7 @@ msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -51673,7 +51667,7 @@ msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -51687,7 +51681,7 @@ msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -51748,7 +51742,7 @@ msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -51762,7 +51756,7 @@ msgid_plural "food cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -51774,7 +51768,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -51798,7 +51792,7 @@ msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -51824,7 +51818,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -51838,7 +51832,7 @@ msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -51854,7 +51848,7 @@ msgid_plural "caffex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -51895,7 +51889,7 @@ msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -51957,7 +51951,7 @@ msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -51978,7 +51972,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -52261,8 +52255,8 @@ msgstr[0] "" msgstr[1] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" @@ -52272,6 +52266,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -52314,6 +52320,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -52434,6 +52446,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -52470,24 +52488,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "" msgstr[1] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -52786,7 +52786,7 @@ msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -52852,7 +52852,7 @@ msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -52912,14 +52912,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -53002,7 +53002,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -53011,7 +53011,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -53023,7 +53023,7 @@ msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -53034,7 +53034,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -53047,7 +53047,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -53066,7 +53066,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -53080,7 +53080,7 @@ msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -53673,7 +53673,7 @@ msgid_plural "rock salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -53684,7 +53684,7 @@ msgid_plural "rhodonite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -53697,7 +53697,7 @@ msgid_plural "zincite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -53734,7 +53734,7 @@ msgid_plural "hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -53745,7 +53745,7 @@ msgid_plural "pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -53756,7 +53756,7 @@ msgid_plural "pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -53767,7 +53767,7 @@ msgid_plural "almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -53778,7 +53778,7 @@ msgid_plural "peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -53789,7 +53789,7 @@ msgid_plural "hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -53800,7 +53800,7 @@ msgid_plural "chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -53811,7 +53811,7 @@ msgid_plural "walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -54097,6 +54097,18 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -54108,6 +54120,19 @@ msgstr[1] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -54880,7 +54905,7 @@ msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -54891,7 +54916,7 @@ msgid_plural "smoldering embers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -55096,6 +55121,29 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -55298,7 +55346,7 @@ msgid_plural "superglue" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" @@ -55586,7 +55634,7 @@ msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -55728,7 +55776,7 @@ msgid_plural "concrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "" @@ -56570,7 +56618,7 @@ msgid_plural "clockworks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -56701,7 +56749,7 @@ msgid_plural "chamomile flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -56727,7 +56775,7 @@ msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -56762,7 +56810,7 @@ msgid_plural "mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "" @@ -56809,7 +56857,7 @@ msgid_plural "adobe mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -56822,7 +56870,7 @@ msgid_plural "tanbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -56844,7 +56892,7 @@ msgid_plural "willowbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -57271,7 +57319,7 @@ msgid_plural "raw tobacco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -57578,7 +57626,7 @@ msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -57601,7 +57649,7 @@ msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -57974,6 +58022,98 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -58666,7 +58806,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -58803,7 +58943,7 @@ msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58816,7 +58956,7 @@ msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58846,7 +58986,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58862,7 +59002,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58878,7 +59018,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58894,7 +59034,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58910,7 +59050,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58926,7 +59066,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58942,7 +59082,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58958,7 +59098,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58974,7 +59114,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58990,7 +59130,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59006,7 +59146,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59022,7 +59162,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59038,7 +59178,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59054,7 +59194,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59070,7 +59210,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59086,8 +59226,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59103,7 +59242,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59119,7 +59258,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59135,7 +59274,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59151,7 +59290,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59167,7 +59306,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59183,8 +59322,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59206,7 +59344,7 @@ msgid_plural "misc software" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -59217,7 +59355,7 @@ msgid_plural "hackPRO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "" @@ -59228,7 +59366,7 @@ msgid_plural "MediSoft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "" @@ -59239,7 +59377,7 @@ msgid_plural "MatheMAX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "" @@ -59250,7 +59388,7 @@ msgid_plural "infection data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "" @@ -59261,7 +59399,7 @@ msgid_plural "lab data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -59272,7 +59410,7 @@ msgid_plural "train data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -59283,7 +59421,7 @@ msgid_plural "neural data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -59573,22 +59711,34 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -59596,7 +59746,7 @@ msgid_plural "skinned %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -59835,7 +59985,7 @@ msgid_plural "trifacet remains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -60171,6 +60321,100 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -61894,7 +62138,7 @@ msgid_plural "headphones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -61974,7 +62218,7 @@ msgid_plural "spare parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -62572,7 +62816,7 @@ msgid_plural "bokken" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -62580,14 +62824,14 @@ msgid "" "edge, it's still quite capable of inflicting deadly wounds." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -63133,7 +63377,7 @@ msgid_plural "bionic claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -63354,7 +63598,7 @@ msgid_plural "qiang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -63399,7 +63643,7 @@ msgid_plural "naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -63407,7 +63651,7 @@ msgid "" "or by their wives in defense of the household." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -63415,7 +63659,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -63429,7 +63673,7 @@ msgid_plural "survivor naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -63560,7 +63804,7 @@ msgid_plural "ji" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -63620,6 +63864,20 @@ msgid "" "offers a good bit of slashing power." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -63627,7 +63885,7 @@ msgid_plural "jian" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -63711,14 +63969,14 @@ msgid_plural "tanto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -63732,14 +63990,14 @@ msgid_plural "nodachi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -63877,7 +64135,7 @@ msgid_plural "katana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -63945,7 +64203,7 @@ msgid_plural "wakizashi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -64010,7 +64268,7 @@ msgid_plural "tiger claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -64245,13 +64503,27 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -64267,7 +64539,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -64311,7 +64583,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -64601,7 +64873,7 @@ msgid_plural "scrap copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -64863,7 +65135,7 @@ msgid_plural "splintered wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -65080,17 +65352,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -66284,7 +66556,7 @@ msgid_plural "oars" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -66306,7 +66578,7 @@ msgid_plural "inflatable section" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -66317,7 +66589,7 @@ msgid_plural "inflatable airbag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -67173,7 +67445,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -67187,7 +67459,7 @@ msgid_plural "sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "" @@ -67198,7 +67470,7 @@ msgid_plural "wired sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -67220,7 +67492,7 @@ msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "" @@ -67231,7 +67503,7 @@ msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -67254,7 +67526,7 @@ msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -67478,12 +67750,19 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -67612,6 +67891,17 @@ msgstr[1] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -68047,7 +68337,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -68106,7 +68396,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -68398,7 +68688,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -68411,7 +68701,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -68533,7 +68823,7 @@ msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -68544,7 +68834,7 @@ msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -68735,7 +69025,7 @@ msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68748,7 +69038,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68761,7 +69051,7 @@ msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68774,7 +69064,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68787,7 +69077,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68800,7 +69090,7 @@ msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -68813,7 +69103,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68826,7 +69116,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68839,7 +69129,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68852,7 +69142,7 @@ msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68865,7 +69155,7 @@ msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68878,7 +69168,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -68987,7 +69277,7 @@ msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -69013,7 +69303,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -69026,7 +69316,7 @@ msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -69052,7 +69342,7 @@ msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -69085,7 +69375,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -69432,7 +69722,7 @@ msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -70146,7 +70436,7 @@ msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -71597,7 +71887,7 @@ msgid_plural "subzero talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -71811,7 +72101,7 @@ msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -71932,7 +72222,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71945,7 +72235,7 @@ msgid_plural "Beagle chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72748,6 +73038,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -72892,8 +73193,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -73232,6 +73533,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -73632,7 +73938,7 @@ msgid_plural "tiny fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -73643,7 +73949,7 @@ msgid_plural "small fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -73654,7 +73960,7 @@ msgid_plural "medium fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -73665,7 +73971,7 @@ msgid_plural "large fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -73676,7 +73982,7 @@ msgid_plural "huge fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -73812,7 +74118,7 @@ msgid_plural "whitefish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -73825,7 +74131,7 @@ msgid_plural "largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -73836,7 +74142,7 @@ msgid_plural "smallmouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -73849,7 +74155,7 @@ msgid_plural "striped bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -73862,7 +74168,7 @@ msgid_plural "white bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -73899,7 +74205,7 @@ msgid_plural "sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73910,7 +74216,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73933,7 +74239,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73944,7 +74250,7 @@ msgid_plural "green sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73955,7 +74261,7 @@ msgid_plural "longear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73966,7 +74272,7 @@ msgid_plural "redear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73977,7 +74283,7 @@ msgid_plural "rock bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -73990,7 +74296,7 @@ msgid_plural "calico bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -74025,7 +74331,7 @@ msgid_plural "channel catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -74036,7 +74342,7 @@ msgid_plural "white catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -74133,7 +74439,7 @@ msgid_plural "fallfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -74160,7 +74466,7 @@ msgid_plural "crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -74191,7 +74497,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -74204,7 +74510,7 @@ msgid_plural "giant crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -74217,7 +74523,7 @@ msgid_plural "colossal crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -74870,7 +75176,7 @@ msgid_plural "fused dragonflies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -75057,7 +75363,7 @@ msgstr[1] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -76701,7 +77007,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -76896,7 +77202,7 @@ msgid_plural "moose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -77055,7 +77361,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -77343,10 +77649,11 @@ msgstr[1] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -77357,6 +77664,17 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -79576,7 +79894,7 @@ msgid_plural "sawbones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -79591,7 +79909,7 @@ msgid_plural "doctor burns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -79769,7 +80087,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -79888,17 +80206,18 @@ msgstr[1] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -80332,7 +80651,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -80376,7 +80695,7 @@ msgid_plural "scissorlimbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -80390,7 +80709,7 @@ msgid_plural "hanging innards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -80871,7 +81190,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -82736,7 +83055,7 @@ msgid_plural "wisp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -83280,7 +83599,7 @@ msgid_plural "coelophysis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -83293,7 +83612,7 @@ msgid_plural "dilophosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -83306,7 +83625,7 @@ msgid_plural "ceratosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -83320,7 +83639,7 @@ msgid_plural "spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -83334,7 +83653,7 @@ msgid_plural "allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -83347,7 +83666,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -83361,20 +83680,33 @@ msgid_plural "siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -83387,7 +83719,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -83400,7 +83732,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -83413,7 +83745,7 @@ msgid_plural "compsognathus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -83426,7 +83758,7 @@ msgid_plural "gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -83452,7 +83784,7 @@ msgid_plural "nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -83465,7 +83797,7 @@ msgid_plural "deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -83504,7 +83836,7 @@ msgid_plural "amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -83517,7 +83849,7 @@ msgid_plural "apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -83530,7 +83862,7 @@ msgid_plural "brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -83543,7 +83875,7 @@ msgid_plural "diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -83554,7 +83886,7 @@ msgid_plural "camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -83567,7 +83899,7 @@ msgid_plural "brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -83580,7 +83912,7 @@ msgid_plural "alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -83593,7 +83925,7 @@ msgid_plural "scutellosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -83606,7 +83938,7 @@ msgid_plural "stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -83618,7 +83950,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83631,7 +83963,7 @@ msgid_plural "ankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83644,7 +83976,7 @@ msgid_plural "nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -83656,7 +83988,7 @@ msgid_plural "edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -83669,7 +84001,7 @@ msgid_plural "camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -83682,7 +84014,7 @@ msgid_plural "parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -83693,7 +84025,7 @@ msgid_plural "maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -83706,7 +84038,7 @@ msgid_plural "corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -83719,7 +84051,7 @@ msgid_plural "edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -83730,7 +84062,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -83743,7 +84075,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -83756,7 +84088,7 @@ msgid_plural "pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -83769,7 +84101,7 @@ msgid_plural "kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -83783,7 +84115,7 @@ msgid_plural "torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -83796,7 +84128,7 @@ msgid_plural "triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -83809,7 +84141,7 @@ msgid_plural "dimorphodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -83822,7 +84154,7 @@ msgid_plural "pteranodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -83835,7 +84167,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -83848,7 +84180,7 @@ msgid_plural "mosasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -83861,7 +84193,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -83874,7 +84206,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -83887,7 +84219,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -83900,7 +84232,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -83913,7 +84245,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -83926,7 +84258,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -83939,7 +84271,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -84042,6 +84374,20 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -84555,20 +84901,20 @@ msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" @@ -84628,7 +84974,6 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -84649,25 +84994,88 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" +#. ~ Description for juvenile allosaurus #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -84890,6 +85298,19 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -85000,7 +85421,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -85460,6 +85881,7 @@ msgstr[1] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -85509,6 +85931,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "" msgstr[1] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -85913,6 +86341,19 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -85945,7 +86386,7 @@ msgid_plural "Rage Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -85958,7 +86399,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -85972,7 +86413,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -86030,7 +86471,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -86093,7 +86534,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -86337,12 +86778,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" msgstr[1] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -86351,66 +86805,67 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -86418,12 +86873,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -86432,12 +86887,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -86446,16 +86901,16 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -86485,7 +86940,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -86498,7 +86953,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86511,7 +86967,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -86524,20 +86980,26 @@ msgid_plural "skeletal siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86550,7 +87012,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -86576,7 +87038,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -86588,7 +87050,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86601,8 +87063,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86621,7 +87083,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -86635,7 +87097,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -86648,7 +87110,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -86661,7 +87123,7 @@ msgid_plural "armored diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -86674,7 +87136,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -86687,7 +87149,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -86700,7 +87162,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -86713,7 +87175,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -86726,7 +87188,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -86740,7 +87202,7 @@ msgid_plural "Bone Fortress" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -86754,7 +87216,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86767,7 +87229,7 @@ msgid_plural "armored edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86780,7 +87242,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -86793,7 +87255,7 @@ msgid_plural "armored maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -86806,7 +87268,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -86819,7 +87281,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -86832,7 +87294,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -86845,7 +87307,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -86858,7 +87320,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -86871,7 +87333,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -86884,7 +87346,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -86897,7 +87359,7 @@ msgid_plural "armored torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -86910,7 +87372,7 @@ msgid_plural "armored triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -86923,7 +87385,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -86937,7 +87399,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -86951,7 +87413,7 @@ msgid_plural "Goliath Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -86964,7 +87426,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -86977,7 +87439,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -87018,7 +87480,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -87034,7 +87496,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -87347,7 +87809,7 @@ msgid_plural "forge hounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -87653,7 +88115,7 @@ msgid_plural "hunllef rams" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -87786,6 +88248,22 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -88063,7 +88541,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -88345,7 +88823,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -93417,7 +93895,7 @@ msgstr[1] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -93461,7 +93939,7 @@ msgstr "" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -94369,7 +94847,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -94957,17 +95435,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -94976,7 +95454,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -95199,7 +95677,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -95213,6 +95690,14 @@ msgid_plural "military flight helmets (on)" msgstr[0] "" msgstr[1] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -95565,7 +96050,7 @@ msgid_plural "bagpipes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -96192,7 +96677,7 @@ msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -96267,7 +96752,7 @@ msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -97009,7 +97494,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -98794,7 +99279,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -98802,7 +99287,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -98887,7 +99372,7 @@ msgid_plural "dao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -98937,7 +99422,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -98945,7 +99430,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -98977,7 +99462,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -99066,14 +99551,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -99087,7 +99572,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -99247,7 +99732,7 @@ msgid_plural "synthetic fabric" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -99988,7 +100473,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -102305,8 +102790,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -102987,6 +103472,39 @@ msgstr[1] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -103683,7 +104201,7 @@ msgid_plural "shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -103694,7 +104212,7 @@ msgid_plural "electric shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -103738,6 +104256,32 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -104283,7 +104827,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -104297,7 +104841,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -104774,8 +105318,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -104783,8 +105327,8 @@ msgid_plural "%s (happy)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -104792,8 +105336,8 @@ msgid_plural "%s (focus)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -104801,8 +105345,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -104810,7 +105354,7 @@ msgid_plural "%s (wake up)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -105251,7 +105795,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -105482,13 +106026,13 @@ msgid_plural "loose caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -105501,13 +106045,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -105971,6 +106515,21 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -106251,13 +106810,28 @@ msgid_plural "pliers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -106311,6 +106885,33 @@ msgid "" "to have the right tools for more precise work." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -106436,18 +107037,46 @@ msgid "" msgstr "" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" msgstr[0] "" msgstr[1] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -106744,36 +107373,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -106804,6 +107403,12 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -107026,8 +107631,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -107468,7 +108073,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -107890,7 +108495,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -107937,7 +108542,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -107955,7 +108560,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -108960,6 +109565,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -109011,6 +109625,30 @@ msgstr[1] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -109915,7 +110553,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -110392,6 +111030,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -111262,15 +111904,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" +msgid "Intradermal Alloy - Arms" msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -111286,37 +111927,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" +msgid "Intradermal Alloy - Legs" msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -111327,8 +111967,8 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -116843,7 +117483,7 @@ msgstr "" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -121589,8 +122229,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "" @@ -121606,9 +122245,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "" @@ -122284,7 +122922,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "" @@ -124559,7 +125197,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "" @@ -124681,6 +125320,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -127199,14 +127852,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -127345,16 +127998,16 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -128325,14 +128978,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -130593,6 +131246,19 @@ msgid_plural "acid dart guns" msgstr[0] "" msgstr[1] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -133108,8 +133774,9 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -133121,10 +133788,10 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -133626,17 +134293,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -135964,6 +136635,11 @@ msgid "" "the punishment of combat." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -136803,6 +137479,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "" @@ -136971,6 +137654,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -138083,6 +138770,10 @@ msgstr "" msgid "Move cursor down" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -138283,6 +138974,20 @@ msgstr "" msgid "No" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -139669,13 +140374,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -139737,13 +140442,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -140352,13 +141057,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -143793,6 +144498,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -144215,8 +144930,8 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -144240,7 +144955,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -144254,7 +144970,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -144267,9 +144983,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "" @@ -144429,7 +145174,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -144444,7 +145189,8 @@ msgstr "" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -144474,17 +145220,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -144495,10 +145240,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144509,9 +145268,10 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -144526,33 +145286,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" +"\n" +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -144643,6 +145424,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "" @@ -144700,7 +145495,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -144714,8 +145509,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144729,6 +145525,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -144780,6 +145577,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "" @@ -144865,6 +145675,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "" @@ -145011,6 +145836,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "" @@ -145347,16 +146187,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -145459,7 +146300,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -145566,33 +146407,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -145713,7 +146554,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -145911,6 +146752,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -145971,10 +146827,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -146075,10 +146932,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -146722,7 +147580,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -146732,11 +147605,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146830,6 +147704,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -146842,21 +147730,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146934,6 +147823,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -148566,7 +149469,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -148761,7 +149664,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -148966,7 +149869,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -149020,8 +149923,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -149181,7 +150083,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -149195,7 +150097,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -149234,7 +150136,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -149269,7 +150171,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -149300,7 +150202,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -149342,7 +150244,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -149384,16 +150286,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -149440,7 +150376,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -149490,7 +150426,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -149532,7 +150468,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -149581,7 +150517,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -149608,7 +150544,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -149643,7 +150579,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -150509,7 +151445,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -150544,7 +151480,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -150581,7 +151517,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -150616,7 +151552,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -150644,7 +151580,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -150696,7 +151632,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -150727,7 +151663,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -150756,7 +151692,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -150786,7 +151722,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -151055,8 +151991,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -151457,7 +152392,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -151498,7 +152433,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -151525,7 +152460,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -151607,7 +152542,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -151644,7 +152579,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -151688,7 +152623,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -151737,7 +152672,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -151779,7 +152714,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -151820,7 +152755,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -151855,7 +152790,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -151900,7 +152835,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -151911,6 +152846,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -152057,7 +153050,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -152112,7 +153105,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -152151,7 +153144,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -152188,11 +153181,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -152218,15 +153263,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -152283,7 +153324,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -152333,7 +153374,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -152378,7 +153419,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -152419,11 +153460,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -152466,7 +153508,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -152514,7 +153556,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -152558,7 +153600,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -154217,7 +155259,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -154236,7 +155278,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -154263,7 +155305,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -154297,7 +155339,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -154344,7 +155386,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -155120,6 +156162,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -155812,13 +156878,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -156548,6 +157614,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -157456,7 +158544,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -157467,6 +158554,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -157598,7 +158692,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -157842,8 +158936,8 @@ msgstr "" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" #: lang/json/mutation_from_json.py @@ -160820,8 +161914,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -161061,7 +162155,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -161070,7 +162164,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -161079,7 +162173,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -161088,7 +162182,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -161106,7 +162200,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -161115,7 +162209,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -161124,7 +162218,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -161133,7 +162227,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -161151,7 +162245,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -161160,7 +162254,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -161170,7 +162264,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -161180,7 +162274,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -161210,7 +162304,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -161219,7 +162313,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -161228,7 +162322,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -161237,7 +162331,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -161735,7 +162829,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -161854,7 +162948,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -166363,6 +167457,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -166398,6 +167493,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -166956,6 +168059,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -167091,6 +168202,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -167259,6 +168374,10 @@ msgstr "" msgid "Guard" msgstr "" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "" @@ -167427,6 +168546,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -168362,6 +169485,10 @@ msgstr "" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -169051,6 +170178,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -169059,24 +170190,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -169443,6 +170590,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -170899,6 +172050,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -171009,6 +172214,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -171045,7 +172278,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -171058,7 +172291,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -171651,6 +172884,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -171907,6 +173166,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -172033,6 +173346,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -172081,6 +173422,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -172103,6 +173472,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -176657,6 +178078,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -181007,6 +182486,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -185962,6 +187463,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -186006,6 +188029,63 @@ msgstr "" msgid "Farm processing shack" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "" @@ -186061,6 +188141,524 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "" @@ -186265,6 +188863,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -186959,6 +189933,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -187224,60 +190837,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -188112,7 +192034,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -188124,12 +192050,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -188137,11 +192073,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -188304,6 +192250,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -190441,6 +194443,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -190753,7 +194781,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -191491,8 +195519,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -192262,15 +196290,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -197317,6 +201346,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -197325,7 +201620,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -197442,7 +201737,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -202027,7 +206322,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -202086,7 +206381,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -202099,7 +206394,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -202117,17 +206412,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -202206,7 +206501,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -202316,8 +206611,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -202725,7 +207020,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -202735,8 +207030,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -204158,6 +208453,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -206454,7 +210811,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "" @@ -207115,6 +211472,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -207133,6 +211602,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -208300,6 +212784,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -210626,6 +215188,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -210735,6 +215304,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -210758,6 +215345,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -212268,7 +216862,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -212438,19 +217032,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -212523,95 +217117,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" +msgid "\"Wanna play with me?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" +msgid "\"Sing with me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" +msgid "\"Please take me with you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" +msgid "\"May I have a cookie?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -212619,31 +217217,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" +msgid "\"Hey kids. Want some candy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -212659,19 +217257,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -213738,6 +218332,10 @@ msgstr "" msgid "Gun Store" msgstr "" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "" @@ -215171,6 +219769,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -222391,6 +226993,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -223037,6 +228417,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -223106,6 +228490,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -225538,10 +230933,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -229334,10 +234725,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -229666,6 +235053,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -229957,6 +235453,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -230047,6 +235552,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -232818,6 +238375,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -233003,20 +238577,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -233624,20 +239184,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "" @@ -233673,54 +239219,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -233804,20 +239340,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -233936,34 +239458,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -233979,45 +239473,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -234101,17 +239595,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -234153,7 +239647,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -234166,6 +239660,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -234312,20 +239810,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -234430,20 +239914,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -234544,20 +240014,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -234882,41 +240338,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -235117,20 +240569,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -235891,20 +241329,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -236003,20 +241427,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -236059,20 +241469,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -238313,6 +243709,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "" @@ -241702,24 +247110,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -241727,32 +247135,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -241760,35 +247168,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -241796,33 +247199,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -241830,10 +247233,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -241841,10 +247244,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -241852,40 +247255,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -241893,21 +247294,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -241915,44 +247312,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -241960,14 +247348,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -241985,12 +247369,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -241998,21 +247377,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -242020,10 +247395,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -242031,7 +247406,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -242040,10 +247415,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -242052,21 +247427,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -242074,10 +247445,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -242086,10 +247457,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -242097,7 +247468,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -242106,26 +247477,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -242139,11 +247510,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -244646,18 +250013,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "" @@ -245020,6 +250494,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -245497,6 +251022,15 @@ msgstr "" msgid "wooden aisle" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -245630,6 +251164,10 @@ msgstr "" msgid "wood table" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -245698,6 +251236,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -245804,6 +251346,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -246987,8 +252535,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -249701,6 +255249,18 @@ msgstr "" msgid "Coverage:" msgstr "" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "" @@ -249792,8 +255352,9 @@ msgstr "" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -249805,6 +255366,12 @@ msgstr "" msgid "Storage (%s)" msgstr "" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "" @@ -253990,11 +259557,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "" @@ -254305,6 +259867,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -256471,10 +262041,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -257015,6 +262581,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -257441,6 +263015,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -257529,6 +263108,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -258282,7 +263866,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -258304,15 +263888,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -261644,6 +267219,10 @@ msgstr "" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -261928,6 +267507,15 @@ msgstr "" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "" @@ -264237,10 +269825,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "" @@ -264381,6 +269965,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -264740,10 +270332,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -265270,13 +270858,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -268581,6 +274162,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -271584,13 +277180,15 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" +msgid "Set the timer to how many seconds (0 to cancel)?" msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -272327,8 +277925,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -272550,38 +278147,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -273806,87 +279371,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -276704,7 +282212,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -281626,6 +287146,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -282495,21 +288020,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -282773,11 +288283,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -284447,11 +289966,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -285226,6 +290740,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -285233,14 +290756,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -287573,20 +293101,6 @@ msgstr "" msgid "# Unexplored" msgstr "" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -287927,6 +293441,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -287975,6 +293494,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -290366,6 +295889,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -294678,6 +300211,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "" diff --git a/lang/po/es_AR.po b/lang/po/es_AR.po index 98f8e31d10da9..31c3201d993f0 100644 --- a/lang/po/es_AR.po +++ b/lang/po/es_AR.po @@ -4,13 +4,14 @@ # Juan Ignacio Elias , 2021 # Brett Dong , 2021 # Vlasov Vitaly , 2021 +# Sebastían Di Giuseppe, 2021 # Noctivagante , 2021 # msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Noctivagante , 2021\n" "Language-Team: Spanish (Argentina) (https://www.transifex.com/cataclysm-dda-translators/teams/2217/es_AR/)\n" @@ -26,7 +27,7 @@ msgid_plural "battery" msgstr[0] "batería" msgstr[1] "batería" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -41,7 +42,7 @@ msgid_plural "butane" msgstr[0] "butano" msgstr[1] "butano" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Es un líquido inflamable muy común, utilizado en encendedores." @@ -52,7 +53,7 @@ msgid_plural "aerosol paint" msgstr[0] "pintura en aerosol" msgstr[1] "pintura en aerosol" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -67,7 +68,7 @@ msgid_plural "permanent ink" msgstr[0] "tinta permanente" msgstr[1] "tinta permanente" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -82,7 +83,7 @@ msgid_plural "candle wax" msgstr[0] "cera de vela" msgstr[1] "cera de vela" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "Es una sustancia sólida inflamable que se usa para hacer velas." @@ -93,7 +94,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "pirotécnico de bengala" msgstr[1] "pirotécnico de bengala" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "Es un químico pirotécnico que se usa en las bengalas." @@ -119,7 +120,7 @@ msgid_plural "oxygen" msgstr[0] "oxígeno" msgstr[1] "oxígeno" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Es oxígeno medicinal comprimido." @@ -130,7 +131,7 @@ msgid_plural "aluminum foil" msgstr[0] "papel aluminio" msgstr[1] "papel aluminio" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -156,7 +157,7 @@ msgid_plural "thread" msgstr[0] "hilo" msgstr[1] "hilo" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -194,7 +195,7 @@ msgid_plural "yarn" msgstr[0] "hilo de lana" msgstr[1] "hilo de lana" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Es hilo de lana, puede ser utilizado para tejer ropa de lana." @@ -216,7 +217,7 @@ msgid_plural "duct tape" msgstr[0] "cinta adhesiva" msgstr[1] "cinta adhesiva" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -286,8 +287,8 @@ msgid_plural "plutonium slurry" msgstr[0] "pulpa de plutonio" msgstr[1] "pulpa de plutonio" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -359,7 +360,7 @@ msgid_plural "bearings" msgstr[0] "rulemanes" msgstr[1] "rulemanes" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -409,7 +410,7 @@ msgid_plural "120mm HEAT" msgstr[0] "120mm HEAT" msgstr[1] "120mm HEAT" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -439,7 +440,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "pólvora sin humo mezclada" msgstr[1] "pólvora sin humo mezclada" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -457,7 +458,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "pólvora sin humo para escopeta" msgstr[1] "pólvora sin humo para escopeta" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -469,7 +470,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "pólvora sin humo para pistola" msgstr[1] "pólvora sin humo para pistola" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -481,7 +482,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "pólvora sin humo para magnum" msgstr[1] "pólvora sin humo para magnum" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -495,7 +496,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "pólvora sin humo para rifle" msgstr[1] "pólvora sin humo para rifle" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -507,7 +508,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "pólvora sin humo para rifle overbore" msgstr[1] "pólvora sin humo para rifle overbore" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -520,7 +521,7 @@ msgid_plural "artillery propellant" msgstr[0] "propelente de artillería" msgstr[1] "propelente de artillería" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -535,7 +536,7 @@ msgid_plural "oxidizer powder" msgstr[0] "oxidante en polvo" msgstr[1] "oxidante en polvo" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Polvo volátil de oxidante químico." @@ -546,7 +547,7 @@ msgid_plural "lye powder" msgstr[0] "lejía en polvo" msgstr[1] "lejía en polvo" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Soda cáustica en polvo." @@ -638,7 +639,7 @@ msgid_plural "copper" msgstr[0] "cobre" msgstr[1] "cobre" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -653,7 +654,7 @@ msgid_plural "medical tape" msgstr[0] "cinta médica" msgstr[1] "cinta médica" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Es un rollo de cinta médica, parecida a la cinta adhesiva." @@ -665,7 +666,7 @@ msgstr[0] "munición de referencia" msgstr[1] "municiones de referencia" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "SI VES ESTE TEXTO, ES UN BUG." @@ -676,7 +677,7 @@ msgid_plural "charcoal" msgstr[0] "carbón vegetal" msgstr[1] "carbón vegetal" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -694,7 +695,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "premezcla de carburo de calcio" msgstr[1] "premezcla de carburo de calcio" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -724,7 +725,7 @@ msgid_plural "albuterol" msgstr[0] "albuterol" msgstr[1] "albuterol" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -825,7 +826,7 @@ msgid_plural "nicotine liquid" msgstr[0] "nicotina líquida" msgstr[1] "nicotina líquida" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -839,7 +840,7 @@ msgid_plural "fish bait" msgstr[0] "carnada" msgstr[1] "carnada" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Es carnada que se usa en las trampas para atraer a los peces." @@ -899,17 +900,18 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "unfinished charcoal" msgid_plural "unfinished charcoal" -msgstr[0] "carbón inconcluso" -msgstr[1] "carbón inconcluso" +msgstr[0] "carbón vegetal inconcluso" +msgstr[1] "carbón vegetal inconcluso" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " "fuel in a charcoal kiln." msgstr "" -"Es el resultado del proceso interrumpido de realización de carbón. No tiene " -"ningún uso, excepto como combustible para una fosa de carbonización." +"Es el resultado del proceso interrumpido de realización de carbón vegetal. " +"No tiene ningún uso, excepto como combustible para una fosa de " +"carbonización." #: lang/json/AMMO_from_json.py msgid "unfinished calcium carbide" @@ -917,7 +919,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "carburo de calcio inconcluso" msgstr[1] "carburo de calcio inconcluso" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -944,7 +946,7 @@ msgid_plural "nitrox" msgstr[0] "nitrox" msgstr[1] "nitrox" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -957,7 +959,7 @@ msgid_plural "extinguishing agent" msgstr[0] "agente extintor" msgstr[1] "agente extintor" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Es una solución química seca efectiva para extinguir fuegos." @@ -968,7 +970,7 @@ msgid_plural "tinder" msgstr[0] "yesca" msgstr[1] "yesca" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -1002,7 +1004,7 @@ msgid_plural "bronze" msgstr[0] "bronce" msgstr[1] "bronce" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -1015,7 +1017,7 @@ msgid_plural "glowstick juice" msgstr[0] "jugo de glowstick" msgstr[1] "jugo de glowstick" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -1029,7 +1031,7 @@ msgid_plural "graphite" msgstr[0] "grafito" msgstr[1] "grafito" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1046,7 +1048,7 @@ msgid_plural "black pen ink" msgstr[0] "tinta negra de lapicera" msgstr[1] "tinta negra de lapicera" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1061,7 +1063,7 @@ msgid_plural "blue pen ink" msgstr[0] "tinta azul de lapicera" msgstr[1] "tinta azul de lapicera" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1077,7 +1079,7 @@ msgid_plural "green pen ink" msgstr[0] "tinta verde de lapicera" msgstr[1] "tinta verde de lapicera" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1092,7 +1094,7 @@ msgid_plural "red pen ink" msgstr[0] "tinta roja de lapicera" msgstr[1] "tinta roja de lapicera" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1125,7 +1127,7 @@ msgid_plural "sulfur" msgstr[0] "azufre" msgstr[1] "azufre" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1156,7 +1158,7 @@ msgid_plural "cement" msgstr[0] "cemento" msgstr[1] "cemento" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1173,7 +1175,7 @@ msgid_plural "gravel" msgstr[0] "gravilla" msgstr[1] "gravilla" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1186,7 +1188,7 @@ msgid_plural "limestone" msgstr[0] "caliza" msgstr[1] "caliza" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1203,7 +1205,7 @@ msgid_plural "quicklime" msgstr[0] "cal" msgstr[1] "cal" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1223,7 +1225,7 @@ msgid_plural "sand" msgstr[0] "arena" msgstr[1] "arena" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1238,7 +1240,7 @@ msgid_plural "soil" msgstr[0] "tierra fértil" msgstr[1] "tierra fértil" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1253,7 +1255,7 @@ msgid_plural "aluminum powder" msgstr[0] "polvo de aluminio" msgstr[1] "polvo de aluminio" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1272,7 +1274,7 @@ msgid_plural "zinc powder" msgstr[0] "polvo de zinc" msgstr[1] "polvo de zinc" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1291,7 +1293,7 @@ msgid_plural "zinc oxide" msgstr[0] "óxido de zinc" msgstr[1] "óxido de zinc" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1306,7 +1308,7 @@ msgid_plural "manganese dioxide" msgstr[0] "óxido de manganeso" msgstr[1] "óxido de manganeso" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1323,7 +1325,7 @@ msgid_plural "potassium chloride" msgstr[0] "cloruro de potasio" msgstr[1] "cloruro de potasio" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1342,7 +1344,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "hidróxido de potasio" msgstr[1] "hidróxido de potasio" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1359,7 +1361,7 @@ msgid_plural "acetone" msgstr[0] "acetona" msgstr[1] "acetona" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1376,7 +1378,7 @@ msgid_plural "chromium oxide" msgstr[0] "óxido de cromo" msgstr[1] "óxido de cromo" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1397,7 +1399,7 @@ msgid_plural "calcium carbide" msgstr[0] "carburo de calcio" msgstr[1] "carburo de calcio" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1418,7 +1420,7 @@ msgid_plural "hexamine" msgstr[0] "hexamina" msgstr[1] "hexamina" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1439,7 +1441,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "peróxido de hidrógeno (concentrado)" msgstr[1] "peróxido de hidrógeno (concentrado)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1459,7 +1461,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "nitrato de amonio" msgstr[1] "nitrato de amonio" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1478,7 +1480,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "gránulos de nitrato de amonio" msgstr[1] "gránulos de nitrato de amonio" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1497,7 +1499,7 @@ msgid_plural "saltpeter" msgstr[0] "nitrato de potasio" msgstr[1] "nitrato de potasio" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1514,7 +1516,7 @@ msgid_plural "niter" msgstr[0] "nitro" msgstr[1] "nitro" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1529,7 +1531,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "sulfato de aluminio" msgstr[1] "sulfato de aluminio" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1553,7 +1555,7 @@ msgid_plural "acetic acid" msgstr[0] "ácido acético" msgstr[1] "ácido acético" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1572,7 +1574,7 @@ msgid_plural "formaldehyde" msgstr[0] "formaldehído" msgstr[1] "formaldehído" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1591,7 +1593,7 @@ msgid_plural "thermite" msgstr[0] "termita" msgstr[1] "termita" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1610,7 +1612,7 @@ msgid_plural "ANFO" msgstr[0] "NAFO" msgstr[1] "NAFO" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1629,7 +1631,7 @@ msgid_plural "black gunpowder" msgstr[0] "pólvora negra" msgstr[1] "pólvora negra" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1648,7 +1650,7 @@ msgid_plural "match head powder" msgstr[0] "polvo de fósforo" msgstr[1] "polvo de fósforo" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1665,7 +1667,7 @@ msgid_plural "RDX" msgstr[0] "RDX" msgstr[1] "RDX" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1683,7 +1685,7 @@ msgid_plural "composition b" msgstr[0] "composición B" msgstr[1] "composición B" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1700,7 +1702,7 @@ msgid_plural "HMTD" msgstr[0] "HMTD" msgstr[1] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1718,7 +1720,7 @@ msgid_plural "APEX" msgstr[0] "TATP" msgstr[1] "TATP" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1736,7 +1738,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "combustible de misiles improvisado" msgstr[1] "combustible de misiles improvisado" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1751,7 +1753,7 @@ msgid_plural "detergent" msgstr[0] "detergente" msgstr[1] "detergente" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "Es un popular polvo limpiador pre-Cataclismo." @@ -1762,7 +1764,7 @@ msgid_plural "soap flakes" msgstr[0] "ralladura de jabón" msgstr[1] "ralladura de jabón" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1833,7 +1835,7 @@ msgid_plural "concentrated venom" msgstr[0] "veneno concentrado" msgstr[1] "veneno concentrado" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1853,7 +1855,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "paralizante concentrado" msgstr[1] "paralizante concentrado" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1872,7 +1874,7 @@ msgid_plural "rocuronium" msgstr[0] "rocuronio" msgstr[1] "rocuronio" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1889,7 +1891,7 @@ msgid_plural "red phosphorous" msgstr[0] "fósforo rojo" msgstr[1] "fósforo rojo" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1904,7 +1906,7 @@ msgid_plural "iodine crystal" msgstr[0] "cristal de yodo" msgstr[1] "cristal de yodo" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1919,7 +1921,7 @@ msgid_plural "ethanol" msgstr[0] "etanol" msgstr[1] "etanol" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1953,7 +1955,7 @@ msgid_plural "methanol" msgstr[0] "metanol" msgstr[1] "metanol" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1969,7 +1971,7 @@ msgid_plural "diesel" msgstr[0] "gasoil" msgstr[1] "gasoil" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1983,7 +1985,7 @@ msgid_plural "JP8 fuel" msgstr[0] "combustible JP8" msgstr[1] "combustible JP8" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1999,7 +2001,7 @@ msgid_plural "avgas fuel" msgstr[0] "combustible de aeronave" msgstr[1] "combustible de aeronave" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -2012,7 +2014,7 @@ msgid_plural "biodiesel" msgstr[0] "biodiésel" msgstr[1] "biodiésel" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -2028,7 +2030,7 @@ msgid_plural "gasoline" msgstr[0] "nafta" msgstr[1] "nafta" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -2043,7 +2045,7 @@ msgid_plural "lamp oil" msgstr[0] "querosén" msgstr[1] "querosén" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "" @@ -2056,7 +2058,7 @@ msgid_plural "motor oil" msgstr[0] "aceite de motor" msgstr[1] "aceite de motor" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "Es un aceite que se utiliza en los motores de los vehículos." @@ -2067,7 +2069,7 @@ msgid_plural "napalm" msgstr[0] "napalm" msgstr[1] "napalm" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2084,7 +2086,7 @@ msgid_plural "gelled gasoline" msgstr[0] "nafta gel" msgstr[1] "nafta gel" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2101,7 +2103,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "combustible para lanzallamas" msgstr[1] "combustible para lanzallamas" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2146,7 +2148,7 @@ msgid_plural "shrapnel" msgstr[0] "esquirla" msgstr[1] "esquirla" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "Es un pedazo de metal retorcido y con puntas." @@ -2206,7 +2208,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "10mm Auto FMJ" msgstr[1] "10mm Auto FMJ" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2234,7 +2236,7 @@ msgid_plural "H&K 12mm" msgstr[0] "H&K 12mm" msgstr[1] "H&K 12mm" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2282,7 +2284,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "perdigón grande 20x66mm, casera" msgstr[1] "perdigón grande 20x66mm, casera" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2313,7 +2315,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "20x66mm explosiva" msgstr[1] "20x66mm explosiva" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2363,7 +2365,7 @@ msgid_plural "20x66mm frag" msgstr[0] "20x66mm fragmentaria" msgstr[1] "20x66mm fragmentaria" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2380,7 +2382,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "20x66mm incendiaria" msgstr[1] "20x66mm incendiaria" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2397,7 +2399,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "perdigón grande 20x66mm" msgstr[1] "perdigón grande 20x66mm" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2431,7 +2433,7 @@ msgid_plural ".22 CB" msgstr[0] ".22 CB" msgstr[1] ".22 CB" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2448,7 +2450,7 @@ msgid_plural ".22 FMJ" msgstr[0] ".22 FMJ" msgstr[1] ".22 FMJ" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2466,7 +2468,7 @@ msgid_plural ".22 LR" msgstr[0] ".22 LR" msgstr[1] ".22 LR" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2484,7 +2486,7 @@ msgid_plural ".22 rat-shot" msgstr[0] ".22 rat-shot" msgstr[1] ".22 rat-shot" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2525,7 +2527,7 @@ msgid_plural ".223 Remington" msgstr[0] ".223 Remington" msgstr[1] ".223 Remington" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2548,7 +2550,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "5.56 NATO Mk 262" msgstr[1] "5.56 NATO Mk 262" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2569,7 +2571,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "5.56 NATO Mk 318" msgstr[1] "5.56 NATO Mk 318" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2592,7 +2594,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "5.56 NATO M855" msgstr[1] "5.56 NATO M855" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2617,7 +2619,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "5.56 OTAN M855A1" msgstr[1] "5.56 OTAN M855A1" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2642,7 +2644,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "5.56 OTAN trazadora" msgstr[1] "5.56 OTAN trazadora" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2693,7 +2695,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] ".270 Winchester JSP" msgstr[1] ".270 Winchester JSP" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2749,7 +2751,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] ".300 Winchester Magnum, recargada" msgstr[1] ".300 Winchester Magnum, recargada" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2766,7 +2768,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] ".30-06 Springfield" msgstr[1] ".30-06 Springfield" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2783,7 +2785,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] ".30-06 M14A1 trazadoras" msgstr[1] ".30-06 M14A1 trazadora" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2800,7 +2802,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] ".30-06 M2 AP" msgstr[1] ".30-06 M2 AP" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2918,7 +2920,7 @@ msgid_plural ".308 Winchester" msgstr[0] ".308 Winchester" msgstr[1] ".308 Winchester" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2934,7 +2936,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "7.62x51mm M80" msgstr[1] "7.62x51mm M80" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2951,7 +2953,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "7.62x51mm OTAN trazadora" msgstr[1] "7.62x51mm OTAN trazadora" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -3002,7 +3004,7 @@ msgid_plural ".32 ACP" msgstr[0] ".32 ACP" msgstr[1] ".32 ACP" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -3029,7 +3031,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] ".357 Magnum FMJ" msgstr[1] ".357 Magnum FMJ" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -3045,7 +3047,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] ".357 Magnum JHP" msgstr[1] ".357 Magnum JHP" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -3085,7 +3087,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] ".357 SIG FMJ" msgstr[1] ".357 SIG FMJ" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -3100,7 +3102,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] ".357 SIG JHP" msgstr[1] ".357 SIG JHP" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3156,7 +3158,7 @@ msgid_plural ".38 FMJ" msgstr[0] ".38 FMJ" msgstr[1] ".38 FMJ" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3186,7 +3188,7 @@ msgid_plural ".38 Super" msgstr[0] ".38 Super" msgstr[1] ".38 Super" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3231,7 +3233,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] ".380 ACP FMJ" msgstr[1] ".380 ACP FMJ" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3249,7 +3251,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] ".380 ACP JHP" msgstr[1] ".380 ACP JHP" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3267,7 +3269,7 @@ msgid_plural ".380 ACP +P" msgstr[0] ".380 ACP +P" msgstr[1] ".380 ACP +P" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3316,7 +3318,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] ".38 Super FMJ" msgstr[1] ".38 Super FMJ" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3339,7 +3341,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] ".40 S&W FMJ" msgstr[1] ".40 S&W FMJ" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3356,7 +3358,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] ".40 S&W JHP" msgstr[1] ".40 S&W JHP" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3403,7 +3405,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "40x46mm M1006 esponja" msgstr[1] "40x46mm M1006 esponja" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3420,7 +3422,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "40x46mm M433 HEDP" msgstr[1] "40x46mm M433 HEDP" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3437,7 +3439,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "perdigón grande 40x46mm M576" msgstr[1] "perdigón grande 40x46mm M576" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3455,7 +3457,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "gas lacrimógeno 40x46mm M651" msgstr[1] "gas lacrimógeno 40x46mm M651" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3472,8 +3474,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "perdigón grande 40x46mm-M118, recargado" msgstr[1] "perdigón grande 40x46mm-M118, recargado" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3491,8 +3493,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "perdigón grande 40x46mm-M199, recargado" msgstr[1] "perdigón grande 40x46mm-M199, recargado" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3547,8 +3549,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "dardos perforantes 40x46mm-M118, recargado" msgstr[1] "dardos perforantes 40x46mm-M118, recargado" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3566,8 +3568,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "dardos perforantes 40x46mm-M199, recargado" msgstr[1] "dardos perforantes 40x46mm-M199, recargado" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3633,7 +3635,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "40x46mm .22 LR nido de avispa" msgstr[1] "40x46mm .22 LR nido de avispa" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3648,7 +3650,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "40x46mm .410 nido de avispa" msgstr[1] "40x46mm .410 nido de avispa" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3681,7 +3683,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "40x53mm M430A1 HEDP" msgstr[1] "40x53mm M430A1 HEDP" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3698,8 +3700,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "perdigón grande 40x53mm, recargado" msgstr[1] "perdigón grande 40x53mm, recargado" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3725,8 +3727,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "dardos perforantes 40x53mm, recargado" msgstr[1] "dardos perforantes 40x53mm, recargado" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3759,7 +3761,7 @@ msgid_plural ".410 000 shot" msgstr[0] "cartucho .410 000" msgstr[1] "cartucho .410 000" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3777,7 +3779,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] ".44 Magnum FMJ" msgstr[1] ".44 Magnum FMJ" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3849,7 +3851,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] ".45 ACP FMJ" msgstr[1] ".45 ACP FMJ" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3864,7 +3866,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] ".45 ACP JHP" msgstr[1] ".45 ACP JHP" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3881,7 +3883,7 @@ msgid_plural ".45 ACP +P" msgstr[0] ".45 ACP +P" msgstr[1] ".45 ACP +P" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3928,7 +3930,7 @@ msgid_plural ".454 Casull" msgstr[0] ".454 Casull" msgstr[1] ".454 Casull" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3961,7 +3963,7 @@ msgid_plural ".45-70 SP" msgstr[0] ".45-70 SP" msgstr[1] ".45-70 SP" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3995,7 +3997,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] ".45-70 LFN cowboy" msgstr[1] ".45-70 LFN cowboy" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4012,7 +4014,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] ".45-70 SP, recargada" msgstr[1] ".45-70 SP, recargada" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4048,7 +4050,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] ".45-70 LFN cowboy, recargada" msgstr[1] ".45-70 LFN cowboy, recargada" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4066,7 +4068,7 @@ msgid_plural ".45-70, black powder" msgstr[0] ".45-70, pólvora" msgstr[1] ".45-70, pólvora" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4084,7 +4086,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] ".45 Colt JHP" msgstr[1] ".45 Colt JHP" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -4115,7 +4117,7 @@ msgid_plural "4.6x30mm" msgstr[0] "4.6x30mm" msgstr[1] "4.6x30mm" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -4132,8 +4134,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "4.6x30mm, pólvora" msgstr[1] "4.6x30mm, pólvora" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -4159,7 +4161,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] ".460 Rowland HCFN" msgstr[1] ".460 Rowland HCFN" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -4174,7 +4176,7 @@ msgid_plural ".460 Rowland" msgstr[0] ".460 Rowland" msgstr[1] ".460 Rowland" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4207,7 +4209,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] ".460 Rowland FMJ, recargada" msgstr[1] ".460 Rowland FMJ, recargada" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4228,7 +4230,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] ".50 BMG M17 trazadora" msgstr[1] ".50 BMG M17 trazadora" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4245,7 +4247,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] ".50 BMG M33 bola" msgstr[1] ".50 BMG M33 bola" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4266,7 +4268,7 @@ msgid_plural ".50 BMG Match" msgstr[0] ".50 BMG Match" msgstr[1] ".50 BMG Match" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4281,7 +4283,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] ".50 BMG M2 AP" msgstr[1] ".50 BMG M2 AP" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4296,7 +4298,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] ".50 BMG Raufoss Mk 211" msgstr[1] ".50 BMG Raufoss Mk 211" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -4323,7 +4325,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] ".50 BMG trazadora, recargada" msgstr[1] ".50 BMG trazadora, recargada" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4340,7 +4342,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] ".50 BMG Match, recargada" msgstr[1] ".50 BMG Match, recargada" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -4361,7 +4363,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] ".50 BMG AP, recargada" msgstr[1] ".50 BMG AP, recargada" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -4425,7 +4427,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "5.45x39mm 7N10" msgstr[1] "5.45x39mm 7N10" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -4443,7 +4445,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "5.45x39mm 7N22" msgstr[1] "5.45x39mm 7N22" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -4458,7 +4460,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "5.45x39mm, recargada" msgstr[1] "5.45x39mm, recargada" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -4475,7 +4477,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "5.45x39mm AP, recargada" msgstr[1] "5.45x39mm AP, recargada" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -4502,7 +4504,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "5.7x28mm SS190" msgstr[1] "5.7x28mm SS190" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4525,8 +4527,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "5.7x28mm, pólvora" msgstr[1] "5.7x28mm, pólvora" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4623,7 +4625,7 @@ msgid_plural "66mm HEAT" msgstr[0] "66mm HEAT" msgstr[1] "66mm HEAT" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -4638,7 +4640,7 @@ msgid_plural ".700 NX" msgstr[0] ".700 NX" msgstr[1] ".700 NX" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4669,7 +4671,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "7.62x39mm 57-N-231" msgstr[1] "7.62x39mm 57-N-231" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4689,7 +4691,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "7.62x39mm M67" msgstr[1] "7.62x39mm M67" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4708,7 +4710,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "7.62x39mm M43, recargada" msgstr[1] "7.62x39mm M43, recargada" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4745,7 +4747,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "7.62x54mmR" msgstr[1] "7.62x54mmR" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4778,7 +4780,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "7.62x25mm JHP" msgstr[1] "7.62x25mm JHP" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4810,7 +4812,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "7.62x25mm Tipo P" msgstr[1] "7.62x25mm Tipo P" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4889,7 +4891,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "8x40mm JHP trucha" msgstr[1] "8x40mm JHP trucha" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4904,7 +4906,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "8x40mm sin casquillo" msgstr[1] "8x40mm sin casquillo" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4919,7 +4921,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "8x40mm deportiva" msgstr[1] "8x40mm deportiva" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4936,7 +4938,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "8x40mm FMJ" msgstr[1] "8x40mm FMJ" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4953,7 +4955,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "8x40mm HVP" msgstr[1] "8x40mm HVP" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4971,7 +4973,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "8x40mm trazadora" msgstr[1] "8x40mm trazadora" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4990,7 +4992,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "8x40mm JHP" msgstr[1] "8x40mm JHP" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -5007,7 +5009,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "9x19mm JHP" msgstr[1] "9x19mm JHP" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -5026,7 +5028,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "9x19mm FMJ" msgstr[1] "9x19mm FMJ" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -5041,7 +5043,7 @@ msgid_plural "9x19mm +P" msgstr[0] "9x19mm +P" msgstr[1] "9x19mm +P" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -5057,7 +5059,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "9x19mm +P+" msgstr[1] "9x19mm +P+" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -5108,7 +5110,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "9x18mm 57-N-181S" msgstr[1] "9x18mm 57-N-181S" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -5125,7 +5127,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "9x18mm SP-7" msgstr[1] "9x18mm SP-7" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -5142,7 +5144,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "9x18mm RG028" msgstr[1] "9x18mm RG028" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -5169,7 +5171,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "9x18mm, recargada" msgstr[1] "9x18mm, recargada" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5186,7 +5188,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "9x18mm +P+, recargada" msgstr[1] "9x18mm +P+, recargada" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5203,7 +5205,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "9x18mm FMJ, recargada" msgstr[1] "9x18mm FMJ, recargada" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5221,7 +5223,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "152mm ATGM HEAT" msgstr[1] "152mm ATGM HEAT" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -5252,7 +5254,7 @@ msgid_plural "cannon round shot" msgstr[0] "cartucho de cañón" msgstr[1] "cartucho de cañón" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -5267,7 +5269,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "gas tóxico en aerosol" msgstr[1] "gas tóxico en aerosol" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -5283,7 +5285,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "fungicida en aerosol" msgstr[1] "fungicida en aerosol" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -5299,7 +5301,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "insecticida en aerosol" msgstr[1] "insecticida en aerosol" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -5435,7 +5437,7 @@ msgid_plural "paintball" msgstr[0] "bola para paintball" msgstr[1] "bola para paintball" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -5553,7 +5555,7 @@ msgid_plural "00 shot" msgstr[0] "cartucho 00" msgstr[1] "cartucho 00" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -5570,7 +5572,7 @@ msgstr[0] "cartucho no letal" msgstr[1] "cartuchos no letal" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -5583,7 +5585,7 @@ msgid_plural "birdshot" msgstr[0] "perdigón pequeño" msgstr[1] "perdigón pequeño" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -5650,8 +5652,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "cartucho 00, chatarra" msgstr[1] "cartucho 00, chatarra" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5827,7 +5829,7 @@ msgid_plural "oxyacetylene" msgstr[0] "oxiacetileno" msgstr[1] "oxiacetileno" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5842,7 +5844,7 @@ msgid_plural "fungal seeds" msgstr[0] "semilla de hongos" msgstr[1] "semillas de hongos" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Son unas semillas de hongos." @@ -6789,7 +6791,7 @@ msgid_plural "red paint" msgstr[0] "pintura roja" msgstr[1] "pintura roja" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Es una lata de pintura roja." @@ -6800,7 +6802,7 @@ msgid_plural "blue paint" msgstr[0] "pintura azul" msgstr[1] "pintura azul" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Es una lata de pintura azul." @@ -6811,7 +6813,7 @@ msgid_plural "white paint" msgstr[0] "pintura blanca" msgstr[1] "pintura blanca" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Es una lata de pintura blanca." @@ -6822,7 +6824,7 @@ msgid_plural "green paint" msgstr[0] "pintura verde" msgstr[1] "pintura verde" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Es una lata de pintura verde." @@ -6833,7 +6835,7 @@ msgid_plural "purple paint" msgstr[0] "pintura púrpura" msgstr[1] "pintura púrpura" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Es una lata de pintura púrpura." @@ -6844,7 +6846,7 @@ msgid_plural "yellow paint" msgstr[0] "pintura amarilla" msgstr[1] "pintura amarilla" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Es una lata de pintura amarilla." @@ -6914,7 +6916,7 @@ msgid_plural "bismuth" msgstr[0] "bismuto" msgstr[1] "bismuto" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -6927,8 +6929,8 @@ msgid_plural "gold" msgstr[0] "oro" msgstr[1] "oro" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -6949,7 +6951,7 @@ msgid_plural "zinc" msgstr[0] "zinc" msgstr[1] "zinc" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6968,7 +6970,7 @@ msgid_plural "lead" msgstr[0] "plomo" msgstr[1] "plomo" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6983,7 +6985,7 @@ msgid_plural "magnesium powder" msgstr[0] "polvo de magnesio" msgstr[1] "polvo de magnesio" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6998,7 +7000,7 @@ msgid_plural "silver" msgstr[0] "plata" msgstr[1] "plata" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -7065,7 +7067,7 @@ msgid_plural "tin powder" msgstr[0] "polvo de estaño" msgstr[1] "polvo de estaño" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -7080,7 +7082,7 @@ msgid_plural "solder" msgstr[0] "estaño" msgstr[1] "estaño" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -7119,7 +7121,7 @@ msgid_plural "fuse" msgstr[0] "mecha" msgstr[1] "mecha" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -7180,7 +7182,7 @@ msgid_plural "cotton scraps" msgstr[0] "pedazos de algodón" msgstr[1] "pedazos de algodón" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -7197,7 +7199,7 @@ msgid_plural "faux fur scraps" msgstr[0] "pedazos de piel artificial" msgstr[1] "pedazos de piel artificial" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -7212,7 +7214,7 @@ msgid_plural "felt scraps" msgstr[0] "trozos de fieltro" msgstr[1] "trozos de fieltro" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -7229,7 +7231,7 @@ msgid_plural "fur scraps" msgstr[0] "pedazos de piel" msgstr[1] "pedazos de piel" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -7244,7 +7246,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "pedazos de kevlar" msgstr[1] "pedazos de kevlar" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -7263,7 +7265,7 @@ msgid_plural "leather scraps" msgstr[0] "pedazos de cuero" msgstr[1] "pedazos de cuero" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -7278,7 +7280,7 @@ msgid_plural "Lycra scraps" msgstr[0] "pedazos de licra" msgstr[1] "pedazos de licra" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -7293,7 +7295,7 @@ msgid_plural "neoprene scraps" msgstr[0] "pedazos de neopreno" msgstr[1] "pedazos de neopreno" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -7308,7 +7310,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "pedazos de tela sintética" msgstr[1] "pedazos de tela sintética" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -7323,7 +7325,7 @@ msgid_plural "Nomex scraps" msgstr[0] "trozos de Nomex" msgstr[1] "trozos de Nomex" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -7353,7 +7355,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "retazo de tela de algodón" msgstr[1] "retazos de tela de algodón" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -7381,7 +7383,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "retazos de ropa de piel artificial" msgstr[1] "retazos de ropa de piel artificial" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -7409,7 +7411,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "retazos de ropa de fieltro" msgstr[1] "retazos de ropa de fieltro" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -7457,7 +7459,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "retazos de ropa de licra" msgstr[1] "retazos de ropa de licra" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -7489,7 +7491,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "retazos de ropa de neopreno" msgstr[1] "retazos de ropa de neopreno" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -7521,7 +7523,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "retazos de ropa de Nomex" msgstr[1] "retazos de ropa de Nomex" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -7549,7 +7551,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "retazos de ropa de tela sintética" msgstr[1] "retazos de ropa de tela sintética" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -7662,7 +7664,7 @@ msgid_plural "titanium" msgstr[0] "titanio" msgstr[1] "titanio" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -7696,7 +7698,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "10mm FMJ sin casquillo" msgstr[1] "10mm FMJ sin casquillo" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -7715,7 +7717,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "10mm JHP sin casquillo" msgstr[1] "10mm JHP sin casquillo" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -7735,7 +7737,7 @@ msgid_plural "25mm canister shot" msgstr[0] "bote de metralla 25mm" msgstr[1] "bote de metralla 25mm" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -7756,7 +7758,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "7.50mm sin casquillo" msgstr[1] "7.50mm sin casquillo" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -7775,7 +7777,7 @@ msgid_plural "7.50mm RP" msgstr[0] "7.50mm RP" msgstr[1] "7.50mm RP" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -7798,7 +7800,7 @@ msgid_plural "electric charge" msgstr[0] "carga eléctrica" msgstr[1] "carga eléctrica" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -7814,7 +7816,7 @@ msgid_plural "foamcrete" msgstr[0] "hormigón celular" msgstr[1] "hormigón celular" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -7835,7 +7837,7 @@ msgid_plural "solid hydrogen" msgstr[0] "hidrógeno sólido" msgstr[1] "hidrógeno sólido" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -7850,7 +7852,7 @@ msgid_plural "lead pellets" msgstr[0] "perdigones de plomo" msgstr[1] "perdigones de plomo" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -7867,7 +7869,7 @@ msgid_plural "domed HP pellets" msgstr[0] "perdigones HP de punta redonda" msgstr[1] "perdigones HP de punta redonda" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -7884,7 +7886,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "perdigones HP de punta afilada" msgstr[1] "perdigones HP de punta afilada" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -7899,7 +7901,7 @@ msgid_plural "alloy pellets" msgstr[0] "perdigones de aleación" msgstr[1] "perdigones de aleación" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -8072,7 +8074,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "munición de pistola, bola" msgstr[1] "municiones de pistola, bola" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -8092,7 +8094,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "munición de pistola, JHP" msgstr[1] "municiones de pistola, JHP" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -8136,7 +8138,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "munición de magnum, bola" msgstr[1] "municiones de magnum, bola" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -8157,7 +8159,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "munición de magnum, JHP" msgstr[1] "municiones de magnum, JHP" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -8201,7 +8203,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "munición de pistola pequeña, bola" msgstr[1] "municiones de pistola pequeña, bola" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8222,7 +8224,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "munición de pistola pequeña, JHP" msgstr[1] "municiones de pistola pequeña, JHP" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8266,7 +8268,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "munición de rifle, bola" msgstr[1] "municiones de rifle, bola" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8287,7 +8289,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "munición de rifle, AP" msgstr[1] "municiones de rifle, AP" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8332,7 +8334,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "munición de rifle extranjero, bola" msgstr[1] "municiones de rifle extranjero, bola" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -8346,7 +8348,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "munición de rifle de riel" msgstr[1] "municiones de rifle de riel" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -8361,7 +8363,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "munición de rifle grande, bola" msgstr[1] "municiones de rifle grande, bola" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8383,7 +8385,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "munición de rifle grande, AP" msgstr[1] "municiones de rifle grande, AP" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8415,7 +8417,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "misil, antipersonal" msgstr[1] "misiles, antipersonal" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -8430,7 +8432,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "misil, multipropósito" msgstr[1] "misiles, multipropósito" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -8447,7 +8449,7 @@ msgid_plural "rocket, smoke" msgstr[0] "misil, humo" msgstr[1] "misiles, humo" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -8476,7 +8478,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "cartucho, perdigones pequeños" msgstr[1] "cartuchos, perdigones pequeños" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -8491,7 +8493,7 @@ msgid_plural "shotshell, slug" msgstr[0] "cartucho, posta" msgstr[1] "cartuchos, posta" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -8509,7 +8511,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "cartucho, pirotecnia" msgstr[1] "cartuchos, pirotecnia" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -8562,7 +8564,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "cartucho, dardos perforantes (recargado)" msgstr[1] "cartuchos, dardos perforantes (recargados)" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -8617,7 +8619,7 @@ msgid_plural "alumentum" msgstr[0] "alumentum" msgstr[1] "alumentum" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -8681,7 +8683,7 @@ msgid_plural "dragon blood" msgstr[0] "sangre de dragón" msgstr[1] "sangre de dragón" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -8711,7 +8713,7 @@ msgid_plural "parabolan yarn" msgstr[0] "hilo de parabolan" msgstr[1] "hilo de parabolan" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -8724,7 +8726,7 @@ msgid_plural "crystallized mana" msgstr[0] "maná cristalizado" msgstr[1] "maná cristalizado" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -8768,7 +8770,7 @@ msgid_plural "liquid mercury" msgstr[0] "mercurio líquido" msgstr[1] "mercurio líquido" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -8789,7 +8791,7 @@ msgstr "" "Es un pedazo de mitril crudo. Necesita ser reformado en un lingote para " "poder utilizarse." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -9350,7 +9352,7 @@ msgstr[1] "bolsos de munición" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -9366,7 +9368,7 @@ msgstr "Guardás tu %s." #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -9406,7 +9408,7 @@ msgid_plural "chest rig" msgstr[0] "tirador utilitario" msgstr[1] "tirador utilitario" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -10425,41 +10427,19 @@ msgstr "" "varias bolsas y un gancho para poner una cachiporra." #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "cinturón de supervivencia" -msgstr[1] "cinturones de supervivencia" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "cinturón de herramientas" +msgstr[1] "cinturones de herramientas" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "Ponés tu %1$s en tu %2$s" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "Guardar objeto" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" -"Es un cinturón de cuero lleno de bolsillos, con una vaina para llevar una " -"cuchilla pequeña y una funda para una pistola. Resistente y diseñado para " -"ser cómodo. Hay que usarlo para enfundar y desenfundar el arma." - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "cinturón de herramientas" -msgstr[1] "cinturones de herramientas" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -10629,28 +10609,6 @@ msgstr "" "Son una cubierta de goma para los pies, con una protección de acero para los" " dedos, de acuerdo a las normas OSHA." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "par de botas ignífugas de supervivencia" -msgstr[1] "pares de botas ignífugas de supervivencia" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" -"Es un par de botas personalizadas de Nomex reforzadas con kevlar. Te van a " -"mantener a salvo incluso cuando estás enterrado hasta las rodillas entre las" -" llamas." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "par de botas ignífugas XL de supervivencia" -msgstr[1] "pares de botas ignífugas XL de supervivencia" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -10668,53 +10626,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "par de botas XL de piel" msgstr[1] "pares de botas XL de piel" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "par de botas de piel artificial de supervivencia de invierno" -msgstr[1] "pares de botas de piel artificial de supervivencia de invierno" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" -"Es un par de botas personalizadas reforzadas con kevlar. Son abrigadas " -"gracias a su interior de piel artificial, y te van a mantener a salvo " -"incluso cuando estás enterrado hasta las rodillas entre los muertos." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "par de botas XL de piel artificial de supervivencia de invierno" -msgstr[1] "pares de botas XL de piel artificial de supervivencia de invierno" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" -"Es un par de botas personalizadas reforzadas de gran tamaño con kevlar. Son " -"abrigadas gracias a su interior de piel artificial, y te van a mantener a " -"salvo incluso cuando estás enterrado hasta las rodillas entre los muertos." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "par de botas acuáticas de supervivencia" -msgstr[1] "pares de botas acuáticas de supervivencia" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" -"Es un par de botas personalizadas de neopreno reforzadas con kevlar. Te van " -"a mantener seco y a salvo, contra viento y marea." - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -10728,29 +10639,6 @@ msgstr "" "Aunque son unas botas de cuero livianas pero resistentes, están diseñadas " "para actividad al aire libre." -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "par de botas pesadas de supervivencia" -msgstr[1] "pares de botas pesadas de supervivencia" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" -"Es un par de botas personalizadas de kevlar, muy reforzadas con acero. " -"Favorecen la protección por encima de la comodidad pero te mantendrán con " -"vida, específicamente cuando estés hasta las rodillas entre muertos." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "par de botas pesadas XL de supervivencia" -msgstr[1] "pares de botas pesadas XL de supervivencia" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -10771,29 +10659,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "par de botas XL de cuero" msgstr[1] "pares de botas XL de cuero" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "par de botas ligeras de supervivencia" -msgstr[1] "pares de botas ligeras de supervivencia" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" -"Es un par de botas personalizadas de tela reforzadas con kevlar. Favorecen " -"la protección por encima de la comodidad pero estas botas te permiten " -"moverte y ser ágil, incluso cuando estés hasta las rodillas entre muertos." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "par de botas ligeras XL de supervivencia" -msgstr[1] "pares de botas ligeras XL de supervivencia" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -10870,23 +10735,6 @@ msgstr "" "Es un descendiente de la clásica bota con punta de acero, este moderno " "calzado se ha hecho popular entre los obreros en las últimas dos décadas." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "par de botas de supervivencia" -msgstr[1] "pares de botas de supervivencia" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" -"Es un par de botas personalizadas de cuero reforzadas con kevlar. Tienen " -"buen balance entre protección y comodidad, estas botas te mantendrán con " -"vida, incluso cuando estés hasta las rodillas entre muertos." - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -10921,45 +10769,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "par de botas XL de invierno" msgstr[1] "pares de botas XL de invierno" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "par de botas de supervivencia de invierno" -msgstr[1] "pares de botas de supervivencia de invierno" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" -"Es un par de botas personalizadas reforzadas con kevlar. Son abrigadas " -"gracias a su interior de piel natural, y te van a mantener a salvo incluso " -"cuando estás enterrado hasta las rodillas entre los muertos." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "par de botas XL de supervivencia de invierno" -msgstr[1] "pares de botas XL de supervivencia de invierno" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "par de botas de supervivencia XL" -msgstr[1] "pares de botas de supervivencia XL" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" -"Es un enorme par de botas personalizadas de cuero reforzadas con kevlar. " -"Tienen buen balance entre protección y comodidad, estas botas te mantendrán " -"con vida, incluso cuando estés hasta las rodillas entre muertos." - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -11940,27 +11749,6 @@ msgid_plural "XL leather dusters" msgstr[0] "gabardina XL de cuero" msgstr[1] "gabardinas XL de cuero" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "gabardina de supervivencia" -msgstr[1] "gabardinas de supervivencia" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" -"Es una gabardina larga personalizada con protección de kevlar. Tiene muchos " -"bolsillos. Cómoda, resistente y con muy buena capacidad de almacenamiento." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "gabardina XL de supervivencia" -msgstr[1] "gabardinas XL de supervivencia" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -12016,7 +11804,7 @@ msgid_plural "army jacket" msgstr[0] "campera militar" msgstr[1] "camperas militares" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -12212,7 +12000,7 @@ msgid_plural "kimono" msgstr[0] "kimono" msgstr[1] "kimonos" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -12397,22 +12185,6 @@ msgstr "" "Es una gabardina robusta y larga de cuero resistente, sin mangas por lo que " "deja tus brazos liberados. Mucha capacidad de almacenamiento." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "gabardina de supervivencia sin mangas" -msgstr[1] "gabardinas de supervivencia sin mangas" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" -"Es una gabardina personalizada sin mangas, con protección de kevlar. Tiene " -"muchos bolsillos. Cómodo, resistente y con muy buena capacidad de " -"almacenamiento." - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -12475,22 +12247,6 @@ msgstr "" "libres. Tiene mucha capacidad de almacenamiento debido a sus numerosos " "bolsillos." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "sobretodo de supervivencia sin mangas" -msgstr[1] "sobretodos de supervivencia sin mangas" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" -"Es un sobretodo personalizado sin mangas, con protección de kevlar. Tiene " -"muchos bolsillos. Cómodo, resistente y con muy buena capacidad de " -"almacenamiento." - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -12508,7 +12264,7 @@ msgid_plural "thawb" msgstr[0] "thawb" msgstr[1] "thawb" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -12571,21 +12327,6 @@ msgstr "" "Es un sobretodo grueso de cuero, con varios bolsillos. Tiene muy buena " "capacidad de almacenamiento." -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "sobretodo de supervivencia" -msgstr[1] "sobretodos de supervivencia" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" -"Es un sobretodo personalizado con protección de kevlar. Tiene muchos " -"bolsillos. Cómodo, resistente y con muy buena capacidad de almacenamiento." - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -12874,22 +12615,6 @@ msgstr "" "Es un par de anteojos de sol, que son útiles para protegernos de las luces " "fuertes y destellos." -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "anteojos de supervivencia" -msgstr[1] "pares de anteojos de supervivencia" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" -"Es un par de anteojos blindados con los lentes polarizados. Son cómodos y " -"resistentes, brindan una excelente protección contra los peligros " -"ambientales." - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -13324,27 +13049,6 @@ msgstr "" "Es un par de guantes de cuero sin dedos. Estos han sido reforzados con " "protecciones de acero en la parte posterior." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "par de guantes ignífugos de supervivencia" -msgstr[1] "pares de guantes ignífugos de supervivencia" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" -"Es un par de guantes de Nomex reforzados con kevlar. Estos son una versión " -"post-apocalíptica de lo que usaban los bomberos antes del Cataclismo." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "par de guantes ignífugos XL de supervivencia" -msgstr[1] "pares de guantes ignífugos XL de supervivencia" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -13362,57 +13066,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "par de guantes XL de piel" msgstr[1] "pares de guantes XL de piel" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "par de guantes de piel artificial de supervivencia de invierno" -msgstr[1] "pares de guantes de piel artificial de supervivencia de invierno" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" -"Es un par de guantes reforzados con kevlar. Estos tienen un interior de piel" -" artificial." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "par de guantes XL de piel artificial de supervivencia de invierno" -msgstr[1] "" -"pares de guantes XL de piel artificial de supervivencia de invierno" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" -"Es un par de guantes muy grandes y reforzados con kevlar. Estos tienen un " -"interior de piel artificial." - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "par de guantes pesados de supervivencia" -msgstr[1] "pares de guantes pesados de supervivencia" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" -"Es un par de guantes de kevlar con la parte posterior de acero. Estos fueron" -" diseñados con la protección como prioridad." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "par de guantes pesados XL de supervivencia" -msgstr[1] "pares de guantes pesados XL de supervivencia" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -13478,69 +13131,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "par de guantes internos XL" msgstr[1] "pares de guantes internos XL" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "par de guantes ligeros de supervivencia" -msgstr[1] "pares de guantes ligeros de supervivencia" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" -"Es un par de guantes de tela reforzados con kevlar. Estos fueron diseñados " -"con la comodidad como prioridad." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "par de guantes ligeros XL de supervivencia" -msgstr[1] "pares de guantes ligeros XL de supervivencia" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "par de guantes ligeros de supervivencia sin dedos" -msgstr[1] "pares de guantes ligeros de supervivencia sin dedos" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" -"Es un par de guantes de tela reforzados con kevlar sin dedos. Estos fueron " -"diseñados con la comodidad como prioridad." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "par de guantes XL ligeros de supervivencia sin dedos" -msgstr[1] "pares de guantes XL ligeros de supervivencia sin dedos" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "par de guantes de supervivencia sin dedos" -msgstr[1] "pares de guantes de supervivencia sin dedos" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" -"Es un par de guantes de cuero reforzados con kevlar sin dedos. Estos logran " -"el balance entre comodidad y protección." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "par de guantes XL de supervivencia sin dedos" -msgstr[1] "pares de guantes XL de supervivencia sin dedos" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -13584,21 +13174,6 @@ msgstr "" "Es un par de guantes de goma, utilizados generalmente para limpiar con " "materiales cáusticos." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "par de guantes de supervivencia" -msgstr[1] "pares de guantes de supervivencia" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" -"Es un par de guantes de cuero reforzados con kevlar. Estos logran el balance" -" entre comodidad y protección." - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -13732,41 +13307,6 @@ msgstr "" "Son grandes pedazos de lana que se envuelven en las manos para brindar un " "poco de protección cuando pegás una piña o hacés alguna otra travesura." -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "par de guantes de supervivencia de invierno" -msgstr[1] "pares de guantes de supervivencia de invierno" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" -"Es un par de guantes reforzados con kevlar. Estos tienen un interior de piel" -" natural." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "par de guantes XL de supervivencia de invierno" -msgstr[1] "pares de guantes XL de supervivencia de invierno" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "par de guantes de supervivencia XL" -msgstr[1] "pares de guantes de supervivencia XL" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" -"Es un par de guantes enormes de cuero reforzados con kevlar. Estos logran el" -" balance entre protección y comodidad." - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -14605,7 +14145,7 @@ msgid_plural "kabuto" msgstr[0] "kabuto" msgstr[1] "kabutos" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -14736,36 +14276,6 @@ msgstr "" "para proteger la cara sin obstruir la vista. Es un casco propio del Jotunn, " "a diferencia del estereotípico yelmo con cuernos." -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "cuello de nómada" -msgstr[1] "cuellos de nómada" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" -"Es un cuello improvisado que protege los ojos de la lluvia y del sol, " -"diseñado para viajes largos." - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "cuello XL de nómada" -msgstr[1] "cuellos XL de nómada" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" -"Es un cuello improvisado que protege los ojos de la lluvia y del sol, " -"diseñado para viajes largos. Diseñado para el viajero gigante." - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -14828,38 +14338,6 @@ msgstr "" "de metal. Lamentablemente, no llega a protegerte los ojos del sol. Este es " "un poco más grande de lo normal." -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "capucha de cartonero" -msgstr[1] "capuchas de cartonero" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" -"Es una resistente capucha protectora que se extiende hasta el cuello, " -"equipada con un respirador y protección para los ojos. Para los cartoneos " -"peligrosos." - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "capucha XL de cartonero" -msgstr[1] "capuchas XL de cartonero" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" -"Es una resistente capucha protectora que se extiende hasta el cuello, " -"equipada con un respirador y protección para los ojos. Para los cartoneros " -"grandotes y venturosos." - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -15097,43 +14575,6 @@ msgstr "" "cerca del cuerpo. Es un poco incómoda de usar si no tenés práctica. Hay que " "activarla para enfundar o desenfundar el arma." -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "arnés de supervivencia" -msgstr[1] "arneses de supervivencia" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" -"Es un arnés ligero con varias ranuras y una eslinga táctica integrada para " -"colgar un pequeño rifle o un arma similar. Resistente y diseñado para ser " -"cómodo de usar. Hay que usarlo para desenfundar y enfundar el arma." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "arnés XL de supervivencia" -msgstr[1] "arneses XL de supervivencia" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" -"Es un arnés ligero con varias ranuras y una eslinga táctica integrada para " -"colgar un pequeño rifle o un arma similar. Resistente y diseñado para ser " -"cómodo de usar y adecuado para los cuerpos grandes. Hay que usarlo para " -"desenfundar y enfundar el arma." - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -15193,88 +14634,6 @@ msgstr "" "Es una capucha de cota de malla. Puede ser usada cómodamente debajo de un " "casco. De tamaño XL." -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "capucha ignífuga de supervivencia" -msgstr[1] "capuchas ignífugas de supervivencia" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" -"Es una capucha personalizada de Nomex reforzada con kevlar, resistente y " -"duradera." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "capucha ignífuga XL de supervivencia" -msgstr[1] "capuchas ignífugas XL de supervivencia" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" -"Es una capucha personalizada de Nomex reforzada con kevlar, muy resistente y" -" duradera. Hecha en Muspelheim." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "capucha ligera de supervivencia" -msgstr[1] "capuchas ligeras de supervivencia" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" -"Es una capucha personalizada de tela y kevlar, liviana pero resistente." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "capucha ligera XL de supervivencia" -msgstr[1] "capuchas ligeras XL de supervivencia" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" -"Es una capucha personalizada y grande de tela y kevlar, ligera pero " -"resistente." - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "capucha de piel artificial de supervivencia de invierno" -msgstr[1] "capuchas de piel artificial de supervivencia de invierno" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" -"Es una capucha personalizada blindada de kevlar. Es abrigada debido a su " -"interior de piel artificial." - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "capucha XL de piel artificial de supervivencia de invierno" -msgstr[1] "capuchas XL de piel artificial de supervivencia de invierno" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" -"Es una capucha personalizada blindada y muy grande de kevlar. Es abrigada " -"debido a su interior de piel artificial." - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -15288,64 +14647,6 @@ msgstr "" "Es una capucha impermeable que puede usarse en esos horribles días " "lluviosos." -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "capucha de supervivencia" -msgstr[1] "capuchas de supervivencia" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" -"Es una capucha personalizada reforzada de cuero y kevlar, diseñada para " -"equilibrar la comodidad y la protección que brinda." - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "capucha de supervivencia de invierno" -msgstr[1] "capuchas de supervivencia de invierno" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" -"Es una capucha personalizada blindada de kevlar. Es abrigada debido a su " -"interior de piel natural." - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "capucha XL de supervivencia de invierno" -msgstr[1] "capuchas XL de supervivencia de invierno" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" -"Es una capucha personalizada blindada y muy grande de kevlar. Es abrigada " -"debido a su interior de piel natural." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "capucha de supervivencia XL" -msgstr[1] "capuchas de supervivencia XL" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" -"Es una enorme capucha personalizada reforzada de cuero y kevlar, diseñada " -"para equilibrar la comodidad y la protección que brinda." - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -15824,9 +15125,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "pares de gemelos de granate y oro" msgstr[1] "pares de gemelos de granate y oro" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "Es un par de gemelos con granates incrustados." @@ -15837,9 +15138,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "pares de gemelos de diamante y oro" msgstr[1] "pares de gemelos de diamante y oro" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "Es un par de gemelos con diamantes incrustados." @@ -15850,9 +15151,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "pares de gemelos de amatista y oro" msgstr[1] "pares de gemelos de amatista y oro" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "Es un par de gemelos con amatistas incrustadas." @@ -15863,9 +15164,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "pares de gemelos de aguamarina y oro" msgstr[1] "pares de gemelos de aguamarina y oro" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "Es un par de gemelos con aguamarinas incrustadas." @@ -15876,9 +15177,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "pares de gemelos de esmeralda y oro" msgstr[1] "pares de gemelos de esmeralda y oro" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "Es un par de gemelos con esmeraldas incrustadas." @@ -15889,9 +15190,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "pares de gemelos de alejandrita y oro" msgstr[1] "pares de gemelos de alejandrita y oro" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "Es un par de gemelos con alejandritas incrustadas." @@ -15902,9 +15203,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "pares de gemelos de rubí y oro" msgstr[1] "pares de gemelos de rubí y oro" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "Es un par de gemelos con rubíes incrustados." @@ -15915,9 +15216,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "pares de gemelos de peridoto y oro" msgstr[1] "pares de gemelos de peridoto y oro" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "Es un par de gemelos con peridotos incrustados." @@ -15928,9 +15229,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "pares de gemelos de zafiro y oro" msgstr[1] "pares de gemelos de zafiro y oro" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "Es un par de gemelos con zafiros incrustados." @@ -15941,9 +15242,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "pares de gemelos de turmalina y oro" msgstr[1] "pares de gemelos de turmalina y oro" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "Es un par de gemelos con turmalinas incrustadas." @@ -15954,9 +15255,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "pares de gemelos de citrino y oro" msgstr[1] "pares de gemelos de citrino y oro" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "Es un par de gemelos con citrinos incrustados." @@ -15967,9 +15268,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "pares de gemelos de topacio azul y oro" msgstr[1] "pares de gemelos de topacio azul y oro" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "Es un par de gemelos con topacios azules incrustados." @@ -15980,9 +15281,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "pares de gemelos de ópalo y oro" msgstr[1] "pares de gemelos de ópalo y oro" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "Es un par de gemelos con ópalos incrustados." @@ -15993,9 +15294,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "pares de gemelos de perla y oro" msgstr[1] "pares de gemelos de perla y oro" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "Es un par de gemelos con perlas incrustadas." @@ -20035,7 +19336,7 @@ msgid_plural "turnout trousers" msgstr[0] "pantalón de bombero" msgstr[1] "pantalones de bombero" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -20082,7 +19383,7 @@ msgid_plural "leather chaps" msgstr[0] "chaparrera de cuero" msgstr[1] "chaparreras de cuero" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -20097,7 +19398,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "par de perneras anticorte" msgstr[1] "pares de perneras anticorte" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -20117,7 +19418,7 @@ msgid_plural "fencing pants" msgstr[0] "pantalón de esgrima" msgstr[1] "pantalones de esgrima" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -20320,37 +19621,6 @@ msgstr "" "cuerdas. Esa sujeción suelta de las placas brinda una protección decente " "pero no la más conveniente. Parecés un gigante de basura." -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "pantalón cargo ligero de supervivencia" -msgstr[1] "pantalones cargo ligeros de supervivencia" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" -"Es un pantalón cargo liviano reforzado con kevlar, diseñado para almacenar " -"tanto como sea posible. Es resistente y prácticamente impermeable." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "pantalón cargo ligero XL de supervivencia" -msgstr[1] "pantalones cargo ligeros XL de supervivencia" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" -"Es un pantalón cargo liviano reforzado con kevlar, diseñado para almacenar " -"tanto como sea posible. Es resistente y prácticamente impermeable y de un " -"tamaño mayor que el normal." - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -20363,43 +19633,13 @@ msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" "Es un par de pantalones diseñado para los motoqueros y los motocrossistas." -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "pantalón cargo de supervivencia" -msgstr[1] "pantalones cargo de supervivencia" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" -"Es un pantalón con protección de kevlar y muchos bolsillos. Hecho para ser " -"resistente, cómodo y fácil de vestir." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "pantalón cargo XL de supervivencia" -msgstr[1] "pantalones cargo XL de supervivencia" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" -"Es un pantalón grande con protección de kevlar y muchos bolsillos. Hecho " -"para ser resistente, cómodo y fácil de vestir." - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "pantalones EOD" msgstr[1] "pantalones EOD" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -20414,7 +19654,7 @@ msgid_plural "light EOD trousers" msgstr[0] "pantalones EOD livianos" msgstr[1] "pantalones EOD livianos" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -20447,7 +19687,7 @@ msgid_plural "basketball shorts" msgstr[0] "pantalón corto de básquet" msgstr[1] "pantalones cortos de básquet" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "Es un par de pantalones cortos de básquet. Cómodos y livianos." @@ -20458,7 +19698,7 @@ msgid_plural "breeches" msgstr[0] "calzones" msgstr[1] "calzones" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -20486,7 +19726,7 @@ msgid_plural "hot pants" msgstr[0] "minipantalón" msgstr[1] "minipantalones" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "Es un simple pantalón muy, muy corto." @@ -20497,7 +19737,7 @@ msgid_plural "fur hot pants" msgstr[0] "minipantalón de piel" msgstr[1] "minipantalones de piel" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "Es un simple pantalón muy, muy corto de piel." @@ -20508,7 +19748,7 @@ msgid_plural "leather hot pants" msgstr[0] "minipantalón de cuero" msgstr[1] "minipantalones de cuero" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "Es un simple pantalón muy, muy corto de cuero." @@ -20519,7 +19759,7 @@ msgid_plural "jeans" msgstr[0] "jean" msgstr[1] "jeans" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "Es un jean azul con dos bolsillos grandes." @@ -20554,7 +19794,7 @@ msgid_plural "red jeans" msgstr[0] "jean rojo" msgstr[1] "jeans rojos" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "Es un jean rojo manzana ajustado con dos bolsillos grandes." @@ -20583,7 +19823,7 @@ msgid_plural "leggings" msgstr[0] "calza larga" msgstr[1] "calzas largas" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -20669,7 +19909,7 @@ msgid_plural "pants" msgstr[0] "pantalón" msgstr[1] "pantalones" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "" @@ -20682,7 +19922,7 @@ msgid_plural "army pants" msgstr[0] "pantalón militar" msgstr[1] "pantalones militares" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" @@ -20691,10 +19931,10 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" -"Es un pantalón resistente, preferido por los soldados. Este par tiene un " +"Es un pantalón resistente, el favorito de los soldados. Este par tiene un " "camuflaje gris, verde y marrón claro. Es notable la ausencia de negro en su " "estampado." @@ -20736,7 +19976,7 @@ msgid_plural "cargo pants" msgstr[0] "pantalón cargo" msgstr[1] "pantalones cargo" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "Es un pantalón con muchos bolsillos." @@ -20747,7 +19987,7 @@ msgid_plural "checkered pants" msgstr[0] "pantalón cuadrillé" msgstr[1] "pantalones cuadrillé" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -20760,7 +20000,7 @@ msgid_plural "fur pants" msgstr[0] "pantalón de piel" msgstr[1] "pantalones de piel" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "Son unos pantalones pesados, recubiertos de piel." @@ -20771,7 +20011,7 @@ msgid_plural "faux fur pants" msgstr[0] "pantalones de piel artificial" msgstr[1] "pantalones de piel artificial" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -20784,7 +20024,7 @@ msgid_plural "leather pants" msgstr[0] "pantalón de cuero" msgstr[1] "pantalones de cuero" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -20799,7 +20039,7 @@ msgid_plural "ski pants" msgstr[0] "pantalón de ski" msgstr[1] "pantalones de ski" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "Unos pantalones hechos para esquiar." @@ -20810,7 +20050,7 @@ msgid_plural "police breeches" msgstr[0] "calzón de policía" msgstr[1] "calzones de policía" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -20825,7 +20065,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "pantalón corto de cartero" msgstr[1] "pantalones cortos de cartero" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "Es un pantalón corto azul oscuro, de los que usan los carteros." @@ -20836,7 +20076,7 @@ msgid_plural "shorts" msgstr[0] "pantalón corto" msgstr[1] "pantalones cortos" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "Es un pantalón corto color caqui (marroncito)." @@ -20847,7 +20087,7 @@ msgid_plural "cargo shorts" msgstr[0] "bermuda cargo" msgstr[1] "bermudas cargo" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -20860,7 +20100,7 @@ msgid_plural "denim shorts" msgstr[0] "pantalón corto de jean" msgstr[1] "pantalones cortos de jean" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "Es un par de pantalones cortos de jean." @@ -20927,7 +20167,7 @@ msgid_plural "striped pants" msgstr[0] "pantalón a rayas" msgstr[1] "pantalones a rayas" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "Es un par de pantalones con rayas horizontales blancas y negras." @@ -20958,7 +20198,7 @@ msgid_plural "army winter pants" msgstr[0] "pantalón militar de invierno" msgstr[1] "pantalones militares de invierno" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -22265,65 +21505,6 @@ msgstr "" "otras posesiones durante los viajes. Tiene buena capacidad de almacenamiento" " pero ir arrastrándola por ahí no es ni rápido ni cómodo." -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "bolso de viaje de supervivencia" -msgstr[1] "bolsos de viaje de supervivencia" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Es un bolso de viaje pesado. Resistente y diseñado cuidadosamente para tener" -" la mayor capacidad posible." - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "mochila de supervivencia" -msgstr[1] "mochilas de supervivencia" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" -"Es una mochila. Resistente y diseñada para tener la mayor capacidad posible." - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "mochilón de supervivencia" -msgstr[1] "mochilones de supervivencia" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Es una mochila pesada de supervivencia. Resistente y diseñada para tener la " -"mayor capacidad posible." - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "riñonera de supervivencia de corredor" -msgstr[1] "riñoneras de supervivencia de corredor" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" -"Es una riñonera ligera que se utiliza para llevar cosas mientras corrés. Es " -"resistente y está diseñada para tener la mayor capacidad posible." - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -22822,38 +22003,6 @@ msgid_plural "XL plate armors" msgstr[0] "armadura XL de placas" msgstr[1] "armaduras XL de placas" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "equipo de nómada" -msgstr[1] "equipos de nómada" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" -"Es un traje improvisado hecho con ropa pre-Cataclismo, diseñado para viajes " -"largos. Tiene mucha capacidad de almacenamiento." - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "equipo ligero de nómada" -msgstr[1] "equipos ligeros de nómada" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" -"Es un traje improvisado ligero hecho con ropa pre-Cataclismo, diseñado para " -"viajes largos de verano. Tiene menos capacidad de almacenamiento y " -"protección que el equipo normal de nómada." - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -22901,12 +22050,12 @@ msgstr[1] "armaduras antitumulto" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" -"Es armadura negra para el cuerpo que usan los oficiales de policía " -"antitumultos, cuando eran solamente tumultos los que había. La palabra " -"POLICÍA está escrita en el frente." +"Es una armadura de placas plásticas negras para el cuerpo que usan los " +"oficiales de policía antitumultos, cuando eran solamente tumultos los que " +"había. Tiene la palabra POLICÍA escrita en el frente." #: lang/json/ARMOR_from_json.py msgid "O-yoroi" @@ -22919,22 +22068,6 @@ msgstr[1] "O-yoroi" msgid "An ornamental suit of Japanese samurai armor." msgstr "Una armadura samurai japonesa." -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "equipo de cartonero" -msgstr[1] "equipos de cartonero" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" -"Es un resistente traje de cartonero, hecho con un equipo de protección de " -"antes del Cataclismo reacondicionado. Tiene mucha capacidad de " -"almacenamiento." - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -23094,63 +22227,6 @@ msgid_plural "XL entry suits" msgstr[0] "traje XL de aproximación al fuego" msgstr[1] "trajes XL de aproximación al fuego" -#: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "traje ignífugo de supervivencia" -msgstr[1] "trajes ignífugos de supervivencia" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" -"Es un traje pesado casero, hecho con una combinación entre un chaleco " -"antibalas cortado y un mameluco reforzado ignífugo de nomex. Protege del " -"fuego y del ambiente." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "traje ignífugo XL de supervivencia" -msgstr[1] "trajes ignífugos XL de supervivencia" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "traje de supervivencia de invierno" -msgstr[1] "trajes de supervivencia de invierno" - -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" -"Es un traje pesado y abrigado hecho a mano, una combinación entre un chaleco" -" antibalas reforzado y un mameluco de cuero. Protege tanto del ambiente como" -" del daño." - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "traje XL de supervivencia de invierno" -msgstr[1] "trajes XL de supervivencia de invierno" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." -msgstr "" -"Es un traje pesado, grande y abrigado hecho a mano, una combinación entre un" -" chaleco antibalas reforzado y un mameluco de cuero y piel artificial. " -"Protege tanto del ambiente como del daño." - #: lang/json/ARMOR_from_json.py msgid "gambeson" msgid_plural "gambesons" @@ -23167,12 +22243,35 @@ msgstr "" "de la cota de malla y otra armadura. O para ser usada sola, si no te podés " "pagar una armadura apropiada." +#: lang/json/ARMOR_from_json.py +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" +msgstr[0] "gambesón de kevlar" +msgstr[1] "gambesones de kevlar" + +#. ~ Description for kevlar gambeson +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." +msgstr "" +"Es una campera gruesa de tela acolchada, diseñada para ser utilizada debajo " +"de la cota de malla y otra armadura. Esta incorpora capas de kevlar para " +"mejorar la protección." + #: lang/json/ARMOR_from_json.py msgid "XL gambeson" msgid_plural "XL gambesons" msgstr[0] "gambesón XL" msgstr[1] "gambesones XL" +#: lang/json/ARMOR_from_json.py +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" +msgstr[0] "gambesón XL de kevlar" +msgstr[1] "gambesones XL de kevlar" + #: lang/json/ARMOR_from_json.py msgid "hazmat suit" msgid_plural "hazmat suits" @@ -23192,46 +22291,6 @@ msgstr "" "contra la radiación del ambiente. Necesita una máscara de gas para brindar " "una protección completa." -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "traje pesado de supervivencia" -msgstr[1] "trajes pesados de supervivencia" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" -"Es un traje pesado hecho a mano, es una combinación entre un chaleco " -"antibalas reforzado y un mameluco de cuero reforzado con placas de metal. " -"Protege tanto del ambiente como del daño." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "traje ligero de supervivencia" -msgstr[1] "trajes ligeros de supervivencia" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" -"Es un traje ligero hecho a mano, es una combinación entre un chaleco " -"antibalas cortado y un mameluco de tela reforzado. Protege tanto del " -"ambiente como del daño." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "traje ligero XL de supervivencia" -msgstr[1] "trajes ligeros XL de supervivencia" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -23309,21 +22368,6 @@ msgstr "" "Es un traje de algodón de cuerpo entero. Hace que el apocalipsis también sea" " una experiencia elegante." -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "traje de supervivencia" -msgstr[1] "trajes de supervivencia" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" -"Es un traje hecho a mano, una combinación entre un chaleco antibalas y un " -"mameluco de cuero reforzado. Protege tanto del ambiente como del daño." - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -23333,11 +22377,11 @@ msgstr[1] "armaduras SWAT" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" -"Es un traje antibalas negro con muchos bolsillos. La palabra SWAT resalta en" -" la espalda." +"Es una armadura de placas negras que cubren las partes vitales del torso, " +"brazos y piernas. Tiene la palabra SWAT en la espalda." #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -23354,50 +22398,6 @@ msgstr "" "Es un traje de cuerpo entero de cuero resistente, que funciona como " "protección al andar en moto. Liviano y muy cómodo." -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"Es un traje pesado y abrigado hecho a mano, una combinación entre un chaleco" -" antibalas reforzado y un mameluco de cuero. Protege tanto del ambiente como" -" del daño." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "traje XL de supervivencia" -msgstr[1] "trajes XL de supervivencia" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" -"Es un enorme traje hecho a mano, una combinación entre un chaleco antibalas " -"y un mameluco de cuero reforzado. Protege tanto del ambiente como del daño." - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "traje XL pesado de supervivencia" -msgstr[1] "trajes XL pesados de supervivencia" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"Es un traje enorme y pesado hecho a mano, una combinación entre un chaleco " -"antibalas reforzado y un mameluco de cuero reforzado con placas de metal. " -"Protege tanto del ambiente como del daño." - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -23474,53 +22474,6 @@ msgstr[1] "capuchas acuáticas" msgid "A neoprene hood, commonly worn by divers." msgstr "Es una capucha de neopreno, generalmente utilizada por buzos." -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "capucha acuática de supervivencia" -msgstr[1] "capuchas acuáticas de supervivencia" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" -"Es una capucha personalizada de neopreno reforzada con kevlar, muy " -"resistente y duradera." - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "traje acuático de supervivencia" -msgstr[1] "trajes acuáticos de supervivencia" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" -"Es un traje ligero hecho a mano, es una combinación entre un chaleco " -"antibalas cortado y un traje acuático de neopreno reforzado. Protege tanto " -"del ambiente como del daño." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "par de guantes acuáticos de supervivencia" -msgstr[1] "pares de guantes acuáticos de supervivencia" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" -"Es un par de guantes personalizados de neopreno reforzados con kevlar. Están" -" modificados para ser cómodos y brindar la máxima protección en condiciones " -"extremas." - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -23640,7 +22593,7 @@ msgid_plural "lorica segmentata" msgstr[0] "lorica segmentata" msgstr[1] "lorica segmentata" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -23830,7 +22783,7 @@ msgid_plural "tire leather armor" msgstr[0] "armadura de cuero de cubierta" msgstr[1] "armaduras de cuero de cubierta" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -23902,27 +22855,6 @@ msgid "" msgstr "" "Es un chaleco ligero y anti-balas. Perfecto para utilizar debajo de la ropa." -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "armadura ligera de supervivencia" -msgstr[1] "armaduras ligeras de supervivencia" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" -"Es una armadura liviana para el torso, hecha de kevlar y tela resistente. Es" -" prácticamente impermeable." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "armadura ligera XL de supervivencia" -msgstr[1] "armaduras ligeras XL de supervivencia" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -24223,7 +23155,7 @@ msgid_plural "leotard" msgstr[0] "leotardo" msgstr[1] "leotardo" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -24330,7 +23262,7 @@ msgid_plural "French maid clothes" msgstr[0] "ropa de sirvienta francesa" msgstr[1] "ropas de sirvienta francesa" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -24670,7 +23602,7 @@ msgid_plural "boxer briefs" msgstr[0] "slip bóxer" msgstr[1] "slips bóxer" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "A la clásica pregunta: ¿bóxer o slip? ¿Tu respuesta? Sí." @@ -24681,7 +23613,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "slip bóxer XL" msgstr[1] "slips bóxer XL" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "A la clásica pregunta: ¿bóxer o slip? ¿Tu respuesta? ¡Gordito!" @@ -24692,7 +23624,7 @@ msgid_plural "boxer shorts" msgstr[0] "bóxer" msgstr[1] "bóxers" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -24705,7 +23637,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "bóxer XL" msgstr[1] "bóxers XL" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -24720,7 +23652,7 @@ msgid_plural "boy shorts" msgstr[0] "culotte" msgstr[1] "culottes" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -24734,7 +23666,7 @@ msgid_plural "XL boy shorts" msgstr[0] "culotte XL" msgstr[1] "culottes XL" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -24763,7 +23695,7 @@ msgid_plural "briefs" msgstr[0] "slip" msgstr[1] "slips" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "Es un slip. Ropa interior cómoda para hombre." @@ -24943,7 +23875,7 @@ msgid_plural "panties" msgstr[0] "bombacha" msgstr[1] "bombachas" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -25018,7 +23950,7 @@ msgid_plural "tights" msgstr[0] "calza fina" msgstr[1] "calzas finas" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -25047,7 +23979,7 @@ msgid_plural "compression shorts" msgstr[0] "calza corta" msgstr[1] "calzas cortas" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -25088,6 +24020,1101 @@ msgstr "" "con un leotardo. Es comúnmente utilizado por gimnastas, bailarines y " "jinetes. El unitardo brinda una cobertura total y mucha flexibilidad." +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "equipo de nómada" +msgstr[1] "equipos de nómada" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "" +"Es un traje improvisado hecho con ropa pre-Cataclismo, diseñado para viajes " +"largos. Tiene mucha capacidad de almacenamiento." + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "equipo ligero de nómada" +msgstr[1] "equipos ligeros de nómada" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" +"Es un traje improvisado ligero hecho con ropa pre-Cataclismo, diseñado para " +"viajes largos de verano. Tiene menos capacidad de almacenamiento y " +"protección que el equipo normal de nómada." + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "equipo de cartonero" +msgstr[1] "equipos de cartonero" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" +"Es un resistente traje de cartonero, hecho con un equipo de protección de " +"antes del Cataclismo reacondicionado. Tiene mucha capacidad de " +"almacenamiento." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "traje ligero de supervivencia" +msgstr[1] "trajes ligeros de supervivencia" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "" +"Es un traje ligero hecho a mano, es una combinación entre un chaleco " +"antibalas cortado y un mameluco de tela reforzado. Protege tanto del " +"ambiente como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "traje ligero XL de supervivencia" +msgstr[1] "trajes ligeros XL de supervivencia" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "traje de supervivencia" +msgstr[1] "trajes de supervivencia" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" +"Es un traje hecho a mano, una combinación entre un chaleco antibalas y un " +"mameluco de cuero reforzado. Protege tanto del ambiente como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "traje XL de supervivencia" +msgstr[1] "trajes XL de supervivencia" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" +"Es un enorme traje hecho a mano, una combinación entre un chaleco antibalas " +"y un mameluco de cuero reforzado. Protege tanto del ambiente como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "traje de supervivencia de invierno" +msgstr[1] "trajes de supervivencia de invierno" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" +"Es un traje pesado y abrigado hecho a mano, una combinación entre un chaleco" +" antibalas reforzado y un mameluco de cuero. Protege tanto del ambiente como" +" del daño." + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "traje XL de supervivencia de invierno" +msgstr[1] "trajes XL de supervivencia de invierno" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" +"Es un traje pesado y abrigado hecho a mano, una combinación entre un chaleco" +" antibalas reforzado y un mameluco de cuero. Protege tanto del ambiente como" +" del daño." + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" +"Es un traje pesado, grande y abrigado hecho a mano, una combinación entre un" +" chaleco antibalas reforzado y un mameluco de cuero y piel artificial. " +"Protege tanto del ambiente como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "traje acuático de supervivencia" +msgstr[1] "trajes acuáticos de supervivencia" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "" +"Es un traje ligero hecho a mano, es una combinación entre un chaleco " +"antibalas cortado y un traje acuático de neopreno reforzado. Protege tanto " +"del ambiente como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "par de botas ligeras de supervivencia" +msgstr[1] "pares de botas ligeras de supervivencia" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" +"Es un par de botas personalizadas de tela reforzadas con kevlar. Favorecen " +"la protección por encima de la comodidad pero estas botas te permiten " +"moverte y ser ágil, incluso cuando estés hasta las rodillas entre muertos." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "par de botas ligeras XL de supervivencia" +msgstr[1] "pares de botas ligeras XL de supervivencia" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "par de botas de supervivencia" +msgstr[1] "pares de botas de supervivencia" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" +"Es un par de botas personalizadas de cuero reforzadas con kevlar. Tienen " +"buen balance entre protección y comodidad, estas botas te mantendrán con " +"vida, incluso cuando estés hasta las rodillas entre muertos." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "par de botas de supervivencia XL" +msgstr[1] "pares de botas de supervivencia XL" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" +"Es un enorme par de botas personalizadas de cuero reforzadas con kevlar. " +"Tienen buen balance entre protección y comodidad, estas botas te mantendrán " +"con vida, incluso cuando estés hasta las rodillas entre muertos." + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "par de botas de piel artificial de supervivencia de invierno" +msgstr[1] "pares de botas de piel artificial de supervivencia de invierno" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" +"Es un par de botas personalizadas reforzadas con kevlar. Son abrigadas " +"gracias a su interior de piel artificial, y te van a mantener a salvo " +"incluso cuando estás enterrado hasta las rodillas entre los muertos." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "par de botas XL de piel artificial de supervivencia de invierno" +msgstr[1] "pares de botas XL de piel artificial de supervivencia de invierno" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" +"Es un par de botas personalizadas reforzadas de gran tamaño con kevlar. Son " +"abrigadas gracias a su interior de piel artificial, y te van a mantener a " +"salvo incluso cuando estás enterrado hasta las rodillas entre los muertos." + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "par de botas de supervivencia de invierno" +msgstr[1] "pares de botas de supervivencia de invierno" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" +"Es un par de botas personalizadas reforzadas con kevlar. Son abrigadas " +"gracias a su interior de piel natural, y te van a mantener a salvo incluso " +"cuando estás enterrado hasta las rodillas entre los muertos." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "par de botas XL de supervivencia de invierno" +msgstr[1] "pares de botas XL de supervivencia de invierno" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "par de botas acuáticas de supervivencia" +msgstr[1] "pares de botas acuáticas de supervivencia" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" +"Es un par de botas personalizadas de neopreno reforzadas con kevlar. Te van " +"a mantener seco y a salvo, contra viento y marea." + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "par de guantes ligeros de supervivencia" +msgstr[1] "pares de guantes ligeros de supervivencia" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" +"Es un par de guantes de tela reforzados con kevlar. Estos fueron diseñados " +"con la comodidad como prioridad." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "par de guantes ligeros XL de supervivencia" +msgstr[1] "pares de guantes ligeros XL de supervivencia" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "par de guantes ligeros de supervivencia sin dedos" +msgstr[1] "pares de guantes ligeros de supervivencia sin dedos" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" +"Es un par de guantes de tela reforzados con kevlar sin dedos. Estos fueron " +"diseñados con la comodidad como prioridad." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "par de guantes XL ligeros de supervivencia sin dedos" +msgstr[1] "pares de guantes XL ligeros de supervivencia sin dedos" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "par de guantes de supervivencia sin dedos" +msgstr[1] "pares de guantes de supervivencia sin dedos" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" +"Es un par de guantes de cuero reforzados con kevlar sin dedos. Estos logran " +"el balance entre comodidad y protección." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "par de guantes XL de supervivencia sin dedos" +msgstr[1] "pares de guantes XL de supervivencia sin dedos" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "par de guantes de supervivencia" +msgstr[1] "pares de guantes de supervivencia" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" +"Es un par de guantes de cuero reforzados con kevlar. Estos logran el balance" +" entre comodidad y protección." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "par de guantes de supervivencia XL" +msgstr[1] "pares de guantes de supervivencia XL" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" +"Es un par de guantes enormes de cuero reforzados con kevlar. Estos logran el" +" balance entre protección y comodidad." + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "par de guantes de supervivencia de invierno" +msgstr[1] "pares de guantes de supervivencia de invierno" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" +"Es un par de guantes reforzados con kevlar. Estos tienen un interior de piel" +" natural." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "par de guantes XL de supervivencia de invierno" +msgstr[1] "pares de guantes XL de supervivencia de invierno" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "par de guantes de piel artificial de supervivencia de invierno" +msgstr[1] "pares de guantes de piel artificial de supervivencia de invierno" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" +"Es un par de guantes reforzados con kevlar. Estos tienen un interior de piel" +" artificial." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "par de guantes XL de piel artificial de supervivencia de invierno" +msgstr[1] "" +"pares de guantes XL de piel artificial de supervivencia de invierno" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" +"Es un par de guantes muy grandes y reforzados con kevlar. Estos tienen un " +"interior de piel artificial." + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "par de guantes acuáticos de supervivencia" +msgstr[1] "pares de guantes acuáticos de supervivencia" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "" +"Es un par de guantes personalizados de neopreno reforzados con kevlar. Están" +" modificados para ser cómodos y brindar la máxima protección en condiciones " +"extremas." + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "cuello de nómada" +msgstr[1] "cuellos de nómada" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "" +"Es un cuello improvisado que protege los ojos de la lluvia y del sol, " +"diseñado para viajes largos." + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "cuello XL de nómada" +msgstr[1] "cuellos XL de nómada" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" +"Es un cuello improvisado que protege los ojos de la lluvia y del sol, " +"diseñado para viajes largos. Diseñado para el viajero gigante." + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "capucha de supervivencia" +msgstr[1] "capuchas de supervivencia" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" +"Es una capucha personalizada reforzada de cuero y kevlar, diseñada para " +"equilibrar la comodidad y la protección que brinda." + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "capucha de supervivencia de invierno" +msgstr[1] "capuchas de supervivencia de invierno" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" +"Es una capucha personalizada blindada de kevlar. Es abrigada debido a su " +"interior de piel natural." + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "capucha XL de supervivencia de invierno" +msgstr[1] "capuchas XL de supervivencia de invierno" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" +"Es una capucha personalizada blindada y muy grande de kevlar. Es abrigada " +"debido a su interior de piel natural." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "capucha de supervivencia XL" +msgstr[1] "capuchas de supervivencia XL" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" +"Es una enorme capucha personalizada reforzada de cuero y kevlar, diseñada " +"para equilibrar la comodidad y la protección que brinda." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "capucha ligera de supervivencia" +msgstr[1] "capuchas ligeras de supervivencia" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" +"Es una capucha personalizada de tela y kevlar, liviana pero resistente." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "capucha ligera XL de supervivencia" +msgstr[1] "capuchas ligeras XL de supervivencia" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" +"Es una capucha personalizada y grande de tela y kevlar, ligera pero " +"resistente." + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "capucha de piel artificial de supervivencia de invierno" +msgstr[1] "capuchas de piel artificial de supervivencia de invierno" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" +"Es una capucha personalizada blindada de kevlar. Es abrigada debido a su " +"interior de piel artificial." + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "capucha XL de piel artificial de supervivencia de invierno" +msgstr[1] "capuchas XL de piel artificial de supervivencia de invierno" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" +"Es una capucha personalizada blindada y muy grande de kevlar. Es abrigada " +"debido a su interior de piel artificial." + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "capucha acuática de supervivencia" +msgstr[1] "capuchas acuáticas de supervivencia" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "" +"Es una capucha personalizada de neopreno reforzada con kevlar, muy " +"resistente y duradera." + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "capucha de cartonero" +msgstr[1] "capuchas de cartonero" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "" +"Es una resistente capucha protectora que se extiende hasta el cuello, " +"equipada con un respirador y protección para los ojos. Para los cartoneos " +"peligrosos." + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "capucha XL de cartonero" +msgstr[1] "capuchas XL de cartonero" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" +"Es una resistente capucha protectora que se extiende hasta el cuello, " +"equipada con un respirador y protección para los ojos. Para los cartoneros " +"grandotes y venturosos." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "pantalón cargo ligero de supervivencia" +msgstr[1] "pantalones cargo ligeros de supervivencia" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "" +"Es un pantalón cargo liviano reforzado con kevlar, diseñado para almacenar " +"tanto como sea posible. Es resistente y prácticamente impermeable." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "pantalón cargo ligero XL de supervivencia" +msgstr[1] "pantalones cargo ligeros XL de supervivencia" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" +"Es un pantalón cargo liviano reforzado con kevlar, diseñado para almacenar " +"tanto como sea posible. Es resistente y prácticamente impermeable y de un " +"tamaño mayor que el normal." + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "pantalón cargo de supervivencia" +msgstr[1] "pantalones cargo de supervivencia" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" +"Es un pantalón con protección de kevlar y muchos bolsillos. Hecho para ser " +"resistente, cómodo y fácil de vestir." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "pantalón cargo XL de supervivencia" +msgstr[1] "pantalones cargo XL de supervivencia" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" +"Es un pantalón grande con protección de kevlar y muchos bolsillos. Hecho " +"para ser resistente, cómodo y fácil de vestir." + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "gabardina de supervivencia" +msgstr[1] "gabardinas de supervivencia" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "" +"Es una gabardina larga personalizada con protección de kevlar. Tiene muchos " +"bolsillos. Cómoda, resistente y con muy buena capacidad de almacenamiento." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "gabardina XL de supervivencia" +msgstr[1] "gabardinas XL de supervivencia" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "gabardina de supervivencia sin mangas" +msgstr[1] "gabardinas de supervivencia sin mangas" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" +"Es una gabardina personalizada sin mangas, con protección de kevlar. Tiene " +"muchos bolsillos. Cómodo, resistente y con muy buena capacidad de " +"almacenamiento." + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "sobretodo de supervivencia" +msgstr[1] "sobretodos de supervivencia" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "" +"Es un sobretodo personalizado con protección de kevlar. Tiene muchos " +"bolsillos. Cómodo, resistente y con muy buena capacidad de almacenamiento." + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "sobretodo de supervivencia sin mangas" +msgstr[1] "sobretodos de supervivencia sin mangas" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" +"Es un sobretodo personalizado sin mangas, con protección de kevlar. Tiene " +"muchos bolsillos. Cómodo, resistente y con muy buena capacidad de " +"almacenamiento." + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "bolso de viaje de supervivencia" +msgstr[1] "bolsos de viaje de supervivencia" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" +"Es un bolso de viaje pesado. Resistente y diseñado cuidadosamente para tener" +" la mayor capacidad posible." + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "mochila de supervivencia" +msgstr[1] "mochilas de supervivencia" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "" +"Es una mochila. Resistente y diseñada para tener la mayor capacidad posible." + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "mochilón de supervivencia" +msgstr[1] "mochilones de supervivencia" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" +"Es una mochila pesada de supervivencia. Resistente y diseñada para tener la " +"mayor capacidad posible." + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "riñonera de supervivencia de corredor" +msgstr[1] "riñoneras de supervivencia de corredor" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "" +"Es una riñonera ligera que se utiliza para llevar cosas mientras corrés. Es " +"resistente y está diseñada para tener la mayor capacidad posible." + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "par de botas ignífugas de supervivencia" +msgstr[1] "pares de botas ignífugas de supervivencia" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" +"Es un par de botas personalizadas de Nomex reforzadas con kevlar. Te van a " +"mantener a salvo incluso cuando estás enterrado hasta las rodillas entre las" +" llamas." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "par de botas ignífugas XL de supervivencia" +msgstr[1] "pares de botas ignífugas XL de supervivencia" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "par de botas pesadas de supervivencia" +msgstr[1] "pares de botas pesadas de supervivencia" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" +"Es un par de botas personalizadas de kevlar, muy reforzadas con acero. " +"Favorecen la protección por encima de la comodidad pero te mantendrán con " +"vida, específicamente cuando estés hasta las rodillas entre muertos." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "par de botas pesadas XL de supervivencia" +msgstr[1] "pares de botas pesadas XL de supervivencia" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "par de guantes pesados de supervivencia" +msgstr[1] "pares de guantes pesados de supervivencia" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" +"Es un par de guantes de kevlar con la parte posterior de acero. Estos fueron" +" diseñados con la protección como prioridad." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "par de guantes pesados XL de supervivencia" +msgstr[1] "pares de guantes pesados XL de supervivencia" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "par de guantes ignífugos de supervivencia" +msgstr[1] "pares de guantes ignífugos de supervivencia" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" +"Es un par de guantes de Nomex reforzados con kevlar. Estos son una versión " +"post-apocalíptica de lo que usaban los bomberos antes del Cataclismo." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "par de guantes ignífugos XL de supervivencia" +msgstr[1] "pares de guantes ignífugos XL de supervivencia" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "capucha ignífuga de supervivencia" +msgstr[1] "capuchas ignífugas de supervivencia" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" +"Es una capucha personalizada de Nomex reforzada con kevlar, resistente y " +"duradera." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "capucha ignífuga XL de supervivencia" +msgstr[1] "capuchas ignífugas XL de supervivencia" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" +"Es una capucha personalizada de Nomex reforzada con kevlar, muy resistente y" +" duradera. Hecha en Muspelheim." + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "traje ignífugo de supervivencia" +msgstr[1] "trajes ignífugos de supervivencia" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" +"Es un traje pesado casero, hecho con una combinación entre un chaleco " +"antibalas cortado y un mameluco reforzado ignífugo de nomex. Protege del " +"fuego y del ambiente." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "traje ignífugo XL de supervivencia" +msgstr[1] "trajes ignífugos XL de supervivencia" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "traje pesado de supervivencia" +msgstr[1] "trajes pesados de supervivencia" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" +"Es un traje pesado hecho a mano, es una combinación entre un chaleco " +"antibalas reforzado y un mameluco de cuero reforzado con placas de metal. " +"Protege tanto del ambiente como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "traje XL pesado de supervivencia" +msgstr[1] "trajes XL pesados de supervivencia" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" +"Es un traje enorme y pesado hecho a mano, una combinación entre un chaleco " +"antibalas reforzado y un mameluco de cuero reforzado con placas de metal. " +"Protege tanto del ambiente como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "armadura ligera de supervivencia" +msgstr[1] "armaduras ligeras de supervivencia" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" +"Es una armadura liviana para el torso, hecha de kevlar y tela resistente. Es" +" prácticamente impermeable." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "armadura ligera XL de supervivencia" +msgstr[1] "armaduras ligeras XL de supervivencia" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "cinturón de supervivencia" +msgstr[1] "cinturones de supervivencia" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "Guardar objeto" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" +"Es un cinturón de cuero lleno de bolsillos, con una vaina para llevar una " +"cuchilla pequeña, una funda para una pistola y un gancho para colgar una " +"herramienta grande. Resistente y diseñado para ser cómodo. Hay que usarlo " +"para enfundar y desenfundar el arma." + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "anteojos de supervivencia" +msgstr[1] "pares de anteojos de supervivencia" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" +"Es un par de anteojos blindados con los lentes polarizados. Son cómodos y " +"resistentes, brindan una excelente protección contra los peligros " +"ambientales." + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "arnés de supervivencia" +msgstr[1] "arneses de supervivencia" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" +"Es un arnés ligero con varias ranuras y una eslinga táctica integrada para " +"colgar un pequeño rifle o un arma similar. Resistente y diseñado para ser " +"cómodo de usar. Hay que usarlo para desenfundar y enfundar el arma." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "arnés XL de supervivencia" +msgstr[1] "arneses XL de supervivencia" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" +"Es un arnés ligero con varias ranuras y una eslinga táctica integrada para " +"colgar un pequeño rifle o un arma similar. Resistente y diseñado para ser " +"cómodo de usar y adecuado para los cuerpos grandes. Hay que usarlo para " +"desenfundar y enfundar el arma." + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -25219,7 +25246,7 @@ msgid_plural "impact knuckles" msgstr[0] "manoplas de impacto" msgstr[1] "manoplas de impacto" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -25234,7 +25261,7 @@ msgid_plural "skewer knuckles" msgstr[0] "manoplas brochette" msgstr[1] "manoplas brochette" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -25415,7 +25442,7 @@ msgid_plural "pair of XL combat boots" msgstr[0] "par de botas XL de combate" msgstr[1] "pares de botas XL de combate" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -25427,7 +25454,7 @@ msgid_plural "pair of XL tactical gloves" msgstr[0] "par de guantes XL tácticos" msgstr[1] "pares de guantes XL tácticos" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -25442,7 +25469,7 @@ msgid_plural "pair of Killophant gloves" msgstr[0] "par de guantes Asesifante" msgstr[1] "pares de guantes Asesifante" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -25762,7 +25789,7 @@ msgid_plural "psychrophile handling gloves" msgstr[0] "guantes para manipular psicrófilos" msgstr[1] "guantes para manipular psicrófilos" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -25950,21 +25977,6 @@ msgstr "" " goma. Son resistentes y pueden bloquear ataques pero son ridículamente " "pesadas." -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "cinturón cincha C.R.I.T." -msgstr[1] "cinturones cincha C.R.I.T." - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" -"Es un cinturón CRIT estándar. Mantiene tus pantalones arriba y tus armas a " -"mano." - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -26129,7 +26141,7 @@ msgid_plural "CRIT trousers" msgstr[0] "pantalón C.R.I.T." msgstr[1] "pantalones C.R.I.T." -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -26145,7 +26157,7 @@ msgid_plural "CRIT pants" msgstr[0] "pantalones de vestir C.R.I.T." msgstr[1] "pantalones de vestir C.R.I.T." -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -26196,6 +26208,12 @@ msgstr "" "guantes están hechos de algodón con interior de neopreno para brindar mejor " "agarre y abrigo." +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "cinturón cincha C.R.I.T." +msgstr[1] "cinturones cincha C.R.I.T." + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -26376,7 +26394,7 @@ msgid_plural "Force Shield" msgstr[0] "Escudo de Fuerza" msgstr[1] "Escudo de Fuerza" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -26953,7 +26971,7 @@ msgid_plural "freerunner's boots" msgstr[0] "botas de freerunning" msgstr[1] "botas de freerunning" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -27042,7 +27060,7 @@ msgid_plural "enchanted parabolan wool blouse" msgstr[0] "blusa de lana parabolan encantada" msgstr[1] "blusas de lana parabolan encantada" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -27061,7 +27079,7 @@ msgid_plural "enchanted parabolan wool breeches" msgstr[0] "calzones de lana parabolan encantada" msgstr[1] "calzones de lana parabolan encantada" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -27098,7 +27116,7 @@ msgid_plural "parabolan wool breeches" msgstr[0] "calzones de lana parabolan" msgstr[1] "calzones de lana parabolan" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -27164,7 +27182,7 @@ msgid_plural "slick icy coatings" msgstr[0] "coberturas de hielo resbaladizo" msgstr[1] "coberturas de hielo resbaladizo" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -27230,7 +27248,7 @@ msgid_plural "frost armor" msgstr[0] "armadura de escarcha" msgstr[1] "armaduras de escarcha" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py 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." @@ -27241,7 +27259,7 @@ msgid_plural "stoneskin coating" msgstr[0] "cobertura de piedra" msgstr[1] "cobertura de piedra" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -27352,7 +27370,7 @@ msgid_plural "spiritual armor" msgstr[0] "armadura espiritual" msgstr[1] "armadura espiritual" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -27364,7 +27382,7 @@ msgid_plural "auroral shell" msgstr[0] "caparazón auroreal" msgstr[1] "caparazón auroreal" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -27463,20 +27481,22 @@ msgstr "" "usuario sospecha que lo persigue alguien." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "MCB Placas de Aleación para Brazos" -msgstr[1] "MCB Placas de Aleación para Brazos" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "MCB Aleación Intradérmica en Brazos" +msgstr[1] "MCB Aleación Intradérmica en Brazos" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" -"Unas placas de aleación reemplaza la carne en los brazos del usuario. Brinda" -" una protección pasiva y puede ser usada en conjunto con las artes marciales" -" biónicas." +"Es una malla de protección mejorada que se entrelaza en la carne del " +"usuario. Brinda protección pasiva a cambio de un poco de incomodidad y puede" +" ser usada en conjunción con artes marciales biónicas." #: lang/json/BIONIC_ITEM_from_json.py msgid "Protective Lenses CBM" @@ -27496,50 +27516,41 @@ msgstr "" "boca. Cuando el usuario llora, deberá escupir o tragarse sus lágrimas." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" -msgstr[0] "MCB Placas de aleación para cabeza" -msgstr[1] "MCB Placas de aleación para cabeza" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "MCB Aleación Intradérmica en Cabeza" +msgstr[1] "MCB Aleación Intradérmica en Cabeza" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" -"Son unas placas de aleación reemplazan la carne en la cabeza del usuario, " -"protegiendo tanto la cabeza como la mandíbula." - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" -msgstr[0] "MCB Placas de Aleación para Piernas" -msgstr[1] "MCB Placas de Aleación para Piernas" +"Es una malla de protección mejorada que se entrelaza en la carne del " +"usuario, protegiendo tanto la cabeza como la mandíbula a cambio de un poco " +"de incomodidad." -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" -"Son unas placas de aleación reemplazan la carne en las piernas del usuario. " -"Brinda una enorme protección y puede ser usado en conjunto con biónicos de " -"artes marciales." +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "MCB Aleación Intradérmica en Piernas" +msgstr[1] "MCB Aleación Intradérmica en Piernas" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" -msgstr[0] "MCB Placas de aleación para torso" -msgstr[1] "MCB Placas de aleación para torso" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "MCB Aleación Intradérmica en Torso" +msgstr[1] "MCB Aleación Intradérmica en Torso" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" -"Son unas placas de aleación reemplazan la carne en el torso del usuario, " -"protegiéndolo de cualquier trauma físico." +"Es una malla de protección mejorada que se entrelaza en la carne del " +"usuario, protegiéndolo del trauma físico a cambio de un poco de incomodidad." #: lang/json/BIONIC_ITEM_from_json.py msgid "Battery System CBM" @@ -28424,7 +28435,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "MCB Almacenamiento de energía Mk. II" msgstr[1] "MCB Almacenamiento de energía Mk. II" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -28952,7 +28963,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "Tobillos Chillones" msgstr[1] "Tobillos Chillones" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "Es un par de biónicos defectuosos que hacen chillidos." @@ -29184,7 +29195,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "Pulgares Auto-Trabables" msgstr[1] "Pulgares Auto-Trabables" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "Es un par de pulgares biónicos defectuosos y auto-trabables." @@ -30781,7 +30792,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "notas sobre luchador con cuchillo" msgstr[1] "notas sobre luchador con cuchillo" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -31071,7 +31082,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "planos para repetidor de radio" msgstr[1] "planos para repetidor de radio" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -31114,7 +31125,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "procedimiento de manejo de trifase" msgstr[1] "procedimientos de manejo de trifase" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -31134,7 +31145,7 @@ msgid_plural "schematics" msgstr[0] "esquema" msgstr[1] "esquema" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -31142,9 +31153,9 @@ msgstr[1] "esquema" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -31160,7 +31171,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "esquema de enfermerobot" msgstr[1] "esquema de enfermerobot" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -31179,7 +31190,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "esquema de almacénbot" msgstr[1] "esquema de almacénbot" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -31198,7 +31209,7 @@ msgid_plural "police bot schematics" msgstr[0] "esquema de policíabot" msgstr[1] "esquema de policíabot" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -31215,7 +31226,7 @@ msgid_plural "eyebot schematics" msgstr[0] "esquema de ojobot" msgstr[1] "esquema de ojobot" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -31232,7 +31243,7 @@ msgid_plural "security bot schematics" msgstr[0] "esquema de robot de seguridad" msgstr[1] "esquema de robot de seguridad" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -31249,7 +31260,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "esquema de arañabot" msgstr[1] "esquema de arañabot" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -31266,7 +31277,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "esquema de limpiezabot" msgstr[1] "esquema de limpiezabot" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -31283,7 +31294,7 @@ msgid_plural "miner bot schematics" msgstr[0] "esquema de minerobot" msgstr[1] "esquema de minerobot" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -31300,7 +31311,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "esquema de antitumulbot" msgstr[1] "esquema de antitumulbot" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -31317,7 +31328,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "esquema de robot defensor de laboratorio" msgstr[1] "esquema de robot defensor de laboratorio" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -31335,7 +31346,7 @@ msgid_plural "dispatch schematics" msgstr[0] "esquema de desplegador" msgstr[1] "esquema de desplegador" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -31354,7 +31365,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "esquema de desplegador militar" msgstr[1] "esquema de desplegador militar" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -31373,7 +31384,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "esquema de torreta anti-material" msgstr[1] "esquema de torreta anti-material" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -31390,7 +31401,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "esquema de foco reflector milspec" msgstr[1] "esquema de foco reflector milspec" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -32109,7 +32120,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "El Espíritu del Aikido" msgstr[1] "El Espíritu del Aikido" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "Es una guía completa de Aikido." @@ -32120,7 +32131,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "Pugilismo Práctico" msgstr[1] "Pugilismo Práctico" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -32134,7 +32145,7 @@ msgid_plural "Capoeira 100" msgstr[0] "Capoeira 100" msgstr[1] "Capoeira 100" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "Es una guía completa de Capoeira." @@ -32145,7 +32156,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "El Ciempiés Lu Feng" msgstr[1] "El Ciempiés Lu Feng" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "Es la guía completa de Kung Fu Ciempiés." @@ -32156,7 +32167,7 @@ msgid_plural "The Red Crane" msgstr[0] "La Grulla Roja" msgstr[1] "La Grulla Roja" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "Es una guía completa de Kung Fu Grulla." @@ -32167,7 +32178,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "El Dragón de Jade" msgstr[1] "El Dragón de Jade" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "Es una guía completa de Kung Fu Dragón." @@ -32178,7 +32189,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "Eskrima Práctico" msgstr[1] "Eskrima Práctico" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "Es una guía completa de Eskrima." @@ -32189,7 +32200,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "El Espadachín Moderno" msgstr[1] "El Espadachín Moderno" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "Es una guía completa de Esgrima." @@ -32200,7 +32211,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "Kodokan Judo" msgstr[1] "Kodokan Judo" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "Es una guía completa de Judo." @@ -32211,7 +32222,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "Manual de Karate Shotokan" msgstr[1] "Manual de Karate Shotokan" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "Es una guía completa de Karate Shotokan." @@ -32222,7 +32233,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "Krav Maga Completo" msgstr[1] "Krav Maga Completo" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "Es una guía completa de Krav Maga." @@ -32233,7 +32244,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "El Leopardo Sordo" msgstr[1] "El Leopardo Sordo" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "Es una guía completa de Kung Fu Leopardo." @@ -32244,7 +32255,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "El Lagarto Kuo Chui" msgstr[1] "El Lagarto Kuo Chui" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "Es una guía completa de Kung Fu Lagarto." @@ -32255,7 +32266,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "Muay Thai Definitivo" msgstr[1] "Muay Thai Definitivo" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "Es una guía completa de Muay Thai." @@ -32266,7 +32277,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "Esencia del Ninjutsu" msgstr[1] "Esencia del Ninjutsu" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "Es una guía completa de Ninjutsu." @@ -32277,7 +32288,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "El Libro de los Cinco Anillos" msgstr[1] "El Libro de los Cinco Anillos" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -32292,7 +32303,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "El Pancraciasta Moderno" msgstr[1] "El Pancraciasta Moderno" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "Es una guía completa de Pancracio." @@ -32303,7 +32314,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "El Escorpión Sun Chien" msgstr[1] "El Escorpión Sun Chien" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "Es una guía completa de Kung Fu Escorpión." @@ -32314,7 +32325,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "El Guerrero Indonesio" msgstr[1] "El Guerrero Indonesio" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "Es una guía completa de Pentjak Silat." @@ -32325,7 +32336,7 @@ msgid_plural "The Black Snake" msgstr[0] "La Serpiente Negra" msgstr[1] "La Serpiente Negra" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "Es una guía completa de Kung Fu Serpiente." @@ -32336,7 +32347,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "Manual Oficial de Entrenamiento de Taekwondo" msgstr[1] "Manual Oficial de Entrenamiento de Taekwondo" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "Es una guía completa de Taekwondo." @@ -32347,7 +32358,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "Volviéndose Uno con el Tao" msgstr[1] "Volviéndose Uno con el Tao" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "Es una guía completa de T'ai Chi Ch'uan." @@ -32358,7 +32369,7 @@ msgid_plural "The White Tiger" msgstr[0] "El Tigre Blanco" msgstr[1] "El Tigre Blanco" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "Es una guía completa de Kung Fu Tigre." @@ -32369,7 +32380,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "El Sapo Lo Mang" msgstr[1] "El Sapo Lo Mang" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "Es una guía completa de Kung Fu Sapo." @@ -32380,7 +32391,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "La Víbora Wei Pai" msgstr[1] "La Víbora Wei Pai" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "Es una guía completa de Kung Fu Víbora." @@ -32391,7 +32402,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "Zui Quan y Vos" msgstr[1] "Zui Quan y Vos" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "Es una guía completa de Zui Quan." @@ -32402,7 +32413,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "El Camino de la Lanza" msgstr[1] "El Camino de la Lanza" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "Es una guía completa de Sōjutsu." @@ -32413,7 +32424,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "Hermosa Primavera" msgstr[1] "copias de Hermosa Primavera" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "Es una guía completa de Kung-fu Wing Chun." @@ -32425,7 +32436,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "Fior Di Battaglia" msgstr[1] "copias de Fior Di Battaglia" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -32442,7 +32453,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "Esgrima Histórica Europea" msgstr[1] "copias de Esgrima Histórica Europea" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -32623,7 +32634,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "Informe de Rancho" msgstr[1] "Informe de Rancho" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -33651,7 +33662,7 @@ msgid_plural "patient treatment records" msgstr[0] "registros de pacientes" msgstr[1] "registros de pacientes" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -33664,7 +33675,7 @@ msgid_plural "national weather transcripts" msgstr[0] "transcripciones del clima nacional" msgstr[1] "transcripciones del clima nacional" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "Viejos registros del clima que son tan interesantes como una piedra." @@ -37894,7 +37905,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "esquema de mecha-gallina" msgstr[1] "esquema de mecha-gallina" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -37913,7 +37924,7 @@ msgid_plural "diamond press schematics" msgstr[0] "esquema de prensa de diamantes" msgstr[1] "esquema de prensa de diamantes" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -37932,7 +37943,7 @@ msgid_plural "nano forge schematics" msgstr[0] "esquema de nano forja" msgstr[1] "esquema de nano forja" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -37951,7 +37962,7 @@ msgid_plural "tank drone schematics" msgstr[0] "esquema de dron tanque" msgstr[1] "esquema de dron tanque" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -37970,7 +37981,7 @@ msgid_plural "tripod schematics" msgstr[0] "esquema de trípode" msgstr[1] "esquema de trípode" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -38263,7 +38274,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "Siroco Ardiente" msgstr[1] "Siroco Ardiente" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -38275,7 +38286,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "Claridad Perfecta de Mente y Cuerpo" msgstr[1] "Claridad Perfecta de Mente y Cuerpo" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -38287,7 +38298,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "El libro de Mudora" msgstr[1] "El libro de Mudora" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -38302,7 +38313,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "Guerrero de Tormenta" msgstr[1] "Guerrero de Tormenta" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -38314,7 +38325,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "Vida y Obra de Tiger Sauer" msgstr[1] "Vida y Obra de Tiger Sauer" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -38329,7 +38340,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "Enciclopedia de Bolsillo de Monstruos" msgstr[1] "Enciclopedia de Bolsillo de Monstruos" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -38345,7 +38356,7 @@ msgid_plural "Distant Horizon" msgstr[0] "Horizonte Distante" msgstr[1] "Horizonte Distante" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "Este libro contiene las enseñanzas de la disciplina del Sol Poniente." @@ -38356,7 +38367,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "Holocrones Jedi: Forma I" msgstr[1] "Holocrones Jedi: Forma I" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -38371,7 +38382,7 @@ msgid_plural "Shards of Granite" msgstr[0] "Esquirlas de Granito" msgstr[1] "Esquirlas de Granito" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -38383,7 +38394,7 @@ msgid_plural "Reaping Talons" msgstr[0] "Zarpas Segadoras" msgstr[1] "Zarpas Segadoras" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -38411,6 +38422,25 @@ msgstr[1] "copias de Teoría básica de hechicería" msgid "A beginner textbook on magical theories." msgstr "Es un manual de nivel inicial sobre teoría mágica." +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[1] "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" +"Este libro está escrito en un lenguaje de runas que desconocés. Por suerte, " +"tiene varias imágenes detalladas que demuestran el proceso de forjar una " +"espada desde un lingo te metal plateado. Te da la sensación de que es una " +"clase de guía para herreros." + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -40781,7 +40811,7 @@ msgid_plural "bird litter" msgstr[0] "cagada de pájaro" msgstr[1] "cagada de pájaro" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "Son cagadas, plumas y pedazos de mugre de pájaro." @@ -40841,14 +40871,14 @@ msgid_plural "bleach" msgstr[0] "lavandina" msgstr[1] "lavandina" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "charco de lavandina" msgstr[1] "charcos de lavandina" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -40863,7 +40893,7 @@ msgid_plural "ammonia" msgstr[0] "amoníaco" msgstr[1] "amoníaco" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -40878,7 +40908,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "fertilizante líquido" msgstr[1] "fertilizante líquido" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "Es un elixir rico en nutrientes para las plantas." @@ -40889,7 +40919,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "fertilizante comercial" msgstr[1] "fertilizante comercial" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "Son unos gránulos ricos en nutrientes para las plantas." @@ -40900,7 +40930,7 @@ msgid_plural "fungicide" msgstr[0] "fungicida" msgstr[1] "fungicida" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -40915,7 +40945,7 @@ msgid_plural "insecticide" msgstr[0] "insecticida" msgstr[1] "insecticida" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -40930,7 +40960,7 @@ msgid_plural "salt water" msgstr[0] "agua salada" msgstr[1] "agua salada" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "Es agua con sal añadida. No sirve para tomar." @@ -40941,7 +40971,7 @@ msgid_plural "soapy water" msgstr[0] "agua con jabón" msgstr[1] "agua con jabón" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "Es agua con jabón agregado. No sirve para tomar." @@ -40963,7 +40993,7 @@ msgid_plural "sulfuric acid" msgstr[0] "ácido sulfúrico" msgstr[1] "ácido sulfúrico" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -40982,7 +41012,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "ácido hidroclórico" msgstr[1] "ácido hidroclórico" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -40999,7 +41029,7 @@ msgid_plural "nitric acid" msgstr[0] "ácido nítrico" msgstr[1] "ácido nítrico" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -41039,7 +41069,7 @@ msgid_plural "sewage water" msgstr[0] "aguas cloacales" msgstr[1] "aguas cloacales" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -41051,7 +41081,7 @@ msgid_plural "lye" msgstr[0] "lejía" msgstr[1] "lejía" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -41066,7 +41096,7 @@ msgid_plural "ether" msgstr[0] "éter" msgstr[1] "éter" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -41085,7 +41115,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "dimetilsulfóxido" msgstr[1] "dimetilsulfóxido" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -41104,7 +41134,7 @@ msgid_plural "chloroform" msgstr[0] "cloroformo" msgstr[1] "cloroformo" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -41121,7 +41151,7 @@ msgid_plural "phenol" msgstr[0] "fenol" msgstr[1] "fenol" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -41141,7 +41171,7 @@ msgid_plural "glycerol" msgstr[0] "glicerol" msgstr[1] "glicerol" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -41156,7 +41186,7 @@ msgid_plural "peptone broth powder" msgstr[0] "caldo de peptona" msgstr[1] "caldo de peptona" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -41173,7 +41203,7 @@ msgid_plural "agar" msgstr[0] "agar" msgstr[1] "agar" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -41192,7 +41222,7 @@ msgid_plural "acrylamide" msgstr[0] "acrilamida" msgstr[1] "acrilamida" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -41207,7 +41237,7 @@ msgid_plural "acetylene" msgstr[0] "acetileno" msgstr[1] "acetileno" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -41222,7 +41252,7 @@ msgid_plural "formic acid" msgstr[0] "ácido fórmico" msgstr[1] "ácido fórmico" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -41237,7 +41267,7 @@ msgid_plural "latex" msgstr[0] "látex" msgstr[1] "látex" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -41249,7 +41279,7 @@ msgid_plural "citric acid" msgstr[0] "ácido cítrico" msgstr[1] "ácido cítrico" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -41342,7 +41372,7 @@ msgid_plural "acetic anhydride" msgstr[0] "anhídrido acético" msgstr[1] "anhídrido acético" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," @@ -41351,6 +41381,17 @@ msgstr "" "Es una botella de anhídrido acético, si tenés el suficiente conocimiento " "químico podrías usarlo para convertir fácilmente la morfina en heroína." +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "jabón líquido" +msgstr[1] "jabón líquido" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "Es jabón líquido." + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -41393,7 +41434,7 @@ msgid_plural "marloss wine" msgstr[0] "vino de marloss" msgstr[1] "vino de marloss" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "Es un vino blanco viscoso, hecho con la fruta del marloss." @@ -41404,7 +41445,7 @@ msgid_plural "Riesling" msgstr[0] "Riesling" msgstr[1] "Riesling" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "Vino blanco espumante, hecho de la uva más noble del mundo." @@ -41415,7 +41456,7 @@ msgid_plural "Chardonnay" msgstr[0] "Chardonnay" msgstr[1] "Chardonnay" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "El vino más popular de Estados Unidos, y con razón." @@ -41426,7 +41467,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "Cabernet Sauvignon" msgstr[1] "Cabernet Sauvignon" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -41441,7 +41482,7 @@ msgid_plural "pinot noir" msgstr[0] "pinot noir" msgstr[1] "pinot noir" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -41456,7 +41497,7 @@ msgid_plural "marsala" msgstr[0] "marsala" msgstr[1] "marsala" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "Es un vino servido comúnmente con platos de restoranes italianos." @@ -41467,7 +41508,7 @@ msgid_plural "vermouth" msgstr[0] "vermú" msgstr[1] "vermú" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -41482,7 +41523,7 @@ msgid_plural "barley wine" msgstr[0] "vino de cebada" msgstr[1] "vino de cebada" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "Es una cerveza fuerte." @@ -41493,7 +41534,7 @@ msgid_plural "whiskey" msgstr[0] "whisky" msgstr[1] "whisky" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -41507,7 +41548,7 @@ msgid_plural "vodka" msgstr[0] "vodka" msgstr[1] "vodka" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -41522,7 +41563,7 @@ msgid_plural "gin" msgstr[0] "gin" msgstr[1] "gin" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -41537,7 +41578,7 @@ msgid_plural "rum" msgstr[0] "ron" msgstr[1] "ron" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -41552,7 +41593,7 @@ msgid_plural "tequila" msgstr[0] "tequila" msgstr[1] "tequila" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -41567,7 +41608,7 @@ msgid_plural "triple sec" msgstr[0] "triple seco" msgstr[1] "triple seco" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "Un licor con gusto a naranja que se usa en muchos tragos." @@ -41578,7 +41619,7 @@ msgid_plural "cheap wine" msgstr[0] "vino barato" msgstr[1] "vino barato" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "Vino fortalecido muy barato." @@ -41589,7 +41630,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "mezcla fuerte de alcohol" msgstr[1] "mezcla fuerte de alcohol" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -41601,7 +41642,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "mezcla suave de alcohol" msgstr[1] "mezcla suave de alcohol" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -41613,7 +41654,7 @@ msgid_plural "fruit wine" msgstr[0] "vino frutal" msgstr[1] "vino frutal" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -41627,7 +41668,7 @@ msgid_plural "brandy" msgstr[0] "brandy" msgstr[1] "brandy" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -41642,7 +41683,7 @@ msgid_plural "Irish coffee" msgstr[0] "café Irlandés" msgstr[1] "café Irlandés" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -41657,7 +41698,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "té helado Long Island" msgstr[1] "té helado Long Island" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -41689,7 +41730,7 @@ msgid_plural "wild apple" msgstr[0] "manzana silvestre" msgstr[1] "manzana silvestre" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "Es como la sidra de manzana, pero con vodka." @@ -41700,7 +41741,7 @@ msgid_plural "rum & cola" msgstr[0] "ron-cola" msgstr[1] "ron-cola" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -41712,7 +41753,7 @@ msgid_plural "beer" msgstr[0] "cerveza" msgstr[1] "cerveza" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -41727,7 +41768,7 @@ msgid_plural "spiced mead" msgstr[0] "hidromiel con hierbas" msgstr[1] "hidromiel con hierbas" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -41741,7 +41782,7 @@ msgid_plural "dandelion wine" msgstr[0] "vino de diente de león" msgstr[1] "vino de diente de león" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -41756,7 +41797,7 @@ msgid_plural "burdock wine" msgstr[0] "vino de bardana" msgstr[1] "vino de bardana" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -41769,7 +41810,7 @@ msgid_plural "pine wine" msgstr[0] "retsina" msgstr[1] "retsina" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -41784,7 +41825,7 @@ msgid_plural "homebrew beer" msgstr[0] "cerveza artesanal" msgstr[1] "cerveza artesanal" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -41797,7 +41838,7 @@ msgid_plural "moonshine" msgstr[0] "aguardiente casero" msgstr[1] "aguardiente casero" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -41814,7 +41855,7 @@ msgid_plural "European pilsner" msgstr[0] "cerveza pilsen europea" msgstr[1] "cerveza pilsen europea" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -41829,7 +41870,7 @@ msgid_plural "American pale ale" msgstr[0] "cerveza pale ale americana" msgstr[1] "cerveza pale ale americana" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -41844,7 +41885,7 @@ msgid_plural "India pale ale" msgstr[0] "cerveza pale ale india" msgstr[1] "cerveza pale ale india" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -41859,7 +41900,7 @@ msgid_plural "stout" msgstr[0] "cerveza stout" msgstr[1] "cerveza stout" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -41872,7 +41913,7 @@ msgid_plural "Belgian ale" msgstr[0] "cerveza belga" msgstr[1] "cerveza belga" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -41887,7 +41928,7 @@ msgid_plural "imperial stout" msgstr[0] "cerveza stout imperial" msgstr[1] "cerveza stout imperial" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -41937,7 +41978,7 @@ msgid_plural "single malt whiskey" msgstr[0] "whisky puro de malta" msgstr[1] "whisky puro de malta" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "De los mejores whiskys." @@ -41948,7 +41989,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "whisky irlandés de alambique único" msgstr[1] "whisky irlandés de alambique único" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -41960,7 +42001,7 @@ msgid_plural "cheap whiskey" msgstr[0] "whisky barato" msgstr[1] "whisky barato" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "Es un whisky de mezcla muy barato." @@ -41971,7 +42012,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "whisky canadiense" msgstr[1] "whisky canadiense" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "Es un licor multigrano, hecho con pulpa de maíz y centeno." @@ -41982,7 +42023,7 @@ msgid_plural "sherry" msgstr[0] "jerez" msgstr[1] "jerez" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -41996,7 +42037,7 @@ msgid_plural "Bristol Cream" msgstr[0] "Bristol Cream" msgstr[1] "Bristol Cream" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -42011,7 +42052,7 @@ msgid_plural "Madeira wine" msgstr[0] "vino Madeira" msgstr[1] "vino Madeira" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -42024,7 +42065,7 @@ msgid_plural "fancy hobo" msgstr[0] "indigente extravagante" msgstr[1] "indigentes extravagantes" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "Definitivamente, tiene el gusto de una bebida de indigentes." @@ -42035,7 +42076,7 @@ msgid_plural "kalimotxo" msgstr[0] "jote" msgstr[1] "jotes" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -42051,7 +42092,7 @@ msgid_plural "bee's knees" msgstr[0] "rodillas de abeja" msgstr[1] "rodillas de abeja" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -42158,7 +42199,7 @@ msgid_plural "hard seltzer" msgstr[0] "soda con alcohol" msgstr[1] "soda con alcohol" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "Es agua gaseosa con alcohol. Perfecta para un día caluroso de verano." @@ -42169,7 +42210,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "muffin de calabaza" msgstr[1] "muffins de calabaza" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -42182,7 +42223,7 @@ msgid_plural "donut holes" msgstr[0] "timbit" msgstr[1] "timbits" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -42198,7 +42239,7 @@ msgid_plural "sourdough bread" msgstr[0] "pan de masa madre" msgstr[1] "pan de masa madre" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -42213,7 +42254,7 @@ msgid_plural "flatbread" msgstr[0] "pan sin levadura" msgstr[1] "pan sin levadura" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "Es un simple pan sin levadura." @@ -42224,7 +42265,7 @@ msgid_plural "bread" msgstr[0] "pan" msgstr[1] "pan" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "Saludable y rendidor." @@ -42235,7 +42276,7 @@ msgid_plural "toast" msgstr[0] "tostada" msgstr[1] "tostada" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -42250,7 +42291,7 @@ msgid_plural "buttered toast" msgstr[0] "tostada con manteca" msgstr[1] "tostada con manteca" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "Es una tostada untada con manteca para que tenga mejor sabor." @@ -42261,7 +42302,7 @@ msgid_plural "jam toast" msgstr[0] "tostada con mermelada" msgstr[1] "tostada con mermelada" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -42276,7 +42317,7 @@ msgid_plural "peanut butter toast" msgstr[0] "tostada con crema de maní" msgstr[1] "tostada con crema de maní" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -42288,7 +42329,7 @@ msgid_plural "toad in a hole" msgstr[0] "toad in a hole" msgstr[1] "toad in a hole" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "Es huevo cocinado y servido adentro de un pedazo de tostada." @@ -42299,7 +42340,7 @@ msgid_plural "PBJ Toast" msgstr[0] "tostada con crema de maní y mermelada" msgstr[1] "tostada con crema de maní y mermelada" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -42314,7 +42355,7 @@ msgid_plural "cornbread" msgstr[0] "pan de maíz" msgstr[1] "pan de maíz" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "Pan de maíz saludable y rendidor." @@ -42347,7 +42388,7 @@ msgid_plural "hardtack" msgstr[0] "galleta náutica" msgstr[1] "galleta náutica" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -42374,7 +42415,7 @@ msgid_plural "wastebread" msgstr[0] "pan de sobras" msgstr[1] "pan de sobras" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -42391,7 +42432,7 @@ msgid_plural "brown bread" msgstr[0] "pan integral" msgstr[1] "pan integral" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "Es pan un poco dulce, parecido a una torta." @@ -42402,7 +42443,7 @@ msgid_plural "hallula" msgstr[0] "hallula" msgstr[1] "hallula" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -42703,20 +42744,20 @@ msgid_plural "malting grain" msgstr[0] "grano malteándose" msgstr[1] "grano malteándose" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" "Luego de haber remojado el grano y esperado, ya ha terminado el proceso de " "malteado." -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "El grano todavía no está malteado." -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -42728,8 +42769,8 @@ msgid_plural "malted grain" msgstr[0] "grano malteado" msgstr[1] "grano malteado" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -42744,7 +42785,7 @@ msgid_plural "soaking dandelion" msgstr[0] "diente de león remojándose" msgstr[1] "diente de león remojándose" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " @@ -42753,7 +42794,7 @@ msgstr "" "Luego de remojar los diente de león en agua hirviendo, el jugo puede usarse " "para hacer vino." -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "Los diente de león necesitan más tiempo." @@ -42764,7 +42805,7 @@ msgid_plural "soaked dandelion" msgstr[0] "diente de león remojada" msgstr[1] "diente de león remojada" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -42794,7 +42835,7 @@ msgid_plural "cooked fish" msgstr[0] "pescado cocinado" msgstr[1] "pescado cocinado" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "Es un pescado cocinado recientemente. Muy nutritivo." @@ -42907,7 +42948,7 @@ msgstr "" "Es carne recién carneada, valga la redundancia. La podés comer cruda, pero " "si la cocinás es mejor." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "Es sangre recién extraída de una criatura viva." @@ -43027,7 +43068,7 @@ msgid_plural "mutant blood" msgstr[0] "sangre mutante" msgstr[1] "sangre mutante" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "Es sangre recién extraída de una criatura muy mutada." @@ -43072,7 +43113,7 @@ msgid_plural "mutant human blood" msgstr[0] "sangre de humano mutante" msgstr[1] "sangre de humano mutante" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "Es sangre recién extraída de un humano muy mutado." @@ -43122,7 +43163,7 @@ msgid_plural "butchery refuse" msgstr[0] "desechos" msgstr[1] "desechos" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -43220,7 +43261,7 @@ msgid_plural "cooked offal" msgstr[0] "achura cocinada" msgstr[1] "achuras cocinadas" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -43237,7 +43278,7 @@ msgid_plural "mutant organs" msgstr[0] "órganos mutantes" msgstr[1] "órganos mutantes" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "Estos órganos pertenecieron a un insecto gigante mutado." @@ -43248,7 +43289,7 @@ msgid_plural "pickled offal" msgstr[0] "achuras al escabeche" msgstr[1] "achuras al escabeche" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -43265,7 +43306,7 @@ msgid_plural "canned offal" msgstr[0] "achuras enlatadas" msgstr[1] "achuras enlatadas" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -43305,31 +43346,28 @@ msgid_plural "meat jerky" msgstr[0] "charqui de carne" msgstr[1] "charqui de carne" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "charqui de chabón" msgstr[1] "charqui de chabón" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "charqui de animal parlante" msgstr[1] "charqui de animal parlante" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "charqui de monstruo" msgstr[1] "charqui de monstruo" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -43343,7 +43381,7 @@ msgid_plural "salted fish" msgstr[0] "pescado salado" msgstr[1] "pescado salado" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -43357,33 +43395,27 @@ msgid_plural "smoked meats" msgstr[0] "carne ahumada" msgstr[1] "carnes ahumadas" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "cabrón ahumado" msgstr[1] "cabrón ahumado" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "narniano ahumado" msgstr[1] "narniano ahumado" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -43406,7 +43438,7 @@ msgid_plural "smoked fish" msgstr[0] "pescado ahumado" msgstr[1] "pescado ahumado" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -43468,7 +43500,7 @@ msgid_plural "mutant lungs" msgstr[0] "pulmones mutantes" msgstr[1] "pulmones mutantes" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "Estás bastante seguro que esto es tejido de pulmón." @@ -43525,7 +43557,7 @@ msgid_plural "raw brains" msgstr[0] "cerebro crudo" msgstr[1] "cerebros crudos" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "Es el cerebro de un animal. No vas a querer comerte esto crudo…" @@ -43536,7 +43568,7 @@ msgid_plural "cooked brains" msgstr[0] "cerebro cocinado" msgstr[1] "cerebros cocinados" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -43622,7 +43654,7 @@ msgstr[1] "mollejas cocinadas" msgid "Normally a delicacy, it needs a little… something." msgstr "Comúnmente, es una exquisitez, pero le falta un poco de... algo." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "Sangre, probablemente de un humano. ¡Desagradable!" @@ -43800,7 +43832,7 @@ msgstr "" "Obviamente, esta carne no es saludable. Te la podés comer pero te va a caer " "mal." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -44088,7 +44120,7 @@ msgid_plural "alien fronds" msgstr[0] "fronda extraterrestre" msgstr[1] "fronda extraterrestre" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -44214,7 +44246,7 @@ msgid_plural "demihuman flesh" msgstr[0] "carne de semihumano" msgstr[1] "carne de semihumano" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "Recién carneada de un cadáver semihumano." @@ -44225,7 +44257,7 @@ msgid_plural "demihuman blood" msgstr[0] "sangre semihumana" msgstr[1] "sangre semihumana" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "Es sangre recién extraída de un semihumano." @@ -44269,13 +44301,38 @@ msgstr "" "Es un estómago chico hervido de un semihumano, nada más que eso. Parece " "muchas cosas excepto apetitoso." +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "carne frita" +msgstr[1] "carnes fritas" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "gil frito" +msgstr[1] "giles fritos" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "familiar frito" +msgstr[1] "familiares fritos" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "Es una deliciosa carne freída." + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "cazuela de choclo" msgstr[1] "cazuela de choclo" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -44292,7 +44349,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "cazuela de fideos y pescado" msgstr[1] "cazuela de fideos y pescado" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -44307,7 +44364,7 @@ msgid_plural "cereal" msgstr[0] "cereal" msgstr[1] "cereal" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "Es una caja genérica de cereal, no deberías ver esto." @@ -44318,7 +44375,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "cereal Foodplace" msgstr[1] "cereal Foodplace" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -44331,7 +44388,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "cereal Snicker-Snacks" msgstr[1] "cereal Snicker-Snacks" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -44346,7 +44403,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "cereal Carpintero Crunch" msgstr[1] "cereal Carpintero Crunch" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -44362,7 +44419,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "cereal Brantastic" msgstr[1] "cereal Brantastic" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -44377,7 +44434,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "cereal Sugar Chomps" msgstr[1] "cereal Sugar Chomps" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -44392,7 +44449,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "cereal Bolitas de Miel" msgstr[1] "cereal Bolitas de Miel" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -44423,7 +44480,7 @@ msgid_plural "Foodios cereal" msgstr[0] "cereal Foodios" msgstr[1] "cereal Foodios" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "Es cereal \"Foodios\" de la marca Foodplace. ¡Foodios™ es Foodelicioso™!" @@ -44449,7 +44506,7 @@ msgid_plural "wheat cereal" msgstr[0] "cereal de trigo" msgstr[1] "cereal de trigo" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -44475,7 +44532,7 @@ msgid_plural "milk" msgstr[0] "leche" msgstr[1] "leche" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -44487,7 +44544,7 @@ msgid_plural "chocolate milk" msgstr[0] "leche chocolatada" msgstr[1] "leche chocolatada" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -44500,7 +44557,7 @@ msgid_plural "reconstituted milk" msgstr[0] "leche rehidratada" msgstr[1] "leche rehidratada" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -44515,7 +44572,7 @@ msgid_plural "raw milk" msgstr[0] "leche sin pasteurizar" msgstr[1] "leche sin pasteurizar" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -44534,7 +44591,7 @@ msgid_plural "shelf stable milk" msgstr[0] "leche larga vida" msgstr[1] "leche larga vida" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -44551,7 +44608,7 @@ msgid_plural "evaporated milk" msgstr[0] "leche evaporada" msgstr[1] "leche evaporada" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -44564,7 +44621,7 @@ msgid_plural "buttermilk" msgstr[0] "suero de manteca" msgstr[1] "suero de manteca" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -44590,7 +44647,7 @@ msgid_plural "butter" msgstr[0] "manteca" msgstr[1] "manteca" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -44604,7 +44661,7 @@ msgid_plural "raw butter" msgstr[0] "manteca sin pasteurizar" msgstr[1] "manteca sin pasteurizar" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -44618,7 +44675,7 @@ msgid_plural "ghee" msgstr[0] "manteca clarificada" msgstr[1] "manteca clarificada" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -44660,7 +44717,7 @@ msgid_plural "hard cheese" msgstr[0] "queso duro" msgstr[1] "queso duro" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -44675,7 +44732,7 @@ msgid_plural "cheese" msgstr[0] "queso" msgstr[1] "queso" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "Es un pedazo amarillo de queso procesado." @@ -44697,7 +44754,7 @@ msgid_plural "powdered milk" msgstr[0] "leche en polvo" msgstr[1] "leche en polvo" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -44710,7 +44767,7 @@ msgid_plural "condensed milk" msgstr[0] "leche condensada" msgstr[1] "leche condensada" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -44725,7 +44782,7 @@ msgid_plural "whipped cream" msgstr[0] "crema batida" msgstr[1] "crema batida" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -44740,7 +44797,7 @@ msgid_plural "heavy cream" msgstr[0] "crema doble" msgstr[1] "crema doble" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -44753,7 +44810,7 @@ msgid_plural "apple cider" msgstr[0] "sidra de manzana" msgstr[1] "sidra de manzana" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "Exprimida de manzanas frescas. Sabrosa y nutritiva." @@ -44794,7 +44851,7 @@ msgid_plural "atomic coffee" msgstr[0] "café atómico" msgstr[1] "café atómico" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -44812,7 +44869,7 @@ msgid_plural "bee balm tea" msgstr[0] "té de monarda" msgstr[1] "té de monarda" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -44839,7 +44896,7 @@ msgid_plural "chai tea" msgstr[0] "té chai" msgstr[1] "té chai" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "Es una mezcla tradicional del sur asiático, de leche y té." @@ -44850,7 +44907,7 @@ msgid_plural "chamomile tea" msgstr[0] "té de manzanliia" msgstr[1] "té de manzanliia" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -44881,7 +44938,7 @@ msgid_plural "coffee" msgstr[0] "café" msgstr[1] "café" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -44899,7 +44956,7 @@ msgid_plural "coffee substitute" msgstr[0] "sucedáneo de café" msgstr[1] "sucedáneo de café" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -44916,7 +44973,7 @@ msgid_plural "chicory brew" msgstr[0] "infusión de achicoria" msgstr[1] "infusión de achicoria" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -44994,7 +45051,7 @@ msgid_plural "dandelion tea" msgstr[0] "té de diente de león" msgstr[1] "té de diente de león" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -45007,7 +45064,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "té de diente de león y bardana" msgstr[1] "té de diente de león y bardana" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -45073,7 +45130,7 @@ msgid_plural "herbal tea" msgstr[0] "té de hierbas" msgstr[1] "té de hierbas" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -45085,7 +45142,7 @@ msgid_plural "hot chocolate" msgstr[0] "chocolate caliente" msgstr[1] "chocolate caliente" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -45139,7 +45196,7 @@ msgid_plural "lemonade" msgstr[0] "limonada" msgstr[1] "limonada" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -45169,7 +45226,7 @@ msgid_plural "lotus tea" msgstr[0] "té de loto" msgstr[1] "té de loto" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -45182,7 +45239,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "chocolate caliente mexicano" msgstr[1] "chocolate caliente mexicano" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -45250,7 +45307,7 @@ msgid_plural "pine needle tea" msgstr[0] "té de aguja de pino" msgstr[1] "té de aguja de pino" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -45293,7 +45350,7 @@ msgid_plural "root beer" msgstr[0] "cerveza de raíz" msgstr[1] "cerveza de raíz" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -45337,7 +45394,7 @@ msgid_plural "spurge tea" msgstr[0] "té de euforbio" msgstr[1] "té de euforbio" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." @@ -45345,7 +45402,7 @@ msgstr "" "Ya no te tenés que preocupar por los ataques de asma, por lo menos por un " "tiempo." -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -45375,7 +45432,7 @@ msgid_plural "sweet water" msgstr[0] "agua dulce" msgstr[1] "agua dulce" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "Es agua con azúcar o miel agregada. El gusto está bien." @@ -45401,7 +45458,7 @@ msgid_plural "willowbark tea" msgstr[0] "té corteza de sauce" msgstr[1] "té corteza de sauce" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -45443,7 +45500,7 @@ msgid_plural "water" msgstr[0] "agua" msgstr[1] "agua" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -45458,7 +45515,7 @@ msgid_plural "clean water" msgstr[0] "agua potable" msgstr[1] "agua potable" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "Es agua potable, fresca. Verdaderamente, lo mejor para calmar tu sed." @@ -45469,7 +45526,7 @@ msgid_plural "mineral water" msgstr[0] "agua mineral" msgstr[1] "agua mineral" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -45621,7 +45678,7 @@ msgid_plural "maple sap" msgstr[0] "savia de arce" msgstr[1] "savia de arce" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "Es una solución de agua y azúcar que ha sido extraída de un arce." @@ -45632,7 +45689,7 @@ msgid_plural "mayonnaise" msgstr[0] "mayonesa" msgstr[1] "mayonesa" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -45659,7 +45716,7 @@ msgid_plural "mustard" msgstr[0] "mostaza" msgstr[1] "mostaza" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -45674,7 +45731,7 @@ msgid_plural "forest honey" msgstr[0] "miel de bosque" msgstr[1] "miel de bosque" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -45689,7 +45746,7 @@ msgid_plural "vinegar" msgstr[0] "vinagre" msgstr[1] "vinagre" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -45704,7 +45761,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "aceite vegetal de cocina" msgstr[1] "aceite vegetal de cocina" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "Aceite vegetal amarillento que se usa para cocinar." @@ -45715,7 +45772,7 @@ msgid_plural "animal cooking oil" msgstr[0] "aceite animal de cocina" msgstr[1] "aceite animal de cocina" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "Es un aceite animal amarillento que se usa para cocinar." @@ -45726,7 +45783,7 @@ msgid_plural "molasses" msgstr[0] "melaza" msgstr[1] "melazas" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -45742,7 +45799,7 @@ msgid_plural "horseradish" msgstr[0] "rábano picante" msgstr[1] "rábanos picantes" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "Es una raíz de vegetal picante, rallada y sumergida en escabeche." @@ -45753,7 +45810,7 @@ msgid_plural "coffee syrup" msgstr[0] "jarabe de café" msgstr[1] "jarabe de café" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -46126,7 +46183,7 @@ msgid_plural "scrambled eggs" msgstr[0] "huevos revueltos" msgstr[1] "huevos revueltos" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "Huevos revueltos suaves y deliciosos." @@ -46149,7 +46206,7 @@ msgid_plural "fried eggs" msgstr[0] "huevo frito" msgstr[1] "huevos fritos" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -46164,7 +46221,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "huevos fritos deluxe" msgstr[1] "huevos fritos deluxe" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -46179,7 +46236,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "sánguche de huevo frito" msgstr[1] "sánguches de huevo frito" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -46194,7 +46251,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "sánguche de huevo frito deluxe" msgstr[1] "sánguches de huevo frito deluxe" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -46417,7 +46474,7 @@ msgid_plural "frozen yogurt" msgstr[0] "yogur helado" msgstr[1] "yogur helado" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -46491,7 +46548,7 @@ msgid_plural "peaches in syrup" msgstr[0] "duraznos en almíbar" msgstr[1] "duraznos en almíbar" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "Pedazos amarillos de duraznos rebosados en almíbar." @@ -46513,7 +46570,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "jugo en polvo limonada" msgstr[1] "jugo en polvo de limonada" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -46550,7 +46607,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "fruta deshidratada" msgstr[1] "fruta deshidratada" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -46566,7 +46623,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "fruta rehidratada" msgstr[1] "fruta rehidratada" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -46593,7 +46650,7 @@ msgid_plural "canned fruit" msgstr[0] "fruta enlatada" msgstr[1] "fruta enlatada" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -46608,7 +46665,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "pan de calabaza" msgstr[1] "panes de calabaza" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -46634,7 +46691,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "escaramujo irradiado" msgstr[1] "escaramujos irradiados" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -47084,7 +47141,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "brócoli irradiado" msgstr[1] "brócoli irradiado" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -47144,7 +47201,7 @@ msgid_plural "irradiated corn" msgstr[0] "choclo irradiado" msgstr[1] "choclo irradiado" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -47204,7 +47261,7 @@ msgid_plural "irradiated celery" msgstr[0] "apio irradiado" msgstr[1] "apio irradiado" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -47219,7 +47276,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "ruibarbo irradiado" msgstr[1] "ruibarbo irradiado" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -47344,12 +47401,12 @@ msgid_plural "potato chips" msgstr[0] "papas fritas" msgstr[1] "papas fritas" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "Son unas simples papas fritas saladas." -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "¡Uh, chabón! ¡Te encantan estas papas fritas! ¡Buenísimo!" @@ -47360,7 +47417,7 @@ msgid_plural "popcorn kernels" msgstr[0] "maíz pisingallo" msgstr[1] "maíz pisingallo" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -47375,7 +47432,7 @@ msgid_plural "popcorn" msgstr[0] "pochoclo" msgstr[1] "pochoclo" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -47390,7 +47447,7 @@ msgid_plural "salted popcorn" msgstr[0] "pochoclo salado" msgstr[1] "pochoclo salado" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "Es pochoclo con sal añadida para darle más sabor." @@ -47401,7 +47458,7 @@ msgid_plural "buttered popcorn" msgstr[0] "pochoclo con manteca" msgstr[1] "pochoclo con manteca" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "Pochoclo con una suave cobertura de manteca para darle más sabor." @@ -47412,7 +47469,7 @@ msgid_plural "pretzels" msgstr[0] "pretzels" msgstr[1] "pretzels" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "Es una galleta para ir picando algo." @@ -47445,7 +47502,7 @@ msgid_plural "marshmallows" msgstr[0] "malvaviscos" msgstr[1] "malvaviscos" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "Es un puñado de malvaviscos blandos, suaves, inflados y deliciosos." @@ -47456,7 +47513,7 @@ msgid_plural "s'mores" msgstr[0] "smores" msgstr[1] "smores" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -47493,7 +47550,7 @@ msgid_plural "chewy candy" msgstr[0] "caramelos masticables" msgstr[1] "caramelos masticables" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "Es un puñado de caramelos masticables coloridos con sabor a frutas." @@ -47504,13 +47561,13 @@ msgid_plural "gummy candy" msgstr[0] "gomitas" msgstr[1] "gomitas" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" "Es un puñado de gomitas coloridas con gusto a gaseosa y fruta, digamos." -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -47564,7 +47621,7 @@ msgid_plural "powder candy sticks" msgstr[0] "palitos de caramelos en polvo" msgstr[1] "palitos de caramelos en polvo" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -47648,7 +47705,7 @@ msgid_plural "maple syrup" msgstr[0] "jarabe de arce" msgstr[1] "jarabe de arce" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -47662,7 +47719,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "jarabe de remolacha azucarera" msgstr[1] "jarabe de remolacha azucarera" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -47721,7 +47778,7 @@ msgid_plural "fast-food French fries" msgstr[0] "papas fritas de restorán" msgstr[1] "papas fritas de restorán" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "Son papas fritas. Por algún motivo, todavía se pueden comer." @@ -47732,7 +47789,7 @@ msgid_plural "French fries" msgstr[0] "papas fritas" msgstr[1] "papas fritas" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "Son unas papas fritas con un poco de sal. Crocantes y deliciosas." @@ -47755,7 +47812,7 @@ msgid_plural "Necco wafers" msgstr[0] "galleta Necco" msgstr[1] "galletas Necco" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -47785,8 +47842,8 @@ msgid_plural "caramel" msgstr[0] "caramelo" msgstr[1] "caramelo" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "Es un poco de caramelo. Sigue siendo malo para tu salud." @@ -47797,7 +47854,7 @@ msgid_plural "caramel apple" msgstr[0] "manzana acaramelada" msgstr[1] "manzana acaramelada" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "A que no te podés comer una sola." @@ -47808,7 +47865,7 @@ msgid_plural "tortilla chips" msgstr[0] "doritos" msgstr[1] "doritos" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -47823,7 +47880,7 @@ msgid_plural "cheese nachos" msgstr[0] "nachos de queso" msgstr[1] "nachos de queso" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -47838,31 +47895,28 @@ msgid_plural "meat nachos" msgstr[0] "nachos de carne" msgstr[1] "nachos de carne" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "nachos niño" msgstr[1] "nachos niño" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "nachos nibelungos" msgstr[1] "nachos nibelungos" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "nachos con chupacabra" msgstr[1] "nachos con chupacabra" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -47877,31 +47931,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "nachos de carne con queso" msgstr[1] "nachos de carne con queso" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "nachos niño con queso" msgstr[1] "nachos niño con queso" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "nachos nibelungos con queso" msgstr[1] "nachos nibelungos con queso" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "nachos de queso y chupacabra" msgstr[1] "nachos de queso y chupacabra" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -47915,7 +47969,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "nachos de verdura" msgstr[1] "nachos de verdura" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -47930,7 +47984,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "nachos de verdura con queso" msgstr[1] "nachos de verdura con queso" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -48014,7 +48068,7 @@ msgid_plural "chili dogs" msgstr[0] "pancho con chile" msgstr[1] "panchos con chile" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "Es un pancho con chile con carne como aderezo. ¡Rico!" @@ -48025,7 +48079,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "salchicha empanizada sin cocinar" msgstr[1] "salchichas empanizadas sin cocinar" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -48111,7 +48165,7 @@ msgid_plural "cheese fries" msgstr[0] "papas fritas con queso" msgstr[1] "papas fritas con queso" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "Son papas fritas cubiertas con delicioso queso derretido." @@ -48208,8 +48262,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "garrapiñada" msgstr[1] "garrapiñada" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -48375,32 +48428,26 @@ msgid_plural "raw sausages" msgstr[0] "salchicha cruda" msgstr[1] "salchichas crudas" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "Juannwurst cruda" msgstr[1] "Juannwurst crudas" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "killbasa cruda" msgstr[1] "killbasas crudas" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -48419,15 +48466,14 @@ msgid_plural "smoked sausages" msgstr[0] "salchicha ahumada" msgstr[1] "salchichas ahumadas" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "Juannwurst ahumada" msgstr[1] "Juannwurst ahumadas" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -48448,15 +48494,14 @@ msgid_plural "cooked sausages" msgstr[0] "salchicha cocinada" msgstr[1] "salchichas cocinadas" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "Juannwurst cocinada" msgstr[1] "Juannwurst cocinadas" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -48487,23 +48532,21 @@ msgid_plural "bratwursts" msgstr[0] "pibewurst" msgstr[1] "pibewursts" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "Juannbrat" msgstr[1] "Juannbrats" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "salchicha frankenfurter" msgstr[1] "salchichas frankenfurters" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -48526,7 +48569,7 @@ msgid_plural "royal beef" msgstr[0] "carne real" msgstr[1] "carnes reales" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -48585,7 +48628,7 @@ msgid_plural "cracklins" msgstr[0] "chicharrones" msgstr[1] "chicharrones" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -48600,8 +48643,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "lomito glaseado" msgstr[1] "lomitos glaseados" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -48609,7 +48651,7 @@ msgid_plural "grisly %s" msgstr[0] "%s horripilante" msgstr[1] "%s horripilantes" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -48626,7 +48668,7 @@ msgid_plural "currywursts" msgstr[0] "currywurst" msgstr[1] "currywursts" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -48634,8 +48676,7 @@ msgid_plural "cheapskate %s" msgstr[0] "%s miserable" msgstr[1] "%s miserables" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -48643,8 +48684,7 @@ msgid_plural "confusing %s" msgstr[0] "%s confuso" msgstr[1] "%s confusos" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -48667,9 +48707,8 @@ msgid_plural "aspics" msgstr[0] "áspic" msgstr[1] "áspics" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -48677,9 +48716,8 @@ msgid_plural "abomination %s" msgstr[0] " %s abominante" msgstr[1] "%s abominantes " -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -48687,9 +48725,8 @@ msgid_plural "amoral %s" msgstr[0] "%s amoral" msgstr[1] "%s amorales" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -48713,7 +48750,7 @@ msgid_plural "dehydrated fish" msgstr[0] "pescado deshidratado" msgstr[1] "pescado deshidratado" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -48728,7 +48765,7 @@ msgid_plural "rehydrated fish" msgstr[0] "pescado rehidratado" msgstr[1] "pescado rehidratado" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -48741,7 +48778,7 @@ msgid_plural "pickled fish" msgstr[0] "pescado al escabeche" msgstr[1] "pescado al escabeche" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -48753,7 +48790,7 @@ msgid_plural "canned fish" msgstr[0] "pescado enlatado" msgstr[1] "pescado enlatado" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -48768,7 +48805,7 @@ msgid_plural "batter fried fish" msgstr[0] "pescado salteado" msgstr[1] "pescado salteado" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "Es una porción deliciosa de pescado frito, crujiente y dorado." @@ -48801,8 +48838,7 @@ msgid_plural "lunch meats" msgstr[0] "fiambre" msgstr[1] "fiambres" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -48825,7 +48861,7 @@ msgid_plural "bologna" msgstr[0] "bolonia" msgstr[1] "bolonia" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -48833,8 +48869,7 @@ msgid_plural "brat %s" msgstr[0] "%s pibe" msgstr[1] "%s pibes" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -48842,8 +48877,7 @@ msgid_plural "Tumnis %s" msgstr[0] "%s Tumnis" msgstr[1] "%s Tumnis" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -48851,7 +48885,7 @@ msgid_plural "bleak %s" msgstr[0] "%s lúgubre" msgstr[1] "%s lúgubres" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -48886,7 +48920,7 @@ msgid_plural "SPAM" msgstr[0] "Viandada" msgstr[1] "Viandada" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -48929,24 +48963,22 @@ msgid_plural "sausage gravies" msgstr[0] "salsa espesa de salchicha" msgstr[1] "salsas espesas de salchicha" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "salsa espesa de Juannwurst" msgstr[1] "salsas espesas de Juannwurst" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "salsa espesa de kilibasa" msgstr[1] "salsas espesas de kilibasa" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -48969,7 +49001,7 @@ msgid_plural "pemmican" msgstr[0] "pemmican" msgstr[1] "pemmican" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -48977,8 +49009,7 @@ msgid_plural "prepper %s" msgstr[0] "%s sobreviviente" msgstr[1] "%s sobrevivientes" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -48986,8 +49017,7 @@ msgid_plural "Orley %s" msgstr[0] "%s Orley " msgstr[1] "%s Orley " -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -48995,7 +49025,7 @@ msgid_plural "pernicious %s" msgstr[0] " %s pernicioso" msgstr[1] "%s perniciosos" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -49012,15 +49042,14 @@ msgid_plural "hamburger helpers" msgstr[0] "refuerzo para hamburguesa" msgstr[1] "refuerzos para hamburguesa" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "refuerzo para indigente" msgstr[1] "refuerzo para indigente" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -49028,8 +49057,7 @@ msgid_plural "halfling helper" msgstr[0] "refuerzo para halfling" msgstr[1] "refuerzo para halfling" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -49065,24 +49093,22 @@ msgid_plural "chilis con carne" msgstr[0] "chile con carne" msgstr[1] "chiles con carne" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "chile con cabrón" msgstr[1] "chiles con cabrón" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "chile con Sindar" msgstr[1] "chiles con Sindar" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -49100,7 +49126,7 @@ msgid_plural "pork and beans" msgstr[0] "cerdo con porotos" msgstr[1] "cerdo con porotos" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -49115,7 +49141,7 @@ msgid_plural "canned tuna fish" msgstr[0] "atún enlatado" msgstr[1] "atún enlatado" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "¡Ahora con el 95 por ciento menos de delfines!" @@ -49126,7 +49152,7 @@ msgid_plural "canned salmon" msgstr[0] "salmón enlatado" msgstr[1] "salmón enlatado" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "¡Es una pasta de pescado rosa brillante en lata!" @@ -49148,7 +49174,7 @@ msgid_plural "pickled herring" msgstr[0] "arenque al escabeche" msgstr[1] "arenque al escabeche" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -49171,16 +49197,14 @@ msgid_plural "clam chowders" msgstr[0] "crema de almeja" msgstr[1] "cremas de almeja" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "crema de carne" msgstr[1] "cremas de carne" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -49202,15 +49226,14 @@ msgid_plural "baked beans" msgstr[0] "porotos horneados" msgstr[1] "porotos horneados" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "porco con porotos" msgstr[1] "porco con porotos" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "Porotos cocinados lentamente con carne. Sabrosos y muy rendidores." @@ -49221,15 +49244,14 @@ msgid_plural "meat fried rice" msgstr[0] "arroz frito con carne" msgstr[1] "arroz frito con carne" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "arroz frito con carne mutante" msgstr[1] "arroz frito con carne mutante" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "Delicioso arroz frito con carne. Sabroso y muy rendidor." @@ -49240,15 +49262,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "porotos con arroz deluxe" msgstr[1] "porotos con arroz deluxe" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "porotos con arroz \"deluxe\"" msgstr[1] "porotos con arroz \"deluxe\"" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -49263,22 +49285,21 @@ msgid_plural "meat pies" msgstr[0] "tarta de carne" msgstr[1] "tartas de carne" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "tarta de boludo" msgstr[1] "tarta de boludo" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "tarta de animal parlante" msgstr[1] "tarta de animal parlante" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -49297,23 +49318,21 @@ msgid_plural "meat pizzas" msgstr[0] "pizza de salame" msgstr[1] "pizzas de salame" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "pizza de impostor" msgstr[1] "pizza de impostor" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "pizza de protesta" msgstr[1] "pizza de protesta" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -49347,31 +49366,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "huevos revueltos deluxe" msgstr[1] "huevos revueltos deluxe" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "lumbreras revueltas deluxe" msgstr[1] "lumbreras revueltas deluxe" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "huevos revueltos de birdman" msgstr[1] "huevos revueltos de birdman" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "huevos revueltos \"deluxe\"" msgstr[1] "huevos revueltos \"deluxe\"" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -49386,15 +49404,14 @@ msgid_plural "canned meats" msgstr[0] "carne enlatada" msgstr[1] "carnes enlatadas" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "feta de soylent" msgstr[1] "feta de soylent" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -49416,15 +49433,14 @@ msgid_plural "salted meat slices" msgstr[0] "feta de carne salada" msgstr[1] "fetas de carne saladas" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "feta salada de papanatas" msgstr[1] "feta salada de papanatas" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -49445,15 +49461,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "espagueti a la boloñesa" msgstr[1] "espagueti a la boloñesa" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "espagueti a la sinvergüenza" msgstr[1] "espagueti a la sinvergüenza" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -49461,8 +49476,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "espagueti a la parlante" msgstr[1] "espagueti a la parlante" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -49470,7 +49484,7 @@ msgid_plural "gnarly %s" msgstr[0] "nudoso %s" msgstr[1] "nudosos %s" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "Espagueti recubierto con abundante tuco. ¡Rico!" @@ -49481,7 +49495,7 @@ msgid_plural "lasagnes" msgstr[0] "lasaña" msgstr[1] "lasañas" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -49489,8 +49503,7 @@ msgid_plural "Luigi %s" msgstr[0] "Luigi %s" msgstr[1] "Luigi %s" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -49498,7 +49511,7 @@ msgid_plural "Lab %s" msgstr[0] "%s de laboratorio" msgstr[1] "%s de laboratorio" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -49521,7 +49534,7 @@ msgid_plural "fried SPAM" msgstr[0] "Viandada frita" msgstr[1] "Viandada frita" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "Es carne en lata. Así frita, esta Viandada está bastante buena." @@ -49532,8 +49545,7 @@ msgid_plural "cheeseburgers" msgstr[0] "hamburguesa con queso" msgstr[1] "hamburguesas con queso" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -49541,7 +49553,7 @@ msgid_plural "chump %s" msgstr[0] "tonto %s" msgstr[1] "tontos %s" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -49550,8 +49562,7 @@ msgid_plural "elf %s" msgstr[0] "%s élfico" msgstr[1] "%s élficos" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -49589,23 +49600,21 @@ msgid_plural "hamburgers" msgstr[0] "hamburguesa" msgstr[1] "hamburguesas" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "juanburguesa" msgstr[1] "juanburguesa" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "Moreauburguesa" msgstr[1] "Moreauburguesa" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -49624,23 +49633,21 @@ msgid_plural "sloppy joes" msgstr[0] "sloppy joe" msgstr[1] "sloppy joes" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "mánguche" msgstr[1] "mánguches" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "manfriendwich" msgstr[1] "manfriendwiches" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -49663,7 +49670,7 @@ msgid_plural "tacos" msgstr[0] "taco" msgstr[1] "tacos" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -49671,8 +49678,7 @@ msgid_plural "tio %s" msgstr[0] "tío %s" msgstr[1] "tíos %s" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -49680,7 +49686,7 @@ msgid_plural "talking %s" msgstr[0] "%s parlante" msgstr[1] " %s parlantes" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -49703,15 +49709,14 @@ msgid_plural "pickled meats" msgstr[0] "carne al escabeche" msgstr[1] "carnes al escabeche" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "punk al escabeche" msgstr[1] "punk al escabeche" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -49731,10 +49736,8 @@ msgid_plural "dehydrated meats" msgstr[0] "carne deshidratada" msgstr[1] "carnes deshidratadas" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -49742,12 +49745,11 @@ msgid_plural "%s, human" msgstr[0] "%s, humano" msgstr[1] "%s, humanos" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -49783,9 +49785,8 @@ msgid_plural "haggises" msgstr[0] "haggis" msgstr[1] "haggises" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -49812,7 +49813,7 @@ msgid_plural "fish makizushi" msgstr[0] "makizushi de pescado" msgstr[1] "makizushi de pescado" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -49827,8 +49828,7 @@ msgid_plural "meat temaki" msgstr[0] "temaki de carne" msgstr[1] "temaki de carne" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -49836,7 +49836,7 @@ msgid_plural "troubling %s" msgstr[0] "inquietante %s" msgstr[1] "inquietantes %s" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -49851,7 +49851,7 @@ msgid_plural "sashimi" msgstr[0] "sashimi" msgstr[1] "sashimi" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "Deliciosas rodajas finas de pescado y sabrosos vegetales." @@ -49877,7 +49877,7 @@ msgid_plural "pelmenis" msgstr[0] "pelmeni" msgstr[1] "pelmenis" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -49900,8 +49900,7 @@ msgid_plural "homemade burritos" msgstr[0] "burrito casero" msgstr[1] "burritos caseros" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -49925,15 +49924,14 @@ msgid_plural "raw meatballs" msgstr[0] "albóndiga cruda" msgstr[1] "albóndigas crudas" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "hombreóndiga cruda" msgstr[1] "hombreóndigas crudas" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -49952,15 +49950,14 @@ msgid_plural "meatballs" msgstr[0] "albóndiga" msgstr[1] "albóndigas" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "hombreóndiga" msgstr[1] "hombreóndigas" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -50003,12 +50000,12 @@ msgid_plural "prescription stimulant" msgstr[0] "estimulante prescripto" msgstr[1] "estimulante prescripto" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "Te tomás unos estimulantes." -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -50064,7 +50061,7 @@ msgid_plural "antibiotics" msgstr[0] "antibióticos" msgstr[1] "antibióticos" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -50096,7 +50093,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "droga antiparasitaria" msgstr[1] "droga antiparasitaria" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -50181,7 +50178,7 @@ msgid_plural "antiseptic powder" msgstr[0] "polvo antiséptico" msgstr[1] "polvo antiséptico" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -50244,7 +50241,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "peróxido de hidrógeno" msgstr[1] "peróxido de hidrógeno" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -50304,12 +50301,12 @@ msgid_plural "codeine" msgstr[0] "codeína" msgstr[1] "codeína" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "Te tomás una codeína." -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -50326,7 +50323,7 @@ msgid_plural "cocaine" msgstr[0] "cocaína" msgstr[1] "cocaína" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -50377,7 +50374,7 @@ msgid_plural "cotton balls" msgstr[0] "bolitas de algodón" msgstr[1] "bolitas de algodón" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -50393,12 +50390,12 @@ msgid_plural "crack" msgstr[0] "crack" msgstr[1] "crack" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "Te fumás tus piedras de crack. Tu madre estaría orgullosa." -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -50413,7 +50410,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "jarabe para la tos que no causa sueño" msgstr[1] "jarabe para la tos que no causa sueño" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -50430,7 +50427,7 @@ msgid_plural "antiseptic" msgstr[0] "antiséptico" msgstr[1] "antiséptico" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -50457,7 +50454,7 @@ msgid_plural "prescription sedative" msgstr[0] "sedante prescripto" msgstr[1] "sedante prescripto" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -50472,12 +50469,12 @@ msgid_plural "high quality shatter" msgstr[0] "THC cristalino de alta calidad" msgstr[1] "THC cristalino de alta calidad" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "Te tomás un toque. ¡Guau, son unos terpenos mortales!" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -50500,12 +50497,12 @@ msgid_plural "high quality wax" msgstr[0] "cera THC de alta calidad" msgstr[1] "cera THC de alta calidad" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "Te tomás un toque de la cera. *tos tos* ¡muy buena!" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -50525,12 +50522,12 @@ msgid_plural "high quality crude oil" msgstr[0] "aceite de THC de alta calidad" msgstr[1] "aceite de THC de alta calidad" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "Fumás unos dabs medio malos. No fue una buena idea." -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -50548,16 +50545,14 @@ msgid_plural "low quality crude oil" msgstr[0] "aceite de THC de baja calidad" msgstr[1] "aceite de THC de baja calidad" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "Fumás unos dabs muy malos. No fue una buena idea." -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -50575,7 +50570,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "aceite de THC de baja calidad (etanol)" msgstr[1] "aceite de THC de baja calidad (etanol)" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -50592,7 +50587,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "aceite de THC de alta calidad (etanol)" msgstr[1] "aceite de THC de alta calidad (etanol)" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -50609,7 +50604,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "aceite de THC filtrado de baja calidad (etanol)" msgstr[1] "aceite de THC filtrado de baja calidad (etanol)" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -50626,7 +50621,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "aceite de THC filtrado de alta calidad (etanol)" msgstr[1] "aceite de THC filtrado de alta calidad (etanol)" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -50643,7 +50638,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "aceite de THC filtrado de baja calidad" msgstr[1] "aceite de THC filtrado de baja calidad" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -50662,7 +50657,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "aceite de THC filtrado de alta calidad" msgstr[1] "aceite de THC filtrado de alta calidad" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -50681,7 +50676,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "THC destilado de alta calidad (cabeza)" msgstr[1] "THC destilado de alta calidad (cabeza)" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -50698,7 +50693,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "THC destilado de alta calidad (cola)" msgstr[1] "THC destilado de alta calidad (cola)" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -50715,12 +50710,12 @@ msgid_plural "high quality distillate" msgstr[0] "THC destilado de alta calidad" msgstr[1] "THC destilado de alta calidad" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "Te tomás un toque del destilado. Muuuuuuy suave…" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -50818,7 +50813,7 @@ msgid_plural "chewing gum" msgstr[0] "chicle" msgstr[1] "chicle" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "Es chicle sin azúcar de un rosa brillante." @@ -50846,13 +50841,13 @@ msgid_plural "heroin" msgstr[0] "heroína" msgstr[1] "heroína" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "Te inyectaste." -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -50939,7 +50934,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "metanfetamina de baja calidad" msgstr[1] "metanfetamina de baja calidad" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -50956,7 +50951,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "metanfetamina de alta calidad" msgstr[1] "metanfetamina de alta calidad" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -51019,7 +51014,7 @@ msgid_plural "cough syrup" msgstr[0] "jarabe para la tos" msgstr[1] "jarabe para la tos" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -51054,7 +51049,7 @@ msgid_plural "sleeping pill" msgstr[0] "pastilla para dormir" msgstr[1] "pastilla para dormir" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -51106,7 +51101,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "jarabe de amapola para la tos" msgstr[1] "jarabe de amapola para la tos" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "Jarabe para la tos hecho de amapola mutada. Te va a dar sueño." @@ -51117,8 +51112,7 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "antiveneno profiláctico inyectable" msgstr[1] "antiveneno profiláctico inyectable" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " @@ -51127,7 +51121,7 @@ msgstr "" "Te inyectás un vial de antiveneno profiláctico en el brazo. Te sentís un " "poco mareado." -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -51146,7 +51140,7 @@ msgid_plural "antidepressant" msgstr[0] "antidepresivo" msgstr[1] "antidepresivo" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -51184,7 +51178,7 @@ msgid_plural "hemostatic powder" msgstr[0] "polvo hemostático" msgstr[1] "polvo hemostático" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -51215,7 +51209,7 @@ msgid_plural "antipsychotic" msgstr[0] "antipsicótico" msgstr[1] "antipsicótico" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -51523,12 +51517,12 @@ msgid_plural "marijuana" msgstr[0] "marihuana" msgstr[1] "marihuana" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "Fumás un poco de marihuana. ¡Está buena, che!" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -51545,7 +51539,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "sedante de acción rápida" msgstr[1] "sedante de acción rápida" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -51577,7 +51571,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "algodón empapado de antiséptico" msgstr[1] "algodón empapado de antiséptico" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -51592,7 +51586,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "antibióticos de espectro reducido" msgstr[1] "antibióticos de espectro reducido" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -51672,7 +51666,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "antibióticos de amplio espectro" msgstr[1] "antibióticos de amplio espectro" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -51691,7 +51685,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "medicación tópica cocaína" msgstr[1] "medicación tópica cocaína" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -52258,7 +52252,7 @@ msgid_plural "alpha serum" msgstr[0] "suero alfa" msgstr[1] "suero alfa" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -52549,12 +52543,11 @@ msgstr[1] "sueros de batracio" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" "Es un mutágeno superconcentrado que parece agua de un charco… ¿la sombra se " -"están moviend?. Necesitás una jeringa para inyectarlo… si realmente querés " +"están moviendo? Necesitás una jeringa para inyectarlo… si realmente querés " "hacerlo." #: lang/json/COMESTIBLE_from_json.py @@ -52629,7 +52622,7 @@ msgid_plural "alpha mutagen" msgstr[0] "mutágeno alfa" msgstr[1] "mutágeno alfa" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -52748,7 +52741,8 @@ msgstr[1] "mutágenos de batracio" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" "Es un mutágeno sombrío que parece como si estuviera lleno de pequeños " "renacuajos." @@ -52911,7 +52905,7 @@ msgid_plural "pine nuts" msgstr[0] "piñones" msgstr[1] "piñones" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "Es un puñado de frutos secos sabrosos y crujientes de una piña." @@ -52922,7 +52916,7 @@ msgid_plural "junipers" msgstr[0] "enebros" msgstr[1] "enebros" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -52937,7 +52931,7 @@ msgid_plural "shelled pistachios" msgstr[0] "pistachos pelados" msgstr[1] "pistachos pelados" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -52949,7 +52943,7 @@ msgid_plural "roasted pistachios" msgstr[0] "pistachos tostados" msgstr[1] "pistachos tostados" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "Es un puñado de frutos secos tostados del árbol del pistacho." @@ -52960,7 +52954,7 @@ msgid_plural "shelled almonds" msgstr[0] "almendras peladas" msgstr[1] "almendras peladas" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "Es un puñado de frutos secos del almendro, sin cáscara." @@ -52971,7 +52965,7 @@ msgid_plural "almond pulp" msgstr[0] "pulpa de almendra" msgstr[1] "pulpa de almendra" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -52985,7 +52979,7 @@ msgid_plural "roasted almonds" msgstr[0] "almendras tostadas" msgstr[1] "almendras tostadas" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "Es un puñado de frutos secos tostados del almendro." @@ -52996,7 +52990,7 @@ msgid_plural "cashews" msgstr[0] "castañas de cajú" msgstr[1] "castañas de cajú" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "Es un puñado de castañas de cajú saladas." @@ -53007,7 +53001,7 @@ msgid_plural "shelled pecans" msgstr[0] "nueces pecán peladas" msgstr[1] "nueces pecán peladas" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -53022,7 +53016,7 @@ msgid_plural "roasted pecans" msgstr[0] "nueces pecán tostadas" msgstr[1] "nueces pecán tostadas" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "Es un puñado de frutos secos tostados del árbol del pacano." @@ -53033,7 +53027,7 @@ msgid_plural "shelled peanuts" msgstr[0] "maníes pelados" msgstr[1] "maníes pelados" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "Son unos maníes salados sin cáscara." @@ -53044,7 +53038,7 @@ msgid_plural "beech nuts" msgstr[0] "hayucos" msgstr[1] "hayucos" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "Es un puñado de frutos secos y puntiagudos del haya." @@ -53055,7 +53049,7 @@ msgid_plural "shelled walnuts" msgstr[0] "nueces peladas" msgstr[1] "nueces peladas" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -53068,7 +53062,7 @@ msgid_plural "roasted walnuts" msgstr[0] "nueces tostadas" msgstr[1] "nueces tostadas" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "Es un puñado de frutos secos tostados del nogal." @@ -53079,7 +53073,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "castañas peladas" msgstr[1] "castañas peladas" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -53093,7 +53087,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "castañas tostadas" msgstr[1] "castañas tostadas" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "Es un puñado de frutos secos tostados del castaño." @@ -53104,7 +53098,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "avellanas peladas" msgstr[1] "avellanas peladas" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -53118,7 +53112,7 @@ msgid_plural "roasted edamame" msgstr[0] "edamame tostado" msgstr[1] "edamame tostado" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "Es edamame tostado, algo para picar saludable y sustancioso." @@ -53129,7 +53123,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "porotos de soja tostados" msgstr[1] "porotos de soja tostados" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "Son porotos de soja tostados." @@ -53140,7 +53134,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "avellanas tostadas" msgstr[1] "avellanas tostadas" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "Es un puñado de frutos secos tostados del avellano." @@ -53151,7 +53145,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "nueces jicoria peladas" msgstr[1] "nueces jicoria peladas" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -53166,7 +53160,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "nueces jicoria tostadas" msgstr[1] "nueces jicoria tostadas" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "Es un puñado de nueces tostadas de un nogal americano o jicoria." @@ -53226,7 +53220,7 @@ msgid_plural "acorns" msgstr[0] "bellotas" msgstr[1] "bellotas" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -53241,7 +53235,7 @@ msgid_plural "roasted acorns" msgstr[0] "bellotas tostadas" msgstr[1] "bellotas tostadas" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "Es un puñado de frutos secos tostados del roble." @@ -53252,7 +53246,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "comida de bellotas cocinadas" msgstr[1] "comida de bellotas cocinadas" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -53267,7 +53261,7 @@ msgid_plural "foie gras" msgstr[0] "foie gras" msgstr[1] "foie gras" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -53280,7 +53274,7 @@ msgid_plural "liver & onions" msgstr[0] "hígado con cebollas" msgstr[1] "hígado con cebollas" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "Es la clásica manera de hacer hígado." @@ -53339,7 +53333,7 @@ msgid_plural "leverpostej" msgstr[0] "leverpostej" msgstr[1] "leverpostej" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -53428,8 +53422,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "sausage casing" msgid_plural "sausage casings" -msgstr[0] "envoltura de salchicha" -msgstr[1] "envolturas de salchicha" +msgstr[0] "envoltura para salchicha" +msgstr[1] "envolturas para salchicha" #. ~ Description for sausage casing #: lang/json/COMESTIBLE_from_json.py @@ -53443,8 +53437,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "artifical sausage casing" msgid_plural "artifical sausage casings" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "envoltura artificial para salchicha" +msgstr[1] "envolturas artificiales para salchicha" #. ~ Description for artifical sausage casing #: lang/json/COMESTIBLE_from_json.py @@ -53452,6 +53446,8 @@ msgid "" "Sausage casings made from plastic bags. Ready to be used for forming meat " "products." msgstr "" +"Son la envoltura de las salchichas, hecha con una bolsa plástica. Está lista" +" para hacer productos cárnicos." #: lang/json/COMESTIBLE_from_json.py msgid "homemade hot dog" @@ -53572,7 +53568,7 @@ msgid_plural "marloss gelatin" msgstr[0] "gelatina de marloss" msgstr[1] "gelatina de marloss" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -53606,7 +53602,7 @@ msgid_plural "yeast" msgstr[0] "levadura" msgstr[1] "levadura" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -53620,7 +53616,7 @@ msgid_plural "bone meal" msgstr[0] "harina de hueso" msgstr[1] "harina de hueso" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -53633,7 +53629,7 @@ msgid_plural "powdered gelatin" msgstr[0] "gelatina en polvo" msgstr[1] "gelatina en polvo" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -53647,7 +53643,7 @@ msgid_plural "fresh gelatin" msgstr[0] "gelatina fresca" msgstr[1] "gelatina fresca" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "Fresco" @@ -53658,7 +53654,7 @@ msgid_plural "tainted bone meal" msgstr[0] "harina de hueso contaminado" msgstr[1] "harina de hueso contaminado" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "Es harina de huesos grisácea hecha con huesos podridos." @@ -53669,7 +53665,7 @@ msgid_plural "chitin powder" msgstr[0] "polvo de quitina" msgstr[1] "polvo de quitina" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -53720,7 +53716,7 @@ msgid_plural "dried beans" msgstr[0] "porotos deshidratados" msgstr[1] "porotos deshidratados" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -53735,7 +53731,7 @@ msgid_plural "cooked beans" msgstr[0] "porotos cocinados" msgstr[1] "porotos cocinados" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "Es una porción abundante de porotos norteños cocinados." @@ -53746,8 +53742,8 @@ msgid_plural "tofu" msgstr[0] "tofu" msgstr[1] "tofu" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -53769,7 +53765,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "tofu deshidratado" msgstr[1] "tofu deshidratado" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "Es tofu deshidratado, sellado y muy firme para que dure mucho tiempo." @@ -53780,7 +53776,7 @@ msgid_plural "soybeans" msgstr[0] "porotos de soja" msgstr[1] "porotos de soja" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -53810,7 +53806,7 @@ msgid_plural "dried lentils" msgstr[0] "lentejas deshidratadas" msgstr[1] "lentejas deshidratadas" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -53824,7 +53820,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "deliciosa comida™ de Foodplace" msgstr[1] "deliciosa comida™ de Foodplace" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -53840,7 +53836,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "snack™ apropiado de Foodplace" msgstr[1] "snack™ apropiado de Foodplace" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "Cosacomida verdadera, ¡ahora en tamaño de bolsillo!" @@ -53851,7 +53847,7 @@ msgid_plural "cooked lentils" msgstr[0] "lentejas cocinadas" msgstr[1] "lentejas cocinadas" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "Son unas deliciosas lentejas cocinadas. Humildes pero muy nutritivas." @@ -53862,7 +53858,7 @@ msgid_plural "coffee powder" msgstr[0] "café molido" msgstr[1] "café molido" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -53877,7 +53873,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "café Kentucky molido" msgstr[1] "café Kentucky molido" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -53892,7 +53888,7 @@ msgid_plural "candied honey" msgstr[0] "miel cristalizada" msgstr[1] "miel cristalizada" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -53937,7 +53933,7 @@ msgid_plural "cattle fodder" msgstr[0] "alimento para ganado" msgstr[1] "alimento para ganado" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -53952,7 +53948,7 @@ msgid_plural "bird food" msgstr[0] "alimento para pájaros" msgstr[1] "alimento para pájaros" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -53967,7 +53963,7 @@ msgid_plural "wet dog food" msgstr[0] "alimento húmedo para perros" msgstr[1] "alimento húmedo para perros" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -53982,7 +53978,7 @@ msgid_plural "dry dog food" msgstr[0] "alimento seco para perros" msgstr[1] "alimento seco para perros" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -53997,7 +53993,7 @@ msgid_plural "wet cat food" msgstr[0] "alimento húmedo para gatos" msgstr[1] "alimento húmedo para gatos" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -54012,7 +54008,7 @@ msgid_plural "dry cat food" msgstr[0] "alimento seco para gatos" msgstr[1] "alimento seco para gatos" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -54157,7 +54153,7 @@ msgid_plural "instant coffee mix" msgstr[0] "café instantáneo" msgstr[1] "café instantáneo" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -54203,15 +54199,14 @@ msgid_plural "protein drinks" msgstr[0] "bebida de proteína" msgstr[1] "bebidas de proteína" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "bebida de soylent verde" msgstr[1] "bebida de soylent verde" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -54219,14 +54214,11 @@ msgid_plural "sapient green drink" msgstr[0] "bebida de sapiente verde" msgstr[1] "bebida de sapiente verde" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -54249,15 +54241,14 @@ msgid_plural "protein powder" msgstr[0] "proteína en polvo" msgstr[1] "proteína en polvo" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "soylent verde en polvo" msgstr[1] "soylent verde en polvo" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -54265,7 +54256,7 @@ msgid_plural "sapient green powder" msgstr[0] "sapiente verde en polvo" msgstr[1] "sapiente verde en polvo" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -54301,15 +54292,14 @@ msgid_plural "protein shakes" msgstr[0] "licuado de proteína" msgstr[1] "licuados de proteína" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "licuado de soylent verde" msgstr[1] "licuado de soylent verde" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -54332,7 +54322,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "licuado de proteína fortificado" msgstr[1] "licuados de proteína fortificados" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -54340,7 +54330,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "licuado de soylent verde fortificado" msgstr[1] "licuado de soylent verde fortificado" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -54411,7 +54401,7 @@ msgid_plural "blueberries" msgstr[0] "moras azules" msgstr[1] "moras azules" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "Son azules, pero eso no significa que sean de la realeza." @@ -54422,7 +54412,7 @@ msgid_plural "strawberries" msgstr[0] "frutillas" msgstr[1] "frutillas" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "Es una baya sabrosa y jugosa. A menudo crece silvestre en los campos." @@ -54433,7 +54423,7 @@ msgid_plural "cranberries" msgstr[0] "arándanos" msgstr[1] "arándanos" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "Son arándanos rojos y agrios. Buenos para la salud." @@ -54444,7 +54434,7 @@ msgid_plural "raspberries" msgstr[0] "frambuesas" msgstr[1] "frambuesas" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "Es una frambuesa roja y dulce." @@ -54455,7 +54445,7 @@ msgid_plural "huckleberries" msgstr[0] "arándanos agrios" msgstr[1] "arándanos agrios" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "Son arándanos agrios, a menudo confundidos con las moras azules." @@ -54466,7 +54456,7 @@ msgid_plural "mulberries" msgstr[0] "moras" msgstr[1] "moras" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -54481,7 +54471,7 @@ msgid_plural "elderberries" msgstr[0] "bayas del saúco" msgstr[1] "bayas del saúco" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -54494,7 +54484,7 @@ msgid_plural "rose hips" msgstr[0] "escaramujos" msgstr[1] "escaramujos" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "Es el fruto de una flor de rosa polinizada." @@ -54542,7 +54532,7 @@ msgid_plural "cherries" msgstr[0] "cerezas" msgstr[1] "cerezas" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "Es una fruta dulce y roja que crece en árboles." @@ -54567,7 +54557,7 @@ msgid_plural "grapes" msgstr[0] "uvas" msgstr[1] "uvas" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "Es un racimo de jugosas uvas." @@ -54633,7 +54623,7 @@ msgid_plural "blackberries" msgstr[0] "zarzamoras" msgstr[1] "zarzamoras" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "Es un primo oscuro de la frambuesa." @@ -54693,7 +54683,7 @@ msgid_plural "apricots" msgstr[0] "damascos" msgstr[1] "damascos" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "Es una fruta de cáscara suave, parecida al durazno." @@ -54736,7 +54726,7 @@ msgid_plural "bee balm" msgstr[0] "monarda" msgstr[1] "monarda" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -54750,7 +54740,7 @@ msgid_plural "broccoli" msgstr[0] "brócoli" msgstr[1] "brócoli" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "Es un poco duro, pero bastante delicioso." @@ -54761,7 +54751,7 @@ msgid_plural "buckwheat" msgstr[0] "trigo sarraceno" msgstr[1] "trigo sarraceno" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -54787,7 +54777,7 @@ msgid_plural "spinach" msgstr[0] "espinaca" msgstr[1] "espinaca" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "Son varias hojas de espinaca." @@ -54841,7 +54831,7 @@ msgid_plural "celery" msgstr[0] "apio" msgstr[1] "apio" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "No es ni sabroso ni nutritivo, pero va bien en las ensaladas." @@ -54867,7 +54857,7 @@ msgid_plural "corn kernels" msgstr[0] "granos de choclo" msgstr[1] "granos de choclo" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "Deliciosas semillas doradas." @@ -54878,7 +54868,7 @@ msgid_plural "empty corn cob" msgstr[0] "mazorca de maíz vacía" msgstr[1] "mazorca de maíz vacía" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -54946,7 +54936,7 @@ msgid_plural "salsify" msgstr[0] "salsifí" msgstr[1] "salsifí" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -54962,7 +54952,7 @@ msgid_plural "chicory" msgstr[0] "achicoria" msgstr[1] "achicoria" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -55099,7 +55089,7 @@ msgid_plural "raw popcorn" msgstr[0] "maíz pisingallo" msgstr[1] "maíces pisingallo" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -55142,7 +55132,7 @@ msgid_plural "horseradish greens" msgstr[0] "hojas de rábano" msgstr[1] "hojas de rábano" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -55157,7 +55147,7 @@ msgid_plural "dandelions" msgstr[0] "diente de león" msgstr[1] "diente de león" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -55172,7 +55162,7 @@ msgid_plural "burdocks" msgstr[0] "bardana" msgstr[1] "bardana" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -55286,7 +55276,7 @@ msgid_plural "wild vegetables" msgstr[0] "verduras silvestres" msgstr[1] "verduras silvestres" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -55325,7 +55315,7 @@ msgid_plural "raw beans" msgstr[0] "porotos crudos" msgstr[1] "porotos crudos" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -55340,7 +55330,7 @@ msgid_plural "raw lentils" msgstr[0] "lentejas crudas" msgstr[1] "lentejas crudas" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "Son lentejas crudas, sin cocinar. Deberían ser cocinadas." @@ -55351,7 +55341,7 @@ msgid_plural "fiddleheads" msgstr[0] "brotes de helecho" msgstr[1] "brotes de helecho" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -55393,8 +55383,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "sánguche deluxe" msgstr[1] "sánguches deluxe" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -55410,6 +55399,30 @@ msgstr "" "Es un sánguche de carne, verduras, queso y condimentos. ¡Sabroso y " "nutritivo!" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "sánguche reuben" +msgstr[1] "sánguches reuben" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "sánguche \"rubén\"" +msgstr[1] "sánguches \"rubén\"" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" +"Es un clásico de antes del Cataclismo hecho con sustitutos significativos. " +"Los componentes clave son la salsa especial y el chucrut, con pan, carne y " +"queso frito en una sartén." + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -55473,7 +55486,7 @@ msgid_plural "fairy bread" msgstr[0] "pan de hadas" msgstr[1] "panes de hadas" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -55526,26 +55539,23 @@ msgid_plural "meat sandwiches" msgstr[0] "sánguche de carne" msgstr[1] "sánguches de carne" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "sánguche de vago" msgstr[1] "sánguches de vago" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "sánguche de sátiro" msgstr[1] "sánguches de sátiro" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -55671,7 +55681,7 @@ msgid_plural "mushroom spores" msgstr[0] "esporas de hongo" msgstr[1] "esporas de hongo" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "Son unas esporas de hongo." @@ -55682,7 +55692,7 @@ msgid_plural "hop rhizomes" msgstr[0] "rizomas de lúpulo" msgstr[1] "rizomas de lúpulo" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "Son raíces de una planta de lúpulo, para poder cultivar más." @@ -55697,7 +55707,7 @@ msgid_plural "blackberry seeds" msgstr[0] "semillas de zarzamora" msgstr[1] "semillas de zarzamora" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "Son unas semillas de zarzamora." @@ -55712,7 +55722,7 @@ msgid_plural "blueberry seeds" msgstr[0] "semillas de mora azul" msgstr[1] "semillas de mora azul" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "Son unas semillas de mora azul." @@ -55727,7 +55737,7 @@ msgid_plural "cranberry seeds" msgstr[0] "semillas de arándano" msgstr[1] "semillas de arándano" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "Son unas semillas de arándano." @@ -55742,7 +55752,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "semillas de arándano agrio" msgstr[1] "semillas de arándano agrio" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "Son unas semillas de arándano agrio." @@ -55757,7 +55767,7 @@ msgid_plural "mulberry seeds" msgstr[0] "semillas de mora" msgstr[1] "semillas de mora" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "Son unas semillas de mora." @@ -55772,7 +55782,7 @@ msgid_plural "elderberry seeds" msgstr[0] "semillas de bayas del saúco" msgstr[1] "semillas de bayas del saúco" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "Son unas semillas de bayas del saúco." @@ -55787,7 +55797,7 @@ msgid_plural "raspberry seeds" msgstr[0] "semillas de frambuesa" msgstr[1] "semillas de frambuesa" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "Son unas semillas de frambuesa." @@ -55802,7 +55812,7 @@ msgid_plural "strawberry seeds" msgstr[0] "semillas de frutilla" msgstr[1] "semillas de frutilla" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "Son unas semillas de frutilla." @@ -55817,7 +55827,7 @@ msgid_plural "grape seeds" msgstr[0] "semillas de uva" msgstr[1] "semillas de uva" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "Son unas semillas de uva." @@ -55832,7 +55842,7 @@ msgid_plural "rose seeds" msgstr[0] "semillas de uva" msgstr[1] "semillas de rosa" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "Son unas semillas de rosa." @@ -55847,7 +55857,7 @@ msgid_plural "tobacco seeds" msgstr[0] "semilla de tabaco" msgstr[1] "semillas de tabaco" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "Son unas semillas de tabaco." @@ -55862,7 +55872,7 @@ msgid_plural "barley seeds" msgstr[0] "semillas de cebada" msgstr[1] "semillas de cebada" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "Son unas semillas de cebada." @@ -55873,7 +55883,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "semillas de remolacha azucarera" msgstr[1] "semillas de remolacha azucarera" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "Son unas semillas de remolacha azucarera." @@ -55884,7 +55894,7 @@ msgid_plural "lettuce seeds" msgstr[0] "semillas de lechuga" msgstr[1] "semillas de lechuga" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "Son unas semillas de lechuga." @@ -55895,7 +55905,7 @@ msgid_plural "cabbage seeds" msgstr[0] "semillas de repollo" msgstr[1] "semillas de repollo" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "Son unas semillas de repollo blanco." @@ -55906,7 +55916,7 @@ msgid_plural "tomato seeds" msgstr[0] "semillas de tomate" msgstr[1] "semillas de tomate" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "Son unas semillas de tomate." @@ -55917,7 +55927,7 @@ msgid_plural "cotton seeds" msgstr[0] "semillas de algodón" msgstr[1] "semillas de algodón" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -55934,7 +55944,7 @@ msgid_plural "broccoli seeds" msgstr[0] "semillas de brócoli" msgstr[1] "semillas de brócoli" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "Son unas semillas de brócoli." @@ -55945,7 +55955,7 @@ msgid_plural "zucchini seeds" msgstr[0] "semillas de zucchini" msgstr[1] "semillas de zucchini" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "Son unas semillas de zucchini." @@ -55956,7 +55966,7 @@ msgid_plural "onion seeds" msgstr[0] "semillas de cebolla" msgstr[1] "semillas de cebolla" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "Son unas semillas de cebolla." @@ -55967,7 +55977,7 @@ msgid_plural "garlic seeds" msgstr[0] "semillas de ajo" msgstr[1] "semillas de ajo" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "Son unas semillas de ajo." @@ -55982,7 +55992,7 @@ msgid_plural "cattail seeds" msgstr[0] "semillas de junco" msgstr[1] "semillas de junco" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "Son unas semillas de junco." @@ -55997,7 +56007,7 @@ msgid_plural "dahlia seeds" msgstr[0] "semillas de dalia" msgstr[1] "semillas de dalia" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "Son unas semillas de dalia." @@ -56012,7 +56022,7 @@ msgid_plural "salsify seeds" msgstr[0] "semillas de salsifí" msgstr[1] "semillas de salsifí" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "Son unas semillas de salsifí." @@ -56023,7 +56033,7 @@ msgid_plural "chicory seeds" msgstr[0] "semillas de achicoria" msgstr[1] "semillas de achicoria" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "Son unas semillas de achicoria." @@ -56034,7 +56044,7 @@ msgid_plural "wild root seeds" msgstr[0] "semillas de raíces silvestres" msgstr[1] "semillas de raíces silvestres" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "Son unas semillas de una flor blanca." @@ -56045,7 +56055,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "semillas de planta decorativa" msgstr[1] "semillas de planta decorativa" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -56064,7 +56074,7 @@ msgid_plural "cactus seeds" msgstr[0] "semillas de cactus" msgstr[1] "semillas de cactus" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "Son unas semillas de cactus." @@ -56091,7 +56101,7 @@ msgid_plural "carrot seeds" msgstr[0] "semillas de zanahoria" msgstr[1] "semillas de zanahoria" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "Son unas semillas de zanahoria." @@ -56102,7 +56112,7 @@ msgid_plural "corn seeds" msgstr[0] "semillas de maíz" msgstr[1] "semillas de maíz" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "Son unas semillas de maíz." @@ -56117,7 +56127,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "semillas de ají" msgstr[1] "semillas de ají" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "Son unas semillas de ají." @@ -56128,7 +56138,7 @@ msgid_plural "cucumber seeds" msgstr[0] "semillas de pepino" msgstr[1] "semillas de pepino" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "Son unas semillas de pepino." @@ -56156,7 +56166,7 @@ msgid_plural "cannabis seeds" msgstr[0] "semillas de cannabis" msgstr[1] "semillas de cannabis" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -56192,7 +56202,7 @@ msgid_plural "bean seeds" msgstr[0] "porotos semillas" msgstr[1] "porotos semillas" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "Son porotos crudos, sin cocinar, preparados para plantar." @@ -56207,7 +56217,7 @@ msgid_plural "soybean seeds" msgstr[0] "porotos semilla de soja" msgstr[1] "porotos semilla de soja" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "Son unos porotos semilla de soja." @@ -56216,7 +56226,7 @@ msgstr "Son unos porotos semilla de soja." msgid "soybean" msgstr "soja" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "Son lentejas crudas, sin cocinar, listas para plantar." @@ -56231,7 +56241,7 @@ msgid_plural "thyme seeds" msgstr[0] "semillas de tomillo" msgstr[1] "semillas de tomillo" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "Son unas semillas de tomillo." @@ -56248,7 +56258,7 @@ msgid_plural "canola seeds" msgstr[0] "semillas de canola" msgstr[1] "semillas de canola" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "Son unas semillas de canola. Las podés exprimir para hacer aceite." @@ -56259,7 +56269,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "semillas de calabaza" msgstr[1] "semillas de calabaza" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "Son unas semillas crudas de calabaza. Pueden ser fritas o comidas." @@ -56270,7 +56280,7 @@ msgid_plural "sunflower seeds" msgstr[0] "semillas de girasol" msgstr[1] "semillas de girasol" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -56290,7 +56300,7 @@ msgid_plural "dogbane seeds" msgstr[0] "semillas de apocino" msgstr[1] "semillas de apocino" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "Son unas semillas de apocino." @@ -56301,7 +56311,7 @@ msgid_plural "bee balm seeds" msgstr[0] "semillas de monarda" msgstr[1] "semillas de monarda" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "Son unas semillas de monarda." @@ -56312,7 +56322,7 @@ msgid_plural "mugwort seeds" msgstr[0] "semillas de abrótano" msgstr[1] "semillas de abrótano" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "Son unas semillas de abrótano." @@ -56323,7 +56333,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "semillas de trigo sarraceno" msgstr[1] "semillas de trigo sarraceno" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "Son unas semillas de trigo sarraceno." @@ -56334,7 +56344,7 @@ msgid_plural "wild herb seeds" msgstr[0] "semillas de hierbas silvestres" msgstr[1] "semillas de hierbas silvestres" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "Son unas semillas de algunas hierbas silvestres." @@ -56349,7 +56359,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "tallos de verduras silvestres" msgstr[1] "tallos de verduras silvestres" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "Son unos tallos de verduras silvestres." @@ -56364,7 +56374,7 @@ msgid_plural "dandelion seeds" msgstr[0] "semillas de diente de león" msgstr[1] "semillas de diente de león" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "Son unas semillas de diente de león." @@ -56379,7 +56389,7 @@ msgid_plural "burdock seeds" msgstr[0] "semillas de bardana" msgstr[1] "semillas de bardana" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "Son unas semillas de bardana." @@ -56394,7 +56404,7 @@ msgid_plural "rhubarb stems" msgstr[0] "tallos de ruibarbos" msgstr[1] "tallos de ruibarbos" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "Son unos tallos de ruibarbos." @@ -56405,7 +56415,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "esporas de colmenilla" msgstr[1] "esporas de colmenilla" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "Son unas esporas de colmenilla." @@ -56416,7 +56426,7 @@ msgid_plural "datura seeds" msgstr[0] "semillas de datura" msgstr[1] "semillas de datura" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -56438,7 +56448,7 @@ msgid_plural "celery seeds" msgstr[0] "semillas de apio" msgstr[1] "semillas de apio" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "Son unas semillas de apio." @@ -56449,7 +56459,7 @@ msgid_plural "oat seeds" msgstr[0] "semillas de avena" msgstr[1] "semillas de avena" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "Son unas semillas de avena." @@ -56466,7 +56476,7 @@ msgid_plural "wheat seeds" msgstr[0] "semillas de trigo" msgstr[1] "semillas de trigo" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "Son unas semillas de trigo." @@ -56483,7 +56493,7 @@ msgid_plural "fried seeds" msgstr[0] "semillas fritas" msgstr[1] "semillas fritas" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -56514,7 +56524,7 @@ msgid_plural "coffee beans" msgstr[0] "granos de café" msgstr[1] "granos de café" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "Son unos granos de café. Pueden ser tostados." @@ -56525,7 +56535,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "granos de café tostados" msgstr[1] "granos de café tostados" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -56537,7 +56547,7 @@ msgid_plural "chamomile seeds" msgstr[0] "semillas de manzanilla" msgstr[1] "semillas de manzanilla" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "Son unas semillas de manzanilla." @@ -56552,7 +56562,7 @@ msgid_plural "spurge seeds" msgstr[0] "semillas de euforbio" msgstr[1] "semillas de euforbio" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "Son unas semillas de euforbio." @@ -56567,7 +56577,7 @@ msgid_plural "popcorn seeds" msgstr[0] "semillas de maíz pisingallo" msgstr[1] "semillas de maíz pisingallo" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "Son unas semillas de maíz pisingallo." @@ -56578,7 +56588,7 @@ msgid_plural "horseradish seeds" msgstr[0] "semillas de rábano" msgstr[1] "semillas de rábano" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "Son unas semillas de rábano." @@ -56589,7 +56599,7 @@ msgid_plural "mustard seeds" msgstr[0] "semillas de mostaza" msgstr[1] "semillas de mostaza" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -56602,7 +56612,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "semillas de morrón" msgstr[1] "semillas de morrón" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "Son unas semillas de morrón." @@ -56624,8 +56634,7 @@ msgid_plural "bone broths" msgstr[0] "caldo de hueso" msgstr[1] "caldos de hueso" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -56655,15 +56664,14 @@ msgid_plural "meat soups" msgstr[0] "sopa de carne" msgstr[1] "sopas de carne" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "sopa de savia" msgstr[1] "sopa de savia" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -56703,8 +56711,7 @@ msgid_plural "curries with meat" msgstr[0] "curry con carne" msgstr[1] "currys con carne" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -56722,10 +56729,8 @@ msgid_plural "woods meat soups" msgstr[0] "sopa de carne de madera" msgstr[1] "sopas de carne de madera" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -56792,7 +56797,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "sopa de pollo con dumplings" msgstr[1] "sopa de pollo con dumplings" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "Es una sopa con pedazos de pollo y pelotas de masa. No está mal." @@ -56818,7 +56823,7 @@ msgid_plural "chili powder" msgstr[0] "ají en polvo" msgstr[1] "ají en polvo" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -56832,7 +56837,7 @@ msgid_plural "hot sauce" msgstr[0] "salsa picante" msgstr[1] "salsa picante" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -56847,7 +56852,7 @@ msgid_plural "cinnamon" msgstr[0] "canela" msgstr[1] "canela" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "Es canela molida en rama con un aroma dulce y un poquito picante." @@ -56858,7 +56863,7 @@ msgid_plural "curry powder" msgstr[0] "curry en polvo" msgstr[1] "curry en polvo" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -56873,7 +56878,7 @@ msgid_plural "black pepper" msgstr[0] "pimienta negra" msgstr[1] "pimienta negra" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "Es especia negra molida con aroma picante." @@ -56884,7 +56889,7 @@ msgid_plural "salt" msgstr[0] "sal" msgstr[1] "sal" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -56899,7 +56904,7 @@ msgid_plural "Italian seasoning" msgstr[0] "aderezo italiano" msgstr[1] "aderezo italiano" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "Es una mezcla de orégano seco, albahaca, tomillo y otras especias." @@ -56910,7 +56915,7 @@ msgid_plural "seasoned salt" msgstr[0] "sal condimentada" msgstr[1] "sal condimentada" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "Sal mezclada con un conjunto de hierbas y especias secretas." @@ -56921,7 +56926,7 @@ msgid_plural "sugar" msgstr[0] "azúcar" msgstr[1] "azúcar" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -56936,7 +56941,7 @@ msgid_plural "sprinkles" msgstr[0] "confites" msgstr[1] "confites" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -56955,7 +56960,7 @@ msgid_plural "wild herbs" msgstr[0] "hierbas silvestres" msgstr[1] "hierbas silvestres" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -56970,7 +56975,7 @@ msgid_plural "soy sauce" msgstr[0] "salsa de soja" msgstr[1] "salsa de soja" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "Salsa de soja salada y fermentada." @@ -56986,7 +56991,7 @@ msgid_plural "mustard powder" msgstr[0] "mostaza en polvo" msgstr[1] "mostaza en polvo" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -57043,7 +57048,7 @@ msgid_plural "starch" msgstr[0] "almidón" msgstr[1] "almidón" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -57058,7 +57063,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "hojas verdes de diente de león cocinadas" msgstr[1] "hojas verdes de diente de león cocinadas" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "Son hojas cocinadas de diente de león. Sabrosas y nutritivas." @@ -57069,7 +57074,7 @@ msgid_plural "fried dandelions" msgstr[0] "diente de león fritas" msgstr[1] "diente de león fritas" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -57083,7 +57088,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "hojas verdes de bardana cocinadas" msgstr[1] "hojas verdes de bardana cocinadas" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "Son hojas cocinadas de bardana. Sabrosas y nutritivas." @@ -57094,7 +57099,7 @@ msgid_plural "fried burdocks" msgstr[0] "bardana frita" msgstr[1] "bardana frita" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -57135,7 +57140,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "verduras silvestres cocinadas" msgstr[1] "verduras silvestres cocinadas" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -57160,7 +57165,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "trigo sarraceno cocinado" msgstr[1] "trigo sarraceno cocinado" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -57174,7 +57179,7 @@ msgid_plural "canned corn" msgstr[0] "choclo enlatado" msgstr[1] "choclo enlatado" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "Es choclo enlatado en agua. ¡A comer!" @@ -57185,7 +57190,7 @@ msgid_plural "corn on the cob" msgstr[0] "choclo en mazorca" msgstr[1] "choclo en mazorca" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "Es un choclo cocinado en papel aluminio." @@ -57196,7 +57201,7 @@ msgid_plural "pan roasted corn" msgstr[0] "choclo salteado" msgstr[1] "choclo salteado" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "Es choclo tostado en una sartén con hierbas y condimentos." @@ -57207,7 +57212,7 @@ msgid_plural "hominy" msgstr[0] "maíz precocido" msgstr[1] "maíz precocido" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -57222,7 +57227,7 @@ msgid_plural "cornmeal" msgstr[0] "harina de maíz" msgstr[1] "harina de maíz" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "Harina de maíz amarilla, útil para hornear." @@ -57233,7 +57238,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "porotos horneados vegetarianos" msgstr[1] "porotos horneados vegetarianos" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "Porotos cocinados lentamente con verduras. Sabrosos y muy rendidores." @@ -57244,7 +57249,7 @@ msgid_plural "dried rice" msgstr[0] "arroz deshidratado" msgstr[1] "arroz deshidratado" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -57259,7 +57264,7 @@ msgid_plural "cooked rice" msgstr[0] "arroz cocinado" msgstr[1] "arroz cocinado" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "Es una porción abundante de arroz de grano grande blanco cocinado." @@ -57270,7 +57275,7 @@ msgid_plural "fried rice" msgstr[0] "arroz frito" msgstr[1] "arroz frito" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "Delicioso arroz frito con verduras. Sabroso y muy rendidor." @@ -57281,7 +57286,7 @@ msgid_plural "beans and rice" msgstr[0] "porotos con arroz" msgstr[1] "porotos con arroz" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -57296,7 +57301,7 @@ msgid_plural "tofu fried rice" msgstr[0] "arroz frito con tofu" msgstr[1] "arroz frito con tofu" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "Es delicioso arroz frito con tofu y verduras. Sabroso y muy rendidor." @@ -57307,7 +57312,7 @@ msgid_plural "tofu stirfry" msgstr[0] "tofu salteado" msgstr[1] "tofu salteado" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -57322,7 +57327,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "porotos con arroz vegetarianos deluxe" msgstr[1] "porotos con arroz vegetarianos deluxe" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -57399,7 +57404,7 @@ msgid_plural "pesto" msgstr[0] "pesto" msgstr[1] "pesto" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "Aceite de oliva, albahaca, ajo y piñones. Simple y delicioso." @@ -57440,7 +57445,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "espagueti al pesto" msgstr[1] "espagueti al pesto" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "Espagueti con una generosa porción de pesto encima. ¡Rico!" @@ -57465,7 +57470,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "chucrut c/ cebollas salteadas" msgstr[1] "chucrut c/ cebollas salteadas" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -57510,7 +57515,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "granos de choclo deshidratados" msgstr[1] "granos de choclo deshidratados" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "Es un puñado de granos de choclos secos." @@ -57534,7 +57539,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "granos de choclo rehidratados" msgstr[1] "granos de choclo rehidratados" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -57618,7 +57623,7 @@ msgid_plural "sushi rice" msgstr[0] "arroz de sushi" msgstr[1] "arroz de sushi" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -57631,7 +57636,7 @@ msgid_plural "onigiri" msgstr[0] "onigiri" msgstr[1] "onigiri" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -57646,7 +57651,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "hosomaki de verduras" msgstr[1] "hosomaki de verduras" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -57676,7 +57681,7 @@ msgid_plural "sauerkraut" msgstr[0] "chucrut" msgstr[1] "chucrut" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -57702,7 +57707,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "brotes de helecho hervidos" msgstr[1] "brotes de helecho hervidos" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -57715,7 +57720,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "brotes de helecho salteados" msgstr[1] "brotes de helecho salteados" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "Son brotes de helechos salteados en grasa. Tiernos y deliciosos." @@ -57735,7 +57740,7 @@ msgstr "" "Es un morrón limpiado y cocinado. Se puede disfrutar mucho más ahora que no " "tiene las semillas." -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "Trigo crudo, no es muy sabroso." @@ -57746,7 +57751,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "espagueti crudo" msgstr[1] "espagueti crudo" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -57761,7 +57766,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "lasaña cruda" msgstr[1] "lasaña cruda" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -57776,7 +57781,7 @@ msgid_plural "boiled noodles" msgstr[0] "fideos hervidos" msgstr[1] "fideos hervidos" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "Son fideos recién hervidos. Bastante insípidos pero te van a llenar." @@ -57787,7 +57792,7 @@ msgid_plural "raw macaroni" msgstr[0] "macarrones crudos" msgstr[1] "macarrones crudos" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -57800,7 +57805,7 @@ msgid_plural "mac & cheese" msgstr[0] "macarrones con queso" msgstr[1] "macarrones con queso" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "Macarrones con queso. Sabrosos y te llenan." @@ -57811,7 +57816,7 @@ msgid_plural "flour" msgstr[0] "harina" msgstr[1] "harina" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "Harina blanca enriquecida, útil para hornear." @@ -57822,7 +57827,7 @@ msgid_plural "bread flour" msgstr[0] "harina de pan" msgstr[1] "harina de pan" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -57837,7 +57842,7 @@ msgid_plural "oatmeal" msgstr[0] "avena" msgstr[1] "avena" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " @@ -57846,7 +57851,7 @@ msgstr "" "Hojuelas secas de grano plano. Sabroso y nutritivo cuando se cocina, también" " sirve como comida para caballos mientras está seco." -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "Avena cruda." @@ -57857,7 +57862,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "avena cocinada" msgstr[1] "avena cocinada" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -57872,7 +57877,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "avena deluxe cocinada" msgstr[1] "avena deluxe cocinada" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -57967,7 +57972,7 @@ msgid_plural "oyster crackers" msgstr[0] "galletitas de ostra" msgstr[1] "galletitas de ostra" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -58004,7 +58009,7 @@ msgid_plural "granola" msgstr[0] "granola" msgstr[1] "granola" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -58030,7 +58035,7 @@ msgid_plural "fast noodles" msgstr[0] "fideos rápidos" msgstr[1] "fideos rápidos" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "Llamados fideos ramen. Se pueden comer crudos." @@ -58249,7 +58254,7 @@ msgid_plural "pineapple stem" msgstr[0] "tallo de ananá" msgstr[1] "tallo de ananá" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "Son raíces de una planta de ananá, para poder cultivar más." @@ -58260,7 +58265,7 @@ msgid_plural "melon seeds" msgstr[0] "semillas de melón" msgstr[1] "semillas de melón" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "Son unas semillas de melón." @@ -58271,7 +58276,7 @@ msgid_plural "banana saplings" msgstr[0] "brotes de banano" msgstr[1] "brotes de banano" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "Son unos brotes de banano." @@ -58282,7 +58287,7 @@ msgid_plural "orange vine" msgstr[0] "liana de naranja" msgstr[1] "liana de naranja" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "Son unas lianas de naranja. Definitivamente, transgénicas." @@ -58293,7 +58298,7 @@ msgid_plural "lemon vine" msgstr[0] "liana de limón" msgstr[1] "liana de limón" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "Son unas lianas de limón. Definitivamente, transgénicas." @@ -58304,7 +58309,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "coco subterráneo" msgstr[1] "coco subterráneo" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -58362,7 +58367,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "carne humana quemada por el hielo cocinada" msgstr[1] "carne humana quemada por el hielo cocinada" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -58413,7 +58418,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "sebo humano quemado por el hielo" msgstr[1] "sebo humano quemado por el hielo" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -58428,7 +58433,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "manteca humana quemada por el hielo" msgstr[1] "manteca humana quemada por el hielo" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -58477,7 +58482,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "carne alienígena cocinada" msgstr[1] "carne alienígena cocinada" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -58605,7 +58610,7 @@ msgid_plural "raw alien brains" msgstr[0] "cerebro extraterrestre crudo" msgstr[1] "cerebros extraterrestres crudos" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -58622,7 +58627,7 @@ msgid_plural "cooked alien brains" msgstr[0] "cerebro extraterrestre cocinado" msgstr[1] "cerebros extraterrestres cocinados" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -58727,7 +58732,7 @@ msgid_plural "alien tallow" msgstr[0] "sebo alienígena" msgstr[1] "sebo alienígena" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -58745,7 +58750,7 @@ msgid_plural "alien lard" msgstr[0] "manteca extraterrestre" msgstr[1] "manteca extraterrestre" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -58762,7 +58767,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "órganos extraterrestres no identificados" msgstr[1] "órganos extraterrestres no identificados" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -58776,7 +58781,7 @@ msgid_plural "alien cracklins" msgstr[0] "chicharrones extraterrestres" msgstr[1] "chicharrones extraterrestres" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -58791,7 +58796,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "chicharrones humanos quemados por el hielo" msgstr[1] "chicharrones humanos quemados por el hielo" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -58858,7 +58863,7 @@ msgid_plural "mealgrub spores" msgstr[0] "esporas de larva" msgstr[1] "esporas de larva" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -58879,7 +58884,7 @@ msgid_plural "mealgrub broth" msgstr[0] "caldo de larva" msgstr[1] "caldo de larva" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -58897,7 +58902,7 @@ msgid_plural "live mealgrubs" msgstr[0] "larvas vivas" msgstr[1] "larvas vivas" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -58915,7 +58920,7 @@ msgid_plural "mealgrubs" msgstr[0] "larvas" msgstr[1] "larvas" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -58991,7 +58996,7 @@ msgid_plural "H₂O™" msgstr[0] "H₂O™" msgstr[1] "H₂O™" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -59008,7 +59013,7 @@ msgid_plural "food cubes" msgstr[0] "cubos de comida" msgstr[1] "cubos de comida" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -59022,7 +59027,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "Food-to-go™ de Foodplace" msgstr[1] "Food-to-go™ de Foodplace" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -59050,7 +59055,7 @@ msgid_plural "cee wafers" msgstr[0] "galletas cee" msgstr[1] "galletas cee" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -59080,7 +59085,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "sopa, sabor 27" msgstr[1] "sopa, sabor 27" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -59097,7 +59102,7 @@ msgid_plural "landfall survival rations" msgstr[0] "raciones de supervivencia de aterrizaje" msgstr[1] "raciones de supervivencia de aterrizaje" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -59119,7 +59124,7 @@ msgid_plural "caffex" msgstr[0] "caffex" msgstr[1] "caffex" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -59169,7 +59174,7 @@ msgid_plural "supercritical coolant" msgstr[0] "refrigerante supercrítico" msgstr[1] "refrigerante supercrítico" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -59242,7 +59247,7 @@ msgid_plural "SpOreos" msgstr[0] "EspOreos" msgstr[1] "EspOreos" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -59269,7 +59274,7 @@ msgstr "" "retorcerse. Es útil para fabricar otras cosas. Podrías 'tomártelo', pero de " "ninguna manera eso va a ser placentero." -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -59618,10 +59623,10 @@ msgstr[0] "huevo de siats" msgstr[1] "huevos de siats" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" -msgstr[0] "huevo de tyrannosaurus" -msgstr[1] "huevos de tyrannosaurus" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" +msgstr[0] "huevo de gorgosaurus" +msgstr[1] "huevos de gorgosaurus" #: lang/json/COMESTIBLE_from_json.py msgid "albertosaurus egg" @@ -59629,6 +59634,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "huevo de albertosaurus" msgstr[1] "huevos de albertosaurus" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "huevo de qianzhousaurus" +msgstr[1] "huevos de qianzhousaurus" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "huevo de tyrannosaurus" +msgstr[1] "huevos de tyrannosaurus" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -59671,6 +59688,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "huevo de eoraptor" msgstr[1] "huevos de eoraptor" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "huevo de amargasaurus" +msgstr[1] "huevos de amargasaurus" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -59791,6 +59814,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "huevo de pentaceratops" msgstr[1] "huevos de pentaceratops" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "huevo de kosmoceratops" +msgstr[1] "huevos de kosmoceratops" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -59827,24 +59856,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "huevo de mosasaurus" msgstr[1] "huevos de mosasaurus" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "huevo de qianzhousaurus" -msgstr[1] "huevos de qianzhousaurus" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "huevo de amargasaurus" -msgstr[1] "huevos de amargasaurus" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "huevo de kosmoceratops" -msgstr[1] "huevos de kosmoceratops" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -60188,7 +60199,7 @@ msgid_plural "dragon meat" msgstr[0] "carne de dragón" msgstr[1] "carne de dragón" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -60266,7 +60277,7 @@ msgid_plural "mana infused blood" msgstr[0] "sangre infundida con maná" msgstr[1] "sangre infundida con maná" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -60336,7 +60347,7 @@ msgstr "" "Es el cadáver de un necco. Ahora parece como una galleta necco gigante. " "Seguro que un poquito no te va a hacer mal, ¿no?" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " @@ -60345,7 +60356,7 @@ msgstr "" "Es un puñado de malvaviscos blandos, suaves, inflados y deliciosos. Se " "sienten extrañamente tibios..." -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -60451,7 +60462,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "leche chocolatada sin pasteurizar" msgstr[1] "leche chocolatada sin pasteurizar" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -60464,7 +60475,7 @@ msgstr "" " la vaca, lo que podría molestarle. Dependiendo de tu sensibilidad dietaria," " podrías preferir pasteurizarla o hervirla antes de tomarla." -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -60478,7 +60489,7 @@ msgid_plural "liquid cacao" msgstr[0] "cacao líquido" msgstr[1] "cacao líquido" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "Es cacao amargo líquido. Bastante amargo, la verdad." @@ -60489,7 +60500,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "leche chocolatada rehidratada" msgstr[1] "leche chocolatada rehidratada" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -60504,7 +60515,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "leche chocolatada en polvo" msgstr[1] "leche chocolatada en polvo" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -60527,7 +60538,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "pedazos de envoltorio de caramelo" msgstr[1] "pedazos de envoltorio de caramelo" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -60545,7 +60556,7 @@ msgid_plural "sticky sludge" msgstr[0] "barro pegajoso" msgstr[1] "barro pegajoso" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -61211,7 +61222,7 @@ msgid_plural "rock salt" msgstr[0] "sal de roca" msgstr[1] "sal de roca" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -61224,7 +61235,7 @@ msgid_plural "rhodonite" msgstr[0] "rodonita" msgstr[1] "rodonita" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -61239,7 +61250,7 @@ msgid_plural "zincite" msgstr[0] "zincita" msgstr[1] "zincita" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -61280,7 +61291,7 @@ msgid_plural "hickory nuts" msgstr[0] "nueces jicoria" msgstr[1] "nueces jicoria" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -61293,7 +61304,7 @@ msgid_plural "pecans" msgstr[0] "nueces pecán" msgstr[1] "nueces pecán" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -61305,7 +61316,7 @@ msgid_plural "pistachios" msgstr[0] "pistachos" msgstr[1] "pistachos" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -61318,7 +61329,7 @@ msgid_plural "almonds" msgstr[0] "almendras" msgstr[1] "almendras" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -61330,7 +61341,7 @@ msgid_plural "peanuts" msgstr[0] "maníes" msgstr[1] "maníes" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -61342,7 +61353,7 @@ msgid_plural "hazelnuts" msgstr[0] "avellanas" msgstr[1] "avellanas" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -61354,7 +61365,7 @@ msgid_plural "chestnuts" msgstr[0] "castañas" msgstr[1] "castañas" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -61366,7 +61377,7 @@ msgid_plural "walnuts" msgstr[0] "nueces" msgstr[1] "nueces" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -61458,8 +61469,8 @@ msgstr[1] "cantimploras de 2.5L" msgid "" "A large plastic water canteen, with a 2.5 liter capacity and carrying strap." msgstr "" -"Una cantimplora grande de plástico, con una capacidad de 2.5 litros y una " -"correa para colgarla." +"Es una cantimplora grande de plástico, con una capacidad de 2.5 litros y una" +" correa para colgarla." #: lang/json/GENERIC_from_json.py msgid "30 gallon barrel" @@ -61688,6 +61699,20 @@ msgstr "" "ADVERTENCIA DE LA DIRECCIÓN GENERAL DE SALUD PÚBLICA: Fumar Causa Cáncer de " "Pulmón, Enfermedades del Corazón, Enfisema y Puede Perjudicar el Embarazo." +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "caja de cigarros" +msgstr[1] "cajas de cigarros" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" +"Es un pequeño estuche de madera y cuero hecho a mano , diseñado para " +"contener uno o dos cigarros." + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -61699,6 +61724,21 @@ msgstr[1] "cajitas de cartón" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "Es una caja chica de cartón, de unos 30 cm." +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "caja pequeña de madera" +msgstr[1] "cajas pequeñas de madera" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" +"Es una pequeña caja de madera, del tamaño justo para contener algunos " +"pequeños objetos." + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -61863,8 +61903,8 @@ msgid "" "A military-style water canteen with a 1.5 liter capacity. Commonly worn at " "the hip." msgstr "" -"Una cantimplora de tipo militar con una capacidad de 1.5 litros. Comúnmente " -"se lleva colgada en la cadera." +"Es una cantimplora de tipo militar con una capacidad de 1.5 litros. " +"Comúnmente se lleva colgada en la cadera." #: lang/json/GENERIC_from_json.py msgid "thermos" @@ -62592,7 +62632,7 @@ msgid_plural "semi ground grains" msgstr[0] "granos semimolidos" msgstr[1] "granos semimolidos" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "Es una pasta de granos a medio moler, no llega a ser harina." @@ -62603,7 +62643,7 @@ msgid_plural "smoldering embers" msgstr[0] "brasas ardientes" msgstr[1] "brasas ardientes" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -62837,6 +62877,32 @@ msgstr "" "Es una vieja y simple llave cilíndrica norteamericana. Quién sabe de qué " "cerradura será; mejor ni preocuparse." +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "cortapuros" +msgstr[1] "cortapuros" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" +"Es un conjunto de pequeñas cuchillas que se aprietan para cortar la punta de" +" los cigarros." + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "perforadora de puros" +msgstr[1] "perforadoras de puros" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" +"Es un pequeño tubo diseñado para hacer un agujero en la punta de un cigarro." + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -63060,7 +63126,7 @@ msgid_plural "superglue" msgstr[0] "superpegamento" msgstr[1] "superpegamento" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Un pomo de pegamento potente. Se usa para fabricar muchas cosas." @@ -63388,7 +63454,7 @@ msgid_plural "FEMA data" msgstr[0] "información de FEMA" msgstr[1] "información de FEMA" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -63552,7 +63618,7 @@ msgid_plural "concrete" msgstr[0] "concreto" msgstr[1] "concreto" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "Es un poco de concreto, listo para ser usado en alguna construcción." @@ -64523,7 +64589,7 @@ msgid_plural "clockworks" msgstr[0] "mecanismo de relojería" msgstr[1] "mecanismos de relojería" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "Es un pequeño surtido de engranajes y otros cacharros de relojería." @@ -64670,7 +64736,7 @@ msgid_plural "chamomile flowers" msgstr[0] "flores de manzanilla" msgstr[1] "flores de manzanilla" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -64700,7 +64766,7 @@ msgid_plural "spurge flowers" msgstr[0] "flor de euforbio" msgstr[1] "flores de euforbio" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -64738,7 +64804,7 @@ msgid_plural "mortar" msgstr[0] "mezcla" msgstr[1] "mezcla" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "Es un poco de mezcla, lista para ser usada en alguna construcción." @@ -64789,7 +64855,7 @@ msgid_plural "adobe mortar" msgstr[0] "mezcla de adobe" msgstr[1] "mezcla de adobe" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -64805,7 +64871,7 @@ msgid_plural "tanbark" msgstr[0] "casca" msgstr[1] "casca" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -64829,7 +64895,7 @@ msgid_plural "willowbark" msgstr[0] "cortezas de sauce" msgstr[1] "corteza de sauce" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -65293,7 +65359,7 @@ msgid_plural "raw tobacco" msgstr[0] "tabaco crudo" msgstr[1] "tabaco crudo" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -65637,7 +65703,7 @@ msgid_plural "plastic dice" msgstr[0] "dado de plástico" msgstr[1] "dados de plástico" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "Es un dado de plástico de seis cara." @@ -65662,7 +65728,7 @@ msgid_plural "alder bark" msgstr[0] "corteza de aliso" msgstr[1] "corteza de aliso" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -66068,8 +66134,8 @@ msgid "" "A sample of things that make up key parts of being a snail. You will " "probably need to find a very large snail." msgstr "" -"Es una muestra de cosas que constituyen las partes claves de ser un caracol." -" Probablemente, vas a necesitar encontrar un caracol muy grande." +"Es una muestra de cosas que constituyen las partes clave de ser un caracol. " +"Probablemente, vas a necesitar encontrar un caracol muy grande." #: lang/json/GENERIC_from_json.py msgid "rabbit sample" @@ -66096,9 +66162,117 @@ msgid "" "A sample of things that make up key parts of being a frog. You will " "probably need to find a very large frog." msgstr "" -"Es una muestra de cosas que constituyen las partes claves de ser una rana. " +"Es una muestra de cosas que constituyen las partes clave de ser una rana. " "Probablemente, vas a necesitar encontrar una rana muy grande." +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "muestra de insecto" +msgstr[1] "muestras de insecto" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" +"Es una muestra de cosas que constituyen las partes clave de ser un insecto. " +"Probablemente, vas a necesitar encontrar un bicho muy grande." + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "muestra de bovino" +msgstr[1] "muestras de bovino" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" +"Es una muestra de cosas que constituyen las partes clave de ser una criatura" +" bovina. Probablemente, vas a necesitar encontrar una vaca muy viva." + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "muestra de rata topo" +msgstr[1] "muestras de rata topo" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" +"Es una muestra de cosas que constituyen las partes clave de ser una criatura" +" subterránea. Probablemente, vas a necesitar encontrar algo grande que viva " +"bajo tierra." + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "muestra de araña" +msgstr[1] "muestras de araña" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" +"Es una muestra de cosas que constituyen las partes clave de ser una araña. " +"¿Por qué hay tantas arañas enormes ahora?" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "muestra de reptil" +msgstr[1] "muestras de reptil" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" +"Es una muestra de cosas que constituyen las partes clave de ser un lagarto. " +"Parece que lo que estarías necesitando son cocodrilos o serpientes cascabel " +"gigantes." + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "muestra de lupino" +msgstr[1] "muestras de lupino" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" +"Es una muestra de cosas que constituyen las partes clave de ser un lobo. " +"¿Ese es Lon Chaney Jr. caminando con la reina?" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "muestra de felino" +msgstr[1] "muestras de felino" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" +"Es una muestra de cosas que constituyen las partes clave de ser un felino. " +"¿Los linces y los pumas son nativos de esta área?" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -66947,7 +67121,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "sensores de automonitoreo" msgstr[1] "sensores de automonitoreo" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -67095,7 +67269,7 @@ msgid_plural "turret interior chassis" msgstr[0] "chasis interior de torreta" msgstr[1] "chasis interiores de torreta" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -67110,7 +67284,7 @@ msgid_plural "police bot chassis" msgstr[0] "chasis de policíabot" msgstr[1] "chasis de policíabot" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -67143,7 +67317,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "información de instalación de MCB Sistema de Alarma" msgstr[1] "información de instalación de MCB Sistema de Alarma" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67165,7 +67339,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "información de instalación de MCB Tatuaje LED" msgstr[1] "información de instalación de MCB Tatuaje LED" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67187,7 +67361,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "información de instalación de MCB Interfaz de Armadura de Poder" msgstr[1] "información de instalación de MCB Interfaz de Armadura de Poder" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67209,7 +67383,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "información de instalación de MCB Almacenamiento de Energía" msgstr[1] "información de instalación de MCB Almacenamiento de Energía" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67231,7 +67405,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "información de instalación de MCB Almacenamiento de Energía Mk. II" msgstr[1] "información de instalación de MCB Almacenamiento de Energía Mk. II" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67253,7 +67427,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "información de instalación de MCB Cronómetro Interno" msgstr[1] "información de instalación de MCB Cronómetro Interno" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67275,7 +67449,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "información de instalación de MCB Aguja Intravenosa" msgstr[1] "información de instalación de MCB Aguja Intravenosa" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67297,7 +67471,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "información de instalación de MCB Análisis de Sangre" msgstr[1] "información de instalación de MCB Análisis de Sangre" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67319,7 +67493,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "información de instalación de MCB Linterna Craneal" msgstr[1] "información de instalación de MCB Linterna Craneal" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67341,7 +67515,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "información de instalación de MCB Unidad Electromagnética" msgstr[1] "información de instalación de MCB Unidad Electromagnética" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67363,7 +67537,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "información de instalación de MCB Inducción Soporífera" msgstr[1] "información de instalación de MCB Inducción Soporífera" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67385,7 +67559,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "información de instalación de MCB Placas de Aleación para Brazos" msgstr[1] "información de instalación de MCB Placas de Aleación para Brazos" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67407,7 +67581,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "información de instalación de MCB Placas de Aleación para Piernas" msgstr[1] "información de instalación de MCB Placas de Aleación para Piernas" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67429,7 +67603,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "información de instalación de MCB Brazo Escopeta" msgstr[1] "información de instalación de MCB Brazo Escopeta" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67451,7 +67625,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "información de instalación de MCB Filtro de Sangre" msgstr[1] "información de instalación de MCB Filtro de Sangre" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67473,8 +67647,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "información de instalación de MCB Control Interno de Temperatura" msgstr[1] "información de instalación de MCB Control Interno de Temperatura" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67496,7 +67669,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "información de instalación de MCB Dosímetro Integrado" msgstr[1] "información de instalación de MCB Dosímetro Integrado" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67518,7 +67691,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "información de instalación de MCB Disipación Térmica" msgstr[1] "información de instalación de MCB Disipación Térmica" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67540,7 +67713,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "información de instalación de MCB Lector de Clima" msgstr[1] "información de instalación de MCB Lector de Clima" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67562,7 +67735,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "información de instalación de MCB Cañón de Riel" msgstr[1] "información de instalación de MCB Cañón de Riel" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67584,7 +67757,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "información de instalación de MCB UPS" msgstr[1] "información de instalación de MCB UPS" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67606,8 +67779,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "información de instalación de MCB Esqueleto de Titanio" msgstr[1] "información de instalación de MCB Esqueleto de Titanio" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67635,7 +67807,7 @@ msgid_plural "misc software" msgstr[0] "software variado" msgstr[1] "software variado" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "Software variado para pasar el tiempo. Probablemente sea inútil." @@ -67646,7 +67818,7 @@ msgid_plural "hackPRO" msgstr[0] "hackPRO" msgstr[1] "hackPRO" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "Software de hackeo." @@ -67657,7 +67829,7 @@ msgid_plural "MediSoft" msgstr[0] "MediSoft" msgstr[1] "MediSoft" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "Software sobre medicina" @@ -67668,7 +67840,7 @@ msgid_plural "MatheMAX" msgstr[0] "MatheMAX" msgstr[1] "MatheMAX" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "Software sobre matemática." @@ -67679,7 +67851,7 @@ msgid_plural "infection data" msgstr[0] "información de infección" msgstr[1] "información de infección" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "Información médica de sangre de zombi." @@ -67690,7 +67862,7 @@ msgid_plural "lab data" msgstr[0] "info de laboratorio" msgstr[1] "info de laboratorio" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "Son archivos de investigación de un laboratorio gubernamental." @@ -67701,7 +67873,7 @@ msgid_plural "train data" msgstr[0] "info de tren" msgstr[1] "info de tren" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -67713,7 +67885,7 @@ msgid_plural "neural data" msgstr[0] "información neural" msgstr[1] "información neural" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -68055,22 +68227,36 @@ msgstr "" "Es un hueso de un ser semihumano. Puede ser usado para hacer cosas, si te " "sentís lo suficientemente morboso." +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "cráneo humano" +msgstr[1] "cráneos humanos" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" +"Es el cráneo de un ser humano. Probablemente, llevar esto encima no te va a " +"hacer ganar amigos." + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "cadáver" msgstr[1] "cadáveres" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "carcasa" msgstr[1] "carcasas" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -68078,7 +68264,7 @@ msgid_plural "skinned %s" msgstr[0] " %s despellejado" msgstr[1] "%s despellejados" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -68153,6 +68339,8 @@ msgid "" "The corpse of an infant. A single small-caliber bullet has been put through" " its skull." msgstr "" +"Es el cadáver de un infante. Un sola bala de calibre pequeño ha atravesado " +"su cráneo." #. ~ Description for corpse #: lang/json/GENERIC_from_json.py @@ -68194,23 +68382,31 @@ msgid "" "The bloody corpse of a young man. He has been stabbed repeatedly in the " "jugular and throat with a small blade." msgstr "" +"Es el cadáver sangriento de un hombre joven. Ha sido apuñalado varias veces " +"con una chuchilla pequeña en la yugular y garganta." #: lang/json/GENERIC_from_json.py msgid "" "The dead body of a person. They look to have been skewered through with a " "large sharp implement." msgstr "" +"Es el cadáver muerto de un fallecido. Parece haber sido ensartado como " +"churrasco de croto con un instrumento filoso." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a tall middle-aged woman. She appears to have many stab " "wounds up her legs and thighs." msgstr "" +"Es el cadáver de una mujer alta de mediana edad. Parece tener muchas heridas" +" punzantes en las piernas y muslos." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a small old lady, her face caked in blood and missing an eye." msgstr "" +"Es el cadáver de una vieja de tamaño pequeño, tiene la cara cubierta de " +"sangre y le falta un ojo." #. ~ Description for corpse #: lang/json/GENERIC_from_json.py @@ -68244,30 +68440,40 @@ msgid "" "The corpse of a young blond woman shot several times in the back with a low-" "caliber weapon." msgstr "" +"Es el cadáver de una joven mujer rubio con varios disparos en la espalda con" +" un arma de calibre pequeño." #: lang/json/GENERIC_from_json.py msgid "" "An androgynous-looking corpse gored by arms fire chest to thighs, leaving " "the face eerily pristine." msgstr "" +"Es un cadáver de aspecto andrógino herido desde el torso hasta los muslos " +"con armas de fuego, dejando la cara escalofriantemente inmaculada." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a seemingly older male. He appears to have been shot in the " "forehead at a very close range leaving you a good view of his brain matter." msgstr "" +"Es el cadáver hombre aparentemente viejo. Parece haber sido disparado en la " +"frente y a muy corta distancia, dejándote una buena vista de su cerebro." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a middle-aged woman, her legs and arms covered in blood. She " "appears to have been shot in the thigh." msgstr "" +"Es el cadáver de una mujer de edad mediana, sus piernas y brazos están " +"cubiertas de sangre. Parece haber recibido un disparo en un muslo." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a young man who appears to have been shot to death. His right" " arm is only barely still attached to his shoulder." msgstr "" +"Es el cadáver de un hombre joven que parece haber recibido un disparo que lo" +" mató. Su brazo derecho está apenas unido a su hombro." #: lang/json/GENERIC_from_json.py msgid "" @@ -68275,6 +68481,9 @@ msgid "" "head, its thick black hair intermixed now with brain, viscera and shotgun " "pellets." msgstr "" +"Es el cadáver de una mujer alta casi inmaculado excepto por el agujero " +"sangriento en la parte superior de la cabeza, si grueso pelo negro está " +"ahora mezclado con cerebro, vísceras y perdigones de escopeta." #: lang/json/GENERIC_from_json.py msgid "broken exodii worker" @@ -68344,7 +68553,7 @@ msgid_plural "trifacet remains" msgstr[0] "restos de trifase" msgstr[1] "restos de trifase" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -68742,6 +68951,115 @@ msgstr "" "Los zombis no pueden ser ni intimidados ni humillados, así que este cepillo " "duro solamente sirve para limpiar inodoros." +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "peine fino" +msgstr[1] "peines finos" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" +"Es un peine de acero inoxidable con los dientes estriados diseñados para " +"quitar parásitos molestos del pelo. De solo pensar en eso te hace picar la " +"cabeza." + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "juguete de bañadera" +msgstr[1] "juguetes de bañadera" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "Es un juguete plástico que flota." + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "Es un patito amarillo de goma. Diseñado para usar en la bañadera." + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" +"Es un patito negro de goma con grandes ojos blancos. Diseñado para usar en " +"la bañadera." + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" +"Es un pequeño dinosaurio verde con una sonrisa ancha. Diseñado para usar en " +"la bañadera." + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "cepillo eléctrico de dientes" +msgstr[1] "cepillos eléctricos de dientes" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "Es un cepillo eléctrico de plástico." + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" +"Es una botella que se puede apretar y se usa para diversos jabones líquidos." + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "Es una botella para shampoo especial para cabello teñido." + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "Es una simple botella blanca hecha para contener un shampoo barato." + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "Es una botella para gel de ducha. Este se llama 'Afrika'." + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "Es una botella para acondicionador de cabello." + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" +"Es una colorida botella de jabón para el cuerpo y para el pelo, " +"aparentemente para niños." + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" +"Es una simple botella blanca hecha para contener acondicionador de pelo " +"barato." + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" +"Es una simple botella blanca hecha para contener el gel de ducha más barato." + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "dentadura postiza" +msgstr[1] "dentaduras postizas" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" +"Es una dentadura postiza estándar, bastante inútil para cualquier otro que " +"no sea su dueño original." + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -70641,7 +70959,7 @@ msgid_plural "headphones" msgstr[0] "auriculares" msgstr[1] "auriculares" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -70736,7 +71054,7 @@ msgid_plural "spare parts" msgstr[0] "partes de repuesto" msgstr[1] "partes de repuesto" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -71425,7 +71743,7 @@ msgid_plural "bokken" msgstr[0] "bokken" msgstr[1] "bokken" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -71436,7 +71754,7 @@ msgstr "" "igual en peso y balance a la verdadera. Más allá de su falta de filo de " "metal, igual es capaz de infligir heridas mortales." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " @@ -71445,7 +71763,7 @@ msgstr "" "Es una buena katana de madera de entrenamiento, pero se siente demasiado " "liviana como para actuar efectivamente como arma." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -72099,7 +72417,7 @@ msgid_plural "bionic claws" msgstr[0] "garras biónicas" msgstr[1] "garras biónicas" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "Garras cortas y afiladas hechas de un metal de alta tecnología." @@ -72345,7 +72663,7 @@ msgid_plural "qiang" msgstr[0] "qiang" msgstr[1] "qiang" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -72399,7 +72717,7 @@ msgid_plural "naginata" msgstr[0] "naginata" msgstr[1] "naginata" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -72410,7 +72728,7 @@ msgstr "" "katana y otras espadas japonesas. Ocasionalmente era utilizada por los " "samurai en los primeros tiempos, o por sus esposas en defensa de su hogar." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -72421,7 +72739,7 @@ msgstr "" "katana y otras espadas japonesas. La cuchilla está un poco chueca y parece " "que estuviera hecha así nomás." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -72438,7 +72756,7 @@ msgid_plural "survivor naginata" msgstr[0] "naginata de supervivencia" msgstr[1] "naginatas de supervivencia" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -72590,7 +72908,7 @@ msgid_plural "ji" msgstr[0] "ji" msgstr[1] "ji" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -72661,6 +72979,23 @@ msgstr "" "de madera. El peso agregado no está balanceado, pero el filo dentado brinda " "un buen daño cortante." +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "espada de metal" +msgstr[1] "espadas de metal" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" +"Es la imitación de una espada real forjada por alguien que sabe cómo es la " +"apariencia de una espada, por lo menos. Tiene su forma general y está " +"afilada, pero no es de buena calidad y el balance está un poco mal." + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -72668,7 +73003,7 @@ msgid_plural "jian" msgstr[0] "jian" msgstr[1] "jian" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -72768,7 +73103,7 @@ msgid_plural "tanto" msgstr[0] "tantō" msgstr[1] "tantōs" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " @@ -72777,7 +73112,7 @@ msgstr "" "Es una réplica berreta sin filo de un cuchillo largo japonés, usado " "típicamente como arma secundario del samurai." -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -72794,7 +73129,7 @@ msgid_plural "nodachi" msgstr[0] "nodachi" msgstr[1] "nodachi" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " @@ -72803,7 +73138,7 @@ msgstr "" "Es una réplica berreta sin filo de una enorme espada de dos manos curvada de" " origen japonés. Es sorprendentemente liviana para el tamaño que tiene." -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -72971,7 +73306,7 @@ msgid_plural "katana" msgstr[0] "katana" msgstr[1] "katanas" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "Es una réplica berreta sin filo de una excepcional espada japonesa." @@ -73049,7 +73384,7 @@ msgid_plural "wakizashi" msgstr[0] "wakizashi" msgstr[1] "wakizashi" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -73125,7 +73460,7 @@ msgid_plural "tiger claws" msgstr[0] "garras de tigre" msgstr[1] "garras de tigre" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -73281,8 +73616,8 @@ msgid "" "A thin and flat knife made for throwing. Its ineffective cutting edge and " "odd shape makes it unsuitable for use as a tool." msgstr "" -"Un cuchillo delgado y plano hecho para ser tirado. No tiene buen filo y su " -"extraña forma lo hace inservible como herramienta." +"Es un cuchillo fino y plano diseñado para ser tirado. No tiene buen filo y " +"su extraña forma lo hace inservible como herramienta." #: lang/json/GENERIC_from_json.py msgid "bakelite phone" @@ -73396,13 +73731,30 @@ msgstr "" "grande de vidrio marino, congelado y arenoso, con las puntas redondeadas. " "Es, por alguna razón, tibio al tacto." +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "rama de helecho extraterrestre" +msgstr[1] "ramas de helecho extraterrestre" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" +"Es un tronco con ramas y hojas de un mega helecho, de unos sesenta " +"centímetros de largo y sesenta de diámetro midiendo las hojas. Tal vez algún" +" día se te ocurra qué hacer con un helecho gigante." + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "chasis de Exodii" msgstr[1] "chasis de Exodii" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -73423,7 +73775,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "chasis de dron Exodii" msgstr[1] "chasis de dron Exodii" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -73479,7 +73831,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "placa metálica inscripta" msgstr[1] "placas metálicas inscriptas" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -73818,7 +74170,7 @@ msgid_plural "scrap copper" msgstr[0] "pedazo de cobre" msgstr[1] "pedazo de cobre" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "Es un pedazo chico de cobre, útil para fabricar o reparar cosas." @@ -74122,7 +74474,7 @@ msgid_plural "splintered wood" msgstr[0] "astilla de madera" msgstr[1] "astillas de madera" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -74381,17 +74733,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "cultivo sellado de levadura" msgstr[1] "cultivo sellado de levadura" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "Abrís el frasco y cosechás el cultivo." -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "La levadura todavía no terminó su proceso de cultivo." -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -75066,8 +75418,9 @@ msgid "" "A stout metal box used for producing charcoal via pyrolysis; the incomplete " "burning of organic materials in the absence of oxygen." msgstr "" -"Una caja gruesa de metal usada para producir carbón mediante pirólisis: " -"quemado incompleto de materiales orgánicos en ausencia de oxígeno." +"Es una caja gruesa de metal usada para producir carbón vegetal mediante " +"pirólisis que es el quemado incompleto de materiales orgánicos en ausencia " +"de oxígeno." #: lang/json/GENERIC_from_json.py msgid "lit charcoal kiln" @@ -75082,7 +75435,7 @@ msgid "" "charcoal." msgstr "" "Las brasas de la fosa ya se apagaron, podés desarmarla para recolectar el " -"carbón." +"carbón vegetal." #. ~ Use action not_ready_msg for lit charcoal kiln. #: lang/json/GENERIC_from_json.py @@ -75796,7 +76149,7 @@ msgid_plural "oars" msgstr[0] "remos" msgstr[1] "remos" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "Son remos para un bote." @@ -75818,7 +76171,7 @@ msgid_plural "inflatable section" msgstr[0] "sección inflable" msgstr[1] "sección inflable" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "Una parte inflable para bote." @@ -75829,7 +76182,7 @@ msgid_plural "inflatable airbag" msgstr[0] "airbag inflable" msgstr[1] "airbags inflables" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "Un airbag inflable." @@ -76804,7 +77157,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "carillón" msgstr[1] "carillones" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -76822,7 +77175,7 @@ msgid_plural "sheet metal" msgstr[0] "lámina de metal" msgstr[1] "lámina de metal" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "Es una lámina fina de metal." @@ -76833,7 +77186,7 @@ msgid_plural "wired sheet metal" msgstr[0] "lámina de metal cableada" msgstr[1] "lámina de metal cableada" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "Es una lámina de metal que tiene espacio para luces y su cableado." @@ -76857,7 +77210,7 @@ msgid_plural "steel plating" msgstr[0] "chapa de acero" msgstr[1] "chapa de acero" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "Es una pieza de coraza hecha de acero." @@ -76868,7 +77221,7 @@ msgid_plural "superalloy plating" msgstr[0] "chapa de superaleación" msgstr[1] "chapa de superaleación" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "Es una pieza de coraza hecha de superaleación resistente." @@ -76893,7 +77246,7 @@ msgid_plural "spiked plating" msgstr[0] "chapa con puntas" msgstr[1] "chapa con puntas" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -77157,6 +77510,7 @@ msgstr[0] "panel solar" msgstr[1] "paneles solares" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " @@ -77165,6 +77519,12 @@ msgstr "" "Un dispositivo electrónico que puede convertir la radiación solar en energía" " eléctrica. Útil para armar un vehículo." +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "conjunto de paneles solares colapsable" +msgstr[1] "conjuntos de paneles solares colapsables" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -77303,13 +77663,24 @@ msgstr "Es un área refrigerada puesta en un vehículo." #: lang/json/GENERIC_from_json.py msgid "vehicle heater" msgid_plural "vehicle heaters" -msgstr[0] "calentador de vehículo" -msgstr[1] "calentadores de vehículo" +msgstr[0] "calentador para vehículo" +msgstr[1] "calentadores para vehículo" #. ~ Description for vehicle heater #: lang/json/GENERIC_from_json.py msgid "A vehicle-mounted area heater." -msgstr "Es un calentador para montar en un vehículo." +msgstr "Es un calentador para poner en un vehículo." + +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "calentador pequeños para vehículo" +msgstr[1] "calentadores pequeños para vehículo" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "Es un calentador pequeño para poner en un vehículo." #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" @@ -77807,7 +78178,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "prefermento de masa madre de familia de Dana" msgstr[1] "prefermento de masa madre de familia de Dana" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -77883,7 +78254,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "chasis de bioarma" msgstr[1] "chasis de bioarma" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -78220,7 +78591,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "Isohypsa roto" msgstr[1] "Isohypsas rotos " -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -78235,7 +78606,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "Kabura-ya roto" msgstr[1] "Kabura-yas rotos" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -78380,7 +78751,7 @@ msgid_plural "scrap titanium" msgstr[0] "pedazo de titanio" msgstr[1] "pedazos de titanio" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "Es un pedazo liviano de titanio, útil para fabricar o reparar cosas." @@ -78391,7 +78762,7 @@ msgid_plural "nuclear waste" msgstr[0] "desecho nuclear" msgstr[1] "desecho nuclear" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "Es un pequeño perdigón de metal plateado, todavía tibio." @@ -78616,7 +78987,7 @@ msgid_plural "tripod chassis" msgstr[0] "chasis de trípode" msgstr[1] "chasis de trípode" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78631,7 +79002,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "chasis de Explorador" msgstr[1] "chasis de Explorador" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78646,7 +79017,7 @@ msgid_plural "Regulator chassis" msgstr[0] "chasis de Regulador" msgstr[1] "chasis de Regulador" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78661,7 +79032,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "chasis de Senescal" msgstr[1] "chasis de Senescal" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78676,7 +79047,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "chasis de Likvidator" msgstr[1] "chasis de Likvidator" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78691,7 +79062,7 @@ msgid_plural "Famulus chassis" msgstr[0] "chasis de Famulus" msgstr[1] "chasis de Famulus" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -78706,7 +79077,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "chasis de Udarnik" msgstr[1] "chasis de Udarnik" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78721,7 +79092,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "chasis de Brandspojt" msgstr[1] "chasis de Brandspojt" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78736,7 +79107,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "chasis de Droide Quirúrgico" msgstr[1] "chasis de Droide Quirúrgico" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78751,7 +79122,7 @@ msgid_plural "Aegis chassis" msgstr[0] "chasis de Égida" msgstr[1] "chasis de Égida" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78766,7 +79137,7 @@ msgid_plural "military robot chassis" msgstr[0] "chasis de militaribot" msgstr[1] "chasis de militaribot" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78781,7 +79152,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "chasis de humaniforme militar" msgstr[1] "chasis de humaniforme militar" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -78915,7 +79286,7 @@ msgid_plural "monomeric slurry" msgstr[0] "pulpa monomérica" msgstr[1] "pulpa monomérica" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -78946,7 +79317,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "fibra muscular artificial" msgstr[1] "fibras musculares artificiales" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -78961,7 +79332,7 @@ msgid_plural "self healing polymers" msgstr[0] "polímeros autocurables" msgstr[1] "polímeros autocurables" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -78991,7 +79362,7 @@ msgid_plural "scrap photonics" msgstr[0] "pedazos de fotónico" msgstr[1] "pedazos de fotónico" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -79028,7 +79399,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "fotónico hipergeométrico" msgstr[1] "fotónicos hipergeométricos" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -79435,7 +79806,7 @@ msgid_plural "laser optics" msgstr[0] "ópticas láser" msgstr[1] "ópticas láser" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -80276,7 +80647,7 @@ msgid_plural "enchanted wood" msgstr[0] "madera encantada" msgstr[1] "madera encantada" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "Es madera que ha sido imbuida con maná." @@ -81880,7 +82251,7 @@ msgid_plural "subzero talons" msgstr[0] "zarpas subzero" msgstr[1] "zarpas subzero" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -81925,8 +82296,8 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "magical throwing knife" msgid_plural "magical throwing knives" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "cuchillo arrojadizo mágico" +msgstr[1] "cuchillos arrojadizos mágicos" #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -81935,6 +82306,9 @@ msgid "" "ineffective cutting edge and odd shape makes it unsuitable for use as a " "tool." msgstr "" +"Es un cuchillo fino y plano diseñado para ser tirado, envuelto en llamas " +"etéreas. No tiene buen filo y su extraña forma lo hace inservible como " +"herramienta." #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -81942,6 +82316,8 @@ msgid "" "A thin and flat knife made for throwing, emanates cold. Its ineffective " "cutting edge and odd shape makes it unsuitable for use as a tool." msgstr "" +"Es un cuchillo fino y plano diseñado para ser tirado que emana frío. No " +"tiene buen filo y su extraña forma lo hace inservible como herramienta." #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -81950,6 +82326,9 @@ msgid "" "sharp. Its ineffective cutting edge and odd shape makes it unsuitable for " "use as a tool." msgstr "" +"Es un cuchillo fino y plano con filo diseñado para ser tirado que parece " +"sobrenaturalmente filoso. Su extraña forma lo hace inservible como " +"herramienta." #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -81958,6 +82337,9 @@ msgid "" "covered in dark ooze. Its ineffective cutting edge and odd shape makes it " "unsuitable for use as a tool." msgstr "" +"Es un cuchillo fino y plano diseñado para ser tirado, hecho de una sustancia" +" porosa y cubierto de un líquido espeso y oscuro. No tiene buen filo y su " +"extraña forma lo hace inservible como herramienta." #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -81965,6 +82347,8 @@ msgid "" "A transparent blade seems to radiate intent to be thrown. Its ineffective " "cutting edge and odd shape makes it unsuitable for use as a tool." msgstr "" +"Es una cuchilla transparente que parece emitir la intención de ser arrojada." +" No tiene buen filo y su extraña forma la hace inservible como herramienta." #: lang/json/GENERIC_from_json.py msgid "parabolan felt patch" @@ -82129,7 +82513,7 @@ msgid_plural "fireproof mortar" msgstr[0] "mezcla ignífugo" msgstr[1] "mezclas ignífugos" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -82273,7 +82657,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "chasis de mecha-gallina" msgstr[1] "chasis de mecha-gallina" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -82288,7 +82672,7 @@ msgid_plural "Beagle chassis" msgstr[0] "chasis de Beagle" msgstr[1] "chasis de Beagle" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -83167,6 +83551,19 @@ msgstr "" "Saca del juego todos los monstruos excepto los que pertenecen a la categoría" " FAUNA SALVAJE." +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "Rebuscando" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" +"A algunos muebles hay que abrirlos para rebuscar adentro, esto aumenta la " +"emoción de encontrar cosas." + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "Características por Habilidades" @@ -83336,12 +83733,13 @@ msgstr "ve al jugador, correr, agacharse, sangrando, retrodays" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" "Agrega un indicador si una criatura está viendo al jugador. Agrega un icono " -"de estado sobre el gráfico del jugador para cuando corrés, te agachás o " -"sangrás. Diseñado para los gráficos Retrodays." +"de estado sobre el gráfico del jugador para cuando corrés, te agachás, estás" +" tirado en el suelo o sangrás. Diseñado para los gráficos Retrodays pero " +"también funciona bien con Neodays." #: lang/json/MOD_INFO_from_json.py msgid "SpeedyDex" @@ -83746,6 +84144,11 @@ msgstr "" "de armas. Aunque no parece tener ningún apuro en atacarte, sería prudente " "mantener tu distancia." +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "¡El cuadrúpedo Exodii dispara su arma!" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "a chk!" @@ -84243,7 +84646,7 @@ msgid_plural "tiny fish" msgstr[0] "pez pequeño" msgstr[1] "peces pequeños" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "Es un pez… pequeño." @@ -84254,7 +84657,7 @@ msgid_plural "small fish" msgstr[0] "pez chico" msgstr[1] "peces chicos" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "Es un pez… chico." @@ -84265,7 +84668,7 @@ msgid_plural "medium fish" msgstr[0] "pez mediano" msgstr[1] "peces medianos" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "Es un pez… mediano." @@ -84276,7 +84679,7 @@ msgid_plural "large fish" msgstr[0] "pez grande" msgstr[1] "peces grandes" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "Es un pez… grande." @@ -84287,7 +84690,7 @@ msgid_plural "huge fish" msgstr[0] "pez enorme" msgstr[1] "peces enormes" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "Es un pez… enorme." @@ -84443,7 +84846,7 @@ msgid_plural "whitefish" msgstr[0] "bacalao" msgstr[1] "bacalaos" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -84458,7 +84861,7 @@ msgid_plural "largemouth bass" msgstr[0] "róbalo de boca grande" msgstr[1] "róbalos de boca grande" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -84470,7 +84873,7 @@ msgid_plural "smallmouth bass" msgstr[0] "róbalo de boca chica" msgstr[1] "róbalos de boca chica" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -84485,7 +84888,7 @@ msgid_plural "striped bass" msgstr[0] "róbalo rayado" msgstr[1] "róbalos rayados" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -84500,7 +84903,7 @@ msgid_plural "white bass" msgstr[0] "róbalo blanco" msgstr[1] "róbalos blancos" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -84541,7 +84944,7 @@ msgid_plural "sunfish" msgstr[0] "pez luna" msgstr[1] "peces luna" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -84553,7 +84956,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "pez semilla de calabaza" msgstr[1] "peces semilla de calabaza" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -84580,7 +84983,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "pez luna de pecho rojo" msgstr[1] "peces luna de pecho rojo" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -84593,7 +84996,7 @@ msgid_plural "green sunfish" msgstr[0] "pez luna verde" msgstr[1] "peces luna verdes" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -84606,7 +85009,7 @@ msgid_plural "longear sunfish" msgstr[0] "pez luna orejón" msgstr[1] "peces luna orejón" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -84619,7 +85022,7 @@ msgid_plural "redear sunfish" msgstr[0] "pez luna oreja roja" msgstr[1] "peces luna oreja roja" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -84632,7 +85035,7 @@ msgid_plural "rock bass" msgstr[0] "róbalo roca" msgstr[1] "róbalos roca" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -84647,7 +85050,7 @@ msgid_plural "calico bass" msgstr[0] "róbalo calico" msgstr[1] "róbalos calico" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "Es un róbalo calico, un pez mediano también conocido como 'Crappie'." @@ -84684,7 +85087,7 @@ msgid_plural "channel catfish" msgstr[0] "pez gato de canal" msgstr[1] "peces gato de canal" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "Es un pez gato de canal, tiene la cola bifurcada y bigotes largos." @@ -84695,7 +85098,7 @@ msgid_plural "white catfish" msgstr[0] "pez gato blanco" msgstr[1] "peces gato blanco" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "Es un pez gato blanco, es pequeño, con bigotes y la cabeza ancha." @@ -84801,7 +85204,7 @@ msgid_plural "fallfish" msgstr[0] "piscardo" msgstr[1] "piscardos" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -84833,7 +85236,7 @@ msgid_plural "crayfish" msgstr[0] "cangrejo de río" msgstr[1] "cangrejos de río" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -84869,7 +85272,7 @@ msgstr "" " construyeron las represas. Supongo que ahora tendrán otra oportunidad ya " "que las represas no funcionan." -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -84884,7 +85287,7 @@ msgid_plural "giant crayfish" msgstr[0] "cangrejo de río gigante" msgstr[1] "cangrejos de río gigante" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -84899,7 +85302,7 @@ msgid_plural "colossal crayfish" msgstr[0] "cangrejo colosal de río " msgstr[1] "cangrejos colosales de río" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -85668,7 +86071,7 @@ msgid_plural "fused dragonflies" msgstr[0] "libélulas fusionadas" msgstr[1] "libélulas fusionadas" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -85887,7 +86290,7 @@ msgstr[1] "arañas misil" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -87834,7 +88237,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "Gran Pirineo" msgstr[1] "Grandes Pirineo" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -88067,7 +88470,7 @@ msgid_plural "moose" msgstr[0] "alce" msgstr[1] "alces" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -88260,7 +88663,7 @@ msgstr[0] "cordero" msgstr[1] "corderos" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -88626,10 +89029,11 @@ msgstr[1] "monstruos debug" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -88640,6 +89044,17 @@ msgstr "El %s se derrite." msgid "This monster exists only for testing purposes." msgstr "Este monstruo solo existe para hacer pruebas." +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "monstruo punto débil" +msgstr[1] "monstruos punto débil" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "Este monstruo solo existe para probar los puntos débiles." + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -89458,8 +89873,8 @@ msgid "" "An enormous fleshy snail, with an oddly human face. Eyestalks protrude from" " where the eyes should be." msgstr "" -"Un enorme caracol carnoso, con una extraña cara humana. Ojos pedunculados " -"salen de donde deberían estar los ojos." +"Es un enorme caracol carnoso con una extraña cara humana. Pedúnculos " +"oculares salen de donde deberían estar los ojos." #: lang/json/MONSTER_from_json.py msgid "hunting horror" @@ -89985,8 +90400,8 @@ msgstr "El cuerpo del/a %s se disuelve en el ácido." #: lang/json/MONSTER_from_json.py msgid "A familiar-looking blob of goo. It sprouts the occasional eyestalk." msgstr "" -"Es un blobo viscoso que te resulta familiar. Ocasionalmente, le brota un ojo" -" peduncular." +"Es un blobo viscoso que te resulta familiar. Ocasionalmente, le brota un " +"pedúnculo ocular." #: lang/json/MONSTER_from_json.py msgid "sludge crawler" @@ -91328,7 +91743,7 @@ msgid_plural "sawbones" msgstr[0] "matasanos" msgstr[1] "matasanos" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -91348,7 +91763,7 @@ msgid_plural "doctor burns" msgstr[0] "doctor quemadura" msgstr[1] "doctores quemadura" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -91568,7 +91983,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "carne-raptor inestable" msgstr[1] "carne-ráptores inestables" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -91711,17 +92126,18 @@ msgstr[1] "zombis infantiles" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -92240,7 +92656,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "carne gangrenosa" msgstr[1] "carne gangrenosa" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -92292,7 +92708,7 @@ msgid_plural "scissorlimbs" msgstr[0] "patastijeras" msgstr[1] "patastijeras" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -92310,7 +92726,7 @@ msgid_plural "hanging innards" msgstr[0] "tripas colgantes" msgstr[1] "tripas colgantes" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -92774,8 +93190,8 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "zombie necromancer" msgid_plural "zombie necromancers" -msgstr[0] "zombi nigromante" -msgstr[1] "zombis nigromantes" +msgstr[0] "zombi necromante" +msgstr[1] "zombis necromantes" #. ~ Description for zombie necromancer #: lang/json/MONSTER_from_json.py @@ -92910,7 +93326,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "Shia LaBeouf" msgstr[1] "Shia LaBeouf" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -95213,7 +95629,7 @@ msgid_plural "wisp" msgstr[0] "wisp" msgstr[1] "wisp" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -95909,7 +96325,7 @@ msgid_plural "coelophysis" msgstr[0] "coelophysis" msgstr[1] "coelophysis" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -95924,7 +96340,7 @@ msgid_plural "dilophosaurus" msgstr[0] "dilophosaurus" msgstr[1] "dilophosaurus" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -95939,7 +96355,7 @@ msgid_plural "ceratosaurus" msgstr[0] "ceratosaurus" msgstr[1] "ceratosaurus" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -95956,7 +96372,7 @@ msgid_plural "spinosaurus" msgstr[0] "spinosaurus" msgstr[1] "spinosaurus" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -95973,7 +96389,7 @@ msgid_plural "allosaurus" msgstr[0] "allosaurus" msgstr[1] "allosaurus" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -95988,7 +96404,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "acrocanthosaurus" msgstr[1] "acrocanthosaurus" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -96005,7 +96421,7 @@ msgid_plural "siats" msgstr[0] "siats" msgstr[1] "siats" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " @@ -96014,13 +96430,28 @@ msgstr "" "Es un enorme dinosaurio bípedo depredador con largas garras y brazos fuertes" " para agarrar a sus presas." +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "gorgosaurus" +msgstr[1] "gorgosaurus" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" +"Tiene dientes enormes, ojos feroces y una estructura poderosa para avanzar, " +"junto con dos brazos pequeños y una cabellera y cola de plumas." + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "albertosaurus" msgstr[1] "albertosaurus" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -96035,7 +96466,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "qianzhousaurus" msgstr[1] "qianzhousaurus" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -96050,7 +96481,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "tyrannosaurus rex" msgstr[1] "tyrannosaurus rex" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -96066,7 +96497,7 @@ msgid_plural "compsognathus" msgstr[0] "compsognathus" msgstr[1] "compsognathus" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -96081,7 +96512,7 @@ msgid_plural "gallimimus" msgstr[0] "gallimimus" msgstr[1] "gallimimus" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -96111,7 +96542,7 @@ msgid_plural "nothronychus" msgstr[0] "nothronychus" msgstr[1] "nothronychus" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -96127,7 +96558,7 @@ msgid_plural "deinonychus" msgstr[0] "deinonychus" msgstr[1] "deinonychus" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -96172,7 +96603,7 @@ msgid_plural "amargasaurus" msgstr[0] "amargasaurus" msgstr[1] "amargasaurus" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -96188,7 +96619,7 @@ msgid_plural "apatosaurus" msgstr[0] "apatosaurus" msgstr[1] "apatosaurus" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -96204,7 +96635,7 @@ msgid_plural "brontosaurus" msgstr[0] "brontosaurus" msgstr[1] "brontosaurus" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -96219,7 +96650,7 @@ msgid_plural "diplodocus" msgstr[0] "diplodocus" msgstr[1] "diplodocus" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -96232,7 +96663,7 @@ msgid_plural "camarasaurus" msgstr[0] "camarasaurus" msgstr[1] "camarasaurus" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -96247,7 +96678,7 @@ msgid_plural "brachiosaurus" msgstr[0] "brachiosaurus" msgstr[1] "brachiosaurus" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -96262,7 +96693,7 @@ msgid_plural "alamosaurus" msgstr[0] "alamosaurus" msgstr[1] "alamosaurus" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -96277,7 +96708,7 @@ msgid_plural "scutellosaurus" msgstr[0] "scutellosaurus" msgstr[1] "scutellosaurus" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -96292,7 +96723,7 @@ msgid_plural "stegosaurus" msgstr[0] "stegosaurus" msgstr[1] "stegosaurus" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -96306,7 +96737,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "dyoplosaurus" msgstr[1] "dyoplosaurus" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -96321,7 +96752,7 @@ msgid_plural "ankylosaurus" msgstr[0] "ankylosaurus" msgstr[1] "ankylosaurus" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -96336,7 +96767,7 @@ msgid_plural "nodosaurus" msgstr[0] "nodosaurus" msgstr[1] "nodosaurus" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -96350,7 +96781,7 @@ msgid_plural "edmontonia" msgstr[0] "edmontonia" msgstr[1] "edmontonia" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -96365,7 +96796,7 @@ msgid_plural "camptosaurus" msgstr[0] "camptosaurus" msgstr[1] "camptosaurus" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -96380,7 +96811,7 @@ msgid_plural "parasaurolophus" msgstr[0] "parasaurolophus" msgstr[1] "parasaurolophus" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -96393,7 +96824,7 @@ msgid_plural "maiasaura" msgstr[0] "maiasaura" msgstr[1] "maiasaura" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -96408,7 +96839,7 @@ msgid_plural "corythosaurus" msgstr[0] "corythosaurus" msgstr[1] "corythosaurus" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -96423,7 +96854,7 @@ msgid_plural "edmontosaurus" msgstr[0] "edmontosaurus" msgstr[1] "edmontosaurus" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "Es un dinosaurio enorme y escamoso con un pico ancho sin dientes." @@ -96434,7 +96865,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "pachycephalosaurus" msgstr[1] "pachycephalosaurus" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -96449,7 +96880,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "pachyrhinosaurus" msgstr[1] "pachyrhinosaurus" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -96464,7 +96895,7 @@ msgid_plural "pentaceratops" msgstr[0] "pentaceratops" msgstr[1] "pentaceratops" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -96479,7 +96910,7 @@ msgid_plural "kosmoceratops" msgstr[0] "kosmoceratops" msgstr[1] "kosmoceratops" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -96495,7 +96926,7 @@ msgid_plural "torosaurus" msgstr[0] "torosaurus" msgstr[1] "torosaurus" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -96510,7 +96941,7 @@ msgid_plural "triceratops" msgstr[0] "triceratops" msgstr[1] "triceratops" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -96525,7 +96956,7 @@ msgid_plural "dimorphodon" msgstr[0] "dimorphodon" msgstr[1] "dimorphodon" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -96540,7 +96971,7 @@ msgid_plural "pteranodon" msgstr[0] "pteranodon" msgstr[1] "pteranodon" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -96555,7 +96986,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "quetzalcoatlus" msgstr[1] "quetzalcoatlus" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -96570,7 +97001,7 @@ msgid_plural "mosasaurus" msgstr[0] "mosasaurus" msgstr[1] "mosasaurus" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -96585,7 +97016,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "Gallimimus bio-operador" msgstr[1] "Gallimimus bio-operadores" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -96600,7 +97031,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "Pachycephalosaurus bio-operador" msgstr[1] "Pachycephalosaurus bio-operadores" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -96616,7 +97047,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "Triceratops bio-operador" msgstr[1] "Triceratops bio-operador" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -96631,7 +97062,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "Velociraptor bio-operador" msgstr[1] "Velociraptor bio-operadores" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -96646,7 +97077,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "Deinonychus bio-operador" msgstr[1] "Deinonychus bio-operadores" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -96661,7 +97092,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "Dimorphodon bio-operador" msgstr[1] "Dimorphodon bio-operadores" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -96676,7 +97107,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "Spinosaurus bio-operador" msgstr[1] "Spinosaurus bio-operadores" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -96808,6 +97239,24 @@ msgstr "" "ojos y otros orificios, que logran mantener unida esta masa temblorosa de " "carne cubierta de moho." +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "gorgosaurus zombi fúngico" +msgstr[1] "gorgosaurus zombis fúngicos" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" +"Lo que alguna vez fue un enorme dinosaurio depredador bípedo con enormes " +"fauces, ahora tiene tallos fúngicos brotando de su boca, ojos y otros " +"orificios, que logran mantener unida esta masa temblorosa de carne cubierta " +"de moho." + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -97451,6 +97900,12 @@ msgid_plural "dark gray and yellow hatchlings" msgstr[0] "cría gris oscuro y amarillo" msgstr[1] "crías gris oscuro y amarillo" +#: lang/json/MONSTER_from_json.py +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" +msgstr[0] "cría verde y magenta" +msgstr[1] "crías verde y magenta" + #: lang/json/MONSTER_from_json.py msgid "red and green hatchling" msgid_plural "red and green hatchlings" @@ -97463,12 +97918,6 @@ msgid_plural "dark gray and white hatchlings" msgstr[0] "cría gris oscuro y blanco" msgstr[1] "crías gris oscuro y blanco" -#: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" -msgstr[0] "cría verde y magenta" -msgstr[1] "crías verde y magenta" - #: lang/json/MONSTER_from_json.py msgid "amargasaurus hatchling" msgid_plural "amargasaurus hatchlings" @@ -97527,7 +97976,6 @@ msgstr[0] "bípedo inmaduro magenta y verde" msgstr[1] "bípedos inmaduros magenta y verde" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -97552,27 +98000,100 @@ msgstr "" "espalda." #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" -msgstr[0] "bípedo inmaduro marrón y blanco" -msgstr[1] "bípedos inmaduros marrón y blanco" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" +msgstr[0] "allosauruses inmaduro" +msgstr[1] "allosauruses inmaduros" +#. ~ Description for juvenile allosaurus #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" -msgstr[0] "bípedo inmaduro rojo y blanco" -msgstr[1] "bípedos inmaduros rojo y blanco" +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "Es la versión joven de un gran dinosaurio bípedo carnívoro." -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" +msgstr[0] "acrocanthosaurus inmaduro" +msgstr[1] "acrocanthosaurus inmaduros" + +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." msgstr "" -"Es un joven dinosaurio pequeño, bípedo y carnívoro con enormes ojos " -"brillantes. Podría ser cría de cualquiera de las especies que hay." +"Es la versión joven de un gran dinosaurio bípedo depredador con una cresta " +"alta que le recorre toda la espalda, cubierta de grandes músculos." + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "siats inmaduro" +msgstr[1] "siats inmaduros" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" +"Es la versión joven de un gran dinosaurio bípedo depredador con largas " +"garras y brazos fuertes para agarrar a sus presas." -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "gorgosaurus inmaduro" +msgstr[1] "gorgosaurus inmaduros" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" +"Este dinosaurio joven tiene dientes enormes, ojos feroces y una estructura " +"poderosa para avanzar, junto con dos brazos pequeños y una cabellera y cola " +"de plumas." + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "albertosaurus inmaduro" +msgstr[1] "albertosaurus inmaduros" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" +"Este dinosaurio joven tiene dientes enormes, ojos feroces y una estructura " +"poderosa para avanzar, junto con dos brazos largos y fuertes y una cabellera" +" y cola de plumas." + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "qianzhousaurus inmaduro" +msgstr[1] "qianzhousaurus inmaduros" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" +"Este joven dinosaurio grande, bípedo y cubierto de plumas tiene una boca " +"larga similar a un cocodrilo con dientes filosos." + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "tyrannosaurus inmaduro" +msgstr[1] "tyrannosaurus inmaduros" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -97827,6 +98348,21 @@ msgstr "" "Es el cuerpo tambaleante de un enorme dinosaurio bípedo depredador con " "largas garras y brazos fuertes para agarrar a sus presas." +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "gorgosaurus zombi" +msgstr[1] "gorgosaurus zombis" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" +"Es un cuerpo gigante de dinosaurio con mandíbulas enormes que babean un " +"líquido negro." + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -97954,7 +98490,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "amargasaurus zombi" msgstr[1] "amargasaurus zombis" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -98504,6 +99040,7 @@ msgstr[1] "dilophosaurus zombis calcinados" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -98559,6 +99096,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "siats zombi calcinado" msgstr[1] "siats zombis calcinados" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "gorgosaurus zombi calcinado" +msgstr[1] "gorgosaurus zombis calcinados" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -99029,6 +99572,21 @@ msgstr "" "garras y brazos fuertes. Su cuerpo entero está abultado con músculos " "dilatados y heridas infectadas e hinchadas." +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "Goliat Gorgosaurus" +msgstr[1] "Goliats Gorgosaurus" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" +"Es un dinosaurio zombi con mandíbulas gigantescas que se elevan de un cuerpo" +" abultado con músculos dilatados y heridas infectadas e hinchadas." + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -99065,7 +99623,7 @@ msgid_plural "Rage Rex" msgstr[0] "Rex Iracundo" msgstr[1] "Rexes Iracundos" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -99081,7 +99639,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "Gallimimus repugnante" msgstr[1] "Gallimimus repugnantes" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -99099,7 +99657,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "Nothronychus Perverso" msgstr[1] "Nothronychus Perversos" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -99172,7 +99730,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "Apatosaurus Anabólico" msgstr[1] "Apatosaurus Anabólicos" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -99248,7 +99806,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "Alamosaurus Anabólico" msgstr[1] "Alamosaurus Anabólicos" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -99552,12 +100110,27 @@ msgstr "" "hinchadas." #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" -msgstr[0] "Spinosaurus zombi sombrío" -msgstr[1] "Spinosaurus zombis sombríos" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "ceratosaurus zombi sombrío" +msgstr[1] "ceratosaurus zombis sombríos" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" +"Una extraña sombra envuelve a esta criatura. Podés distinguir la forma de un" +" enorme dinosaurio bípedo con cuernos, púas y dientes grandes y filosos." + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" +msgstr[0] "spinosaurus zombi sombrío" +msgstr[1] "spinosaurus zombis sombríos" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99569,76 +100142,78 @@ msgstr "" "una trompa en forma de V." #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" -msgstr[0] "Z-Rex sombrío" -msgstr[1] "Z-Rexes sombríos" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" +msgstr[0] "allosaurus zombi sombrío" +msgstr[1] "allosaurus zombis sombríos" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" "Una extraña sombra envuelve a esta criatura. Podés distinguir la forma de un" -" enorme dinosaurio bípedo con bordes con plumas. La cabeza parece grande, " -"donde podrían entrar muchos dientes también grandes." +" enorme dinosaurio bípedo con dientes grandes y filosos." #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" -msgstr[0] "Albertosaurus sombrío" -msgstr[1] "Albertosaurus sombríos" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" +msgstr[0] "gorgosaurus zombi sombrío" +msgstr[1] "gorgosaurus zombis sombríos" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" "Una extraña sombra envuelve a esta criatura. Podés distinguir la forma de un" -" enorme dinosaurio bípedo con bordes con plumas. La cabeza parece grande y " -"debajo tiene una garras preocupantes." +" enorme dinosaurio bípedo con bordes con plumas. La cabeza parece grande " +"como si pudiera contener muchos dientes enormes y filosos." #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" -msgstr[0] "Ankylosaurus sombrío" -msgstr[1] "Ankylosaurus sombríos" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" +msgstr[0] "albertosaurus zombi sombrío" +msgstr[1] "albertosaurus zombis sombríos" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" "Una extraña sombra envuelve a esta criatura. Podés distinguir la forma de un" -" enorme y muy blindado dinosaurio de cuatro patas, y con una cola con púas." +" enorme dinosaurio bípedo con bordes con plumas. La cabeza parece grande y " +"debajo tiene una garras preocupantes." #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" -msgstr[0] "Allosaurus sombrío" -msgstr[1] "Allosaurus sombríos" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" +msgstr[0] "Z-Rex sombrío" +msgstr[1] "Z-Rexes sombríos" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" "Una extraña sombra envuelve a esta criatura. Podés distinguir la forma de un" -" enorme dinosaurio bípedo con dientes grandes y filosos." +" enorme dinosaurio bípedo con bordes con plumas. La cabeza parece grande, " +"donde podrían entrar muchos dientes también grandes." #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" -msgstr[0] "Nothronychus sombrío" -msgstr[1] "Nothronychus sombríos" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" +msgstr[0] "nothronychus zombi sombrío" +msgstr[1] "nothronychus zombis sombríos" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99649,12 +100224,12 @@ msgstr "" " sus patas delanteras." #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" -msgstr[0] "Deinonychus sombrío" -msgstr[1] "Deinonychus sombríos" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" +msgstr[0] "deinonychus zombi sombrío" +msgstr[1] "deinonychus zombis sombríos" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99666,12 +100241,12 @@ msgstr "" "con forma de hoz." #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" -msgstr[0] "Utahraptor sombrío" -msgstr[1] "Utahraptor sombríos" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" +msgstr[0] "utahraptor zombi sombrío" +msgstr[1] "utahraptor zombis sombríos" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99683,19 +100258,19 @@ msgstr "" "garras con forma de hoz." #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" -msgstr[0] "Ceratosaurus sombrío" -msgstr[1] "Ceratosaurus sombríos" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" +msgstr[0] "ankylosaurus zombi sombrío" +msgstr[1] "ankylosaurus zombis sombríos" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" "Una extraña sombra envuelve a esta criatura. Podés distinguir la forma de un" -" enorme dinosaurio bípedo con cuernos, púas y dientes grandes y filosos." +" enorme y muy blindado dinosaurio de cuatro patas, y con una cola con púas." #: lang/json/MONSTER_from_json.py msgid "Bone Dragon" @@ -99730,7 +100305,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "spinosaurus esquelético" msgstr[1] "spinosaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -99746,7 +100321,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "allosaurus esquelético" msgstr[1] "allosaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99761,7 +100337,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "acrocanthosaurus esquelético" msgstr[1] "acrocanthosaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -99777,7 +100353,7 @@ msgid_plural "skeletal siats" msgstr[0] "siats esquelético" msgstr[1] "siats esqueléticos" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -99787,13 +100363,19 @@ msgstr "" "filosos que chorrean una viscosidad negra. Tiene garras largas y brazos " "fuertes." +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "gorgosaurus esquelético" +msgstr[1] "gorgosaurus esqueléticos" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "albertosaurus esquelético" msgstr[1] "albertosaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99809,7 +100391,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "qianzhousaurus esquelético" msgstr[1] "qianzhousaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -99839,7 +100421,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "gallimimus esquelético" msgstr[1] "gallimimus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -99853,7 +100435,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "nothronychus esquelético" msgstr[1] "nothronychus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99869,8 +100451,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "deinonychus esquelético" msgstr[1] "deinonychus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99892,7 +100474,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "amargasaurus blindado" msgstr[1] "amargasaurus blindados" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -99909,7 +100491,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "apatosaurus blindado" msgstr[1] "apatosaurus blindados" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -99924,7 +100506,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "brontosaurus blindado" msgstr[1] "brontosaurus blindados" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -99940,7 +100522,7 @@ msgid_plural "armored diplodocus" msgstr[0] "diplodocus blindado" msgstr[1] "diplodocus blindados" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -99955,7 +100537,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "camarasaurus blindado" msgstr[1] "camarasaurus blindados" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -99970,7 +100552,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "brachiosaurus blindado" msgstr[1] "brachiosaurus blindados" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -99985,7 +100567,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "alamosaurus blindado" msgstr[1] "alamosaurus blindados" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -100000,7 +100582,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "stegosaurus esquelético" msgstr[1] "stegosaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -100016,7 +100598,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "dyoplosaurus esquelético" msgstr[1] "dyoplosaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -100033,7 +100615,7 @@ msgid_plural "Bone Fortress" msgstr[0] "Fortaleza Ósea" msgstr[1] "Fortalezas Óseas" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -100050,7 +100632,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "nodosaurus blindado" msgstr[1] "nodosaurus blindados" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -100066,7 +100648,7 @@ msgid_plural "armored edmontonia" msgstr[0] "edmontonia blindado" msgstr[1] "edmontonia blindados" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -100081,7 +100663,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "camptosaurus blindado" msgstr[1] "camptosaurus blindados" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -100096,7 +100678,7 @@ msgid_plural "armored maiasaura" msgstr[0] "maiasaura blindado" msgstr[1] "maiasaura blindados" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -100112,7 +100694,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "parasaurolophus blindado" msgstr[1] "parasaurolophus blindados" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -100127,7 +100709,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "corythosaurus blindado" msgstr[1] "corythosaurus blindados" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -100142,7 +100724,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "Edmontosaurus blindado" msgstr[1] "Edmontosaurus blindados" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -100157,7 +100739,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "pachycephalosaurus protegido" msgstr[1] "pachycephalosaurus protegidos" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -100172,7 +100754,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "pachyrhinosaurus protegido" msgstr[1] "pachyrhinosaurus protegidos" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -100188,7 +100770,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "pentaceratops protegido" msgstr[1] "pentaceratops protegidos" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -100204,7 +100786,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "kosmoceratops blindado" msgstr[1] "kosmoceratops blindados" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -100219,7 +100801,7 @@ msgid_plural "armored torosaurus" msgstr[0] "torosaurus blindado" msgstr[1] "torosaurus blindados" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -100235,7 +100817,7 @@ msgid_plural "armored triceratops" msgstr[0] "triceratops blindado" msgstr[1] "triceratops blindados" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -100251,7 +100833,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "Camionusaurus Rex" msgstr[1] "Camionusaurus Rexes" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -100268,7 +100850,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "Tanquylosaurus" msgstr[1] "Tanquylosaurus" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -100282,10 +100864,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "Goliath Rex" msgid_plural "Goliath Rex" -msgstr[0] "Goliath Rex" -msgstr[1] "Goliath Rexes" +msgstr[0] "Goliat Rex" +msgstr[1] "Goliat Rexes" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -100301,7 +100883,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "Ankylosaurus gigantón" msgstr[1] "Ankylosaurus gigantones" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -100317,7 +100899,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "Dimorphodon zombi" msgstr[1] "Dimorphodon zombis" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -100366,7 +100948,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "CROWS II, ametralladora pesada" msgstr[1] "CROWS II, ametralladoras pesadas" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -100387,7 +100969,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "CROWS II, ametralladora ligera" msgstr[1] "CROWS II, ametralladoras ligeras" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -100771,7 +101353,7 @@ msgid_plural "forge hounds" msgstr[0] "sabuesos de forja" msgstr[1] "sabuesos de forja" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -101139,7 +101721,7 @@ msgid_plural "hunllef rams" msgstr[0] "carnero Hunllef" msgstr[1] "carneros Hunllef" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -101303,6 +101885,27 @@ msgstr "" "verdaderos en las afueras de Quebec y Louisiana, en el tiempo que le quedaba" " después de destrozar cualquier signo de humanidad en su territorio." +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "pesadilla ardiente" +msgstr[1] "pesadillas ardientes" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" +"Es una figura colosal que parece estar hecha enteramente de sombras " +"envueltas en llamas. Sus inmensas alas oscuras se extienden de pared a " +"pared. Dos ojos que parecen brasas ardientes están mirándote con odio. En " +"una mano tiene una espada enorme, en la otra tiene varios látigos, las dos " +"brillando con llamas ardientes." + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -101636,7 +102239,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "galletita róbalo de boca grande" msgstr[1] "galletitas róbalo de boca grande" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -101984,7 +102587,7 @@ msgstr "" "militar y servicio de escolta. Avanza con un conjunto de bandas hidráulicas " "y está armado con una M16A4." -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -104320,26 +104923,28 @@ msgstr "Ciega al enemigo por un tiempo breve." #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Slime Spray" -msgstr "" +msgstr "Chorro de Slime" #. ~ Description for Slime Spray #: lang/json/SPELL_from_json.py msgid "Spray slime onto an enemy to slow them down." -msgstr "" +msgstr "Proyecta un chorro de slime hacia el enemigo para hacerlo más lento." #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Bioluminescent Flare" -msgstr "" +msgstr "Bengala Bioluminiscente" #. ~ Description for Bioluminescent Flare #: lang/json/SPELL_from_json.py msgid "" "Projects a spray of bioluminescent goo that illuminates the area around it." msgstr "" +"Proyecta un chorro de viscosidad bioluminiscente que ilumina el área a su " +"alrededor." #: lang/json/SPELL_from_json.py msgid "Short Leap" -msgstr "" +msgstr "Salto Corto" #. ~ Description for Short Leap #: lang/json/SPELL_from_json.py @@ -104347,10 +104952,12 @@ msgid "" "You squat down, build up tension in your legs and release. Launching " "yourself quite a distance." msgstr "" +"Te agachás, juntás tensión en tus piernas y soltás, lanzándote una distancia" +" considerable." #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Crushing Leap" -msgstr "" +msgstr "Salto Devastador" #. ~ Description for Crushing Leap #: lang/json/SPELL_from_json.py @@ -104359,6 +104966,9 @@ msgid "" "ability to target and land in the way to do maximum damage to any target in " "your way. Death from above." msgstr "" +"Te agachás, juntás tensión en tus piernas y soltás. Tenés la habilidad de " +"apuntar y aterrizar de manera de ocasionar el máximo daño en el objetivo. " +"Muerte desde arriba." #: lang/json/SPELL_from_json.py msgid "Cranial Explosion" @@ -105452,7 +106062,7 @@ msgstr "" #: lang/json/SPELL_from_json.py msgid "Conjure Random Magical Throwing Blade" -msgstr "" +msgstr "Conjurar Cuchilla Arrojadiza Mágica" #. ~ Description for Conjure Random Magical Throwing Blade #: lang/json/SPELL_from_json.py @@ -105460,10 +106070,12 @@ msgid "" "conjures a magical throwing knife, one of the spells specified in extra " "effects" msgstr "" +"conjura un cuchillo arrojadizo mágico, uno de los hechizos especificados en " +"los efectos adicionales" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade I" -msgstr "" +msgstr "Conjurar Cuchilla Arrojadiza Mágica I" #. ~ Description for Conjure Magical Throwing Blade I #. ~ Description for Conjure Magical Throwing Blade Fire @@ -105473,16 +106085,17 @@ msgstr "" #. ~ Description for Conjure Magical Throwing Blade Pure #: lang/json/SPELL_from_json.py msgid "conjures 1 magical throwing knife" -msgstr "" +msgstr "conjura 1 cuchillo arrojadizo mágico" #. ~ Message for SPELL 'Conjure Magical Throwing Blade I' #: lang/json/SPELL_from_json.py msgid "You activate your bag and a throwing knife appears, ready to throw!" msgstr "" +"Activás tu bolsa y aparece un cuchillo arrojadizo ¡listo para ser tirado!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Fire" -msgstr "" +msgstr "Conjurar Cuchilla Arrojadiza Mágica Fuego" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Fire' #: lang/json/SPELL_from_json.py @@ -105490,10 +106103,12 @@ msgid "" "You activate your bag and a throwing knife wrapped in ethereal flames " "appears, ready to throw!" msgstr "" +"Activás tu bolsa y aparece un cuchillo arrojadizo envuelto en llamas etéreas" +" ¡listo para ser tirado!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Cold" -msgstr "" +msgstr "Conjurar Cuchilla Arrojadiza Mágica Frío" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Cold' #: lang/json/SPELL_from_json.py @@ -105501,10 +106116,12 @@ msgid "" "You activate your bag and a throwing knife emanating cold appears, ready to " "throw!" msgstr "" +"Activás tu bolsa y aparece un cuchillo arrojadizo que emana frío ¡listo para" +" ser tirado!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Cut" -msgstr "" +msgstr "Conjurar Cuchilla Arrojadiza Mágica Filo" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Cut' #: lang/json/SPELL_from_json.py @@ -105512,10 +106129,12 @@ msgid "" "You activate your bag and a throwing knife with unnaturally sharp edges " "appears, ready to throw!" msgstr "" +"Activás tu bolsa y aparece un cuchillo arrojadizo con un filo sobrenatural " +"¡listo para ser tirado!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Biological" -msgstr "" +msgstr "Conjurar Cuchilla Arrojadiza Mágica Biológica" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Biological' #: lang/json/SPELL_from_json.py @@ -105523,10 +106142,12 @@ msgid "" "You activate your bag and a throwing knife covered in dark ooze appears, " "ready to throw!" msgstr "" +"Activás tu bolsa y aparece un cuchillo arrojadizo cubierto en un líquido " +"espeso y oscuro ¡listo para ser tirado!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Pure" -msgstr "" +msgstr "Conjurar Cuchilla Arrojadiza Mágica Pura" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Pure' #: lang/json/SPELL_from_json.py @@ -105535,6 +106156,8 @@ msgid "" "hand into a shape of knife. It seems vastly more powerful than other knives" " that appear from the bag!" msgstr "" +"Activás tu bolsa y un destello mágico toma forma de cuchillo en tu mano. " +"¡Parece mucho más poderoso que otros cuchillos que aparecieron de la bolsa!" #: lang/json/SPELL_from_json.py msgid "Recover Mana" @@ -107523,7 +108146,7 @@ msgstr[1] "cascos de minero (enc.)" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -107567,7 +108190,7 @@ msgstr "Apagar" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -108646,7 +109269,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "sistema RX11 de suministro de estimulantes" msgstr[1] "sistema RX11 de suministro de estimulantes" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -109330,17 +109953,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "orejeras para tirador" msgstr[1] "orejeras para tirador" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "Encendés las orejeras." -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "Las orejeras se quedaron sin pilas." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -109353,7 +109976,7 @@ msgstr "" "sonido. Cuando están encendidas, bloquean sonidos de hasta cierta cantidad " "de decibeles. Ahora están apagadas." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -109606,7 +110229,6 @@ msgid "You turn the flight helmet on." msgstr "Encendés el casco de vuelo." #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -109620,24 +110242,36 @@ msgstr "" #: lang/json/TOOL_ARMOR_from_json.py msgid "military flight helmet (on)" msgid_plural "military flight helmets (on)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "casco militar de vuelo (enc.)" +msgstr[1] "cascos militares de vuelo (enc.)" + +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" +"Es un casco militar de vuelo con varios dispositivos LED titilando " +"periódicamente. Adornado con un visor, micrófono y sistema de reducción de " +"ruido. El casco tiene unas ranuras plásticas para permitir diferentes " +"equipamientos." #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "gorra de plato" +msgstr[1] "gorras de plato" #. ~ Use action menu_text for Combo cover. #: lang/json/TOOL_ARMOR_from_json.py msgid "Salute" -msgstr "" +msgstr "Hacer la venia" #. ~ Use action msg for Combo cover. #: lang/json/TOOL_ARMOR_from_json.py msgid "You bring your hand to your cover and issue a salute." -msgstr "" +msgstr "Llevás tu mano hacia tu gorra y hacés la venia." #. ~ Description for Combo cover #: lang/json/TOOL_ARMOR_from_json.py @@ -109645,6 +110279,8 @@ msgid "" "A military officer's combo cover, or peaked cap. It conveys an air of " "authority, while keeping the sun out of your eyes." msgstr "" +"Es la gorra de plato de un oficial militar. Posee un aire de autoridad a la " +"vez que mantiene los ojos protegidos del sol." #: lang/json/TOOL_ARMOR_from_json.py msgid "FB51 optical cloak" @@ -110058,7 +110694,7 @@ msgid_plural "bagpipes" msgstr[0] "gaita" msgstr[1] "gaitas" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -110788,8 +111424,8 @@ msgstr "" #: lang/json/TOOL_ARMOR_from_json.py msgid "Bag of Infinite Throwing Knives" msgid_plural "Bags of Infinite Throwing Knives" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Bolsa de Cuchillos Arrojadizos Infinitos" +msgstr[1] "Bolsas de Cuchillos Arrojadizos Infinitos" #. ~ Description for Bag of Infinite Throwing Knives #: lang/json/TOOL_ARMOR_from_json.py @@ -110797,6 +111433,8 @@ msgid "" "This bag conjures a magical throwing knife on activation. Only refills when" " worn." msgstr "" +"Esta bolsa conjura un cuchillo arrojadizo mágico cuando se la activa. Solo " +"se vuelve a llenar cuando se usa puesta." #: lang/json/TOOL_ARMOR_from_json.py msgid "magic leather belt" @@ -110816,7 +111454,7 @@ msgid_plural "Megingjörð" msgstr[0] "Megingjörð" msgstr[1] "Megingjörð" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -110908,7 +111546,7 @@ msgid_plural "escape boots" msgstr[0] "botas de escape" msgstr[1] "botas de escape" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -111157,6 +111795,8 @@ msgid "" "An ornate silver ring engraved with daggers that conjures three mundane " "throwing knives on activation." msgstr "" +"Es un decorado anillo de plata grabado con dagas que conjura tres cuchillos " +"arrojadizos mundanos al activarlo." #: lang/json/TOOL_ARMOR_from_json.py msgid "eel ring" @@ -111746,7 +112386,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "escalpelo quirúrgico autónomo" msgstr[1] "escalpelos quirúrgicos autónomos" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -113861,7 +114501,7 @@ msgstr "" "originaria de Nepal. Tiene una cuchilla grande con una curva hacia el " "interior, y se puede usar como herramienta y como arma." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -113872,7 +114512,7 @@ msgstr "" " una borla unida al pomo. Una de las cuatro armas principales de su " "tradición, junto con el sable dao, la lanza qiang y el bastón gun." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -113980,7 +114620,7 @@ msgid_plural "dao" msgstr[0] "dao" msgstr[1] "dao" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -114042,7 +114682,7 @@ msgstr "" "Esta ha sido modificada y personalizada para poder ponerse en casi cualquier" " arma si querés, excepto pistolas y subfusiles." -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -114054,7 +114694,7 @@ msgstr "" "wakizashi. Es una cuchilla letal, aunque es más pequeña que sus familiares " "más famosos." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -114093,7 +114733,7 @@ msgstr "" "Es una daga de ceremonia usada por los sijes. Esta no parece particularmente" " bien hecha." -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -114213,7 +114853,7 @@ msgstr "" "caballero o un espadachín. Ligera y rápida, hace que cualquier batalla sea " "con estilo." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " @@ -114222,7 +114862,7 @@ msgstr "" "Es una rara espada japonesa. Es letal contra enemigos sin armadura, pero " "igual es bastante eficaz contra las armaduras." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -114240,7 +114880,7 @@ msgstr "" "Es una enorme espada de dos manos alemana. Aunque no estás muy seguro de que" " tenga que ser así de flexible." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -114430,7 +115070,7 @@ msgid_plural "synthetic fabric" msgstr[0] "tela sintética" msgstr[1] "tela sintética" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -115307,7 +115947,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "par de esposas electrónicas" msgstr[1] "pares de esposas electrónicas" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -118007,12 +118647,12 @@ msgstr "La linterna reforzada se quedó sin pilas." #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" "Es una linterna led reforzada de forma tubular y de aluminio, utilizada " -"comúnmente por los guardias de seguridad. Es una decente arma de cuerpo a " -"cuerpo. Usala para encenderla, si tiene pilas emitirá luz." +"comúnmente por los guardias de seguridad. Usala para encenderla y proveer " +"luz incluso bajo el agua, si tiene pilas." #: lang/json/TOOL_from_json.py msgid "heavy duty flashlight (on)" @@ -118787,6 +119427,45 @@ msgstr[1] "moldes de arena de fundición" msgid "A mold for casting molten metals into different shapes" msgstr "Es un molde para darle diferentes formas a metales derretidos." +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "piedras de pulir" +msgstr[1] "piedras de pulir" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" +"Es una piedra grande y natural con una superficie plana que se puede usar " +"para pulir." + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "piedra de amolar a pedal" +msgstr[1] "piedras de amolar a pedal" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" +"Es una piedra de amolar circular que se acciona a pedal, útil para afilar " +"metal." + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "espátula de acero" +msgstr[1] "espátulas de acero" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" +"Es una herramienta de acero endurecido similar a un bastren pero para " +"trabajar metal." + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -119564,7 +120243,7 @@ msgid_plural "shears" msgstr[0] "tijera para esquilar" msgstr[1] "tijeras para esquilar" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "Son unas tijeras diseñadas para cortarle la lana a las ovejas." @@ -119575,7 +120254,7 @@ msgid_plural "electric shears" msgstr[0] "esquiladora" msgstr[1] "esquiladoras" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -119627,6 +120306,37 @@ msgstr "" "Es un contenedor de madera usado para transportar mascotas. Lo podés usar en" " un animal para capturarlo, y en un espacio vacío para largarlo." +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "terrario de vidrio" +msgstr[1] "terrarios de vidrio" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" +"Es un recipiente de vidrio diseñado para contener plantas y/o insectos. " +"Existen en una gran variedad de tamaños." + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "lámpara de luciérnaga gigante" +msgstr[1] "lámparas de luciérnaga gigante" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" +"Algún sobreviviente emprendedor ha decidido convertir este terrario en una " +"fuente de luz, utilizando lo que parecen ser una luciérnaga gigante y " +"vegetación trífida." + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -120266,7 +120976,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "filtro de papel cualitativo" msgstr[1] "filtros de papel cualitativos" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -120283,7 +120993,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "filtro de papel cuantitativo" msgstr[1] "filtros de papel cuantitativos" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -120860,8 +121570,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "Biotecnología Mi-go" msgstr[1] "Biotecnología Mi-go" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -120869,8 +121579,8 @@ msgid_plural "%s (happy)" msgstr[0] "%s (feliz)" msgstr[1] "%s (feliz)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -120878,8 +121588,8 @@ msgid_plural "%s (focus)" msgstr[0] "%s (concentración)" msgstr[1] "%s (concentración)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -120887,8 +121597,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "%s (alivio de dolor)" msgstr[1] "%s (alivio de dolor)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -120896,7 +121606,7 @@ msgid_plural "%s (wake up)" msgstr[0] "%s (despertar)" msgstr[1] "%s (despertar)" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "Es una herramienta de biotecnología mi-go." @@ -121406,7 +122116,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "retazos de ropa de algodón" msgstr[1] "retazos de ropa de algodón" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -121668,13 +122378,13 @@ msgid_plural "loose caltrops" msgstr[0] "miguelitos sueltos" msgstr[1] "miguelitos sueltos" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "Desparramás los miguelitos en el %s." -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -121690,13 +122400,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "miguelitos sueltos de vidrio" msgstr[1] "miguelitos sueltos de vidrio" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "Desparramás los miguelitos de vidrio en el %s." -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -122236,6 +122946,26 @@ msgstr "" "Esto es un taladro sin cable, alimentado con baterías, con una variedad de " "puntas para el taladro." +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "rotomartillo inalámbrico" +msgstr[1] "rotomartillos inalámbricos" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" +"Es un rotomartillo inalámbrico alimentado por una batería, diseñado para " +"rotar fuertemente a través de un martillo giratorio. Viene con un equipo de " +"cabezales y hace un fuerte ruido de golpeteo cuando está funcionando. " +"Podrías usarlo para los tornillos grandes o incluso para cambiar la rueda de" +" un auto." + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -122568,7 +123298,7 @@ msgid_plural "pliers" msgstr[0] "tenaza" msgstr[1] "tenazas" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " @@ -122578,6 +123308,25 @@ msgstr "" "mecánicos básicos. Para otras cosas más complejas vas a necesitar una llave " "francesa. " +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "pinza perro" +msgstr[1] "pinzas perro" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" +"Esta pinza tiene una cabeza muy robusta y un mecanismo ajustable para fijar " +"el agarre en el desafortunado objeto que quede atrapado con esta pinza. " +"Podrías agarrar y girar la cabeza de un tornillo grande, o juntar dos partes" +" temporalmente." + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -122641,6 +123390,40 @@ msgstr "" "Es un juego de destornilladores de varios tamaños y tipos de punta. Te " "garantiza tener la herramienta adecuada para un trabajo preciso." +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "equipo de destornilladores de tubo" +msgstr[1] "equipos de destornilladores de tubo" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" +"Es un destornillador con trinquete con una colección de sócalos hexagonales " +"para girar pequeños tornillos o tuercas, incluyendo un par de brocas " +"estándares." + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "equipo de llaves de tubo" +msgstr[1] "equipos de llaves de tubo" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" +"Es una llave con trinquete y mango grueso con diversos sócalos " +"intercambiables para los tamaños comunes hexagonales de tornillos. Podrías " +"aflojar o apretar tornillos bastante grandes con esto y el trinquete hace un" +" ruido satisfactorio." + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -122795,12 +123578,29 @@ msgstr "" "usarlo para carnear." #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "llave francesa pequeña" +msgstr[1] "llaves francesas pequeñas" + +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" +"Esta llave francesa ajustable es compacta, con un pequeño mango que entra " +"justo en la palma de la mano. Puede usarse para girar pequeños tornillos o " +"tuercas hexagonales." + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" msgstr[0] "llave francesa" msgstr[1] "llaves francesas" -#. ~ Description for wrench +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " @@ -122809,6 +123609,23 @@ msgstr "" "Es una llave francesa ajustable. Puede funcionar como una decente arma de " "cuerpo a cuerpo, y es utilizada en muchas tareas mecánicas." +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "llave francesa grande" +msgstr[1] "llaves francesas grandes" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" +"Esta llave francesa ajustable es inusualmente grande, con un mango largo y " +"cabeza que se ensancha más de cinco centímetros. Podrías girar la mayoría de" +" los tornillos con esto y debería poder usarse en las tuercas de las ruedas." + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -123162,43 +123979,6 @@ msgstr "" "identificará como aliado y atacará a todos tus enemigos con sus cañones " "láser giratorios." -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "mecha-gallina inactiva" -msgstr[1] "mecha-gallinas inactivas" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" -"La mecha-gallina se levanta, se mueve y comienza a inspeccionar el área." - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "La mecha-gallina hace un zumbido y te apunta directamente. ¡Cubrite!" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" -"Es una mecha-gallina inactiva. Usar este objeto incluye ubicarla en el " -"suelo, cargar la unidad con balas 5.56 y los cartuchos de granada 40mm de tu" -" inventario (si querés dividir tu munición, dejá aparte lo que NO quieras " -"darle al robot) y encenderla. Si fue reprogramada y cableada exitosamente, " -"la mecha-gallina te identificará como aliado, deambulará o te seguirá, y " -"atacará a todos los enemigos con su arma y lanzagranadas integrados." - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -123237,6 +124017,12 @@ msgstr "" "el dron tanque te identificará como aliado, deambulará o te seguirá, y " "atacará a todos los enemigos con su arma y lanzagranadas integrados." +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "mecha-gallina inactiva" +msgstr[1] "mecha-gallinas inactivas" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -123504,8 +124290,8 @@ msgstr[1] "cazaratas inactivos" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" "Es un dron hexápodo pequeño diseñado para contener alimañas pequeñas, " @@ -124041,7 +124827,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "377-UASTA (arma)" msgstr[1] "377-UASTA (armas)" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -124549,7 +125335,7 @@ msgstr "" " tronidos y ruidos de estática. ¡Rápido, alejate de esto antes de que " "atraiga enemigos!" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -124614,7 +125400,7 @@ msgstr "" "filosa y de construcción sencilla, pero puede mantener a los enemigos a " "distancia hasta que consigas algo mejor." -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -124638,7 +125424,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "CROWS II, ametralladora ligera inactiva" msgstr[1] "CROWS II, ametralladoras ligeras inactivas" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -125799,6 +126585,19 @@ msgstr "" "posible de cortar los materiales más duros, y en las cuarteles de bomberos " "es la favorita." +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" +"Es una clásica espada medieval de un tamaño medio entre la espada de " +"caballero más liviana y las espadas de dos manos. Gracias al misterioso " +"metal plateado con el cual fue forjada, es más fuerte que el acero templado " +"a la vez que mucho más liviana." + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -125857,6 +126656,37 @@ msgstr[1] "pedazos de caramelo duro" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "Esto es un pedazo de caramelo duro. Puede ser roto para hacer azúcar." +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" +"La mecha-gallina se levanta, se mueve y comienza a inspeccionar el área." + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "La mecha-gallina hace un zumbido y te apunta directamente. ¡Cubrite!" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" +"Es una mecha-gallina inactiva. Usar este objeto incluye ubicarla en el " +"suelo, cargar la unidad con balas 5.56 y los cartuchos de granada 40mm de tu" +" inventario (si querés dividir tu munición, dejá aparte lo que NO quieras " +"darle al robot) y encenderla. Si fue reprogramada y cableada exitosamente, " +"la mecha-gallina te identificará como aliado, deambulará o te seguirá, y " +"atacará a todos los enemigos con su arma y lanzagranadas integrados." + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -126449,11 +127279,11 @@ msgstr "Umbral de mutación de planta cruzado" #: lang/json/achievement_from_json.py msgid "Finally beat the tortoise" -msgstr "" +msgstr "Finalmente le ganó a la tortuga" #: lang/json/achievement_from_json.py msgid "crossed rabbit mutation threshold" -msgstr "" +msgstr "Umbral de mutación de conejo cruzado" #: lang/json/achievement_from_json.py msgid "Heard of the swarm?" @@ -126569,19 +127399,19 @@ msgstr "Umbral de mutación de troglobio cruzado" #: lang/json/achievement_from_json.py msgid "Carrying your home on your back" -msgstr "" +msgstr "Llevar tu casa al hombro" #: lang/json/achievement_from_json.py msgid "crossed gastropod mutation threshold" -msgstr "" +msgstr "Umbral de mutación gasterópodo cruzado" #: lang/json/achievement_from_json.py msgid "Leaping forward in life" -msgstr "" +msgstr "Avanzando a saltos por la vida" #: lang/json/achievement_from_json.py msgid "crossed batrachian mutation threshold" -msgstr "" +msgstr "Umbral de mutación de batracio cruzado" #: lang/json/achievement_from_json.py msgid "Thus spake zombiethustra" @@ -126800,8 +127630,8 @@ msgid "Fashion Designer" msgstr "Diseñador de Moda" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." -msgstr "Hombre, mujer, mutante por igual." +msgid "From catwalk to cataclysm." +msgstr "De la pasarela al Cataclismo." #: lang/json/achievement_from_json.py msgid "Survivalist" @@ -127305,6 +128135,10 @@ msgstr "construir" msgid "mining" msgstr "hacer mina" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "trapear" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "ordenar" @@ -127575,7 +128409,7 @@ msgstr "cortar el alambre" #: lang/json/activity_type_from_json.py msgid "prying open" -msgstr "" +msgstr "forzar" #: lang/json/activity_type_from_json.py msgid "chopping down a tree" @@ -128189,19 +129023,17 @@ msgstr "" "cuando caminás." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "Placas de Aleación - Brazos" +msgid "Intradermal Alloy - Arms" +msgstr "Aleación intradérmica - Brazos" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" -"La carne en tus brazos ha sido reemplazada quirúrgicamente por placas de " -"aleación. Brinda una protección pasiva que puede ser usada en conjunto con " -"biónicos de artes marciales." +"Una malla de protección mejorada ha sido entrelazada con la carne de tus " +"brazos y manos, protegiéndolos de los traumas físicos." #: lang/json/bionic_from_json.py msgid "Protective Lenses" @@ -128219,45 +129051,43 @@ msgstr "" "tu boca. Cuando llorás, tenés que escupir o tragarte tus lágrimas." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" -msgstr "Placas de Aleación - cabeza" +msgid "Intradermal Alloy - head" +msgstr "Aleación intradérmica - Cabeza" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" -"La carne de tu cabeza ha sido reemplazada quirúrgicamente con placas de " -"aleación, protegiéndote tanto la cabeza como la mandíbula." +"Una malla de protección mejorada ha sido entrelazada en tu cabeza y " +"mandíbula, protegiendo tu cráneo de los traumas físicos." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "Placas de Aleación - Piernas" +msgid "Intradermal Alloy - Legs" +msgstr "Aleación intradérmica - Piernas" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" -"La carne en tus piernas ha sido reemplazada quirúrgicamente por placas de " -"aleación. Brinda una protección pasiva que puede ser usada en conjunto con " -"biónicos de artes marciales." +"Una malla de protección mejorada ha sido entrelazada con la carne de tus " +"piernas y pies, protegiéndolos de los traumas físicos." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" -msgstr "Placas de Aleación - torso" +msgid "Intradermal Alloy - torso" +msgstr "Aleación intradérmica - Torso" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" -"La carne de tu torso ha sido reemplazada quirúrgicamente con placas de " -"aleación, protegiéndolo de cualquier trauma físico." +"Una malla de protección mejorada ha sido entrelazada con la carne de tu " +"torso, protegiéndolo de los traumas físicos." #: lang/json/bionic_from_json.py msgid "Battery System" @@ -128267,12 +129097,12 @@ msgstr "Sistema de Batería" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" "Tenés un sistema de baterías acoplado, por lo que podés usar la energía que " -"está en las baterías comunes. Con la tecla 'E' podés drenar energía de una " -"batería. Se puede encender o apagar cuando quieras." +"está en las baterías comunes. Mediante el menú de biónicos podés drenar " +"energía de una batería. Se puede encender o apagar cuando quieras." #: lang/json/bionic_from_json.py msgid "Monomolecular Blade" @@ -131299,7 +132129,7 @@ msgstr "Construir Ropero" #: lang/json/construction_group_from_json.py msgid "Build Warehouse Shelf" -msgstr "Construir Estantes Metálicos" +msgstr "Construir Estantes de Depósito" #: lang/json/construction_group_from_json.py msgid "Build Water Well" @@ -131683,7 +132513,7 @@ msgstr "Sacar pared" #: lang/json/construction_group_from_json.py msgid "Remove a rock wall" -msgstr "Sacar pared de piedras" +msgstr "Sacar pared de piedra" #: lang/json/construction_group_from_json.py msgid "Remove a segment of the road/sidewalk" @@ -131753,7 +132583,7 @@ msgstr "Tus sueños te dan una sensación rara sobre medicación." #: lang/json/dream_from_json.py msgid "You have a strange dream about rabbits." -msgstr "" +msgstr "Tenés un extraño sueño con conejos." #: lang/json/dream_from_json.py msgid "Your dreams give you a strange furry feeling." @@ -131769,20 +132599,23 @@ msgstr "Tus sueños te hacen sentir una extraña sensación emplumada." #: lang/json/dream_from_json.py msgid "You have a strange dream about snails and slugs in your garden." -msgstr "" +msgstr "Tenés un extraño sueño con caracoles y babosas en tu patio." #: lang/json/dream_from_json.py msgid "Your dreams leave you feeling like something is stuck to you." msgstr "" +"Tus sueños te dejan una sensación como si algo estuviera pegado a vos." #: lang/json/dream_from_json.py msgid "" "You have a strange dream about frogs in a pond near your childhood home." msgstr "" +"Tenés un extraño sueño con ranas en un charco cerca de la casa de tu " +"infancia." #: lang/json/dream_from_json.py msgid "Your dreams contain a croaking concerto." -msgstr "" +msgstr "Tus sueños contiene un croar en concierto." #: lang/json/dream_from_json.py msgid "You have a strange dream about fish." @@ -131973,32 +132806,37 @@ msgstr "" #: lang/json/dream_from_json.py msgid "You have a disturbing dream about running from dogs." -msgstr "" +msgstr "Tenés un sueño perturbador acerca de correr de los perros." #: lang/json/dream_from_json.py msgid "" "While dreaming, you see a distinctively rabbit-like reflection of yourself." msgstr "" +"Mientras soñás ves un distintivo reflejo similar a un conejo de vos mismo." #: lang/json/dream_from_json.py msgid "You have a strange dream of carrying a house on your back." -msgstr "" +msgstr "Tenés un extraño sueño de estar llevando una casa en tu espalda." #: lang/json/dream_from_json.py msgid "" "While dreaming, you see yourself weighted down under massive backpack/tent " "upon your back, as you pass by a mirrored surface." msgstr "" +"Mientras soñás te ves a vos mismo aplastado por una mochila o carpa enorme " +"en tu espalda, mientras pasás por una superficie que te refleja." #: lang/json/dream_from_json.py msgid "You have a disturbing dream of eating insects." -msgstr "" +msgstr "Tenés un sueño perturbador sobre comer insectos." #: lang/json/dream_from_json.py msgid "" "While dreaming, you see yourself in a pond, your face has widened and is " "covered in mucus." msgstr "" +"Mientras soñás te ves a vos mismo en un charco, tu cara es más ancha y está " +"cubierta de mucosidad." #: lang/json/dream_from_json.py msgid "You have strange dreams of soaring through the sky." @@ -132204,11 +133042,11 @@ msgstr "Tenés un perturbador sueño vívido acerca de vivir como un lagarto." #: lang/json/dream_from_json.py msgid "You have a strange dream about being the Easter Bunny." -msgstr "" +msgstr "Tenés un extraño sueño sobre ser un conejo de Pascuas." #: lang/json/dream_from_json.py msgid "You have a comforting and warm dream of living as a rabbit." -msgstr "" +msgstr "Tenés un sueño reconfortante y cálido sobre vivir como un conejo." #: lang/json/dream_from_json.py msgid "" @@ -132253,21 +133091,23 @@ msgstr "" #: lang/json/dream_from_json.py msgid "You dream of leaping from the water to catch your prey." -msgstr "" +msgstr "Soñás saltando desde el agua para cazar a tu presa." #: lang/json/dream_from_json.py msgid "You wake up with your legs pumping as you hop along in your sleep." -msgstr "" +msgstr "Te despertás con tus piernas bombeando mientras saltás en tus sueños." #: lang/json/dream_from_json.py msgid "" "You dream of crawling along the world when you realize you can see three " "hundred and sixty degrees around yourself." msgstr "" +"Soñás con ir arrastrándote por el mundo cuando te das cuenta que podés ver " +"los trescientos sesenta grados a tu alrededor." #: lang/json/dream_from_json.py msgid "You dream of curling up inside a shell to sleep." -msgstr "" +msgstr "Soñás en acurrucarte adentro de un cascarón para dormir." #: lang/json/dream_from_json.py msgid "You vividly dream of running with your pack, hunting a wild animal." @@ -132505,10 +133345,12 @@ msgstr "" #: lang/json/dream_from_json.py msgid "Will your burrow be warm enough for the family in winter?" msgstr "" +"¿Será lo suficientemente cálido tu nido para la familia durante el " +"invierno?" #: lang/json/dream_from_json.py msgid "You dream of outrunning the apocalypse." -msgstr "" +msgstr "Soñás con escaparle corriendo al apocalipsis." #: lang/json/dream_from_json.py msgid "You have a comforting dream of swimming with a school of fish." @@ -132763,22 +133605,28 @@ msgid "" "There is so much that you never imagined, the slime, the legs, and eyestalks" " but the shell was worth it." msgstr "" +"Hay cosas que ni siquiera imaginaste, la baba, las patas y los pedúnculos " +"oculares pero el caparazón valió la pena." #: lang/json/dream_from_json.py msgid "You'll always be home, once you take this last step." -msgstr "" +msgstr "Siempre vas a estar en casa, una vez que tomes el último paso." #: lang/json/dream_from_json.py msgid "" "You'd never considered that frogs were generalist predators before this " "point in your life…" msgstr "" +"Nunca consideraste que las ranas era depredadores tan generales antes de " +"este punto en tu vida…" #: lang/json/dream_from_json.py msgid "" "On land and in the water, you control all that you can reach, and your " "tongue has quite the reach." msgstr "" +"En tierra y en el agua, controlás todo lo que puedas alcanzar y tu lengua " +"tiene un alcance bastante largo." #: lang/json/dream_from_json.py msgid "Your body flows slightly faster than you expected… oh, just a dream." @@ -134531,8 +135379,8 @@ msgstr "Tenés una herida infectada." #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." -msgstr "Sentís infectada tu herida de mordida." +msgid "Your wound feels infected." +msgstr "Sentís infectada tu herida." #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus #. Filled'. @@ -138537,15 +139385,15 @@ msgstr "escombro antiguo" #: lang/json/field_type_from_json.py msgid "glimmer" -msgstr "" +msgstr "esplendor" #: lang/json/field_type_from_json.py msgid "glow" -msgstr "" +msgstr "brillo" #: lang/json/field_type_from_json.py msgid "shine" -msgstr "" +msgstr "destello" #: lang/json/field_type_from_json.py msgid "thin smoke" @@ -139614,8 +140462,7 @@ msgstr "" "cualquier sobreviviente." #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "¡whack!" @@ -139635,9 +140482,8 @@ msgstr "" "visibilidad. A pesar de su nombre, no logra mucho para detener a un vehículo" " en movimiento." -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "¡smash!" @@ -140441,7 +141287,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "¡crunch!" @@ -141209,7 +142055,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "bathtub" -msgstr "bañera" +msgstr "bañadera" #. ~ Description for bathtub #: lang/json/furniture_from_json.py @@ -143178,7 +144024,8 @@ msgstr "" "contenido y realizar las funciones permitidas. Incluso podría ser hackeada, " "si tenés la habilidad." -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "forja" @@ -143331,6 +144178,25 @@ msgstr "" "industriales hasta trabajos hogareños en madera si está alimentado con un " "UPS." +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "terrario de luciérnaga" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" +"Mientras muchos sobrevivientes se enfocaron en intentar recuperar las luces " +"eléctricos, quien sea que viva acá aparentemente decidió hacer uso de los " +"cambios que trajo el cataclismo para producir luz. Este vivero contiene " +"tierra, plantas extrañas que no reconocés y, lo que es más sorpresivo, una " +"luciérnaga mutante gigante." + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -146355,18 +147221,18 @@ msgstr "" "igual vas a encontrarle utilidad a esta pequeña pistola." #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" -msgstr[0] "Kel-Tec P32" -msgstr[1] "Kel-Tec P32" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" +msgstr[0] "Kel-Tec P-32" +msgstr[1] "Kel-Tec P-32" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" -"Uno de los diseños más antiguos de Kel-tec, el P32 es una opción popular " +"Uno de los diseños más antiguos de Kel-Tec, el P-32 es una opción popular " "como arma oculta y uso de apoyo. A pesar de ser extremadamente liviano y " "pequeño, tiene calibre .32 ACP que lo hace fácil de manejar y de controlar " "su retroceso." @@ -146533,21 +147399,21 @@ msgstr "" " y la absurda velocidad de dispara que va de 1200 a 1400 balas por minuto." #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" -msgstr[0] "Kel-Tec P3AT" -msgstr[1] "Kel-Tec P3AT" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" +msgstr[0] "Kel-Tec P-3AT" +msgstr[1] "Kel-Tec P-3AT" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" -"Es esencialmente una Kel-Tec P32 más grande con calibre .380 ACP. La siempre" -" popular P3AT ofrece mejor balística en un paquete chico, ocultable y " -"liviano. La maniobrabilidad deja un poco que desear debido a un retroceso " +"Es esencialmente una Kel-Tec P-32 más grande con calibre .380 ACP. La " +"siempre popular P-3AT ofrece mejor balística en un paquete chico, ocultable " +"y liviano. La maniobrabilidad deja un poco que desear debido a un retroceso " "rápido y controles diminutos." #: lang/json/gun_from_json.py @@ -147744,18 +148610,18 @@ msgstr "" "la gran velocidad y poco peso del cartucho 5.45x39mm." #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" -msgstr[0] "FN Five-Seven" -msgstr[1] "FN Five-Seven" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" +msgstr[0] "FN Five-seveN" +msgstr[1] "FN Five-seveN" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" -"Diseñada para trabajar con la bala 5.7x28mm de FN, la Five-Seven es una " +"Diseñada para trabajar con la bala 5.7x28mm de FN, la Five-seveN es una " "pistola ligera con muy buena capacidad, y buen desempeño contra oponentes " "con armadura." @@ -150550,6 +151416,22 @@ msgid_plural "acid dart guns" msgstr[0] "arma de dardo ácido" msgstr[1] "armas de dardo ácido" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "rifle de combate Rubik PA md. 68" +msgstr[1] "rifles de combate Rubik PA md. 68" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" +"El arma más popular que usa el cartucho 12.3In es, obviamente, el PA Md. 71. Su predecesor, el Md., fue vista por muchos como un fracaso: aunque era fiable y potente, era demasiado pesado para ser usado como arma para infantería, y no lo suficientemente grande como para arma de apoyo. Igual fueron fabricadas suficientes así que durante el apocalipsis zombi ganó popularidad como arma ligera que usa munición ya disponible. Sirvió perfectamente para los propósitos de los Exodii, que tenían mucho menos problemas con su dificultad de manejo.\n" +"\n" +"Este rifle en particular ha sido pintado de un rosa desteñido y tiene la imagen de un anguila sonriendo retorciéndose sobre el cañón." + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -153669,13 +154551,14 @@ msgstr[1] "bípodes" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" "Los bípodes son usados comúnmente en los rifles y ametralladoras, para " "proveer de un apoyo adelante y reducir el movimiento. Aunque mejoran mucho " -"el manejo del retroceso, solo pueden usarse en ciertas superficies y son " -"lentos para armar." +"el manejo del retroceso, solo pueden usarse en ciertas superficies (o tirado" +" cuerpo a tierra) y son lentos para armar." #: lang/json/gunmod_from_json.py msgid "modified bipod" @@ -153686,16 +154569,16 @@ msgstr[1] "bípodes modificados" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" "Los bípodes son usados comúnmente en los rifles y ametralladoras, para " "proveer de un apoyo adelante y reducir el movimiento. Aunque mejoran mucho " -"el manejo del retroceso, solo pueden usarse en ciertas superficies y son " -"lentos para armar. Este ha sido modificado y personalizado pra poner en casi" -" cualquier arma." +"el manejo del retroceso, solo pueden usarse en ciertas superficies (o tirado" +" cuerpo a tierra) y son lentos para armar. Este ha sido modificado y " +"personalizado pra poner en casi cualquier arma." #: lang/json/gunmod_from_json.py msgid "combination gun shotgun" @@ -154312,20 +155195,22 @@ msgstr "" " y el peso." #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" -msgstr "Destripás y fileteás el pescado" +msgid "You gut and fillet the fish." +msgstr "Destripás y fileteás el pescado." #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" -msgstr "Con cuidado, rompés su exoesqueleto para agarrar la carne de adentro" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "Con cuidado, rompés su exoesqueleto para agarrar la carne de adentro." + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." +msgstr "Rompés su duro caparazón para agarrar la carne de adentro." #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" -msgstr "" -"Buscás algún pedazo de biónico rescatable que pueda haber en este " -"experimento fallido." +"You search for any salvageable hardware in what's left of this failed " +"experiment." +msgstr "Buscás algo rescatable que pueda haber en este experimento fallido." #: lang/json/harvest_from_json.py msgid "" @@ -154994,7 +155879,7 @@ msgstr "" "a poder fabricar nada. Si llegás a ponerte lo suficientemente depresivo, " "empezás a sufrir penalidades a las habilidades. Una moral muy alta te llena " "de entusiasmo y energía, y te movés más rápido. A niveles extremadamente " -"altos, empezás a recibir bonus a tus habilidades." +"altos, empezás a recibir bonificaciones a tus habilidades." #: lang/json/help_from_json.py msgid "" @@ -155786,8 +156671,8 @@ msgstr "" "Acordate de leer la descripción del estilo, apretando 'F1' en el menú para " "elegir el estilo. Vas a ver una lista de habilidades activas y pasivas " "asociadas con ese estilo. Son diversas y únicas de cada estilo, y van desde " -"combos especiales hasta bonus dependiendo de la situación en que te " -"encuentres." +"combos especiales hasta bonificaciones dependiendo de la situación en que te" +" encuentres." #: lang/json/help_from_json.py msgid "" @@ -156690,7 +157575,7 @@ msgid "" "Assault rifles are an excellent choice for medium or long range combat, or even close-range bursts against a large number of enemies. They are difficult to use, and are best used by skilled riflemen." msgstr "" "( Rifles de asalto\n" -"Los rifles de asalto son similares a los de caza en varias cosas, como su utilidad en el combate a larga distancia, con bonus y penalidades similares. A diferencia de los rifles de caza, los rifles de asalto tienen disparo automático. Son menos precisos que los rifles de caza y peores todavía si están en modo automático, así que guardalos para cuando seas habilidoso en su manejo.\n" +"Los rifles de asalto son similares a los de caza en varias cosas, como su utilidad en el combate a larga distancia, con bonificaciones y penalidades similares. A diferencia de los rifles de caza, los rifles de asalto tienen disparo automático. Son menos precisos que los rifles de caza y peores todavía si están en modo automático, así que guardalos para cuando seas habilidoso en su manejo.\n" "Son una excelente opción para el combate a media y larga distancia y también en modo ráfaga contra grupos de enemigos cercanos. Son difíciles de usar y solo los rifleros hábiles pueden sacar lo mejor de estas armas." #: lang/json/help_from_json.py @@ -156855,7 +157740,7 @@ msgstr "Encender rápido un fuego" #: lang/json/item_action_from_json.py msgid "Pry crate, window, door or nails" -msgstr "" +msgstr "Forzar caja, ventana, puerta o clavos" #: lang/json/item_action_from_json.py msgid "Pick a lock" @@ -157519,6 +158404,12 @@ msgstr "" "Como arma, este objeto está bien hecho y soportará los " "castigos del combate." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" +"marcaste este artículo para que no muestre gráfico cuando está puesto." + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -158523,6 +159414,15 @@ msgstr "Esto tiene una superficie plana. Sería un buen lugar para comer." msgid "You can craft here." msgstr "Podés fabricar acá." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" +"Quema gasoil o combustible JP8 del tanque del vehículo. También puede quemar" +" biodiésel o aceite de lámpara, aunque es menos eficiente." + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "Desplazarse arriba" @@ -158691,6 +159591,10 @@ msgstr "Desactivar panel" msgid "Change side armor is worn on" msgstr "Cambiar lado donde está la armadura" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "Cambiar visibilidad de armadura en personaje" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "Asignar invlets a armadura" @@ -159803,6 +160707,10 @@ msgstr "Mover cursor arriba" msgid "Move cursor down" msgstr "Mover cursor abajo" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "Cambiar gráfico" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "Salir de pantalla de atajos de teclado" @@ -160003,6 +160911,20 @@ msgstr "Sí" msgid "No" msgstr "No" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "Con amigos" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "Solo yo" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "Cancelar" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "Salir" @@ -161580,15 +162502,15 @@ msgstr "" "Es un cargador estándar de 20 balas para el Skorpion Vz. 61, de .32 ACP." #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" -msgstr[0] "cargador de 7 balas P32" -msgstr[1] "cargadores de 7 balas P32" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" +msgstr[0] "cargador de 7 balas P-32" +msgstr[1] "cargadores de 7 balas P-32" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" -"Es un cargador de caja de acero estándar de 7 balas para el Kel-Tec P32." +"Es un cargador de caja de acero estándar de 7 balas para el Kel-Tec P-32." #: lang/json/magazine_from_json.py msgid "P226 .357 SIG 12-round magazine" @@ -161658,15 +162580,15 @@ msgstr "" "Special y recargarlas rápidamente en un revólver compatible." #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" -msgstr[0] "cargador de 6 balas P3AT" -msgstr[1] "cargadores de 6 balas P3AT" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" +msgstr[0] "cargador de 6 balas P-3AT" +msgstr[1] "cargadores de 6 balas P-3AT" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" -"Es un cargador de caja de acero estándar de 6 balas para el Kel-Tec P3AT." +"Es un cargador de caja de acero estándar de 6 balas para el Kel-Tec P-3AT." #: lang/json/magazine_from_json.py msgid "FN 1910 6-round magazine" @@ -162360,14 +163282,14 @@ msgstr "" "diseñado originalmente para la ametralladora ligera RPK-74." #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" -msgstr[0] "cargador de 20 balas Five-Seven" -msgstr[1] "cargadores de 20 balas Five-Seven" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" +msgstr[0] "cargador de 20 balas Five-seveN" +msgstr[1] "cargadores de 20 balas Five-seveN" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." -msgstr "Es un cargador de capacidad estándar para usar en el FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." +msgstr "Es un cargador de capacidad estándar para usar en el FN Five-seveN." #: lang/json/magazine_from_json.py msgid "P90 50-round magazine" @@ -164928,12 +165850,12 @@ msgstr "Caños y bombas cloacales." #: lang/json/map_extra_from_json.py msgid "Prison Van" -msgstr "" +msgstr "Camioneta de Cárcel" #. ~ Description for Prison Van #: lang/json/map_extra_from_json.py msgid "A violent escape." -msgstr "" +msgstr "Un escape violento." #: lang/json/map_extra_from_json.py msgid "Wraitheon Droneswarm" @@ -166108,6 +167030,16 @@ msgstr "Senda " msgid "PLEASE No fish cleaning or dish washing." msgstr "POR FAVOR Prohibido limpiar peces o lavar platos." +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "Los Comerciantes No Son Bienvenidos" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "Entrar Lado el Otro" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -166546,12 +167478,12 @@ msgstr "Aikido" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" "El aikido es un arte marcial japonés focalizado en la defensa propia y en " -"minimizar el daño hacia el atacante. Utiliza desarmes y tiradas defensivas, " -"pero no tiene técnicas ofensivas." +"minimizar el daño hacia el atacante. Utiliza desarmes y tiradas defensivas " +"pero sus técnicas ofensivas carecen de potencia ofensiva." #. ~ initiate message for martial art '{'str': 'Aikido'}' #: lang/json/martial_art_from_json.py @@ -166574,11 +167506,13 @@ msgstr "Postura de Aikido" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" "Al dejar de lado la ofensiva en favor de la defensa propia, te hacés mejor protegiendo.\n" "\n" -"El daño bloqueado se reduce un 100% de tu Destreza." +"El daño bloqueado se reduce un 100% de tu Destreza, +2 Efectividad de Bloqueo.\n" +"+1.0 Esquivar." #: lang/json/martial_art_from_json.py msgid "Intermediate Aikido" @@ -166591,12 +167525,12 @@ msgstr "Aikido Intermedio" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" "Un practicante intermedio de aikido puede protegerse contra varios oponentes a la vez.\n" "\n" -"El daño bloqueado se reduce un 100% de tu Destreza.\n" +"El daño bloqueado se reduce un 100% de tu Destreza, +1 Efectividad de Bloqueo.\n" "+1 intentos de Bloqueo, +1 intentos de Esquivar." #: lang/json/martial_art_from_json.py @@ -166608,12 +167542,50 @@ msgstr "Aikido Avanzado" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" "Un practicante avanzado de aikido puede protegerse contra varios oponentes a la vez, más que lo normal.\n" "\n" +"+1 Efectividad de Bloqueo.\n" "+1 intentos de Bloqueo, +1 intentos de Esquivar." +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "Esquive Fluido" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" +"Después de esquivar fácilmente, te preparás para contratacar a tu enemigo.\n" +"\n" +"-10% al costo de movimiento.\n" +"Dura 1 turno." + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "Bloqueo Fluido" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" +"Después de bloquear fácilmente, te preparás para contratacar a tu enemigo.\n" +"\n" +"-10% al costo de movimiento.\n" +"Dura 1 turno." + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "Boxeo" @@ -166675,7 +167647,7 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "Counter Chance" -msgstr "Contra" +msgstr "Oportunidad de Contrataque" #. ~ Description of buff 'Counter Chance' for martial art '{'str': 'Boxing'}' #: lang/json/martial_art_from_json.py @@ -166805,12 +167777,12 @@ msgstr "Capoeira Tempo" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." msgstr "" -"No le erraste, es solamente parte de la danza y ¡la mejor parte está por empezar!\n" +"Golpear o errar, ¡es solamente parte de la danza! ¡Y la mejor parte está por empezar!\n" "\n" "+15% daño Contundente.\n" "Dura 2 turnos. Se acumula hasta 3 veces." @@ -166824,12 +167796,13 @@ msgstr "Kung Fu de la Grulla" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" "Uno de los cinco estilos animales Shaolin. La Grulla utiliza técnicas " "intrincadas de mano y saltos para esquivar. La destreza determina el daño " -"que causás, más que la fuerza. También tenés un bonus a un movimiento para " -"esquivar o a esquivar un ataque." +"que causás, más que la fuerza; tenés más posibilidades de esquivar y al " +"esquivar podés hacer técnicas poderosas por un período corto de tiempo." #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -166862,22 +167835,20 @@ msgstr "" "El daño Contundente se incrementa en 75% de tu Destreza pero disminuye en un 75% de tu Fuerza." #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" -msgstr "Vuelo de la Grulla" +msgid "Crane's Stance" +msgstr "Postura de Grulla" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" -"Igualito a un pájaro, te elevás en el aire para esquivar el peligro.\n" +"Como una hermosa grulla, sos muy habilidoso esquivando el peligro.\n" "\n" -"+1.0 a Esquivar.\n" -"Dura 2 turnos." +"+2.0 a Esquivar." #: lang/json/martial_art_from_json.py msgid "Crane's Grace" @@ -166887,15 +167858,33 @@ msgstr "Gracia de Grulla" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." msgstr "" -"Similar a una grulla, te volvés rápido para esquivar el peligro.\n" +"Los Maestros del estilo de la Grulla pueden evadir múltiples enemigos con facilidad.\n" "\n" -"+1 intentos de Esquivar, +1.0 a Esquivar.\n" -"Dura 2 turnos." +"+2 intentos de Esquivar." + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "Vuelo de la Grulla" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." +msgstr "" +"Al igual que la gruilla, podés esquivar rápidamente el peligro y contratacar.\n" +"\n" +"+1 Precisión, +1.0 Esquivar.\n" +"Habilita las técnicas \"Patada de Grulla\" y \"Golpe de Grulla\".\n" +"Dura 3 turnos." #: lang/json/martial_art_from_json.py msgid "Dragon Kung Fu" @@ -166905,14 +167894,16 @@ msgstr "Kung Fu del Dragón" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" "Uno de los cinco estilos animales Shaolin. El Dragón utiliza movimientos " -"fluidos y golpes fuertes. La Inteligencia mejora tu precisión en lugar de la" -" Destreza. Tus ataques son para contratacar lo que desarma a tus oponentes y" -" los prepara para un potente movimiento final." +"fluidos y golpes fuertes. La Inteligencia mejora tu precisión y el daño en " +"lugar de la Destreza y la Fuerza. Esquivar y bloquear incrementa tu daño. " +"Las pausas incrementan tu defensa. Podés realizar poderosos golpes contra " +"oponentes en el suelo." #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -166926,43 +167917,67 @@ msgid "%s assumes a dragon-like stance." msgstr "%s adopta la postura del dragón." #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" -msgstr "Vuelo del Dragón" +msgid "Dragon's Knowledge" +msgstr "Conocimiento de Dragón" + +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. Kung Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" +"\n" +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." +msgstr "" +"Planeás tu ataque con mucha anticipación confiando en tu intuición en lugar de tu velocidad para atacar.\n" +"La Inteligencia incrementa la Precisión en lugar de la Destreza y el daño cuerpo a cuerpo en lugar de la Fuerza.\n" +"\n" +"La Precisión se incrementa en un 25% de la Inteligencia pero disminuye en un 25% de tu Destreza. El daño contundente se incrementa en un 75% de tu Inteligencia pero disminuye en un 75% de tu Fuerza." + +#: lang/json/martial_art_from_json.py +msgid "Dragon Wing" +msgstr "Ala de Dragón" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"+10% bash damage.\n" +"Lasts 3 turns." msgstr "" "La vida y el combate son un círculo. El ataque lleva a un contrataque y a un ataque otra vez. Buscá completar el ciclo.\n" "\n" -"+1 a Precisión, +2 daño Contundente.\n" -"Habilita \"Bloqueo del Dragón\" y \"Ala Esquivadora de Dragón\"\n" -"Dura 1 turno." +"+10% daño Contundente.\n" +"Dura 3 turnos." #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" -msgstr "Conocimiento de Dragón" +msgid "Dragon Power" +msgstr "Potencia de Dragón" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon -#. Kung Fu'}' +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." msgstr "" -"Planeás tu ataque con mucha anticipación confiando en tu intuición en lugar de tu velocidad para atacar.\n" -"La Inteligencia incrementa la Precisión en lugar de tu Destreza.\n" +"Te tomás un momento para reflexionar en batallas pasadas. Esta reflexión te protegerá del daño futuro.\n" "\n" -"La Precisión se incrementa en un 25% de la Inteligencia pero disminuye en un 25% de tu Destreza." +"+2 a Efectividad de Bloqueo, el daño Bloqueado disminuye en +100% de Inteligencia, +1.0 Esquivar.\n" +"Dura 2 turnos." + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" +msgstr "Vórtice de Dragón" #: lang/json/martial_art_from_json.py msgid "Eskrima" @@ -167070,6 +168085,25 @@ msgstr "" "\n" "El daño bloqueado se reduce un 50% de tu Destreza." +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "Momento de Contrataque" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" +"Amagás un ataque y te preparás para realizar un Ataque Compuesto.\n" +"\n" +"+2 Efectividad de Bloqueo.\n" +"Activa la técnica \"Ataque Compuesto\".\n" +"Dura 2 turnos." + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "Parada" @@ -167139,11 +168173,11 @@ msgstr "Mantenerse Firme" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" "Sos recio y no te rendirás ante ninguna amenaza.\n" "\n" -"+2 intentos de Bloqueo, -1.0 a Esquivar, daño bloqueado reducido en 50% de tu Fuerza." +"+2 Efectividad de Bloqueo, +1 intentos de Bloqueo, -1.0 a Esquivar, daño bloqueado reducido en 50% de tu Fuerza." #: lang/json/martial_art_from_json.py msgid "Tactical Retreat" @@ -167156,13 +168190,15 @@ msgstr "Retirada Táctica" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" "¡Te movés y anulás los efectos de Mantenerse Firme!\n" "\n" -"-2 intentos de Bloqueo, +1.0 a Esquivar, daño bloqueado reducido en 50% de tu Fuerza.\n" -"Dura 1 turno." +"-2 Efectividad de Bloqueo, -1 intentos de Bloqueo, +1.0 a Esquivar, daño bloqueado reducido en 50% de tu Fuerza.\n" +"Evita las técnicas \"Golpe Circular Alto y Gancho\".\n" +"Dura 2 turnos." #: lang/json/martial_art_from_json.py msgid "Defense Break" @@ -167175,11 +168211,13 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" "Cada bloqueo exitoso revela una oportunidad en la guardia de tu oponente.\n" "\n" "+1 a Precisión.\n" +"Activa la técnica \"Desviar y Enganchar\".\n" "Dura 1 turno. Se acumula hasta 3 veces." #: lang/json/martial_art_from_json.py @@ -167240,6 +168278,22 @@ msgstr "" "Tu conocimiento sobre movimientos de agarre te permite recuperarte de una caída instantáneamente.\n" "Además, podés contrarrestar agarres y desarmar ataques con una tirada de judo." +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "Posición Perfecta" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" +"¡Te moviste a una posición perfecta para contratacar!\n" +"\n" +"+30% al daño Contundente." + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "Karate" @@ -167343,6 +168397,25 @@ msgstr "" "\n" "+1 a Precisión, +1 intentos de Bloqueo." +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "Golpear Órganos Vitales" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" +"Como un tonto, tu oponente ha quedado expuesto.\n" +"\n" +"+5% a la posibilidad de golpe crítico.\n" +"Dura 1 turno." + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "Kung Fu del Leopardo" @@ -167521,6 +168594,25 @@ msgstr "" "El daño bloqueado se incrementa en un 50% de la Fuerza, -1 en Precisión,\n" "Habilita Agarre y Golpe Letal" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "Corte Maestro" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" +"¡Esquivás y devolvés el ataque con gran vigor!\n" +"\n" +"+10% al daño, -10 al costo de movimiento\n" +"Dura 1 turno." + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "Muay Thai" @@ -167600,8 +168692,8 @@ msgstr "" "El ninjutsu es un arte marcial y un conjunto de tácticas utilizadas por los " "ninjas en la época feudal de Japón. Se focaliza en golpes rápidos, precisos " "y silenciosos. El ninjutsu es casi completamente silencioso y causa más daño" -" en el primer ataque. También provee pequeños bonus al combate cada vez que " -"te movés." +" en el primer ataque. También provee pequeños bonificaciones al combate cada" +" vez que te movés." #. ~ initiate message for martial art '{'str': 'Ninjutsu'}' #: lang/json/martial_art_from_json.py @@ -167941,21 +169033,22 @@ msgstr "" "+1 intentos de Esquivar." #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" -msgstr "Evasión de Silat" +msgid "Silat Ambush" +msgstr "Emboscada Silat" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" -"Te mantenés agachado mientras te movés, haciendo difícil que tus enemigos te acorralen.\n" +"Te mantenés agachado mientras te movés, haciendo difícil que tus enemigos puedan defenderse.\n" "\n" -"+1 intento de Esquivar.\n" -"Dura 2 turnos." +"+5 a la posibilidad de golpe crítico.\n" +"Dura 1 turno." #: lang/json/martial_art_from_json.py msgid "Silat Appraisal" @@ -168076,11 +169169,11 @@ msgstr "Postura de Sōjutsu" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" "Tu entrenamiento de otorga una mejor defensa cuando usás un arma de asta.\n" "\n" -"+1 intentos de Bloqueo." +"+1 intentos de Bloqueo, +2 a Efectividad de Bloqueo." #: lang/json/martial_art_from_json.py msgid "Superior Positioning" @@ -168208,6 +169301,26 @@ msgstr "" "\n" "+1 intentos de Bloqueo, daño bloqueado reducido en un 100% de tu Percepción." +#: lang/json/martial_art_from_json.py +msgid "Cross Hands" +msgstr "Manos Cruzadas" + +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"\n" +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." +msgstr "" +"Al tomarte un tiempo para prepararte, podés usar tu cuerpo entero para atacar y defender.\n" +"\n" +"+2 a Efectividad de Bloqueo, daño bloqueado reducido en un 50% de tu Percepción.\n" +"Habilita las técnicas \"Golpe de Palma\" and \"Doble Golpe de Palma\".\n" +"Dura 3 turnos." + #: lang/json/martial_art_from_json.py msgid "Repulse the Monkey" msgstr "Repeler el Mono" @@ -168227,26 +169340,6 @@ msgstr "" "Precisión incrementada en un 20% de tu Percepción, recibís penetración de armadura por golpe igual al 50% de tu Percepción.\n" "Dura 2 turnos." -#: lang/json/martial_art_from_json.py -msgid "Cross Hands" -msgstr "Manos Cruzadas" - -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' -#: lang/json/martial_art_from_json.py -#, no-python-format -msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" -"\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." -msgstr "" -"Al tomarte un tiempo para prepararte, podés usar tu cuerpo entero para atacar y defender.\n" -"\n" -"+1.0 habilidad Esquivar, daño bloqueado reducido en un 50% de tu Percepción.\n" -"Habilita las técnicas \"Golpe de Palma\" and \"Doble Golpe de Palma\".\n" -"Dura 3 turnos." - #: lang/json/martial_art_from_json.py msgid "Tiger Kung Fu" msgstr "Kung Fu del Tigre" @@ -168390,11 +169483,11 @@ msgstr "Sensibilidad Chi-Sao" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" "Tenés una mayor comprensión del balance y la técnica. Esto te da mejor oportunidad de esquivar los ataques de tu oponente.\n" "\n" -"Habilidad de Esquivar incrementada en un 15% de tu Percepción. Daño bloqueado reducido en un 50% de tu Percepción." +"Habilidad de Esquivar incrementada en un 25% de tu Percepción. Daño bloqueado reducido en un 50% de tu Percepción." #: lang/json/martial_art_from_json.py msgid "Biu Ji" @@ -168632,6 +169725,26 @@ msgstr "" "\n" "+2 intentos de Bloqueo, +1 Precisión." +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "Endurecimiento Binario" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 armadura contra Contundente, Cortante y Penetrante.\n" +"Dura 3 turnos. Se acumula hasta 3 veces." + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "Optimización" @@ -168706,15 +169819,16 @@ msgstr "Veneno de Ciempiés" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" -"Tu veneno quema a tus oponentes de la peor manera.\n" +"Tu veneno quema a tus oponentes en el peor momento posible.\n" "\n" -"+2 al daño Contundente.\n" +"+15% de daño.\n" "Dura 2 turnos." #: lang/json/martial_art_from_json.py @@ -168836,14 +169950,15 @@ msgstr "Veneno de Escorpión" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" -"Tu veneno es una amenaza constante de la que nadie podrá escapar.\n" +"Tu veneno es una amenaza constante y nada puede escapar de él.\n" "\n" -"+2 daño Contundente." +"+15% de daño." #: lang/json/martial_art_from_json.py msgid "Scorpion's Charge" @@ -169167,8 +170282,8 @@ msgid "" " combat bonuses based on stats." msgstr "" "Es un estilo defensivo centrado en golpes aturdidores, empujones y derribar " -"enemigos. Cada ataque acertado incrementa tu armadura y ofrece otros bonus " -"al combate basado en estadísticas." +"enemigos. Cada ataque acertado incrementa tu armadura y ofrece otras " +"bonificaciones al combate basado en estadísticas." #. ~ initiate message for martial art 'C.R.I.T Enforcement' #: lang/json/martial_art_from_json.py @@ -169189,7 +170304,8 @@ msgstr "Baluarte" #: lang/json/martial_art_from_json.py msgid "+1 armor and other small bonuses per stack. Max of 2 stacks" msgstr "" -"+1 en armadura y otros pequeños bonus por vez. Se acumula hasta 2 veces." +"+1 en armadura y otras pequeñas bonificaciones por vez. Se acumula hasta 2 " +"veces." #: lang/json/martial_art_from_json.py msgid "Unyielding Front" @@ -169216,7 +170332,7 @@ msgid "" " adds a plethora of combat bonuses." msgstr "" "Es un estilo centrado en golpes rápidos y trompadas penetrantes. Cada ataque" -" acertado agrega una gran cantidad de bonus al combate." +" acertado agrega una gran cantidad de bonificaciones al combate." #. ~ initiate message for martial art 'CRIT CQB' #: lang/json/martial_art_from_json.py @@ -169238,8 +170354,8 @@ msgstr "Tenacidad Fluida" msgid "" "+Atk Speed and other small bonuses based on DEX per stack. Max of 5 stacks" msgstr "" -"+ Velocidad de ataque y otros pequeños bonus basados en la Destreza por vez." -" Se acumula hasta 5 veces." +"+ Velocidad de ataque y otras pequeñas bonificaciones basadas en la Destreza" +" por vez. Se acumula hasta 5 veces." #: lang/json/martial_art_from_json.py msgid "Tactful Initiative" @@ -169626,12 +170742,31 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." msgstr "" "\"Rastreo Sombrío\"\n" "Como un künstler, estás entrenado para mantenerte en el punto ciego de tu objetivo.\n" "\n" -"+1 intentos de Esquivar, Habilidad Esquivar incrementada en%% de tu Percepción." +"+1 intentos de Esquivar, Habilidad Esquivar incrementada en 15%% de tu Percepción." + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "Seinerweisen" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." +msgstr "" +"\"Sabiduría Personal\"\n" +"¡A través de tu maestría del Panzer Kunst has conseguido la habilidad de manipular plasma letal en todos tus ataques!\n" +"\n" +"Tenés bonificación de daño Eléctrico igual al 50% de tu Percepción." #: lang/json/martial_art_from_json.py msgid "Einzug Rüstungen" @@ -169640,16 +170775,17 @@ msgstr "Einzug Rüstungen" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" "\"Penetración de Armadura\"\n" "Al armonizar con el ritmo de tu oponente, podés golpearlo cuando su guardia sea más débil.\n" -"+5 penetración de armadura contra Golpe.\n" -"Dura 2 turnos." +"+1 Precisión, tenés penetración de armadura igual al 50% de tu Percepción.\n" +"Dura 3 turnos." #: lang/json/martial_art_from_json.py msgid "Pokken" @@ -169764,6 +170900,24 @@ msgstr "Establecés el peso de tu cuerpo para defenderte." msgid "%s shifts their weight and assumes a new stance." msgstr "%s establece el peso de su cuerpo y adopta una nueva postura." +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "Apertura Falsa" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" +"Al amagar la guardia baja, podés sacar de balance a tu oponente y actuar más rápido por un breve tiempo.\n" +"\n" +"+20 Velocidad.\n" +"Dura 1 turno." + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "Defensa Desconcertante" @@ -169776,30 +170930,31 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" "¡Te preparás para el ataque de tu oponente mientras estás listo para mandarlo volando!\n" "\n" "Habilidad de Esquivar incrementada en un 20% de tu Inteligencia, activa las técnicas \"Tirada Poderosa\" y \"Tirada de Balista\".\n" -"Dura 1 turno." +"Dura 2 turnos." #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" -msgstr "Apertura Falsa" +msgid "Fool's Strike" +msgstr "Golpe de Engaño" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" -"Al amagar la guardia baja, podés sacar de balance a tu oponente y actuar más rápido por un breve tiempo.\n" +"Te movés de una manera tan engañosa que has desviado el ataque de tu oponente hacia él mismo.\n" "\n" -"+20 Velocidad.\n" -"Dura 1 turno." +"+20% daño Contundente.\n" +"Dura 2 turnos." #: lang/json/martial_art_from_json.py msgid "Shii-Cho" @@ -169894,6 +171049,24 @@ msgstr "" "\n" "+1 intentos de Bloqueo, +1 efectividad de Bloqueo." +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "Agua Fluyente" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" +"Sos capaz de desviar un ataque y contratacar en el mismo movimiento.\n" +"\n" +"-25% al costo de movimiento.\n" +"Dura 1 turno." + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "Dragón de Piedra" @@ -171760,7 +172933,7 @@ msgstr "No creo que ya hayamos terminado." msgid "Kill your pursuer" msgstr "Matar a tu perseguidor" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -171993,7 +173166,7 @@ msgstr "Ir a la Mansión y Terminar La Entrega" msgid "Refuel your helicopter." msgstr "Poner combustible a tu helicóptero." -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -172240,7 +173413,7 @@ msgstr "Estoy muy decepcionado de vos, pibe…" msgid "Prove You're A Survivor" msgstr "Probá que Sos un Superviviente" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -172310,8 +173483,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "Recolectar tallos de junco para crear gelatina de junco" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -172512,7 +173684,7 @@ msgstr "Entonces deberás volver a intentarlo, hasta que oigas." msgid "Protect fisherman's daughter" msgstr "Proteger hija del pescador" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "Parece una chica buena. ¿Tal vez deberías intentar que no se muera?" @@ -172526,7 +173698,7 @@ msgstr "-" msgid "Lighthouse" msgstr "Faro" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "Llevar a Mikhail al faro." @@ -172573,7 +173745,7 @@ msgstr "" msgid "House cleaning" msgstr "Limpiar la casa" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "Limpiar el faro de con Mikhail." @@ -172613,7 +173785,7 @@ msgstr "Genial, genial. Ahora queda lavar todos los pisos…" msgid "Fisherman's family" msgstr "La familia del pescador" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "Mikhail te pidió que traigas a su familia." @@ -172649,7 +173821,7 @@ msgstr "Ya no sé cómo agradecerte, . Estoy en deuda eterna con vos." msgid "Fisherman's boat" msgstr "El bote del pescador" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "Ayudar a Mikhail a hacer un bote. Conseguir 250 clavos." @@ -172704,7 +173876,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "Arreglar el faro" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -172759,16 +173931,52 @@ msgstr "¡Espléndido, ! Ahora queda esperar…" msgid "Protect fisherman's wife" msgstr "Proteger esposa del pescador" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "Parece una buena mujer. ¿Tal vez deberías intentar que no se muera?" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "Conseguir 6L de anestesia para Rubik" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" +"Si te vamo' a tirar el metal y el plástico pa' vos, vamo' a necesitá dos " +"jarras de anos-tesios, una pa' vos y otra pa' los nuestros." + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "¡La suerte de este su amigo!" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "Eso es una opción que tené'. Volvé pa' cá si queré." + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "Revisate las quirurgerías y eso, te diría." + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "Vamo' a esperar tranquilo' esas cosas." + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "Bueno bueno. Podemo' pasarlo cuando quierás." + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "Bueno bueno. Volvé pa'cá si queré volver a probar." + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "Comidas Exigentes" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "Conseguir 100 unidades de sal." @@ -172822,7 +174030,7 @@ msgstr "No te preocupes por eso, no es tan importante." msgid "Pickled Meals" msgstr "Comidas al Escabeche" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "Conseguir 5 frascos de vidrio." @@ -172882,7 +174090,7 @@ msgstr "No es gran cosa, no es tan urgente." msgid "Prickled Meals" msgstr "Comidas Espinosas" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "Conseguir cuchillo de carnicero." @@ -172930,7 +174138,7 @@ msgstr "Estoy agradecido por la ayuda que me diste." msgid "Busy While Work" msgstr "Ocupado en el Trabajo" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "Conseguir 3 novelas de misterio." @@ -172983,7 +174191,7 @@ msgstr "Bien. Puedo leer otras cosas." msgid "Timber!" msgstr "¡Guarda con el árbol!" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "Traer cinco troncos." @@ -173012,7 +174220,7 @@ msgstr "¿Cómo va la búsqueda? ¿Los conseguiste?" msgid "Sweets" msgstr "Golosinas" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "Conseguir 25 zarzamoras." @@ -173050,7 +174258,7 @@ msgstr "Gracias por tu ayuda. Acá está tu recompensa." msgid "Visit the Isherwoods" msgstr "Visitar a los Isherwood" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -174089,7 +175297,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "Pizzero enojado" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -174133,7 +175341,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "Encontrar a TrueFoodperson" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "Ayudar al pizzero a encontrar a TrueFoodperson y cagarlo a palos." @@ -174178,7 +175386,7 @@ msgstr "¡Otro que muerde el polvo! Estuvimos bien, ." msgid "Pizza parlor" msgstr "Pizzería" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "Ayudar al pizzero a recuperar su restorán." @@ -174224,7 +175432,7 @@ msgstr "" msgid "Family house" msgstr "Casa de familia" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -174260,7 +175468,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "Conseguir chatarra para el meteorólogo" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "El meteorólogo me pidió conseguirle 50 pedazos de chatarra." @@ -174324,7 +175532,7 @@ msgstr "¿Por qué decís eso?" msgid "Find batteries for the meteorologist" msgstr "Conseguir baterías para el meteorólogo" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "El meteorólogo me pidió conseguirle 6 baterías medianas." @@ -174357,7 +175565,7 @@ msgstr "Genial, sigo trabajando en el dron…" msgid "Find lens_small 5" msgstr "Conseguir 5 lentes pequeños" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -174391,7 +175599,7 @@ msgstr "Genial, sigo trabajando en el dron…" msgid "Find radiocontrol" msgstr "Conseguir radiocontrol" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "El meteorólogo me pidió conseguirle un radiocontrol." @@ -174427,7 +175635,7 @@ msgstr "" msgid "Find crashed drone" msgstr "Encontrar dron estrellado" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "El meteorólogo me pidió que recupere su dron." @@ -174758,8 +175966,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "Conseguir a alguien que limpie la plataforma de atrás." -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -175265,7 +176472,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "Conseguir 50 dosis de antiséptico" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -175319,7 +176526,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "Conseguir 30 vendas" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -175356,7 +176563,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "Conseguir 6 botellas de Prozac" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -175467,7 +176674,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "En un Berenjenal, parte 2" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -175517,7 +176724,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "Cigarrillos, vamos." -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -175570,7 +176777,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "Limpiar Plataforma de Atrás" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -175636,7 +176843,7 @@ msgstr "" msgid "Missing Caravan" msgstr "Caravana Perdida" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -175696,7 +176903,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "Recuperar Informe" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -175749,7 +176956,7 @@ msgstr "" msgid "Solar Power" msgstr "Energía Solar" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -175798,7 +177005,7 @@ msgstr "" msgid "In a Pickle" msgstr "En un Berenjenal" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -175862,7 +177069,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "Recipiente Desconocido" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -175875,6 +177082,71 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "¿Ya hiciste la entrega?" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "Revisar esa granja" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" +"Me crucé con un montón de granjeros. No quieren tener mucho que ver con " +"nuestras caravanas pero por ahí alguien como vos puede caerles bien." + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "Copado." + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "Parece lógico." + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "Tené cuidado. Está complicado ahí afuera." + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "Ah, mirá vos." + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "Es lo que hay." + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" +"Hay algunos rumores. Andan diciendo que hay un laboratorio secreto, por " +"algún lugar, con sobrevivientes adentro." + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "Revisar ese castillo de chatarra" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" +"Algunas de mis caravanas han vuelto hablando de un castillo gigante de metal" +" arriba de una roca, en el medio de la nada. No están lo suficientemente " +"locos como para ir a revisarlo, pero si vos tenés ganas…" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "Tu funeral." + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "Tené cuidado. Parece un lugar complicado." + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -176072,7 +177344,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "Suministrar al pirómano." -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "Conseguirle 42 kg de fertilizante comercial al pirómano" @@ -176138,7 +177410,7 @@ msgstr "Mierda. Tal vez no fui el único en pensar en eso." msgid "Kill Bandits" msgstr "Matar Bandidos" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -176190,7 +177462,7 @@ msgstr "" msgid "Deal with Informant" msgstr "Encargarse del Informante" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -176235,11 +177507,79 @@ msgstr "¿Ya te encargaste de la rata?" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "Gracias, yo voy a explicar todo si alguien pregunta." +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "Encontrar el Origen de los Robots" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" +"Normalmente, no recibo noticias del comando pero recibimos un mensaje de " +"radio hace poco. Tal vez seas la opción indicada para investigar eso. Han " +"llegado informes de unos robots raros y cosas dando vueltas desde que todo " +"empezó a salir mal. No sé cómo pero aparentemente comando encontró lo que " +"creen es el origen. Quieren que alguien vaya a ver quién los está haciendo y" +" si podés conseguir tecnología o ayuda de ellos. Es estrictamente una misión" +" de reconocimiento, ya sabés: puede haber una entidad hostil, así que no te " +"enfrentes directamente a ellos." + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "Tengo algo raro para vos ahora…" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" +"Gracias, cuando sepas quién es volvé para informarme y yo lo comunicaré." + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" +"Volvé cuando puedas, si existe la posibilidad de que estas cosas estén de " +"nuestro lado, vamos a necesitar toda la ayuda que podamos conseguir." + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" +"Si ves alguna maquinaria rara dando vueltas, no te enfrentes. Tratá de " +"escaparte sin que te vea, te diría. Parecen ser hostiles contra los zombis " +"pero eso no significa que puedan distinguir que vos no seas uno." + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "Buen trabajo, no estaba seguro de a qué te estaba mandando. " + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" +"Qué lástima, una verdadera lástima. Me hubiera gustado que aprendas más. " +"Gracias por intentarlo." + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "Mierda… esperemos volver a poder intentarlo alguna vez." + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "Asegurar Ruta de Comercio" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -176275,15 +177615,11 @@ msgstr "" "¿Buscaste algún rastro en los arbustos? No soy un rastreador experto pero " "deberías poder encontrar algo." -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "Buen trabajo, no estaba seguro de a qué te estaba mandando. " - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "Asesinar Líder Saqueador" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -176370,7 +177706,7 @@ msgstr "" msgid "Return Field Data" msgstr "Recuperar Información de Campo" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -176434,7 +177770,7 @@ msgstr "Simplemente, inútil…" msgid "Steal a dead man's mind" msgstr "Robar la mente de un muerto" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -176492,7 +177828,7 @@ msgstr "Recibí nuestro agradecimiento y nuestro pago." msgid "Light retrieval" msgstr "Rescate ligero" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -176545,14 +177881,16 @@ msgstr "¿Conseguiste los planos?" msgid "Iron Safari" msgstr "Safari de Hierro" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" "Desactivá y recuperá el robot extraterrestre. Podés interceptar el robot que" -" te indica Hub 01 o encontrar uno inactivo en otra parte." +" te indica Hub 01 o encontrar uno inactivo en otra parte. Vas a necesitar " +"alguna experiencia en electrónica y mecánica para poder desactivarlo." #: lang/json/mission_def_from_json.py msgid "" @@ -176606,7 +177944,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "Recuperar pedazos de oro" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "Conseguir 200 unidades de oro." @@ -176656,7 +177994,7 @@ msgstr "Bueno, voy a tener que buscar el oro yo mismo, gracias por nada." msgid "Active Noise Control" msgstr "Activar Control de Ruido" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -176707,7 +178045,7 @@ msgstr "Seguro, gracias por nada." msgid "Return to Hub 01" msgstr "Regresar al Hub 01" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "Regresar al Hub 01." @@ -178107,7 +179445,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Are you ready for a little necromancy?" -msgstr "¿Estás preparado para un poco de nigromancia?" +msgstr "¿Estás preparado para un poco de necromancia?" #: lang/json/mission_def_from_json.py msgid "I'm telling you they're already brain dead." @@ -178764,7 +180102,7 @@ msgstr "Bamm-Bamm" msgid "Secure Area" msgstr "Asegurar Área" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -178789,7 +180127,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "Perdido en el Bosque" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -178827,7 +180165,7 @@ msgstr "" msgid "Protect the cattle" msgstr "Proteger el Ganado" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "Alguien o algo en el pantano se está robando el ganado. Frenalo." @@ -178874,7 +180212,7 @@ msgstr "" msgid "Betty" msgstr "Betty" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "Matar 50 dinosaurios" @@ -178934,7 +180272,7 @@ msgstr "" msgid "Stromer" msgstr "Stromer" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "Matá un T-Rex para mí" @@ -179809,6 +181147,34 @@ msgstr "" "El %1$s intenta aplastar el %2$s de con su gran garrote, pero le " "erra y trastabilla." +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "¡El/a %1$s te azota con su látigo llameante!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "¡El/a %1$s azota a con su látigo llameante!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" +"¡El/a %1$s te azota con su látigo llameante pero no logra penetrar tu " +"armadura!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" +"¡El/a %1$s azota a con su látigo llameante pero no logra penetrar " +"su armadura!" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -180429,29 +181795,29 @@ msgstr "Fuiste a lo profundo." #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py msgid "Gastropod" -msgstr "" +msgstr "Gasterópodo" #. ~ Mutation class: Gastropod mutagen_message #: lang/json/mutation_category_from_json.py msgid "Are you dancing a descending spiral?" -msgstr "" +msgstr "¿Estás bailando un espiral descendiente?" #. ~ Mutation class: Gastropod iv_message #: lang/json/mutation_category_from_json.py msgid "Your split lower body starts to come back together." -msgstr "" +msgstr "Tu parte inferior del cuerpo comienza a volver a unirse." #. ~ Mutation class: Gastropod Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" msgid "Left a trail." -msgstr "" +msgstr "Dejó una huella." #. ~ Mutation class: Gastropod Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" msgid "Left a trail." -msgstr "" +msgstr "Dejó una huella." #. ~ Mutation class name #: lang/json/mutation_category_from_json.py @@ -180503,13 +181869,13 @@ msgstr "Tu corazón se acelera salvajemente a medida que la inyección avanza." #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "Aceptó su naturaleza bestial." #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "Aceptó su naturaleza bestial." #. ~ Mutation class name @@ -180714,29 +182080,29 @@ msgstr "Mudaste tu horrenda piel humana." #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py msgid "Batrachian" -msgstr "" +msgstr "Batracio" #. ~ Mutation class: Batrachian mutagen_message #: lang/json/mutation_category_from_json.py msgid "An involuntary hop and a croak." -msgstr "" +msgstr "Saltás y croás involuntariamente." #. ~ Mutation class: Batrachian iv_message #: lang/json/mutation_category_from_json.py msgid "Like a tadpole you must transform." -msgstr "" +msgstr "Así como un renacuajo, vas a tener que transformarte." #. ~ Mutation class: Batrachian Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" msgid "Found a bigger pond." -msgstr "" +msgstr "Encontró un charco más grande." #. ~ Mutation class: Batrachian Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" msgid "Found a bigger pond." -msgstr "" +msgstr "Encontró un charco más grande." #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py @@ -181267,6 +182633,32 @@ msgstr "" "Sos un pupilo del Clan del Veneno. Empezás con uno de estos cinco venenos " "mortales: Ciempiés, Víbora, Escorpión, Lagarto o Sapo." +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "Interfaz Estándar Neurobiónica" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" +"Tenés una matriz en tu sistema nervioso central que funciona como un control" +" universal y puerto de instalación para los módulos compactos de biónicos." + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "Armazón de ciborg Exodii - estilo 1a" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" +"Tu cerebro y algunos de tus órganos están protegidos por una estructura " +"resistente bípeda." + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "Pelo: negro, rapado" @@ -182108,6 +183500,8 @@ msgid "" "You can spit a wad of bioluminescent goo several meters away. There it will" " light up it's surroundings until it dissipates." msgstr "" +"Podés escupir un montón de viscosidad bioluminiscente a varios metros. Donde" +" caiga, iluminará sus alrededores hasta que se disipe." #: lang/json/mutation_from_json.py msgid "Normal Human" @@ -182226,19 +183620,29 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Tunnel Fighter" -msgstr "" +msgstr "Luchador de Túnel" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " "bonuses when fighting underground." msgstr "" +"Sabés cómo luchar en túneles estrechos con riesgo de colapsar. Recibís " +"bonificaciones cuando peleás en lugares subterráneos." #: lang/json/mutation_from_json.py msgid "Night Raider" +msgstr "Saqueador Nocturno" + +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." msgstr "" +"Tu cuerpo está unido a la noche. Hacés menos ruido cuando está la luna en el" +" cielo, incluso aunque no la veamos porque siempre está." #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py @@ -182305,21 +183709,21 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Earth Sleeper" -msgstr "" +msgstr "Durmiente Natural" #. ~ Description for {'str': 'Earth Sleeper'} #: lang/json/mutation_from_json.py msgid "You always sleep better surrounded by earth." -msgstr "" +msgstr "Siempre dormís mejor cuando estás rodeado de naturaleza." #: lang/json/mutation_from_json.py msgid "Aquatic Sleeper" -msgstr "" +msgstr "Durmiente Acuático" #. ~ Description for {'str': 'Aquatic Sleeper'} #: lang/json/mutation_from_json.py msgid "You always sleep better underwater." -msgstr "" +msgstr "Siempre dormís mejor debajo del agua." #: lang/json/mutation_from_json.py msgid "Pain Resistant" @@ -182384,19 +183788,22 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Bovine Bulk" -msgstr "" +msgstr "Corpulencia Bovina" #. ~ Description for {'str': 'Bovine Bulk'} #: lang/json/mutation_from_json.py #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" +"Subiste muchos kilos ¡pero mucho de eso es músculo! Tenés una bonificación " +"del 10% a tus puntos de vida. Pero a partir de ahora, nadar te resultará más" +" difícil." #: lang/json/mutation_from_json.py msgid "Bull Roids" -msgstr "" +msgstr "Esteroides de Toro" #. ~ Description for {'str': 'Bull Roids'} #: lang/json/mutation_from_json.py @@ -182406,6 +183813,9 @@ msgid "" "get a 20% bonus to all hit points. Swimming is no longer recommended for " "someone built like you." msgstr "" +"No te hubieran dejado competir en deportes preCataclismo. Tenés una " +"bonificación del 20% a tus puntos de vida. Pero nadar no es recomendable " +"para alguien con tu complexión física." #: lang/json/mutation_from_json.py msgid "Tough" @@ -182528,7 +183938,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Stomach Cleanse" -msgstr "" +msgstr "Limpieza Estomacal" #. ~ Description for {'str': 'Stomach Cleanse'} #: lang/json/mutation_from_json.py @@ -182538,6 +183948,10 @@ msgid "" "poisoning, alcohol, etc. If you throw up because of this this, you won't " "suffer any residual nausea." msgstr "" +"Conseguiste la habilidad de invertir tu estómago por fuera de tu cuerpo para" +" eliminar rápidamente las toxinas, y sos más proclive a vomitar por " +"intoxicación con comida, alcohol, etcétera. Si vomitás por esta causa, no " +"vas a sufrir las náuseas residuales." #: lang/json/mutation_from_json.py msgid "Good Memory" @@ -182675,9 +184089,11 @@ msgstr "Aterrador/a" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" +"Hay algo en vos que causa terror. Las criaturas tienden a escaparse cuando " +"te ven." #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -182706,7 +184122,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Combat Adaptation" -msgstr "" +msgstr "Adaptación de Combate" #. ~ Description for {'str': 'Combat Adaptation'} #: lang/json/mutation_from_json.py @@ -182716,6 +184132,10 @@ msgid "" "process things around you slightly faster. Giving you better reaction times" " that you can pay for later if you survive." msgstr "" +"Cuando estás frente a un gran peligro, podés apretar el botón químico de tu " +"cerebro y tu sistema nervioso procesará las cosas a tu alrededor un poco más" +" rápido, a cambio de mayores hambre, cansancio y sed. Esto te otorga mejores" +" tiempos de reacción qué podés pagar después si sobrevivís." #: lang/json/mutation_from_json.py msgid "Less Sleep" @@ -183045,7 +184465,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Strong Knees" -msgstr "" +msgstr "Rodillas Fuertes" #. ~ Description for {'str': 'Strong Knees'} #: lang/json/mutation_from_json.py @@ -183053,6 +184473,8 @@ msgid "" "Your knees are strong and capable of angles that you couldn't imagine " "previously. Moving over rough terrain will slow you down less than normal." msgstr "" +"Tus rodillas son fuertes y capaces de doblarse en ángulos que no creías " +"posibles. No te hace tan lento moverte a través de terreno complicado." #: lang/json/mutation_from_json.py msgid "Languorous" @@ -183924,6 +185346,10 @@ msgid "" "toggle NV-visible areas on or off. Surprisingly, frogs' vision works " "exactly the same." msgstr "" +"Tu proceso visual ha cambiado: a pesar de que podés ver mejor en la " +"oscuridad, sos miope cuando hay luz. Tal vez los anteojos te puedan ayudar. " +"Hay que activarlo para ver las áreas visibles por Visión Nocturna. " +"Sorprendentemente, la visión de rana funciona exactamente igual." #: lang/json/mutation_from_json.py msgid "Avian Eyes" @@ -184831,10 +186257,12 @@ msgid "" "You exude slime from your pores. You can spread that slime on an opponent " "in melee range." msgstr "" +"Expulsás una mucosidad por tus poros. Podés chorrearle esa mucosidad hacia " +"un oponente en combate cuerpo a cuerpo." #: lang/json/mutation_from_json.py msgid "Bulging Reservoir" -msgstr "" +msgstr "Reserva Protuberante" #. ~ Description for {'str': 'Bulging Reservoir'} #: lang/json/mutation_from_json.py @@ -184842,10 +186270,12 @@ msgid "" "You develop a reservoir of fluids that bulges out of your abdomen. Your " "body has adapted to containing extra liquids in event of shortfalls." msgstr "" +"Desarrollaste una reserva de fluidos que sobresale de tu abdomen. Tu cuerpo " +"se ha adaptado a contener más líquidos para una eventual escasez." #: lang/json/mutation_from_json.py msgid "Bombadier Beetle Blast" -msgstr "" +msgstr "Explosión de Escarabajo Bombardero" #. ~ Description for {'str': 'Bombadier Beetle Blast'} #: lang/json/mutation_from_json.py @@ -184854,16 +186284,19 @@ msgid "" "distance. This will drastically increase your thirst. Without an extra " "reservoir you would quickly dehydrate yourself." msgstr "" +"Tenés la habilidad de rociar agua hirviendo a tus enemigos en combate cuerpo" +" a cuerpo. Esto incrementa drásticamente tu sed. Sin una reserva extra " +"podrías deshidratarte rápidamente." #: lang/json/mutation_from_json.py #, no-python-format msgid "You spray %s with a boiling chemical mixture" -msgstr "" +msgstr "Rociás al/a %s con una mezcla de químicos hirvientes." #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s sprays %2$s with a boiling chemical mixture" -msgstr "" +msgstr "%1$s rocía al/a %2$s con una mezcla de químicos hirvientes." #: lang/json/mutation_from_json.py msgid "Large Talons" @@ -184975,7 +186408,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Amphibian Pheromones" -msgstr "" +msgstr "Feromonas Anfibias" #. ~ Description for {'str': 'Amphibian Pheromones'} #: lang/json/mutation_from_json.py @@ -184983,6 +186416,9 @@ msgid "" "Your body produces low-level pheromones, identifying you as a friend to many" " species of amphibian. Amphibians will attack you much less." msgstr "" +"Tu cuerpo produce feromonas de bajo nivel, identificándote como familiar de " +"varias especies de anfibios. Por lo tanto, los anfibios te atacarán mucho " +"menos." #: lang/json/mutation_from_json.py msgid "Mammal Pheromones" @@ -185147,7 +186583,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Muscle Consolidation" -msgstr "" +msgstr "Consolidación Muscular" #. ~ Description for {'str': 'Muscle Consolidation'} #: lang/json/mutation_from_json.py @@ -185155,10 +186591,12 @@ msgid "" "Your extremities have gained strength but lost fine motor skills. -1 " "Dexterity +2 Strength." msgstr "" +"Tus extremidades han ganado fuerza pero perdido habilidades motoras finas. " +"-1 Destreza, +2 Fuerza." #: lang/json/mutation_from_json.py msgid "Rasping Tongue" -msgstr "" +msgstr "Lengua Áspera" #. ~ Description for {'str': 'Rasping Tongue'} #: lang/json/mutation_from_json.py @@ -185166,35 +186604,37 @@ msgid "" "You've developed an extremely long and mobile tongue capped with teeth. You" " may use it to attack your enemies." msgstr "" +"Desarrollaste una lengua extremadamente larga y móvil con dientes. La podés " +"usar para atacar a tus enemigos." #: lang/json/mutation_from_json.py #, no-python-format msgid "You tear into %s with your rasping tongue." -msgstr "" +msgstr "Desgarrás al/a %s con tu lengua áspera." #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s tears into %2$s with their rasping tongue." -msgstr "" +msgstr "%1$s desgarra al/a %2$s con su lengua áspera." #: lang/json/mutation_from_json.py msgid "Harpoon Tongue" -msgstr "" +msgstr "Lengua Arpón" #. ~ Description for {'str': 'Harpoon Tongue'} #: lang/json/mutation_from_json.py msgid "Your tongue has increased its length and mobility." -msgstr "" +msgstr "Tu lengua ha incrementado su longitud y su movilidad." #: lang/json/mutation_from_json.py #, no-python-format msgid "You stab into %s with your harpoon tongue." -msgstr "" +msgstr "Ensartás al/a %s con tu lengua arpón." #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s stabs into %2$s with their harpoon tongue." -msgstr "" +msgstr "%1$s ensarta al/a %2$s con su lengua arpón." #: lang/json/mutation_from_json.py msgid "Compound Eyes" @@ -185227,21 +186667,23 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Strong Legs" -msgstr "" +msgstr "Piernas Fuertes" #. ~ Description for {'str': 'Strong Legs'} #: lang/json/mutation_from_json.py msgid "Your legs have gained muscle mass to propel you across any terrain." msgstr "" +"Tus piernas han ganado masa muscular que te ayudan a impulsarte sobre " +"cualquier terreno." #: lang/json/mutation_from_json.py msgid "Leaping Legs" -msgstr "" +msgstr "Piernas Saltarinas" #. ~ Description for {'str': 'Leaping Legs'} #: lang/json/mutation_from_json.py msgid "You've gained a strong ability to leap from a standing position." -msgstr "" +msgstr "Conseguiste la poderosa habilidad de saltar desde una postura fija." #. ~ Description for {'str': 'Crushing Leap'} #: lang/json/mutation_from_json.py @@ -185249,6 +186691,8 @@ msgid "" "You've gained a strong ability to leap a significant distance from a " "standing position and crush whatever you land on." msgstr "" +"Conseguiste la poderosa habilidad de saltar una distancia importante desde " +"una postura fija y aplastar a lo que sea que le caigas encima." #: lang/json/mutation_from_json.py msgid "Toe Talons" @@ -186176,7 +187620,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Gastropod Foot" -msgstr "" +msgstr "Pie de Gasterópodo" #. ~ Description for {'str': 'Gastropod Foot'} #: lang/json/mutation_from_json.py @@ -186187,10 +187631,15 @@ msgid "" "noise. In addition to being harder to knock down, you can move through " "sludge-covered surfaces easily." msgstr "" +"Tus piernas se han consolidado en un solo 'pie' muscular que llega hasta tu " +"panza. Te movés a un cuarto de la velocidad que tenías antes y ya no te " +"podés poner pantalones ni calzado, pero por otra parte hacés mucho menos " +"ruido. Además de ser más difícil de tirar al suelo, te podés mover " +"fácilmente sobre superficies barrosas." #: lang/json/mutation_from_json.py msgid "Gastropod Balance" -msgstr "" +msgstr "Equilibrio de Gasterópodo" #. ~ Description for {'str': 'Gastropod Balance'} #: lang/json/mutation_from_json.py @@ -186198,10 +187647,12 @@ msgid "" "By pushing your whole 'foot' against the ground you are able to move across " "rough terrain without losing your 'footing'." msgstr "" +"Al empujar todo tu 'pie' contra el suelo sos capaz de moverte por terreno " +"difícil sin perder tu punto de apoyo." #: lang/json/mutation_from_json.py msgid "Mucus Secretion" -msgstr "" +msgstr "Secreción Mucosa" #. ~ Description for {'str': 'Mucus Secretion'} #: lang/json/mutation_from_json.py @@ -186210,31 +187661,36 @@ msgid "" " covers evrerything you come into contact with but now you can move through " "slime you didn't create with ease." msgstr "" +"Alguna vez tuviste una pareja que te decía mucosito, ahora sos una muestra " +"de eso. Cubre todo con lo que entrás en contacto y podés moverte por terreno" +" pantanoso o cubierto de slime con facilidad, aunque no sea producto tuyo." #: lang/json/mutation_from_json.py msgid "Acidic Secretion" -msgstr "" +msgstr "Secreción Ácida" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" +"Tu mucosidad se ha convertido en un componente ácido que parece ablandar a " +"tus presas." #: lang/json/mutation_from_json.py #, no-python-format msgid "You smear slime on %s" -msgstr "" +msgstr "Manchás con vicosidad al/a %s" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s smears slime on %2$s" -msgstr "" +msgstr "%1$s mancha con viscosidad al/a %2$s" #: lang/json/mutation_from_json.py msgid "Snail Trail" -msgstr "" +msgstr "Rastro de Caracol" #. ~ Description for {'str': 'Snail Trail'} #: lang/json/mutation_from_json.py @@ -186242,6 +187698,8 @@ msgid "" "You've developed some ability to control your slime emissions. As a result " "of this you can leave trails of slime anywhere you walk." msgstr "" +"Desarrollaste alguna habilidad de controlar tu emisión viscosa. Como " +"resultado, podés dejar rastros viscosos por donde camines." #: lang/json/mutation_from_json.py msgid "Canine Ears" @@ -186499,8 +187957,8 @@ msgstr "Fuerte" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" -msgstr "Tus músculos son un poco más fuertes. Fuerza +1." +msgid "Your muscles are a little stronger. +1 Strength." +msgstr "Tus músculos son un poco más fuertes. +1 Fuerza." #: lang/json/mutation_from_json.py msgid "Very Strong" @@ -186508,8 +187966,8 @@ msgstr "Muy Fuerte" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" -msgstr "Tus músculos son más fuertes. Fuerza +2." +msgid "Your muscles are stronger. +2 Strength." +msgstr "Tus músculos son más fuertes. +2 Fuerza." #: lang/json/mutation_from_json.py msgid "Extremely Strong" @@ -186517,8 +187975,8 @@ msgstr "Extremadamente Fuerte" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" -msgstr "Tus músculos son mucho más fuertes. Fuerza +4." +msgid "Your muscles are much stronger. +4 Strength." +msgstr "Tus músculos son mucho más fuertes. +4 Fuerza." #: lang/json/mutation_from_json.py msgid "Insanely Strong" @@ -186526,8 +187984,8 @@ msgstr "Terriblemente Fuerte" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" -msgstr "Tus músculos son notablemente más fuertes. Fuerza +7." +msgid "Your muscles are noticeably bulging. +7 Strength." +msgstr "Tus músculos están notoriamente abultados. +7 Fuerza." #: lang/json/mutation_from_json.py msgid "Prime Strength" @@ -186544,8 +188002,8 @@ msgstr "Diestro/a" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" -msgstr "Sos un poco más ágil. Destreza +1." +msgid "You are a little nimbler. +1 Dexterity." +msgstr "Sos un poco más hábil. +1 Destreza." #: lang/json/mutation_from_json.py msgid "Very Dextrous" @@ -186553,8 +188011,8 @@ msgstr "Muy Diestro/a" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" -msgstr "Sos más ágil. Destreza +2." +msgid "You are nimbler. +2 Dexterity." +msgstr "Sos más hábil. +2 Destreza." #: lang/json/mutation_from_json.py msgid "Extremely Dextrous" @@ -186562,8 +188020,8 @@ msgstr "Extremadamente Diestro/a" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" -msgstr "Sos más ágil y rápido. Destreza +4." +msgid "You are nimble and quick. +4 Dexterity." +msgstr "Sos más hábil y rápido. +4 Destreza." #: lang/json/mutation_from_json.py msgid "Insanely Dextrous" @@ -186571,8 +188029,8 @@ msgstr "Terriblemente Diestro/a" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" -msgstr "Sos mucho más ágil que antes. Destreza +7." +msgid "You are much nimbler than before. +7 Dexterity." +msgstr "Sos mucho más hábil que antes. +7 Destreza." #: lang/json/mutation_from_json.py msgid "Prime Dexterity" @@ -186589,8 +188047,8 @@ msgstr "Inteligente" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" -msgstr "Sos un poco más inteligente. Inteligencia +1." +msgid "You are a little smarter. +1 Intelligence." +msgstr "Sos un poco más inteligente. +1 Inteligencia." #: lang/json/mutation_from_json.py msgid "Very Smart" @@ -186598,8 +188056,8 @@ msgstr "Muy Inteligente" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" -msgstr "Sos más inteligente. Inteligencia +2." +msgid "You are smarter. +2 Intelligence." +msgstr "Sos más inteligente. +2 Inteligencia." #: lang/json/mutation_from_json.py msgid "Extremely Smart" @@ -186608,10 +188066,9 @@ msgstr "Extremadamente Ingeligente" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" -"Sos mucho más inteligente, y tu cráneo aumentó un poco de tamaño. " -"Inteligencia +4." +"Sos mucho más inteligente y tu cráneo sobresale levemente. +4 Inteligencia." #: lang/json/mutation_from_json.py msgid "Insanely Smart" @@ -186620,10 +188077,10 @@ msgstr "Terriblemente Inteligente" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" -"Tu cráneo aumentó notablemente de tamaño, debido a tu impresionante cerebro." -" Inteligencia +7." +"Tu cráneo sobresale notablemente debido a tu impresionante cerebro. +7 " +"Inteligencia." #: lang/json/mutation_from_json.py msgid "Prime Intelligence" @@ -186654,8 +188111,8 @@ msgstr "Perceptivo/a" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" -msgstr "Tus sentidos son un poco más agudos. Percepción +1." +msgid "Your senses are a little keener. +1 Perception." +msgstr "Tus sentidos son un poco más agudos. +1 Percepción." #: lang/json/mutation_from_json.py msgid "Very Perceptive" @@ -186663,8 +188120,8 @@ msgstr "Muy Perceptivo/a" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" -msgstr "Tus sentidos son más agudos. Percepción +2." +msgid "Your senses are keener. +2 Perception." +msgstr "Tus sentidos son más agudos. +2 Percepción." #: lang/json/mutation_from_json.py msgid "Extremely Perceptive" @@ -186672,8 +188129,8 @@ msgstr "Extremadamente Perceptivo/a" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" -msgstr "Tus sentidos son mucho más agudos. Percepción +4." +msgid "Your senses are much keener. +4 Perception." +msgstr "Tus sentidos son mucho más agudos. +4 Percepción." #: lang/json/mutation_from_json.py msgid "Insanely Perceptive" @@ -186681,8 +188138,8 @@ msgstr "Terriblemente Perceptivo/a" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" -msgstr "Podés percibir cosas que nunca te imaginaste. Percepción +7." +msgid "You can sense things you never imagined. +7 Perception." +msgstr "Sos capaza de sentir cosas que antes ni imaginabas. +7 Percepción." #: lang/json/mutation_from_json.py msgid "Prime Perception" @@ -186832,7 +188289,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Lolling Tongue" -msgstr "" +msgstr "Lengua Colgante" #. ~ Description for {'str': 'Lolling Tongue'} #: lang/json/mutation_from_json.py @@ -186840,10 +188297,12 @@ msgid "" "Your tongue has lengthened and often extends far beyond your mouth. This " "has no effect." msgstr "" +"Tu lengua se ha alargado y a menudo se extiende mucho más allá de tu boca. " +"Esto no tiene ningún efecto." #: lang/json/mutation_from_json.py msgid "Whipping Tongue" -msgstr "" +msgstr "Lengua Látigo" #. ~ Description for {'str': 'Whipping Tongue'} #: lang/json/mutation_from_json.py @@ -186851,16 +188310,18 @@ msgid "" "You've developed an extremely long and mobile tongue. You may use it to " "attack your enemies." msgstr "" +"Has desarrollado una lengua extremadamente larga y móvil. Podés usarla para " +"atacar a tus enemigos." #: lang/json/mutation_from_json.py #, no-python-format msgid "You bash %s with your tongue." -msgstr "" +msgstr "Golpeás al/a %s con tu lengua." #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s smacks into %2$s with their tongue." -msgstr "" +msgstr "%1$s le pega al/a %2$s con su lengua." #: lang/json/mutation_from_json.py msgid "Bulging Eyes" @@ -186877,7 +188338,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Intermediate Eyestalks" -msgstr "" +msgstr "Pedúnculos Oculares Intermedios" #. ~ Description for {'str': 'Intermediate Eyestalks'} #: lang/json/mutation_from_json.py @@ -186887,10 +188348,14 @@ msgid "" "but sometimes your vision goes wonky as your brain tries to process the new " "angles. Perception +1" msgstr "" +"Tus ojos apenas sobresalen de tu cabeza en tentáculos, lo que no te permite " +"usar anteojos rígidos. Lo bueno es que tenés una mejor percepción pero a " +"veces tu visión se desvía cuando tu cerebro intenta procesar los nuevos " +"ángulos. Percepción +1" #: lang/json/mutation_from_json.py msgid "Eyestalks" -msgstr "" +msgstr "Pedúnculos Oculares" #. ~ Description for {'str': 'Eyestalks'} #: lang/json/mutation_from_json.py @@ -186899,6 +188364,9 @@ msgid "" "of any eyewear. On the plus side, you can see in two directions at once, " "and they automatically retract to reduce damage. Perception +2" msgstr "" +"Tus ojos sobresalen de tu cabeza sobre unos tentáculos flexibles, lo que no " +"te permite utilizar anteojos. Lo bueno es que podés ver en dos direcciones a" +" la vez y que se retraen automáticamente para reducir el daño. Percepción +2" #: lang/json/mutation_from_json.py msgid "Mouth Flaps" @@ -187180,7 +188648,7 @@ msgstr "%1$s le arranca un pedazo de una mordida al %2$s" #: lang/json/mutation_from_json.py msgid "Wide Mouth" -msgstr "" +msgstr "Boca Ancha" #. ~ Description for {'str': 'Wide Mouth'} #: lang/json/mutation_from_json.py @@ -187188,6 +188656,8 @@ msgid "" "Your face and jaws have widened like a frogs. It looks hideous but it " "allows you to eat food whole." msgstr "" +"Tu cara y tu mandíbula se han ensanchado como la de las ranas. Se ve " +"horrible pero te permite meterte la comida entera." #: lang/json/mutation_from_json.py msgid "Proboscis" @@ -187257,7 +188727,7 @@ msgstr "Cazador Persistente" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" "Podés perseguir a tu presa por kilómetros y kilómetros a una diversidad de " "ritmos hasta que tenga que parar agotada." @@ -187395,7 +188865,7 @@ msgstr "Mucho Sueño" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" "Sentís que tenés que dormir bastante seguido. Pasás la mitad de tus días en " "la cama o cerca de ella." @@ -188018,7 +189488,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Croaking Voice" -msgstr "" +msgstr "Croar" #. ~ Description for {'str': 'Croaking Voice'} #: lang/json/mutation_from_json.py @@ -188026,6 +189496,8 @@ msgid "" "You have a low, croaking voice, like an aged grandparent. Persuading NPCs " "will be easier, but threatening them will be more difficult." msgstr "" +"Podés croar en un tono grave, como un abuelo avejentado. Te resultará más " +"fácil convencer a los PNJ pero amenazarlos será más difícil." #: lang/json/mutation_from_json.py msgid "Snarling Voice" @@ -188248,7 +189720,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Nacreous Shell" -msgstr "" +msgstr "Caparazón Nacarada" #. ~ Description for {'str': 'Nacreous Shell'} #: lang/json/mutation_from_json.py @@ -188256,6 +189728,8 @@ msgid "" "Your protective shell has developed increased strength and hardness and a " "mother of pearl sheen." msgstr "" +"Tu caparazón de protección ha desarrollado mayor fuerza y dureza y un brillo" +" perlado." #: lang/json/mutation_from_json.py msgid "Leg Tentacles" @@ -188302,6 +189776,7 @@ msgid "" "You feel bad for all the creatures that don't carry their home on their " "backs." msgstr "" +"Te sentís mal por todas las criaturas que no llevan su casa en sus espaldas." #. ~ Description for {'str': 'Bird'} #: lang/json/mutation_from_json.py @@ -188498,6 +189973,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "A perfect ambush predator, if only there were less competition." msgstr "" +"Es un depredador perfecto de emboscada, solo si hubiera menos competencia." #: lang/json/mutation_from_json.py msgid "Diminutive" @@ -189045,13 +190521,15 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Debug Stamina" -msgstr "" +msgstr "Resistencia Debug" #. ~ Description for {'str': 'Debug Stamina'} #: lang/json/mutation_from_json.py msgid "" "You can't run from the bugs, but you have enough stamina to at least try to." msgstr "" +"No podés escaparte de los bugs pero tenés la suficiente resistencia para por" +" lo menos intentarlo." #: lang/json/mutation_from_json.py msgid "Debug Deodorizer" @@ -190690,7 +192168,7 @@ msgid "" "bonuses." msgstr "" "Recibiste entrenamiento en combate en espacios cerrados. Por cada golpe que " -"das, ganás bonus de combate." +"das, ganás bonificaciones de combate." #: lang/json/mutation_from_json.py msgid "Shadow Meld" @@ -192400,7 +193878,7 @@ msgstr "Sensibilidad Abismal de Maná" #: lang/json/mutation_from_json.py msgid "Slime Breath" -msgstr "" +msgstr "Aliento Mucoso" #. ~ Description for {'str': 'Slime Breath'} #: lang/json/mutation_from_json.py @@ -192408,10 +193886,12 @@ msgid "" "Your breath is sticky and slimy somehow. This won't damage your " "interactions with people but it's definitely noticeable." msgstr "" +"Tu aliento es, de alguna manera, pegajoso y viscoso. Esto no perjudica tus " +"interacciones con la gente pero es definitivamente notorio." #: lang/json/mutation_from_json.py msgid "Chimeric Breath" -msgstr "" +msgstr "Aliento Quimérico" #. ~ Description for {'str': 'Chimeric Breath'} #: lang/json/mutation_from_json.py @@ -192419,6 +193899,8 @@ msgid "" "Your breath could metaphorically melt lead. It's horrible. It's so bad " "that it can actually distract from your attempts to intimidate someone." msgstr "" +"Tu aliento podría derretir el plomo metafóricamente. Es horrible. Es tan feo" +" que podría distraer tus intentos de intimidar a alguien." #: lang/json/mutation_from_json.py msgid "Debug Spell Mutation" @@ -192709,6 +194191,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "SOY UNA FOODPERSON. ¡Y TRAIGO EL SUSTENTO!" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "Ciborg" @@ -192744,6 +194227,14 @@ msgstr "Necesito conseguir más huesos" msgid "Fisherman" msgstr "Pescador" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "Ciborg, tipo 1" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "Soy un ciborg." + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "Miembro" @@ -193355,6 +194846,14 @@ msgstr "Estoy buscando mutágeno de tiranosaurio… Me voy a convertir en rey." msgid "Operator" msgstr "Operario" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "Bibliotecario de Forja" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "Me encargo de los libros y de los pergaminos." + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "Reina Pirata" @@ -193492,6 +194991,10 @@ msgstr "Mikhail Frolov" msgid "Heather Frolova" msgstr "Heather Frolova" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "Rubik" + #: lang/json/npc_from_json.py msgid "member" msgstr "miembro" @@ -193660,6 +195163,10 @@ msgstr "Comerciante" msgid "Guard" msgstr "Guardia" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "Camionero" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "Makayla Sanchez" @@ -193828,6 +195335,10 @@ msgstr "Yoshimi" msgid "Forge Lord" msgstr "Señor de la Forja" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "Bibliotecario, A" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "Helen Tavrel, ex Pirata" @@ -194857,6 +196368,10 @@ msgstr "pozo de slime" msgid "rocky butte" msgstr "cuello volcánico rocoso" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "entrada de planta baja" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "campamento de chatarra" @@ -195546,6 +197061,10 @@ msgstr "trinchera con púas" msgid "fabrication workshop survey" msgstr "planeamiento para taller de fabricación" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "planeamiento para taller de fabricación 2" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "planeamiento para herrería" @@ -195554,25 +197073,41 @@ msgstr "planeamiento para herrería" msgid "blacksmith shop" msgstr "herrería" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "planeamiento para ganado" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "planeamiento para ganado 2" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "planeamiento para negocio" +#: lang/json/overmap_terrain_from_json.py +msgid "store house survey 2" +msgstr "planeamiento para negocio 2" + #: lang/json/overmap_terrain_from_json.py msgid "saltworks survey" msgstr "planeamiento para salinas" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "planeamiento para cantina" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" -msgstr "planeamiento 2 para granja" +msgid "canteen survey 2" +msgstr "planeamiento para cantina 2" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "planeamiento para granja 2" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" +msgstr "planeamiento para garage 2" #: lang/json/overmap_terrain_from_json.py msgid "military helipad garage" @@ -195938,6 +197473,10 @@ msgstr "atalaya mi-go" msgid "subway station?" msgstr "estación de subte?" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "pasillo de laboratorio" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "reactor de laboratorio científico" @@ -197434,6 +198973,70 @@ msgstr "" "Encontrás consuelo en el fondo de las botellas. Putamadre, necesitás un " "trago." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "Adicto a las Pastillas para Dormir" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" +"Tenías problemas para dormirte así que empezaste a tomar esas pastillas para" +" dormir. El problema es que ahora no te podés dormir si no las tomás y el " +"Cataclismo complica un poco más las cosas." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "Adicta a las Pastillas para Dormir" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" +"Tenías problemas para dormirte así que empezaste a tomar esas pastillas para" +" dormir. El problema es que ahora no te podés dormir si no las tomás y el " +"Cataclismo complica un poco más las cosas." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "Adicto a la Cafeína" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" +"El café era tu compañero de todos los días para sobrevivir a tu trabajo, " +"pero conseguir cafeína para tu cuerpo ahora va a ser mucho más difícil." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "Adicta a la Cafeína" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" +"El café era tu compañero diario para sobrevivir a tu trabajo, pero ahora " +"introducir la cafeína en tu cuerpo será mucho más difícil." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -197568,6 +199171,40 @@ msgstr "" "ritmo de la vida moderna. La naturaleza no está llena de gente así que debe " "ser seguro ahí, ¿no? Debería ser." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "Bushcraft" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" +"Alcanzaste un nivel completamente nuevo de acampar. Te pasaste las noches y " +"los fines de semana sobreviviendo en la naturaleza con solo un cuchillo para" +" ayudarte. Tal vez esto te pueda mantener vivo alejado de la gente." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "Bushcraft" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" +"Alcanzaste un nivel completamente nuevo de acampar. Te pasaste las noches y " +"los fines de semana sobreviviendo en la naturaleza con solo un cuchillo para" +" ayudarte. Tal vez esto te pueda mantener viva alejada de la gente." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -197608,10 +199245,10 @@ msgstr "Amante de Libros" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" -"Te encanta leer pero pareciera como si nunca tenés el tiempo suficiente. Tal" -" vez el Cataclismo sea una bendición disfrazada." +"Te encanta leer pero siempre sentiste que no tenías el tiempo suficiente. " +"Tal vez el Cataclismo sea una bendición disfrazada." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -197623,10 +199260,10 @@ msgstr "Amante de Libros" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" -"Te encanta leer pero pareciera como si nunca tenés el tiempo suficiente. Tal" -" vez el Cataclismo sea una bendición disfrazada." +"Te encanta leer pero siempre sentiste que no tenías el tiempo suficiente. " +"Tal vez el Cataclismo sea una bendición disfrazada." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -198290,6 +199927,36 @@ msgstr "" "Verdaderamente, disfrutás comer y ¡podés comer a gran velocidad y en mayor " "cantidad que cualquier otra persona!" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "Maratonista" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" +"Fuiste a participar de la Maratón de Boston todos los años. Ahora, ese " +"entrenamiento te va a venir muy bien para evitar a los muertos." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "Maratonista" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" +"Fuiste a participar de la Maratón de Boston todos los años. Ahora, ese " +"entrenamiento te va a venir muy bien para evitar a los muertos." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -198604,6 +200271,70 @@ msgstr "" "esquivar y es menos probable que te caigas al suelo si te golpean en combate" " cuerpo a cuerpo mientras tenés puestos patines o rollers." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "Manualidades" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" +"Te encantaba fabricar cosas en casa. Con suerte, esto te puede ayudar a " +"sobrevivir ahora en un mundo que se volvió infernal." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "Manualidades" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" +"Te encantaba fabricar cosas en casa. Con suerte, esto te puede ayudar a " +"sobrevivir ahora en un mundo que se volvió infernal." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "Restauración de Autos" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" +"Pasabas tiempo todos los fines de semana en tu garage trabajando en un " +"antiguo auto clásico. Nunca terminaste ese auto pero por lo menos aprendiste" +" un poco con los años." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "Restauración de Autos" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" +"Pasabas tiempo todos los fines de semana en tu garage trabajando en un " +"antiguo auto clásico. Nunca terminaste ese auto pero por lo menos aprendiste" +" un poco con los años." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -198744,6 +200475,40 @@ msgstr "" "Guiaste las aventuras de los jugadores a través de tus calabozos y " "fortalezas. Ahora, sos la última miembra de tu grupo." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "Radioaficionado" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" +"Te pasaste las noches usando, construyendo y reparando viejas radios. Ahora " +"no tenés con quién hablar. Pero no vas a darte por vencido y tal vez tu " +"conocimiento en electrónica te pueda ayudar de alguna forma." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "Radioaficionada" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" +"Te pasaste las noches usando, construyendo y reparando viejas radios. Ahora " +"no tenés con quién hablar. Pero no vas a darte por vencida y tal vez tu " +"conocimiento en electrónica te pueda ayudar de alguna forma." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -198800,6 +200565,40 @@ msgstr "" "Tu habilidad para jugar de base o de pivot haría pedazos a los muertos vivos" " en un tiempo suplementario." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "Tirador de Polígono de Tiro" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" +"Te gustaba ir a la armería y hacer algunas prácticas de tiro. A veces " +"también le tirabas a latitas arriba de postes. Tal vez te hubiera ayudado si" +" te imaginabas a estas cosas muertas en lugar de las latas." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "Tiradora de Polígono de Tiro" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" +"Te gustaba ir a la armería y hacer algunas prácticas de tiro. A veces " +"también le tirabas a latitas arriba de postes. Tal vez te hubiera ayudado si" +" te imaginabas a estas cosas muertas en lugar de las latas." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -198826,6 +200625,68 @@ msgstr "" "Los profesionales de la medicina no van a venir pero vos vas a seguir viva " "de todas maneras." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "Tirador de Tiro al Platillo" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" +"No hay nada como el olor de la pólvora y los discos naranjas cerámicos " +"explotando en el cielo. Llegó el momento de dispararle a cosas con un poco " +"más de carne que discos de arcilla." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "Tiradora de Tiro al Platillo" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" +"No hay nada como el olor de la pólvora y los discos naranjas cerámicos " +"explotando en el cielo. Llegó el momento de dispararle a cosas con un poco " +"más de carne que discos de arcilla." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "Asador" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" +"Disfrutabas invitar a tus vecinos al patio para una juntada casi todos los " +"fines de semana. Vos eras, obviamente, el asador experto." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "Asadora" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" +"Disfrutabas invitar a tus vecinos al patio para una juntada casi todos los " +"fines de semana. Vos eras, obviamente, la asadora experta." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -199279,7 +201140,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Meditation" -msgstr "" +msgstr "Meditación" #. ~ Profession (male Meditation) description #: lang/json/professions_from_json.py @@ -199294,7 +201155,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Meditation" -msgstr "" +msgstr "Meditación" #. ~ Profession (female Meditation) description #: lang/json/professions_from_json.py @@ -199770,6 +201631,8 @@ msgid "" "You played with the local team. You're the only one left, but now you can " "use your trusty bat for another purpose. Home run!" msgstr "" +"Jugabas para el equipo local. Sos el único que quedaste pero ahora podés " +"darle otro uso a tu fiel bate. ¡Home run!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -199783,6 +201646,8 @@ msgid "" "You played with the local team. You're the only one left, but now you can " "use your trusty bat for another purpose. Home run!" msgstr "" +"Jugabas para el equipo local. Sos la única que quedaste pero ahora podés " +"darle otro uso a tu fiel bate. ¡Home run!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -199866,6 +201731,10 @@ msgid "" "tours now, but as the saying goes, life is like riding a bicycle: you've got" " to keep moving." msgstr "" +"Eras un ciclista que prometía tener una carrera brillante por delante antes " +"de que esto pasara. Tal vez ya no vas a poder participar en un grand tour, " +"pero como dice el dicho, la vida es como andar en bicicleta: tenés que " +"seguir moviéndote." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -199881,6 +201750,10 @@ msgid "" "tours now, but as the saying goes, life is like riding a bicycle: you've got" " to keep moving." msgstr "" +"Eras una ciclista que prometía tener una carrera brillante por delante antes" +" de que esto pasara. Tal vez ya no vas a poder participar en un grand tour, " +"pero como dice el dicho, la vida es como andar en bicicleta: tenés que " +"seguir moviéndote." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -199896,6 +201769,10 @@ msgid "" " duty have left your shooting skills rusty, and all the medals in the world " "won't protect you now." msgstr "" +"Lograste subir rangos desde un soldado raso sin nombre hasta un Teniente " +"General importante, respetado y condecorado. Lo malo es que esos años de " +"trabajo en escritorio dejaron oxidadas tus habilidades de tiro, y todas las " +"medallas del mundo ahora no podrán protegerte." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -199911,6 +201788,10 @@ msgid "" " duty have left your shooting skills rusty, and all the medals in the world " "won't protect you now." msgstr "" +"Lograste subir rangos desde una soldada rasa sin nombre hasta una Tenienta " +"General importante, respetada y condecorada. Lo malo es que esos años de " +"trabajo en escritorio dejaron oxidadas tus habilidades de tiro, y todas las " +"medallas del mundo ahora no podrán protegerte." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -199963,6 +201844,10 @@ msgid "" "the mechanic's trade, keeping the armor running. It's been years since you " "last touched a rifle, and the dead men are marching again…" msgstr "" +"Al principio de tu carrera militar fuiste elegido para un entrenamiento " +"extra en mecánica, manteniendo funcionando a los blindados. Pasaron años " +"desde la última vez que tocaste un rifle, y los hombres muertos están " +"marchando otra vez…" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -199977,6 +201862,10 @@ msgid "" "the mechanic's trade, keeping the armor running. It's been years since you " "last touched a rifle, and the dead men are marching again…" msgstr "" +"Al principio de tu carrera militar fuiste elegida para un entrenamiento " +"extra en mecánica, manteniendo funcionando a los blindados. Pasaron años " +"desde la última vez que tocaste un rifle, y los hombres muertos están " +"marchando otra vez…" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -199992,6 +201881,11 @@ msgid "" "years since you last handled a rifle in basic training; now might be the " "time to dust off those skills." msgstr "" +"Tu trabajo era simple: mantener en movimiento al ejército. Construiste " +"puentes, construiste rutas, destruiste fortificaciones y limpiaste minas. " +"Pasaron años desde que tocaste un rifle por última vez durante el " +"entrenamiento básico, ahora puede ser el momento de desempolvar esas " +"habilidades." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -200007,6 +201901,11 @@ msgid "" "years since you last handled a rifle in basic training; now might be the " "time to dust off those skills." msgstr "" +"Tu trabajo era simple: mantener en movimiento al ejército. Construiste " +"puentes, construiste rutas, destruiste fortificaciones y limpiaste minas. " +"Pasaron años desde que tocaste un rifle por última vez durante el " +"entrenamiento básico, ahora puede ser el momento de desempolvar esas " +"habilidades." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -200021,6 +201920,9 @@ msgid "" "sort of parental figure, and they relied on you to give orders and keep them" " alive. You failed them. And now you're alone." msgstr "" +"Sos veterano de varias misiones de preservación de la paz. Lideraste a tu " +"equipo como una figura parental, y ellos dependían de tus órdenes para " +"mantenerlos vivos. Les fallaste. Y ahora estás solo." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -200035,6 +201937,9 @@ msgid "" "sort of parental figure, and they relied on you to give orders and keep them" " alive. You failed them. And now you're alone." msgstr "" +"Sos veterana de varias misiones de preservación de la paz. Lideraste a tu " +"equipo como una figura maternal, y ellos dependían de tus órdenes para " +"mantenerlos vivos. Les fallaste. Y ahora estás sola." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -200443,6 +202348,8 @@ msgid "" "friends. But for all the crap thrown your way, you're still breathing. For" " now." msgstr "" +"La sociedad te dejó en la periferia sin casa, sin familia, sin amigos. Pero " +"por toda esa mierda que te hicieron pasar ahora seguís vivo. Por ahora." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -200457,6 +202364,8 @@ msgid "" "friends. But for all the crap thrown your way, you're still breathing. For" " now." msgstr "" +"La sociedad te dejó en la periferia sin casa, sin familia, sin amigos. Pero " +"por toda esa mierda que te hicieron pasar ahora seguís viva. Por ahora." #. ~ Profession (male Helicopter Pilot) description #: lang/json/professions_from_json.py @@ -200786,6 +202695,11 @@ msgid "" "motorcycle to escape. Who's going to respect your authority when the " "government this badge represents doesn't exist anymore?" msgstr "" +"Eras un simple ayudante del comisario en un pueblo chico, recibiste el " +"llamado y te preparaste para ir al rescate. Inmediatamente eras vos el que " +"necesitaba rescate, y tuviste que abandonar tu moto para escapar. ¿Quién " +"respetará tu autoridad ahora que el gobierno al que representa esta placa no" +" existe más?" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -200801,6 +202715,11 @@ msgid "" "motorcycle to escape. Who's going to respect your authority when the " "government this badge represents doesn't exist anymore?" msgstr "" +"Eras una simple ayudante del comisario en un pueblo chico, recibiste el " +"llamado y te preparaste para ir al rescate. Inmediatamente eras vos la que " +"necesitaba rescate, y tuviste que abandonar tu moto para escapar. ¿Quién " +"respetará tu autoridad ahora que el gobierno al que representa esta placa no" +" existe más?" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201071,6 +202990,10 @@ msgid "" "way to pick up a customer, a riot broke out around you. You took a long " "detour to safety, only to find yourself somewhere unfamiliar." msgstr "" +"Te encanta manejar y decidiste empezar a hacer plata con eso. Cuando ibas a " +"buscar a un cliente, un disturbio estalló a tu alrededor. Te desviaste mucho" +" del camino para estar seguro, solo para darte cuenta que no sabías dónde " +"estabas." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201085,6 +203008,10 @@ msgid "" "way to pick up a customer, a riot broke out around you. You took a long " "detour to safety, only to find yourself somewhere unfamiliar." msgstr "" +"Te encanta manejar y decidiste empezar a hacer plata con eso. Cuando ibas a " +"buscar a un cliente, un disturbio estalló a tu alrededor. Te desviaste mucho" +" del camino para estar segura, solo para darte cuenta que no sabías dónde " +"estabas." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201100,6 +203027,11 @@ msgid "" " took a long detour only to find yourself lost. That call will have to wait" " - you're in an emergency of your own now." msgstr "" +"Cuando ibas a atender un llamado de emergencia, casi te chocás contra un " +"disturbio en el medio de la ciudad. Esquivando las calles en llamas y " +"cubiertas de escombro, te desviaste mucho hasta que te diste cuenta que " +"estabas perdido. Ese llamado va a tener que esperar - ahora vos mismo estás " +"en una emergencia." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201115,6 +203047,11 @@ msgid "" " took a long detour only to find yourself lost. That call will have to wait" " - you're in an emergency of your own now." msgstr "" +"Cuando ibas a atender un llamado de emergencia, casi te chocás contra un " +"disturbio en el medio de la ciudad. Esquivando las calles en llamas y " +"cubiertas de escombro, te desviaste mucho hasta que te diste cuenta que " +"estabas perdida. Ese llamado va a tener que esperar - ahora vos misma estás " +"en una emergencia." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201131,6 +203068,11 @@ msgid "" "You veered off onto an old, neglected side road to escape, only to find " "yourself lost and low on gas." msgstr "" +"Empleado de una gran empresa, realizabas servicios de instalación y " +"mantenimiento en los hogares de luditas desagradecidos. Volviendo de tu " +"último llamado, fuiste rodeado súbitamente por lo que pensaste que eran " +"manifestantes violentos. Giraste bruscamente hacia una camino viejo y " +"olvidado para escapar, y te descubriste perdido y con poca nafta." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201147,6 +203089,11 @@ msgid "" "You veered off onto an old, neglected side road to escape, only to find " "yourself lost and low on gas." msgstr "" +"Empleada de una gran empresa, realizabas servicios de instalación y " +"mantenimiento en los hogares de luditas desagradecidos. Volviendo de tu " +"último llamado, fuiste rodeada súbitamente por lo que pensaste que eran " +"manifestantes violentos. Giraste bruscamente hacia una camino viejo y " +"olvidado para escapar, y te descubriste perdida y con poca nafta." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201163,6 +203110,12 @@ msgid "" " but now you've gotten lost. At least you're getting a break from the " "hellish screams of children, though you're starting to hear new ones…" msgstr "" +"Te ganabas la vida llevando chicos entre la escuela y sus casas, una " +"elección de la que te arrepentías casi todos los días. Ninguno de los " +"mocosos estaban en sus paradas normales y el ruido de tu colectivo " +"rápidamente atrajo hordas de zombis. Escapaste pero ahora estás perdido. Por" +" lo menos tenés un descanso de los gritos infernales de los pibes, aunque " +"estás empezando a escuchar gritos nuevos…" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201179,6 +203132,12 @@ msgid "" " but now you've gotten lost. At least you're getting a break from the " "hellish screams of children, though you're starting to hear new ones…" msgstr "" +"Te ganabas la vida llevando chicos entre la escuela y sus casas, una " +"elección de la que te arrepentías casi todos los días. Ninguno de los " +"mocosos estaban en sus paradas normales y el ruido de tu colectivo " +"rápidamente atrajo hordas de zombis. Escapaste pero ahora estás perdida. Por" +" lo menos tenés un descanso de los gritos infernales de los pibes, aunque " +"estás empezando a escuchar gritos nuevos…" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201193,6 +203152,9 @@ msgid "" "robbery. It all went to shit, your backup got eaten, and you were lucky to " "escape with your life and patrol car." msgstr "" +"Como oficial en servicio, recibiste un llamado y estabas preparado para " +"responder a un robo. Todo se fue a la mierda, se comieron a tus refuerzos y " +"tuviste suerte de escapar vivo y con tu patrulla." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201207,6 +203169,9 @@ msgid "" "robbery. It all went to shit, your backup got eaten, and you were lucky to " "escape with your life and patrol car." msgstr "" +"Como oficial en servicio, recibiste un llamado y estabas preparada para " +"responder a un robo. Todo se fue a la mierda, se comieron a tus refuerzos y " +"tuviste suerte de escapar viva y con tu patrulla." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201223,6 +203188,12 @@ msgid "" "act of rebellion against the cruelty of this doomed world. Do not let that " "flame of hope perish inside you." msgstr "" +"Vos y un grupo de individuos de mentalidad similar construyeron un escondite" +" en el bosque desde el cual lanzaban saqueos en una camioneta ensamblada " +"apresuradamente. La última salida salió mal y ahora todos tus compañeros " +"están muertos. Cada respiración es un acto de rebelión contra la crueldad de" +" este mundo condenado. No dejes que esa llama de esperanza adentro tuyo se " +"apague." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201239,6 +203210,12 @@ msgid "" "act of rebellion against the cruelty of this doomed world. Do not let that " "flame of hope perish inside you." msgstr "" +"Vos y un grupo de individuos de mentalidad similar construyeron un escondite" +" en el bosque desde el cual lanzaban saqueos en una camioneta ensamblada " +"apresuradamente. La última salida salió mal y ahora todos tus compañeros " +"están muertos. Cada respiración es un acto de rebelión contra la crueldad de" +" este mundo condenado. No dejes que esa llama de esperanza adentro tuyo se " +"apague." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201255,6 +203232,11 @@ msgid "" "stockpiled as many supplies as possible and set out in your pickup looking " "for answers." msgstr "" +"Tus días de patrullar el parque y proteger a personas y vida silvestre de " +"ellos mismos te enseñaron muchas habilidades útiles. Luego de encontrar una " +"escena grotesca en un campamento y no obtener respuesta cuando pediste ayuda" +" por radio, agarraste todos los suministros que pudiste y te fuiste en tu " +"camioneta a buscar respuestas." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201271,6 +203253,11 @@ msgid "" "stockpiled as many supplies as possible and set out in your pickup looking " "for answers." msgstr "" +"Tus días de patrullar el parque y proteger a personas y vida silvestre de " +"ellos mismos te enseñaron muchas habilidades útiles. Luego de encontrar una " +"escena grotesca en un campamento y no obtener respuesta cuando pediste ayuda" +" por radio, agarraste todos los suministros que pudiste y te fuiste en tu " +"camioneta a buscar respuestas." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201284,6 +203271,9 @@ msgid "" "You're a lumberjack, and you're okay. You felled trees before the world " "ended, and you suspect the undead aren't nearly as tough." msgstr "" +"Sos leñador y estás bien. Talabas árboles antes de que el mundo se " +"terminara, y sospechás que los muertos vivos no resistirán tanto como los " +"árboles." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201297,6 +203287,9 @@ msgid "" "You're a lumberjack, and you're okay. You felled trees before the world " "ended, and you suspect the undead aren't nearly as tough." msgstr "" +"Sos leñadora y estás bien. Talabas árboles antes de que el mundo se " +"terminara, y sospechás que los muertos vivos no resistirán tanto como los " +"árboles." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201311,6 +203304,9 @@ msgid "" "irritable and unreasonable than usual today. You showed them the meaning of" " fast food… by running for your life!" msgstr "" +"Los comensales en la hamburguesería elegante donde trabajabas parecen ahora " +"más irritables e irracionales de lo que eran. Les mostraste el significado " +"de la comida rápida… ¡corriendo por tu vida!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201325,6 +203321,9 @@ msgid "" "irritable and unreasonable than usual today. You showed them the meaning of" " fast food… by running for your life!" msgstr "" +"Los comensales en la hamburguesería elegante donde trabajabas parecen ahora " +"más irritables e irracionales de lo que eran. Les mostraste el significado " +"de la comida rápida… ¡corriendo por tu vida!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201373,6 +203372,12 @@ msgid "" " no one stopping you from your dream of breaking into a military mainframe " "now." msgstr "" +"Las pastillas de cafeína y las trasnochadas adelante del monitor de tu " +"computadora te hicieron un experto en escribir y crackear código. " +"Lamentablemente, no hay más electricidad y de repente tus mejores " +"habilidades parecen significativamente menos útiles. Por lo menos no hay " +"nadie que te detenga de perseguir tu sueño de infiltrarte en un sistema " +"militar." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201389,6 +203394,12 @@ msgid "" " no one stopping you from your dream of breaking into a military mainframe " "now." msgstr "" +"Las pastillas de cafeína y las trasnochadas adelante del monitor de tu " +"computadora te hicieron una experta en escribir y crackear código. " +"Lamentablemente, no hay más electricidad y de repente tus mejores " +"habilidades parecen significativamente menos útiles. Por lo menos no hay " +"nadie que te detenga de perseguir tu sueño de infiltrarte en un sistema " +"militar." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201510,6 +203521,9 @@ msgid "" "You spent most of your life on a motorcycle, out on the open road with your " "club. Now they're all dead. Time to ride or die." msgstr "" +"Te pasaste la mayor parte de tu vida arriba de una moto, andando por las " +"rutas con tu grupo. Ahora están todos muertos. Llegó el momento de manejar o" +" morir." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201523,6 +203537,9 @@ msgid "" "You spent most of your life on a motorcycle, out on the open road with your " "club. Now they're all dead. Time to ride or die." msgstr "" +"Te pasaste la mayor parte de tu vida arriba de una moto, andando por las " +"rutas con tu grupo. Ahora están todos muertos. Llegó el momento de manejar o" +" morir." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -202046,6 +204063,9 @@ msgid "" "Neither snow nor rain nor heat nor gloom of night stays you from the swift " "completion of your appointed rounds, but nobody said anything about zombies." msgstr "" +"Ni la nieve ni la lluvia ni el calor ni la oscuridad de la noche evitará tu " +"veloz finalización de tus rondas designadas, pero nunca te dijeron nada de " +"los zombis." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -202059,6 +204079,9 @@ msgid "" "Neither snow nor rain nor heat nor gloom of night stays you from the swift " "completion of your appointed rounds, but nobody said anything about zombies." msgstr "" +"Ni la nieve ni la lluvia ni el calor ni la oscuridad de la noche evitará tu " +"veloz finalización de tus rondas designadas, pero nunca te dijeron nada de " +"los zombis." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -202073,6 +204096,9 @@ msgid "" "The Cataclysm has offered you a chance to escape, but freedom may come with " "a steep price." msgstr "" +"Tu juicio fue contencioso pero finalmente terminaste en cana. El Cataclismo " +"te ofreció la posibilidad de escapar pero la libertad puede llegar con un " +"precio alto." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -202087,6 +204113,9 @@ msgid "" "The Cataclysm has offered you a chance to escape, but freedom may come with " "a steep price." msgstr "" +"Tu juicio fue contencioso pero finalmente terminaste en cana. El Cataclismo " +"te ofreció la posibilidad de escapar pero la libertad puede llegar con un " +"precio alto." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -202171,6 +204200,9 @@ msgid "" "they had the nerve to put you in jail for it. Too bad you can't sell drugs " "to zombies." msgstr "" +"Pudiste salir de la pobreza vendiendo los productos que todos querían, y " +"tuvieron la osadía de meterte preso por eso. Qué mal que no podés venderle " +"drogas a los zombis." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -202185,6 +204217,9 @@ msgid "" "they had the nerve to put you in jail for it. Too bad you can't sell drugs " "to zombies." msgstr "" +"Pudiste salir de la pobreza vendiendo los productos que todos querían, y " +"tuvieron la osadía de meterte presa por eso. Qué mal que no podés venderle " +"drogas a los zombis." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -203485,6 +205520,9 @@ msgid "" " It wouldn't be a lie to say that running is your life. Which is good, " "because now that the end has come, you're running FOR your life." msgstr "" +"Practicaste parkour por muchos años y convertiste al mundo en tu parque de " +"juegos. No sería mentira decir que correr es tu vida. Y está muy bien, " +"porque ahora que llegó el fin, vas a correr POR tu vida." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -203499,6 +205537,9 @@ msgid "" " It wouldn't be a lie to say that running is your life. Which is good, " "because now that the end has come, you're running FOR your life." msgstr "" +"Practicaste parkour por muchos años y convertiste al mundo en tu parque de " +"juegos. No sería mentira decir que correr es tu vida. Y está muy bien, " +"porque ahora que llegó el fin, vas a correr POR tu vida." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -203513,6 +205554,9 @@ msgid "" " ever leaving home. You came here to get a taste of New England, but New " "England keeps trying to get a taste of you!" msgstr "" +"Este parecía ser un lugar genial para unas vacaciones pero empezaste a " +"arrepentirte de haber salido de casa. Llegaste para probar New England pero " +"¡New England está intentando probarte a vos!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -203527,6 +205571,9 @@ msgid "" " ever leaving home. You came here to get a taste of New England, but New " "England keeps trying to get a taste of you!" msgstr "" +"Este parecía ser un lugar genial para unas vacaciones pero empezaste a " +"arrepentirte de haber salido de casa. Llegaste para probar New England pero " +"¡New England está intentando probarte a vos!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -204197,6 +206244,9 @@ msgid "" "tried to bite you. To top it off, it seems that this wasn't some sort of " "bad high, as the whole town tried going for your throat too." msgstr "" +"Estabas por finalizar tu venta más grande cuando el que te iba a comprar te " +"intentó morder. Y lo peor de todo, parece que no fue a causa de que le pegó " +"mal algo porque todo el pueblo estaba tratando de arrancarte el cogote." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -204211,11 +206261,14 @@ msgid "" "tried to bite you. To top it off, it seems that this wasn't some sort of " "bad high, as the whole town tried going for your throat too." msgstr "" +"Estabas por finalizar tu venta más grande cuando el que te iba a comprar te " +"intentó morder. Y lo peor de todo, parece que no fue a causa de que le pegó " +"mal algo porque todo el pueblo estaba tratando de arrancarte el cogote." #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Mafia Boss" -msgstr "" +msgstr "Capo de Mafia" #. ~ Profession (male Mafia Boss) description #: lang/json/professions_from_json.py @@ -204236,7 +206289,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Mafia Boss" -msgstr "" +msgstr "Capa de Mafia" #. ~ Profession (female Mafia Boss) description #: lang/json/professions_from_json.py @@ -204254,6 +206307,80 @@ msgstr "" "pero antes llegó el fin del mundo. Tu pandilla desapareció pero tu vida " "pasada te preparó para un mundo donde la violencia es la moneda más común." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "Investigador Paranormal" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" +"Cuando fuiste despedido de tu puesto como profesor en parapsicología en la " +"universidad, comenzaste tu negocio de investigaciones paranormales. Tus " +"excompañeros de trabajo no estaban de acuerdo con tus investigaciones pero " +"parece que ahora valió la pena." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "Investigadora Paranormal" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" +"Cuando fuiste despedida de tu puesto como profesora en parapsicología en la " +"universidad, comenzaste tu negocio de investigaciones paranormales. Tus " +"excompañeros de trabajo no estaban de acuerdo con tus investigaciones pero " +"parece que ahora valió la pena." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "Observador de Aves" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" +"Estabas en tu parque favorito mirando los zorzales robin cuando sucedió el " +"Cataclismo. Ahora lo único que te quedó son tus binoculares y un montón de " +"conocimiento sobre aves locales para compartir con cualquier sobreviviente " +"que encuentres." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "Observadora de Aves" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" +"Estabas en tu parque favorito mirando los zorzales robin cuando sucedió el " +"Cataclismo. Ahora lo único que te quedó son tus binoculares y un montón de " +"conocimiento sobre aves locales para compartir con cualquier sobreviviente " +"que encuentres." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -207055,7 +209182,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Novice Necromancer" -msgstr "Nigromante Novato" +msgstr "Necromante Novato" #. ~ Profession (male Novice Necromancer) description #: lang/json/professions_from_json.py @@ -207072,7 +209199,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Novice Necromancer" -msgstr "Nigromante Novata" +msgstr "Necromante Novata" #. ~ Profession (female Novice Necromancer) description #: lang/json/professions_from_json.py @@ -209738,6 +211865,32 @@ msgstr "" "Sos habilidoso/a para detectar cosas fuera de lo ordinario, como trampas o " "emboscadas." +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "Punto Débil Debug" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" +"Es una mejora básica en la posibilidad de golpear uno de los puntos débiles " +"de un monstruo." + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "Punto Débil Experto Debug" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" +"Es una mejora experta en la posibilidad de golpear uno de los puntos débiles" +" de un monstruo." + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "Trabajo con Fibras" @@ -212348,12 +214501,12 @@ msgid "" "Let's expand our living areas with rock walls, we'll use that far vehicle " "bay." msgstr "" -"Vamos a expandir el lugar para vivir con paredes de roca, usaremos ese lugar" -" para vehículos." +"Vamos a expandir el lugar para vivir con paredes de piedra, usaremos ese " +"lugar para vehículos." #: lang/json/recipe_from_json.py msgid "build the rock earth living quarters walls" -msgstr "construir paredes de roca de habitaciones" +msgstr "construir paredes de piedra de habitaciones" #: lang/json/recipe_from_json.py msgid "" @@ -214830,23 +216983,23 @@ msgstr "construir paredes NO de troncos de dormitorio" #: lang/json/recipe_from_json.py msgid "build SE rock bedroom walls" -msgstr "construir paredes SE de piedras de dormitorio" +msgstr "construir paredes SE de piedra de dormitorio" #: lang/json/recipe_from_json.py msgid "build E rock bedroom walls" -msgstr "construir paredes E de piedras de dormitorio" +msgstr "construir paredes E de piedra de dormitorio" #: lang/json/recipe_from_json.py msgid "build SW rock bedroom walls" -msgstr "construir paredes SO de piedras de dormitorio" +msgstr "construir paredes SO de piedra de dormitorio" #: lang/json/recipe_from_json.py msgid "build W rock bedroom walls" -msgstr "construir paredes O de piedras de dormitorio" +msgstr "construir paredes O de piedra de dormitorio" #: lang/json/recipe_from_json.py msgid "build NW rock bedroom walls" -msgstr "construir paredes NO de piedras de dormitorio" +msgstr "construir paredes NO de piedra de dormitorio" #: lang/json/recipe_from_json.py msgid "build SE standard bedroom walls" @@ -214994,7 +217147,7 @@ msgstr "construir paredes S de troncos de dormitorio" #: lang/json/recipe_from_json.py msgid "build S rock bedroom walls" -msgstr "construir paredes S de piedras de dormitorio" +msgstr "construir paredes S de piedra de dormitorio" #: lang/json/recipe_from_json.py msgid "build S standard bedroom walls" @@ -215225,8 +217378,8 @@ msgid "" "Let's get this log wall smoking area covered to protect the workers from the" " weather." msgstr "" -"Vamos a hacer este lugar cubierto para ahumar de troncos para proteger a los" -" trabajadores del clima." +"Vamos a cubrir este lugar para ahumar de troncos para proteger del clima a " +"los trabajadores." #: lang/json/recipe_from_json.py msgid "build a log wall roofed area for smoking racks" @@ -215289,8 +217442,8 @@ msgid "" "Let's get this metal wall smoking area covered to protect the workers from " "the weather." msgstr "" -"Vamos a hacer este lugar cubierto para ahumar de metal para proteger a los " -"trabajadores del clima." +"Vamos a cubrir este lugar para ahumar de metal para proteger del clima a los" +" trabajadores." #: lang/json/recipe_from_json.py msgid "build a metal wall roofed area for smoking racks" @@ -215355,8 +217508,8 @@ msgid "" "Let's get this mi-go resin smoking area covered to protect the workers from " "the weather." msgstr "" -"Vamos a hacer este lugar cubierto para ahumar de resina mi-go para proteger " -"a los trabajadores del clima." +"Vamos a cubrir este lugar para ahumar de resina mi-go para proteger del " +"clima a los trabajadores." #: lang/json/recipe_from_json.py msgid "build a mi-go resin roofed area for smoking racks" @@ -215421,8 +217574,8 @@ msgid "" "Let's get this rammed earth smoking area covered to protect the workers from" " the weather." msgstr "" -"Vamos a hacer este lugar cubierto para ahumar de tierra compacta para " -"proteger a los trabajadores del clima." +"Vamos a cubrir este lugar para ahumar de tierra compacta para proteger del " +"clima a los trabajadores." #: lang/json/recipe_from_json.py msgid "build a rammed earth roofed area for smoking racks" @@ -215470,7 +217623,7 @@ msgstr "construir centro de la pared de tierra compacta del salón comedor" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen rock walls." msgstr "" -"Vamos a empezar a construir las paredes de piedras de la cocina central." +"Vamos a empezar a construir las paredes de piedra de la cocina central." #: lang/json/recipe_from_json.py msgid "build the central kitchen room" @@ -215479,54 +217632,53 @@ msgstr "construir habitación de cocina central" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen rock walls." msgstr "" -"Vamos a terminar de construir las paredes de piedras de la cocina central." +"Vamos a terminar de construir las paredes de piedra de la cocina central." #: lang/json/recipe_from_json.py msgid "finish the rock wall central kitchen room" -msgstr "terminar las paredes de piedras de la cocina central" +msgstr "terminar las paredes de piedra de la cocina central" #: lang/json/recipe_from_json.py msgid "" "Let's get this rock wall smoking area covered to protect the workers from " "the weather." msgstr "" -"Vamos a hacer este lugar cubierto para ahumar de piedras para proteger a los" -" trabajadores del clima." +"Vamos a cubrir este lugar para ahumar de piedra para proteger del clima a " +"los trabajadores." #: lang/json/recipe_from_json.py msgid "build a rock wall roofed area for smoking racks" msgstr "" -"construir lugar con techo y paredes de piedras para soportes para ahumar" +"construir lugar con techo y paredes de piedra para soportes para ahumar" #: lang/json/recipe_from_json.py msgid "Let's build a rock wall pantry west of the kitchen." msgstr "" -"Vamos a construir una despensa con paredes de piedras al oeste de la cocina." +"Vamos a construir una despensa con paredes de piedra al oeste de la cocina." #: lang/json/recipe_from_json.py msgid "build a rock wall pantry" -msgstr "construir una despensa de paredes de piedras" +msgstr "construir una despensa de paredes de piedra" #: lang/json/recipe_from_json.py msgid "Let's build the west rock wall of the rock wall dining hall." -msgstr "Vamos a construir la pared de piedras oeste del salón comedor." +msgstr "Vamos a construir la pared de piedra oeste del salón comedor." #: lang/json/recipe_from_json.py msgid "build W rock wall" -msgstr "construir pared de piedras O" +msgstr "construir pared de piedra O" #: lang/json/recipe_from_json.py msgid "Let's build the east rock wall of the rock wall dining hall." -msgstr "Vamos a construir la pared de piedras este del salón comedor." +msgstr "Vamos a construir la pared de piedra este del salón comedor." #: lang/json/recipe_from_json.py msgid "build E rock wall" -msgstr "construir pared de piedras E" +msgstr "construir pared de piedra E" #: lang/json/recipe_from_json.py msgid "Let's build the center of the rock wall dining hall." -msgstr "" -"Vamos a construir las paredes de piedras del centro del salón comedor." +msgstr "Vamos a construir las paredes de piedra del centro del salón comedor." #: lang/json/recipe_from_json.py msgid "build center of the rock dining hall" @@ -215555,8 +217707,8 @@ msgid "" "Let's get this wattle and daub smoking area covered to protect the workers " "from the weather." msgstr "" -"Vamos a hacer este lugar cubierto para ahumar de bareque para proteger a los" -" trabajadores del clima." +"Vamos a cubrir este lugar para ahumar de bareque para proteger del clima a " +"los trabajadores." #: lang/json/recipe_from_json.py msgid "build a wattle and daub roofed area for smoking racks" @@ -215621,8 +217773,8 @@ msgid "" "Let's get this wood panel smoking area covered to protect the workers from " "the weather." msgstr "" -"Vamos a hacer este lugar cubierto para ahumar de paneles de madera para " -"proteger a los trabajadores del clima." +"Vamos a cubrir este lugar para ahumar de paneles de madera para proteger del" +" clima a los trabajadores." #: lang/json/recipe_from_json.py msgid "build a wood panel roofed area for smoking racks" @@ -215667,6 +217819,560 @@ msgstr "" msgid "build center of the dining hall" msgstr "construir centro del salón comedor" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "Inspeccionar el terreno para poner una cantina." + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" +"Ahora que tenemos algo de cobertura, deberíamos construir una chimenea para " +"cocinar y picar algo." + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" +"Ahora que tenemos algo de cobertura, deberíamos construir un horno para " +"cocinar y picar algo." + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" +"Deberíamos construir un pozo de agua. Esto será más conveniente para cocinar" +" y proveerá agua para el jardín del cocinero." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" +"Vamos a construir unos ahumadores y una fosa de carbonización para poder " +"conservar comida y para tener más opciones en la cocina." + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "Vamos a construir 2 bodegas de alimentos en la cocina." + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "construir bodegas de alimentos" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "Vamos a amueblar la despensa." + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "Vamos a construir algunos maceteros para el jardín del chef." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" +"Vamos a expandir el jardín del cocinero en el área 'libre' (dejar de " +"expandir si querés usar ese área para otra cosa)" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" +"Vamos a instalar un par de tanques de agua salada para permitir la " +"producción de agua y facilitar el trabajo de las pieles." + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "construir tanques de agua salada" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "Vamos a instalar algunos tanques de fermentación en la cervecería" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "instalar algunos tanques de fermentación" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "Vamos a instalar unos estantes para almacenamiento en la cervecería" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "instalar unos estantes en cervecería" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "Vamos a instalar un destilador en la cervecería" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "instalar un destilador en la cervecería" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" +"Vamos a construir un molino de viento que nos permita moler harina de manera" +" eficiente" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "construir molino de viento" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" +"Vamos a construir un banco y un bebedero para aves afuera de la cocina como " +"esparcimiento" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "construir un banco y un bebedero para aves" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "Vamos a empezar a construir las paredes de concreto de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "construir cocina de concreto" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "Vamos a terminar de construir las paredes de concreto de la cocina." + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "terminar la cocina de concreto" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" +"Vamos a cubrir este lugar para ahumar de concreto para proteger del clima a " +"los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "construir lugar cubierto de concreto para soportes para ahumar" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "Vamos a construir una despensa de concreto al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "construir despensa de concreto" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "Vamos a construir la primera parte de concreto del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "construir primera parte de salón comedor de concreto" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "Vamos a construir la segunda parte de concreto del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "construir segunda parte de salón comedor de concreto" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "Vamos a construir una cervecería de concreto." + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "construir cervecería de concreto" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "Vamos a empezar a construir la cocina de paredes de tronco." + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "construir cocina de troncos" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "Vamos a terminar la cocina de paredes de tronco." + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "terminar cocina de troncos" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" +"Vamos a cubrir este lugar para ahumar de troncos para proteger del clima a " +"los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "construir lugar cubierto de troncos para soportes para ahumar" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "Vamos a construir una despensa de troncos al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "construir despensa de troncos" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "Vamos a construir la primera parte de troncos del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "construir primera parte de salón comedor de troncos" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "Vamos a construir la segunda parte de troncos del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "construir segunda parte de salón comedor de troncos" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "Vamos a construir una cervecería de troncos." + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "construir cervecería de troncos" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "Vamos a empezar a construir la cocina de paredes de metal." + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "construir cocina de metal" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "Vamos a terminar la cocina de paredes de metal." + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "terminar cocina de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" +"Vamos a cubrir este lugar para ahumar de metal para proteger del clima a los" +" trabajadores." + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "construir lugar cubierto de metal para soportes para ahumar" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "Vamos a construir una despensa de metal al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "construir despensa de metal" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "Vamos a construir la primera parte de metal del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "construir primera parte de salón comedor de metal" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "Vamos a construir la segunda parte de metal del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "construir segunda parte de salón comedor de metal" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "Vamos a construir una cervecería de metal." + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "construir cervecería de metal" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "Vamos a empezar a construir la cocina de paredes de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "construir cocina de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "Vamos a terminar la cocina de paredes de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "terminar cocina de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "Vamos a construir una despensa de resina mi-go al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "Vamos a construir la primera parte de resina mi-go del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "construir primera parte de salón comedor de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "Vamos a construir la segunda parte de resina mi-go del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "construir segunda parte de salón comedor de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "Vamos a construir una cervecería de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "construir cervecería de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "Vamos a empezar a construir la cocina de paredes de tierra compacta." + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "construir cocina de tierra compacta" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "Vamos a terminar la cocina de paredes de tierra compacta." + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "terminar cocina de tierra compacta" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" +"Vamos a construir una despensa de tierra compacta al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" +"Vamos a construir la primera parte de tierra compacta del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "construir primera parte de salón comedor de tierra compacta" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" +"Vamos a construir la segunda parte de tierra compacta del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "construir segunda parte de salón comedor de tierra compacta" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "Vamos a construir una cervecería de tierra compacta." + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "construir cervecería de tierra compacta" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "Vamos a empezar a construir la cocina de paredes de piedra." + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "construir cocina de piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "Vamos a terminar la cocina de paredes de piedra." + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "terminar cocina de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" +"Vamos a cubrir este lugar para ahumar de piedra para proteger del clima a " +"los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "construir lugar cubierto de piedra para soportes para ahumar" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "Vamos a construir una despensa de piedra al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "construir despensa de piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "Vamos a construir la primera parte de piedra del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "construir primera parte de salón comedor de piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "Vamos a construir la segunda parte de piedra del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "construir segunda parte de salón comedor de piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "Vamos a construir una cervecería de piedra." + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "construir cervecería de piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "Vamos a empezar a construir la cocina de paredes de bareque." + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "construir cocina de bareque" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "Vamos a terminar la cocina de paredes de bareque." + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "terminar cocina de bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" +"Vamos a cubrir este lugar para ahumar de bareque para proteger del clima a " +"los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "construir lugar cubierto de bareque para soportes para ahumar" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "Vamos a construir una despensa de bareque al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "construir despensa de bareque" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "Vamos a construir la primera parte de bareque del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "construir primera parte de salón comedor de bareque" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "Vamos a construir la segunda parte de bareque del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "construir segunda parte de salón comedor de bareque" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "Vamos a construir una cervecería de bareque." + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "construir cervecería de bareque" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "Vamos a empezar a construir la cocina de paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "construir cocina de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "Vamos a terminar la cocina de paredes de paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "terminar cocina de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" +"Vamos a construir una despensa de paneles de madera al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" +"Vamos a construir la primera parte de paneles de madera del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "construir primera parte de salón comedor de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" +"Vamos a construir la segunda parte de paneles de madera del salón comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "construir segunda parte de salón comedor de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "Vamos a construir una cervecería de paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "construir cervecería de paneles de madera" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "Inspeccionar el terreno para lugar de granja." @@ -215717,6 +218423,75 @@ msgstr "" msgid "Farm processing shack" msgstr "Casucha de procesamiento de granja" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "Preparar una fila de lotes para granja." + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "preparar lotes para granja" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "Preparar una segunda fila de lotes para granja." + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "Preparar otro par de filas de lotes para granja." + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" +"Levantar una valla por el borde exterior más largo para mantener a los " +"ciervos alejados de la cosecha." + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "levantar una valla" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" +"Levantar una valla por el borde exterior más corto para mantener a los " +"ciervos alejados de la cosecha." + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" +"Levantar una valla por el borde interior más corto para mantener a los " +"ciervos alejados de la cosecha." + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" +"Levantar una valla por la parte exterior del borde interior más largo para " +"mantener a los ciervos alejados de la cosecha." + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" +"No planeamos volver a arar los campos con un tractor así que levantá una " +"valla por la parte interna del borde interior más largo." + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" +"Construí una puerta empalizada que nos permita llegar hasta los campos y " +"volver a ararlos con un tractor el año que viene." + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "construir puerta empalizada" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "Inspeccionar el terreno para poner un garage." @@ -215780,6 +218555,656 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "Habitaciones de mecánicos de garage" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "Vamos a conectar las dos paredes con el pedazo de techo que falta." + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "construir techo que falta" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" +"Ahora que tenemos techo vamos a construir algunas mesadas y estantes para " +"herramientas y partes, lo que nos va a permitir usar el Desarmadero." + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "construir algunos muebles" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" +"El garage es suficientemente grande. Vamos a construir una puerta empalizada" +" que nos permitirá cerrar el extremo exterior." + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "construir puerta empalizada exterior" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" +"Vamos a terminar el garage construyendo una puerta empalizada que nos " +"permitirá cerrar el extremo exterior." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" +"Vamos a construir la primera parte de la pared de concreto del garage." + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "construir la primera parte de concreto del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Vamos a construir la segunda parte de la pared de concreto del garage para " +"frenar el viento de esa dirección, haciendo que el garage sea lo " +"suficientemente ancho como para que entren dos vehículos normales o uno muy " +"grande." + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "construir la segunda parte de concreto del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" +"Vamos a construir una pared de concreto para tapar el viento y que no pase " +"por el garage." + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "construir pared interior de concreto" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" +"Ahora que podemos trabajar en vehículos cortos, vamos a extender el garage " +"utilizando concreto para poder trabajar con vehículos grandes." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "extender la primera pared usando concreto" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" +"Vamos a extender la segunda pared para hacerla igual que la primera, usando " +"concreto." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "extender la segunda pared usando concreto" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" +"Ahora que podemos trabajar con vehículos largos, vamos a extender el garage " +"utilizando concreto para poder meter los muy grandes, o varios a la vez." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" +"Vamos a extender el garage usando concreto a un tamaño de hangar, lo que nos" +" va a permitir trabajar con vehículos monstruosos o varios vehículos de " +"tamaño normal." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "Vamos a construir la primera parte de la pared de troncos del garage." + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "construir la primera parte de troncos del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Vamos a construir la segunda parte de la pared de troncos del garage para " +"frenar el viento de esa dirección, haciendo que el garage sea lo " +"suficientemente ancho como para que entren dos vehículos normales o uno muy " +"grande." + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "construir la segunda parte de troncos del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" +"Vamos a construir una pared de troncos para tapar el viento y que no pase " +"por el garage." + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "construir pared interior de troncos" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" +"Ahora que podemos trabajar en vehículos cortos, vamos a extender el garage " +"utilizando troncos para poder trabajar con vehículos grandes." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "extender la primera pared usando troncos" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" +"Vamos a extender la segunda pared para hacerla igual que la primera, usando " +"troncos." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "extender la primera pared usando troncos" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" +"Ahora que podemos trabajar con vehículos largos, vamos a extender el garage " +"utilizando troncos para poder meter los muy grandes, o varios a la vez." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "extender la segunda pared usando troncos" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" +"Vamos a extender el garage usando troncos a un tamaño de hangar, lo que nos " +"va a permitir trabajar con vehículos monstruosos o varios vehículos de " +"tamaño normal." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "Vamos a construir la primera parte de la pared de metal del garage." + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "construir la primera parte de metal del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Vamos a construir la segunda parte de la pared de metal del garage para " +"frenar el viento de esa dirección, haciendo que el garage sea lo " +"suficientemente ancho como para que entren dos vehículos normales o uno muy " +"grande." + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "construir la segunda parte de metal del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" +"Vamos a construir una pared de metal para tapar el viento y que no pase por " +"el garage." + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "construir pared interior de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" +"Ahora que podemos trabajar en vehículos cortos, vamos a extender el garage " +"utilizando metal para poder trabajar con vehículos grandes." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "extender la primera pared usando metal" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" +"Vamos a extender la segunda pared para hacerla igual que la primera, usando " +"metal." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "extender la segunda pared utilizando metal" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" +"Ahora que podemos trabajar con vehículos largos, vamos a extender el garage " +"utilizando metal para poder meter los muy grandes, o varios a la vez." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" +"Vamos a extender el garage usando metal a un tamaño de hangar, lo que nos va" +" a permitir trabajar con vehículos monstruosos o varios vehículos de tamaño " +"normal." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" +"Vamos a construir la primera parte de la pared de resina mi-go del garage." + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "construir la primera parte de resina mi-go del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" +"Vamos a construir la segunda parte de la pared de resina mi-go del garage " +"para frenar el viento de esa dirección, haciendo que el garage sea lo " +"suficientemente ancho como para que entren dos vehículos normales o uno muy " +"grande." + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "construir la segunda parte de resina mi-go del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" +"Vamos a construir una pared de resina mi-go para tapar el viento y que no " +"pase por el garage." + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "construir pared interior de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" +"Ahora que podemos trabajar en vehículos cortos, vamos a extender el garage " +"utilizando resina mi-go para poder trabajar con vehículos grandes." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "extender la primera pared usando resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" +"Vamos a extender la segunda pared para hacerla igual que la primera, usando " +"resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "extender la segunda pared usando resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" +"Ahora que podemos trabajar con vehículos largos, vamos a extender el garage " +"utilizando resina mi-go para poder meter los muy grandes, o varios a la vez." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" +"Vamos a extender el garage usando resina mi-go a un tamaño de hangar, lo que" +" nos va a permitir trabajar con vehículos monstruosos o varios vehículos de " +"tamaño normal." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" +"Vamos a construir la primera parte de la pared de tierra compacta del " +"garage." + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "construir la primera parte de tierra compacta del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" +"Vamos a construir la segunda parte de la pared de tierra compacta del garage" +" para frenar el viento de esa dirección, haciendo que el garage sea lo " +"suficientemente ancho como para que entren dos vehículos normales o uno muy " +"grande." + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "construir la segunda parte de tierra compacta del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" +"Vamos a construir una pared de tierra compacta para tapar el viento y que no" +" pase por el garage." + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "construir pared interior de tierra compacta" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" +"Ahora que podemos trabajar en vehículos cortos, vamos a extender el garage " +"utilizando tierra compacta para poder trabajar con vehículos grandes." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "extender la primera pared usando tierra compacta" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" +"Vamos a extender la segunda pared para hacerla igual que la primera, usando " +"tierra compacta." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "extender la segunda pared usando tierra compacta" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" +"Ahora que podemos trabajar con vehículos largos, vamos a extender el garage " +"utilizando tierra compacta para poder meter los muy grandes, o varios a la " +"vez." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" +"Vamos a extender el garage usando tierra compacta a un tamaño de hangar, lo " +"que nos va a permitir trabajar con vehículos monstruosos o varios vehículos " +"de tamaño normal." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "Vamos a construir la primera parte de la pared de piedra del garage." + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "construir la primera parte de piedra del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Vamos a construir la segunda parte de la pared de piedra del garage para " +"frenar el viento de esa dirección, haciendo que el garage sea lo " +"suficientemente ancho como para que entren dos vehículos normales o uno muy " +"grande." + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "construir la segunda parte de piedra del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" +"Vamos a construir una pared de piedra para tapar el viento y que no pase por" +" el garage." + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "construir pared interior de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" +"Ahora que podemos trabajar en vehículos cortos, vamos a extender el garage " +"utilizando piedra para poder trabajar con vehículos grandes." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "extender la primera pared usando piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" +"Vamos a extender la segunda pared para hacerla igual que la primera, usando " +"piedra." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "extender la primera pared usando piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" +"Ahora que podemos trabajar con vehículos largos, vamos a extender el garage " +"utilizando piedra para poder meter los muy grandes, o varios a la vez." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" +"Vamos a extender el garage usando piedra a un tamaño de hangar, lo que nos " +"va a permitir trabajar con vehículos monstruosos o varios vehículos de " +"tamaño normal." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "Vamos a construir la primera parte de la pared de bareque del garage." + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "construir la primera parte de bareque del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" +"Vamos a construir la segunda parte de la pared de bareque del garage para " +"frenar el viento de esa dirección, haciendo que el garage sea lo " +"suficientemente ancho como para que entren dos vehículos normales o uno muy " +"grande." + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "construir la segunda parte de bareque del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" +"Vamos a construir una pared de bareque para tapar el viento y que no pase " +"por el garage." + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "construir pared interior de bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" +"Ahora que podemos trabajar en vehículos cortos, vamos a extender el garage " +"utilizando bareque para poder trabajar con vehículos grandes." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "extender la primera pared usando bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" +"Vamos a extender la segunda pared para hacerla igual que la primera, usando " +"bareque." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "extender la segunda pared usando bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" +"Ahora que podemos trabajar con vehículos largos, vamos a extender el garage " +"utilizando bareque para poder meter los muy grandes, o varios a la vez." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" +"Vamos a extender el garage usando bareque a un tamaño de hangar, lo que nos " +"va a permitir trabajar con vehículos monstruosos o varios vehículos de " +"tamaño normal." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "Vamos a construir la primera parte de la pared de madera del garage." + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "construir la primera parte de madera del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Vamos a construir la segunda parte de la pared de madera del garage para " +"frenar el viento de esa dirección, haciendo que el garage sea lo " +"suficientemente ancho como para que entren dos vehículos normales o uno muy " +"grande." + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "construir la segunda parte de madera del garage" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" +"Vamos a construir una pared de madera para tapar el viento y que no pase por" +" el garage." + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "construir pared interior de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" +"Ahora que podemos trabajar en vehículos cortos, vamos a extender el garage " +"utilizando paneles de madera para poder trabajar con vehículos grandes." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "extender la primera pared usando paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" +"Vamos a extender la segunda pared para hacerla igual que la primera, usando " +"paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "extender la primera pared usando madera" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" +"Ahora que podemos trabajar con vehículos largos, vamos a extender el garage " +"utilizando paneles de madera para poder meter los muy grandes, o varios a la" +" vez." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "extender la segunda pared usando paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" +"Vamos a extender el garage usando paneles de madera a un tamaño de hangar, " +"lo que nos va a permitir trabajar con vehículos monstruosos o varios " +"vehículos de tamaño normal." + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "Inspeccionar el terreno para lugar para el ganado." @@ -215806,8 +219231,8 @@ msgid "" "We could use paddock for the stable, so build a split-rail fence on the " "north side of the livestock field." msgstr "" -"Nos vendría bien una caballería para el establo, así que construí una valla " -"de madera en la parte norte del campo de ganado." +"Nos vendría bien una caballeriza para el establo, así que construí una valla" +" de madera en la parte norte del campo de ganado." #: lang/json/recipe_from_json.py msgid "north paddock" @@ -215818,8 +219243,8 @@ msgid "" "We could use paddock for the stable, so build a split-rail fence in the " "center of the livestock field." msgstr "" -"Nos vendría bien una caballería para el establo, así que construí una valla " -"de madera en el centro del campo de ganado." +"Nos vendría bien una caballeriza para el establo, así que construí una valla" +" de madera en el centro del campo de ganado." #: lang/json/recipe_from_json.py msgid "center paddock" @@ -215830,8 +219255,8 @@ msgid "" "We could use paddock for the stable, so build a split-rail fence to close " "off the south end of the livestock field." msgstr "" -"Nos vendría bien una caballería para el establo, así que construí una valla " -"de madera para cerrar la parte sur del campo de ganado." +"Nos vendría bien una caballeriza para el establo, así que construí una valla" +" de madera para cerrar la parte sur del campo de ganado." #: lang/json/recipe_from_json.py msgid "" @@ -216054,6 +219479,486 @@ msgstr "" "choza de paneles de madera con techo en la parte suroeste del campo de " "ganado." +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" +"Nos vendría bien una valla para contener nuestras gallinas y otros pájaros, " +"así que construí una valla de alambre tejido para finalizar el gallinero." + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "campo de gallinero" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" +"Nos vendría bien una caballeriza para el establo, así que construí una valla" +" de madera en la parte alejada del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "valla de caballeriza alejada" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" +"Nos vendría bien una caballeriza para el establo, así que construí una valla" +" de madera en el costado del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "valla de caballeriza lateral" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" +"Nos vendría bien una caballeriza para el establo, así que construí una valla" +" de madera en el costado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "valla de caballeriza cercano" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" +"Nos vendría bien un gallinero para contener nuestras gallinas y otras aves, " +"así que construí una choza de concreto techada en la parte alejada del campo" +" de ganado." + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "gallinero de concreto" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un lugar de almacenamiento para la comida, el equipo de los" +" animales y herramientas, así que construí una choza de concreto techada en " +"la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "choza de concreto de almacenamiento" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un establo para el ganado más grande, así que construí una " +"choza de concreto techada en la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "establo de concreto" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" +"Nos vendría bien un establo más grande así que extendelo con otra casilla de" +" paredes de concreto." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" +"Nos vendría bien un establo más grande así que terminalo con dos casillas " +"chicas de paredes de concreto." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" +"Nos vendría bien un gallinero para contener nuestras gallinas y otras aves, " +"así que construí una choza de troncos techada en la parte alejada del campo " +"de ganado." + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "gallinero de troncos" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un lugar de almacenamiento para la comida, el equipo de los" +" animales y herramientas, así que construí una choza de troncos techada en " +"la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "choza de troncos de almacenamiento" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" +"Nos vendría bien un establo para el ganado más grande, así que construí una " +"choza de troncos techada en la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "establo de troncos" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" +"Nos vendría bien un establo más grande así que extendelo con otra casilla de" +" paredes de troncos." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" +"Nos vendría bien un establo más grande así que terminalo con dos casillas " +"chicas de paredes de troncos." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" +"Nos vendría bien un gallinero para contener nuestras gallinas y otras aves, " +"así que construí una choza de metal techada en la parte alejada del campo de" +" ganado." + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "gallinero de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un lugar de almacenamiento para la comida, el equipo de los" +" animales y herramientas, así que construí una choza de metal techada en la " +"parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "choza de metal de almacenamiento" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un establo para el ganado más grande, así que construí una " +"choza de metal techada en la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "establo de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" +"Nos vendría bien un establo más grande así que extendelo con otra casilla de" +" paredes de metal." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" +"Nos vendría bien un establo más grande así que terminalo con dos casillas " +"chicas de paredes de metal." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" +"Nos vendría bien un gallinero para contener nuestras gallinas y otras aves, " +"así que construí una choza de resina mi-go techada en la parte alejada del " +"campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "gallinero de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un lugar de almacenamiento para la comida, el equipo de los" +" animales y herramientas, así que construí una choza de resina mi-go techada" +" en la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "choza de resina mi-go de almacenamiento" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un establo para el ganado más grande, así que construí una " +"choza de resina mi-go techada en la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "establo de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" +"Nos vendría bien un establo más grande así que extendelo con otra casilla de" +" paredes de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" +"Nos vendría bien un establo más grande así que terminalo con dos casillas " +"chicas de paredes de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" +"Nos vendría bien un gallinero para contener nuestras gallinas y otras aves, " +"así que construí una choza de tierra compacta techada en la parte alejada " +"del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "gallinero de tierra compacta" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un lugar de almacenamiento para la comida, el equipo de los" +" animales y herramientas, así que construí una choza de tierra compacta " +"techada en la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "choza de tierra compacta de almacenamiento" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un establo para el ganado más grande, así que construí una " +"choza de tierra compacta techada en la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "establo de tierra compacta" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" +"Nos vendría bien un establo más grande así que extendelo con otra casilla de" +" paredes de tierra compacta." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" +"Nos vendría bien un establo más grande así que terminalo con dos casillas " +"chicas de paredes de tierra compacta." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" +"Nos vendría bien un gallinero para contener nuestras gallinas y otras aves, " +"así que construí una choza de piedra techada en la parte alejada del campo " +"de ganado." + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "gallinero de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un lugar de almacenamiento para la comida, el equipo de los" +" animales y herramientas, así que construí una choza de piedra techada en la" +" parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "choza de piedra de almacenamiento" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un establo para el ganado más grande, así que construí una " +"choza de piedra techada en la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "establo de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" +"Nos vendría bien un establo más grande así que extendelo con otra casilla de" +" paredes de piedra." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" +"Nos vendría bien un establo más grande así que terminalo con dos casillas " +"chicas de paredes de piedra." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" +"Nos vendría bien un gallinero para contener nuestras gallinas y otras aves, " +"así que construí una choza de bareque techada en la parte alejada del campo " +"de ganado." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "gallinero de bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un lugar de almacenamiento para la comida, el equipo de los" +" animales y herramientas, así que construí una choza de bareque techada en " +"la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "choza de bareque de almacenamiento" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un establo para el ganado más grande, así que construí una " +"choza de bareque techada en la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "establo de bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" +"Nos vendría bien un establo más grande así que extendelo con otra casilla de" +" paredes de bareque." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" +"Nos vendría bien un establo más grande así que terminalo con dos casillas " +"chicas de paredes de bareque." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" +"Nos vendría bien un gallinero para contener nuestras gallinas y otras aves, " +"así que construí una choza de paneles de madera techada en la parte alejada " +"del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "gallinero de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un lugar de almacenamiento para la comida, el equipo de los" +" animales y herramientas, así que construí una choza de paneles de madera " +"techada en la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "choza de paneles de madera de almacenamiento" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un establo para el ganado más grande, así que construí una " +"choza de paneles de madera techada en la parte cercana del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "establo de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" +"Nos vendría bien un establo más grande así que extendelo con otra casilla de" +" paredes de paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" +"Nos vendría bien un establo más grande así que terminalo con dos casillas " +"chicas de paredes de paneles de madera." + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "Inspeccionar el terreno para lugar para salinas." @@ -216935,6 +220840,712 @@ msgstr "" msgid "benches, southwest" msgstr "bancos, suroeste" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" +"Poner 12 bibliotecas formando 1 ½ pasillo para almacenamiento (2000 L de " +"almacenamiento, contenido visible desde lejos, bloquea la vista)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "poner 1 ½ pasillo de bibliotecas en la sección P" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "planeamiento para depósito" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" +"Nos vendría bien un depósito. Vamos a empezar con una sección de concreto." + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "sección de concreto de depósito" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "Vamos a agrandar nuestro depósito con otra sección de concreto." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" +"Vamos a terminar el depósito con una sección de concreto. Si queremos, " +"después podemos duplicar el volumen pero no va a ser tan extremo, ¿cuándo " +"podemos usar el espacio para dejar las cosas?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" +"¡Queremos almacenar TODO! Vamos a duplicar el espacio del depósito empezando" +" con una sección de concreto." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" +"Poner 12 cómodas formando 1 ½ pasillo para almacenamiento (2000 L de " +"almacenamiento, contenido no es visible desde lejos, no bloquea la vista)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "poner 1 ½ pasillo de cómodas en la sección A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "poner 1 ½ pasillo de cómodas en la sección B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "poner 1 ½ pasillo de cómodas en la sección C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "poner 1 ½ pasillo de cómodas en la sección D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "poner 1 ½ pasillo de cómodas en la sección E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "poner 1 ½ pasillo de cómodas en la sección F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "poner 1 ½ pasillo de cómodas en la sección G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "poner 1 ½ pasillo de cómodas en la sección H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "poner 1 ½ pasillo de cómodas en la sección I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "poner 1 ½ pasillo de cómodas en la sección J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "poner 1 ½ pasillo de cómodas en la sección K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "poner 1 ½ pasillo de cómodas en la sección L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "poner 1 ½ pasillo de cómodas en la sección M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "poner 1 ½ pasillo de cómodas en la sección N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "poner 1 ½ pasillo de cómodas en la sección O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "poner 1 ½ pasillo de cómodas en la sección P" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" +"Poner 12 casilleros formando 1 ½ pasillo para almacenamiento (2000 L de " +"almacenamiento, contenido no es visible desde lejos, bloquea la vista). " +"Considerar si no es mejor poner bibliotecas o cómodas." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "poner 1 ½ pasillo de casilleros en la sección A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "poner 1 ½ pasillo de casilleros en la sección B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "poner 1 ½ pasillo de casilleros en la sección C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "poner 1 ½ pasillo de casilleros en la sección D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "poner 1 ½ pasillo de casilleros en la sección E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "poner 1 ½ pasillo de casilleros en la sección F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "poner 1 ½ pasillo de casilleros en la sección G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "poner 1 ½ pasillo de casilleros en la sección H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "poner 1 ½ pasillo de casilleros en la sección I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "poner 1 ½ pasillo de casilleros en la sección J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "poner 1 ½ pasillo de casilleros en la sección K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "poner 1 ½ pasillo de casilleros en la sección L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "poner 1 ½ pasillo de casilleros en la sección M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "poner 1 ½ pasillo de casilleros en la sección N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "poner 1 ½ pasillo de casilleros en la sección O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "poner 1 ½ pasillo de casilleros en la sección P" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" +"Nos vendría bien un depósito. Vamos a empezar con una sección de troncos." + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "sección de troncos de depósito" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "Vamos a agrandar nuestro depósito con otra sección de troncos." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" +"Vamos a terminar el depósito con una sección de troncos. Si queremos, " +"después podemos duplicar el volumen pero no va a ser tan extremo, ¿cuándo " +"podemos usar el espacio para dejar las cosas?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" +"¡Queremos almacenar TODO! Vamos a duplicar el espacio del depósito empezando" +" con una sección de troncos." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" +"Nos vendría bien un depósito. Vamos a empezar con una sección de metal." + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "sección de metal de depósito" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "Vamos a agrandar nuestro depósito con otra sección de metal." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" +"Vamos a terminar el depósito con una sección de metal. Si queremos, después " +"podemos duplicar el volumen pero no va a ser tan extremo, ¿cuándo podemos " +"usar el espacio para dejar las cosas?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" +"¡Queremos almacenar TODO! Vamos a duplicar el espacio del depósito empezando" +" con una sección de metal." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" +"Nos vendría bien un depósito. Vamos a empezar con una sección de resina mi-" +"go." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "sección de resina mi-go de depósito" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "Vamos a agrandar nuestro depósito con otra sección de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" +"Vamos a terminar el depósito con una sección de resina mi-go. Si queremos, " +"después podemos duplicar el volumen pero no va a ser tan extremo, ¿cuándo " +"podemos usar el espacio para dejar las cosas?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" +"¡Queremos almacenar TODO! Vamos a duplicar el espacio del depósito empezando" +" con una sección de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" +"Poner 12 góndolas formando 1 ½ pasillo para almacenamiento (1750 L de " +"almacenamiento, contenido visible desde lejos, no bloquea la vista)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "poner 1 ½ pasillo de góndolas en la sección A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "poner 1 ½ pasillo de góndolas en la sección B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "poner 1 ½ pasillo de góndolas en la sección C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "poner 1 ½ pasillo de góndolas en la sección D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "poner 1 ½ pasillo de góndolas en la sección E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "poner 1 ½ pasillo de góndolas en la sección F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "poner 1 ½ pasillo de góndolas en la sección G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "poner 1 ½ pasillo de góndolas en la sección H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "poner 1 ½ pasillo de góndolas en la sección I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "poner 1 ½ pasillo de góndolas en la sección J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "poner 1 ½ pasillo de góndolas en la sección K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "poner 1 ½ pasillo de góndolas en la sección L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "poner 1 ½ pasillo de góndolas en la sección M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "poner 1 ½ pasillo de góndolas en la sección N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "poner 1 ½ pasillo de góndolas en la sección O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "poner 1 ½ pasillo de góndolas en la sección P" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" +"Nos vendría bien un depósito. Vamos a empezar con una sección de tierra " +"compacta." + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "sección de tierra compacta de depósito" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" +"Vamos a agrandar nuestro depósito con otra sección de tierra compacta." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" +"Vamos a terminar el depósito con una sección de tierra compacta. Si " +"queremos, después podemos duplicar el volumen pero no va a ser tan extremo, " +"¿cuándo podemos usar el espacio para dejar las cosas?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" +"¡Queremos almacenar TODO! Vamos a duplicar el espacio del depósito empezando" +" con una sección de tierra compacta." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" +"Nos vendría bien un depósito. Vamos a empezar con una sección de piedra." + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "sección de piedra de depósito" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "Vamos a agrandar nuestro depósito con otra sección de piedra." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" +"Vamos a terminar el depósito con una sección de piedra. Si queremos, después" +" podemos duplicar el volumen pero no va a ser tan extremo, ¿cuándo podemos " +"usar el espacio para dejar las cosas?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" +"¡Queremos almacenar TODO! Vamos a duplicar el espacio del depósito empezando" +" con una sección de piedra." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" +"Nos vendría bien un depósito. Vamos a empezar con una sección de bareque." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "sección de bareque de depósito" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "Vamos a agrandar nuestro depósito con otra sección de bareque." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" +"Vamos a terminar el depósito con una sección de bareque. Si queremos, " +"después podemos duplicar el volumen pero no va a ser tan extremo, ¿cuándo " +"podemos usar el espacio para dejar las cosas?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" +"¡Queremos almacenar TODO! Vamos a duplicar el espacio del depósito empezando" +" con una sección de bareque." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" +"Poner 12 estantes de depósito formando 1 ½ pasillo para almacenamiento (3500" +" L de almacenamiento, contenido visible desde lejos, bloquea la vista). Es " +"la clase de espacio de almacenamiento con etiquetas de precios." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "poner 1 ½ pasillo de estantes en la sección A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "poner 1 ½ pasillo de estantes en la sección B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "poner 1 ½ pasillo de estantes en la sección C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "poner 1 ½ pasillo de estantes en la sección D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "poner 1 ½ pasillo de estantes en la sección E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "poner 1 ½ pasillo de estantes en la sección F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "poner 1 ½ pasillo de estantes en la sección G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "poner 1 ½ pasillo de estantes en la sección H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "poner 1 ½ pasillo de estantes en la sección I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "poner 1 ½ pasillo de estantes en la sección J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "poner 1 ½ pasillo de estantes en la sección K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "poner 1 ½ pasillo de estantes en la sección L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "poner 1 ½ pasillo de estantes en la sección M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "poner 1 ½ pasillo de estantes en la sección N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "poner 1 ½ pasillo de estantes en la sección O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "poner 1 ½ pasillo de estantes en la sección P" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" +"Nos vendría bien un depósito. Vamos a empezar con una sección de paneles de " +"madera." + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "sección de paneles de madera de depósito" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" +"Vamos a agrandar nuestro depósito con otra sección de paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" +"Vamos a terminar el depósito con una sección de paneles de madera. Si " +"queremos, después podemos duplicar el volumen pero no va a ser tan extremo, " +"¿cuándo podemos usar el espacio para dejar las cosas?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" +"¡Queremos almacenar TODO! Vamos a duplicar el espacio del depósito empezando" +" con una sección de paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" +"Poner 12 estantes de madera formando 1 ½ pasillo para almacenamiento (1500 L" +" de almacenamiento, contenido visible desde lejos, no bloquea la vista)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "poner 1 ½ pasillo de estantes de madera en la sección P" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "Inspeccionar el terreno para poner un taller." @@ -217022,7 +221633,7 @@ msgstr "pared oeste de forja" #: lang/json/recipe_from_json.py msgid "Let's expand our production by adding a log walled pottery kiln area." msgstr "" -"Vamos a expandir nuestra producción agregando un área con fosa para " +"Vamos a agrandar nuestra producción agregando un área con fosa para " "alfarería y paredes de troncos." #: lang/json/recipe_from_json.py @@ -217079,7 +221690,7 @@ msgstr "" msgid "" "Let's expand our production by adding a metal walled pottery kiln area." msgstr "" -"Vamos a expandir nuestra producción agregando un área con fosa para " +"Vamos a agrandar nuestra producción agregando un área con fosa para " "alfarería y paredes de metal." #: lang/json/recipe_from_json.py @@ -217119,7 +221730,7 @@ msgid "" "Let's expand our production by adding a mi-go resin walled pottery kiln " "area." msgstr "" -"Vamos a expandir nuestra producción agregando un área con fosa para " +"Vamos a agrandar nuestra producción agregando un área con fosa para " "alfarería y paredes de resina mi-go." #: lang/json/recipe_from_json.py @@ -217159,7 +221770,7 @@ msgid "" "Let's expand our production by adding a rammed earth walled pottery kiln " "area." msgstr "" -"Vamos a expandir nuestra producción agregando un área con fosa para " +"Vamos a agrandar nuestra producción agregando un área con fosa para " "alfarería y paredes de tierra compacta." #: lang/json/recipe_from_json.py @@ -217196,7 +221807,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "Let's expand our production by adding a rock walled pottery kiln area." msgstr "" -"Vamos a expandir nuestra producción agregando un área con fosa para " +"Vamos a agrandar nuestra producción agregando un área con fosa para " "alfarería y paredes de piedra." #: lang/json/recipe_from_json.py @@ -217235,7 +221846,7 @@ msgid "" "Let's expand our production by adding a wattle and daub walled pottery kiln " "area." msgstr "" -"Vamos a expandir nuestra producción agregando un área con fosa para " +"Vamos a agrandar nuestra producción agregando un área con fosa para " "alfarería y paredes de bareque." #: lang/json/recipe_from_json.py @@ -217277,73 +221888,429 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "Vamos a cercar esta alfarería y poner más cosas para almacenamiento." #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." -msgstr "Preparar una fila de lotes para granja." +msgid "Survey land for a workshop area." +msgstr "Inspeccionar el terreno para lugar de taller." #: lang/json/recipe_from_json.py -msgid "prepare farm plots" -msgstr "preparar lotes para granja" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." +msgstr "" +"Vamos a instalar una forja para trabajar el metal en la herrería. Vamos a " +"necesitar algunas herramientas así que incluiremos espacio de " +"almacenamiento. Esto nos va a permitir realizar las primeras recetas de " +"fabricación." #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." -msgstr "Preparar una segunda fila de lotes para granja." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." +msgstr "" +"Vamos a instalar un par de fosas de carbonización afuera de la herrería. " +"También vamos a poner un crisol. Esto nos dará la capacidad de producir " +"algunas cosas más." #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." -msgstr "Preparar otro par de filas de lotes para granja." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." +msgstr "" +"Vamos a instalar un yunque en la herrería, algunos recipientes para templar " +"y una mesa de trabajo. Esto nos dará la capacidad de producir algunas cosas " +"más." #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" -"Levantar una valla por el borde exterior más largo para mantener a los " -"ciervos alejados de la cosecha." +"Vamos a agregar muebles y más herramientas a la herrería. Esto nos va a " +"permitir producir algunas cosas más." #: lang/json/recipe_from_json.py -msgid "erect a fence" -msgstr "levantar una valla" +msgid "smithing tools" +msgstr "herramientas de herrería" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" -"Levantar una valla por el borde exterior más corto para mantener a los " -"ciervos alejados de la cosecha." +"Vamos a instalar fuelles para nuestra forja y agregar algunas herramientas. " +"Esto nos va a permitir realizar más fabricaciones." #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." msgstr "" -"Levantar una valla por el borde interior más corto para mantener a los " -"ciervos alejados de la cosecha." +"Vamos a agregar un martillo pilón a la herrería y algunas herramientas más " +"para mejorar la productividad. Esto nos permitirá maximizar la producción de" +" la herrería." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "Vamos a amueblar la alfarería." + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "muebles de alfarería" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "Vamos a mueblar la cabaña del vidriero." + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" +msgstr "muebles de vidriero" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." msgstr "" -"Levantar una valla por la parte exterior del borde interior más largo para " -"mantener a los ciervos alejados de la cosecha." +"Vamos a agregar un banco y un tambor para fuego afuera de la alfarería como " +"esparcimiento." + +#: lang/json/recipe_from_json.py +msgid "recreation area" +msgstr "área de esparcimiento" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." msgstr "" -"No planeamos volver a arar los campos con un tractor así que levantá una " -"valla por la parte interna del borde interior más largo." +"Nos vendría bien una herrería de concreto. Vamos a empezar construyendo un " +"lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" +msgstr "pared de concreto de herrería" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" -"Construí una puerta empalizada que nos permita llegar hasta los campos y " -"volver a ararlos con un tractor el año que viene." +"Vamos a techar con pilares de concreto para proteger de la lluvia las " +"próximas fosas de carbonización." #: lang/json/recipe_from_json.py -msgid "build a palisade gate" -msgstr "construir puerta empalizada" +msgid "concrete kiln protection" +msgstr "protección de concreto para fosa de carbonización" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "Vamos a construir la última sección de concreto para la herrería." + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "última sección de concreto de herrería" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" +"Vamos a empezar a construir una sección de concreto para la alfarería." + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "alfarería con paredes de concreto" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" +"Nos vendría bien una herrería de troncos. Vamos a empezar construyendo un " +"lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "pared de troncos de herrería" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" +"Vamos a techar con pilares de troncos para proteger de la lluvia las " +"próximas fosas de carbonización." + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "protección de troncos para fosa de carbonización" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "Vamos a construir la última sección de troncos para la herrería." + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "última sección de troncos de herrería" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "Vamos a empezar a construir una sección de troncos para la alfarería." + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "alfarería con paredes de troncos" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" +"Nos vendría bien una herrería de metal. Vamos a empezar construyendo un " +"lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "pared de metal de herrería" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" +"Vamos a techar con pilares de metal para proteger de la lluvia las próximas " +"fosas de carbonización." + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "protección de metal para fosa de carbonización" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "Vamos a construir la última sección de metal para la herrería." + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "última sección de metal de herrería" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "Vamos a empezar a construir una sección de metal para la alfarería." + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "alfarería con paredes de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" +"Nos vendría bien una herrería de resina mi-go. Vamos a empezar construyendo " +"un lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "pared de resina mi-go de herrería" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" +"Vamos a techar con pilares de resina mi-go para proteger de la lluvia las " +"próximas fosas de carbonización." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "protección de resina mi-go para fosa de carbonización" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "Vamos a construir la última sección de resina mi-go para la herrería." + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "última sección de resina mi-go de herrería" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" +"Vamos a empezar a construir una sección de resina mi-go para la alfarería." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "alfarería con paredes de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" +"Nos vendría bien una herrería de tierra compacta. Vamos a empezar " +"construyendo un lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "pared de tierra compacta para herrería" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" +"Vamos a techar con pilares de tierra compacta para proteger de la lluvia las" +" próximas fosas de carbonización." + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "protección de tierra compacta para fosa de carbonización" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" +"Vamos a construir la última sección de tierra compacta para la herrería." + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "última sección de tierra compacta de herrería" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" +"Vamos a empezar a construir una sección de tierra compacta para la " +"alfarería." + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "alfarería con paredes de tierra compacta" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" +"Nos vendría bien una herrería de piedra. Vamos a empezar construyendo un " +"lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "pared de piedra de herrería" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" +"Vamos a techar con pilares de piedra para proteger de la lluvia las próximas" +" fosas de carbonización." + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "protección de piedra para fosa de carbonización" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "Vamos a construir la última sección de piedra para la herrería." + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "última sección de piedra de herrería" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "Vamos a empezar a construir una sección de piedra para la alfarería." + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "alfarería con paredes de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" +"Nos vendría bien una herrería de bareque. Vamos a empezar construyendo un " +"lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "pared de bareque para herrería" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" +"Vamos a techar con pilares de bareque para proteger de la lluvia las " +"próximas fosas de carbonización." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "protección de bareque para fosa de carbonización" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "Vamos a construir la última sección de bareque para la herrería." + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "última sección de bareque de herrería" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "Vamos a empezar a construir una sección de bareque para la alfarería." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "alfarería con paredes de bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" +"Nos vendría bien una herrería de paneles de madera. Vamos a empezar " +"construyendo un lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "pared de paneles de madera para herrería" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" +"Vamos a techar con pilares de paneles de madera para proteger de la lluvia " +"las próximas fosas de carbonización." + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "protección de paneles de madera para fosa de carbonización" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" +"Vamos a construir la última sección de paneles de madera para la herrería." + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "última sección de paneles de madera de herrería" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" +"Vamos a empezar a construir una sección de paneles de madera para la " +"alfarería." + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "alfarería con paredes de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" +msgstr "" #: lang/json/recipe_from_json.py msgid "Buttery Duck Bites" @@ -218223,8 +223190,15 @@ msgid "Mansion Garden With Columns Base" msgstr "Base en Jardín con Columnas de Mansión" #: lang/json/recipe_group_from_json.py -msgid "Canteen" -msgstr "Cantina" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" +"Cantina versión 1. Brinda recetas de cocina, hornos, pozo de agua, sótano" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" +msgstr "" +"Cantina versión 2. Es la versión 1 más destilador, molino de viento y más " +"maceteros" #: lang/json/recipe_group_from_json.py msgid "Farm version 1. Shed, plots, some farming recipes" @@ -218237,25 +223211,51 @@ msgstr "" "Granja versión 2. Solamente lotes, valla (puerta opcional para tractor), sin" " recetas" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "Taller mecánico" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "" +"Garage versión 1. Entran vehículos de tamaño considerable, con espacio a su " +"alrededor" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" -msgstr "Lugar de Ganado" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "Garage versión 2. Ancho máximo, doble carril, tres largos diferentes" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "Área de Ganado versión 1. Mucho espacio libre" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" +msgstr "" +"Área de Ganado versión 2. Más establos que la versión 1, menos espacio libre" #: lang/json/recipe_group_from_json.py msgid "Saltworks Area" msgstr "Área de Salinas" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" -msgstr "Edificio Central de Almacenamiento" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" +"Almacenamiento Central versión 1. Linda construcción con espacio libre" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" +"Almacenamiento Central versión 2. Más enfocado en el almacenamiento. Solo " +"ubicable en N, E, S u O" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" +msgstr "Taller de Fabricación versión 1. Linda cabaña-taller." #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" -msgstr "Taller de Fabricación" +msgid "Fabrication Workshop version 2. More detailed recipe progression" +msgstr "Taller de Fabricación versión 2. Progresión más detallada de recetas" #: lang/json/recipe_group_from_json.py msgid "Light Industry Workshop" @@ -218417,6 +223417,62 @@ msgstr "Hackear y Descargar: hojas de datos IC, pendrive" msgid " Hack & Download: Satellite Map, sketch" msgstr "Hackear y Descargar: Mapa Satelital, boceto" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "Fabricar: Crisol, Arcilla" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "Fabricar: Par de Alicates Planos" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "Fabricar: Tallante (cincel para trabajar metal)" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "Fabricar: Cuchillo, Cacería" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "Fabricar: Pasador Ahusado" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "Estación de Campo" @@ -220880,6 +225936,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "Empezás como Mutante Planta pasado el umbral" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "Mutante - Umbral Lagomorfo" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "Mutante - Umbral Lagomorfa" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "Empezás como Mutante Lagomorfo pasado el umbral" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "Empezás como Mutante Lagomorfa pasado el umbral" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -221231,7 +226313,7 @@ msgstr "" "objetos útiles. Esta habilidad juega un papel importante en la fabricación " "de muchos objetos." -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "alimentos" @@ -222154,11 +227236,12 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" -"Si te está persiguiendo una horda de zombis, intentá esconderte en los " -"túneles del subte y trasladarte una cuadra o dos, y después volvés a salir." +"Si te está siendo perseguido por una horda de zombis, intentá esconderte en " +"los túneles del subte y trasladarte una cuadra o dos antes de volver a " +"salir." #: lang/json/snippet_from_json.py msgid "" @@ -223236,22 +228319,23 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" -"No estoy seguro si Mike está bien de la cabeza. Tuvo la suficiente mala " -"suerte para que lo lleven a la escuela una vez. Esa experiencia le rompió " -"más que las costillas." +"Conocí a un maestro de primaria que tuvo que luchar para salir de la " +"escuela. Mató a una decena de chicos enloquecidos. No me puedo imaginar lo " +"que eso le produce a una persona." #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" -"Unas palabras acerca de los explosivos. Si podés correr y todavía no " -"explotó, seguí corriendo. No existe eso de exceso de espacio entre vos y la " -"dinamita." +"Una reflexión sobre los explosivos: si todavía podés correr y el explosivo " +"todavía no detonó, seguí corriendo. No hay cantidad excesiva de precaución " +"cuando estás frente a una granada." #: lang/json/snippet_from_json.py msgid "Avoid using launchers in narrow hallways, you might miss." @@ -228693,6 +233777,354 @@ msgstr "" "Mientras mirás las estrellas, una franja ancha de ellas se sumerge en la " "oscuridad y luego vuelven a la vida en una sucesión irregular." +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "Por un segundo, ves lo que parece ser una isla en el cielo." + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" +"Por un segundo, el sol se vuelve rojo sangre y parece estar chorreando algo." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" +"Por un instante, ves lo que parecen ser edificios del tamaño de montañas a " +"la distancia." + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" +"Por un instante, estás entre una multitud de personas parcialmente " +"transparentes. Ni se dan cuenta de tu presencia." + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" +"Ves en el cielo un pequeño avión volando bajo pero está volando hacia atrás " +"y tiene una bandera que no reconocés." + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "Todas las sombras que ves rotan como si el sol se estuviera moviendo." + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" +"Por un segundo, ves lo que parece ser una cadena de islas en el cielo." + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" +"Por un segundo, el sol se poner oscuro, casi como si fuera un ojo gigante " +"pestañeando." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" +"Por un momento, ves lo que parecen ser insectos del tamaño de montañas a la " +"distancia." + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" +"Por un instante, estás entre una multitud de personas parcialmente " +"transparentes. Todas te miran a vos." + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" +"Ves en el cielo un gran avión volando bajo pero está volando hacia atrás y " +"tiene una versión de tu bandera con los colores invertidos." + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" +"Todas las sombras que ves cambian de forma y de color empezando a parecerse " +"a figuras humanas." + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "Por un segundo, ves lo que parece ser una ciudad en el cielo." + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "Por un segundo, el sol cambia su curso hacia el norte y se acelera." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" +"Por un momento, ves lo que parecen ser humanos del tamaño de montañas a la " +"distancia." + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" +"Por un instante, estás entre una multitud de personas parcialmente " +"transparentes. Todos te están señalando y gritan en un idioma que las " +"cuerdas vocales humanas no son capaces de hablar." + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" +"Ves un gran avión volando bajo en el cielo pero está volando hacia atrás. " +"Aparece un paracaídas cerca que parece estar subiendo hacia el avión " +"mientras la figura forcejea." + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" +"Todas las sombras que ves cambian de forma y de color empezando a parecerse " +"a figuras con muchas más extremidades haciéndote señas para que vayas hacia " +"ellos." + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "Olés un olor químico fuerte que no podés reconocer." + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" +"Se te ponen los pelos de punta cuando un leve hormigueo eléctrico pasa como " +"una ola sobre vos." + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" +"Un agujero gigante se abre en el cielo y varias nubes se desvanecen en él." + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" +"Un agujero gigante se abre en el cielo y varias nubes oscuras emergen de él." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" +"Por una milésima de segundo, el mundo se pone difuso como si tuviera otras " +"formas encima." + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" +"Por un momento, un agujero se abre en la realidad y podés ver tu propia " +"espalda." + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "Por un momento, todos los colores se vuelven opacos." + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "Por un momento, todas las distancias parecen achicarse." + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" +"Una figura pequeña aparece y desaparece de la existencia tan rápidamente que" +" no se puede distinguir sus rasgos." + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" +"Sentís un olor completamente nuevo, nada parecido a lo que oliste en tu " +"vida. No podés decidir si eso es bueno o malo." + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" +"Se te ponen los pelos de punta cuando un hormigueo eléctrico pasa sobre vos." + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" +"Un agujero gigante se abre en el cielo y varias nubes fluorescentes emergen " +"de él." + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" +"Un agujero gigante que parece un ojo se abre en el cielo, y luego se cierra " +"como si estuviera pestañeando." + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" +"Por una milésima de segundo, el mundo queda cubierto por un vacío vasto." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" +"Por una milésima de segundo, el mundo queda cubierto por una habitación " +"circular, pequeña y uniforme." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" +"Por una milésima de segundo, el mundo queda cubierto por un vasto paisaje " +"extraterrestre con plantas de tamaño de edificios todo a tu alrededor." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" +"Por una milésima de segundo, el mundo queda cubierto por una ciudad vacía y " +"en ruinas, pero construida en una escala muy diferente a las que existen en " +"la Tierra." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" +"Por un instante, un agujero se abre en la realidad y podés ver una copia " +"casi perfecta de vos mismo." + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "Por un instante, todos los colores quedan invertidos." + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "Por un instante, todas las distancias parecen duplicarse." + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" +"Una figura alta aparece y desaparece de la existencia tan rápidamente que te" +" deja con una vaga impresión de malevolencia." + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" +"Sentís un olor completamente nuevo, nada parecido a lo que oliste en tu " +"vida. Te hace tener sentir náuseas." + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" +"Se te ponen los pelos de punta cuando una fuerte corriente eléctrica pasa " +"como una ola sobre vos." + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" +"Un agujero serrado se abre en el cielo y emerge una gran nube con forma de " +"persona asimétrica." + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" +"Un agujero serrado que parece un ojo se abre en el cielo y luego fija su " +"mirada en vos." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" +"Por una milésima de segundo, el mundo desaparece y te encontrás en un vacío " +"vasto." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" +"Por una milésima de segundo, el mundo desaparece y te encontrás en una " +"habitación circular, pequeña y uniforme." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" +"Por una milésima de segundo, el mundo desaparece y te encontrás en un vasto " +"paisaje extraterrestre con plantas del tamaño de edificios a tu alrededor." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" +"Por una milésima de segundo, el mundo desaparece y te encontrás en una " +"ciudad vacía y en ruinas, pero construida en una escala muy diferente a las " +"que existen en la Tierra." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" +"Por un instante, un agujero se abre en la realidad y podés ver una copia " +"maliciosamente idealizada de vos mismo." + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" +"Por un instante, todos los colores fluyen para armar formas puntiagudas." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" +"Por un instante, todas las distancias parecen desaparecer como si todo fuera" +" una sola cosa. Es claustrofóbico." + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" +"Una figura alta aparece y desaparece de la existencia rápidamente mirándote " +"y señalándote todo el tiempo." + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -228703,7 +234135,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" "Las vías acá están resbalosas por un líquido espeso que brota desde abajo." @@ -228857,7 +234289,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" "La pared está alfombrada con hongos grises verduscos. Sus sombreros se giran" @@ -235324,7 +240756,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" "Es un pedazo cocinado del pulmón de un animal mutado. Con mucho trabajo " "podés cortar alrededor del caparazón endurecido de mugre translúcida, pero " @@ -235414,7 +240846,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" "Es un pedazo de hígado de un animal mutado. La superficie está ennegrecida y" " dura pero rota, exponiendo unas pocas tiras de tejido rosa debajo. Luego de" @@ -235435,7 +240867,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -235463,7 +240895,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" @@ -235474,10 +240906,10 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" "Es un pedazo de riñón de un animal mutado. Al cortarlo, tu cuchillo resbala " "abriendo un gran trajo en un costado desde el cual unas pequeñas perlas " @@ -235597,7 +241029,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -235753,11 +241185,11 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" "Dispersas a distancias equitativas por el cuerpo entero, encontrás pequeños " -"sacos de huevos en diferentes etapas de crecimiento." +"sacos de huevos en varias etapas de crecimiento." #: lang/json/snippet_from_json.py msgid "" @@ -236310,7 +241742,7 @@ msgstr "" "cada una alimentando una reserva en la base del aguijón" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "Abrís el estómago y liberás un chorro de fluido gris de olor dulce" #: lang/json/snippet_from_json.py @@ -236322,12 +241754,12 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" "Tu cuchillo llega hasta el aguijón retraído y resbala por su superficie " -"suave, abriendo media docena de glándulas de veneno en el proceso. Vos no te" -" cortaste, ¿no?" +"suave, abriendo media docena de glándulas de veneno en el proceso. Esperás " +"con muchas ansias no haberte cortado." #: lang/json/snippet_from_json.py msgid "" @@ -238650,6 +244082,77 @@ msgstr "" "Te despertás de una pesadilla en la que no había ningún cataclismo y estabas" " atrapado en un trabajo de oficina." +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "¿Vos qué preferís, gatos o perros?" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "Es bueno saber que los zetas no sienten dolor." + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "Sea donde sea que terminemos, por lo menos estamos vivo, ¿no?" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "De alguna manera, no creo que vuelva pronto a mi antiguo trabajo…" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" +"¡Bue, esto no tiene nada que ver con las películas de zombis de Hollywood!" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "¿Alguna vez pensás sobre el conflicto ético de matar zombis?" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" +"¿Así que mojás el cepillo de dientes DESPUÉS de ponerle dentífrico? Eso es " +"raro." + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "¿Y qué pensás que estará haciendo el presidente en este momento?" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" +"¿Qué te gusta escuchar? A mí me gusta el ritmo polka post-glam con mucho " +"bajo." + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" +"No le digas a nadie pero a veces me gusta dormir agarrando mi osito de " +"peluche." + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "A veces veo cosas raras en el cielo a la noche." + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "Tenía un gato. Extraño mucho al Sr. Arrumaco…" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" +"Con mis amigos jugábamos a policías y ladrones pero con zombis. Nunca pensé " +"que iba a volverse real…" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "¿Nunca pensaste que tal vez estemos en una clase de simulación?" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -241184,7 +246687,7 @@ msgstr "¡Dejame matar algo ya!" msgid "I'm your best friend, right?" msgstr "Soy tu mejor amigo, ¿no?" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "¡Te quiero!" @@ -241945,6 +247448,118 @@ msgstr "Ya me estás haciendo calentar…" msgid "You hate this loud sound." msgstr "Odiás este ruido fuerte." +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "Vos tenías un perro parecido a este…" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "¡Ja ja! Una foto divertida de un gato." + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "Excelentes imágenes de la naturaleza." + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "Foto de comida… ¡te cruje la panza!" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "Algunas fotos muy interesantes de viajes." + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "Fotos del concierto de una banda conocida." + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "Fotos de la lujosa casa de alguien." + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "Sentís nostalgia mientras te quedás mirando la foto." + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "Es innegable." + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "Decididamente, es así." + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "Sin lugar a dudas." + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "Sí - definitivamente." + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "Podías confiar en eso." + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "Como yo lo veo, sí." + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "Lo más probable." + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "Buena perspectiva." + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "Sí." + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "Las señales dicen que sí." + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "La respuesta es difusa, probá otra vez." + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "Preguntá otra vez después." + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "Mejor no decirte ahora." + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "No puedo predecirlo ahora." + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "Concentrate y preguntá otra vez." + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "No cuentes con eso." + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "Mi respuesta es no." + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "Mis fuentes dicen que no." + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "La perspectiva no es muy buena." + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "Muy dudoso." + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -241963,6 +247578,21 @@ msgstr "\"¡vamos a superar esto!\"" msgid "\"i'm here for you!\"" msgstr "\"¡estoy acá para ayudarte!\"" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "\"¡wow! ¡sos igualito a mí! ¡tendríamos que cuidarnos entre nosotros!\"" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "\"¡vamos, yo grande, vayamos!\"" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "\"¡somos un equipo, podemos hacerlo!\"" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "\"TENÍAMOS RAZÓN, ES CULPA DEL GOBIERNO\"" @@ -243446,6 +249076,115 @@ msgstr "" "\"⋯bioluminescente, 5' de diámetro⋯ parece ser un globo ocular inmenso " "incorpóreo, capaz de volar y [ilegible] pensamiento\"" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" +"\"¿Qué onda con eso de hervir agua? ¡El agua de lluvia está destilada " +"naturalmente! Es completamente segura, podrías ahorrarte mucho tiempo si no " +"la hervís. ¡Tomé agua del río y estoy bien!\"" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" +"\"Fui a un refugio de emergencia, un tipo entró, salió, agarró una piedra, " +"rompió un banco, cortó una tabla y salió de nuevo. No lo vi en 3 días… me " +"pregunto cuál será su historia.\"" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" +"Esta nota está cubierta de una viscosidad gris, ugh… \"Sé que tengo un " +"fetiche pero ESTO ES MUCHO. Mis manos están hechas de slime. Mi pelo es " +"slime. Mi cuerpo está cubierto de slime. Ni siquiera puedo usar una barreta " +"por culpa del slime. Vaya por donde vaya dejo un rastro de slime. Todo es " +"slime. Mi bolsa se me cae de la espalda por culpa del slime.\"" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" +"Es una hoja de una libreta con un código morse de referencia y el siguiente " +"mensaje decodificado: \"Whisky echo whisky - Lima alpha delta\"" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" +"\"Ves si querés ser, muy molesto podés, cabeceá al, tirá y andá, ayudá, " +"Ering cavá el, último, pedazo\"" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" +"\"Vi uno de esos trabajadores de Foodplace en la calle. Honestamente, no se " +"les nota ninguna diferencia cuando están muertos o vivos.\"" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" +"\"¡NO vayas en las plantas de irradiación! Mi camión parece queso suizo " +"después de que lo agarraron las torretas. Voy a estar acá tirado por horas " +"hasta que pueda arreglar este quilombo.\"" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" +"\"Puedo imaginarme gente mandando sus 'cariño y rezos' por las redes " +"sociales. El cariño no parece matar a los zetas, los rezos no ponen comida " +"en mi panza.\"" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" +"\"Antes me tomaba todo muy literal. Si no lo podías medir, no lo podías " +"explicar, no le podías poner un número, no era real. Y después pasó este " +"quilombo. Qué cago de risa.\"" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "Esta nota está cubierta de una viscosidad gris, ugh… \"Blorble\"" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" +"\"Vi una chica en el bosque. Tenía el cuerpo verde y estaba cubierta de " +"hojas y lianas.\"" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" +"\"Buenas noticias: mis profesores no están tratando de matarme con la tarea." +" Malas noticias: mis profesores están tratando de matarme de todas " +"maneras.\"" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -246775,6 +252514,15 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "\"Vi a la dinosauria más hermosa hoy. Debo vestirla.\"" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" +"\"Vi un dinosaurio y me dije gorgo. ¡Y después vi este otro dinosaurio y me " +"dije gooorgo! ¡Y después vi otro y me dije gorgosaurus! Te lo juro.\"" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -246926,6 +252674,34 @@ msgstr "" "Alonso no la conocía pero ella era hermosa y majestuosa y se merecía un " "entierro apropiado. Alonso recordará este dinosaurio por mucho tiempo." +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" +"Recibí un mensaje de nuestro intermediario mago Jacob. Está un poco fuera de" +" sí y estuvo lloriqueando por horas pero parece que todos los laboratorios " +"centrales han sido invadidos. ¿Se han unido finalmente los necromantes para " +"sacarnos? ¿Cuál es su plan?" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" +"Ayer, Gregory Hamilton, el Mago Responsable local, se puso agresivo en el " +"centro comercial. Conocido por ser el mago más poderoso de Syracuse, New " +"York, no sorprende que haya logrado convertir el centro entero en un cráter " +"humeante. La Guardia Nacional lo redujo con un equipo de francotiradores y 5" +" helicópteros. Se desconoce el número de muertos pero se estima en más de " +"15.000." + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -246964,6 +252740,16 @@ msgstr "" "\n" "El oricalco es una aleación principalmente del cobre pero su creación varía de persona a persona en términos de metales menores y el procedimiento exacto. Aunque no es sustancialmente más fuerte que el acero, es mucho más resistente a la corrosión y al desgaste general (algunos dicen que tiene la voluntad de mantener su estado). Aunque existen espadas antiguas mágicas convencionales, mucho del conocimiento popular está basado en gente preindustrial que encontraron armas de oricalco en tumbas y en un estado todavía funcional. Así que ¿por qué no se utiliza el oricalco en contextos más industriales? El problema es que la magia puede empezar a deteriorarse si no está forjada con la habilidad apropiada. Aunque la mayoría de los errores se revertirán en minutos (nunca siendo oricalco en la práctica para empezar), es una posibilidad durante hasta 30 años, lo que significa que los objetos tienen que \"añejarse\" como el vino para ser considerados verdadero oricalco. Aunque es un poco más fácil que forjar desde cero, reforjar el oricalco existente tiene los mismos problemas, eso traba la manufactura industrial y lo limita a su uso en fabricaciones. Puede ser encontrado en armaduras y armas viejas pero también en reliquias familiares caras y cubiertos. Todavía existe una comunidad activa de aficionados y expertos artesanos pero el oricalco, al igual que muchos otros fenómenos mágicos, no es adecuado para nuestra sociedad moderna.\"" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" +"Hubo un disturbio en el shopping. La única explicación que tengo es que " +"algún idiota estaba experimentando con el hechizo Frenesí de Masas. Por una " +"\"razón\" esa clase de hechizo está clasificado como secreto militar…" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -248520,11 +254306,11 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" -"una voz neutral diciendo \"Cliente, debo informarle que mi tiempo asignado " -"con usted llegará prontamente a su fin.\"" +"una voz neutral diciendo: \"Cliente, debo informarle que mi tiempo dedicado " +"para usted está llegando a su fin.\"" #: lang/json/speech_from_json.py msgid "" @@ -248709,20 +254495,20 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "\"Policía entrante. ¡Quedate donde estás!\"" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" -msgstr "\"canturreo visceral.\"" +msgid "visceral chittering." +msgstr "pío visceral." #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" -msgstr "\"un zumbido estridente y claro.\"" +msgid "a clear, high-pitched hum." +msgstr "un canturreo claro y agudo." #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" -msgstr "\"el zumbido de la electricidad estática.\"" +msgid "the hum of static electricity." +msgstr "el zumbido de la electricidad estática." #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" -msgstr "\"un suave sonido como un zumbido.\"" +msgid "a low buzzing sound." +msgstr "un zumbido grave." #: lang/json/speech_from_json.py msgid "\"I AM FOODPERSON. AND I BRING SUSTENANCE!\"" @@ -248802,128 +254588,132 @@ msgstr "" " y fuertes!!\"" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "¿Querés jugar conmigo?" +msgid "\"Wanna play with me?\"" +msgstr "\"¿Querés jugar conmigo?\"" + +#: lang/json/speech_from_json.py +msgid "\"Sing with me!\"" +msgstr "\"¡Cantá conmigo!\"" #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "¡Cantemos una canción!" +msgid "\"I love you!\"" +msgstr "\"¡Te amo!\"" #: lang/json/speech_from_json.py -msgid "Please take me with you!" -msgstr "¡Por favor, llevame con vos!" +msgid "\"Please take me with you!\"" +msgstr "\"¡Por favor, llevame con vos!\"" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "¿Puedo comer una galletita?" +msgid "\"May I have a cookie?\"" +msgstr "\"¿Me das una galletita?\"" #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "¡Vamos a jugar juntos!" +msgid "\"Let's play together!\"" +msgstr "\"¡Vamos a jugar juntos!\"" #: lang/json/speech_from_json.py -msgid "Time to play!" -msgstr "¡Hora de jugar!" +msgid "\"Time to play!\"" +msgstr "\"¡Hora de jugar!\"" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" -msgstr "¡Am ñam ñam! ¡Delicioso!" +msgid "\"Om nom nom! Delicious!\"" +msgstr "\"¡Om nom nom! ¡Delicioso!\"" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" -msgstr "¿Vos sos mi mamá?" +msgid "\"Are you my mommy?\"" +msgstr "\"¿Sos mi mamá?\"" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" -msgstr "¡Ah, qué divertido!" +msgid "\"Oh, how fun!\"" +msgstr "\"¡Oh, qué divertido!\"" #: lang/json/speech_from_json.py -msgid "You're my best friend!" -msgstr "¡Sos mi mejor amigo!" +msgid "\"You're my best friend!\"" +msgstr "\"¡Sos mi mejor amigue!\"" #: lang/json/speech_from_json.py -msgid "Heehee!" -msgstr "¡Heehee!" +msgid "\"Heehee!\"" +msgstr "\"¡Heehee!\"" #: lang/json/speech_from_json.py -msgid "Let's have fun!" -msgstr "¡Vamos a divertirnos!" +msgid "\"Let's have fun!\"" +msgstr "\"¡Vamos a divertirno!\"" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" -msgstr "¡Vamos a tomar el té!" +msgid "\"Let's have a tea party!\"" +msgstr "\"¡Juntémonos a tomar el té!\"" #: lang/json/speech_from_json.py -msgid "You're the best!" -msgstr "¡Sos el mejor!" +msgid "\"You're the best!\"" +msgstr "\"¡Sos el mejor!\"" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." -msgstr "No deberías haber hecho eso." +msgid "\"You shouldn't have done that.\"" +msgstr "\"No tendrías que haber hecho eso.\"" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." -msgstr "Vamos a jugar a la… Ruleta Rusa." +msgid "\"Let's play… Russian roulette.\"" +msgstr "\"Vamos a jugar a… la Ruleta Rusa.\"" #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "Te odio." +msgid "\"I hate you.\"" +msgstr "\"Te odio.\"" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" -msgstr "¡Por qué no te matás!" +msgid "\"Go kill yourself!\"" +msgstr "\"¡Andá a pegarte un tiro!\"" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" -msgstr "Gran Hermano te está mirando…" +msgid "\"Big Brother is watching you…\"" +msgstr "\"Gran Hermano te está mirando…\"" #: lang/json/speech_from_json.py -msgid "Die for me!" -msgstr "¡Quiero que mueras por mí!" +msgid "\"Die for me!\"" +msgstr "\"¡Morí por mí!\"" #: lang/json/speech_from_json.py -msgid "Why won't you die?" -msgstr "¿Por qué no te morís?" +msgid "\"Why won't you die?\"" +msgstr "\"¿Por qué no te morís?\"" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." -msgstr "Sangre… Deliciosa." +msgid "\"Blood… Delicious.\"" +msgstr "\"Sangre… Deliciosa.\"" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" -msgstr "Nos vemos… ¡EN EL INFIERNO!" +msgid "\"See you… IN HELL!\"" +msgstr "\"Nos vemos… ¡EN EL INFIERNO!\"" #: lang/json/speech_from_json.py msgid "AAAIEEEEEEE!" msgstr "¡AAAIEEEEEEE!" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" -msgstr "¡ANDATE A LA MIERDA!" +msgid "\"FUCK YOU!\"" +msgstr "\"¡ANDATE A LA MIERDA!\"" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" -msgstr "¿Qué hiciste con mi mamá?" +msgid "\"What did you do with my Mommy?\"" +msgstr "\"¿Qué le hiciste a mi mamá?\"" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" -msgstr "Quedate conmigo… ¡para siempre!" +msgid "\"Stay with me… forever!\"" +msgstr "\"Quedate conmigo… ¡para siempre!\"" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "Hola, chicos. ¿Quieren un caramelo?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "\"Hey, chicos. ¿Quieren unos caramelos?\"" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" -msgstr "Acá abajo, ¡flotan TODOS!" +msgid "\"Down here, they ALL float!\"" +msgstr "\"Acá abajo, ¡TODOS flotan!\"" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" -msgstr "¿De verdad necesitás toda esa plata?" +msgid "\"Do you really need that much honey?\"" +msgstr "\"¿De verdad necesitás esa cantidad de miel?\"" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" -msgstr "¡Mi dueña anterior gritaba como un chancho cuando la destripé!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" +msgstr "\"¡Mi dueña anterior gritaba como un chancho cuando la destripé!\"" #: lang/json/speech_from_json.py msgid "BARK!" @@ -248938,20 +254728,16 @@ msgid "WOOF!" msgstr "¡GUAU!" #: lang/json/speech_from_json.py -msgid "heavy breathing" -msgstr "respiración fuerte" - -#: lang/json/speech_from_json.py -msgid "labored breathing" -msgstr "respiración trabajosa" +msgid "labored breathing." +msgstr "respiración trabajosa." #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "un lloriqueo" +msgid "a whimper." +msgstr "un lloriqueo." #: lang/json/speech_from_json.py -msgid "a rasping growl" -msgstr "un gruñido ronco" +msgid "a rasping growl." +msgstr "un gruñido ronco." #: lang/json/speech_from_json.py msgid "\"I have no mouth and yet I scream!\"" @@ -250066,6 +255852,10 @@ msgstr "Almacén" msgid "Gun Store" msgstr "Armería" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "Taller mecánico" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "Casa de empeños" @@ -251637,6 +257427,10 @@ msgstr "Por favor, hacé los trabajos de construcción que puedas." msgid "Please do any mining work that you can." msgstr "Por favor, hacé los trabajos de minería que puedas." +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "Por favor, andá a pasar un trapo por el área." + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "Por favor, estudiá con un libro." @@ -260683,6 +266477,928 @@ msgstr "" msgid "I'm glad you are OK." msgstr "Me alegra que estés bien." +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "¿Qué tenés para comerciar?" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "No entiendo nada de lo que me estás diciendo." + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "¿Sos alguna especie de robot?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" +"[INT 9] ¿Se llaman exodii? ¿Eso significa que fueron expulsados de su hogar?" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "¿Qué clase de lugar es este?" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "[PER 6] Algunas cosas de esta tecnología parecen… raras." + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" +"Me querías hacer unas preguntas antes y creo que te contesté un poco mal. " +"¿Qué me querías preguntar?" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" +"¿Podemos continuar nuestra conversación acerca de tu llegada a este mundo?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" +"¿Me podés convertir en un ciborg EN ESTE MISMO MOMENTO? Soy desarrollador de" +" este juego, ¿sabías?" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "Creo que ahora estoy preparado para convertirme en un ciborg." + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" +"¿Existe la posibilidad de que me ayudes a conseguir una de esas mejoras " +"biónicas?" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "¿Me podés ayudar con la cirugía para el MCB?" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "Vuelvo en un segundito, ¿sí?" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "¿Te olvidaste alguito?" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "Ah, un regreso, y lo sé." + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "Y un lindo regreso, compañero." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" +"Bien y vos todavía no te moriste. ¿Qué te trae por los pagos de Rubik?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" +"Luminoso y soleado, ¡volviste! Tengo cosas para vos, si vos tenés cosas para" +" mí." + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "Oy, no estás muerto. ¿Querés comprar algo?" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "¿Quién sos? ¿Qué es este lugar?" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "Te traje esos equipos de anestesia. ¿Me podés ayudar?" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "En realidad, quería hablar." + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "De ninguna manera, me voy." + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "Pasaba a saludar. Hasta luego, cocodrilo." + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" +"Nos llamamos a nosotros mismos los Exodii, ¿eh? Y de otras maneras pero está" +" bien. Esta es nuestra casa, así como la ves, me llamo Rubik y me asignaron " +"a comerciar con vos. ¿Estás buscando comprar algo? Siempre necesitamos " +"chatarra, metal y otras cosas." + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "Bueno, mejor me voy yendo. Chau." + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "Bueno y bien, entonces." + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "Tenelo como vas a ver." + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "Por una tarjeta y un guiño, ¿eh?" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "¿Qué era lo que estabas diciendo antes?" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" +"Sí, podés intentarlo. No soy el mejor hablando y no voy a conversar para " +"siempre gratis, ¿entendés?" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "¿Hey, te puedo preguntar algo primero?" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "¿Qué? ¿Preguntarme algo? Sí, supongo." + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" +"No. Estoy muy ocupado como para responder tus preguntas, se supone que vos " +"tenés que contestar las mías. Supongo que me voy yendo." + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "¿Hace cuánto que pasó todo este lío?" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "[Deciles]" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" +"Gracias. Cuando vos y Rubik se conocieron, ¿cuánto hacía que había pasado " +"todos este quilombo?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" +"¡Hermoso! ¡Benzete va a ser pareja, eso es una pista! Quiero decir, van a " +"estar bien felices. Este es su primer salto y es como un patito." + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "¿Qué lo hace un salto tan bueno?" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "¿Quién es Benzete?" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "¿Podemos hablar de otra cosa?" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "Me tengo que ir. Nos vemos después, Rubik." + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" +"Así que como lo recuerdo, nos estamos burlando del genial primer salto de " +"Benzete." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" +"Tenemos que dejar el viejo mundo antes de que se gaste, y encontrar uno " +"lindo en el otro lado. Tu tierra muerta es un poco brillante" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "No te estaría entendiendo nada." + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" +"[INT 9] ¿Así que lo que me estás diciendo es que tenemos un lindo y " +"recientemente muerto mundo para que ustedes visiten?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" +"Nunca se sabe. Así como es, el enemigo es nuevo acá, y nosotros tenemos unas" +" buenas horas en el sol antes del salto." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" +"Ah, te referís a que llegaron al principio del Cataclismo. ¿Y por qué eso es" +" bueno?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" +"Eso va a ser una parte y un interruptor pero va a ser bueno para todos, " +"excediendo el último salto por cabezas. Otras tierras con fucciles y movils," +" nosotros tenemos un buen cambio con eso." + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "No sé a qué te referís con fucciles y movils." + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" +"¡Los sabés correctamente! Eso y esto es bueno para todos, excediendo el " +"último salto por cabezas. Otras tierras con fucciles y movils, nosotros " +"tenemos un buen cambio con eso." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" +"Oh, cierto. Muchas tierras afirman en eso. Un fuccil es un arma, dispara un " +"tiro a gran velocidad haciendo bang. Un movils es una gran caja de metal, " +"empujada por quemar y explotar desde adentro, ¿entendés?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" +"[INT 7] ¿Parece que me querés decir que los fucciles son armas de fuego y " +"los movils, autos?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" +"Eso es, nosotros todos escribimos en el pitulín. Acá, un penique brillante " +"por cruzar la nación." + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "¿Quién es benzete?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" +"Hay uno de otra tierra que cambió con tres saltos, anchos como el cielo. " +"Llegó feliz y de alguna manera para el rastreo, ¿entendés?" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "Eh… no entendí muy bien." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" +"Hmm. ¿Planificaron el último salto? Como un aprendiz del viejo sextante." + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "Ah, ¿como un navegador?" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "Seguro y esa es una buena palabra, y entiendo." + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "¿Decís que ese fue un salto especialmente bueno?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" +"Sí, podés decir eso. Somos de otras tierras. No de otros mundos. Demasiado " +"riesgo traer atenuadores en el pliegue." + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "No conozco la diferencia entre otras tierras y otros mundos." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" +"Seguro y es un peso pesado. Otros mundos fueron el antes de ellos y molestan" +" por acá, ¿eh? Plantas que caminan y hongos que hablan y cosas así. Otras " +"tierras son más familiares. Soy de la Tierra pero mi Tierra es diferente. " +"Así que no deberías preguntar qué están haciendo los exodii en la Tierra, " +"porque algunos nos estamos sintiendo bien en casa y lo sé. Deberías " +"preguntar qué hacen los exodii burlándose de tus verdes y marrones." + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "Bueno, entonces ¿qué hacen burlándose de nuestros verdes y marrones?" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "Contame acerca de tu mundo." + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" +"*se vuelve distante por un momento. \"Ah. Casa. Fue mucho tiempo, ¿entendés?" +" No estás muy lejos. Yo… no quiero hablar de eso. Demasiado entre metales " +"aquí y allá." + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "Eso debe ser difícil, tal vez deberíamos hablar de otra cosa." + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "¿Qué hacen burlándose de nuestros verdes y marrones?" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "¿Cómo llegaron a ser hechos de metal así?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" +"Vimos que esto era el camino de pájaros, me burlo. Solo una dirección, " +"entiendo, si no me voy a unir al rango y fila." + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" +"Creo que entiendo lo que estás diciendo. La única manera de sobrevivir es… " +"\"mejorarse\". ¿Me podés ayudar a hacerlo?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" +"¿Robot? ¿Qué aseveración es esa? Momento…\" Rubik deja de hablar como si " +"estuviera pensando. \"Ah, ¿un autómata? No, esto es carne y sangre como vos," +" encerrado en una armazón de metal y cables. No tanta carne como antes. El " +"cable está mezclado y flota con la carne, como una sola cosa, ¿entendés?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" +"[INT 9] ¿Entonces sos una clase de ciborg? Qué copado. ¿Cómo hago para " +"volverme un ciborg yo?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" +"No tengo ni idea de lo que decís. Sos una clase de robot pero ¿también sos " +"de carne y sangre?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" +"Sí, esas son las hojas, y lo entiendo. Un poco de los dos pero Rubik alguna " +"vez fue como vos." + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "¿Podemos hablar de otra cosa? Ya estoy confundido." + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" +"Una base de porquería, ¿no? Pila de cosas. Nosotros guardamos todo y salimos" +" lo más pronto." + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "¿Guardaron? ¿Cómo pueden guardar algo como esto?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" +"Por y cómo, vas a necesitar pensar en ellos en las once direcciones, " +"¿entendés? Nosotros abrimos la puerta como un bamboleo. Los mismos que " +"nosotros llegaron." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" +"Seguro que podés, por lo menos de alguna manera. Nosotros intentamos como " +"podemos parlamentar su Hispan pero ya sabés que nosotros de otras tierras y " +"eso, no es tan simple." + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "[INT o PER 7] ¿Cómo es que hablan español o, eh, 'hispan' así?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "Ah, sí, así es. Todos y cada uno. Vagamos, hacemos. Es una vida." + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "¿Qué los expulsó?" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "Lo mismo que vos será, y yo entiendo. El enemigo. El muerto." + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" +"Soy un pobre de la Tierra Superior, esta es mi manera de hablar. De donde " +"vengo, todos hablan así." + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "Contame sobre \"la Tierra Superior\". ¿Cómo era tu hogar?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" +"Haciendo, haciendo, lo mismo que vos, entiendo. La última casa se puso un " +"poco mucho muerta y pútrida por los bordes. Le pasa a los mejores. Un " +"farfullo que nos hizo entender acerca de tu lugar acá, cargó los viejos " +"wibble-wammles y ¡bum! Ahora todo es tic-toc en un andador, acá estamos. " +"Hicimos buen tiempo esta vez, me burlo de que ustedes solo estuvieron " +"muertos unos días cuando llegamos. El cadáver más fresco que vi en una " +"pileta de cocina." + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "…¿qué?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" +"[INT o PER 9] ¿De dónde vinieron entonces? ¿Son extraterrestres o algo así?" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "¿Hay algo más que quieren de este lugar?" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" +"Estamos acá para sobrevivir, ¿entendés? Nuestro último otro mundo fue " +"invadido por los muertos vivos. Este, si no me equivoco, todavía no está tan" +" invadido por los muertos." + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "[INT o PER 7] ¿Otro mundo? ¿Son extraterrestres o algo así?" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" +"¿Aparte de tener un lugar seguro para vivir? Estamos acá para hacer minas, " +"¿entendés? Agarrar chatarra, ver si este mundo tiene tecnología que nos " +"llame a hacer ingeniería inversa. No tiene sentido dejar que la chatarra se " +"desperdicie. Si tenemos suerte, tal vez consigamos nuevos Exodii antes de " +"teletransportarnos. Agarrar los pedazos de nuestros dulces sueños " +"destrozados, así como están." + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" +"¿A qué te referís con 'se desperdicie'? Los zombis no están usando la " +"chatarra y hay mucha dando vueltas." + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" +"Esto es tierra muerta, ¿no te das cuenta? Ya tiene una infestación y no está" +" desapareciendo. No hay cura para los zombis." + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "¿Qué mierda significa eso?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" +"[int 8] ¿Me estás diciendo que para ustedes estamos condenados? ¿Por qué " +"vinieron acá si no hay manera de sobrevivir?" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" +"Significa lo que significa. Su tierra ya está muerta pero todavía sigue " +"pateando." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" +"¿Me estás diciendo que para ustedes estamos condenados? ¿Por qué vinieron " +"acá si no hay manera de sobrevivir?" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" +"Oh, nos podemos teletransportar cuando queremos. Mandamos la chatarra, " +"después la comida y nos sacamos unos problemas, ¿entendés? No es bueno para " +"vos, no saca mucha carne y hueso." + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "Bueno… ¿me podés ayudar a arreglar eso?" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "Esperá. Pensé que todavía eras carne y hueso, abajo del metal." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" +"Jaja, no tanto, amigo. No vale la pena arriesgarse, ¿eh? Yo mantengo lo que " +"es Rubik pero el resto es todo sólido." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" +"Para mí, no. No estamos asignados por acá. Parece bien y bien para vos, " +"creo." + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "[INT o PER 7] ¿No son de por acá? ¿Son extraterrestres o algo así?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" +"Si estás lleno y repleto, esto y feliz de hacer el llamado, por algo " +"brillante." + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "Tengo algunas cosas que me gustaría instalar." + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "¿Sos capaz de sacar alguno de mis implantes?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" +"Seguro y te puedo hacer un ciborg, ahora y acá, ya que sos un desarrollador " +"y todo." + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "Hagámoslo." + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "Cambié de opinión. ¿Qué era lo que me estabas diciendo antes?" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "Cambié de opinión. Mejor me voy. Chau." + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" +"¡Oh HO! Bueno, ahora estás hablando mi idioma. Te podemos arreglar bien si " +"estás dispuesto a pagarnos. Te lo digo tan claro como puedo. Si nos ayudás a" +" matar a los muertos vivos, te podemos ayudar a arreglarte, sí. Ponerte " +"cosas en tu carne y huesos y cables en tu cerebro. ¿Entendés? Si no, le " +"preguntaremos al Gran Gris que nos ayude." + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" +"Ah, bueno. Lo voy a archivar de esa manera, por decirlo de alguna manera. " +"Tal vez nos puedas traer un poco más para comerciar, y te arreglaremos lo " +"antes posible. Los exodii no rechazaremos a alguien con ganas de " +"convertirse." + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" +"Si sigo matando zombis, ¿me van a ayudar a convertirme en un ciborg? ¿Por " +"qué seguimos hablando entonces? Anotame ya." + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" +"Pensándolo bien, no estoy seguro de que unos robots extraterrestres " +"desconocidos me hagan neurocirugía." + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "¿Tal vez probando ese trago de claridad?" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "OK, bueno, tengo algunas cosas que te puedo ofrecer ahora." + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "OK, capaz que vuelvo después de haber vendido algunas cosas." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" +"Mmm.\n" +"\n" +"*La voz de Rubik se vuelve mecánica y distante por un momento, como si ahora se encargara una computadora de la voz.*\n" +"\n" +"A cambio de garantizar que usarás estos regalos para combatir al Gran Enemigo, este Nodo Exodii está dispuesto a brindarte un plexo de comando de módulo biónico, una fuente de alimentación y toda la infraestructura necesaria para obtener más mejoras con MCB estandarizados - módulo compacto de biónico. Vamos a requerir solo una muestra por este servicio. Vamos a brindar más mejoras mientras se compren. Tu mejora personal sirve a nuestro beneficio mutuo.\n" +"\n" +"*La voz de Rubik vuelve a aparecer.*\n" +"\n" +"¿Claro como un trago?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "¿Cuál es tu historia?" @@ -261469,6 +268185,10 @@ msgstr "¿Puedo ayudar en algo?" msgid "Do you need any resources?" msgstr "¿Necesitás algún suministro?" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "Por ahora, me conformo con arreglármelas." @@ -261548,6 +268268,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "Eso es lo más esperanzador que escuché hasta el momento." +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "De la misma manera que vos obtuviste el tuyo, supongo." @@ -264463,10 +271194,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "¿Qué es esto que escuché de que tenés un doctorado?" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "¿Qué era lo que estabas diciendo antes?" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -269262,10 +275989,6 @@ msgstr "Me supuse que estarías buscando ayuda…" msgid "What's with these 'free merchant certified notes'?" msgstr "¿Qué onda con estos 'bonos certificados de los mercaderes libres'?" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "Bueno, mejor me voy yendo. Chau." - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "Bienvenido, alguacil…" @@ -269717,6 +276440,115 @@ msgstr "" "personal también. Respeto a alguien que pone su dinero donde pone sus " "palabras." +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "Alguacil…" @@ -270074,6 +276906,15 @@ msgstr "Cuidate ahí afuera." msgid "Is there any way I can join the 'Old Guard'?" msgstr "¿Hay alguna forma en que me pueda unir a la 'Vieja Guardia'?" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "¿La Vieja Guardia necesita algo?" @@ -270199,6 +277040,58 @@ msgstr "" "trabajo disponible. Completar misiones como contratista es una buena forma " "de hacerte conocido entre los hombres más poderosos que quedan en el mundo." +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -273505,6 +280398,23 @@ msgstr "Por ahora no, preguntame en otro momento." msgid "Sure…" msgstr "Seguro…" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "¿Intentarías capturarme?" @@ -273706,20 +280616,6 @@ msgstr "Agarrate fuerte, . Voy a tener que despejar un camino." msgid "Pack your bags, . We're going on a trip." msgstr "Armá las valijas, . Nos vamos de viaje." -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "Contra Biojutsu" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "Bloqueás y contratacás al %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr " bloquea y contrataca al %s" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "Desarme" @@ -274335,20 +281231,6 @@ msgstr "Desarmás al %s usando tu látigo" msgid " disarms %s using their whip" msgstr " desarma al %s usando su látigo" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "Contrataque" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "Contratacás al %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr " contrataca al %s" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "Amague" @@ -274384,55 +281266,45 @@ msgid " jabs deftly at %s" msgstr " le da un hábil jab al %s" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" -msgstr "Bloqueo y ContraDesarme" +msgid "Counter Throw (block)" +msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" -msgstr "Bloqueás y desarmás fluidamente al %s" +msgid "You smoothly throw %s" +msgstr "Tirás suavemente al suelo al %s" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr " bloquea y desarma fluidamente al %s" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" -msgstr "Bloqueo y ContraTirada" +msgid " blocks and smoothly throws %s" +msgstr " bloquea y tira fluidamente al %s" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" -msgstr "Bloqueás y tirás fluidamente al %s" +msgid "Counter Throw (dodge)" +msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" -msgstr " bloquea y tira fluidamente al %s" +msgid " dodges and smoothly throws %s" +msgstr " esquiva y tira fluidamente al %s" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" -msgstr "Esquive y ContraTirada" +msgid "Disarming Throw (block)" +msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" -msgstr "Esquivás y tirás fluidamente al %s" +msgid "You smoothly disarm %s" +msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr " esquiva y tira fluidamente al %s" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" -msgstr "Esquive y ContraDesarme" +msgid " blocks and smoothly disarms %s" +msgstr " bloquea y desarma fluidamente al %s" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" -msgstr "Esquivás y desarmás fluidamente al %s" +msgid "Disarming Throw (dodge)" +msgstr "" #: lang/json/technique_from_json.py #, python-format @@ -274515,20 +281387,6 @@ msgstr "¡El %s intenta agarrarte pero lográs forzar tu escape!" msgid "The %s tries to grab , but they break free!" msgstr "¡El %s intenta agarrar a pero logra forzar su escape!" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "Devolución de Golpe" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "Atrapás el ataque del %s, y se lo devolvés" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr " atrapa el ataque del %s, y contrataca" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -274647,34 +281505,6 @@ msgstr "Levantás los brazos de manera intimidatoria hacia el %s." msgid " performs the Crane Wing at %s." msgstr " realiza el Ala de Grulla hacia el %s." -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "Aleteo de Grulla" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "¡El %s intenta agarrarte pero movés tus brazos y te liberás!" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "¡El %s intenta agarrar a pero aletea y se libera!" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "Golpe de Grulla" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "Formás un pico con tu mano y golpeás al %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr " forma un pico con su mano y golpea al %s" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "Patada de Grulla" @@ -274690,46 +281520,46 @@ msgid " leaps and kicks %s" msgstr " salta y patea al %s" #: lang/json/technique_from_json.py -msgid "Dragon Claw" -msgstr "Garra de Dragón" +msgid "Crane Flap" +msgstr "Aleteo de Grulla" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" -msgstr "Atacás al %s con la Garra de Dragón" +msgid "The %s tries to grab you, but you swing your arms and break free!" +msgstr "¡El %s intenta agarrarte pero movés tus brazos y te liberás!" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" -msgstr " ataca al %s con la Garra de Dragón" +msgid "The %s tries to grab , but they flap free!" +msgstr "¡El %s intenta agarrar a pero aletea y se libera!" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" -msgstr "Bloqueo del Dragón" +msgid "Crane Strike" +msgstr "Golpe de Grulla" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" -msgstr "Bloqueás el ataque del %s y lo mandás dando vueltas" +msgid "You hand-peck and strike %s" +msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" -msgstr " bloquea el ataque del %s y lo manda dando vueltas" +msgid " hand-pecks and strikes %s" +msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" -msgstr "Ala Esquivadora de Dragón" +msgid "Dragon Claw" +msgstr "Garra de Dragón" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" -msgstr "Esquivás el ataque del %s y lo sacás de balance" +msgid "You lash out at %s with a Dragon Claw" +msgstr "Atacás al %s con la Garra de Dragón" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" -msgstr " esquiva el ataque del %s y lo saca de balance" +msgid " lashes out at %s with a Dragon Claw" +msgstr " ataca al %s con la Garra de Dragón" #: lang/json/technique_from_json.py #, python-format @@ -274812,18 +281642,18 @@ msgid " combination strikes %s" msgstr " le da un golpe combinado al %s" #: lang/json/technique_from_json.py -msgid "Puño Strike" -msgstr "Empuñadurazo" +msgid "Stunning Strike" +msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" -msgstr "Le das un golpe con la empuñadura al %s" +msgid "You deliver a stunning strike to %s" +msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" -msgstr " le da un golpe con la empuñadura al %s" +msgid " delivers a stunning strike to %s" +msgstr "" #: lang/json/technique_from_json.py msgid "Low Strike" @@ -274864,8 +281694,8 @@ msgid " lunges at %s" msgstr " le da un golpe de esgrima al %s" #: lang/json/technique_from_json.py -msgid "Compound Attack" -msgstr "Ataque Compuesto" +msgid "Compound Attack (Remise)" +msgstr "" #: lang/json/technique_from_json.py #, python-format @@ -274878,6 +281708,10 @@ msgid "'s feint leads to a compound attack against %s" msgstr "" "La finta de lo lleva a hacer un ataque compuesto contra el %s" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "Estocada de Esgrima" @@ -275024,20 +281858,6 @@ msgstr "¡El %s intenta agarrarte pero rompés su débil agarre!" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "¡El %s intenta agarrar a pero rompe su débil agarre!" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "ContraTirada" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "Evadís y irás al piso al %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr " evade y tira al piso al %s" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "Contra de Karate" @@ -275142,20 +281962,6 @@ msgstr "¡El %s intenta agarrarte pero luchás y escapás!" msgid "The %s tries to grab , but they wrestle free!" msgstr "¡El %s intenta agarrar a pero lucha y escapa!" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "Contra" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "Bloqueás y contratacás al %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr " bloquea y contrataca al %s" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "Pata de Leopardo" @@ -275257,20 +282063,6 @@ msgid "" msgstr "" "Con movimientos practicados, pasa de un golpe errado a otro golpe" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "Corte Maestro" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "Esquivás y golpeás al/a %s en un solo movimiento" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr " esquiva y golpea al/a %s en un solo movimiento" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "Codazo" @@ -275594,20 +282386,6 @@ msgstr "Atacás al %s con un despiadado Golpe de Serpiente" msgid " lashes out at %s with a vicious Snake Strike" msgstr " ataca al %s con un despiadado Golpe de Serpiente" -#: lang/json/technique_from_json.py -msgid "Push" -msgstr "Empujar" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You push %s away" -msgstr "Empujás el/a %s a un lado" - -#: lang/json/technique_from_json.py -#, python-format -msgid " pushes %s away" -msgstr " empuja el/a %s a un lado" - #: lang/json/technique_from_json.py msgid "Shove" msgstr "Empujón" @@ -275632,6 +282410,16 @@ msgstr "Hacés tropezar hábilmente al %s" msgid " deftly trips %s" msgstr " hace tropezar hábilmente al %s" +#: lang/json/technique_from_json.py +#, python-format +msgid "You fake a thrust at %s" +msgstr "" + +#: lang/json/technique_from_json.py +#, python-format +msgid " fakes a thrust at %s" +msgstr "" + #: lang/json/technique_from_json.py msgid "Snatch Weapon" msgstr "Arrebatar Arma" @@ -275833,20 +282621,6 @@ msgstr "Tu ataque le erra al %s pero seguís insistiendo" msgid "'s attack misses %s but they don't let up" msgstr "El ataque de le erra al %s pero sigue insistiendo" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "Recibir y Contratacar" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "Recibís el regalo de violencia de %s y lo devolvés amablemente" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr " recibe el ataque de %s y contrataca" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "Amague de Borracho" @@ -276652,20 +283426,6 @@ msgstr "Segás limpiamente a través del %s y los que están cerca" msgid " cleanly reap throug %s and those nearby" msgstr " siega limpiamente a través del %s y los que están cerca" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "Ausstoß" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "Redirigís el ataque del %s contra ellos" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr " redirige el ataque del %s contra ellos" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "Kumai Sharinraku" @@ -276764,20 +283524,6 @@ msgstr "Usás tu Barrida Baja contra el %s" msgid " uses Low Sweep on %s" msgstr " usa su Barrida Baja contra el %s" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "Golpe de Engaño" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "Engañás completamente al %s y lo golpeás" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr " engaña completamente al %s y lo golpea" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "Golpe MataHidra" @@ -276820,21 +283566,6 @@ msgstr "Girás y arrojás al %s con tu Tirada de Balista" msgid " spins and hurls %s away with a Ballista Throw" msgstr " gira y arroja al %s para un lado con su Tirada de Balista" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "Agua Fluyente" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "Desviás el ataque del %s y contratacás con un movimiento fluido" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" -" desvia el ataque del %s y contrataca con un movimiento fluido" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "Corte Desarmador" @@ -279481,6 +286212,18 @@ msgstr "" "tardar décadas en alcanzar su madurez, así que no tiene mucho sentido " "esperarlo." +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "manzano" @@ -283590,10 +290333,10 @@ msgstr "" " decorado con un atractivo abismo oceánico azul celeste." #: lang/json/terrain_from_json.py -msgid "Window with metal grate" -msgstr "Ventana con reja de metal" +msgid "window with metal grate" +msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " @@ -283602,7 +290345,7 @@ msgstr "" "Esta ventana tiene una reja hecha con barras de metal, de gran durabilidad y" " que pueden soportar los embistes de cualquier enemigo." -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " @@ -283612,7 +290355,7 @@ msgstr "" " de gran durabilidad y que pueden soportar los embistes de cualquier " "enemigo." -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -283623,25 +290366,25 @@ msgstr "" "enemigo." #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" -msgstr "Ventana de vidrio simple vidriado" +msgid "single glazed glass window" +msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "Es una lámina gigante de vidrio insertada en un marco de ventana." #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" -msgstr "Ventana abierta de vidriado simple" +msgid "open single glazed glass window" +msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" -msgstr "Ventana de vidriado simple con cortina" +msgid "single glazed glass window with a curtain" +msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " @@ -283650,7 +290393,7 @@ msgstr "" "Es una ventana vidriada con cortinas muy elegantes en la parte de adentro " "que están cerradas para bloquear la visibilidad y la luz." -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -283660,10 +290403,10 @@ msgstr "" "que pueden cerrarse para bloquear la visibilidad y la luz." #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" -msgstr "Ventana de vidriado simple reforzado" +msgid "reinforced single glazed glass window" +msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" @@ -283671,14 +290414,14 @@ msgstr "" "vidriada." #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" -msgstr "Ventana abierta de vidriado simple reforzado" +msgid "open reinforced single glazed glass window" +msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" -msgstr "Ventana de vidriado simple reforzado con cortina" +msgid "reinforced single glazed glass window with a curtain" +msgstr "ventana de vidriado simple reforzado con cortina" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " @@ -283687,12 +290430,7 @@ msgstr "" "Es una ventana con cortinas muy elegantes en la parte de adentro que están " "cerradas para bloquear la visibilidad y la luz." -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "ventana de vidriado simple reforzado con cortina" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -283702,25 +290440,25 @@ msgstr "" "que pueden cerrarse para bloquear la visibilidad y la luz." #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" -msgstr "Ventana de vidriado doble" +msgid "double glazed glass window" +msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "Son dos láminas gigantes de vidrio insertada en un marco de ventana." #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" -msgstr "Ventana abierta de vidriado doble" +msgid "open double glazed glass window" +msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" -msgstr "Ventana de vidriado doble con cortina" +msgid "double glazed glass window with a curtain" +msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " @@ -283729,8 +290467,8 @@ msgstr "" "Es una ventana de vidriado doble con cortinas muy elegantes en la parte de " "adentro que están cerradas para bloquear la visibilidad y la luz." -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -283740,10 +290478,10 @@ msgstr "" "adentro que pueden cerrarse para bloquear la visibilidad y la luz." #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" -msgstr "Ventana de vidriado doble reforzado" +msgid "reinforced double glazed glass window" +msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -283753,10 +290491,10 @@ msgstr "" "seguridad, la capa exterior es de vidrio reforzado." #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" -msgstr "Ventana abierta de vidriado doble reforzado" +msgid "open reinforced double glazed glass window" +msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -283766,31 +290504,31 @@ msgstr "" "insertada en un marco de ventana." #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" -msgstr "Ventana de vidriado doble reforzado con cortina" +msgid "reinforced double glazed glass window with a curtain" +msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" -msgstr "Ventana de vidriado triple" +msgid "triple glazed glass window" +msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "Son tres láminas gigantes de vidrio insertada en un marco de ventana." -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" "Son tres láminas gigantes de vidrio insertadas en un marco de ventana." #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" -msgstr "Ventana de vidriado triple con cortina" +msgid "triple glazed glass window with a curtain" +msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " @@ -283799,10 +290537,8 @@ msgstr "" "Es una ventana de vidriado triple con cortinas muy elegantes en la parte de " "adentro que están cerradas para bloquear la visibilidad y la luz." -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -283812,14 +290548,10 @@ msgstr "" "adentro que pueden cerrarse para bloquear la visibilidad y la luz." #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "Ventana de vidrio de triple hoja con cortina" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" -msgstr "Ventana de vidrio reforzado de triple hoja" +msgid "reinforced triple glazed glass window" +msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " @@ -283828,7 +290560,7 @@ msgstr "" "Son tres láminas de vidrio insertadas como si fuera una lámina de vidrio " "reforzado en un marco de ventana." -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -283838,37 +290570,29 @@ msgstr "" "vidrio reforzado en un marco de ventana." #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" -msgstr "Ventana de vidriado triple reforzado con cortina" - -#: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" -msgstr "Ventana de vidrio de triple hoja reforzado con cortina" - -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "Ventana de vidriado triple reforzado Con cortina" +msgid "reinforced triple glazed glass window with a curtain" +msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "Ventana de vidriado cuádruple" +msgid "quadruple glazed glass window" +msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" "Son cuatro láminas gigantes de vidrio insertada en un marco de ventana." -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "Es una ventana abierta de vidriado cuádruple." #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" -msgstr "Ventana de vidriado cuádruple con cortina" +msgid "quadruple glazed glass window with a curtain" +msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " @@ -283877,8 +290601,7 @@ msgstr "" "Es una ventana de vidriado cuádruple con cortinas muy elegantes en la parte " "de adentro que están cerradas para bloquear la visibilidad y la luz." -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -283888,14 +290611,10 @@ msgstr "" "de adentro que pueden cerrarse para bloquear la visibilidad y la luz." #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "Ventana de vidriado cuádruple Con cortina" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" -msgstr "Ventana de vidriado cuádruple reforzado" +msgid "reinforced quadruple glazed glass window" +msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -283918,12 +290637,7 @@ msgstr "" " la parte de adentro que están cerradas para bloquear la visibilidad y la " "luz." -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "Ventana de vidriado cuádruple reforzado con cortina" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -283934,14 +290648,10 @@ msgstr "" "luz." #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "Ventana de vidriado cuádruple reforzado Con cortina" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" -msgstr "Ventana plástica" +msgid "plastic window" +msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " @@ -283950,7 +290660,7 @@ msgstr "" "Es una ventana improvisada que consiste en una lámina de plástico rígido y " "translúcido sujeta en un marco de madera. Zafa." -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -283960,10 +290670,10 @@ msgstr "" "rígido y translúcido sujeta en un marco de madera. Zafa." #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" -msgstr "Ventana plástica con cortina" +msgid "plastic window with a curtain" +msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -283974,7 +290684,7 @@ msgstr "" "plástico rígido y translúcido sujeta en un marco de madera. Tiene láminas " "cruzadas para bloquear la luz. Zafa." -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -283986,10 +290696,10 @@ msgstr "" " atadas para cuando se necesita bloquear la luz. Zafa." #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" -msgstr "Ventana plástica con cortinas abiertas" +msgid "plastic window with open curtains" +msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -284001,10 +290711,10 @@ msgstr "" "unas láminas atadas para cuando se necesita bloquear la luz. Zafa." #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" -msgstr "Ventana plástica reforzada" +msgid "reinforced plastic window" +msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " @@ -284013,11 +290723,7 @@ msgstr "" "Es una ventana improvisada que consiste en tres láminas de plástico rígido y" " translúcido sujetas en un marco de madera. Zafa." -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "Ventana Plástica reforzada" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -284027,10 +290733,10 @@ msgstr "" "rígido y translúcido sujetas en un marco de madera. Zafa." #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" -msgstr "Ventana plástica reforzada con cortina" +msgid "reinforced plastic window with a curtain" +msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -284042,10 +290748,10 @@ msgstr "" " láminas cruzadas para bloquear la luz. Zafa." #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" -msgstr "Ventana plástica reforzada con cortina abierta" +msgid "reinforced plastic window with an open curtain" +msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -284056,7 +290762,7 @@ msgstr "" "láminas de plástico rígido y translúcido sujeta en un marco de madera, con " "unas láminas atadas para cuando se necesita bloquear la luz. Zafa." -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -284069,28 +290775,28 @@ msgstr "" " luz. Zafa." #: lang/json/terrain_from_json.py -msgid "Skylight frame" -msgstr "Armazón de claraboya" +msgid "skylight frame" +msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "Es la armazón de madera de una claraboya." #: lang/json/terrain_from_json.py -msgid "Tempered glass window" -msgstr "Ventana de vidriado templado" +msgid "tempered glass window" +msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" "Es una lámina gigante de vidrio templado insertada en un marco de ventana." #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" -msgstr "Ventana abierta de vidriado templado" +msgid "open tempered glass window" +msgstr "" #: lang/json/terrain_from_json.py msgid "tempered glass window with a curtain" @@ -284105,11 +290811,7 @@ msgstr "" "Es una ventana templada con cortinas muy elegantes en la parte de adentro " "que están cerradas para bloquear la visibilidad y la luz." -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "Ventana de vidrio templado con cortina" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -286786,6 +293488,75 @@ msgstr "" "aunque es menos eficiente. Es mejor en alimentación en relación a su peso " "que un motor tradicional, pero consume más combustible." +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " @@ -286794,6 +293565,24 @@ msgstr "" "Es un motor de vapor de combustión externa, con ciclo cerrado. Quema carbón " "o carbón vegetal de la carbonera del vehículo para producir vapor." +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py @@ -286801,6 +293590,26 @@ msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" "Es una puerta. Tiene ventana para poder ver para afuera aunque esté cerrada." +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "puerta opaca" @@ -287269,6 +294078,57 @@ msgstr "" msgid "An electric motor." msgstr "Es un motor eléctrico." +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -287823,6 +294683,15 @@ msgstr "Es un pasillo." msgid "wooden aisle" msgstr "pasillo de madera" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -287981,6 +294850,10 @@ msgstr "caja plegable de madera" msgid "wood table" msgstr "mesa de madera" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "casco de madera de bote" @@ -288054,6 +294927,10 @@ msgstr "Es una estructura que contiene controles y luces." msgid "vehicle-mounted heater" msgstr "calentador montado en vehículo" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "refrigerador montado en vehículo" @@ -288175,6 +295052,12 @@ msgstr "" "Es una turbina de viento grande con patas para estabilizarla. Causará un " "arrastre mayor en el vehículo." +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -289525,8 +296408,8 @@ msgstr "Cansancio" msgid "Fatig" msgstr "Fatig" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "Fatiga" @@ -292208,7 +299091,7 @@ msgstr "Solamente podés poner líquidos en el recipiente de destino." #: src/advanced_inv.cpp src/pickup.cpp msgid "Spilt liquid cannot be picked back up. Try mopping it instead." msgstr "" -"El líquido derramado no puede volver a agarrarse. Tratá pasando un trapo." +"El líquido derramado no puede volver a agarrarse. Probá pasando un trapo." #: src/advanced_inv.cpp msgid "Destination area is full. Remove some items first." @@ -292387,6 +299270,18 @@ msgstr "Propiedades" msgid "Coverage:" msgstr "Cobertura:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "Incomodidad:" @@ -292478,11 +299373,10 @@ msgstr "Ordenar Ropa" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" -"Apretá [%s] para ver la ayuda. Apretá " -"[%s] para cambiar los atajos de teclado." #: src/armor_layers.cpp msgid "(Innermost)" @@ -292493,6 +299387,12 @@ msgstr "(Debajo)" msgid "Storage (%s)" msgstr "Almacenamiento (%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(Sobre)" @@ -296879,11 +303779,6 @@ msgstr "No esperás ningún efecto usando esto." msgid "No limb would benefit from it." msgstr "Ningún miembro será beneficiado con esto." -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "Cancelar" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "Te cuesta estar parado." @@ -297199,6 +304094,14 @@ msgstr "Terreno de Mina" msgid "Designate an area to mine." msgstr "Designar un área para hacer una mina." +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "Zona de Desarmadero de Vehículo" @@ -299514,10 +306417,6 @@ msgstr "habilidad principal usada para fabricar" msgid "any skill used to craft" msgstr "cualquier habilidad usada para fabricar" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "cocinar" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "calidad necesaria para fabricar" @@ -300077,6 +306976,14 @@ msgstr "Imprimir información de PNJ mágico en consola" msgid "Test weather" msgstr "Probar clima" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "Probar lista extra de mapa" @@ -300509,6 +307416,11 @@ msgstr "Sed: %d %s" msgid "Fatigue: %d %s" msgstr "Cansancio: %d %s" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "kCal almacenadas: " @@ -300597,6 +307509,11 @@ msgstr "Poner cansancio en - Actual: %d" msgid "Set sleep deprivation to? Currently: %d" msgstr "Poner privación de sueño en - Actual: %d" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -301362,7 +308279,7 @@ msgstr "¿Cuánto daño te querés causar? pv: %s" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "Agregar duración de sangrado en minutos, que es la intensidad:" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "Este binario no está compilado con soporte para gráficos." @@ -301386,15 +308303,6 @@ msgstr "" "¿Querés salir sin guardar? ¡Puede causar problemas como duplicar o " "desaparecer objetos y vehículos!" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "Captura de pantalla guardada en: %s" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "Ocurrió un error cuando se intentaba guardar la captura de pantalla." - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "Informe escrito en debug.log" @@ -305064,6 +311972,10 @@ msgstr "Comerciar" msgid "You swap places with %s." msgstr "Intercambiás el lugar con %s." +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -305357,6 +312269,15 @@ msgstr "No podés viajar hasta ahí." msgid "Nickname:" msgstr "Sobrenombre:" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "Captura de pantalla guardada en: %s" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "Ocurrió un error cuando se intentaba guardar la captura de pantalla." + #: src/game.cpp src/init.cpp msgid "Items" msgstr "Objetos" @@ -307766,10 +314687,6 @@ msgstr "No podés dormir mientras estás montando." msgid "Are you sure you want to sleep?" msgstr "¿Estás seguro que querés dormir?" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "Sí." - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "Sí, y guardar el juego antes de dormir." @@ -307930,6 +314847,14 @@ msgstr "" "Desarmar automáticamente cualquier cosa que esté en la zona de desmontaje - " "agarrar herramientas automáticamente." +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -308294,10 +315219,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "¿Qué querés hacer con el/a %s?" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "Combustible biónico con eso" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "Consumirlo" @@ -308838,16 +315759,6 @@ msgstr "Intentás abrir la cerradura del/a %1$s usando tu %2$s…" msgid "This bulletin board is not inside a camp" msgstr "Este tablón de anuncios no está dentro del campamento" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" -"Esta pared es perfectamente vertical. Lo raro, tiene agujeros retorcidos,\n" -"tan profundos en la piedra sólida hasta donde podés ver. Los agujeros\n" -"tienen forma humanoide, pero con miembros largos, retorcidos y hinchados." - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "¿Querés sacar el ojo petrificado del pedestal?" @@ -312358,6 +319269,21 @@ msgstr "Cuando está lleno:" msgid "%s:" msgstr "%s:" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "Torso:" @@ -315532,13 +322458,15 @@ msgid "BEES!" msgstr "ABEJAS!" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "Poner el temporizador en (0 para cancelar)" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "Pusiste el temporizador en %d." +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -316298,9 +323226,8 @@ msgid "Your vision is fine already." msgstr "Tu visión ya es correcta." #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" -msgstr "Escuchás \"%s\"" +msgid "You press a button on the doll to make it talk." +msgstr "" #: src/iuse.cpp msgid "You need a mechanics skill of 2 to use this repair kit." @@ -316523,38 +323450,6 @@ msgstr "Desencriptar tarjeta de memoria (poca habilidad)" msgid "Wasted time. These pictures do not provoke your senses." msgstr "Una pérdida de tiempo. Estas fotos no te provocan nada." -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "Vos tenías un perro parecido a este…" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "¡Ja ja! Una foto divertida de un gato." - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "Excelentes imágenes de la naturaleza." - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "Foto de comida… ¡te cruje la panza!" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "Algunas fotos muy interesantes de viajes." - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "Fotos del concierto de una banda conocida." - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "Fotos de la lujosa casa de alguien." - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "Sentís nostalgia mientras te quedás mirando la foto." - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -317833,88 +324728,31 @@ msgstr "¡Cruz!" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "¿Querés jugar un juego con el %s?" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "Empezás a jugar." - -#: src/iuse.cpp -msgid "It is certain." -msgstr "Es innegable." - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "Decididamente, es así." - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "Sin lugar a dudas." - -#: src/iuse.cpp -msgid "Yes - definitely." -msgstr "Sí - definitivamente." - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "Podías confiar en eso." - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "Como yo lo veo, sí." - -#: src/iuse.cpp -msgid "Most likely." -msgstr "Lo más probable." - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "Buena perspectiva." - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "Las señales dicen que sí." - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "La respuesta es difusa, probá otra vez." - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "Preguntá otra vez después." - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "Mejor no decirte ahora." - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "No puedo predecirlo ahora." - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "Concentrate y preguntá otra vez." +msgid "Play the %s with your friends?" +msgstr "" #: src/iuse.cpp -msgid "Don't count on it." -msgstr "No cuentes con eso." +#, c-format +msgid "Play the %s with your friend?" +msgstr "" #: src/iuse.cpp -msgid "My reply is no." -msgstr "Mi respuesta es no." +#, c-format +msgid "You and your %d friends start playing." +msgstr "" #: src/iuse.cpp -msgid "My sources say no." -msgstr "Mis fuentes dicen que no." +msgid "You and your friend start playing." +msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." -msgstr "La perspectiva no es muy buena." +msgid "You start playing." +msgstr "Empezás a jugar." #: src/iuse.cpp -msgid "Very doubtful." -msgstr "Muy dudoso." +#, c-format +msgid "Play a game with the %s?" +msgstr "¿Querés jugar un juego con el %s?" #: src/iuse.cpp #, c-format @@ -320805,8 +327643,20 @@ msgid "%s: %d" msgstr "%s: %d" #: src/martialarts.cpp -msgid "Requires: " -msgstr "Necesita: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " +msgstr "" #: src/martialarts.cpp msgid "activate" @@ -326004,6 +332854,11 @@ msgstr "Sacar montura del %s" msgid "Manage your friendship with %s" msgstr "Administrar tu amistad con %s" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "Hablar con %s" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -326888,21 +333743,6 @@ msgstr "" "¡Te concentrás y con una agradable sensación de división, parís una nueva " "cría de slime!" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "¡guau! ¡sos igual a mí! ¡tenemos que cuidarnos entre nosotros!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "¡vamos, yo grande, vayamos!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "¡somos un equipo, hagámoslo!" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "Solo podés hacer eso en un área arbolada." @@ -327178,11 +334018,20 @@ msgstr "Examinando" msgid "%s to activate mutation, " msgstr "%s para activar la mutación, " +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "%s para reasignar la invlet, " +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -328943,11 +335792,6 @@ msgstr "¡No podés hablar sin una cara!" msgid "What do you want to do?" msgstr "¿Qué querés hacer?" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "Hablar con %s" - #: src/npctalk.cpp msgid "Talk to…" msgstr "Hablar con…" @@ -329756,6 +336600,15 @@ msgstr "" "Si está activado, automáticamente romperás terrenos o paredes cuando te " "muevas hacia ahí con un pico o martillo neumático en la mano." +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "Auto recolectar" @@ -329763,17 +336616,19 @@ msgstr "Auto recolectar" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" -"La acción de 'Auto recolectar' está activada. Arbustos: Solo recolectar de " -"arbustos. - Árboles: Solo recolectar de árboles. - Todo: Recolectar de " -"arbustos, árboles y todo lo demás incluyendo flores, juncos, etc." #: src/options.cpp msgid "Bushes" msgstr "Arbustos" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "Todo" @@ -332455,20 +339310,6 @@ msgstr "Zona:" msgid "# Unexplored" msgstr "# Sin explorar" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "oter: %s" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "oter_type: %s" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "no se establecieron argumentos todavía" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "Distancia a la misión activa:" @@ -332826,6 +339667,11 @@ msgstr "Casi anochecer" msgid "Night" msgstr "Noche" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s, día %d " + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "???" @@ -332874,6 +339720,10 @@ msgstr "¡Mucho frío!" msgid "Freezing!" msgstr "¡Helando!" +#: src/panels.cpp +msgid "SAFE" +msgstr "SEGURO" + #: src/panels.cpp msgid "On" msgstr "Act." @@ -335366,6 +342216,16 @@ msgstr "[%s] Ocultar líneas de fuego" msgid "[%s] Show lines of fire" msgstr "[%s] Mostrar líneas de fuego" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -339824,6 +346684,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "Purificás el contenido del/a %2$s del/a %1$s" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "Lunes" diff --git a/lang/po/es_ES.po b/lang/po/es_ES.po index 215dca507010a..d82ee7f13a41b 100644 --- a/lang/po/es_ES.po +++ b/lang/po/es_ES.po @@ -1,7 +1,6 @@ # # Translators: # Da WhatTheFox , 2018 -# Víctor Arias , 2018 # lokatronao , 2019 # Nelson Alvarez , 2020 # Carlos Albizo , 2020 @@ -14,17 +13,17 @@ # Un Gen , 2021 # Brett Dong , 2021 # OneThousand Resets , 2021 +# Toni López , 2021 # Miguel de Dios Matias , 2021 # paco anonimo , 2021 -# Toni López , 2021 # msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" -"Last-Translator: Toni López , 2021\n" +"Last-Translator: paco anonimo , 2021\n" "Language-Team: Spanish (Spain) (https://www.transifex.com/cataclysm-dda-translators/teams/2217/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,7 +37,7 @@ msgid_plural "battery" msgstr[0] "batería" msgstr[1] "baterías" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -53,7 +52,7 @@ msgid_plural "butane" msgstr[0] "butano" msgstr[1] "butano" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Liquido común usado en encendedores." @@ -64,7 +63,7 @@ msgid_plural "aerosol paint" msgstr[0] "pintura en aerosol" msgstr[1] "pintura en aerosol" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -79,7 +78,7 @@ msgid_plural "permanent ink" msgstr[0] "tinta permanente." msgstr[1] "tinta permanente" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -94,7 +93,7 @@ msgid_plural "candle wax" msgstr[0] "cera de vela" msgstr[1] "cera de vela" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "Una sustancia sólida inflamable utilizada para hacer velas." @@ -105,7 +104,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "pirotécnico de bengala" msgstr[1] "pirotécnico de bengala" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "Un químico pirotécnico utilizado en bengalas." @@ -131,7 +130,7 @@ msgid_plural "oxygen" msgstr[0] "oxígeno" msgstr[1] "oxígeno" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Oxigeno medico comprimido." @@ -142,7 +141,7 @@ msgid_plural "aluminum foil" msgstr[0] "papel de aluminio" msgstr[1] "papel de aluminio" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -168,7 +167,7 @@ msgid_plural "thread" msgstr[0] "hilo" msgstr[1] "hilos" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -205,7 +204,7 @@ msgid_plural "yarn" msgstr[0] "hilo de lana" msgstr[1] "hilos de lana" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Hilo de lana, podría ser utilizado para hacer ropa con punto de lana." @@ -227,7 +226,7 @@ msgid_plural "duct tape" msgstr[0] "cinta americana" msgstr[1] "cintas americanas" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -296,8 +295,8 @@ msgid_plural "plutonium slurry" msgstr[0] "lodo de plutonio" msgstr[1] "lodo de plutonio" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -365,7 +364,7 @@ msgid_plural "bearings" msgstr[0] "rodamientos" msgstr[1] "rodamientos" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "Una caja de rodamientos, útiles como munición para tirachinas." @@ -413,7 +412,7 @@ msgid_plural "120mm HEAT" msgstr[0] "120mm HEAT" msgstr[1] "120mm HEAT" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -442,7 +441,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "pólvora sin humo mezclada" msgstr[1] "pólvora sin humo mezclada" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -460,7 +459,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "pólvora sin humo para escopeta" msgstr[1] "pólvora sin humo para escopeta" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -472,7 +471,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "pólvora sin humo para pistola" msgstr[1] "pólvora sin humo para pistola" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -484,7 +483,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "pólvora sin humo para magnum" msgstr[1] "pólvora sin humo para magnum" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -498,7 +497,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "pólvora sin humo para rifle" msgstr[1] "pólvora sin humo para rifle" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "Pólvora para armas de fuego diseñada para usar en munición de rifle." @@ -509,7 +508,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "polvora sobrecargada de rifle sin humo" msgstr[1] "polvora sobrecargada de rifle sin humo" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -522,7 +521,7 @@ msgid_plural "artillery propellant" msgstr[0] "propelente de artillería" msgstr[1] "propelente de artillería" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -537,7 +536,7 @@ msgid_plural "oxidizer powder" msgstr[0] "polvo oxidante" msgstr[1] "polvo oxidante" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Oxidante químico en polvo volátil." @@ -548,7 +547,7 @@ msgid_plural "lye powder" msgstr[0] "lejia en polvo" msgstr[1] "lejia en polvo" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Sosa cáustica en polvo." @@ -640,7 +639,7 @@ msgid_plural "copper" msgstr[0] "cobre" msgstr[1] "cobre" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -655,7 +654,7 @@ msgid_plural "medical tape" msgstr[0] "esparadrapo" msgstr[1] "esparadrapo" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Un rollo de esparadrapo, parecido a la cinta americana." @@ -667,7 +666,7 @@ msgstr[0] "munición de referencia" msgstr[1] "munición de referencia" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "SI ESTAS VIENDO ESTO, ES UN BUG." @@ -678,7 +677,7 @@ msgid_plural "charcoal" msgstr[0] "carbón vegetal" msgstr[1] "carbón vegetal" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -696,7 +695,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "premezcla de carburo de calcio" msgstr[1] "premezcla de carburo de calcio" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -726,7 +725,7 @@ msgid_plural "albuterol" msgstr[0] "albuterol" msgstr[1] "albuteroles" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -831,7 +830,7 @@ msgid_plural "nicotine liquid" msgstr[0] "nicotina líquida" msgstr[1] "nicotina líquida" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -846,7 +845,7 @@ msgid_plural "fish bait" msgstr[0] "cebo de pesca" msgstr[1] "cebos de pesca" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Un cebo utilizado en trampas para atraer peces." @@ -909,7 +908,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "carbón vegetal incompleto" msgstr[1] "carbón vegetal incompleto" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -924,7 +923,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "carburo de calcio sin terminar" msgstr[1] "carburo de calcio sin terminar" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -950,7 +949,7 @@ msgid_plural "nitrox" msgstr[0] "nitrox" msgstr[1] "nitrox" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "Mezcla de oxígeno y nitrógeno en proporciones adecuadas para bucear." @@ -961,7 +960,7 @@ msgid_plural "extinguishing agent" msgstr[0] "agente extintor" msgstr[1] "agente extintor" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Solución química seca eficaz en la extinción de incendios." @@ -972,7 +971,7 @@ msgid_plural "tinder" msgstr[0] "yesca" msgstr[1] "yesca" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -1006,7 +1005,7 @@ msgid_plural "bronze" msgstr[0] "bronce" msgstr[1] "bronce" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -1019,7 +1018,7 @@ msgid_plural "glowstick juice" msgstr[0] "zumo de barra luminosa" msgstr[1] "zumo de barra luminosa" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -1033,7 +1032,7 @@ msgid_plural "graphite" msgstr[0] "grafito" msgstr[1] "grafito" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1051,7 +1050,7 @@ msgid_plural "black pen ink" msgstr[0] "tinta de bolígrafo negro" msgstr[1] "tinta de bolígrafo negro" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1066,7 +1065,7 @@ msgid_plural "blue pen ink" msgstr[0] "tinta de bolígrafo azul" msgstr[1] "tinta de bolígrafo azul" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1082,7 +1081,7 @@ msgid_plural "green pen ink" msgstr[0] "tinta de bolígrafo verde" msgstr[1] "tinta de bolígrafo verde" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1097,7 +1096,7 @@ msgid_plural "red pen ink" msgstr[0] "tinta de bolígrafo rojo" msgstr[1] "tinta de bolígrafo rojo" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1129,7 +1128,7 @@ msgid_plural "sulfur" msgstr[0] "azúfre" msgstr[1] "azúfre" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1160,7 +1159,7 @@ msgid_plural "cement" msgstr[0] "cemento" msgstr[1] "cemento" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1177,7 +1176,7 @@ msgid_plural "gravel" msgstr[0] "gravilla" msgstr[1] "gravilla" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1190,7 +1189,7 @@ msgid_plural "limestone" msgstr[0] "caliza" msgstr[1] "caliza" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1207,7 +1206,7 @@ msgid_plural "quicklime" msgstr[0] "cal" msgstr[1] "cal" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1227,7 +1226,7 @@ msgid_plural "sand" msgstr[0] "arena" msgstr[1] "arena" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1242,7 +1241,7 @@ msgid_plural "soil" msgstr[0] "tierra" msgstr[1] "tierra" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1257,7 +1256,7 @@ msgid_plural "aluminum powder" msgstr[0] "polvo de aluminio" msgstr[1] "polvo de aluminio" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1277,7 +1276,7 @@ msgid_plural "zinc powder" msgstr[0] "polvo de cinc" msgstr[1] "polvo de cinc" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1296,7 +1295,7 @@ msgid_plural "zinc oxide" msgstr[0] "óxido de zinc" msgstr[1] "óxido de zinc" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1311,7 +1310,7 @@ msgid_plural "manganese dioxide" msgstr[0] "dióxido de manganeso" msgstr[1] "dióxido de manganeso" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1328,7 +1327,7 @@ msgid_plural "potassium chloride" msgstr[0] "cloruro de potasio" msgstr[1] "cloruro de potasio" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1347,7 +1346,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "hidróxido de potasio" msgstr[1] "hidróxido de potasio" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1365,7 +1364,7 @@ msgid_plural "acetone" msgstr[0] "acetona" msgstr[1] "acetona" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1382,7 +1381,7 @@ msgid_plural "chromium oxide" msgstr[0] "óxido de cromo" msgstr[1] "óxido de cromo" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1404,7 +1403,7 @@ msgid_plural "calcium carbide" msgstr[0] "carburo de calcio" msgstr[1] "carburo de calcio" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1425,7 +1424,7 @@ msgid_plural "hexamine" msgstr[0] "hexamina" msgstr[1] "hexamina" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1446,7 +1445,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "agua oxigenada (concentrada)" msgstr[1] "agua oxigenada (concentrada)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1466,7 +1465,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "nitrato de amonio" msgstr[1] "nitrato de amonio" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1485,7 +1484,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "bolitas de nit. de amonio" msgstr[1] "bolitas de nit. de amonio" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1504,7 +1503,7 @@ msgid_plural "saltpeter" msgstr[0] "salitre" msgstr[1] "salitre" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1521,7 +1520,7 @@ msgid_plural "niter" msgstr[0] "nitro" msgstr[1] "nitro" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1536,7 +1535,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "sulfato de aluminio" msgstr[1] "sulfato de aluminio" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1560,7 +1559,7 @@ msgid_plural "acetic acid" msgstr[0] "ácido acético" msgstr[1] "ácido acético" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1579,7 +1578,7 @@ msgid_plural "formaldehyde" msgstr[0] "formaldehído" msgstr[1] "formaldehido" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1598,7 +1597,7 @@ msgid_plural "thermite" msgstr[0] "termita" msgstr[1] "termita" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1617,7 +1616,7 @@ msgid_plural "ANFO" msgstr[0] "NAFO" msgstr[1] "NAFO" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1636,7 +1635,7 @@ msgid_plural "black gunpowder" msgstr[0] "pólvora negra" msgstr[1] "pólvora negra" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1655,7 +1654,7 @@ msgid_plural "match head powder" msgstr[0] "polvo de cabeza de cerillas" msgstr[1] "polvo de cabeza de cerillas" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1673,7 +1672,7 @@ msgid_plural "RDX" msgstr[0] "RDX" msgstr[1] "RDX" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1690,7 +1689,7 @@ msgid_plural "composition b" msgstr[0] "composición B" msgstr[1] "composición B" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1708,7 +1707,7 @@ msgid_plural "HMTD" msgstr[0] "HMTD" msgstr[1] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1726,7 +1725,7 @@ msgid_plural "APEX" msgstr[0] "APEX" msgstr[1] "APEX" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1744,7 +1743,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "combustible de cohetes improvisado" msgstr[1] "combustible de cohetes improvisado" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1759,7 +1758,7 @@ msgid_plural "detergent" msgstr[0] "detergente" msgstr[1] "detergentes" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "Un detergente en polvo muy popular pre-Cataclismo." @@ -1770,7 +1769,7 @@ msgid_plural "soap flakes" msgstr[0] "escamas de jabón" msgstr[1] "escamas de jabón" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "Una barra de jabón cortada en escamas adecuado para usar en lavadora." @@ -1840,7 +1839,7 @@ msgid_plural "concentrated venom" msgstr[0] "veneno concentrado" msgstr[1] "veneno concentrado" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1860,7 +1859,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "concentrado paralizante" msgstr[1] "concentrado paralizante" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1880,7 +1879,7 @@ msgid_plural "rocuronium" msgstr[0] "rocuronio" msgstr[1] "rocuronio" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1897,7 +1896,7 @@ msgid_plural "red phosphorous" msgstr[0] "fósforo rojo" msgstr[1] "fósforo rojo" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1912,7 +1911,7 @@ msgid_plural "iodine crystal" msgstr[0] "cristales de yodo" msgstr[1] "cristales de yodo" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1927,7 +1926,7 @@ msgid_plural "ethanol" msgstr[0] "etanol" msgstr[1] "etanol" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1961,7 +1960,7 @@ msgid_plural "methanol" msgstr[0] "metanol" msgstr[1] "metanol" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1977,7 +1976,7 @@ msgid_plural "diesel" msgstr[0] "gasoil" msgstr[1] "gasoil" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1991,7 +1990,7 @@ msgid_plural "JP8 fuel" msgstr[0] "combustible JP8" msgstr[1] "combustible JP8" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -2007,7 +2006,7 @@ msgid_plural "avgas fuel" msgstr[0] "combustible avgas" msgstr[1] "combustible avgas" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -2020,7 +2019,7 @@ msgid_plural "biodiesel" msgstr[0] "biodiésel" msgstr[1] "biodiésel" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -2036,7 +2035,7 @@ msgid_plural "gasoline" msgstr[0] "gasolina" msgstr[1] "gasolina" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -2051,7 +2050,7 @@ msgid_plural "lamp oil" msgstr[0] "aceite de lámpara" msgstr[1] "aceite de lámpara" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "" @@ -2063,7 +2062,7 @@ msgid_plural "motor oil" msgstr[0] "aceite de motor" msgstr[1] "aceite de motor" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "Un aceite hecho para su uso en motores de vehículos." @@ -2074,7 +2073,7 @@ msgid_plural "napalm" msgstr[0] "napalm" msgstr[1] "napalm" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2091,7 +2090,7 @@ msgid_plural "gelled gasoline" msgstr[0] "gasolina gelificada" msgstr[1] "gasolina gelificada" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2108,7 +2107,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "combustible para lanzallamas" msgstr[1] "combustible para lanzallamas" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2154,7 +2153,7 @@ msgid_plural "shrapnel" msgstr[0] "metralla" msgstr[1] "metralla" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "Un fragmento retorcido de metal dentado." @@ -2212,7 +2211,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "10mm Auto FMJ" msgstr[1] "10mm Auto FMJ" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2241,7 +2240,7 @@ msgid_plural "H&K 12mm" msgstr[0] "H&K 12mm" msgstr[1] "H&K 12mm" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2288,7 +2287,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "20x66mm postas, hecho a mano" msgstr[1] "20x66mm postas, hechos a mano" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2318,7 +2317,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "20x66mm explosivo" msgstr[1] "20x66mm explosivo" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2369,7 +2368,7 @@ msgid_plural "20x66mm frag" msgstr[0] "20x66mm frag" msgstr[1] "20x66mm frag" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2386,7 +2385,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "20x66mm incendiario" msgstr[1] "20x66mm incendiario" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2403,7 +2402,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "20x66mm postas" msgstr[1] "20x66mm postas" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2437,7 +2436,7 @@ msgid_plural ".22 CB" msgstr[0] ".22 CB" msgstr[1] ".22 CB" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2454,7 +2453,7 @@ msgid_plural ".22 FMJ" msgstr[0] ".22 FMJ" msgstr[1] ".22 FMJ" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2472,7 +2471,7 @@ msgid_plural ".22 LR" msgstr[0] ".22 LR" msgstr[1] ".22 LR" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2490,7 +2489,7 @@ msgid_plural ".22 rat-shot" msgstr[0] ".22 rat-shot" msgstr[1] ".22 rat-shot" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2532,7 +2531,7 @@ msgid_plural ".223 Remington" msgstr[0] ".223 Remington" msgstr[1] ".223 Remington" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2554,7 +2553,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "5.56 NATO Mk 262" msgstr[1] "5.56 NATO Mk 262" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2576,7 +2575,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "5.56 NATO Mk 318" msgstr[1] "5.56 NATO Mk 318" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2600,7 +2599,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "5.56 NATO M855" msgstr[1] "5.56 NATO M855" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2625,7 +2624,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "5.56 NATO M855A1" msgstr[1] "5.56 NATO M855A1" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2650,7 +2649,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "5.56 NATO trazadora" msgstr[1] "5.56 NATO trazadora" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2701,7 +2700,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] ".270 Winchester JSP" msgstr[1] ".270 Winchester JSP" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2757,7 +2756,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] ".300 Winchester Magnum, recargado" msgstr[1] ".300 Winchester Magnum, recargado" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2774,7 +2773,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] ".30-06 Springfield" msgstr[1] ".30-06 Springfield" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2791,7 +2790,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] ".30-06 M14A1 trazadora" msgstr[1] ".30-06 M14A1 trazadora" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2808,7 +2807,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] ".30-06 M2 AP" msgstr[1] ".30-06 M2 AP" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2926,7 +2925,7 @@ msgid_plural ".308 Winchester" msgstr[0] ".308 Winchester" msgstr[1] ".308 Winchester" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2943,7 +2942,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "7.62x51mm M80" msgstr[1] "7.62x51mm M80" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2960,7 +2959,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "7,62x51mm NATO trazadora" msgstr[1] "7,62x51mm NATO trazadora" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -3011,7 +3010,7 @@ msgid_plural ".32 ACP" msgstr[0] ".32 ACP" msgstr[1] ".32 ACP" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -3038,7 +3037,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] ".357 Magnum FMJ" msgstr[1] ".357 Magnum FMJ" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -3055,7 +3054,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] ".357 Magnum JHP" msgstr[1] ".357 Magnum JHP" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -3096,7 +3095,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] ".357 SIG FMJ" msgstr[1] ".357 SIG FMJ" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -3111,7 +3110,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] ".357 SIG JHP" msgstr[1] ".357 SIG JHP" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3167,7 +3166,7 @@ msgid_plural ".38 FMJ" msgstr[0] ".38 FMJ" msgstr[1] ".38 FMJ" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3198,7 +3197,7 @@ msgid_plural ".38 Super" msgstr[0] ".38 Super" msgstr[1] ".38 Super" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3243,7 +3242,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] ".380 ACP FMJ" msgstr[1] ".380 ACP FMJ" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3262,7 +3261,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] ".380 ACP JHP" msgstr[1] ".380 ACP JHP" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3281,7 +3280,7 @@ msgid_plural ".380 ACP +P" msgstr[0] ".380 ACP +P" msgstr[1] ".380 ACP +P" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3330,7 +3329,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] ".38 Super FMJ" msgstr[1] ".38 Super FMJ" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3353,7 +3352,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] ".40 S&W FMJ" msgstr[1] ".40 S&W FMJ" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3370,7 +3369,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] ".40 S&W JHP" msgstr[1] ".40 S&W JHP" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3417,7 +3416,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "40x46mm M1006 esponja" msgstr[1] "40x46mm M1006 esponja" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3434,7 +3433,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "40x46mm M433 HEDP" msgstr[1] "40x46mm M433 HEDP" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3452,7 +3451,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "40x46mm m576 postas" msgstr[1] "40x46mm m576 postas" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3470,7 +3469,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "40x46mm M651 gas lacrimógeno" msgstr[1] "40x46mm M651 gas lacrimógeno" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3487,8 +3486,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "40x46mm M118 postas, recargado" msgstr[1] "40x46mm M118 postas, recargado" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3506,8 +3505,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "40x46mm M199 postas, recargado" msgstr[1] "40x46mm M199 postas, recargado" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3562,8 +3561,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "40x46mm M118 flechette, recargado" msgstr[1] "40x46mm M118 flechette, recargado" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3581,8 +3580,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "40x46mm M199 flechette, recargado" msgstr[1] "40x46mm M199 flechette, recargado" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3648,7 +3647,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "40x46mm .22 LR nido de avispas" msgstr[1] "40x46mm .22 LR nido de avispas" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3663,7 +3662,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "40x46mm .410 nido de avispas" msgstr[1] "40x46mm .410 nido de avispas" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3695,7 +3694,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "40x53mm M430A1 HEDP" msgstr[1] "40x53mm M430A1 HEDP" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3712,8 +3711,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "40x53mm postas, recargado" msgstr[1] "40x53mm postas, recargado" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3739,8 +3738,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "40x53mm flechette, recargado" msgstr[1] "40x53mm flechette, recargado" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3773,7 +3772,7 @@ msgid_plural ".410 000 shot" msgstr[0] "cartucho .410 de 000" msgstr[1] "cartuchos .410 de 000" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3791,7 +3790,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] ".44 Magnum FMJ" msgstr[1] ".44 Magnum FMJ" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3863,7 +3862,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] ".45 ACP FMJ" msgstr[1] ".45 ACP FMJ" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3878,7 +3877,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] ".45 ACP JHP" msgstr[1] ".45 ACP JHP" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3895,7 +3894,7 @@ msgid_plural ".45 ACP +P" msgstr[0] ".45 ACP +P" msgstr[1] ".45 ACP +P" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3942,7 +3941,7 @@ msgid_plural ".454 Casull" msgstr[0] ".454 Casull" msgstr[1] ".454 Casull" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3975,7 +3974,7 @@ msgid_plural ".45-70 SP" msgstr[0] ".45-70 SP" msgstr[1] ".45-70 SP" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4009,7 +4008,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] "45-70 LFN cowboy" msgstr[1] "45-70 LFN cowboy" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4027,7 +4026,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] ".45-70 SP, recargado" msgstr[1] ".45-70 SP, recargado" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4063,7 +4062,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] ".45-70 LFN cowboy, recargada" msgstr[1] ".45-70 LFN cowboy, recargada" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4082,7 +4081,7 @@ msgid_plural ".45-70, black powder" msgstr[0] ".45-70, pólvora negra" msgstr[1] ".45-70, pólvora negra" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4101,7 +4100,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] ".45 Colt JHP" msgstr[1] ".45 Colt JHP" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -4133,7 +4132,7 @@ msgid_plural "4.6x30mm" msgstr[0] "4.6x30mm" msgstr[1] "4.6x30mm" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -4150,8 +4149,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "4.6x30mm, pólvora negra" msgstr[1] "4.6x30mm, pólvora negra" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -4177,7 +4176,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] ".460 Rowland HCFN" msgstr[1] ".460 Rowland HCFN" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -4193,7 +4192,7 @@ msgid_plural ".460 Rowland" msgstr[0] ".460 Rowland" msgstr[1] ".460 Rowland" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4227,7 +4226,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] ".460 Rowland FMJ, recargado" msgstr[1] ".460 Rowland FMJ, recargado" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4249,7 +4248,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] ".50 BMG M17 trazadora" msgstr[1] ".50 BMG M17 trazadora" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4266,7 +4265,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] ".50 BMG M33 Ball" msgstr[1] ".50 BMG M33 Ball" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4288,7 +4287,7 @@ msgid_plural ".50 BMG Match" msgstr[0] ".50 BMG Match" msgstr[1] ".50 BMG Match" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4304,7 +4303,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] ".50 BMG M2 AP" msgstr[1] ".50 BMG M2 AP" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4319,7 +4318,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] ".50 BMG Raufoss Mk 211" msgstr[1] ".50 BMG Raufoss Mk 211" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -4346,7 +4345,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] ".50 BMG trazadora, recargada" msgstr[1] ".50 BMG trazadora, recargada" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4363,7 +4362,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] ".50 BMG Match, recargada" msgstr[1] ".50 BMG Match, recargada" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -4385,7 +4384,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] ".50 BMG AP, recargado" msgstr[1] ".50 BMG AP, recargado" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -4448,7 +4447,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "5.45x39mm 7N10" msgstr[1] "5.45x39mm 7N10" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -4467,7 +4466,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "5.45x39mm 7N22" msgstr[1] "5.45x39mm 7N22" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -4482,7 +4481,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "5.45x39mm, recargada" msgstr[1] "5.45x39mm, recargada" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -4498,7 +4497,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "5.45x39mm AP, recargada" msgstr[1] "5.45x39mm AP, recargada" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -4525,7 +4524,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "5.7x28mm SS190" msgstr[1] "5.7x28mm SS190" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4548,8 +4547,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "5.7x28mm, pólvora negra" msgstr[1] "5.7x28mm, pólvora negra" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4648,7 +4647,7 @@ msgid_plural "66mm HEAT" msgstr[0] "66mm HEAT" msgstr[1] "66mm HEAT" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -4663,7 +4662,7 @@ msgid_plural ".700 NX" msgstr[0] ".700 NX" msgstr[1] ".700 NX" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4694,7 +4693,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "7.62x39mm 57-N-231" msgstr[1] "7.62x39mm 57-N-231" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4714,7 +4713,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "7.62x39mm M67" msgstr[1] "7.62x39mm M67" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4733,7 +4732,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "7.62x39mm M43, recargada" msgstr[1] "7.62x39mm M43, recargada" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4770,7 +4769,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "7.62x54mmR" msgstr[1] "7.62x54mmR" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4803,7 +4802,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "7.62x25mm JHP" msgstr[1] "7.62x25mm JHP" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4835,7 +4834,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "7.62x25mm Type P" msgstr[1] "7.62x25mm Type P" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4912,7 +4911,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "8x40mm JHP réplica" msgstr[1] "8x40mm JHP réplica" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4927,7 +4926,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "8x40mm sin casquillo" msgstr[1] "8x40mm sin casquillo" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4942,7 +4941,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "8x40mm sporting" msgstr[1] "8x40mm sporting" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4959,7 +4958,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "8x40mm FMJ" msgstr[1] "8x40mm FMJ" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4975,7 +4974,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "8x40mm HVP" msgstr[1] "8x40mm HVP" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4993,7 +4992,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "8x40mm trazadora" msgstr[1] "8x40mm trazadora" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -5012,7 +5011,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "8x40mm JHP" msgstr[1] "8x40mm JHP" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -5029,7 +5028,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "9x19mm JHP" msgstr[1] "9x19mm JHP" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -5048,7 +5047,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "9x19mm FMJ" msgstr[1] "9x19mm FMJ" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -5063,7 +5062,7 @@ msgid_plural "9x19mm +P" msgstr[0] "9x19mm +P" msgstr[1] "9x19mm +P" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -5079,7 +5078,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "9x19mm +P+" msgstr[1] "9x19mm +P+" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -5130,7 +5129,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "9x18mm 57-N-181S" msgstr[1] "9x18mm 57-N-181S" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -5147,7 +5146,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "9x18mm SP-7" msgstr[1] "9x18mm SP-7" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -5164,7 +5163,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "9x18mm RG028" msgstr[1] "9x18mm RG028" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -5191,7 +5190,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "9x18mm, recargada" msgstr[1] "9x18mm, recargada" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5208,7 +5207,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "9x18mm +P+, recargada" msgstr[1] "9x18mm +P+, recargada" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5225,7 +5224,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "9x18mm FMJ, recargada" msgstr[1] "9x18mm FMJ, recargada" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5243,7 +5242,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "152mm ATGM HEAT" msgstr[1] "152mm ATGM HEAT" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -5274,7 +5273,7 @@ msgid_plural "cannon round shot" msgstr[0] "disparo de cañón" msgstr[1] " disparo de cañón" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -5289,7 +5288,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "gas tóxico pulverizable" msgstr[1] "gas tóxico pulverizable" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -5305,7 +5304,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "fungicida pulverizable" msgstr[1] "fungicidas pulverizable" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -5321,7 +5320,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "insecticida pulverizable" msgstr[1] "insecticida pulverizable" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -5456,7 +5455,7 @@ msgid_plural "paintball" msgstr[0] "bolas de pintura" msgstr[1] "bolas de pintura" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "Un tubo de bolas de paintball. Prácticamente no causan daño." @@ -5575,7 +5574,7 @@ msgid_plural "00 shot" msgstr[0] "cartucho 00" msgstr[1] "cartuchos 00" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -5592,7 +5591,7 @@ msgstr[0] "cartucho de beanbag" msgstr[1] "cartuchos de beanbag" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -5605,7 +5604,7 @@ msgid_plural "birdshot" msgstr[0] "perdigón" msgstr[1] "perdigones" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -5671,8 +5670,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "cartucho 00, cargado con chatarra" msgstr[1] "cartuchos 00, cargado con chatarra" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5849,7 +5848,7 @@ msgid_plural "oxyacetylene" msgstr[0] "oxiacetileno" msgstr[1] "oxiacetileno" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5864,7 +5863,7 @@ msgid_plural "fungal seeds" msgstr[0] "semillas de hongos" msgstr[1] "semillas de hongos" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Algunas semillas de hongos." @@ -6808,7 +6807,7 @@ msgid_plural "red paint" msgstr[0] "pintura roja" msgstr[1] "pintura roja" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Una lata de pintura roja." @@ -6819,7 +6818,7 @@ msgid_plural "blue paint" msgstr[0] "pintura azul" msgstr[1] "pintura azul" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Una lata de pintura azul." @@ -6830,7 +6829,7 @@ msgid_plural "white paint" msgstr[0] "pintura blanca" msgstr[1] "pintura blanca" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Una lata de pintura blanca." @@ -6841,7 +6840,7 @@ msgid_plural "green paint" msgstr[0] "pintura verde" msgstr[1] "pintura verde" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Una lata de pintura verde." @@ -6852,7 +6851,7 @@ msgid_plural "purple paint" msgstr[0] "pintura púrpura" msgstr[1] "pintura púrpura" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Una lata de pintura violeta." @@ -6863,7 +6862,7 @@ msgid_plural "yellow paint" msgstr[0] "pintura amarilla" msgstr[1] "pintura amarilla" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Una lata de pintura amarilla." @@ -6933,7 +6932,7 @@ msgid_plural "bismuth" msgstr[0] "bismuto" msgstr[1] "bismuto" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -6945,8 +6944,8 @@ msgid_plural "gold" msgstr[0] "oro" msgstr[1] "oro" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -6967,7 +6966,7 @@ msgid_plural "zinc" msgstr[0] "zinc" msgstr[1] "zinc" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6986,7 +6985,7 @@ msgid_plural "lead" msgstr[0] "plomo" msgstr[1] "plomo" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -7001,7 +7000,7 @@ msgid_plural "magnesium powder" msgstr[0] "polvo de magnesio" msgstr[1] "polvo de magnesio" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -7016,7 +7015,7 @@ msgid_plural "silver" msgstr[0] "plata" msgstr[1] "plata" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -7083,7 +7082,7 @@ msgid_plural "tin powder" msgstr[0] "polvo de estaño" msgstr[1] "polvo de estaño" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -7098,7 +7097,7 @@ msgid_plural "solder" msgstr[0] "estaño" msgstr[1] "estaño" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -7136,7 +7135,7 @@ msgid_plural "fuse" msgstr[0] "mecha" msgstr[1] "mechas" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -7199,7 +7198,7 @@ msgid_plural "cotton scraps" msgstr[0] "restos de algodón" msgstr[1] "restos de algodón" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -7216,7 +7215,7 @@ msgid_plural "faux fur scraps" msgstr[0] "restos de piel de imitación" msgstr[1] "restos de piel de imitación" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -7232,7 +7231,7 @@ msgid_plural "felt scraps" msgstr[0] "restos de fieltro" msgstr[1] "restos de fieltro" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -7249,7 +7248,7 @@ msgid_plural "fur scraps" msgstr[0] "restos de piel" msgstr[1] "restos de piel" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -7264,7 +7263,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "restos de kevlar" msgstr[1] "restos de kevlar" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -7283,7 +7282,7 @@ msgid_plural "leather scraps" msgstr[0] "restos de cuero" msgstr[1] "restos de cuero" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -7298,7 +7297,7 @@ msgid_plural "Lycra scraps" msgstr[0] "restos de elastano" msgstr[1] "restos de elastano" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -7313,7 +7312,7 @@ msgid_plural "neoprene scraps" msgstr[0] "restos de neopreno" msgstr[1] "restos de neopreno" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -7328,7 +7327,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "restos de tejido sintético" msgstr[1] "restos de tejido sintético" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -7343,7 +7342,7 @@ msgid_plural "Nomex scraps" msgstr[0] "restos de Nomex" msgstr[1] "restos de Nomex" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -7373,7 +7372,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "retazo de tela de algodón" msgstr[1] "retazos de tela de algodón" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -7403,7 +7402,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "retazos de ropa de piel de imitación" msgstr[1] "retazos de ropa de piel de imitación" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -7432,7 +7431,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "retazos de ropa de fieltro" msgstr[1] "retazos de ropa de fieltro" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -7480,7 +7479,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "retazos de ropa de elastano" msgstr[1] "retazos de ropa de elastano" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -7512,7 +7511,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "retazos de ropa de neopreno" msgstr[1] "retazos de ropa de neopreno" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -7546,7 +7545,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "retazos de ropa de Nomex " msgstr[1] "retazos de ropa de Nomex " -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -7575,7 +7574,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "retazos de ropa de tela sintética" msgstr[1] "retazos de ropa de tela sintética" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -7689,7 +7688,7 @@ msgid_plural "titanium" msgstr[0] "titanio" msgstr[1] "titanio" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -7723,7 +7722,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "10mm FMJ sin casquillo" msgstr[1] "10mm FMJ sin casquillo" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -7742,7 +7741,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "10mm JHP sin casquillo" msgstr[1] "10mm JHP sin casquillo" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -7761,7 +7760,7 @@ msgid_plural "25mm canister shot" msgstr[0] "bote de metralla 25mm" msgstr[1] "bote de metralla 25mm" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -7783,7 +7782,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "7.50mm sin casquillo" msgstr[1] "7.50mm sin casquillo" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -7802,7 +7801,7 @@ msgid_plural "7.50mm RP" msgstr[0] "7.50mm RP" msgstr[1] "7.50mm RP" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -7826,7 +7825,7 @@ msgid_plural "electric charge" msgstr[0] "carga eléctrica" msgstr[1] "cargas eléctricas" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -7841,7 +7840,7 @@ msgid_plural "foamcrete" msgstr[0] "hormigón celular" msgstr[1] "hormigón celular" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -7852,8 +7851,8 @@ msgstr "" "Los precursores químicos del hormigón celular, una sustancia de " "endurecimiento rápido y resistente que se expande fácilmente en contacto con" " el aire. Originalmente diseñado para la reparación estructural en los " -"vuelos espaciales comerciales, puede ser usado para erigir rápidamente " -"paredes y plataformas, o para encerrar a los enemigos." +"vuelos espaciales comerciales, puede ser usado para erigir rápidamente muros" +" y plataformas, o para encerrar a los enemigos." #: lang/json/AMMO_from_json.py lang/json/ammunition_type_from_json.py #: lang/json/ammunition_type_from_json.py @@ -7862,7 +7861,7 @@ msgid_plural "solid hydrogen" msgstr[0] "hidrógeno sólido" msgstr[1] "hidrógeno sólido" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -7877,7 +7876,7 @@ msgid_plural "lead pellets" msgstr[0] "perdigones de plomo" msgstr[1] "perdigones de plomo" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -7894,7 +7893,7 @@ msgid_plural "domed HP pellets" msgstr[0] "perdigones abovedados HP" msgstr[1] "perdigones abovedados HP" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -7911,7 +7910,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "perdigones con punta HP" msgstr[1] "perdigones con punta HP" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -7926,7 +7925,7 @@ msgid_plural "alloy pellets" msgstr[0] "perdigones de aleación" msgstr[1] "perdigones de aleación" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -8100,7 +8099,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "munición de pistola, bola" msgstr[1] "munición de pistola, bola" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -8120,7 +8119,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "munición de pistola, JHP" msgstr[1] "munición de pistola, JHP" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -8164,7 +8163,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "munición magnum, bola" msgstr[1] "munición magnum, bola" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -8186,7 +8185,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "munición magnum, JHP" msgstr[1] "munición magnum, JHP" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -8231,7 +8230,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "munición de pistola pequeña, bola" msgstr[1] "munición de pistola pequeña, bola" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8252,7 +8251,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "munición de pistola pequeña, JHP" msgstr[1] "munición de pistola pequeña, JHP" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8297,7 +8296,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "munición de rifle, bola" msgstr[1] "munición de rifle, bola" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8318,7 +8317,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "munición de rifle, AP" msgstr[1] "munición de rifle, AP" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8363,7 +8362,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "munición de rifle extranjero, bola" msgstr[1] "munición de rifle extranjero, bola" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -8377,7 +8376,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "munición de cañón de riel" msgstr[1] "munición de cañón de riel" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -8392,7 +8391,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "munición de rifle enorme, bola" msgstr[1] "munición de rifle enorme, bola" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8414,7 +8413,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "munición de rifle enorme, AP" msgstr[1] "munición de rifle enorme, AP" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8446,7 +8445,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "cohete, antipersona" msgstr[1] "cohete, antipersona" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -8461,7 +8460,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "cohete, multipropósito" msgstr[1] "cohete, multipropósito" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -8478,7 +8477,7 @@ msgid_plural "rocket, smoke" msgstr[0] "cohete, humo" msgstr[1] "cohete, humo" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -8507,7 +8506,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "cartucho de escopeta, perdigones" msgstr[1] "cartucho de escopeta, perdigones" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -8523,7 +8522,7 @@ msgid_plural "shotshell, slug" msgstr[0] "cartucho de escopeta, bala" msgstr[1] "cartucho de escopeta, bala" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -8540,7 +8539,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "cartucho, pirotecnia" msgstr[1] "cartucho, pirotecnia" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -8593,7 +8592,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "cartucho de escopeta, flechette (recargado)" msgstr[1] "cartucho de escopeta, flechette (recargado)" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -8648,7 +8647,7 @@ msgid_plural "alumentum" msgstr[0] "alumento" msgstr[1] "alumento" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -8712,7 +8711,7 @@ msgid_plural "dragon blood" msgstr[0] "sangre de dragón" msgstr[1] "sangre de dragón" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -8743,7 +8742,7 @@ msgid_plural "parabolan yarn" msgstr[0] "hilo parabolan" msgstr[1] "hilo parabolan" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -8756,7 +8755,7 @@ msgid_plural "crystallized mana" msgstr[0] "maná cristalizada" msgstr[1] "maná cristalizada" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -8800,7 +8799,7 @@ msgid_plural "liquid mercury" msgstr[0] "mercurio líquido" msgstr[1] "mercurio líquido " -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "Mercurio líquido elemental. Conocido por su uso en los termómetros." @@ -8819,7 +8818,7 @@ msgstr "" "Un pedazo de mithril en bruto. Necesita ser reformado en un lingote para ser" " útil." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -9377,7 +9376,7 @@ msgstr[1] "mochilas de munición" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -9393,7 +9392,7 @@ msgstr "Guardas tu %s." #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -9433,7 +9432,7 @@ msgid_plural "chest rig" msgstr[0] "chaleco de munición" msgstr[1] "chaleco de munición" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -10456,42 +10455,19 @@ msgstr "" "bolsillos y un agarre para una porra." #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "cinturón de superviviente" -msgstr[1] "cinturones de superviviente" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "cinturón de herramientas" +msgstr[1] "cinturones de herramientas" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "Colocas tu %1$s en tu %2$s." -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "Guardar objeto" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" -"Un cinturón de cuero fabricado a medida y cubierto de bolsillos, con una " -"funda para llevar una hoja más pequeña y una funda para llevar una pistola. " -"Duradero y cuidadosamente elaborado para que sea cómodo de llevar. Activar " -"para enfundar/sacar un arma." - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "cinturón de herramientas" -msgstr[1] "cinturones de herramientas" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -10659,27 +10635,6 @@ msgstr "" "Zapatos de goma que cubren los dedos de tus pies con resistentes, punteras " "de acero que cumplen con la normativa OSHA." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "par de botas ignífugas de superviviente" -msgstr[1] "pares de botas ignífugas de superviviente" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" -"Un par de botas Nomex personalizadas y blindadas con Kevlar. Te mantendrán " -"vivo, incluso con llamas hasta las rodillas." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "par de botas ignífugas XL de superviviente" -msgstr[1] "pares de botas ignífugas XL de superviviente" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -10697,53 +10652,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "par de botas de piel XL" msgstr[1] "pares de botas de piel XL" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "par de botas de invierno del piel s. de superviviente" -msgstr[1] "pares de botas de invierno del piel s. de superviviente" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" -"Un par de botas personalizadas blindadas con Kevlar. Abrigadas gracias a un " -"forro de piel sintética, te mantendrán con vida incluso con la muerte hasta " -"las rodillas." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "par de botas de invierno del piel s. XL de superviviente" -msgstr[1] "pares de botas de invierno del piel s. XL de superviviente" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" -"Un par de botas blindadas con Kevlar personalizadas y de gran tamaño. " -"Abrigadas gracias a un forro de piel sintética, te mantendrán con vida " -"incluso con la muerte hasta las rodillas." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "par de botas acuáticas de superviviente" -msgstr[1] "pares de botas acuáticas de superviviente" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" -"Un par de botas de neopreno personalizadas y blindadas con Kevlar. Te " -"mantendrán seco y vivo, contra viento y marea." - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -10757,29 +10665,6 @@ msgstr "" "Botas de cuero resistentes pero ligeras, pensadas para la actividad al aire " "libre." -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "par de botas pesadas de superviviente" -msgstr[1] "pares de botas pesadas de superviviente" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" -"Un par de botas personalizadas de Kevlar fuertemente blindadas con acero. " -"Priman la protección sobre la comodidad, te mantendrán con vida, sobre todo " -"cuando estés metido hasta las rodillas en la muerte." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "par de botas pesadas de superviviente XL" -msgstr[1] "pares de botas pesadas de superviviente XL" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -10800,29 +10685,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "par de botas blindadas de cuero XL" msgstr[1] "pares de botas blindadas de cuero XL" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "par de botas ligeras de superviviente" -msgstr[1] "pares de botas ligeras de superviviente" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" -"Un par de botas personalizadas de tela blindada con kevlar. Priman la " -"comodidad sobre la protección, te mantendrán en movimiento y con agilidad, " -"incluso con la muerte hasta las rodillas." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "par de botas ligeras XL de superviviente" -msgstr[1] "pares de botas ligeras XL de superviviente" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -10897,23 +10759,6 @@ msgstr "" "un descendiente de la clásica bota con punta de acero, este moderno calzado " "se ha hecho popular entre los obreros en las últimas dos décadas." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "par de botas de superviviente" -msgstr[1] "pares de botas de superviviente" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" -"Un par de botas de cuero personalizadas blindadas con Kevlar. Con un " -"equilibrio entre comodidad y protección, estas botas te mantendrán con vida," -" incluso con la muerte hasta las rodillas." - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -10948,45 +10793,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "par de botas de invierno XL" msgstr[1] "pares de botas de invierno XL" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "par de botas de invierno de superviviente" -msgstr[1] "pares de botas de invierno de superviviente" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" -"Un par de botas personalizadas, blindadas con Kevlar. Abrigadas gracias a su" -" forro de piel auténtica, te mantendrán con vida, incluso con la muerte " -"hasta las rodillas." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "par de botas de invierno XL de superviviente" -msgstr[1] "pares de botas de invierno XL de superviviente" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "par de botas XL de supervivencia" -msgstr[1] "pares de botas XL de supervivencia" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" -"Un enorme par de botas de cuero personalizadas y blindadas con Kevlar. Con " -"un equilibrio entre comodidad y protección, estas botas te mantendrán con " -"vida incluso con la muerte hasta las rodillas." - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -11955,27 +11761,6 @@ msgid_plural "XL leather dusters" msgstr[0] "guardapolvos XL de cuero" msgstr[1] "guardapolvos XL de cuero" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "guardapolvos de superviviente" -msgstr[1] "guardapolvos de superviviente" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" -"Un guardapolvos largo blindado con protección de Kevlar cubierto con bolsos " -"y bolsillos. Cómodo, duradero y con muy buena capacidad de almacenamiento." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "guardapolvos XL de superviviente" -msgstr[1] "guardapolvos XL de superviviente" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -12030,7 +11815,7 @@ msgid_plural "army jacket" msgstr[0] "chaqueta militar" msgstr[1] "chaquetas militares" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -12225,7 +12010,7 @@ msgid_plural "kimono" msgstr[0] "kimono" msgstr[1] "kimonos" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -12411,22 +12196,6 @@ msgstr "" "lo que deja tus brazos liberados. Tiene mucha capacidad de almacenamiento " "debido a sus numerosos bolsillos." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "guardapolvos sin mangas de superviviente" -msgstr[1] "guardapolvos sin mangas de superviviente" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" -"Un guardapolvos blindado personalizado sin mangas, blindado con Kevlar, " -"cubierto con muchos bolsos y bolsillos. Cómodo, duradero y con muy buena " -"capacidad de almacenamiento." - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -12487,22 +12256,6 @@ msgstr "" "Una gabardina de cuero grueso sin mangas, que te deja los brazos libres. " "Tiene mucha capacidad de almacenamiento debido a sus numerosos bolsillos." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "gabardina sin mangas de superviviente" -msgstr[1] "gabardinas sin mangas de superviviente" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" -"Una gabardina personalizada sin mangas, blindada con Kevlar cubierto con " -"bolsos y bolsillos. Cómodo, duradero y con muy buena capacidad de " -"almacenamiento." - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -12520,7 +12273,7 @@ msgid_plural "thawb" msgstr[0] "thawb" msgstr[1] "thawb" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -12581,21 +12334,6 @@ msgstr "" "Una gabardina gruesa de cuero, con varios bolsillos. Tiene muy buena " "capacidad de almacenamiento." -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "gabardina de superviviente" -msgstr[1] "gabardinas de superviviente" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" -"Una gabardina personalizada blindada con kevlar cubierto de bolsos y " -"bolsillos. Cómodo, duradero y con muy buena capacidad de almacenamiento." - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -12883,21 +12621,6 @@ msgstr "" "Un par de gafas de sol, que son útiles para protegernos de las luces " "fuertes." -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "gafas de superviviente" -msgstr[1] "pares de gafas de superviviente" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" -"Un par de gafas blindadas con los lentes polarizados. Cómodas y hechas para " -"durar, proporcionan una excelente protección contra peligros ambientales." - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -13326,28 +13049,6 @@ msgstr "" "Un par de guantes de cuero sin dedos. Han sido burdamente reforzados con " "protecciones de acero en el dorso." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "par de guantes ignífugos de superviviente" -msgstr[1] "pares de guantes ignífugos de superviviente" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" -"Un par de guantes de Nomex personalizados y blindados con Kevlar. Son una " -"extensión postapocalíptica de lo que llevaban los bomberos antes del " -"Cataclismo." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "par de guantes ignífugos XL de superviviente" -msgstr[1] "pares de guantes ignífugos XL de superviviente" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -13365,56 +13066,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "par de guantes de piel XL" msgstr[1] "pares de guantes de piel XL" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "par de guantes de invierno de piel s. de superviviente" -msgstr[1] "pares de guantes de invierno de piel s. de superviviente" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" -"Un par de guantes personalizados, blindados con Kevlar. Están forrados de " -"piel sintética." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "par de guantes de invierno de piel s. XL de superviviente" -msgstr[1] "pares de guantes de invierno de piel s. XL de superviviente" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" -"Un par de guantes personalizados y sobredimensionados con armadura de " -"Kevlar. Están forrados de piel sintética." - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "par de guantes pesados de superviviente" -msgstr[1] "pares de guantes pesados de superviviente" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" -"Un par de guantes de Kevlar personalizados con dorso de acero. Están " -"diseñados para la protección en primer lugar." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "par de guantes pesados de superviviente XL" -msgstr[1] "pares de guantes pesados de superviviente XL" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -13480,69 +13131,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "par de guantes internos XL" msgstr[1] "pares de guantes internos XL" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "par de guantes ligeros de superviviente" -msgstr[1] "pares de guantes ligeros de superviviente" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" -"Un par de guantes de tela personalizados y blindados con Kevlar. Están " -"diseñados para ser cómodos en primer lugar." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "par de guantes ligeros XL de superviviente" -msgstr[1] "pares de guantes ligeros XL de superviviente" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "par de guantes ligeros sin dedos de supervivencia" -msgstr[1] "pares de guantes ligeros sin dedos de supervivencia" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" -"Un par de guantes de tela personalizados, blindados con Kevlar y sin dedos. " -"Están diseñados para ser cómodos en primer lugar." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "par de guantes ligeros sin dedos XL de supervivencia" -msgstr[1] "pares de guantes ligeros sin dedos XL de supervivencia" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "par de guantes sin dedos de superviviente" -msgstr[1] "pares de guantes sin dedos de superviviente" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" -"Un par de guantes de cuero personalizados, blindados con Kevlar y sin dedos." -" Estos logran un equilibrio entre la comodidad y la protección." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "par de guantes sin dedos XL de superviviente" -msgstr[1] "pares de guantes sin dedos XL de superviviente" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -13585,21 +13173,6 @@ msgstr "" "Un par de guantes de goma, utilizados generalmente para limpiar con " "materiales cáusticos." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "par de guantes de superviviente" -msgstr[1] "pares de guantes de superviviente" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" -"Un par de guantes de cuero personalizados y blindados con Kevlar. Estos " -"logran un equilibrio entre la comodidad y la protección." - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -13735,41 +13308,6 @@ msgstr "" "manos. Proporcionan un poco de protección pegando puñetazos o haciendo " "alguna otra travesura." -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "par de guantes de invierno de superviviente" -msgstr[1] "pares de guantes de invierno de superviviente" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" -"Un par de guantes personalizados, blindados con Kevlar. Están forrados con " -"pieles de verdad." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "par de guantes de invierno XL de superviviente" -msgstr[1] "pares de guantes de invierno XL de superviviente" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "par de guantes XL de superviviente" -msgstr[1] "pares de guantes XL de superviviente" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" -"Un enorme par de guantes de cuero personalizados y blindados con Kevlar. " -"Estos logran un equilibrio entre la protección y la comodidad." - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -14601,7 +14139,7 @@ msgid_plural "kabuto" msgstr[0] "kabuto" msgstr[1] "kabutos" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -14733,36 +14271,6 @@ msgstr "" "para proteger mejor la cara sin obstruir la visión. Un equipo adecuado de " "Jotunn, a diferencia del estereotipado casco con cuernos." -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "capucha nomada" -msgstr[1] "capuchas nómadas" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" -"Una capucha improvisada con protección para los ojos de la lluvia y el sol, " -"diseñada para viajes largos." - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "capucha nómada XL" -msgstr[1] "capuchas nómadas XL" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" -"Una capucha improvisada con protección para los ojos de la lluvia y el sol, " -"diseñada para viajes largos. Diseñada para un viajero gigante." - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -14825,38 +14333,6 @@ msgstr "" "Lamentablemente, no ayuda a proteger los ojos del sol. Este es más grande " "que la media." -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "capucha de carroñero" -msgstr[1] "capuchas de carroñero" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" -"Una resistente capucha protectora que se extiende hasta el cuello, equipada " -"con un respirador y protección para los ojos. Para cuando un carroñero va de" -" aventura." - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "capucha de carroñero XL" -msgstr[1] "capuchas de carroñero XL" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" -"Una robusta capucha protectora que se extiende hasta el cuello, equipada con" -" un respirador y una protección ocular. Para cuando un carroñero grande va " -"de aventura." - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -15096,43 +14572,6 @@ msgstr "" "pequeña cerca del cuerpo. Incómodo de usar sin práctica. Activar para " "enfundar/sacar un arma." -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "arnés de superviviente" -msgstr[1] "arneses de superviviente" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" -"Un arnés ligero con varias ranuras y una eslinga táctica integrada para " -"colgar un pequeño rifle o un arma similar. Duradero y diseñado para ser " -"cómodo de usar. Activar para enfundar/sacar tu arma." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "arnés XL de superviviente" -msgstr[1] "arneses XL de superviviente" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" -"Un arnés ligero con varias ranuras y una eslinga táctica integrada para " -"colgar un pequeño rifle o un arma similar. Duradero y diseñado para ser " -"cómodo de usar por las formas más grandes. Activar para enfundar/sacar tu " -"arma." - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -15191,87 +14630,6 @@ msgstr "" "Una capucha de cota de malla. Puede ser usada cómodamente bajo un casco. De " "talla XL." -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "capucha ignífuga de superviviente" -msgstr[1] "capuchas ignífugas de superviviente" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" -"Una capucha blindada personalizada de Nomex y Kevlar, fuerte y duradero." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "capucha ignífuga XL de superviviente" -msgstr[1] "capuchas ignífugas XL de superviviente" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" -"Una capucha de Kevlar blindado con Nomex personalizada, muy fuerte y " -"duradera. Hecho en Muspelheim." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "capucha ligera de superviviente" -msgstr[1] "capuchas ligeras de superviviente" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" -"Una capucha de tela blindada y Kevlar personalizada, ligera pero duradera." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "capucha ligera XL de superviviente" -msgstr[1] "capuchas ligeras XL de superviviente" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" -"Una capucha de tela blindada y Kevlar personalizada y sobredimensionada, " -"ligera pero duradera." - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "capucha de invierno de piel s. de superviviente" -msgstr[1] "capuchas de invierno de piel s. de superviviente" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" -"Una capucha blindada personalizada de Kevlar. Abrigado gracias al forro de " -"piel sintética." - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "capucha de invierno de piel s. XL de superviviente" -msgstr[1] "capuchas de invierno de piel s. XL de superviviente" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" -"Una capucha blindada de Kevlar personalizada y de gran tamaño. Abrigado " -"gracias al forro de piel sintética." - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -15283,64 +14641,6 @@ msgstr[1] "capuchas para lluvia" msgid "A waterproof hood made to be worn in bad weather." msgstr "Una capucha impermeable hecha para llevarla con mal tiempo." -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "capucha de superviviente" -msgstr[1] "capuchas de superviviente" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" -"Una capucha blindada personalizada de cuero y Kevlar, diseñada para " -"equilibrar la comodidad y la protección." - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "capucha de invierno de superviviente" -msgstr[1] "capuchas de invierno de superviviente" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" -"Una capucha blindada personalizada de cuero y Kevlar, diseñada para " -"equilibrar la comodidad y la protección." - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "capucha de invierno XL de supervivencia " -msgstr[1] "capuchas de invierno XL de superviviente" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" -"Una capucha de Kevlar blindada, personalizada y de gran tamaño. Abrigada " -"gracias al forro de piel auténtica." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "capucha XL de superviviente" -msgstr[1] "capuchas XL de superviviente" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" -"Una enorme capucha blindada personalizada de cuero y Kevlar, diseñada para " -"equilibrar la comodidad y la protección." - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -15819,9 +15119,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "gemelos de granate y oro" msgstr[1] "gemelos de granate y oro" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "Un par de gemelos con granates insertados." @@ -15832,9 +15132,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "gemelos de oro y diamante" msgstr[1] "gemelos de oro y diamante" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "Un par de gemelos con diamantes incrustados." @@ -15845,9 +15145,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "pares de gemelos de amatista y oro" msgstr[1] "pares de gemelos de amatista y oro" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "Un par de gemelos con amatistas insertadas." @@ -15858,9 +15158,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] " gemelos de oro y aguamarina" msgstr[1] " gemelos de oro y aguamarina" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "Un par de gemelos con aguamarinas insertadas." @@ -15871,9 +15171,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] " gemelos de oro y esmeralda" msgstr[1] " gemelos de oro y esmeralda" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "Un par de gemelos con esmeraldas incrustadas." @@ -15884,9 +15184,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "gemelos de oro y alejandrita" msgstr[1] "gemelos de oro y alejandrita" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "Un par de gemelos con alejandritas incrustadas." @@ -15897,9 +15197,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "gemelos de oro y rubies" msgstr[1] "gemelos de oro y rubies" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "Un par de gemelos con rubíes insertados." @@ -15910,9 +15210,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "gemelos de oro y peridoto" msgstr[1] "gemelos de oro y peridoto" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "Un par de gemelos con peridoto insertado." @@ -15923,9 +15223,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "gemelos de oro y zafiros" msgstr[1] "gemelos de oro y zafiros" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "Un par de gemelos con zafiros incrustados." @@ -15936,9 +15236,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "gemelos de oro y turmalinas" msgstr[1] "gemelos de oro y turmalinas" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "Un par de gemelos con turmalinas insertadas." @@ -15949,9 +15249,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "gemelos de oro y citrino" msgstr[1] "gemelos de oro y citrino" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "Un par de gemelos con cítrinos insertados." @@ -15962,9 +15262,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "gemelos de oro y topacio azul" msgstr[1] "gemelos de oro y topacio azul" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "Un par de gemelos con topacio azul insertado." @@ -15975,9 +15275,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "gemelos de oro y ópalos" msgstr[1] "gemelos de oro y ópalos" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "Un par de gemelos con ópalos insertados." @@ -15988,9 +15288,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "gemelos de oro y perlas" msgstr[1] "gemelos de oro y perlas" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "Un par de gemelos con perlas insertadas." @@ -20032,7 +19332,7 @@ msgid_plural "turnout trousers" msgstr[0] "pantalón de bombero" msgstr[1] "pantalones de bombero" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -20080,7 +19380,7 @@ msgid_plural "leather chaps" msgstr[0] "chaparrera de cuero" msgstr[1] "chaparreras de cuero" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -20095,7 +19395,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "chaparrerras para motosierra" msgstr[1] "chaparrerras para motosierra" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -20115,7 +19415,7 @@ msgid_plural "fencing pants" msgstr[0] "pantalón de esgrima" msgstr[1] "pantalones de esgrima" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -20309,37 +19609,6 @@ msgstr "" "simples cuerdas; la colección suelta de placas proporciona una protección " "decente pero no la más conveniente. Pareces una basura gigante." -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "pantalón de carga ligero de superviviente" -msgstr[1] "pantalones de carga ligeros de superviviente" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" -"Pantalón de carga ligero blindado con Kevlar, diseñado para almacenar tanto " -"como es posible. Fuerte y prácticamente impermeable." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "pantalón de carga ligero XL de superviviente" -msgstr[1] "pantalones de carga ligeros XL de superviviente" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" -"Pantalones de carga ligero blindado con Kevlar diseñado para almacenar tanto" -" como es posible. Fuerte, prácticamente impermeable y con un tamaño mayor " -"que la media." - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -20353,43 +19622,13 @@ msgstr "" "Una par de pantalones duraderos usados por motociclistas, incluido los de " "motocross." -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "pantalón de carga de superviviente" -msgstr[1] "pantalones de carga de superviviente" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" -"Un par de pantalones blindados de Kevlar cubiertos con bolsas y bolsillos. " -"Hechos a medida para ser duraderos, cómodos y fáciles de llevar." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "pantalón de carga XL de superviviente" -msgstr[1] "pantalones de carga XL de superviviente" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" -"Un par de pantalones enormes blindados de Kevlar cubiertos con bolsas y " -"bolsillos. Hechos a medida para ser duraderos, cómodos y fáciles de llevar." - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "pantalón EOD" msgstr[1] "pantalones EOD" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -20404,7 +19643,7 @@ msgid_plural "light EOD trousers" msgstr[0] "pantalón ligero EOD" msgstr[1] "pantalones ligeros EOD" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -20436,7 +19675,7 @@ msgid_plural "basketball shorts" msgstr[0] "pantalón corto de baloncesto" msgstr[1] "pantalones cortos de baloncesto" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "Un par de pantalones cortos de baloncesto. Cómodos y ligeros." @@ -20447,7 +19686,7 @@ msgid_plural "breeches" msgstr[0] "pantalón bombacho" msgstr[1] "pantalones bombachos" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -20475,7 +19714,7 @@ msgid_plural "hot pants" msgstr[0] "minipantalón" msgstr[1] "minipantalones" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "Un simple par de pantalones cortos cortos." @@ -20486,7 +19725,7 @@ msgid_plural "fur hot pants" msgstr[0] "minipantalón de piel" msgstr[1] "minipantalones de piel" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "Un simple par de pantalones cortos cortos de piel." @@ -20497,7 +19736,7 @@ msgid_plural "leather hot pants" msgstr[0] "minipantalón de cuero" msgstr[1] "minipantalones de cuero" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "Un simple par de pantalones cortos cortos de cuero." @@ -20508,7 +19747,7 @@ msgid_plural "jeans" msgstr[0] "pantalón vaquero" msgstr[1] "pantalones vaqueros" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "Un par de pantalones vaqueros azules con dos bolsillos grandes." @@ -20543,7 +19782,7 @@ msgid_plural "red jeans" msgstr[0] "pantalón vaquero rojo" msgstr[1] "pantalones vaqueros rojos" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -20573,7 +19812,7 @@ msgid_plural "leggings" msgstr[0] "malla" msgstr[1] "mallas" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -20659,7 +19898,7 @@ msgid_plural "pants" msgstr[0] "pantalón" msgstr[1] "pantalones" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "Un par de pantalones caqui. Un poco más cálidos que los vaqueros." @@ -20670,7 +19909,7 @@ msgid_plural "army pants" msgstr[0] "pantalón militar" msgstr[1] "pantalones militares" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" @@ -20679,8 +19918,8 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" "Un par de pantalones resistentes preferidos por los militares. Este par " "viene en un camuflaje gris, verde y bronceado. El patrón es notable por su " @@ -20724,7 +19963,7 @@ msgid_plural "cargo pants" msgstr[0] "pantalón de carga" msgstr[1] "pantalones de carga" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -20737,7 +19976,7 @@ msgid_plural "checkered pants" msgstr[0] "pantalón a cuadros" msgstr[1] "pantalones a cuadros" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -20750,7 +19989,7 @@ msgid_plural "fur pants" msgstr[0] "pantalón de piel" msgstr[1] "pantalones de piel" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "Un par de pantalones forrados de piel." @@ -20761,7 +20000,7 @@ msgid_plural "faux fur pants" msgstr[0] "pantalones de piel artificial" msgstr[1] "pantalones de piel artificial" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -20774,7 +20013,7 @@ msgid_plural "leather pants" msgstr[0] "pantalón de cuero" msgstr[1] "pantalones de cuero" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -20789,7 +20028,7 @@ msgid_plural "ski pants" msgstr[0] "pantalón de esquí" msgstr[1] "pantalones de esquí" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "Unos pantalones pensados para el esquí alpino." @@ -20800,7 +20039,7 @@ msgid_plural "police breeches" msgstr[0] "pantalón ajustados de policia" msgstr[1] "pantalones ajustados de policia" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -20815,7 +20054,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "pantalón corto de cartero" msgstr[1] "pantalones cortos de cartero" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -20828,7 +20067,7 @@ msgid_plural "shorts" msgstr[0] "pantalón corto" msgstr[1] "pantalones cortos" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "Un par de pantalones cortos de color caqui." @@ -20839,7 +20078,7 @@ msgid_plural "cargo shorts" msgstr[0] "pantalones cortos de carga" msgstr[1] "pantalones cortos de carga" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -20852,7 +20091,7 @@ msgid_plural "denim shorts" msgstr[0] "pantalón vaquero corto" msgstr[1] "pantalones vaqueros cortos" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "Un par de pantalones vaqueros cortos." @@ -20921,7 +20160,7 @@ msgid_plural "striped pants" msgstr[0] "pantalón a rayas" msgstr[1] "pantalones a rayas" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "Un par de pantalones con rayas horizontales blancas y negras." @@ -20952,7 +20191,7 @@ msgid_plural "army winter pants" msgstr[0] "pantalón militar de invierno" msgstr[1] "pantalones militares de invierno" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -22248,67 +21487,6 @@ msgstr "" "cantidad decente de almacenamiento, pero transportarla no es precisamente " "cómoda." -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "petate de superviviente" -msgstr[1] "petates de superviviente" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Un petate pesado personalizado. Duradero y diseñado cuidadosamente para " -"contener la mayor cantidad de cosas posibles." - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "mochila de superviviente" -msgstr[1] "mochilas de superviviente" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" -"Una mochila personalizada. Duradera y diseñada cuidadosamente para contener " -"la mayor cantidad de cosas posibles." - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "morral de superviviente" -msgstr[1] "morrales de superviviente" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Una mochila pesada personalizada. Duradera y diseñada cuidadosamente para " -"contener la mayor cantidad de cosas posibles." - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "mochila de corredor superviviente" -msgstr[1] "mochilas de corredor superviviente" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" -"Una mochila ligera que se utiliza para llevar cosas mientras corres. " -"Duradera y diseñada cuidadosamente para contener la mayor cantidad de cosas " -"posibles." - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -22807,38 +21985,6 @@ msgid_plural "XL plate armors" msgstr[0] "armadura de placas XL" msgstr[1] "armaduras de placas XL" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "equipo nómada" -msgstr[1] "equipos nómada" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" -"Un traje improvisado hecho con ropa pre-Cataclismo, diseñado para viajes " -"largos. Tiene mucha capacidad de almacenamiento." - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "equipo ligero de nómada" -msgstr[1] "equipos ligeros de nómada" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" -"Un traje improvisado ligero hecho con ropa pre-Cataclismo, diseñado para " -"viajes largos de verano. Ofrece menos espacio de almacenamiento y armadura " -"en comparación con el equipo nómada normal." - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -22886,12 +22032,12 @@ msgstr[1] "armaduras antidisturbios" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" -"Chaleco negro utilizado por los agentes de la policía antidisturbios, cuando" -" sólo eran disturbios. La palabra POLICÍA está blasonada en la parte " -"delantera." +"Placas negras de plástico para el chaleco antibalas que utilizaban los " +"agentes de la policía antidisturbios, cuando sólo eran disturbios. La " +"palabra POLICÍA está estampada en la parte delantera." #: lang/json/ARMOR_from_json.py msgid "O-yoroi" @@ -22904,21 +22050,6 @@ msgstr[1] "O-yoroi" msgid "An ornamental suit of Japanese samurai armor." msgstr "Una armadura samurai japonesa ornamentada." -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "equipo de carroñero" -msgstr[1] "equipos de carroñero" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" -"Un robusto traje de carroñero hecho con equipo de protección reajustado " -"previo al cataclismo. Tiene mucho espacio de almacenamiento." - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -23079,63 +22210,6 @@ msgid_plural "XL entry suits" msgstr[0] "traje de aproximación XL" msgstr[1] "trajes de aproximación XL" -#: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "trajes ignífugos de superviviente" -msgstr[1] "trajes ignífugos de superviviente" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" -"Una pesada armadura combinada hecha a mano con un chaleco a prueba de balas " -"y un mono de Nomex reforzado y resistente a las llamas. Protege al portador " -"del fuego y de la intemperie." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "traje ignífugo XL de superviviente" -msgstr[1] "trajes ignífugos XL de superviviente" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "traje de invierno de superviviente" -msgstr[1] "trajes de invierno de superviviente" - -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" -"Una armadura combinada, cálida y pesada, hecha con un chaleco antibalas " -"reforzado y un mono de piel aislante de imitación. Protege tanto de la " -"intemperie como del daño." - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "traje de invierno XL de superviviente" -msgstr[1] "trajes de invierno XL de superviviente" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." -msgstr "" -"Una armadura combinada, cálida, pesada y grande hecha con un chaleco " -"antibalas reforzado y un mono de piel aislante de imitación. Protege tanto " -"de la intemperie como del daño." - #: lang/json/ARMOR_from_json.py msgid "gambeson" msgid_plural "gambesons" @@ -23152,12 +22226,35 @@ msgstr "" " cota de malla u otra armadura. O para ser usado por si solo, si no te " "puedes pagar una armadura apropiada." +#: lang/json/ARMOR_from_json.py +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" +msgstr[0] "gambesón de kevlar" +msgstr[1] "gambesones de kevlar" + +#. ~ Description for kevlar gambeson +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." +msgstr "" +"Una gruesa chaqueta de tejido acolchado, diseñada para llevarse debajo de la" +" cota de malla u otra armadura. Esta incorpora capas de Kevlar añadidas para" +" una mejor protección." + #: lang/json/ARMOR_from_json.py msgid "XL gambeson" msgid_plural "XL gambesons" msgstr[0] "gambeson XL" msgstr[1] "gambesones XL" +#: lang/json/ARMOR_from_json.py +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" +msgstr[0] "gambesón de kevlar XL" +msgstr[1] "gambesones de kevlar XL" + #: lang/json/ARMOR_from_json.py msgid "hazmat suit" msgid_plural "hazmat suits" @@ -23177,45 +22274,6 @@ msgstr "" "protección completa contra la radiación ambiental. Requiere una máscara de " "gas separada para una protección completa." -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "traje pesado de superviviente" -msgstr[1] "trajes pesados de superviviente" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" -"Una pesada armadura combinada hecha a mano con un chaleco antibalas " -"reforzado y un mono de cuero chapado en metal. Protege de la intemperie así " -"como del daño." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "traje ligero de superviviente" -msgstr[1] "trajes ligeros de superviviente" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" -"Un traje ligero hecho a mano, combinación entre un chaleco antibalas cortado" -" y un mono de tela reforzado. Protege tanto de la intemperie como del daño." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "traje ligero de superviviente XL" -msgstr[1] "trajes ligeros de superviviente XL" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -23293,21 +22351,6 @@ msgstr "" "Un traje de algodón de cuerpo entero. Hace que el apocalipsis también sea " "una experiencia elegante." -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "traje de superviviente" -msgstr[1] "trajes de superviviente" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" -"Un traje hecho a mano, una combinación entre un chaleco antibalas y un mono " -"de cuero reforzado. Protege tanto de la intemperie como del daño." - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -23317,11 +22360,11 @@ msgstr[1] "armaduras SWAT" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" -"Un traje antibalas negro con muchos bolsillos. La palabra SWAT resalta en la" -" espalda." +"Un traje de blindaje negro que cubre las partes vitales del pecho, los " +"brazos y las piernas. La palabra SWAT aparece en la espalda." #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -23338,50 +22381,6 @@ msgstr "" "Un traje de cuerpo entero de cuero grueso hecho para proteger cuando se " "conducen motocicletas. Ligero y muy cómodo." -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"Una cálida y pesada armadura personalizada combinación de un chaleco " -"antibalas reforzado y un mono de cuero aislado. Protege de la intemperie así" -" como del daño." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "traje de superviviente XL" -msgstr[1] "trajes de superviviente XL" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" -"Un enorme traje hecho a mano, combinación de un chaleco antibalas y un mono " -"de cuero reforzado. Protege tanto de la intemperie como del daño." - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "traje pesado de superviviente XL" -msgstr[1] "trajes pesados de superviviente XL" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"Una enorme y pesada armadura combinada hecha a mano, con un chaleco " -"antibalas reforzado y un mono de cuero chapado en metal. Protege de los " -"elementos así como de los daños." - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -23400,8 +22399,8 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "dress uniform" msgid_plural "dress uniforms" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "uniforme de gala" +msgstr[1] "uniformes de gala" #. ~ Description for dress uniform #: lang/json/ARMOR_from_json.py @@ -23410,6 +22409,9 @@ msgid "" "rank and ribbons. Just looking at it gives you an air of authority. " "Perhaps not the most practical military wear, but a very stylish option." msgstr "" +"Un uniforme de gala de un oficial militar de antes del Cataclismo, completo " +"con el rango y galones. Solo mirarlo te da un aire de autoridad. Tal vez no " +"sea la ropa militar más práctica pero es una opción muy elegante." #: lang/json/ARMOR_from_json.py msgid "bikini bottom" @@ -23455,53 +22457,6 @@ msgstr[1] "capuchas acuáticas" msgid "A neoprene hood, commonly worn by divers." msgstr "Una capucha de neopreno, generalmente utilizada por buzos." -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "capucha de buzo de superviviente" -msgstr[1] "capuchas de buzo de superviviente" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" -"Es una capucha personalizada de neopreno reforzada con kevlar, muy " -"resistente y duradera." - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "traje de buzo de superviviente" -msgstr[1] "trajes de buzo de superviviente" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" -"Un traje ligero hecho a mano, es una combinación entre un chaleco antibalas " -"cortado y un traje acuático de neopreno reforzado. Protege tanto de la " -"intemperie como del daño." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "par de guantes de buzo de superviviente" -msgstr[1] "pares de guantes de buzo de superviviente" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" -"Un par de guantes personalizados de neopreno reforzados con kevlar. Están " -"modificados para ser cómodos y brindar la máxima protección en condiciones " -"extremas." - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -23621,7 +22576,7 @@ msgid_plural "lorica segmentata" msgstr[0] "lorica segmentata" msgstr[1] "lorica segmentata" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -23809,7 +22764,7 @@ msgid_plural "tire leather armor" msgstr[0] "armadura de cuero de rueda" msgstr[1] "armaduras de cuero de rueda" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -23882,27 +22837,6 @@ msgid "" msgstr "" "Es un chaleco ligero y anti-balas. Perfecto para utilizar debajo de la ropa." -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "armadura ligera de superviviente" -msgstr[1] "armaduras ligeras de superviviente" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" -"Una armadura ligera, hecha a medida, de Kevlar y tela resistente. En su " -"mayoría impermeable." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "armadura ligera XL de superviviente" -msgstr[1] "armaduras ligeras XL de superviviente" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -24203,7 +23137,7 @@ msgid_plural "leotard" msgstr[0] "leotardo" msgstr[1] "leotardos" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -24311,7 +23245,7 @@ msgid_plural "French maid clothes" msgstr[0] "ropa de sirvienta francesa" msgstr[1] "ropas de sirvienta francesa" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -24649,7 +23583,7 @@ msgid_plural "boxer briefs" msgstr[0] "calzoncillo largo" msgstr[1] "calzoncillos largos" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -24662,7 +23596,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "calzoncillo largo XL" msgstr[1] "calzoncillos largos XL" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "La clásica pregunta: ¿Bóxer o slip? ¿Tu respuesta? ¡Gordito!" @@ -24673,7 +23607,7 @@ msgid_plural "boxer shorts" msgstr[0] "calzoncillo" msgstr[1] "calzoncillos" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -24687,7 +23621,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "calzoncillo corto XL" msgstr[1] "calzoncillos cortos XL" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -24702,7 +23636,7 @@ msgid_plural "boy shorts" msgstr[0] "culotte" msgstr[1] "culottes" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -24715,7 +23649,7 @@ msgid_plural "XL boy shorts" msgstr[0] "pantalón corto XL" msgstr[1] "pantalones cortos XL" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -24744,7 +23678,7 @@ msgid_plural "briefs" msgstr[0] "calzoncillo" msgstr[1] "calzoncillos" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "Es un calzoncillo. Ropa interior cómoda para hombre." @@ -24923,7 +23857,7 @@ msgid_plural "panties" msgstr[0] "bragas" msgstr[1] "bragas" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -24998,7 +23932,7 @@ msgid_plural "tights" msgstr[0] "medias" msgstr[1] "medias" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -25027,7 +23961,7 @@ msgid_plural "compression shorts" msgstr[0] "pantalón corto ajustado" msgstr[1] "pantalones cortos ajustados" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -25069,6 +24003,1098 @@ msgstr "" "bailarines y jinetes, el unitardo proporciona una cobertura total con gran " "flexibilidad." +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "equipo nómada" +msgstr[1] "equipos nómada" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "" +"Un traje improvisado hecho con ropa pre-Cataclismo, diseñado para viajes " +"largos. Tiene mucha capacidad de almacenamiento." + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "equipo ligero de nómada" +msgstr[1] "equipos ligeros de nómada" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" +"Un traje improvisado ligero hecho con ropa pre-Cataclismo, diseñado para " +"viajes largos de verano. Ofrece menos espacio de almacenamiento y armadura " +"en comparación con el equipo nómada normal." + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "equipo de carroñero" +msgstr[1] "equipos de carroñero" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" +"Un robusto traje de carroñero hecho con equipo de protección reajustado " +"previo al cataclismo. Tiene mucho espacio de almacenamiento." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "traje ligero de superviviente" +msgstr[1] "trajes ligeros de superviviente" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "" +"Un traje ligero hecho a mano, combinación entre un chaleco antibalas cortado" +" y un mono de tela reforzado. Protege tanto de la intemperie como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "traje ligero de superviviente XL" +msgstr[1] "trajes ligeros de superviviente XL" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "traje de superviviente" +msgstr[1] "trajes de superviviente" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" +"Un traje hecho a mano, una combinación entre un chaleco antibalas y un mono " +"de cuero reforzado. Protege tanto de la intemperie como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "traje de superviviente XL" +msgstr[1] "trajes de superviviente XL" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" +"Un enorme traje hecho a mano, combinación de un chaleco antibalas y un mono " +"de cuero reforzado. Protege tanto de la intemperie como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "traje de invierno de superviviente" +msgstr[1] "trajes de invierno de superviviente" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" +"Una cálida y pesada armadura personalizada combinación de un chaleco " +"antibalas reforzado y un mono de cuero aislado. Protege de la intemperie así" +" como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "traje de invierno XL de superviviente" +msgstr[1] "trajes de invierno XL de superviviente" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" +"Una armadura combinada, cálida y pesada, hecha con un chaleco antibalas " +"reforzado y un mono de piel aislante de imitación. Protege tanto de la " +"intemperie como del daño." + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" +"Una armadura combinada, cálida, pesada y grande hecha con un chaleco " +"antibalas reforzado y un mono de piel aislante de imitación. Protege tanto " +"de la intemperie como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "traje de buzo de superviviente" +msgstr[1] "trajes de buzo de superviviente" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "" +"Un traje ligero hecho a mano, es una combinación entre un chaleco antibalas " +"cortado y un traje acuático de neopreno reforzado. Protege tanto de la " +"intemperie como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "par de botas ligeras de superviviente" +msgstr[1] "pares de botas ligeras de superviviente" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" +"Un par de botas personalizadas de tela blindada con kevlar. Priman la " +"comodidad sobre la protección, te mantendrán en movimiento y con agilidad, " +"incluso con la muerte hasta las rodillas." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "par de botas ligeras XL de superviviente" +msgstr[1] "pares de botas ligeras XL de superviviente" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "par de botas de superviviente" +msgstr[1] "pares de botas de superviviente" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" +"Un par de botas de cuero personalizadas blindadas con Kevlar. Con un " +"equilibrio entre comodidad y protección, estas botas te mantendrán con vida," +" incluso con la muerte hasta las rodillas." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "par de botas XL de supervivencia" +msgstr[1] "pares de botas XL de supervivencia" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" +"Un enorme par de botas de cuero personalizadas y blindadas con Kevlar. Con " +"un equilibrio entre comodidad y protección, estas botas te mantendrán con " +"vida incluso con la muerte hasta las rodillas." + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "par de botas de invierno del piel s. de superviviente" +msgstr[1] "pares de botas de invierno del piel s. de superviviente" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" +"Un par de botas personalizadas blindadas con Kevlar. Abrigadas gracias a un " +"forro de piel sintética, te mantendrán con vida incluso con la muerte hasta " +"las rodillas." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "par de botas de invierno del piel s. XL de superviviente" +msgstr[1] "pares de botas de invierno del piel s. XL de superviviente" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" +"Un par de botas blindadas con Kevlar personalizadas y de gran tamaño. " +"Abrigadas gracias a un forro de piel sintética, te mantendrán con vida " +"incluso con la muerte hasta las rodillas." + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "par de botas de invierno de superviviente" +msgstr[1] "pares de botas de invierno de superviviente" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" +"Un par de botas personalizadas, blindadas con Kevlar. Abrigadas gracias a su" +" forro de piel auténtica, te mantendrán con vida, incluso con la muerte " +"hasta las rodillas." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "par de botas de invierno XL de superviviente" +msgstr[1] "pares de botas de invierno XL de superviviente" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "par de botas acuáticas de superviviente" +msgstr[1] "pares de botas acuáticas de superviviente" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" +"Un par de botas de neopreno personalizadas y blindadas con Kevlar. Te " +"mantendrán seco y vivo, contra viento y marea." + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "par de guantes ligeros de superviviente" +msgstr[1] "pares de guantes ligeros de superviviente" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" +"Un par de guantes de tela personalizados y blindados con Kevlar. Están " +"diseñados para ser cómodos en primer lugar." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "par de guantes ligeros XL de superviviente" +msgstr[1] "pares de guantes ligeros XL de superviviente" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "par de guantes ligeros sin dedos de supervivencia" +msgstr[1] "pares de guantes ligeros sin dedos de supervivencia" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" +"Un par de guantes de tela personalizados, blindados con Kevlar y sin dedos. " +"Están diseñados para ser cómodos en primer lugar." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "par de guantes ligeros sin dedos XL de supervivencia" +msgstr[1] "pares de guantes ligeros sin dedos XL de supervivencia" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "par de guantes sin dedos de superviviente" +msgstr[1] "pares de guantes sin dedos de superviviente" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" +"Un par de guantes de cuero personalizados, blindados con Kevlar y sin dedos." +" Estos logran un equilibrio entre la comodidad y la protección." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "par de guantes sin dedos XL de superviviente" +msgstr[1] "pares de guantes sin dedos XL de superviviente" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "par de guantes de superviviente" +msgstr[1] "pares de guantes de superviviente" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" +"Un par de guantes de cuero personalizados y blindados con Kevlar. Estos " +"logran un equilibrio entre la comodidad y la protección." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "par de guantes XL de superviviente" +msgstr[1] "pares de guantes XL de superviviente" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" +"Un enorme par de guantes de cuero personalizados y blindados con Kevlar. " +"Estos logran un equilibrio entre la protección y la comodidad." + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "par de guantes de invierno de superviviente" +msgstr[1] "pares de guantes de invierno de superviviente" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" +"Un par de guantes personalizados, blindados con Kevlar. Están forrados con " +"pieles de verdad." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "par de guantes de invierno XL de superviviente" +msgstr[1] "pares de guantes de invierno XL de superviviente" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "par de guantes de invierno de piel s. de superviviente" +msgstr[1] "pares de guantes de invierno de piel s. de superviviente" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" +"Un par de guantes personalizados, blindados con Kevlar. Están forrados de " +"piel sintética." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "par de guantes de invierno de piel s. XL de superviviente" +msgstr[1] "pares de guantes de invierno de piel s. XL de superviviente" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" +"Un par de guantes personalizados y sobredimensionados con armadura de " +"Kevlar. Están forrados de piel sintética." + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "par de guantes de buzo de superviviente" +msgstr[1] "pares de guantes de buzo de superviviente" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "" +"Un par de guantes personalizados de neopreno reforzados con kevlar. Están " +"modificados para ser cómodos y brindar la máxima protección en condiciones " +"extremas." + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "capucha nomada" +msgstr[1] "capuchas nómadas" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "" +"Una capucha improvisada con protección para los ojos de la lluvia y el sol, " +"diseñada para viajes largos." + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "capucha nómada XL" +msgstr[1] "capuchas nómadas XL" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" +"Una capucha improvisada con protección para los ojos de la lluvia y el sol, " +"diseñada para viajes largos. Diseñada para un viajero gigante." + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "capucha de superviviente" +msgstr[1] "capuchas de superviviente" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" +"Una capucha blindada personalizada de cuero y Kevlar, diseñada para " +"equilibrar la comodidad y la protección." + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "capucha de invierno de superviviente" +msgstr[1] "capuchas de invierno de superviviente" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" +"Una capucha blindada personalizada de cuero y Kevlar, diseñada para " +"equilibrar la comodidad y la protección." + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "capucha de invierno XL de supervivencia " +msgstr[1] "capuchas de invierno XL de superviviente" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" +"Una capucha de Kevlar blindada, personalizada y de gran tamaño. Abrigada " +"gracias al forro de piel auténtica." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "capucha XL de superviviente" +msgstr[1] "capuchas XL de superviviente" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" +"Una enorme capucha blindada personalizada de cuero y Kevlar, diseñada para " +"equilibrar la comodidad y la protección." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "capucha ligera de superviviente" +msgstr[1] "capuchas ligeras de superviviente" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" +"Una capucha de tela blindada y Kevlar personalizada, ligera pero duradera." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "capucha ligera XL de superviviente" +msgstr[1] "capuchas ligeras XL de superviviente" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" +"Una capucha de tela blindada y Kevlar personalizada y sobredimensionada, " +"ligera pero duradera." + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "capucha de invierno de piel s. de superviviente" +msgstr[1] "capuchas de invierno de piel s. de superviviente" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" +"Una capucha blindada personalizada de Kevlar. Abrigado gracias al forro de " +"piel sintética." + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "capucha de invierno de piel s. XL de superviviente" +msgstr[1] "capuchas de invierno de piel s. XL de superviviente" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" +"Una capucha blindada de Kevlar personalizada y de gran tamaño. Abrigado " +"gracias al forro de piel sintética." + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "capucha de buzo de superviviente" +msgstr[1] "capuchas de buzo de superviviente" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "" +"Es una capucha personalizada de neopreno reforzada con kevlar, muy " +"resistente y duradera." + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "capucha de carroñero" +msgstr[1] "capuchas de carroñero" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "" +"Una resistente capucha protectora que se extiende hasta el cuello, equipada " +"con un respirador y protección para los ojos. Para cuando un carroñero va de" +" aventura." + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "capucha de carroñero XL" +msgstr[1] "capuchas de carroñero XL" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" +"Una robusta capucha protectora que se extiende hasta el cuello, equipada con" +" un respirador y una protección ocular. Para cuando un carroñero grande va " +"de aventura." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "pantalón de carga ligero de superviviente" +msgstr[1] "pantalones de carga ligeros de superviviente" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "" +"Pantalón de carga ligero blindado con Kevlar, diseñado para almacenar tanto " +"como es posible. Fuerte y prácticamente impermeable." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "pantalón de carga ligero XL de superviviente" +msgstr[1] "pantalones de carga ligeros XL de superviviente" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" +"Pantalones de carga ligero blindado con Kevlar diseñado para almacenar tanto" +" como es posible. Fuerte, prácticamente impermeable y con un tamaño mayor " +"que la media." + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "pantalón de carga de superviviente" +msgstr[1] "pantalones de carga de superviviente" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" +"Un par de pantalones blindados de Kevlar cubiertos con bolsas y bolsillos. " +"Hechos a medida para ser duraderos, cómodos y fáciles de llevar." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "pantalón de carga XL de superviviente" +msgstr[1] "pantalones de carga XL de superviviente" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" +"Un par de pantalones enormes blindados de Kevlar cubiertos con bolsas y " +"bolsillos. Hechos a medida para ser duraderos, cómodos y fáciles de llevar." + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "guardapolvos de superviviente" +msgstr[1] "guardapolvos de superviviente" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "" +"Un guardapolvos largo blindado con protección de Kevlar cubierto con bolsos " +"y bolsillos. Cómodo, duradero y con muy buena capacidad de almacenamiento." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "guardapolvos XL de superviviente" +msgstr[1] "guardapolvos XL de superviviente" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "guardapolvos sin mangas de superviviente" +msgstr[1] "guardapolvos sin mangas de superviviente" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" +"Un guardapolvos blindado personalizado sin mangas, blindado con Kevlar, " +"cubierto con muchos bolsos y bolsillos. Cómodo, duradero y con muy buena " +"capacidad de almacenamiento." + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "gabardina de superviviente" +msgstr[1] "gabardinas de superviviente" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "" +"Una gabardina personalizada blindada con kevlar cubierto de bolsos y " +"bolsillos. Cómodo, duradero y con muy buena capacidad de almacenamiento." + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "gabardina sin mangas de superviviente" +msgstr[1] "gabardinas sin mangas de superviviente" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" +"Una gabardina personalizada sin mangas, blindada con Kevlar cubierto con " +"bolsos y bolsillos. Cómodo, duradero y con muy buena capacidad de " +"almacenamiento." + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "petate de superviviente" +msgstr[1] "petates de superviviente" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" +"Un petate pesado personalizado. Duradero y diseñado cuidadosamente para " +"contener la mayor cantidad de cosas posibles." + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "mochila de superviviente" +msgstr[1] "mochilas de superviviente" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "" +"Una mochila personalizada. Duradera y diseñada cuidadosamente para contener " +"la mayor cantidad de cosas posibles." + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "morral de superviviente" +msgstr[1] "morrales de superviviente" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" +"Una mochila pesada personalizada. Duradera y diseñada cuidadosamente para " +"contener la mayor cantidad de cosas posibles." + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "mochila de corredor superviviente" +msgstr[1] "mochilas de corredor superviviente" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "" +"Una mochila ligera que se utiliza para llevar cosas mientras corres. " +"Duradera y diseñada cuidadosamente para contener la mayor cantidad de cosas " +"posibles." + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "par de botas ignífugas de superviviente" +msgstr[1] "pares de botas ignífugas de superviviente" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" +"Un par de botas Nomex personalizadas y blindadas con Kevlar. Te mantendrán " +"vivo, incluso con llamas hasta las rodillas." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "par de botas ignífugas XL de superviviente" +msgstr[1] "pares de botas ignífugas XL de superviviente" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "par de botas pesadas de superviviente" +msgstr[1] "pares de botas pesadas de superviviente" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" +"Un par de botas personalizadas de Kevlar fuertemente blindadas con acero. " +"Priman la protección sobre la comodidad, te mantendrán con vida, sobre todo " +"cuando estés metido hasta las rodillas en la muerte." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "par de botas pesadas de superviviente XL" +msgstr[1] "pares de botas pesadas de superviviente XL" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "par de guantes pesados de superviviente" +msgstr[1] "pares de guantes pesados de superviviente" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" +"Un par de guantes de Kevlar personalizados con dorso de acero. Están " +"diseñados para la protección en primer lugar." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "par de guantes pesados de superviviente XL" +msgstr[1] "pares de guantes pesados de superviviente XL" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "par de guantes ignífugos de superviviente" +msgstr[1] "pares de guantes ignífugos de superviviente" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" +"Un par de guantes de Nomex personalizados y blindados con Kevlar. Son una " +"extensión postapocalíptica de lo que llevaban los bomberos antes del " +"Cataclismo." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "par de guantes ignífugos XL de superviviente" +msgstr[1] "pares de guantes ignífugos XL de superviviente" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "capucha ignífuga de superviviente" +msgstr[1] "capuchas ignífugas de superviviente" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" +"Una capucha blindada personalizada de Nomex y Kevlar, fuerte y duradero." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "capucha ignífuga XL de superviviente" +msgstr[1] "capuchas ignífugas XL de superviviente" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" +"Una capucha de Kevlar blindado con Nomex personalizada, muy fuerte y " +"duradera. Hecho en Muspelheim." + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "trajes ignífugos de superviviente" +msgstr[1] "trajes ignífugos de superviviente" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" +"Una pesada armadura combinada hecha a mano con un chaleco a prueba de balas " +"y un mono de Nomex reforzado y resistente a las llamas. Protege al portador " +"del fuego y de la intemperie." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "traje ignífugo XL de superviviente" +msgstr[1] "trajes ignífugos XL de superviviente" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "traje pesado de superviviente" +msgstr[1] "trajes pesados de superviviente" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" +"Una pesada armadura combinada hecha a mano con un chaleco antibalas " +"reforzado y un mono de cuero chapado en metal. Protege de la intemperie así " +"como del daño." + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "traje pesado de superviviente XL" +msgstr[1] "trajes pesados de superviviente XL" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" +"Una enorme y pesada armadura combinada hecha a mano, con un chaleco " +"antibalas reforzado y un mono de cuero chapado en metal. Protege de los " +"elementos así como de los daños." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "armadura ligera de superviviente" +msgstr[1] "armaduras ligeras de superviviente" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" +"Una armadura ligera, hecha a medida, de Kevlar y tela resistente. En su " +"mayoría impermeable." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "armadura ligera XL de superviviente" +msgstr[1] "armaduras ligeras XL de superviviente" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "cinturón de superviviente" +msgstr[1] "cinturones de superviviente" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "Guardar objeto" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" +"Un cinturón de cuero fabricado a medida y cubierto de bolsillos, con una " +"funda para llevar una hoja pequeña, una funda para llevar una pistola y un " +"gancho para colgar herramientas grandes. Duradero y cuidadosamente elaborado" +" para que sea cómodo de llevar. Activar para enfundar/sacar un arma." + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "gafas de superviviente" +msgstr[1] "pares de gafas de superviviente" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" +"Un par de gafas blindadas con los lentes polarizados. Cómodas y hechas para " +"durar, proporcionan una excelente protección contra peligros ambientales." + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "arnés de superviviente" +msgstr[1] "arneses de superviviente" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" +"Un arnés ligero con varias ranuras y una eslinga táctica integrada para " +"colgar un pequeño rifle o un arma similar. Duradero y diseñado para ser " +"cómodo de usar. Activar para enfundar/sacar tu arma." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "arnés XL de superviviente" +msgstr[1] "arneses XL de superviviente" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" +"Un arnés ligero con varias ranuras y una eslinga táctica integrada para " +"colgar un pequeño rifle o un arma similar. Duradero y diseñado para ser " +"cómodo de usar por las formas más grandes. Activar para enfundar/sacar tu " +"arma." + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -25199,7 +25225,7 @@ msgid_plural "impact knuckles" msgstr[0] "puño americano de impacto" msgstr[1] "puños americanos de impacto" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -25214,7 +25240,7 @@ msgid_plural "skewer knuckles" msgstr[0] "puño americano de pinchos" msgstr[1] "puños americanos de pinchos" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -25395,7 +25421,7 @@ msgid_plural "pair of XL combat boots" msgstr[0] "par de botas de combate XL" msgstr[1] "pares de botas de combate XL" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -25407,7 +25433,7 @@ msgid_plural "pair of XL tactical gloves" msgstr[0] "par de guantes tácticos XL" msgstr[1] "pares de guantes tácticos XL" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -25422,7 +25448,7 @@ msgid_plural "pair of Killophant gloves" msgstr[0] "par de guantes de Kilofante" msgstr[1] "pares de guantes de Kilofante" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -25743,7 +25769,7 @@ msgid_plural "psychrophile handling gloves" msgstr[0] "guante de manejo para psicrófilo" msgstr[1] "guantes de manejo para psicrófilos" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -25934,21 +25960,6 @@ msgstr "" "luego aislados con goma. Son robustos y bloquean los ataques, pero son " "ridículamente pesados." -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "cinturón de red CRIT" -msgstr[1] "cinturones de red CRIT" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" -"cinturón estándar CRIT. Mantiene los pantalones puestos y las armas en tu " -"cadera." - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -26114,7 +26125,7 @@ msgid_plural "CRIT trousers" msgstr[0] "pantalón CRIT" msgstr[1] "pantalones CRIT" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -26130,7 +26141,7 @@ msgid_plural "CRIT pants" msgstr[0] "pantalones de vestir CRIT" msgstr[1] "pantalones de vestir CRIT" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -26180,6 +26191,12 @@ msgstr "" "elegante y que abraza la piel, estos guantes están hechos de algodón con un " "forro de neopreno para para mejorar el agarre y abrigo. " +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "cinturón de red CRIT" +msgstr[1] "cinturones de red CRIT" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -26360,7 +26377,7 @@ msgid_plural "Force Shield" msgstr[0] "Escudo de Fuerza" msgstr[1] "Escudo de Fuerza" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -26934,7 +26951,7 @@ msgid_plural "freerunner's boots" msgstr[0] "botas del corredor libre" msgstr[1] "pares de botas del corredor libre" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -27023,7 +27040,7 @@ msgid_plural "enchanted parabolan wool blouse" msgstr[0] "blusa de lana parabolan encantada" msgstr[1] "blusas de lana parabolan encantada" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -27042,7 +27059,7 @@ msgid_plural "enchanted parabolan wool breeches" msgstr[0] "pantalón bombacho de lana parabolan encantada" msgstr[1] "pantalones bombachos de lana parabolan encantada" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -27078,7 +27095,7 @@ msgid_plural "parabolan wool breeches" msgstr[0] "pantalón bombacho de lana parabolan" msgstr[1] "pantalones bombachos de lana parabolan" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -27141,7 +27158,7 @@ msgid_plural "slick icy coatings" msgstr[0] "revestimiento de hielo resbaladizo" msgstr[1] "revestimientos de hielo resbaladizo" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -27207,7 +27224,7 @@ msgid_plural "frost armor" msgstr[0] "armadura de escarcha" msgstr[1] "armadura de escarcha" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "Una fina capa de hielo mágico cubriendo el cuerpo entero." @@ -27218,7 +27235,7 @@ msgid_plural "stoneskin coating" msgstr[0] "revestimiento de piedra" msgstr[1] "revestimientos de piedra" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -27325,7 +27342,7 @@ msgid_plural "spiritual armor" msgstr[0] "armadura espiritual" msgstr[1] "armaduras espirituales" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "Una armadura medieval invocada. Brilla levemente y parece robusta." @@ -27336,7 +27353,7 @@ msgid_plural "auroral shell" msgstr[0] "caparazón aurora" msgstr[1] "caparazones aurora" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -27435,20 +27452,22 @@ msgstr "" "sueño, o si el usuario sospecha de un perseguidor camuflado." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "MBC Placas de Aleación Para Brazos" -msgstr[1] "MBCs Placas de Aleación Para Brazos" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "MBC Aleación Intradérmica en Brazos" +msgstr[1] "MBCs Aleación Intradérmica en Brazos" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" -"Placas de aleación que remplazan la carne en los brazos del usuario. " -"Proporcionan protección y pueden ser usadas conjuntamente con artes " -"marciales biónicas." +"Una malla de protección mejorada que se entrelaza en la carne del usuario. " +"Brinda protección pasiva a cambio de un poco de incomodidad y puede ser " +"usada en conjunción con artes marciales biónicas." #: lang/json/BIONIC_ITEM_from_json.py msgid "Protective Lenses CBM" @@ -27468,50 +27487,41 @@ msgstr "" " boca. Cuando el usuario llora, debe escupir o tragar sus lágrimas." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" -msgstr[0] "MBC Placas de Aleación Para Cabeza" -msgstr[1] "MBCs Placas de Aleación Para Cabeza" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "MBC Aleación Intradérmica en Cabeza" +msgstr[1] "MBCs Aleación Intradérmica en Cabeza" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" -"Placas de aleación que reemplazan la carne en la cabeza del usuario, " -"protegiendo tanto la cabeza como la región de la mandíbula." +"Una malla de protección mejorada que se entrelaza en la carne del usuario, " +"protegiendo tanto la cabeza como la mandíbula a cambio de un poco de " +"incomodidad." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" -msgstr[0] "MBC Placas de Aleación Para Piernas" -msgstr[1] "MBCs Placas de Aleación Para Piernas" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "MBC Aleación Intradérmica en Piernas" +msgstr[1] "MBCs Aleación Intradérmica en Piernas" -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" -"Placas de aleación que reemplazan la carne en las piernas del usuario. " -"Proporcionan protección y pueden ser usadas conjuntamente con artes " -"marciales biónicas." +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "MBC Aleación Intradérmica en Torso" +msgstr[1] "MBCs Aleación Intradérmica en Torso" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" -msgstr[0] "MBC Placas de Aleación Para Torso" -msgstr[1] "MBCs Placas de Aleación Para Torso" - -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" -"Placas de aleación que reemplazan la carne en el torso del usuario, " -"protegiéndolo de traumas físicos." +"Una malla de protección mejorada que se entrelaza en la carne del usuario, " +"protegiéndolo del trauma físico a cambio de un poco de incomodidad." #: lang/json/BIONIC_ITEM_from_json.py msgid "Battery System CBM" @@ -28398,7 +28408,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "MBC Almacenamiento de Energía Mk. II" msgstr[1] "MBCs Almacenamiento de Energía Mk. II" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -28423,7 +28433,7 @@ msgid "" "but each tile tunneled through costs 250 bionic power." msgstr "" "Aumenta la longitud de onda del cuerpo, permitiendo al usuario hacer un " -"túnel cuántico a través de las paredes, reapareciendo en el otro lado. El " +"túnel cuántico a través de los muros, reapareciendo en el otro lado. El " "consumo de energía en espera es mínimo, pero cada posición que se atraviesa " "cuesta 250 unidades de energía biónica." @@ -28562,8 +28572,8 @@ msgid "" msgstr "" "Este módulo biónico permite que todo el cuerpo del usuario resuene a muy " "alta potencia, creando una onda de choque de corto alcance. Aunque no " -"causará mucho daño a las criaturas, los objetos sólidos como las paredes y " -"las puertas seran dañados." +"causará mucho daño a las criaturas, los objetos sólidos como los muros y las" +" puertas seran dañados." #: lang/json/BIONIC_ITEM_from_json.py msgid "Olfactory Mask CBM" @@ -28752,7 +28762,7 @@ msgid "" "tools when crafting." msgstr "" "Un juego de herramientas implantadas quirúrgicamente: destornillador, " -"martillo, llave inglesa, sierra de arco, taladro, soldador y elementos " +"martillo, llave inglesa, sierra para metales, taladro, soldador y elementos " "calefactores. Estos pueden ser usados en lugar de muchas herramientas cuando" " se trabaja." @@ -28930,7 +28940,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "Tobillo chillón" msgstr[1] "Tobillos chillones" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "Un par de biónicos defectuosos que hacen ruidos de chirrido." @@ -29162,7 +29172,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "Pulgares Auto-Bloqueantes" msgstr[1] "Pulgares Auto-Bloqueantes" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "Un par de biónicos para el pulgar, defectuosos y con autobloqueo." @@ -30767,7 +30777,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "notas del luchador con cuchillo" msgstr[1] "notas del luchador con cuchillo" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -31057,7 +31067,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "planos para mod. repetidor de radio" msgstr[1] "planos para mod. repetidor de radio" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -31099,7 +31109,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "procedimientos de manejo de tricara" msgstr[1] "procedimientos de manejo de tricara" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -31119,7 +31129,7 @@ msgid_plural "schematics" msgstr[0] "esquema" msgstr[1] "esquemas" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -31127,9 +31137,9 @@ msgstr[1] "esquemas" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -31145,7 +31155,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "esquema de enfermerobot" msgstr[1] "esquemas de enfermerobot" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -31164,7 +31174,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "esquema de mercadobot" msgstr[1] "esquemas de mercadobot" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -31183,7 +31193,7 @@ msgid_plural "police bot schematics" msgstr[0] "esquema de polibot" msgstr[1] "esquemas de polibot" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -31200,7 +31210,7 @@ msgid_plural "eyebot schematics" msgstr[0] "esquema de ojobot" msgstr[1] "esquemas de ojobot" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -31217,7 +31227,7 @@ msgid_plural "security bot schematics" msgstr[0] "esquema de securibot" msgstr[1] "esquemas de securibot" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -31234,7 +31244,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "esquema de arañabot" msgstr[1] "esquemas de arañabot" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -31251,7 +31261,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "esquema de limpiabot" msgstr[1] "esquemas de limpiabot" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -31268,7 +31278,7 @@ msgid_plural "miner bot schematics" msgstr[0] "esquema de minerobot" msgstr[1] "esquemas de minerobot" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -31285,7 +31295,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "esquema de controldisturbiot" msgstr[1] "esquemas de controldisturbiot" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -31303,7 +31313,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "esquema de defensabot de laboratorio" msgstr[1] "esquemas de defensabot de laboratorio" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -31321,7 +31331,7 @@ msgid_plural "dispatch schematics" msgstr[0] "esquema de despachador" msgstr[1] "esquemas de despachador" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -31340,7 +31350,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "esquema de despachador militar" msgstr[1] "esquemas de despachador militar" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -31359,7 +31369,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "esquema de torreta de anti-material" msgstr[1] "esquemas de torreta de anti-material" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -31377,7 +31387,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "esquemas de foco reflector milspec" msgstr[1] "esquemas de foco reflector milspec" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -32102,7 +32112,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "El Espíritu del Aikido" msgstr[1] "El Espíritu del Aikido" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "Una guía completa para el Aikido." @@ -32113,7 +32123,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "Pugilismo Práctico" msgstr[1] "Pugilismo Práctico" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -32127,7 +32137,7 @@ msgid_plural "Capoeira 100" msgstr[0] "Capoeira 100" msgstr[1] "Capoeira 100" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "Una guía completa para la Capoeira." @@ -32138,7 +32148,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "El Ciempiés Lu Feng" msgstr[1] "El Ciempiés Lu Feng" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "Una guía completa para el Kung Fu Ciempiés." @@ -32149,7 +32159,7 @@ msgid_plural "The Red Crane" msgstr[0] "La Grulla Roja" msgstr[1] "La Grulla Roja" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "Una guía completa para el Kung Fu Grulla." @@ -32160,7 +32170,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "El Dragón de Jade" msgstr[1] "El Dragón de Jade" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "Una guía completa para el Kung Fu Dragón." @@ -32171,7 +32181,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "Eskrima Práctico" msgstr[1] "Eskrima Práctico" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "Una guía completa para el Eskrima." @@ -32182,7 +32192,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "El Espadachín Moderno" msgstr[1] "El Espadachín Moderno" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "Una guía completa para el Esgrima." @@ -32193,7 +32203,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "Kodokan Judo" msgstr[1] "Kodokan Judo" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "Una guía completa para el Judo." @@ -32204,7 +32214,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "Guía de Karate Shotokan" msgstr[1] "Guías de Karate Shotokan" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "Una guía completa para el Karate Shotokan." @@ -32215,7 +32225,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "Krav Maga Completo" msgstr[1] "Krav Maga Completo" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "Una guía completa para el Krav Maga." @@ -32226,7 +32236,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "El Leopardo Sordo" msgstr[1] "El Leopardo Sordo" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "Una guía completa para el Kung Fu Leopardo." @@ -32237,7 +32247,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "El Lagarto Kuo Chui" msgstr[1] "El Lagarto Kuo Chui" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "Una guía completa para el Kung Fu Lagarto." @@ -32248,7 +32258,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "Muay Thai Definitivo" msgstr[1] "Muay Thai Definitivo" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "Una guía completa para el Muay Thai." @@ -32259,7 +32269,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "Esencia del Ninjutsu" msgstr[1] "Esencia del Ninjutsu" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "Una guía completa para el Ninjutsu." @@ -32270,7 +32280,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "El Libro de los 5 Anillos" msgstr[1] "El Libro de los 5 Anillos" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -32285,7 +32295,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "El Pancraciasta Moderno" msgstr[1] "El Pancraciasta Moderno" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "Una guía completa al Pancracio." @@ -32296,7 +32306,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "El Escorpión Sun Chien" msgstr[1] "El Escorpión Sun Chien" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "Una guía completa para el Kung Fu Escorpión." @@ -32307,7 +32317,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "El Guerrero Indonesio" msgstr[1] "El Guerrero Indonesio" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "Una guía completa para el Pentjak Silat." @@ -32318,7 +32328,7 @@ msgid_plural "The Black Snake" msgstr[0] "La Serpiente Negra" msgstr[1] "La Serpiente Negra" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "Una guía completa para el Kung Fu Serpiente." @@ -32329,7 +32339,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "Manual Oficial de Entrenamiento de Taekwondo" msgstr[1] "Manual Oficial de Entrenamiento de Taekwondo" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "Una guía completa para el Taekwondo." @@ -32340,7 +32350,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "Volviéndose Uno con el Tao" msgstr[1] "Volviéndose Uno con el Tao" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "Una guía completa para el T'ai Chi Ch'uan." @@ -32351,7 +32361,7 @@ msgid_plural "The White Tiger" msgstr[0] "El Tigre Blanco" msgstr[1] "El Tigre Blanco" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "Una guía completa para el Kung Fu Tigre." @@ -32362,7 +32372,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "El Sapo Lo Mang" msgstr[1] "El Sapo Lo Mang" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "Una guía completa para el Kung Fu Sapo." @@ -32373,7 +32383,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "La Víbora Wei Pai" msgstr[1] "La Víbora Wei Pai" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "Una guía completa para el Kung Fu Víbora." @@ -32384,7 +32394,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "Zui Quan y tú" msgstr[1] "Zui Quan y tú" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "Una guía completa para el Zui Quan." @@ -32395,7 +32405,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "El Camino de la Lanza" msgstr[1] "El Camino de la Lanza" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "Una guía completa de Sōjutsu." @@ -32406,7 +32416,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "Hermosa primavera" msgstr[1] "Hermosa primavera" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "Una guía completa del Wing Chun Kung-fu." @@ -32418,7 +32428,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "Fior Di Battaglia" msgstr[1] "Fior Di Battaglia" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -32435,7 +32445,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "Lucha de Espadas Históricas Europeas" msgstr[1] "Lucha de Espadas Históricas Europeas" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -32617,7 +32627,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "Prospecto de Rancho" msgstr[1] "Prospectos de Rancho" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -33642,7 +33652,7 @@ msgid_plural "patient treatment records" msgstr[0] "registros de tratamiento de paciente" msgstr[1] "registros de tratamientos de pacientes" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -33654,7 +33664,7 @@ msgid_plural "national weather transcripts" msgstr[0] "transcripciones meteorológicas nacionales" msgstr[1] "transcripciones meteorológicas nacionales" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "Viejos registros del clima que son tan interesantes como una piedra." @@ -37906,7 +37916,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "esquema de gallina caminante" msgstr[1] "esquemas de gallina caminante" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -37925,7 +37935,7 @@ msgid_plural "diamond press schematics" msgstr[0] "esquema de prensa de diamantes" msgstr[1] "esquemas de prensa de diamantes" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -37944,7 +37954,7 @@ msgid_plural "nano forge schematics" msgstr[0] "esquema de nanoforja" msgstr[1] "esquemas de nanoforja" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -37963,7 +37973,7 @@ msgid_plural "tank drone schematics" msgstr[0] "esquema de dron tanque" msgstr[1] "esquemas de dron tanque" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -37982,7 +37992,7 @@ msgid_plural "tripod schematics" msgstr[0] "esquema de trípode" msgstr[1] "esquemas de trípode" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -38278,7 +38288,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "Siroco Abrasador" msgstr[1] "Siroco Abrasador" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -38290,7 +38300,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "Claridad Perfecta de la Mente y Cuerpo" msgstr[1] "copias de Claridad Perfecta de la Mente y Cuerpo" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -38302,7 +38312,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "El Libro de Mudora" msgstr[1] "copias de El Libro de Mudora" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -38317,7 +38327,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "Guerrero GuardiaTormenta" msgstr[1] "copias de Guerrero GuardiaTormenta" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -38329,7 +38339,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "La Vida y la Obra de Tiger Sauer" msgstr[1] "copias de La Vida y la Obra de Tiger Sauer" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -38344,7 +38354,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "Enciclopedia de Monstruos de Bolsillo" msgstr[1] "copias de Enciclopedia de Monstruos de Bolsillo" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -38360,7 +38370,7 @@ msgid_plural "Distant Horizon" msgstr[0] "Horizonte Distante" msgstr[1] "copias de Horizonte Distante" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "Este libro contiene la enseñanza de la disciplina del Sol Poniente." @@ -38371,7 +38381,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "Holocrón Jedi: Forma 1" msgstr[1] "Holocrones Jedi: Forma 1" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -38386,7 +38396,7 @@ msgid_plural "Shards of Granite" msgstr[0] " Esquirlas de Granito" msgstr[1] "copias de Esquirlas de Granito" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -38398,7 +38408,7 @@ msgid_plural "Reaping Talons" msgstr[0] "Cosechando Zarpas" msgstr[1] "copias de Cosechando Zarpas" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -38426,6 +38436,26 @@ msgstr[1] "copias de Teoría Básica de Hechicería" msgid "A beginner textbook on magical theories." msgstr "Un libro de texto para principiantes sobre teorías mágicas." +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[1] "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" +"Este libro está escrito en un lenguaje rúnico que no te resulta familiar. " +"Afortunadamente, hay varias imágenes muy detalladas que demuestran el " +"proceso de forjar una espada a partir de un lingote de metal plateado. " +"Tienes la impresión de que se trata de una especie de libro de texto para " +"herreros." + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -39628,8 +39658,8 @@ msgid "" "Creates a crackling magical warhammer full of lightning to smite your foes " "with, and of course, smash things to bits!" msgstr "" -"Crea un crepitante martillo mágico lleno de relámpagos para golpear a tus " -"enemigos y, por supuesto, ¡hacer añicos las cosas!" +"Crea un martillo de guerra mágico y crepitante lleno de rayos para golpear a" +" tus enemigos y, por supuesto, ¡destrozar cosas a cachitos!" #: lang/json/BOOK_from_json.py msgid "Scroll of Bless" @@ -39641,7 +39671,7 @@ msgstr[1] "Pergaminos de Bendición" #. ~ Description for Bless #: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "A spell of blessing that gives you energy and boosts your abilities." -msgstr "Un hechizo de bendición que te da energía y aumenta tus habilidades." +msgstr "Un hechizo de bendición que te da energía y potencia tus habilidades." #: lang/json/BOOK_from_json.py msgid "Scroll of Holy Blade" @@ -39667,7 +39697,7 @@ msgstr[1] "Pergaminos de Armadura Espiritual" msgid "" "Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -"¡El mal no logrará atravesar sus defensas si su fe es lo suficientemente " +"¡El mal no logrará atravesar tus defensas si tu fe es lo suficientemente " "fuerte!" #: lang/json/BOOK_from_json.py @@ -39711,8 +39741,8 @@ msgid "" "This spell creates a very short range bolt of electricity to shock your " "foes." msgstr "" -"Este hechizo crea un rayo de electricidad de muy corto alcance para impactar" -" a tus enemigos." +"Este hechizo crea un rayo de electricidad de muy corto alcance para " +"conmocionar a tus enemigos." #: lang/json/BOOK_from_json.py msgid "Scroll of Lesser Quantum Tunnel" @@ -39757,8 +39787,8 @@ msgstr "" #: lang/json/BOOK_from_json.py msgid "Scroll of Laze" msgid_plural "Scrolls of Laze" -msgstr[0] "Pergamino de Pereza" -msgstr[1] "Pergaminos de Pereza" +msgstr[0] "Pergamino de Lase" +msgstr[1] "Pergaminos de Lase" #. ~ Description for Scroll of Laze #. ~ Description for Laze @@ -39789,8 +39819,8 @@ msgstr "" #: lang/json/BOOK_from_json.py msgid "Scroll of Mirror Image" msgid_plural "Scrolls of Mirror Image" -msgstr[0] "Pergamino de Imagen Espejo" -msgstr[1] "Pergaminos de Imagen Espejo" +msgstr[0] "Pergamino de Imagen Especular" +msgstr[1] "Pergaminos de Imagen Especular" #. ~ Description for Scroll of Mirror Image #. ~ Description for Mirror Image @@ -39805,8 +39835,8 @@ msgstr "" #: lang/json/BOOK_from_json.py msgid "Scroll of Lightning Blast" msgid_plural "Scrolls of Lightning Blast" -msgstr[0] "Pergamino de Bomba Eléctrica" -msgstr[1] "Pergaminos de Bomba Eléctrica" +msgstr[0] "Pergamino de Ráfaga Eléctrica" +msgstr[1] "Pergaminos de Ráfaga Eléctrica" #. ~ Description for Scroll of Lightning Blast #. ~ Description for Lightning Blast @@ -39817,8 +39847,8 @@ msgid "" "to fire off several quick ones in a row." msgstr "" "Disparas una pequeña bola concentrada de rayos al objetivo. La electricidad " -"se difunde rápidamente, así que no hace mucho daño, pero puedes disparar " -"varias veces seguidas." +"se difunde rápidamente, así que no hace mucho daño, pero eres capaz de " +"disparar varias veces seguidas." #: lang/json/BOOK_from_json.py msgid "Scroll of Necrotic Gaze" @@ -39833,8 +39863,8 @@ msgid "" "You use the power of your own blood to imbue necrotic energy into your gaze," " damaging the target you look at." msgstr "" -"Utilizas el poder de tu propia sangre para impregnar la energía necrótica en" -" tu mirada, dañando el objetivo que miras." +"Utilizás la energía de tu propia sangre para imbuir energía necrótica a tu " +"mirada, dañando al enemigo que estés mirando." #: lang/json/BOOK_from_json.py msgid "Scroll of Purification Seed" @@ -39922,9 +39952,9 @@ msgid "" " powerful than you can handle, the spell drains your life force to make up " "the difference." msgstr "" -"Destierra a un monstruo a la dimensión inferior menos conocida. Si un " -"monstruo es más poderoso de lo que puedes manejar, el hechizo drena tu " -"fuerza vital para compensar la diferencia." +"Destierra un monstruo hacia una dimensión menos conocida. Si un monstruo es " +"más poderoso de lo que puedes manejar, el hechizo drena tu fuerza vital para" +" compensar la diferencia." #: lang/json/BOOK_from_json.py msgid "Scroll of Acid Resistance" @@ -39935,7 +39965,7 @@ msgstr[1] "Pergaminos de Resistencia al Ácido" #. ~ Description for Scroll of Acid Resistance #: lang/json/BOOK_from_json.py msgid "This spell creates an invisible aura to protect you from acid." -msgstr "Este hechizo crea un aura invisible para protegerte del ácido." +msgstr "Este hechizo crea un aura invisible que te protege del ácido." #: lang/json/BOOK_from_json.py msgid "Scroll of Lightning Storm" @@ -40000,8 +40030,8 @@ msgid "" "Envelops your entire body in armor formed from living rock, encumbering yet " "protective." msgstr "" -"Envuelve todo el cuerpo en una armadura formada por roca viva, que es a la " -"vez gravosa y protectora." +"Envuelve todo el cuerpo en una armadura formada por roca viva, incómoda pero" +" protectora." #: lang/json/BOOK_from_json.py msgid "Scroll of Pillar of Stone" @@ -40017,9 +40047,9 @@ msgid "" "Experience will make the task easier, and less disruptive to the surrounding" " area." msgstr "" -"Dibujando sobre la tierra circundante, se forma un pilar de roca sólida. La " -"experiencia hará la tarea más fácil, y menos perturbadora para el área " -"circundante." +"Aprovechando la tierra que te rodea, formas un pilar de roca sólida. La " +"experiencia hará la tarea más fácil y menos disruptiva para los el área " +"cercana." #: lang/json/BOOK_from_json.py msgid "Scroll of Paralytic Dart" @@ -40051,7 +40081,7 @@ msgid "" "your prey in in a field of twitching poisonous tendrils." msgstr "" "Proyecta un rocío de sangre acre a tu alrededor, creciendo para atrapar a tu" -" presa en un campo de zarcillos venenosos." +" presa en un campo de tentáculos retorcidos venenosos." #: lang/json/BOOK_from_json.py msgid "Scroll of Coagulant Weave" @@ -40124,8 +40154,8 @@ msgid "" "pressure will floor any enemies caught in it, the conjuration is otherwise " "harmless." msgstr "" -"Dibuja una amplia pared de niebla espesa. Mientras que la repentina fuerza " -"de la presión del aire derribará a cualquier enemigo atrapado en ella, el " +"Dibuja un amplio muro de niebla espesa. Mientras que la repentina fuerza de " +"la presión del aire derribará a cualquier enemigo atrapado en ella, el " "conjuro es por lo demás inofensivo." #: lang/json/BOOK_from_json.py @@ -40186,7 +40216,8 @@ msgid "" "of the writings, but it probably won't work the same." msgstr "" "Este pergamino está cubierto de savia y espinas de rosa. Todavía puedes ver " -"algunos de los escritos, pero probablemente no funcionará igual." +"algunos de los escritos, pero probablemente no vaya a funcionar de igual " +"forma." #: lang/json/BOOK_from_json.py msgid "Scroll of Feral Form" @@ -40199,7 +40230,7 @@ msgstr[1] "Pergaminos de Forma Salvaje" msgid "" "Unleash your inner beast by snapping a fur-covered bone, becoming beastly." msgstr "" -"Libera tu bestia interior rompiendo un hueso cubierto de piel, " +"Libera tu bestia interior al romper un hueso cubierto de piel, " "convirtiéndote en bestia." #: lang/json/BOOK_from_json.py @@ -40211,7 +40242,7 @@ msgstr[1] "Pergaminos de Espada Flamígera" #. ~ Description for Scroll of Flamesword #: lang/json/BOOK_from_json.py msgid "Ignite a wooden sword to create a flaming saber." -msgstr "Encender una espada de madera para crear un sable llameante." +msgstr "Enciende una espada de madera para crear un sable llameante." #: lang/json/BOOK_from_json.py msgid "Scroll of Flamebreath" @@ -40226,7 +40257,7 @@ msgid "" "ashes that stick to those in its path." msgstr "" "Un paquete lleno de polvo combustible se enciende, creando un cono de fuego " -"con cenizas que se pegan a los que se encuentran a su paso." +"con cenizas que se pegan a lo que se encuentra a su paso." #: lang/json/BOOK_from_json.py msgid "Scroll of Caustic Aura" @@ -40271,7 +40302,7 @@ msgid "" "tears itself apart." msgstr "" "Infunde una honda con un exceso de energía, entregando lanzamientos " -"devastadores antes de que se rompa en partes." +"devastadores antes de romperse en partes." #: lang/json/BOOK_from_json.py msgid "Scroll of Knifeshot" @@ -40299,7 +40330,7 @@ msgid "" msgstr "" "Motor de Combustión Infernal Manificado (Manejable)\n" "Esquemas detallados para una motocicleta, que de alguna manera obviamente es simultáneamente imposible y sin embargo intrigantemente intuitiva.\n" -"En un margen, la palabra \"Mojocicleta\" ha sido garabateada en una mano fluida." +"En un margen, la palabra \"Mojocicleta\" ha sido garabateada a mano alzada." #: lang/json/BOOK_from_json.py msgid "Scroll of Nova Flare" @@ -40317,8 +40348,8 @@ msgstr "" #: lang/json/BOOK_from_json.py msgid "Scroll of Jar of Force" msgid_plural "Scrolls of Jar of Force" -msgstr[0] "Pergamino de Tarro de la Fuerza" -msgstr[1] "Pergaminos de Tarro de la Fuerza" +msgstr[0] "Pergamino de Tarro de Fuerza" +msgstr[1] "Pergaminos de Tarro de Fuerza" #. ~ Description for Scroll of Jar of Force #: lang/json/BOOK_from_json.py @@ -40339,8 +40370,8 @@ msgid "" "Your hands freeze anything they touch at temperatures so cold it slows down " "your foes." msgstr "" -"Tus manos congelan todo lo que tocan a temperaturas tan frías que ralentizan" -" a tus enemigos." +"Tus manos congelan todo lo que tocan a temperaturas tan frías que ralentiza " +"a tus enemigos." #: lang/json/BOOK_from_json.py msgid "Scroll of Nature's Commune" @@ -40355,20 +40386,20 @@ msgid "" " your body while in communion with the flora and fauna around you." msgstr "" "Tu conexión con la naturaleza te permite ser uno con ella; revitalizas tu " -"cuerpo mientras estás en comunión con la flora y la fauna que te rodea." +"cuerpo cuando entras en comunión con la flora y la fauna que te rodea." #: lang/json/BOOK_from_json.py msgid "Scroll of seed of growth" msgid_plural "Scrolls of seed of growth" -msgstr[0] "Pergamino de semillas de crecimiento" -msgstr[1] "Pergaminos de semillas de crecimiento" +msgstr[0] "Pergamino de Semilla de Crecimiento" +msgstr[1] "Pergaminos de Semilla de Crecimiento" #. ~ Description for Scroll of seed of growth #. ~ Description for Seed of Growth #: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "Offer some of your life in a ritual to get tokens of growth in return." msgstr "" -"Ofrece parte de tu vida en un ritual para obtener a cambio semillas de " +"Ofreces parte de tu vida en un ritual para obtener a cambio símbolos de " "crecimiento." #: lang/json/BOOK_from_json.py @@ -40385,8 +40416,8 @@ msgstr "static std::string d( spell sp ) const;" #: lang/json/BOOK_from_json.py msgid "A Beginner's Guide to Magic" msgid_plural "copies of A Beginner's Guide to Magic" -msgstr[0] "Guía de Principiante en Magia" -msgstr[1] "copias de Guía de Principiante en Magia" +msgstr[0] "Guía de Magia para Principiantes" +msgstr[1] "copias de Guía de Magia para Principiantes" #. ~ Description for A Beginner's Guide to Magic #: lang/json/BOOK_from_json.py @@ -40411,7 +40442,7 @@ msgid "" msgstr "" "Un libro de aspecto profesional sobre la formación de tormentas, " "estructurado como muchos libros de texto universitarios. Tiene menos " -"aplicación de la que cabría esperar por su tamaño." +"aplicación de lo que cabría esperar por su tamaño." #: lang/json/BOOK_from_json.py msgid "Wizarding Guide to Backpacking" @@ -40427,7 +40458,7 @@ msgid "" "useful." msgstr "" "Esta parece ser la versión del hechizo de una guía de lo que hay que llevar " -"cuando se va de mochilero. Es un poco voluminoso, pero ciertamente será " +"cuando se va de mochilero. Es un poco voluminosa, pero ciertamente será " "útil." #: lang/json/BOOK_from_json.py @@ -40441,14 +40472,14 @@ msgstr[1] "copias de Piromancia para Herejes" msgid "" "This charred husk of a book still contains many ways to light things aflame." msgstr "" -"Esta cáscara carbonizada de un libro todavía contiene muchas formas de " -"encender las cosas en llamas." +"Esta cáscara carbonizada de libro todavía contiene muchas maneras de prender" +" cosas en llamas." #: lang/json/BOOK_from_json.py msgid "A Treatise on Magical Elements" msgid_plural "copies of A Treatise on Magical Elements" -msgstr[0] "Tratado sobre Elementos Mágicos" -msgstr[1] "copias de Tratado sobre Elementos Mágicos" +msgstr[0] "Un Tratado sobre Elementos Mágicos" +msgstr[1] "copias de Un Tratado sobre Elementos Mágicos" #. ~ Description for A Treatise on Magical Elements #: lang/json/BOOK_from_json.py @@ -40456,7 +40487,7 @@ msgid "" "This details complex diagrams, rituals, and choreography that describes " "various spells." msgstr "" -"Esto detalla complejos diagramas, rituales y coreografías que describen " +"Este detalla complejos diagramas, rituales y coreografías que describen " "varios hechizos." #: lang/json/BOOK_from_json.py @@ -40471,7 +40502,7 @@ msgid "" "This appears to mostly be a religious text, but it does have some notes on " "healing." msgstr "" -"Esto parece ser mayormente un texto religioso, pero tiene algunas notas " +"Este parece ser mayormente un texto religioso, pero tiene algunas notas " "sobre la curación." #: lang/json/BOOK_from_json.py @@ -40486,8 +40517,8 @@ 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 pesar del título, esto parece estar escrito en inglés medio. Un poco " -"obtuso, pero se puede entender la mayoría de las palabras bastante bien." +"A pesar del título, este parece estar escrito en Español Antiguo. Un poco " +"obtuso, pero puedes entender la mayoría de las palabras bastante bien." #: lang/json/BOOK_from_json.py msgid "Winter's Eternal Grasp" @@ -40538,25 +40569,25 @@ msgstr[1] "copias de De La Luz y las Falsas Creencias" #: lang/json/BOOK_from_json.py msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -"Un pequeño libro blanco, amplifica sutilmente la luz ambiental a su " +"Un pequeño libro blanco, que amplifica levemente la luz ambiental a tu " "alrededor." #: lang/json/BOOK_from_json.py msgid "The Tome of Flesh" msgid_plural "copies of The Tome of Flesh" -msgstr[0] "El Tomo de la Carne" +msgstr[0] "El Tomo de Carne" msgstr[1] "copias de El Tomo de Carne" #. ~ Description for The Tome of Flesh #: lang/json/BOOK_from_json.py msgid "A small tome, seemingly covered in tanned human skin." -msgstr "Un pequeño tomo, aparentemente cubierto de piel humana bronceada." +msgstr "Un pequeño tomo, aparentemente cubierto de piel humana curtida." #: lang/json/BOOK_from_json.py msgid "The Book of Trees" msgid_plural "copies of The Book of Trees" -msgstr[0] "El Libro de los Árboles" -msgstr[1] "copias de El Libro de los Árboles" +msgstr[0] "El Libro de Árboles" +msgstr[1] "copias de El Libro de Árboles" #. ~ Description for The Book of Trees #: lang/json/BOOK_from_json.py @@ -40575,8 +40606,8 @@ msgid "" "This book details spells that use your mana to recover various physiological" " effects." msgstr "" -"Este libro detalla los hechizos que usan tu maná para recuperar varios " -"efectos fisiológicos." +"Este libro detalla los hechizos que utilizantu maná para recuperarse de " +"varios efectos fisiológicos." #: lang/json/BOOK_from_json.py msgid "The Tome of The Battle Mage" @@ -40590,8 +40621,8 @@ msgid "" "Your standard wizardy looking spellbook, filled with Magus combat spells. " "You sure lucked out!" msgstr "" -"Es el libro de hechizos estándar, lleno de hechizos de combate Magus. ¡Esto " -"es tener suerte!" +"Tu libro de hechizos estándar, lleno de hechizos de combate Magus. ¡Esto es " +"tener suerte!" #: lang/json/BOOK_from_json.py msgid "The Tome of the Hollow Earth" @@ -40621,8 +40652,8 @@ 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 "" -"Este pequeño libro ligero parece no existir casi del todo, digamos que el " -"97% sí existe. Contiene hechizos del Magus centrados en el movimiento." +"Este pequeño libro ligero parece no existir completamente, digamos que " +"existe en un 97%. Contiene hechizos del Magus centrados en el movimiento." #: lang/json/BOOK_from_json.py msgid "Smudged Scroll" @@ -40639,14 +40670,14 @@ msgid "" "well." msgstr "" "Parece que alguien estaba diseñando un nuevo hechizo, pero derramó una taza " -"de café sobre él y lo arrugó con rabia. Se puede decir que definitivamente " -"arrojará algo, pero no se puede estar seguro de que funcione muy bien." +"de café sobre él y lo arrugó con rabia. Te das cuenta de que definitivamente" +" invocará algo, pero no puedes estar seguro de que funcione muy bien." #: lang/json/BOOK_from_json.py msgid "Necromantic Minions for Dummies" msgid_plural "copies of Necromantic Minions for Dummies" -msgstr[0] "Súbditos Necrománticos para Tontos" -msgstr[1] "copias de Súbditos Necrománticos para Tontos" +msgstr[0] "Esbirros Necrománticos para Tontos" +msgstr[1] "copias de Esbirros Necrománticos para Tontos" #. ~ Description for Necromantic Minions for Dummies #: lang/json/BOOK_from_json.py @@ -40654,9 +40685,9 @@ 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 "" -"Este libro detalla varias formas de invocar a un compinche no-muerto para " -"que pelee por ti. Todos ellos parecen desaparecer después de un corto " -"tiempo, desmoronándose en polvo." +"Este libro detalla varias formas de invocar a un esbirro no-muerto para que " +"pelee por ti. Todos desaparecen después de un corto tiempo, deshaciéndose en" +" polvo." #: lang/json/BOOK_from_json.py msgid "Fundamentals of Technomancy" @@ -40700,8 +40731,8 @@ msgid "" "This lab reference material book is thick and overflowing with information " "on combining magic with EM radiation." msgstr "" -"Este libro de referencia de laboratorio es grueso y desborda información " -"sobre combinar magia con radiación electromagnética." +"Este libro de referencia de laboratorio es grueso y desborda con información" +" sobre combinar magia con radiación electromagnética." #: lang/json/BOOK_from_json.py msgid "Runic Tablet shard" @@ -40735,11 +40766,11 @@ msgid "" "There's lots of jargon, but with intense study you can probably learn a " "thing or two about portals." msgstr "" -"Este libro describe con gran detalle cómo el tiempo y el espacio se " -"tambalean y no son euclidianos. También parece tener una docena de sistemas " -"de coordenadas diferentes que utiliza casi indistintamente, lo que hace que " -"sea difícil de seguir. Hay mucha jerga, pero con un intenso estudio " -"probablemente puedas aprender una o dos cosas sobre los portales." +"Este libro describe con gran detalle cómo el tiempo y el espacio son " +"tambaleantes y no son euclidianos. También parece tener una docena de " +"sistemas de coordenadas diferentes que utiliza casi indistintamente, lo que " +"hace que sea difícil de seguir. Hay mucha jerga, pero con un intenso estudio" +" probablemente puedas aprender una o dos cosas sobre los portales." #: lang/json/BOOK_from_json.py msgid "Transcendence of the Human Condition" @@ -40761,8 +40792,8 @@ msgstr "" #: lang/json/BOOK_from_json.py msgid "SugarKin flyer" msgid_plural "SugarKin flyers" -msgstr[0] "Volante de SugarKin" -msgstr[1] "Volantes de SugarKin" +msgstr[0] "folleto de SugarKin" +msgstr[1] "folletos de SugarKin" #. ~ Description for SugarKin flyer #: lang/json/BOOK_from_json.py @@ -40777,7 +40808,7 @@ msgid "" " I love you,\n" " - F. \"." msgstr "" -"Un volante para algún tipo de caramelo. Muestra una imagen de un humano brillante hecho de caramelo liso mirándote con terror. \"SugarKin\" el primer caramelo humano de tamaño natural. ¿Eres un verdadero monstruo? ¿Serás capaz de devorarlo?\"\n" +"Un folleto para algún tipo de caramelo. Muestra una imagen de un humano brillante hecho de caramelo liso mirándote con terror. \"SugarKin\" el primer caramelo humano de tamaño natural. ¿Eres un verdadero monstruo? ¿Serás capaz de devorarlo?\"\n" "En la parte de atrás del folleto puedes ver algunas palabras garabateadas apresuradamente:\n" "\"Hola, mi niña, bienvenida a este mundo. Un mundo en el que podrás prosperar si sigues unas cuantas reglas:\n" "1) Nunca jamás entres en contacto con el agua, ¡te derretiría!\n" @@ -40793,10 +40824,10 @@ msgid_plural "bird litter" msgstr[0] "desechos de pajaro" msgstr[1] "desechos de pajaro" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." -msgstr "Excrementos de pájaros, plumas y trocitos de basura manchados." +msgstr "Excrementos de pájaros, plumas y trocitos de basura sucios." #: lang/json/COMESTIBLE_from_json.py msgid "cow pie" @@ -40821,52 +40852,51 @@ msgstr[1] "boñigas de perro" #. ~ Description for dog dung #: lang/json/COMESTIBLE_from_json.py msgid "Droppings from a canine." -msgstr "Los excrementos de un canino." +msgstr "Excrementos de un canino." #: lang/json/COMESTIBLE_from_json.py msgid "manure" msgid_plural "manures" -msgstr[0] "excremento" -msgstr[1] "excrementos" +msgstr[0] "estiércol" +msgstr[1] "estiércol" #. ~ Description for manure #: lang/json/COMESTIBLE_from_json.py msgid "Common manure, could probably be used to make some great fertilizer." -msgstr "" -"Abono común, seguramente podría ser utilizado como un gran fertilizante." +msgstr "Abono común, podría ser utilizado para hacer un buen fertilizante." #: lang/json/COMESTIBLE_from_json.py msgid "roach dirt" msgid_plural "roach dirts" msgstr[0] "suciedad de cucaracha" -msgstr[1] "suciedades de cucaracha" +msgstr[1] "suciedad de cucarachas" #. ~ Description for roach dirt #: lang/json/COMESTIBLE_from_json.py msgid "Large black pellets of rotting material." -msgstr "Son bolitas grandes y negras de materia en descomposición." +msgstr "Bolitas grandes y negras de materia en descomposición." #: lang/json/COMESTIBLE_from_json.py msgid "bleach" msgid_plural "bleach" msgstr[0] "lejía" -msgstr[1] "lejías" +msgstr[1] "lejía" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "derrame de lejía" msgstr[1] "derrames de lejía" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " "highly unsafe to drink." msgstr "" -"Es hipoclorito de sodio, un agente limpiador muy común en los hogares. Es " -"muy peligroso bebérselo." +"Esto es hipoclorito de sodio, un agente limpiador muy común en los hogares. " +"Es muy peligroso bebérselo." #: lang/json/COMESTIBLE_from_json.py msgid "ammonia" @@ -40874,14 +40904,14 @@ msgid_plural "ammonia" msgstr[0] "amoníaco" msgstr[1] "amoníaco" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" " unsafe to drink." msgstr "" -"Es hidróxido de amonio, un agente limpiador muy común en los hogares. Es muy" -" peligroso bebérselo." +"Esto es hidróxido de amonio, un agente limpiador muy común en los hogares. " +"Es muy peligroso bebérselo." #: lang/json/COMESTIBLE_from_json.py msgid "liquid fertilizer" @@ -40889,7 +40919,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "fertilizante líquido" msgstr[1] "fertilizante líquido" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "Un elixir rico en nutrientes para plantas." @@ -40900,7 +40930,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "fertilizante comercial" msgstr[1] "fertilizante comercial" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "Gránulos ricos en nutrientes para plantas." @@ -40911,7 +40941,7 @@ msgid_plural "fungicide" msgstr[0] "fungicida" msgstr[1] "fungicida" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -40926,7 +40956,7 @@ msgid_plural "insecticide" msgstr[0] "insecticida" msgstr[1] "insecticidas" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -40941,10 +40971,10 @@ msgid_plural "salt water" msgstr[0] "agua salada" msgstr[1] "agua salada" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." -msgstr "Es agua con sal añadida. No sirve para beber." +msgstr "Agua con sal añadida. Mejor no beberlo." #: lang/json/COMESTIBLE_from_json.py msgid "soapy water" @@ -40952,10 +40982,10 @@ msgid_plural "soapy water" msgstr[0] "agua con jabón" msgstr[1] "agua con jabón" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." -msgstr "Agua con jabón añadido. No es buena para beber." +msgstr "Agua con jabón añadido. Mejor no beberlo." #: lang/json/COMESTIBLE_from_json.py msgid "sewage sample" @@ -40966,7 +40996,8 @@ msgstr[1] "muestras de aguas residuales" #. ~ Description for sewage sample #: lang/json/COMESTIBLE_from_json.py msgid "A sample of sewage from a treatment plant. Gross." -msgstr "Una muestra de agua cloacal de una planta de tratamiento. Un asco." +msgstr "" +"Una muestra de agua de cloaca de una planta de tratamiento. Asqueroso." #: lang/json/COMESTIBLE_from_json.py msgid "sulfuric acid" @@ -40974,7 +41005,7 @@ msgid_plural "sulfuric acid" msgstr[0] "ácido sulfúrico" msgstr[1] "ácido sulfúrico" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -40993,7 +41024,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "ácido hidroclórico" msgstr[1] "ácido hidroclórico" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -41001,8 +41032,8 @@ msgid "" "discovery. It still has a vast multitude of uses." msgstr "" "Ácido clorhídrico, también conocido como ácido muriático. Es un ácido fuerte" -" con un olor distintivo, importante usado desde su descubrimiento. Tiene una" -" gran cantidad de usos en la actualidad." +" con un olor distintivo, importante y usado frecuentemente desde su " +"descubrimiento. Tiene una gran cantidad de usos en la actualidad." #: lang/json/COMESTIBLE_from_json.py msgid "nitric acid" @@ -41010,7 +41041,7 @@ msgid_plural "nitric acid" msgstr[0] "ácido nítrico" msgstr[1] "ácido nítrico" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -41020,7 +41051,7 @@ msgid "" "beings enjoy being doused in nitric acid." msgstr "" "El ácido nítrico es un fuerte oxidante y un material extremadamente " -"corrosivo. Principalmente se usa en la producción de fertilizantes " +"corrosivo. Principalmente usado en la producción de fertilizantes " "sintéticos, el grabado de placas de circuitos, y en la carpintería. Sigue " "siendo bastante útil tanto para hacer una amplia gama de agentes " "pirotécnicos y explosivos además de como un arma directa: ningún ser vivo " @@ -41041,36 +41072,36 @@ msgid "" "water." msgstr "" "Diseñadas para la desinfección y clarificación del agua peligrosa, estas " -"pastillas de purificación a base de halazona, quitan los contaminantes " +"tabletas de purificación a base de halazona, retiran los contaminantes " "peligrosos utilizando poderosos químicos. La etiqueta dice que hay que usar " -"una pastilla por unidad de agua." +"una tableta por unidad de agua." #: lang/json/COMESTIBLE_from_json.py msgid "sewage water" msgid_plural "sewage water" -msgstr[0] "aguas cloacales" -msgstr[1] "aguas cloacales" +msgstr[0] "agua de alcantarillado" +msgstr[1] "aguas de alcantarillado" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" -"Líquido turbio proveniente de las alcantarillas, con un hedor horrible." +"Líquido turbio proveniente de las alcantarillas con un hedor horrible." #: lang/json/COMESTIBLE_from_json.py msgid "lye" msgid_plural "lye" -msgstr[0] "lejía" -msgstr[1] "lejías" +msgstr[0] "sosa caústica" +msgstr[1] "sosa caústica" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " "with care." msgstr "" "Esta es una forma líquida de hidróxido de sodio. Es altamente corrosiva; " -"manéjela con cuidado." +"manejar con cuidado." #: lang/json/COMESTIBLE_from_json.py msgid "ether" @@ -41078,7 +41109,7 @@ msgid_plural "ether" msgstr[0] "éter" msgstr[1] "éter" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -41088,8 +41119,8 @@ msgid "" msgstr "" "Un disolvente industrial útil, y el primer anestésico inhalatorio de uso " "generalizado. Sus incómodos efectos secundarios y su tendencia a explotar " -"hicieron que cayera en desgracia hace décadas en el mundo desarrollado. Sin " -"embargo, si no se puede conseguir uno bueno, puede ser un sustituto pasable." +"hicieron que cayera en desgracia hace décadas en el mundo desarrollado. Si " +"no puedes conseguir uno bueno, sin embargo, puede ser un sustituto pasable." #: lang/json/COMESTIBLE_from_json.py msgid "dimethyl sulfoxide" @@ -41097,7 +41128,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "dimetilsulfóxido" msgstr[1] "dimetilsulfóxido" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -41105,10 +41136,10 @@ msgid "" "that it absorbs very quickly through the skin, causing a garlic flavor in " "the mouth, even if it touched your arm." msgstr "" -"El dimetil sulfóxido, o DMSO, es un importante y común disolvente apótico, " -"capaz de disolver una gran variedad de cosas. Tiene la extraña propiedad de " -"que se absorbe muy rápidamente a través de la piel, causando un sabor a ajo " -"en la boca incluso si toca tu brazo." +"El dimetilsulfóxido, o DMSO, es un disolvente aprótico común e importante, " +"capaz de disolver una enorme variedad de cosas. Tiene la extraña propiedad " +"de que se absorbe muy rápidamente a través de la piel, provocando un sabor a" +" ajo en la boca, incluso si solo te tocó el brazo." #: lang/json/COMESTIBLE_from_json.py msgid "chloroform" @@ -41116,7 +41147,7 @@ msgid_plural "chloroform" msgstr[0] "cloroformo" msgstr[1] "cloroformo" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -41133,7 +41164,7 @@ msgid_plural "phenol" msgstr[0] "fenol" msgstr[1] "fenol" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -41143,9 +41174,9 @@ msgid "" "gloves." msgstr "" "Este útil material es un potente disolvente y tiene una amplia gama de " -"aplicaciones reactivas. Puede ser usado para hacer un gran número de " -"plásticos y polímeros, puede ser un antiséptico, puede quitar la pintura y " -"descomponer el epoxi, y puede quemar la piel como un papel de seda bajo una " +"aplicaciones reactivas. Puede utilizarse para fabricar un gran número de " +"plásticos y polímeros, como antiséptico, para decapar la pintura, " +"descomponer epoxi, y puede quemar la piel como si fuera un clinex bajo una " "pistola de calor. Usa guantes." #: lang/json/COMESTIBLE_from_json.py @@ -41154,7 +41185,7 @@ msgid_plural "glycerol" msgstr[0] "glicerol" msgstr[1] "glicerol" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -41170,16 +41201,16 @@ msgid_plural "peptone broth powder" msgstr[0] "caldo de peptona en polvo" msgstr[1] "caldo de peptona en polvo" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " "bacteria to eat, but if you were desperate, you could eat it too; it's not " "much different from cup noodle stock." msgstr "" -"Esta es una solución salada premezclada de proteína y azúcar. Está hecha " -"para que la bacteria se la coma, pero si estás desesperado también puedes " -"comerla; no es muy diferente del caldo de fideos de taza." +"Una solución salada premezclada de proteína y azúcar. Está diseñada para ser" +" consumida por las bacterias, pero si estás desesperado también puedes " +"comerla. No es muy distinta a una de esas sopas de fideos en cajita." #: lang/json/COMESTIBLE_from_json.py msgid "agar" @@ -41187,7 +41218,7 @@ msgid_plural "agar" msgstr[0] "agar" msgstr[1] "agar" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -41198,7 +41229,7 @@ msgstr "" "Estas láminas transparentes de alga procesada puede ser disuelta en agua " "hirviendo para crear un gel muy fuerte y resistente a la temperatura. No " "solamente es bueno para hacer gel para separar las moléculas por tamaño, " -"también sirve como ingrediente para hacer que tus gelatinas firmes." +"también sirve como ingrediente para hacer que tus gelatinas esten firmes." #: lang/json/COMESTIBLE_from_json.py msgid "acrylamide" @@ -41206,7 +41237,7 @@ msgid_plural "acrylamide" msgstr[0] "acrilamida" msgstr[1] "acrilamida" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -41221,14 +41252,14 @@ msgid_plural "acetylene" msgstr[0] "acetileno" msgstr[1] "acetileno" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " "acetylene makes a great welding gas." msgstr "" "Un gas inflamable que explota bajo presión. Combinado con el oxígeno, el " -"acetileno es un gran gas de soldadura." +"acetileno es un gran gas para soldar." #: lang/json/COMESTIBLE_from_json.py msgid "formic acid" @@ -41236,7 +41267,7 @@ msgid_plural "formic acid" msgstr[0] "ácido fórmico" msgstr[1] "ácido fórmico" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -41251,7 +41282,7 @@ msgid_plural "latex" msgstr[0] "latex" msgstr[1] "latex" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -41263,7 +41294,7 @@ msgid_plural "citric acid" msgstr[0] "ácido cítrico" msgstr[1] "ácido cítrico" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -41292,15 +41323,15 @@ msgid "" "know-how, but only if you hurry." msgstr "" "Un órgano frágil y ligeramente tembloroso para la producción y " -"almacenamiento del veneno de las avispas. Se podrían extraer algunos " -"productos químicos muy útiles de él con los conocimientos adecuados, pero " -"sólo si se da prisa." +"almacenamiento del veneno de avispas. Se podrían extraer algunos productos " +"químicos muy útiles de él con los conocimientos adecuados, pero sólo si te " +"das prisa." #: lang/json/COMESTIBLE_from_json.py msgid "bee venom gland" msgid_plural "bee venom glands" -msgstr[0] "glándula de veneno de avispa" -msgstr[1] "glándulas de veneno de avispa" +msgstr[0] "glándula de veneno de abeja" +msgstr[1] "glándulas de veneno de abeja" #. ~ Description for bee venom gland #: lang/json/COMESTIBLE_from_json.py @@ -41312,7 +41343,7 @@ msgstr "" "Un órgano frágil y ligeramente tembloroso para la producción y " "almacenamiento del veneno de las abejas de miel. Se podrían extraer algunos " "productos químicos muy útiles de él con los conocimientos adecuados, pero " -"sólo si se da prisa." +"sólo si te das prisa." #: lang/json/COMESTIBLE_from_json.py msgid "sac of paralytic venom" @@ -41328,7 +41359,7 @@ msgid "" "yourself. If you know your way around poisons you might be able to find a " "use for it." msgstr "" -"Esta vesícula flexible y grisácea está llena hasta el borde con el potente " +"Esta vesícula flexible y grisácea está llena hasta arriba con el potente " "agente paralizante que los trífidos utilizan para someter a los " "fertilizantes que aún se mueven como tú. Si conoces los venenos, podrías " "encontrarle un uso." @@ -41337,7 +41368,7 @@ msgstr "" msgid "sac of triffid fungicide" msgid_plural "sacs of triffid fungicide" msgstr[0] "saco trífido con fungicida" -msgstr[1] "sacos trífido con fungicida" +msgstr[1] "sacos de fungicida trífido" #. ~ Description for sac of triffid fungicide #: lang/json/COMESTIBLE_from_json.py @@ -41358,7 +41389,7 @@ msgid_plural "acetic anhydride" msgstr[0] "anhídrido acético" msgstr[1] "anhídrido acético" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," @@ -41368,6 +41399,17 @@ msgstr "" "conocimientos químicos, podrías usarla para convertir fácilmente la morfina " "en heroína." +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "jabón líquido" +msgstr[1] "jabones líquido" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "Jabón líquido." + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -41381,8 +41423,8 @@ msgid "" " It will still rot, and needs to be cured and tanned." msgstr "" "La piel cruda de un animal, rápidamente se convirtió en una bolsa " -"improvisada para su almacenamiento. Todavía se pudrirá, y necesita ser " -"curada y curtida." +"improvisada para almacenamiento. Se va a pudrir, necesita ser curada y " +"curtida." #: lang/json/COMESTIBLE_from_json.py msgid "tainted hide bag" @@ -41396,8 +41438,9 @@ msgid "" "The raw skin of a monster, quickly turned into a makeshift bag for storage." " It will still rot, and needs to be cured and tanned." msgstr "" -"Es la piel cruda de un monstruo, convertida rápidamente en un bolso para " -"llevar cosas. Igual se va a empezar a pudrir, necesita ser curada y curtida." +"La piel cruda de un monstruo, rápidamente se convirtió en una bolsa " +"improvisada para almacenamiento. Se va a pudrir, necesita ser curada y " +"curtida." #: lang/json/COMESTIBLE_from_json.py msgid "Spice" @@ -41411,7 +41454,7 @@ msgid_plural "marloss wine" msgstr[0] "vino de marloss" msgstr[1] "vinos de marloss" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "Vino viscoso blanco, hecho de la fruta de marloss." @@ -41422,7 +41465,7 @@ msgid_plural "Riesling" msgstr[0] "Riesling" msgstr[1] "Riesling" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "Vino blanco espumante, hecho de la uva más noble del mundo." @@ -41433,7 +41476,7 @@ msgid_plural "Chardonnay" msgstr[0] "Chardonnay" msgstr[1] "Chardonnay" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "El vino más popular de Estados Unidos, y con razón." @@ -41444,7 +41487,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "Cabernet Sauvignon" msgstr[1] "Cabernet Sauvignon" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -41457,9 +41500,9 @@ msgstr "" msgid "pinot noir" msgid_plural "pinot noir" msgstr[0] "pinot noir" -msgstr[1] "pinot noirs" +msgstr[1] "pinot noir" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -41474,7 +41517,7 @@ msgid_plural "marsala" msgstr[0] "marsala" msgstr[1] "marsala" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -41487,7 +41530,7 @@ msgid_plural "vermouth" msgstr[0] "vermut" msgstr[1] "vermuts" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -41500,9 +41543,9 @@ msgstr "" msgid "barley wine" msgid_plural "barley wine" msgstr[0] "vino de cebada" -msgstr[1] "vinos de cebada" +msgstr[1] "vino de cebada" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "Una cerveza fuerte." @@ -41513,7 +41556,7 @@ msgid_plural "whiskey" msgstr[0] "whisky" msgstr[1] "whisky" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -41527,7 +41570,7 @@ msgid_plural "vodka" msgstr[0] "vodka" msgstr[1] "vodka" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -41539,17 +41582,17 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "gin" msgid_plural "gin" -msgstr[0] "gin" -msgstr[1] "gins" +msgstr[0] "ginebra" +msgstr[1] "ginebra" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " "berries, but mostly booze." msgstr "" -"Una bebida alcohólica con sabor a bayas de enebro. Huele ligeramente a " -"bayas, pero sobre todo a alcohol." +"Es una bebida con alcohol con gusto a bayas de enebro. Tiene un débil aroma " +"a baya, y más que nada a alcohol." #: lang/json/COMESTIBLE_from_json.py msgid "rum" @@ -41557,7 +41600,7 @@ msgid_plural "rum" msgstr[0] "ron" msgstr[1] "ron" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -41570,9 +41613,9 @@ msgstr "" msgid "tequila" msgid_plural "tequila" msgstr[0] "tequila" -msgstr[1] "tequilas" +msgstr[1] "tequila" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -41585,10 +41628,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "triple sec" msgid_plural "triple sec" -msgstr[0] "triple sec" -msgstr[1] "triple secos" +msgstr[0] "triple seco" +msgstr[1] "triple seco" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "Un licor con gusto a naranja que se usa en muchos bebidas." @@ -41597,9 +41640,9 @@ msgstr "Un licor con gusto a naranja que se usa en muchos bebidas." msgid "cheap wine" msgid_plural "cheap wine" msgstr[0] "vino barato" -msgstr[1] "vinos baratos" +msgstr[1] "vinos barato" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "Vino fortalecido muy barato." @@ -41610,11 +41653,10 @@ msgid_plural "strong mixed alcohol" msgstr[0] "mezcla fuerte de alcohol" msgstr[1] "mezcla fuerte de alcohol" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." -msgstr "" -"Son bebidas alcohólicas fuertes, mezcladas con ningún sentido del gusto." +msgstr "Bebidas alcohólicas fuertes, mezcladas con ningún sentido del gusto." #: lang/json/COMESTIBLE_from_json.py msgid "weak mixed alcohol" @@ -41622,33 +41664,30 @@ msgid_plural "weak mixed alcohol" msgstr[0] "mezcla suave de alcohol" msgstr[1] "mezcla suave de alcohol" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." -msgstr "" -"Son bebidas alcohólicas suaves, mezcladas con ningún sentido del gusto." +msgstr "Bebidas alcohólicas suaves, mezcladas con ningún sentido del gusto." #: lang/json/COMESTIBLE_from_json.py msgid "fruit wine" msgid_plural "fruit wine" msgstr[0] "vino frutal" -msgstr[1] "vinos frutales" +msgstr[1] "vino frutal" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." -msgstr "" -"Un vino barato hecho con zumo de fruta fermentado. Así como suena, así es el" -" gusto." +msgstr "Un vino barato hecho con zumo de fruta fermentado. Sabe como suena." #: lang/json/COMESTIBLE_from_json.py msgid "brandy" msgid_plural "brandy" msgstr[0] "brandy" -msgstr[1] "brandy" +msgstr[1] "coñac" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -41663,31 +41702,31 @@ msgid_plural "Irish coffee" msgstr[0] "café Irlandés" msgstr[1] "café Irlandés" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " "alcoholic way!" msgstr "" -"Café dulce con whisky con un poco de leche arriba. ¡Empezá tu día como un " +"Café dulce con whisky con un poco de leche. ¡Empieza tu día como un " "alcohólico oculto!" #: lang/json/COMESTIBLE_from_json.py msgid "Long Island iced tea" msgid_plural "Long Island iced tea" msgstr[0] "té helado Long Island" -msgstr[1] "tés helados Long Island" +msgstr[1] "té helado Long Island" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " "of them. It contains no tea, but the inclusion of cola gives it a tea-like " "color." msgstr "" -"Una mezcla de licores de sabor increíblemente fuerte que de alguna manera no" -" sabe a nada. No contiene té, pero la inclusión de cola le da un color " -"parecido al del té." +"Una mezcla de licores de sabor increíble y fuerte, que de alguna manera, " +"termina no teniendo el gusto de ninguno de ellos. No contiene te, pero la " +"inclusión de bebida de cola le da ese color parecido al té." #: lang/json/COMESTIBLE_from_json.py msgid "screwdriver cocktail" @@ -41701,39 +41740,38 @@ msgid "" "A mix of orange juice and vodka. It's the surreptitious drunkard mechanic's" " drink of choice." msgstr "" -"Es una mezcla de zumo de naranja y vodka. El trago favorito del mecánico " +"Una mezcla de zumo de naranja y vodka. El trago favorito del mecánico " "borracho subrepticio." #: lang/json/COMESTIBLE_from_json.py msgid "wild apple" msgid_plural "wild apple" msgstr[0] "manzana salvaje" -msgstr[1] "manzanas salvajes" +msgstr[1] "manzana salvaje" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." -msgstr "Es como la sidra de manzana, pero con vodka." +msgstr "Como la sidra de manzana, pero con vodka." #: lang/json/COMESTIBLE_from_json.py msgid "rum & cola" msgid_plural "rum & cola" -msgstr[0] "ron-cola" -msgstr[1] "ron-colas" +msgstr[0] "cubata" +msgstr[1] "cubata" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." -msgstr "" -"Perfecto para vacaciones tropicales y para parecidos a artistas canadienses." +msgstr "Perfecto para vacaciones tropicales y para artistas canadienses." #: lang/json/COMESTIBLE_from_json.py msgid "beer" msgid_plural "beer" msgstr[0] "cerveza" -msgstr[1] "cervezas" +msgstr[1] "cerveza" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -41746,9 +41784,9 @@ msgstr "" msgid "spiced mead" msgid_plural "spiced mead" msgstr[0] "hidromiel con hierbas" -msgstr[1] "hidromieles con hierbas" +msgstr[1] "hidromiel con hierbas" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -41760,24 +41798,24 @@ msgstr "" msgid "dandelion wine" msgid_plural "dandelion wine" msgstr[0] "vino de diente de león" -msgstr[1] "vinos de diente de león" +msgstr[1] "vino de diente de león" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " "effervescent, it is smooth and crisp." msgstr "" -"Un vino liviano y delicioso hecho con flores diente de león. Ligeramente " +"Un vino liviano y delicioso hecho con flores de diente de león. Ligeramente " "efervescente, suave y fresco." #: lang/json/COMESTIBLE_from_json.py msgid "burdock wine" msgid_plural "burdock wine" msgstr[0] "vino de bardana" -msgstr[1] "vinos de bardana" +msgstr[1] "vino de bardana" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "Un ligero y delicioso vino hecho de raíces de bardana. Algo dulce." @@ -41785,38 +41823,38 @@ msgstr "Un ligero y delicioso vino hecho de raíces de bardana. Algo dulce." #: lang/json/COMESTIBLE_from_json.py msgid "pine wine" msgid_plural "pine wine" -msgstr[0] "retsina" -msgstr[1] "retsina" +msgstr[0] "vino de pino" +msgstr[1] "vino de pino" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " "and strong aroma takes some getting used to." msgstr "" "Un potente vino con gusto a resina de pino. Intenso y áspero, por su sabor " -"mordaz y aroma fuerte cuesta acostumbrarse a él." +"mordaz y aroma fuerte. Cuesta acostumbrarse a él." #: lang/json/COMESTIBLE_from_json.py msgid "homebrew beer" msgid_plural "homebrew beer" msgstr[0] "cerveza casera" -msgstr[1] "cervezas caseras" +msgstr[1] "cerveza casera" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" -"No es la bebida de mayor calidad que probaste, pero hey, es alcohol por " +"No es la bebida de mayor calidad que probaste, pero eh, es alcohol por " "litro." #: lang/json/COMESTIBLE_from_json.py msgid "moonshine" msgid_plural "moonshine" msgstr[0] "aguardiente casero" -msgstr[1] "aguardientes caseros" +msgstr[1] "aguardiente casero" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -41824,61 +41862,61 @@ msgid "" "or you get your vision back." msgstr "" "Sólo el más fuerte, puro, buen licor de moda, destilado de maíz y azúcar. " -"Garantizado para hacerte olvidar todo el asunto del Cataclismo, o recuperas " -"tu visión." +"Garantizado para hacerte olvidar todo el asunto del Cataclismo, o para que " +"recuperes tu visión." #: lang/json/COMESTIBLE_from_json.py msgid "European pilsner" msgid_plural "European pilsner" -msgstr[0] "cerveza pilsen europea" -msgstr[1] "cervezas pilsen europea" +msgstr[0] "Pilsener europea" +msgstr[1] "Pilsener europea" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " "you're not that lucky." msgstr "" -"Una cerveza lager importada de Europa. Se sirve mejor fría, en un vaso... " -"pero no tienes tanta suerte." +"Una cerveza lager importada de Europa. Se sirve mejor fría, en vaso de " +"cristal... pero no tienes tanta suerte." #: lang/json/COMESTIBLE_from_json.py msgid "American pale ale" msgid_plural "American pale ale" -msgstr[0] "cerveza pale ale americana" -msgstr[1] "cervezas pale ale americana" +msgstr[0] "Pale ale americana" +msgstr[1] "Pale ale americana" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " "lucky." msgstr "" -"Es una sabrosa cerveza artesanal. Mejor beberla fría, en vaso de cristal - " +"Una sabrosa cerveza artesanal. Se sirve mejor fría, en vaso de cristal... " "pero no tienes tanta suerte." #: lang/json/COMESTIBLE_from_json.py msgid "India pale ale" msgid_plural "India pale ale" -msgstr[0] "cerveza pale ale india" -msgstr[1] "cervezas pale ale india" +msgstr[0] "Pale ale india" +msgstr[1] "Pale ale india" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " "you're not that lucky." msgstr "" -"Es una cerveza elaborada con mucho sabor. Mejor beberla fría, en vaso de " -"cristal - pero no tienes tanta suerte." +"Una cerveza elaborada con mucho sabor. Se sirve mejor fría, en vaso de " +"cristal... pero no tienes tanta suerte." #: lang/json/COMESTIBLE_from_json.py msgid "stout" msgid_plural "stout" -msgstr[0] "cerveza stout" -msgstr[1] "cervezas stout" +msgstr[0] "stout" +msgstr[1] "stout" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -41887,34 +41925,34 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "Belgian ale" msgid_plural "Belgian ale" -msgstr[0] "cerveza belga" -msgstr[1] "cervezas belgas" +msgstr[0] "Ale Belga" +msgstr[1] "Ale Belga" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " "goblet." msgstr "" -"Es una cerveza sabrosa y sustanciosa elaborada por monjes en Bélgica. Mejor " -"tomarla en un cáliz." +"Una cerveza sabrosa y sustanciosa elaborada por monjes en Bélgica. Se sirve " +"mejor en un cáliz." #: lang/json/COMESTIBLE_from_json.py msgid "imperial stout" msgid_plural "imperial stout" -msgstr[0] "cerveza stout imperial" -msgstr[1] "cervezas stout imperial" +msgstr[0] "stout imperial" +msgstr[1] "stout imperial" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" " as midnight on a moonless night and has the viscosity of oil. While very " "tasty, it also has an alcohol content on the level with wine." msgstr "" -"Es una cerveza con mucho sabor que ha sido añejada en barriles de bourbon. " -"Es tan negra como una medianoche sin luna, y tiene la viscosidad del aceite." -" Aunque es muy sabrosa, tiene tanto alcohol como un vino." +"Una cerveza con mucho sabor que ha sido añejada en barriles de bourbon. Es " +"tan negra como una medianoche sin luna, y tiene la viscosidad del aceite. " +"Aunque es muy sabrosa, tiene tanto contenido de alcohol como el vino." #: lang/json/COMESTIBLE_from_json.py msgid "strawberry surprise" @@ -41929,9 +41967,9 @@ msgid "" "surprisingly palatable mixture; you barely even have to force yourself to " "drink it after the first few gulps." msgstr "" -"Son fresas dejadas a fermentar con otros ingredientes seleccionados, lo que " -"produce una mezcla sorprendentemente sabrosa. Apenas si te tienes que " -"obligar a beberla después de los primeros tragos." +"Fresas dejadas a fermentar con otros ingredientes seleccionados, lo que " +"produce una mezcla sorprendentemente sabrosa. Apenas te tienes que obligar a" +" beberla después de los primeros tragos." #: lang/json/COMESTIBLE_from_json.py msgid "boozeberry" @@ -41945,9 +41983,9 @@ msgid "" "This fermented blueberry mixture is surprisingly hearty, though the soup-" "like consistency is slightly unsettling no matter how much you drink." msgstr "" -"Esta mezcla de arándanos fermentados es sorprendentemente abundante, aunque " -"la consistencia tipo sopa sigue siendo inquietante, no importa cuánto hayas " -"tomado." +"Esta mezcla de arándanos fermentados es sorprendentemente fuerte, aunque la " +"consistencia tipo sopa sigue siendo inquietante, no importa cuánto hayas " +"bebido." #: lang/json/COMESTIBLE_from_json.py msgid "single malt whiskey" @@ -41955,10 +41993,10 @@ msgid_plural "single malt whiskey" msgstr[0] "whisky puro de malta" msgstr[1] "whisky puro de malta" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." -msgstr "De los mejores whiskys." +msgstr "Sólo el mejor whisky directamente del tapón." #: lang/json/COMESTIBLE_from_json.py msgid "single pot still Irish whiskey" @@ -41966,7 +42004,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "whisky irlandés de una sola olla" msgstr[1] "whisky irlandés de una sola olla" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "Un whisky hecho con una mezcla de cebada malteada y no malteada." @@ -41977,10 +42015,10 @@ msgid_plural "cheap whiskey" msgstr[0] "whisky barato" msgstr[1] "whisky barato" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." -msgstr "Un whisky de mezcla muy barato." +msgstr "Whisky de mezcla muy barato." #: lang/json/COMESTIBLE_from_json.py msgid "Canadian whiskey" @@ -41988,7 +42026,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "Whisky canadiense" msgstr[1] "Whisky canadiense" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "Un licor multigrano hecho de un puré de maíz y centeno." @@ -41999,7 +42037,7 @@ msgid_plural "sherry" msgstr[0] "jerez" msgstr[1] "jerez" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -42013,7 +42051,7 @@ msgid_plural "Bristol Cream" msgstr[0] "Crema Bristol" msgstr[1] "Crema Bristol" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -42025,21 +42063,21 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "Madeira wine" msgid_plural "Madeira wine" -msgstr[0] "Vino de Madeira" -msgstr[1] "Vino de Madeira" +msgstr[0] "vino de madeira" +msgstr[1] "vino de madeira" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." -msgstr "Vino fortificado de Madeira. Una verdadera bebida de la Marina Real." +msgstr "Vino fortificado de Madeira. Una verdadera bebida de la Royal Navy." #: lang/json/COMESTIBLE_from_json.py msgid "fancy hobo" msgid_plural "fancy hobo" -msgstr[0] "bebida de vagabundo extravagante" -msgstr[1] "bebida de vagabundo extravagante" +msgstr[0] "bebida de vagabundo elegante" +msgstr[1] "bebida de vagabundo elegante" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "Definitivamente, tiene el gusto de una bebida de indigentes." @@ -42050,7 +42088,7 @@ msgid_plural "kalimotxo" msgstr[0] "kalimotxo" msgstr[1] "kalimotxo" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -42064,16 +42102,16 @@ msgstr "" msgid "bee's knees" msgid_plural "bee's knees" msgstr[0] "cóctel bee's knees" -msgstr[1] "cócteles bee's knees" +msgstr[1] "cóctel bee's knees" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " "delightful mix." msgstr "" -"Esta bebida proviene de la época de la Ley Seca. Es una mezcla deliciosa de " -"gin, miel y limón." +"Este cóctel data de la época de la Prohibición. Ginebra, miel y limón en una" +" mezcla deliciosa." #: lang/json/COMESTIBLE_from_json.py msgid "whiskey sour" @@ -42100,7 +42138,7 @@ msgid "" msgstr "" "Una bebida mezclada que contiene todas las ventajas de sus ingredientes y " "ninguna de sus desventajas. Tiene muy buen sabor y es una buena fuente de " -"nutrición." +"nutrientes." #: lang/json/COMESTIBLE_from_json.py msgid "honey ball" @@ -42149,14 +42187,14 @@ msgid "" "This is a popular cocktail made with gin and dry vermouth, dating from the " "Prohibition era." msgstr "" -"Este es un cóctel popular hecho con ginebra y vermú seco, que data de la " +"Este es un cóctel popular hecho con ginebra y vermut seco, que data de la " "época de la Prohibición." #: lang/json/COMESTIBLE_from_json.py msgid "bloody mary cocktail" msgid_plural "bloody mary cocktails" -msgstr[0] "cóctel Bloody Mary" -msgstr[1] "c-rcteles Bloody Mary" +msgstr[0] "cóctel bloody mary" +msgstr[1] "cócteles bloody mary" #. ~ Description for bloody mary cocktail #: lang/json/COMESTIBLE_from_json.py @@ -42164,8 +42202,8 @@ msgid "" "Tomato juice mixed with vodka and some spices. Hangover cure of choice for " "many." msgstr "" -"Zumo de tomate mezclado con vodka y algunas especias. La elección para " -"muchos como cura de la resaca." +"Zumo de tomate mezclado con vodka y con especias agregadas. La cura para la " +"resaca favorita de muchos." #: lang/json/COMESTIBLE_from_json.py msgid "hard seltzer" @@ -42173,7 +42211,7 @@ msgid_plural "hard seltzer" msgstr[0] "hard seltzer (gaseosa + alcohol + sabor)" msgstr[1] "hard seltzer (gaseosa + alcohol + sabor)" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "Agua con gas alcohólica. Perfecta para un caluroso día de verano." @@ -42184,7 +42222,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "magdalena de calabaza" msgstr[1] "magdalenas de calabaza" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "Magdalenas horneadas de calabaza. Perfecto para tu festín de otoño." @@ -42192,10 +42230,10 @@ msgstr "Magdalenas horneadas de calabaza. Perfecto para tu festín de otoño." #: lang/json/COMESTIBLE_from_json.py msgid "donut holes" msgid_plural "donut holes" -msgstr[0] "agujeros de donuts" +msgstr[0] "agujero de donut" msgstr[1] "agujeros de donuts" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -42211,7 +42249,7 @@ msgid_plural "sourdough bread" msgstr[0] "pan de masa madre" msgstr[1] "panes de masa madre" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -42226,7 +42264,7 @@ msgid_plural "flatbread" msgstr[0] "pan sin levadura" msgstr[1] "panes sin levadura" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "Un simple pan sin levadura." @@ -42237,18 +42275,18 @@ msgid_plural "bread" msgstr[0] "pan" msgstr[1] "panes" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." -msgstr "Saludable y atiborra." +msgstr "Saludable y llena bastante." #: lang/json/COMESTIBLE_from_json.py msgid "toast" msgid_plural "toast" -msgstr[0] "toast" +msgstr[0] "tostada" msgstr[1] "tostadas" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -42263,7 +42301,7 @@ msgid_plural "buttered toast" msgstr[0] "tostada con mantequilla" msgstr[1] "tostadas con mantequilla" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "Tostada con mantequilla untada por encima para que tenga mejor sabor." @@ -42274,7 +42312,7 @@ msgid_plural "jam toast" msgstr[0] "tostada con mermelada" msgstr[1] "tostadas con mermelada" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -42289,7 +42327,7 @@ msgid_plural "peanut butter toast" msgstr[0] "tostada con mantequilla de cacahuetes" msgstr[1] "tostadas con mantequilla de cacahuetes" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -42303,7 +42341,7 @@ msgid_plural "toad in a hole" msgstr[0] "sapo en el hoyo" msgstr[1] "sapo en el hoyo" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "Un huevo cocinado servido dentro de una tostada." @@ -42314,7 +42352,7 @@ msgid_plural "PBJ Toast" msgstr[0] "Tostada MMC" msgstr[1] "Tostadas MMC" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -42329,10 +42367,10 @@ msgid_plural "cornbread" msgstr[0] "pan de maíz" msgstr[1] "panes de maíz" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." -msgstr "Pan de maíz saludable y atiborra." +msgstr "Pan de maíz saludable y llena bastante." #: lang/json/COMESTIBLE_from_json.py msgid "johnnycake" @@ -42354,7 +42392,7 @@ msgstr[1] "tortillas de maíz" #. ~ Description for corn tortilla #: lang/json/COMESTIBLE_from_json.py msgid "A round, thin flatbread made from finely ground corn flour." -msgstr "Es una masa plana y redonda hecha de harina de maíz finamente molida." +msgstr "Una masa plana y redonda hecha de harina de maíz finamente molida." #: lang/json/COMESTIBLE_from_json.py msgid "hardtack" @@ -42362,7 +42400,7 @@ msgid_plural "hardtack" msgstr[0] "pan de pirata" msgstr[1] "panes de pirata" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -42380,7 +42418,7 @@ msgstr[1] "galletas" #. ~ Description for biscuit #: lang/json/COMESTIBLE_from_json.py msgid "Wholesome and filling, this home made biscuit is pretty good!" -msgstr "Sana y llena, ¡esta galleta casera es bastante buena!" +msgstr "Sana y llena bastante, ¡esta galleta casera es bastante buena!" #: lang/json/COMESTIBLE_from_json.py msgid "wastebread" @@ -42388,16 +42426,16 @@ msgid_plural "wastebread" msgstr[0] "pan de sobras" msgstr[1] "panes de sobras" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" " to mix it with leftovers of other ingredients and bake it all into bread. " "It's filling, and that's what matters." msgstr "" -"La harina es un lujo por estos días y para suplirla, la mayoría de los " -"sobrevivientes recurren a mezclar las sobras de otros ingredientes y " -"cocinarlas para hacer pan. Te llena bastante, y eso es lo que importa." +"La harina es un lujo estos días y para suplirla, la mayoría de los " +"supervivientes recurren a mezclar con las sobras de otros ingredientes y " +"cocinarlas para hacer pan. Es llenante, y eso es lo que importa." #: lang/json/COMESTIBLE_from_json.py msgid "brown bread" @@ -42405,7 +42443,7 @@ msgid_plural "brown bread" msgstr[0] "pan marrón" msgstr[1] "panes marrones" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "Un pan dulce, como un pastel." @@ -42416,7 +42454,7 @@ msgid_plural "hallula" msgstr[0] "hallula" msgstr[1] "hallula" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -42440,8 +42478,8 @@ msgid "" "Unfermented mycus wine. A goopy white mess, made from fruit of mycus. It " "smells sweetly of mushrooms." msgstr "" -"Vino de mycus sin fermentar. Un blanco y pegajoso lío, hecho de la fruta de " -"mycus. Huele dulcemente a hongos." +"Vino de mycus sin fermentar. Una blanca y pegajosa porquería, hecha de la " +"fruta de mycus. Huele dulcemente a hongos." #: lang/json/COMESTIBLE_from_json.py msgid "whiskey wort" @@ -42455,20 +42493,19 @@ msgid "" "Unfermented whiskey. The base of a fine drink. Not the traditional " "preparation, but you don't have the time." msgstr "" -"Whisky sin fermentar. Es la base de una buena bebida. No es la preparación " +"Whisky sin fermentar. La base de una buena bebida. No es la preparación " "tradicional, pero no te alcanza el tiempo." #: lang/json/COMESTIBLE_from_json.py msgid "whiskey wash" msgid_plural "whiskey washes" -msgstr[0] "wash de whisky" -msgstr[1] "washes de whisky" +msgstr[0] "mosto fermentado de whisky" +msgstr[1] "mostos fermentados de whisky" #. ~ Description for whiskey wash #: lang/json/COMESTIBLE_from_json.py msgid "Fermented, but not distilled whiskey. No longer tastes sweet." -msgstr "" -"Es whisky fermentado pero todavía sin destilar. Ya no tiene un sabor dulce." +msgstr "Whisky fermentado, pero no destilado. Ya no tiene sabor dulce." #: lang/json/COMESTIBLE_from_json.py msgid "gin mash" @@ -42508,20 +42545,19 @@ msgid "" "Unfermented vodka. Water with sugar from enzymatic breakdown of malted " "grains or just added in pure form." msgstr "" -"Es vodka sin fermentar. Agua con azúcar de una descomposición enzimática de " +"Vodka sin fermentar. Agua con azúcar de una descomposición enzimática de " "malta de cereal, o agregada en su forma pura." #: lang/json/COMESTIBLE_from_json.py msgid "vodka wash" msgid_plural "vodka washes" -msgstr[0] "wash de vodka" -msgstr[1] "washes de vodka" +msgstr[0] "mosto fermentado de vodka" +msgstr[1] "mostos fermentados de vodka" #. ~ Description for vodka wash #: lang/json/COMESTIBLE_from_json.py msgid "Fermented, but not distilled vodka. No longer tastes sweet." -msgstr "" -"Es vodka fermentado pero todavía sin destilar. Ya no tiene un sabor dulce." +msgstr "Vodka fermentado, pero no destilado. Ya no tiene sabor dulce." #: lang/json/COMESTIBLE_from_json.py msgid "rum wort" @@ -42541,14 +42577,13 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "rum wash" msgid_plural "rum washes" -msgstr[0] "wash de ron" -msgstr[1] "washes de ron" +msgstr[0] "mosto fermentado de ron" +msgstr[1] "mostos fermentados de ron" #. ~ Description for rum wash #: lang/json/COMESTIBLE_from_json.py msgid "Fermented, but not distilled rum. No longer tastes sweet." -msgstr "" -"Es ron fermentado pero todavía sin destilar. Ya no tiene un sabor dulce." +msgstr "Ron fermentado, pero no destilado. Ya no tiene sabor dulce." #: lang/json/COMESTIBLE_from_json.py msgid "fruit wine must" @@ -42573,7 +42608,7 @@ msgstr[1] "mostos de hidromiel con hierbas" #: lang/json/COMESTIBLE_from_json.py msgid "Unfermented spiced mead. Diluted honey and yeast." msgstr "" -"Es mosto de hidromiel con hierbas sin fermentar. Miel y levadura diluidas." +"Mosto de hidromiel con hierbas sin fermentar. Miel y levadura diluidas." #: lang/json/COMESTIBLE_from_json.py msgid "dandelion wine must" @@ -42608,8 +42643,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pine wine must" msgid_plural "pine wine musts" -msgstr[0] "mosto de retsina" -msgstr[1] "mostos de retsina" +msgstr[0] "mosto de vino de pino" +msgstr[1] "mostos de vino de pino" #. ~ Description for pine wine must #: lang/json/COMESTIBLE_from_json.py @@ -42617,7 +42652,7 @@ msgid "" "Unfermented pine wine. A sticky mixture of water, sugar, yeast, and pine " "resins." msgstr "" -"Retsina sin fermentera. Una mezcla pegajosa de agua, azúcar, levadura y " +"Vino de pino sin fermentar. Una mezcla pegajosa de agua, azúcar, levadura y " "resinas de pino." #: lang/json/COMESTIBLE_from_json.py @@ -42647,14 +42682,14 @@ msgid "" "Unfermented moonshine. Just some water, sugar and corn, like good ol' " "aunt's recipe." msgstr "" -"Aguardiente casero sin fermentar. Es un poco de agua, azúcar y maíz, como lo" -" hacía la abuela." +"Aguardiente casero sin fermentar. Un poco de agua, azúcar y maíz, como lo " +"hacía la abuela." #: lang/json/COMESTIBLE_from_json.py msgid "moonshine wash" msgid_plural "moonshine washes" -msgstr[0] "wash de aguardiente casero" -msgstr[1] "washes de aguardiente casero" +msgstr[0] "mosto fermentado de aguardiente casero" +msgstr[1] "mostos fermentados de aguardiente casero" #. ~ Description for moonshine wash #: lang/json/COMESTIBLE_from_json.py @@ -42662,14 +42697,14 @@ msgid "" "Fermented, but not distilled moonshine. Contains all the contaminants you " "don't want in your moonshine." msgstr "" -"Es aguardiente casero fermentado pero sin destilar. Contiene todos los " -"contaminantes que no quieres que haya en tu aguardiente." +"Aguardiente fermentado pero no destilado. Contiene todos los contaminantes " +"que no quieres en tu aguardiente." #: lang/json/COMESTIBLE_from_json.py msgid "curdling milk" msgid_plural "curdling milks" msgstr[0] "leche cuajada" -msgstr[1] "leches cuajada" +msgstr[1] "leche cuajada" #. ~ Description for curdling milk #: lang/json/COMESTIBLE_from_json.py @@ -42677,7 +42712,7 @@ msgid "" "Milk with vinegar and natural rennet added. Used for making cheese if left " "in a fermenting vat for some time." msgstr "" -"Leche con vinagre y cuajo natural agregado. Usada para hacer queso si se la " +"Leche con vinagre y cuajo natural añadido. Usado para hacer queso si se la " "deja en un tanque de fermentación por un tiempo." #: lang/json/COMESTIBLE_from_json.py @@ -42716,23 +42751,21 @@ msgid_plural "malting grain" msgstr[0] "grano malteándose" msgstr[1] "grano malteándose" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "Después de remojar el grano y esperar, ha terminado el malteado." -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "El grano todavía no se ha malteado." -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." -msgstr "" -"El grano que se maltea puede utilizarse para la elaboración de bebidas " -"alcohólicas." +msgstr "Grano de malta que puede utilizarse para la elaboración de cerveza." #: lang/json/COMESTIBLE_from_json.py msgid "malted grain" @@ -42740,8 +42773,8 @@ msgid_plural "malted grain" msgstr[0] "grano malteado" msgstr[1] "grano malteado" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -42756,7 +42789,7 @@ msgid_plural "soaking dandelion" msgstr[0] "dientes de león remojándose" msgstr[1] "dientes de león remojándose" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " @@ -42765,7 +42798,7 @@ msgstr "" "Después de remojar los dientes de león en agua hirviendo, el zumo puede ser " "utilizado para hacer vino." -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "Los dientes de león necesitan más tiempo." @@ -42776,11 +42809,11 @@ msgid_plural "soaked dandelion" msgstr[0] "dientes de león remojados" msgstr[1] "dientes de león remojados" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" -"Son diente de león remojados en agua caliente, usados para hacer vino de " +"Dientes de león remojados en agua caliente, usados para hacer vino de " "dientes de león." #: lang/json/COMESTIBLE_from_json.py @@ -42798,7 +42831,7 @@ msgstr[1] "filetes de pescado" #. ~ Description for fillet of fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly caught fish. Makes a passable meal raw." -msgstr "Pescado fresco. Como comida cruda es bastante aceptable." +msgstr "Pescado recién capturado. Una comida cruda pasable." #: lang/json/COMESTIBLE_from_json.py msgid "cooked fish" @@ -42806,10 +42839,10 @@ msgid_plural "cooked fish" msgstr[0] "pescado cocinado" msgstr[1] "pescados cocinados" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." -msgstr "Es un pescado cocinado recientemente. Muy nutritivo." +msgstr "Pescado fresco cocinado. Muy nutritivo." #: lang/json/COMESTIBLE_from_json.py msgid "human stomach" @@ -42820,7 +42853,7 @@ msgstr[1] "estómagos humanos" #. ~ Description for human stomach #: lang/json/COMESTIBLE_from_json.py msgid "The stomach of a human. It is surprisingly durable." -msgstr "Es el estómago de un humano. Es sorprendentemente duradero." +msgstr "El estómago de un humano. Es sorprendentemente resistente." #: lang/json/COMESTIBLE_from_json.py msgid "large human stomach" @@ -42833,8 +42866,8 @@ msgstr[1] "estómagos humanos grandes" #: lang/json/COMESTIBLE_from_json.py msgid "The stomach of a large humanoid creature. It is surprisingly durable." msgstr "" -"Es el estómago de una criatura humanoide grande. Es sorprendentemente " -"duradero." +"El estómago de una criatura humanoide grande. Es sorprendentemente " +"resistente." #: lang/json/COMESTIBLE_from_json.py msgid "chunk of human fat" @@ -42917,7 +42950,7 @@ msgid "" msgstr "" "Carne recién descuartizada. Podrías comerla cruda pero cocinada esta mejor." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "Sangre fresca extraída de una criatura viviente." @@ -43036,7 +43069,7 @@ msgid_plural "mutant blood" msgstr[0] "sangre mutante" msgstr[1] "sangre mutante" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "Sangre fresca extraída de una criatura fuertemente mutada." @@ -43081,7 +43114,7 @@ msgid_plural "mutant human blood" msgstr[0] "sangre humana mutante" msgstr[1] "sangre humana mutante" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "Sangre fresca extraída de un humano fuertemente mutada." @@ -43131,7 +43164,7 @@ msgid_plural "butchery refuse" msgstr[0] "desperdicio de carnicería" msgstr[1] "desperdicios de carnicería" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -43229,7 +43262,7 @@ msgid_plural "cooked offal" msgstr[0] "achura cocinada" msgstr[1] "achuras cocinadas" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -43246,7 +43279,7 @@ msgid_plural "mutant organs" msgstr[0] "organo mutante" msgstr[1] "organos mutantes" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "Estos órganos provienen de un bicho mutante gigante." @@ -43257,7 +43290,7 @@ msgid_plural "pickled offal" msgstr[0] "despojos en escabeche" msgstr[1] "despojos en escabeche" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -43274,7 +43307,7 @@ msgid_plural "canned offal" msgstr[0] "despojos de conservas" msgstr[1] "despojos de conservas" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -43314,31 +43347,28 @@ msgid_plural "meat jerky" msgstr[0] "cecina de carne" msgstr[1] "cecinas de carne" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "cecina de hombre" msgstr[1] "cecinas de hombre" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "cecina de animal parlante" msgstr[1] "cecinas de animal parlante" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "cecina de monstruo" msgstr[1] "cecinas de monstruo" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -43350,7 +43380,7 @@ msgid_plural "salted fish" msgstr[0] "pescado salado" msgstr[1] "pescados salados" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -43364,33 +43394,27 @@ msgid_plural "smoked meats" msgstr[0] "carne ahumada" msgstr[1] "carnes ahumadas" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "sucker ahumado" msgstr[1] "suckers ahumados" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "Narnian ahumado" msgstr[1] "Narnian ahumado" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -43413,7 +43437,7 @@ msgid_plural "smoked fish" msgstr[0] "pescado ahumado" msgstr[1] "pescados ahumados" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -43474,7 +43498,7 @@ msgid_plural "mutant lungs" msgstr[0] "pulmón mutante" msgstr[1] "pulmones mutantes" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "Estás bastante seguro de que esto es tejido pulmonar." @@ -43531,7 +43555,7 @@ msgid_plural "raw brains" msgstr[0] "cerebro crudo" msgstr[1] "cerebros crudos" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "El cerebro de un animal. No querrías comer esto crudo..." @@ -43542,7 +43566,7 @@ msgid_plural "cooked brains" msgstr[0] "cerebro cocinado" msgstr[1] "cerebros cocinados" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -43627,7 +43651,7 @@ msgstr[1] "lechecillas cocinadas" msgid "Normally a delicacy, it needs a little… something." msgstr "Normalmente una delicadeza, necesita un poco de... algo." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "Sangre, probablemente de un humano. ¡Repugnante!" @@ -43806,7 +43830,7 @@ msgstr "" "Obviamente, comer esta carne no es saludable. Te la puedes comer igual, pero" " te va a caer mal." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -44094,7 +44118,7 @@ msgid_plural "alien fronds" msgstr[0] "fronda alienígena" msgstr[1] "frondas alienígenas" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -44220,7 +44244,7 @@ msgid_plural "demihuman flesh" msgstr[0] "carne demihumana" msgstr[1] "carne demihumana" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "Recién descuartizada de un cadáver demihumano." @@ -44231,7 +44255,7 @@ msgid_plural "demihuman blood" msgstr[0] "sangre demihumana" msgstr[1] "sangre demihumana" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "Sangre fresca extraída de un demihumano." @@ -44275,13 +44299,38 @@ msgstr "" "Un pequeño estómago hervido de un demihumano, nada más. Parece todo menos " "apetecible." +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "carne frita" +msgstr[1] "carnes fritas" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "tonto frito" +msgstr[1] "tonto frito" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "familiar frito" +msgstr[1] "familiares fritos" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "Deliciosa carne frita." + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "guiso de maiz caliente" msgstr[1] "guisos de maiz caliente" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -44298,7 +44347,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "guiso de tallarines de pescado" msgstr[1] "guisos de tallarines de pescado" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -44314,7 +44363,7 @@ msgid_plural "cereal" msgstr[0] "cereal" msgstr[1] "cereal" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "Una caja de cereales genéricos, no deberías ver esto." @@ -44325,7 +44374,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "cereal Lugarcomida" msgstr[1] "cereal Lugarcomida" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -44339,7 +44388,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "cereal Snicker-Snacks" msgstr[1] "cereal Snicker-Snacks" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -44354,7 +44403,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "cereal Carpenter Crunch" msgstr[1] "cereal Carpenter Crunch" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -44369,7 +44418,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "cereal Brantastic" msgstr[1] "cereal Brantastic" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -44384,7 +44433,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "cereal Sugar Chomps" msgstr[1] "cereal Sugar Chomps" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -44400,7 +44449,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "cereal Honey Pellet" msgstr[1] "cereal Honey Pellet" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -44430,7 +44479,7 @@ msgid_plural "Foodios cereal" msgstr[0] "cereal Foodios" msgstr[1] "cereal Foodios" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -44457,7 +44506,7 @@ msgid_plural "wheat cereal" msgstr[0] "cereal de trigo" msgstr[1] "cereal de trigo" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -44483,7 +44532,7 @@ msgid_plural "milk" msgstr[0] "leche" msgstr[1] "leche" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -44495,7 +44544,7 @@ msgid_plural "chocolate milk" msgstr[0] "leche de chocolate" msgstr[1] "leche de chocolate" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -44508,7 +44557,7 @@ msgid_plural "reconstituted milk" msgstr[0] "leche reconstituida" msgstr[1] "leche reconstituida" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -44523,7 +44572,7 @@ msgid_plural "raw milk" msgstr[0] "leche cruda" msgstr[1] "leche cruda" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -44542,7 +44591,7 @@ msgid_plural "shelf stable milk" msgstr[0] "leche UHT pasteurizada" msgstr[1] "leche UHT pasteurizada" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -44559,7 +44608,7 @@ msgid_plural "evaporated milk" msgstr[0] "leche evaporada" msgstr[1] "leche evaporada" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -44573,7 +44622,7 @@ msgid_plural "buttermilk" msgstr[0] "suero de leche" msgstr[1] "suero de leche" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -44599,7 +44648,7 @@ msgid_plural "butter" msgstr[0] "mantequilla" msgstr[1] "mantequilla" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -44613,7 +44662,7 @@ msgid_plural "raw butter" msgstr[0] "mantequilla cruda" msgstr[1] "mantequilla cruda" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -44627,7 +44676,7 @@ msgid_plural "ghee" msgstr[0] "ghee (mantequilla clarificada)" msgstr[1] "ghee (mantequilla clarificada)" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -44669,7 +44718,7 @@ msgid_plural "hard cheese" msgstr[0] "queso duro" msgstr[1] "queso duro" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -44684,7 +44733,7 @@ msgid_plural "cheese" msgstr[0] "queso" msgstr[1] "queso" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "Un bloque amarillo de queso procesado." @@ -44706,7 +44755,7 @@ msgid_plural "powdered milk" msgstr[0] "leche en polvo" msgstr[1] "leche en polvo" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -44719,7 +44768,7 @@ msgid_plural "condensed milk" msgstr[0] "leche condensada" msgstr[1] "leche condensada" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -44734,7 +44783,7 @@ msgid_plural "whipped cream" msgstr[0] "nata montada" msgstr[1] "nata montada" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -44749,7 +44798,7 @@ msgid_plural "heavy cream" msgstr[0] "crema espesa" msgstr[1] "crema espesa" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -44762,7 +44811,7 @@ msgid_plural "apple cider" msgstr[0] "sidra de manzana" msgstr[1] "sidras de manzana" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "Exprimida de manzanas frescas. Sabrosa y nutritiva." @@ -44804,7 +44853,7 @@ msgid_plural "atomic coffee" msgstr[0] "café atómico" msgstr[1] "café atómico" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -44822,7 +44871,7 @@ msgid_plural "bee balm tea" msgstr[0] "té de monarda" msgstr[1] "té de monarda" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -44849,7 +44898,7 @@ msgid_plural "chai tea" msgstr[0] "té chai" msgstr[1] "té chai" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "Es una mezcla tradicional del sur asiático, de leche y té." @@ -44860,7 +44909,7 @@ msgid_plural "chamomile tea" msgstr[0] "té de manzanilla" msgstr[1] "té de manzanilla" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -44891,7 +44940,7 @@ msgid_plural "coffee" msgstr[0] "café" msgstr[1] "café" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -44909,7 +44958,7 @@ msgid_plural "coffee substitute" msgstr[0] "sucedáneo de café" msgstr[1] "sucedáneo de café" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -44926,7 +44975,7 @@ msgid_plural "chicory brew" msgstr[0] "brebaje de achicoria" msgstr[1] "brebaje de achicoria" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -45005,7 +45054,7 @@ msgid_plural "dandelion tea" msgstr[0] "té de diente de león" msgstr[1] "tés de diente de león" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -45018,7 +45067,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "té de diente de león y bardana" msgstr[1] "té de diente de león y bardana" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -45084,7 +45133,7 @@ msgid_plural "herbal tea" msgstr[0] "té de hierbas" msgstr[1] "té de hierbas" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "Una bebida saludable hecha con hierbas sumergidas en agua hirviendo." @@ -45095,7 +45144,7 @@ msgid_plural "hot chocolate" msgstr[0] "chocolate caliente" msgstr[1] "chocolate caliente" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -45148,7 +45197,7 @@ msgid_plural "lemonade" msgstr[0] "limonada" msgstr[1] "limonada" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -45178,7 +45227,7 @@ msgid_plural "lotus tea" msgstr[0] "té de loto" msgstr[1] "té de loto" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -45191,7 +45240,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "Chocolate caliente mejicano" msgstr[1] "Chocolate caliente mejicano" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -45258,7 +45307,7 @@ msgid_plural "pine needle tea" msgstr[0] "té de aguja de pino" msgstr[1] "té de aguja de pino" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -45300,7 +45349,7 @@ msgid_plural "root beer" msgstr[0] "cerveza de raíz" msgstr[1] "cervezas de raíz" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -45343,7 +45392,7 @@ msgid_plural "spurge tea" msgstr[0] "té de euphorbia" msgstr[1] "té de euphorbia" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." @@ -45351,7 +45400,7 @@ msgstr "" "Ya no tienes que preocuparte por los ataques de asma, al menos por un " "tiempo." -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -45381,7 +45430,7 @@ msgid_plural "sweet water" msgstr[0] "agua dulce" msgstr[1] "agua dulce" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "Es agua con azúcar o miel agregada. El gusto está bien." @@ -45407,7 +45456,7 @@ msgid_plural "willowbark tea" msgstr[0] "té de corteza de sauce" msgstr[1] "té de corteza de sauce" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -45449,7 +45498,7 @@ msgid_plural "water" msgstr[0] "agua" msgstr[1] "agua" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -45464,7 +45513,7 @@ msgid_plural "clean water" msgstr[0] "agua potable" msgstr[1] "agua potable" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "Agua potable, fresca. Verdaderamente, lo mejor para calmar tu sed." @@ -45475,7 +45524,7 @@ msgid_plural "mineral water" msgstr[0] "agua mineral" msgstr[1] "agua mineral" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -45626,7 +45675,7 @@ msgid_plural "maple sap" msgstr[0] "savia de arce" msgstr[1] "savia de arce" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "Es una solución de agua y azúcar que ha sido extraída de un arce." @@ -45637,7 +45686,7 @@ msgid_plural "mayonnaise" msgstr[0] "mayonesa" msgstr[1] "mayonesa" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -45664,7 +45713,7 @@ msgid_plural "mustard" msgstr[0] "mostaza" msgstr[1] "mostaza" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -45679,7 +45728,7 @@ msgid_plural "forest honey" msgstr[0] "miel de bosque" msgstr[1] "miel de bosque" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -45694,7 +45743,7 @@ msgid_plural "vinegar" msgstr[0] "vinagre" msgstr[1] "vinagre" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -45709,7 +45758,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "aceite vegetal de cocina" msgstr[1] "aceite vegetal de cocina" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "Aceite vegetal amarillento que se usa para cocinar." @@ -45720,7 +45769,7 @@ msgid_plural "animal cooking oil" msgstr[0] "aceite animal de cocina" msgstr[1] "aceite animal de cocina" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "El aceite animal amarillo y delgado que se usa para cocinar." @@ -45731,7 +45780,7 @@ msgid_plural "molasses" msgstr[0] "melaza" msgstr[1] "melazas" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -45747,7 +45796,7 @@ msgid_plural "horseradish" msgstr[0] "rábano picante" msgstr[1] "rábanos picantes" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "Una raíz de vegetal picante, rallada y sumergida en escabeche." @@ -45758,7 +45807,7 @@ msgid_plural "coffee syrup" msgstr[0] "jarabe de café" msgstr[1] "jarabe de café" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -46131,7 +46180,7 @@ msgid_plural "scrambled eggs" msgstr[0] "huevos revueltos" msgstr[1] "huevos revueltos" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "Huevos revueltos suaves y deliciosos." @@ -46155,7 +46204,7 @@ msgid_plural "fried eggs" msgstr[0] "huevo frito" msgstr[1] "huevos fritos" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -46170,7 +46219,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "huevos fritos de lujo" msgstr[1] "huevos fritos de lujo" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -46185,7 +46234,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "sandwich de huevos fritos" msgstr[1] "sándwiches de huevos fritos" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -46200,7 +46249,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "sándwich de huevos fritos de lujo" msgstr[1] "sándwiches de huevos fritos de lujo" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -46423,7 +46472,7 @@ msgid_plural "frozen yogurt" msgstr[0] "yogur congelado" msgstr[1] "yogures congelados" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -46497,7 +46546,7 @@ msgid_plural "peaches in syrup" msgstr[0] "melocotones en almíbar" msgstr[1] "melocotones en almíbar" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "Rebanadas amarillas de melocotones rebosados en almíbar." @@ -46519,7 +46568,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "mezcla para bebida de limonada" msgstr[1] "mezcla para bebida de limonada" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -46556,7 +46605,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "fruta deshidratada" msgstr[1] "fruta deshidratada" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -46573,7 +46622,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "fruta rehidratada" msgstr[1] "fruta rehidratada" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -46600,7 +46649,7 @@ msgid_plural "canned fruit" msgstr[0] "lata de fruta" msgstr[1] "latas de fruta" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -46615,7 +46664,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "pan de levadura de calabaza" msgstr[1] "panes de levadura de calabaza" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -46639,7 +46688,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "escaramujo irradiado" msgstr[1] "escaramujos irradiados" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -47089,7 +47138,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "brócoli irradiado" msgstr[1] "brócoli irradiado" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -47149,7 +47198,7 @@ msgid_plural "irradiated corn" msgstr[0] "maíz irradiado" msgstr[1] "maíces irradiados" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -47209,7 +47258,7 @@ msgid_plural "irradiated celery" msgstr[0] "apio irradiado" msgstr[1] "apios irradiados" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -47224,7 +47273,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "ruibarbo irradiado" msgstr[1] "ruibarbos irradiados" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -47348,12 +47397,12 @@ msgid_plural "potato chips" msgstr[0] "patatas fritas" msgstr[1] "patatas fritas" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "Unas papas fritas simples y saladas." -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "¡Oh, tío! ¡Te encantan estas patatas fritas! ¡Buenísimo!" @@ -47364,7 +47413,7 @@ msgid_plural "popcorn kernels" msgstr[0] "maíz para palomitas " msgstr[1] "maíces para palomitas " -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -47379,7 +47428,7 @@ msgid_plural "popcorn" msgstr[0] "palomitas de maíz" msgstr[1] "palomitas de maíz" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -47394,7 +47443,7 @@ msgid_plural "salted popcorn" msgstr[0] "palomitas de maíz saladas" msgstr[1] "palomitas de maíz saladas" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "Es palomitas de maíz con sal añadida para darle más sabor." @@ -47405,7 +47454,7 @@ msgid_plural "buttered popcorn" msgstr[0] "palomitas de maíz con mantequilla" msgstr[1] "palomitas de maíz con mantequilla" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -47418,7 +47467,7 @@ msgid_plural "pretzels" msgstr[0] "pretzels" msgstr[1] "pretzels" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "Una galleta para ir picando algo." @@ -47451,7 +47500,7 @@ msgid_plural "marshmallows" msgstr[0] "malvaviscos" msgstr[1] "malvaviscos" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "Es un puñado de malvaviscos blandos, suaves, inflados y deliciosos." @@ -47462,7 +47511,7 @@ msgid_plural "s'mores" msgstr[0] "smores" msgstr[1] "smores" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -47498,7 +47547,7 @@ msgid_plural "chewy candy" msgstr[0] "caramelo masticable" msgstr[1] "caramelos masticables" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "Un puñado de coloridos caramelos masticables con sabor a fruta." @@ -47509,14 +47558,14 @@ msgid_plural "gummy candy" msgstr[0] "osito de gominola" msgstr[1] "ositos de gominola" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" "Un puñado de caramelos de goma con forma de ositos de colores con sabor a " "fruta." -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -47569,7 +47618,7 @@ msgid_plural "powder candy sticks" msgstr[0] "palitos de caramelos en polvo" msgstr[1] "palitos de caramelos en polvo" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -47652,7 +47701,7 @@ msgid_plural "maple syrup" msgstr[0] "jarabe de arce" msgstr[1] "jarabe de arce" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -47667,7 +47716,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "jarabe de remolacha azucarera" msgstr[1] "jarabe de remolacha azucarera" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -47725,7 +47774,7 @@ msgid_plural "fast-food French fries" msgstr[0] "patatas fritas de comida basura" msgstr[1] "patatas fritas de comida basura" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -47737,7 +47786,7 @@ msgid_plural "French fries" msgstr[0] "patatas fritas" msgstr[1] "patatas fritas" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "Patatas fritas con un toque de sal. Crujientes y deliciosas." @@ -47760,7 +47809,7 @@ msgid_plural "Necco wafers" msgstr[0] "Galleta Necco (Caramelo)" msgstr[1] "Galletas Necco (Caramelo)" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -47790,8 +47839,8 @@ msgid_plural "caramel" msgstr[0] "caramelo" msgstr[1] "caramelo" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "Un poco de caramelo. Sigue siendo malo para tu salud." @@ -47802,7 +47851,7 @@ msgid_plural "caramel apple" msgstr[0] "manzana de caramelo" msgstr[1] "manzanas de caramelo" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "A que no te puedes comer una sola." @@ -47813,7 +47862,7 @@ msgid_plural "tortilla chips" msgstr[0] "tortilla chips" msgstr[1] "tortilla chips" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -47828,7 +47877,7 @@ msgid_plural "cheese nachos" msgstr[0] "nachos de queso" msgstr[1] "nachos de queso" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -47843,31 +47892,28 @@ msgid_plural "meat nachos" msgstr[0] "nachos de carne" msgstr[1] "nachos de carne" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "nachos niño" msgstr[1] "nachos niño" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "nachos nibelungo" msgstr[1] "nachos nibelungo" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "nachos con chupacabra" msgstr[1] "nachos con chupacabra" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -47882,31 +47928,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "nachos de carne con queso" msgstr[1] "nachos de carne con queso" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "nachos niño con queso" msgstr[1] "nachos niño con queso" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "nachos nibelungo con queso" msgstr[1] "nachos nibelungo con queso" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "nachos de queso y chupacabra" msgstr[1] "nachos de queso y chupacabra" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -47920,7 +47966,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "nachos vegetarianos" msgstr[1] "nachos vegetarianos" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -47935,7 +47981,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "nachos vegetarianos con queso" msgstr[1] "nachos vegetarianos con queso" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -48020,7 +48066,7 @@ msgid_plural "chili dogs" msgstr[0] "perrito caliente con chili" msgstr[1] "perritos calientes con chili" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "Un perrito caliente servido con chili con carne como aderezo. ¡Rico!" @@ -48031,7 +48077,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "salchicha empanada sin cocinar" msgstr[1] "salchichas empanadas sin cocinar" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -48117,7 +48163,7 @@ msgid_plural "cheese fries" msgstr[0] "patatas fritas con queso" msgstr[1] "patatas fritas con queso" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr " Patatas fritas con un delicioso queso encima." @@ -48216,8 +48262,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "cacahuetes recubiertos de caramelo" msgstr[1] "cacahuetes recubiertos de caramelo" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -48385,32 +48430,26 @@ msgid_plural "raw sausages" msgstr[0] "salchicha cruda" msgstr[1] "salchichas cruda" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "mannwurst crudo" msgstr[1] "mannwursts crudos" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "kilbasa crudo" msgstr[1] "kilbasas crudos" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -48429,15 +48468,14 @@ msgid_plural "smoked sausages" msgstr[0] "salchicha ahumada" msgstr[1] "salchichas ahumadas" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "mannwurst ahumado" msgstr[1] "mannwursts ahumados" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -48458,15 +48496,14 @@ msgid_plural "cooked sausages" msgstr[0] "salchicha cocinada" msgstr[1] "salchichas cocinadas" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "mannwurst cocinado" msgstr[1] "mannwursts cocinados" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -48496,23 +48533,21 @@ msgid_plural "bratwursts" msgstr[0] "bratwurst" msgstr[1] "bratwursts" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "mannbrat" msgstr[1] "mannbrats" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "frankenfurter" msgstr[1] "frankenfurters" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -48535,7 +48570,7 @@ msgid_plural "royal beef" msgstr[0] "ternera real" msgstr[1] "ternera real" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -48594,7 +48629,7 @@ msgid_plural "cracklins" msgstr[0] "torrezno" msgstr[1] "torreznos" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -48609,8 +48644,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "solomillo glaseado" msgstr[1] "solomillos glaseados" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -48618,7 +48652,7 @@ msgid_plural "grisly %s" msgstr[0] "espeluznante %s" msgstr[1] "espeluznante %s" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -48635,7 +48669,7 @@ msgid_plural "currywursts" msgstr[0] "currywurst" msgstr[1] "currywursts" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -48643,8 +48677,7 @@ msgid_plural "cheapskate %s" msgstr[0] "tacaño %s" msgstr[1] "tacaño %s" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -48652,8 +48685,7 @@ msgid_plural "confusing %s" msgstr[0] "confuso %s" msgstr[1] "confuso %s" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -48676,9 +48708,8 @@ msgid_plural "aspics" msgstr[0] "áspic" msgstr[1] "áspics" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -48686,9 +48717,8 @@ msgid_plural "abomination %s" msgstr[0] "abominación %s" msgstr[1] "abominación %s" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -48696,9 +48726,8 @@ msgid_plural "amoral %s" msgstr[0] "amoral %s" msgstr[1] "amoral %s" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -48722,7 +48751,7 @@ msgid_plural "dehydrated fish" msgstr[0] "pescado deshidratado" msgstr[1] "pescados deshidratados" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -48737,7 +48766,7 @@ msgid_plural "rehydrated fish" msgstr[0] "pescado rehidratado" msgstr[1] "pescados rehidratados" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -48750,7 +48779,7 @@ msgid_plural "pickled fish" msgstr[0] "pescado al escabeche" msgstr[1] "pescados al escabeche" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -48762,7 +48791,7 @@ msgid_plural "canned fish" msgstr[0] "lata de pescado" msgstr[1] "latas de pescado" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -48777,7 +48806,7 @@ msgid_plural "batter fried fish" msgstr[0] "pescado salteado" msgstr[1] "pescados salteados" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "Una porción deliciosa de pescado frito, crujiente y dorado." @@ -48810,8 +48839,7 @@ msgid_plural "lunch meats" msgstr[0] "fiambre" msgstr[1] "fiambres" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -48834,7 +48862,7 @@ msgid_plural "bologna" msgstr[0] "bolonia" msgstr[1] "bolonia" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -48842,8 +48870,7 @@ msgid_plural "brat %s" msgstr[0] "maleducado %s" msgstr[1] "maleducado %s" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -48851,8 +48878,7 @@ msgid_plural "Tumnis %s" msgstr[0] "Tumnis %s" msgstr[1] "Tumnis %s" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -48860,7 +48886,7 @@ msgid_plural "bleak %s" msgstr[0] "lúgubre %s" msgstr[1] "lúgubre %s" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -48894,7 +48920,7 @@ msgid_plural "SPAM" msgstr[0] "SPAM" msgstr[1] "SPAM" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -48937,24 +48963,22 @@ msgid_plural "sausage gravies" msgstr[0] "salsa espesa de salchichas" msgstr[1] "salsas espesas de salchichas" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "salsa espesa de Mannwurst" msgstr[1] "salsas espesas de Mannwurst" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "salsa espesa de salchicha" msgstr[1] "salsas espesas de salchichas" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -48977,7 +49001,7 @@ msgid_plural "pemmican" msgstr[0] "pemmican" msgstr[1] "pemmican" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -48985,8 +49009,7 @@ msgid_plural "prepper %s" msgstr[0] "%s preparado" msgstr[1] "%s preparado" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -48994,8 +49017,7 @@ msgid_plural "Orley %s" msgstr[0] "%s Orley" msgstr[1] "%s Orley" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -49003,7 +49025,7 @@ msgid_plural "pernicious %s" msgstr[0] " %s pernicioso" msgstr[1] "%s pernicioso" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -49020,15 +49042,14 @@ msgid_plural "hamburger helpers" msgstr[0] "refuerzo para hamburguesa" msgstr[1] "refuerzos para hamburguesas" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "pasta instantánea sabor vagabundo" msgstr[1] "pasta instantánea sabor vagabundo" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -49036,8 +49057,7 @@ msgid_plural "halfling helper" msgstr[0] "pasta instantánea sabor mediocre" msgstr[1] "pasta instantánea sabor mediocre" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -49073,24 +49093,22 @@ msgid_plural "chilis con carne" msgstr[0] "chili con carne" msgstr[1] "chilis con carne" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "chiles con cabrón" msgstr[1] "chiles con cabrón" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "chile con Sindar" msgstr[1] "chiles con Sindar" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -49108,7 +49126,7 @@ msgid_plural "pork and beans" msgstr[0] "cerdo con alubias" msgstr[1] "cerdo con alubias" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -49123,7 +49141,7 @@ msgid_plural "canned tuna fish" msgstr[0] "lata de atún" msgstr[1] "latas de atún" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "¡Ahora con el 95 por ciento menos de delfines!" @@ -49134,7 +49152,7 @@ msgid_plural "canned salmon" msgstr[0] "salmón enlatado" msgstr[1] "salmón enlatado" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "¡Una pasta de pescado rosa brillante en lata!" @@ -49156,7 +49174,7 @@ msgid_plural "pickled herring" msgstr[0] "arenque en escabeche" msgstr[1] "arenque en escabeche" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -49179,16 +49197,14 @@ msgid_plural "clam chowders" msgstr[0] "crema de almejas" msgstr[1] "cremas de almejas" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "sopa de carne" msgstr[1] "sopas de carne" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -49210,15 +49226,14 @@ msgid_plural "baked beans" msgstr[0] "alubias horneadas" msgstr[1] "alubias horneadas" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "cerdo con alubias" msgstr[1] "cerdo con alubias" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "Alubias cocinados lentamente con carne. Sabrosos y atiborran." @@ -49229,15 +49244,14 @@ msgid_plural "meat fried rice" msgstr[0] "arroz frito con carne" msgstr[1] "arroces fritos con carne" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "arroz frito mutante" msgstr[1] "arroz frito mutante" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "Delicioso arroz frito con carne. Sabroso y atiborra." @@ -49248,15 +49262,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "alubias con arroz deluxe" msgstr[1] "alubias con arroz deluxe" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "frijoles y arroz \"de lujo\"" msgstr[1] "frijoles y arroz \"de lujo\"" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -49271,22 +49285,21 @@ msgid_plural "meat pies" msgstr[0] "tarta de carne" msgstr[1] "tartas de carne" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "tarta de pinchazo" msgstr[1] "tartas de pinchazos" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "pastel de animal parlante" msgstr[1] "pastel de animal parlante" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -49305,23 +49318,21 @@ msgid_plural "meat pizzas" msgstr[0] "pizza de carne" msgstr[1] "pizzas de carne" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "pizza pretenciosa" msgstr[1] "pizza pretenciosa" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "pizza protestante" msgstr[1] "pizza protestante" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -49355,31 +49366,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "huevos revueltos deluxe" msgstr[1] "huevos revueltos deluxe" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "revuelto de lujo con huevos" msgstr[1] "revueltos de lujo con huevos" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "huevos revueltos del hombre pájaro" msgstr[1] "huevos revueltos del hombre pájaro" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "huevos revueltos \"deluxe\"" msgstr[1] "huevos revueltos \"deluxe\"" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -49394,15 +49404,14 @@ msgid_plural "canned meats" msgstr[0] "lata de carne" msgstr[1] "latas de carne" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "rebanada soylent" msgstr[1] "rebanadas soylent" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -49424,15 +49433,14 @@ msgid_plural "salted meat slices" msgstr[0] "rebanada de carne salada" msgstr[1] "rebanadas de carne salada" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "rebanada simples saladas" msgstr[1] "rebanadas simples saladas" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -49452,15 +49460,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "espagueti a la boloñesa" msgstr[1] "espagueti a la boloñesa" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "espagueti a lo sinvergüenza" msgstr[1] "espagueti a lo sinvergüenza" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -49468,8 +49475,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "espagueti parlanchín" msgstr[1] "espagueti parlanchín" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -49477,7 +49483,7 @@ msgid_plural "gnarly %s" msgstr[0] "%s desagradable" msgstr[1] "%s desagradable" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "Espagueti recubierto con abundante tuco. ¡Rico!" @@ -49488,7 +49494,7 @@ msgid_plural "lasagnes" msgstr[0] "lasaña" msgstr[1] "lasañas" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -49496,8 +49502,7 @@ msgid_plural "Luigi %s" msgstr[0] "Luigi %s" msgstr[1] "Luigi %s" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -49505,7 +49510,7 @@ msgid_plural "Lab %s" msgstr[0] "Laboratorio %s" msgstr[1] "Laboratorio %s" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -49528,7 +49533,7 @@ msgid_plural "fried SPAM" msgstr[0] "SPAM frito" msgstr[1] "SPAM frito" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "Es carne en lata. Así frita, este SPAM está bastante bueno." @@ -49539,8 +49544,7 @@ msgid_plural "cheeseburgers" msgstr[0] "hamburguesa de queso" msgstr[1] "hamburguesas de queso" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -49548,7 +49552,7 @@ msgid_plural "chump %s" msgstr[0] "bobo %s" msgstr[1] "bobo %s" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -49557,8 +49561,7 @@ msgid_plural "elf %s" msgstr[0] "%s élfico" msgstr[1] "%s élficos" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -49596,23 +49599,21 @@ msgid_plural "hamburgers" msgstr[0] "hamburguesa" msgstr[1] "hamburguesas" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "hamburguesa bob" msgstr[1] "hamburguesa bob" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "hamburguesa Moreau" msgstr[1] "hamburguesa Moreau" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -49631,23 +49632,21 @@ msgid_plural "sloppy joes" msgstr[0] "chapucero joe" msgstr[1] "chapuceros joe" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "mánguche" msgstr[1] "mánguches" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "manfriendwich" msgstr[1] "manfriendwiches" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -49670,7 +49669,7 @@ msgid_plural "tacos" msgstr[0] "taco" msgstr[1] "tacos" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -49678,8 +49677,7 @@ msgid_plural "tio %s" msgstr[0] "tío %s" msgstr[1] "tíos %s" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -49687,7 +49685,7 @@ msgid_plural "talking %s" msgstr[0] "%s parlante" msgstr[1] "%s parlante" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -49710,15 +49708,14 @@ msgid_plural "pickled meats" msgstr[0] "carne en escabeche" msgstr[1] "carnes en escabeche" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "punk encurtido" msgstr[1] "punk encurtido" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -49738,10 +49735,8 @@ msgid_plural "dehydrated meats" msgstr[0] "carne deshidratada" msgstr[1] "carnes deshidratadas" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -49749,12 +49744,11 @@ msgid_plural "%s, human" msgstr[0] "%s, humano" msgstr[1] "%s, humano" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -49790,9 +49784,8 @@ msgid_plural "haggises" msgstr[0] "haggis" msgstr[1] "haggises" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -49819,7 +49812,7 @@ msgid_plural "fish makizushi" msgstr[0] "makizushi de pescado" msgstr[1] "makizushi de pescado" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -49834,8 +49827,7 @@ msgid_plural "meat temaki" msgstr[0] "temaki de carne" msgstr[1] "temaki de carne" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -49843,7 +49835,7 @@ msgid_plural "troubling %s" msgstr[0] "%s problemático" msgstr[1] "%s problemático" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -49858,7 +49850,7 @@ msgid_plural "sashimi" msgstr[0] "sashimi" msgstr[1] "sashimi" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "Deliciosas rebanadas finas de pescado y sabrosos vegetales." @@ -49884,7 +49876,7 @@ msgid_plural "pelmenis" msgstr[0] "pelmeni" msgstr[1] "pelmenis" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -49907,8 +49899,7 @@ msgid_plural "homemade burritos" msgstr[0] "burrito casero" msgstr[1] "burritos caseros" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -49932,15 +49923,14 @@ msgid_plural "raw meatballs" msgstr[0] "albóndiga cruda" msgstr[1] "albóndigas crudas" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "bola de hombre cruda" msgstr[1] "bolas de hombre crudas" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -49959,15 +49949,14 @@ msgid_plural "meatballs" msgstr[0] "albóndiga" msgstr[1] "albóndigas" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "bola de hombre" msgstr[1] "bolas de hombre" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -50007,12 +49996,12 @@ msgid_plural "prescription stimulant" msgstr[0] "estimulante de prescripción" msgstr[1] "estimulantes de prescripción" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "Tomas algunos estimulantes." -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -50069,7 +50058,7 @@ msgid_plural "antibiotics" msgstr[0] "antibióticos" msgstr[1] "antibióticos" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -50101,7 +50090,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "medicamento antiparasitario" msgstr[1] "medicamento antiparasitario" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -50187,7 +50176,7 @@ msgid_plural "antiseptic powder" msgstr[0] "polvo antiséptico" msgstr[1] "polvo antiséptico" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -50250,7 +50239,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "agua oxigenada" msgstr[1] "agua oxigenada" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -50311,12 +50300,12 @@ msgid_plural "codeine" msgstr[0] "codeína" msgstr[1] "codeína" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "Te tomas una codeína." -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -50333,7 +50322,7 @@ msgid_plural "cocaine" msgstr[0] "cocaína" msgstr[1] "cocaína" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -50384,7 +50373,7 @@ msgid_plural "cotton balls" msgstr[0] "bolitas de algodón" msgstr[1] "bolitas de algodón" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -50400,12 +50389,12 @@ msgid_plural "crack" msgstr[0] "crack" msgstr[1] "crack" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "Te fumás tus piedras de crack. Tu madre estaría orgullosa." -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -50420,7 +50409,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "jarabe para la tos que no causa sueño" msgstr[1] "jarabe para la tos que no causa sueño" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -50437,7 +50426,7 @@ msgid_plural "antiseptic" msgstr[0] "antiséptico" msgstr[1] "antisépticos" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "Un poderoso antiséptico comúnmente usado para heridas contaminadas." @@ -50462,7 +50451,7 @@ msgid_plural "prescription sedative" msgstr[0] "sedante de prescripción" msgstr[1] "sedantes de prescripción" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -50477,12 +50466,12 @@ msgid_plural "high quality shatter" msgstr[0] "fragmento de alta calidad" msgstr[1] "fragmentos de alta calidad" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "Tomas una pizca. ¡Vaya, eso tiene unos terpenos asesinos!" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -50505,12 +50494,12 @@ msgid_plural "high quality wax" msgstr[0] "cera de alta calidad" msgstr[1] "cera de alta calidad" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "Tomas una pizca de cera. *Toses ,toses* ¡Buenas cosas!" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -50531,12 +50520,12 @@ msgid_plural "high quality crude oil" msgstr[0] "petróleo crudo de alta calidad" msgstr[1] "petróleo crudo de alta calidad" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "Fumas unos cuantos toques malos. No es una buena idea." -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -50554,16 +50543,14 @@ msgid_plural "low quality crude oil" msgstr[0] "petróleo crudo de baja calidad" msgstr[1] "petróleo crudo de baja calidad" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "Fumas unos cuantos toques malos. No es una buena idea." -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -50581,7 +50568,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "(etanol) petróleo crudo de baja calidad" msgstr[1] "(etanol) petróleo crudo de baja calidad" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -50598,7 +50585,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "(etanol) petróleo crudo de alta calidad" msgstr[1] "(etanol) petróleo crudo de alta calidad" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -50615,7 +50602,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "(etanol) petróleo crudo de baja calidad filtrado" msgstr[1] "(etanol) petróleo crudo de baja calidad filtrado" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -50633,7 +50620,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "(etanol) petróleo crudo filtrado de alta calidad" msgstr[1] "(etanol) petróleo crudo filtrado de alta calidad" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -50651,7 +50638,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "petróleo crudo de baja calidad filtrado" msgstr[1] "petróleo crudo de baja calidad filtrado" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -50670,7 +50657,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "petróleo crudo de alta calidad filtrado" msgstr[1] "petróleo crudo de alta calidad filtrado" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -50689,7 +50676,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "destilado de alta calidad (cabezas)" msgstr[1] "destilado de alta calidad (cabezas)" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -50706,7 +50693,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "destilado de alta calidad (colas)" msgstr[1] "destilado de alta calidad (colas)" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -50723,12 +50710,12 @@ msgid_plural "high quality distillate" msgstr[0] "destilado de alta calidad" msgstr[1] "destilado de alta calidad" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "Inhalas un poco de un destilado. Taaaaan agradable..." -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -50826,7 +50813,7 @@ msgid_plural "chewing gum" msgstr[0] "chicle" msgstr[1] "chicle" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "Es chicle sin azúcar de un rosa brillante." @@ -50854,13 +50841,13 @@ msgid_plural "heroin" msgstr[0] "heroína" msgstr[1] "heroína" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "Te inyectaste." -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -50948,7 +50935,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "metanfetamina de baja calidad" msgstr[1] "metanfetamina de baja calidad" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -50965,7 +50952,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "metanfetamina de alta calidad" msgstr[1] "metanfetamina de alta calidad" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -51029,7 +51016,7 @@ msgid_plural "cough syrup" msgstr[0] "jarabe para la tos" msgstr[1] "jarabe para la tos" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -51065,7 +51052,7 @@ msgid_plural "sleeping pill" msgstr[0] "pastilla para dormir" msgstr[1] "pastillas para dormir" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -51117,7 +51104,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "jarabe de amapola para la tos" msgstr[1] "jarabe de amapola para la tos" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "Jarabe para la tos hecho de amapola mutada. Te va a dar sueño." @@ -51128,8 +51115,7 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "antiveneno profiláctico inyectable" msgstr[1] "antivenenos profilácticos inyectables" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " @@ -51138,7 +51124,7 @@ msgstr "" "Te inyectas un vial de antiveneno profiláctico en el brazo. Te sientes un " "poco mareado." -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -51157,7 +51143,7 @@ msgid_plural "antidepressant" msgstr[0] "antidepresivo" msgstr[1] "antidepresivo" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -51195,7 +51181,7 @@ msgid_plural "hemostatic powder" msgstr[0] "polvo hemostático" msgstr[1] "polvo hemostático" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -51226,7 +51212,7 @@ msgid_plural "antipsychotic" msgstr[0] "antipsicótico" msgstr[1] "antipsicótico" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -51534,12 +51520,12 @@ msgid_plural "marijuana" msgstr[0] "marihuana" msgstr[1] "marihuana" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "Fumas un poco de marihuana. ¡Tío esta buena!" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -51556,7 +51542,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "sedante de acción rápida" msgstr[1] "sedantes de acción rápida" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -51588,7 +51574,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "algodón empapado de antiséptico" msgstr[1] "algodón empapado de antiséptico" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -51603,7 +51589,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "antibiótico de espectro reducido" msgstr[1] "antibióticos de espectro reducido" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -51684,7 +51670,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "antibiótico de amplio espectro" msgstr[1] "antibióticos de amplio espectro" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -51703,7 +51689,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "crema tópica de cocaína" msgstr[1] "crema tópica de cocaína" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -52268,7 +52254,7 @@ msgid_plural "alpha serum" msgstr[0] "suero alfa" msgstr[1] "sueros alfa" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -52558,9 +52544,8 @@ msgstr[1] "sueros de batracio" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" "Un mutágeno superconcentrado con ese aspecto de agua de estanque... ¿se " "mueven las sombras en él? Necesitas una jeringa para inyectarlo... ¿si " @@ -52638,7 +52623,7 @@ msgid_plural "alpha mutagen" msgstr[0] "mutagéno alfa" msgstr[1] "mutagénos alfa" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -52757,7 +52742,8 @@ msgstr[1] "mutágenos de batracio" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" "Un mutágeno sombrío que parece estar lleno de pequeños renacuajos nadadores." @@ -52920,7 +52906,7 @@ msgid_plural "pine nuts" msgstr[0] "piñones" msgstr[1] "piñones" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "Un puñado de sabrosas nueces crujientes de una piña." @@ -52931,7 +52917,7 @@ msgid_plural "junipers" msgstr[0] "enebros" msgstr[1] "enebros" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -52946,7 +52932,7 @@ msgid_plural "shelled pistachios" msgstr[0] "pistachos sin cáscara" msgstr[1] "pistachos sin cáscara" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -52958,7 +52944,7 @@ msgid_plural "roasted pistachios" msgstr[0] "pistachos tostados" msgstr[1] "pistachos tostados" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "Un puñado de nueces tostadas de un árbol de pistacho." @@ -52969,7 +52955,7 @@ msgid_plural "shelled almonds" msgstr[0] "almendras sin cáscara" msgstr[1] "almendras sin cáscara" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "Es un puñado de frutos secos del almendro, sin cáscara." @@ -52980,7 +52966,7 @@ msgid_plural "almond pulp" msgstr[0] "pulpa de almendra" msgstr[1] "pulpas de almendra" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -52994,7 +52980,7 @@ msgid_plural "roasted almonds" msgstr[0] "almendras tostadas" msgstr[1] "almendras tostadas" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "Un puñado de nueces tostadas de un almendro." @@ -53005,7 +52991,7 @@ msgid_plural "cashews" msgstr[0] "anacardos" msgstr[1] "anacardos" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "Un puñado de anacardos salados." @@ -53016,7 +53002,7 @@ msgid_plural "shelled pecans" msgstr[0] "pecanas sin cáscara" msgstr[1] "pecanas sin cáscara" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -53031,7 +53017,7 @@ msgid_plural "roasted pecans" msgstr[0] "pecanas asadas" msgstr[1] "pecanas asadas" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "Un puñado de nueces tostadas de un árbol de nuez." @@ -53042,7 +53028,7 @@ msgid_plural "shelled peanuts" msgstr[0] "cacahuetes sin cáscara" msgstr[1] "cacahuetes sin cáscara" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "Cacahuetes salados, se les ha quitado la cáscara." @@ -53053,7 +53039,7 @@ msgid_plural "beech nuts" msgstr[0] "nueces de haya" msgstr[1] "nueces de haya" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "Un puñado de nueces duras y puntiagudas de un haya." @@ -53064,7 +53050,7 @@ msgid_plural "shelled walnuts" msgstr[0] "nueces peladas" msgstr[1] "nueces peladas" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -53077,7 +53063,7 @@ msgid_plural "roasted walnuts" msgstr[0] "nueces asadas" msgstr[1] "nueces asadas" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "Un puñado de nueces tostadas de un nogal." @@ -53088,7 +53074,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "castañas sin cáscara" msgstr[1] "castañas sin cáscara" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -53103,7 +53089,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "castañas asadas" msgstr[1] "castañas asadas" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "Un puñado de nueces tostadas de un castaño." @@ -53114,7 +53100,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "avellanas sin cáscara" msgstr[1] "avellanas sin cáscara" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -53129,7 +53115,7 @@ msgid_plural "roasted edamame" msgstr[0] "edamame asado" msgstr[1] "edamame asado" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "Edamame asado, un tentempié abundante y saludable." @@ -53140,7 +53126,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "nueces de soja tostadas" msgstr[1] "nueces de soja tostadas" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "Granos de soja tostados, a menudo llamados nueces de soja." @@ -53151,7 +53137,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "avellanas asadas" msgstr[1] "avellanas asadas" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "Un puñado de nueces tostadas de un avellano." @@ -53162,7 +53148,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "nueces de nogal americano sin cáscara" msgstr[1] "nueces de nogal americano sin cáscara" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -53177,7 +53163,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "nueces de nogal americano asadas" msgstr[1] "nueces de nogal americano asadas" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "Un puñado de nueces tostadas de un nogal americano." @@ -53237,12 +53223,14 @@ msgid_plural "acorns" msgstr[0] "bellota" msgstr[1] "bellotas" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " "taste terribly bitter and can upset your stomach." msgstr "" +"Un puñado de bellotas, todavía con sus cáscaras. A las ardillas les gustan " +"pero tienen un sabor terriblemente amargo que te puede sentar mal." #: lang/json/COMESTIBLE_from_json.py msgid "roasted acorns" @@ -53250,7 +53238,7 @@ msgid_plural "roasted acorns" msgstr[0] "bellota asada" msgstr[1] "bellotas asadas" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "Un puñado de nueces tostadas de un roble." @@ -53261,7 +53249,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "comida de bellota cocinada" msgstr[1] "comida de bellota cocinada" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -53276,7 +53264,7 @@ msgid_plural "foie gras" msgstr[0] "foie gras" msgstr[1] "foie gras" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -53289,7 +53277,7 @@ msgid_plural "liver & onions" msgstr[0] "hígado y cebollas" msgstr[1] "hígado y cebollas" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "Una forma clásica de servir el hígado." @@ -53348,7 +53336,7 @@ msgid_plural "leverpostej" msgstr[0] "Leverpostej" msgstr[1] "Leverpostej" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -53452,8 +53440,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "artifical sausage casing" msgid_plural "artifical sausage casings" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "tripa artificial para salchichas" +msgstr[1] "tripas artificiales para salchichas" #. ~ Description for artifical sausage casing #: lang/json/COMESTIBLE_from_json.py @@ -53461,6 +53449,8 @@ msgid "" "Sausage casings made from plastic bags. Ready to be used for forming meat " "products." msgstr "" +"Tripas para embutidos fabricadas con bolsas de plástico. Listas para ser " +"utilizadas para formar productos cárnicos." #: lang/json/COMESTIBLE_from_json.py msgid "homemade hot dog" @@ -53581,7 +53571,7 @@ msgid_plural "marloss gelatin" msgstr[0] "gelatina de marloss" msgstr[1] "gelatinas de marloss" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -53615,7 +53605,7 @@ msgid_plural "yeast" msgstr[0] "levadura" msgstr[1] "levadura" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -53629,7 +53619,7 @@ msgid_plural "bone meal" msgstr[0] "harina de huesos" msgstr[1] "harinas de huesos" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -53642,7 +53632,7 @@ msgid_plural "powdered gelatin" msgstr[0] "gelatina en polvo" msgstr[1] "gelatinas en polvo" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -53656,7 +53646,7 @@ msgid_plural "fresh gelatin" msgstr[0] "gelatina fresca" msgstr[1] "gelatinas frescas" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "Fresco" @@ -53667,7 +53657,7 @@ msgid_plural "tainted bone meal" msgstr[0] "harina de huesos contaminados" msgstr[1] "harinas de huesos contaminados" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "Es harina de huesos grisácea hecha con huesos podridos." @@ -53678,7 +53668,7 @@ msgid_plural "chitin powder" msgstr[0] "polvo de quitina" msgstr[1] "polvo de quitina" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -53729,7 +53719,7 @@ msgid_plural "dried beans" msgstr[0] "alubia seca" msgstr[1] "alubias secas" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -53744,7 +53734,7 @@ msgid_plural "cooked beans" msgstr[0] "alubias cocinadas" msgstr[1] "alubias cocinadas" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "Es una porción abundante de alubias norteños cocinados." @@ -53755,8 +53745,8 @@ msgid_plural "tofu" msgstr[0] "tofu" msgstr[1] "tofu" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -53778,7 +53768,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "tofu deshidratado" msgstr[1] "tofu deshidratado" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -53790,7 +53780,7 @@ msgid_plural "soybeans" msgstr[0] "granos de soja" msgstr[1] "granos de soja" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -53820,7 +53810,7 @@ msgid_plural "dried lentils" msgstr[0] "lentejas secas" msgstr[1] "lentejas secas" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -53833,7 +53823,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "comida deliciosa™ de Lugarcomida" msgstr[1] "comidas deliciosas™ de Lugarcomida" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -53849,7 +53839,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "entrante apropiado™ de Lugarcomida" msgstr[1] "entrantes apropiados™ de Lugarcomida" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "¡Comida de verdad ahora en formato de bolsillo!" @@ -53860,7 +53850,7 @@ msgid_plural "cooked lentils" msgstr[0] "lentejas cocinadas" msgstr[1] "lentejas cocinadas" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "Unas deliciosas lentejas cocidas. Humildes pero ricas en nutrientes." @@ -53871,7 +53861,7 @@ msgid_plural "coffee powder" msgstr[0] "café molido" msgstr[1] "café molido" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -53886,7 +53876,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "granos de café de Kentucky" msgstr[1] "granos de café de Kentucky" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -53901,7 +53891,7 @@ msgid_plural "candied honey" msgstr[0] "miel cristalizada" msgstr[1] "miel cristalizada" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -53946,7 +53936,7 @@ msgid_plural "cattle fodder" msgstr[0] "alimento para ganado" msgstr[1] "alimento para ganado" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -53961,7 +53951,7 @@ msgid_plural "bird food" msgstr[0] "comida de pájaros" msgstr[1] "comidas de pájaros" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -53976,7 +53966,7 @@ msgid_plural "wet dog food" msgstr[0] "comida para perros mojada" msgstr[1] "comida para perros mojada" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -53991,7 +53981,7 @@ msgid_plural "dry dog food" msgstr[0] "comida seca para perros" msgstr[1] "comida seca para perros" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -54006,7 +53996,7 @@ msgid_plural "wet cat food" msgstr[0] "comida para gatos mojada" msgstr[1] "comida para gatos mojada" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -54021,7 +54011,7 @@ msgid_plural "dry cat food" msgstr[0] "comida seca para gatos" msgstr[1] "comida seca para gatos" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -54166,7 +54156,7 @@ msgid_plural "instant coffee mix" msgstr[0] "mezcla de café instantáneo" msgstr[1] "mezclas de café instantáneo" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -54212,15 +54202,14 @@ msgid_plural "protein drinks" msgstr[0] "bebida de proteína" msgstr[1] "bebidas de proteína" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "bebida soylent verde" msgstr[1] "bebidas soylent verde" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -54228,14 +54217,11 @@ msgid_plural "sapient green drink" msgstr[0] "bebida verde sapiente" msgstr[1] "bebidas verdes sapientes" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -54258,15 +54244,14 @@ msgid_plural "protein powder" msgstr[0] "polvo de proteína" msgstr[1] "polvo de proteína" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "polvo de soylent verde" msgstr[1] "polvo de soylent verde" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -54274,7 +54259,7 @@ msgid_plural "sapient green powder" msgstr[0] "polvo verde sapiente" msgstr[1] "polvo verde sapiente" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -54310,15 +54295,14 @@ msgid_plural "protein shakes" msgstr[0] "batido de proteínas" msgstr[1] "batidos de proteínas" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "batido soylent verde" msgstr[1] "batidos soylent verde" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -54341,7 +54325,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "batido de proteínas fortificados" msgstr[1] "batidos de proteínas fortificados" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -54349,7 +54333,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "batido soylent verde fortificado" msgstr[1] "batidos soylent verde fortificados" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -54420,7 +54404,7 @@ msgid_plural "blueberries" msgstr[0] "arándanos azules" msgstr[1] "arándanos azules" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "Son azules, pero eso no significa que sean de la realeza." @@ -54431,7 +54415,7 @@ msgid_plural "strawberries" msgstr[0] "fresas" msgstr[1] "fresas" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "Es una baya sabrosa y jugosa. A menudo crece silvestre en los campos." @@ -54442,7 +54426,7 @@ msgid_plural "cranberries" msgstr[0] "arándanos rojos" msgstr[1] "arándanos rojos" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "Arándanos rojos y agrios. Buenos para la salud." @@ -54453,7 +54437,7 @@ msgid_plural "raspberries" msgstr[0] "frambuesas" msgstr[1] "frambuesas" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "Una frambuesa roja y dulce." @@ -54464,7 +54448,7 @@ msgid_plural "huckleberries" msgstr[0] "huckleberries" msgstr[1] "huckleberries" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "Son arándanos agrios, a menudo confundidos con las moras azules." @@ -54475,7 +54459,7 @@ msgid_plural "mulberries" msgstr[0] "moras" msgstr[1] "moras" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -54490,7 +54474,7 @@ msgid_plural "elderberries" msgstr[0] "bayas de saúco" msgstr[1] "bayas de saúco" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -54503,7 +54487,7 @@ msgid_plural "rose hips" msgstr[0] "escaramujos" msgstr[1] "escaramujos" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "Es el fruto de una flor de rosa polinizada." @@ -54551,7 +54535,7 @@ msgid_plural "cherries" msgstr[0] "cerezas" msgstr[1] "cerezas" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "Una fruta dulce y roja que crece en árboles." @@ -54576,7 +54560,7 @@ msgid_plural "grapes" msgstr[0] "uvas" msgstr[1] "uvas" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "Un racimo de jugosas uvas." @@ -54642,7 +54626,7 @@ msgid_plural "blackberries" msgstr[0] "zarzamoras" msgstr[1] "zarzamoras" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "Un primo oscuro de la frambuesa." @@ -54702,7 +54686,7 @@ msgid_plural "apricots" msgstr[0] "albaricoques" msgstr[1] "albaricoques" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "Una fruta de cáscara suave, parecida al melocotón." @@ -54746,7 +54730,7 @@ msgid_plural "bee balm" msgstr[0] "monarda" msgstr[1] "monardas" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -54760,7 +54744,7 @@ msgid_plural "broccoli" msgstr[0] "brócoli" msgstr[1] "brócoli" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "Es un poco duro, pero bastante delicioso." @@ -54771,7 +54755,7 @@ msgid_plural "buckwheat" msgstr[0] "trigo sarraceno" msgstr[1] "trigo sarraceno" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -54797,7 +54781,7 @@ msgid_plural "spinach" msgstr[0] "espinacas" msgstr[1] "espinacas" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "Un montón de hojas de espinaca." @@ -54851,7 +54835,7 @@ msgid_plural "celery" msgstr[0] "apio" msgstr[1] "apios" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "No es ni sabroso ni nutritivo, pero va bien en las ensaladas." @@ -54877,7 +54861,7 @@ msgid_plural "corn kernels" msgstr[0] "granos de maíz" msgstr[1] "granos de maíz" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "Deliciosas semillas doradas." @@ -54888,7 +54872,7 @@ msgid_plural "empty corn cob" msgstr[0] "mazorca de maíz vacia" msgstr[1] "mazorcas de maíz vacias" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -54956,7 +54940,7 @@ msgid_plural "salsify" msgstr[0] "escorzonera" msgstr[1] "escorzoneras" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -54972,7 +54956,7 @@ msgid_plural "chicory" msgstr[0] "achicoria" msgstr[1] "achicorias" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -55048,8 +55032,8 @@ msgid "" "Large white tapered root of a horseradish plant. Way too spicy in this " "form, but can be used for making condiments." msgstr "" -"Es la raíz grande y filosa de una planta de rábano. Muy picante en este " -"estado, pero puede ser usada para hacer condimentos." +"Raíz grande y afilada de una planta de rábano. Muy picante en este estado, " +"pero puede ser usada para hacer condimentos." #: lang/json/COMESTIBLE_from_json.py msgid "lettuce" @@ -55109,7 +55093,7 @@ msgid_plural "raw popcorn" msgstr[0] "palomitas de maíz crudas" msgstr[1] "palomitas de maíz crudas" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -55152,7 +55136,7 @@ msgid_plural "horseradish greens" msgstr[0] "rábano picante verde" msgstr[1] "rábanos picantes verdes" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -55167,7 +55151,7 @@ msgid_plural "dandelions" msgstr[0] "dientes de león" msgstr[1] "dientes de león" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -55182,7 +55166,7 @@ msgid_plural "burdocks" msgstr[0] "bardana" msgstr[1] "bardanas" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -55296,7 +55280,7 @@ msgid_plural "wild vegetables" msgstr[0] "verduras silvestres" msgstr[1] "verduras silvestres" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -55335,7 +55319,7 @@ msgid_plural "raw beans" msgstr[0] "alubias crudas" msgstr[1] "alubias crudas" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -55350,7 +55334,7 @@ msgid_plural "raw lentils" msgstr[0] "lentejas crudas" msgstr[1] "lentejas crudas" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "Lentejas crudas, sin cocer. Podrían ser cocinadas." @@ -55361,7 +55345,7 @@ msgid_plural "fiddleheads" msgstr[0] "brotes de helecho" msgstr[1] "brotes de helecho" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -55403,8 +55387,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "sandwich de lujo" msgstr[1] "sandwiches de lujo" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -55420,6 +55403,30 @@ msgstr "" "Es un sandwich de carne, verduras, queso y condimentos. ¡Sabroso y " "nutritivo!" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "sandwich reuben" +msgstr[1] "sandwiches reuben" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "sandwich falsoben" +msgstr[1] "sandwiches falsoben" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" +"Un clásico de antes del Cataclismo hecho con sustitutos significativos. Los " +"componentes clave son la salsa especial y el chucrut, con pan, carne y queso" +" frito en una sartén." + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -55483,7 +55490,7 @@ msgid_plural "fairy bread" msgstr[0] "pan de hada" msgstr[1] "pan de hadas" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -55536,26 +55543,23 @@ msgid_plural "meat sandwiches" msgstr[0] "sandwich de carne" msgstr[1] "sandwiches de carne" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "sandwich de vago" msgstr[1] "sandwiches de vago" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "sandwich sátiro" msgstr[1] "sandwiches sátiro" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -55682,7 +55686,7 @@ msgid_plural "mushroom spores" msgstr[0] "esporas de hongo" msgstr[1] "esporas de hongo" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "Algunas esporas de hongos." @@ -55693,7 +55697,7 @@ msgid_plural "hop rhizomes" msgstr[0] "rizomas de lúpulo" msgstr[1] "rizomas de lúpulo" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "Raíces de una planta de lúpulo, para poder hacer crecer más." @@ -55708,7 +55712,7 @@ msgid_plural "blackberry seeds" msgstr[0] "semillas de zarzamora" msgstr[1] "semillas de zarzamora" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "Algunas semillas de zarzamora." @@ -55723,7 +55727,7 @@ msgid_plural "blueberry seeds" msgstr[0] "semillas de arándano" msgstr[1] "semillas de arándano" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "Son unas semillas de arándano." @@ -55738,7 +55742,7 @@ msgid_plural "cranberry seeds" msgstr[0] "semilla de arándano rojo" msgstr[1] "semillas de arándanos rojos" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "Son unas semillas de arándano rojo." @@ -55753,7 +55757,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "semillas de huckleberry" msgstr[1] "semillas de huckleberry" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "Algunas semillas de arándanos." @@ -55768,7 +55772,7 @@ msgid_plural "mulberry seeds" msgstr[0] "semillas de moras" msgstr[1] "semillas de moras" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "Algunas semillas de moras." @@ -55783,7 +55787,7 @@ msgid_plural "elderberry seeds" msgstr[0] "semillas de bayas de saúco" msgstr[1] "semillas de bayas de saúco" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "Son unas semillas de bayas del saúco." @@ -55798,7 +55802,7 @@ msgid_plural "raspberry seeds" msgstr[0] "semillas de frambuesa" msgstr[1] "semillas de frambuesa" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "Algunas semillas de frambuesa." @@ -55813,7 +55817,7 @@ msgid_plural "strawberry seeds" msgstr[0] "semillas de fresa" msgstr[1] "semillas de fresa" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "Algunas semillas de fresa." @@ -55828,7 +55832,7 @@ msgid_plural "grape seeds" msgstr[0] "semillas de uva" msgstr[1] "semillas de uva" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "Algunas semillas de uva." @@ -55843,7 +55847,7 @@ msgid_plural "rose seeds" msgstr[0] "semillas de rosa" msgstr[1] "semillas de rosa" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "Algunas semillas de rosa." @@ -55858,7 +55862,7 @@ msgid_plural "tobacco seeds" msgstr[0] "semillas de tabaco" msgstr[1] "semillas de tabaco" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "Algunas semilla de tabaco." @@ -55873,7 +55877,7 @@ msgid_plural "barley seeds" msgstr[0] "semillas de cebada" msgstr[1] "semillas de cebada" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "Algunas semillas de cebada." @@ -55884,7 +55888,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "semillas de remolacha azucarera" msgstr[1] "semillas de remolacha azucarera" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "Algunas semillas de remolacha azucarera." @@ -55895,7 +55899,7 @@ msgid_plural "lettuce seeds" msgstr[0] "semillas de lechuga" msgstr[1] "semillas de lechuga" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "Algunas semillas de lechuga." @@ -55906,7 +55910,7 @@ msgid_plural "cabbage seeds" msgstr[0] "semillas de repollo" msgstr[1] "semillas de repollo" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "Algunas semillas de repollo blanco." @@ -55917,7 +55921,7 @@ msgid_plural "tomato seeds" msgstr[0] "semillas de tomate" msgstr[1] "semillas de tomate" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "Algunas semillas de tomate." @@ -55928,7 +55932,7 @@ msgid_plural "cotton seeds" msgstr[0] "semillas de algodón" msgstr[1] "semillas de algodón" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -55945,7 +55949,7 @@ msgid_plural "broccoli seeds" msgstr[0] "semillas de brócoli" msgstr[1] "semillas de brócoli" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "Agunas semillas de brócoli." @@ -55956,7 +55960,7 @@ msgid_plural "zucchini seeds" msgstr[0] "semillas de calabacín" msgstr[1] "semillas de calabacín" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "Algunas semillas de calabacín." @@ -55967,7 +55971,7 @@ msgid_plural "onion seeds" msgstr[0] "semillas de cebolla" msgstr[1] "semillas de cebolla" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "Algunas semillas de cebolla." @@ -55978,7 +55982,7 @@ msgid_plural "garlic seeds" msgstr[0] "semillas de ajo" msgstr[1] "semillas de ajo" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "Algunas semillas de ajo." @@ -55993,7 +55997,7 @@ msgid_plural "cattail seeds" msgstr[0] "semillas de juncos" msgstr[1] "semillas de juncos" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "Algunas semillas de juncos." @@ -56008,7 +56012,7 @@ msgid_plural "dahlia seeds" msgstr[0] "semillas de dalia" msgstr[1] "semillas de dalia" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "Algunas semillas de dalia." @@ -56023,7 +56027,7 @@ msgid_plural "salsify seeds" msgstr[0] "semillas de escorzoneras" msgstr[1] "semillas de escorzoneras" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "Algunas semillas de escorzoneras" @@ -56034,7 +56038,7 @@ msgid_plural "chicory seeds" msgstr[0] "semillas de achicoria" msgstr[1] "semillas de achicoria" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "Son unas semillas de achicoria." @@ -56045,7 +56049,7 @@ msgid_plural "wild root seeds" msgstr[0] "semillas de raíces salvajes" msgstr[1] "semillas de raíces salvajes" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "Algunas semillas de una flor blanca." @@ -56056,7 +56060,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "semillas de plantas decorativas" msgstr[1] "semillas de plantas decorativas" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -56076,7 +56080,7 @@ msgid_plural "cactus seeds" msgstr[0] "semillas de cactus" msgstr[1] "semillas de cactus" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "Algunas semillas de cactus." @@ -56103,7 +56107,7 @@ msgid_plural "carrot seeds" msgstr[0] "semillas de zanahoria" msgstr[1] "semillas de zanahoria" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "Algunas semillas de zanahoria." @@ -56114,7 +56118,7 @@ msgid_plural "corn seeds" msgstr[0] "semillas de maíz" msgstr[1] "semillas de maíz" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "Algunas semillas de maíz." @@ -56129,7 +56133,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "semillas de pimiento picante" msgstr[1] "semillas de pimiento picante" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "Algunas semillas de pimiento picante." @@ -56140,7 +56144,7 @@ msgid_plural "cucumber seeds" msgstr[0] "semillas de pepino" msgstr[1] "semillas de pepino" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "Algunas unas semillas de pepino." @@ -56166,7 +56170,7 @@ msgid_plural "cannabis seeds" msgstr[0] "semillas de cannabis" msgstr[1] "semillas de cannabis" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -56202,7 +56206,7 @@ msgid_plural "bean seeds" msgstr[0] "semillas de alubias" msgstr[1] "semillas de alubias" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "Alubias crudas, sin cocer, listas para plantar." @@ -56217,7 +56221,7 @@ msgid_plural "soybean seeds" msgstr[0] "semillas de soja" msgstr[1] "semillas de soja" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "Algunas semillas de soja." @@ -56226,7 +56230,7 @@ msgstr "Algunas semillas de soja." msgid "soybean" msgstr "soja" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "Lentejas crudas, sin cocer, listas para plantar." @@ -56241,7 +56245,7 @@ msgid_plural "thyme seeds" msgstr[0] "semillas de tomillo" msgstr[1] "semillas de tomillo" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "Algunas semillas de tomillo." @@ -56258,7 +56262,7 @@ msgid_plural "canola seeds" msgstr[0] "semillas de canola" msgstr[1] "semillas de canola" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "Algunas semillas de colza. Podrías presionarlas para obtener aceite." @@ -56269,7 +56273,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "semillas de calabaza" msgstr[1] "semillas de calabaza" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "Algunas semillas de calabaza crudas. Podrían freírse y comerse." @@ -56280,7 +56284,7 @@ msgid_plural "sunflower seeds" msgstr[0] "semillas de girasol" msgstr[1] "semillas de girasol" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -56300,7 +56304,7 @@ msgid_plural "dogbane seeds" msgstr[0] "semillas de apocino" msgstr[1] "semillas de apocino" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "Algunas semillas de apocino." @@ -56311,7 +56315,7 @@ msgid_plural "bee balm seeds" msgstr[0] "semillas de monarda" msgstr[1] "semillas de monarda" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "Algunas semillas de bálsamo de abeja." @@ -56322,7 +56326,7 @@ msgid_plural "mugwort seeds" msgstr[0] "semillas de artemisa" msgstr[1] "semillas de artemisa" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "Algunas semillas de artemisa." @@ -56333,7 +56337,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "semillas de trigo sarraceno" msgstr[1] "semillas de trigo sarraceno" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "Algunas semillas de alforfón." @@ -56344,7 +56348,7 @@ msgid_plural "wild herb seeds" msgstr[0] "semillas de hierbas silvestres" msgstr[1] "semillas de hierbas silvestres" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "Algunas semillas cosechadas de hierbas silvestres." @@ -56359,7 +56363,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "tallos de verduras silvestres" msgstr[1] "tallos de verduras silvestres" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "Algunos tallos de vegetales silvestres." @@ -56374,7 +56378,7 @@ msgid_plural "dandelion seeds" msgstr[0] "semillas de diente de león" msgstr[1] "semillas de diente de león" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "Son unas semillas de diente de león." @@ -56389,7 +56393,7 @@ msgid_plural "burdock seeds" msgstr[0] "semillas de bardana" msgstr[1] "semillas de bardana" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "Algunas semillas de bardana" @@ -56404,7 +56408,7 @@ msgid_plural "rhubarb stems" msgstr[0] "tallos de ruibarbos" msgstr[1] "tallos de ruibarbos" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "Algunos tallos de ruibarbo." @@ -56415,7 +56419,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "esporas de colmenilla" msgstr[1] "esporas de colmenilla" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "Algunas esporas de hongos morel." @@ -56426,7 +56430,7 @@ msgid_plural "datura seeds" msgstr[0] "semillas de datura" msgstr[1] "semillas de datura" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -56448,7 +56452,7 @@ msgid_plural "celery seeds" msgstr[0] "semillas de apio" msgstr[1] "semillas de apio" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "Algunas semillas de apio." @@ -56459,7 +56463,7 @@ msgid_plural "oat seeds" msgstr[0] "semillas de avena" msgstr[1] "semillas de avena" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "Algunas unas semillas de avena." @@ -56476,7 +56480,7 @@ msgid_plural "wheat seeds" msgstr[0] "semillas de trigo" msgstr[1] "semillas de trigo" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "Algunas semillas de trigo." @@ -56493,7 +56497,7 @@ msgid_plural "fried seeds" msgstr[0] "semillas fritas" msgstr[1] "semillas fritas" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -56523,7 +56527,7 @@ msgid_plural "coffee beans" msgstr[0] "granos de café" msgstr[1] "granos de café" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "Algunos unos granos de café. Pueden ser tostados." @@ -56534,7 +56538,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "granos de café tostados" msgstr[1] "granos de café tostados" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -56546,7 +56550,7 @@ msgid_plural "chamomile seeds" msgstr[0] "semillas de manzanilla" msgstr[1] "semillas de manzanilla" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "Algunas semillas de manzanilla." @@ -56561,7 +56565,7 @@ msgid_plural "spurge seeds" msgstr[0] "semillas de euphorbias" msgstr[1] "semillas de euphorbias" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "Algunas semillas de euphorbias" @@ -56576,7 +56580,7 @@ msgid_plural "popcorn seeds" msgstr[0] "semillas de palomitas de maiz" msgstr[1] "semillas de palomitas de maiz" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "Algunas semillas de palomitas de maiz" @@ -56587,7 +56591,7 @@ msgid_plural "horseradish seeds" msgstr[0] "semillas de rábanos picantes" msgstr[1] "semillas de rábanos picantes" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "Algunas semillas de rábanos picantes" @@ -56598,7 +56602,7 @@ msgid_plural "mustard seeds" msgstr[0] "semillas de mostaza" msgstr[1] "semillas de mostaza" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -56610,7 +56614,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "semillas de pimientos de morrón" msgstr[1] "semillas de pimientos de morrón" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "Algunas semillas de pimientos de morrón" @@ -56632,8 +56636,7 @@ msgid_plural "bone broths" msgstr[0] "caldo de hueso" msgstr[1] "caldos de hueso" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -56663,15 +56666,14 @@ msgid_plural "meat soups" msgstr[0] "sopa de carne" msgstr[1] "sopas de carne" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "sopa de savia" msgstr[1] "sopa de savia" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -56711,8 +56713,7 @@ msgid_plural "curries with meat" msgstr[0] "curry con carne" msgstr[1] "currys con carne" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -56731,10 +56732,8 @@ msgid_plural "woods meat soups" msgstr[0] "sopa de carne de bosque" msgstr[1] "sopas de carne de bosque" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -56800,7 +56799,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "sopa de pollo con albóndigas" msgstr[1] "sopas de pollo con albóndigas" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "Una sopa con trozos de pollo y bolas de masa. No está mal." @@ -56826,7 +56825,7 @@ msgid_plural "chili powder" msgstr[0] "polvo de chili" msgstr[1] "polvo de chili" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -56841,7 +56840,7 @@ msgid_plural "hot sauce" msgstr[0] "salsa picante" msgstr[1] "salsa picante" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -56856,7 +56855,7 @@ msgid_plural "cinnamon" msgstr[0] "canela" msgstr[1] "canela" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "Es canela molida en rama con un aroma dulce y un poquito picante." @@ -56867,7 +56866,7 @@ msgid_plural "curry powder" msgstr[0] "polvo de curry" msgstr[1] "polvo de curry" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -56882,7 +56881,7 @@ msgid_plural "black pepper" msgstr[0] "pimienta negra" msgstr[1] "pimienta negra" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "Es especia negra molida con aroma picante." @@ -56893,7 +56892,7 @@ msgid_plural "salt" msgstr[0] "sal" msgstr[1] "sal" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -56908,7 +56907,7 @@ msgid_plural "Italian seasoning" msgstr[0] "aderezos italianos" msgstr[1] "aderezos italianos" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "Una mezcla de orégano seco, albahaca, tomillo y otras especias." @@ -56919,7 +56918,7 @@ msgid_plural "seasoned salt" msgstr[0] "sal condimentada" msgstr[1] "sal condimentada" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "Sal mezclada con un conjunto de hierbas y especias secretas." @@ -56930,7 +56929,7 @@ msgid_plural "sugar" msgstr[0] "azúcar" msgstr[1] "azúcar" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -56945,7 +56944,7 @@ msgid_plural "sprinkles" msgstr[0] "virutas" msgstr[1] "virutas" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -56965,7 +56964,7 @@ msgid_plural "wild herbs" msgstr[0] "hierbas silvestres" msgstr[1] "hierbas silvestres" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -56980,7 +56979,7 @@ msgid_plural "soy sauce" msgstr[0] "salsa de soja" msgstr[1] "salsa de soja" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "Salsa de soja salada y fermentada." @@ -56996,7 +56995,7 @@ msgid_plural "mustard powder" msgstr[0] "polvo de mostaza" msgstr[1] "polvo de mostaza" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "Un polvo amarillo y fragante. No es comestible en esta forma." @@ -57052,7 +57051,7 @@ msgid_plural "starch" msgstr[0] "almidón" msgstr[1] "almidón" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -57067,7 +57066,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "hoja verde de dientes de león cocinada" msgstr[1] "hojas verdes de dientes de león cocinadas" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "Hojas cocinadas de dientes de león. Sabrosas y nutritivas." @@ -57078,7 +57077,7 @@ msgid_plural "fried dandelions" msgstr[0] "diente de león frito" msgstr[1] "dientes de león fritos" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -57092,7 +57091,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "verduras de bardana cocinada" msgstr[1] "verduras de bardana cocinadas" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "Hojas de bardana cocidas. Sabroso y nutritivo." @@ -57103,7 +57102,7 @@ msgid_plural "fried burdocks" msgstr[0] "bardana frita" msgstr[1] "bardanas fritas" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -57143,7 +57142,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "verduras silvestres cocinadas" msgstr[1] "verduras silvestres cocinadas" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -57168,7 +57167,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "trigo sarraceno cocido" msgstr[1] "trigo sarraceno cocido" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -57182,7 +57181,7 @@ msgid_plural "canned corn" msgstr[0] "maiz enlatado" msgstr[1] "maiz enlatado" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "Maíz enlatado en agua. ¡A comer!" @@ -57193,7 +57192,7 @@ msgid_plural "corn on the cob" msgstr[0] "maíz en mazorca" msgstr[1] "maíces en mazorcas" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "Una mazorca de maíz cocida en papel de aluminio." @@ -57204,7 +57203,7 @@ msgid_plural "pan roasted corn" msgstr[0] "maíz asado en sartén" msgstr[1] "maíz asado en sartén" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "Maíz asado en una sartén con hierbas y especias." @@ -57215,7 +57214,7 @@ msgid_plural "hominy" msgstr[0] "hominy" msgstr[1] "hominy" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -57230,7 +57229,7 @@ msgid_plural "cornmeal" msgstr[0] "harina de maíz" msgstr[1] "harinas de maíz" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "Harina de maíz amarilla, útil para hornear." @@ -57241,7 +57240,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "alubias horneadas vegetarianas" msgstr[1] "alubias horneadas vegetarianas" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "Alubias cocinadas lentamente con verduras. Sabrosos y atiborran." @@ -57252,7 +57251,7 @@ msgid_plural "dried rice" msgstr[0] "arroz seco" msgstr[1] "arroz seco" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -57267,7 +57266,7 @@ msgid_plural "cooked rice" msgstr[0] "arroz cocinado" msgstr[1] "arroz cocinado" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "Es una porción abundante de arroz de grano grande blanco cocinado." @@ -57278,7 +57277,7 @@ msgid_plural "fried rice" msgstr[0] "arroz frito" msgstr[1] "arroces fritos" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "Delicioso arroz frito con verduras. Sabroso y atiborra." @@ -57289,7 +57288,7 @@ msgid_plural "beans and rice" msgstr[0] "alubia con arroz" msgstr[1] "alubias con arroz" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -57304,7 +57303,7 @@ msgid_plural "tofu fried rice" msgstr[0] "arroz frito de tofu" msgstr[1] "arroz frito de tofu" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "Es delicioso arroz frito con tofu y verduras. Sabroso y muy atiborra." @@ -57315,7 +57314,7 @@ msgid_plural "tofu stirfry" msgstr[0] "tofu revuelto" msgstr[1] "tofu revuelto" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -57330,7 +57329,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "alubias con arroz vegetarianos deluxe" msgstr[1] "alubias con arroz vegetarianos deluxe" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -57407,7 +57406,7 @@ msgid_plural "pesto" msgstr[0] "pesto" msgstr[1] "pesto" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "Aceite de oliva, albahaca, ajo y piñones. Simple y delicioso." @@ -57448,7 +57447,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "espagueti al pesto" msgstr[1] "espagueti al pesto" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "Espagueti con una generosa porción de pesto encima. ¡Rico!" @@ -57472,7 +57471,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "chucrut c/ cebollas salteadas" msgstr[1] "chucrut c/ cebollas salteadas" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -57517,7 +57516,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "granos de maíz deshidratados" msgstr[1] "granos de maíz deshidratados" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "Un puñado de granos de maíz secos." @@ -57541,7 +57540,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "granos de maíz rehidratados" msgstr[1] "granos de maíz rehidratados" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -57627,7 +57626,7 @@ msgid_plural "sushi rice" msgstr[0] "arroz de sushi" msgstr[1] "arroz de sushi" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -57640,7 +57639,7 @@ msgid_plural "onigiri" msgstr[0] "onigiri" msgstr[1] "onigiri" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -57655,7 +57654,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "hosomaki de verduras" msgstr[1] "hosomaki de verduras" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -57685,7 +57684,7 @@ msgid_plural "sauerkraut" msgstr[0] "chucrut" msgstr[1] "chucrut" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -57712,7 +57711,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "brote de helecho hervido" msgstr[1] "brotes de helechos hervidos" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -57725,7 +57724,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "salteado de brote de helecho" msgstr[1] "salteados de brotes de helechos" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "Brotes de helechos salteadas en grasa. Tierna y deliciosa." @@ -57745,7 +57744,7 @@ msgstr "" "Un pimiento sin corazón y cocido. Es mucho más agradable ahora que se han " "quitado las semillas." -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "Trigo crudo, no es muy sabroso." @@ -57756,7 +57755,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "pasta de espagueti cruda" msgstr[1] "pasta de espagueti cruda" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -57771,7 +57770,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "pasta de lasaña cruda" msgstr[1] "pasta de lasaña cruda" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -57786,7 +57785,7 @@ msgid_plural "boiled noodles" msgstr[0] "fideos hervidos" msgstr[1] "fideos hervidos" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "Son fideos recién hervidos. Bastante insípidos pero te van a llenar." @@ -57797,7 +57796,7 @@ msgid_plural "raw macaroni" msgstr[0] "macarrones crudos" msgstr[1] "macarrones crudos" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -57810,7 +57809,7 @@ msgid_plural "mac & cheese" msgstr[0] "macarrones con queso" msgstr[1] "macarrones con queso" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "Cuando el queso comienza a fluir, Kraft pone en marcha tus fideos." @@ -57821,7 +57820,7 @@ msgid_plural "flour" msgstr[0] "harina" msgstr[1] "harina" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "Harina blanca enriquecida, útil para hornear." @@ -57832,7 +57831,7 @@ msgid_plural "bread flour" msgstr[0] "harina de pan" msgstr[1] "harinas de pan" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -57847,7 +57846,7 @@ msgid_plural "oatmeal" msgstr[0] "avena" msgstr[1] "avena" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " @@ -57856,7 +57855,7 @@ msgstr "" "Copos de cereal. Sabroso y nutritivo cuando se cocina, también sirve como " "comida para caballos mientras está seco." -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "Avena cruda." @@ -57867,7 +57866,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "avena cocinada" msgstr[1] "avena cocinada" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -57882,7 +57881,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "avena cocinada de lujo" msgstr[1] "avena cocinada de lujo" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -57977,7 +57976,7 @@ msgid_plural "oyster crackers" msgstr[0] "galletitas de ostras" msgstr[1] "galletitas de ostras" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -58014,7 +58013,7 @@ msgid_plural "granola" msgstr[0] "granola" msgstr[1] "granola" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -58040,7 +58039,7 @@ msgid_plural "fast noodles" msgstr[0] "fideos rápidos" msgstr[1] "fideos rápidos" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "Llamados fideos ramen. Se pueden comer crudos." @@ -58259,7 +58258,7 @@ msgid_plural "pineapple stem" msgstr[0] "tallo de piña" msgstr[1] "tallos de piña" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "Raíces de una planta de piña, para cultivar las tuyas propias." @@ -58270,7 +58269,7 @@ msgid_plural "melon seeds" msgstr[0] "semillas de melón" msgstr[1] "semillas de melón" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "Algunas semillas de melón." @@ -58281,7 +58280,7 @@ msgid_plural "banana saplings" msgstr[0] "pimpollo de plátano" msgstr[1] "pimpollos de plátano" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "Algunos pimpollos de plátano" @@ -58292,7 +58291,7 @@ msgid_plural "orange vine" msgstr[0] "vino de naranja" msgstr[1] "vinos de naranja" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "Algunas parras de naranja. Definitivamente GMO." @@ -58303,7 +58302,7 @@ msgid_plural "lemon vine" msgstr[0] "parras de limón" msgstr[1] "parras de limón" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "Algunas parras de limón. Definitivamente GMO." @@ -58314,7 +58313,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "coco subterráneo" msgstr[1] "cocos subterráneos" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "Prueba de que el hombre fue demasiado lejos antes del Cataclismo." @@ -58367,7 +58366,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "carne humana cocida y quemada " msgstr[1] "carnes humanas cocida y quemada " -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "Rebanada de carne humana recién cocinada, esta quemada por el frío." @@ -58415,7 +58414,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "sebo humano quemado por el hielo" msgstr[1] "sebo humano quemado por el hielo" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -58430,7 +58429,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "sebo humano quemado por el hielo" msgstr[1] "sebo humano quemado por el hielo" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -58479,7 +58478,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "carne alienígena cocinada" msgstr[1] "carnes alienígenas cocinadas" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -58607,7 +58606,7 @@ msgid_plural "raw alien brains" msgstr[0] "cerebro alienígena crudo" msgstr[1] "cerebros alienígenas crudos" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -58624,7 +58623,7 @@ msgid_plural "cooked alien brains" msgstr[0] "cerebro alienígena cocinado" msgstr[1] "cerebros alienígenas cocinados" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -58662,7 +58661,7 @@ msgid "" "eat, you are not sure you'd want to." msgstr "" "Totalmente cocinado y preparado, este órgano alienígena ha adquirido el " -"asqueroso olor a amoníaco de una cubierta de nave espacial mal limpiada. " +"asqueroso olor a amoníaco de una cubierta de nave espacial mal fregada. " "Incluso si fuera seguro comerlo, no estás seguro de querer hacerlo." #: lang/json/COMESTIBLE_from_json.py @@ -58727,7 +58726,7 @@ msgid_plural "alien tallow" msgstr[0] "sebo alienígena" msgstr[1] "sebo alienígena" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -58744,7 +58743,7 @@ msgid_plural "alien lard" msgstr[0] "manteca de alienígena" msgstr[1] "manteca de alienígena" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -58761,7 +58760,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "órgano alienígena no identificable" msgstr[1] "órganos alienígenas no identificables" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -58775,7 +58774,7 @@ msgid_plural "alien cracklins" msgstr[0] "chicharrón de alien" msgstr[1] "chicharrones de alien" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -58790,7 +58789,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "chicharrones de humano quemado por el frio" msgstr[1] "chicharrones de humano quemado por el frio" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -58857,7 +58856,7 @@ msgid_plural "mealgrub spores" msgstr[0] "esporas de gusanos de harina" msgstr[1] "esporas de gusanos de harina" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -58878,7 +58877,7 @@ msgid_plural "mealgrub broth" msgstr[0] "caldo de gusanos de comida" msgstr[1] "caldos de gusanos de harina" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -58896,7 +58895,7 @@ msgid_plural "live mealgrubs" msgstr[0] "gusanos de harina vivos" msgstr[1] "gusanos de harina vivos" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -58914,7 +58913,7 @@ msgid_plural "mealgrubs" msgstr[0] "gusanos de harina" msgstr[1] "gusanos de harina" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -58989,7 +58988,7 @@ msgid_plural "H₂O™" msgstr[0] "H₂O™" msgstr[1] "H₂O™" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -59006,7 +59005,7 @@ msgid_plural "food cubes" msgstr[0] "cubos de comida" msgstr[1] "cubos de comida" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -59019,7 +59018,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "Comida para llevar™ de Lugarcomida" msgstr[1] "Comida para llevar™ de Lugarcomida" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -59047,7 +59046,7 @@ msgid_plural "cee wafers" msgstr[0] "galletas cee" msgstr[1] "galletas cee" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -59077,7 +59076,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "sopa, sabor 27" msgstr[1] "sopa, sabor 27" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -59094,7 +59093,7 @@ msgid_plural "landfall survival rations" msgstr[0] "ración de supervivencia de aterrizaje en tierra" msgstr[1] "raciones de supervivencia de aterrizaje en tierra" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -59116,7 +59115,7 @@ msgid_plural "caffex" msgstr[0] "caffex" msgstr[1] "caffex" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -59166,7 +59165,7 @@ msgid_plural "supercritical coolant" msgstr[0] "refrigerante supercrítico" msgstr[1] "refrigerante supercrítico" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -59239,7 +59238,7 @@ msgid_plural "SpOreos" msgstr[0] "EspOreos" msgstr[1] "EspOreos" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -59266,7 +59265,7 @@ msgstr "" "para la fabricación. Podrías \"beberlo\", pero de ninguna forma sería " "agradable." -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -59615,10 +59614,10 @@ msgstr[0] "huevos de siat" msgstr[1] "huevos de siats" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" -msgstr[0] "huevo de tiranosaurus" -msgstr[1] "huevos de tiranosaurus" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" +msgstr[0] "huevo de gorgosaurus" +msgstr[1] "huevos de gorgosaurus" #: lang/json/COMESTIBLE_from_json.py msgid "albertosaurus egg" @@ -59626,6 +59625,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "huevo de albertosaurus" msgstr[1] "huevos de albertosaurus" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "huevo de qianzhousaurus" +msgstr[1] "huevos de qianzhousaurus" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "huevo de tiranosaurus" +msgstr[1] "huevos de tiranosaurus" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -59668,6 +59679,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "huevo de eoraptor" msgstr[1] "huevos de eoraptor" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "huevos de amargasaurus" +msgstr[1] "huevo de amargasaurus" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -59788,6 +59805,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "huevo de pentaceratops" msgstr[1] "huevos de pentaceratops" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "huevo de kosmoceratops" +msgstr[1] "huevos de kosmoceratops" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -59824,24 +59847,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "huevo de mosasaurus" msgstr[1] "huevos de mosasaurus" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "huevo de qianzhousaurus" -msgstr[1] "huevos de qianzhousaurus" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "huevos de amargasaurus" -msgstr[1] "huevo de amargasaurus" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "huevo de kosmoceratops" -msgstr[1] "huevos de kosmoceratops" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -60193,7 +60198,7 @@ msgid_plural "dragon meat" msgstr[0] "carne de dragón" msgstr[1] "carnes de dragón" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -60270,7 +60275,7 @@ msgid_plural "mana infused blood" msgstr[0] "sangre infundida con maná" msgstr[1] "sangre infundida con maná" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -60341,7 +60346,7 @@ msgstr "" "El cadáver de un necco, ahora realmente parece una galleta gigante de necco." " Seguramente un mordisco no haría daño, ¿verdad?" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " @@ -60350,7 +60355,7 @@ msgstr "" "Es un puñado de malvaviscos blandos, suaves, inflados y deliciosos. Están " "extrañamente tibios..." -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -60455,7 +60460,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "leche con chocolate crudo" msgstr[1] "leche con chocolate crudo" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -60469,7 +60474,7 @@ msgstr "" "sensibilidad alimentaria, puede que quiera pasteurizar o incluso hervirla " "antes de beberla." -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -60483,7 +60488,7 @@ msgid_plural "liquid cacao" msgstr[0] "cacao líquido" msgstr[1] "cacao líquido" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "Cacao líquido sin endulzar. Bastante amargo al gusto." @@ -60494,7 +60499,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "leche con chocolate reconstituida" msgstr[1] "leche con chocolate reconstituida" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -60510,7 +60515,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "leche con chocolate en polvo" msgstr[1] "leche con chocolate en polvo" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -60533,7 +60538,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "trozos de envoltorio de caramelo" msgstr[1] "trozos de envoltorio de caramelo" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -60551,7 +60556,7 @@ msgid_plural "sticky sludge" msgstr[0] "cieno pegajoso" msgstr[1] "cieno pegajoso" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -61215,7 +61220,7 @@ msgid_plural "rock salt" msgstr[0] "sal de roca" msgstr[1] "sal de roca" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -61228,7 +61233,7 @@ msgid_plural "rhodonite" msgstr[0] "rodonita" msgstr[1] "rodonitas" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -61243,7 +61248,7 @@ msgid_plural "zincite" msgstr[0] "zincita" msgstr[1] "zincitas" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -61284,7 +61289,7 @@ msgid_plural "hickory nuts" msgstr[0] "nueces de pecana" msgstr[1] "nueces de pecana" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -61297,7 +61302,7 @@ msgid_plural "pecans" msgstr[0] "pecanas" msgstr[1] "pecanas" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "Un puñado de nueces duras de un árbol de nuez, todavía en su cáscara." @@ -61308,7 +61313,7 @@ msgid_plural "pistachios" msgstr[0] "pistachos" msgstr[1] "pistachos" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -61321,7 +61326,7 @@ msgid_plural "almonds" msgstr[0] "almendras" msgstr[1] "almendras" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "Un puñado de nueces duras de un almendro, todavía en su cáscara." @@ -61332,7 +61337,7 @@ msgid_plural "peanuts" msgstr[0] "cacahuetes" msgstr[1] "cacahuetes" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -61344,7 +61349,7 @@ msgid_plural "hazelnuts" msgstr[0] "avellanas" msgstr[1] "avellanas" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -61356,7 +61361,7 @@ msgid_plural "chestnuts" msgstr[0] "castañas" msgstr[1] "castañas" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -61368,7 +61373,7 @@ msgid_plural "walnuts" msgstr[0] "nueces" msgstr[1] "nueces" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -61691,6 +61696,20 @@ msgstr "" "ADVERTENCIA DEL DIRECTOR GENERAL DE SALUD PÚBLICA: Fumar Causa Cáncer de " "Pulmón, Enfermedades del Corazón, Enfisema y Puede Perjudicar el Embarazo." +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "caja de cigarros" +msgstr[1] "cajas de cigarros" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" +"Un pequeño estuche de madera y cuero hecho a mano , diseñado para contener " +"uno o dos cigarros." + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -61702,6 +61721,21 @@ msgstr[1] "pequeñas cajas de cartón" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "Una caja pequeña de cartón, de unos 30 cm." +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "cajas pequeña de madera" +msgstr[1] "cajas pequeñas de madera" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" +"Una pequeña caja de madera de unos cuantos cms de lado, del tamaño justo " +"para contener pequeños objetos." + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -62594,7 +62628,7 @@ msgid_plural "semi ground grains" msgstr[0] "granos semimolidos" msgstr[1] "granos semimolidos" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "Una pasta de granos molidos a medio terminar, aún sin harina." @@ -62605,7 +62639,7 @@ msgid_plural "smoldering embers" msgstr[0] "brasas ardientes" msgstr[1] "brasas ardientes" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -62840,6 +62874,32 @@ msgstr "" "Esta es una vieja y anodina llave de cilindro norteamericana. El Señor sabe " "a qué cerradura va; es mejor no molestarse con ella." +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "cortapuros" +msgstr[1] "cortapuros" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" +"Un conjunto de pequeñas cuchillas que se aprietan para cortar la punta de " +"los cigarros." + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "perforador de puros" +msgstr[1] "perforadoras de puros" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" +"En pequeño tubo diseñado para hacer un agujero en el final de un cigarro." + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -63061,7 +63121,7 @@ msgid_plural "superglue" msgstr[0] "superglue" msgstr[1] "superglue" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Un tubo de pegamento potente. Se usa para fabricar muchas cosas." @@ -63388,7 +63448,7 @@ msgid_plural "FEMA data" msgstr[0] "dato FEMA" msgstr[1] "datos FEMA" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -63530,7 +63590,7 @@ msgid "" "constructing tougher walls and such." msgstr "" "Una varilla corrugada, útil como arma de cuerpo a cuerpo, y podría venir " -"bien para construir paredes más resistentes y cosas de ese estilo." +"bien para construir muros más resistentes y cosas de ese estilo." #: lang/json/GENERIC_from_json.py lang/json/terrain_from_json.py #: lang/json/terrain_from_json.py @@ -63548,13 +63608,13 @@ msgstr "Un largo de vía, hecho de algunos tablones y rieles." #: lang/json/terrain_from_json.py msgid "concrete" msgid_plural "concrete" -msgstr[0] "cemento" -msgstr[1] "cemento" +msgstr[0] "hormigón" +msgstr[1] "hormigón" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." -msgstr "Es un poco de cemento, listo para ser usado en alguna construcción." +msgstr "Algo de hormigón, listo para ser usado en alguna construcción." #: lang/json/GENERIC_from_json.py msgid "bone skewer" @@ -64511,7 +64571,7 @@ msgstr[1] "relojes" #. ~ Description for clock #: lang/json/GENERIC_from_json.py msgid "A small mechanical clock, it's stopped at 10:10." -msgstr "Un pequeño reloj mecánico de pared. Está frenado en las 10:10." +msgstr "Un pequeño reloj mecánico de muro. Está frenado en las 10:10." #: lang/json/GENERIC_from_json.py msgid "clockworks" @@ -64519,7 +64579,7 @@ msgid_plural "clockworks" msgstr[0] "mecanismo de relojería" msgstr[1] "mecanismos de relojería" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "Un pequeño surtido de engranajes y otros cacharros de relojería." @@ -64666,7 +64726,7 @@ msgid_plural "chamomile flowers" msgstr[0] "flor de manzanilla" msgstr[1] "flores de manzanilla" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -64695,7 +64755,7 @@ msgid_plural "spurge flowers" msgstr[0] "flor de euphorbias" msgstr[1] "flores de euphorbias" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -64733,7 +64793,7 @@ msgid_plural "mortar" msgstr[0] "mortero" msgstr[1] "mortero" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "Es un poco de mortero, listo para ser usado en alguna construcción." @@ -64785,7 +64845,7 @@ msgid_plural "adobe mortar" msgstr[0] "mortero de adobe" msgstr[1] "mortero de adobe" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -64801,7 +64861,7 @@ msgid_plural "tanbark" msgstr[0] "corteza de curtido" msgstr[1] "cortezas de curtido" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -64826,7 +64886,7 @@ msgid_plural "willowbark" msgstr[0] "corteza de sauce" msgstr[1] "cortezas de sauce" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -65291,7 +65351,7 @@ msgid_plural "raw tobacco" msgstr[0] "tabaco crudo" msgstr[1] "tabaco crudo" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -65635,7 +65695,7 @@ msgid_plural "plastic dice" msgstr[0] "dado de plástico" msgstr[1] "dados de plástico" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "Un dado de plástico de seis caras." @@ -65660,7 +65720,7 @@ msgid_plural "alder bark" msgstr[0] "corteza de aliso" msgstr[1] "corteza de aliso" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -66096,6 +66156,114 @@ msgstr "" "Una muestra de las cosas que componen las partes clave de ser una rana. " "Probablemente necesitarás encontrar una rana muy grande." +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "muestra de insecto" +msgstr[1] "muestras de insecto" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" +"Una muestra de cosas que constituyen las partes clave de ser un insecto. " +"Probablemente, vas a necesitar encontrar un bicho muy grande." + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "muestra bovina" +msgstr[1] "muestras bovinas" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" +"Una muestra de cosas que constituyen las partes clave de ser una criatura " +"bovina. Probablemente, vas a necesitar encontrar una vaca muy viva." + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "muestra de rata topo" +msgstr[1] "muestras de rata topo" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" +"Una muestra de cosas que constituyen las partes clave de ser una criatura " +"subterránea. Probablemente, vas a necesitar encontrar algo grande que viva " +"bajo tierra." + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "muestra de araña" +msgstr[1] "muestras de araña" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" +"Una muestra de cosas que constituyen las partes clave de ser una araña. ¿Por" +" qué hay tantas arañas enormes ahora?" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "muestra de reptil" +msgstr[1] "muestras de reptil" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" +"Una muestra de cosas que constituyen las partes clave de ser un lagarto. Los" +" caimanes y las serpientes de cascabel gigantes parecen encajar en lo que " +"buscas." + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "muestra lupina" +msgstr[1] "muestras lupinas" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" +"Una muestra de cosas que constituyen las partes clave de ser un lobo. ¿Ese " +"es Lon Chaney Jr. caminando con la reina?" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "muestra felina" +msgstr[1] "muestras felinas" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" +"Una muestra de cosas que constituyen las partes clave de ser un felino. ¿Los" +" gatos monteses y los pumas son nativos de esta área?" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -66923,8 +67091,8 @@ msgstr "Este módulo permite almacenar y recuperar información." #: lang/json/GENERIC_from_json.py msgid "sensor array" msgid_plural "sensor arrays" -msgstr[0] "matriz de sensores" -msgstr[1] "matrices de sensores" +msgstr[0] "conjunto de sensores" +msgstr[1] "conjuntos de sensores" #. ~ Description for sensor array #: lang/json/GENERIC_from_json.py @@ -66941,13 +67109,13 @@ msgid_plural "self monitoring sensors" msgstr[0] "sensor de auto vigilancia" msgstr[1] "sensores de auto vigilancia" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " "itself." msgstr "" -"Una matriz de sensores y módulos de diagnóstico que permiten al robot " +"Un conjunto de sensores y módulos de diagnóstico que permiten al robot " "percibirse a sí mismo." #: lang/json/GENERIC_from_json.py @@ -67090,7 +67258,7 @@ msgid_plural "turret interior chassis" msgstr[0] "chasis interior de torreta" msgstr[1] "chasis interior de torretas" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -67105,7 +67273,7 @@ msgid_plural "police bot chassis" msgstr[0] "chasis del robot de la policía" msgstr[1] "chasis del robot de la policía" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -67138,7 +67306,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "datos de instalación del MBC Sistema de Alarma" msgstr[1] "datos de instalación del MBC Sistema de Alarma" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67160,7 +67328,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "datos de instalación del MBC Tatuaje LED" msgstr[1] "datos de instalación del MBC Tatuaje LED" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67182,7 +67350,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "datos de instalación del MBC Interfaz de Armadura de Energía" msgstr[1] "datos de instalación del MBC Interfaz de Armadura de Energía" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67204,7 +67372,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "datos de instalación del MBC Almacenamiento de Energía" msgstr[1] "datos de instalación del MBC Almacenamiento de Energía" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67226,7 +67394,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "datos de instalación del MBC Almacenamiento de Energía Mk. II" msgstr[1] "datos de instalación del MBC Almacenamiento de Energía Mk. II" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67248,7 +67416,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "datos de instalación del MBC Cronómetro Interno" msgstr[1] "datos de instalación del MBC Cronómetro Interno" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67270,7 +67438,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "datos de instalación del MBC Aguja Intravenosa" msgstr[1] "datos de instalación del MBC Aguja Intravenosa" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67292,7 +67460,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "datos de instalación del MBC Análisis de Sangre" msgstr[1] "datos de instalación del MBC Análisis de Sangre" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67314,7 +67482,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "datos de instalación del MBC Linterna Craneal" msgstr[1] "datos de instalación del MBC Linterna Craneal" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67336,7 +67504,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "datos de instalación MBC Unidad Electromagnética" msgstr[1] "datos de instalación MBC Unidad Electromagnética" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67358,7 +67526,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "datos de instalaction del MBC Inductor Soporífero" msgstr[1] "datos de instalaction del MBC Inductor Soporífero" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67380,7 +67548,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "datos de instalación del MBC Placas de Aleación Para Brazos" msgstr[1] "datos de instalación del MBC Placas de Aleación Para Brazos" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67402,7 +67570,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "datos de instalación del MBC Placas de Aleación Para Piernas" msgstr[1] "datos de instalación del MBC Placas de Aleación Para Piernas" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67424,7 +67592,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "datos de instalación del MBC Brazo Escopeta" msgstr[1] "datos de instalación del MBC Brazo Escopeta" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67446,7 +67614,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "datos de instalación del MBC Filtro de Sangre" msgstr[1] "datos de instalación del MBC Filtro de Sangre" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67468,8 +67636,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "datos de instalación del MBC Control Interno Climático" msgstr[1] "datos de instalación del MBC Control Interno Climático" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67491,7 +67658,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "datos de instalación del MBC Dosímetro Integrado" msgstr[1] "datos de instalación del MBC Dosímetro Integrado" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67513,7 +67680,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "datos de instalación del MBC Disipación Térmica " msgstr[1] "datos de instalación del MBC Disipación Térmica " -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67535,7 +67702,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "datos de instalación del MBC Lector Climático" msgstr[1] "datos de instalación del MBC Lector Climático" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67557,7 +67724,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "datos de instalación del MBC Cañón de Riel" msgstr[1] "datos de instalación del MBC Cañón de Riel" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67581,7 +67748,7 @@ msgstr[0] "" msgstr[1] "" "datos de instalación del MBC Sistema de Alimentación Ininterrumpida" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67603,8 +67770,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "datos de instalación del MBC Soporte Esquelético de Titanio" msgstr[1] "datos de instalación del MBC Soporte Esquelético de Titanio" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -67632,7 +67798,7 @@ msgid_plural "misc software" msgstr[0] "software variado" msgstr[1] "software variado" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "Software variado para pasar el tiempo. Probablemente sea inútil." @@ -67643,7 +67809,7 @@ msgid_plural "hackPRO" msgstr[0] "hackPRO" msgstr[1] "hackPRO" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "Software de hackeo." @@ -67654,7 +67820,7 @@ msgid_plural "MediSoft" msgstr[0] "MediSoft" msgstr[1] "MediSoft" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "Software sobre medicina" @@ -67665,7 +67831,7 @@ msgid_plural "MatheMAX" msgstr[0] "MatheMAX" msgstr[1] "MatheMAX" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "Software sobre matemáticas." @@ -67676,7 +67842,7 @@ msgid_plural "infection data" msgstr[0] "información de infección" msgstr[1] "información de infección" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "Información médica de sangre de zombi." @@ -67687,7 +67853,7 @@ msgid_plural "lab data" msgstr[0] "dato de laboratorio" msgstr[1] "datos de laboratorios" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "Archivos de investigación de un laboratorio del gobierno." @@ -67698,7 +67864,7 @@ msgid_plural "train data" msgstr[0] "información ferroviaria" msgstr[1] "informaciones ferroviaria" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "Datos logísticos sobre rutas y horarios de trenes subterráneos." @@ -67709,7 +67875,7 @@ msgid_plural "neural data" msgstr[0] "datos neuronales" msgstr[1] "datos neuronales" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -68054,22 +68220,36 @@ msgstr "" "Un hueso de un ser demihumano. Puede ser usado para hacer algunas cosas, si " "te sientes lo suficientemente macabro." +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "cráneo humano" +msgstr[1] "cráneos humanos" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" +"El cráneo de un ser humano. Probablemente, llevar esto encima no te va a " +"hacer ganar amigos." + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "cadáver" msgstr[1] "cadáveres" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "carcasa" msgstr[1] "carcasas" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -68077,7 +68257,7 @@ msgid_plural "skinned %s" msgstr[0] " %sdespellejado" msgstr[1] "%s despellejado" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -68152,6 +68332,8 @@ msgid "" "The corpse of an infant. A single small-caliber bullet has been put through" " its skull." msgstr "" +"El cadáver de un bebé. Una sola bala de pequeño calibre le ha atravesado el " +"cráneo." #. ~ Description for corpse #: lang/json/GENERIC_from_json.py @@ -68193,23 +68375,31 @@ msgid "" "The bloody corpse of a young man. He has been stabbed repeatedly in the " "jugular and throat with a small blade." msgstr "" +"El cadáver ensangrentado de un hombre joven. Ha sido apuñalado repetidamente" +" en la yugular y la garganta con una pequeña cuchilla." #: lang/json/GENERIC_from_json.py msgid "" "The dead body of a person. They look to have been skewered through with a " "large sharp implement." msgstr "" +"El cadáver de una persona. Parece haber sido ensartado con un gran " +"instrumento afilado." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a tall middle-aged woman. She appears to have many stab " "wounds up her legs and thighs." msgstr "" +"El cadáver de una mujer alta de mediana edad. Parece tener muchas heridas de" +" arma blanca en las piernas y los muslos." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a small old lady, her face caked in blood and missing an eye." msgstr "" +"El cadáver de una pequeña anciana, con el rostro cubierto de sangre y sin un" +" ojo." #. ~ Description for corpse #: lang/json/GENERIC_from_json.py @@ -68244,30 +68434,41 @@ msgid "" "The corpse of a young blond woman shot several times in the back with a low-" "caliber weapon." msgstr "" +"El cadáver de una joven rubia con varios disparos en la espalda con un arma " +"de bajo calibre." #: lang/json/GENERIC_from_json.py msgid "" "An androgynous-looking corpse gored by arms fire chest to thighs, leaving " "the face eerily pristine." msgstr "" +"Un cadáver de aspecto andrógino atravesado por los brazos disparado desde el" +" pecho hasta los muslos, dejando el rostro inquietantemente impoluto." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a seemingly older male. He appears to have been shot in the " "forehead at a very close range leaving you a good view of his brain matter." msgstr "" +"El cadáver de un hombre aparentemente mayor. Parece haber recibido un " +"disparo en la frente a muy corta distancia, lo que deja una buena vista de " +"su materia cerebral." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a middle-aged woman, her legs and arms covered in blood. She " "appears to have been shot in the thigh." msgstr "" +"El cadáver de una mujer de mediana edad, con las piernas y los brazos " +"cubiertos de sangre. Parece que le han disparado en el muslo." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a young man who appears to have been shot to death. His right" " arm is only barely still attached to his shoulder." msgstr "" +"El cadáver de un joven que parece haber muerto de un disparo. Su brazo " +"derecho está apenas unido a su hombro." #: lang/json/GENERIC_from_json.py msgid "" @@ -68275,6 +68476,9 @@ msgid "" "head, its thick black hair intermixed now with brain, viscera and shotgun " "pellets." msgstr "" +"El cadáver de una mujer alta, sin más manchas que el agujero ensangrentado " +"de su cabeza, con su espeso pelo negro mezclado ahora con cerebro, vísceras " +"y balas de escopeta." #: lang/json/GENERIC_from_json.py msgid "broken exodii worker" @@ -68342,7 +68546,7 @@ msgid_plural "trifacet remains" msgstr[0] "restos tricara" msgstr[1] "restos tricara" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -68740,6 +68944,114 @@ msgstr "" "Los zombis no pueden ser intimidados o humillados, por lo que este cepillo " "rígido sólo es útil para fregar las tazas de baño." +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "peine para piojos" +msgstr[1] "peines para piojos" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" +"Un peine de acero inoxidable con los dientes estriados diseñados para quitar" +" parásitos molestos del pelo. De solo pensar en eso te pica la cabeza." + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "juguete de baño" +msgstr[1] "juguetes de baño" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "Un juguete de baño flotante de plástico." + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "Un pato de goma amarillo. Diseñado para ser usado en la bañera." + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" +"Un pato de goma negro con grandes ojos blancos. Diseñado para ser usado en " +"la bañera." + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" +"Un pequeño dinosaurio verde con una amplia sonrisa. Diseñado para la hora " +"del baño." + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "cepillo eléctrico de diente" +msgstr[1] "cepillos de dientes eléctricos" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "Un cepillo de dientes eléctrico de plástico." + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "Una botella usada exprimible para contener varios jabones de baño" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "Una botella de champú especial para cabellos teñidos." + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" +"Una botella blanca y sencilla hecha para contener el champú más barato." + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "Una botella para el lavado del cuerpo. Esta se llama 'Africa'." + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "Una botella de acondicionador para el pelo." + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" +"Una colorida botella de jabón para el cuerpo y el cabello comercializada " +"para niños." + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" +"Una simple botella blanca hecha para contener el acondicionador de pelo más " +"barato." + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" +"Una simple botella blanca hecha para contener el gel de ducha más barato." + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "conjunto de prótesis dentales" +msgstr[1] "conjuntos de prótesis dentales" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" +"Una dentadura postiza estándar, bastante inútil para cualquier otro que no " +"sea su dueño original." + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -70643,7 +70955,7 @@ msgid_plural "headphones" msgstr[0] "auricular" msgstr[1] "auriculares" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -70739,7 +71051,7 @@ msgid_plural "spare parts" msgstr[0] "pieza de repuesto" msgstr[1] "piezas de repuesto" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -71428,7 +71740,7 @@ msgid_plural "bokken" msgstr[0] "bokken" msgstr[1] "bokkens" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -71439,7 +71751,7 @@ msgstr "" "igual en peso y balance a la verdadera. Más allá de su falta de filo de " "metal, igual es capaz de infligir heridas mortales." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " @@ -71448,7 +71760,7 @@ msgstr "" "Es una buena katana de madera de entrenamiento, pero se siente demasiado " "liviana como para actuar efectivamente como arma." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -72099,7 +72411,7 @@ msgid_plural "bionic claws" msgstr[0] "garras biónicas" msgstr[1] "garras biónicas" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "Garras cortas y afiladas hechas de un metal de alta tecnología." @@ -72343,7 +72655,7 @@ msgid_plural "qiang" msgstr[0] "qiang" msgstr[1] "qiangs" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -72397,7 +72709,7 @@ msgid_plural "naginata" msgstr[0] "naginata" msgstr[1] "naginata" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -72408,7 +72720,7 @@ msgstr "" "katana y otras espadas japonesas. Ocasionalmente era utilizada por los " "samurai en los primeros tiempos, o por sus esposas en defensa de su hogar." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -72419,7 +72731,7 @@ msgstr "" "katana y otras hojas japonesas. Este tiene un poco de movimiento en su hoja " "y se siente un poco mal hecho." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -72436,7 +72748,7 @@ msgid_plural "survivor naginata" msgstr[0] "naginata de superviviente" msgstr[1] "naginatas de superviviente" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -72590,7 +72902,7 @@ msgid_plural "ji" msgstr[0] "ji" msgstr[1] "ji" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -72661,6 +72973,23 @@ msgstr "" "una espada de madera. El peso agregado está desbalanceado, pero el filo " "dentado brinda una buena cantidad daño cortante." +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "espada de metal" +msgstr[1] "espadas de metal" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" +"Una imitación de una espada verdadera forjada por alguien que sabe cómo son " +"las espadas, al menos. Tiene la forma general de una espada, y está afilada," +" pero le falta calidad y el equilibrio no es del todo correcto." + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -72668,7 +72997,7 @@ msgid_plural "jian" msgstr[0] "jian" msgstr[1] "jian" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -72768,7 +73097,7 @@ msgid_plural "tanto" msgstr[0] "tantō" msgstr[1] "tantōs" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " @@ -72777,7 +73106,7 @@ msgstr "" "Esta es una réplica aburrida y barata de un largo cuchillo japonés, " "típicamente usado como arma de respaldo de un samurai." -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -72794,7 +73123,7 @@ msgid_plural "nodachi" msgstr[0] "nodachi" msgstr[1] "nodachi" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " @@ -72803,7 +73132,7 @@ msgstr "" "Esta es una réplica aburrida y barata de una enorme espada curva de dos " "manos de Japón. Es sorprendentemente ligera para su tamaño." -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -72972,7 +73301,7 @@ msgid_plural "katana" msgstr[0] "katana" msgstr[1] "katanas" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "Esta es una aburrida y barata réplica de una rara espada de Japón." @@ -73050,7 +73379,7 @@ msgid_plural "wakizashi" msgstr[0] "wakizashi" msgstr[1] "wakizashi" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -73126,7 +73455,7 @@ msgid_plural "tiger claws" msgstr[0] "garras de tigre" msgstr[1] "garras de tigre" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -73396,13 +73725,30 @@ msgstr "" " gran trozo de cristal marino, escarchado y arenoso con los bordes " "redondeados. Es algo cálido al tacto." +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "rama de helecho extraterrestre" +msgstr[1] "ramas de helecho extraterrestre" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" +"Un tronco con ramas y hojas de un mega helecho, de unos sesenta centímetros " +"de largo y sesenta de diámetro midiendo las hojas. Tal vez algún día se te " +"ocurra qué hacer con un helecho gigante." + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "chasis Exodii" msgstr[1] "chasis Exodii" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -73423,7 +73769,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "chasis de dron Exodii" msgstr[1] "chasis de dron Exodii" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -73480,7 +73826,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "placas de metal inscritas" msgstr[1] "placas de metal inscritas" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -73820,7 +74166,7 @@ msgid_plural "scrap copper" msgstr[0] "resto de cobre" msgstr[1] "restos de cobre" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "Es un pequeño trozo de cobre, útil para fabricar o reparar cosas." @@ -74123,7 +74469,7 @@ msgid_plural "splintered wood" msgstr[0] "madera astillada" msgstr[1] "maderas astilladas" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -74378,17 +74724,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "cultivo de levadura sellada" msgstr[1] "cultivo de levadura sellada" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "Abres el frasco y cosechás el cultivo." -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "La levadura todavía no terminó su proceso de cultivo." -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -75800,7 +76146,7 @@ msgid_plural "oars" msgstr[0] "remos" msgstr[1] "remos" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "Son remos para un bote." @@ -75822,7 +76168,7 @@ msgid_plural "inflatable section" msgstr[0] "sección inflable" msgstr[1] "sección inflable" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "Una parte inflable para bote." @@ -75833,7 +76179,7 @@ msgid_plural "inflatable airbag" msgstr[0] "airbag inflable" msgstr[1] "airbags inflables" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "Un airbag inflable." @@ -76801,7 +77147,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "altavoz de campana" msgstr[1] "altavoces de campana" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -76819,7 +77165,7 @@ msgid_plural "sheet metal" msgstr[0] "lamina metálica" msgstr[1] "laminas metálicas" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "Una lámina fina de metal." @@ -76830,7 +77176,7 @@ msgid_plural "wired sheet metal" msgstr[0] "lamina metálica alambrada" msgstr[1] "laminas metálicas alambradas" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "Una lámina de metal que tiene luces cableadas sobre ella." @@ -76854,7 +77200,7 @@ msgid_plural "steel plating" msgstr[0] "chapa de acero" msgstr[1] "chapas de acero" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "Una pieza de coraza hecha de acero." @@ -76865,7 +77211,7 @@ msgid_plural "superalloy plating" msgstr[0] "chapa de superaleacción" msgstr[1] "chapas de superaleacción" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "Una pieza de coraza hecha de superaleación resistente." @@ -76890,7 +77236,7 @@ msgid_plural "spiked plating" msgstr[0] "chapa de púas" msgstr[1] "chapas de púas" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -77151,6 +77497,7 @@ msgstr[0] "panel solar" msgstr[1] "paneles solares" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " @@ -77159,6 +77506,12 @@ msgstr "" "Un dispositivo electrónico que puede convertir la radiación solar en energía" " eléctrica. Útil para fabricar un vehículo." +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "matriz solar colapsable" +msgstr[1] "matrices solares colapsables" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -77305,6 +77658,17 @@ msgstr[1] "calentadores de vehículos" msgid "A vehicle-mounted area heater." msgstr "Un calentador de área montado en un vehículo." +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "calefactor de vehículo pequeño" +msgstr[1] "calefactores de vehículo pequeño" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "Un pequeño calentador de área montado en un vehículo." + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -77804,7 +78168,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "iniciador de masa madre de la familia de Dana" msgstr[1] "iniciadores de masa madre de la familia de Dana" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -77880,7 +78244,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "chasis de bioarma" msgstr[1] "chasis de bioarmas" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -78215,7 +78579,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "Isohypsa roto" msgstr[1] "Isohypsas rotos" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -78231,7 +78595,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "Kabura-ya rotos" msgstr[1] "Kabura-yas rotos" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -78377,7 +78741,7 @@ msgid_plural "scrap titanium" msgstr[0] "chatarra de titanio" msgstr[1] "chatarras de titanio" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -78390,7 +78754,7 @@ msgid_plural "nuclear waste" msgstr[0] "desecho nuclear" msgstr[1] "desecho nuclear" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "Es un pequeño perdigón de metal plateado, todavía tibio." @@ -78618,7 +78982,7 @@ msgid_plural "tripod chassis" msgstr[0] "chasis de trípode" msgstr[1] "chasis de trípodes" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78633,7 +78997,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "chasis de Pathfinder" msgstr[1] "chasis de Pathfinder" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78648,7 +79012,7 @@ msgid_plural "Regulator chassis" msgstr[0] "chasis Regulador" msgstr[1] "chasis Regulador" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78663,7 +79027,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "chasis de Senescal" msgstr[1] "chasis de Senescal" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78678,7 +79042,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "chasis Likvidator" msgstr[1] "chasis Likvidator" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78693,7 +79057,7 @@ msgid_plural "Famulus chassis" msgstr[0] "chasis Famuli" msgstr[1] "chasis Famulus" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -78708,7 +79072,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "chasis Udarnik" msgstr[1] "chasis Udarnik" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78723,7 +79087,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "chasis de Brandspojt" msgstr[1] "chasis de Brandspojts" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78738,7 +79102,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "Chasis de Droide Quirúrgico " msgstr[1] "Chasis de Droide Quirúrgico " -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78753,7 +79117,7 @@ msgid_plural "Aegis chassis" msgstr[0] "chasis Aegis" msgstr[1] "chasis Aegis" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78768,7 +79132,7 @@ msgid_plural "military robot chassis" msgstr[0] "chasis de robot militar" msgstr[1] "chasis de robot militar" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78783,7 +79147,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "chasis humaniforme militar" msgstr[1] "chasis humaniforme militar" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -78917,7 +79281,7 @@ msgid_plural "monomeric slurry" msgstr[0] "Lodo monomérico" msgstr[1] "Lodos monomérico" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -78948,7 +79312,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "fibras musculares artificiales" msgstr[1] "fibras musculares artificiales" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -78963,7 +79327,7 @@ msgid_plural "self healing polymers" msgstr[0] "polímero autocurativo" msgstr[1] "polímeros autocurativos" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -78993,7 +79357,7 @@ msgid_plural "scrap photonics" msgstr[0] "resto fotónico" msgstr[1] "restos fotónicos" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -79029,7 +79393,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "fotónico hipergeométrico" msgstr[1] "fotónicos hipergeométricos" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -79091,7 +79455,7 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "ultracapacitor array" msgid_plural "ultracapacitor arrays" -msgstr[0] "matriz de ultacondensadores" +msgstr[0] "matriz de ultracondensadores" msgstr[1] "matrices de ultracondensadores" #. ~ Description for ultracapacitor array @@ -79429,7 +79793,7 @@ msgid_plural "laser optics" msgstr[0] "optica laser" msgstr[1] "opticas laser" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -79556,7 +79920,7 @@ msgstr "" msgid "reinforced solar array" msgid_plural "reinforced solar arrays" msgstr[0] "array solar reforzado" -msgstr[1] "arrays solares reforzados" +msgstr[1] "matrices solares reforzados" #. ~ Description for reinforced solar array #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py @@ -79599,8 +79963,8 @@ msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "upgraded reinforced solar array" msgid_plural "upgraded reinforced solar arrays" -msgstr[0] "conjunto de paneles solares mejorados reforzados" -msgstr[1] "conjuntos de paneles solares mejorados reforzados" +msgstr[0] "matriz solar mejorada reforzada" +msgstr[1] "matrices solares mejoradas reforzadas" #. ~ Description for upgraded reinforced solar array #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py @@ -80272,7 +80636,7 @@ msgid_plural "enchanted wood" msgstr[0] "madera encantada" msgstr[1] "maderas encantadas" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "Madera que ha sido infundida con maná." @@ -81875,7 +82239,7 @@ msgid_plural "subzero talons" msgstr[0] "garra bajo cero" msgstr[1] "garras bajo cero" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -82138,7 +82502,7 @@ msgid_plural "fireproof mortar" msgstr[0] "mortero ignífugo" msgstr[1] "mortero ignífugo" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -82282,7 +82646,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "chasis de gallina caminante" msgstr[1] "chasis de gallinas caminantes" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -82297,7 +82661,7 @@ msgid_plural "Beagle chassis" msgstr[0] "chasis de Beagle" msgstr[1] "chasis de Beagles" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -83176,6 +83540,19 @@ msgstr "" "Saca del juego todos los monstruos excepto los que pertenecen a la categoría" " FAUNA SALVAJE." +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "Rebuscando" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" +"Algunos muebles hay que abrirlos para rebuscar adentro, esto aumenta la " +"emoción de encontrar cosas." + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "Atributos a Través de las Habilidades" @@ -83345,12 +83722,13 @@ msgstr "Ver iconos de sangrado, correr, agachado para retrodays" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" -"Añade un icono indicador si una criatura está viendo al jugador. Agrega un " -"icono encima de la tesela del jugador cuando este corre, se agacha o esta " -"sangrando. Diseñado para las teselas Retrodays." +"Agrega un indicador si una criatura está viendo al jugador. Agrega un icono " +"de estado sobre el gráfico del jugador para cuando corres, te agachas, estás" +" tirado en el suelo o sangras. Diseñado para las teselas Retrodays pero " +"también funciona bien con Neodays." #: lang/json/MOD_INFO_from_json.py msgid "SpeedyDex" @@ -83750,6 +84128,11 @@ msgstr "" "provisto de un arsenal de armas. Aunque no parece tener prisa por atacarte, " "sería prudente mantener la distancia." +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "¡El cuadrúpedo Exodii dispara su arma vaina!" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "a chk!" @@ -83827,7 +84210,7 @@ msgid "" "A TALON unmanned ground vehicle equipped with an M16A4. It is a small " "tracked UGV with an array of motors and sensors covering its weapon mount." msgstr "" -"Es un vehículo terrestre no tripulado TALON equipado con una M16A4. Es un " +"Un vehículo terrestre no tripulado TALON equipado con una M16A4. Es un " "pequeño UGV rastreado con un conjunto de motores y sensores que cubren la " "montura del arma." @@ -84121,8 +84504,8 @@ msgid "" "treat them like one of their own." msgstr "" "Sus pupilas están dilatadas y lo que queda visible del iris y la esclerótica" -" aparece ensangrentado. Este maníaco que empuña la tubería todavía respira, " -"pero los zombis lo tratan como a uno de los suyos." +" parecen ensangrentadan. Este maníaco que empuña la tubería todavía respira," +" pero los zombis lo tratan como a uno de los suyos." #: lang/json/MONSTER_from_json.py msgid "The feral human throws a rock!" @@ -84157,8 +84540,8 @@ msgid "" " treat them like one of their own." msgstr "" "Sus pupilas están dilatadas y lo que queda visible del iris y la esclerótica" -" aparece ensangrentado. Este maníaco que empuña una palanca todavía respira," -" pero los zombis lo tratan como a uno de los suyos." +" parecen ensangrentadas. Este maníaco que empuña una palanca todavía " +"respira, pero los zombis lo tratan como a uno de los suyos." #: lang/json/MONSTER_from_json.py msgid "" @@ -84167,7 +84550,7 @@ msgid "" "treat them like one of their own." msgstr "" "Sus pupilas están dilatadas y lo que queda visible del iris y la esclerótica" -" aparece ensangrentado. Este maníaco que empuña un hacha todavía respira, " +" parecen ensangrentadas. Este maníaco que empuña un hacha todavía respira, " "pero los zombis lo tratan como a uno de los suyos." #: lang/json/MONSTER_from_json.py @@ -84247,7 +84630,7 @@ msgid_plural "tiny fish" msgstr[0] "pez diminuto" msgstr[1] "peces diminutos" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "Un pez diminuto." @@ -84258,7 +84641,7 @@ msgid_plural "small fish" msgstr[0] "pez pequeño" msgstr[1] "peces pequeños" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "Un pez pequeño" @@ -84269,7 +84652,7 @@ msgid_plural "medium fish" msgstr[0] "pez mediano" msgstr[1] "peces mediano" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "Un pez mediano" @@ -84280,7 +84663,7 @@ msgid_plural "large fish" msgstr[0] "pez grande" msgstr[1] "peces grandes" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "Es un pez... grande." @@ -84291,7 +84674,7 @@ msgid_plural "huge fish" msgstr[0] "pez enorme" msgstr[1] "peces enorme" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "Un pez enorme" @@ -84444,7 +84827,7 @@ msgid_plural "whitefish" msgstr[0] "bacalao" msgstr[1] "bacalaos" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -84459,7 +84842,7 @@ msgid_plural "largemouth bass" msgstr[0] "perca americana" msgstr[1] "percas americanas" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "Es una perca americana. Muy popular entre los pescadores deportivos." @@ -84470,7 +84853,7 @@ msgid_plural "smallmouth bass" msgstr[0] "perca americana de boca pequeña " msgstr[1] "percas americanas de boca pequeña" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -84485,7 +84868,7 @@ msgid_plural "striped bass" msgstr[0] "perca americana rayada" msgstr[1] "percas americanas rayada" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -84500,7 +84883,7 @@ msgid_plural "white bass" msgstr[0] "lubina blanca" msgstr[1] "lubinas blancas" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -84543,7 +84926,7 @@ msgid_plural "sunfish" msgstr[0] "peces sol" msgstr[1] "pez sol" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -84555,7 +84938,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "pez luna semillas de calabaza" msgstr[1] "peces luna semillas de calabaza" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -84581,7 +84964,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "pez luna de pecho rojo" msgstr[1] "peces luna de pecho rojo" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -84594,7 +84977,7 @@ msgid_plural "green sunfish" msgstr[0] "pez luna verde" msgstr[1] "peces luna verde" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -84607,7 +84990,7 @@ msgid_plural "longear sunfish" msgstr[0] "pez luna de oreja larga" msgstr[1] "peces luna de oreja larga" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -84620,7 +85003,7 @@ msgid_plural "redear sunfish" msgstr[0] "pez luna de oreja roja" msgstr[1] "peces luna de oreja roja" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -84633,7 +85016,7 @@ msgid_plural "rock bass" msgstr[0] "lubina de roca" msgstr[1] "lubinas de roca" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -84648,7 +85031,7 @@ msgid_plural "calico bass" msgstr[0] "Paralabrax clathratus" msgstr[1] "Paralabrax clathratus" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -84686,7 +85069,7 @@ msgid_plural "channel catfish" msgstr[0] "siluro de canal" msgstr[1] "siluros de canal" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "Un siluro de canal, tienen una cola bífida y largos bigotes." @@ -84697,7 +85080,7 @@ msgid_plural "white catfish" msgstr[0] "pez gato blanco" msgstr[1] "peces gato blanco" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "Un gato blanco, un pequeño pez con bigotes y cabeza ancha." @@ -84803,7 +85186,7 @@ msgid_plural "fallfish" msgstr[0] "Semotilus corporalis" msgstr[1] "semotilus corporalis" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -84835,7 +85218,7 @@ msgid_plural "crayfish" msgstr[0] "cangrejo de rio" msgstr[1] "cangrejos de rio" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -84871,7 +85254,7 @@ msgstr "" " construyeron las represas. Supongo que ahora tendrán otra oportunidad ya " "que las represas no funcionan." -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -84886,7 +85269,7 @@ msgid_plural "giant crayfish" msgstr[0] "cangrejo de rio gigante" msgstr[1] "cangrejos de rio gigantes" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -84901,7 +85284,7 @@ msgid_plural "colossal crayfish" msgstr[0] "cangrejo de rio colosal" msgstr[1] "cangrejos de rio colosales" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "Un enorme cangrejo gris mutado con garras de pinza y largas antenas." @@ -85034,8 +85417,8 @@ msgstr "Un zarcillo largo y aparentemente delicado, con la punta afilada." #: lang/json/terrain_from_json.py msgid "fungal wall" msgid_plural "fungal walls" -msgstr[0] "pared fúngica" -msgstr[1] "paredes fúngicas" +msgstr[0] "muro fúngico" +msgstr[1] "muros fúngicos" #. ~ Description for fungal wall #: lang/json/MONSTER_from_json.py @@ -85045,7 +85428,7 @@ msgid "" "constrict around it, pulling new mass into its shape. They move with an " "inexorable strength that could snap limbs." msgstr "" -"Una verdadera pared de hongos, cultivada como una defensa natural por la " +"Un verdadero muro de hongos, cultivado como una defensa natural por la " "espira de los hongos. Nuevas esporas salen de la superficie cada pocos " "segundos, y los zarcillos se estrechan a su alrededor, atrayendo nueva masa " "a su forma. Se mueven con una fuerza inexorable que podría romper las " @@ -85668,7 +86051,7 @@ msgid_plural "fused dragonflies" msgstr[0] "libélula fusionada" msgstr[1] "libélulas fusionadas" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -85887,7 +86270,7 @@ msgstr[1] "arañas misil" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -86195,9 +86578,8 @@ msgid "" msgstr "" "Una reina avispa mutada que ha crecido hasta alcanzar el tamaño de una " "persona, pone un solo huevo blanco en cada celda vacía que encuentra " -"mientras corretea por las paredes de papel de su hogar. Le cuesta caber en " -"algunas de ellas, pero las celdas más nuevas parecen ser cada vez más " -"grandes..." +"mientras corretea por los muros de papel de su hogar. Le cuesta encajar en " +"algunos de ellos, pero las nuevas celdas parecen ser cada vez más grandes..." #: lang/json/MONSTER_from_json.py msgid "giant wasp" @@ -86656,8 +87038,8 @@ msgid "" "A green mutant insect with sharp grappling spikes on its front legs. It's a" " little smaller than an adult person." msgstr "" -"Un insecto mutante verde con púas filosas de agarre en sus patas delanteras." -" Un poco más pequeño que un humano adulto." +"Un insecto mutante verde con púas afiladas de agarre en sus patas " +"delanteras. Un poco más pequeño que un humano adulto." #: lang/json/MONSTER_from_json.py msgid "giant praying mantis" @@ -87057,7 +87439,7 @@ msgstr[1] "jabalíes" #: lang/json/MONSTER_from_json.py msgid "bobcat" msgid_plural "bobcats" -msgstr[0] "gato montés" +msgstr[0] "gato montes" msgstr[1] "gatos monteses" #. ~ Description for bobcat @@ -87835,7 +88217,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "Gran Pirineo" msgstr[1] "Grandes Pirineos" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -88067,7 +88449,7 @@ msgid_plural "moose" msgstr[0] "alce" msgstr[1] "alces" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -88260,7 +88642,7 @@ msgstr[0] "cordero" msgstr[1] "corderos" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -88629,10 +89011,11 @@ msgstr[1] "depurar monstruos" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -88643,6 +89026,17 @@ msgstr "El %s se derrite." msgid "This monster exists only for testing purposes." msgstr "Este monstruo solo existe para hacer pruebas." +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "monstruo punto débil" +msgstr[1] "monstruos punto débil" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "Este monstruo solo existe para probar los puntos débiles." + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -90238,7 +90632,8 @@ msgid "" " of vascular tissue reach out to the surrounding root walls." msgstr "" "Un nudo de raíces tubulares, con savia fluyendo y latiendo como un corazón. " -"Las hebras de tejido vascular se estiran hacia las raíces de alrededor." +"Las hebras de tejido vascular se estiran hacia las raíces amuralladas de " +"alrededor." #: lang/json/MONSTER_from_json.py msgid "improvised MP5 turret" @@ -90918,7 +91313,7 @@ msgid "" "fearsome incisors and thick, black goo in its mouth that it seems proud to " "display. It doesn't look interested in chewing on trees anymore." msgstr "" -"Esta bestia con ojos de pared tiene una gran herida en el costado, y en su " +"Esta bestia de mirada fría tiene una gran herida en el costado, y en su " "interior se ven claramente sus costillas manchadas de sangre. Sus rasgos más" " destacados son los temibles incisivos y la gruesa y negra mucosidad de su " "boca, que parece mostrar con orgullo. Ya no parece interesado en masticar " @@ -91332,7 +91727,7 @@ msgid_plural "sawbones" msgstr[0] "serrahueso" msgstr[1] "serrahuesos" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -91352,7 +91747,7 @@ msgid_plural "doctor burns" msgstr[0] "doctor quemado" msgstr[1] "doctores quemados" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -91573,7 +91968,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "carneraptor inestable" msgstr[1] "carneraptores inestables" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -91717,17 +92112,18 @@ msgstr[1] "zombis infantiles" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -92248,7 +92644,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "carne gangrenosa" msgstr[1] "carne gangrenosa" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -92272,8 +92668,8 @@ msgid "" "between walls and ceiling with limbs grown from its own disjointed ribs." msgstr "" "Una abominación arácnida de pesadilla, nacida de la sangre humana. Se " -"arrastra hábilmente entre las paredes y el techo con extremidades crecidas " -"de sus propias costillas desunidas." +"arrastra hábilmente entre los muros y el techo con extremidades crecidas de " +"sus propias costillas desunidas." #: lang/json/MONSTER_from_json.py msgid "gangrenous impaler" @@ -92300,7 +92696,7 @@ msgid_plural "scissorlimbs" msgstr[0] "cortador de extremidades" msgstr[1] "cortadores de extremidades" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -92317,7 +92713,7 @@ msgid_plural "hanging innards" msgstr[0] "entraña colgante" msgstr[1] "entrañas colgantes" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -92913,7 +93309,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "Shia LaBeouf" msgstr[1] "Shia LaBeouf" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -95224,7 +95620,7 @@ msgid_plural "wisp" msgstr[0] "fuego fatuo" msgstr[1] "fuegos fatuo" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -95850,7 +96246,7 @@ msgid "" "A massive wall of thick, blocky crystals that glow faintly and crackle with " "residual electric energy." msgstr "" -"Una enorme pared de gruesos cristales en forma de bloque que brillan " +"Un enorme muro de gruesos cristales en forma de bloque que brillan " "débilmente y crepitan con energía eléctrica residual." #: lang/json/MONSTER_from_json.py @@ -95923,7 +96319,7 @@ msgid_plural "coelophysis" msgstr[0] "coelophysis" msgstr[1] "coelophysis" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -95938,7 +96334,7 @@ msgid_plural "dilophosaurus" msgstr[0] "dilophosaurus" msgstr[1] "dilophosaurus" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -95953,7 +96349,7 @@ msgid_plural "ceratosaurus" msgstr[0] "ceratosaurus" msgstr[1] "ceratosaurus" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -95970,7 +96366,7 @@ msgid_plural "spinosaurus" msgstr[0] "spinosaurus" msgstr[1] "spinosaurus" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -95987,7 +96383,7 @@ msgid_plural "allosaurus" msgstr[0] "allosaurus" msgstr[1] "allosaurus" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -96002,7 +96398,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "acrocanthosaurus" msgstr[1] "acrocanthosaurus" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -96019,7 +96415,7 @@ msgid_plural "siats" msgstr[0] "siats" msgstr[1] "siats" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " @@ -96028,13 +96424,28 @@ msgstr "" "Enorme dinosaurio bípedo depredador con largas garras y fuertes brazos para " "agarrar." +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "gorgosaurus" +msgstr[1] "gorgosaurus" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" +"Dientes enormes, ojos feroces y una estructura poderosa para avanzar, junto " +"con dos brazos pequeños y una cabellera y cola de plumas." + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "albertosaurus" msgstr[1] "albertosaurus" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -96049,7 +96460,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "qianzhousaurus" msgstr[1] "qianzhousaurus" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -96064,7 +96475,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "tyrannosaurus rex" msgstr[1] "tyrannosaurus rex" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -96080,7 +96491,7 @@ msgid_plural "compsognathus" msgstr[0] "compsognathus" msgstr[1] "compsognathus" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -96095,7 +96506,7 @@ msgid_plural "gallimimus" msgstr[0] "gallimimus" msgstr[1] "gallimimus" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -96125,7 +96536,7 @@ msgid_plural "nothronychus" msgstr[0] "nothronychus" msgstr[1] "nothronychus" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -96140,7 +96551,7 @@ msgid_plural "deinonychus" msgstr[0] "deinonychus" msgstr[1] "deinonychus" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -96185,7 +96596,7 @@ msgid_plural "amargasaurus" msgstr[0] "amargasaurus" msgstr[1] "amargasaurus" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -96200,7 +96611,7 @@ msgid_plural "apatosaurus" msgstr[0] "apatosaurus" msgstr[1] "apatosaurus" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -96216,7 +96627,7 @@ msgid_plural "brontosaurus" msgstr[0] "brontosaurus" msgstr[1] "brontosaurus" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -96231,7 +96642,7 @@ msgid_plural "diplodocus" msgstr[0] "diplodocus" msgstr[1] "diplodocus" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -96244,7 +96655,7 @@ msgid_plural "camarasaurus" msgstr[0] "camarasaurus" msgstr[1] "camarasaurus" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -96259,7 +96670,7 @@ msgid_plural "brachiosaurus" msgstr[0] "brachiosaurus" msgstr[1] "brachiosaurus" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -96274,7 +96685,7 @@ msgid_plural "alamosaurus" msgstr[0] "alamosaurus" msgstr[1] "alamosaurus" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -96289,7 +96700,7 @@ msgid_plural "scutellosaurus" msgstr[0] "scutellosaurus" msgstr[1] "scutellosaurus" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -96304,7 +96715,7 @@ msgid_plural "stegosaurus" msgstr[0] "stegosaurus" msgstr[1] "stegosaurus" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -96318,7 +96729,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "dyoplosaurus" msgstr[1] "dyoplosaurus" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -96333,7 +96744,7 @@ msgid_plural "ankylosaurus" msgstr[0] "ankylosaurus" msgstr[1] "ankylosaurus" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -96348,7 +96759,7 @@ msgid_plural "nodosaurus" msgstr[0] "nodosaurus" msgstr[1] "nodosaurus" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -96362,7 +96773,7 @@ msgid_plural "edmontonia" msgstr[0] "edmontonia" msgstr[1] "edmontonia" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -96377,7 +96788,7 @@ msgid_plural "camptosaurus" msgstr[0] "camptosaurus" msgstr[1] "camptosaurus" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -96392,7 +96803,7 @@ msgid_plural "parasaurolophus" msgstr[0] "parasaurolophus" msgstr[1] "parasaurolophus" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -96404,7 +96815,7 @@ msgid_plural "maiasaura" msgstr[0] "maiasaura" msgstr[1] "maiasaura" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -96419,7 +96830,7 @@ msgid_plural "corythosaurus" msgstr[0] "corythosaurus" msgstr[1] "corythosaurus" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -96434,7 +96845,7 @@ msgid_plural "edmontosaurus" msgstr[0] "edmontosaurus" msgstr[1] "edmontosaurus" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "Un enorme dinosaurio escamoso con un amplio pico sin dientes." @@ -96445,7 +96856,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "pachycephalosaurus" msgstr[1] "pachycephalosaurus" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -96460,7 +96871,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "pachyrhinosaurus" msgstr[1] "pachyrhinosaurus" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -96475,7 +96886,7 @@ msgid_plural "pentaceratops" msgstr[0] "pentaceratops" msgstr[1] "pentaceratops" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -96490,7 +96901,7 @@ msgid_plural "kosmoceratops" msgstr[0] "kosmoceratops" msgstr[1] "kosmoceratops" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -96506,7 +96917,7 @@ msgid_plural "torosaurus" msgstr[0] "torosaurus" msgstr[1] "torosaurus" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -96521,7 +96932,7 @@ msgid_plural "triceratops" msgstr[0] "triceratops" msgstr[1] "triceratops" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -96536,7 +96947,7 @@ msgid_plural "dimorphodon" msgstr[0] "dimorphodon" msgstr[1] "dimorphodon" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -96551,7 +96962,7 @@ msgid_plural "pteranodon" msgstr[0] "pteranodon" msgstr[1] "pteranodon" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -96566,7 +96977,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "quetzalcoatlus" msgstr[1] "quetzalcoatlus" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -96581,7 +96992,7 @@ msgid_plural "mosasaurus" msgstr[0] "mosasaurus" msgstr[1] "mosasaurus" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -96596,7 +97007,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "bio-operador Gallimimus" msgstr[1] "bio-operador Gallimimus" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -96611,7 +97022,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "bio-operador Pachicephalosaurus" msgstr[1] "bio-operadores Pachicephalosaurus" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -96627,7 +97038,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "bio-operador Triceratops" msgstr[1] "bio-operador Triceratops" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -96642,7 +97053,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "bio-operador Velociraptor" msgstr[1] "bio-operador Velociraptor" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -96657,7 +97068,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "bio-operador Deinonychus" msgstr[1] "bio-operador Deinonychus" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -96672,7 +97083,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "bio-operador Dimorphodon" msgstr[1] "bio-operador Dimorphodon" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -96687,7 +97098,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "bio-operador Spinosaurus" msgstr[1] "bio-operador Spinosaurus" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -96819,6 +97230,24 @@ msgstr "" "ojos y otros orificios, que logran mantener unida esta masa temblorosa de " "carne cubierta de moho." +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "gorgosaurus zombi fúngico" +msgstr[1] "gorgosaurus zombis fúngicos" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" +"Lo que alguna vez fue un enorme dinosaurio depredador bípedo con enormes " +"fauces, ahora tiene tallos fúngicos brotando de su boca, ojos y otros " +"orificios, que logran mantener unida esta masa temblorosa de carne cubierta " +"de moho." + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -96904,7 +97333,7 @@ msgid "" "holding together a shambling mass of mold-covered feathers." msgstr "" "Lo que alguna vez fue un gran dinosaurio con plumas bípedo y herbívoro con " -"garras curvas y filosas, ahora tiene tallos fúngicos brotando de su boca, " +"garras curvas y afiladas, ahora tiene tallos fúngicos brotando de su boca, " "ojos y otros orificios, que logran mantener unido esta masa temblorosa de " "plumas cubiertas de moho." @@ -97456,6 +97885,12 @@ msgid_plural "dark gray and yellow hatchlings" msgstr[0] "cría de color gris oscuro y amarillo" msgstr[1] "crías de color gris oscuro y amarillo" +#: lang/json/MONSTER_from_json.py +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" +msgstr[0] "cría verde y magenta" +msgstr[1] "crías verdes y magenta" + #: lang/json/MONSTER_from_json.py msgid "red and green hatchling" msgid_plural "red and green hatchlings" @@ -97468,12 +97903,6 @@ msgid_plural "dark gray and white hatchlings" msgstr[0] "cría de color gris oscuro y blanco" msgstr[1] "crías de color gris oscuro y blanco" -#: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" -msgstr[0] "cría verde y magenta" -msgstr[1] "crías verdes y magenta" - #: lang/json/MONSTER_from_json.py msgid "amargasaurus hatchling" msgid_plural "amargasaurus hatchlings" @@ -97532,7 +97961,6 @@ msgstr[0] "menor de dos patas de color magenta y verde" msgstr[1] "menores de dos patas de color magenta y verde" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -97556,27 +97984,100 @@ msgstr "" "Un enorme dinosaurio depredador juvenil con un gran abanico en su espalda." #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" -msgstr[0] "menor de dos patas de color marrón y blanco" -msgstr[1] "menores de dos patas de color marrón y blanco" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" +msgstr[0] "allosaurus menor" +msgstr[1] "allosaurus menores" +#. ~ Description for juvenile allosaurus #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" -msgstr[0] "menor de dos patas rojas y blancas" -msgstr[1] "menores de dos patas rojas y blancas" +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "Una versión joven de un gran dinosaurio bípedo carnívoro." -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" +msgstr[0] "acrocanthosaurus menor" +msgstr[1] "acrocanthosaurus menores" + +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." msgstr "" -"Es un joven dinosaurio pequeño, bípedo y carnívoro con enormes ojos " -"brillantes. Podría ser cría de cualquiera de las especies que hay." +"La versión joven de un gran dinosaurio bípedo depredador con una cresta alta" +" que le recorre toda la espalda, cubierta de grandes músculos." + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "siat menor" +msgstr[1] "siats menores" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" +"La versión joven de un gran dinosaurio bípedo depredador con largas garras y" +" brazos fuertes para agarrar a sus presas." + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "gorgosaurus menor" +msgstr[1] "gorgosaurus menores" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" +"Este dinosaurio joven tiene dientes enormes, ojos feroces y una estructura " +"poderosa para avanzar, junto con dos brazos pequeños y una cabellera y cola " +"de plumas." + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "albertosaurus menor" +msgstr[1] "albertosaurus menores" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" +"Este dinosaurio joven tiene dientes enormes, ojos feroces y una estructura " +"poderosa para avanzar, junto con dos brazos largos y fuertes y una cabellera" +" y cola de plumas." + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "qianzhousaurus menor" +msgstr[1] "qianzhousaurus menores" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" +"Este joven dinosaurio grande, bípedo y cubierto de plumas tiene una boca " +"larga similar a un cocodrilo con dientes filosos." + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "tyrannosaurus menor" +msgstr[1] "tyrannosaurus menores" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "Un enorme dinosaurio depredador juvenil con grandes dientes afilados." @@ -97831,6 +98332,21 @@ msgstr "" "El cadáver de un enorme dinosaurio bípedo depredador con largas garras y " "fuertes brazos para agarrar." +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "gorgosaurus zombi" +msgstr[1] "gorgosaurus zombis" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" +"Cuerpo gigante de dinosaurio con mandíbulas enormes que babean un líquido " +"negro." + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -97958,7 +98474,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "amargasaurus zombi" msgstr[1] "amargasaurus zombis" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -98504,6 +99020,7 @@ msgstr[1] "dilophosaurus zombis calcinados" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -98558,6 +99075,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "siats zombi calcinado" msgstr[1] "siats zombis calcinados" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "gorgosaurus zombi calcinado" +msgstr[1] "gorgosaurus zombis calcinados" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -99027,6 +99550,21 @@ msgstr "" "fuertes brazos de agarre. Todo su cuerpo sobresale con músculos distendidos " "y heridas hinchadas supurantes." +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "Goliat Gorgosaurus" +msgstr[1] "Goliats Gorgosaurus" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" +"Un dinosaurio zombi con mandíbulas gigantescas que se elevan de un cuerpo " +"abultado con músculos dilatados y heridas infectadas e hinchadas." + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -99063,7 +99601,7 @@ msgid_plural "Rage Rex" msgstr[0] "Rex Rabioso" msgstr[1] "Rex Rabiosos" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -99079,7 +99617,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "Gallimimus Macabro" msgstr[1] "Gallimimus Macabros" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -99096,7 +99634,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "Nothronychus Nefasto" msgstr[1] "Nothronychus Nefastos" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -99170,7 +99708,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "Apatosaurus Anabólico" msgstr[1] "Apatosaurus Anabólicos" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -99246,7 +99784,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "Alamosaurus Anabólico" msgstr[1] "Alamosaurus Anabólicos" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -99547,12 +100085,27 @@ msgstr "" "supurantes." #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" -msgstr[0] "zombi sombrío Spinosaurus" -msgstr[1] "zombis sombríos Spinosaurus" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "ceratosaurus zombi sombrío" +msgstr[1] "ceratosaurus zombis sombríos" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" +"Una extraña sombra envuelve a esta criatura. Se puede distinguir la silueta " +"de un enorme dinosaurio bípedo con cuernos, púas y grandes dientes afilados." + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" +msgstr[0] "spinosaurus zombi sombrío" +msgstr[1] "spinosaurus zombis sombríos" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99564,76 +100117,78 @@ msgstr "" " estrecha, con un hocico en forma de V." #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" -msgstr[0] "Z-Rex sombrio" -msgstr[1] "Z-Rex sombrios" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" +msgstr[0] "allosaurus zombi sombrío" +msgstr[1] "allosaurus zombis sombríos" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" "Una extraña sombra envuelve a esta criatura. Se puede distinguir la silueta " -"de un enorme dinosaurio bípedo con bordes plumosos. La cabeza parece grande:" -" en ella cabrían muchos dientes grandes." +"de un gran dinosaurio bípedo con dientes grandes y afilados." #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" -msgstr[0] "Albertosaurus zombrio" -msgstr[1] "Albertosaurus zombrios" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" +msgstr[0] "gorgosaurus zombi sombrío" +msgstr[1] "gorgosaurus zombis sombríos" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" -"Una extraña sombra envuelve a esta criatura. Se puede distinguir la silueta " -"de un enorme dinosaurio bípedo con bordes plumosos. La cabeza parece grande," -" y debajo hay largas garras que agarran." +"Una extraña sombra envuelve a esta criatura. Puedes distinguir la forma de " +"un enorme dinosaurio bípedo con bordes con plumas. La cabeza parece grande " +"como si pudiera contener muchos dientes enormes y filosos." #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" -msgstr[0] "Ankylosaurus zombrio" -msgstr[1] "Ankylosaurus zombrios" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" +msgstr[0] "albertosaurus zombi sombrío" +msgstr[1] "albertosaurus zombis sombríos" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" -"Una extraña sombra envuelve a esta criatura. Se distingue la silueta de un " -"gran dinosaurio cuadrúpedo, fuertemente acorazado y con una cola de púas." +"Una extraña sombra envuelve a esta criatura. Se puede distinguir la silueta " +"de un enorme dinosaurio bípedo con bordes plumosos. La cabeza parece grande," +" y debajo hay largas garras que agarran." #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" -msgstr[0] "Allosaurus zombrio" -msgstr[1] "Allosaurus zombrios" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" +msgstr[0] "Z-Rex sombrio" +msgstr[1] "Z-Rex sombrios" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" "Una extraña sombra envuelve a esta criatura. Se puede distinguir la silueta " -"de un gran dinosaurio bípedo con dientes grandes y afilados." +"de un enorme dinosaurio bípedo con bordes plumosos. La cabeza parece grande:" +" en ella cabrían muchos dientes grandes." #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" -msgstr[0] "Nothronychus zombrio" -msgstr[1] "Nothronychus zombrios" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" +msgstr[0] "nothronychus zombi sombrío" +msgstr[1] "nothronychus zombis sombríos" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99644,12 +100199,12 @@ msgstr "" "garras." #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" -msgstr[0] "Deinonychus zombrio" -msgstr[1] "Deinonychus zombrios" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" +msgstr[0] "deinonychus zombi sombrío" +msgstr[1] "deinonychus zombis sombríos" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99661,12 +100216,12 @@ msgstr "" "garra en forma de hoz." #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" -msgstr[0] "Utahraptor zombrio" -msgstr[1] "Utahraptor zombrios" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" +msgstr[0] "utahraptor zombi sombrío" +msgstr[1] "utahraptor zombis sombríos" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99678,19 +100233,19 @@ msgstr "" "gran garra en forma de hoz." #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" -msgstr[0] "Ceratosaurus zombrio" -msgstr[1] "Ceratosaurus zombrios" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" +msgstr[0] "ankylosaurus zombi sombrío" +msgstr[1] "ankylosaurus zombis sombríos" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" -"Una extraña sombra envuelve a esta criatura. Se puede distinguir la silueta " -"de un enorme dinosaurio bípedo con cuernos, púas y grandes dientes afilados." +"Una extraña sombra envuelve a esta criatura. Se distingue la silueta de un " +"gran dinosaurio cuadrúpedo, fuertemente acorazado y con una cola de púas." #: lang/json/MONSTER_from_json.py msgid "Bone Dragon" @@ -99725,7 +100280,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "spinosaurus esquelético" msgstr[1] "spinosaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -99741,7 +100296,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "allosaurus esquelético" msgstr[1] "allosaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99756,7 +100312,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "acrocanthosaurus esquelético" msgstr[1] "acrocanthosaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -99772,7 +100328,7 @@ msgid_plural "skeletal siats" msgstr[0] "siats esquelético" msgstr[1] "siats esqueléticos" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -99782,13 +100338,19 @@ msgstr "" "gotean de una sustancia viscosa negra. Hay largas garras y fuertes brazos " "para agarrar." +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "gorgosaurus esquelético" +msgstr[1] "gorgosaurus esqueléticos" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "albertosaurus esquelético" msgstr[1] "albertosaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99804,7 +100366,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "qianzhousaurus esquelético" msgstr[1] "qianzhousaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -99834,7 +100396,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "gallimimus esquelético" msgstr[1] "gallimimus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -99848,7 +100410,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "nothronychus esquelético" msgstr[1] "nothronychus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99864,8 +100426,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "deinonychus esquelético" msgstr[1] "deinonychus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99887,7 +100449,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "amargasaurus blindado" msgstr[1] "amargasaurus blindados" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -99904,7 +100466,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "apatosaurus blindado" msgstr[1] "apatosaurus blindados" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -99919,7 +100481,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "brontosaurus blindado" msgstr[1] "brontosaurus blindados" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -99935,7 +100497,7 @@ msgid_plural "armored diplodocus" msgstr[0] "diplodocus blindado" msgstr[1] "diplodocus blindados" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -99950,7 +100512,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "camarasaurus blindado" msgstr[1] "camarasaurus blindados" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -99965,7 +100527,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "brachiosaurus blindado" msgstr[1] "brachiosaurus blindados" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -99980,7 +100542,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "alamosaurus blindado" msgstr[1] "alamosaurus blindados" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -99995,7 +100557,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "stegosaurus esquelético" msgstr[1] "stegosaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -100011,7 +100573,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "dyoplosaurus esquelético" msgstr[1] "dyoplosaurus esqueléticos" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -100028,7 +100590,7 @@ msgid_plural "Bone Fortress" msgstr[0] "Fortaleza de Hueso" msgstr[1] "Fortalezas de Hueso" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -100045,7 +100607,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "nodosaurus blindado" msgstr[1] "nodosaurus blindados" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -100061,7 +100623,7 @@ msgid_plural "armored edmontonia" msgstr[0] "edmontonia blindado" msgstr[1] "edmontonia blindados" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -100076,7 +100638,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "camptosaurus blindado" msgstr[1] "camptosaurus blindados" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -100091,7 +100653,7 @@ msgid_plural "armored maiasaura" msgstr[0] "maiasaura blindado" msgstr[1] "maiasaura blindados" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -100107,7 +100669,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "parasaurolophus blindado" msgstr[1] "parasaurolophus blindados" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -100122,7 +100684,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "kosmoceratops blindado" msgstr[1] "corythosaurus blindados" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -100137,7 +100699,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "Edmontosaurus blindado" msgstr[1] "Edmontosaurus blindados" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -100152,7 +100714,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "pachycephalosaurus protegido" msgstr[1] "pachycephalosaurus protegidos" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -100167,7 +100729,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "pachyrhinosaurus protegido" msgstr[1] "pachyrhinosaurus protegidos" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -100183,7 +100745,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "pentaceratops protegido" msgstr[1] "pentaceratops protegidos" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -100199,7 +100761,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "kosmoceratops blindado" msgstr[1] "kosmoceratops blindados" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -100214,7 +100776,7 @@ msgid_plural "armored torosaurus" msgstr[0] "torosaurus blindado" msgstr[1] "torosaurus blindados" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -100229,7 +100791,7 @@ msgid_plural "armored triceratops" msgstr[0] "triceratops blindado" msgstr[1] "triceratops blindados" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -100244,7 +100806,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "Tyruckusaurus Rex" msgstr[1] "Tyruckusaurus Rex" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -100261,7 +100823,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "Tankylosaurus" msgstr[1] "Tankylosaurus" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -100278,7 +100840,7 @@ msgid_plural "Goliath Rex" msgstr[0] "Goliath Rex" msgstr[1] "Goliath Rex" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -100294,7 +100856,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "mole Ankylosaurus" msgstr[1] "moles Ankylosaurus" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -100310,7 +100872,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "zombi Dimorphodon" msgstr[1] "zombis Dimorphodon" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -100359,7 +100921,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "CROWS II ametralladora pesada" msgstr[1] "CROWS II ametralladoras pesadas" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -100380,7 +100942,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "CROWS II ametralladora ligera" msgstr[1] "CROWS II ametralladoras ligeras" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -100711,7 +101273,7 @@ msgid "" msgstr "" "Lo primero que se observa es que esta criatura tiene cinco brazos. Lo " "siguiente es que camina sobre tres patas. Camina entre la bóveda hasta que " -"se percata de tu presencia y luego se lanza contra las paredes gritando una " +"se percata de tu presencia y luego se lanza contra los muros gritando una " "barbaridad. Su mera presencia te llena de un miedo insondable." #: lang/json/MONSTER_from_json.py @@ -100763,7 +101325,7 @@ msgid_plural "forge hounds" msgstr[0] "perro forja" msgstr[1] "perros forja" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -101129,7 +101691,7 @@ msgid_plural "hunllef rams" msgstr[0] "carnero hunllef" msgstr[1] "carneros hunllef" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -101294,6 +101856,27 @@ msgstr "" " no está destruyendo enloquecidamente cualquier signo de humanidad en su " "territorio." +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "pesadilla ardiente" +msgstr[1] "pesadillas ardientes" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" +"Una figura colosal que parece estar formada enteramente por sombras " +"envueltas en llamas. Sus inmensas alas oscuras se extienden de muro a muro. " +"Dos ojos que parecen carbones ardientes te miran con odio. En una mano " +"sostiene una enorme espada, en la otra tiene un látigo de muchos filamentos," +" ambos brillando con llamas al rojo vivo." + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -101620,7 +102203,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "perca americana de galleta" msgstr[1] "percas americanas de galleta" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -101962,7 +102545,7 @@ msgstr "" "y escolta militar, rueda sobre un conjunto de orugas hidráulicas y está " "armado con un M16A4." -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -103208,7 +103791,7 @@ msgstr "Hace que la sangre se filtre desde el terreno cercano." #. ~ Message for SPELL '{'str': 'Artifact Blood'}' #: lang/json/SPELL_from_json.py msgid "Blood soaks out of the ground and walls." -msgstr "Hay sangre saliendo del suelo y de las paredes." +msgstr "Hay sangre saliendo del suelo y de los muros." #: lang/json/SPELL_from_json.py msgid "Artifact Heal" @@ -106322,7 +106905,7 @@ msgid "" msgstr "" "Envía un dron espía en parte mágico y en parte electrónico con forma de " "avispa que revela el terreno en una línea delante de ti. La avispa puede " -"viajar a través de las paredes." +"viajar a través de los muros." #: lang/json/SPELL_from_json.py msgid "Artificer's Toolkit" @@ -106730,8 +107313,8 @@ msgid "" "through walls. Pulls in items and deals bashing damage in its center." msgstr "" "Cambia y amplifica la atracción gravitatoria hacia un punto que elijas, " -"incluso a través de las paredes. Atrae objetos e inflige daño de golpe en su" -" centro." +"incluso a través de los muros. Atrae objetos e inflige daño de golpe en su " +"centro." #. ~ description for the sound of spell 'Graviton Polarization' #: lang/json/SPELL_from_json.py @@ -107530,7 +108113,7 @@ msgstr[1] "cascos de minero (encendidos)" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -107574,7 +108157,7 @@ msgstr "Apagar" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -108654,7 +109237,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "sistema RX11 de suministro de estimulantes" msgstr[1] "sistema RX11 de suministro de estimulantes" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -109337,17 +109920,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "orejeras para tirador" msgstr[1] "orejeras para tirador" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "Enciendes las orejeras." -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "Las batería de las orejeras está descargada." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -109360,7 +109943,7 @@ msgstr "" "Bloquearán los sonidos por encima de una cierta cantidad de decibelios " "cuando se encienden. Las orejeras están actualmente apagadas." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -109614,7 +110197,6 @@ msgid "You turn the flight helmet on." msgstr "Enciende el casco de vuelo." #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -109628,24 +110210,36 @@ msgstr "" #: lang/json/TOOL_ARMOR_from_json.py msgid "military flight helmet (on)" msgid_plural "military flight helmets (on)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "casco de vuelo militar (encendido)" +msgstr[1] "cascos de vuelo militar (encendidos)" + +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" +"Un casco de vuelo militar con varios dispositivos LED parpadeando " +"periodicamente. Adornado con un visor, un micrófono y un sistema de " +"amortiguación del ruido. El casco también está provisto de raíles de " +"plástico para permitir diferentes equipamientos extras." #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Gorra Militar" +msgstr[1] "Gorras Militares" #. ~ Use action menu_text for Combo cover. #: lang/json/TOOL_ARMOR_from_json.py msgid "Salute" -msgstr "" +msgstr "Saludar" #. ~ Use action msg for Combo cover. #: lang/json/TOOL_ARMOR_from_json.py msgid "You bring your hand to your cover and issue a salute." -msgstr "" +msgstr "Llevas la mano a tu cubierta y emites un saludo." #. ~ Description for Combo cover #: lang/json/TOOL_ARMOR_from_json.py @@ -109653,6 +110247,8 @@ msgid "" "A military officer's combo cover, or peaked cap. It conveys an air of " "authority, while keeping the sun out of your eyes." msgstr "" +"La gorra de un oficial militar, o gorra de pico. Transmite un aire de " +"autoridad, al tiempo que mantiene el sol fuera de los ojos." #: lang/json/TOOL_ARMOR_from_json.py msgid "FB51 optical cloak" @@ -110073,7 +110669,7 @@ msgid_plural "bagpipes" msgstr[0] "gaita" msgstr[1] "gaitas" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -110834,7 +111430,7 @@ msgid_plural "Megingjörð" msgstr[0] "Megingjörð" msgstr[1] "Megingjörð" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -110928,7 +111524,7 @@ msgid_plural "escape boots" msgstr[0] "botas de escape" msgstr[1] "botas de escape" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -111777,7 +112373,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "escalpelo quirúrgico autónomo" msgstr[1] "escalpelos quirúrgicos autónomos" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -112378,10 +112974,10 @@ msgid "" "grenade hack. Electronics and computer skill determines if the targeting " "matrix is reprogrammed successfully." msgstr "" -"Es un grana-hack inactivo. Los grana-hacks son robots del tamaño de un puño " -"que vuelan por el aire. Este contiene una granada y su manera de atacar es " -"volar hacia el objetivo y detonar. Usalo para reprogramar y soltar el grana-" -"hack. Tu habilidad en electrónica y computación determinará si la " +"Este es un grana-hack inactivo. Los grana-hacks son robots del tamaño de un " +"puño que vuelan por el aire. Este contiene una granada y su manera de atacar" +" es volar hacia el objetivo y detonar. Usalo para reprogramar y soltar el " +"grana-hack. Tu habilidad en electrónica y computación determinará si la " "reprogramación es exitosa." #: lang/json/TOOL_from_json.py @@ -113911,7 +114507,7 @@ msgstr "" "originaria de Nepal. Con una hoja pesada y un filo curvado hacia dentro, " "puede utilizarse como herramienta y como arma." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -113922,7 +114518,7 @@ msgstr "" "ornamentada y una borla unida al pomo. Una de las cuatro armas principales " "del folclore, junto con el sable dao, la lanza qiang y el bastón." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -114030,7 +114626,7 @@ msgid_plural "dao" msgstr[0] "dao" msgstr[1] "dao" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -114092,7 +114688,7 @@ msgstr "" "pica. Esta fue modificada y personalizada para montarla en casi cualquier " "arma que no sean pistolas y SMGs, si así lo desea." -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -114104,7 +114700,7 @@ msgstr "" "wakizashi. Es una cuchilla letal, aunque es más pequeña que sus familiares " "más famosos." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -114143,7 +114739,7 @@ msgstr "" "Una daga ceremonial llevada por hombres Sikh. Esta no está particularmente " "bien hecha." -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -114266,7 +114862,7 @@ msgstr "" "caballero o un espadachín. Ligera y rápida, hace que cualqueir batalla sea " "con estilo." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " @@ -114275,7 +114871,7 @@ msgstr "" "Es una rara espada japonesa. Es letal contra enemigos sin armadura, pero " "igual es bastante eficaz contra las armaduras." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -114293,7 +114889,7 @@ msgstr "" "Es una enorme espada de dos manos alemana. Aunque no estás muy seguro de que" " tenga que ser así de flexible." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -114485,7 +115081,7 @@ msgid_plural "synthetic fabric" msgstr[0] "tejido sintético" msgstr[1] "tejido sintético" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -115045,8 +115641,8 @@ msgid "" "surrounding flammable objects." msgstr "" "Un gran barril de metal usado para contener el fuego. Tiene múltiples " -"agujeros perforados en sus paredes para el suministro de aire. Los incendios" -" que se producen en un barril de fuego no se propagan a los objetos " +"agujeros perforados en sus muros para el suministro de aire. Los incendios " +"que se producen en un barril de fuego no se propagan a los objetos " "inflamables circundantes." #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py @@ -115365,7 +115961,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "par de esposas electrónicas" msgstr[1] "pares de esposas electrónicas" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -117246,8 +117842,8 @@ msgid "" msgstr "" "Es una herramienta corta y liviana de emergencia, con una cuchilla circular," " un pequeño pico en la parte opuesta a la cuchilla y un mango aislado. Se " -"utiliza en los aviones para romper paredes o casilleros para abrirse paso en" -" caso de incendio." +"utiliza en los aviones para romper muros o casilleros para abrirse paso en " +"caso de incendio." #: lang/json/TOOL_from_json.py msgid "large fire extinguisher" @@ -118069,12 +118665,13 @@ msgstr "La batería de la linterna reforzada está descargada." #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" -"Es una linterna led reforzada de forma tubular y de aluminio, utilizada " -"comúnmente por los guardias de seguridad. Es una decente arma de cuerpo a " -"cuerpo. Usala para encenderla, si tiene baterías emitirá luz." +"Fna linterna led reforzada de forma tubular y de aluminio, utilizada " +"comúnmente por los guardias de seguridad. Usar esta linterna la encenderá y " +"proporcionará luz incluso bajo el agua, suponiendo que esté cargada con " +"pilas." #: lang/json/TOOL_from_json.py msgid "heavy duty flashlight (on)" @@ -118855,6 +119452,44 @@ msgstr[1] "moldes de arena de fundición" msgid "A mold for casting molten metals into different shapes" msgstr "Un molde para fundir metales en diferentes formas" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "piedra de pulir" +msgstr[1] "piedras de pulir" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" +"Una piedra grande y natural con una superficie plana que se puede usar para " +"pulir." + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "piedra de amolar a pedal" +msgstr[1] "piedras de amolar a pedal" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" +"Una piedra de amolar circular que se acciona a pedal, útil para pulir metal." + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "espátula de acero" +msgstr[1] "espátulas de acero" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" +"Una herramienta de acero endurecido similar a un bastren pero para trabajar " +"metal." + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -119630,7 +120265,7 @@ msgid_plural "shears" msgstr[0] "tijera de esquilar" msgstr[1] "tijeras de esquilar" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "Este es un juego de tijeras diseñado para obtener lana de las ovejas." @@ -119641,7 +120276,7 @@ msgid_plural "electric shears" msgstr[0] "tijera de esquilar eléctrica" msgstr[1] "tijeras de esquilar eléctricas" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -119695,6 +120330,37 @@ msgstr "" "Úselo en un animal adecuado para capturarlo, úselo en una baldosa vacía para" " liberarlo." +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "terrario de vidrio" +msgstr[1] "terrarios de vidrio" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" +"Un recipiente de vidrio diseñado para contener plantas y/o insectos. Existen" +" en una gran variedad de tamaños." + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "lámpara de luciérnaga gigante de superviviente" +msgstr[1] "lámparas de luciérnaga gigante de superviviente" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" +"Algún superviviente emprendedor ha decidido convertir este terrario en una " +"fuente de luz, utilizando lo que parecen ser una luciérnaga gigante y " +"vegetación trífida." + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -120332,7 +120998,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "papel de filtro de calidad" msgstr[1] "papel de filtro de calidad" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -120349,7 +121015,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "papel de filtro cuantitativo" msgstr[1] "papel de filtro cuantitativo" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -120926,8 +121592,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "Biotecnología Mi-go" msgstr[1] "Biotecnología Mi-go" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -120935,8 +121601,8 @@ msgid_plural "%s (happy)" msgstr[0] "%s (feliz)" msgstr[1] "%s (feliz)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -120944,8 +121610,8 @@ msgid_plural "%s (focus)" msgstr[0] "%s (concentrado)" msgstr[1] "%s (concentrado)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -120953,8 +121619,8 @@ msgid_plural "%s (pain relief)" msgstr[0] " %s (alivio de dolor)" msgstr[1] "%s (alivio de dolor)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -120962,7 +121628,7 @@ msgid_plural "%s (wake up)" msgstr[0] "%s (despertar)" msgstr[1] "%s (despertar)" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "Una pieza de biotecnología mi-go." @@ -121454,7 +122120,7 @@ msgid "" "This is an unwieldy mop. Good for cleaning up spills. Use to mop up any " "'mess' you may have made." msgstr "" -"Es una fregona difícil de manejar. Útil para limpiar derrames líquidos. " +"Esta una fregona difícil de manejar. Útil para limpiar derrames líquidos. " "Úsala para limpiar cualquier charco que hayas hecho." #: lang/json/TOOL_from_json.py @@ -121478,7 +122144,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "retazos de ropa de algodón" msgstr[1] "retazos de ropa de algodón" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -121742,13 +122408,13 @@ msgid_plural "loose caltrops" msgstr[0] "abrojo metálico sueltos" msgstr[1] "abrojos metálicos sueltos" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "Desparramas los abrojos metálicos en el %s." -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -121764,13 +122430,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "abrojos de vidrio suelto" msgstr[1] "abrojos de vidrio suelto" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "Dispersas los abrojos de vidrio en el %s." -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -121879,8 +122545,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "wood axe" msgid_plural "wood axes" -msgstr[0] "hacha para leña" -msgstr[1] "hachas para leña" +msgstr[0] "hacha de madera" +msgstr[1] "hachas de madera" #. ~ Description for wood axe #: lang/json/TOOL_from_json.py @@ -122288,8 +122954,8 @@ msgid "" "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." msgstr "" -"Es una mezcladora portátil de cemento. Igual, es grande y pesada, pero puede" -" ser operada por una sola persona, y anda con baterías. También tiene un " +"Una mezcladora portátil de hormigón. Igual, es grande y pesada, pero puede " +"ser operada por una sola persona, y anda con baterías. También tiene un " "calentador incorporado." #: lang/json/TOOL_from_json.py @@ -122306,6 +122972,26 @@ msgstr "" "Esto es un taladro sin cable, alimentado con baterías, con una variedad de " "puntas para el taladro." +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "llave de impacto sin cables" +msgstr[1] "llaves de impacto sin cables" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" +"Esto es una llave de impacto con batería inalámbrica, diseñada para " +"proporcionar un alto par de torsión a través de un martillo giratorio " +"interno. Viene con un juego de llaves estándar y emite un fuerte sonido de " +"trinquete cuando funciona. Puedes utilizarla para girar tornillos grandes, o" +" incluso para cambiar una rueda de un vehículo." + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -122326,8 +123012,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "hacksaw" msgid_plural "hacksaws" -msgstr[0] "sierra de arco" -msgstr[1] "sierras de arco" +msgstr[0] "sierra para metales" +msgstr[1] "sierras para metales" #. ~ Description for hacksaw #: lang/json/TOOL_from_json.py @@ -122520,8 +123206,8 @@ msgid "" "This metallic tool is most often used to smooth concrete, or mortar, in " "construction projects." msgstr "" -"Esta herramienta metálica es utilizada comúnmente para alisar el cemento, o " -"la mezcla, en las obras." +"Esta herramienta metálica es utilizada comúnmente para alisar el hormigón, o" +" la mezcla, en las obras." #: lang/json/TOOL_from_json.py msgid "misc repair kit" @@ -122601,7 +123287,7 @@ msgstr[1] "brochas" #. ~ Description for paint brush #: lang/json/TOOL_from_json.py msgid "A wide brush, suitable for painting walls." -msgstr "Un pincel ancho, adecuado para pintar paredes." +msgstr "Un pincel ancho, adecuado para pintar muros." #: lang/json/TOOL_from_json.py msgid "pickaxe" @@ -122639,7 +123325,7 @@ msgid_plural "pliers" msgstr[0] "tenaza" msgstr[1] "tenazas" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " @@ -122649,6 +123335,25 @@ msgstr "" "mecánicos básicos. Para otras cosas más complejas vas a necesitar una llave " "francesa. " +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "pinza de presión" +msgstr[1] "pinzas de presión" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" +"Estos alicates tienen mandíbulas extra fuertes y un mecanismo ajustable para" +" sujetar cualquier objeto desafortunado que quede atrapado entre ellas. " +"Pueden agarrar y girar la cabeza de un tornillo bastante grande, o sujetar " +"dos piezas juntas temporalmente." + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -122712,6 +123417,40 @@ msgstr "" "Es un juego de destornilladores de varios tamaños y tipos de punta. Te " "garantiza tener la herramienta adecuada para un trabajo preciso." +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "juego de destornilladores de vaso" +msgstr[1] "juegos de destornilladores de vaso" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" +"Este es un destornillador de carraca con una colección de casquillos " +"hexagonales para girar pequeños tornillos o tuercas, incluyendo un par de " +"puntas de destornillador estándar." + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "juego de llaves de vaso" +msgstr[1] "juegos de llaves de vaso" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" +"Esto es una llave de carraca de mango grueso con un surtido de casquillos " +"intercambiables en tamaños de pernos hexagonales comunes. Puedes aflojar o " +"apretar pernos bastante grandes con esto, y el trinquete hace un sonido de " +"clic satisfactorio." + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -122827,8 +123566,8 @@ msgid "" "This large makeshift tool is used in smoothing concrete or mortar in " "construction projects. You could also use it as an improvised head-basher." msgstr "" -"Esta herramienta improvisada es usada para alisar el cemento o la mezcla en " -"las obras. También lo puedes usar para reventar algunas cabezas." +"Esta herramienta improvisada es usada para alisar el hormigón o la mezcla en" +" las obras. También lo puedes usar para reventar algunas cabezas." #: lang/json/TOOL_from_json.py msgid "wool staple" @@ -122866,12 +123605,29 @@ msgstr "" "para poder descuartizar cadáveres." #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" -msgstr[0] "llave inglesa" -msgstr[1] "llaves inglesas" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "llave pequeña ajustable" +msgstr[1] "llaves pequeñas ajustables" + +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" +"Esta llave inglesa ajustable es compacta, con un mango corto que cabe en la " +"palma de la mano. Puede utilizarse para girar tuercas o tornillos pequeños " +"de cabeza hexagonal." + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "llave ajustable" +msgstr[1] "llaves ajustables" -#. ~ Description for wrench +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " @@ -122880,6 +123636,24 @@ msgstr "" "Es una llave inglesa ajustable. Puede funcionar como una decente arma de " "cuerpo a cuerpo, y es utilizada en muchas tareas mecánicas." +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "llave grande ajustable" +msgstr[1] "llaves grandes ajustables" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" +"Esta llave de media luna ajustable es inusualmente grande, con un mango " +"largo y mandíbulas que se ensanchan más de dos pulgadas. Esto podría girar " +"fácilmente la mayoría de los tornillos, e incluso debería funcionar en las " +"tuercas de las ruedas." + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -123233,45 +124007,6 @@ msgstr "" "identificará como un amigo, y atacará a todos los enemigos con sus cañones " "láser giratorios." -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "mecha-gallina inactivo" -msgstr[1] "mecha-gallinas inactivos" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" -"La gallina caminante se pone de pie, se aleja de ti y comienza a " -"inspeccionar la zona." - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "El mecha-gallina zumba y te apunta directamente a ti. ¡Cubrete!" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" -"Esta es una gallina caminante inactiva. El uso de este artículo implica " -"colocarlo en el suelo, cargar la unidad con balas de 5,56 de fabrica y de " -"cartuchos de granadas de 40 mm de su inventario (si desea dividir su " -"munición, deje a un lado cualquier munición que NO quiera darle al robot) y " -"encenderlo. Si se reprograma y se recablea con éxito, la gallina caminante " -"te identificará como un amigo, deambulará o te seguirá y atacará a todos los" -" enemigos con un arma de fuego y un lanzagranadas incorporados." - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -123311,6 +124046,12 @@ msgstr "" "dron te identificará como un amigo, se desplazará o te seguirá y atacará a " "todos los enemigos con un arma de fuego y un lanzagranadas incorporados." +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "mecha-gallina inactivo" +msgstr[1] "mecha-gallinas inactivos" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -123579,8 +124320,8 @@ msgstr[1] "cazaratas inactivos" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" "Un pequeño dron hexápodo diseñado para contener pequeñas plagas, plegado en " @@ -123746,8 +124487,8 @@ msgid "" "conical area around you." msgstr "" "Una herramienta de imagen compacta, capaz de escanear y visualizar los " -"objetos que se esconden detrás de las paredes, los paneles de mantenimiento " -"y todo tipo de barreras visuales. Aunque normalmente se utiliza para " +"objetos que se esconden detrás de los muros, los paneles de mantenimiento y " +"todo tipo de barreras visuales. Aunque normalmente se utiliza para " "diagnosticar posibles fallos en los sistemas internos de las naves " "espaciales, la capacidad de mirar entre los obstáculos le otorga evidentes " "aplicaciones de vigilancia. Puede activarse para revelar una pequeña área " @@ -124118,7 +124859,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "377-UASTA (convertido en arma)" msgstr[1] "377-UASTA- (convertido en arma)" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -124628,7 +125369,7 @@ msgstr "" "estallidos y otros sonidos estáticos. ¡Rápido, aléjate de él antes de que " "atraiga enemigos hacia ti!" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -124694,7 +125435,7 @@ msgstr "" "Apenas está afilada y está construida de forma tosca, pero mantendrá a un " "enemigo fuera del alcance hasta que puedas encontrar algo mejor." -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -124719,7 +125460,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "CROWS II inactiva, ametralladora ligera" msgstr[1] "CROWS II inactiva, ametralladoras ligeras" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -125874,6 +126615,19 @@ msgstr "" "materiales más duros, y en los parques de bomberos muy bien dotados se " "prefiere." +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" +"Esta es una espada medieval clásica, con un tamaño intermedio entre la " +"espada de armas más ligera y las posteriores espadas de dos manos. Gracias " +"al misterioso metal plateado con el que se forjó, es más fuerte que el acero" +" templado y pesa bastante menos." + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -125933,6 +126687,39 @@ msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" "Este es un trozo de caramelo de roca dura. Se puede descomponer en azúcar." +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" +"La gallina caminante se pone de pie, se aleja de ti y comienza a " +"inspeccionar la zona." + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "El mecha-gallina zumba y te apunta directamente a ti. ¡Cubrete!" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" +"Esta es una gallina caminante inactiva. El uso de este artículo implica " +"colocarlo en el suelo, cargar la unidad con balas de 5,56 de fabrica y de " +"cartuchos de granadas de 40 mm de su inventario (si desea dividir su " +"munición, deje a un lado cualquier munición que NO quiera darle al robot) y " +"encenderlo. Si se reprograma y se recablea con éxito, la gallina caminante " +"te identificará como un amigo, deambulará o te seguirá y atacará a todos los" +" enemigos con un arma de fuego y un lanzagranadas incorporados." + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -126429,7 +127216,7 @@ msgstr "" #: lang/json/achievement_from_json.py lang/json/npc_from_json.py msgid "Lumberjack" -msgstr "Leñador/a" +msgstr "Leñador" #: lang/json/achievement_from_json.py msgid "What is a forest for a man with an axe?" @@ -126829,7 +127616,7 @@ msgstr "Más rápido que Tiburón." #: lang/json/achievement_from_json.py msgid "Do-It-Yourselfer" -msgstr "Hazlo tu mismo/a" +msgstr "Hazlo por ti mismo" #: lang/json/achievement_from_json.py msgid "Take this thing, put it in that thing, and voila." @@ -126873,8 +127660,8 @@ msgid "Fashion Designer" msgstr "Diseñador de Moda" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." -msgstr "Moda masculina, femenina y mutante por igual." +msgid "From catwalk to cataclysm." +msgstr "De la pasarela al cataclismo." #: lang/json/achievement_from_json.py msgid "Survivalist" @@ -127379,6 +128166,10 @@ msgstr "construyendo" msgid "mining" msgstr "minando" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "pasando la fregona" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "ordenando" @@ -127649,7 +128440,7 @@ msgstr "cortar el cable" #: lang/json/activity_type_from_json.py msgid "prying open" -msgstr "" +msgstr "abierto a la fuerza" #: lang/json/activity_type_from_json.py msgid "chopping down a tree" @@ -128263,19 +129054,17 @@ msgstr "" "cuando caminas." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "Placas de Aleación - Brazos" +msgid "Intradermal Alloy - Arms" +msgstr "Aleación Intradérmica - Brazos" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" -"La carne de sus brazos ha sido reemplazada quirúrgicamente por un " -"revestimiento de aleación. Proporciona una protección pasiva y puede ser " -"usada en conjunto con las artes marciales biónicas." +"Una malla de protección mejorada que ha sido entrelazada con la carne de tus" +" brazos y manos, protegiéndolos de los traumas físicos." #: lang/json/bionic_from_json.py msgid "Protective Lenses" @@ -128293,46 +129082,43 @@ msgstr "" "tu boca. Cuando lloras, tienes que escupir o tragarte tus lágrimas." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" -msgstr "Placas de Aleación - cabeza" +msgid "Intradermal Alloy - head" +msgstr "Aleación Intradérmica - Cabeza" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" -"La carne de su cabeza ha sido reemplazada quirúrgicamente por un " -"revestimiento de aleación, protegiendo tanto la cabeza como las regiones de " -"la mandíbula." +"Una malla de protección mejorada que ha sido entrelazada con la carne en tu " +"cabeza y mandíbula, protegiendo tu cráneo de los traumas físicos." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "Placas de Aleación - Piernas" +msgid "Intradermal Alloy - Legs" +msgstr "Aleación Intradérmica - Piernas" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" -"La carne de sus piernas ha sido reemplazada quirúrgicamente por un " -"revestimiento de aleación. Proporciona una protección pasiva y puede ser " -"usada en conjunto con las artes marciales biónicas." +"Una malla de protección mejorada que ha sido entrelazada con la carne de tus" +" piernas y pies, protegiéndolos de los traumas físicos." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" -msgstr "Placas de Aleación - Torso" +msgid "Intradermal Alloy - torso" +msgstr "Aleación Intradérmica - Torso" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" -"La carne de su torso ha sido reemplazada quirúrgicamente por una aleación, " -"protegiéndola de los traumas físicos." +"Una malla de protección mejorada que ha sido entrelazada con la carne de tu " +"torso, protegiéndolo de los traumas físicos." #: lang/json/bionic_from_json.py msgid "Battery System" @@ -128342,12 +129128,13 @@ msgstr "Sistema de Batería" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" -"Tienes un accesorio de drenaje de batería y, por lo tanto, puedes utilizar " -"la energía contenida en las baterías comunes. Pulsa 'E' para descargar la " -"carga de una batería. Se puede activar y desactivar a voluntad." +"Tienes un accesorio para drenar baterías, y por ello, puedes aprovechar la " +"energía que contiene las baterías normales y corrientes. Utiliza el menú " +"biónico para drenar la carga de una batería. Se puede activar y desactivar a" +" voluntad." #: lang/json/bionic_from_json.py msgid "Monomolecular Blade" @@ -129277,8 +130064,8 @@ msgid "" "but each tile tunneled through costs 250 bionic power." msgstr "" "Incrementa la longitud de onda de tu cuerpo, lo que te permite hacer un " -"túnel cuántico a través de paredes, reapareciendo del otro lado. El gasto de" -" energía mientras está encendido es mínimo, pero cada espacio atravesado " +"túnel cuántico a través de muros, reapareciendo del otro lado. El gasto de " +"energía mientras está encendido es mínimo, pero cada espacio atravesado " "gasta 250 unidades de energía biónica." #: lang/json/bionic_from_json.py @@ -129378,7 +130165,7 @@ msgid "" msgstr "" "Todo tu cuerpo puede resonar a una potencia muy alta, creando una onda de " "choque de corto alcance. Aunque no causará mucho daño a las criaturas, los " -"objetos sólidos como las paredes y las puertas se dañarán." +"objetos sólidos como las muros y las puertas se dañarán." #: lang/json/bionic_from_json.py msgid "Olfactory Mask" @@ -130702,8 +131489,8 @@ msgid "" "Must be between palisade walls to function, and at least one wall must have " "an adjacent rope & pulley system." msgstr "" -"Debe estar entre las paredes de la empalizada para funcionar, y al menos una" -" pared debe tener un sistema de cuerdas y poleas adyacentes." +"Debe estar entre los muros de la empalizada para funcionar, y al menos un " +"muro debe tener un sistema de cuerdas y poleas adyacentes." #: lang/json/construction_from_json.py msgid "Needs to be supported on both sides by fencing, walls, etc." @@ -130855,11 +131642,11 @@ msgstr "Banco" #: lang/json/construction_group_from_json.py msgid "Build Bookcase" -msgstr "Estantería" +msgstr "Estantería de Libros" #: lang/json/construction_group_from_json.py msgid "Build Brick Wall" -msgstr "Pared De Ladrillos" +msgstr "Muro De Ladrillos" #: lang/json/construction_group_from_json.py msgid "Build Brick Wall from Adobe" @@ -131075,7 +131862,7 @@ msgstr "Contruir un Taburete de Leño" #: lang/json/construction_group_from_json.py msgid "Build Log Wall" -msgstr "Pared de Leños" +msgstr "Muro de Leños" #: lang/json/construction_group_from_json.py msgid "Build Low End of a Concrete Ramp" @@ -131135,7 +131922,7 @@ msgstr "Techo de Metal" #: lang/json/construction_group_from_json.py msgid "Build Metal Wall" -msgstr "Pared de Metal" +msgstr "Muro de Metal" #: lang/json/construction_group_from_json.py msgid "Build Palisade Gate" @@ -131143,7 +131930,7 @@ msgstr "Puerta de Empalizada" #: lang/json/construction_group_from_json.py msgid "Build Palisade Wall" -msgstr "Pared de Empalizada" +msgstr "Muro de Empalizada" #: lang/json/construction_group_from_json.py msgid "Build Pile of Leaves" @@ -131187,7 +131974,7 @@ msgstr "Ventana de Cristal Cuádruple" #: lang/json/construction_group_from_json.py msgid "Build Rammed Earth Wall" -msgstr "Pared de Tierra Compactada" +msgstr "Muro de Tierra Compactada" #: lang/json/construction_group_from_json.py msgid "Build Reinforced Concrete Roof" @@ -131195,7 +131982,7 @@ msgstr "Techo de Hormigón Reforzado" #: lang/json/construction_group_from_json.py msgid "Build Reinforced Concrete Wall" -msgstr "Pared de Hormigón Reforzado" +msgstr "Muro de Hormigón Reforzado" #: lang/json/construction_group_from_json.py msgid "Build Reinforced Double Glazed Glass Window" @@ -131303,7 +132090,7 @@ msgstr "Cartel" #: lang/json/construction_group_from_json.py msgid "Build Simple Concrete Wall" -msgstr "Pared de Hormigón Simple" +msgstr "Muro de Hormigón Simple" #: lang/json/construction_group_from_json.py msgid "Build Single Glazed Glass Window" @@ -131347,7 +132134,7 @@ msgstr "Chimenea de Piedra" #: lang/json/construction_group_from_json.py msgid "Build Stone Wall" -msgstr "Pared de Piedra" +msgstr "Muro de Piedra" #: lang/json/construction_group_from_json.py msgid "Build Stool" @@ -131391,7 +132178,7 @@ msgstr "Pozo de Agua" #: lang/json/construction_group_from_json.py msgid "Build Wattle-and-Daub Wall" -msgstr "Pared de Bareque" +msgstr "Muro de Bareque" #: lang/json/construction_group_from_json.py msgid "Build Window" @@ -131411,7 +132198,7 @@ msgstr "Fogón de Leña" #: lang/json/construction_group_from_json.py msgid "Build Wood Wall" -msgstr "Pared de Madera" +msgstr "Muro de Madera" #: lang/json/construction_group_from_json.py msgid "Build Wooden Floor" @@ -131523,7 +132310,7 @@ msgstr "Extruir Enrejado de Resina" #: lang/json/construction_group_from_json.py msgid "Extrude Resin Wall" -msgstr "Extruir Pared de Resina" +msgstr "Extruir Muro de Resina" #: lang/json/construction_group_from_json.py msgid "Fill Pit With Dirt" @@ -131591,27 +132378,27 @@ msgstr "Pinta Pavimento de Amarillo" #: lang/json/construction_group_from_json.py msgid "Paint Wall Blue" -msgstr "Pintar Pared de Azul" +msgstr "Pintar Muro de Azul" #: lang/json/construction_group_from_json.py msgid "Paint Wall Green" -msgstr "Pintar Pared de Verde" +msgstr "Pintar Muro de Verde" #: lang/json/construction_group_from_json.py msgid "Paint Wall Purple" -msgstr "Pintar Pared de Púrpura" +msgstr "Pintar Muro de Púrpura" #: lang/json/construction_group_from_json.py msgid "Paint Wall Red" -msgstr "Pintar Pared de Rojo" +msgstr "Pintar Muro de Rojo" #: lang/json/construction_group_from_json.py msgid "Paint Wall White" -msgstr "Pintar Pared de Blanco" +msgstr "Pintar Muro de Blanco" #: lang/json/construction_group_from_json.py msgid "Paint Wall Yellow" -msgstr "Pintar Pared de Amarillo" +msgstr "Pintar Muro de Amarillo" #: lang/json/construction_group_from_json.py msgid "Place Forge" @@ -131647,11 +132434,11 @@ msgstr "Reforzar Ventana Entablada" #: lang/json/construction_group_from_json.py msgid "Reinforce Junk Metal Wall using bolts" -msgstr "Reforzar Pared de Chatarra usando pernos" +msgstr "Reforzar Muro de Chatarra usando pernos" #: lang/json/construction_group_from_json.py msgid "Reinforce Junk Metal Wall using spot-welds" -msgstr "Reforzar Pared de Chatarra usando soldaduras" +msgstr "Reforzar Muro de Chatarra usando soldaduras" #: lang/json/construction_group_from_json.py msgid "Reinforce Wood Door" @@ -131671,11 +132458,11 @@ msgstr "Quitar Cera de Suelo" #: lang/json/construction_group_from_json.py msgid "Repair Log Wall" -msgstr "Reparar Pared de Leños" +msgstr "Reparar Muro de Leños" #: lang/json/construction_group_from_json.py msgid "Repair Wattle-and-Daub Wall" -msgstr "Reparar Pared de Bareque" +msgstr "Reparar Muro de Bareque" #: lang/json/construction_group_from_json.py msgid "Repair Wood Door" @@ -131683,7 +132470,7 @@ msgstr "Reparar Puerta de Madera" #: lang/json/construction_group_from_json.py msgid "Repair Wood Wall" -msgstr "Reparar Pared de Madera" +msgstr "Reparar Muro de Madera" #: lang/json/construction_group_from_json.py msgid "Repair Wooden Staircase" @@ -131711,7 +132498,7 @@ msgstr "Quitar Pintura del Pavimento" #: lang/json/construction_group_from_json.py msgid "Take Paint Off Wall" -msgstr "Quitar Pintura de Pared" +msgstr "Quitar Pintura de Muro" #: lang/json/construction_group_from_json.py msgid "Tape Up Window" @@ -131763,11 +132550,11 @@ msgstr "Eliminar muro de madera" #: lang/json/construction_group_from_json.py msgid "Remove a wall" -msgstr "Eliminar una pared" +msgstr "Eliminar un muro" #: lang/json/construction_group_from_json.py msgid "Remove a rock wall" -msgstr "Eliminar una pared de piedra" +msgstr "Eliminar un muro de piedra" #: lang/json/construction_group_from_json.py msgid "Remove a segment of the road/sidewalk" @@ -131811,7 +132598,7 @@ msgstr "Cortar Tronco en Leños" #: lang/json/construction_group_from_json.py msgid "Makeshift Wall" -msgstr "Pared improvisada" +msgstr "Muro Improvisado" #: lang/json/construction_group_from_json.py msgid "Build Translocator Gate" @@ -132088,6 +132875,8 @@ msgid "" "While dreaming, you see yourself in a pond, your face has widened and is " "covered in mucus." msgstr "" +"Mientras sueñas, ves un estanque, tu cara se ha ensanchado y está cubierta " +"de mucosidad." #: lang/json/dream_from_json.py msgid "You have strange dreams of soaring through the sky." @@ -132296,11 +133085,11 @@ msgstr "Tienes un perturbador sueño vívido acerca de vivir como un lagarto." #: lang/json/dream_from_json.py msgid "You have a strange dream about being the Easter Bunny." -msgstr "" +msgstr "Tienes un extraño sueño sobre ser el Conejo de Pascua." #: lang/json/dream_from_json.py msgid "You have a comforting and warm dream of living as a rabbit." -msgstr "" +msgstr "Tienes un sueño reconfortante y cálido de vivir como un conejo." #: lang/json/dream_from_json.py msgid "" @@ -132345,21 +133134,23 @@ msgstr "" #: lang/json/dream_from_json.py msgid "You dream of leaping from the water to catch your prey." -msgstr "" +msgstr "Sueñas con saltar desde el agua para atrapar a tu presa." #: lang/json/dream_from_json.py msgid "You wake up with your legs pumping as you hop along in your sleep." -msgstr "" +msgstr "Te despiertas con las piernas bombeando saltando mientras duermes." #: lang/json/dream_from_json.py msgid "" "You dream of crawling along the world when you realize you can see three " "hundred and sixty degrees around yourself." msgstr "" +"Sueñas con arrastrarte por el mundo cuando te das cuenta de que puedes ver " +"trescientos sesenta grados a tu alrededor." #: lang/json/dream_from_json.py msgid "You dream of curling up inside a shell to sleep." -msgstr "" +msgstr "Sueñas con acurrucarte dentro de una concha para dormir." #: lang/json/dream_from_json.py msgid "You vividly dream of running with your pack, hunting a wild animal." @@ -132597,10 +133388,11 @@ msgstr "" #: lang/json/dream_from_json.py msgid "Will your burrow be warm enough for the family in winter?" msgstr "" +"¿Tu madriguera será lo suficientemente cálida para la familia en invierno?" #: lang/json/dream_from_json.py msgid "You dream of outrunning the apocalypse." -msgstr "" +msgstr "Sueñas con escapar del apocalipsis." #: lang/json/dream_from_json.py msgid "You have a comforting dream of swimming with a school of fish." @@ -132854,22 +133646,28 @@ msgid "" "There is so much that you never imagined, the slime, the legs, and eyestalks" " but the shell was worth it." msgstr "" +"Hay tantas cosas que no te imaginabas, la baba, las patas, y los ojos, pero " +"la concha valía la pena." #: lang/json/dream_from_json.py msgid "You'll always be home, once you take this last step." -msgstr "" +msgstr "Siempre estarás en casa, una vez que des este último paso." #: lang/json/dream_from_json.py msgid "" "You'd never considered that frogs were generalist predators before this " "point in your life…" msgstr "" +"Nunca habías considerado que las ranas eran depredadores generalistas antes " +"de este momento de tu vida..." #: lang/json/dream_from_json.py msgid "" "On land and in the water, you control all that you can reach, and your " "tongue has quite the reach." msgstr "" +"En la tierra y en el agua, controlas todo lo que puedes alcanzar, y tu " +"lengua tiene un gran alcance." #: lang/json/dream_from_json.py msgid "Your body flows slightly faster than you expected… oh, just a dream." @@ -132931,8 +133729,8 @@ msgid "" "You hear the sirens again, but this time you stay in your hole in the wall." " Nobody will think to look there!" msgstr "" -"Oyes las sirenas de nuevo, pero esta vez te quedas en tu agujero en la " -"pared. ¡Nadie pensará en mirar allí!" +"Oyes las sirenas de nuevo, pero esta vez te quedas en tu agujero en el muro." +" ¡Nadie pensará en mirar allí!" #: lang/json/dream_from_json.py msgid "We have been waiting a long time for a place such as this." @@ -134618,8 +135416,8 @@ msgstr "Tienes una herida infectada." #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." -msgstr "Notas tu herida por mordisco infectada." +msgid "Your wound feels infected." +msgstr "Tu herida parece infectada." #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus #. Filled'. @@ -137458,8 +138256,8 @@ msgstr[1] "fabricación habilidad nivel 7 ganado" #: lang/json/event_statistic_from_json.py msgid "food handling skill level 7 gained" msgid_plural "food handling skill level 7 gained" -msgstr[0] "alimentación habilidad nivel 7 ganado" -msgstr[1] "alimentación habilidad nivel 7 ganado" +msgstr[0] "alimentación nivel 7 ganado" +msgstr[1] "alimentación nivel 7 ganado" #: lang/json/event_statistic_from_json.py msgid "tailoring skill level 7 gained" @@ -139031,7 +139829,7 @@ msgstr "masa de hormigón celular" #: lang/json/field_type_from_json.py msgid "foamcrete half-wall" -msgstr "media pared de hormigón celular" +msgstr "medio muro de hormigón celular" #: lang/json/field_type_from_json.py msgid "crisp air" @@ -139329,7 +140127,7 @@ msgstr "" "Este enorme dispositivo se parece bastante a una impresora 3D, aparte de su " "tamaño industrial. Enormes bobinas de varios cables metálicos finos lo " "coronan y alimentan lo que parece ser una especie de boquilla, y enormes " -"cables eléctricos desaparecen en la pared detrás de él." +"cables eléctricos desaparecen en el muro detrás de él." #: lang/json/furniture_from_json.py msgid "circuit printer" @@ -139710,8 +140508,7 @@ msgstr "" "incalculable para cualquier superviviente." #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "¡porrazo!" @@ -139731,9 +140528,8 @@ msgstr "" "visibilidad. A pesar de su nombre, no logra mucho para detener a un vehículo" " en movimiento." -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "¡clonc!" @@ -139756,7 +140552,7 @@ msgstr "¡rrrip!" #: lang/json/furniture_from_json.py msgid "gravelbag wall" -msgstr "pared de sacos de grava" +msgstr "muro de sacos de grava" #. ~ Description for gravelbag wall #: lang/json/furniture_from_json.py @@ -139812,7 +140608,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "sandbag wall" -msgstr "pared de bolsas de arena" +msgstr "muro de bolsas de arena" #. ~ Description for sandbag wall #: lang/json/furniture_from_json.py @@ -139890,8 +140686,8 @@ msgstr "esposas" #: lang/json/furniture_from_json.py msgid "A pair of metal shackles with heavy chains mounted to a wall or floor." msgstr "" -"Un par de grilletes metálicos con pesadas cadenas montados en una pared o en" -" el suelo." +"Un par de grilletes metálicos con pesadas cadenas montados en un muro o en " +"el suelo." #: lang/json/furniture_from_json.py lang/json/terrain_from_json.py #: lang/json/terrain_from_json.py @@ -140353,8 +141149,7 @@ msgid "" "punched in the walls for air supply." msgstr "" "Un enorme barril de metal utilizado para contener de forma segura un fuego. " -"Tiene múltiples agujeros perforados en las paredes para el suministro de " -"aire." +"Tiene múltiples agujeros perforados en los muros para el suministro de aire." #. ~ Description for fire barrel (100L) #: lang/json/furniture_from_json.py @@ -140363,8 +141158,7 @@ msgid "" "punched in the walls for air supply." msgstr "" "Un gran barril de metal utilizado para contener de forma segura un fuego. " -"Tiene múltiples agujeros perforados en las paredes para el suministro de " -"aire." +"Tiene múltiples agujeros perforados en los muros para el suministro de aire." #: lang/json/furniture_from_json.py msgid "fire ring" @@ -140537,7 +141331,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "¡crunch!" @@ -142071,7 +142865,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "bookcase" -msgstr "Estantería" +msgstr "estantería de libros" #. ~ Description for bookcase #: lang/json/furniture_from_json.py @@ -142234,8 +143028,8 @@ msgid "" "lock, this is designed to securely store firearms, weapon mods, and " "ammunition." msgstr "" -"Un contenedor grande y pesado con gruesas paredes metálicas y una cerradura " -"de combinación giratoria, diseñado para almacenar de forma segura armas de " +"Un contenedor grande y pesado con gruesos muros metálicos y una cerradura de" +" combinación giratoria, diseñado para almacenar de forma segura armas de " "fuego, mods de armas y munición." #: lang/json/furniture_from_json.py @@ -142258,7 +143052,7 @@ msgid "" "ammunition. If you had something to pick its lock with, you could probably " "open it." msgstr "" -"Este es un contenedor grande y pesado con gruesas paredes metálicas y una " +"Este es un contenedor grande y pesado con gruesos muros metálicos y una " "cerradura de combinación giratoria, diseñado para almacenar de forma segura " "armas de fuego, modificaciones de armas y munición. Si tuvieras algo con lo " "que forzar su cerradura, probablemente podrías abrirlo." @@ -142290,7 +143084,7 @@ msgid "" "ammunition. If you had some way of hacking into it, you could probably " "crack it open." msgstr "" -"Se trata de un contenedor grande y pesado con gruesas paredes de metal y un " +"Se trata de un contenedor grande y pesado con gruesos muros de metal y un " "sistema de cierre electrónico, diseñado para almacenar de forma segura armas" " de fuego, modificaciones de armas y munición. Si tuvieras alguna forma de " "hackearlo, probablemente podrías abrirlo." @@ -142778,7 +143572,7 @@ msgstr "mostrador" #. ~ Description for counter #: lang/json/furniture_from_json.py msgid "Affixed to the wall or found in kitchens or stores." -msgstr "Fijado a la pared o encontrado en las cocinas o en las tiendas." +msgstr "Fijado a un muro o encontrado en las cocinas o en las tiendas." #: lang/json/furniture_from_json.py msgid "cupboard" @@ -142932,7 +143726,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "cardboard wall" -msgstr "pared de cartón" +msgstr "muro de cartón" #. ~ Description for cardboard wall #: lang/json/furniture_from_json.py @@ -142941,7 +143735,7 @@ msgid "" "and stacked together like bricks to form a wall." msgstr "" "Esta es una pila de cajas de cartón que han sido llenadas con trapos y " -"basura y apiladas como ladrillos para formar una pared." +"basura y apiladas como ladrillos para formar un muro." #: lang/json/furniture_from_json.py msgid "beaded curtain" @@ -142988,12 +143782,12 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "canvas wall" -msgstr "pared de tela" +msgstr "muro de tela" #. ~ Description for canvas wall #: lang/json/furniture_from_json.py msgid "A wall made of stretched, waterproof cloth." -msgstr "Una pared hecha de tela estirada e impermeable." +msgstr "Un muro hecho de tela estirada e impermeable." #: lang/json/furniture_from_json.py lang/json/terrain_from_json.py msgid "slap!" @@ -143002,7 +143796,7 @@ msgstr "¡slap!" #. ~ Description for canvas wall #: lang/json/furniture_from_json.py msgid "A wall made of stretched, heavy-duty, waterproof cloth." -msgstr "Una pared hecha de tela estirada, resistente e impermeable." +msgstr "Un muro hecho de tela estirada, resistente e impermeable." #: lang/json/furniture_from_json.py msgid "canvas flap" @@ -143057,12 +143851,12 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "animalskin wall" -msgstr "pared de piel de animal" +msgstr "muro de piel de animal" #. ~ Description for animalskin wall #: lang/json/furniture_from_json.py msgid "Wall made out of animal skin. Either an amazing or horrifying sight." -msgstr "Pared hecha de piel de animal. Es una vista asombrosa u horrorosa." +msgstr "Muro hecho de piel de animal. Es una vista asombrosa u horrorosa." #: lang/json/furniture_from_json.py msgid "animalskin flap" @@ -143272,7 +144066,8 @@ msgstr "" "ver el contenido y realizar cualquier función permitida. Incluso podría ser " "posible hackearlo, si tienes las habilidades." -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "forja" @@ -143424,6 +144219,25 @@ msgstr "" "hasta la carpintería doméstica, necesita extraer energía de un SEU para " "funcionar." +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "terrario de luciérnaga" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" +"Mientras muchos supervivientes se enfocaron en intentar recuperar las luces " +"eléctricas, quien sea que vivía aquí aparentemente decidió hacer uso de los " +"cambios que trajo el cataclismo para producir luz. Este vivero contiene " +"tierra, plantas extrañas que no reconoces y, lo que es más impresionante, " +"una luciérnaga mutante gigante." + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -144040,7 +144854,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "military SICC master computing array" -msgstr "array de computación maestra SICC militar" +msgstr "matriz de computación maestra SICC militar" #. ~ Description for military SICC master computing array #: lang/json/furniture_from_json.py @@ -144058,7 +144872,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "sabotaged military SICC master computing array" -msgstr "array de computación maestra SICC militar saboteada" +msgstr "matriz de computación maestra SICC militar saboteada" #. ~ Description for sabotaged military SICC master computing array #: lang/json/furniture_from_json.py @@ -144129,7 +144943,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "military SICC heat dissipation array" -msgstr "array de disipación de calor SICC militar" +msgstr "matriz de disipación de calor SICC militar" #. ~ Description for military SICC heat dissipation array #: lang/json/furniture_from_json.py @@ -144194,7 +145008,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "DIRT scanner array" -msgstr "array de escáner DIRT" +msgstr "matriz de escáner DIRT" #. ~ Description for DIRT scanner array #: lang/json/furniture_from_json.py @@ -144691,17 +145505,17 @@ msgstr "Tiras la palanca..." #. ~ 'close' action message of some gate object. #: lang/json/gates_from_json.py msgid "The bookcase slides closed." -msgstr "La estantería se desliza y se cierra." +msgstr "La estantería de libros se desliza y se cierra." #. ~ 'fail' action message of some gate object. #: lang/json/gates_from_json.py msgid "The bookcase can't be closed!" -msgstr "¡No se puede cerrar la estanteria!" +msgstr "¡No se puede cerrar la estanteria de libros!" #. ~ 'open' action message of some gate object. #: lang/json/gates_from_json.py msgid "The bookcase slides open!" -msgstr "¡La estantería se abre!" +msgstr "¡La estantería de libros se abre!" #. ~ 'pull' action message of some gate object. #: lang/json/gates_from_json.py @@ -144711,7 +145525,7 @@ msgstr "Sacas un libro de aspecto extraño..." #. ~ 'close' action message of some gate object. #: lang/json/gates_from_json.py msgid "The wall slides closed." -msgstr "La pared se desliza y se cierra." +msgstr "El muro se desliza y se cierra." #. ~ 'fail' action message of some gate object. #: lang/json/gates_from_json.py @@ -144721,7 +145535,7 @@ msgstr "¡El muro corredizo no se puede cerrar!" #. ~ 'open' action message of some gate object. #: lang/json/gates_from_json.py msgid "The wall slides open!" -msgstr "¡La pared se desliza y se abre!" +msgstr "¡El muro se desliza y se abre!" #. ~ 'pull' action message of some gate object. #: lang/json/gates_from_json.py @@ -144741,12 +145555,12 @@ msgstr "Accionas el mecanismo..." #. ~ 'close' action message of some gate object. #: lang/json/gates_from_json.py msgid "The glass wall slides closed." -msgstr "La pared de cristal se desliza cerrada." +msgstr "El muro de cristal se desliza cerrada." #. ~ 'fail' action message of some gate object. #: lang/json/gates_from_json.py msgid "The glass wall can't be closed!" -msgstr "¡La pared de cristal no se puede cerrar!" +msgstr "¡El muro de cristal no se puede cerrar!" #. ~ 'open' action message of some gate object. #: lang/json/gates_from_json.py @@ -145850,8 +146664,8 @@ msgstr[1] "Remington ACRs" #: lang/json/gun_from_json.py msgid "M16 firing port gun" msgid_plural "M16 firing port guns" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "M16 de tronera" +msgstr[1] "M16 de tronera" #: lang/json/gun_from_json.py msgid "" @@ -145860,6 +146674,10 @@ msgid "" "screw into an armored vehicle's firing ports. It is chambered in 5.56x45mm " "and accepts STANAG magazines." msgstr "" +"La M16 de tronera es un rifle M16 modificado para disparar con un diseño de " +"cerrojo abierto a velocidades absurdas, sin miras. Tiene un guardamano con " +"rosca para ajustarse en las troneras de un vehículo. Tiene calibre 5.56x45mm" +" y puede utilizar cargadores STANAG." #: lang/json/gun_from_json.py msgid "M231 port firing weapon" @@ -145877,6 +146695,13 @@ msgid "" "firing port if you were so inclined. The fire selector says only 'SAFE' and" " 'AUTO'. You can't help but wonder which one is preferable." msgstr "" +"El M231 PFW es una adaptación del rifle de asalto M16, diseñado para ser " +"utilizado en la tronera del vehículo de infantería M2 Bradley. No tiene " +"culata ni mira frontal con poste y el guardamanos liso delantero no hace " +"nada para protegerte del cañón incandescente, haciéndola un poco menos " +"ergonómica. Podrías ajustarla en una tronera si quieres. El selector de " +"disparo dice solamente 'SEGURO' y 'AUTO'. No puedes evitar preguntarte cuál " +"será preferible." #: lang/json/gun_from_json.py msgid "OA-93" @@ -146457,21 +147282,21 @@ msgstr "" "igual vas a encontrarle utilidad a esta pequeña pistola." #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" -msgstr[0] "Kel-Tec P32" -msgstr[1] "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" +msgstr[0] "Kel-Tec P-32" +msgstr[1] "Kel-Tecs P-32" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" -"Uno de los diseños más antiguos de Kel-tec, el P32 es una opción popular " -"para el ocultamiento profundo y el uso de respaldo. A pesar de su peso " -"extremadamente ligero y su pequeño tamaño, su cámara de .32 ACP permite un " -"buen manejo y control de retroceso." +"Uno de los diseños más antiguos de Kel-Tec, el P-32 es una opción popular " +"como arma oculta y uso de apoyo. A pesar de ser extremadamente ligera y " +"pequeña, tiene un calibre .32 ACP que hace fácil de manejar y controlar su " +"retroceso." #: lang/json/gun_from_json.py msgid "SIG P226" @@ -146637,22 +147462,22 @@ msgstr "" "absurda velocidad de disparo que va de 1200 a 1400 disparos por minuto." #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" -msgstr[0] "Kel-Tec P3AT" -msgstr[1] "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" +msgstr[0] "Kel-Tec P-3AT" +msgstr[1] "Kel-Tecs P-3AT" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" -"Esencialmente una Kel-tec P32 ligeramente escalada en .380 ACP, la siempre " -"popular P3AT ofrece una mejor balística en un paquete pequeño y ligero que " -"se puede ocultar. El manejo deja algo que desear debido a un retroceso más " -"rápido y a unos controles más reducidos." +"Esencialmente una Kel-tec P-32 ligeramente escalada en .380 ACP, la popular " +"P3AT ofrece una mejor balística en un paquete pequeño, ligero y ocultable. " +"El manejo deja algo que desear debido a un retroceso más rápido y a unos " +"controles más reducidos." #: lang/json/gun_from_json.py msgid "FN 1910 .380" @@ -147739,7 +148564,7 @@ msgid "" "design make it impossible to use unless deployed or mounted to a vehicle." msgstr "" "Una ametralladora pesada usada por el ejército de los EE.UU. desde su inicio" -" hasta el cataclismo, e incluso raramente por los sobrevivientes del " +" hasta el cataclismo, e incluso raramente por los supervivientes del " "cataclismo. Su enorme tamaño y diseño la hacen imposible de usar a menos que" " sea desplegada o montada en un vehículo." @@ -147756,10 +148581,10 @@ msgid "" "belt fed mechanism has been modified into a much smaller single round " "chamber." msgstr "" -"Es una modificación del enorme M2 Browning, un rifle reducido al mínimo y " -"alterado para ser disparado sin montar. El disparo en ráfaga ha sido " -"desactivado, y el mecanismo de alimentación con cinta fue modificado para " -"tener una cámara pequeña de una sola bala." +"Modificación del enorme M2 Browning, un rifle reducido al mínimo y alterado " +"para ser disparado sin montar. El disparo en ráfaga ha sido desactivado, y " +"el mecanismo de alimentación con cinta fue modificado para tener una cámara " +"pequeña de una sola bala." #: lang/json/gun_from_json.py src/item_factory.cpp msgid "manual" @@ -147864,18 +148689,18 @@ msgstr "" "AK con el cartucho de alta velocidad ligero de 5.45x39mm." #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" -msgstr[0] "FN Five-Seven" -msgstr[1] "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" +msgstr[0] "FN Five-seveN" +msgstr[1] "FN Five-seveNs" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" -"Diseñada para trabajar con la bala 5.7x28mm de FN, la Five-Seven es una " +"Diseñada para trabajar con la bala 5.7x28mm de FN, la Five-seveN es una " "pistola ligera con muy buena capacidad, y buen desempeño contra oponentes " "con armadura." @@ -150691,6 +151516,22 @@ msgid_plural "acid dart guns" msgstr[0] "pistola de dardos de ácido" msgstr[1] "pistolas de dardos de ácido" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "Rifle de Batalla 68 PA md. de Rubik" +msgstr[1] "Rifles de Batalla 68 PA md. de Rubik" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" +"El arma más popular que utilizaba el cartucho de 12,3ln era, por supuesto, la PA md. 71. Su predecesor, el md. 68, fue visto por muchos como una especie de fracaso: aunque era fiable y potente, era demasiado pesado para ser utilizado como una buena arma de infantería, y no lo suficientemente pesada para ser una buena arma de apoyo. Sin embargo, se fabricó lo suficiente como para que, durante el apocalipsis zombi, ganara una gran popularidad como arma ligera de emplazamiento que utilizaba munición fácilmente disponible. Servía perfectamente a los propósitos de los Exodii, a quienes les preocupaba mucho menos su falta de manejo.\n" +"\n" +"Este rifle en particular ha sido pintado de un color rosa empolvado y tiene un dibujo de una anguila sonriente que se retuerce a lo largo del cañón." + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -153823,13 +154664,14 @@ msgstr[1] "bípodes" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" -"Los bípodes se utilizan comúnmente en los fusiles y ametralladoras para " -"proporcionar un reposo hacia adelante y reducir el movimiento. A pesar de " -"que mejoran en gran medida la manipulación del retroceso son utilizables " -"sólo en ciertas superficies y son lentos para equipar." +"Los bípodes se utilizan habitualmente en rifles y ametralladoras para " +"proporcionar un apoyo delantero y reducir el movimiento. Aunque mejoran en " +"gran medida el manejo del retroceso, sólo son utilizables en ciertas " +"superficies (o desde la posición boca abajo), y son lentos de equipar." #: lang/json/gunmod_from_json.py msgid "modified bipod" @@ -153840,16 +154682,18 @@ msgstr[1] "bípodes modificados" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" "Los bípodes se utilizan comúnmente en los rifles y las ametralladoras para " "proporcionar un descanso delantero y reducir el movimiento. Aunque mejoran " "enormemente el manejo del retroceso, sólo son utilizables en ciertas " "superficies y son lentos de equipar. Este fue modificado y personalizado " -"para montarlo en casi cualquier arma, si así lo desea." +"para montarlo en casi cualquier arma, si así lo deseas. Este ha sido " +"modificado y personalizado para ser montado en casi cualquier arma, si así " +"lo quieres." #: lang/json/gunmod_from_json.py msgid "combination gun shotgun" @@ -154472,22 +155316,25 @@ msgstr "" " su arma, reemplazando las miras de hierro. Aumenta la precisión y el peso." #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" -msgstr "Destripás y fileteás el pescado" +msgid "You gut and fillet the fish." +msgstr "Destripas y fileteas el pescado" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." msgstr "" -"Se abre cuidadosamente el exoesqueleto para llegar a la carne que está " -"debajo..." +"Rompes cuidadosamente su exoesqueleto para llegar a la carne de adentro." + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." +msgstr "Abres su duro caparazón para llegar a la carne que hay debajo." #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" -"Buscas cualquier pieza biónica rescatable que pueda haber en este " -"experimento fallido" +"Buscas cualquier hardware rescatable en lo que queda de este experimento " +"fallido." #: lang/json/harvest_from_json.py msgid "" @@ -157038,7 +157885,7 @@ msgstr "Encender rápido un fuego" #: lang/json/item_action_from_json.py msgid "Pry crate, window, door or nails" -msgstr "" +msgstr "Apalancar caja, ventana, puerta o clavos" #: lang/json/item_action_from_json.py msgid "Pick a lock" @@ -157118,7 +157965,7 @@ msgstr "Tomar anticonvulsivo" #: lang/json/item_action_from_json.py msgid "Cut a log into planks" -msgstr "Cortar leños en tablones" +msgstr "Cortar leño en tablones" #: lang/json/item_action_from_json.py msgid "Remove tool mods" @@ -157339,7 +158186,7 @@ msgstr "Meditar" #: lang/json/item_action_from_json.py msgid "Mop" -msgstr "Fregar" +msgstr "Fregona" #: lang/json/item_action_from_json.py msgid "Play music" @@ -157702,6 +158549,12 @@ msgstr "" "Como arma, este objeto está bien hecho y resistirá el " "castigo del combate." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" +"Has marcado este artículo para que no se muestre una imagen cuando se use." + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -158717,6 +159570,15 @@ msgstr "Esto tiene una superficie plana. Sería un buen lugar para comer." msgid "You can craft here." msgstr "Puedes fabricar aquí" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" +"Quema gasoil o combustible JP8 del tanque del vehículo. También puede quemar" +" biodiésel o aceite de lámpara, aunque es menos eficiente." + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "Desplazarse arriba" @@ -158885,6 +159747,10 @@ msgstr "Desactivar el panel" msgid "Change side armor is worn on" msgstr "Cambiar lado donde está la armadura" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "Alternar visibilidad de armadura en imagen del personaje" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "Asignar invlets a armadura" @@ -159998,6 +160864,10 @@ msgstr "Mover cursor arriba" msgid "Move cursor down" msgstr "Mover cursor abajo" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "Alternar imagen" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "Salir de pantalla de atajos de teclado" @@ -160198,6 +161068,20 @@ msgstr "Sí" msgid "No" msgstr "No" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "Con amigos" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "Solo yo" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "Cancelar" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "Salir" @@ -161773,14 +162657,15 @@ msgstr "" "Es un cargador estándar de 20 balas para el Skorpion Vz. 61, de .32 ACP." #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" -msgstr[0] "P32 cargador de 7 balas" -msgstr[1] "P32 cargadores de 7 balas" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" +msgstr[0] "cargador de 7 balas P-32" +msgstr[1] "cargadores de 7 balas P-32" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." -msgstr "Un cargador de caja de acero de 7 rondas para el Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." +msgstr "" +"Un cargador de caja de acero estándar de 7 balas para el Kel-Tec P-32." #: lang/json/magazine_from_json.py msgid "P226 .357 SIG 12-round magazine" @@ -161850,15 +162735,15 @@ msgstr "" "Special y recargar rápidamente un revólver compatible." #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" -msgstr[0] "P3AT cargador de 6 balas" -msgstr[1] "P3AT cargadores de 6 balas" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" +msgstr[0] "cargador de 6 balas P-3AT" +msgstr[1] "cargadores de 6 balas P-3AT" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" -"Un cargador estándar de caja de acero de 6 rondas para el Kel-Tec P3AT." +"Un cargador de caja de acero estándar de 6 balas para el Kel-Tec P-3AT." #: lang/json/magazine_from_json.py msgid "FN 1910 6-round magazine" @@ -162544,14 +163429,14 @@ msgstr "" "diseñado originalmente para la ametralladora ligera RPK-74." #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" -msgstr[0] "Five-Seven cargador de 20 balas" -msgstr[1] "Five-Seven cargadores de 20 balas" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" +msgstr[0] "cargador de 20 balas Five-seveN" +msgstr[1] "cargadores de 20 balas Five-seveN" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." -msgstr "Es un cargador de capacidad estándar para usar en el FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." +msgstr "Uun cargador de capacidad estándar para usar en el FN Five-seveN." #: lang/json/magazine_from_json.py msgid "P90 50-round magazine" @@ -165104,12 +165989,12 @@ msgstr "Tuberias y bombas de alcantarillado." #: lang/json/map_extra_from_json.py msgid "Prison Van" -msgstr "" +msgstr "Furgoneta de Prisioneros" #. ~ Description for Prison Van #: lang/json/map_extra_from_json.py msgid "A violent escape." -msgstr "" +msgstr "Una fuga violenta." #: lang/json/map_extra_from_json.py msgid "Wraitheon Droneswarm" @@ -166283,6 +167168,16 @@ msgstr " Sendero" msgid "PLEASE No fish cleaning or dish washing." msgstr "POR FAVOR No limpies el pescado o ni laves los platos." +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "Comerciantes Vienen Bien Acompañados" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "Entrar Lado el Otro" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -166720,12 +167615,12 @@ msgstr "Aikido" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" -"El aikido es un arte marcial japonés centrado en la defensa personal, al " -"tiempo que minimiza las lesiones al atacante. Utiliza lanzamientos " -"defensivos y desarma al rival, pero carece de técnicas ofensivas." +"El aikido es un arte marcial japonés centrado en la defensa personal, " +"minimizando las lesiones del atacante. Utiliza lanzamientos y desarmes " +"defensivos, pero sus técnicas carecen de poder ofensivo." #. ~ initiate message for martial art '{'str': 'Aikido'}' #: lang/json/martial_art_from_json.py @@ -166748,11 +167643,13 @@ msgstr "Postura de Aikido" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" -"Al ignorar la ofensiva a favor de la autodefensa, eres mejor en la protección.\n" +"Al despreciar la ofensiva en favor de la autodefensa, eres mejor en la protección.\n" "\n" -"Daño bloqueado reducido en un 100%% de Destreza." +"El daño bloqueado se reduce en un 100% de la Destreza, +2 Eficacia de Bloqueo.\n" +"+1.0 habilidad de Esquivar." #: lang/json/martial_art_from_json.py msgid "Intermediate Aikido" @@ -166765,13 +167662,13 @@ msgstr "Aikido intermedio" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" "Un practicante de aikido intermedio puede protegerse contra múltiples oponentes.\n" "\n" -"Daño bloqueado reducido en un 100%% de Destreza.\n" -"+1 intentos de Bloqueo, +1 intentos de Esquivar." +"El daño por bloqueo se reduce en un 100% de la destreza, +1 Eficacia de Bloqueo.\n" +"+1 intentos de Bloqueo, +1 intentos de Esquiva." #: lang/json/martial_art_from_json.py msgid "Advanced Aikido" @@ -166782,11 +167679,49 @@ msgstr "Aikido avanzado" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" -"Un practicante de aikido avanzado puede protegerse contra aún más oponentes de lo normal.\n" +"Un practicante de aikido avanzado puede protegerse contra más oponentes de lo normal.\n" +"\n" +"+1 Eficacia de bloqueo.\n" +"+1 intentos de Bloqueo, +1 intentos de Esquiva." + +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "Esquiva Fluida" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" +"Después de esquivar sin esfuerzo, te preparas para contrarrestar a tu enemigo.\n" +"\n" +"-10% de coste de movimiento.\n" +"Dura 1 turno." + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "Bloqueo Fluido" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" +"Después de un bloque sin esfuerzo, te preparas para contrarrestar a tu enemigo.\n" "\n" -"+1 intentos de bloqueo, +1 intentos de esquivar." +"-10% de coste de movimiento.\n" +"Dura 1 turno." #: lang/json/martial_art_from_json.py msgid "Boxing" @@ -166979,14 +167914,14 @@ msgstr "Capoeira Tempo" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." msgstr "" -"No has fallado, es sólo parte del baile y ¡la mejor parte está a punto de empezar!\n" +"Golpear o fallar, ¡es solo parte de la danza! ¡Y la mejor parte está por empezar!\n" "\n" -"+15% de daño por golpe.\n" +"+15% daño Impacto.\n" "Dura 2 turnos. Se acumula hasta 3 veces." #: lang/json/martial_art_from_json.py @@ -166998,12 +167933,13 @@ msgstr "Kung Fu de la Grulla" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" -"Uno de los cinco estilos de animales Shaolin. La Grulla utiliza intrincadas " -"técnicas de mano y esquivas de salto. La destreza determina su daño, en " -"lugar de la fuerza; también recibe un movimiento de bonificación de esquivar" -" o esquivar un ataque." +"Uno de los cinco estilos animales de Shaolin. La Grulla utiliza intrincadas " +"técnicas de mano y esquivas con salto. La destreza determina su daño, en " +"lugar de la fuerza; tienes una mayor probabilidad de esquivar y hacerlo " +"desbloquea técnicas poderosas durante un tiempo limitado." #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -167036,22 +167972,20 @@ msgstr "" "El daño de los golpes aumenta en un 75% de la Destreza pero disminuye en un 75% de la Fuerza." #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" -msgstr "Vuelo de Crane" +msgid "Crane's Stance" +msgstr "Posición de la Grulla" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" -"Al igual que un pájaro, te levantas al aire para evitar el peligro.\n" +"Al igual que la bella grulla, eres muy hábil para esquivar el peligro.\n" "\n" -"Habilidad de esquivar +1.0.\n" -"Dura 2 vueltas." +"+2,0 habilidad de Esquivar." #: lang/json/martial_art_from_json.py msgid "Crane's Grace" @@ -167061,15 +167995,33 @@ msgstr "Gracia de la Grulla" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." msgstr "" -"Al igual que la grulla, eres rápido para evitar el peligro.\n" +"Los maestros del estilo Grulla pueden esquivar a varios enemigos con facilidad.\n" "\n" -"+1 Intentos de esquivar, +1.0 habilidad de esquivar.\n" -"Dura 2 turnos." +"+2 intentos de Esquivar" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "Vuelo de Crane" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." +msgstr "" +"Al igual que la grúlla, eres rápido en evitar el peligro y contraatacar.\n" +"\n" +"+1 Precisión, +1.0 habilidad de Esquivar.\n" +"Activa las técnicas \"Patada de grúlla\" y \"Golpe de grúlla\".\n" +"Dura 3 turnos." #: lang/json/martial_art_from_json.py msgid "Dragon Kung Fu" @@ -167079,14 +168031,16 @@ msgstr "Kung Fu del Dragón" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" -"Uno de los cinco estilos de animales Shaolin. El Dragón usa movimientos " -"fluidos y golpes fuertes. La inteligencia mejora su precisión en lugar de la" -" destreza. Sus ataques conducen a contraataques que incapacitan a sus " -"oponentes y los preparan para un poderoso movimiento final." +"Uno de los cinco estilos animales Shaolin. El Dragón utiliza movimientos " +"fluidos y golpes fuertes. La Inteligencia mejora tu precisión y el daño en " +"lugar de la Destreza y la Fuerza. Esquivar y bloquear incrementa tu daño. " +"Las pausas incrementan tu defensa. Puede realizar poderosos golpes contra " +"oponentes en el suelo." #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -167100,43 +168054,67 @@ msgid "%s assumes a dragon-like stance." msgstr "%s adopta la postura del dragón." #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" -msgstr "Vuelo del Dragón" +msgid "Dragon's Knowledge" +msgstr "Conocimiento de Dragon" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" -"La vida y el combate son un círculo. Un ataque lleva a una contra y a un ataque una vez más. Busca completar este círculo.\n" +"Planificas tu ataque con mucha antelación confiando en tu intuición en lugar de en tu velocidad para golpear de forma certera.\n" +"La Inteligencia aumenta la Precisión y el daño cuerpo a cuerpo en lugar de la Destreza y la Fuerza.\n" "\n" -"+1 Exactitud, +2 golpe de daño.\n" -"Habilita \"Bloqueo del vórtice del dragón\" y \"Esquivar el ala del dragón\"\n" -"Dura un turno." +"La precisión aumenta un 25% de la Inteligencia pero disminuye un 25% de la Destreza. El daño de Impacto aumenta en un 75% de la Inteligencia pero disminuye en un 75% de la Fuerza." #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" -msgstr "Conocimiento de Dragon" +msgid "Dragon Wing" +msgstr "Ala de Dragón" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"\n" +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" +"La vida y el combate son un círculo. Un ataque lleva a una contraataque y este a un ataque de nuevo. Buscas completar este bucle.\n" +"\n" +"+10% de daño por golpe.\n" +"Dura 3 turnos." + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "Poder de Dragón" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." msgstr "" -"Planificas tu ataque con mucha antelación confiando en tu intuición en lugar de en tu velocidad para golpear con acierto.\n" -"La Inteligencia aumenta la Precisión en lugar de la Destreza.\n" +"Te tomas un momento para reflexionar sobre las batallas pasadas y futuras. Esta visión te protegerá de futuros daños.\n" "\n" -"La Precisión aumenta un 25% de la Inteligencia pero disminuye un 25% de la Destreza." +"+2 Efectividad de Bloqueo, el daño Bloqueado se reduce en un +100% de Inteligencia, +1.0 habilidad de Esquivar.\n" +"Dura 2 turnos." + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" +msgstr "Vórtice de Dragón" #: lang/json/martial_art_from_json.py msgid "Eskrima" @@ -167244,6 +168222,25 @@ msgstr "" "\n" "El daño bloqueado se reduce en un 50% de Destreza." +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "Tiempo de Contra" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" +"Simulas un ataque y te preparás para desatar un Ataque Compuesto.\n" +"\n" +"+2 Efectividad de Bloqueo.\n" +"Activa la técnica \"Ataque Compuesto\".\n" +"Dura 2 turnos." + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "Parada" @@ -167315,11 +168312,11 @@ msgstr "Mantente firme" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" -"Eres un hombre fuerte y no cederás ante ninguna amenaza.\n" +"Eres fuerte y no te rendirás ante ninguna amenaza.\n" "\n" -"+2 Intentos de Bloqueo, -1.0 Habilidad de Esquiva, daño bloqueado reducido por 50% de Fuerza." +"+2 Efectividad de Bloqueo, +1 intentos de Bloqueo, -1.0 a Esquivar, daño bloqueado reducido en 50% de tu Fuerza." #: lang/json/martial_art_from_json.py msgid "Tactical Retreat" @@ -167332,13 +168329,15 @@ msgstr "Retirada Táctica" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" -"Te has movido y has anulado los efectos de Mantente Firme.\n" +"¡Te mueves y anulas los efectos de Mantente Firme!\n" "\n" -"-2 intentos de Bloqueo, +1.0 habilidad de Esquivar, el daño bloqueado aumenta en un 50% de la Fuerza.\n" -"Dura 1 turno." +"-2 Efectividad de Bloqueo, -1 intentos de Bloqueo, +1.0 a Esquivar, daño bloqueado reducido en 50% de tu Fuerza.\n" +"Evita las técnicas \"Golpe Alto Rodante y Gancho\".\n" +"Dura 2 turnos." #: lang/json/martial_art_from_json.py msgid "Defense Break" @@ -167351,11 +168350,13 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" -"Cada bloqueo exitoso revela una apertura en la guardia de tu oponente.\n" +"Cada bloqueo exitoso revela una oportunidad en la guardia de tu oponente.\n" "\n" -"+1 Precisión.\n" +"+1 a Precisión.\n" +"Activa la técnica \"Desviar y Enganchar\".\n" "Dura 1 turno. Se acumula hasta 3 veces." #: lang/json/martial_art_from_json.py @@ -167416,6 +168417,22 @@ msgstr "" "Su conocimiento de la lucha te permite recuperarte de los efectos del derribo al instante.\n" "Además, puedes contrarrestar los ataques de agarre y derribo con un lanzamiento de judo." +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "Posición Perfecta" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" +"¡Te has movido a una posición perfecta para contratacar!\n" +"\n" +"+30% al daño de Impacto." + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "Karate" @@ -167519,6 +168536,25 @@ msgstr "" "\n" "Precisión +1, intentos de Bloqueo +1." +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "Golpear Vitales" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" +"Como un tonto, tu oponente ha quedado expuesto.\n" +"\n" +"+5% a la posibilidad de golpe crítico.\n" +"Dura 1 turno." + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "Kung Fu del Leopardo" @@ -167697,6 +168733,25 @@ msgstr "" "El daño bloqueado se incrementa en un 50% de tu Fuerza, -1 en Precisión,\n" "Habilita Agarre y Golpe Letal" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "Corte Maestro" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" +"¡Esquivas y devuelves el ataque con gran fuerza!\n" +"\n" +"+10% al daño, -10 al costo de movimiento\n" +"Dura 1 turno." + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "Muay Thai" @@ -168117,21 +169172,22 @@ msgstr "" "+1 Intentos de Esquivar." #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" -msgstr "Evasión de Silat" +msgid "Silat Ambush" +msgstr "Emboscada Silat" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" -"Te mantienes agachado mientras te mueves, haciendo más difícil que los enemigos te atrapen.\n" +"Te mantienes agachado mientras te mueves, haciendo difícil que tus enemigos se puedan defender de tí.\n" "\n" -"+1 Intentos de Esquivar.\n" -"Dura 2 turnos." +"+5% a la posibilidad de golpe crítico.\n" +"Dura 1 turno." #: lang/json/martial_art_from_json.py msgid "Silat Appraisal" @@ -168252,11 +169308,11 @@ msgstr "Posición Sōjutsu" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" -"Tu entrenamiento te da una mejor defensa mientras usas un arma de asta.\n" +"Tu entrenamiento te otorga una mejor defensa cuando usas un arma de asta.\n" "\n" -"Intento de Bloqueo +1." +"+1 intentos de Bloqueo, +2 a Efectividad de Bloqueo." #: lang/json/martial_art_from_json.py msgid "Superior Positioning" @@ -168384,6 +169440,26 @@ msgstr "" "\n" "+1 Intentos de Bloqueo, daño bloqueado reducido en 100% de Percepción." +#: lang/json/martial_art_from_json.py +msgid "Cross Hands" +msgstr "Manos Cruzadas" + +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"\n" +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." +msgstr "" +"Al tomarte un tiempo para prepararte, eres capaz de usar tu cuerpo entero para atacar y defender.\n" +"\n" +"+2 a Efectividad de Bloqueo, daño bloqueado reducido en un 50% de tu Percepción.\n" +"Habilita las técnicas \"Golpe de Palma\" and \"Doble Golpe de Palma\".\n" +"Dura 3 turnos." + #: lang/json/martial_art_from_json.py msgid "Repulse the Monkey" msgstr "Repeler al mono" @@ -168403,26 +169479,6 @@ msgstr "" "Precisión incrementada en 20% de Percepción, ganas una Penetración de armadura de golpe igual a 50% de Percepción.\n" "Dura 2 turnos." -#: lang/json/martial_art_from_json.py -msgid "Cross Hands" -msgstr "Manos Cruzadas" - -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' -#: lang/json/martial_art_from_json.py -#, no-python-format -msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" -"\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." -msgstr "" -"Al tomarte un momento para prepararte, eres capaz de utilizar todo tu cuerpo para atacar y defenderse.\n" -"\n" -"Habilidad de Esquivar +1,0, el daño bloqueado se reduce en un 50% de la Percepción.\n" -"Activa las técnicas \"Golpe de Palma\" y \"Golpe de Palma Doble\".\n" -"Dura 3 turnos." - #: lang/json/martial_art_from_json.py msgid "Tiger Kung Fu" msgstr "Kung Fu del Tigre" @@ -168566,11 +169622,11 @@ msgstr "Sensibilidad Chi-Sao" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" -"Tienes una mayor comprensión del equilibrio y la técnica. Esto te da una mejor oportunidad de evitar los ataques de tu oponente.\n" +"Tienes una mayor comprensión del balance y la técnica. Esto te proporciona una mejor oportunidad de esquivar los ataques de tu oponente.\n" "\n" -"La habilidad de Esquivar aumentó en un 15% de Percepción. El daño Bloqueado se reduce en un 50% de Percepción." +"Habilidad de Esquivar incrementada en un 25% de tu Percepción. Daño bloqueado reducido en un 50% de tu Percepción." #: lang/json/martial_art_from_json.py msgid "Biu Ji" @@ -168705,7 +169761,7 @@ msgstr "" #. ~ initiate message for martial art '{'str': 'Debug Mastery'}' #: lang/json/martial_art_from_json.py msgid "You get ready pwn some zeds!" -msgstr "¡Prepárate para destrozar a algunos zeds!" +msgstr "¡Prepárate para destrozar a algunos zetas!" #. ~ initiate message for martial art '{'str': 'Debug Mastery'}' #: lang/json/martial_art_from_json.py @@ -168810,6 +169866,26 @@ msgstr "" "\n" "+2 Intentos de Bloque, +1 Precisión." +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "Endurecimiento Binario" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 armadura contra Impacto, Corte y Penetración.\n" +"Dura 3 turnos. Se acumula hasta 3 veces." + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "Optimización" @@ -168884,15 +169960,16 @@ msgstr "Veneno de Ciempiés" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" -"Tu veneno quema a tus oponentes en los peores momentos.\n" +"Tu veneno quema a tus oponentes en el peor momento posible.\n" "\n" -"+2 de daño por impacto.\n" +"+15% de daño.\n" "Dura 2 turnos." #: lang/json/martial_art_from_json.py @@ -168907,11 +169984,11 @@ msgid "" "bonus to Dodge skill and moving near a wall gives a large bonus to accuracy." " Stronger techniques are enabled when near a wall." msgstr "" -"Uno de los Cinco Venenos Mortales, usado por Meng Tianxia. El estilo lagarto" -" se centra en usar las paredes a su favor. Estar cerca de una pared " -"proporciona una gran bonificación a la habilidad de Esquivar y moverse cerca" -" de una pared proporciona una gran bonificación a la precisión. Las técnicas" -" más fuertes se habilitan cuando se está cerca de una pared." +"Uno de los Cinco Venenos Mortales, usado por Meng Tianxia. El Estilo del " +"Lagarto se focaliza en usar los muros como tu ventaja. Al pararte cerca de " +"un muro tienes un gran bonus a tu habilidad para Esquivar, y moverte cerca " +"de un muro te da una gran bonificación a la precisión. Las técnicas más " +"fuertes son activadas cerca de un muro." #. ~ initiate message for martial art '{'str': 'Lizard Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -168955,10 +170032,10 @@ msgid "" "+3.0 Dodge skill when near a wall.\n" "Enables \"Lizard Tail\" and \"Lizard Wall Counter\" techniques when near a wall." msgstr "" -"Al escalar, saltar o empujar brevemente una pared cercana, puedes evitar el peor de los ataques de tu oponente.\n" +"Al escalar, saltar o empujar brevemente un muro cercano, puedes evitar el peor de los ataques de tu oponente.\n" "\n" -"+3.0 Habilidad de Esquivar cuando se está cerca de una pared.\n" -"Habilita las técnicas \"Cola de lagarto\" y \"Contador de Pared de Lagarto\" cuando está cerca de una pared." +"+3.0 Habilidad de Esquivar cuando se está cerca de un muro.\n" +"Habilita las técnicas \"Cola de lagarto\" y \"Contrataque de Muro de Lagarto\" cuando está cerca de un muro." #: lang/json/martial_art_from_json.py msgid "Lizard's Leap" @@ -168973,9 +170050,9 @@ msgid "" "+3 Accuracy when near a wall.\n" "Lasts 3 turns." msgstr "" -"Al escalar brevemente, saltar o empujar una pared cercana, puede atacar hacia abajo a oponentes desprevenidos.\n" +"Al escalar brevemente, saltar o empujar un muro cercano, puede atacar hacia abajo a oponentes desprevenidos.\n" "\n" -"+3 Precisión cuando se está cerca de una pared.\n" +"+3 Precisión cuando se está cerca de un muro.\n" "Dura 3 turnos." #: lang/json/martial_art_from_json.py @@ -169014,14 +170091,15 @@ msgstr "Veneno de Escorpión" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" -"Su veneno es una amenaza constante de la que nada puede escapar.\n" +"Tu veneno es una amenaza constante y nada puede escapar de él.\n" "\n" -"+2 daño de golpeo." +"+15% de daño." #: lang/json/martial_art_from_json.py msgid "Scorpion's Charge" @@ -169805,12 +170883,31 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" +"\"Rastreo Sombrío\"\n" +"Como un künstler, estás entrenado para mantenerte en el punto ciego de tu objetivo.\n" +"\n" +"+1 intentos de Esquivar, Habilidad Esquivar incrementada en 15%% de tu Percepción." + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "Seinerweisen" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" -"\"Rastreo de sombras\"\n" -"Como un künstler, estás entrenado para permanecer en el punto ciego de tu objetivo.\n" +"\"Sabiduría Personal\"\n" +"¡A través de tu maestría del Panzer Kunst has conseguido la habilidad de manipular plasma letal en todos tus ataques!\n" "\n" -"+1 a los intentos de esquivar, la habilidad de esquivar aumenta en 12 %% de Percepción." +"Ganas bonificación de daño Eléctrico igual al 50% de tu Percepción." #: lang/json/martial_art_from_json.py msgid "Einzug Rüstungen" @@ -169819,16 +170916,17 @@ msgstr "Einzug Rüstungen" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" -"\"Penetración de la armadura\"\n" -"Al sintonizar con el ritmo de tu oponente, puedes golpear donde su guardia es más débil.\n" -"+5 golpe de Penetración de Armadura.\n" -"Dura 2 turnos." +"\"Penetración de Armadura\"\n" +"Al armonizar con el ritmo de tu oponente, puedes golpearlo donde su guardia es más débil.\n" +"+1 Precisión, ganas Penetración de Armadura igual al 50% de tu Percepción.\n" +"Dura 3 turnos." #: lang/json/martial_art_from_json.py msgid "Pokken" @@ -169943,6 +171041,24 @@ msgstr "Cambias tu peso y te preparas para defenderte." msgid "%s shifts their weight and assumes a new stance." msgstr "%s cambia su peso y asume una nueva postura." +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "Apertura Simulada" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" +"Al fingir una apertura, puedes desequilibrar a tu oponente y actuar con mayor rapidez durante un breve periodo de tiempo.\n" +"\n" +"+20 de velocidad.\n" +"Dura 1 turno." + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "Defensa Desconcertante" @@ -169955,30 +171071,31 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" -"Te preparas para el ataque de tu oponente mientras te preparas para mandarlo a volar.\n" +"¡Te preparás para el ataque de tu oponente mientras estás listo para mandarlo volando!\n" "\n" -"Habilidad de Esquivar aumentada en un 20% de la Inteligencia, habilita las técnicas \"Lanzamiento Poderoso\" y \"Lanzamiento de Balista\".\n" -"Dura 1 turno." +"Habilidad de Esquivar incrementada en un 20% de tu Inteligencia, activa las técnicas \"Lanzamiento Poderoso\" y \"Lanzamiento de Ballesta\".\n" +"Dura 2 turnos." #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" -msgstr "Apertura Simulada" +msgid "Fool's Strike" +msgstr "Golpe del Idiota" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" -"Al fingir una apertura, puedes desequilibrar a tu oponente y actuar con mayor rapidez durante un breve periodo de tiempo.\n" +"Te mueves de una manera tan engañosa que has desviado el ataque de tu oponente hacia él mismo.\n" "\n" -"+20 de velocidad.\n" -"Dura 1 turno." +"+20% daño Impacto.\n" +"Dura 2 turnos." #: lang/json/martial_art_from_json.py msgid "Shii-Cho" @@ -170074,6 +171191,24 @@ msgstr "" "\n" "+1 intentos de Bloqueo, +1 efectividad de Bloqueo." +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "Corrientes de Agua" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" +"Eres capaz de desviar un ataque y contratacar en el mismo movimiento.\n" +"\n" +"-25% al costo de movimiento.\n" +"Dura 1 turno." + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "Dragón de Piedra" @@ -171943,7 +173078,7 @@ msgstr "No creo que lo hayamos conseguido todavía." msgid "Kill your pursuer" msgstr "Mata a tu perseguidor" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -172172,7 +173307,7 @@ msgstr "Llega a la Mansión Y Termina Esta Entrega" msgid "Refuel your helicopter." msgstr "Reabastece tu helicóptero." -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -172418,7 +173553,7 @@ msgstr "Estoy tan decepcionado de ti, chico..." msgid "Prove You're A Survivor" msgstr "Demuestra que eres un Superviviente" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -172489,8 +173624,7 @@ msgstr "No estoy muy seguro de cómo no sobreviviste Y me estás hablando." msgid "Gather cattail stalks to create cattail jelly" msgstr "Recoger tallos espadaña para crear gelatina de espadaña" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -172691,7 +173825,7 @@ msgstr "Entonces lo intentarás de nuevo, hasta que lo escuches." msgid "Protect fisherman's daughter" msgstr "Protege a la hija del pescador" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "Parece una buena chica. ¿Tal vez no deberías dejarla morir?" @@ -172705,7 +173839,7 @@ msgstr "-" msgid "Lighthouse" msgstr "Faro" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "Lleva a Mikhail al faro." @@ -172751,7 +173885,7 @@ msgstr "" msgid "House cleaning" msgstr "Limpieza del hogar" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "Limpia el faro de com Mikhail." @@ -172793,7 +173927,7 @@ msgstr "Genial, bien. Lo único que queda es lavar todos los pisos..." msgid "Fisherman's family" msgstr "Familia del Pescador" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "Mikhail te pidió que trajeras a su familia." @@ -172829,7 +173963,7 @@ msgstr "No sé ni cómo agradecertelo, . Estoy en deuda eterna contigo." msgid "Fisherman's boat" msgstr "Barco del Pescador" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "Ayuda a Mikhail a fabricar un barco. Trae 250 clavos." @@ -172886,7 +174020,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "Repara el faro" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -172941,16 +174075,52 @@ msgstr "¡Esplendido, ! Ahora solo tenemos que esperar..." msgid "Protect fisherman's wife" msgstr "Protege a la esposa del pescador" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "Parece una buena mujer. ¿Tal vez no deberías dejarla morir?" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "Trae 6L de anestésico de Rubik" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" +"Si nos das metal y plástico para nosotros, necesitamos dos tarros de " +"anestico, uno para ti cerebrito otro para nuestro almacen." + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "¡La propia suerte del rey!" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "Eso es una elección y tú puedes decidir. Vuelve aquí si quieres." + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "Revisa el quirófano y yo rass." + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "Esperamos pacientes para estos kits." + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "Muy bien. Podemos pasarlo cuando quieras." + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "Bien bien. Vuelve a esto si quieres volver a intentarlo." + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "Comidas Exigentes" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "Encuentra 100 sal." @@ -173005,7 +174175,7 @@ msgstr "No te preocupes por eso, no es tan importante." msgid "Pickled Meals" msgstr "Comidas Encurtidas" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "Encuentra 5 tarros de cristal." @@ -173065,7 +174235,7 @@ msgstr "No es gran cosa, no es tan urgente." msgid "Prickled Meals" msgstr "Comidas Picantes" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "Encuentra un cuchillo de carnicero." @@ -173112,7 +174282,7 @@ msgstr "Estoy agradecido por la ayuda que me has prestado." msgid "Busy While Work" msgstr "Ocupado Mientras Trabajo" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "Encuentra 3 novelas de misterio." @@ -173165,7 +174335,7 @@ msgstr "Bien. Puedo leer algo más." msgid "Timber!" msgstr "¡Madera!" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "Trae cinco leños." @@ -173194,7 +174364,7 @@ msgstr "¿Cómo va la búsqueda? ¿Los has encontrado?" msgid "Sweets" msgstr "Dulces" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "Encuentra 25 moras." @@ -173233,7 +174403,7 @@ msgstr "Gracias por tu ayuda. Aquí está tu recompensa." msgid "Visit the Isherwoods" msgstr "Visita los Isherwoods" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -174272,7 +175442,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "Pizzaiolo enfadado" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -174315,7 +175485,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "Encuentra al verdadero FoodPerson" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -174362,7 +175532,7 @@ msgstr "Otro que muerde el polvo. Lo hicimos bien, ." msgid "Pizza parlor" msgstr "Pizzeria" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "Ayuda a pizzaiolo a recuperar su restaurante." @@ -174408,7 +175578,7 @@ msgstr "" msgid "Family house" msgstr "Casa Familiar" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -174444,7 +175614,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "Conseguir chatarra para el meteorólogo" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "El meteorólogo me pidió que le trajera 50 trozos de chatarra." @@ -174508,7 +175678,7 @@ msgstr "¿Por qué dices eso?" msgid "Find batteries for the meteorologist" msgstr "Encuentra baterías para el meteorólogo" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "El meteorólogo te pidió que le trajeras 6 baterías medianas." @@ -174541,7 +175711,7 @@ msgstr "Genial, sigo trabajando en el dron..." msgid "Find lens_small 5" msgstr "Encuentra 5 lentes pequeñas" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -174575,7 +175745,7 @@ msgstr "Genial, sigo trabajando en con ello..." msgid "Find radiocontrol" msgstr "Encuentra control remoto por radio" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "El meteorólogo te pidió que le trajeras un control remoto por radio." @@ -174613,7 +175783,7 @@ msgstr "" msgid "Find crashed drone" msgstr "Encontrar dron estrellado" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "El meteorólogo te pidió que le trajeras su dron estrellado." @@ -174948,8 +176118,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "Encuentra a alguien que limpie la bahía trasera." -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -175449,13 +176618,13 @@ msgid "" " you beautiful gofer maniac." msgstr "" "Oh, sí. Ooooh sí. Ahora estamos cocinando con gas. Aquí hay unos cuantos más" -" mercs, hermoso maníaco recadero." +" merc, hermoso recadero maníaco." #: lang/json/mission_def_from_json.py msgid "Find 50 doses of antiseptic" msgstr "Encuentra 50 dosis de antiséptico" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -175510,7 +176679,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "Encuentra 30 vendas" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -175548,7 +176717,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "Encuentra 6 botellas de Prozac" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -175595,8 +176764,8 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Make a makeshift haircut kit for Vanessa Toby in the refugee center" msgstr "" -"Haz un kit de corte de pelo improvisado para Vanessa Toby en el centro de " -"refugiados" +"Haz un kit para cortar el pelo improvisado para Vanessa Toby en el centro de" +" refugiados" #: lang/json/mission_def_from_json.py msgid "If I had some equipment, I could do some hairdresser work here." @@ -175660,14 +176829,14 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "En un pepinillo Pt. 2" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " "certified notes." msgstr "" -"Entregar 50 grandes tarros de tres litros a cambio de " -" notas certificadas." +"Entrega 50 grandes tarros de tres litros a cambio de " +"notas certificadas." #: lang/json/mission_def_from_json.py msgid "I do have some work for you." @@ -175709,7 +176878,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "Smokes, vamos." -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -175760,7 +176929,7 @@ msgstr "¡Gracias! Me aseguraré de hablar bien de ti en el centro." msgid "Clear Back Bay" msgstr "Limpiar Plataforma de Atrás" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -175827,7 +176996,7 @@ msgstr "" msgid "Missing Caravan" msgstr "Caravana Perdida" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -175887,7 +177056,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "Recuperar Informe" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -175941,7 +177110,7 @@ msgstr "" msgid "Solar Power" msgstr "Energía Solar" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -175992,7 +177161,7 @@ msgstr "" msgid "In a Pickle" msgstr "En un pepinillo..." -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -176058,7 +177227,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "Recipiente Desconocida" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -176069,7 +177238,72 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Have you finished the delivery already?" -msgstr "¿Ya ha terminado la entrega?" +msgstr "¿Ya has terminado el reparto?" + +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "Mira esa granja" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" +"Me encontré con un grupo de agricultores. No quieren tener mucho que ver con" +" nuestras caravanas, pero con alguien como tú podrían querer." + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "Bien." + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "Parece razonable." + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "Te cuidado. Es difícil ahí fuera." + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "Huh, imaginate." + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "Es lo que es." + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" +"Ha habido rumores. La gente habla de una especie de laboratorio secreto, en " +"las afueras, con supervivientes en él." + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "Mira ese castillo de chatarra" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" +"Algunas de mis caravanas han vuelto ahora hablando de este gigantesco " +"castillo de metal en la cima de una roca, en medio de la nada. No han estado" +" tan locos como para comprobarlo, pero tú podrías hacerlo si quieres." + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "Tu funeral." + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "Ten cuidado. Me parece un lugar peligroso." #: lang/json/mission_def_from_json.py msgid "" @@ -176267,7 +177501,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "Abastece al pirómano." -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "Trae al pirómano 42 kg de fertilizante comercial" @@ -176333,7 +177567,7 @@ msgstr "Maldita sea. Quizás no fui el único que pensó en esto." msgid "Kill Bandits" msgstr "Matar Bandidos" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -176384,7 +177618,7 @@ msgstr "" msgid "Deal with Informant" msgstr "Encargarse del Informante" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -176431,11 +177665,78 @@ msgstr "¿Tratas con la rata?" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "Gracias, yo voy a explicar todo si alguien pregunta." +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "Encuentra la Fuente de los Robots" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" +"No suelo tener muchas noticias del mando, pero hace poco recibimos un " +"mensaje por radio. Podrías ser la elección adecuada para investigarlo por " +"mí. Ha habido informes de robots extraños y cosas que vagan por ahí desde " +"que las cosas se fueron al garete. No sé cómo, pero aparentemente el comando" +" rastreó lo que creen que es la fuente. Quieren que alguien vaya a comprobar" +" quién los está fabricando, y si podemos obtener alguna tecnología o ayuda " +"de ellos. Esto es estrictamente un reconocimiento, entiendes: podría ser una" +" entidad hostil, así que no te enfrentes directamente." + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "Esta vez tengo uno raro para ti..." + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "Gracias, cuando sepas quién es, infórmame y lo comunicaré." + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" +"Vuelve cuando puedas, si hay alguna posibilidad de que estas cosas estén de " +"nuestro lado, necesitamos toda la ayuda posible." + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" +"Si ves alguna máquina rara por ahí, no te metas. Escápate, diría yo. Parece " +"que son hostiles a los zombis, pero eso no significa que puedan saber que no" +" eres uno." + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "Buen trabajo, no estaba seguro de a qué te estaba mandando. " + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" +"Es una pena, una maldita pena. Ojalá hubieras podido aprender más. Gracias " +"por intentarlo." + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "Maldita sea... esperemos que podamos volver a intentarlo alguna vez." + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "Ruta Comercial Segura" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -176471,15 +177772,11 @@ msgstr "" "¿Buscaste algún rastro en los arbustos? No soy un rastreador experto pero " "deberías poder encontrar algo." -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "Buen trabajo, no estaba seguro de a qué te estaba mandando. " - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "Asesinar al Líder del Asalto" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -176566,7 +177863,7 @@ msgstr "" msgid "Return Field Data" msgstr "Devuelve los Datos de Campo" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -176630,7 +177927,7 @@ msgstr "Simplemente inútil..." msgid "Steal a dead man's mind" msgstr "Roba la mente de un hombre muerto" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -176688,7 +177985,7 @@ msgstr "Tiene nuestro agradecimiento y pago." msgid "Light retrieval" msgstr "Recuperación de la luz" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -176741,14 +178038,16 @@ msgstr "¿Has recuperado los planos?" msgid "Iron Safari" msgstr "Safari de Hierro" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" -"Desactiva y recupera el robot alienígena. Puedes interceptar el robot " -"indicado por Hub 01, o encontrar un robot inactivo en algun sitio." +"Desactiva y recupera el robot extraterrestre. Puedes interceptar el robot " +"que te indica Hub 01 o encontrar uno inactivo en otra parte. Vas a necesitar" +" alguna experiencia en electrónica y mecánica para poder desactivarlo." #: lang/json/mission_def_from_json.py msgid "" @@ -176802,7 +178101,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "Recuperar trozos de oro" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "Encuentra 200 unidades de oro." @@ -176852,7 +178151,7 @@ msgstr "Bueno, tendré que buscar el oro yo mismo, gracias por nada." msgid "Active Noise Control" msgstr "Control de Ruido Activo" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -176903,7 +178202,7 @@ msgstr "Seguro, gracias por nada." msgid "Return to Hub 01" msgstr "Vuelve al Hub 01" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "Vuelve al Hub 01." @@ -178968,7 +180267,7 @@ msgstr "Bamm Bamm" msgid "Secure Area" msgstr "Area Segura" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -178993,7 +180292,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "Perdido en el Bosque" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -179031,7 +180330,7 @@ msgstr "" msgid "Protect the cattle" msgstr "Protege el ganado" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "Alguien o algo en los pantanos está robando ganado. Páralo." @@ -179078,7 +180377,7 @@ msgstr "" msgid "Betty" msgstr "Betty" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "Mata 50 dinosaurios" @@ -179139,7 +180438,7 @@ msgstr "" msgid "Stromer" msgstr "Stromer" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "Mata un Tiranosaurus Rex" @@ -179847,8 +181146,7 @@ msgstr "¡¡%1$s agarra y muerde fuerte!!" #, no-python-format msgid "" "The %1$s grabs your arm in its mouth, but fails to penetrate your armor." -msgstr "" -"El %1$sagarra tu brazo con la boca, pero no logra penetrar tu armadura." +msgstr " agarra tu brazo con su boca, pero no logra penetrar tu armadura." #: lang/json/monster_attack_from_json.py #, no-python-format @@ -179994,6 +181292,33 @@ msgstr "" "El %1$s intenta machacar %2$s de con su gran palo, pero pierde el " "equilibrio y tropieza." +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "¡%1$s te azota con su látigo ardiente!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "¡%1$s azota a con su látigo ardiente!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" +"¡%1$s te azota con su látigo ardiente, pero no logra penetrar tu armadura!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" +"¡%1$s azota a con su látigo ardiente, pero no logra penetrar su " +"armadura!" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -180613,29 +181938,29 @@ msgstr "Fuiste a lo profundo." #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py msgid "Gastropod" -msgstr "" +msgstr "Gasterópodo" #. ~ Mutation class: Gastropod mutagen_message #: lang/json/mutation_category_from_json.py msgid "Are you dancing a descending spiral?" -msgstr "" +msgstr "¿Estás bailando en una espiral descendente?" #. ~ Mutation class: Gastropod iv_message #: lang/json/mutation_category_from_json.py msgid "Your split lower body starts to come back together." -msgstr "" +msgstr "La parte inferior de tu cuerpo dividida comienza a recomponerse." #. ~ Mutation class: Gastropod Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" msgid "Left a trail." -msgstr "" +msgstr "Dejo un rastro." #. ~ Mutation class: Gastropod Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" msgid "Left a trail." -msgstr "" +msgstr "Dejo un rastro." #. ~ Mutation class name #: lang/json/mutation_category_from_json.py @@ -180687,14 +182012,14 @@ msgstr "Tu corazón se acelera salvajemente a medida que la inyección avanza." #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." -msgstr "Aceptó su naturaleza bestial." +msgid "Embraced their bestial nature." +msgstr "Abraza tu naturaleza bestial." #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." -msgstr "Aceptó su naturaleza bestial." +msgid "Embraced their bestial nature." +msgstr "Abraza tu naturaleza bestial." #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py @@ -180902,12 +182227,12 @@ msgstr "Batracio" #. ~ Mutation class: Batrachian mutagen_message #: lang/json/mutation_category_from_json.py msgid "An involuntary hop and a croak." -msgstr "" +msgstr "Un salto involuntario y un croado." #. ~ Mutation class: Batrachian iv_message #: lang/json/mutation_category_from_json.py msgid "Like a tadpole you must transform." -msgstr "" +msgstr "Como un renacuajo debes transformarte." #. ~ Mutation class: Batrachian Male memorial messsage #: lang/json/mutation_category_from_json.py @@ -181452,6 +182777,32 @@ msgstr "" "Eres un pupilo del Clan del Veneno. Empiezas con uno de estos cinco venenos " "mortales: Ciempiés, Víbora, Escorpión, Lagarto o Sapo." +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "Interfaz Neurobiónica Standard" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" +"Tienes una matriz en tu sistema nervioso central que actúa como un bus de " +"control e instalación universal para módulos biónicos compactos." + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "estructura cyborg Exodii - estilo 1a" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" +"Tu cerebro y algunos de Tus órganos están protegidos en un bonito y " +"resistente armazón de andador bípedo." + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "Pelo: negro, cortado a mano" @@ -182300,6 +183651,8 @@ msgid "" "You can spit a wad of bioluminescent goo several meters away. There it will" " light up it's surroundings until it dissipates." msgstr "" +"Puedes escupir un fajo de sustancia bioluminiscente a varios metros de " +"distancia. Ahí se iluminará su entorno hasta que se disipe." #: lang/json/mutation_from_json.py msgid "Normal Human" @@ -182420,19 +183773,29 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Tunnel Fighter" -msgstr "" +msgstr "Luchador de Tunel" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " "bonuses when fighting underground." msgstr "" +"Sabes luchar en túneles estrechos con riesgo de derrumbe. Obtienes " +"bonificaciones cuando luchas bajo tierra." #: lang/json/mutation_from_json.py msgid "Night Raider" +msgstr "Asaltante Nocturno" + +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." msgstr "" +"Tu cuerpo es uno con la noche. Haces menos ruido cuando la luna está en el " +"cielo, aunque no la veas." #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py @@ -182499,21 +183862,21 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Earth Sleeper" -msgstr "" +msgstr "Dormilón de la Tierra" #. ~ Description for {'str': 'Earth Sleeper'} #: lang/json/mutation_from_json.py msgid "You always sleep better surrounded by earth." -msgstr "" +msgstr "Siempre se duerme mejor rodeado de tierra." #: lang/json/mutation_from_json.py msgid "Aquatic Sleeper" -msgstr "" +msgstr "Dormilón Acuático" #. ~ Description for {'str': 'Aquatic Sleeper'} #: lang/json/mutation_from_json.py msgid "You always sleep better underwater." -msgstr "" +msgstr "Siempre se duerme mejor bajo el agua." #: lang/json/mutation_from_json.py msgid "Pain Resistant" @@ -182576,19 +183939,21 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Bovine Bulk" -msgstr "" +msgstr "Bulto bovino" #. ~ Description for {'str': 'Bovine Bulk'} #: lang/json/mutation_from_json.py #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" +"Has añadido mucho peso, ¡mucho músculo! Obtienes una bonificación del 10% a " +"todos los puntos de golpe. Nadar será más difícil a partir de ahora." #: lang/json/mutation_from_json.py msgid "Bull Roids" -msgstr "" +msgstr "Drogas de Toro" #. ~ Description for {'str': 'Bull Roids'} #: lang/json/mutation_from_json.py @@ -182598,6 +183963,9 @@ msgid "" "get a 20% bonus to all hit points. Swimming is no longer recommended for " "someone built like you." msgstr "" +"No hay forma de que se te permita competir en los deportes anteriores al " +"Cataclismo. Obtienes una bonificación del 20% a todos los puntos de golpe. " +"La natación ya no es recomendable para alguien con tu constitución." #: lang/json/mutation_from_json.py msgid "Tough" @@ -182725,7 +184093,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Stomach Cleanse" -msgstr "" +msgstr "Limpieza de Estómago" #. ~ Description for {'str': 'Stomach Cleanse'} #: lang/json/mutation_from_json.py @@ -182735,6 +184103,10 @@ msgid "" "poisoning, alcohol, etc. If you throw up because of this this, you won't " "suffer any residual nausea." msgstr "" +"Has ganado la capacidad de invertir el estómago fuera de tu cuerpo para " +"eliminar rápidamente las toxinas, y es más probable que vomites por " +"intoxicación alimentaria, alcohol, etc. Si vomitas por este motivo, no " +"sufrirás náuseas residuales." #: lang/json/mutation_from_json.py msgid "Good Memory" @@ -182872,9 +184244,10 @@ msgstr "Terror" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" +"Hay algo en ti que causa terror. Las criaturas tienden a huir cuando te ven." #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -182914,6 +184287,11 @@ msgid "" "process things around you slightly faster. Giving you better reaction times" " that you can pay for later if you survive." msgstr "" +"Cuando estás en gran peligro puedes activar un interruptor químico en tu " +"cerebro a cambio de un coste en hambre, fatiga y sed, esto causa que tu " +"sistema nervioso procese las cosas a tu alrededor ligeramente más rápido. Lo" +" que te da mejores tiempos de reacción que podrás pagar más tarde si " +"sobrevives." #: lang/json/mutation_from_json.py msgid "Less Sleep" @@ -183251,6 +184629,9 @@ msgid "" "Your knees are strong and capable of angles that you couldn't imagine " "previously. Moving over rough terrain will slow you down less than normal." msgstr "" +"Tus rodillas son fuertes y capaces de realizar ángulos que antes no podías " +"imaginar. Moverte por un terreno accidentado te ralentizará menos de lo " +"normal." #: lang/json/mutation_from_json.py msgid "Languorous" @@ -184121,6 +185502,10 @@ msgid "" "toggle NV-visible areas on or off. Surprisingly, frogs' vision works " "exactly the same." msgstr "" +"Tu procesamiento visual ha cambiado: aunque ves mejor en la oscuridad, eres " +"miope en la luz. Quizá unas gafas te ayuden. Activar para alternar las áreas" +" visuales de tu VN. Sorprendentemente, la visión de las ranas funciona " +"exactamente igual." #: lang/json/mutation_from_json.py msgid "Avian Eyes" @@ -185028,10 +186413,12 @@ msgid "" "You exude slime from your pores. You can spread that slime on an opponent " "in melee range." msgstr "" +"Exudas baba por tus poros. Puedes esparcir esa baba sobre un oponente cuerpo" +" a cuerpo." #: lang/json/mutation_from_json.py msgid "Bulging Reservoir" -msgstr "" +msgstr "Depósito abultado" #. ~ Description for {'str': 'Bulging Reservoir'} #: lang/json/mutation_from_json.py @@ -185039,10 +186426,12 @@ msgid "" "You develop a reservoir of fluids that bulges out of your abdomen. Your " "body has adapted to containing extra liquids in event of shortfalls." msgstr "" +"Desarrollas una reserva de fluidos que sobresale de tu abdomen. Tu cuerpo se" +" ha adaptado a contener líquidos adicionales en caso de escasez." #: lang/json/mutation_from_json.py msgid "Bombadier Beetle Blast" -msgstr "" +msgstr "Explosión de Escarabajo Bombardero" #. ~ Description for {'str': 'Bombadier Beetle Blast'} #: lang/json/mutation_from_json.py @@ -185051,16 +186440,19 @@ msgid "" "distance. This will drastically increase your thirst. Without an extra " "reservoir you would quickly dehydrate yourself." msgstr "" +"Tienes una habilidad de rociar agua hirviendo a tus enemigos a cuerpo a " +"cuerpo. Esto aumentará drásticamente tu sed. Sin un depósito adicional, te " +"deshidratarías rápidamente." #: lang/json/mutation_from_json.py #, no-python-format msgid "You spray %s with a boiling chemical mixture" -msgstr "" +msgstr "Rocias %s con una mezcla química hirviente" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s sprays %2$s with a boiling chemical mixture" -msgstr "" +msgstr "%1$s rocia %2$s con una mezcla química hirviente" #: lang/json/mutation_from_json.py msgid "Large Talons" @@ -185180,6 +186572,8 @@ msgid "" "Your body produces low-level pheromones, identifying you as a friend to many" " species of amphibian. Amphibians will attack you much less." msgstr "" +"Tu cuerpo produce feromonas de bajo nivel, que te identifican como amigo " +"para muchas especies de anfibios. Los anfibios te atacarán mucho menos." #: lang/json/mutation_from_json.py msgid "Mammal Pheromones" @@ -185344,7 +186738,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Muscle Consolidation" -msgstr "" +msgstr "Consolidación Muscular" #. ~ Description for {'str': 'Muscle Consolidation'} #: lang/json/mutation_from_json.py @@ -185352,10 +186746,12 @@ msgid "" "Your extremities have gained strength but lost fine motor skills. -1 " "Dexterity +2 Strength." msgstr "" +"Tus extremidades han ganado fuerza pero han perdido la motricidad fina. -1 " +"Destreza +2 Fuerza." #: lang/json/mutation_from_json.py msgid "Rasping Tongue" -msgstr "" +msgstr "Lengua Rasposa" #. ~ Description for {'str': 'Rasping Tongue'} #: lang/json/mutation_from_json.py @@ -185363,16 +186759,18 @@ msgid "" "You've developed an extremely long and mobile tongue capped with teeth. You" " may use it to attack your enemies." msgstr "" +"Has desarrollado una lengua extremadamente larga y móvil cubierta de " +"dientes. Puedes usarla para atacar a tus enemigos." #: lang/json/mutation_from_json.py #, no-python-format msgid "You tear into %s with your rasping tongue." -msgstr "" +msgstr "Desgarras %s con tu lengua rasposa." #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s tears into %2$s with their rasping tongue." -msgstr "" +msgstr "%1$s desgarra %2$s con su lengua rasposa." #: lang/json/mutation_from_json.py msgid "Harpoon Tongue" @@ -185381,17 +186779,17 @@ msgstr "Lengua de Arpón" #. ~ Description for {'str': 'Harpoon Tongue'} #: lang/json/mutation_from_json.py msgid "Your tongue has increased its length and mobility." -msgstr "" +msgstr "Tu lengua ha aumentado su longitud y movilidad." #: lang/json/mutation_from_json.py #, no-python-format msgid "You stab into %s with your harpoon tongue." -msgstr "" +msgstr "Apuñalas %s con tu lengua de arpón." #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s stabs into %2$s with their harpoon tongue." -msgstr "" +msgstr "%1$s apuñala %2$s con tu lengua de arpón." #: lang/json/mutation_from_json.py msgid "Compound Eyes" @@ -185430,6 +186828,7 @@ msgstr "Piernas Fuertes" #: lang/json/mutation_from_json.py msgid "Your legs have gained muscle mass to propel you across any terrain." msgstr "" +"Tus piernas han ganado masa muscular para impulsarte por cualquier terreno." #: lang/json/mutation_from_json.py msgid "Leaping Legs" @@ -185439,6 +186838,7 @@ msgstr "Piernas de Salto" #: lang/json/mutation_from_json.py msgid "You've gained a strong ability to leap from a standing position." msgstr "" +"Has adquirido una gran habilidad para saltar desde una posición de pie." #. ~ Description for {'str': 'Crushing Leap'} #: lang/json/mutation_from_json.py @@ -185446,6 +186846,8 @@ msgid "" "You've gained a strong ability to leap a significant distance from a " "standing position and crush whatever you land on." msgstr "" +"Has adquirido una gran habilidad para saltar una distancia considerable " +"desde una posición de pie y aplastar cualquier cosa sobre la que caigas." #: lang/json/mutation_from_json.py msgid "Toe Talons" @@ -185641,7 +187043,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Eater Of The Dead" -msgstr "Comedor/a De Los Muertos" +msgstr "Devorador De Los Muertos" #. ~ Description for {'str': 'Eater Of The Dead'} #: lang/json/mutation_from_json.py @@ -185654,7 +187056,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Burrowing" -msgstr "Cavador/a" +msgstr "Cavador" #. ~ Description for {'str': 'Burrowing'} #: lang/json/mutation_from_json.py @@ -186183,7 +187585,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Culler" -msgstr "Sacrificador/a" +msgstr "Sacrificador" #. ~ Description for {'str': 'Culler'} #: lang/json/mutation_from_json.py @@ -186201,7 +187603,7 @@ msgstr "" #: lang/json/mutation_from_json.py lang/json/npc_class_from_json.py #: lang/json/npc_from_json.py msgid "Hunter" -msgstr "Cazador/a" +msgstr "Cazador" #. ~ Description for {'str': 'Hunter'} #: lang/json/mutation_from_json.py @@ -186218,7 +187620,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Predator" -msgstr "Depredador/a" +msgstr "Depredador" #. ~ Description for {'str': 'Predator'} #: lang/json/mutation_from_json.py @@ -186234,7 +187636,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Apex Predator" -msgstr "SuperDepredador/a" +msgstr "SuperDepredador" #. ~ Description for {'str': 'Apex Predator'} #: lang/json/mutation_from_json.py @@ -186375,7 +187777,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Gastropod Foot" -msgstr "" +msgstr "Pie de Gasterópodo" #. ~ Description for {'str': 'Gastropod Foot'} #: lang/json/mutation_from_json.py @@ -186386,10 +187788,15 @@ msgid "" "noise. In addition to being harder to knock down, you can move through " "sludge-covered surfaces easily." msgstr "" +"Tus piernas se han consolidado en un único \"pie\" muscular que sube hasta " +"tu vientre. Te mueves a una cuarta parte de tu velocidad anterior y ya no " +"puedes llevar pantalones ni zapatos, por otro lado haces bastante menos " +"ruido. Además de ser más difícil de derribar, puedes moverte por superficies" +" cubiertas de lodo con facilidad." #: lang/json/mutation_from_json.py msgid "Gastropod Balance" -msgstr "" +msgstr "Balance Gasterópodo" #. ~ Description for {'str': 'Gastropod Balance'} #: lang/json/mutation_from_json.py @@ -186397,10 +187804,12 @@ msgid "" "By pushing your whole 'foot' against the ground you are able to move across " "rough terrain without losing your 'footing'." msgstr "" +"Al empujar con todo el \"pie\" contra el suelo, puedes moverte por terrenos " +"difíciles sin perder el \"equilibrio\"." #: lang/json/mutation_from_json.py msgid "Mucus Secretion" -msgstr "" +msgstr "Secreción Mucosa" #. ~ Description for {'str': 'Mucus Secretion'} #: lang/json/mutation_from_json.py @@ -186409,31 +187818,35 @@ msgid "" " covers evrerything you come into contact with but now you can move through " "slime you didn't create with ease." msgstr "" +"Una vez tuviste una pareja que te llamó baboso, ahora lo ejemplificas. " +"Cubres todo aquello con lo que entras en contacto, pero ahora puedes moverte" +" a través del limo que no has creado con facilidad." #: lang/json/mutation_from_json.py msgid "Acidic Secretion" -msgstr "" +msgstr "Secreción Ácidica" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" +"Tu moco ha desarrollado un componente ácido que parece ablandar a tu presa." #: lang/json/mutation_from_json.py #, no-python-format msgid "You smear slime on %s" -msgstr "" +msgstr "Hueles lodo en %s" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s smears slime on %2$s" -msgstr "" +msgstr "%1$s huele lodo en %2$s" #: lang/json/mutation_from_json.py msgid "Snail Trail" -msgstr "" +msgstr "Rastro de Caracol" #. ~ Description for {'str': 'Snail Trail'} #: lang/json/mutation_from_json.py @@ -186441,6 +187854,9 @@ msgid "" "You've developed some ability to control your slime emissions. As a result " "of this you can leave trails of slime anywhere you walk." msgstr "" +"Has desarrollado cierta habilidad para controlar tus emisiones de baba. Como" +" resultado, puedes dejar rastros de baba en cualquier lugar por el que " +"camines." #: lang/json/mutation_from_json.py msgid "Canine Ears" @@ -186524,7 +187940,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Web Walker" -msgstr "Caminador/a de Telarañas" +msgstr "Caminador de Telarañas" #. ~ Description for {'str': 'Web Walker'} #: lang/json/mutation_from_json.py @@ -186550,7 +187966,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Web Weaver" -msgstr "Tejedor/a de Telarañas" +msgstr "Tejedor de Telarañas" #. ~ Description for {'str': 'Web Weaver'} #: lang/json/mutation_from_json.py @@ -186564,7 +187980,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Web Diver" -msgstr "Saltador/a de Telarañas" +msgstr "Saltador de Telarañas" #. ~ Description for {'str': 'Web Diver'} #: lang/json/mutation_from_json.py @@ -186698,7 +188114,7 @@ msgstr "Fuerte" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "Tus músculos son un poco más fuertes. Fuerza +1." #: lang/json/mutation_from_json.py @@ -186707,7 +188123,7 @@ msgstr "Muy Fuerte" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "Tus músculos son más fuertes. Fuerza +2." #: lang/json/mutation_from_json.py @@ -186716,7 +188132,7 @@ msgstr "Extremadamente Fuerte" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "Tus músculos son mucho más fuertes. Fuerza +4." #: lang/json/mutation_from_json.py @@ -186725,8 +188141,8 @@ msgstr "Terriblemente Fuerte" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" -msgstr "Tus músculos son notablemente más fuertes. Fuerza +7." +msgid "Your muscles are noticeably bulging. +7 Strength." +msgstr "Tus músculos están llamativamente abultados. +7 Fuerza." #: lang/json/mutation_from_json.py msgid "Prime Strength" @@ -186743,7 +188159,7 @@ msgstr "Ágil" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "Eres un poco más ágil. Destreza +1." #: lang/json/mutation_from_json.py @@ -186752,7 +188168,7 @@ msgstr "Muy Ágil" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "Eres más ágil. Destreza +2." #: lang/json/mutation_from_json.py @@ -186761,7 +188177,7 @@ msgstr "Extremadamente Ágil" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "Eres más ágil y rápido. Destreza +4." #: lang/json/mutation_from_json.py @@ -186770,8 +188186,8 @@ msgstr "Increiblemente Ágil" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" -msgstr "Eres mucho más ágil que antes. Destreza +7." +msgid "You are much nimbler than before. +7 Dexterity." +msgstr "Eres muchisimo más ágil que antes. Destreza +7." #: lang/json/mutation_from_json.py msgid "Prime Dexterity" @@ -186788,7 +188204,7 @@ msgstr "Inteligente" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "Eres un poco más inteligente. Inteligencia +1." #: lang/json/mutation_from_json.py @@ -186797,7 +188213,7 @@ msgstr "Muy Inteligente" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "Eres más inteligente. Inteligencia +2." #: lang/json/mutation_from_json.py @@ -186807,7 +188223,7 @@ msgstr "Extremadamente Ingeligente" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" "Eres mucho más inteligente, y tu cráneo aumentó un poco de tamaño. " "Inteligencia +4." @@ -186819,9 +188235,9 @@ msgstr "Terriblemente Inteligente" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" -"Tu cráneo se abulta notablemente debido a tu impresionante cerebro. " +"Tu cráneo se abulta llamativamente debido a tu impresionante cerebro. " "Inteligencia + 7" #: lang/json/mutation_from_json.py @@ -186853,7 +188269,7 @@ msgstr "Observador" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "Tus sentidos son un poco más agudos. Percepción +1." #: lang/json/mutation_from_json.py @@ -186862,7 +188278,7 @@ msgstr "Muy Observador" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "Tus sentidos son más agudos. Percepción +2." #: lang/json/mutation_from_json.py @@ -186871,7 +188287,7 @@ msgstr "Extremadamente Observador" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "Tus sentidos son mucho más agudos. Percepción +4." #: lang/json/mutation_from_json.py @@ -186880,7 +188296,7 @@ msgstr "Increiblemente Observador" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "Puedes percibir cosas que nunca te imaginaste. Percepción +7." #: lang/json/mutation_from_json.py @@ -187032,7 +188448,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Lolling Tongue" -msgstr "" +msgstr "Lengua en Movimiento" #. ~ Description for {'str': 'Lolling Tongue'} #: lang/json/mutation_from_json.py @@ -187040,10 +188456,12 @@ msgid "" "Your tongue has lengthened and often extends far beyond your mouth. This " "has no effect." msgstr "" +"La lengua se ha alargado y a menudo se extiende más allá de la boca. Esto no" +" tiene ningún efecto." #: lang/json/mutation_from_json.py msgid "Whipping Tongue" -msgstr "" +msgstr "Lengua Azotadora" #. ~ Description for {'str': 'Whipping Tongue'} #: lang/json/mutation_from_json.py @@ -187051,16 +188469,18 @@ msgid "" "You've developed an extremely long and mobile tongue. You may use it to " "attack your enemies." msgstr "" +"Has desarrollado una lengua extremadamente larga y móvil. Puedes usarla para" +" atacar a tus enemigos." #: lang/json/mutation_from_json.py #, no-python-format msgid "You bash %s with your tongue." -msgstr "" +msgstr "Golpeas %s con tu lengua." #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s smacks into %2$s with their tongue." -msgstr "" +msgstr "%1$s golpea %2$s con tu lengua." #: lang/json/mutation_from_json.py msgid "Bulging Eyes" @@ -187077,7 +188497,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Intermediate Eyestalks" -msgstr "" +msgstr "Oculares Intermedios" #. ~ Description for {'str': 'Intermediate Eyestalks'} #: lang/json/mutation_from_json.py @@ -187087,10 +188507,14 @@ msgid "" "but sometimes your vision goes wonky as your brain tries to process the new " "angles. Perception +1" msgstr "" +"Tus ojos apenas sobresalen de la cabeza gracias a tus tentáculos, lo que " +"impide el uso de gafas rígidas. El lado positivo es que puedes tener una " +"conciencia adicional, pero a veces tu visión se tambalea mientras tu cerebro" +" intenta procesar los nuevos ángulos. Percepción +1" #: lang/json/mutation_from_json.py msgid "Eyestalks" -msgstr "" +msgstr "Oculares" #. ~ Description for {'str': 'Eyestalks'} #: lang/json/mutation_from_json.py @@ -187099,6 +188523,10 @@ msgid "" "of any eyewear. On the plus side, you can see in two directions at once, " "and they automatically retract to reduce damage. Perception +2" msgstr "" +"Los ojos sobresalen de la cabeza gracias a unos tentáculos flexibles que " +"impiden el uso de cualquier tipo de gafas. El lado positivo es que puedes " +"ver en dos direcciones a la vez y que se retraen automáticamente para " +"reducir el daño. Percepción +2" #: lang/json/mutation_from_json.py msgid "Mouth Flaps" @@ -187229,7 +188657,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Beautiful" -msgstr "Hermoso/a" +msgstr "Hermoso" #. ~ Description for {'str': 'Beautiful'} #: lang/json/mutation_from_json.py @@ -187242,7 +188670,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Very Beautiful" -msgstr "Muy Hermoso/a" +msgstr "Muy Hermoso" #. ~ Description for {'str': 'Very Beautiful'} #: lang/json/mutation_from_json.py @@ -187379,7 +188807,7 @@ msgstr "%1$s arranca un trozo de %2$s" #: lang/json/mutation_from_json.py msgid "Wide Mouth" -msgstr "" +msgstr "Boca Ancha" #. ~ Description for {'str': 'Wide Mouth'} #: lang/json/mutation_from_json.py @@ -187387,6 +188815,8 @@ msgid "" "Your face and jaws have widened like a frogs. It looks hideous but it " "allows you to eat food whole." msgstr "" +"Tu cara y tus mandíbulas se han ensanchado como las de una rana. Tiene un " +"aspecto horrible, pero te permite comer alimentos enteros." #: lang/json/mutation_from_json.py msgid "Proboscis" @@ -187456,10 +188886,10 @@ msgstr "Cazador Persistente" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" -"Puedes perseguir a la presa durante kilómetros y kilómetros a distintos " -"ritmos hasta que se detenga por exhaución." +"Puedes perseguir presas durante kilómetros y kilómetros a distintos ritmos " +"hasta que se detengan debido al agotamieto." #: lang/json/mutation_from_json.py msgid "Extreme Persistence Hunter" @@ -187594,7 +189024,7 @@ msgstr "Mucho Sueño" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" "Te encuentras con la necesidad de dormir bastante a menudo. Pasarás la mitad" " del tiempo en o alrededor de la cama." @@ -188036,7 +189466,7 @@ msgstr "%1$s azota %2$s con sus enredaderas" #: lang/json/mutation_from_json.py msgid "Vine Sprouter" -msgstr "Germinador/a de Enredaderas" +msgstr "Germinador de Enredaderas" #. ~ Description for {'str': 'Vine Sprouter'} #: lang/json/mutation_from_json.py @@ -188097,7 +189527,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Rooter" -msgstr "Arraigador/a" +msgstr "Arraigador" #. ~ Description for {'str': 'Rooter'} #: lang/json/mutation_from_json.py @@ -188217,7 +189647,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Croaking Voice" -msgstr "" +msgstr "Voz de Rana" #. ~ Description for {'str': 'Croaking Voice'} #: lang/json/mutation_from_json.py @@ -188225,10 +189655,12 @@ msgid "" "You have a low, croaking voice, like an aged grandparent. Persuading NPCs " "will be easier, but threatening them will be more difficult." msgstr "" +"Tienes una voz grave y croante, como la de un abuelo anciano. Persuadir a " +"los PNJ será más fácil, pero amenazarlos será más difícil." #: lang/json/mutation_from_json.py msgid "Snarling Voice" -msgstr "Rugidor/a" +msgstr "Rugidor" #. ~ Description for {'str': 'Snarling Voice'} #: lang/json/mutation_from_json.py @@ -188241,7 +189673,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Hissing Voice" -msgstr "Siseador/a" +msgstr "Siseador" #. ~ Description for {'str': 'Hissing Voice'} #: lang/json/mutation_from_json.py @@ -188254,7 +189686,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Shouter" -msgstr "Gritador/a" +msgstr "Gritador" #. ~ Description for {'str': 'Shouter'} #: lang/json/mutation_from_json.py @@ -188272,7 +189704,7 @@ msgstr "Ocasionalmente, se te escapa un alarido." #: lang/json/mutation_from_json.py msgid "Howler" -msgstr "Aullador/a" +msgstr "Aullador" #. ~ Description for {'str': 'Howler'} #: lang/json/mutation_from_json.py @@ -188449,7 +189881,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Nacreous Shell" -msgstr "" +msgstr "Concha Nacarada" #. ~ Description for {'str': 'Nacreous Shell'} #: lang/json/mutation_from_json.py @@ -188457,6 +189889,8 @@ msgid "" "Your protective shell has developed increased strength and hardness and a " "mother of pearl sheen." msgstr "" +"Tu caparazón protector ha desarrollado una mayor resistencia y dureza y un " +"brillo nacarado." #: lang/json/mutation_from_json.py msgid "Leg Tentacles" @@ -188503,6 +189937,7 @@ msgid "" "You feel bad for all the creatures that don't carry their home on their " "backs." msgstr "" +"Te sientes mal por todas las criaturas que no llevan su hogar a cuestas." #. ~ Description for {'str': 'Bird'} #: lang/json/mutation_from_json.py @@ -188699,6 +190134,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "A perfect ambush predator, if only there were less competition." msgstr "" +"Un perfecto depredador de emboscada, si sólo hubiera menos competencia." #: lang/json/mutation_from_json.py msgid "Diminutive" @@ -188864,7 +190300,7 @@ msgstr "" "Una red de electroreceptores llenos de gelatina, como los de un tiburón, ha " "crecido a lo largo de tu cara y nariz. Son muy sensibles a los campos " "magnéticos, permitiéndote ver robots y criaturas cargadas de electricidad a " -"través de las paredes, pero ser electrocutado te destrozará seriamente." +"través de los muros, pero ser electrocutado te destrozará seriamente." #: lang/json/mutation_from_json.py msgid "Shark Teeth" @@ -189245,13 +190681,15 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Debug Stamina" -msgstr "" +msgstr "Depurar Vigor" #. ~ Description for {'str': 'Debug Stamina'} #: lang/json/mutation_from_json.py msgid "" "You can't run from the bugs, but you have enough stamina to at least try to." msgstr "" +"No puedes huir de los bichos, pero tienes suficiente resistencia para al " +"menos intentarlo." #: lang/json/mutation_from_json.py msgid "Debug Deodorizer" @@ -192612,7 +194050,7 @@ msgstr "Insensibilidad Abismal de Maná" #: lang/json/mutation_from_json.py msgid "Slime Breath" -msgstr "" +msgstr "Aliento de Cieno" #. ~ Description for {'str': 'Slime Breath'} #: lang/json/mutation_from_json.py @@ -192620,10 +194058,12 @@ msgid "" "Your breath is sticky and slimy somehow. This won't damage your " "interactions with people but it's definitely noticeable." msgstr "" +"Tu aliento es pegajoso y viscoso de alguna manera. Esto no perjudicará tus " +"interacciones con la gente, pero definitivamente se nota." #: lang/json/mutation_from_json.py msgid "Chimeric Breath" -msgstr "" +msgstr "Aliento Quimérico" #. ~ Description for {'str': 'Chimeric Breath'} #: lang/json/mutation_from_json.py @@ -192631,6 +194071,8 @@ msgid "" "Your breath could metaphorically melt lead. It's horrible. It's so bad " "that it can actually distract from your attempts to intimidate someone." msgstr "" +"Tu aliento podría fundir metafóricamente el plomo. Es horrible. Es tan malo " +"que puede distraer tus intentos de intimidar a alguien." #: lang/json/mutation_from_json.py msgid "Debug Spell Mutation" @@ -192919,6 +194361,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "¡SOY COMIDAPERSONA Y TRAIGO SUSTENTO!" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "Cíborg" @@ -192955,6 +194398,14 @@ msgstr "Tengo que reunir más huesos" msgid "Fisherman" msgstr "Pescador" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "Cyborg, tipo 1" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "Soy un ciborg." + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "Miembro" @@ -193564,6 +195015,14 @@ msgstr "Estoy buscando mutágeno tirano... Voy a ser un rey." msgid "Operator" msgstr "Operador" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "Bibliotecario de la Fragua" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "Me ocupo de los libros y los pergaminos." + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "Reina Pirata" @@ -193702,6 +195161,10 @@ msgstr "Mikhail Frolov" msgid "Heather Frolova" msgstr "Heather Frolova" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "Rubik" + #: lang/json/npc_from_json.py msgid "member" msgstr "miembro" @@ -193870,6 +195333,10 @@ msgstr "Agente de bolsa" msgid "Guard" msgstr "Guardia" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "Camionero" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "Makayla Sanchez" @@ -194038,6 +195505,10 @@ msgstr "Yoshimi" msgid "Forge Lord" msgstr "Señor de la Forja" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "Bibliotecario, A" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "Ex Pirata, Helen Tavrel" @@ -194885,11 +196356,11 @@ msgstr "edificio rural" #: lang/json/overmap_terrain_from_json.py msgid "sugar house" -msgstr "casa de azucar" +msgstr "casa del azucar" #: lang/json/overmap_terrain_from_json.py msgid "sugar house roof" -msgstr "tejado de casa de azucar" +msgstr "tejado de casa del azucar" #: lang/json/overmap_terrain_from_json.py msgid "potters cottage" @@ -195079,6 +196550,10 @@ msgstr "pozo de baba" msgid "rocky butte" msgstr "cuello volcánico" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "entrada a nivel de suelo" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "campamento de chatarra" @@ -195768,6 +197243,10 @@ msgstr "trinchera con púas" msgid "fabrication workshop survey" msgstr "informe de taller de fabricación" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "informe de taller de fabricación 2" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "informe de herreria" @@ -195776,25 +197255,41 @@ msgstr "informe de herreria" msgid "blacksmith shop" msgstr "herrería" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "informe de herreria" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "informe para ganado 2" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "informe de álmacen" +#: lang/json/overmap_terrain_from_json.py +msgid "store house survey 2" +msgstr "informe de álmacen 2" + #: lang/json/overmap_terrain_from_json.py msgid "saltworks survey" msgstr "informe de salinas" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "informe de cantina" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" -msgstr "informe_2 granja" +msgid "canteen survey 2" +msgstr "informe de cantina 2" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "informe de granja 2" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" +msgstr "informe de garaje 2" #: lang/json/overmap_terrain_from_json.py msgid "military helipad garage" @@ -196160,6 +197655,10 @@ msgstr "torre de exploración mi-go" msgid "subway station?" msgstr "¿estación de metro?" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "pasillo de laboratorio" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "reactor del laboratorio científico" @@ -197654,6 +199153,70 @@ msgstr "" "Encuentras consuelo en el fondo de las botellas. Maldita sea, necesito un " "trago." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "Adicto a Somniferos" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" +"Tenías dificultades para conciliar el sueño, así que empezaste a tomar esos " +"somníferos. El problema es que ahora ya no puedes conciliar el sueño sin " +"ellas y el Cataclismo complica el asunto." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "Adicta a Somniferos" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" +"Tenías dificultades para conciliar el sueño, así que empezaste a tomar esos " +"somníferos. El problema es que ahora ya no puedes conciliar el sueño sin " +"ellas y el Cataclismo complica el asunto." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "Yonki de la Cafeina" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" +"El café era tu compañero diario para sobrevivir a tu trabajo, pero ahora " +"introducir la cafeína en tu cuerpo será mucho más difícil." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "Yonki de la Cafeina" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" +"El café era tu compañero diario para sobrevivir a tu trabajo, pero ahora " +"introducir la cafeína en tu cuerpo será mucho más difícil." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -197788,6 +199351,40 @@ msgstr "" "del ritmo de la vida moderna. La tierra salvaje no está llena de gente, así " "que debe ser segura. ¿No es así? Debe serlo." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "Fabricador de Matorrales" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" +"Llevas la acampada a un nuevo nivel. Has pasado noches y fines de semana " +"sobreviviendo en la naturaleza con sólo un cuchillo para ayudarte. Tal vez " +"esto pueda mantenerte a salvo lejos de la gente." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "Fabricador de Matorrales" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" +"Llevas la acampada a un nuevo nivel. Has pasado noches y fines de semana " +"sobreviviendo en la naturaleza con sólo un cuchillo para ayudarte. Tal vez " +"esto pueda mantenerte a salvo lejos de la gente." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -197828,10 +199425,10 @@ msgstr "Amante de Libros" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" -"Te encanta leer, pero parece que nunca tienes tiempo suficiente. Tal vez el " -"cataclismo sea una bendición disfrazada." +"Te encanta leer, pero nunca pareces tener suficiente tiempo. Quizá el " +"Cataclismo sea una bendición disfrazada." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -197843,10 +199440,10 @@ msgstr "Amante de Libros" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" -"Te encanta leer, pero parece que nunca tienes tiempo suficiente. Tal vez el " -"cataclismo sea una bendición disfrazada." +"You love reading, you just never seemed to have enough time. Maybe the " +"Cataclysm is a blessing in disguise." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -198506,6 +200103,36 @@ msgstr "" "¡Realmente disfrutas comiendo y puedes comer y beber más rápido que " "cualquier otra persona!" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "Corredor de Maratón" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" +"Fuiste y corriste la maratón de Boston cada año. Ahora, ese entrenamiento ha" +" sido muy útil para evitar a la muerte." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "Corredora de Maratón" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" +"Fuiste y corriste la maratón de Boston cada año. Ahora, ese entrenamiento ha" +" sido muy útil para evitar a la muerte." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -198820,6 +200447,70 @@ msgstr "" " hora de esquivar y es menos probable que caigas si te golpean en un combate" " cuerpo a cuerpo mientras llevas patines o patinetas." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "Arte y Fabricación" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" +"Te encantaba hacer manualidades en casa. Espero que esto te ayude a " +"sobrevivir ahora que el mundo se ha ido al infierno." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "Arte y Fabricación" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" +"Te encantaba hacer manualidades en casa. Esperas que esto te ayude a " +"sobrevivir ahora que el mundo se ha ido al infierno." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "Reconstructor de coches" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" +"Pasar cada fin de semana en tu garaje trabajando en un viejo coche clásico " +"era tu pasatiempo favorito. Nunca terminaste el coche, pero al menos " +"aprendiste un poco con los años." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "Reconstructora de coches" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" +"Pasar cada fin de semana en tu garaje trabajando en un viejo coche clásico " +"era tu pasatiempo favorito. Nunca terminaste el coche, pero al menos " +"aprendiste un poco con los años." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -198962,6 +200653,42 @@ msgstr "" "Has guiado los viajes de los jugadores a través de tus mazmorras y " "fortalezas. Ahora, eres la última miembro de tu grupo." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "Operador Radioaficionado" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" +"Has pasado las noches utilizando, construyendo y reparando viejas radios de " +"radioaficionado. Ahora no tienes a nadie con quien hablar. Pero no pierdes " +"la esperanza y quizás tus conocimientos de electrónica puedan ayudarte de " +"alguna manera." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "Operadora Radioaficionada" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" +"Has pasado las noches utilizando, construyendo y reparando viejas radios de " +"radioaficionado. Ahora no tienes a nadie con quien hablar. Pero no pierdes " +"la esperanza y quizás tus conocimientos de electrónica puedan ayudarte de " +"alguna manera." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -199018,6 +200745,40 @@ msgstr "" "Tu habilidad para jugar de punta o de poste vencerá a los muertos vivientes " "en el tiempo extra." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "Tirador de Campo" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" +"Te gustaba ir a la tienda de armas local y hacer un poco de tiro al blanco. " +"A veces incluso a latas de los postes de la valla. Tal vez si te imaginas " +"objetivos en esas cosas muertas, esto podría ayudar." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "Tiradora de Campo" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" +"Te gustaba ir a la tienda de armas local y hacer un poco de tiro al blanco. " +"A veces incluso a latas de los postes de la valla. Tal vez si te imaginas " +"objetivos en esas cosas muertas, esto podría ayudar." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -199042,6 +200803,70 @@ msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" "Los profesionales de la medicina no vienen, pero vivirás a pesar de todo." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "Tirador al Plato" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" +"No hay nada como el olor del humo de las armas y el soplado de discos " +"cerámicos de color naranja en el cielo. Es hora de disparar a cosas un poco " +"más carnosas que las palomas de arcilla." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "Tiradora al Plato" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" +"No hay nada como el olor del humo de las armas y el soplado de discos " +"cerámicos de color naranja en el cielo. Es hora de disparar a cosas un poco " +"más carnosas que las palomas de arcilla." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "Cocinero de Parrilladas" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" +"Te gustaba invitar al vecindario a una reunión en el patio trasero la " +"mayoría de los fines de semana. Tú, por supuesto, eras el maestro de la " +"parrilla." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "Cocinera de Parrilladas" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" +"Te gustaba invitar al vecindario a una reunión en el patio trasero la " +"mayoría de los fines de semana. Tú, por supuesto, eras la maestra de la " +"parrilla." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -199495,7 +201320,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Meditation" -msgstr "" +msgstr "Meditador" #. ~ Profession (male Meditation) description #: lang/json/professions_from_json.py @@ -199510,7 +201335,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Meditation" -msgstr "" +msgstr "Meditadora" #. ~ Profession (female Meditation) description #: lang/json/professions_from_json.py @@ -199986,6 +201811,8 @@ msgid "" "You played with the local team. You're the only one left, but now you can " "use your trusty bat for another purpose. Home run!" msgstr "" +"Has jugado con el equipo local. Eres el único que queda, pero ahora puedes " +"usar tu fiel bate para otro propósito. ¡Home run!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -199999,6 +201826,8 @@ msgid "" "You played with the local team. You're the only one left, but now you can " "use your trusty bat for another purpose. Home run!" msgstr "" +"Has jugado con el equipo local. Eres la única que queda, pero ahora puedes " +"usar tu fiel bate para otro propósito. ¡Home run!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -200086,6 +201915,10 @@ msgid "" "tours now, but as the saying goes, life is like riding a bicycle: you've got" " to keep moving." msgstr "" +"Eras un joven ciclista que prometía tener una carrera brillante por delante " +"antes de que esto pasara. Ya no vas a poder participar en un gran tour, pero" +" como dice el dicho: La vida es como andar en bicicleta, tienes que seguir " +"moviéndote." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -200101,6 +201934,10 @@ msgid "" "tours now, but as the saying goes, life is like riding a bicycle: you've got" " to keep moving." msgstr "" +"Eras una joven ciclista que prometía tener una carrera brillante por delante" +" antes de que esto pasara. Ya no vas a poder participar en un gran tour, " +"pero como dice el dicho: La vida es como andar en bicicleta, tienes que " +"seguir moviéndote." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -200116,6 +201953,10 @@ msgid "" " duty have left your shooting skills rusty, and all the medals in the world " "won't protect you now." msgstr "" +"Has ascendido de soldado raso a General de División, siendo respetado y " +"condecorado. En el lado negativo, los años de trabajo de oficina han dejado " +"oxidadas tus habilidades de tiro, y todas las medallas del mundo no te " +"protegerán ahora." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -200131,6 +201972,10 @@ msgid "" " duty have left your shooting skills rusty, and all the medals in the world " "won't protect you now." msgstr "" +"Has ascendido de soldada rasa a General de División, siendo respetada y " +"condecorada. En el lado negativo, los años de trabajo de oficina han dejado " +"oxidadas tus habilidades de tiro, y todas las medallas del mundo no te " +"protegerán ahora." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -200185,6 +202030,10 @@ msgid "" "the mechanic's trade, keeping the armor running. It's been years since you " "last touched a rifle, and the dead men are marching again…" msgstr "" +"Al principio de tu carrera militar, te eligieron para un entrenamiento extra" +" en el oficio de mecánico, manteniendo las armaduras en funcionamiento. Han " +"pasado años desde la última vez que tocaste un rifle, y los hombres muertos " +"están marchando de nuevo..." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -200199,6 +202048,10 @@ msgid "" "the mechanic's trade, keeping the armor running. It's been years since you " "last touched a rifle, and the dead men are marching again…" msgstr "" +"Al principio de tu carrera militar, te eligieron para un entrenamiento extra" +" en el oficio de mecánica, manteniendo las armaduras en funcionamiento. Han " +"pasado años desde la última vez que tocaste un rifle, y los hombres muertos " +"están marchando de nuevo..." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -200214,6 +202067,10 @@ msgid "" "years since you last handled a rifle in basic training; now might be the " "time to dust off those skills." msgstr "" +"Tu trabajo era simple. Mantener al ejército en movimiento. Construistes " +"puentes, carreteras, destruistes fortificaciones y limpiastes minas. Han " +"pasado años desde la última vez que manejaste un rifle en el entrenamiento " +"básico, ahora podría ser el momento de desempolvar esas habilidades." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -200229,6 +202086,10 @@ msgid "" "years since you last handled a rifle in basic training; now might be the " "time to dust off those skills." msgstr "" +"Tu trabajo era simple. Mantener al ejército en movimiento. Construistes " +"puentes, carreteras, destruistes fortificaciones y limpiastes minas. Han " +"pasado años desde la última vez que manejaste un rifle en el entrenamiento " +"básico, ahora podría ser el momento de desempolvar esas habilidades." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -200243,6 +202104,9 @@ msgid "" "sort of parental figure, and they relied on you to give orders and keep them" " alive. You failed them. And now you're alone." msgstr "" +"Eres un veterano de varias misiones de mantenimiento de paz. Dirigiste tu " +"escuadrón como una especie de figura paterna, y ellos confiaron en ti para " +"dar órdenes y mantenerlos vivos. Les fallaste. Y ahora estás solo." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -200257,6 +202121,9 @@ msgid "" "sort of parental figure, and they relied on you to give orders and keep them" " alive. You failed them. And now you're alone." msgstr "" +"Eres un veterana de varias misiones de mantenimiento de paz. Dirigiste tu " +"escuadrón como una especie de figura materna, y ellos confiaron en ti para " +"dar órdenes y mantenerlos vivos. Les fallaste. Y ahora estás sola." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -200665,6 +202532,9 @@ msgid "" "friends. But for all the crap thrown your way, you're still breathing. For" " now." msgstr "" +"La sociedad te llevó a la marginalidad y te dejó sin hogar, sin familia y " +"sin amigos. Pero a pesar de toda la mierda que te han lanzado, sigues " +"respirando. Por ahora." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -200679,6 +202549,9 @@ msgid "" "friends. But for all the crap thrown your way, you're still breathing. For" " now." msgstr "" +"La sociedad te llevó a la marginalidad y te dejó sin hogar, sin familia y " +"sin amigos. Pero a pesar de toda la mierda que te han lanzado, sigues " +"respirando. Por ahora." #. ~ Profession (male Helicopter Pilot) description #: lang/json/professions_from_json.py @@ -201014,6 +202887,10 @@ msgid "" "motorcycle to escape. Who's going to respect your authority when the " "government this badge represents doesn't exist anymore?" msgstr "" +"Sólo un ayudante de sheriff de un pueblo pequeño, recibiste la llamada y te " +"dispusiste a ir al rescate. Pronto fuiste tú quien necesitó ser rescatado, y" +" tuviste que abandonar tu motocicleta para escapar. ¿Quién va a respetar tu " +"autoridad cuando el gobierno que representa esta placa ya no existe?" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201029,6 +202906,10 @@ msgid "" "motorcycle to escape. Who's going to respect your authority when the " "government this badge represents doesn't exist anymore?" msgstr "" +"Sólo una ayudante de sheriff de un pueblo pequeño, recibiste la llamada y te" +" dispusiste a ir al rescate. Pronto fuiste tú quien necesitó ser rescatada, " +"y tuviste que abandonar tu motocicleta para escapar. ¿Quién va a respetar tu" +" autoridad cuando el gobierno que representa esta placa ya no existe?" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201297,6 +203178,10 @@ msgid "" "way to pick up a customer, a riot broke out around you. You took a long " "detour to safety, only to find yourself somewhere unfamiliar." msgstr "" +"Te encanta conducir y decidistes empezar a ganar dinero haciéndolo. De " +"camino a recoger a un cliente, estalló un motín a tu alrededor. Distes un " +"gran rodeo para ponerte a salvo, solo para encontrarte en un lugar " +"desconocido." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201311,6 +203196,10 @@ msgid "" "way to pick up a customer, a riot broke out around you. You took a long " "detour to safety, only to find yourself somewhere unfamiliar." msgstr "" +"Te encanta conducir y decidistes empezar a ganar dinero haciéndolo. De " +"camino a recoger a un cliente, estalló un motín a tu alrededor. Distes un " +"gran rodeo para ponerte a salvo, solo para encontrarte en un lugar " +"desconocido." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201326,6 +203215,11 @@ msgid "" " took a long detour only to find yourself lost. That call will have to wait" " - you're in an emergency of your own now." msgstr "" +"Cuando ibas a responder a una llamada de emergencia, estuviste a punto de " +"meterte de lleno en los disturbios de la ciudad. Al desviarte de las calles " +"en llamas y cubiertas de escombros, tomastes un largo desvío y te " +"encontraste perdido. Esa llamada tendrá que esperar: ahora estás con tu " +"propia emergencia." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201341,6 +203235,11 @@ msgid "" " took a long detour only to find yourself lost. That call will have to wait" " - you're in an emergency of your own now." msgstr "" +"Cuando ibas a responder a una llamada de emergencia, estuviste a punto de " +"meterte de lleno en los disturbios de la ciudad. Al desviarte de las calles " +"en llamas y cubiertas de escombros, tomastes un largo desvío y te " +"encontraste perdido. Esa llamada tendrá que esperar: ahora estás con tu " +"propia emergencia." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201357,6 +203256,11 @@ msgid "" "You veered off onto an old, neglected side road to escape, only to find " "yourself lost and low on gas." msgstr "" +"Contratado por una gran empresa, realizabas servicios de instalación y " +"resolución de problemas en las casas de luditas ingratos. Cuando volvías de " +"tu última visita, de repente te vistes rodeado por lo que creías que eran " +"alborotadores furiosos. Te desviaste por una vieja y descuidada carretera " +"secundaria para escapar, pero te encontraste perdido y con poca gasolina." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201373,6 +203277,11 @@ msgid "" "You veered off onto an old, neglected side road to escape, only to find " "yourself lost and low on gas." msgstr "" +"Contratada por una gran empresa, realizabas servicios de instalación y " +"resolución de problemas en las casas de luditas ingratos. Cuando volvías de " +"tu última visita, de repente te vistes rodeado por lo que creías que eran " +"alborotadores furiosos. Te desviaste por una vieja y descuidada carretera " +"secundaria para escapar, pero te encontraste perdido y con poca gasolina." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201389,6 +203298,12 @@ msgid "" " but now you've gotten lost. At least you're getting a break from the " "hellish screams of children, though you're starting to hear new ones…" msgstr "" +"Te ganabas la vida llevando y trayendo niños al colegio, una elección " +"profesional de la que te arrepentías casi a diario. Ninguno de los mocosos " +"estaba en sus paradas normales, y el ruido de tu autobús atrajo rápidamente " +"a hordas de zombis. Escapaste, pero ahora te has perdido. Por lo menos estás" +" descansando de los gritos infernales de los niños, aunque empiezas a oír " +"otros nuevos..." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201405,6 +203320,12 @@ msgid "" " but now you've gotten lost. At least you're getting a break from the " "hellish screams of children, though you're starting to hear new ones…" msgstr "" +"Te ganabas la vida llevando y trayendo niños al colegio, una elección " +"profesional de la que te arrepentías casi a diario. Ninguno de los mocosos " +"estaba en sus paradas normales, y el ruido de tu autobús atrajo rápidamente " +"a hordas de zombis. Escapaste, pero ahora te has perdido. Por lo menos estás" +" descansando de los gritos infernales de los niños, aunque empiezas a oír " +"otros nuevos..." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201419,6 +203340,9 @@ msgid "" "robbery. It all went to shit, your backup got eaten, and you were lucky to " "escape with your life and patrol car." msgstr "" +"Como agente de policía de servicio, recibiste la llamada y estabas preparado" +" para responder al robo. Todo se fue a la mierda, te comieron los refuerzos " +"y tuviste suerte de escapar con vida y con el coche patrulla." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201433,6 +203357,9 @@ msgid "" "robbery. It all went to shit, your backup got eaten, and you were lucky to " "escape with your life and patrol car." msgstr "" +"Como agente de policía de servicio, recibiste la llamada y estabas preparado" +" para responder al robo. Todo se fue a la mierda, te comieron los refuerzos " +"y tuviste suerte de escapar con vida y con el coche patrulla." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201449,6 +203376,12 @@ msgid "" "act of rebellion against the cruelty of this doomed world. Do not let that " "flame of hope perish inside you." msgstr "" +"Tú y un grupo de personas con ideas afines habéis construido un escondite en" +" el bosque desde el que lanzar incursiones de saqueo en una camioneta " +"improvisada. La última incursión salió mal, y ahora todos tus compañeros " +"están muertos. Cada aliento que tomas ahora es un acto de rebelión contra la" +" crueldad de este mundo condenado. No dejes que esa llama de esperanza " +"perezca en tu interior." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201465,6 +203398,12 @@ msgid "" "act of rebellion against the cruelty of this doomed world. Do not let that " "flame of hope perish inside you." msgstr "" +"Tú y un grupo de personas con ideas afines habéis construido un escondite en" +" el bosque desde el que lanzar incursiones de saqueo en una camioneta " +"improvisada. La última incursión salió mal, y ahora todos tus compañeros " +"están muertos. Cada aliento que tomas ahora es un acto de rebelión contra la" +" crueldad de este mundo condenado. No dejes que esa llama de esperanza " +"perezca en tu interior." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201481,6 +203420,11 @@ msgid "" "stockpiled as many supplies as possible and set out in your pickup looking " "for answers." msgstr "" +"Tus días patrullando el parque y protegiendo a la gente y a la fauna de " +"otros te han enseñado muchas habilidades útiles. Después de encontrar una " +"escena espantosa en un campamento y de no recibir respuesta cuando pediste " +"ayuda por radio, hiciste acopio de todas las provisiones posibles y saliste " +"en tu camioneta en busca de respuestas." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201497,6 +203441,11 @@ msgid "" "stockpiled as many supplies as possible and set out in your pickup looking " "for answers." msgstr "" +"Tus días patrullando el parque y protegiendo a la gente y a la fauna de " +"otros te han enseñado muchas habilidades útiles. Después de encontrar una " +"escena espantosa en un campamento y de no recibir respuesta cuando pediste " +"ayuda por radio, hiciste acopio de todas las provisiones posibles y saliste " +"en tu camioneta en busca de respuestas." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201510,6 +203459,9 @@ msgid "" "You're a lumberjack, and you're okay. You felled trees before the world " "ended, and you suspect the undead aren't nearly as tough." msgstr "" +"Eres leñador y estás bien. Talabas árboles antes de que el mundo se " +"terminara, pero sospechas que los muertos vivientes no serán tan " +"resistentes." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201523,6 +203475,9 @@ msgid "" "You're a lumberjack, and you're okay. You felled trees before the world " "ended, and you suspect the undead aren't nearly as tough." msgstr "" +"Eres leñadora y estás bien. Talabas árboles antes de que el mundo se " +"terminara, pero sospechas que los muertos vivientes no serán tan " +"resistentes." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201537,6 +203492,9 @@ msgid "" "irritable and unreasonable than usual today. You showed them the meaning of" " fast food… by running for your life!" msgstr "" +"Los comensales de la elegante hamburguesería en la que trabajas parecen hoy " +"aún más irritables y poco razonables que de costumbre. Hora de demostrar el " +"significado de la comida rápida... ¡corriendo por tu vida!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201551,6 +203509,9 @@ msgid "" "irritable and unreasonable than usual today. You showed them the meaning of" " fast food… by running for your life!" msgstr "" +"Los comensales de la elegante hamburguesería en la que trabajas parecen hoy " +"aún más irritables y poco razonables que de costumbre. Hora de demostrar el " +"significado de la comida rápida... ¡corriendo por tu vida!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201599,6 +203560,11 @@ msgid "" " no one stopping you from your dream of breaking into a military mainframe " "now." msgstr "" +"Las pastillas de cafeína y las noches enteras frente a la pantalla del " +"ordenador te han convertido en un experto en escribir y descifrar códigos. " +"Por desgracia, se ha ido la luz y, de repente, tus habilidades de élite " +"parecen mucho menos útiles. Al menos, ahora nadie te impide cumplir tu sueño" +" de entrar en un ordenador central militar." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201615,6 +203581,11 @@ msgid "" " no one stopping you from your dream of breaking into a military mainframe " "now." msgstr "" +"Las pastillas de cafeína y las noches enteras frente a la pantalla del " +"ordenador te han convertido en una experta en escribir y descifrar códigos. " +"Por desgracia, se ha ido la luz y, de repente, tus habilidades de élite " +"parecen mucho menos útiles. Al menos, ahora nadie te impide cumplir tu sueño" +" de entrar en un ordenador central militar." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -201736,6 +203707,8 @@ msgid "" "You spent most of your life on a motorcycle, out on the open road with your " "club. Now they're all dead. Time to ride or die." msgstr "" +"Has pasado la mayor parte de tu vida en una motocicleta, en la carretera con" +" tu club. Ahora están todos muertos. Es hora de montar o morir." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -201749,6 +203722,8 @@ msgid "" "You spent most of your life on a motorcycle, out on the open road with your " "club. Now they're all dead. Time to ride or die." msgstr "" +"Has pasado la mayor parte de tu vida en una motocicleta, en la carretera con" +" tu club. Ahora están todos muertos. Es hora de montar o morir." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -202274,6 +204249,9 @@ msgid "" "Neither snow nor rain nor heat nor gloom of night stays you from the swift " "completion of your appointed rounds, but nobody said anything about zombies." msgstr "" +"Ni la nieve, ni la lluvia, ni el calor, ni la oscuridad de la noche, te " +"impiden completar rápidamente tus rondas, pero nadie dijo nada sobre los " +"zombis." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -202287,6 +204265,9 @@ msgid "" "Neither snow nor rain nor heat nor gloom of night stays you from the swift " "completion of your appointed rounds, but nobody said anything about zombies." msgstr "" +"Ni la nieve, ni la lluvia, ni el calor, ni la oscuridad de la noche, te " +"impiden completar rápidamente tus rondas, pero nadie dijo nada sobre los " +"zombis." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -202301,6 +204282,9 @@ msgid "" "The Cataclysm has offered you a chance to escape, but freedom may come with " "a steep price." msgstr "" +"Tu juicio fue polémico, pero inevitablemente te encontraste entre rejas. El " +"Cataclismo te ha ofrecido una oportunidad de escapar, pero la libertad puede" +" tener un precio muy alto." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -202315,6 +204299,9 @@ msgid "" "The Cataclysm has offered you a chance to escape, but freedom may come with " "a steep price." msgstr "" +"Tu juicio fue polémico, pero inevitablemente te encontraste entre rejas. El " +"Cataclismo te ha ofrecido una oportunidad de escapar, pero la libertad puede" +" tener un precio muy alto." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -202399,6 +204386,9 @@ msgid "" "they had the nerve to put you in jail for it. Too bad you can't sell drugs " "to zombies." msgstr "" +"Saliste de la pobreza vendiendo productos que todos querían, y tuvieron el " +"descaro de meterte en la cárcel por ello. Lástima que no puedas vender " +"drogas a zombis." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -202413,6 +204403,9 @@ msgid "" "they had the nerve to put you in jail for it. Too bad you can't sell drugs " "to zombies." msgstr "" +"Saliste de la pobreza vendiendo productos que todos querían, y tuvieron el " +"descaro de meterte en la cárcel por ello. Lástima que no puedas vender " +"drogas a zombis." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -203715,6 +205708,9 @@ msgid "" " It wouldn't be a lie to say that running is your life. Which is good, " "because now that the end has come, you're running FOR your life." msgstr "" +"Practicaste parkour por muchos años y convertiste al mundo en tu parque de " +"juegos. No sería mentira decir que correr es tu vida. Y está muy bien, " +"porque ahora que llegó el fin, vas a correr por tu vida." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -203729,6 +205725,9 @@ msgid "" " It wouldn't be a lie to say that running is your life. Which is good, " "because now that the end has come, you're running FOR your life." msgstr "" +"Practicaste parkour por muchos años y convertiste al mundo en tu parque de " +"juegos. No sería mentira decir que correr es tu vida. Y está muy bien, " +"porque ahora que llegó el fin, vas a correr por tu vida." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -203743,6 +205742,9 @@ msgid "" " ever leaving home. You came here to get a taste of New England, but New " "England keeps trying to get a taste of you!" msgstr "" +"Este parecía un lugar estupendo para unas vacaciones, pero estás empezando a" +" arrepentirte de haber salido de casa. ¡Has venido a probar algo de Nueva " +"Inglaterra, pero Nueva Inglaterra sigue intentando probarte a ti!." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -203757,6 +205759,9 @@ msgid "" " ever leaving home. You came here to get a taste of New England, but New " "England keeps trying to get a taste of you!" msgstr "" +"Este parecía un lugar estupendo para unas vacaciones, pero estás empezando a" +" arrepentirte de haber salido de casa. ¡Has venido a probar algo de Nueva " +"Inglaterra, pero Nueva Inglaterra sigue intentando probarte a ti!." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -204427,6 +206432,10 @@ msgid "" "tried to bite you. To top it off, it seems that this wasn't some sort of " "bad high, as the whole town tried going for your throat too." msgstr "" +"Estabas a punto de hacer tu mayor venta hasta la fecha, pero cuando te " +"encontraste con el comprador éste intentó morderte. Para colmo, parece que " +"no se trataba de un mal subidón para el usuario, ya que todo el pueblo " +"intentó ir a por tu garganta también." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -204441,11 +206450,15 @@ msgid "" "tried to bite you. To top it off, it seems that this wasn't some sort of " "bad high, as the whole town tried going for your throat too." msgstr "" +"Estabas a punto de hacer tu mayor venta hasta la fecha, pero cuando te " +"encontraste con el comprador éste intentó morderte. Para colmo, parece que " +"no se trataba de un mal subidón para el usuario, ya que todo el pueblo " +"intentó ir a por tu garganta también." #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Mafia Boss" -msgstr "" +msgstr "Jefe de la Mafia" #. ~ Profession (male Mafia Boss) description #: lang/json/professions_from_json.py @@ -204466,7 +206479,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Mafia Boss" -msgstr "" +msgstr "Jefa de la Mafia" #. ~ Profession (female Mafia Boss) description #: lang/json/professions_from_json.py @@ -204484,6 +206497,80 @@ msgstr "" "día del juicio final llegó antes. Tu banda ha desaparecido, pero tu vida " "pasada te preparó para un mundo en el que la violencia es moneda de cambio." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "Investigador Paranormal" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" +"Te despidieron de tu puesto de profesor de parapsicología en la universidad " +"local y empezaste tu propio negocio como investigador paranormal. Tus " +"antiguos colegas no aprobaron tu investigación, pero parece que ahora está " +"dando sus frutos." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "Investigadora Paranormal" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" +"Te despidieron de tu puesto de profesora de parapsicología en la universidad" +" local y empezaste tu propio negocio como investigadora paranormal. Tus " +"antiguos colegas no aprobaron tu investigación, pero parece que ahora está " +"dando sus frutos." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "Observador de aves" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" +"Estabas en tu parque favorito observando a los petirrojos cuando se produjo " +"el cataclismo. Ahora lo único que tienes son tus prismáticos y un montón de " +"curiosidades sobre las aves locales para compartirlas con los supervivientes" +" que puedas encontrar." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "Observadora de aves" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" +"Estabas en tu parque favorito observando a los petirrojos cuando se produjo " +"el cataclismo. Ahora lo único que tienes son tus prismáticos y un montón de " +"curiosidades sobre las aves locales para compartirlas con los supervivientes" +" que puedas encontrar." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -209978,6 +212065,32 @@ msgid "" msgstr "" "Eres hábil detectando cosas fuera de lo común, como trampas o emboscadas." +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "Depurar Punto Débil" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" +"Mejora básica en la probabilidad de golpear uno de los puntos débiles de un " +"monstruo." + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "Depurar Punto Débil Experto" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" +"Mejora experta en la probabilidad de golpear uno de los puntos débiles de un" +" monstruo." + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "Girador de Fibras" @@ -210592,7 +212705,7 @@ msgid "" "survivors." msgstr "" "Deberíamos construir un par de camas con colchón en la cabaña del oeste para" -" nuestros sobrevivientes." +" nuestros supervivientes." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in W shack" @@ -210698,7 +212811,7 @@ msgid "" "survivors." msgstr "" "Deberíamos construir un par de camas de paja en la cabaña del suroeste para " -"nuestros sobrevivientes." +"nuestros supervivientes." #: lang/json/recipe_from_json.py msgid "pair of straw beds in SW shack" @@ -211316,12 +213429,12 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "We must barricade windows, let's use wooden walls." -msgstr "Debemos poner barricadas en las ventanas, usemos paredes de madera." +msgstr "Debemos poner barricadas en las ventanas, usemos muros de madera." #: lang/json/recipe_from_json.py msgid "We must barricade windows, let's use resin walls." msgstr "" -"Debemos poner barricadas en las ventanas, usemos paredes de resina mi-go." +"Debemos poner barricadas en las ventanas, usemos muros de resina mi-go." #: lang/json/recipe_from_json.py msgid "resin barricades" @@ -212001,8 +214114,8 @@ msgid "" "We need some shelter, so build migo resin walls over windows in radio " "control's room." msgstr "" -"Necesitamos un poco de refugio, construye paredes de resina de mi-go sobre " -"las ventanas de la habitación del radiocontrol." +"Necesitamos un poco de refugio, construye muros de resina de mi-go sobre las" +" ventanas de la habitación del radiocontrol." #: lang/json/recipe_from_json.py msgid "barricade radio control's room" @@ -212213,16 +214326,16 @@ msgid "" "We need some shelter, so build wooden walls over windows in radio control's " "room." msgstr "" -"Necesitamos algún refugio, construye paredes de madera sobre las ventanas de" -" la sala de control de radio." +"Necesitamos algún refugio, construye muros de madera sobre las ventanas de " +"la sala de control de radio." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wooden shack with a wooden roof inside " "radio tower." msgstr "" -"Necesitamos algún refugio, construye paredes de madera sobre las ventanas de" -" la sala de control de radio." +"Necesitamos algún refugio, construye muros de madera sobre las ventanas de " +"la sala de control de radio." #: lang/json/recipe_from_json.py msgid "" @@ -212521,7 +214634,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "build the standard white living quarters walls" -msgstr "construye las paredes blancas estándar de la vivienda" +msgstr "construye los muros blancas estándar de la vivienda" #: lang/json/recipe_from_json.py msgid "" @@ -212533,7 +214646,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "build the wood panel living quarters walls" -msgstr "construye las paredes de la vivienda de paneles de madera" +msgstr "construye los muros de la vivienda de paneles de madera" #: lang/json/recipe_from_json.py msgid "" @@ -212545,7 +214658,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "build the log living quarters walls" -msgstr "construye las paredes de la vivienda de leños" +msgstr "construye los muros de la vivienda de leños" #: lang/json/recipe_from_json.py msgid "" @@ -212557,7 +214670,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "build the metal living quarters walls" -msgstr "construye las paredes de la vivienda de metal" +msgstr "construye los muros de la vivienda de metal" #: lang/json/recipe_from_json.py msgid "" @@ -212569,7 +214682,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "build the mi-go resin living quarters walls" -msgstr "construye las paredes de la vivienda de resina mi-go" +msgstr "construye los muros de la vivienda de resina mi-go" #: lang/json/recipe_from_json.py msgid "" @@ -212581,7 +214694,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "build the rammed earth living quarters walls" -msgstr "construye las paredes de la vivienda de tierra compactada" +msgstr "construye los muros de la vivienda de tierra compactada" #: lang/json/recipe_from_json.py msgid "" @@ -212593,7 +214706,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "build the rock earth living quarters walls" -msgstr "construye las paredes de la vivienda de piedra tierra" +msgstr "construye los muros de la vivienda de piedra tierra" #: lang/json/recipe_from_json.py msgid "" @@ -214600,12 +216713,12 @@ msgid "" "Building a strong wall will keep the base secure even if a small horde " "attacks." msgstr "" -"Construir una pared fuerte mantendrá nuestra base segura aunque nos ataque " -"una pequeña horda." +"Construye un muro fuerte mantendrá nuestra base segura aunque nos ataque una" +" pequeña horda." #: lang/json/recipe_from_json.py msgid "basic partial wall" -msgstr "pared parcial básica" +msgstr "muro parcial básico" #: lang/json/recipe_from_json.py msgid "We need to finish our half built fortifications." @@ -214613,7 +216726,7 @@ msgstr "Necesitamos terminar nuestras fortificaciones a medio hacer." #: lang/json/recipe_from_json.py msgid "basic complete wall" -msgstr "pared completa básica" +msgstr "muro completo básico" #: lang/json/recipe_from_json.py msgid "We're running out of room and need another living quarters." @@ -214688,7 +216801,7 @@ msgstr "Cocina chimenea de cabaña" #: lang/json/recipe_from_json.py msgid "We need to finish framing the walls for the cook-shack." msgstr "" -"Necesitamos terminar la estructura de las paredes para el cuarto de cocina." +"Necesitamos terminar la estructura de los muros de la cabaña de la cocina." #: lang/json/recipe_from_json.py msgid "Kitchen finished shack" @@ -215038,7 +217151,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "build SE log bedroom walls" -msgstr "construye las paredes del dormitorio de leños del Sureste" +msgstr "construye los muros del dormitorio de leños del SurEste" #: lang/json/recipe_from_json.py msgid "" @@ -215050,7 +217163,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "build E log bedroom walls" -msgstr "construye las paredes de la habitación de leños al Este" +msgstr "construye los muros de la habitación de leños al Este" #: lang/json/recipe_from_json.py msgid "" @@ -215062,75 +217175,75 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "build SW log bedroom walls" -msgstr "construye las paredes del dormitorio de leños del SurOeste" +msgstr "construye los muros del dormitorio de leños del SurOeste" #: lang/json/recipe_from_json.py msgid "build W log bedroom walls" -msgstr "construye las paredes del dormitorio de leños del Oeste" +msgstr "construye los muros del dormitorio de leños del Oeste" #: lang/json/recipe_from_json.py msgid "build NW log bedroom walls" -msgstr "construye las paredes del dormitorio de leños del NorOeste" +msgstr "construye los muros del dormitorio de leños del NorOeste" #: lang/json/recipe_from_json.py msgid "build SE rock bedroom walls" -msgstr "construye las paredes del dormitorio de roca del SurEste" +msgstr "construye los muros del dormitorio de roca del SurEste" #: lang/json/recipe_from_json.py msgid "build E rock bedroom walls" -msgstr "construye las paredes del dormitorio de roca del Este" +msgstr "construye los muros del dormitorio de roca del Este" #: lang/json/recipe_from_json.py msgid "build SW rock bedroom walls" -msgstr "construye las paredes del dormitorio de roca del SurOeste" +msgstr "construye los muros del dormitorio de roca del SurOeste" #: lang/json/recipe_from_json.py msgid "build W rock bedroom walls" -msgstr "construye las paredes del dormitorio de roca del Oeste" +msgstr "construye los muros del dormitorio de roca del Oeste" #: lang/json/recipe_from_json.py msgid "build NW rock bedroom walls" -msgstr "construye las paredes del dormitorio de roca del NorOeste" +msgstr "construye los muros del dormitorio de roca del NorOeste" #: lang/json/recipe_from_json.py msgid "build SE standard bedroom walls" -msgstr "construye las paredes normales del dormitorio del SurEste" +msgstr "construye los muros normales del dormitorio del SurEste" #: lang/json/recipe_from_json.py msgid "build E standard bedroom walls" -msgstr "construye las paredes normales del dormitorio del Este" +msgstr "construye los muros normales del dormitorio del Este" #: lang/json/recipe_from_json.py msgid "build SW standard bedroom walls" -msgstr "construye las paredes normales del dormitorio del SurOeste" +msgstr "construye los muros normales del dormitorio del SurOeste" #: lang/json/recipe_from_json.py msgid "build W standard bedroom walls" -msgstr "construye las paredes normales del dormitorio del Oeste" +msgstr "construye los muros normales del dormitorio del Oeste" #: lang/json/recipe_from_json.py msgid "build NW standard bedroom walls" -msgstr "construye las paredes normales del dormitorio del NorOeste" +msgstr "construye los muros normales del dormitorio del NorOeste" #: lang/json/recipe_from_json.py msgid "build SE wattle and daub bedroom walls" -msgstr "construye paredes del dormitorio de bareque SE" +msgstr "construye muros del dormitorio de bareque SE" #: lang/json/recipe_from_json.py msgid "build E wattle and daub bedroom walls" -msgstr "construye paredes de dormitorio de bareque E" +msgstr "construye muros de dormitorio de bareque E" #: lang/json/recipe_from_json.py msgid "build SW wattle and daub bedroom walls" -msgstr "construye paredes de dormitorio de bareque SO" +msgstr "construye muros de dormitorio de bareque SO" #: lang/json/recipe_from_json.py msgid "build W wattle and daub bedroom walls" -msgstr "construye paredes de dormitorio de bareque O" +msgstr "construye muros de dormitorio de bareque O" #: lang/json/recipe_from_json.py msgid "build NW wattle and daub bedroom walls" -msgstr "construye paredes de dormitorio de bareque NO" +msgstr "construye muros de dormitorio de bareque NO" #: lang/json/recipe_from_json.py msgid "build SE wood panel bedroom walls" @@ -215246,7 +217359,7 @@ msgstr "construye las muros del dormitorio normales del Sur" #: lang/json/recipe_from_json.py msgid "build S wattle and daub bedroom walls" -msgstr "construye paredes de dormitorio de bareque S" +msgstr "construye muros de dormitorio de bareque S" #: lang/json/recipe_from_json.py msgid "build NW wood bedroom walls" @@ -215432,7 +217545,7 @@ msgstr "Vamos a equipar la despensa y a construir dos bodegas de raíces." #: lang/json/recipe_from_json.py msgid "furnish the pantry" -msgstr "Amuebla la despensa" +msgstr "Amuebla la despensa" #: lang/json/recipe_from_json.py msgid "Let's make some furniture for the dining hall." @@ -215448,45 +217561,44 @@ msgstr "construye algunas jardineras" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen log walls." -msgstr "Comencemos a construir las paredes de leños de la cocina central." +msgstr "Comencemos a construir los muros de leños de la cocina central." #: lang/json/recipe_from_json.py msgid "build the log wall central kitchen room" -msgstr "construye la pared de leños de la cocina central" +msgstr "construye el muro de leños de la cocina central" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen log walls." -msgstr "Terminemos las paredes de leños de la cocina central." +msgstr "Terminemos los muros de leños de la cocina central." #: lang/json/recipe_from_json.py msgid "finish the log wall central kitchen room" -msgstr "termina la pared de leños de la cocina central" +msgstr "termina el muro de leños de la cocina central" #: lang/json/recipe_from_json.py msgid "" "Let's get this log wall smoking area covered to protect the workers from the" " weather." msgstr "" -"Cubramos esta area de ahumado con esta pared de leños para proteger a los " -"trabajadores del clima." +"Cubramos esta area de ahumado con este muro de leños para proteger a los " +"trabajadores de las inclemencias del tiempo." #: lang/json/recipe_from_json.py msgid "build a log wall roofed area for smoking racks" msgstr "" -"construye un área techada con una pared de leños para los estantes de " -"ahumado" +"construye un área techada con un muro de leños para los estantes de ahumado" #: lang/json/recipe_from_json.py msgid "Let's build a log wall pantry west of the kitchen." -msgstr "Construyamos una despensa de pared de leños al oeste de la cocina." +msgstr "Construyamos una despensa de muros de leños al oeste de la cocina." #: lang/json/recipe_from_json.py msgid "build a log wall pantry" -msgstr "construye una despensa de pared de leños" +msgstr "construye una despensa de muro de leños" #: lang/json/recipe_from_json.py msgid "Let's build the west log wall of the dining hall." -msgstr "Construyamos la pared de leños del oeste del comedor." +msgstr "Construyamos muro de leños del oeste del comedor." #: lang/json/recipe_from_json.py msgid "build W log wall" @@ -215494,7 +217606,7 @@ msgstr "construye el muro de leños al oeste" #: lang/json/recipe_from_json.py msgid "Let's build the east log wall of the dining hall." -msgstr "Vamos a construir la pared de leños este del salón comedor." +msgstr "Vamos a construir el muro de leños este del salón comedor." #: lang/json/recipe_from_json.py msgid "build E log wall" @@ -215502,52 +217614,52 @@ msgstr "construye el muro de leños al Este" #: lang/json/recipe_from_json.py msgid "Let's build the center of the log wall dining hall." -msgstr "Construyamos el centro del comedor de la pared de leños." +msgstr "Construyamos el centro del comedor de muro de leños." #: lang/json/recipe_from_json.py msgid "build center of the log wall dining hall" -msgstr "construye a pared de leños del centro del comedor" +msgstr "construye un muro de leños del centro del comedor" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen metal walls." -msgstr "Comencemos a construir las paredes metálicas de la cocina central." +msgstr "Comencemos a construir los muros de metal de la cocina central." #: lang/json/recipe_from_json.py msgid "build the metal wall central kitchen room" -msgstr "construye la pared metálica de la cocina central" +msgstr "construye muro de metal de la cocina central" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen metal walls." -msgstr "Terminemos las paredes metálicas de la cocina central." +msgstr "Terminemos los muros de metal de la cocina central." #: lang/json/recipe_from_json.py msgid "finish the metal wall central kitchen room" -msgstr "termina la pared metálica de la cocina central" +msgstr "termina el muro de metal de la cocina central" #: lang/json/recipe_from_json.py msgid "" "Let's get this metal wall smoking area covered to protect the workers from " "the weather." msgstr "" -"Cubramos esta area para ahumado con esta pared metálica para proteger a los " -"trabajadores del clima." +"Cubramos esta area para ahumado con muro de metal para proteger a los " +"trabajadores de las inclemencias del tiempo." #: lang/json/recipe_from_json.py msgid "build a metal wall roofed area for smoking racks" msgstr "" -"construye un área techada con paredes de metal para los estantes de ahumado" +"construye un área techada con muros de metal para los estantes de ahumado" #: lang/json/recipe_from_json.py msgid "Let's build a metal wall pantry west of the kitchen." -msgstr "Construyamos una despensa de pared metálica al oeste de la cocina." +msgstr "Construyamos una despensa de muro de metal al oeste de la cocina." #: lang/json/recipe_from_json.py msgid "build a metal wall pantry" -msgstr "construye una despensa de pared metálica" +msgstr "construye una despensa de muro de metal" #: lang/json/recipe_from_json.py msgid "Let's build the west metal wall of the dining hall." -msgstr "Construyamos la pared metálica del oeste del comedor." +msgstr "Construyamos muro de metal del oeste del comedor." #: lang/json/recipe_from_json.py msgid "build W metal wall" @@ -215555,7 +217667,7 @@ msgstr "construye el muro de metal oesteconstruye el muro de metal oeste" #: lang/json/recipe_from_json.py msgid "Let's build the east metal wall of the dining hall." -msgstr "Construyamos la pared metálica este del comedor." +msgstr "Construyamos muro de metal este del comedor." #: lang/json/recipe_from_json.py msgid "build E metal wall" @@ -215563,16 +217675,16 @@ msgstr "construye el muro de metal del este" #: lang/json/recipe_from_json.py msgid "Let's build the center of the metal wall dining hall." -msgstr "Construyamos el centro del comedor de la pared metálica." +msgstr "Construyamos el centro del comedor de muro de metal." #: lang/json/recipe_from_json.py msgid "build center of the metal wall dining hall" -msgstr "construye el centro del comedor de la pared metálica" +msgstr "construye el centro del comedor de muro de metal" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen mi-go resin walls." msgstr "" -"Comencemos a construir las paredes de resina mi-go de la cocina central." +"Comencemos a construir los muros de resina mi-go de la cocina central." #: lang/json/recipe_from_json.py msgid "build the mi-go resin central kitchen room" @@ -215580,7 +217692,7 @@ msgstr "construye el cuarto central de la cocina de resina mi-go" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen mi-go resin walls." -msgstr "Terminemos las paredes de resina mi-go de la cocina central." +msgstr "Terminemos los muros de resina mi-go de la cocina central." #: lang/json/recipe_from_json.py msgid "finish the mi-go resin central kitchen room" @@ -215591,8 +217703,8 @@ msgid "" "Let's get this mi-go resin smoking area covered to protect the workers from " "the weather." msgstr "" -"Cubramos esta zona de ahumado de resina mi-go para proteger a los " -"trabajadores del clima." +"Cubramos esta zona de ahumado de resina mi-go para para proteger a los " +"trabajadores de las inclemencias del tiempo." #: lang/json/recipe_from_json.py msgid "build a mi-go resin roofed area for smoking racks" @@ -215609,7 +217721,7 @@ msgstr "construye una despensa de resina mi-go" #: lang/json/recipe_from_json.py msgid "Let's build the west mi-go resin wall of the dining hall." -msgstr "Construyamos la pared oeste de resina mi-go del comedor." +msgstr "Construyamos el muro oeste de resina mi-go del comedor." #: lang/json/recipe_from_json.py msgid "build W mi-go resin wall" @@ -215617,7 +217729,7 @@ msgstr "construye un muro de resina mi-go al oeste" #: lang/json/recipe_from_json.py msgid "Let's build the east mi-go resin wall of the dining hall." -msgstr "Construyamos la pared este de resina mi-go del comedor." +msgstr "Construyamos el muro este de resina mi-go del comedor." #: lang/json/recipe_from_json.py msgid "build E mi-go resin wall" @@ -215634,8 +217746,7 @@ msgstr "construye el centro del comedor de resina mi-go" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen rammed earth walls." msgstr "" -"Comencemos a construir las paredes de la cocina central de tierra " -"compactada." +"Comencemos a construir los muros de la cocina central de tierra compactada." #: lang/json/recipe_from_json.py msgid "build the rammed earth central kitchen room" @@ -215643,7 +217754,7 @@ msgstr "construye la cocina central de tierra compactada" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen rammed earth walls." -msgstr "Terminemos las paredes de tierra compactada de la cocina central." +msgstr "Terminemos los muros de tierra compactada de la cocina central." #: lang/json/recipe_from_json.py msgid "finish the rammed earth central kitchen room" @@ -215655,7 +217766,7 @@ msgid "" " the weather." msgstr "" "Cubramos esta zona de ahumado de tierra compactada para proteger a los " -"trabajadores del clima." +"trabajadores de las inclemencias del tiempo." #: lang/json/recipe_from_json.py msgid "build a rammed earth roofed area for smoking racks" @@ -215672,7 +217783,7 @@ msgstr "construye una despensa de tierra compactada" #: lang/json/recipe_from_json.py msgid "Let's build the west rammed earth wall of the dining hall." -msgstr "Construyamos la pared con tierra compactada del oeste del comedor." +msgstr "Construyamos el muro con tierra compactada del oeste del comedor." #: lang/json/recipe_from_json.py msgid "build W rammed earth wall" @@ -215681,7 +217792,7 @@ msgstr "construye el muro de tierra compactada al oeste" #: lang/json/recipe_from_json.py msgid "Let's build the east rammed earth wall of the dining hall." msgstr "" -"Vamos a construir la pared de tierra compactada este del salón comedor." +"Vamos a construir el muro de tierra compactada este del salón comedor." #: lang/json/recipe_from_json.py msgid "build E rammed earth wall" @@ -215697,7 +217808,7 @@ msgstr "construye el centro del comedor de tierra compactada" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen rock walls." -msgstr "Comencemos a construir las paredes de piedra de la cocina central." +msgstr "Comencemos a construir los muros de piedra de la cocina central." #: lang/json/recipe_from_json.py msgid "build the central kitchen room" @@ -215705,11 +217816,11 @@ msgstr "construye el cuarto de la cocina central" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen rock walls." -msgstr "Terminemos las paredes de piedra de la cocina central." +msgstr "Terminemos los muros de piedra de la cocina central." #: lang/json/recipe_from_json.py msgid "finish the rock wall central kitchen room" -msgstr "termina la pared de roca de la cocina central" +msgstr "termina muro de roca de la cocina central" #: lang/json/recipe_from_json.py msgid "" @@ -215717,7 +217828,7 @@ msgid "" "the weather." msgstr "" "Cubramos esta zona de ahumado de muro de piedra para proteger a los " -"trabajadores del clima." +"trabajadores de las inclemencias del tiempo." #: lang/json/recipe_from_json.py msgid "build a rock wall roofed area for smoking racks" @@ -215729,11 +217840,11 @@ msgstr "Construyamos una despensa de piedra al oeste de la cocina." #: lang/json/recipe_from_json.py msgid "build a rock wall pantry" -msgstr "construye una despensa de pared de roca" +msgstr "construye una despensa de muro de roca" #: lang/json/recipe_from_json.py msgid "Let's build the west rock wall of the rock wall dining hall." -msgstr "Construyamos la pared del comedor de piedra del oeste." +msgstr "Construyamos muro de piedra del comedor del oeste." #: lang/json/recipe_from_json.py msgid "build W rock wall" @@ -215741,7 +217852,7 @@ msgstr "construye el muro de roca al oeste" #: lang/json/recipe_from_json.py msgid "Let's build the east rock wall of the rock wall dining hall." -msgstr "Construyamos la pared del comedor de piedra del este." +msgstr "Construyamos muro de piedra del comedor del este." #: lang/json/recipe_from_json.py msgid "build E rock wall" @@ -215749,7 +217860,7 @@ msgstr "construye el muro de roca al este" #: lang/json/recipe_from_json.py msgid "Let's build the center of the rock wall dining hall." -msgstr "Construyamos el centro del comedor de pared de piedra." +msgstr "Construyamos muro de piedra del comedor del centro." #: lang/json/recipe_from_json.py msgid "build center of the rock dining hall" @@ -215757,7 +217868,7 @@ msgstr "construye el centro del comedor de roca" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen wattle and daub walls." -msgstr "Comencemos a construir paredes de bareque de la cocina central." +msgstr "Comencemos a construir muros de bareque de la cocina central." #: lang/json/recipe_from_json.py msgid "build the wattle and daub central kitchen room" @@ -215765,7 +217876,7 @@ msgstr "construye el cuarto de la cocina central de bareque" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen wattle and daub walls." -msgstr "Terminemos las paredes de bareque de la cocina central." +msgstr "Terminemos los muros de bareque de la cocina central." #: lang/json/recipe_from_json.py msgid "finish the wattle and daub central kitchen room" @@ -215776,8 +217887,8 @@ msgid "" "Let's get this wattle and daub smoking area covered to protect the workers " "from the weather." msgstr "" -"Cubramos esta zona de ahumado de bareque para proteger a los trabajadores " -"del clima." +"Cubramos esta zona de ahumado de bareque para proteger a los trabajadores de" +" las inclemencias del tiempo." #: lang/json/recipe_from_json.py msgid "build a wattle and daub roofed area for smoking racks" @@ -215793,19 +217904,19 @@ msgstr "construye una despensa de bareque" #: lang/json/recipe_from_json.py msgid "Let's build the west wattle and daub wall of the dining hall." -msgstr "Construyamos la pared con bareque del oeste del comedor." +msgstr "Construyamos el muro de bareque del oeste del comedor." #: lang/json/recipe_from_json.py msgid "build W wattle and daub wall" -msgstr "construye la pared de bareque al oeste" +msgstr "construye el muro de bareque al oeste" #: lang/json/recipe_from_json.py msgid "Let's build the east wattle and daub wall of the dining hall." -msgstr "Construyamos la pared con bareque del este del comedor." +msgstr "Construyamos el muro con bareque del este del comedor." #: lang/json/recipe_from_json.py msgid "build E wattle and daub wall" -msgstr "construye la pared de bareque al este" +msgstr "construye el muro de bareque al este" #: lang/json/recipe_from_json.py msgid "Let's build the center of the wattle and daub dining hall." @@ -215818,8 +217929,7 @@ msgstr "construye el centro del comedor de bareque." #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen wood panel walls." msgstr "" -"Comencemos a construir las paredes de paneles de madera de la cocina " -"central." +"Comencemos a construir los muros de paneles de madera de la cocina central." #: lang/json/recipe_from_json.py msgid "build the wood panel central kitchen room" @@ -215827,7 +217937,7 @@ msgstr "construye la cocina central con paneles de madera" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen wood panel walls." -msgstr "Terminemos las paredes de paneles de madera de la cocina central." +msgstr "Terminemos los muros de paneles de madera de la cocina central." #: lang/json/recipe_from_json.py msgid "finish the wood panel central kitchen room" @@ -215839,7 +217949,7 @@ msgid "" "the weather." msgstr "" "Cubramos esta zona de ahumado de paneles de madera para proteger a los " -"trabajadores del clima." +"trabajadores de las inclemencias del tiempo." #: lang/json/recipe_from_json.py msgid "build a wood panel roofed area for smoking racks" @@ -215878,6 +217988,560 @@ msgstr "Construyamos el centro del comedor de paneles de madera." msgid "build center of the dining hall" msgstr "construye el centro del comedor" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "Inspecciona la tierra para una cantina." + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" +"Ahora que tenemos algo de cobertura, deberíamos construir una chimenea para " +"cocinar y sostener una olla." + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" +"Ahora que tenemos algo de cobertura, deberíamos construir una estufa para " +"cocinar y sostener una olla." + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" +"Deberíamos construir un pozo. Esto hará que cocinar sea más cómodo y " +"proporcionará agua para mantener un jardín de chef." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" +"Construyamos unos ahumadores y un horno de carbón para conservar los " +"alimentos y tener más opciones para cocinar." + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "Construyamos 2 bodegas de raíces en la cocina." + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "construir bodegas de raices" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "Vamos a amueblar la despensa" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "Vamos a construir unas macetas para un jardín de chef." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" +"Ampliemos el jardín del chef en la zona \"libre\" (dejar de ampliar si " +"quieres usar la zona para otra cosa)" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" +"Vamos a instalar un par de tanques de agua salada para permitir la " +"producción de sal y facilitar el trabajo del curtido." + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "construir tanques de agua salada" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "Instalemos algunas cubas en la cervecería" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "Instalar algunas cubas de cerveza" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" +"Vamos a instalar algunos estantes para el almacenamiento en la cervecería" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "instalar algunos estantes para cerveza" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "Instalemos un alambique en la cervecería" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "instalar un alambique en la cerveceria" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" +"Construyamos un molino de viento que nos permita moler la harina " +"eficientemente" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "construir un molino de viento" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" +"Construyamos un banco y un bebedero para pájaros fuera de la cocina para " +"relajarnos" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "construir un banco y un bebedero para pájaros" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "Vamos a empezar a construir los muros de hormigón de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "construye la cocina de hormigón" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "Vamos a terminar los muros de hormigón de la cocina." + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "termina la cocina de hormigón" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" +"Vamos a cubrir esta zona de ahumado de hormigón para proteger a los " +"trabajadores de las inclemencias del tiempo." + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "construye una zona con techo de hormigón para los ahumadores" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" +"Vamos a construir una despensa de muro de hormigón al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "construye una despensa de hormigón" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "Vamos a construir la primera parte del comedor de hormigón." + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "construye la primera parte del comedor de hormigón" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "Vamos a construir la segunda parte del comedor de hormigón." + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "construye la segunda parte del comedor de hormigón" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "Construyamos una cervecería de hormigón." + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "construye cervecería de hormigón" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "Vamos a empezar a construir los muros de leños de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "construye la cocina de leños" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "Vamos a terminar los muros de leños de la cocina." + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "termina la cocina de leños" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" +"Vamos a cubrir esta zona de ahumado de leños para proteger a los " +"trabajadores de las inclemencias del tiempo." + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "construir una zona con techo de leños para los ahumadores" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "Vamos a construir una despensa de muro de leños al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "construye una despensa de leños" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "Vamos a construir la primera parte del comedor de leños." + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "construye la primera parte del comedor de leños." + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "Vamos a construir la segunda parte de leños del comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "construye la segunda sección de leños del comedor" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "Construyamos una cervecería de leños." + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "construye cervecería de leños" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "Vamos a empezar a construir los muros de metal de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "construye la cocina de metal" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "Vamos a terminar los muros de metal de la cocina." + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "termina la cocina de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" +"Cubramos esta area para ahumado de metal para proteger a los trabajadores de" +" las inclemencias del tiempo." + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "construye un área techada de metal para los estantes de ahumado" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "Construyamos una despensa de metal de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "construye una despensa de metal" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "Vamos a construir la primera parte del comedor de metal." + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "construye la primera parte del comedor de metal" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "Vamos a construir la segunda parte de metal del comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "construye la segunda sección de metal del comedor" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "Construyamos una cervecería de metal." + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "construye cervecería de metal" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "Comencemos a construir los muros de resina mi-go de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "construye la cocina de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "Terminemos los muros de resina mi-go de la cocina." + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "termina la cocina de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" +"Vamos a construir una despensa de muro de resina mi-go al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "Vamos a construir la primera parte de resina mi-go del comedor." + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "construye la primera sección de resina de mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "Vamos a construir la segunda parte de resina mi-go del comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "construye la segunda sección de resina del comedor mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "Construyamos una cervecería de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "construye una cervecería de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "Comencemos a construir los muros de tierra compactada de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "construye la cocina de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "Vamos a terminar los muros de tierra compactada de la cocina." + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "termina la cocina de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "Construyamos una despensa de tierra compactada al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "Construyamos una despensa de tierra compactada al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "construye el primer comedor de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "Construyamos la segunda parte de tierra compactada del comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "construye el segundo comedor de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "Construyamos una cervecería de tierra compactada." + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "construye una cervecería de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "Vamos a empezar a construir los muros de piedra de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "construye la cocina de piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "Vamos a terminar los muros de piedra de la cocina." + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "termina la cocina de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" +"Vamos a cubrir esta zona de ahumado de piedra para proteger a los " +"trabajadores de las inclemencias del tiempo." + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "construir una zona con techo de piedra para los ahumadores" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" +"Vamos a construir una despensa de muro de piedra al lado de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "construye una despensa de piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "Vamos a construir la primera parte del comedor de piedra." + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "Construyamos la primera parte del comedor de piedra." + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "Vamos a construir la segunda parte de piedra del comedor." + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "construye la segunda sección de piedra del comedor" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "Construyamos una cervecería de piedra." + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "construye cervecería de piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "Comencemos a construir los muros de bareque de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "construye la cocina de bareque" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "Terminemos los muros de bareque de la cocina." + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "termina la cocina de bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" +"Cubramos esta zona de ahumado de bareque para proteger a los trabajadores de" +" las inclemencias del tiempo." + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "construye un área techada de bareque para los estantes de ahumado" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "Construyamos una despensa de bareque en la cocina." + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "construye una despensa de bareque" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "Construyamos la primera parte con bareque del comedor." + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "construye la primera sección del comedor de bareque" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "Construyamos la segunda parte del comedor de bareque." + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "construye la segunda sección del comedor de bareque" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "Construyamos una cervecería de bareque." + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "construye una cerveceria de bareque" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "Comencemos a construir los muros de paneles de madera de la cocina." + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "construye la cocina de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "Terminemos los muros de paneles de madera de la cocina." + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "termina la cocina con paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" +"Vamos a construir una despensa de muro de paneles de madera al lado de la " +"cocina." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "Construyamos la primera parte del comedor con paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "Construyamos la primera parte del comedor con paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "Construyamos la segunda parte del comedor con paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "construye la segunda sección del comedor de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "Construyamos una cervecería de paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "construye una cervecería de paneles de madera" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "Inspecciona la tierra para un area de granja." @@ -215928,6 +218592,76 @@ msgstr "" msgid "Farm processing shack" msgstr "Cabaña de procesamiento de la granja" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "Prepara una hilera de parcelas agrícolas." + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "prepara parcelas agrícolas" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "Prepara una segunda hilera de parcelas agrícolas." + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "Prepara otro par de hileras de parcelas agrícolas." + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" +"Levanta una valla a lo largo del borde exterior más largo para mantener a " +"los ciervos alejados de los cultivos." + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "levanta una valla" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" +"Levanta una valla a lo largo del borde exterior más corto para mantener a " +"los ciervos alejados de los cultivos." + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" +"Levanta una valla a lo largo del borde interior más corto para mantener a " +"los ciervos alejados de los cultivos." + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" +"Levanta una valla a lo largo de la parte exterior del borde interior más " +"largo para mantener a los ciervos alejados de los cultivos." + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" +"No tenemos previsto volver a sembrar los campos con un tractor, así que " +"levantamos una valla a lo largo de la parte interior del borde interior más " +"largo." + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" +"Construye una puerta empalizada que nos permita llegar a los campos y volver" +" a sembrarlos con un tractor el próximo año." + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "construir una puerta empalizada" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "Informe de la tierra para un garaje." @@ -215992,6 +218726,667 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "Cuartos mecánicos del garaje" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "Conectemos los dos muros con la pieza del techo que falta." + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "construye la sección del techo que falta" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" +"Ahora que tenemos algo de cobertura, vamos a construir algunos mostradores y" +" estantes para las herramientas y piezas, lo que nos permite utilizar el " +"Desguace de Coches." + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "construye algunos muebles" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" +"El garaje es lo suficientemente grande. Construyamos una puerta empalizada " +"que nos permita cerrar el extremo exterior." + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "construye una puerta empalizada externa" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" +"Terminemos el garaje construyendo una puerta empalizada que nos permita " +"cerrar el extremo exterior." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" +"Vamos a empezar a construir la primera sección de muro de hormigón del " +"garaje." + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "construye la primera sección del garaje de hormigón" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Construyamos una segunda sección del muro de hormigón del garaje para " +"bloquear el viento desde la otra dirección, haciendo un garaje lo " +"suficientemente amplio como para manejar dos vehículos normales o uno de " +"gran tamaño." + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "construye la segunda sección del garaje de hormigón" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" +"Construyamos un muro de hormigó l para impedir que el viento atraviese el " +"garaje." + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "construye un muro interior de hormigón" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" +"Ahora que somos capaces de trabajar con vehículos cortos, vamos a ampliar el" +" garaje para permitir los grandes, utilizando hormigón." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "amplia el primer muro con hormigón" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" +"Vamos a ampliar el segundo muro para que coincida con el primero, utilizando" +" hormigón." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "amplia el segundo muro con hormigón" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" +"Ahora que podemos trabajar con vehículos grandes, vamos a ampliar el garaje " +"para que quepan otros realmente grandes, o varios vehículos, utilizando " +"hormigón." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" +"Ampliemos el garaje al tamaño de un hangar, lo que nos permitirá trabajar en" +" vehículos monstruosos o en un gran número de vehículos normales, utilizando" +" hormigón." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" +"Vamos a empezar a construir la primera sección del muro de leños del garaje." + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "construye la primera sección del garaje de leños" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Construyamos una segunda sección del muro de leños del garaje para bloquear " +"el viento desde la otra dirección, haciendo un garaje lo suficientemente " +"amplio como para manejar dos vehículos normales o uno de gran tamaño." + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "construye la segunda sección del garaje de leños" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" +"Construyamos un muro de leños para impedir que el viento atraviese el " +"garaje." + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "construye un muro interior de leños" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" +"Ahora que somos capaces de trabajar con vehículos cortos, vamos a ampliar el" +" garaje para permitir los grandes, utilizando leños." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "amplia el primer muro con leños" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" +"Vamos a ampliar el segundo muro para que coincida con el primero, utilizando" +" leños." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "amplia el segundo muro con leños" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" +"Ahora que podemos trabajar con vehículos grandes, vamos a ampliar el garaje " +"para que quepan otros realmente grandes, o varios vehículos, utilizando " +"leños." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "amplia el segundo muro con leños" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" +"Ampliemos el garaje al tamaño de un hangar, lo que nos permitirá trabajar en" +" vehículos monstruosos o en un gran número de vehículos normales, utilizando" +" leños." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" +"Vamos a empezar a construir la primera sección del muro de metal del garaje." + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "construye la primera sección del garaje de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Construyamos una segunda sección del muro de metal del garaje para bloquear " +"el viento desde la otra dirección, haciendo un garaje lo suficientemente " +"amplio como para manejar dos vehículos normales o uno de gran tamaño." + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "construye la segunda sección del garaje de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" +"Construyamos un muro de metal para impedir que el viento atraviese el " +"garaje." + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "construye un muro interior de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" +"Ahora que somos capaces de trabajar con vehículos cortos, vamos a ampliar el" +" garaje para permitir los grandes, utilizando metal." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "amplia el primer muro con metal" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" +"Vamos a ampliar el segundo muro para que coincida con el primero, utilizando" +" metal." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "amplia el segundo muro con metal" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" +"Ahora que podemos trabajar con vehículos grandes, vamos a ampliar el garaje " +"para que quepan otros realmente grandes, o varios vehículos, utilizando " +"metal." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" +"Ampliemos el garaje al tamaño de un hangar, lo que nos permitirá trabajar en" +" vehículos monstruosos o en un gran número de vehículos normales, utilizando" +" metal." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" +"Vamos a empezar a construir la sección del muro de resina mi-go del garaje." + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "construye la primera sección del garaje de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" +"Construyamos una segunda sección del muro de resina mi-go del garaje para " +"bloquear el viento desde la otra dirección, haciendo un garaje lo " +"suficientemente amplio como para manejar dos vehículos normales o uno de " +"gran tamaño." + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "construye la segunda sección del garaje de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" +"Construyamos un muro de resina mi-go para impedir que el viento atraviese el" +" garaje." + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "construye un muro interno de resina mi-go " + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" +"Ahora que somos capaces de trabajar con vehículos cortos, vamos a ampliar el" +" garaje para permitir los grandes, utilizando resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "amplia el primer muro con resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" +"Vamos a ampliar el segundo muro para que coincida con el primero, utilizando" +" resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "amplia el primer muro con resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" +"Ahora que podemos trabajar con vehículos grandes, vamos a ampliar el garaje " +"para que quepan otros realmente grandes, o varios vehículos, utilizando " +"resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" +"Ampliemos el garaje al tamaño de un hangar, lo que nos permitirá trabajar en" +" vehículos monstruosos o en un gran número de vehículos normales, utilizando" +" resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" +"Vamos a empezar a construir la primera sección del muro de tierra compactada" +" del garaje." + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "construye la primera sección del garaje de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" +"Construyamos una segunda sección del muro de tierra compactada del garaje " +"para bloquear el viento desde la otra dirección, haciendo un garaje lo " +"suficientemente amplio como para manejar dos vehículos normales o uno de " +"gran tamaño." + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "construye la primera sección del garaje de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" +"Construyamos un muro de tierra compactada para impedir que el viento " +"atraviese el garaje." + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "construye el muro interno de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" +"Ahora que somos capaces de trabajar con vehículos cortos, vamos a ampliar el" +" garaje para permitir los grandes, utilizando tierra compactada." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "amplia el primer muro con tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" +"Vamos a ampliar el segundo mupro para que coincida con el primero, " +"utilizando tierra compactada." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "amplia el segunda muro con tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" +"Ahora que podemos trabajar con vehículos grandes, vamos a ampliar el garaje " +"para que quepan otros realmente grandes, o varios vehículos, utilizando " +"tierra compactada." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" +"Ampliemos el garaje al tamaño de un hangar, lo que nos permitirá trabajar en" +" vehículos monstruosos o en un gran número de vehículos normales, utilizando" +" tierra compactada." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" +"Vamos a empezar a construir la primera sección del muro de piedra del " +"garaje." + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "construye la primera sección del garaje de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Construyamos una segunda sección del muro de piedra del garaje para bloquear" +" el viento desde la otra dirección, haciendo un garaje lo suficientemente " +"amplio como para manejar dos vehículos normales o uno de gran tamaño." + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "construye la segunda sección del garaje de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" +"Construyamos un muro de piedra para impedir que el viento atraviese el " +"garaje." + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "construye un muro interior de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" +"Ahora que somos capaces de trabajar con vehículos cortos, vamos a ampliar el" +" garaje para permitir los grandes, utilizando piedra." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "amplia el primer muro con piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" +"Vamos a ampliar el segundo muro para que coincida con el primero, utilizando" +" piedra." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "amplia el segundo muro con piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" +"Ahora que podemos trabajar con vehículos grandes, vamos a ampliar el garaje " +"para que quepan otros realmente grandes, o varios vehículos, utilizando " +"piedra." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" +"Ampliemos el garaje al tamaño de un hangar, lo que nos permitirá trabajar en" +" vehículos monstruosos o en un gran número de vehículos normales, utilizando" +" piedra." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" +"Vamos a empezar a construir la sección del muro de bareque del garaje." + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "construye la primera sección del garaje de bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" +"Construyamos una segunda sección del muro de bareque del garaje para " +"bloquear el viento desde la otra dirección, haciendo un garaje lo " +"suficientemente amplio como para manejar dos vehículos normales o uno de " +"gran tamaño." + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "construye la segunda sección del garaje de bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" +"Construyamos un muro de bareque para impedir que el viento atraviese el " +"garaje." + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "construye el muro interno de bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" +"Ahora que somos capaces de trabajar con vehículos cortos, vamos a ampliar el" +" garaje para permitir los grandes, utilizando bareque." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "amplia el primer muro con bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" +"Vamos a ampliar el segundo muro para que coincida con el primero, utilizando" +" bareque." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "amplia el segundo muro con bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" +"Ahora que podemos trabajar con vehículos grandes, vamos a ampliar el garaje " +"para que quepan otros realmente grandes, o varios vehículos, utilizando " +"bareque." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" +"Ampliemos el garaje al tamaño de un hangar, lo que nos permitirá trabajar en" +" vehículos monstruosos o en un gran número de vehículos normales, utilizando" +" bareque." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" +"Vamos a empezar a construir la primera sección del muro de madera del " +"garaje." + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "construye la primera sección del garaje de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Construyamos una segunda sección del muro de madera del garaje para bloquear" +" el viento desde la otra dirección, haciendo un garaje lo suficientemente " +"amplio como para manejar dos vehículos normales o uno de gran tamaño." + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "construye la segunda sección del garaje de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" +"Construyamos un muro de madera para impedir que el viento atraviese el " +"garaje." + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "construye un muro interior de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" +"Ahora que somos capaces de trabajar con vehículos cortos, vamos a ampliar el" +" garaje para permitir los grandes, utilizando paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "Amplia el primer muro con paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" +"Vamos a ampliar el segundo muro para que coincida con el primero, utilizando" +" paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "amplia el segundo muro con madera" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" +"Ahora que podemos trabajar con vehículos grandes, vamos a ampliar el garaje " +"para que quepan otros realmente grandes, o varios vehículos, utilizando " +"paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "Amplia el segundo muro con paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" +"Ampliemos el garaje al tamaño de un hangar, lo que nos permitirá trabajar en" +" vehículos monstruosos o en un gran número de vehículos normales, utilizando" +" paneles de madera." + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "Inspecciona la tierra para un area de ganadería" @@ -216267,6 +219662,488 @@ msgstr "" "choza de paneles de madera con un techo en el lado suroeste del campo de " "ganado." +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" +"Podríamos utilizar una valla para contener a nuestras gallinas y otras aves," +" así que construye una valla de alambre para terminar la zona del gallinero." + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "patio de gallinero" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" +"Podríamos usar el prado para el establo, así que construyamos una valla de " +"carril dividido en el lado lejano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "vallado de praderas a distancia" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" +"Podríamos usar el prado para el establo, así que construyamos una valla de " +"carril dividido en el lado del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "vallado de praderas lateral" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" +"Podríamos usar el prado para el establo, así que construyamos una valla de " +"carril dividido en el lado del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "vallado de praderas cercano" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" +"Podríamos usar un gallinero para contener nuestros pollos y otras aves, así " +"que construye una cabaña de hormigón con un tejado en el lado remoto del " +"campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "gallinero de hormigón" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" +"Podríamos usar un cuarto de almacenamiento para el alimento, el equipo de " +"los animales y las herramientas, así que construye una cabaña de hormigón " +"con un tejado en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "cabaña almacén de hormigón" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" +"Podríamos usar un establo para el ganado más grande, así que construye una " +"cabaña de hormigón con un techo en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "establo de hormigón" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" +"Podríamos usar un establo más grande, así que amplia el establo con otro " +"puesto con muros de hormigón." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" +"Podríamos usar un establo más grande, así que termina el establo con dos " +"puesto con muros de hormigón." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" +"Podríamos usar un gallinero para contener nuestros pollos y otras aves, así " +"que construye una cabaña de leños con un tejado en el lado remoto del campo " +"de ganado." + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "gallinero de leños" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" +"Podríamos usar un cuarto de almacenamiento para el alimento, el equipo de " +"los animales y las herramientas, así que construye una cabaña de leños con " +"un tejado en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "cabaña almacén de leños" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" +"Podríamos usar un establo para el ganado más grande, así que construye una " +"cabaña de leños con un techo en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "establo de leños" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" +"Podríamos usar un establo más grande, así que amplia el establo con otro " +"puesto con muros de leños." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" +"Podríamos usar un establo más grande, así que termina el establo con dos " +"puesto con muros de leños." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" +"Podríamos usar un gallinero para contener nuestros pollos y otras aves, así " +"que construye una cabaña de metal con un tejado en el lado remoto del campo " +"de ganado." + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "gallinero de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" +"Podríamos usar un cuarto de almacenamiento para el alimento, el equipo de " +"los animales y las herramientas, así que construye una cabaña de metal con " +"un tejado en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "cabaña almacén de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" +"Podríamos usar un establo para el ganado más grande, así que construye una " +"cabaña de metal con un techo en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "establo de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" +"Podríamos usar un establo más grande, así que amplia el establo con otro " +"puesto con muros de metal." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" +"Podríamos usar un establo más grande, así que termina el establo con dos " +"puesto con muros de metal." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" +"Podríamos usar un gallinero para contener nuestros pollos y otras aves, así " +"que construye una cabaña de resina mi-go con un tejado en el lado remoto del" +" campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "gallinero de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" +" Podríamos usar un cuarto de almacenamiento para el alimento, el equipo de " +"los animales y las herramientas, así que construye una cabaña de resina mi-" +"go con un tejado en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "cabaña almacén de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" +"Podríamos usar un establo para el ganado más grande, así que construye una " +"cabaña de resina mi-go con un techo en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "establo de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" +"Podríamos usar un establo más grande, así que amplia el establo con otro " +"puesto con muros de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" +"Podríamos usar un establo más grande, así que termina el establo con dos " +"puesto con muros de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" +"Nos vendría bien un gallinero para tener nuestras gallinas y otras aves, así" +" que construí una cabaña de tierra compactada con techo en la parte remota " +"del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "gallinero de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" +"Podríamos usar un cuarto de almacenamiento para el alimento, el equipo de " +"los animales y las herramientas, así que construye una cabaña de tierra " +"compactada con un techo en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "cabaña almacén de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" +"Podríamos usar un establo para el ganado más grande, así que construye una " +"cabaña de tierra compactada con un techo en el lado cercano del campo de " +"ganado." + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "establo de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" +"Podríamos usar un establo más grande, así que amplia el establo con otro " +"puesto con muros de tierra compactada." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" +"Podríamos usar un establo más grande, así que termina el establo con dos " +"puesto con muros de tierra compactada." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" +"Podríamos usar un gallinero para contener nuestros pollos y otras aves, así " +"que construye una cabaña de piedra con un tejado en el lado remoto del campo" +" de ganado." + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "gallinero de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" +"Podríamos usar un cuarto de almacenamiento para el alimento, el equipo de " +"los animales y las herramientas, así que construye una cabaña de piedra con " +"un tejado en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "cabaña almacén de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" +"Podríamos usar un establo para el ganado más grande, así que construye una " +"cabaña de piedra con un techo en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "establo de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" +"Podríamos usar un establo más grande, así que amplia el establo con otro " +"puesto con muros de piedra." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" +"Podríamos usar un establo más grande, así que termina el establo con dos " +"puesto con muros de piedra." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" +"Nos vendría bien un gallinero para contener nuestras gallinas y otras aves, " +"así que construye una cabaña de bareque con tejado en la parte lejana del " +"campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "gallinero de bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un almacén para los piensos, el material de los animales y " +"las herramientas, así que construye una choza de bareque con techo en el " +"lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "cabaña almacén de barequd" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" +"Nos vendría bien un establo para el ganado mayor, así que construye una " +"cabaña de bareque con techo en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "establo de bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" +"Podríamos usar un establo más grande, así que amplia el establo con otro " +"puesto con muros de bareque." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" +"Podríamos usar un establo más grande, así que termina el establo con dos " +"puesto con muros de bareque." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" +"Nos vendría bien un gallinero para contener nuestras gallinas y otras aves, " +"así que construye una cabaña de paneles de madera con un tejado en el lado " +"lejano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "gallinero de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" +"Podríamos usar un cuarto de almacenamiento para el alimento, el equipo de " +"los animales y las herramientas, así que construye una cabaña de paneles de " +"madera con un tejado en el lado cercano del campo de ganado." + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "cabaña almacén de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" +"Podríamos usar un establo para el ganado más grande, así que construye una " +"choza de paneles de madera con un techo en el lado cercano del campo de " +"ganado." + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "establo de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" +"Podríamos usar un establo más grande, así que amplia el establo con otro " +"puesto con muros de paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" +"Podríamos usar un establo más grande, así que termina el establo con dos " +"puesto con muros de paneles de madera." + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "Inspecciona el terreno para un area de salinas" @@ -217080,7 +220957,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "bookcases, west" -msgstr "estanterias, oeste" +msgstr "estanterias de libros, oeste" #: lang/json/recipe_from_json.py msgid "" @@ -217144,6 +221021,740 @@ msgstr "" msgid "benches, southwest" msgstr "bancos, SurOeste" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" +"Colocar 12 estanterías de libros formando un pasillo de 1 ½ para el almacén" +" (2000 L de almacenamiento, contenido visible desde la distancia, bloques " +"LoS)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "colocar 1 ½ pasillos de estanterías de libros en la sección P" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "informe de álmacen" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" +"Podríamos utilizar un gran edificio de almacenamiento. Vamos a empezar con " +"una sección de hormigón." + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "sección de almacén de hormigón" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" +"Vamos a ampliar nuestro edificio de almacenamiento con otra sección de " +"hormigón." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" +"Terminemos nuestro edificio de almacenamiento con una sección de hormigón. " +"Si realmente queremos, podemos pasar a duplicar el volumen, pero ¿no será " +"eso extremo, cuando podemos usar el espacio para una zona donde descargar el" +" botín en su lugar?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" +"¡Queremos almacenar TODO! Dupliquemos el tamaño del edificio de " +"almacenamiento, empezando por una sección de hormigón." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" +"Colocar 12 vestidores de madera formando pasillo 1 ½ para el almacén (2000 L" +" de almacenamiento, contenido visible desde la distancia, no bloquea LoS)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "colocar 1 ½ pasillos de vestidores en la sección A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "colocar 1 ½ pasillos de vestidores en la sección B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "colocar 1 ½ pasillos de vestidores en la sección C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "colocar 1 ½ pasillos de vestidores en la sección D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "colocar 1 ½ pasillos de vestidores en la sección E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "colocar 1 ½ pasillos de vestidores en la sección F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "colocar 1 ½ pasillos de vestidores en la sección G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "colocar 1 ½ pasillos de vestidores en la sección H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "colocar 1 ½ pasillos de vestidores en la sección I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "colocar 1 ½ pasillos de vestidores en la sección J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "colocar 1 ½ pasillos de vestidores en la sección K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "colocar 1 ½ pasillos de vestidores en la sección L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "colocar 1 ½ pasillos de vestidores en la sección M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "colocar 1 ½ pasillos de vestidores en la sección N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "colocar 1 ½ pasillos de vestidores en la sección O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "colocar 1 ½ pasillos de vestidores en la sección P" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" +"Colocar 12 taquillas formando pasillo 1 ½ para el almacén (2000 L de " +"almacenamiento, contenidos no visibles desde la distancia, bloquea LoS). " +"Considera si las estanterías de libros o vestidores son una mejor opción." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "colocar 1 ½ pasillos de taquillas en la sección A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "colocar 1 ½ pasillos de taquillas en la sección B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "colocar 1 ½ pasillos de taquillas en la sección C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "colocar 1 ½ pasillos de taquillas en la sección D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "colocar 1 ½ pasillos de taquillas en la sección E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "colocar 1 ½ pasillos de taquillas en la sección F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "colocar 1 ½ pasillos de taquillas en la sección G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "colocar 1 ½ pasillos de taquillas en la sección H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "colocar 1 ½ pasillos de taquillas en la sección I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "colocar 1 ½ pasillos de taquillas en la sección J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "colocar 1 ½ pasillos de taquillas en la sección K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "colocar 1 ½ pasillos de taquillas en la sección L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "colocar 1 ½ pasillos de taquillas en la sección M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "colocar 1 ½ pasillos de taquillas en la sección N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "colocar 1 ½ pasillos de taquillas en la sección O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "colocar 1 ½ pasillos de taquillas en la sección P" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" +"Podríamos utilizar un gran edificio de almacenamiento. Vamos a empezar con " +"una sección de leños." + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "sección de almacén de leños" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" +"Vamos a ampliar nuestro edificio de almacenamiento con otra sección de " +"leños." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" +"Terminemos nuestro edificio de almacenamiento con una sección de leños. Si " +"realmente queremos, podemos pasar a duplicar el volumen, pero ¿no será eso " +"extremo, cuando podemos usar el espacio para una zona donde descargar el " +"botín en su lugar?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" +"¡Queremos almacenar TODO! Dupliquemos el tamaño del edificio de " +"almacenamiento, empezando por una sección de leños." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" +"Podríamos utilizar un gran edificio de almacenamiento. Vamos a empezar con " +"una sección de metal." + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "sección de almacén de metal" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" +"Vamos a ampliar nuestro edificio de almacenamiento con otra sección de " +"metal." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" +"Terminemos nuestro edificio de almacenamiento con una sección de metal. Si " +"realmente queremos, podemos pasar a duplicar el volumen, pero ¿no será eso " +"extremo, cuando podemos usar el espacio para una zona donde descargar el " +"botín en su lugar?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" +"¡Queremos almacenar TODO! Dupliquemos el tamaño del edificio de " +"almacenamiento, empezando por una sección de metal." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" +"Podríamos utilizar un gran edificio de almacenamiento. Vamos a empezar con " +"una sección de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "sección de almacén de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" +"Vamos a ampliar nuestro edificio de almacenamiento con otra sección de " +"resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" +"Terminemos nuestro edificio de almacenamiento con una sección de resina mi-" +"go. Si realmente queremos, podemos pasar a duplicar el volumen, pero ¿no " +"será eso extremo, cuando podemos usar el espacio para una zona donde " +"descargar el botín en su lugar?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" +"¡Queremos almacenar TODO! Dupliquemos el tamaño del edificio de " +"almacenamiento, empezando por una sección de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" +"Colocar 12 estantes formando pasillo 1 ½ para el almacén (1750 L de " +"almacenamiento, contenido visible desde la distancia, no bloquea LoS)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "colocar 1 ½ pasillos de estantes en la sección A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "colocar 1 ½ pasillos de estantes en la sección B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "colocar 1 ½ pasillos de estantes en la sección C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "colocar 1 ½ pasillos de estantes en la sección D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "colocar 1 ½ pasillos de estantes en la sección E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "colocar 1 ½ pasillos de estantes en la sección F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "colocar 1 ½ pasillos de estantes en la sección G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "colocar 1 ½ pasillos de estantes en la sección H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "colocar 1 ½ pasillos de estantes en la sección I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "colocar 1 ½ pasillos de estantes en la sección J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "colocar 1 ½ pasillos de estantes en la sección K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "colocar 1 ½ pasillos de estantes en la sección L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "colocar 1 ½ pasillos de estantes en la sección M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "colocar 1 ½ pasillos de estantes en la sección N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "colocar 1 ½ pasillos de estantes en la sección O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "colocar 1 ½ pasillos de estantes en la sección P" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" +"Podríamos utilizar un gran edificio de almacenamiento. Vamos a empezar con " +"una sección de tierra compactada." + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "sección de almacén de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" +"Vamos a ampliar nuestro edificio de almacenamiento con otra sección de " +"tierra compactada." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" +"Terminemos nuestro edificio de almacenamiento con una sección de tierra " +"compactada. Si realmente queremos, podemos pasar a duplicar el volumen, pero" +" ¿no será eso extremo, cuando podemos usar el espacio para una zona donde " +"descargar el botín en su lugar?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" +"¡Queremos almacenar TODO! Dupliquemos el tamaño del edificio de " +"almacenamiento, empezando por una sección de tierra compactada." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" +"Podríamos utilizar un gran edificio de almacenamiento. Vamos a empezar con " +"una sección de piedra." + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "sección de almacén de piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" +"Vamos a ampliar nuestro edificio de almacenamiento con otra sección de " +"piedra." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" +"Terminemos nuestro edificio de almacenamiento con una sección de piedra. Si " +"realmente queremos, podemos pasar a duplicar el volumen, pero ¿no será eso " +"extremo, cuando podemos usar el espacio para una zona donde descargar el " +"botín en su lugar?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" +"¡Queremos almacenar TODO! Dupliquemos el tamaño del edificio de " +"almacenamiento, empezando por una sección de piedra." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" +"Podríamos utilizar un gran edificio de almacenamiento. Vamos a empezar con " +"una sección de bareque." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "sección almacén de bareque" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" +"Vamos a ampliar nuestro edificio de almacenamiento con otra sección de " +"bareque." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" +"Terminemos nuestro edificio de almacenamiento con una sección de bareque. Si" +" realmente queremos, podemos pasar a duplicar el volumen, pero ¿no será eso " +"extremo, cuando podemos usar el espacio para una zona donde descargar el " +"botín en su lugar?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" +"¡Queremos almacenar TODO! Dupliquemos el tamaño del edificio de " +"almacenamiento, empezando por una sección de bareque." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" +"Colocar 12 estantes de almacén formando pasillo 1 ½ para el almacén (3500 L " +"de almacenamiento, contenidos visibles desde la distancia, bloquea LoS). El " +"rey del espacio de almacenamiento con un precio de recurso real" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "colocar 1 ½ pasillos de estantes de almacén en la sección P" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" +"Podríamos utilizar un gran edificio de almacenamiento. Vamos a empezar con " +"una sección de paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "sección almacén de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" +"Vamos a ampliar nuestro edificio de almacenamiento con otra sección de " +"paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" +"Terminemos nuestro edificio de almacenamiento con una sección de paneles de " +"madera. Si realmente queremos, podemos pasar a duplicar el volumen, pero ¿no" +" será eso extremo, cuando podemos usar el espacio para una zona donde " +"descargar el botín en su lugar?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" +"¡Queremos almacenar TODO! Dupliquemos el tamaño del edificio de " +"almacenamiento, empezando por una sección de paneles de madera." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" +"Colocar 12 estanterías de madera formando pasillo 1 ½ para el almacén (1500 " +"L de almacenamiento, contenido visible desde la distancia, no bloquea LoS)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "colocar 1 ½ pasillos de estanterías de madera en la sección P" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "Inspeccionar el terreno para poner un taller." @@ -217189,8 +221800,8 @@ msgid "" "We can use a log workshop. Let's start by building a spot to protect the " "workers from the rain." msgstr "" -"Podemos usar un taller hecho de leños. Empecemos construyendo un lugar para " -"proteger a los trabajadores de la lluvia." +"Nos vendría bien usar un taller hecho de leños. Empecemos construyendo un " +"lugar para proteger a los trabajadores de la lluvia." #: lang/json/recipe_from_json.py msgid "northeast wall" @@ -217213,7 +221824,7 @@ msgstr "Vamos a ampliar nuestra producción añadiendo otro horno de carbón." #: lang/json/recipe_from_json.py msgid "east forge wall" -msgstr "pared este de forja" +msgstr "muro de forja este" #: lang/json/recipe_from_json.py msgid "" @@ -217225,13 +221836,13 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "west forge wall" -msgstr "pared oeste de forja" +msgstr "muro de forja oeste" #: lang/json/recipe_from_json.py msgid "Let's expand our production by adding a log walled pottery kiln area." msgstr "" "Vamos a expandir nuestra producción añadiendo un área de horno de cerámica " -"con paredes de leños." +"con muros de leños." #: lang/json/recipe_from_json.py msgid "north pottery wall" @@ -217241,7 +221852,7 @@ msgstr "muro de la alfarería Norte" msgid "" "Let's enclose this pottery with log walls and get some more storage set up." msgstr "" -"Cercemos esta alfarería con paredes de leños y preparemos un poco más de " +"Cerremos esta alfarería con muros de leños y preparemos un poco más de " "almacenamiento." #: lang/json/recipe_from_json.py @@ -217265,8 +221876,8 @@ msgid "" "We can use a metal workshop. Let's start by building a spot to protect the " "workers from the rain." msgstr "" -"Podemos usar un taller hecho de metal. Empecemos construyendo un lugar para " -"proteger a los trabajadores de la lluvia." +"Nos vendría bien usar un taller hecho de metal. Empecemos construyendo un " +"lugar para proteger a los trabajadores de la lluvia." #: lang/json/recipe_from_json.py msgid "" @@ -217288,14 +221899,14 @@ msgid "" "Let's expand our production by adding a metal walled pottery kiln area." msgstr "" "Vamos a expandir nuestra producción añadiendo un área de horno de cerámica " -"con paredes de metal." +"con muros de metal." #: lang/json/recipe_from_json.py msgid "" "Let's enclose this pottery with metal walls and get some more storage set " "up." msgstr "" -"Cercemos esta alfarería con paredes de metal y preparemos un poco más de " +"Cercemos esta alfarería con muros de metal y preparemos un poco más de " "almacenamiento." #: lang/json/recipe_from_json.py @@ -217303,8 +221914,8 @@ msgid "" "We can use a mi-go resin workshop. Let's start by building a spot to " "protect the workers from the rain." msgstr "" -"Podemos usar un taller hecho de resina mi-go. Empecemos construyendo un " -"lugar para proteger a los trabajadores de la lluvia." +"Nos vendría bien usar un taller hecho de resina mi-go. Empecemos " +"construyendo un lugar para proteger a los trabajadores de la lluvia." #: lang/json/recipe_from_json.py msgid "" @@ -217328,23 +221939,23 @@ msgid "" "area." msgstr "" "Vamos a expandir nuestra producción añadiendo un área de horno de cerámica " -"con paredes de resina mi-go." +"con muros de resina mi-go." #: lang/json/recipe_from_json.py msgid "" "Let's enclose this pottery with mi-go resin walls and get some more storage " "set up." msgstr "" -"Encerremos esta alfarería con paredes de resina mi-go y preparemos un poco " -"más de almacenamiento." +"Encerremos esta alfarería con muros de resina mi-go y preparemos un poco más" +" de almacenamiento." #: lang/json/recipe_from_json.py msgid "" "We can use a rammed earth workshop. Let's start by building a spot to " "protect the workers from the rain." msgstr "" -"Podemos usar un taller hecho de tierra compactada. Empecemos construyendo un" -" lugar para proteger a los trabajadores de la lluvia." +"Nos vendría bien usar un taller hecho de tierra compactada. Empecemos " +"construyendo un lugar para proteger a los trabajadores de la lluvia." #: lang/json/recipe_from_json.py msgid "" @@ -217368,14 +221979,14 @@ msgid "" "area." msgstr "" "Vamos a expandir nuestra producción añadiendo un área de horno de cerámica " -"con paredes de tierra compactada." +"con muros de tierra compactada." #: lang/json/recipe_from_json.py msgid "" "Let's enclose this pottery with rammed earth walls and get some more storage" " set up." msgstr "" -"Encerremos esta alfarería con paredes de tierra compactada y preparemos un " +"Encerremos esta alfarería con muros de tierra compactada y preparemos un " "poco más de almacenamiento." #: lang/json/recipe_from_json.py @@ -217383,14 +221994,14 @@ msgid "" "We can use a rock workshop. Let's start by building a spot to protect the " "workers from the rain." msgstr "" -"Podemos usar un taller de piedras. Empecemos construyendo un lugar para " -"proteger a los trabajadores de la lluvia." +"Nos vendría bien usar un taller de piedras. Empecemos construyendo un lugar " +"para proteger a los trabajadores de la lluvia." #: lang/json/recipe_from_json.py msgid "" "Let's extend the north rock wall to the west and add some storage space." msgstr "" -"Extendamos la pared de roca del Norte al Oeste y añadamos algo de espacio de" +"Extendamos la muros de roca del Norte al Oeste y añadamos algo de espacio de" " almacenamiento." #: lang/json/recipe_from_json.py @@ -217398,29 +222009,29 @@ msgid "" "Let's expand work area with a rock wall, and add a bookshelf for our " "reference books." msgstr "" -"Ampliemos el área de trabajo con una pared de piedra, y agreguemos una " +"Ampliemos el área de trabajo con un muro de piedra, y agreguemos una " "estantería para nuestros libros de referencia." #: lang/json/recipe_from_json.py msgid "Let's expand our production by adding a rock walled pottery kiln area." msgstr "" "Vamos a ampliar nuestra producción añadiendo un área con un horno de " -"cerámica con paredes de piedra." +"cerámica con muros de piedra." #: lang/json/recipe_from_json.py msgid "" "Let's enclose this pottery with rock walls and get some more storage set up." msgstr "" -"Vamos a rodear esta alfarería con paredes de roca y a preparar un poco más " -"de almacenamiento." +"Vamos a rodear esta alfarería con muros de roca y a preparar un poco más de " +"almacenamiento." #: lang/json/recipe_from_json.py msgid "" "We can use a wattle and daub workshop. Let's start by building a spot to " "protect the workers from the rain." msgstr "" -"Podemos usar un taller hecho de bareque. Empecemos construyendo un lugar " -"para proteger a los trabajadores de la lluvia." +"Nos vendría bien usar un taller hecho de bareque. Empecemos construyendo un " +"lugar para proteger a los trabajadores de la lluvia." #: lang/json/recipe_from_json.py msgid "" @@ -217444,23 +222055,23 @@ msgid "" "area." msgstr "" "Vamos a expandir nuestra producción añadiendo un área de horno de cerámica " -"con paredes de bareque." +"con muros de bareque." #: lang/json/recipe_from_json.py msgid "" "Let's enclose this pottery with wattle and daub walls and get some more " "storage set up." msgstr "" -"Encerremos esta alfarería con paredes de bareque y preparemos un poco más de" -" almacenamiento." +"Encerremos esta alfarería con muros de bareque y preparemos un poco más de " +"almacenamiento." #: lang/json/recipe_from_json.py msgid "" "We can use a wood panel workshop. Let's start by building a spot to protect" " the workers from the rain." msgstr "" -"Podemos usar un taller hecho de paneles de madera. Empecemos construyendo un" -" lugar para proteger a los trabajadores de la lluvia." +"Nos vendría bien usar un taller hecho de paneles de madera. Empecemos " +"construyendo un lugar para proteger a los trabajadores de la lluvia." #: lang/json/recipe_from_json.py msgid "Let's extend the north wall to the west and add some storage space." @@ -217485,74 +222096,422 @@ msgstr "" "Vamos a encerrar esta alfarería y a preparar un poco más de almacenamiento." #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." -msgstr "Prepara una hilera de parcelas agrícolas." +msgid "Survey land for a workshop area." +msgstr "Inspecciona la tierra para un area de Taller" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" -msgstr "prepara parcelas agrícolas" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." +msgstr "" +"Vamos a instalar una forja para trabajar el metal en la herrería. También " +"necesitaremos algunas herramientas, así que incluiremos un espacio de " +"almacenamiento. Esto nos proporcionará un primer par de recetas de " +"fabricación primitiva." #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." -msgstr "Prepara una segunda hilera de parcelas agrícolas." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." +msgstr "" +"Instalemos un par de hornos de carbón fuera de la herrería. También " +"añadiremos un crisol. Esto nos permitirá producir algunas cosas adicionales." #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." -msgstr "Prepara otro par de hileras de parcelas agrícolas." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." +msgstr "" +"Instalemos un yunque en la herrería, unos recipientes de templado y un banco" +" de trabajo. Esto nos permitirá producir algunas cosas adicionales." #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" -"Levanta una valla a lo largo del borde exterior más largo para mantener a " -"los ciervos alejados de los cultivos." +"Vamos a añadir muebles y algunas herramientas más a la herrería. Esto nos " +"permitirá producir algunas cosas adicionales." #: lang/json/recipe_from_json.py -msgid "erect a fence" -msgstr "levanta una valla" +msgid "smithing tools" +msgstr "herramientas de herrería" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" -"Levanta una valla a lo largo del borde exterior más corto para mantener a " -"los ciervos alejados de los cultivos." +"Instalemos un fuelle para nuestra fragua y añadamos algunas herramientas " +"más. Esto ampliará nuestro repertorio de recetas." #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" +"Añadamos un martillo pilón a la herrería para aumentar la productividad y " +"añadamos algunas herramientas más. Esto nos permitirá alcanzar nuestro " +"potencial de herrería." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "Vamos a amueblar la alfarería" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "mobiliario de alfarería" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" -"Levanta una valla a lo largo del borde interior más corto para mantener a " -"los ciervos alejados de los cultivos." #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." msgstr "" -"Levanta una valla a lo largo de la parte exterior del borde interior más " -"largo para mantener a los ciervos alejados de los cultivos." +"Añadamos un banco y un barril de fuego fuera de la alfarería para el " +"descanso." + +#: lang/json/recipe_from_json.py +msgid "recreation area" +msgstr "area de descanso" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." msgstr "" -"No tenemos previsto volver a sembrar los campos con un tractor, así que " -"levantamos una valla a lo largo de la parte interior del borde interior más " -"largo." +"Nos vendría bien una herrería de hormigón. Vamos a empezar construyendo un " +"lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" +msgstr "muro de hormigón de herrería" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" -"Construye una puerta empalizada que nos permita llegar a los campos y volver" -" a sembrarlos con un tractor el próximo año." +"Construyamos un techo con pilares de hormigón para proteger las futuras " +"carboneras de la lluvia." #: lang/json/recipe_from_json.py -msgid "build a palisade gate" -msgstr "construir una puerta empalizada" +msgid "concrete kiln protection" +msgstr "protección de carbonera de hormigón" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "Vamos a construir la última sección de hormigón para la herrería." + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "última sección de hormigón de herrería" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "Construyamos una sección de la alfarería de hormigón." + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "alfarería con muros de hormigón" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" +"Nos vendría bien una herrería de leños. Vamos a empezar construyendo un " +"lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "muro de leños de herrería" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" +"Construyamos un techo con pilares de leños para proteger las futuras " +"carboneras de la lluvia." + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "protección de carbonera de leños" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "Vamos a construir la última sección de leños para la herrería." + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "última sección de leños de herrería" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "Vamos a empezar a construir una sección de leños para la alfarería." + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "alfarería con muros de leños" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" +"Nos vendría bien una herrería de metal. Vamos a empezar construyendo un " +"lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "muro de metal de herrería" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" +"Construyamos un techo con pilares de metal para proteger las futuras " +"carboneras de la lluvia." + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "protección de carbonera de metal" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "Vamos a construir la última sección de metal para la herrería." + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "última sección de metal de herrería" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "Vamos a empezar a construir una sección de metal para la alfarería." + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "alfarería con muros de metal" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" +"Nos vendría bien una herrería hecha de resina mi-go. Empecemos construyendo " +"un lugar para proteger a los trabajadores de la lluvia." + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "muro de herrería de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" +"Construyamos un techo con pilares de resina de mi-go para proteger las " +"futuras carboneras de la lluvia." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "protección de carbonera de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "Construyamos la última sección de herrería de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "última sección de herrería de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "Construyamos una sección de la alfarería de resina mi-go." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "alfareria con muros de resina mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" +"Nos vendría bien una herrería de tierra compactada. Vamos a empezar " +"construyendo un lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "muro de herrería de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" +"Construyamos un tejado con pilares de tierra compactada para proteger las " +"futuras carboneras de la lluvia." + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "protección de carbonera de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "Construyamos la última sección de herrería de tierra compactada." + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "última sección de herrería de tierra compactada" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "Construyamos una sección de alfarería de tierra compactada." + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "muros de tierra compactada de alfarería" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" +"Nos vendría bien una herrería de piedra. Vamos a empezar construyendo un " +"lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "muro de piedra de herrería" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" +"Construyamos un techo con pilares de piedra para proteger las futuras " +"carboneras de la lluvia." + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "protección de carbonera de piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "Construyamos la última sección de herrería de piedra." + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "última sección de herrería de piedra" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "Construyamos una sección de la alfarería de piedra." + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "alfarería con muros de piedra" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" +"Nos vendría bien una herrería de bareque. Vamos a empezar construyendo un " +"lugar para proteger de la lluvia a los trabajadores." + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "muro de bareque de herrería" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" +"Construyamos un tejado con pilares de bareque para proteger las futuras " +"carboneras de la lluvia." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "protección de carbonera de bareque" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "Construyamos la última sección de herrería de bareque." + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "última sección de herrería de bareque" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "Construyamos una sección de alfarería de bareque." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "muros de bareque de alfarería" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" +"Nos vendría bien utilizar una herreria de paneles de madera. Empecemos por " +"construir un lugar para proteger a los trabajadores de la lluvia." + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "muro de paneles de madera de herreria" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" +"Construyamos un tejado con pilares de paneles de madera para proteger los " +"futuros hornos de carbón de la lluvia." + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "protección de carbonera de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" +"Vamos a construir la última sección de paneles de madera de la herrería." + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "última sección de la herrería de paneles de madera" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" +"Vamos a empezar a construir una sección de paneles de madera de la " +"alfarería." + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "muros de paneles de madera de alfarería" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" +msgstr "" #: lang/json/recipe_from_json.py msgid "Buttery Duck Bites" @@ -217826,7 +222785,7 @@ msgid "" "Practice your dodging by throwing a ball at a wall and dodging it when it " "bounces off." msgstr "" -"Practicas tu habilidad para esquivar tirando una pelota contra la pared y " +"Practicas tu habilidad para esquivar tirando una pelota contra el muro y " "esquivándola cuando rebota." #: lang/json/recipe_from_json.py @@ -218311,7 +223270,7 @@ msgstr "Fabricar: Hacha de Bombero" #: lang/json/recipe_group_from_json.py msgid " Craft: Hacksaw" -msgstr "Fabricar: Sierra de arco" +msgstr "Fabricar: Sierra Para Metales" #: lang/json/recipe_group_from_json.py msgid " Craft: Woodsaw" @@ -218383,7 +223342,7 @@ msgstr "Base en Oficina de Industria Ligera" #: lang/json/recipe_group_from_json.py msgid "Light Industry Office With Glass Walls Base" -msgstr "Oficina de Industria Ligera con Base de Paredes de Cristal" +msgstr "Oficina de Industria Ligera con Base de Muros de Cristal" #: lang/json/recipe_group_from_json.py msgid "Military Helipad Base" @@ -218434,8 +223393,14 @@ msgid "Mansion Garden With Columns Base" msgstr "Jardín con Columnas de Mansión Base" #: lang/json/recipe_group_from_json.py -msgid "Canteen" -msgstr "Cantina" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" +"Cantina versión 1. Proporciona recetas de cocina, estufas, pozo, bodega" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" +msgstr "" +"Cantina versión 2. Versión 1 más alambique, molino de viento y más macetas" #: lang/json/recipe_group_from_json.py msgid "Farm version 1. Shed, plots, some farming recipes" @@ -218448,25 +223413,54 @@ msgstr "" "Versión 2 granja. Sólo parcelas, valla (puerta opcional para el tractor), " "sin recetas" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "Taller mecánico" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "" +"Garaje versión 1. Se ajusta a los vehículos de tamaño razonable, espacio " +"libre a su alrededor." + +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" +"Versión de garaje 2. Anchura máxima, tamaño de dos carriles, tres longitudes" +" diferentes." #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" -msgstr "Area de Ganado" +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "Area Ganadera versión 1. Disposición con mucho espacio libre" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" +msgstr "" +"Area Ganadera versión 2. Más puestos que la versión 1, menos espacio libre" #: lang/json/recipe_group_from_json.py msgid "Saltworks Area" msgstr "Area de Salinas" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" -msgstr "Edificio de Almacenamiento Central" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" +"Edificio de almacenamiento central versión 1. Bonito edificio con espacio " +"libre" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" -msgstr "Taller de Fabricación" +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" +"Edificio de almacenamiento central versión 2. Centrado en el almacenamiento." +" Colocar en N, E, S, O solamente" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" +msgstr "Taller de Fabricación version 1. Cabaña de taller agradable" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 2. More detailed recipe progression" +msgstr "Taller de Fabricación version 2. Progresión de recetas mas detallada." #: lang/json/recipe_group_from_json.py msgid "Light Industry Workshop" @@ -218628,6 +223622,62 @@ msgstr "Hackear y Descargar: Hojas de Datos IC, unidad USB" msgid " Hack & Download: Satellite Map, sketch" msgstr "Hackear y Descargar: Mapa Satelital, calcado" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "Fabricar: Crisol, Arcilla" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "Fabricar: Par de Pinzas de Boca Plana" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "Fabricar: Cortante de metal (cincel para trabajar metal)" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "Fabricar: Cuchillo, Caza" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "Fabricar: Ahuecador" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "Campamento" @@ -221103,6 +226153,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "Empiezas como una post-umbral Mutante Planta" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "Mutante - Umbral Lagomorfo" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "Mutante - Umbral Lagomorfa" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "Empiezas como un post-umbral Mutante Lagomorfo" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "Empiezas como un post-umbral Mutante Lagomorfa" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -221453,7 +226529,7 @@ msgstr "" "objetos útiles. Esta habilidad juega un papel importante en la fabricación " "de muchos objetos." -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "alimentación " @@ -222140,7 +227216,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "Expect the unexpected, even if it's the Spanish Inquisition." -msgstr "Espera lo inesperable, incluso si es la Inquisición Española." +msgstr "Espera lo inesperado, incluso si es la Inquisición Española." #: lang/json/snippet_from_json.py msgid "" @@ -222378,11 +227454,11 @@ msgstr "¡Cuando veas un enjambre de zombis viniendo es hora de correr!" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" "Si te está persiguiendo una horda de zombis, intenta esconderte en los " -"túneles del metro y viaja una casilla o dos, después vuelve a salir." +"túneles de metro y viaja un bloque o dos, antes de volver a salir." #: lang/json/snippet_from_json.py msgid "" @@ -222426,9 +227502,9 @@ msgid "" "from walls and stuff when they do… the electricity can travel along solid " "surfaces." msgstr "" -"Hay un tipo de zombi que puede disparar rayos. Aléjate de las paredes y " -"cosas cuando lo hacen... la electricidad puede viajar a lo largo de " -"superficies sólidas." +"Hay un tipo de zombi que puede disparar rayos. Aléjate de los muros y cosas " +"cuando lo hacen... la electricidad puede viajar a lo largo de superficies " +"sólidas." #: lang/json/snippet_from_json.py msgid "" @@ -222484,9 +227560,9 @@ msgid "" "zombies, so if you turn your light off at night you can sneak right past." msgstr "" "Los pequeños esqueletos son demasiado delicados para atravesar puertas o " -"ventanas. Los grandes pueden entrar a través de una pared. Al menos no " -"pueden olerte, a diferencia de los zombis, así que si apagas la luz por la " -"noche puedes pasar de largo." +"ventanas. Los grandes pueden entrar a través de un muro. Al menos no pueden " +"olerte, a diferencia de los zombis, así que si apagas la luz por la noche " +"puedes pasar de largo." #: lang/json/snippet_from_json.py msgid "" @@ -222514,7 +227590,7 @@ msgid "" msgstr "" "Tengo un amigo que estaba durmiendo en esta cabaña en el bosque, cuando de " "repente se despertó con los árboles y las vides creciendo a través del suelo" -" y las paredes! Dijo que era una especie de enorme bestia de los árboles..." +" y los muros! Dijo que era una especie de enorme bestia de los árboles..." #: lang/json/snippet_from_json.py msgid "" @@ -223174,7 +228250,7 @@ msgid "" "defense… it's perfect!" msgstr "" "He pasado muchas noches en los vestuarios de la parte trasera de las tiendas" -" de ropa. Paredes en cuatro lados, lejos de la entrada de la tienda, un " +" de ropa. Muros en cuatro lados, lejos de la entrada de la tienda, un " "pasillo para la defensa fácil... ¡es perfecto!" #: lang/json/snippet_from_json.py @@ -223318,7 +228394,7 @@ msgid "" "can't just say it's a lie." msgstr "" "Conocí a una chica que insistía en que veía a un tiburón de tierra " -"perforando a través de la roca, las paredes y la suciedad por igual. Lo " +"perforando a través de la roca, los muros y la suciedad por igual. Lo " "consideraría una fábula, pero he visto cosas, y no puedo decir que sea una " "mentira." @@ -223458,22 +228534,23 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" -"Ya no estoy seguro de si Mike está cuerdo. Tuvo la mala suerte de que lo " -"llevaran a una escuela una vez. Esta experiencia le rompió más que sus " -"costillas en ese momento." +"Conocí a un profesor de primaria que tuvo que luchar para salir de la " +"escuela. Tuvo que matar a una docena de niños enloquecidos. No puedo " +"imaginar lo que eso hace a una persona." #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" -"Un pensamiento sobre los explosivos. Si todavía puedes correr y no ha hecho " -"\"bum\" todavía, corre un poco más. No hay tal cosa como el exceso de " -"espacio entre tú y un cartucho de dinamita." +"Una idea sobre los explosivos: Si todavía puedes correr y el explosivo no ha" +" detonado aún, corre un poco más. Ninguna precaución es excesiva cuando se " +"maneja una granada." #: lang/json/snippet_from_json.py msgid "Avoid using launchers in narrow hallways, you might miss." @@ -223645,7 +228722,7 @@ msgid "" "Everything seems to mutate nowadays. Even survivors. I wonder if I would " "look good with bunny ears? Would I hear better?" msgstr "" -"Todo parece mutar hoy en día. Incluso los sobrevivientes. Me pregunto si me " +"Todo parece mutar hoy en día. Incluso los supervivientes. Me pregunto si me " "vería bien con orejas de conejo. ¿Oiría mejor?" #: lang/json/snippet_from_json.py @@ -223653,7 +228730,7 @@ msgid "" "Everything seems to mutate nowadays. Even survivors. Do you think I'd " "still look good if I had piranha teeth?" msgstr "" -"Todo parece mutar hoy en día. Incluso los sobrevivientes. ¿Crees que todavía" +"Todo parece mutar hoy en día. Incluso los supervivientes. ¿Crees que todavía" " me vería bien si tuviera dientes de piraña?" #: lang/json/snippet_from_json.py @@ -223661,7 +228738,7 @@ msgid "" "Everything seems to mutate nowadays. Even survivors. You think I'd look " "good with thorns growing from my face?" msgstr "" -"Todo parece mutar hoy en día. Incluso los sobrevivientes. ¿Crees que me " +"Todo parece mutar hoy en día. Incluso los supervivientes. ¿Crees que me " "vería bien con espinas creciendo en mi cara?" #: lang/json/snippet_from_json.py @@ -223669,7 +228746,7 @@ msgid "" "Everything seems to mutate nowadays. Even survivors. If my eyeballs began " "shooting lasers do you think I would still be able see?" msgstr "" -"Todo parece mutar hoy en día. Incluso los sobrevivientes. Si mis ojos " +"Todo parece mutar hoy en día. Incluso los supervivientes. Si mis ojos " "empezaran a disparar láseres, ¿crees que todavía sería capaz de ver?" #: lang/json/snippet_from_json.py @@ -223677,7 +228754,7 @@ msgid "" "Everything seems to mutate nowadays. Even survivors. I wonder how I would " "look with antlers? Hats would be out of the question…" msgstr "" -"Todo parece mutar hoy en día. Incluso los sobrevivientes. Me pregunto cómo " +"Todo parece mutar hoy en día. Incluso los supervivientes. Me pregunto cómo " "me vería con la cornamenta. Los sombreros estarían fuera de discusión..." #: lang/json/snippet_from_json.py @@ -226282,7 +231359,7 @@ msgstr "¡Joder! Un " #: lang/json/snippet_from_json.py msgid "Watch out for that" -msgstr "Cuidado con ese/a" +msgstr "Cuidado con" #: lang/json/snippet_from_json.py msgid "Watch out! I see a" @@ -226518,7 +231595,7 @@ msgstr "¿Alguno más quiere morir?" #: lang/json/snippet_from_json.py msgid "How do we get out of here?" -msgstr "¿Cómo salimos de acá?" +msgstr "¿Cómo salimos de aquí?" #: lang/json/snippet_from_json.py msgid "Is that the last of them?" @@ -228489,7 +233566,7 @@ msgid "" "They're bringing in ANOTHER CREW? Christ, it's just some cave carvings! I know that's sort of a big deal, but come on, these guys can't handle it?" msgstr "" "ENTRADA 54:\n" -"Vi a un par de tipos en la cámara con un cincel, rompiendo un trozo de la pared. Estoy mirando hacia el otro lado. No es como si los cerebritos fueran a notar que falta un pequeño trozo. Que se jodan.\n" +"Vi a un par de tipos en la cámara con un cincel, rompiendo un trozo de muro. Estoy mirando hacia el otro lado. No es como si los cerebritos fueran a notar que falta un pequeño trozo. Que se jodan.\n" "ENTRADA 55:\n" "Bueno, los arqueólogos están ahí abajo con un par de chicos como guías. Difícilmente son del tipo de Indiana Jones; dudo que hayan estado a menos de 20 pies. Odio sacar a los chicos de la asignación sólo para cuidar a los científicos, pero si se lastiman estaremos cerrados por Dios sabe cuánto tiempo.\n" "ENTRADA 58:\n" @@ -228922,6 +233999,353 @@ msgstr "" "Al mirar las estrellas, una amplia franja de ellas se sumerge en la " "oscuridad y luego vuelven a la vida en una sucesión irregular." +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "Por un segundo ves lo que parece una isla en el cielo." + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "Por un segundo el sol se vuelve rojo sangre y parece gotear algo." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" +"Por un momento se ve lo que parecen ser edificios del tamaño de montañas en " +"la distancia." + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" +"Por un instante te encuentras entre una multitud de personas parcialmente " +"transparentes. No te hacen caso." + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" +"Ves un pequeño avión volando a baja altura en el cielo, pero está volando " +"hacia atrás y tiene una bandera que no reconoces." + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "Todas las sombras que se ven giran como si el sol se moviera." + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "Por un segundo se ve lo que parece una cadena de islas en el cielo." + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" +"Durante un segundo el sol se oscurece, casi como si fuera un ojo gigante que" +" parpadea." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" +"Por un momento ves lo que parecen insectos del tamaño de montañas en la " +"distancia." + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" +"Por un instante te encuentras entre una multitud de personas parcialmente " +"transparentes. Todos te miran." + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" +"Ves un gran avión volando a baja altura en el cielo, pero está volando al " +"revés y tiene una versión invertida en color de tu bandera." + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" +"Todas las sombras que se ven cambian de forma y color empezando a parecerse " +"a figuras humanas." + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "Por un segundo se ve lo que parece una ciudad en el cielo." + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" +"Durante un segundo, el sol cambia de rumbo hacia el norte y se acelera." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" +"Por un momento ves lo que parecen seres humanos del tamaño de montañas en la" +" distancia." + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" +"Por un instante te encuentras en una multitud de personas parcialmente " +"transparentes. Todos te señalan y gritan en un idioma que las cuerdas " +"vocales humanas no deberían poder hablar." + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" +"Se ve un gran avión volando a baja altura en el cielo pero que vuela hacia " +"atrás. Un paracaidista aparece cerca de él y aparentemente cae hacia arriba " +"en el avión mientras la figura lucha." + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" +"Todas las sombras que puedes ver cambian de forma y color empezando a " +"parecerse a figuras con demasiados miembros que te hacen señas para que te " +"acerques a ellas." + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "Hueles un olor químico fuerte que no puedes ubicar." + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" +"Se te ponen los pelos de punta mientras un débil cosquilleo eléctrico te " +"invade." + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" +"Se abre un agujero gigante en el cielo y varias nubes desaparecen en él." + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" +"Un gigantesco agujero se abre en el cielo y varias nubes oscuras emergen de " +"él." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" +"Durante una fracción de segundo, el mundo se vuelve brumoso, como si hubiera" +" otras formas colocadas encima." + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" +"Por un momento se abre un agujero en la realidad y puedes ver tu propia " +"espalda." + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "Por un momento todos los colores se apagan." + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "Por un momento todas las distancias parecen reducirse." + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" +"Una figura de corta estatura aparece y desaparece demasiado rápido como para" +" ver sus rasgos." + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" +"Hueles un olor totalmente nuevo, que no se parece a nada que hayas olido " +"antes. No puedes decidir si es bueno o malo." + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" +"Se te ponen los pelos de punta mientras un cosquilleo eléctrico te invade." + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" +"Un agujero gigante se abre en el cielo y varias nubes de neón emergen de él." + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" +"Un agujero gigante que parece un ojo se abre en el cielo y luego se cierra " +"como si parpadeara." + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" +"Durante una fracción de segundo, el mundo se superpone a un inmenso vacío." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" +"Durante una fracción de segundo, el mundo se superpone a una pequeña " +"habitación circular sin rasgos." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" +"Durante una fracción de segundo, el mundo se superpone a un vasto paisaje " +"alienígena con formas vegetales del tamaño de un edificio a tu alrededor" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" +"Durante una fracción de segundo, el mundo se superpone a una ciudad vacía y " +"en ruinas, aunque construida a una escala muy diferente a las de la Tierra." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" +"Por un momento se abre un agujero en la realidad y puedes ver una copia casi" +" perfecta de ti mismo." + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "Por un momento todos los colores se invierten." + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "Por un momento todas las distancias parecen duplicarse." + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" +"Una figura alta se desvanece rápidamente dejando una vaga impresión de " +"malicia." + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" +"Hueles un olor totalmente nuevo, como nada que hayas olido antes. Te provoca" +" arcadas." + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" +"Se te ponen los pelos de punta cuando una fuerte corriente eléctrica te " +"inunda." + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" +"Un agujero irregular se abre en el cielo y emerge una inmensa nube con forma" +" de persona asimétrica." + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" +"Un agujero irregular que parece un ojo se abre en el cielo y te mira " +"fijamente." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" +"Durante una fracción de segundo, el mundo desaparece y te encuentras en un " +"vasto vacío." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" +"Durante una fracción de segundo, el mundo se desvanece y te encuentras en " +"una pequeña habitación circular sin rasgos." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" +"Durante una fracción de segundo, el mundo desaparece y te encuentras en un " +"vasto paisaje alienígena con formas vegetales del tamaño de un edificio a tu" +" alrededor" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" +"Durante una fracción de segundo, el mundo se desvanece y te encuentras en " +"una ciudad vacía y en ruinas, aunque construida a una escala muy diferente a" +" las de la Tierra." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" +"Por un momento se abre un agujero en la realidad y puedes ver una lasciva " +"copia idealizada de ti mismo." + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" +"Por un momento todos los colores fluyen para formar formas irregulares." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" +"Por un momento todas las distancias parecen desaparecer, como si todo fuera " +"uno. Es claustrofóbico." + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" +"Una figura alta aparece y desaparece rápidamente mirándote y señalándote " +"todo el tiempo." + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -228932,10 +234356,10 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" "Los raíles están resbaladizos aquí, con una sustancia gris rezumante y " -"tembloroso que brota desde abajo." +"temblorosa que brota desde abajo." #: lang/json/snippet_from_json.py msgid "" @@ -229030,8 +234454,8 @@ msgid "" "Bullet marks pock the walls, interspersed with finger-deep scratches and " "dried blood." msgstr "" -"Las marcas de balas salpican las paredes, intercaladas con arañazos " -"profundos y sangre seca." +"Las marcas de balas salpican los muros, intercaladas con arañazos profundos " +"y sangre seca." #: lang/json/snippet_from_json.py msgid "" @@ -229060,7 +234484,7 @@ msgid "" "The tunnel's wall is covered in a thin membrane of shuddering flesh, growing" " (flowing? crawling?) from a broken pipe. You keep your distance." msgstr "" -"La pared del túnel está cubierta por una fina membrana de carne temblorosa, " +"El muro del túnel está cubierta por una fina membrana de carne temblorosa, " "que crece (¿fluye? ¿se arrastra?) desde una tubería rota. Mantienes la " "distancia." @@ -229071,8 +234495,8 @@ msgid "" "the ceiling that's dripping sticky, bluish ichor." msgstr "" "Observas una única línea de huellas de tres dedos, que comienza en el suelo " -"pero continúa sin pausa en las paredes antes de desaparecer en un agujero en" -" el techo que gotea un icor pegajoso y azulado." +"pero continúa sin pausa en las muros antes de desaparecer en un agujero en " +"el techo que gotea un icor pegajoso y azulado." #: lang/json/snippet_from_json.py msgid "" @@ -229088,11 +234512,11 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" -"La pared está alfombrada por hongos de color verde-grisáceo, cuyos sombreros" -" se vuelven hacia ti con anticipación." +"El muro está alfombrada por hongos de color verde-grisáceo, cuyos sombreros " +"se vuelven hacia ti con anticipación." #: lang/json/snippet_from_json.py msgid "" @@ -229100,7 +234524,7 @@ msgid "" "inexorably to its center. You force yourself to look away, and feel " "something shift behind the wall." msgstr "" -"El hormigón de la pared se deforma en un relieve en espiral, atrayendo tu " +"El hormigón del muro se deforma en un relieve en espiral, atrayendo tu " "mirada inexorablemente hacia su centro. Te obligas a apartar la mirada y " "sientes que algo se desplaza detrás del muro." @@ -230423,7 +235847,7 @@ msgid "" "mutilated bodies. She died in a skirmish a few months later." msgstr "" " Desesperada por salvar a la humanidad de la extinción, organizó su propio " -"grupo de sobrevivientes, cuyo trabajo era cazar bandidos y decorar las " +"grupo de supervivientes, cuyo trabajo era cazar bandidos y decorar las " "carreteras con sus cuerpos mutilados. Murió en una escaramuza unos meses " "después." @@ -231391,7 +236815,7 @@ msgstr "" "\n" "La gente dice que los manifestantes están simplemente locos, o bajo la influencia de esa nueva droga, o sonámbulos. No sé qué es cierto y no me importa. Dicen casi lo mismo de los testigos oculares; tal vez todos estemos soñando con fiebre ahora.\n" "\n" -"Esto no se va a retrasar, y mucho menos resolver solo, con rifles o raciones de proteínas o robots militares autorizados a matar. La escritura está en la pared. No estoy diciendo que mi camino sea bueno o santo, y te quiero y respeto pase lo que pase, pero espero y rezo para que te unas a mí.\n" +"Esto no se va a retrasar, y mucho menos resolver solo, con rifles o raciones de proteínas o robots militares autorizados a matar. La escritura está en el muro. No estoy diciendo que mi camino sea bueno o santo, y te quiero y respeto pase lo que pase, pero espero y rezo para que te unas a mí.\n" "\n" "No hay mucho tiempo para decidir. Pronto podríamos ser los últimos en la tierra. Ya sabes dónde ir.\n" "\n" @@ -231545,7 +236969,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "There is a beautifully drawn graffiti tag on the wall here." -msgstr "Hay una etiqueta de grafiti bellamente dibujada en la pared aquí." +msgstr "Hay una etiqueta de grafiti bellamente dibujado en el muro aquí." #: lang/json/snippet_from_json.py msgid " is a heteronormative bully!" @@ -234178,7 +239602,7 @@ msgid "" msgstr "" "S37ZBE puede ser puesto en suspenso en breve. Los cambios morfológicos post-" "mortem han alcanzado niveles extremos; esta mañana un sujeto casi duplicó su" -" tamaño, adquiriendo fuerza suficiente para reducir a escombros la pared de " +" tamaño, adquiriendo fuerza suficiente para reducir a escombros el muro de " "hormigon. Se necesitaró un equipo de 6 hombres, muy armados, para poder re-" "eliminar al sujeto." @@ -234419,7 +239843,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "Be Alert, Don't get Hurt!" -msgstr "¡Este preparado, No sea dañado!" +msgstr "¡Esté atento, no se haga daño!" #: lang/json/snippet_from_json.py msgid "" @@ -234695,7 +240119,7 @@ msgstr "honestamente, un poco mediocre" #: lang/json/snippet_from_json.py msgid "bassline" -msgstr "lineas de bajos" +msgstr "linea de bajos" #: lang/json/snippet_from_json.py msgid "melody" @@ -235583,11 +241007,11 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" -"Es un pedazo cocinado del pulmón de un animal mutado. Con mucho trabajo " -"puedes cortar alrededor del caparazón endurecido de mugre translúcida, pero " -"tu recompensa será conseguir una masa de tejido esponjoso, gris y casi sin " +"Un pedazo cocinado del pulmón de un animal mutado. Con mucho trabajo puedes " +"cortar alrededor del caparazón endurecido de mugre translúcida, pero tu " +"recompensa será conseguir una masa de tejido esponjoso, gris y casi sin " "sabor." #: lang/json/snippet_from_json.py @@ -235673,10 +241097,10 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" -"Es un pedazo de hígado de un animal mutado. La superficie está ennegrecida y" -" dura pero rota, exponiendo unas pocas tiras de tejido rosa debajo. Después " +"Un pedazo de hígado de un animal mutado. La superficie está ennegrecida y " +"dura pero rota, exponiendo unas pocas tiras de tejido rosa debajo. Después " "de romper y dejarlo totalmente abierto, el tejido interno empieza a " "hincharse a una velocidad alarmante antes de volverse gris y muerto." @@ -235694,17 +241118,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " "that's still better than you expected." msgstr "" -"Es un pedazo cocinado de hígado de un animal mutado. En lugar del color " -"marrón gris mate de un hígado normal, este se volvió desconcertantemente " -"naranja luego de calentarlo, y unos copos del tamaño de un dedo se sueltan " -"al mínimo toque. El sabor te hace acordar a un aguacate un poquito pasada de" -" madura, pero eso es mejor de lo que esperabas." +"Un pedazo cocinado de hígado de un animal mutado. En lugar del color marrón " +"gris mate de un hígado normal, este se volvió desconcertantemente naranja " +"luego de calentarlo, y unos copos del tamaño de un dedo se sueltan al mínimo" +" toque. El sabor te hace acordar a un aguacate un poquito pasado de maduro, " +"pero eso es mejor de lo que esperabas." #: lang/json/snippet_from_json.py msgid "" @@ -235722,24 +241146,24 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" -"Es un pedazo cocinado de hígado de un animal mutado. El tejido se partió por" -" las venas antes de endurecerse, pareciendo un flor gris retorcida con una " -"vena sinuosa como tallo. Tal vez sorprendentemente, su sabor no es tan " +"Un pedazo cocinado de hígado de un animal mutado. El tejido se partió por " +"las venas antes de endurecerse, recordándote una flor gris retorcida con una" +" vena sinuosa como tallo. Tal vez sorprendentemente, su sabor no es tan " "diferente al de un hígado normal." #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" -"Es un pedazo de riñón de un animal mutado. Al cortarlo, tu cuchillo resbala " -"abriendo un gran trajo en un costado desde el cual unas pequeñas perlas " +"Un pedazo de riñón de un animal mutado. Al cortarlo, tu cuchillo resbala " +"abriendo un gran tajo en un costado desde el cual unas pequeñas perlas " "hermosas salen rodando. Ante tus ojos, comienzan a brillan de humedad y se " "derriten sin dejar rastro además de un hedor punzante." @@ -235856,7 +241280,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -236009,8 +241433,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" "Espaciados uniformemente por todo el cuerpo se encuentran pequeños sacos de " "huevos en diferentes etapas de crecimiento" @@ -236563,7 +241987,7 @@ msgstr "" "cada una de las cuales se alimenta de un depósito en la base del aguijón" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" "Abres un estómago, liberando un chorro de un fluido gris de olor dulce" @@ -236575,12 +241999,12 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" "Tu cuchillo alcanza el aguijón retraído y se desliza sobre su superficie " -"lisa, abriendo media docena de glándulas de veneno en el proceso. No te has " -"cortado, ¿verdad?" +"lisa, abriendo media docena de glándulas de veneno en el proceso. Esperas " +"sinceramente no haberte cortado" #: lang/json/snippet_from_json.py msgid "" @@ -237394,11 +242818,11 @@ msgid "" "not even considering the dangers of letting them have access to our faces " "and criminal records." msgstr "" -"EDITORIAL: LOS GLOBOS OCULARES REPRESENTAN UNA TENDENCIA PREOCUPANTE. Ahí " -"está, como siempre: el zumbido interminable de los ojobots que recorren las " -"calles, a la caza de las malas acciones. He escrito muchos artículos sobre " -"estas cosas, y he leído muchos más. He hablado con expertos. Cuando llegamos" -" al fondo de esto, hay una inquietante verdad fundamental sobre estos " +"EDITORIAL: LOS OJOBOTS REPRESENTAN UNA TENDENCIA PREOCUPANTE. Ahí está, como" +" siempre: el zumbido interminable de los ojobots que recorren las calles, a " +"la caza de las malas acciones. He escrito muchos artículos sobre estas " +"cosas, y he leído muchos más. He hablado con expertos. Cuando llegamos al " +"fondo de esto, hay una inquietante verdad fundamental sobre estos " "omnipresentes robots... Nadie sabe cómo funcionan. La inteligencia " "artificial utilizada por los pequeños drones es mucho más que reconocimiento" " facial, es también procesamiento de amenazas y toma de decisiones, y en su " @@ -237712,7 +243136,7 @@ msgid "" msgstr "" "LA DROGA DE DISEÑO EXTRANJERA DE LA QUE NO QUIEREN QUE SEPAS? Los informes " "de una fuente del Departamento de Policía de Boston han insinuado que hay " -"una nueva droga en las calles. Apártate, fentanyl: esta es una nueva " +"una nueva droga en las calles. Apártate, fentanilo: esta es una nueva " "sustancia, apodada Ciudad Prohibida. Mientras que tiene una tasa de " "sobredosis fatal más baja, Ciudad Prohibida es mucho más adictiva que la " "heroína o las metanfetaminas, y se está abriendo paso rápidamente en las " @@ -237821,12 +243245,12 @@ msgid "" "while preparing for the worst. We cannot abandon key allies in the face of " "Chinese bullying.\"" msgstr "" -"APOYE A LOS PAÍSES QUE APOYAN AL TUYO - PRESIDENTE: Hoy temprano, en una " -"decisión inesperada e impopular, el presidente sugirió la posible " -"institución de un proyecto de paz en respuesta a la creciente agresión china" -" hacia Taiwán y Filipinas. \"Debemos rezar para que ocurra lo mejor mientras" -" nos preparamos para lo peor. No podemos abandonar a los aliados clave ante " -"la intimidación china\"." +"SOPORTE A LOS PAÍSES QUE SOPORTAN AL SUYO - PRESIDENTE: Hoy temprano, en una" +" decisión inesperada e impopular, el presidente sugirió la posible " +"institución de un proyecto de paz en respuesta a la creciente agresión de " +"china hacia Taiwán y Filipinas. \"Debemos rezar para que ocurra lo mejor " +"mientras nos preparamos para lo peor. No podemos abandonar a los aliados " +"clave ante la intimidación china\"." #: lang/json/snippet_from_json.py msgid "" @@ -238897,6 +244321,77 @@ msgstr "" "Te despiertas de una pesadilla en la que el cataclismo no ha ocurrido y " "estás atrapado en un trabajo de oficina." +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "¿Te gustan los gatos o los perros?" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "Es bueno saber que los zetas no sienten dolor." + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "Dondequiera que acabemos, al menos seguimos vivos, ¿no?" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "De alguna forma, no creo que vuelva a mi antiguo trabajo pronto..." + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" +"¡Cielos, esto no se parece en nada a esas películas de zombis de Hollywood!" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "¿Alguna vez piensas en la ética de matar zombis?" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" +"¿Así que mojas el cepillo de dientes DESPUÉS de aplicar la pasta de dientes?" +" Eso es muy raro." + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "¿Qué crees que está haciendo el presidente en este momento?" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" +"¿Qué te gusta escuchar? Personalmente, me gusta la polka de velocidad post-" +"glam con muchos bajos." + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" +"No se lo digas a nadie más, pero a veces me gusta dormir abrazado a mi oso " +"de peluche." + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "A veces veo cosas raras en el cielo por la noche." + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "Solía tener un gato. Realmente extraño al Sr. Abrazos..." + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" +"Mis amigos y yo solíamos jugar a policías y ladrones, pero con zombis. Nunca" +" pensé que lo haría de verdad..." + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "¿Alguna vez has pensado que estamos en una especie de simulación?" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -239427,7 +244922,7 @@ msgstr "Es un agujero negro. ¡No te caigas en el!" #: lang/json/snippet_from_json.py msgid "Just a big brick wall." -msgstr "Es solo una pared grande de ladrillos." +msgstr "Solo un muro grande de ladrillos." #: lang/json/snippet_from_json.py msgid "You found kitten! No, just kidding." @@ -239488,7 +244983,7 @@ msgstr "Es la constelación Piscis." #: lang/json/snippet_from_json.py msgid "It's a fly on the wall. Hi, fly!" -msgstr "Es una mosca en la pared. ¡Hola, mosca!" +msgstr "Una mosca en el muro. ¡Hola, mosca!" #: lang/json/snippet_from_json.py msgid "This kind of looks like kitten, but it's not." @@ -241307,7 +246802,7 @@ msgstr "Este lugar es peligroso, no deberías estar aquí." #: lang/json/snippet_from_json.py lang/json/talk_topic_from_json.py msgid "What are you doing out here?" -msgstr "¿Qué estás haciendo acá afuera?" +msgstr "¿Qué estás haciendo aquí afuera?" #: lang/json/snippet_from_json.py msgid "That's not true, is it?" @@ -241325,17 +246820,17 @@ msgstr "¡Eh, vamos a matar ese %1$s!" #: lang/json/snippet_from_json.py #, no-python-format msgid "Did you see that %1$s!?" -msgstr "¿¡Viste ese/a %1$s!?" +msgstr "¿¡Viste %1$s!?" #: lang/json/snippet_from_json.py #, no-python-format msgid "I want to kill that %1$s!" -msgstr "¡Quiero matar ese/a %1$s!" +msgstr "¡Quiero matar %1$s!" #: lang/json/snippet_from_json.py #, no-python-format msgid "Let me kill that %1$s!" -msgstr "¡Dejame matar ese/a %1$s!" +msgstr "¡Dejame matar %1$s!" #: lang/json/snippet_from_json.py #, no-python-format @@ -241345,12 +246840,12 @@ msgstr "¡Oye, necesito matar ese %1$s!" #: lang/json/snippet_from_json.py #, no-python-format msgid "I want to watch that %1$s bleed!" -msgstr "¡Quiero ver sangrando a ese/a %1$s!" +msgstr "¡Quiero ver sangrando a %1$s!" #: lang/json/snippet_from_json.py #, no-python-format msgid "Wait, that %1$s needs to die!" -msgstr "¡Esperá, ese/a %1$s tiene que morir!" +msgstr "¡Esperá, %1$s tiene que morir!" #: lang/json/snippet_from_json.py #, no-python-format @@ -241360,12 +246855,12 @@ msgstr "¡Ve a matar eso %1$s!" #: lang/json/snippet_from_json.py #, no-python-format msgid "Look at that %1$s!" -msgstr "¡Mirá ese/a %1$s!" +msgstr "¡Mirá %1$s!" #: lang/json/snippet_from_json.py #, no-python-format msgid "That %1$s doesn't deserve to live!" -msgstr "¡Ese/a %1$s no se merece vivir!" +msgstr "¡%1$s no se merece vivir!" #: lang/json/snippet_from_json.py msgid "Hey, you're bleeding." @@ -241447,7 +246942,7 @@ msgstr "¡Déjame matar algo ya!" msgid "I'm your best friend, right?" msgstr "Soy tu mejor amigo, ¿no?" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "¡Te quiero!" @@ -242203,6 +247698,118 @@ msgstr "Me estas cabreando de mala manera..." msgid "You hate this loud sound." msgstr "Odias este sonido alto." +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "Tenías un perro parecido a este..." + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "¡Ja ja! Una foto divertida de un gato." + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "Excelentes imágenes de la naturaleza." + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "Fotos de comida... ¡tu estómago te ruge!" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "Algunas fotos muy interesantes de viajes." + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "Fotos del concierto de una banda conocida." + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "Fotos de la lujosa casa de alguien." + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "Sientes nostalgia mientras te quedás mirando la foto." + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "Es cierto." + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "Decididamente, es así." + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "Sin lugar a dudas." + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "Sí - definitivamente." + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "Podías confiar en eso." + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "Como yo lo veo, sí." + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "Lo más probable." + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "Buena perspectiva." + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "Sí." + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "Las señales dicen que sí." + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "La respuesta es difusa, prueba otra vez." + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "Preguntá otra vez después." + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "Mejor no te lo digo ahora." + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "No se puede predecir ahora." + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "Concentrate y preguntá otra vez." + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "No cuentes con ello." + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "Mi respuesta es no." + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "Mis fuentes dicen que no." + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "Las perspectivas no son tan buenas." + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "Muy dudoso." + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -242221,6 +247828,21 @@ msgstr "\"¡vamos a superar esto!\"" msgid "\"i'm here for you!\"" msgstr "\"¡estoy aquí para ayudarte!\"" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "\"¡Vaya! ¡Eres clavado a mí! ¡Deberíamos cuidarnos mutuamente!\"" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "\"¡vamos, gran yo, vamonos!\"" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "\"¡somos un equipo, podemos lograrlo!\"" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "\"ESTAMOS DE ACUERDO EN QUE EL GOBIERNO LO HIZO\"" @@ -242497,8 +248119,8 @@ msgid "" "\"A wood ax works pretty well against them. So does a machete, but you " "can't cut down a tree.\"" msgstr "" -"\"Un hacha para leña anda bastante bien contra ellos. También un machete, " -"pero no puedes cortar un árbol.\"" +"\"Un hacha de madera va bastante bien contra ellos. También un machete, pero" +" no puedes cortar un árbol con el.\"" #: lang/json/snippet_from_json.py msgid "" @@ -243714,6 +249336,115 @@ msgstr "" "\"⋯bioluminiscente, de 5' de diámetro⋯ parece ser un inmenso globo ocular " "incorpóreo, capaz de volar y [ilegible] pensar\"" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" +"\"¿Qué pasa con el agua hirviendo? El agua de lluvia se destila de forma " +"natural. Es perfectamente segura, podrías ahorrar mucho tiempo si no la " +"hirvieras. ¡Yo he bebido agua del río y estoy bien!\"." + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" +"\"Fui al refugio de emergencia, un tipo entró, salió, agarró una piedra, " +"rompió un banco en pedazos, talló un tablón de él, y salió de nuevo. No lo " +"he vuelto a ver en 3 días... me pregunto cuál es su historia\"." + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" +"Esta nota está cubierta de baba gris, ew... \"Sé que tengo un fetiche pero " +"ESTO ES DEMASIADO. Mis manos están hechas de baba. Mi pelo es baba. Mi " +"cuerpo está cubierto de baba. Ni siquiera puedo usar una palanca por culpa " +"de la baba. Dondequiera que vaya, dejo un rastro de baba. Todo es baba. Mi " +"bolsa se me cae de la espalda en baba\"." + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" +"Una página de un cuaderno, con una referencia en código morse y el siguiente" +" mensaje decodificado: \"Whisky eco whisky - Lima alfa delta\"" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" +"\"Mira si quieres ser, extra molesto puedes, asentir al, vertedero e ir, a " +"ayudar, a Erin a desenterrar el, último, trozo\"" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" +"\"Vi a uno de esos trabajadores de Lugarcomida en la calle. Sinceramente, no" +" parecen diferentes vivos que muertos\"." + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" +"\"¡NO vayas a las plantas de irradiación! Mi camión parece un queso suizo " +"después de que las torretas hayan hecho de las suyas. Voy a estar atascado " +"en la carretera durante horas mientras remiendo este desastre\"." + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" +"\"Me imagino a la gente enviando su \"amor y sus oraciones\" en las redes " +"sociales. El amor no mata a los zetas, la oración no pone comida en mi " +"barriga\"." + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" +"\"Solía tomar todo al pie de la letra. Si no podías medirlo, no podías " +"explicarlo, no podías ponerle un número, no era real. Entonces toda esta " +"mierda ocurrió. Muy divertido\"." + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "Esta nota está cubierta de una sustancia gris, ew... \"Blorble\"" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" +"\"Vi a una chica en el bosque. Su cuerpo era todo verde y mierda, y estaba " +"cubierta de hojas y enredaderas\"." + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" +"\"Buenas noticias: Mis profesores no intentan arrancarme los miembros por " +"mis deberes. Malas noticias: Mis profesores intentan arrancarme los miembros" +" a pesar de todo\"." + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -244348,7 +250079,7 @@ msgid "" "\n" "To continue the tutorial, please craft the peanut butter sandwich and then eat it by pressing 'E'." msgstr "" -"¡Parece que tienes hambre! El hambre se indica en la barra lateral. Vamos a hacer un sándwich de mantequilla de cacahuete con la mantequilla de cacahuete y las galletitas saladas que hay en el mostrador junto a la pared.\n" +"¡Parece que tienes hambre! El hambre se indica en la barra lateral. Vamos a hacer un sándwich de mantequilla de cacahuete con la mantequilla de cacahuete y las galletitas saladas que hay en el mostrador junto al muro.\n" "Para hacer la comida tienes que usar el Menú de Fabricación. Pulsa '&' (et) para abrir el menú. Pulsa Tab y Backtab (Shift + Tab) para moverte entre las categorías de fabricación y selecciona la categoría COMIDA. Selecciona el sándwich de mantequilla de cacahuete y pulsa Enterpara empezar a hacerlo.\n" "Ten en cuenta que no necesitas estar cerca del mostrador para poder fabricarlo. El radio de fabricación es de 6, así que mientras estés parado a no más de 6 espacios de componentes y herramientas de fabricación, tu personaje será capaz de obtenerlos por sí mismo.\n" "\n" @@ -244360,9 +250091,9 @@ msgid "" "\n" "To continue the tutorial, please paint some walls and move further south." msgstr "" -"En la siguiente habitación puedes encontrar una brocha y varios botes de pintura. Puedes usarlos para pintar la pared del color que quieras. Para hacer esto, abre el Menú de construcción pulsando '*' (asterisco) y muevete entre las categorías con las teclas de dirección. Busca la categoría Decorativo y selecciona una de las opciones para pintar la pared.\n" +"En la siguiente habitación puedes encontrar una brocha y varios botes de pintura. Puedes usarlos para pintar el muro del color que quieras. Para hacer esto, abre el Menú de construcción pulsando '*' (asterisco) y muevete entre las categorías con las teclas de dirección. Busca la categoría Decorativo y selecciona una de las opciones para pintar el muro.\n" "\n" -"Para continuar con el tutorial, pinta algunas paredes y avanza hacia el sur." +"Para continuar con el tutorial, pinta algunos muros y avanza hacia el sur." #: lang/json/snippet_from_json.py msgid "" @@ -246537,9 +252268,9 @@ msgid "" " or shoot you on sight at this point, they do NOT have anything good in mind" " for us\"" msgstr "" -"\"NO te rindas. si tienes la suerte de encontrar alguno que no te destroce o" -" te dispare en el acto a estas alturas, NO tienen nada bueno en mente para " -"nosotros\"" +"\"NO te rindas, si tienes la suerte de encontrar alguno que no te destroce o" +" te dispare en el acto. En el tiempo actual, NO tienen nada bueno en mente " +"para nosotros\"" #: lang/json/snippet_from_json.py msgid "" @@ -247061,6 +252792,16 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "\"Hoy he visto la dinosauria más bonito. Debo vestirla\"." +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" +"\"Vi este dinosaurio y me sentí como gorge. Y luego vi a este otro " +"dinosaurio y me quedé como ¡gorge! Y luego vi este otro y me quedé como " +"¡gorgosaurio! Como si fuera de verdad\"." + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -247212,6 +252953,34 @@ msgstr "" "Alonso no la conocía pero ella era hermosa y majestuosa y se merecía un " "entierro apropiado. Alonso recordará este dinosaurio por mucho tiempo." +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" +"Recibí un mensaje de nuestro principal contacto de magía Jacob. Esta un poco" +" fuera de sí y estuvo lloriqueando por horas, parece ser que todos los " +"laboratorios centrales han sido invadidos. ¿Se han unido finalmente los " +"necromantes para sacarnos? ¿Cuál es su plan?" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" +"Ayer, Gregory Hamilton, el Mago Vigilate local, se desbocó en el centro " +"comercial. Conocido por ser el mago más poderoso de Siracusa, New York, no " +"es una sorpresa que haya logrado reducir todo el distrito en un cráter " +"humeante. La Guardia Nacional lo redujo con un equipo de francotiradores y 5" +" helicópteros. Se desconoce el número total de muertos pero las estimaciones" +" actuales son de 15000 y van subiendo." + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -247250,12 +253019,23 @@ msgstr "" "\n" "El oricalco es una aleación basada principalmente en el cobre, pero su creación varía de una persona a otra en cuanto a los metales menores y el procedimiento exacto. Aunque no es sustancialmente más fuerte que el acero, es mucho más resistente a la corrosión y al desgaste en general (algunos dicen que tiene una voluntad de permanecer en su forma). Aunque existen antiguas espadas mágicas convencionales de poder, gran parte de la comprensión común se basa en que los pueblos preindustriales encontraron armamento de oricalco en tumbas y similares en condiciones de funcionamiento. Entonces, ¿por qué no se utiliza el oricalco en contextos industriales? La cuestión es que la magia puede empezar a degradarse si no se forja con la habilidad adecuada. Para la mayoría de los fallos revertirá en términos de minutos (para empezar nunca fue oricalco en la práctica), pero hay un riesgo notable de fallo hasta los 30 años, lo que significa que los objetos tienen que ser \"envejecidos\" como el vino para ser considerados oricalco verdadero. Aunque es un poco más fácil que forjarlo desde cero, reforjar el oricalco existente plantea los mismos problemas, por lo que bloquea la fabricación industrial y lo limita al uso artesanal. Se pueden encontrar en armaduras y armas antiguas, pero también en costosas cuberterías heredadas y similares. Todavía existe una comunidad activa de aficionados y expertos artesanos, pero el oricalco es, como muchos otros fenómenos mágicos, poco adecuado para nuestra sociedad moderna en general." +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" +"Hubo un disturbio en el centro comercial. La única explicación que tengo es " +"que algún idiota estaba experimentando con el hechizo Frenesí de Masas. " +"Existe una \"razón\" por la que ese tipo de hechizos estan clasificados como" +" secreto militar…" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " "with their otherwordly shapes." msgstr "" -"Un círculo de símbolos esotéricos grabados en la pared de metal, dibujan tu " +"Un círculo de símbolos esotéricos grabados en el muro de metal, dibujan tu " "ojo con sus formas de otro mundo." #: lang/json/snippet_from_json.py @@ -248808,11 +254588,11 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" -"una voz neutral dice: \"Cliente, debo informarle que mi tiempo asignado con " -"usted pronto llegará a su fin\"." +"una voz neutra dice: \"Cliente, debo informarle de que el tiempo que tengo " +"asignado con usted pronto llegará a su fin\"." #: lang/json/speech_from_json.py msgid "" @@ -248996,20 +254776,20 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "\"La policía llega. ¡Quédese donde está!\"" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" -msgstr "\"chillidos viscerales\"." +msgid "visceral chittering." +msgstr "chillidos viscerales." #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" -msgstr "\"un claro zumbido agudo\"." +msgid "a clear, high-pitched hum." +msgstr "un claro zumbido agudo," #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" -msgstr "\"el zumbido de la electricidad estática\"." +msgid "the hum of static electricity." +msgstr "el zumbido de la electricidad estática." #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" -msgstr "\"un zumbido bajo\"." +msgid "a low buzzing sound." +msgstr "un zumbido bajo." #: lang/json/speech_from_json.py msgid "\"I AM FOODPERSON. AND I BRING SUSTENANCE!\"" @@ -249089,128 +254869,132 @@ msgstr "" "para el ciclo de vida!\"" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "¿Quieres jugar conmigo?" +msgid "\"Wanna play with me?\"" +msgstr "\"¿Quieres jugar conmigo?\"" + +#: lang/json/speech_from_json.py +msgid "\"Sing with me!\"" +msgstr "¡Canta conmigo!" #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "¡Cantemos una canción!" +msgid "\"I love you!\"" +msgstr "\"¡Te quiero!\"" #: lang/json/speech_from_json.py -msgid "Please take me with you!" -msgstr "¡Por favor, llevame contigo!" +msgid "\"Please take me with you!\"" +msgstr "\"¡Por favor, llevame contigo!\"" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "¿Puedo comer una galletita?" +msgid "\"May I have a cookie?\"" +msgstr "\"¿Puedo comer una galleta?\"" #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "¡Vamos a jugar juntos!" +msgid "\"Let's play together!\"" +msgstr "\"¡Vamos a jugar juntos!\"" #: lang/json/speech_from_json.py -msgid "Time to play!" -msgstr "¡Hora de jugar!" +msgid "\"Time to play!\"" +msgstr "\"¡Hora de jugar!\"" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" -msgstr "¡Am ñam ñam! ¡Delicioso!" +msgid "\"Om nom nom! Delicious!\"" +msgstr "\"¡Mmm ñam ñam! ¡Delicioso!\"" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" -msgstr "¿Eres mi mamá?" +msgid "\"Are you my mommy?\"" +msgstr "\"¿Eres mi mamá?\"" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" -msgstr "¡Ah, qué divertido!" +msgid "\"Oh, how fun!\"" +msgstr "\"¡Ah, qué divertido!\"" #: lang/json/speech_from_json.py -msgid "You're my best friend!" -msgstr "¡Eres mi mejor amigo!" +msgid "\"You're my best friend!\"" +msgstr "\"¡Eres mi mejor amigo!\"" #: lang/json/speech_from_json.py -msgid "Heehee!" -msgstr "¡Heehee!" +msgid "\"Heehee!\"" +msgstr "\"¡Heehee!\"" #: lang/json/speech_from_json.py -msgid "Let's have fun!" -msgstr "¡Vamos a divertirnos!" +msgid "\"Let's have fun!\"" +msgstr "\"¡Vamos a divertirnos!\"" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" -msgstr "¡Vamos a beber el té!" +msgid "\"Let's have a tea party!\"" +msgstr "\"¡Vamos a tener una fiesta del té!\"" #: lang/json/speech_from_json.py -msgid "You're the best!" -msgstr "¡Eres el mejor!" +msgid "\"You're the best!\"" +msgstr "\"¡Eres el mejor!\"" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." -msgstr "No deberías haber hecho eso." +msgid "\"You shouldn't have done that.\"" +msgstr "\"No deberías haber hecho eso.\"" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." -msgstr "Vamos a jugar... a la ruleta rusa." +msgid "\"Let's play… Russian roulette.\"" +msgstr "\"Vamos a jugar... a la Ruleta Rusa.\"" #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "Te odio." +msgid "\"I hate you.\"" +msgstr "\"Te odio.\"" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" -msgstr "¡Por qué no te matas!" +msgid "\"Go kill yourself!\"" +msgstr "\"¡Ve a matarte!\"" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" -msgstr "El Gran Hermano te está mirando..." +msgid "\"Big Brother is watching you…\"" +msgstr "\"El Gran Hermano te está mirando...\"" #: lang/json/speech_from_json.py -msgid "Die for me!" -msgstr "¡Quiero que mueras por mí!" +msgid "\"Die for me!\"" +msgstr "\"¡Muere por mí!\"" #: lang/json/speech_from_json.py -msgid "Why won't you die?" -msgstr "¿Por qué no te mueres?" +msgid "\"Why won't you die?\"" +msgstr "\"¿Por qué no te mueres?\"" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." -msgstr "Sangre... Deliciosa." +msgid "\"Blood… Delicious.\"" +msgstr "\"Sangre... Deliciosa.\"" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" -msgstr "Nos vemos... ¡EN EL INFIERNO!" +msgid "\"See you… IN HELL!\"" +msgstr "\"Te veo... EN EL INFIERNO!\"" #: lang/json/speech_from_json.py msgid "AAAIEEEEEEE!" msgstr "¡AAAIEEEEEEE!" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" -msgstr "¡ANDATE A LA MIERDA!" +msgid "\"FUCK YOU!\"" +msgstr "\"¡JODETE!\"" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" -msgstr "¿Qué hiciste con mi mamá?" +msgid "\"What did you do with my Mommy?\"" +msgstr "\"¿Qué hiciste con mi Mamá?\"" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" -msgstr "Quédate conmigo... ¡para siempre!" +msgid "\"Stay with me… forever!\"" +msgstr "\"¡Quédate conmigo... para siempre!\"" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "Hola, chicos. ¿Quereis caramelos?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "\"Hola, chicos. ¿Quereis caramelos?\"" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" -msgstr "Aquí abajo, ¡flotan TODOS!" +msgid "\"Down here, they ALL float!\"" +msgstr "\"¡Aquí abajo, TODOS flotan!\"" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" -msgstr "¿De verdad necesitas todo ese dinero?" +msgid "\"Do you really need that much honey?\"" +msgstr "\"¿De verdad necesitas todo ese dinero?\"" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" -msgstr "¡Mi dueña anterior gritaba como un chancho cuando la destripé!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" +msgstr "\"¡Mi dueña anterior gritaba como una cerda cuando la destripé!\"" #: lang/json/speech_from_json.py msgid "BARK!" @@ -249225,20 +255009,16 @@ msgid "WOOF!" msgstr "¡WOOF!" #: lang/json/speech_from_json.py -msgid "heavy breathing" -msgstr "respiración pesada" - -#: lang/json/speech_from_json.py -msgid "labored breathing" -msgstr "respiración dificultosa" +msgid "labored breathing." +msgstr "respiración dificultosa." #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "un quejido" +msgid "a whimper." +msgstr "un quejido." #: lang/json/speech_from_json.py -msgid "a rasping growl" -msgstr "un gruñido ronco" +msgid "a rasping growl." +msgstr "un gruñido ronco." #: lang/json/speech_from_json.py msgid "\"I have no mouth and yet I scream!\"" @@ -250355,6 +256135,10 @@ msgstr "Almacén" msgid "Gun Store" msgstr "Armería" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "Taller mecánico" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "Casa de empeños" @@ -251938,6 +257722,10 @@ msgstr "Por favor, realiza cualquier trabajo de construcción que puedas." msgid "Please do any mining work that you can." msgstr "Por favor, haz cualquier trabajo de minería que puedas." +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "Por favor pasa la fregona por el área." + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "Por favor, estudia de un libro." @@ -254268,7 +260056,7 @@ msgstr "Un número aleatorio entre 0 y 10 igual a 11." #: lang/json/talk_topic_from_json.py msgid "Temperature is 21." -msgstr "Temperatura es 21." +msgstr "La temperatura es 21." #: lang/json/talk_topic_from_json.py msgid "Windpower is 15." @@ -254441,7 +260229,7 @@ msgstr "Establece tiempo desde cataclismo en 1." #: lang/json/talk_topic_from_json.py msgid "Sets temperature to 2." -msgstr "Establece temperatura a 2." +msgstr "Establece la temperatura a 2." #: lang/json/talk_topic_from_json.py msgid "Sets windpower to 3." @@ -255263,14 +261051,14 @@ msgid "" " it, . I could hear everything. I spent hours, maybe days under " "that van, not even trying to get out." msgstr "" -"Yo era del SWAT. Por descontado, debería estar muerto. Fuimos llamados a " -"controlar \"disturbios\", que todos sabemos que fueron las primeras " -" hordas. No nos sirvió de mucho. Estoy seguro de que matamos a más civiles. " -"Incluso entre mi equipo, la moral era muy baja y estábamos disparando como " -"locos. Entonces algo nos golpeó, algo grande. Podría haber sido una bomba, " -"realmente no lo recuerdo. Me desperté atrapado debajo de la furgoneta SWAT. " -"No pude ver nada... pero pude oírlo. Pude oír todo. Pasé horas, tal vez " -"días, debajo de esa furgoneta, ni siquiera tratando de salir." +"Pertenecía al SWAT. Debido a ello, debería estar muerto. Fuimos llamados a " +"controlar los \"disturbios\", que todos sabemos que fueron las primeras " +"hordas . No nos sirvió de mucho. Estoy seguro de que matamos a más " +"civiles. Incluso entre mi equipo, la moral era muy baja y estábamos " +"disparando como locos. Entonces algo grande nos golpeó. Pudo haber sido una " +"bomba, la verdad no lo recuerdo. Me desperté atrapado debajo de la furgoneta" +" SWAT. No pude ver nada... pero pude oírlo. Pude oír todo. Pasé horas debajo" +" de la furgoneta, tal vez días, sin ni siquiera intentar salir." #: lang/json/talk_topic_from_json.py msgid "But you did get out." @@ -255785,7 +261573,7 @@ msgstr "" "volkswagen y todo cubierto de placas de hueso. Sé cuando me superan. El " "grandote fue retenido por su propia horda de amigos, y me las arreglé para " "volver a mi casa. Cerré las ventanas, la cerré con llave, pero era demasiado" -" tarde. El gigante me siguió y empezó a martillar a través de las paredes. " +" tarde. El gigante me siguió y empezó a martillar a través de los muros. " "Agarré lo que pude y me dirigí al horizonte. La última vez que vi mi sitio, " "se estaba derrumbando sobre el bastardo. Por lo que sé, murió en el colapso," " pero no voy a volver para averiguarlo." @@ -256600,11 +262388,11 @@ msgid "" "be." msgstr "" "Vive en el norte de Canadá, en medio de la nada, con su loca esposa y mis " -"tres nietos. Es un ingeniero ambiental para una compañía de petróleo y gas. " -"Ella es un poco hippie. Los amo a ambos, y en lo que a mí respecta, todos " -"salieron de esta maldita desastre en buen estado, allá en el quinto pino. " -"Supongo que piensan que estoy muerto, así que se mantendrán alejados de este" -" agujero infernal, y eso es lo mejor que puede pasar." +"tres nietos. Es un ingeniero medioambiental para una compañía de petróleo y " +"gas. Ella es un poco hippie. Los amo a ambos, y en lo que a mí respecta, " +"todos escaparon de este maldito desastre en buen estado, allá en el quinto " +"pino. Supongo que piensan que estoy muerto, así que se mantendrán alejados " +"de este agujero infernal, y eso es lo mejor." #: lang/json/talk_topic_from_json.py msgid "What was it you said before?" @@ -256640,15 +262428,15 @@ msgid "" "guess I'm still kinda heading North, just by a pretty round-about way, you " "know?" msgstr "" -"Al principio, seguí hacia el Norte, pero me encontré con un enorme bloqueo " -"militar. Incluso tenían esos gigantescos robots andantes como en la " -"televisión. Empecé a ir a ver, y antes de darme cuenta, ¡estaban abriendo " -"fuego! Pude haber muerto, pero todavía tengo muy buenos reflejos. Me di la " -"vuelta y salí volando de allí. Mi Hummer había recibido algunos impactos " -"malos, y descubrí por la vía dura que estaba perdiendo gasolina por toda la " -"autopista. Llegué a unos pocos kilómetros antes de terminar atrapado en el " -"culo del mundo. Me acomodé para vagar. Supongo que todavía voy hacia el " -"norte, sólo que de una manera bastante indirecta, ¿sabes?" +"Al principio, fuí al Norte, pero me encontré con un enorme bloqueo militar. " +"Incluso tenían esos gigantescos robots andantes como en la televisión. " +"Empecé a acercame a ver que pasaba, y antes de darme cuenta, ¡me estaban " +"disparando! Pude haber muerto, pero todavía tengo buenos reflejos. Me di la " +"vuelta y salí pitando de allí. Mi Hummer se había llevado unos impactos " +"malos, y descubrí por de una mala forma que estaba perdiendo gasolina por " +"toda la autopista. Hice unos pocos kilómetros antes de terminar atascado en " +"el culo del mundo. Me dispuse a deambular. Supongo que todavía voy hacia el " +"Norte, sólo que de una manera bastante indirecta, ¿sabes?" #: lang/json/talk_topic_from_json.py msgid "That's quite a story. " @@ -261065,6 +266853,971 @@ msgstr "" msgid "I'm glad you are OK." msgstr "Me alegro de que estés bien." +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "¿Qué tienes para comerciar?" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "No comprendo nada de lo que dices." + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "¿Eres una especie de robot?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" +"[int 9] ¿Te llaman exodii? ¿Significa eso que fuisteis expulsados de vuestro" +" hogar?" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "¿Qué clase de lugar es éste?" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "[per 6] Algunas de estas tecnologías parecen... extrañas." + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" +"Antes querías hacerme algunas preguntas, y creo que fui grosero al respecto." +" ¿Qué querías preguntar?" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" +"¿Podemos continuar nuestra conversación sobre tu llegada a este mundo?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" +"¿Puedes convertirme en un cyborg AHORA MISMO? Soy un desarrollador de este " +"juego, sabes." + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "Creo que ya estoy preparado para intentar convertirme en un ciborg." + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" +"¿Hay alguna posibilidad de que me ayudes a conseguir algunas de esas dulces " +"mejoras biónicas?" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "¿Puedes ayudarme con la cirugía MBC?" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "De vuelta en un abrir y cerrar de ojos, ¿eh?" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "¿Olvidaste algo?" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "Ah, un regreso, y yo sé." + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "Y un buen regreso, amigo." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" +"Bien y todavía no estás muerto. ¿Qué te trae al mundo de los cuellos de " +"Rubik?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" +"Brillante y soleado, ¡has vuelto! Tengo bienes para ti, si tú tienes bienes " +"para mí." + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "Oy, no estás muerto. ¿Buscando un negocio?" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "¿Quiénes eres tú? ¿Qué es este lugar?" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "He traído esos kits de anestesia para ti. ¿Puedes ayudarme?" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "En realidad, quería hablar." + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "Diablos, no, me voy de aquí." + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "Sólo pasaba a saludar. Hasta luego, caimán." + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" +"Nos llaman los exodii, ¿eh? Y otras cosas, pero eso es bueno. Este es " +"nuestro hogar, así es. Este es un pelele como Rubik, y está equipado con un " +"comercio. ¿Buscas comerciar? Estamos listos para la chatarra, el metal y " +"otras cosas." + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "Bueno, será mejor que me vaya. Adiós." + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "Bien, entonces." + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "Tenlo como quieras" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "Por una tarjeta y un guiño, ¿eh?" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "¿Qué era lo que estabas diciendo antes?" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" +"Tan seguro como puedas intentarlo. No somos los mejores trabajadores, ni lo " +"hacemos todo gratis, sabes." + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "Oy, ¿puedo ladrarte algo primero?" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "Como, ¿preguntarme algo? Claro, supongo." + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" +"No. Estoy demasiado ocupado para responder a tus preguntas, se supone que tú" +" debes responder a las mías. Supongo que me iré." + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "¿Cuánto tiempo ha pasado desde que ocurrió el desastre?" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "[Díselos]" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" +"Gracias. Cuando tú y Rubik se conocieron, ¿cuánto tiempo pasó desde que " +"empezó el lío?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" +"¡Encantador! ¡Benzete va a ser un par, eso es una pista! Estarán muy " +"contentos. Este es su primer salto, y es un pato que se agita." + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "¿Qué hace que sea un salto tan bueno?" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "¿Quién es Benzete?" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "¿Podemos hablar de otra cosa?" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "Me tengo que ir. Hasta luego, Rubik." + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" +"Así que, como recuerdo, nos acordamos de Benzete y de su primer gran salto." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" +"Tenemos que dejar el viejo mundo antes de que esté desgastado hasta las " +"encías y encontrar uno bonito en el otro lado. Tu tierra muerta es una marca" +" brillante" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "No lo entiendo en absoluto." + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" +"[int 9] ¿Quieres decir que tenemos un mundo bonito y recién muerto para que " +"lo visites?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" +"Nunca sabes. Correcto y así, el enemigo es nuevo aquí, y nosotros tenemos " +"unas buenas horas en el sol antes del próximo salto." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" +"Oh, quieres decir que llegaste antes del cataclismo. ¿Por qué es eso tan " +"bueno?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" +"Eso es una parte y un cambio, pero esto es agradable para todos, por encima " +"del último salto por las cabezas. Otras tierras con fusillies y moobings, " +"nosotros tenemos un buen cambio en eso." + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "No sé lo que son los fusillies y los moobings." + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" +"¡Tu tienes razón! Eso y esto es agradable para todos, por encima del último " +"salto por las cabezas. Otras tierras con fusillies y mobbings, nos consiguen" +" un buen cambio en eso." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" +"Oh, derechos. Muchas tierras se afirman en esos. A fusilly, ella es una " +"arma, dispara un tiro a altas velocidades haciendo bang. Un mobbing, es una " +"gran caja de metal, empujado por fuego y explosiones de ellos, sabes." + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" +"[int 7] ¿Suena como si quisieras decir que un fusil es una arma, y un " +"mobbing es un coche?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" +"Así que, nosotros lo escribiremos en el pito. Toma, un brillante penique de " +"latón por cruzar la nación." + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "¿Quién es benzete?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" +"Ellos son extranjeros de tres saltos y cambio, amplio como el cielo. Están " +"contentos con algo para el rastreo, ¿sabes?" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "Yo... no seguí realmente eso." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" +"Hmm. ¿Ellos... planearon el último salto? Como un aprendiz del viejo " +"sexteno." + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "Oh, ¿como un navegador?" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "Claro, y esa es una palabra bastante buena, y lo sé." + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "¿Dijiste que era un salto especialmente bueno?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" +"Sí, puedes llamarnos así. Somos de otras tierras la mayoría. Pero no de " +"otros mundos. Es demasiado arriesgado traer a los squelchies al redil." + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr " No sé la diferencia entre otras tierras y otros mundos." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" +"Seguro y eso es una gran arma. Los otros mundos son el motivo de esos feos " +"bichos que tienes por aquí, ¿eh? Caminando por las plantas y hablando de " +"hongos y cosas por el estilo. Las otras tierras tienen más parentesco. Yo " +"soy de la Tierra, pero mi Tierra es diferente. Así que no deberíais " +"preguntar qué hacen los exodii en la Tierra, porque algunos se sienten bien " +"en casa, y yo lo sé. Deberían preguntar qué hace el exodii arrasando con tus" +" verdes y marrones." + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "Bien, entonces, ¿qué haces \"arrasando con nuestro verde y marrón\"?" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "Háblame de tu propio mundo." + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" +"*se vuelve distante por un momento. \"Ah. El hogar. Ha pasado mucho tiempo, " +"sabes. Tu no estar muy lejos. Yo... no creo que quiera hablar de ello. " +"Demasiado metal de vez en cuando." + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "Eso es duro, tal vez deberíamos hablar de otra cosa." + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "¿Qué haces \"arrasando con nuestro verde y marrón\"?" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "¿Cómo llegaste a estar hecho de metal de esta manera?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" +"Si viera que esto fuera un camino de palomas, arrasaría. Sólo hay un camino," +" lo sé, si no voy a unirme a la fila." + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" +"Creo que sé lo que quieres decir. La única manera de sobrevivir es... " +"\"actualizar\". ¿Puedes ayudarme con eso?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" +"¿Robot? ¿Qué afirmación es? Espera...\" Rubik se detiene un momento, como si" +" estuviera pensando. \"Ah, ¿un autómata? No, esto es carne y hueso como tú, " +"encerrado en una cáscara de metal y alambre. No tanta carne como antes. El " +"alambre está mezclado y flota con la carne, todo como una sola cosa, sabes." + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" +"[int 9] ¿Así que eres un cyborg de algún tipo? Eso es impresionante. ¿Cómo " +"me convierto en un ciborg?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" +"No tengo ni idea de lo que quieres decir. ¿Eres una especie de robot, pero " +"también eres de carne y hueso?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" +"Sí, eso es agua pasada, y lo sé. Un poco de ambos, pero Rubik fue una vez " +"como un pariente, para ti." + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "¿Podemos hablar de otra cosa? Esto es confuso." + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" +"Una base de chatarra, ¿no? Un montón de basura. Pronto empacaremos y " +"cantaremos." + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "¿Empacar? ¿Cómo puedes empaquetar algo así?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" +"Porque y cómo, necesitas pensar con esas once direcciones, ¿entiendes? " +"Abriremos una puerta y nos moveremos. Tal como vinimos." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" +"Seguro que sí, al menos algo. Intentaremos dialogar con vuestro anglés, pero" +" como sabéis que somos de otras tierras, no es tan sencillo." + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "[int o per 7] ¿Cómo es que hablas inglés, o uh, 'anglés' así?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" +"Oh sí, claro y así. Todos y cada uno. Vagamos, nos arreglamos. Es una forma " +"de vivir." + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "¿Qué te llevó a salir?" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "Lo mismo que tú serás, y yo soy sabes. El enemigo. Los muertos." + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" +"Como somos un escalador de muelles de la vieja Alta Tierra, esta será " +"nuestra forma de observar. Todos y cada uno de nuestros yarks verdes y " +"marrones como este." + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "Háblame de la \"vieja Tierra Alta\". ¿Cómo era tu casa?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" +"Haciendo, haciendo, lo mismo que tú, y lo sé. La última casa se volvió " +"demasiado muerta y pútrida en los bordes. Le pasa a los mejores. Un chisme " +"que nos hizo saber de tu lugar aquí, encendió las viejas mamparas y ¡boom! " +"Ahora todo es tic-tac en un zimmer, aquí estamos. Esta vez es un buen " +"momento, sólo llevaba unos días muerto cuando llegamos. El cadáver más " +"fresco que se ha visto en un fregadero." + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "...qué?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" +"[int o por 9] ¿De dónde venís entonces? ¿Sois extraterrestres o algo así?" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "¿Hay algo más que quieras de este lugar?" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" +"Estamos aquí para vivir y respirar, ¿no? Después de que nuestra última " +"tierra estuviera demasiado muerta. Así que, vinimos a un nuevo lugar. Este. " +"Yo sé, que no está tan muerto por aquí todavía." + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "[int o por 7] ¿Otra tierra? ¿Sois extraterrestres o algo así?" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" +"¿Además de vivir en un rincón tan acogedor? Estamos minando, ya sabes. " +"Recogiendo las sobras, viendo si para tu otra tierra hay alguna tecnología " +"que valga la pena. No tiene sentido dejar que las buenas sobras se " +"desperdicien. Si tenemos suerte, recoger algunos nuevos exodii antes de que " +"nos vayamos. Recogiendo los pedazos de nuestros dulces y destrozados sueños." + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" +"¿Qué quieres decir con \"desperdiciar\"? Los zombis no están usando la " +"chatarra, y hay mucha para repartir." + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" +"Esto es una tierra muerta, y lo sé. Si tienes un caso de mareos no vas a " +"cantar. No hay cura para estas ratas y pulgas." + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "¿Qué diablos significa eso?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" +"[int 8] ¿Estás diciendo que crees que estamos condenados? ¿Por qué habrías " +"venido aquí si no hubiera alguna forma de sobrevivir?" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" +"Significa lo que significa. Tu tierra está muerta, pero todavía está " +"pateando, eso es todo." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" +"¿Estás diciendo que crees que estamos condenados? ¿Por qué habrías venido " +"aquí si no hubiera alguna forma de sobrevivir?" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" +"Oh, nosotros podemos tambalearnos según las necesidades. Envía la chatarra " +"de vuelta, trae los alimentos, y sacude un willie o tres, sabes. No es bueno" +" para ti, no tomará mucha carne y hueso." + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "Bueno... ¿podrías ayudarme a arreglar eso?" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "Espera. Pensé que todavía eras de carne y hueso, bajo ese metal." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" +"Jaja, la mayoría de las veces no, amigo. No vale la pena arriesgarse, ¿no? " +"Me quedo con lo que es Rubik, pero el resto es todo sólido." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" +"Para mí, no. Sin embargo, no somos de por aquí. Se ve bien y bien para ti, " +"yo lo haría." + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "[int o per 7] ¿No son de por aquí? ¿Sois extraterrestres o algo así?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" +"Si estás lleno y lleno, esto es feliz de hacer la llamada, por un centavo " +"brillante." + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "Tengo algunas cosas que me gustaría instalar." + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "¿Serías capaz de quitarme uno de mis implantes?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" +"Claro, y yo puedo convertirte en un cyborg, aquí y ahora, ya que eres un " +"desarrollador y todo eso." + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "Vamos a hacerlo." + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "He cambiado de opinión. ¿Qué era lo que decías antes?" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "He cambiado de opinión. Será mejor que me vaya. Adiós." + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" +"¡Oh, HO! Bien, bien. Ahora estás hablando en inglés del Rey. Sí, nosotros " +"podemos arreglaros bien, si estáis dispuestos a devolverlo en especie. Lo " +"diremos tan claro como pueda este Rubik. Si lo usáis para devolver a los " +"muertos a la tierra, podemos arreglaros con algunos bienes como este, sí. " +"Pegado a la carne y al hueso, conectado al cerebro. ¿Lo sabéis? Si no, " +"hablaremos con el Gran Gris para que nos dé una pinta del viejo trago de " +"claridad." + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" +"Ah, bueno. Pondremos eso en la llave y en la cerradura, si te parece. Tal " +"vez puedas traernos un poco de dinero y cambiarlo, y veremos si podemos " +"arreglar tu situación pronto. Que ningún exodii rechace a un Benny " +"dispuesto, y así será." + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" +"¿Si sigo matando zombis, me ayudarás a convertirme en un ciborg? ¿Por qué " +"seguimos discutiendo, entonces? Apúntame de una vez." + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" +"Pensándolo bien, no estoy seguro de querer dejar que un grupo de robots " +"alienígenas desconocidos me operen el cerebro." + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "¿Tal vez probar esa trago de claridad?" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "OK, bueno, tengo algunas cosas que podría intercambiar ahora mismo." + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "Bien, tal vez vuelva cuando haya negociado un poco más." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" +"Hmm.\n" +"\n" +"*La voz de Rubik se vuelve mecánica y distante por un momento, como si un ordenador se encargara de hablar.*\n" +"\n" +"A cambio de la garantía de que utilizarás estos dones para combatir al Gran Enemigo, este Nodo Exodii está dispuesto a proporcionarte un plexo de mando de módulo biónico, una fuente de alimentación y toda la infraestructura necesaria para obtener más mejoras con los MBCs estandarizados: módulos biónicos compactos. Sólo le pediremos una cuota simbólica por este servicio. Proporcionaremos otras mejoras según se vayan adquiriendo. Su mejora personal sirve a nuestro beneficio mutuo.\n" +"\n" +"*La voz de Rubik vuelve a tomar el control.*\n" +"\n" +"¿Claro como una corriente de aire?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" +"¿Por qué no puedes hablar así de claro todo el tiempo? No tienes ni idea de " +"lo difícil que es entender tu acento, y no solo tus palabras." + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" +"*¿Este acento? Nunca has puesto huevos a tu propio yark, y eso es un buen " +"violín. El Gran Gris tiene un poco de trabajo en él, ¿cierto? Esto tiene que" +" mantenernos útiles, y mantener al Gran Gris haciendo lo que tiene que " +"hacer. Aparte, el hecho de ir a las fiestas locales nos mantiene jóvenes y " +"hace brillar nuestro cromo, y lo sé." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" +"Bien, lo que sea. No importa, si vas a convertirme en una horrible fusión de" +" máquina y humano, apúntame." + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" +"Cuanto más hablo contigo, más seguro estoy de querer dejar que un grupo de " +"robots alienígenas desconocidos me operen el cerebro." + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "VALE, VALE. ¿Qué fue lo que dijiste? Me distrajo el cambio de voz." + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" +"¡Bien y bien, bien y bien! ¡Ja! Vamos a poner en marcha el viejo molino de " +"cartílago. Te has molestado en traernos un trago de buen té. No \"té\", por " +"supuesto. Estoy hablando en inglés del muelle. Nos referimos a lo que te " +"hace dormir durante una cirugía. El Gran Gris dice que lo que se dice es " +"\"anustesia\". Si nos traes dos kits de \"anustesia\", te arreglaremos con " +"un cable y un tiff." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" +"Dos, eh, kits de anestesia, a punto de llegar. ¿Podemos hablar de otra cosa?" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "Dos... kits de anestesia, en camino. Será mejor que empiece a buscar." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" +"Hay algo raro, no debería haber llegado a esta opción de diálogo. Mejor voy " +"a presentar un informe de errores." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" +"¡Bien y bien, bien y bien! ¡Ja! Ahora que tenemos el buen té, vamos a poner " +"en marcha el viejo molino de cartílago. Sólo tienes que ir con el viejo " +"Rubik." + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "Muy bien. Hagamos esto." + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "Espera. Tengo que volver a pensarlo." + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" +"Y esa es una buena elección, yo diría. Si cambias de opinión, el viejo Rubik" +" está aquí para lo largo y lo corto. Tú nos conoces mejor, nosotros te " +"conocemos mejor, y eso es bueno." + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" +"*Hace un gesto rígido de inclinación y te conduce fuera de la tienda y por un camino de piedra hacia uno de los edificios más grandes del recinto. Una gruesa puerta de acero se desliza a un lado para revelar un pasillo lúgubre y oxidado. Al final del pasillo hay una sala de operaciones de apariencia limpia, no muy diferente de cualquier otra sala de operaciones, aparte de la tenue iluminación y del propio cirujano. En la cabecera de la mesa quirúrgica hay un artilugio que recuerda a una araña invertida, cuyas múltiples y relucientes extremidades médicas se enroscan suavemente en espera de que te acerques. No tiene tiempo de cuestionar sus decisiones antes de sentir un fuerte pellizco en el hombro izquierdo, y el mundo se desvanece.\n" +"\n" +"Te despiertas en una cómoda cama, con el pecho y la garganta doloridos, pero por lo demás bien. A medida que la bruma de la anestesia se desvanece, notas varias heridas diminutas y dolorosas en el pecho y los brazos. Un ciborg humanoide, que no es Rubik, se da cuenta de que estás despierto y te hace un gesto sin palabras para que le sigas, llevándote de vuelta a la tienda de Rubik.\n" +"\n" +"\"Ah, y estás con las estrellas y las luces de nuevo, y lo sé. Es estupendo. Esos pequeños CBMs te servirán de poco, pero son un comienzo. Ahora nosotros podemos venderte todo lo que quieras, y ayudarte con la instalación, si lo deseas\"." + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "¿Así que ahora soy un ciborg? No me siento muy diferente." + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" +"Bueno, será mejor que me vaya. Gracias por los implantes cerebrales. Adiós." + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" +"Esto es lo que llamarías un \"paquete de inicio\", y lo sé. Para empezar, " +"pero para las verdaderas tartas de limón querrás lo que esto tiene a la " +"venta. A medida que nosotros podamos venir a veros con claridad, esto puede " +"ser un reto para ofrecer más y más." + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" +"¿Así que puedes venderme más biónica, y cuando te conozca mejor tendrás más?" +" ¿Te importaría enseñarme lo que tienes ahora mismo?" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "¿Cuál es tu historia?" @@ -261852,6 +268605,10 @@ msgstr "¿Puedo ayudar en algo?" msgid "Do you need any resources?" msgstr "¿Necesitas algún recurso?" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "¿De dónde has sacado ese terrario de luciérnagas gigante?" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "Por ahora es suficiente." @@ -261933,6 +268690,20 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "Es lo más esperanzador que he escuchado hasta ahora." +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" +"Un viajero me trajo esto a cambio de unos conejos. Dijo que lo había " +"conseguido de un científico en los pantanos, pero que ocupaba demasiado " +"espacio en su coche." + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "¡Es bastante único!" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "De la misma manera que tú tienes la tuya, apuesto." @@ -263399,8 +270170,8 @@ msgid "" msgstr "" "No sé si lo sabes, pero hay alcantarillas debajo de la prisión. Estaba " "planeando una fuga mucho antes de , y mientras trabajaba en " -"la limpieza de las alcantarillas, me di cuenta de una sección de pared " -"dañada. Había un flujo de aire fresco que salía de ella, así que creo que " +"la limpieza de las alcantarillas, me di cuenta de una sección de muro " +"dañado. Había un flujo de aire fresco que salía de ella, así que creo que " "lleva a la superficie. Podría ser tu camino a la libertad. Siéntete libre de" " usarlo." @@ -263550,8 +270321,8 @@ msgstr "Sabes, creo que me las arreglaré sin tu ayuda. Adiós." #: lang/json/talk_topic_from_json.py msgid "I need you to retrieve some stuff from a locked safe. Interested?" msgstr "" -"Necesito que recuperes algunas cosas de una caja fuerte cerrada. " -"¿Interesado?" +"Necesito que recuperes algunas cosas de una caja fuerte cerrada. ¿Te " +"interesa?" #: lang/json/talk_topic_from_json.py msgid "[Show the military id card] You mean this stuff?" @@ -263642,15 +270413,15 @@ msgstr "¡Eh ! ¡Te vas a arrepentir!" #: lang/json/talk_topic_from_json.py msgid "Okay, fine. Cheapskate!" -msgstr "De acuerdo, bien. ¡Chapucero!" +msgstr "De acuerdo, bien. ¡Tacaño!" #: lang/json/talk_topic_from_json.py msgid "Hello there!" -msgstr "¡Hola!" +msgstr "¡Hola ahí!" #: lang/json/talk_topic_from_json.py msgid "I'm outta here. Bye." -msgstr "Me largo. Adios." +msgstr "Me largo de aquí. Adios." #: lang/json/talk_topic_from_json.py msgid "" @@ -263658,7 +270429,7 @@ msgid "" "I'm outta here. Bye." msgstr "" "Pobre tipo - parece que estás totalmente ido. No te puedo ayudar, lo siento." -" Me voy. Adios." +" Me largo de aquí. Adios." #: lang/json/talk_topic_from_json.py msgid "" @@ -263685,16 +270456,16 @@ msgid "" "Sir, I don't know how the hell you got down here but if you have any sense " "you'll get out while you can." msgstr "" -"Señor, no sé cómo demonios llegó hasta aquí abajo pero si le queda un poco " -"de juicio se iría mientras pueda." +"Señor, no sé cómo demonios ha llegado hasta aquí, pero si tiene sentido " +"común se irá mientras pueda." #: lang/json/talk_topic_from_json.py msgid "" "Ma'am, I don't know how the hell you got down here but if you have any sense" " you'll get out while you can." msgstr "" -"Señora, no sé cómo demonios llegó hasta aquí abajo pero si le queda un poco " -"de juicio se iría mientras pueda." +"Señora, no sé cómo demonios ha llegado hasta aquí, pero si tiene sentido " +"común se irá mientras pueda." #: lang/json/talk_topic_from_json.py msgid "What are you doing down here?" @@ -263702,11 +270473,11 @@ msgstr "¿Qué estás haciendo aquí abajo?" #: lang/json/talk_topic_from_json.py msgid "Can you tell me about this facility?" -msgstr "¿Me puedes decir algo de estas instalaciones?" +msgstr "¿Me puedes contar algo de estas instalaciones?" #: lang/json/talk_topic_from_json.py msgid "What do you need done?" -msgstr "¿Hay algo que sea necesario hacer?" +msgstr "¿Qué necesitas que se haga?" #: lang/json/talk_topic_from_json.py msgid "About the mission…" @@ -263802,13 +270573,13 @@ msgid "" "rather restricted in what I can release… go find my commander if you have " "any questions." msgstr "" -"Estamos asegurando el array de comunicaciones externas de esta instalación. " -"Estoy bastante restringido en lo que puedo liberar... ve a buscar a mi " +"Estamos asegurando la matriz de comunicaciones externas de esta instalación." +" Estoy bastante restringido en lo que puedo liberar... ve a buscar a mi " "comandante si tienes alguna pregunta." #: lang/json/talk_topic_from_json.py msgid "I'll try and find your commander then…" -msgstr "Intentaré encontrar a su comandante entonces..." +msgstr "Intentaré encontrar a tu comandante entonces..." #: lang/json/talk_topic_from_json.py msgid "" @@ -263820,14 +270591,14 @@ msgid "" "federal secrets and maintain the integrity of the comms network. We are " "hoping a few plain text messages can get picked up though." msgstr "" -"Estaba esperando que el capitán envíe a un mensajero. Esta es la lista que " -"estás buscando. De lo que podemos identificar, aquí están las frecuencias " -"que poseen tráfico. Muchas de las transmisiones son indescifrables sin " -"reparar o reemplazar el equipamiento de aquí. Cuando las instalaciones " -"fueron invadidas, el procedimiento estándar fue destruir el hardware de " -"encriptación para proteger los secretos federales y mantener la integridad " -"de la red de comunicaciones. Esperamos igual que algunos simples mensajes de" -" texto puedan ser recibidos." +"Esperaba que el capitán enviara un corredor. Aquí está la lista que estas " +"buscando. Lo que podemos identificar desde aquí son simplemente las " +"frecuencias que tienen tráfico en ellas. Muchas de las transmisiones son " +"indescifrables sin reparar o reemplazar el equipo de aquí. Cuando la " +"instalación estaba siendo invadida, el procedimiento estándar fue destruir " +"el hardware de encriptación para proteger los secretos federales y mantener " +"la integridad de la red de comunicaciones. Sin embargo, esperamos que " +"algunos mensajes en texto plano puedan ser recuperados." #: lang/json/talk_topic_from_json.py msgid "Hello, marshal." @@ -263839,20 +270610,20 @@ msgstr "Alguacil, me temo que no puedo hablar ahora." #: lang/json/talk_topic_from_json.py msgid "I'm not in charge here, marshal." -msgstr "No estoy a cargo aquí, alguacil." +msgstr "No estoy al mando aquí, alguacil." #: lang/json/talk_topic_from_json.py msgid "I'm supposed to direct all questions to my leadership, marshal." msgstr "" -"Se supone que debo dirigir todas las preguntas a mi liderazgo, alguacil." +"Se supone que debo dirigir todas las preguntas a mis lideres, alguacil." #: lang/json/talk_topic_from_json.py msgid "Hey, citizen… I'm not sure you belong here." -msgstr "Oye, ciudadano... no estoy seguro de que pertenezcas a este lugar." +msgstr "Eh, ciudadano... no estoy seguro de que debas estar aquí." #: lang/json/talk_topic_from_json.py msgid "You should mind your own business, nothing to see here." -msgstr "Deberías meterte en tus propios asuntos, no hay nada que mirar aquí." +msgstr "Deberías meterte en tus propios asuntos, nada que ve aquí." #: lang/json/talk_topic_from_json.py msgid "If you need something you'll need to talk to someone else." @@ -263864,7 +270635,7 @@ msgstr "Señor." #: lang/json/talk_topic_from_json.py msgid "Dude, if you can hold your own you should look into enlisting." -msgstr "Amigo, si puedes controlarte deberías enrolarte." +msgstr "Tio, si puedes cuidar de ti mismo deberias alistarte." #: lang/json/talk_topic_from_json.py msgid "Ma'am" @@ -263872,16 +270643,15 @@ msgstr "Señora" #: lang/json/talk_topic_from_json.py msgid "Hey miss, don't you think it would be safer if you stuck with me?" -msgstr "" -"Hola señorita, ¿no le parece que estaría más segura si se queda conmigo?" +msgstr "Hola señorita, ¿no cree que estaría más segura si se queda conmigo?" #: lang/json/talk_topic_from_json.py msgid "Don't mind me…" -msgstr "No te preocupes por mí..." +msgstr "No me hagas ni caso..." #: lang/json/talk_topic_from_json.py msgid "I got the cake. Shall we move, ?" -msgstr "Tengo la tarta. ¿Nos movemos, ? " +msgstr "Tengo la tarta. ¿Nos vamos, ? " #: lang/json/talk_topic_from_json.py msgid "If you still want to travel with me, let's go." @@ -263889,19 +270659,19 @@ msgstr "Si todavía quieres viajar conmigo, vamos." #: lang/json/talk_topic_from_json.py msgid "Lead the way, ." -msgstr "Guia el camino, ." +msgstr "Te sigo, ." #: lang/json/talk_topic_from_json.py msgid "Are we there yet, my ?" -msgstr "¿Ya hemos llegado, mi ?" +msgstr "¿Todavía no hemos llegado, mi ?" #: lang/json/talk_topic_from_json.py msgid "We're here, . Let's celebrate." -msgstr "Estamos aquí, . Vamos a celebrarlo." +msgstr "Ya llegamos, . Vamos a celebrarlo." #: lang/json/talk_topic_from_json.py msgid "Be patient. We'll be there soon, " -msgstr "Ten paciencia. Llegaremos pronto, " +msgstr "Ten paciencia. Ya estamos llegando, " #: lang/json/talk_topic_from_json.py msgid "" @@ -263910,13 +270680,12 @@ msgid "" "you for bringing me here, . Let's eat the cake." msgstr "" "Ah, hogar dulce hogar. Se siente como si no hubiera estado aquí por años. " -", se ve tan horrible ahora. Supongo que es por culpa de " -". Gracias por traerme aquí, . Vamos a comer el " -"pastel." +", se ve tan horrible ahora. Supongo que es por . " +"Gracias por traerme aquí, . Vamos a comernos el pastel." #: lang/json/talk_topic_from_json.py msgid "[*NOM-NOM*]" -msgstr "[*NOM-NOM*]" +msgstr "[*RICO-RICO*]" #: lang/json/talk_topic_from_json.py msgid "" @@ -263927,13 +270696,14 @@ msgid "" "with someone." msgstr "" "Mmm, delicioso. Sabes, eres un buen amigo, y un buen cocinero. Me alegro de " -"estar contigo en un día como este. Dime, ¿qué te parece si me voy contigo? " -"Como ves, mi restaurante está destrozado, mi casa arruinada, la única opción" -" que me queda es viajar a algún sitio, y mejor si lo hago con alguien." +"estar contigo en un día como hoy. Dime, ¿qué te parece si te acompaño? Como " +"puedes ver, mi restaurante está destrozado, mi casa arruinada y la única " +"opción que me queda es viajar a algún lugar, y creo que es mejor hacerlo con" +" alguien." #: lang/json/talk_topic_from_json.py msgid "Sure, . " -msgstr "Claro, ." +msgstr "Por supuesto, ." #: lang/json/talk_topic_from_json.py msgid "" @@ -263946,7 +270716,7 @@ msgstr "" "Soy un pizzaiolo cualquiera. Mi padre era pizzaiolo, mi abuelo era pizzaiolo" " y yo también me hice pizzaiolo. He hecho pizza toda mi vida, hasta que unos" " americanos me arruinaron el negocio. No pude hacer nada al " -"respecto, pero ahora, con y alrededor, ¡tengo la " +"respecto, pero ahora, con y alrededor, ¡tengo la " "oportunidad de vengarme!" #: lang/json/talk_topic_from_json.py @@ -263958,8 +270728,8 @@ msgid "" "Air temperature, precipitation, but what about… oh, I'm sorry, I didn't " "notice you. Hello." msgstr "" -"Temperatura del aire, precipitaciones pero qué hay de… oh, lo siento, no me " -"di cuenta que estabas ahí. Hola." +"Temperatura del aire, precipitaciones, pero qué… oh, lo siento, no me di " +"cuenta que estabas ahí. Hola." #: lang/json/talk_topic_from_json.py msgid "" @@ -263971,7 +270741,7 @@ msgstr "" #: lang/json/talk_topic_from_json.py msgid "Maybe I can help you with your problem?" -msgstr "¿Quizás te pueda ayudar con tu problema?" +msgstr "¿Quizás pueda ayudarte con tu problema?" #: lang/json/talk_topic_from_json.py msgid "I need more time. Come back later." @@ -263982,12 +270752,13 @@ msgid "" "Help? Help with what? Oh, yes, yes. If you know a place with many " "survivors, can you take me there? I doubt I can survive alone…" msgstr "" -"¿Ayuda? ¿Ayuda con qué? Ah, sí, sí. Conoces de un lugar con muchos " -"supervivientes, ¿me podrás llevar hasta ahí? Dudo que pueda sobrevivir solo…" +"¿Ayuda? ¿Ayuda con qué? Ah, sí, sí. Si conoces un lugar con muchos " +"supervivientes, ¿me podrias llevar hasta ahí? Dudo que pueda sobrevivir " +"solo…" #: lang/json/talk_topic_from_json.py msgid "Yes, you can relax now." -msgstr "Sí, ya te puedes relajar." +msgstr "Sí, ya puedes relajarte." #: lang/json/talk_topic_from_json.py msgid "Don't worry, we're getting there soon." @@ -263998,12 +270769,12 @@ msgid "" "Thank you. I will never forget your kindness, . Take this book as " "token of my gratitude." msgstr "" -"Gracias. Nunca olvidaré tu amabilidad, . Tomá este libro como " +"Gracias. Nunca olvidaré tu amabilidad, . Acepta este libro como " "muestra de mi gratitud." #: lang/json/talk_topic_from_json.py msgid "I'm glad you still alive." -msgstr "Me alegra que todavía estés vivo." +msgstr "Contento de verte con vida." #: lang/json/talk_topic_from_json.py msgid "Me too." @@ -264019,26 +270790,26 @@ msgid "" "all my things that I managed to take with me and settled here. Since then " "I've been sitting here, wasting my time doing all sorts of nonsense." msgstr "" -"Soy un simple meteorólogo. En los últimos años estuve trabajando en la " -"estación del clima, monitoreando el clima, el estado del aire, leyendo y " -"escribiendo informes, planificando horarios… en general, cosas aburridas. En" -" mi tiempo libre estudiaba electrónica e ingeniería relacionada con la " -"radio, fabricando diversos dispositivos, un poco por trabajo y un poco por " -"diversión. Cuando empezaron los primeros disturbios, cogi todas las " -"pertenencias que pude cargar y me establecí aquí. Y desde entonces estoy " -"sentado aquí, tirando mi tiempo en toda clase de tonterias." +"Solo soy un meteorólogo regular. En los últimos años estuve trabajando en la" +" estación del clima, monitoreando el clima, el estado del aire, leyendo y " +"escribiendo informes, planificando horarios… en general, aburrimiento total." +" En mi tiempo libre estaba estudiando electrónica e ingeniería de radio, " +"fabricando diversos dispositivos, a veces por trabajo y otras por diversión." +" Cuando empezaron los primeros disturbios, cogi todas mis pertenencias que " +"fui capaz de cargar y me establecí aquí. Desde entonces he estado sentado " +"aquí, malgastando mi tiempo en toda clase de tonterias." #: lang/json/talk_topic_from_json.py msgid "" "My god, you've got to get me out of here. The things… the things they've " "done… please help." msgstr "" -"Dios mío, tienes que sacarme de aquí. Las cosas... las cosas que han " +"Por dios, tienes que sacarme de aquí. Las cosas... las cosas que han " "hecho... por favor, ayúdame." #: lang/json/talk_topic_from_json.py msgid "Aren't you a little short to be a stormtrooper?" -msgstr "¿No eres un poco bajo para ser un soldado de asalto?" +msgstr "¿No eres un poquito bajo para ser un soldado de asalto?" #: lang/json/talk_topic_from_json.py msgid "Please, help me." @@ -264050,7 +270821,7 @@ msgstr "¿Puedes sacarme de este agujero del infierno?" #: lang/json/talk_topic_from_json.py msgid "Who are you? Are you real?" -msgstr "¿Quién eres? ¿Eres de verdad?" +msgstr "¿Quién eres? ¿Eres real?" #: lang/json/talk_topic_from_json.py msgid "Can you please save me? I have to get out of here." @@ -264062,44 +270833,43 @@ msgstr "¡Aleluya, rescate!" #: lang/json/talk_topic_from_json.py msgid "I can't believe my eyes. Thank you, thank you!" -msgstr "No puedo creer lo que veo. ¡Gracias, gracias!" +msgstr "No puedo creer lo que ven mis ojos. ¡Gracias, gracias!" #: lang/json/talk_topic_from_json.py msgid "You're… you're actually real!" -msgstr "¡Eres... eres realmente real!" +msgstr "¡Eres... eres de verdad real!" #: lang/json/talk_topic_from_json.py msgid "How are you here? Are you one of them, somehow? What's going on?" msgstr "" -"¿Cómo es que estás aquí? ¿Eres uno de ellos, de alguna manera? ¿Qué es lo " -"que esta pasando?" +"¿Cómo estás aquí? ¿Eres uno de ellos, de alguna tipo? ¿Qué esta pasando?" #: lang/json/talk_topic_from_json.py msgid "Come with me, if you want to live." -msgstr "Ven conmigo, si quieres vivir." +msgstr "Sigueme, si quieres vivir." #: lang/json/talk_topic_from_json.py msgid "I've no use for weaklings. Run. Now." -msgstr "No me sirven los débiles. Corred. Ahora." +msgstr "No me sirven los débiles. Corre. Ahora." #: lang/json/talk_topic_from_json.py msgid "" "So, any luck with convincing the others to come on your crazy adventure yet?" msgstr "" -"Entonces, ¿ya has tenido suerte convenciendo a los demás para que vengan a " -"tu loca aventura?" +"Entonces, ¿has tenido suerte convenciendo a los otros para que unan a tu " +"absurda aventura?" #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry to say it after all you've done for me, but… I don't suppose " "you've got anything to eat?" msgstr "" -"Siento decirlo después de todo lo que has hecho por mí, pero... ¿Supongo que" -" no tienes nada que comer?" +"Siento decirlo después de todo lo que has hecho por mí, pero... ¿no tendrás " +"algo para comer?" #: lang/json/talk_topic_from_json.py msgid "Thank you again. I really appreciate the food." -msgstr "Gracias de nuevo. Realmente aprecio la comida." +msgstr "Gracias de nuevo por la comida." #: lang/json/talk_topic_from_json.py msgid "" @@ -264111,15 +270881,15 @@ msgstr "" #: lang/json/talk_topic_from_json.py msgid "Please, help me. I need food." -msgstr "Por favor, ayudame. Necesito comida." +msgstr "Por favor, ayudame. Necesito comer." #: lang/json/talk_topic_from_json.py msgid "" "I've talked to the others, and they're all willing to come. So, you joining" " us?" msgstr "" -"He hablado con los demás, y todos están dispuestos a venir. Entonces, ¿te " -"unes a nosotros?" +"He hablado con los demás, y todos están deseando venir. Entonces, ¿te unes a" +" nosotros?" #: lang/json/talk_topic_from_json.py msgid "Hey, here, I might have some food for you. Let me check." @@ -264135,22 +270905,22 @@ msgid "" "here as long as I keep it clean and don't make a fuss, but I'm reduced to " "begging to survive." msgstr "" -"No me dejan entrar. Dicen que están demasiado llenos. Se me permite acampar " -"aquí mientras lo mantenga limpio y no haga un escándalo, pero me veo " -"reducido a mendigar para sobrevivir." +"No me dejan entrar. Dicen que están demasiado llenos. Me permiten acampar " +"aquí siempre que lo mantenga limpio y no haga ruido, pero me veo obligado a " +"mendigar para poder sobrevivir." #: lang/json/talk_topic_from_json.py msgid "" "They won't let me in. They say they're too full. I'm allowed to camp out " "here as long as I keep it clean and don't make a fuss, but I'm so hungry." msgstr "" -"No me dejan entrar. Dicen que están demasiado llenos. Se me permite acampar " -"aquí mientras lo mantenga limpio y no haga un escándalo, pero tengo mucha " +"No me dejan entrar. Dicen que están demasiado llenos. Me permiten acampar " +"aquí siempre que lo mantenga limpio y no haga ruido, pero tengo tanta " "hambre." #: lang/json/talk_topic_from_json.py msgid "Why don't you scavenge your own food?" -msgstr "¿Por qué no buscas tu propia comida?" +msgstr "¿Por qué no buscar tu propia comida?" #: lang/json/talk_topic_from_json.py msgid "I might have some food for you. Let me check." @@ -264162,31 +270932,31 @@ msgstr "Tengo más comida, si la quieres." #: lang/json/talk_topic_from_json.py msgid "I'm sorry, I can't help you." -msgstr "Perdón, no te puedo ayudar." +msgstr "Lo siento, no puedo ayudarte." #: lang/json/talk_topic_from_json.py msgid "Thank you so much." -msgstr "Muchas gracias." +msgstr "Muchisimas gracias." #: lang/json/talk_topic_from_json.py msgid "Can I ask you something else first?" -msgstr "¿Puedo preguntarte algo más en primer lugar?" +msgstr "¿Te puedo preguntar algo antes?" #: lang/json/talk_topic_from_json.py msgid "I'm sorry, I was wrong. I can't help you." -msgstr "Lo siento, me equivoqué. No puedo ayudarte." +msgstr "Lo siento, me equivoqué. No tengo nada." #: lang/json/talk_topic_from_json.py msgid "Here, you can have this ." -msgstr "Aquí, puedes tener este ." +msgstr "Aquí, ten este ." #: lang/json/talk_topic_from_json.py msgid "This is wonderful of you, I really appreciate it." -msgstr "Es maravilloso de tu parte, te lo agradezco mucho." +msgstr "Maravilloso de tu parte, te lo agradezco mucho." #: lang/json/talk_topic_from_json.py msgid "No problem. See you around." -msgstr "No hay problema. Nos vemos por ahí." +msgstr "No hay problema. Nos vemos." #: lang/json/talk_topic_from_json.py msgid "" @@ -264194,17 +270964,17 @@ msgid "" " condition, don't have any useful skills, and I'm terrified of and" " violence. How am I supposed to find a safe place?" msgstr "" -"¿Dónde más? No puedo luchar contra esas cosas ahí fuera. Estoy en una " -"condición física terrible, no tengo habilidades útiles, y estoy aterrorizado" -" de los y la violencia. ¿Cómo se supone que voy a encontrar un " -"lugar seguro?" +"¿Dónde? No puedo luchar esas cosas de ahí fuera. Estoy en una condición " +"física terrible, no tengo ninguna habilidad útil, y estoy aterrorizado de " +"los y la violencia. ¿Cómo se supone que voy a encontrar un lugar " +"seguro?" #: lang/json/talk_topic_from_json.py msgid "" "Come with me. Maybe you're not the greatest adventurer, but it's better " "than living here." msgstr "" -"Ven conmigo. Tal vez no seas el más grande aventurero, pero es mejor que " +"Ven conmigo. Tal vez no seas el aventurero más grande, pero es mejor que " "vivir aquí." #: lang/json/talk_topic_from_json.py @@ -264213,7 +270983,7 @@ msgid "" "aren't many people left, we could use anyone regardless of skills." msgstr "" "Tengo mi propio campamento, lejos de aquí. Podrías ir allí. No queda mucha " -"gente, podríamos usar a cualquiera sin importar tus habilidades." +"gente con vida, podríamos usar a cualquiera sin importar sus habilidades." #: lang/json/talk_topic_from_json.py msgid "" @@ -264222,10 +270992,9 @@ msgid "" "begging for scraps and waiting for someone in the center to die and make " "room for me, thanks." msgstr "" -"¿Ahí fuera? ¡Eso es un suicidio! La gente que sale no regresa, la gente que " -"puede aguantar... a diferencia de mí. Prefiero arriesgarme a suplicar por " -"las sobras y esperar a que alguien del centro muera y me hagan sitio, " -"gracias." +"¿Ahí fuera? ¡Eso es un suicidio! La gente que sale no regresa, gente que " +"puede mantenerse... no como yo. Prefiero suplicar por las sobras y esperar a" +" que alguien del centro muera y me hagan sitio, pero gracias." #: lang/json/talk_topic_from_json.py msgid "" @@ -264244,10 +271013,10 @@ msgid "" "some point people are going to need a teacher again, but right now they just" " want food, shelter, and clothing." msgstr "" -"Yo era profesor de matemáticas en el instituto. Era un buen trabajo, me " -"encantaba. Es curioso, no es súper aplicable después del fin del mundo. " -"Quiero decir, en algún momento la gente va a necesitar un profesor de nuevo," -" pero ahora mismo sólo quieren comida, refugio y ropa." +"Era profesor de matemáticas de instituto. Buen trabajo, lo amaba. Curioso, " +"no es súper aplicable trás el fin del mundo. Quiero decir, en algún momento " +"la gente va a necesitar un profesor de nuevo, pero ahora mismo sólo quieren " +"comida, refugio y ropa." #: lang/json/talk_topic_from_json.py msgid "" @@ -264255,7 +271024,7 @@ msgid "" "here, but I could." msgstr "" "Tengo mi propio campamento, lejos de aquí. Tal vez no puedan usar tus " -"habilidades aquí, pero yo sí." +"habilidades aquí, pero yo podría." #: lang/json/talk_topic_from_json.py msgid "" @@ -264263,26 +271032,27 @@ msgid "" " risking it out there again. I remember , I'm not in any " "hurry to face that again." msgstr "" -"Es una oferta muy amable de tu parte, pero creo que prefiero arriesgarme " -"aquí que allá afuera otra vez. Recuerdo el , no tengo ninguna" -" prisa por enfrentarme a eso de nuevo." +"Esa es una oferta muy generosa por tu parte, pero creo que prefiero " +"arriesgarme aquí que allá afuera de otra vez . Recuerdo , y" +" no tengo ninguna prisa por enfrentarme a eso de nuevo." #: lang/json/talk_topic_from_json.py msgid "" "That's quite the offer, but I don't think I'd survive the trip. I don't " "think you realize how useless I am in this world." msgstr "" -"Es una buena oferta, pero no creo que sobreviva al viaje. No creo que te des" -" cuenta de lo inútil que soy en este mundo." +"Una oferta interesante pero no creo que vaya a sobrevivir el viaje. No creo " +"que te hayas dado cuenta de lo inútil que soy en este mundo." #: lang/json/talk_topic_from_json.py msgid "I'm sorry, I'm too hungry to make a big decision like that." msgstr "" -"Lo siento, estoy demasiado hambriento para tomar una gran decisión como esa." +"Lo siento, demasiado hambriento para tomar una decisión tan importante como " +"esa." #: lang/json/talk_topic_from_json.py msgid "I can keep you safe. I'll take you there myself." -msgstr "Puedo mantenerte a salvo. Te llevaré yo mismo." +msgstr "Puedo mantenerte a salvo. Te llevaré yo mismo hasta allí." #: lang/json/talk_topic_from_json.py msgid "Let's talk about something else then." @@ -264294,13 +271064,13 @@ msgid "" " it. I can't go out there. I will die. I know it's horrible camping out " "here, but I just can't face that nightmare again." msgstr "" -"Realmente aprecio todo lo que has hecho por mí, pero creo que no lo " +"Realmente agradezco todo lo que has hecho por mí, pero creo que no lo " "entiendes. No puedo salir ahí fuera. Moriré. Sé que es horrible acampar " "aquí, pero no puedo enfrentarme a esa pesadilla otra vez." #: lang/json/talk_topic_from_json.py msgid "I hope you'll reconsider eventually. Bye." -msgstr "Espero que lo reconsideres eventualmente. Adiós." +msgstr "Espero que lo reconsideres en algun momento. Adiós." #: lang/json/talk_topic_from_json.py msgid "" @@ -264310,27 +271080,27 @@ msgid "" "been through way too much together. If you can convince Luo, Brandon, and " "Yusuke to come along, then I'll go." msgstr "" -"Bueno... has demostrado que puedes sobrevivir ahí fuera, y has sido capaz de" -" proveer comida, así que sé que estás prosperando más que nosotros aquí. De " -"acuerdo, te diré qué. No voy a ir a ninguna parte sin mis amigos aquí, hemos" -" pasado por muchas cosas juntos. Si puedes convencer a Luo, Brandon, y " -"Yusuke de que vengan, entonces me iré." +"Bueno... habéis demostrado que puedes sobrevivir ahí fuera, y has sido capaz" +" de proporcionar comida, así que sé que estas prosperando más que nosotros " +"aquí. Mira, te voy a decir una cosa. No voy a ir a ninguna parte sin mis " +"amigos aquí, hemos pasado demasiadas cosas juntos. Si puedes convencer a " +"Luo, Brandon y Yusuke para que vengan, entonces los acompañaré." #: lang/json/talk_topic_from_json.py msgid "OK. For now let's talk about something else." -msgstr "OK. Por ahora hablemos de otra cosa." +msgstr "Vale. Por ahora hablemos de otra cosa." #: lang/json/talk_topic_from_json.py msgid "OK, I'll talk to them too." -msgstr "Ok, hablaré con ellos." +msgstr "Vale, voy a hablar con ellos también." #: lang/json/talk_topic_from_json.py msgid "All right! Let's get going." -msgstr "¡Está bien! Vámos a continuar." +msgstr "¡Está bien! Continuemos." #: lang/json/talk_topic_from_json.py msgid "We've done it! We've solved the list!" -msgstr "¡Lo hemos conseguido! ¡Hemos resuelto la lista!" +msgstr "¡Lo hemos conseguido! ¡Hemos terminado la lista!" #: lang/json/talk_topic_from_json.py msgid "" @@ -264341,7 +271111,7 @@ msgstr "" #: lang/json/talk_topic_from_json.py msgid "Have I told you about cardboard, friend? Do you have any?" -msgstr "¿Te he hablado del cartón, amigo? ¿Tienes alguno?" +msgstr "¿Te he hablado sobre el cartón, amigo? ¿Tienes algo de cartón?" #: lang/json/talk_topic_from_json.py msgid "About that shopping list of yours…" @@ -264365,7 +271135,7 @@ msgstr "¿Por qué estás sentado aquí?" #: lang/json/talk_topic_from_json.py msgid "Are you seriously wearing a dinosaur costume?" -msgstr "¿En serio llevas un disfraz de dinosaurio?" +msgstr "¿En serio llevas puesto un disfraz de dinosaurio?" #: lang/json/talk_topic_from_json.py msgid "Do you need something to eat?" @@ -264373,8 +271143,7 @@ msgstr "¿Necesitas algo para comer?" #: lang/json/talk_topic_from_json.py msgid "Oh nice. Crunchings and munchings. That's a cool, a cool thing." -msgstr "" -"Oh, bien. Crujientes y masticables. Eso es algo genial, una cosa genial." +msgstr "Oh, bien. Crujientes y masticables. Eso es una cosa buena, buena." #: lang/json/talk_topic_from_json.py msgid "" @@ -264386,15 +271155,15 @@ msgstr "" #: lang/json/talk_topic_from_json.py msgid "Actually can I ask you something else?" -msgstr "En realidad, ¿puedo preguntarte algo más?" +msgstr "Espera, ¿te puedo preguntar otra cosa?" #: lang/json/talk_topic_from_json.py msgid "" "I can tell when it has stuff in it, it's got a sandy texture. But this " "doesn't. Thanks again." msgstr "" -"Puedo decir cuando tiene algo dentro, tiene una textura arenosa. Pero esto " -"no. Gracias de nuevo." +"Puedo decirte cuando tiene algo dentro, tiene una textura arenosa. Pero esto" +" no. Gracias de nuevo." #: lang/json/talk_topic_from_json.py msgid "" @@ -264414,11 +271183,11 @@ msgstr "¿El hombre de arena?" #: lang/json/talk_topic_from_json.py msgid "Would you like me to give you some cardboard?" -msgstr "¿Quieres que te dé un poco de cartón?" +msgstr "¿Quieres que te dé algo de cartón?" #: lang/json/talk_topic_from_json.py msgid "I think I have to get going…" -msgstr "Creo que tengo que irme..." +msgstr "Tengo que irme ..." #: lang/json/talk_topic_from_json.py msgid "" @@ -264479,15 +271248,15 @@ msgstr "Yo... puedo ver que lo llevas puesto. ¿Por qué llevas eso?" #: lang/json/talk_topic_from_json.py msgid "What was that about cardboard?" -msgstr "¿Qué fue eso del cartón?" +msgstr "¿Qué es eso del cartón?" #: lang/json/talk_topic_from_json.py msgid "" "You ask me what I can see, but I don't tell you what you see. Sometimes we " "have shields up, to protect ourselves." msgstr "" -"Me preguntas lo que puedo ver, pero no te digo lo que ves. A veces tenemos " -"escudos para protegernos." +"Me preguntas lo que puedo ver, pero no te digo lo que tu ves. A veces " +"tenemos los escudos levantados para protegernos de nosotros mismos." #: lang/json/talk_topic_from_json.py msgid "" @@ -264512,21 +271281,20 @@ msgid "" "Why don't you leave this place? Come with me, I could use some help out " "there." msgstr "" -"¿Por qué no te vas de este lugar? Ven conmigo, me vendría bien algo de ayuda" -" ahí fuera." +"¿Por qué no dejas este lugar? Ven conmigo, me vendría bien algo de ayuda ahí" +" fuera." #: lang/json/talk_topic_from_json.py msgid "Well. No problem, glad to be of service. Talk to you later." msgstr "" -"Bueno... No hay problema, me alegro de ser de utilidad. Hablaremos más " -"tarde." +"Bueno... No hay problema, me alegro de ser de utilidad. Hablamos después." #: lang/json/talk_topic_from_json.py msgid "" "No! I just got everything together. I am not leaving, not now. " "Everything's finally coming together!" msgstr "" -"¡No! Acabo de reunir todo. No me voy a ir, no ahora. ¡Todo se está " +"¡No! Acabo de reunilor todo. No me voy a ir, no ahora. ¡Todo se está " "resolviendo por fin!" #: lang/json/talk_topic_from_json.py @@ -264559,7 +271327,7 @@ msgid "" msgstr "" "Mira, siento haberme asustado antes. Puede que seas un imbécil, pero estoy " "seguro de que no lo decías en serio. Mi nivel de azúcar en la sangre está " -"muy bajo, me pongo un poco malhumorado. ¿Estamos bien?" +"muy bajo y me pongo un poco malhumorado. ¿Estamos bien?" #: lang/json/talk_topic_from_json.py msgid "Hey there, not-asshole. Good to see you again." @@ -264567,11 +271335,11 @@ msgstr "Hola, no-capullo. Me alegro de verte de nuevo." #: lang/json/talk_topic_from_json.py msgid "Don't bother with these assholes." -msgstr "No te molestes con estos imbéciles." +msgstr "No te molestes con estos capullos." #: lang/json/talk_topic_from_json.py msgid "What's up?" -msgstr "¿Cómo va?" +msgstr "¿Qué tal?" #: lang/json/talk_topic_from_json.py msgid "I might have some food for you. Are you hungry?" @@ -264579,7 +271347,7 @@ msgstr "Puede que tenga algo de comida para ti. ¿Tienes hambre?" #: lang/json/talk_topic_from_json.py msgid "We're cool. Sorry for insulting you earlier." -msgstr "Estamos bien. Siento haberte insultado antes." +msgstr "Estamos bien. Perdón por insultarte antes." #: lang/json/talk_topic_from_json.py msgid "I found a sample of alien fungus for you." @@ -264594,8 +271362,8 @@ msgid "" "Actually yeah, I'm always hungry these days. I don't like taking handouts, " "but I wouldn't say no." msgstr "" -"En realidad sí, siempre tengo hambre estos días. No me gusta recibir " -"limosnas, pero no diría que no." +"En realidad sí, siempre tengo hambre estos días. No me gustan las limosnas " +"pero no te lo voy a rechazar." #: lang/json/talk_topic_from_json.py msgid "Thanks, I really appreciate this." @@ -264603,7 +271371,7 @@ msgstr "Gracias, realmente aprecio esto." #: lang/json/talk_topic_from_json.py msgid "They're 'too full'. Won't share fuck-all." -msgstr "Están \"demasiado llenos\". No compartirán un carajo." +msgstr "Están \"demasiado llenos\". No compartirán una mierda." #: lang/json/talk_topic_from_json.py msgid "Why are you living here then?" @@ -264620,11 +271388,10 @@ msgid "" "us sitting around the entryway. So kind and generous of them, to let us sit" " here and slowly starve." msgstr "" -"Incluso sin que ellos ayuden, es el lugar más seguro para ponerse en " -"cuclillas. Mientras lo mantengamos limpio aquí y no causemos problemas de " -"sanidad, no les importa que nos sentemos en la entrada. Son tan amables y " -"generosos de su parte, que nos dejan sentarnos aquí y morir de hambre " -"lentamente." +"Incluso sin su ayuda, es el lugar más seguro para quedarse. Mientras " +"mantengamos limpio el sitio y no causemos problemas sanitarios, no les " +"importa que nos sentemos cerca de la entrada. Son tan amables y generosos " +"por dejar sentarnos aquí a morirnos de hambre." #: lang/json/talk_topic_from_json.py msgid "" @@ -264636,14 +271403,14 @@ msgid "" "By the time they 'found' it, the place was full up, wouldn't ya know it. " "Now I'm stuck out here and they won't consider letting me in." msgstr "" -"Oh, la misma vieja historia al principio. Me evacuaron al centro de " -"concentración local, luego me recogieron en un autobús escolar y me " -"arrastraron hasta aquí. Luego la chica que me procesaba para entrar vio mi " -"nombre y mi nombre chino y convenientemente \"perdió\" mi papeleo. Me " -"enviaron aquí para esperar a que me procesaran, mientras veía cómo se " -"procesaban y se llevaban autobuses llenos de gente. Para cuando lo " -"\"averiguaron\", el lugar estaba lleno, ¿no lo sabías? Ahora estoy atrapado " -"aquí y no considerarán dejarme entrar." +"Oh, la misma historia de siempre al principio. Me evacuaron al centro de " +"concentración local, hasta que me transladaron en un autobús escolar " +"reconvertido y me arrastraron hasta aquí. Entonces la cría que me procesaba " +"para entrar vio mi nombre y un nombre chino y convenientemente \"perdió\" mi" +" papeleo. Me dejaron aquí mientras esperaba a ser procesado, mientras veía " +"cómo procesaban y entraban autobuses llenos de gente. Para cuando lo " +"\"encontraron\", el lugar estaba lleno, ¿quién podría imaginarlo? Ahora " +"estoy atascado aquí y ya ni considerarán dejarme entrar." #: lang/json/talk_topic_from_json.py msgid "You think you were treated like that because of your race?" @@ -264743,7 +271510,7 @@ msgid "" "survivors left, we need to work together" msgstr "" "Sería temporal. Tengo una base instalada. Sólo quedamos unos pocos " -"sobrevivientes, tenemos que trabajar juntos..." +"supervivientes, tenemos que trabajar juntos..." #: lang/json/talk_topic_from_json.py msgid "Okay, yeah, that's a bit of a problem. What were you saying before?" @@ -264855,9 +271622,9 @@ msgid "" " I know a little bit about a lot of things, I guess you could say. I kinda" " loved the job, to be honest." msgstr "" -"Bueno, antes del yo termine estaba trabajando en una " -"librería de la universidad. Sé un poco sobre muchas cosas, supongo que se " -"podría decir. amaba el trabajo, para ser honesto." +"Bueno, antes de que terminara el trabajaba en la biblioteca " +"de una universidad. Sé un poco de muchas cosas, supongo que se podría decir " +"eso. Creo que amaba ese trabajo para ser honesto." #: lang/json/talk_topic_from_json.py msgid "" @@ -264871,10 +271638,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "¿Qué es eso que he oído de que tienes un doctorado?" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "¿Qué era lo que estabas diciendo antes?" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -265110,10 +271873,10 @@ msgid "" "like I can check that ol' whatchamacallit, the blood test the docs used to " "bug me about every couple months." msgstr "" -"¡Cuál no! Asma, diabetes, artitris. La diabetes no es tan grave desde que " -"dejé de, bueno, de comer regularmente. Por lo menos, creo que no es grave. " -"Tampoco que vengo controlándome el comosedice... los análisis de sangre que " -"usan los doctores para molestarme cada un par de meses." +"¡Di algo!. Tengo asma, diabetes y artritis. La diabetes no ha sido tan mala " +"desde que dejé de comer regularmente. Bueno, supongo que no. No es que me " +"hayan chequeado las \"cosas\", me refiero al análisis de sangre que los " +"médicos solían pedirme cada dos meses." #: lang/json/talk_topic_from_json.py msgid "You seem awfully happy considering the situation." @@ -265134,9 +271897,9 @@ msgid "" "they got in. They were some of the last ones to get in actually. I didn't " "make the cutoff." msgstr "" -"Vino con un pequeño grupo hace un tiempo. Los otros eran jóvenes y en forma," -" se metieron. De hecho, fueron algunos de los últimos en entrar. Yo no pase " -"el corte." +"Vine con un pequeño grupo ya hace bastante tiempo. Los otros jovenes y en " +"form entraron dentro. De hecho, fueron de los últimos en entrar. Yo no lo " +"conseguí." #: lang/json/talk_topic_from_json.py msgid "" @@ -265145,10 +271908,11 @@ msgid "" "have none of this and still have to look for food… in other words, I'd be " "dead as a doornail. Or I guess undead." msgstr "" -"Esto es una misericordia. Tengo refugio, luz y calor, y esos guardias nos " -"ayudarán si aparece algún zombi. No es tan malo. Si estuviera solo, no " -"tendría nada de esto y aún así tendría que buscar comida... en otras " -"palabras, estaría muerto como un clavo. O supongo que no muerto." +"Esto es una bendición. Tengo refugio, luz, calor, y esos guardias nos " +"ayudarán si aparece algún zombi. No se esta tan mal. Si estuviera solo por " +"mi cuenta, no tendría nada de esto y aún así tendría que buscar comida... en" +" otras palabras, estaría bien muerto. Bueno supongo que lo correcto sería no" +" muerto." #: lang/json/talk_topic_from_json.py msgid "" @@ -265224,12 +271988,12 @@ msgid "" " he's still out there with my grandkids, hiding away somewhere safe. These " "days, no news is good news." msgstr "" -"Sí, teníamos dos. Mi hija murió de una sobredosis justo al principio de esa " -"cosa, fentanyl. Hizo un número real en mi hijo - eran gemelos, ya ves - y " -"cortó los lazos con mi esposa y conmigo. Ni siquiera estuvo allí para su " -"funeral. No puedo culparlo, nos destrozó a todos de forma bastante feroz. " -"Por lo que a mí respecta, sigue ahí fuera con mis nietos, escondido en algún" -" lugar seguro. En estos días, no tener noticias es una buena noticia." +"Sí, teníamos dos. Mi hija murió de una sobredosis justo al principio de la " +"cosa del fentanilo. Dejó a mi hijo muy tocado - eran gemelos ambos - y eso " +"cortó mis lazos con mi esposa. Ni siquiera estuvo para su funeral. No puedo " +"culparlo, nos destrozó internamente a todos de forma brutal. Por lo que a mí" +" respecta, el sigue ahí fuera con mis nietos, escondido en algún lugar " +"seguro. En estos días, no tener noticias es una buena noticia." #: lang/json/talk_topic_from_json.py msgid "" @@ -265285,7 +272049,7 @@ msgstr "Hola, amigo." #: lang/json/talk_topic_from_json.py msgid "I couldn't help but notice, you're covered in fur." -msgstr "No pude evitar notar que estás cubierto de pelo." +msgstr "No he podido evitar darme cuenta de que… estás cubierto de pelo." #: lang/json/talk_topic_from_json.py msgid "Would you like something to eat?" @@ -265317,13 +272081,14 @@ msgid "" "been able to bring back enough to keep these folk in better shape. I " "suspect they'll find an excuse to kick me out eventually." msgstr "" -"Es más seguro que hacer mi propio hogar. Salgo y busco cuando tengo que " -"hacerlo. Mientras lo mantengamos limpio y hagamos nuestra parte cuando venga" -" un zombi, nos dejan okupar aquí como defensa extra. No les gusta que haya " -"estado trayendo comida para los otros okupas... Creo que están tratando de " -"matarnos de hambre lentamente, y aunque no puedo mantener las barrigas de " -"todos llenas, he podido traer lo suficiente para mantener a esta gente en " -"mejor forma. Sospecho que encontrarán una excusa para echarme eventualmente." +"Es más seguro que hacerme mi propia casa. Salgo y rebusco cuando tengo que " +"hacerlo. Mientras lo mantengamos limpio y hagamos nuestra parte cuando " +"aparezca un zombi, nos dejan quedarnos aquí como defensa extra. No les gusta" +" que haya estado trayendo comida para los otros... Creo que están tratando " +"de matarnos de hambre lentamente, y aunque no puedo mantener las barrigas de" +" todos llenas, he podido traer lo suficiente para mantener a esta gente en " +"mejor forma. Sospecho que encontrarán una excusa para echarme fuera con el " +"tiempo." #: lang/json/talk_topic_from_json.py msgid "" @@ -265341,8 +272106,8 @@ msgid "" "while I'm foraging. If you've got food to spare, please give it to my " "friends." msgstr "" -"Me va bien para mi mismo en realidad. Como muchas cosas a punto de " -"estropearse mientras busco comida. Si tienes comida de sobra, por favor " +"En realidad, lo estoy llevando bien. Como muchas cosas que están por caducar" +" cuando ando rebuscando comida. Si tienes comida para compartir, por favor, " "dásela a mis amigos." #: lang/json/talk_topic_from_json.py @@ -266132,11 +272897,10 @@ msgid "" msgstr "" "No hay mucho que hacer con un martillo y una sierra aquí dentro, y trabajar " "fuera es demasiado peligroso. Si tuviéramos suficiente espacio para que yo " -"pudiera hacer algunos cambios, podría construir algunas paredes de " -"privacidad aquí. Intenté montar un pequeño taller en el garaje, pero tuve " -"que seguir bajando todo para la carga y descarga de caravanas y no pude " -"hacer nada. Las caravanas traen comida, así que tienen prioridad, no puedo " -"discutirlo." +"pudiera hacer algunos cambios, podría construir algun muro de privacidad " +"aquí. Intenté montar un pequeño taller en el garaje, pero tuve que seguir " +"bajando todo para la carga y descarga de caravanas y no pude hacer nada. Las" +" caravanas traen comida, así que tienen prioridad, no puedo discutirlo." #: lang/json/talk_topic_from_json.py msgid "What do you need to get things cleaned up? Can I help?" @@ -266654,9 +273418,8 @@ msgid "" "Well now, good to see another new face! Welcome to the center, friend, I'm " "Draco." msgstr "" -"Bueno, ¡es bueno ver otra cara nueva! Bienvenido al centro, amigo, soy " -"Draco.Bueno, ¡es bueno ver otra cara nueva! Bienvenido al centro, amigo, soy" -" Draco." +"Ahora sí, ¡qué bueno ver una cara nueva! Bienvenido al centro, amigo, soy " +"Draco." #: lang/json/talk_topic_from_json.py msgid "Nice to meet you, Draco." @@ -269161,9 +275924,9 @@ msgid "" "and definitely not enough supplies. These are harsh times. We're doing " "what we can for those folks… at least they've got shelter." msgstr "" -"Incluso una vez que se han arreglado las cosas, no hay suficientes camas " -"para todos, y definitivamente no hay suficientes suministros. Son tiempos " -"difíciles. Hacemos lo que podemos por esa gente... al menos tienen refugio." +"Incluso una vez que se habian arreglado las cosas, no hubo suficientes camas" +" ni suministros para todos. Son tiempos difíciles. Hacemos lo que podemos " +"por esa gente... al menos tienen refugio." #: lang/json/talk_topic_from_json.py msgid "" @@ -269244,11 +276007,11 @@ msgstr "Hola, alguacil." #: lang/json/talk_topic_from_json.py msgid "Can I join you guys?" -msgstr "¿Puedo formar parte de su grupo?" +msgstr "¿Puedo unirme a vosotros?" #: lang/json/talk_topic_from_json.py msgid "Anything I can do for you?" -msgstr "¿Algo que pueda hacer por ustedes?" +msgstr "¿Algo que pueda hacer por ti?" #: lang/json/talk_topic_from_json.py msgid "See you later." @@ -269412,9 +276175,7 @@ msgstr "¡Gracias! Me voy yendo." #: lang/json/talk_topic_from_json.py msgid "Yes of course. Just don't bring any trouble and it's all fine by me." -msgstr "" -"Sí, por supuesto. Pero no causes ningún problema y va a estar todo bien " -"conmigo." +msgstr "Sí, por supuesto. Mientras no causes problemas, todo bien por mi." #: lang/json/talk_topic_from_json.py msgid "" @@ -269423,8 +276184,8 @@ msgid "" "allowed in there." msgstr "" "Bueno, mayormente no. No andes por ahí robándole a los otros o peleándote, y" -" estará todo bien. Tampoco vayas al sótano. Ahí no pueden entrar los " -"visitantes." +" todo estará bien. Tampoco vayas al sótano. La gente de fuera no tiene " +"permitido estar ahíe" #: lang/json/talk_topic_from_json.py msgid "Ok, thanks." @@ -269455,11 +276216,11 @@ msgid "" "of our shop. I bet some of them would be willing to organize resource runs " "with you if you ask." msgstr "" -"La mayoría son carroñeros, como tú. Ahora se ganan la vida saqueando las " -"ciudades buscando algo útil: comida, armas, herramientas, gasolina. A cambio" -" de lo que encuentran, les ofrecemos un lugar temporario para descansar y " -"los servicios de nuestros negocios. Estoy seguro que alguno de ellos estaría" -" interesado en organizar una grupo para ir a buscar recursos, si les " +"La mayoría son carroñeros como tú. Ahora se ganan la vida saqueando las " +"ciudades es búsqueda de algo útil: comida, armas, herramientas y gasolina. A" +" cambio de lo que encuentran, les ofrecemos un lugar temporal para descansar" +" y los servicios de nuestra tienda. Apuesto a que alguno de ellos estaría " +"interesado en organizar una grupo para ir a buscar recursos, si les " "preguntas." #: lang/json/talk_topic_from_json.py @@ -269698,10 +276459,6 @@ msgstr "Me imaginé que podrías estar buscando algo de ayuda..." msgid "What's with these 'free merchant certified notes'?" msgstr "¿Qué pasa con estas \"notas certificadas de los mercaderes libres\"?" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "Bueno, será mejor que me vaya. Adiós." - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "Bienvenido alguacil..." @@ -269805,9 +276562,9 @@ msgid "" "in the neighborhood. Luckily we haven't had a mob like that pass by here." msgstr "" "Una vez apareció un tipo que decía haber intentado manejar por Syracuse " -"luego del brote. Ni siquiera llegó al centro cuando se cruzó con una pared " -"de muertos vivientes que podían detener a un tanque. Salió arando de ahí " -"pero dice que había varios miles por lo menos. Supongo que cuando se juntan " +"luego del brote. Ni siquiera llegó al centro cuando se cruzó con un muro de " +"muertos vivientes que podían detener a un tanque. Salió arando de ahí pero " +"dice que había varios miles por lo menos. Supongo que cuando se juntan " "muchos terminan haciendo ruido como para atraer a todos en el vecindario. " "Por suerte, no hemos tenido una horda de esas por aquí." @@ -270151,6 +276908,133 @@ msgstr "" " a ayudar en mi tiempo libre. Respeto que alguien ponga su dinero donde está" " sus palabras." +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "Entonces, ¿han visto tus caravanas algo interesante en el páramo?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" +"Quería hablarles de un posible nuevo socio comercial que conocí " +"recientemente." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" +"Eh, una nueva cara. Encantado de conocerte. Soy el que envía estas caravanas" +" por todas partes. ¿Qué puedo hacer por ti?" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "¿Puedo hacerte algunas preguntas?" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "Tengo que irme, ha sido un placer hablar contigo." + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "Claro, no tengo nada que cargar ahora mismo." + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" +"No, lo siento. No hay mucho que valga la pena notar por ahí en estos días, " +"sólo el extraño superviviente disperso y por lo general no quieren " +"visitantes al azar." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" +"De hecho, sí. Me encontré con un grupo de granjeros. No quieren tener mucho " +"que ver con nuestras caravanas, pero con alguien como tú podrían querer." + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" +"Ha habido rumores. La gente habla de una especie de laboratorio secreto, en " +"la naturaleza, con supervivientes. Eso is yo no lo he visto." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" +"Bien, algunas de mis caravanas han vuelto ahora hablando de este gigantesco " +"castillo de metal en la cima de una roca, en medio de la nada. No han estado" +" tan locos como para comprobarlo, pero tú podrías hacerlo si quieres." + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "ERROR: fuera de los limites en randomize_directions." + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "¿Cómo puedo llegar a esa granja?" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "¿Cómo puedo llegar a ese laboratorio?" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "¿Cómo puedo llegar a ese castillo?" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "Ah, eso no es nada nuevo para mí. Gracias de todos modos." + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "Espera, ¿qué estabas diciendo antes?" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "En realidad, tengo que irme. Tal vez más tarde." + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" +"*te muestra en tu mapa dónde encontrarlo. \"Eso debería llevarte hasta allí." +" Buena suerte, creo que la necesitarás." + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "Gracias por las indicaciones. Lo comprobaré." + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "Siempre buscando nuevos lugares para comerciar. ¿Qué tienes para mí?" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "[ Contarles sobre Rubik y los Exodii ]" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" +"Bueno, esa es una increible historia. Algún día, veré si podemos ir allí e " +"investigarlo. Parece que habría un intercambio realmente interesante." + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "¿Puedo preguntarte algo más?" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "Alguacil..." @@ -270508,6 +277392,15 @@ msgstr "Cuidate ahí afuera." msgid "Is there any way I can join the 'Old Guard'?" msgstr "¿Hay alguna forma en que me pueda unir a la 'Vieja Guardia'?" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "Tengo algunas preguntas para ti sobre esos extraños robots." + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "Creo que ya puedo decirte lo que quieres saber sobre esos \"robots\"." + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "¿La Vieja Guardia necesita algo?" @@ -270634,6 +277527,73 @@ msgstr "" "trabajo disponible. Completar misiones como contratista es una buena forma " "de hacerte conocido entre los hombres más poderosos que quedan en el mundo." +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" +"Si quieres saber cuáles son nuestros próximos pasos, no estoy en libertad de" +" decírtelo. A decir verdad, ni yo mismo lo sé. No comparten ese tipo de " +"información conmigo." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" +"De hecho, los he conocido. Parecen estar abiertos al comercio y esas cosas. " +"Pensé que querrías saberlo." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" +"Bueno, eso es interesante. No estoy en posición de hacer algo al respecto, " +"pero tal vez quieras llevar esa información a uno de los camioneros de los " +"Comerciantes Libres. Tal vez sea una forma de establecer relaciones más " +"amistosas." + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "Buena idea. Iré a hacer eso." + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "Huh, tal vez. ¿Podemos hablar de otra cosa?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" +"Oh, bueno. En ese caso, me interesaría saber lo que sabes de ellos. Puedo " +"transmitírselo al mando. Veamos qué tengo para intercambiar... ¿qué tal " +"algunos antibióticos de nuestros almacenes? Nunca se tienen demasiados por " +"ahí." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" +"Sí, los he conocido. Parecen abiertos al comercio y a las cosas. No son " +"hostiles, al menos no para mí." + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "Tendré que pensar en ello. Vamos a hablar de otra cosa, por ahora." + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "Pensándolo bien, debería ir." + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -273963,6 +280923,29 @@ msgstr "No por el momento, compruébelo más tarde tal vez." msgid "Sure…" msgstr "Claro..." +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" +" Guardo los libros de Valzain. Hay muchos pisos de estanterías en su " +"dimensión de bolsillo. Resulta que estos son los que creo más probable que " +"lea pronto. Puedo vender algunos de los que tenemos repetidos." + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" +"Organizo los libros, vendo los que sobran, una vez, cuando todavía " +"prestábamos libros, cazaba a los que tenían libros atrasados para " +"devolverlos." + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "Hablemos de negocios, entonces." + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "¿Intentarías capturarme?" @@ -274162,20 +281145,6 @@ msgstr "Mantente firme,. Tengo que despejar un camino." msgid "Pack your bags, . We're going on a trip." msgstr "Haz las maletas, . Nos vamos de viaje." -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "Contador de Biojutsu" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "Bloqueas y contraatacas al %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr " bloquea y contraataca al %s" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "Desarme" @@ -274271,12 +281240,12 @@ msgstr "Cola de Lagarto" #: lang/json/technique_from_json.py #, python-format msgid "You leap off a nearby wall and dropkick %s" -msgstr "Saltas de una pared cercana y das una patada a %s" +msgstr "Saltas de un muro cercano y das una patada a %s" #: lang/json/technique_from_json.py #, python-format msgid " leaps off a nearby wall and dropkicks %s" -msgstr " salta de una pared cercana y da una patada a %s" +msgstr " salta de una muro cercano y da una patada a %s" #: lang/json/technique_from_json.py src/martialarts.cpp msgid "Grab Break" @@ -274294,17 +281263,17 @@ msgstr "%s intenta agarrar a , pero lo esquiva" #: lang/json/technique_from_json.py msgid "Lizard Wall Counter" -msgstr "Contra Muro Lagarto" +msgstr "Contraataque de Muro Lagarto" #: lang/json/technique_from_json.py #, python-format msgid "You push off a nearby wall and strike down at %s" -msgstr "Empujas una pared cercana y atacas a %s" +msgstr "Empujas sobre un muro cercano y atacas a %s" #: lang/json/technique_from_json.py #, python-format msgid " pushes off a nearby wall and strikes down at %s" -msgstr " empuja una pared cercana y golpea a %s" +msgstr " empuja sobre un muro cercano y golpea a %s" #: lang/json/technique_from_json.py msgid "Lizard Counter" @@ -274788,20 +281757,6 @@ msgstr "Desarmas a %s usando tu latigo" msgid " disarms %s using their whip" msgstr " desarma a %s usando su látigo" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "Contrataque" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "Contraatacass al %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr " contraataca %s" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "Amague" @@ -274837,55 +281792,45 @@ msgid " jabs deftly at %s" msgstr " le da un hábil puñetazo a %s" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" -msgstr "ContraBloqueo Desarmante" +msgid "Counter Throw (block)" +msgstr "Contra Lanzamiento (bloque)" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" -msgstr "Bloqueas y suavemente desarmas a %s" +msgid "You smoothly throw %s" +msgstr "Lanzas sin esfuerzo a %s" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr " bloquea y suavemente desarma a %s" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" -msgstr "ContraBloqueo Lanzador" +msgid " blocks and smoothly throws %s" +msgstr " bloquea y lanza sin esfuerzo a %s" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" -msgstr "Bloqueas y lanzas comodamente a %s" +msgid "Counter Throw (dodge)" +msgstr "Contra Lanzamiento (esquiva)" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" -msgstr " bloquea y lanza sin esfuerzo a %s" +msgid " dodges and smoothly throws %s" +msgstr " esquiva y lanza sin esfuerzo a %s" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" -msgstr "Esquivar Contralanzando" +msgid "Disarming Throw (block)" +msgstr "Lanzamiento Desarmante (bloqueo)" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" -msgstr "Esquivas y lanzas comodamente a %s" +msgid "You smoothly disarm %s" +msgstr "Desarmas con suavidad a %s" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr " esquiva y lanza sin esfuerzo a %s" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" -msgstr "Esquivo ContraDesarmante" +msgid " blocks and smoothly disarms %s" +msgstr " bloquea y suavemente desarma a %s" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" -msgstr "Esquivas y desarmas a %s" +msgid "Disarming Throw (dodge)" +msgstr "Lanzamiento Desarmante (esquiva)" #: lang/json/technique_from_json.py #, python-format @@ -274968,20 +281913,6 @@ msgstr "¡%s intenta agarrarte, pero tu fuerza te libera!" msgid "The %s tries to grab , but they break free!" msgstr "¡%s intenta agarrar a , pero se libera!" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "Devolución de Golpe" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr " ¡Atrapas el ataque del %s, y lo golpeas!" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr " atrapa a %s, y contrataca" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -275100,34 +282031,6 @@ msgstr "Alzas tus brazos de manera intimidatoria a %s." msgid " performs the Crane Wing at %s." msgstr " ejecutal Alas de Grulla a %s." -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "Aleteo de Grulla" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "¡%s intenta agarrarte, pero agitas tus brazos y quedas libre!" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "¡%s intenta agarrar a , pero aletea y queda libre!" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "Golpe de Grulla" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "Picoteas y aplastas a %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr " picotea y aplasta a %s" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "Patada Grulla" @@ -275143,46 +282046,46 @@ msgid " leaps and kicks %s" msgstr " salta y patea %s" #: lang/json/technique_from_json.py -msgid "Dragon Claw" -msgstr "Garra de Dragón" +msgid "Crane Flap" +msgstr "Aleteo de Grulla" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" -msgstr "Golpeas a %s con una Garra Dragón" +msgid "The %s tries to grab you, but you swing your arms and break free!" +msgstr "¡%s intenta agarrarte, pero agitas tus brazos y quedas libre!" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" -msgstr " golpea a %s con una Garra Dragón" +msgid "The %s tries to grab , but they flap free!" +msgstr "¡%s intenta agarrar a , pero aletea y queda libre!" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" -msgstr "Bloqueo Vortice de Dragón" +msgid "Crane Strike" +msgstr "Golpe de Grulla" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" -msgstr "Bloqueas el ataque y haces dar vueltas a %s" +msgid "You hand-peck and strike %s" +msgstr "Picoteas y golpeas a %s" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" -msgstr " bloquea y voltea a %s" +msgid " hand-pecks and strikes %s" +msgstr " picotea y golpea a %s" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" -msgstr "Esquiva Ala de Dragón" +msgid "Dragon Claw" +msgstr "Garra de Dragón" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" -msgstr "Esquivas el ataque y dejas a %s tambaleándose" +msgid "You lash out at %s with a Dragon Claw" +msgstr "Golpeas a %s con una Garra Dragón" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" -msgstr " esquiva y deja a %s tambaleándose" +msgid " lashes out at %s with a Dragon Claw" +msgstr " golpea a %s con una Garra Dragón" #: lang/json/technique_from_json.py #, python-format @@ -275265,18 +282168,18 @@ msgid " combination strikes %s" msgstr " da un golpe combinado a %s" #: lang/json/technique_from_json.py -msgid "Puño Strike" -msgstr "Golpe Fist" +msgid "Stunning Strike" +msgstr "Golpe Aturdidor" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" -msgstr "Le das un golpe con la empuñadura al %s" +msgid "You deliver a stunning strike to %s" +msgstr "Asestas un golpe aturdidor a %s" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" -msgstr " da un golpe con la empuñadura a %s" +msgid " delivers a stunning strike to %s" +msgstr " asesta un golpe aturdidor a %s" #: lang/json/technique_from_json.py msgid "Low Strike" @@ -275317,8 +282220,8 @@ msgid " lunges at %s" msgstr " da un golpe de esgrima a %s" #: lang/json/technique_from_json.py -msgid "Compound Attack" -msgstr "Ataque Compuesto" +msgid "Compound Attack (Remise)" +msgstr "Ataque Compuesto (Restaurar)" #: lang/json/technique_from_json.py #, python-format @@ -275331,6 +282234,10 @@ msgid "'s feint leads to a compound attack against %s" msgstr "" "La finta de le lleva a realizar un ataque compuesto contra %s" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "Ataque Compuesto (Tiempo de Contra)" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "Contragolpe de Esgrima" @@ -275477,20 +282384,6 @@ msgstr "¡%s intenta agarrarte, pero te liberas de su debil intento!" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "¡%s intenta agarrar a , pero se libera de su debil intento!" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "Contra Lanzamiento" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "Evades y mandas a %s al suelo" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr " evade y manda a %s al suelo" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "Contra Karate" @@ -275595,20 +282488,6 @@ msgstr "¡%s trata de agarrarte, pero luchas y te liberas! " msgid "The %s tries to grab , but they wrestle free!" msgstr "¡%s trata de agarrar a , pero lucha y se libera!" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "Contra" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "Bloqueas y contraatacas a %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr " bloquea y contraataca a %s" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "Zarpa de leopardo" @@ -275710,20 +282589,6 @@ msgid "" msgstr "" "Con movimientos perfeccionados, pasa de un golpe fallido a otro" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "Maesto del Corte" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "Paras y golpeas %s en un movimiento" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr " para y golpea %s en un movimiento" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "Golpe de Codo" @@ -275975,7 +282840,7 @@ msgstr "Golpeas a %s con un golpe sucio" #: lang/json/technique_from_json.py #, python-format msgid " delivers a dirty blow to %s" -msgstr " lanza un golpe sucio a %s" +msgstr " asestas un golpe sucio a %s" #: lang/json/technique_from_json.py msgid "Silat Brutality" @@ -276047,20 +282912,6 @@ msgstr "Das un golpe a %s con un feroz Golpe Serpiente" msgid " lashes out at %s with a vicious Snake Strike" msgstr " ataca a %s con un feroz Golpe Serpiente" -#: lang/json/technique_from_json.py -msgid "Push" -msgstr "Empujar" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You push %s away" -msgstr "Empujas %s a un lado" - -#: lang/json/technique_from_json.py -#, python-format -msgid " pushes %s away" -msgstr " empuja %s a un lado" - #: lang/json/technique_from_json.py msgid "Shove" msgstr "Empujar" @@ -276085,6 +282936,16 @@ msgstr "Habilmente haces tropezar a %s" msgid " deftly trips %s" msgstr " hace tropezar a %s habilmente" +#: lang/json/technique_from_json.py +#, python-format +msgid "You fake a thrust at %s" +msgstr "Simulas empujar a %s" + +#: lang/json/technique_from_json.py +#, python-format +msgid " fakes a thrust at %s" +msgstr " simula empujar a %s" + #: lang/json/technique_from_json.py msgid "Snatch Weapon" msgstr "Arrebatar Arma" @@ -276226,12 +283087,12 @@ msgstr "Puño Directo" #: lang/json/technique_from_json.py #, python-format msgid "You deliver a vertical straight punch to %s" -msgstr "Diriges un puño directo hacia arriba a %s" +msgstr "Asestas un puño directo hacia arriba a %s" #: lang/json/technique_from_json.py #, python-format msgid " delivers a vertical straight punch to %s" -msgstr " dirige un puño directo hacia arriba a %s" +msgstr " asestas un puño directo hacia arriba a %s" #: lang/json/technique_from_json.py msgid "Straight Punch (Knockback)" @@ -276285,20 +283146,6 @@ msgstr "Fallas al atacar a %s pero no te rindes" msgid "'s attack misses %s but they don't let up" msgstr " falla al ataque a %s pero no te rindes" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "Recibes y Contraatacas" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "Recibes el regalo de la violencia de %s y se lo devuelves" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr " recibe el ataque de %s y contraataca" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "Finta Borracha" @@ -277098,20 +283945,6 @@ msgstr "Limpiamente siegas a través de %s y aquellos cercanos" msgid " cleanly reap throug %s and those nearby" msgstr " limpiamente segas a través de %s y los que están cerca" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "Ausstoß" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "Rediriges el ataque de %s a el mismo" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr " redirige el ataque de %s contra el mismo" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "Kumai Sharinraku" @@ -277210,20 +284043,6 @@ msgstr "Usas Barrido Bajo en %s" msgid " uses Low Sweep on %s" msgstr " usa Barrido Bajo en %s" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "Golpe del Idiota" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "Engañas completamente a %s y contraatacas" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr " engaña completamente a %s y contraataca" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "Golpe de Matanza de Hidras" @@ -277266,20 +284085,6 @@ msgstr "Giras y lanzas a %s lejos con un Empujón Ballista" msgid " spins and hurls %s away with a Ballista Throw" msgstr " gira y lanza a %s lejos con un Empujón Ballista" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "Corrientes de Agua" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "Desvias el ataque de %s y contraatacas en un movimiento fluido" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr " desvia el ataque %s y contraataca en un movimiento fluido" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "Corte Desarmante" @@ -277408,7 +284213,7 @@ msgstr "El hongo aquí muere de nuevo." msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" -"El suelo se sacude, una sección de pared de piedra antinatural lisa se " +"El suelo se sacude, una sección de muro de piedra antinatural lisa se " "levanta." #: lang/json/ter_furn_transform_messages_from_json.py @@ -278124,7 +284929,7 @@ msgstr "Una fina puerta de acero corrugado sujeto a un marco." #: lang/json/terrain_from_json.py msgid "metal wall" -msgstr "pared de metal" +msgstr "muro de metal" #. ~ Description for metal wall #: lang/json/terrain_from_json.py @@ -278135,7 +284940,7 @@ msgid "" "retardant, breaching will require specialized tools or industrial vehicles." msgstr "" "Una lámina gruesa fabricada industrialmente, cuidadosamente colocada y unida" -" sin costuras con sellador de perímetro, esta pared es capaz de resistir " +" sin costuras con sellador de perímetro, este muro es capaz de resistir " "elementos extremos así como fuerzas hostiles. Con una carga de explosión y " "extremadamente resistente al fuego, la ruptura requerirá herramientas " "especializadas o vehículos industriales." @@ -278150,12 +284955,12 @@ msgid "" "This apparently normal segment of metal wall has opened to reveal a secret " "passage." msgstr "" -"Este trozo de pared de metal parecía normal pero se ha abierto para revelar " +"Este trozo de muro de metal parecía normal pero se ha abierto para revelar " "un pasaje secreto." #: lang/json/terrain_from_json.py msgid "concrete wall" -msgstr "pared de hormigón" +msgstr "muro de hormigón" #. ~ Description for concrete wall #: lang/json/terrain_from_json.py @@ -278165,8 +284970,8 @@ msgid "" "Blast load rated and extremely fire-retardant, breaching will require " "specialized tools or industrial vehicles." msgstr "" -"Un muro de hormigón falso colocado y unido sin fisuras a la pared, este muro" -" es capaz de resistir elementos extremos así como fuerzas hostiles. Con " +"Un muro de hormigón falso colocado y unido sin fisuras con el muro, este " +"muro es capaz de resistir elementos extremos así como fuerzas hostiles. Con " "capacidad de carga de explosiones y extremadamente resistente al fuego, su " "ruptura requerirá herramientas especializadas o vehículos industriales." @@ -278346,7 +285151,7 @@ msgid "" msgstr "" "Una gran puerta que consiste en largos leños unidos por un cable, que puede " "ser ampliada. Puede actuar como una puerta si algún tipo de sistema de " -"poleas se instalan en una pared de empalizada adyacente." +"poleas se instalan en un muro de empalizada adyacente." #: lang/json/terrain_from_json.py msgid "open palisade gate" @@ -278614,7 +285419,7 @@ msgstr "¡traqueteo metálico!" #: lang/json/terrain_from_json.py msgid "screen mesh wall" -msgstr "pared de malla de pantalla" +msgstr "muro de malla de pantalla" #. ~ Description for screen mesh wall #: lang/json/terrain_from_json.py @@ -278622,7 +285427,7 @@ msgid "" "A rather flimsy tall wall made of 2x4s and screen mesh, suitable for keeping" " the bugs out." msgstr "" -"Una pared alta bastante endeble hecha de 2x4 y malla de pantalla, adecuada " +"Un muro alto bastante endeble hecho de 2x4 y malla de pantalla, adecuado " "para mantener a los bichos fuera." #: lang/json/terrain_from_json.py @@ -278836,7 +285641,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "concrete floor" -msgstr "suelo de cemento" +msgstr "suelo de hormigón" #. ~ Description for concrete floor #: lang/json/terrain_from_json.py @@ -278846,7 +285651,7 @@ msgid "" "down." msgstr "" "Un suelo de hormigón desnudo y frío con un techo a juego, todavía podría " -"aislar del exterior, pero el colapso del techo es posible si las paredes de " +"aislar del exterior, pero el colapso del techo es posible si los muros de " "soporte se derrumban." #. ~ Description for concrete floor @@ -278858,7 +285663,7 @@ msgid "" msgstr "" "Un suelo de hormigón desnudo y frío con una raya de pintura amarilla, " "todavía podría aislar del exterior, pero el colapso del techo es posible si " -"las paredes de soporte se derrumban." +"los muros de soporte se derrumban." #. ~ Description for concrete floor #: lang/json/terrain_from_json.py @@ -278868,8 +285673,8 @@ msgid "" " are broken down." msgstr "" "Un suelo de hormigón desnudo y frío con una raya de pintura roja, todavía " -"podría aislar del exterior, pero el colapso del techo es posible si las " -"paredes de soporte se derrumban." +"podría aislar del exterior, pero el colapso del techo es posible si los " +"muros de soporte se derrumban." #. ~ Description for concrete floor #: lang/json/terrain_from_json.py @@ -278881,7 +285686,7 @@ msgid "" msgstr "" "Un suelo de hormigón desnudo y frío, con una mancha de pintura amarilla y " "una luz que aún funciona pegada al techo, podría seguir aislando del " -"exterior, pero el colapso del techo es posible si se rompen las paredes de " +"exterior, pero el colapso del techo es posible si se rompen los muros de " "soporte." #: lang/json/terrain_from_json.py @@ -278894,8 +285699,8 @@ msgid "" "A bare and cold concrete floor with a still-functioning light attached to " "the ceiling above." msgstr "" -"Es un suelo de cemento frío y desnudo con una luz funcionando, puesta " -"arriba, en el techo." +"Un suelo de hormigón frío y desnudo con una luz funcionando, puesta arriba, " +"en el techo." #: lang/json/terrain_from_json.py msgid "wooden floor, overhead light" @@ -279924,6 +286729,22 @@ msgstr "" "Un árbol joven de una especie indeterminada. Podría tardar décadas en " "alcanzar la madurez, así que no sirve de nada esperar." +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "mega helecho" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" +"Un helecho gigantesco como nada que haya visto antes. Las hojas son de un " +"color escarlata brillante con una estructura similar a una red de venas " +"verdes. Los troncos con múltiples puntas parecen tener la consistencia de la" +" madera de balsa." + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "manzano" @@ -280850,9 +287671,9 @@ msgid "" "straight through it from the outside. Despite the apparent damage, the wall" " is still structurally sound." msgstr "" -"Varios gruesos y grandes zarcillos de hongos perforan la pared aquí, " -"atravesándola directamente desde el exterior. A pesar del daño aparente, la " -"pared sigue siendo estructuralmente sólida." +"Varios gruesos y grandes zarcillos de hongos perforan el muro aquí, " +"atravesándola directamente desde el exterior. A pesar del daño aparente, el " +"muro sigue siendo estructuralmente sólida." #. ~ Description for fungal wall #: lang/json/terrain_from_json.py @@ -281369,8 +288190,8 @@ msgid "" "A large wall mounted panel, covered fragile metal sheets that regulate " "airflow." msgstr "" -"Un gran panel montado en la pared, cubierto de frágiles láminas metálicas " -"que regulan el flujo de aire." +"Un gran panel montado en el muro, cubierto de frágiles láminas metálicas que" +" regulan el flujo de aire." #: lang/json/terrain_from_json.py msgid "missile" @@ -282164,7 +288985,7 @@ msgstr "Un interruptor cuadriculado. ¿Debería activarlo?" #: lang/json/terrain_from_json.py msgid "resin wall" -msgstr "pared de resina" +msgstr "muro de resina" #. ~ Description for resin wall #: lang/json/terrain_from_json.py @@ -282174,7 +288995,7 @@ msgid "" "pulsating green conduits, snaking like blood vessels through it. The " "material is hard, warm to the touch, and slightly damp." msgstr "" -"Esta pared está hecha de una sustancia brillante, casi opaca, parecida al " +"Este muro está hecho de una sustancia brillante, casi opaco, parecido al " "plástico. En lo profundo del material que lo compone, apenas se puede ver " "una red de conductos verdes pulsantes, serpenteando como vasos sanguíneos a " "través de ella. El material es duro, cálido al tacto y ligeramente húmedo." @@ -282194,9 +289015,9 @@ msgid "" "allowing the passage of air and light. While still made of the same sturdy " "material, it is thinner and more delicate in appearance." msgstr "" -"Esta pared de resina se abre en una serie de pequeños hexágonos en forma de " +"Este muro de resina se abre en una serie de pequeños hexágonos en forma de " "panal, permitiendo el paso del aire y la luz. Aunque sigue siendo del mismo " -"material resistente, es más delgada y más delicada en apariencia." +"material resistente, es más delgado y más delicado en apariencia." #: lang/json/terrain_from_json.py msgid "resin floor" @@ -282209,9 +289030,9 @@ msgid "" " but in the central areas is quite flat. The material is hard, warm to the " "touch, and slightly damp." msgstr "" -"Este suelo casi opaco, parecido al plástico, tiene una suave curva de pared " -"a pared, pero en las zonas centrales es bastante plano. El material es duro," -" cálido al tacto y ligeramente húmedo." +"Este suelo casi opaco, parecido al plástico, tiene una suave curva de muro a" +" muro, pero en las zonas centrales es bastante plano. El material es duro, " +"cálido al tacto y ligeramente húmedo." #. ~ Description for resin floor #: lang/json/terrain_from_json.py @@ -282275,8 +289096,8 @@ msgstr "agujero forrado de resina" #: lang/json/terrain_from_json.py msgid "An open hole in the resin wall, large enough to pass through." msgstr "" -"Un agujero abierto en la pared de resina, lo suficientemente grande como " -"para pasar a través de él." +"Un agujero abierto en el muro de resina, lo suficientemente grande como para" +" pasar a través de él." #. ~ Description for gravel #: lang/json/terrain_from_json.py @@ -282722,7 +289543,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "solid bark wall" -msgstr "pared sólida de corteza" +msgstr "muro sólido de corteza" #. ~ Description for solid bark wall #: lang/json/terrain_from_json.py @@ -282730,12 +289551,12 @@ msgid "" "A solid wall of bark, enclosing the trunk of a massive tree. It will " "probably burn quite well." msgstr "" -"Una sólida pared de corteza, que encierra el tronco de un enorme árbol. " +"Un sólido muro de corteza, que encierra el tronco de un enorme árbol. " "Probablemente arderá bastante bien." #: lang/json/terrain_from_json.py msgid "chipped bark wall" -msgstr "pared astillada de corteza" +msgstr "muro astillado de corteza" #. ~ Description for chipped bark wall #: lang/json/terrain_from_json.py @@ -282743,12 +289564,12 @@ msgid "" "A solid wall of bark enclosing the trunk of a massive tree. Some of it has " "been broken away." msgstr "" -"Una sólida pared de corteza que encierra el tronco de un enorme árbol. Parte" -" de ella se ha roto." +"Un sólid muro de corteza que encierra el tronco de un enorme árbol. Parte de" +" ella se ha roto." #: lang/json/terrain_from_json.py msgid "broken bark wall" -msgstr "pared rota de corteza" +msgstr "muro roto de corteza" #. ~ Description for broken bark wall #: lang/json/terrain_from_json.py @@ -282761,13 +289582,13 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "solid wood wall" -msgstr "pared sólida de madera" +msgstr "muro sólido de madera" #. ~ Description for solid wood wall #: lang/json/terrain_from_json.py msgid "A solid wall of naturally grown wood. Likely very flammable." msgstr "" -"Una pared sólida de madera cultivada naturalmente. Probablemente muy " +"Un muro sólido de madera cultivada naturalmente. Probablemente muy " "inflamable." #: lang/json/terrain_from_json.py @@ -282839,7 +289660,7 @@ msgstr "Una maraña de raíces están aquí, se separan revelando un agujero." #: lang/json/terrain_from_json.py msgid "wall" -msgstr "pared" +msgstr "muro" #. ~ Description for wall #: lang/json/terrain_from_json.py @@ -282849,14 +289670,14 @@ msgid "" "cream color, it could use more vibrant paint. Appears as though the " "material is still flammable." msgstr "" -"La pared estereotípica con estructura de soporte de madera rellena de " -"aislamiento y paredes de yeso. El trabajo de pintura es bastante común con " -"el color neutral color blanco o crema, podría utilizar una pintura más " -"vibrante. Parece como si el material fuera todavía inflamable." +"El muro típico con estructura de soporte de madera rellena de aislamiento y " +"muros de yeso. El trabajo de pintura es bastante común con el color neutral " +"color blanco o crema, podría utilizar una pintura más vibrante. Parece como " +"si el material fuera todavía inflamable." #: lang/json/terrain_from_json.py msgid "half-built wall" -msgstr "pared a medio construir" +msgstr "muro a medio construir" #. ~ Description for half-built wall #: lang/json/terrain_from_json.py @@ -282865,9 +289686,9 @@ msgid "" "provide proper support. It requires some more planks and nails before it'd " "be considered a suitable wall." msgstr "" -"Una pared incompleta de madera refinada, salpicada de clavos cuidadosamente " +"Un muro incompleto de madera refinada, salpicado de clavos cuidadosamente " "colocados para proporcionar un soporte adecuado. Requiere algunos tablones y" -" clavos más antes de que se considere una pared adecuada." +" clavos más antes de que se considere unmuro adecuada." #: lang/json/terrain_from_json.py msgid "pony wall" @@ -282880,76 +289701,76 @@ msgid "" "is the all too common and neutral off-white or cream color. Appears as " "though the material is flammable." msgstr "" -"Una corta pared divisoria con una estructura de soporte de madera con " -"paneles de yeso. El trabajo de pintura es demasiado común y de color blanco " -"neutro o crema. Parece como si el material fuera inflamable." +"Un corto muro divisorio con una estructura de soporte de madera con paneles " +"de yeso. El trabajo de pintura es demasiado común y de color blanco neutro o" +" crema. Parece como si el material fuera inflamable." #: lang/json/terrain_from_json.py msgid "red wall" -msgstr "pared roja" +msgstr "muro rojo" #. ~ Description for red wall #: lang/json/terrain_from_json.py msgid "Wall painted red." -msgstr "Pared pintada de rojo." +msgstr "Muro pintado de rojo." #: lang/json/terrain_from_json.py msgid "white wall" -msgstr "pared blanca" +msgstr "muro blanco" #. ~ Description for white wall #: lang/json/terrain_from_json.py msgid "Wall painted white." -msgstr "Pared pintada de blanco." +msgstr "Muro pintado de blanco." #: lang/json/terrain_from_json.py msgid "blue wall" -msgstr "pared azul" +msgstr "muro azul" #. ~ Description for blue wall #: lang/json/terrain_from_json.py msgid "Wall painted blue." -msgstr "Pared pintada de azul." +msgstr "Muro pintado de azul." #: lang/json/terrain_from_json.py msgid "green wall" -msgstr "pared verde" +msgstr "muro verde" #. ~ Description for green wall #: lang/json/terrain_from_json.py msgid "Wall painted green." -msgstr "Pared pintada de verde." +msgstr "Muro pintado de verde." #: lang/json/terrain_from_json.py msgid "yellow wall" -msgstr "pared amarilla" +msgstr "muro amarilla" #. ~ Description for yellow wall #: lang/json/terrain_from_json.py msgid "Wall painted yellow." -msgstr "Pared pintada de amarillo." +msgstr "Muro pintado de amarillo." #: lang/json/terrain_from_json.py msgid "pink wall" -msgstr "pared rosa" +msgstr "muro rosa" #. ~ Description for pink wall #: lang/json/terrain_from_json.py msgid "Wall painted pink." -msgstr "Pared pintada de rosa." +msgstr "Muro pintado de rosa." #: lang/json/terrain_from_json.py msgid "purple wall" -msgstr "pared púrpura" +msgstr "muro púrpura" #. ~ Description for purple wall #: lang/json/terrain_from_json.py msgid "Wall painted purple." -msgstr "Pared pintada de morado." +msgstr "Muro pintado de morado." #: lang/json/terrain_from_json.py msgid "half-built brick wall" -msgstr "pared de ladrillos a medio construir" +msgstr "muro de ladrillos a medio construir" #. ~ Description for half-built brick wall #: lang/json/terrain_from_json.py @@ -282957,8 +289778,8 @@ msgid "" "Half of a brick wall, looks like it still requires some more resources and " "effort before being considered a real wall." msgstr "" -"Es la mitad de una pared de ladrillos, todavía le faltan materiales y " -"esfuerzo para poder ser considerada seriamente una pared." +"La mitad de un muro de ladrillos, todavía le faltan materiales y esfuerzo " +"para poder ser considerada seriamente un muro." #: lang/json/terrain_from_json.py msgid "bash!" @@ -282966,7 +289787,7 @@ msgstr "¡bash!" #: lang/json/terrain_from_json.py msgid "brick wall" -msgstr "pared de ladrillos" +msgstr "muro de ladrillos" #. ~ Description for brick wall #: lang/json/terrain_from_json.py @@ -282974,13 +289795,13 @@ msgid "" "A solid brick wall, sturdy enough to support a roof with enough walls and " "keep out any unwanted visitors." msgstr "" -"Es una sólida pared de ladrillos, lo suficientemente resistente como para " -"aguantar un techo con más paredes y mantener afuera a los visitantes " +"Una sólido muro de ladrillos, lo suficientemente resistente como para " +"aguantar un techo con más muros y mantener afuera a los visitantes " "indeseados." #: lang/json/terrain_from_json.py msgid "stone wall" -msgstr "pared de piedra" +msgstr "muro de piedra" #. ~ Description for stone wall #: lang/json/terrain_from_json.py @@ -282989,7 +289810,7 @@ msgstr "Un robusto muro de piedra." #: lang/json/terrain_from_json.py msgid "half-built stone wall" -msgstr "pared de piedra a medio construir" +msgstr "muro de piedra a medio construir" #. ~ Description for half-built stone wall #: lang/json/terrain_from_json.py @@ -282997,7 +289818,7 @@ msgid "" "Half of a sturdy stone wall. Some work still needs to be done before this " "stone wall is complete." msgstr "" -"La mitad de una pared de piedra resistente. Todavía hay que hacer algo de " +"La mitad de un muro de piedra resistente. Todavía hay que hacer algo de " "trabajo antes de que este muro de piedra esté completo." #: lang/json/terrain_from_json.py @@ -283023,8 +289844,8 @@ msgid "" "Half of an adobe brick wall, looks like it still requires some more " "resources and effort before being considered a real wall." msgstr "" -"La mitad de una pared de ladrillo de adobe, parece que todavía requiere " -"algunos recursos y esfuerzos más, antes de ser considerada una pared real." +"La mitad de un muro de ladrillo de adobe, parece que todavía requiere " +"algunos recursos y esfuerzos más, antes de ser considerado un muro real." #: lang/json/terrain_from_json.py msgid "adobe wall" @@ -283037,7 +289858,7 @@ msgid "" "and keep out any unwanted visitors." msgstr "" "Un muro de adobe sólido, lo suficientemente robusto como para soportar un " -"techo con suficientes paredes y mantener alejados a los visitantes no " +"techo con suficientes muros y mantener alejados a los visitantes no " "deseados." #. ~ Description for concrete wall @@ -283055,7 +289876,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "corrugated metal wall" -msgstr "pared de metal corrugado" +msgstr "muro de metal corrugado" #. ~ Description for corrugated metal wall #: lang/json/terrain_from_json.py @@ -283078,7 +289899,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "simple concrete wall" -msgstr "pared de cemento común" +msgstr "muro de hormigón común" #. ~ Description for simple concrete wall #: lang/json/terrain_from_json.py @@ -283093,7 +289914,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "half-built simple concrete wall" -msgstr "pared de cemento común a medio construir" +msgstr "muro de hormigón común a medio construir" #. ~ Description for half-built simple concrete wall #: lang/json/terrain_from_json.py @@ -283106,7 +289927,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "reinforced concrete wall" -msgstr "pared de hormigón reforzado" +msgstr "muro de hormigón reforzado" #. ~ Description for reinforced concrete wall #: lang/json/terrain_from_json.py @@ -283125,7 +289946,7 @@ msgstr "¡scrrrash!" #: lang/json/terrain_from_json.py msgid "half-built reinforced concrete wall" -msgstr "pared de hormigón reforzado a medio construir" +msgstr "muro de hormigón reforzado a medio construir" #. ~ Description for half-built reinforced concrete wall #: lang/json/terrain_from_json.py @@ -283154,7 +289975,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "simple metal wall" -msgstr "pared simple de metal" +msgstr "muro simple de metal" #. ~ Description for simple metal wall #: lang/json/terrain_from_json.py @@ -283162,12 +289983,12 @@ msgid "" "A relatively simple wall made of scraped together metal. It's still capable" " of blocking intruders and supporting a roof with adjacent walls." msgstr "" -"Una pared relativamente simple hecha de metal raspado. Es capaz de bloquear " -"a los intrusos y soportar un techo con paredes adyacentes." +"Un muro relativamente simple hecha de metal raspado. Es capaz de bloquear a " +"los intrusos y soportar un techo con muros adyacentes." #: lang/json/terrain_from_json.py msgid "half-built simple metal wall" -msgstr "pared simple de metal a medio construir" +msgstr "muro simple de metal a medio construir" #. ~ Description for half-built simple metal wall #: lang/json/terrain_from_json.py @@ -283175,12 +289996,12 @@ msgid "" "A partially built makeshift wall of metal that could potentially support a " "roof if it were completed." msgstr "" -"Es una pared improvisada de metal a medio construir, que podría soportar un " -"techo si estuviera terminada." +"Un muro improvisado de metal a medio construir, que podría soportar un techo" +" si estuviera terminado." #: lang/json/terrain_from_json.py msgid "wooden wall" -msgstr "pared de madera" +msgstr "muro de madera" #. ~ Description for wooden wall #: lang/json/terrain_from_json.py @@ -283188,12 +290009,12 @@ msgid "" "A finished wall of planks and support beams, capable of supporting an upper " "level or roof. Still highly flammable." msgstr "" -"Una pared terminada de tablones y vigas de soporte, capaz de soportar un " -"nivel superior o techo. Altamente inflamable." +"Un muro terminado de tablones y vigas de soporte, capaz de soportar un nivel" +" superior o techo. Altamente inflamable." #: lang/json/terrain_from_json.py msgid "chipped wood wall" -msgstr "pared astillada de madera" +msgstr "muro astillado de madera" #. ~ Description for chipped wood wall #: lang/json/terrain_from_json.py @@ -283201,12 +290022,12 @@ msgid "" "A wall of aligned planks that's starting to crack and break open. Some cut " "wood and a number of nails could patch this up quick." msgstr "" -"Una pared de tablones alineados que está empezando a agrietarse y romperse. " -"Un poco de madera cortada y varios clavos podrían parchear esto rápidamente." +"Un muro de tablones alineados que está empezando a agrietarse y romperse. Un" +" poco de madera cortada y varios clavos podrían parchear esto rápidamente." #: lang/json/terrain_from_json.py msgid "broken wood wall" -msgstr "pared rota de madera" +msgstr "muro roto de madera" #. ~ Description for broken wood wall #: lang/json/terrain_from_json.py @@ -283219,7 +290040,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "half-built log wall" -msgstr "pared de leños a medio construir" +msgstr "muro de leños a medio construir" #. ~ Description for half-built log wall #: lang/json/terrain_from_json.py @@ -283227,13 +290048,13 @@ msgid "" "A half-constructed wall of notched logs that interlock to provide stability." " Needs a few more logs to hold up a roof. Looks flammable." msgstr "" -"Una pared a medio construir hecha de leños dentados que se interconectan " -"para crear estabilidad. Necesita algunos leños más para poder soportar un " -"techo. Parece inflamable." +"Un muro a medio construir hecha de leños dentados que se interconectan para " +"crear estabilidad. Necesita algunos leños más para poder soportar un techo. " +"Parece inflamable." #: lang/json/terrain_from_json.py msgid "log wall" -msgstr "pared de leños" +msgstr "muro de leños" #. ~ Description for log wall #: lang/json/terrain_from_json.py @@ -283241,12 +290062,12 @@ msgid "" "A tall wall of timber suitable for housing and insulating from the weather." " Quite flammable." msgstr "" -"Es una pared alta de madera, ideal para una casa y para aislarte del clima. " +"Un muro alta de madera, ideal para una casa y para aislarte del clima. " "Bastante inflamable, eso sí." #: lang/json/terrain_from_json.py msgid "chipped log wall" -msgstr "pared quebrada de leños" +msgstr "muro quebrado de leños" #. ~ Description for chipped log wall #: lang/json/terrain_from_json.py @@ -283254,12 +290075,12 @@ msgid "" "A moderately damaged wall, could probably be patched up with some planks and" " nails." msgstr "" -"Una pared moderadamente dañada, probablemente podría ser remendada con " -"algunos tablones y clavos." +"Un muro moderadamente dañado, probablemente podría ser remendado con algunos" +" tablones y clavos." #: lang/json/terrain_from_json.py msgid "broken log wall" -msgstr "pared rota de leños" +msgstr "muro roto de leños" #. ~ Description for broken log wall #: lang/json/terrain_from_json.py @@ -283268,7 +290089,7 @@ msgid "" "Looks repairable if the damage was replaced and patched together with nails " "and planks." msgstr "" -"Una pared de madera destruidao, con sólo un leño de soporte, listo para " +"Un muro de madera destruido, con sólo un leño de soporte, listo para " "colapsar. Parece reparable si el daño fuera reemplazado y remendado con " "clavos y tablas." @@ -283287,7 +290108,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "wattle-and-daub wall" -msgstr "pared de bareque" +msgstr "muro de bareque" #. ~ Description for wattle-and-daub wall #: lang/json/terrain_from_json.py @@ -283296,13 +290117,13 @@ msgid "" "strips using some combination of wet soil, clay, sand, animal dung and " "straw." msgstr "" -"Una pared relativamente primitiva hecha con una red de listones de madera " +"Un muro relativamente primitivo hecha con una red de listones de madera " "utilizando una combinación de tierra húmeda, arcilla, arena, estiércol y " "paja." #: lang/json/terrain_from_json.py msgid "broken wattle-and-daub wall" -msgstr "pared de bareque rota" +msgstr "muro de bareque roto" #. ~ Description for broken wattle-and-daub wall #: lang/json/terrain_from_json.py @@ -283310,12 +290131,12 @@ msgid "" "This wattle-and-daub wall section has been destroyed, leaving mostly just " "frame, and is barely held together." msgstr "" -"Esta sección de la pared de bareque ha sido destruida, dejando en su mayoría" -" sólo el marco, y apenas se mantiene unida." +"Esta sección de muro de bareque ha sido destruido, dejando en su mayoría " +"sólo el marco, y apenas se mantiene unido." #: lang/json/terrain_from_json.py msgid "half-built wattle-and-daub wall" -msgstr "pared de bareque a medio construir" +msgstr "muro de bareque a medio construir" #. ~ Description for half-built wattle-and-daub wall #: lang/json/terrain_from_json.py @@ -283324,13 +290145,13 @@ msgid "" " still requires the rest of the lattice and supporting wet compound to be " "filled in." msgstr "" -"Esta pared de bareque tiene parte del enrejado de madera en su lugar, y " +"Este muro de bareque tiene parte del enrejado de madera en su lugar, y " "todavía requiere que se rellene el resto del enrejado y el compuesto húmedo " "de soporte." #: lang/json/terrain_from_json.py msgid "junk metal wall" -msgstr "pared de chatarra" +msgstr "muro de chatarra" #. ~ Description for junk metal wall #: lang/json/terrain_from_json.py @@ -283338,7 +290159,7 @@ msgid "" "A wall of rusty scrap metal bolted and wire-tied to a sturdy frame. Very " "fashionable in post-apocalyptic shantytowns. Can support a roof." msgstr "" -"Una pared de chatarra oxidada atornillada y atada con alambre a un marco " +"Una muro de chatarra oxidado atornillado y atado con alambre a un marco " "robusto. Muy de moda en los barrios de chabolas post-apocalípticos. Puede " "soportar un techo." @@ -283352,8 +290173,8 @@ msgid "" "A solid wall of compressed dirt, sturdy enough to support a roof with enough" " walls and keep out some unwanted visitors." msgstr "" -"Una pared sólida de tierra comprimida, lo suficientemente robusta como para " -"soportar un techo con suficientes paredes y mantener fuera a algunos " +"Un muro sólido de tierra comprimida, lo suficientemente robusta como para " +"soportar un techo con suficientes muros y mantener fuera a algunos " "visitantes no deseados." #: lang/json/terrain_from_json.py @@ -283362,7 +290183,7 @@ msgstr "¡Un fuerte estruendo!" #: lang/json/terrain_from_json.py msgid "smooth dirt wall" -msgstr "pared de tierra lisa" +msgstr "muro de tierra lisa" #. ~ Description for smooth dirt wall #: lang/json/terrain_from_json.py @@ -283370,7 +290191,7 @@ msgid "" "A solid wall of compressed dirt, mixed with… something to keep it stable. " "Its surface glistens slightly, and it smells like rotten milk." msgstr "" -"Una sólida pared de tierra comprimida, mezclada con... algo que la mantiene " +"Un sólido de tierra compactada, mezclada con... algo que la mantiene " "estable. Su superficie brilla ligeramente y huele a leche podrida." #: lang/json/terrain_from_json.py @@ -283384,14 +290205,13 @@ msgid "" "frame. Very fashionable in post-apocalyptic shantytowns. This one isn't " "quite strong enough to support a roof, but could be reinforced." msgstr "" -"Es una simple pared de chatarra metálica atornillada y atada con alambre a " -"una estructura improvisada. Muy elegante para los pueblos post-" -"apocalípticos. Esta no es tan fuerte como para sostener un techo, pero puede" -" ser reforzada." +"Un simple muro de chatarra metálica atornillada y atada con alambre a una " +"estructura improvisada. Muy elegante para las chabolas post-apocalípticos. " +"Este no es tan fuerte como para sostener un techo, pero puede ser reforzado." #: lang/json/terrain_from_json.py msgid "glass wall" -msgstr "pared de cristal" +msgstr "muro de cristal" #. ~ Description for glass wall #: lang/json/terrain_from_json.py @@ -283432,9 +290252,9 @@ msgid "" "strengthening the structural properties. Still weaker than other types of " "walls, and not made to support a roof either." msgstr "" -"Es un panel grueso de vidrio con delgados cables metálicos entretejidos, lo " -"que hacen la estructura más fuerte. Igual es más débil que otro tipo de " -"pared, y no puede soportar un techo." +"Un panel grueso de vidrio con delgados cables metálicos entretejidos, lo que" +" hacen la estructura más fuerte. Igual es más débil que otro tipo de muro, y" +" no puede soportar un techo." #: lang/json/terrain_from_json.py msgid "reinforced glass with closed shutters" @@ -283479,13 +290299,13 @@ msgid "" "Thick, heavy bars from the floor to the ceiling, interlaced wall to wall. " "Not made to support roofs, but great for blocking paths." msgstr "" -"Gruesas y pesadas barras del suelo al techo, entrelazadas de pared a pared. " -"No están hechas para soportar los techos, pero son ideales para bloquear los" -" caminos." +"Gruesas y pesadas barras del suelo al techo, entrelazadas de muro a muro. No" +" están hechas para soportar los techos, pero son ideales para bloquear los " +"caminos." #: lang/json/terrain_from_json.py msgid "paper wall" -msgstr "pared de papel" +msgstr "muro de papel" #. ~ Description for paper wall #: lang/json/terrain_from_json.py @@ -283493,12 +290313,12 @@ msgid "" "A huge wall of pulpy mass, covered in sticky wasp saliva. You could smash " "it down effortlessly." msgstr "" -"Una enorme pared de masa pulposa, cubierta de saliva pegajosa de avispa. " +"Una enorme muro de masa pulposa, cubierta de saliva pegajosa de avispa. " "Podrías derribarla sin esfuerzo." #: lang/json/terrain_from_json.py msgid "layered paper wall" -msgstr "pared de papel estratificado" +msgstr "muro de papel estratificado" #. ~ Description for layered paper wall #: lang/json/terrain_from_json.py @@ -283506,31 +290326,31 @@ msgid "" "A thick wall of layered tree pulp and wasp saliva, hardened to withstand the" " elements. You could break through this, but it won't be easy." msgstr "" -"Una gruesa pared de capas de pulpa de árbol y saliva de avispa, endurecida " +"Un grueso muro de capas de pulpa de árbol y saliva de avispa, endurecido " "para soportar los elementos. Podrías atravesar esto, pero no será fácil." #: lang/json/terrain_from_json.py msgid "root wall" -msgstr "pared de raíces" +msgstr "muro de raíces" #. ~ Description for root wall #: lang/json/terrain_from_json.py msgid "A dirt wall covered with roots." -msgstr "Una pared de tierra cubierta de raíces." +msgstr "Una muro de tierra cubierta de raíces." #: lang/json/terrain_from_json.py msgid "wax wall" -msgstr "pared de cera" +msgstr "muro de cera" #. ~ Description for wax wall #: lang/json/terrain_from_json.py msgid "A wall made entirely out of wax." -msgstr "Una pared hecha completamente de cera." +msgstr "Un muro hecho completamente de cera." #. ~ Description for solid earth #: lang/json/terrain_from_json.py msgid "A wall of solid earth." -msgstr "Ena pared de tierra sólida." +msgstr "Un muro de tierra sólida." #. ~ Description for solid rock #: lang/json/terrain_from_json.py @@ -283670,7 +290490,7 @@ msgid "" "A concrete column that helps keep the mine's ceiling and walls from " "collapsing." msgstr "" -"Una columna de hormigón que ayuda a evitar que el techo y las paredes de la " +"Una columna de hormigón que ayuda a evitar que el techo y los muros de la " "mina se derrumben." #: lang/json/terrain_from_json.py @@ -284027,10 +290847,10 @@ msgstr "" "impresionante con un atractivo abismo oceánico de color azul." #: lang/json/terrain_from_json.py -msgid "Window with metal grate" -msgstr "Ventana con rejilla metálica" +msgid "window with metal grate" +msgstr "ventana con rejilla metálica" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " @@ -284039,7 +290859,7 @@ msgstr "" "Barras de metal convertidas en rejilla para una ventana, de gran durabilidad" " y que resistirá contra cualquier enemigo" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " @@ -284048,7 +290868,7 @@ msgstr "" "Barras de metal en forma de rejilla para una ventana con una cortina " "cerrada, de gran durabilidad y que resistirá contra cualquier enemigo" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -284058,25 +290878,25 @@ msgstr "" "abierta, de gran durabilidad y que resiste contra cualquier enemigo" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" -msgstr "Ventana de cristal simple" +msgid "single glazed glass window" +msgstr "ventana de cristal simple" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "Una hoja de cristal gigante insertada en el marco de una ventana." #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" -msgstr "Ventana de cristal simple abierta" +msgid "open single glazed glass window" +msgstr "ventana de cristal simple abierta" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" -msgstr "Ventana de cristal simple con una cortina" +msgid "single glazed glass window with a curtain" +msgstr "ventana de cristal simple con una cortina" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " @@ -284085,7 +290905,7 @@ msgstr "" "Una ventana de cristal con cortinas de lujo en el interior que se cierra " "para bloquear la visibilidad y bloquear cualquier luz." -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -284095,10 +290915,10 @@ msgstr "" "cerrarse para bloquear la visibilidad y bloquear fuera la luz." #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" -msgstr "Ventana de cristal simple reforzado" +msgid "reinforced single glazed glass window" +msgstr "ventana de cristal simple reforzado" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" @@ -284106,14 +290926,14 @@ msgstr "" " cristal." #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" -msgstr "Ventana de cristal simple reforzado abierta" +msgid "open reinforced single glazed glass window" +msgstr "ventana de cristal simple abierta reforzada" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" -msgstr "Ventana de cristal simple reforzado con una cortina" +msgid "reinforced single glazed glass window with a curtain" +msgstr "ventana de cristal simple reforzado con una cortina" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " @@ -284122,12 +290942,7 @@ msgstr "" "Una ventana con cortinas de lujo en el interior que se cierra para bloquear " "la visibilidad y bloquear cualquier luz." -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "ventana de cristal simple reforzado con una cortina" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -284137,25 +290952,25 @@ msgstr "" "cerrar para bloquear la visibilidad y evitar la luz." #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" -msgstr "Ventana de cristal doble" +msgid "double glazed glass window" +msgstr "ventana de cristal doble" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "Dos láminas gigantes de vidrio insertadas en el marco de una ventana." #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" -msgstr "Ventana de cristal doble abierta" +msgid "open double glazed glass window" +msgstr "ventana de cristal doble abierta" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" -msgstr "Ventana de cristal doble con cortina" +msgid "double glazed glass window with a curtain" +msgstr "ventana de cristal doble con una cortina" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " @@ -284164,8 +290979,8 @@ msgstr "" "Una ventana de doble acristalamiento con cortinas de lujo en el interior que" " se cierra para bloquear la visibilidad y evitar la luz." -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -284176,10 +290991,10 @@ msgstr "" " luz." #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" -msgstr "Ventana de cristal doble reforzado" +msgid "reinforced double glazed glass window" +msgstr "ventana de cristal doble reforzada" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -284189,10 +291004,10 @@ msgstr "" "mayor seguridad, la capa exterior es de vidrio reforzado." #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" -msgstr "Ventana de cristal doble reforzado abierta" +msgid "open reinforced double glazed glass window" +msgstr "ventana de cristal doble reforzada abierta" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -284202,21 +291017,21 @@ msgstr "" "insertada en un marco de ventana." #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" -msgstr "Ventana de cristal doble reforzado con una cortina" +msgid "reinforced double glazed glass window with a curtain" +msgstr "ventana de cristal doble con una cortina reforzada" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" -msgstr "Ventana de Cristal Triplicado Reforzado" +msgid "triple glazed glass window" +msgstr "ventana de cristal triple " -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" "Tres láminas gigantes de vidrio insertadas en el marco de una ventana." -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" @@ -284224,11 +291039,11 @@ msgstr "" "de una ventana." #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" -msgstr "Ventana de cristal triple con cortina" +msgid "triple glazed glass window with a curtain" +msgstr "ventana de cristal triple con una cortina" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " @@ -284237,10 +291052,8 @@ msgstr "" "Una ventana de triple cristal con cortinas de lujo en el interior que se " "cierra para bloquear la visibilidad y bloquear cualquier luz." -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -284250,14 +291063,10 @@ msgstr "" "pueden cerrarse para bloquear la visibilidad y evitar que entre la luz." #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "Ventana de cristal triple con cortina" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" -msgstr "Ventana de cristal de panel triple reforzado" +msgid "reinforced triple glazed glass window" +msgstr "ventana de cristal triple reforzada" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " @@ -284266,7 +291075,7 @@ msgstr "" "Tres hojas de cristal insertadas, así como una hoja de cristal reforzado " "insertada en un marco de ventana." -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -284276,37 +291085,29 @@ msgstr "" "reforzado insertado en un marco de ventana." #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" -msgstr "Ventana de cristal triple reforzado con una cortina" +msgid "reinforced triple glazed glass window with a curtain" +msgstr "ventana de cristal triple con una cortina reforzada" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" -msgstr "Ventana de cristal de panel triple reforzado con una cortina" +msgid "quadruple glazed glass window" +msgstr "ventana de cristal cuadruple" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "Ventana de cristal de panel triple reforzado con una cortina" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "Ventana de cristal cuadruple" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" "Cuatro hojas gigantes de cristal insertadas en el marco de una ventana." -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "Una ventana cuádruple de cristal abierta." #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" -msgstr "Ventana de cristal cuádruple con cortina" +msgid "quadruple glazed glass window with a curtain" +msgstr "ventana de cristal cuádruple con una cortina" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " @@ -284315,8 +291116,7 @@ msgstr "" "Una ventana de cristal cuádruple con cortinas de lujo en el interior que se " "cierra para bloquear la visibilidad y evitar que entre la luz." -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -284326,14 +291126,10 @@ msgstr "" "cierra para bloquear la visibilidad y evitar que entre la luz." #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "Ventana de cristal cuádruple con una cortina" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" -msgstr "Ventana de cristal cuádruple reforzado" +msgid "reinforced quadruple glazed glass window" +msgstr "ventana de cristal cuádruple reforzada" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -284355,12 +291151,7 @@ msgstr "" "Una ventana cuádruple reforzada con cortinas de lujo en el interior que se " "cierra para bloquear la visibilidad y evitar la luz." -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "Ventana de cristal cuádruple reforzada con una cortina" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -284370,14 +291161,10 @@ msgstr "" "cierra para bloquear la visibilidad y evitar que entre la luz." #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "Ventana de cristal cuádruple reforzada con una cortina" +msgid "plastic window" +msgstr "ventana de plástico" -#: lang/json/terrain_from_json.py -msgid "Plastic window" -msgstr "Ventana de plástico" - -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " @@ -284386,7 +291173,7 @@ msgstr "" "Una ventana improvisada compuesta por una lámina de plástico rígido y " "translúcido fijada en un marco de madera. Servirá en caso de un apuro." -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -284396,10 +291183,10 @@ msgstr "" " y translúcido sujeto a un marco de madera. Servirá en caso de apuro." #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" -msgstr "Ventana de plástico con cortina" +msgid "plastic window with a curtain" +msgstr "ventana de plástico con una cortina" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -284410,7 +291197,7 @@ msgstr "" "rígido y translúcido sujeto a un marco de madera. Hay sábanas dibujadas a " "través de ella para bloquear la luz. Servirá en caso de apuro." -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -284423,10 +291210,10 @@ msgstr "" "apuro." #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" -msgstr "Ventana de plástico con cortinas abiertas" +msgid "plastic window with open curtains" +msgstr "ventana de plástico con cortinas abiertas" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -284438,10 +291225,10 @@ msgstr "" " para bloquear la luz según sea necesario. Servirá en caso de apuro." #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" -msgstr "Ventana de plástico reforzado" +msgid "reinforced plastic window" +msgstr "ventana de plástico reforzada" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " @@ -284450,11 +291237,7 @@ msgstr "" "Una ventana improvisada compuesta por tres láminas de plástico rígido y " "translúcido fijada en un marco de madera. Servirá en caso de un apuro." -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "Ventana de plástico reforzado" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -284465,10 +291248,10 @@ msgstr "" "apuro." #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" -msgstr "Ventana de plástico reforzado con una cortina" +msgid "reinforced plastic window with a curtain" +msgstr "ventana de plástico con una cortina reforzada" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -284480,10 +291263,10 @@ msgstr "" "dibujadas a través de ella para bloquear la luz. Servirá en caso de apuro." #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" -msgstr "Ventana de plástico reforzado con una cortina abierta" +msgid "reinforced plastic window with an open curtain" +msgstr "ventana de plástico con una cortina abierta reforzada" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -284495,7 +291278,7 @@ msgstr "" "atadas alrededor para bloquear la luz según sea necesario. Servirá en caso " "de apuro." -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -284508,28 +291291,28 @@ msgstr "" "de apuro." #: lang/json/terrain_from_json.py -msgid "Skylight frame" -msgstr "Marco de tragaluz" +msgid "skylight frame" +msgstr "marco de tragaluz" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "Un marco de madera de un tragaluz." #: lang/json/terrain_from_json.py -msgid "Tempered glass window" -msgstr "Ventana de cristal templado" +msgid "tempered glass window" +msgstr "ventana de cristal templado" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" "Una hoja gigante de cristal templado insertada en el marco de una ventana." #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" -msgstr "Ventana de cristal templado abierta" +msgid "open tempered glass window" +msgstr "ventana de cristal templado abierta" #: lang/json/terrain_from_json.py msgid "tempered glass window with a curtain" @@ -284544,11 +291327,7 @@ msgstr "" "Una ventana templada con cortinas extravagantes en el interior que se " "cierran para bloquear la visibilidad y evitar que entre la luz." -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "Ventana de cristal templado con cortina" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -284876,7 +291655,7 @@ msgstr "Una losa relativamente plana de hormigón celular no reforzado." #: lang/json/terrain_from_json.py msgid "clearcrete wall" -msgstr "pared de clarocreto" +msgstr "muro de clarocreto" #. ~ Description for clearcrete wall #: lang/json/terrain_from_json.py @@ -285097,20 +291876,20 @@ msgstr "muro de basalto" #. ~ Description for basalt wall #: lang/json/terrain_from_json.py msgid "A sturdy basalt wall." -msgstr "Una robusta pared de basalto." +msgstr "Un robusto muro de basalto." #: lang/json/terrain_from_json.py msgid "glacial ice wall" -msgstr "pared de hielo glacial" +msgstr "muro de hielo glacial" #. ~ Description for glacial ice wall #: lang/json/terrain_from_json.py msgid "A solid wall of glacial ice." -msgstr "Una sólida pared de hielo glacial." +msgstr "Una sólida muro de hielo glacial." #: lang/json/terrain_from_json.py msgid "snow wall" -msgstr "pared de nieve" +msgstr "muro de nieve" #. ~ Description for snow wall #: lang/json/terrain_from_json.py @@ -285315,7 +292094,7 @@ msgstr "escotilla de nave espacial abierta" #: lang/json/terrain_from_json.py msgid "stick wall" -msgstr "pared de palos" +msgstr "muro de palos" #. ~ Description for stick wall #: lang/json/terrain_from_json.py @@ -285326,7 +292105,7 @@ msgid "" msgstr "" "Una mezcla barata de tablones y palos con un pilar de madera que lo mantiene" " unido. Es capaz de soportar un nivel superior o un techo. La suciedad y las" -" piedras hacen que la pared sea segura. Algo inflamable." +" piedras hacen que el muro sea seguro. Algo inflamable." #: lang/json/terrain_from_json.py msgid "krick!" @@ -285378,7 +292157,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "webbing wall" -msgstr "pared de tela de araña" +msgstr "muro de tela de araña" #. ~ Description for webbing wall #: lang/json/terrain_from_json.py @@ -285386,8 +292165,8 @@ msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" -"Esta pared parece estar hecha de una combinación de telas de araña, astillas" -" de madera, detritus y algún tipo de resina de color oscuro." +"Este muro parece estar hecho de una combinación de telas de araña, astillas " +"de madera, detritus y algún tipo de resina de color oscuro." #: lang/json/terrain_from_json.py msgid "barren dirt" @@ -285404,7 +292183,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "glassteel vault wall" -msgstr "pared de la bóveda de cristal de acero" +msgstr "muro de la bóveda de cristal de acero" #. ~ Description for glassteel vault wall #: lang/json/terrain_from_json.py @@ -285436,7 +292215,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "magically reinforced concrete wall" -msgstr "pared de hormigón reforzado mágicamente" +msgstr "muro de hormigón reforzado mágicamente" #. ~ Description for magically reinforced concrete wall #: lang/json/terrain_from_json.py @@ -285517,7 +292296,7 @@ msgstr "Un estante de libros inusual" #: lang/json/terrain_from_json.py msgid "open sliding wall" -msgstr "abrir una pared corrediza" +msgstr "abrir muro corredizo" #: lang/json/terrain_from_json.py msgid "unusual statue" @@ -285579,10 +292358,9 @@ msgid "" "and drywalled. Paint job is the all too common and neutral off-white or " "cream color, it could use more vibrant paint." msgstr "" -"El estereotipo de pared con estructura de soporte de madera rellena de " -"aislamiento y con paredes en seco. El trabajo de pintura es el demasiado " -"común y neutro color blanco roto o crema, podría usar una pintura más " -"vibrante." +"El típico muro con estructura de soporte de madera rellena de aislamiento y " +"con muros en seco. El trabajo de pintura es el demasiado común y neutro " +"color blanco roto o crema, podría usar una pintura más vibrante." #: lang/json/terrain_from_json.py msgid "singing sand" @@ -285765,7 +292543,7 @@ msgstr "Apalancar" #: lang/json/tool_quality_from_json.py msgid "nail prying" -msgstr "" +msgstr "levantando clavos" #: lang/json/tool_quality_from_json.py msgid "punch" @@ -287004,8 +293782,8 @@ msgid "" "A metal wall. Keeps zombies outside the vehicle and prevents people from " "seeing through it." msgstr "" -"Una pared de metal. Mantiene a los zombis fuera del vehículo e impide que la" -" gente vea a través de él." +"Un muro de metal. Mantiene a los zombis fuera del vehículo e impide que la " +"gente vea a través de él." #: lang/json/vehicle_part_from_json.py msgid "quarterpanel" @@ -287017,8 +293795,8 @@ msgid "" "A half-height metal wall. Keeps zombies outside the vehicle but allows " "people to see over it." msgstr "" -"Una pared de metal de media altura. Mantiene a los zombis fuera del vehículo" -" pero permite a la gente ver por encima." +"Un muro de metal de media altura. Mantiene a los zombis fuera del vehículo " +"pero permite a la gente ver por encima." #: lang/json/vehicle_part_from_json.py msgid "cloth board" @@ -287030,8 +293808,8 @@ msgid "" "A cloth wall. Keeps zombies outside the vehicle and prevents people from " "seeing through it." msgstr "" -"Es una pared de tela. Mantiene a los zombis afuera del vehículo y evita que " -"la gente vea a través de ella." +"Un muro de tela. Mantiene a los zombis afuera del vehículo y evita que la " +"gente vea a través de ella." #: lang/json/vehicle_part_from_json.py msgid "cloth quarterpanel" @@ -287043,7 +293821,7 @@ msgid "" "A half-height cloth wall. Keeps zombies outside the vehicle but allows " "people to see over it." msgstr "" -"Una pared de tela de media altura. Mantiene a los zombis fuera del vehículo " +"Un muro de tela de media altura. Mantiene a los zombis fuera del vehículo " "pero permite a la gente ver por encima." #: lang/json/vehicle_part_from_json.py @@ -287056,7 +293834,7 @@ msgid "" "A metal wall with a storage locker. Keeps zombies outside the vehicle and " "prevents people from seeing through it." msgstr "" -"Una pared de metal con un armario de almacenamiento. Mantiene a los zombis " +"Un muro de metal con un armario de almacenamiento. Mantiene a los zombis " "fuera del vehículo y evita que la gente vea a través de él." #: lang/json/vehicle_part_from_json.py @@ -287069,8 +293847,8 @@ msgid "" "A strong metal wall. Keeps zombies outside the vehicle and prevents people " "from seeing through it." msgstr "" -"Es una pared fuerte de metal. Mantiene a los zombis fuera del vehículo y " -"evita que la gente vea a través de ella." +"Un muro fuerte de metal. Mantiene a los zombis fuera del vehículo y evita " +"que la gente vea a través de ella." #: lang/json/vehicle_part_from_json.py msgid "heavy duty board" @@ -287086,8 +293864,8 @@ msgid "" "A half-height strong metal wall. Keeps zombies outside the vehicle but " "allows people to see over it." msgstr "" -"Es media pared fuerte de metal. Mantiene a los zombis afuera del vehículo " -"pero permite que la gente vea por sobre ella." +"Un muro fuerte de metal. Mantiene a los zombis afuera del vehículo pero " +"permite que la gente vea por sobre ella." #: lang/json/vehicle_part_from_json.py msgid "wooden board" @@ -287099,8 +293877,8 @@ msgid "" "A wooden wall. Keeps zombies outside the vehicle and prevents people from " "seeing through it." msgstr "" -"Es una pared de madera. Mantiene a los zombis afuera del vehículo y evita " -"que la gente vea a través de ella." +"Un muro de madera. Mantiene a los zombis afuera del vehículo y evita que la " +"gente vea a través de ella." #: lang/json/vehicle_part_from_json.py msgid "wooden quarterpanel" @@ -287112,8 +293890,8 @@ msgid "" "A half-height wooden wall. Keeps zombies outside the vehicle but allows " "people to see over it." msgstr "" -"Una pared de madera de media altura. Mantiene a los zombis fuera del " -"vehículo pero permite a la gente ver por encima." +"Un muro de madera de media altura. Mantiene a los zombis fuera del vehículo " +"pero permite a la gente ver por encima." #: lang/json/vehicle_part_from_json.py msgid "extra light quarterpanel" @@ -287125,8 +293903,8 @@ msgid "" "A half-height thin metal wall. Keeps zombies outside the vehicle but allows" " people to see over it." msgstr "" -"Una pared de metal de media altura. Mantiene a los zombis fuera del vehículo" -" pero permite a la gente ver por encima." +"Un muro de metal de media altura. Mantiene a los zombis fuera del vehículo " +"pero permite a la gente ver por encima." #: lang/json/vehicle_part_from_json.py msgid "storage bag" @@ -287232,6 +294010,99 @@ msgstr "" "lámparas, aunque con algo menos de eficacia. La relación potencia-peso es " "mejor que la de un motor tradicional, pero consume más combustible." +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" +"Un motor diesel de 6 cilindros en línea. Algo más potente que un V6, podrías" +" encontrar un motor como este en una apisonadora o una excavadora." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" +"Un potente motor diésel de 6 cilindros, típico de un autobús, un vehículo " +"recreativo, una furgoneta grande o un vehículo blindado de transporte de " +"personal." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" +"Un gran motor diésel de 8 cilindros, suficientemente potente para un " +"semirremolque, un coche blindado o un Humvee." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" +"Un pequeño motor de gasolina de 1 cilindro que ofrece unos 10 caballos de " +"potencia, suficiente para un scooter o una bicicleta motorizada." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" +"Un potente motor de gasolina de 1 cilindro de unos 55 caballos, que " +"normalmente se encuentra en una moto de cross o de tierra." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" +"Un pequeño motor de gasolina de 1 cilindro con pocos caballos de potencia, " +"adecuado para un cortacésped de empuje." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" +"Un motor de gasolina de cuatro cilindros, que se encuentra habitualmente en " +"pequeños turismos y camiones ligeros." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" +"Un enorme motor de gasolina de 12 cilindros, con el tipo de potencia que " +"podría necesitar un coche deportivo." + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" +"Un enorme motor diesel de 12 cilindros, típico de un camión de carga pesado." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" +"Un potente motor de gasolina de 6 cilindros lo suficientemente fuerte para " +"una camioneta, un SUV o una furgoneta de tamaño completo." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" +"Un motor de gasolina de 8 cilindros para trabajos pesados, como el que " +"podrías encontrar en un camión de bomberos, una ambulancia o una grúa." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" +"Un motor de gasolina de 2 cilindros apropiado para una motocicleta o un " +"quad." + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " @@ -287240,6 +294111,30 @@ msgstr "" "Un motor de vapor de combustión externa, con ciclo cerrado. Quema carbón o " "carbón vegetal de la carbonera del vehículo para producir vapor." +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" +"Un pequeño pero potente motor de turbina de gas, adecuado para propulsar un " +"pequeño helicóptero de una o dos plazas." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" +"Un motor de turbina de gas de gran potencia, como los que suelen tener los " +"helicópteros Medevac, Apache o Blackhawk." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" +"Un enorme motor de turbina de gas, utilizado para elevar grandes " +"helicópteros militares como el V-22 Osprey." + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py @@ -287248,6 +294143,30 @@ msgstr "" "Una puerta. Tiene una ventana para que puedas ver por ella, incluso cuando " "está cerrada." +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "puerta de solapa de tela" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" +"Una lámina de tela que puede fijarse en una posición cerrada para que actúe " +"como puerta." + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "puerta de cortina de tela" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" +"Una lámina de tela que puede deslizarse en posición cerrada para actuar como" +" puerta." + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "puerta opaca" @@ -287714,6 +294633,76 @@ msgstr "" msgid "An electric motor." msgstr "Un motor eléctrico." +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" +"Un motor eléctrico demasiado pequeño para la mayoría de los vehículos, pero " +"justo para impulsar una bicicleta." + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" +"Un motor eléctrico ligero, lo suficientemente potente para una bicicleta o " +"un scooter eléctrico, pero probablemente no sea práctico para vehículos más " +"pesados." + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" +"Un motor eléctrico de potencia media, adecuado para impulsar vehículos " +"ultraligeros, o como parte de un tren de transmisión híbrido gas-eléctrico." + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" +"Un motor eléctrico de gran potencia, capaz de propulsar un coche o un " +"todoterreno de tamaño normal sólo con energía eléctrica, siempre que se " +"disponga de la capacidad de la batería." + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" +"Un potente motor eléctrico de alto rendimiento, como el que se encuentra en " +"esos coches deportivos eléctricos de consumo con opciones de aceleración " +"ridículas, lúdicas o igualmente hiperbólicas. Necesita mucha energía de la " +"batería." + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" +"Un motor eléctrico masivo y extremadamente potente, que ofrece un alto par " +"motor a costa de una importante pérdida de potencia, sería muy adecuado para" +" un coche de carreras eléctrico." + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" +"Un enorme y pesado motor de tracción eléctrica, lo suficientemente potente " +"como para tirar de un tren." + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -288052,7 +295041,7 @@ msgstr "Rifle Automático Browning montado" #: lang/json/vehicle_part_from_json.py msgid "mounted M231 PFW" -msgstr "" +msgstr "M231 PFW montada" #: lang/json/vehicle_part_from_json.py msgid "mounted M240" @@ -288273,6 +295262,15 @@ msgstr "Un espacio latera" msgid "wooden aisle" msgstr "espacio lateral de madera" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "pasillo de madera plegable" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "Un pasillo plegable." + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -288432,6 +295430,10 @@ msgstr "caja plegable de madera" msgid "wood table" msgstr "mesa de madera" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "mesa plana para empaquetable" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "casco de madera de bote" @@ -288504,6 +295506,10 @@ msgstr "Es una estructura que contiene controles y luces." msgid "vehicle-mounted heater" msgstr "calentador montado en un vehículo" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "calentador montado en un vehículo pequeño" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "refrigerador montado en un vehículo" @@ -288627,6 +295633,14 @@ msgstr "" "Un gran aerogenerador con soportes estabilizadores. Causará un arrastre " "extra en el vehículo." +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" +"Una pequeña matriz de paneles solares diseñados para poder plegarse unos a " +"otros." + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -289974,8 +296988,8 @@ msgstr "Cansancio" msgid "Fatig" msgstr "Fatig" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "Cansancio" @@ -290354,7 +297368,7 @@ msgstr "%s incrementa tu conocimiento en %s." #: src/activity_actor.cpp #, c-format msgid "You learn a little about %s! (%d%%)" -msgstr "¡Aprendes un poco sobre %s! (%d %%)" +msgstr "¡Aprendes sobre %s! (%d %%)" #: src/activity_actor.cpp #, c-format @@ -290933,7 +297947,7 @@ msgstr "Jugando con tu %s te ha levantado el animo un poco." #: src/activity_actor.cpp #, c-format msgid "You can't use your %1$s to pry up the nails." -msgstr "" +msgstr "No puedes usar tu %1$s para levantar los clavos." #: src/activity_actor.cpp msgid "You open up your kit and shave." @@ -291337,7 +298351,7 @@ msgstr "" #: src/activity_handlers.cpp #, c-format msgid "You learn a little about the spell: %s" -msgstr "Aprendes un poco sobre el hechizo: %s" +msgstr "Aprendes sobre el hechizo: %s" #: src/activity_handlers.cpp src/character_martial_arts.cpp #, c-format @@ -292826,6 +299840,18 @@ msgstr "Propiedades" msgid "Coverage:" msgstr "Cobertura:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "Cubierto (Cuerpo a Cuerpo):" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "Cubierto (A Distancia):" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "Cubierto (Vitales):" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "Incomodidad:" @@ -292917,11 +299943,13 @@ msgstr "Ordenar Ropa" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" -"Pulsa [%s] para la ayuda. Pulsa " -"[%s] para cambiar el uso de teclas." +"[%s] Ocultar imagen. [%s] " +"Cambiar lugar. Pulsar [%s] para ayuda. Pulsa " +"[%s] para cambiar atajos de teclado. " #: src/armor_layers.cpp msgid "(Innermost)" @@ -292932,6 +299960,12 @@ msgstr "(Más interior)" msgid "Storage (%s)" msgstr "Almacenamiento (%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "O" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(Más exterior)" @@ -293735,7 +300769,7 @@ msgstr "Este es un lugar cómodo para dormir." #: src/avatar.cpp #, c-format msgid "It's a little hard to get to sleep on this %s." -msgstr "Es un poco difícil dormir en este/a %s." +msgstr "Es un poco difícil dormir en %s." #: src/avatar.cpp #, c-format @@ -295760,7 +302794,7 @@ msgstr " no puede usar nada mientras es incorpóreo." #: src/character.cpp #, c-format msgid "You need at least %1$s to use this %2$s." -msgstr "Necesitas al menos %1$s para usar este/a %2$s." +msgstr "Necesitas al menos %1$s para usar %2$s." #: src/character.cpp #, c-format @@ -296445,7 +303479,7 @@ msgstr "Te abrazas a tu %s para mantener la temperatura." #: src/character.cpp #, c-format msgid "You use your %s to keep warm." -msgstr "Usas %s para mantener la temperatura." +msgstr "Usas %s para mantener la temperatura." #: src/character.cpp msgctxt "memorial_male" @@ -297310,11 +304344,6 @@ msgstr "No esperás ningún efecto usando esto." msgid "No limb would benefit from it." msgstr "Ningúna extremidad se beneficiaría de ello." -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "Cancelar" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "Te cuesta estar parado." @@ -297633,6 +304662,14 @@ msgstr "Terreno de Mina" msgid "Designate an area to mine." msgstr "Designar un a minar." +#: src/clzones.cpp +msgid "Mop tile" +msgstr "Tesela fregada" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "Designa un área para pasar la fregona." + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "Zona de Desmontaje de Vehículos" @@ -297660,7 +304697,7 @@ msgstr "Los vehículos con piloto automático patrullarán en esta zona." #: src/clzones.cpp msgid "Basecamp: Storage" -msgstr "Campo base: Almacenamiento" +msgstr "Almacenamiento: Campo Base" #: src/clzones.cpp msgid "" @@ -297672,7 +304709,7 @@ msgstr "" #: src/clzones.cpp msgid "Basecamp: Food" -msgstr "Campo base: Alimentos" +msgstr "Comida: Campo Base" #: src/clzones.cpp msgid "" @@ -298936,7 +305973,7 @@ msgstr "" #: src/consumption.cpp #, c-format msgid "Ick, this %s doesn't taste so good…" -msgstr "Agh, este/a %s no sabe tan bien..." +msgstr "Agh, %s no sabe tan bien..." #: src/consumption.cpp #, c-format @@ -299956,10 +306993,6 @@ msgstr "habilidad primaria usada para fabricar" msgid "any skill used to craft" msgstr "cualquier habilidad usada para fabricar" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "cocinar" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "calidad necesaria para fabricar" @@ -300519,6 +307552,14 @@ msgstr "Imprimir datos de magia PNJ en la consola" msgid "Test weather" msgstr "Probar clima" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "Escribir effect_on_condition(s) globales en eocs.output" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "Escribir variables globales a var_list.output" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "Probar lista de mapas extra" @@ -300950,6 +307991,11 @@ msgstr "Sed: %d %s" msgid "Fatigue: %d %s" msgstr "Fatiga: %d %s" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "Cansancio: %d %s" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "kCal almacenadas:" @@ -301038,6 +308084,11 @@ msgstr "¿Poner la fatiga a? Actualmente: %d" msgid "Set sleep deprivation to? Currently: %d" msgstr "¿Poner la privación del sueño a...? Actualmente: %d" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "¿Reiniciar cansancio? Actualmente: %d" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -301801,7 +308852,7 @@ msgstr "¿Daños propios por cuánto? ps: %s" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "Añade la duración de la hemorragia en minutos, igual a la intensidad:" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "Este binario no está compilado con soporte para teselas." @@ -301825,16 +308876,6 @@ msgstr "" "¿Salir sin guardar? ¡Esto puede causar problemas como objetos y vehículos " "duplicados o perdidos!" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "Se guardó correctamente tu captura de pantalla en: %s" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" -"Ha ocurrido un error mientras se intentaba guardar la captura de pantalla." - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "Reporte escrito en debug.log" @@ -302016,7 +309057,7 @@ msgstr "¡%s está peligrosamente cerca!" #: src/do_turn.cpp msgid "Wait till you wake up…" -msgstr "Esperar hasta despertarse..." +msgstr "Esperando hasta despertarte..." #: src/do_turn.cpp #, c-format @@ -303260,7 +310301,7 @@ msgstr "Cortar Leños" #: src/faction_camp.cpp msgid "Cutting logs in the woods…\n" msgstr "" -"Cortar leños en el bosque...\n" +"Cortando leños en el bosque...\n" "\n" #: src/faction_camp.cpp @@ -305517,6 +312558,10 @@ msgstr "Comerciar" msgid "You swap places with %s." msgstr "Intercambias el lugar con %s." +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "No puede cambiar de sitio mientras coges algo." + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -305808,6 +312853,16 @@ msgstr "No puedes viajar hasta ahí." msgid "Nickname:" msgstr "Alias:" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "Se guardó correctamente tu captura de pantalla en: %s" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" +"Ha ocurrido un error mientras se intentaba guardar la captura de pantalla." + #: src/game.cpp src/init.cpp msgid "Items" msgstr "Objetos" @@ -306593,8 +313648,7 @@ msgstr "No puedes subir aquí, hay un techo sobre tu cabeza." msgid "" "You can't climb here - you need walls and/or furniture to brace against." msgstr "" -"No puedes escalar aquí, necesitas paredes y/o muebles contra los que " -"apoyarte." +"No puedes escalar aquí, necesitas muros y/o muebles contra los que apoyarte." #: src/game.cpp msgid "" @@ -306792,7 +313846,7 @@ msgstr "Es imposible escalar en tu estado actual." #: src/game_inventory.cpp msgid "You don't have the necessary item at hand." -msgstr "No tienes el elemento necesario a mano." +msgstr "No tienes el objeto necesario a mano." #: src/game_inventory.cpp #, c-format @@ -308215,10 +315269,6 @@ msgstr "No puedes dormir mientras estés montado." msgid "Are you sure you want to sleep?" msgstr "¿Estás seguro de que quieres dormir?" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "Sí." - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "Sí, y guardar el juego antes de dormir." @@ -308329,8 +315379,8 @@ msgstr "Cortar tablas" #: src/handle_action.cpp msgid "Auto-chop logs in wood loot zones into planks - auto-fetch tools." msgstr "" -"Auto-cortar leños en zonas de recogida de madera en tablones - autobúsqueda " -"de herramientas." +"Auto-cortar leños de madera en tablones en zonas de botín - autobúsqueda de" +" herramientas." #: src/handle_action.cpp msgid "Deconstruct vehicle" @@ -308376,6 +315426,14 @@ msgstr "" "Autodesmontar cualquier cosa en la zona de desmontaje - Autobúsqueda de " "herramientas." +#: src/handle_action.cpp +msgid "Mop area" +msgstr "Area Fregada" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "Limpia con la fregona el área." + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -308742,10 +315800,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "¿Qué hacer con %s?" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "Combustible biónico con ello" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "Consumir" @@ -309288,16 +316342,6 @@ msgstr "Intentas abrir la cerradura de %1$s usando tu %2$s..." msgid "This bulletin board is not inside a camp" msgstr "Este tablero de avisos no está dentro de un campamento" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" -"Esta pared es perfectamente vertical. Lo raro, tiene agujeros retorcidos,\n" -"tan profundos en la piedra sólida hasta donde puedes ver. Los agujeros\n" -"tienen forma humanoide, pero con miembros largos, retorcidos y hinchados." - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "¿Quitar tu ojo petrificado del pedestal?" @@ -311951,7 +318995,7 @@ msgstr "movimiento del ratón" #: src/inventory.cpp #, c-format msgid "Your %s is damaged by rust." -msgstr "Tu %sestá dañado por el óxido." +msgstr "Tu %s está dañado por el óxido." #. ~ %1$d: chosen count, %2$d: available count #: src/inventory_ui.cpp @@ -312806,6 +319850,21 @@ msgstr "Llena:" msgid "%s:" msgstr "%s:" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "(CaC):" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "(AD):" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "(V):" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "Torso:" @@ -314291,7 +321350,7 @@ msgstr "¡Necesitas un SEU para usar %s!" #: src/item.cpp #, c-format msgid "The %s ran out of energy!" -msgstr "¡El/a %s se quedó sin energía!" +msgstr "¡%s se quedó sin energía!" #: src/item.cpp #, c-format @@ -315557,7 +322616,7 @@ msgstr "No puedes hacer palanca a eso." #: src/iuse.cpp #, c-format msgid "You can't get sufficient leverage to open that with your %1$s." -msgstr "" +msgstr "No obtienes suficiente palanca para abrir eso con tu %1$s." #: src/iuse.cpp msgid "Till soil where?" @@ -315976,13 +323035,15 @@ msgid "BEES!" msgstr "¡ABEJAS!" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "Poner el temporizador en (0 para cancelar)" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "¿Establecer temporizador en cuantos segundos (0 para cancelar)?" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "Pusiste el temporizador en %d." +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "Pones el temporizador a %d segundo." +msgstr[1] "Pones el temporizador a %d segundos." #: src/iuse.cpp msgid "Tick!" @@ -316525,7 +323586,7 @@ msgstr "¿Dónde quieres pasar la fregona?" #: src/iuse.cpp msgid "There is nothing to mop nearby." -msgstr "No hay nada para fregar cerca." +msgstr "No hay nada a lo que pasar la fregona cerca." #: src/iuse.cpp msgid "You mop yourself up." @@ -316537,7 +323598,7 @@ msgstr "El universo implosiona y se reforma alrededor tuyo." #: src/iuse.cpp msgid "There's nothing to mop there." -msgstr "Ahí no hay nada para limpiar con la fregona." +msgstr "Ahí no hay nada que limpiar con la fregona." #: src/iuse.cpp msgid "You move the mop around, unsure whether it's doing any good." @@ -316546,7 +323607,7 @@ msgstr "" #: src/iuse.cpp msgid "You mop up the spill." -msgstr "Limpias el derrame con la fregona." +msgstr "Limpias lo derramado con la fregona." #: src/iuse.cpp msgid "Spray what?" @@ -316744,9 +323805,8 @@ msgid "Your vision is fine already." msgstr "Tu visión ya es correcta." #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" -msgstr "Oyes \"%s\"" +msgid "You press a button on the doll to make it talk." +msgstr "Pulsas un botón en el muñeco para hacerlo hablar." #: src/iuse.cpp msgid "You need a mechanics skill of 2 to use this repair kit." @@ -316969,38 +324029,6 @@ msgstr "Desencriptar tarjeta de memoria (poca habilidad)" msgid "Wasted time. These pictures do not provoke your senses." msgstr "Tiempo perdido. estas imagenes no provocan tus sentidos." -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "Tenías un perro parecido a este..." - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "¡Ja ja! Una foto divertida de un gato." - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "Excelentes imágenes de la naturaleza." - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "Fotos de comida... ¡tu estómago te ruge!" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "Algunas fotos muy interesantes de viajes." - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "Fotos del concierto de una banda conocida." - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "Fotos de la lujosa casa de alguien." - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "Sientes nostalgia mientras te quedás mirando la foto." - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -318279,88 +325307,31 @@ msgstr "¡Cruz!" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "¿Jugar a un juego con el %s?" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "Empiezas a jugar." - -#: src/iuse.cpp -msgid "It is certain." -msgstr "Es cierto." - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "Decididamente, es así." - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "Sin lugar a dudas." +msgid "Play the %s with your friends?" +msgstr "¿Jugar %s con tus amigos?" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "Sí - definitivamente." - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "Podías confiar en eso." - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "Como yo lo veo, sí." - -#: src/iuse.cpp -msgid "Most likely." -msgstr "Lo más probable." - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "Buena perspectiva." - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "Las señales dicen que sí." - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "La respuesta es difusa, prueba otra vez." - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "Preguntá otra vez después." - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "Mejor no te lo digo ahora." - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "No se puede predecir ahora." - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "Concentrate y preguntá otra vez." - -#: src/iuse.cpp -msgid "Don't count on it." -msgstr "No cuentes con ello." +#, c-format +msgid "Play the %s with your friend?" +msgstr "¿Jugar %s con tu amigo?" #: src/iuse.cpp -msgid "My reply is no." -msgstr "Mi respuesta es no." +#, c-format +msgid "You and your %d friends start playing." +msgstr "Tu y tus %d amigos empezais a jugar." #: src/iuse.cpp -msgid "My sources say no." -msgstr "Mis fuentes dicen que no." +msgid "You and your friend start playing." +msgstr "Tu y tu amigo empezais a jugar." #: src/iuse.cpp -msgid "Outlook not so good." -msgstr "Las perspectivas no son tan buenas." +msgid "You start playing." +msgstr "Empiezas a jugar." #: src/iuse.cpp -msgid "Very doubtful." -msgstr "Muy dudoso." +#, c-format +msgid "Play a game with the %s?" +msgstr "¿Jugar a un juego con el %s?" #: src/iuse.cpp #, c-format @@ -320245,7 +327216,7 @@ msgstr "requiere movilidad" #: src/magic.cpp msgid "can be cast through walls" -msgstr "no se puede lanzar a través de paredes" +msgstr "puedes ser lanzado a traves de muros" #: src/magic.cpp msgid "Spell Level" @@ -321252,8 +328223,20 @@ msgid "%s: %d" msgstr "%s: %d" #: src/martialarts.cpp -msgid "Requires: " -msgstr "Requiere: " +msgid "Requires (all): " +msgstr "Requiere (todo): " + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "Requiere (cualquier): " + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "Prohibido (todo): " + +#: src/martialarts.cpp +msgid "Forbidden (any): " +msgstr "Prohibido (cualquier): " #: src/martialarts.cpp msgid "activate" @@ -321731,7 +328714,7 @@ msgstr "No puedes acertarle a nada confiablemente debido a tu hipermetropía." #: src/melee.cpp msgid "You struggle to hit reliably while on the ground." -msgstr "" +msgstr "Te cuesta acertar a golpear mientras estás en el suelo." #: src/melee.cpp msgid "Your broken legs cannot hold you and you fall down." @@ -324041,8 +331024,8 @@ msgstr "" #, c-format msgid "While %s was framing a building one of the walls began to collapse…" msgstr "" -"Mientras %s estaba haciendo la estructura de un edificio, una de las paredes" -" colapsó..." +"Mientras %s estaba haciendo la estructura de un edificio, uno de los muros " +"colapsó..." #: src/mission_companion.cpp #, c-format @@ -324745,7 +331728,7 @@ msgstr "pu-PUM." #: src/monattack.cpp msgid "The root walls creak around you." -msgstr "Las paredes de raíces rechinan a tu alrededor." +msgstr "Los muros de raíces rechinan a tu alrededor." #: src/monattack.cpp #, c-format @@ -324846,7 +331829,7 @@ msgstr "¡El %s crece y se hace adulto!" #: src/monattack.cpp msgid "You're shoved away as a fungal wall grows!" -msgstr "¡Te empujan mientras crece una pared de hongos!" +msgstr "¡Eres empujado mientras crece un muro de hongos!" #: src/monattack.cpp #, c-format @@ -326437,6 +333420,11 @@ msgstr "Quitar la tachuela de %s" msgid "Manage your friendship with %s" msgstr "Gestionar tu amistad con %s" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "Hablar con %s" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -327049,7 +334037,7 @@ msgstr "¡ %1$s golpea a algo!" #: src/monster.cpp #, c-format msgid "The %1$s hits %2$s!" -msgstr "¡%1$s golpea %2$s!" +msgstr "¡%1$s golpea %2$s!" #. ~ %s is bodypart name in accusative. #: src/monster.cpp @@ -327305,7 +334293,7 @@ msgstr "¡Empieza a tejer telarañas con tus hileras!" #: src/mutation.cpp msgid "You start leaving a trail of sludge as you go." -msgstr "" +msgstr "Empiezas a dejar un rastro de lodo a tu paso." #: src/mutation.cpp msgid "You focus, but are too hemmed in to birth a new slimespring!" @@ -327320,21 +334308,6 @@ msgstr "" "¡Te concentras, y con una agradable sensación de división, pares una nueva " "cría de légamo!" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "¡Vaya! ¡Te pareces a mí! ¡Deberíamos cuidarnos mutuamente!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "¡vamos, yo grande, vayamos!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "¡somos un equipo, hagámoslo!" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "Sólo puedes hacer eso en una zona boscosa." @@ -327609,11 +334582,20 @@ msgstr "Examinando" msgid "%s to activate mutation, " msgstr "%s para activar la mutación, " +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "Ocultado" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "%s para reasignar la invlet, " +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "%s para alternar la visibilidad de la imagen." + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -329113,7 +336095,7 @@ msgstr "bandido" #: src/npcmove.cpp msgid "maniac" -msgstr "maniaco" +msgstr "maníaco" #: src/npcmove.cpp msgid "" @@ -329146,7 +336128,7 @@ msgstr "%1$s trepa el %2$s." #: src/npcmove.cpp #, c-format msgid "Hold on, I want to pick up that %s." -msgstr "Espera, quiero coger ese/a %s." +msgstr "Espera, quiero coger %s." #: src/npcmove.cpp #, c-format @@ -329178,7 +336160,7 @@ msgstr "%1$s suelta %2$s." #: src/npcmove.cpp #, c-format msgid "Hold on, I want to pulp that %s." -msgstr "Espera, quiero destrozar ese/a %s." +msgstr "Espera, quiero destrozar %s." #: src/npcmove.cpp #, c-format @@ -329379,11 +336361,6 @@ msgstr "¡No puedes hablar sin tu cara!" msgid "What do you want to do?" msgstr "¿Qué quieres hacer?" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "Hablar con %s" - #: src/npctalk.cpp msgid "Talk to…" msgstr "Hablar con..." @@ -330186,8 +337163,19 @@ msgid "" "If true, enables automatic use of wielded pickaxes and jackhammers whenever " "trying to move into mineable terrain." msgstr "" -"Si está activado, automáticamente romperás terrenos o paredes cuando te " -"muevas hacia ahí con un pico o martillo neumático en la mano." +"Si está activado, automáticamente romperás terrenos o muros cuando te muevas" +" hacia ahí con un pico o martillo neumático en la mano." + +#: src/options.cpp +msgid "Auto mopping" +msgstr "Autofregado" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" +"Si activado, permite el uso automático de fregonas para limpiar el terreno " +"circundante." #: src/options.cpp msgid "Auto foraging" @@ -330196,17 +337184,23 @@ msgstr "Auto-forraje" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" -"Acción a realizar cuando se habilita 'Auto-forraje'. Arbustos: solo arbustos" -" forrajeros. - Árboles: solo árboles forrajeros. - Todo: arbustos " -"forrajeros, árboles y todo lo demás, incluidas flores, espadañas, etc." +"Acción a realizar cuando se activa el \"Auto forrajeo\". Arbustos: Sólo " +"forrajea arbustos. - Árboles: Sólo forrajea árboles. - Cultivos: Sólo " +"cultivos forrajeros. - Todo: Arbustos forrajeros, árboles, cultivos y todo " +"lo demás, incluyendo flores, espadañas, etc." #: src/options.cpp msgid "Bushes" msgstr "Arbustos" +#: src/options.cpp +msgid "Crops" +msgstr "Cultivos" + #: src/options.cpp msgid "Everything" msgstr "Todo" @@ -330421,7 +337415,7 @@ msgstr "" "fuentes de luz serán círculos, el movimiento en diagonal cubrirá más " "distancia y llevará más tiempo. Si desactivado, todo es un cuadrado: el " "movimiento hacia la esquina noroeste de un edificio lleva tanto tiempo como " -"moverse hacia la pared norte." +"moverse hacia el muro norte." #: src/options.cpp msgid "Drop empty containers" @@ -331973,7 +338967,7 @@ msgstr "" "Emulación de hordas de zombis. Los zombis pueden agruparse en hordas, que " "pueden deambular por las ciudades y, en ocasiones, avanzar hacia el ruido. " "Nota: la implementación actual no respeta correctamente los obstáculos, por " -"lo que las hordas pueden parecer que atraviesan las paredes en algunas " +"lo que las hordas pueden parecer que atraviesan los muros en algunas " "circunstancias. Debes reiniciar el directorio del mundo después de cambiarlo" " para que surta efecto." @@ -332890,20 +339884,6 @@ msgstr "Zona:" msgid "# Unexplored" msgstr "# Sin explorar" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "oter: %s" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "tipo_oter: %s" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "argumentos todavia no inicializados" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "Distancia a la misión activa:" @@ -333259,6 +340239,11 @@ msgstr "Anochecer" msgid "Night" msgstr "Noche" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s, día %d " + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "???" @@ -333307,6 +340292,10 @@ msgstr "¡Muy Frio!" msgid "Freezing!" msgstr "¡Congelado!" +#: src/panels.cpp +msgid "SAFE" +msgstr "SEG." + #: src/panels.cpp msgid "On" msgstr "On" @@ -333327,7 +340316,7 @@ msgstr "Fresco" #: src/panels.cpp msgctxt "weariness description" msgid "Light" -msgstr "Luz" +msgstr "Ligero" #: src/panels.cpp msgctxt "weariness description" @@ -333381,19 +340370,19 @@ msgstr "Extremo" #: src/panels.cpp msgid "Parched" -msgstr "Muerto de sed" +msgstr "Reseco" #: src/panels.cpp msgid "Dehydrated" -msgstr "Deshidratación" +msgstr "Deshidratado" #: src/panels.cpp msgid "Very thirsty" -msgstr "Mucha sed" +msgstr "Muy sediento" #: src/panels.cpp msgid "Thirsty" -msgstr "Sed" +msgstr "Sediento" #: src/panels.cpp msgid "Turgid" @@ -333401,11 +340390,11 @@ msgstr "Hinchado" #: src/panels.cpp msgid "Hydrated" -msgstr "Hidratación" +msgstr "Hidratado" #: src/panels.cpp msgid "Slaked" -msgstr "Sed calmada" +msgstr "Saciado" #: src/panels.cpp msgid "Satisfied" @@ -333413,11 +340402,11 @@ msgstr "Satisfecho" #: src/panels.cpp msgid "Hungry" -msgstr "Hambre" +msgstr "Hambriento" #: src/panels.cpp msgid "Very Hungry" -msgstr "Mucha Hambre" +msgstr "Muy Hambriento" #: src/panels.cpp msgid "Near starving" @@ -333441,7 +340430,7 @@ msgstr "OH MIERDA NOH" #: src/panels.cpp msgid "DAYUM" -msgstr "Guauu" +msgstr "Maldito" #: src/panels.cpp msgid "Fluffy" @@ -333461,7 +340450,7 @@ msgstr "Grande" #: src/panels.cpp msgid "Bean Pole" -msgstr "Judias largas" +msgstr "Judia Larga" #: src/panels.cpp msgid "Emaciated" @@ -333552,11 +340541,11 @@ msgstr "" #: src/panels.cpp src/talker_npc.cpp msgid "Exhausted" -msgstr "Exhausto" +msgstr "Agotado" #: src/panels.cpp msgid "Dead Tired" -msgstr "Cansadísimo" +msgstr "Muerto de Cansancio" #: src/panels.cpp msgid "Severe pain" @@ -333572,7 +340561,7 @@ msgstr "Insoportable" #: src/panels.cpp msgid "Distressing pain" -msgstr "Inquietante" +msgstr "Alarmante" #: src/panels.cpp msgid "Distracting pain" @@ -333700,7 +340689,7 @@ msgstr "Cielo :" #: src/panels.cpp msgid "Light:" -msgstr "Luz :" +msgstr "Ligera:" #: src/panels.cpp #, c-format @@ -333859,7 +340848,7 @@ msgstr "para abrir las opciones laterales" #: src/panels.cpp msgid "Weary Transition:" -msgstr "Transición:" +msgstr "Tran. Cansancio:" #: src/panels.cpp msgid "Transition:" @@ -333952,11 +340941,11 @@ msgstr "Movimiento" #: src/panels.cpp msgid "Location Alt" -msgstr "Lugar Alt" +msgstr "Alt Lugar" #: src/panels.cpp msgid "Needs Alt" -msgstr "Necesita Alt" +msgstr "Alt Necesidades" #: src/panels.cpp msgid "compact" @@ -335374,7 +342363,7 @@ msgstr "Tienes un dolor de cabeza terrible." #: src/projectile.cpp msgid "The foamcrete falls without a wall to anchor against." -msgstr "El foamcrete se cae sin una pared contra la que anclarse." +msgstr "El hormigón celular se cae sin un muro contra lo que anclarse." #: src/ranged.cpp #, c-format @@ -335794,6 +342783,16 @@ msgstr "[%s] Ocultar linea de tiro" msgid "[%s] Show lines of fire" msgstr "[%s] Mostrar linea de tiro" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "Rango: %d" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "Rango: %d/%d" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -340248,6 +347247,10 @@ msgstr "Insuficiente energía para purificar el contenido de %2$s de %1$s" msgid "You purify the contents of the %1$s's %2$s" msgstr "Purificas el contenido de %2$s de %1$s" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "Cuidadosamente memorizas las vulnerabilidades de la criatura." + #: src/weather.cpp msgid "Monday" msgstr "Lunes" diff --git a/lang/po/fil_PH.po b/lang/po/fil_PH.po index 613890c69d23c..4db34c69a502b 100644 --- a/lang/po/fil_PH.po +++ b/lang/po/fil_PH.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Harvey Mogar , 2021\n" "Language-Team: Filipino (Philippines) (https://www.transifex.com/cataclysm-dda-translators/teams/2217/fil_PH/)\n" @@ -22,7 +22,7 @@ msgid_plural "battery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -37,7 +37,7 @@ msgid_plural "butane" msgstr[0] "butane" msgstr[1] "butane" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Isang uri ng likido na ginagamit sa mga lighter." @@ -48,7 +48,7 @@ msgid_plural "aerosol paint" msgstr[0] "aerosol paint" msgstr[1] "aerosol paint" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -64,7 +64,7 @@ msgid_plural "permanent ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -77,7 +77,7 @@ msgid_plural "candle wax" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "" @@ -88,7 +88,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "paputok na apoy" msgstr[1] "mga paputok na apoy" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "" @@ -112,7 +112,7 @@ msgid_plural "oxygen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "" @@ -123,7 +123,7 @@ msgid_plural "aluminum foil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -149,7 +149,7 @@ msgid_plural "thread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -186,7 +186,7 @@ msgid_plural "yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "" @@ -208,7 +208,7 @@ msgid_plural "duct tape" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "Isang rolyo ng matigas na tape. Marami itong gamit." @@ -268,8 +268,8 @@ msgid_plural "plutonium slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -333,7 +333,7 @@ msgid_plural "bearings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -379,7 +379,7 @@ msgid_plural "120mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -404,7 +404,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -418,7 +418,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -429,7 +429,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -440,7 +440,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -452,7 +452,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -463,7 +463,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -474,7 +474,7 @@ msgid_plural "artillery propellant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -487,7 +487,7 @@ msgid_plural "oxidizer powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "" @@ -498,7 +498,7 @@ msgid_plural "lye powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "" @@ -588,7 +588,7 @@ msgid_plural "copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -601,7 +601,7 @@ msgid_plural "medical tape" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "" @@ -613,7 +613,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "KAPAG NAKITA MO ITO, BAKA BUG IYAN" @@ -624,7 +624,7 @@ msgid_plural "charcoal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -638,7 +638,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -664,7 +664,7 @@ msgid_plural "albuterol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -752,7 +752,7 @@ msgid_plural "nicotine liquid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -765,7 +765,7 @@ msgid_plural "fish bait" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "" @@ -818,7 +818,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -831,7 +831,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -855,7 +855,7 @@ msgid_plural "nitrox" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -866,7 +866,7 @@ msgid_plural "extinguishing agent" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "" @@ -877,7 +877,7 @@ msgid_plural "tinder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -910,7 +910,7 @@ msgid_plural "bronze" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -921,7 +921,7 @@ msgid_plural "glowstick juice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -933,7 +933,7 @@ msgid_plural "graphite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -947,7 +947,7 @@ msgid_plural "black pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -960,7 +960,7 @@ msgid_plural "blue pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -973,7 +973,7 @@ msgid_plural "green pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -986,7 +986,7 @@ msgid_plural "red pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1013,7 +1013,7 @@ msgid_plural "sulfur" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1039,7 +1039,7 @@ msgid_plural "cement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1053,7 +1053,7 @@ msgid_plural "gravel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1064,7 +1064,7 @@ msgid_plural "limestone" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1078,7 +1078,7 @@ msgid_plural "quicklime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1094,7 +1094,7 @@ msgid_plural "sand" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1107,7 +1107,7 @@ msgid_plural "soil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1120,7 +1120,7 @@ msgid_plural "aluminum powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1135,7 +1135,7 @@ msgid_plural "zinc powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1150,7 +1150,7 @@ msgid_plural "zinc oxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1163,7 +1163,7 @@ msgid_plural "manganese dioxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1177,7 +1177,7 @@ msgid_plural "potassium chloride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1192,7 +1192,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1206,7 +1206,7 @@ msgid_plural "acetone" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1220,7 +1220,7 @@ msgid_plural "chromium oxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1236,7 +1236,7 @@ msgid_plural "calcium carbide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1252,7 +1252,7 @@ msgid_plural "hexamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1268,7 +1268,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1283,7 +1283,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1298,7 +1298,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1313,7 +1313,7 @@ msgid_plural "saltpeter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1327,7 +1327,7 @@ msgid_plural "niter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1340,7 +1340,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1357,7 +1357,7 @@ msgid_plural "acetic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1372,7 +1372,7 @@ msgid_plural "formaldehyde" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1387,7 +1387,7 @@ msgid_plural "thermite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1402,7 +1402,7 @@ msgid_plural "ANFO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1417,7 +1417,7 @@ msgid_plural "black gunpowder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1432,7 +1432,7 @@ msgid_plural "match head powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1446,7 +1446,7 @@ msgid_plural "RDX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1460,7 +1460,7 @@ msgid_plural "composition b" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1474,7 +1474,7 @@ msgid_plural "HMTD" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1488,7 +1488,7 @@ msgid_plural "APEX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1502,7 +1502,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1515,7 +1515,7 @@ msgid_plural "detergent" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "" @@ -1526,7 +1526,7 @@ msgid_plural "soap flakes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1587,7 +1587,7 @@ msgid_plural "concentrated venom" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1602,7 +1602,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1617,7 +1617,7 @@ msgid_plural "rocuronium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1631,7 +1631,7 @@ msgid_plural "red phosphorous" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1644,7 +1644,7 @@ msgid_plural "iodine crystal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1657,7 +1657,7 @@ msgid_plural "ethanol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1685,7 +1685,7 @@ msgid_plural "methanol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1699,7 +1699,7 @@ msgid_plural "diesel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1711,7 +1711,7 @@ msgid_plural "JP8 fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1724,7 +1724,7 @@ msgid_plural "avgas fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -1735,7 +1735,7 @@ msgid_plural "biodiesel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1749,7 +1749,7 @@ msgid_plural "gasoline" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1762,7 +1762,7 @@ msgid_plural "lamp oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "" @@ -1773,7 +1773,7 @@ msgid_plural "motor oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "" @@ -1784,7 +1784,7 @@ msgid_plural "napalm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -1798,7 +1798,7 @@ msgid_plural "gelled gasoline" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -1812,7 +1812,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -1851,7 +1851,7 @@ msgid_plural "shrapnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "" @@ -1907,7 +1907,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -1933,7 +1933,7 @@ msgid_plural "H&K 12mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -1973,7 +1973,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -1999,7 +1999,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2041,7 +2041,7 @@ msgid_plural "20x66mm frag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2055,7 +2055,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2069,7 +2069,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2097,7 +2097,7 @@ msgid_plural ".22 CB" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2111,7 +2111,7 @@ msgid_plural ".22 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2125,7 +2125,7 @@ msgid_plural ".22 LR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2139,7 +2139,7 @@ msgid_plural ".22 rat-shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2177,7 +2177,7 @@ msgid_plural ".223 Remington" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2194,7 +2194,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2210,7 +2210,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2227,7 +2227,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2245,7 +2245,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2263,7 +2263,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2312,7 +2312,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2360,7 +2360,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2374,7 +2374,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2388,7 +2388,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2402,7 +2402,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2504,7 +2504,7 @@ msgid_plural ".308 Winchester" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2518,7 +2518,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2532,7 +2532,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2581,7 +2581,7 @@ msgid_plural ".32 ACP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2606,7 +2606,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2620,7 +2620,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2658,7 +2658,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2671,7 +2671,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -2722,7 +2722,7 @@ msgid_plural ".38 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -2748,7 +2748,7 @@ msgid_plural ".38 Super" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -2791,7 +2791,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -2806,7 +2806,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -2821,7 +2821,7 @@ msgid_plural ".380 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -2866,7 +2866,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -2886,7 +2886,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -2900,7 +2900,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -2944,7 +2944,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -2958,7 +2958,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -2972,7 +2972,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -2986,7 +2986,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3000,8 +3000,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3015,8 +3015,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3059,8 +3059,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3074,8 +3074,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3133,7 +3133,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3146,7 +3146,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3176,7 +3176,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3190,8 +3190,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3214,8 +3214,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3246,7 +3246,7 @@ msgid_plural ".410 000 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3263,7 +3263,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3327,7 +3327,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3340,7 +3340,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3354,7 +3354,7 @@ msgid_plural ".45 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3398,7 +3398,7 @@ msgid_plural ".454 Casull" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3426,7 +3426,7 @@ msgid_plural ".45-70 SP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3454,7 +3454,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3468,7 +3468,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3497,7 +3497,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3512,7 +3512,7 @@ msgid_plural ".45-70, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3527,7 +3527,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3554,7 +3554,7 @@ msgid_plural "4.6x30mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3568,8 +3568,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3590,7 +3590,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3603,7 +3603,7 @@ msgid_plural ".460 Rowland" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -3631,7 +3631,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -3650,7 +3650,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3664,7 +3664,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -3680,7 +3680,7 @@ msgid_plural ".50 BMG Match" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -3693,7 +3693,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -3706,7 +3706,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -3725,7 +3725,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3739,7 +3739,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -3755,7 +3755,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -3812,7 +3812,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -3827,7 +3827,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -3840,7 +3840,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -3854,7 +3854,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -3879,7 +3879,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3896,8 +3896,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3976,7 +3976,7 @@ msgid_plural "66mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -3989,7 +3989,7 @@ msgid_plural ".700 NX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4016,7 +4016,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4031,7 +4031,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4046,7 +4046,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4079,7 +4079,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4107,7 +4107,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4134,7 +4134,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4201,7 +4201,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4214,7 +4214,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4227,7 +4227,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4241,7 +4241,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4255,7 +4255,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4270,7 +4270,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4285,7 +4285,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4299,7 +4299,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4314,7 +4314,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4327,7 +4327,7 @@ msgid_plural "9x19mm +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4340,7 +4340,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4389,7 +4389,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4403,7 +4403,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4417,7 +4417,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4442,7 +4442,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4456,7 +4456,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4470,7 +4470,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4484,7 +4484,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -4510,7 +4510,7 @@ msgid_plural "cannon round shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -4523,7 +4523,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -4536,7 +4536,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -4549,7 +4549,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -4660,7 +4660,7 @@ msgid_plural "paintball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -4776,7 +4776,7 @@ msgid_plural "00 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -4790,7 +4790,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -4801,7 +4801,7 @@ msgid_plural "birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -4856,8 +4856,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5008,7 +5008,7 @@ msgid_plural "oxyacetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5021,7 +5021,7 @@ msgid_plural "fungal seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "" @@ -5842,7 +5842,7 @@ msgid_plural "red paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "" @@ -5853,7 +5853,7 @@ msgid_plural "blue paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "" @@ -5864,7 +5864,7 @@ msgid_plural "white paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "" @@ -5875,7 +5875,7 @@ msgid_plural "green paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "" @@ -5886,7 +5886,7 @@ msgid_plural "purple paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "" @@ -5897,7 +5897,7 @@ msgid_plural "yellow paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "" @@ -5965,7 +5965,7 @@ msgid_plural "bismuth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -5976,8 +5976,8 @@ msgid_plural "gold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -5996,7 +5996,7 @@ msgid_plural "zinc" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6011,7 +6011,7 @@ msgid_plural "lead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6024,7 +6024,7 @@ msgid_plural "magnesium powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6037,7 +6037,7 @@ msgid_plural "silver" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -6098,7 +6098,7 @@ msgid_plural "tin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -6111,7 +6111,7 @@ msgid_plural "solder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -6147,7 +6147,7 @@ msgid_plural "fuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -6200,7 +6200,7 @@ msgid_plural "cotton scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -6214,7 +6214,7 @@ msgid_plural "faux fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -6227,7 +6227,7 @@ msgid_plural "felt scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -6241,7 +6241,7 @@ msgid_plural "fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -6254,7 +6254,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -6269,7 +6269,7 @@ msgid_plural "leather scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -6282,7 +6282,7 @@ msgid_plural "Lycra scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -6295,7 +6295,7 @@ msgid_plural "neoprene scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -6308,7 +6308,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -6321,7 +6321,7 @@ msgid_plural "Nomex scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -6347,7 +6347,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -6372,7 +6372,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -6397,7 +6397,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -6437,7 +6437,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -6464,7 +6464,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -6492,7 +6492,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -6517,7 +6517,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -6611,7 +6611,7 @@ msgid_plural "titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -6639,7 +6639,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -6654,7 +6654,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -6669,7 +6669,7 @@ msgid_plural "25mm canister shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -6685,7 +6685,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -6700,7 +6700,7 @@ msgid_plural "7.50mm RP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -6717,7 +6717,7 @@ msgid_plural "electric charge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -6730,7 +6730,7 @@ msgid_plural "foamcrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -6746,7 +6746,7 @@ msgid_plural "solid hydrogen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -6759,7 +6759,7 @@ msgid_plural "lead pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -6773,7 +6773,7 @@ msgid_plural "domed HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -6787,7 +6787,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -6800,7 +6800,7 @@ msgid_plural "alloy pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -6945,7 +6945,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6960,7 +6960,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6999,7 +6999,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -7015,7 +7015,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -7055,7 +7055,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7071,7 +7071,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7111,7 +7111,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7127,7 +7127,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7167,7 +7167,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -7179,7 +7179,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -7192,7 +7192,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7208,7 +7208,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7235,7 +7235,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -7248,7 +7248,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -7262,7 +7262,7 @@ msgid_plural "rocket, smoke" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -7288,7 +7288,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -7301,7 +7301,7 @@ msgid_plural "shotshell, slug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -7315,7 +7315,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -7365,7 +7365,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -7416,7 +7416,7 @@ msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -7469,7 +7469,7 @@ msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -7497,7 +7497,7 @@ msgid_plural "parabolan yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -7508,7 +7508,7 @@ msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -7546,7 +7546,7 @@ msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -7563,7 +7563,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -8056,7 +8056,7 @@ msgstr[1] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -8072,7 +8072,7 @@ msgstr "" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -8108,7 +8108,7 @@ msgid_plural "chest rig" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -8987,38 +8987,19 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" +msgid "tool belt" +msgid_plural "tool belts" msgstr[0] "" msgstr[1] "" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "" -msgstr[1] "" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -9170,25 +9151,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -9206,45 +9168,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -9256,26 +9179,6 @@ msgstr[1] "" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -9294,26 +9197,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -9384,20 +9267,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -9429,39 +9298,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -10352,25 +10188,6 @@ msgid_plural "XL leather dusters" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -10419,7 +10236,7 @@ msgid_plural "army jacket" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -10592,7 +10409,7 @@ msgid_plural "kimono" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -10753,19 +10570,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -10818,19 +10622,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -10848,7 +10639,7 @@ msgid_plural "thawb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -10900,19 +10691,6 @@ msgstr[1] "" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -11157,19 +10935,6 @@ msgstr[1] "" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -11541,25 +11306,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -11577,50 +11323,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -11684,63 +11386,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -11781,19 +11426,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -11915,37 +11547,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -12686,7 +12287,7 @@ msgid_plural "kabuto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -12796,32 +12397,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -12875,32 +12450,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -13100,36 +12649,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -13179,77 +12698,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -13261,56 +12709,6 @@ msgstr[1] "" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -13719,9 +13117,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -13732,9 +13130,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -13745,9 +13143,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -13758,9 +13156,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -13771,9 +13169,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -13784,9 +13182,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -13797,9 +13195,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -13810,9 +13208,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -13823,9 +13221,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -13836,9 +13234,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -13849,9 +13247,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -13862,9 +13260,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -13875,9 +13273,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -13888,9 +13286,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -17468,7 +16866,7 @@ msgid_plural "turnout trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -17508,7 +16906,7 @@ msgid_plural "leather chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -17521,7 +16919,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -17536,7 +16934,7 @@ msgid_plural "fencing pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -17709,32 +17107,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -17746,39 +17118,13 @@ msgstr[1] "" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -17791,7 +17137,7 @@ msgid_plural "light EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -17818,7 +17164,7 @@ msgid_plural "basketball shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "" @@ -17829,7 +17175,7 @@ msgid_plural "breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -17853,7 +17199,7 @@ msgid_plural "hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "" @@ -17864,7 +17210,7 @@ msgid_plural "fur hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "" @@ -17875,7 +17221,7 @@ msgid_plural "leather hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "" @@ -17886,7 +17232,7 @@ msgid_plural "jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "" @@ -17919,7 +17265,7 @@ msgid_plural "red jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -17948,7 +17294,7 @@ msgid_plural "leggings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -18024,7 +17370,7 @@ msgid_plural "pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "" @@ -18035,15 +17381,15 @@ msgid_plural "army pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -18076,7 +17422,7 @@ msgid_plural "cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -18087,7 +17433,7 @@ msgid_plural "checkered pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -18098,7 +17444,7 @@ msgid_plural "fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "" @@ -18109,7 +17455,7 @@ msgid_plural "faux fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -18120,7 +17466,7 @@ msgid_plural "leather pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -18133,7 +17479,7 @@ msgid_plural "ski pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "" @@ -18144,7 +17490,7 @@ msgid_plural "police breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -18157,7 +17503,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -18168,7 +17514,7 @@ msgid_plural "shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "" @@ -18179,7 +17525,7 @@ msgid_plural "cargo shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -18190,7 +17536,7 @@ msgid_plural "denim shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -18251,7 +17597,7 @@ msgid_plural "striped pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -18282,7 +17628,7 @@ msgid_plural "army winter pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -19422,58 +18768,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -19908,33 +19202,6 @@ msgid_plural "XL plate armors" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -19980,8 +19247,8 @@ msgstr[1] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -19995,19 +19262,6 @@ msgstr[1] "" msgid "An ornamental suit of Japanese samurai armor." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -20142,69 +19396,41 @@ msgstr[0] "" msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for survivor firesuit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" @@ -20223,40 +19449,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -20320,19 +19512,6 @@ msgid "" "experience." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -20342,8 +19521,8 @@ msgstr[1] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" #: lang/json/ARMOR_from_json.py @@ -20359,42 +19538,6 @@ msgid "" "Light and very comfortable." msgstr "" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -20466,45 +19609,6 @@ msgstr[1] "" msgid "A neoprene hood, commonly worn by divers." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -20612,7 +19716,7 @@ msgid_plural "lorica segmentata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -20781,7 +19885,7 @@ msgid_plural "tire leather armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -20841,25 +19945,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -21127,7 +20212,7 @@ msgid_plural "leotard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -21213,7 +20298,7 @@ msgid_plural "French maid clothes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -21513,7 +20598,7 @@ msgid_plural "boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -21524,7 +20609,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -21535,7 +20620,7 @@ msgid_plural "boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -21547,7 +20632,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -21560,7 +20645,7 @@ msgid_plural "boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21572,7 +20657,7 @@ msgid_plural "XL boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21597,7 +20682,7 @@ msgid_plural "briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "" @@ -21754,7 +20839,7 @@ msgid_plural "panties" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -21818,7 +20903,7 @@ msgid_plural "tights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -21843,7 +20928,7 @@ msgid_plural "compression shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -21877,6 +20962,942 @@ msgid "" "unitard provides overall coverage with great flexibility." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -21997,7 +22018,7 @@ msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -22010,7 +22031,7 @@ msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -22170,7 +22191,7 @@ msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -22181,7 +22202,7 @@ msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -22194,7 +22215,7 @@ msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -22456,7 +22477,7 @@ msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -22606,19 +22627,6 @@ msgid "" " ridiculously heavy." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -22746,7 +22754,7 @@ msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -22759,7 +22767,7 @@ msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -22802,6 +22810,12 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -22950,7 +22964,7 @@ msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -23437,7 +23451,7 @@ msgid_plural "freerunner's boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -23509,7 +23523,7 @@ msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -23524,7 +23538,7 @@ msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23553,7 +23567,7 @@ msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23611,7 +23625,7 @@ msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -23669,7 +23683,7 @@ msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -23680,7 +23694,7 @@ msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -23778,7 +23792,7 @@ msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -23789,7 +23803,7 @@ msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -23874,16 +23888,18 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -23901,42 +23917,35 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -24662,7 +24671,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -25093,7 +25102,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -25302,7 +25311,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -26606,7 +26615,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -26849,7 +26858,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -26887,7 +26896,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -26902,7 +26911,7 @@ msgid_plural "schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -26910,9 +26919,9 @@ msgstr[1] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -26928,7 +26937,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -26943,7 +26952,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -26958,7 +26967,7 @@ msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -26972,7 +26981,7 @@ msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -26986,7 +26995,7 @@ msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -27000,7 +27009,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -27014,7 +27023,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -27028,7 +27037,7 @@ msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -27042,7 +27051,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -27056,7 +27065,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -27070,7 +27079,7 @@ msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27085,7 +27094,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27100,7 +27109,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -27114,7 +27123,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -27712,7 +27721,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "" @@ -27723,7 +27732,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -27735,7 +27744,7 @@ msgid_plural "Capoeira 100" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "" @@ -27746,7 +27755,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "" @@ -27757,7 +27766,7 @@ msgid_plural "The Red Crane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "" @@ -27768,7 +27777,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "" @@ -27779,7 +27788,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "" @@ -27790,7 +27799,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "" @@ -27801,7 +27810,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "" @@ -27812,7 +27821,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "" @@ -27823,7 +27832,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "" @@ -27834,7 +27843,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "" @@ -27845,7 +27854,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "" @@ -27856,7 +27865,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "" @@ -27867,7 +27876,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "" @@ -27878,7 +27887,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -27891,7 +27900,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "" @@ -27902,7 +27911,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "" @@ -27913,7 +27922,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "" @@ -27924,7 +27933,7 @@ msgid_plural "The Black Snake" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "" @@ -27935,7 +27944,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -27946,7 +27955,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" @@ -27957,7 +27966,7 @@ msgid_plural "The White Tiger" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "" @@ -27968,7 +27977,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "" @@ -27979,7 +27988,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "" @@ -27990,7 +27999,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "" @@ -28001,7 +28010,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "" @@ -28012,7 +28021,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -28024,7 +28033,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -28038,7 +28047,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -28194,7 +28203,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -29063,7 +29072,7 @@ msgid_plural "patient treatment records" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -29074,7 +29083,7 @@ msgid_plural "national weather transcripts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -32506,7 +32515,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32521,7 +32530,7 @@ msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32536,7 +32545,7 @@ msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32551,7 +32560,7 @@ msgid_plural "tank drone schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32566,7 +32575,7 @@ msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -32796,7 +32805,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -32807,7 +32816,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -32818,7 +32827,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -32831,7 +32840,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -32842,7 +32851,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -32855,7 +32864,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -32869,7 +32878,7 @@ msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -32880,7 +32889,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -32893,7 +32902,7 @@ msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -32904,7 +32913,7 @@ msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -32931,6 +32940,21 @@ msgstr[1] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -35011,7 +35035,7 @@ msgid_plural "bird litter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -35067,14 +35091,14 @@ msgid_plural "bleach" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -35087,7 +35111,7 @@ msgid_plural "ammonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -35100,7 +35124,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -35111,7 +35135,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -35122,7 +35146,7 @@ msgid_plural "fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -35135,7 +35159,7 @@ msgid_plural "insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -35148,7 +35172,7 @@ msgid_plural "salt water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "" @@ -35159,7 +35183,7 @@ msgid_plural "soapy water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -35181,7 +35205,7 @@ msgid_plural "sulfuric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -35196,7 +35220,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -35210,7 +35234,7 @@ msgid_plural "nitric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -35241,7 +35265,7 @@ msgid_plural "sewage water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -35252,7 +35276,7 @@ msgid_plural "lye" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -35265,7 +35289,7 @@ msgid_plural "ether" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -35280,7 +35304,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -35295,7 +35319,7 @@ msgid_plural "chloroform" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -35309,7 +35333,7 @@ msgid_plural "phenol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -35325,7 +35349,7 @@ msgid_plural "glycerol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -35338,7 +35362,7 @@ msgid_plural "peptone broth powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -35352,7 +35376,7 @@ msgid_plural "agar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -35367,7 +35391,7 @@ msgid_plural "acrylamide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -35380,7 +35404,7 @@ msgid_plural "acetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -35393,7 +35417,7 @@ msgid_plural "formic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -35406,7 +35430,7 @@ msgid_plural "latex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -35417,7 +35441,7 @@ msgid_plural "citric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -35494,13 +35518,24 @@ msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -35539,7 +35574,7 @@ msgid_plural "marloss wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -35550,7 +35585,7 @@ msgid_plural "Riesling" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" @@ -35561,7 +35596,7 @@ msgid_plural "Chardonnay" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "" @@ -35572,7 +35607,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -35585,7 +35620,7 @@ msgid_plural "pinot noir" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -35598,7 +35633,7 @@ msgid_plural "marsala" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -35609,7 +35644,7 @@ msgid_plural "vermouth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -35622,7 +35657,7 @@ msgid_plural "barley wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -35633,7 +35668,7 @@ msgid_plural "whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -35645,7 +35680,7 @@ msgid_plural "vodka" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -35658,7 +35693,7 @@ msgid_plural "gin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -35671,7 +35706,7 @@ msgid_plural "rum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -35684,7 +35719,7 @@ msgid_plural "tequila" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -35697,7 +35732,7 @@ msgid_plural "triple sec" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -35708,7 +35743,7 @@ msgid_plural "cheap wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "" @@ -35719,7 +35754,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -35730,7 +35765,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -35741,7 +35776,7 @@ msgid_plural "fruit wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -35753,7 +35788,7 @@ msgid_plural "brandy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -35766,7 +35801,7 @@ msgid_plural "Irish coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -35779,7 +35814,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -35806,7 +35841,7 @@ msgid_plural "wild apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "" @@ -35817,7 +35852,7 @@ msgid_plural "rum & cola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -35828,7 +35863,7 @@ msgid_plural "beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -35841,7 +35876,7 @@ msgid_plural "spiced mead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -35853,7 +35888,7 @@ msgid_plural "dandelion wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -35866,7 +35901,7 @@ msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -35877,7 +35912,7 @@ msgid_plural "pine wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -35890,7 +35925,7 @@ msgid_plural "homebrew beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -35901,7 +35936,7 @@ msgid_plural "moonshine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -35915,7 +35950,7 @@ msgid_plural "European pilsner" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -35928,7 +35963,7 @@ msgid_plural "American pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -35941,7 +35976,7 @@ msgid_plural "India pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -35954,7 +35989,7 @@ msgid_plural "stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -35965,7 +36000,7 @@ msgid_plural "Belgian ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -35978,7 +36013,7 @@ msgid_plural "imperial stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -36019,7 +36054,7 @@ msgid_plural "single malt whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "" @@ -36030,7 +36065,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -36041,7 +36076,7 @@ msgid_plural "cheap whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -36052,7 +36087,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -36063,7 +36098,7 @@ msgid_plural "sherry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -36075,7 +36110,7 @@ msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -36088,7 +36123,7 @@ msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -36099,7 +36134,7 @@ msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "" @@ -36110,7 +36145,7 @@ msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -36123,7 +36158,7 @@ msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -36214,7 +36249,7 @@ msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -36225,7 +36260,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -36236,7 +36271,7 @@ msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -36249,7 +36284,7 @@ msgid_plural "sourdough bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -36262,7 +36297,7 @@ msgid_plural "flatbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "" @@ -36273,7 +36308,7 @@ msgid_plural "bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "" @@ -36284,7 +36319,7 @@ msgid_plural "toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -36297,7 +36332,7 @@ msgid_plural "buttered toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -36308,7 +36343,7 @@ msgid_plural "jam toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -36321,7 +36356,7 @@ msgid_plural "peanut butter toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -36333,7 +36368,7 @@ msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -36344,7 +36379,7 @@ msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -36357,7 +36392,7 @@ msgid_plural "cornbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "" @@ -36390,7 +36425,7 @@ msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -36414,7 +36449,7 @@ msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -36428,7 +36463,7 @@ msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -36439,7 +36474,7 @@ msgid_plural "hallula" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -36702,18 +36737,18 @@ msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -36724,8 +36759,8 @@ msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -36738,14 +36773,14 @@ msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -36756,7 +36791,7 @@ msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -36784,7 +36819,7 @@ msgid_plural "cooked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "" @@ -36885,7 +36920,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -36988,7 +37023,7 @@ msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -37027,7 +37062,7 @@ msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -37074,7 +37109,7 @@ msgid_plural "butchery refuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -37159,7 +37194,7 @@ msgid_plural "cooked offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -37173,7 +37208,7 @@ msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -37184,7 +37219,7 @@ msgid_plural "pickled offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -37198,7 +37233,7 @@ msgid_plural "canned offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -37233,31 +37268,28 @@ msgid_plural "meat jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -37269,7 +37301,7 @@ msgid_plural "salted fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -37281,33 +37313,27 @@ msgid_plural "smoked meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -37328,7 +37354,7 @@ msgid_plural "smoked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -37381,7 +37407,7 @@ msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -37432,7 +37458,7 @@ msgid_plural "raw brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -37443,7 +37469,7 @@ msgid_plural "cooked brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -37522,7 +37548,7 @@ msgstr[1] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -37674,7 +37700,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -37915,7 +37941,7 @@ msgid_plural "alien fronds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -38020,7 +38046,7 @@ msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -38031,7 +38057,7 @@ msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -38069,13 +38095,38 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -38089,7 +38140,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -38102,7 +38153,7 @@ msgid_plural "cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -38113,7 +38164,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -38125,7 +38176,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -38138,7 +38189,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -38151,7 +38202,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -38164,7 +38215,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -38177,7 +38228,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -38203,7 +38254,7 @@ msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -38227,7 +38278,7 @@ msgid_plural "wheat cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -38251,7 +38302,7 @@ msgid_plural "milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -38262,7 +38313,7 @@ msgid_plural "chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -38273,7 +38324,7 @@ msgid_plural "reconstituted milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -38286,7 +38337,7 @@ msgid_plural "raw milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -38301,7 +38352,7 @@ msgid_plural "shelf stable milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -38315,7 +38366,7 @@ msgid_plural "evaporated milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -38327,7 +38378,7 @@ msgid_plural "buttermilk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -38351,7 +38402,7 @@ msgid_plural "butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -38363,7 +38414,7 @@ msgid_plural "raw butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -38375,7 +38426,7 @@ msgid_plural "ghee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -38412,7 +38463,7 @@ msgid_plural "hard cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -38425,7 +38476,7 @@ msgid_plural "cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "" @@ -38447,7 +38498,7 @@ msgid_plural "powdered milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -38458,7 +38509,7 @@ msgid_plural "condensed milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -38471,7 +38522,7 @@ msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -38484,7 +38535,7 @@ msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -38495,7 +38546,7 @@ msgid_plural "apple cider" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "" @@ -38532,7 +38583,7 @@ msgid_plural "atomic coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -38546,7 +38597,7 @@ msgid_plural "bee balm tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -38570,7 +38621,7 @@ msgid_plural "chai tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" @@ -38581,7 +38632,7 @@ msgid_plural "chamomile tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -38607,7 +38658,7 @@ msgid_plural "coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -38621,7 +38672,7 @@ msgid_plural "coffee substitute" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -38635,7 +38686,7 @@ msgid_plural "chicory brew" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -38705,7 +38756,7 @@ msgid_plural "dandelion tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -38716,7 +38767,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -38771,7 +38822,7 @@ msgid_plural "herbal tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -38782,7 +38833,7 @@ msgid_plural "hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -38830,7 +38881,7 @@ msgid_plural "lemonade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -38856,7 +38907,7 @@ msgid_plural "lotus tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -38867,7 +38918,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -38928,7 +38979,7 @@ msgid_plural "pine needle tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -38966,7 +39017,7 @@ msgid_plural "root beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -39003,13 +39054,13 @@ msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -39035,7 +39086,7 @@ msgid_plural "sweet water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "" @@ -39059,7 +39110,7 @@ msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -39096,7 +39147,7 @@ msgid_plural "water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -39109,7 +39160,7 @@ msgid_plural "clean water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -39120,7 +39171,7 @@ msgid_plural "mineral water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -39249,7 +39300,7 @@ msgid_plural "maple sap" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -39260,7 +39311,7 @@ msgid_plural "mayonnaise" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -39285,7 +39336,7 @@ msgid_plural "mustard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -39298,7 +39349,7 @@ msgid_plural "forest honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -39311,7 +39362,7 @@ msgid_plural "vinegar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -39324,7 +39375,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "" @@ -39335,7 +39386,7 @@ msgid_plural "animal cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -39346,7 +39397,7 @@ msgid_plural "molasses" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -39359,7 +39410,7 @@ msgid_plural "horseradish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "" @@ -39370,7 +39421,7 @@ msgid_plural "coffee syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -39712,7 +39763,7 @@ msgid_plural "scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "" @@ -39734,7 +39785,7 @@ msgid_plural "fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -39747,7 +39798,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -39760,7 +39811,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -39773,7 +39824,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -39965,7 +40016,7 @@ msgid_plural "frozen yogurt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -40035,7 +40086,7 @@ msgid_plural "peaches in syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -40057,7 +40108,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -40092,7 +40143,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -40106,7 +40157,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -40131,7 +40182,7 @@ msgid_plural "canned fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -40144,7 +40195,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -40168,7 +40219,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -40558,7 +40609,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -40610,7 +40661,7 @@ msgid_plural "irradiated corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -40662,7 +40713,7 @@ msgid_plural "irradiated celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -40675,7 +40726,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -40783,12 +40834,12 @@ msgid_plural "potato chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -40799,7 +40850,7 @@ msgid_plural "popcorn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -40812,7 +40863,7 @@ msgid_plural "popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -40825,7 +40876,7 @@ msgid_plural "salted popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "" @@ -40836,7 +40887,7 @@ msgid_plural "buttered popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -40847,7 +40898,7 @@ msgid_plural "pretzels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "" @@ -40880,7 +40931,7 @@ msgid_plural "marshmallows" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -40891,7 +40942,7 @@ msgid_plural "s'mores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -40926,7 +40977,7 @@ msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -40937,12 +40988,12 @@ msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -40990,7 +41041,7 @@ msgid_plural "powder candy sticks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -41064,7 +41115,7 @@ msgid_plural "maple syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -41077,7 +41128,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -41127,7 +41178,7 @@ msgid_plural "fast-food French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -41138,7 +41189,7 @@ msgid_plural "French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -41160,7 +41211,7 @@ msgid_plural "Necco wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -41186,8 +41237,8 @@ msgid_plural "caramel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "" @@ -41198,7 +41249,7 @@ msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "" @@ -41209,7 +41260,7 @@ msgid_plural "tortilla chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -41222,7 +41273,7 @@ msgid_plural "cheese nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -41235,31 +41286,28 @@ msgid_plural "meat nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -41272,31 +41320,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -41309,7 +41357,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -41322,7 +41370,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -41396,7 +41444,7 @@ msgid_plural "chili dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" @@ -41407,7 +41455,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -41483,7 +41531,7 @@ msgid_plural "cheese fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "" @@ -41571,8 +41619,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -41715,32 +41762,26 @@ msgid_plural "raw sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -41759,15 +41800,14 @@ msgid_plural "smoked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -41786,15 +41826,14 @@ msgid_plural "cooked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -41824,23 +41863,21 @@ msgid_plural "bratwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -41861,7 +41898,7 @@ msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -41912,7 +41949,7 @@ msgid_plural "cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -41925,8 +41962,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -41934,7 +41970,7 @@ msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -41948,7 +41984,7 @@ msgid_plural "currywursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -41956,8 +41992,7 @@ msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -41965,8 +42000,7 @@ msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -41987,9 +42021,8 @@ msgid_plural "aspics" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -41997,9 +42030,8 @@ msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -42007,9 +42039,8 @@ msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -42031,7 +42062,7 @@ msgid_plural "dehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -42044,7 +42075,7 @@ msgid_plural "rehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -42057,7 +42088,7 @@ msgid_plural "pickled fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -42069,7 +42100,7 @@ msgid_plural "canned fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -42082,7 +42113,7 @@ msgid_plural "batter fried fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -42115,8 +42146,7 @@ msgid_plural "lunch meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -42137,7 +42167,7 @@ msgid_plural "bologna" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -42145,8 +42175,7 @@ msgid_plural "brat %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -42154,8 +42183,7 @@ msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -42163,7 +42191,7 @@ msgid_plural "bleak %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -42191,7 +42219,7 @@ msgid_plural "SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -42229,24 +42257,22 @@ msgid_plural "sausage gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -42267,7 +42293,7 @@ msgid_plural "pemmican" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -42275,8 +42301,7 @@ msgid_plural "prepper %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -42284,8 +42309,7 @@ msgid_plural "Orley %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -42293,7 +42317,7 @@ msgid_plural "pernicious %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -42307,15 +42331,14 @@ msgid_plural "hamburger helpers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -42323,8 +42346,7 @@ msgid_plural "halfling helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -42356,24 +42378,22 @@ msgid_plural "chilis con carne" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -42391,7 +42411,7 @@ msgid_plural "pork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -42404,7 +42424,7 @@ msgid_plural "canned tuna fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "" @@ -42415,7 +42435,7 @@ msgid_plural "canned salmon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "" @@ -42437,7 +42457,7 @@ msgid_plural "pickled herring" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -42459,16 +42479,14 @@ msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -42488,15 +42506,14 @@ msgid_plural "baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" @@ -42507,15 +42524,14 @@ msgid_plural "meat fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" @@ -42526,15 +42542,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -42547,22 +42563,21 @@ msgid_plural "meat pies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -42581,23 +42596,21 @@ msgid_plural "meat pizzas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -42629,31 +42642,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -42666,15 +42678,14 @@ msgid_plural "canned meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -42694,15 +42705,14 @@ msgid_plural "salted meat slices" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -42721,15 +42731,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -42737,8 +42746,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -42746,7 +42754,7 @@ msgid_plural "gnarly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -42757,7 +42765,7 @@ msgid_plural "lasagnes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -42765,8 +42773,7 @@ msgid_plural "Luigi %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -42774,7 +42781,7 @@ msgid_plural "Lab %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -42795,7 +42802,7 @@ msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" @@ -42806,8 +42813,7 @@ msgid_plural "cheeseburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -42815,7 +42821,7 @@ msgid_plural "chump %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -42824,8 +42830,7 @@ msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -42859,23 +42864,21 @@ msgid_plural "hamburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -42894,23 +42897,21 @@ msgid_plural "sloppy joes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -42931,7 +42932,7 @@ msgid_plural "tacos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -42939,8 +42940,7 @@ msgid_plural "tio %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -42948,7 +42948,7 @@ msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -42969,15 +42969,14 @@ msgid_plural "pickled meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -42997,10 +42996,8 @@ msgid_plural "dehydrated meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -43008,12 +43005,11 @@ msgid_plural "%s, human" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -43047,9 +43043,8 @@ msgid_plural "haggises" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -43072,7 +43067,7 @@ msgid_plural "fish makizushi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -43085,8 +43080,7 @@ msgid_plural "meat temaki" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -43094,7 +43088,7 @@ msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -43107,7 +43101,7 @@ msgid_plural "sashimi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -43131,7 +43125,7 @@ msgid_plural "pelmenis" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -43152,8 +43146,7 @@ msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -43174,15 +43167,14 @@ msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -43201,15 +43193,14 @@ msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -43246,12 +43237,12 @@ msgid_plural "prescription stimulant" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -43298,7 +43289,7 @@ msgid_plural "antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -43325,7 +43316,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -43403,7 +43394,7 @@ msgid_plural "antiseptic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -43459,7 +43450,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -43511,12 +43502,12 @@ msgid_plural "codeine" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -43530,7 +43521,7 @@ msgid_plural "cocaine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -43572,7 +43563,7 @@ msgid_plural "cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -43586,12 +43577,12 @@ msgid_plural "crack" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -43604,7 +43595,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -43618,7 +43609,7 @@ msgid_plural "antiseptic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -43641,7 +43632,7 @@ msgid_plural "prescription sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -43654,12 +43645,12 @@ msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43676,12 +43667,12 @@ msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43697,12 +43688,12 @@ msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -43716,16 +43707,14 @@ msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -43739,7 +43728,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43753,7 +43742,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43767,7 +43756,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43781,7 +43770,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43795,7 +43784,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43810,7 +43799,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43825,7 +43814,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -43839,7 +43828,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -43853,12 +43842,12 @@ msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43938,7 +43927,7 @@ msgid_plural "chewing gum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -43963,13 +43952,13 @@ msgid_plural "heroin" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -44045,7 +44034,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44059,7 +44048,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44112,7 +44101,7 @@ msgid_plural "cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -44143,7 +44132,7 @@ msgid_plural "sleeping pill" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -44188,7 +44177,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -44199,15 +44188,14 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -44222,7 +44210,7 @@ msgid_plural "antidepressant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -44254,7 +44242,7 @@ msgid_plural "hemostatic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -44280,7 +44268,7 @@ msgid_plural "antipsychotic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -44531,12 +44519,12 @@ msgid_plural "marijuana" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -44550,7 +44538,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -44577,7 +44565,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -44590,7 +44578,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -44657,7 +44645,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -44672,7 +44660,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -45149,7 +45137,7 @@ msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -45399,9 +45387,8 @@ msgstr[1] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -45468,7 +45455,7 @@ msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -45587,7 +45574,8 @@ msgstr[1] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -45729,7 +45717,7 @@ msgid_plural "pine nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -45740,7 +45728,7 @@ msgid_plural "junipers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -45753,7 +45741,7 @@ msgid_plural "shelled pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -45765,7 +45753,7 @@ msgid_plural "roasted pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -45776,7 +45764,7 @@ msgid_plural "shelled almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -45787,7 +45775,7 @@ msgid_plural "almond pulp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -45799,7 +45787,7 @@ msgid_plural "roasted almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -45810,7 +45798,7 @@ msgid_plural "cashews" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "" @@ -45821,7 +45809,7 @@ msgid_plural "shelled pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -45834,7 +45822,7 @@ msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -45845,7 +45833,7 @@ msgid_plural "shelled peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -45856,7 +45844,7 @@ msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -45867,7 +45855,7 @@ msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -45880,7 +45868,7 @@ msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -45891,7 +45879,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -45904,7 +45892,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -45915,7 +45903,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -45928,7 +45916,7 @@ msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -45939,7 +45927,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -45950,7 +45938,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -45961,7 +45949,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -45974,7 +45962,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -46031,7 +46019,7 @@ msgid_plural "acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -46044,7 +46032,7 @@ msgid_plural "roasted acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -46055,7 +46043,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -46068,7 +46056,7 @@ msgid_plural "foie gras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -46080,7 +46068,7 @@ msgid_plural "liver & onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "" @@ -46135,7 +46123,7 @@ msgid_plural "leverpostej" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -46348,7 +46336,7 @@ msgid_plural "marloss gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -46376,7 +46364,7 @@ msgid_plural "yeast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -46388,7 +46376,7 @@ msgid_plural "bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -46399,7 +46387,7 @@ msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -46411,7 +46399,7 @@ msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -46422,7 +46410,7 @@ msgid_plural "tainted bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -46433,7 +46421,7 @@ msgid_plural "chitin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -46480,7 +46468,7 @@ msgid_plural "dried beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -46493,7 +46481,7 @@ msgid_plural "cooked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "" @@ -46504,8 +46492,8 @@ msgid_plural "tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -46524,7 +46512,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -46535,7 +46523,7 @@ msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -46561,7 +46549,7 @@ msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -46573,7 +46561,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -46587,7 +46575,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -46598,7 +46586,7 @@ msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -46609,7 +46597,7 @@ msgid_plural "coffee powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -46622,7 +46610,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -46635,7 +46623,7 @@ msgid_plural "candied honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -46674,7 +46662,7 @@ msgid_plural "cattle fodder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -46687,7 +46675,7 @@ msgid_plural "bird food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -46700,7 +46688,7 @@ msgid_plural "wet dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -46713,7 +46701,7 @@ msgid_plural "dry dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -46726,7 +46714,7 @@ msgid_plural "wet cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -46739,7 +46727,7 @@ msgid_plural "dry cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -46866,7 +46854,7 @@ msgid_plural "instant coffee mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -46905,15 +46893,14 @@ msgid_plural "protein drinks" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -46921,14 +46908,11 @@ msgid_plural "sapient green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -46949,15 +46933,14 @@ msgid_plural "protein powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -46965,7 +46948,7 @@ msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -46994,15 +46977,14 @@ msgid_plural "protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -47023,7 +47005,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -47031,7 +47013,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -47098,7 +47080,7 @@ msgid_plural "blueberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -47109,7 +47091,7 @@ msgid_plural "strawberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" @@ -47120,7 +47102,7 @@ msgid_plural "cranberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "" @@ -47131,7 +47113,7 @@ msgid_plural "raspberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "" @@ -47142,7 +47124,7 @@ msgid_plural "huckleberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -47153,7 +47135,7 @@ msgid_plural "mulberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -47166,7 +47148,7 @@ msgid_plural "elderberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -47177,7 +47159,7 @@ msgid_plural "rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "" @@ -47223,7 +47205,7 @@ msgid_plural "cherries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "" @@ -47246,7 +47228,7 @@ msgid_plural "grapes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -47312,7 +47294,7 @@ msgid_plural "blackberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "" @@ -47368,7 +47350,7 @@ msgid_plural "apricots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "" @@ -47409,7 +47391,7 @@ msgid_plural "bee balm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -47421,7 +47403,7 @@ msgid_plural "broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "" @@ -47432,7 +47414,7 @@ msgid_plural "buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -47456,7 +47438,7 @@ msgid_plural "spinach" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -47505,7 +47487,7 @@ msgid_plural "celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -47529,7 +47511,7 @@ msgid_plural "corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "" @@ -47540,7 +47522,7 @@ msgid_plural "empty corn cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -47601,7 +47583,7 @@ msgid_plural "salsify" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -47615,7 +47597,7 @@ msgid_plural "chicory" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -47738,7 +47720,7 @@ msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -47775,7 +47757,7 @@ msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -47788,7 +47770,7 @@ msgid_plural "dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -47801,7 +47783,7 @@ msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -47899,7 +47881,7 @@ msgid_plural "wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -47934,7 +47916,7 @@ msgid_plural "raw beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -47947,7 +47929,7 @@ msgid_plural "raw lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -47958,7 +47940,7 @@ msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -47995,8 +47977,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -48010,6 +47991,27 @@ msgid "" "nutritious!" msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -48071,7 +48073,7 @@ msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -48119,26 +48121,23 @@ msgid_plural "meat sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -48254,7 +48253,7 @@ msgid_plural "mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -48265,7 +48264,7 @@ msgid_plural "hop rhizomes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "" @@ -48280,7 +48279,7 @@ msgid_plural "blackberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "" @@ -48295,7 +48294,7 @@ msgid_plural "blueberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "" @@ -48310,7 +48309,7 @@ msgid_plural "cranberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "" @@ -48325,7 +48324,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -48340,7 +48339,7 @@ msgid_plural "mulberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -48355,7 +48354,7 @@ msgid_plural "elderberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -48370,7 +48369,7 @@ msgid_plural "raspberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "" @@ -48385,7 +48384,7 @@ msgid_plural "strawberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "" @@ -48400,7 +48399,7 @@ msgid_plural "grape seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -48415,7 +48414,7 @@ msgid_plural "rose seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -48430,7 +48429,7 @@ msgid_plural "tobacco seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -48445,7 +48444,7 @@ msgid_plural "barley seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "" @@ -48456,7 +48455,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "" @@ -48467,7 +48466,7 @@ msgid_plural "lettuce seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "" @@ -48478,7 +48477,7 @@ msgid_plural "cabbage seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "" @@ -48489,7 +48488,7 @@ msgid_plural "tomato seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "" @@ -48500,7 +48499,7 @@ msgid_plural "cotton seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -48515,7 +48514,7 @@ msgid_plural "broccoli seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "" @@ -48526,7 +48525,7 @@ msgid_plural "zucchini seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "" @@ -48537,7 +48536,7 @@ msgid_plural "onion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "" @@ -48548,7 +48547,7 @@ msgid_plural "garlic seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "" @@ -48563,7 +48562,7 @@ msgid_plural "cattail seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -48578,7 +48577,7 @@ msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -48593,7 +48592,7 @@ msgid_plural "salsify seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -48604,7 +48603,7 @@ msgid_plural "chicory seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -48615,7 +48614,7 @@ msgid_plural "wild root seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -48626,7 +48625,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -48643,7 +48642,7 @@ msgid_plural "cactus seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -48669,7 +48668,7 @@ msgid_plural "carrot seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "" @@ -48680,7 +48679,7 @@ msgid_plural "corn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "" @@ -48695,7 +48694,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "" @@ -48706,7 +48705,7 @@ msgid_plural "cucumber seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "" @@ -48732,7 +48731,7 @@ msgid_plural "cannabis seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -48763,7 +48762,7 @@ msgid_plural "bean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -48778,7 +48777,7 @@ msgid_plural "soybean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -48787,7 +48786,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -48802,7 +48801,7 @@ msgid_plural "thyme seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -48819,7 +48818,7 @@ msgid_plural "canola seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -48830,7 +48829,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -48841,7 +48840,7 @@ msgid_plural "sunflower seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -48859,7 +48858,7 @@ msgid_plural "dogbane seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -48870,7 +48869,7 @@ msgid_plural "bee balm seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -48881,7 +48880,7 @@ msgid_plural "mugwort seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -48892,7 +48891,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -48903,7 +48902,7 @@ msgid_plural "wild herb seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -48918,7 +48917,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -48933,7 +48932,7 @@ msgid_plural "dandelion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -48948,7 +48947,7 @@ msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -48963,7 +48962,7 @@ msgid_plural "rhubarb stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -48974,7 +48973,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -48985,7 +48984,7 @@ msgid_plural "datura seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -49003,7 +49002,7 @@ msgid_plural "celery seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "" @@ -49014,7 +49013,7 @@ msgid_plural "oat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "" @@ -49031,7 +49030,7 @@ msgid_plural "wheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "" @@ -49048,7 +49047,7 @@ msgid_plural "fried seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -49074,7 +49073,7 @@ msgid_plural "coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "" @@ -49085,7 +49084,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -49096,7 +49095,7 @@ msgid_plural "chamomile seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -49111,7 +49110,7 @@ msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -49126,7 +49125,7 @@ msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -49137,7 +49136,7 @@ msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -49148,7 +49147,7 @@ msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -49159,7 +49158,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -49181,8 +49180,7 @@ msgid_plural "bone broths" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -49212,15 +49210,14 @@ msgid_plural "meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -49260,8 +49257,7 @@ msgid_plural "curries with meat" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -49279,10 +49275,8 @@ msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -49344,7 +49338,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" @@ -49368,7 +49362,7 @@ msgid_plural "chili powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -49381,7 +49375,7 @@ msgid_plural "hot sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -49394,7 +49388,7 @@ msgid_plural "cinnamon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -49405,7 +49399,7 @@ msgid_plural "curry powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -49418,7 +49412,7 @@ msgid_plural "black pepper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "" @@ -49429,7 +49423,7 @@ msgid_plural "salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -49442,7 +49436,7 @@ msgid_plural "Italian seasoning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -49453,7 +49447,7 @@ msgid_plural "seasoned salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -49464,7 +49458,7 @@ msgid_plural "sugar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -49477,7 +49471,7 @@ msgid_plural "sprinkles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -49492,7 +49486,7 @@ msgid_plural "wild herbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -49505,7 +49499,7 @@ msgid_plural "soy sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "" @@ -49521,7 +49515,7 @@ msgid_plural "mustard powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -49571,7 +49565,7 @@ msgid_plural "starch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -49584,7 +49578,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" @@ -49595,7 +49589,7 @@ msgid_plural "fried dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -49607,7 +49601,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -49618,7 +49612,7 @@ msgid_plural "fried burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -49655,7 +49649,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -49678,7 +49672,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -49690,7 +49684,7 @@ msgid_plural "canned corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "" @@ -49701,7 +49695,7 @@ msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -49712,7 +49706,7 @@ msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -49723,7 +49717,7 @@ msgid_plural "hominy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -49736,7 +49730,7 @@ msgid_plural "cornmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "" @@ -49747,7 +49741,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" @@ -49758,7 +49752,7 @@ msgid_plural "dried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -49771,7 +49765,7 @@ msgid_plural "cooked rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "" @@ -49782,7 +49776,7 @@ msgid_plural "fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "" @@ -49793,7 +49787,7 @@ msgid_plural "beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -49806,7 +49800,7 @@ msgid_plural "tofu fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -49817,7 +49811,7 @@ msgid_plural "tofu stirfry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -49830,7 +49824,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -49901,7 +49895,7 @@ msgid_plural "pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -49938,7 +49932,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "" @@ -49961,7 +49955,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -50000,7 +49994,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -50024,7 +50018,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -50100,7 +50094,7 @@ msgid_plural "sushi rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -50111,7 +50105,7 @@ msgid_plural "onigiri" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -50124,7 +50118,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -50150,7 +50144,7 @@ msgid_plural "sauerkraut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -50174,7 +50168,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -50185,7 +50179,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -50203,7 +50197,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "" @@ -50214,7 +50208,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -50227,7 +50221,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -50240,7 +50234,7 @@ msgid_plural "boiled noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "" @@ -50251,7 +50245,7 @@ msgid_plural "raw macaroni" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -50262,7 +50256,7 @@ msgid_plural "mac & cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -50273,7 +50267,7 @@ msgid_plural "flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "" @@ -50284,7 +50278,7 @@ msgid_plural "bread flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -50297,14 +50291,14 @@ msgid_plural "oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "" @@ -50315,7 +50309,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -50328,7 +50322,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -50414,7 +50408,7 @@ msgid_plural "oyster crackers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -50449,7 +50443,7 @@ msgid_plural "granola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -50473,7 +50467,7 @@ msgid_plural "fast noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -50667,7 +50661,7 @@ msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -50678,7 +50672,7 @@ msgid_plural "melon seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -50689,7 +50683,7 @@ msgid_plural "banana saplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -50700,7 +50694,7 @@ msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -50711,7 +50705,7 @@ msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -50722,7 +50716,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -50771,7 +50765,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -50817,7 +50811,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -50830,7 +50824,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -50871,7 +50865,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -50981,7 +50975,7 @@ msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -50995,7 +50989,7 @@ msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -51085,7 +51079,7 @@ msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -51099,7 +51093,7 @@ msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -51113,7 +51107,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -51125,7 +51119,7 @@ msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -51138,7 +51132,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -51193,7 +51187,7 @@ msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -51209,7 +51203,7 @@ msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -51223,7 +51217,7 @@ msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -51237,7 +51231,7 @@ msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -51298,7 +51292,7 @@ msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -51312,7 +51306,7 @@ msgid_plural "food cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -51324,7 +51318,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -51348,7 +51342,7 @@ msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -51374,7 +51368,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -51388,7 +51382,7 @@ msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -51404,7 +51398,7 @@ msgid_plural "caffex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -51445,7 +51439,7 @@ msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -51507,7 +51501,7 @@ msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -51528,7 +51522,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -51811,8 +51805,8 @@ msgstr[0] "" msgstr[1] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" @@ -51822,6 +51816,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -51864,6 +51870,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -51984,6 +51996,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -52020,24 +52038,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "" msgstr[1] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -52336,7 +52336,7 @@ msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -52402,7 +52402,7 @@ msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -52462,14 +52462,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -52552,7 +52552,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -52561,7 +52561,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -52573,7 +52573,7 @@ msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -52584,7 +52584,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -52597,7 +52597,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -52616,7 +52616,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -52630,7 +52630,7 @@ msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -53223,7 +53223,7 @@ msgid_plural "rock salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -53234,7 +53234,7 @@ msgid_plural "rhodonite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -53247,7 +53247,7 @@ msgid_plural "zincite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -53284,7 +53284,7 @@ msgid_plural "hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -53295,7 +53295,7 @@ msgid_plural "pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -53306,7 +53306,7 @@ msgid_plural "pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -53317,7 +53317,7 @@ msgid_plural "almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -53328,7 +53328,7 @@ msgid_plural "peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -53339,7 +53339,7 @@ msgid_plural "hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -53350,7 +53350,7 @@ msgid_plural "chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -53361,7 +53361,7 @@ msgid_plural "walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -53647,6 +53647,18 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -53658,6 +53670,19 @@ msgstr[1] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -54430,7 +54455,7 @@ msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -54441,7 +54466,7 @@ msgid_plural "smoldering embers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -54646,6 +54671,29 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -54848,7 +54896,7 @@ msgid_plural "superglue" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" @@ -55136,7 +55184,7 @@ msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -55278,7 +55326,7 @@ msgid_plural "concrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "" @@ -56120,7 +56168,7 @@ msgid_plural "clockworks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -56251,7 +56299,7 @@ msgid_plural "chamomile flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -56277,7 +56325,7 @@ msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -56312,7 +56360,7 @@ msgid_plural "mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "" @@ -56359,7 +56407,7 @@ msgid_plural "adobe mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -56372,7 +56420,7 @@ msgid_plural "tanbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -56394,7 +56442,7 @@ msgid_plural "willowbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -56821,7 +56869,7 @@ msgid_plural "raw tobacco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -57128,7 +57176,7 @@ msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -57151,7 +57199,7 @@ msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -57524,6 +57572,98 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -58216,7 +58356,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -58353,7 +58493,7 @@ msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58366,7 +58506,7 @@ msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58396,7 +58536,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58412,7 +58552,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58428,7 +58568,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58444,7 +58584,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58460,7 +58600,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58476,7 +58616,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58492,7 +58632,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58508,7 +58648,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58524,7 +58664,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58540,7 +58680,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58556,7 +58696,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58572,7 +58712,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58588,7 +58728,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58604,7 +58744,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58620,7 +58760,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58636,8 +58776,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58653,7 +58792,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58669,7 +58808,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58685,7 +58824,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58701,7 +58840,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58717,7 +58856,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58733,8 +58872,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58756,7 +58894,7 @@ msgid_plural "misc software" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -58767,7 +58905,7 @@ msgid_plural "hackPRO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "" @@ -58778,7 +58916,7 @@ msgid_plural "MediSoft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "" @@ -58789,7 +58927,7 @@ msgid_plural "MatheMAX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "" @@ -58800,7 +58938,7 @@ msgid_plural "infection data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "" @@ -58811,7 +58949,7 @@ msgid_plural "lab data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -58822,7 +58960,7 @@ msgid_plural "train data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -58833,7 +58971,7 @@ msgid_plural "neural data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -59123,22 +59261,34 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -59146,7 +59296,7 @@ msgid_plural "skinned %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -59385,7 +59535,7 @@ msgid_plural "trifacet remains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -59721,6 +59871,100 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -61440,7 +61684,7 @@ msgid_plural "headphones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -61520,7 +61764,7 @@ msgid_plural "spare parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -62118,7 +62362,7 @@ msgid_plural "bokken" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -62126,14 +62370,14 @@ msgid "" "edge, it's still quite capable of inflicting deadly wounds." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -62679,7 +62923,7 @@ msgid_plural "bionic claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -62900,7 +63144,7 @@ msgid_plural "qiang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -62945,7 +63189,7 @@ msgid_plural "naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -62953,7 +63197,7 @@ msgid "" "or by their wives in defense of the household." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -62961,7 +63205,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -62975,7 +63219,7 @@ msgid_plural "survivor naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -63106,7 +63350,7 @@ msgid_plural "ji" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -63166,6 +63410,20 @@ msgid "" "offers a good bit of slashing power." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -63173,7 +63431,7 @@ msgid_plural "jian" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -63257,14 +63515,14 @@ msgid_plural "tanto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -63278,14 +63536,14 @@ msgid_plural "nodachi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -63423,7 +63681,7 @@ msgid_plural "katana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -63491,7 +63749,7 @@ msgid_plural "wakizashi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -63556,7 +63814,7 @@ msgid_plural "tiger claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -63787,13 +64045,27 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -63809,7 +64081,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -63853,7 +64125,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -64143,7 +64415,7 @@ msgid_plural "scrap copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -64405,7 +64677,7 @@ msgid_plural "splintered wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -64622,17 +64894,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -65826,7 +66098,7 @@ msgid_plural "oars" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -65848,7 +66120,7 @@ msgid_plural "inflatable section" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -65859,7 +66131,7 @@ msgid_plural "inflatable airbag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -66715,7 +66987,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -66729,7 +67001,7 @@ msgid_plural "sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "" @@ -66740,7 +67012,7 @@ msgid_plural "wired sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -66762,7 +67034,7 @@ msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "" @@ -66773,7 +67045,7 @@ msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -66796,7 +67068,7 @@ msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -67020,12 +67292,19 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -67154,6 +67433,17 @@ msgstr[1] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -67589,7 +67879,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -67648,7 +67938,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -67940,7 +68230,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -67953,7 +68243,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -68075,7 +68365,7 @@ msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -68086,7 +68376,7 @@ msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -68277,7 +68567,7 @@ msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68290,7 +68580,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68303,7 +68593,7 @@ msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68316,7 +68606,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68329,7 +68619,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68342,7 +68632,7 @@ msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -68355,7 +68645,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68368,7 +68658,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68381,7 +68671,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68394,7 +68684,7 @@ msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68407,7 +68697,7 @@ msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68420,7 +68710,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -68529,7 +68819,7 @@ msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -68555,7 +68845,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -68568,7 +68858,7 @@ msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -68594,7 +68884,7 @@ msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -68627,7 +68917,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -68974,7 +69264,7 @@ msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -69688,7 +69978,7 @@ msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -71139,7 +71429,7 @@ msgid_plural "subzero talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -71353,7 +71643,7 @@ msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -71474,7 +71764,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71487,7 +71777,7 @@ msgid_plural "Beagle chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72290,6 +72580,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -72434,8 +72735,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -72774,6 +73075,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -73174,7 +73480,7 @@ msgid_plural "tiny fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -73185,7 +73491,7 @@ msgid_plural "small fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -73196,7 +73502,7 @@ msgid_plural "medium fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -73207,7 +73513,7 @@ msgid_plural "large fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -73218,7 +73524,7 @@ msgid_plural "huge fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -73354,7 +73660,7 @@ msgid_plural "whitefish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -73367,7 +73673,7 @@ msgid_plural "largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -73378,7 +73684,7 @@ msgid_plural "smallmouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -73391,7 +73697,7 @@ msgid_plural "striped bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -73404,7 +73710,7 @@ msgid_plural "white bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -73441,7 +73747,7 @@ msgid_plural "sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73452,7 +73758,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73475,7 +73781,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73486,7 +73792,7 @@ msgid_plural "green sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73497,7 +73803,7 @@ msgid_plural "longear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73508,7 +73814,7 @@ msgid_plural "redear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73519,7 +73825,7 @@ msgid_plural "rock bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -73532,7 +73838,7 @@ msgid_plural "calico bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -73567,7 +73873,7 @@ msgid_plural "channel catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -73578,7 +73884,7 @@ msgid_plural "white catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -73675,7 +73981,7 @@ msgid_plural "fallfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -73702,7 +74008,7 @@ msgid_plural "crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -73733,7 +74039,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -73746,7 +74052,7 @@ msgid_plural "giant crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -73759,7 +74065,7 @@ msgid_plural "colossal crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -74412,7 +74718,7 @@ msgid_plural "fused dragonflies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -74599,7 +74905,7 @@ msgstr[1] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -76243,7 +76549,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -76438,7 +76744,7 @@ msgid_plural "moose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -76597,7 +76903,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -76885,10 +77191,11 @@ msgstr[1] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -76899,6 +77206,17 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -79118,7 +79436,7 @@ msgid_plural "sawbones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -79133,7 +79451,7 @@ msgid_plural "doctor burns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -79311,7 +79629,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -79430,17 +79748,18 @@ msgstr[1] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -79874,7 +80193,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -79918,7 +80237,7 @@ msgid_plural "scissorlimbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -79932,7 +80251,7 @@ msgid_plural "hanging innards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -80413,7 +80732,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -82278,7 +82597,7 @@ msgid_plural "wisp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -82822,7 +83141,7 @@ msgid_plural "coelophysis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -82835,7 +83154,7 @@ msgid_plural "dilophosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -82848,7 +83167,7 @@ msgid_plural "ceratosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -82862,7 +83181,7 @@ msgid_plural "spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -82876,7 +83195,7 @@ msgid_plural "allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -82889,7 +83208,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -82903,20 +83222,33 @@ msgid_plural "siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -82929,7 +83261,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -82942,7 +83274,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -82955,7 +83287,7 @@ msgid_plural "compsognathus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -82968,7 +83300,7 @@ msgid_plural "gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -82994,7 +83326,7 @@ msgid_plural "nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -83007,7 +83339,7 @@ msgid_plural "deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -83046,7 +83378,7 @@ msgid_plural "amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -83059,7 +83391,7 @@ msgid_plural "apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -83072,7 +83404,7 @@ msgid_plural "brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -83085,7 +83417,7 @@ msgid_plural "diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -83096,7 +83428,7 @@ msgid_plural "camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -83109,7 +83441,7 @@ msgid_plural "brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -83122,7 +83454,7 @@ msgid_plural "alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -83135,7 +83467,7 @@ msgid_plural "scutellosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -83148,7 +83480,7 @@ msgid_plural "stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -83160,7 +83492,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83173,7 +83505,7 @@ msgid_plural "ankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83186,7 +83518,7 @@ msgid_plural "nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -83198,7 +83530,7 @@ msgid_plural "edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -83211,7 +83543,7 @@ msgid_plural "camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -83224,7 +83556,7 @@ msgid_plural "parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -83235,7 +83567,7 @@ msgid_plural "maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -83248,7 +83580,7 @@ msgid_plural "corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -83261,7 +83593,7 @@ msgid_plural "edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -83272,7 +83604,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -83285,7 +83617,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -83298,7 +83630,7 @@ msgid_plural "pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -83311,7 +83643,7 @@ msgid_plural "kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -83325,7 +83657,7 @@ msgid_plural "torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -83338,7 +83670,7 @@ msgid_plural "triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -83351,7 +83683,7 @@ msgid_plural "dimorphodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -83364,7 +83696,7 @@ msgid_plural "pteranodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -83377,7 +83709,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -83390,7 +83722,7 @@ msgid_plural "mosasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -83403,7 +83735,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -83416,7 +83748,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -83429,7 +83761,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -83442,7 +83774,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -83455,7 +83787,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -83468,7 +83800,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -83481,7 +83813,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -83584,6 +83916,20 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -84097,20 +84443,20 @@ msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" @@ -84170,7 +84516,6 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -84191,25 +84536,88 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" +#. ~ Description for juvenile allosaurus #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -84432,6 +84840,19 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -84542,7 +84963,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -85002,6 +85423,7 @@ msgstr[1] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -85051,6 +85473,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "" msgstr[1] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -85455,6 +85883,19 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -85487,7 +85928,7 @@ msgid_plural "Rage Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -85500,7 +85941,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -85514,7 +85955,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -85572,7 +86013,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -85635,7 +86076,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -85879,12 +86320,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" msgstr[1] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85893,66 +86347,67 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85960,12 +86415,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85974,12 +86429,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85988,16 +86443,16 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -86027,7 +86482,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -86040,7 +86495,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86053,7 +86509,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -86066,20 +86522,26 @@ msgid_plural "skeletal siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86092,7 +86554,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -86118,7 +86580,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -86130,7 +86592,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86143,8 +86605,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86163,7 +86625,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -86177,7 +86639,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -86190,7 +86652,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -86203,7 +86665,7 @@ msgid_plural "armored diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -86216,7 +86678,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -86229,7 +86691,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -86242,7 +86704,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -86255,7 +86717,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -86268,7 +86730,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -86282,7 +86744,7 @@ msgid_plural "Bone Fortress" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -86296,7 +86758,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86309,7 +86771,7 @@ msgid_plural "armored edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86322,7 +86784,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -86335,7 +86797,7 @@ msgid_plural "armored maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -86348,7 +86810,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -86361,7 +86823,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -86374,7 +86836,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -86387,7 +86849,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -86400,7 +86862,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -86413,7 +86875,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -86426,7 +86888,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -86439,7 +86901,7 @@ msgid_plural "armored torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -86452,7 +86914,7 @@ msgid_plural "armored triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -86465,7 +86927,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -86479,7 +86941,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -86493,7 +86955,7 @@ msgid_plural "Goliath Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -86506,7 +86968,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -86519,7 +86981,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -86560,7 +87022,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -86576,7 +87038,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -86889,7 +87351,7 @@ msgid_plural "forge hounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -87195,7 +87657,7 @@ msgid_plural "hunllef rams" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -87328,6 +87790,22 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -87605,7 +88083,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -87887,7 +88365,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -92959,7 +93437,7 @@ msgstr[1] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -93003,7 +93481,7 @@ msgstr "" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -93911,7 +94389,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -94499,17 +94977,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -94518,7 +94996,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -94741,7 +95219,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -94755,6 +95232,14 @@ msgid_plural "military flight helmets (on)" msgstr[0] "" msgstr[1] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -95105,7 +95590,7 @@ msgid_plural "bagpipes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -95732,7 +96217,7 @@ msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -95807,7 +96292,7 @@ msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -96549,7 +97034,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -98334,7 +98819,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -98342,7 +98827,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -98427,7 +98912,7 @@ msgid_plural "dao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -98477,7 +98962,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -98485,7 +98970,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -98517,7 +99002,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -98606,14 +99091,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -98627,7 +99112,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -98787,7 +99272,7 @@ msgid_plural "synthetic fabric" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -99528,7 +100013,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -101845,8 +102330,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -102527,6 +103012,39 @@ msgstr[1] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -103223,7 +103741,7 @@ msgid_plural "shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -103234,7 +103752,7 @@ msgid_plural "electric shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -103278,6 +103796,32 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -103823,7 +104367,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -103837,7 +104381,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -104314,8 +104858,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -104323,8 +104867,8 @@ msgid_plural "%s (happy)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -104332,8 +104876,8 @@ msgid_plural "%s (focus)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -104341,8 +104885,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -104350,7 +104894,7 @@ msgid_plural "%s (wake up)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -104791,7 +105335,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -105022,13 +105566,13 @@ msgid_plural "loose caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -105041,13 +105585,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -105511,6 +106055,21 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -105791,13 +106350,28 @@ msgid_plural "pliers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -105851,6 +106425,33 @@ msgid "" "to have the right tools for more precise work." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -105976,18 +106577,46 @@ msgid "" msgstr "" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" msgstr[0] "" msgstr[1] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -106284,36 +106913,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -106344,6 +106943,12 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -106566,8 +107171,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -107008,7 +107613,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -107430,7 +108035,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -107477,7 +108082,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -107495,7 +108100,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -108500,6 +109105,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -108551,6 +109165,30 @@ msgstr[1] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -109455,7 +110093,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -109932,6 +110570,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -110802,15 +111444,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" +msgid "Intradermal Alloy - Arms" msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -110826,37 +111467,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" +msgid "Intradermal Alloy - Legs" msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -110867,8 +111507,8 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -116383,7 +117023,7 @@ msgstr "" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -121129,8 +121769,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "" @@ -121146,9 +121785,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "" @@ -121824,7 +122462,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "" @@ -124099,7 +124737,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "" @@ -124221,6 +124860,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -126739,14 +127392,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -126885,16 +127538,16 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -127865,14 +128518,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -130133,6 +130786,19 @@ msgid_plural "acid dart guns" msgstr[0] "" msgstr[1] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -132648,8 +133314,9 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -132661,10 +133328,10 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -133166,17 +133833,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -135504,6 +136175,11 @@ msgid "" "the punishment of combat." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -136343,6 +137019,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "" @@ -136511,6 +137194,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -137623,6 +138310,10 @@ msgstr "" msgid "Move cursor down" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -137823,6 +138514,20 @@ msgstr "" msgid "No" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -139209,13 +139914,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -139277,13 +139982,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -139892,13 +140597,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -143333,6 +144038,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -143755,8 +144470,8 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -143780,7 +144495,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -143794,7 +144510,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -143807,9 +144523,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "" @@ -143969,7 +144714,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -143984,7 +144729,8 @@ msgstr "" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -144014,17 +144760,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -144035,10 +144780,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144049,9 +144808,10 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -144066,33 +144826,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" +"\n" +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -144183,6 +144964,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "" @@ -144240,7 +145035,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -144254,8 +145049,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144269,6 +145065,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -144320,6 +145117,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "" @@ -144405,6 +145215,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "" @@ -144551,6 +145376,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "" @@ -144887,16 +145727,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -144999,7 +145840,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -145106,33 +145947,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -145253,7 +146094,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -145451,6 +146292,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -145511,10 +146367,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -145615,10 +146472,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -146262,7 +147120,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -146272,11 +147145,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146370,6 +147244,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -146382,21 +147270,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146474,6 +147363,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -148106,7 +149009,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -148301,7 +149204,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -148506,7 +149409,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -148560,8 +149463,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -148721,7 +149623,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -148735,7 +149637,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -148774,7 +149676,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -148809,7 +149711,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -148840,7 +149742,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -148882,7 +149784,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -148924,16 +149826,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -148980,7 +149916,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -149030,7 +149966,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -149072,7 +150008,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -149121,7 +150057,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -149148,7 +150084,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -149183,7 +150119,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -150049,7 +150985,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -150084,7 +151020,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -150121,7 +151057,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -150156,7 +151092,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -150184,7 +151120,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -150236,7 +151172,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -150267,7 +151203,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -150296,7 +151232,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -150326,7 +151262,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -150595,8 +151531,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -150997,7 +151932,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -151038,7 +151973,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -151065,7 +152000,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -151147,7 +152082,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -151184,7 +152119,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -151228,7 +152163,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -151277,7 +152212,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -151319,7 +152254,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -151360,7 +152295,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -151395,7 +152330,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -151440,7 +152375,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -151451,6 +152386,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -151597,7 +152590,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -151652,7 +152645,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -151691,7 +152684,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -151728,11 +152721,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -151758,15 +152803,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -151823,7 +152864,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -151873,7 +152914,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -151918,7 +152959,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -151959,11 +153000,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -152006,7 +153048,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -152054,7 +153096,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -152098,7 +153140,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -153757,7 +154799,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -153776,7 +154818,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -153803,7 +154845,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -153837,7 +154879,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -153884,7 +154926,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -154660,6 +155702,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -155352,13 +156418,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -156088,6 +157154,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -156996,7 +158084,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -157007,6 +158094,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -157138,7 +158232,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -157382,8 +158476,8 @@ msgstr "" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" #: lang/json/mutation_from_json.py @@ -160360,8 +161454,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -160601,7 +161695,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160610,7 +161704,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160619,7 +161713,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160628,7 +161722,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160646,7 +161740,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160655,7 +161749,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160664,7 +161758,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160673,7 +161767,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160691,7 +161785,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160700,7 +161794,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160710,7 +161804,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160720,7 +161814,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160750,7 +161844,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160759,7 +161853,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160768,7 +161862,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160777,7 +161871,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -161275,7 +162369,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -161394,7 +162488,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -165903,6 +166997,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -165938,6 +167033,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -166496,6 +167599,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -166631,6 +167742,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -166799,6 +167914,10 @@ msgstr "" msgid "Guard" msgstr "" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "" @@ -166967,6 +168086,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -167902,6 +169025,10 @@ msgstr "" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -168591,6 +169718,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -168599,24 +169730,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -168983,6 +170130,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -170439,6 +171590,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -170549,6 +171754,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -170585,7 +171818,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -170598,7 +171831,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -171191,6 +172424,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -171447,6 +172706,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -171573,6 +172886,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -171621,6 +172962,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -171643,6 +173012,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -176197,6 +177618,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -180547,6 +182026,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -185502,6 +187003,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -185546,6 +187569,63 @@ msgstr "" msgid "Farm processing shack" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "" @@ -185601,6 +187681,524 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "" @@ -185805,6 +188403,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -186499,6 +189473,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -186764,60 +190377,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -187652,7 +191574,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187664,12 +191590,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187677,11 +191613,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187844,6 +191790,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -189981,6 +193983,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -190293,7 +194321,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -191031,8 +195059,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -191802,15 +195830,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -196857,6 +200886,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -196865,7 +201160,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -196982,7 +201277,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -201567,7 +205862,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -201626,7 +205921,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -201639,7 +205934,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -201657,17 +205952,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -201746,7 +206041,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -201856,8 +206151,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -202265,7 +206560,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -202275,8 +206570,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -203698,6 +207993,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -205994,7 +210351,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "" @@ -206655,6 +211012,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -206673,6 +211142,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -207840,6 +212324,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -210166,6 +214728,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -210275,6 +214844,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -210298,6 +214885,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -211808,7 +216402,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -211978,19 +216572,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -212063,95 +216657,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" +msgid "\"Wanna play with me?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" +msgid "\"Sing with me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" +msgid "\"Please take me with you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" +msgid "\"May I have a cookie?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -212159,31 +216757,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" +msgid "\"Hey kids. Want some candy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -212199,19 +216797,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -213278,6 +217872,10 @@ msgstr "" msgid "Gun Store" msgstr "" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "" @@ -214711,6 +219309,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -221931,6 +226533,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -222577,6 +227957,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -222646,6 +228030,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -225078,10 +230473,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -228874,10 +234265,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -229206,6 +234593,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -229497,6 +234993,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -229587,6 +235092,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -232358,6 +237915,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -232543,20 +238117,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -233164,20 +238724,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "" @@ -233213,54 +238759,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -233344,20 +238880,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -233476,34 +238998,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -233519,45 +239013,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -233641,17 +239135,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -233693,7 +239187,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -233706,6 +239200,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -233852,20 +239350,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -233970,20 +239454,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -234084,20 +239554,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -234422,41 +239878,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -234657,20 +240109,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -235431,20 +240869,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -235543,20 +240967,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -235599,20 +241009,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -237853,6 +243249,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "" @@ -241242,24 +246650,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -241267,32 +246675,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -241300,35 +246708,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -241336,33 +246739,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -241370,10 +246773,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -241381,10 +246784,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -241392,40 +246795,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -241433,21 +246834,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -241455,44 +246852,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -241500,14 +246888,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -241525,12 +246909,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -241538,21 +246917,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -241560,10 +246935,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -241571,7 +246946,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -241580,10 +246955,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -241592,21 +246967,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -241614,10 +246985,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -241626,10 +246997,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -241637,7 +247008,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -241646,26 +247017,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -241679,11 +247050,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -244186,18 +249553,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "" @@ -244560,6 +250034,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -245037,6 +250562,15 @@ msgstr "" msgid "wooden aisle" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -245170,6 +250704,10 @@ msgstr "" msgid "wood table" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -245238,6 +250776,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -245344,6 +250886,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -246527,8 +252075,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -249241,6 +254789,18 @@ msgstr "" msgid "Coverage:" msgstr "" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "" @@ -249332,8 +254892,9 @@ msgstr "" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -249345,6 +254906,12 @@ msgstr "" msgid "Storage (%s)" msgstr "" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "" @@ -253530,11 +259097,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "" @@ -253845,6 +259407,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -256011,10 +261581,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -256555,6 +262121,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -256981,6 +262555,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -257069,6 +262648,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -257822,7 +263406,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -257844,15 +263428,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -261184,6 +266759,10 @@ msgstr "" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -261468,6 +267047,15 @@ msgstr "" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "" @@ -263777,10 +269365,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "" @@ -263921,6 +269505,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -264280,10 +269872,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -264810,13 +270398,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -268121,6 +273702,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -271124,13 +276720,15 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" +msgid "Set the timer to how many seconds (0 to cancel)?" msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -271867,8 +277465,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -272090,38 +277687,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -273346,87 +278911,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -276244,7 +281752,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -281166,6 +286686,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -282035,21 +287560,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -282313,11 +287823,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -283987,11 +289506,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -284756,6 +290270,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -284763,14 +290286,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -287086,20 +292614,6 @@ msgstr "" msgid "# Unexplored" msgstr "" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -287440,6 +292954,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -287488,6 +293007,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -289879,6 +295402,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -294191,6 +299724,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "" diff --git a/lang/po/fr.po b/lang/po/fr.po index d82083fe8e886..d333ac7c9b789 100644 --- a/lang/po/fr.po +++ b/lang/po/fr.po @@ -23,18 +23,19 @@ # Bob léponge, 2021 # Guillaume Blain, 2021 # 8ctopus , 2021 -# Jazz , 2021 # Martin Lehoux , 2021 # Argasm Voragz , 2021 +# Maxime Bouillot, 2021 # Mickaël Falck , 2021 +# Jazz , 2021 # msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" -"Last-Translator: Mickaël Falck , 2021\n" +"Last-Translator: Jazz , 2021\n" "Language-Team: French (https://www.transifex.com/cataclysm-dda-translators/teams/2217/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,7 +49,7 @@ msgid_plural "battery" msgstr[0] "pile" msgstr[1] "piles" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -63,7 +64,7 @@ msgid_plural "butane" msgstr[0] "butane" msgstr[1] "butane" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Un liquide combustible utilisé dans des briquets." @@ -74,7 +75,7 @@ msgid_plural "aerosol paint" msgstr[0] "peinture aérosol" msgstr[1] "peinture aérosol" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -89,7 +90,7 @@ msgid_plural "permanent ink" msgstr[0] "encre indélébile" msgstr[1] "encre indélébile" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -104,7 +105,7 @@ msgid_plural "candle wax" msgstr[0] "cire de bougie" msgstr[1] "cire de bougie" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "" @@ -116,7 +117,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "composant pyrotechnique" msgstr[1] "composants pyrotechniques" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "Un composant chimique utilisé pour des signaux lumineux." @@ -142,7 +143,7 @@ msgid_plural "oxygen" msgstr[0] "oxygène" msgstr[1] "oxygènes" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Oxygène médical comprimé." @@ -153,7 +154,7 @@ msgid_plural "aluminum foil" msgstr[0] "papier d'aluminium" msgstr[1] "papiers d'aluminium" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -179,7 +180,7 @@ msgid_plural "thread" msgstr[0] "fil" msgstr[1] "fils" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -216,7 +217,7 @@ msgid_plural "yarn" msgstr[0] "fil de laine" msgstr[1] "fils de laine" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Fil de laine, pouvant servir à tricoter des vêtements." @@ -238,7 +239,7 @@ msgid_plural "duct tape" msgstr[0] "ruban adhésif" msgstr[1] "ruban adhésif" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -306,8 +307,8 @@ msgid_plural "plutonium slurry" msgstr[0] "boue de plutonium" msgstr[1] "boue de plutonium" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -377,7 +378,7 @@ msgid_plural "bearings" msgstr[0] "roulements" msgstr[1] "roulements:roulements" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -429,7 +430,7 @@ msgid_plural "120mm HEAT" msgstr[0] "120mm HEAT" msgstr[1] "120mm HEATs" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -458,7 +459,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "mélange de poudre à canon sans fumée" msgstr[1] "mélange de poudre à canon sans fumée" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -476,7 +477,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "poudre sans fumée pour fusil à pompe" msgstr[1] "poudre sans fumée pour fusil à pompe" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "Poudre pour arme à feu conçue pour les munitions de fusil à pompe. " @@ -487,7 +488,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "poudre sans fumée pour pistolet" msgstr[1] "poudre sans fumée pour pistolet" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "Poudre pour arme à feu conçue pour les munitions de pistolet." @@ -498,7 +499,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "poudre sans fumée pour magnum" msgstr[1] "poudre sans fumée pour magnum" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -510,7 +511,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "poudre sans fumée pour fusil" msgstr[1] "poudre sans fumée pour fusil" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "Poudre pour arme a feu conçue pour les munitions de fusil." @@ -521,7 +522,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "poudre sans fumée pour fusil \"overbore\"" msgstr[1] "poudres sans fumée pour fusil \"overbore\"" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "Poudre pour arme a feu conçue pour les munitions de fusil d'assaut." @@ -532,7 +533,7 @@ msgid_plural "artillery propellant" msgstr[0] "propergol d’artillerie" msgstr[1] "propergol d’artillerie" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -546,7 +547,7 @@ msgid_plural "oxidizer powder" msgstr[0] "poudre oxydante" msgstr[1] "poudres oxydantes" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Poudre chimique oxydante volatile." @@ -557,7 +558,7 @@ msgid_plural "lye powder" msgstr[0] "Poudre de soude caustique" msgstr[1] "Poudres de soude caustique" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "De la soude caustique en poudre." @@ -649,7 +650,7 @@ msgid_plural "copper" msgstr[0] "cuivre" msgstr[1] "cuivre" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -664,7 +665,7 @@ msgid_plural "medical tape" msgstr[0] "rouleau de sparadrap" msgstr[1] "rouleaux de sparadrap" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Un rouleau de sparadrap, similaire au ruban adhésif." @@ -676,7 +677,7 @@ msgstr[0] "munition fictive" msgstr[1] "munitions fictive" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "SI VOUS VOYEZ CELA, C'EST UN BOGUE." @@ -687,7 +688,7 @@ msgid_plural "charcoal" msgstr[0] "charbon de bois" msgstr[1] "charbon de bois" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -705,7 +706,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "carbure de calcium pré-mixé" msgstr[1] "carbure de calcium pré-mixé" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -735,7 +736,7 @@ msgid_plural "albuterol" msgstr[0] "salbutamol" msgstr[1] "salbutamol" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -834,7 +835,7 @@ msgid_plural "nicotine liquid" msgstr[0] "liquide à la nicotine" msgstr[1] "liquide à la nicotine" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -849,7 +850,7 @@ msgid_plural "fish bait" msgstr[0] "appât à poisson" msgstr[1] "appâts à poisson" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Un appât utilisé dans des pièges pour attirer les poissons." @@ -911,7 +912,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "charbon de bois inachevé" msgstr[1] "charbon de bois inachevé" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -926,7 +927,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "carbure de calcium inachevé" msgstr[1] "carbure de calcium inachevé" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -954,7 +955,7 @@ msgid_plural "nitrox" msgstr[0] "nitrox" msgstr[1] "nitrox" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -967,7 +968,7 @@ msgid_plural "extinguishing agent" msgstr[0] "agent extincteur" msgstr[1] "agent extincteur" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Solution chimique permettant d'éteindre efficacement des feux." @@ -978,7 +979,7 @@ msgid_plural "tinder" msgstr[0] "amadou" msgstr[1] "amadou" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "Matériau inflammable, finement moulu pour une combustion facile." @@ -1011,7 +1012,7 @@ msgid_plural "bronze" msgstr[0] "bronze" msgstr[1] "bronze" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -1024,7 +1025,7 @@ msgid_plural "glowstick juice" msgstr[0] "jus de bâtons lumineux" msgstr[1] "jus de bâtons lumineux" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -1038,7 +1039,7 @@ msgid_plural "graphite" msgstr[0] "graphite" msgstr[1] "graphite" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1055,7 +1056,7 @@ msgid_plural "black pen ink" msgstr[0] "encre noir" msgstr[1] "encre noir" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1070,7 +1071,7 @@ msgid_plural "blue pen ink" msgstr[0] "encre bleue" msgstr[1] "encre bleue" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1086,7 +1087,7 @@ msgid_plural "green pen ink" msgstr[0] "encre verte" msgstr[1] "encre verte" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1101,7 +1102,7 @@ msgid_plural "red pen ink" msgstr[0] "encre rouge" msgstr[1] "encre rouge" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1134,7 +1135,7 @@ msgid_plural "sulfur" msgstr[0] "soufre" msgstr[1] "soufre" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1164,7 +1165,7 @@ msgid_plural "cement" msgstr[0] "ciment" msgstr[1] "ciment" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1179,7 +1180,7 @@ msgid_plural "gravel" msgstr[0] "gravier" msgstr[1] "graviers" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1192,7 +1193,7 @@ msgid_plural "limestone" msgstr[0] "calcaire" msgstr[1] "calcaire" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1209,7 +1210,7 @@ msgid_plural "quicklime" msgstr[0] "chaux vive" msgstr[1] "chaux vive" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1229,7 +1230,7 @@ msgid_plural "sand" msgstr[0] "sable" msgstr[1] "sable" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1244,7 +1245,7 @@ msgid_plural "soil" msgstr[0] "terre" msgstr[1] "terre" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1259,7 +1260,7 @@ msgid_plural "aluminum powder" msgstr[0] "poudre d'aluminium" msgstr[1] "poudre d'aluminium" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1278,7 +1279,7 @@ msgid_plural "zinc powder" msgstr[0] "poudre de zinc" msgstr[1] "poudre de zinc" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1297,7 +1298,7 @@ msgid_plural "zinc oxide" msgstr[0] "oxyde de zinc" msgstr[1] "oxydes de zinc" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1312,7 +1313,7 @@ msgid_plural "manganese dioxide" msgstr[0] "dioxydes de manganèse" msgstr[1] "dioxydes de manganèse" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1329,7 +1330,7 @@ msgid_plural "potassium chloride" msgstr[0] "chlorure de potassium" msgstr[1] "chlorures de potassium" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1348,7 +1349,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "hydroxyde de potassium" msgstr[1] "hydroxydes de potassium" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1366,7 +1367,7 @@ msgid_plural "acetone" msgstr[0] "acétone" msgstr[1] "acétone" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1383,7 +1384,7 @@ msgid_plural "chromium oxide" msgstr[0] "Oxyde de chrome" msgstr[1] "oxyde de chrome" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1404,7 +1405,7 @@ msgid_plural "calcium carbide" msgstr[0] "carbure de calcium" msgstr[1] "carbure de calcium" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1424,7 +1425,7 @@ msgid_plural "hexamine" msgstr[0] "Méthénamine" msgstr[1] "hexamine" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1446,7 +1447,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "peroxyde d'hydrogène (concentré)" msgstr[1] "peroxyde d'hydrogène (concentré)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1464,7 +1465,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "nitrate d'ammonium" msgstr[1] "nitrate d'ammonium" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1483,7 +1484,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "granules de nitrate d’ammonium" msgstr[1] "granules de nitrate d’ammonium" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1502,7 +1503,7 @@ msgid_plural "saltpeter" msgstr[0] "salpêtre" msgstr[1] "salpêtre" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1519,7 +1520,7 @@ msgid_plural "niter" msgstr[0] "nitre" msgstr[1] "nitre" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1534,7 +1535,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "sulfate d'aluminium" msgstr[1] "sulfate d'aluminium" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1556,7 +1557,7 @@ msgid_plural "acetic acid" msgstr[0] "acide acétique" msgstr[1] "acide acétique" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1575,7 +1576,7 @@ msgid_plural "formaldehyde" msgstr[0] "méthanal" msgstr[1] "méthanal" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1594,7 +1595,7 @@ msgid_plural "thermite" msgstr[0] "thermite" msgstr[1] "thermite" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1612,7 +1613,7 @@ msgid_plural "ANFO" msgstr[0] "ANFO" msgstr[1] "ANFO" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1632,7 +1633,7 @@ msgid_plural "black gunpowder" msgstr[0] "poudre noire" msgstr[1] "poudre noire" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1651,7 +1652,7 @@ msgid_plural "match head powder" msgstr[0] "poudre de tête d’allumette" msgstr[1] "poudre de tête d’allumettes" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1668,7 +1669,7 @@ msgid_plural "RDX" msgstr[0] "RDX" msgstr[1] "RDX" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1686,7 +1687,7 @@ msgid_plural "composition b" msgstr[0] "composition b" msgstr[1] "composition b" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1703,7 +1704,7 @@ msgid_plural "HMTD" msgstr[0] "HMTD" msgstr[1] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1721,7 +1722,7 @@ msgid_plural "APEX" msgstr[0] "APEX" msgstr[1] "APEX" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1739,7 +1740,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "carburant de fusée improvisé" msgstr[1] "carburant de fusée improvisé" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1753,7 +1754,7 @@ msgid_plural "detergent" msgstr[0] "détergent" msgstr[1] "détergent" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "Une poudre de lavage populaire avant le Cataclysme." @@ -1764,7 +1765,7 @@ msgid_plural "soap flakes" msgstr[0] "copeau de savon" msgstr[1] "copeaux de savon" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1833,7 +1834,7 @@ msgid_plural "concentrated venom" msgstr[0] "venin concentré" msgstr[1] "Venins concentrés" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1852,7 +1853,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "paralytique concentré" msgstr[1] "paralytiques concentrés" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1872,7 +1873,7 @@ msgid_plural "rocuronium" msgstr[0] "rocuronium" msgstr[1] "rocuronium" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1883,10 +1884,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "red phosphorous" msgid_plural "red phosphorous" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "phosphore rouge" +msgstr[1] "phosphore rouge" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1896,10 +1897,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "iodine crystal" msgid_plural "iodine crystal" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "cristal d'iode" +msgstr[1] "cristaux d'iode" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1912,7 +1913,7 @@ msgid_plural "ethanol" msgstr[0] "éthanol" msgstr[1] "éthanol" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1947,7 +1948,7 @@ msgid_plural "methanol" msgstr[0] "méthanol" msgstr[1] "méthanols" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1963,7 +1964,7 @@ msgid_plural "diesel" msgstr[0] "diesel" msgstr[1] "diesel" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1975,7 +1976,7 @@ msgid_plural "JP8 fuel" msgstr[0] "carburant JP8" msgstr[1] "carburant JP8" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1991,7 +1992,7 @@ msgid_plural "avgas fuel" msgstr[0] "carburant d’aviation" msgstr[1] "carburant d’aviation" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -2003,7 +2004,7 @@ msgid_plural "biodiesel" msgstr[0] "biodiesel" msgstr[1] "biodiesel" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -2019,7 +2020,7 @@ msgid_plural "gasoline" msgstr[0] "essence" msgstr[1] "essence" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -2034,7 +2035,7 @@ msgid_plural "lamp oil" msgstr[0] "huile de lampe" msgstr[1] "huile de lampe" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "Une huile fine conçue pour une utilisation dans des lampes à huile." @@ -2045,7 +2046,7 @@ msgid_plural "motor oil" msgstr[0] "huile de moteur" msgstr[1] "huile de moteur" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "Une huile conçu pour l'utilisation dans les moteurs de voitures." @@ -2056,7 +2057,7 @@ msgid_plural "napalm" msgstr[0] "napalm" msgstr[1] "napalm" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2073,7 +2074,7 @@ msgid_plural "gelled gasoline" msgstr[0] "essence gélifiée" msgstr[1] "essence gélifiée" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2090,7 +2091,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "carburant pour lance-flammes" msgstr[1] "carburant pour lance-flammes" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2137,7 +2138,7 @@ msgid_plural "shrapnel" msgstr[0] "shrapnel" msgstr[1] "shrapnels" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "Un éclat tordu et dentelé de métal" @@ -2194,7 +2195,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2220,7 +2221,7 @@ msgid_plural "H&K 12mm" msgstr[0] "H&K 12mm" msgstr[1] "H&K 12mm" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2266,7 +2267,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2296,7 +2297,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2345,7 +2346,7 @@ msgid_plural "20x66mm frag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2362,7 +2363,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2378,7 +2379,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2410,7 +2411,7 @@ msgid_plural ".22 CB" msgstr[0] ".22 CB" msgstr[1] ".22 CB" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2428,7 +2429,7 @@ msgid_plural ".22 FMJ" msgstr[0] ".22 FMJ" msgstr[1] ".22 FMJ" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2446,7 +2447,7 @@ msgid_plural ".22 LR" msgstr[0] ".22 LR" msgstr[1] ".22 LR" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2464,7 +2465,7 @@ msgid_plural ".22 rat-shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2506,7 +2507,7 @@ msgid_plural ".223 Remington" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2523,7 +2524,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2539,7 +2540,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2556,7 +2557,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2574,7 +2575,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2592,7 +2593,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2643,7 +2644,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2700,7 +2701,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2718,7 +2719,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2735,7 +2736,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2753,7 +2754,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2873,7 +2874,7 @@ msgid_plural ".308 Winchester" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2890,7 +2891,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2907,7 +2908,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2958,7 +2959,7 @@ msgid_plural ".32 ACP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2985,7 +2986,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2999,7 +3000,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -3037,7 +3038,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -3053,7 +3054,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3109,7 +3110,7 @@ msgid_plural ".38 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3139,7 +3140,7 @@ msgid_plural ".38 Super" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3185,7 +3186,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3205,7 +3206,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3225,7 +3226,7 @@ msgid_plural ".380 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3274,7 +3275,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3297,7 +3298,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3314,7 +3315,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3361,7 +3362,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3378,7 +3379,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3392,7 +3393,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3406,7 +3407,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3420,8 +3421,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3435,8 +3436,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3479,8 +3480,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3494,8 +3495,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3553,7 +3554,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3568,7 +3569,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3600,7 +3601,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3614,8 +3615,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3641,8 +3642,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3673,7 +3674,7 @@ msgid_plural ".410 000 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3692,7 +3693,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3760,7 +3761,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3773,7 +3774,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3790,7 +3791,7 @@ msgid_plural ".45 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3834,7 +3835,7 @@ msgid_plural ".454 Casull" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3867,7 +3868,7 @@ msgid_plural ".45-70 SP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3901,7 +3902,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3915,7 +3916,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3951,7 +3952,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3969,7 +3970,7 @@ msgid_plural ".45-70, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3984,7 +3985,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -4011,7 +4012,7 @@ msgid_plural "4.6x30mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -4028,8 +4029,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -4050,7 +4051,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -4063,7 +4064,7 @@ msgid_plural ".460 Rowland" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4091,7 +4092,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4112,7 +4113,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4129,7 +4130,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4145,7 +4146,7 @@ msgid_plural ".50 BMG Match" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4158,7 +4159,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4174,7 +4175,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -4193,7 +4194,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4211,7 +4212,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -4227,7 +4228,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -4288,7 +4289,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -4307,7 +4308,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -4322,7 +4323,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -4339,7 +4340,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -4366,7 +4367,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4389,8 +4390,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4481,7 +4482,7 @@ msgid_plural "66mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -4494,7 +4495,7 @@ msgid_plural ".700 NX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4525,7 +4526,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4545,7 +4546,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4564,7 +4565,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4602,7 +4603,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4636,7 +4637,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4666,7 +4667,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4744,7 +4745,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4759,7 +4760,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4774,7 +4775,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4791,7 +4792,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4808,7 +4809,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4827,7 +4828,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4846,7 +4847,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4863,7 +4864,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4882,7 +4883,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4895,7 +4896,7 @@ msgid_plural "9x19mm +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4911,7 +4912,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4963,7 +4964,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4980,7 +4981,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4997,7 +4998,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -5024,7 +5025,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5042,7 +5043,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5060,7 +5061,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5078,7 +5079,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -5104,7 +5105,7 @@ msgid_plural "cannon round shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -5117,7 +5118,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "gaz toxique pulvérisable" msgstr[1] "gaz toxique pulvérisable" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -5133,7 +5134,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "fongicide pulvérisable" msgstr[1] "fongicide pulvérisable" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -5149,7 +5150,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "insecticide pulvérisable" msgstr[1] "insecticide pulvérisable" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -5277,7 +5278,7 @@ msgid_plural "paintball" msgstr[0] "paintball" msgstr[1] "paintball" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -5396,7 +5397,7 @@ msgid_plural "00 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -5413,7 +5414,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -5426,7 +5427,7 @@ msgid_plural "birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -5488,8 +5489,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5646,7 +5647,7 @@ msgid_plural "oxyacetylene" msgstr[0] "oxy acétylène" msgstr[1] "oxy acétylène" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5661,7 +5662,7 @@ msgid_plural "fungal seeds" msgstr[0] "graines de champignon" msgstr[1] "graine de champignon" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Quelques semences de champignon." @@ -6492,7 +6493,7 @@ msgid_plural "red paint" msgstr[0] "peinture rouge" msgstr[1] "peinture rouge" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Un pot de peinture rouge." @@ -6503,7 +6504,7 @@ msgid_plural "blue paint" msgstr[0] "peinture bleue" msgstr[1] "peinture bleue" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Un pot de peinture bleue." @@ -6514,7 +6515,7 @@ msgid_plural "white paint" msgstr[0] "peinture blanche" msgstr[1] "peinture blanche" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Un pot de peinture blanche." @@ -6525,7 +6526,7 @@ msgid_plural "green paint" msgstr[0] "peinture verte" msgstr[1] "peinture verte" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Un pot de peinture verte." @@ -6536,7 +6537,7 @@ msgid_plural "purple paint" msgstr[0] "peinture violette" msgstr[1] "peinture violette" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Un pot de peinture pourpre." @@ -6547,7 +6548,7 @@ msgid_plural "yellow paint" msgstr[0] "peinture jaune" msgstr[1] "peinture jaune" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Un pot de peinture jaune." @@ -6617,7 +6618,7 @@ msgid_plural "bismuth" msgstr[0] "bismuth" msgstr[1] "bismuth" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -6629,8 +6630,8 @@ msgid_plural "gold" msgstr[0] "or" msgstr[1] "or" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -6651,7 +6652,7 @@ msgid_plural "zinc" msgstr[0] "zinc" msgstr[1] "zinc" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6666,7 +6667,7 @@ msgid_plural "lead" msgstr[0] "plomb" msgstr[1] "plomb" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6682,7 +6683,7 @@ msgid_plural "magnesium powder" msgstr[0] "poudres de magnesium" msgstr[1] "poudre de magnesium" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6697,7 +6698,7 @@ msgid_plural "silver" msgstr[0] "argent" msgstr[1] "argent" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -6762,7 +6763,7 @@ msgid_plural "tin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -6777,7 +6778,7 @@ msgid_plural "solder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -6817,7 +6818,7 @@ msgid_plural "fuse" msgstr[0] "mèche" msgstr[1] "mèche" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -6872,7 +6873,7 @@ msgid_plural "cotton scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -6886,7 +6887,7 @@ msgid_plural "faux fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -6899,7 +6900,7 @@ msgid_plural "felt scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -6913,7 +6914,7 @@ msgid_plural "fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -6926,7 +6927,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -6941,7 +6942,7 @@ msgid_plural "leather scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -6954,7 +6955,7 @@ msgid_plural "Lycra scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -6967,7 +6968,7 @@ msgid_plural "neoprene scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -6980,7 +6981,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -6993,7 +6994,7 @@ msgid_plural "Nomex scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -7019,7 +7020,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -7044,7 +7045,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -7069,7 +7070,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -7109,7 +7110,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -7136,7 +7137,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -7164,7 +7165,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -7189,7 +7190,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -7283,7 +7284,7 @@ msgid_plural "titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -7311,7 +7312,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -7326,7 +7327,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -7341,7 +7342,7 @@ msgid_plural "25mm canister shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -7357,7 +7358,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -7372,7 +7373,7 @@ msgid_plural "7.50mm RP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -7389,7 +7390,7 @@ msgid_plural "electric charge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -7402,7 +7403,7 @@ msgid_plural "foamcrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -7418,7 +7419,7 @@ msgid_plural "solid hydrogen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -7431,7 +7432,7 @@ msgid_plural "lead pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -7445,7 +7446,7 @@ msgid_plural "domed HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -7459,7 +7460,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -7472,7 +7473,7 @@ msgid_plural "alloy pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -7617,7 +7618,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7632,7 +7633,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7671,7 +7672,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -7687,7 +7688,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -7727,7 +7728,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7743,7 +7744,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7783,7 +7784,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7799,7 +7800,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7839,7 +7840,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -7851,7 +7852,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -7864,7 +7865,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7880,7 +7881,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7907,7 +7908,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -7920,7 +7921,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -7934,7 +7935,7 @@ msgid_plural "rocket, smoke" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -7960,7 +7961,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -7973,7 +7974,7 @@ msgid_plural "shotshell, slug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -7987,7 +7988,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -8037,7 +8038,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -8088,7 +8089,7 @@ msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -8141,7 +8142,7 @@ msgid_plural "dragon blood" msgstr[0] "sang de dragon" msgstr[1] "sang de dragon" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -8171,7 +8172,7 @@ msgid_plural "parabolan yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -8182,7 +8183,7 @@ msgid_plural "crystallized mana" msgstr[0] "mana cristallisé" msgstr[1] "manas cristallisés" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -8220,7 +8221,7 @@ msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -8237,7 +8238,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -8736,7 +8737,7 @@ msgstr[1] "Sacoches à munitions" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -8752,7 +8753,7 @@ msgstr "Vous rangez votre %s." #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -8788,7 +8789,7 @@ msgid_plural "chest rig" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -9698,38 +9699,19 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "ceinture de survivant" -msgstr[1] "ceintures de survivant" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "ceinture à outils" +msgstr[1] "ceintures à outils" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "Vous mettez votre %1$s dans votre %2$s" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "ceinture à outils" -msgstr[1] "ceintures à outils" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -9884,25 +9866,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "bottes de feu de survie" -msgstr[1] "bottes de feu de survie" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -9920,45 +9883,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "bottes de combinaison" -msgstr[1] "bottes de combinaison" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -9970,26 +9894,6 @@ msgstr[1] "bottes de randonnée" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "bottes de survie lourdes" -msgstr[1] "bottes de survie lourdes" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -10008,26 +9912,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "bottes de survie légères" -msgstr[1] "bottes de survie légères" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -10100,20 +9984,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "bottes de survie" -msgstr[1] "bottes de survie" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -10145,39 +10015,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "bottes d'hiver du survivant" -msgstr[1] "bottes d'hiver du survivant" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "bottes XL du survivant" -msgstr[1] "bottes XL du survivant" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -11122,25 +10959,6 @@ msgid_plural "XL leather dusters" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "cache-poussière de survivant" -msgstr[1] "cache-poussières de survivant" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "Un manteau ample en kevlar avec plein de poches." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -11191,7 +11009,7 @@ msgid_plural "army jacket" msgstr[0] "veste militaire" msgstr[1] "vestes militaires" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -11376,7 +11194,7 @@ msgid_plural "kimono" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -11539,19 +11357,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "Un manteau ample en cuir sans manches avec plein de poches." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "cache-poussière de survivant sans manches" -msgstr[1] "cache-poussières de survivant sans manches" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "Un manteau ample en kevlar sans manches avec plein de poches." - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -11610,21 +11415,6 @@ msgstr "" "Un trench-coat épais en cuir sans manches, parsemé de poches. Très pratique " "pour stocker des affaires." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "trench-coat du survivant sans manches" -msgstr[1] "trench-coats du survivant sans manches" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" -"Un trench-coat en Kevlar sans manches, parsemé de poches. Confortable, " -"résistant et bien pour le stockage." - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -11642,7 +11432,7 @@ msgid_plural "thawb" msgstr[0] "dishdasha" msgstr[1] "dishdashas" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -11700,21 +11490,6 @@ msgstr "" "Un trench-coat épais en cuir, parsemé de poches. Très pratique pour stocker " "des affaires." -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "trench-coat du survivant" -msgstr[1] "trench-coats du survivant" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" -"Un trench-coat en Kevlar, parsemé de poches. Confortable, résistant et bien " -"pour le stockage." - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -11976,21 +11751,6 @@ msgstr[1] "lunettes de soleil" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "Des lunettes de soleil, utiles pour se protéger des rayons du soleil." -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "lunettes de survie" -msgstr[1] "lunettes de survie" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" -"Des lunettes blindées aux verres tintés. Confortables et résistantes, elles " -"procurent une excellente protection aux danger environnementaux." - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -12362,25 +12122,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "gants anti-feu du survivant" -msgstr[1] "gants anti-feu du survivant" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -12398,50 +12139,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "gants lourds du survivant" -msgstr[1] "gants lourds du survivant" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -12507,63 +12204,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "gants légers du survivant" -msgstr[1] "gants légers du survivant" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -12608,19 +12248,6 @@ msgstr "" "Une paire de gants en caoutchouc, souvent utilisée lorsque l'on nettoie en " "employant des produits caustiques." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "gants du survivant" -msgstr[1] "gants du survivant" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -12742,37 +12369,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "gants d'hiver du survivant" -msgstr[1] "gants d'hiver du survivant" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "gants XL du survivant" -msgstr[1] "gants XL du survivant" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -13570,7 +13166,7 @@ msgid_plural "kabuto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -13690,32 +13286,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "Écharpe de nomade" -msgstr[1] "Écharpes de nomade" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -13771,35 +13341,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "Écharpe de pillard" -msgstr[1] "Écharpes de pillard" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" -"Une solide écharpe protectrice s'étendant en bas du cou, pourvue d'un " -"respirateur et de protections oculaires. Pour les opérations de pillage " -"dangereuses." - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -14014,39 +13555,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "Harnais de survivant" -msgstr[1] "Harnais de survivant" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" -"Harnais léger couvert de poches incluant une sangle pour un petit fusil ou " -"autre arme de ce type. Durable et soigneusement confectionné pour être " -"confortable à porter. Activer pour dégainer/rengainer une arme. " - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -14102,77 +13610,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "Capuche ininflammable de survivant" -msgstr[1] "Capuches ininflammables de survivant" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "capuche légère du survivant" -msgstr[1] "capuches légères du survivant" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -14184,56 +13621,6 @@ msgstr[1] "capuches imperméables" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "capuche du survivant" -msgstr[1] "capuches du survivant" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "capuche d'hiver du survivant" -msgstr[1] "capuches d'hiver du survivant" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "capuche XL du survivant" -msgstr[1] "capuches XL du survivant" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -14644,9 +14031,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -14657,9 +14044,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -14670,9 +14057,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -14683,9 +14070,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -14696,9 +14083,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -14709,9 +14096,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -14722,9 +14109,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -14735,9 +14122,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -14748,9 +14135,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -14761,9 +14148,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -14774,9 +14161,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -14787,9 +14174,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -14800,9 +14187,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -14813,9 +14200,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -18429,7 +17816,7 @@ msgid_plural "turnout trousers" msgstr[0] "pantalon de pompier" msgstr[1] "pantalons de pompier" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -18469,7 +17856,7 @@ msgid_plural "leather chaps" msgstr[0] "jambières en cuir" msgstr[1] "jambières en cuir" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -18482,7 +17869,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -18497,7 +17884,7 @@ msgid_plural "fencing pants" msgstr[0] "Pantalon d’escrime" msgstr[1] "Pantalons d’escrime" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -18677,32 +18064,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "pantalon cargo du survivant léger" -msgstr[1] "pantalons cargo du survivant légers" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -18716,39 +18077,13 @@ msgstr "" "Une paire de gants faites pour être utilisée par les motards hors routes et " "les motocyclistes." -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "pantalon cargo du survivant" -msgstr[1] "pantalons cargo du survivant" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -18761,7 +18096,7 @@ msgid_plural "light EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -18788,7 +18123,7 @@ msgid_plural "basketball shorts" msgstr[0] "short de basket-ball" msgstr[1] "shorts de basket-ball" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "Un short de basket-ball. Confortable et léger." @@ -18799,7 +18134,7 @@ msgid_plural "breeches" msgstr[0] "Haut-de-chausse" msgstr[1] "Hauts-de-chausse" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -18825,7 +18160,7 @@ msgid_plural "hot pants" msgstr[0] "mini-short" msgstr[1] "mini-shorts" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "Un simple mini-short." @@ -18836,7 +18171,7 @@ msgid_plural "fur hot pants" msgstr[0] "mini-short en fourrure" msgstr[1] "mini-shorts en fourrure" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "Un simple mini short en fourrure." @@ -18847,7 +18182,7 @@ msgid_plural "leather hot pants" msgstr[0] "mini-short en cuir" msgstr[1] "mini-shorts en cuir" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "Un simple mini short en cuir." @@ -18858,7 +18193,7 @@ msgid_plural "jeans" msgstr[0] "jean" msgstr[1] "jeans" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "Un jean bleu avec deux poches profondes." @@ -18891,7 +18226,7 @@ msgid_plural "red jeans" msgstr[0] "jean rouge" msgstr[1] "jeans rouges" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "Un jean rouge pomme avec deux grandes poches." @@ -18920,7 +18255,7 @@ msgid_plural "leggings" msgstr[0] "leggings" msgstr[1] "leggings" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -19006,7 +18341,7 @@ msgid_plural "pants" msgstr[0] "pantalon" msgstr[1] "pantalons" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "Un pantalon kaki. Légèrement plus chaud qu'un jean." @@ -19017,15 +18352,15 @@ msgid_plural "army pants" msgstr[0] "pantalon militaire" msgstr[1] "pantalons militaires" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "Un pantalon lourd bordé de poches. Il est utilisé par les militaires." #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -19058,7 +18393,7 @@ msgid_plural "cargo pants" msgstr[0] "pantalon cargo" msgstr[1] "pantalons cargo" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -19071,7 +18406,7 @@ msgid_plural "checkered pants" msgstr[0] "pantalon à carreaux" msgstr[1] "pantalons à carreaux" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -19083,7 +18418,7 @@ msgid_plural "fur pants" msgstr[0] "pantalon en fourrure" msgstr[1] "pantalons en fourrure" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "Un gros pantalon doublé de fourrure." @@ -19094,7 +18429,7 @@ msgid_plural "faux fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "Un pantalon long en coton doublé de fourrure synthétique chaude." @@ -19105,7 +18440,7 @@ msgid_plural "leather pants" msgstr[0] "pantalon en cuir" msgstr[1] "pantalons en cuir" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -19120,7 +18455,7 @@ msgid_plural "ski pants" msgstr[0] "pantalon de ski" msgstr[1] "pantalons de ski" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "Un pantalon conçu pour le ski alpin." @@ -19131,7 +18466,7 @@ msgid_plural "police breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -19144,7 +18479,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "short de postier" msgstr[1] "shorts de postier" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "Un short bleu marine qu'utilisent les agents de la poste." @@ -19155,7 +18490,7 @@ msgid_plural "shorts" msgstr[0] "short" msgstr[1] "shorts" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "Un short kaki." @@ -19166,7 +18501,7 @@ msgid_plural "cargo shorts" msgstr[0] "short cargo" msgstr[1] "shorts cargo" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -19178,7 +18513,7 @@ msgid_plural "denim shorts" msgstr[0] "short en jean" msgstr[1] "shorts en jean" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -19243,7 +18578,7 @@ msgid_plural "striped pants" msgstr[0] "pantalon rayé" msgstr[1] "pantalons rayés" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "Un pantalon avec des rayures noires et blanches horizontales." @@ -19274,7 +18609,7 @@ msgid_plural "army winter pants" msgstr[0] "pantalon militaire d'hiver" msgstr[1] "pantalons militaires d'hiver" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -20496,66 +19831,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "sac marin de survivant" -msgstr[1] "sacs marins de survivant" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Un sac de sport fait main. Durable et précautionneusement confectionné pour " -"transporter autant de choses que possible." - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "sac à dos de survivant" -msgstr[1] "sacs à dos de survivants" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" -"Un sac à dos fait main. Résistant et fabriqué avec soins pour pouvoir y " -"mettre un maximum de choses." - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "Sac à dos de survivant" -msgstr[1] "Sacs à dos de survivant" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Un lourd sac à dos fait main. Résistant et fabriqué avec soins pour pouvoir " -"y mettre un maximum de choses." - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "runner pack de survivant" -msgstr[1] "runner packs de survivant" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" -"Un sac a dos léger de coureur fait main. Durable et précautionneusement " -"confectionné pour pouvoir y mettre autant de choses que possible." - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -21007,33 +20282,6 @@ msgid_plural "XL plate armors" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "Attirail de nomade" -msgstr[1] "Attirails de nomades" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -21079,8 +20327,8 @@ msgstr[1] "armures anti-émeute" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -21094,21 +20342,6 @@ msgstr[1] "O-yorois" msgid "An ornamental suit of Japanese samurai armor." msgstr "Une armure de samouraï japonais utilisée comme décoration." -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "Attirail de pilleur" -msgstr[1] "Attirails de pilleur" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" -"Une solide tenue de pilleur faite d'équipements de protection pré-cataclysme" -" remis en état. Elle permet d'emporter beaucoup de choses." - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -21253,54 +20486,6 @@ msgid_plural "XL entry suits" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "Combinaison d'incendie de survivant" -msgstr[1] "Combinaisons d'incendie de survivant" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "tenue d'hiver du survivant" -msgstr[1] "tenues d'hiver du survivant" - -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "gambeson" msgid_plural "gambesons" @@ -21317,12 +20502,32 @@ msgstr "" "de mailles ou d'autres armures. Ou portée seule, si vous ne pouvez obtenir " "une véritable armure." +#: lang/json/ARMOR_from_json.py +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for kevlar gambeson +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "XL gambeson" msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" +#: lang/json/ARMOR_from_json.py +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" +msgstr[0] "" +msgstr[1] "" + #: lang/json/ARMOR_from_json.py msgid "hazmat suit" msgid_plural "hazmat suits" @@ -21338,40 +20543,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "tenue lourde du survivant" -msgstr[1] "tenues lourdes du survivant" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "tenue légère du survivant" -msgstr[1] "tenues légères du survivant" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -21439,19 +20610,6 @@ msgstr "" "Un costume complet en coton. En portant ça, l'apocalypse devient une " "véritable expérience de gentleman." -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "tenue du survivant" -msgstr[1] "tenues du survivant" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -21461,11 +20619,9 @@ msgstr[1] "armures SWAT" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" -"Un gilet pare-balles noir avec plein de poches. Il y est inscrit SWAT dans " -"le dos." #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -21482,42 +20638,6 @@ msgstr "" "Un blouson en cuir épais fabriqué pour la protection lorque l'on conduit des" " motos. Léger et très confortable." -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "tenue XL du survivant" -msgstr[1] "tenues XL du survivant" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -21589,48 +20709,6 @@ msgstr[1] "capuches de plongée" msgid "A neoprene hood, commonly worn by divers." msgstr "Une capuche en néoprène, habituellement portée par les plongeurs." -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "Capuche de combinaison humide de survivant" -msgstr[1] "Capuches de combinaisons humide de survivant" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "Combinaison humide de survivant" -msgstr[1] "Combinaisons humide de survivant" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" -"Une combinaison légère et construite à la main composée d'un gilet pare-" -"balles et d'une combinaison en néoprène renforcé. Protège des éléments et " -"des dommages." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "gants anti-humidité du survivant" -msgstr[1] "gants anti-humidité du survivant" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -21749,7 +20827,7 @@ msgid_plural "lorica segmentata" msgstr[0] "lorica segmentata" msgstr[1] "lorica segmentata" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -21923,7 +21001,7 @@ msgid_plural "tire leather armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -21984,25 +21062,6 @@ msgid "" msgstr "" "Un gilet léger, résistant aux balles. Idéal à porter sous les vêtements." -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "Armure légère de survivant" -msgstr[1] "Armures légères de survivant" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -22278,7 +21337,7 @@ msgid_plural "leotard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -22380,7 +21439,7 @@ msgid_plural "French maid clothes" msgstr[0] "vêtements de femme de chambre française" msgstr[1] "vêtements de femme de chambre française" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "Une robe de bonne, bleue avec un tablier blanc à froufrous." @@ -22689,7 +21748,7 @@ msgid_plural "boxer briefs" msgstr[0] "caleçon" msgstr[1] "caleçons" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "La très ancienne question : slip ou caleçon ? Votre réponse ? Oui." @@ -22700,7 +21759,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -22711,7 +21770,7 @@ msgid_plural "boxer shorts" msgstr[0] "boxer" msgstr[1] "boxers" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -22725,7 +21784,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -22738,7 +21797,7 @@ msgid_plural "boy shorts" msgstr[0] "culotte garçonne" msgstr[1] "culottes garçonnes" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -22752,7 +21811,7 @@ msgid_plural "XL boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -22779,7 +21838,7 @@ msgid_plural "briefs" msgstr[0] "slip" msgstr[1] "slips" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "Un slip. Sous vêtement confortable pour hommes." @@ -22952,7 +22011,7 @@ msgid_plural "panties" msgstr[0] "culotte" msgstr[1] "culottes" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -23020,7 +22079,7 @@ msgid_plural "tights" msgstr[0] "bas" msgstr[1] "bas" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -23049,7 +22108,7 @@ msgid_plural "compression shorts" msgstr[0] "short de compression" msgstr[1] "shorts de compression" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -23086,897 +22145,1845 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sheet" -msgid_plural "sheets" -msgstr[0] "drap" -msgstr[1] "draps" +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "Attirail de nomade" +msgstr[1] "Attirails de nomades" -#. ~ Description for sheet +#. ~ Description for nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" -" a bunch of rags." +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." msgstr "" -"Un large drap en tissu qui pourrait être utilisé comme rideau ou drap; on " -"peut aussi le découper en plusieurs chiffons." - -#: lang/json/ARMOR_from_json.py -msgid "blanket" -msgid_plural "blankets" -msgstr[0] "couverture" -msgstr[1] "couvertures" - -#. ~ Description for blanket -#: lang/json/ARMOR_from_json.py -msgid "Hiding under here will not protect you from the monsters." -msgstr "Vous cacher là dessous ne vous protègera pas des monstres." #: lang/json/ARMOR_from_json.py -msgid "down-filled blanket" -msgid_plural "down-filled blankets" -msgstr[0] "couverture en duvet" -msgstr[1] "couvertures en duvet" +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for down-filled blanket +#. ~ Description for light nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"Hiding under here will not protect you from the monsters, but it'll keep you" -" warm." -msgstr "" -"Vous cacher là dessous ne vous protègera pas des monstres, mais vous aurez " -"chaud." - -#: lang/json/ARMOR_from_json.py -msgid "fur blanket" -msgid_plural "fur blankets" -msgstr[0] "couverture en fourrure" -msgstr[1] "couvertures en fourrure" - -#. ~ Description for fur blanket -#: lang/json/ARMOR_from_json.py -msgid "A heavy fur blanket that covers most of your body." +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." msgstr "" -"Une couverture épaisse en fourrure qui couvre presque votre corps en entier." #: lang/json/ARMOR_from_json.py -msgid "quilt" -msgid_plural "quilts" -msgstr[0] "édredon" -msgstr[1] "édredons" +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "Attirail de pilleur" +msgstr[1] "Attirails de pilleur" -#. ~ Description for quilt +#. ~ Description for scavenger gear #: lang/json/ARMOR_from_json.py msgid "" -"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " -"cozy!" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." msgstr "" +"Une solide tenue de pilleur faite d'équipements de protection pré-cataclysme" +" remis en état. Elle permet d'emporter beaucoup de choses." #: lang/json/ARMOR_from_json.py -msgid "patchwork quilt" -msgid_plural "patchwork quilts" -msgstr[0] "édredon en patchwork" -msgstr[1] "édredons en patchwork" +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "tenue légère du survivant" +msgstr[1] "tenues légères du survivant" -#. ~ Description for patchwork quilt +#. ~ Description for light survivor suit #: lang/json/ARMOR_from_json.py -msgid "A huge, patchwork wool quilt. Very, very warm." +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sleeping bag" -msgid_plural "sleeping bags" -msgstr[0] "sac de couchage" -msgstr[1] "sacs de couchage" +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" +msgstr[1] "" -#. ~ Use action msg for sleeping bag. #: lang/json/ARMOR_from_json.py -msgid "You roll up the sleeping bag, preparing it for transport." -msgstr "Vous enroulez le sac de couchage, le préparant au transport." +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "tenue du survivant" +msgstr[1] "tenues du survivant" -#. ~ Description for sleeping bag +#. ~ Description for survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A large sleeping bag that covers you head to toe. This one is medium " -"weight." +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cestus" -msgid_plural "cestuses" -msgstr[0] "cestes" -msgstr[1] "cestes" +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "tenue XL du survivant" +msgstr[1] "tenues XL du survivant" -#. ~ Description for cestus +#. ~ Description for XL survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A leather hand and arm wrap incorporating metal plates over the knuckles to " -"improve punching power and defence." +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of studded gloves" -msgid_plural "pairs of studded gloves" -msgstr[0] "" -msgstr[1] "" +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "tenue d'hiver du survivant" +msgstr[1] "tenues d'hiver du survivant" -#. ~ Description for pair of studded gloves +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "A pair of gloves with studded metal knuckles." +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "impact knuckles" -msgid_plural "impact knuckles" +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of thick steel plates covering your proximal phalange. They are " -"strapped to your hands with metal braces." +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "skewer knuckles" -msgid_plural "skewer knuckles" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for XL winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A single sturdy spike protrudes 5cm from the back of your hand. They are " -"strapped to your hands with metal braces." +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "telescoping umbrella" -msgid_plural "telescoping umbrellas" -msgstr[0] "parapluie téléscopique" -msgstr[1] "parapluies téléscopiques" +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "Combinaison humide de survivant" +msgstr[1] "Combinaisons humide de survivant" -#. ~ Description for telescoping umbrella +#. ~ Description for survivor wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A telescoping umbrella which collapses down for easy storage, useful for " -"keeping dry when wielded." +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." msgstr "" -"Une parapluie téléscopique dont le manche se replie pour être moins " -"encombrant. Vous resterez au sec lorsque vous le tenez." +"Une combinaison légère et construite à la main composée d'un gilet pare-" +"balles et d'une combinaison en néoprène renforcé. Protège des éléments et " +"des dommages." #: lang/json/ARMOR_from_json.py -msgid "bag of holding" -msgid_plural "bags of holding" -msgstr[0] "" -msgstr[1] "" +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "bottes de survie légères" +msgstr[1] "bottes de survie légères" -#. ~ Description for bag of holding +#. ~ Description for pair of light survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A sleek, unfathomably-complicated machine covered in dozens of blinking " -"lights, worn on the back by sturdy faux-leather straps. An electrode " -"dangles from the back, attaching to your forehead. How it operates without " -"annihilating spacetime isn't quite clear, but a localized portal allows " -"things to be stored in an extradimensional space." +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium vest" -msgid_plural "titanium vests" +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for titanium vest +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "bottes de survie" +msgstr[1] "bottes de survie" + +#. ~ Description for pair of survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight armor vest made of pieces of titanium sewn together, with " -"cloth padding for comfort. Brittle against blunt force, but highly " -"resistant to cuts and corrosion." +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sentinel-lx cloak" -msgid_plural "sentinel-lx cloaks" -msgstr[0] "" -msgstr[1] "" +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "bottes XL du survivant" +msgstr[1] "bottes XL du survivant" -#. ~ Description for sentinel-lx cloak +#. ~ Description for pair of XL survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " -"unnatural shadow. Made from woven graphene, its lightweight and resistant, " -"but cannot be repaired" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL jeans" -msgid_plural "pairs of XL jeans" +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL jeans +#. ~ Description for pair of faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue jeans with two deep pockets." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work pants" -msgid_plural "pairs of XL work pants" +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" +#. ~ Description for pair of XL faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue work pants." +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "A pair of XL gray work pants." -msgstr "" +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "bottes d'hiver du survivant" +msgstr[1] "bottes d'hiver du survivant" +#. ~ Description for pair of winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL light-blue work pants." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work t-shirt" -msgid_plural "XL work t-shirts" +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL work t-shirt #: lang/json/ARMOR_from_json.py -msgid "A gray XL work t-shirt with a small front pocket." -msgstr "" +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "bottes de combinaison" +msgstr[1] "bottes de combinaison" +#. ~ Description for pair of survivor wetsuit boots #: lang/json/ARMOR_from_json.py -msgid "An XL blue work t-shirt with a small front pocket." +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "An XL gray work t-shirt with a small front pocket." -msgstr "" +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "gants légers du survivant" +msgstr[1] "gants légers du survivant" +#. ~ Description for pair of light survivor gloves #: lang/json/ARMOR_from_json.py -msgid "An XL light-blue work t-shirt with a small front pocket." +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Uplifted SWAT armor" -msgid_plural "Uplifted SWAT armors" +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for Uplifted SWAT armor -#: lang/json/ARMOR_from_json.py -msgid "" -"An extra large suit of black bulletproof armor with lots of pockets. The " -"word SWAT is emblazoned across the back. Specifically designed for Uplifted" -" officers such as Mastodons." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "empty XL ballistic vest" -msgid_plural "empty XL ballistic vests" +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for empty XL ballistic vest +#. ~ Description for pair of fingerless light survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"Oversized ballistic armor without any armor inserts. The soft armor plate " -"carrier is still protective but it won't stop high energy projectiles." +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL ESAPI ballistic vest" -msgid_plural "XL ESAPI ballistic vests" +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL ESAPI ballistic vest -#: lang/json/ARMOR_from_json.py -msgid "Oversized ballistic armor with ESAPI ceramic armor plates." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of XL combat boots" -msgid_plural "pair of XL combat boots" +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of fingerless survivor gloves #: lang/json/ARMOR_from_json.py -msgid "Modern oversized reinforced tactical combat boots. Very durable." +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL tactical gloves" -msgid_plural "pair of XL tactical gloves" +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "gants du survivant" +msgstr[1] "gants du survivant" + +#. ~ Description for pair of survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " -"police and military units." +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of Killophant gloves" -msgid_plural "pair of Killophant gloves" -msgstr[0] "" -msgstr[1] "" +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "gants XL du survivant" +msgstr[1] "gants XL du survivant" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of XL survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of reinforced Kevlar tactical gloves, specifically designed to " -"accommodate three-fingered Killophants. Thinner than regular oversized " -"tactical gloves." +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leather belt" -msgid_plural "XL leather belts" -msgstr[0] "" -msgstr[1] "" +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "gants d'hiver du survivant" +msgstr[1] "gants d'hiver du survivant" -#. ~ Description for XL leather belt +#. ~ Description for pair of winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL leather belt. Useful for making your pair of pants fit if you need " -"really big pants." +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL police duty belt" -msgid_plural "XL police duty belts" +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL police duty belt -#: lang/json/ARMOR_from_json.py -msgid "" -"An XL black leather belt used by extremely large uplifted police officers. " -"It has several pouches and a holder for a baton." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL tactical full helmet" -msgid_plural "XL tactical full helmets" +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL tactical full helmet +#. ~ Description for pair of faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing massive black helmet that covers your entire face and " -"neck, providing excellent protection from all sorts of damage." +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leg ammo pouch" -msgid_plural "XL leg ammo pouches" +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL leg ammo pouch +#. ~ Description for pair of XL faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" -" two magazines close at hand." +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "crew jumpsuit" -msgid_plural "crew jumpsuits" -msgstr[0] "" -msgstr[1] "" +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "gants anti-humidité du survivant" +msgstr[1] "gants anti-humidité du survivant" -#. ~ Description for crew jumpsuit +#. ~ Description for pair of survivor wetsuit gloves #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " -"some freight hauling association or another. This one is a standard design " -"favored by spacers, with ample, easy access pockets." +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "communications cap" -msgid_plural "communications caps" -msgstr[0] "" -msgstr[1] "" +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "Écharpe de nomade" +msgstr[1] "Écharpes de nomade" -#. ~ Description for communications cap +#. ~ Description for nomad cowl #: lang/json/ARMOR_from_json.py msgid "" -"A padded cotton cap built around an augmented reality headset. During " -"normal operation it would provide visual information about a ship subsystems" -" and a communications link with the rest of the crew, but severed from a " -"spaceship, only their hearing protection function retains any utility." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "HERC rig" -msgid_plural "HERC rigs" +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" msgstr[0] "" msgstr[1] "" -#. ~ Description for HERC rig +#. ~ Description for nomad cowl XL #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " -"about in zero-g, Mars, the bottom of the Pacific, or other generally " -"inhospitable environments. It has several deep pockets, and two mounting " -"points for pressurized canisters or other large magazines." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cecalia wetsuit" -msgid_plural "cecalia wetsuits" -msgstr[0] "" -msgstr[1] "" +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "capuche du survivant" +msgstr[1] "capuches du survivant" -#. ~ Description for cecalia wetsuit +#. ~ Description for survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " -"explorer suit with no head or tentacle protection." +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "combat wetsuit" -msgid_plural "combat wetsuits" -msgstr[0] "" -msgstr[1] "" +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "capuche d'hiver du survivant" +msgstr[1] "capuches d'hiver du survivant" -#. ~ Description for combat wetsuit +#. ~ Description for winter survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " -"will provide some level of protection for deep dwellers." +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "nanomesh vest" -msgid_plural "nanomesh vests" +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for nanomesh vest +#. ~ Description for XL winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight nanomesh vest designed to face down many of the perils of " -"space travel. These vests are mass produced and often stacked in starship " -"lockers." +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "vacuum cast cuirass" -msgid_plural "vacuum cast cuirasses" -msgstr[0] "" -msgstr[1] "" +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "capuche XL du survivant" +msgstr[1] "capuches XL du survivant" -#. ~ Description for vacuum cast cuirass +#. ~ Description for XL survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"This piece of armor harkens back to renaissance designs. It differs in that" -" it is cast as a single piece in deep space installations where conditions " -"can be controlled absolutely." +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "carbide raider's helmet" -msgid_plural "carbide raider's helmets" -msgstr[0] "" -msgstr[1] "" +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "capuche légère du survivant" +msgstr[1] "capuches légères du survivant" -#. ~ Description for carbide raider's helmet +#. ~ Description for light survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"This helmet is designed for the individual that is worried about catching " -"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " -"environmental protection features, but it just might stop even the largest " -"of ballistic rounds." +msgid "A customized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "UICAS Point of Impact helmet" -msgid_plural "UICAS Point of Impact helmets" +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for UICAS Point of Impact helmet +#. ~ Description for XL light survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight black helmet that provides excellent protection from all sorts" -" of damage, unless it's airborne. UICAS makes the point of designing all " -"headgear whenever possible with clear faceplates, in order to provide a " -"human touch to all interactions." +"A customized and oversized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cold resistance cream" -msgid_plural "cold resistance creams" +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for cold resistance cream +#. ~ Description for winter faux fur survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"A thick layer of something that smells worse than walrus fat. But it keeps " -"you warm." +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "heat retention xtreme cream" -msgid_plural "heat retention xtreme creams" +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for heat retention xtreme cream +#. ~ Description for XL faux fur winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"The last word in cold snap protection designed to give short term protection" -" in the event of a suit breach in vacuum." +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium watch" -msgid_plural "titanium watches" -msgstr[0] "" -msgstr[1] "" +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "Capuche de combinaison humide de survivant" +msgstr[1] "Capuches de combinaisons humide de survivant" -#. ~ Description for titanium watch +#. ~ Description for survivor wetsuit hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine watch made out of titanium. It is durable, light-weight " -"and water-resistant, an excellent watch to have in a hostile environment." +"A customized armored neoprene and Kevlar hood, very strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium ring" -msgid_plural "titanium rings" -msgstr[0] "" -msgstr[1] "" +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "Écharpe de pillard" +msgstr[1] "Écharpes de pillard" -#. ~ Description for titanium ring +#. ~ Description for scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine ring made out of titanium. Made in a variety of styles " -"and finishes, they're valued for their durability." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." msgstr "" +"Une solide écharpe protectrice s'étendant en bas du cou, pourvue d'un " +"respirateur et de protections oculaires. Pour les opérations de pillage " +"dangereuses." #: lang/json/ARMOR_from_json.py -msgid "hazardous environment suit" -msgid_plural "hazardous environment suits" +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" msgstr[0] "" msgstr[1] "" -#. ~ Description for hazardous environment suit +#. ~ Description for XL scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"Developed for the exploration of alien planes, the lightweight, orange-black" -" HEV suit covers everything below the neck. While it possesses only modest " -"physical protection, it provides excellent protection from most " -"environmental hazards. A hatch in the front opens to provide a small amount" -" of storage." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "psychrophile handling gloves" -msgid_plural "psychrophile handling gloves" -msgstr[0] "" -msgstr[1] "" +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "pantalon cargo du survivant léger" +msgstr[1] "pantalons cargo du survivant légers" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"These gloves are designed for handling organisms that live in extremely cold" -" temperatures. They can also be used to freeze your foes to death." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Engineering Suit" -msgid_plural "CRIT Engineering Suits" +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Engineering Suit +#. ~ Description for XL light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"An airtight, flexible suit of woven composite fibers complete with segmented" -" plates of armor. A complex system digitizes items in an individual pocket " -"universe for storage while built in joint-torsion ratchets generate the " -"necessary energy required to power the interface." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT face mask" -msgid_plural "CRIT face masks" -msgstr[0] "" -msgstr[1] "" +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "pantalon cargo du survivant" +msgstr[1] "pantalons cargo du survivant" -#. ~ Description for CRIT face mask +#. ~ Description for survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A standard issue face mask, lined with Kevlar for extra protection. A few " -"filters provide decent environmental safety, but it was not intended for " -"extended use. It has a basic integrated HUD." +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT boots" -msgid_plural "pairs of CRIT boots" +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT boots +#. ~ Description for XL survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " -"hygienic during long-term missions while absorbing shock and heat from " -"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " -"protection as well. Decently heavy though" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT LA boots" -msgid_plural "pairs of CRIT LA boots" -msgstr[0] "" -msgstr[1] "" +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "cache-poussière de survivant" +msgstr[1] "cache-poussières de survivant" -#. ~ Description for pair of CRIT LA boots +#. ~ Description for survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " -"variant was created for missions in warmer climates. The LA boots keep most" -" of the old features of the standard issue boots but trade in protection for" -" easier movement." -msgstr "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "Un manteau ample en kevlar avec plein de poches." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less gloves" -msgid_plural "pairs of CRIT fingertip-less gloves" +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT fingertip-less gloves +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "cache-poussière de survivant sans manches" +msgstr[1] "cache-poussières de survivant sans manches" + +#. ~ Description for sleeveless survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue gloves. Made with superalloy mesh for those with " -"gene-modding and/or mutations while still allowing greater manipulation of " -"items and moderate protection." -msgstr "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "Un manteau ample en kevlar sans manches avec plein de poches." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less liners" -msgid_plural "pairs of CRIT fingertip-less liners" -msgstr[0] "" -msgstr[1] "" +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "trench-coat du survivant" +msgstr[1] "trench-coats du survivant" -#. ~ Description for pair of CRIT fingertip-less liners +#. ~ Description for survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " -"for warmth and fingertip-less for those with gene-modding and/or mutations " -"while still allowing greater manipulation of items and moderate protection." +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." msgstr "" +"Un trench-coat en Kevlar, parsemé de poches. Confortable, résistant et bien " +"pour le stockage." #: lang/json/ARMOR_from_json.py -msgid "CRIT backpack" -msgid_plural "CRIT backpacks" -msgstr[0] "" -msgstr[1] "" +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "trench-coat du survivant sans manches" +msgstr[1] "trench-coats du survivant sans manches" -#. ~ Description for CRIT backpack +#. ~ Description for sleeveless survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " -"pack strikes a fine balance between storage space and encumbrance and allows" -" a larger weapon to be holstered, drawing and holstering is still rather " -"awkward even with the magnetized clips, but practice helps." +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." msgstr "" +"Un trench-coat en Kevlar sans manches, parsemé de poches. Confortable, " +"résistant et bien pour le stockage." #: lang/json/ARMOR_from_json.py -msgid "CRIT chestrig" -msgid_plural "CRIT chestrigs" -msgstr[0] "" -msgstr[1] "" +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "sac marin de survivant" +msgstr[1] "sacs marins de survivant" -#. ~ Description for CRIT chestrig +#. ~ Description for survivor duffel bag #: lang/json/ARMOR_from_json.py msgid "" -"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " -"with light-armor padding." +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" +"Un sac de sport fait main. Durable et précautionneusement confectionné pour " +"transporter autant de choses que possible." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT leg guards" -msgid_plural "pairs of CRIT leg guards" -msgstr[0] "" -msgstr[1] "" +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "sac à dos de survivant" +msgstr[1] "sacs à dos de survivants" -#. ~ Description for pair of CRIT leg guards +#. ~ Description for survivor backpack #: lang/json/ARMOR_from_json.py msgid "" -"Leg armor for those who fight. Simple design and durable material allows " -"for easy movement and the padding keeps the legs safe and warm in colder " -"conditions." +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." msgstr "" +"Un sac à dos fait main. Résistant et fabriqué avec soins pour pouvoir y " +"mettre un maximum de choses." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT arm guards" -msgid_plural "pairs of CRIT arm guards" -msgstr[0] "" -msgstr[1] "" +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "Sac à dos de survivant" +msgstr[1] "Sacs à dos de survivant" -#. ~ Description for pair of CRIT arm guards +#. ~ Description for survivor rucksack #: lang/json/ARMOR_from_json.py msgid "" -"A pair of arm guards made from superalloy molded upon neoprene, and then " -"insulated with rubber. They are sturdy and will block attacks, but they are" -" ridiculously heavy." +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" +"Un lourd sac à dos fait main. Résistant et fabriqué avec soins pour pouvoir " +"y mettre un maximum de choses." #: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "runner pack de survivant" +msgstr[1] "runner packs de survivant" -#. ~ Description for CRIT web belt +#. ~ Description for survivor runner pack #: lang/json/ARMOR_from_json.py msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." msgstr "" +"Un sac a dos léger de coureur fait main. Durable et précautionneusement " +"confectionné pour pouvoir y mettre autant de choses que possible." #: lang/json/ARMOR_from_json.py -msgid "CRIT infantry duster" -msgid_plural "CRIT infantry dusters" -msgstr[0] "" -msgstr[1] "" +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "bottes de feu de survie" +msgstr[1] "bottes de feu de survie" -#. ~ Description for CRIT infantry duster +#. ~ Description for pair of survivor fireboots #: lang/json/ARMOR_from_json.py msgid "" -"A thick full-length duster coat with rubber insulation. More than mildly " -"encumbering, but rather protective against any anti-infantry electrical " -"discharges from the robots. Has several pockets for storage." +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Armored Anomaly Suit" -msgid_plural "CRIT Armored Anomaly Suits" +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Armored Anomaly Suit +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "bottes de survie lourdes" +msgstr[1] "bottes de survie lourdes" + +#. ~ Description for pair of heavy survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A relatively simple suit of armor. A suit of woven composite fibers " -"combined with a cleansuit core and strategically placed segmented Kevlar " -"plates keep the suit light-weight and the one wearing it alive while " -"offering superb resistance to the elements and ambient radiation." +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT drop leg pouch" -msgid_plural "CRIT drop leg pouches" +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT drop leg pouch +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "gants lourds du survivant" +msgstr[1] "gants lourds du survivant" + +#. ~ Description for pair of heavy survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A set of pouches that can be worn on the thighs using buckled straps. This " -"variety is more compact and is favored by the C.R.I.T for its ease of use." +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Enforcer armor assembly" -msgid_plural "CRIT Enforcer armor assemblies" +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Enforcer armor assembly +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "gants anti-feu du survivant" +msgstr[1] "gants anti-feu du survivant" + +#. ~ Description for pair of survivor firegloves #: lang/json/ARMOR_from_json.py msgid "" -"A series of plates, guards and buckles which assemble into a suit of sturdy " -"body-armor which usually goes over other armor. Overlapping steel plates on" -" top of Kevlar plates cover vast expanses as the armor juts off in places so" -" it can deflect attacks. Built with the idea that comfort is less important" -" than safety, this heavy suit is difficult to move about in but highly " -"protective. Various adjustable connectors such as straps and clips hold it " -"together." +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT Enforcer docks" -msgid_plural "pairs of CRIT Enforcer docks" +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT Enforcer docks #: lang/json/ARMOR_from_json.py -msgid "" -"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " -"oversized feet which clamp down onto your own footwear keep your feet out of" -" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " -"designs, but they do seem to be worth using if you were to be in the middle " -"of a war zone." +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "Capuche ininflammable de survivant" +msgstr[1] "Capuches ininflammables de survivant" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Soldier Suit" -msgid_plural "CRIT Soldier Suits" +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Soldier Suit +#. ~ Description for XL survivor firehood #: lang/json/ARMOR_from_json.py msgid "" -"A suit of modern body-armor. Strategically placed superalloy plates keep " -"the suit's weight minimal while Kevlar plates other areas and a lining of " -"soft neoprene pads areas for extra comfort. Most importantly, this can be " -"worn comfortably under other armor." +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Lone Wolf Series Armor" -msgid_plural "CRIT Lone Wolf Series Armors" -msgstr[0] "" -msgstr[1] "" +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "Combinaison d'incendie de survivant" +msgstr[1] "Combinaisons d'incendie de survivant" -#. ~ Description for CRIT Lone Wolf Series Armor +#. ~ Description for survivor firesuit #: lang/json/ARMOR_from_json.py msgid "" -"A matte black suit of outdated and bulky looking plate armor fitted onto a " -"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " -"armor will definitely protect you from practically anything. Just make sure" -" you can actually walk with it on though." +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT blouse" -msgid_plural "CRIT blouses" +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT blouse +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "tenue lourde du survivant" +msgstr[1] "tenues lourdes du survivant" + +#. ~ Description for heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue military jacket. Durable, lightweight, and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather " -"while a sleek design keeps it from being too flashy. A zipper at the back " -"and front allows for quick donning and doffing." +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT trousers" -msgid_plural "CRIT trousers" +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for XL heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue cargo pants. Durable, lightweight and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather." +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT pants" -msgid_plural "CRIT pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'CRIT pants'} -#: lang/json/ARMOR_from_json.py -msgid "" +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "Armure légère de survivant" +msgstr[1] "Armures légères de survivant" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "ceinture de survivant" +msgstr[1] "ceintures de survivant" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "lunettes de survie" +msgstr[1] "lunettes de survie" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" +"Des lunettes blindées aux verres tintés. Confortables et résistantes, elles " +"procurent une excellente protection aux danger environnementaux." + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "Harnais de survivant" +msgstr[1] "Harnais de survivant" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" +"Harnais léger couvert de poches incluant une sangle pour un petit fusil ou " +"autre arme de ce type. Durable et soigneusement confectionné pour être " +"confortable à porter. Activer pour dégainer/rengainer une arme. " + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sheet" +msgid_plural "sheets" +msgstr[0] "drap" +msgstr[1] "draps" + +#. ~ Description for sheet +#: lang/json/ARMOR_from_json.py +msgid "" +"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" +" a bunch of rags." +msgstr "" +"Un large drap en tissu qui pourrait être utilisé comme rideau ou drap; on " +"peut aussi le découper en plusieurs chiffons." + +#: lang/json/ARMOR_from_json.py +msgid "blanket" +msgid_plural "blankets" +msgstr[0] "couverture" +msgstr[1] "couvertures" + +#. ~ Description for blanket +#: lang/json/ARMOR_from_json.py +msgid "Hiding under here will not protect you from the monsters." +msgstr "Vous cacher là dessous ne vous protègera pas des monstres." + +#: lang/json/ARMOR_from_json.py +msgid "down-filled blanket" +msgid_plural "down-filled blankets" +msgstr[0] "couverture en duvet" +msgstr[1] "couvertures en duvet" + +#. ~ Description for down-filled blanket +#: lang/json/ARMOR_from_json.py +msgid "" +"Hiding under here will not protect you from the monsters, but it'll keep you" +" warm." +msgstr "" +"Vous cacher là dessous ne vous protègera pas des monstres, mais vous aurez " +"chaud." + +#: lang/json/ARMOR_from_json.py +msgid "fur blanket" +msgid_plural "fur blankets" +msgstr[0] "couverture en fourrure" +msgstr[1] "couvertures en fourrure" + +#. ~ Description for fur blanket +#: lang/json/ARMOR_from_json.py +msgid "A heavy fur blanket that covers most of your body." +msgstr "" +"Une couverture épaisse en fourrure qui couvre presque votre corps en entier." + +#: lang/json/ARMOR_from_json.py +msgid "quilt" +msgid_plural "quilts" +msgstr[0] "édredon" +msgstr[1] "édredons" + +#. ~ Description for quilt +#: lang/json/ARMOR_from_json.py +msgid "" +"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " +"cozy!" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "patchwork quilt" +msgid_plural "patchwork quilts" +msgstr[0] "édredon en patchwork" +msgstr[1] "édredons en patchwork" + +#. ~ Description for patchwork quilt +#: lang/json/ARMOR_from_json.py +msgid "A huge, patchwork wool quilt. Very, very warm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeping bag" +msgid_plural "sleeping bags" +msgstr[0] "sac de couchage" +msgstr[1] "sacs de couchage" + +#. ~ Use action msg for sleeping bag. +#: lang/json/ARMOR_from_json.py +msgid "You roll up the sleeping bag, preparing it for transport." +msgstr "Vous enroulez le sac de couchage, le préparant au transport." + +#. ~ Description for sleeping bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A large sleeping bag that covers you head to toe. This one is medium " +"weight." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "cestus" +msgid_plural "cestuses" +msgstr[0] "cestes" +msgstr[1] "cestes" + +#. ~ Description for cestus +#: lang/json/ARMOR_from_json.py +msgid "" +"A leather hand and arm wrap incorporating metal plates over the knuckles to " +"improve punching power and defence." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of studded gloves" +msgid_plural "pairs of studded gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of studded gloves +#: lang/json/ARMOR_from_json.py +msgid "A pair of gloves with studded metal knuckles." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "impact knuckles" +msgid_plural "impact knuckles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for impact knuckles +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of thick steel plates covering your proximal phalange. They are " +"strapped to your hands with metal braces." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "skewer knuckles" +msgid_plural "skewer knuckles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for skewer knuckles +#: lang/json/ARMOR_from_json.py +msgid "" +"A single sturdy spike protrudes 5cm from the back of your hand. They are " +"strapped to your hands with metal braces." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "telescoping umbrella" +msgid_plural "telescoping umbrellas" +msgstr[0] "parapluie téléscopique" +msgstr[1] "parapluies téléscopiques" + +#. ~ Description for telescoping umbrella +#: lang/json/ARMOR_from_json.py +msgid "" +"A telescoping umbrella which collapses down for easy storage, useful for " +"keeping dry when wielded." +msgstr "" +"Une parapluie téléscopique dont le manche se replie pour être moins " +"encombrant. Vous resterez au sec lorsque vous le tenez." + +#: lang/json/ARMOR_from_json.py +msgid "bag of holding" +msgid_plural "bags of holding" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bag of holding +#: lang/json/ARMOR_from_json.py +msgid "" +"A sleek, unfathomably-complicated machine covered in dozens of blinking " +"lights, worn on the back by sturdy faux-leather straps. An electrode " +"dangles from the back, attaching to your forehead. How it operates without " +"annihilating spacetime isn't quite clear, but a localized portal allows " +"things to be stored in an extradimensional space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "titanium vest" +msgid_plural "titanium vests" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for titanium vest +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight armor vest made of pieces of titanium sewn together, with " +"cloth padding for comfort. Brittle against blunt force, but highly " +"resistant to cuts and corrosion." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sentinel-lx cloak" +msgid_plural "sentinel-lx cloaks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sentinel-lx cloak +#: lang/json/ARMOR_from_json.py +msgid "" +"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " +"unnatural shadow. Made from woven graphene, its lightweight and resistant, " +"but cannot be repaired" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL jeans" +msgid_plural "pairs of XL jeans" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL jeans +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL blue jeans with two deep pockets." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL work pants" +msgid_plural "pairs of XL work pants" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL blue work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL gray work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL light-blue work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL work t-shirt" +msgid_plural "XL work t-shirts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL work t-shirt +#: lang/json/ARMOR_from_json.py +msgid "A gray XL work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL blue work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL gray work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL light-blue work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Uplifted SWAT armor" +msgid_plural "Uplifted SWAT armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Uplifted SWAT armor +#: lang/json/ARMOR_from_json.py +msgid "" +"An extra large suit of black bulletproof armor with lots of pockets. The " +"word SWAT is emblazoned across the back. Specifically designed for Uplifted" +" officers such as Mastodons." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "empty XL ballistic vest" +msgid_plural "empty XL ballistic vests" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for empty XL ballistic vest +#: lang/json/ARMOR_from_json.py +msgid "" +"Oversized ballistic armor without any armor inserts. The soft armor plate " +"carrier is still protective but it won't stop high energy projectiles." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL ESAPI ballistic vest" +msgid_plural "XL ESAPI ballistic vests" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL ESAPI ballistic vest +#: lang/json/ARMOR_from_json.py +msgid "Oversized ballistic armor with ESAPI ceramic armor plates." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL combat boots" +msgid_plural "pair of XL combat boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL combat boots +#: lang/json/ARMOR_from_json.py +msgid "Modern oversized reinforced tactical combat boots. Very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL tactical gloves" +msgid_plural "pair of XL tactical gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL tactical gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " +"police and military units." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of Killophant gloves" +msgid_plural "pair of Killophant gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of Killophant gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of reinforced Kevlar tactical gloves, specifically designed to " +"accommodate three-fingered Killophants. Thinner than regular oversized " +"tactical gloves." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL leather belt" +msgid_plural "XL leather belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL leather belt +#: lang/json/ARMOR_from_json.py +msgid "" +"An XL leather belt. Useful for making your pair of pants fit if you need " +"really big pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL police duty belt" +msgid_plural "XL police duty belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL police duty belt +#: lang/json/ARMOR_from_json.py +msgid "" +"An XL black leather belt used by extremely large uplifted police officers. " +"It has several pouches and a holder for a baton." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL tactical full helmet" +msgid_plural "XL tactical full helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL tactical full helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"An all-encompassing massive black helmet that covers your entire face and " +"neck, providing excellent protection from all sorts of damage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL leg ammo pouch" +msgid_plural "XL leg ammo pouches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL leg ammo pouch +#: lang/json/ARMOR_from_json.py +msgid "" +"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" +" two magazines close at hand." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "crew jumpsuit" +msgid_plural "crew jumpsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for crew jumpsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " +"some freight hauling association or another. This one is a standard design " +"favored by spacers, with ample, easy access pockets." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "communications cap" +msgid_plural "communications caps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for communications cap +#: lang/json/ARMOR_from_json.py +msgid "" +"A padded cotton cap built around an augmented reality headset. During " +"normal operation it would provide visual information about a ship subsystems" +" and a communications link with the rest of the crew, but severed from a " +"spaceship, only their hearing protection function retains any utility." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "HERC rig" +msgid_plural "HERC rigs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for HERC rig +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " +"about in zero-g, Mars, the bottom of the Pacific, or other generally " +"inhospitable environments. It has several deep pockets, and two mounting " +"points for pressurized canisters or other large magazines." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "cecalia wetsuit" +msgid_plural "cecalia wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cecalia wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " +"explorer suit with no head or tentacle protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "combat wetsuit" +msgid_plural "combat wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for combat wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " +"will provide some level of protection for deep dwellers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nanomesh vest" +msgid_plural "nanomesh vests" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nanomesh vest +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight nanomesh vest designed to face down many of the perils of " +"space travel. These vests are mass produced and often stacked in starship " +"lockers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "vacuum cast cuirass" +msgid_plural "vacuum cast cuirasses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for vacuum cast cuirass +#: lang/json/ARMOR_from_json.py +msgid "" +"This piece of armor harkens back to renaissance designs. It differs in that" +" it is cast as a single piece in deep space installations where conditions " +"can be controlled absolutely." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "carbide raider's helmet" +msgid_plural "carbide raider's helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for carbide raider's helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"This helmet is designed for the individual that is worried about catching " +"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " +"environmental protection features, but it just might stop even the largest " +"of ballistic rounds." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "UICAS Point of Impact helmet" +msgid_plural "UICAS Point of Impact helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for UICAS Point of Impact helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight black helmet that provides excellent protection from all sorts" +" of damage, unless it's airborne. UICAS makes the point of designing all " +"headgear whenever possible with clear faceplates, in order to provide a " +"human touch to all interactions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "cold resistance cream" +msgid_plural "cold resistance creams" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cold resistance cream +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick layer of something that smells worse than walrus fat. But it keeps " +"you warm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "heat retention xtreme cream" +msgid_plural "heat retention xtreme creams" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for heat retention xtreme cream +#: lang/json/ARMOR_from_json.py +msgid "" +"The last word in cold snap protection designed to give short term protection" +" in the event of a suit breach in vacuum." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "titanium watch" +msgid_plural "titanium watches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for titanium watch +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick, masculine watch made out of titanium. It is durable, light-weight " +"and water-resistant, an excellent watch to have in a hostile environment." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "titanium ring" +msgid_plural "titanium rings" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for titanium ring +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick, masculine ring made out of titanium. Made in a variety of styles " +"and finishes, they're valued for their durability." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "hazardous environment suit" +msgid_plural "hazardous environment suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for hazardous environment suit +#: lang/json/ARMOR_from_json.py +msgid "" +"Developed for the exploration of alien planes, the lightweight, orange-black" +" HEV suit covers everything below the neck. While it possesses only modest " +"physical protection, it provides excellent protection from most " +"environmental hazards. A hatch in the front opens to provide a small amount" +" of storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "psychrophile handling gloves" +msgid_plural "psychrophile handling gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for psychrophile handling gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"These gloves are designed for handling organisms that live in extremely cold" +" temperatures. They can also be used to freeze your foes to death." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Engineering Suit" +msgid_plural "CRIT Engineering Suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Engineering Suit +#: lang/json/ARMOR_from_json.py +msgid "" +"An airtight, flexible suit of woven composite fibers complete with segmented" +" plates of armor. A complex system digitizes items in an individual pocket " +"universe for storage while built in joint-torsion ratchets generate the " +"necessary energy required to power the interface." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT face mask" +msgid_plural "CRIT face masks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT face mask +#: lang/json/ARMOR_from_json.py +msgid "" +"A standard issue face mask, lined with Kevlar for extra protection. A few " +"filters provide decent environmental safety, but it was not intended for " +"extended use. It has a basic integrated HUD." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT boots" +msgid_plural "pairs of CRIT boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " +"hygienic during long-term missions while absorbing shock and heat from " +"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " +"protection as well. Decently heavy though" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT LA boots" +msgid_plural "pairs of CRIT LA boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT LA boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " +"variant was created for missions in warmer climates. The LA boots keep most" +" of the old features of the standard issue boots but trade in protection for" +" easier movement." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT fingertip-less gloves" +msgid_plural "pairs of CRIT fingertip-less gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT fingertip-less gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue gloves. Made with superalloy mesh for those with " +"gene-modding and/or mutations while still allowing greater manipulation of " +"items and moderate protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT fingertip-less liners" +msgid_plural "pairs of CRIT fingertip-less liners" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT fingertip-less liners +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " +"for warmth and fingertip-less for those with gene-modding and/or mutations " +"while still allowing greater manipulation of items and moderate protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT backpack" +msgid_plural "CRIT backpacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " +"pack strikes a fine balance between storage space and encumbrance and allows" +" a larger weapon to be holstered, drawing and holstering is still rather " +"awkward even with the magnetized clips, but practice helps." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT chestrig" +msgid_plural "CRIT chestrigs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT chestrig +#: lang/json/ARMOR_from_json.py +msgid "" +"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " +"with light-armor padding." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT leg guards" +msgid_plural "pairs of CRIT leg guards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT leg guards +#: lang/json/ARMOR_from_json.py +msgid "" +"Leg armor for those who fight. Simple design and durable material allows " +"for easy movement and the padding keeps the legs safe and warm in colder " +"conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT arm guards" +msgid_plural "pairs of CRIT arm guards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT arm guards +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of arm guards made from superalloy molded upon neoprene, and then " +"insulated with rubber. They are sturdy and will block attacks, but they are" +" ridiculously heavy." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT infantry duster" +msgid_plural "CRIT infantry dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT infantry duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick full-length duster coat with rubber insulation. More than mildly " +"encumbering, but rather protective against any anti-infantry electrical " +"discharges from the robots. Has several pockets for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Armored Anomaly Suit" +msgid_plural "CRIT Armored Anomaly Suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Armored Anomaly Suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A relatively simple suit of armor. A suit of woven composite fibers " +"combined with a cleansuit core and strategically placed segmented Kevlar " +"plates keep the suit light-weight and the one wearing it alive while " +"offering superb resistance to the elements and ambient radiation." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT drop leg pouch" +msgid_plural "CRIT drop leg pouches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT drop leg pouch +#: lang/json/ARMOR_from_json.py +msgid "" +"A set of pouches that can be worn on the thighs using buckled straps. This " +"variety is more compact and is favored by the C.R.I.T for its ease of use." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Enforcer armor assembly" +msgid_plural "CRIT Enforcer armor assemblies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Enforcer armor assembly +#: lang/json/ARMOR_from_json.py +msgid "" +"A series of plates, guards and buckles which assemble into a suit of sturdy " +"body-armor which usually goes over other armor. Overlapping steel plates on" +" top of Kevlar plates cover vast expanses as the armor juts off in places so" +" it can deflect attacks. Built with the idea that comfort is less important" +" than safety, this heavy suit is difficult to move about in but highly " +"protective. Various adjustable connectors such as straps and clips hold it " +"together." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT Enforcer docks" +msgid_plural "pairs of CRIT Enforcer docks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT Enforcer docks +#: lang/json/ARMOR_from_json.py +msgid "" +"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " +"oversized feet which clamp down onto your own footwear keep your feet out of" +" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " +"designs, but they do seem to be worth using if you were to be in the middle " +"of a war zone." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Soldier Suit" +msgid_plural "CRIT Soldier Suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Soldier Suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A suit of modern body-armor. Strategically placed superalloy plates keep " +"the suit's weight minimal while Kevlar plates other areas and a lining of " +"soft neoprene pads areas for extra comfort. Most importantly, this can be " +"worn comfortably under other armor." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Lone Wolf Series Armor" +msgid_plural "CRIT Lone Wolf Series Armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Lone Wolf Series Armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A matte black suit of outdated and bulky looking plate armor fitted onto a " +"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " +"armor will definitely protect you from practically anything. Just make sure" +" you can actually walk with it on though." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT blouse" +msgid_plural "CRIT blouses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT blouse +#: lang/json/ARMOR_from_json.py +msgid "" +"A standard-issue military jacket. Durable, lightweight, and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather " +"while a sleek design keeps it from being too flashy. A zipper at the back " +"and front allows for quick donning and doffing." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT trousers" +msgid_plural "CRIT trousers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT trousers +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue cargo pants. Durable, lightweight and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT pants" +msgid_plural "CRIT pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT pants +#: lang/json/ARMOR_from_json.py +msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " "lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" " moderately cold weather." @@ -24017,6 +24024,12 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -24165,7 +24178,7 @@ msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -24652,7 +24665,7 @@ msgid_plural "freerunner's boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -24724,7 +24737,7 @@ msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -24739,7 +24752,7 @@ msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -24768,7 +24781,7 @@ msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -24826,7 +24839,7 @@ msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -24884,7 +24897,7 @@ msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -24895,7 +24908,7 @@ msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -24993,7 +25006,7 @@ msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -25004,7 +25017,7 @@ msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -25089,16 +25102,18 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "MBC plaquage en alliage de bras" -msgstr[1] "MBC plaquages en alliage de bras" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -25116,42 +25131,35 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" -msgstr[0] "MBC plaquage en alliage de tête" -msgstr[1] "MBC plaquages en alliage de tête" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" -msgstr[0] "MBC plaquages en alliage de jambes" -msgstr[1] "MBC plaquages en alliage de jambes" - -#. ~ Description for Legs Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" -msgstr[0] "MBC plaquages en alliage de torse" -msgstr[1] "MBC plaquages en alliage de torse" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -25877,7 +25885,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -26308,7 +26316,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -26517,7 +26525,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -27888,7 +27896,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "notes du combattant au couteau" msgstr[1] "notes du combattant au couteau" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -28165,7 +28173,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "Plan pour module de répéteur radio" msgstr[1] "Plans pour module de répéteur radio" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -28209,7 +28217,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -28224,7 +28232,7 @@ msgid_plural "schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -28232,9 +28240,9 @@ msgstr[1] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -28250,7 +28258,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -28265,7 +28273,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -28280,7 +28288,7 @@ msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -28294,7 +28302,7 @@ msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -28308,7 +28316,7 @@ msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -28322,7 +28330,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -28336,7 +28344,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -28350,7 +28358,7 @@ msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -28364,7 +28372,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -28378,7 +28386,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -28392,7 +28400,7 @@ msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -28407,7 +28415,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -28422,7 +28430,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -28436,7 +28444,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -29108,7 +29116,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "" @@ -29119,7 +29127,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -29131,7 +29139,7 @@ msgid_plural "Capoeira 100" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "" @@ -29142,7 +29150,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "" @@ -29153,7 +29161,7 @@ msgid_plural "The Red Crane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "" @@ -29164,7 +29172,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "Le dragon de jade" msgstr[1] "Le dragon de jade" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "Un guide complet au kung-fu du dragon." @@ -29175,7 +29183,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "Eskrima pratique" msgstr[1] "Eskrima pratique" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "Un guide complet sur l'Eskrima." @@ -29186,7 +29194,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "L'Épéiste Moderne" msgstr[1] "L'Épéiste Moderne" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "Un guide complet sur l'Escrime." @@ -29197,7 +29205,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "" @@ -29208,7 +29216,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "" @@ -29219,7 +29227,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "" @@ -29230,7 +29238,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "" @@ -29241,7 +29249,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "" @@ -29252,7 +29260,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "" @@ -29263,7 +29271,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "" @@ -29274,7 +29282,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -29287,7 +29295,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "" @@ -29298,7 +29306,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "" @@ -29309,7 +29317,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "" @@ -29320,7 +29328,7 @@ msgid_plural "The Black Snake" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "" @@ -29331,7 +29339,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -29342,7 +29350,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" @@ -29353,7 +29361,7 @@ msgid_plural "The White Tiger" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "" @@ -29364,7 +29372,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "" @@ -29375,7 +29383,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "" @@ -29386,7 +29394,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "" @@ -29397,7 +29405,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "" @@ -29408,7 +29416,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -29420,7 +29428,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -29434,7 +29442,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -29607,7 +29615,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "Prospectus sur les ranchs" msgstr[1] "Prospectus sur les ranchs" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -30527,7 +30535,7 @@ msgid_plural "patient treatment records" msgstr[0] "dossiers médicaux" msgstr[1] "dossiers médicaux" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -30539,7 +30547,7 @@ msgid_plural "national weather transcripts" msgstr[0] "transcription du bulletin météo national" msgstr[1] "transcriptions du bulletin météo national" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "De vieilles prévisions météos sont aussi intéressantes qu'une pierre." @@ -34097,7 +34105,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -34112,7 +34120,7 @@ msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -34127,7 +34135,7 @@ msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -34142,7 +34150,7 @@ msgid_plural "tank drone schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -34157,7 +34165,7 @@ msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -34387,7 +34395,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -34398,7 +34406,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -34409,7 +34417,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -34422,7 +34430,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -34433,7 +34441,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -34446,7 +34454,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -34460,7 +34468,7 @@ msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -34471,7 +34479,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -34484,7 +34492,7 @@ msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -34495,7 +34503,7 @@ msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -34522,6 +34530,21 @@ msgstr[1] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -36602,7 +36625,7 @@ msgid_plural "bird litter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -36660,14 +36683,14 @@ msgid_plural "bleach" msgstr[0] "eau de Javel" msgstr[1] "eau de Javel" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -36682,7 +36705,7 @@ msgid_plural "ammonia" msgstr[0] "ammoniaque" msgstr[1] "ammoniaque" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -36697,7 +36720,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "engrais liquide" msgstr[1] "engrais liquide" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -36708,7 +36731,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "engrais commercial" msgstr[1] "engrais commercial" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -36719,7 +36742,7 @@ msgid_plural "fungicide" msgstr[0] "fongicide" msgstr[1] "fongicide" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -36732,7 +36755,7 @@ msgid_plural "insecticide" msgstr[0] "insecticide" msgstr[1] "insecticide" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -36746,7 +36769,7 @@ msgid_plural "salt water" msgstr[0] "eau salée" msgstr[1] "eau salée" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "De l'eau avec du sel. Mauvais à boire." @@ -36757,7 +36780,7 @@ msgid_plural "soapy water" msgstr[0] "eau savonneuse" msgstr[1] "eau savonneuse" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "De l'eau avec du savon. Mauvais à boire." @@ -36780,7 +36803,7 @@ msgid_plural "sulfuric acid" msgstr[0] "acide sulfurique" msgstr[1] "acide sulfurique" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -36799,7 +36822,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "acide chlorhydrique" msgstr[1] "acides chlorhydriques" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -36816,7 +36839,7 @@ msgid_plural "nitric acid" msgstr[0] "a" msgstr[1] "acide nitrique" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -36854,7 +36877,7 @@ msgid_plural "sewage water" msgstr[0] "eaux usées" msgstr[1] "eaux usées" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -36865,7 +36888,7 @@ msgid_plural "lye" msgstr[0] "soude" msgstr[1] "soude" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -36878,7 +36901,7 @@ msgid_plural "ether" msgstr[0] "ether" msgstr[1] "ether" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -36893,7 +36916,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -36908,7 +36931,7 @@ msgid_plural "chloroform" msgstr[0] "chloroforme" msgstr[1] "chloroforme" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -36922,7 +36945,7 @@ msgid_plural "phenol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -36938,7 +36961,7 @@ msgid_plural "glycerol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -36951,7 +36974,7 @@ msgid_plural "peptone broth powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -36965,7 +36988,7 @@ msgid_plural "agar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -36980,7 +37003,7 @@ msgid_plural "acrylamide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -36993,7 +37016,7 @@ msgid_plural "acetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -37006,7 +37029,7 @@ msgid_plural "formic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -37019,7 +37042,7 @@ msgid_plural "latex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -37030,7 +37053,7 @@ msgid_plural "citric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -37114,13 +37137,24 @@ msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -37159,7 +37193,7 @@ msgid_plural "marloss wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -37170,7 +37204,7 @@ msgid_plural "Riesling" msgstr[0] "Riesling" msgstr[1] "Riesling" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "Un vin blanc pétillant fait à partir d'un cépage noble." @@ -37181,7 +37215,7 @@ msgid_plural "Chardonnay" msgstr[0] "Chardonnay" msgstr[1] "Chardonnay" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "Le vin le plus populaire en Amérique, et ce pour une bonne raison." @@ -37192,7 +37226,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "Cabernet Sauvignon" msgstr[1] "Cabernet Sauvignon" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -37207,7 +37241,7 @@ msgid_plural "pinot noir" msgstr[0] "pinot noir" msgstr[1] "pinot noir" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -37222,7 +37256,7 @@ msgid_plural "marsala" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -37233,7 +37267,7 @@ msgid_plural "vermouth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -37246,7 +37280,7 @@ msgid_plural "barley wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -37257,7 +37291,7 @@ msgid_plural "whiskey" msgstr[0] "whiskey" msgstr[1] "whiskey" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -37269,7 +37303,7 @@ msgid_plural "vodka" msgstr[0] "vodka" msgstr[1] "vodka" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -37282,7 +37316,7 @@ msgid_plural "gin" msgstr[0] "gin" msgstr[1] "gin" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -37295,7 +37329,7 @@ msgid_plural "rum" msgstr[0] "rhum" msgstr[1] "rhum" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -37308,7 +37342,7 @@ msgid_plural "tequila" msgstr[0] "tequila" msgstr[1] "tequila" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -37321,7 +37355,7 @@ msgid_plural "triple sec" msgstr[0] "triple sec" msgstr[1] "triple sec" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -37333,7 +37367,7 @@ msgid_plural "cheap wine" msgstr[0] "vin bon marché" msgstr[1] "vin bon marché" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "Du vin très bon marché dont on a renforcé la teneur en alcool." @@ -37344,7 +37378,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "alcool fort mélangé" msgstr[1] "alcool fort mélangé" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "Des boissons alcoolisées fortes, mélangées sans tenir compte du goût." @@ -37355,7 +37389,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "alcool léger mélangé" msgstr[1] "alcool léger mélangé" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -37367,7 +37401,7 @@ msgid_plural "fruit wine" msgstr[0] "vin de fruits" msgstr[1] "vin de fruits" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -37379,7 +37413,7 @@ msgid_plural "brandy" msgstr[0] "brandy" msgstr[1] "brandy" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -37392,7 +37426,7 @@ msgid_plural "Irish coffee" msgstr[0] "café Irlandais" msgstr[1] "café Irlandais" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -37407,7 +37441,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "Long Island iced tea" msgstr[1] "Long Island iced tea" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -37434,7 +37468,7 @@ msgid_plural "wild apple" msgstr[0] "vodka pomme" msgstr[1] "vodka pomme" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "Du cidre avec de la vodka" @@ -37445,7 +37479,7 @@ msgid_plural "rum & cola" msgstr[0] "rhum-Coca" msgstr[1] "rhum-Coca" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -37458,7 +37492,7 @@ msgid_plural "beer" msgstr[0] "bière" msgstr[1] "bière" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -37471,7 +37505,7 @@ msgid_plural "spiced mead" msgstr[0] "hydromel épicé" msgstr[1] "hydromel épicé" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -37483,7 +37517,7 @@ msgid_plural "dandelion wine" msgstr[0] "vin de pissenlit" msgstr[1] "vin de pissenlit" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -37496,7 +37530,7 @@ msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -37507,7 +37541,7 @@ msgid_plural "pine wine" msgstr[0] "vin de sapin" msgstr[1] "vin de sapin" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -37522,7 +37556,7 @@ msgid_plural "homebrew beer" msgstr[0] "bière maison" msgstr[1] "bière maison" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "Pas la meilleure des boissons, mais c'est de l'alcool." @@ -37533,7 +37567,7 @@ msgid_plural "moonshine" msgstr[0] "alcool de contrebande" msgstr[1] "alcool de contrebande" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -37547,7 +37581,7 @@ msgid_plural "European pilsner" msgstr[0] "pilsner" msgstr[1] "pilsner" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -37560,7 +37594,7 @@ msgid_plural "American pale ale" msgstr[0] "bière blonde" msgstr[1] "bière blonde" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -37575,7 +37609,7 @@ msgid_plural "India pale ale" msgstr[0] "India pale ale" msgstr[1] "India pale ale" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -37590,7 +37624,7 @@ msgid_plural "stout" msgstr[0] "bière brune" msgstr[1] "bière brune" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "Une bière aussi sombre que les jours à venir." @@ -37601,7 +37635,7 @@ msgid_plural "Belgian ale" msgstr[0] "bière belge" msgstr[1] "bière belge" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -37614,7 +37648,7 @@ msgid_plural "imperial stout" msgstr[0] "bière noire" msgstr[1] "bière noire" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -37660,7 +37694,7 @@ msgid_plural "single malt whiskey" msgstr[0] "whisky single malt" msgstr[1] "whisky single malt" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "Uniquement le meilleur whisky pris directement à la source." @@ -37671,7 +37705,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -37682,7 +37716,7 @@ msgid_plural "cheap whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -37693,7 +37727,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -37704,7 +37738,7 @@ msgid_plural "sherry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -37716,7 +37750,7 @@ msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -37729,7 +37763,7 @@ msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -37740,7 +37774,7 @@ msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "Ça a vraiment le goût d'une boisson de clochard." @@ -37751,7 +37785,7 @@ msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -37764,7 +37798,7 @@ msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -37865,7 +37899,7 @@ msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -37876,7 +37910,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -37887,7 +37921,7 @@ msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -37900,7 +37934,7 @@ msgid_plural "sourdough bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -37913,7 +37947,7 @@ msgid_plural "flatbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "Simple pain sans levain." @@ -37924,7 +37958,7 @@ msgid_plural "bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "Simple et nourrissant." @@ -37935,7 +37969,7 @@ msgid_plural "toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -37948,7 +37982,7 @@ msgid_plural "buttered toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -37959,7 +37993,7 @@ msgid_plural "jam toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -37972,7 +38006,7 @@ msgid_plural "peanut butter toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -37984,7 +38018,7 @@ msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -37995,7 +38029,7 @@ msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -38008,7 +38042,7 @@ msgid_plural "cornbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "Du pain à la farine de maïs, nourrissant et bon pour la santé." @@ -38041,7 +38075,7 @@ msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -38067,7 +38101,7 @@ msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -38083,7 +38117,7 @@ msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -38094,7 +38128,7 @@ msgid_plural "hallula" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -38377,18 +38411,18 @@ msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -38399,8 +38433,8 @@ msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -38415,14 +38449,14 @@ msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -38433,7 +38467,7 @@ msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -38461,7 +38495,7 @@ msgid_plural "cooked fish" msgstr[0] "poisson cuit" msgstr[1] "poissons cuits" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "Du poisson cuit. Très nutritif." @@ -38564,7 +38598,7 @@ msgstr "" "De la viande fraîchement dépecée. Vous pourriez la manger crue, mais c'est " "bien mieux de la cuire." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -38669,7 +38703,7 @@ msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -38708,7 +38742,7 @@ msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -38755,7 +38789,7 @@ msgid_plural "butchery refuse" msgstr[0] "déchet de boucherie" msgstr[1] "déchets de boucherie" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -38847,7 +38881,7 @@ msgid_plural "cooked offal" msgstr[0] "abat cuisiné" msgstr[1] "abats cuisinés" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -38861,7 +38895,7 @@ msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -38872,7 +38906,7 @@ msgid_plural "pickled offal" msgstr[0] "Abat au vinaigre" msgstr[1] "Abats au vinaigre" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -38886,7 +38920,7 @@ msgid_plural "canned offal" msgstr[0] "Abats en conserve" msgstr[1] "Abats en conserves" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -38921,31 +38955,28 @@ msgid_plural "meat jerky" msgstr[0] "viande séchée" msgstr[1] "viandes séchées" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "imbécile séché" msgstr[1] "imbéciles séchés" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -38957,7 +38988,7 @@ msgid_plural "salted fish" msgstr[0] "poisson salé" msgstr[1] "poissons salés" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -38969,33 +39000,27 @@ msgid_plural "smoked meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -39016,7 +39041,7 @@ msgid_plural "smoked fish" msgstr[0] "poisson fumé" msgstr[1] "poissons fumés" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -39069,7 +39094,7 @@ msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -39120,7 +39145,7 @@ msgid_plural "raw brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -39131,7 +39156,7 @@ msgid_plural "cooked brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -39210,7 +39235,7 @@ msgstr[1] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "Du sang, peut-être du sang humain. Dégoûtant!" @@ -39372,7 +39397,7 @@ msgstr "" "De la viande qui est manifestement dangereuse pour la santé. Vous pourriez " "la manger mais cela vous empoisonnerait." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -39639,7 +39664,7 @@ msgid_plural "alien fronds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -39744,7 +39769,7 @@ msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -39755,7 +39780,7 @@ msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -39793,13 +39818,38 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -39813,7 +39863,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -39826,7 +39876,7 @@ msgid_plural "cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -39837,7 +39887,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -39849,7 +39899,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -39862,7 +39912,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -39875,7 +39925,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -39888,7 +39938,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -39901,7 +39951,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -39927,7 +39977,7 @@ msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -39951,7 +40001,7 @@ msgid_plural "wheat cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -39975,7 +40025,7 @@ msgid_plural "milk" msgstr[0] "lait" msgstr[1] "lait" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -39988,7 +40038,7 @@ msgid_plural "chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -39999,7 +40049,7 @@ msgid_plural "reconstituted milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -40012,7 +40062,7 @@ msgid_plural "raw milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -40027,7 +40077,7 @@ msgid_plural "shelf stable milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -40041,7 +40091,7 @@ msgid_plural "evaporated milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -40053,7 +40103,7 @@ msgid_plural "buttermilk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -40077,7 +40127,7 @@ msgid_plural "butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -40089,7 +40139,7 @@ msgid_plural "raw butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -40101,7 +40151,7 @@ msgid_plural "ghee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -40140,7 +40190,7 @@ msgid_plural "hard cheese" msgstr[0] "fromage à pâte dure" msgstr[1] "fromages à pâte dure" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -40155,7 +40205,7 @@ msgid_plural "cheese" msgstr[0] "fromage" msgstr[1] "fromages" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "Un morceau de fromage jaune industriel." @@ -40177,7 +40227,7 @@ msgid_plural "powdered milk" msgstr[0] "lait en poudre" msgstr[1] "lait en poudre" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -40190,7 +40240,7 @@ msgid_plural "condensed milk" msgstr[0] "lait concentré" msgstr[1] "lait concentré" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -40203,7 +40253,7 @@ msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -40216,7 +40266,7 @@ msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -40227,7 +40277,7 @@ msgid_plural "apple cider" msgstr[0] "cidre de pomme" msgstr[1] "cidre de pomme" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "Fraîchement pressé de pommes. Savoureux et nourrissant." @@ -40264,7 +40314,7 @@ msgid_plural "atomic coffee" msgstr[0] "café atomique" msgstr[1] "café atomique" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -40281,7 +40331,7 @@ msgid_plural "bee balm tea" msgstr[0] "thé de mélisse" msgstr[1] "thé de mélisse" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -40307,7 +40357,7 @@ msgid_plural "chai tea" msgstr[0] "thé chai" msgstr[1] "thé chai" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "Un thé aux épices asiatique traditionnel avec du lait." @@ -40318,7 +40368,7 @@ msgid_plural "chamomile tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -40344,7 +40394,7 @@ msgid_plural "coffee" msgstr[0] "café" msgstr[1] "café" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -40358,7 +40408,7 @@ msgid_plural "coffee substitute" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -40372,7 +40422,7 @@ msgid_plural "chicory brew" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -40447,7 +40497,7 @@ msgid_plural "dandelion tea" msgstr[0] "thé au pissenlit" msgstr[1] "thés au pissenlit" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -40459,7 +40509,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -40522,7 +40572,7 @@ msgid_plural "herbal tea" msgstr[0] "thé aux herbes" msgstr[1] "thés aux herbes" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "Un breuvage sain fait d'herbes trempées dans l'eau bouillante." @@ -40533,7 +40583,7 @@ msgid_plural "hot chocolate" msgstr[0] "chocolat chaud" msgstr[1] "chocolat chaud" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -40583,7 +40633,7 @@ msgid_plural "lemonade" msgstr[0] "limonade" msgstr[1] "limonades" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -40613,7 +40663,7 @@ msgid_plural "lotus tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -40624,7 +40674,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "Chocolat chaud mexicain" msgstr[1] "Chocolats chauds mexicains" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -40690,7 +40740,7 @@ msgid_plural "pine needle tea" msgstr[0] "thé d'aiguilles de pin" msgstr[1] "thé d'aiguilles de pin" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -40733,7 +40783,7 @@ msgid_plural "root beer" msgstr[0] "racinette" msgstr[1] "racinette" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -40774,13 +40824,13 @@ msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -40806,7 +40856,7 @@ msgid_plural "sweet water" msgstr[0] "eau sucrée" msgstr[1] "eau sucrée" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "De l'eau avec du sucre et du miel. Le goût est correct." @@ -40830,7 +40880,7 @@ msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -40870,7 +40920,7 @@ msgid_plural "water" msgstr[0] "eau" msgstr[1] "eau" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -40885,7 +40935,7 @@ msgid_plural "clean water" msgstr[0] "eau propre" msgstr[1] "eau propre" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -40898,7 +40948,7 @@ msgid_plural "mineral water" msgstr[0] "eau minérale" msgstr[1] "eau minérale" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -41029,7 +41079,7 @@ msgid_plural "maple sap" msgstr[0] "sève d'érable" msgstr[1] "sève d'érable" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "Une solution d'eau et de sucre qui a été extraite d'un érable." @@ -41040,7 +41090,7 @@ msgid_plural "mayonnaise" msgstr[0] "mayonnaise" msgstr[1] "mayonnaise" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -41067,7 +41117,7 @@ msgid_plural "mustard" msgstr[0] "moutarde" msgstr[1] "moutarde" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -41082,7 +41132,7 @@ msgid_plural "forest honey" msgstr[0] "miel de forêt" msgstr[1] "miels de forêt" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -41097,7 +41147,7 @@ msgid_plural "vinegar" msgstr[0] "vinaigre" msgstr[1] "vinaigre" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -41112,7 +41162,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "Une huile fine et jaune de légumes utilisée pour cuisiner." @@ -41123,7 +41173,7 @@ msgid_plural "animal cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -41134,7 +41184,7 @@ msgid_plural "molasses" msgstr[0] "mélasse" msgstr[1] "mélasse" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -41147,7 +41197,7 @@ msgid_plural "horseradish" msgstr[0] "raifort" msgstr[1] "raifort" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "Une racine rapeuse épicée saumurée dans du vinaigre." @@ -41158,7 +41208,7 @@ msgid_plural "coffee syrup" msgstr[0] "sirop de café" msgstr[1] "sirop de café" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -41505,7 +41555,7 @@ msgid_plural "scrambled eggs" msgstr[0] "oeufs brouillés" msgstr[1] "oeufs brouillés" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "De délicieux oeufs brouillés moelleux." @@ -41527,7 +41577,7 @@ msgid_plural "fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -41540,7 +41590,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -41553,7 +41603,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -41566,7 +41616,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -41758,7 +41808,7 @@ msgid_plural "frozen yogurt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -41828,7 +41878,7 @@ msgid_plural "peaches in syrup" msgstr[0] "pêches au sirop" msgstr[1] "pêches au sirop" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "Tranches de pèches Yellow Cling conditionnées avec un sirop léger." @@ -41850,7 +41900,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -41888,7 +41938,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "fruit déshydraté" msgstr[1] "fruits déshydratés" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -41905,7 +41955,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "fruit réhydraté" msgstr[1] "fruits réhydratés" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -41933,7 +41983,7 @@ msgid_plural "canned fruit" msgstr[0] "fruit en conserve" msgstr[1] "fruits en conserve" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -41948,7 +41998,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -41972,7 +42022,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -42414,7 +42464,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "brocolis irradié" msgstr[1] "brocolis irradiés" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -42474,7 +42524,7 @@ msgid_plural "irradiated corn" msgstr[0] "maïs irradié" msgstr[1] "maïs irradiés" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -42534,7 +42584,7 @@ msgid_plural "irradiated celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -42549,7 +42599,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -42666,12 +42716,12 @@ msgid_plural "potato chips" msgstr[0] "chips" msgstr[1] "chips" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "De simples chips salés" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "Eh mec, vous adorez ces chips! Cool!" @@ -42682,7 +42732,7 @@ msgid_plural "popcorn kernels" msgstr[0] "grain de popcorn" msgstr[1] "grains de popcorn" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -42697,7 +42747,7 @@ msgid_plural "popcorn" msgstr[0] "popcorn" msgstr[1] "popcorns" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -42712,7 +42762,7 @@ msgid_plural "salted popcorn" msgstr[0] "popcorn salé" msgstr[1] "popcorns salés" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "Du pop-corn avec du sel pour plus de goût." @@ -42723,7 +42773,7 @@ msgid_plural "buttered popcorn" msgstr[0] "popcorn au beurre" msgstr[1] "popcorns au beurre" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "Du pop-corn avec du beurre pour plus de goût." @@ -42734,7 +42784,7 @@ msgid_plural "pretzels" msgstr[0] "pretzels" msgstr[1] "pretzels" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "Un petit biscuit apéritif salé." @@ -42769,7 +42819,7 @@ msgid_plural "marshmallows" msgstr[0] "guimauve" msgstr[1] "guimauves" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "Une poignée de marshmallow spongieux, moelleux, onctueux et délicieux" @@ -42780,7 +42830,7 @@ msgid_plural "s'mores" msgstr[0] "s'more" msgstr[1] "s'mores" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -42815,7 +42865,7 @@ msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -42826,12 +42876,12 @@ msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -42879,7 +42929,7 @@ msgid_plural "powder candy sticks" msgstr[0] "bâton de poudre sucrée" msgstr[1] "bâtons de poudre sucrée" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -42959,7 +43009,7 @@ msgid_plural "maple syrup" msgstr[0] "sirop d'érable" msgstr[1] "sirop d'érable" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -42972,7 +43022,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "sirop de betteraves" msgstr[1] "sirop de betteraves" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -43028,7 +43078,7 @@ msgid_plural "fast-food French fries" msgstr[0] "frites de fast-food" msgstr[1] "frites de fast-food" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -43039,7 +43089,7 @@ msgid_plural "French fries" msgstr[0] "frites" msgstr[1] "frites" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -43061,7 +43111,7 @@ msgid_plural "Necco wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -43091,8 +43141,8 @@ msgid_plural "caramel" msgstr[0] "caramel" msgstr[1] "caramel" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "Du caramel. Toujours mauvais pour votre santé." @@ -43103,7 +43153,7 @@ msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "On parie que vous en mangerez plus d'une?" @@ -43114,7 +43164,7 @@ msgid_plural "tortilla chips" msgstr[0] "chips de maïs" msgstr[1] "chips de maïs" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -43128,7 +43178,7 @@ msgid_plural "cheese nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -43143,31 +43193,28 @@ msgid_plural "meat nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "nachos niño" msgstr[1] "nachos niño" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -43182,31 +43229,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "nachos niño avec fromage" msgstr[1] "nachos niño avec fromage" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -43219,7 +43266,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -43232,7 +43279,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -43310,7 +43357,7 @@ msgid_plural "chili dogs" msgstr[0] "chili-dog" msgstr[1] "chili-dogs" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "Un hot-dog, avec du chili con carne sur le dessus. Miam!" @@ -43321,7 +43368,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "corn-dog" msgstr[1] "corn-dogs" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -43399,7 +43446,7 @@ msgid_plural "cheese fries" msgstr[0] "frites au fromage" msgstr[1] "frites au fromage" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "" @@ -43489,8 +43536,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -43633,32 +43679,26 @@ msgid_plural "raw sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -43677,15 +43717,14 @@ msgid_plural "smoked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -43704,15 +43743,14 @@ msgid_plural "cooked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -43742,23 +43780,21 @@ msgid_plural "bratwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -43781,7 +43817,7 @@ msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -43838,7 +43874,7 @@ msgid_plural "cracklins" msgstr[0] "couenne grillée" msgstr[1] "couenne grillée" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -43851,8 +43887,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -43860,7 +43895,7 @@ msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -43877,7 +43912,7 @@ msgid_plural "currywursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -43885,8 +43920,7 @@ msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -43894,8 +43928,7 @@ msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -43918,9 +43951,8 @@ msgid_plural "aspics" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -43928,9 +43960,8 @@ msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -43938,9 +43969,8 @@ msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -43962,7 +43992,7 @@ msgid_plural "dehydrated fish" msgstr[0] "poisson déshydraté" msgstr[1] "poissons déshydratés" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -43977,7 +44007,7 @@ msgid_plural "rehydrated fish" msgstr[0] "poisson réhydraté" msgstr[1] "poissons réhydratés" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -43992,7 +44022,7 @@ msgid_plural "pickled fish" msgstr[0] "poisson saumuré" msgstr[1] "poissons saumurés" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -44004,7 +44034,7 @@ msgid_plural "canned fish" msgstr[0] "poisson en conserve" msgstr[1] "poissons en conserve" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -44019,7 +44049,7 @@ msgid_plural "batter fried fish" msgstr[0] "poisson pané frit" msgstr[1] "poissons panés frits" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "Une barre de poisson enrôbée de panure et frit." @@ -44052,8 +44082,7 @@ msgid_plural "lunch meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -44074,7 +44103,7 @@ msgid_plural "bologna" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -44082,8 +44111,7 @@ msgid_plural "brat %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -44091,8 +44119,7 @@ msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -44100,7 +44127,7 @@ msgid_plural "bleak %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -44129,7 +44156,7 @@ msgid_plural "SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -44170,24 +44197,22 @@ msgid_plural "sausage gravies" msgstr[0] "sauce saussice" msgstr[1] "sauce saussice" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "sauce wurst d'humain" msgstr[1] "sauce wurst d'humain" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -44210,7 +44235,7 @@ msgid_plural "pemmican" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -44218,8 +44243,7 @@ msgid_plural "prepper %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -44227,8 +44251,7 @@ msgid_plural "Orley %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -44236,7 +44259,7 @@ msgid_plural "pernicious %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -44253,15 +44276,14 @@ msgid_plural "hamburger helpers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -44269,8 +44291,7 @@ msgid_plural "halfling helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -44304,24 +44325,22 @@ msgid_plural "chilis con carne" msgstr[0] "chili con carne" msgstr[1] "chilis con carne" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -44339,7 +44358,7 @@ msgid_plural "pork and beans" msgstr[0] "porc et haricots" msgstr[1] "porc et haricots" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -44353,7 +44372,7 @@ msgid_plural "canned tuna fish" msgstr[0] "thon en conserve" msgstr[1] "thon en conserve" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "Avec 95 pourcent de dophins en moins!" @@ -44364,7 +44383,7 @@ msgid_plural "canned salmon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "Un poisson rose éclatant en boîte de conserve!" @@ -44386,7 +44405,7 @@ msgid_plural "pickled herring" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -44411,16 +44430,14 @@ msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -44440,15 +44457,14 @@ msgid_plural "baked beans" msgstr[0] "haricots cuits au four" msgstr[1] "haricots cuits au four" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" @@ -44460,15 +44476,14 @@ msgid_plural "meat fried rice" msgstr[0] "riz frit à la viande" msgstr[1] "riz frit à la viande" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "Du riz délicieux frit avec de la viande. Goûtu et très copieux." @@ -44479,15 +44494,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "haricots et riz de luxe" msgstr[1] "haricots et riz de luxe" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -44501,22 +44516,21 @@ msgid_plural "meat pies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -44535,23 +44549,21 @@ msgid_plural "meat pizzas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -44583,31 +44595,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "oeufs brouillés de luxe" msgstr[1] "oeufs brouillés de luxe" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -44622,15 +44633,14 @@ msgid_plural "canned meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -44653,15 +44663,14 @@ msgid_plural "salted meat slices" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -44680,15 +44689,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "spaghetti bolognaise" msgstr[1] "spaghetti bolognaise" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -44696,8 +44704,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -44705,7 +44712,7 @@ msgid_plural "gnarly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "Des spaghetti recouvertes d'une épaisse sauce à la viande. Miam! " @@ -44716,7 +44723,7 @@ msgid_plural "lasagnes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -44724,8 +44731,7 @@ msgid_plural "Luigi %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -44733,7 +44739,7 @@ msgid_plural "Lab %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -44754,7 +44760,7 @@ msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "Le SPAM frit est bien meilleur." @@ -44765,8 +44771,7 @@ msgid_plural "cheeseburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -44774,7 +44779,7 @@ msgid_plural "chump %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -44783,8 +44788,7 @@ msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -44818,23 +44822,21 @@ msgid_plural "hamburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -44853,23 +44855,21 @@ msgid_plural "sloppy joes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "hommeburger" msgstr[1] "hommeburgers" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -44892,7 +44892,7 @@ msgid_plural "tacos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -44900,8 +44900,7 @@ msgid_plural "tio %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -44909,7 +44908,7 @@ msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -44932,15 +44931,14 @@ msgid_plural "pickled meats" msgstr[0] "viande en saumure" msgstr[1] "viandes en saumure" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -44962,10 +44960,8 @@ msgid_plural "dehydrated meats" msgstr[0] "viande déshydratée" msgstr[1] "viandes déshydratées" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -44973,12 +44969,11 @@ msgid_plural "%s, human" msgstr[0] "%shumain" msgstr[1] "%shumain" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -45015,9 +45010,8 @@ msgid_plural "haggises" msgstr[0] "haggis" msgstr[1] "haggis" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -45043,7 +45037,7 @@ msgid_plural "fish makizushi" msgstr[0] "makizushi au poisson" msgstr[1] "makizushi au poisson" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -45057,8 +45051,7 @@ msgid_plural "meat temaki" msgstr[0] "temaki à la viande" msgstr[1] "temaki à la viande" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -45066,7 +45059,7 @@ msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -45080,7 +45073,7 @@ msgid_plural "sashimi" msgstr[0] "sashimi" msgstr[1] "sashimi" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "Des tranches de poisson crues avec des petits légumes." @@ -45106,7 +45099,7 @@ msgid_plural "pelmenis" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -45128,8 +45121,7 @@ msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -45150,15 +45142,14 @@ msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -45177,15 +45168,14 @@ msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -45226,12 +45216,12 @@ msgid_plural "prescription stimulant" msgstr[0] "stimulant sur ordonnance" msgstr[1] "stimulant sur ordonnance" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "Vous prenez des stimulants." -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -45286,7 +45276,7 @@ msgid_plural "antibiotics" msgstr[0] "antibiotiques" msgstr[1] "antibiotiques" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -45318,7 +45308,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "médicament antiparasite" msgstr[1] "médicament antiparasite" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -45404,7 +45394,7 @@ msgid_plural "antiseptic powder" msgstr[0] "poudre antiseptique" msgstr[1] "poudre antiseptique" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -45465,7 +45455,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "peroxyde d'hydrogène" msgstr[1] "peroxyde d'hydrogène" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -45527,12 +45517,12 @@ msgid_plural "codeine" msgstr[0] "codéine" msgstr[1] "codéine" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "Vous prenez de la codéine." -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -45549,7 +45539,7 @@ msgid_plural "cocaine" msgstr[0] "cocaïne" msgstr[1] "cocaïne" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -45600,7 +45590,7 @@ msgid_plural "cotton balls" msgstr[0] "boules de coton" msgstr[1] "boules de coton" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -45616,12 +45606,12 @@ msgid_plural "crack" msgstr[0] "crack" msgstr[1] "crack" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "Vous fumez votre crack pur. Maman serait fière." -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -45636,7 +45626,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "sirop contre la toux sans somnolence" msgstr[1] "sirops contre la toux sans somnolence" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -45654,7 +45644,7 @@ msgid_plural "antiseptic" msgstr[0] "antiseptique" msgstr[1] "antiseptiques" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -45680,7 +45670,7 @@ msgid_plural "prescription sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -45695,12 +45685,12 @@ msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -45717,12 +45707,12 @@ msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -45738,12 +45728,12 @@ msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -45757,16 +45747,14 @@ msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -45780,7 +45768,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -45794,7 +45782,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -45808,7 +45796,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -45822,7 +45810,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -45836,7 +45824,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -45851,7 +45839,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -45866,7 +45854,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -45880,7 +45868,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -45894,12 +45882,12 @@ msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -45984,7 +45972,7 @@ msgid_plural "chewing gum" msgstr[0] "chewing gum" msgstr[1] "chewing gum" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -46012,13 +46000,13 @@ msgid_plural "heroin" msgstr[0] "héroïne" msgstr[1] "héroïne" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "Vous vous shootez." -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -46103,7 +46091,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "méthamphétamine de bas grade" msgstr[1] "méthamphétamine de bas grade" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -46120,7 +46108,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -46175,7 +46163,7 @@ msgid_plural "cough syrup" msgstr[0] "sirop pour la toux" msgstr[1] "sirops pour la toux" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -46211,7 +46199,7 @@ msgid_plural "sleeping pill" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -46260,7 +46248,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "sirop de pavot pour la toux" msgstr[1] "sirops de pavot pour la toux" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -46273,15 +46261,14 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -46296,7 +46283,7 @@ msgid_plural "antidepressant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -46330,7 +46317,7 @@ msgid_plural "hemostatic powder" msgstr[0] "poudre hémostatique" msgstr[1] "poudre hémostatique" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -46358,7 +46345,7 @@ msgid_plural "antipsychotic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -46628,12 +46615,12 @@ msgid_plural "marijuana" msgstr[0] "marijuana" msgstr[1] "marijuana" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "Vous fumez de l'herbe. Du bon matos mon pote !" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -46650,7 +46637,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -46679,7 +46666,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "Boules de coton imbibées d'antiseptique" msgstr[1] "Boules de coton imbibées d'antiseptique" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -46694,7 +46681,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -46763,7 +46750,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -46778,7 +46765,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -47260,7 +47247,7 @@ msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -47510,9 +47497,8 @@ msgstr[1] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -47579,7 +47565,7 @@ msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -47698,7 +47684,8 @@ msgstr[1] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -47844,7 +47831,7 @@ msgid_plural "pine nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -47855,7 +47842,7 @@ msgid_plural "junipers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -47868,7 +47855,7 @@ msgid_plural "shelled pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -47880,7 +47867,7 @@ msgid_plural "roasted pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -47891,7 +47878,7 @@ msgid_plural "shelled almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -47902,7 +47889,7 @@ msgid_plural "almond pulp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -47914,7 +47901,7 @@ msgid_plural "roasted almonds" msgstr[0] "amandes grillées" msgstr[1] "amandes grillées" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -47925,7 +47912,7 @@ msgid_plural "cashews" msgstr[0] "noix de cajou" msgstr[1] "noix de cajou" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "Une poignée de noix de cajou salées." @@ -47936,7 +47923,7 @@ msgid_plural "shelled pecans" msgstr[0] "noix de pécan décortiquées" msgstr[1] "noix de pécan décortiquées" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -47949,7 +47936,7 @@ msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -47960,7 +47947,7 @@ msgid_plural "shelled peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -47971,7 +47958,7 @@ msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -47982,7 +47969,7 @@ msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -47995,7 +47982,7 @@ msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -48006,7 +47993,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -48019,7 +48006,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -48030,7 +48017,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -48043,7 +48030,7 @@ msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -48054,7 +48041,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -48065,7 +48052,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -48076,7 +48063,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -48091,7 +48078,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -48150,7 +48137,7 @@ msgid_plural "acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -48163,7 +48150,7 @@ msgid_plural "roasted acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -48174,7 +48161,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -48189,7 +48176,7 @@ msgid_plural "foie gras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -48201,7 +48188,7 @@ msgid_plural "liver & onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "" @@ -48256,7 +48243,7 @@ msgid_plural "leverpostej" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -48475,7 +48462,7 @@ msgid_plural "marloss gelatin" msgstr[0] "gélatine de marloss" msgstr[1] "gélatines de marloss" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -48506,7 +48493,7 @@ msgid_plural "yeast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -48518,7 +48505,7 @@ msgid_plural "bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -48531,7 +48518,7 @@ msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -48543,7 +48530,7 @@ msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -48554,7 +48541,7 @@ msgid_plural "tainted bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "De la farine animale faite d'os pourris." @@ -48565,7 +48552,7 @@ msgid_plural "chitin powder" msgstr[0] "poudre de chitine" msgstr[1] "poudre de chitine" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -48616,7 +48603,7 @@ msgid_plural "dried beans" msgstr[0] "haricots séchés" msgstr[1] "haricots séchés" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -48631,7 +48618,7 @@ msgid_plural "cooked beans" msgstr[0] "haricots cuits" msgstr[1] "haricots cuits" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "Une portion copieuse de haricots du Great Northern." @@ -48642,8 +48629,8 @@ msgid_plural "tofu" msgstr[0] "tofu" msgstr[1] "tofu" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -48662,7 +48649,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -48673,7 +48660,7 @@ msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -48699,7 +48686,7 @@ msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -48711,7 +48698,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -48725,7 +48712,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -48736,7 +48723,7 @@ msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -48747,7 +48734,7 @@ msgid_plural "coffee powder" msgstr[0] "poudre de café" msgstr[1] "poudre de café" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -48762,7 +48749,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -48775,7 +48762,7 @@ msgid_plural "candied honey" msgstr[0] "miel confit" msgstr[1] "miel confit" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -48820,7 +48807,7 @@ msgid_plural "cattle fodder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -48833,7 +48820,7 @@ msgid_plural "bird food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -48846,7 +48833,7 @@ msgid_plural "wet dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -48859,7 +48846,7 @@ msgid_plural "dry dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -48872,7 +48859,7 @@ msgid_plural "wet cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -48885,7 +48872,7 @@ msgid_plural "dry cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -49012,7 +48999,7 @@ msgid_plural "instant coffee mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -49051,15 +49038,14 @@ msgid_plural "protein drinks" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -49067,14 +49053,11 @@ msgid_plural "sapient green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -49097,15 +49080,14 @@ msgid_plural "protein powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -49113,7 +49095,7 @@ msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -49144,15 +49126,14 @@ msgid_plural "protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -49175,7 +49156,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -49183,7 +49164,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -49254,7 +49235,7 @@ msgid_plural "blueberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "Elles sont bleues, mais pas forcément tristes." @@ -49265,7 +49246,7 @@ msgid_plural "strawberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "Une baie juteuse et savoureuse qui pousse souvent à l'état sauvage." @@ -49276,7 +49257,7 @@ msgid_plural "cranberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "Des baies rouges aigres. Elles sont bénéfiques pour la santé." @@ -49287,7 +49268,7 @@ msgid_plural "raspberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "Une baie rouge sucrée." @@ -49298,7 +49279,7 @@ msgid_plural "huckleberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "Les myrtilles, souvent confondues pour les myrtilles." @@ -49309,7 +49290,7 @@ msgid_plural "mulberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -49324,7 +49305,7 @@ msgid_plural "elderberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -49337,7 +49318,7 @@ msgid_plural "rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "Le fruit d'une fleur de rose pollinisée." @@ -49385,7 +49366,7 @@ msgid_plural "cherries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "Un fruit rouge et sucré qui pousse sur des arbres." @@ -49410,7 +49391,7 @@ msgid_plural "grapes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -49476,7 +49457,7 @@ msgid_plural "blackberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "Un cousin sombre des framboises." @@ -49535,7 +49516,7 @@ msgid_plural "apricots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "Un fruit à la peau douce, voisine de la pêche." @@ -49576,7 +49557,7 @@ msgid_plural "bee balm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -49590,7 +49571,7 @@ msgid_plural "broccoli" msgstr[0] "broccoli" msgstr[1] "broccolis" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "C'est un peu coriace, mais pas mauvais." @@ -49601,7 +49582,7 @@ msgid_plural "buckwheat" msgstr[0] "sarrasin" msgstr[1] "sarrasin" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -49627,7 +49608,7 @@ msgid_plural "spinach" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -49680,7 +49661,7 @@ msgid_plural "celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "Ni savoureux ni très nutritif, mais il va bien dans la salade." @@ -49704,7 +49685,7 @@ msgid_plural "corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "De délicieux grains dorés." @@ -49715,7 +49696,7 @@ msgid_plural "empty corn cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -49779,7 +49760,7 @@ msgid_plural "salsify" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -49793,7 +49774,7 @@ msgid_plural "chicory" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -49918,7 +49899,7 @@ msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -49957,7 +49938,7 @@ msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -49970,7 +49951,7 @@ msgid_plural "dandelions" msgstr[0] "pissenlit" msgstr[1] "pissenlits" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -49983,7 +49964,7 @@ msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -50087,7 +50068,7 @@ msgid_plural "wild vegetables" msgstr[0] "légumes sauvages" msgstr[1] "légumes sauvages" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -50124,7 +50105,7 @@ msgid_plural "raw beans" msgstr[0] "haricot cru" msgstr[1] "haricots crus" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -50137,7 +50118,7 @@ msgid_plural "raw lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -50148,7 +50129,7 @@ msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -50187,8 +50168,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "sandwich de luxe" msgstr[1] "sandwichs de luxe" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -50204,6 +50184,27 @@ msgstr "" "Un sandwich à la viande avec des légumes du fromage et des condiments. Bon " "et nourrissant!" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -50267,7 +50268,7 @@ msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -50317,26 +50318,23 @@ msgid_plural "meat sandwiches" msgstr[0] "sandwich à la viande" msgstr[1] "sandwichs à la viande" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "sandwich de chair humaine" msgstr[1] "sandwiches de chair humaine" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -50463,7 +50461,7 @@ msgid_plural "mushroom spores" msgstr[0] "spore de champignon" msgstr[1] "spores de champignons" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -50474,7 +50472,7 @@ msgid_plural "hop rhizomes" msgstr[0] "rhizomes de houblon" msgstr[1] "rhizomes de houblon" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "Racine d'une plante de houblon, afin d'en cultiver." @@ -50489,7 +50487,7 @@ msgid_plural "blackberry seeds" msgstr[0] "graines de mûre" msgstr[1] "graines de mûre" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "Des graines de mûre." @@ -50504,7 +50502,7 @@ msgid_plural "blueberry seeds" msgstr[0] "graines de myrtillier" msgstr[1] "graines de myrtillier" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "Des graines de myrtille." @@ -50519,7 +50517,7 @@ msgid_plural "cranberry seeds" msgstr[0] "graines de canneberge" msgstr[1] "graines de canneberge" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "Des graines de canneberge." @@ -50534,7 +50532,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -50549,7 +50547,7 @@ msgid_plural "mulberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -50564,7 +50562,7 @@ msgid_plural "elderberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -50579,7 +50577,7 @@ msgid_plural "raspberry seeds" msgstr[0] "graines de framboise" msgstr[1] "graines de framboise" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "Des graines de framboise." @@ -50594,7 +50592,7 @@ msgid_plural "strawberry seeds" msgstr[0] "graines de fraisier" msgstr[1] "graines de fraisier" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "Des graines de fraisier." @@ -50609,7 +50607,7 @@ msgid_plural "grape seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -50624,7 +50622,7 @@ msgid_plural "rose seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -50639,7 +50637,7 @@ msgid_plural "tobacco seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -50654,7 +50652,7 @@ msgid_plural "barley seeds" msgstr[0] "graines d'orge" msgstr[1] "graines d'orge" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "Quelques graines d'orge." @@ -50665,7 +50663,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "graines de betteraves" msgstr[1] "graines de betteraves" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "Quelques graines de betteraves." @@ -50676,7 +50674,7 @@ msgid_plural "lettuce seeds" msgstr[0] "graines de laitue" msgstr[1] "graines de laitue" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "Des graines de laitue." @@ -50687,7 +50685,7 @@ msgid_plural "cabbage seeds" msgstr[0] "graines de chou" msgstr[1] "graines de chou" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "Des graines de chou blanc." @@ -50698,7 +50696,7 @@ msgid_plural "tomato seeds" msgstr[0] "graines de tomate" msgstr[1] "graines de tomate" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "Quelques graines de tomate." @@ -50709,7 +50707,7 @@ msgid_plural "cotton seeds" msgstr[0] "graines de coton" msgstr[1] "graines de coton" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -50726,7 +50724,7 @@ msgid_plural "broccoli seeds" msgstr[0] "graines de brocolis" msgstr[1] "graines de brocolis" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "Des graines de brocolis." @@ -50737,7 +50735,7 @@ msgid_plural "zucchini seeds" msgstr[0] "graines de courgette" msgstr[1] "graines de courgette" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "Des graines de courgette." @@ -50748,7 +50746,7 @@ msgid_plural "onion seeds" msgstr[0] "graines d'oignon" msgstr[1] "graines d'oignon" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "Des graines d'oignon." @@ -50759,7 +50757,7 @@ msgid_plural "garlic seeds" msgstr[0] "graines d'ail." msgstr[1] "graines d'ail" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "Quelques graines d'ail." @@ -50774,7 +50772,7 @@ msgid_plural "cattail seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -50789,7 +50787,7 @@ msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -50804,7 +50802,7 @@ msgid_plural "salsify seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -50815,7 +50813,7 @@ msgid_plural "chicory seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -50826,7 +50824,7 @@ msgid_plural "wild root seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -50837,7 +50835,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -50854,7 +50852,7 @@ msgid_plural "cactus seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -50880,7 +50878,7 @@ msgid_plural "carrot seeds" msgstr[0] "graines de carotte" msgstr[1] "graines de carotte" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "Des graines de carotte." @@ -50891,7 +50889,7 @@ msgid_plural "corn seeds" msgstr[0] "graines de maïs" msgstr[1] "graines de maïs" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "Des graines de maïs." @@ -50906,7 +50904,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "graines de piment" msgstr[1] "graines de piment" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "Des graines de poivrons." @@ -50917,7 +50915,7 @@ msgid_plural "cucumber seeds" msgstr[0] "graines de concombre" msgstr[1] "graines de concombre" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "Des graines de concombre." @@ -50945,7 +50943,7 @@ msgid_plural "cannabis seeds" msgstr[0] "graines de cannabis" msgstr[1] "graines de cannabis" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -50978,7 +50976,7 @@ msgid_plural "bean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -50993,7 +50991,7 @@ msgid_plural "soybean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -51002,7 +51000,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -51017,7 +51015,7 @@ msgid_plural "thyme seeds" msgstr[0] "graine de thym" msgstr[1] "graines de thym" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -51034,7 +51032,7 @@ msgid_plural "canola seeds" msgstr[0] "graine de colza" msgstr[1] "graines de colza" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -51045,7 +51043,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "graines de citrouille" msgstr[1] "graines de citrouille" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -51056,7 +51054,7 @@ msgid_plural "sunflower seeds" msgstr[0] "graines de tournesol" msgstr[1] "graines de tournesol" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -51076,7 +51074,7 @@ msgid_plural "dogbane seeds" msgstr[0] "graine d'apocyne" msgstr[1] "graines d'apocyne" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -51087,7 +51085,7 @@ msgid_plural "bee balm seeds" msgstr[0] "graine de mélisse" msgstr[1] "graines de mélisse" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -51098,7 +51096,7 @@ msgid_plural "mugwort seeds" msgstr[0] "graine d'armoise" msgstr[1] "graines d'armoise" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -51109,7 +51107,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "graine de sarrasin" msgstr[1] "graines de sarrasin" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -51120,7 +51118,7 @@ msgid_plural "wild herb seeds" msgstr[0] "graine d'herbe sauvage" msgstr[1] "graines d'herbe sauvage" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -51135,7 +51133,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "pousse de légume sauvage" msgstr[1] "pousses de légumes sauvages" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -51150,7 +51148,7 @@ msgid_plural "dandelion seeds" msgstr[0] "graine de pissenlit" msgstr[1] "graines de pissenlit" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "Quelque graines de pissenlit." @@ -51165,7 +51163,7 @@ msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -51180,7 +51178,7 @@ msgid_plural "rhubarb stems" msgstr[0] "pousse de rhubarbe" msgstr[1] "pousses de rhubarbe" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -51191,7 +51189,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "spores de morilles" msgstr[1] "spores de morilles" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -51202,7 +51200,7 @@ msgid_plural "datura seeds" msgstr[0] "graine de datura" msgstr[1] "graines de datura" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -51220,7 +51218,7 @@ msgid_plural "celery seeds" msgstr[0] "graines de céleri" msgstr[1] "graines de céleri" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "Des graines de céleri." @@ -51231,7 +51229,7 @@ msgid_plural "oat seeds" msgstr[0] "graines d'avoine" msgstr[1] "graines d'avoine" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "Des graines d'avoine." @@ -51248,7 +51246,7 @@ msgid_plural "wheat seeds" msgstr[0] "grains de blé" msgstr[1] "grains de blé" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "Des graines de blé." @@ -51265,7 +51263,7 @@ msgid_plural "fried seeds" msgstr[0] "graines grillées" msgstr[1] "graines grillées" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -51293,7 +51291,7 @@ msgid_plural "coffee beans" msgstr[0] "grain de café" msgstr[1] "grains de café" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "Des grains de café que l'on peut griller." @@ -51304,7 +51302,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "grains de café grillés" msgstr[1] "grains de café grillés" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "Des grains de café grillés que l'on peut réduire en poudre." @@ -51315,7 +51313,7 @@ msgid_plural "chamomile seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -51330,7 +51328,7 @@ msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -51345,7 +51343,7 @@ msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -51356,7 +51354,7 @@ msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -51367,7 +51365,7 @@ msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -51378,7 +51376,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -51400,8 +51398,7 @@ msgid_plural "bone broths" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -51431,15 +51428,14 @@ msgid_plural "meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -51479,8 +51475,7 @@ msgid_plural "curries with meat" msgstr[0] "viande au curry" msgstr[1] "viandes au curry" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -51498,10 +51493,8 @@ msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -51567,7 +51560,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "poulet et boulettes de pâte" msgstr[1] "poulet et boulettes de pâte" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" @@ -51592,7 +51585,7 @@ msgid_plural "chili powder" msgstr[0] "poudre de chili" msgstr[1] "poudre de chili" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -51605,7 +51598,7 @@ msgid_plural "hot sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -51618,7 +51611,7 @@ msgid_plural "cinnamon" msgstr[0] "cannelle" msgstr[1] "cannelle" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "Écorce de cannelle avec une douce mais légèrement épicée." @@ -51629,7 +51622,7 @@ msgid_plural "curry powder" msgstr[0] "poudre de curry" msgstr[1] "poudre de curry" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -51642,7 +51635,7 @@ msgid_plural "black pepper" msgstr[0] "poivre noir" msgstr[1] "poivre noir" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "Des grains d'épice noirs à l'arôme âcre." @@ -51653,7 +51646,7 @@ msgid_plural "salt" msgstr[0] "sel" msgstr[1] "sel" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -51668,7 +51661,7 @@ msgid_plural "Italian seasoning" msgstr[0] "herbe de Provence" msgstr[1] "herbes de Provence" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -51680,7 +51673,7 @@ msgid_plural "seasoned salt" msgstr[0] "sel assaisonné" msgstr[1] "sel assaisonné" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -51692,7 +51685,7 @@ msgid_plural "sugar" msgstr[0] "sucre" msgstr[1] "sucre" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -51707,7 +51700,7 @@ msgid_plural "sprinkles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -51727,7 +51720,7 @@ msgid_plural "wild herbs" msgstr[0] "herbes sauvages" msgstr[1] "herbes sauvages" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -51740,7 +51733,7 @@ msgid_plural "soy sauce" msgstr[0] "sauce soja" msgstr[1] "sauce soja" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "Une sauce salée de fèves de soja fermentées." @@ -51756,7 +51749,7 @@ msgid_plural "mustard powder" msgstr[0] "poudre de moutarde" msgstr[1] "poudres de moutarde" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -51812,7 +51805,7 @@ msgid_plural "starch" msgstr[0] "amidon" msgstr[1] "amidon" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -51827,7 +51820,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "feuille de pissenlit cuisinée" msgstr[1] "feuilles de pissenlit cuisinées" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "Des feuilles de pissenlit cuisinées. Bonnes et nutritives." @@ -51838,7 +51831,7 @@ msgid_plural "fried dandelions" msgstr[0] "pissenlit frit" msgstr[1] "pissenlits frits" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -51852,7 +51845,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "feuilles de bardane cuites" msgstr[1] "feuilles de bardane cuites" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "Feuilles de bardane cuites. Savoureux et nutritif." @@ -51863,7 +51856,7 @@ msgid_plural "fried burdocks" msgstr[0] "bardanes frites" msgstr[1] "bardanes frites" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -51900,7 +51893,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "légume sauvage cuisiné" msgstr[1] "légumes sauvages cuisinés" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -51927,7 +51920,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "sarrasin cuit" msgstr[1] "sarrasin cuit" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -51939,7 +51932,7 @@ msgid_plural "canned corn" msgstr[0] "maïs en conserve" msgstr[1] "maïs en conserve" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "Du maïs en boîte. Bon appétit!" @@ -51950,7 +51943,7 @@ msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -51961,7 +51954,7 @@ msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -51972,7 +51965,7 @@ msgid_plural "hominy" msgstr[0] "hominy" msgstr[1] "hominy" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -51987,7 +51980,7 @@ msgid_plural "cornmeal" msgstr[0] "farine de maïs" msgstr[1] "farine de maïs" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "De la farine de maïs pour vos pains, pâtes et gâteaux." @@ -51998,7 +51991,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "haricots cuits pour végétariens" msgstr[1] "haricots cuits pour végétariens" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" @@ -52010,7 +52003,7 @@ msgid_plural "dried rice" msgstr[0] "riz séché" msgstr[1] "riz séché" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -52025,7 +52018,7 @@ msgid_plural "cooked rice" msgstr[0] "riz cuisiné" msgstr[1] "riz cuisiné" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "Une portion copieuse de riz long et blanc." @@ -52036,7 +52029,7 @@ msgid_plural "fried rice" msgstr[0] "riz frit" msgstr[1] "riz frit" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "Du riz délicieux frit avec des légumes. Goûtu et très copieux." @@ -52047,7 +52040,7 @@ msgid_plural "beans and rice" msgstr[0] "haricots et riz" msgstr[1] "haricots et riz" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -52062,7 +52055,7 @@ msgid_plural "tofu fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -52073,7 +52066,7 @@ msgid_plural "tofu stirfry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -52086,7 +52079,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "haricots et riz de luxe pour végétariens" msgstr[1] "haricots et riz de luxe pour végétariens" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -52162,7 +52155,7 @@ msgid_plural "pesto" msgstr[0] "pesto" msgstr[1] "pesto" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -52206,7 +52199,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "spaghetti au pesto" msgstr[1] "spaghetti au pesto" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "Des spaghetti avec une portion généreuse de sauce pesto. Miam!" @@ -52229,7 +52222,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "choucroute avec oignions sautés" msgstr[1] "choucroutes avec oignions sautés" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -52274,7 +52267,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -52300,7 +52293,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -52384,7 +52377,7 @@ msgid_plural "sushi rice" msgstr[0] "riz pour sushi" msgstr[1] "riz pour sushi" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -52396,7 +52389,7 @@ msgid_plural "onigiri" msgstr[0] "onigiri" msgstr[1] "onigiri" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -52410,7 +52403,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "hosomaki de légumes" msgstr[1] "hosomakis de légumes" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -52438,7 +52431,7 @@ msgid_plural "sauerkraut" msgstr[0] "choucroute" msgstr[1] "choucroutes" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -52465,7 +52458,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "crosses de fougère bouillies" msgstr[1] "crosses de fougère bouillies" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -52478,7 +52471,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -52496,7 +52489,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "Du blé brut, ce n'est pas très bon." @@ -52507,7 +52500,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -52520,7 +52513,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -52533,7 +52526,7 @@ msgid_plural "boiled noodles" msgstr[0] "nouilles cuites" msgstr[1] "nouilles cuites" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "Des nouilles. Un peu fade, mais ça rempli l'estomac." @@ -52544,7 +52537,7 @@ msgid_plural "raw macaroni" msgstr[0] "macaroni cru" msgstr[1] "macaronis crus" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -52556,7 +52549,7 @@ msgid_plural "mac & cheese" msgstr[0] "gratin de macaroni" msgstr[1] "gratins de macaroni" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "Qui n'aime pas le fromage fondu?" @@ -52567,7 +52560,7 @@ msgid_plural "flour" msgstr[0] "farine" msgstr[1] "farine" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "De la farine enrichie pour vos pains, pâtes et gâteaux." @@ -52578,7 +52571,7 @@ msgid_plural "bread flour" msgstr[0] "farine de pain" msgstr[1] "farine de pain" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -52591,7 +52584,7 @@ msgid_plural "oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " @@ -52600,7 +52593,7 @@ msgstr "" "Des flocons séchés de grains aplatis. Bons et nutritifs quand on les " "cuisine." -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "De l'avoine brute." @@ -52611,7 +52604,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -52624,7 +52617,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -52715,7 +52708,7 @@ msgid_plural "oyster crackers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -52750,7 +52743,7 @@ msgid_plural "granola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -52774,7 +52767,7 @@ msgid_plural "fast noodles" msgstr[0] "nouilles instantanées" msgstr[1] "nouilles instantanées" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -52981,7 +52974,7 @@ msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -52992,7 +52985,7 @@ msgid_plural "melon seeds" msgstr[0] "graines de melon" msgstr[1] "graines de melon" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "Quelques graines de melon." @@ -53003,7 +52996,7 @@ msgid_plural "banana saplings" msgstr[0] "plants de bananiers" msgstr[1] "plants de bananiers" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "Quelque plants de bananiers" @@ -53014,7 +53007,7 @@ msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -53025,7 +53018,7 @@ msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -53036,7 +53029,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -53090,7 +53083,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -53136,7 +53129,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -53149,7 +53142,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -53190,7 +53183,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -53300,7 +53293,7 @@ msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -53314,7 +53307,7 @@ msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -53404,7 +53397,7 @@ msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -53418,7 +53411,7 @@ msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -53432,7 +53425,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -53444,7 +53437,7 @@ msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -53457,7 +53450,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -53512,7 +53505,7 @@ msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -53528,7 +53521,7 @@ msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -53542,7 +53535,7 @@ msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -53556,7 +53549,7 @@ msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -53617,7 +53610,7 @@ msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -53631,7 +53624,7 @@ msgid_plural "food cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -53643,7 +53636,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -53667,7 +53660,7 @@ msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -53693,7 +53686,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -53707,7 +53700,7 @@ msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -53723,7 +53716,7 @@ msgid_plural "caffex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -53764,7 +53757,7 @@ msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -53826,7 +53819,7 @@ msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -53847,7 +53840,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -54130,8 +54123,8 @@ msgstr[0] "" msgstr[1] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" @@ -54141,6 +54134,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -54183,6 +54188,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -54303,6 +54314,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -54339,24 +54356,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "" msgstr[1] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -54655,7 +54654,7 @@ msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -54721,7 +54720,7 @@ msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -54781,14 +54780,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -54871,7 +54870,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -54880,7 +54879,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -54892,7 +54891,7 @@ msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -54903,7 +54902,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -54916,7 +54915,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -54935,7 +54934,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -54949,7 +54948,7 @@ msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -55550,7 +55549,7 @@ msgid_plural "rock salt" msgstr[0] "sel gemme" msgstr[1] "sels gemme" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -55562,7 +55561,7 @@ msgid_plural "rhodonite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -55575,7 +55574,7 @@ msgid_plural "zincite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -55612,7 +55611,7 @@ msgid_plural "hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "Une poignée de noix de caryer, encore dans leur cosse." @@ -55623,7 +55622,7 @@ msgid_plural "pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -55634,7 +55633,7 @@ msgid_plural "pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -55646,7 +55645,7 @@ msgid_plural "almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -55657,7 +55656,7 @@ msgid_plural "peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "Une poignée de noix dures d'un arachide, toujours dans leur coquille." @@ -55668,7 +55667,7 @@ msgid_plural "hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -55680,7 +55679,7 @@ msgid_plural "chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -55692,7 +55691,7 @@ msgid_plural "walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "Une poignée de noix dures d'un noyer, toujours dans leur coquille." @@ -55986,6 +55985,18 @@ msgstr "" "AVERTISSEMENT MEDICAL : Fumer Provoque le Cancer du Poumon, des Maladies " "Cardio-Vasculaires, l'Emphysème et Peut Compliquer la Grossese." +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -55997,6 +56008,19 @@ msgstr[1] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "Une petite boîte en carton. Pas plus longue que 30 centimètres." +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -56821,7 +56845,7 @@ msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -56832,7 +56856,7 @@ msgid_plural "smoldering embers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -57037,6 +57061,29 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -57248,7 +57295,7 @@ msgid_plural "superglue" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Un tube de colle forte. Utile dans de nombreuses fabrications." @@ -57555,7 +57602,7 @@ msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -57712,7 +57759,7 @@ msgid_plural "concrete" msgstr[0] "ciment" msgstr[1] "ciment" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "Du ciment, prêt à être utilisé dans un projet de construction." @@ -58622,7 +58669,7 @@ msgid_plural "clockworks" msgstr[0] "mécanisme" msgstr[1] "mécanismes" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "Un petit assortiment d'engrenages et autres petits mécanismes." @@ -58764,7 +58811,7 @@ msgid_plural "chamomile flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -58790,7 +58837,7 @@ msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -58825,7 +58872,7 @@ msgid_plural "mortar" msgstr[0] "mortier" msgstr[1] "mortier" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "Du mortier, prêt a être utilisé pour la construction." @@ -58872,7 +58919,7 @@ msgid_plural "adobe mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -58885,7 +58932,7 @@ msgid_plural "tanbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "Une feuille d'écorce riche en tanin, utilisée pour tanner le cuir." @@ -58907,7 +58954,7 @@ msgid_plural "willowbark" msgstr[0] "écorce de saule" msgstr[1] "écorces de saule" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -59361,7 +59408,7 @@ msgid_plural "raw tobacco" msgstr[0] "tabacs brut" msgstr[1] "tabac brut" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -59674,7 +59721,7 @@ msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -59697,7 +59744,7 @@ msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -60076,6 +60123,98 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -60791,7 +60930,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -60930,7 +61069,7 @@ msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -60943,7 +61082,7 @@ msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -60973,7 +61112,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -60989,7 +61128,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61005,7 +61144,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61021,7 +61160,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61037,7 +61176,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61053,7 +61192,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61069,7 +61208,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61085,7 +61224,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61101,7 +61240,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61117,7 +61256,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61133,7 +61272,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61149,7 +61288,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61165,7 +61304,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61181,7 +61320,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61197,7 +61336,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61213,8 +61352,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61230,7 +61368,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61246,7 +61384,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61262,7 +61400,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61278,7 +61416,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61294,7 +61432,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61310,8 +61448,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61333,7 +61470,7 @@ msgid_plural "misc software" msgstr[0] "divers logiciels" msgstr[1] "divers logiciels" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "Un logiciel divers de divertissement. Probablement inutile." @@ -61344,7 +61481,7 @@ msgid_plural "hackPRO" msgstr[0] "hackPRO" msgstr[1] "hackPRO" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "Un logiciel de hacking." @@ -61355,7 +61492,7 @@ msgid_plural "MediSoft" msgstr[0] "MediSoft" msgstr[1] "MediSoft" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "Un logiciel médical." @@ -61366,7 +61503,7 @@ msgid_plural "MatheMAX" msgstr[0] "MatheMAX" msgstr[1] "MatheMAX" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "Un logiciel de mathématiques." @@ -61377,7 +61514,7 @@ msgid_plural "infection data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "Des données médicales sur le sang des zombies." @@ -61388,7 +61525,7 @@ msgid_plural "lab data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -61399,7 +61536,7 @@ msgid_plural "train data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -61410,7 +61547,7 @@ msgid_plural "neural data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -61713,22 +61850,34 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "cadavre" msgstr[1] "cadavres" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -61736,7 +61885,7 @@ msgid_plural "skinned %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -61975,7 +62124,7 @@ msgid_plural "trifacet remains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -62311,6 +62460,100 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -64054,7 +64297,7 @@ msgid_plural "headphones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -64134,7 +64377,7 @@ msgid_plural "spare parts" msgstr[0] "pièces de rechange" msgstr[1] "pièces de rechange" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -64775,7 +65018,7 @@ msgid_plural "bokken" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -64786,7 +65029,7 @@ msgstr "" "exactement le poids et l'équilibre de l'original. Malgrès sont absence de " "lame affutée, il reste capable d'infliger des blessures mortelles." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " @@ -64795,7 +65038,7 @@ msgstr "" "Il s'agit d'un katana d'entraînement en bois massif, mais il est beaucoup " "trop fragile pour être une arme efficace." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -65402,7 +65645,7 @@ msgid_plural "bionic claws" msgstr[0] "griffes bioniques" msgstr[1] "griffes bioniques" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -65631,7 +65874,7 @@ msgid_plural "qiang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -65680,7 +65923,7 @@ msgid_plural "naginata" msgstr[0] "naginata" msgstr[1] "naginatas" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -65691,7 +65934,7 @@ msgstr "" " et les autres lames japonaises. Occasionnellement utilisé par les samurai " "des premières époques, ou par leur femmes pour défendre le foyer." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -65699,7 +65942,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -65713,7 +65956,7 @@ msgid_plural "survivor naginata" msgstr[0] "naginata de survivant" msgstr[1] "naginatas de survivants" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -65846,7 +66089,7 @@ msgid_plural "ji" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -65912,6 +66155,20 @@ msgstr "" "supplémentaire la déséquilibre mais son tranchant dentelé lui procure de " "bons dommages coupants." +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -65919,7 +66176,7 @@ msgid_plural "jian" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -66003,7 +66260,7 @@ msgid_plural "tanto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " @@ -66012,7 +66269,7 @@ msgstr "" "Il s'agit d'une réplique de piètre qualité d'un long couteau japonais, " "généralement utilisé comme arme de secours par les samouraïs." -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -66026,14 +66283,14 @@ msgid_plural "nodachi" msgstr[0] "nodachi" msgstr[1] "nodachis" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -66174,7 +66431,7 @@ msgid_plural "katana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -66242,7 +66499,7 @@ msgid_plural "wakizashi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -66310,7 +66567,7 @@ msgid_plural "tiger claws" msgstr[0] "griffes de tigre" msgstr[1] "griffes de tigre" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -66558,13 +66815,27 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -66580,7 +66851,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -66624,7 +66895,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -66918,7 +67189,7 @@ msgid_plural "scrap copper" msgstr[0] "débris de cuivre" msgstr[1] "débris de cuivre" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "Petits morceaux de cuivre, utilisables pour artisanat ou réparations." @@ -67186,7 +67457,7 @@ msgid_plural "splintered wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -67410,17 +67681,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "Vous ouvrez la fiole et récoltez la culture." -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -68642,7 +68913,7 @@ msgid_plural "oars" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -68664,7 +68935,7 @@ msgid_plural "inflatable section" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -68675,7 +68946,7 @@ msgid_plural "inflatable airbag" msgstr[0] "airbag" msgstr[1] "airbags" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -69580,7 +69851,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "haut-parleur carillon" msgstr[1] "haut-parleurs carillon" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -69594,7 +69865,7 @@ msgid_plural "sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "Une fine tôle de métal." @@ -69605,7 +69876,7 @@ msgid_plural "wired sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -69627,7 +69898,7 @@ msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "Un équipement d'armure en acier." @@ -69638,7 +69909,7 @@ msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "Un équipement d'armure fabriqué en superalliage robuste." @@ -69661,7 +69932,7 @@ msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -69894,6 +70165,7 @@ msgstr[0] "panneau solaire" msgstr[1] "panneaux solaires" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " @@ -69902,6 +70174,12 @@ msgstr "" "Appareil électronique qui transforme l'énergie solaire en énergie " "électrique.Utile pour un véhicule." +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -70047,6 +70325,17 @@ msgstr[1] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -70483,7 +70772,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -70542,7 +70831,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -70834,7 +71123,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -70847,7 +71136,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -70974,7 +71263,7 @@ msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -70985,7 +71274,7 @@ msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -71176,7 +71465,7 @@ msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71189,7 +71478,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71202,7 +71491,7 @@ msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71215,7 +71504,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71228,7 +71517,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71241,7 +71530,7 @@ msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -71254,7 +71543,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71267,7 +71556,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71280,7 +71569,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71293,7 +71582,7 @@ msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71306,7 +71595,7 @@ msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71319,7 +71608,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -71428,7 +71717,7 @@ msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -71454,7 +71743,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -71467,7 +71756,7 @@ msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -71493,7 +71782,7 @@ msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -71526,7 +71815,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -71873,7 +72162,7 @@ msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -72594,7 +72883,7 @@ msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -74045,7 +74334,7 @@ msgid_plural "subzero talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -74259,7 +74548,7 @@ msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -74380,7 +74669,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -74393,7 +74682,7 @@ msgid_plural "Beagle chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -75198,6 +75487,17 @@ msgstr "" "Enlève tous les monstres du monde, sauf ceux dans la catégorie ANIMAUX " "SAUVAGES." +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -75342,8 +75642,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -75689,6 +75989,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -76097,7 +76402,7 @@ msgid_plural "tiny fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -76108,7 +76413,7 @@ msgid_plural "small fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -76119,7 +76424,7 @@ msgid_plural "medium fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -76130,7 +76435,7 @@ msgid_plural "large fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -76141,7 +76446,7 @@ msgid_plural "huge fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -76279,7 +76584,7 @@ msgid_plural "whitefish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -76294,7 +76599,7 @@ msgid_plural "largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -76306,7 +76611,7 @@ msgid_plural "smallmouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -76319,7 +76624,7 @@ msgid_plural "striped bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -76334,7 +76639,7 @@ msgid_plural "white bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -76371,7 +76676,7 @@ msgid_plural "sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -76382,7 +76687,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -76405,7 +76710,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -76416,7 +76721,7 @@ msgid_plural "green sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -76427,7 +76732,7 @@ msgid_plural "longear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -76438,7 +76743,7 @@ msgid_plural "redear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -76449,7 +76754,7 @@ msgid_plural "rock bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -76462,7 +76767,7 @@ msgid_plural "calico bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -76497,7 +76802,7 @@ msgid_plural "channel catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -76508,7 +76813,7 @@ msgid_plural "white catfish" msgstr[0] "poisson-chat blanc" msgstr[1] "poisson-chat blanc" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -76607,7 +76912,7 @@ msgid_plural "fallfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -76634,7 +76939,7 @@ msgid_plural "crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -76668,7 +76973,7 @@ msgstr "" "barrages. Elle vont avoir une seconde chance maintenant qu'ils sont " "inactifs." -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -76681,7 +76986,7 @@ msgid_plural "giant crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -76694,7 +76999,7 @@ msgid_plural "colossal crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -77368,7 +77673,7 @@ msgid_plural "fused dragonflies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -77555,7 +77860,7 @@ msgstr[1] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -79220,7 +79525,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -79428,7 +79733,7 @@ msgid_plural "moose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -79594,7 +79899,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -79882,10 +80187,11 @@ msgstr[1] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -79896,6 +80202,17 @@ msgstr "Le %s fond." msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -82157,7 +82474,7 @@ msgid_plural "sawbones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -82172,7 +82489,7 @@ msgid_plural "doctor burns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -82350,7 +82667,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -82478,17 +82795,18 @@ msgstr[1] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -82934,7 +83252,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -82978,7 +83296,7 @@ msgid_plural "scissorlimbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -82992,7 +83310,7 @@ msgid_plural "hanging innards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -83484,7 +83802,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "Shia LaBeouf" msgstr[1] "Shia LaBeouf" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -85358,7 +85676,7 @@ msgid_plural "wisp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -85902,7 +86220,7 @@ msgid_plural "coelophysis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -85915,7 +86233,7 @@ msgid_plural "dilophosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -85928,7 +86246,7 @@ msgid_plural "ceratosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -85942,7 +86260,7 @@ msgid_plural "spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -85956,7 +86274,7 @@ msgid_plural "allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -85969,7 +86287,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -85983,20 +86301,33 @@ msgid_plural "siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -86009,7 +86340,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -86022,7 +86353,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -86035,7 +86366,7 @@ msgid_plural "compsognathus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -86048,7 +86379,7 @@ msgid_plural "gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -86074,7 +86405,7 @@ msgid_plural "nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -86087,7 +86418,7 @@ msgid_plural "deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -86126,7 +86457,7 @@ msgid_plural "amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -86139,7 +86470,7 @@ msgid_plural "apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -86152,7 +86483,7 @@ msgid_plural "brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -86165,7 +86496,7 @@ msgid_plural "diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -86176,7 +86507,7 @@ msgid_plural "camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -86189,7 +86520,7 @@ msgid_plural "brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -86202,7 +86533,7 @@ msgid_plural "alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -86215,7 +86546,7 @@ msgid_plural "scutellosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -86228,7 +86559,7 @@ msgid_plural "stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -86240,7 +86571,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -86253,7 +86584,7 @@ msgid_plural "ankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -86266,7 +86597,7 @@ msgid_plural "nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -86278,7 +86609,7 @@ msgid_plural "edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -86291,7 +86622,7 @@ msgid_plural "camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -86304,7 +86635,7 @@ msgid_plural "parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -86315,7 +86646,7 @@ msgid_plural "maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -86328,7 +86659,7 @@ msgid_plural "corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -86341,7 +86672,7 @@ msgid_plural "edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -86352,7 +86683,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -86365,7 +86696,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -86378,7 +86709,7 @@ msgid_plural "pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -86391,7 +86722,7 @@ msgid_plural "kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -86405,7 +86736,7 @@ msgid_plural "torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -86418,7 +86749,7 @@ msgid_plural "triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -86431,7 +86762,7 @@ msgid_plural "dimorphodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -86444,7 +86775,7 @@ msgid_plural "pteranodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -86457,7 +86788,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -86470,7 +86801,7 @@ msgid_plural "mosasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -86483,7 +86814,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -86496,7 +86827,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -86509,7 +86840,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -86522,7 +86853,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -86535,7 +86866,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -86548,7 +86879,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -86561,7 +86892,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -86664,6 +86995,20 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -87177,20 +87522,20 @@ msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" @@ -87250,7 +87595,6 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -87271,25 +87615,88 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -87512,6 +87919,19 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -87622,7 +88042,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -88082,6 +88502,7 @@ msgstr[1] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -88131,6 +88552,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "" msgstr[1] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -88535,6 +88962,19 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -88567,7 +89007,7 @@ msgid_plural "Rage Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -88580,7 +89020,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -88594,7 +89034,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -88652,7 +89092,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -88715,7 +89155,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -88959,12 +89399,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -88973,66 +89426,67 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -89040,12 +89494,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -89054,12 +89508,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -89068,16 +89522,16 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -89107,7 +89561,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -89120,7 +89574,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -89133,7 +89588,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -89146,20 +89601,26 @@ msgid_plural "skeletal siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -89172,7 +89633,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -89198,7 +89659,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -89210,7 +89671,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -89223,8 +89684,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -89243,7 +89704,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -89257,7 +89718,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -89270,7 +89731,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -89283,7 +89744,7 @@ msgid_plural "armored diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -89296,7 +89757,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -89309,7 +89770,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -89322,7 +89783,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -89335,7 +89796,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -89348,7 +89809,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -89362,7 +89823,7 @@ msgid_plural "Bone Fortress" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -89376,7 +89837,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -89389,7 +89850,7 @@ msgid_plural "armored edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -89402,7 +89863,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -89415,7 +89876,7 @@ msgid_plural "armored maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -89428,7 +89889,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -89441,7 +89902,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -89454,7 +89915,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -89467,7 +89928,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -89480,7 +89941,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -89493,7 +89954,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -89506,7 +89967,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -89519,7 +89980,7 @@ msgid_plural "armored torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -89532,7 +89993,7 @@ msgid_plural "armored triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -89545,7 +90006,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -89559,7 +90020,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -89573,7 +90034,7 @@ msgid_plural "Goliath Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -89586,7 +90047,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -89599,7 +90060,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -89640,7 +90101,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -89656,7 +90117,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -89969,7 +90430,7 @@ msgid_plural "forge hounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -90275,7 +90736,7 @@ msgid_plural "hunllef rams" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -90408,6 +90869,22 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -90685,7 +91162,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -90967,7 +91444,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -96053,7 +96530,7 @@ msgstr[1] "casques de mineur (on)" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -96097,7 +96574,7 @@ msgstr "Éteindre" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -97048,7 +97525,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -97705,17 +98182,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "casque antibruit de tireur" msgstr[1] "casques antibruit de tireur" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -97724,7 +98201,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -97952,7 +98429,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -97966,6 +98442,14 @@ msgid_plural "military flight helmets (on)" msgstr[0] "" msgstr[1] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -98323,7 +98807,7 @@ msgid_plural "bagpipes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -98950,7 +99434,7 @@ msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -99025,7 +99509,7 @@ msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -99767,7 +100251,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -101632,7 +102116,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -101640,7 +102124,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -101725,7 +102209,7 @@ msgid_plural "dao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -101775,7 +102259,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -101785,7 +102269,7 @@ msgstr "" "Un couteau japonais légèrement courbe à un seul tranchant dont la taille de " "la lame est inférieure à 30 cm." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -101817,7 +102301,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -101908,14 +102392,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -101929,7 +102413,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -102095,7 +102579,7 @@ msgid_plural "synthetic fabric" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -102884,7 +103368,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -105310,8 +105794,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -106042,6 +106526,39 @@ msgstr[1] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -106772,7 +107289,7 @@ msgid_plural "shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -106783,7 +107300,7 @@ msgid_plural "electric shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -106827,6 +107344,32 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -107414,7 +107957,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -107428,7 +107971,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -107948,8 +108491,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -107957,8 +108500,8 @@ msgid_plural "%s (happy)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -107966,8 +108509,8 @@ msgid_plural "%s (focus)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -107975,8 +108518,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -107984,7 +108527,7 @@ msgid_plural "%s (wake up)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -108474,7 +109017,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -108727,13 +109270,13 @@ msgid_plural "loose caltrops" msgstr[0] "chausse-trape détendu" msgstr[1] "chausse-trapes détendus" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "Vous éparpillez les chausse-trapes sur le %s." -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -108749,13 +109292,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -109234,6 +109777,21 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -109530,7 +110088,7 @@ msgid_plural "pliers" msgstr[0] "pince" msgstr[1] "pinces" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " @@ -109539,6 +110097,21 @@ msgstr "" "Une pince multiprises, utile pour les tâches mécaniques de base. Les tâches " "plus complexes requièrent une clé à molette." +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -109599,6 +110172,33 @@ msgstr "" "Un ensemble de tournevis de toutes sortes. Cela vous garantie de trouver le " "bon pour les tâches plus précises." +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -109735,12 +110335,26 @@ msgstr "" " les mains des plus habiles. Il est trop petit pour servir au dépeuçage." #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" -msgstr[0] "clé à molette" -msgstr[1] "clés à molette" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " @@ -109749,6 +110363,20 @@ msgstr "" "Ceci est une clé de serrage à molettes. Elle fait une arme de mêlée correcte" " et est utile dans de nombreuses recettes de fabrication." +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -110047,36 +110675,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -110107,6 +110705,12 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -110329,8 +110933,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -110773,7 +111377,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -111208,7 +111812,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -111255,7 +111859,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -111273,7 +111877,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -112278,6 +112882,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -112329,6 +112942,30 @@ msgstr[1] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -113246,7 +113883,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -113723,6 +114360,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -114596,15 +115237,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "Placage d'alliage - Bras" +msgid "Intradermal Alloy - Arms" +msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -114620,37 +115260,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "Placage d'alliage - Jambes" +msgid "Intradermal Alloy - Legs" +msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -114661,8 +115300,8 @@ msgstr "Système de Batteries" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -120371,7 +121010,7 @@ msgstr "Vous avez une blessure infectée." #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -125138,8 +125777,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "clac!" @@ -125155,9 +125793,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "fracas!" @@ -125833,7 +126470,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "crac!" @@ -128108,7 +128745,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "forge" @@ -128230,6 +128868,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -130776,14 +131428,14 @@ msgstr "" "appelez pas Bond mais vous pourriez néanmoins trouver ce pistolet utile." #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -130922,16 +131574,16 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -131915,14 +132567,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -134222,6 +134874,19 @@ msgid_plural "acid dart guns" msgstr[0] "" msgstr[1] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -136752,8 +137417,9 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -136765,10 +137431,10 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -137278,17 +137944,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -139650,6 +140320,11 @@ msgstr "" "En tant qu'arme, cet objetde bonne facture et résistera " "aux coups du combat." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -140516,6 +141191,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "Défiler vers le haut" @@ -140684,6 +141366,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "Changer de côté" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "Attribuer raccourci d'inventaire" @@ -141796,6 +142482,10 @@ msgstr "Déplacer le curseur en haut" msgid "Move cursor down" msgstr "Déplacer le curseur en bas" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -141996,6 +142686,20 @@ msgstr "Oui" msgid "No" msgstr "Non" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "Annuler" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "Quitter" @@ -143382,13 +144086,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -143450,13 +144154,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -144065,13 +144769,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -147510,6 +148214,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -147932,8 +148646,8 @@ msgstr "Aïkido" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -147957,7 +148671,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -147971,7 +148686,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -147984,9 +148699,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "Boxe" @@ -148146,7 +148890,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -148161,7 +148905,8 @@ msgstr "Kung fue de la Grue" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -148191,17 +148936,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -148212,10 +148956,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -148226,9 +148984,10 @@ msgstr "Kung Fu du Dragon" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -148243,33 +149002,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"\n" +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -148360,6 +149140,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "Parer" @@ -148417,7 +149211,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -148431,8 +149225,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -148446,6 +149241,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -148497,6 +149293,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "Karate" @@ -148586,6 +149395,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "Kung Fu du Léopard" @@ -148732,6 +149556,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "Muay-Thaï" @@ -149072,16 +149911,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -149184,7 +150024,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -149291,33 +150131,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -149438,7 +150278,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -149637,6 +150477,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -149697,10 +150552,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -149801,10 +150657,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -150448,7 +151305,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -150458,11 +151330,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -150556,6 +151429,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -150568,21 +151455,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -150660,6 +151548,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -152374,7 +153276,7 @@ msgstr "Je ne crois pas qu'on l'ai eu encore." msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -152601,7 +153503,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -152817,7 +153719,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -152871,8 +153773,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -153037,7 +153938,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -153051,7 +153952,7 @@ msgstr "" msgid "Lighthouse" msgstr "Phare" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "Conduisez Mikhail au phare." @@ -153090,7 +153991,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -153125,7 +154026,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -153156,7 +154057,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -153198,7 +154099,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -153240,16 +154141,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "Trouvez 100 sel." @@ -153296,7 +154231,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -153346,7 +154281,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "Trouve un couteau de boucher." @@ -153388,7 +154323,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -153437,7 +154372,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -153464,7 +154399,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -153499,7 +154434,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -154367,7 +155302,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -154402,7 +155337,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -154439,7 +155374,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -154474,7 +155409,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -154502,7 +155437,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -154554,7 +155489,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -154585,7 +155520,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -154614,7 +155549,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -154644,7 +155579,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -154913,8 +155848,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -155315,7 +156249,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -155356,7 +156290,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -155383,7 +156317,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -155465,7 +156399,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -155502,7 +156436,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -155546,7 +156480,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -155598,7 +156532,7 @@ msgstr "" msgid "Missing Caravan" msgstr "Caravane manquante" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -155640,7 +156574,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "Récupérer le prospectus" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -155681,7 +156615,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -155716,7 +156650,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -155761,7 +156695,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -155772,6 +156706,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -155918,7 +156910,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -155973,7 +156965,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -156012,7 +157004,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -156049,11 +157041,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -156079,15 +157123,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -156144,7 +157184,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -156194,7 +157234,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -156239,7 +157279,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -156280,11 +157320,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -156327,7 +157368,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -156375,7 +157416,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -156419,7 +157460,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -158079,7 +159120,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -158098,7 +159139,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -158125,7 +159166,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -158159,7 +159200,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -158206,7 +159247,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -158983,6 +160024,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -159677,13 +160742,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -160415,6 +161480,28 @@ msgstr "" "Vous êtes un disciple du Clan Venin. Vous démarrez avec l'un de ces venins " "mortels: Centipède, Vipère, Scorpion, Lézard ou Crapaud." +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -161333,7 +162420,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -161344,6 +162430,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -161489,7 +162582,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -161769,9 +162862,11 @@ msgstr "Terrifiant" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" +"Quelque chose en vous terrifie les créatures, elles vous fuiront " +"probablement plus." #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -164942,8 +166037,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -165192,8 +166287,8 @@ msgstr "Fort" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" -msgstr "Vous êtes un peu plus musclé. Force + 1" +msgid "Your muscles are a little stronger. +1 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Strong" @@ -165201,8 +166296,8 @@ msgstr "Très fort" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" -msgstr "Vos muscles sont plus forts. Force +2" +msgid "Your muscles are stronger. +2 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Strong" @@ -165210,8 +166305,8 @@ msgstr "Extrêmement fort" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" -msgstr "Vos muscles sont beaucoup plus forts. Force +4" +msgid "Your muscles are much stronger. +4 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Strong" @@ -165219,8 +166314,8 @@ msgstr "Incroyablement fort" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" -msgstr "Vos muscles sont remarquablement gonflés. Force + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Strength" @@ -165237,8 +166332,8 @@ msgstr "Adroit" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" -msgstr "Vous êtes un petit peu plus adroit. Dextérité + 1" +msgid "You are a little nimbler. +1 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Dextrous" @@ -165246,8 +166341,8 @@ msgstr "Très adroit" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" -msgstr "Vous êtes plus adroit. Dextérité + 2" +msgid "You are nimbler. +2 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Dextrous" @@ -165255,8 +166350,8 @@ msgstr "Extrêmement adroit" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" -msgstr "Vous êtes agile et vif. Dextérité + 4" +msgid "You are nimble and quick. +4 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Dextrous" @@ -165264,8 +166359,8 @@ msgstr "Incroyablement adroit" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" -msgstr "Vous êtes beaucoup plus adroit qu'auparavant. Dextérité + 7" +msgid "You are much nimbler than before. +7 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Dexterity" @@ -165282,8 +166377,8 @@ msgstr "Intelligent" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" -msgstr "Vous êtes un peu plus intelligent. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Smart" @@ -165291,8 +166386,8 @@ msgstr "Très intelligent" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" -msgstr "Vous êtes plus intelligent. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Smart" @@ -165301,10 +166396,8 @@ msgstr "Extrêmement intelligent" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" -"Vous êtes beaucoup plus intelligent, et votre crâne est légèrement enflé. " -"Intelligence + 4" #: lang/json/mutation_from_json.py msgid "Insanely Smart" @@ -165313,7 +166406,7 @@ msgstr "Incroyablement intelligent" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -165343,8 +166436,8 @@ msgstr "Perceptif" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" -msgstr "Vos sens sont un petit peu plus aiguisés. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Perceptive" @@ -165352,8 +166445,8 @@ msgstr "Très perceptif" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" -msgstr "Vos sens sont aiguisés. Perception + 2" +msgid "Your senses are keener. +2 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Perceptive" @@ -165361,8 +166454,8 @@ msgstr "Extrêmement perceptif" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" -msgstr "Vos sens sont beaucoup plus aiguisés. Perception + 4" +msgid "Your senses are much keener. +4 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Perceptive" @@ -165370,10 +166463,8 @@ msgstr "Incroyablement perceptif" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" -"Vous percevez les choses comme jamais vous ne l'auriez imaginé. Perception " -"+ 7" #: lang/json/mutation_from_json.py msgid "Prime Perception" @@ -165873,7 +166964,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -166003,7 +167094,7 @@ msgstr "Très somnolent" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -170561,6 +171652,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -170596,6 +171688,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -171154,6 +172254,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -171289,6 +172397,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -171457,6 +172569,10 @@ msgstr "Courtier" msgid "Guard" msgstr "Garde" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "Makayla Sanchez" @@ -171625,6 +172741,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -172560,6 +173680,10 @@ msgstr "puit de slimes" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -173249,6 +174373,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -173257,24 +174385,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -173641,6 +174785,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -175097,6 +176245,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -175207,6 +176409,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -175243,7 +176473,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -175256,7 +176486,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -175853,6 +177083,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -176117,6 +177373,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -176243,6 +177553,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -176291,6 +177629,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -176313,6 +177679,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -180957,6 +182375,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -185323,6 +186799,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -190278,6 +191776,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -190322,6 +192342,63 @@ msgstr "" msgid "Farm processing shack" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "" @@ -190377,6 +192454,524 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "" @@ -190581,6 +193176,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -191275,6 +194246,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -191540,60 +195150,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -192428,7 +196347,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -192440,12 +196363,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -192453,11 +196386,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -192620,6 +196563,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -194803,6 +198802,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -195124,7 +199149,7 @@ msgstr "" " faire des objets plus utiles. Cette compétence permet de fabriquer de " "nombreux objets." -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -195924,11 +199949,9 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" -"Si tu te retrouves pourchassé par une horde de zombies, essaie de t'éclipser" -" dans le métro et déplace toi de quelques blocs avant de remonter." #: lang/json/snippet_from_json.py msgid "" @@ -196848,15 +200871,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -201907,6 +205931,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -201915,7 +206205,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -202032,7 +206322,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -206649,7 +210939,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -206708,7 +210998,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -206721,7 +211011,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -206739,17 +211029,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -206828,7 +211118,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -206938,8 +211228,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -207347,7 +211637,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -207357,8 +211647,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -208780,6 +213070,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -211076,7 +215428,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "Je t'aime!" @@ -211742,6 +216094,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "Oui." + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -211760,6 +216224,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -212950,6 +217429,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -215339,6 +219896,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -215448,6 +220012,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -215471,6 +220053,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -216985,7 +221574,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -217155,19 +221744,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -217240,95 +221829,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "Tu veux jouer avec moi?" +msgid "\"Wanna play with me?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "Chante avec moi!" +msgid "\"Sing with me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" +msgid "\"Please take me with you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "Joueons enemble!" +msgid "\"May I have a cookie?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "Je te déteste." +msgid "\"Let's play… Russian roulette.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -217336,31 +221929,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "Hé les enfants. Vous voulez des bonbons?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -217376,19 +221969,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -218455,6 +223044,10 @@ msgstr "Épicerie" msgid "Gun Store" msgstr "Armurerie" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "Garage" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "Bureau de prêteur sur gage" @@ -219905,6 +224498,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -227146,6 +231743,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -227792,6 +233167,10 @@ msgstr "Je peux aider pour quelque chose?" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -227861,6 +233240,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -230293,10 +235683,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -234089,10 +239475,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -234423,6 +239805,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -234714,6 +240205,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -234804,6 +240304,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -237575,6 +243127,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -237760,20 +243329,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "Vous bloquez et contre-attaquez %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr " bloque et contre-attaque %s" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "Désarmer" @@ -238381,20 +243936,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "Contre-attaque" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "Vous contre-attaquez %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr " contre-attaque %s" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "Feinte" @@ -238430,54 +243971,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -238561,20 +244092,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "Coup par derrière" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -238693,34 +244210,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -238736,45 +244225,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -238858,17 +244347,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -238910,7 +244399,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -238923,6 +244412,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -239069,20 +244562,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -239187,20 +244666,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -239301,20 +244766,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -239639,41 +245090,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -239874,20 +245321,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -240648,20 +246081,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -240760,20 +246179,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -240816,20 +246221,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -243070,6 +248461,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "pommier" @@ -246485,10 +251888,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" -msgstr "Fenêtre avec grille métallique" +msgid "window with metal grate" +msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " @@ -246497,14 +251900,14 @@ msgstr "" "Barres métalliques transformées en grille pour une fenêtre, très durables et" " résistantes à tous les ennemis" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -246512,32 +251915,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -246545,35 +251948,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -246581,33 +251979,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -246615,10 +252013,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -246626,10 +252024,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -246637,40 +252035,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -246678,21 +252074,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" +msgid "reinforced triple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" -msgstr "" - -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -246700,44 +252092,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -246745,14 +252128,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -246770,12 +252149,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -246783,21 +252157,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" +msgid "plastic window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Plastic window" -msgstr "" - -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -246805,10 +252175,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -246816,7 +252186,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -246825,10 +252195,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -246837,21 +252207,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -246859,10 +252225,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -246871,10 +252237,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -246882,7 +252248,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -246891,26 +252257,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -246924,11 +252290,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -249460,6 +254822,75 @@ msgstr "" "Meilleur rapport poids/puissance qu'un moteur traditionnel, mais consomme " "plus de carburant." +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " @@ -249469,12 +254900,50 @@ msgstr "" "charbon ou du charbon de bois provenant d'une soute située dans le véhicule " "pour produire de la vapeur." +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "porte opaque" @@ -249881,6 +255350,57 @@ msgstr "" msgid "An electric motor." msgstr "Un moteur électrique." +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -250374,6 +255894,15 @@ msgstr "Un couloir." msgid "wooden aisle" msgstr "couloir en bois" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -250507,6 +256036,10 @@ msgstr "" msgid "wood table" msgstr "table en bois" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -250575,6 +256108,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -250681,6 +256218,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -251870,8 +257413,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -254653,6 +260196,18 @@ msgstr "Propriétés" msgid "Coverage:" msgstr "Couverture:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "Encombrement:" @@ -254744,8 +260299,9 @@ msgstr "Organiser les armures" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -254757,6 +260313,12 @@ msgstr "(Intérieur)" msgid "Storage (%s)" msgstr "Stockage (%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(Extérieur)" @@ -258961,11 +264523,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "Annuler" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "Vous luttez pour vous tenir debout." @@ -259277,6 +264834,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -261468,10 +267033,6 @@ msgstr "compétence principale utilisée pour fabriquer" msgid "any skill used to craft" msgstr "toute compétence utilisée pour créer" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "cuisine" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "qualité requise pour fabriquer" @@ -262014,6 +267575,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -262444,6 +268013,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -262532,6 +268106,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -263285,7 +268864,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -263307,15 +268886,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -266649,6 +272219,10 @@ msgstr "Troc" msgid "You swap places with %s." msgstr "Vous échangez votre place avec %s." +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -266939,6 +272513,15 @@ msgstr "" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "Objets" @@ -269284,10 +274867,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "Oui." - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "Oui, et sauvegarder avant de dormir." @@ -269428,6 +275007,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -269787,10 +275374,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "Que faire avec le %s?" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "Le consommer" @@ -270325,13 +275908,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -273697,6 +279273,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "Torse:" @@ -276738,13 +282329,15 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "Régler le minuteur à (0 pour annuler)?" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "Vous réglez le minuteur sur %d." +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -277484,9 +283077,8 @@ msgid "Your vision is fine already." msgstr "Votre vision est déjà convenable." #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" -msgstr "Vous entendez \"%s\"" +msgid "You press a button on the doll to make it talk." +msgstr "" #: src/iuse.cpp msgid "You need a mechanics skill of 2 to use this repair kit." @@ -277708,38 +283300,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -278965,87 +284525,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -281880,7 +287383,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -286807,6 +292322,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -287676,21 +293196,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -287954,11 +293459,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "%s pour réattribuer un raccourci inventaire, " +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -289648,11 +295162,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -290432,6 +295941,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -290439,14 +295957,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -292908,20 +298431,6 @@ msgstr "Zone:" msgid "# Unexplored" msgstr "# Inexploré" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -293262,6 +298771,11 @@ msgstr "Crépuscule" msgid "Night" msgstr "Nuit" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s, jour %d" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -293310,6 +298824,10 @@ msgstr "Très froid!" msgid "Freezing!" msgstr "Glacial!" +#: src/panels.cpp +msgid "SAFE" +msgstr "SÛR" + #: src/panels.cpp msgid "On" msgstr "Act" @@ -295734,6 +301252,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -300111,6 +305639,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "Lundi" diff --git a/lang/po/hu.po b/lang/po/hu.po index 7065fa11f0ab5..356bcc1d378df 100644 --- a/lang/po/hu.po +++ b/lang/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Daniel Szollosi-Nagy , 2021\n" "Language-Team: Hungarian (https://www.transifex.com/cataclysm-dda-translators/teams/2217/hu/)\n" @@ -22,7 +22,7 @@ msgid_plural "battery" msgstr[0] "elem" msgstr[1] "elem" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -37,7 +37,7 @@ msgid_plural "butane" msgstr[0] "bután" msgstr[1] "bután" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Főleg öngyújtókban használt gyúlékony folyadék." @@ -48,7 +48,7 @@ msgid_plural "aerosol paint" msgstr[0] "aeroszolos festék" msgstr[1] "aeroszolos festék" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -63,7 +63,7 @@ msgid_plural "permanent ink" msgstr[0] "letörölhetetlen tinta" msgstr[1] "letörölhetetlen tinta" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -78,7 +78,7 @@ msgid_plural "candle wax" msgstr[0] "gyertya gyanta" msgstr[1] "gyertya gyanta" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "Gyertyakészítésnél használt éghető, szilárd anyag." @@ -89,7 +89,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "fáklya pirotechnika" msgstr[1] "fáklya pirotechnika" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "Jelzőfáklyákban használatos pirotechnikai vegyianyag." @@ -113,7 +113,7 @@ msgid_plural "oxygen" msgstr[0] "oxigén" msgstr[1] "oxigén" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Sűrített orvosi oxigén." @@ -124,7 +124,7 @@ msgid_plural "aluminum foil" msgstr[0] "alufólia" msgstr[1] "alufólia" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -148,7 +148,7 @@ msgid_plural "thread" msgstr[0] "cérna" msgstr[1] "cérna" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py 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." @@ -181,7 +181,7 @@ msgid_plural "yarn" msgstr[0] "fonal" msgstr[1] "fonal" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Gyapjú fonal, kötött gyapjú ruha készítéséhez használható." @@ -203,7 +203,7 @@ msgid_plural "duct tape" msgstr[0] "szigszalag" msgstr[1] "szigszalag" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -271,8 +271,8 @@ msgid_plural "plutonium slurry" msgstr[0] "plutónium iszap" msgstr[1] "plutónium iszap" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -340,7 +340,7 @@ msgid_plural "bearings" msgstr[0] "csapágy" msgstr[1] "csapágy" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "Egy doboz golyóscsapágy, csúzlihoz hasznos." @@ -386,7 +386,7 @@ msgid_plural "120mm HEAT" msgstr[0] "120mm HEAT" msgstr[1] "120mm HEAT" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -416,7 +416,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "kevert füstmentes lőpor" msgstr[1] "kevert füstmentes lőpor" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -435,7 +435,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "füstmentes sörétes lőpor" msgstr[1] "füstmentes sörétes lőpor" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -448,7 +448,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "füstmentes pisztoly lőpor" msgstr[1] "füstmentes pisztoly lőpor" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -461,7 +461,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "füstmentes magnum lőpor" msgstr[1] "füstmentes magnum lőpor" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -475,7 +475,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "füstmentes puska lőpor" msgstr[1] "füstmentes puska lőpor" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -488,7 +488,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "füstmentes túlkaliberes puska lőpor" msgstr[1] "füstmentes túlkaliberes puska lőpor" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -501,7 +501,7 @@ msgid_plural "artillery propellant" msgstr[0] "tüzérségi indítótöltet" msgstr[1] "tüzérségi indítótöltet" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -516,7 +516,7 @@ msgid_plural "oxidizer powder" msgstr[0] "oxidálópor" msgstr[1] "oxidálópor" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Lobbanékony oxidáló vegyi anyag." @@ -527,7 +527,7 @@ msgid_plural "lye powder" msgstr[0] "lúgpor" msgstr[1] "lúgpor" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Marónátron-por" @@ -619,7 +619,7 @@ msgid_plural "copper" msgstr[0] "réz" msgstr[1] "réz" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -634,7 +634,7 @@ msgid_plural "medical tape" msgstr[0] "orvosi ragasztószalag" msgstr[1] "orvosi ragasztószalag" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Egy tekercs orvosi ragasztószalag, hasonlít a szigszalaghoz." @@ -646,7 +646,7 @@ msgstr[0] "placeholder ammunition" msgstr[1] "placeholder ammunition" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "HA EZT LÁTOD, PROGRAMHIBÁT LÁTSZ." @@ -657,7 +657,7 @@ msgid_plural "charcoal" msgstr[0] "faszén" msgstr[1] "faszén" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -674,7 +674,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "kalcium-karbid keverék" msgstr[1] "kalcium-karbid keverék" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -703,7 +703,7 @@ msgid_plural "albuterol" msgstr[0] "albuterol" msgstr[1] "albuterol" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -800,7 +800,7 @@ msgid_plural "nicotine liquid" msgstr[0] "folyékony nikotin" msgstr[1] "folyékony nikotin" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -815,7 +815,7 @@ msgid_plural "fish bait" msgstr[0] "hal csali" msgstr[1] "hal csali" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Halak csapdába ejtésénél használt csali." @@ -878,7 +878,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "félbemaradt faszén" msgstr[1] "félbemaradt faszén" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -893,7 +893,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "félbemaradt kalcium-karbid" msgstr[1] "félbemaradt kalcium-karbid" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -919,7 +919,7 @@ msgid_plural "nitrox" msgstr[0] "nitrox" msgstr[1] "nitrox" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py 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." @@ -930,7 +930,7 @@ msgid_plural "extinguishing agent" msgstr[0] "oltószer" msgstr[1] "oltószer" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Száraz vegyi anyag tűzoltáshoz." @@ -941,7 +941,7 @@ msgid_plural "tinder" msgstr[0] "tapló" msgstr[1] "tapló" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "Könnyű tűzgyújtáshoz szétválogatott éghető anyag." @@ -974,7 +974,7 @@ msgid_plural "bronze" msgstr[0] "bronz" msgstr[1] "bronz" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "Régi stílusú tárgyak elkészítésénél használható bronzdarab." @@ -985,7 +985,7 @@ msgid_plural "glowstick juice" msgstr[0] "fényrúd folyadék" msgstr[1] "fényrúd folyadék" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -997,7 +997,7 @@ msgid_plural "graphite" msgstr[0] "grafit" msgstr[1] "grafit" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1014,7 +1014,7 @@ msgid_plural "black pen ink" msgstr[0] "fekete tintás toll" msgstr[1] "fekete tintás toll" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1029,7 +1029,7 @@ msgid_plural "blue pen ink" msgstr[0] "kék tintás toll" msgstr[1] "kék tintás toll" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1044,7 +1044,7 @@ msgid_plural "green pen ink" msgstr[0] "zöld tintás toll" msgstr[1] "zöld tintás toll" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1059,7 +1059,7 @@ msgid_plural "red pen ink" msgstr[0] "vörös tintás toll" msgstr[1] "vörös tintás toll" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1091,7 +1091,7 @@ msgid_plural "sulfur" msgstr[0] "kén" msgstr[1] "kén" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1121,7 +1121,7 @@ msgid_plural "cement" msgstr[0] "cement" msgstr[1] "cement" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1138,7 +1138,7 @@ msgid_plural "gravel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1149,7 +1149,7 @@ msgid_plural "limestone" msgstr[0] "mészkő" msgstr[1] "mészkő" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1165,7 +1165,7 @@ msgid_plural "quicklime" msgstr[0] "oltatlan mész" msgstr[1] "oltatlan mész" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1185,7 +1185,7 @@ msgid_plural "sand" msgstr[0] "homok" msgstr[1] "homok" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1200,7 +1200,7 @@ msgid_plural "soil" msgstr[0] "virágföld" msgstr[1] "virágföld" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1215,7 +1215,7 @@ msgid_plural "aluminum powder" msgstr[0] "alumínium por" msgstr[1] "alumínium por" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1234,7 +1234,7 @@ msgid_plural "zinc powder" msgstr[0] "cink por" msgstr[1] "cink por" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1253,7 +1253,7 @@ msgid_plural "zinc oxide" msgstr[0] "cink-oxid" msgstr[1] "cink-oxid" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1268,7 +1268,7 @@ msgid_plural "manganese dioxide" msgstr[0] "mangán-dioxid" msgstr[1] "mangán-dioxid" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1285,7 +1285,7 @@ msgid_plural "potassium chloride" msgstr[0] "kálium-klorid" msgstr[1] "kálium-klorid" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1304,7 +1304,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "kálium-hidroxid" msgstr[1] "kálium-hidroxid" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1321,7 +1321,7 @@ msgid_plural "acetone" msgstr[0] "aceton" msgstr[1] "aceton" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1338,7 +1338,7 @@ msgid_plural "chromium oxide" msgstr[0] "króm-oxid" msgstr[1] "króm-oxid" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1358,7 +1358,7 @@ msgid_plural "calcium carbide" msgstr[0] "kalcium-karbid" msgstr[1] "kalcium-karbid" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1379,7 +1379,7 @@ msgid_plural "hexamine" msgstr[0] "hexamin" msgstr[1] "hexamin" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1400,7 +1400,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "hidrogén-peroxid (koncentrált)" msgstr[1] "hidrogén-peroxid (koncentrált)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1420,7 +1420,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "ammónium-nitrát" msgstr[1] "ammónium-nitrát" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1439,7 +1439,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "ammónium-nitrát pelletek" msgstr[1] "ammónium-nitrát pelletek" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1458,7 +1458,7 @@ msgid_plural "saltpeter" msgstr[0] "salétrom" msgstr[1] "salétrom" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1475,7 +1475,7 @@ msgid_plural "niter" msgstr[0] "salétromsó" msgstr[1] "salétromsó" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1490,7 +1490,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "alumínium-szulfát" msgstr[1] "alumínium-szulfát" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1512,7 +1512,7 @@ msgid_plural "acetic acid" msgstr[0] "ecetsav" msgstr[1] "ecetsav" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1531,7 +1531,7 @@ msgid_plural "formaldehyde" msgstr[0] "formaldehid" msgstr[1] "formaldehid" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1550,7 +1550,7 @@ msgid_plural "thermite" msgstr[0] "termit" msgstr[1] "termit" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1568,7 +1568,7 @@ msgid_plural "ANFO" msgstr[0] "ANFO" msgstr[1] "ANFO" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1588,7 +1588,7 @@ msgid_plural "black gunpowder" msgstr[0] "fekete lőpor" msgstr[1] "fekete lőpor" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1607,7 +1607,7 @@ msgid_plural "match head powder" msgstr[0] "gyufafej-por" msgstr[1] "gyufafej-por" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1624,7 +1624,7 @@ msgid_plural "RDX" msgstr[0] "RDX" msgstr[1] "RDX" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1641,7 +1641,7 @@ msgid_plural "composition b" msgstr[0] "Composition B" msgstr[1] "Composition B" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1658,7 +1658,7 @@ msgid_plural "HMTD" msgstr[0] "HMTD" msgstr[1] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1676,7 +1676,7 @@ msgid_plural "APEX" msgstr[0] "APEX" msgstr[1] "APEX" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1694,7 +1694,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "rögtönzött rakéta üzemanyag" msgstr[1] "rögtönzött rakéta üzemanyag" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1710,7 +1710,7 @@ msgid_plural "detergent" msgstr[0] "mosószer" msgstr[1] "mosószer" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "Népszerű márkájú, kataklizma előtti mosópor." @@ -1721,7 +1721,7 @@ msgid_plural "soap flakes" msgstr[0] "szappanpihe" msgstr[1] "szappanpihe" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "Mosógépben használható formájúra reszelt szappan." @@ -1788,7 +1788,7 @@ msgid_plural "concentrated venom" msgstr[0] "tömény méreg" msgstr[1] "tömény méreg" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1807,7 +1807,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "tömény paralitikum" msgstr[1] "tömény paralitikum" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1826,7 +1826,7 @@ msgid_plural "rocuronium" msgstr[0] "rokurónium" msgstr[1] "rokurónium" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1843,7 +1843,7 @@ msgid_plural "red phosphorous" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1856,7 +1856,7 @@ msgid_plural "iodine crystal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1869,7 +1869,7 @@ msgid_plural "ethanol" msgstr[0] "etanol" msgstr[1] "etanol" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1903,7 +1903,7 @@ msgid_plural "methanol" msgstr[0] "metanol" msgstr[1] "metanol" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1919,7 +1919,7 @@ msgid_plural "diesel" msgstr[0] "dízel" msgstr[1] "dízel" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1932,7 +1932,7 @@ msgid_plural "JP8 fuel" msgstr[0] "JP8 üzemanyag" msgstr[1] "JP8 üzemanyag" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1947,7 +1947,7 @@ msgid_plural "avgas fuel" msgstr[0] "avgas üzemanyag" msgstr[1] "avgas üzemanyag" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "Különleges, repülőgépekben használható kőolajszármazék, repülőbenzin." @@ -1958,7 +1958,7 @@ msgid_plural "biodiesel" msgstr[0] "biodízel" msgstr[1] "biodízel" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1974,7 +1974,7 @@ msgid_plural "gasoline" msgstr[0] "benzin" msgstr[1] "benzin" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1989,7 +1989,7 @@ msgid_plural "lamp oil" msgstr[0] "lámpaolaj" msgstr[1] "lámpaolaj" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "Híg és füstmentesen égő olaj lámpákhoz" @@ -2000,7 +2000,7 @@ msgid_plural "motor oil" msgstr[0] "motor olaj" msgstr[1] "motor olaj" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "Gépjárművek motorjában használatos kenőanyag." @@ -2011,7 +2011,7 @@ msgid_plural "napalm" msgstr[0] "napalm" msgstr[1] "napalm" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2028,7 +2028,7 @@ msgid_plural "gelled gasoline" msgstr[0] "zselésített benzin" msgstr[1] "zselésített benzin" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2044,7 +2044,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "lángszóró tüzelőanyag" msgstr[1] "lángszóró tüzelőanyag" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2090,7 +2090,7 @@ msgid_plural "shrapnel" msgstr[0] "repesz" msgstr[1] "repesz" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "Recés szélű görbe fémdarab." @@ -2146,7 +2146,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "10mm Auto FMJ" msgstr[1] "10mm Auto FMJ" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2172,7 +2172,7 @@ msgid_plural "H&K 12mm" msgstr[0] "H&K 12mm" msgstr[1] "H&K 12mm" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2221,7 +2221,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "20x66mm sörét, kézi öntésű" msgstr[1] "20x66mm sörét, kézi öntésű" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2253,7 +2253,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "20x66mm robbanó" msgstr[1] "20x66mm robbanó" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2306,7 +2306,7 @@ msgid_plural "20x66mm frag" msgstr[0] "20x66mm repesz" msgstr[1] "20x66mm repesz" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2323,7 +2323,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "20x66mm gyújtólövedék" msgstr[1] "20x66mm gyújtólövedék" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2340,7 +2340,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "20x66mm sörét" msgstr[1] "20x66mm sörét" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2374,7 +2374,7 @@ msgid_plural ".22 CB" msgstr[0] ".22 CB" msgstr[1] ".22 CB" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2391,7 +2391,7 @@ msgid_plural ".22 FMJ" msgstr[0] ".22 FMJ" msgstr[1] ".22 FMJ" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2409,7 +2409,7 @@ msgid_plural ".22 LR" msgstr[0] ".22 LR" msgstr[1] ".22 LR" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2427,7 +2427,7 @@ msgid_plural ".22 rat-shot" msgstr[0] ".22 patkánysörét" msgstr[1] ".22 patkánysörét" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2468,7 +2468,7 @@ msgid_plural ".223 Remington" msgstr[0] ".223 Remington" msgstr[1] ".223 Remington" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2485,7 +2485,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2501,7 +2501,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2518,7 +2518,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2536,7 +2536,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "5.56 NATO M855A1" msgstr[1] "5.56 NATO M855A1" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2554,7 +2554,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "5.56 NATO nyomjelző" msgstr[1] "5.56 NATO nyomjelző" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2605,7 +2605,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] ".270 Winchester JSP" msgstr[1] ".270 Winchester JSP" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2661,7 +2661,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] ".300 Winchester Magnum, utántöltött" msgstr[1] ".300 Winchester Magnum, utántöltött" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2678,7 +2678,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] ".30-06 Springfield" msgstr[1] ".30-06 Springfield" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2695,7 +2695,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] ".30-06 M14A1 nyomjelző" msgstr[1] ".30-06 M14A1 nyomjelző" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2712,7 +2712,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] ".30-06 M2 AP" msgstr[1] ".30-06 M2 AP" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2831,7 +2831,7 @@ msgid_plural ".308 Winchester" msgstr[0] ".308 Winchester" msgstr[1] ".308 Winchester" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2847,7 +2847,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "7.62x51mm M80" msgstr[1] "7.62x51mm M80" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2864,7 +2864,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "7,62x51mm NATO nyomjelző" msgstr[1] "7,62x51mm NATO nyomjelző" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2915,7 +2915,7 @@ msgid_plural ".32 ACP" msgstr[0] ".32 ACP" msgstr[1] ".32 ACP" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2942,7 +2942,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2956,7 +2956,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2994,7 +2994,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] ".357 SIG FMJ" msgstr[1] ".357 SIG FMJ" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -3009,7 +3009,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] ".357 SIG JHP" msgstr[1] ".357 SIG JHP" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3064,7 +3064,7 @@ msgid_plural ".38 FMJ" msgstr[0] ".38 FMJ" msgstr[1] ".38 FMJ" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3096,7 +3096,7 @@ msgid_plural ".38 Super" msgstr[0] ".38 Super" msgstr[1] ".38 Super" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3142,7 +3142,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] ".380 ACP FMJ" msgstr[1] ".380 ACP FMJ" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3161,7 +3161,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] ".380 ACP JHP" msgstr[1] ".380 ACP JHP" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3180,7 +3180,7 @@ msgid_plural ".380 ACP +P" msgstr[0] ".380 ACP +P" msgstr[1] ".380 ACP +P" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3229,7 +3229,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] ".38 Super FMJ" msgstr[1] ".38 Super FMJ" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3252,7 +3252,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3269,7 +3269,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3316,7 +3316,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3333,7 +3333,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3350,7 +3350,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3367,7 +3367,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3384,8 +3384,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3402,8 +3402,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3455,8 +3455,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3473,8 +3473,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3538,7 +3538,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3551,7 +3551,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3581,7 +3581,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3598,8 +3598,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3624,8 +3624,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3658,7 +3658,7 @@ msgid_plural ".410 000 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3677,7 +3677,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3745,7 +3745,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3760,7 +3760,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3777,7 +3777,7 @@ msgid_plural ".45 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3824,7 +3824,7 @@ msgid_plural ".454 Casull" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3857,7 +3857,7 @@ msgid_plural ".45-70 SP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3891,7 +3891,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3908,7 +3908,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3944,7 +3944,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3963,7 +3963,7 @@ msgid_plural ".45-70, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3982,7 +3982,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -4013,7 +4013,7 @@ msgid_plural "4.6x30mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -4030,8 +4030,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -4056,7 +4056,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -4071,7 +4071,7 @@ msgid_plural ".460 Rowland" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4105,7 +4105,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4126,7 +4126,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4143,7 +4143,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4164,7 +4164,7 @@ msgid_plural ".50 BMG Match" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4180,7 +4180,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4195,7 +4195,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -4222,7 +4222,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4239,7 +4239,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -4260,7 +4260,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -4322,7 +4322,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -4341,7 +4341,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -4356,7 +4356,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -4373,7 +4373,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -4400,7 +4400,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4423,8 +4423,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4520,7 +4520,7 @@ msgid_plural "66mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -4535,7 +4535,7 @@ msgid_plural ".700 NX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4566,7 +4566,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4585,7 +4585,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4604,7 +4604,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4641,7 +4641,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4674,7 +4674,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4707,7 +4707,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4783,7 +4783,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4799,7 +4799,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "8x40mm hüvely nélküli" msgstr[1] "8x40mm hüvely nélküli" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4815,7 +4815,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4832,7 +4832,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4849,7 +4849,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4868,7 +4868,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4888,7 +4888,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4905,7 +4905,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4924,7 +4924,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4939,7 +4939,7 @@ msgid_plural "9x19mm +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4954,7 +4954,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -5006,7 +5006,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -5023,7 +5023,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -5040,7 +5040,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -5067,7 +5067,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5084,7 +5084,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5102,7 +5102,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5120,7 +5120,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -5149,7 +5149,7 @@ msgid_plural "cannon round shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -5164,7 +5164,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "permetezhető mérgesgáz" msgstr[1] "permetezhető mérgesgáz" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -5180,7 +5180,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "permetezhető gombaölő" msgstr[1] "permetezhető gombaölő" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -5196,7 +5196,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "permetezhető rovarölő" msgstr[1] "permetezhető rovarölő" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -5328,7 +5328,7 @@ msgid_plural "paintball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "Doboznyi apró paintball, szinte semmit sem sebez." @@ -5444,7 +5444,7 @@ msgid_plural "00 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -5461,7 +5461,7 @@ msgstr[0] "babzsák lőszer" msgstr[1] "babzsák lőszer" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -5474,7 +5474,7 @@ msgid_plural "birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -5540,8 +5540,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5704,7 +5704,7 @@ msgid_plural "oxyacetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5719,7 +5719,7 @@ msgid_plural "fungal seeds" msgstr[0] "gombamag" msgstr[1] "gombamag" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Egy marék gombamag" @@ -6611,7 +6611,7 @@ msgid_plural "red paint" msgstr[0] "vörös festék" msgstr[1] "vörös festék" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Egy kanna vörös festék." @@ -6622,7 +6622,7 @@ msgid_plural "blue paint" msgstr[0] "kék festék" msgstr[1] "kék festék" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Egy kanna kék festék." @@ -6633,7 +6633,7 @@ msgid_plural "white paint" msgstr[0] "fehér festék" msgstr[1] "fehér festék" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Egy kanna fehér festék." @@ -6644,7 +6644,7 @@ msgid_plural "green paint" msgstr[0] "zöld festék" msgstr[1] "zöld festék" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Egy kanna zöld festék." @@ -6655,7 +6655,7 @@ msgid_plural "purple paint" msgstr[0] "lila festék" msgstr[1] "lila festék" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Egy kanna lila festék." @@ -6666,7 +6666,7 @@ msgid_plural "yellow paint" msgstr[0] "sárga festék" msgstr[1] "sárga festék" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Egy kanna sárga festék." @@ -6736,7 +6736,7 @@ msgid_plural "bismuth" msgstr[0] "bizmut" msgstr[1] "bizmut" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py 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." @@ -6747,8 +6747,8 @@ msgid_plural "gold" msgstr[0] "arany" msgstr[1] "arany" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -6769,7 +6769,7 @@ msgid_plural "zinc" msgstr[0] "cink" msgstr[1] "cink" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6788,7 +6788,7 @@ msgid_plural "lead" msgstr[0] "ólom" msgstr[1] "ólom" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6803,7 +6803,7 @@ msgid_plural "magnesium powder" msgstr[0] "magnézium por" msgstr[1] "magnézium por" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6818,7 +6818,7 @@ msgid_plural "silver" msgstr[0] "ezüst" msgstr[1] "ezüst" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -6884,7 +6884,7 @@ msgid_plural "tin powder" msgstr[0] "ónpor" msgstr[1] "ónpor" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -6899,7 +6899,7 @@ msgid_plural "solder" msgstr[0] "forrasztóón" msgstr[1] "forrasztóón" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -6939,7 +6939,7 @@ msgid_plural "fuse" msgstr[0] "kanóc" msgstr[1] "kanóc" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -6994,7 +6994,7 @@ msgid_plural "cotton scraps" msgstr[0] "textilhulladék" msgstr[1] "textilhulladék" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -7011,7 +7011,7 @@ msgid_plural "faux fur scraps" msgstr[0] "műszőrme hulladék" msgstr[1] "műszőrme hulladék" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -7026,7 +7026,7 @@ msgid_plural "felt scraps" msgstr[0] "nemezhulladék" msgstr[1] "nemezhulladék" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -7043,7 +7043,7 @@ msgid_plural "fur scraps" msgstr[0] "szőrme hulladék" msgstr[1] "szőrme hulladék" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -7058,7 +7058,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "kevlar hulladék" msgstr[1] "kevlar hulladék" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -7077,7 +7077,7 @@ msgid_plural "leather scraps" msgstr[0] "bőrhulladék" msgstr[1] "bőrhulladék" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -7092,7 +7092,7 @@ msgid_plural "Lycra scraps" msgstr[0] "lycra hulladék" msgstr[1] "lycra hulladék" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -7107,7 +7107,7 @@ msgid_plural "neoprene scraps" msgstr[0] "neoprén hulladék" msgstr[1] "neoprén hulladék" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -7122,7 +7122,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "műszálas hulladék" msgstr[1] "műszálas hulladék" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -7137,7 +7137,7 @@ msgid_plural "Nomex scraps" msgstr[0] "nomex hulladék" msgstr[1] "nomex hulladék" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -7167,7 +7167,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -7195,7 +7195,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "műszőrme ruhadarabos patchwork" msgstr[1] "műszőrme ruhadarabos patchwork" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -7223,7 +7223,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "nemez ruhadarabos patchwork" msgstr[1] "nemez ruhadarabos patchwork" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -7271,7 +7271,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "lycra ruhadarabos patchwork" msgstr[1] "lycra ruhadarabos patchwork" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -7301,7 +7301,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "neoprén ruhadarabos patchwork" msgstr[1] "neoprén ruhadarabos patchwork" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -7332,7 +7332,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "nomex ruhadarabos patchwork" msgstr[1] "nomex ruhadarabos patchwork" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -7360,7 +7360,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "műszálas ruhadarabos patchwork" msgstr[1] "műszálas ruhadarabos patchwork" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -7469,7 +7469,7 @@ msgid_plural "titanium" msgstr[0] "titán" msgstr[1] "titán" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -7502,7 +7502,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -7517,7 +7517,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -7532,7 +7532,7 @@ msgid_plural "25mm canister shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -7548,7 +7548,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -7563,7 +7563,7 @@ msgid_plural "7.50mm RP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -7580,7 +7580,7 @@ msgid_plural "electric charge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -7593,7 +7593,7 @@ msgid_plural "foamcrete" msgstr[0] "habbeton" msgstr[1] "habbeton" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -7612,7 +7612,7 @@ msgid_plural "solid hydrogen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -7627,7 +7627,7 @@ msgid_plural "lead pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -7644,7 +7644,7 @@ msgid_plural "domed HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -7661,7 +7661,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -7676,7 +7676,7 @@ msgid_plural "alloy pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -7838,7 +7838,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "pisztoly töltény, golyó" msgstr[1] "pisztoly töltény, golyó" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7858,7 +7858,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "pisztoly töltény, JHP" msgstr[1] "pisztoly töltény, JHP" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7902,7 +7902,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "magnum töltény, golyó" msgstr[1] "magnum töltény, golyó" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -7923,7 +7923,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "magnum töltény, JHP" msgstr[1] "magnum töltény, JHP" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -7968,7 +7968,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "apró pisztoly töltény, golyó" msgstr[1] "apró pisztoly töltény, golyó" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7989,7 +7989,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "apró pisztoly töltény, JHP" msgstr[1] "apró pisztoly töltény, JHP" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8034,7 +8034,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "karabély lőszer, golyó" msgstr[1] "karabély lőszer, golyó" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8056,7 +8056,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "karabély lőszer, AP" msgstr[1] "karabély lőszer, AP" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8101,7 +8101,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -8115,7 +8115,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -8130,7 +8130,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "hatalmas karabély lőszer, golyó" msgstr[1] "hatalmas karabély lőszer, golyó" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8152,7 +8152,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "hatalmas karabély lőszer, AP" msgstr[1] "hatalmas karabély lőszer, AP" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8184,7 +8184,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "rakéta, gyalogsági" msgstr[1] "rakéta, gyalogsági" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -8199,7 +8199,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "rakéta, többcélú" msgstr[1] "rakéta, többcélú" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -8216,7 +8216,7 @@ msgid_plural "rocket, smoke" msgstr[0] "rakéta, füst" msgstr[1] "rakéta, füst" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -8244,7 +8244,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "sörétes lövedék, apróvad" msgstr[1] "sörétes lövedék, apróvad" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -8259,7 +8259,7 @@ msgid_plural "shotshell, slug" msgstr[0] "sörétes lövedék, dumdum" msgstr[1] "sörétes lövedék, dumdum" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -8277,7 +8277,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "sörétes lövedék, pirotechnikai" msgstr[1] "sörétes lövedék, pirotechnikai" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -8330,7 +8330,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "sörétes lövedék, nyilacska (újratöltött)" msgstr[1] "sörétes lövedék, nyilacska (újratöltött)" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -8385,7 +8385,7 @@ msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -8444,7 +8444,7 @@ msgid_plural "dragon blood" msgstr[0] "sárkányvér" msgstr[1] "sárkányvér" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -8474,7 +8474,7 @@ msgid_plural "parabolan yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -8485,7 +8485,7 @@ msgid_plural "crystallized mana" msgstr[0] "kristályosodott mana" msgstr[1] "kristályosodott mana" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -8529,7 +8529,7 @@ msgid_plural "liquid mercury" msgstr[0] "folyékony higany" msgstr[1] "folyékony higany" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "Elemi állapotú folyékony higany. Főleg hőmérőkben használják." @@ -8548,7 +8548,7 @@ msgstr "" "Egy darab nyers mitril. Át kell alakítani öntvénnyé ahhoz, hogy hasznos " "legyen." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -9089,7 +9089,7 @@ msgstr[1] "lőszertáska" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -9105,7 +9105,7 @@ msgstr "Elteszed a(z) %st." #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -9145,7 +9145,7 @@ msgid_plural "chest rig" msgstr[0] "katonai szerszámosmellény" msgstr[1] "katonai szerszámosmellény" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -10107,38 +10107,19 @@ msgstr "" "tároló csatolása." #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "túlélő öv" -msgstr[1] "túlélő öv" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "szerszámöv" +msgstr[1] "szerszámöv" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "A(z) %1$st berakod ebbe: %2$s" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "szerszámöv" -msgstr[1] "szerszámöv" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -10296,25 +10277,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "túlélő tűzálló csizma" -msgstr[1] "túlélő tűzálló csizma" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -10332,45 +10294,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "túlélő búvárcsizma" -msgstr[1] "túlélő búvárcsizma" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -10382,26 +10305,6 @@ msgstr[1] "kiránduló bakancs" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "nehéz túlélő csizma" -msgstr[1] "nehéz túlélő csizma" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -10420,26 +10323,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "könnyű túlélő csizma" -msgstr[1] "könnyű túlélő csizma" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -10510,20 +10393,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "túlélő csizma" -msgstr[1] "túlélő csizma" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -10555,39 +10424,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "téli túlélő csizma" -msgstr[1] "téli túlélő csizma" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "XL túlélő csizma" -msgstr[1] "XL túlélő csizma" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -11520,27 +11356,6 @@ msgid_plural "XL leather dusters" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "túlélő duster kabát" -msgstr[1] "túlélő duster kabát" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" -"Kevlarral páncélozott, egyedi készítésű duster kabát, tele zsebbel. " -"Kényelmes, tartós és tárolásra nagyon jó." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -11593,7 +11408,7 @@ msgid_plural "army jacket" msgstr[0] "military dzseki" msgstr[1] "military dzseki" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "Strapabíró kialakítású, sokzsebes dzseki. A katonák kedvelik." @@ -11775,7 +11590,7 @@ msgid_plural "kimono" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -11953,21 +11768,6 @@ msgstr "" "Vastag bőr duster kabát, a könnyebb mozgás céljából levágott ujjakkal. A sok" " zsebének köszönhetően rengeteg a tárolóhelye." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "ujjatlan túlélő duster kabát" -msgstr[1] "ujjatlan túlélő duster kabát" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" -"Kevlárral páncélozott, egyedi készítésű ujjatlan duster kabát, tele zsebbel." -" Kényelmes, tartós és tárolásra nagyon jó." - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -12028,21 +11828,6 @@ msgstr "" "Vastag bőrkabát, a könnyebb mozgás céljából levágott ujjakkal. A sok " "zsebének köszönhetően rengeteg a tárolóhelye." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "ujjatlan túlélő viharkabát" -msgstr[1] "ujjatlan túlélő viharkabát" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" -"Kevlárral páncélozott, egyedi készítésű ujjatlan viharkabát, tele zsebbel. " -"Kényelmes, tartós és tárolásra nagyon jó." - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -12060,7 +11845,7 @@ msgid_plural "thawb" msgstr[0] "kandóra" msgstr[1] "kandóra" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -12114,21 +11899,6 @@ msgstr[1] "bőr viharkabát" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "Vastag bőrkabát, számos zsebbel. Tárolásra nagyon jó." -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "túlélő viharkabát" -msgstr[1] "túlélő viharkabát" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" -"Kevlárral páncélozott, egyedi készítésű viharkabát, tele zsebbel. Kényelmes," -" tartós és tárolásra nagyon jó." - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -12406,21 +12176,6 @@ msgstr[1] "napszemüveg" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "A napszemüveg vakító fénynél segít a látásban." -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "túlélő védőszemüveg" -msgstr[1] "túlélő védőszemüveg" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" -"Egyedi készítésű, színes lencsékkel ellátott, páncélozott védőszemüveg. " -"Kényelmes és tartós, kiváló védelmet nyújt a környezeti veszélyek ellen." - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -12833,25 +12588,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "túlélő tűzálló kesztyű" -msgstr[1] "túlélő tűzálló kesztyű" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -12869,50 +12605,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "nehéz túlélő kesztyű" -msgstr[1] "nehéz túlélő kesztyű" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -12977,63 +12669,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "könnyű túlélő kesztyű" -msgstr[1] "könnyű túlélő kesztyű" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "ujjatlan túlélő kesztyű" -msgstr[1] "ujjatlan túlélő kesztyű" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -13076,19 +12711,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "Egy pár gumikesztyű, főleg maró anyagokkal való munkához használják." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "túlélő kesztyű" -msgstr[1] "túlélő kesztyű" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -13226,37 +12848,6 @@ msgstr "" "védelmet kölcsönöz a felső végtagjaid számára, amikor azokkal mások arcába " "ütsz, vagy hasonló komiszságokat követsz el." -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "téli túlélő kesztyű" -msgstr[1] "téli túlélő kesztyű" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "XL túlélő kesztyű" -msgstr[1] "XL túlélő kesztyű" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -14068,7 +13659,7 @@ msgid_plural "kabuto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -14190,36 +13781,6 @@ msgstr "" "hogy amúgy akadályozná a viselője látását. Ez egy rendtes Jotunn " "felszerelés, nem úgy, mint az a sztereotip szarvas sisak." -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "nomád csuklya" -msgstr[1] "nomád csuklya" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" -"Hosszú utazáshoz szánt, hevenyészett, vízhatlan csuklya, szemvédelemmel és " -"napellenzővel." - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" -"Hosszú utazáshoz szánt hevenyészett, vízálló csuklya, szemvédelemmel és " -"napellenzővel. Óriási vándor számára tervezték." - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -14277,36 +13838,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "guberáló csuklya" -msgstr[1] "guberáló csuklya" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" -"Az erős védelmet nyújtó csuklya a nyakat is befedi, légzőkészüléket és " -"védőszemüveget is tartalmaz. Veszélyes guberáláshoz ajánlott." - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" -"Az erős védelmet nyújtó csuklya a nyakat is befedi, légzőkészüléket és " -"védőszemüveget is tartalmaz. Túlméretes, veszélyes guberáláshoz." - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -14538,44 +14069,6 @@ msgstr "" "Gyakorlat nélkül macerás használni. Aktiváld egy fegyver tokba rakásához " "illetve előrántásához." -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "túlélő heveder" -msgstr[1] "túlélő heveder" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" -"Egyedi készítésű, könnyű felépítésű heveder számos zsebbel és egy puskatartó" -" pánttal kisebb puskák vagy hasonló fegyverek számára. Tartós és " -"kifejezetten kényelmes viseletre szabott. Aktiváld egy fegyver elrakásához " -"illetve előrántásához." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" -"Egyedi készítésű, könnyű felépítésű heveder számos zsebbel és egy puskatartó" -" pánttal kisebb puskák vagy hasonló fegyverek számára. Tartós és " -"kifejezetten a legnagyobb testek kényelmes viseletére szabott. Aktiváld a " -"fegyvered eltárolásához vagy előrántásához." - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -14632,79 +14125,6 @@ msgstr "" "Teljesen testre szabott, fémsodronyból készült páncélkapucni. Kényelmesen " "viselhető sisakok alatt is. XL méretben kapható." -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "túlélő tűzálló kapucni" -msgstr[1] "túlélő tűzálló kapucni" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" -"Egyedi szabású kevlarral páncélozott, Kevlar-betétes kapucni, nagyon erős és" -" tartós. Muspelheimben készült." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "könnyű túlélő kapucni" -msgstr[1] "könnyű túlélő kapucni" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -14716,56 +14136,6 @@ msgstr[1] "esőkabát kapucnija" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "túlélő kapucni" -msgstr[1] "túlélő kapucni" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "téli túlélő kapucni" -msgstr[1] "téli túlélő kapucni" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "XL túlélő kapucni" -msgstr[1] "XL túlélő kapucni" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -15235,9 +14605,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "Egy pár mandzsettagomb beillesztett gránáttal." @@ -15248,9 +14618,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "Egy pár mandzsettagomb beillesztett gyémánttal." @@ -15261,9 +14631,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "Egy pár mandzsettagomb beillesztett ametiszttel." @@ -15274,9 +14644,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "Egy pár mandzsettagomb beillesztett akvamarinnal." @@ -15287,9 +14657,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "Egy pár mandzsettagomb beillesztett smaragddal." @@ -15300,9 +14670,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "Egy pár mandzsettagomb beillesztett alexandrittel." @@ -15313,9 +14683,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "Egy pár mandzsettagomb beillesztett rubinttal." @@ -15326,9 +14696,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "Egy pár mandzsettagomb beillesztett peridottal." @@ -15339,9 +14709,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "Egy pár mandzsettagomb beillesztett zafírral." @@ -15352,9 +14722,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "Egy pár mandzsettagomb beillesztett turmalinnal." @@ -15365,9 +14735,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "Egy pár mandzsettagomb beillesztett citrinnel." @@ -15378,9 +14748,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "Egy pár mandzsettagomb beillesztett kék topázzal." @@ -15391,9 +14761,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "Egy pár mandzsettagomb beillesztett opállal." @@ -15404,9 +14774,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "Egy pár mandzsettagomb beillesztett igazgyönggyel." @@ -19412,7 +18782,7 @@ msgid_plural "turnout trousers" msgstr[0] "tűzoltónadrág" msgstr[1] "tűzoltónadrág" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -19458,7 +18828,7 @@ msgid_plural "leather chaps" msgstr[0] "motoros bőrnadrág" msgstr[1] "motoros bőrnadrág" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -19473,7 +18843,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -19488,7 +18858,7 @@ msgid_plural "fencing pants" msgstr[0] "vívónadrág" msgstr[1] "vívónadrág" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "Megerősített nadrág vívók számára, hogy elkerüljék a sérüléseket." @@ -19665,37 +19035,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "könnyű túlélő oldalzsebes nadrág" -msgstr[1] "könnyű túlélő oldalzsebes nadrág" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" -"A lehetséges legtöbb hellyel rendelkező könnyű, kevlárral páncélozott " -"oldalzsebes nadrág. Strapabíró és nagyrészt vízálló." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" -"A lehetséges legtöbb hellyel rendelkező könnyű, kevlarral páncélozott " -"oldalzsebes nadrág. Strapabíró és nagyrészt vízálló, és az átlagosnál " -"nagyobb méretű." - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -19707,43 +19046,13 @@ msgstr[1] "motoros nadrág" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "Krosszmotorosoknak és motorosoknak készített nadrág." -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "túlélő oldalzsebes nadrág" -msgstr[1] "túlélő oldalzsebes nadrág" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" -"Kevlárral páncélozott, egyedi készítésű oldalzsebes nadrág, tele zsebbel. " -"Kényelmes, tartós és tárolásra nagyon jó." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" -"Kevlárral páncélozott, egyedi készítésű, túlméretes oldalzsebes nadrág, tele" -" zsebbel. Kényelmes, tartós és tárolásra nagyon jó." - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -19756,7 +19065,7 @@ msgid_plural "light EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -19785,7 +19094,7 @@ msgid_plural "basketball shorts" msgstr[0] "kosaras rövidnadrág" msgstr[1] "kosaras rövidnadrág" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "Kosárlabdás rövidnadrág. Kényelmes és könnyű." @@ -19796,7 +19105,7 @@ msgid_plural "breeches" msgstr[0] "bricsesznadrág" msgstr[1] "bricsesznadrág" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -19823,7 +19132,7 @@ msgid_plural "hot pants" msgstr[0] "forrónadrág" msgstr[1] "forrónadrág" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "Egy nagyon nagyon rövid rövidnadrág." @@ -19834,7 +19143,7 @@ msgid_plural "fur hot pants" msgstr[0] "szőrme forrónadrág" msgstr[1] "szőrme forrónadrág" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "Egy nagyon nagyon rövid szőrme rövidnadrág." @@ -19845,7 +19154,7 @@ msgid_plural "leather hot pants" msgstr[0] "bőr forrónadrág" msgstr[1] "bőr forrónadrág" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "Egy nagyon nagyon rövid bőr rövidnadrág." @@ -19856,7 +19165,7 @@ msgid_plural "jeans" msgstr[0] "farmernadrág" msgstr[1] "farmernadrág" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "Kék farmernadrág két mély zsebbel." @@ -19889,7 +19198,7 @@ msgid_plural "red jeans" msgstr[0] "piros farmer" msgstr[1] "piros farmer" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "Feszes, piros nyalóka színű farmernadrág két mély zsebbel." @@ -19918,7 +19227,7 @@ msgid_plural "leggings" msgstr[0] "kamásli" msgstr[1] "kamásli" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -20001,7 +19310,7 @@ msgid_plural "pants" msgstr[0] "nadrág" msgstr[1] "nadrág" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "Tábori barna nadrág, a farmernél valamennyivel melegebben tart." @@ -20012,7 +19321,7 @@ msgid_plural "army pants" msgstr[0] "military nadrág" msgstr[1] "military nadrág" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" @@ -20021,8 +19330,8 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -20055,7 +19364,7 @@ msgid_plural "cargo pants" msgstr[0] "oldalzsebes nadrág" msgstr[1] "oldalzsebes nadrág" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "Klasszikus szabású, sokzsebes nadrág, nagyon sok minden fér el benne." @@ -20066,7 +19375,7 @@ msgid_plural "checkered pants" msgstr[0] "kockás nadrág" msgstr[1] "kockás nadrág" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -20078,7 +19387,7 @@ msgid_plural "fur pants" msgstr[0] "szőrmenadrág" msgstr[1] "szőrmenadrág" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "Szőrmével bélelt nagy nadrág." @@ -20089,7 +19398,7 @@ msgid_plural "faux fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "Meleg műszőrmével bélelt textil nadrág." @@ -20100,7 +19409,7 @@ msgid_plural "leather pants" msgstr[0] "bőrnadrág" msgstr[1] "bőrnadrág" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -20115,7 +19424,7 @@ msgid_plural "ski pants" msgstr[0] "sínadrág" msgstr[1] "sínadrág" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "Alpesi lesikláshoz kialakított nadrág." @@ -20126,7 +19435,7 @@ msgid_plural "police breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -20139,7 +19448,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "postás rövidnadrág" msgstr[1] "postás rövidnadrág" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "Sötétkék rövidnadrág, amilyent a postások is hordanak." @@ -20150,7 +19459,7 @@ msgid_plural "shorts" msgstr[0] "rövidnadrág" msgstr[1] "rövidnadrág" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "Tábori barna rövidnadrág." @@ -20161,7 +19470,7 @@ msgid_plural "cargo shorts" msgstr[0] "oldalzsebes rövidnadrág" msgstr[1] "oldalzsebes rövidnadrág" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "Klasszikus szabású, sokzsebes rövidnadrág, sok minden fér el benne." @@ -20172,7 +19481,7 @@ msgid_plural "denim shorts" msgstr[0] "farmer rövidnadrág" msgstr[1] "farmer rövidnadrág" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "Farmer rövidnadrág." @@ -20239,7 +19548,7 @@ msgid_plural "striped pants" msgstr[0] "csíkos nadrág" msgstr[1] "csíkos nadrág" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "Nadrág vízszintes fekete-fehér csíkokkal." @@ -20270,7 +19579,7 @@ msgid_plural "army winter pants" msgstr[0] "téli military nadrág" msgstr[1] "téli military nadrág" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -21533,66 +20842,6 @@ msgstr "" "utazások alatti tárolására készült, ezért rendes mennyiségű tárolóval " "rendelkezik, viszont a szállítása nem túl kényelmes." -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "túlélő sporttáska" -msgstr[1] "túlélő sporttáska" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Egyedi készítésű nehéz sporttáska. Tartós és gondosan kialakított volta " -"miatt a lehető legtöbb dolog fér el benne." - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "túlélő hátizsák" -msgstr[1] "túlélő hátizsák" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" -"Egyedi készítésű hátizsák. Tartós és gondosan kialakított volta miatt a " -"lehető legtöbb dolog fér el benne." - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "túlélő hátizsák" -msgstr[1] "túlélő hátizsák" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Egyedi készítésű nehéz hátizsák. Tartós és gondosan kialakított volta miatt " -"a lehető legtöbb dolog fér el benne." - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "túlélő futótáska" -msgstr[1] "túlélő futótáska" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" -"Egyedi készítésű, könnyű futótáska. Tartós és gondosan kialakított volta " -"miatt a lehető legtöbb dolog fér el benne." - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -22068,38 +21317,6 @@ msgid_plural "XL plate armors" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "nomád viselet" -msgstr[1] "nomád viselet" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" -"A kataklizma előtti időkből származó hevenyészett, hosszú utazásra szánt " -"ruha. Jó sok minden elfér benne." - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "könnyű nomád viselet" -msgstr[1] "könnyű nomád viselet" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" -"A kataklizma előtti időkből származó hevenyészett, hosszú utazásra szánt " -"könnyű ruha. A hagyományos nomád viselethez képest kevesebb minden fél el " -"benne, és kevésbé is páncélozott." - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -22145,8 +21362,8 @@ msgstr[1] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -22160,21 +21377,6 @@ msgstr[1] "o-joroi" msgid "An ornamental suit of Japanese samurai armor." msgstr "Japán szamuráj harcosok díszes páncélzata." -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "guberáló viselet" -msgstr[1] "guberáló viselet" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" -"Erős védelmet nyújtó guberáló ruházat a kataklizma előtti időkből. Jó sok " -"minden elfér benne." - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -22329,74 +21531,43 @@ msgstr[0] "" msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "túlélő tűzálló páncél" -msgstr[1] "túlélő tűzálló páncél" +msgid "gambeson" +msgid_plural "gambesons" +msgstr[0] "gambeson" +msgstr[1] "gambeson" -#. ~ Description for survivor firesuit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" -"Ezt a nehézsúlyú, házi barkácsolású páncélzatot egy szétvagdosott golyóálló " -"mellényből és egy megerősített, Nomex tűzálló anyagból készült kezeslábasból" -" fabrikálták. Védelmet nyújt a tűz és az elemek ellen." +"Steppelt szövetből készített vastag kabát, amelyet a láncing vagy egyéb " +"páncélzat alatt viselnek. Vagy anélkül, ha páncélra nem futja." #: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "téli túlélő páncél" -msgstr[1] "téli túlélő páncél" - -#. ~ Description for winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" -msgstr[0] "gambeson" -msgstr[1] "gambeson" - -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" -"Steppelt szövetből készített vastag kabát, amelyet a láncing vagy egyéb " -"páncélzat alatt viselnek. Vagy anélkül, ha páncélra nem futja." - -#: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" @@ -22415,46 +21586,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "nehéz túlélő páncél" -msgstr[1] "nehéz túlélő páncél" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" -"Ezt a nehéz, kézi barkácsolású páncélzatot egy szétvagdosott, megerősített " -"golyóálló mellényből és egy fémbetétes kezeslábasból fabrikálták. Védelmet " -"nyújt az elemek és sebesülések ellen." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "könnyű túlélő páncél" -msgstr[1] "könnyű túlélő páncél" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" -"Ezt a könnyűsúlyú, kézi barkácsolású páncélzatot egy szétvagdosott golyóálló" -" mellényből és egy megerősített textil kezeslábasból fabrikálták. Védelmet " -"nyújt az elemek és sebesülések ellen." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -22531,22 +21662,6 @@ msgstr "" "Egész testet befedő textil öltöny. Eleganciát visz az apokalipszis utáni " "napokba." -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "túlélő páncél" -msgstr[1] "túlélő páncél" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" -"Ezt a könnyűsúlyú, kézi barkácsolású páncélzatot egy szétvagdosott golyóálló" -" mellényből és egy megerősített bőr kezeslábasból fabrikálták. Védelmet " -"nyújt az elemek és sebesülések ellen." - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -22556,11 +21671,9 @@ msgstr[1] "kommandós páncél" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" -"Fekete golyóálló páncél rengeteg zsebbel. A hátán a kommandósok SWAT " -"felirata szerepel." #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -22575,51 +21688,6 @@ msgid "" "Light and very comfortable." msgstr "Vastag, motorozáshoz készült bőrruha. Könnyű és nagyon kényelmes." -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"Ezt a meleg és nehéz, kézi barkácsolású páncélzatot egy szétvagdosott, " -"megerősített golyóálló mellényből és egy hőszigetelt bőr kezeslábasból " -"fabrikálták. Védelmet nyújt az elemek és sebesülések ellen." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "XL túlélő páncél" -msgstr[1] "XL túlélő páncél" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" -"Ezt a hatalmas, kézzel barkácsolt páncélzatot egy szétvagdosott golyóálló " -"mellényből, és egy megerősített bőr kezeslábasból fabrikálták. Védelmet " -"nyújt az elemek és sebesülések ellen." - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"Ezt a masszív, nehéz, kézi barkácsolású páncélzatot egy szétvagdosott, " -"megerősített golyóálló mellényből és egy fémbetétes bőr kezeslábasból " -"fabrikálták. Védelmet nyújt az elemek és sebesülések ellen." - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -22691,53 +21759,6 @@ msgstr[1] "neoprén csuklya" msgid "A neoprene hood, commonly worn by divers." msgstr "Főleg búvárok hordják ezt a neoprén csuklyát." -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "túlélő búvárkapucni" -msgstr[1] "túlélő búvárkapucni" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" -"Egyedi szabású kevlarral páncélozott, neoprénbetétes kapucni, nagyon erős és" -" tartós." - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "túlélő búvárruha" -msgstr[1] "túlélő búvárruha" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" -"Ezt a könnyűsúlyú, kézi barkácsolású páncélzatot egy szétvagdosott golyóálló" -" mellényből és egy megerősített neoprén búvárruhából fabrikálták. Védelmet " -"nyújt az elemek és sebesülések ellen." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "túlélő búvárkesztyű" -msgstr[1] "túlélő búvárkesztyű" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" -"Ezt a pár egyedi szabású, kevlarral páncélozott neoprén kesztyűt könnyű " -"viselésre alakították ki, ugyanakkor maximális védelmet nyújt akár extrém " -"körülmények között is." - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -22855,7 +21876,7 @@ msgid_plural "lorica segmentata" msgstr[0] "lorica segmentata" msgstr[1] "lorica segmentata" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -23035,7 +22056,7 @@ msgid_plural "tire leather armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -23101,27 +22122,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "Könnyű súlyú golyóálló mellény, ruha alatt is hordható." -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "könnyű túlélő testpáncél" -msgstr[1] "könnyű túlélő testpáncél" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" -"Kevlarból és szívós textilből készített könnyű és egyedi testpáncél. " -"Nagyrészt vízálló." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -23399,7 +22399,7 @@ msgid_plural "leotard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -23507,7 +22507,7 @@ msgid_plural "French maid clothes" msgstr[0] "francia szobalány jelmez" msgstr[1] "francia szobalány jelmez" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "Egy francia szobalány jelmez, kék színű, elől fehér köténnyel." @@ -23835,7 +22835,7 @@ msgid_plural "boxer briefs" msgstr[0] "boxergatya" msgstr[1] "boxergatya" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -23848,7 +22848,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -23861,7 +22861,7 @@ msgid_plural "boxer shorts" msgstr[0] "boxer alsó" msgstr[1] "boxer alsó" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -23874,7 +22874,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -23889,7 +22889,7 @@ msgid_plural "boy shorts" msgstr[0] "francia bugyi" msgstr[1] "francia bugyi" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -23901,7 +22901,7 @@ msgid_plural "XL boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -23930,7 +22930,7 @@ msgid_plural "briefs" msgstr[0] "alsógatya" msgstr[1] "alsógatya" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "Fehér alsógatya Y alakú varrással, kényelmes férfiviselet." @@ -24105,7 +23105,7 @@ msgid_plural "panties" msgstr[0] "bugyi" msgstr[1] "bugyi" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -24177,7 +23177,7 @@ msgid_plural "tights" msgstr[0] "harisnya" msgstr[1] "harisnya" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -24206,7 +23206,7 @@ msgid_plural "compression shorts" msgstr[0] "nejlon rövidnadrág" msgstr[1] "nejlon rövidnadrág" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -24247,1752 +23247,2764 @@ msgstr "" " viselik, a ruha jól fedi testet és hajlékony." #: lang/json/ARMOR_from_json.py -msgid "sheet" -msgid_plural "sheets" -msgstr[0] "lepedő" -msgstr[1] "lepedő" +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "nomád viselet" +msgstr[1] "nomád viselet" -#. ~ Description for sheet +#. ~ Description for nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" -" a bunch of rags." +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." msgstr "" -"Nagy méretű textil lepedő. Használható függönynek vagy ágyneműnek, vagy akár" -" egy csomó ronggyá is szét lehet vagdosni." - -#: lang/json/ARMOR_from_json.py -msgid "blanket" -msgid_plural "blankets" -msgstr[0] "paplan" -msgstr[1] "paplan" - -#. ~ Description for blanket -#: lang/json/ARMOR_from_json.py -msgid "Hiding under here will not protect you from the monsters." -msgstr "Ha bebújsz alá, akkor is megtalálnak a szörnyek." +"A kataklizma előtti időkből származó hevenyészett, hosszú utazásra szánt " +"ruha. Jó sok minden elfér benne." #: lang/json/ARMOR_from_json.py -msgid "down-filled blanket" -msgid_plural "down-filled blankets" -msgstr[0] "pihepaplan" -msgstr[1] "pihepaplan" +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "könnyű nomád viselet" +msgstr[1] "könnyű nomád viselet" -#. ~ Description for down-filled blanket +#. ~ Description for light nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"Hiding under here will not protect you from the monsters, but it'll keep you" -" warm." +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." msgstr "" -"Ha bebújsz alá, akkor is megtalálnak a szörnyek, de legalább nem fogsz " -"fázni." +"A kataklizma előtti időkből származó hevenyészett, hosszú utazásra szánt " +"könnyű ruha. A hagyományos nomád viselethez képest kevesebb minden fél el " +"benne, és kevésbé is páncélozott." #: lang/json/ARMOR_from_json.py -msgid "fur blanket" -msgid_plural "fur blankets" -msgstr[0] "szőrme takaró" -msgstr[1] "szőrme takaró" +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "guberáló viselet" +msgstr[1] "guberáló viselet" -#. ~ Description for fur blanket +#. ~ Description for scavenger gear #: lang/json/ARMOR_from_json.py -msgid "A heavy fur blanket that covers most of your body." -msgstr "Ez a nehéz szőrme takaró a tested nagy részét befedi." +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" +"Erős védelmet nyújtó guberáló ruházat a kataklizma előtti időkből. Jó sok " +"minden elfér benne." #: lang/json/ARMOR_from_json.py -msgid "quilt" -msgid_plural "quilts" -msgstr[0] "" -msgstr[1] "" +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "könnyű túlélő páncél" +msgstr[1] "könnyű túlélő páncél" -#. ~ Description for quilt +#. ~ Description for light survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " -"cozy!" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." msgstr "" -"Nagy, kényelmes paplan vastag gyapjúból, háromszög mintázatú. Rendkívül " -"kényelmes!" +"Ezt a könnyűsúlyú, kézi barkácsolású páncélzatot egy szétvagdosott golyóálló" +" mellényből és egy megerősített textil kezeslábasból fabrikálták. Védelmet " +"nyújt az elemek és sebesülések ellen." #: lang/json/ARMOR_from_json.py -msgid "patchwork quilt" -msgid_plural "patchwork quilts" +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for patchwork quilt -#: lang/json/ARMOR_from_json.py -msgid "A huge, patchwork wool quilt. Very, very warm." -msgstr "Hatalmas, patchwork gyapjú paplan. Nagyon, nagyon meleg." - -#: lang/json/ARMOR_from_json.py -msgid "sleeping bag" -msgid_plural "sleeping bags" -msgstr[0] "hálózsák" -msgstr[1] "hálózsák" - -#. ~ Use action msg for sleeping bag. #: lang/json/ARMOR_from_json.py -msgid "You roll up the sleeping bag, preparing it for transport." -msgstr "Feltekered a hálózsákot és így az már szállítható." +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "túlélő páncél" +msgstr[1] "túlélő páncél" -#. ~ Description for sleeping bag +#. ~ Description for survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A large sleeping bag that covers you head to toe. This one is medium " -"weight." -msgstr "Ez a nagyméretű hálózsák a fejed búbjáig betakar. Ez közepes súlyú." +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" +"Ezt a könnyűsúlyú, kézi barkácsolású páncélzatot egy szétvagdosott golyóálló" +" mellényből és egy megerősített bőr kezeslábasból fabrikálták. Védelmet " +"nyújt az elemek és sebesülések ellen." #: lang/json/ARMOR_from_json.py -msgid "cestus" -msgid_plural "cestuses" -msgstr[0] "cestus" -msgstr[1] "cestus" +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "XL túlélő páncél" +msgstr[1] "XL túlélő páncél" -#. ~ Description for cestus +#. ~ Description for XL survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A leather hand and arm wrap incorporating metal plates over the knuckles to " -"improve punching power and defence." +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." msgstr "" -"Bőrből készült kéz- és karvédő, amely fémlemezekkel fedi be az öklödet, és " -"így javít az ütés erején, valamint a védelmen." +"Ezt a hatalmas, kézzel barkácsolt páncélzatot egy szétvagdosott golyóálló " +"mellényből, és egy megerősített bőr kezeslábasból fabrikálták. Védelmet " +"nyújt az elemek és sebesülések ellen." #: lang/json/ARMOR_from_json.py -msgid "pair of studded gloves" -msgid_plural "pairs of studded gloves" -msgstr[0] "szögekkel kivert kesztyű" -msgstr[1] "szögekkel kivert kesztyű" +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "téli túlélő páncél" +msgstr[1] "téli túlélő páncél" -#. ~ Description for pair of studded gloves +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "A pair of gloves with studded metal knuckles." -msgstr "Fémszögekkel kivert kesztyű." +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" +"Ezt a meleg és nehéz, kézi barkácsolású páncélzatot egy szétvagdosott, " +"megerősített golyóálló mellényből és egy hőszigetelt bőr kezeslábasból " +"fabrikálták. Védelmet nyújt az elemek és sebesülések ellen." #: lang/json/ARMOR_from_json.py -msgid "impact knuckles" -msgid_plural "impact knuckles" +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of thick steel plates covering your proximal phalange. They are " -"strapped to your hands with metal braces." +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "skewer knuckles" -msgid_plural "skewer knuckles" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for XL winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A single sturdy spike protrudes 5cm from the back of your hand. They are " -"strapped to your hands with metal braces." +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "telescoping umbrella" -msgid_plural "telescoping umbrellas" -msgstr[0] "teleszkópos esernyő" -msgstr[1] "teleszkópos esernyő" +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "túlélő búvárruha" +msgstr[1] "túlélő búvárruha" -#. ~ Description for telescoping umbrella +#. ~ Description for survivor wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A telescoping umbrella which collapses down for easy storage, useful for " -"keeping dry when wielded." +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." msgstr "" -"Könnyű tároláshoz becsukható teleszkópos esernyő, kézben hordva szárazon " -"tart." +"Ezt a könnyűsúlyú, kézi barkácsolású páncélzatot egy szétvagdosott golyóálló" +" mellényből és egy megerősített neoprén búvárruhából fabrikálták. Védelmet " +"nyújt az elemek és sebesülések ellen." #: lang/json/ARMOR_from_json.py -msgid "bag of holding" -msgid_plural "bags of holding" -msgstr[0] "" -msgstr[1] "" +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "könnyű túlélő csizma" +msgstr[1] "könnyű túlélő csizma" -#. ~ Description for bag of holding +#. ~ Description for pair of light survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A sleek, unfathomably-complicated machine covered in dozens of blinking " -"lights, worn on the back by sturdy faux-leather straps. An electrode " -"dangles from the back, attaching to your forehead. How it operates without " -"annihilating spacetime isn't quite clear, but a localized portal allows " -"things to be stored in an extradimensional space." +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." msgstr "" -"Elegáns, kifürkészhetetlenül bonyolult gép, amelyet tucatnyi villogó fény " -"borít, hátul erős műbőr hevederekkel. Egy elektróda lóg hátulról, és a " -"homlokodhoz kapcsolódik. Az, hogy hogyan működik a téridő-kontinuum " -"megsemmisítése nélkül még nem egészen világos, de egy lokalizált portál " -"lehetővé teszi a dolgok extradimenzionális térben történő tárolását." #: lang/json/ARMOR_from_json.py -msgid "titanium vest" -msgid_plural "titanium vests" +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for titanium vest +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "túlélő csizma" +msgstr[1] "túlélő csizma" + +#. ~ Description for pair of survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight armor vest made of pieces of titanium sewn together, with " -"cloth padding for comfort. Brittle against blunt force, but highly " -"resistant to cuts and corrosion." +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." msgstr "" -"Több darab titánból összevart könnyű páncélzat, amelyet kényelmesen " -"textillel béleltek ki. A zúzó támadások ellen törékeny, a vágásoknak és a " -"korróziónak viszont nagyon jól ellenáll." #: lang/json/ARMOR_from_json.py -msgid "sentinel-lx cloak" -msgid_plural "sentinel-lx cloaks" -msgstr[0] "" -msgstr[1] "" +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "XL túlélő csizma" +msgstr[1] "XL túlélő csizma" -#. ~ Description for sentinel-lx cloak +#. ~ Description for pair of XL survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " -"unnatural shadow. Made from woven graphene, its lightweight and resistant, " -"but cannot be repaired" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." msgstr "" -"A legfeketébb fekete vantablack színű Sentinel-IX palást a válladról úgy " -"lóg, mint valami szilárd, természetellenes árnyék. A szőtt grafénból készült" -" palást könnyű és ellenálló, ám nem lehet megjavítani." #: lang/json/ARMOR_from_json.py -msgid "XL jeans" -msgid_plural "pairs of XL jeans" +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL jeans +#. ~ Description for pair of faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue jeans with two deep pockets." -msgstr "XL méretű kék farmernadrág két mély zsebbel." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work pants" -msgid_plural "pairs of XL work pants" +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" +#. ~ Description for pair of XL faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue work pants." -msgstr "Egy XL méretű kék munkahelyi nadrág." +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" #: lang/json/ARMOR_from_json.py -msgid "A pair of XL gray work pants." -msgstr "Egy XL-méretű szürke munkahelyi nadrág." +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "téli túlélő csizma" +msgstr[1] "téli túlélő csizma" +#. ~ Description for pair of winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL light-blue work pants." -msgstr "Egy XL-méretű világoskék munkahelyi nadrág." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work t-shirt" -msgid_plural "XL work t-shirts" +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL work t-shirt #: lang/json/ARMOR_from_json.py -msgid "A gray XL work t-shirt with a small front pocket." -msgstr "XL-méretű, szürke színű munkahelyi póló apró első zsebbel." +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "túlélő búvárcsizma" +msgstr[1] "túlélő búvárcsizma" +#. ~ Description for pair of survivor wetsuit boots #: lang/json/ARMOR_from_json.py -msgid "An XL blue work t-shirt with a small front pocket." -msgstr "XL-méretű, kék színű munkahelyi póló apró első zsebbel." +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" #: lang/json/ARMOR_from_json.py -msgid "An XL gray work t-shirt with a small front pocket." -msgstr "XL-méretű, szürke színű munkahelyi póló apró első zsebbel." +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "könnyű túlélő kesztyű" +msgstr[1] "könnyű túlélő kesztyű" +#. ~ Description for pair of light survivor gloves #: lang/json/ARMOR_from_json.py -msgid "An XL light-blue work t-shirt with a small front pocket." -msgstr "XL-méretű, világoskék színű munkahelyi póló apró első zsebbel." +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Uplifted SWAT armor" -msgid_plural "Uplifted SWAT armors" +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for Uplifted SWAT armor -#: lang/json/ARMOR_from_json.py -msgid "" -"An extra large suit of black bulletproof armor with lots of pockets. The " -"word SWAT is emblazoned across the back. Specifically designed for Uplifted" -" officers such as Mastodons." -msgstr "" -"Extra nagyméretű, fekete golyóálló páncél rengeteg zsebbel. A hátán a " -"kommandósok SWAT felirata szerepel. Kifejezetten az upliftelt tisztek " -"számára készült, mint amilyenek a Mastodonok." - #: lang/json/ARMOR_from_json.py -msgid "empty XL ballistic vest" -msgid_plural "empty XL ballistic vests" +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for empty XL ballistic vest +#. ~ Description for pair of fingerless light survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"Oversized ballistic armor without any armor inserts. The soft armor plate " -"carrier is still protective but it won't stop high energy projectiles." +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." msgstr "" -"Túlméretes ballisztikus páncél, páncélbetétek nélkül. A páncélbetétek " -"zsebei valami védelmet ugyan így is nyújtanak, de nem képesek nagy energiájú" -" lövedékeket megállítani." #: lang/json/ARMOR_from_json.py -msgid "XL ESAPI ballistic vest" -msgid_plural "XL ESAPI ballistic vests" +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL ESAPI ballistic vest -#: lang/json/ARMOR_from_json.py -msgid "Oversized ballistic armor with ESAPI ceramic armor plates." -msgstr "Túlméretes, ESAPI kerámia páncéllemezekkel ellátott lövészmellény." - #: lang/json/ARMOR_from_json.py -msgid "pair of XL combat boots" -msgid_plural "pair of XL combat boots" -msgstr[0] "" -msgstr[1] "" +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "ujjatlan túlélő kesztyű" +msgstr[1] "ujjatlan túlélő kesztyű" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of fingerless survivor gloves #: lang/json/ARMOR_from_json.py -msgid "Modern oversized reinforced tactical combat boots. Very durable." +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." msgstr "" -"Modern, túlméretes, megerősített taktikai harci csizma. Nagyon tartós." #: lang/json/ARMOR_from_json.py -msgid "pair of XL tactical gloves" -msgid_plural "pair of XL tactical gloves" +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "túlélő kesztyű" +msgstr[1] "túlélő kesztyű" + +#. ~ Description for pair of survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " -"police and military units." +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." msgstr "" -"Egy pár túlméretes, kevlarral megerősített taktikai kesztyű. Gyakran " -"rendőrségi és katonai egységek használják." #: lang/json/ARMOR_from_json.py -msgid "pair of Killophant gloves" -msgid_plural "pair of Killophant gloves" -msgstr[0] "" -msgstr[1] "" +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "XL túlélő kesztyű" +msgstr[1] "XL túlélő kesztyű" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of XL survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of reinforced Kevlar tactical gloves, specifically designed to " -"accommodate three-fingered Killophants. Thinner than regular oversized " -"tactical gloves." +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." msgstr "" -"Egy pár kevlarral megerősített taktikai kesztyű, amelyet kifejezetten a " -"háromujjas Killophantok számára terveztek. A szokásos túlméretes taktikai " -"kesztyűnél vékonyabb." #: lang/json/ARMOR_from_json.py -msgid "XL leather belt" -msgid_plural "XL leather belts" -msgstr[0] "" -msgstr[1] "" +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "téli túlélő kesztyű" +msgstr[1] "téli túlélő kesztyű" -#. ~ Description for XL leather belt +#. ~ Description for pair of winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL leather belt. Useful for making your pair of pants fit if you need " -"really big pants." +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." msgstr "" -"Egy XL méretű bőröv. Jó arra, hogy ne essen le a gatyád, főleg, ha ekkor " -"gatya kell neked." #: lang/json/ARMOR_from_json.py -msgid "XL police duty belt" -msgid_plural "XL police duty belts" +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL police duty belt -#: lang/json/ARMOR_from_json.py -msgid "" -"An XL black leather belt used by extremely large uplifted police officers. " -"It has several pouches and a holder for a baton." -msgstr "" -"XL méretű fekete bőröv, amelyet a rendkívül nagyméretű, upliftelt rendőrök " -"használnak. Több tasakja van, meg egy csatológyűrű a gumibothoz." - #: lang/json/ARMOR_from_json.py -msgid "XL tactical full helmet" -msgid_plural "XL tactical full helmets" +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL tactical full helmet +#. ~ Description for pair of faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing massive black helmet that covers your entire face and " -"neck, providing excellent protection from all sorts of damage." +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." msgstr "" -"Az egész arcodat és a nyakat is betakaró hatalmas taktikai sisak, kiváló " -"védelmet nyújt mindenféle sebesülés ellen." #: lang/json/ARMOR_from_json.py -msgid "XL leg ammo pouch" -msgid_plural "XL leg ammo pouches" +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL leg ammo pouch +#. ~ Description for pair of XL faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" -" two magazines close at hand." +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "crew jumpsuit" -msgid_plural "crew jumpsuits" -msgstr[0] "" -msgstr[1] "" +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "túlélő búvárkesztyű" +msgstr[1] "túlélő búvárkesztyű" -#. ~ Description for crew jumpsuit +#. ~ Description for pair of survivor wetsuit gloves #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " -"some freight hauling association or another. This one is a standard design " -"favored by spacers, with ample, easy access pockets." +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." msgstr "" -"Könnyű szövet overall, amelyet valamelyik árufuvarozó egyesület elhalványult" -" vállalati címere díszít. Ez az űhajósok azért kedvelik mert sok, könnyen " -"hozzáférhető zsebbel rendelkezik." +"Ezt a pár egyedi szabású, kevlarral páncélozott neoprén kesztyűt könnyű " +"viselésre alakították ki, ugyanakkor maximális védelmet nyújt akár extrém " +"körülmények között is." #: lang/json/ARMOR_from_json.py -msgid "communications cap" -msgid_plural "communications caps" -msgstr[0] "" -msgstr[1] "" +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "nomád csuklya" +msgstr[1] "nomád csuklya" -#. ~ Description for communications cap +#. ~ Description for nomad cowl #: lang/json/ARMOR_from_json.py msgid "" -"A padded cotton cap built around an augmented reality headset. During " -"normal operation it would provide visual information about a ship subsystems" -" and a communications link with the rest of the crew, but severed from a " -"spaceship, only their hearing protection function retains any utility." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." msgstr "" -"Párnázott pamut sisak, egy kibővített valóság sisak köré építettek. Normál " -"üzem közben vizuális információkkal szolgál a hajó alrendszereiről, illetve " -"kommunikál a legénység többi tagjával, de így, az űrhajótól elszakítva csak " -"a hallásvédelmi funkciója miatt lehet esetleg hasznos." +"Hosszú utazáshoz szánt, hevenyészett, vízhatlan csuklya, szemvédelemmel és " +"napellenzővel." #: lang/json/ARMOR_from_json.py -msgid "HERC rig" -msgid_plural "HERC rigs" +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" msgstr[0] "" msgstr[1] "" -#. ~ Description for HERC rig +#. ~ Description for nomad cowl XL #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " -"about in zero-g, Mars, the bottom of the Pacific, or other generally " -"inhospitable environments. It has several deep pockets, and two mounting " -"points for pressurized canisters or other large magazines." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." msgstr "" -"Könnyű, acéllal erősített szerszámtartó. Nulla g, marsi vagy csendes-óceáni" -" fenék környezetben is biztonságban tartja a szerszámaidat. Több mély " -"zsebbel és két rögzítési ponttal rendelkezik, ahova a túlnyomásos " -"kanisztereket, vagy egyéb más nagyméreű lőszertárat lehet felcsatolni." +"Hosszú utazáshoz szánt hevenyészett, vízálló csuklya, szemvédelemmel és " +"napellenzővel. Óriási vándor számára tervezték." #: lang/json/ARMOR_from_json.py -msgid "cecalia wetsuit" -msgid_plural "cecalia wetsuits" -msgstr[0] "" -msgstr[1] "" +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "túlélő kapucni" +msgstr[1] "túlélő kapucni" -#. ~ Description for cecalia wetsuit +#. ~ Description for survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " -"explorer suit with no head or tentacle protection." +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." msgstr "" -"A Cecalia néven ismert poplipalpú uplifteltek számára tervezett búvárruha. " -"Ez a fej- vagy csápvédelem nélküli felfedező buvárruha." #: lang/json/ARMOR_from_json.py -msgid "combat wetsuit" -msgid_plural "combat wetsuits" -msgstr[0] "" -msgstr[1] "" +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "téli túlélő kapucni" +msgstr[1] "téli túlélő kapucni" -#. ~ Description for combat wetsuit +#. ~ Description for winter survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " -"will provide some level of protection for deep dwellers." +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." msgstr "" -"A Cecalia búvárruha harci változata; neoprénből és kevlárból készül, " -"bizonyos szintű védelmet nyújt a mélyben lakók számára." #: lang/json/ARMOR_from_json.py -msgid "nanomesh vest" -msgid_plural "nanomesh vests" +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for nanomesh vest +#. ~ Description for XL winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight nanomesh vest designed to face down many of the perils of " -"space travel. These vests are mass produced and often stacked in starship " -"lockers." +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "vacuum cast cuirass" -msgid_plural "vacuum cast cuirasses" -msgstr[0] "" -msgstr[1] "" +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "XL túlélő kapucni" +msgstr[1] "XL túlélő kapucni" -#. ~ Description for vacuum cast cuirass +#. ~ Description for XL survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"This piece of armor harkens back to renaissance designs. It differs in that" -" it is cast as a single piece in deep space installations where conditions " -"can be controlled absolutely." +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "carbide raider's helmet" -msgid_plural "carbide raider's helmets" -msgstr[0] "" -msgstr[1] "" +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "könnyű túlélő kapucni" +msgstr[1] "könnyű túlélő kapucni" -#. ~ Description for carbide raider's helmet +#. ~ Description for light survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"This helmet is designed for the individual that is worried about catching " -"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " -"environmental protection features, but it just might stop even the largest " -"of ballistic rounds." +msgid "A customized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "UICAS Point of Impact helmet" -msgid_plural "UICAS Point of Impact helmets" +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for UICAS Point of Impact helmet +#. ~ Description for XL light survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight black helmet that provides excellent protection from all sorts" -" of damage, unless it's airborne. UICAS makes the point of designing all " -"headgear whenever possible with clear faceplates, in order to provide a " -"human touch to all interactions." +"A customized and oversized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cold resistance cream" -msgid_plural "cold resistance creams" +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for cold resistance cream +#. ~ Description for winter faux fur survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"A thick layer of something that smells worse than walrus fat. But it keeps " -"you warm." +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." msgstr "" -"Vastag réteg valami, aminek rosszabb a szaga, mint a rozmárzsírnak. De " -"legalább melegen tart." #: lang/json/ARMOR_from_json.py -msgid "heat retention xtreme cream" -msgid_plural "heat retention xtreme creams" +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for heat retention xtreme cream +#. ~ Description for XL faux fur winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"The last word in cold snap protection designed to give short term protection" -" in the event of a suit breach in vacuum." +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." msgstr "" -"A hidegvédelem legjobb krémje rövid távú védelemre lett kialakítva, de akár " -"a vákumban bekövetkezett szkafanderszakadásnál is megvéd." #: lang/json/ARMOR_from_json.py -msgid "titanium watch" -msgid_plural "titanium watches" -msgstr[0] "" -msgstr[1] "" +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "túlélő búvárkapucni" +msgstr[1] "túlélő búvárkapucni" -#. ~ Description for titanium watch +#. ~ Description for survivor wetsuit hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine watch made out of titanium. It is durable, light-weight " -"and water-resistant, an excellent watch to have in a hostile environment." +"A customized armored neoprene and Kevlar hood, very strong and durable." msgstr "" -"Titánból készült vastag, férfias óra. Tartós, könnyű és vízálló, kiváló óra" -" a barátságtalan környezetbe." +"Egyedi szabású kevlarral páncélozott, neoprénbetétes kapucni, nagyon erős és" +" tartós." #: lang/json/ARMOR_from_json.py -msgid "titanium ring" -msgid_plural "titanium rings" -msgstr[0] "" -msgstr[1] "" +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "guberáló csuklya" +msgstr[1] "guberáló csuklya" -#. ~ Description for titanium ring +#. ~ Description for scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine ring made out of titanium. Made in a variety of styles " -"and finishes, they're valued for their durability." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." msgstr "" -"Titánból készült vastag, férfias gyűrű. Különböző stílusokban és kivitelben" -" készült, tartósságuk miatt nagyra tartják." +"Az erős védelmet nyújtó csuklya a nyakat is befedi, légzőkészüléket és " +"védőszemüveget is tartalmaz. Veszélyes guberáláshoz ajánlott." #: lang/json/ARMOR_from_json.py -msgid "hazardous environment suit" -msgid_plural "hazardous environment suits" +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" msgstr[0] "" msgstr[1] "" -#. ~ Description for hazardous environment suit +#. ~ Description for XL scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"Developed for the exploration of alien planes, the lightweight, orange-black" -" HEV suit covers everything below the neck. While it possesses only modest " -"physical protection, it provides excellent protection from most " -"environmental hazards. A hatch in the front opens to provide a small amount" -" of storage." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." msgstr "" -"Az idegen bolygók felfedezéséhez készített könnyed, naracssárga-fekete " -"szennyezésvédelmi szkafander a nyak alatt mindent befed. Bár a sérüléstől " -"csak minimális mértékben véd, a környezeti veszélyek nagy része ellen " -"hatékony. Az elején egy kis kinyitható ajtó mögött egy apró tárolórekesz " -"található." +"Az erős védelmet nyújtó csuklya a nyakat is befedi, légzőkészüléket és " +"védőszemüveget is tartalmaz. Túlméretes, veszélyes guberáláshoz." #: lang/json/ARMOR_from_json.py -msgid "psychrophile handling gloves" -msgid_plural "psychrophile handling gloves" -msgstr[0] "" -msgstr[1] "" +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "könnyű túlélő oldalzsebes nadrág" +msgstr[1] "könnyű túlélő oldalzsebes nadrág" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"These gloves are designed for handling organisms that live in extremely cold" -" temperatures. They can also be used to freeze your foes to death." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." msgstr "" +"A lehetséges legtöbb hellyel rendelkező könnyű, kevlárral páncélozott " +"oldalzsebes nadrág. Strapabíró és nagyrészt vízálló." #: lang/json/ARMOR_from_json.py -msgid "CRIT Engineering Suit" -msgid_plural "CRIT Engineering Suits" +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Engineering Suit +#. ~ Description for XL light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"An airtight, flexible suit of woven composite fibers complete with segmented" -" plates of armor. A complex system digitizes items in an individual pocket " -"universe for storage while built in joint-torsion ratchets generate the " -"necessary energy required to power the interface." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." msgstr "" +"A lehetséges legtöbb hellyel rendelkező könnyű, kevlarral páncélozott " +"oldalzsebes nadrág. Strapabíró és nagyrészt vízálló, és az átlagosnál " +"nagyobb méretű." #: lang/json/ARMOR_from_json.py -msgid "CRIT face mask" -msgid_plural "CRIT face masks" -msgstr[0] "" -msgstr[1] "" +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "túlélő oldalzsebes nadrág" +msgstr[1] "túlélő oldalzsebes nadrág" -#. ~ Description for CRIT face mask +#. ~ Description for survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A standard issue face mask, lined with Kevlar for extra protection. A few " -"filters provide decent environmental safety, but it was not intended for " -"extended use. It has a basic integrated HUD." +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." msgstr "" +"Kevlárral páncélozott, egyedi készítésű oldalzsebes nadrág, tele zsebbel. " +"Kényelmes, tartós és tárolásra nagyon jó." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT boots" -msgid_plural "pairs of CRIT boots" +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT boots +#. ~ Description for XL survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " -"hygienic during long-term missions while absorbing shock and heat from " -"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " -"protection as well. Decently heavy though" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." msgstr "" +"Kevlárral páncélozott, egyedi készítésű, túlméretes oldalzsebes nadrág, tele" +" zsebbel. Kényelmes, tartós és tárolásra nagyon jó." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT LA boots" -msgid_plural "pairs of CRIT LA boots" -msgstr[0] "" -msgstr[1] "" +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "túlélő duster kabát" +msgstr[1] "túlélő duster kabát" -#. ~ Description for pair of CRIT LA boots +#. ~ Description for survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " -"variant was created for missions in warmer climates. The LA boots keep most" -" of the old features of the standard issue boots but trade in protection for" -" easier movement." +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." msgstr "" +"Kevlarral páncélozott, egyedi készítésű duster kabát, tele zsebbel. " +"Kényelmes, tartós és tárolásra nagyon jó." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less gloves" -msgid_plural "pairs of CRIT fingertip-less gloves" +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT fingertip-less gloves +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "ujjatlan túlélő duster kabát" +msgstr[1] "ujjatlan túlélő duster kabát" + +#. ~ Description for sleeveless survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue gloves. Made with superalloy mesh for those with " -"gene-modding and/or mutations while still allowing greater manipulation of " -"items and moderate protection." +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." msgstr "" +"Kevlárral páncélozott, egyedi készítésű ujjatlan duster kabát, tele zsebbel." +" Kényelmes, tartós és tárolásra nagyon jó." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less liners" -msgid_plural "pairs of CRIT fingertip-less liners" -msgstr[0] "" -msgstr[1] "" +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "túlélő viharkabát" +msgstr[1] "túlélő viharkabát" -#. ~ Description for pair of CRIT fingertip-less liners +#. ~ Description for survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " -"for warmth and fingertip-less for those with gene-modding and/or mutations " -"while still allowing greater manipulation of items and moderate protection." +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." msgstr "" +"Kevlárral páncélozott, egyedi készítésű viharkabát, tele zsebbel. Kényelmes," +" tartós és tárolásra nagyon jó." #: lang/json/ARMOR_from_json.py -msgid "CRIT backpack" -msgid_plural "CRIT backpacks" -msgstr[0] "" -msgstr[1] "" +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "ujjatlan túlélő viharkabát" +msgstr[1] "ujjatlan túlélő viharkabát" -#. ~ Description for CRIT backpack +#. ~ Description for sleeveless survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " -"pack strikes a fine balance between storage space and encumbrance and allows" -" a larger weapon to be holstered, drawing and holstering is still rather " -"awkward even with the magnetized clips, but practice helps." +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." msgstr "" +"Kevlárral páncélozott, egyedi készítésű ujjatlan viharkabát, tele zsebbel. " +"Kényelmes, tartós és tárolásra nagyon jó." #: lang/json/ARMOR_from_json.py -msgid "CRIT chestrig" -msgid_plural "CRIT chestrigs" -msgstr[0] "" -msgstr[1] "" +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "túlélő sporttáska" +msgstr[1] "túlélő sporttáska" -#. ~ Description for CRIT chestrig +#. ~ Description for survivor duffel bag #: lang/json/ARMOR_from_json.py msgid "" -"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " -"with light-armor padding." +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" +"Egyedi készítésű nehéz sporttáska. Tartós és gondosan kialakított volta " +"miatt a lehető legtöbb dolog fér el benne." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT leg guards" -msgid_plural "pairs of CRIT leg guards" -msgstr[0] "" -msgstr[1] "" +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "túlélő hátizsák" +msgstr[1] "túlélő hátizsák" -#. ~ Description for pair of CRIT leg guards +#. ~ Description for survivor backpack #: lang/json/ARMOR_from_json.py msgid "" -"Leg armor for those who fight. Simple design and durable material allows " -"for easy movement and the padding keeps the legs safe and warm in colder " -"conditions." +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." msgstr "" +"Egyedi készítésű hátizsák. Tartós és gondosan kialakított volta miatt a " +"lehető legtöbb dolog fér el benne." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT arm guards" -msgid_plural "pairs of CRIT arm guards" -msgstr[0] "" -msgstr[1] "" +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "túlélő hátizsák" +msgstr[1] "túlélő hátizsák" -#. ~ Description for pair of CRIT arm guards +#. ~ Description for survivor rucksack #: lang/json/ARMOR_from_json.py msgid "" -"A pair of arm guards made from superalloy molded upon neoprene, and then " -"insulated with rubber. They are sturdy and will block attacks, but they are" -" ridiculously heavy." +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" +"Egyedi készítésű nehéz hátizsák. Tartós és gondosan kialakított volta miatt " +"a lehető legtöbb dolog fér el benne." #: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "túlélő futótáska" +msgstr[1] "túlélő futótáska" -#. ~ Description for CRIT web belt +#. ~ Description for survivor runner pack #: lang/json/ARMOR_from_json.py msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." msgstr "" +"Egyedi készítésű, könnyű futótáska. Tartós és gondosan kialakított volta " +"miatt a lehető legtöbb dolog fér el benne." #: lang/json/ARMOR_from_json.py -msgid "CRIT infantry duster" -msgid_plural "CRIT infantry dusters" -msgstr[0] "" -msgstr[1] "" +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "túlélő tűzálló csizma" +msgstr[1] "túlélő tűzálló csizma" -#. ~ Description for CRIT infantry duster +#. ~ Description for pair of survivor fireboots #: lang/json/ARMOR_from_json.py msgid "" -"A thick full-length duster coat with rubber insulation. More than mildly " -"encumbering, but rather protective against any anti-infantry electrical " -"discharges from the robots. Has several pockets for storage." +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Armored Anomaly Suit" -msgid_plural "CRIT Armored Anomaly Suits" +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Armored Anomaly Suit +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "nehéz túlélő csizma" +msgstr[1] "nehéz túlélő csizma" + +#. ~ Description for pair of heavy survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A relatively simple suit of armor. A suit of woven composite fibers " -"combined with a cleansuit core and strategically placed segmented Kevlar " -"plates keep the suit light-weight and the one wearing it alive while " -"offering superb resistance to the elements and ambient radiation." +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT drop leg pouch" -msgid_plural "CRIT drop leg pouches" +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT drop leg pouch +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "nehéz túlélő kesztyű" +msgstr[1] "nehéz túlélő kesztyű" + +#. ~ Description for pair of heavy survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A set of pouches that can be worn on the thighs using buckled straps. This " -"variety is more compact and is favored by the C.R.I.T for its ease of use." +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Enforcer armor assembly" -msgid_plural "CRIT Enforcer armor assemblies" +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Enforcer armor assembly +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "túlélő tűzálló kesztyű" +msgstr[1] "túlélő tűzálló kesztyű" + +#. ~ Description for pair of survivor firegloves #: lang/json/ARMOR_from_json.py msgid "" -"A series of plates, guards and buckles which assemble into a suit of sturdy " -"body-armor which usually goes over other armor. Overlapping steel plates on" -" top of Kevlar plates cover vast expanses as the armor juts off in places so" -" it can deflect attacks. Built with the idea that comfort is less important" -" than safety, this heavy suit is difficult to move about in but highly " -"protective. Various adjustable connectors such as straps and clips hold it " -"together." +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT Enforcer docks" -msgid_plural "pairs of CRIT Enforcer docks" +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT Enforcer docks #: lang/json/ARMOR_from_json.py -msgid "" -"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " -"oversized feet which clamp down onto your own footwear keep your feet out of" -" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " -"designs, but they do seem to be worth using if you were to be in the middle " -"of a war zone." +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "túlélő tűzálló kapucni" +msgstr[1] "túlélő tűzálló kapucni" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Soldier Suit" -msgid_plural "CRIT Soldier Suits" +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Soldier Suit +#. ~ Description for XL survivor firehood #: lang/json/ARMOR_from_json.py msgid "" -"A suit of modern body-armor. Strategically placed superalloy plates keep " -"the suit's weight minimal while Kevlar plates other areas and a lining of " -"soft neoprene pads areas for extra comfort. Most importantly, this can be " -"worn comfortably under other armor." +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." msgstr "" +"Egyedi szabású kevlarral páncélozott, Kevlar-betétes kapucni, nagyon erős és" +" tartós. Muspelheimben készült." #: lang/json/ARMOR_from_json.py -msgid "CRIT Lone Wolf Series Armor" -msgid_plural "CRIT Lone Wolf Series Armors" -msgstr[0] "" -msgstr[1] "" +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "túlélő tűzálló páncél" +msgstr[1] "túlélő tűzálló páncél" -#. ~ Description for CRIT Lone Wolf Series Armor +#. ~ Description for survivor firesuit #: lang/json/ARMOR_from_json.py msgid "" -"A matte black suit of outdated and bulky looking plate armor fitted onto a " -"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " -"armor will definitely protect you from practically anything. Just make sure" -" you can actually walk with it on though." +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." msgstr "" +"Ezt a nehézsúlyú, házi barkácsolású páncélzatot egy szétvagdosott golyóálló " +"mellényből és egy megerősített, Nomex tűzálló anyagból készült kezeslábasból" +" fabrikálták. Védelmet nyújt a tűz és az elemek ellen." #: lang/json/ARMOR_from_json.py -msgid "CRIT blouse" -msgid_plural "CRIT blouses" +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT blouse +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "nehéz túlélő páncél" +msgstr[1] "nehéz túlélő páncél" + +#. ~ Description for heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue military jacket. Durable, lightweight, and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather " -"while a sleek design keeps it from being too flashy. A zipper at the back " -"and front allows for quick donning and doffing." +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." msgstr "" +"Ezt a nehéz, kézi barkácsolású páncélzatot egy szétvagdosott, megerősített " +"golyóálló mellényből és egy fémbetétes kezeslábasból fabrikálták. Védelmet " +"nyújt az elemek és sebesülések ellen." #: lang/json/ARMOR_from_json.py -msgid "CRIT trousers" -msgid_plural "CRIT trousers" +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for XL heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue cargo pants. Durable, lightweight and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather." +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" +"Ezt a masszív, nehéz, kézi barkácsolású páncélzatot egy szétvagdosott, " +"megerősített golyóálló mellényből és egy fémbetétes bőr kezeslábasból " +"fabrikálták. Védelmet nyújt az elemek és sebesülések ellen." #: lang/json/ARMOR_from_json.py -msgid "CRIT pants" -msgid_plural "CRIT pants" -msgstr[0] "" -msgstr[1] "" +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "könnyű túlélő testpáncél" +msgstr[1] "könnyű túlélő testpáncél" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for light survivor body armor #: lang/json/ARMOR_from_json.py msgid "" -"A pair of dress pants. A minimalist sleek design makes the pants " -"lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" -" moderately cold weather." +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." msgstr "" +"Kevlarból és szívós textilből készített könnyű és egyedi testpáncél. " +"Nagyrészt vízálló." #: lang/json/ARMOR_from_json.py -msgid "CRIT helmet liner" -msgid_plural "CRIT helmet liners" +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT helmet liner #: lang/json/ARMOR_from_json.py -msgid "A standard-issue helmet liner. Keeps the noggin warm." -msgstr "" +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "túlélő öv" +msgstr[1] "túlélő öv" +#. ~ Use action holster_prompt for survivor belt. #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT shoes" -msgid_plural "pairs of CRIT dress shoes" -msgstr[0] "" -msgstr[1] "" +msgid "Store item" +msgstr "" -#. ~ Description for pair of CRIT shoes +#. ~ Description for survivor belt #: lang/json/ARMOR_from_json.py -msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT rec gloves" -msgid_plural "pairs of CRIT rec gloves" -msgstr[0] "" -msgstr[1] "" +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "túlélő védőszemüveg" +msgstr[1] "túlélő védőszemüveg" -#. ~ Description for pair of CRIT rec gloves +#. ~ Description for survivor goggles #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " -"are made with cotton with a neoprene lining for grip-pads and warmth." +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." msgstr "" +"Egyedi készítésű, színes lencsékkel ellátott, páncélozott védőszemüveg. " +"Kényelmes és tartós, kiváló védelmet nyújt a környezeti veszélyek ellen." -#. ~ Description for CRIT web belt +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "túlélő heveder" +msgstr[1] "túlélő heveder" + +#. ~ Description for survivor harness #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue belt. Keeps your trousers up and your tools on your hip." +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." msgstr "" +"Egyedi készítésű, könnyű felépítésű heveder számos zsebbel és egy puskatartó" +" pánttal kisebb puskák vagy hasonló fegyverek számára. Tartós és " +"kifejezetten kényelmes viseletre szabott. Aktiváld egy fegyver elrakásához " +"illetve előrántásához." #: lang/json/ARMOR_from_json.py -msgid "CRIT rec duster" -msgid_plural "CRIT rec dusters" +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT rec duster +#. ~ Description for XL survivor harness #: lang/json/ARMOR_from_json.py msgid "" -"A waterproofed full-length duster coat. Made with neoprene, comfort and " -"functionality meet together to form a fancy but sleek contemporary design. " -"It has several pockets for storage." +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." msgstr "" +"Egyedi készítésű, könnyű felépítésű heveder számos zsebbel és egy puskatartó" +" pánttal kisebb puskák vagy hasonló fegyverek számára. Tartós és " +"kifejezetten a legnagyobb testek kényelmes viseletére szabott. Aktiváld a " +"fegyvered eltárolásához vagy előrántásához." #: lang/json/ARMOR_from_json.py -msgid "CRIT rec hat" -msgid_plural "CRIT rec hats" -msgstr[0] "" -msgstr[1] "" +msgid "sheet" +msgid_plural "sheets" +msgstr[0] "lepedő" +msgstr[1] "lepedő" -#. ~ Description for CRIT rec hat +#. ~ Description for sheet #: lang/json/ARMOR_from_json.py msgid "" -"Functionality meets fashion in this waterproofed CRIT standard issue rec " -"cover. Thick enough to provide warmth in colder weather, this hat shares " -"the same sleek design of most of C.R.I.T's gear." +"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" +" a bunch of rags." msgstr "" +"Nagy méretű textil lepedő. Használható függönynek vagy ágyneműnek, vagy akár" +" egy csomó ronggyá is szét lehet vagdosni." #: lang/json/ARMOR_from_json.py -msgid "plant fiber tunic" -msgid_plural "plant fiber tunics" -msgstr[0] "" -msgstr[1] "" +msgid "blanket" +msgid_plural "blankets" +msgstr[0] "paplan" +msgstr[1] "paplan" -#. ~ Description for plant fiber tunic +#. ~ Description for blanket +#: lang/json/ARMOR_from_json.py +msgid "Hiding under here will not protect you from the monsters." +msgstr "Ha bebújsz alá, akkor is megtalálnak a szörnyek." + +#: lang/json/ARMOR_from_json.py +msgid "down-filled blanket" +msgid_plural "down-filled blankets" +msgstr[0] "pihepaplan" +msgstr[1] "pihepaplan" + +#. ~ Description for down-filled blanket #: lang/json/ARMOR_from_json.py msgid "" -"A loose garment cobbled together from a collection of plant bundles and " -"wound together by makeshift cordage" +"Hiding under here will not protect you from the monsters, but it'll keep you" +" warm." msgstr "" +"Ha bebújsz alá, akkor is megtalálnak a szörnyek, de legalább nem fogsz " +"fázni." #: lang/json/ARMOR_from_json.py -msgid "plant fiber bracelet" -msgid_plural "plant fiber bracelets" +msgid "fur blanket" +msgid_plural "fur blankets" +msgstr[0] "szőrme takaró" +msgstr[1] "szőrme takaró" + +#. ~ Description for fur blanket +#: lang/json/ARMOR_from_json.py +msgid "A heavy fur blanket that covers most of your body." +msgstr "Ez a nehéz szőrme takaró a tested nagy részét befedi." + +#: lang/json/ARMOR_from_json.py +msgid "quilt" +msgid_plural "quilts" msgstr[0] "" msgstr[1] "" -#. ~ Description for plant fiber bracelet +#. ~ Description for quilt #: lang/json/ARMOR_from_json.py msgid "" -"A bracelet wound together by makeshift cordage. Has some cool looking " -"pebbles." +"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " +"cozy!" msgstr "" +"Nagy, kényelmes paplan vastag gyapjúból, háromszög mintázatú. Rendkívül " +"kényelmes!" #: lang/json/ARMOR_from_json.py -msgid "CRIT canteen" -msgid_plural "CRIT canteens" +msgid "patchwork quilt" +msgid_plural "patchwork quilts" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT canteen +#. ~ Description for patchwork quilt +#: lang/json/ARMOR_from_json.py +msgid "A huge, patchwork wool quilt. Very, very warm." +msgstr "Hatalmas, patchwork gyapjú paplan. Nagyon, nagyon meleg." + +#: lang/json/ARMOR_from_json.py +msgid "sleeping bag" +msgid_plural "sleeping bags" +msgstr[0] "hálózsák" +msgstr[1] "hálózsák" + +#. ~ Use action msg for sleeping bag. +#: lang/json/ARMOR_from_json.py +msgid "You roll up the sleeping bag, preparing it for transport." +msgstr "Feltekered a hálózsákot és így az már szállítható." + +#. ~ Description for sleeping bag #: lang/json/ARMOR_from_json.py msgid "" -"A durable steel canteen that can heat up food with built in atomic heating " -"elements." -msgstr "" +"A large sleeping bag that covers you head to toe. This one is medium " +"weight." +msgstr "Ez a nagyméretű hálózsák a fejed búbjáig betakar. Ez közepes súlyú." #: lang/json/ARMOR_from_json.py -msgid "salvaged new order armor" -msgid_plural "salvaged new order armors" -msgstr[0] "" -msgstr[1] "" +msgid "cestus" +msgid_plural "cestuses" +msgstr[0] "cestus" +msgstr[1] "cestus" -#. ~ Description for salvaged new order armor +#. ~ Description for cestus #: lang/json/ARMOR_from_json.py msgid "" -"A suit of armor belonging to a human-sized soldier of the New Order. Its " -"terribly damaged from some combination of the combat its seen, the process " -"needed to pry it off its wearer, and some sort of dead man's switch on the " -"elements that actually power the thing and make it easy to wear." +"A leather hand and arm wrap incorporating metal plates over the knuckles to " +"improve punching power and defence." msgstr "" +"Bőrből készült kéz- és karvédő, amely fémlemezekkel fedi be az öklödet, és " +"így javít az ütés erején, valamint a védelmen." #: lang/json/ARMOR_from_json.py -msgid "new order shield" -msgid_plural "new order shields" +msgid "pair of studded gloves" +msgid_plural "pairs of studded gloves" +msgstr[0] "szögekkel kivert kesztyű" +msgstr[1] "szögekkel kivert kesztyű" + +#. ~ Description for pair of studded gloves +#: lang/json/ARMOR_from_json.py +msgid "A pair of gloves with studded metal knuckles." +msgstr "Fémszögekkel kivert kesztyű." + +#: lang/json/ARMOR_from_json.py +msgid "impact knuckles" +msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for new order shield +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" -"A simple shield made of some sort of polycarbonates, used extensively by the" -" Vigilants, the gendarmerie of the New Order. Alongside their infamous " -"shock batons, this is an essential tool in 'keeping the peace'." +"A pair of thick steel plates covering your proximal phalange. They are " +"strapped to your hands with metal braces." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "new order battle shield" -msgid_plural "new order battle shields" +msgid "skewer knuckles" +msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for new order battle shield +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" -"A well forged shield made of steel, emblazoned with what appears to be a " -"highly stylized depiction of a sword piercing a star." +"A single sturdy spike protrudes 5cm from the back of your hand. They are " +"strapped to your hands with metal braces." msgstr "" -#. ~ Description for large quiver #: lang/json/ARMOR_from_json.py -msgid "" -"A large leather quiver trimmed with metal, worn on the back, that can hold " -"60 arrows. Historically used by horse archers, rather than foot archers, " -"but sometimes horses are a little hard to come by in this day and age. " -"Activate to store arrows." -msgstr "" +msgid "telescoping umbrella" +msgid_plural "telescoping umbrellas" +msgstr[0] "teleszkópos esernyő" +msgstr[1] "teleszkópos esernyő" -#. ~ Description for bra +#. ~ Description for telescoping umbrella #: lang/json/ARMOR_from_json.py msgid "" -"A simple bra. For protecting those bits you don't want creatures to look " -"at." +"A telescoping umbrella which collapses down for easy storage, useful for " +"keeping dry when wielded." msgstr "" +"Könnyű tároláshoz becsukható teleszkópos esernyő, kézben hordva szárazon " +"tart." #: lang/json/ARMOR_from_json.py -msgid "Ixythyug the Destroyer's soul" -msgid_plural "Ixythyug the Destroyer's souls" +msgid "bag of holding" +msgid_plural "bags of holding" msgstr[0] "" msgstr[1] "" -#. ~ Description for Ixythyug the Destroyer's soul +#. ~ Description for bag of holding #: lang/json/ARMOR_from_json.py -msgid "RIP AND TEAR" +msgid "" +"A sleek, unfathomably-complicated machine covered in dozens of blinking " +"lights, worn on the back by sturdy faux-leather straps. An electrode " +"dangles from the back, attaching to your forehead. How it operates without " +"annihilating spacetime isn't quite clear, but a localized portal allows " +"things to be stored in an extradimensional space." msgstr "" +"Elegáns, kifürkészhetetlenül bonyolult gép, amelyet tucatnyi villogó fény " +"borít, hátul erős műbőr hevederekkel. Egy elektróda lóg hátulról, és a " +"homlokodhoz kapcsolódik. Az, hogy hogyan működik a téridő-kontinuum " +"megsemmisítése nélkül még nem egészen világos, de egy lokalizált portál " +"lehetővé teszi a dolgok extradimenzionális térben történő tárolását." -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Force Shield" -msgid_plural "Force Shield" +#: lang/json/ARMOR_from_json.py +msgid "titanium vest" +msgid_plural "titanium vests" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for titanium vest #: lang/json/ARMOR_from_json.py msgid "" -"A shield of pure force that protects you from most types of physical damage." +"A lightweight armor vest made of pieces of titanium sewn together, with " +"cloth padding for comfort. Brittle against blunt force, but highly " +"resistant to cuts and corrosion." msgstr "" +"Több darab titánból összevart könnyű páncélzat, amelyet kényelmesen " +"textillel béleltek ki. A zúzó támadások ellen törékeny, a vágásoknak és a " +"korróziónak viszont nagyon jól ellenáll." -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Soul Burn" -msgid_plural "Soul Burns" +#: lang/json/ARMOR_from_json.py +msgid "sentinel-lx cloak" +msgid_plural "sentinel-lx cloaks" msgstr[0] "" msgstr[1] "" -#. ~ Description for Soul Burn +#. ~ Description for sentinel-lx cloak #: lang/json/ARMOR_from_json.py msgid "" -"A little of your soul has been burned away, leaving you in a weakened state." -" The soul heals quickly, so rest for now." +"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " +"unnatural shadow. Made from woven graphene, its lightweight and resistant, " +"but cannot be repaired" msgstr "" +"A legfeketébb fekete vantablack színű Sentinel-IX palást a válladról úgy " +"lóg, mint valami szilárd, természetellenes árnyék. A szőtt grafénból készült" +" palást könnyű és ellenálló, ám nem lehet megjavítani." #: lang/json/ARMOR_from_json.py -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" +msgid "XL jeans" +msgid_plural "pairs of XL jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for copper infusion bracelet -#. ~ Description for silver infusion bracelet +#. ~ Description for XL jeans #: lang/json/ARMOR_from_json.py -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 "" +msgid "A pair of XL blue jeans with two deep pockets." +msgstr "XL méretű kék farmernadrág két mély zsebbel." #: lang/json/ARMOR_from_json.py -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" +msgid "XL work pants" +msgid_plural "pairs of XL work pants" msgstr[0] "" msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "copper circlet" -msgid_plural "copper circlets" -msgstr[0] "" -msgstr[1] "" +msgid "A pair of XL blue work pants." +msgstr "Egy XL méretű kék munkahelyi nadrág." -#. ~ Description for copper circlet #: lang/json/ARMOR_from_json.py -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 "" +msgid "A pair of XL gray work pants." +msgstr "Egy XL-méretű szürke munkahelyi nadrág." #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin arm guards" -msgid_plural "pairs of demon chitin arm guards" +msgid "A pair of XL light-blue work pants." +msgstr "Egy XL-méretű világoskék munkahelyi nadrág." + +#: lang/json/ARMOR_from_json.py +msgid "XL work t-shirt" +msgid_plural "XL work t-shirts" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of demon chitin arm guards +#. ~ Description for XL work t-shirt #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of arm guards crafted from the carefully cleaned and pruned red " -"exoskeletons of demon spiders. Fire-resistant and very durable." -msgstr "" +msgid "A gray XL work t-shirt with a small front pocket." +msgstr "XL-méretű, szürke színű munkahelyi póló apró első zsebbel." #: lang/json/ARMOR_from_json.py -msgid "demon chitin armor" -msgid_plural "demon chitin armors" +msgid "An XL blue work t-shirt with a small front pocket." +msgstr "XL-méretű, kék színű munkahelyi póló apró első zsebbel." + +#: lang/json/ARMOR_from_json.py +msgid "An XL gray work t-shirt with a small front pocket." +msgstr "XL-méretű, szürke színű munkahelyi póló apró első zsebbel." + +#: lang/json/ARMOR_from_json.py +msgid "An XL light-blue work t-shirt with a small front pocket." +msgstr "XL-méretű, világoskék színű munkahelyi póló apró első zsebbel." + +#: lang/json/ARMOR_from_json.py +msgid "Uplifted SWAT armor" +msgid_plural "Uplifted SWAT armors" msgstr[0] "" msgstr[1] "" -#. ~ Description for demon chitin armor +#. ~ Description for Uplifted SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"Leg and body armor crafted from the carefully cleaned and pruned red " -"exoskeletons of demon spiders. Fire-resistant and very durable." +"An extra large suit of black bulletproof armor with lots of pockets. The " +"word SWAT is emblazoned across the back. Specifically designed for Uplifted" +" officers such as Mastodons." msgstr "" +"Extra nagyméretű, fekete golyóálló páncél rengeteg zsebbel. A hátán a " +"kommandósok SWAT felirata szerepel. Kifejezetten az upliftelt tisztek " +"számára készült, mint amilyenek a Mastodonok." #: lang/json/ARMOR_from_json.py -msgid "demon chitin helmet" -msgid_plural "demon chitin helmets" +msgid "empty XL ballistic vest" +msgid_plural "empty XL ballistic vests" msgstr[0] "" msgstr[1] "" -#. ~ Description for demon chitin helmet +#. ~ Description for empty XL ballistic vest #: lang/json/ARMOR_from_json.py msgid "" -"A helmet crafted from the carefully cleaned and pruned red exoskeletons of " -"demon spiders. Covers the entire head; fire-resistant and very durable." +"Oversized ballistic armor without any armor inserts. The soft armor plate " +"carrier is still protective but it won't stop high energy projectiles." msgstr "" +"Túlméretes ballisztikus páncél, páncélbetétek nélkül. A páncélbetétek " +"zsebei valami védelmet ugyan így is nyújtanak, de nem képesek nagy energiájú" +" lövedékeket megállítani." #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin gauntlets" -msgid_plural "pairs of demon chitin gauntlets" +msgid "XL ESAPI ballistic vest" +msgid_plural "XL ESAPI ballistic vests" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of demon chitin gauntlets +#. ~ Description for XL ESAPI ballistic vest #: lang/json/ARMOR_from_json.py -msgid "" -"Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " -"demon spiders. Fire-resistant and very durable." -msgstr "" +msgid "Oversized ballistic armor with ESAPI ceramic armor plates." +msgstr "Túlméretes, ESAPI kerámia páncéllemezekkel ellátott lövészmellény." #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin boots" -msgid_plural "pairs of demon chitin boots" +msgid "pair of XL combat boots" +msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of demon chitin boots +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py -msgid "" -"Boots crafted from carefully cleaned and pruned red exoskeletons of demon " -"spiders. Fire-resistant and very durable." +msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" +"Modern, túlméretes, megerősített taktikai harci csizma. Nagyon tartós." #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonscale boots" -msgid_plural "pairs of black dragonscale boots" +msgid "pair of XL tactical gloves" +msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of black dragonscale boots +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" -"Boots made of black incredibly durable dragonscale. Very protective, and " -"surprisingly light." +"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " +"police and military units." msgstr "" +"Egy pár túlméretes, kevlarral megerősített taktikai kesztyű. Gyakran " +"rendőrségi és katonai egységek használják." #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonhide boots" -msgid_plural "pairs of black dragonhide boots" +msgid "pair of Killophant gloves" +msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of black dragonhide boots +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" -"Boots made of very durable black dragonhide. Very protective, and " -"surprisingly light." +"A pair of reinforced Kevlar tactical gloves, specifically designed to " +"accommodate three-fingered Killophants. Thinner than regular oversized " +"tactical gloves." msgstr "" +"Egy pár kevlarral megerősített taktikai kesztyű, amelyet kifejezetten a " +"háromujjas Killophantok számára terveztek. A szokásos túlméretes taktikai " +"kesztyűnél vékonyabb." #: lang/json/ARMOR_from_json.py -msgid "black dragonscale helmet" -msgid_plural "black dragonscale helmets" +msgid "XL leather belt" +msgid_plural "XL leather belts" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for black dragonscale helmet. -#. ~ Use action msg for XL black dragonscale helmet. -#. ~ Use action msg for riot helmet. -#. ~ Use action msg for motorcycle helmet. -#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py -msgid "You raise your visor." -msgstr "Felnyitod a sisak plexijét." - -#. ~ Description for black dragonscale helmet +#. ~ Description for XL leather belt #: lang/json/ARMOR_from_json.py msgid "" -"A helmet made from black incredibly durable dragonscale, held together with " -"black dragonhide. It comes equipped with a full face visor with only a thin" -" slit to see out of. Activate to raise the visor." +"An XL leather belt. Useful for making your pair of pants fit if you need " +"really big pants." msgstr "" +"Egy XL méretű bőröv. Jó arra, hogy ne essen le a gatyád, főleg, ha ekkor " +"gatya kell neked." #: lang/json/ARMOR_from_json.py -msgid "black dragonscale helmet (raised visor)" -msgid_plural "black dragonscale helmets (raised visor)" +msgid "XL police duty belt" +msgid_plural "XL police duty belts" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for black dragonscale helmet (raised visor). -#. ~ Use action msg for XL black dragonscale helmet (raised visor). -#. ~ Use action msg for riot helmet (raised visor). -#. ~ Use action msg for motorcycle helmet (raised visor). -#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py -msgid "You put down your visor." -msgstr "Lecsukod a plexit." - -#. ~ Description for black dragonscale helmet (raised visor) +#. ~ Description for XL police duty belt #: lang/json/ARMOR_from_json.py msgid "" -"A helmet made from incredibly durable black dragonscale, held together with " -"black dragonhide. The visor is raised." +"An XL black leather belt used by extremely large uplifted police officers. " +"It has several pouches and a holder for a baton." msgstr "" +"XL méretű fekete bőröv, amelyet a rendkívül nagyméretű, upliftelt rendőrök " +"használnak. Több tasakja van, meg egy csatológyűrű a gumibothoz." #: lang/json/ARMOR_from_json.py -msgid "black dragonhide helmet" -msgid_plural "black dragonhide helmets" +msgid "XL tactical full helmet" +msgid_plural "XL tactical full helmets" msgstr[0] "" msgstr[1] "" -#. ~ Description for black dragonhide helmet +#. ~ Description for XL tactical full helmet #: lang/json/ARMOR_from_json.py msgid "" -"A helmet made from very durable black dragonhide. It protects your head " -"well, but doesn't cover your face." +"An all-encompassing massive black helmet that covers your entire face and " +"neck, providing excellent protection from all sorts of damage." msgstr "" +"Az egész arcodat és a nyakat is betakaró hatalmas taktikai sisak, kiváló " +"védelmet nyújt mindenféle sebesülés ellen." #: lang/json/ARMOR_from_json.py -msgid "black dragonscale armor" -msgid_plural "black dragonscale armors" +msgid "XL leg ammo pouch" +msgid_plural "XL leg ammo pouches" msgstr[0] "" msgstr[1] "" -#. ~ Description for black dragonscale armor +#. ~ Description for XL leg ammo pouch #: lang/json/ARMOR_from_json.py msgid "" -"A full suit of incredibly durable 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." +"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" +" two magazines close at hand." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonhide armor" -msgid_plural "black dragonhide armors" +msgid "crew jumpsuit" +msgid_plural "crew jumpsuits" msgstr[0] "" msgstr[1] "" -#. ~ Description for black dragonhide armor +#. ~ Description for crew jumpsuit #: lang/json/ARMOR_from_json.py msgid "" -"A full suit of very durable 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." +"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " +"some freight hauling association or another. This one is a standard design " +"favored by spacers, with ample, easy access pockets." msgstr "" +"Könnyű szövet overall, amelyet valamelyik árufuvarozó egyesület elhalványult" +" vállalati címere díszít. Ez az űhajósok azért kedvelik mert sok, könnyen " +"hozzáférhető zsebbel rendelkezik." #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonscale gauntlets" -msgid_plural "pairs of black dragonscale gauntlets" +msgid "communications cap" +msgid_plural "communications caps" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of black dragonscale gauntlets +#. ~ Description for communications cap #: lang/json/ARMOR_from_json.py msgid "" -"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " -"that covers your hands." +"A padded cotton cap built around an augmented reality headset. During " +"normal operation it would provide visual information about a ship subsystems" +" and a communications link with the rest of the crew, but severed from a " +"spaceship, only their hearing protection function retains any utility." msgstr "" +"Párnázott pamut sisak, egy kibővített valóság sisak köré építettek. Normál " +"üzem közben vizuális információkkal szolgál a hajó alrendszereiről, illetve " +"kommunikál a legénység többi tagjával, de így, az űrhajótól elszakítva csak " +"a hallásvédelmi funkciója miatt lehet esetleg hasznos." #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonhide gloves" -msgid_plural "pairs of black dragonhide gloves" +msgid "HERC rig" +msgid_plural "HERC rigs" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of black dragonhide gloves +#. ~ Description for HERC rig #: lang/json/ARMOR_from_json.py msgid "" -"A pair of gloves made of very durable black dragonhide, modified to be easy " -"to wear while providing maximum protection under extreme conditions." +"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " +"about in zero-g, Mars, the bottom of the Pacific, or other generally " +"inhospitable environments. It has several deep pockets, and two mounting " +"points for pressurized canisters or other large magazines." msgstr "" +"Könnyű, acéllal erősített szerszámtartó. Nulla g, marsi vagy csendes-óceáni" +" fenék környezetben is biztonságban tartja a szerszámaidat. Több mély " +"zsebbel és két rögzítési ponttal rendelkezik, ahova a túlnyomásos " +"kanisztereket, vagy egyéb más nagyméreű lőszertárat lehet felcsatolni." #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonscale boots" -msgid_plural "pairs of XL black dragonscale boots" +msgid "cecalia wetsuit" +msgid_plural "cecalia wetsuits" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of XL black dragonscale boots +#. ~ Description for cecalia wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"Massive boots made of incredibly durable black dragonscale, modified to fit " -"even the strangest of bodies. Very protective, and surprisingly light." +"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " +"explorer suit with no head or tentacle protection." msgstr "" +"A Cecalia néven ismert poplipalpú uplifteltek számára tervezett búvárruha. " +"Ez a fej- vagy csápvédelem nélküli felfedező buvárruha." #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonhide boots" -msgid_plural "pairs of XL black dragonhide boots" +msgid "combat wetsuit" +msgid_plural "combat wetsuits" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of XL black dragonhide boots +#. ~ Description for combat wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"Massive boots made of very durable black dragonhide, modified to fit even " -"the strangest of bodies. Very protective, and surprisingly light." +"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " +"will provide some level of protection for deep dwellers." msgstr "" +"A Cecalia búvárruha harci változata; neoprénből és kevlárból készül, " +"bizonyos szintű védelmet nyújt a mélyben lakók számára." #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonscale gauntlets" -msgid_plural "pairs of XL black dragonscale gauntlets" +msgid "nanomesh vest" +msgid_plural "nanomesh vests" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of XL black dragonscale gauntlets +#. ~ Description for nanomesh vest #: lang/json/ARMOR_from_json.py msgid "" -"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " -"that covers your hands, or whatever you use as hands." +"A lightweight nanomesh vest designed to face down many of the perils of " +"space travel. These vests are mass produced and often stacked in starship " +"lockers." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonhide gloves" -msgid_plural "pairs of XL black dragonhide gloves" +msgid "vacuum cast cuirass" +msgid_plural "vacuum cast cuirasses" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of XL black dragonhide gloves +#. ~ Description for vacuum cast cuirass #: lang/json/ARMOR_from_json.py msgid "" -"A pair of gloves made of very durable black dragonhide, modified to be easy " -"to wear while providing maximum protection under extreme conditions. Sized " -"to fit even the strangest of anatomy." +"This piece of armor harkens back to renaissance designs. It differs in that" +" it is cast as a single piece in deep space installations where conditions " +"can be controlled absolutely." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale helmet" -msgid_plural "XL black dragonscale helmets" +msgid "carbide raider's helmet" +msgid_plural "carbide raider's helmets" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL black dragonscale helmet +#. ~ Description for carbide raider's helmet #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from incredibly durable black dragonscale, held " -"together with black dragonhide. It comes equipped with a full face visor " -"you can raise and is large enough to fit even the strangest of heads." +"This helmet is designed for the individual that is worried about catching " +"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " +"environmental protection features, but it just might stop even the largest " +"of ballistic rounds." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale helmet (raised visor)" -msgid_plural "XL black dragonscale helmets (raised visor)" +msgid "UICAS Point of Impact helmet" +msgid_plural "UICAS Point of Impact helmets" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL black dragonscale helmet (raised visor) +#. ~ Description for UICAS Point of Impact helmet #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from incredibly durable black dragonscale, held " -"together with black dragonhide. It is large enough to fit even the " -"strangest of heads. The visor is raised" +"A lightweight black helmet that provides excellent protection from all sorts" +" of damage, unless it's airborne. UICAS makes the point of designing all " +"headgear whenever possible with clear faceplates, in order to provide a " +"human touch to all interactions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonhide helmet" -msgid_plural "XL black dragonhide helmets" +msgid "cold resistance cream" +msgid_plural "cold resistance creams" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL black dragonhide helmet +#. ~ Description for cold resistance cream #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from very durable black dragonhide. It protects your " -"head well, and doesn't cover your face, but is large enough to fit even the " -"strangest of heads." +"A thick layer of something that smells worse than walrus fat. But it keeps " +"you warm." msgstr "" +"Vastag réteg valami, aminek rosszabb a szaga, mint a rozmárzsírnak. De " +"legalább melegen tart." #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale armor" -msgid_plural "XL black dragonscale armors" +msgid "heat retention xtreme cream" +msgid_plural "heat retention xtreme creams" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL black dragonscale armor +#. ~ Description for heat retention xtreme cream #: lang/json/ARMOR_from_json.py msgid "" -"A massive full suit of incredibly durable 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." +"The last word in cold snap protection designed to give short term protection" +" in the event of a suit breach in vacuum." msgstr "" +"A hidegvédelem legjobb krémje rövid távú védelemre lett kialakítva, de akár " +"a vákumban bekövetkezett szkafanderszakadásnál is megvéd." #: lang/json/ARMOR_from_json.py -msgid "XL black dragonhide armor" -msgid_plural "XL black dragonhide armors" +msgid "titanium watch" +msgid_plural "titanium watches" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL black dragonhide armor +#. ~ Description for titanium watch #: lang/json/ARMOR_from_json.py msgid "" -"A massive full suit of very durable black dragonhide armor. It comes with " -"all the accoutrements that cover your torso, legs, and arms; sized to fit " -"even the strangest of bodies." +"A thick, masculine watch made out of titanium. It is durable, light-weight " +"and water-resistant, an excellent watch to have in a hostile environment." msgstr "" +"Titánból készült vastag, férfias óra. Tartós, könnyű és vízálló, kiváló óra" +" a barátságtalan környezetbe." #: lang/json/ARMOR_from_json.py -msgid "dragonhide backpack" -msgid_plural "dragonhide backpacks" +msgid "titanium ring" +msgid_plural "titanium rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for dragonhide backpack +#. ~ Description for titanium ring #: lang/json/ARMOR_from_json.py msgid "" -"A custom-built backpack. Made of very durable dragon leather and carefully " -"crafted to hold as much stuff as possible." +"A thick, masculine ring made out of titanium. Made in a variety of styles " +"and finishes, they're valued for their durability." msgstr "" +"Titánból készült vastag, férfias gyűrű. Különböző stílusokban és kivitelben" +" készült, tartósságuk miatt nagyra tartják." #: lang/json/ARMOR_from_json.py -msgid "XL dragonhide backpack" -msgid_plural "XL dragonhide backpacks" +msgid "hazardous environment suit" +msgid_plural "hazardous environment suits" msgstr[0] "" msgstr[1] "" +#. ~ Description for hazardous environment suit #: lang/json/ARMOR_from_json.py -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" -msgstr[1] "" +msgid "" +"Developed for the exploration of alien planes, the lightweight, orange-black" +" HEV suit covers everything below the neck. While it possesses only modest " +"physical protection, it provides excellent protection from most " +"environmental hazards. A hatch in the front opens to provide a small amount" +" of storage." +msgstr "" +"Az idegen bolygók felfedezéséhez készített könnyed, naracssárga-fekete " +"szennyezésvédelmi szkafander a nyak alatt mindent befed. Bár a sérüléstől " +"csak minimális mértékben véd, a környezeti veszélyek nagy része ellen " +"hatékony. Az elején egy kis kinyitható ajtó mögött egy apró tárolórekesz " +"található." #: lang/json/ARMOR_from_json.py -msgid "belt of haste" -msgid_plural "belts of haste" +msgid "psychrophile handling gloves" +msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py -msgid "wizard hat" -msgid_plural "wizard hats" +msgid "" +"These gloves are designed for handling organisms that live in extremely cold" +" temperatures. They can also be used to freeze your foes to death." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Engineering Suit" +msgid_plural "CRIT Engineering Suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for wizard hat +#. ~ Description for CRIT Engineering Suit #: lang/json/ARMOR_from_json.py msgid "" -"A blue pointed hat with stars stitched into it. Wearing it increases your " -"maximum mana." +"An airtight, flexible suit of woven composite fibers complete with segmented" +" plates of armor. A complex system digitizes items in an individual pocket " +"universe for storage while built in joint-torsion ratchets generate the " +"necessary energy required to power the interface." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Cloak of Morthylla the Lamia" -msgid_plural "Cloaks of Morthylla the Lamia" +msgid "CRIT face mask" +msgid_plural "CRIT face masks" msgstr[0] "" msgstr[1] "" -#. ~ Description for Cloak of Morthylla the Lamia +#. ~ Description for CRIT face mask #: lang/json/ARMOR_from_json.py msgid "" -"This cloak seems to absorb light except for the pinpricks of stars that move" -" across its surface." +"A standard issue face mask, lined with Kevlar for extra protection. A few " +"filters provide decent environmental safety, but it was not intended for " +"extended use. It has a basic integrated HUD." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of wolfshead cufflinks" -msgid_plural "pairs of wolfshead cufflinks" +msgid "pair of CRIT boots" +msgid_plural "pairs of CRIT boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of wolfshead cufflinks +#. ~ Description for pair of CRIT boots #: lang/json/ARMOR_from_json.py msgid "" -"A pair of silver cufflinks with a wolf's head engraved into them. Each " -"cufflink has a bright ruby eye and pearl teeth. They appear to be growling." -" There is an inscription, 'When the moon shines. I become alive.'" +"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " +"hygienic during long-term missions while absorbing shock and heat from " +"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " +"protection as well. Decently heavy though" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" +msgid "pair of CRIT LA boots" +msgid_plural "pairs of CRIT LA boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for technomancer's toolbelt +#. ~ Description for pair of CRIT LA boots #: lang/json/ARMOR_from_json.py msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " +"variant was created for missions in warmer climates. The LA boots keep most" +" of the old features of the standard issue boots but trade in protection for" +" easier movement." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +msgid "pair of CRIT fingertip-less gloves" +msgid_plural "pairs of CRIT fingertip-less gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for seven league boots -#. ~ Description for boots of haste +#. ~ Description for pair of CRIT fingertip-less gloves #: lang/json/ARMOR_from_json.py 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 pair of standard-issue gloves. Made with superalloy mesh for those with " +"gene-modding and/or mutations while still allowing greater manipulation of " +"items and moderate protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +msgid "pair of CRIT fingertip-less liners" +msgid_plural "pairs of CRIT fingertip-less liners" msgstr[0] "" msgstr[1] "" +#. ~ Description for pair of CRIT fingertip-less liners #: lang/json/ARMOR_from_json.py -msgid "freerunner's boots" -msgid_plural "freerunner's boots" +msgid "" +"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " +"for warmth and fingertip-less for those with gene-modding and/or mutations " +"while still allowing greater manipulation of items and moderate protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT backpack" +msgid_plural "CRIT backpacks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for CRIT backpack #: lang/json/ARMOR_from_json.py msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, seeming a bit more flexible and breathable than typical for their " -"materials. The enchantment they bear helps guide their wearer in their " -"motions, to make movement around and over obstacles much more fluid and " -"efficient." +"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " +"pack strikes a fine balance between storage space and encumbrance and allows" +" a larger weapon to be holstered, drawing and holstering is still rather " +"awkward even with the magnetized clips, but practice helps." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +msgid "CRIT chestrig" +msgid_plural "CRIT chestrigs" msgstr[0] "" msgstr[1] "" -#. ~ Description for boots of grounding +#. ~ Description for CRIT chestrig #: lang/json/ARMOR_from_json.py 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 slightly modified chestrig, has mesh and MOLLE loops for gear and slots " +"with light-armor padding." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Fish" -msgid_plural "Wildshape Cloaks: Fish" +msgid "pair of CRIT leg guards" +msgid_plural "pairs of CRIT leg guards" msgstr[0] "" msgstr[1] "" -#. ~ Description for Wildshape Cloak: Fish +#. ~ Description for pair of CRIT leg guards #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that shimmers like fresh water under a warm sun. It can be " -"worn to morph your body to a form that is excellent for swimming, but ill-" -"suited for combat." +"Leg armor for those who fight. Simple design and durable material allows " +"for easy movement and the padding keeps the legs safe and warm in colder " +"conditions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Bear" -msgid_plural "Wildshape Cloak: Bears" +msgid "pair of CRIT arm guards" +msgid_plural "pairs of CRIT arm guards" msgstr[0] "" msgstr[1] "" -#. ~ Description for Wildshape Cloak: Bear +#. ~ Description for pair of CRIT arm guards #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that smells of the forest. It can be worn to morph your " -"body to a form that is strong and resilient in melee combat. However, you " -"feel as if you would lose a part of yourself." +"A pair of arm guards made from superalloy molded upon neoprene, and then " +"insulated with rubber. They are sturdy and will block attacks, but they are" +" ridiculously heavy." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Deer" -msgid_plural "Wildshape Cloak: Deers" +msgid "CRIT infantry duster" +msgid_plural "CRIT infantry dusters" msgstr[0] "" msgstr[1] "" -#. ~ Description for Wildshape Cloak: Deer +#. ~ Description for CRIT infantry duster #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that feels soft to the touch. It can be worn to morph your " -"body to a form well-suited to escaping difficult situations. However, it " -"places a great strain on your body." +"A thick full-length duster coat with rubber insulation. More than mildly " +"encumbering, but rather protective against any anti-infantry electrical " +"discharges from the robots. Has several pockets for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "enchanted parabolan wool blouse" -msgid_plural "enchanted parabolan wool blouse" +msgid "CRIT Armored Anomaly Suit" +msgid_plural "CRIT Armored Anomaly Suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for CRIT Armored Anomaly Suit #: lang/json/ARMOR_from_json.py msgid "" -"A loose iridescent blouse in a style most often associated with pirates and " -"renfaires. It shimmers as you look at it. Made of parabolan wool, it " -"sometimes dimly shows reflections of things here and not. This particular " -"one has piratical flairs and glitters with enchantment." +"A relatively simple suit of armor. A suit of woven composite fibers " +"combined with a cleansuit core and strategically placed segmented Kevlar " +"plates keep the suit light-weight and the one wearing it alive while " +"offering superb resistance to the elements and ambient radiation." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "enchanted parabolan wool breeches" -msgid_plural "enchanted parabolan wool breeches" +msgid "CRIT drop leg pouch" +msgid_plural "CRIT drop leg pouches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for CRIT drop leg pouch #: lang/json/ARMOR_from_json.py msgid "" -"A well-made pair of old-fashioned pants, made of iridescent material. " -"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " -"parabolan wool, it sometimes dimly shows reflections of things here and not." -" This particular one has piratical flairs and gliters with enchantment." +"A set of pouches that can be worn on the thighs using buckled straps. This " +"variety is more compact and is favored by the C.R.I.T for its ease of use." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "parabolan wool blouse" -msgid_plural "parabolan wool blouses" +msgid "CRIT Enforcer armor assembly" +msgid_plural "CRIT Enforcer armor assemblies" msgstr[0] "" msgstr[1] "" -#. ~ Description for parabolan wool blouse +#. ~ Description for CRIT Enforcer armor assembly #: lang/json/ARMOR_from_json.py msgid "" -"A loose iridescent blouse in a style most often associated with pirates and " -"renfaires. It shimmers as you look at it. Made of parabolan wool, it " -"sometimes dimly shows reflections of things here and not." +"A series of plates, guards and buckles which assemble into a suit of sturdy " +"body-armor which usually goes over other armor. Overlapping steel plates on" +" top of Kevlar plates cover vast expanses as the armor juts off in places so" +" it can deflect attacks. Built with the idea that comfort is less important" +" than safety, this heavy suit is difficult to move about in but highly " +"protective. Various adjustable connectors such as straps and clips hold it " +"together." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "parabolan wool breeches" -msgid_plural "parabolan wool breeches" +msgid "pair of CRIT Enforcer docks" +msgid_plural "pairs of CRIT Enforcer docks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for pair of CRIT Enforcer docks #: lang/json/ARMOR_from_json.py msgid "" -"A well-made pair of old-fashioned pants, made of iridescent material. " +"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " +"oversized feet which clamp down onto your own footwear keep your feet out of" +" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " +"designs, but they do seem to be worth using if you were to be in the middle " +"of a war zone." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Soldier Suit" +msgid_plural "CRIT Soldier Suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Soldier Suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A suit of modern body-armor. Strategically placed superalloy plates keep " +"the suit's weight minimal while Kevlar plates other areas and a lining of " +"soft neoprene pads areas for extra comfort. Most importantly, this can be " +"worn comfortably under other armor." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Lone Wolf Series Armor" +msgid_plural "CRIT Lone Wolf Series Armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Lone Wolf Series Armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A matte black suit of outdated and bulky looking plate armor fitted onto a " +"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " +"armor will definitely protect you from practically anything. Just make sure" +" you can actually walk with it on though." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT blouse" +msgid_plural "CRIT blouses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT blouse +#: lang/json/ARMOR_from_json.py +msgid "" +"A standard-issue military jacket. Durable, lightweight, and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather " +"while a sleek design keeps it from being too flashy. A zipper at the back " +"and front allows for quick donning and doffing." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT trousers" +msgid_plural "CRIT trousers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT trousers +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue cargo pants. Durable, lightweight and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT pants" +msgid_plural "CRIT pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of dress pants. A minimalist sleek design makes the pants " +"lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" +" moderately cold weather." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT helmet liner" +msgid_plural "CRIT helmet liners" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT helmet liner +#: lang/json/ARMOR_from_json.py +msgid "A standard-issue helmet liner. Keeps the noggin warm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT shoes" +msgid_plural "pairs of CRIT dress shoes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT shoes +#: lang/json/ARMOR_from_json.py +msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT rec gloves" +msgid_plural "pairs of CRIT rec gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT rec gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " +"are made with cotton with a neoprene lining for grip-pads and warmth." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT web belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A standard-issue belt. Keeps your trousers up and your tools on your hip." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT rec duster" +msgid_plural "CRIT rec dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT rec duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A waterproofed full-length duster coat. Made with neoprene, comfort and " +"functionality meet together to form a fancy but sleek contemporary design. " +"It has several pockets for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT rec hat" +msgid_plural "CRIT rec hats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT rec hat +#: lang/json/ARMOR_from_json.py +msgid "" +"Functionality meets fashion in this waterproofed CRIT standard issue rec " +"cover. Thick enough to provide warmth in colder weather, this hat shares " +"the same sleek design of most of C.R.I.T's gear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "plant fiber tunic" +msgid_plural "plant fiber tunics" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for plant fiber tunic +#: lang/json/ARMOR_from_json.py +msgid "" +"A loose garment cobbled together from a collection of plant bundles and " +"wound together by makeshift cordage" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "plant fiber bracelet" +msgid_plural "plant fiber bracelets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for plant fiber bracelet +#: lang/json/ARMOR_from_json.py +msgid "" +"A bracelet wound together by makeshift cordage. Has some cool looking " +"pebbles." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT canteen" +msgid_plural "CRIT canteens" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT canteen +#: lang/json/ARMOR_from_json.py +msgid "" +"A durable steel canteen that can heat up food with built in atomic heating " +"elements." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "salvaged new order armor" +msgid_plural "salvaged new order armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for salvaged new order armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A suit of armor belonging to a human-sized soldier of the New Order. Its " +"terribly damaged from some combination of the combat its seen, the process " +"needed to pry it off its wearer, and some sort of dead man's switch on the " +"elements that actually power the thing and make it easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "new order shield" +msgid_plural "new order shields" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for new order shield +#: lang/json/ARMOR_from_json.py +msgid "" +"A simple shield made of some sort of polycarbonates, used extensively by the" +" Vigilants, the gendarmerie of the New Order. Alongside their infamous " +"shock batons, this is an essential tool in 'keeping the peace'." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "new order battle shield" +msgid_plural "new order battle shields" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for new order battle shield +#: lang/json/ARMOR_from_json.py +msgid "" +"A well forged shield made of steel, emblazoned with what appears to be a " +"highly stylized depiction of a sword piercing a star." +msgstr "" + +#. ~ Description for large quiver +#: lang/json/ARMOR_from_json.py +msgid "" +"A large leather quiver trimmed with metal, worn on the back, that can hold " +"60 arrows. Historically used by horse archers, rather than foot archers, " +"but sometimes horses are a little hard to come by in this day and age. " +"Activate to store arrows." +msgstr "" + +#. ~ Description for bra +#: lang/json/ARMOR_from_json.py +msgid "" +"A simple bra. For protecting those bits you don't want creatures to look " +"at." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Ixythyug the Destroyer's soul" +msgid_plural "Ixythyug the Destroyer's souls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Ixythyug the Destroyer's soul +#: lang/json/ARMOR_from_json.py +msgid "RIP AND TEAR" +msgstr "" + +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Force Shield" +msgid_plural "Force Shield" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Force Shield +#: lang/json/ARMOR_from_json.py +msgid "" +"A shield of pure force that protects you from most types of physical damage." +msgstr "" + +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Soul Burn" +msgid_plural "Soul Burns" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Soul Burn +#: lang/json/ARMOR_from_json.py +msgid "" +"A little of your soul has been burned away, leaving you in a weakened state." +" The soul heals quickly, so rest for now." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for copper infusion bracelet +#. ~ Description for silver infusion bracelet +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "copper circlet" +msgid_plural "copper circlets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for copper circlet +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin arm guards" +msgid_plural "pairs of demon chitin arm guards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of demon chitin arm guards +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of arm guards crafted from the carefully cleaned and pruned red " +"exoskeletons of demon spiders. Fire-resistant and very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "demon chitin armor" +msgid_plural "demon chitin armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for demon chitin armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Leg and body armor crafted from the carefully cleaned and pruned red " +"exoskeletons of demon spiders. Fire-resistant and very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "demon chitin helmet" +msgid_plural "demon chitin helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for demon chitin helmet +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin gauntlets" +msgid_plural "pairs of demon chitin gauntlets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of demon chitin gauntlets +#: lang/json/ARMOR_from_json.py +msgid "" +"Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " +"demon spiders. Fire-resistant and very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin boots" +msgid_plural "pairs of demon chitin boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of demon chitin boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Boots crafted from carefully cleaned and pruned red exoskeletons of demon " +"spiders. Fire-resistant and very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonscale boots" +msgid_plural "pairs of black dragonscale boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of black dragonscale boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Boots made of black incredibly durable dragonscale. Very protective, and " +"surprisingly light." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonhide boots" +msgid_plural "pairs of black dragonhide boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of black dragonhide boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Boots made of very durable black dragonhide. Very protective, and " +"surprisingly light." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale helmet" +msgid_plural "black dragonscale helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action msg for black dragonscale helmet. +#. ~ Use action msg for XL black dragonscale helmet. +#. ~ Use action msg for riot helmet. +#. ~ Use action msg for motorcycle helmet. +#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py +msgid "You raise your visor." +msgstr "Felnyitod a sisak plexijét." + +#. ~ Description for black dragonscale helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A helmet made from black incredibly durable dragonscale, held together with " +"black dragonhide. It comes equipped with a full face visor with only a thin" +" slit to see out of. Activate to raise the visor." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale helmet (raised visor)" +msgid_plural "black dragonscale helmets (raised visor)" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action msg for black dragonscale helmet (raised visor). +#. ~ Use action msg for XL black dragonscale helmet (raised visor). +#. ~ Use action msg for riot helmet (raised visor). +#. ~ Use action msg for motorcycle helmet (raised visor). +#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py +msgid "You put down your visor." +msgstr "Lecsukod a plexit." + +#. ~ Description for black dragonscale helmet (raised visor) +#: lang/json/ARMOR_from_json.py +msgid "" +"A helmet made from incredibly durable black dragonscale, held together with " +"black dragonhide. The visor is raised." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonhide helmet" +msgid_plural "black dragonhide helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for black dragonhide helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A helmet made from very durable black dragonhide. It protects your head " +"well, but doesn't cover your face." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale armor" +msgid_plural "black dragonscale armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for black dragonscale armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A full suit of incredibly durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonhide armor" +msgid_plural "black dragonhide armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for black dragonhide armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A full suit of very durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonscale gauntlets" +msgid_plural "pairs of black dragonscale gauntlets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of black dragonscale gauntlets +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " +"that covers your hands." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonhide gloves" +msgid_plural "pairs of black dragonhide gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of black dragonhide gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of gloves made of very durable black dragonhide, modified to be easy " +"to wear while providing maximum protection under extreme conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonscale boots" +msgid_plural "pairs of XL black dragonscale boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL black dragonscale boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Massive boots made of incredibly durable black dragonscale, modified to fit " +"even the strangest of bodies. Very protective, and surprisingly light." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonhide boots" +msgid_plural "pairs of XL black dragonhide boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL black dragonhide boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Massive boots made of very durable black dragonhide, modified to fit even " +"the strangest of bodies. Very protective, and surprisingly light." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonscale gauntlets" +msgid_plural "pairs of XL black dragonscale gauntlets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL black dragonscale gauntlets +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " +"that covers your hands, or whatever you use as hands." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonhide gloves" +msgid_plural "pairs of XL black dragonhide gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL black dragonhide gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of gloves made of very durable black dragonhide, modified to be easy " +"to wear while providing maximum protection under extreme conditions. Sized " +"to fit even the strangest of anatomy." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale helmet" +msgid_plural "XL black dragonscale helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL black dragonscale helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive helmet made from incredibly durable black dragonscale, held " +"together with black dragonhide. It comes equipped with a full face visor " +"you can raise and is large enough to fit even the strangest of heads." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale helmet (raised visor)" +msgid_plural "XL black dragonscale helmets (raised visor)" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL black dragonscale helmet (raised visor) +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive helmet made from incredibly durable black dragonscale, held " +"together with black dragonhide. It is large enough to fit even the " +"strangest of heads. The visor is raised" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonhide helmet" +msgid_plural "XL black dragonhide helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL black dragonhide helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive helmet made from very durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale armor" +msgid_plural "XL black dragonscale armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL black dragonscale armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive full suit of incredibly durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonhide armor" +msgid_plural "XL black dragonhide armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL black dragonhide armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive full suit of very durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "dragonhide backpack" +msgid_plural "dragonhide backpacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for dragonhide backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Made of very durable dragon leather and carefully " +"crafted to hold as much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL dragonhide backpack" +msgid_plural "XL dragonhide backpacks" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "belt of strength +2" +msgid_plural "belts of strength +2" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "belt of haste" +msgid_plural "belts of haste" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for wizard hat +#: lang/json/ARMOR_from_json.py +msgid "" +"A blue pointed hat with stars stitched into it. Wearing it increases your " +"maximum mana." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Cloak of Morthylla the Lamia" +msgid_plural "Cloaks of Morthylla the Lamia" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Cloak of Morthylla the Lamia +#: lang/json/ARMOR_from_json.py +msgid "" +"This cloak seems to absorb light except for the pinpricks of stars that move" +" across its surface." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of wolfshead cufflinks" +msgid_plural "pairs of wolfshead cufflinks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of wolfshead cufflinks +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of silver cufflinks with a wolf's head engraved into them. Each " +"cufflink has a bright ruby eye and pearl teeth. They appear to be growling." +" There is an inscription, 'When the moon shines. I become alive.'" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for technomancer's toolbelt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for seven league boots +#. ~ Description for boots of haste +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "boots of haste" +msgid_plural "pairs of boots of haste" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "freerunner's boots" +msgid_plural "freerunner's boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for freerunner's boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, seeming a bit more flexible and breathable than typical for their " +"materials. The enchantment they bear helps guide their wearer in their " +"motions, to make movement around and over obstacles much more fluid and " +"efficient." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for boots of grounding +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Fish" +msgid_plural "Wildshape Cloaks: Fish" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Wildshape Cloak: Fish +#: lang/json/ARMOR_from_json.py +msgid "" +"A magical cloak that shimmers like fresh water under a warm sun. It can be " +"worn to morph your body to a form that is excellent for swimming, but ill-" +"suited for combat." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Bear" +msgid_plural "Wildshape Cloak: Bears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Wildshape Cloak: Bear +#: lang/json/ARMOR_from_json.py +msgid "" +"A magical cloak that smells of the forest. It can be worn to morph your " +"body to a form that is strong and resilient in melee combat. However, you " +"feel as if you would lose a part of yourself." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Deer" +msgid_plural "Wildshape Cloak: Deers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Wildshape Cloak: Deer +#: lang/json/ARMOR_from_json.py +msgid "" +"A magical cloak that feels soft to the touch. It can be worn to morph your " +"body to a form well-suited to escaping difficult situations. However, it " +"places a great strain on your body." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "enchanted parabolan wool blouse" +msgid_plural "enchanted parabolan wool blouse" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for enchanted parabolan wool blouse +#: lang/json/ARMOR_from_json.py +msgid "" +"A loose iridescent blouse in a style most often associated with pirates and " +"renfaires. It shimmers as you look at it. Made of parabolan wool, it " +"sometimes dimly shows reflections of things here and not. This particular " +"one has piratical flairs and glitters with enchantment." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "enchanted parabolan wool breeches" +msgid_plural "enchanted parabolan wool breeches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for enchanted parabolan wool breeches +#: lang/json/ARMOR_from_json.py +msgid "" +"A well-made pair of old-fashioned pants, made of iridescent material. " +"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " +"parabolan wool, it sometimes dimly shows reflections of things here and not." +" This particular one has piratical flairs and gliters with enchantment." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "parabolan wool blouse" +msgid_plural "parabolan wool blouses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for parabolan wool blouse +#: lang/json/ARMOR_from_json.py +msgid "" +"A loose iridescent blouse in a style most often associated with pirates and " +"renfaires. It shimmers as you look at it. Made of parabolan wool, it " +"sometimes dimly shows reflections of things here and not." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "parabolan wool breeches" +msgid_plural "parabolan wool breeches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for parabolan wool breeches +#: lang/json/ARMOR_from_json.py +msgid "" +"A well-made pair of old-fashioned pants, made of iridescent material. " "Comfortable, but lacks pockets. It shimmers as you look at it. Made of " "parabolan wool, it sometimes dimly shows reflections of things here and not." msgstr "" @@ -26047,7 +26059,7 @@ msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -26105,7 +26117,7 @@ msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -26116,7 +26128,7 @@ msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -26214,7 +26226,7 @@ msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -26225,7 +26237,7 @@ msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -26322,20 +26334,19 @@ msgstr "" "üldözőre gyanakszik." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "Kar ötvözetpáncélzat KBM" -msgstr[1] "Kar ötvözetpáncélzat KBM" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" -"A felhasználó karjain a húst egy kemény ötvözetből készült páncél váltotta " -"fel, ezzel jelentősen megnövelve a passzív védelmet. Bionikus " -"harcművészettel együtt is használható." #: lang/json/BIONIC_ITEM_from_json.py msgid "Protective Lenses CBM" @@ -26355,50 +26366,36 @@ msgstr "" "felhasználó sír, akkor a könnyeit ki kell köpni, vagy le kell nyelni." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" -msgstr[0] "Fej ötvözetpáncélzat KBM" -msgstr[1] "Fej ötvözetpáncélzat KBM" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" -"A felhasználó fején a húst egy kemény ötvözetből készült páncél váltotta " -"fel, ezzel jelentősen megnövelve fej és az állkapocs védelmét." - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" -msgstr[0] "Láb ötvözetpáncélzat KBM" -msgstr[1] "Láb ötvözetpáncélzat KBM" -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" -"A felhasználó lábain a húst egy kemény ötvözetből készült páncél váltotta " -"fel, ezzel jelentősen megnövelve a passzív védelmet. Bionikus " -"harcművészettel együtt is használható." +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" -msgstr[0] "Törzs ötvözetpáncélzat KBM" -msgstr[1] "Törzs ötvözetpáncélzat KBM" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" -"A felhasználó törzsén a húst egy kemény ötvözetből készült páncél váltotta " -"fel, amely így védetté vált a fizikai behatásokkal szemben." #: lang/json/BIONIC_ITEM_from_json.py msgid "Battery System CBM" @@ -27282,7 +27279,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "Energiatároló II KBM" msgstr[1] "Energiatároló II KBM" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -27809,7 +27806,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "Nyikorgó boka" msgstr[1] "Nyikorgó boka" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "Nyikorgó hangokat kiadó hibás bionika." @@ -28038,7 +28035,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "Önzáró hüvelykujjak" msgstr[1] "Önzáró hüvelykujjak" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "Hibás bionika, amitől egymáshoz záródnak a két kéz hüvelykujjai." @@ -29470,7 +29467,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "Halefnapló" msgstr[1] "Halefnapló" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -29746,7 +29743,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "rádió átjátszó tervei" msgstr[1] "rádió átjátszó tervei" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -29791,7 +29788,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -29806,7 +29803,7 @@ msgid_plural "schematics" msgstr[0] "tervrajz" msgstr[1] "tervrajz" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -29814,9 +29811,9 @@ msgstr[1] "tervrajz" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -29832,7 +29829,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "ápolóbot tervrajz" msgstr[1] "ápolóbot tervrajz" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -29851,7 +29848,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -29870,7 +29867,7 @@ msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -29888,7 +29885,7 @@ msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -29906,7 +29903,7 @@ msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -29924,7 +29921,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -29942,7 +29939,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -29960,7 +29957,7 @@ msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -29978,7 +29975,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -29996,7 +29993,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -30014,7 +30011,7 @@ msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -30029,7 +30026,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -30044,7 +30041,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -30062,7 +30059,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -30760,7 +30757,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "Az Aikido szelleme" msgstr[1] "Az Aikido szelleme" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "Az aikido összes fogását bemutató könyv." @@ -30771,7 +30768,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "Az ökölvívás gyakorlata" msgstr[1] "Az ökölvívás gyakorlata" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -30783,7 +30780,7 @@ msgid_plural "Capoeira 100" msgstr[0] "Capoeira 100" msgstr[1] "Capoeira 100" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "A capoeira összes fogását bemutató könyv." @@ -30794,7 +30791,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "A százlábú Feng Lu" msgstr[1] "A százlábú Feng Lu" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "A százlábú kung fu összes fogását bemutató könyv." @@ -30805,7 +30802,7 @@ msgid_plural "The Red Crane" msgstr[0] "A vörös daru" msgstr[1] "A vörös daru" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "A daru kung fu összes fogását bemutató könyv." @@ -30816,7 +30813,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "A jáde sárkány" msgstr[1] "A jáde sárkány" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "A sárkány kung fu összes fogását bemutató könyv." @@ -30827,7 +30824,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "Az eskrima a gyakorlatban" msgstr[1] "Az eskrima a gyakorlatban" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "Az eskrima összes fogását bemutató könyv." @@ -30838,7 +30835,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "A modern kardforgató" msgstr[1] "A modern kardforgató" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "A kardozás összes fogását bemutató könyv." @@ -30849,7 +30846,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "Kodokan dzsúdó" msgstr[1] "Kodokan dzsúdó" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "A dzsúdó összes fogását bemutató könyv." @@ -30860,7 +30857,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "Shotokan Karate kézikönyv" msgstr[1] "Shotokan Karate kézikönyv" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "A Shotokan Karate összes fogását bemutató könyv." @@ -30871,7 +30868,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "Teljes Krav maga" msgstr[1] "Teljes Krav maga" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "A Krav maga összes fogását bemutató könyv." @@ -30882,7 +30879,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "A süket leopárd" msgstr[1] "A süket leopárd" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "A leopárd kung fu összes fogását bemutató könyv." @@ -30893,7 +30890,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "A gyík Kuo Csui" msgstr[1] "A gyík Kuo Csui" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "A gyík kung fu összes fogását bemutató könyv." @@ -30904,7 +30901,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "Mindent a Muay Thairól" msgstr[1] "Mindent a Muay Thairól" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "A Muay Thai összes fogását bemutató könyv." @@ -30915,7 +30912,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "A nindzsicu esszenciája" msgstr[1] "A nindzsicu esszenciája" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "A nindzsicu összes fogását bemutató könyv." @@ -30926,7 +30923,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "Az öt gyűrű könyve" msgstr[1] "Az öt gyűrű könyve" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -30941,7 +30938,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "A modern pankrátor" msgstr[1] "A modern pankrátor" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "A pankráció összes fogását bemutató könyv." @@ -30952,7 +30949,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "A skorpió Csien Szun" msgstr[1] "A skorpió Csien Szun" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "A skorpió kung fu összes fogását bemutató könyv." @@ -30963,7 +30960,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "Az indonéz harcos" msgstr[1] "Az indonéz harcos" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "A pencak silat összes fogását bemutató könyv." @@ -30974,7 +30971,7 @@ msgid_plural "The Black Snake" msgstr[0] "A fekete kígyó" msgstr[1] "A fekete kígyó" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "A kígyó kung fu összes fogását bemutató könyv." @@ -30985,7 +30982,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "Hivatalos taekwando oktató kézikönyv" msgstr[1] "Hivatalos taekwando oktató kézikönyv" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "A taekwando összes fogását bemutató könyv." @@ -30996,7 +30993,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "Eggyé válni a Taóval" msgstr[1] "Eggyé válni a Taóval" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "A taj csi csüan összes fogását bemutató könyv." @@ -31007,7 +31004,7 @@ msgid_plural "The White Tiger" msgstr[0] "A fehér tigris" msgstr[1] "A fehér tigris" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "A tigris kung fu összes fogását bemutató könyv." @@ -31018,7 +31015,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "A varangy Meng Lo" msgstr[1] "A varangy Meng Lo" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "A varangy kung fu összes fogását bemutató könyv." @@ -31029,7 +31026,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "A vipera Wej Paj" msgstr[1] "A vipera Wej Paj" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "A vipera kung fu összes fogását bemutató könyv." @@ -31040,7 +31037,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "A cuj csün és te" msgstr[1] "A cuj csün és te" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "A cuj csün összes fogását bemutató könyv." @@ -31051,7 +31048,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "A lándzsa útja" msgstr[1] "A lándzsa útja" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "A szódzsucu összes fogását bemutató könyv." @@ -31062,7 +31059,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "A ving csun kung-fu összes fogását bemutató könyv." @@ -31074,7 +31071,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -31091,7 +31088,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -31266,7 +31263,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "Ranch prospektus" msgstr[1] "Ranch prospektus" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -32188,7 +32185,7 @@ msgid_plural "patient treatment records" msgstr[0] "pácienskezelési adatok" msgstr[1] "pácienskezelési adatok" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -32200,7 +32197,7 @@ msgid_plural "national weather transcripts" msgstr[0] "országos meteorológiai adatok" msgstr[1] "országos meteorológiai adatok" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -35896,7 +35893,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -35915,7 +35912,7 @@ msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -35930,7 +35927,7 @@ msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -35945,7 +35942,7 @@ msgid_plural "tank drone schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -35964,7 +35961,7 @@ msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -36211,7 +36208,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -36222,7 +36219,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -36233,7 +36230,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -36246,7 +36243,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -36257,7 +36254,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -36270,7 +36267,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -36284,7 +36281,7 @@ msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -36295,7 +36292,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -36308,7 +36305,7 @@ msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -36319,7 +36316,7 @@ msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -36346,6 +36343,21 @@ msgstr[1] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -38426,7 +38438,7 @@ msgid_plural "bird litter" msgstr[0] "madárszemét" msgstr[1] "madárszemét" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "Madarak ürüléke, tollai és egyéb koszos szemétdarabok." @@ -38482,14 +38494,14 @@ msgid_plural "bleach" msgstr[0] "hipó" msgstr[1] "hipó" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "hipó" msgstr[1] "hipó" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -38504,7 +38516,7 @@ msgid_plural "ammonia" msgstr[0] "ammónia" msgstr[1] "ammónia" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -38519,7 +38531,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "folyékony műtrágya" msgstr[1] "folyékony műtrágya" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "Tápanyagban gazdag elixír a növényeknek." @@ -38530,7 +38542,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "ipari műtrágya" msgstr[1] "ipari műtrágya" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "Tápanyagban gazdag granulátum a növényeknek." @@ -38541,7 +38553,7 @@ msgid_plural "fungicide" msgstr[0] "gombaölő szer" msgstr[1] "gombaölő szer" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -38556,7 +38568,7 @@ msgid_plural "insecticide" msgstr[0] "rovarölő" msgstr[1] "rovarölő" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -38571,7 +38583,7 @@ msgid_plural "salt water" msgstr[0] "sós víz" msgstr[1] "sós víz" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "Hozzáadott sót tartalmazó víz. Nem jó inni." @@ -38582,7 +38594,7 @@ msgid_plural "soapy water" msgstr[0] "szappanos víz" msgstr[1] "szappanos víz" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "Hozzáadott szappant tartalmazó víz. Nem jó inni." @@ -38604,7 +38616,7 @@ msgid_plural "sulfuric acid" msgstr[0] "kénsav" msgstr[1] "kénsav" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -38622,7 +38634,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "sósav" msgstr[1] "sósav" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -38638,7 +38650,7 @@ msgid_plural "nitric acid" msgstr[0] "salétromsav" msgstr[1] "salétromsav" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -38677,7 +38689,7 @@ msgid_plural "sewage water" msgstr[0] "szennyvíz" msgstr[1] "szennyvíz" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "Szörnyű bűzt árasztó folyadék a szennyvízcsatornákból." @@ -38688,7 +38700,7 @@ msgid_plural "lye" msgstr[0] "lúg" msgstr[1] "lúg" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -38703,7 +38715,7 @@ msgid_plural "ether" msgstr[0] "éter" msgstr[1] "éter" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -38721,7 +38733,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "dimetil-szulfoxid" msgstr[1] "dimetil-szulfoxid" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -38740,7 +38752,7 @@ msgid_plural "chloroform" msgstr[0] "kloroform" msgstr[1] "kloroform" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -38756,7 +38768,7 @@ msgid_plural "phenol" msgstr[0] "fenol" msgstr[1] "fenol" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -38777,7 +38789,7 @@ msgid_plural "glycerol" msgstr[0] "glicerin" msgstr[1] "glicerin" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -38793,7 +38805,7 @@ msgid_plural "peptone broth powder" msgstr[0] "pepton levespor" msgstr[1] "pepton levespor" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -38810,7 +38822,7 @@ msgid_plural "agar" msgstr[0] "agar" msgstr[1] "agar" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -38829,7 +38841,7 @@ msgid_plural "acrylamide" msgstr[0] "akrilamid" msgstr[1] "akrilamid" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -38844,7 +38856,7 @@ msgid_plural "acetylene" msgstr[0] "acetilén" msgstr[1] "acetilén" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -38859,7 +38871,7 @@ msgid_plural "formic acid" msgstr[0] "hangyasav" msgstr[1] "hangyasav" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -38872,7 +38884,7 @@ msgid_plural "latex" msgstr[0] "latex" msgstr[1] "latex" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -38883,7 +38895,7 @@ msgid_plural "citric acid" msgstr[0] "citromsav" msgstr[1] "citromsav" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -38960,13 +38972,24 @@ msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -39009,7 +39032,7 @@ msgid_plural "marloss wine" msgstr[0] "marloss bor" msgstr[1] "marloss bor" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "A marloss gyümölcséből készített darabos fehérbor." @@ -39020,7 +39043,7 @@ msgid_plural "Riesling" msgstr[0] "Rizling" msgstr[1] "Rizling" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "Gyöngyöző fehérbor, a világ legnemesebb szőlőjéből." @@ -39031,7 +39054,7 @@ msgid_plural "Chardonnay" msgstr[0] "Chardonnay" msgstr[1] "Chardonnay" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "Amerika legnépszerűbb fehérbora, és nem véletlenül." @@ -39042,7 +39065,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "Cabernet Sauvignon" msgstr[1] "Cabernet Sauvignon" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -39057,7 +39080,7 @@ msgid_plural "pinot noir" msgstr[0] "pinot noir" msgstr[1] "pinot noir" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -39072,7 +39095,7 @@ msgid_plural "marsala" msgstr[0] "marsala" msgstr[1] "marsala" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "Olasz éttermekben felszolgált ételekben használt népszerű bor." @@ -39083,7 +39106,7 @@ msgid_plural "vermouth" msgstr[0] "vermut" msgstr[1] "vermut" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -39098,7 +39121,7 @@ msgid_plural "barley wine" msgstr[0] "árpabor" msgstr[1] "árpabor" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "Egy erős ale." @@ -39109,7 +39132,7 @@ msgid_plural "whiskey" msgstr[0] "whiskey" msgstr[1] "whiskey" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -39123,7 +39146,7 @@ msgid_plural "vodka" msgstr[0] "vodka" msgstr[1] "vodka" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -39139,7 +39162,7 @@ msgid_plural "gin" msgstr[0] "gin" msgstr[1] "gin" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -39154,7 +39177,7 @@ msgid_plural "rum" msgstr[0] "rum" msgstr[1] "rum" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -39169,7 +39192,7 @@ msgid_plural "tequila" msgstr[0] "tequila" msgstr[1] "tequila" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -39184,7 +39207,7 @@ msgid_plural "triple sec" msgstr[0] "triple sec" msgstr[1] "triple sec" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "Narancs ízesítésű ital, számos kevert ital hozzávalója." @@ -39195,7 +39218,7 @@ msgid_plural "cheap wine" msgstr[0] "olcsó bor" msgstr[1] "olcsó bor" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "Rém olcsó likőrbor." @@ -39206,7 +39229,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "erős kevert alkohol" msgstr[1] "erős kevert alkohol" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -39218,7 +39241,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "gyenge kevert alkohol" msgstr[1] "gyenge kevert alkohol" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -39230,7 +39253,7 @@ msgid_plural "fruit wine" msgstr[0] "gyümölcsbor" msgstr[1] "gyümölcsbor" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -39242,7 +39265,7 @@ msgid_plural "brandy" msgstr[0] "konyak" msgstr[1] "konyak" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -39257,7 +39280,7 @@ msgid_plural "Irish coffee" msgstr[0] "ír kávé" msgstr[1] "ír kávé" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -39272,7 +39295,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "Long Island iced tea" msgstr[1] "Long Island iced tea" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -39302,7 +39325,7 @@ msgid_plural "wild apple" msgstr[0] "wild apple" msgstr[1] "wild apple" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "Olyan, mint az almalé, csak vodkával." @@ -39313,7 +39336,7 @@ msgid_plural "rum & cola" msgstr[0] "rum-kóla" msgstr[1] "rum-kóla" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "Trópusi üdülésre és kanadai művészek számára egyaránt alkalmas." @@ -39324,7 +39347,7 @@ msgid_plural "beer" msgstr[0] "sör" msgstr[1] "sör" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -39339,7 +39362,7 @@ msgid_plural "spiced mead" msgstr[0] "fűszeres mézbor" msgstr[1] "fűszeres mézbor" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -39351,7 +39374,7 @@ msgid_plural "dandelion wine" msgstr[0] "pitypang bor" msgstr[1] "pitypang bor" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -39366,7 +39389,7 @@ msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -39377,7 +39400,7 @@ msgid_plural "pine wine" msgstr[0] "fenyőbor" msgstr[1] "fenyőbor" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -39392,7 +39415,7 @@ msgid_plural "homebrew beer" msgstr[0] "házi sör" msgstr[1] "házi sör" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -39405,7 +39428,7 @@ msgid_plural "moonshine" msgstr[0] "moonshine" msgstr[1] "moonshine" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -39423,7 +39446,7 @@ msgid_plural "European pilsner" msgstr[0] "európai pilzeni sör" msgstr[1] "európai pilzeni sör" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -39438,7 +39461,7 @@ msgid_plural "American pale ale" msgstr[0] "amerikai pale ale" msgstr[1] "amerikai pale ale" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -39453,7 +39476,7 @@ msgid_plural "India pale ale" msgstr[0] "india pale ale" msgstr[1] "india pale ale" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -39468,7 +39491,7 @@ msgid_plural "stout" msgstr[0] "stout" msgstr[1] "stout" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -39481,7 +39504,7 @@ msgid_plural "Belgian ale" msgstr[0] "belga sör" msgstr[1] "belga sör" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -39496,7 +39519,7 @@ msgid_plural "imperial stout" msgstr[0] "imperial stout" msgstr[1] "imperial stout" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -39545,7 +39568,7 @@ msgid_plural "single malt whiskey" msgstr[0] "single malt whiskey" msgstr[1] "single malt whiskey" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "Házasítatlan malátawhisky, csakis a legjobbat." @@ -39556,7 +39579,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -39567,7 +39590,7 @@ msgid_plural "cheap whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "Rém olcsó kevert whiskey." @@ -39578,7 +39601,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -39589,7 +39612,7 @@ msgid_plural "sherry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -39601,7 +39624,7 @@ msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -39616,7 +39639,7 @@ msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -39629,7 +39652,7 @@ msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "Ennek tényleg hobó íze van." @@ -39640,7 +39663,7 @@ msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -39656,7 +39679,7 @@ msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -39758,7 +39781,7 @@ msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -39769,7 +39792,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -39780,7 +39803,7 @@ msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -39793,7 +39816,7 @@ msgid_plural "sourdough bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -39808,7 +39831,7 @@ msgid_plural "flatbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "Egyszerű kovásztalan kenyérféle." @@ -39819,7 +39842,7 @@ msgid_plural "bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "Egészséges és jóllaktató." @@ -39830,7 +39853,7 @@ msgid_plural "toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -39843,7 +39866,7 @@ msgid_plural "buttered toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -39854,7 +39877,7 @@ msgid_plural "jam toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -39867,7 +39890,7 @@ msgid_plural "peanut butter toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -39879,7 +39902,7 @@ msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -39890,7 +39913,7 @@ msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -39903,7 +39926,7 @@ msgid_plural "cornbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "Egészséges és jóllaktató kukoricakenyér." @@ -39938,7 +39961,7 @@ msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -39964,7 +39987,7 @@ msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -39981,7 +40004,7 @@ msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -39992,7 +40015,7 @@ msgid_plural "hallula" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -40276,18 +40299,18 @@ msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -40298,8 +40321,8 @@ msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -40314,14 +40337,14 @@ msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -40332,7 +40355,7 @@ msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -40360,7 +40383,7 @@ msgid_plural "cooked fish" msgstr[0] "sült hal" msgstr[1] "sült hal" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "Frissen sütött hal. Nagyon tápláló." @@ -40465,7 +40488,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "Frissen lemészárolt hús. Nyersen is meg lehet enni, de jobb megsütni." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -40568,7 +40591,7 @@ msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -40611,7 +40634,7 @@ msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -40661,7 +40684,7 @@ msgid_plural "butchery refuse" msgstr[0] "vágóhídi hulladék" msgstr[1] "vágóhídi hulladék" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -40755,7 +40778,7 @@ msgid_plural "cooked offal" msgstr[0] "főtt belsőség" msgstr[1] "főtt belsőség" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -40772,7 +40795,7 @@ msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -40783,7 +40806,7 @@ msgid_plural "pickled offal" msgstr[0] "savanyított belsőség" msgstr[1] "savanyított belsőség" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -40800,7 +40823,7 @@ msgid_plural "canned offal" msgstr[0] "konzerv belsőség" msgstr[1] "konzerv belsőség" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -40837,31 +40860,28 @@ msgid_plural "meat jerky" msgstr[0] "jerky" msgstr[1] "jerky" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "barom jerky" msgstr[1] "barom jerky" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -40874,7 +40894,7 @@ msgid_plural "salted fish" msgstr[0] "sózott hal" msgstr[1] "sózott hal" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -40887,33 +40907,27 @@ msgid_plural "smoked meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -40936,7 +40950,7 @@ msgid_plural "smoked fish" msgstr[0] "füstölt hal" msgstr[1] "füstölt hal" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -40997,7 +41011,7 @@ msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -41051,7 +41065,7 @@ msgid_plural "raw brains" msgstr[0] "nyers agy" msgstr[1] "nyers agy" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "Egy állat agya. Nyersen talán nem kellene megenni..." @@ -41062,7 +41076,7 @@ msgid_plural "cooked brains" msgstr[0] "főtt agy" msgstr[1] "főtt agy" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -41147,7 +41161,7 @@ msgstr[1] "" msgid "Normally a delicacy, it needs a little… something." msgstr "Általában ínyencség, de ebből valami hiányzik." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "Vér, valószínűleg emberi. Fúúúúúj!" @@ -41319,7 +41333,7 @@ msgid "" msgstr "" "Egyértelműen egészségtelen hús. Meg lehet enni, de elrontod a gyomrodat." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -41589,7 +41603,7 @@ msgid_plural "alien fronds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -41694,7 +41708,7 @@ msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -41705,7 +41719,7 @@ msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -41743,13 +41757,38 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -41763,7 +41802,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -41776,7 +41815,7 @@ msgid_plural "cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -41787,7 +41826,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -41799,7 +41838,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -41812,7 +41851,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -41825,7 +41864,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -41838,7 +41877,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -41851,7 +41890,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -41877,7 +41916,7 @@ msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -41901,7 +41940,7 @@ msgid_plural "wheat cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -41925,7 +41964,7 @@ msgid_plural "milk" msgstr[0] "tej" msgstr[1] "tej" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "Tehénbébi kaja, felnőtt emberek számára. Gyorsan megromlik." @@ -41936,7 +41975,7 @@ msgid_plural "chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -41947,7 +41986,7 @@ msgid_plural "reconstituted milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -41962,7 +42001,7 @@ msgid_plural "raw milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -41981,7 +42020,7 @@ msgid_plural "shelf stable milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -41998,7 +42037,7 @@ msgid_plural "evaporated milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -42010,7 +42049,7 @@ msgid_plural "buttermilk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -42036,7 +42075,7 @@ msgid_plural "butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -42050,7 +42089,7 @@ msgid_plural "raw butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -42064,7 +42103,7 @@ msgid_plural "ghee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -42104,7 +42143,7 @@ msgid_plural "hard cheese" msgstr[0] "keménysajt" msgstr[1] "keménysajt" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -42119,7 +42158,7 @@ msgid_plural "cheese" msgstr[0] "sajt" msgstr[1] "sajt" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "Egy tömbnyi sárga ömlesztett sajt." @@ -42141,7 +42180,7 @@ msgid_plural "powdered milk" msgstr[0] "tejpor" msgstr[1] "tejpor" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "Szárított tejpor. Vízzel elkeverve ihatóvá válik." @@ -42152,7 +42191,7 @@ msgid_plural "condensed milk" msgstr[0] "sűrített tej" msgstr[1] "sűrített tej" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -42166,7 +42205,7 @@ msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -42179,7 +42218,7 @@ msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "A nyers tej tetejéről lefölözött tejszín, amit hagytak leülepedni." @@ -42190,7 +42229,7 @@ msgid_plural "apple cider" msgstr[0] "cider" msgstr[1] "cider" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "Frissen facsart almalé. Finom és tápláló." @@ -42231,7 +42270,7 @@ msgid_plural "atomic coffee" msgstr[0] "atomkávé" msgstr[1] "atomkávé" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -42248,7 +42287,7 @@ msgid_plural "bee balm tea" msgstr[0] "méhbalzsam tea" msgstr[1] "méhbalzsam tea" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -42274,7 +42313,7 @@ msgid_plural "chai tea" msgstr[0] "chai tea" msgstr[1] "chai tea" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "Hagyományos dél-ázsiai vegyes fűszeres tea, tejjel." @@ -42285,7 +42324,7 @@ msgid_plural "chamomile tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -42316,7 +42355,7 @@ msgid_plural "coffee" msgstr[0] "kávé" msgstr[1] "kávé" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -42333,7 +42372,7 @@ msgid_plural "coffee substitute" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -42350,7 +42389,7 @@ msgid_plural "chicory brew" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -42426,7 +42465,7 @@ msgid_plural "dandelion tea" msgstr[0] "pitypangtea" msgstr[1] "pitypangtea" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "Lobogó vízzel felöntött pitypanggyökérből készült egészséges ital." @@ -42437,7 +42476,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -42501,7 +42540,7 @@ msgid_plural "herbal tea" msgstr[0] "gyógynövény tea" msgstr[1] "gyógynövény tea" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "Lobogó vízzel felöntött gyógynövényekből készült egészséges ital." @@ -42512,7 +42551,7 @@ msgid_plural "hot chocolate" msgstr[0] "kakaó" msgstr[1] "kakaó" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -42560,7 +42599,7 @@ msgid_plural "lemonade" msgstr[0] "limonádé" msgstr[1] "limonádé" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -42590,7 +42629,7 @@ msgid_plural "lotus tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -42601,7 +42640,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "mexikói kakaó" msgstr[1] "mexikói kakaó" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -42668,7 +42707,7 @@ msgid_plural "pine needle tea" msgstr[0] "fenyőtű tea" msgstr[1] "fenyőtű tea" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -42709,7 +42748,7 @@ msgid_plural "root beer" msgstr[0] "gyömbérsör" msgstr[1] "gyömbérsör" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -42749,13 +42788,13 @@ msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -42781,7 +42820,7 @@ msgid_plural "sweet water" msgstr[0] "cukros víz" msgstr[1] "cukros víz" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "Cukorral vagy mézzel édesített víz. Az íze elmegy." @@ -42805,7 +42844,7 @@ msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -42845,7 +42884,7 @@ msgid_plural "water" msgstr[0] "víz" msgstr[1] "víz" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -42860,7 +42899,7 @@ msgid_plural "clean water" msgstr[0] "tiszta víz" msgstr[1] "tiszta víz" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "Friss, tiszta víz. Ennél jobban semmi sem oltja szomjadat." @@ -42871,7 +42910,7 @@ msgid_plural "mineral water" msgstr[0] "ásványvíz" msgstr[1] "ásványvíz" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -43002,7 +43041,7 @@ msgid_plural "maple sap" msgstr[0] "juharfa nedv" msgstr[1] "juharfa nedv" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "Juharfából lecsapolt vizes-cukros oldat." @@ -43013,7 +43052,7 @@ msgid_plural "mayonnaise" msgstr[0] "majonéz" msgstr[1] "majonéz" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -43040,7 +43079,7 @@ msgid_plural "mustard" msgstr[0] "mustár" msgstr[1] "mustár" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -43055,7 +43094,7 @@ msgid_plural "forest honey" msgstr[0] "erdei méz" msgstr[1] "erdei méz" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -43070,7 +43109,7 @@ msgid_plural "vinegar" msgstr[0] "ecet" msgstr[1] "ecet" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -43084,7 +43123,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "Híg sárga növényi olaj főzéshez." @@ -43095,7 +43134,7 @@ msgid_plural "animal cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "Híg sárga állati olaj főzéshez." @@ -43106,7 +43145,7 @@ msgid_plural "molasses" msgstr[0] "melasz" msgstr[1] "melasz" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -43121,7 +43160,7 @@ msgid_plural "horseradish" msgstr[0] "torma" msgstr[1] "torma" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "Csípős reszelt gyökérzöldség ecetes sós lében." @@ -43132,7 +43171,7 @@ msgid_plural "coffee syrup" msgstr[0] "kávészirup" msgstr[1] "kávészirup" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -43476,7 +43515,7 @@ msgid_plural "scrambled eggs" msgstr[0] "tojásrántotta" msgstr[1] "tojásrántotta" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "Bolyhos és finom tojásrántotta." @@ -43498,7 +43537,7 @@ msgid_plural "fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -43511,7 +43550,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -43524,7 +43563,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -43537,7 +43576,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -43745,7 +43784,7 @@ msgid_plural "frozen yogurt" msgstr[0] "fagyasztott joghurt" msgstr[1] "fagyasztott joghurt" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -43819,7 +43858,7 @@ msgid_plural "peaches in syrup" msgstr[0] "őszibarack befőtt" msgstr[1] "őszibarack befőtt" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "Könnyű szirupba pakolt sárga barackszeletek." @@ -43841,7 +43880,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -43880,7 +43919,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "aszalt gyümölcs" msgstr[1] "aszalt gyümölcs" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -43896,7 +43935,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "rehidratált gyümölcs" msgstr[1] "rehidratált gyümölcs" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -43925,7 +43964,7 @@ msgid_plural "canned fruit" msgstr[0] "gyümölcsbefőtt" msgstr[1] "gyümölcsbefőtt" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -43940,7 +43979,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -43964,7 +44003,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "sugárkezelt csipkebogyó" msgstr[1] "sugárkezelt csipkebogyó" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -44414,7 +44453,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "sugárkezelt brokkoli" msgstr[1] "sugárkezelt brokkoli" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -44474,7 +44513,7 @@ msgid_plural "irradiated corn" msgstr[0] "sugárkezelt kukorica" msgstr[1] "sugárkezelt kukorica" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -44534,7 +44573,7 @@ msgid_plural "irradiated celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -44549,7 +44588,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -44668,12 +44707,12 @@ msgid_plural "potato chips" msgstr[0] "chips" msgstr[1] "chips" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "Pár darab sós chips." -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "De jó, imádod a chipset!" @@ -44684,7 +44723,7 @@ msgid_plural "popcorn kernels" msgstr[0] "pattogatott kukorica mag" msgstr[1] "pattogatott kukorica mag" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -44699,7 +44738,7 @@ msgid_plural "popcorn" msgstr[0] "pattogatott kukorica" msgstr[1] "pattogatott kukorica" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -44714,7 +44753,7 @@ msgid_plural "salted popcorn" msgstr[0] "sós pattogatott kukorica" msgstr[1] "sós pattogatott kukorica" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "Pattogatott kukorica ízfokozó sóval." @@ -44725,7 +44764,7 @@ msgid_plural "buttered popcorn" msgstr[0] "vajas pattogatott kukorica" msgstr[1] "vajas pattogatott kukorica" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "Pattogatott kukorica finom olvasztott vajjal." @@ -44736,7 +44775,7 @@ msgid_plural "pretzels" msgstr[0] "perec" msgstr[1] "perec" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "Sós rágcsálnivaló." @@ -44769,7 +44808,7 @@ msgid_plural "marshmallows" msgstr[0] "mályvacukor" msgstr[1] "mályvacukor" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "Egy nagy zacskó puha, finom mályvacukor." @@ -44780,7 +44819,7 @@ msgid_plural "s'mores" msgstr[0] "s'more" msgstr[1] "s'more" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -44817,7 +44856,7 @@ msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "Egy maréknyi gyümölcs ízesítésű színes cukorka." @@ -44828,12 +44867,12 @@ msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -44881,7 +44920,7 @@ msgid_plural "powder candy sticks" msgstr[0] "porított cukorkák" msgstr[1] "porított cukorkák" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -44960,7 +44999,7 @@ msgid_plural "maple syrup" msgstr[0] "juharszirup" msgstr[1] "juharszirup" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -44975,7 +45014,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "cukorrépa szirup" msgstr[1] "cukorrépa szirup" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -45032,7 +45071,7 @@ msgid_plural "fast-food French fries" msgstr[0] "gyorséttermi sült krumpli" msgstr[1] "gyorséttermi sült krumpli" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "Gyorséttermi sült krumpli. Érthetetlen módon még mindig ehető." @@ -45043,7 +45082,7 @@ msgid_plural "French fries" msgstr[0] "hasábburgonya" msgstr[1] "hasábburgonya" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "Olajban kisütött krumplihasábok némi sóval. Ropogós és finom." @@ -45065,7 +45104,7 @@ msgid_plural "Necco wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -45095,8 +45134,8 @@ msgid_plural "caramel" msgstr[0] "karamella" msgstr[1] "karamella" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "Egy pár darab karamella. Még mindig ártalmas az egészségedre." @@ -45107,7 +45146,7 @@ msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "Fogadunk, hogy nem tudsz csak egyetlen egyet megenni." @@ -45118,7 +45157,7 @@ msgid_plural "tortilla chips" msgstr[0] "tortilla chips" msgstr[1] "tortilla chips" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -45133,7 +45172,7 @@ msgid_plural "cheese nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -45148,31 +45187,28 @@ msgid_plural "meat nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "niño nachos" msgstr[1] "niño nachos" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -45187,31 +45223,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "sajtos niño nachos" msgstr[1] "sajtos niño nachos" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -45225,7 +45261,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -45238,7 +45274,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -45318,7 +45354,7 @@ msgid_plural "chili dogs" msgstr[0] "chilis hot-dog" msgstr[1] "chilis hot-dog" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "Chili con carne feltéttel készített hot-dog. Fincsi!" @@ -45329,7 +45365,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "nyers panírozott hot-dog" msgstr[1] "nyers panírozott hot-dog" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -45413,7 +45449,7 @@ msgid_plural "cheese fries" msgstr[0] "sajtos hasábburgonya" msgstr[1] "sajtos hasábburgonya" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "Gyorséttermi sült krumpli, ízletes sajtöntettel." @@ -45509,8 +45545,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -45653,32 +45688,26 @@ msgid_plural "raw sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -45697,15 +45726,14 @@ msgid_plural "smoked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -45726,15 +45754,14 @@ msgid_plural "cooked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -45764,23 +45791,21 @@ msgid_plural "bratwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -45803,7 +45828,7 @@ msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -45858,7 +45883,7 @@ msgid_plural "cracklins" msgstr[0] "töpörtyű" msgstr[1] "töpörtyű" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -45871,8 +45896,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -45880,7 +45904,7 @@ msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -45896,7 +45920,7 @@ msgid_plural "currywursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -45904,8 +45928,7 @@ msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -45913,8 +45936,7 @@ msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -45937,9 +45959,8 @@ msgid_plural "aspics" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -45947,9 +45968,8 @@ msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -45957,9 +45977,8 @@ msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -45983,7 +46002,7 @@ msgid_plural "dehydrated fish" msgstr[0] "szárított hal" msgstr[1] "szárított hal" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -45998,7 +46017,7 @@ msgid_plural "rehydrated fish" msgstr[0] "rehidratált hal" msgstr[1] "rehidratált hal" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -46013,7 +46032,7 @@ msgid_plural "pickled fish" msgstr[0] "savanyított hal" msgstr[1] "savanyított hal" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -46025,7 +46044,7 @@ msgid_plural "canned fish" msgstr[0] "halkonzerv" msgstr[1] "halkonzerv" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -46040,7 +46059,7 @@ msgid_plural "batter fried fish" msgstr[0] "panírozott rántott hal" msgstr[1] "panírozott rántott hal" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "Egy gyönyörű aranybarna, ropogós sült hal." @@ -46073,8 +46092,7 @@ msgid_plural "lunch meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -46097,7 +46115,7 @@ msgid_plural "bologna" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -46105,8 +46123,7 @@ msgid_plural "brat %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -46114,8 +46131,7 @@ msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -46123,7 +46139,7 @@ msgid_plural "bleak %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -46155,7 +46171,7 @@ msgid_plural "SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -46196,24 +46212,22 @@ msgid_plural "sausage gravies" msgstr[0] "öntetes virsli" msgstr[1] "öntetes virsli" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "öntetes mannwurst" msgstr[1] "öntetes mannwurst" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -46236,7 +46250,7 @@ msgid_plural "pemmican" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -46244,8 +46258,7 @@ msgid_plural "prepper %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -46253,8 +46266,7 @@ msgid_plural "Orley %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -46262,7 +46274,7 @@ msgid_plural "pernicious %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -46279,15 +46291,14 @@ msgid_plural "hamburger helpers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -46295,8 +46306,7 @@ msgid_plural "halfling helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -46328,24 +46338,22 @@ msgid_plural "chilis con carne" msgstr[0] "chili con carne" msgstr[1] "chili con carne" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -46365,7 +46373,7 @@ msgid_plural "pork and beans" msgstr[0] "babgulyás" msgstr[1] "babgulyás" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -46378,7 +46386,7 @@ msgid_plural "canned tuna fish" msgstr[0] "tonhalkonzerv" msgstr[1] "tonhalkonzerv" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "Most akár 95 százalékkal kevesebb a delfinnel!" @@ -46389,7 +46397,7 @@ msgid_plural "canned salmon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "Világosrózsaszín halpaszta egy dobozból!" @@ -46411,7 +46419,7 @@ msgid_plural "pickled herring" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "Egy üveg savanyított halfilé valamiféle kissé csípős fehér szószban." @@ -46433,16 +46441,14 @@ msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -46464,15 +46470,14 @@ msgid_plural "baked beans" msgstr[0] "sült bab" msgstr[1] "sült bab" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "Lassan főtt bab hússal. Ízletes és nagyon laktató." @@ -46483,15 +46488,14 @@ msgid_plural "meat fried rice" msgstr[0] "rizseshús" msgstr[1] "rizseshús" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "Finom sült rizs hússal. Ízletes és nagyon laktató." @@ -46502,15 +46506,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "luxus babos rizs" msgstr[1] "luxus babos rizs" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -46523,22 +46527,21 @@ msgid_plural "meat pies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -46557,23 +46560,21 @@ msgid_plural "meat pizzas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -46606,31 +46607,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "deluxe tojásrántotta" msgstr[1] "deluxe tojásrántotta" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -46643,15 +46643,14 @@ msgid_plural "canned meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -46673,15 +46672,14 @@ msgid_plural "salted meat slices" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -46700,15 +46698,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "spaghetti bolognese" msgstr[1] "spaghetti bolognese" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -46716,8 +46713,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -46725,7 +46721,7 @@ msgid_plural "gnarly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "Sűrű mártással leöntött spagetti. Fincsi!" @@ -46736,7 +46732,7 @@ msgid_plural "lasagnes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -46744,8 +46740,7 @@ msgid_plural "Luigi %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -46753,7 +46748,7 @@ msgid_plural "Lab %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -46776,7 +46771,7 @@ msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "Kisütve ennek a SPAM-nak egészen jó íze lett." @@ -46787,8 +46782,7 @@ msgid_plural "cheeseburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -46796,7 +46790,7 @@ msgid_plural "chump %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -46805,8 +46799,7 @@ msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -46840,23 +46833,21 @@ msgid_plural "hamburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -46875,23 +46866,21 @@ msgid_plural "sloppy joes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "személyvics" msgstr[1] "személyvics" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -46914,7 +46903,7 @@ msgid_plural "tacos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -46922,8 +46911,7 @@ msgid_plural "tio %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -46931,7 +46919,7 @@ msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -46954,15 +46942,14 @@ msgid_plural "pickled meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -46982,10 +46969,8 @@ msgid_plural "dehydrated meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -46993,12 +46978,11 @@ msgid_plural "%s, human" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -47036,9 +47020,8 @@ msgid_plural "haggises" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -47065,7 +47048,7 @@ msgid_plural "fish makizushi" msgstr[0] "halas makizushi" msgstr[1] "halas makizushi" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -47080,8 +47063,7 @@ msgid_plural "meat temaki" msgstr[0] "húsos temaki" msgstr[1] "húsos temaki" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -47089,7 +47071,7 @@ msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -47104,7 +47086,7 @@ msgid_plural "sashimi" msgstr[0] "sashimi" msgstr[1] "sashimi" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "Ízletes zöldséggel körített vékony nyers halszeletek." @@ -47130,7 +47112,7 @@ msgid_plural "pelmenis" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -47151,8 +47133,7 @@ msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -47173,15 +47154,14 @@ msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -47200,15 +47180,14 @@ msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -47245,12 +47224,12 @@ msgid_plural "prescription stimulant" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -47300,7 +47279,7 @@ msgid_plural "antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -47327,7 +47306,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -47412,7 +47391,7 @@ msgid_plural "antiseptic powder" msgstr[0] "fertőtlenítő por" msgstr[1] "fertőtlenítő por" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -47473,7 +47452,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "hidrogén-peroxid" msgstr[1] "hidrogén-peroxid" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -47533,12 +47512,12 @@ msgid_plural "codeine" msgstr[0] "kodein" msgstr[1] "kodein" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "Beveszel egy kodeint." -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -47555,7 +47534,7 @@ msgid_plural "cocaine" msgstr[0] "kokain" msgstr[1] "kokain" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -47605,7 +47584,7 @@ msgid_plural "cotton balls" msgstr[0] "vattagolyó" msgstr[1] "vattagolyó" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -47621,12 +47600,12 @@ msgid_plural "crack" msgstr[0] "crack" msgstr[1] "crack" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "Elszívsz egy pár crack kristályt. Anya büszke lenne rád." -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -47641,7 +47620,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "nem álmosító köhögés elleni szirup" msgstr[1] "nem álmosító köhögés elleni szirup" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -47658,7 +47637,7 @@ msgid_plural "antiseptic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "Szennyezett sebek fertőtlenítésére használ erős szer." @@ -47683,7 +47662,7 @@ msgid_plural "prescription sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -47698,12 +47677,12 @@ msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -47720,12 +47699,12 @@ msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -47741,12 +47720,12 @@ msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -47760,16 +47739,14 @@ msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -47783,7 +47760,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -47797,7 +47774,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -47811,7 +47788,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -47825,7 +47802,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -47839,7 +47816,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -47854,7 +47831,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -47869,7 +47846,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -47883,7 +47860,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -47897,12 +47874,12 @@ msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -47987,7 +47964,7 @@ msgid_plural "chewing gum" msgstr[0] "rágógumi" msgstr[1] "rágógumi" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -48015,13 +47992,13 @@ msgid_plural "heroin" msgstr[0] "heroin" msgstr[1] "heroin" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "Belövöd magad." -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -48107,7 +48084,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "gyenge minőségű metamfetamin" msgstr[1] "gyenge minőségű metamfetamin" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -48124,7 +48101,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -48179,7 +48156,7 @@ msgid_plural "cough syrup" msgstr[0] "köhögés elleni szirup" msgstr[1] "köhögés elleni szirup" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -48215,7 +48192,7 @@ msgid_plural "sleeping pill" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -48265,7 +48242,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "mákos köhögés elleni szirup" msgstr[1] "mákos köhögés elleni szirup" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "Mutáns mákból készült köhögés elleni szirup. Álmos leszel tőle." @@ -48276,15 +48253,14 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -48299,7 +48275,7 @@ msgid_plural "antidepressant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -48333,7 +48309,7 @@ msgid_plural "hemostatic powder" msgstr[0] "hemosztatikus por" msgstr[1] "hemosztatikus por" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -48363,7 +48339,7 @@ msgid_plural "antipsychotic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -48639,12 +48615,12 @@ msgid_plural "marijuana" msgstr[0] "marihuána" msgstr[1] "marihuána" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "Elszívsz egy füves cigit. Jó cucc ez, haver!" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -48661,7 +48637,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -48690,7 +48666,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -48705,7 +48681,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -48778,7 +48754,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -48793,7 +48769,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -49325,7 +49301,7 @@ msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -49612,9 +49588,8 @@ msgstr[1] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -49689,7 +49664,7 @@ msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -49808,7 +49783,8 @@ msgstr[1] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -49961,7 +49937,7 @@ msgid_plural "pine nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "Egy maréknyi ropogós fenyőtoboz mag." @@ -49972,7 +49948,7 @@ msgid_plural "junipers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -49985,7 +49961,7 @@ msgid_plural "shelled pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -49997,7 +49973,7 @@ msgid_plural "roasted pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "Egy maroknyi pörkölt dió a pisztáciafáról." @@ -50008,7 +49984,7 @@ msgid_plural "shelled almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "Egy maroknyi héj nélküli dió a mandulafáról." @@ -50019,7 +49995,7 @@ msgid_plural "almond pulp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -50032,7 +50008,7 @@ msgid_plural "roasted almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "Egy maroknyi megpörkölt dió a mandulafáról." @@ -50043,7 +50019,7 @@ msgid_plural "cashews" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "Egy maréknyi sós kesudió." @@ -50054,7 +50030,7 @@ msgid_plural "shelled pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -50069,7 +50045,7 @@ msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "Egy maroknyi megpörkölt dió a pekándiófáról." @@ -50080,7 +50056,7 @@ msgid_plural "shelled peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -50091,7 +50067,7 @@ msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "Egy maréknyi kemény, csúcsos makk, a bükkfa termése." @@ -50102,7 +50078,7 @@ msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -50115,7 +50091,7 @@ msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "Egy maroknyi megpörkölt dió a diófáról." @@ -50126,7 +50102,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -50139,7 +50115,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "Egy maroknyi megpörkölt gesztenye a gesztenyefáról." @@ -50150,7 +50126,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -50163,7 +50139,7 @@ msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -50174,7 +50150,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "Pörkölt szójabab, amelyet gyakran szójadiónak is neveznek." @@ -50185,7 +50161,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "Egy maroknyi megpörkölt mogyoró a mogyoróbokorról." @@ -50196,7 +50172,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -50209,7 +50185,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "Egy maroknyi megpörkölt dió a hikorifáról." @@ -50268,7 +50244,7 @@ msgid_plural "acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -50281,7 +50257,7 @@ msgid_plural "roasted acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "Egy maroknyi megpörkölt makk a tölgyfáról." @@ -50292,7 +50268,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -50307,7 +50283,7 @@ msgid_plural "foie gras" msgstr[0] "libamáj" msgstr[1] "libamáj" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -50319,7 +50295,7 @@ msgid_plural "liver & onions" msgstr[0] "hagymás máj" msgstr[1] "hagymás máj" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "Klasszikus májas recept." @@ -50376,7 +50352,7 @@ msgid_plural "leverpostej" msgstr[0] "májpástétom" msgstr[1] "májpástétom" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -50596,7 +50572,7 @@ msgid_plural "marloss gelatin" msgstr[0] "marloss zselatin" msgstr[1] "marloss zselatin" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -50629,7 +50605,7 @@ msgid_plural "yeast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -50642,7 +50618,7 @@ msgid_plural "bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -50654,7 +50630,7 @@ msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -50666,7 +50642,7 @@ msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -50677,7 +50653,7 @@ msgid_plural "tainted bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "Ez a szürkés csontliszt rothadt csontból készült." @@ -50688,7 +50664,7 @@ msgid_plural "chitin powder" msgstr[0] "kitinpor" msgstr[1] "kitinpor" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -50738,7 +50714,7 @@ msgid_plural "dried beans" msgstr[0] "szárazbab" msgstr[1] "szárazbab" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -50752,7 +50728,7 @@ msgid_plural "cooked beans" msgstr[0] "főtt bab" msgstr[1] "főtt bab" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "Kiadós adag főtt óriásbab." @@ -50763,8 +50739,8 @@ msgid_plural "tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -50785,7 +50761,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "Szárított tofu. A levegőtől el van zárva, sokáig megőrzi a minőségét." @@ -50796,7 +50772,7 @@ msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -50827,7 +50803,7 @@ msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -50839,7 +50815,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -50853,7 +50829,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -50864,7 +50840,7 @@ msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "Ízletes, tápanyagokban gazdag, főtt lencse." @@ -50875,7 +50851,7 @@ msgid_plural "coffee powder" msgstr[0] "kávépor" msgstr[1] "kávépor" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -50890,7 +50866,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -50905,7 +50881,7 @@ msgid_plural "candied honey" msgstr[0] "kandírozott méz" msgstr[1] "kandírozott méz" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -50948,7 +50924,7 @@ msgid_plural "cattle fodder" msgstr[0] "takarmány" msgstr[1] "takarmány" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -50963,7 +50939,7 @@ msgid_plural "bird food" msgstr[0] "madáreledel" msgstr[1] "madáreledel" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -50978,7 +50954,7 @@ msgid_plural "wet dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -50991,7 +50967,7 @@ msgid_plural "dry dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -51004,7 +50980,7 @@ msgid_plural "wet cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -51017,7 +50993,7 @@ msgid_plural "dry cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -51148,7 +51124,7 @@ msgid_plural "instant coffee mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -51187,15 +51163,14 @@ msgid_plural "protein drinks" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -51203,14 +51178,11 @@ msgid_plural "sapient green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -51233,15 +51205,14 @@ msgid_plural "protein powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -51249,7 +51220,7 @@ msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -51280,15 +51251,14 @@ msgid_plural "protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -51311,7 +51281,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -51319,7 +51289,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -51390,7 +51360,7 @@ msgid_plural "blueberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "Kicsit fanyar, de legalább a miénk." @@ -51401,7 +51371,7 @@ msgid_plural "strawberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "Ízes és zamatos bogyó, gyakran nő a vadonban is." @@ -51412,7 +51382,7 @@ msgid_plural "cranberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "" @@ -51425,7 +51395,7 @@ msgid_plural "raspberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "Édes piros bogyó." @@ -51436,7 +51406,7 @@ msgid_plural "huckleberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "A huckleberry-t gyakran keverik össze a kék áfonyával." @@ -51447,7 +51417,7 @@ msgid_plural "mulberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -51462,7 +51432,7 @@ msgid_plural "elderberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -51474,7 +51444,7 @@ msgid_plural "rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "A beporzott rózsavirág gyümölcse." @@ -51522,7 +51492,7 @@ msgid_plural "cherries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "Vörös és édes gyümölcs, fán terem." @@ -51546,7 +51516,7 @@ msgid_plural "grapes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "Egy fürt lédús szőlő." @@ -51612,7 +51582,7 @@ msgid_plural "blackberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "A málna sötétebb tesója." @@ -51668,7 +51638,7 @@ msgid_plural "apricots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "Sima héjú gyümölcs, az őszibarack rokona." @@ -51711,7 +51681,7 @@ msgid_plural "bee balm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -51723,7 +51693,7 @@ msgid_plural "broccoli" msgstr[0] "brokkoli" msgstr[1] "brokkoli" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "Kicsit rágós, de finom." @@ -51734,7 +51704,7 @@ msgid_plural "buckwheat" msgstr[0] "hajdina" msgstr[1] "hajdina" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -51760,7 +51730,7 @@ msgid_plural "spinach" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "Egy pár spenótlevél." @@ -51813,7 +51783,7 @@ msgid_plural "celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -51838,7 +51808,7 @@ msgid_plural "corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "Ízletes aranyszínű magok." @@ -51849,7 +51819,7 @@ msgid_plural "empty corn cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -51914,7 +51884,7 @@ msgid_plural "salsify" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -51930,7 +51900,7 @@ msgid_plural "chicory" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -52061,7 +52031,7 @@ msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -52099,7 +52069,7 @@ msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -52112,7 +52082,7 @@ msgid_plural "dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -52127,7 +52097,7 @@ msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -52233,7 +52203,7 @@ msgid_plural "wild vegetables" msgstr[0] "vadon termő zöldség" msgstr[1] "vadon termő zöldség" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -52270,7 +52240,7 @@ msgid_plural "raw beans" msgstr[0] "nyers bab" msgstr[1] "nyers bab" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -52285,7 +52255,7 @@ msgid_plural "raw lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "Nyers, főtlen lencse. Jobb lenne megfőzni." @@ -52296,7 +52266,7 @@ msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -52336,8 +52306,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "delux szendvics" msgstr[1] "delux szendvics" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -52353,6 +52322,27 @@ msgstr "" "Húsból, zöldségekből, sajtból és fűszerezésből készített szendvics. Ízletes " "és tápláló!" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -52414,7 +52404,7 @@ msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -52466,26 +52456,23 @@ msgid_plural "meat sandwiches" msgstr[0] "húsos szendvics" msgstr[1] "húsos szendvics" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "idegesítő szendvics" msgstr[1] "idegesítő szendvics" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -52611,7 +52598,7 @@ msgid_plural "mushroom spores" msgstr[0] "gombaspóra" msgstr[1] "gombaspóra" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "Néhány gombaspóra." @@ -52622,7 +52609,7 @@ msgid_plural "hop rhizomes" msgstr[0] "komló rizóma" msgstr[1] "komló rizóma" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "Egy komló növény gyökere, hogy magad is termeszthesd." @@ -52637,7 +52624,7 @@ msgid_plural "blackberry seeds" msgstr[0] "szeder mag" msgstr[1] "szeder mag" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "Néhány szeder vetőmag." @@ -52652,7 +52639,7 @@ msgid_plural "blueberry seeds" msgstr[0] "áfonya mag" msgstr[1] "áfonya mag" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "Egy marék fekete áfonya mag." @@ -52667,7 +52654,7 @@ msgid_plural "cranberry seeds" msgstr[0] "cranberry mag" msgstr[1] "cranberry mag" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "Néhány cranberry vetőmag." @@ -52682,7 +52669,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "huckleberry vetőmag" msgstr[1] "huckleberry vetőmag" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "Néhány huckleberry vetőmag." @@ -52697,7 +52684,7 @@ msgid_plural "mulberry seeds" msgstr[0] "eperfa vetőmag" msgstr[1] "eperfa vetőmag" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "Néhány eperfa vetőmag." @@ -52712,7 +52699,7 @@ msgid_plural "elderberry seeds" msgstr[0] "bodza mag" msgstr[1] "bodza mag" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "Néhány bodza vetőmag." @@ -52727,7 +52714,7 @@ msgid_plural "raspberry seeds" msgstr[0] "málna mag" msgstr[1] "málna mag" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "Néhány málna vetőmag." @@ -52742,7 +52729,7 @@ msgid_plural "strawberry seeds" msgstr[0] "epermag" msgstr[1] "epermag" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "Egy marék epermag" @@ -52757,7 +52744,7 @@ msgid_plural "grape seeds" msgstr[0] "szőlőmag" msgstr[1] "szőlőmag" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "Néhány szőlőmag." @@ -52772,7 +52759,7 @@ msgid_plural "rose seeds" msgstr[0] "rózsa vetőmag" msgstr[1] "rózsa vetőmag" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "Néhány rózsa vetőmag." @@ -52787,7 +52774,7 @@ msgid_plural "tobacco seeds" msgstr[0] "dohánymag" msgstr[1] "dohánymag" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "Néhány dohánymag." @@ -52802,7 +52789,7 @@ msgid_plural "barley seeds" msgstr[0] "árpa vetőmag" msgstr[1] "árpa vetőmag" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "Néhány árpa vetőmag." @@ -52813,7 +52800,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "cukorrépa vetőmag" msgstr[1] "cukorrépa vetőmag" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "Néhány cukorrépa vetőmag" @@ -52824,7 +52811,7 @@ msgid_plural "lettuce seeds" msgstr[0] "saláta vetőmag" msgstr[1] "saláta vetőmag" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "Néhány saláta vetőmag." @@ -52835,7 +52822,7 @@ msgid_plural "cabbage seeds" msgstr[0] "káposzta vetőmag" msgstr[1] "káposzta vetőmag" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "Néhány fehér káposzta vetőmagja." @@ -52846,7 +52833,7 @@ msgid_plural "tomato seeds" msgstr[0] "paradicsom vetőmag" msgstr[1] "paradicsom vetőmag" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "Egy marék paradicsommag." @@ -52857,7 +52844,7 @@ msgid_plural "cotton seeds" msgstr[0] "gyapot vetőmag" msgstr[1] "gyapot vetőmag" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "Néhány gyapot vetőmag. Feldolgozás után ehető olajat ad." @@ -52872,7 +52859,7 @@ msgid_plural "broccoli seeds" msgstr[0] "brokkoli vetőmag" msgstr[1] "brokkoli vetőmag" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "Néhány brokkoli vetőmag." @@ -52883,7 +52870,7 @@ msgid_plural "zucchini seeds" msgstr[0] "cukkini vetőmag" msgstr[1] "cukkini vetőmag" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "Néhány cukkini vetőmag." @@ -52894,7 +52881,7 @@ msgid_plural "onion seeds" msgstr[0] "hagyma vetőmag" msgstr[1] "hagyma vetőmag" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "Néhány hagyma vetőmag." @@ -52905,7 +52892,7 @@ msgid_plural "garlic seeds" msgstr[0] "fokhagyma vetőmag" msgstr[1] "fokhagyma vetőmag" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "Néhány fokhagyma vetőmag." @@ -52920,7 +52907,7 @@ msgid_plural "cattail seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "Néhány gyékény vetőmag." @@ -52935,7 +52922,7 @@ msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "Néhány dália vetőmag." @@ -52950,7 +52937,7 @@ msgid_plural "salsify seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "Néhány bakszakáll vetőmag." @@ -52961,7 +52948,7 @@ msgid_plural "chicory seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "Néhány cikória vetőmag." @@ -52972,7 +52959,7 @@ msgid_plural "wild root seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "Egy fehér virág magvai." @@ -52983,7 +52970,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -53002,7 +52989,7 @@ msgid_plural "cactus seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "Néhány kaktusz vetőmag." @@ -53028,7 +53015,7 @@ msgid_plural "carrot seeds" msgstr[0] "sárgarépa vetőmag" msgstr[1] "sárgarépa vetőmag" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "Néhány sárgarépa vetőmag." @@ -53039,7 +53026,7 @@ msgid_plural "corn seeds" msgstr[0] "kukorica vetőmag" msgstr[1] "kukorica vetőmag" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "Néhány kukorica vetőmag." @@ -53054,7 +53041,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "chili paprika mag" msgstr[1] "chili paprika mag" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "Egy maréknyi chili paprika vetőmag." @@ -53065,7 +53052,7 @@ msgid_plural "cucumber seeds" msgstr[0] "uborka vetőmag" msgstr[1] "uborka vetőmag" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "Néhány uborka vetőmag." @@ -53091,7 +53078,7 @@ msgid_plural "cannabis seeds" msgstr[0] "kannabisz mag" msgstr[1] "kannabisz mag" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -53127,7 +53114,7 @@ msgid_plural "bean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "Nyers, főzetlen babok, elültethetők." @@ -53142,7 +53129,7 @@ msgid_plural "soybean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "Néhány szójabab vetőmag." @@ -53151,7 +53138,7 @@ msgstr "Néhány szójabab vetőmag." msgid "soybean" msgstr "szójabab" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "Nyers, főzetlen lencse, elültethető." @@ -53166,7 +53153,7 @@ msgid_plural "thyme seeds" msgstr[0] "kakukkfű vetőmag" msgstr[1] "kakukkfű vetőmag" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "Néhány kakukkfű vetőmag." @@ -53183,7 +53170,7 @@ msgid_plural "canola seeds" msgstr[0] "repce vetőmag" msgstr[1] "repce vetőmag" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "Néhány repce vetőmag. Olajat lehet sajtolni belőlük." @@ -53194,7 +53181,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "tökmag" msgstr[1] "tökmag" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "Néhány nyers tökmag. Meg lehetne sütni és megenni." @@ -53205,7 +53192,7 @@ msgid_plural "sunflower seeds" msgstr[0] "napraforgómag" msgstr[1] "napraforgómag" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "Néhány nyers napraforgó mag. Olajat lehetne belőlük préselni." @@ -53223,7 +53210,7 @@ msgid_plural "dogbane seeds" msgstr[0] "ebvész vetőmag" msgstr[1] "ebvész vetőmag" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "Néhány ebvész vetőmag." @@ -53234,7 +53221,7 @@ msgid_plural "bee balm seeds" msgstr[0] "méhbalzsam vetőmag" msgstr[1] "méhbalzsam vetőmag" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "Néhány méhbalzsam vetőmag." @@ -53245,7 +53232,7 @@ msgid_plural "mugwort seeds" msgstr[0] "üröm vetőmag" msgstr[1] "üröm vetőmag" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "Néhány üröm vetőmag." @@ -53256,7 +53243,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "hajdina vetőmag" msgstr[1] "hajdina vetőmag" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "Néhány hajdina vetőmag." @@ -53267,7 +53254,7 @@ msgid_plural "wild herb seeds" msgstr[0] "vadon nőtt fűszernövények vetőmagja" msgstr[1] "vadon nőtt fűszernövények vetőmagja" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "Egy pár vadon termő gyógynövény magja." @@ -53282,7 +53269,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "vadon élő növény szára" msgstr[1] "vadon élő növény szára" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "Néhány vadon élő növény szára." @@ -53297,7 +53284,7 @@ msgid_plural "dandelion seeds" msgstr[0] "pitypang vetőmag" msgstr[1] "pitypang vetőmag" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "Néhány pitypang vetőmag." @@ -53312,7 +53299,7 @@ msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -53327,7 +53314,7 @@ msgid_plural "rhubarb stems" msgstr[0] "rebarbara szár" msgstr[1] "rebarbara szár" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "Néhány rebarbara szár." @@ -53338,7 +53325,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "kucsmagomba spóra" msgstr[1] "kucsmagomba spóra" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "Néhány kucsmagomba spóra." @@ -53349,7 +53336,7 @@ msgid_plural "datura seeds" msgstr[0] "maszlag mag" msgstr[1] "maszlag mag" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -53370,7 +53357,7 @@ msgid_plural "celery seeds" msgstr[0] "zeller vetőmag" msgstr[1] "zeller vetőmag" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "Néhány zeller vetőmag." @@ -53381,7 +53368,7 @@ msgid_plural "oat seeds" msgstr[0] "zab vetőmag" msgstr[1] "zab vetőmag" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "Néhány zab vetőmag." @@ -53398,7 +53385,7 @@ msgid_plural "wheat seeds" msgstr[0] "búza vetőmag" msgstr[1] "búza vetőmag" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "Egy marék búzamag" @@ -53415,7 +53402,7 @@ msgid_plural "fried seeds" msgstr[0] "sült magok" msgstr[1] "sült magok" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -53443,7 +53430,7 @@ msgid_plural "coffee beans" msgstr[0] "kávészem" msgstr[1] "kávészem" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "Néhány szem kávébab, pörkölhető." @@ -53454,7 +53441,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "pörkölt kávészem" msgstr[1] "pörkölt kávészem" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "Néhány szem pörkölt kávébab, porrá lehet őrölni." @@ -53465,7 +53452,7 @@ msgid_plural "chamomile seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "Néhány kamilla vetőmag." @@ -53480,7 +53467,7 @@ msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -53495,7 +53482,7 @@ msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -53506,7 +53493,7 @@ msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -53517,7 +53504,7 @@ msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -53528,7 +53515,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -53550,8 +53537,7 @@ msgid_plural "bone broths" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -53581,15 +53567,14 @@ msgid_plural "meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -53629,8 +53614,7 @@ msgid_plural "curries with meat" msgstr[0] "húsos curry" msgstr[1] "húsos curry" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -53648,10 +53632,8 @@ msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -53715,7 +53697,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "gombócos csirke" msgstr[1] "gombócos csirke" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "Csirkedarabokból és tésztagombócokból álló leves. Nem is rossz." @@ -53741,7 +53723,7 @@ msgid_plural "chili powder" msgstr[0] "chilipor" msgstr[1] "chilipor" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -53756,7 +53738,7 @@ msgid_plural "hot sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -53769,7 +53751,7 @@ msgid_plural "cinnamon" msgstr[0] "fahéj" msgstr[1] "fahéj" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "Édes, némileg fűszeres illatú őrölt fahéjfa kéreg." @@ -53780,7 +53762,7 @@ msgid_plural "curry powder" msgstr[0] "curry por" msgstr[1] "curry por" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -53795,7 +53777,7 @@ msgid_plural "black pepper" msgstr[0] "feketebors" msgstr[1] "feketebors" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "Csípős illatú őrölt fekete bors." @@ -53806,7 +53788,7 @@ msgid_plural "salt" msgstr[0] "só" msgstr[1] "só" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -53820,7 +53802,7 @@ msgid_plural "Italian seasoning" msgstr[0] "olasz fűszerkeverék" msgstr[1] "olasz fűszerkeverék" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "Oregánó, bazsalikom, kakukkfű és egyéb fűszerek illatos keveréke." @@ -53831,7 +53813,7 @@ msgid_plural "seasoned salt" msgstr[0] "fűszersó" msgstr[1] "fűszersó" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "Titkos fűszerekkel feljavított asztali só illatos keveréke." @@ -53842,7 +53824,7 @@ msgid_plural "sugar" msgstr[0] "cukor" msgstr[1] "cukor" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -53857,7 +53839,7 @@ msgid_plural "sprinkles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -53875,7 +53857,7 @@ msgid_plural "wild herbs" msgstr[0] "vadon nőtt fűszernövények" msgstr[1] "vadon nőtt fűszernövények" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -53888,7 +53870,7 @@ msgid_plural "soy sauce" msgstr[0] "szójaszósz" msgstr[1] "szójaszósz" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "Sós ízű erjesztett szójabab szósz." @@ -53904,7 +53886,7 @@ msgid_plural "mustard powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -53956,7 +53938,7 @@ msgid_plural "starch" msgstr[0] "keményítő" msgstr[1] "keményítő" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -53971,7 +53953,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "főtt pitypang zöldje" msgstr[1] "főtt pitypang zöldje" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "Vad pitypang főtt levele. Ízletes és tápláló." @@ -53982,7 +53964,7 @@ msgid_plural "fried dandelions" msgstr[0] "sült pitypang" msgstr[1] "sült pitypang" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -53994,7 +53976,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -54005,7 +53987,7 @@ msgid_plural "fried burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -54042,7 +54024,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "sült vadon termő zöldség" msgstr[1] "sült vadon termő zöldség" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "Vadnövények ehető részei. Érdekes ízkombináció." @@ -54065,7 +54047,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "főtt hajdina" msgstr[1] "főtt hajdina" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -54077,7 +54059,7 @@ msgid_plural "canned corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "Vízben tartósított kukorica konzerv. Jó étvágyat!" @@ -54088,7 +54070,7 @@ msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -54099,7 +54081,7 @@ msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -54110,7 +54092,7 @@ msgid_plural "hominy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -54123,7 +54105,7 @@ msgid_plural "cornmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "Ez a sárga liszt hasznos sütés-főzéshez." @@ -54134,7 +54116,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "vegetáriánus sült bab" msgstr[1] "vegetáriánus sült bab" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "Lassan főtt bab zöldséggel. Ízletes és nagyon laktató." @@ -54145,7 +54127,7 @@ msgid_plural "dried rice" msgstr[0] "szárított rizs" msgstr[1] "szárított rizs" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -54160,7 +54142,7 @@ msgid_plural "cooked rice" msgstr[0] "főtt rizs" msgstr[1] "főtt rizs" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "Kiadós adag főtt fehér hosszú szemű rizs." @@ -54171,7 +54153,7 @@ msgid_plural "fried rice" msgstr[0] "sült rizs" msgstr[1] "sült rizs" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "Finom sült rizs zöldséggel. Ízletes és nagyon laktató." @@ -54182,7 +54164,7 @@ msgid_plural "beans and rice" msgstr[0] "babos rizs" msgstr[1] "babos rizs" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -54195,7 +54177,7 @@ msgid_plural "tofu fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "Finom tofus sült rizs zöldséggel. Ízletes és nagyon laktató." @@ -54206,7 +54188,7 @@ msgid_plural "tofu stirfry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -54221,7 +54203,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "luxus vegetáriánus babos rizs" msgstr[1] "luxus vegetáriánus babos rizs" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -54297,7 +54279,7 @@ msgid_plural "pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "Olívaolaj, bazsalikom, fokhagyma és fenyőmag. Egyszerű és finom." @@ -54338,7 +54320,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "spaghetti al pesto" msgstr[1] "spaghetti al pesto" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "Emberes adag pestóval nyakonöntött spagetti. Fincsi!" @@ -54361,7 +54343,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "hirtelen sült hagymás sauerkraut" msgstr[1] "hirtelen sült hagymás sauerkraut" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -54404,7 +54386,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -54430,7 +54412,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -54513,7 +54495,7 @@ msgid_plural "sushi rice" msgstr[0] "sushi rizs" msgstr[1] "sushi rizs" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -54525,7 +54507,7 @@ msgid_plural "onigiri" msgstr[0] "onigiri" msgstr[1] "onigiri" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -54540,7 +54522,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "zöldséges hoszomaki" msgstr[1] "zöldséges hoszomaki" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -54570,7 +54552,7 @@ msgid_plural "sauerkraut" msgstr[0] "sauerkraut" msgstr[1] "sauerkraut" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -54597,7 +54579,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -54609,7 +54591,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "Zsírban kisütött páfránycsíra. Puha és ízletes." @@ -54627,7 +54609,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "Nyers búza, nincs jó íze." @@ -54638,7 +54620,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -54653,7 +54635,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -54668,7 +54650,7 @@ msgid_plural "boiled noodles" msgstr[0] "főtt tészta" msgstr[1] "főtt tészta" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "Frissen főtt üres tészta. Elég unalmas íze van, de jól laksz tőle." @@ -54679,7 +54661,7 @@ msgid_plural "raw macaroni" msgstr[0] "nyers makaróni" msgstr[1] "nyers makaróni" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -54691,7 +54673,7 @@ msgid_plural "mac & cheese" msgstr[0] "sajtos makaróni" msgstr[1] "sajtos makaróni" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -54704,7 +54686,7 @@ msgid_plural "flour" msgstr[0] "liszt" msgstr[1] "liszt" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "Ez a gazdag fehér liszt hasznos sütés-főzéshez." @@ -54715,7 +54697,7 @@ msgid_plural "bread flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -54728,7 +54710,7 @@ msgid_plural "oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " @@ -54737,7 +54719,7 @@ msgstr "" "Száraz gabonapehely. Sütés után ízletes és tápláló, száraz állapotában " "lótakarmány is lehet." -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "Nyers zab." @@ -54748,7 +54730,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -54763,7 +54745,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -54855,7 +54837,7 @@ msgid_plural "oyster crackers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -54890,7 +54872,7 @@ msgid_plural "granola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -54914,7 +54896,7 @@ msgid_plural "fast noodles" msgstr[0] "gyorstészta" msgstr[1] "gyorstészta" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "Úgynevezett ramen tészta. Nyersen is meg lehet enni." @@ -55110,7 +55092,7 @@ msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -55121,7 +55103,7 @@ msgid_plural "melon seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -55132,7 +55114,7 @@ msgid_plural "banana saplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -55143,7 +55125,7 @@ msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -55154,7 +55136,7 @@ msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -55165,7 +55147,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -55214,7 +55196,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -55260,7 +55242,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -55273,7 +55255,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -55314,7 +55296,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -55424,7 +55406,7 @@ msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -55438,7 +55420,7 @@ msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -55528,7 +55510,7 @@ msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -55542,7 +55524,7 @@ msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -55556,7 +55538,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -55568,7 +55550,7 @@ msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -55581,7 +55563,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -55636,7 +55618,7 @@ msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -55652,7 +55634,7 @@ msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -55666,7 +55648,7 @@ msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -55680,7 +55662,7 @@ msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -55741,7 +55723,7 @@ msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -55755,7 +55737,7 @@ msgid_plural "food cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -55767,7 +55749,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -55791,7 +55773,7 @@ msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -55817,7 +55799,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -55831,7 +55813,7 @@ msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -55847,7 +55829,7 @@ msgid_plural "caffex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -55888,7 +55870,7 @@ msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -55950,7 +55932,7 @@ msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -55971,7 +55953,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -56254,8 +56236,8 @@ msgstr[0] "" msgstr[1] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" @@ -56265,6 +56247,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -56307,6 +56301,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -56427,6 +56427,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -56463,24 +56469,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "" msgstr[1] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -56779,7 +56767,7 @@ msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -56845,7 +56833,7 @@ msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -56905,14 +56893,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -56995,7 +56983,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -57004,7 +56992,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -57016,7 +57004,7 @@ msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -57027,7 +57015,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -57040,7 +57028,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -57059,7 +57047,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -57073,7 +57061,7 @@ msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -57713,7 +57701,7 @@ msgid_plural "rock salt" msgstr[0] "kősó" msgstr[1] "kősó" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py 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ó." @@ -57724,7 +57712,7 @@ msgid_plural "rhodonite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -57739,7 +57727,7 @@ msgid_plural "zincite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -57778,7 +57766,7 @@ msgid_plural "hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "Egy maroknyi nyers kemény dió a hikorifáról, héjastul." @@ -57789,7 +57777,7 @@ msgid_plural "pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "Egy maroknyi nyers kemény dió a pekándiófáról, héjastul." @@ -57800,7 +57788,7 @@ msgid_plural "pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "Egy maroknyi nyers kemény dió a pisztáciafáról, héjastul." @@ -57811,7 +57799,7 @@ msgid_plural "almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "Egy maroknyi nyers kemény dió a mandulafáról, héjastul." @@ -57822,7 +57810,7 @@ msgid_plural "peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "Egy maroknyi nyers kemény dió a földimogyoró-bokorról, héjastul." @@ -57833,7 +57821,7 @@ msgid_plural "hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "Egy maroknyi nyers kemény dió a mogyoróbokorról, héjastul." @@ -57844,7 +57832,7 @@ msgid_plural "chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "Egy maroknyi nyers kemény dió a gesztenyefáról, héjastul." @@ -57855,7 +57843,7 @@ msgid_plural "walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "Egy maroknyi nyers kemény dió a diófáról, héjastul." @@ -58153,6 +58141,18 @@ msgstr "" "A TISZTI FŐORVOS FIGYELMEZTETÉSE: A dohányzás tüdőrákot, szívbetegséget és " "emfizémát okoz, valamint a terhesség komplikációjához vezethet." +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -58164,6 +58164,19 @@ msgstr[1] "kicsi kartondoboz" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "Kisméretű kartondoboz, oldalanként maximum 30 centis." +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -58999,7 +59012,7 @@ msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "Még nem teljesen lisztté őrölt félkész magvak." @@ -59010,7 +59023,7 @@ msgid_plural "smoldering embers" msgstr[0] "izzó parázs" msgstr[1] "izzó parázs" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -59235,6 +59248,29 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -59439,7 +59475,7 @@ msgid_plural "superglue" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py 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." @@ -59747,7 +59783,7 @@ msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -59902,7 +59938,7 @@ msgid_plural "concrete" msgstr[0] "beton" msgstr[1] "beton" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "" @@ -60831,7 +60867,7 @@ msgid_plural "clockworks" msgstr[0] "óramű" msgstr[1] "óramű" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "Mindenféle apró fogaskerék meg egyéb óramű belsőség." @@ -60975,7 +61011,7 @@ msgid_plural "chamomile flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -61001,7 +61037,7 @@ msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -61036,7 +61072,7 @@ msgid_plural "mortar" msgstr[0] "habarcs" msgstr[1] "habarcs" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "" @@ -61090,7 +61126,7 @@ msgid_plural "adobe mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -61106,7 +61142,7 @@ msgid_plural "tanbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "Egy lap tanninban gazdag fakéreg, a bőr cserzéséhez használatos." @@ -61128,7 +61164,7 @@ msgid_plural "willowbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -61583,7 +61619,7 @@ msgid_plural "raw tobacco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -61914,7 +61950,7 @@ msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "Hatoldalú műanyag dobókocka." @@ -61938,7 +61974,7 @@ msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -62320,6 +62356,98 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -63139,7 +63267,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -63276,7 +63404,7 @@ msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63289,7 +63417,7 @@ msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63319,7 +63447,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63335,7 +63463,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63351,7 +63479,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63367,7 +63495,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63383,7 +63511,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63399,7 +63527,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63415,7 +63543,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63431,7 +63559,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63447,7 +63575,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63463,7 +63591,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63479,7 +63607,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63495,7 +63623,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63511,7 +63639,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63527,7 +63655,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63543,7 +63671,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63559,8 +63687,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63576,7 +63703,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63592,7 +63719,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63608,7 +63735,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63624,7 +63751,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63640,7 +63767,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63656,8 +63783,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63679,7 +63805,7 @@ msgid_plural "misc software" msgstr[0] "egyéb szoftver" msgstr[1] "egyéb szoftver" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "Valamiféle hobbi program. Valószínűleg haszontalan." @@ -63690,7 +63816,7 @@ msgid_plural "hackPRO" msgstr[0] "hackPRO" msgstr[1] "hackPRO" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "Egy hekkelő szoftver." @@ -63701,7 +63827,7 @@ msgid_plural "MediSoft" msgstr[0] "MediSoft" msgstr[1] "MediSoft" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "Egy orvosi szoftver." @@ -63712,7 +63838,7 @@ msgid_plural "MatheMAX" msgstr[0] "MatheMAX" msgstr[1] "MatheMAX" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "Egy matematikai szoftver." @@ -63723,7 +63849,7 @@ msgid_plural "infection data" msgstr[0] "fertőzési adatok" msgstr[1] "fertőzési adatok" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "Orvosi adatok a zombivérről" @@ -63734,7 +63860,7 @@ msgid_plural "lab data" msgstr[0] "laboratóriumi adatok" msgstr[1] "laboratóriumi adatok" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "Egy kormányzati kutatóközpont kutatási archívuma." @@ -63745,7 +63871,7 @@ msgid_plural "train data" msgstr[0] "vasúti adatok" msgstr[1] "vasúti adatok" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "Földalatti vasútvonalak és menetrendek logisztikai adatai" @@ -63756,7 +63882,7 @@ msgid_plural "neural data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -64079,22 +64205,34 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "hulla" msgstr[1] "hulla" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -64102,7 +64240,7 @@ msgid_plural "skinned %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -64341,7 +64479,7 @@ msgid_plural "trifacet remains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -64677,6 +64815,100 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -66422,7 +66654,7 @@ msgid_plural "headphones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -66502,7 +66734,7 @@ msgid_plural "spare parts" msgstr[0] "alkatrészek" msgstr[1] "alkatrészek" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -67140,7 +67372,7 @@ msgid_plural "bokken" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -67151,7 +67383,7 @@ msgstr "" "egyensúlyozással, mint az igazi kardnál. Az éles fémpenge hiányának ellenére" " ezzel is könnyen lehet halálos sebeket okozni." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " @@ -67160,7 +67392,7 @@ msgstr "" "Ez egy tömörfa gyakorló katana, de túl könnyű ahhoz, hogy hatékony fegyver " "legyen." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -67761,7 +67993,7 @@ msgid_plural "bionic claws" msgstr[0] "bionikus karom" msgstr[1] "bionikus karom" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "Csúcstechnológiájú fémből készült rövid és éles karmok." @@ -67990,7 +68222,7 @@ msgid_plural "qiang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -68040,7 +68272,7 @@ msgid_plural "naginata" msgstr[0] "naginata" msgstr[1] "naginata" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -68051,7 +68283,7 @@ msgstr "" "pengés fegyverhez hasonló módon készítettek. Alkalmanként a korai időszakban" " a szamurájok is viselték, vagy pedig a háztartás védelmére a feleségük." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -68062,7 +68294,7 @@ msgstr "" "pengés fegyverhez hasonló módon készítettek. Ennek mintha egy kicsit " "lötyögne a feje, és az elkészítése is silány minőségű." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -68076,7 +68308,7 @@ msgid_plural "survivor naginata" msgstr[0] "túlélő naginata" msgstr[1] "túlélő naginata" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -68216,7 +68448,7 @@ msgid_plural "ji" msgstr[0] "dzsí" msgstr[1] "dzsí" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -68284,6 +68516,20 @@ msgstr "" "miatt a kard nincsen kiegyensúlyozva, viszont a kicsorbult éllel egészen jól" " lehet vágási sebet ejteni." +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -68291,7 +68537,7 @@ msgid_plural "jian" msgstr[0] "csien" msgstr[1] "csien" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -68384,14 +68630,14 @@ msgid_plural "tanto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -68405,14 +68651,14 @@ msgid_plural "nodachi" msgstr[0] "nodacsi" msgstr[1] "nodacsi" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -68561,7 +68807,7 @@ msgid_plural "katana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -68629,7 +68875,7 @@ msgid_plural "wakizashi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -68702,7 +68948,7 @@ msgid_plural "tiger claws" msgstr[0] "tigriskarom" msgstr[1] "tigriskarom" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -68951,13 +69197,27 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -68973,7 +69233,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -69017,7 +69277,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -69312,7 +69572,7 @@ msgid_plural "scrap copper" msgstr[0] "réztörmelék" msgstr[1] "réztörmelék" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -69583,7 +69843,7 @@ msgid_plural "splintered wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -69813,17 +70073,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "Kinyitod az üveget és kiszeded belőle a kifejlődött élesztőt." -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "Az élesztő még nem fejlődött ki." -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -71104,7 +71364,7 @@ msgid_plural "oars" msgstr[0] "evező" msgstr[1] "evező" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "Egy csónak evezője." @@ -71126,7 +71386,7 @@ msgid_plural "inflatable section" msgstr[0] "felfújható rész" msgstr[1] "felfújható rész" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "Egy felfújható csónak része." @@ -71137,7 +71397,7 @@ msgid_plural "inflatable airbag" msgstr[0] "felfújható légzsák" msgstr[1] "felfújható légzsák" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "Egy felfújható légzsák." @@ -72079,7 +72339,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "szóljanyádnakhozzonpénzt" msgstr[1] "szóljanyádnakhozzonpénzt" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -72096,7 +72356,7 @@ msgid_plural "sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "Vékony fémlemez." @@ -72107,7 +72367,7 @@ msgid_plural "wired sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -72129,7 +72389,7 @@ msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "Acélból készült páncélzat." @@ -72140,7 +72400,7 @@ msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "Robusztus szuperötvözetből készült páncélzat." @@ -72163,7 +72423,7 @@ msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -72411,6 +72671,7 @@ msgstr[0] "napelem" msgstr[1] "napelem" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " @@ -72419,6 +72680,12 @@ msgstr "" "Napsugárzást elektromos energiává alakító berendezés. Járművekre hasznos " "lehet." +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -72562,6 +72829,17 @@ msgstr[1] "" msgid "A vehicle-mounted area heater." msgstr "Egy járműbe szerelt légmelegítő." +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -73008,7 +73286,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -73067,7 +73345,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -73371,7 +73649,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -73384,7 +73662,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -73518,7 +73796,7 @@ msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -73529,7 +73807,7 @@ msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "Egy apró, ezüstösen fénylő fémpellet, tapintásra még mindig meleg." @@ -73726,7 +74004,7 @@ msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73741,7 +74019,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73754,7 +74032,7 @@ msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73767,7 +74045,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73780,7 +74058,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73793,7 +74071,7 @@ msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -73806,7 +74084,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73819,7 +74097,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73832,7 +74110,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73845,7 +74123,7 @@ msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73858,7 +74136,7 @@ msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73871,7 +74149,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -73984,7 +74262,7 @@ msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -74010,7 +74288,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -74023,7 +74301,7 @@ msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -74049,7 +74327,7 @@ msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -74082,7 +74360,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -74429,7 +74707,7 @@ msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -75149,7 +75427,7 @@ msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -76600,7 +76878,7 @@ msgid_plural "subzero talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -76814,7 +77092,7 @@ msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -76937,7 +77215,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -76952,7 +77230,7 @@ msgid_plural "Beagle chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -77785,6 +78063,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "Eltávolítja a játékból a szörnyeket, kivéve a vadállatokat." +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "Készség által növel statisztikák" @@ -77946,8 +78235,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -78311,6 +78600,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -78757,7 +79051,7 @@ msgid_plural "tiny fish" msgstr[0] "apró hal" msgstr[1] "apró hal" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "Egy apró méretű hal" @@ -78768,7 +79062,7 @@ msgid_plural "small fish" msgstr[0] "kis hal" msgstr[1] "kis hal" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "Egy kisméretű hal" @@ -78779,7 +79073,7 @@ msgid_plural "medium fish" msgstr[0] "közepes hal" msgstr[1] "közepes hal" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "Egy közepes méretű hal" @@ -78790,7 +79084,7 @@ msgid_plural "large fish" msgstr[0] "nagy hal" msgstr[1] "nagy hal" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "Egy nagyméretű hal" @@ -78801,7 +79095,7 @@ msgid_plural "huge fish" msgstr[0] "hatalmas hal" msgstr[1] "hatalmas hal" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "Egy hatalmas hal." @@ -78953,7 +79247,7 @@ msgid_plural "whitefish" msgstr[0] "maréna" msgstr[1] "maréna" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -78968,7 +79262,7 @@ msgid_plural "largemouth bass" msgstr[0] "pisztrángsügér" msgstr[1] "pisztrángsügér" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "A pisztrángsügér a sporthorgászok egyik kedvenc hala." @@ -78979,7 +79273,7 @@ msgid_plural "smallmouth bass" msgstr[0] "fekete sügér" msgstr[1] "fekete sügér" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -78994,7 +79288,7 @@ msgid_plural "striped bass" msgstr[0] "csíkos sügér" msgstr[1] "csíkos sügér" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -79008,7 +79302,7 @@ msgid_plural "white bass" msgstr[0] "fehér sügér" msgstr[1] "fehér sügér" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -79047,7 +79341,7 @@ msgid_plural "sunfish" msgstr[0] "naphal" msgstr[1] "naphal" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "Ez a kis hal a sügérfélék nemzetébe tartozik." @@ -79058,7 +79352,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "tökmag naphal" msgstr[1] "tökmag naphal" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -79085,7 +79379,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "vörösmellényű naphal" msgstr[1] "vörösmellényű naphal" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -79098,7 +79392,7 @@ msgid_plural "green sunfish" msgstr[0] "zöld naphal" msgstr[1] "zöld naphal" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -79111,7 +79405,7 @@ msgid_plural "longear sunfish" msgstr[0] "hosszúfülű naphal" msgstr[1] "hosszúfülű naphal" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -79124,7 +79418,7 @@ msgid_plural "redear sunfish" msgstr[0] "vörösfülű naphal" msgstr[1] "vörösfülű naphal" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -79137,7 +79431,7 @@ msgid_plural "rock bass" msgstr[0] "kövi sügér" msgstr[1] "kövi sügér" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -79152,7 +79446,7 @@ msgid_plural "calico bass" msgstr[0] "pomoxis" msgstr[1] "pomoxis" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "A pomoxis a díszsügérfélék családjába tartozó, közepes méretű hal." @@ -79189,7 +79483,7 @@ msgid_plural "channel catfish" msgstr[0] "pettyes harcsa" msgstr[1] "pettyes harcsa" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -79201,7 +79495,7 @@ msgid_plural "white catfish" msgstr[0] "fehér törpeharcsa" msgstr[1] "fehér törpeharcsa" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "A fehér harcsa (Ameiurus catus) egy széles fejű, apró bajszú hal." @@ -79308,7 +79602,7 @@ msgid_plural "fallfish" msgstr[0] "fallfish" msgstr[1] "fallfish" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -79340,7 +79634,7 @@ msgid_plural "crayfish" msgstr[0] "amerikai folyami rák" msgstr[1] "amerikai folyami rák" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -79376,7 +79670,7 @@ msgstr "" "gyakorinak számított. Most, hogy a gátakkal már nem foglalkozik senki, talán" " új esélyt kapnak." -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -79389,7 +79683,7 @@ msgid_plural "giant crayfish" msgstr[0] "óriás languszta" msgstr[1] "óriás languszta" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -79404,7 +79698,7 @@ msgid_plural "colossal crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -80108,7 +80402,7 @@ msgid_plural "fused dragonflies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -80301,7 +80595,7 @@ msgstr[1] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -82035,7 +82329,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -82246,7 +82540,7 @@ msgid_plural "moose" msgstr[0] "jávorszarvas" msgstr[1] "jávorszarvas" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -82432,7 +82726,7 @@ msgstr[0] "bárány" msgstr[1] "bárány" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -82771,10 +83065,11 @@ msgstr[1] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -82785,6 +83080,17 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "Ez egy tesztelési szörny." +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -85165,7 +85471,7 @@ msgid_plural "sawbones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -85180,7 +85486,7 @@ msgid_plural "doctor burns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -85358,7 +85664,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -85487,17 +85793,18 @@ msgstr[1] "zombi ovis" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -85968,7 +86275,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "üszkösödő hús" msgstr[1] "üszkösödő hús" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -86020,7 +86327,7 @@ msgid_plural "scissorlimbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -86034,7 +86341,7 @@ msgid_plural "hanging innards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -86540,7 +86847,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "Shia LaBeouf" msgstr[1] "Shia LaBeouf" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -88457,7 +88764,7 @@ msgid_plural "wisp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -89001,7 +89308,7 @@ msgid_plural "coelophysis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -89014,7 +89321,7 @@ msgid_plural "dilophosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -89027,7 +89334,7 @@ msgid_plural "ceratosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -89041,7 +89348,7 @@ msgid_plural "spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -89055,7 +89362,7 @@ msgid_plural "allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -89070,7 +89377,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -89084,20 +89391,33 @@ msgid_plural "siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -89110,7 +89430,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -89123,7 +89443,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -89136,7 +89456,7 @@ msgid_plural "compsognathus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -89149,7 +89469,7 @@ msgid_plural "gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -89179,7 +89499,7 @@ msgid_plural "nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -89192,7 +89512,7 @@ msgid_plural "deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -89235,7 +89555,7 @@ msgid_plural "amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -89248,7 +89568,7 @@ msgid_plural "apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -89261,7 +89581,7 @@ msgid_plural "brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -89274,7 +89594,7 @@ msgid_plural "diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -89285,7 +89605,7 @@ msgid_plural "camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -89298,7 +89618,7 @@ msgid_plural "brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -89311,7 +89631,7 @@ msgid_plural "alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -89324,7 +89644,7 @@ msgid_plural "scutellosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -89337,7 +89657,7 @@ msgid_plural "stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -89349,7 +89669,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -89362,7 +89682,7 @@ msgid_plural "ankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -89375,7 +89695,7 @@ msgid_plural "nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -89387,7 +89707,7 @@ msgid_plural "edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -89400,7 +89720,7 @@ msgid_plural "camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -89413,7 +89733,7 @@ msgid_plural "parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -89424,7 +89744,7 @@ msgid_plural "maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -89437,7 +89757,7 @@ msgid_plural "corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -89450,7 +89770,7 @@ msgid_plural "edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -89461,7 +89781,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -89474,7 +89794,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -89487,7 +89807,7 @@ msgid_plural "pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -89500,7 +89820,7 @@ msgid_plural "kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -89514,7 +89834,7 @@ msgid_plural "torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -89527,7 +89847,7 @@ msgid_plural "triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -89542,7 +89862,7 @@ msgid_plural "dimorphodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -89555,7 +89875,7 @@ msgid_plural "pteranodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -89568,7 +89888,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -89581,7 +89901,7 @@ msgid_plural "mosasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -89594,7 +89914,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -89607,7 +89927,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -89620,7 +89940,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -89633,7 +89953,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -89646,7 +89966,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -89659,7 +89979,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -89672,7 +89992,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -89775,6 +90095,20 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -90288,20 +90622,20 @@ msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" @@ -90361,7 +90695,6 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -90382,25 +90715,88 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -90623,6 +91019,19 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -90733,7 +91142,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -91193,6 +91602,7 @@ msgstr[1] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -91242,6 +91652,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "" msgstr[1] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -91646,6 +92062,19 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -91678,7 +92107,7 @@ msgid_plural "Rage Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -91691,7 +92120,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -91705,7 +92134,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -91763,7 +92192,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -91826,7 +92255,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -92070,12 +92499,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -92084,66 +92526,67 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -92151,12 +92594,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -92165,12 +92608,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -92179,16 +92622,16 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -92218,7 +92661,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -92231,7 +92674,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -92244,7 +92688,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -92257,20 +92701,26 @@ msgid_plural "skeletal siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -92283,7 +92733,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -92309,7 +92759,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -92321,7 +92771,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -92334,8 +92784,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -92354,7 +92804,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -92368,7 +92818,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -92381,7 +92831,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -92394,7 +92844,7 @@ msgid_plural "armored diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -92407,7 +92857,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -92420,7 +92870,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -92433,7 +92883,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -92446,7 +92896,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -92459,7 +92909,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -92473,7 +92923,7 @@ msgid_plural "Bone Fortress" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -92487,7 +92937,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -92500,7 +92950,7 @@ msgid_plural "armored edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -92513,7 +92963,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -92526,7 +92976,7 @@ msgid_plural "armored maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -92539,7 +92989,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -92552,7 +93002,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -92565,7 +93015,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -92578,7 +93028,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -92591,7 +93041,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -92604,7 +93054,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -92617,7 +93067,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -92630,7 +93080,7 @@ msgid_plural "armored torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -92643,7 +93093,7 @@ msgid_plural "armored triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -92656,7 +93106,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -92670,7 +93120,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -92684,7 +93134,7 @@ msgid_plural "Goliath Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -92697,7 +93147,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -92710,7 +93160,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -92751,7 +93201,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -92772,7 +93222,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -93096,7 +93546,7 @@ msgid_plural "forge hounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -93402,7 +93852,7 @@ msgid_plural "hunllef rams" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -93535,6 +93985,22 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -93812,7 +94278,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -94122,7 +94588,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -99217,7 +99683,7 @@ msgstr[1] "bányászsisak (be)" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -99261,7 +99727,7 @@ msgstr "Kikapcsol" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -100300,7 +100766,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "RX11 stimuláns injekciós rendszer" msgstr[1] "RX11 stimuláns injekciós rendszer" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -100963,17 +101429,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "lövész fülvédő" msgstr[1] "lövész fülvédő" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "Bekapcsolod a fülvédőt." -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "A fülvédőből kimerült az elem." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -100985,7 +101451,7 @@ msgstr "" "állapotban minden hangot kiszűr. Ha elég elem van benne, akkor egy adott " "decibel érték felett blokkolja a hangokat." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -101232,7 +101698,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -101246,6 +101711,14 @@ msgid_plural "military flight helmets (on)" msgstr[0] "" msgstr[1] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -101607,7 +102080,7 @@ msgid_plural "bagpipes" msgstr[0] "duda" msgstr[1] "duda" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -102254,7 +102727,7 @@ msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -102329,7 +102802,7 @@ msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -103077,7 +103550,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -105036,7 +105509,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -105047,7 +105520,7 @@ msgstr "" "pomponnal. A kínai folklór négy fő fegyverének egyike - a többi a dao " "szablya, a csiang lándzsa és a puskás hosszúbot." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -105152,7 +105625,7 @@ msgid_plural "dao" msgstr[0] "dao" msgstr[1] "dao" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -105214,7 +105687,7 @@ msgstr "" " Ezt úgy módosították, hogy pisztolyon vagy géppisztolyon kívül bármilyen " "fegyverre felcsatolható legyen." -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -105225,7 +105698,7 @@ msgstr "" "késeket használták másodlagos fegyverként. Ez is legalább annyira halálos " "fegyver, mint a híresebb testvérei." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -105263,7 +105736,7 @@ msgstr "" "Szíkhek által viselt szertartásos tőr. Ezt nem kifejezetten jól rakták " "össze." -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -105359,7 +105832,7 @@ msgstr "" "úriemberek és a kalózok kedvenc fegyvere. Könnyű és gyors, vele bármilyen " "harc elegánssá válik." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " @@ -105368,7 +105841,7 @@ msgstr "" "Ez egy ritka japán kard. Páncélozatlan ellenfelek ellen halálos, és még a " "páncélzattal szemben is hatékony." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -105386,7 +105859,7 @@ msgstr "" "Ez egy hatalmas német kétkezes kard. Nem vagy abban biztos, hogy ennyire " "hajlékonynak kellene-e lennie." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -105556,7 +106029,7 @@ msgid_plural "synthetic fabric" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -106388,7 +106861,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "elektronikus bilincs" msgstr[1] "elektronikus bilincs" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -108921,13 +109394,9 @@ msgstr "Az ipari zseblámpából kimerült az elem." #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" -"Biztonsági őrök által kedvelt, nehéz alumíniumcsöves, ipari LED " -"fényforrással felszerelt zseblámpa. Közepes közelharci fegyver. " -"Aktiválásával bekapcsolható a fényforrás, ami bevilágítja a környezetet, " -"feltéve, hogy van benne elég elem." #: lang/json/TOOL_from_json.py msgid "heavy duty flashlight (on)" @@ -109676,6 +110145,39 @@ msgstr[1] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -110423,7 +110925,7 @@ msgid_plural "shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -110434,7 +110936,7 @@ msgid_plural "electric shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -110484,6 +110986,32 @@ msgstr "" " annak a befogásához, vagy használd egy üres mezőn a betárolt állat " "elengedéséhez." +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -111076,7 +111604,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -111090,7 +111618,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -111603,8 +112131,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -111612,8 +112140,8 @@ msgid_plural "%s (happy)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -111621,8 +112149,8 @@ msgid_plural "%s (focus)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -111630,8 +112158,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -111639,7 +112167,7 @@ msgid_plural "%s (wake up)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -112126,7 +112654,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "textil ruhadarabos patchwork" msgstr[1] "textil ruhadarabos patchwork" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -112380,13 +112908,13 @@ msgid_plural "loose caltrops" msgstr[0] "szétszórható lábtövis" msgstr[1] "szétszórható lábtövis" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "A lábtöviseket szétszórod a(z) %s felszínén." -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -112401,13 +112929,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "szétszórható üveg lábtövis" msgstr[1] "szétszórható üveg lábtövis" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "Az üveg lábtöviseket szétszórod a(z) %s felszínén." -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -112917,6 +113445,21 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "Ez egy akkumulátoros fúrógép, számos fúrófejjel." +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -113234,7 +113777,7 @@ msgid_plural "pliers" msgstr[0] "fogó" msgstr[1] "fogó" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " @@ -113243,6 +113786,21 @@ msgstr "" "Egyszerű csúszóreteszes fogó a legalapvetőbb gépészeti feladatokhoz. Bármi " "komplikáltabbhoz franciakulcs kell." +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -113301,6 +113859,33 @@ msgstr "" "Számos méretű és fejű csavarhúzót tartalmazó készlet. Garantáltan található " "benne precízebb munkához szükséges szerszám." +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -113447,12 +114032,26 @@ msgstr "" "kicsi ahhoz, hogy tetemek feldarabolásához lehessen használni." #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" -msgstr[0] "franciakulcs" -msgstr[1] "franciakulcs" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " @@ -113461,6 +114060,20 @@ msgstr "" "Ez egy állítható átfogású franciakulcs. Egészen decens közelharci fegyver is" " tud lenni, valamint számos gépészeti projekthez szükséges." +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -113770,36 +114383,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -113830,6 +114413,12 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -114067,8 +114656,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -114521,7 +115110,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -114965,7 +115554,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -115012,7 +115601,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -115030,7 +115619,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -116035,6 +116624,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -116086,6 +116684,30 @@ msgstr[1] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -117007,7 +117629,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -117484,6 +118106,10 @@ msgstr "építés" msgid "mining" msgstr "bányászás" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "rendrakás" @@ -118366,19 +118992,15 @@ msgstr "" "járás közben nyikorog a bokád." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "Ötvözetpáncél - karok" +msgid "Intradermal Alloy - Arms" +msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" -"A karjaidon a húst egy kemény ötvözetből készült páncél váltotta fel, ezzel " -"jelentősen megnövelve a passzív védelmet. Bionikus harcművészettel együtt is" -" használható." #: lang/json/bionic_from_json.py msgid "Protective Lenses" @@ -118396,46 +119018,37 @@ msgstr "" "sírsz, akkor a könnyeidet ki kell köpnöd, vagy le kell nyelni." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" -"A fejeden a húst egy műtéti úton beültetett, kemény ötvözetből készült " -"páncél váltotta fel, ezzel jelentősen megnövelve fejed és az állkapcsod " -"védelmét." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "Ötvözetpáncél - lábak" +msgid "Intradermal Alloy - Legs" +msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" -"A lábaidon a húst egy kemény ötvözetből készült páncél váltotta fel, ezzel " -"jelentősen megnövelve a passzív védelmet. Bionikus harcművészettel együtt is" -" használható." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" -"A mellkasodon a húst egy műtéti úton beültetett, kemény ötvözetből készült " -"páncél váltotta fel, ezzel jelentősen megnövelve a védelmedet." #: lang/json/bionic_from_json.py msgid "Battery System" @@ -118445,12 +119058,9 @@ msgstr "Ceruzaelem-rendszer" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" -"Ceruzaelem méretű, mindennapi elemeket befogadó csatlakozásod van, így " -"azokat is felhasználhatod energiaforrásként. Elemek felhasználásához nyomd " -"meg az E gombot. Igény szerint lehet ki- és bekapcsolni." #: lang/json/bionic_from_json.py msgid "Monomolecular Blade" @@ -124418,8 +125028,8 @@ msgstr "Elfertőződött sebed van." #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." -msgstr "A harapás helyét fertőzöttnek érzed." +msgid "Your wound feels infected." +msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus #. Filled'. @@ -129264,8 +129874,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "csatt!" @@ -129281,9 +129890,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "csörömpölés!" @@ -129960,7 +130568,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "reccs!" @@ -132249,7 +132857,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "kovácsműhely" @@ -132386,6 +132995,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -135074,21 +135697,17 @@ msgstr "" "pisztoly még hasznodra lehet." #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" -"A P32 a Kel-Tec egyik legrégebbi fegyvere, és népszerű opció a mélyen " -"elrejtett fegyverek, valamint a tartalék lőfegyverek terén. Kis mérete és " -"alacsony tömege ellenére a .32 ACP töltényűrnek köszönhetően jól kezelhető " -"és a visszarúgás is megfelelő." #: lang/json/gun_from_json.py msgid "SIG P226" @@ -135248,16 +135867,16 @@ msgstr "" "tűzgyorsasága miatt csak telefonfülkében való harcra találták alkalmasnak." #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -136328,20 +136947,17 @@ msgstr "" ".45x39mm-es lőszer magas sebességével és könnyű súlyával." #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" -"Kifejezetten az FN saját fejlesztésű 5,7x28 mm-es töltényéhez készült. A " -"Five-Seven egy könnyű, nagyon nagy kapacitású pisztoly, amelyet főleg " -"testpáncélos ellenfelek ellen érdemes bevetni." #: lang/json/gun_from_json.py msgid "FN P90" @@ -138814,6 +139430,19 @@ msgid_plural "acid dart guns" msgstr[0] "" msgstr[1] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -141466,13 +142095,10 @@ msgstr[1] "bipod" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" -"A fegyver első részének kitámasztására, valamint a mozgás csökkentésére " -"karabélyokra és géppuskákra gyakran szerelnek bipodot. Bár a visszarúgás " -"hatásainak kezelését nagyban javítják, csak bizonyos felületeken használható" -" és lassan lehet felszerelni." #: lang/json/gunmod_from_json.py msgid "modified bipod" @@ -141483,16 +142109,11 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" -"A fegyver első részének kitámasztására, valamint a mozgás csökkentésére " -"karabélyokra és géppuskákra gyakran szerelnek bipodot. Bár a visszarúgás " -"hatásainak kezelését nagyban javítják, csak bizonyos felületeken használható" -" és a fegyvert lassan lehet kézbevenni. Ezt úgy módosították, hogy szinte " -"bármilyen fegyverre fel lehessen csatolni." #: lang/json/gunmod_from_json.py msgid "combination gun shotgun" @@ -142053,22 +142674,22 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" -msgstr "Kibelezed és kifilézed a halat." +msgid "You gut and fillet the fish." +msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" -"Óvatosan felnyitod a külső vázat, hogy így hozzáférj az alatta rejtőző " -"húshoz." #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" -"A sikertelen kísérlet áldozatának maradványait átkutatod még használható " -"bionikákat keresve." #: lang/json/harvest_from_json.py msgid "" @@ -144545,6 +145166,11 @@ msgstr "" "Ezt a fegyvert jól készítették el és ezért ellenáll a " "harc megpróbáltatásainak." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -145475,6 +146101,13 @@ msgstr "Ennek lapos felülete van, kényelmes róla enni." msgid "You can craft here." msgstr "Itt lehet tárgyakat elkészíteni." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "Felfele görget" @@ -145643,6 +146276,10 @@ msgstr "Panel ki" msgid "Change side armor is worn on" msgstr "Melyik oldalon legyen a páncél?" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "Invlet páncélhoz rendelése" @@ -146755,6 +147392,10 @@ msgstr "Kurzor mozgatása felfelé" msgid "Move cursor down" msgstr "Kurzor mozgatása lefelé" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "Kilép a bill. kiosztás képernyőből." @@ -146956,6 +147597,20 @@ msgstr "Igen" msgid "No" msgstr "Nem" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "Mégse" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "Kilép" @@ -148409,14 +149064,14 @@ msgstr "" "A Skorpion Vz. 61 számára készült tárban .32 ACP lövedékből 20 darab fér el." #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." -msgstr "A Kel-Tec P32 számára készített acél doboztárban 7 lövedék fér el." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." +msgstr "" #: lang/json/magazine_from_json.py msgid "P226 .357 SIG 12-round magazine" @@ -148483,14 +149138,14 @@ msgstr "" "helyezhető el, és tárazható be gyorsan egy kompatibilis revolverbe." #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." -msgstr "A Kel-Tec P3AT számára készített acél doboztárban 6 lövedék fér el." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." +msgstr "" #: lang/json/magazine_from_json.py msgid "FN 1910 6-round magazine" @@ -149142,14 +149797,14 @@ msgstr "" "RPK-74 könnyű géppuskához tervezték." #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." -msgstr "Sztenderd kapacitású tár az FN Five-Sevenhez." +msgid "A standard capacity magazine for use with the FN Five-seveN." +msgstr "" #: lang/json/magazine_from_json.py msgid "P90 50-round magazine" @@ -152659,6 +153314,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -153093,12 +153758,9 @@ msgstr "Aikido" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" -"Az aikido egy önvédelemre összpontosító japán harcművészet, amely a támadón " -"okozott sebzést minimalizálja. Védelmi dobásokból és lefegyverezésekből áll," -" de nincsenek támadó fogásai." #. ~ initiate message for martial art '{'str': 'Aikido'}' #: lang/json/martial_art_from_json.py @@ -153121,7 +153783,8 @@ msgstr "Aikido álláspont" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -153135,7 +153798,7 @@ msgstr "Középszintű aikido" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -153148,11 +153811,37 @@ msgstr "Haladó aikido" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" -"A haladó aikidohoz értők még több ellenfél ellen képesek megvédeni magukat.\n" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" "\n" -"+1 blokkolási lehetőség, +1 kitérési lehetőség." +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" #: lang/json/martial_art_from_json.py msgid "Boxing" @@ -153335,7 +154024,7 @@ msgstr "Capoeira Tempo" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -153350,12 +154039,9 @@ msgstr "Daru kung fu" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" -"Az öt shaolin állati stílus egyike. A Daru bonyolult kéztechnikákat és " -"elugró kitérést használ. Az ügyesség határozza meg az általad bevitt sebzés " -"jelentős részét, és nem pedig az erő. Egy mezőnyi továbblépéssel a következő" -" körben némi kitérési bónuszt is kapsz, illetve kitérsze egy támadás elől." #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -153384,22 +154070,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" -msgstr "Daru röpte" +msgid "Crane's Stance" +msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" -"Úgy kerülöd el a veszélyt, ahogyan a madár száll fel az égbe.\n" -"\n" -"+1.0 kitérési készség.\n" -"2 körig tart." #: lang/json/martial_art_from_json.py msgid "Crane's Grace" @@ -153409,15 +154090,25 @@ msgstr "Daru kecsessége" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." msgstr "" -"A daruhoz hasonlóan gyorsan kitérsz a veszély elől.\n" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "Daru röpte" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" "\n" -"+1 kitérési esély, +1.0 kitérési készség.\n" -"2 körig tart." +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." +msgstr "" #: lang/json/martial_art_from_json.py msgid "Dragon Kung Fu" @@ -153427,15 +154118,11 @@ msgstr "Sárkány kung fu" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" -"Az öt shaolin állati stílus egyike. A Sárkány folyékony mozgásáról és " -"keményen bevitt ütéseiről ismert. Az ügyesség helyett az intelligencia " -"növeli az ütések pontosságát. A támadásaid olyan ellentámadásokhoz " -"vezethetnek, amelyek lebéníthatják az ellenfeleidet, és előkészítenek egy " -"erőteljes kivégzési mozdulatot." #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -153449,38 +154136,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" -msgstr "Sárkány röpte" +msgid "Dragon's Knowledge" +msgstr "Sárkány bölcsessége" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" -"Az élet és a harc ugyanabba a körbe tartozik. Egy támadás ellentámadáshoz, majd újabb támadáshoz vezet. Fejezd be a körforgást.\n" -"\n" -"+1 pontosság, +2 zúzó sebzés.\n" -"Elérhető lesz a sárkány örvény blokkolás és a sárkányszárny kitérés\n" -"1 körig tart." #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" -msgstr "Sárkány bölcsessége" +msgid "Dragon Wing" +msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" +"\n" +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -153580,6 +154283,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "Elhárítás" @@ -153640,7 +154357,7 @@ msgstr "Szilárd állás" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -153654,8 +154371,9 @@ msgstr "Taktikai visszavonulás" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -153669,6 +154387,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -153726,6 +154445,19 @@ msgstr "" "Az ellenfelet megragadó ismereteidnek köszönhetően azonnal felépülsz egy földre dobó hatástól.\n" "Továbbá az erős dzsúdó dobás ellentámadással megragadhatod majd a földre lökheted egy ellenfeled." +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "Karate" @@ -153825,6 +154557,21 @@ msgstr "" "\n" "+1 pontosság, +1 blokkolási esély." +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "Leopárd kung fu" @@ -153982,6 +154729,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "Muay Thai" @@ -154351,21 +155113,18 @@ msgstr "" "+1 kitérési lehetőség." #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" -msgstr "Silat kitérés" +msgid "Silat Ambush" +msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" -"Mozgás közben alacsonyan maradsz, így az ellenfeleid nehezebben tudják, hogy hol is vagy.\n" -"\n" -"+1 kitérési esély.\n" -"2 körig tart." #: lang/json/martial_art_from_json.py msgid "Silat Appraisal" @@ -154475,11 +155234,8 @@ msgstr "Szódzsucu álláspont" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" -"A képzésnek köszönhetően a csatabárddal jobban tudsz védekezni.\n" -"\n" -"+1 blokkolási lehetőség." #: lang/json/martial_art_from_json.py msgid "Superior Positioning" @@ -154594,33 +155350,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" -msgstr "Hátra azzal a majommal" +msgid "Cross Hands" +msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" -msgstr "" +msgid "Repulse the Monkey" +msgstr "Hátra azzal a majommal" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -154749,7 +155505,7 @@ msgstr "Csí-szaó érzékenység" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -154965,6 +155721,21 @@ msgstr "" "\n" "+2 blokkolási esély, +1 pontosság" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -155032,10 +155803,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -155136,10 +155908,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -155783,7 +156556,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -155793,11 +156581,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -155891,6 +156680,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -155903,21 +156706,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -155995,6 +156799,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -157806,7 +158624,7 @@ msgstr "Szerintem még nem kaptuk el." msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -158044,7 +158862,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -158283,7 +159101,7 @@ msgstr "Annyira csalódtam benned, öcsi..." msgid "Prove You're A Survivor" msgstr "Bizonyítsd be, hogy túlélő vagy" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -158351,8 +159169,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "Gyűjts gyékényszálakat és készíts gyékényzselét" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -158534,7 +159351,7 @@ msgstr "Akkor próbáld meg újra, amíg csak meg nem hallod." msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -158548,7 +159365,7 @@ msgstr "-" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -158587,7 +159404,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -158622,7 +159439,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -158653,7 +159470,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -158695,7 +159512,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -158737,16 +159554,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -158793,7 +159644,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -158843,7 +159694,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -158885,7 +159736,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -158934,7 +159785,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -158961,7 +159812,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -158996,7 +159847,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -159981,7 +160832,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -160016,7 +160867,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -160053,7 +160904,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -160088,7 +160939,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -160116,7 +160967,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -160168,7 +161019,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -160199,7 +161050,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -160228,7 +161079,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -160258,7 +161109,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -160560,8 +161411,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -160962,7 +161812,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -161003,7 +161853,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -161030,7 +161880,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -161112,7 +161962,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -161149,7 +161999,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -161193,7 +162043,7 @@ msgstr "Köszönöm! Szólok a többieknek is, hogy benned lehet bízni." msgid "Clear Back Bay" msgstr "Rakj rendet a hátsó rakodónál" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -161252,7 +162102,7 @@ msgstr "" msgid "Missing Caravan" msgstr "Hiányzó karaván" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -161310,7 +162160,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "Prospektus begyűjtése" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -161351,7 +162201,7 @@ msgstr "" msgid "Solar Power" msgstr "Napenergia" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -161390,7 +162240,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -161435,7 +162285,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -161446,6 +162296,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -161592,7 +162500,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -161647,7 +162555,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -161686,7 +162594,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -161723,11 +162631,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -161753,15 +162713,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -161818,7 +162774,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -161868,7 +162824,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -161913,7 +162869,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -161954,11 +162910,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -162001,7 +162958,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -162049,7 +163006,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -162093,7 +163050,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -163752,7 +164709,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -163771,7 +164728,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -163798,7 +164755,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -163832,7 +164789,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -163879,7 +164836,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -164662,6 +165619,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -165354,14 +166335,14 @@ msgstr "A szíved vadul dobog, ahogyan az injekció eléri a hatását." #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." -msgstr "Magáévá tette a bestiális természetét." +msgid "Embraced their bestial nature." +msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." -msgstr "Magáévá tette a bestiális természetét." +msgid "Embraced their bestial nature." +msgstr "" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py @@ -166108,6 +167089,28 @@ msgstr "" "A Mérges klán tanoncaként kiválaszthatod, hogy az alábbi halálos mérgek " "közül melyikkel kezdesz: százlábú, vipera, skorpió, gyík vagy varangy." +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "Haj: fekete, géppel nyírt" @@ -167024,7 +168027,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -167035,6 +168037,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -167175,7 +168184,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -167446,9 +168455,11 @@ msgstr "Ijesztő" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" +"Van benned valami, ami megijeszti a többi lényt, és nagyobb valószínűséggel " +"fognak menekülni próbálni." #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -170823,8 +171834,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -171097,8 +172108,8 @@ msgstr "Erős" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" -msgstr "Az izmaid egy kicsit erősebbek. +1 erő." +msgid "Your muscles are a little stronger. +1 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Strong" @@ -171106,8 +172117,8 @@ msgstr "Nagyon erős" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" -msgstr "Az izmaid erősebbek. +2 erő." +msgid "Your muscles are stronger. +2 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Strong" @@ -171115,8 +172126,8 @@ msgstr "Rendkívül erős" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" -msgstr "Az izmaid sokkal erősebbek. +4 erő." +msgid "Your muscles are much stronger. +4 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Strong" @@ -171124,8 +172135,8 @@ msgstr "Elképesztően erős" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" -msgstr "Az izmaid láthatóan erőtől duzzadnak. +7 erő." +msgid "Your muscles are noticeably bulging. +7 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Strength" @@ -171142,8 +172153,8 @@ msgstr "Ügyes" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" -msgstr "Egy kicsit fürgébb vagy. +1 ügyesség." +msgid "You are a little nimbler. +1 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Dextrous" @@ -171151,8 +172162,8 @@ msgstr "Nagyon ügyes" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" -msgstr "Fürgébb vagy. +2 ügyesség." +msgid "You are nimbler. +2 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Dextrous" @@ -171160,8 +172171,8 @@ msgstr "Rendkívül ügyes" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" -msgstr "Fürgébb és gyorsabb vagy. +4 ügyesség." +msgid "You are nimble and quick. +4 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Dextrous" @@ -171169,8 +172180,8 @@ msgstr "Elképesztően ügyes" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" -msgstr "Sokkal fürgébb vagy, mint korábban. +7 ügyesség." +msgid "You are much nimbler than before. +7 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Dexterity" @@ -171187,8 +172198,8 @@ msgstr "Okos" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" -msgstr "Egy kicsit okosabb vagy. +1 intelligencia." +msgid "You are a little smarter. +1 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Smart" @@ -171196,8 +172207,8 @@ msgstr "Nagyon okos" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" -msgstr "Okosabb vagy. +2 intelligencia." +msgid "You are smarter. +2 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Smart" @@ -171206,9 +172217,8 @@ msgstr "Rendkívül okos" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" -"Sokkal okosabb vagy, a koponyád egy kicsit kidudorodik. +4 intelligencia." #: lang/json/mutation_from_json.py msgid "Insanely Smart" @@ -171217,9 +172227,8 @@ msgstr "Elképesztően okos" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" -"A koponyád láthatóan kidudorodik a lenyűgöző agyadtól. +7 intelligencia." #: lang/json/mutation_from_json.py msgid "Prime Intelligence" @@ -171252,8 +172261,8 @@ msgstr "Figyelmes" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" -msgstr "Az érzékszerveid egy kicsit kifinomultabbak. +1 érzékelés." +msgid "Your senses are a little keener. +1 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Perceptive" @@ -171261,8 +172270,8 @@ msgstr "Nagyon figyelmes" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" -msgstr "Az érzékszerveid kifinomultabbak. +2 érzékelés." +msgid "Your senses are keener. +2 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Perceptive" @@ -171270,8 +172279,8 @@ msgstr "Rendkívül figyelmes" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" -msgstr "Az érzékszerveid sokkal kifinomultabbak. +4 érzékelés." +msgid "Your senses are much keener. +4 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Perceptive" @@ -171279,9 +172288,8 @@ msgstr "Elképesztően figyelmes" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" -"Olyan dolgokat is észreveszel, amiről még álmodni sem tudtál. +7 érzékelés." #: lang/json/mutation_from_json.py msgid "Prime Perception" @@ -171850,7 +172858,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -171977,8 +172985,8 @@ msgstr "Nagyon álmos" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." -msgstr "Gyakran van szükséged alvásra. Időd nagyjából felét az ágyban töltöd." +"your time in or around a bed." +msgstr "" #: lang/json/mutation_from_json.py msgid "Weakening" @@ -176707,6 +177715,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -176742,6 +177751,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -177300,6 +178317,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -177435,6 +178460,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -177603,6 +178632,10 @@ msgstr "Bróker" msgid "Guard" msgstr "Őr" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "Makayla Sanchez" @@ -177771,6 +178804,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -178706,6 +179743,10 @@ msgstr "nyálkaverem" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -179395,6 +180436,10 @@ msgstr "hegyes karókkal kibélelt árok" msgid "fabrication workshop survey" msgstr " gyártó műhely felmérés" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "kitűzött kovácsműhely" @@ -179403,24 +180448,40 @@ msgstr "kitűzött kovácsműhely" msgid "blacksmith shop" msgstr "kovácsműhely" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "istálló felmérés" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "raktárépület felmérés" +#: lang/json/overmap_terrain_from_json.py +msgid "store house survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "saltworks survey" msgstr "sóbánya felmérés" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "kantin felmérés" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -179787,6 +180848,10 @@ msgstr "mi-go felderítő torony" msgid "subway station?" msgstr "metróállomás?" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -181243,6 +182308,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -181359,6 +182478,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -181395,7 +182542,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -181408,7 +182555,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -182019,6 +183166,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -182291,6 +183464,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -182417,6 +183644,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -182465,6 +183720,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -182487,6 +183770,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -187125,6 +188460,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -191585,6 +192978,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -192788,4404 +194203,5877 @@ msgid "build 5. pair of mattress beds" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 1. pair of straw beds in place of desks." -msgstr "" +msgid "Let's build 1. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 1. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 2. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 2. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 3. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 3. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 4. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 4. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 5. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 5. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey Light Industry Workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "expansion survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's add a drop hammer for even more crafting possibilities." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "drop hammer" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's remove plants from garden and plow a few plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare garden" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a radio tower and console" +msgstr "rádiótorony és konzol építése" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's entrance." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "entrance survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's swimming pool." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "swimming pool survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bedrooms." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bedrooms survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's???." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "??? survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's library." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "library survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bedroom survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's living rooms." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "living rooms survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "swimming survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bar." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bar survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bunk bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build another bunk bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "another bunk bed" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a well will give us easy access to water and allow us to start small" +" farm." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's plow some plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "small farm" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could try to fix reactor's controller to power lights, it would really " +"help us in planning missions." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix reactor's controller" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's set up a radio tower to improve our recruitment efforts, we will " +"redirect some power into it from nuclear reactor." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal shack with a metal roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth shack with a sod roof for our blacksmith's " +"workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a stone shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "stone blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle and daub shack with a sod roof for our blacksmith's " +"workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle and daub blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wooden shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock forge and a workbench to start smithing." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "workbench and forge" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second workbench and a drop hammer for more productive " +"smithing." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "workbench and drop hammer" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a butchery rack, so we can start hunting large animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should remove some of display racks and counters, then build a pair of " +"mattress beds inside radio control's room for our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds inside radio tower shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the northeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in NE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southwest corner shack for " +"our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southwest side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southeast corner shack for " +"our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the south side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in S side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should remove some of display racks and counters, then build a pair of " +"straw beds inside radio control's room for our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds inside radio tower shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the northeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in NE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southwest corner shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southwest side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southeast corner shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the south side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in S side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a root cellar will give us a way to preserve food." +msgstr "Egy földpince kiásásával lehetőségünk lesz tartósítani az ételt." + +#: lang/json/recipe_from_json.py +msgid "Digging a well will give us easy access to water." +msgstr "Egy kút kiásásával könnyen juthatunk majd vízhez." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's fix up radio tower and controls to improve our recruitment efforts." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix radio tower and controls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should dig pits for palisade around camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should build palisade around camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build palisade" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could try to fix whole tower and supply it with enough power, which could" +" give us remote access to computer systems connected to backbone network or " +"communication satellites." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix whole radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the south " +"side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the south " +"side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build migo resin walls over windows in radio " +"control's room." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "barricade radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"inside radio tower." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the south" +" side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build wooden walls over windows in radio control's " +"room." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof inside " +"radio tower." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should reorganize that dining area into our " +"kitchen." +msgstr "" +"Most, hogy van némi fedél felettünk, azt az ebédlő részt átrendezhetnénk " +"konyhává." + +#: lang/json/recipe_from_json.py +msgid "prepare the kitchen area" +msgstr "konyha előkészítése" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well, put it near that winch. This will make our future " +"here more secure." +msgstr "" +"Egy kutat kellene építenünk és a csörlő közelébe rakni. Így még " +"biztonságosabb lesz itt a jövőnk." + +#: lang/json/recipe_from_json.py +msgid "build a well" +msgstr "építs egy kutat" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's set up a radio tower to improve our recruitment efforts, we'll " +"repurpose that terminal for it." +msgstr "" +"Állítsunk fel egy rádiótornyot, hogy segítségével jobban tudjunk túlélőket " +"toborozni. Ehhez átprogramozzuk azt a terminált." + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should add some storage and a root cellar in" +" our kitchen area." +msgstr "" +"Most, hogy van némi fedél felettünk, az ebédlőhöz hozzáadhatnánk némi " +"tárolót és egy földpincét." + +#: lang/json/recipe_from_json.py +msgid "add storage and root cellar" +msgstr "tároló és földpince hozzáadása" + +#: lang/json/recipe_from_json.py +msgid "Let's break up some pavement so we can farm." +msgstr "Törjük fel az aszfaltot, hogy tudjunk hol növényt termeszteni." + +#: lang/json/recipe_from_json.py +msgid "break up driveway" +msgstr "behajtó feltörése" + +#: lang/json/recipe_from_json.py +msgid "Let's build a privacy fence around the garden." +msgstr "Építsünk embermagasságú kerítést a kert köré." + +#: lang/json/recipe_from_json.py +msgid "build a privacy fence" +msgstr "embermagasságú kerítés építése" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot. Let's put it in that dining area." +msgstr "" +"Most, hogy van némi fedél felettünk, a főzéshez építsünk egy kandallót, és " +"szerezzünk egy lábost. Ezeket helyezzük az ebédlőbe." + +#: lang/json/recipe_from_json.py +msgid "build a fireplace" +msgstr "kandalló építése" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should set up a brazier for cooking, and " +"grab a pot. Let's put it in that dining area." +msgstr "" +"Most, hogy van némi fedél felettünk, a főzéshez helyezzünk el egy " +"parázstartót, és szerezzünk egy lábost. Ezeket helyezzük az ebédlőbe." + +#: lang/json/recipe_from_json.py +msgid "build a brazier" +msgstr "parázstartó építése" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot. Let's put it in that dining area." +msgstr "" +"Most, hogy van némi fedél felettünk, a főzéshez építsünk egy kályhát, és " +"szerezzünk egy lábost. Ezeket helyezzük az ebédlőbe." + +#: lang/json/recipe_from_json.py +msgid "build a wood stove" +msgstr "fa kályha építése" + +#: lang/json/recipe_from_json.py +msgid "Let's build some smokers and a charcoal kiln for food preservation." +msgstr "Az étel tartósításához építsünk néhány füstölőt és faszenes kemencét." + +#: lang/json/recipe_from_json.py +msgid "build smoking racks and charcoal kiln" +msgstr "füstölőállvány és faszenes kemence építése" + +#: lang/json/recipe_from_json.py +msgid "Let's make a butchery area." +msgstr "Alakítsunk ki egy hentes munkahelyet." + +#: lang/json/recipe_from_json.py +msgid "build butchery area" +msgstr "hentes munkahely építése" + +#: lang/json/recipe_from_json.py +msgid "Let's add a vat for fermenting." +msgstr "Erjesztéshez adjunk hozzá egy erjesztőkádat." + +#: lang/json/recipe_from_json.py +msgid "build fermenting vats" +msgstr "erjesztőkádak építése" + +#: lang/json/recipe_from_json.py +msgid "Let's gather some tools so we can work on cars." +msgstr "" +"Gyűjtsünk össze néhány szerszámot, hogy a kocsikon tudjunk majd dolgozni." + +#: lang/json/recipe_from_json.py +msgid "add tools for garage" +msgstr "szerszámok összegyűjtése autószereléshez" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southwest bedroom." +msgstr "Rendezzük be a délnyugati hálószobát." + +#: lang/json/recipe_from_json.py +msgid "furnish the SW bedroom" +msgstr "DNy-i hálószoba berendezése" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the northwest bedroom." +msgstr "Rendezzük be az északnyugati hálószobát." + +#: lang/json/recipe_from_json.py +msgid "furnish the NW bedroom" +msgstr "ÉNy-i hálószoba berendezése" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southeast bedroom." +msgstr "Rendezzük be a délkeleti hálószobát." + +#: lang/json/recipe_from_json.py +msgid "furnish the SE bedroom" +msgstr "DK-i hálószoba berendezése" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the northeast bedroom." +msgstr "Rendezzük be az északkeleti hálószobát." + +#: lang/json/recipe_from_json.py +msgid "furnish the NE bedroom" +msgstr "ÉK-i hálószoba berendezése" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the common area." +msgstr "Rendezzük be a közös tereket." + +#: lang/json/recipe_from_json.py +msgid "furnish the common area furniture" +msgstr "közös terek bebútorozása" + +#: lang/json/recipe_from_json.py +msgid "Let's build a fabrication workshop." +msgstr "Építsünk egy gyártó műhelyt." + +#: lang/json/recipe_from_json.py +msgid "build a metalworking forge" +msgstr "fémmegmunkáló kovácsműhely építése" + +#: lang/json/recipe_from_json.py +msgid "Let's build an anvil and crucible to increase our crafting options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "add an anvil and crucible" +msgstr "üllő és tégely hozzáadása" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build pottery kiln and get the tools we'll need for glassworking." +msgstr "" +"Építsünk egy agyagsütő kemencét és szerezzük be az üvegkészítéshez szükséges" +" szerszámokat." + +#: lang/json/recipe_from_json.py +msgid "build a pottery kiln" +msgstr "agyagkemence építése" + +#: lang/json/recipe_from_json.py +msgid "We need some tools for metal working." +msgstr "A fém megmunkálásához szerszámok kellenek." + +#: lang/json/recipe_from_json.py +msgid "place advanced tools" +msgstr "haladó szerszámok elhelyezése" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get a nice workbench built to improve our work. Place it next to the " +"anvil." +msgstr "" +"A munkánk megkönnyítésére építsünk egy munkalapot, majd helyezzük az üllő " +"mellé." + +#: lang/json/recipe_from_json.py +msgid "build a workbench" +msgstr "munkalap építése" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's add a bellows and barrel for quenching the steel, we'll need more " +"tools too." +msgstr "" +"Az acél edzéséhez adjunk a kovácsműhelyhez egy fújtatót és egy hordót. " +"További szerszámokra is szükségünk lesz." + +#: lang/json/recipe_from_json.py +msgid "build a bellows and barrel" +msgstr "fújtató és hordó építése" + +#: lang/json/recipe_from_json.py +msgid "Let's build a drop hammer for some mass production." +msgstr "A tömeges gyártáshoz építsünk ejtőkalapácsot." + +#: lang/json/recipe_from_json.py +msgid "build a drop hammer." +msgstr "ejtőkalapács építése" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with standard walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the standard white living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with wood panel walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with log walls, we'll use that far vehicle " +"bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with metal walls, we'll use that far vehicle " +"bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with mi-go resin walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with rammed earth walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with rock walls, we'll use that far vehicle " +"bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock earth living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with wattle and daub walls, we'll use that far" +" vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle and daub living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should survey the roof top and set up a bulletin board." +msgstr "Fel kellene mérni a tetőt, és felállítani egy hirdetőtáblát." + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace in the northeast " +"shack." +msgstr "" +"Most, hogy van némi fedél felettünk, az északkeleti kunyhóban kellene egy " +"kandallót építeni." + +#: lang/json/recipe_from_json.py +msgid "northeast fireplace" +msgstr "északkeleti kandalló" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should set up a brazier in the northeast " +"shack." +msgstr "" +"Most, hogy van némi fedél felettünk, az északkeleti kunyhóban kellene egy " +"parázstartót építeni." + +#: lang/json/recipe_from_json.py +msgid "northeast brazier" +msgstr "északkeleti parázstartó" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove in the northeast shack." +msgstr "" +"Most, hogy van némi fedél felettünk, az északkeleti kunyhóban kellene egy " +"kályhát építeni." + +#: lang/json/recipe_from_json.py +msgid "northeast stove" +msgstr "északkeleti kályha" + +#: lang/json/recipe_from_json.py +msgid "A straw bed in the northeast shack will make sleeping easier." +msgstr "" +"Az északkeleti kunyhóban épített szalmaágyon jobban lehet majd aludni." + +#: lang/json/recipe_from_json.py +msgid "northeast straw bed" +msgstr "északkeleti szalmaágy" + +#: lang/json/recipe_from_json.py +msgid "" +"A proper bed in the northeast shack will give one of us a place to sleep " +"soundly." +msgstr "" +"Az északkeleti kunyhóban épített rendes ágyon az egyikünk még jobban tud " +"majd aludni." + +#: lang/json/recipe_from_json.py +msgid "northeast bed" +msgstr "északkeleti ágy" + +#: lang/json/recipe_from_json.py +msgid "Another straw bed in the northeast shack will make sleeping easier." +msgstr "" +"Az északkeleti kunyhóban épített még egy szalmaágyon jobban lehet majd " +"aludni." + +#: lang/json/recipe_from_json.py +msgid "" +"Another proper bed in the northeast shack will give one of us a place to " +"sleep soundly." +msgstr "" +"Az északkeleti kunyhóban épített még egy rendes ágyon az egyikünk még jobban" +" tud majd aludni." + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the east tent will allow us to house two more people" +" and expand the camp." +msgstr "" +"A keleti sátorban megépített két darab szalmaágynak köszönhetően még két főt" +" tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "east straw beds" +msgstr "keleti szalmaágyak" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the east tent will allow us to house two more " +"people and expand the camp." +msgstr "" +"A keleti sátorban megépített két darab rendes ágynak köszönhetően még két " +"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "east beds" +msgstr "keleti ágyak" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the east room will allow us to house two more people" +" and expand the camp." +msgstr "" +"A keleti szobában megépített két darab szalmaágynak köszönhetően még két főt" +" tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the east room will allow us to house two more " +"people and expand the camp." +msgstr "" +"A keleti szobában megépített két darab rendes ágynak köszönhetően még két " +"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the southeast tent will allow us to house two more " +"people and expand the camp." +msgstr "" +"A délkeleti sátorban megépített két darab szalmaágynak köszönhetően még két " +"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "southeast straw beds" +msgstr "délkeleti szalmaágyak" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the southeast tent will allow us to house two more " +"people and expand the camp." +msgstr "" +"A délkeleti sátorban megépített két darab rendes ágynak köszönhetően még két" +" főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "southeast beds" +msgstr "délkeleti ágyak" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the southeast room will allow us to house two more " +"people and expand the camp." +msgstr "" +"A délkeleti szobában megépített két darab szalmaágynak köszönhetően még két " +"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the southeast room will allow us to house two more " +"people and expand the camp." +msgstr "" +"A délkeleti szobában megépített két darab rendes ágynak köszönhetően még két" +" főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the northwest building will allow us to house two " +"more people and expand the camp." +msgstr "" +"Az északnyugati épületben megépített két darab szalmaágynak köszönhetően még" +" két főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "northwest straw beds" +msgstr "északnyugati szalmaágy" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the northwest building will allow us to house two " +"more people and expand the camp." +msgstr "" +"Az északnyugati épületben megépített két darab rendes ágynak köszönhetően " +"még két főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "northwest beds" +msgstr "északnyugati ágyak" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the west tent will allow us to house two more people" +" and expand the camp." +msgstr "" +"A nyugati sátorban megépített két darab szalmaágynak köszönhetően még két " +"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "west straw beds" +msgstr "nyugati szalmaágyak" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the west tent will allow us to house two more " +"people and expand the camp." +msgstr "" +"A nyugati sátorban megépített két darab rendes ágynak köszönhetően még két " +"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "west beds" +msgstr "nyugati ágyak" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the west room will allow us to house two more people" +" and expand the camp." +msgstr "" +"A nyugati szobában megépített két darab szalmaágynak köszönhetően még két " +"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the west room will allow us to house two more " +"people and expand the camp." +msgstr "" +"A nyugati szobában megépített két darab rendes ágynak köszönhetően még két " +"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the southwest tent will allow us to house two more " +"people and expand the camp." +msgstr "" +"A délnyugati sátorban megépített két darab szalmaágynak köszönhetően még két" +" főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "southwest straw beds" +msgstr "délnyugati szalmaágyak" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the southwest tent will allow us to house two more " +"people and expand the camp." +msgstr "" +"A délnyugati sátorban megépített két darab rendes ágynak köszönhetően még " +"két főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "southwest beds" +msgstr "délnyugati ágyak" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the southwest room will allow us to house two more " +"people and expand the camp." +msgstr "" +"A délnyugati szobában megépített két darab szalmaágynak köszönhetően még két" +" főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the southwest room will allow us to house two more " +"people and expand the camp." +msgstr "" +"A délnyugati szobában megépített két darab rendes ágynak köszönhetően még " +"két főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." + +#: lang/json/recipe_from_json.py +msgid "" +"A fireplace, counter, and some pots and pans in the central building will " +"allow us to cook simple recipes and organize hunting expeditions." +msgstr "" +"A központi épületben megépített kandallónak, pultnak és lábasoknak, " +"serpenyőknek köszönhetően egyszerű receptekből tudunk főzni, és szervezni " +"vadászati kirándulásokat." + +#: lang/json/recipe_from_json.py +msgid "central fireplace" +msgstr "központi kandalló" + +#: lang/json/recipe_from_json.py +msgid "" +"We need a butchery rack to maximize the harvest from our hunting and " +"trapping efforts." +msgstr "" +"A vadászati és csapdázási eredményeink maximális kihasználása érdekében " +"szükségünk van egy hentesállványra." + +#: lang/json/recipe_from_json.py +msgid "central butchery rack" +msgstr "központi hentesállvány" + +#: lang/json/recipe_from_json.py +msgid "" +"A tool rack in the central building will give us a place to store tools." +msgstr "" +"A központi épületbe épített szerszámtároló segítségével szervezettebben " +"tudjuk eltárolni a szerszámainkat." + +#: lang/json/recipe_from_json.py +msgid "central tool rack" +msgstr "központi szerszámtároló" + +#: lang/json/recipe_from_json.py +msgid "" +"Setting up some tables and chairs will make the central building into a " +"dining area, and we can also use them as a workspace to organize the camp." +msgstr "" +"A központi épületben megépített asztalok és székek adják majd a központi " +"ebédlőt, és az asztalokon a tábor szervezését is meg tudjuk majd oldani." + +#: lang/json/recipe_from_json.py +msgid "central dining hall" +msgstr "központi ebédlő" + +#: lang/json/recipe_from_json.py +msgid "south dining hall" +msgstr "déli ebédlő" + +#: lang/json/recipe_from_json.py +msgid "" +"A wood stove, counter, and some pots and pans in the south half of the " +"central building will allow us to cook simple recipes and organize hunting " +"expeditions. The stove will be more efficient than a fireplace." +msgstr "" +"A központi épület déli részében megépített fa kályhának, pultnak és " +"lábasoknak, serpenyőknek köszönhetően egyszerű receptekből tudunk főzni, és " +"szervezni vadászati kirándulásokat. A kályha a kandallónál hatékonyabb lesz." + +#: lang/json/recipe_from_json.py +msgid "south wood stove" +msgstr "déli fa kályha" + +#: lang/json/recipe_from_json.py +msgid "north water well" +msgstr "északi kút" + +#: lang/json/recipe_from_json.py +msgid "north root cellar" +msgstr "északi földpince" + +#: lang/json/recipe_from_json.py +msgid "We could build a radio tower to improve the range of our radios." +msgstr "A rádióink hatótávolságának növeléséhez építhetnénk egy rádiótornyot." + +#: lang/json/recipe_from_json.py +msgid "north radio tower" +msgstr "északi rádiótorony" + +#: lang/json/recipe_from_json.py +msgid "" +"Adding a console to control the radio tower will help with recruiting more " +"survivors." +msgstr "" +"A rádiótorony konzollal való kibővítése után még több túlélőt tudunk majd " +"toborozni." + +#: lang/json/recipe_from_json.py +msgid "north radio console" +msgstr "északi rádiós konzol" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a trench along the north edge of the camp would provide some defense" +" and generate building materials." +msgstr "" +"A tábor északi részén ásott ároknak köszönhetően némileg növeljük a " +"védelmünket és építőanyaghoz is juthatunk." + +#: lang/json/recipe_from_json.py +msgid "north trench" +msgstr "északi árok" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a trench along the south edge of the camp would provide some defense" +" and generate building materials." +msgstr "" +"A tábor déli részén ásott ároknak köszönhetően némileg növeljük a " +"védelmünket és építőanyaghoz is juthatunk." + +#: lang/json/recipe_from_json.py +msgid "south trench" +msgstr "déli árok" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a trench along the northeast corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the east side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." +msgstr "" +"A tábor északkeleti sarkánál ásott ároknak köszönhetően némileg növeljük a " +"védelmünket és építőanyaghoz is juthatunk. Ha a tábor keleti oldalán egész " +"végig épületek vannak, akkor csak az épületekig kell kiásni az árkot." + +#: lang/json/recipe_from_json.py +msgid "northeast trench" +msgstr "északkeleti árok" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a trench along the northwest corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the west side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." +msgstr "" +"A tábor északnyugati sarkánál ásott ároknak köszönhetően némileg növeljük a " +"védelmünket és építőanyaghoz is juthatunk. Ha a tábor nyugati oldalán egész " +"végig épületek vannak, akkor csak az épületekig kell kiásni az árkot." + +#: lang/json/recipe_from_json.py +msgid "northwest trench" +msgstr "északnyugati árok" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a trench along the southeast corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the east side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." +msgstr "" +"A tábor délkeleti sarkánál ásott ároknak köszönhetően némileg növeljük a " +"védelmünket és építőanyaghoz is juthatunk. Ha a tábor keleti oldalán egész " +"végig épületek vannak, akkor csak az épületekig kell kiásni az árkot." + +#: lang/json/recipe_from_json.py +msgid "southeast trench" +msgstr "délkeleti árok" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a trench along the southwest corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the west side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." +msgstr "" +"A tábor délnyugati sarkánál ásott ároknak köszönhetően némileg növeljük a " +"védelmünket és építőanyaghoz is juthatunk. Ha a tábor nyugati oldalán egész " +"végig épületek vannak, akkor csak az épületekig kell kiásni az árkot." + +#: lang/json/recipe_from_json.py +msgid "southwest trench" +msgstr "délnyugati árok" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a trench along the east edge of the camp would provide some defense " +"and generate building materials. We'll need to run the trench the length of" +" the camp if we don't have solid buildings all along the east side." +msgstr "" +"A tábor keleti oldalán ásott ároknak köszönhetően némileg növeljük a " +"védelmünket és építőanyaghoz is juthatunk. Ha a tábor keleti oldalán " +"nincsenek egész végig épületek, akkor végig kell kiásni az árkot." + +#: lang/json/recipe_from_json.py +msgid "east trench" +msgstr "keleti árok" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a trench along the west edge of the camp would provide some defense " +"and generate building materials. We'll need to run the trench the length of" +" the camp if we don't have solid buildings all along the west side." +msgstr "" +"A tábor nyugati oldalán ásott ároknak köszönhetően némileg növeljük a " +"védelmünket és építőanyaghoz is juthatunk. Ha a tábor nyugati oldalán " +"nincsenek egész végig épületek, akkor végig kell kiásni az árkot." + +#: lang/json/recipe_from_json.py +msgid "west trench" +msgstr "nyugati árok" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build half of a log shack with a wooden roof on the" +" northeast side of the camp" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast shack" +msgstr "északkeleti kunyhó" + +#: lang/json/recipe_from_json.py +msgid "" +"We should use logs to expand the shelter so we have space for another bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "expand northeast shack" +msgstr "északkeleti kunyhó bővítése" + +#: lang/json/recipe_from_json.py +msgid "We should use logs to finish the northeast shack." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish northeast shack" +msgstr "északkeleti kunyhó befejezése" + +#: lang/json/recipe_from_json.py +msgid "" +"We should expand our housing by putting up a log building on the east side, " +"which we can also use as part of the central building." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "east shack" +msgstr "keleti kunyhó" + +#: lang/json/recipe_from_json.py +msgid "" +"We should expand our housing by adding a log room on the east side, which we" +" can also use as part of the central building." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "east room" +msgstr "keleti szoba" + +#: lang/json/recipe_from_json.py +msgid "" +"We should expand our housing by putting up a log building on the southeast " +"side, which we can also use as part of the central building." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "southeast shack" +msgstr "délkeleti kunyhó" + +#: lang/json/recipe_from_json.py +msgid "" +"We should expand our housing by adding a log room on the southeast side, " +"which we can also use as part of the central building." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "southeast room" +msgstr "délkeleti szoba" + +#: lang/json/recipe_from_json.py +msgid "" +"We should expand our housing by putting up a log building on the northwest " +"side, which we can also use as part of the central building." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northwest shack" +msgstr "északnyugati kunyhó" + +#: lang/json/recipe_from_json.py +msgid "" +"We should expand our housing by putting up a log building on the west side, " +"which we can also use as part of the central building." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "west shack" +msgstr "nyugati kunyhó" + +#: lang/json/recipe_from_json.py +msgid "" +"We should expand our housing by adding a log room on the west side, which we" +" can also use as part of the central building." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "west room" +msgstr "nyugati szoba" + +#: lang/json/recipe_from_json.py +msgid "" +"We should expand our housing by putting up a log building on the southwest " +"side, which we can also use as part of the central building." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "southwest shack" +msgstr "délnyugati kunyhó" + +#: lang/json/recipe_from_json.py +msgid "" +"We should expand our housing by adding a log room on the southwest side, " +"which we can also use as part of the central building." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "southwest room" +msgstr "délnyugati szoba" + +#: lang/json/recipe_from_json.py +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "central building NE corner" +msgstr "központi épület ÉK-i sarka" + +#: lang/json/recipe_from_json.py +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "central building NW corner" +msgstr "központi épület ÉNy-i sarka" + +#: lang/json/recipe_from_json.py +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "central building north half" +msgstr "központi épület északi fele" + +#: lang/json/recipe_from_json.py +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "central building SE corner" +msgstr "központi épület DK-i sarka" #: lang/json/recipe_from_json.py -msgid "build 1. pair of straw beds" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 2. pair of straw beds in place of desks." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2. pair of straw beds" -msgstr "" +msgid "central building SW corner" +msgstr "központi épület DNy-i sarka" #: lang/json/recipe_from_json.py -msgid "Let's build 3. pair of straw beds in place of desks." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3. pair of straw beds" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 4. pair of straw beds in place of desks." -msgstr "" +msgid "central building south half" +msgstr "központi épület déli fele" #: lang/json/recipe_from_json.py -msgid "build 4. pair of straw beds" +msgid "" +"We need some shelter, so build half of a metal shack with a metal roof on " +"the northeast side of the camp" msgstr "" +"Kellene valami fedél a fejünk fölé, úgyhogy a tábor északkeleti részén építs" +" egy fémtetős kunyhót." #: lang/json/recipe_from_json.py -msgid "Let's build 5. pair of straw beds in place of desks." +msgid "" +"We should use metal to expand the shelter so we have space for another bed." msgstr "" +"A fém segítségével tovább bővíthetnénk a fedelet a fejünk felett, és még egy" +" ágyra való helyünk lenne." #: lang/json/recipe_from_json.py -msgid "build 5. pair of straw beds" -msgstr "" +msgid "We should use metal to finish the northeast shack." +msgstr "A fém segítségével befejezhetnénk az északkeleti kunyhót." #: lang/json/recipe_from_json.py -msgid "Survey Light Industry Workshop." +msgid "" +"We should expand our housing by putting up a metal building on the east " +"side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti részen " +"építeni kellene egy fém épületet, amelyet a központi épület részeként is " +"tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "expansion survey" +msgid "" +"We should expand our housing by adding a metal room on the east side, which " +"we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti oldalon " +"egy fém szobát kellene építeni, amelyet a központi épület részeként is " +"tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "Let's add a drop hammer for even more crafting possibilities." +msgid "" +"We should expand our housing by putting up a metal building on the southeast" +" side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti részen " +"építeni kellene egy fém épületet, amelyet a központi épület részeként is " +"tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "drop hammer" +msgid "" +"We should expand our housing by adding a metal room on the southeast side, " +"which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti oldalon" +" egy fém szobát kellene építeni, amelyet a központi épület részeként is " +"tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "Let's remove plants from garden and plow a few plots." +msgid "" +"We should expand our housing by putting up a metal building on the northwest" +" side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy az északnyugati " +"részen építeni kellene egy fém épületet, amelyet a központi épület részeként" +" is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "prepare garden" +msgid "" +"We should expand our housing by putting up a metal building on the west " +"side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati részen " +"építeni kellene egy fém épületet, amelyet a központi épület részeként is " +"tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "build a radio tower and console" -msgstr "rádiótorony és konzol építése" +msgid "" +"We should expand our housing by adding a metal room on the west side, which " +"we can also use as part of the central building." +msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati oldalon " +"egy fém szobát kellene építeni, amelyet a központi épület részeként is " +"tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "Survey mansion's entrance." +msgid "" +"We should expand our housing by putting up a metal building on the southwest" +" side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati részen" +" építeni kellene egy fém épületet, amelyet a központi épület részeként is " +"tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "entrance survey" +msgid "" +"We should expand our housing by adding a metal room on the southwest side, " +"which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati " +"oldalon egy fém szobát kellene építeni, amelyet a központi épület részeként " +"is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "Survey mansion's swimming pool." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from metal." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " +"északkeleti negyedét fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "swimming pool survey" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with metal." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"keleti szobából kiindulva fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "Survey mansion's bedrooms." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from metal." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " +"északnyugati negyedét fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "bedrooms survey" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with metal." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"nyugati szobából kiindulva fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "Survey mansion's???." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with metal." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"keleti és a nyugati szobákat összekötve fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "??? survey" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from metal." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek a délkeleti " +"negyedét fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "Survey mansion's kitchen." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with metal." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"délkeleti szobából kiindulva fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "Survey mansion's library." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from metal." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek a délnyugati" +" negyedét fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "library survey" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with metal." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"délnyugati szobából kiindulva fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "Survey mansion's bedroom." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with metal." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"délkeleti és a délnyugati szobákat összekötve fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "bedroom survey" +msgid "" +"We need some shelter, so build half of a mi-go resin shack with a sod roof " +"on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's living rooms." +msgid "" +"We should use mi-go resin to expand the shelter so we have space for another" +" bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "living rooms survey" +msgid "We should use mi-go resin to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "swimming survey" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bar." +msgid "" +"We should expand our housing by adding a mi-go resin room on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "bar survey" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a bunk bed." +msgid "" +"We should expand our housing by adding a mi-go resin room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build another bunk bed." +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "another bunk bed" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a well will give us easy access to water and allow us to start small" -" farm." +"We should expand our housing by adding a mi-go resin room on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's plow some plots." +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "small farm" +msgid "" +"We should expand our housing by adding a mi-go resin room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could try to fix reactor's controller to power lights, it would really " -"help us in planning missions." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix reactor's controller" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's set up a radio tower to improve our recruitment efforts, we will " -"redirect some power into it from nuclear reactor." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a log shack with a wooden roof for our blacksmith's workshop." +"A central building can act as a core and dining hall. We should build out " +"from the west room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "log blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a metal shack with a metal roof for our blacksmith's workshop." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "metal blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a rammed earth shack with a sod roof for our blacksmith's " -"workshop." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "rammed earth blacksmith workshop" +msgid "" +"We need some shelter, so build half of a rammed earth shack with a sod roof " +"on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a stone shack with a wooden roof for our blacksmith's workshop." +"We should use rammed earth to expand the shelter so we have space for " +"another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "stone blacksmith workshop" +msgid "We should use rammed earth to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a wattle and daub shack with a sod roof for our blacksmith's " -"workshop." +"We should expand our housing by putting up a rammed earth building on the " +"east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "wattle and daub blacksmith workshop" +msgid "" +"We should expand our housing by adding a rammed earth room on the east side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a wooden shack with a wooden roof for our blacksmith's workshop." +"We should expand our housing by putting up a rammed earth building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden blacksmith workshop" +msgid "" +"We should expand our housing by adding a rammed earth room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rock forge and a workbench to start smithing." +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "workbench and forge" +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a second workbench and a drop hammer for more productive " -"smithing." +"We should expand our housing by adding a rammed earth room on the west side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "workbench and drop hammer" +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a butchery rack, so we can start hunting large animals." +msgid "" +"We should expand our housing by adding a rammed earth room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should remove some of display racks and counters, then build a pair of " -"mattress beds inside radio control's room for our survivors." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in radio control's room" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds inside radio tower shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in radio tower" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the northeast side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in NE side shack" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southwest corner shack for " -"our survivors." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW corner shack" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southwest side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW side shack" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southeast side shack for our " -"survivors." +"We need some shelter, so build half of a stone shack with a wooden roof on " +"the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE side shack" +msgid "" +"We should use rocks to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of mattress beds in the southeast corner shack for " -"our survivors." +msgid "We should use rocks to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE corner shack" +msgid "" +"We should expand our housing by putting up a rock building on the east side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the south side shack for our " -"survivors." +"We should expand our housing by adding a rock room on the east side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in S side shack" +msgid "" +"We should expand our housing by putting up a rock building on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should remove some of display racks and counters, then build a pair of " -"straw beds inside radio control's room for our survivors." +"We should expand our housing by adding a rock room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in radio control's room" +msgid "" +"We should expand our housing by putting up a rock building on the northwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds inside radio tower shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the west side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in radio tower" +msgid "" +"We should expand our housing by adding a rock room on the west side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the northeast side shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in NE side shack" +msgid "" +"We should expand our housing by adding a rock room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwest corner shack for our " -"survivors." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW corner shack" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwest side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW side shack" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southeast side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE side shack" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southeast corner shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE corner shack" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the south side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in S side shack" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a root cellar will give us a way to preserve food." -msgstr "Egy földpince kiásásával lehetőségünk lesz tartósítani az ételt." +msgid "" +"We need some shelter, so set up a tent on the northeast side of the camp." +msgstr "" +"Kellene valami fedél a fejünk fölé, úgyhogy a tábor északkeleti részén építs" +" egy sátrat." #: lang/json/recipe_from_json.py -msgid "Digging a well will give us easy access to water." -msgstr "Egy kút kiásásával könnyen juthatunk majd vízhez." +msgid "northeast tent" +msgstr "északkeleti sátor" #: lang/json/recipe_from_json.py msgid "" -"Let's fix up radio tower and controls to improve our recruitment efforts." +"We should expand our housing by putting up a tent on the east side, though " +"doing so will mean we need more materials to build the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti részen " +"építeni kellene egy sátrat, bár ez azt is jelenti, hogy a központi épülethez" +" több építőanyag fog kelleni." #: lang/json/recipe_from_json.py -msgid "fix radio tower and controls" -msgstr "" +msgid "east tent" +msgstr "keleti sátor" #: lang/json/recipe_from_json.py -msgid "We should dig pits for palisade around camp." +msgid "" +"We should expand our housing by putting up a tent on the southeast side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti részen " +"építeni kellene egy sátrat, bár ez azt is jelenti, hogy a központi épülethez" +" több építőanyag fog kelleni." #: lang/json/recipe_from_json.py -msgid "We should build palisade around camp." -msgstr "" +msgid "southeast tent" +msgstr "délkeleti sátor" #: lang/json/recipe_from_json.py -msgid "build palisade" +msgid "" +"We should expand our housing by putting up a tent on the northwest side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy az északnyugati " +"részen építeni kellene egy sátrat, bár ez azt is jelenti, hogy a központi " +"épülethez több építőanyag fog kelleni." + +#: lang/json/recipe_from_json.py +msgid "northwest tent" +msgstr "északnyugati sátor" #: lang/json/recipe_from_json.py msgid "" -"We could try to fix whole tower and supply it with enough power, which could" -" give us remote access to computer systems connected to backbone network or " -"communication satellites." +"We should expand our housing by putting up a tent on the west side, though " +"doing so will mean we need more materials to build the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati részen " +"építeni kellene egy sátrat, bár ez azt is jelenti, hogy a központi épülethez" +" több építőanyag fog kelleni." #: lang/json/recipe_from_json.py -msgid "fix whole radio tower" -msgstr "" +msgid "west tent" +msgstr "nyugati sátor" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"northeast side of the camp." +"We should expand our housing by putting up a tent on the southwest side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati részen" +" építeni kellene egy sátrat, bár ez azt is jelenti, hogy a központi " +"épülethez több építőanyag fog kelleni." #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"southeast corner of the camp." -msgstr "" +msgid "southwest tent" +msgstr "délnyugati sátor" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"southwest corner of the camp." +"We need some shelter, so build half of a wattle-and-daub shack with a sod " +"roof on the northeast side of the camp" msgstr "" +"Kellene valami fedél a fejünk fölé, úgyhogy a tábor északkeleti részén építs" +" egy fél, fonott és mázolt falú, földtetejű kunyhót." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the south " -"side of the camp." +"We should use wattle-and-daub to expand the shelter so we have space for " +"another bed." msgstr "" +"A fonott és mázolt fal segítségével tovább bővíthetnénk a fedelet a fejünk " +"felett, és még egy ágyra való helyünk lenne." #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"northeast side of the camp." +msgid "We should use wattle-and-daub to finish the northeast shack." msgstr "" +"A fonott és mázolt fal segítségével befejezhetnénk az északkeleti kunyhót." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southwest corner of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" east side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti részen " +"építeni kellene egy fonott és mázolt falú épületet, amelyet a központi " +"épület részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southwest side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the east " +"side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti oldalon " +"egy fonott és mázolt falú szobát kellene építeni, amelyet a központi épület " +"részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southeast side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" southeast side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti részen " +"építeni kellene egy fonott és mázolt falú épületet, amelyet a központi " +"épület részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southeast corner of the camp." +"We should expand our housing by adding a wattle-and-daub room on the " +"southeast side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti oldalon" +" egy fonott és mázolt falú szobát kellene építeni, amelyet a központi épület" +" részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the south " -"side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" northwest side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy az északnyugati " +"részen építeni kellene egy fonott és mázolt falú épületet, amelyet a " +"központi épület részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build migo resin walls over windows in radio " -"control's room." +"We should expand our housing by putting up a wattle-and-daub building on the" +" west side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati részen " +"építeni kellene egy fonott és mázolt falú épületet, amelyet a központi " +"épület részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "barricade radio control's room" +msgid "" +"We should expand our housing by adding a wattle-and-daub room on the west " +"side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati oldalon " +"egy fonott és mázolt falú szobát kellene építeni, amelyet a központi épület " +"részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"inside radio tower." +"We should expand our housing by putting up a wattle-and-daub building on the" +" southwest side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati részen" +" építeni kellene egy fonott és mázolt falú épületet, amelyet a központi " +"épület részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the northeast side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the " +"southwest side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati " +"oldalon egy fonott és mázolt falú szobát kellene építeni, amelyet a központi" +" épület részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southwest corner of the camp." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from wattle-and-daub." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " +"északkeleti negyedét fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southwest side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the east room with wattle-and-daub." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"keleti szobából kiindulva fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southeast side of the camp." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from wattle-and-daub." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " +"északnyugati negyedét fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southeast corner of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the west room with wattle-and-daub." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"nyugati szobából kiindulva fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the south side of the camp." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with wattle-and-daub." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"keleti és a nyugati szobákat összekötve fonott és mázolt falból kellene " +"megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"northeast side of the camp." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from wattle-and-daub." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az délkeleti" +" negyedét fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southwest corner of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with wattle-and-daub." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"délkeleti szobából kiindulva fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southwest side of the camp." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from wattle-and-daub." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " +"délnyugati negyedét fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with wattle-and-daub." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"délnyugati szobából kiindulva fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with wattle-and-daub." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"délkeleti és a délnyugati szobákat összekötve fonott és mázolt falból " +"kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"south side of the camp." +"We need some shelter, so build half of a wood panel shack with a wooden roof" +" on the northeast side of the camp" msgstr "" +"Kellene valami fedél a fejünk fölé, úgyhogy a tábor északkeleti részén építs" +" egy fafalú, fatetős kunyhót." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"northeast side of the camp." +"We should use wood panel to expand the shelter so we have space for another " +"bed." msgstr "" +"A fapanelek segítségével tovább bővíthetnénk a fedelet a fejünk felett, és " +"még egy ágyra való helyünk lenne." #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southwest corner of the camp." -msgstr "" +msgid "We should use wood panel to finish the northeast shack." +msgstr "A fapanelek segítségével befejezhetnénk az északkeleti kunyhót." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southwest side of the camp." +"We should expand our housing by putting up a wood panel building on the east" +" side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti részen " +"építeni kellene egy fapaneles épületet, amelyet a központi épület részeként " +"is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southeast side of the camp." +"We should expand our housing by adding a wood panel room on the east side, " +"which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti oldalon " +"egy fapaneles szobát kellene építeni, amelyet a központi épület részeként is" +" tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southeast corner of the camp." +"We should expand our housing by putting up a wood panel building on the " +"southeast side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti részen " +"építeni kellene egy fapaneles épületet, amelyet a központi épület részeként " +"is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the south" -" side of the camp." +"We should expand our housing by adding a wood panel room on the southeast " +"side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti oldalon" +" egy fapaneles szobát kellene építeni, amelyet a központi épület részeként " +"is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the northeast side of the camp." +"We should expand our housing by putting up a wood panel building on the " +"northwest side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy az északnyugati " +"részen építeni kellene egy fapaneles épületet, amelyet a központi épület " +"részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southwest corner of the camp." +"We should expand our housing by putting up a wood panel building on the west" +" side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati részen " +"építeni kellene egy fapaneles épületet, amelyet a központi épület részeként " +"is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southwest side of the camp." +"We should expand our housing by adding a wood panel room on the west side, " +"which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati oldalon " +"egy fapaneles szobát kellene építeni, amelyet a központi épület részeként is" +" tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southeast side of the camp." +"We should expand our housing by putting up a wood panel building on the " +"southwest side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati részen" +" építeni kellene egy fapaneles épületet, amelyet a központi épület részeként" +" is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southeast corner of the camp." +"We should expand our housing by adding a wood panel room on the southwest " +"side, which we can also use as part of the central building." msgstr "" +"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati " +"oldalon egy fapaneles szobát kellene építeni, amelyet a központi épület " +"részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the south side of the camp." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from wood panel." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " +"északkeleti negyedét fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build wooden walls over windows in radio control's " -"room." +"A central building can act as a core and dining hall. We should build out " +"from the east room with wood panel." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"keleti szobából kiindulva fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof inside " -"radio tower." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from wood panel." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " +"északnyugati negyedét fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"northeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the west room with wood panel." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"nyugati szobából kiindulva fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southwest corner of the camp." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with wood panel." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"keleti és a nyugati szobákat összekötve fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southwest side of the camp." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from wood panel." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az délkeleti" +" negyedét fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with wood panel." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"délkeleti szobából kiindulva fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from wood panel." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " +"délnyugati negyedét fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"south side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with wood panel." msgstr "" +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"délnyugati szobából kiindulva fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should reorganize that dining area into our " -"kitchen." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with wood panel." msgstr "" -"Most, hogy van némi fedél felettünk, azt az ebédlő részt átrendezhetnénk " -"konyhává." +"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " +"délkeleti és a délnyugati szobákat összekötve fapanelekből kellene " +"megépítenünk." #: lang/json/recipe_from_json.py -msgid "prepare the kitchen area" -msgstr "konyha előkészítése" +msgid "We need to survey the base site first." +msgstr "Először fel kell mérnünk a bázis helyét." #: lang/json/recipe_from_json.py msgid "" -"We should build a well, put it near that winch. This will make our future " -"here more secure." +"The first thing we are going to need is a command tent to manage and task " +"workers from." msgstr "" -"Egy kutat kellene építenünk és a csörlő közelébe rakni. Így még " -"biztonságosabb lesz itt a jövőnk." - -#: lang/json/recipe_from_json.py -msgid "build a well" -msgstr "építs egy kutat" +"Legelőször is szükségünk lesz egy parancsnoki sátorra, ahonnan a munkákat " +"tudjuk koordinálni és a munkásoknak kiosztani a feladatokat." #: lang/json/recipe_from_json.py -msgid "" -"Let's set up a radio tower to improve our recruitment efforts, we'll " -"repurpose that terminal for it." -msgstr "" -"Állítsunk fel egy rádiótornyot, hogy segítségével jobban tudjunk túlélőket " -"toborozni. Ehhez átprogramozzuk azt a terminált." +msgid "basic northeast tent" +msgstr "kezdetleges északkeleti sátor" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should add some storage and a root cellar in" -" our kitchen area." +"We're going to need a fire pit and a bed if we want to stay here " +"permanently." msgstr "" -"Most, hogy van némi fedél felettünk, az ebédlőhöz hozzáadhatnánk némi " -"tárolót és egy földpincét." +"Ha hosszabb ideig szeretnénk itt maradni, akkor szükségünk lesz egy tűzrakó " +"helyre és egy ágyra." #: lang/json/recipe_from_json.py -msgid "add storage and root cellar" -msgstr "tároló és földpince hozzáadása" +msgid "basic firepit" +msgstr "kezdetleges tűzrakó hely" #: lang/json/recipe_from_json.py -msgid "Let's break up some pavement so we can farm." -msgstr "Törjük fel az aszfaltot, hogy tudjunk hol növényt termeszteni." +msgid "" +"To make this outpost functional we are going to need storage containers to " +"organize our supplies." +msgstr "" +"Ha azt szeretnénk, hogy ez az előörs fennmaradjon, akkor az ellátmány " +"szervezéséhez tárolókra lesz szükségünk." #: lang/json/recipe_from_json.py -msgid "break up driveway" -msgstr "behajtó feltörése" +msgid "basic storage" +msgstr "kezdetleges tároló" #: lang/json/recipe_from_json.py -msgid "Let's build a privacy fence around the garden." -msgstr "Építsünk embermagasságú kerítést a kert köré." +msgid "" +"Next we should expand the camp to comfortably support two people " +"indefinitely." +msgstr "" +"Következő lépésként ki kell terjesztenünk a tábort annyira, hogy két embert " +"kényelmesen eltarthasson." #: lang/json/recipe_from_json.py -msgid "build a privacy fence" -msgstr "embermagasságú kerítés építése" +msgid "basic northeast bed" +msgstr "kezdetleges északkeleti ágy" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a fireplace for cooking and " -"grab a pot. Let's put it in that dining area." +"Additional housing and storage will allow our camp to expand into " +"specialized industries." msgstr "" -"Most, hogy van némi fedél felettünk, a főzéshez építsünk egy kandallót, és " -"szerezzünk egy lábost. Ezeket helyezzük az ebédlőbe." +"További épületek és tárolás segítségével a táborunk különféle iparágak felé " +"tud szakosodni." #: lang/json/recipe_from_json.py -msgid "build a fireplace" -msgstr "kandalló építése" +msgid "basic northwest tent" +msgstr "kezdetleges északnyugati sátor" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should set up a brazier for cooking, and " -"grab a pot. Let's put it in that dining area." +"Constructing a hard command post will transform our little camp into a true " +"base." msgstr "" -"Most, hogy van némi fedél felettünk, a főzéshez helyezzünk el egy " -"parázstartót, és szerezzünk egy lábost. Ezeket helyezzük az ebédlőbe." +"Egy megerősített parancsnoki állás a táborból igazi bázist hozd majd létre." #: lang/json/recipe_from_json.py -msgid "build a brazier" -msgstr "parázstartó építése" +msgid "basic central building" +msgstr "kezdetleges központi fűtés" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a stove for cooking and grab a " -"pot. Let's put it in that dining area." +"Building additional housing will allow us to send companions out to find " +"recruits." msgstr "" -"Most, hogy van némi fedél felettünk, a főzéshez építsünk egy kályhát, és " -"szerezzünk egy lábost. Ezeket helyezzük az ebédlőbe." +"További lakóhelyek építésével új emberek toborzására tudjuk majd a " +"társainkat kiküldeni." #: lang/json/recipe_from_json.py -msgid "build a wood stove" -msgstr "fa kályha építése" +msgid "basic west tent" +msgstr "kezdetleges nyugati sátor" #: lang/json/recipe_from_json.py -msgid "Let's build some smokers and a charcoal kiln for food preservation." -msgstr "Az étel tartósításához építsünk néhány füstölőt és faszenes kemencét." +msgid "We need to expand our base to include basic dining facilities." +msgstr "A bázisunkat kezdetleges étkezési lehetőséggel kell kibővítenünk." #: lang/json/recipe_from_json.py -msgid "build smoking racks and charcoal kiln" -msgstr "füstölőállvány és faszenes kemence építése" +msgid "basic central kitchen" +msgstr "kezdetleges központi konyha" #: lang/json/recipe_from_json.py -msgid "Let's make a butchery area." -msgstr "Alakítsunk ki egy hentes munkahelyet." +msgid "More housing means that we can support additional specialists." +msgstr "A több lakóhely azt jelenti, hogy több specialistát tudunk eltartani." #: lang/json/recipe_from_json.py -msgid "build butchery area" -msgstr "hentes munkahely építése" +msgid "basic southeast tent" +msgstr "kezdetleges délkeleti sátor" #: lang/json/recipe_from_json.py -msgid "Let's add a vat for fermenting." -msgstr "Erjesztéshez adjunk hozzá egy erjesztőkádat." +msgid "An expanded kitchen is needed to support our growing settlement." +msgstr "A növekvő településünknek egy nagyobb konyhára van szüksége." #: lang/json/recipe_from_json.py -msgid "build fermenting vats" -msgstr "erjesztőkádak építése" +msgid "basic expanded kitchen" +msgstr "kezdetleges kiterjesztett konyha" #: lang/json/recipe_from_json.py -msgid "Let's gather some tools so we can work on cars." +msgid "" +"Finishing the hard structure will give us a more secure place to retreat to " +"if we come under attack." msgstr "" -"Gyűjtsünk össze néhány szerszámot, hogy a kocsikon tudjunk majd dolgozni." +"A kemény falú építmény befejezése azt jelenti, hogy egy esetleges támadás " +"esetén biztonságosabb helyre tudunk visszavonulni." #: lang/json/recipe_from_json.py -msgid "add tools for garage" -msgstr "szerszámok összegyűjtése autószereléshez" +msgid "basic completed central building" +msgstr "kezdetleges befejezett központi épület" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom." -msgstr "Rendezzük be a délnyugati hálószobát." +msgid "" +"I'm surprised we've made it this long without securing a clean water source," +" we need a well." +msgstr "" +"Meglepő, hogy eddig bírtuk tiszta vízforrás nélkül, de most már kell egy " +"kút." #: lang/json/recipe_from_json.py -msgid "furnish the SW bedroom" -msgstr "DNy-i hálószoba berendezése" +msgid "basic water well" +msgstr "kezdetleges kút" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom." -msgstr "Rendezzük be az északnyugati hálószobát." +msgid "" +"Building a strong wall will keep the base secure even if a small horde " +"attacks." +msgstr "" +"Egy erős fal bebiztosítja a bázist még egy kisebb horda támadása ellen is." #: lang/json/recipe_from_json.py -msgid "furnish the NW bedroom" -msgstr "ÉNy-i hálószoba berendezése" +msgid "basic partial wall" +msgstr "kezdetleges részleges fal" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom." -msgstr "Rendezzük be a délkeleti hálószobát." +msgid "We need to finish our half built fortifications." +msgstr "Be kell fejeznünk a félkész erődítményeinket." #: lang/json/recipe_from_json.py -msgid "furnish the SE bedroom" -msgstr "DK-i hálószoba berendezése" +msgid "basic complete wall" +msgstr "kezdetleges kész fal" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northeast bedroom." -msgstr "Rendezzük be az északkeleti hálószobát." +msgid "We're running out of room and need another living quarters." +msgstr "Kezdünk kifogyni a helyből, és további lakóhelyre van szükségünk." #: lang/json/recipe_from_json.py -msgid "furnish the NE bedroom" -msgstr "ÉK-i hálószoba berendezése" +msgid "basic east tent" +msgstr "kezdetleges keleti sátor" #: lang/json/recipe_from_json.py -msgid "Let's furnish the common area." -msgstr "Rendezzük be a közös tereket." +msgid "Our kitchen isn't able to keep up with demand, we need to expand it." +msgstr "" +"A konyhánk már nem képes lépést tartani az igényekkel, ki kell bővítenünk." #: lang/json/recipe_from_json.py -msgid "furnish the common area furniture" -msgstr "közös terek bebútorozása" +msgid "basic dining hall" +msgstr "kezdetleges ebédlő" #: lang/json/recipe_from_json.py -msgid "Let's build a fabrication workshop." -msgstr "Építsünk egy gyártó műhelyt." +msgid "We should build stronger doors to secure our compound." +msgstr "A bázisunk biztosítására erősebb ajtókat kell építenünk." #: lang/json/recipe_from_json.py -msgid "build a metalworking forge" -msgstr "fémmegmunkáló kovácsműhely építése" +msgid "basic reinforced gates" +msgstr "kezdetleges megerősített kapuk" #: lang/json/recipe_from_json.py -msgid "Let's build an anvil and crucible to increase our crafting options." -msgstr "" +msgid "One more tent and our living space will be full." +msgstr "Még egy sátor, és a lakóhelyek száma betelt." #: lang/json/recipe_from_json.py -msgid "add an anvil and crucible" -msgstr "üllő és tégely hozzáadása" +msgid "basic southwest tent" +msgstr "kezdetleges délnyugati sátor" #: lang/json/recipe_from_json.py msgid "" -"Let's build pottery kiln and get the tools we'll need for glassworking." +"We could construct a radio tower to improve communication range, first step " +"is the tower structure." msgstr "" -"Építsünk egy agyagsütő kemencét és szerezzük be az üvegkészítéshez szükséges" -" szerszámokat." +"A rádióink hatótávolságának növeléséhez építhetnénk egy rádiótornyot. Ehhez " +"az első lépés maga a torony." #: lang/json/recipe_from_json.py -msgid "build a pottery kiln" -msgstr "agyagkemence építése" +msgid "basic radio tower" +msgstr "kezdetleges rádiótorony" #: lang/json/recipe_from_json.py -msgid "We need some tools for metal working." -msgstr "A fém megmunkálásához szerszámok kellenek." +msgid "We need to build a console to control the radio tower." +msgstr "A rádiótorony vezérléséhez egy konzolt kell építenünk." #: lang/json/recipe_from_json.py -msgid "place advanced tools" -msgstr "haladó szerszámok elhelyezése" +msgid "basic radio console" +msgstr "kezdetleges rádiós konzol" #: lang/json/recipe_from_json.py -msgid "" -"Let's get a nice workbench built to improve our work. Place it next to the " -"anvil." -msgstr "" -"A munkánk megkönnyítésére építsünk egy munkalapot, majd helyezzük az üllő " -"mellé." +msgid "Survey land for a kitchen." +msgstr "A földet egy konyha építésének szempontjából kell felmérni." #: lang/json/recipe_from_json.py -msgid "build a workbench" -msgstr "munkalap építése" +msgid "Kitchen survey" +msgstr "Konyha felmérése" #: lang/json/recipe_from_json.py -msgid "" -"Let's add a bellows and barrel for quenching the steel, we'll need more " -"tools too." -msgstr "" -"Az acél edzéséhez adjunk a kovácsműhelyhez egy fújtatót és egy hordót. " -"További szerszámokra is szükségünk lesz." +msgid "Building a cook-shack is our first task." +msgstr "Az első feladat egy főzés kunyhó megépítése." #: lang/json/recipe_from_json.py -msgid "build a bellows and barrel" -msgstr "fújtató és hordó építése" +msgid "Kitchen fireplace shack" +msgstr "Konyhai kandallós kunyhó" #: lang/json/recipe_from_json.py -msgid "Let's build a drop hammer for some mass production." -msgstr "A tömeges gyártáshoz építsünk ejtőkalapácsot." +msgid "We need to finish framing the walls for the cook-shack." +msgstr "Be kell fejeznünk a konyhás kunyhó falait." #: lang/json/recipe_from_json.py -msgid "build a drop hammer." -msgstr "ejtőkalapács építése" +msgid "Kitchen finished shack" +msgstr "Befejezett konyhás kunyhó" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with standard walls, we'll use that far " -"vehicle bay." -msgstr "" +"Expanding the shack by including a smoker will increase our versatility." +msgstr "A kunyhót egy füstölővel tudjuk kibővíteni." #: lang/json/recipe_from_json.py -msgid "build the standard white living quarters walls" -msgstr "" +msgid "Kitchen charcoal smoker" +msgstr "Konyhai faszenes füstölő" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with wood panel walls, we'll use that far " -"vehicle bay." +msgid "A pantry will allow our cooks to store more non-perishables." msgstr "" +"Az éléskamrában a szakácsok még több nem romlandó ételt tudnak tárolni." #: lang/json/recipe_from_json.py -msgid "build the wood panel living quarters walls" -msgstr "" +msgid "Kitchen pantry expansion" +msgstr "Konyhai éléskamra bővítése" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with log walls, we'll use that far vehicle " -"bay." +"Increasing our number of smoking racks will let us craft larger batches." msgstr "" +"Még több füstölőállvány segítségével egyszerre több ételt tudunk " +"elkészíteni." #: lang/json/recipe_from_json.py -msgid "build the log living quarters walls" -msgstr "" +msgid "Kitchen more smoking racks" +msgstr "Több konyhai füstölőállvány" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with metal walls, we'll use that far vehicle " -"bay." +msgid "A well is needed so our cooks don't have to haul in water." msgstr "" +"Kell egy kút, hogy a szakácsoknak ne kelljen kintről behordaniuk a vizet." #: lang/json/recipe_from_json.py -msgid "build the metal living quarters walls" -msgstr "" +msgid "Kitchen water well" +msgstr "Konyhai kút" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with mi-go resin walls, we'll use that far " -"vehicle bay." +"Wood stoves will give us greater control of temperatures and let us craft " +"more difficult recipes." msgstr "" +"A fatüzelésű kályhákkal jobban tudjuk irányítani a hőhatást, és így még " +"nehezebb receptekből tudunk főzni." #: lang/json/recipe_from_json.py -msgid "build the mi-go resin living quarters walls" -msgstr "" +msgid "Kitchen wood stoves" +msgstr "Konyhai fa kályha" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with rammed earth walls, we'll use that far " -"vehicle bay." +"Finally, expanding the pantry further will let us store additional " +"materials." msgstr "" +"Végre az éléskamra kiterjesztésével még több alapanyagot tudunk tárolni." #: lang/json/recipe_from_json.py -msgid "build the rammed earth living quarters walls" -msgstr "" +msgid "Kitchen expanded pantry" +msgstr "Kibővített konyhai éléskamra" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with rock walls, we'll use that far vehicle " -"bay." +"A trench that may deter movement but is meant to be the foundation of a " +"picket or palisade. Requirements are for 1/2 an over map tile." msgstr "" +"Az árok gátolhatja ugyan a mozgást, de inkább kerítés vagy palánk " +"alapzatának szánták. A nyersanyag egy fél nagytérkép mezőhöz szükséges " +"mennyiséget jelzi." #: lang/json/recipe_from_json.py -msgid "build the rock earth living quarters walls" +msgid "" +"A deep trench filled with spikes, requires a trench. Requirements are for " +"1/2 an over map tile." msgstr "" +"Tüskékkel kirakott mély árok, építéséhez árok szükséges. A nyersanyag egy " +"fél nagytérkép mezőhöz szükséges mennyiséget jelzi." #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with wattle and daub walls, we'll use that far" -" vehicle bay." -msgstr "" +msgid "Survey land for a blacksmith shop." +msgstr "A földet egy kovácsműhely szempontból kell felmérni." #: lang/json/recipe_from_json.py -msgid "build the wattle and daub living quarters walls" -msgstr "" +msgid "Blacksmithy survey" +msgstr "Kitűzött kovácsműhely" #: lang/json/recipe_from_json.py -msgid "We should survey the roof top and set up a bulletin board." -msgstr "Fel kellene mérni a tetőt, és felállítani egy hirdetőtáblát." +msgid "Building a forge and kiln is our first task." +msgstr "Az első feladat egy kovácsműhely és egy égetőkemence megépítése." #: lang/json/recipe_from_json.py -msgid "" -"Now that we have some cover, we should build a fireplace in the northeast " -"shack." -msgstr "" -"Most, hogy van némi fedél felettünk, az északkeleti kunyhóban kellene egy " -"kandallót építeni." +msgid "Blacksmithy forge and kiln" +msgstr "Kovácsműhely és égetőkemence" #: lang/json/recipe_from_json.py -msgid "northeast fireplace" -msgstr "északkeleti kandalló" +msgid "Building a proper roof for the shop is the next step." +msgstr "A következő lépés a műhely befedése." #: lang/json/recipe_from_json.py -msgid "" -"Now that we have some cover, we should set up a brazier in the northeast " -"shack." +msgid "Blacksmithy roof" +msgstr "Kovácsműhely tető" + +#: lang/json/recipe_from_json.py +msgid "Building a working table and placing an anvil are next." msgstr "" -"Most, hogy van némi fedél felettünk, az északkeleti kunyhóban kellene egy " -"parázstartót építeni." +"A következő lépés egy munkához használható asztal és egy üllő elhelyezése." #: lang/json/recipe_from_json.py -msgid "northeast brazier" -msgstr "északkeleti parázstartó" +msgid "Blacksmithy anvil and workbench" +msgstr "Kovácsműhely üllő és munkalap" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a stove in the northeast shack." +"If we're going to do more than simple metal casting we need a bigger shop." msgstr "" -"Most, hogy van némi fedél felettünk, az északkeleti kunyhóban kellene egy " -"kályhát építeni." +"Ha az egyszerű fémöntésnél többet szeretnénk, akkor nagyobb műhelyre lesz " +"szükségünk." #: lang/json/recipe_from_json.py -msgid "northeast stove" -msgstr "északkeleti kályha" +msgid "Blacksmithy expanded shop" +msgstr "Kibővített kovácsműhely" #: lang/json/recipe_from_json.py -msgid "A straw bed in the northeast shack will make sleeping easier." -msgstr "" -"Az északkeleti kunyhóban épített szalmaágyon jobban lehet majd aludni." +msgid "We need some basic tools to make more advanced crafts." +msgstr "Az összetettebb dolgok elkészítéséhez alapvető szerszámok kellenek." #: lang/json/recipe_from_json.py -msgid "northeast straw bed" -msgstr "északkeleti szalmaágy" +msgid "Blacksmithy forging tools" +msgstr "Kovácsműhely szerszámok" #: lang/json/recipe_from_json.py -msgid "" -"A proper bed in the northeast shack will give one of us a place to sleep " -"soundly." +msgid "An expanded forge will allow us to work on bigger projects." msgstr "" -"Az északkeleti kunyhóban épített rendes ágyon az egyikünk még jobban tud " -"majd aludni." +"A nagyobb méretű kovácsműhelyben még nagyobb projekteket tudunk véghez " +"vinni." #: lang/json/recipe_from_json.py -msgid "northeast bed" -msgstr "északkeleti ágy" +msgid "Blacksmithy expanded forge" +msgstr "Még nagyobb kovácsműhely" #: lang/json/recipe_from_json.py -msgid "Another straw bed in the northeast shack will make sleeping easier." +msgid "Proper steel work requires a bellows and quenching setup." msgstr "" -"Az északkeleti kunyhóban épített még egy szalmaágyon jobban lehet majd " -"aludni." +"Az acél megmunkálásához fújtatóra és acélt edző tárgyakra lesz szükségünk." #: lang/json/recipe_from_json.py -msgid "" -"Another proper bed in the northeast shack will give one of us a place to " -"sleep soundly." -msgstr "" -"Az északkeleti kunyhóban épített még egy rendes ágyon az egyikünk még jobban" -" tud majd aludni." +msgid "Blacksmithy bellows and quenching barrels" +msgstr "Kovácsműhely fújtató és acéledző hordók" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the east tent will allow us to house two more people" -" and expand the camp." +msgid "A separate workshop will allow us to do the most basic of machining." msgstr "" -"A keleti sátorban megépített két darab szalmaágynak köszönhetően még két főt" -" tudunk befogadni, és tovább tudjuk terjeszteni a tábort." +"Egy különálló műhelyben elkezdhetjük a fémforgácsolásos megmunkálás " +"alapjait." #: lang/json/recipe_from_json.py -msgid "east straw beds" -msgstr "keleti szalmaágyak" +msgid "Blacksmithy machine shop" +msgstr "Kovácsműhely fémforgácsolás" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the east tent will allow us to house two more " -"people and expand the camp." +msgid "Next we need to add some basic tools and vises to the workshop." msgstr "" -"A keleti sátorban megépített két darab rendes ágynak köszönhetően még két " -"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." +"A következő lépésben némi alapvető szerszámokkal és satuval kell felszerelni" +" a műhelyt." #: lang/json/recipe_from_json.py -msgid "east beds" -msgstr "keleti ágyak" +msgid "Blacksmithy machine shop tools" +msgstr "Kovácsműhely fémforgácsoló szerszámok" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the east room will allow us to house two more people" -" and expand the camp." -msgstr "" -"A keleti szobában megépített két darab szalmaágynak köszönhetően még két főt" -" tudunk befogadni, és tovább tudjuk terjeszteni a tábort." +msgid "Advanced forging processes require more room to work." +msgstr "A fejlettebb fémmegmunkáláshoz több helyre van szükség." #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the east room will allow us to house two more " -"people and expand the camp." -msgstr "" -"A keleti szobában megépített két darab rendes ágynak köszönhetően még két " -"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." +msgid "Blacksmithy machine shop expansion" +msgstr "Kovácsműhely fémforgácsolás bővítése" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southeast tent will allow us to house two more " -"people and expand the camp." +msgid "An on-site well will allow us to fill boilers as needed." msgstr "" -"A délkeleti sátorban megépített két darab szalmaágynak köszönhetően még két " -"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." +"A helyben fúrt kút segítségével szükség szerint tudjuk feltölteni a " +"bojlereket." #: lang/json/recipe_from_json.py -msgid "southeast straw beds" -msgstr "délkeleti szalmaágyak" +msgid "Blacksmithy well" +msgstr "Kovácsműhely kút" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the southeast tent will allow us to house two more " -"people and expand the camp." +"A steam-powered drop hammer will greatly increase production speed in " +"exchange for charcoal." msgstr "" -"A délkeleti sátorban megépített két darab rendes ágynak köszönhetően még két" -" főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." +"A faszén tüzelésű, gőzhajtású ejtőkalapács jelentősen növelni fogja a " +"termelési sebességet." #: lang/json/recipe_from_json.py -msgid "southeast beds" -msgstr "délkeleti ágyak" +msgid "Blacksmithy drop hammer" +msgstr "Kovácsműhely ejtőkalapács" #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the southeast room will allow us to house two more " -"people and expand the camp." +"We should build a fireplace for cooking and grab a pot. Let's set up near " +"the working terminal." msgstr "" -"A délkeleti szobában megépített két darab szalmaágynak köszönhetően még két " -"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the southeast room will allow us to house two more " -"people and expand the camp." +"We should build a brazier for cooking and grab a pot. Let's set up near the" +" working terminal." msgstr "" -"A délkeleti szobában megépített két darab rendes ágynak köszönhetően még két" -" főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the northwest building will allow us to house two " -"more people and expand the camp." +"We should build a wood stove for cooking and grab a pot. Let's set up near " +"the working terminal." msgstr "" -"Az északnyugati épületben megépített két darab szalmaágynak köszönhetően még" -" két főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." - -#: lang/json/recipe_from_json.py -msgid "northwest straw beds" -msgstr "északnyugati szalmaágy" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the northwest building will allow us to house two " -"more people and expand the camp." +"We should build a well, put it near the terminal. This will make our future" +" here more secure." msgstr "" -"Az északnyugati épületben megépített két darab rendes ágynak köszönhetően " -"még két főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." - -#: lang/json/recipe_from_json.py -msgid "northwest beds" -msgstr "északnyugati ágyak" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the west tent will allow us to house two more people" -" and expand the camp." +msgid "Let's furnish the southeast bedroom with regular beds." msgstr "" -"A nyugati sátorban megépített két darab szalmaágynak köszönhetően még két " -"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." #: lang/json/recipe_from_json.py -msgid "west straw beds" -msgstr "nyugati szalmaágyak" - -#: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the west tent will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the east bedroom with regular beds." msgstr "" -"A nyugati sátorban megépített két darab rendes ágynak köszönhetően még két " -"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." - -#: lang/json/recipe_from_json.py -msgid "west beds" -msgstr "nyugati ágyak" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the west room will allow us to house two more people" -" and expand the camp." +msgid "furnish the E bedroom" msgstr "" -"A nyugati szobában megépített két darab szalmaágynak köszönhetően még két " -"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the west room will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the southeast bedroom with straw beds." msgstr "" -"A nyugati szobában megépített két darab rendes ágynak köszönhetően még két " -"főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southwest tent will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the east bedroom with straw beds." msgstr "" -"A délnyugati sátorban megépített két darab szalmaágynak köszönhetően még két" -" főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." #: lang/json/recipe_from_json.py -msgid "southwest straw beds" -msgstr "délnyugati szalmaágyak" +msgid "Let's furnish the southeast bedroom with makeshift beds." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southwest tent will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the east bedroom with makeshift beds." msgstr "" -"A délnyugati sátorban megépített két darab rendes ágynak köszönhetően még " -"két főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." #: lang/json/recipe_from_json.py -msgid "southwest beds" -msgstr "délnyugati ágyak" +msgid "Let's furnish the southwest bedroom with regular beds." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southwest room will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the west bedroom with regular beds." msgstr "" -"A délnyugati szobában megépített két darab szalmaágynak köszönhetően még két" -" főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southwest room will allow us to house two more " -"people and expand the camp." +msgid "furnish the W bedroom" msgstr "" -"A délnyugati szobában megépített két darab rendes ágynak köszönhetően még " -"két főt tudunk befogadni, és tovább tudjuk terjeszteni a tábort." #: lang/json/recipe_from_json.py -msgid "" -"A fireplace, counter, and some pots and pans in the central building will " -"allow us to cook simple recipes and organize hunting expeditions." +msgid "Let's furnish the northwest bedroom with regular beds." msgstr "" -"A központi épületben megépített kandallónak, pultnak és lábasoknak, " -"serpenyőknek köszönhetően egyszerű receptekből tudunk főzni, és szervezni " -"vadászati kirándulásokat." #: lang/json/recipe_from_json.py -msgid "central fireplace" -msgstr "központi kandalló" +msgid "Let's furnish the southwest bedroom with straw beds." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need a butchery rack to maximize the harvest from our hunting and " -"trapping efforts." +msgid "Let's furnish the west bedroom with straw beds." msgstr "" -"A vadászati és csapdázási eredményeink maximális kihasználása érdekében " -"szükségünk van egy hentesállványra." #: lang/json/recipe_from_json.py -msgid "central butchery rack" -msgstr "központi hentesállvány" +msgid "Let's furnish the northwest bedroom with straw beds." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A tool rack in the central building will give us a place to store tools." +msgid "Let's furnish the southwest bedroom with makeshift beds." msgstr "" -"A központi épületbe épített szerszámtároló segítségével szervezettebben " -"tudjuk eltárolni a szerszámainkat." #: lang/json/recipe_from_json.py -msgid "central tool rack" -msgstr "központi szerszámtároló" +msgid "Let's furnish the west bedroom with makeshift beds." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Setting up some tables and chairs will make the central building into a " -"dining area, and we can also use them as a workspace to organize the camp." +msgid "Let's furnish the northwest bedroom with makeshift beds." msgstr "" -"A központi épületben megépített asztalok és székek adják majd a központi " -"ebédlőt, és az asztalokon a tábor szervezését is meg tudjuk majd oldani." #: lang/json/recipe_from_json.py -msgid "central dining hall" -msgstr "központi ebédlő" +msgid "Let's make a dining area." +msgstr "" #: lang/json/recipe_from_json.py -msgid "south dining hall" -msgstr "déli ebédlő" +msgid "furnish the dining room" +msgstr "ebédlő berendezése" #: lang/json/recipe_from_json.py -msgid "" -"A wood stove, counter, and some pots and pans in the south half of the " -"central building will allow us to cook simple recipes and organize hunting " -"expeditions. The stove will be more efficient than a fireplace." +msgid "Let's make a living room area." msgstr "" -"A központi épület déli részében megépített fa kályhának, pultnak és " -"lábasoknak, serpenyőknek köszönhetően egyszerű receptekből tudunk főzni, és " -"szervezni vadászati kirándulásokat. A kályha a kandallónál hatékonyabb lesz." #: lang/json/recipe_from_json.py -msgid "south wood stove" -msgstr "déli fa kályha" +msgid "furnish the living room" +msgstr "" #: lang/json/recipe_from_json.py -msgid "north water well" -msgstr "északi kút" +msgid "Let's build some pantry storage." +msgstr "" #: lang/json/recipe_from_json.py -msgid "north root cellar" -msgstr "északi földpince" +msgid "build some wooden racks" +msgstr "" #: lang/json/recipe_from_json.py -msgid "We could build a radio tower to improve the range of our radios." -msgstr "A rádióink hatótávolságának növeléséhez építhetnénk egy rádiótornyot." +msgid "Let's build a work bench." +msgstr "" #: lang/json/recipe_from_json.py -msgid "north radio tower" -msgstr "északi rádiótorony" +msgid "build a work bench" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Adding a console to control the radio tower will help with recruiting more " -"survivors." +"Let's build some living quarters so we can expand. We will start in the " +"southeast corner." msgstr "" -"A rádiótorony konzollal való kibővítése után még több túlélőt tudunk majd " -"toborozni." #: lang/json/recipe_from_json.py -msgid "north radio console" -msgstr "északi rádiós konzol" +msgid "build SE log bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the north edge of the camp would provide some defense" -" and generate building materials." +"Let's build some living quarters so we can expand. We will continue along " +"the same wall." msgstr "" -"A tábor északi részén ásott ároknak köszönhetően némileg növeljük a " -"védelmünket és építőanyaghoz is juthatunk." #: lang/json/recipe_from_json.py -msgid "north trench" -msgstr "északi árok" +msgid "build E log bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the south edge of the camp would provide some defense" -" and generate building materials." +"Let's build some living quarters so we can expand. We will continue along " +"the other wall." msgstr "" -"A tábor déli részén ásott ároknak köszönhetően némileg növeljük a " -"védelmünket és építőanyaghoz is juthatunk." #: lang/json/recipe_from_json.py -msgid "south trench" -msgstr "déli árok" +msgid "build SW log bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the northeast corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the east side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +msgid "build W log bedroom walls" msgstr "" -"A tábor északkeleti sarkánál ásott ároknak köszönhetően némileg növeljük a " -"védelmünket és építőanyaghoz is juthatunk. Ha a tábor keleti oldalán egész " -"végig épületek vannak, akkor csak az épületekig kell kiásni az árkot." #: lang/json/recipe_from_json.py -msgid "northeast trench" -msgstr "északkeleti árok" +msgid "build NW log bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the northwest corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the west side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +msgid "build SE rock bedroom walls" msgstr "" -"A tábor északnyugati sarkánál ásott ároknak köszönhetően némileg növeljük a " -"védelmünket és építőanyaghoz is juthatunk. Ha a tábor nyugati oldalán egész " -"végig épületek vannak, akkor csak az épületekig kell kiásni az árkot." #: lang/json/recipe_from_json.py -msgid "northwest trench" -msgstr "északnyugati árok" +msgid "build E rock bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the southeast corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the east side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +msgid "build SW rock bedroom walls" msgstr "" -"A tábor délkeleti sarkánál ásott ároknak köszönhetően némileg növeljük a " -"védelmünket és építőanyaghoz is juthatunk. Ha a tábor keleti oldalán egész " -"végig épületek vannak, akkor csak az épületekig kell kiásni az árkot." #: lang/json/recipe_from_json.py -msgid "southeast trench" -msgstr "délkeleti árok" +msgid "build W rock bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the southwest corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the west side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +msgid "build NW rock bedroom walls" msgstr "" -"A tábor délnyugati sarkánál ásott ároknak köszönhetően némileg növeljük a " -"védelmünket és építőanyaghoz is juthatunk. Ha a tábor nyugati oldalán egész " -"végig épületek vannak, akkor csak az épületekig kell kiásni az árkot." #: lang/json/recipe_from_json.py -msgid "southwest trench" -msgstr "délnyugati árok" +msgid "build SE standard bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the east edge of the camp would provide some defense " -"and generate building materials. We'll need to run the trench the length of" -" the camp if we don't have solid buildings all along the east side." +msgid "build E standard bedroom walls" msgstr "" -"A tábor keleti oldalán ásott ároknak köszönhetően némileg növeljük a " -"védelmünket és építőanyaghoz is juthatunk. Ha a tábor keleti oldalán " -"nincsenek egész végig épületek, akkor végig kell kiásni az árkot." #: lang/json/recipe_from_json.py -msgid "east trench" -msgstr "keleti árok" +msgid "build SW standard bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the west edge of the camp would provide some defense " -"and generate building materials. We'll need to run the trench the length of" -" the camp if we don't have solid buildings all along the west side." +msgid "build W standard bedroom walls" msgstr "" -"A tábor nyugati oldalán ásott ároknak köszönhetően némileg növeljük a " -"védelmünket és építőanyaghoz is juthatunk. Ha a tábor nyugati oldalán " -"nincsenek egész végig épületek, akkor végig kell kiásni az árkot." #: lang/json/recipe_from_json.py -msgid "west trench" -msgstr "nyugati árok" +msgid "build NW standard bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a log shack with a wooden roof on the" -" northeast side of the camp" +msgid "build SE wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast shack" -msgstr "északkeleti kunyhó" +msgid "build E wattle and daub bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use logs to expand the shelter so we have space for another bed." +msgid "build SW wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "expand northeast shack" -msgstr "északkeleti kunyhó bővítése" +msgid "build W wattle and daub bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use logs to finish the northeast shack." +msgid "build NW wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "finish northeast shack" -msgstr "északkeleti kunyhó befejezése" +msgid "build SE wood panel bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the east side, " -"which we can also use as part of the central building." +msgid "build E wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east shack" -msgstr "keleti kunyhó" +msgid "build SW wood panel bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the east side, which we" -" can also use as part of the central building." +msgid "build W wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east room" -msgstr "keleti szoba" +msgid "build NW wood panel bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the southeast " -"side, which we can also use as part of the central building." +msgid "Let's furnish the southeast bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast shack" -msgstr "délkeleti kunyhó" +msgid "Let's furnish the southeast bedroom with a straw bed." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the southeast side, " -"which we can also use as part of the central building." +msgid "Let's furnish the west bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast room" -msgstr "délkeleti szoba" +msgid "Let's furnish the southeast bedroom with a makeshift bed." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the northwest " -"side, which we can also use as part of the central building." +msgid "Let's furnish the west bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest shack" -msgstr "északnyugati kunyhó" +msgid "Let's furnish the southwest bedroom with a regular bed." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the west side, " -"which we can also use as part of the central building." +msgid "Let's furnish the southwest bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "west shack" -msgstr "nyugati kunyhó" +msgid "Let's furnish the southwest bedroom with a makeshift bed." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the west side, which we" -" can also use as part of the central building." +msgid "Let's furnish the southern bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "west room" -msgstr "nyugati szoba" +msgid "furnish the S bedroom" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the southwest " -"side, which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest shack" -msgstr "délnyugati kunyhó" +msgid "Let's furnish the southern bedroom with makeshift beds." +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a log room on the southwest side, " -"which we can also use as part of the central building." +"Let's build some living quarters so we can expand. We will start in the " +"northwest corner." msgstr "" -#: lang/json/recipe_from_json.py -msgid "southwest room" -msgstr "délnyugati szoba" - #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from logs." +"Let's build some living quarters so we can expand. We will continue along " +"the west wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building NE corner" -msgstr "központi épület ÉK-i sarka" +msgid "" +"Let's build some living quarters so we can expand. We will continue along " +"the southwest corner." +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with logs." +"Let's build some living quarters so we can expand. We will continue along " +"the south wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from logs." +msgid "build S log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "central building NW corner" -msgstr "központi épület ÉNy-i sarka" +msgid "build S rock bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with logs." +msgid "build S standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with logs." +msgid "build S wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "central building north half" -msgstr "központi épület északi fele" +msgid "build NW wood bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from logs." +msgid "build W wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "central building SE corner" -msgstr "központi épület DK-i sarka" +msgid "build SW wood bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with logs." +msgid "build S wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from logs." +"We should build a well, across from the terminal. This will make our future" +" here more secure." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building SW corner" -msgstr "központi épület DNy-i sarka" +msgid "Let's furnish the northwest bedroom with a regular bed." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with logs." +msgid "Let's furnish the west bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with logs." +msgid "Let's furnish the west bedroom with regular a bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building south half" -msgstr "központi épület déli fele" +msgid "Let's furnish the southern bedroom with a regular bed." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a metal shack with a metal roof on " -"the northeast side of the camp" +msgid "Let's furnish the southern bedroom with a straw bed." msgstr "" -"Kellene valami fedél a fejünk fölé, úgyhogy a tábor északkeleti részén építs" -" egy fémtetős kunyhót." #: lang/json/recipe_from_json.py -msgid "" -"We should use metal to expand the shelter so we have space for another bed." +msgid "Let's furnish the southern bedroom with a makeshift bed." msgstr "" -"A fém segítségével tovább bővíthetnénk a fedelet a fejünk felett, és még egy" -" ágyra való helyünk lenne." #: lang/json/recipe_from_json.py -msgid "We should use metal to finish the northeast shack." -msgstr "A fém segítségével befejezhetnénk az északkeleti kunyhót." +msgid "Let's furnish the eastern bedroom with a regular bed." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the east " -"side, which we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a straw bed." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti részen " -"építeni kellene egy fém épületet, amelyet a központi épület részeként is " -"tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the east side, which " -"we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a makeshift bed." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti oldalon " -"egy fém szobát kellene építeni, amelyet a központi épület részeként is " -"tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a metal building on the southeast" -" side, which we can also use as part of the central building." +"Let's build some living quarters so we can expand. We will enclose the west" +" side of the stairs." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti részen " -"építeni kellene egy fém épületet, amelyet a központi épület részeként is " -"tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a metal room on the southeast side, " -"which we can also use as part of the central building." +"Let's build two living quarters so we can expand. We will continue along " +"the south wall." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti oldalon" -" egy fém szobát kellene építeni, amelyet a központi épület részeként is " -"tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a metal building on the northwest" -" side, which we can also use as part of the central building." +"Let's build another bedroom so we can expand. We will continue to enclose " +"the stairwell and add new doors." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy az északnyugati " -"részen építeni kellene egy fém épületet, amelyet a központi épület részeként" -" is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the west " -"side, which we can also use as part of the central building." +msgid "build central E bedroom log walls" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati részen " -"építeni kellene egy fém épületet, amelyet a központi épület részeként is " -"tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the west side, which " -"we can also use as part of the central building." +msgid "Let's build another bedroom on the east wall." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati oldalon " -"egy fém szobát kellene építeni, amelyet a központi épület részeként is " -"tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the southwest" -" side, which we can also use as part of the central building." +msgid "build E bedroom log walls" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati részen" -" építeni kellene egy fém épületet, amelyet a központi épület részeként is " -"tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the southwest side, " -"which we can also use as part of the central building." +msgid "build central E bedroom rock walls" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati " -"oldalon egy fém szobát kellene építeni, amelyet a központi épület részeként " -"is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from metal." +msgid "build E bedroom rock walls" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " -"északkeleti negyedét fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with metal." +msgid "build central E bedroom standard walls" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"keleti szobából kiindulva fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from metal." +msgid "build E bedroom standard walls" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " -"északnyugati negyedét fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with metal." +msgid "build central E bedroom wattle and daub" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"nyugati szobából kiindulva fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with metal." +msgid "build E bedroom wattle and daub" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"keleti és a nyugati szobákat összekötve fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from metal." +msgid "build S wood panel bedroom walls" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek a délkeleti " -"negyedét fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with metal." +msgid "build central E bedroom wood panel bedroom walls" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"délkeleti szobából kiindulva fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from metal." +msgid "build E bedroom wood panel bedroom walls" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek a délnyugati" -" negyedét fémből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with metal." -msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"délnyugati szobából kiindulva fémből kellene megépítenünk." +msgid "Survey land for a kitchen and dining area." +msgstr "A földet egy konyha és ebédlő építésének szempontjából kell felmérni." #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with metal." +"Now that we have some cover, we should build 2 fireplaces for cooking and " +"grab a pot." msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"délkeleti és a délnyugati szobákat összekötve fémből kellene megépítenünk." +"Most, hogy van némi fedél felettünk, a főzéshez építsünk 2 kandallót, és " +"szerezzünk egy lábost. " #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a mi-go resin shack with a sod roof " -"on the northeast side of the camp" -msgstr "" +msgid "build 2 fireplaces" +msgstr "2 kandalló építése" #: lang/json/recipe_from_json.py msgid "" -"We should use mi-go resin to expand the shelter so we have space for another" -" bed." +"Now that we have some cover, we should build 2 stoves for cooking and grab a" +" pot." msgstr "" +"Most, hogy van némi fedél felettünk, a főzéshez építsünk 2 kályhát, és " +"szerezzünk egy lábost. " #: lang/json/recipe_from_json.py -msgid "We should use mi-go resin to finish the northeast shack." -msgstr "" +msgid "build 2 wood stoves" +msgstr "2 fa kályha építése" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"east side, which we can also use as part of the central building." -msgstr "" +msgid "We should build a well. This will make cooking more convenient." +msgstr "Egy kutat kellene építenünk, így praktikusabban tudunk majd főzni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the east side, " -"which we can also use as part of the central building." +msgid "Let's build some counters and shelves." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"southeast side, which we can also use as part of the central building." -msgstr "" +msgid "build kitchen counters" +msgstr "konyhapultok építése" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the southeast " -"side, which we can also use as part of the central building." -msgstr "" +msgid "build 3 smoking racks and a charcoal kiln" +msgstr "3 füstölőállvány és faszenes kemence építése" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"northwest side, which we can also use as part of the central building." -msgstr "" +msgid "Lets furnish the pantry and build 2 root cellars." +msgstr "Rendezzük be az éléskamrát és építsünk 2 földpincét." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"west side, which we can also use as part of the central building." +msgid "furnish the pantry" +msgstr "éléskamra beredezése" + +#: lang/json/recipe_from_json.py +msgid "Let's make some furniture for the dining hall." +msgstr "Építsünk bútorokat az ebédlőbe." + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters to the north for a chef's garden." +msgstr "A szakácskerthez építsünk északon néhány virágtartót." + +#: lang/json/recipe_from_json.py +msgid "build some planters" +msgstr "néhány virágtartó építése" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the central kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the west side, " -"which we can also use as part of the central building." +msgid "build the log wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's finish the central kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the southwest " -"side, which we can also use as part of the central building." +msgid "finish the log wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from mi-go resin." +"Let's get this log wall smoking area covered to protect the workers from the" +" weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with mi-go resin." +msgid "build a log wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from mi-go resin." +msgid "Let's build a log wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with mi-go resin." +msgid "build a log wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with mi-go resin." +msgid "Let's build the west log wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from mi-go resin." +msgid "build W log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with mi-go resin." +msgid "Let's build the east log wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from mi-go resin." +msgid "build E log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with mi-go resin." +msgid "Let's build the center of the log wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with mi-go resin." +msgid "build center of the log wall dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a rammed earth shack with a sod roof " -"on the northeast side of the camp" +msgid "Let's start building the central kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use rammed earth to expand the shelter so we have space for " -"another bed." +msgid "build the metal wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use rammed earth to finish the northeast shack." +msgid "Let's finish the central kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"east side, which we can also use as part of the central building." +msgid "finish the metal wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a rammed earth room on the east side," -" which we can also use as part of the central building." +"Let's get this metal wall smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"southeast side, which we can also use as part of the central building." +msgid "build a metal wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the southeast " -"side, which we can also use as part of the central building." +msgid "Let's build a metal wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"northwest side, which we can also use as part of the central building." +msgid "build a metal wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"west side, which we can also use as part of the central building." +msgid "Let's build the west metal wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the west side," -" which we can also use as part of the central building." +msgid "build W metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's build the east metal wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the southwest " -"side, which we can also use as part of the central building." +msgid "build E metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from rammed earth." +msgid "Let's build the center of the metal wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with rammed earth." +msgid "build center of the metal wall dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from rammed earth." +msgid "Let's start building the central kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with rammed earth." +msgid "build the mi-go resin central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with rammed earth." +msgid "Let's finish the central kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from rammed earth." +msgid "finish the mi-go resin central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with rammed earth." +"Let's get this mi-go resin smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from rammed earth." +msgid "build a mi-go resin roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with rammed earth." +msgid "Let's build a mi-go resin wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with rammed earth." +msgid "build a mi-go resin pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a stone shack with a wooden roof on " -"the northeast side of the camp" +msgid "Let's build the west mi-go resin wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use rocks to expand the shelter so we have space for another bed." +msgid "build W mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use rocks to finish the northeast shack." +msgid "Let's build the east mi-go resin wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the east side," -" which we can also use as part of the central building." +msgid "build E mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the east side, which " -"we can also use as part of the central building." +msgid "Let's build the center of the mi-go resin dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the southeast " -"side, which we can also use as part of the central building." +msgid "build center of the mi-go resin dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the southeast side, " -"which we can also use as part of the central building." +msgid "Let's start building the central kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the northwest " -"side, which we can also use as part of the central building." +msgid "build the rammed earth central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the west side," -" which we can also use as part of the central building." +msgid "Let's finish the central kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the west side, which " -"we can also use as part of the central building." +msgid "finish the rammed earth central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a rock building on the southwest " -"side, which we can also use as part of the central building." +"Let's get this rammed earth smoking area covered to protect the workers from" +" the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the southwest side, " -"which we can also use as part of the central building." +msgid "build a rammed earth roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from rocks." +msgid "Let's build a rammed earth wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with rocks." +msgid "build a rammed earth pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from rocks." +msgid "Let's build the west rammed earth wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with rocks." +msgid "build W rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with rocks." +msgid "Let's build the east rammed earth wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from rocks." +msgid "build E rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with rocks." +msgid "Let's build the center of the rammed earth dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from rocks." +msgid "build center of the rammed earth dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with rocks." +msgid "Let's start building the central kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with rocks." +msgid "build the central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so set up a tent on the northeast side of the camp." +msgid "Let's finish the central kitchen rock walls." msgstr "" -"Kellene valami fedél a fejünk fölé, úgyhogy a tábor északkeleti részén építs" -" egy sátrat." #: lang/json/recipe_from_json.py -msgid "northeast tent" -msgstr "északkeleti sátor" +msgid "finish the rock wall central kitchen room" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a tent on the east side, though " -"doing so will mean we need more materials to build the central building." +"Let's get this rock wall smoking area covered to protect the workers from " +"the weather." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti részen " -"építeni kellene egy sátrat, bár ez azt is jelenti, hogy a központi épülethez" -" több építőanyag fog kelleni." #: lang/json/recipe_from_json.py -msgid "east tent" -msgstr "keleti sátor" - -#: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the southeast side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "build a rock wall roofed area for smoking racks" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti részen " -"építeni kellene egy sátrat, bár ez azt is jelenti, hogy a központi épülethez" -" több építőanyag fog kelleni." #: lang/json/recipe_from_json.py -msgid "southeast tent" -msgstr "délkeleti sátor" +msgid "Let's build a rock wall pantry west of the kitchen." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the northwest side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "build a rock wall pantry" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy az északnyugati " -"részen építeni kellene egy sátrat, bár ez azt is jelenti, hogy a központi " -"épülethez több építőanyag fog kelleni." #: lang/json/recipe_from_json.py -msgid "northwest tent" -msgstr "északnyugati sátor" +msgid "Let's build the west rock wall of the rock wall dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the west side, though " -"doing so will mean we need more materials to build the central building." +msgid "build W rock wall" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati részen " -"építeni kellene egy sátrat, bár ez azt is jelenti, hogy a központi épülethez" -" több építőanyag fog kelleni." #: lang/json/recipe_from_json.py -msgid "west tent" -msgstr "nyugati sátor" +msgid "Let's build the east rock wall of the rock wall dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the southwest side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "build E rock wall" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati részen" -" építeni kellene egy sátrat, bár ez azt is jelenti, hogy a központi " -"épülethez több építőanyag fog kelleni." #: lang/json/recipe_from_json.py -msgid "southwest tent" -msgstr "délnyugati sátor" +msgid "Let's build the center of the rock wall dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a wattle-and-daub shack with a sod " -"roof on the northeast side of the camp" +msgid "build center of the rock dining hall" msgstr "" -"Kellene valami fedél a fejünk fölé, úgyhogy a tábor északkeleti részén építs" -" egy fél, fonott és mázolt falú, földtetejű kunyhót." #: lang/json/recipe_from_json.py -msgid "" -"We should use wattle-and-daub to expand the shelter so we have space for " -"another bed." +msgid "Let's start building the central kitchen wattle and daub walls." msgstr "" -"A fonott és mázolt fal segítségével tovább bővíthetnénk a fedelet a fejünk " -"felett, és még egy ágyra való helyünk lenne." #: lang/json/recipe_from_json.py -msgid "We should use wattle-and-daub to finish the northeast shack." +msgid "build the wattle and daub central kitchen room" msgstr "" -"A fonott és mázolt fal segítségével befejezhetnénk az északkeleti kunyhót." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" east side, which we can also use as part of the central building." +msgid "Let's finish the central kitchen wattle and daub walls." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti részen " -"építeni kellene egy fonott és mázolt falú épületet, amelyet a központi " -"épület részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the east " -"side, which we can also use as part of the central building." +msgid "finish the wattle and daub central kitchen room" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti oldalon " -"egy fonott és mázolt falú szobát kellene építeni, amelyet a központi épület " -"részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" southeast side, which we can also use as part of the central building." +"Let's get this wattle and daub smoking area covered to protect the workers " +"from the weather." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti részen " -"építeni kellene egy fonott és mázolt falú épületet, amelyet a központi " -"épület részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the " -"southeast side, which we can also use as part of the central building." +msgid "build a wattle and daub roofed area for smoking racks" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti oldalon" -" egy fonott és mázolt falú szobát kellene építeni, amelyet a központi épület" -" részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" northwest side, which we can also use as part of the central building." +msgid "Let's build a wattle and daub wall pantry west of the kitchen." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy az északnyugati " -"részen építeni kellene egy fonott és mázolt falú épületet, amelyet a " -"központi épület részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" west side, which we can also use as part of the central building." +msgid "build a wattle and daub pantry" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati részen " -"építeni kellene egy fonott és mázolt falú épületet, amelyet a központi " -"épület részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the west " -"side, which we can also use as part of the central building." +msgid "Let's build the west wattle and daub wall of the dining hall." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati oldalon " -"egy fonott és mázolt falú szobát kellene építeni, amelyet a központi épület " -"részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" southwest side, which we can also use as part of the central building." +msgid "build W wattle and daub wall" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati részen" -" építeni kellene egy fonott és mázolt falú épületet, amelyet a központi " -"épület részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's build the east wattle and daub wall of the dining hall." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati " -"oldalon egy fonott és mázolt falú szobát kellene építeni, amelyet a központi" -" épület részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from wattle-and-daub." +msgid "build E wattle and daub wall" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " -"északkeleti negyedét fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with wattle-and-daub." +msgid "Let's build the center of the wattle and daub dining hall." msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"keleti szobából kiindulva fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from wattle-and-daub." +msgid "build center of the wattle and daub dining hall" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " -"északnyugati negyedét fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with wattle-and-daub." +msgid "Let's start building the central kitchen wood panel walls." msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"nyugati szobából kiindulva fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with wattle-and-daub." +msgid "build the wood panel central kitchen room" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"keleti és a nyugati szobákat összekötve fonott és mázolt falból kellene " -"megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from wattle-and-daub." +msgid "Let's finish the central kitchen wood panel walls." msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az délkeleti" -" negyedét fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with wattle-and-daub." +msgid "finish the wood panel central kitchen room" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"délkeleti szobából kiindulva fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from wattle-and-daub." +"Let's get this wood panel smoking area covered to protect the workers from " +"the weather." msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " -"délnyugati negyedét fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with wattle-and-daub." +msgid "build a wood panel roofed area for smoking racks" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"délnyugati szobából kiindulva fonott és mázolt falból kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with wattle-and-daub." +msgid "Let's build a wood panel pantry west of the kitchen." msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"délkeleti és a délnyugati szobákat összekötve fonott és mázolt falból " -"kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a wood panel shack with a wooden roof" -" on the northeast side of the camp" +msgid "build a wood panel pantry" msgstr "" -"Kellene valami fedél a fejünk fölé, úgyhogy a tábor északkeleti részén építs" -" egy fafalú, fatetős kunyhót." #: lang/json/recipe_from_json.py -msgid "" -"We should use wood panel to expand the shelter so we have space for another " -"bed." +msgid "Let's build the west wood panel wall of the dining hall." msgstr "" -"A fapanelek segítségével tovább bővíthetnénk a fedelet a fejünk felett, és " -"még egy ágyra való helyünk lenne." #: lang/json/recipe_from_json.py -msgid "We should use wood panel to finish the northeast shack." -msgstr "A fapanelek segítségével befejezhetnénk az északkeleti kunyhót." +msgid "build W wood wall" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the east" -" side, which we can also use as part of the central building." +msgid "Let's build the east wood panel wall of the dining hall." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti részen " -"építeni kellene egy fapaneles épületet, amelyet a központi épület részeként " -"is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the east side, " -"which we can also use as part of the central building." +msgid "build E wood wall" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a keleti oldalon " -"egy fapaneles szobát kellene építeni, amelyet a központi épület részeként is" -" tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"southeast side, which we can also use as part of the central building." +msgid "Let's build the center of the wood panel dining hall." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti részen " -"építeni kellene egy fapaneles épületet, amelyet a központi épület részeként " -"is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the southeast " -"side, which we can also use as part of the central building." +msgid "build center of the dining hall" msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délkeleti oldalon" -" egy fapaneles szobát kellene építeni, amelyet a központi épület részeként " -"is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"northwest side, which we can also use as part of the central building." +msgid "Survey land for a canteen." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy az északnyugati " -"részen építeni kellene egy fapaneles épületet, amelyet a központi épület " -"részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a wood panel building on the west" -" side, which we can also use as part of the central building." +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati részen " -"építeni kellene egy fapaneles épületet, amelyet a központi épület részeként " -"is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a wood panel room on the west side, " -"which we can also use as part of the central building." +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a nyugati oldalon " -"egy fapaneles szobát kellene építeni, amelyet a központi épület részeként is" -" tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a wood panel building on the " -"southwest side, which we can also use as part of the central building." +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati részen" -" építeni kellene egy fapaneles épületet, amelyet a központi épület részeként" -" is tudnánk majd használni." #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a wood panel room on the southwest " -"side, which we can also use as part of the central building." +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." msgstr "" -"Tovább kellene bővítenünk a lakóhelyeink számát, úgyhogy a délnyugati " -"oldalon egy fapaneles szobát kellene építeni, amelyet a központi épület " -"részeként is tudnánk majd használni." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from wood panel." +msgid "Lets build 2 root cellars in the kitchen." msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " -"északkeleti negyedét fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with wood panel." +msgid "build root cellars" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"keleti szobából kiindulva fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from wood panel." +msgid "Lets furnish the pantry." msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " -"északnyugati negyedét fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with wood panel." +msgid "Let's build some planters for a chef's garden." msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"nyugati szobából kiindulva fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with wood panel." +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"keleti és a nyugati szobákat összekötve fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from wood panel." +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az délkeleti" -" negyedét fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with wood panel." +msgid "build salt water tanks" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"délkeleti szobából kiindulva fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from wood panel." +msgid "Let's install some vats in the brewery" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ennek az " -"délnyugati negyedét fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with wood panel." +msgid "install some brewery vats" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"délnyugati szobából kiindulva fapanelekből kellene megépítenünk." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with wood panel." +msgid "Let's install some racks for storage in the brewery" msgstr "" -"Egy központi épület konyhaként és ebédlőként üzemelhetne. Ezt a részét a " -"délkeleti és a délnyugati szobákat összekötve fapanelekből kellene " -"megépítenünk." #: lang/json/recipe_from_json.py -msgid "We need to survey the base site first." -msgstr "Először fel kell mérnünk a bázis helyét." +msgid "install some brewery racks" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"The first thing we are going to need is a command tent to manage and task " -"workers from." +msgid "Let's install a still in the brewery" msgstr "" -"Legelőször is szükségünk lesz egy parancsnoki sátorra, ahonnan a munkákat " -"tudjuk koordinálni és a munkásoknak kiosztani a feladatokat." #: lang/json/recipe_from_json.py -msgid "basic northeast tent" -msgstr "kezdetleges északkeleti sátor" +msgid "install a still in the brewery" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We're going to need a fire pit and a bed if we want to stay here " -"permanently." +msgid "Let's build a windmill to allow us to grid flour efficiently" msgstr "" -"Ha hosszabb ideig szeretnénk itt maradni, akkor szükségünk lesz egy tűzrakó " -"helyre és egy ágyra." #: lang/json/recipe_from_json.py -msgid "basic firepit" -msgstr "kezdetleges tűzrakó hely" +msgid "build a windmill" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"To make this outpost functional we are going to need storage containers to " -"organize our supplies." +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" msgstr "" -"Ha azt szeretnénk, hogy ez az előörs fennmaradjon, akkor az ellátmány " -"szervezéséhez tárolókra lesz szükségünk." #: lang/json/recipe_from_json.py -msgid "basic storage" -msgstr "kezdetleges tároló" +msgid "build a bench and a bird bath" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Next we should expand the camp to comfortably support two people " -"indefinitely." +msgid "Let's start building the kitchen concrete walls." msgstr "" -"Következő lépésként ki kell terjesztenünk a tábort annyira, hogy két embert " -"kényelmesen eltarthasson." #: lang/json/recipe_from_json.py -msgid "basic northeast bed" -msgstr "kezdetleges északkeleti ágy" +msgid "build the concrete kitchen" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Additional housing and storage will allow our camp to expand into " -"specialized industries." +msgid "Let's finish the kitchen concrete walls." msgstr "" -"További épületek és tárolás segítségével a táborunk különféle iparágak felé " -"tud szakosodni." #: lang/json/recipe_from_json.py -msgid "basic northwest tent" -msgstr "kezdetleges északnyugati sátor" +msgid "finish the concrete kitchen" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Constructing a hard command post will transform our little camp into a true " -"base." +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." msgstr "" -"Egy megerősített parancsnoki állás a táborból igazi bázist hozd majd létre." #: lang/json/recipe_from_json.py -msgid "basic central building" -msgstr "kezdetleges központi fűtés" +msgid "build a concrete roofed area for smoking racks" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Building additional housing will allow us to send companions out to find " -"recruits." +msgid "Let's build a concrete wall pantry beside of the kitchen." msgstr "" -"További lakóhelyek építésével új emberek toborzására tudjuk majd a " -"társainkat kiküldeni." #: lang/json/recipe_from_json.py -msgid "basic west tent" -msgstr "kezdetleges nyugati sátor" +msgid "build a concrete pantry" +msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to expand our base to include basic dining facilities." -msgstr "A bázisunkat kezdetleges étkezési lehetőséggel kell kibővítenünk." +msgid "Let's build the first concrete part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "basic central kitchen" -msgstr "kezdetleges központi konyha" +msgid "build first dining concrete section" +msgstr "" #: lang/json/recipe_from_json.py -msgid "More housing means that we can support additional specialists." -msgstr "A több lakóhely azt jelenti, hogy több specialistát tudunk eltartani." +msgid "Let's build the second concrete part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "basic southeast tent" -msgstr "kezdetleges délkeleti sátor" +msgid "build second dining concrete section" +msgstr "" #: lang/json/recipe_from_json.py -msgid "An expanded kitchen is needed to support our growing settlement." -msgstr "A növekvő településünknek egy nagyobb konyhára van szüksége." +msgid "Let's build a the concrete brewery." +msgstr "" #: lang/json/recipe_from_json.py -msgid "basic expanded kitchen" -msgstr "kezdetleges kiterjesztett konyha" +msgid "build concrete brewery" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Finishing the hard structure will give us a more secure place to retreat to " -"if we come under attack." +msgid "Let's start building the kitchen log walls." msgstr "" -"A kemény falú építmény befejezése azt jelenti, hogy egy esetleges támadás " -"esetén biztonságosabb helyre tudunk visszavonulni." #: lang/json/recipe_from_json.py -msgid "basic completed central building" -msgstr "kezdetleges befejezett központi épület" +msgid "build the log kitchen" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"I'm surprised we've made it this long without securing a clean water source," -" we need a well." +msgid "Let's finish the kitchen log walls." msgstr "" -"Meglepő, hogy eddig bírtuk tiszta vízforrás nélkül, de most már kell egy " -"kút." #: lang/json/recipe_from_json.py -msgid "basic water well" -msgstr "kezdetleges kút" +msgid "finish the log kitchen" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Building a strong wall will keep the base secure even if a small horde " -"attacks." +"Let's get this log smoking area covered to protect the workers from the " +"weather." msgstr "" -"Egy erős fal bebiztosítja a bázist még egy kisebb horda támadása ellen is." #: lang/json/recipe_from_json.py -msgid "basic partial wall" -msgstr "kezdetleges részleges fal" - -#: lang/json/recipe_from_json.py -msgid "We need to finish our half built fortifications." -msgstr "Be kell fejeznünk a félkész erődítményeinket." +msgid "build a log roofed area for smoking racks" +msgstr "" #: lang/json/recipe_from_json.py -msgid "basic complete wall" -msgstr "kezdetleges kész fal" +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" #: lang/json/recipe_from_json.py -msgid "We're running out of room and need another living quarters." -msgstr "Kezdünk kifogyni a helyből, és további lakóhelyre van szükségünk." +msgid "build a log pantry" +msgstr "" #: lang/json/recipe_from_json.py -msgid "basic east tent" -msgstr "kezdetleges keleti sátor" +msgid "Let's build the first log part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Our kitchen isn't able to keep up with demand, we need to expand it." +msgid "build first dining log section" msgstr "" -"A konyhánk már nem képes lépést tartani az igényekkel, ki kell bővítenünk." #: lang/json/recipe_from_json.py -msgid "basic dining hall" -msgstr "kezdetleges ebédlő" +msgid "Let's build the second log part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build stronger doors to secure our compound." -msgstr "A bázisunk biztosítására erősebb ajtókat kell építenünk." +msgid "build second dining log section" +msgstr "" #: lang/json/recipe_from_json.py -msgid "basic reinforced gates" -msgstr "kezdetleges megerősített kapuk" +msgid "Let's build a the log brewery." +msgstr "" #: lang/json/recipe_from_json.py -msgid "One more tent and our living space will be full." -msgstr "Még egy sátor, és a lakóhelyek száma betelt." +msgid "build log brewery" +msgstr "" #: lang/json/recipe_from_json.py -msgid "basic southwest tent" -msgstr "kezdetleges délnyugati sátor" +msgid "Let's start building the kitchen metal walls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could construct a radio tower to improve communication range, first step " -"is the tower structure." +msgid "build the metal kitchen" msgstr "" -"A rádióink hatótávolságának növeléséhez építhetnénk egy rádiótornyot. Ehhez " -"az első lépés maga a torony." #: lang/json/recipe_from_json.py -msgid "basic radio tower" -msgstr "kezdetleges rádiótorony" +msgid "Let's finish the kitchen metal walls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to build a console to control the radio tower." -msgstr "A rádiótorony vezérléséhez egy konzolt kell építenünk." +msgid "finish the metal kitchen" +msgstr "" #: lang/json/recipe_from_json.py -msgid "basic radio console" -msgstr "kezdetleges rádiós konzol" +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen." -msgstr "A földet egy konyha építésének szempontjából kell felmérni." +msgid "build a metal roofed area for smoking racks" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen survey" -msgstr "Konyha felmérése" +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a cook-shack is our first task." -msgstr "Az első feladat egy főzés kunyhó megépítése." +msgid "build a metal pantry" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen fireplace shack" -msgstr "Konyhai kandallós kunyhó" +msgid "Let's build the first metal part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to finish framing the walls for the cook-shack." -msgstr "Be kell fejeznünk a konyhás kunyhó falait." +msgid "build first dining metal section" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen finished shack" -msgstr "Befejezett konyhás kunyhó" +msgid "Let's build the second metal part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Expanding the shack by including a smoker will increase our versatility." -msgstr "A kunyhót egy füstölővel tudjuk kibővíteni." +msgid "build second dining metal section" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen charcoal smoker" -msgstr "Konyhai faszenes füstölő" +msgid "Let's build a the metal brewery." +msgstr "" #: lang/json/recipe_from_json.py -msgid "A pantry will allow our cooks to store more non-perishables." +msgid "build metal brewery" msgstr "" -"Az éléskamrában a szakácsok még több nem romlandó ételt tudnak tárolni." #: lang/json/recipe_from_json.py -msgid "Kitchen pantry expansion" -msgstr "Konyhai éléskamra bővítése" +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Increasing our number of smoking racks will let us craft larger batches." +msgid "build the mi-go resin kitchen" msgstr "" -"Még több füstölőállvány segítségével egyszerre több ételt tudunk " -"elkészíteni." #: lang/json/recipe_from_json.py -msgid "Kitchen more smoking racks" -msgstr "Több konyhai füstölőállvány" +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "A well is needed so our cooks don't have to haul in water." +msgid "finish the mi-go resin kitchen" msgstr "" -"Kell egy kút, hogy a szakácsoknak ne kelljen kintről behordaniuk a vizet." #: lang/json/recipe_from_json.py -msgid "Kitchen water well" -msgstr "Konyhai kút" +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Wood stoves will give us greater control of temperatures and let us craft " -"more difficult recipes." +msgid "Let's build the first mi-go resin part of the dining hall." msgstr "" -"A fatüzelésű kályhákkal jobban tudjuk irányítani a hőhatást, és így még " -"nehezebb receptekből tudunk főzni." #: lang/json/recipe_from_json.py -msgid "Kitchen wood stoves" -msgstr "Konyhai fa kályha" +msgid "build first dining mi-go resin section" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Finally, expanding the pantry further will let us store additional " -"materials." +msgid "Let's build the second mi-go resin part of the dining hall." msgstr "" -"Végre az éléskamra kiterjesztésével még több alapanyagot tudunk tárolni." #: lang/json/recipe_from_json.py -msgid "Kitchen expanded pantry" -msgstr "Kibővített konyhai éléskamra" +msgid "build second dining mi-go resin section" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A trench that may deter movement but is meant to be the foundation of a " -"picket or palisade. Requirements are for 1/2 an over map tile." +msgid "Let's build a the mi-go resin brewery." msgstr "" -"Az árok gátolhatja ugyan a mozgást, de inkább kerítés vagy palánk " -"alapzatának szánták. A nyersanyag egy fél nagytérkép mezőhöz szükséges " -"mennyiséget jelzi." #: lang/json/recipe_from_json.py -msgid "" -"A deep trench filled with spikes, requires a trench. Requirements are for " -"1/2 an over map tile." +msgid "build mi-go resin brewery" msgstr "" -"Tüskékkel kirakott mély árok, építéséhez árok szükséges. A nyersanyag egy " -"fél nagytérkép mezőhöz szükséges mennyiséget jelzi." #: lang/json/recipe_from_json.py -msgid "Survey land for a blacksmith shop." -msgstr "A földet egy kovácsműhely szempontból kell felmérni." +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy survey" -msgstr "Kitűzött kovácsműhely" +msgid "build the rammed earth kitchen" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a forge and kiln is our first task." -msgstr "Az első feladat egy kovácsműhely és egy égetőkemence megépítése." +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy forge and kiln" -msgstr "Kovácsműhely és égetőkemence" +msgid "finish the rammed earth kitchen" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a proper roof for the shop is the next step." -msgstr "A következő lépés a műhely befedése." +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy roof" -msgstr "Kovácsműhely tető" +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a working table and placing an anvil are next." +msgid "build first dining rammed earth section" msgstr "" -"A következő lépés egy munkához használható asztal és egy üllő elhelyezése." #: lang/json/recipe_from_json.py -msgid "Blacksmithy anvil and workbench" -msgstr "Kovácsműhely üllő és munkalap" +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"If we're going to do more than simple metal casting we need a bigger shop." +msgid "build second dining rammed earth section" msgstr "" -"Ha az egyszerű fémöntésnél többet szeretnénk, akkor nagyobb műhelyre lesz " -"szükségünk." #: lang/json/recipe_from_json.py -msgid "Blacksmithy expanded shop" -msgstr "Kibővített kovácsműhely" +msgid "Let's build a the rammed earth brewery." +msgstr "" #: lang/json/recipe_from_json.py -msgid "We need some basic tools to make more advanced crafts." -msgstr "Az összetettebb dolgok elkészítéséhez alapvető szerszámok kellenek." +msgid "build rammed earth brewery" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy forging tools" -msgstr "Kovácsműhely szerszámok" +msgid "Let's start building the kitchen rock walls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "An expanded forge will allow us to work on bigger projects." +msgid "build the rock kitchen" msgstr "" -"A nagyobb méretű kovácsműhelyben még nagyobb projekteket tudunk véghez " -"vinni." #: lang/json/recipe_from_json.py -msgid "Blacksmithy expanded forge" -msgstr "Még nagyobb kovácsműhely" +msgid "Let's finish the kitchen rock walls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Proper steel work requires a bellows and quenching setup." +msgid "finish the rock kitchen" msgstr "" -"Az acél megmunkálásához fújtatóra és acélt edző tárgyakra lesz szükségünk." #: lang/json/recipe_from_json.py -msgid "Blacksmithy bellows and quenching barrels" -msgstr "Kovácsműhely fújtató és acéledző hordók" +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" #: lang/json/recipe_from_json.py -msgid "A separate workshop will allow us to do the most basic of machining." +msgid "build a rock roofed area for smoking racks" msgstr "" -"Egy különálló műhelyben elkezdhetjük a fémforgácsolásos megmunkálás " -"alapjait." #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop" -msgstr "Kovácsműhely fémforgácsolás" +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Next we need to add some basic tools and vises to the workshop." +msgid "build a rock pantry" msgstr "" -"A következő lépésben némi alapvető szerszámokkal és satuval kell felszerelni" -" a műhelyt." #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop tools" -msgstr "Kovácsműhely fémforgácsoló szerszámok" +msgid "Let's build the first rock part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Advanced forging processes require more room to work." -msgstr "A fejlettebb fémmegmunkáláshoz több helyre van szükség." +msgid "build first dining rock section" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop expansion" -msgstr "Kovácsműhely fémforgácsolás bővítése" +msgid "Let's build the second rock part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "An on-site well will allow us to fill boilers as needed." +msgid "build second dining rock section" msgstr "" -"A helyben fúrt kút segítségével szükség szerint tudjuk feltölteni a " -"bojlereket." #: lang/json/recipe_from_json.py -msgid "Blacksmithy well" -msgstr "Kovácsműhely kút" +msgid "Let's build a the rock brewery." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A steam-powered drop hammer will greatly increase production speed in " -"exchange for charcoal." +msgid "build rock brewery" msgstr "" -"A faszén tüzelésű, gőzhajtású ejtőkalapács jelentősen növelni fogja a " -"termelési sebességet." #: lang/json/recipe_from_json.py -msgid "Blacksmithy drop hammer" -msgstr "Kovácsműhely ejtőkalapács" +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a fireplace for cooking and grab a pot. Let's set up near " -"the working terminal." +msgid "build the wattle-and-daub kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a brazier for cooking and grab a pot. Let's set up near the" -" working terminal." +msgid "Let's finish the kitchen wattle-and-daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a wood stove for cooking and grab a pot. Let's set up near " -"the working terminal." +msgid "finish the wattle-and-daub kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a well, put it near the terminal. This will make our future" -" here more secure." +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with regular beds." +msgid "build a wattle-and-daub roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with regular beds." +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the E bedroom" +msgid "build a wattle-and-daub pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with straw beds." +msgid "Let's build the first wattle-and-daub part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with straw beds." +msgid "build first dining wattle-and-daub section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with makeshift beds." +msgid "Let's build the second wattle-and-daub part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with makeshift beds." +msgid "build second dining wattle-and-daub section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with regular beds." +msgid "Let's build a the wattle-and-daub brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular beds." +msgid "build wattle-and-daub brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the W bedroom" +msgid "Let's start building the kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with regular beds." +msgid "build the wood panel kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with straw beds." +msgid "Let's finish the kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with straw beds." +msgid "finish the wood panel kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with straw beds." +msgid "Let's build a wood panel wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with makeshift beds." +msgid "Let's build the first wood panel part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with makeshift beds." +msgid "build first dining wood panel section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with makeshift beds." +msgid "Let's build the second wood panel part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a dining area." +msgid "build second dining wood panel section" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the dining room" -msgstr "ebédlő berendezése" - -#: lang/json/recipe_from_json.py -msgid "Let's make a living room area." +msgid "Let's build a the wood panel brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the living room" +msgid "build wood panel brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some pantry storage." +msgid "Survey land for a farming area." msgstr "" #: lang/json/recipe_from_json.py -msgid "build some wooden racks" +msgid "farm area survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a work bench." -msgstr "" +msgid "Plowing a few plots should get us started." +msgstr "Egy pár terület felszántása elég a kezdetekhez." #: lang/json/recipe_from_json.py -msgid "build a work bench" -msgstr "" +msgid "Farm basic plots" +msgstr "Kezdetleges talajművelés" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"southeast corner." +msgid "We could use a farming shed to store resources where we'll be working." msgstr "" +"Jó lenne egy fészer, ahol a földművelésnél használt erőforrásokat tudjuk " +"tárolni." #: lang/json/recipe_from_json.py -msgid "build SE log bedroom walls" -msgstr "" +msgid "Farm basic shed" +msgstr "Kezdetleges fészer" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the same wall." +"Our farm could be expanded by finishing the shed and adding additional " +"plots." msgstr "" +"A farmunkat azzal tudnák bővíteni, ha befejeznénk a fészert, és további " +"földterületeket művelnénk meg." #: lang/json/recipe_from_json.py -msgid "build E log bedroom walls" -msgstr "" +msgid "Farm upgraded shed" +msgstr "Továbbépített fészer" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the other wall." +"Building a processing shack should allow us to reclaim additional seeds from" +" our byproducts." msgstr "" +"Egy feldolgozó kunyhó megépítésével a melléktermékekből több vetőmagot " +"tudnánk kinyerni." #: lang/json/recipe_from_json.py -msgid "build SW log bedroom walls" -msgstr "" +msgid "Farm processing shack" +msgstr "Feldolgozó kunyhó" #: lang/json/recipe_from_json.py -msgid "build W log bedroom walls" +msgid "Prepare a row of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW log bedroom walls" +msgid "prepare farm plots" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE rock bedroom walls" +msgid "Prepare a second row of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rock bedroom walls" +msgid "Prepare another pair of rows of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW rock bedroom walls" +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rock bedroom walls" +msgid "erect a fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW rock bedroom walls" +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE standard bedroom walls" +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E standard bedroom walls" +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW standard bedroom walls" +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W standard bedroom walls" +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW standard bedroom walls" +msgid "build a palisade gate" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE wattle and daub bedroom walls" +msgid "Survey land for a garage." msgstr "" +"A földet egy autószerelő műhely építésének szempontjából kell felmérni." #: lang/json/recipe_from_json.py -msgid "build E wattle and daub bedroom walls" -msgstr "" +msgid "Building a tool rack should be the first priority." +msgstr "Az első feladat egy szerszámtároló megépítése." #: lang/json/recipe_from_json.py -msgid "build SW wattle and daub bedroom walls" -msgstr "" +msgid "Garage tool rack" +msgstr "Autószerelő szerszámtárolója" #: lang/json/recipe_from_json.py -msgid "build W wattle and daub bedroom walls" -msgstr "" +msgid "We should start construction of a roof for the garage." +msgstr "El kellene kezdenünk az autószerelő műhely tetejét." #: lang/json/recipe_from_json.py -msgid "build NW wattle and daub bedroom walls" -msgstr "" +msgid "Garage partial roof" +msgstr "Autószerelő műhely részleges teteje" #: lang/json/recipe_from_json.py -msgid "build SE wood panel bedroom walls" +msgid "Finishing out the roof will let our mechanics work rain or shine." msgstr "" +"A tető befejezésével az autószerelők mindig tudnak dolgozni, akár süt a nap," +" akár esik az eső." #: lang/json/recipe_from_json.py -msgid "build E wood panel bedroom walls" -msgstr "" +msgid "Garage completed roof" +msgstr "Autószerelő műhely befejezett teteje" #: lang/json/recipe_from_json.py -msgid "build SW wood panel bedroom walls" +msgid "" +"Our garage isn't big enough to work on larger vehicles. Let's start " +"expanding it." msgstr "" +"Az autószerelő műhelyünk nem elég nagy ahhoz, hogy nagyobb járművekkel is be" +" lehessen állni. Kezdjük el a bővítését." #: lang/json/recipe_from_json.py -msgid "build W wood panel bedroom walls" -msgstr "" +msgid "Garage partial expansion" +msgstr "Autószerelő műhely részleges bővítése" #: lang/json/recipe_from_json.py -msgid "build NW wood panel bedroom walls" +msgid "Finishing the roof will let us park RVs and buses in the garage." msgstr "" +"A tető befejezésével az autószerelő műhelybe lakóautókkal és buszokkal is be" +" lehet majd állni." #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a regular bed." -msgstr "" +msgid "Garage expanded roof" +msgstr "Autószerelő műhely kibővített teteje" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a straw bed." +msgid "" +"Attaching quarters will let our mechanics work longer hours when needed." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a straw bed." -msgstr "" +msgid "Garage mechanics quarters" +msgstr "Autószerelők lakóhelye" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a makeshift bed." +msgid "Let's connect the two walls with the missing roof piece." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a makeshift bed." +msgid "build the missing roof section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a regular bed." +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a straw bed." +msgid "build some furniture" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a makeshift bed." +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with regular beds." +msgid "build an outer palisade gate" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the S bedroom" +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with straw beds." +msgid "Let's start building the first garage concrete wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with makeshift beds." +msgid "build the first concrete garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"northwest corner." +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the west wall." +msgid "build the second concrete garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the southwest corner." +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the south wall." +msgid "build an inner concrete wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "build S log bedroom walls" +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S rock bedroom walls" +msgid "extend the first wall using concrete" msgstr "" #: lang/json/recipe_from_json.py -msgid "build S standard bedroom walls" +msgid "Let's extend the second wall to match the first one, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wattle and daub bedroom walls" +msgid "extend the second wall using concrete" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wood bedroom walls" +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood bedroom walls" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wood bedroom walls" +msgid "Let's start building the first garage log wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wood bedroom walls" +msgid "build the first log garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a well, across from the terminal. This will make our future" -" here more secure." +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with a regular bed." +msgid "build the second log garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a regular bed." +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular a bed." +msgid "build an inner log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a regular bed." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a straw bed." +msgid "extend the first wall using logs" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a makeshift bed." +msgid "Let's extend the second wall to match the first one, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a regular bed." +msgid "extend the second wall using log" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a straw bed." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a makeshift bed." +msgid "extend the second wall using logs" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will enclose the west" -" side of the stairs." +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build two living quarters so we can expand. We will continue along " -"the south wall." +msgid "Let's start building the first garage metal wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build another bedroom so we can expand. We will continue to enclose " -"the stairwell and add new doors." +msgid "build the first metal garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom log walls" +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build another bedroom on the east wall." +msgid "build the second metal garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom log walls" +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom rock walls" +msgid "build an inner metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom rock walls" +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom standard walls" +msgid "extend the first wall using metal" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom standard walls" +msgid "Let's extend the second wall to match the first one, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wattle and daub" +msgid "extend the second wall using metal" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom wattle and daub" +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wood panel bedroom walls" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wood panel bedroom walls" +msgid "Let's start building the first garage mi-go resin wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom wood panel bedroom walls" +msgid "build the first mi-go resin garage section" msgstr "" -#: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen and dining area." -msgstr "A földet egy konyha és ebédlő építésének szempontjából kell felmérni." - #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build 2 fireplaces for cooking and " -"grab a pot." +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" -"Most, hogy van némi fedél felettünk, a főzéshez építsünk 2 kandallót, és " -"szerezzünk egy lábost. " #: lang/json/recipe_from_json.py -msgid "build 2 fireplaces" -msgstr "2 kandalló építése" +msgid "build the second mi-go resin garage section" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build 2 stoves for cooking and grab a" -" pot." +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." msgstr "" -"Most, hogy van némi fedél felettünk, a főzéshez építsünk 2 kályhát, és " -"szerezzünk egy lábost. " - -#: lang/json/recipe_from_json.py -msgid "build 2 wood stoves" -msgstr "2 fa kályha építése" - -#: lang/json/recipe_from_json.py -msgid "We should build a well. This will make cooking more convenient." -msgstr "Egy kutat kellene építenünk, így praktikusabban tudunk majd főzni." #: lang/json/recipe_from_json.py -msgid "Let's build some counters and shelves." +msgid "build an inner mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "build kitchen counters" -msgstr "konyhapultok építése" - -#: lang/json/recipe_from_json.py -msgid "build 3 smoking racks and a charcoal kiln" -msgstr "3 füstölőállvány és faszenes kemence építése" +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Lets furnish the pantry and build 2 root cellars." -msgstr "Rendezzük be az éléskamrát és építsünk 2 földpincét." +msgid "extend the first wall using mi-go resin" +msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the pantry" -msgstr "éléskamra beredezése" +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make some furniture for the dining hall." -msgstr "Építsünk bútorokat az ebédlőbe." +msgid "extend the second wall using mi-go resin" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some planters to the north for a chef's garden." -msgstr "A szakácskerthez építsünk északon néhány virágtartót." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" #: lang/json/recipe_from_json.py -msgid "build some planters" -msgstr "néhány virágtartó építése" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen log walls." +msgid "Let's start building the first garage rammed earth wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the log wall central kitchen room" +msgid "build the first rammed earth garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen log walls." +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the log wall central kitchen room" +msgid "build the second rammed earth garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this log wall smoking area covered to protect the workers from the" -" weather." +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a log wall roofed area for smoking racks" +msgid "build an inner rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a log wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a log wall pantry" +msgid "extend the first wall using rammed earth" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west log wall of the dining hall." +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W log wall" +msgid "extend the second wall using rammed earth" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east log wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E log wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the log wall dining hall." +msgid "Let's start building the first garage rock wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the log wall dining hall" +msgid "build the first rock garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen metal walls." +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the metal wall central kitchen room" +msgid "build the second rock garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen metal walls." +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the metal wall central kitchen room" +msgid "build an inner rock wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this metal wall smoking area covered to protect the workers from " -"the weather." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metal wall roofed area for smoking racks" +msgid "extend the first wall using rock" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a metal wall pantry west of the kitchen." +msgid "Let's extend the second wall to match the first one, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metal wall pantry" +msgid "extend the second wall using rock" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west metal wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W metal wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east metal wall of the dining hall." +msgid "Let's start building the first garage wattle-and-daub wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E metal wall" +msgid "build the first wattle-and-daub garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the metal wall dining hall." +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the metal wall dining hall" +msgid "build the second wattle-and-daub garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen mi-go resin walls." +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the mi-go resin central kitchen room" +msgid "build an inner wattle-and-daub wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen mi-go resin walls." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the mi-go resin central kitchen room" +msgid "extend the first wall using wattle-and-daub" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this mi-go resin smoking area covered to protect the workers from " -"the weather." +"Let's extend the second wall to match the first one, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a mi-go resin roofed area for smoking racks" +msgid "extend the second wall using wattle-and-daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a mi-go resin wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a mi-go resin pantry" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west mi-go resin wall of the dining hall." +msgid "Let's start building the first garage wood wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W mi-go resin wall" +msgid "build the first wood garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east mi-go resin wall of the dining hall." +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E mi-go resin wall" +msgid "build the second wood garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the mi-go resin dining hall." +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the mi-go resin dining hall" +msgid "build an inner wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rammed earth walls." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rammed earth central kitchen room" +msgid "extend the first wall using wood panels" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rammed earth walls." +msgid "" +"Let's extend the second wall to match the first one, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the rammed earth central kitchen room" +msgid "extend the second wall using wood" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rammed earth smoking area covered to protect the workers from" -" the weather." +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rammed earth roofed area for smoking racks" +msgid "extend the second wall using wood panels" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rammed earth wall pantry west of the kitchen." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rammed earth pantry" +msgid "Survey land for a livestock area." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west rammed earth wall of the dining hall." +msgid "Livestock survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rammed earth wall" +msgid "" +"We could use a fence to contain our chickens and other birds, so build a " +"chickenwire fence on the east side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east rammed earth wall of the dining hall." +msgid "east coop yard" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rammed earth wall" +msgid "" +"We could use paddock for the stable, so build a split-rail fence on the " +"north side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rammed earth dining hall." +msgid "north paddock" msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the rammed earth dining hall" +msgid "" +"We could use paddock for the stable, so build a split-rail fence in the " +"center of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rock walls." +msgid "center paddock" msgstr "" #: lang/json/recipe_from_json.py -msgid "build the central kitchen room" +msgid "" +"We could use paddock for the stable, so build a split-rail fence to close " +"off the south end of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rock walls." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a log " +"shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the rock wall central kitchen room" +msgid "northeast coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rock wall smoking area covered to protect the workers from " -"the weather." +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rock wall roofed area for smoking racks" +msgid "southeast storage room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rock wall pantry west of the kitchen." +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rock wall pantry" +msgid "southwest stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west rock wall of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the west" +" side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rock wall" +msgid "west stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east rock wall of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the " +"northwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rock wall" +msgid "northwest stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rock wall dining hall." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"metal sheet shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the rock dining hall" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal sheet shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wattle and daub walls." +msgid "" +"We could use a stable for larger livestock, so build a metal sheet shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wattle and daub central kitchen room" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a mi-" +"go resin shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wattle and daub walls." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the wattle and daub central kitchen room" +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wattle and daub smoking area covered to protect the workers " -"from the weather." +"We could use a coop to contain our chickens and other birds, so build a " +"rammed earth shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub roofed area for smoking racks" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a wattle and daub wall pantry west of the kitchen." +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub pantry" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"stone shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west wattle and daub wall of the dining hall." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"stone shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wattle and daub wall" +msgid "" +"We could use a stable for larger livestock, so build a stone shack with a " +"roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east wattle and daub wall of the dining hall." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"wattle and daub shack with a roof on the northeast side of the livestock " +"field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wattle and daub wall" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle and daub shack with a roof on the southeast side of the livestock " +"field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wattle and daub dining hall." +msgid "" +"We could use a stable for larger livestock, so build a wattle and daub shack" +" with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the wattle and daub dining hall" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a wood" +" panel shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wood panel walls." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wood panel central kitchen room" +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wood panel walls." +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the wood panel central kitchen room" +msgid "chicken coop yard" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wood panel smoking area covered to protect the workers from " -"the weather." +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood panel roofed area for smoking racks" +msgid "remote paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a wood panel pantry west of the kitchen." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood panel pantry" +msgid "side paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west wood panel wall of the dining hall." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood wall" +msgid "near paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east wood panel wall of the dining hall." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wood wall" +msgid "concrete chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wood panel dining hall." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the dining hall" +msgid "concrete storage shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a farming area." +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "farm area survey" +msgid "concrete stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Plowing a few plots should get us started." -msgstr "Egy pár terület felszántása elég a kezdetekhez." +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm basic plots" -msgstr "Kezdetleges talajművelés" +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "We could use a farming shed to store resources where we'll be working." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." msgstr "" -"Jó lenne egy fészer, ahol a földművelésnél használt erőforrásokat tudjuk " -"tárolni." #: lang/json/recipe_from_json.py -msgid "Farm basic shed" -msgstr "Kezdetleges fészer" +msgid "log chicken coop" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Our farm could be expanded by finishing the shed and adding additional " -"plots." +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." msgstr "" -"A farmunkat azzal tudnák bővíteni, ha befejeznénk a fészert, és további " -"földterületeket művelnénk meg." #: lang/json/recipe_from_json.py -msgid "Farm upgraded shed" -msgstr "Továbbépített fészer" +msgid "log storage shack" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Building a processing shack should allow us to reclaim additional seeds from" -" our byproducts." +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." msgstr "" -"Egy feldolgozó kunyhó megépítésével a melléktermékekből több vetőmagot " -"tudnánk kinyerni." - -#: lang/json/recipe_from_json.py -msgid "Farm processing shack" -msgstr "Feldolgozó kunyhó" #: lang/json/recipe_from_json.py -msgid "Survey land for a garage." +msgid "log stable" msgstr "" -"A földet egy autószerelő műhely építésének szempontjából kell felmérni." #: lang/json/recipe_from_json.py -msgid "Building a tool rack should be the first priority." -msgstr "Az első feladat egy szerszámtároló megépítése." +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage tool rack" -msgstr "Autószerelő szerszámtárolója" +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "We should start construction of a roof for the garage." -msgstr "El kellene kezdenünk az autószerelő műhely tetejét." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage partial roof" -msgstr "Autószerelő műhely részleges teteje" +msgid "metal chicken coop" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Finishing out the roof will let our mechanics work rain or shine." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." msgstr "" -"A tető befejezésével az autószerelők mindig tudnak dolgozni, akár süt a nap," -" akár esik az eső." #: lang/json/recipe_from_json.py -msgid "Garage completed roof" -msgstr "Autószerelő műhely befejezett teteje" +msgid "metal storage shack" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Our garage isn't big enough to work on larger vehicles. Let's start " -"expanding it." +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." msgstr "" -"Az autószerelő műhelyünk nem elég nagy ahhoz, hogy nagyobb járművekkel is be" -" lehessen állni. Kezdjük el a bővítését." #: lang/json/recipe_from_json.py -msgid "Garage partial expansion" -msgstr "Autószerelő műhely részleges bővítése" +msgid "metal stable" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Finishing the roof will let us park RVs and buses in the garage." +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." msgstr "" -"A tető befejezésével az autószerelő műhelybe lakóautókkal és buszokkal is be" -" lehet majd állni." #: lang/json/recipe_from_json.py -msgid "Garage expanded roof" -msgstr "Autószerelő műhely kibővített teteje" +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Attaching quarters will let our mechanics work longer hours when needed." +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage mechanics quarters" -msgstr "Autószerelők lakóhelye" +msgid "mi-go resin chicken coop" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a livestock area." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Livestock survey" +msgid "mi-go resin storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a fence to contain our chickens and other birds, so build a " -"chickenwire fence on the east side of the livestock field." +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "east coop yard" +msgid "mi-go resin stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence on the " -"north side of the livestock field." +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "north paddock" +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence in the " -"center of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "center paddock" +msgid "rammed earth chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence to close " -"off the south end of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a log " -"shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast coop" +msgid "rammed earth stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a log " -"shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast storage room" +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a log shack with a roof" -" on the southwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest stable" +msgid "rock chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the west" -" side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "west stable" +msgid "rock storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the " -"northwest side of the livestock field." +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest stable" +msgid "rock stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"metal sheet shack with a roof on the northeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rock walled " +"stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"metal sheet shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a metal sheet shack " -"with a roof on the southwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a mi-" -"go resin shack with a roof on the northeast side of the livestock field." +msgid "wattle-and-daub chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a mi-" -"go resin shack with a roof on the southeast side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a mi-go resin shack " -"with a roof on the southwest side of the livestock field." +msgid "wattle-and-daub storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"rammed earth shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"rammed earth shack with a roof on the southeast side of the livestock field." +msgid "wattle-and-daub stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a rammed earth shack " -"with a roof on the southwest side of the livestock field." +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"stone shack with a roof on the northeast side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"stone shack with a roof on the southeast side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a stone shack with a " -"roof on the southwest side of the livestock field." +msgid "wood panel chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"wattle and daub shack with a roof on the northeast side of the livestock " -"field." +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"wattle and daub shack with a roof on the southeast side of the livestock " -"field." +msgid "wood panel storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wattle and daub shack" -" with a roof on the southwest side of the livestock field." +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a wood" -" panel shack with a roof on the northeast side of the livestock field." +msgid "wood panel stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a wood" -" panel shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wood panel shack with" -" a roof on the southwest side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." msgstr "" #: lang/json/recipe_from_json.py @@ -197882,6 +200770,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -198147,60 +201674,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -199035,8 +202871,12 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" -msgstr "Kantin" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" +msgstr "" #: lang/json/recipe_group_from_json.py msgid "Farm version 1. Shed, plots, some farming recipes" @@ -199047,25 +202887,45 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "Autószerelő" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" -msgstr "Istálló" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" +msgstr "" #: lang/json/recipe_group_from_json.py msgid "Saltworks Area" msgstr "Sóbánya" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" -msgstr "Központi raktárépület" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" -msgstr "Gyártó műhely" +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 2. More detailed recipe progression" +msgstr "" #: lang/json/recipe_group_from_json.py msgid "Light Industry Workshop" @@ -199227,6 +203087,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -201492,6 +205408,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -201812,7 +205754,7 @@ msgstr "" "Nyersanyagok hasznos tárgyakká való alakítását befolyásoló készség. Számos " "tárgy elkészítéséhez fontos ismeret." -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -202716,8 +206658,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -203509,15 +207451,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -208564,6 +212507,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -208572,7 +212781,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -208689,7 +212898,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -213442,7 +217651,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -213501,7 +217710,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -213514,7 +217723,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -213532,17 +217741,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -213621,7 +217830,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -213731,8 +217940,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -214140,7 +218349,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -214150,8 +218359,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -215573,6 +219782,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -217869,7 +222140,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "Szeretlek!" @@ -218530,6 +222801,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "Igen." + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -218548,6 +222931,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "\"IGAZUNK VOLT A KORMÁNY CSINÁLTA\"" @@ -219715,6 +224113,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -222059,6 +226535,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -222168,6 +226651,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -222191,6 +226692,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -223720,11 +228228,9 @@ msgstr "vidám hang: \"Ügyfél? Mi örökké barátok leszünk, ugye?\"" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" -"semleges hang: \"Ügyfél, tájékoztatnom kell arról, hogy az Önre allokált " -"időm hamarosan véget ér.\"" #: lang/json/speech_from_json.py msgid "" @@ -223897,19 +228403,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -223982,128 +228488,132 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "Szeretnél velem játszani?" +msgid "\"Wanna play with me?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "Énekelj velem!" +msgid "\"Sing with me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" -msgstr "Kérlek, vigyél magaddal!" +msgid "\"I love you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "Kaphatok egy sütit?" +msgid "\"Please take me with you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "Játsszunk együtt!" +msgid "\"May I have a cookie?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" -msgstr "Játsszunk!" +msgid "\"Let's play together!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" -msgstr "Nyamm nyamm nyamm! Fincsi!" +msgid "\"Time to play!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" -msgstr "Te vagy az anyukám?" +msgid "\"Om nom nom! Delicious!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" -msgstr "Ó de mókás!" +msgid "\"Are you my mommy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" -msgstr "Te vagy a legjobb barátom!" +msgid "\"Oh, how fun!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" -msgstr "Hi hi hi!" +msgid "\"You're my best friend!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" -msgstr "Menjünk játszani!" +msgid "\"Heehee!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" -msgstr "Játsszunk teázósat!" +msgid "\"Let's have fun!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" -msgstr "Te vagy a legjobb!" +msgid "\"Let's have a tea party!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." -msgstr "Te vagy a legjobb!" +msgid "\"You're the best!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." -msgstr "Játsszunk... Orosz rulettet." +msgid "\"You shouldn't have done that.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "Utállak." +msgid "\"Let's play… Russian roulette.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" -msgstr "Öld meg magad!" +msgid "\"I hate you.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" -msgstr "A Nagy Testvér figyel..." +msgid "\"Go kill yourself!\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"Big Brother is watching you…\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" -msgstr "Értem halj meg!" +msgid "\"Die for me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" -msgstr "Miért nem halsz meg?" +msgid "\"Why won't you die?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." -msgstr "Vééér... Finom." +msgid "\"Blood… Delicious.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" -msgstr "Találkozunk.. A POKOLBAN!" +msgid "\"See you… IN HELL!\"" +msgstr "" #: lang/json/speech_from_json.py msgid "AAAIEEEEEEE!" msgstr "JÁÁÁÁÁÁÁÁÁÁ!!!" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" -msgstr "BASZÓDJ MEG!" +msgid "\"FUCK YOU!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" -msgstr "Mit csináltál a mamával?" +msgid "\"What did you do with my Mommy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" -msgstr "Maradj velem... örökre!" +msgid "\"Stay with me… forever!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "Sziasztok gyerekek! Kértek cukorkát?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" -msgstr "Itt lenn MINDENKI lebeg!" +msgid "\"Down here, they ALL float!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" -msgstr "Tényleg ennyi méz kell?" +msgid "\"Do you really need that much honey?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" -msgstr "Az előző tulajdonosom visított, mint egy disznó, amikor kibeleztem!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" +msgstr "" #: lang/json/speech_from_json.py msgid "BARK!" @@ -224118,19 +228628,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -225197,6 +229703,10 @@ msgstr "Élelmiszerbolt" msgid "Gun Store" msgstr "Fegyverbolt" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "Autószerelő" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "Zaci" @@ -226630,6 +231140,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -233856,6 +238370,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -234502,6 +239794,10 @@ msgstr "Tudok valamiben segíteni?" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -234571,6 +239867,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -237003,10 +242310,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -240799,10 +246102,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -241133,6 +246432,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -241430,6 +246838,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -241520,6 +246937,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -244292,6 +249761,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -244477,20 +249963,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "Lefegyverzés" @@ -245103,20 +250575,6 @@ msgstr "Ostoroddal kitéped %s kezéből a fegyverét" msgid " disarms %s using their whip" msgstr "ostorával kitépi %s kezéből a fegyverét" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "Ellentámadás" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "Ellentámadást mérsz %s testére" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr " ellentámadást mér %s testére" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "Cselfogás" @@ -245152,54 +250610,44 @@ msgid " jabs deftly at %s" msgstr "ügyesen döf egyet %s testébe " #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" -msgstr "" +msgid "You smoothly throw %s" +msgstr "Simán eldobod a(z) %s testét" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -245283,20 +250731,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -245415,34 +250849,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -245458,45 +250864,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -245580,17 +250986,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -245632,7 +251038,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -245645,6 +251051,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -245791,20 +251201,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -245909,20 +251305,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -246023,20 +251405,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -246361,41 +251729,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -246596,20 +251960,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -247370,20 +252720,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -247482,20 +252818,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -247538,20 +252860,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -249792,6 +255100,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "almafa" @@ -253192,24 +258512,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -253217,32 +258537,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -253250,35 +258570,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -253286,33 +258601,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -253320,10 +258635,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -253331,10 +258646,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -253342,40 +258657,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -253383,21 +258696,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" +msgid "reinforced triple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" -msgstr "" - -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -253405,44 +258714,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" +msgid "quadruple glazed glass window" msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -253450,14 +258750,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -253475,12 +258771,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -253488,21 +258779,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" +msgid "plastic window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Plastic window" -msgstr "" - -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -253510,10 +258797,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -253521,7 +258808,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -253530,10 +258817,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -253542,21 +258829,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -253564,10 +258847,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -253576,10 +258859,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -253587,7 +258870,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -253596,26 +258879,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -253629,11 +258912,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -256172,6 +261451,75 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " @@ -256180,6 +261528,24 @@ msgstr "" "Zárt rendszerű, külsőégésű gőzmotor. A jármű szénkamrájában tárolt szenet " "vagy faszenet égeti el, és gőzt hoz létre." +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py @@ -256187,6 +261553,26 @@ msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" "Egy ajtó. Ablak van rajta, így még akkor átlátni rajta, amikor csukva van." +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "átlátszatlan ajtó" @@ -256612,6 +261998,57 @@ msgstr "" msgid "An electric motor." msgstr "Egy elektromos motor." +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -257130,6 +262567,15 @@ msgstr "Egy folyosó." msgid "wooden aisle" msgstr "fa folyosó" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -257285,6 +262731,10 @@ msgstr "összehajtható fadoboz" msgid "wood table" msgstr "faasztal" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "fa hajótest" @@ -257355,6 +262805,10 @@ msgstr "Kijelzőket és vezérlőszerveket tartalmazó keret." msgid "vehicle-mounted heater" msgstr "járműbe szerelt melegítő" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "járműbe szerelt léghűtő" @@ -257467,6 +262921,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -258762,8 +264222,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -261568,6 +267028,18 @@ msgstr "Tulajdonságok" msgid "Coverage:" msgstr "Fedettség:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "Ormótlanság:" @@ -261659,8 +267131,9 @@ msgstr "Ruharétegezés" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -261672,6 +267145,12 @@ msgstr "(Legbelső)" msgid "Storage (%s)" msgstr "Tárolás (%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(Legkülső)" @@ -265950,11 +271429,6 @@ msgstr "Ennek semmiféle hatása sem lesz." msgid "No limb would benefit from it." msgstr "Egy végtag sem lesz jobban tőle." -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "Mégse" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "Nehezen tudsz felállni." @@ -266271,6 +271745,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "Jármű szétszerelési zóna" @@ -268553,10 +274035,6 @@ msgstr "készítéshez szükséges elsődleges készség" msgid "any skill used to craft" msgstr "készítéshez szükséges bármilyen készség" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "főzés" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "készítéshez szükséges minőség" @@ -269101,6 +274579,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -269531,6 +275017,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -269619,6 +275110,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -270372,7 +275868,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -270394,15 +275890,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -273740,6 +279227,10 @@ msgstr "" msgid "You swap places with %s." msgstr "Helyet cserélsz vele: %s." +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -274030,6 +279521,15 @@ msgstr "Ode nem tudsz utazni." msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "Tárgyak" @@ -276416,10 +281916,6 @@ msgstr "Nyeregben nem lehet aludni." msgid "Are you sure you want to sleep?" msgstr "Biztosan szeretnél aludni?" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "Igen." - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "Igen, és alvás előtt készüljön mentés." @@ -276565,6 +282061,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -276925,10 +282429,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "Mit szeretnél ezzel tenni: %s?" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "Bionikába töltöd" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "Elfogyasztod" @@ -277478,13 +282978,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -280873,6 +286366,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "Törzs:" @@ -283953,13 +289461,15 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "Mennyire állítod az időzítőt? (0 = mégsem)" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "Az időzítőt ennyire állítod: %d." +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -284696,8 +290206,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -284919,38 +290428,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -286176,87 +291653,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "" - -#: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -289085,7 +294505,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -294017,6 +299449,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "Beszélni vele: %s" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -294887,21 +300324,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -295165,11 +300587,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -296873,11 +302304,6 @@ msgstr "Arc nélkül nem tudsz beszélni!" msgid "What do you want to do?" msgstr "Mit szeretnél csinálni?" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "Beszélni vele: %s" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -297668,6 +303094,15 @@ msgstr "" "Ha igen, akkor a kézben tartott csákányt vagy légkalapácsot kiásható falba " "mozgáskor automatikusan használod." +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "Autom. guberálás" @@ -297675,17 +303110,19 @@ msgstr "Autom. guberálás" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" -"Mit tegyen, ha az automatikus guberálás be van kapcsolva. Bokor: csak a " -"bokrokban kotorászik. - Fák: Csak a fákon keres élelmet. - Minden: A " -"bokrokban, a fákon, és mindenhol máshol is keres élelmet." #: src/options.cpp msgid "Bushes" msgstr "Bokrok" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "Minden" @@ -300177,20 +305614,6 @@ msgstr "Zóna:" msgid "# Unexplored" msgstr "# Felfedezetlen" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -300531,6 +305954,11 @@ msgstr "Naplemente táján" msgid "Night" msgstr "Éjszaka" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s, %d. nap" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -300579,6 +306007,10 @@ msgstr "Nagyon hideg!" msgid "Freezing!" msgstr "Fagyos!" +#: src/panels.cpp +msgid "SAFE" +msgstr "BIZT" + #: src/panels.cpp msgid "On" msgstr "Be" @@ -303005,6 +308437,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -307362,6 +312804,10 @@ msgstr "Nincsen elég energia a(z) %1$s %2$s tartalmának megtisztításához" msgid "You purify the contents of the %1$s's %2$s" msgstr "Megtisztítod a(z) %1$s %2$s tartalmát" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "hétfő" diff --git a/lang/po/id.po b/lang/po/id.po index f010712509e7c..f2cb2e7b26830 100644 --- a/lang/po/id.po +++ b/lang/po/id.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Ricky Van , 2021\n" "Language-Team: Indonesian (https://www.transifex.com/cataclysm-dda-translators/teams/2217/id/)\n" @@ -25,7 +25,7 @@ msgid "battery" msgid_plural "battery" msgstr[0] "baterai" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -39,7 +39,7 @@ msgid "butane" msgid_plural "butane" msgstr[0] "butana" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "cairan mudah terbakar yang biasanya digunakan untuk korek api." @@ -49,7 +49,7 @@ msgid "aerosol paint" msgid_plural "aerosol paint" msgstr[0] "cat erosol" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -63,7 +63,7 @@ msgid "permanent ink" msgid_plural "permanent ink" msgstr[0] "spidol permanen" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -77,7 +77,7 @@ msgid "candle wax" msgid_plural "candle wax" msgstr[0] "lilin (bahan mentah)" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "benda padat mudah terbakar sebagai bahan dasar lilin." @@ -87,7 +87,7 @@ msgid "flare pyrotechnic" msgid_plural "flare pyrotechnic" msgstr[0] "suar pyrotechnic" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "kimia pyrotechnic yang digunakan untuk suar." @@ -111,7 +111,7 @@ msgid "oxygen" msgid_plural "oxygen" msgstr[0] "oksigen" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "oksigen bertekanan untuk medis." @@ -121,7 +121,7 @@ msgid "aluminum foil" msgid_plural "aluminum foil" msgstr[0] "aluminum foil" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -145,7 +145,7 @@ msgid "thread" msgid_plural "thread" msgstr[0] "benang" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "sedikit benang yang bisa digunakan untuk mengisi peralatan menjahit." @@ -179,7 +179,7 @@ msgid "yarn" msgid_plural "yarn" msgstr[0] "benang (wol)" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "benang dari wol, bisa digunakan untuk menjahit pakaian wol." @@ -199,7 +199,7 @@ msgid "duct tape" msgid_plural "duct tape" msgstr[0] "lakban" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "gulungan lakban yang sangat kuat. kegunaannya sangat banyak." @@ -261,8 +261,8 @@ msgid "plutonium slurry" msgid_plural "plutonium slurry" msgstr[0] "cairan plutonium" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -322,7 +322,7 @@ msgid "bearings" msgid_plural "bearings" msgstr[0] "bantalan besi" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "sekotak bola bantalan besi, digunakan sebagai amunisi katapel" @@ -367,7 +367,7 @@ msgid "120mm HEAT" msgid_plural "120mm HEAT" msgstr[0] "120mm HEAT" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -394,7 +394,7 @@ msgid "mixed smokeless gunpowder" msgid_plural "mixed smokeless gunpowder" msgstr[0] "bubuk mesiu tanpa asap dicampur" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -410,7 +410,7 @@ msgid "smokeless shotgun powder" msgid_plural "smokeless shotgun powder" msgstr[0] "bubuk mesiu shotgun tanpa asap" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "bubuk mesiu berkualitas, digunakan untuk peluru shotgun." @@ -420,7 +420,7 @@ msgid "smokeless pistol powder" msgid_plural "smokeless pistol powder" msgstr[0] "bubuk mesiu pistol tanpa asap" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "bubuk mesiu berkualitas, digunakan untuk amunisi pistol." @@ -430,7 +430,7 @@ msgid "smokeless magnum powder" msgid_plural "smokeless magnum powder" msgstr[0] "bubuk mesiu magnum tanpa asap" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -441,7 +441,7 @@ msgid "smokeless rifle powder" msgid_plural "smokeless rifle powder" msgstr[0] "bubuk mesiu senapan tanpa asap" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "bubuk mesiu berkualitas yang digunakan untuk amunisi senapan." @@ -451,7 +451,7 @@ msgid "smokeless overbore rifle powder" msgid_plural "smokeless overbore rifle powder" msgstr[0] "bubuk mesiu senapan overbore tanpa asap" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "bubuk mesiu berkualitas yang digunakan untuk amunisi senapan besar." @@ -461,7 +461,7 @@ msgid "artillery propellant" msgid_plural "artillery propellant" msgstr[0] "propelan artileri" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -473,7 +473,7 @@ msgid "oxidizer powder" msgid_plural "oxidizer powder" msgstr[0] "bubuk oxidizer" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "bubuk kimia oxidizer yang mudah menguap." @@ -483,7 +483,7 @@ msgid "lye powder" msgid_plural "lye powder" msgstr[0] "bubuk alkali" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "bubuk soda kaustik." @@ -567,7 +567,7 @@ msgid "copper" msgid_plural "copper" msgstr[0] "tembaga" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -581,7 +581,7 @@ msgid "medical tape" msgid_plural "medical tape" msgstr[0] "lakban medis" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "gulungan pita medis, mirip seperti lakban." @@ -592,7 +592,7 @@ msgid_plural "placeholder ammunitions" msgstr[0] "amunisi placeholder" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "JIKA KAU MELIHAT INI BERARTI INI ADALAH BUG." @@ -602,7 +602,7 @@ msgid "charcoal" msgid_plural "charcoal" msgstr[0] "arang" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -618,7 +618,7 @@ msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "kalsium karbit premix" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -646,7 +646,7 @@ msgid "albuterol" msgid_plural "albuterol" msgstr[0] "albuterol" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -737,7 +737,7 @@ msgid "nicotine liquid" msgid_plural "nicotine liquid" msgstr[0] "cairan nikotin" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -751,7 +751,7 @@ msgid "fish bait" msgid_plural "fish bait" msgstr[0] "umpan ikan" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Umpan yang digunakan dalam perangkap untuk memancing ikan." @@ -810,7 +810,7 @@ msgid "unfinished charcoal" msgid_plural "unfinished charcoal" msgstr[0] "arang yang belum selesai" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -824,7 +824,7 @@ msgid "unfinished calcium carbide" msgid_plural "unfinished calcium carbide" msgstr[0] "kalsium karbida yang belum selesai" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -848,7 +848,7 @@ msgid "nitrox" msgid_plural "nitrox" msgstr[0] "nitrox" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "campuran oxygen dan nitrogen dalam proporsi cocok untuk menyelam." @@ -858,7 +858,7 @@ msgid "extinguishing agent" msgid_plural "extinguishing agent" msgstr[0] "zat pemadam" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Solusi kimia kering efektif dalam memadamkan api." @@ -868,7 +868,7 @@ msgid "tinder" msgid_plural "tinder" msgstr[0] "tinder" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -900,7 +900,7 @@ msgid "bronze" msgid_plural "bronze" msgstr[0] "perunggu" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -911,7 +911,7 @@ msgid "glowstick juice" msgid_plural "glowstick juice" msgstr[0] "jus tongkat cahaya" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -924,7 +924,7 @@ msgid "graphite" msgid_plural "graphite" msgstr[0] "grafit" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -940,7 +940,7 @@ msgid "black pen ink" msgid_plural "black pen ink" msgstr[0] "pena tinta hitam" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -954,7 +954,7 @@ msgid "blue pen ink" msgid_plural "blue pen ink" msgstr[0] "pena tinta biru" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -968,7 +968,7 @@ msgid "green pen ink" msgid_plural "green pen ink" msgstr[0] "pena tinta hijau" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -982,7 +982,7 @@ msgid "red pen ink" msgid_plural "red pen ink" msgstr[0] "pena tinta merah" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1012,7 +1012,7 @@ msgid "sulfur" msgid_plural "sulfur" msgstr[0] "sulfur" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1040,7 +1040,7 @@ msgid "cement" msgid_plural "cement" msgstr[0] "semen" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1056,7 +1056,7 @@ msgid "gravel" msgid_plural "gravel" msgstr[0] "kerikil" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1067,7 +1067,7 @@ msgid "limestone" msgid_plural "limestone" msgstr[0] "batu kapur" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1083,7 +1083,7 @@ msgid "quicklime" msgid_plural "quicklime" msgstr[0] "kapur tohor" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1102,7 +1102,7 @@ msgid "sand" msgid_plural "sand" msgstr[0] "pasir" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1117,7 +1117,7 @@ msgid "soil" msgid_plural "soil" msgstr[0] "tanah" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1131,7 +1131,7 @@ msgid "aluminum powder" msgid_plural "aluminum powder" msgstr[0] "bubuk alumunium" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1149,7 +1149,7 @@ msgid "zinc powder" msgid_plural "zinc powder" msgstr[0] "bubuk seng" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1166,7 +1166,7 @@ msgid "zinc oxide" msgid_plural "zinc oxide" msgstr[0] "seng oksida" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1180,7 +1180,7 @@ msgid "manganese dioxide" msgid_plural "manganese dioxide" msgstr[0] "mangan dioksida" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1196,7 +1196,7 @@ msgid "potassium chloride" msgid_plural "potassium chloride" msgstr[0] "potasium klorida" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1214,7 +1214,7 @@ msgid "potassium hydroxide" msgid_plural "potassium hydroxide" msgstr[0] "kalium hidroksida" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1230,7 +1230,7 @@ msgid "acetone" msgid_plural "acetone" msgstr[0] "aseton" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1246,7 +1246,7 @@ msgid "chromium oxide" msgid_plural "chromium oxide" msgstr[0] "kromium oksida" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1266,7 +1266,7 @@ msgid "calcium carbide" msgid_plural "calcium carbide" msgstr[0] "kalsium karbida" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1286,7 +1286,7 @@ msgid "hexamine" msgid_plural "hexamine" msgstr[0] "metenamin" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1306,7 +1306,7 @@ msgid "hydrogen peroxide (concentrated)" msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "hidrogen peroksida (terkonsentrasi)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1325,7 +1325,7 @@ msgid "ammonium nitrate" msgid_plural "ammonium nitrate" msgstr[0] "amonium nitrat" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1342,7 +1342,7 @@ msgid "ammonium nitrate pellets" msgid_plural "ammonium nitrate pellets" msgstr[0] "pelet amonium nitrat" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1359,7 +1359,7 @@ msgid "saltpeter" msgid_plural "saltpeter" msgstr[0] "kalium nitrat" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1375,7 +1375,7 @@ msgid "niter" msgid_plural "niter" msgstr[0] "niter" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1389,7 +1389,7 @@ msgid "aluminum sulfate" msgid_plural "aluminum sulfate" msgstr[0] "alumunium sulfat" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1411,7 +1411,7 @@ msgid "acetic acid" msgid_plural "acetic acid" msgstr[0] "asam asetat" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1429,7 +1429,7 @@ msgid "formaldehyde" msgid_plural "formaldehyde" msgstr[0] "formaldehida" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1447,7 +1447,7 @@ msgid "thermite" msgid_plural "thermite" msgstr[0] "termit" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1465,7 +1465,7 @@ msgid "ANFO" msgid_plural "ANFO" msgstr[0] "ANFO" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1483,7 +1483,7 @@ msgid "black gunpowder" msgid_plural "black gunpowder" msgstr[0] "bubuk mesiu hitam" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1501,7 +1501,7 @@ msgid "match head powder" msgid_plural "match head powder" msgstr[0] "bubuk korek api" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1517,7 +1517,7 @@ msgid "RDX" msgid_plural "RDX" msgstr[0] "RDX" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1534,7 +1534,7 @@ msgid "composition b" msgid_plural "composition b" msgstr[0] "komposisi b" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1550,7 +1550,7 @@ msgid "HMTD" msgid_plural "HMTD" msgstr[0] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1566,7 +1566,7 @@ msgid "APEX" msgid_plural "APEX" msgstr[0] "APEX" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1582,7 +1582,7 @@ msgid "improvised rocket fuel" msgid_plural "improvised rocket fuel" msgstr[0] "bahan bakar roket improvisasi" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1596,7 +1596,7 @@ msgid "detergent" msgid_plural "detergent" msgstr[0] "deterjen" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "bubuk pencuci yang sangat populer sebelum Cataclysm." @@ -1606,7 +1606,7 @@ msgid "soap flakes" msgid_plural "soap flakes" msgstr[0] "bubuk sabun" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1671,7 +1671,7 @@ msgid "concentrated venom" msgid_plural "concentrated venom" msgstr[0] "" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1689,7 +1689,7 @@ msgid "concentrated paralytic" msgid_plural "concentrated paralytic" msgstr[0] "" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1707,7 +1707,7 @@ msgid "rocuronium" msgid_plural "rocuronium" msgstr[0] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1720,7 +1720,7 @@ msgid "red phosphorous" msgid_plural "red phosphorous" msgstr[0] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1732,7 +1732,7 @@ msgid "iodine crystal" msgid_plural "iodine crystal" msgstr[0] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1744,7 +1744,7 @@ msgid "ethanol" msgid_plural "ethanol" msgstr[0] "ethanol" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1776,7 +1776,7 @@ msgid "methanol" msgid_plural "methanol" msgstr[0] "" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1791,7 +1791,7 @@ msgid "diesel" msgid_plural "diesel" msgstr[0] "diesel" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1804,7 +1804,7 @@ msgid "JP8 fuel" msgid_plural "JP8 fuel" msgstr[0] "bahan bakar JP8" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1818,7 +1818,7 @@ msgid "avgas fuel" msgid_plural "avgas fuel" msgstr[0] "bahan bakar avgas" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "bahan bakar berbasis petroleum spesial yang digunakan untuk pesawat." @@ -1828,7 +1828,7 @@ msgid "biodiesel" msgid_plural "biodiesel" msgstr[0] "biodiesel" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1843,7 +1843,7 @@ msgid "gasoline" msgid_plural "gasoline" msgstr[0] "bensin" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1857,7 +1857,7 @@ msgid "lamp oil" msgid_plural "lamp oil" msgstr[0] "minyak lampu" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "" @@ -1868,7 +1868,7 @@ msgid "motor oil" msgid_plural "motor oil" msgstr[0] "oli motor" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "minyak yang digunakan untuk mesin mobil." @@ -1878,7 +1878,7 @@ msgid "napalm" msgid_plural "napalm" msgstr[0] "napalm" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -1894,7 +1894,7 @@ msgid "gelled gasoline" msgid_plural "gelled gasoline" msgstr[0] "bensin gel" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -1910,7 +1910,7 @@ msgid "flamethrower fuel" msgid_plural "flamethrower fuel" msgstr[0] "bahan bakar penyembur api" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -1952,7 +1952,7 @@ msgid "shrapnel" msgid_plural "shrapnel" msgstr[0] "" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "Pecahan logam bergerigi yang terpilin." @@ -2005,7 +2005,7 @@ msgid "10mm Auto FMJ" msgid_plural "10mm Auto FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2028,7 +2028,7 @@ msgid "H&K 12mm" msgid_plural "H&K 12mm" msgstr[0] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2072,7 +2072,7 @@ msgid "20x66mm buckshot, handmade" msgid_plural "20x66mm buckshot, handmade" msgstr[0] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2100,7 +2100,7 @@ msgid "20x66mm explosive" msgid_plural "20x66mm explosive" msgstr[0] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2145,7 +2145,7 @@ msgid "20x66mm frag" msgid_plural "20x66mm frag" msgstr[0] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2158,7 +2158,7 @@ msgid "20x66mm incendiary" msgid_plural "20x66mm incendiary" msgstr[0] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2171,7 +2171,7 @@ msgid "20x66mm buckshot" msgid_plural "20x66mm buckshot" msgstr[0] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2197,7 +2197,7 @@ msgid ".22 CB" msgid_plural ".22 CB" msgstr[0] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2210,7 +2210,7 @@ msgid ".22 FMJ" msgid_plural ".22 FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2223,7 +2223,7 @@ msgid ".22 LR" msgid_plural ".22 LR" msgstr[0] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2236,7 +2236,7 @@ msgid ".22 rat-shot" msgid_plural ".22 rat-shot" msgstr[0] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2269,7 +2269,7 @@ msgid ".223 Remington" msgid_plural ".223 Remington" msgstr[0] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2285,7 +2285,7 @@ msgid "5.56 NATO Mk 262" msgid_plural "5.56 NATO Mk 262" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2300,7 +2300,7 @@ msgid "5.56 NATO Mk 318" msgid_plural "5.56 NATO Mk 318" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2316,7 +2316,7 @@ msgid "5.56 NATO M855" msgid_plural "5.56 NATO M855" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2333,7 +2333,7 @@ msgid "5.56 NATO M855A1" msgid_plural "5.56 NATO M855A1" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2350,7 +2350,7 @@ msgid "5.56 NATO tracer" msgid_plural "5.56 NATO tracer" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2392,7 +2392,7 @@ msgid ".270 Winchester JSP" msgid_plural ".270 Winchester JSP" msgstr[0] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2435,7 +2435,7 @@ msgid ".300 Winchester Magnum, reloaded" msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2448,7 +2448,7 @@ msgid ".30-06 Springfield" msgid_plural ".30-06 Springfield" msgstr[0] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2461,7 +2461,7 @@ msgid ".30-06 M14A1 tracer" msgid_plural ".30-06 M14A1 tracer" msgstr[0] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2474,7 +2474,7 @@ msgid ".30-06 M2 AP" msgid_plural ".30-06 M2 AP" msgstr[0] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2565,7 +2565,7 @@ msgid ".308 Winchester" msgid_plural ".308 Winchester" msgstr[0] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2578,7 +2578,7 @@ msgid "7.62x51mm M80" msgid_plural "7.62x51mm M80" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2591,7 +2591,7 @@ msgid "7.62x51mm NATO tracer" msgid_plural "7.62x51mm NATO tracer" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2633,7 +2633,7 @@ msgid ".32 ACP" msgid_plural ".32 ACP" msgstr[0] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2655,7 +2655,7 @@ msgid ".357 Magnum FMJ" msgid_plural ".357 Magnum FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2668,7 +2668,7 @@ msgid ".357 Magnum JHP" msgid_plural ".357 Magnum JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2701,7 +2701,7 @@ msgid ".357 SIG FMJ" msgid_plural ".357 SIG FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2713,7 +2713,7 @@ msgid ".357 SIG JHP" msgid_plural ".357 SIG JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -2758,7 +2758,7 @@ msgid ".38 FMJ" msgid_plural ".38 FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -2782,7 +2782,7 @@ msgid ".38 Super" msgid_plural ".38 Super" msgstr[0] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -2819,7 +2819,7 @@ msgid ".380 ACP FMJ" msgid_plural ".380 ACP FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -2833,7 +2833,7 @@ msgid ".380 ACP JHP" msgid_plural ".380 ACP JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -2847,7 +2847,7 @@ msgid ".380 ACP +P" msgid_plural ".380 ACP +P" msgstr[0] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -2886,7 +2886,7 @@ msgid ".38 Super FMJ" msgid_plural ".38 Super FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -2904,7 +2904,7 @@ msgid ".40 S&W FMJ" msgid_plural ".40 S&W FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -2917,7 +2917,7 @@ msgid ".40 S&W JHP" msgid_plural ".40 S&W JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -2955,7 +2955,7 @@ msgid "40x46mm M1006 sponge" msgid_plural "40x46mm M1006 sponge" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -2968,7 +2968,7 @@ msgid "40x46mm M433 HEDP" msgid_plural "40x46mm M433 HEDP" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -2981,7 +2981,7 @@ msgid "40x46mm M576 buckshot" msgid_plural "40x46mm M576 buckshot" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -2994,7 +2994,7 @@ msgid "40x46mm M651 tear gas" msgid_plural "40x46mm M651 tear gas" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3007,8 +3007,8 @@ msgid "40x46mm-M118 buckshot, reloaded" msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3021,8 +3021,8 @@ msgid "40x46mm-M199 buckshot, reloaded" msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3062,8 +3062,8 @@ msgid "40x46mm-M118 flechette, reloaded" msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3076,8 +3076,8 @@ msgid "40x46mm-M199 flechette, reloaded" msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3128,7 +3128,7 @@ msgid "40x46mm .22 LR hornet's nest" msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3140,7 +3140,7 @@ msgid "40x46mm .410 hornet's nest" msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3167,7 +3167,7 @@ msgid "40x53mm M430A1 HEDP" msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3180,8 +3180,8 @@ msgid "40x53mm buckshot, reloaded" msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3202,8 +3202,8 @@ msgid "40x53mm flechette, reloaded" msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3230,7 +3230,7 @@ msgid ".410 000 shot" msgid_plural ".410 000 shot" msgstr[0] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3245,7 +3245,7 @@ msgid ".44 Magnum FMJ" msgid_plural ".44 Magnum FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3302,7 +3302,7 @@ msgid ".45 ACP FMJ" msgid_plural ".45 ACP FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3314,7 +3314,7 @@ msgid ".45 ACP JHP" msgid_plural ".45 ACP JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3327,7 +3327,7 @@ msgid ".45 ACP +P" msgid_plural ".45 ACP +P" msgstr[0] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3365,7 +3365,7 @@ msgid ".454 Casull" msgid_plural ".454 Casull" msgstr[0] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3390,7 +3390,7 @@ msgid ".45-70 SP" msgid_plural ".45-70 SP" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3416,7 +3416,7 @@ msgid ".45-70 LFN cowboy" msgid_plural ".45-70 LFN cowboy" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3429,7 +3429,7 @@ msgid ".45-70 SP, reloaded" msgid_plural ".45-70 SP, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3456,7 +3456,7 @@ msgid ".45-70 LFN cowboy, reloaded" msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3470,7 +3470,7 @@ msgid ".45-70, black powder" msgid_plural ".45-70, black powder" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3484,7 +3484,7 @@ msgid ".45 Colt JHP" msgid_plural ".45 Colt JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3508,7 +3508,7 @@ msgid "4.6x30mm" msgid_plural "4.6x30mm" msgstr[0] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3521,8 +3521,8 @@ msgid "4.6x30mm, black powder" msgid_plural "4.6x30mm, black powder" msgstr[0] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3541,7 +3541,7 @@ msgid ".460 Rowland HCFN" msgid_plural ".460 Rowland HCFN" msgstr[0] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3553,7 +3553,7 @@ msgid ".460 Rowland" msgid_plural ".460 Rowland" msgstr[0] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -3578,7 +3578,7 @@ msgid ".460 Rowland FMJ, reloaded" msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -3595,7 +3595,7 @@ msgid ".50 BMG M17 tracer" msgid_plural ".50 BMG M17 tracer" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3608,7 +3608,7 @@ msgid ".50 BMG M33 Ball" msgid_plural ".50 BMG M33 Ball" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -3623,7 +3623,7 @@ msgid ".50 BMG Match" msgid_plural ".50 BMG Match" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -3635,7 +3635,7 @@ msgid ".50 BMG M2 AP" msgid_plural ".50 BMG M2 AP" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -3647,7 +3647,7 @@ msgid ".50 BMG Raufoss Mk 211" msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -3665,7 +3665,7 @@ msgid ".50 BMG tracer, reloaded" msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3678,7 +3678,7 @@ msgid ".50 BMG Match, reloaded" msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -3693,7 +3693,7 @@ msgid ".50 BMG AP, reloaded" msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -3743,7 +3743,7 @@ msgid "5.45x39mm 7N10" msgid_plural "5.45x39mm 7N10" msgstr[0] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -3757,7 +3757,7 @@ msgid "5.45x39mm 7N22" msgid_plural "5.45x39mm 7N22" msgstr[0] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -3769,7 +3769,7 @@ msgid "5.45x39mm, reloaded" msgid_plural "5.45x39mm, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -3782,7 +3782,7 @@ msgid "5.45x39mm AP, reloaded" msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -3804,7 +3804,7 @@ msgid "5.7x28mm SS190" msgid_plural "5.7x28mm SS190" msgstr[0] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3820,8 +3820,8 @@ msgid "5.7x28mm, black powder" msgid_plural "5.7x28mm, black powder" msgstr[0] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3894,7 +3894,7 @@ msgid "66mm HEAT" msgid_plural "66mm HEAT" msgstr[0] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -3906,7 +3906,7 @@ msgid ".700 NX" msgid_plural ".700 NX" msgstr[0] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -3930,7 +3930,7 @@ msgid "7.62x39mm 57-N-231" msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -3944,7 +3944,7 @@ msgid "7.62x39mm M67" msgid_plural "7.62x39mm M67" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -3958,7 +3958,7 @@ msgid "7.62x39mm M43, reloaded" msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -3987,7 +3987,7 @@ msgid "7.62x54mmR" msgid_plural "7.62x54mmR" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4012,7 +4012,7 @@ msgid "7.62x25mm JHP" msgid_plural "7.62x25mm JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4037,7 +4037,7 @@ msgid "7.62x25mm Type P" msgid_plural "7.62x25mm Type P" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4098,7 +4098,7 @@ msgid "bootleg 8x40mm JHP" msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4110,7 +4110,7 @@ msgid "8x40mm caseless" msgid_plural "8x40mm caseless" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4122,7 +4122,7 @@ msgid "8x40mm sporting" msgid_plural "8x40mm sporting" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4135,7 +4135,7 @@ msgid "8x40mm FMJ" msgid_plural "8x40mm FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4148,7 +4148,7 @@ msgid "8x40mm HVP" msgid_plural "8x40mm HVP" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4162,7 +4162,7 @@ msgid "8x40mm tracer" msgid_plural "8x40mm tracer" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4176,7 +4176,7 @@ msgid "8x40mm JHP" msgid_plural "8x40mm JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4189,7 +4189,7 @@ msgid "9x19mm JHP" msgid_plural "9x19mm JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4203,7 +4203,7 @@ msgid "9x19mm FMJ" msgid_plural "9x19mm FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4215,7 +4215,7 @@ msgid "9x19mm +P" msgid_plural "9x19mm +P" msgstr[0] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4227,7 +4227,7 @@ msgid "9x19mm +P+" msgid_plural "9x19mm +P+" msgstr[0] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4269,7 +4269,7 @@ msgid "9x18mm 57-N-181S" msgid_plural "9x18mm 57-N-181S" msgstr[0] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4282,7 +4282,7 @@ msgid "9x18mm SP-7" msgid_plural "9x18mm SP-7" msgstr[0] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4295,7 +4295,7 @@ msgid "9x18mm RG028" msgid_plural "9x18mm RG028" msgstr[0] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4317,7 +4317,7 @@ msgid "9x18mm, reloaded" msgid_plural "9x18mm, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4330,7 +4330,7 @@ msgid "9x18mm +P+, reloaded" msgid_plural "9x18mm +P+, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4343,7 +4343,7 @@ msgid "9x18mm FMJ, reloaded" msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4356,7 +4356,7 @@ msgid "152mm ATGM HEAT" msgid_plural "152mm ATGM HEAT" msgstr[0] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -4380,7 +4380,7 @@ msgid "cannon round shot" msgid_plural "cannon round shot" msgstr[0] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -4392,7 +4392,7 @@ msgid "sprayable toxic gas" msgid_plural "sprayable toxic gas" msgstr[0] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -4404,7 +4404,7 @@ msgid "sprayable fungicide" msgid_plural "sprayable fungicide" msgstr[0] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -4416,7 +4416,7 @@ msgid "sprayable insecticide" msgid_plural "sprayable insecticide" msgstr[0] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -4519,7 +4519,7 @@ msgid "paintball" msgid_plural "paintball" msgstr[0] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -4620,7 +4620,7 @@ msgid "00 shot" msgid_plural "00 shot" msgstr[0] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -4633,7 +4633,7 @@ msgid_plural "shotgun beanbags" msgstr[0] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -4643,7 +4643,7 @@ msgid "birdshot" msgid_plural "birdshot" msgstr[0] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -4694,8 +4694,8 @@ msgid "00 shot, scrap loaded" msgid_plural "00 shot, scrap loaded" msgstr[0] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -4836,7 +4836,7 @@ msgid "oxyacetylene" msgid_plural "oxyacetylene" msgstr[0] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -4848,7 +4848,7 @@ msgid "fungal seeds" msgid_plural "fungal seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "" @@ -5604,7 +5604,7 @@ msgid "red paint" msgid_plural "red paint" msgstr[0] "" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "" @@ -5614,7 +5614,7 @@ msgid "blue paint" msgid_plural "blue paint" msgstr[0] "" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "" @@ -5624,7 +5624,7 @@ msgid "white paint" msgid_plural "white paint" msgstr[0] "" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "" @@ -5634,7 +5634,7 @@ msgid "green paint" msgid_plural "green paint" msgstr[0] "" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "" @@ -5644,7 +5644,7 @@ msgid "purple paint" msgid_plural "purple paint" msgstr[0] "" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "" @@ -5654,7 +5654,7 @@ msgid "yellow paint" msgid_plural "yellow paint" msgstr[0] "" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "" @@ -5716,7 +5716,7 @@ msgid "bismuth" msgid_plural "bismuth" msgstr[0] "" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -5726,8 +5726,8 @@ msgid "gold" msgid_plural "gold" msgstr[0] "" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -5744,7 +5744,7 @@ msgid "zinc" msgid_plural "zinc" msgstr[0] "" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -5758,7 +5758,7 @@ msgid "lead" msgid_plural "lead" msgstr[0] "" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -5770,7 +5770,7 @@ msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -5782,7 +5782,7 @@ msgid "silver" msgid_plural "silver" msgstr[0] "" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -5838,7 +5838,7 @@ msgid "tin powder" msgid_plural "tin powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -5850,7 +5850,7 @@ msgid "solder" msgid_plural "solder" msgstr[0] "" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -5883,7 +5883,7 @@ msgid "fuse" msgid_plural "fuse" msgstr[0] "" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -5932,7 +5932,7 @@ msgid "cotton scraps" msgid_plural "cotton scraps" msgstr[0] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -5945,7 +5945,7 @@ msgid "faux fur scraps" msgid_plural "faux fur scraps" msgstr[0] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -5957,7 +5957,7 @@ msgid "felt scraps" msgid_plural "felt scraps" msgstr[0] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -5970,7 +5970,7 @@ msgid "fur scraps" msgid_plural "fur scraps" msgstr[0] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -5982,7 +5982,7 @@ msgid "Kevlar scraps" msgid_plural "Kevlar scraps" msgstr[0] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -5996,7 +5996,7 @@ msgid "leather scraps" msgid_plural "leather scraps" msgstr[0] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -6008,7 +6008,7 @@ msgid "Lycra scraps" msgid_plural "Lycra scraps" msgstr[0] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -6020,7 +6020,7 @@ msgid "neoprene scraps" msgid_plural "neoprene scraps" msgstr[0] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -6032,7 +6032,7 @@ msgid "synthetic fabric scraps" msgid_plural "synthetic fabric scraps" msgstr[0] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -6044,7 +6044,7 @@ msgid "Nomex scraps" msgid_plural "Nomex scraps" msgstr[0] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -6068,7 +6068,7 @@ msgid "patchwork cotton sheet" msgid_plural "patchwork cotton sheet" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -6091,7 +6091,7 @@ msgid "patchwork faux fur clothing parts" msgid_plural "patchwork faux fur clothing parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -6114,7 +6114,7 @@ msgid "patchwork felt clothing parts" msgid_plural "patchwork felt clothing parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -6151,7 +6151,7 @@ msgid "patchwork Lycra clothing parts" msgid_plural "patchwork Lycra clothing parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -6176,7 +6176,7 @@ msgid "patchwork neoprene clothing parts" msgid_plural "patchwork neoprene clothing parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -6202,7 +6202,7 @@ msgid "patchwork Nomex clothing parts" msgid_plural "patchwork Nomex clothing parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -6225,7 +6225,7 @@ msgid "patchwork synthetic fabric clothing parts" msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -6312,7 +6312,7 @@ msgid "titanium" msgid_plural "titanium" msgstr[0] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -6338,7 +6338,7 @@ msgid "10mm FMJ caseless" msgid_plural "10mm FMJ caseless" msgstr[0] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -6352,7 +6352,7 @@ msgid "10mm JHP caseless" msgid_plural "10mm JHP caseless" msgstr[0] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -6366,7 +6366,7 @@ msgid "25mm canister shot" msgid_plural "25mm canister shot" msgstr[0] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -6381,7 +6381,7 @@ msgid "7.50mm caseless" msgid_plural "7.50mm caseless" msgstr[0] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -6395,7 +6395,7 @@ msgid "7.50mm RP" msgid_plural "7.50mm RP" msgstr[0] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -6411,7 +6411,7 @@ msgid "electric charge" msgid_plural "electric charge" msgstr[0] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -6423,7 +6423,7 @@ msgid "foamcrete" msgid_plural "foamcrete" msgstr[0] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -6438,7 +6438,7 @@ msgid "solid hydrogen" msgid_plural "solid hydrogen" msgstr[0] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -6450,7 +6450,7 @@ msgid "lead pellets" msgid_plural "lead pellets" msgstr[0] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -6463,7 +6463,7 @@ msgid "domed HP pellets" msgid_plural "domed HP pellets" msgstr[0] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -6476,7 +6476,7 @@ msgid "tipped HP pellets" msgid_plural "tipped HP pellets" msgstr[0] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -6488,7 +6488,7 @@ msgid "alloy pellets" msgid_plural "alloy pellets" msgstr[0] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -6622,7 +6622,7 @@ msgid "pistol ammo, ball" msgid_plural "pistol ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6636,7 +6636,7 @@ msgid "pistol ammo, JHP" msgid_plural "pistol ammo, JHP" msgstr[0] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6670,7 +6670,7 @@ msgid "magnum ammo, ball" msgid_plural "magnum ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -6685,7 +6685,7 @@ msgid "magnum ammo, JHP" msgid_plural "magnum ammo, JHP" msgstr[0] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -6720,7 +6720,7 @@ msgid "tiny pistol ammo, ball" msgid_plural "tiny pistol ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -6735,7 +6735,7 @@ msgid "tiny pistol ammo, JHP" msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -6770,7 +6770,7 @@ msgid "rifle ammo, ball" msgid_plural "rifle ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -6785,7 +6785,7 @@ msgid "rifle ammo, AP" msgid_plural "rifle ammo, AP" msgstr[0] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -6820,7 +6820,7 @@ msgid "foreign rifle ammo, ball" msgid_plural "foreign rifle ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -6831,7 +6831,7 @@ msgid "railgun rifle ammo" msgid_plural "railgun rifle ammo" msgstr[0] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -6843,7 +6843,7 @@ msgid "huge rifle ammo, ball" msgid_plural "huge rifle ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -6858,7 +6858,7 @@ msgid "huge rifle ammo, AP" msgid_plural "huge rifle ammo, AP" msgstr[0] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -6882,7 +6882,7 @@ msgid "rocket, antipersonnel" msgid_plural "rocket, antipersonnel" msgstr[0] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -6894,7 +6894,7 @@ msgid "rocket, multipurpose" msgid_plural "rocket, multipurpose" msgstr[0] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -6907,7 +6907,7 @@ msgid "rocket, smoke" msgid_plural "rocket, smoke" msgstr[0] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -6930,7 +6930,7 @@ msgid "shotshell, birdshot" msgid_plural "shotshell, birdshot" msgstr[0] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -6942,7 +6942,7 @@ msgid "shotshell, slug" msgid_plural "shotshell, slug" msgstr[0] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -6955,7 +6955,7 @@ msgid "shotshell, pyrotechnical" msgid_plural "shotshell, pyrotechnical" msgstr[0] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -6998,7 +6998,7 @@ msgid "shotshell, flechette (reloaded)" msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -7042,7 +7042,7 @@ msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -7091,7 +7091,7 @@ msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -7116,7 +7116,7 @@ msgid "parabolan yarn" msgid_plural "parabolan yarn" msgstr[0] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -7126,7 +7126,7 @@ msgid "crystallized mana" msgid_plural "crystallized mana" msgstr[0] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -7161,7 +7161,7 @@ msgid "liquid mercury" msgid_plural "liquid mercury" msgstr[0] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -7177,7 +7177,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -7637,7 +7637,7 @@ msgstr[0] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -7653,7 +7653,7 @@ msgstr "" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -7687,7 +7687,7 @@ msgid "chest rig" msgid_plural "chest rig" msgstr[0] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -8502,36 +8502,18 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" +msgid "tool belt" +msgid_plural "tool belts" msgstr[0] "" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -8670,23 +8652,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -8702,42 +8667,6 @@ msgid "pair of XL fur boots" msgid_plural "pairs of XL fur boots" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -8748,24 +8677,6 @@ msgstr[0] "" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -8782,24 +8693,6 @@ msgid "pair of XL leather armor boots" msgid_plural "pairs of XL leather armor boots" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -8863,19 +8756,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -8904,36 +8784,6 @@ msgid "pair of XL winter boots" msgid_plural "pairs of XL winter boots" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -9747,23 +9597,6 @@ msgid "XL leather duster" msgid_plural "XL leather dusters" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -9808,7 +9641,7 @@ msgid "army jacket" msgid_plural "army jacket" msgstr[0] "" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -9967,7 +9800,7 @@ msgid "kimono" msgid_plural "kimono" msgstr[0] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -10116,18 +9949,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -10176,18 +9997,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -10203,7 +10012,7 @@ msgid "thawb" msgid_plural "thawb" msgstr[0] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -10251,18 +10060,6 @@ msgstr[0] "" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -10488,18 +10285,6 @@ msgstr[0] "" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -10840,23 +10625,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -10872,46 +10640,6 @@ msgid "pair of XL fur gloves" msgid_plural "pairs of XL fur gloves" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -10968,57 +10696,6 @@ msgid "pair of XL glove liners" msgid_plural "pairs of XL glove liners" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -11055,18 +10732,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -11178,34 +10843,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -11886,7 +11523,7 @@ msgid "kabuto" msgid_plural "kabuto" msgstr[0] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -11988,30 +11625,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -12061,30 +11674,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -12269,34 +11858,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -12342,71 +11903,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -12417,52 +11913,6 @@ msgstr[0] "" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -12839,9 +12289,9 @@ msgid "garnet and gold cufflinks" msgid_plural "garnet and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -12851,9 +12301,9 @@ msgid "diamond and gold cufflinks" msgid_plural "diamond and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -12863,9 +12313,9 @@ msgid "amethyst and gold cufflinks" msgid_plural "amethyst and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -12875,9 +12325,9 @@ msgid "aquamarine and gold cufflinks" msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -12887,9 +12337,9 @@ msgid "emerald and gold cufflinks" msgid_plural "emerald and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -12899,9 +12349,9 @@ msgid "alexandrite and gold cufflinks" msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -12911,9 +12361,9 @@ msgid "ruby and gold cufflinks" msgid_plural "ruby and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -12923,9 +12373,9 @@ msgid "peridot and gold cufflinks" msgid_plural "peridot and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -12935,9 +12385,9 @@ msgid "sapphire and gold cufflinks" msgid_plural "sapphire and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -12947,9 +12397,9 @@ msgid "tourmaline and gold cufflinks" msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -12959,9 +12409,9 @@ msgid "citrine and gold cufflinks" msgid_plural "citrine and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -12971,9 +12421,9 @@ msgid "blue topaz and gold cufflinks" msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -12983,9 +12433,9 @@ msgid "opal and gold cufflinks" msgid_plural "opal and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -12995,9 +12445,9 @@ msgid "pearl and gold cufflinks" msgid_plural "pearl and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -16278,7 +15728,7 @@ msgid "turnout trousers" msgid_plural "turnout trousers" msgstr[0] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -16315,7 +15765,7 @@ msgid "leather chaps" msgid_plural "leather chaps" msgstr[0] "" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -16327,7 +15777,7 @@ msgid "chainsaw chaps" msgid_plural "chainsaw chaps" msgstr[0] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -16341,7 +15791,7 @@ msgid "fencing pants" msgid_plural "fencing pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -16500,30 +15950,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -16534,36 +15960,12 @@ msgstr[0] "" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -16575,7 +15977,7 @@ msgid "light EOD trousers" msgid_plural "light EOD trousers" msgstr[0] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -16600,7 +16002,7 @@ msgid "basketball shorts" msgid_plural "basketball shorts" msgstr[0] "" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "" @@ -16610,7 +16012,7 @@ msgid "breeches" msgid_plural "breeches" msgstr[0] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -16632,7 +16034,7 @@ msgid "hot pants" msgid_plural "hot pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "" @@ -16642,7 +16044,7 @@ msgid "fur hot pants" msgid_plural "fur hot pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "" @@ -16652,7 +16054,7 @@ msgid "leather hot pants" msgid_plural "leather hot pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "" @@ -16662,7 +16064,7 @@ msgid "jeans" msgid_plural "jeans" msgstr[0] "" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "" @@ -16694,7 +16096,7 @@ msgid "red jeans" msgid_plural "red jeans" msgstr[0] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -16720,7 +16122,7 @@ msgid "leggings" msgid_plural "leggings" msgstr[0] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -16790,7 +16192,7 @@ msgid "pants" msgid_plural "pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "" @@ -16800,15 +16202,15 @@ msgid "army pants" msgid_plural "army pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -16840,7 +16242,7 @@ msgid "cargo pants" msgid_plural "cargo pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -16850,7 +16252,7 @@ msgid "checkered pants" msgid_plural "checkered pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -16860,7 +16262,7 @@ msgid "fur pants" msgid_plural "fur pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "" @@ -16870,7 +16272,7 @@ msgid "faux fur pants" msgid_plural "faux fur pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -16880,7 +16282,7 @@ msgid "leather pants" msgid_plural "leather pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -16892,7 +16294,7 @@ msgid "ski pants" msgid_plural "ski pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "" @@ -16902,7 +16304,7 @@ msgid "police breeches" msgid_plural "police breeches" msgstr[0] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -16914,7 +16316,7 @@ msgid "mail carrier shorts" msgid_plural "mail carrier shorts" msgstr[0] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -16924,7 +16326,7 @@ msgid "shorts" msgid_plural "shorts" msgstr[0] "" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "" @@ -16934,7 +16336,7 @@ msgid "cargo shorts" msgid_plural "cargo shorts" msgstr[0] "" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -16944,7 +16346,7 @@ msgid "denim shorts" msgid_plural "denim shorts" msgstr[0] "" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -17001,7 +16403,7 @@ msgid "striped pants" msgid_plural "striped pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -17030,7 +16432,7 @@ msgid "army winter pants" msgid_plural "army winter pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -18090,54 +17492,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -18535,31 +17889,6 @@ msgid "XL plate armor" msgid_plural "XL plate armors" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -18600,8 +17929,8 @@ msgstr[0] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -18614,18 +17943,6 @@ msgstr[0] "" msgid "An ornamental suit of Japanese samurai armor." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -18749,59 +18066,28 @@ msgid_plural "XL entry suits" msgstr[0] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "" - -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" -#. ~ Description for XL winter survivor suit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" -#. ~ Description for gambeson +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" "A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py @@ -18809,6 +18095,11 @@ msgid "XL gambeson" msgid_plural "XL gambesons" msgstr[0] "" +#: lang/json/ARMOR_from_json.py +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" +msgstr[0] "" + #: lang/json/ARMOR_from_json.py msgid "hazmat suit" msgid_plural "hazmat suits" @@ -18823,37 +18114,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -18912,18 +18172,6 @@ msgid "" "experience." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -18932,8 +18180,8 @@ msgstr[0] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" #: lang/json/ARMOR_from_json.py @@ -18948,40 +18196,6 @@ msgid "" "Light and very comfortable." msgstr "" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -19047,42 +18261,6 @@ msgstr[0] "" msgid "A neoprene hood, commonly worn by divers." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -19180,7 +18358,7 @@ msgid "lorica segmentata" msgid_plural "lorica segmentata" msgstr[0] "" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -19333,7 +18511,7 @@ msgid "tire leather armor" msgid_plural "tire leather armor" msgstr[0] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -19389,23 +18567,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -19655,7 +18816,7 @@ msgid "leotard" msgid_plural "leotard" msgstr[0] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -19738,7 +18899,7 @@ msgid "French maid clothes" msgid_plural "French maid clothes" msgstr[0] "" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -20017,7 +19178,7 @@ msgid "boxer briefs" msgid_plural "boxer briefs" msgstr[0] "" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -20027,7 +19188,7 @@ msgid "XL boxer briefs" msgid_plural "XL boxer briefs" msgstr[0] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -20037,7 +19198,7 @@ msgid "boxer shorts" msgid_plural "boxer shorts" msgstr[0] "" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -20048,7 +19209,7 @@ msgid "XL boxer shorts" msgid_plural "XL boxer shorts" msgstr[0] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -20060,7 +19221,7 @@ msgid "boy shorts" msgid_plural "boy shorts" msgstr[0] "" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -20071,7 +19232,7 @@ msgid "XL boy shorts" msgid_plural "XL boy shorts" msgstr[0] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -20094,7 +19255,7 @@ msgid "briefs" msgid_plural "briefs" msgstr[0] "" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "" @@ -20238,7 +19399,7 @@ msgid "panties" msgid_plural "panties" msgstr[0] "" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -20297,7 +19458,7 @@ msgid "tights" msgid_plural "tights" msgstr[0] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -20320,7 +19481,7 @@ msgid "compression shorts" msgid_plural "compression shorts" msgstr[0] "" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -20352,6 +19513,864 @@ msgid "" "unitard provides overall coverage with great flexibility." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -20462,7 +20481,7 @@ msgid "impact knuckles" msgid_plural "impact knuckles" msgstr[0] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -20474,7 +20493,7 @@ msgid "skewer knuckles" msgid_plural "skewer knuckles" msgstr[0] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -20623,7 +20642,7 @@ msgid "pair of XL combat boots" msgid_plural "pair of XL combat boots" msgstr[0] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -20633,7 +20652,7 @@ msgid "pair of XL tactical gloves" msgid_plural "pair of XL tactical gloves" msgstr[0] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -20645,7 +20664,7 @@ msgid "pair of Killophant gloves" msgid_plural "pair of Killophant gloves" msgstr[0] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -20888,7 +20907,7 @@ msgid "psychrophile handling gloves" msgid_plural "psychrophile handling gloves" msgstr[0] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -21028,18 +21047,6 @@ msgid "" " ridiculously heavy." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -21158,7 +21165,7 @@ msgid "CRIT trousers" msgid_plural "CRIT trousers" msgstr[0] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -21170,7 +21177,7 @@ msgid "CRIT pants" msgid_plural "CRIT pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -21210,6 +21217,11 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -21348,7 +21360,7 @@ msgid "Force Shield" msgid_plural "Force Shield" msgstr[0] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -21797,7 +21809,7 @@ msgid "freerunner's boots" msgid_plural "freerunner's boots" msgstr[0] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -21864,7 +21876,7 @@ msgid "enchanted parabolan wool blouse" msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -21878,7 +21890,7 @@ msgid "enchanted parabolan wool breeches" msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -21905,7 +21917,7 @@ msgid "parabolan wool breeches" msgid_plural "parabolan wool breeches" msgstr[0] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -21958,7 +21970,7 @@ msgid "slick icy coatings" msgid_plural "slick icy coatings" msgstr[0] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -22011,7 +22023,7 @@ msgid "frost armor" msgid_plural "frost armor" msgstr[0] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -22021,7 +22033,7 @@ msgid "stoneskin coating" msgid_plural "stoneskin coating" msgstr[0] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -22111,7 +22123,7 @@ msgid "spiritual armor" msgid_plural "spiritual armor" msgstr[0] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -22121,7 +22133,7 @@ msgid "auroral shell" msgid_plural "auroral shell" msgstr[0] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -22199,15 +22211,17 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" msgstr[0] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -22224,39 +22238,32 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" msgstr[0] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" msgstr[0] "" -#. ~ Description for Legs Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" - #: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" msgstr[0] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -22929,7 +22936,7 @@ msgid "Power Storage CBM Mk. II" msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -23329,7 +23336,7 @@ msgid "Squeaky Ankles" msgid_plural "Squeaky Ankles" msgstr[0] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -23521,7 +23528,7 @@ msgid "Self-Locking Thumbs" msgid_plural "Self-Locking Thumbs" msgstr[0] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -24731,7 +24738,7 @@ msgid "knife fighter's notes" msgid_plural "knife fighter's notes" msgstr[0] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -24956,7 +24963,7 @@ msgid "plans for a radio repeater mod" msgid_plural "plans for a radio repeater mod" msgstr[0] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -24991,7 +24998,7 @@ msgid "trifacet handling procedures" msgid_plural "trifacet handling procedures" msgstr[0] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -25005,7 +25012,7 @@ msgid "schematics" msgid_plural "schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -25013,9 +25020,9 @@ msgstr[0] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -25029,7 +25036,7 @@ msgid "nurse bot schematics" msgid_plural "nurse bot schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -25043,7 +25050,7 @@ msgid "grocery bot schematics" msgid_plural "grocery bot schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -25057,7 +25064,7 @@ msgid "police bot schematics" msgid_plural "police bot schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -25070,7 +25077,7 @@ msgid "eyebot schematics" msgid_plural "eyebot schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -25083,7 +25090,7 @@ msgid "security bot schematics" msgid_plural "security bot schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -25096,7 +25103,7 @@ msgid "skitterbot schematics" msgid_plural "skitterbot schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -25109,7 +25116,7 @@ msgid "cleaner bot schematics" msgid_plural "cleaner bot schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -25122,7 +25129,7 @@ msgid "miner bot schematics" msgid_plural "miner bot schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -25135,7 +25142,7 @@ msgid "riot control bot schematics" msgid_plural "riot control bot schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -25148,7 +25155,7 @@ msgid "lab defense bot schematics" msgid_plural "lab defense bot schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -25161,7 +25168,7 @@ msgid "dispatch schematics" msgid_plural "dispatch schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -25175,7 +25182,7 @@ msgid "military dispatch schematics" msgid_plural "military dispatch schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -25189,7 +25196,7 @@ msgid "anti-materiel turret schematics" msgid_plural "anti-materiel turret schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -25202,7 +25209,7 @@ msgid "milspec searchlight schematics" msgid_plural "milspec searchlight schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -25756,7 +25763,7 @@ msgid "The Spirit of Aikido" msgid_plural "The Spirit of Aikido" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "" @@ -25766,7 +25773,7 @@ msgid "Practical Pugilism" msgid_plural "Practical Pugilism" msgstr[0] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -25777,7 +25784,7 @@ msgid "Capoeira 100" msgid_plural "Capoeira 100" msgstr[0] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "" @@ -25787,7 +25794,7 @@ msgid "The Centipede Lu Feng" msgid_plural "The Centipede Lu Feng" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "" @@ -25797,7 +25804,7 @@ msgid "The Red Crane" msgid_plural "The Red Crane" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "" @@ -25807,7 +25814,7 @@ msgid "The Jade Dragon" msgid_plural "The Jade Dragon" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "" @@ -25817,7 +25824,7 @@ msgid "Practical Eskrima" msgid_plural "Practical Eskrima" msgstr[0] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "" @@ -25827,7 +25834,7 @@ msgid "The Modern Swordsman" msgid_plural "The Modern Swordsman" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "" @@ -25837,7 +25844,7 @@ msgid "Kodokan Judo" msgid_plural "Kodokan Judo" msgstr[0] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "" @@ -25847,7 +25854,7 @@ msgid "The Shotokan Karate Handbook" msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "" @@ -25857,7 +25864,7 @@ msgid "Complete Krav Maga" msgid_plural "Complete Krav Maga" msgstr[0] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "" @@ -25867,7 +25874,7 @@ msgid "The Deaf Leopard" msgid_plural "The Deaf Leopard" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "" @@ -25877,7 +25884,7 @@ msgid "The Lizard Kuo Chui" msgid_plural "The Lizard Kuo Chui" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "" @@ -25887,7 +25894,7 @@ msgid "Ultimate Muay Thai" msgid_plural "Ultimate Muay Thai" msgstr[0] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "" @@ -25897,7 +25904,7 @@ msgid "Essence of Ninjutsu" msgid_plural "Essence of Ninjutsu" msgstr[0] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "" @@ -25907,7 +25914,7 @@ msgid "The Book of Five Rings" msgid_plural "The Book of Five Rings" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -25919,7 +25926,7 @@ msgid "The Modern Pankratiast" msgid_plural "The Modern Pankratiast" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "" @@ -25929,7 +25936,7 @@ msgid "The Scorpion Sun Chien" msgid_plural "The Scorpion Sun Chien" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "" @@ -25939,7 +25946,7 @@ msgid "The Indonesian Warrior" msgid_plural "The Indonesian Warrior" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "" @@ -25949,7 +25956,7 @@ msgid "The Black Snake" msgid_plural "The Black Snake" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "" @@ -25959,7 +25966,7 @@ msgid "Official Taekwondo Training Manual" msgid_plural "Official Taekwondo Training Manual" msgstr[0] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -25969,7 +25976,7 @@ msgid "Becoming One with the Tao" msgid_plural "Becoming One with the Tao" msgstr[0] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" @@ -25979,7 +25986,7 @@ msgid "The White Tiger" msgid_plural "The White Tiger" msgstr[0] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "" @@ -25989,7 +25996,7 @@ msgid "The Toad Lo Mang" msgid_plural "The Toad Lo Mang" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "" @@ -25999,7 +26006,7 @@ msgid "The Viper Wei Pai" msgid_plural "The Viper Wei Pai" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "" @@ -26009,7 +26016,7 @@ msgid "Zui Quan and You" msgid_plural "Zui Quan and You" msgstr[0] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "" @@ -26019,7 +26026,7 @@ msgid "The Way of the Spear" msgid_plural "The Way of the Spear" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "" @@ -26029,7 +26036,7 @@ msgid "Beautiful Springtime" msgid_plural "Beautiful Springtime" msgstr[0] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -26040,7 +26047,7 @@ msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -26053,7 +26060,7 @@ msgid "Historic European Swordfighting" msgid_plural "Historic European Swordfighting" msgstr[0] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -26197,7 +26204,7 @@ msgid "Ranch Prospectus" msgid_plural "Ranch Prospectus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -27001,7 +27008,7 @@ msgid "patient treatment records" msgid_plural "patient treatment records" msgstr[0] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -27011,7 +27018,7 @@ msgid "national weather transcripts" msgid_plural "national weather transcripts" msgstr[0] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -30273,7 +30280,7 @@ msgid "chicken walker schematics" msgid_plural "chicken walker schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -30287,7 +30294,7 @@ msgid "diamond press schematics" msgid_plural "diamond press schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -30301,7 +30308,7 @@ msgid "nano forge schematics" msgid_plural "nano forge schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -30315,7 +30322,7 @@ msgid "tank drone schematics" msgid_plural "tank drone schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -30329,7 +30336,7 @@ msgid "tripod schematics" msgid_plural "tripod schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -30545,7 +30552,7 @@ msgid "Scorching Sirocco" msgid_plural "Scorching Sirocco" msgstr[0] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -30555,7 +30562,7 @@ msgid "Perfect Clarity of Mind and Body" msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -30565,7 +30572,7 @@ msgid "The Book of Mudora" msgid_plural "The Book of Mudora" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -30577,7 +30584,7 @@ msgid "Stormguard Warrior" msgid_plural "Stormguard Warrior" msgstr[0] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -30587,7 +30594,7 @@ msgid "The Life and Work of Tiger Sauer" msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -30599,7 +30606,7 @@ msgid "Pocket Monster Encyclopedia" msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -30612,7 +30619,7 @@ msgid "Distant Horizon" msgid_plural "Distant Horizon" msgstr[0] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -30622,7 +30629,7 @@ msgid "Jedi Holocrons: Form I" msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -30634,7 +30641,7 @@ msgid "Shards of Granite" msgid_plural "Shards of Granite" msgstr[0] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -30644,7 +30651,7 @@ msgid "Reaping Talons" msgid_plural "Reaping Talons" msgstr[0] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -30669,6 +30676,20 @@ msgstr[0] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -32592,7 +32613,7 @@ msgid "bird litter" msgid_plural "bird litter" msgstr[0] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -32643,13 +32664,13 @@ msgid "bleach" msgid_plural "bleach" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -32661,7 +32682,7 @@ msgid "ammonia" msgid_plural "ammonia" msgstr[0] "" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -32673,7 +32694,7 @@ msgid "liquid fertilizer" msgid_plural "liquid fertilizer" msgstr[0] "" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -32683,7 +32704,7 @@ msgid "commercial fertilizer" msgid_plural "commercial fertilizer" msgstr[0] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -32693,7 +32714,7 @@ msgid "fungicide" msgid_plural "fungicide" msgstr[0] "" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -32705,7 +32726,7 @@ msgid "insecticide" msgid_plural "insecticide" msgstr[0] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -32717,7 +32738,7 @@ msgid "salt water" msgid_plural "salt water" msgstr[0] "" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "" @@ -32727,7 +32748,7 @@ msgid "soapy water" msgid_plural "soapy water" msgstr[0] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -32747,7 +32768,7 @@ msgid "sulfuric acid" msgid_plural "sulfuric acid" msgstr[0] "asam sulfurik" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -32765,7 +32786,7 @@ msgid "hydrochloric acid" msgid_plural "hydrochloric acid" msgstr[0] "asam hidroklorik" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -32781,7 +32802,7 @@ msgid "nitric acid" msgid_plural "nitric acid" msgstr[0] "asam nitrat" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -32812,7 +32833,7 @@ msgid "sewage water" msgid_plural "sewage water" msgstr[0] "" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -32822,7 +32843,7 @@ msgid "lye" msgid_plural "lye" msgstr[0] "" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -32834,7 +32855,7 @@ msgid "ether" msgid_plural "ether" msgstr[0] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -32848,7 +32869,7 @@ msgid "dimethyl sulfoxide" msgid_plural "dimethyl sulfoxide" msgstr[0] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -32862,7 +32883,7 @@ msgid "chloroform" msgid_plural "chloroform" msgstr[0] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -32875,7 +32896,7 @@ msgid "phenol" msgid_plural "phenol" msgstr[0] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -32890,7 +32911,7 @@ msgid "glycerol" msgid_plural "glycerol" msgstr[0] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -32902,7 +32923,7 @@ msgid "peptone broth powder" msgid_plural "peptone broth powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -32915,7 +32936,7 @@ msgid "agar" msgid_plural "agar" msgstr[0] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -32929,7 +32950,7 @@ msgid "acrylamide" msgid_plural "acrylamide" msgstr[0] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -32941,7 +32962,7 @@ msgid "acetylene" msgid_plural "acetylene" msgstr[0] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -32953,7 +32974,7 @@ msgid "formic acid" msgid_plural "formic acid" msgstr[0] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -32965,7 +32986,7 @@ msgid "latex" msgid_plural "latex" msgstr[0] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -32975,7 +32996,7 @@ msgid "citric acid" msgid_plural "citric acid" msgstr[0] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -33046,13 +33067,23 @@ msgid "acetic anhydride" msgid_plural "acetic anhydride" msgstr[0] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -33087,7 +33118,7 @@ msgid "marloss wine" msgid_plural "marloss wine" msgstr[0] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -33097,7 +33128,7 @@ msgid "Riesling" msgid_plural "Riesling" msgstr[0] "" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" @@ -33107,7 +33138,7 @@ msgid "Chardonnay" msgid_plural "Chardonnay" msgstr[0] "" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "" @@ -33117,7 +33148,7 @@ msgid "Cabernet Sauvignon" msgid_plural "Cabernet Sauvignon" msgstr[0] "" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -33129,7 +33160,7 @@ msgid "pinot noir" msgid_plural "pinot noir" msgstr[0] "" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -33141,7 +33172,7 @@ msgid "marsala" msgid_plural "marsala" msgstr[0] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -33151,7 +33182,7 @@ msgid "vermouth" msgid_plural "vermouth" msgstr[0] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -33163,7 +33194,7 @@ msgid "barley wine" msgid_plural "barley wine" msgstr[0] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -33173,7 +33204,7 @@ msgid "whiskey" msgid_plural "whiskey" msgstr[0] "" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -33184,7 +33215,7 @@ msgid "vodka" msgid_plural "vodka" msgstr[0] "" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -33196,7 +33227,7 @@ msgid "gin" msgid_plural "gin" msgstr[0] "" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -33208,7 +33239,7 @@ msgid "rum" msgid_plural "rum" msgstr[0] "" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -33220,7 +33251,7 @@ msgid "tequila" msgid_plural "tequila" msgstr[0] "" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -33232,7 +33263,7 @@ msgid "triple sec" msgid_plural "triple sec" msgstr[0] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -33242,7 +33273,7 @@ msgid "cheap wine" msgid_plural "cheap wine" msgstr[0] "" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "" @@ -33252,7 +33283,7 @@ msgid "strong mixed alcohol" msgid_plural "strong mixed alcohol" msgstr[0] "" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -33262,7 +33293,7 @@ msgid "weak mixed alcohol" msgid_plural "weak mixed alcohol" msgstr[0] "" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -33272,7 +33303,7 @@ msgid "fruit wine" msgid_plural "fruit wine" msgstr[0] "" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -33283,7 +33314,7 @@ msgid "brandy" msgid_plural "brandy" msgstr[0] "" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -33295,7 +33326,7 @@ msgid "Irish coffee" msgid_plural "Irish coffee" msgstr[0] "" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -33307,7 +33338,7 @@ msgid "Long Island iced tea" msgid_plural "Long Island iced tea" msgstr[0] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -33332,7 +33363,7 @@ msgid "wild apple" msgid_plural "wild apple" msgstr[0] "" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "" @@ -33342,7 +33373,7 @@ msgid "rum & cola" msgid_plural "rum & cola" msgstr[0] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -33352,7 +33383,7 @@ msgid "beer" msgid_plural "beer" msgstr[0] "" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -33364,7 +33395,7 @@ msgid "spiced mead" msgid_plural "spiced mead" msgstr[0] "" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -33375,7 +33406,7 @@ msgid "dandelion wine" msgid_plural "dandelion wine" msgstr[0] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -33387,7 +33418,7 @@ msgid "burdock wine" msgid_plural "burdock wine" msgstr[0] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -33397,7 +33428,7 @@ msgid "pine wine" msgid_plural "pine wine" msgstr[0] "" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -33409,7 +33440,7 @@ msgid "homebrew beer" msgid_plural "homebrew beer" msgstr[0] "" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -33419,7 +33450,7 @@ msgid "moonshine" msgid_plural "moonshine" msgstr[0] "" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -33432,7 +33463,7 @@ msgid "European pilsner" msgid_plural "European pilsner" msgstr[0] "" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -33444,7 +33475,7 @@ msgid "American pale ale" msgid_plural "American pale ale" msgstr[0] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -33456,7 +33487,7 @@ msgid "India pale ale" msgid_plural "India pale ale" msgstr[0] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -33468,7 +33499,7 @@ msgid "stout" msgid_plural "stout" msgstr[0] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -33478,7 +33509,7 @@ msgid "Belgian ale" msgid_plural "Belgian ale" msgstr[0] "" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -33490,7 +33521,7 @@ msgid "imperial stout" msgid_plural "imperial stout" msgstr[0] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -33528,7 +33559,7 @@ msgid "single malt whiskey" msgid_plural "single malt whiskey" msgstr[0] "" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "" @@ -33538,7 +33569,7 @@ msgid "single pot still Irish whiskey" msgid_plural "single pot still Irish whiskey" msgstr[0] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -33548,7 +33579,7 @@ msgid "cheap whiskey" msgid_plural "cheap whiskey" msgstr[0] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -33558,7 +33589,7 @@ msgid "Canadian whiskey" msgid_plural "Canadian whiskey" msgstr[0] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -33568,7 +33599,7 @@ msgid "sherry" msgid_plural "sherry" msgstr[0] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -33579,7 +33610,7 @@ msgid "Bristol Cream" msgid_plural "Bristol Cream" msgstr[0] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -33591,7 +33622,7 @@ msgid "Madeira wine" msgid_plural "Madeira wine" msgstr[0] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -33601,7 +33632,7 @@ msgid "fancy hobo" msgid_plural "fancy hobo" msgstr[0] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "" @@ -33611,7 +33642,7 @@ msgid "kalimotxo" msgid_plural "kalimotxo" msgstr[0] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -33623,7 +33654,7 @@ msgid "bee's knees" msgid_plural "bee's knees" msgstr[0] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -33707,7 +33738,7 @@ msgid "hard seltzer" msgid_plural "hard seltzer" msgstr[0] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -33717,7 +33748,7 @@ msgid "pumpkin muffin" msgid_plural "pumpkin muffin" msgstr[0] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -33727,7 +33758,7 @@ msgid "donut holes" msgid_plural "donut holes" msgstr[0] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -33739,7 +33770,7 @@ msgid "sourdough bread" msgid_plural "sourdough bread" msgstr[0] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -33751,7 +33782,7 @@ msgid "flatbread" msgid_plural "flatbread" msgstr[0] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "" @@ -33761,7 +33792,7 @@ msgid "bread" msgid_plural "bread" msgstr[0] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "" @@ -33771,7 +33802,7 @@ msgid "toast" msgid_plural "toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -33783,7 +33814,7 @@ msgid "buttered toast" msgid_plural "buttered toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -33793,7 +33824,7 @@ msgid "jam toast" msgid_plural "jam toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -33805,7 +33836,7 @@ msgid "peanut butter toast" msgid_plural "peanut butter toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -33816,7 +33847,7 @@ msgid "toad in a hole" msgid_plural "toad in a hole" msgstr[0] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -33826,7 +33857,7 @@ msgid "PBJ Toast" msgid_plural "PBJ Toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -33838,7 +33869,7 @@ msgid "cornbread" msgid_plural "cornbread" msgstr[0] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "" @@ -33868,7 +33899,7 @@ msgid "hardtack" msgid_plural "hardtack" msgstr[0] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -33890,7 +33921,7 @@ msgid "wastebread" msgid_plural "wastebread" msgstr[0] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -33903,7 +33934,7 @@ msgid "brown bread" msgid_plural "brown bread" msgstr[0] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -33913,7 +33944,7 @@ msgid "hallula" msgid_plural "hallula" msgstr[0] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -34155,18 +34186,18 @@ msgid "malting grain" msgid_plural "malting grain" msgstr[0] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -34176,8 +34207,8 @@ msgid "malted grain" msgid_plural "malted grain" msgstr[0] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -34189,14 +34220,14 @@ msgid "soaking dandelion" msgid_plural "soaking dandelion" msgstr[0] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -34206,7 +34237,7 @@ msgid "soaked dandelion" msgid_plural "soaked dandelion" msgstr[0] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -34231,7 +34262,7 @@ msgid "cooked fish" msgid_plural "cooked fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "" @@ -34324,7 +34355,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -34420,7 +34451,7 @@ msgid "mutant blood" msgid_plural "mutant blood" msgstr[0] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -34456,7 +34487,7 @@ msgid "mutant human blood" msgid_plural "mutant human blood" msgstr[0] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -34498,7 +34529,7 @@ msgid "butchery refuse" msgid_plural "butchery refuse" msgstr[0] "" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -34576,7 +34607,7 @@ msgid "cooked offal" msgid_plural "cooked offal" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -34589,7 +34620,7 @@ msgid "mutant organs" msgid_plural "mutant organs" msgstr[0] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -34599,7 +34630,7 @@ msgid "pickled offal" msgid_plural "pickled offal" msgstr[0] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -34612,7 +34643,7 @@ msgid "canned offal" msgid_plural "canned offal" msgstr[0] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -34644,28 +34675,25 @@ msgid "meat jerky" msgid_plural "meat jerky" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -34676,7 +34704,7 @@ msgid "salted fish" msgid_plural "salted fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -34687,31 +34715,25 @@ msgid "smoked meat" msgid_plural "smoked meats" msgstr[0] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -34730,7 +34752,7 @@ msgid "smoked fish" msgid_plural "smoked fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -34778,7 +34800,7 @@ msgid "mutant lungs" msgid_plural "mutant lungs" msgstr[0] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -34824,7 +34846,7 @@ msgid "raw brains" msgid_plural "raw brains" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -34834,7 +34856,7 @@ msgid "cooked brains" msgid_plural "cooked brains" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -34905,7 +34927,7 @@ msgstr[0] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -35046,7 +35068,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -35269,7 +35291,7 @@ msgid "alien fronds" msgid_plural "alien fronds" msgstr[0] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -35366,7 +35388,7 @@ msgid "demihuman flesh" msgid_plural "demihuman flesh" msgstr[0] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -35376,7 +35398,7 @@ msgid "demihuman blood" msgid_plural "demihuman blood" msgstr[0] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -35412,12 +35434,34 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -35430,7 +35474,7 @@ msgid "fish noodle casserole" msgid_plural "fish noodle casserole" msgstr[0] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -35442,7 +35486,7 @@ msgid "cereal" msgid_plural "cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -35452,7 +35496,7 @@ msgid "Foodplace cereal" msgid_plural "Foodplace cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -35463,7 +35507,7 @@ msgid "Snicker-Snacks cereal" msgid_plural "Snicker-Snacks cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -35475,7 +35519,7 @@ msgid "Carpenter Crunch cereal" msgid_plural "Carpenter Crunch cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -35487,7 +35531,7 @@ msgid "Brantastic cereal" msgid_plural "Brantastic cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -35499,7 +35543,7 @@ msgid "Sugar Chomps cereal" msgid_plural "Sugar Chomps cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -35511,7 +35555,7 @@ msgid "Honey Pellet cereal" msgid_plural "Honey Pellet cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -35535,7 +35579,7 @@ msgid "Foodios cereal" msgid_plural "Foodios cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -35557,7 +35601,7 @@ msgid "wheat cereal" msgid_plural "wheat cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -35579,7 +35623,7 @@ msgid "milk" msgid_plural "milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -35589,7 +35633,7 @@ msgid "chocolate milk" msgid_plural "chocolate milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -35599,7 +35643,7 @@ msgid "reconstituted milk" msgid_plural "reconstituted milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -35611,7 +35655,7 @@ msgid "raw milk" msgid_plural "raw milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -35625,7 +35669,7 @@ msgid "shelf stable milk" msgid_plural "shelf stable milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -35638,7 +35682,7 @@ msgid "evaporated milk" msgid_plural "evaporated milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -35649,7 +35693,7 @@ msgid "buttermilk" msgid_plural "buttermilk" msgstr[0] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -35671,7 +35715,7 @@ msgid "butter" msgid_plural "butter" msgstr[0] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -35682,7 +35726,7 @@ msgid "raw butter" msgid_plural "raw butter" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -35693,7 +35737,7 @@ msgid "ghee" msgid_plural "ghee" msgstr[0] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -35727,7 +35771,7 @@ msgid "hard cheese" msgid_plural "hard cheese" msgstr[0] "" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -35739,7 +35783,7 @@ msgid "cheese" msgid_plural "cheese" msgstr[0] "" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "" @@ -35759,7 +35803,7 @@ msgid "powdered milk" msgid_plural "powdered milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -35769,7 +35813,7 @@ msgid "condensed milk" msgid_plural "condensed milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -35781,7 +35825,7 @@ msgid "whipped cream" msgid_plural "whipped cream" msgstr[0] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -35793,7 +35837,7 @@ msgid "heavy cream" msgid_plural "heavy cream" msgstr[0] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -35803,7 +35847,7 @@ msgid "apple cider" msgid_plural "apple cider" msgstr[0] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "" @@ -35837,7 +35881,7 @@ msgid "atomic coffee" msgid_plural "atomic coffee" msgstr[0] "" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -35850,7 +35894,7 @@ msgid "bee balm tea" msgid_plural "bee balm tea" msgstr[0] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -35872,7 +35916,7 @@ msgid "chai tea" msgid_plural "chai tea" msgstr[0] "" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" @@ -35882,7 +35926,7 @@ msgid "chamomile tea" msgid_plural "chamomile tea" msgstr[0] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -35906,7 +35950,7 @@ msgid "coffee" msgid_plural "coffee" msgstr[0] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -35919,7 +35963,7 @@ msgid "coffee substitute" msgid_plural "coffee substitute" msgstr[0] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -35932,7 +35976,7 @@ msgid "chicory brew" msgid_plural "chicory brew" msgstr[0] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -35996,7 +36040,7 @@ msgid "dandelion tea" msgid_plural "dandelion tea" msgstr[0] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -36006,7 +36050,7 @@ msgid "dandelion and burdock tea" msgid_plural "dandelion and burdock tea" msgstr[0] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -36057,7 +36101,7 @@ msgid "herbal tea" msgid_plural "herbal tea" msgstr[0] "" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -36067,7 +36111,7 @@ msgid "hot chocolate" msgid_plural "hot chocolate" msgstr[0] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -36111,7 +36155,7 @@ msgid "lemonade" msgid_plural "lemonade" msgstr[0] "" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -36135,7 +36179,7 @@ msgid "lotus tea" msgid_plural "lotus tea" msgstr[0] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -36145,7 +36189,7 @@ msgid "Mexican hot chocolate" msgid_plural "Mexican hot chocolate" msgstr[0] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -36201,7 +36245,7 @@ msgid "pine needle tea" msgid_plural "pine needle tea" msgstr[0] "" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -36236,7 +36280,7 @@ msgid "root beer" msgid_plural "root beer" msgstr[0] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -36270,13 +36314,13 @@ msgid "spurge tea" msgid_plural "spurge tea" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -36300,7 +36344,7 @@ msgid "sweet water" msgid_plural "sweet water" msgstr[0] "" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "" @@ -36322,7 +36366,7 @@ msgid "willowbark tea" msgid_plural "willowbark tea" msgstr[0] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -36356,7 +36400,7 @@ msgid "water" msgid_plural "water" msgstr[0] "" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -36368,7 +36412,7 @@ msgid "clean water" msgid_plural "clean water" msgstr[0] "" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -36378,7 +36422,7 @@ msgid "mineral water" msgid_plural "mineral water" msgstr[0] "" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -36497,7 +36541,7 @@ msgid "maple sap" msgid_plural "maple sap" msgstr[0] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -36507,7 +36551,7 @@ msgid "mayonnaise" msgid_plural "mayonnaise" msgstr[0] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -36530,7 +36574,7 @@ msgid "mustard" msgid_plural "mustard" msgstr[0] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -36542,7 +36586,7 @@ msgid "forest honey" msgid_plural "forest honey" msgstr[0] "" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -36554,7 +36598,7 @@ msgid "vinegar" msgid_plural "vinegar" msgstr[0] "" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -36566,7 +36610,7 @@ msgid "vegetable cooking oil" msgid_plural "vegetable cooking oil" msgstr[0] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "" @@ -36576,7 +36620,7 @@ msgid "animal cooking oil" msgid_plural "animal cooking oil" msgstr[0] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -36586,7 +36630,7 @@ msgid "molasses" msgid_plural "molasses" msgstr[0] "" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -36598,7 +36642,7 @@ msgid "horseradish" msgid_plural "horseradish" msgstr[0] "" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "" @@ -36608,7 +36652,7 @@ msgid "coffee syrup" msgid_plural "coffee syrup" msgstr[0] "" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -36915,7 +36959,7 @@ msgid "scrambled eggs" msgid_plural "scrambled eggs" msgstr[0] "" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "" @@ -36935,7 +36979,7 @@ msgid "fried eggs" msgid_plural "fried eggs" msgstr[0] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -36947,7 +36991,7 @@ msgid "deluxe fried eggs" msgid_plural "deluxe fried eggs" msgstr[0] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -36959,7 +37003,7 @@ msgid "fried egg sandwich" msgid_plural "fried egg sandwich" msgstr[0] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -36971,7 +37015,7 @@ msgid "deluxe fried egg sandwich" msgid_plural "deluxe fried egg sandwich" msgstr[0] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -37148,7 +37192,7 @@ msgid "frozen yogurt" msgid_plural "frozen yogurt" msgstr[0] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -37212,7 +37256,7 @@ msgid "peaches in syrup" msgid_plural "peaches in syrup" msgstr[0] "" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -37232,7 +37276,7 @@ msgid "lemonade drink mix" msgid_plural "lemonade drink mix" msgstr[0] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -37264,7 +37308,7 @@ msgid "dehydrated fruit" msgid_plural "dehydrated fruit" msgstr[0] "" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -37277,7 +37321,7 @@ msgid "rehydrated fruit" msgid_plural "rehydrated fruit" msgstr[0] "" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -37300,7 +37344,7 @@ msgid "canned fruit" msgid_plural "canned fruit" msgstr[0] "" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -37312,7 +37356,7 @@ msgid "pumpkin yeast bread" msgid_plural "pumpkin yeast bread" msgstr[0] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -37334,7 +37378,7 @@ msgid "irradiated rose hips" msgid_plural "irradiated rose hips" msgstr[0] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -37694,7 +37738,7 @@ msgid "irradiated broccoli" msgid_plural "irradiated broccoli" msgstr[0] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -37742,7 +37786,7 @@ msgid "irradiated corn" msgid_plural "irradiated corn" msgstr[0] "" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -37790,7 +37834,7 @@ msgid "irradiated celery" msgid_plural "irradiated celery" msgstr[0] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -37802,7 +37846,7 @@ msgid "irradiated rhubarb" msgid_plural "irradiated rhubarb" msgstr[0] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -37903,12 +37947,12 @@ msgid "potato chips" msgid_plural "potato chips" msgstr[0] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -37918,7 +37962,7 @@ msgid "popcorn kernels" msgid_plural "popcorn kernels" msgstr[0] "" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -37930,7 +37974,7 @@ msgid "popcorn" msgid_plural "popcorn" msgstr[0] "" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -37942,7 +37986,7 @@ msgid "salted popcorn" msgid_plural "salted popcorn" msgstr[0] "" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "" @@ -37952,7 +37996,7 @@ msgid "buttered popcorn" msgid_plural "buttered popcorn" msgstr[0] "" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -37962,7 +38006,7 @@ msgid "pretzels" msgid_plural "pretzels" msgstr[0] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "" @@ -37992,7 +38036,7 @@ msgid "marshmallows" msgid_plural "marshmallows" msgstr[0] "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -38002,7 +38046,7 @@ msgid "s'mores" msgid_plural "s'mores" msgstr[0] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -38034,7 +38078,7 @@ msgid "chewy candy" msgid_plural "chewy candy" msgstr[0] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -38044,12 +38088,12 @@ msgid "gummy candy" msgid_plural "gummy candy" msgstr[0] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -38093,7 +38137,7 @@ msgid "powder candy sticks" msgid_plural "powder candy sticks" msgstr[0] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -38161,7 +38205,7 @@ msgid "maple syrup" msgid_plural "maple syrup" msgstr[0] "" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -38173,7 +38217,7 @@ msgid "sugar beet syrup" msgid_plural "sugar beet syrup" msgstr[0] "" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -38220,7 +38264,7 @@ msgid "fast-food French fries" msgid_plural "fast-food French fries" msgstr[0] "" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -38230,7 +38274,7 @@ msgid "French fries" msgid_plural "French fries" msgstr[0] "" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -38250,7 +38294,7 @@ msgid "Necco wafers" msgid_plural "Necco wafers" msgstr[0] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -38274,8 +38318,8 @@ msgid "caramel" msgid_plural "caramel" msgstr[0] "" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "" @@ -38285,7 +38329,7 @@ msgid "caramel apple" msgid_plural "caramel apple" msgstr[0] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "" @@ -38295,7 +38339,7 @@ msgid "tortilla chips" msgid_plural "tortilla chips" msgstr[0] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -38307,7 +38351,7 @@ msgid "cheese nachos" msgid_plural "cheese nachos" msgstr[0] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -38319,28 +38363,25 @@ msgid "meat nachos" msgid_plural "meat nachos" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -38352,28 +38393,28 @@ msgid "meat nachos with cheese" msgid_plural "meat nachos with cheese" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -38385,7 +38426,7 @@ msgid "vegetarian nachos" msgid_plural "vegetarian nachos" msgstr[0] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -38397,7 +38438,7 @@ msgid "vegetarian nachos with cheese" msgid_plural "vegetarian nachos with cheese" msgstr[0] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -38465,7 +38506,7 @@ msgid "chili dogs" msgid_plural "chili dogs" msgstr[0] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" @@ -38475,7 +38516,7 @@ msgid "uncooked corn dogs" msgid_plural "uncooked corn dogs" msgstr[0] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -38545,7 +38586,7 @@ msgid "cheese fries" msgid_plural "cheese fries" msgstr[0] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "" @@ -38626,8 +38667,7 @@ msgid "candy-coated peanuts" msgid_plural "candy-coated peanuts" msgstr[0] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -38759,30 +38799,24 @@ msgid "raw sausage" msgid_plural "raw sausages" msgstr[0] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -38799,14 +38833,13 @@ msgid "smoked sausage" msgid_plural "smoked sausages" msgstr[0] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -38823,14 +38856,13 @@ msgid "cooked sausage" msgid_plural "cooked sausages" msgstr[0] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -38857,21 +38889,19 @@ msgid "bratwurst" msgid_plural "bratwursts" msgstr[0] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -38890,7 +38920,7 @@ msgid "royal beef" msgid_plural "royal beef" msgstr[0] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -38937,7 +38967,7 @@ msgid "cracklins" msgid_plural "cracklins" msgstr[0] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -38949,15 +38979,14 @@ msgid "glazed tenderloins" msgid_plural "glazed tenderloins" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" msgid_plural "grisly %s" msgstr[0] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -38970,23 +38999,21 @@ msgid "currywurst" msgid_plural "currywursts" msgstr[0] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" msgid_plural "cheapskate %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" msgid_plural "confusing %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -39005,27 +39032,24 @@ msgid "aspic" msgid_plural "aspics" msgstr[0] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" msgid_plural "abomination %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" msgid_plural "amoral %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -39045,7 +39069,7 @@ msgid "dehydrated fish" msgid_plural "dehydrated fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -39057,7 +39081,7 @@ msgid "rehydrated fish" msgid_plural "rehydrated fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -39069,7 +39093,7 @@ msgid "pickled fish" msgid_plural "pickled fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -39080,7 +39104,7 @@ msgid "canned fish" msgid_plural "canned fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -39092,7 +39116,7 @@ msgid "batter fried fish" msgid_plural "batter fried fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -39122,8 +39146,7 @@ msgid "lunch meat" msgid_plural "lunch meats" msgstr[0] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -39142,30 +39165,28 @@ msgid "bologna" msgid_plural "bologna" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" msgid_plural "brat %s" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" msgid_plural "Tumnis %s" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" msgid_plural "bleak %s" msgstr[0] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -39191,7 +39212,7 @@ msgid "SPAM" msgid_plural "SPAM" msgstr[0] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -39226,22 +39247,20 @@ msgid "sausage gravy" msgid_plural "sausage gravies" msgstr[0] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -39260,30 +39279,28 @@ msgid "pemmican" msgid_plural "pemmican" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" msgid_plural "prepper %s" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" msgid_plural "Orley %s" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" msgid_plural "pernicious %s" msgstr[0] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -39296,22 +39313,20 @@ msgid "hamburger helper" msgid_plural "hamburger helpers" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" msgid_plural "halfling helper" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -39340,22 +39355,20 @@ msgid "chili con carne" msgid_plural "chilis con carne" msgstr[0] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -39371,7 +39384,7 @@ msgid "pork and beans" msgid_plural "pork and beans" msgstr[0] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -39383,7 +39396,7 @@ msgid "canned tuna fish" msgid_plural "canned tuna fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "" @@ -39393,7 +39406,7 @@ msgid "canned salmon" msgid_plural "canned salmon" msgstr[0] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "" @@ -39413,7 +39426,7 @@ msgid "pickled herring" msgid_plural "pickled herring" msgstr[0] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -39433,15 +39446,13 @@ msgid "clam chowder" msgid_plural "clam chowders" msgstr[0] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -39459,14 +39470,13 @@ msgid "baked beans" msgid_plural "baked beans" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" @@ -39476,14 +39486,13 @@ msgid "meat fried rice" msgid_plural "meat fried rice" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" @@ -39493,14 +39502,14 @@ msgid "deluxe beans and rice" msgid_plural "deluxe beans and rice" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -39512,20 +39521,19 @@ msgid "meat pie" msgid_plural "meat pies" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -39542,21 +39550,19 @@ msgid "meat pizza" msgid_plural "meat pizzas" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -39585,28 +39591,27 @@ msgid "deluxe scrambled eggs" msgid_plural "deluxe scrambled eggs" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -39618,14 +39623,13 @@ msgid "canned meat" msgid_plural "canned meats" msgstr[0] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -39643,14 +39647,13 @@ msgid "salted meat slice" msgid_plural "salted meat slices" msgstr[0] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -39667,29 +39670,27 @@ msgid "spaghetti bolognese" msgid_plural "spaghetti bolognese" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" msgid_plural "speaking spaghetti" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" msgid_plural "gnarly %s" msgstr[0] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -39699,22 +39700,21 @@ msgid "lasagne" msgid_plural "lasagnes" msgstr[0] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" msgid_plural "Luigi %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" msgid_plural "Lab %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -39733,7 +39733,7 @@ msgid "fried SPAM" msgid_plural "fried SPAM" msgstr[0] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" @@ -39743,15 +39743,14 @@ msgid "cheeseburger" msgid_plural "cheeseburgers" msgstr[0] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" msgid_plural "chump %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -39759,8 +39758,7 @@ msgid "elf %s" msgid_plural "elf %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -39791,21 +39789,19 @@ msgid "hamburger" msgid_plural "hamburgers" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -39822,21 +39818,19 @@ msgid "sloppy joe" msgid_plural "sloppy joes" msgstr[0] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -39855,22 +39849,21 @@ msgid "taco" msgid_plural "tacos" msgstr[0] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" msgid_plural "tio %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" msgid_plural "talking %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -39889,14 +39882,13 @@ msgid "pickled meat" msgid_plural "pickled meats" msgstr[0] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -39914,22 +39906,19 @@ msgid "dehydrated meat" msgid_plural "dehydrated meats" msgstr[0] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" msgid_plural "%s, human" msgstr[0] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -39960,9 +39949,8 @@ msgid "haggis" msgid_plural "haggises" msgstr[0] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -39983,7 +39971,7 @@ msgid "fish makizushi" msgid_plural "fish makizushi" msgstr[0] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -39995,15 +39983,14 @@ msgid "meat temaki" msgid_plural "meat temaki" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" msgid_plural "troubling %s" msgstr[0] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -40015,7 +40002,7 @@ msgid "sashimi" msgid_plural "sashimi" msgstr[0] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -40037,7 +40024,7 @@ msgid "pelmeni" msgid_plural "pelmenis" msgstr[0] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -40056,8 +40043,7 @@ msgid "homemade burrito" msgid_plural "homemade burritos" msgstr[0] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -40076,14 +40062,13 @@ msgid "raw meatball" msgid_plural "raw meatballs" msgstr[0] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -40100,14 +40085,13 @@ msgid "meatball" msgid_plural "meatballs" msgstr[0] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -40141,12 +40125,12 @@ msgid "prescription stimulant" msgid_plural "prescription stimulant" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -40190,7 +40174,7 @@ msgid "antibiotics" msgid_plural "antibiotics" msgstr[0] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -40215,7 +40199,7 @@ msgid "antiparasitic drug" msgid_plural "antiparasitic drug" msgstr[0] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -40287,7 +40271,7 @@ msgid "antiseptic powder" msgid_plural "antiseptic powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -40339,7 +40323,7 @@ msgid "hydrogen peroxide" msgid_plural "hydrogen peroxide" msgstr[0] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -40387,12 +40371,12 @@ msgid "codeine" msgid_plural "codeine" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -40405,7 +40389,7 @@ msgid "cocaine" msgid_plural "cocaine" msgstr[0] "" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -40444,7 +40428,7 @@ msgid "cotton balls" msgid_plural "cotton balls" msgstr[0] "" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -40457,12 +40441,12 @@ msgid "crack" msgid_plural "crack" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -40474,7 +40458,7 @@ msgid "non-drowsy cough syrup" msgid_plural "non-drowsy cough syrup" msgstr[0] "" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -40487,7 +40471,7 @@ msgid "antiseptic" msgid_plural "antiseptic" msgstr[0] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -40508,7 +40492,7 @@ msgid "prescription sedative" msgid_plural "prescription sedative" msgstr[0] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -40520,12 +40504,12 @@ msgid "high quality shatter" msgid_plural "high quality shatter" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -40541,12 +40525,12 @@ msgid "high quality wax" msgid_plural "high quality wax" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -40561,12 +40545,12 @@ msgid "high quality crude oil" msgid_plural "high quality crude oil" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -40579,16 +40563,14 @@ msgid "low quality crude oil" msgid_plural "low quality crude oil" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -40601,7 +40583,7 @@ msgid "(ethanol) low quality crude oil" msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -40614,7 +40596,7 @@ msgid "(ethanol) high quality crude oil" msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -40627,7 +40609,7 @@ msgid "(ethanol) filtered low quality crude oil" msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -40640,7 +40622,7 @@ msgid "(ethanol) filtered high quality crude oil" msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -40653,7 +40635,7 @@ msgid "filtered low quality crude oil" msgid_plural "filtered low quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -40667,7 +40649,7 @@ msgid "filtered high quality crude oil" msgid_plural "filtered high quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -40681,7 +40663,7 @@ msgid "high quality distillate (heads)" msgid_plural "high quality distillate (heads)" msgstr[0] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -40694,7 +40676,7 @@ msgid "high quality distillate (tails)" msgid_plural "high quality distillate (tails)" msgstr[0] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -40707,12 +40689,12 @@ msgid "high quality distillate" msgid_plural "high quality distillate" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -40787,7 +40769,7 @@ msgid "chewing gum" msgid_plural "chewing gum" msgstr[0] "" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -40810,13 +40792,13 @@ msgid "heroin" msgid_plural "heroin" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -40887,7 +40869,7 @@ msgid "low-grade methamphetamine" msgid_plural "low-grade methamphetamine" msgstr[0] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -40900,7 +40882,7 @@ msgid "high-grade methamphetamine" msgid_plural "high-grade methamphetamine" msgstr[0] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -40949,7 +40931,7 @@ msgid "cough syrup" msgid_plural "cough syrup" msgstr[0] "" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -40978,7 +40960,7 @@ msgid "sleeping pill" msgid_plural "sleeping pill" msgstr[0] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -41020,7 +41002,7 @@ msgid "poppy cough syrup" msgid_plural "poppy cough syrup" msgstr[0] "" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -41030,15 +41012,14 @@ msgid "injectable prophylactic antivenom" msgid_plural "injectable prophylactic antivenom" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -41052,7 +41033,7 @@ msgid "antidepressant" msgid_plural "antidepressant" msgstr[0] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -41082,7 +41063,7 @@ msgid "hemostatic powder" msgid_plural "hemostatic powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -41106,7 +41087,7 @@ msgid "antipsychotic" msgid_plural "antipsychotic" msgstr[0] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -41344,12 +41325,12 @@ msgid "marijuana" msgid_plural "marijuana" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -41362,7 +41343,7 @@ msgid "fast-acting sedative" msgid_plural "fast-acting sedative" msgstr[0] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -41387,7 +41368,7 @@ msgid "antiseptic soaked cotton balls" msgid_plural "antiseptic soaked cotton balls" msgstr[0] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -41399,7 +41380,7 @@ msgid "narrow-spectrum antibiotics" msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -41462,7 +41443,7 @@ msgid "broad-spectrum antibiotics" msgid_plural "broad-spectrum antibiotics" msgstr[0] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -41476,7 +41457,7 @@ msgid "cocaine topical cream" msgid_plural "cocaine topical cream" msgstr[0] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -41915,7 +41896,7 @@ msgid "alpha serum" msgid_plural "alpha serum" msgstr[0] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -42146,9 +42127,8 @@ msgstr[0] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -42209,7 +42189,7 @@ msgid "alpha mutagen" msgid_plural "alpha mutagen" msgstr[0] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -42310,7 +42290,8 @@ msgstr[0] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -42439,7 +42420,7 @@ msgid "pine nuts" msgid_plural "pine nuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -42449,7 +42430,7 @@ msgid "junipers" msgid_plural "junipers" msgstr[0] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -42461,7 +42442,7 @@ msgid "shelled pistachios" msgid_plural "shelled pistachios" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -42472,7 +42453,7 @@ msgid "roasted pistachios" msgid_plural "roasted pistachios" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -42482,7 +42463,7 @@ msgid "shelled almonds" msgid_plural "shelled almonds" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -42492,7 +42473,7 @@ msgid "almond pulp" msgid_plural "almond pulp" msgstr[0] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -42503,7 +42484,7 @@ msgid "roasted almonds" msgid_plural "roasted almonds" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -42513,7 +42494,7 @@ msgid "cashews" msgid_plural "cashews" msgstr[0] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "" @@ -42523,7 +42504,7 @@ msgid "shelled pecans" msgid_plural "shelled pecans" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -42535,7 +42516,7 @@ msgid "roasted pecans" msgid_plural "roasted pecans" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -42545,7 +42526,7 @@ msgid "shelled peanuts" msgid_plural "shelled peanuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -42555,7 +42536,7 @@ msgid "beech nuts" msgid_plural "beech nuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -42565,7 +42546,7 @@ msgid "shelled walnuts" msgid_plural "shelled walnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -42577,7 +42558,7 @@ msgid "roasted walnuts" msgid_plural "roasted walnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -42587,7 +42568,7 @@ msgid "shelled chestnuts" msgid_plural "shelled chestnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -42599,7 +42580,7 @@ msgid "roasted chestnuts" msgid_plural "roasted chestnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -42609,7 +42590,7 @@ msgid "shelled hazelnuts" msgid_plural "shelled hazelnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -42621,7 +42602,7 @@ msgid "roasted edamame" msgid_plural "roasted edamame" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -42631,7 +42612,7 @@ msgid "roasted soy nuts" msgid_plural "roasted soy nuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -42641,7 +42622,7 @@ msgid "roasted hazelnuts" msgid_plural "roasted hazelnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -42651,7 +42632,7 @@ msgid "shelled hickory nuts" msgid_plural "shelled hickory nuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -42663,7 +42644,7 @@ msgid "roasted hickory nuts" msgid_plural "roasted hickory nuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -42715,7 +42696,7 @@ msgid "acorns" msgid_plural "acorns" msgstr[0] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -42727,7 +42708,7 @@ msgid "roasted acorns" msgid_plural "roasted acorns" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -42737,7 +42718,7 @@ msgid "cooked acorn meal" msgid_plural "cooked acorn meal" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -42749,7 +42730,7 @@ msgid "foie gras" msgid_plural "foie gras" msgstr[0] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -42760,7 +42741,7 @@ msgid "liver & onions" msgid_plural "liver & onions" msgstr[0] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "" @@ -42810,7 +42791,7 @@ msgid "leverpostej" msgid_plural "leverpostej" msgstr[0] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -43005,7 +42986,7 @@ msgid "marloss gelatin" msgid_plural "marloss gelatin" msgstr[0] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -43031,7 +43012,7 @@ msgid "yeast" msgid_plural "yeast" msgstr[0] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -43042,7 +43023,7 @@ msgid "bone meal" msgid_plural "bone meal" msgstr[0] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -43052,7 +43033,7 @@ msgid "powdered gelatin" msgid_plural "powdered gelatin" msgstr[0] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -43063,7 +43044,7 @@ msgid "fresh gelatin" msgid_plural "fresh gelatin" msgstr[0] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -43073,7 +43054,7 @@ msgid "tainted bone meal" msgid_plural "tainted bone meal" msgstr[0] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -43083,7 +43064,7 @@ msgid "chitin powder" msgid_plural "chitin powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -43126,7 +43107,7 @@ msgid "dried beans" msgid_plural "dried beans" msgstr[0] "" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -43138,7 +43119,7 @@ msgid "cooked beans" msgid_plural "cooked beans" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "" @@ -43148,8 +43129,8 @@ msgid "tofu" msgid_plural "tofu" msgstr[0] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -43166,7 +43147,7 @@ msgid "dehydrated tofu" msgid_plural "dehydrated tofu" msgstr[0] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -43176,7 +43157,7 @@ msgid "soybeans" msgid_plural "soybeans" msgstr[0] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -43200,7 +43181,7 @@ msgid "dried lentils" msgid_plural "dried lentils" msgstr[0] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -43211,7 +43192,7 @@ msgid "Foodplace's delicious food™" msgid_plural "Foodplace's delicious food™" msgstr[0] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43224,7 +43205,7 @@ msgid "Foodplace's appropriate snack™" msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -43234,7 +43215,7 @@ msgid "cooked lentils" msgid_plural "cooked lentils" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -43244,7 +43225,7 @@ msgid "coffee powder" msgid_plural "coffee powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -43256,7 +43237,7 @@ msgid "Kentucky coffee grounds" msgid_plural "Kentucky coffee grounds" msgstr[0] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -43268,7 +43249,7 @@ msgid "candied honey" msgid_plural "candied honey" msgstr[0] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -43304,7 +43285,7 @@ msgid "cattle fodder" msgid_plural "cattle fodder" msgstr[0] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -43316,7 +43297,7 @@ msgid "bird food" msgid_plural "bird food" msgstr[0] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -43328,7 +43309,7 @@ msgid "wet dog food" msgid_plural "wet dog food" msgstr[0] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -43340,7 +43321,7 @@ msgid "dry dog food" msgid_plural "dry dog food" msgstr[0] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -43352,7 +43333,7 @@ msgid "wet cat food" msgid_plural "wet cat food" msgstr[0] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -43364,7 +43345,7 @@ msgid "dry cat food" msgid_plural "dry cat food" msgstr[0] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -43481,7 +43462,7 @@ msgid "instant coffee mix" msgid_plural "instant coffee mix" msgstr[0] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -43517,28 +43498,24 @@ msgid "protein drink" msgid_plural "protein drinks" msgstr[0] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" msgid_plural "sapient green drink" msgstr[0] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -43557,21 +43534,20 @@ msgid "protein powder" msgid_plural "protein powder" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" msgid_plural "sapient green powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -43598,14 +43574,13 @@ msgid "protein shake" msgid_plural "protein shakes" msgstr[0] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -43624,14 +43599,14 @@ msgid "fortified protein shake" msgid_plural "fortified protein shakes" msgstr[0] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" msgid_plural "fortified soylent green shake" msgstr[0] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -43692,7 +43667,7 @@ msgid "blueberries" msgid_plural "blueberries" msgstr[0] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -43702,7 +43677,7 @@ msgid "strawberries" msgid_plural "strawberries" msgstr[0] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" @@ -43712,7 +43687,7 @@ msgid "cranberries" msgid_plural "cranberries" msgstr[0] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "" @@ -43722,7 +43697,7 @@ msgid "raspberries" msgid_plural "raspberries" msgstr[0] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "" @@ -43732,7 +43707,7 @@ msgid "huckleberries" msgid_plural "huckleberries" msgstr[0] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -43742,7 +43717,7 @@ msgid "mulberries" msgid_plural "mulberries" msgstr[0] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -43754,7 +43729,7 @@ msgid "elderberries" msgid_plural "elderberries" msgstr[0] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -43764,7 +43739,7 @@ msgid "rose hips" msgid_plural "rose hips" msgstr[0] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "" @@ -43806,7 +43781,7 @@ msgid "cherries" msgid_plural "cherries" msgstr[0] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "" @@ -43827,7 +43802,7 @@ msgid "grapes" msgid_plural "grapes" msgstr[0] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -43887,7 +43862,7 @@ msgid "blackberries" msgid_plural "blackberries" msgstr[0] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "" @@ -43938,7 +43913,7 @@ msgid "apricots" msgid_plural "apricots" msgstr[0] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "" @@ -43975,7 +43950,7 @@ msgid "bee balm" msgid_plural "bee balm" msgstr[0] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -43986,7 +43961,7 @@ msgid "broccoli" msgid_plural "broccoli" msgstr[0] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "" @@ -43996,7 +43971,7 @@ msgid "buckwheat" msgid_plural "buckwheat" msgstr[0] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -44018,7 +43993,7 @@ msgid "spinach" msgid_plural "spinach" msgstr[0] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -44063,7 +44038,7 @@ msgid "celery" msgid_plural "celery" msgstr[0] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -44085,7 +44060,7 @@ msgid "corn kernels" msgid_plural "corn kernels" msgstr[0] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "" @@ -44095,7 +44070,7 @@ msgid "empty corn cob" msgid_plural "empty corn cob" msgstr[0] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -44151,7 +44126,7 @@ msgid "salsify" msgid_plural "salsify" msgstr[0] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -44164,7 +44139,7 @@ msgid "chicory" msgid_plural "chicory" msgstr[0] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -44277,7 +44252,7 @@ msgid "raw popcorn" msgid_plural "raw popcorn" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -44311,7 +44286,7 @@ msgid "horseradish greens" msgid_plural "horseradish greens" msgstr[0] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -44323,7 +44298,7 @@ msgid "dandelions" msgid_plural "dandelions" msgstr[0] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -44335,7 +44310,7 @@ msgid "burdocks" msgid_plural "burdocks" msgstr[0] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -44425,7 +44400,7 @@ msgid "wild vegetables" msgid_plural "wild vegetables" msgstr[0] "" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -44457,7 +44432,7 @@ msgid "raw beans" msgid_plural "raw beans" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -44469,7 +44444,7 @@ msgid "raw lentils" msgid_plural "raw lentils" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -44479,7 +44454,7 @@ msgid "fiddleheads" msgid_plural "fiddleheads" msgstr[0] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -44513,8 +44488,7 @@ msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" msgstr[0] "" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -44527,6 +44501,25 @@ msgid "" "nutritious!" msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -44582,7 +44575,7 @@ msgid "fairy bread" msgid_plural "fairy bread" msgstr[0] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -44626,24 +44619,21 @@ msgid "meat sandwich" msgid_plural "meat sandwiches" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -44748,7 +44738,7 @@ msgid "mushroom spores" msgid_plural "mushroom spores" msgstr[0] "" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -44758,7 +44748,7 @@ msgid "hop rhizomes" msgid_plural "hop rhizomes" msgstr[0] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "" @@ -44772,7 +44762,7 @@ msgid "blackberry seeds" msgid_plural "blackberry seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "" @@ -44786,7 +44776,7 @@ msgid "blueberry seeds" msgid_plural "blueberry seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "" @@ -44800,7 +44790,7 @@ msgid "cranberry seeds" msgid_plural "cranberry seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "" @@ -44814,7 +44804,7 @@ msgid "huckleberry seeds" msgid_plural "huckleberry seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -44828,7 +44818,7 @@ msgid "mulberry seeds" msgid_plural "mulberry seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -44842,7 +44832,7 @@ msgid "elderberry seeds" msgid_plural "elderberry seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -44856,7 +44846,7 @@ msgid "raspberry seeds" msgid_plural "raspberry seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "" @@ -44870,7 +44860,7 @@ msgid "strawberry seeds" msgid_plural "strawberry seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "" @@ -44884,7 +44874,7 @@ msgid "grape seeds" msgid_plural "grape seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -44898,7 +44888,7 @@ msgid "rose seeds" msgid_plural "rose seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -44912,7 +44902,7 @@ msgid "tobacco seeds" msgid_plural "tobacco seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -44926,7 +44916,7 @@ msgid "barley seeds" msgid_plural "barley seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "" @@ -44936,7 +44926,7 @@ msgid "sugar beet seeds" msgid_plural "sugar beet seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "" @@ -44946,7 +44936,7 @@ msgid "lettuce seeds" msgid_plural "lettuce seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "" @@ -44956,7 +44946,7 @@ msgid "cabbage seeds" msgid_plural "cabbage seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "" @@ -44966,7 +44956,7 @@ msgid "tomato seeds" msgid_plural "tomato seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "" @@ -44976,7 +44966,7 @@ msgid "cotton seeds" msgid_plural "cotton seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -44990,7 +44980,7 @@ msgid "broccoli seeds" msgid_plural "broccoli seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "" @@ -45000,7 +44990,7 @@ msgid "zucchini seeds" msgid_plural "zucchini seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "" @@ -45010,7 +45000,7 @@ msgid "onion seeds" msgid_plural "onion seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "" @@ -45020,7 +45010,7 @@ msgid "garlic seeds" msgid_plural "garlic seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "" @@ -45034,7 +45024,7 @@ msgid "cattail seeds" msgid_plural "cattail seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -45048,7 +45038,7 @@ msgid "dahlia seeds" msgid_plural "dahlia seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -45062,7 +45052,7 @@ msgid "salsify seeds" msgid_plural "salsify seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -45072,7 +45062,7 @@ msgid "chicory seeds" msgid_plural "chicory seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -45082,7 +45072,7 @@ msgid "wild root seeds" msgid_plural "wild root seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -45092,7 +45082,7 @@ msgid "decorative plant seeds" msgid_plural "decorative plant seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -45108,7 +45098,7 @@ msgid "cactus seeds" msgid_plural "cactus seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -45132,7 +45122,7 @@ msgid "carrot seeds" msgid_plural "carrot seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "" @@ -45142,7 +45132,7 @@ msgid "corn seeds" msgid_plural "corn seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "" @@ -45156,7 +45146,7 @@ msgid "chili pepper seeds" msgid_plural "chili pepper seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "" @@ -45166,7 +45156,7 @@ msgid "cucumber seeds" msgid_plural "cucumber seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "" @@ -45190,7 +45180,7 @@ msgid "cannabis seeds" msgid_plural "cannabis seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -45219,7 +45209,7 @@ msgid "bean seeds" msgid_plural "bean seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -45233,7 +45223,7 @@ msgid "soybean seeds" msgid_plural "soybean seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -45242,7 +45232,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -45256,7 +45246,7 @@ msgid "thyme seeds" msgid_plural "thyme seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -45271,7 +45261,7 @@ msgid "canola seeds" msgid_plural "canola seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -45281,7 +45271,7 @@ msgid "pumpkin seeds" msgid_plural "pumpkin seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -45291,7 +45281,7 @@ msgid "sunflower seeds" msgid_plural "sunflower seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -45307,7 +45297,7 @@ msgid "dogbane seeds" msgid_plural "dogbane seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -45317,7 +45307,7 @@ msgid "bee balm seeds" msgid_plural "bee balm seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -45327,7 +45317,7 @@ msgid "mugwort seeds" msgid_plural "mugwort seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -45337,7 +45327,7 @@ msgid "buckwheat seeds" msgid_plural "buckwheat seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -45347,7 +45337,7 @@ msgid "wild herb seeds" msgid_plural "wild herb seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -45361,7 +45351,7 @@ msgid "wild vegetable stems" msgid_plural "wild vegetable stems" msgstr[0] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -45375,7 +45365,7 @@ msgid "dandelion seeds" msgid_plural "dandelion seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -45389,7 +45379,7 @@ msgid "burdock seeds" msgid_plural "burdock seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -45403,7 +45393,7 @@ msgid "rhubarb stems" msgid_plural "rhubarb stems" msgstr[0] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -45413,7 +45403,7 @@ msgid "morel mushroom spores" msgid_plural "morel mushroom spores" msgstr[0] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -45423,7 +45413,7 @@ msgid "datura seeds" msgid_plural "datura seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -45440,7 +45430,7 @@ msgid "celery seeds" msgid_plural "celery seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "" @@ -45450,7 +45440,7 @@ msgid "oat seeds" msgid_plural "oat seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "" @@ -45465,7 +45455,7 @@ msgid "wheat seeds" msgid_plural "wheat seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "" @@ -45480,7 +45470,7 @@ msgid "fried seeds" msgid_plural "fried seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -45504,7 +45494,7 @@ msgid "coffee beans" msgid_plural "coffee beans" msgstr[0] "" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "" @@ -45514,7 +45504,7 @@ msgid "roasted coffee beans" msgid_plural "roasted coffee beans" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -45524,7 +45514,7 @@ msgid "chamomile seeds" msgid_plural "chamomile seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -45538,7 +45528,7 @@ msgid "spurge seeds" msgid_plural "spurge seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -45552,7 +45542,7 @@ msgid "popcorn seeds" msgid_plural "popcorn seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -45562,7 +45552,7 @@ msgid "horseradish seeds" msgid_plural "horseradish seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -45572,7 +45562,7 @@ msgid "mustard seeds" msgid_plural "mustard seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -45582,7 +45572,7 @@ msgid "bell pepper seeds" msgid_plural "bell pepper seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -45602,8 +45592,7 @@ msgid "bone broth" msgid_plural "bone broths" msgstr[0] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -45630,14 +45619,13 @@ msgid "meat soup" msgid_plural "meat soups" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -45673,8 +45661,7 @@ msgid "curry with meat" msgid_plural "curries with meat" msgstr[0] "" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -45690,10 +45677,8 @@ msgid "woods meat soup" msgid_plural "woods meat soups" msgstr[0] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -45749,7 +45734,7 @@ msgid "chicken and dumplings" msgid_plural "chicken and dumplings" msgstr[0] "" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" @@ -45771,7 +45756,7 @@ msgid "chili powder" msgid_plural "chili powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -45783,7 +45768,7 @@ msgid "hot sauce" msgid_plural "hot sauce" msgstr[0] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -45795,7 +45780,7 @@ msgid "cinnamon" msgid_plural "cinnamon" msgstr[0] "" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -45805,7 +45790,7 @@ msgid "curry powder" msgid_plural "curry powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -45817,7 +45802,7 @@ msgid "black pepper" msgid_plural "black pepper" msgstr[0] "" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "" @@ -45827,7 +45812,7 @@ msgid "salt" msgid_plural "salt" msgstr[0] "" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -45839,7 +45824,7 @@ msgid "Italian seasoning" msgid_plural "Italian seasoning" msgstr[0] "" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -45849,7 +45834,7 @@ msgid "seasoned salt" msgid_plural "seasoned salt" msgstr[0] "" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -45859,7 +45844,7 @@ msgid "sugar" msgid_plural "sugar" msgstr[0] "" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -45871,7 +45856,7 @@ msgid "sprinkles" msgid_plural "sprinkles" msgstr[0] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -45885,7 +45870,7 @@ msgid "wild herbs" msgid_plural "wild herbs" msgstr[0] "" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -45897,7 +45882,7 @@ msgid "soy sauce" msgid_plural "soy sauce" msgstr[0] "" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "" @@ -45912,7 +45897,7 @@ msgid "mustard powder" msgid_plural "mustard powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -45958,7 +45943,7 @@ msgid "starch" msgid_plural "starch" msgstr[0] "" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -45970,7 +45955,7 @@ msgid "cooked dandelion greens" msgid_plural "cooked dandelion greens" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" @@ -45980,7 +45965,7 @@ msgid "fried dandelions" msgid_plural "fried dandelions" msgstr[0] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -45991,7 +45976,7 @@ msgid "cooked burdock greens" msgid_plural "cooked burdock greens" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -46001,7 +45986,7 @@ msgid "fried burdocks" msgid_plural "fried burdocks" msgstr[0] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -46035,7 +46020,7 @@ msgid "cooked wild vegetables" msgid_plural "cooked wild vegetables" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -46056,7 +46041,7 @@ msgid "cooked buckwheat" msgid_plural "cooked buckwheat" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -46067,7 +46052,7 @@ msgid "canned corn" msgid_plural "canned corn" msgstr[0] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "" @@ -46077,7 +46062,7 @@ msgid "corn on the cob" msgid_plural "corn on the cob" msgstr[0] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -46087,7 +46072,7 @@ msgid "pan roasted corn" msgid_plural "pan roasted corn" msgstr[0] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -46097,7 +46082,7 @@ msgid "hominy" msgid_plural "hominy" msgstr[0] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -46109,7 +46094,7 @@ msgid "cornmeal" msgid_plural "cornmeal" msgstr[0] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "" @@ -46119,7 +46104,7 @@ msgid "vegetarian baked beans" msgid_plural "vegetarian baked beans" msgstr[0] "" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" @@ -46129,7 +46114,7 @@ msgid "dried rice" msgid_plural "dried rice" msgstr[0] "" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -46141,7 +46126,7 @@ msgid "cooked rice" msgid_plural "cooked rice" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "" @@ -46151,7 +46136,7 @@ msgid "fried rice" msgid_plural "fried rice" msgstr[0] "" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "" @@ -46161,7 +46146,7 @@ msgid "beans and rice" msgid_plural "beans and rice" msgstr[0] "" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -46173,7 +46158,7 @@ msgid "tofu fried rice" msgid_plural "tofu fried rice" msgstr[0] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -46183,7 +46168,7 @@ msgid "tofu stirfry" msgid_plural "tofu stirfry" msgstr[0] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -46195,7 +46180,7 @@ msgid "deluxe vegetarian beans and rice" msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -46260,7 +46245,7 @@ msgid "pesto" msgid_plural "pesto" msgstr[0] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -46294,7 +46279,7 @@ msgid "spaghetti al pesto" msgid_plural "spaghetti al pesto" msgstr[0] "" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "" @@ -46315,7 +46300,7 @@ msgid "sauerkraut w/ sautee'd onions" msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -46351,7 +46336,7 @@ msgid "dehydrated corn kernels" msgid_plural "dehydrated corn kernels" msgstr[0] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -46373,7 +46358,7 @@ msgid "rehydrated corn kernels" msgid_plural "rehydrated corn kernels" msgstr[0] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -46443,7 +46428,7 @@ msgid "sushi rice" msgid_plural "sushi rice" msgstr[0] "" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -46453,7 +46438,7 @@ msgid "onigiri" msgid_plural "onigiri" msgstr[0] "" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -46465,7 +46450,7 @@ msgid "vegetable hosomaki" msgid_plural "vegetable hosomaki" msgstr[0] "" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -46489,7 +46474,7 @@ msgid "sauerkraut" msgid_plural "sauerkraut" msgstr[0] "" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -46511,7 +46496,7 @@ msgid "boiled fiddleheads" msgid_plural "boiled fiddleheads" msgstr[0] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -46521,7 +46506,7 @@ msgid "sauteed fiddleheads" msgid_plural "sauteed fiddleheads" msgstr[0] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -46538,7 +46523,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "" @@ -46548,7 +46533,7 @@ msgid "raw spaghetti pasta" msgid_plural "raw spaghetti pasta" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -46560,7 +46545,7 @@ msgid "raw lasagne pasta" msgid_plural "raw lasagne pasta" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -46572,7 +46557,7 @@ msgid "boiled noodles" msgid_plural "boiled noodles" msgstr[0] "" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "" @@ -46582,7 +46567,7 @@ msgid "raw macaroni" msgid_plural "raw macaroni" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -46592,7 +46577,7 @@ msgid "mac & cheese" msgid_plural "mac & cheese" msgstr[0] "" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -46602,7 +46587,7 @@ msgid "flour" msgid_plural "flour" msgstr[0] "" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "" @@ -46612,7 +46597,7 @@ msgid "bread flour" msgid_plural "bread flour" msgstr[0] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -46624,14 +46609,14 @@ msgid "oatmeal" msgid_plural "oatmeal" msgstr[0] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "" @@ -46641,7 +46626,7 @@ msgid "cooked oatmeal" msgid_plural "cooked oatmeal" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -46653,7 +46638,7 @@ msgid "deluxe cooked oatmeal" msgid_plural "deluxe cooked oatmeal" msgstr[0] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -46732,7 +46717,7 @@ msgid "oyster crackers" msgid_plural "oyster crackers" msgstr[0] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -46764,7 +46749,7 @@ msgid "granola" msgid_plural "granola" msgstr[0] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -46786,7 +46771,7 @@ msgid "fast noodles" msgid_plural "fast noodles" msgstr[0] "" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -46965,7 +46950,7 @@ msgid "pineapple stem" msgid_plural "pineapple stem" msgstr[0] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -46975,7 +46960,7 @@ msgid "melon seeds" msgid_plural "melon seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -46985,7 +46970,7 @@ msgid "banana saplings" msgid_plural "banana saplings" msgstr[0] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -46995,7 +46980,7 @@ msgid "orange vine" msgid_plural "orange vine" msgstr[0] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -47005,7 +46990,7 @@ msgid "lemon vine" msgid_plural "lemon vine" msgstr[0] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -47015,7 +47000,7 @@ msgid "subterraenean coconut" msgid_plural "subterraenean coconut" msgstr[0] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -47060,7 +47045,7 @@ msgid "cooked freezerburned human meat" msgid_plural "cooked freezerburned human meat" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -47102,7 +47087,7 @@ msgid "freezerburned human tallow" msgid_plural "freezerburned human tallow" msgstr[0] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -47114,7 +47099,7 @@ msgid "freezerburned human lard" msgid_plural "freezerburned human lard" msgstr[0] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -47152,7 +47137,7 @@ msgid "cooked alien flesh" msgid_plural "cooked alien flesh" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -47253,7 +47238,7 @@ msgid "raw alien brains" msgid_plural "raw alien brains" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -47266,7 +47251,7 @@ msgid "cooked alien brains" msgid_plural "cooked alien brains" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -47349,7 +47334,7 @@ msgid "alien tallow" msgid_plural "alien tallow" msgstr[0] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -47362,7 +47347,7 @@ msgid "alien lard" msgid_plural "alien lard" msgstr[0] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -47375,7 +47360,7 @@ msgid "unidentifiable alien organs" msgid_plural "unidentifiable alien organs" msgstr[0] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -47386,7 +47371,7 @@ msgid "alien cracklins" msgid_plural "alien cracklins" msgstr[0] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -47398,7 +47383,7 @@ msgid "freezerburned human cracklins" msgid_plural "freezerburned human cracklins" msgstr[0] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -47449,7 +47434,7 @@ msgid "mealgrub spores" msgid_plural "mealgrub spores" msgstr[0] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -47464,7 +47449,7 @@ msgid "mealgrub broth" msgid_plural "mealgrub broth" msgstr[0] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -47477,7 +47462,7 @@ msgid "live mealgrubs" msgid_plural "live mealgrubs" msgstr[0] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -47490,7 +47475,7 @@ msgid "mealgrubs" msgid_plural "mealgrubs" msgstr[0] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -47547,7 +47532,7 @@ msgid "H₂O™" msgid_plural "H₂O™" msgstr[0] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -47560,7 +47545,7 @@ msgid "food cubes" msgid_plural "food cubes" msgstr[0] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -47571,7 +47556,7 @@ msgid "Foodplace's Food-to-go™" msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -47593,7 +47578,7 @@ msgid "cee wafers" msgid_plural "cee wafers" msgstr[0] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -47617,7 +47602,7 @@ msgid "soup, flavor 27" msgid_plural "soup, flavor 27" msgstr[0] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -47630,7 +47615,7 @@ msgid "landfall survival rations" msgid_plural "landfall survival rations" msgstr[0] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -47645,7 +47630,7 @@ msgid "caffex" msgid_plural "caffex" msgstr[0] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -47683,7 +47668,7 @@ msgid "supercritical coolant" msgid_plural "supercritical coolant" msgstr[0] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -47740,7 +47725,7 @@ msgid "SpOreos" msgid_plural "SpOreos" msgstr[0] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -47760,7 +47745,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -48022,8 +48007,8 @@ msgid_plural "siats eggs" msgstr[0] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" #: lang/json/COMESTIBLE_from_json.py @@ -48031,6 +48016,16 @@ msgid "albertosaurus egg" msgid_plural "albertosaurus eggs" msgstr[0] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -48066,6 +48061,11 @@ msgid "eoraptor egg" msgid_plural "eoraptor eggs" msgstr[0] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -48166,6 +48166,11 @@ msgid "pentaceratops egg" msgid_plural "pentaceratops eggs" msgstr[0] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -48196,21 +48201,6 @@ msgid "mosasaurus egg" msgid_plural "mosasaurus eggs" msgstr[0] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -48484,7 +48474,7 @@ msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -48545,7 +48535,7 @@ msgid "mana infused blood" msgid_plural "mana infused blood" msgstr[0] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -48601,14 +48591,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -48689,7 +48679,7 @@ msgid "raw chocolate milk" msgid_plural "raw chocolate milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -48698,7 +48688,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -48709,7 +48699,7 @@ msgid "liquid cacao" msgid_plural "liquid cacao" msgstr[0] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -48719,7 +48709,7 @@ msgid "reconstituted chocolate milk" msgid_plural "reconstituted chocolate milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -48731,7 +48721,7 @@ msgid "powdered chocolate milk" msgid_plural "powdered chocolate milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -48749,7 +48739,7 @@ msgid "pieces of candy wrapper" msgid_plural "pieces of candy wrapper" msgstr[0] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -48762,7 +48752,7 @@ msgid "sticky sludge" msgid_plural "sticky sludge" msgstr[0] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -49299,7 +49289,7 @@ msgid "rock salt" msgid_plural "rock salt" msgstr[0] "" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -49309,7 +49299,7 @@ msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -49321,7 +49311,7 @@ msgid "zincite" msgid_plural "zincite" msgstr[0] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -49355,7 +49345,7 @@ msgid "hickory nuts" msgid_plural "hickory nuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -49365,7 +49355,7 @@ msgid "pecans" msgid_plural "pecans" msgstr[0] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -49375,7 +49365,7 @@ msgid "pistachios" msgid_plural "pistachios" msgstr[0] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -49385,7 +49375,7 @@ msgid "almonds" msgid_plural "almonds" msgstr[0] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -49395,7 +49385,7 @@ msgid "peanuts" msgid_plural "peanuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -49405,7 +49395,7 @@ msgid "hazelnuts" msgid_plural "hazelnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -49415,7 +49405,7 @@ msgid "chestnuts" msgid_plural "chestnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -49425,7 +49415,7 @@ msgid "walnuts" msgid_plural "walnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -49688,6 +49678,17 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -49698,6 +49699,18 @@ msgstr[0] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -50408,7 +50421,7 @@ msgid "semi ground grains" msgid_plural "semi ground grains" msgstr[0] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -50418,7 +50431,7 @@ msgid "smoldering embers" msgid_plural "smoldering embers" msgstr[0] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -50607,6 +50620,27 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -50786,7 +50820,7 @@ msgid "superglue" msgid_plural "superglue" msgstr[0] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" @@ -51051,7 +51085,7 @@ msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -51182,7 +51216,7 @@ msgid "concrete" msgid_plural "concrete" msgstr[0] "" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "" @@ -51958,7 +51992,7 @@ msgid "clockworks" msgid_plural "clockworks" msgstr[0] "" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -52079,7 +52113,7 @@ msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -52103,7 +52137,7 @@ msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -52135,7 +52169,7 @@ msgid "mortar" msgid_plural "mortar" msgstr[0] "" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "" @@ -52179,7 +52213,7 @@ msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -52191,7 +52225,7 @@ msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -52211,7 +52245,7 @@ msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -52607,7 +52641,7 @@ msgid "raw tobacco" msgid_plural "raw tobacco" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -52887,7 +52921,7 @@ msgid "plastic dice" msgid_plural "plastic dice" msgstr[0] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -52908,7 +52942,7 @@ msgid "alder bark" msgid_plural "alder bark" msgstr[0] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -53252,6 +53286,91 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -53894,7 +54013,7 @@ msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -54019,7 +54138,7 @@ msgid "turret interior chassis" msgid_plural "turret interior chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -54031,7 +54150,7 @@ msgid "police bot chassis" msgid_plural "police bot chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -54058,7 +54177,7 @@ msgid "Alarm System CBM installation data" msgid_plural "Alarm System CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54073,7 +54192,7 @@ msgid "LED Tattoo CBM installation data" msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54088,7 +54207,7 @@ msgid "Power Armor Interface CBM installation data" msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54103,7 +54222,7 @@ msgid "Power Storage CBM installation data" msgid_plural "Power Storage CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54118,7 +54237,7 @@ msgid "Power Storage CBM Mk. II installation data" msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54133,7 +54252,7 @@ msgid "Internal Chronometer CBM installation data" msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54148,7 +54267,7 @@ msgid "Intravenous Needletip CBM installation data" msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54163,7 +54282,7 @@ msgid "Blood Analysis CBM installation data" msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54178,7 +54297,7 @@ msgid "Cranial Flashlight CBM installation data" msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54193,7 +54312,7 @@ msgid "Electromagnetic Unit CBM installation data" msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54208,7 +54327,7 @@ msgid "Soporific Induction CBM installation data" msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54223,7 +54342,7 @@ msgid "Arms Alloy Plating CBM installation data" msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54238,7 +54357,7 @@ msgid "Legs Alloy Plating CBM installation data" msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54253,7 +54372,7 @@ msgid "Shotgun Arm CBM installation data" msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54268,7 +54387,7 @@ msgid "Blood Filter CBM installation data" msgid_plural "Blood Filter CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54283,8 +54402,7 @@ msgid "Internal Climate Control CBM installation data" msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54299,7 +54417,7 @@ msgid "Integrated Dosimeter CBM installation data" msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54314,7 +54432,7 @@ msgid "Thermal Dissipation CBM installation data" msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54329,7 +54447,7 @@ msgid "Weather Reader CBM installation data" msgid_plural "Weather Reader CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54344,7 +54462,7 @@ msgid "Railgun CBM installation data" msgid_plural "Railgun CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54359,7 +54477,7 @@ msgid "Unified Power System CBM installation data" msgid_plural "Unified Power System CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54374,8 +54492,7 @@ msgid "Titanium Skeletal Bracing CBM installation data" msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54395,7 +54512,7 @@ msgid "misc software" msgid_plural "misc software" msgstr[0] "" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -54405,7 +54522,7 @@ msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "" @@ -54415,7 +54532,7 @@ msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "" @@ -54425,7 +54542,7 @@ msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "" @@ -54435,7 +54552,7 @@ msgid "infection data" msgid_plural "infection data" msgstr[0] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "" @@ -54445,7 +54562,7 @@ msgid "lab data" msgid_plural "lab data" msgstr[0] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -54455,7 +54572,7 @@ msgid "train data" msgid_plural "train data" msgstr[0] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -54465,7 +54582,7 @@ msgid "neural data" msgid_plural "neural data" msgstr[0] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -54739,27 +54856,38 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" msgid_plural "skinned %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -54991,7 +55119,7 @@ msgid "trifacet remains" msgid_plural "trifacet remains" msgstr[0] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -55307,6 +55435,96 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -56900,7 +57118,7 @@ msgid "headphones" msgid_plural "headphones" msgstr[0] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -56974,7 +57192,7 @@ msgid "spare parts" msgid_plural "spare parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -57528,7 +57746,7 @@ msgid "bokken" msgid_plural "bokken" msgstr[0] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -57536,14 +57754,14 @@ msgid "" "edge, it's still quite capable of inflicting deadly wounds." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -58052,7 +58270,7 @@ msgid "bionic claws" msgid_plural "bionic claws" msgstr[0] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -58255,7 +58473,7 @@ msgid "qiang" msgid_plural "qiang" msgstr[0] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -58297,7 +58515,7 @@ msgid "naginata" msgid_plural "naginata" msgstr[0] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -58305,7 +58523,7 @@ msgid "" "or by their wives in defense of the household." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -58313,7 +58531,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -58326,7 +58544,7 @@ msgid "survivor naginata" msgid_plural "survivor naginata" msgstr[0] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -58448,7 +58666,7 @@ msgid "ji" msgid_plural "ji" msgstr[0] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -58504,13 +58722,26 @@ msgid "" "offers a good bit of slashing power." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" msgid_plural "jian" msgstr[0] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -58589,14 +58820,14 @@ msgid "tanto" msgid_plural "tanto" msgstr[0] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -58609,14 +58840,14 @@ msgid "nodachi" msgid_plural "nodachi" msgstr[0] "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -58744,7 +58975,7 @@ msgid "katana" msgid_plural "katana" msgstr[0] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -58807,7 +59038,7 @@ msgid "wakizashi" msgid_plural "wakizashi" msgstr[0] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -58867,7 +59098,7 @@ msgid "tiger claws" msgid_plural "tiger claws" msgstr[0] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -59081,12 +59312,25 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -59101,7 +59345,7 @@ msgid "Exodii drone chassis" msgid_plural "Exodii drone chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -59142,7 +59386,7 @@ msgid "inscribed metal plates" msgid_plural "inscribed metal plates" msgstr[0] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -59410,7 +59654,7 @@ msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -59651,7 +59895,7 @@ msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -59852,17 +60096,17 @@ msgid "sealed yeast culture" msgid_plural "sealed yeast culture" msgstr[0] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -60973,7 +61217,7 @@ msgid "oars" msgid_plural "oars" msgstr[0] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -60993,7 +61237,7 @@ msgid "inflatable section" msgid_plural "inflatable section" msgstr[0] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -61003,7 +61247,7 @@ msgid "inflatable airbag" msgid_plural "inflatable airbag" msgstr[0] "" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -61789,7 +62033,7 @@ msgid "chime loudspeakers" msgid_plural "chime loudspeakers" msgstr[0] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -61802,7 +62046,7 @@ msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "" @@ -61812,7 +62056,7 @@ msgid "wired sheet metal" msgid_plural "wired sheet metal" msgstr[0] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -61832,7 +62076,7 @@ msgid "steel plating" msgid_plural "steel plating" msgstr[0] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "" @@ -61842,7 +62086,7 @@ msgid "superalloy plating" msgid_plural "superalloy plating" msgstr[0] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -61863,7 +62107,7 @@ msgid "spiked plating" msgid_plural "spiked plating" msgstr[0] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -62069,12 +62313,18 @@ msgid_plural "solar panels" msgstr[0] "" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -62193,6 +62443,16 @@ msgstr[0] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -62592,7 +62852,7 @@ msgid "Dana's family sourdough starter" msgid_plural "Dana's family sourdough starter" msgstr[0] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -62647,7 +62907,7 @@ msgid "bioweapon chassis" msgid_plural "bioweapon chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -62915,7 +63175,7 @@ msgid "broken Isohypsa" msgid_plural "broken Isohypsa" msgstr[0] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -62927,7 +63187,7 @@ msgid "broken Kabura-ya" msgid_plural "broken Kabura-ya" msgstr[0] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -63040,7 +63300,7 @@ msgid "scrap titanium" msgid_plural "scrap titanium" msgstr[0] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -63050,7 +63310,7 @@ msgid "nuclear waste" msgid_plural "nuclear waste" msgstr[0] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -63227,7 +63487,7 @@ msgid "tripod chassis" msgid_plural "tripod chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63239,7 +63499,7 @@ msgid "Pathfinder chassis" msgid_plural "Pathfinder chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63251,7 +63511,7 @@ msgid "Regulator chassis" msgid_plural "Regulator chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63263,7 +63523,7 @@ msgid "Seneschal chassis" msgid_plural "Seneschal chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63275,7 +63535,7 @@ msgid "Likvidator chassis" msgid_plural "Likvidator chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63287,7 +63547,7 @@ msgid "Famulus chassis" msgid_plural "Famulus chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -63299,7 +63559,7 @@ msgid "Udarnik chassis" msgid_plural "Udarnik chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63311,7 +63571,7 @@ msgid "Brandspojt chassis" msgid_plural "Brandspojt chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63323,7 +63583,7 @@ msgid "Surgical Droid chassis" msgid_plural "Surgical Droid chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63335,7 +63595,7 @@ msgid "Aegis chassis" msgid_plural "Aegis chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63347,7 +63607,7 @@ msgid "military robot chassis" msgid_plural "military robot chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63359,7 +63619,7 @@ msgid "military humaniform chassis" msgid_plural "military humaniform chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -63460,7 +63720,7 @@ msgid "monomeric slurry" msgid_plural "monomeric slurry" msgstr[0] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -63484,7 +63744,7 @@ msgid "artificial muscle fibers" msgid_plural "artificial muscle fibers" msgstr[0] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -63496,7 +63756,7 @@ msgid "self healing polymers" msgid_plural "self healing polymers" msgstr[0] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -63520,7 +63780,7 @@ msgid "scrap photonics" msgid_plural "scrap photonics" msgstr[0] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -63550,7 +63810,7 @@ msgid "hypergeometric photonics" msgid_plural "hypergeometric photonics" msgstr[0] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -63870,7 +64130,7 @@ msgid "laser optics" msgid_plural "laser optics" msgstr[0] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -64529,7 +64789,7 @@ msgid "enchanted wood" msgid_plural "enchanted wood" msgstr[0] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -65821,7 +66081,7 @@ msgid "subzero talons" msgid_plural "subzero talons" msgstr[0] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -66022,7 +66282,7 @@ msgid "fireproof mortar" msgid_plural "fireproof mortar" msgstr[0] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -66135,7 +66395,7 @@ msgid "chicken walker chassis" msgid_plural "chicken walker chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -66147,7 +66407,7 @@ msgid "Beagle chassis" msgid_plural "Beagle chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -66950,6 +67210,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -67094,8 +67365,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -67410,6 +67681,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -67784,7 +68060,7 @@ msgid "tiny fish" msgid_plural "tiny fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -67794,7 +68070,7 @@ msgid "small fish" msgid_plural "small fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -67804,7 +68080,7 @@ msgid "medium fish" msgid_plural "medium fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -67814,7 +68090,7 @@ msgid "large fish" msgid_plural "large fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -67824,7 +68100,7 @@ msgid "huge fish" msgid_plural "huge fish" msgstr[0] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -67949,7 +68225,7 @@ msgid "whitefish" msgid_plural "whitefish" msgstr[0] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -67961,7 +68237,7 @@ msgid "largemouth bass" msgid_plural "largemouth bass" msgstr[0] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -67971,7 +68247,7 @@ msgid "smallmouth bass" msgid_plural "smallmouth bass" msgstr[0] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -67983,7 +68259,7 @@ msgid "striped bass" msgid_plural "striped bass" msgstr[0] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -67995,7 +68271,7 @@ msgid "white bass" msgid_plural "white bass" msgstr[0] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -68029,7 +68305,7 @@ msgid "sunfish" msgid_plural "sunfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -68039,7 +68315,7 @@ msgid "pumpkinseed sunfish" msgid_plural "pumpkinseed sunfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -68060,7 +68336,7 @@ msgid "redbreast sunfish" msgid_plural "redbreast sunfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -68070,7 +68346,7 @@ msgid "green sunfish" msgid_plural "green sunfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -68080,7 +68356,7 @@ msgid "longear sunfish" msgid_plural "longear sunfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -68090,7 +68366,7 @@ msgid "redear sunfish" msgid_plural "redear sunfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -68100,7 +68376,7 @@ msgid "rock bass" msgid_plural "rock bass" msgstr[0] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -68112,7 +68388,7 @@ msgid "calico bass" msgid_plural "calico bass" msgstr[0] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -68144,7 +68420,7 @@ msgid "channel catfish" msgid_plural "channel catfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -68154,7 +68430,7 @@ msgid "white catfish" msgid_plural "white catfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -68243,7 +68519,7 @@ msgid "fallfish" msgid_plural "fallfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -68268,7 +68544,7 @@ msgid "crayfish" msgid_plural "crayfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -68297,7 +68573,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -68309,7 +68585,7 @@ msgid "giant crayfish" msgid_plural "giant crayfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -68321,7 +68597,7 @@ msgid "colossal crayfish" msgid_plural "colossal crayfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -68927,7 +69203,7 @@ msgid "fused dragonflies" msgid_plural "fused dragonflies" msgstr[0] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -69100,7 +69376,7 @@ msgstr[0] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -70621,7 +70897,7 @@ msgid "Great Pyrenees" msgid_plural "Great Pyrenees" msgstr[0] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -70802,7 +71078,7 @@ msgid "moose" msgid_plural "moose" msgstr[0] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -70950,7 +71226,7 @@ msgid_plural "lambs" msgstr[0] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -71221,10 +71497,11 @@ msgstr[0] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -71235,6 +71512,16 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -73302,7 +73589,7 @@ msgid "sawbones" msgid_plural "sawbones" msgstr[0] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -73316,7 +73603,7 @@ msgid "doctor burns" msgid_plural "doctor burns" msgstr[0] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -73484,7 +73771,7 @@ msgid "unstable flesh-raptor" msgid_plural "unstable flesh-raptor" msgstr[0] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -73595,17 +73882,18 @@ msgstr[0] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -74011,7 +74299,7 @@ msgid "gangrenous flesh" msgid_plural "gangrenous flesh" msgstr[0] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -74052,7 +74340,7 @@ msgid "scissorlimbs" msgid_plural "scissorlimbs" msgstr[0] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -74065,7 +74353,7 @@ msgid "hanging innards" msgid_plural "hanging innards" msgstr[0] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -74514,7 +74802,7 @@ msgid "Shia LaBeouf" msgid_plural "Shia LaBeouf" msgstr[0] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -76256,7 +76544,7 @@ msgid "wisp" msgid_plural "wisp" msgstr[0] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -76764,7 +77052,7 @@ msgid "coelophysis" msgid_plural "coelophysis" msgstr[0] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -76776,7 +77064,7 @@ msgid "dilophosaurus" msgid_plural "dilophosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -76788,7 +77076,7 @@ msgid "ceratosaurus" msgid_plural "ceratosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -76801,7 +77089,7 @@ msgid "spinosaurus" msgid_plural "spinosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -76814,7 +77102,7 @@ msgid "allosaurus" msgid_plural "allosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -76826,7 +77114,7 @@ msgid "acrocanthosaurus" msgid_plural "acrocanthosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -76839,19 +77127,31 @@ msgid "siats" msgid_plural "siats" msgstr[0] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -76863,7 +77163,7 @@ msgid "qianzhousaurus" msgid_plural "qianzhousaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -76875,7 +77175,7 @@ msgid "tyrannosaurus rex" msgid_plural "tyrannosaurus rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -76887,7 +77187,7 @@ msgid "compsognathus" msgid_plural "compsognathus" msgstr[0] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -76899,7 +77199,7 @@ msgid "gallimimus" msgid_plural "gallimimus" msgstr[0] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -76923,7 +77223,7 @@ msgid "nothronychus" msgid_plural "nothronychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -76935,7 +77235,7 @@ msgid "deinonychus" msgid_plural "deinonychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -76971,7 +77271,7 @@ msgid "amargasaurus" msgid_plural "amargasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -76983,7 +77283,7 @@ msgid "apatosaurus" msgid_plural "apatosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -76995,7 +77295,7 @@ msgid "brontosaurus" msgid_plural "brontosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -77007,7 +77307,7 @@ msgid "diplodocus" msgid_plural "diplodocus" msgstr[0] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -77017,7 +77317,7 @@ msgid "camarasaurus" msgid_plural "camarasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -77029,7 +77329,7 @@ msgid "brachiosaurus" msgid_plural "brachiosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -77041,7 +77341,7 @@ msgid "alamosaurus" msgid_plural "alamosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -77053,7 +77353,7 @@ msgid "scutellosaurus" msgid_plural "scutellosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -77065,7 +77365,7 @@ msgid "stegosaurus" msgid_plural "stegosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -77076,7 +77376,7 @@ msgid "dyoplosaurus" msgid_plural "dyoplosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -77088,7 +77388,7 @@ msgid "ankylosaurus" msgid_plural "ankylosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -77100,7 +77400,7 @@ msgid "nodosaurus" msgid_plural "nodosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -77111,7 +77411,7 @@ msgid "edmontonia" msgid_plural "edmontonia" msgstr[0] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -77123,7 +77423,7 @@ msgid "camptosaurus" msgid_plural "camptosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -77135,7 +77435,7 @@ msgid "parasaurolophus" msgid_plural "parasaurolophus" msgstr[0] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -77145,7 +77445,7 @@ msgid "maiasaura" msgid_plural "maiasaura" msgstr[0] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -77157,7 +77457,7 @@ msgid "corythosaurus" msgid_plural "corythosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -77169,7 +77469,7 @@ msgid "edmontosaurus" msgid_plural "edmontosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -77179,7 +77479,7 @@ msgid "pachycephalosaurus" msgid_plural "pachycephalosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -77191,7 +77491,7 @@ msgid "pachyrhinosaurus" msgid_plural "pachyrhinosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -77203,7 +77503,7 @@ msgid "pentaceratops" msgid_plural "pentaceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -77215,7 +77515,7 @@ msgid "kosmoceratops" msgid_plural "kosmoceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -77228,7 +77528,7 @@ msgid "torosaurus" msgid_plural "torosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -77240,7 +77540,7 @@ msgid "triceratops" msgid_plural "triceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -77252,7 +77552,7 @@ msgid "dimorphodon" msgid_plural "dimorphodon" msgstr[0] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -77264,7 +77564,7 @@ msgid "pteranodon" msgid_plural "pteranodon" msgstr[0] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -77276,7 +77576,7 @@ msgid "quetzalcoatlus" msgid_plural "quetzalcoatlus" msgstr[0] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -77288,7 +77588,7 @@ msgid "mosasaurus" msgid_plural "mosasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -77300,7 +77600,7 @@ msgid "Gallimimus bio-operator" msgid_plural "Gallimimus bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -77312,7 +77612,7 @@ msgid "Pachycephalosaurus bio-operator" msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -77324,7 +77624,7 @@ msgid "Triceratops bio-operator" msgid_plural "Triceratops bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -77336,7 +77636,7 @@ msgid "Velociraptor bio-operator" msgid_plural "Velociraptor bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -77348,7 +77648,7 @@ msgid "Deinonychus bio-operator" msgid_plural "Deinonychus bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -77360,7 +77660,7 @@ msgid "Dimorphodon bio-operator" msgid_plural "Dimorphodon bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -77372,7 +77672,7 @@ msgid "Spinosaurus bio-operator" msgid_plural "Spinosaurus bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -77469,6 +77769,19 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -77941,6 +78254,11 @@ msgid "dark gray and yellow hatchling" msgid_plural "dark gray and yellow hatchlings" msgstr[0] "" +#: lang/json/MONSTER_from_json.py +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" +msgstr[0] "" + #: lang/json/MONSTER_from_json.py msgid "red and green hatchling" msgid_plural "red and green hatchlings" @@ -77951,11 +78269,6 @@ msgid "dark gray and white hatchling" msgid_plural "dark gray and white hatchlings" msgstr[0] "" -#: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" -msgstr[0] "" - #: lang/json/MONSTER_from_json.py msgid "amargasaurus hatchling" msgid_plural "amargasaurus hatchlings" @@ -78004,7 +78317,6 @@ msgid_plural "magenta and green two-legged juveniles" msgstr[0] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -78024,23 +78336,81 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" +#. ~ Description for juvenile allosaurus #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -78244,6 +78614,18 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -78345,7 +78727,7 @@ msgid "amargasaurus zombie" msgid_plural "amargasaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -78772,6 +79154,7 @@ msgstr[0] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -78816,6 +79199,11 @@ msgid "scorched siats zombie" msgid_plural "scorched siats zombies" msgstr[0] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -79181,6 +79569,18 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -79210,7 +79610,7 @@ msgid "Rage Rex" msgid_plural "Rage Rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -79222,7 +79622,7 @@ msgid "Gruesome Gallimimus" msgid_plural "Gruesome Gallimimus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -79235,7 +79635,7 @@ msgid "Nefarious Nothronychus" msgid_plural "Nefarious Nothronychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -79289,7 +79689,7 @@ msgid "Anabolic Apatosaurus" msgid_plural "Anabolic Apatosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -79347,7 +79747,7 @@ msgid "Anabolic Alamosaurus" msgid_plural "Anabolic Alamosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -79574,11 +79974,23 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -79587,61 +79999,62 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -79649,11 +80062,11 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -79662,11 +80075,11 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -79675,15 +80088,15 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -79711,7 +80124,7 @@ msgid "skeletal spinosaurus" msgid_plural "skeletal spinosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -79723,7 +80136,8 @@ msgid "skeletal allosaurus" msgid_plural "skeletal allosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -79735,7 +80149,7 @@ msgid "skeletal acrocanthosaurus" msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -79747,19 +80161,24 @@ msgid "skeletal siats" msgid_plural "skeletal siats" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -79771,7 +80190,7 @@ msgid "skeletal qianzhousaurus" msgid_plural "skeletal qianzhousaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -79795,7 +80214,7 @@ msgid "skeletal gallimimus" msgid_plural "skeletal gallimimus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -79806,7 +80225,7 @@ msgid "skeletal nothronychus" msgid_plural "skeletal nothronychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -79818,8 +80237,8 @@ msgid "skeletal deinonychus" msgid_plural "skeletal deinonychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -79836,7 +80255,7 @@ msgid "armored amargasaurus" msgid_plural "armored amargasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -79849,7 +80268,7 @@ msgid "armored apatosaurus" msgid_plural "armored apatosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -79861,7 +80280,7 @@ msgid "armored brontosaurus" msgid_plural "armored brontosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -79873,7 +80292,7 @@ msgid "armored diplodocus" msgid_plural "armored diplodocus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -79885,7 +80304,7 @@ msgid "armored camarasaurus" msgid_plural "armored camarasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -79897,7 +80316,7 @@ msgid "armored brachiosaurus" msgid_plural "armored brachiosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -79909,7 +80328,7 @@ msgid "armored alamosaurus" msgid_plural "armored alamosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -79921,7 +80340,7 @@ msgid "skeletal stegosaurus" msgid_plural "skeletal stegosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -79933,7 +80352,7 @@ msgid "skeletal dyoplosaurus" msgid_plural "skeletal dyoplosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -79946,7 +80365,7 @@ msgid "Bone Fortress" msgid_plural "Bone Fortress" msgstr[0] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -79959,7 +80378,7 @@ msgid "armored nodosaurus" msgid_plural "armored nodosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -79971,7 +80390,7 @@ msgid "armored edmontonia" msgid_plural "armored edmontonia" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -79983,7 +80402,7 @@ msgid "armored camptosaurus" msgid_plural "armored camptosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -79995,7 +80414,7 @@ msgid "armored maiasaura" msgid_plural "armored maiasaura" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -80007,7 +80426,7 @@ msgid "armored parasaurolophus" msgid_plural "armored parasaurolophus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -80019,7 +80438,7 @@ msgid "armored corythosaurus" msgid_plural "armored corythosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -80031,7 +80450,7 @@ msgid "armored Edmontosaurus" msgid_plural "armored Edmontosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -80043,7 +80462,7 @@ msgid "protected pachycephalosaurus" msgid_plural "protected pachycephalosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -80055,7 +80474,7 @@ msgid "protected pachyrhinosaurus" msgid_plural "protected pachyrhinosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -80067,7 +80486,7 @@ msgid "protected pentaceratops" msgid_plural "protected pentaceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -80079,7 +80498,7 @@ msgid "armored kosmoceratops" msgid_plural "armored kosmoceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -80091,7 +80510,7 @@ msgid "armored torosaurus" msgid_plural "armored torosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -80103,7 +80522,7 @@ msgid "armored triceratops" msgid_plural "armored triceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -80115,7 +80534,7 @@ msgid "Tyruckusaurus Rex" msgid_plural "Tyruckusaurus Rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -80128,7 +80547,7 @@ msgid "Tankylosaurus" msgid_plural "Tankylosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -80141,7 +80560,7 @@ msgid "Goliath Rex" msgid_plural "Goliath Rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -80153,7 +80572,7 @@ msgid "Ankylosaurus hulk" msgid_plural "Ankylosaurus hulk" msgstr[0] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -80165,7 +80584,7 @@ msgid "Dimorphodon zombie" msgid_plural "Dimorphodon zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -80203,7 +80622,7 @@ msgid "CROWS II, heavy machinegun" msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -80218,7 +80637,7 @@ msgid "CROWS II, light machinegun" msgid_plural "CROWS II, light machinegun" msgstr[0] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -80510,7 +80929,7 @@ msgid "forge hounds" msgid_plural "forge hounds" msgstr[0] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -80795,7 +81214,7 @@ msgid "hunllef rams" msgid_plural "hunllef rams" msgstr[0] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -80919,6 +81338,21 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -81175,7 +81609,7 @@ msgid "animal cracker largemouth bass" msgid_plural "animal cracker largemouth bass" msgstr[0] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -81437,7 +81871,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -86454,7 +86888,7 @@ msgstr[0] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -86498,7 +86932,7 @@ msgstr "" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -87354,7 +87788,7 @@ msgid "RX11 stimulant delivery system" msgid_plural "RX11 stimulant delivery system" msgstr[0] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -87905,17 +88339,17 @@ msgid "shooter's earmuffs" msgid_plural "shooter's earmuffs" msgstr[0] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -87924,7 +88358,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -88132,7 +88566,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -88145,6 +88578,14 @@ msgid "military flight helmet (on)" msgid_plural "military flight helmets (on)" msgstr[0] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -88476,7 +88917,7 @@ msgid "bagpipes" msgid_plural "bagpipes" msgstr[0] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -89062,7 +89503,7 @@ msgid "Megingjörð" msgid_plural "Megingjörð" msgstr[0] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -89132,7 +89573,7 @@ msgid "escape boots" msgid_plural "escape boots" msgstr[0] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -89813,7 +90254,7 @@ msgid "autonomous surgical scalpels" msgid_plural "autonomous surgical scalpels" msgstr[0] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -91486,7 +91927,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -91494,7 +91935,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -91576,7 +92017,7 @@ msgid "dao" msgid_plural "dao" msgstr[0] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -91623,7 +92064,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -91631,7 +92072,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -91662,7 +92103,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -91748,14 +92189,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -91769,7 +92210,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -91918,7 +92359,7 @@ msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -92605,7 +93046,7 @@ msgid "electronic handcuffs" msgid_plural "electronic handcuffs" msgstr[0] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -94785,8 +95226,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -95421,6 +95862,36 @@ msgstr[0] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -96068,7 +96539,7 @@ msgid "shears" msgid_plural "shears" msgstr[0] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -96078,7 +96549,7 @@ msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -96119,6 +96590,30 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -96630,7 +97125,7 @@ msgid "qualitative filter paper" msgid_plural "qualitative filter paper" msgstr[0] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -96643,7 +97138,7 @@ msgid "quantitative filter paper" msgid_plural "quantitative filter paper" msgstr[0] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -97087,39 +97582,39 @@ msgid "Mi-go Biotech" msgid_plural "Mi-go Biotech" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" msgid_plural "%s (happy)" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" msgid_plural "%s (focus)" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" msgid_plural "%s (pain relief)" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" msgid_plural "%s (wake up)" msgstr[0] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -97530,7 +98025,7 @@ msgid "patchwork cotton clothing parts" msgid_plural "patchwork cotton clothing parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -97749,13 +98244,13 @@ msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -97767,13 +98262,13 @@ msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -98205,6 +98700,20 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -98463,13 +98972,27 @@ msgid "pliers" msgid_plural "pliers" msgstr[0] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -98519,6 +99042,31 @@ msgid "" "to have the right tools for more precise work." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -98635,17 +99183,43 @@ msgid "" msgstr "" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" msgstr[0] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -98921,35 +99495,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -98979,6 +99524,11 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -99187,8 +99737,8 @@ msgstr[0] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -99599,7 +100149,7 @@ msgid "377-UASTA (weaponized)" msgid_plural "377-UASTA (weaponized)" msgstr[0] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -100001,7 +100551,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -100048,7 +100598,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -100065,7 +100615,7 @@ msgid "inactive CROWS II, light machinegun" msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -100988,6 +101538,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -101035,6 +101594,30 @@ msgstr[0] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -101915,7 +102498,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -102392,6 +102975,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -103261,15 +103848,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" +msgid "Intradermal Alloy - Arms" msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -103285,37 +103871,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" +msgid "Intradermal Alloy - Legs" msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -103326,8 +103911,8 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -108839,7 +109424,7 @@ msgstr "" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -113475,8 +114060,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "" @@ -113492,9 +114076,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "" @@ -114170,7 +114753,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "" @@ -116445,7 +117028,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "" @@ -116567,6 +117151,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -118974,13 +119572,13 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -119108,15 +119706,15 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -120014,13 +120612,13 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -122105,6 +122703,18 @@ msgid "acid dart gun" msgid_plural "acid dart guns" msgstr[0] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -124444,8 +125054,9 @@ msgstr[0] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -124456,10 +125067,10 @@ msgstr[0] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -124923,17 +125534,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -127261,6 +127876,11 @@ msgid "" "the punishment of combat." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -128096,6 +128716,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "" @@ -128264,6 +128891,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -129376,6 +130007,10 @@ msgstr "" msgid "Move cursor down" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -129576,6 +130211,20 @@ msgstr "" msgid "No" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -130864,12 +131513,12 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -130926,12 +131575,12 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -131484,12 +132133,12 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -134762,6 +135411,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -135184,8 +135843,8 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -135209,7 +135868,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -135223,7 +135883,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -135236,9 +135896,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "" @@ -135398,7 +136087,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -135413,7 +136102,8 @@ msgstr "" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -135443,17 +136133,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -135464,10 +136153,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -135478,9 +136181,10 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -135495,33 +136199,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"\n" +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -135612,6 +136337,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "" @@ -135669,7 +136408,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -135683,8 +136422,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -135698,6 +136438,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -135749,6 +136490,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "" @@ -135834,6 +136588,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "" @@ -135980,6 +136749,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "" @@ -136316,16 +137100,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -136428,7 +137213,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -136535,33 +137320,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -136682,7 +137467,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -136880,6 +137665,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -136940,10 +137740,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -137044,10 +137845,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -137691,7 +138493,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -137701,11 +138518,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -137799,6 +138617,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -137811,21 +138643,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -137903,6 +138736,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -139535,7 +140382,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -139730,7 +140577,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -139935,7 +140782,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -139989,8 +140836,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -140150,7 +140996,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -140164,7 +141010,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -140203,7 +141049,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -140238,7 +141084,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -140269,7 +141115,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -140311,7 +141157,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -140353,16 +141199,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -140409,7 +141289,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -140459,7 +141339,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -140501,7 +141381,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -140550,7 +141430,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -140577,7 +141457,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -140612,7 +141492,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -141478,7 +142358,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -141513,7 +142393,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -141550,7 +142430,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -141585,7 +142465,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -141613,7 +142493,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -141665,7 +142545,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -141696,7 +142576,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -141725,7 +142605,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -141755,7 +142635,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -142024,8 +142904,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -142426,7 +143305,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -142467,7 +143346,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -142494,7 +143373,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -142576,7 +143455,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -142613,7 +143492,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -142657,7 +143536,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -142706,7 +143585,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -142748,7 +143627,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -142789,7 +143668,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -142824,7 +143703,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -142869,7 +143748,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -142880,6 +143759,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -143026,7 +143963,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -143081,7 +144018,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -143120,7 +144057,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -143157,11 +144094,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -143187,15 +144176,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -143252,7 +144237,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -143302,7 +144287,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -143347,7 +144332,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -143388,11 +144373,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -143435,7 +144421,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -143483,7 +144469,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -143527,7 +144513,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -145186,7 +146172,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -145205,7 +146191,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -145232,7 +146218,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -145266,7 +146252,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -145313,7 +146299,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -146089,6 +147075,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -146781,13 +147791,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -147517,6 +148527,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -148425,7 +149457,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -148436,6 +149467,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -148567,7 +149605,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -148811,8 +149849,8 @@ msgstr "" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" #: lang/json/mutation_from_json.py @@ -151789,8 +152827,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -152030,7 +153068,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -152039,7 +153077,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -152048,7 +153086,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -152057,7 +153095,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -152075,7 +153113,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -152084,7 +153122,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -152093,7 +153131,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -152102,7 +153140,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -152120,7 +153158,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -152129,7 +153167,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -152139,7 +153177,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -152149,7 +153187,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -152179,7 +153217,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -152188,7 +153226,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -152197,7 +153235,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -152206,7 +153244,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -152704,7 +153742,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -152823,7 +153861,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -157332,6 +158370,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -157367,6 +158406,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -157925,6 +158972,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -158060,6 +159115,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -158228,6 +159287,10 @@ msgstr "" msgid "Guard" msgstr "" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "" @@ -158396,6 +159459,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -159331,6 +160398,10 @@ msgstr "" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -160020,6 +161091,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -160028,24 +161103,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -160412,6 +161503,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -161868,6 +162963,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -161978,6 +163127,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -162014,7 +163191,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -162027,7 +163204,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -162620,6 +163797,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -162876,6 +164079,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -163002,6 +164259,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -163050,6 +164335,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -163072,6 +164385,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -167626,6 +168991,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -171976,6 +173399,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -176931,6 +178376,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -176975,6 +178942,63 @@ msgstr "" msgid "Farm processing shack" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "" @@ -177030,6 +179054,524 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "" @@ -177234,6 +179776,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -177928,6 +180846,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -178193,60 +181750,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -179081,7 +182947,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -179093,12 +182963,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -179106,11 +182986,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -179273,6 +183163,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -181410,6 +185356,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -181722,7 +185694,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -182460,8 +186432,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -183231,15 +187203,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -188286,6 +192259,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -188294,7 +192533,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -188411,7 +192650,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -192996,7 +197235,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -193055,7 +197294,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -193068,7 +197307,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -193086,17 +197325,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -193175,7 +197414,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -193285,8 +197524,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -193694,7 +197933,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -193704,8 +197943,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -195127,6 +199366,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -197422,7 +201723,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "" @@ -198083,6 +202384,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -198101,6 +202514,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -199268,6 +203696,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -201594,6 +206100,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -201703,6 +206216,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -201726,6 +206257,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -203236,7 +207774,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -203406,19 +207944,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -203491,95 +208029,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" +msgid "\"Wanna play with me?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" +msgid "\"Sing with me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" +msgid "\"Please take me with you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" +msgid "\"May I have a cookie?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -203587,31 +208129,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" +msgid "\"Hey kids. Want some candy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -203627,19 +208169,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -204706,6 +209244,10 @@ msgstr "" msgid "Gun Store" msgstr "" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "" @@ -206139,6 +210681,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -213359,6 +217905,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -214005,6 +219329,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -214074,6 +219402,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -216506,10 +221845,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -220302,10 +225637,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -220634,6 +225965,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -220925,6 +226365,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -221015,6 +226464,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -223786,6 +229287,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -223971,20 +229489,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -224592,20 +230096,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "" @@ -224641,54 +230131,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -224772,20 +230252,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -224904,34 +230370,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -224947,45 +230385,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -225069,17 +230507,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -225121,7 +230559,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -225134,6 +230572,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -225280,20 +230722,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -225398,20 +230826,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -225512,20 +230926,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -225850,41 +231250,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -226085,20 +231481,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -226859,20 +232241,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -226971,20 +232339,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -227027,20 +232381,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -229281,6 +234621,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "" @@ -232670,24 +238022,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -232695,32 +238047,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -232728,35 +238080,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -232764,33 +238111,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -232798,10 +238145,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -232809,10 +238156,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -232820,40 +238167,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -232861,21 +238206,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" +msgid "reinforced triple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" -msgstr "" - -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -232883,44 +238224,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -232928,14 +238260,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -232953,12 +238281,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -232966,21 +238289,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" +msgid "plastic window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Plastic window" -msgstr "" - -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -232988,10 +238307,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -232999,7 +238318,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -233008,10 +238327,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -233020,21 +238339,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -233042,10 +238357,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -233054,10 +238369,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -233065,7 +238380,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -233074,26 +238389,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -233107,11 +238422,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -235614,18 +240925,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "" @@ -235988,6 +241406,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -236465,6 +241934,15 @@ msgstr "" msgid "wooden aisle" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -236598,6 +242076,10 @@ msgstr "" msgid "wood table" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -236666,6 +242148,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -236772,6 +242258,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -237955,8 +243447,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -240647,6 +246139,18 @@ msgstr "" msgid "Coverage:" msgstr "" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "" @@ -240738,8 +246242,9 @@ msgstr "" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -240751,6 +246256,12 @@ msgstr "" msgid "Storage (%s)" msgstr "" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "" @@ -244911,11 +250422,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "" @@ -245226,6 +250732,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -247387,10 +252901,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -247931,6 +253441,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -248357,6 +253875,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -248445,6 +253968,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -249196,7 +254724,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -249218,15 +254746,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -252552,6 +258071,10 @@ msgstr "" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -252836,6 +258359,15 @@ msgstr "" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "" @@ -255141,10 +260673,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "" @@ -255285,6 +260813,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -255644,10 +261180,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -256172,13 +261704,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -259476,6 +265001,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -262461,13 +268001,14 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" +msgid "Set the timer to how many seconds (0 to cancel)?" msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" #: src/iuse.cpp msgid "Tick!" @@ -263204,8 +268745,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -263425,38 +268965,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -264676,87 +270184,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -267568,7 +273019,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -272481,6 +277944,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -273349,21 +278817,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -273627,11 +279080,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -275284,11 +280746,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -276053,6 +281510,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -276060,14 +281526,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -278381,20 +283852,6 @@ msgstr "" msgid "# Unexplored" msgstr "" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -278735,6 +284192,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -278783,6 +284245,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -281174,6 +286640,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -285481,6 +290957,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "Senin" diff --git a/lang/po/is.po b/lang/po/is.po index 7d650d8e9f231..1f3d867d761dc 100644 --- a/lang/po/is.po +++ b/lang/po/is.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Gunnlaugur Lárusson , 2020\n" "Language-Team: Icelandic (https://www.transifex.com/cataclysm-dda-translators/teams/2217/is/)\n" @@ -24,7 +24,7 @@ msgid_plural "battery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -37,7 +37,7 @@ msgid_plural "butane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "" @@ -48,7 +48,7 @@ msgid_plural "aerosol paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -61,7 +61,7 @@ msgid_plural "permanent ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -74,7 +74,7 @@ msgid_plural "candle wax" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "" @@ -85,7 +85,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "" @@ -109,7 +109,7 @@ msgid_plural "oxygen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "" @@ -120,7 +120,7 @@ msgid_plural "aluminum foil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -144,7 +144,7 @@ msgid_plural "thread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "Tvinnastubbur sem myndi duga til að fylla á handsaumasett." @@ -177,7 +177,7 @@ msgid_plural "yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Ullarþráður. Notaður til að prjóna ullarfatnað." @@ -199,7 +199,7 @@ msgid_plural "duct tape" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -260,8 +260,8 @@ msgid_plural "plutonium slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -325,7 +325,7 @@ msgid_plural "bearings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -371,7 +371,7 @@ msgid_plural "120mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -398,7 +398,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -412,7 +412,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -423,7 +423,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -434,7 +434,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -446,7 +446,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -457,7 +457,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -468,7 +468,7 @@ msgid_plural "artillery propellant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -481,7 +481,7 @@ msgid_plural "oxidizer powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "" @@ -492,7 +492,7 @@ msgid_plural "lye powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Vítissódaduft." @@ -582,7 +582,7 @@ msgid_plural "copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -595,7 +595,7 @@ msgid_plural "medical tape" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "" @@ -607,7 +607,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "EF ÞÚ ERT AÐ LESA ÞETTA ÞÁ FÓR EITTHVAÐ ÚRSKEIÐIS!" @@ -618,7 +618,7 @@ msgid_plural "charcoal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -632,7 +632,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -658,7 +658,7 @@ msgid_plural "albuterol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -746,7 +746,7 @@ msgid_plural "nicotine liquid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -759,7 +759,7 @@ msgid_plural "fish bait" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "" @@ -812,7 +812,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -825,7 +825,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -849,7 +849,7 @@ msgid_plural "nitrox" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -860,7 +860,7 @@ msgid_plural "extinguishing agent" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "" @@ -871,7 +871,7 @@ msgid_plural "tinder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -904,7 +904,7 @@ msgid_plural "bronze" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -915,7 +915,7 @@ msgid_plural "glowstick juice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -927,7 +927,7 @@ msgid_plural "graphite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -941,7 +941,7 @@ msgid_plural "black pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -954,7 +954,7 @@ msgid_plural "blue pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -967,7 +967,7 @@ msgid_plural "green pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -980,7 +980,7 @@ msgid_plural "red pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1007,7 +1007,7 @@ msgid_plural "sulfur" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1033,7 +1033,7 @@ msgid_plural "cement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1047,7 +1047,7 @@ msgid_plural "gravel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1058,7 +1058,7 @@ msgid_plural "limestone" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1075,7 +1075,7 @@ msgid_plural "quicklime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1091,7 +1091,7 @@ msgid_plural "sand" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1104,7 +1104,7 @@ msgid_plural "soil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1117,7 +1117,7 @@ msgid_plural "aluminum powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1132,7 +1132,7 @@ msgid_plural "zinc powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1147,7 +1147,7 @@ msgid_plural "zinc oxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1160,7 +1160,7 @@ msgid_plural "manganese dioxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1174,7 +1174,7 @@ msgid_plural "potassium chloride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1189,7 +1189,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1203,7 +1203,7 @@ msgid_plural "acetone" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1217,7 +1217,7 @@ msgid_plural "chromium oxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1233,7 +1233,7 @@ msgid_plural "calcium carbide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1249,7 +1249,7 @@ msgid_plural "hexamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1265,7 +1265,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1280,7 +1280,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1295,7 +1295,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1310,7 +1310,7 @@ msgid_plural "saltpeter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1324,7 +1324,7 @@ msgid_plural "niter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1337,7 +1337,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1354,7 +1354,7 @@ msgid_plural "acetic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1369,7 +1369,7 @@ msgid_plural "formaldehyde" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1384,7 +1384,7 @@ msgid_plural "thermite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1399,7 +1399,7 @@ msgid_plural "ANFO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1414,7 +1414,7 @@ msgid_plural "black gunpowder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1429,7 +1429,7 @@ msgid_plural "match head powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1443,7 +1443,7 @@ msgid_plural "RDX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1457,7 +1457,7 @@ msgid_plural "composition b" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1471,7 +1471,7 @@ msgid_plural "HMTD" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1485,7 +1485,7 @@ msgid_plural "APEX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1499,7 +1499,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1512,7 +1512,7 @@ msgid_plural "detergent" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "" @@ -1523,7 +1523,7 @@ msgid_plural "soap flakes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1584,7 +1584,7 @@ msgid_plural "concentrated venom" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1599,7 +1599,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1614,7 +1614,7 @@ msgid_plural "rocuronium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1628,7 +1628,7 @@ msgid_plural "red phosphorous" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1641,7 +1641,7 @@ msgid_plural "iodine crystal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1654,7 +1654,7 @@ msgid_plural "ethanol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1682,7 +1682,7 @@ msgid_plural "methanol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1696,7 +1696,7 @@ msgid_plural "diesel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1708,7 +1708,7 @@ msgid_plural "JP8 fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1721,7 +1721,7 @@ msgid_plural "avgas fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -1732,7 +1732,7 @@ msgid_plural "biodiesel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1746,7 +1746,7 @@ msgid_plural "gasoline" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1759,7 +1759,7 @@ msgid_plural "lamp oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "" @@ -1770,7 +1770,7 @@ msgid_plural "motor oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "" @@ -1781,7 +1781,7 @@ msgid_plural "napalm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -1795,7 +1795,7 @@ msgid_plural "gelled gasoline" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -1809,7 +1809,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -1848,7 +1848,7 @@ msgid_plural "shrapnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "" @@ -1904,7 +1904,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -1930,7 +1930,7 @@ msgid_plural "H&K 12mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -1970,7 +1970,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -1996,7 +1996,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2038,7 +2038,7 @@ msgid_plural "20x66mm frag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2052,7 +2052,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2066,7 +2066,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2094,7 +2094,7 @@ msgid_plural ".22 CB" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2108,7 +2108,7 @@ msgid_plural ".22 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2122,7 +2122,7 @@ msgid_plural ".22 LR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2136,7 +2136,7 @@ msgid_plural ".22 rat-shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2174,7 +2174,7 @@ msgid_plural ".223 Remington" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2191,7 +2191,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2207,7 +2207,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2224,7 +2224,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2242,7 +2242,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2260,7 +2260,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2309,7 +2309,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2357,7 +2357,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2371,7 +2371,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2385,7 +2385,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2399,7 +2399,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2501,7 +2501,7 @@ msgid_plural ".308 Winchester" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2515,7 +2515,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2529,7 +2529,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2578,7 +2578,7 @@ msgid_plural ".32 ACP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2603,7 +2603,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2617,7 +2617,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2655,7 +2655,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2668,7 +2668,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -2719,7 +2719,7 @@ msgid_plural ".38 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -2745,7 +2745,7 @@ msgid_plural ".38 Super" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -2788,7 +2788,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -2803,7 +2803,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -2818,7 +2818,7 @@ msgid_plural ".380 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -2863,7 +2863,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -2883,7 +2883,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -2897,7 +2897,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -2941,7 +2941,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -2955,7 +2955,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -2969,7 +2969,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -2983,7 +2983,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -2997,8 +2997,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3012,8 +3012,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3056,8 +3056,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3071,8 +3071,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3130,7 +3130,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3143,7 +3143,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3173,7 +3173,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3187,8 +3187,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3211,8 +3211,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3243,7 +3243,7 @@ msgid_plural ".410 000 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3260,7 +3260,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3324,7 +3324,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3337,7 +3337,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3351,7 +3351,7 @@ msgid_plural ".45 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3395,7 +3395,7 @@ msgid_plural ".454 Casull" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3423,7 +3423,7 @@ msgid_plural ".45-70 SP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3451,7 +3451,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3465,7 +3465,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3494,7 +3494,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3509,7 +3509,7 @@ msgid_plural ".45-70, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3524,7 +3524,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3551,7 +3551,7 @@ msgid_plural "4.6x30mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3565,8 +3565,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3587,7 +3587,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3600,7 +3600,7 @@ msgid_plural ".460 Rowland" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -3628,7 +3628,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -3647,7 +3647,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3661,7 +3661,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -3677,7 +3677,7 @@ msgid_plural ".50 BMG Match" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -3690,7 +3690,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -3703,7 +3703,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -3722,7 +3722,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3736,7 +3736,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -3752,7 +3752,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -3809,7 +3809,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -3824,7 +3824,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -3837,7 +3837,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -3851,7 +3851,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -3876,7 +3876,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3893,8 +3893,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3973,7 +3973,7 @@ msgid_plural "66mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -3986,7 +3986,7 @@ msgid_plural ".700 NX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4013,7 +4013,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4028,7 +4028,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4043,7 +4043,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4076,7 +4076,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4104,7 +4104,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4131,7 +4131,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4198,7 +4198,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4211,7 +4211,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4224,7 +4224,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4238,7 +4238,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4252,7 +4252,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4267,7 +4267,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4282,7 +4282,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4296,7 +4296,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4311,7 +4311,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4324,7 +4324,7 @@ msgid_plural "9x19mm +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4337,7 +4337,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4386,7 +4386,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4400,7 +4400,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4414,7 +4414,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4439,7 +4439,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4453,7 +4453,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4467,7 +4467,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4481,7 +4481,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -4507,7 +4507,7 @@ msgid_plural "cannon round shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -4520,7 +4520,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -4536,7 +4536,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -4549,7 +4549,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -4660,7 +4660,7 @@ msgid_plural "paintball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -4776,7 +4776,7 @@ msgid_plural "00 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -4790,7 +4790,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -4801,7 +4801,7 @@ msgid_plural "birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -4856,8 +4856,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5008,7 +5008,7 @@ msgid_plural "oxyacetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5021,7 +5021,7 @@ msgid_plural "fungal seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "" @@ -5842,7 +5842,7 @@ msgid_plural "red paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "" @@ -5853,7 +5853,7 @@ msgid_plural "blue paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "" @@ -5864,7 +5864,7 @@ msgid_plural "white paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "" @@ -5875,7 +5875,7 @@ msgid_plural "green paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "" @@ -5886,7 +5886,7 @@ msgid_plural "purple paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "" @@ -5897,7 +5897,7 @@ msgid_plural "yellow paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "" @@ -5965,7 +5965,7 @@ msgid_plural "bismuth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -5976,8 +5976,8 @@ msgid_plural "gold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -5996,7 +5996,7 @@ msgid_plural "zinc" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6011,7 +6011,7 @@ msgid_plural "lead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6024,7 +6024,7 @@ msgid_plural "magnesium powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6037,7 +6037,7 @@ msgid_plural "silver" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -6098,7 +6098,7 @@ msgid_plural "tin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -6111,7 +6111,7 @@ msgid_plural "solder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -6147,7 +6147,7 @@ msgid_plural "fuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -6200,7 +6200,7 @@ msgid_plural "cotton scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -6214,7 +6214,7 @@ msgid_plural "faux fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -6227,7 +6227,7 @@ msgid_plural "felt scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -6241,7 +6241,7 @@ msgid_plural "fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -6254,7 +6254,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -6269,7 +6269,7 @@ msgid_plural "leather scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -6282,7 +6282,7 @@ msgid_plural "Lycra scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -6295,7 +6295,7 @@ msgid_plural "neoprene scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -6308,7 +6308,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -6321,7 +6321,7 @@ msgid_plural "Nomex scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -6347,7 +6347,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -6372,7 +6372,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -6397,7 +6397,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -6437,7 +6437,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -6464,7 +6464,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -6492,7 +6492,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -6517,7 +6517,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -6611,7 +6611,7 @@ msgid_plural "titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -6639,7 +6639,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -6654,7 +6654,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -6669,7 +6669,7 @@ msgid_plural "25mm canister shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -6685,7 +6685,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -6700,7 +6700,7 @@ msgid_plural "7.50mm RP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -6717,7 +6717,7 @@ msgid_plural "electric charge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -6730,7 +6730,7 @@ msgid_plural "foamcrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -6746,7 +6746,7 @@ msgid_plural "solid hydrogen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -6759,7 +6759,7 @@ msgid_plural "lead pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -6773,7 +6773,7 @@ msgid_plural "domed HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -6787,7 +6787,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -6800,7 +6800,7 @@ msgid_plural "alloy pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -6945,7 +6945,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6960,7 +6960,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6999,7 +6999,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -7015,7 +7015,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -7055,7 +7055,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7071,7 +7071,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7111,7 +7111,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7127,7 +7127,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7167,7 +7167,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -7179,7 +7179,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -7192,7 +7192,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7208,7 +7208,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7235,7 +7235,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -7248,7 +7248,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -7262,7 +7262,7 @@ msgid_plural "rocket, smoke" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -7288,7 +7288,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -7301,7 +7301,7 @@ msgid_plural "shotshell, slug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -7315,7 +7315,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -7365,7 +7365,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -7416,7 +7416,7 @@ msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -7469,7 +7469,7 @@ msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -7497,7 +7497,7 @@ msgid_plural "parabolan yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -7508,7 +7508,7 @@ msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -7546,7 +7546,7 @@ msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -7563,7 +7563,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -8056,7 +8056,7 @@ msgstr[1] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -8072,7 +8072,7 @@ msgstr "" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -8108,7 +8108,7 @@ msgid_plural "chest rig" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -8987,38 +8987,19 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" +msgid "tool belt" +msgid_plural "tool belts" msgstr[0] "" msgstr[1] "" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "" -msgstr[1] "" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -9170,25 +9151,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -9206,45 +9168,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -9256,26 +9179,6 @@ msgstr[1] "" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -9294,26 +9197,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -9384,20 +9267,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -9429,39 +9298,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -10352,25 +10188,6 @@ msgid_plural "XL leather dusters" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -10419,7 +10236,7 @@ msgid_plural "army jacket" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -10592,7 +10409,7 @@ msgid_plural "kimono" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -10753,19 +10570,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -10818,19 +10622,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -10848,7 +10639,7 @@ msgid_plural "thawb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -10900,19 +10691,6 @@ msgstr[1] "" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -11157,19 +10935,6 @@ msgstr[1] "" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -11541,25 +11306,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -11577,50 +11323,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -11684,63 +11386,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -11781,19 +11426,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -11915,37 +11547,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -12688,7 +12289,7 @@ msgid_plural "kabuto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -12798,32 +12399,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -12877,32 +12452,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -13102,36 +12651,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -13181,77 +12700,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -13263,56 +12711,6 @@ msgstr[1] "" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -13721,9 +13119,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -13734,9 +13132,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -13747,9 +13145,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -13760,9 +13158,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -13773,9 +13171,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -13786,9 +13184,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -13799,9 +13197,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -13812,9 +13210,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -13825,9 +13223,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -13838,9 +13236,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -13851,9 +13249,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -13864,9 +13262,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -13877,9 +13275,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -13890,9 +13288,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -17470,7 +16868,7 @@ msgid_plural "turnout trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -17510,7 +16908,7 @@ msgid_plural "leather chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -17523,7 +16921,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -17538,7 +16936,7 @@ msgid_plural "fencing pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -17711,32 +17109,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -17748,39 +17120,13 @@ msgstr[1] "" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -17793,7 +17139,7 @@ msgid_plural "light EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -17820,7 +17166,7 @@ msgid_plural "basketball shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "Léttar og þægilegar stuttbuxur ætlaðar til körfuboltaiðkunar." @@ -17831,7 +17177,7 @@ msgid_plural "breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -17855,7 +17201,7 @@ msgid_plural "hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "" @@ -17866,7 +17212,7 @@ msgid_plural "fur hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "" @@ -17877,7 +17223,7 @@ msgid_plural "leather hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "" @@ -17888,7 +17234,7 @@ msgid_plural "jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "" @@ -17921,7 +17267,7 @@ msgid_plural "red jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -17950,7 +17296,7 @@ msgid_plural "leggings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -18026,7 +17372,7 @@ msgid_plural "pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "" @@ -18037,15 +17383,15 @@ msgid_plural "army pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -18078,7 +17424,7 @@ msgid_plural "cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -18089,7 +17435,7 @@ msgid_plural "checkered pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -18100,7 +17446,7 @@ msgid_plural "fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "" @@ -18111,7 +17457,7 @@ msgid_plural "faux fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -18122,7 +17468,7 @@ msgid_plural "leather pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -18135,7 +17481,7 @@ msgid_plural "ski pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "" @@ -18146,7 +17492,7 @@ msgid_plural "police breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -18159,7 +17505,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -18170,7 +17516,7 @@ msgid_plural "shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "" @@ -18181,7 +17527,7 @@ msgid_plural "cargo shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -18192,7 +17538,7 @@ msgid_plural "denim shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -18253,7 +17599,7 @@ msgid_plural "striped pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -18284,7 +17630,7 @@ msgid_plural "army winter pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -19424,58 +18770,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -19910,33 +19204,6 @@ msgid_plural "XL plate armors" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -19982,8 +19249,8 @@ msgstr[1] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -19997,19 +19264,6 @@ msgstr[1] "" msgid "An ornamental suit of Japanese samurai armor." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -20144,69 +19398,41 @@ msgstr[0] "" msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for survivor firesuit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" @@ -20225,40 +19451,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -20322,19 +19514,6 @@ msgid "" "experience." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -20344,8 +19523,8 @@ msgstr[1] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" #: lang/json/ARMOR_from_json.py @@ -20361,42 +19540,6 @@ msgid "" "Light and very comfortable." msgstr "" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -20468,45 +19611,6 @@ msgstr[1] "" msgid "A neoprene hood, commonly worn by divers." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -20614,7 +19718,7 @@ msgid_plural "lorica segmentata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -20783,7 +19887,7 @@ msgid_plural "tire leather armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -20843,25 +19947,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -21129,7 +20214,7 @@ msgid_plural "leotard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -21215,7 +20300,7 @@ msgid_plural "French maid clothes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -21515,7 +20600,7 @@ msgid_plural "boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -21526,7 +20611,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -21537,7 +20622,7 @@ msgid_plural "boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -21549,7 +20634,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -21562,7 +20647,7 @@ msgid_plural "boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21574,7 +20659,7 @@ msgid_plural "XL boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21599,7 +20684,7 @@ msgid_plural "briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "" @@ -21756,7 +20841,7 @@ msgid_plural "panties" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -21820,7 +20905,7 @@ msgid_plural "tights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -21845,7 +20930,7 @@ msgid_plural "compression shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -21879,6 +20964,942 @@ msgid "" "unitard provides overall coverage with great flexibility." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -21999,7 +22020,7 @@ msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -22012,7 +22033,7 @@ msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -22172,7 +22193,7 @@ msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -22183,7 +22204,7 @@ msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -22196,7 +22217,7 @@ msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -22458,7 +22479,7 @@ msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -22608,19 +22629,6 @@ msgid "" " ridiculously heavy." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -22748,7 +22756,7 @@ msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -22761,7 +22769,7 @@ msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -22804,6 +22812,12 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -22952,7 +22966,7 @@ msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -23439,7 +23453,7 @@ msgid_plural "freerunner's boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -23511,7 +23525,7 @@ msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -23526,7 +23540,7 @@ msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23555,7 +23569,7 @@ msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23613,7 +23627,7 @@ msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -23671,7 +23685,7 @@ msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -23682,7 +23696,7 @@ msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -23780,7 +23794,7 @@ msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -23791,7 +23805,7 @@ msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -23876,16 +23890,18 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -23903,42 +23919,35 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -24664,7 +24673,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -25095,7 +25104,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -25304,7 +25313,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -26608,7 +26617,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -26851,7 +26860,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -26889,7 +26898,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -26904,7 +26913,7 @@ msgid_plural "schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -26912,9 +26921,9 @@ msgstr[1] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -26930,7 +26939,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -26945,7 +26954,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -26960,7 +26969,7 @@ msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -26974,7 +26983,7 @@ msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -26988,7 +26997,7 @@ msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -27002,7 +27011,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -27016,7 +27025,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -27030,7 +27039,7 @@ msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -27044,7 +27053,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -27058,7 +27067,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -27072,7 +27081,7 @@ msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27087,7 +27096,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27102,7 +27111,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -27116,7 +27125,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -27714,7 +27723,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "" @@ -27725,7 +27734,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -27737,7 +27746,7 @@ msgid_plural "Capoeira 100" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "" @@ -27748,7 +27757,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "" @@ -27759,7 +27768,7 @@ msgid_plural "The Red Crane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "" @@ -27770,7 +27779,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "" @@ -27781,7 +27790,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "" @@ -27792,7 +27801,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "" @@ -27803,7 +27812,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "" @@ -27814,7 +27823,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "" @@ -27825,7 +27834,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "" @@ -27836,7 +27845,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "" @@ -27847,7 +27856,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "" @@ -27858,7 +27867,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "" @@ -27869,7 +27878,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "" @@ -27880,7 +27889,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -27893,7 +27902,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "" @@ -27904,7 +27913,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "" @@ -27915,7 +27924,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "" @@ -27926,7 +27935,7 @@ msgid_plural "The Black Snake" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "" @@ -27937,7 +27946,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -27948,7 +27957,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" @@ -27959,7 +27968,7 @@ msgid_plural "The White Tiger" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "" @@ -27970,7 +27979,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "" @@ -27981,7 +27990,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "" @@ -27992,7 +28001,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "" @@ -28003,7 +28012,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "" @@ -28014,7 +28023,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -28026,7 +28035,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -28040,7 +28049,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -28196,7 +28205,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -29068,7 +29077,7 @@ msgid_plural "patient treatment records" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -29079,7 +29088,7 @@ msgid_plural "national weather transcripts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -32511,7 +32520,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32526,7 +32535,7 @@ msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32541,7 +32550,7 @@ msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32556,7 +32565,7 @@ msgid_plural "tank drone schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32571,7 +32580,7 @@ msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -32801,7 +32810,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -32812,7 +32821,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -32823,7 +32832,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -32836,7 +32845,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -32847,7 +32856,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -32860,7 +32869,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -32874,7 +32883,7 @@ msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -32885,7 +32894,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -32898,7 +32907,7 @@ msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -32909,7 +32918,7 @@ msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -32936,6 +32945,21 @@ msgstr[1] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -35016,7 +35040,7 @@ msgid_plural "bird litter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -35072,14 +35096,14 @@ msgid_plural "bleach" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -35092,7 +35116,7 @@ msgid_plural "ammonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -35105,7 +35129,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -35116,7 +35140,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -35127,7 +35151,7 @@ msgid_plural "fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -35140,7 +35164,7 @@ msgid_plural "insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -35153,7 +35177,7 @@ msgid_plural "salt water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "" @@ -35164,7 +35188,7 @@ msgid_plural "soapy water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -35186,7 +35210,7 @@ msgid_plural "sulfuric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -35201,7 +35225,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -35215,7 +35239,7 @@ msgid_plural "nitric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -35246,7 +35270,7 @@ msgid_plural "sewage water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -35257,7 +35281,7 @@ msgid_plural "lye" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -35270,7 +35294,7 @@ msgid_plural "ether" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -35285,7 +35309,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -35300,7 +35324,7 @@ msgid_plural "chloroform" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -35314,7 +35338,7 @@ msgid_plural "phenol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -35330,7 +35354,7 @@ msgid_plural "glycerol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -35343,7 +35367,7 @@ msgid_plural "peptone broth powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -35357,7 +35381,7 @@ msgid_plural "agar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -35372,7 +35396,7 @@ msgid_plural "acrylamide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -35385,7 +35409,7 @@ msgid_plural "acetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -35398,7 +35422,7 @@ msgid_plural "formic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -35411,7 +35435,7 @@ msgid_plural "latex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -35422,7 +35446,7 @@ msgid_plural "citric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -35499,13 +35523,24 @@ msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -35544,7 +35579,7 @@ msgid_plural "marloss wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -35555,7 +35590,7 @@ msgid_plural "Riesling" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" @@ -35566,7 +35601,7 @@ msgid_plural "Chardonnay" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "" @@ -35577,7 +35612,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -35590,7 +35625,7 @@ msgid_plural "pinot noir" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -35603,7 +35638,7 @@ msgid_plural "marsala" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -35614,7 +35649,7 @@ msgid_plural "vermouth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -35627,7 +35662,7 @@ msgid_plural "barley wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -35638,7 +35673,7 @@ msgid_plural "whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -35650,7 +35685,7 @@ msgid_plural "vodka" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -35663,7 +35698,7 @@ msgid_plural "gin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -35676,7 +35711,7 @@ msgid_plural "rum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -35689,7 +35724,7 @@ msgid_plural "tequila" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -35702,7 +35737,7 @@ msgid_plural "triple sec" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -35713,7 +35748,7 @@ msgid_plural "cheap wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "" @@ -35724,7 +35759,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -35735,7 +35770,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -35746,7 +35781,7 @@ msgid_plural "fruit wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -35758,7 +35793,7 @@ msgid_plural "brandy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -35771,7 +35806,7 @@ msgid_plural "Irish coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -35784,7 +35819,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -35811,7 +35846,7 @@ msgid_plural "wild apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "" @@ -35822,7 +35857,7 @@ msgid_plural "rum & cola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -35833,7 +35868,7 @@ msgid_plural "beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -35846,7 +35881,7 @@ msgid_plural "spiced mead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -35858,7 +35893,7 @@ msgid_plural "dandelion wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -35871,7 +35906,7 @@ msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -35882,7 +35917,7 @@ msgid_plural "pine wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -35895,7 +35930,7 @@ msgid_plural "homebrew beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -35906,7 +35941,7 @@ msgid_plural "moonshine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -35920,7 +35955,7 @@ msgid_plural "European pilsner" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -35933,7 +35968,7 @@ msgid_plural "American pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -35946,7 +35981,7 @@ msgid_plural "India pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -35959,7 +35994,7 @@ msgid_plural "stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -35970,7 +36005,7 @@ msgid_plural "Belgian ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -35983,7 +36018,7 @@ msgid_plural "imperial stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -36024,7 +36059,7 @@ msgid_plural "single malt whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "" @@ -36035,7 +36070,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -36046,7 +36081,7 @@ msgid_plural "cheap whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -36057,7 +36092,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -36068,7 +36103,7 @@ msgid_plural "sherry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -36080,7 +36115,7 @@ msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -36093,7 +36128,7 @@ msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -36104,7 +36139,7 @@ msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "" @@ -36115,7 +36150,7 @@ msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -36128,7 +36163,7 @@ msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -36219,7 +36254,7 @@ msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -36230,7 +36265,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -36241,7 +36276,7 @@ msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -36254,7 +36289,7 @@ msgid_plural "sourdough bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -36267,7 +36302,7 @@ msgid_plural "flatbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "" @@ -36278,7 +36313,7 @@ msgid_plural "bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "" @@ -36289,7 +36324,7 @@ msgid_plural "toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -36302,7 +36337,7 @@ msgid_plural "buttered toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -36313,7 +36348,7 @@ msgid_plural "jam toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -36326,7 +36361,7 @@ msgid_plural "peanut butter toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -36338,7 +36373,7 @@ msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -36349,7 +36384,7 @@ msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -36362,7 +36397,7 @@ msgid_plural "cornbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "" @@ -36395,7 +36430,7 @@ msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -36419,7 +36454,7 @@ msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -36433,7 +36468,7 @@ msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -36444,7 +36479,7 @@ msgid_plural "hallula" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -36707,18 +36742,18 @@ msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -36729,8 +36764,8 @@ msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -36743,14 +36778,14 @@ msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -36761,7 +36796,7 @@ msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -36789,7 +36824,7 @@ msgid_plural "cooked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "" @@ -36890,7 +36925,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -36993,7 +37028,7 @@ msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -37032,7 +37067,7 @@ msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -37079,7 +37114,7 @@ msgid_plural "butchery refuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -37164,7 +37199,7 @@ msgid_plural "cooked offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -37178,7 +37213,7 @@ msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -37189,7 +37224,7 @@ msgid_plural "pickled offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -37203,7 +37238,7 @@ msgid_plural "canned offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -37238,31 +37273,28 @@ msgid_plural "meat jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -37274,7 +37306,7 @@ msgid_plural "salted fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -37286,33 +37318,27 @@ msgid_plural "smoked meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -37333,7 +37359,7 @@ msgid_plural "smoked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -37386,7 +37412,7 @@ msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -37437,7 +37463,7 @@ msgid_plural "raw brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -37448,7 +37474,7 @@ msgid_plural "cooked brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -37527,7 +37553,7 @@ msgstr[1] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -37679,7 +37705,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -37920,7 +37946,7 @@ msgid_plural "alien fronds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -38025,7 +38051,7 @@ msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -38036,7 +38062,7 @@ msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -38074,13 +38100,38 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -38094,7 +38145,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -38107,7 +38158,7 @@ msgid_plural "cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -38118,7 +38169,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -38130,7 +38181,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -38143,7 +38194,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -38156,7 +38207,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -38169,7 +38220,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -38182,7 +38233,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -38208,7 +38259,7 @@ msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -38232,7 +38283,7 @@ msgid_plural "wheat cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -38256,7 +38307,7 @@ msgid_plural "milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -38267,7 +38318,7 @@ msgid_plural "chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -38278,7 +38329,7 @@ msgid_plural "reconstituted milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -38291,7 +38342,7 @@ msgid_plural "raw milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -38306,7 +38357,7 @@ msgid_plural "shelf stable milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -38320,7 +38371,7 @@ msgid_plural "evaporated milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -38332,7 +38383,7 @@ msgid_plural "buttermilk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -38356,7 +38407,7 @@ msgid_plural "butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -38368,7 +38419,7 @@ msgid_plural "raw butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -38380,7 +38431,7 @@ msgid_plural "ghee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -38417,7 +38468,7 @@ msgid_plural "hard cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -38430,7 +38481,7 @@ msgid_plural "cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "" @@ -38452,7 +38503,7 @@ msgid_plural "powdered milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -38463,7 +38514,7 @@ msgid_plural "condensed milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -38476,7 +38527,7 @@ msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -38489,7 +38540,7 @@ msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -38500,7 +38551,7 @@ msgid_plural "apple cider" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "" @@ -38537,7 +38588,7 @@ msgid_plural "atomic coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -38551,7 +38602,7 @@ msgid_plural "bee balm tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -38575,7 +38626,7 @@ msgid_plural "chai tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" @@ -38586,7 +38637,7 @@ msgid_plural "chamomile tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -38612,7 +38663,7 @@ msgid_plural "coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -38626,7 +38677,7 @@ msgid_plural "coffee substitute" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -38640,7 +38691,7 @@ msgid_plural "chicory brew" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -38710,7 +38761,7 @@ msgid_plural "dandelion tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -38721,7 +38772,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -38776,7 +38827,7 @@ msgid_plural "herbal tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -38787,7 +38838,7 @@ msgid_plural "hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -38835,7 +38886,7 @@ msgid_plural "lemonade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -38861,7 +38912,7 @@ msgid_plural "lotus tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -38872,7 +38923,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -38933,7 +38984,7 @@ msgid_plural "pine needle tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -38971,7 +39022,7 @@ msgid_plural "root beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -39008,13 +39059,13 @@ msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -39040,7 +39091,7 @@ msgid_plural "sweet water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "" @@ -39064,7 +39115,7 @@ msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -39101,7 +39152,7 @@ msgid_plural "water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -39114,7 +39165,7 @@ msgid_plural "clean water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -39125,7 +39176,7 @@ msgid_plural "mineral water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -39254,7 +39305,7 @@ msgid_plural "maple sap" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -39265,7 +39316,7 @@ msgid_plural "mayonnaise" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -39290,7 +39341,7 @@ msgid_plural "mustard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -39303,7 +39354,7 @@ msgid_plural "forest honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -39316,7 +39367,7 @@ msgid_plural "vinegar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -39329,7 +39380,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "" @@ -39340,7 +39391,7 @@ msgid_plural "animal cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -39351,7 +39402,7 @@ msgid_plural "molasses" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -39364,7 +39415,7 @@ msgid_plural "horseradish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "" @@ -39375,7 +39426,7 @@ msgid_plural "coffee syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -39717,7 +39768,7 @@ msgid_plural "scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "" @@ -39739,7 +39790,7 @@ msgid_plural "fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -39752,7 +39803,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -39765,7 +39816,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -39778,7 +39829,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -39970,7 +40021,7 @@ msgid_plural "frozen yogurt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -40040,7 +40091,7 @@ msgid_plural "peaches in syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -40062,7 +40113,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -40097,7 +40148,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -40111,7 +40162,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -40136,7 +40187,7 @@ msgid_plural "canned fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -40149,7 +40200,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -40173,7 +40224,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -40563,7 +40614,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -40615,7 +40666,7 @@ msgid_plural "irradiated corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -40667,7 +40718,7 @@ msgid_plural "irradiated celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -40680,7 +40731,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -40788,12 +40839,12 @@ msgid_plural "potato chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -40804,7 +40855,7 @@ msgid_plural "popcorn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -40817,7 +40868,7 @@ msgid_plural "popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -40830,7 +40881,7 @@ msgid_plural "salted popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "" @@ -40841,7 +40892,7 @@ msgid_plural "buttered popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -40852,7 +40903,7 @@ msgid_plural "pretzels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "" @@ -40885,7 +40936,7 @@ msgid_plural "marshmallows" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -40896,7 +40947,7 @@ msgid_plural "s'mores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -40931,7 +40982,7 @@ msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -40942,12 +40993,12 @@ msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -40995,7 +41046,7 @@ msgid_plural "powder candy sticks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -41069,7 +41120,7 @@ msgid_plural "maple syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -41082,7 +41133,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -41132,7 +41183,7 @@ msgid_plural "fast-food French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -41143,7 +41194,7 @@ msgid_plural "French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -41165,7 +41216,7 @@ msgid_plural "Necco wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -41191,8 +41242,8 @@ msgid_plural "caramel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "" @@ -41203,7 +41254,7 @@ msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "" @@ -41214,7 +41265,7 @@ msgid_plural "tortilla chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -41227,7 +41278,7 @@ msgid_plural "cheese nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -41240,31 +41291,28 @@ msgid_plural "meat nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -41277,31 +41325,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -41314,7 +41362,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -41327,7 +41375,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -41401,7 +41449,7 @@ msgid_plural "chili dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" @@ -41412,7 +41460,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -41488,7 +41536,7 @@ msgid_plural "cheese fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "" @@ -41576,8 +41624,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -41720,32 +41767,26 @@ msgid_plural "raw sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -41764,15 +41805,14 @@ msgid_plural "smoked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -41791,15 +41831,14 @@ msgid_plural "cooked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -41829,23 +41868,21 @@ msgid_plural "bratwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -41866,7 +41903,7 @@ msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -41917,7 +41954,7 @@ msgid_plural "cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -41930,8 +41967,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -41939,7 +41975,7 @@ msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -41953,7 +41989,7 @@ msgid_plural "currywursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -41961,8 +41997,7 @@ msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -41970,8 +42005,7 @@ msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -41992,9 +42026,8 @@ msgid_plural "aspics" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -42002,9 +42035,8 @@ msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -42012,9 +42044,8 @@ msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -42036,7 +42067,7 @@ msgid_plural "dehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -42049,7 +42080,7 @@ msgid_plural "rehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -42062,7 +42093,7 @@ msgid_plural "pickled fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -42074,7 +42105,7 @@ msgid_plural "canned fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -42087,7 +42118,7 @@ msgid_plural "batter fried fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -42120,8 +42151,7 @@ msgid_plural "lunch meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -42142,7 +42172,7 @@ msgid_plural "bologna" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -42150,8 +42180,7 @@ msgid_plural "brat %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -42159,8 +42188,7 @@ msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -42168,7 +42196,7 @@ msgid_plural "bleak %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -42196,7 +42224,7 @@ msgid_plural "SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -42234,24 +42262,22 @@ msgid_plural "sausage gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -42272,7 +42298,7 @@ msgid_plural "pemmican" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -42280,8 +42306,7 @@ msgid_plural "prepper %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -42289,8 +42314,7 @@ msgid_plural "Orley %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -42298,7 +42322,7 @@ msgid_plural "pernicious %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -42312,15 +42336,14 @@ msgid_plural "hamburger helpers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -42328,8 +42351,7 @@ msgid_plural "halfling helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -42361,24 +42383,22 @@ msgid_plural "chilis con carne" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -42396,7 +42416,7 @@ msgid_plural "pork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -42409,7 +42429,7 @@ msgid_plural "canned tuna fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "" @@ -42420,7 +42440,7 @@ msgid_plural "canned salmon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "" @@ -42442,7 +42462,7 @@ msgid_plural "pickled herring" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -42464,16 +42484,14 @@ msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -42493,15 +42511,14 @@ msgid_plural "baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" @@ -42512,15 +42529,14 @@ msgid_plural "meat fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" @@ -42531,15 +42547,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -42552,22 +42568,21 @@ msgid_plural "meat pies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -42586,23 +42601,21 @@ msgid_plural "meat pizzas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -42634,31 +42647,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -42671,15 +42683,14 @@ msgid_plural "canned meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -42699,15 +42710,14 @@ msgid_plural "salted meat slices" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -42726,15 +42736,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -42742,8 +42751,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -42751,7 +42759,7 @@ msgid_plural "gnarly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -42762,7 +42770,7 @@ msgid_plural "lasagnes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -42770,8 +42778,7 @@ msgid_plural "Luigi %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -42779,7 +42786,7 @@ msgid_plural "Lab %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -42800,7 +42807,7 @@ msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" @@ -42811,8 +42818,7 @@ msgid_plural "cheeseburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -42820,7 +42826,7 @@ msgid_plural "chump %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -42829,8 +42835,7 @@ msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -42864,23 +42869,21 @@ msgid_plural "hamburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -42899,23 +42902,21 @@ msgid_plural "sloppy joes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -42936,7 +42937,7 @@ msgid_plural "tacos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -42944,8 +42945,7 @@ msgid_plural "tio %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -42953,7 +42953,7 @@ msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -42974,15 +42974,14 @@ msgid_plural "pickled meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -43002,10 +43001,8 @@ msgid_plural "dehydrated meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -43013,12 +43010,11 @@ msgid_plural "%s, human" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -43052,9 +43048,8 @@ msgid_plural "haggises" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -43077,7 +43072,7 @@ msgid_plural "fish makizushi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -43090,8 +43085,7 @@ msgid_plural "meat temaki" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -43099,7 +43093,7 @@ msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -43112,7 +43106,7 @@ msgid_plural "sashimi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -43136,7 +43130,7 @@ msgid_plural "pelmenis" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -43157,8 +43151,7 @@ msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -43179,15 +43172,14 @@ msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -43206,15 +43198,14 @@ msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -43251,12 +43242,12 @@ msgid_plural "prescription stimulant" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -43303,7 +43294,7 @@ msgid_plural "antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -43330,7 +43321,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -43408,7 +43399,7 @@ msgid_plural "antiseptic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -43467,7 +43458,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -43519,12 +43510,12 @@ msgid_plural "codeine" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -43538,7 +43529,7 @@ msgid_plural "cocaine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -43580,7 +43571,7 @@ msgid_plural "cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -43596,12 +43587,12 @@ msgid_plural "crack" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -43614,7 +43605,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -43628,7 +43619,7 @@ msgid_plural "antiseptic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -43651,7 +43642,7 @@ msgid_plural "prescription sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -43664,12 +43655,12 @@ msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43686,12 +43677,12 @@ msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43707,12 +43698,12 @@ msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -43726,16 +43717,14 @@ msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -43749,7 +43738,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43763,7 +43752,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43777,7 +43766,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43791,7 +43780,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43805,7 +43794,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43820,7 +43809,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43835,7 +43824,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -43849,7 +43838,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -43863,12 +43852,12 @@ msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43948,7 +43937,7 @@ msgid_plural "chewing gum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -43973,13 +43962,13 @@ msgid_plural "heroin" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -44055,7 +44044,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44069,7 +44058,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44122,7 +44111,7 @@ msgid_plural "cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -44153,7 +44142,7 @@ msgid_plural "sleeping pill" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -44198,7 +44187,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -44209,15 +44198,14 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -44232,7 +44220,7 @@ msgid_plural "antidepressant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -44264,7 +44252,7 @@ msgid_plural "hemostatic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -44290,7 +44278,7 @@ msgid_plural "antipsychotic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -44541,12 +44529,12 @@ msgid_plural "marijuana" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -44560,7 +44548,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -44587,7 +44575,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -44600,7 +44588,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -44667,7 +44655,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -44682,7 +44670,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -45162,7 +45150,7 @@ msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -45412,9 +45400,8 @@ msgstr[1] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -45481,7 +45468,7 @@ msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -45600,7 +45587,8 @@ msgstr[1] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -45742,7 +45730,7 @@ msgid_plural "pine nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -45753,7 +45741,7 @@ msgid_plural "junipers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -45766,7 +45754,7 @@ msgid_plural "shelled pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -45778,7 +45766,7 @@ msgid_plural "roasted pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -45789,7 +45777,7 @@ msgid_plural "shelled almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -45800,7 +45788,7 @@ msgid_plural "almond pulp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -45812,7 +45800,7 @@ msgid_plural "roasted almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -45823,7 +45811,7 @@ msgid_plural "cashews" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "" @@ -45834,7 +45822,7 @@ msgid_plural "shelled pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -45847,7 +45835,7 @@ msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -45858,7 +45846,7 @@ msgid_plural "shelled peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -45869,7 +45857,7 @@ msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -45880,7 +45868,7 @@ msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -45893,7 +45881,7 @@ msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -45904,7 +45892,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -45917,7 +45905,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -45928,7 +45916,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -45941,7 +45929,7 @@ msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -45952,7 +45940,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -45963,7 +45951,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -45974,7 +45962,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -45987,7 +45975,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -46044,7 +46032,7 @@ msgid_plural "acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -46057,7 +46045,7 @@ msgid_plural "roasted acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -46068,7 +46056,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -46081,7 +46069,7 @@ msgid_plural "foie gras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -46093,7 +46081,7 @@ msgid_plural "liver & onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "" @@ -46148,7 +46136,7 @@ msgid_plural "leverpostej" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -46361,7 +46349,7 @@ msgid_plural "marloss gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -46389,7 +46377,7 @@ msgid_plural "yeast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -46401,7 +46389,7 @@ msgid_plural "bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -46412,7 +46400,7 @@ msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -46424,7 +46412,7 @@ msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -46435,7 +46423,7 @@ msgid_plural "tainted bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -46446,7 +46434,7 @@ msgid_plural "chitin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -46493,7 +46481,7 @@ msgid_plural "dried beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -46506,7 +46494,7 @@ msgid_plural "cooked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "" @@ -46517,8 +46505,8 @@ msgid_plural "tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -46537,7 +46525,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -46548,7 +46536,7 @@ msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -46574,7 +46562,7 @@ msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -46586,7 +46574,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -46600,7 +46588,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -46611,7 +46599,7 @@ msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -46622,7 +46610,7 @@ msgid_plural "coffee powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -46635,7 +46623,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -46648,7 +46636,7 @@ msgid_plural "candied honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -46687,7 +46675,7 @@ msgid_plural "cattle fodder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -46700,7 +46688,7 @@ msgid_plural "bird food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -46713,7 +46701,7 @@ msgid_plural "wet dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -46726,7 +46714,7 @@ msgid_plural "dry dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -46739,7 +46727,7 @@ msgid_plural "wet cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -46752,7 +46740,7 @@ msgid_plural "dry cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -46879,7 +46867,7 @@ msgid_plural "instant coffee mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -46918,15 +46906,14 @@ msgid_plural "protein drinks" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -46934,14 +46921,11 @@ msgid_plural "sapient green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -46962,15 +46946,14 @@ msgid_plural "protein powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -46978,7 +46961,7 @@ msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -47007,15 +46990,14 @@ msgid_plural "protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -47036,7 +47018,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -47044,7 +47026,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -47111,7 +47093,7 @@ msgid_plural "blueberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -47122,7 +47104,7 @@ msgid_plural "strawberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" @@ -47133,7 +47115,7 @@ msgid_plural "cranberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "" @@ -47144,7 +47126,7 @@ msgid_plural "raspberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "" @@ -47155,7 +47137,7 @@ msgid_plural "huckleberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -47166,7 +47148,7 @@ msgid_plural "mulberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -47179,7 +47161,7 @@ msgid_plural "elderberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -47190,7 +47172,7 @@ msgid_plural "rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "" @@ -47236,7 +47218,7 @@ msgid_plural "cherries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "" @@ -47259,7 +47241,7 @@ msgid_plural "grapes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -47325,7 +47307,7 @@ msgid_plural "blackberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "" @@ -47381,7 +47363,7 @@ msgid_plural "apricots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "" @@ -47422,7 +47404,7 @@ msgid_plural "bee balm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -47434,7 +47416,7 @@ msgid_plural "broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "" @@ -47445,7 +47427,7 @@ msgid_plural "buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -47469,7 +47451,7 @@ msgid_plural "spinach" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -47518,7 +47500,7 @@ msgid_plural "celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -47542,7 +47524,7 @@ msgid_plural "corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "" @@ -47553,7 +47535,7 @@ msgid_plural "empty corn cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -47614,7 +47596,7 @@ msgid_plural "salsify" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -47628,7 +47610,7 @@ msgid_plural "chicory" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -47751,7 +47733,7 @@ msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -47788,7 +47770,7 @@ msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -47801,7 +47783,7 @@ msgid_plural "dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -47814,7 +47796,7 @@ msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -47912,7 +47894,7 @@ msgid_plural "wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -47947,7 +47929,7 @@ msgid_plural "raw beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -47960,7 +47942,7 @@ msgid_plural "raw lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -47971,7 +47953,7 @@ msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -48008,8 +47990,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -48023,6 +48004,27 @@ msgid "" "nutritious!" msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -48084,7 +48086,7 @@ msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -48132,26 +48134,23 @@ msgid_plural "meat sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -48267,7 +48266,7 @@ msgid_plural "mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -48278,7 +48277,7 @@ msgid_plural "hop rhizomes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "" @@ -48293,7 +48292,7 @@ msgid_plural "blackberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "" @@ -48308,7 +48307,7 @@ msgid_plural "blueberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "" @@ -48323,7 +48322,7 @@ msgid_plural "cranberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "" @@ -48338,7 +48337,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -48353,7 +48352,7 @@ msgid_plural "mulberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -48368,7 +48367,7 @@ msgid_plural "elderberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -48383,7 +48382,7 @@ msgid_plural "raspberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "" @@ -48398,7 +48397,7 @@ msgid_plural "strawberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "" @@ -48413,7 +48412,7 @@ msgid_plural "grape seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -48428,7 +48427,7 @@ msgid_plural "rose seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -48443,7 +48442,7 @@ msgid_plural "tobacco seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -48458,7 +48457,7 @@ msgid_plural "barley seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "" @@ -48469,7 +48468,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "" @@ -48480,7 +48479,7 @@ msgid_plural "lettuce seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "" @@ -48491,7 +48490,7 @@ msgid_plural "cabbage seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "" @@ -48502,7 +48501,7 @@ msgid_plural "tomato seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "" @@ -48513,7 +48512,7 @@ msgid_plural "cotton seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -48528,7 +48527,7 @@ msgid_plural "broccoli seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "" @@ -48539,7 +48538,7 @@ msgid_plural "zucchini seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "" @@ -48550,7 +48549,7 @@ msgid_plural "onion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "" @@ -48561,7 +48560,7 @@ msgid_plural "garlic seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "" @@ -48576,7 +48575,7 @@ msgid_plural "cattail seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -48591,7 +48590,7 @@ msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -48606,7 +48605,7 @@ msgid_plural "salsify seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -48617,7 +48616,7 @@ msgid_plural "chicory seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -48628,7 +48627,7 @@ msgid_plural "wild root seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -48639,7 +48638,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -48656,7 +48655,7 @@ msgid_plural "cactus seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -48682,7 +48681,7 @@ msgid_plural "carrot seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "" @@ -48693,7 +48692,7 @@ msgid_plural "corn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "" @@ -48708,7 +48707,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "" @@ -48719,7 +48718,7 @@ msgid_plural "cucumber seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "" @@ -48745,7 +48744,7 @@ msgid_plural "cannabis seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -48776,7 +48775,7 @@ msgid_plural "bean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -48791,7 +48790,7 @@ msgid_plural "soybean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -48800,7 +48799,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -48815,7 +48814,7 @@ msgid_plural "thyme seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -48832,7 +48831,7 @@ msgid_plural "canola seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -48843,7 +48842,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -48854,7 +48853,7 @@ msgid_plural "sunflower seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -48872,7 +48871,7 @@ msgid_plural "dogbane seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -48883,7 +48882,7 @@ msgid_plural "bee balm seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -48894,7 +48893,7 @@ msgid_plural "mugwort seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -48905,7 +48904,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -48916,7 +48915,7 @@ msgid_plural "wild herb seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -48931,7 +48930,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -48946,7 +48945,7 @@ msgid_plural "dandelion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -48961,7 +48960,7 @@ msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -48976,7 +48975,7 @@ msgid_plural "rhubarb stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -48987,7 +48986,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -48998,7 +48997,7 @@ msgid_plural "datura seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -49016,7 +49015,7 @@ msgid_plural "celery seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "" @@ -49027,7 +49026,7 @@ msgid_plural "oat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "" @@ -49044,7 +49043,7 @@ msgid_plural "wheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "" @@ -49061,7 +49060,7 @@ msgid_plural "fried seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -49087,7 +49086,7 @@ msgid_plural "coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "" @@ -49098,7 +49097,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -49109,7 +49108,7 @@ msgid_plural "chamomile seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -49124,7 +49123,7 @@ msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -49139,7 +49138,7 @@ msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -49150,7 +49149,7 @@ msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -49161,7 +49160,7 @@ msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -49172,7 +49171,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -49194,8 +49193,7 @@ msgid_plural "bone broths" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -49225,15 +49223,14 @@ msgid_plural "meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -49273,8 +49270,7 @@ msgid_plural "curries with meat" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -49292,10 +49288,8 @@ msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -49357,7 +49351,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" @@ -49381,7 +49375,7 @@ msgid_plural "chili powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -49394,7 +49388,7 @@ msgid_plural "hot sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -49407,7 +49401,7 @@ msgid_plural "cinnamon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -49418,7 +49412,7 @@ msgid_plural "curry powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -49431,7 +49425,7 @@ msgid_plural "black pepper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "" @@ -49442,7 +49436,7 @@ msgid_plural "salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -49455,7 +49449,7 @@ msgid_plural "Italian seasoning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -49466,7 +49460,7 @@ msgid_plural "seasoned salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -49477,7 +49471,7 @@ msgid_plural "sugar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -49490,7 +49484,7 @@ msgid_plural "sprinkles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -49505,7 +49499,7 @@ msgid_plural "wild herbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -49518,7 +49512,7 @@ msgid_plural "soy sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "" @@ -49534,7 +49528,7 @@ msgid_plural "mustard powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -49584,7 +49578,7 @@ msgid_plural "starch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -49597,7 +49591,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" @@ -49608,7 +49602,7 @@ msgid_plural "fried dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -49620,7 +49614,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -49631,7 +49625,7 @@ msgid_plural "fried burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -49668,7 +49662,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -49691,7 +49685,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -49703,7 +49697,7 @@ msgid_plural "canned corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "" @@ -49714,7 +49708,7 @@ msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -49725,7 +49719,7 @@ msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -49736,7 +49730,7 @@ msgid_plural "hominy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -49749,7 +49743,7 @@ msgid_plural "cornmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "" @@ -49760,7 +49754,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" @@ -49771,7 +49765,7 @@ msgid_plural "dried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -49784,7 +49778,7 @@ msgid_plural "cooked rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "" @@ -49795,7 +49789,7 @@ msgid_plural "fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "" @@ -49806,7 +49800,7 @@ msgid_plural "beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -49819,7 +49813,7 @@ msgid_plural "tofu fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -49830,7 +49824,7 @@ msgid_plural "tofu stirfry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -49843,7 +49837,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -49914,7 +49908,7 @@ msgid_plural "pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -49951,7 +49945,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "" @@ -49974,7 +49968,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -50013,7 +50007,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -50037,7 +50031,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -50113,7 +50107,7 @@ msgid_plural "sushi rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -50124,7 +50118,7 @@ msgid_plural "onigiri" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -50137,7 +50131,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -50163,7 +50157,7 @@ msgid_plural "sauerkraut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -50187,7 +50181,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -50198,7 +50192,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -50216,7 +50210,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "" @@ -50227,7 +50221,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -50240,7 +50234,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -50253,7 +50247,7 @@ msgid_plural "boiled noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "" @@ -50264,7 +50258,7 @@ msgid_plural "raw macaroni" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -50275,7 +50269,7 @@ msgid_plural "mac & cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -50286,7 +50280,7 @@ msgid_plural "flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "" @@ -50297,7 +50291,7 @@ msgid_plural "bread flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -50310,14 +50304,14 @@ msgid_plural "oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "" @@ -50328,7 +50322,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -50341,7 +50335,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -50427,7 +50421,7 @@ msgid_plural "oyster crackers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -50462,7 +50456,7 @@ msgid_plural "granola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -50486,7 +50480,7 @@ msgid_plural "fast noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -50680,7 +50674,7 @@ msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -50691,7 +50685,7 @@ msgid_plural "melon seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -50702,7 +50696,7 @@ msgid_plural "banana saplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -50713,7 +50707,7 @@ msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -50724,7 +50718,7 @@ msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -50735,7 +50729,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -50784,7 +50778,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -50830,7 +50824,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -50843,7 +50837,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -50884,7 +50878,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -50994,7 +50988,7 @@ msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -51008,7 +51002,7 @@ msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -51098,7 +51092,7 @@ msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -51112,7 +51106,7 @@ msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -51126,7 +51120,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -51138,7 +51132,7 @@ msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -51151,7 +51145,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -51206,7 +51200,7 @@ msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -51222,7 +51216,7 @@ msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -51236,7 +51230,7 @@ msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -51250,7 +51244,7 @@ msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -51311,7 +51305,7 @@ msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -51325,7 +51319,7 @@ msgid_plural "food cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -51337,7 +51331,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -51361,7 +51355,7 @@ msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -51387,7 +51381,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -51401,7 +51395,7 @@ msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -51417,7 +51411,7 @@ msgid_plural "caffex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -51458,7 +51452,7 @@ msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -51520,7 +51514,7 @@ msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -51541,7 +51535,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -51824,8 +51818,8 @@ msgstr[0] "" msgstr[1] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" @@ -51835,6 +51829,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -51877,6 +51883,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -51997,6 +52009,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -52033,24 +52051,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "" msgstr[1] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -52349,7 +52349,7 @@ msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -52415,7 +52415,7 @@ msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -52475,14 +52475,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -52565,7 +52565,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -52574,7 +52574,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -52586,7 +52586,7 @@ msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -52597,7 +52597,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -52610,7 +52610,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -52629,7 +52629,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -52643,7 +52643,7 @@ msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -53236,7 +53236,7 @@ msgid_plural "rock salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -53247,7 +53247,7 @@ msgid_plural "rhodonite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -53260,7 +53260,7 @@ msgid_plural "zincite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -53297,7 +53297,7 @@ msgid_plural "hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -53308,7 +53308,7 @@ msgid_plural "pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -53319,7 +53319,7 @@ msgid_plural "pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -53330,7 +53330,7 @@ msgid_plural "almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -53341,7 +53341,7 @@ msgid_plural "peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -53352,7 +53352,7 @@ msgid_plural "hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -53363,7 +53363,7 @@ msgid_plural "chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -53374,7 +53374,7 @@ msgid_plural "walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -53660,6 +53660,18 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -53671,6 +53683,19 @@ msgstr[1] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -54443,7 +54468,7 @@ msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -54454,7 +54479,7 @@ msgid_plural "smoldering embers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -54659,6 +54684,29 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -54861,7 +54909,7 @@ msgid_plural "superglue" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" @@ -55151,7 +55199,7 @@ msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -55293,7 +55341,7 @@ msgid_plural "concrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "" @@ -56135,7 +56183,7 @@ msgid_plural "clockworks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -56266,7 +56314,7 @@ msgid_plural "chamomile flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -56292,7 +56340,7 @@ msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -56327,7 +56375,7 @@ msgid_plural "mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "" @@ -56374,7 +56422,7 @@ msgid_plural "adobe mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -56387,7 +56435,7 @@ msgid_plural "tanbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -56409,7 +56457,7 @@ msgid_plural "willowbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -56836,7 +56884,7 @@ msgid_plural "raw tobacco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -57143,7 +57191,7 @@ msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -57166,7 +57214,7 @@ msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -57539,6 +57587,98 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -58231,7 +58371,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -58368,7 +58508,7 @@ msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58381,7 +58521,7 @@ msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58411,7 +58551,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58427,7 +58567,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58443,7 +58583,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58459,7 +58599,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58475,7 +58615,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58491,7 +58631,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58507,7 +58647,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58523,7 +58663,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58539,7 +58679,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58555,7 +58695,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58571,7 +58711,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58587,7 +58727,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58603,7 +58743,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58619,7 +58759,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58635,7 +58775,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58651,8 +58791,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58668,7 +58807,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58684,7 +58823,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58700,7 +58839,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58716,7 +58855,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58732,7 +58871,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58748,8 +58887,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58771,7 +58909,7 @@ msgid_plural "misc software" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -58782,7 +58920,7 @@ msgid_plural "hackPRO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "" @@ -58793,7 +58931,7 @@ msgid_plural "MediSoft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "" @@ -58804,7 +58942,7 @@ msgid_plural "MatheMAX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "" @@ -58815,7 +58953,7 @@ msgid_plural "infection data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "" @@ -58826,7 +58964,7 @@ msgid_plural "lab data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -58837,7 +58975,7 @@ msgid_plural "train data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -58848,7 +58986,7 @@ msgid_plural "neural data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -59138,22 +59276,34 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -59161,7 +59311,7 @@ msgid_plural "skinned %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -59400,7 +59550,7 @@ msgid_plural "trifacet remains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -59736,6 +59886,100 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -61455,7 +61699,7 @@ msgid_plural "headphones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -61535,7 +61779,7 @@ msgid_plural "spare parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -62133,7 +62377,7 @@ msgid_plural "bokken" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -62141,14 +62385,14 @@ msgid "" "edge, it's still quite capable of inflicting deadly wounds." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -62694,7 +62938,7 @@ msgid_plural "bionic claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -62915,7 +63159,7 @@ msgid_plural "qiang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -62960,7 +63204,7 @@ msgid_plural "naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -62968,7 +63212,7 @@ msgid "" "or by their wives in defense of the household." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -62976,7 +63220,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -62990,7 +63234,7 @@ msgid_plural "survivor naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -63121,7 +63365,7 @@ msgid_plural "ji" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -63181,6 +63425,20 @@ msgid "" "offers a good bit of slashing power." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -63188,7 +63446,7 @@ msgid_plural "jian" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -63272,14 +63530,14 @@ msgid_plural "tanto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -63293,14 +63551,14 @@ msgid_plural "nodachi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -63438,7 +63696,7 @@ msgid_plural "katana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -63506,7 +63764,7 @@ msgid_plural "wakizashi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -63571,7 +63829,7 @@ msgid_plural "tiger claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -63802,13 +64060,27 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -63824,7 +64096,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -63868,7 +64140,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -64158,7 +64430,7 @@ msgid_plural "scrap copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -64420,7 +64692,7 @@ msgid_plural "splintered wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -64637,17 +64909,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -65841,7 +66113,7 @@ msgid_plural "oars" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -65863,7 +66135,7 @@ msgid_plural "inflatable section" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -65874,7 +66146,7 @@ msgid_plural "inflatable airbag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -66730,7 +67002,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -66744,7 +67016,7 @@ msgid_plural "sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "" @@ -66755,7 +67027,7 @@ msgid_plural "wired sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -66777,7 +67049,7 @@ msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "" @@ -66788,7 +67060,7 @@ msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -66811,7 +67083,7 @@ msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -67035,12 +67307,19 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -67169,6 +67448,17 @@ msgstr[1] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -67604,7 +67894,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -67663,7 +67953,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -67955,7 +68245,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -67968,7 +68258,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -68090,7 +68380,7 @@ msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -68101,7 +68391,7 @@ msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -68292,7 +68582,7 @@ msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68305,7 +68595,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68318,7 +68608,7 @@ msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68331,7 +68621,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68344,7 +68634,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68357,7 +68647,7 @@ msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -68370,7 +68660,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68383,7 +68673,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68396,7 +68686,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68409,7 +68699,7 @@ msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68422,7 +68712,7 @@ msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68435,7 +68725,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -68544,7 +68834,7 @@ msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -68570,7 +68860,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -68583,7 +68873,7 @@ msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -68609,7 +68899,7 @@ msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -68642,7 +68932,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -68989,7 +69279,7 @@ msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -69703,7 +69993,7 @@ msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -71154,7 +71444,7 @@ msgid_plural "subzero talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -71368,7 +71658,7 @@ msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -71489,7 +71779,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71502,7 +71792,7 @@ msgid_plural "Beagle chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72305,6 +72595,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -72449,8 +72750,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -72789,6 +73090,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -73189,7 +73495,7 @@ msgid_plural "tiny fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -73200,7 +73506,7 @@ msgid_plural "small fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -73211,7 +73517,7 @@ msgid_plural "medium fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -73222,7 +73528,7 @@ msgid_plural "large fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -73233,7 +73539,7 @@ msgid_plural "huge fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -73369,7 +73675,7 @@ msgid_plural "whitefish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -73382,7 +73688,7 @@ msgid_plural "largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -73393,7 +73699,7 @@ msgid_plural "smallmouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -73406,7 +73712,7 @@ msgid_plural "striped bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -73419,7 +73725,7 @@ msgid_plural "white bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -73456,7 +73762,7 @@ msgid_plural "sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73467,7 +73773,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73490,7 +73796,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73501,7 +73807,7 @@ msgid_plural "green sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73512,7 +73818,7 @@ msgid_plural "longear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73523,7 +73829,7 @@ msgid_plural "redear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73534,7 +73840,7 @@ msgid_plural "rock bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -73547,7 +73853,7 @@ msgid_plural "calico bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -73582,7 +73888,7 @@ msgid_plural "channel catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -73593,7 +73899,7 @@ msgid_plural "white catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -73690,7 +73996,7 @@ msgid_plural "fallfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -73717,7 +74023,7 @@ msgid_plural "crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -73748,7 +74054,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -73761,7 +74067,7 @@ msgid_plural "giant crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -73774,7 +74080,7 @@ msgid_plural "colossal crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -74427,7 +74733,7 @@ msgid_plural "fused dragonflies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -74614,7 +74920,7 @@ msgstr[1] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -76258,7 +76564,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -76453,7 +76759,7 @@ msgid_plural "moose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -76612,7 +76918,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -76900,10 +77206,11 @@ msgstr[1] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -76914,6 +77221,17 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -79138,7 +79456,7 @@ msgid_plural "sawbones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -79153,7 +79471,7 @@ msgid_plural "doctor burns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -79331,7 +79649,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -79450,17 +79768,18 @@ msgstr[1] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -79894,7 +80213,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -79938,7 +80257,7 @@ msgid_plural "scissorlimbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -79952,7 +80271,7 @@ msgid_plural "hanging innards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -80433,7 +80752,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -82298,7 +82617,7 @@ msgid_plural "wisp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -82842,7 +83161,7 @@ msgid_plural "coelophysis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -82855,7 +83174,7 @@ msgid_plural "dilophosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -82868,7 +83187,7 @@ msgid_plural "ceratosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -82882,7 +83201,7 @@ msgid_plural "spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -82896,7 +83215,7 @@ msgid_plural "allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -82909,7 +83228,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -82923,20 +83242,33 @@ msgid_plural "siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -82949,7 +83281,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -82962,7 +83294,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -82975,7 +83307,7 @@ msgid_plural "compsognathus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -82988,7 +83320,7 @@ msgid_plural "gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -83014,7 +83346,7 @@ msgid_plural "nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -83027,7 +83359,7 @@ msgid_plural "deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -83066,7 +83398,7 @@ msgid_plural "amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -83079,7 +83411,7 @@ msgid_plural "apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -83092,7 +83424,7 @@ msgid_plural "brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -83105,7 +83437,7 @@ msgid_plural "diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -83116,7 +83448,7 @@ msgid_plural "camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -83129,7 +83461,7 @@ msgid_plural "brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -83142,7 +83474,7 @@ msgid_plural "alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -83155,7 +83487,7 @@ msgid_plural "scutellosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -83168,7 +83500,7 @@ msgid_plural "stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -83180,7 +83512,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83193,7 +83525,7 @@ msgid_plural "ankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83206,7 +83538,7 @@ msgid_plural "nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -83218,7 +83550,7 @@ msgid_plural "edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -83231,7 +83563,7 @@ msgid_plural "camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -83244,7 +83576,7 @@ msgid_plural "parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -83255,7 +83587,7 @@ msgid_plural "maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -83268,7 +83600,7 @@ msgid_plural "corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -83281,7 +83613,7 @@ msgid_plural "edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -83292,7 +83624,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -83305,7 +83637,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -83318,7 +83650,7 @@ msgid_plural "pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -83331,7 +83663,7 @@ msgid_plural "kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -83345,7 +83677,7 @@ msgid_plural "torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -83358,7 +83690,7 @@ msgid_plural "triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -83371,7 +83703,7 @@ msgid_plural "dimorphodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -83384,7 +83716,7 @@ msgid_plural "pteranodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -83397,7 +83729,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -83410,7 +83742,7 @@ msgid_plural "mosasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -83423,7 +83755,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -83436,7 +83768,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -83449,7 +83781,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -83462,7 +83794,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -83475,7 +83807,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -83488,7 +83820,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -83501,7 +83833,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -83604,6 +83936,20 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -84117,20 +84463,20 @@ msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" @@ -84190,7 +84536,6 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -84211,25 +84556,88 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" +#. ~ Description for juvenile allosaurus #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -84452,6 +84860,19 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -84562,7 +84983,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -85022,6 +85443,7 @@ msgstr[1] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -85071,6 +85493,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "" msgstr[1] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -85475,6 +85903,19 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -85507,7 +85948,7 @@ msgid_plural "Rage Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -85520,7 +85961,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -85534,7 +85975,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -85592,7 +86033,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -85655,7 +86096,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -85899,12 +86340,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" msgstr[1] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85913,66 +86367,67 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85980,12 +86435,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85994,12 +86449,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -86008,16 +86463,16 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -86047,7 +86502,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -86060,7 +86515,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86073,7 +86529,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -86086,20 +86542,26 @@ msgid_plural "skeletal siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86112,7 +86574,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -86138,7 +86600,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -86150,7 +86612,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86163,8 +86625,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86183,7 +86645,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -86197,7 +86659,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -86210,7 +86672,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -86223,7 +86685,7 @@ msgid_plural "armored diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -86236,7 +86698,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -86249,7 +86711,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -86262,7 +86724,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -86275,7 +86737,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -86288,7 +86750,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -86302,7 +86764,7 @@ msgid_plural "Bone Fortress" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -86316,7 +86778,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86329,7 +86791,7 @@ msgid_plural "armored edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86342,7 +86804,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -86355,7 +86817,7 @@ msgid_plural "armored maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -86368,7 +86830,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -86381,7 +86843,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -86394,7 +86856,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -86407,7 +86869,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -86420,7 +86882,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -86433,7 +86895,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -86446,7 +86908,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -86459,7 +86921,7 @@ msgid_plural "armored torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -86472,7 +86934,7 @@ msgid_plural "armored triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -86485,7 +86947,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -86499,7 +86961,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -86513,7 +86975,7 @@ msgid_plural "Goliath Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -86526,7 +86988,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -86539,7 +87001,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -86580,7 +87042,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -86596,7 +87058,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -86909,7 +87371,7 @@ msgid_plural "forge hounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -87215,7 +87677,7 @@ msgid_plural "hunllef rams" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -87348,6 +87810,22 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -87625,7 +88103,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -87907,7 +88385,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -92979,7 +93457,7 @@ msgstr[1] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -93023,7 +93501,7 @@ msgstr "" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -93931,7 +94409,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -94519,17 +94997,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -94538,7 +95016,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -94761,7 +95239,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -94775,6 +95252,14 @@ msgid_plural "military flight helmets (on)" msgstr[0] "" msgstr[1] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -95125,7 +95610,7 @@ msgid_plural "bagpipes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -95752,7 +96237,7 @@ msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -95827,7 +96312,7 @@ msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -96569,7 +97054,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -98354,7 +98839,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -98362,7 +98847,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -98447,7 +98932,7 @@ msgid_plural "dao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -98497,7 +98982,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -98505,7 +98990,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -98537,7 +99022,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -98628,14 +99113,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -98653,7 +99138,7 @@ msgstr "" "Þetta er þýskt, risastórt, tvíhent sverð. Þú ert ekki alveg viss um að það " "eigi að vera svona beygjanlegt." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -98813,7 +99298,7 @@ msgid_plural "synthetic fabric" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -99555,7 +100040,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -101872,8 +102357,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -102557,6 +103042,39 @@ msgstr[1] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -103253,7 +103771,7 @@ msgid_plural "shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -103264,7 +103782,7 @@ msgid_plural "electric shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -103308,6 +103826,32 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -103853,7 +104397,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -103867,7 +104411,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -104344,8 +104888,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -104353,8 +104897,8 @@ msgid_plural "%s (happy)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -104362,8 +104906,8 @@ msgid_plural "%s (focus)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -104371,8 +104915,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -104380,7 +104924,7 @@ msgid_plural "%s (wake up)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -104821,7 +105365,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -105052,13 +105596,13 @@ msgid_plural "loose caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -105071,13 +105615,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -105541,6 +106085,21 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -105821,13 +106380,28 @@ msgid_plural "pliers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -105881,6 +106455,33 @@ msgid "" "to have the right tools for more precise work." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -106006,18 +106607,46 @@ msgid "" msgstr "" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" msgstr[0] "" msgstr[1] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -106314,36 +106943,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -106374,6 +106973,12 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -106596,8 +107201,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -107038,7 +107643,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -107460,7 +108065,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -107507,7 +108112,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -107525,7 +108130,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -108530,6 +109135,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -108581,6 +109195,30 @@ msgstr[1] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -109485,7 +110123,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -109962,6 +110600,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -110832,15 +111474,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" +msgid "Intradermal Alloy - Arms" msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -110856,37 +111497,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" +msgid "Intradermal Alloy - Legs" msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -110897,8 +111537,8 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -116413,7 +117053,7 @@ msgstr "" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -121161,8 +121801,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "" @@ -121178,9 +121817,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "small!" @@ -121856,7 +122494,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "" @@ -124131,7 +124769,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "" @@ -124253,6 +124892,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -126771,14 +127424,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -126917,16 +127570,16 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -127897,14 +128550,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -130165,6 +130818,19 @@ msgid_plural "acid dart guns" msgstr[0] "" msgstr[1] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -132680,8 +133346,9 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -132693,10 +133360,10 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -133198,17 +133865,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -135536,6 +136207,11 @@ msgid "" "the punishment of combat." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -136375,6 +137051,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "" @@ -136543,6 +137226,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -137655,6 +138342,10 @@ msgstr "" msgid "Move cursor down" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -137855,6 +138546,20 @@ msgstr "" msgid "No" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -139241,13 +139946,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -139309,13 +140014,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -139924,13 +140629,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -143365,6 +144070,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -143787,8 +144502,8 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -143812,7 +144527,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -143826,7 +144542,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -143839,9 +144555,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "" @@ -144001,7 +144746,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -144016,7 +144761,8 @@ msgstr "" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -144046,17 +144792,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -144067,10 +144812,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144081,9 +144840,10 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -144098,33 +144858,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" +"\n" +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -144215,6 +144996,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "" @@ -144272,7 +145067,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -144286,8 +145081,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144301,6 +145097,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -144352,6 +145149,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "" @@ -144437,6 +145247,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "" @@ -144583,6 +145408,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "" @@ -144919,16 +145759,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -145031,7 +145872,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -145138,33 +145979,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -145285,7 +146126,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -145483,6 +146324,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -145543,10 +146399,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -145647,10 +146504,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -146294,7 +147152,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -146304,11 +147177,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146402,6 +147276,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -146414,21 +147302,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146506,6 +147395,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -148138,7 +149041,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -148333,7 +149236,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -148538,7 +149441,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -148592,8 +149495,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -148753,7 +149655,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -148767,7 +149669,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -148806,7 +149708,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -148841,7 +149743,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -148872,7 +149774,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -148914,7 +149816,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -148956,16 +149858,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -149012,7 +149948,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -149062,7 +149998,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -149104,7 +150040,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -149153,7 +150089,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -149180,7 +150116,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -149215,7 +150151,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -150081,7 +151017,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -150116,7 +151052,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -150153,7 +151089,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -150188,7 +151124,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -150216,7 +151152,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -150268,7 +151204,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -150299,7 +151235,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -150328,7 +151264,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -150358,7 +151294,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -150627,8 +151563,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -151029,7 +151964,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -151070,7 +152005,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -151097,7 +152032,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -151179,7 +152114,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -151216,7 +152151,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -151260,7 +152195,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -151309,7 +152244,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -151351,7 +152286,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -151392,7 +152327,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -151427,7 +152362,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -151472,7 +152407,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -151483,6 +152418,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -151629,7 +152622,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -151684,7 +152677,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -151723,7 +152716,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -151760,11 +152753,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -151790,15 +152835,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -151855,7 +152896,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -151905,7 +152946,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -151950,7 +152991,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -151991,11 +153032,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -152038,7 +153080,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -152086,7 +153128,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -152130,7 +153172,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -153789,7 +154831,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -153808,7 +154850,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -153835,7 +154877,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -153869,7 +154911,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -153916,7 +154958,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -154692,6 +155734,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -155384,13 +156450,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -156120,6 +157186,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -157028,7 +158116,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -157039,6 +158126,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -157170,7 +158264,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -157414,8 +158508,8 @@ msgstr "" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" #: lang/json/mutation_from_json.py @@ -160392,8 +161486,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -160633,7 +161727,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160642,7 +161736,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160651,7 +161745,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160660,7 +161754,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160678,7 +161772,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160687,7 +161781,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160696,7 +161790,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160705,7 +161799,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160723,7 +161817,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160732,7 +161826,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160742,7 +161836,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160752,7 +161846,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160782,7 +161876,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160791,7 +161885,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160800,7 +161894,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160809,7 +161903,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -161318,7 +162412,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -161437,7 +162531,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -165946,6 +167040,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -165981,6 +167076,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -166539,6 +167642,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -166674,6 +167785,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -166842,6 +167957,10 @@ msgstr "" msgid "Guard" msgstr "" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "" @@ -167010,6 +168129,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -167945,6 +169068,10 @@ msgstr "slímgryfja" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -168634,6 +169761,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -168642,24 +169773,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -169026,6 +170173,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -170482,6 +171633,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -170592,6 +171797,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -170628,7 +171861,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -170641,7 +171874,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -171234,6 +172467,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -171490,6 +172749,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -171616,6 +172929,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -171664,6 +173005,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -171686,6 +173055,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -176240,6 +177661,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -180590,6 +182069,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -185545,6 +187046,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -185589,6 +187612,63 @@ msgstr "" msgid "Farm processing shack" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "" @@ -185644,6 +187724,524 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "" @@ -185848,6 +188446,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -186542,6 +189516,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -186807,60 +190420,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -187695,7 +191617,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187707,12 +191633,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187720,11 +191656,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187887,6 +191833,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -190024,6 +194026,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -190336,7 +194364,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -191074,8 +195102,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -191845,15 +195873,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -196900,6 +200929,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -196908,7 +201203,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -197025,7 +201320,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -201610,7 +205905,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -201669,7 +205964,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -201682,7 +205977,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -201700,17 +205995,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -201789,7 +206084,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -201899,8 +206194,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -202308,7 +206603,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -202318,8 +206613,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -203741,6 +208036,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -206037,7 +210394,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "Ég elska þig!" @@ -206698,6 +211055,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -206716,6 +211185,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -207883,6 +212367,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -210209,6 +214771,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -210318,6 +214887,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -210341,6 +214928,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -211851,7 +216445,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -212021,19 +216615,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -212106,95 +216700,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "Viltu leika?" +msgid "\"Wanna play with me?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "Syngdu með mér!" +msgid "\"Sing with me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" -msgstr "Gerðu það, taktu mig með!" +msgid "\"I love you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "Má ég fá köku?" +msgid "\"Please take me with you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "Leikum okkur saman!" +msgid "\"May I have a cookie?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" -msgstr "Leikum!" +msgid "\"Let's play together!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" -msgstr "Nammi namm namm! Ljúffengt!" +msgid "\"Time to play!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" -msgstr "Ert þú mamma mín?" +msgid "\"Om nom nom! Delicious!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" -msgstr "En skemmtilegt!" +msgid "\"Are you my mommy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" -msgstr "Þú ert besti vinur minn!" +msgid "\"Oh, how fun!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" -msgstr "Haahaa!" +msgid "\"You're my best friend!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" -msgstr "Gerum eitthvað skemmtilegt!" +msgid "\"Heehee!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" -msgstr "Höldum teboð!" +msgid "\"Let's have fun!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" -msgstr "Þú ert besta best!" +msgid "\"Let's have a tea party!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." -msgstr "Þessu hefðir þú betur sleppt." +msgid "\"You're the best!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "Ég hata þig." +msgid "\"Let's play… Russian roulette.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" -msgstr "Dreptu þig." +msgid "\"I hate you.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" -msgstr "Nú deyrð þú fyrir mig!" +msgid "\"Big Brother is watching you…\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" -msgstr "Af hverju deyrð þú ekki?" +msgid "\"Die for me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -212202,33 +216800,32 @@ msgid "AAAIEEEEEEE!" msgstr "ÆÆÆÍAAAAAA!" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" -msgstr "DRULLAÐU UPP Í ÞIG!" +msgid "\"FUCK YOU!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" -msgstr "Hvað gerðir þú við Mömmu?" +msgid "\"What did you do with my Mommy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "Hei krakkar. Viljið þið nammi?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" -msgstr "Þau fljóta ÖLL hér niðri." +msgid "\"Down here, they ALL float!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" -msgstr "Þarftu virkilega svona mikið hunang?" +msgid "\"Do you really need that much honey?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" -"Fyrrum eigandi minn öskraði eins og svín þegar ég tæmdi úr henni innyflin." #: lang/json/speech_from_json.py msgid "BARK!" @@ -212243,19 +216840,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -213322,6 +217915,10 @@ msgstr "" msgid "Gun Store" msgstr "" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "" @@ -214755,6 +219352,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -221975,6 +226576,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -222621,6 +228000,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -222690,6 +228073,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -225122,10 +230516,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -228918,10 +234308,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -229250,6 +234636,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -229541,6 +235036,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -229631,6 +235135,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -232402,6 +237958,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -232587,20 +238160,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -233208,20 +238767,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "" @@ -233257,54 +238802,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -233388,20 +238923,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -233520,34 +239041,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -233563,45 +239056,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -233685,17 +239178,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -233737,7 +239230,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -233750,6 +239243,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -233896,20 +239393,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -234014,20 +239497,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -234128,20 +239597,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -234466,41 +239921,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -234701,20 +240152,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -235475,20 +240912,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -235587,20 +241010,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -235643,20 +241052,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -237897,6 +243292,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "" @@ -241286,24 +246693,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -241311,32 +246718,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -241344,35 +246751,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -241380,33 +246782,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -241414,10 +246816,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -241425,10 +246827,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -241436,40 +246838,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -241477,21 +246877,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -241499,44 +246895,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -241544,14 +246931,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -241569,12 +246952,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -241582,21 +246960,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -241604,10 +246978,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -241615,7 +246989,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -241624,10 +246998,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -241636,21 +247010,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -241658,10 +247028,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -241670,10 +247040,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -241681,7 +247051,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -241690,26 +247060,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -241723,11 +247093,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -244230,18 +249596,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "" @@ -244604,6 +250077,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -245081,6 +250605,15 @@ msgstr "" msgid "wooden aisle" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -245214,6 +250747,10 @@ msgstr "" msgid "wood table" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -245282,6 +250819,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -245388,6 +250929,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -246571,8 +252118,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -249285,6 +254832,18 @@ msgstr "" msgid "Coverage:" msgstr "" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "" @@ -249376,8 +254935,9 @@ msgstr "" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -249389,6 +254949,12 @@ msgstr "" msgid "Storage (%s)" msgstr "" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "" @@ -253574,11 +259140,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "" @@ -253889,6 +259450,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -256055,10 +261624,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -256599,6 +262164,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -257025,6 +262598,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -257113,6 +262691,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -257866,7 +263449,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -257888,15 +263471,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -261228,6 +266802,10 @@ msgstr "" msgid "You swap places with %s." msgstr "Þú skiptir um stað við %s." +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -261513,6 +267091,15 @@ msgstr "Þú getur ekki ferðast þangað." msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "Hlutir" @@ -263822,10 +269409,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "" @@ -263966,6 +269549,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -264325,10 +269916,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -264855,13 +270442,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -268166,6 +273746,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -271169,13 +276764,15 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" +msgid "Set the timer to how many seconds (0 to cancel)?" msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -271912,8 +277509,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -272135,38 +277731,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -273391,87 +278955,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -276289,7 +281796,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -281211,6 +286730,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -282080,21 +287604,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -282358,11 +287867,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -284032,11 +289550,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -284801,6 +290314,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -284808,14 +290330,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -287131,20 +292658,6 @@ msgstr "" msgid "# Unexplored" msgstr "" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -287485,6 +292998,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -287533,6 +293051,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -289924,6 +295446,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -294236,6 +299768,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "" diff --git a/lang/po/it_IT.po b/lang/po/it_IT.po index d6098304b9936..780b6a7dc260c 100644 --- a/lang/po/it_IT.po +++ b/lang/po/it_IT.po @@ -8,21 +8,21 @@ # Angela Angy , 2020 # ThePiratePeter, 2021 # Andrea Andrea , 2021 -# Giuseppe D'Orsi , 2021 # Brett Dong , 2021 -# Vlasov Vitaly , 2021 # Andrea Cecere , 2021 # Aba Baba , 2021 -# ProgrammerForFun , 2021 +# Vlasov Vitaly , 2021 +# Giuseppe D'Orsi , 2021 # Filippo Boschi , 2021 +# Giordano Abruzzese , 2021 # msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" -"Last-Translator: Filippo Boschi , 2021\n" +"Last-Translator: Giordano Abruzzese , 2021\n" "Language-Team: Italian (Italy) (https://www.transifex.com/cataclysm-dda-translators/teams/2217/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,7 +36,7 @@ msgid_plural "battery" msgstr[0] "batteria" msgstr[1] "batteria" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -52,7 +52,7 @@ msgid_plural "butane" msgstr[0] "butano" msgstr[1] "butano" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Un comune liquido infiammabile tipicamente usato negli accendini." @@ -63,7 +63,7 @@ msgid_plural "aerosol paint" msgstr[0] "vernice spray" msgstr[1] "vernice spray" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -78,7 +78,7 @@ msgid_plural "permanent ink" msgstr[0] "inchiostro indelebile" msgstr[1] "inchiostro indelebile" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -94,7 +94,7 @@ msgid_plural "candle wax" msgstr[0] "cera per candele" msgstr[1] "cera per candele" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "Una sostanza infiammabile utilizzata per produrre candele." @@ -105,7 +105,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "polvere pirica per flare" msgstr[1] "polvere pirica per flare" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "" @@ -133,7 +133,7 @@ msgid_plural "oxygen" msgstr[0] "ossigeno" msgstr[1] "ossigeno" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Ossigeno compresso per uso medico." @@ -144,7 +144,7 @@ msgid_plural "aluminum foil" msgstr[0] "carta stagnola" msgstr[1] "carta stagnola" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -170,7 +170,7 @@ msgid_plural "thread" msgstr[0] "filo" msgstr[1] "filo" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -209,11 +209,11 @@ msgid_plural "yarn" msgstr[0] "filato" msgstr[1] "filato" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "" -"Filato di lana, può essere usato come filo per creare dei vestiti di lana." +"Filato di lana, può essere usato come filo per cucire dei vestiti di lana." #: lang/json/AMMO_from_json.py msgid "soap bar" @@ -232,7 +232,7 @@ msgid_plural "duct tape" msgstr[0] "nastro adesivo" msgstr[1] "nastro adesivo" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -300,8 +300,8 @@ msgid_plural "plutonium slurry" msgstr[0] "poltiglia di plutonio" msgstr[1] "poltiglia di plutonio" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -371,7 +371,7 @@ msgid_plural "bearings" msgstr[0] "sfere per cuscinetti" msgstr[1] "sfere per cuscinetti" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -423,7 +423,7 @@ msgid_plural "120mm HEAT" msgstr[0] "120mm HEAT" msgstr[1] "120mm HEAT" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -452,7 +452,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "polvere da sparo infume mischiata" msgstr[1] "polvere da sparo infume mischiata" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -460,8 +460,9 @@ msgid "" " Only the truly desperate would attempt to reload with this." msgstr "" "Polvere da sparo per armi da fuoco, preparata senza curare troppo la " -"miscela, la capacità d'innesco e di detonazione. L'equlibrio fra i suoi " -"composti è appena sufficiente. Da usare solo in casi disperati." +"miscela, la capacità d'innesco e la detonazione. È stata pestata in un " +"mortaio per rendere le sue proprietà più uniformi. Da usare solo in casi " +"disperati." #: lang/json/AMMO_from_json.py msgid "smokeless shotgun powder" @@ -469,7 +470,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "polvere infume per fucili a pompa" msgstr[1] "polvere infume per fucili a pompa" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -482,7 +483,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "polvere infume per pistole" msgstr[1] "polvere infume per pistole" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -495,7 +496,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "polvere infume per munizioni magnum" msgstr[1] "polvere infume per munizioni magnum" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -509,7 +510,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "polvere infume per fucili" msgstr[1] "polvere infume per fucili" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -521,7 +522,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "polvere infume per munizioni di grosso calibro" msgstr[1] "polvere infume per munizioni di grosso calibro" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -534,7 +535,7 @@ msgid_plural "artillery propellant" msgstr[0] "propellente per artiglieria" msgstr[1] "propellente per artiglieria" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -549,7 +550,7 @@ msgid_plural "oxidizer powder" msgstr[0] "polvere ossidante" msgstr[1] "polvere ossidante" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Ossidante volatile alimentato da reagenti chimici." @@ -560,7 +561,7 @@ msgid_plural "lye powder" msgstr[0] "soda caustica in polvere" msgstr[1] "soda caustica in polvere" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Soda caustica polverizzata." @@ -579,7 +580,7 @@ msgstr "L'innesco di un pallettone per fucile a pompa" #: lang/json/AMMO_from_json.py msgid "small pistol primer" msgid_plural "small pistol primers" -msgstr[0] "innescho per pistole" +msgstr[0] "innesco per pistole" msgstr[1] "inneschi per pistole" #. ~ Description for small pistol primer @@ -652,7 +653,7 @@ msgid_plural "copper" msgstr[0] "rame" msgstr[1] "rame" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -667,7 +668,7 @@ msgid_plural "medical tape" msgstr[0] "nastro chirurgico" msgstr[1] "nastro chirurgico" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Un rotolo di nastro chirurgico, simile al nastro adesivo." @@ -679,7 +680,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "SE VEDI QUESTO MESSAGGIO È COLPA DI UN BUG." @@ -690,17 +691,17 @@ msgid_plural "charcoal" msgstr[0] "carbonella" msgstr[1] "carbonella" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" " in recipes requiring a pure, hot flame. Can also be used in filters to " "remove contaminants out of air and water." msgstr "" -"Un materiale infiammabile a base di carbonio, prodotto da lenta combustione " -"di legna. Utilizzata in preparazioni che richiedono una fiamma pura e calda." -" Può anche essere usata nei filtri per rimuovere contaminanti dall'aria e " -"dall'acqua." +"Un materiale infiammabile a base di carbone, prodotto dalla lenta " +"combustione della legna. Utilizzata in preparazioni che richiedono una " +"fiamma pura e calda. Può anche essere usata nei filtri per rimuovere " +"contaminanti dall'aria e dall'acqua." #: lang/json/AMMO_from_json.py msgid "calcium carbide premix" @@ -708,7 +709,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "miscela pronta per carburo di calcio" msgstr[1] "miscela pronta per carburo di calcio" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -729,7 +730,7 @@ msgid "" "Flammable black chunks of carbon-based material commonly used for cooking " "and heating." msgstr "" -"Pezzi neri di materiale infiammabile a base di carbonio, comunemente usati " +"Pezzi neri di materiale infiammabile a base di carbone, comunemente usati " "per cucinare e riscaldare." #: lang/json/AMMO_from_json.py lang/json/ammunition_type_from_json.py @@ -738,7 +739,7 @@ msgid_plural "albuterol" msgstr[0] "albuterolo" msgstr[1] "albuterolo" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -838,7 +839,7 @@ msgid_plural "nicotine liquid" msgstr[0] "liquido alla nicotina" msgstr[1] "liquido alla nicotina" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -853,7 +854,7 @@ msgid_plural "fish bait" msgstr[0] "esca per pesci" msgstr[1] "esche per pesci" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Un'esca usata nelle trappole per attirare i pesci." @@ -916,7 +917,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "carbonella incompleta" msgstr[1] "carbonella incompleta" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -931,7 +932,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "carburo di calcio incompleto" msgstr[1] "carburo di calcio incompleto" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -957,7 +958,7 @@ msgid_plural "nitrox" msgstr[0] "nitrox" msgstr[1] "Nitrox" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -970,7 +971,7 @@ msgid_plural "extinguishing agent" msgstr[0] "agente estinguente" msgstr[1] "agente estinguente" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Una soluzione chimica in polvere efficace nel domare gli incendi." @@ -981,7 +982,7 @@ msgid_plural "tinder" msgstr[0] "combustibile" msgstr[1] "combustibile" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -1015,7 +1016,7 @@ msgid_plural "bronze" msgstr[0] "bronzo" msgstr[1] "bronzo" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -1028,7 +1029,7 @@ msgid_plural "glowstick juice" msgstr[0] "reagenti per glowstick" msgstr[1] "reagenti per glowstick" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -1042,7 +1043,7 @@ msgid_plural "graphite" msgstr[0] "grafite" msgstr[1] "grafite" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1060,7 +1061,7 @@ msgid_plural "black pen ink" msgstr[0] "inchiostro nero" msgstr[1] "inchiostro nero" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1075,7 +1076,7 @@ msgid_plural "blue pen ink" msgstr[0] "inchiostro blu" msgstr[1] "inchiostro blu" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1091,7 +1092,7 @@ msgid_plural "green pen ink" msgstr[0] "inchiostro verde" msgstr[1] "inchiostro verde" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1106,7 +1107,7 @@ msgid_plural "red pen ink" msgstr[0] "inchiostro rosso" msgstr[1] "inchiostro rosso" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1138,7 +1139,7 @@ msgid_plural "sulfur" msgstr[0] "zolfo" msgstr[1] "zolfo" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1171,7 +1172,7 @@ msgid_plural "cement" msgstr[0] "cemento" msgstr[1] "cemento" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1189,7 +1190,7 @@ msgid_plural "gravel" msgstr[0] "ghiaia" msgstr[1] "ghiaia" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1201,7 +1202,7 @@ msgid_plural "limestone" msgstr[0] "calcare" msgstr[1] "calcare" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1218,7 +1219,7 @@ msgid_plural "quicklime" msgstr[0] "calce viva" msgstr[1] "calce viva" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1239,7 +1240,7 @@ msgid_plural "sand" msgstr[0] "sabbia" msgstr[1] "sabbia" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1254,7 +1255,7 @@ msgid_plural "soil" msgstr[0] "suolo" msgstr[1] "suolo" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1269,7 +1270,7 @@ msgid_plural "aluminum powder" msgstr[0] "polvere di alluminio" msgstr[1] "polvere di alluminio" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1289,7 +1290,7 @@ msgid_plural "zinc powder" msgstr[0] "polvere di zinco" msgstr[1] "polvere di zinco" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1308,7 +1309,7 @@ msgid_plural "zinc oxide" msgstr[0] "ossido di zinco" msgstr[1] "ossido di zinco" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1323,7 +1324,7 @@ msgid_plural "manganese dioxide" msgstr[0] "diossido di manganese" msgstr[1] "diossido di manganese" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1340,7 +1341,7 @@ msgid_plural "potassium chloride" msgstr[0] "cloruro di potassio" msgstr[1] "cloruro di potassio" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1360,7 +1361,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "idrossido di potassio" msgstr[1] "idrossido di potassio" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1378,7 +1379,7 @@ msgid_plural "acetone" msgstr[0] "acetone" msgstr[1] "acetone" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1396,7 +1397,7 @@ msgid_plural "chromium oxide" msgstr[0] "monossido di cromo" msgstr[1] "monossido di cromo" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1418,7 +1419,7 @@ msgid_plural "calcium carbide" msgstr[0] "carburo di calcio" msgstr[1] "carburo di calcio" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1439,7 +1440,7 @@ msgid_plural "hexamine" msgstr[0] "esammina" msgstr[1] "esammina" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1460,7 +1461,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "perossido di idrogeno (concentrato)" msgstr[1] "perossido di idrogeno (concentrato)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1480,7 +1481,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "nitrato di ammonio" msgstr[1] "nitrato di ammonio" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1500,7 +1501,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "pellet di nitrato d'ammonio" msgstr[1] "pellet di nitrato d'ammonio" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1520,7 +1521,7 @@ msgid_plural "saltpeter" msgstr[0] "salnitro" msgstr[1] "salnitro" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1537,7 +1538,7 @@ msgid_plural "niter" msgstr[0] "nitro" msgstr[1] "nitro" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1552,7 +1553,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "solfato di alluminio" msgstr[1] "solfato di alluminio" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1576,7 +1577,7 @@ msgid_plural "acetic acid" msgstr[0] "acido acetico" msgstr[1] "acido acetico" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1595,7 +1596,7 @@ msgid_plural "formaldehyde" msgstr[0] "Formaldeide" msgstr[1] "Formaldeide" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1614,7 +1615,7 @@ msgid_plural "thermite" msgstr[0] "termite" msgstr[1] "termite" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1634,7 +1635,7 @@ msgid_plural "ANFO" msgstr[0] "ANFO" msgstr[1] "ANFO" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1653,7 +1654,7 @@ msgid_plural "black gunpowder" msgstr[0] "polvere da sparo nera" msgstr[1] "polvere da sparo nera" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1673,7 +1674,7 @@ msgid_plural "match head powder" msgstr[0] "polvere di capocchia di fiammifero" msgstr[1] "polvere di capocchia di fiammifero" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1691,7 +1692,7 @@ msgid_plural "RDX" msgstr[0] "RDX" msgstr[1] "RDX" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1709,7 +1710,7 @@ msgid_plural "composition b" msgstr[0] "composition B" msgstr[1] "composition B" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1726,7 +1727,7 @@ msgid_plural "HMTD" msgstr[0] "HMTD" msgstr[1] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1744,7 +1745,7 @@ msgid_plural "APEX" msgstr[0] "TATP" msgstr[1] "TATP" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1762,7 +1763,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "Carburante per razzi improvvisato" msgstr[1] "Carburante per razzi improvvisato" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1778,7 +1779,7 @@ msgid_plural "detergent" msgstr[0] "detergente" msgstr[1] "detergenti" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "Un popolare detersivo in polvere pre-Cataclisma." @@ -1789,7 +1790,7 @@ msgid_plural "soap flakes" msgstr[0] "scaglie di sapone" msgstr[1] "scaglie di sapone" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1862,7 +1863,7 @@ msgid_plural "concentrated venom" msgstr[0] "veleno concentrato" msgstr[1] "veleno concentrato" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1882,7 +1883,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "agente paralizzante concentrato" msgstr[1] "agente paralizzante concentrato" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1901,7 +1902,7 @@ msgid_plural "rocuronium" msgstr[0] "rocuronio" msgstr[1] "rocuronio" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1919,7 +1920,7 @@ msgid_plural "red phosphorous" msgstr[0] "fosforo rosso" msgstr[1] "fosforo rosso" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1934,7 +1935,7 @@ msgid_plural "iodine crystal" msgstr[0] "iodio cristallino" msgstr[1] "iodio cristallino" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1949,7 +1950,7 @@ msgid_plural "ethanol" msgstr[0] "etanolo" msgstr[1] "etanolo" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1984,7 +1985,7 @@ msgid_plural "methanol" msgstr[0] "metanolo" msgstr[1] "metanolo" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -2000,7 +2001,7 @@ msgid_plural "diesel" msgstr[0] "diesel" msgstr[1] "diesel" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -2014,7 +2015,7 @@ msgid_plural "JP8 fuel" msgstr[0] "JP8" msgstr[1] "JP8" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -2030,7 +2031,7 @@ msgid_plural "avgas fuel" msgstr[0] "benzina avio" msgstr[1] "benzina avio" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -2043,7 +2044,7 @@ msgid_plural "biodiesel" msgstr[0] "biodiesel" msgstr[1] "biodiesel" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -2059,7 +2060,7 @@ msgid_plural "gasoline" msgstr[0] "benzina" msgstr[1] "benzina" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -2074,7 +2075,7 @@ msgid_plural "lamp oil" msgstr[0] "olio per lampade" msgstr[1] "olio per lampade" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "Olio diluito realizzato appositamente per lampade ad olio." @@ -2085,7 +2086,7 @@ msgid_plural "motor oil" msgstr[0] "olio per motori" msgstr[1] "olio per motori" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "Un olio progettato per essere usato nei motori delle macchine." @@ -2096,7 +2097,7 @@ msgid_plural "napalm" msgstr[0] "napalm" msgstr[1] "napalm" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2113,7 +2114,7 @@ msgid_plural "gelled gasoline" msgstr[0] "benzina gelificata" msgstr[1] "benzina gelificata" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2130,7 +2131,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "miscela per lanciafiamme" msgstr[1] "miscela per lanciafiamme" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2174,7 +2175,7 @@ msgid_plural "shrapnel" msgstr[0] "scheggia" msgstr[1] "scheggia" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "Un coccio contorto di metallo frastagliato." @@ -2234,7 +2235,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "10mm Auto FMJ" msgstr[1] "10mm Auto FMJ" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2248,8 +2249,8 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "10mm Auto FMJ, black powder" msgid_plural "10mm Auto FMJ, black powder" -msgstr[0] "10mm Auto FMJ, a polvere nera" -msgstr[1] "10mm Auto FMJ, a polvere nera" +msgstr[0] "10mm Auto FMJ, polvere nera" +msgstr[1] "10mm Auto FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid "10mm Auto FMJ, reloaded" @@ -2263,7 +2264,7 @@ msgid_plural "H&K 12mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2311,7 +2312,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "20x66mm pallettone, fatto a mano" msgstr[1] "20x66mm pallettoni, fatti a mano" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2342,7 +2343,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "20x66mm esplosivo" msgstr[1] "20x66mm esplosivi" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2392,7 +2393,7 @@ msgid_plural "20x66mm frag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2409,7 +2410,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2426,7 +2427,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2459,7 +2460,7 @@ msgid_plural ".22 CB" msgstr[0] ".22 CB" msgstr[1] ".22 CB" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2476,7 +2477,7 @@ msgid_plural ".22 FMJ" msgstr[0] ".22 FMJ" msgstr[1] ".22 FMJ" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2494,7 +2495,7 @@ msgid_plural ".22 LR" msgstr[0] ".22 LR" msgstr[1] ".22 LR" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2512,7 +2513,7 @@ msgid_plural ".22 rat-shot" msgstr[0] ".22 rat-shot" msgstr[1] ".22 rat-shot" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2526,34 +2527,34 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".22 LR FMJ, black powder" msgid_plural ".22 LR FMJ, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".22 LR FMJ, polvere nera" +msgstr[1] ".22 LR FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid ".22 LR, black powder" msgid_plural ".22 LR, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".22 LR, polvere nera" +msgstr[1] ".22 LR, polvere nera" #: lang/json/AMMO_from_json.py msgid ".22 LR, reloaded" msgid_plural ".22 LR, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".22 LR, ricaricato" +msgstr[1] ".22 LR, ricaricati" #: lang/json/AMMO_from_json.py msgid ".22 FMJ, reloaded" msgid_plural ".22 FMJ, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".22 FMJ, ricaricato" +msgstr[1] ".22 FMJ, ricaricati" #: lang/json/AMMO_from_json.py msgid ".223 Remington" msgid_plural ".223 Remington" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".223 Remington" +msgstr[1] ".223 Remington" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2567,10 +2568,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "5.56 NATO Mk 262" msgid_plural "5.56 NATO Mk 262" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "5.56 NATO Mk 262" +msgstr[1] "5.56 NATO Mk 262" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2583,10 +2584,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "5.56 NATO Mk 318" msgid_plural "5.56 NATO Mk 318" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "5.56 NATO Mk 318" +msgstr[1] "5.56 NATO Mk 318" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2600,10 +2601,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "5.56 NATO M855" msgid_plural "5.56 NATO M855" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "5.56 NATO M855" +msgstr[1] "5.56 NATO M855" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2618,10 +2619,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "5.56 NATO M855A1" msgid_plural "5.56 NATO M855A1" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "5.56 NATO M855A1" +msgstr[1] "5.56 NATO M855A1" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2639,7 +2640,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2651,14 +2652,14 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".223 Remington, black powder" msgid_plural ".223 Remington, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".223 Remington, polvere nera" +msgstr[1] ".223 Remington, polvere nera" #: lang/json/AMMO_from_json.py msgid "5.56 NATO, black powder" msgid_plural "5.56 NATO, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "5.56 NATO, polvere nera" +msgstr[1] "5.56 NATO, polvere nera" #: lang/json/AMMO_from_json.py msgid "5.56 NATO tracer, black powder" @@ -2669,14 +2670,14 @@ msgstr[1] "" #: lang/json/AMMO_from_json.py msgid ".223 Remington, reloaded" msgid_plural ".223 Remington, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".223 Remington, ricaricato" +msgstr[1] ".223 Remington, ricaricati" #: lang/json/AMMO_from_json.py msgid "5.56 NATO, reloaded" msgid_plural "5.56 NATO, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "5.56 NATO, ricaricato" +msgstr[1] "5.56 NATO, ricaricati" #: lang/json/AMMO_from_json.py msgid "5.56 NATO tracer, reloaded" @@ -2687,10 +2688,10 @@ msgstr[1] "" #: lang/json/AMMO_from_json.py msgid ".270 Winchester JSP" msgid_plural ".270 Winchester JSP" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".270 Winchester JSP" +msgstr[1] ".270 Winchester JSP" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2707,14 +2708,14 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".270 Winchester JSP, black powder" msgid_plural ".270 Winchester JSP, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".270 Winchester JSP, polvere nera" +msgstr[1] ".270 Winchester JSP, polvere nera" #: lang/json/AMMO_from_json.py msgid ".270 Winchester JSP, reloaded" msgid_plural ".270 Winchester JSP, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".270 Winchester JSP, ricaricato" +msgstr[1] ".270 Winchester JSP, ricaricati" #: lang/json/AMMO_from_json.py msgid ".300 Winchester Magnum" @@ -2738,16 +2739,16 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".300 Winchester Magnum, black powder" msgid_plural ".300 Winchester Magnum, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".300 Winchester Magnum, polvere nera" +msgstr[1] ".300 Winchester Magnum, polvere nera" #: lang/json/AMMO_from_json.py msgid ".300 Winchester Magnum, reloaded" msgid_plural ".300 Winchester Magnum, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".300 Winchester Magnum, ricaricato" +msgstr[1] ".300 Winchester Magnum, ricaricati" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2756,15 +2757,15 @@ msgid "" msgstr "" "Il .300 Winchester Magnum è estremamente versatile ed è utilizzato in molte " "discipline di tiro. E' utilizzato da cacciatori, unità militari e " -"dipartimenti di polizia. Questo è stato caricato a mano." +"dipartimenti di polizia. Questa cartuccia è stata ricaricata a mano." #: lang/json/AMMO_from_json.py msgid ".30-06 Springfield" msgid_plural ".30-06 Springfield" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".30-06 Springfield" +msgstr[1] ".30-06 Springfield" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2781,7 +2782,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2796,10 +2797,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".30-06 M2 AP" msgid_plural ".30-06 M2 AP" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".30-06 M2 AP" +msgstr[1] ".30-06 M2 AP" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2813,8 +2814,8 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".30-06 Springfield, black powder" msgid_plural ".30-06 Springfield, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".30-06 Springfield, polvere nera" +msgstr[1] ".30-06 Springfield, polvere nera" #: lang/json/AMMO_from_json.py msgid ".30-06 Springfield tracer, black powder" @@ -2825,14 +2826,14 @@ msgstr[1] "" #: lang/json/AMMO_from_json.py msgid ".30-06 Springfield M2 AP, black powder" msgid_plural ".30-06 Springfield M2 AP, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".30-06 Springfield M2 AP, polvere nera" +msgstr[1] ".30-06 Springfield M2 AP, polvere nera" #: lang/json/AMMO_from_json.py msgid ".30-06 Springfield, reloaded" msgid_plural ".30-06 Springfield, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".30-06 Springfield, ricaricato" +msgstr[1] ".30-06 Springfield, ricaricati" #: lang/json/AMMO_from_json.py msgid ".30-06 incendiary, reloaded" @@ -2843,8 +2844,8 @@ msgstr[1] "" #: lang/json/AMMO_from_json.py msgid ".30-06 M2 AP, reloaded" msgid_plural ".30-06 M2 AP, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".30-06 M2 AP, ricaricato" +msgstr[1] ".30-06 M2 AP, ricaricati" #: lang/json/AMMO_from_json.py lang/json/ammunition_type_from_json.py msgid ".300 AAC Blackout" @@ -2889,8 +2890,8 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".300 AAC Blackout, black powder" msgid_plural ".300 AAC Blackouts, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".300 AAC Blackout, polvere nera" +msgstr[1] ".300 AAC Blackouts, polvere nera" #: lang/json/AMMO_from_json.py msgid ".300 AAC Blackout, reloaded" @@ -2911,16 +2912,16 @@ msgstr "" "balistiche simili alla 7.62x39, ma permette l'utilizzo sulla piattaforma " "AR-15. Il proiettile è un 5.56mm NATO dal collo aumentato, ma viene caricato" " da un caricatore STANAG. RIchiede una canna specifica, perciò non " -"funzionerà in un M4 standard o da carabine simili. Questa munizione è stata " -"ricaricata manualmente." +"funzionerà in un M4 standard o da carabine simili. Questa cartuccia è stata " +"ricaricata a mano." #: lang/json/AMMO_from_json.py msgid ".308 Winchester" msgid_plural ".308 Winchester" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".308 Winchester" +msgstr[1] ".308 Winchester" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2934,10 +2935,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "7.62x51mm M80" msgid_plural "7.62x51mm M80" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x51mm M80" +msgstr[1] "7.62x51mm M80" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2954,7 +2955,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2966,14 +2967,14 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".308 Winchester, black powder" msgid_plural ".308 Winchester, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".308 Winchester, polvere nera" +msgstr[1] ".308 Winchester, polvere nera" #: lang/json/AMMO_from_json.py msgid "7.62x51mm, black powder" msgid_plural "7.62x51mm, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x51mm, polvere nera" +msgstr[1] "7.62x51mm, polvere nera" #: lang/json/AMMO_from_json.py msgid "7.62x51mm tracer, black powder" @@ -2984,28 +2985,28 @@ msgstr[1] "" #: lang/json/AMMO_from_json.py msgid ".308 Winchester, reloaded" msgid_plural ".308 Winchester, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".308 Winchester, ricaricato" +msgstr[1] ".308 Winchester, ricaricati" #: lang/json/AMMO_from_json.py msgid "7.62x51mm, reloaded" msgid_plural "7.62x51mm, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x51mm, ricaricato" +msgstr[1] "7.62x51mm, ricaricati" #: lang/json/AMMO_from_json.py msgid "7.62x51mm incendiary, reloaded" msgid_plural "7.62x51mm incendiary, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x51mm incendiary, ricaricato" +msgstr[1] "7.62x51mm incendiary, ricaricati" #: lang/json/AMMO_from_json.py msgid ".32 ACP" msgid_plural ".32 ACP" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".32 ACP" +msgstr[1] ".32 ACP" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -3017,22 +3018,22 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".32 ACP, black powder" msgid_plural ".32 ACP, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".32 ACP, polvere nera" +msgstr[1] ".32 ACP, polvere nera" #: lang/json/AMMO_from_json.py msgid ".32 ACP, reloaded" msgid_plural ".32 ACP, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".32 ACP, ricaricato" +msgstr[1] ".32 ACP, ricaricati" #: lang/json/AMMO_from_json.py msgid ".357 Magnum FMJ" msgid_plural ".357 Magnum FMJ" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".357 Magnum FMJ" +msgstr[1] ".357 Magnum FMJ" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -3046,10 +3047,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".357 Magnum JHP" msgid_plural ".357 Magnum JHP" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".357 Magnum JHP" +msgstr[1] ".357 Magnum JHP" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -3063,14 +3064,14 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".357 Magnum FMJ, black powder" msgid_plural ".357 Magnum FMJ, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".357 Magnum FMJ, polvere nera" +msgstr[1] ".357 Magnum FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid ".357 Magnum JHP, black powder" msgid_plural ".357 Magnum JHP, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".357 Magnum JHP, polvere nera" +msgstr[1] ".357 Magnum JHP, polvere nera" #: lang/json/AMMO_from_json.py msgid ".357 Magnum FMJ, reloaded" @@ -3087,10 +3088,10 @@ msgstr[1] ".357 Magnum JHP, ricaricati" #: lang/json/AMMO_from_json.py msgid ".357 SIG FMJ" msgid_plural ".357 SIG FMJ" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".357 SIG FMJ" +msgstr[1] ".357 SIG FMJ" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -3103,10 +3104,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".357 SIG JHP" msgid_plural ".357 SIG JHP" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".357 SIG JHP" +msgstr[1] ".357 SIG JHP" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3120,26 +3121,26 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".357 SIG FMJ, reloaded" msgid_plural ".357 SIG FMJ, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".357 SIG FMJ, ricaricato" +msgstr[1] ".357 SIG FMJ, ricaricati" #: lang/json/AMMO_from_json.py msgid ".357 SIG JHP, reloaded" msgid_plural ".357 SIG JHP, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".357 SIG JHP, ricaricato" +msgstr[1] ".357 SIG JHP, ricaricati" #: lang/json/AMMO_from_json.py msgid ".357 SIG FMJ, black powder" msgid_plural ".357 SIG FMJ, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".357 SIG FMJ, polvere nera" +msgstr[1] ".357 SIG FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid ".357 SIG JHP, black powder" msgid_plural ".357 SIG JHP, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".357 SIG JHP, polvere nera" +msgstr[1] ".357 SIG JHP, polvere nera" #: lang/json/AMMO_from_json.py msgid ".36 paper cartridge" @@ -3159,10 +3160,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".38 FMJ" msgid_plural ".38 FMJ" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".38 FMJ" +msgstr[1] ".38 FMJ" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3175,8 +3176,8 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".38 Special" msgid_plural ".38 Specials" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".38 Special" +msgstr[1] ".38 Special" #. ~ Description for .38 Special #: lang/json/AMMO_from_json.py @@ -3191,10 +3192,10 @@ msgstr "" #: lang/json/AMMO_from_json.py lang/json/ammunition_type_from_json.py msgid ".38 Super" msgid_plural ".38 Super" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".38 Super" +msgstr[1] ".38 Super" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3207,40 +3208,40 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".38 FMJ, reloaded" msgid_plural ".38 FMJ, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".38 FMJ, ricaricato" +msgstr[1] ".38 FMJ, ricaricati" #: lang/json/AMMO_from_json.py msgid ".38 Special, reloaded" msgid_plural ".38 Special, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".38 Special, ricaricato" +msgstr[1] ".38 Special, ricaricati" #: lang/json/AMMO_from_json.py msgid ".38 Super, reloaded" msgid_plural ".38 Super, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".38 Super, ricaricato" +msgstr[1] ".38 Super, ricaricati" #: lang/json/AMMO_from_json.py msgid ".38 FMJ, black powder" msgid_plural ".38 FMJ, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".38 FMJ, polvere nera" +msgstr[1] ".38 FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid ".38 Special, black powder" msgid_plural ".38 Special, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".38 Special, polvere nera" +msgstr[1] ".38 Special, polvere nera" #: lang/json/AMMO_from_json.py msgid ".380 ACP FMJ" msgid_plural ".380 ACP FMJ" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".380 ACP FMJ" +msgstr[1] ".380 ACP FMJ" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3256,10 +3257,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".380 ACP JHP" msgid_plural ".380 ACP JHP" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".380 ACP JHP" +msgstr[1] ".380 ACP JHP" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3275,10 +3276,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".380 ACP +P" msgid_plural ".380 ACP +P" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".380 ACP +P" +msgstr[1] ".380 ACP +P" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3294,40 +3295,40 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".380 ACP FMJ, black powder" msgid_plural ".380 ACP FMJ, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".380 ACP FMJ, polvere nera" +msgstr[1] ".380 ACP FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid ".380 ACP JHP, black powder" msgid_plural ".380 ACP JHP, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".380 ACP JHP, polvere nera" +msgstr[1] ".380 ACP JHP, polvere nera" #: lang/json/AMMO_from_json.py msgid ".380 ACP FMJ, reloaded" msgid_plural ".380 ACP FMJ, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".380 ACP FMJ, ricaricato" +msgstr[1] ".380 ACP FMJ, ricaricati" #: lang/json/AMMO_from_json.py msgid ".380 ACP JHP, reloaded" msgid_plural ".380 ACP JHP, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".380 ACP JHP, ricaricato" +msgstr[1] ".380 ACP JHP, ricaricati" #: lang/json/AMMO_from_json.py msgid ".380 ACP +P, reloaded" msgid_plural ".380 ACP +P, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".380 ACP +P, ricaricato" +msgstr[1] ".380 ACP +P, ricaricati" #: lang/json/AMMO_from_json.py msgid ".38 Super FMJ" msgid_plural ".38 Super FMJ" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".38 Super FMJ" +msgstr[1] ".38 Super FMJ" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3341,16 +3342,16 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".38 Super FMJ, reloaded" msgid_plural ".38 Super FMJ, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".38 Super FMJ, ricaricato" +msgstr[1] ".38 Super FMJ, ricaricati" #: lang/json/AMMO_from_json.py msgid ".40 S&W FMJ" msgid_plural ".40 S&W FMJ" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".40 S&W FMJ" +msgstr[1] ".40 S&W FMJ" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3364,10 +3365,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".40 S&W JHP" msgid_plural ".40 S&W JHP" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".40 S&W JHP" +msgstr[1] ".40 S&W JHP" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3381,26 +3382,26 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".40 S&W FMJ, black powder" msgid_plural ".40 S&W FMJ, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".40 S&W FMJ, polvere nera" +msgstr[1] ".40 S&W FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid ".40 S&W JHP, black powder" msgid_plural ".40 S&W JHP, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".40 S&W JHP, polvere nera" +msgstr[1] ".40 S&W JHP, polvere nera" #: lang/json/AMMO_from_json.py msgid ".40 S&W FMJ, reloaded" msgid_plural ".40 S&W FMJ, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".40 S&W FMJ, ricaricato" +msgstr[1] ".40 S&W FMJ, ricaricati" #: lang/json/AMMO_from_json.py msgid ".40 S&W JHP, reloaded" msgid_plural ".40 S&W JHP, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".40 S&W JHP, ricaricato" +msgstr[1] ".40 S&W JHP, ricaricati" #: lang/json/AMMO_from_json.py lang/json/ammunition_type_from_json.py msgid "40x46mm grenade" @@ -3414,7 +3415,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3428,10 +3429,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "40x46mm M433 HEDP" msgid_plural "40x46mm M433 HEDP" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "40x46mm M433 HEDP" +msgstr[1] "40x46mm M433 HEDP" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3448,7 +3449,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3462,7 +3463,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3476,8 +3477,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3491,8 +3492,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3535,8 +3536,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3550,8 +3551,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3609,7 +3610,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3622,7 +3623,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3652,7 +3653,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3666,8 +3667,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3694,8 +3695,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3726,7 +3727,7 @@ msgid_plural ".410 000 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3742,10 +3743,10 @@ msgstr[1] "" #: lang/json/AMMO_from_json.py msgid ".44 Magnum FMJ" msgid_plural ".44 Magnum FMJ" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".44 Magnum FMJ" +msgstr[1] ".44 Magnum FMJ" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3771,26 +3772,26 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".44 Magnum FMJ, reloaded" msgid_plural ".44 Magnum FMJ, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".44 Magnum FMJ, ricaricato" +msgstr[1] ".44 Magnum FMJ, ricaricati" #: lang/json/AMMO_from_json.py msgid ".44 Magnum, reloaded" msgid_plural ".44 Magnum, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".44 Magnum, ricaricato" +msgstr[1] ".44 Magnum, ricaricati" #: lang/json/AMMO_from_json.py msgid ".44 Magnum, black powder" msgid_plural ".44 Magnum, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".44 Magnum, polvere nera" +msgstr[1] ".44 Magnum, polvere nera" #: lang/json/AMMO_from_json.py msgid ".44 Magnum FMJ, black powder" msgid_plural ".44 Magnum FMJ, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".44 Magnum FMJ, polvere nera" +msgstr[1] ".44 Magnum FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid ".44 paper cartridge" @@ -3813,7 +3814,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] ".45 ACP FMJ" msgstr[1] ".45 ACP FMJ" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3829,7 +3830,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] ".45 ACP JHP" msgstr[1] ".45 ACP JHP" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3846,7 +3847,7 @@ msgid_plural ".45 ACP +P" msgstr[0] ".45 ACP +P" msgstr[1] ".45 ACP +P" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3861,40 +3862,40 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".45 ACP FMJ, black powder" msgid_plural ".45 ACP FMJ, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".45 ACP FMJ, polvere nera" +msgstr[1] ".45 ACP FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid ".45 ACP JHP, black powder" msgid_plural ".45 ACP JHP, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".45 ACP JHP, polvere nera" +msgstr[1] ".45 ACP JHP, polvere nera" #: lang/json/AMMO_from_json.py msgid ".45 FMJ, reloaded" msgid_plural ".45 FMJ, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".45 FMJ, ricaricato" +msgstr[1] ".45 FMJ, ricaricati" #: lang/json/AMMO_from_json.py msgid ".45 ACP JHP, reloaded" msgid_plural ".45 ACP JHP, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".45 ACP JHP, ricaricat" +msgstr[1] ".45 ACP JHP, ricaricati" #: lang/json/AMMO_from_json.py msgid ".45 ACP +P, reloaded" msgid_plural ".45 ACP +P, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".45 ACP +P, ricaricati" +msgstr[1] ".45 ACP +P, ricaricati" #: lang/json/AMMO_from_json.py msgid ".454 Casull" msgid_plural ".454 Casull" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".454 Casull" +msgstr[1] ".454 Casull" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3912,22 +3913,22 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".454 Casull, reloaded" msgid_plural ".454 Casull, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".454 Casull, ricaricato" +msgstr[1] ".454 Casull, ricaricati" #: lang/json/AMMO_from_json.py msgid ".454 Casull, black powder" msgid_plural ".454 Casull, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".454 Casull, polvere nera" +msgstr[1] ".454 Casull, polvere nera" #: lang/json/AMMO_from_json.py msgid ".45-70 SP" msgid_plural ".45-70 SP" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".45-70 SP" +msgstr[1] ".45-70 SP" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3962,7 +3963,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3977,10 +3978,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".45-70 SP, reloaded" msgid_plural ".45-70 SP, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".45-70 SP, ricaricato" +msgstr[1] ".45-70 SP, ricaricati" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3989,7 +3990,7 @@ msgid "" msgstr "" "Cartuccia .45-70 Government con proiettile ad espansione da 305gr. Una delle" " cartucce più vecchie ancora in uso. E' la più usata per la caccia grossa a " -"corto raggio. Questa cartuccia è stata caricata a mano." +"corto raggio. Questa cartuccia è stata ricaricata a mano." #: lang/json/AMMO_from_json.py msgid ".45-70 +P penetrator, reloaded" @@ -4008,7 +4009,7 @@ msgstr "" "Cartuccia .45-70 Government +P con proiettile in rame ad alta penetrazione " "da 305gr. Prodotta per migliorare la penetrazione del manto particolarmente " "spesso e delle ossa, mantenendo nello stesso tempo una capacità offensiva " -"ideale. Questa cartuccia è stata caricata a mano." +"ideale. Questa cartuccia è stata ricaricata a mano." #: lang/json/AMMO_from_json.py msgid ".45-70 LFN cowboy, reloaded" @@ -4016,7 +4017,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4028,15 +4029,15 @@ msgstr "" " alle specifiche originali, può essere utilizzata in sicurezza anche con le " "armi da fuoco più antiche. E' notevolmente meno potente delle munizioni " "moderne, ma è comunque in grado di causare un buon danno. Questa cartuccia è" -" stata caricata a mano." +" stata ricaricata a mano." #: lang/json/AMMO_from_json.py msgid ".45-70, black powder" msgid_plural ".45-70, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".45-70, polvere nera" +msgstr[1] ".45-70, polvere nera" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4047,15 +4048,15 @@ msgstr "" "Cartuccia .45-70 Government con proiettile piatto in piombo da 405gr. " "Caricata con polvere nera secondo specifiche originali. E notevolmente meno " "potente e raffinata delle munizioni moderne, ma è comunque in grado di " -"causare un buon danno. Questa cartuccia è stata caricata a mano." +"causare un buon danno. Questa cartuccia è stata ricaricata a mano." #: lang/json/AMMO_from_json.py msgid ".45 Colt JHP" msgid_plural ".45 Colt JHP" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".45 Colt JHP" +msgstr[1] ".45 Colt JHP" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -4071,22 +4072,22 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".45 Colt JHP, reloaded" msgid_plural ".45 Colt JHP, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".45 Colt JHP, ricaricato" +msgstr[1] ".45 Colt JHP, ricaricati" #: lang/json/AMMO_from_json.py msgid ".45 Colt JHP, black powder" msgid_plural ".45 Colt JHP, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".45 Colt JHP, polvere nera" +msgstr[1] ".45 Colt JHP, polvere nera" #: lang/json/AMMO_from_json.py msgid "4.6x30mm" msgid_plural "4.6x30mm" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "4.6x30mm" +msgstr[1] "4.6x30mm" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -4101,11 +4102,11 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "4.6x30mm, black powder" msgid_plural "4.6x30mm, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "4.6x30mm, polvere nera" +msgstr[1] "4.6x30mm, polvere nera" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -4122,8 +4123,8 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "4.6x30mm, reloaded" msgid_plural "4.6x30mm, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "4.6x30mm, ricaricato" +msgstr[1] "4.6x30mm, ricaricati" #: lang/json/AMMO_from_json.py msgid ".460 Rowland HCFN" @@ -4131,7 +4132,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -4144,10 +4145,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".460 Rowland" msgid_plural ".460 Rowland" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".460 Rowland" +msgstr[1] ".460 Rowland" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4166,22 +4167,22 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".460 Rowland FMJ, black powder" msgid_plural ".460 Rowland FMJ, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".460 Rowland FMJ, polvere nera" +msgstr[1] ".460 Rowland FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid ".460 Rowland, black powder" msgid_plural ".460 Rowland, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".460 Rowland, polvere nera" +msgstr[1] ".460 Rowland, polvere nera" #: lang/json/AMMO_from_json.py msgid ".460 Rowland FMJ, reloaded" msgid_plural ".460 Rowland FMJ, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".460 Rowland FMJ, ricaricato" +msgstr[1] ".460 Rowland FMJ, ricaricati" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4194,8 +4195,8 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".460 Rowland, reloaded" msgid_plural ".460 Rowland, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".460 Rowland, ricaricato" +msgstr[1] ".460 Rowland, ricaricati" #: lang/json/AMMO_from_json.py msgid ".50 BMG M17 tracer" @@ -4203,7 +4204,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4217,7 +4218,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4239,7 +4240,7 @@ msgid_plural ".50 BMG Match" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4252,10 +4253,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".50 BMG M2 AP" msgid_plural ".50 BMG M2 AP" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".50 BMG M2 AP" +msgstr[1] ".50 BMG M2 AP" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4267,10 +4268,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".50 BMG Raufoss Mk 211" msgid_plural ".50 BMG Raufoss Mk 211" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".50 BMG Raufoss Mk 211" +msgstr[1] ".50 BMG Raufoss Mk 211" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -4298,7 +4299,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4309,10 +4310,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".50 BMG Match, reloaded" msgid_plural ".50 BMG Match, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".50 BMG Match, ricaricato" +msgstr[1] ".50 BMG Match, ricaricati" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -4330,18 +4331,18 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".50 BMG AP, reloaded" msgid_plural ".50 BMG AP, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".50 BMG AP, ricaricato" +msgstr[1] ".50 BMG AP, ricaricati" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " "is increased, but damage is reduced. This one has been hand-reloaded." msgstr "" "Variante del calibro .50 BMG che utilizza un nucleo di acciaio indurito. La " -"penetrazione aumenta, ma il danno viene ridotto. Questo è stato caricato a " -"mano." +"penetrazione aumenta, ma il danno viene ridotto. Questa cartuccia è stata " +"ricaricata a mano." #: lang/json/AMMO_from_json.py msgid ".50 BMG tracer, black powder" @@ -4352,14 +4353,14 @@ msgstr[1] "" #: lang/json/AMMO_from_json.py msgid ".50 BMG Match, black powder" msgid_plural ".50 BMG Match, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".50 BMG Match, polvere nera" +msgstr[1] ".50 BMG Match, polvere nera" #: lang/json/AMMO_from_json.py msgid ".50 BMG AP, black powder" msgid_plural ".50 BMG AP, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".50 BMG AP, polvere nera" +msgstr[1] ".50 BMG AP, polvere nera" #: lang/json/AMMO_from_json.py msgid ".500 S&W Magnum" @@ -4382,14 +4383,14 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".500 S&W Magnum, black powder" msgid_plural ".500 S&W Magnum, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".500 S&W Magnum, polvere nera" +msgstr[1] ".500 S&W Magnum, polvere nera" #: lang/json/AMMO_from_json.py msgid ".500 S&W Magnum, reloaded" msgid_plural ".500 S&W Magnum, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".500 S&W Magnum, ricaricato" +msgstr[1] ".500 S&W Magnum, ricaricati" #: lang/json/AMMO_from_json.py msgid "5.45x39mm 7N10" @@ -4397,7 +4398,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "5.45x39mm 7N10" msgstr[1] "5.45x39mm 7N10" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -4416,7 +4417,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "5.45x39mm 7N22" msgstr[1] "5.45x39mm 7N22" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -4428,10 +4429,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "5.45x39mm, reloaded" msgid_plural "5.45x39mm, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "5.45x39mm, ricaricato" +msgstr[1] "5.45x39mm, ricaricati" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -4439,8 +4440,8 @@ msgid "" "hand-reloaded." msgstr "" "Le 5.45x39mm erano le munizioni standard per la serie AK dal 1974. I loro " -"progettisti furono ispirati dalle cartuccie 5.56x45mm NATO. Questi sono " -"stati ricaricati a mano. " +"progettisti furono ispirati dalle cartuccie 5.56x45mm NATO. Questa cartuccia" +" è stata ricaricata a mano. " #: lang/json/AMMO_from_json.py msgid "5.45x39mm AP, reloaded" @@ -4448,7 +4449,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -4460,22 +4461,22 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "5.45x39mm, black powder" msgid_plural "5.45x39mm, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "5.45x39mm, polvere nera" +msgstr[1] "5.45x39mm, polvere nera" #: lang/json/AMMO_from_json.py msgid "5.45x39mm AP, black powder" msgid_plural "5.45x39mm AP, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "5.45x39mm AP, polvere nera" +msgstr[1] "5.45x39mm AP, polvere nera" #: lang/json/AMMO_from_json.py msgid "5.7x28mm SS190" msgid_plural "5.7x28mm SS190" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "5.7x28mm SS190" +msgstr[1] "5.7x28mm SS190" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4495,11 +4496,11 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "5.7x28mm, black powder" msgid_plural "5.7x28mm, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "5.7x28mm, polvere nera" +msgstr[1] "5.7x28mm, polvere nera" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4521,8 +4522,8 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "5.7x28mm, reloaded" msgid_plural "5.7x28mm, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "5.7x28mm, ricaricato" +msgstr[1] "5.7x28mm, ricaricati" #: lang/json/AMMO_from_json.py msgid "RA110 5x50mm flechette" @@ -4572,7 +4573,8 @@ msgid "" msgstr "" "Progettato per sconfiggere le armature più moderne, il proiettile a " "fléchette 5x50mm della Rivtech ha un bossolo biodegradabile e un singolo " -"proiettile penetrante stabilizzato. Questo è stato ricaricato a mano." +"proiettile penetrante stabilizzato. Questa cartuccia è stata ricaricata a " +"mano." #: lang/json/AMMO_from_json.py msgid "M74 rocket" @@ -4597,7 +4599,7 @@ msgid_plural "66mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -4613,7 +4615,7 @@ msgid_plural ".700 NX" msgstr[0] ".700 NX" msgstr[1] ".700 NX" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4629,22 +4631,22 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid ".700 NX, reloaded" msgid_plural ".700 NX, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".700 NX, ricaricato" +msgstr[1] ".700 NX, ricaricati" #: lang/json/AMMO_from_json.py msgid ".700 NX, black powder" msgid_plural ".700 NX, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] ".700 NX, polvere nera" +msgstr[1] ".700 NX, polvere nera" #: lang/json/AMMO_from_json.py msgid "7.62x39mm 57-N-231" msgid_plural "7.62x39mm 57-N-231" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x39mm 57-N-231" +msgstr[1] "7.62x39mm 57-N-231" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4661,10 +4663,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "7.62x39mm M67" msgid_plural "7.62x39mm M67" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x39mm M67" +msgstr[1] "7.62x39mm M67" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4680,10 +4682,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "7.62x39mm M43, reloaded" msgid_plural "7.62x39mm M43, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x39mm M43, ricaricato" +msgstr[1] "7.62x39mm M43, ricaricati" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4700,20 +4702,20 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "7.62x39mm M67, reloaded" msgid_plural "7.62x39mm M67, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x39mm M67, ricaricato" +msgstr[1] "7.62x39mm M67, ricaricati" #: lang/json/AMMO_from_json.py msgid "7.62x39mm M43, black powder" msgid_plural "7.62x39mm M43, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x39mm M43, polvere nera" +msgstr[1] "7.62x39mm M43, polvere nera" #: lang/json/AMMO_from_json.py msgid "7.62x39mm M87, black powder" msgid_plural "7.62x39mm M87, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x39mm M87, polvere nera" +msgstr[1] "7.62x39mm M87, polvere nera" #: lang/json/AMMO_from_json.py msgid "7.62x54mmR" @@ -4721,7 +4723,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "7.62x54mmR" msgstr[1] "7.62x54mmR" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4740,22 +4742,22 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "7.62x54mmR, reloaded" msgid_plural "7.62x54mmR, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x54mmR, ricaricato" +msgstr[1] "7.62x54mmR, ricaricati" #: lang/json/AMMO_from_json.py msgid "7.62x54mmR, black powder" msgid_plural "7.62x54mmR, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x54mmR, polvere nera" +msgstr[1] "7.62x54mmR, polvere nera" #: lang/json/AMMO_from_json.py msgid "7.62x25mm JHP" msgid_plural "7.62x25mm JHP" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x25mm JHP" +msgstr[1] "7.62x25mm JHP" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4782,10 +4784,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "7.62x25mm Type P" msgid_plural "7.62x25mm Type P" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x25mm Type P" +msgstr[1] "7.62x25mm Type P" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4799,14 +4801,14 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "7.62x25mm FMJ, black powder" msgid_plural "7.62x25mm FMJ, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x25mm FMJ, polvere nera" +msgstr[1] "7.62x25mm FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid "7.62x25mm, reloaded" msgid_plural "7.62x25mm, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "7.62x25mm, ricaricato" +msgstr[1] "7.62x25mm, ricaricati" #: lang/json/AMMO_from_json.py msgid "84x246mm HE rocket" @@ -4862,7 +4864,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4877,7 +4879,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4892,7 +4894,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4909,7 +4911,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4925,7 +4927,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4943,7 +4945,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4962,7 +4964,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4979,7 +4981,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4998,7 +5000,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -5014,7 +5016,7 @@ msgid_plural "9x19mm +P" msgstr[0] "9x19mm +P" msgstr[1] "9x19mm +P" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -5030,7 +5032,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "9x19mm +P+" msgstr[1] "9x19mm +P+" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -5042,38 +5044,38 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "9x19mm JHP, black powder" msgid_plural "9x19mm JHP, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "9x19mm JHP, polvere nera" +msgstr[1] "9x19mm JHP, polvere nera" #: lang/json/AMMO_from_json.py msgid "9x19mm FMJ, black powder" msgid_plural "9x19mm FMJ, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "9x19mm FMJ, polvere nera" +msgstr[1] "9x19mm FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid "9x19mm JHP, reloaded" msgid_plural "9x19mm JHP, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "9x19mm JHP, ricaricato" +msgstr[1] "9x19mm JHP, ricaricati" #: lang/json/AMMO_from_json.py msgid "9x19mm FMJ, reloaded" msgid_plural "9x19mm FMJ, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "9x19mm FMJ, ricaricato" +msgstr[1] "9x19mm FMJ, ricaricati" #: lang/json/AMMO_from_json.py msgid "9x19mm +P, reloaded" msgid_plural "9x19mm +P, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "9x19mm +P, ricaricato" +msgstr[1] "9x19mm +P, ricaricati" #: lang/json/AMMO_from_json.py msgid "9x19mm +P+, reloaded" msgid_plural "9x19mm +P+, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "9x19mm +P+, ricaricato" +msgstr[1] "9x19mm +P+, ricaricati" #: lang/json/AMMO_from_json.py msgid "9x18mm 57-N-181S" @@ -5081,7 +5083,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -5098,7 +5100,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -5115,7 +5117,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -5127,22 +5129,22 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "9x18mm, black powder" msgid_plural "9x18mm, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "9x18mm, polvere nera" +msgstr[1] "9x18mm, polvere nera" #: lang/json/AMMO_from_json.py msgid "9x18mm FMJ, black powder" msgid_plural "9x18mm FMJ, black powder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "9x18mm FMJ, polvere nera" +msgstr[1] "9x18mm FMJ, polvere nera" #: lang/json/AMMO_from_json.py msgid "9x18mm, reloaded" msgid_plural "9x18mm, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "9x18mm, ricaricato" +msgstr[1] "9x18mm, ricaricati" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5151,16 +5153,16 @@ msgid "" msgstr "" "9x18 millimetri Makarov, una vecchia cartuccia della pistola Sovietica usata" " principalmente dalla Makarov PM. Come suggerisce il nome, l'involucro è un " -"po' più corto rispetto ai 9mm Parabellum. Questi sono stati ricaricati a " -"mano." +"po' più corto rispetto ai 9mm Parabellum. Questa cartuccia è stata " +"ricaricata a mano." #: lang/json/AMMO_from_json.py msgid "9x18mm +P+, reloaded" msgid_plural "9x18mm +P+, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "9x18mm +P+, ricaricato" +msgstr[1] "9x18mm +P+, ricaricati" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5175,10 +5177,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "9x18mm FMJ, reloaded" msgid_plural "9x18mm FMJ, reloaded" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "9x18mm FMJ, ricaricato" +msgstr[1] "9x18mm FMJ, ricaricati" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5188,7 +5190,7 @@ msgstr "" "9x18 millimetri Makarov, una vecchia cartuccia della pistola Sovietica usata" " principalmente dalla Makarov PM. Questo proiettile rivestito in ottone " "aumenta leggermente la penetrazione al costo di una espansione ridotta. " -"Questi sono stati ricaricati a mano." +"Questa cartuccia è stata ricaricata a mano." #: lang/json/AMMO_from_json.py msgid "152mm ATGM HEAT" @@ -5196,7 +5198,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -5227,7 +5229,7 @@ msgid_plural "cannon round shot" msgstr[0] "carica per cannone" msgstr[1] "cariche per cannone" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -5242,7 +5244,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "gas tossico spray" msgstr[1] "gas tossico spray" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -5258,7 +5260,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "fungicida spray" msgstr[1] "fungicida spray" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -5274,7 +5276,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "insetticida spray" msgstr[1] "insetticida spray" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -5404,7 +5406,7 @@ msgid_plural "paintball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -5522,7 +5524,7 @@ msgid_plural "00 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -5539,7 +5541,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "Un proiettile non letale da fucile a pompa, ideato per inabilitare." @@ -5550,7 +5552,7 @@ msgid_plural "birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -5618,8 +5620,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5797,7 +5799,7 @@ msgid_plural "oxyacetylene" msgstr[0] "ossiacetilene" msgstr[1] "ossiacetilene" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5812,7 +5814,7 @@ msgid_plural "fungal seeds" msgstr[0] "Seme fungino" msgstr[1] "Semi fungini" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Dei semi di funghi." @@ -6737,7 +6739,7 @@ msgid_plural "red paint" msgstr[0] "pittura rossa" msgstr[1] "pittura rossa" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Un barattolo di pittura rossa." @@ -6748,7 +6750,7 @@ msgid_plural "blue paint" msgstr[0] "pittura blu" msgstr[1] "pittura blu" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Un barattolo di pittura blu," @@ -6759,7 +6761,7 @@ msgid_plural "white paint" msgstr[0] "pittura bianca" msgstr[1] "pittura bianca" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Un barattolo di pittura bianca." @@ -6770,7 +6772,7 @@ msgid_plural "green paint" msgstr[0] "pittura verde" msgstr[1] "pittura verde" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Un barattolo di pittura verde." @@ -6781,7 +6783,7 @@ msgid_plural "purple paint" msgstr[0] "pittura viola" msgstr[1] "pittura viola" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Un barattolo di pittura viola." @@ -6792,7 +6794,7 @@ msgid_plural "yellow paint" msgstr[0] "pittura gialla" msgstr[1] "pittura gialla" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Un barattolo di tinta gialla." @@ -6862,7 +6864,7 @@ msgid_plural "bismuth" msgstr[0] "bismuto" msgstr[1] "bismuto" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py 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." @@ -6873,8 +6875,8 @@ msgid_plural "gold" msgstr[0] "oro" msgstr[1] "oro" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -6896,7 +6898,7 @@ msgid_plural "zinc" msgstr[0] "Zinco" msgstr[1] "Zinco" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6915,7 +6917,7 @@ msgid_plural "lead" msgstr[0] "piombo" msgstr[1] "piombo" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6931,7 +6933,7 @@ msgid_plural "magnesium powder" msgstr[0] "polvere di magnesio" msgstr[1] "polvere di magnesio" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6947,7 +6949,7 @@ msgid_plural "silver" msgstr[0] "argento" msgstr[1] "argento" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -7015,7 +7017,7 @@ msgid_plural "tin powder" msgstr[0] "polvere di stagno" msgstr[1] "polvere di stagno" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -7030,7 +7032,7 @@ msgid_plural "solder" msgstr[0] "lega per saldatura" msgstr[1] "lega per saldatura" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -7070,7 +7072,7 @@ msgid_plural "fuse" msgstr[0] "Miccia" msgstr[1] "Micce" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -7132,7 +7134,7 @@ msgid_plural "cotton scraps" msgstr[0] "scarti di cotone" msgstr[1] "scarti di cotone" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -7149,7 +7151,7 @@ msgid_plural "faux fur scraps" msgstr[0] "scarti di pelliccia falsa" msgstr[1] "scarti di pelliccia falsa" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -7165,7 +7167,7 @@ msgid_plural "felt scraps" msgstr[0] "scarti di feltro" msgstr[1] "scarti di feltro" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -7182,7 +7184,7 @@ msgid_plural "fur scraps" msgstr[0] "scarti di pelliccia" msgstr[1] "scarti di pelliccia" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -7197,7 +7199,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "scarti di kevlar" msgstr[1] "scarti di kevlar" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -7216,7 +7218,7 @@ msgid_plural "leather scraps" msgstr[0] "scarti di pelle" msgstr[1] "scarti di pelle" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -7231,7 +7233,7 @@ msgid_plural "Lycra scraps" msgstr[0] "scarti di elastam" msgstr[1] "scarti di elastam" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -7246,7 +7248,7 @@ msgid_plural "neoprene scraps" msgstr[0] "scarti di neoprene" msgstr[1] "scarti di neoprene" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -7261,7 +7263,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "scarti di tessuto sintetico" msgstr[1] "scarti di tessuto sintetico" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -7277,7 +7279,7 @@ msgid_plural "Nomex scraps" msgstr[0] "scarti di Nomex" msgstr[1] "scarti di Nomex" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -7307,7 +7309,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -7337,7 +7339,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "Miscuglio di parti di vestito in falsa pelliccia" msgstr[1] "Miscugli di parti di vestito in falsa pelliccia " -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -7366,7 +7368,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "Miscuglio di parti di vestito di feltro " msgstr[1] "Miscugli di parti di vestito di feltro " -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -7396,8 +7398,8 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "Lycra sheet" msgid_plural "Lycra sheets" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "scampolo di Lycra" +msgstr[1] "scampoli di Lycra" #. ~ Description for Lycra sheet #: lang/json/AMMO_from_json.py @@ -7405,6 +7407,8 @@ msgid "" "A sheet of synthetic fabric blended with stretchy Lycra fibers, suitable for" " making flexible yet strong clothing." msgstr "" +"Un foglio di tessuto sintetico con aggiunta di fibre elastiche in Lycra, " +"ideale per creare vestiti flessibili e resistenti." #: lang/json/AMMO_from_json.py msgid "patchwork Lycra clothing parts" @@ -7412,7 +7416,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -7423,8 +7427,8 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "neoprene sheet" msgid_plural "neoprene sheets" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "foglio di neoprene" +msgstr[1] "fogli di neoprene" #. ~ Description for neoprene sheet #: lang/json/AMMO_from_json.py @@ -7441,7 +7445,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "Miscuglio di parti di vestito in neoprene" msgstr[1] "Miscugli di parti di vestito in neoprene" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -7457,8 +7461,8 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "Nomex sheet" msgid_plural "Nomex sheets" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "foglio di Nomex" +msgstr[1] "fogli di Nomex" #. ~ Description for Nomex sheet #: lang/json/AMMO_from_json.py @@ -7475,7 +7479,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "Miscuglio di parti di vestito in Nomex " msgstr[1] "Miscugli di parti di vestito in Nomex " -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -7490,8 +7494,8 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "synthetic fabric sheet" msgid_plural "synthetic fabric sheets" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "scampolo di tessuto sintetico" +msgstr[1] "scampoli di tessuto sintetico" #. ~ Description for synthetic fabric sheet #: lang/json/AMMO_from_json.py @@ -7504,7 +7508,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "Miscuglio di parti di vestito in tessuto sintetico" msgstr[1] "Miscugli di parti di vestito in tessuto sintetico" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -7612,7 +7616,7 @@ msgid_plural "titanium" msgstr[0] "titanio" msgstr[1] "titanio" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -7646,7 +7650,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -7665,7 +7669,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -7680,7 +7684,7 @@ msgid_plural "25mm canister shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -7696,7 +7700,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -7711,7 +7715,7 @@ msgid_plural "7.50mm RP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -7728,7 +7732,7 @@ msgid_plural "electric charge" msgstr[0] "carica elettrica" msgstr[1] "carica elettrica" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -7744,7 +7748,7 @@ msgid_plural "foamcrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -7760,7 +7764,7 @@ msgid_plural "solid hydrogen" msgstr[0] "idrogeno solido" msgstr[1] "idrogeno solido" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -7776,7 +7780,7 @@ msgid_plural "lead pellets" msgstr[0] "palline di piombo" msgstr[1] "palline di piombo" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -7793,7 +7797,7 @@ msgid_plural "domed HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -7811,7 +7815,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -7827,7 +7831,7 @@ msgid_plural "alloy pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -7972,7 +7976,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7987,7 +7991,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -8026,7 +8030,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -8042,7 +8046,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -8082,7 +8086,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8098,7 +8102,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8138,7 +8142,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8154,7 +8158,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8194,7 +8198,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -8206,7 +8210,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -8219,7 +8223,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8235,7 +8239,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8262,7 +8266,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -8275,7 +8279,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -8289,7 +8293,7 @@ msgid_plural "rocket, smoke" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -8315,7 +8319,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -8328,7 +8332,7 @@ msgid_plural "shotshell, slug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -8342,7 +8346,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -8392,7 +8396,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -8443,7 +8447,7 @@ msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -8507,7 +8511,7 @@ msgid_plural "dragon blood" msgstr[0] "sangue di drago" msgstr[1] "sangue di drago" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -8538,7 +8542,7 @@ msgid_plural "parabolan yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -8549,7 +8553,7 @@ msgid_plural "crystallized mana" msgstr[0] "mana cristallizzato" msgstr[1] "mana cristallizato" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -8593,7 +8597,7 @@ msgid_plural "liquid mercury" msgstr[0] "mercurio liquido" msgstr[1] "mercurio liquido" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "Mercurio liquido elementare. Noto per il suo impiego nei termometri." @@ -8612,7 +8616,7 @@ msgstr "" "Un blocco di mithril grezzo. È necessario rifonderlo in lingotti perché sia " "utile." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -9138,7 +9142,7 @@ msgstr[1] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -9154,7 +9158,7 @@ msgstr "" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -9189,10 +9193,10 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "chest rig" msgid_plural "chest rig" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pettorina tattica" +msgstr[1] "pettorine tattiche" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -9200,12 +9204,17 @@ msgid "" "straps to secure them on your chest. This one can hold four magazines in " "its pouches." msgstr "" +"Chiamate in gergo \"Chest Rig\", queste pettorine tattiche sono state molto " +"popolari durante la guerra in Vietnam. Sono costituite da una semplice " +"imbracatura a bretella, dotata di 3 o 4 tasche frontali legate sul petto. In" +" questa in particolare è possibile tenere fino a 4 caricatori a portata di " +"mano." #: lang/json/ARMOR_from_json.py msgid "XL chest rig" msgid_plural "XL chest rigs" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pettorina tattica XL" +msgstr[1] "pettorine tattiche XL" #. ~ Description for XL chest rig #: lang/json/ARMOR_from_json.py @@ -9215,6 +9224,11 @@ msgid "" "straps to secure them on your chest. This one can hold four magazines in " "its pouches and fits larger-than-human forms." msgstr "" +"Chiamate in gergo \"Chest Rig\", queste pettorine tattiche sono state molto " +"popolari durante la guerra in Vietnam. Sono costituite da una semplice " +"imbracatura a bretella, dotata di 3 o 4 tasche frontali legate sul petto. In" +" questa in particolare è possibile tenere fino a 4 caricatori a portata di " +"mano ed è indossabile da parte di soggetti anatomicamente troppo cresciuti." #: lang/json/ARMOR_from_json.py msgid "javelin bag" @@ -9238,8 +9252,8 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "ankle ammo pouch" msgid_plural "ankle ammo pouches" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "tasca a cavigliera" +msgstr[1] "tasche a cavigliera" #. ~ Description for ankle ammo pouch #: lang/json/ARMOR_from_json.py @@ -9247,6 +9261,8 @@ msgid "" "A small fabric ammo pouch that can be strapped to your ankle and hold a " "single small magazine close at hand." msgstr "" +"Una piccola tasca tattica che può essere legata ad una caviglia e può " +"contenere un caricatore di piccole dimensioni a portata di mano." #: lang/json/ARMOR_from_json.py msgid "leg ammo pouch" @@ -9322,8 +9338,8 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "tac vest" msgid_plural "tac vests" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "gilet tattico" +msgstr[1] "gilet tattici" #. ~ Use action holster_prompt for tac vest. #: lang/json/ARMOR_from_json.py @@ -9337,6 +9353,9 @@ msgid "" "are popular amongst law enforcement, but less so than combination tactical " "vests incorporating Kevlar." msgstr "" +"Questo gilet tattico serve per trasportare caricatori, munizioni e pistole. " +"Sono molto popolari tra le forze dell'ordine, ma sono meno efficaci dei " +"gilet tattici in kevlar." #: lang/json/ARMOR_from_json.py msgid "XL tac vest" @@ -10106,38 +10125,19 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "" -msgstr[1] "" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "cintura porta-attrezzi" +msgstr[1] "cinture porta-attrezzi" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "cintura porta-attrezzi" -msgstr[1] "cinture porta-attrezzi" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -10291,25 +10291,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -10327,45 +10308,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -10377,26 +10319,6 @@ msgstr[1] "paia di stivali da escursione" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -10415,26 +10337,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -10505,20 +10407,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -10550,39 +10438,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -11455,46 +11310,46 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "duster" msgid_plural "dusters" -msgstr[0] "duster" -msgstr[1] "duster" +msgstr[0] "spolverino" +msgstr[1] "spolverini" #. ~ Description for duster #: lang/json/ARMOR_from_json.py msgid "A rugged full-length duster coat. Has many pockets for storage." msgstr "" -"Un cappotto duster ruvido, a lunghezza intera. Ha tante tasche per avere " -"spazio interno." +"Uno spolverino ruvido, a lunghezza intera. Le sue numerose tasche forniscono" +" molto spazio per trasportare oggetti." #: lang/json/ARMOR_from_json.py msgid "fur duster" msgid_plural "fur dusters" -msgstr[0] "Duster in pelliccia" -msgstr[1] "Duster in pelliccia" +msgstr[0] "spolverino in pelliccia" +msgstr[1] "spolverini in pelliccia" #. ~ Description for fur duster #: lang/json/ARMOR_from_json.py msgid "A thick fur full-length duster. Has many pockets for storage." msgstr "" -"Un cappotto duster in spessa pelliccia, a lunghezza intera. Ha tante tasche" -" per avere spazio interno." +"Uno spolverino in spessa pelliccia, a lunghezza intera. Le sue numerose " +"tasche forniscono molto spazio per trasportare oggetti." #: lang/json/ARMOR_from_json.py msgid "XL fur duster" msgid_plural "XL fur dusters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "spolverino in pelliccia XL" +msgstr[1] "spolverini in pelliccia XL" #: lang/json/ARMOR_from_json.py msgid "XL duster" msgid_plural "XL dusters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "spolverino XL" +msgstr[1] "spolverini XL" #: lang/json/ARMOR_from_json.py msgid "faux fur duster" msgid_plural "faux fur dusters" -msgstr[0] "Duster in falsa pelliccia" -msgstr[1] "Duster in falsa pelliccia" +msgstr[0] "spolverino in falsa pelliccia" +msgstr[1] "spolverini in falsa pelliccia" #. ~ Description for faux fur duster #: lang/json/ARMOR_from_json.py @@ -11502,54 +11357,33 @@ msgid "" "A thick faux fur duster, falling below your knees. Has many pockets for " "storing things." msgstr "" -"Un cappotto duster in spessa pelliccia falsa, che cade sotto le tue " -"ginocchia. Ha tante tasche per immagazzinare gli oggetti." +"Uno spolverino in pelliccia falsa, a lunghezza intera. Le sue numerose " +"tasche forniscono molto spazio per trasportare oggetti." #: lang/json/ARMOR_from_json.py msgid "XL faux fur duster" msgid_plural "XL faux fur dusters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "spolverino in falsa pelliccia XL" +msgstr[1] "spolverini in falsa pelliccia XL" #: lang/json/ARMOR_from_json.py msgid "leather duster" msgid_plural "leather dusters" -msgstr[0] "spolverino di pelle" -msgstr[1] "spolverini di pelle" +msgstr[0] "spolverino in pelle" +msgstr[1] "spolverini in pelle" #. ~ Description for leather duster #: lang/json/ARMOR_from_json.py msgid "A thick leather full-length duster. Has many pockets for storage." msgstr "" -"Un cappotto duster in spessa pelle, a lunghezza intera. Ha tante tasche per" -" avere spazio interno." +"Uno spolverino in pelle spessa, a lunghezza intera. Le sue numerose tasche " +"forniscono molto spazio per trasportare oggetti." #: lang/json/ARMOR_from_json.py msgid "XL leather duster" msgid_plural "XL leather dusters" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "Duster da sopravvissuto" -msgstr[1] "Duster da sopravvissuto" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" -"Un cappotto duster corazzato con Kevlar, a lunghezza intera, coperto di " -"tasche e marsupi. Comodo, durevole e grande per avere spazio interno." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "spolverino in pelle XL" +msgstr[1] "spolverini in pelle XL" #: lang/json/ARMOR_from_json.py msgid "greatcoat" @@ -11603,7 +11437,7 @@ msgid_plural "army jacket" msgstr[0] "giacca militare" msgstr[1] "giacche militari" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -11786,7 +11620,7 @@ msgid_plural "kimono" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -11902,8 +11736,8 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "sleeveless duster" msgid_plural "sleeveless dusters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "spolverino smanicato" +msgstr[1] "spolverini smanicati" #. ~ Description for sleeveless duster #: lang/json/ARMOR_from_json.py @@ -11911,12 +11745,14 @@ msgid "" "A rugged full-length duster that leaves your arms unencumbered. Has plenty " "of storage space due to its many pockets." msgstr "" +"Uno spolverino ruvido, a lunghezza intera e senza maniche. Le sue numerose " +"tasche forniscono molto spazio per trasportare oggetti." #: lang/json/ARMOR_from_json.py msgid "sleeveless fur duster" msgid_plural "sleeveless fur dusters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "spolverino in pelliccia smanicato" +msgstr[1] "spolverini in pelliccia smanicati" #. ~ Description for sleeveless fur duster #: lang/json/ARMOR_from_json.py @@ -11924,12 +11760,14 @@ msgid "" "A thick fur full-length duster without sleeves, leaving your arms " "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" +"Uno spolverino in spessa pelliccia, a lunghezza intera e senza maniche. Le " +"sue numerose tasche forniscono molto spazio per trasportare oggetti." #: lang/json/ARMOR_from_json.py msgid "sleeveless faux fur duster" msgid_plural "sleeveless faux fur dusters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "spolverino in falsa pelliccia smanicato" +msgstr[1] "spolverini in falsa pelliccia smanicati" #. ~ Description for sleeveless faux fur duster #: lang/json/ARMOR_from_json.py @@ -11937,12 +11775,14 @@ msgid "" "A thick, sleeveless faux fur duster, falling below your knees. Has many " "pockets for storing things." msgstr "" +"Uno spolverino in pelliccia falsa, a lunghezza intera e senza maniche. Le " +"sue numerose tasche forniscono molto spazio per trasportare oggetti." #: lang/json/ARMOR_from_json.py msgid "sleeveless leather duster" msgid_plural "sleeveless leather dusters" -msgstr[0] "spolverino di pelle smanicato" -msgstr[1] "spolverini di pelle smanicati" +msgstr[0] "spolverino in pelle smanicato" +msgstr[1] "spolverini in pelle smanicati" #. ~ Description for sleeveless leather duster #: lang/json/ARMOR_from_json.py @@ -11950,22 +11790,8 @@ msgid "" "A thick leather full-length duster without sleeves, leaving your arms " "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -"Un soprabito di pelle spessa lungo fino ai piedi senza maniche, che lascia " -"libere le tue braccia. Ha molto spazio per gli oggetti grazie alle sue " -"molteplici tasche." - -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" +"Uno spolverino in pelle spessa, a lunghezza intera e senza maniche. Le sue " +"numerose tasche forniscono molto spazio per trasportare oggetti." #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" @@ -12023,19 +11849,6 @@ msgstr "" "Un impermeabile di pelle spessa senza maniche, che lascia libere le tue " "braccia. Ha molto spazio per gli oggetti grazie alle sue molteplici tasche." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "trench smanicato da sopravvivenza" -msgstr[1] "trench smanicati da sopravvivenza" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -12053,7 +11866,7 @@ msgid_plural "thawb" msgstr[0] "deshdasheh" msgstr[1] "deshdasheh" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -12109,19 +11922,6 @@ msgstr "" "Un impermeabile di pelle spessa, foderato con delle tasche. Ha un'ottima " "capienza." -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "trench da sopravvivenza" -msgstr[1] "trench da sopravvivenza" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -12394,19 +12194,6 @@ msgstr[1] "paia di occhiali da sole" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "Un paio di occhiali da sole, ottimi per non farti accecare dal sole." -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "paio di occhiali da sopravvivenza" -msgstr[1] "paia di occhiali da sopravvivenza" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -12784,25 +12571,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "paio di guanti ignifughi da sopravvivenza" -msgstr[1] "paia di guanti ignifughi da sopravvivenza" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -12820,50 +12588,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "paio di guanti pesanti da sopravvivenza" -msgstr[1] "paia di guanti pesanti da sopravvivenza" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -12929,63 +12653,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "paio di guanti leggeri da sopravvivenza" -msgstr[1] "paia di guanti leggeri da sopravvivenza" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "Paio di guanti da sopravvissuto senza dita" -msgstr[1] "Paia di guanti da sopravvissuto senza dita" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -13031,19 +12698,6 @@ msgstr "" "Un paio di guanti di gomma, spesso usati mentre si pulisce con materiali " "caustici." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "paio di guanti da sopravvivenza" -msgstr[1] "paia di guanti da sopravvivenza" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -13177,37 +12831,6 @@ msgstr "" "Provvedono piccole quantità di protezione quando stai tirando pugni e " "combinando altri guai, in generale." -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "paio di guanti invernali da sopravvissuto" -msgstr[1] "paia di guanti invernali da sopravvivenza" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "paio di guanti XL da sopravvivenza" -msgstr[1] "paia di guanti XL da sopravvivenza" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -14019,7 +13642,7 @@ msgid_plural "kabuto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -14133,32 +13756,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -14212,32 +13809,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -14455,36 +14026,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -14538,77 +14079,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -14620,56 +14090,6 @@ msgstr[1] "cappucci da pioggia" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -15083,9 +14503,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -15096,9 +14516,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -15109,9 +14529,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -15122,9 +14542,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -15135,9 +14555,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -15148,9 +14568,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -15161,9 +14581,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -15174,9 +14594,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -15187,9 +14607,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -15200,9 +14620,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -15213,9 +14633,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -15226,9 +14646,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -15239,9 +14659,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -15252,9 +14672,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -18838,7 +18258,7 @@ msgid_plural "turnout trousers" msgstr[0] "pantalone da pompiere" msgstr[1] "pantaloni da pompiere" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -18881,7 +18301,7 @@ msgid_plural "leather chaps" msgstr[0] "gambale di pelle" msgstr[1] "gambali di pelle" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -18896,7 +18316,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -18911,7 +18331,7 @@ msgid_plural "fencing pants" msgstr[0] "pantalone da scherma" msgstr[1] "pantaloni da scherma" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -19086,32 +18506,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -19123,39 +18517,13 @@ msgstr[1] "paia di pantaloni da motociclista" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "pantalone multitasche da sopravvissuto" -msgstr[1] "pantaloni multitasche da sopravvissuto" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -19168,7 +18536,7 @@ msgid_plural "light EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -19195,7 +18563,7 @@ msgid_plural "basketball shorts" msgstr[0] "pantaloncini da basket" msgstr[1] "pantaloncini da basket" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "Un paio di pantaloncini da basket. Comodi e leggeri." @@ -19206,7 +18574,7 @@ msgid_plural "breeches" msgstr[0] "Calzone alla zuava" msgstr[1] "Calzoni alla zuava" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -19234,7 +18602,7 @@ msgid_plural "hot pants" msgstr[0] "pantaloncino da donna" msgstr[1] "pantaloncini da donna" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "Un semplice paio di pantaloncini corti." @@ -19245,7 +18613,7 @@ msgid_plural "fur hot pants" msgstr[0] "pantaloncino da donna di pelliccia" msgstr[1] "pantaloncini da donna di pelliccia" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "Un semplice paio di pantaloncini di pelliccia corti." @@ -19256,7 +18624,7 @@ msgid_plural "leather hot pants" msgstr[0] "pantaloncino corto da donna di pelle" msgstr[1] "pantaloncini corti da donna di pelle" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "Un semplice paio di pantaloncini corti di pelle." @@ -19267,7 +18635,7 @@ msgid_plural "jeans" msgstr[0] "jeans" msgstr[1] "jeans" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "Un paio di jeans con due tasche capienti." @@ -19300,7 +18668,7 @@ msgid_plural "red jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -19329,7 +18697,7 @@ msgid_plural "leggings" msgstr[0] "leggings" msgstr[1] "leggings" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -19415,7 +18783,7 @@ msgid_plural "pants" msgstr[0] "pantalone" msgstr[1] "pantaloni" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "Un paio di pantaloni cachi. Leggermente più caldi dei jeans." @@ -19426,7 +18794,7 @@ msgid_plural "army pants" msgstr[0] "pantalone militare" msgstr[1] "pantaloni militari" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" @@ -19434,8 +18802,8 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -19468,7 +18836,7 @@ msgid_plural "cargo pants" msgstr[0] "pantalone spazioso" msgstr[1] "pantaloni spaziosi" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "Un paio di pantaloni cuciti con tasche, offrono molta capienza." @@ -19479,7 +18847,7 @@ msgid_plural "checkered pants" msgstr[0] "pantaloni a scacchi" msgstr[1] "pantaloni a scacchi" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -19490,7 +18858,7 @@ msgid_plural "fur pants" msgstr[0] "pantalone in pelliccia" msgstr[1] "pantaloni in pelliccia" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "Un pesante paio di pantaloni foderati di pelliccia." @@ -19501,7 +18869,7 @@ msgid_plural "faux fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -19512,7 +18880,7 @@ msgid_plural "leather pants" msgstr[0] "pantalone di pelle" msgstr[1] "pantaloni di pelle" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -19527,7 +18895,7 @@ msgid_plural "ski pants" msgstr[0] "pantalone da sci" msgstr[1] "pantaloni da sci" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "Un paio di pantaloni utilizzati per sci di montagna." @@ -19538,7 +18906,7 @@ msgid_plural "police breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -19551,7 +18919,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "pantaloncino da postino" msgstr[1] "pantaloncini da postino" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -19564,7 +18932,7 @@ msgid_plural "shorts" msgstr[0] "bermuda" msgstr[1] "bermuda" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "Un paio di bermuda cachi." @@ -19575,7 +18943,7 @@ msgid_plural "cargo shorts" msgstr[0] "pantaloncino spazioso" msgstr[1] "pantaloni short combat" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "Un paio di bermuda cuciti con tasche, fornendo una decente capienza." @@ -19586,7 +18954,7 @@ msgid_plural "denim shorts" msgstr[0] "shorts" msgstr[1] "shorts" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "Un paio di bermuda in denim." @@ -19651,7 +19019,7 @@ msgid_plural "striped pants" msgstr[0] "pantaloni a strisce" msgstr[1] "pantaloni a strisce" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -19682,7 +19050,7 @@ msgid_plural "army winter pants" msgstr[0] "pantalone militare invernale" msgstr[1] "pantaloni militari invernali" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -20330,6 +19698,8 @@ msgid "" "A large, adjustable sheath for holding swords and other large blades. " "Activate to sheathe/draw a weapon." msgstr "" +"Un grosso fodero regolabile, adatto per trasportare spade o altre grosse " +"lame. Attivalo per sfoderare/rinfoderare un'arma." #: lang/json/ARMOR_from_json.py msgid "sheath" @@ -20403,8 +19773,8 @@ msgstr "Un piccolo zaino. Offre una buona capienza ed è poco ingombrante." #: lang/json/ARMOR_from_json.py msgid "hiking backpack" msgid_plural "hiking backpacks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "zaino da escursione" +msgstr[1] "zaini da escursione" #. ~ Use action holster_prompt for hiking backpack. #. ~ Use action holster_prompt for CRIT web belt. @@ -20416,7 +19786,7 @@ msgstr "" #. ~ Description for hiking backpack #: lang/json/ARMOR_from_json.py msgid "A large sized hiking backpack with plenty of storage space." -msgstr "" +msgstr "Un grosso zaino da escursione molto capiente." #: lang/json/ARMOR_from_json.py msgid "giant novelty backpack" @@ -20445,8 +19815,8 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "large tactical backpack" msgid_plural "large tactical backpacks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "zaino tattico grande" +msgstr[1] "zaini tattici grandi" #. ~ Description for large tactical backpack #: lang/json/ARMOR_from_json.py @@ -20454,6 +19824,8 @@ msgid "" "A large tactical multi-compartment backpack that has great lower back " "support." msgstr "" +"Un grosso zaino tattico multi-comparto, è dotato di un supporto che " +"garantisce sostegno lombare." #: lang/json/ARMOR_from_json.py msgid "laundry basket" @@ -20503,6 +19875,8 @@ msgstr[1] "" #: lang/json/ARMOR_from_json.py msgid "A makeshift backpack comprised of a wooden box and a pair of ropes." msgstr "" +"Uno zaino improvvisato realizzato con una scatola di legno e un paio di " +"corde." #: lang/json/ARMOR_from_json.py msgid "briefcase" @@ -20546,25 +19920,25 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "dive bag" msgid_plural "dive bags" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "zainetto da immersione" +msgstr[1] "zainetti da immersione" #. ~ Description for dive bag #: lang/json/ARMOR_from_json.py msgid "A lightweight mesh backpack, commonly worn by swimmers and divers." -msgstr "" +msgstr "Uno zaino leggero a maglie, tipicamente usato da nuotatori e sub." #: lang/json/ARMOR_from_json.py msgid "duffel bag" msgid_plural "duffel bags" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "borsone" +msgstr[1] "borsoni" #. ~ Description for duffel bag #: lang/json/ARMOR_from_json.py msgid "" "A huge duffel bag. Provides plenty of storage, but is severely encumbering." -msgstr "" +msgstr "Un grosso borsone. È molto capiente, ma è anche molto ingombrante." #: lang/json/ARMOR_from_json.py msgid "tactical dump pouch" @@ -20595,8 +19969,8 @@ msgstr "Provvede un pò di spazio extra, con minimo ingombro." #: lang/json/ARMOR_from_json.py msgid "golf bag" msgid_plural "golf bags" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "borsone da golf" +msgstr[1] "borsoni da golf" #. ~ Use action holster_msg for golf bag. #: lang/json/ARMOR_from_json.py @@ -20615,6 +19989,9 @@ msgid "" "A tall canvas and plastic bag with fold-out legs used for golfing. It even " "has straps to be worn on the back and a slot for an umbrella." msgstr "" +"Un borsone di tela lungo rinforzato con plastica dotato di gambe pieghevoli," +" tipicamente usato dai giocatori di golf. Ha persino delle cinghie per " +"indossarlo sulla schiena e una tasca per l'ombrello." #: lang/json/ARMOR_from_json.py msgid "H&K operational briefcase (empty)" @@ -20821,7 +20198,7 @@ msgstr[1] "zaini grandi militari" #. ~ Description for military rucksack #: lang/json/ARMOR_from_json.py msgid "A huge military rucksack, provides a lot of storage." -msgstr "" +msgstr "Un grosso zaino militare, fornisce molto spazio per gli oggetti." #: lang/json/ARMOR_from_json.py msgid "runner pack" @@ -20885,62 +20262,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "zaino da superstite" -msgstr[1] "zaini da superstite" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" -"Uno zaino modificato. Durevole e creato accuratamente per contenere più " -"oggetti possibili." - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "zaino grande da sopravvivenza" -msgstr[1] "zaini grandi da sopravvivenza" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Uno zaino pesante modificato. Durevole e creato accuratamente per contenere " -"più oggetti possibile. " - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "zaino da corsa da sopravvivenza" -msgstr[1] "zaini da corsa da sopravvivenza" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -20968,19 +20289,21 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "utility vest" msgid_plural "utility vests" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "gilet tecnico" +msgstr[1] "gilet tecnici" #. ~ Description for utility vest #: lang/json/ARMOR_from_json.py msgid "A light vest covered in pockets and straps for storage." msgstr "" +"Un gilet leggero dotato di numerose tasche e cinghie per trasportare " +"oggetti." #: lang/json/ARMOR_from_json.py msgid "wicker backpack" msgid_plural "wicker backpacks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "zaino di vimini" +msgstr[1] "zaini di vimini" #. ~ Description for wicker backpack #: lang/json/ARMOR_from_json.py @@ -20988,6 +20311,9 @@ msgid "" "A large handmade straw basket with a lid and shoulder straps to wear it like" " a backpack. Less comfortable than a proper backpack, but will do the job." msgstr "" +"Un grosso cesto di vimini intrecciato, con coperchio e cinghie per " +"trasportarlo come uno zaino. Non è confortevole come un vero zaino, però sa " +"il fatto suo." #: lang/json/ARMOR_from_json.py msgid "debug pocket universe" @@ -21081,8 +20407,8 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "camera bag" msgid_plural "camera bags" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "borsa per macchina fotografica" +msgstr[1] "borse per macchina fotografica" #. ~ Description for camera bag #: lang/json/ARMOR_from_json.py @@ -21090,6 +20416,9 @@ msgid "" "A simple bag used to hold a camera, with a small pocket on the side for " "accessories. Comes with a carry strap." msgstr "" +"Una borsa semplice utilizzata per trasportare una macchina fotografica, con " +"una piccola tasca laterale per gli accessori. È dotata di una cinghia a " +"tracolla." #: lang/json/ARMOR_from_json.py msgid "bookstrap" @@ -21228,6 +20557,10 @@ msgid "" "tailoring and adjustment points… maybe you don't want to know who wore it. " "Provides nominal storage and is not very encumbering." msgstr "" +"Una tuta leggera costituita da un singolo pezzo, con maniche corte sia per " +"le braccia che per le gambe. A giudicare dalle bizzare cuciture e dagli " +"strani punti in cui è modificata... non vuoi sapere chi l'ha indossata. Ha " +"un po' di capienza e non è molto ingombrante." #: lang/json/ARMOR_from_json.py msgid "union suit" @@ -21390,38 +20723,6 @@ msgid_plural "XL plate armors" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "Attrezzatura nomade" -msgstr[1] "Attrezzature nomadi" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" -"Un vestito improvvisato fatto da vestiti pre-Cataclisma, progettato per " -"lunghi viaggi. Ha un sacco di spazio interno." - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "Attrezzatura nomade leggera" -msgstr[1] "Attrezzature nomadi leggere" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" -"Un vestito artigianale leggero fatto da vestiti pre-cataclisma, progettati " -"per lunghi viaggi. Offre meno spazio interno ed armatura comparato " -"all'attrezzatura nomade normale." - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -21467,8 +20768,8 @@ msgstr[1] "Armature antisommossa" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -21482,21 +20783,6 @@ msgstr[1] "O-yoroi" msgid "An ornamental suit of Japanese samurai armor." msgstr "Una tuta ornamentale di armatura da samurai Giapponese." -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "Attrezzatura da rovistatore" -msgstr[1] "Attrezzature da rovistatore" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" -"Un vestito robusto da raccoglitore, fatto con equipaggiamento protettivo pre" -" cataclisma ricostruito. Ha un sacco di spazio interno." - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -21652,57 +20938,6 @@ msgid_plural "XL entry suits" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "Tuta ignifuga da sopravvissuto" -msgstr[1] "Tute ignifughe da sopravvissuto" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" -"Armatura combinata pesante fatta a mano, fabbricata con un giubbotto " -"antiproiettile ridotto ed una tuta jumpsuit Nomex rinforzata resistente al " -"fuoco. Protegge l'indossatore dal fuoco e dagli elementi. " - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "gambeson" msgid_plural "gambesons" @@ -21719,12 +20954,32 @@ msgstr "" "sotto la cotta di maglia o altre armature. O indossata da sola, se non puoi " "permetterti un'armatura adeguata." +#: lang/json/ARMOR_from_json.py +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for kevlar gambeson +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "XL gambeson" msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" +#: lang/json/ARMOR_from_json.py +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" +msgstr[0] "" +msgstr[1] "" + #: lang/json/ARMOR_from_json.py msgid "hazmat suit" msgid_plural "hazmat suits" @@ -21740,40 +20995,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -21839,19 +21060,6 @@ msgstr "" "Un abito completo in cotone. Rende l'apocalisse un'esperienza da veri " "gentleman." -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -21861,11 +21069,9 @@ msgstr[1] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" -"Un'armatura tattica antiproiettile dotata di diverse tasche. La parola SWAT " -"è leggibile sulla schiena." #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -21882,42 +21088,6 @@ msgstr "" "Una tuta integrale di pelle spessa, fatta appositamente per fornire " "protezione quando si guida un motociclo. Leggera e molto comoda." -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "Tuta da sopravvivenza XL" -msgstr[1] "Tute da sopravvivenza XL" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -21989,45 +21159,6 @@ msgstr[1] "cappucci subacquei" msgid "A neoprene hood, commonly worn by divers." msgstr "Un cappuccio di neoprene, comunemente indossato dai sub." -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "paio di guanti da muta da sopravvivenza" -msgstr[1] "paia di guanti da muta da sopravvivenza" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -22115,8 +21246,8 @@ msgstr[1] "" #: lang/json/ARMOR_from_json.py msgid "lamellar cuirass" msgid_plural "lamellar cuirasses" -msgstr[0] "Corazza lamellare" -msgstr[1] "Corazze lamellari" +msgstr[0] "corazza lamellare" +msgstr[1] "corazze lamellari" #. ~ Description for lamellar cuirass #: lang/json/ARMOR_from_json.py @@ -22124,8 +21255,9 @@ msgid "" "A cuirass made of multiple pieces of tough leather, laced together for " "durable yet flexible protection." msgstr "" -"Una corazza fatta di pezzi multipli di pelle dura, allacciati assieme per " -"della protezione durevole e allo stesso tempo flessibile." +"Una corazza fatta di con diversi strati di pelle dura, allacciati assieme " +"per garantire un livello di protezione durevole e allo stesso tempo fornire " +"un buon grado di flessibilità." #: lang/json/ARMOR_from_json.py msgid "XL lamellar cuirass" @@ -22139,7 +21271,7 @@ msgid_plural "lorica segmentata" msgstr[0] "Lorica segmentata" msgstr[1] "Loriche segmentate" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -22318,7 +21450,7 @@ msgid_plural "tire leather armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -22390,25 +21522,6 @@ msgstr "" "Un giubbotto antiproiettile leggero. È adatto per essere indossato sotto i " "vestiti." -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -22688,7 +21801,7 @@ msgid_plural "leotard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -22776,7 +21889,7 @@ msgid_plural "French maid clothes" msgstr[0] "vestito da domestica francese" msgstr[1] "vestiti da domestica francese" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -22806,6 +21919,8 @@ msgid "" "A light blue button down shirt with a couple of pockets in front and the US " "postal service logo embroidered on it." msgstr "" +"Una camicia blu chiaro dotata di un paio di taschini frontali e il logo del " +"servizio postale degli Stati Uniti cucito su di essa." #: lang/json/ARMOR_from_json.py msgid "sheriff's shirt" @@ -23082,7 +22197,7 @@ msgid_plural "boxer briefs" msgstr[0] "boxer aderenti" msgstr[1] "boxer aderenti" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "La domanda da un milione di Euro, Boxer o Slip? La tua risposta? Si." @@ -23093,7 +22208,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -23104,7 +22219,7 @@ msgid_plural "boxer shorts" msgstr[0] "boxer" msgstr[1] "boxer" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -23117,7 +22232,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -23130,7 +22245,7 @@ msgid_plural "boy shorts" msgstr[0] "boy shorts" msgstr[1] "boy shorts" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -23142,7 +22257,7 @@ msgid_plural "XL boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -23169,7 +22284,7 @@ msgid_plural "briefs" msgstr[0] "slip da uomo" msgstr[1] "slip da uomo" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "Un paio di slip da uomo. Un intimo comodo indossato dagli uomini." @@ -23342,7 +22457,7 @@ msgid_plural "panties" msgstr[0] "mutandina" msgstr[1] "mutandine" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -23411,7 +22526,7 @@ msgid_plural "tights" msgstr[0] "collant" msgstr[1] "collant" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -23438,7 +22553,7 @@ msgid_plural "compression shorts" msgstr[0] "pantaloncino aderente" msgstr[1] "pantaloncini aderenti" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -23476,865 +22591,1808 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sheet" -msgid_plural "sheets" -msgstr[0] "telo" -msgstr[1] "teli" +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "Attrezzatura nomade" +msgstr[1] "Attrezzature nomadi" -#. ~ Description for sheet +#. ~ Description for nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" -" a bunch of rags." +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." msgstr "" -"Un grande telo di stoffa, potrebbe essere usato come tenda o come lenzuola; " -"o tagliato per un mucchio di stracci." - -#: lang/json/ARMOR_from_json.py -msgid "blanket" -msgid_plural "blankets" -msgstr[0] "Coperta" -msgstr[1] "Coperte" - -#. ~ Description for blanket -#: lang/json/ARMOR_from_json.py -msgid "Hiding under here will not protect you from the monsters." -msgstr "Nascondersi qui sotto non ti proteggerà dai mostri." +"Un vestito improvvisato fatto da vestiti pre-Cataclisma, progettato per " +"lunghi viaggi. Ha un sacco di spazio interno." #: lang/json/ARMOR_from_json.py -msgid "down-filled blanket" -msgid_plural "down-filled blankets" -msgstr[0] "Coperta imbottita" -msgstr[1] "Coperte imbottite" +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "Attrezzatura nomade leggera" +msgstr[1] "Attrezzature nomadi leggere" -#. ~ Description for down-filled blanket +#. ~ Description for light nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"Hiding under here will not protect you from the monsters, but it'll keep you" -" warm." +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." msgstr "" -"Anche se nascondersi qui sotto non ti proteggerà dai mostri, almeno ti terrà" -" al caldo." +"Un vestito artigianale leggero fatto da vestiti pre-cataclisma, progettati " +"per lunghi viaggi. Offre meno spazio interno ed armatura comparato " +"all'attrezzatura nomade normale." #: lang/json/ARMOR_from_json.py -msgid "fur blanket" -msgid_plural "fur blankets" -msgstr[0] "Coperta in pelliccia" -msgstr[1] "Coperte in pelliccia" +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "Attrezzatura da rovistatore" +msgstr[1] "Attrezzature da rovistatore" -#. ~ Description for fur blanket +#. ~ Description for scavenger gear #: lang/json/ARMOR_from_json.py -msgid "A heavy fur blanket that covers most of your body." +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." msgstr "" -"Una coperta pesante in pelliccia, che copre maggior parte del tuo corpo." +"Un vestito robusto da raccoglitore, fatto con equipaggiamento protettivo pre" +" cataclisma ricostruito. Ha un sacco di spazio interno." #: lang/json/ARMOR_from_json.py -msgid "quilt" -msgid_plural "quilts" +msgid "light survivor suit" +msgid_plural "light survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for quilt +#. ~ Description for light survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " -"cozy!" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "patchwork quilt" -msgid_plural "patchwork quilts" +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for patchwork quilt -#: lang/json/ARMOR_from_json.py -msgid "A huge, patchwork wool quilt. Very, very warm." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "sleeping bag" -msgid_plural "sleeping bags" +msgid "survivor suit" +msgid_plural "survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for sleeping bag. +#. ~ Description for survivor suit #: lang/json/ARMOR_from_json.py -msgid "You roll up the sleeping bag, preparing it for transport." +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." msgstr "" -#. ~ Description for sleeping bag +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "Tuta da sopravvivenza XL" +msgstr[1] "Tute da sopravvivenza XL" + +#. ~ Description for XL survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A large sleeping bag that covers you head to toe. This one is medium " -"weight." +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cestus" -msgid_plural "cestuses" +msgid "winter survivor suit" +msgid_plural "winter survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for cestus +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A leather hand and arm wrap incorporating metal plates over the knuckles to " -"improve punching power and defence." +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of studded gloves" -msgid_plural "pairs of studded gloves" +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of studded gloves +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "A pair of gloves with studded metal knuckles." +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "impact knuckles" -msgid_plural "impact knuckles" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for XL winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of thick steel plates covering your proximal phalange. They are " -"strapped to your hands with metal braces." +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "skewer knuckles" -msgid_plural "skewer knuckles" +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for survivor wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A single sturdy spike protrudes 5cm from the back of your hand. They are " -"strapped to your hands with metal braces." +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "telescoping umbrella" -msgid_plural "telescoping umbrellas" -msgstr[0] "ombrellino" -msgstr[1] "ombrellini" +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for telescoping umbrella +#. ~ Description for pair of light survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A telescoping umbrella which collapses down for easy storage, useful for " -"keeping dry when wielded." +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "bag of holding" -msgid_plural "bags of holding" +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for bag of holding -#: lang/json/ARMOR_from_json.py -msgid "" -"A sleek, unfathomably-complicated machine covered in dozens of blinking " -"lights, worn on the back by sturdy faux-leather straps. An electrode " -"dangles from the back, attaching to your forehead. How it operates without " -"annihilating spacetime isn't quite clear, but a localized portal allows " -"things to be stored in an extradimensional space." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "titanium vest" -msgid_plural "titanium vests" +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for titanium vest +#. ~ Description for pair of survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight armor vest made of pieces of titanium sewn together, with " -"cloth padding for comfort. Brittle against blunt force, but highly " -"resistant to cuts and corrosion." +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sentinel-lx cloak" -msgid_plural "sentinel-lx cloaks" +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for sentinel-lx cloak +#. ~ Description for pair of XL survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " -"unnatural shadow. Made from woven graphene, its lightweight and resistant, " -"but cannot be repaired" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL jeans" -msgid_plural "pairs of XL jeans" +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL jeans +#. ~ Description for pair of faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue jeans with two deep pockets." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work pants" -msgid_plural "pairs of XL work pants" +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" +#. ~ Description for pair of XL faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue work pants." +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "A pair of XL gray work pants." -msgstr "" +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "" +msgstr[1] "" +#. ~ Description for pair of winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL light-blue work pants." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work t-shirt" -msgid_plural "XL work t-shirts" +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL work t-shirt #: lang/json/ARMOR_from_json.py -msgid "A gray XL work t-shirt with a small front pocket." -msgstr "" +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "" +msgstr[1] "" +#. ~ Description for pair of survivor wetsuit boots #: lang/json/ARMOR_from_json.py -msgid "An XL blue work t-shirt with a small front pocket." +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "An XL gray work t-shirt with a small front pocket." -msgstr "" +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "paio di guanti leggeri da sopravvivenza" +msgstr[1] "paia di guanti leggeri da sopravvivenza" +#. ~ Description for pair of light survivor gloves #: lang/json/ARMOR_from_json.py -msgid "An XL light-blue work t-shirt with a small front pocket." +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Uplifted SWAT armor" -msgid_plural "Uplifted SWAT armors" +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for Uplifted SWAT armor -#: lang/json/ARMOR_from_json.py -msgid "" -"An extra large suit of black bulletproof armor with lots of pockets. The " -"word SWAT is emblazoned across the back. Specifically designed for Uplifted" -" officers such as Mastodons." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "empty XL ballistic vest" -msgid_plural "empty XL ballistic vests" +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for empty XL ballistic vest +#. ~ Description for pair of fingerless light survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"Oversized ballistic armor without any armor inserts. The soft armor plate " -"carrier is still protective but it won't stop high energy projectiles." +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL ESAPI ballistic vest" -msgid_plural "XL ESAPI ballistic vests" +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL ESAPI ballistic vest -#: lang/json/ARMOR_from_json.py -msgid "Oversized ballistic armor with ESAPI ceramic armor plates." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of XL combat boots" -msgid_plural "pair of XL combat boots" -msgstr[0] "" -msgstr[1] "" +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "Paio di guanti da sopravvissuto senza dita" +msgstr[1] "Paia di guanti da sopravvissuto senza dita" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of fingerless survivor gloves #: lang/json/ARMOR_from_json.py -msgid "Modern oversized reinforced tactical combat boots. Very durable." +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL tactical gloves" -msgid_plural "pair of XL tactical gloves" +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "paio di guanti da sopravvivenza" +msgstr[1] "paia di guanti da sopravvivenza" + +#. ~ Description for pair of survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " -"police and military units." +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of Killophant gloves" -msgid_plural "pair of Killophant gloves" -msgstr[0] "" -msgstr[1] "" +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "paio di guanti XL da sopravvivenza" +msgstr[1] "paia di guanti XL da sopravvivenza" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of XL survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of reinforced Kevlar tactical gloves, specifically designed to " -"accommodate three-fingered Killophants. Thinner than regular oversized " -"tactical gloves." +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leather belt" -msgid_plural "XL leather belts" -msgstr[0] "" -msgstr[1] "" +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "paio di guanti invernali da sopravvissuto" +msgstr[1] "paia di guanti invernali da sopravvivenza" -#. ~ Description for XL leather belt +#. ~ Description for pair of winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL leather belt. Useful for making your pair of pants fit if you need " -"really big pants." +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL police duty belt" -msgid_plural "XL police duty belts" +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL police duty belt -#: lang/json/ARMOR_from_json.py -msgid "" -"An XL black leather belt used by extremely large uplifted police officers. " -"It has several pouches and a holder for a baton." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL tactical full helmet" -msgid_plural "XL tactical full helmets" +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL tactical full helmet +#. ~ Description for pair of faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing massive black helmet that covers your entire face and " -"neck, providing excellent protection from all sorts of damage." +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leg ammo pouch" -msgid_plural "XL leg ammo pouches" +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL leg ammo pouch +#. ~ Description for pair of XL faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" -" two magazines close at hand." +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "crew jumpsuit" -msgid_plural "crew jumpsuits" -msgstr[0] "" -msgstr[1] "" +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "paio di guanti da muta da sopravvivenza" +msgstr[1] "paia di guanti da muta da sopravvivenza" -#. ~ Description for crew jumpsuit +#. ~ Description for pair of survivor wetsuit gloves #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " -"some freight hauling association or another. This one is a standard design " -"favored by spacers, with ample, easy access pockets." +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "communications cap" -msgid_plural "communications caps" +msgid "nomad cowl" +msgid_plural "nomad cowls" msgstr[0] "" msgstr[1] "" -#. ~ Description for communications cap +#. ~ Description for nomad cowl #: lang/json/ARMOR_from_json.py msgid "" -"A padded cotton cap built around an augmented reality headset. During " -"normal operation it would provide visual information about a ship subsystems" -" and a communications link with the rest of the crew, but severed from a " -"spaceship, only their hearing protection function retains any utility." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "HERC rig" -msgid_plural "HERC rigs" +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" msgstr[0] "" msgstr[1] "" -#. ~ Description for HERC rig +#. ~ Description for nomad cowl XL #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " -"about in zero-g, Mars, the bottom of the Pacific, or other generally " -"inhospitable environments. It has several deep pockets, and two mounting " -"points for pressurized canisters or other large magazines." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cecalia wetsuit" -msgid_plural "cecalia wetsuits" +msgid "survivor hood" +msgid_plural "survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for cecalia wetsuit +#. ~ Description for survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " -"explorer suit with no head or tentacle protection." +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "combat wetsuit" -msgid_plural "combat wetsuits" +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for combat wetsuit +#. ~ Description for winter survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " -"will provide some level of protection for deep dwellers." +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "nanomesh vest" -msgid_plural "nanomesh vests" +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for nanomesh vest +#. ~ Description for XL winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight nanomesh vest designed to face down many of the perils of " -"space travel. These vests are mass produced and often stacked in starship " -"lockers." +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "vacuum cast cuirass" -msgid_plural "vacuum cast cuirasses" +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for vacuum cast cuirass +#. ~ Description for XL survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"This piece of armor harkens back to renaissance designs. It differs in that" -" it is cast as a single piece in deep space installations where conditions " -"can be controlled absolutely." +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "carbide raider's helmet" -msgid_plural "carbide raider's helmets" +msgid "light survivor hood" +msgid_plural "light survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for carbide raider's helmet +#. ~ Description for light survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"This helmet is designed for the individual that is worried about catching " -"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " -"environmental protection features, but it just might stop even the largest " -"of ballistic rounds." +msgid "A customized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "UICAS Point of Impact helmet" -msgid_plural "UICAS Point of Impact helmets" +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for UICAS Point of Impact helmet +#. ~ Description for XL light survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight black helmet that provides excellent protection from all sorts" -" of damage, unless it's airborne. UICAS makes the point of designing all " -"headgear whenever possible with clear faceplates, in order to provide a " -"human touch to all interactions." +"A customized and oversized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cold resistance cream" -msgid_plural "cold resistance creams" +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for cold resistance cream +#. ~ Description for winter faux fur survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"A thick layer of something that smells worse than walrus fat. But it keeps " -"you warm." +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "heat retention xtreme cream" -msgid_plural "heat retention xtreme creams" +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for heat retention xtreme cream +#. ~ Description for XL faux fur winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"The last word in cold snap protection designed to give short term protection" -" in the event of a suit breach in vacuum." +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium watch" -msgid_plural "titanium watches" +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for titanium watch +#. ~ Description for survivor wetsuit hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine watch made out of titanium. It is durable, light-weight " -"and water-resistant, an excellent watch to have in a hostile environment." +"A customized armored neoprene and Kevlar hood, very strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium ring" -msgid_plural "titanium rings" +msgid "scavenger cowl" +msgid_plural "scavenger cowls" msgstr[0] "" msgstr[1] "" -#. ~ Description for titanium ring +#. ~ Description for scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine ring made out of titanium. Made in a variety of styles " -"and finishes, they're valued for their durability." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "hazardous environment suit" -msgid_plural "hazardous environment suits" +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" msgstr[0] "" msgstr[1] "" -#. ~ Description for hazardous environment suit +#. ~ Description for XL scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"Developed for the exploration of alien planes, the lightweight, orange-black" -" HEV suit covers everything below the neck. While it possesses only modest " -"physical protection, it provides excellent protection from most " -"environmental hazards. A hatch in the front opens to provide a small amount" -" of storage." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "psychrophile handling gloves" -msgid_plural "psychrophile handling gloves" +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"These gloves are designed for handling organisms that live in extremely cold" -" temperatures. They can also be used to freeze your foes to death." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Engineering Suit" -msgid_plural "CRIT Engineering Suits" +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Engineering Suit +#. ~ Description for XL light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"An airtight, flexible suit of woven composite fibers complete with segmented" -" plates of armor. A complex system digitizes items in an individual pocket " -"universe for storage while built in joint-torsion ratchets generate the " -"necessary energy required to power the interface." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT face mask" -msgid_plural "CRIT face masks" -msgstr[0] "" -msgstr[1] "" +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "pantalone multitasche da sopravvissuto" +msgstr[1] "pantaloni multitasche da sopravvissuto" -#. ~ Description for CRIT face mask +#. ~ Description for survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A standard issue face mask, lined with Kevlar for extra protection. A few " -"filters provide decent environmental safety, but it was not intended for " -"extended use. It has a basic integrated HUD." +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT boots" -msgid_plural "pairs of CRIT boots" +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT boots +#. ~ Description for XL survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " -"hygienic during long-term missions while absorbing shock and heat from " -"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " -"protection as well. Decently heavy though" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT LA boots" -msgid_plural "pairs of CRIT LA boots" -msgstr[0] "" -msgstr[1] "" +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "spolverini da sopravvivenza" +msgstr[1] "spolverini da sopravvivenza" -#. ~ Description for pair of CRIT LA boots +#. ~ Description for survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " -"variant was created for missions in warmer climates. The LA boots keep most" -" of the old features of the standard issue boots but trade in protection for" -" easier movement." +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." msgstr "" +"Uno spolverino corazzato con Kevlar, a lunghezza intera e coperto di tasche " +"e piccole borse. Comodo, durevole e dotato di molti spazi per trasportare " +"oggetti." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less gloves" -msgid_plural "pairs of CRIT fingertip-less gloves" -msgstr[0] "" -msgstr[1] "" +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "spolverino da sopravvivenza XL" +msgstr[1] "spolverini da sopravvivenza XL" -#. ~ Description for pair of CRIT fingertip-less gloves +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "spolverino da sopravvivenza smanicato" +msgstr[1] "spolverini da sopravvivenza smanicati" + +#. ~ Description for sleeveless survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue gloves. Made with superalloy mesh for those with " -"gene-modding and/or mutations while still allowing greater manipulation of " -"items and moderate protection." +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." msgstr "" +"Uno spolverino corazzato con Kevlar, a lunghezza intera, senza maniche e " +"coperto di tasche e piccole borse. Comodo, durevole e dotato di molti spazi " +"per trasportare oggetti." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less liners" -msgid_plural "pairs of CRIT fingertip-less liners" -msgstr[0] "" -msgstr[1] "" +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "trench da sopravvivenza" +msgstr[1] "trench da sopravvivenza" -#. ~ Description for pair of CRIT fingertip-less liners +#. ~ Description for survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " -"for warmth and fingertip-less for those with gene-modding and/or mutations " -"while still allowing greater manipulation of items and moderate protection." +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT backpack" -msgid_plural "CRIT backpacks" -msgstr[0] "" -msgstr[1] "" +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "trench smanicato da sopravvivenza" +msgstr[1] "trench smanicati da sopravvivenza" -#. ~ Description for CRIT backpack +#. ~ Description for sleeveless survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " -"pack strikes a fine balance between storage space and encumbrance and allows" -" a larger weapon to be holstered, drawing and holstering is still rather " -"awkward even with the magnetized clips, but practice helps." +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT chestrig" -msgid_plural "CRIT chestrigs" +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT chestrig +#. ~ Description for survivor duffel bag #: lang/json/ARMOR_from_json.py msgid "" -"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " -"with light-armor padding." +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT leg guards" -msgid_plural "pairs of CRIT leg guards" -msgstr[0] "" -msgstr[1] "" +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "zaino da superstite" +msgstr[1] "zaini da superstite" -#. ~ Description for pair of CRIT leg guards +#. ~ Description for survivor backpack #: lang/json/ARMOR_from_json.py msgid "" -"Leg armor for those who fight. Simple design and durable material allows " -"for easy movement and the padding keeps the legs safe and warm in colder " -"conditions." +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." msgstr "" +"Uno zaino modificato. Durevole e creato accuratamente per contenere più " +"oggetti possibili." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT arm guards" -msgid_plural "pairs of CRIT arm guards" -msgstr[0] "" -msgstr[1] "" +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "zaino grande da sopravvivenza" +msgstr[1] "zaini grandi da sopravvivenza" -#. ~ Description for pair of CRIT arm guards +#. ~ Description for survivor rucksack #: lang/json/ARMOR_from_json.py msgid "" -"A pair of arm guards made from superalloy molded upon neoprene, and then " -"insulated with rubber. They are sturdy and will block attacks, but they are" -" ridiculously heavy." +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" +"Uno zaino pesante modificato. Durevole e creato accuratamente per contenere " +"più oggetti possibile. " #: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "zaino da corsa da sopravvivenza" +msgstr[1] "zaini da corsa da sopravvivenza" -#. ~ Description for CRIT web belt +#. ~ Description for survivor runner pack #: lang/json/ARMOR_from_json.py msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT infantry duster" -msgid_plural "CRIT infantry dusters" +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT infantry duster +#. ~ Description for pair of survivor fireboots #: lang/json/ARMOR_from_json.py msgid "" -"A thick full-length duster coat with rubber insulation. More than mildly " -"encumbering, but rather protective against any anti-infantry electrical " -"discharges from the robots. Has several pockets for storage." +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Armored Anomaly Suit" -msgid_plural "CRIT Armored Anomaly Suits" +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Armored Anomaly Suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A relatively simple suit of armor. A suit of woven composite fibers " -"combined with a cleansuit core and strategically placed segmented Kevlar " -"plates keep the suit light-weight and the one wearing it alive while " -"offering superb resistance to the elements and ambient radiation." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT drop leg pouch" -msgid_plural "CRIT drop leg pouches" +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT drop leg pouch +#. ~ Description for pair of heavy survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A set of pouches that can be worn on the thighs using buckled straps. This " -"variety is more compact and is favored by the C.R.I.T for its ease of use." +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Enforcer armor assembly" -msgid_plural "CRIT Enforcer armor assemblies" +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Enforcer armor assembly +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "paio di guanti pesanti da sopravvivenza" +msgstr[1] "paia di guanti pesanti da sopravvivenza" + +#. ~ Description for pair of heavy survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A series of plates, guards and buckles which assemble into a suit of sturdy " -"body-armor which usually goes over other armor. Overlapping steel plates on" -" top of Kevlar plates cover vast expanses as the armor juts off in places so" -" it can deflect attacks. Built with the idea that comfort is less important" -" than safety, this heavy suit is difficult to move about in but highly " -"protective. Various adjustable connectors such as straps and clips hold it " -"together." +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT Enforcer docks" -msgid_plural "pairs of CRIT Enforcer docks" +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT Enforcer docks +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "paio di guanti ignifughi da sopravvivenza" +msgstr[1] "paia di guanti ignifughi da sopravvivenza" + +#. ~ Description for pair of survivor firegloves #: lang/json/ARMOR_from_json.py msgid "" -"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " -"oversized feet which clamp down onto your own footwear keep your feet out of" -" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " -"designs, but they do seem to be worth using if you were to be in the middle " -"of a war zone." +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Soldier Suit" -msgid_plural "CRIT Soldier Suits" +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Soldier Suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A suit of modern body-armor. Strategically placed superalloy plates keep " -"the suit's weight minimal while Kevlar plates other areas and a lining of " -"soft neoprene pads areas for extra comfort. Most importantly, this can be " -"worn comfortably under other armor." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT Lone Wolf Series Armor" -msgid_plural "CRIT Lone Wolf Series Armors" +msgid "survivor firehood" +msgid_plural "survivor firehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Lone Wolf Series Armor +#. ~ Description for survivor firehood #: lang/json/ARMOR_from_json.py -msgid "" -"A matte black suit of outdated and bulky looking plate armor fitted onto a " -"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " -"armor will definitely protect you from practically anything. Just make sure" -" you can actually walk with it on though." +msgid "A customized armored Nomex and Kevlar hood, strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT blouse" -msgid_plural "CRIT blouses" +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT blouse +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "Tuta ignifuga da sopravvissuto" +msgstr[1] "Tute ignifughe da sopravvissuto" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" +"Armatura combinata pesante fatta a mano, fabbricata con un giubbotto " +"antiproiettile ridotto ed una tuta jumpsuit Nomex rinforzata resistente al " +"fuoco. Protegge l'indossatore dal fuoco e dagli elementi. " + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "paio di occhiali da sopravvivenza" +msgstr[1] "paia di occhiali da sopravvivenza" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sheet" +msgid_plural "sheets" +msgstr[0] "telo" +msgstr[1] "teli" + +#. ~ Description for sheet +#: lang/json/ARMOR_from_json.py +msgid "" +"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" +" a bunch of rags." +msgstr "" +"Un grande telo di stoffa, potrebbe essere usato come tenda o come lenzuola; " +"o tagliato per un mucchio di stracci." + +#: lang/json/ARMOR_from_json.py +msgid "blanket" +msgid_plural "blankets" +msgstr[0] "Coperta" +msgstr[1] "Coperte" + +#. ~ Description for blanket +#: lang/json/ARMOR_from_json.py +msgid "Hiding under here will not protect you from the monsters." +msgstr "Nascondersi qui sotto non ti proteggerà dai mostri." + +#: lang/json/ARMOR_from_json.py +msgid "down-filled blanket" +msgid_plural "down-filled blankets" +msgstr[0] "Coperta imbottita" +msgstr[1] "Coperte imbottite" + +#. ~ Description for down-filled blanket +#: lang/json/ARMOR_from_json.py +msgid "" +"Hiding under here will not protect you from the monsters, but it'll keep you" +" warm." +msgstr "" +"Anche se nascondersi qui sotto non ti proteggerà dai mostri, almeno ti terrà" +" al caldo." + +#: lang/json/ARMOR_from_json.py +msgid "fur blanket" +msgid_plural "fur blankets" +msgstr[0] "Coperta in pelliccia" +msgstr[1] "Coperte in pelliccia" + +#. ~ Description for fur blanket +#: lang/json/ARMOR_from_json.py +msgid "A heavy fur blanket that covers most of your body." +msgstr "" +"Una coperta pesante in pelliccia, che copre maggior parte del tuo corpo." + +#: lang/json/ARMOR_from_json.py +msgid "quilt" +msgid_plural "quilts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for quilt +#: lang/json/ARMOR_from_json.py +msgid "" +"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " +"cozy!" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "patchwork quilt" +msgid_plural "patchwork quilts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for patchwork quilt +#: lang/json/ARMOR_from_json.py +msgid "A huge, patchwork wool quilt. Very, very warm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeping bag" +msgid_plural "sleeping bags" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action msg for sleeping bag. +#: lang/json/ARMOR_from_json.py +msgid "You roll up the sleeping bag, preparing it for transport." +msgstr "" + +#. ~ Description for sleeping bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A large sleeping bag that covers you head to toe. This one is medium " +"weight." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "cestus" +msgid_plural "cestuses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cestus +#: lang/json/ARMOR_from_json.py +msgid "" +"A leather hand and arm wrap incorporating metal plates over the knuckles to " +"improve punching power and defence." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of studded gloves" +msgid_plural "pairs of studded gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of studded gloves +#: lang/json/ARMOR_from_json.py +msgid "A pair of gloves with studded metal knuckles." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "impact knuckles" +msgid_plural "impact knuckles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for impact knuckles +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of thick steel plates covering your proximal phalange. They are " +"strapped to your hands with metal braces." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "skewer knuckles" +msgid_plural "skewer knuckles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for skewer knuckles +#: lang/json/ARMOR_from_json.py +msgid "" +"A single sturdy spike protrudes 5cm from the back of your hand. They are " +"strapped to your hands with metal braces." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "telescoping umbrella" +msgid_plural "telescoping umbrellas" +msgstr[0] "ombrellino" +msgstr[1] "ombrellini" + +#. ~ Description for telescoping umbrella +#: lang/json/ARMOR_from_json.py +msgid "" +"A telescoping umbrella which collapses down for easy storage, useful for " +"keeping dry when wielded." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "bag of holding" +msgid_plural "bags of holding" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bag of holding +#: lang/json/ARMOR_from_json.py +msgid "" +"A sleek, unfathomably-complicated machine covered in dozens of blinking " +"lights, worn on the back by sturdy faux-leather straps. An electrode " +"dangles from the back, attaching to your forehead. How it operates without " +"annihilating spacetime isn't quite clear, but a localized portal allows " +"things to be stored in an extradimensional space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "titanium vest" +msgid_plural "titanium vests" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for titanium vest +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight armor vest made of pieces of titanium sewn together, with " +"cloth padding for comfort. Brittle against blunt force, but highly " +"resistant to cuts and corrosion." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sentinel-lx cloak" +msgid_plural "sentinel-lx cloaks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sentinel-lx cloak +#: lang/json/ARMOR_from_json.py +msgid "" +"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " +"unnatural shadow. Made from woven graphene, its lightweight and resistant, " +"but cannot be repaired" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL jeans" +msgid_plural "pairs of XL jeans" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL jeans +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL blue jeans with two deep pockets." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL work pants" +msgid_plural "pairs of XL work pants" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL blue work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL gray work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL light-blue work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL work t-shirt" +msgid_plural "XL work t-shirts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL work t-shirt +#: lang/json/ARMOR_from_json.py +msgid "A gray XL work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL blue work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL gray work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL light-blue work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Uplifted SWAT armor" +msgid_plural "Uplifted SWAT armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Uplifted SWAT armor +#: lang/json/ARMOR_from_json.py +msgid "" +"An extra large suit of black bulletproof armor with lots of pockets. The " +"word SWAT is emblazoned across the back. Specifically designed for Uplifted" +" officers such as Mastodons." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "empty XL ballistic vest" +msgid_plural "empty XL ballistic vests" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for empty XL ballistic vest +#: lang/json/ARMOR_from_json.py +msgid "" +"Oversized ballistic armor without any armor inserts. The soft armor plate " +"carrier is still protective but it won't stop high energy projectiles." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL ESAPI ballistic vest" +msgid_plural "XL ESAPI ballistic vests" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL ESAPI ballistic vest +#: lang/json/ARMOR_from_json.py +msgid "Oversized ballistic armor with ESAPI ceramic armor plates." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL combat boots" +msgid_plural "pair of XL combat boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL combat boots +#: lang/json/ARMOR_from_json.py +msgid "Modern oversized reinforced tactical combat boots. Very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL tactical gloves" +msgid_plural "pair of XL tactical gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL tactical gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " +"police and military units." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of Killophant gloves" +msgid_plural "pair of Killophant gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of Killophant gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of reinforced Kevlar tactical gloves, specifically designed to " +"accommodate three-fingered Killophants. Thinner than regular oversized " +"tactical gloves." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL leather belt" +msgid_plural "XL leather belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL leather belt +#: lang/json/ARMOR_from_json.py +msgid "" +"An XL leather belt. Useful for making your pair of pants fit if you need " +"really big pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL police duty belt" +msgid_plural "XL police duty belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL police duty belt +#: lang/json/ARMOR_from_json.py +msgid "" +"An XL black leather belt used by extremely large uplifted police officers. " +"It has several pouches and a holder for a baton." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL tactical full helmet" +msgid_plural "XL tactical full helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL tactical full helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"An all-encompassing massive black helmet that covers your entire face and " +"neck, providing excellent protection from all sorts of damage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL leg ammo pouch" +msgid_plural "XL leg ammo pouches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL leg ammo pouch +#: lang/json/ARMOR_from_json.py +msgid "" +"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" +" two magazines close at hand." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "crew jumpsuit" +msgid_plural "crew jumpsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for crew jumpsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " +"some freight hauling association or another. This one is a standard design " +"favored by spacers, with ample, easy access pockets." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "communications cap" +msgid_plural "communications caps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for communications cap +#: lang/json/ARMOR_from_json.py +msgid "" +"A padded cotton cap built around an augmented reality headset. During " +"normal operation it would provide visual information about a ship subsystems" +" and a communications link with the rest of the crew, but severed from a " +"spaceship, only their hearing protection function retains any utility." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "HERC rig" +msgid_plural "HERC rigs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for HERC rig +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " +"about in zero-g, Mars, the bottom of the Pacific, or other generally " +"inhospitable environments. It has several deep pockets, and two mounting " +"points for pressurized canisters or other large magazines." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "cecalia wetsuit" +msgid_plural "cecalia wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cecalia wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " +"explorer suit with no head or tentacle protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "combat wetsuit" +msgid_plural "combat wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for combat wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " +"will provide some level of protection for deep dwellers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nanomesh vest" +msgid_plural "nanomesh vests" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nanomesh vest +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight nanomesh vest designed to face down many of the perils of " +"space travel. These vests are mass produced and often stacked in starship " +"lockers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "vacuum cast cuirass" +msgid_plural "vacuum cast cuirasses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for vacuum cast cuirass +#: lang/json/ARMOR_from_json.py +msgid "" +"This piece of armor harkens back to renaissance designs. It differs in that" +" it is cast as a single piece in deep space installations where conditions " +"can be controlled absolutely." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "carbide raider's helmet" +msgid_plural "carbide raider's helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for carbide raider's helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"This helmet is designed for the individual that is worried about catching " +"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " +"environmental protection features, but it just might stop even the largest " +"of ballistic rounds." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "UICAS Point of Impact helmet" +msgid_plural "UICAS Point of Impact helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for UICAS Point of Impact helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight black helmet that provides excellent protection from all sorts" +" of damage, unless it's airborne. UICAS makes the point of designing all " +"headgear whenever possible with clear faceplates, in order to provide a " +"human touch to all interactions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "cold resistance cream" +msgid_plural "cold resistance creams" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cold resistance cream +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick layer of something that smells worse than walrus fat. But it keeps " +"you warm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "heat retention xtreme cream" +msgid_plural "heat retention xtreme creams" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for heat retention xtreme cream +#: lang/json/ARMOR_from_json.py +msgid "" +"The last word in cold snap protection designed to give short term protection" +" in the event of a suit breach in vacuum." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "titanium watch" +msgid_plural "titanium watches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for titanium watch +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick, masculine watch made out of titanium. It is durable, light-weight " +"and water-resistant, an excellent watch to have in a hostile environment." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "titanium ring" +msgid_plural "titanium rings" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for titanium ring +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick, masculine ring made out of titanium. Made in a variety of styles " +"and finishes, they're valued for their durability." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "hazardous environment suit" +msgid_plural "hazardous environment suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for hazardous environment suit +#: lang/json/ARMOR_from_json.py +msgid "" +"Developed for the exploration of alien planes, the lightweight, orange-black" +" HEV suit covers everything below the neck. While it possesses only modest " +"physical protection, it provides excellent protection from most " +"environmental hazards. A hatch in the front opens to provide a small amount" +" of storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "psychrophile handling gloves" +msgid_plural "psychrophile handling gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for psychrophile handling gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"These gloves are designed for handling organisms that live in extremely cold" +" temperatures. They can also be used to freeze your foes to death." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Engineering Suit" +msgid_plural "CRIT Engineering Suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Engineering Suit +#: lang/json/ARMOR_from_json.py +msgid "" +"An airtight, flexible suit of woven composite fibers complete with segmented" +" plates of armor. A complex system digitizes items in an individual pocket " +"universe for storage while built in joint-torsion ratchets generate the " +"necessary energy required to power the interface." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT face mask" +msgid_plural "CRIT face masks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT face mask +#: lang/json/ARMOR_from_json.py +msgid "" +"A standard issue face mask, lined with Kevlar for extra protection. A few " +"filters provide decent environmental safety, but it was not intended for " +"extended use. It has a basic integrated HUD." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT boots" +msgid_plural "pairs of CRIT boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " +"hygienic during long-term missions while absorbing shock and heat from " +"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " +"protection as well. Decently heavy though" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT LA boots" +msgid_plural "pairs of CRIT LA boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT LA boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " +"variant was created for missions in warmer climates. The LA boots keep most" +" of the old features of the standard issue boots but trade in protection for" +" easier movement." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT fingertip-less gloves" +msgid_plural "pairs of CRIT fingertip-less gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT fingertip-less gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue gloves. Made with superalloy mesh for those with " +"gene-modding and/or mutations while still allowing greater manipulation of " +"items and moderate protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT fingertip-less liners" +msgid_plural "pairs of CRIT fingertip-less liners" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT fingertip-less liners +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " +"for warmth and fingertip-less for those with gene-modding and/or mutations " +"while still allowing greater manipulation of items and moderate protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT backpack" +msgid_plural "CRIT backpacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " +"pack strikes a fine balance between storage space and encumbrance and allows" +" a larger weapon to be holstered, drawing and holstering is still rather " +"awkward even with the magnetized clips, but practice helps." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT chestrig" +msgid_plural "CRIT chestrigs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT chestrig +#: lang/json/ARMOR_from_json.py +msgid "" +"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " +"with light-armor padding." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT leg guards" +msgid_plural "pairs of CRIT leg guards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT leg guards +#: lang/json/ARMOR_from_json.py +msgid "" +"Leg armor for those who fight. Simple design and durable material allows " +"for easy movement and the padding keeps the legs safe and warm in colder " +"conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT arm guards" +msgid_plural "pairs of CRIT arm guards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT arm guards +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of arm guards made from superalloy molded upon neoprene, and then " +"insulated with rubber. They are sturdy and will block attacks, but they are" +" ridiculously heavy." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT infantry duster" +msgid_plural "CRIT infantry dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT infantry duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick full-length duster coat with rubber insulation. More than mildly " +"encumbering, but rather protective against any anti-infantry electrical " +"discharges from the robots. Has several pockets for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Armored Anomaly Suit" +msgid_plural "CRIT Armored Anomaly Suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Armored Anomaly Suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A relatively simple suit of armor. A suit of woven composite fibers " +"combined with a cleansuit core and strategically placed segmented Kevlar " +"plates keep the suit light-weight and the one wearing it alive while " +"offering superb resistance to the elements and ambient radiation." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT drop leg pouch" +msgid_plural "CRIT drop leg pouches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT drop leg pouch +#: lang/json/ARMOR_from_json.py +msgid "" +"A set of pouches that can be worn on the thighs using buckled straps. This " +"variety is more compact and is favored by the C.R.I.T for its ease of use." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Enforcer armor assembly" +msgid_plural "CRIT Enforcer armor assemblies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Enforcer armor assembly +#: lang/json/ARMOR_from_json.py +msgid "" +"A series of plates, guards and buckles which assemble into a suit of sturdy " +"body-armor which usually goes over other armor. Overlapping steel plates on" +" top of Kevlar plates cover vast expanses as the armor juts off in places so" +" it can deflect attacks. Built with the idea that comfort is less important" +" than safety, this heavy suit is difficult to move about in but highly " +"protective. Various adjustable connectors such as straps and clips hold it " +"together." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT Enforcer docks" +msgid_plural "pairs of CRIT Enforcer docks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of CRIT Enforcer docks +#: lang/json/ARMOR_from_json.py +msgid "" +"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " +"oversized feet which clamp down onto your own footwear keep your feet out of" +" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " +"designs, but they do seem to be worth using if you were to be in the middle " +"of a war zone." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Soldier Suit" +msgid_plural "CRIT Soldier Suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Soldier Suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A suit of modern body-armor. Strategically placed superalloy plates keep " +"the suit's weight minimal while Kevlar plates other areas and a lining of " +"soft neoprene pads areas for extra comfort. Most importantly, this can be " +"worn comfortably under other armor." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Lone Wolf Series Armor" +msgid_plural "CRIT Lone Wolf Series Armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT Lone Wolf Series Armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A matte black suit of outdated and bulky looking plate armor fitted onto a " +"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " +"armor will definitely protect you from practically anything. Just make sure" +" you can actually walk with it on though." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT blouse" +msgid_plural "CRIT blouses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for CRIT blouse #: lang/json/ARMOR_from_json.py msgid "" "A standard-issue military jacket. Durable, lightweight, and has ample " @@ -24349,7 +24407,7 @@ msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -24362,7 +24420,7 @@ msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -24405,6 +24463,12 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -24553,7 +24617,7 @@ msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -25040,7 +25104,7 @@ msgid_plural "freerunner's boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -25112,7 +25176,7 @@ msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -25127,7 +25191,7 @@ msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -25156,7 +25220,7 @@ msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -25214,7 +25278,7 @@ msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -25272,7 +25336,7 @@ msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -25283,7 +25347,7 @@ msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -25381,7 +25445,7 @@ msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -25392,7 +25456,7 @@ msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -25477,16 +25541,18 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "CBM alluminio corazzato - braccia" -msgstr[1] "CBM alluminio corazzato - braccia" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -25504,42 +25570,35 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" -msgstr[0] "CBM alluminio corazzato - testa" -msgstr[1] "CBM alluminio corazzato - testa" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" -msgstr[0] "CBM alluminio corazzato - gambe" -msgstr[1] "CBM alluminio corazzato - gambe" - -#. ~ Description for Legs Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" -msgstr[0] "CBM alluminio corazzato - torso" -msgstr[1] "CBM alluminio corazzato - torso" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -26265,7 +26324,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -26696,7 +26755,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -26910,7 +26969,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -28077,8 +28136,8 @@ msgstr "" #: lang/json/BOOK_from_json.py msgid "Liver-Licious Recipes Your Kids Will Love" msgid_plural "copies of Liver-Licious Recipes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Ricette Fega-Liziose Per Ingolosire I Tuoi Bambini" +msgstr[1] "copie di Ricette Fega-Liziose" #. ~ Description for Liver-Licious Recipes Your Kids Will Love #: lang/json/BOOK_from_json.py @@ -28280,7 +28339,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -28352,8 +28411,8 @@ msgstr "" #: lang/json/BOOK_from_json.py msgid "AAA Guide" msgid_plural "copies of AAA Guide" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Guida AAA" +msgstr[1] "copie di Guida AAA" #. ~ Description for AAA Guide #: lang/json/BOOK_from_json.py @@ -28362,6 +28421,10 @@ msgid "" "Though it focuses on the north-central US, the driving sections contain some" " practical tips on proper driving techniques." msgstr "" +"Una guida per turisti ai vari punti d'interesse di tutta la nazione. " +"Nonostante si focalizzi nell'area centro-settentrionale degli Stati Uniti, " +"la rubrica sulla guida contiene dei consigli pratici su corrette tecniche di" +" guida." #: lang/json/BOOK_from_json.py msgid "Top Gear magazine" @@ -28527,7 +28590,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -28567,7 +28630,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -28582,7 +28645,7 @@ msgid_plural "schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -28590,9 +28653,9 @@ msgstr[1] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -28608,7 +28671,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -28623,7 +28686,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -28638,7 +28701,7 @@ msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -28652,7 +28715,7 @@ msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -28666,7 +28729,7 @@ msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -28680,7 +28743,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -28694,7 +28757,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -28708,7 +28771,7 @@ msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -28722,7 +28785,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -28736,7 +28799,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -28750,7 +28813,7 @@ msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -28765,7 +28828,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -28780,7 +28843,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -28794,7 +28857,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -29412,7 +29475,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "Lo Spirito dell'Aikido" msgstr[1] "copie de Lo Spirito dell'Aikido" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "Una guida completa all'Aikido." @@ -29423,7 +29486,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -29435,7 +29498,7 @@ msgid_plural "Capoeira 100" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "" @@ -29446,7 +29509,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "" @@ -29457,7 +29520,7 @@ msgid_plural "The Red Crane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "" @@ -29468,7 +29531,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "" @@ -29479,7 +29542,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "" @@ -29490,7 +29553,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "" @@ -29501,7 +29564,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "" @@ -29512,7 +29575,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "" @@ -29523,7 +29586,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "Una guida completa sul Krav Maga." @@ -29534,7 +29597,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "" @@ -29545,7 +29608,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "" @@ -29556,7 +29619,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "" @@ -29567,7 +29630,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "L'essenza del Ninjutsu." msgstr[1] "copie de L'Essenza del Ninjutsu" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "Una guida completa sul Ninjutsu." @@ -29578,7 +29641,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -29591,7 +29654,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "" @@ -29602,7 +29665,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "" @@ -29613,7 +29676,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "" @@ -29624,7 +29687,7 @@ msgid_plural "The Black Snake" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "" @@ -29635,7 +29698,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -29646,7 +29709,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" @@ -29657,7 +29720,7 @@ msgid_plural "The White Tiger" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "" @@ -29668,7 +29731,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "" @@ -29679,7 +29742,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "" @@ -29690,7 +29753,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "" @@ -29701,7 +29764,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "" @@ -29712,7 +29775,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -29724,7 +29787,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -29738,7 +29801,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -29897,7 +29960,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -30788,7 +30851,7 @@ msgid_plural "patient treatment records" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -30799,7 +30862,7 @@ msgid_plural "national weather transcripts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -31879,13 +31942,13 @@ msgstr "" #: lang/json/BOOK_from_json.py msgid "scifi novel" msgid_plural "scifi novels" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "romanzo di fantascienza" +msgstr[1] "romanzi di fantascienza" #. ~ Description for scifi novel #: lang/json/BOOK_from_json.py msgid "Aliens, ray guns, and space ships." -msgstr "" +msgstr "Alieni, armi laser e navi spaziali." #: lang/json/BOOK_from_json.py msgid "" @@ -34269,7 +34332,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -34284,7 +34347,7 @@ msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -34299,7 +34362,7 @@ msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -34314,7 +34377,7 @@ msgid_plural "tank drone schematics" msgstr[0] "schemi carro drone" msgstr[1] "schemi carro drone" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -34333,7 +34396,7 @@ msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -34563,7 +34626,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -34574,7 +34637,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -34585,7 +34648,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -34598,7 +34661,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -34609,7 +34672,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -34622,7 +34685,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -34636,7 +34699,7 @@ msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -34647,7 +34710,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -34660,7 +34723,7 @@ msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -34671,7 +34734,7 @@ msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -34698,6 +34761,21 @@ msgstr[1] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -36778,7 +36856,7 @@ msgid_plural "bird litter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -36834,14 +36912,14 @@ msgid_plural "bleach" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -36854,7 +36932,7 @@ msgid_plural "ammonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -36867,7 +36945,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -36878,7 +36956,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -36889,7 +36967,7 @@ msgid_plural "fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -36902,7 +36980,7 @@ msgid_plural "insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -36915,7 +36993,7 @@ msgid_plural "salt water" msgstr[0] "acqua salata" msgstr[1] "acqua salata" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "Acqua con aggiunta di sale. Non buona per essere bevuta." @@ -36926,7 +37004,7 @@ msgid_plural "soapy water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -36948,7 +37026,7 @@ msgid_plural "sulfuric acid" msgstr[0] "acido solforico" msgstr[1] "acido solforico" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -36968,7 +37046,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "acido cloridrico" msgstr[1] "acido cloridrico" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -36986,7 +37064,7 @@ msgid_plural "nitric acid" msgstr[0] "acido nitrico" msgstr[1] "acido nitrico" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -37023,7 +37101,7 @@ msgid_plural "sewage water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -37034,7 +37112,7 @@ msgid_plural "lye" msgstr[0] "lisciva" msgstr[1] "lisciva" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -37049,7 +37127,7 @@ msgid_plural "ether" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -37064,7 +37142,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -37079,7 +37157,7 @@ msgid_plural "chloroform" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -37093,7 +37171,7 @@ msgid_plural "phenol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -37109,7 +37187,7 @@ msgid_plural "glycerol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -37122,7 +37200,7 @@ msgid_plural "peptone broth powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -37136,7 +37214,7 @@ msgid_plural "agar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -37151,7 +37229,7 @@ msgid_plural "acrylamide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -37164,7 +37242,7 @@ msgid_plural "acetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -37177,7 +37255,7 @@ msgid_plural "formic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -37190,7 +37268,7 @@ msgid_plural "latex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -37201,7 +37279,7 @@ msgid_plural "citric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -37278,13 +37356,24 @@ msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -37323,7 +37412,7 @@ msgid_plural "marloss wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -37334,7 +37423,7 @@ msgid_plural "Riesling" msgstr[0] "Riesling" msgstr[1] "Riesling" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "Vino bianco frizzante, ottenuto dall'uva più nobile del mondo." @@ -37345,7 +37434,7 @@ msgid_plural "Chardonnay" msgstr[0] "Chardonnay" msgstr[1] "Chardonnay" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "Il vino più popolare d'America, e per una buona ragione." @@ -37356,7 +37445,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -37371,7 +37460,7 @@ msgid_plural "pinot noir" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -37386,7 +37475,7 @@ msgid_plural "marsala" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -37397,7 +37486,7 @@ msgid_plural "vermouth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -37410,7 +37499,7 @@ msgid_plural "barley wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -37421,7 +37510,7 @@ msgid_plural "whiskey" msgstr[0] "Whiskey" msgstr[1] "Whiskey" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -37433,7 +37522,7 @@ msgid_plural "vodka" msgstr[0] "Vodka" msgstr[1] "Vodka" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -37446,7 +37535,7 @@ msgid_plural "gin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -37459,7 +37548,7 @@ msgid_plural "rum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -37472,7 +37561,7 @@ msgid_plural "tequila" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -37485,7 +37574,7 @@ msgid_plural "triple sec" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "Un liquore aromatizzato all'arancia usato in molti cocktail." @@ -37496,7 +37585,7 @@ msgid_plural "cheap wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "Vino molto economico fortificato." @@ -37507,7 +37596,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "cocktail forte" msgstr[1] "cocktails forti" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "Cocktails forti, miscelati senza alcun riguardo per il gusto." @@ -37518,7 +37607,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "cocktail debole" msgstr[1] "cocktails deboli" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "Cocktails deboli, miscelati senza alcun riguardo per il gusto." @@ -37529,7 +37618,7 @@ msgid_plural "fruit wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -37543,7 +37632,7 @@ msgid_plural "brandy" msgstr[0] "Brandy" msgstr[1] "Brandy" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -37558,7 +37647,7 @@ msgid_plural "Irish coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -37571,7 +37660,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -37598,7 +37687,7 @@ msgid_plural "wild apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "È come il sidro di mele, ma con aggiunta di vodka." @@ -37609,7 +37698,7 @@ msgid_plural "rum & cola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -37620,7 +37709,7 @@ msgid_plural "beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -37636,7 +37725,7 @@ msgid_plural "spiced mead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -37650,7 +37739,7 @@ msgid_plural "dandelion wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -37663,7 +37752,7 @@ msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -37674,7 +37763,7 @@ msgid_plural "pine wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -37687,7 +37776,7 @@ msgid_plural "homebrew beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -37698,7 +37787,7 @@ msgid_plural "moonshine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -37712,7 +37801,7 @@ msgid_plural "European pilsner" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -37725,7 +37814,7 @@ msgid_plural "American pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -37738,7 +37827,7 @@ msgid_plural "India pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -37751,7 +37840,7 @@ msgid_plural "stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -37762,7 +37851,7 @@ msgid_plural "Belgian ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -37777,7 +37866,7 @@ msgid_plural "imperial stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -37821,7 +37910,7 @@ msgid_plural "single malt whiskey" msgstr[0] "whiskey di singolo malto" msgstr[1] "whiskey di singolo malto" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "Solo il miglior whisky direttamente dal bung." @@ -37832,7 +37921,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -37843,7 +37932,7 @@ msgid_plural "cheap whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -37854,7 +37943,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -37865,7 +37954,7 @@ msgid_plural "sherry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -37877,7 +37966,7 @@ msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -37890,7 +37979,7 @@ msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -37901,7 +37990,7 @@ msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "" @@ -37912,7 +38001,7 @@ msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -37925,7 +38014,7 @@ msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -38022,7 +38111,7 @@ msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -38033,7 +38122,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -38045,7 +38134,7 @@ msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -38058,7 +38147,7 @@ msgid_plural "sourdough bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -38071,7 +38160,7 @@ msgid_plural "flatbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "" @@ -38082,7 +38171,7 @@ msgid_plural "bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "" @@ -38090,51 +38179,56 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "toast" msgid_plural "toast" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "toast" +msgstr[1] "toast" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " "some toppings." msgstr "" +"Una fetta croccante di pane, molto apprezzato a colazione; è un po' secco, " +"forse starebbe meglio con qualcosa sopra." #: lang/json/COMESTIBLE_from_json.py msgid "buttered toast" msgid_plural "buttered toast" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "toast imburrato" +msgstr[1] "toast imburrati" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." -msgstr "" +msgstr "Un toast con una spalmata di burro sopra, per migliorarne il sapore." #: lang/json/COMESTIBLE_from_json.py msgid "jam toast" msgid_plural "jam toast" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "toast con marmellata" +msgstr[1] "toast con marmellata" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " "breakfast staple." msgstr "" +"Un po' di marmellata aggiunge più sapore a questo classico della colazione." #: lang/json/COMESTIBLE_from_json.py msgid "peanut butter toast" msgid_plural "peanut butter toast" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "toast con burro di arachidi" +msgstr[1] "toast con burro di arachidi" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." msgstr "" +"Una spalmata di burro di arachidi contribuisce a dare più corpo e più " +"calorie a questa fetta di pane tostato." #: lang/json/COMESTIBLE_from_json.py msgid "toad in a hole" @@ -38142,7 +38236,7 @@ msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -38153,7 +38247,7 @@ msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -38166,7 +38260,7 @@ msgid_plural "cornbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "" @@ -38199,7 +38293,7 @@ msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -38223,7 +38317,7 @@ msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -38237,7 +38331,7 @@ msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -38248,7 +38342,7 @@ msgid_plural "hallula" msgstr[0] "hallula" msgstr[1] "hallula" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -38526,18 +38620,18 @@ msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -38548,8 +38642,8 @@ msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -38565,14 +38659,14 @@ msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -38583,7 +38677,7 @@ msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -38612,7 +38706,7 @@ msgid_plural "cooked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "Del pesce fresco di cottura. Molto nutriente." @@ -38713,7 +38807,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "Carne appena macellata. Puoi mangiarla cruda, ma cotta è meglio." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "Sangue fresco estratto da una creatura vivente." @@ -38818,7 +38912,7 @@ msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -38857,7 +38951,7 @@ msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -38904,7 +38998,7 @@ msgid_plural "butchery refuse" msgstr[0] "scarto di macellazione" msgstr[1] "scarti di macellazione" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -39001,7 +39095,7 @@ msgid_plural "cooked offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -39015,7 +39109,7 @@ msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -39026,7 +39120,7 @@ msgid_plural "pickled offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -39043,7 +39137,7 @@ msgid_plural "canned offal" msgstr[0] "frattaglie in scatola" msgstr[1] "frattaglie in scatola" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -39080,31 +39174,28 @@ msgid_plural "meat jerky" msgstr[0] "striscia di carne essiccata" msgstr[1] "strisce di carne essiccata" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -39118,7 +39209,7 @@ msgid_plural "salted fish" msgstr[0] "pesce salato" msgstr[1] "pesci salati" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -39132,33 +39223,27 @@ msgid_plural "smoked meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -39181,7 +39266,7 @@ msgid_plural "smoked fish" msgstr[0] "pesce affumicato" msgstr[1] "pesce affumicato" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -39242,7 +39327,7 @@ msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -39296,7 +39381,7 @@ msgid_plural "raw brains" msgstr[0] "cervello crudo" msgstr[1] "cervelli crudi" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "Il cervello di un animale. Mica vorrai mangiarlo crudo..." @@ -39307,7 +39392,7 @@ msgid_plural "cooked brains" msgstr[0] "cervello cotto" msgstr[1] "cervelli cotti" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -39392,7 +39477,7 @@ msgstr[1] "" msgid "Normally a delicacy, it needs a little… something." msgstr "Di solito è un delizia... Ha bisogno di quel qualcosa in più..." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "Sangue,possibilmente quello di un essere umano. Disgustoso!" @@ -39555,7 +39640,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "Carne chiaramente non salutare. Puoi mangiarla, ma ti avvelenerà." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -39804,7 +39889,7 @@ msgid_plural "alien fronds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -39909,7 +39994,7 @@ msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -39920,7 +40005,7 @@ msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -39958,13 +40043,38 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -39978,7 +40088,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -39991,7 +40101,7 @@ msgid_plural "cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -40002,7 +40112,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -40014,7 +40124,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -40027,7 +40137,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -40040,7 +40150,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -40053,7 +40163,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -40066,7 +40176,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -40092,7 +40202,7 @@ msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -40116,7 +40226,7 @@ msgid_plural "wheat cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -40140,7 +40250,7 @@ msgid_plural "milk" msgstr[0] "latte" msgstr[1] "latte" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -40153,7 +40263,7 @@ msgid_plural "chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -40164,7 +40274,7 @@ msgid_plural "reconstituted milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -40177,7 +40287,7 @@ msgid_plural "raw milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -40196,7 +40306,7 @@ msgid_plural "shelf stable milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -40213,7 +40323,7 @@ msgid_plural "evaporated milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -40225,7 +40335,7 @@ msgid_plural "buttermilk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -40249,7 +40359,7 @@ msgid_plural "butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -40263,7 +40373,7 @@ msgid_plural "raw butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -40277,7 +40387,7 @@ msgid_plural "ghee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -40316,7 +40426,7 @@ msgid_plural "hard cheese" msgstr[0] "formaggio a pasta dura" msgstr[1] "formaggio a pasta dura" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -40331,7 +40441,7 @@ msgid_plural "cheese" msgstr[0] "formaggio" msgstr[1] "formaggio" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "Un blocco di formaggio giallo confezionato." @@ -40353,7 +40463,7 @@ msgid_plural "powdered milk" msgstr[0] "latte in polvere" msgstr[1] "latte in polvere" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -40365,7 +40475,7 @@ msgid_plural "condensed milk" msgstr[0] "latte condensato" msgstr[1] "latte condensato" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -40380,7 +40490,7 @@ msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -40393,7 +40503,7 @@ msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -40404,7 +40514,7 @@ msgid_plural "apple cider" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "Pressato da mele fresche. Gustoso e nutriente." @@ -40447,7 +40557,7 @@ msgid_plural "atomic coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -40461,7 +40571,7 @@ msgid_plural "bee balm tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -40488,7 +40598,7 @@ msgid_plural "chai tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" @@ -40499,7 +40609,7 @@ msgid_plural "chamomile tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -40525,7 +40635,7 @@ msgid_plural "coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -40543,7 +40653,7 @@ msgid_plural "coffee substitute" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -40557,7 +40667,7 @@ msgid_plural "chicory brew" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -40633,7 +40743,7 @@ msgid_plural "dandelion tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -40644,7 +40754,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -40703,7 +40813,7 @@ msgid_plural "herbal tea" msgstr[0] "tè alle erbe" msgstr[1] "tè alle erbe" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "Una bevanda salutare a base di erbe macerate in acqua bollente." @@ -40714,7 +40824,7 @@ msgid_plural "hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -40762,7 +40872,7 @@ msgid_plural "lemonade" msgstr[0] "limonata" msgstr[1] "limonata" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -40793,7 +40903,7 @@ msgid_plural "lotus tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -40804,7 +40914,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -40867,7 +40977,7 @@ msgid_plural "pine needle tea" msgstr[0] "tè agli aghi di pino" msgstr[1] "tè agli aghi di pino" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -40910,7 +41020,7 @@ msgid_plural "root beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "Come la Coca-Cola, ma senza caffeina. Ancora non così salutare." @@ -40949,13 +41059,13 @@ msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -40981,7 +41091,7 @@ msgid_plural "sweet water" msgstr[0] "acqua dolce" msgstr[1] "acqua dolce" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "Acqua addolcita con zucchero o miele. Abbastanza buona." @@ -41007,7 +41117,7 @@ msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -41047,7 +41157,7 @@ msgid_plural "water" msgstr[0] "acqua" msgstr[1] "acqua" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -41062,7 +41172,7 @@ msgid_plural "clean water" msgstr[0] "acqua fresca" msgstr[1] "acqua fresca" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "Acqua fresca e pulita. La miglior cosa per dissetarti." @@ -41073,7 +41183,7 @@ msgid_plural "mineral water" msgstr[0] "acqua minerale" msgstr[1] "acqua minerale" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -41217,7 +41327,7 @@ msgid_plural "maple sap" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -41228,7 +41338,7 @@ msgid_plural "mayonnaise" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -41255,7 +41365,7 @@ msgid_plural "mustard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -41268,7 +41378,7 @@ msgid_plural "forest honey" msgstr[0] "miele di bosco" msgstr[1] "miele di bosco" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -41281,7 +41391,7 @@ msgid_plural "vinegar" msgstr[0] "aceto" msgstr[1] "aceto" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -41294,7 +41404,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "Olio vegetale giallo, leggero, usato per cucinare." @@ -41305,7 +41415,7 @@ msgid_plural "animal cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -41316,7 +41426,7 @@ msgid_plural "molasses" msgstr[0] "melassa" msgstr[1] "melassa" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -41332,7 +41442,7 @@ msgid_plural "horseradish" msgstr[0] "rafano" msgstr[1] "rafani" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "Una radice piccante e grigliata immersa in salamoia." @@ -41343,7 +41453,7 @@ msgid_plural "coffee syrup" msgstr[0] "sciroppo di caffè" msgstr[1] "sciroppo di caffè" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -41687,7 +41797,7 @@ msgid_plural "scrambled eggs" msgstr[0] "uovo strapazzato" msgstr[1] "uova strapazzate" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "Soffici e deliziose uova strapazzate." @@ -41709,7 +41819,7 @@ msgid_plural "fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -41722,7 +41832,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -41735,7 +41845,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -41748,7 +41858,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -41942,7 +42052,7 @@ msgid_plural "frozen yogurt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -42012,7 +42122,7 @@ msgid_plural "peaches in syrup" msgstr[0] "pesche sciroppate" msgstr[1] "pesche sciroppate" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "Fette di pesca gialla appiccicate, immerse in uno sciroppo leggero." @@ -42034,7 +42144,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -42071,7 +42181,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "frutta disidratata" msgstr[1] "frutta disidratata" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -42088,7 +42198,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "frutta reidratata" msgstr[1] "frutta reidratata" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -42115,7 +42225,7 @@ msgid_plural "canned fruit" msgstr[0] "frutta in scatola" msgstr[1] "frutta in scatola" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -42128,7 +42238,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -42152,7 +42262,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -42210,8 +42320,9 @@ msgid "" "An irradiated raspberry will remain edible nearly forever. Sterilized using" " radiation, so it's safe to eat." msgstr "" -"Un lampone irradiato rimarrà commestibile quasi per sempre. Sterilizzato con" -" irraggiamento, quindi è sicuro da mangiare." +"Un lampone irradiato rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated cranberry" @@ -42225,8 +42336,9 @@ msgid "" "An irradiated cranberry will remain edible nearly forever. Sterilized using" " radiation, so it's safe to eat." msgstr "" -"Un mirtillo irradiato rimarrà commestibile quasi per sempre. Sterilizzato " -"con irraggiamento, quindi è sicuro da mangiare." +"Un mirtillo irradiato rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated strawberry" @@ -42240,8 +42352,9 @@ msgid "" "An irradiated strawberry will remain edible nearly forever. Sterilized " "using radiation, so it's safe to eat." msgstr "" -"Una fragola irradiata rimarrà commestibile quasi per sempre. Sterilizzata " -"con irraggiamento, quindi è sicura da mangiare." +"Una fragola irradiata rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated blueberry" @@ -42255,14 +42368,15 @@ msgid "" "An irradiated blueberry will remain edible nearly forever. Sterilized using" " radiation, so it's safe to eat." msgstr "" -"Un mirtillo irradiato rimarrà commestibile quasi per sempre. Sterilizzato " -"con irraggiamento, quindi è sicuro da mangiare." +"Un mirtillo irradiato rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated apple" msgid_plural "irradiated apples" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "mela irradiata" +msgstr[1] "mele irradiate" #. ~ Description for irradiated apple #: lang/json/COMESTIBLE_from_json.py @@ -42270,14 +42384,14 @@ msgid "" "Mmm, irradiated. Will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Mmm, irradiata. Rimarrà commestibile per sempre. È sterilizzato dalle " -"radiazioni, quindi è sicuro da mangiare." +"Mmm, irradiata. Rimarrà commestibile quasi per sempre. La sterilizzazione " +"tramite radiazioni garantisce la più completa sicurezza di questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated banana" msgid_plural "irradiated bananas" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "banana irradiata" +msgstr[1] "banane irradiate" #. ~ Description for irradiated banana #: lang/json/COMESTIBLE_from_json.py @@ -42285,14 +42399,14 @@ msgid "" "An irradiated banana will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Una banana irradiata rimarrà commestibile per sempre. È sterilizzato dalle " -"radiazioni, quindi è sicuro da mangiare." +"Una banana irradiata rimarrà commestibile per sempre. La sterilizzazione " +"tramite radiazioni garantisce la più completa sicurezza di questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated orange" msgid_plural "irradiated oranges" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "arancia irradiata" +msgstr[1] "arance irradiate" #. ~ Description for irradiated orange #: lang/json/COMESTIBLE_from_json.py @@ -42300,14 +42414,14 @@ msgid "" "An irradiated orange will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Un'arancia irradiata rimarrà commestibile per sempre. È sterilizzato dalle " -"radiazioni, quindi è sicuro da mangiare." +"Un'arancia irradiata rimarrà commestibile per sempre. La sterilizzazione " +"tramite radiazioni garantisce la più completa sicurezza di questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated lemon" msgid_plural "irradiated lemons" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "limone irradiato" +msgstr[1] "limoni irradiati" #. ~ Description for irradiated lemon #: lang/json/COMESTIBLE_from_json.py @@ -42315,14 +42429,14 @@ msgid "" "An irradiated lemon will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Un limone irradiato rimarrà commestibile per sempre. È sterilizzato dalle " -"radiazioni, quindi è sicuro da mangiare." +"Un limone irradiato rimarrà commestibile per sempre. La sterilizzazione " +"tramite radiazioni garantisce la più completa sicurezza di questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated grapefruit" msgid_plural "irradiated grapefruits" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pompelmo irradiato" +msgstr[1] "pompelmi irradiati" #. ~ Description for irradiated grapefruit #: lang/json/COMESTIBLE_from_json.py @@ -42330,14 +42444,15 @@ msgid "" "An irradiated grapefruit will remain edible nearly forever. Sterilized " "using radiation, so it's safe to eat." msgstr "" -"Un pompelmo irradiato rimarrà commestibile quasi per sempre. Sterilizzato " -"con irraggiamento, quindi è sicuro da mangiare." +"Un pompelmo irradiato rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated pear" msgid_plural "irradiated pears" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pera irradiata" +msgstr[1] "pere irradiate" #. ~ Description for irradiated pear #: lang/json/COMESTIBLE_from_json.py @@ -42345,8 +42460,8 @@ msgid "" "An irradiated pear will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Una pera irradiata rimarrà commestibile quasi per sempre. Sterilizzata con " -"irraggiamento, quindi è sicura da mangiare." +"Una pera irradiata rimarrà commestibile quasi per sempre. La sterilizzazione" +" tramite radiazioni garantisce la più completa sicurezza di questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated cherry" @@ -42360,14 +42475,15 @@ msgid "" "An irradiated cherry will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Una ciliegia irradiata rimarrà commestibile quasi per sempre. Sterilizzata " -"con irraggiamento, quindi è sicura da mangiare." +"Una ciliegia irradiata rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated plum" msgid_plural "irradiated plums" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "prugna irradiata" +msgstr[1] "prugne irradiate" #. ~ Description for irradiated plum #: lang/json/COMESTIBLE_from_json.py @@ -42381,8 +42497,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated grape" msgid_plural "irradiated grapes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "uva irradiata" +msgstr[1] "uva irradiata" #. ~ Description for irradiated grape #: lang/json/COMESTIBLE_from_json.py @@ -42390,14 +42506,14 @@ msgid "" "An irradiated grape will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Dell'uva irradiata rimarrà commestibile quasi per sempre. Sterilizzata con " -"irraggiamento, quindi è sicura da mangiare." +"Dell'uva irradiata rimarrà commestibile quasi per sempre. La sterilizzazione" +" tramite radiazioni garantisce la più completa sicurezza di questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated pineapple" msgid_plural "irradiated pineapples" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ananas irradiato" +msgstr[1] "ananas irradiati" #. ~ Description for irradiated pineapple #: lang/json/COMESTIBLE_from_json.py @@ -42405,8 +42521,9 @@ msgid "" "An irradiated pineapple will remain edible nearly forever. Sterilized using" " radiation, so it's safe to eat." msgstr "" -"Un ananas irradiato rimarrà commestibile quasi per sempre. Sterilizzato con " -"irraggiamento, quindi è sicuro da mangiare." +"Un ananas irradiato rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated peach" @@ -42420,14 +42537,15 @@ msgid "" "An irradiated peach will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Una pesca irradiata rimarrà commestibile quasi per sempre. Sterilizzata con " -"irraggiamento, quindi è sicura da mangiare." +"Una pesca irradiata rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated watermelon" msgid_plural "irradiated watermelons" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "anguria irradiata" +msgstr[1] "angurie irradiate" #. ~ Description for irradiated watermelon #: lang/json/COMESTIBLE_from_json.py @@ -42441,8 +42559,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated melon" msgid_plural "irradiated melons" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "melone irradiato" +msgstr[1] "meloni irradiati" #. ~ Description for irradiated melon #: lang/json/COMESTIBLE_from_json.py @@ -42450,8 +42568,9 @@ msgid "" "An irradiated melon will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Un melone irradiato rimarrà commestibile quasi per sempre. È sterilizzato " -"con irraggiamento, quindi è sicuro da mangiare." +"Un melone irradiato rimarrà commestibile quasi per sempre. È sterilizzato La" +" sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated blackberry" @@ -42465,14 +42584,14 @@ msgid "" "An irradiated blackberry will remain edible nearly forever. Sterilized " "using radiation, so it's safe to eat." msgstr "" -"Una mora irradiata rimarrà commestibile quasi per sempre. Sterilizzata con " -"irraggiamento, quindi è sicura da mangiare." +"Una mora irradiata rimarrà commestibile quasi per sempre. La sterilizzazione" +" tramite radiazioni garantisce la più completa sicurezza di questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated mango" msgid_plural "irradiated mangos" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "mango irradiato" +msgstr[1] "manghi irradiati" #. ~ Description for irradiated mango #: lang/json/COMESTIBLE_from_json.py @@ -42480,14 +42599,14 @@ msgid "" "An irradiated mango will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Un mango irradiato rimarrà commestibile quasi per sempre. Sterilizzato con " -"irraggiamento, quindi è sicuro da mangiare." +"Un mango irradiato rimarrà commestibile quasi per sempre. La sterilizzazione" +" tramite radiazioni garantisce la più completa sicurezza di questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated pomegranate" msgid_plural "irradiated pomegranates" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "melagrana irradiata" +msgstr[1] "melagrane irradiate" #. ~ Description for irradiated pomegranate #: lang/json/COMESTIBLE_from_json.py @@ -42495,14 +42614,15 @@ msgid "" "An irradiated pomegranate will remain edible nearly forever. Sterilized " "using radiation, so it's safe to eat." msgstr "" -"Un melograno irradiato rimarrà commestibile quasi per sempre. Sterilizzato " -"con irraggiamento, quindi è sicuro da mangiare." +"Un melograno irradiato rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated papaya" msgid_plural "irradiated papayas" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "papaia irradiata" +msgstr[1] "papaie irradiate" #. ~ Description for irradiated papaya #: lang/json/COMESTIBLE_from_json.py @@ -42510,14 +42630,15 @@ msgid "" "An irradiated papaya will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Una papaia irradiata rimarrà commestibile quasi per sempre. Sterilizzata con" -" irraggiamento, quindi è sicura da mangiare." +"Una papaia irradiata rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated kiwi" msgid_plural "irradiated kiwis" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "kiwi irradiato" +msgstr[1] "kiwi irradiati" #. ~ Description for irradiated kiwi #: lang/json/COMESTIBLE_from_json.py @@ -42525,14 +42646,14 @@ msgid "" "An irradiated kiwi will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Una kiwi irradiato rimarrà commestibile quasi per sempre. Sterilizzato con " -"irraggiamento, quindi è sicuro da mangiare." +"Una kiwi irradiato rimarrà commestibile quasi per sempre. La sterilizzazione" +" tramite radiazioni garantisce la più completa sicurezza di questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated apricot" msgid_plural "irradiated apricots" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "albicocca irradiata" +msgstr[1] "albicocche irradiate" #. ~ Description for irradiated apricot #: lang/json/COMESTIBLE_from_json.py @@ -42540,14 +42661,15 @@ msgid "" "An irradiated apricot will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Un'albicocca irradiata rimarrà commestibile quasi per sempre. Sterilizzata " -"con irraggiamento, quindi è sicura da mangiare." +"Un'albicocca irradiata rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated lettuce" msgid_plural "irradiated lettuces" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "lattuga irradiata" +msgstr[1] "lattuga irradiata" #. ~ Description for irradiated lettuce #: lang/json/COMESTIBLE_from_json.py @@ -42561,8 +42683,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated cabbage" msgid_plural "irradiated cabbages" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "cavolo irradiato" +msgstr[1] "cavoli irradiati" #. ~ Description for irradiated cabbage #: lang/json/COMESTIBLE_from_json.py @@ -42585,8 +42707,9 @@ msgid "" "An irradiated tomato will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Un pomodoro irradiato rimarrà commestibile quasi per sempre. Sterilizzato " -"con irraggiamento, quindi è sicuro da mangiare." +"Un pomodoro irradiato rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated broccoli" @@ -42594,20 +42717,21 @@ msgid_plural "irradiated broccoli" msgstr[0] "broccolo irradiato" msgstr[1] "broccoli irradiati" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " "Sterilized using radiation, so it's safe to eat." msgstr "" -"Un mazzo di broccoli irradiati rimarrà commestibile quasi per sempre. " -"Sterilizzato con irraggiamento, quindi è sicuro da mangiare." +"Un mazzo di broccoli irradiati rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated zucchini" msgid_plural "irradiated zucchinis" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "zucchina irradiata" +msgstr[1] "zucchine irradiate" #. ~ Description for irradiated zucchini #: lang/json/COMESTIBLE_from_json.py @@ -42615,14 +42739,15 @@ msgid "" "An irradiated zucchini will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Una zucchina irradiata rimarrà commestibile quasi per sempre. Sterilizzata " -"con irraggiamento, quindi è sicura da mangiare." +"Una zucchina irradiata rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated onion" msgid_plural "irradiated onions" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "cipolla irradiata" +msgstr[1] "cipolle irradiate" #. ~ Description for irradiated onion #: lang/json/COMESTIBLE_from_json.py @@ -42630,14 +42755,15 @@ msgid "" "An irradiated onion will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Una cipolla irradiata rimarrà commestibile quasi per sempre. Sterilizzata " -"con irraggiamento, quindi è sicura da mangiare." +"Una cipolla irradiata rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated carrot" msgid_plural "irradiated carrots" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "carota irradiata" +msgstr[1] "carote irradiate" #. ~ Description for irradiated carrot #: lang/json/COMESTIBLE_from_json.py @@ -42654,7 +42780,7 @@ msgid_plural "irradiated corn" msgstr[0] "mais irradiato" msgstr[1] "mais irradiato" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -42666,8 +42792,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated pumpkin" msgid_plural "irradiated pumpkins" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "zucca irradiata" +msgstr[1] "zucche irradiate" #. ~ Description for irradiated pumpkin #: lang/json/COMESTIBLE_from_json.py @@ -42675,8 +42801,9 @@ msgid "" "An irradiated pumpkin will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Una zucca irradiata rimarrà commestibile quasi per sempre. Sterilizzata con " -"irraggiamento, quindi è sicura da mangiare." +"Una zucca irradiata rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated potato" @@ -42690,14 +42817,15 @@ msgid "" "An irradiated potato will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Una patata irradiata rimarrà commestibile quasi per sempre. Sterilizzata con" -" irraggiamento, quindi è sicura da mangiare." +"Una patata irradiata rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated cucumber" msgid_plural "irradiated cucumbers" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "cetriolo irradiato" +msgstr[1] "cetrioli irradiati" #. ~ Description for irradiated cucumber #: lang/json/COMESTIBLE_from_json.py @@ -42705,38 +42833,41 @@ msgid "" "An irradiated cucumber will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Un cetriolo irradiato rimarrà commestibile quasi per sempre. Sterilizzato " -"con irraggiamento, quindi è sicuro da mangiare." +"Un cetriolo irradiato rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated celery" msgid_plural "irradiated celery" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "sedano irradiato" +msgstr[1] "sedani irradiati" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " "Sterilized using radiation, so it's safe to eat." msgstr "" -"Un mazzo di sedani irradiati resta commestibile quasi per sempre. " -"Sterilizzato con irraggiamento, quindi è sicuro da mangiare." +"Un mazzo di sedani irradiati resta commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "irradiated rhubarb" msgid_plural "irradiated rhubarb" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "rabarbaro irradiato" +msgstr[1] "rabarbari irradiati" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " "radiation, so it's safe to eat." msgstr "" -"Un rabarbaro irradiato rimarrà commestibile quasi per sempre. Sterilizzato " -"con irraggiamento, quindi è sicuro da mangiare." +"Un rabarbaro irradiato rimarrà commestibile quasi per sempre. La " +"sterilizzazione tramite radiazioni garantisce la più completa sicurezza di " +"questo alimento." #: lang/json/COMESTIBLE_from_json.py msgid "toast-em" @@ -42839,12 +42970,12 @@ msgid_plural "potato chips" msgstr[0] "Patatine" msgstr[1] "Patatine" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "Patatine sottili e salate." -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -42855,7 +42986,7 @@ msgid_plural "popcorn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -42870,7 +43001,7 @@ msgid_plural "popcorn" msgstr[0] "popcorn" msgstr[1] "popcorn" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -42885,7 +43016,7 @@ msgid_plural "salted popcorn" msgstr[0] "popcorn salato" msgstr[1] "popcorn salato" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "Popcorn con aggiunta di sale, per migliorare il gusto." @@ -42896,7 +43027,7 @@ msgid_plural "buttered popcorn" msgstr[0] "popcorn con burro" msgstr[1] "popcorn con burro" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "Popcorn con aggiunta di burro, per migliorare il gusto." @@ -42907,7 +43038,7 @@ msgid_plural "pretzels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "Uno spuntino salato." @@ -42940,7 +43071,7 @@ msgid_plural "marshmallows" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "Una manciata di deliziosi e soffici marshmallows." @@ -42951,7 +43082,7 @@ msgid_plural "s'mores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -42986,7 +43117,7 @@ msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -42997,12 +43128,12 @@ msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -43050,7 +43181,7 @@ msgid_plural "powder candy sticks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -43124,7 +43255,7 @@ msgid_plural "maple syrup" msgstr[0] "sciroppo d'acero" msgstr[1] "sciroppo d'acero" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -43139,7 +43270,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "sciroppo di barbabietole da zucchero" msgstr[1] "sciroppo di barbabietole da zucchero" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -43194,7 +43325,7 @@ msgid_plural "fast-food French fries" msgstr[0] "patatine fritte da fast-food " msgstr[1] "patatine fritte da fast-food " -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -43207,7 +43338,7 @@ msgid_plural "French fries" msgstr[0] "Patatine fritte" msgstr[1] "Patatine fritte" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -43232,7 +43363,7 @@ msgid_plural "Necco wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -43262,8 +43393,8 @@ msgid_plural "caramel" msgstr[0] "caramello" msgstr[1] "caramello" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "Del caramello. Fa male alla tua salute." @@ -43274,7 +43405,7 @@ msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "Scommetto che non puoi mangiarne solo una." @@ -43285,7 +43416,7 @@ msgid_plural "tortilla chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -43300,7 +43431,7 @@ msgid_plural "cheese nachos" msgstr[0] "nachos con formaggio" msgstr[1] "nachos con formaggio" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -43315,31 +43446,28 @@ msgid_plural "meat nachos" msgstr[0] "nachos con carne" msgstr[1] "nachos con carne" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -43354,31 +43482,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "nachos con carne & formaggio" msgstr[1] "nachos con carne & formaggio" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -43393,7 +43521,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "nachos vegetariani" msgstr[1] "nachos vegetariani" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -43408,7 +43536,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "nachos vegetariani con formaggio" msgstr[1] "nachos vegetariani con formaggio" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -43490,7 +43618,7 @@ msgid_plural "chili dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" @@ -43501,7 +43629,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "corn dog crudo" msgstr[1] "corn dog crudi" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -43577,7 +43705,7 @@ msgid_plural "cheese fries" msgstr[0] "patatine fritte al formaggio" msgstr[1] "patatine fritte al formaggio" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "Una porzione di patatine fritte ricoperte con delizioso formaggio ." @@ -43665,8 +43793,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -43809,32 +43936,26 @@ msgid_plural "raw sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -43853,15 +43974,14 @@ msgid_plural "smoked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -43880,15 +44000,14 @@ msgid_plural "cooked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -43918,23 +44037,21 @@ msgid_plural "bratwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -43955,7 +44072,7 @@ msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -44011,7 +44128,7 @@ msgid_plural "cracklins" msgstr[0] "ciccioli" msgstr[1] "ciccioli" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -44024,8 +44141,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -44033,7 +44149,7 @@ msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -44047,7 +44163,7 @@ msgid_plural "currywursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -44055,8 +44171,7 @@ msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -44064,8 +44179,7 @@ msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -44086,9 +44200,8 @@ msgid_plural "aspics" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -44096,9 +44209,8 @@ msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -44106,9 +44218,8 @@ msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -44130,7 +44241,7 @@ msgid_plural "dehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -44143,7 +44254,7 @@ msgid_plural "rehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -44156,7 +44267,7 @@ msgid_plural "pickled fish" msgstr[0] "pesce in salamoia" msgstr[1] "pesci in salamoia" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -44168,7 +44279,7 @@ msgid_plural "canned fish" msgstr[0] "pesce in scatola" msgstr[1] "pesci in scatola" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -44181,7 +44292,7 @@ msgid_plural "batter fried fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -44214,8 +44325,7 @@ msgid_plural "lunch meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -44236,7 +44346,7 @@ msgid_plural "bologna" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -44244,8 +44354,7 @@ msgid_plural "brat %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -44253,8 +44362,7 @@ msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -44262,7 +44370,7 @@ msgid_plural "bleak %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -44293,7 +44401,7 @@ msgid_plural "SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -44334,24 +44442,22 @@ msgid_plural "sausage gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -44372,7 +44478,7 @@ msgid_plural "pemmican" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -44380,8 +44486,7 @@ msgid_plural "prepper %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -44389,8 +44494,7 @@ msgid_plural "Orley %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -44398,7 +44502,7 @@ msgid_plural "pernicious %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -44415,15 +44519,14 @@ msgid_plural "hamburger helpers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -44431,8 +44534,7 @@ msgid_plural "halfling helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -44468,24 +44570,22 @@ msgid_plural "chilis con carne" msgstr[0] "chili con carne" msgstr[1] "chili con carne" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -44503,7 +44603,7 @@ msgid_plural "pork and beans" msgstr[0] "carne di maiale e fagioli" msgstr[1] "carne di maiale e fagioli" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -44518,7 +44618,7 @@ msgid_plural "canned tuna fish" msgstr[0] "tonno in scatola" msgstr[1] "tonno in scatola" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "Ora con il 95 per cento in meno di delfini!" @@ -44529,7 +44629,7 @@ msgid_plural "canned salmon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "Impasto di pesce di un rosa brillante in barattolo!" @@ -44551,7 +44651,7 @@ msgid_plural "pickled herring" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -44573,16 +44673,14 @@ msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -44604,15 +44702,14 @@ msgid_plural "baked beans" msgstr[0] "fagioli al forno" msgstr[1] "fagioli al forno" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "Fagioli cotti con carne. Saporiti e sfamante." @@ -44623,15 +44720,14 @@ msgid_plural "meat fried rice" msgstr[0] "riso fritto con carne" msgstr[1] "riso fritto con carne" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "Delizioso riso fritto con carne. Saporito e sfamante." @@ -44642,15 +44738,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "fagioli e riso deluxe" msgstr[1] "fagioli e riso deluxe" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -44663,22 +44759,21 @@ msgid_plural "meat pies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -44697,23 +44792,21 @@ msgid_plural "meat pizzas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -44745,31 +44838,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "uovo strapazzato deluxe" msgstr[1] "uova strapazzate deluxe" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -44784,15 +44876,14 @@ msgid_plural "canned meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -44812,15 +44903,14 @@ msgid_plural "salted meat slices" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -44839,15 +44929,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -44855,8 +44944,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -44864,7 +44952,7 @@ msgid_plural "gnarly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -44875,7 +44963,7 @@ msgid_plural "lasagnes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -44883,8 +44971,7 @@ msgid_plural "Luigi %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -44892,7 +44979,7 @@ msgid_plural "Lab %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -44915,7 +45002,7 @@ msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" @@ -44926,8 +45013,7 @@ msgid_plural "cheeseburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -44935,7 +45021,7 @@ msgid_plural "chump %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -44944,8 +45030,7 @@ msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -44979,23 +45064,21 @@ msgid_plural "hamburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -45014,23 +45097,21 @@ msgid_plural "sloppy joes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -45051,7 +45132,7 @@ msgid_plural "tacos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -45059,8 +45140,7 @@ msgid_plural "tio %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -45068,7 +45148,7 @@ msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -45089,15 +45169,14 @@ msgid_plural "pickled meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -45119,10 +45198,8 @@ msgid_plural "dehydrated meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -45130,12 +45207,11 @@ msgid_plural "%s, human" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -45173,9 +45249,8 @@ msgid_plural "haggises" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -45202,7 +45277,7 @@ msgid_plural "fish makizushi" msgstr[0] "makizushi di pesce" msgstr[1] "makizushi di pesce" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -45217,8 +45292,7 @@ msgid_plural "meat temaki" msgstr[0] "temaki di carne" msgstr[1] "temaki di carne" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -45226,7 +45300,7 @@ msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -45240,7 +45314,7 @@ msgid_plural "sashimi" msgstr[0] "sashimi" msgstr[1] "sashimi" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -45268,7 +45342,7 @@ msgid_plural "pelmenis" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -45289,8 +45363,7 @@ msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -45311,15 +45384,14 @@ msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -45338,15 +45410,14 @@ msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -45383,12 +45454,12 @@ msgid_plural "prescription stimulant" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -45435,7 +45506,7 @@ msgid_plural "antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -45467,7 +45538,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -45550,7 +45621,7 @@ msgid_plural "antiseptic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -45606,7 +45677,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "acqua ossigenata" msgstr[1] "acqua ossigenata" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -45666,12 +45737,12 @@ msgid_plural "codeine" msgstr[0] "codeina" msgstr[1] "codeina" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -45688,7 +45759,7 @@ msgid_plural "cocaine" msgstr[0] "cocaina" msgstr[1] "cocaina" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -45736,7 +45807,7 @@ msgid_plural "cotton balls" msgstr[0] "batuffolo di cotone" msgstr[1] "batuffoli di cotone" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -45752,12 +45823,12 @@ msgid_plural "crack" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "Fumi un cristallo di crack. Tua madre ne sarebbe fiera." -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -45770,7 +45841,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "sciroppo per la tosse non-sonnolente" msgstr[1] "sciroppo per la tosse non-sonnolente" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -45784,7 +45855,7 @@ msgid_plural "antiseptic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -45807,7 +45878,7 @@ msgid_plural "prescription sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -45820,12 +45891,12 @@ msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -45842,12 +45913,12 @@ msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -45863,12 +45934,12 @@ msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -45882,16 +45953,14 @@ msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -45905,7 +45974,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -45919,7 +45988,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -45933,7 +46002,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -45947,7 +46016,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -45961,7 +46030,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -45976,7 +46045,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -45991,7 +46060,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -46005,7 +46074,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -46019,12 +46088,12 @@ msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -46104,7 +46173,7 @@ msgid_plural "chewing gum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -46129,13 +46198,13 @@ msgid_plural "heroin" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "Ti fai una pera." -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -46163,6 +46232,8 @@ msgid "" "Potassium iodide tablets. If taken prior to exposure, they help to mitigate" " injury caused by radiation absorption." msgstr "" +"Compresse di ioduro di potassio. Aiutano a ridurre i danni causati " +"dall'assorbimento di radiazioni, se prese prima dell'esposizione." #: lang/json/COMESTIBLE_from_json.py lang/json/GENERIC_from_json.py msgid "joint" @@ -46221,7 +46292,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -46238,7 +46309,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -46297,7 +46368,7 @@ msgid_plural "cough syrup" msgstr[0] "sciroppo per la tosse" msgstr[1] "sciroppo per la tosse" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -46330,7 +46401,7 @@ msgid_plural "sleeping pill" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -46375,7 +46446,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "sciroppo di papavero per la tosse" msgstr[1] "sciroppo di papavero per la tosse" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -46388,15 +46459,14 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -46411,7 +46481,7 @@ msgid_plural "antidepressant" msgstr[0] "antidepressivo" msgstr[1] "antidepressivi" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -46449,7 +46519,7 @@ msgid_plural "hemostatic powder" msgstr[0] "polvere emostatica" msgstr[1] "polvere emostatica" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -46479,7 +46549,7 @@ msgid_plural "antipsychotic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -46750,12 +46820,12 @@ msgid_plural "marijuana" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "Hai fumato un po' di erba. Roba buona, amico!" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -46772,7 +46842,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -46792,6 +46862,8 @@ msgid "" "A rag soaked in antiseptic. Useful for light wounds, probably won't help " "with deep bites." msgstr "" +"Uno straccio zuppo di antisettico. Utile per pulire le piccole ferite, ma " +"non è di grande aiuto per trattare i morsi profondi." #: lang/json/COMESTIBLE_from_json.py msgid "antiseptic soaked cotton balls" @@ -46799,7 +46871,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -46812,7 +46884,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -46881,7 +46953,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -46900,7 +46972,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -47381,7 +47453,7 @@ msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -47631,9 +47703,8 @@ msgstr[1] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -47700,7 +47771,7 @@ msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -47819,7 +47890,8 @@ msgstr[1] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -47971,7 +48043,7 @@ msgid_plural "pine nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "Una manciata di gustosi pinoli provenienti da una pigna." @@ -47982,7 +48054,7 @@ msgid_plural "junipers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -47995,7 +48067,7 @@ msgid_plural "shelled pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -48007,7 +48079,7 @@ msgid_plural "roasted pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "Una manciata di pistacchi tostati." @@ -48018,7 +48090,7 @@ msgid_plural "shelled almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "Una manciata di mandorle; sono state sgusciate" @@ -48029,7 +48101,7 @@ msgid_plural "almond pulp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -48043,7 +48115,7 @@ msgid_plural "roasted almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "Una manciata di mandorle tostate" @@ -48054,7 +48126,7 @@ msgid_plural "cashews" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "Una manciata di anacardi salati." @@ -48065,7 +48137,7 @@ msgid_plural "shelled pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -48079,7 +48151,7 @@ msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "Una manciata di noci pecan tostate." @@ -48090,7 +48162,7 @@ msgid_plural "shelled peanuts" msgstr[0] "arachidi sgusciate" msgstr[1] "arachidi sgusciate" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -48101,7 +48173,7 @@ msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -48114,7 +48186,7 @@ msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -48127,7 +48199,7 @@ msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "Una manciata di noci tostate." @@ -48138,7 +48210,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -48151,7 +48223,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "Una manciata di castagne arrostite." @@ -48162,7 +48234,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -48175,7 +48247,7 @@ msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -48186,7 +48258,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -48197,7 +48269,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "Una manciata di nocciole tostate." @@ -48208,7 +48280,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -48221,7 +48293,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -48280,7 +48352,7 @@ msgid_plural "acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -48293,7 +48365,7 @@ msgid_plural "roasted acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -48304,7 +48376,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -48319,7 +48391,7 @@ msgid_plural "foie gras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -48331,7 +48403,7 @@ msgid_plural "liver & onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "Un classico modo di preparare il fegato." @@ -48388,7 +48460,7 @@ msgid_plural "leverpostej" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -48613,7 +48685,7 @@ msgid_plural "marloss gelatin" msgstr[0] "gelatina Marloss" msgstr[1] "gelatina Marloss" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -48644,7 +48716,7 @@ msgid_plural "yeast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -48658,7 +48730,7 @@ msgid_plural "bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -48669,7 +48741,7 @@ msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -48681,7 +48753,7 @@ msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -48692,7 +48764,7 @@ msgid_plural "tainted bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "Questa è una farina d'ossa grigiastra a base di ossa marce." @@ -48703,7 +48775,7 @@ msgid_plural "chitin powder" msgstr[0] "polvere di chitina" msgstr[1] "polvere di chitina" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -48752,7 +48824,7 @@ msgid_plural "dried beans" msgstr[0] "fagioli secchi" msgstr[1] "fagioli secchi" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -48767,7 +48839,7 @@ msgid_plural "cooked beans" msgstr[0] "fagioli cotti" msgstr[1] "fagioli cotti" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "Una porzione abbondante di fagioli grandi del nord cotti." @@ -48778,8 +48850,8 @@ msgid_plural "tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -48801,7 +48873,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -48812,7 +48884,7 @@ msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -48838,7 +48910,7 @@ msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -48852,7 +48924,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -48866,7 +48938,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -48877,7 +48949,7 @@ msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "Deliziose lenticchie cotte. Un piatto umile ma ricco di nutrienti." @@ -48888,7 +48960,7 @@ msgid_plural "coffee powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -48903,7 +48975,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -48916,7 +48988,7 @@ msgid_plural "candied honey" msgstr[0] "miele candito" msgstr[1] "miele candito" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -48956,7 +49028,7 @@ msgid_plural "cattle fodder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -48969,7 +49041,7 @@ msgid_plural "bird food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -48982,7 +49054,7 @@ msgid_plural "wet dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -48995,7 +49067,7 @@ msgid_plural "dry dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -49008,7 +49080,7 @@ msgid_plural "wet cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -49021,7 +49093,7 @@ msgid_plural "dry cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -49152,7 +49224,7 @@ msgid_plural "instant coffee mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -49193,15 +49265,14 @@ msgid_plural "protein drinks" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -49209,14 +49280,11 @@ msgid_plural "sapient green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -49239,15 +49307,14 @@ msgid_plural "protein powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -49255,7 +49322,7 @@ msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -49287,15 +49354,14 @@ msgid_plural "protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -49316,7 +49382,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -49324,7 +49390,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -49393,7 +49459,7 @@ msgid_plural "blueberries" msgstr[0] "mirtilli blu" msgstr[1] "mirtilli blu" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "Sono blu, ma ciò non significa che siano tristi." @@ -49404,7 +49470,7 @@ msgid_plural "strawberries" msgstr[0] "fragole" msgstr[1] "fragole" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" @@ -49416,7 +49482,7 @@ msgid_plural "cranberries" msgstr[0] "mirtilli rossi" msgstr[1] "mirtilli rossi" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "Mirtilli rossi aspri. Buoni per la tua salute." @@ -49427,10 +49493,10 @@ msgid_plural "raspberries" msgstr[0] "lamponi" msgstr[1] "lamponi" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." -msgstr "Un lampone rosso dolce." +msgstr "Un dolce lampone rosso." #: lang/json/COMESTIBLE_from_json.py msgid "huckleberries" @@ -49438,7 +49504,7 @@ msgid_plural "huckleberries" msgstr[0] "mirtilli neri" msgstr[1] "mirtilli neri" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -49451,7 +49517,7 @@ msgid_plural "mulberries" msgstr[0] "more di gelso" msgstr[1] "more di gelso" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -49466,7 +49532,7 @@ msgid_plural "elderberries" msgstr[0] "bacche di sambuco" msgstr[1] "bacche di sambuco" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -49479,7 +49545,7 @@ msgid_plural "rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "" @@ -49487,8 +49553,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "juice pulp" msgid_plural "juice pulps" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "polpa di frutta" +msgstr[1] "polpa di frutta" #. ~ Description for juice pulp #: lang/json/COMESTIBLE_from_json.py @@ -49502,8 +49568,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pear" msgid_plural "pears" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pera" +msgstr[1] "pere" #. ~ Description for pear #: lang/json/COMESTIBLE_from_json.py @@ -49527,7 +49593,7 @@ msgid_plural "cherries" msgstr[0] "ciliegie" msgstr[1] "ciliegie" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "Un frutto rosso e dolce che cresce sugli alberi." @@ -49550,7 +49616,7 @@ msgid_plural "grapes" msgstr[0] "uva" msgstr[1] "uva" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "Un grappolo di uva succosa." @@ -49603,8 +49669,8 @@ msgstr "Un frutto, più grande della tua testa. Davvero succoso!" #: lang/json/COMESTIBLE_from_json.py msgid "melon" msgid_plural "melons" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "melone" +msgstr[1] "meloni" #. ~ Description for melon #: lang/json/COMESTIBLE_from_json.py @@ -49617,7 +49683,7 @@ msgid_plural "blackberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "Un cugino più scuro del lampone." @@ -49636,8 +49702,8 @@ msgstr "Un frutto polposo con un grande nocciolo." #: lang/json/COMESTIBLE_from_json.py msgid "pomegranate" msgid_plural "pomegranates" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "melograna" +msgstr[1] "melagrane" #. ~ Description for pomegranate #: lang/json/COMESTIBLE_from_json.py @@ -49677,7 +49743,7 @@ msgid_plural "apricots" msgstr[0] "albicocche" msgstr[1] "albicocche" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "Un frutto dalla pelle liscia, imparentato con la pesca." @@ -49722,7 +49788,7 @@ msgid_plural "bee balm" msgstr[0] "monarda" msgstr[1] "monarda" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -49736,7 +49802,7 @@ msgid_plural "broccoli" msgstr[0] "broccolo" msgstr[1] "broccoli" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "E' un po' duro, ma piuttosto delizioso." @@ -49747,18 +49813,20 @@ msgid_plural "buckwheat" msgstr[0] "grano saraceno" msgstr[1] "grano saraceno" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " "raw state, they are commonly cooked or ground into flour." msgstr "" +"Dei semi di grano saraceno. Non sono particolarmente buoni da mangiare in " +"questo stato, è meglio cuocerli oppure macinarli per ricavarne una farina." #: lang/json/COMESTIBLE_from_json.py msgid "cabbage" msgid_plural "cabbages" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "cavolo" +msgstr[1] "cavoli" #. ~ Description for cabbage #: lang/json/COMESTIBLE_from_json.py @@ -49768,10 +49836,10 @@ msgstr "Croccante cavolo bianco." #: lang/json/COMESTIBLE_from_json.py msgid "spinach" msgid_plural "spinach" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "spinaci" +msgstr[1] "spinaci" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "Un mucchietto di foglie di spinaci" @@ -49779,8 +49847,8 @@ msgstr "Un mucchietto di foglie di spinaci" #: lang/json/COMESTIBLE_from_json.py msgid "carrot" msgid_plural "carrots" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "carota" +msgstr[1] "carote" #. ~ Description for carrot #: lang/json/COMESTIBLE_from_json.py @@ -49823,7 +49891,7 @@ msgid_plural "celery" msgstr[0] "sedano" msgstr[1] "sedano" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "Né gustoso né nutriente, ma si sposa bene con l'insalata." @@ -49831,8 +49899,8 @@ msgstr "Né gustoso né nutriente, ma si sposa bene con l'insalata." #: lang/json/COMESTIBLE_from_json.py msgid "corn cob" msgid_plural "corn cobs" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pannocchia di mais" +msgstr[1] "pannocchie di mais" #. ~ Description for corn cob #: lang/json/COMESTIBLE_from_json.py @@ -49840,14 +49908,17 @@ msgid "" "A corn cob full of delicious golden kernels. You can eat them on the cob or" " shell it for cooking." msgstr "" +"Una pannocchia piena di deliziosi chicchi di mais dorati. Puoi mangiarli " +"direttamente dalla pannocchia oppure puoi toglierli da essa per utilizzarli " +"in cucina." #: lang/json/COMESTIBLE_from_json.py msgid "corn kernels" msgid_plural "corn kernels" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "chicchi di mais" +msgstr[1] "chicchi di mais" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "Deliziosi chicchi di mais." @@ -49855,15 +49926,18 @@ msgstr "Deliziosi chicchi di mais." #: lang/json/COMESTIBLE_from_json.py msgid "empty corn cob" msgid_plural "empty corn cob" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pannocchia sgranata" +msgstr[1] "pannocchie sgranate" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" " delicious jelly, or as fuel." msgstr "" +"Una pannocchia di mais i cui chicchi sono stati rimossi. All'apparenza " +"potrebbe sembrare inutile, ma in realtà può essere utilizzata per fare del " +"brodo, una deliziosa marmellata oppure può essere usata come combustibile." #: lang/json/COMESTIBLE_from_json.py msgid "cotton boll" @@ -49884,8 +49958,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chili pepper" msgid_plural "chili peppers" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "peperoncino" +msgstr[1] "peperoncini" #. ~ Description for chili pepper #: lang/json/COMESTIBLE_from_json.py @@ -49895,8 +49969,8 @@ msgstr "Un peperoncino piccante." #: lang/json/COMESTIBLE_from_json.py msgid "cucumber" msgid_plural "cucumbers" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "cetriolo" +msgstr[1] "cetrioli" #. ~ Description for cucumber #: lang/json/COMESTIBLE_from_json.py @@ -49924,7 +49998,7 @@ msgid_plural "salsify" msgstr[0] "Scorzanera" msgstr[1] "Scorzanera" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -49940,7 +50014,7 @@ msgid_plural "chicory" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -49965,20 +50039,22 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "dogbane" msgid_plural "dogbanes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "canapa del Canada" +msgstr[1] "canapa del Canada" #. ~ Description for dogbane #: lang/json/COMESTIBLE_from_json.py msgid "" "A stalk of dogbane. It has very fibrous stems and is mildly poisonous." msgstr "" +"Un gambo di \"Apocynum Cannabinum\", volgarmente chiamata canapa del Canada." +" È una pianta molto fibrosa ed è leggermente velenosa." #: lang/json/COMESTIBLE_from_json.py msgid "garlic bulb" msgid_plural "garlic bulbs" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "testa d'aglio" +msgstr[1] "teste d'aglio" #. ~ Description for garlic bulb #: lang/json/COMESTIBLE_from_json.py @@ -49986,6 +50062,8 @@ msgid "" "A pungent garlic bulb. Popular as a seasoning for its strong flavor. Can " "be disassembled to cloves." msgstr "" +"Una pungente testa d'aglio. Molto popolare per condire il cibo grazie al suo" +" sapore forte. Può essere spezzettata in spicchi." #: lang/json/COMESTIBLE_from_json.py msgid "hops flower" @@ -50003,8 +50081,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "horseradish root" msgid_plural "horseradish roots" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "radice di rafano" +msgstr[1] "radici di rafano" #. ~ Description for horseradish root #: lang/json/COMESTIBLE_from_json.py @@ -50012,12 +50090,14 @@ msgid "" "Large white tapered root of a horseradish plant. Way too spicy in this " "form, but can be used for making condiments." msgstr "" +"Una grossa radice bianca di rafano dalla forma conica. È troppo piccante in " +"questo stato, ma può essere usata per fare alcuni condimenti." #: lang/json/COMESTIBLE_from_json.py msgid "lettuce" msgid_plural "lettuces" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "lattuga" +msgstr[1] "lattughe" #. ~ Description for lettuce #: lang/json/COMESTIBLE_from_json.py @@ -50069,7 +50149,7 @@ msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -50112,7 +50192,7 @@ msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -50127,7 +50207,7 @@ msgid_plural "dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -50140,7 +50220,7 @@ msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -50244,7 +50324,7 @@ msgid_plural "wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -50281,7 +50361,7 @@ msgid_plural "raw beans" msgstr[0] "fagioli crudi" msgstr[1] "fagioli crudi" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -50296,7 +50376,7 @@ msgid_plural "raw lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "Lenticchie crude e non cotte. Possono essere cucinate." @@ -50307,7 +50387,7 @@ msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -50346,8 +50426,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "sandwich deluxe" msgstr[1] "sandwich deluxe" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -50363,6 +50442,27 @@ msgstr "" "Un sandwich fatto con carne, verdure, formaggio e condimenti. Gustoso e " "nutriente!" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -50426,7 +50526,7 @@ msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -50476,26 +50576,23 @@ msgid_plural "meat sandwiches" msgstr[0] "sandwich alla carne" msgstr[1] "sandwich alla carne" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -50617,7 +50714,7 @@ msgid_plural "mushroom spores" msgstr[0] "spora di fungo" msgstr[1] "spore di fungo" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -50628,7 +50725,7 @@ msgid_plural "hop rhizomes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "Radici della pianta di luppolo, utili per la coltivazione." @@ -50643,7 +50740,7 @@ msgid_plural "blackberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "" @@ -50658,7 +50755,7 @@ msgid_plural "blueberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "Dei semi di mirtillo." @@ -50673,7 +50770,7 @@ msgid_plural "cranberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "" @@ -50688,7 +50785,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -50703,7 +50800,7 @@ msgid_plural "mulberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -50718,7 +50815,7 @@ msgid_plural "elderberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -50733,7 +50830,7 @@ msgid_plural "raspberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "" @@ -50748,7 +50845,7 @@ msgid_plural "strawberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "Dei semi di fragola." @@ -50763,7 +50860,7 @@ msgid_plural "grape seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -50778,7 +50875,7 @@ msgid_plural "rose seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -50793,7 +50890,7 @@ msgid_plural "tobacco seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -50808,7 +50905,7 @@ msgid_plural "barley seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "Dei semi d'orzo." @@ -50819,7 +50916,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "Dei semi di barbabietola da zucchero." @@ -50830,7 +50927,7 @@ msgid_plural "lettuce seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "Alcuni semi di lattuga." @@ -50841,7 +50938,7 @@ msgid_plural "cabbage seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "Alcuni semi di cavolo bianco." @@ -50852,7 +50949,7 @@ msgid_plural "tomato seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "Dei semi di pomodoro." @@ -50863,7 +50960,7 @@ msgid_plural "cotton seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -50880,7 +50977,7 @@ msgid_plural "broccoli seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "Alcuni semi di broccolo." @@ -50891,7 +50988,7 @@ msgid_plural "zucchini seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "Alcuni semi di zucchina." @@ -50902,7 +50999,7 @@ msgid_plural "onion seeds" msgstr[0] "semi di cipolla" msgstr[1] "semi di cipolla" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "Alcuni semi di cipolla." @@ -50913,7 +51010,7 @@ msgid_plural "garlic seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "" @@ -50928,7 +51025,7 @@ msgid_plural "cattail seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -50943,7 +51040,7 @@ msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -50958,7 +51055,7 @@ msgid_plural "salsify seeds" msgstr[0] "Semi di scorzanera" msgstr[1] "Semi di scorzanera" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "Dei semi di scorzanera." @@ -50969,7 +51066,7 @@ msgid_plural "chicory seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -50980,7 +51077,7 @@ msgid_plural "wild root seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -50991,7 +51088,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -51008,7 +51105,7 @@ msgid_plural "cactus seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -51034,7 +51131,7 @@ msgid_plural "carrot seeds" msgstr[0] "semi di carota" msgstr[1] "semi di carota" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "Alcuni semi di carota." @@ -51045,7 +51142,7 @@ msgid_plural "corn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "Alcuni semi di mais." @@ -51060,7 +51157,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "" @@ -51071,7 +51168,7 @@ msgid_plural "cucumber seeds" msgstr[0] "semi di cetriolo" msgstr[1] "semi di cetriolo" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "Alcuni semi di cetriolo." @@ -51099,7 +51196,7 @@ msgid_plural "cannabis seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -51130,7 +51227,7 @@ msgid_plural "bean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -51145,7 +51242,7 @@ msgid_plural "soybean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -51154,7 +51251,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "Lenticchie crude e non cotte, ideali per essere piantate." @@ -51169,7 +51266,7 @@ msgid_plural "thyme seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -51186,7 +51283,7 @@ msgid_plural "canola seeds" msgstr[0] "seme di canola" msgstr[1] "semi di canola" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -51198,7 +51295,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -51209,7 +51306,7 @@ msgid_plural "sunflower seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -51227,7 +51324,7 @@ msgid_plural "dogbane seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -51238,7 +51335,7 @@ msgid_plural "bee balm seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -51249,7 +51346,7 @@ msgid_plural "mugwort seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -51260,7 +51357,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "semi di grano saraceno" msgstr[1] "semi di grano saraceno" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -51271,7 +51368,7 @@ msgid_plural "wild herb seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -51286,7 +51383,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -51301,7 +51398,7 @@ msgid_plural "dandelion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -51316,7 +51413,7 @@ msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -51331,7 +51428,7 @@ msgid_plural "rhubarb stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -51342,7 +51439,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "spora di fungo spugnola" msgstr[1] "spore di funghi spugnola" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -51353,7 +51450,7 @@ msgid_plural "datura seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -51371,7 +51468,7 @@ msgid_plural "celery seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "Alcuni semi di sedano." @@ -51382,7 +51479,7 @@ msgid_plural "oat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "Alcuni semi d'avena." @@ -51399,7 +51496,7 @@ msgid_plural "wheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "Dei semi di grano." @@ -51416,7 +51513,7 @@ msgid_plural "fried seeds" msgstr[0] "semi fritti" msgstr[1] "semi fritti" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -51444,7 +51541,7 @@ msgid_plural "coffee beans" msgstr[0] "chicchi di caffè" msgstr[1] "chicchi di caffè" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "Alcuni chicchi di caffè, possono essere tostati." @@ -51455,7 +51552,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "chicchi di caffè tostati" msgstr[1] "chicchi di caffè tostati" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "Alcuni chicchi di caffè tostato, possono essere macinati." @@ -51466,7 +51563,7 @@ msgid_plural "chamomile seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -51481,7 +51578,7 @@ msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -51496,7 +51593,7 @@ msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -51507,7 +51604,7 @@ msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -51518,7 +51615,7 @@ msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -51529,7 +51626,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -51551,8 +51648,7 @@ msgid_plural "bone broths" msgstr[0] "brodo d'ossa" msgstr[1] "brodo d'ossa" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -51582,15 +51678,14 @@ msgid_plural "meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -51630,8 +51725,7 @@ msgid_plural "curries with meat" msgstr[0] "carne al curry" msgstr[1] "carne al curry" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -51649,10 +51743,8 @@ msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -51717,7 +51809,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "pollo e gnocchi" msgstr[1] "pollo e gnocchi" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "Una zuppa con pezzi di pollo e palline di pasta. Non male." @@ -51743,7 +51835,7 @@ msgid_plural "chili powder" msgstr[0] "polvere di chili" msgstr[1] "polvere di chili" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -51758,7 +51850,7 @@ msgid_plural "hot sauce" msgstr[0] "salsa piccante" msgstr[1] "salsa piccante" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -51773,7 +51865,7 @@ msgid_plural "cinnamon" msgstr[0] "cannella" msgstr[1] "cannella" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -51785,7 +51877,7 @@ msgid_plural "curry powder" msgstr[0] "polvere di curry" msgstr[1] "polvere di curry" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -51798,7 +51890,7 @@ msgid_plural "black pepper" msgstr[0] "pepe nero" msgstr[1] "pepe nero" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "Bacche nere speziate macinate dall'aroma pungente." @@ -51809,7 +51901,7 @@ msgid_plural "salt" msgstr[0] "sale" msgstr[1] "sale" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -51824,7 +51916,7 @@ msgid_plural "Italian seasoning" msgstr[0] "Condimento italiano" msgstr[1] "Condimenti italiani" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "Una fragrante mix di origano secco, basilico, timo e altre spezie." @@ -51835,7 +51927,7 @@ msgid_plural "seasoned salt" msgstr[0] "sale con spezie" msgstr[1] "sale con spezie" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "Sale mescolato con una miscela profumata di erbe e spezie segrete." @@ -51846,7 +51938,7 @@ msgid_plural "sugar" msgstr[0] "zucchero" msgstr[1] "zucchero" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -51861,7 +51953,7 @@ msgid_plural "sprinkles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -51876,7 +51968,7 @@ msgid_plural "wild herbs" msgstr[0] "erbe selvatiche" msgstr[1] "erbe selvatiche" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -51891,7 +51983,7 @@ msgid_plural "soy sauce" msgstr[0] "salsa di soia" msgstr[1] "salsa di soia" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "Salsa di soia fermentata e salata." @@ -51907,7 +51999,7 @@ msgid_plural "mustard powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -51957,7 +52049,7 @@ msgid_plural "starch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -51972,7 +52064,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" @@ -51983,7 +52075,7 @@ msgid_plural "fried dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -51995,7 +52087,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -52006,7 +52098,7 @@ msgid_plural "fried burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -52043,7 +52135,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -52066,7 +52158,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -52078,7 +52170,7 @@ msgid_plural "canned corn" msgstr[0] "mais in scatola" msgstr[1] "mais in scatola" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "Mais in scatola. Mangia!" @@ -52089,7 +52181,7 @@ msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -52100,7 +52192,7 @@ msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "Mais arrostito in padella con erbe e spezie." @@ -52111,7 +52203,7 @@ msgid_plural "hominy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -52124,7 +52216,7 @@ msgid_plural "cornmeal" msgstr[0] "farina di mais" msgstr[1] "farina di mais" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "Questa farina gialla è utile per la cottura al forno." @@ -52135,7 +52227,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "fagioli al forno vegetariani" msgstr[1] "fagioli al forno vegetariani" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "Fagioli cotti a fuoco lento con verdure. Gustosi e molto sazianti." @@ -52146,7 +52238,7 @@ msgid_plural "dried rice" msgstr[0] "riso essiccato" msgstr[1] "riso essiccato" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -52161,7 +52253,7 @@ msgid_plural "cooked rice" msgstr[0] "riso cotto" msgstr[1] "riso cotto" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "Una corposa porzione di riso bianco cotto." @@ -52172,7 +52264,7 @@ msgid_plural "fried rice" msgstr[0] "riso fritto" msgstr[1] "riso fritto" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "Delizioso riso fritto con verdure. Gustoso e molto saziante." @@ -52183,7 +52275,7 @@ msgid_plural "beans and rice" msgstr[0] "fagioli e riso" msgstr[1] "fagioli e riso" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -52196,7 +52288,7 @@ msgid_plural "tofu fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -52207,7 +52299,7 @@ msgid_plural "tofu stirfry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -52220,7 +52312,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "fagioli e riso deluxe vegetariani" msgstr[1] "fagioli e riso deluxe vegetariani" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -52295,7 +52387,7 @@ msgid_plural "pesto" msgstr[0] "pesto" msgstr[1] "pesto" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "Olio d'oliva, basilico, aglio, pinoli. Semplice e delizioso." @@ -52332,7 +52424,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "spaghetti al pesto" msgstr[1] "spaghetti al pesto" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "Spaghetti conditi con un'abbondante porzione di pesto. Gnam!" @@ -52357,7 +52449,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "crauti con cipolle trifolate" msgstr[1] "crauti con cipolle trifolate" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -52402,7 +52494,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -52428,7 +52520,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -52510,7 +52602,7 @@ msgid_plural "sushi rice" msgstr[0] "riso per sushi" msgstr[1] "riso per sushi" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -52522,7 +52614,7 @@ msgid_plural "onigiri" msgstr[0] "onigiri" msgstr[1] "onigiri" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -52536,7 +52628,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "hosomaki vegetale" msgstr[1] "hosomaki vegetali" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -52564,7 +52656,7 @@ msgid_plural "sauerkraut" msgstr[0] "crauti" msgstr[1] "crauti" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -52591,7 +52683,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -52602,7 +52694,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -52620,7 +52712,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "Grano grezzo, non molto gustoso." @@ -52631,7 +52723,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "spaghetti crudi" msgstr[1] "spaghetti crudi" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -52646,7 +52738,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "lasagna cruda" msgstr[1] "lasagne crude" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -52661,7 +52753,7 @@ msgid_plural "boiled noodles" msgstr[0] "noodles bollito" msgstr[1] "noodles bolliti" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "Noodles appena umidi. Abbastanza insipidi, ma ti saziano." @@ -52672,7 +52764,7 @@ msgid_plural "raw macaroni" msgstr[0] "maccherone crudo" msgstr[1] "maccheroni crudi" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "Può esser mangiato crudo se sei disperato, ma è molto meglio cotto." @@ -52683,7 +52775,7 @@ msgid_plural "mac & cheese" msgstr[0] "maccherone al formaggio" msgstr[1] "maccheroni al formaggio" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -52695,7 +52787,7 @@ msgid_plural "flour" msgstr[0] "farina" msgstr[1] "farina" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "Questa farina bianca arricchita è utile per la cottura al forno." @@ -52706,7 +52798,7 @@ msgid_plural "bread flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -52719,7 +52811,7 @@ msgid_plural "oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " @@ -52728,7 +52820,7 @@ msgstr "" "Fiocchi asciutti di grano appiattito. Gustoso e nutriente se cotto, " "raddoppia anche come cibo per i cavalli finchè secco." -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "Avena cruda." @@ -52739,7 +52831,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "zuppa d'avena cotta" msgstr[1] "zuppe d'avena cotte" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -52754,7 +52846,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "zuppa d'avena cotta deluxe" msgstr[1] "zuppe d'avena cotte deluxe" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -52844,7 +52936,7 @@ msgid_plural "oyster crackers" msgstr[0] "cracker tondi" msgstr[1] "cracker tondi" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -52881,7 +52973,7 @@ msgid_plural "granola" msgstr[0] "granola" msgstr[1] "granola" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -52907,7 +52999,7 @@ msgid_plural "fast noodles" msgstr[0] "noodles veloci" msgstr[1] "noodles veloci" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "Il cosiddetto Ramen. Può essere consumato crudo." @@ -53104,7 +53196,7 @@ msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -53115,7 +53207,7 @@ msgid_plural "melon seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -53126,7 +53218,7 @@ msgid_plural "banana saplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -53137,7 +53229,7 @@ msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -53148,7 +53240,7 @@ msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -53159,7 +53251,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -53208,7 +53300,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -53256,7 +53348,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -53269,7 +53361,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -53310,7 +53402,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -53420,7 +53512,7 @@ msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -53434,7 +53526,7 @@ msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -53526,7 +53618,7 @@ msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -53540,7 +53632,7 @@ msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -53554,7 +53646,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -53566,7 +53658,7 @@ msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -53579,7 +53671,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -53634,7 +53726,7 @@ msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -53650,7 +53742,7 @@ msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -53664,7 +53756,7 @@ msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -53678,7 +53770,7 @@ msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -53739,7 +53831,7 @@ msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -53753,7 +53845,7 @@ msgid_plural "food cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -53765,7 +53857,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -53789,7 +53881,7 @@ msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -53815,7 +53907,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -53829,7 +53921,7 @@ msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -53845,7 +53937,7 @@ msgid_plural "caffex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -53886,7 +53978,7 @@ msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -53948,7 +54040,7 @@ msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -53969,7 +54061,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -54252,8 +54344,8 @@ msgstr[0] "" msgstr[1] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" @@ -54263,6 +54355,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -54305,6 +54409,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -54425,6 +54535,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -54461,24 +54577,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "" msgstr[1] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -54777,7 +54875,7 @@ msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -54843,7 +54941,7 @@ msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -54903,14 +55001,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -54993,7 +55091,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -55002,7 +55100,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -55014,7 +55112,7 @@ msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -55025,7 +55123,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -55038,7 +55136,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -55057,7 +55155,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -55071,7 +55169,7 @@ msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -55666,7 +55764,7 @@ msgid_plural "rock salt" msgstr[0] "salgemma" msgstr[1] "salgemma" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -55677,7 +55775,7 @@ msgid_plural "rhodonite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -55690,7 +55788,7 @@ msgid_plural "zincite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -55727,7 +55825,7 @@ msgid_plural "hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -55738,7 +55836,7 @@ msgid_plural "pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -55749,7 +55847,7 @@ msgid_plural "pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -55760,7 +55858,7 @@ msgid_plural "almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -55771,7 +55869,7 @@ msgid_plural "peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -55782,7 +55880,7 @@ msgid_plural "hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -55793,7 +55891,7 @@ msgid_plural "chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -55804,7 +55902,7 @@ msgid_plural "walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -56094,6 +56192,18 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -56105,6 +56215,19 @@ msgstr[1] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "Una piccola scatola di cartone. non più grande di un piede." +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -56891,7 +57014,7 @@ msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -56902,7 +57025,7 @@ msgid_plural "smoldering embers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -57107,6 +57230,29 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -57313,7 +57459,7 @@ msgid_plural "superglue" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" @@ -57603,7 +57749,7 @@ msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -57751,7 +57897,7 @@ msgid_plural "concrete" msgstr[0] "cemento" msgstr[1] "cemento" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "Del cemento, pronto per essere usato in un progetto di costruzione." @@ -58284,13 +58430,15 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "processor board" msgid_plural "processor boards" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "scheda processore" +msgstr[1] "schede processore" #. ~ Description for processor board #: lang/json/GENERIC_from_json.py msgid "A central processor unit, useful in advanced electronics crafting." msgstr "" +"Una scheda contenente una piccola CPU, utile in diversi progetti avanzati " +"d'elettronica." #: lang/json/GENERIC_from_json.py msgid "RAM" @@ -58317,8 +58465,8 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "amplifier circuit" msgid_plural "amplifier circuits" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "circuito amplificatore" +msgstr[1] "circuiti amplificatori" #. ~ Description for amplifier circuit #: lang/json/GENERIC_from_json.py @@ -58326,6 +58474,8 @@ msgid "" "A circuit designed to amplify the strength of a signal. Useful in lots of " "electronics recipes." msgstr "" +"Un circuito progettato per amplificare la potenza di un segnale. Utile in " +"numerosi progetti d'elettronica." #: lang/json/GENERIC_from_json.py msgid "transponder circuit" @@ -58343,8 +58493,8 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "signal receiver" msgid_plural "signal receivers" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ricevitore di segnale" +msgstr[1] "ricevitori di segnale" #. ~ Description for signal receiver #: lang/json/GENERIC_from_json.py @@ -58352,6 +58502,8 @@ msgid "" "A module designed to receive many forms of signals. Useful for crafting " "communications equipment." msgstr "" +"Un modulo progettato per la ricezione di diverse tipologie di segnale. Utile" +" per fabbricare equipaggiamento per telecomunicazione." #: lang/json/GENERIC_from_json.py msgid "large LCD screen" @@ -58512,8 +58664,8 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "electronic scrap" msgid_plural "electronic scraps" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "rottame elettronico" +msgstr[1] "rottami elettronici" #. ~ Description for electronic scrap #: lang/json/GENERIC_from_json.py @@ -58521,6 +58673,8 @@ msgid "" "A random collection of resistors, capacitors, and diodes which have been " "stripped from printed circuits." msgstr "" +"Una collezione assortita di resistenze, capacitori e diodi recuperati da " +"varie circuiterie stampate." #: lang/json/GENERIC_from_json.py msgid "radio repeater mod" @@ -58576,8 +58730,8 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "pipe cleaner" msgid_plural "pipe cleaners" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "scovolo" +msgstr[1] "scovoli" #. ~ Description for pipe cleaner #: lang/json/GENERIC_from_json.py @@ -58586,6 +58740,11 @@ msgid "" "similar objects. This one is thin enough to be used for cleaning firearm " "barrels from dirt and fouling." msgstr "" +"Questo strumento è una sorta di spazzolino montato su di un manico allungato" +" ed è utilizzato per pulire l'interno di tubi, canne fumarie, bottiglie ed " +"altri oggetti. Questo in particolare è abbastanza sottile per pulire " +"l'interno delle canne delle armi da fuoco, in modo da prevenire otturazioni " +"e ruggine." #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "clock" @@ -58604,7 +58763,7 @@ msgid_plural "clockworks" msgstr[0] "meccanismo" msgstr[1] "meccanismi" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -58618,7 +58777,7 @@ msgstr[1] "Memory card - SD" #. ~ Description for SD-Memory card #: lang/json/GENERIC_from_json.py msgid "A memory card, used. Might be worth a look." -msgstr "" +msgstr "Una memory card usata. Potrebbe contenere qualcosa di interessante." #: lang/json/GENERIC_from_json.py msgid "SD-Memory card (clean)" @@ -58632,6 +58791,8 @@ msgid "" "This memory card is either unused or has been wiped clean. You could use it" " to store your data, though!" msgstr "" +"Questa memory card è vuota oppure è stata formattata. Potresti usarla per " +"immagazzinare i tuoi dati però!" #: lang/json/GENERIC_from_json.py msgid "SD-Memory card (encrypted)" @@ -58673,8 +58834,8 @@ msgstr "" #: lang/json/GENERIC_from_json.py lang/json/terrain_from_json.py msgid "manhole cover" msgid_plural "manhole covers" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "tombino" +msgstr[1] "tombini" #. ~ Description for manhole cover #: lang/json/GENERIC_from_json.py @@ -58682,12 +58843,15 @@ msgid "" "A heavy iron disc that typically covers a ladder into the sewers. Lifting " "it from the manhole is impossible without a crowbar." msgstr "" +"Un pesante disco di ferro posto a copertura delle scalette utilizzate per " +"scendere nelle reti fognarie. Sollevare questo tombino senza un piede di " +"porco è praticamente impossibile." #: lang/json/GENERIC_from_json.py msgid "pine bough" msgid_plural "pine boughs" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ramo di pino" +msgstr[1] "rami di pino" #. ~ Description for pine bough #: lang/json/GENERIC_from_json.py @@ -58695,12 +58859,13 @@ msgid "" "A branch from a pine tree, oozing sticky sap and bristling with prickly " "needles." msgstr "" +"Un ramo di pino coperto di resina appiccicosa e aghi di pino acuminati." #: lang/json/GENERIC_from_json.py msgid "pinecone" msgid_plural "pinecones" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pigna" +msgstr[1] "pigne" #. ~ Description for pinecone #: lang/json/GENERIC_from_json.py @@ -58708,6 +58873,8 @@ msgid "" "A spiny pod from a pine tree. Dry seeds rattle around inside when you shake" " it." msgstr "" +"Una pigna puntuta proveniente da un pino. Puoi sentire i semi al suo interno" +" scuotendola." #: lang/json/GENERIC_from_json.py msgid "poppy bud" @@ -58735,7 +58902,7 @@ msgid_plural "chamomile flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -58762,7 +58929,7 @@ msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -58799,7 +58966,7 @@ msgid_plural "mortar" msgstr[0] "malta" msgstr[1] "malta" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "Della malta, pronta per essere usata in un progetto di costruzione." @@ -58846,7 +59013,7 @@ msgid_plural "adobe mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -58859,7 +59026,7 @@ msgid_plural "tanbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -58868,8 +59035,8 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "birchbark" msgid_plural "birchbarks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "corteccia di betulla" +msgstr[1] "corteccia di betulla" #. ~ Description for birchbark #: lang/json/GENERIC_from_json.py @@ -58881,10 +59048,10 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "willowbark" msgid_plural "willowbark" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "corteccia di salice" +msgstr[1] "corteccia di salice" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -59321,7 +59488,7 @@ msgid_plural "raw tobacco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -59630,7 +59797,7 @@ msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -59653,7 +59820,7 @@ msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -60026,6 +60193,98 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -60718,7 +60977,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -60855,7 +61114,7 @@ msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -60868,7 +61127,7 @@ msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -60898,7 +61157,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -60914,7 +61173,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -60930,7 +61189,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -60946,7 +61205,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -60962,7 +61221,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -60978,7 +61237,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -60994,7 +61253,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61010,7 +61269,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61026,7 +61285,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61042,7 +61301,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61058,7 +61317,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61074,7 +61333,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61090,7 +61349,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61106,7 +61365,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61122,7 +61381,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61138,8 +61397,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61155,7 +61413,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61171,7 +61429,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61187,7 +61445,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61203,7 +61461,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61219,7 +61477,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61235,8 +61493,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -61258,7 +61515,7 @@ msgid_plural "misc software" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -61269,7 +61526,7 @@ msgid_plural "hackPRO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "un pezzo di software da Hacker." @@ -61280,7 +61537,7 @@ msgid_plural "MediSoft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "un pezzo di software medico" @@ -61291,7 +61548,7 @@ msgid_plural "MatheMAX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "" @@ -61302,7 +61559,7 @@ msgid_plural "infection data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "Dati medici sul sangue dello zombi" @@ -61313,7 +61570,7 @@ msgid_plural "lab data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -61324,7 +61581,7 @@ msgid_plural "train data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -61335,7 +61592,7 @@ msgid_plural "neural data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -61625,22 +61882,34 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -61648,7 +61917,7 @@ msgid_plural "skinned %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -61887,7 +62156,7 @@ msgid_plural "trifacet remains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -62226,15 +62495,109 @@ msgid "" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pillowcase" -msgid_plural "pillowcases" +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" msgstr[0] "" msgstr[1] "" +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "pillowcase" +msgid_plural "pillowcases" +msgstr[0] "federa per cuscino" +msgstr[1] "federe per cuscino" + #. ~ Description for pillowcase #: lang/json/GENERIC_from_json.py msgid "A simple cotton pillowcase." -msgstr "" +msgstr "Una semplice federa di cotone." #: lang/json/GENERIC_from_json.py msgid "Casing from ammunition cartridge" @@ -62245,24 +62608,26 @@ msgstr[1] "" #: lang/json/GENERIC_from_json.py msgid ".223 casing" msgid_plural ".223 casings" -msgstr[0] "bossolo da .223" -msgstr[1] "bossoli da .223" +msgstr[0] "bossolo calibro .223" +msgstr[1] "bossoli calibro .223" #. ~ Description for .223 casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a .223 round." -msgstr "Un bossolo vuoto per proiettile da .223" +msgstr "Un bossolo vuoto di un proiettile calibro .223" #: lang/json/GENERIC_from_json.py msgid ".22 LR casing" msgid_plural ".22 LR casings" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "bossolo calibro .22 LR" +msgstr[1] "bossoli calibro .22 LR" #. ~ Description for .22 LR casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a .22 LR round. These can't be hand-reloaded." msgstr "" +"Un bossolo vuoto di un proiettile calibro .22 LR. Non può essere ricaricato " +"a mano." #: lang/json/GENERIC_from_json.py msgid "unused .22 casing" @@ -62279,13 +62644,13 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid ".30-06 casing" msgid_plural ".30-06 casings" -msgstr[0] "bossolo da .30-06" -msgstr[1] "bossoli da .30-06" +msgstr[0] "bossolo calibro .30-06" +msgstr[1] "bossoli calibro .30-06" #. ~ Description for .30-06 casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a .30-06 round." -msgstr "Un bossolo vuoto per proiettile da .30-06." +msgstr "Un bossolo vuoto di un proiettile calibro .30-06." #: lang/json/GENERIC_from_json.py msgid ".270 Winchester casing" @@ -62307,18 +62672,18 @@ msgstr[1] "" #. ~ Description for .300 Win Mag casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a .300 Winchester Magnum round." -msgstr "Un bossolo vuoto per proiettili da una .300 Winchester Magnum." +msgstr "Un bossolo vuoto di un proiettili calibro una .300 Winchester Magnum." #: lang/json/GENERIC_from_json.py msgid ".308 casing" msgid_plural ".308 casings" -msgstr[0] "bossolo da .308" -msgstr[1] "bossoli da .308" +msgstr[0] "bossolo calibro .308" +msgstr[1] "bossoli calibro .308" #. ~ Description for .308 casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a .308 round." -msgstr "Un bossolo vuoto per proiettile da .308." +msgstr "Un bossolo vuoto di un proiettile calibro .308." #: lang/json/GENERIC_from_json.py msgid "7.62x51mm casing" @@ -62471,7 +62836,7 @@ msgstr[1] "bossoli per .454 Casull" #. ~ Description for .454 Casull casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a .454 Casull round." -msgstr "Bossolo vuoto per proiettili da .454 Casull" +msgstr "Un bossolo vuoto di un proiettile calibro .454 Casull." #: lang/json/GENERIC_from_json.py msgid ".45 ACP casing" @@ -62482,7 +62847,7 @@ msgstr[1] "" #. ~ Description for .45 ACP casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a .45 ACP round." -msgstr "Un bossolo vuoto per proiettile da .45 ACP." +msgstr "Un bossolo vuoto di un proiettile calibro .45 ACP." #: lang/json/GENERIC_from_json.py msgid ".45 Colt casing" @@ -62493,7 +62858,7 @@ msgstr[1] "" #. ~ Description for .45 Colt casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a .45 Colt round." -msgstr "" +msgstr "Un bossolo vuoto di un proiettile calibro .45 Colt." #: lang/json/GENERIC_from_json.py msgid ".45-70 casing" @@ -62509,13 +62874,13 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "4.6x30mm casing" msgid_plural "4.6x30mm casings" -msgstr[0] "bossolo da 4.6x30mm" -msgstr[1] "bossoli da 4.6x30mm" +msgstr[0] "bossolo calibro 4.6x30mm" +msgstr[1] "bossoli calibro 4.6x30mm" #. ~ Description for 4.6x30mm casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a 4.6x30mm round." -msgstr "Un bossolo vuoto per proiettile da 4.6x30mm." +msgstr "Un bossolo vuoto di un proiettile calibro 4.6x30mm." #: lang/json/GENERIC_from_json.py msgid ".460 Rowland casing" @@ -62544,19 +62909,19 @@ msgstr "Un bossolo di plastica per flèchette da 5x50mm." #: lang/json/GENERIC_from_json.py msgid ".500 S&W Magnum casing" msgid_plural ".500 S&W Magnum casings" -msgstr[0] "bossolo da .500 S&W Magnum" -msgstr[1] "bossoli da .500 S&W Magnum" +msgstr[0] "bossolo calibro .500 S&W Magnum" +msgstr[1] "bossoli calibro .500 S&W Magnum" #. ~ Description for .500 S&W Magnum casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a .500 S&W Magnum round." -msgstr "Un bossolo vuoto per proiettile da .500 S&W Magnum" +msgstr "Un bossolo vuoto di un proiettile calibro .500 S&W Magnum" #: lang/json/GENERIC_from_json.py msgid ".50 BMG casing" msgid_plural ".50 BMG casings" -msgstr[0] "bossolo da .50 BMG" -msgstr[1] "bossoli da .50 BMG" +msgstr[0] "bossolo calibro .50 BMG" +msgstr[1] "bossoli calibro .50 BMG" #. ~ Description for .50 BMG casing #: lang/json/GENERIC_from_json.py @@ -62564,35 +62929,36 @@ msgid "" "An empty casing from a .50 BMG round. These are rare, so you might want to " "hold onto these." msgstr "" -"Un bossolo per proiettile da .50 BMG. Sono rari, dovresti conservarli." +"Un bossolo di un proiettile calibro .50 BMG. Sono rari, dovresti " +"conservarli." #: lang/json/GENERIC_from_json.py msgid "5.45x39mm casing" msgid_plural "5.45x39mm casings" -msgstr[0] "bossolo da 5.45x39mm" -msgstr[1] "bossoli da 5.45x39mm" +msgstr[0] "bossolo calibro 5.45x39mm" +msgstr[1] "bossoli calibro 5.45x39mm" #. ~ Description for 5.45x39mm casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a 5.45x39mm round." -msgstr "Un bossolo vuoto per proiettile da 5.45x39mm." +msgstr "Un bossolo vuoto di un proiettile calibro 5.45x39mm." #: lang/json/GENERIC_from_json.py msgid "5.7x28mm casing" msgid_plural "5.7x28mm casings" -msgstr[0] "bossolo da 5.7x28mm" -msgstr[1] "bossoli da 5.7x28mm" +msgstr[0] "bossolo calibro 5.7x28mm" +msgstr[1] "bossoli calibro 5.7x28mm" #. ~ Description for 5.7x28mm casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a 5.7x28mm round." -msgstr "Un bossolo vuoto per proiettile da 5.7x28mm" +msgstr "Un bossolo vuoto di un proiettile calibro 5.7x28mm" #: lang/json/GENERIC_from_json.py msgid ".700 NX casing" msgid_plural ".700 NX casings" -msgstr[0] "bossolo da .700 NX" -msgstr[1] "bossoli da .700 NX" +msgstr[0] "bossolo calibro .700 NX" +msgstr[1] "bossoli calibro .700 NX" #. ~ Description for .700 NX casing #: lang/json/GENERIC_from_json.py @@ -62600,29 +62966,30 @@ msgid "" "An empty casing from a .700 NX round. These are rare, so you might want to " "hold onto these." msgstr "" -"Un bossolo vuoto per proiettile da .700 NX. Sono rari, dovesti conservarli." +"Un bossolo vuoto di un proiettile calibro .700 NX. Sono rari, dovesti " +"conservarli." #: lang/json/GENERIC_from_json.py msgid "7.62x54mmR casing" msgid_plural "7.62x54mmR casings" msgstr[0] "bossolo 7.62x54mmR" -msgstr[1] "bossoli da 7.62x54mmR " +msgstr[1] "bossoli calibro 7.62x54mmR " #. ~ Description for 7.62x54mmR casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a 7.62x54mmR round." -msgstr "Un bossolo per proiettile da 7.62x54mmR." +msgstr "Un bossolo di un proiettile calibro 7.62x54mmR." #: lang/json/GENERIC_from_json.py msgid "7.62x39mm casing" msgid_plural "7.62x39mm casings" -msgstr[0] "bossolo da 7.26x39mm" -msgstr[1] "bossoli da 7.26x39mm" +msgstr[0] "bossolo calibro 7.26x39mm" +msgstr[1] "bossoli calibro 7.26x39mm" #. ~ Description for 7.62x39mm casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a 7.62x39mm round." -msgstr "Un bossolo vuoto per proiettili da 7.26x39mm." +msgstr "Un bossolo vuoto di un proiettile calibro 7.26x39mm." #: lang/json/GENERIC_from_json.py msgid "7.62x25mm casing" @@ -62633,7 +63000,7 @@ msgstr[1] "" #. ~ Description for 7.62x25mm casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a 7.62x25mm round." -msgstr "" +msgstr "Un bossolo vuoto di un proiettile calibro 7.62x25mm." #: lang/json/GENERIC_from_json.py msgid "9x19mm casing" @@ -62644,7 +63011,7 @@ msgstr[1] "" #. ~ Description for 9x19mm casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a 9x19mm round." -msgstr "Un bossolo vuoto per proiettile da 9x19mm." +msgstr "Un bossolo vuoto di un proiettile calibro 9x19mm." #: lang/json/GENERIC_from_json.py msgid ".357 SIG casing" @@ -62671,13 +63038,13 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "9x18mm casing" msgid_plural "9x18mm casings" -msgstr[0] "bossolo da 9x18mm" -msgstr[1] "bossoli da 9x18mm" +msgstr[0] "bossolo calibro 9x18mm" +msgstr[1] "bossoli calibro 9x18mm" #. ~ Description for 9x18mm casing #: lang/json/GENERIC_from_json.py msgid "An empty casing from a 9x18mm round." -msgstr "Un bossolo vuoto per proiettile da 9x18mm." +msgstr "Un bossolo vuoto di un proiettile calibro 9x18mm." #: lang/json/GENERIC_from_json.py msgid ".380 ACP casing" @@ -63761,32 +64128,34 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "cast-iron frying pan" msgid_plural "cast-iron frying pans" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "padella di ghisa" +msgstr[1] "padelle di ghisa" #. ~ Description for cast-iron frying pan #: lang/json/GENERIC_from_json.py msgid "" "A cast-iron pan. Makes a decent melee weapon, and is used for cooking." msgstr "" +"Una padella di ghisa. È una buona arma da mischia ed è utile per cucinare." #: lang/json/GENERIC_from_json.py msgid "steel frying pan" msgid_plural "steel frying pans" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "padella di acciaio" +msgstr[1] "padelle di acciaio" #. ~ Description for steel frying pan #: lang/json/GENERIC_from_json.py msgid "" "A steel frying pan. Makes a decent melee weapon, and is used for cooking." msgstr "" +"Una padella di acciaio. È una buona arma da mischia ed è utile per cucinare." #: lang/json/GENERIC_from_json.py msgid "copper frying pan" msgid_plural "copper frying pans" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "padella di rame" +msgstr[1] "padelle di rame" #. ~ Description for copper frying pan #: lang/json/GENERIC_from_json.py @@ -63975,7 +64344,7 @@ msgid_plural "headphones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -64058,7 +64427,7 @@ msgid_plural "spare parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -64144,8 +64513,8 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "glow plug" msgid_plural "glow plugs" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "candeletta" +msgstr[1] "candelette" #. ~ Description for glow plug #: lang/json/GENERIC_from_json.py @@ -64153,6 +64522,9 @@ msgid "" "A cylindrical heating device designed to be screwed in to a diesel engine to" " aid starting in cold weather." msgstr "" +"Un dispositivo cilindrico in grado di scaldarsi, progettato per essere " +"avvitato in un motore diesel per facilitarne l'accensione quando il clima " +"esterno è troppo rigido." #: lang/json/GENERIC_from_json.py msgid "high-pressure pump" @@ -64679,7 +65051,7 @@ msgid_plural "bokken" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -64690,14 +65062,14 @@ msgstr "" "imitare il peso ed il bilanciamento di una katana vera. Nonostante non abbia" " una lama di metallo, è comunque in grado di infliggere ferite mortali." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -65279,7 +65651,7 @@ msgid_plural "bionic claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -65508,7 +65880,7 @@ msgid_plural "qiang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -65555,7 +65927,7 @@ msgid_plural "naginata" msgstr[0] "naginata" msgstr[1] "naginata" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -65566,7 +65938,7 @@ msgstr "" "della Katana e di altre lame giapponesi. Veniva usata occasionalmente dai " "samurai in antichità, o dalle loro mogli per difendere le abitazioni." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -65574,7 +65946,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -65588,7 +65960,7 @@ msgid_plural "survivor naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -65721,7 +66093,7 @@ msgid_plural "ji" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -65784,6 +66156,20 @@ msgstr "" "una lama, montati su una spada di legno. Il peso extra non è bilanciato, ma " "la lama affilata offre una buona capacità di taglio." +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -65791,7 +66177,7 @@ msgid_plural "jian" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -65877,14 +66263,14 @@ msgid_plural "tanto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -65901,14 +66287,14 @@ msgid_plural "nodachi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -66046,7 +66432,7 @@ msgid_plural "katana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -66114,7 +66500,7 @@ msgid_plural "wakizashi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -66182,7 +66568,7 @@ msgid_plural "tiger claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -66206,8 +66592,8 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "pair of nail knuckles" msgid_plural "pairs of nail knuckles" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "paio di tirapugni chiodati" +msgstr[1] "paia di tirapugni chiodati" #. ~ Description for pair of nail knuckles #: lang/json/GENERIC_from_json.py @@ -66215,12 +66601,14 @@ msgid "" "A pair of knuckles consisting of two small squares of wood with several " "nails coming through them. Useful in nasty street fights." msgstr "" +"Un paio di tirapugni artigianali realizzati con due pezzi rettangolari di " +"legno che contengono diversi chiodi sporgenti. Utile in una rissa di strada." #: lang/json/GENERIC_from_json.py msgid "pair of scrap knuckles" msgid_plural "pairs of scrap knuckles" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "paio di tirapugni improvvisati" +msgstr[1] "paia di tirapugni improvvisati" #. ~ Description for pair of scrap knuckles #: lang/json/GENERIC_from_json.py @@ -66229,12 +66617,15 @@ msgid "" "to protect the wearers knuckles. A good, quick weapon - but you have to get" " within punching range to use it." msgstr "" +"Un pezzo di metallo rozzamente martellato in una forma adatta, foderato con " +"due stracci per proteggere le nocche dell'utilizzatore. È un'arma buona e " +"veloce, ma devi portarti molto vicino all'avversario per utilizzarlo." #: lang/json/GENERIC_from_json.py msgid "pair of steel knuckles" msgid_plural "pairs of steel knuckles" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "paio di tirapugni in acciaio" +msgstr[1] "paia di tirapugni in acciaio" #. ~ Description for pair of steel knuckles #: lang/json/GENERIC_from_json.py @@ -66243,6 +66634,10 @@ msgid "" " cause punches to do more damage. A good, quick weapon - but you have to " "get within punching range to use it." msgstr "" +"Un paio di tirapugni forgiati in acciaio, progettati per essere impugnati " +"con il palmo della mano e per infliggere molti più danni con i pugni. È " +"un'arma buona e veloce, ma devi portarti molto vicino all'avversario per " +"utilizzarlo." #: lang/json/GENERIC_from_json.py msgid "explosive arrowhead" @@ -66422,13 +66817,27 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -66444,7 +66853,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -66488,7 +66897,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -66786,7 +67195,7 @@ msgid_plural "scrap copper" msgstr[0] "rottame di rame" msgstr[1] "rottami di rame" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -67060,7 +67469,7 @@ msgid_plural "splintered wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -67310,17 +67719,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -67468,8 +67877,8 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "sieve" msgid_plural "sieves" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "setaccio" +msgstr[1] "setacci" #. ~ Description for sieve #: lang/json/GENERIC_from_json.py @@ -68566,7 +68975,7 @@ msgid_plural "oars" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -68588,7 +68997,7 @@ msgid_plural "inflatable section" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -68599,7 +69008,7 @@ msgid_plural "inflatable airbag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -69477,7 +69886,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -69495,7 +69904,7 @@ msgid_plural "sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "Una lamiera di metallo sottile." @@ -69506,7 +69915,7 @@ msgid_plural "wired sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -69528,7 +69937,7 @@ msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "Un pezzo di armatura corazzata fatta di acciaio." @@ -69539,7 +69948,7 @@ msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -69562,7 +69971,7 @@ msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -69795,6 +70204,7 @@ msgstr[0] "pannello solare" msgstr[1] "pannelli solari" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " @@ -69803,6 +70213,12 @@ msgstr "" "Un dispositivo elettronico che converte la radiazione solare in energia " "elettrica. Utile per un veicolo." +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -69950,6 +70366,17 @@ msgstr[1] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -70162,13 +70589,15 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "medium steel rim" msgid_plural "medium steel rims" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "cerchione d'acciaio medio" +msgstr[1] "cerchioni d'acciaio medi" #. ~ Description for medium steel rim #: lang/json/GENERIC_from_json.py msgid "A medium size steel rim for a car tire." msgstr "" +"Un cerchione in acciaio di medie dimensioni, adatto per gli pneumatici di " +"un'automobile." #: lang/json/GENERIC_from_json.py msgid "steel motorbike rim" @@ -70206,13 +70635,15 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "17\" car tire" msgid_plural "17\" car tires" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pneumatico da 17\"" +msgstr[1] "pneumatici da 17\"" #. ~ Description for 17" car tire #: lang/json/GENERIC_from_json.py msgid "A standard 17\" car tire for fitting to a medium steel rim." msgstr "" +"Una gomma standard da 17\" per automobile, adatta ad un cerchione in acciaio" +" di media dimensione." #: lang/json/GENERIC_from_json.py msgid "16\" racing tire" @@ -70406,7 +70837,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -70465,7 +70896,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -70757,7 +71188,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -70770,7 +71201,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -70895,7 +71326,7 @@ msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -70906,7 +71337,7 @@ msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -71099,7 +71530,7 @@ msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71112,7 +71543,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71125,7 +71556,7 @@ msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71138,7 +71569,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71151,7 +71582,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71164,7 +71595,7 @@ msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -71177,7 +71608,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71190,7 +71621,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71203,7 +71634,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71216,7 +71647,7 @@ msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71229,7 +71660,7 @@ msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71242,7 +71673,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -71351,7 +71782,7 @@ msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -71377,7 +71808,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -71390,7 +71821,7 @@ msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -71416,7 +71847,7 @@ msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -71449,7 +71880,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -71796,7 +72227,7 @@ msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -72515,7 +72946,7 @@ msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -73966,7 +74397,7 @@ msgid_plural "subzero talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -74180,7 +74611,7 @@ msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -74301,7 +74732,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -74314,7 +74745,7 @@ msgid_plural "Beagle chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -75118,6 +75549,17 @@ msgid "" msgstr "" "Rimuove tutti i mostri del gioco, salvo quelli della natura selvaggia." +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -75262,8 +75704,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -75367,8 +75809,8 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "robin" msgid_plural "robins" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "pettirosso americano" +msgstr[1] "pettirossi americani" #. ~ Description for robin #: lang/json/MONSTER_from_json.py @@ -75376,6 +75818,9 @@ msgid "" "A brown songbird with a reddish-orange breast. Their eggs are a distinctive" " shade of blue." msgstr "" +"Un tordo migratore americano, volgarmente chiamato pettirosso americano. È " +"un uccello marrone con il petto rossastro-arancione. Le uova che depone " +"hanno una particolare sfumatura di blu." #: lang/json/MONSTER_from_json.py msgid "sparrow" @@ -75393,8 +75838,8 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "duck" msgid_plural "ducks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "anatra" +msgstr[1] "anatre" #. ~ Description for duck #: lang/json/MONSTER_from_json.py @@ -75402,17 +75847,22 @@ msgid "" "A mallard duck, often seen around rivers and other bodies of water. It " "feeds primarily on insects, seeds, roots, and, pre-Cataclysm, bread scraps." msgstr "" +"Un'anatra, un uccello che si può trovare spesso nei pressi di fiumi e altri " +"corsi d'acqua. Si nutre principalmente di insetti, semi, radici, e, prima " +"del Cataclisma, pezzi di pane." #: lang/json/MONSTER_from_json.py msgid "goose" msgid_plural "geese" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "oca" +msgstr[1] "oche" #. ~ Description for goose #: lang/json/MONSTER_from_json.py msgid "A Canadian goose, a common waterfowl that regrets leaving Canada." msgstr "" +"Un'oca canadese, un uccello d'acqua molto diffuso che si pente di aver " +"abbandonato il Canada." #: lang/json/MONSTER_from_json.py msgid "turkey" @@ -75538,8 +75988,8 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "pigeon" msgid_plural "pigeons" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "piccione" +msgstr[1] "piccioni" #. ~ Description for pigeon #: lang/json/MONSTER_from_json.py @@ -75549,6 +75999,11 @@ msgid "" "characteristic bobbing of the head. Because of their long wings and " "powerful flight muscles, they are strong, swift fliers." msgstr "" +"I piccioni sono dei piccoli uccelli paffuti, con una maschera di pelle " +"(cera) che corre dalle narici alla fronte. Tutti i piccioni camminano " +"impettiti molleggiando la testa in modo caratteristico. Grazie alle loro ali" +" lunghe e alla loro muscolatura possente riescono a volare a lungo e " +"velocemente." #: lang/json/MONSTER_from_json.py msgid "broken cyborg" @@ -75612,6 +76067,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -75855,8 +76315,8 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "manhack" msgid_plural "manhacks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "drone antiuomo" +msgstr[1] "droni antiuomo" #. ~ Description for manhack #: lang/json/MONSTER_from_json.py @@ -75864,6 +76324,8 @@ msgid "" "An automated anti-personnel drone, a small quadcopter robot surrounded by " "whirring blades." msgstr "" +"Un drone antiuomo costituito da un piccolo quadrirotore elettrico armato di " +"lame rotanti." #: lang/json/MONSTER_from_json.py msgid "mininuke hack" @@ -75877,6 +76339,9 @@ msgid "" "Many times as large as a normal manhack, this flying quadcopter drone " "appears to have a mininuke inside. If this is targeting you… Run." msgstr "" +"Diverse volte più grande di un normale drone antiuomo, questo drone " +"quadrirotore è armato con un ordigno nucleare in miniatura. Se ti sta " +"bersagliando... inizia a correre." #: lang/json/MONSTER_from_json.py msgid "balloon sniper-drone" @@ -75915,8 +76380,8 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "feral human" msgid_plural "feral humans" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "umano ferale" +msgstr[1] "umani ferali" #. ~ Description for feral human #: lang/json/MONSTER_from_json.py @@ -75925,10 +76390,13 @@ msgid "" "are bloodshot. This pipe-wielding maniac still breathes, but the zombies " "treat them like one of their own." msgstr "" +"Questo individuo ha le pupille dilatate e gli occhi iniettati di sangue. " +"Impugna un tubo e respira ancora, ma gli zombie lo trattano come se fosse " +"uno di loro." #: lang/json/MONSTER_from_json.py msgid "The feral human throws a rock!" -msgstr "" +msgstr "L'umano ferale lancia un sasso!" #: lang/json/MONSTER_from_json.py msgid "feral troglobite" @@ -75952,6 +76420,9 @@ msgid "" "are bloodshot. This crowbar-wielding maniac still breathes, but the zombies" " treat them like one of their own." msgstr "" +"Questo individuo ha le pupille dilatate e gli occhi iniettati di sangue. " +"Impugna un piede di porco e respira ancora, ma gli zombie lo trattano come " +"se fosse uno di loro." #: lang/json/MONSTER_from_json.py msgid "" @@ -75959,6 +76430,9 @@ msgid "" "are bloodshot. This axe-wielding maniac still breathes, but the zombies " "treat them like one of their own." msgstr "" +"Questo individuo ha le pupille dilatate e gli occhi iniettati di sangue. " +"Impugna un'ascia antincendio e respira ancora, ma gli zombie lo trattano " +"come se fosse uno di loro." #: lang/json/MONSTER_from_json.py msgid "mad scientist" @@ -76021,7 +76495,7 @@ msgid_plural "tiny fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -76032,7 +76506,7 @@ msgid_plural "small fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -76043,7 +76517,7 @@ msgid_plural "medium fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -76054,7 +76528,7 @@ msgid_plural "large fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -76065,7 +76539,7 @@ msgid_plural "huge fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -76213,7 +76687,7 @@ msgid_plural "whitefish" msgstr[0] "lavarello" msgstr[1] "lavarelli" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -76228,7 +76702,7 @@ msgid_plural "largemouth bass" msgstr[0] "boccalone" msgstr[1] "boccaloni" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -76241,7 +76715,7 @@ msgid_plural "smallmouth bass" msgstr[0] "smallmouth bass" msgstr[1] "smallmouth bass" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -76257,7 +76731,7 @@ msgid_plural "striped bass" msgstr[0] "persico spigola" msgstr[1] "persici spigola" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -76272,7 +76746,7 @@ msgid_plural "white bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -76313,7 +76787,7 @@ msgid_plural "sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -76324,7 +76798,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -76349,7 +76823,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -76360,7 +76834,7 @@ msgid_plural "green sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -76371,7 +76845,7 @@ msgid_plural "longear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -76382,7 +76856,7 @@ msgid_plural "redear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -76393,7 +76867,7 @@ msgid_plural "rock bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -76406,7 +76880,7 @@ msgid_plural "calico bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -76441,7 +76915,7 @@ msgid_plural "channel catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -76452,7 +76926,7 @@ msgid_plural "white catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -76554,7 +77028,7 @@ msgid_plural "fallfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -76581,7 +77055,7 @@ msgid_plural "crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -76615,7 +77089,7 @@ msgstr "" "costruzione di innumerevoli dighe. Adesso avranno una nuova chance di " "sopravvivere senza le dighe in funzione." -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -76628,7 +77102,7 @@ msgid_plural "giant crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -76641,7 +77115,7 @@ msgid_plural "colossal crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -76698,12 +77172,14 @@ msgid "" "A large mutant variety of carp. It has shimmering green scales and a mouth " "lined with three jagged rows of razor-sharp teeth." msgstr "" +"Una grossa carpa mutante. Possiede delle squame verdi splendenti ed una " +"bocca dotata di tre fila di denti affilati come rasoi." #: lang/json/MONSTER_from_json.py msgid "fungal blossom" msgid_plural "fungal blossoms" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "bocciolo fungale" +msgstr[1] "boccioli fungali" #. ~ Description for fungal blossom #: lang/json/MONSTER_from_json.py @@ -76711,6 +77187,8 @@ msgid "" "A broad fungus, looking much like a glowing blue sunflower. It appears to " "emit finer spores than the typical fungal emission." msgstr "" +"Un fungo largo che assomiglia ad un girasole blu luccicante. Emette delle " +"spore molto più fini rispetto a quelle tipiche degli altri funghi." #: lang/json/MONSTER_from_json.py msgid "fungal hedgerow" @@ -77297,7 +77775,7 @@ msgid_plural "fused dragonflies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -77484,7 +77962,7 @@ msgstr[1] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -79156,7 +79634,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "cane da montagna dei Pirenei" msgstr[1] "cani da montagna dei Pirenei" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -79369,7 +79847,7 @@ msgid_plural "moose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -79533,7 +80011,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -79821,10 +80299,11 @@ msgstr[1] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -79835,6 +80314,17 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -82084,7 +82574,7 @@ msgid_plural "sawbones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -82099,7 +82589,7 @@ msgid_plural "doctor burns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -82283,7 +82773,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -82402,17 +82892,18 @@ msgstr[1] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -82854,7 +83345,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -82898,7 +83389,7 @@ msgid_plural "scissorlimbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -82912,7 +83403,7 @@ msgid_plural "hanging innards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -83414,7 +83905,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -85318,7 +85809,7 @@ msgid_plural "wisp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -85862,7 +86353,7 @@ msgid_plural "coelophysis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -85875,7 +86366,7 @@ msgid_plural "dilophosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -85888,7 +86379,7 @@ msgid_plural "ceratosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -85902,7 +86393,7 @@ msgid_plural "spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -85916,7 +86407,7 @@ msgid_plural "allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -85929,7 +86420,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -85943,20 +86434,33 @@ msgid_plural "siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -85969,7 +86473,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -85982,7 +86486,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -85995,7 +86499,7 @@ msgid_plural "compsognathus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -86008,7 +86512,7 @@ msgid_plural "gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -86038,7 +86542,7 @@ msgid_plural "nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -86051,7 +86555,7 @@ msgid_plural "deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -86090,7 +86594,7 @@ msgid_plural "amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -86103,7 +86607,7 @@ msgid_plural "apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -86116,7 +86620,7 @@ msgid_plural "brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -86129,7 +86633,7 @@ msgid_plural "diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -86140,7 +86644,7 @@ msgid_plural "camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -86153,7 +86657,7 @@ msgid_plural "brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -86166,7 +86670,7 @@ msgid_plural "alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -86179,7 +86683,7 @@ msgid_plural "scutellosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -86192,7 +86696,7 @@ msgid_plural "stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -86204,7 +86708,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -86217,7 +86721,7 @@ msgid_plural "ankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -86230,7 +86734,7 @@ msgid_plural "nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -86242,7 +86746,7 @@ msgid_plural "edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -86255,7 +86759,7 @@ msgid_plural "camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -86268,7 +86772,7 @@ msgid_plural "parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -86279,7 +86783,7 @@ msgid_plural "maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -86292,7 +86796,7 @@ msgid_plural "corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -86305,7 +86809,7 @@ msgid_plural "edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -86316,7 +86820,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -86329,7 +86833,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -86342,7 +86846,7 @@ msgid_plural "pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -86355,7 +86859,7 @@ msgid_plural "kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -86369,7 +86873,7 @@ msgid_plural "torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -86382,7 +86886,7 @@ msgid_plural "triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -86395,7 +86899,7 @@ msgid_plural "dimorphodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -86408,7 +86912,7 @@ msgid_plural "pteranodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -86421,7 +86925,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -86434,7 +86938,7 @@ msgid_plural "mosasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -86447,7 +86951,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -86460,7 +86964,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -86473,7 +86977,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -86486,7 +86990,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -86499,7 +87003,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -86512,7 +87016,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -86525,7 +87029,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -86628,6 +87132,20 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -87141,20 +87659,20 @@ msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" @@ -87214,7 +87732,6 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -87235,25 +87752,88 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -87476,6 +88056,19 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -87586,7 +88179,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -88046,6 +88639,7 @@ msgstr[1] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -88095,6 +88689,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "" msgstr[1] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -88499,6 +89099,19 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -88531,7 +89144,7 @@ msgid_plural "Rage Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -88544,7 +89157,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -88558,7 +89171,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -88616,7 +89229,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -88679,7 +89292,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -88923,12 +89536,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -88937,66 +89563,67 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -89004,12 +89631,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -89018,12 +89645,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -89032,16 +89659,16 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -89071,7 +89698,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -89084,7 +89711,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -89097,7 +89725,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -89110,20 +89738,26 @@ msgid_plural "skeletal siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -89136,7 +89770,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -89162,7 +89796,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -89174,7 +89808,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -89187,8 +89821,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -89207,7 +89841,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -89221,7 +89855,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -89234,7 +89868,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -89247,7 +89881,7 @@ msgid_plural "armored diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -89260,7 +89894,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -89273,7 +89907,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -89286,7 +89920,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -89299,7 +89933,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -89312,7 +89946,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -89326,7 +89960,7 @@ msgid_plural "Bone Fortress" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -89340,7 +89974,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -89353,7 +89987,7 @@ msgid_plural "armored edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -89366,7 +90000,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -89379,7 +90013,7 @@ msgid_plural "armored maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -89392,7 +90026,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -89405,7 +90039,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -89418,7 +90052,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -89431,7 +90065,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -89444,7 +90078,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -89457,7 +90091,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -89470,7 +90104,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -89483,7 +90117,7 @@ msgid_plural "armored torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -89496,7 +90130,7 @@ msgid_plural "armored triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -89509,7 +90143,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -89523,7 +90157,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -89537,7 +90171,7 @@ msgid_plural "Goliath Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -89550,7 +90184,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -89563,7 +90197,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -89604,7 +90238,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -89620,7 +90254,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -89933,7 +90567,7 @@ msgid_plural "forge hounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -90239,7 +90873,7 @@ msgid_plural "hunllef rams" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -90372,6 +91006,22 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -90649,7 +91299,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -90935,7 +91585,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -96009,7 +96659,7 @@ msgstr[1] "elmetti da minatore (accesi)" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -96053,7 +96703,7 @@ msgstr "Spegni" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -96436,6 +97086,10 @@ msgid "" "to be comfortably worn on your head or attached to your helmet. Use it to " "open the cover and show the light." msgstr "" +"Questa è una lampada da indossare sulla testa, alimentata dalla magia del " +"decadimento nucleare. La sua fascia permette di indossarla confortevolmente " +"sulla testa oppure su qualsiasi copricapo. Usala per aprire il pannello ed " +"illuminare l'area circostante." #: lang/json/TOOL_ARMOR_from_json.py msgid "EOD helmet" @@ -96964,7 +97618,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -97051,8 +97705,8 @@ msgstr "" #: lang/json/TOOL_ARMOR_from_json.py msgid "radiation biomonitor" msgid_plural "radiation biomonitors" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "biomonitor radiazioni" +msgstr[1] "biomonitor radiazioni" #. ~ Description for radiation biomonitor #: lang/json/TOOL_ARMOR_from_json.py @@ -97060,6 +97714,9 @@ msgid "" "A small battery-powered biometric safety device worn on the wrist. Activate" " to check your current level of radiation exposure." msgstr "" +"Un dispositivo biometrico di sicurezza alimentato a batteria e indossato al " +"polso. Attivalo per controllare il tuo livello attuale di esposizione alle " +"radiazioni." #: lang/json/TOOL_ARMOR_from_json.py msgid "hairpin" @@ -97108,8 +97765,8 @@ msgstr "" #: lang/json/TOOL_ARMOR_from_json.py msgid "straw fedora" msgid_plural "straw fedoras" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "fedora di paglia" +msgstr[1] "fedora di paglia" #. ~ Description for straw fedora #: lang/json/TOOL_ARMOR_from_json.py @@ -97117,6 +97774,8 @@ msgid "" "Straw fedora hat, comfortable and stylish. Its brim helps keep the sun out " "of your eyes." msgstr "" +"Un fedora realizzato con paglia intrecciata, confortevole e stiloso. La sua " +"tesa tiene i tuoi occhi al riparo dal sole." #: lang/json/TOOL_ARMOR_from_json.py msgid "simple patchwork scarf" @@ -97135,7 +97794,7 @@ msgstr[1] "sciarpe trapuntate semplici" #. ~ Use action menu_text for ski mask. #: lang/json/TOOL_ARMOR_from_json.py msgid "Loosen" -msgstr "" +msgstr "Allenta" #. ~ Use action msg for simple patchwork scarf. #. ~ Use action msg for long patchwork scarf. @@ -97148,7 +97807,7 @@ msgstr "" #: lang/json/TOOL_ARMOR_from_json.py #, no-python-format msgid "You loosen your %s." -msgstr "" +msgstr "Allenti la tua %s." #. ~ Description for simple patchwork scarf #: lang/json/TOOL_ARMOR_from_json.py @@ -97156,6 +97815,8 @@ msgid "" "A simple and light cloth scarf, worn over the mouth for warmth. Use it to " "loosen it if you get too warm." msgstr "" +"Una semplice sciarpa di cotone leggera, utilizzabile per tenere la bocca al " +"caldo. Può essere allentata se fa troppo caldo." #: lang/json/TOOL_ARMOR_from_json.py msgid "simple patchwork scarf (loose)" @@ -97173,7 +97834,7 @@ msgstr[1] "sciarpe trapuntate semplicit (allentate)" #. ~ Use action menu_text for long fur scarf (loose). #: lang/json/TOOL_ARMOR_from_json.py msgid "Wrap tighter" -msgstr "" +msgstr "Stringi" #. ~ Use action msg for simple patchwork scarf (loose). #. ~ Use action msg for long patchwork scarf (loose). @@ -97183,7 +97844,7 @@ msgstr "" #. ~ Use action msg for long fur scarf (loose). #: lang/json/TOOL_ARMOR_from_json.py msgid "You wrap your scarf tighter." -msgstr "" +msgstr "Stringi la tua sciarpa." #. ~ Description for simple patchwork scarf (loose) #: lang/json/TOOL_ARMOR_from_json.py @@ -97191,6 +97852,8 @@ msgid "" "A simple and light cloth scarf, worn over the mouth for warmth. Use it to " "wear it tighter if you get too cold." msgstr "" +"Una semplice sciarpa di cotone leggera, utilizzabile per tenere la bocca al " +"caldo. Può essere stretta se fa troppo freddo." #: lang/json/TOOL_ARMOR_from_json.py msgid "long patchwork scarf" @@ -97579,17 +98242,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -97598,7 +98261,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -97821,7 +98484,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -97835,6 +98497,14 @@ msgid_plural "military flight helmets (on)" msgstr[0] "" msgstr[1] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -98187,7 +98857,7 @@ msgid_plural "bagpipes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -98814,7 +99484,7 @@ msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -98889,7 +99559,7 @@ msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -99631,7 +100301,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -99794,8 +100464,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "book binder" msgid_plural "book binders" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "raccoglitore ad anelli" +msgstr[1] "raccoglitori ad anelli" #. ~ Description for book binder #: lang/json/TOOL_from_json.py @@ -99803,6 +100473,8 @@ msgid "" "A book binder. With a pen and some paper you could copy some recipes from " "books." msgstr "" +"Un raccoglitore ad anelli. Con una penna e un po' di fogli di carta potresti" +" copiare alcune ricette dai libri." #: lang/json/TOOL_from_json.py msgid "cash card" @@ -99866,8 +100538,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "training dummy" msgid_plural "training dummys" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "manichino da allenamento" +msgstr[1] "manichini da allenamento" #. ~ Description for training dummy #: lang/json/TOOL_from_json.py @@ -99876,12 +100548,15 @@ msgid "" "This one is made from wood and it has some duct tape to mark the striking " "points." msgstr "" +"Un manichino artigianale con le fattezze di un essere umano, utile per " +"allenarsi nel combattimento ravvicinato. È realizzato in legno ed ha alcuni " +"punti segnati con del nastro adesivo che rappresentano le zone da colpire." #: lang/json/TOOL_from_json.py msgid "armored training dummy" msgid_plural "armored training dummys" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "manichino corazzato" +msgstr[1] "manichini corazzati" #. ~ Description for armored training dummy #: lang/json/TOOL_from_json.py @@ -99889,6 +100564,9 @@ msgid "" "A hand-made humanoid figure, useful for training in close quarters combat. " "This one is covered in scrap armor and looks on guard." msgstr "" +"Un manichino artigianale con le fattezze di un essere umano, utile per " +"allenarsi nel combattimento ravvicinato. Questo in particolare è dotato di " +"un'armatura di rottami metallici ed è posto in posa di guardia." #: lang/json/TOOL_from_json.py msgid "plastic jack o'lantern" @@ -100126,18 +100804,20 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "inactive tear gas hack" msgid_plural "inactive tear gas hacks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "drone lacrimogeno inattivo" +msgstr[1] "droni lacrimogeni inattivi" #. ~ Use action friendly_msg for inactive tear gas hack. #: lang/json/TOOL_from_json.py msgid "The tear gas hack flies from your hand and surveys the area!" msgstr "" +"Il drone lacrimogeno decolla dalla tua mano e inizia a sorvolare l'area!" #. ~ Use action hostile_msg for inactive tear gas hack. #: lang/json/TOOL_from_json.py msgid "You misprogram the tear gas hack; take cover!" msgstr "" +"Non sei riuscito a riprogrammare il drone lacrimogeno: corri al riparo!" #. ~ Description for inactive tear gas hack #: lang/json/TOOL_from_json.py @@ -100148,22 +100828,30 @@ msgid "" " and activate the tear gas hack. Electronics and computer skill determines " "if the targeting matrix is reprogrammed successfully." msgstr "" +"Questo è un drone lacrimogeno non attivo. I droni lacrimogeni sono dei " +"piccoli robot grossi quanto un pugno e capaci di volare. Al loro interno è " +"contenuta una bomboletta di gas lacrimogeno che il drone rilascia quando si " +"avvicina al suo bersaglio. Usa questo oggetto per riprogrammare e attivare " +"il drone. Le abilità di elettronica e di informatica determinano se la " +"matrice di bersagliamento del drone viene riprogrammata correttamente." #: lang/json/TOOL_from_json.py msgid "inactive grenade hack" msgid_plural "inactive grenade hacks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "drone granatiere non attivo" +msgstr[1] "droni granatieri inattivi" #. ~ Use action friendly_msg for inactive grenade hack. #: lang/json/TOOL_from_json.py msgid "The grenade hack flies from your hand and surveys the area!" msgstr "" +"Il drone granatiere decolla dalla tua mano e inizia a sorvolare l'area!" #. ~ Use action hostile_msg for inactive grenade hack. #: lang/json/TOOL_from_json.py msgid "You misprogram the grenade hack; take cover!" msgstr "" +"Non sei riuscito a riprogrammare il drone granatiere: corri al riparo!" #. ~ Description for inactive grenade hack #: lang/json/TOOL_from_json.py @@ -100174,6 +100862,12 @@ msgid "" "grenade hack. Electronics and computer skill determines if the targeting " "matrix is reprogrammed successfully." msgstr "" +"Questo è un drone granatiere non attivo. I droni granatieri sono dei piccoli" +" robot grossi quanto un pugno e capaci di volare. Al loro interno è " +"contenuta una granata che detona quando il drone si lancia addosso ad un " +"bersaglio. Usa questo oggetto per riprogrammare e attivare il drone. Le " +"abilità di elettronica e di informatica determinano se la matrice di " +"bersagliamento del drone viene riprogrammata correttamente." #: lang/json/TOOL_from_json.py msgid "inactive M2HB autonomous CROWS II" @@ -100195,18 +100889,18 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "inactive manhack" msgid_plural "inactive manhacks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "drone antiuomo inattivo" +msgstr[1] "droni antiuomo inattivi" #. ~ Use action friendly_msg for inactive manhack. #: lang/json/TOOL_from_json.py msgid "The manhack flies from your hand and surveys the area!" -msgstr "" +msgstr "Il drone antiuomo decolla dalla tua mano e inizia a sorvolare l'area!" #. ~ Use action hostile_msg for inactive manhack. #: lang/json/TOOL_from_json.py msgid "You misprogram the manhack; it's hostile!" -msgstr "" +msgstr "Non sei riuscito a riprogrammare il drone antiuomo: è ostile!" #. ~ Description for inactive manhack #. ~ Description for inactive hack @@ -100218,6 +100912,12 @@ msgid "" "activate the manhack. Electronics and computer skill determines if the " "targeting matrix is reprogrammed successfully." msgstr "" +"Questo è un drone antiuomo non attivo. I droni antiuomo sono dei piccoli " +"robot grossi quanto un pugno e capaci di volare. Sono dotati di una lama " +"circolare rotante, che usano per attaccare i bersagli lanciandosi addosso ad" +" essi. Usa questo oggetto per riprogrammare e attivare il drone. Le abilità " +"di elettronica e di informatica determinano se la matrice di bersagliamento " +"del drone viene riprogrammata correttamente." #: lang/json/TOOL_from_json.py msgid "inactive mininuke hack" @@ -101443,7 +102143,7 @@ msgstr "" "Nepal. Possiede una lama pesante curvata verso l'interno che gli permette di" " essere utile sia come strumento che come arma." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -101451,7 +102151,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -101539,7 +102239,7 @@ msgid_plural "dao" msgstr[0] "dao" msgstr[1] "dao" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -101595,7 +102295,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -101607,7 +102307,7 @@ msgstr "" "Wakizashi. Rimane comunque una lama mortale nonostante le dimensioni ridotte" " rispetto ad altre armi bianche Giapponesi." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -101641,7 +102341,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -101730,14 +102430,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -101751,7 +102451,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -101913,7 +102613,7 @@ msgid_plural "synthetic fabric" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -102658,7 +103358,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -105018,8 +105718,8 @@ msgstr "Le batterie della torcia elettrica rinforzata si sono esaurite." #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -105344,8 +106044,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "scalpel" msgid_plural "scalpels" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "bisturi" +msgstr[1] "bisturi" #. ~ Description for scalpel #: lang/json/TOOL_from_json.py @@ -105718,6 +106418,39 @@ msgstr[1] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -106431,7 +107164,7 @@ msgid_plural "shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -106442,7 +107175,7 @@ msgid_plural "electric shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -106486,6 +107219,32 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -107038,7 +107797,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -107052,7 +107811,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -107529,8 +108288,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -107538,8 +108297,8 @@ msgid_plural "%s (happy)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -107547,8 +108306,8 @@ msgid_plural "%s (focus)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -107556,8 +108315,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -107565,7 +108324,7 @@ msgid_plural "%s (wake up)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -108010,7 +108769,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "Miscuglio di parti di vestito di cotone " msgstr[1] "Miscuglio di parti di vestito di cotone " -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -108241,13 +109000,13 @@ msgid_plural "loose caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -108260,13 +109019,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -108737,6 +109496,21 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -109022,7 +109796,7 @@ msgid_plural "pliers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " @@ -109031,6 +109805,21 @@ msgstr "" "Un paio di semplici pinze a giunto scorrevole, utili per lavori meccanici di" " base. Qualsiasi attività più complessa richiede una chiave inglese." +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -109092,6 +109881,33 @@ msgstr "" "Questo è un set di cacciaviti in varie dimensioni e tipi di punte. Certo di " "avere lo strumetto adatto per un lavoro più preciso." +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -109231,12 +110047,26 @@ msgstr "" "carcasse." #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" -msgstr[0] "chiave inglese" -msgstr[1] "chiavi inglesi" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " @@ -109245,6 +110075,20 @@ msgstr "" "Una chiave inglese regolabile. Potrebbe essere una buona arma da mischia ed " "è indispensabile in numerosi progetti meccanici." +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -109541,36 +110385,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -109610,6 +110424,12 @@ msgstr "" " identificherà come alleato e inizierà a muoversi in giro oppure ti seguirà," " sparando a qualsiasi minaccia con i suoi sistemi d'armamento." +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -109832,8 +110652,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -110274,7 +111094,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -110705,7 +111525,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -110752,7 +111572,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -110770,7 +111590,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -111775,6 +112595,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -111826,6 +112655,30 @@ msgstr[1] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -112738,8 +113591,8 @@ msgid "Fashion Designer" msgstr "Fashion Designer" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." -msgstr "Moda per uomini, donne e mutanti." +msgid "From catwalk to cataclysm." +msgstr "" #: lang/json/achievement_from_json.py msgid "Survivalist" @@ -113230,6 +114083,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -114106,15 +114963,14 @@ msgstr "" "d'installazione CBM ti ha lasciato un paio di inutili moduli bionici che gr" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" +msgid "Intradermal Alloy - Arms" msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -114130,37 +114986,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" +msgid "Intradermal Alloy - Legs" msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -114171,8 +115026,8 @@ msgstr "Batteria di Sistema" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -119800,7 +120655,7 @@ msgstr "Hai una ferita infetta." #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -123168,7 +124023,7 @@ msgstr "" #: lang/json/fault_from_json.py msgid "Blackpowder fouling" -msgstr "" +msgstr "Otturazione da polvere nera" #. ~ description for fault '{'str': 'Blackpowder fouling'}' #: lang/json/fault_from_json.py @@ -123179,11 +124034,17 @@ msgid "" "impact on reliability at high levels, but black powder fouling accumulates " "quickly." msgstr "" +"Sparare delle cartucce assemblate con polvere nera causa otturazione " +"all'arma da fuoco, riducendone l'affidabilità, e se non viene pulita la " +"porta ad arrugginire. La polvere nera ottura le armi molto più velocemente " +"rispetto alle moderne munizioni con polvere infume. L'otturazione ha un " +"impatto negativo soltanto a livelli elevati, ma l'uso della polvere nera " +"velocizza notevolmente questo processo." #. ~ name of mending method for fault '{'str': 'Blackpowder fouling'}' #: lang/json/fault_from_json.py msgid "Clean blackpowder fouling" -msgstr "" +msgstr "Pulisci i residui di polvere nera" #. ~ success message for mending method 'Clean blackpowder fouling' of fault #. '{'str': 'Blackpowder fouling'}' @@ -123197,7 +124058,7 @@ msgstr "" #. ~ name of mending method for fault '{'str': 'Blackpowder fouling'}' #: lang/json/fault_from_json.py msgid "Clean blackpowder fouling and lubricate" -msgstr "" +msgstr "Pulisci i residui di polvere nera e lubrifica" #. ~ success message for mending method 'Clean blackpowder fouling and #. lubricate' of fault '{'str': 'Blackpowder fouling'}' @@ -124578,8 +125439,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "whack!" @@ -124599,9 +125459,8 @@ msgstr "" "visibilità. Nonostante tutto non è molto efficace nel fermare un veicolo in " "movimento." -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "smash!" @@ -125297,7 +126156,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "crunch!" @@ -127597,7 +128456,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "forgia" @@ -127721,6 +128581,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -130147,8 +131021,8 @@ msgstr "" #: lang/json/gun_from_json.py msgid "M60" msgid_plural "M60s" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "M60" +msgstr[1] "M60" #: lang/json/gun_from_json.py msgid "" @@ -130156,6 +131030,10 @@ msgid "" ".30-caliber M1918 and M1919. Heavy and difficult to handle fired from the " "shoulder, as most people aren't action-movie heroes." msgstr "" +"La M60 è una mitragliatrice general-purpose sviluppata per sostituire le " +"calibro .30 M1918 e M1919. È pesante e difficile da maneggiare quando viene " +"sparata dalla spalla, non tutte le persone sono i protagonisti di un film " +"d'azione." #: lang/json/gun_from_json.py msgid "M60 Semi Auto" @@ -130197,8 +131075,8 @@ msgstr "" #: lang/json/gun_from_json.py msgid "M24" msgid_plural "M24" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "M24" +msgstr[1] "M24" #: lang/json/gun_from_json.py msgid "" @@ -130208,6 +131086,11 @@ msgid "" "a 'weapon system' because it consists of not only a rifle, but also a " "detachable telescopic sight and other accessories." msgstr "" +"L'M24 è la versione militare del Remington 700, utilizzata dall'esercito e " +"dalle forze di polizia. M24 è il nome affibbiatogli dall'esercito USA dopo " +"la sua adozione come fucile di precisione standard nel 1988. L'M24 è " +"definito \"sistema d'arma\" (weapon system) in quanto include non solo il " +"fucile, ma anche l'ottica rimovibile ed altri accessori." #: lang/json/gun_from_json.py msgid "HK417 A2" @@ -130262,20 +131145,22 @@ msgstr "" #: lang/json/gun_from_json.py msgid "Skorpion Vz. 61" msgid_plural "Skorpion Vz. 61s" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Skorpion Vz. 61" +msgstr[1] "Skorpion Vz. 61" #: lang/json/gun_from_json.py msgid "" "The Skorpion Vz. 61 is a Czechoslovak submachine gun from the 1950s, " "chambered in .32 ACP." msgstr "" +"La Skorpion Vz. 61 è una mitraglietta proveniente dalla Cecoslovacchia degli" +" anni '50. Utilizza proiettili calibro .32 ACP." #: lang/json/gun_from_json.py msgid "Walther PPK" msgid_plural "Walther PPK" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Walther PPK" +msgstr[1] "Walther PPK" #: lang/json/gun_from_json.py msgid "" @@ -130286,14 +131171,14 @@ msgstr "" "questa piccola arma potrebbe comunque tornarti utile." #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -130350,8 +131235,8 @@ msgstr "" #: lang/json/gun_from_json.py msgid "2 Shot Special" msgid_plural "2 Shot Specials" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "2 Colpi Special" +msgstr[1] "2 Colpi Special" #: lang/json/gun_from_json.py msgid "" @@ -130359,6 +131244,10 @@ msgid "" "the name is less about the double barrels and more about the number of shots" " you'll get before it breaks down on you." msgstr "" +"Una rozza pistola artigianale dotata di 2 canne in grado di sparare " +"proiettili calibro .38 Special. Sfortunatamente, il suo nome non si " +"riferisce al numero di canne, ma al numero di colpi che possono essere " +"sparati prima che cada a pezzi." #: lang/json/gun_from_json.py msgid "COP .357 Derringer" @@ -130376,8 +131265,8 @@ msgstr "" #: lang/json/gun_from_json.py msgid "S&W Model 10" msgid_plural "S&W Model 10" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "S&W Model 10" +msgstr[1] "S&W Model 10" #: lang/json/gun_from_json.py msgid "" @@ -130385,6 +131274,9 @@ msgid "" "handgun of the 20th century. It has a swing-out cylinder for ease of " "reloading." msgstr "" +"Un revolver da 6 colpi, prodotto a partire dal 1899 e noto per essere il " +"revolver più popolare del XX secolo. Ha un meccanismo che permette al " +"tamburo di uscire lateralmente dal telaio, per facilitare la ricarica." #: lang/json/gun_from_json.py msgid "pipe rifle: .38 Special" @@ -130395,26 +131287,31 @@ msgstr[1] "" #: lang/json/gun_from_json.py msgid "Ruger LCR .38" msgid_plural "Ruger LCR .38" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Ruger LCR .38" +msgstr[1] "Ruger LCR .38" #: lang/json/gun_from_json.py msgid "" "A compact, double-action-only revolver designed for easy concealment, with a" " stainless steel cylinder and aluminum frame." msgstr "" +"Un revolver compatto ad azione doppia progettato per essere trasportato " +"discretamente, dotato di un cilindro in acciaio inossidabile e telaio in " +"alluminio." #: lang/json/gun_from_json.py msgid "S&W 619" msgid_plural "S&W 619" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "S&W 619" +msgstr[1] "S&W 619" #: lang/json/gun_from_json.py msgid "" "A seven-round .38 revolver sold by Smith & Wesson. It features a fixed rear" " sight and a reinforced frame." msgstr "" +"Un revolver calibro .38 con tamburo da 7 colpi, venduto dalla Smith & " +"Wesson. Possiede un mirino posteriore fisso e un telaio rinforzato." #: lang/json/gun_from_json.py msgid "MAC-11" @@ -130438,16 +131335,16 @@ msgstr "" "che si aggira tra i 1200 e i 1400 colpi al minuto." #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -131471,14 +132368,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -132012,6 +132909,14 @@ msgid "" "while bodyguarding, this is your gun. When the briefcase is open the MP5 " "may be reloaded or dismounted." msgstr "" +"Questa è una valigetta ventriquattrore dotata di un grilletto nel manico ed " +"un piccolo buco sul lato. Per sparare con la mitraglietta MP5K-PDW montata " +"al suo interno bisogna impugnare la valigetta all'altezza della vita, " +"assicurarsi che sia puntata verso il nemico e premere il grilletto nella " +"maniglia. La precisione e la maneggevolezza ne risentono notevolmente, " +"tuttavia se devi \"consegnare la merce\" o mantenere un profilo basso mentre" +" stai scortando qualcuno, questa è l'arma per te. Aprendo la valigetta è " +"possibile ricaricare o smontare l'MP5 al suo interno." #: lang/json/gun_from_json.py msgid "Luger P08" @@ -133810,6 +134715,19 @@ msgid_plural "acid dart guns" msgstr[0] "" msgstr[1] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -136396,8 +137314,9 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -136409,10 +137328,10 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -136914,17 +137833,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -137023,7 +137946,7 @@ msgstr "" #: lang/json/help_from_json.py msgid ": Introduction" -msgstr "" +msgstr ": Introduzione" #: lang/json/help_from_json.py msgid "" @@ -137031,6 +137954,9 @@ msgid "" "apocalyptic world. You have survived the original onslaught, but the future" " looks pretty grim." msgstr "" +"Cataclysm: Dark Days Ahead è un gioco di sopravvivenza a turni ambientato in" +" un mondo post apocalittico. Sei sopravvissuto all'attacco iniziale, ma il " +"futuro sembra tetro." #: lang/json/help_from_json.py msgid "" @@ -137039,6 +137965,10 @@ msgid "" "survivors you must stay alert, since someone may be plotting behind your " "back to take your hard-earned loot." msgstr "" +"Dovrai prepararti ad affrontare le varie avversità incombenti, tra cui " +"scarsità di risorse, creature ostili e meteo dannoso. Dovrai stare all'erta" +" persino tra i tuoi amici sopravvissuti, qualcuno potrebbe complottare alle " +"tue spalle per impossessarsi del tuo sudato bottino." #: lang/json/help_from_json.py msgid "" @@ -137052,6 +137982,15 @@ msgid "" "survival situation, and at least a dozen more from the eldritch and sci-fi " "nature of the Cataclysm itself." msgstr "" +"Nonostante qualcuno possa considerare Cataclysm: Dark Days Ahead un " +"roguelike, si distingue dai roguelike tradizionali in diversi aspetti " +"importanti. Piuttosto che esplorare un dungeon sotterraneo con un'area " +"limitata ad ogni livello, ti trovi in un mondo infinito, che si estende " +"lungo tutti e quattro i punti cardinali. In questo gioco di sopravvivenza, " +"dovrai trovare cibo, mantenerti idratato e anche dormire regolarmente. È " +"basato sul principio del realismo, per cui aspettati tutte le difficoltà di " +"una situazione di sopravvivenza reale, e anche di più dall'essenza " +"soprannaturale e fantascientifica del Cataclisma stesso." #: lang/json/help_from_json.py msgid "" @@ -137060,18 +137999,23 @@ msgid "" "Firearms, medications, and a wide variety of tools are all available to help" " you survive." msgstr "" +"Sebbene Cataclysm: Dark Days Ahead richiede molta più attenzione di altri " +"giochi, la sua ambientazione moderna facilita alcune attività. Armi da " +"fuoco, medicine e una vasta gamma di strumenti ti aiuteranno a sopravvivere." #: lang/json/help_from_json.py msgid ": Movement" -msgstr "" +msgstr ": Movimento" #: lang/json/help_from_json.py msgid "Movement is performed using the numpad, the arrow keys, or vikeys." msgstr "" +"Il movimento è eseguito usando il tastierino numerico, le frecce " +"direzionali, o i tasti hjklyubn." #: lang/json/help_from_json.py msgid "" -msgstr "" +msgstr "" #: lang/json/help_from_json.py msgid "" @@ -137079,6 +138023,10 @@ msgid "" " you will then replenish a variable amount of movement points, depending on " "many factors (press to see the exact amount)." msgstr "" +"Ogni passo consuma 100 punti movimento (o più, a seconda del terreno); " +"dopodiché recupererai un ammontare variabile di punti movimento, a seconda " +"di diversi fattori (premi per vedere la quantità " +"esatta)." #: lang/json/help_from_json.py msgid "To attempt to hit a monster with your weapon, simply move into it." @@ -137094,6 +138042,11 @@ msgid "" "choose a direction). Smashing down obstacles is much easier with a good " "weapon or a strong character." msgstr "" +"Troverai porte che possono essere aperte con o chiuse con " +", mentre alcune sono bloccate. Le porte bloccate, le finestre " +"e qualche altro ostacolo possono essere distrutti frantumandoli " +"(, poi scegli una direzione). Questa operazione è molto più " +"facile con una buona arma o un personaggio forte." #: lang/json/help_from_json.py msgid "" @@ -137104,10 +138057,16 @@ msgid "" " is on, any movement will be ignored if new monsters enter the player's " "view." msgstr "" +"Qualche volta ti vorrai muovere velocemente tenendo premuto un tasto di " +"movimento. Tuttavia, muoversi in questa maniera può portare il giocatore in " +"una situazione pericolosa o essere addirittura ucciso prima ancora che " +"possano reagire. Premendo puoi attivare o disattivare la " +"\"Modalità Sicura\". Se nuovi mostri vengono avvistati dal giocatore mentre" +" questa modalità è attiva, ogni movimento sarà ignorato." #: lang/json/help_from_json.py msgid ": Viewing" -msgstr "" +msgstr ": Osservazione" #: lang/json/help_from_json.py msgid "" @@ -137120,16 +138079,28 @@ msgid "" " enough. Pressing Shift+vikeys (h,j,k,l,y,u,b,n) will scroll the view " "persistently, allowing you to keep an eye on things as you move around." msgstr "" +"Il giocatore è spesso in grado di vedere più di quanto sia mostrato sullo " +"schermo. Premendo attivi la \"modalità osservatore\", che ti " +"consente di muovere la visuale per osservare gli oggetti sulla mappa, i " +"mostri presenti e il loro atteggiamento nei confronti del personaggio. " +"Premendo ti verrà fornita una lista degli oggetti visibili," +" ricorda che il contenuto di casse, credenze, frigoriferi e simili, non è " +"visibile a meno che tu non ci sia adiacente. Premere Shift+vikeys " +"(h,j,k,l,y,u,b,n) sposterà la visuale in maniera permanente, permettendoti " +"di tenere d'occhio i dintorni mentre ti muovi, premi : per resettarla." #: lang/json/help_from_json.py msgid "" "Places outside of your view but seen previously and still memorized can be " "visualized, but they will be covered by the \"fog of war.\"" msgstr "" +"I luoghi fuori dal tuo campo visivo, ma visti in precedenza e ancora " +"memorizzati, possono essere osservati, ma saranno coperti dalla \"nebbia di " +"guerra\"." #: lang/json/help_from_json.py msgid ": Hunger, thirst, and sleep" -msgstr "" +msgstr ": Fame, sete e sonno" #: lang/json/help_from_json.py msgid "" @@ -137145,6 +138116,18 @@ msgid "" " need to track both your immediate hunger/fullness and the overall nutrition" " of your whole body." msgstr "" +"Con lo scorrere del tempo, comincerai a sentire fame e sete, e il tuo " +"stomaco te lo ricorderà. Quando ciò accade, informazioni al riguardo " +"compariranno nella barra a lato. Attento a non confonderti: a seconda della" +" situazione, verrà mostrato sia quanto è pieno il tuo stomaco, sia " +"l'intensità della fame in relazione al tuo status di nutrizione. Il tuo " +"livello di nutrizione corporea è differente dalla fame al momento: per " +"esempio, ti puoi sentire sazio dopo un gran pasto ed essere comunque " +"denutrito, e puoi comunque essere affamato mentre sei sovrappeso. Puoi " +"avere pasti regolari che non ti facciano mai sentire la fame, ma essere " +"comunque denutrito se l'apporto calorico è troppo basso. In altre parole, " +"Devi tenere conto sia della fame/sazietà che provi al momento che della " +"nutrizione complessiva del tuo intero corpo." #: lang/json/help_from_json.py msgid "" @@ -137157,6 +138140,15 @@ msgid "" " When hunger and thirst progress to severe levels, you will also suffer " "penalties. Thirst will kill you faster than hunger." msgstr "" +"Il cibo impiega del tempo per essere digerito, mentre l'acqua percorre il " +"tuo apparato digerente più velocemente del cibo solido. Abbuffarsi " +"all'improvviso di cibo e bevande ti può far sentire eccessivamente pieno, " +"per cui dividi i tuoi pasti. Se in precedenza sei rimasto senza mangiare, " +"puoi recuperare la massa corporea perduta accumulando calorie, ma ci vorrà " +"del tempo. Ingozzarsi per un lungo periodo di tempo porta all'obesità. " +"Entrambi gli estremi sono penalizzati. Subirai penalità anche quando la " +"fame e la sete raggiungono livelli critici. La sete ti ucciderà più " +"velocemente della fame." #: lang/json/help_from_json.py msgid "" @@ -137171,6 +138163,17 @@ msgid "" "completely atrocious one. You can, and should, examine food items (by " "pressing ) to view their nutritional information." msgstr "" +"È possibile andare incontro a diverse carenze vitaminiche se non si mangia " +"adeguatamente. Queste carenze hanno diversi stadi; per esempio, se sei in " +"perfetta salute non svilupperai una forma grave di scorbuto in un attimo. " +"Ogni carenza in via di sviluppo e in corso viene segnalata nel foglio del " +"personaggio. Le carenze causano diverse penalità, ma sono sempre " +"reversibili e le compresse multivitaminiche ti possono aiutare per " +"contrastarle. È possibile assumere una particolare vitamina in eccesso, ma " +"anche in questo caso possono insorgere dei problemi. Assicurati di seguire " +"una dieta bilanciata, o per lo meno non seguirne una atroce. Sei in grado, " +"e dovresti, esaminare il cibo (premendo ) per vedere i suoi " +"valori nutritivi." #: lang/json/help_from_json.py msgid "" @@ -137180,6 +138183,12 @@ msgid "" " other hand, vegetables, herbal teas, and many other self-prepared meals are" " good for your health, and should be welcome additions to your diet." msgstr "" +"Una dieta squilibrata influirà la tua salute. Il cibo da fast food, le " +"merendine e le bevande dolci hanno un alto apporto calorico, ma non sono una" +" buona fonte di cibo sostenibile, se non vuoi che la tua salute ne risenta." +" Dall'altro lato, le verdure, gli infusi di erbe e molti altri pasti " +"preparati personalmente fanno bene alla tua salute, e dovresti includerli " +"nella tua dieta." #: lang/json/help_from_json.py msgid "" @@ -137194,6 +138203,18 @@ msgid "" "and may yield disease-carrying water. To make sure it's healthy, purify the" " water by boiling it or using a water purifier before drinking." msgstr "" +"Trovare cibo in una città è generalmente facile, al di fuori di esse avresti" +" bisogno di ricorrere alla caccia ed al foraggio. Dopo aver ucciso un " +"animale, posizionati sopra il suo corpo e premi per " +"macellarlo in piccoli tagli di carne. Puoi anche andare a raccogliere " +"frutta o verdura commestibili; per fare ciò, trova una pianta promettente ed" +" esaminala. Analogamente, puoi bere acqua da un fiume o da altre risorse " +"naturali. Per raccoglierla, posizionati vicino, o nell'acqua bassa, e premi" +" . Avrai bisogno di un contenitore a tenuta stagna per " +"immagazzinarla. Fai attenzione: molte fonti d'acqua non sono sicure e " +"possono dare acqua contaminata da malattie. Per essere sicuro che sia " +"salubre, purificala facendola bollire o usando un purificatore idrico prima " +"di berla." #: lang/json/help_from_json.py msgid "" @@ -137205,10 +138226,18 @@ msgid "" "also be vulnerable to attack, so try to find a safe place to sleep, or set " "traps for unwary intruders." msgstr "" +"Ogni dozzina d'ore circa, comincerai a sentirti assonnato. Se non dormi, " +"premendo , comincerai a subire penalità alle statistiche e al " +"movimento. Non sempreessere in grado di addormentarti immediatamente, per " +"aiutarti ad addormentati puoi dormire al chiuso, specialmente su un letto. " +"Se non è abbastanza puoi ricorrere ai sonniferi. Mentre dormi, recupererai " +"lentamente i punti ferita persi. Ricordati che sarai anche vulnerabile agli" +" attacchi, per ciò prova a trovare un luogo sicuro per dormire, o piazza " +"delle trappole per gli intrusi incauti." #: lang/json/help_from_json.py msgid ": Pain and stimulants" -msgstr "" +msgstr ": Dolore e stimolanti" #: lang/json/help_from_json.py msgid "" @@ -137219,6 +138248,12 @@ msgid "" "under the influence of many painkillers, the physiological side effects may " "slow you down or reduce your stats." msgstr "" +"Quando subisci danni di qualsiasi tipo, comincerai a sentire dolore. Il " +"dolore ti rallenta e abbassa le tue statistiche, e riuscire a gestirlo è " +"imperativo. Il modo più comune è tramite i farmaci: l'aspirina, la codeina," +" il tramadolo, l'ossicodone e altri sono delle buone opzioni. Ricorda che " +"diversi antidolorifici possono avere effetti collaterali psicologici che ti " +"possono rallentare o abbassare le statistiche." #: lang/json/help_from_json.py msgid "" @@ -137226,6 +138261,9 @@ msgid "" " oxycodone and don't notice the effects right away, don't start taking more " "- you may overdose and die!" msgstr "" +"Ricorda che molti antidolorifici hanno bisogno di un po' di tempo perché " +"comincino ad avere effetto. Se prendi dell'ossicodone e non noti un effetto" +" immediato, non prenderne di più: potresti andare in overdose e morire!" #: lang/json/help_from_json.py msgid "" @@ -137233,9 +138271,9 @@ msgid "" "in a lot of pain, it may be wise to find a safe spot and simply rest for an " "extended period of time." msgstr "" -"Il dolore scompare anche col passare del tempo - se non hai altre opzioni, " -"aspettare in un posto sicuro anzichè spostarsi con una velocità ridotta è " -"una buona scelta." +"Il dolore scompare anche col passare del tempo, se non hai farmaci a " +"disposizione, può essere saggio riposare in un posto sicuro anziché " +"spostarsi con una velocità ridotta." #: lang/json/help_from_json.py msgid "" @@ -137246,22 +138284,33 @@ msgid "" "importantly, most are highly addictive. Stimulants range from the caffeine " "rush of cola to the more intense high of Adderall and methamphetamine." msgstr "" +"Gli stimolanti sono un'altra categoria comune di farmaci. Ti forniscono una" +" scarica di energia temporanea, aumentando la tua velocità di movimento e " +"molte statistiche (in particolare l'intelligenza), rendendoli degli aiuti " +"utili per lo studio. Gli stimolanti hanno due svantaggi: rendono più " +"difficile dormire e, soprattutto, danno facilmente assuefazione. I loro " +"effetti variano dalla scarica di caffeina di una cola, a quelli più intensi " +"dell'Adderall e della metanfetamina." #: lang/json/help_from_json.py msgid "" "Depressants are the opposite of stimulants. They will make you groggy and " "sluggish, but may help you in falling asleep." msgstr "" +"Gli inibitori sono l'opposto degli stimolanti. Ti renderanno lento e " +"barcollante, ma ti aiutano ad addormentarti." #: lang/json/help_from_json.py msgid "" "Extremely elevated levels of stimulants or depressants in your system are " "dangerous to your health." msgstr "" +"Livelli estremamente elevati di stimolanti o inibitori nel tuo corpo sono " +"pericolosi per la tua salute." #: lang/json/help_from_json.py msgid ": Healing and medication" -msgstr "" +msgstr ": Guarigione e medicazioni" #: lang/json/help_from_json.py msgid "" @@ -137273,12 +138322,22 @@ msgid "" "die. For other body parts, it means broken bones, significant penalties, " "and a long process of healing - after placing the affected limb in a splint." msgstr "" +"Quando subisci dei danni, lo status della parte del corpo colpita cambierà, " +"come mostrato nella barra a lato. La sua condizione generale è " +"rappresentata da una serie di barre che si esauriscono e cambiano colore man" +" mano che prendi danni. Se il danno accumulato è superiore a ciò che l'arto" +" può sopportare, questo si romperà. Se ciò avviene ad una parte del corpo " +"vitale (ovvero il tuo torso o la tua testa), morirai; mentre per gli altri " +"arti significa ossa spezzate, penalità importanti e un lungo processo di " +"guarigione... dopo aver immobilizzato l'arto con una stecca." #: lang/json/help_from_json.py msgid "" "Normal damage heals with time. You heal more during a good sleep, but " "wounds also heal a bit while you are awake." msgstr "" +"I danni normali guariscono con il tempo. Guarisci più velocemente mentre " +"dormi, ma le ferite si rimarginano unn po' anche quando sei sveglio." #: lang/json/help_from_json.py msgid "" @@ -137290,6 +138349,13 @@ msgid "" "Remember to always treat your wounds as much as you can, as this is the " "proper way to get them healed." msgstr "" +"Hai bisogno di medicare adeguatamente le tue ferite, perché altrimenti " +"guariranno molto lentamente. Prima di tutto, devi fasciarle e, se " +"possibile, anche disinfettarle. Ciò pone le basi per una completa e rapida " +"guarigione. Se possiedi l'abilità, puoi realizzare delle fasciature " +"improvvisate e ci sono diversi modi per rifornire le scorte di " +"disinfettante. Ricordati di medicare sempre le tue ferite al meglio che " +"puoi, siccome questo è il modo idoneo per farle guarire." #: lang/json/help_from_json.py msgid "" @@ -137306,6 +138372,18 @@ msgid "" "regular antibiotic intake may keep you alive long enough for that to happen." " You have to wait it out, in the hope that you will not die in the process." msgstr "" +"Se uno zombie ti afferra, è possibile che ti morda. Queste ferite possono " +"essere profonde; questo significa che è infetta. Se accade, il nome della " +"parte del corpo affetta diventerà blu. Significa che devi disinfettarla il " +"prima possibile per evitare un'infezione grave. Se non hai nodo di " +"procurarti del disinfettante nell'immediato, puoi provare a ricorrere ad un " +"metodo più drastico cauterizzando la ferita, ma questo spesso peggiora la " +"situazione piuttosto che aiutare. Se non medichi l'infezione, questa si " +"aggraverà ed il suo nome diverrà di colore verde. A questo punto, è troppo " +"tardi per disinfettare la ferita e dovrai ricorrere agli antibiotici; il tuo" +" corpo combatterà l'infezione da solo e assumerli regolarmente ti può tenere" +" vivo fino alla guarigione. Dovrai aspettare un po' e sperare di non morire" +" durante il processo." #: lang/json/help_from_json.py msgid "" @@ -137314,6 +138392,11 @@ msgid "" " stop bleeding is to use a bandage, and there are additional medical items " "dedicated to stopping hemorrhage." msgstr "" +"Se stai sanguinando, il nome della parte ferita diventa rosso e l'arto " +"interessato subirà danni fintanto che sanguina. È possibile applicare " +"pressione per fermare l'emorragia aspettando del tempo con le mani libere, " +"ma è più efficace usare delle fasciature o altri strumenti medici " +"appropriati." #: lang/json/help_from_json.py msgid "" @@ -137326,10 +138409,18 @@ msgid "" "less beneficial effects, and if you are a seasoned chemist you can " "synthesize your own drugs." msgstr "" +"Puoi soffrire di diverse condizioni mediche e malattie durante la partita. " +"In quel caso ti convenie cercare una cura appropriata, se ne esiste una per " +"i tuoi malanni. Esistono molti medicamenti oltre a quelli già menzionati, " +"alcuni dei quali hanno effetti addizionali che potresti usare in modi " +"diversi da quelli previsti. Con qualche abilità puoi anche provare la " +"medicina naturale, considerato che molte erbe hanno effetti più o meno " +"benefici, e se sei un chimico esperto puoi anche sintetizzarti i tuoi " +"farmaci." #: lang/json/help_from_json.py msgid ": Addiction" -msgstr "" +msgstr ": Dipendenza" #: lang/json/help_from_json.py msgid "" @@ -137340,6 +138431,13 @@ msgid "" "substance, addiction has only one cure: going cold turkey. The process may " "last for days, and will leave you very weak, so try to do it in a safe area." msgstr "" +"Molti farmaci, droghe (e alcuni consumabili) possono dare dipendenza. Ogni " +"volta che consumi sostanze simili, c'è la possibilità di diventarne " +"assuafatti. Consumare altre dosi della sostanza aumenterà l'assuefazione. " +"Gli effetti variano considerevolmente, ma indipendentemente dalla sostanza, " +"la dipendenza ha una sola cura: disintossicarsi. Il processo può durare " +"diversi giorni, e ti lascerà molto debole, per cui cerca di farlo in un'area" +" sicura." #: lang/json/help_from_json.py msgid "" @@ -137347,10 +138445,12 @@ msgid "" "substance will cause the effects to cease immediately, but may deepen your " "dependence." msgstr "" +"Se soffri dei sintomi d'astinenza, assumere una dose della sostanza li farà " +"smettere immediatamente, ma può aggravare la tua assuefazione." #: lang/json/help_from_json.py msgid ": Morale and learning" -msgstr "" +msgstr ": Umore e apprendimento" #: lang/json/help_from_json.py msgid "" @@ -137358,6 +138458,9 @@ msgid "" "depressing post-apocalypse world is tough to deal with, and your mood will " "naturally decrease very slowly." msgstr "" +"Il tuo personaggio ha un livello di umore, che lo influnza in diversi modi." +" Il mondo post-apocalittico è deprimente e duro da sopportare, e il tuo " +"umore si abbasserà molto lentamente." #: lang/json/help_from_json.py msgid "" @@ -137366,6 +138469,10 @@ msgid "" "drugs are but a few options. However, most morale-boosting activities can " "only elevate your mood to a certain level before they grow boring." msgstr "" +"Ci sono molte opzioni per migliorare l'umore: leggere un libro divertente, " +"mangiare cibo delizioso, ascoltare della musica e assumere droghe sono solo " +"alcune opzioni. Tuttavia, molte attività che migliorano il morale possono " +"farlo solo fino ad un certo livello prima che diventino noiose." #: lang/json/help_from_json.py msgid "" @@ -137374,6 +138481,10 @@ msgid "" "technical book, killing a friendly NPC, or going through drug withdrawal are" " some prominent examples." msgstr "" +"Ci sono anche molti modi per cui il tuo umore può diminuire, oltre al suo " +"decadimento naturale verso il suo livello normale. Mangiare cibo " +"sgradevole, leggere un noioso libro tecnico, uccidere un PNG amichevole o " +"soffrire di crisi d'astinenza sono alcuni esempi di rilievo." #: lang/json/help_from_json.py msgid "" @@ -137383,6 +138494,11 @@ msgid "" "fills you with gusto and energy, and you will find yourself moving faster. " "At extremely high levels, you will receive stat bonuses." msgstr "" +"Avere l'umore basso ti renderà lento e immotivato. Se il morale diventa " +"molto basso, non sarai nemmeno in grado di fabbricare niente. Se diventi " +"abbastanza depresso, subirai penalità alle statistiche. Avere l'umore molto" +" alto ti riempirà di entusiasmo ed energia, e ti muoverai più velocemente. " +"Livelli estremamente alti di morale ti daranno bonus alle statistiche." #: lang/json/help_from_json.py msgid "" @@ -137392,6 +138508,12 @@ msgid "" " learning potential. Higher or lower focus levels make it easier or harder " "to learn from practical experience." msgstr "" +"L'umore influenza anche la tua efficacia d'apprendimento, attraverso una " +"meccanica chiamata 'concentrazione'. Il tuo livello di concentrazione è una" +" misura di quanto efficacemente puoi imparare. Il suo livello normale è 100," +" che indica un potenziale d'apprendimento nella norma. Valori di umore più " +"alti o più bassi rendono più facile o più difficile imparare dall'esperienza" +" pratica." #: lang/json/help_from_json.py msgid "" @@ -137402,6 +138524,12 @@ msgid "" " factored into the set point calculation - it's harder to learn when you're " "in pain." msgstr "" +"Il tuo grado di concentrazione tenderà naturalmente verso un livello base. " +"Quando la tua concentrazione è molto più bassa (o molto più alta) di " +"suddetto livello, cambierà più velocemente che quando ne è vicina. Avere un" +" umore alto alza il livello base, mentre l'umore basso lo abbassa. Nel " +"calcolo del livello viene considerato anche il dolore... è più difficile " +"imparare mentre si è doloranti." #: lang/json/help_from_json.py msgid "" @@ -137412,6 +138540,13 @@ msgid "" "decreases your focus rapidly, by giving a significant penalty to the set " "point of your focus." msgstr "" +"La tua concentrazione viene anche abbassata da alcune attività. Apprendere " +"un'abilità tramite la pratica sul campo abbassa gradualmente la " +"concentrazione di una quantità influenzata dal tuo attuale livello di " +"concentrazione (concentrazione alta significa un calo maggiore, e un " +"apprendimento migliore). Apprendere un'abilità leggendo libri ti toglie " +"rapidamente concentrazione, dando una penalità severa al livello base della " +"tua concentrazione." #: lang/json/help_from_json.py msgid "" @@ -137420,10 +138555,14 @@ msgid "" "performing relevant actions, but you will not progress in that skill while " "it's disabled." msgstr "" +"Se non vuoi esercitare un'abilità la puoi disabilitare nel Menù di " +"Informazioni del Giocatore (premi ), ciò previene il " +"consumo di concentrazione mentre si eseguono azioni correlate, ma non " +"progradirai in quell'abilità mentre è disabilitata." #: lang/json/help_from_json.py msgid ": Radioactivity and mutation" -msgstr "" +msgstr ": Radioattività e mutazioni" #: lang/json/help_from_json.py msgid "" @@ -137435,6 +138574,14 @@ msgid "" "not know that you are under its influence until it results in radiation " "sickness." msgstr "" +"Nonostante sia relativamente raro, alcune aree del mondo possono essere " +"contaminate da radiazioni. Queste si accumulano gradualmente nel tuo corpo," +" indebolendoti sempre di più. Mentre nelle aree non contaminate, il tuo " +"livello di radiazioni si abbasserà lentamente; assumere compresse di blu di " +"Prussia ti aiuterà ad accelerare questo processo. Siccome le radiazioni " +"sono invisibili, ti conviene procurarti uno strumento di misurazione, e non " +"puoi mai sapere se ne sei contaminato finché non cominci a soffrirne " +"l'avvelenamento." #: lang/json/help_from_json.py msgid "" @@ -137444,6 +138591,11 @@ msgid "" "play style considerably. It is possible to find substances that will remove" " mutations, though these are extremely rare." msgstr "" +"Se hai un livello di radiazione elevato, potresti acquisire delle mutazioni." +" La maggior parte delle volte saranno negative; altre invece sono positive, " +"ed alcune hanno sia effetti positivi che negativi. Potresti anche trovare " +"delle sostanze che rimuovono le mutazioni che hai sviluppato, ma sono " +"abbastanza rare." #: lang/json/help_from_json.py msgid "" @@ -137453,10 +138605,15 @@ msgid "" "met, you will permanently transcend your humanity into a wholly different " "life-form." msgstr "" +"Ci sono diverse sostanze mutagene e il loro consumo (o iniezione) ti " +"garantiranno delle mutazioni. Tuttavia, il processo mette a dura prova il " +"tuo corpo e può dare dipendenza. Una volta che abbastanza mutazioni sono " +"acquisite e alcune condizioni soddisfatte, trascenderai la tua umanità in " +"maniera permanente diventando una forma di vita totalmente differente." #: lang/json/help_from_json.py msgid ": Bionics" -msgstr "" +msgstr ": Bionici" #: lang/json/help_from_json.py msgid "" @@ -137465,6 +138622,11 @@ msgid "" " have unique effects that are otherwise unobtainable. Some bionics are " "constantly working, whereas others need to be toggled on and off as needed." msgstr "" +"I bionici sono potenziamenti biomeccanici per il tuo corpo. Sebbene molti " +"siano semplicemente versioni 'incorporate' di oggetti che altrimenti avresti" +" bisogno di trasportare, alcuni bionici forniscono effetti altrimenti " +"inaccessibili. Alcuni sono costantemente in funzione, mentre altri devono " +"essere attivati e disattivati a seconda della necessità." #: lang/json/help_from_json.py msgid "" @@ -137474,6 +138636,11 @@ msgid "" "be done in a variety of ways, but all require the installation of a special " "bionic just for that purpose." msgstr "" +"Molti bionici richiedono una fonte di energia, e avrai bisogno di una " +"batteria interna per immagazzinarla. Il tuo attuale livello di energia è " +"mostrato nella barra a lato. La ricarica dell'energia può essere eseguita " +"in molti modi, ma tutti richiedono l'installazione di un bionico speciale " +"dedicato." #: lang/json/help_from_json.py msgid "" @@ -137487,6 +138654,16 @@ msgid "" "modules obtained this way may require extra preparation to become safely " "usable." msgstr "" +"L'installazione di un bionico è possibile solamente tramite un apparato " +"medico specializzato, meglio se operato da un personale specializzato. " +"L'utilizzo di macchinari per manipolare i bionici richiede alti livelli di " +"Intelligenza, primo soccorso, informatica ed elettronica. Fai attenzione: " +"un fallimento ti può menomare! Molti moduli bionici sono difficili da " +"trovare, ma possono essere acquistati da alcuni vagabondi erranti per un " +"prezzo molto alto, o acquisiti dissezionando abilmente i corpi degli " +"utilizzatori di bionici deceduti (inclusi gli zombie). I moduli bionici " +"ottenuti in questa maniera richiedono una preparazione aggiuntiva per essere" +" usati in sicurezza." #: lang/json/help_from_json.py msgid "" @@ -137495,6 +138672,10 @@ msgid "" "installation and removal are non-trivial surgical procedures, and therefore " "require anesthesia." msgstr "" +"Qualsiasi bionico può essere rimosso dal tuo corpo, ma questo procedimento " +"può essere ancora più difficile, e quindi più rischioso, dell'installazione." +" Né l'installazione né la rimozione di bionici sono operazioni di poco " +"conto, richiedono pertanto l'anestesia." #: lang/json/help_from_json.py msgid "" @@ -137504,6 +138685,12 @@ msgid "" "proper anesthesia - normal drugs won't help. However, you can bypass this " "restriction if you find a way to completely negate pain." msgstr "" +"Per i sopravvissuti solitari, la scelta standard per l'installazione o la " +"rimozione di bionici è un Autodoc. In genere, ne puoi trovare uno negli " +"ospedali o nelle cliniche. Tutte le procedure dell'Autodoc richiedono un " +"kit anestetico. Non pensare nemmeno di provarci senza un'adeguata " +"anestesia, i farmaci normali non aiutano. Puoi tuttavia raggirare queste " +"restrizioni se trovi un modo per annullare totalmente il dolore." #: lang/json/help_from_json.py msgid "" @@ -137511,6 +138698,10 @@ msgid "" "immobilization of the patient, and only then the operation - which may take " "hours. So you have to make sure that you will be safe during this process." msgstr "" +"Ricorda che l'installazione o la rimozione dei bionici richiedono la " +"sedazione, l'immobilizzazione del paziente, e solo poi l'operazione può " +"cominciare, ma può durare ore. Assicurati quindi che ti troverai al sicuro " +"durante il processo." #: lang/json/help_from_json.py msgid ": Crafting" @@ -137522,6 +138713,9 @@ msgid "" "money to trade for. Fortunately, it is possible to craft a wide variety of " "goods (as best you can) with the proper tools, materials, and training." msgstr "" +"Molti oggetti importanti possono essere difficili da trovare, o hanno un " +"alto prezzo di commercio. Fotunatamente, è possibile fabbricare una vasta " +"gamma di beni con i giusti strumenti, materiali e abilità." #: lang/json/help_from_json.py msgid "" @@ -137529,6 +138723,10 @@ msgid "" "so you can keep your tool set. All recipes require one or more ingredients;" " these ARE used up in crafting." msgstr "" +"Alcune preparazioni richiedono una serie di strumenti che non vengono " +"consumati durante la fabbricazione, per cui puoi conservare il tuo kit. " +"Tutte le preparazioni richiedono uno o più ingredienti, questi SONO " +"consumati." #: lang/json/help_from_json.py msgid "" @@ -137543,18 +138741,32 @@ msgid "" "to the book: just have it handy when crafting. Different skills are useful " "for different applications:" msgstr "" +"Per fabbricare oggetti, premere . Ci sono otto categorie: " +"Armi, Munizioni, Cibo, Chim, Elettronica, Armature, Altro e Animali. Ogni " +"categoria principale è suddivisa in sottocategorie. La realizzazione di " +"alcuni oggetti non hanno bisognono di particolari abilità, ma la maggior " +"parte ti richiedono determinate competenze. Delle volte, un abile " +"sopravvissuto è in grado di scoprire un certo procedimento grazie alle sue " +"conoscenze, ma più spesso avrai bisogno di materiale di riferimento, in " +"genere un libro. Usare i libri durante una fabbricazione ti da la " +"possibilità di memorizzarne il procedimento: devi seplicemente tenerli a " +"portata di mano. Le diverse abilità hanno diverse applicazioni:" #: lang/json/help_from_json.py msgid "" "-> Fabrication is the generic artisan skill, used for a wide variety of " "gear." msgstr "" +"-> Fabbricazione è l'abilità generica dell'artigianato, usata per un'ampia " +"gamma di attrezzature." #: lang/json/help_from_json.py msgid "" "-> Cooking is used to make tasty recipes; more intricate (and usually more " "nutritious) recipes require higher levels of the cooking skill." msgstr "" +"-> Cucina è usata per la realizzazione di pasti deliziosi; ricette più " +"complesse (e in genere più nutrienti) richiedono livelli alti nell'abilità." #: lang/json/help_from_json.py msgid "" @@ -137562,15 +138774,22 @@ msgid "" "like lye and various acids, or weaponized chemicals and various beneficial " "elixirs." msgstr "" +"-> Scienze Applicate è la tua abilità nella chimica; utilizzala per " +"realizzare cose semplici come la lisciva e vari acidi, armi chimiche o degli" +" elisir benefici." #: lang/json/help_from_json.py msgid "-> Tailoring is used to create basic clothing, and armor later on." msgstr "" +"-> Sartoria è usata per creare dei semplici indumenti e, a livelli più " +"avanzati, delle armature." #: lang/json/help_from_json.py msgid "" "-> Electronics lets you make a wide variety of tools with intricate uses." msgstr "" +"-> Elettronica ti consente di realizzare una vasta gamma di strumenti dagli " +"usi complessi." #: lang/json/help_from_json.py msgid "" @@ -137578,12 +138797,18 @@ msgid "" " create certain items. Traps, Marksmanship, and First Aid are all required " "for certain items." msgstr "" +"In aggiunta all'abilità di creazione primaria, altre abilità possono essere " +"necessarie per creare alcuni oggetti. Per alcuni oggetti sono richieste " +"Trappole, Tiratore e Primo Soccorso." #: lang/json/help_from_json.py msgid "" "Crafting an item with high difficulty may fail and possibly waste some " "materials. You should gather and prepare spare material, just in case." msgstr "" +"La fabbricazione di un oggetto con un alto grado di difficoltà può portare a" +" fallimenti e spreco di materiali. Per sicurezza, è meglio raccogliere e " +"preparare dei materiali di scorta." #: lang/json/help_from_json.py msgid "" @@ -137592,6 +138817,11 @@ msgid "" " out of metal to handle heavier loads. Using a workbench or other furniture" " for crafting is more comfortable; therefore, crafting is faster." msgstr "" +"La produzione di oggetti molto grandi/pesanti o in blocco, riesce meglio ad " +"un banco da lavoro di qualche tipo. Puoi usare qualsiasi tavolo comune, o " +"costruirtene uno di metallo cosicché regga carichi maggiori. L'utilizzo di " +"un banco da lavoro, o di altri mobili, rende la fabbricazione più comoda, e " +"quindi più veloce." #: lang/json/help_from_json.py msgid "" @@ -137599,16 +138829,21 @@ msgid "" "wrapped in a special item representing the craft being made. You may use it" " to resume crafting at any point." msgstr "" +"Se il processo di realizzazione viene interrotto per qualsiasi motivo, i " +"progressi vengono salvati usando un oggetto speciale che rappresenta la " +"fabbricazione in corso. Puoi tornare a lavorarci in ogni momento." #: lang/json/help_from_json.py msgid "" "Batch crafting in most cases means saved time, and your companions can also " "help if they know the ropes." msgstr "" +"Generalmente, la produzione in blocco fa risparmiare tempo, e i tuoi " +"compagni ti possono anche aiutare, premesso che abbiano le competenze." #: lang/json/help_from_json.py msgid ": Traps" -msgstr "" +msgstr ": Trappole" #: lang/json/help_from_json.py msgid "" @@ -137620,6 +138855,14 @@ msgid "" "Others need to be crafted; this requires the Traps skill, and possibly " "Mechanics." msgstr "" +"Prima di addormentarti in un territorio pericoloso, può essere saggio " +"piazzare delle trappole per scoraggiare ospiti indesiderati... o almeno " +"avvisarti che qualcuno sta entrando. Nel mondo ci sono diversi tipi di " +"trappole, tra cui la Pluriball (che va molto rumore quando qualcuno la " +"calpesta, allertandoti e svegliandoti) e le tagliole per orsi (fanno rumore " +"E danni, e intrappolano chiunque le calpesti). Altre trappole possono " +"essere costruite; ciò richiede l'abilità Trappole e, possibilmente, " +"Meccanica." #: lang/json/help_from_json.py msgid "" @@ -137628,6 +138871,11 @@ msgid "" "require additional tools, like a shovel, to be set. Once set, a trap will " "remain in place until stepped on or disarmed." msgstr "" +"Per piazzare una trappola, basta usare l'oggetto (premi ) e " +"scegliere una direzione; la trappola verrà posizionata nella casella scelta." +" Il piazzamento di alcune trappole possono richiedere degli strumenti " +"addizionali, come una pala. Una volta collocata, la trappola rimarrà al suo" +" posto finché non scatta o non verrà disattivata." #: lang/json/help_from_json.py msgid "" @@ -137637,6 +138885,12 @@ msgid "" "however, if you fail, there is a chance that you will set off the trap, " "suffering the consequences." msgstr "" +"Per disinnescare una trappola, esamina (premendo ) l'area in " +"cui si trova. La tua probabilità di successo dipende dalla tua abilità in " +"Trappole e dalla tua Destrezza. Se ci riesci, la trappola è rimossa e " +"sostituita da alcuni o tutti i suoi componenti; tuttavia, in caso di " +"fallimento, esiste la possibilità che tu faccia scattare la trappola, " +"pagandone le conseguenze." #: lang/json/help_from_json.py msgid "" @@ -137644,16 +138898,22 @@ msgid "" "entirely dependent upon your Perception. Should you stumble into a trap, " "you may have a chance to avoid it, depending on your Dodge skill." msgstr "" +"Molte trappole sono parzialmente o totalmente occultate. La tua abilità di " +"individuare le trappole dipende totalmente dalla tua percezione. Se dovessi" +" innescare una trappola, hai la possibilità di evitarla, a seconda della tua" +" abilità di Evasione." #: lang/json/help_from_json.py msgid "" "Some traps can be built via the construction menu. Pit traps are the most " "common example." msgstr "" +"Alcune trappole possono essere costruite tramite il menù di costruzione. Le" +" fosse sono l'esempio più comune." #: lang/json/help_from_json.py msgid ": Items overview" -msgstr "" +msgstr ": Panoramica degli oggetti" #: lang/json/help_from_json.py msgid "" @@ -137663,6 +138923,11 @@ msgid "" "as a { with a blue background. Pressing , then a direction " "key, will allow you to examine these containers and loot their contents." msgstr "" +"Esiste una vasta gamma di oggetti che puoi usare. Se li trovi per terra, li" +" puoi raccogliere premendo quando ti trovi nella loro " +"casella. Alcuni oggetti si trovano all'interno di un contenitore, premendo " +" e poi un tasto direzionale, ti permetterà di esaminarlo e di" +" prenderne il contenuto." #: lang/json/help_from_json.py msgid "" @@ -137672,6 +138937,10 @@ msgid "" " to open the \"View Nearby Items\" menu and selecting an " "item." msgstr "" +"Premere apre un menù che ti permette di paragonare due " +"oggetti con le loro statistiche colorate per indicare come differiscono. È " +"anche possibile accedere al menù di comparazione premendo C dopo aver aperto" +" il menù \"Visualizza Oggetti Vicini\" premendo ." #: lang/json/help_from_json.py msgid "" @@ -137698,6 +138967,32 @@ msgid "" "the effectiveness of weapons; the amount of damage you actually inflict will" " vary depending on the situation." msgstr "" +"Quasi ogni oggetto può essere usato come arma bianca, sebbene alcuni siano " +"meglio di altri. Per controllare le statistiche per il combattimento " +"ravvicinato di un oggetto che stai trasportando, premi per" +" per aprire l'inventario, seleziona poi l'oggetto da analizzare. Ci sono 5 " +"valori rilevanti: bonus (o penalità) per colpire, il movimento d'attacco, e " +"i danni contundenti, taglienti e perforanti. Il bonus per colpire influenza" +" la probabilità che l'attacco vada a segno e che un colpo diventi critico. " +"Il movimento d'attacco rappresenta i punti movimento usati per attaccare " +"usando l'arma, 100 punti movimento equivalgono ad un secondo. I danni " +"contundenti possono stordire il mostro, impedendogli di contrattaccare, ma " +"sono fortemente infuenzati dalla tua forza. I danni taglienti sono " +"generalmente maggiori di quelli contundenti, ma molti mostri ne protetti " +"grazie alla loro armatura naturale. I danni perforanti penetrano le " +"armature meglio dei taglienti, ma il loro danno complessivo è inferiore, " +"specialmente se non sei molto abile nel maneggiare armi di questo tipo. " +"Anche questo tipo di danni può essere ridotto dall'armatura naturale dei " +"mostri. Il valore dei danni al secondo standard valgono per il tuo " +"sopravvissuto e prende in considerazione il movimento d'attacco, l'ingombro," +" i colpi a vuoto, l'abilità con l'arma, i colpi critici e l'armatura del " +"bersaglio. Il valore 'Migliore' è contro un bersaglio senza protezioni e " +"senza abilità di Evasione. Il valore 'Vs. Agile' è contro un bersaglio " +"senza protezioni ma con un alto livello in Evasione. Il valore 'Vs. " +"Corazzato' è contro un bersaglio con più di 15 in protezione Contundente e " +"20 in protezione Tagliente. Questi valori servono a darti un'idea " +"dell'efficacia di un arma; l'ammontare di danni che infliggerai cambieranno " +"a seconda della situazione." #: lang/json/help_from_json.py msgid "" @@ -137708,6 +139003,12 @@ msgid "" "for travel. When unwielding your weapon, you will be given a choice of what" " to do with it." msgstr "" +"Per impugnare un oggetto e usarlo come arma, premi , poi scegli" +" l'oggetto. Usare questa procedura sull'oggetto che stai già impugnando, ti" +" libererà le mani. Il volume di un oggetto impugnato non viene considerato " +"ai fini di trasporto, quindi tenere un grande oggetto in mano può essere " +"comodo per i viaggi. Quando smetti di impugnare un oggetto, ti verrà " +"chiesto cosa farne." #: lang/json/help_from_json.py msgid "" @@ -137720,6 +139021,15 @@ msgid "" "and other abilities, especially during combat. You can view and sort worn " "items by pressing ." msgstr "" +"Per indossare un indumento, premere , selezionare poi l'oggetto." +" L'armatura riduce i danni subiti e può proteggere anche da pericoli come " +"il fumo. Per togliersi un oggetto, premere , selezionare " +"poi l'oggetto desiderato. Indumenti ed armature sono indossati su strati " +"distinti e forniscono copertura, protezione e calore in misura differente. " +"Ogni capo ha il suo valore di ingombro, e indossarne troppi su un certo " +"strato ti limita notevolmente i movimenti e altre abilità, specialmente " +"durante il combattimento. Puoi vedere e gestire gli indumenti indossati " +"premendo ." #: lang/json/help_from_json.py msgid "" @@ -137731,6 +139041,13 @@ msgid "" "layering penalty applies a minimum of 2 and a maximum of 10 encumbrance per " "article of clothing." msgstr "" +"I tuoi abiti possono stare su uno dei cinque strati sul tuo corpo: sulla " +"pelle, standard, attorno alla vita, sopra altri abiti, e legati con cinghie." +" Ne puoi indossare uno per ogni strato su ogni parte del corpo senza subire" +" penalità per avere troppi abiti addosso. Ogni oggetto oltre il primo su " +"ogni strato aggiunge l'ingombro dell'articolo/i all'ingombro della parte del" +" corpo. Le penalità di stratificazione si applicano da un minimo di 2 ad un" +" massimo di 10 di ingombro per capo d'abbigliamento." #: lang/json/help_from_json.py msgid "" @@ -137740,6 +139057,12 @@ msgid "" "on a tank top it would conflict with the leather touring suit and add the " "minimum encumbrance penalty of 2." msgstr "" +"Per esempio: un personaggio può indossare, sul suo torso un corsetto di " +"pelle (a pelle), una tuta da motociclista in pelle (standard), un trench " +"(sopra gli altri abiti) e uno zaino da corsa di sopravvivenza (legato con " +"cinghie). La sua penalità di ingombro è 0. Se indossasse una canottiera, " +"questa andrebbe in contrasto con il corsetto, e la penalità d'ingombro " +"minima di 2 verrebbe applicata." #: lang/json/help_from_json.py msgid "" @@ -137747,6 +139070,10 @@ msgid "" "filter or prioritize items. You can enter item names, or use various " "advanced filter strings: {:}" msgstr "" +"Nel menù Visualizzazione degli Oggetti Vicini (aprilo premendo " +"), puoi impostare filtri di ricerca. Puoi immettere nomi " +"di oggetti, o usare varie stringhe per una ricerca avanzata: " +"{:}" #: lang/json/help_from_json.py msgid "" @@ -137754,10 +139081,13 @@ msgid "" " c = category (books, food, etc) | {c:books}\n" " m = material (cotton, Kevlar, etc) | {m:iron}" msgstr "" +"Alcune stringhe disponibili:\n" +" c = categoria (libri, cibo, ecc.) | {c:libri}\n" +" m = materiale (cotone, Kevlar, ecc.) | {m:ferro}" #: lang/json/help_from_json.py msgid ": Combat" -msgstr "" +msgstr ": Combattimento" #: lang/json/help_from_json.py msgid "" @@ -137768,6 +139098,12 @@ msgid "" "'compass' will display monsters that you see but are currently off the " "screen." msgstr "" +"Gli zombie compaiono all'inizio della partita, ma possono anche vagare nel " +"mondo. Tutti i mostri sono rappresentati da lettere o, nella versione " +"Tiles, da immagini sul tuo schermo; una lista dei nomi dei mostri visibili, " +"e la loro posizione rispetto a te, è mostrata al lato destro dello schermo." +" La 'bussola' mostra le creature che puoi vedere ma che sono al momento " +"fuori dal tuo schermo." #: lang/json/help_from_json.py msgid "" @@ -137779,6 +139115,15 @@ msgid "" " stumble and lose movement points. If a monster hits you, your clothing may" " absorb some of the damage, but you will take what remains." msgstr "" +"Per attaccare un mostro con un'arma corpo a corpo, ti basta muoverti verso " +"di lui. Il tempo impegato nell'attacco dipende dalle dimensioni e dal peso " +"della tua arma. Le armi piccole e leggere sono le più veloci; gli attacchi " +"a mani nude diventano più veloci all'aumentare della tua abilità " +"Combattimento a Mani Nude, fino a diventare MOLTO veloci. Quando un colpo " +"inflitto con un'arma contundente va a segno, è possibile che il nemico venga" +" stordito temporaneamente. Mancare un colpo ti può far barcollare e perdere" +" punti movimento. Se un mostro ti colpisce, il tuo abbigliamento può " +"assorbire parte dei danni, ma subirai comunque quelli in eccesso." #: lang/json/help_from_json.py msgid "" @@ -137787,6 +139132,12 @@ msgid "" "listed in a given firearm's description. Fortunately, a firearm often " "spawns with one such magazine in it." msgstr "" +"Quando i nemici sono troppi, potresti voler ricorrere alle armi da fuoco. " +"La maggior parte di quelle presenti in gioco richiedono un caricatore " +"compatibile per poter immagazzinare le munizioni. I caricatori compatibili " +"sono elencati nella descrizione dell'arma specifica. Fortunatamente, le " +"armi da fuoco che troverai, avranno spesso un caricatore compatibile " +"inserito." #: lang/json/help_from_json.py msgid "" @@ -137799,6 +139150,15 @@ msgid "" "round though. Of course, all of this does take time, so try not to do it if" " there are monsters nearby." msgstr "" +"Puoi rimuovere il caricatore di un'arma premendo e caricarlo " +"con munizioni compatibili, o, se hai un'arma da fuoco con un caricatore " +"riempito in parte, e hai nel tuo inventario dei proiettili dello stesso " +"tipo, puoi semplicemente ricaricarla premendo ; " +"automaticamente rimuoverai il caricatore, ci metterai quanti colpi " +"possibili, ed infine lo rimetterai nell'arma. Non ti devi preoccupare di " +"dover mettere il colpo nella camera di scoppio. Ovviamente, questo " +"procedimento richiede tempo, per cui non farlo quando ci sono dei nemici " +"nelle vicinanze." #: lang/json/help_from_json.py msgid "" @@ -137809,10 +139169,17 @@ msgid "" ".45 ACP and .460 Rowland, and\n" ".45 Colt and .454 Casull." msgstr "" +"Sebbene i caricatori e le clip (o piastrine) siano spesso specifiche per le armi, alcuni caricatori/speedloader sono compatibili con altre armi da fuoco o calibri. Sotto sono riportati alcuni esempi di calibri che possono condividere caricatori o clip:\n" +"\n" +".380 ACP e 9mm Luger,\n" +".40 S&W e 10mm Auto,\n" +".45 ACP e .460 Rowland,\n" +".45 Colt e .454 Casull." #: lang/json/help_from_json.py msgid "Magazine descriptions also list compatible ammo." msgstr "" +"Le descrizioni dei caricatori elencano anche le munizioni compatibili." #: lang/json/help_from_json.py msgid "" @@ -137822,6 +139189,11 @@ msgid "" "magazine, since a magazine always requires identical rounds to be loaded in " "it." msgstr "" +"Ricorda che, sebbene esistano diversi tipi di munizioni per ogni calibro e " +"tipo di caricatore, non puoi mescolare ed abbinare tipi diversi di colpi in " +"uno stesso caricatore. Per esempio, non puoi caricare proiettili 9x19mm JHP" +" e 9x19mm FMJ nello stesso caricatore, siccome questo richiede sempre che " +"siano inseriti munizioni identiche." #: lang/json/help_from_json.py msgid "" @@ -137831,6 +139203,12 @@ msgid "" " a clothing item, activate () the desired clothing item, at " "which point you'll get to choose which magazine to store." msgstr "" +"I caricatori possono essere trasportati usando accessori indossabili, come " +"le pettorine tattiche o le tasche per munizioni, che garantiscono un accesso" +" più rapido. Tutti i contenitori compatibili con un determinato caricatore " +"sono elencati nella sua descrizione. Per mettere un caricatore in una " +"tasca, attiva () l'accessorio desiderato, a quel punto scegli " +"quale caricatore inserire." #: lang/json/help_from_json.py msgid "" @@ -137841,6 +139219,13 @@ msgid "" ". Firing continuously, especially in bursts, will " "severely reduce accuracy." msgstr "" +"Per sparare, premi , sposta il cursore nella casella desiderata," +" premi '.' per prendere la mira ed infine 'f' per sparare. In alternativa, " +"puoi sparare ad un livello di mira predefinito usando 'a', 'c' o 'p'. " +"Alcune armi da fuoco hanno modalità di fuoco alternative, come il fuoco a " +"raffica o il fuoco automatico; per cambiare modalità, premere " +". Sparare ininterrottamente, specialmente durante " +"le raffiche, riduce pesantemente la precisione." #: lang/json/help_from_json.py msgid "" @@ -137848,6 +139233,9 @@ msgid "" "for other ranged weapons like spears or launchers, but the aiming options " "may vary." msgstr "" +"Il tasto non è esclusivo per le armi da fuoco. Funziona anche " +"per le altre armi a distanza come le lance o i lanciarazzi, ma le opzioni di" +" mira possono variare." #: lang/json/help_from_json.py msgid "" @@ -137855,10 +139243,14 @@ msgid "" " of zombies. Try to avoid getting cornered inside a building. Ducking down" " into the subways or sewers is often an excellent escape tactic." msgstr "" +"La fuga è spesso un'ottima tattica, specialmente quando si è sopraffatti da " +"un'orda di zombie. Cerca di evitare di rimanere intrappolato in un " +"edificio. Fuggire attraverso la metropolitana o le fogne è spesso un'ottima" +" scelta." #: lang/json/help_from_json.py msgid ": Martial arts styles" -msgstr "" +msgstr ": Stili di arti marziali" #: lang/json/help_from_json.py msgid "" @@ -137868,6 +139260,12 @@ msgid "" "found in their own traits, trained from manuals or by taking lessons from " "wandering masters." msgstr "" +"Il gioco propone una buona varietà di stili di combattimento, specialmente " +"per chi combatte a mani nude. Cominciando una partita con il tratto " +"Addestramento di Arti Marziali, puoi scegliere un singolo stile, comunemente" +" insegnato, a tua scelta. Molti, molti altri hanno il loro tratto " +"corrispondente, possono essere appresi da manuali o prendendo lezioni da " +"maestri erranti." #: lang/json/help_from_json.py msgid "" @@ -137881,6 +139279,15 @@ msgid "" "from accidentally wielding weapons taken from the ground, enable \"Keep " "hands free\" found in the styles menu." msgstr "" +"Per selezionare uno stile di combattimento, premi . " +"Alcuni stili possono essere usati solo quando sei disarmato, mentre altri " +"sono compatibili con (o richiedono) determinate armi. Se impugni un'arma " +"compatibile con lo stile scelto, comincerai immediatamente ad usarlo, " +"altrimenti verrà mantenuto come il tuo stile predefinito; per cominciare ad " +"usarlo, impugna un'arma compatibile o svuotati le mani premendo " +", e poi seleziona l'oggetto che stai impugnando al momento. Se" +" vuoi evitare di impugnare per errore qualcosa preso da terra, seleziona " +"\"Tieni le mani libere\" nel menù degli stili." #: lang/json/help_from_json.py msgid "" @@ -137890,6 +139297,10 @@ msgid "" "style, and range from special combo moves to bonuses depending on the " "situation you are in." msgstr "" +"Ricordati di leggere la descrizione dello stile premendo 'F1' nel menù di " +"selezione dello stile. Ti verrà fornita una lista delle sue abilità passive" +" ed attive, queste sono uniche per ogni stile e variano da speciali mosse di" +" combo a bonus che variano a seconda della situazione in cui ti trovi." #: lang/json/help_from_json.py msgid "" @@ -137898,16 +139309,23 @@ msgid "" "skill. Those special moves or combos are executed automatically during " "attacks you make." msgstr "" +"La maggior parte degli stili hanno diverse mosse speciali, la maggior parte " +"delle quali hanno un requisito d'abilità e non saranno disponibili finché " +"non raggiungerai quel livello d'abilità. Quelle mosse o combo speciali sono" +" eseguite automaticamente quando attacchi." #: lang/json/help_from_json.py msgid "" "Many styles also have special passive effects unlocked under certain " "conditions. You can also check these by examining your style." msgstr "" +"Molti stili hanno anche degli speciali effetti passivi che hanno effetto in " +"determinate condizioni. Puoi anche esaminare il tuo stile per controllarne " +"i dettagli." #: lang/json/help_from_json.py msgid ": Survival tips" -msgstr "" +msgstr ": Suggerimenti per la sopravvivenza" #: lang/json/help_from_json.py msgid "" @@ -137915,6 +139333,9 @@ msgid "" "fire, water, food. The rest is the process of trying to answer a question: " "What would you do in a survival situation?" msgstr "" +"La gerarchia dei bisogni per la sopravvivenza, nella maggior parte dei casi," +" è la seguente: rifugio, fuoco, acqua e cibo. Il resto deriva dalla " +"risposta alla domanda: Cosa faresti in una situazione di sopravvivenza?" #: lang/json/help_from_json.py msgid "" @@ -137927,6 +139348,15 @@ msgid "" " a last resort: ammo is scarce, while zombies are plenty, and unwanted " "attention may be more than you can handle." msgstr "" +"Una volta che non si è più in immediato pericolo, la prima cosa da fare è " +"cercare oggetti utili nella tua area. La tua capacità di trasporto iniziale" +" è limitata e uno zaino, un trench, o ogni altro contenitore ti consentirà " +"di portare molto di più. Trovare un'arma è importante, ma non è in cima " +"alle priorità; padelle, coltelli da macellaio, e simili sono comuni nelle " +"case, mentre nei negozi di ferramenta puoi trovare altri strumenti utili. " +"All'inizio conserva le pistole come ultima risorsa: le munizioni sono " +"scarse, mentre gli zombie sono abbondanti, e potresti non riuscire a gestire" +" le attenzioni indesiderate." #: lang/json/help_from_json.py msgid "" @@ -137937,6 +139367,12 @@ msgid "" "find food, ammunition, and many other goods, the high concentration of " "zombies makes them a deathtrap for the unprepared survivor." msgstr "" +"È anche importante portare delle medicine; gli antidolorifici sono " +"essenziali, e sostanze come le sigarette ti faciliteranno la vita (ma fai " +"attenzione alla dipendenza). Abbandona la città non appena hai una buona " +"scorta di risorse: sebbene le città siano luoghi importanti in cui trovare " +"cibo, munizioni e molto altro, l'alta concentrazione di zombie le rende " +"trappole mortali per i sopravvissuti impreparati." #: lang/json/help_from_json.py msgid "" @@ -137946,6 +139382,12 @@ msgid "" "gain nothing from combat unless you are equipped for it and killing your " "enemy will help you achieve something." msgstr "" +"Evita il combattimento ogni volta che puoi. Corri se devi, ma fai " +"attenzione alla tua resistenza; gli zombie, a differenza di te, sono " +"infaticabili. Il combattimento è sempre rischioso e talvolta, un passo " +"falso può essere il tuo ultimo. Il più delle volte non guadagni niente da " +"un combattimento, a meno che tu non sia equipaggiato a dovere e uccidere il " +"nemico non ti aiuti ad ottenere qualcosa." #: lang/json/help_from_json.py msgid "" @@ -137956,6 +139398,13 @@ msgid "" "through anyway. Never be afraid to just run if you can outpace your " "enemies. Irregular terrain, like forests, may help you lose monsters." msgstr "" +"Il combattimento è molto più facile se puoi affrontare un solo nemico alla " +"volta. Delle volte puoi occuparti di zombie solitari attirandoli in un " +"luogo a te comodo. Usa gli usci delle porte come strettoie o posizionati " +"dietro una finestra e colpisci gli zombie che lentamente si arrampicano per " +"passare. Fai attenzione: se sono tanti, riusciranno comunque ad entrare. " +"Non aver paura di dover correre se sei più veloce dei tuoi nemici. Il " +"terreno irregolare, come le foreste, ti può aiutare a fuggire." #: lang/json/help_from_json.py msgid "" @@ -137963,6 +139412,9 @@ msgid "" "attract unwanted attention. Save the guns for emergencies, and melee when " "you can." msgstr "" +"Le armi da fuoco sono il modo più semplice per eliminare un nemico, ma il " +"suono attirerà attenzioni indesiderate. Conserva le pistole per le " +"emergenze e vai in mischia quando puoi." #: lang/json/help_from_json.py msgid "" @@ -137973,6 +139425,12 @@ msgid "" "of glass, ceramics, diamond, or precious metals will be totally immune to " "acid." msgstr "" +"Se hai bisogno di proteggerti dagli acidi, cerca abiti fatti di plastica, " +"Kevlar, pelle o tessuto, in ordine decrescente di efficacia. Perciò, mentre" +" la pelle ed il Kevlar ti proteggeranno da attacchi nemici, una tuta hazmat " +"e stivali di gomma ti renderanno pressoché immune ai danni da acido. " +"Oggetti fatti di vetro, ceramiche, damante o metalli preziosi sono " +"totalmente immuni all'acido." #: lang/json/help_from_json.py msgid "" @@ -137982,6 +139440,12 @@ msgid "" "looting empty-handed; you never know what might happen, so have your most " "crucial survival items with you." msgstr "" +"Quando saccheggi, cerca di riempire il tuo inventario il più possibile senza" +" sovraccaricarti. Non si sa mai quando un oggetto ti può servire, la " +"maggior parte sono merce di scambio, e puoi facilmente gettare a terra " +"oggetti indesiderati. Ma non andare al saccheggio a mani vuote; non puoi " +"mai sapere cosa può accadere, perciò portati gli strumenti più importanti " +"per sopravvivere." #: lang/json/help_from_json.py msgid "" @@ -137996,6 +139460,16 @@ msgid "" " Finding or making a shelter with a place to sleep is very important for " "your survival." msgstr "" +"Tieni d'occhio il meteo. Vento ed umidità inaspriranno contizioni " +"terribili, per cui cerca rifugio se non sei in grado di contrastarli. " +"Rimanere asciutti è importante, specialmente se la temperatura è così bassa " +"da congelarti. Usa un asciugamano per asciugarti se sei bagnato. Se hai " +"problemi a rimanere caldo durante la notte, accumula una pila di abiti nella" +" casella su cui dormi. Trovare un cuscino ed una coperta per il tuo letto " +"migliora la qualità della tua dormita. Se non riesci a trovarli, improvvisa;" +" persino una sedia in un seminterrato è meglio di un pezzo di terra umida in" +" un campo. Trovare o realizzare un rifugio con un posto in cui dormire è " +"molto importante per la tua sopravvivenza." #: lang/json/help_from_json.py msgid "" @@ -138008,16 +139482,28 @@ msgid "" "back to life, it will help you in the long run. If these are out of your " "reach, think about constructing a root cellar." msgstr "" +"L'inverno è rigido. I liquidi e il cibo possono congelare, e potresti aver " +"bisogno di scongelarli usando apparecchiatura da cucina. Anche metterli " +"vicino ad un fuoco aiuta. I seminterrati sono più caldi d'inverno e più " +"freschi d'estate, perciò sono spesso dei buoni posti in cui immagazzinare il" +" tuo cibo in eccesso. La maggior parte del cibo va a male con il tempo, e " +"questo processo può essere accelerato o rallentato dall temperatura, mentre " +"il cibo congelato non marcisce. Se riesci a riavviare un freezer o un " +"frigorifero, questo sarà un aiuto a lungo termine. Se questi sono al di " +"fuori della tua portata, puoi costruire una dispensa sotterranea." #: lang/json/help_from_json.py msgid "" "You may preserve food in many other ways, as well; for example, by using a " "smoking rack, or cooking it into a meal that has a longer shelf life." msgstr "" +"Puoi conservare il cibo in molti altri modi; per esempio, usando un " +"affumicatore, o preparandoci un pasto che abbia una durata di conservazione " +"più lunga." #: lang/json/help_from_json.py msgid ": Vehicles and Driving" -msgstr "" +msgstr ": Veicoli e Guida" #: lang/json/help_from_json.py msgid "" @@ -138025,6 +139511,9 @@ msgid "" "control the vehicle's controls, rather than controlling the vehicle " "directly." msgstr "" +"Controlli i veicoli usando il tastierino numerico o gli altri tasti " +"direzionali. Ricordati che non controlli direttamente il veicolo, piuttosto" +" hai il controllo sui comandi del veicolo." #: lang/json/help_from_json.py msgid "" @@ -138035,6 +139524,14 @@ msgid "" "adjust course and speed. You default to cruise control, so the gas/brake " "adjust the speed which the vehicle will attempt to maintain." msgstr "" +"Per prendere il controllo di un veicolo, posizionati in un'area con i " +"\"controlli del veicolo\" funzionanti e un \"sedile\", poi premi " +". Una volta che hai preso il controllo, premi " +" per accelerare, per rallentare o andare in " +"retromarcia, & per girare a sinistra o destra. I" +" comandi diagonali regolano sia la direzione che la velocità. Il cruise " +"control è automaticamente attivo, per cui l'acceleratore e il freno regolano" +" la velocità che il veicolo cercherà di mantenere." #: lang/json/help_from_json.py msgid "" @@ -138042,6 +139539,10 @@ msgid "" "fumble the controls. As your Driving skill improves, you will fumble less " "and less. To simply maintain course and speed, hit ." msgstr "" +"Una velocità di 16-48 Km/h, o 10-30 miglia orarie, va bene per gli autisti " +"principianti, i quali tendono a essere maldestri con i comandi. Man mano " +"che la tua abilità di Guida migliora, sarai sempre meno impacciato. Per " +"mantenere la velocità e la direzione, premere ." #: lang/json/help_from_json.py msgid "" @@ -138051,6 +139552,11 @@ msgid "" " to bring up the \"Vehicle Controls\" menu, which has" " options for things you'd do from the driver's seat." msgstr "" +"Quando parcheggi, è buona norma tirare il freno a mano (\"s\"), per " +"sicurezza. Se si vuole scendere dal veicolo, accendere o spegnere le luci o" +" il motore, impostare il cruise control, o usare altri comandi del veicolo, " +"premere per aprire il menù dei \"Comandi del " +"Veicolo\", che comprende azioni che si compirebbero dal sedile dell'autista." #: lang/json/help_from_json.py msgid "" @@ -138061,6 +139567,13 @@ msgid "" " but normally has descriptions of the vehicle parts in the tile highlighted " "in the vehicle view on the left." msgstr "" +"Esaminando () un veicolo aprirai la schermata di interazione " +"con esso. Il riquadro a sinistra mostra il veicolo ed ogni sua parte con " +"una visuale dall'alto. Il riquadro centrale mostra un elenco dei motori, " +"batterie, serbatoi, armi e posti a sedere del veicolo. Il riquadro a destra" +" varia a seconda del contesto, ma normalmente presenta le descrizioni dei " +"componenti del veicolo presenti nella casella evidenziata nel riquadro a " +"sinistra." #: lang/json/help_from_json.py msgid "" @@ -138074,6 +139587,16 @@ msgid "" "and wheel condition. There are also fuel indicators on the lower right that" " give an estimate of how quickly your fuel will run out." msgstr "" +"Nella parte in basso c'è un elenco dei parametri più importanti del veicolo." +" La \"velocità sicura\" è la velocità che puoi raggiungere senza " +"danneggiare il motore, e la velocità \"massima\" è quella che puoi " +"raggiungere sfruttando la massima potenza del motore. \"Accelerazione\" è " +"quanto rapidamente la velocità del veicolo aumenta ogni turno. Il \"volume " +"di carico\" indica quanto carico puoi immagazzinare nel veicolo e quanta " +"roba stai già trasportando, \"massa\" è il peso del veicolo, mentre " +"\"Status\" e \"Ruote\" forniscono un resoconto delle condizioni del veicolo " +"e delle ruote. In basso a destra ci sono anche degli indicatori di " +"carburante che danno una stima di quanto rapidamente finirà." #: lang/json/help_from_json.py msgid "" @@ -138082,6 +139605,11 @@ msgid "" "and engine power is complicated, but generally speaking, more powerful " "engines will make your vehicle go faster but also consume fuel faster." msgstr "" +"La resistenza aerodinamica, idrostatica, l'attrito volvente (o di " +"rotolamento), e l'attrito statico sono tutti valori che influenzano la " +"velocità sicura e quella massima del veicolo. L'interazione tra resistenza " +"e potenza del motore è complessa ma, generalmente parlando, motori più " +"potenti rendono il veicolo più veloce, ma consumano anche di più." #: lang/json/help_from_json.py msgid "" @@ -138091,6 +139619,13 @@ msgid "" "having exposed passengers or full boards at the front of the vehicle. Air " "drag strongly influences vehicle speed, especially at high speeds." msgstr "" +"La resistenza aerodinamica aumenta sia con la larghezza del veicolo, sia con" +" il numero di parti che aumentano l'altezza del veicolo, come pareti " +"complete, corselli, o torrette. La resistenza aumenta anche quando il " +"veicolo assume un profilo meno aerodinamico, come nel caso di passeggeri " +"all'esterno o pareti complete sul davanti del veicolo. La resistenza " +"aerodinamica influenza fortemente la velocità del veicolo, specialmente ad " +"alte velocità." #: lang/json/help_from_json.py msgid "" @@ -138101,6 +139636,13 @@ msgid "" " tanks have a lot of rolling resistance. Rolling drag influences vehicle " "speed, but less than air drag does, especially at high speeds." msgstr "" +"L'attrito volvente aumenta con il peso del veicolo e il suo numero di ruote." +" Le ruote rigide hanno un attrito minore di quelle gonfiabili, ma pesano di" +" più, se quindi cambi le tue ruote gonfiabili con quelle rigide, l'attrito " +"ptrebbe risultare maggiore. I cingoli hanno un'enorme attrito volvente e " +"sono anche molto pesanti, di conseguenza, i mezzi cingolati hanno molto " +"attrito. Anche questo attrito influenza la velocità del veicolo, ma meno di" +" quello aerodinamico, specialmente ad alte velocità." #: lang/json/help_from_json.py msgid "" @@ -138111,6 +139653,13 @@ msgid "" " in the water. See the section on water vehicles for more about draft and " "water drag." msgstr "" +"I veicoli che si possono muovere in acqua hanno un valore di resistenza " +"idrodinamica. Questa aumenta con la larghezza ed il pescaggio del veicolo, " +"e quest'ultimo aumenta con il peso del veicolo, ma viene ridotto aggiungendo" +" segmenti di scafo e allargando o allungando il veicolo. La resistenza " +"idrostatica ha un grandissimo effetto sulla velocità del veicolo in acqua. " +"Per maggiori informazioni sul pescaggio e la resistenza idrostatica, " +"consultare la sezione sui veicoli acquatici." #: lang/json/help_from_json.py msgid "" @@ -138128,6 +139677,13 @@ msgid "" "will give your vehicle an excellent offroad percentage but your vehicle will" " be slower due to the treads' very high rolling drag." msgstr "" +"\"Fuoristrada\" è una stima approssimativa dell'efficenza del veicolo quando" +" non è su una superficie dura. La velocità sicura, quella massima, e " +"l'accelerazione sono moltiplicate approssimativamente per il valore " +"percentuale di fuoristrada. Questa percentuale diminuisce con l'aumentare " +"della massa del veicolo, e aumenta con le dimensioni ed il numero delle " +"ruote. I cingoli forniscono un'eccellente percentuale di fuoristrada, ma il" +" veicolo risulterà più lento a causa del loro attrito volvente molto alto." #: lang/json/help_from_json.py msgid "" @@ -138138,10 +139694,17 @@ msgid "" " speed, fuel consumption, offroad capacity, protection against threats, and " "cargo capacity is a complicated process." msgstr "" +"I sopravvissuti abili nell'uso di chiavi inglesi, seghetti e strumenti da " +"saldatura, possono aggiungere o rimuovere parti ad un veicolo. Se hai un " +"telaio a disposizione, puoi persino creare un veicolo partendo da zero " +"usando il menù di Costruzione (). Mettere a punto un " +"veicolo con delle buone caratteristiche tecniche, quali velocità, consumo di" +" carburante, tenuta fuoristrada, protezione dalle minacce, e capacità di " +"carico, è un processo complicato." #: lang/json/help_from_json.py msgid "BOATS AND AMPHIBIOUS VEHICLES" -msgstr "" +msgstr "IMBSARCAZIONI E VEICOLI ANFIBI" #: lang/json/help_from_json.py msgid "" @@ -138189,12 +139752,12 @@ msgstr "" #: lang/json/help_from_json.py msgid ": Skills and proficiencies" -msgstr "" +msgstr ": Abilità e specializzazioni" #: lang/json/help_from_json.py src/newcharacter.cpp src/newcharacter.cpp #: src/player_display.cpp msgid "SKILLS" -msgstr "ABILITA'" +msgstr "ABILITÀ" #: lang/json/help_from_json.py msgid "" @@ -138207,6 +139770,15 @@ msgid "" "level. Reaching level 10 in any skill represents true mastery, near the " "limit of human capability." msgstr "" +"Ogni personaggio ha un insieme di abilità che può apprendere con il tempo. " +"Queste sono raggruppate in quattro categorie: Mischia, Distanza, " +"Realizzazione, ed Interazione. Ogni abilità comincia al livello 0 ed " +"aumenta con lo studio e la pratica fino ad un livello massimo di 10. Ogni " +"livello è più difficile da raggiungere rispetto al precedente, ma ogni " +"livello migliora anche la capacità del personaggio nell'utilizzo " +"dell'abilità, e può sbloccare alcune preparazioni o altre azioni altrimenti " +"inaccessibili. Raggiungere il livello 10 in qualsiasi abilità ne " +"rappresenta la completa padronanza, prossimo ai limiti delle capacità umane." #: lang/json/help_from_json.py msgid "" @@ -138217,6 +139789,13 @@ msgid "" "occur when learning skills primarily from books, without practicing " "activities or crafts that also exercise those skills." msgstr "" +"La colonna in basso a sinistra del menù mostra tutte le " +"abilità ed i loro livelli, assieme al progresso in percentuale verso il " +"livello successivo. Le abilità evidenziate in rosso chiaro rappresentano " +"quelle in cui le conoscenze teorice possedute dal personaggio superano " +"l'esperienza pratica. Questo può accadere quando si apprendono le abilità " +"soprattutto dai libri, senza praticare attività o fabbricare niente che " +"eserciti tali abilità." #: lang/json/help_from_json.py msgid "" @@ -138225,6 +139804,10 @@ msgid "" "Interaction categories are more general, each covering a potentially wide " "range of techniques and abilities." msgstr "" +"Le abilità di combattimento nelle categorie Corpo-a-corpo e a Distanza sono " +"piuttosto specifiche, focalizzate su precisi tipi di danno e gamma di armi " +"da fuoco. Le categorie di Realizzazione ed Interazione sono più generali, " +"ognuna copre una gamma potenzialmente ampia di tecniche ed abilità." #: lang/json/help_from_json.py src/player_display.cpp msgid "PROFICIENCIES" @@ -139268,6 +140851,11 @@ msgid "" "the punishment of combat." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -140107,6 +141695,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "" @@ -140275,6 +141870,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -141387,6 +142986,10 @@ msgstr "Muovi cursore su" msgid "Move cursor down" msgstr "Muovi cursore giù" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -141587,6 +143190,20 @@ msgstr "Sì" msgid "No" msgstr "No" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "Annulla" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -143024,13 +144641,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -143092,13 +144709,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -143719,14 +145336,14 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." -msgstr "Un caricatore standard per la FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." +msgstr "" #: lang/json/magazine_from_json.py msgid "P90 50-round magazine" @@ -146941,38 +148558,38 @@ msgstr "" #. ~ Sign #: lang/json/mapgen_from_json.py msgid "GLASS" -msgstr "" +msgstr "VETRO" #. ~ Sign #: lang/json/mapgen_from_json.py msgid "ALUMINUM" -msgstr "" +msgstr "ALLUMINIO" #. ~ Sign #: lang/json/mapgen_from_json.py msgid "PAPER" -msgstr "" +msgstr "CARTA" #. ~ Sign #: lang/json/mapgen_from_json.py msgid "PLASTIC" -msgstr "" +msgstr "PLASTICA" #. ~ Sign #. ~ Crafting recipes subcategory of 'PRACTICE' category #: lang/json/mapgen_from_json.py lang/json/recipe_category_from_json.py msgid "ELECTRONICS" -msgstr "" +msgstr "ELETTRONICA" #. ~ Sign #: lang/json/mapgen_from_json.py msgid "COPPER" -msgstr "" +msgstr "RAME" #. ~ Sign #: lang/json/mapgen_from_json.py msgid "IRON" -msgstr "" +msgstr "FERRO" #. ~ Sign #: lang/json/mapgen_from_json.py @@ -146982,7 +148599,7 @@ msgstr "BATTERIE" #. ~ Sign #: lang/json/mapgen_from_json.py msgid "STEEL" -msgstr "" +msgstr "ACCIAIO" #. ~ Sign #: lang/json/mapgen_from_json.py @@ -146997,7 +148614,7 @@ msgstr "" #. ~ Sign #: lang/json/mapgen_from_json.py msgid " Recycling" -msgstr "" +msgstr "Centro di Riciclaggio - " #. ~ Sign #: lang/json/mapgen_from_json.py @@ -147173,6 +148790,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -147595,12 +149222,9 @@ msgstr "Aikido" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" -"L'Aikido è un'arte marziale giapponese che si concentra sull'autodifesa, " -"minimizzando i danni all'aggressore. Usa prese difensive e disarmi ma non ha" -" delle tecniche di attacco." #. ~ initiate message for martial art '{'str': 'Aikido'}' #: lang/json/martial_art_from_json.py @@ -147623,7 +149247,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -147637,7 +149262,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -147650,9 +149275,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "Pugilato" @@ -147812,7 +149466,7 @@ msgstr "Momentum Capoeira" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -147827,7 +149481,8 @@ msgstr "Kung Fu della Gru" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -147857,17 +149512,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -147878,10 +149532,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -147892,9 +149560,10 @@ msgstr "Kung Fu del Drago" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -147909,33 +149578,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"\n" +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -148026,6 +149716,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "Parata" @@ -148083,7 +149787,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -148097,8 +149801,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -148112,6 +149817,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -148163,6 +149869,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "Karate" @@ -148252,6 +149971,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "Kung Fu del Leopardo" @@ -148398,6 +150132,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "Muay Thai" @@ -148734,16 +150483,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -148851,7 +150601,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -148973,33 +150723,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -149132,7 +150882,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -149333,6 +151083,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -149393,10 +151158,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -149497,10 +151263,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -150144,7 +151911,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -150154,11 +151936,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -150252,6 +152035,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -150264,21 +152061,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -150356,6 +152154,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -151991,7 +153803,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -152187,7 +153999,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -152392,7 +154204,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -152446,8 +154258,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -152607,7 +154418,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -152621,7 +154432,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -152660,7 +154471,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -152695,7 +154506,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -152726,7 +154537,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -152768,7 +154579,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "Aggiustare il faro" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -152818,16 +154629,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -152877,7 +154722,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -152933,7 +154778,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -152975,7 +154820,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -153024,7 +154869,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -153051,7 +154896,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -153086,7 +154931,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -153952,7 +155797,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -153987,7 +155832,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -154024,7 +155869,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -154059,7 +155904,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -154087,7 +155932,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -154139,7 +155984,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -154170,7 +156015,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -154199,7 +156044,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -154229,7 +156074,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -154498,8 +156343,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -154900,7 +156744,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -154941,7 +156785,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -154968,7 +156812,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -155050,7 +156894,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -155087,7 +156931,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -155131,7 +156975,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -155180,7 +157024,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -155222,7 +157066,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -155263,7 +157107,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -155298,7 +157142,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -155343,7 +157187,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -155354,6 +157198,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -155500,7 +157402,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -155555,7 +157457,7 @@ msgstr "" msgid "Kill Bandits" msgstr "Uccidi i Banditi" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -155598,7 +157500,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -155635,11 +157537,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -155668,15 +157622,11 @@ msgstr "" "Hai cercato qualche traccia tra i cespugli? Non sono un inseguitore esperto " "ma almeno saresti in grado di trovare qualcosa." -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -155733,7 +157683,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -155783,7 +157733,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -155828,7 +157778,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -155869,11 +157819,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -155916,7 +157867,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -155964,7 +157915,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -156008,7 +157959,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -157669,7 +159620,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -157688,7 +159639,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -157715,7 +159666,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -157749,7 +159700,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -157796,7 +159747,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -158572,6 +160523,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -159264,13 +161239,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -160002,6 +161977,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -160916,7 +162913,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -160927,6 +162923,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -161073,7 +163076,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -161344,9 +163347,11 @@ msgstr "Terrificante" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" +"Hai qualcosa in particolare che turba gli animali, facendoli fuggire via da " +"te più facilmente." #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -161770,7 +163775,7 @@ msgstr "Dormiglione" #. ~ Description for {'str': 'Heavy Sleeper'} #: lang/json/mutation_from_json.py msgid "You're quite the heavy sleeper. Noises are unlikely to wake you up." -msgstr "" +msgstr "Hai un sonno di piombo. I rumori riescono difficilmente a svegliarti." #: lang/json/mutation_from_json.py msgid "Sleepy" @@ -161793,6 +163798,9 @@ msgid "" "You will occasionally need to use an inhaler, or else suffer severe physical" " limitations. However, you are guaranteed to start with an inhaler." msgstr "" +"Soffri d'asma e devi usare un inalatore, altrimenti rischi di incorrere in " +"gravi limitazioni fisiche. Tuttavia comincerai la partita con un inalatore " +"garantito." #: lang/json/mutation_from_json.py msgid "Bad Back" @@ -162023,6 +164031,8 @@ msgid "" "You have a hard time remembering things. Your skills will erode slightly " "faster than usual, and you can remember less terrain." msgstr "" +"Hai difficoltà a ricordarti le cose. Le tue abilità degradano più " +"velocemente e ti ricordi meno zone esplorate." #: lang/json/mutation_from_json.py msgid "Lightweight" @@ -162034,6 +164044,8 @@ msgid "" "Alcohol and drugs go straight to your head. You suffer the negative effects" " of these for longer." msgstr "" +"Alcol e droghe ti danno di volta il cervello. Soffri gli effetti negativi " +"delle sostanze più a lungo." #: lang/json/mutation_from_json.py msgid "Addictive Personality" @@ -162084,10 +164096,13 @@ msgid "" "attack you. This only applies to natural animals such as woodland " "creatures." msgstr "" +"La maggior parte degli animali ti disprezza, gli animali aggressivi saranno " +"molto più inclini ad attaccarti. Questo si applica solo per le creature " +"naturali, come gli animali dei boschi." #: lang/json/mutation_from_json.py msgid "Prey Animal" -msgstr "" +msgstr "Preda" #. ~ Description for {'str': 'Prey Animal'} #: lang/json/mutation_from_json.py @@ -162095,6 +164110,8 @@ msgid "" "Natural animals like dogs and wolves see you as prey, and are liable to " "attack you on sight." msgstr "" +"Alcuni animali, come cani e lupi, ti vedono come una preda e pertanto " +"saranno inclini ad attaccarti a vista." #: lang/json/mutation_from_json.py msgid "Slow Reader" @@ -162304,7 +164321,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Genetic Downward Spiral" -msgstr "" +msgstr "Spirale Genetica Disastrosa" #. ~ Description for {'str': 'Genetic Downward Spiral'} #: lang/json/mutation_from_json.py @@ -162312,6 +164329,9 @@ msgid "" "The events of the Cataclysm have damaged your DNA beyond repair. You mutate" " frequently, and all mutations you receive (from any source) are negative." msgstr "" +"Gli eventi del Cataclisma hanno danneggiato irrimediabilmente il tuo DNA. " +"Sviluppi nuove mutazioni molto spesso e sono tutte mutazioni negative, da " +"qualsiasi fonte esse provengano." #: lang/json/mutation_from_json.py msgid "Rough Skin" @@ -163755,7 +165775,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Saber Teeth" -msgstr "" +msgstr "Denti a Sciabola" #. ~ Description for {'str': 'Saber Teeth'} #: lang/json/mutation_from_json.py @@ -163764,11 +165784,15 @@ msgid "" "impossible to wear mouthgear and difficult to eat… but leave nasty wounds " "when you bite." msgstr "" +"Le tue zanne sono cresciute a dismisura, sono larghe e incredibilmente " +"affilate. Ti impediscono di indossare equipaggiamento sulla bocca e ti sono " +"d'intralcio quando mangi... ma infliggono delle ferite orribili quando " +"mordi." #: lang/json/mutation_from_json.py #, no-python-format msgid "You tear into %s with your saber teeth" -msgstr "" +msgstr "Azzanni %s con i tuoi denti a sciabola" #: lang/json/mutation_from_json.py #, no-python-format @@ -163870,7 +165894,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Antlers" -msgstr "" +msgstr "Palchi" #. ~ Description for {'str': 'Antlers'} #: lang/json/mutation_from_json.py @@ -163879,11 +165903,14 @@ msgid "" "make a weak headbutt attack, but prevent wearing headwear that is not made " "of fabric." msgstr "" +"Possiedi degli enormi palchi di corna, simili a quelle di un alce. Ti " +"permettono di eseguire una debole testata per attaccare i nemici, ma ti " +"impediscono di indossare copricapi, eccetto quelli in tessuto. " #: lang/json/mutation_from_json.py #, no-python-format msgid "You butt %s with your antlers" -msgstr "" +msgstr "Colpisci %s con i tuoi palchi" #: lang/json/mutation_from_json.py #, no-python-format @@ -163892,7 +165919,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Antennae" -msgstr "" +msgstr "Antenne" #. ~ Description for {'str': 'Antennae'} #: lang/json/mutation_from_json.py @@ -163901,6 +165928,10 @@ msgid "" "monsters up to a few tiles away, even if you can't see or hear them, but " "prevent wearing headwear that is not made of fabric." msgstr "" +"Possiedi un paio di antenne. Ti permettono di rilevare la presenza delle " +"creature distanti qualche casella dalla tua posizione, anche nel caso in cui" +" tu non riesca a vederle o a sentirle; tuttavia ti impediscono di indossare " +"copricapi, eccetto quelli in tessuto." #: lang/json/mutation_from_json.py msgid "Road-Runner" @@ -164399,8 +166430,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -164470,7 +166501,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Pointed Ears" -msgstr "" +msgstr "Orecchie a punta" #. ~ Description for {'str': 'Pointed Ears'} #: lang/json/mutation_from_json.py @@ -164479,6 +166510,9 @@ msgid "" "get in the way of your headgear, much. Unfortunately, they also don't seem " "to help your hearing any." msgstr "" +"La parte superiore delle tue orecchie si è sviluppata in altezza. Per " +"fortuna la cosa non è di intralcio quando indossi copricapi. Tuttavia non " +"migliora il tuo udito in alcun modo." #: lang/json/mutation_from_json.py msgid "Rodent Ears" @@ -164640,7 +166674,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -164649,7 +166683,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -164658,7 +166692,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -164667,7 +166701,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -164685,7 +166719,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -164694,7 +166728,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -164703,7 +166737,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -164712,7 +166746,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -164730,7 +166764,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -164739,7 +166773,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -164749,7 +166783,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -164759,7 +166793,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -164789,7 +166823,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -164798,7 +166832,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -164807,7 +166841,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -164816,7 +166850,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -165331,7 +167365,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -165460,10 +167494,8 @@ msgstr "Dormiglione" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" -"Necessiti di dormire più spesso. Passi la metà del tempo nei pressi del " -"letto." #: lang/json/mutation_from_json.py msgid "Weakening" @@ -169989,6 +172021,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -170024,6 +172057,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -170582,6 +172623,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -170717,6 +172766,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -170885,6 +172938,10 @@ msgstr "" msgid "Guard" msgstr "" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "Makayla Sanchez" @@ -171053,6 +173110,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -171782,11 +173843,11 @@ msgstr "" #: lang/json/overmap_terrain_from_json.py msgid "rural road" -msgstr "" +msgstr "strada di campagna" #: lang/json/overmap_terrain_from_json.py msgid "dirt road" -msgstr "" +msgstr "strada sterrata" #: lang/json/overmap_terrain_from_json.py msgid "rural building" @@ -171814,11 +173875,11 @@ msgstr "" #: lang/json/overmap_terrain_from_json.py msgid "farm barn" -msgstr "" +msgstr "fienile" #: lang/json/overmap_terrain_from_json.py msgid "farm barn roof" -msgstr "" +msgstr "fienile - tetto" #: lang/json/overmap_terrain_from_json.py msgid "farm" @@ -171842,7 +173903,7 @@ msgstr "frutteto" #: lang/json/overmap_terrain_from_json.py msgid "apple orchard" -msgstr "" +msgstr "meleto" #: lang/json/overmap_terrain_from_json.py msgid "orchard processing" @@ -171862,7 +173923,7 @@ msgstr "" #: lang/json/overmap_terrain_from_json.py msgid "dairy farm" -msgstr "" +msgstr "fattoria con caseificio" #: lang/json/overmap_terrain_from_json.py msgid "dairy farm roof" @@ -171988,6 +174049,10 @@ msgstr "pozzo di slime" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -172294,7 +174359,7 @@ msgstr "parcheggio dell'albergo" #: lang/json/overmap_terrain_from_json.py msgid "hotel" -msgstr "" +msgstr "hotel" #: lang/json/overmap_terrain_from_json.py msgid "hotel entrance" @@ -172506,7 +174571,7 @@ msgstr "" #: lang/json/overmap_terrain_from_json.py msgid "small market" -msgstr "" +msgstr "piccolo supermercato" #: lang/json/overmap_terrain_from_json.py msgid "sex shop" @@ -172518,7 +174583,7 @@ msgstr "" #: lang/json/overmap_terrain_from_json.py msgid "internet cafe" -msgstr "" +msgstr "internet cafe" #: lang/json/overmap_terrain_from_json.py msgid "internet cafe roof" @@ -172538,7 +174603,7 @@ msgstr "" #: lang/json/overmap_terrain_from_json.py msgid "car dealership" -msgstr "" +msgstr "concessionario" #: lang/json/overmap_terrain_from_json.py msgid "tire shop" @@ -172602,11 +174667,11 @@ msgstr "" #: lang/json/overmap_terrain_from_json.py msgid "hunting supply store" -msgstr "" +msgstr "negozio di articoli per la caccia" #: lang/json/overmap_terrain_from_json.py msgid "hunting supply store roof" -msgstr "" +msgstr "negozio di articoli per la caccia - tetto" #: lang/json/overmap_terrain_from_json.py msgid "outdoorsman's store" @@ -172659,7 +174724,7 @@ msgstr "" #: lang/json/overmap_terrain_from_json.py msgid "kitchen" -msgstr "" +msgstr "cucina" #: lang/json/overmap_terrain_from_json.py msgid "hide site" @@ -172677,6 +174742,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -172685,24 +174754,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -172851,11 +174936,11 @@ msgstr "" #: lang/json/overmap_terrain_from_json.py msgid "lumbermill" -msgstr "" +msgstr "segheria" #: lang/json/overmap_terrain_from_json.py msgid "lumbermill roof" -msgstr "" +msgstr "segheria - tetto" #: lang/json/overmap_terrain_from_json.py msgid "construction site" @@ -172867,7 +174952,7 @@ msgstr "magazzino abbandonato" #: lang/json/overmap_terrain_from_json.py msgid "abandoned warehouse roof" -msgstr "" +msgstr "magazzino abbandonato - tetto" #: lang/json/overmap_terrain_from_json.py msgid "storage units" @@ -173051,7 +175136,7 @@ msgstr "villa" #: lang/json/overmap_terrain_from_json.py msgid "mi-go encampment" -msgstr "" +msgstr "accampamento mi-go" #: lang/json/overmap_terrain_from_json.py msgid "mi-go spire" @@ -173063,12 +175148,16 @@ msgstr "" #: lang/json/overmap_terrain_from_json.py msgid "mi-go scout tower" -msgstr "" +msgstr "torre d'avvistamento mi-go" #: lang/json/overmap_terrain_from_json.py msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -174525,6 +176614,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -174635,6 +176778,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -174671,7 +176842,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -174684,7 +176855,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -175277,6 +177448,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -175559,6 +177756,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -175685,6 +177936,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -175733,6 +178012,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -175755,6 +178062,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -176607,7 +178966,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Baseball Player" -msgstr "Giocatrice di baseball" +msgstr "Giocatore di baseball" #. ~ Profession (male Baseball Player) description #: lang/json/professions_from_json.py @@ -180450,6 +182809,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -184844,6 +187261,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -185528,7 +187967,7 @@ msgstr "" #: lang/json/recipe_from_json.py lang/json/terrain_from_json.py msgid "root cellar" -msgstr "" +msgstr "dispensa sotterranea" #: lang/json/recipe_from_json.py msgid "" @@ -189801,6 +192240,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -189845,6 +192806,63 @@ msgstr "" msgid "Farm processing shack" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "" @@ -189900,6 +192918,524 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "" @@ -190104,6 +193640,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -190798,6 +194710,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -191063,60 +195614,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -191951,7 +196811,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -191963,12 +196827,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "Officina auto" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -191976,11 +196850,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -192143,6 +197027,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -194316,6 +199256,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -194515,22 +199481,22 @@ msgstr "" #. ~ display string for skill display type 'display_melee' #: lang/json/skill_display_type_from_json.py msgid "Melee skills" -msgstr "" +msgstr "Abilità corpo-a-corpo" #. ~ display string for skill display type 'display_ranged' #: lang/json/skill_display_type_from_json.py msgid "Ranged skills" -msgstr "" +msgstr "Abilità a distanza" #. ~ display string for skill display type 'display_crafting' #: lang/json/skill_display_type_from_json.py msgid "Crafting skills" -msgstr "" +msgstr "Abilità di realizzazione" #. ~ display string for skill display type 'display_interaction' #: lang/json/skill_display_type_from_json.py msgid "Interaction skills" -msgstr "" +msgstr "Abilità d'interazione" #: lang/json/skill_from_json.py msgid "social" @@ -194628,7 +199594,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -194812,7 +199778,7 @@ msgstr "" #: lang/json/skill_from_json.py msgid "dodging" -msgstr "schivare" +msgstr "evasione" #. ~ Description for dodging #: lang/json/skill_from_json.py @@ -195371,8 +200337,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -196150,15 +201116,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -201209,6 +206176,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -201217,7 +206450,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -201334,7 +206567,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -205966,7 +211199,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -206025,7 +211258,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -206038,7 +211271,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -206056,17 +211289,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -206145,7 +211378,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -206255,8 +211488,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -206664,7 +211897,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -206674,8 +211907,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -208097,6 +213330,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -210406,7 +215701,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "" @@ -211071,6 +216366,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "Si." + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -211089,6 +216496,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -212258,6 +217680,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -214814,6 +220314,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -214923,6 +220430,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -214946,6 +220471,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -216458,7 +221990,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -216628,19 +222160,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -216713,95 +222245,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" +msgid "\"Wanna play with me?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" +msgid "\"Sing with me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "Posso avere un biscotto?" +msgid "\"Please take me with you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" +msgid "\"May I have a cookie?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -216809,31 +222345,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" +msgid "\"Hey kids. Want some candy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -216849,19 +222385,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -217928,6 +223460,10 @@ msgstr "Fruttivendolo" msgid "Gun Store" msgstr "Negozio di armi da fuoco" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "Officina auto" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "Negozio di pegni" @@ -219379,6 +224915,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -226606,6 +232146,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -227252,6 +233570,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -227321,6 +233643,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -229762,10 +236095,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -233571,10 +239900,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -233903,6 +240228,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -234194,6 +240628,15 @@ msgstr "Guardati le spalle là fuori." msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -234284,6 +240727,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -237055,6 +243550,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -237240,20 +243752,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -237861,20 +244359,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "Finta" @@ -237910,54 +244394,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -238041,20 +244515,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -238173,34 +244633,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -238216,45 +244648,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -238338,17 +244770,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -238390,7 +244822,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -238403,6 +244835,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -238549,20 +244985,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -238667,20 +245089,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -238781,20 +245189,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -239119,41 +245513,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -239354,20 +245744,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -240128,20 +246504,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -240240,20 +246602,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -240296,20 +246644,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -242570,6 +248904,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "albero di mele" @@ -246002,24 +252348,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -246027,32 +252373,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -246060,35 +252406,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -246096,33 +252437,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -246130,10 +252471,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -246141,10 +252482,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -246152,40 +252493,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -246193,21 +252532,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" +msgid "reinforced triple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" -msgstr "" - -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -246215,44 +252550,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -246260,14 +252586,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -246285,12 +252607,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -246298,21 +252615,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" +msgid "plastic window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Plastic window" -msgstr "" - -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -246320,10 +252633,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -246331,7 +252644,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -246340,10 +252653,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -246352,21 +252665,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -246374,10 +252683,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -246386,10 +252695,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -246397,7 +252706,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -246406,26 +252715,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -246439,11 +252748,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -248981,12 +255286,99 @@ msgstr "" "efficienza. Ha un buon rapporto peso/potenza rispetto ad un motore " "traduzionale, ma consuma più carburante." +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py @@ -248995,6 +255387,26 @@ msgstr "" "Una portiera. Ha un finestrino per permetterti di vedere al di fuori di essa" " anche quando è chiusa." +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "portiera opaca" @@ -249372,6 +255784,57 @@ msgstr "" msgid "An electric motor." msgstr "Un motore elettrico." +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -249856,6 +256319,15 @@ msgstr "" msgid "wooden aisle" msgstr "corridoio in legno" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -249998,6 +256470,10 @@ msgstr "scatola di legno pieghevole" msgid "wood table" msgstr "tavolo di legno" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -250066,6 +256542,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -250172,6 +256652,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -251358,8 +257844,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "Stanchezza:" @@ -254080,6 +260566,18 @@ msgstr "" msgid "Coverage:" msgstr "Copertura:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "Ingombro:" @@ -254171,8 +260669,9 @@ msgstr "Ordina armatura" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -254184,6 +260683,12 @@ msgstr "(Più interno)" msgid "Storage (%s)" msgstr "" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(Più esterno)" @@ -258386,11 +264891,6 @@ msgstr "Non credi che farà alcun effetto." msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "Annulla" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "Riesci a malapena a stare in piedi." @@ -258701,6 +265201,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -260878,10 +267386,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "cucina" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -261422,6 +267926,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -261848,6 +268360,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -261936,6 +268453,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -262689,7 +269211,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -262711,15 +269233,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -266052,6 +272565,10 @@ msgstr "" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -266336,6 +272853,15 @@ msgstr "Non puoi dirigerti li" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "Oggetti" @@ -268680,10 +275206,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "Si." - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "Si, e salva il gioco prima di dormire." @@ -268824,6 +275346,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -269183,10 +275713,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -269715,16 +276241,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" -"Questo muro e' perfettamente vertcale. Dei buchi strani sono presenti\n" -"su di esso e penetrano nella roccia, non puoi vederne la fine. I buchi sono di\n" -"forma umanoide ma con arti lunghi ed estesi in modo anomalo" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -273043,6 +279559,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -273173,39 +279704,39 @@ msgstr "" #: src/item.cpp msgid "Layer:" -msgstr "" +msgstr "Strato:" #: src/item.cpp msgid " Personal aura." -msgstr "" +msgstr "Aura personale." #: src/item.cpp msgid " Close to skin." -msgstr "" +msgstr "Sulla pelle." #: src/item.cpp msgid " Strapped." -msgstr "" +msgstr "Allacciato con cinghie." #: src/item.cpp msgid " Outer." -msgstr "" +msgstr "Esterno." #: src/item.cpp msgid " Waist." -msgstr "" +msgstr "Attorno alla vita." #: src/item.cpp msgid " Outer aura." -msgstr "" +msgstr "Aura esterna." #: src/item.cpp msgid " Normal." -msgstr "" +msgstr "Normale." #: src/item.cpp msgid "Average Coverage: " -msgstr "" +msgstr "Copertura Media: " #: src/item.cpp msgid "Warmth: " @@ -273712,7 +280243,7 @@ msgstr "Precisione:" #: src/item.cpp msgid "Moves per attack: " -msgstr "Costo attacco: " +msgstr "Movimento d'attacco: " #: src/item.cpp msgid "Typical damage per second:" @@ -276054,13 +282585,15 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "Impostare il timer a (0 per cancellare)?" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "Imposti il timer a %d." +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -276799,8 +283332,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -277023,38 +283555,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -278279,87 +284779,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "" - -#: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -281191,7 +287634,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -286113,6 +292568,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -286983,21 +293443,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -287263,11 +293708,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "%s per attivare le mutazioni, " +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -288952,11 +295406,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -289723,6 +296172,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -289730,14 +296188,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -292096,20 +298559,6 @@ msgstr "Zone:" msgid "# Unexplored" msgstr "# Inesplorata" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -292450,6 +298899,11 @@ msgstr "" msgid "Night" msgstr "Notte" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s, giorno %d" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -292498,6 +298952,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -294902,6 +301360,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -297371,6 +303839,8 @@ msgstr "" msgid "" "Cargo Volume: %s / %s %s" msgstr "" +"Volume di Carico: %s / " +"%s %s" #: src/veh_interact.cpp msgid "Status:" @@ -299229,6 +305699,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "Lunedi" diff --git a/lang/po/ja.po b/lang/po/ja.po index fe6c8d4c05e3a..73ab4aa8e4711 100644 --- a/lang/po/ja.po +++ b/lang/po/ja.po @@ -21,23 +21,23 @@ # Itoh Shu , 2020 # jyo nagaya , 2020 # Vault3024, 2021 -# 北村 真, 2021 # Luckyriver Kyle , 2021 # a b , 2021 # zojirushi, 2021 # Ezsk , 2021 # Hiroshi Miura , 2021 # Yotuba Kuro, 2021 -# Pigmentblue15, 2021 # TEATIME , 2021 +# 北村 真, 2021 +# Pigmentblue15, 2021 # msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" -"Last-Translator: TEATIME , 2021\n" +"Last-Translator: Pigmentblue15, 2021\n" "Language-Team: Japanese (https://www.transifex.com/cataclysm-dda-translators/teams/2217/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,19 +50,19 @@ msgid "battery" msgid_plural "battery" msgstr[0] "電池" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " "battery cells, but can never be unloaded." -msgstr "フロート充電式の単電池です。充電池に装填できますが、一度装填すると抜き取れません。" +msgstr "充電された電気エネルギーです。充電池への再充電はできますが、抜き取ることはできません。" #: lang/json/AMMO_from_json.py lang/json/ammunition_type_from_json.py msgid "butane" msgid_plural "butane" msgstr[0] "ブタン" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "ライターに使われる一般的な可燃性の液体です。" @@ -72,7 +72,7 @@ msgid "aerosol paint" msgid_plural "aerosol paint" msgstr[0] "ラッカー塗料" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -84,7 +84,7 @@ msgid "permanent ink" msgid_plural "permanent ink" msgstr[0] "油性インク" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -96,7 +96,7 @@ msgid "candle wax" msgid_plural "candle wax" msgstr[0] "蝋" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "ロウソクを作るために使われる、可燃性の高い固体です。" @@ -106,7 +106,7 @@ msgid "flare pyrotechnic" msgid_plural "flare pyrotechnic" msgstr[0] "照明弾火薬" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "照明弾に使われる火薬です。" @@ -128,7 +128,7 @@ msgid "oxygen" msgid_plural "oxygen" msgstr[0] "酸素" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "医療用の圧縮酸素です。" @@ -138,7 +138,7 @@ msgid "aluminum foil" msgid_plural "aluminum foil" msgstr[0] "アルミ箔" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -160,7 +160,7 @@ msgid "thread" msgid_plural "thread" msgstr[0] "糸" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "裁縫道具に装填できる少量の糸です。" @@ -190,7 +190,7 @@ msgid "yarn" msgid_plural "yarn" msgstr[0] "織糸" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "羊毛製の織糸です。羊毛製の衣類を編むのに使えます。" @@ -210,7 +210,7 @@ msgid "duct tape" msgid_plural "duct tape" msgstr[0] "ダクトテープ" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "信じられないほど強力なテープです。その用途は無限にあります。" @@ -266,8 +266,8 @@ msgid "plutonium slurry" msgid_plural "plutonium slurry" msgstr[0] "プルトニウム懸濁液" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -325,7 +325,7 @@ msgid "bearings" msgid_plural "bearings" msgstr[0] "ベアリングボール" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "スリングショットで発射できる、一箱分のベアリング球です。" @@ -367,7 +367,7 @@ msgid "120mm HEAT" msgid_plural "120mm HEAT" msgstr[0] "弾薬(120mm/HEAT)" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -390,7 +390,7 @@ msgid "mixed smokeless gunpowder" msgid_plural "mixed smokeless gunpowder" msgstr[0] "混合無煙火薬" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -404,7 +404,7 @@ msgid "smokeless shotgun powder" msgid_plural "smokeless shotgun powder" msgstr[0] "無煙火薬(ショットガン)" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "ショットガンの弾薬に使われる銃器用の火薬です。" @@ -414,7 +414,7 @@ msgid "smokeless pistol powder" msgid_plural "smokeless pistol powder" msgstr[0] "無煙火薬(ハンドガン)" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "ハンドガンの弾薬に使われる銃器用の火薬です。" @@ -424,7 +424,7 @@ msgid "smokeless magnum powder" msgid_plural "smokeless magnum powder" msgstr[0] "無煙火薬(マグナム)" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -435,7 +435,7 @@ msgid "smokeless rifle powder" msgid_plural "smokeless rifle powder" msgstr[0] "無煙火薬(ライフル)" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "ライフルの弾薬に使われる銃器用の火薬です。" @@ -445,7 +445,7 @@ msgid "smokeless overbore rifle powder" msgid_plural "smokeless overbore rifle powder" msgstr[0] "無煙火薬(大型ライフル)" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "大型ライフルの弾薬に使われる銃器用の火薬です。" @@ -455,7 +455,7 @@ msgid "artillery propellant" msgid_plural "artillery propellant" msgstr[0] "砲弾推進剤" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -467,7 +467,7 @@ msgid "oxidizer powder" msgid_plural "oxidizer powder" msgstr[0] "酸化剤" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "揮発性のある粉末状の化学酸化剤です。" @@ -477,7 +477,7 @@ msgid "lye powder" msgid_plural "lye powder" msgstr[0] "苛性ソーダ" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "粉末状の苛性ソーダです。" @@ -559,7 +559,7 @@ msgid "copper" msgid_plural "copper" msgstr[0] "銅" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -571,7 +571,7 @@ msgid "medical tape" msgid_plural "medical tape" msgstr[0] "医療テープ" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "ダクトテープのようにロール状に巻かれた医療用のテープです。" @@ -582,7 +582,7 @@ msgid_plural "placeholder ammunitions" msgstr[0] "代替弾薬" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "このアイテムが見えている場合はバグが発生しています。" @@ -592,7 +592,7 @@ msgid "charcoal" msgid_plural "charcoal" msgstr[0] "炭" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -606,7 +606,7 @@ msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "石炭石灰混合物" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -630,7 +630,7 @@ msgid "albuterol" msgid_plural "albuterol" msgstr[0] "アルブテロール" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -712,7 +712,7 @@ msgid "nicotine liquid" msgid_plural "nicotine liquid" msgstr[0] "液体ニコチン" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -724,7 +724,7 @@ msgid "fish bait" msgid_plural "fish bait" msgstr[0] "魚の餌" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "魚をおびき寄せて捕まえるための餌です。" @@ -776,7 +776,7 @@ msgid "unfinished charcoal" msgid_plural "unfinished charcoal" msgstr[0] "炭(未完成)" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -788,7 +788,7 @@ msgid "unfinished calcium carbide" msgid_plural "unfinished calcium carbide" msgstr[0] "炭化カルシウム(未完成)" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -810,7 +810,7 @@ msgid "nitrox" msgid_plural "nitrox" msgstr[0] "ナイトロックス" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "酸素と窒素を潜水に適した比率で混合した気体です。" @@ -820,7 +820,7 @@ msgid "extinguishing agent" msgid_plural "extinguishing agent" msgstr[0] "消火剤" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "消火に効果的な粉末薬品です。" @@ -830,7 +830,7 @@ msgid "tinder" msgid_plural "tinder" msgstr[0] "火口" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "燃えやすい素材を細かく削り、より燃焼しやすくしたものです。" @@ -860,7 +860,7 @@ msgid "bronze" msgid_plural "bronze" msgstr[0] "青銅" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "古風なアイテムを製作するために用いる、適当なサイズの銅片です。" @@ -870,7 +870,7 @@ msgid "glowstick juice" msgid_plural "glowstick juice" msgstr[0] "発光液" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -881,7 +881,7 @@ msgid "graphite" msgid_plural "graphite" msgstr[0] "グラファイト" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -895,7 +895,7 @@ msgid "black pen ink" msgid_plural "black pen ink" msgstr[0] "インク(黒)" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -907,7 +907,7 @@ msgid "blue pen ink" msgid_plural "blue pen ink" msgstr[0] "インク(青)" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -919,7 +919,7 @@ msgid "green pen ink" msgid_plural "green pen ink" msgstr[0] "インク(緑)" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -931,7 +931,7 @@ msgid "red pen ink" msgid_plural "red pen ink" msgstr[0] "インク(赤)" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -957,7 +957,7 @@ msgid "sulfur" msgid_plural "sulfur" msgstr[0] "硫黄" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -982,7 +982,7 @@ msgid "cement" msgid_plural "cement" msgstr[0] "セメント" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -996,7 +996,7 @@ msgid "gravel" msgid_plural "gravel" msgstr[0] "砂利" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "小石よりは小さく砂よりは大きなサイズの、一握りの砂利です。" @@ -1006,7 +1006,7 @@ msgid "limestone" msgid_plural "limestone" msgstr[0] "石灰岩" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1019,7 +1019,7 @@ msgid "quicklime" msgid_plural "quicklime" msgstr[0] "生石灰" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1035,7 +1035,7 @@ msgid "sand" msgid_plural "sand" msgstr[0] "砂" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1047,7 +1047,7 @@ msgid "soil" msgid_plural "soil" msgstr[0] "土" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1059,7 +1059,7 @@ msgid "aluminum powder" msgid_plural "aluminum powder" msgstr[0] "アルミニウム粉末" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1074,7 +1074,7 @@ msgid "zinc powder" msgid_plural "zinc powder" msgstr[0] "亜鉛粉末" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1089,7 +1089,7 @@ msgid "zinc oxide" msgid_plural "zinc oxide" msgstr[0] "酸化亜鉛" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1101,7 +1101,7 @@ msgid "manganese dioxide" msgid_plural "manganese dioxide" msgstr[0] "二酸化マンガン" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1114,7 +1114,7 @@ msgid "potassium chloride" msgid_plural "potassium chloride" msgstr[0] "塩化カリウム" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1129,7 +1129,7 @@ msgid "potassium hydroxide" msgid_plural "potassium hydroxide" msgstr[0] "水酸化カリウム" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1142,7 +1142,7 @@ msgid "acetone" msgid_plural "acetone" msgstr[0] "アセトン" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1156,7 +1156,7 @@ msgid "chromium oxide" msgid_plural "chromium oxide" msgstr[0] "酸化クロム" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1172,7 +1172,7 @@ msgid "calcium carbide" msgid_plural "calcium carbide" msgstr[0] "炭化カルシウム" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1188,7 +1188,7 @@ msgid "hexamine" msgid_plural "hexamine" msgstr[0] "ヘキサミン" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1204,7 +1204,7 @@ msgid "hydrogen peroxide (concentrated)" msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "過酸化水素水(濃縮)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1219,7 +1219,7 @@ msgid "ammonium nitrate" msgid_plural "ammonium nitrate" msgstr[0] "硝酸アンモニウム" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1234,7 +1234,7 @@ msgid "ammonium nitrate pellets" msgid_plural "ammonium nitrate pellets" msgstr[0] "硝酸アンモニウムペレット" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1249,7 +1249,7 @@ msgid "saltpeter" msgid_plural "saltpeter" msgstr[0] "硝酸カリウム" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1262,7 +1262,7 @@ msgid "niter" msgid_plural "niter" msgstr[0] "硝石" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1274,7 +1274,7 @@ msgid "aluminum sulfate" msgid_plural "aluminum sulfate" msgstr[0] "硫酸アルミニウム" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1291,7 +1291,7 @@ msgid "acetic acid" msgid_plural "acetic acid" msgstr[0] "酢酸" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1306,7 +1306,7 @@ msgid "formaldehyde" msgid_plural "formaldehyde" msgstr[0] "ホルムアルデヒド" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1321,7 +1321,7 @@ msgid "thermite" msgid_plural "thermite" msgstr[0] "テルミット" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1336,7 +1336,7 @@ msgid "ANFO" msgid_plural "ANFO" msgstr[0] "アンホ爆薬" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1351,7 +1351,7 @@ msgid "black gunpowder" msgid_plural "black gunpowder" msgstr[0] "黒色火薬" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1366,7 +1366,7 @@ msgid "match head powder" msgid_plural "match head powder" msgstr[0] "マッチ頭薬粉末" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1379,7 +1379,7 @@ msgid "RDX" msgid_plural "RDX" msgstr[0] "RDX" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1393,7 +1393,7 @@ msgid "composition b" msgid_plural "composition b" msgstr[0] "コンポジションB爆薬" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1406,7 +1406,7 @@ msgid "HMTD" msgid_plural "HMTD" msgstr[0] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1420,7 +1420,7 @@ msgid "APEX" msgid_plural "APEX" msgstr[0] "過酸化アセトン" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1434,7 +1434,7 @@ msgid "improvised rocket fuel" msgid_plural "improvised rocket fuel" msgstr[0] "簡易ロケット燃料" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1446,7 +1446,7 @@ msgid "detergent" msgid_plural "detergent" msgstr[0] "洗剤" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "大変動前は一般的だった洗濯用洗剤です。" @@ -1456,7 +1456,7 @@ msgid "soap flakes" msgid_plural "soap flakes" msgstr[0] "フレーク石鹸" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "洗濯機での使用に適した、フレーク状にカットされた石鹸です。" @@ -1513,7 +1513,7 @@ msgid "concentrated venom" msgid_plural "concentrated venom" msgstr[0] "濃縮毒" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1528,7 +1528,7 @@ msgid "concentrated paralytic" msgid_plural "concentrated paralytic" msgstr[0] "濃縮麻痺毒" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1543,7 +1543,7 @@ msgid "rocuronium" msgid_plural "rocuronium" msgstr[0] "ロクロニウム" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1557,7 +1557,7 @@ msgid "red phosphorous" msgid_plural "red phosphorous" msgstr[0] "赤リン" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1569,7 +1569,7 @@ msgid "iodine crystal" msgid_plural "iodine crystal" msgstr[0] "ヨウ素結晶" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1581,7 +1581,7 @@ msgid "ethanol" msgid_plural "ethanol" msgstr[0] "エタノール" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1608,7 +1608,7 @@ msgid "methanol" msgid_plural "methanol" msgstr[0] "メタノール" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1621,7 +1621,7 @@ msgid "diesel" msgid_plural "diesel" msgstr[0] "軽油" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1632,7 +1632,7 @@ msgid "JP8 fuel" msgid_plural "JP8 fuel" msgstr[0] "JP-8燃料" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1644,7 +1644,7 @@ msgid "avgas fuel" msgid_plural "avgas fuel" msgstr[0] "航空燃料" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "航空機の動力源として使われる、特殊な石油系燃料です。" @@ -1654,7 +1654,7 @@ msgid "biodiesel" msgid_plural "biodiesel" msgstr[0] "バイオディーゼル" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1667,7 +1667,7 @@ msgid "gasoline" msgid_plural "gasoline" msgstr[0] "ガソリン" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1679,7 +1679,7 @@ msgid "lamp oil" msgid_plural "lamp oil" msgstr[0] "ランプオイル" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "オイルランプ用に作られた薄く綺麗なオイルです。" @@ -1689,7 +1689,7 @@ msgid "motor oil" msgid_plural "motor oil" msgstr[0] "エンジンオイル" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "自動車のエンジンで使われるオイルです。" @@ -1699,7 +1699,7 @@ msgid "napalm" msgid_plural "napalm" msgstr[0] "ナパーム" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -1712,7 +1712,7 @@ msgid "gelled gasoline" msgid_plural "gelled gasoline" msgstr[0] "ゲル化ガソリン" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -1726,7 +1726,7 @@ msgid "flamethrower fuel" msgid_plural "flamethrower fuel" msgstr[0] "火炎放射器燃料" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -1763,7 +1763,7 @@ msgid "shrapnel" msgid_plural "shrapnel" msgstr[0] "榴弾片" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "捻じれて尖った金属の破片です。" @@ -1814,7 +1814,7 @@ msgid "10mm Auto FMJ" msgid_plural "10mm Auto FMJ" msgstr[0] "弾薬(10mm/オートFMJ)" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -1838,7 +1838,7 @@ msgid "H&K 12mm" msgid_plural "H&K 12mm" msgstr[0] "弾薬(12mm/H&K)" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -1876,7 +1876,7 @@ msgid "20x66mm buckshot, handmade" msgid_plural "20x66mm buckshot, handmade" msgstr[0] "弾薬(20x66mm/手製散弾)" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -1900,7 +1900,7 @@ msgid "20x66mm explosive" msgid_plural "20x66mm explosive" msgstr[0] "弾薬(20x66mm/炸裂)" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -1939,7 +1939,7 @@ msgid "20x66mm frag" msgid_plural "20x66mm frag" msgstr[0] "弾薬(20x66mm/破片)" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -1952,7 +1952,7 @@ msgid "20x66mm incendiary" msgid_plural "20x66mm incendiary" msgstr[0] "弾薬(20x66mm/焼夷)" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -1965,7 +1965,7 @@ msgid "20x66mm buckshot" msgid_plural "20x66mm buckshot" msgstr[0] "弾薬(20x66mm/散弾)" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -1991,7 +1991,7 @@ msgid ".22 CB" msgid_plural ".22 CB" msgstr[0] "弾薬(.22口径/CB)" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2005,7 +2005,7 @@ msgid ".22 FMJ" msgid_plural ".22 FMJ" msgstr[0] "弾薬(.22口径/LR FMJ)" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2019,7 +2019,7 @@ msgid ".22 LR" msgid_plural ".22 LR" msgstr[0] "弾薬(.22口径/LR)" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2033,7 +2033,7 @@ msgid ".22 rat-shot" msgid_plural ".22 rat-shot" msgstr[0] "弾薬(.22口径/ラットショット)" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2067,7 +2067,7 @@ msgid ".223 Remington" msgid_plural ".223 Remington" msgstr[0] "弾薬(.223口径/レミントン)" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2084,7 +2084,7 @@ msgid "5.56 NATO Mk 262" msgid_plural "5.56 NATO Mk 262" msgstr[0] "弾薬(5.56mm/NATO Mk262)" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2102,7 +2102,7 @@ msgid "5.56 NATO Mk 318" msgid_plural "5.56 NATO Mk 318" msgstr[0] "弾薬(5.56mm/NATO Mk318)" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2120,7 +2120,7 @@ msgid "5.56 NATO M855" msgid_plural "5.56 NATO M855" msgstr[0] "弾薬(5.56mm/NATO M855)" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2139,7 +2139,7 @@ msgid "5.56 NATO M855A1" msgid_plural "5.56 NATO M855A1" msgstr[0] "弾薬(5.56mm/NATO M855A1)" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2157,7 +2157,7 @@ msgid "5.56 NATO tracer" msgid_plural "5.56 NATO tracer" msgstr[0] "弾薬(5.56mm/NATO曳光弾)" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2199,7 +2199,7 @@ msgid ".270 Winchester JSP" msgid_plural ".270 Winchester JSP" msgstr[0] "弾薬(.270口径/ウィンチェスターJSP)" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2244,7 +2244,7 @@ msgid ".300 Winchester Magnum, reloaded" msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] "弾薬(.300口径/ウィンチェスターマグナム/手詰め)" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2258,7 +2258,7 @@ msgid ".30-06 Springfield" msgid_plural ".30-06 Springfield" msgstr[0] "弾薬(.30-06口径/スプリングフィールド)" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2272,7 +2272,7 @@ msgid ".30-06 M14A1 tracer" msgid_plural ".30-06 M14A1 tracer" msgstr[0] "弾薬(.30-06口径/M14A1曳光弾)" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2286,7 +2286,7 @@ msgid ".30-06 M2 AP" msgid_plural ".30-06 M2 AP" msgstr[0] "弾薬(.30-06口径/M2 AP)" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2384,7 +2384,7 @@ msgid ".308 Winchester" msgid_plural ".308 Winchester" msgstr[0] "弾薬(.308口径/ウィンチェスター)" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2398,7 +2398,7 @@ msgid "7.62x51mm M80" msgid_plural "7.62x51mm M80" msgstr[0] "弾薬(7.62x51mm/M80)" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2412,7 +2412,7 @@ msgid "7.62x51mm NATO tracer" msgid_plural "7.62x51mm NATO tracer" msgstr[0] "弾薬(7.62x51mm/NATO曳光弾)" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2454,7 +2454,7 @@ msgid ".32 ACP" msgid_plural ".32 ACP" msgstr[0] "弾薬(.32口径/ACP)" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2476,7 +2476,7 @@ msgid ".357 Magnum FMJ" msgid_plural ".357 Magnum FMJ" msgstr[0] "弾薬(.357口径マグナム/FMJ)" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2490,7 +2490,7 @@ msgid ".357 Magnum JHP" msgid_plural ".357 Magnum JHP" msgstr[0] "弾薬(.357口径マグナム/JHP)" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2524,7 +2524,7 @@ msgid ".357 SIG FMJ" msgid_plural ".357 SIG FMJ" msgstr[0] "弾薬(.357口径SIG/FMJ)" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2536,7 +2536,7 @@ msgid ".357 SIG JHP" msgid_plural ".357 SIG JHP" msgstr[0] "弾薬(.357口径SIG/JHP)" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -2581,7 +2581,7 @@ msgid ".38 FMJ" msgid_plural ".38 FMJ" msgstr[0] "弾薬(.38口径/FMJ)" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -2607,7 +2607,7 @@ msgid ".38 Super" msgid_plural ".38 Super" msgstr[0] "弾薬(.38口径スーパー)" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -2645,7 +2645,7 @@ msgid ".380 ACP FMJ" msgid_plural ".380 ACP FMJ" msgstr[0] "弾薬(.380口径ACP/FMJ)" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -2660,7 +2660,7 @@ msgid ".380 ACP JHP" msgid_plural ".380 ACP JHP" msgstr[0] "弾薬(.380口径ACP/JHP)" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -2675,7 +2675,7 @@ msgid ".380 ACP +P" msgid_plural ".380 ACP +P" msgstr[0] "弾薬(.380口径ACP/+P)" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -2715,7 +2715,7 @@ msgid ".38 Super FMJ" msgid_plural ".38 Super FMJ" msgstr[0] "弾薬(.38口径スーパー/FMJ)" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -2734,7 +2734,7 @@ msgid ".40 S&W FMJ" msgid_plural ".40 S&W FMJ" msgstr[0] "弾薬(.40口径S&W/FMJ)" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -2748,7 +2748,7 @@ msgid ".40 S&W JHP" msgid_plural ".40 S&W JHP" msgstr[0] "弾薬(.40口径S&W/JHP)" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -2787,7 +2787,7 @@ msgid "40x46mm M1006 sponge" msgid_plural "40x46mm M1006 sponge" msgstr[0] "弾薬(40x46mm/M1006/スポンジ弾)" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -2801,7 +2801,7 @@ msgid "40x46mm M433 HEDP" msgid_plural "40x46mm M433 HEDP" msgstr[0] "弾薬(40x46mm/M433/HEDP)" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -2814,7 +2814,7 @@ msgid "40x46mm M576 buckshot" msgid_plural "40x46mm M576 buckshot" msgstr[0] "弾薬(40x46mm/M576/散弾)" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -2828,7 +2828,7 @@ msgid "40x46mm M651 tear gas" msgid_plural "40x46mm M651 tear gas" msgstr[0] "弾薬(40x46mm/M651/催涙ガス)" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -2842,8 +2842,8 @@ msgid "40x46mm-M118 buckshot, reloaded" msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "弾薬(40x46mm/M118/散弾/手詰め)" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -2857,8 +2857,8 @@ msgid "40x46mm-M199 buckshot, reloaded" msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "弾薬(40x46mm/M199/散弾/手詰め)" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -2901,8 +2901,8 @@ msgid "40x46mm-M118 flechette, reloaded" msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "弾薬(40x46mm/M118/矢弾/手詰め)" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -2916,8 +2916,8 @@ msgid "40x46mm-M199 flechette, reloaded" msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "弾薬(40x46mm/M199/矢弾/手詰め)" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -2970,7 +2970,7 @@ msgid "40x46mm .22 LR hornet's nest" msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "弾薬(40x46mm/ホーネッツ・ネスト/.22口径弾)" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -2982,7 +2982,7 @@ msgid "40x46mm .410 hornet's nest" msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "弾薬(40x46mm/ホーネッツ・ネスト/.410口径弾)" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3009,7 +3009,7 @@ msgid "40x53mm M430A1 HEDP" msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "弾薬(40x53mm/M430A1/HEDP)" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3022,8 +3022,8 @@ msgid "40x53mm buckshot, reloaded" msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "弾薬(40x53mm/散弾/手詰め)" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "M576用の弾薬に似た、手製の40x53mm散弾です。" @@ -3044,8 +3044,8 @@ msgid "40x53mm flechette, reloaded" msgid_plural "40x53mm flechette, reloaded" msgstr[0] "弾薬(40x53mm/矢弾/手詰め)" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3072,7 +3072,7 @@ msgid ".410 000 shot" msgid_plural ".410 000 shot" msgstr[0] "弾薬(.410口径/散弾)" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "5粒の000弾を備えた.410口径散弾です。狩猟や戦闘に最適の弾薬です。" @@ -3087,7 +3087,7 @@ msgid ".44 Magnum FMJ" msgid_plural ".44 Magnum FMJ" msgstr[0] "弾薬(.44口径マグナム/FMJ)" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3145,7 +3145,7 @@ msgid ".45 ACP FMJ" msgid_plural ".45 ACP FMJ" msgstr[0] "弾薬(.45口径ACP/FMJ)" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3158,7 +3158,7 @@ msgid ".45 ACP JHP" msgid_plural ".45 ACP JHP" msgstr[0] "弾薬(.45口径ACP/JHP)" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3172,7 +3172,7 @@ msgid ".45 ACP +P" msgid_plural ".45 ACP +P" msgstr[0] "弾薬(45口径ACP/+P)" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3211,7 +3211,7 @@ msgid ".454 Casull" msgid_plural ".454 Casull" msgstr[0] "弾薬(.454口径カスール)" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3237,7 +3237,7 @@ msgid ".45-70 SP" msgid_plural ".45-70 SP" msgstr[0] "弾薬(.45-70口径/SP)" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3265,7 +3265,7 @@ msgid ".45-70 LFN cowboy" msgid_plural ".45-70 LFN cowboy" msgstr[0] "弾薬(.45-70口径/LFNカウボーイ)" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3279,7 +3279,7 @@ msgid ".45-70 SP, reloaded" msgid_plural ".45-70 SP, reloaded" msgstr[0] "弾薬(.45-70口径/SP/手詰め)" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3308,7 +3308,7 @@ msgid ".45-70 LFN cowboy, reloaded" msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "弾薬(.45-70口径/LFNカウボーイ/手詰め)" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3323,7 +3323,7 @@ msgid ".45-70, black powder" msgid_plural ".45-70, black powder" msgstr[0] "弾薬(.45-70口径/黒色火薬)" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3338,7 +3338,7 @@ msgid ".45 Colt JHP" msgid_plural ".45 Colt JHP" msgstr[0] "弾薬(.45口径コルト/JHP)" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3363,7 +3363,7 @@ msgid "4.6x30mm" msgid_plural "4.6x30mm" msgstr[0] "弾薬(4.6x30mm)" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3377,8 +3377,8 @@ msgid "4.6x30mm, black powder" msgid_plural "4.6x30mm, black powder" msgstr[0] "弾薬(4.6x30mm/黒色火薬)" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3398,7 +3398,7 @@ msgid ".460 Rowland HCFN" msgid_plural ".460 Rowland HCFN" msgstr[0] "弾薬(.460口径/ローランド/HCFN)" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3411,7 +3411,7 @@ msgid ".460 Rowland" msgid_plural ".460 Rowland" msgstr[0] "弾薬(.460口径ローランド)" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -3437,7 +3437,7 @@ msgid ".460 Rowland FMJ, reloaded" msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "弾薬(.460口径ローランド/FMJ/手詰め)" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -3454,7 +3454,7 @@ msgid ".50 BMG M17 tracer" msgid_plural ".50 BMG M17 tracer" msgstr[0] "弾薬(.50口径BMG/M17曳光弾)" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3467,7 +3467,7 @@ msgid ".50 BMG M33 Ball" msgid_plural ".50 BMG M33 Ball" msgstr[0] "弾薬(.50口径BMG/M33 Ball)" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -3483,7 +3483,7 @@ msgid ".50 BMG Match" msgid_plural ".50 BMG Match" msgstr[0] "弾薬(.50口径BMG/競技用)" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -3495,7 +3495,7 @@ msgid ".50 BMG M2 AP" msgid_plural ".50 BMG M2 AP" msgstr[0] "弾薬(.50口径BMG/M2 AP)" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -3507,7 +3507,7 @@ msgid ".50 BMG Raufoss Mk 211" msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "弾薬(.50BMG/ラウフォスMk211)" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -3526,7 +3526,7 @@ msgid ".50 BMG tracer, reloaded" msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "弾薬(.50口径BMG/曳光弾/手詰め)" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3540,7 +3540,7 @@ msgid ".50 BMG Match, reloaded" msgid_plural ".50 BMG Match, reloaded" msgstr[0] "弾薬(.50口径BMG/競技用/手詰め)" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -3556,7 +3556,7 @@ msgid ".50 BMG AP, reloaded" msgid_plural ".50 BMG AP, reloaded" msgstr[0] "弾薬(.50口径BMG/AP/手詰め)" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -3607,7 +3607,7 @@ msgid "5.45x39mm 7N10" msgid_plural "5.45x39mm 7N10" msgstr[0] "弾薬(5.45x39mm/7N10)" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -3623,7 +3623,7 @@ msgid "5.45x39mm 7N22" msgid_plural "5.45x39mm 7N22" msgstr[0] "弾薬(5.45x39mm/7N22)" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -3635,7 +3635,7 @@ msgid "5.45x39mm, reloaded" msgid_plural "5.45x39mm, reloaded" msgstr[0] "弾薬(5.45x39mm/手詰め)" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -3649,7 +3649,7 @@ msgid "5.45x39mm AP, reloaded" msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "弾薬(5.45x39mm/AP/手詰め)" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -3671,7 +3671,7 @@ msgid "5.7x28mm SS190" msgid_plural "5.7x28mm SS190" msgstr[0] "弾薬(5.7x28mm/SS190)" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3688,8 +3688,8 @@ msgid "5.7x28mm, black powder" msgid_plural "5.7x28mm, black powder" msgstr[0] "弾薬(5.7x28mm/黒色火薬)" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3767,7 +3767,7 @@ msgid "66mm HEAT" msgid_plural "66mm HEAT" msgstr[0] "ロケット弾(66mm/HEAT)" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -3779,7 +3779,7 @@ msgid ".700 NX" msgid_plural ".700 NX" msgstr[0] "弾薬(.70口径NX)" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -3804,7 +3804,7 @@ msgid "7.62x39mm 57-N-231" msgid_plural "7.62x39mm 57-N-231" msgstr[0] "弾薬(7.62x39mm/57-N-231)" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -3819,7 +3819,7 @@ msgid "7.62x39mm M67" msgid_plural "7.62x39mm M67" msgstr[0] "弾薬(7.62x39mm/M67)" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -3835,7 +3835,7 @@ msgid "7.62x39mm M43, reloaded" msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "弾薬(7.62x39mm/M43/手詰め)" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -3866,7 +3866,7 @@ msgid "7.62x54mmR" msgid_plural "7.62x54mmR" msgstr[0] "弾薬(7.62x54mmR)" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -3892,7 +3892,7 @@ msgid "7.62x25mm JHP" msgid_plural "7.62x25mm JHP" msgstr[0] "弾薬(7.62x25mm/JHP)" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -3918,7 +3918,7 @@ msgid "7.62x25mm Type P" msgid_plural "7.62x25mm Type P" msgstr[0] "弾薬(7.62x25mm/タイプP)" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -3980,7 +3980,7 @@ msgid "bootleg 8x40mm JHP" msgid_plural "bootleg 8x40mm JHP" msgstr[0] "弾薬(8x40mm/JHP/非正規)" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -3992,7 +3992,7 @@ msgid "8x40mm caseless" msgid_plural "8x40mm caseless" msgstr[0] "弾薬(8x40mm)" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4004,7 +4004,7 @@ msgid "8x40mm sporting" msgid_plural "8x40mm sporting" msgstr[0] "弾薬(8x40mm/競技)" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4017,7 +4017,7 @@ msgid "8x40mm FMJ" msgid_plural "8x40mm FMJ" msgstr[0] "弾薬(8x40mm/FMJ)" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4030,7 +4030,7 @@ msgid "8x40mm HVP" msgid_plural "8x40mm HVP" msgstr[0] "弾薬(8x40mm/HVP)" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4045,7 +4045,7 @@ msgid "8x40mm tracer" msgid_plural "8x40mm tracer" msgstr[0] "弾薬(8x40mm/曳光弾)" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4060,7 +4060,7 @@ msgid "8x40mm JHP" msgid_plural "8x40mm JHP" msgstr[0] "弾薬(8x40mm/JHP)" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4073,7 +4073,7 @@ msgid "9x19mm JHP" msgid_plural "9x19mm JHP" msgstr[0] "弾薬(9mm/JHP)" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4088,7 +4088,7 @@ msgid "9x19mm FMJ" msgid_plural "9x19mm FMJ" msgstr[0] "弾薬(9mm/FMJ)" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4100,7 +4100,7 @@ msgid "9x19mm +P" msgid_plural "9x19mm +P" msgstr[0] "弾薬(9mm/+P)" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4112,7 +4112,7 @@ msgid "9x19mm +P+" msgid_plural "9x19mm +P+" msgstr[0] "弾薬(9mm/+P+)" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4154,7 +4154,7 @@ msgid "9x18mm 57-N-181S" msgid_plural "9x18mm 57-N-181S" msgstr[0] "弾薬(9x18mm/57-N-181S)" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4168,7 +4168,7 @@ msgid "9x18mm SP-7" msgid_plural "9x18mm SP-7" msgstr[0] "弾薬(9x18mm/SP-7)" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4181,7 +4181,7 @@ msgid "9x18mm RG028" msgid_plural "9x18mm RG028" msgstr[0] "弾薬(9x18mm/RG028)" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4203,7 +4203,7 @@ msgid "9x18mm, reloaded" msgid_plural "9x18mm, reloaded" msgstr[0] "弾薬(9x18mm/手詰め)" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4217,7 +4217,7 @@ msgid "9x18mm +P+, reloaded" msgid_plural "9x18mm +P+, reloaded" msgstr[0] "弾薬(9x18mm/+P+/手詰め)" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4231,7 +4231,7 @@ msgid "9x18mm FMJ, reloaded" msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "弾薬(9x18mm/FMJ/手詰め)" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4245,7 +4245,7 @@ msgid "152mm ATGM HEAT" msgid_plural "152mm ATGM HEAT" msgstr[0] "ミサイル(152mm/ATGM HEAT)" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -4269,7 +4269,7 @@ msgid "cannon round shot" msgid_plural "cannon round shot" msgstr[0] "榴散弾" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -4281,7 +4281,7 @@ msgid "sprayable toxic gas" msgid_plural "sprayable toxic gas" msgstr[0] "噴霧型有毒ガス" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -4293,7 +4293,7 @@ msgid "sprayable fungicide" msgid_plural "sprayable fungicide" msgstr[0] "噴霧型殺菌剤" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -4305,7 +4305,7 @@ msgid "sprayable insecticide" msgid_plural "sprayable insecticide" msgstr[0] "噴霧型殺虫剤" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -4410,7 +4410,7 @@ msgid "paintball" msgid_plural "paintball" msgstr[0] "ペイントボール" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "小型のペイントボールです。この玉はほとんどダメージを与えられません。" @@ -4511,7 +4511,7 @@ msgid "00 shot" msgid_plural "00 shot" msgstr[0] "弾薬(12ga/散弾)" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -4524,7 +4524,7 @@ msgid_plural "shotgun beanbags" msgstr[0] "弾薬(12ga/ビーンバッグ)" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "殺害ではなく無力化を念頭に作られたショットガン用のビーンバッグ弾です。" @@ -4534,7 +4534,7 @@ msgid "birdshot" msgid_plural "birdshot" msgstr[0] "弾薬(12ga/小ペレット弾)" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -4588,8 +4588,8 @@ msgid "00 shot, scrap loaded" msgid_plural "00 shot, scrap loaded" msgstr[0] "弾薬(12ga/金属片)" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -4733,7 +4733,7 @@ msgid "oxyacetylene" msgid_plural "oxyacetylene" msgstr[0] "オキシアセチレン" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -4745,7 +4745,7 @@ msgid "fungal seeds" msgid_plural "fungal seeds" msgstr[0] "種(真菌)" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "真菌の菌糸です。" @@ -5506,7 +5506,7 @@ msgid "red paint" msgid_plural "red paint" msgstr[0] "ペンキ(赤)" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "赤色のペンキが入った缶です。" @@ -5516,7 +5516,7 @@ msgid "blue paint" msgid_plural "blue paint" msgstr[0] "ペンキ(青)" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "青色のペンキが入った缶です。" @@ -5526,7 +5526,7 @@ msgid "white paint" msgid_plural "white paint" msgstr[0] "ペンキ(白)" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "白色のペンキが入った缶です。" @@ -5536,7 +5536,7 @@ msgid "green paint" msgid_plural "green paint" msgstr[0] "ペンキ(緑)" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "緑色のペンキが入った缶です。" @@ -5546,7 +5546,7 @@ msgid "purple paint" msgid_plural "purple paint" msgstr[0] "ペンキ(紫)" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "紫色のペンキが入った缶です。" @@ -5556,7 +5556,7 @@ msgid "yellow paint" msgid_plural "yellow paint" msgstr[0] "ペンキ(黄)" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "黄色のペンキが入った缶です。" @@ -5618,7 +5618,7 @@ msgid "bismuth" msgid_plural "bismuth" msgstr[0] "蒼鉛" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "密度が高い割に脆い金属です。鉛の代替物として頻繁に使われます。" @@ -5628,8 +5628,8 @@ msgid "gold" msgid_plural "gold" msgstr[0] "金" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -5646,7 +5646,7 @@ msgid "zinc" msgid_plural "zinc" msgstr[0] "亜鉛" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -5661,7 +5661,7 @@ msgid "lead" msgid_plural "lead" msgstr[0] "鉛" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -5673,7 +5673,7 @@ msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "マグネシウム粉末" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -5685,7 +5685,7 @@ msgid "silver" msgid_plural "silver" msgstr[0] "銀" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -5741,7 +5741,7 @@ msgid "tin powder" msgid_plural "tin powder" msgstr[0] "錫粉末" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -5753,7 +5753,7 @@ msgid "solder" msgid_plural "solder" msgstr[0] "はんだ" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -5786,7 +5786,7 @@ msgid "fuse" msgid_plural "fuse" msgstr[0] "導火線" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -5835,7 +5835,7 @@ msgid "cotton scraps" msgid_plural "cotton scraps" msgstr[0] "布屑(綿)" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -5849,7 +5849,7 @@ msgid "faux fur scraps" msgid_plural "faux fur scraps" msgstr[0] "布屑(フェイクファー)" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -5861,7 +5861,7 @@ msgid "felt scraps" msgid_plural "felt scraps" msgstr[0] "布屑(フェルト)" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -5875,7 +5875,7 @@ msgid "fur scraps" msgid_plural "fur scraps" msgstr[0] "布屑(毛皮)" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -5887,7 +5887,7 @@ msgid "Kevlar scraps" msgid_plural "Kevlar scraps" msgstr[0] "布屑(ケブラー)" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -5902,7 +5902,7 @@ msgid "leather scraps" msgid_plural "leather scraps" msgstr[0] "布屑(革)" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -5914,7 +5914,7 @@ msgid "Lycra scraps" msgid_plural "Lycra scraps" msgstr[0] "布屑(ライクラ)" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -5926,7 +5926,7 @@ msgid "neoprene scraps" msgid_plural "neoprene scraps" msgstr[0] "布屑(ネオプレン)" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -5938,7 +5938,7 @@ msgid "synthetic fabric scraps" msgid_plural "synthetic fabric scraps" msgstr[0] "布屑(合成繊維)" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -5950,7 +5950,7 @@ msgid "Nomex scraps" msgid_plural "Nomex scraps" msgstr[0] "布屑(ノーメックス)" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -5975,7 +5975,7 @@ msgid "patchwork cotton sheet" msgid_plural "patchwork cotton sheet" msgstr[0] "生地(パッチワーク綿)" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -5999,7 +5999,7 @@ msgid "patchwork faux fur clothing parts" msgid_plural "patchwork faux fur clothing parts" msgstr[0] "継ぎ生地(フェイクファー)" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -6023,7 +6023,7 @@ msgid "patchwork felt clothing parts" msgid_plural "patchwork felt clothing parts" msgstr[0] "継ぎ生地(フェルト)" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -6061,7 +6061,7 @@ msgid "patchwork Lycra clothing parts" msgid_plural "patchwork Lycra clothing parts" msgstr[0] "継ぎ生地(ライクラ)" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -6087,7 +6087,7 @@ msgid "patchwork neoprene clothing parts" msgid_plural "patchwork neoprene clothing parts" msgstr[0] "継ぎ生地(ネオプレン)" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -6114,7 +6114,7 @@ msgid "patchwork Nomex clothing parts" msgid_plural "patchwork Nomex clothing parts" msgstr[0] "継ぎ生地(ノーメックス)" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -6138,7 +6138,7 @@ msgid "patchwork synthetic fabric clothing parts" msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "継ぎ生地(合成繊維)" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -6229,7 +6229,7 @@ msgid "titanium" msgid_plural "titanium" msgstr[0] "チタン" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -6256,7 +6256,7 @@ msgid "10mm FMJ caseless" msgid_plural "10mm FMJ caseless" msgstr[0] "ケースレス弾薬(10mm/FMJ)" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -6271,7 +6271,7 @@ msgid "10mm JHP caseless" msgid_plural "10mm JHP caseless" msgstr[0] "ケースレス弾薬(10mm/JHP)" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -6286,7 +6286,7 @@ msgid "25mm canister shot" msgid_plural "25mm canister shot" msgstr[0] "弾薬(25mm/キャニスター)" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -6302,7 +6302,7 @@ msgid "7.50mm caseless" msgid_plural "7.50mm caseless" msgstr[0] "ケースレス弾薬(7.50mm)" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -6317,7 +6317,7 @@ msgid "7.50mm RP" msgid_plural "7.50mm RP" msgstr[0] "弾薬(7.50mm/RP)" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -6334,7 +6334,7 @@ msgid "electric charge" msgid_plural "electric charge" msgstr[0] "電荷貯蔵装置" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -6346,7 +6346,7 @@ msgid "foamcrete" msgid_plural "foamcrete" msgstr[0] "発泡コンクリート" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -6362,7 +6362,7 @@ msgid "solid hydrogen" msgid_plural "solid hydrogen" msgstr[0] "固体水素" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -6374,7 +6374,7 @@ msgid "lead pellets" msgid_plural "lead pellets" msgstr[0] "ペレット(鉛)" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -6388,7 +6388,7 @@ msgid "domed HP pellets" msgid_plural "domed HP pellets" msgstr[0] "ペレット(半球HP)" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -6402,7 +6402,7 @@ msgid "tipped HP pellets" msgid_plural "tipped HP pellets" msgstr[0] "ペレット(先鋭HP)" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -6414,7 +6414,7 @@ msgid "alloy pellets" msgid_plural "alloy pellets" msgstr[0] "ペレット(合金)" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -6551,7 +6551,7 @@ msgid "pistol ammo, ball" msgid_plural "pistol ammo, ball" msgstr[0] "弾薬(拳銃弾/FMJ)" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6566,7 +6566,7 @@ msgid "pistol ammo, JHP" msgid_plural "pistol ammo, JHP" msgstr[0] "弾薬(拳銃弾/JHP)" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6601,7 +6601,7 @@ msgid "magnum ammo, ball" msgid_plural "magnum ammo, ball" msgstr[0] "弾薬(マグナム弾/FMJ)" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -6617,7 +6617,7 @@ msgid "magnum ammo, JHP" msgid_plural "magnum ammo, JHP" msgstr[0] "弾薬(マグナム弾/JHP)" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -6653,7 +6653,7 @@ msgid "tiny pistol ammo, ball" msgid_plural "tiny pistol ammo, ball" msgstr[0] "弾薬(小型拳銃弾/FMJ)" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -6669,7 +6669,7 @@ msgid "tiny pistol ammo, JHP" msgid_plural "tiny pistol ammo, JHP" msgstr[0] "弾薬(小型拳銃弾/JHP)" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -6705,7 +6705,7 @@ msgid "rifle ammo, ball" msgid_plural "rifle ammo, ball" msgstr[0] "弾薬(ライフル弾/FMJ)" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -6721,7 +6721,7 @@ msgid "rifle ammo, AP" msgid_plural "rifle ammo, AP" msgstr[0] "弾薬(ライフル弾/AP)" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -6757,7 +6757,7 @@ msgid "foreign rifle ammo, ball" msgid_plural "foreign rifle ammo, ball" msgstr[0] "弾薬(外来ライフル弾/FMJ)" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -6768,7 +6768,7 @@ msgid "railgun rifle ammo" msgid_plural "railgun rifle ammo" msgstr[0] "弾薬(レールライフル弾)" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -6780,7 +6780,7 @@ msgid "huge rifle ammo, ball" msgid_plural "huge rifle ammo, ball" msgstr[0] "弾薬(重ライフル弾/FMJ)" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -6796,7 +6796,7 @@ msgid "huge rifle ammo, AP" msgid_plural "huge rifle ammo, AP" msgstr[0] "弾薬(重ライフル弾/AP)" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -6821,7 +6821,7 @@ msgid "rocket, antipersonnel" msgid_plural "rocket, antipersonnel" msgstr[0] "弾薬(ロケット弾/対人)" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -6833,7 +6833,7 @@ msgid "rocket, multipurpose" msgid_plural "rocket, multipurpose" msgstr[0] "弾薬(ロケット弾/多目的)" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -6847,7 +6847,7 @@ msgid "rocket, smoke" msgid_plural "rocket, smoke" msgstr[0] "弾薬(ロケット弾/煙幕)" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -6870,7 +6870,7 @@ msgid "shotshell, birdshot" msgid_plural "shotshell, birdshot" msgstr[0] "弾薬(ショットガン弾/小ペレット弾)" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -6882,7 +6882,7 @@ msgid "shotshell, slug" msgid_plural "shotshell, slug" msgstr[0] "弾薬(ショットガン弾/単発弾)" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -6896,7 +6896,7 @@ msgid "shotshell, pyrotechnical" msgid_plural "shotshell, pyrotechnical" msgstr[0] "弾薬(ショットガン弾/火花)" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -6940,7 +6940,7 @@ msgid "shotshell, flechette (reloaded)" msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "弾薬(ショットガン弾/矢弾/手詰め)" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -6985,7 +6985,7 @@ msgid "alumentum" msgid_plural "alumentum" msgstr[0] "アルメンタム" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -7036,7 +7036,7 @@ msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "竜の血" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -7061,7 +7061,7 @@ msgid "parabolan yarn" msgid_plural "parabolan yarn" msgstr[0] "パラボラ織糸" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "パラボラウールの織糸です。玉虫色に輝く羊毛製の衣類を編むのに使えます。" @@ -7071,7 +7071,7 @@ msgid "crystallized mana" msgid_plural "crystallized mana" msgstr[0] "マナの欠片" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -7106,7 +7106,7 @@ msgid "liquid mercury" msgid_plural "liquid mercury" msgstr[0] "水銀" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "水銀の液体です。温度計に使われていることで有名です。" @@ -7122,7 +7122,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "加工していないミスリルの塊です。様々な用途に使うには、まず鋳塊に加工する必要があります。" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -7591,7 +7591,7 @@ msgstr[0] "弾倉鞄" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -7607,7 +7607,7 @@ msgstr "%sを収納しました。" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -7641,7 +7641,7 @@ msgid "chest rig" msgid_plural "chest rig" msgstr[0] "チェストリグ" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -8468,37 +8468,18 @@ msgid "" msgstr "警察官が着用する革製の黒いベルトです。いくつかのポーチと警棒を収納するホルダーが付いています。" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "サバイバーベルト" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "ツールベルト" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "%1$sを%2$sに収納しました。" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "アイテムを収納する" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" -"ポーチを備えた特製の革製ベルトです。小型の刃物を収納できる鞘と、ハンドガンを収納するホルスターが付いています。頑丈で身に付けていて疲れないよう丁寧に調整してあります。使用すると武器を収納/装備します。" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "ツールベルト" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -8637,23 +8618,6 @@ msgid "" "toes." msgstr "OSHA規格を満たす頑丈なスチールでつま先を覆った、ゴム製のオーバーシューズです。" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "サバイバー防火ブーツ" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "ケブラーで補強した特別仕立てのレザーブーツです。これを着用していれば、膝まで炎に包まれた状況でも生き延びられます。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "XLサバイバー防火ブーツ" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -8669,43 +8633,6 @@ msgid "pair of XL fur boots" msgid_plural "pairs of XL fur boots" msgstr[0] "XLファーブーツ" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "サバイバー防寒ブーツ(フェイクファー)" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "ケブラーで補強した特別仕立てのブーツです。フェイクファーの裏地が付いているため暖かく、膝までゾンビに浸かった状況でも生き延びられます。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "XLサバイバー防寒ブーツ(フェイクファー)" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" -"ケブラーで補強した特別仕立ての巨大なブーツです。フェイクファーの裏地が付いているため暖かく、膝までゾンビに浸かった状況でも生き延びられます。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "サバイバーウェットスーツブーツ" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "ケブラーで補強した特別仕立てのレザーブーツです。これを着用していれば、地獄だろうが水中だろうが生き延びられます。" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -8716,24 +8643,6 @@ msgstr[0] "軽登山靴" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "野外活動での着用を想定した、丈夫で軽量なレザーブーツです。" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "重量型サバイバーブーツ" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "鋼鉄で補強した特別仕立てのケブラーブーツです装着感よりも保護性能を重視しており、とりわけ膝までゾンビに浸かった状況で真価を発揮します。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "XL重量型サバイバーブーツ" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -8750,24 +8659,6 @@ msgid "pair of XL leather armor boots" msgid_plural "pairs of XL leather armor boots" msgstr[0] "XLレザーアーマーブーツ" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "軽量型サバイバーブーツ" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "ケブラーで補強した特別仕立ての布製ブーツです。保護性能よりも装着感を重視しており、膝までゾンビに浸かった状況でも機敏に動けます。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "XL軽量型サバイバーブーツ" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -8831,19 +8722,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "スチール製のつま先をもつ古典的なブーツの後継となる、現代的なスニーカーです。ここ数十年で、労働者階級の人々の支持を集めるようになりました。" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "サバイバーブーツ" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "ケブラーで補強した特別仕立てのレザーブーツです。装着感と保護性能のバランスが取れており、膝までゾンビに浸かった状況でも生き延びられます。" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -8873,37 +8751,6 @@ msgid "pair of XL winter boots" msgid_plural "pairs of XL winter boots" msgstr[0] "XL防寒ブーツ" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "サバイバー防寒ブーツ" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "ケブラーで補強した特別仕立てのブーツです。毛皮の裏地が付いているため暖かく、膝までゾンビに浸かった状況でも生き延びられます。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "XLサバイバー防寒ブーツ" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "XLサバイバーブーツ" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" -"ケブラーで補強した特別仕立ての巨大なレザーブーツです。装着感と保護性能のバランスが取れており、膝までゾンビに浸かった状況でも生き延びられます。" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -9718,23 +9565,6 @@ msgid "XL leather duster" msgid_plural "XL leather dusters" msgstr[0] "XLダスターコート(革)" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "サバイバーダスターコート" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "全身を覆う特製のダスターコートです。ケブラーで装甲を施し、収納容積を大幅に増やしました。動きやすく頑丈で、アイテムを大量に収納できます。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "XLサバイバーダスターコート" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -9780,7 +9610,7 @@ msgid "army jacket" msgid_plural "army jacket" msgstr[0] "軍用ジャケット" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "複数のポケットが付いた軍用の丈夫なジャケットです。" @@ -9940,7 +9770,7 @@ msgid "kimono" msgid_plural "kimono" msgstr[0] "着物" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -10089,19 +9919,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "厚手の革で作った、全身を覆うダスターコートです。袖が無いので腕が動かしやすく、たくさんのポケットで収納容積を確保しています。" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "袖無しサバイバーダスターコート" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" -"全身を覆う特製の袖無しダスターコートです。ケブラーで装甲を施し、十分な収納容積を確保しています。動きやすく、頑丈で、アイテムを大量に収納できます。" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -10150,19 +9967,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "邪魔な袖を取っ払った、革製の薄いトレンチコートです。ポケットが多く、物をたくさん収納できます。" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "袖無しサバイバートレンチコート" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" -"邪魔な袖を取っ払った、特製のトレンチコートです。ケブラー装甲を施し、小物袋とポケットを取り付けてあります。着心地が良く、丈夫で、収納性にも優れています。" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -10178,7 +9982,7 @@ msgid "thawb" msgid_plural "thawb" msgstr[0] "トーブ" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -10226,18 +10030,6 @@ msgstr[0] "トレンチコート(革)" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "ポケットが付いた分厚い革製のトレンチコートです。非常に大きな収納容積を備えています。" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "サバイバートレンチコート" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "特注のトレンチコートです。ケブラー装甲を施し、小物袋とポケットが取り付けてあります。着心地が良く、丈夫で、収納性にも優れています。" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -10465,18 +10257,6 @@ msgstr[0] "サングラス" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "眩しい光から目を守るサングラスです。" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "サバイバーゴーグル" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "着色レンズが入った特製の装甲付きゴーグルです。快適かつ頑丈で、危険な環境からしっかりと目を保護します。" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -10823,24 +10603,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "革製の指貫グローブです。手の甲部分が鋼鉄製の装甲で簡単に補強されています。" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "サバイバー防火グローブ" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" -"ケブラーで補強した特別仕立てのノーメックス製グローブです。大変動以前に消防士が着用していたものを素材として、ポストアポカリプス時代に即した改造を加えました。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "XLサバイバー防火グローブ" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -10856,46 +10618,6 @@ msgid "pair of XL fur gloves" msgid_plural "pairs of XL fur gloves" msgstr[0] "XLファーグローブ" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "サバイバー防寒グローブ(フェイクファー)" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "ケブラーで補強した特別仕立てのグローブです。裏地にはフェイクファーが付いています。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "XLサバイバー防寒グローブ(フェイクファー)" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "ケブラーで補強した特別仕立ての巨大なグローブです。裏地にはフェイクファーが付いています。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "重量型サバイバーグローブ" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "鋼鉄で補強した特別仕立てのケブラー製グローブです。肉体の保護を第一に考えたデザインです。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "XL重量型サバイバーグローブ" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -10952,57 +10674,6 @@ msgid "pair of XL glove liners" msgid_plural "pairs of XL glove liners" msgstr[0] "XLライナーグローブ" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "軽量型サバイバーグローブ" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "ケブラーで補強した特別仕立ての布製グローブです。装着感を第一に考えたデザインです。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "XL軽量型サバイバーグローブ" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "軽量型サバイバー指貫グローブ" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "ケブラーで補強した特別仕立ての布製指貫グローブです。装着感を第一に考えたデザインです。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "XL軽量型サバイバー指貫グローブ" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "サバイバー指貫グローブ" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "ケブラーで補強した特別仕立ての指貫レザーグローブです。装着感と保護性能のバランスが取れています。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "XLサバイバー指貫グローブ" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -11039,18 +10710,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "ゴム製の手袋です。腐食性物質を取り扱う際によく使われます。" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "サバイバーグローブ" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "ケブラーで補強した特別仕立てのレザーグローブです。装着感と保護性のバランスが取れています。" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -11162,34 +10821,6 @@ msgid "" "mischief." msgstr "羊毛の端切れで作った、手に巻き付ける長い布です。人を殴るなどの様々な悪さをする際に、若干手にケガを負いにくくなります。" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "サバイバー防寒グローブ" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "ケブラーで補強した特別仕立てのグローブです。裏地には毛皮が付いています。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "XLサバイバー防寒グローブ" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "XLサバイバーグローブ" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "ケブラーで補強した特別仕立ての巨大なレザーグローブです。装着感と保護性のバランスが取れています。" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -11876,7 +11507,7 @@ msgid "kabuto" msgid_plural "kabuto" msgstr[0] "当世兜" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -11981,30 +11612,6 @@ msgid "" msgstr "" "中世初期のヨーロッパで使われていた、鼻を保護する突起が付いた兜です。視界をなるべく妨げずに顔を守れます。巨人のヨトゥンといえばステレオタイプな二本角兜ですが、実際にはこの形状の兜を使っていました。" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "放浪者の頭巾" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "長期間の放浪用に作られた頭巾です。雨や太陽光から目を保護する丈夫なひさしが付いています。" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "XL放浪者の頭巾" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "長期間の放浪用に作られた頭巾です。雨や太陽光から目を保護する丈夫なひさしが付いています。非常に大柄な放浪者でも着用できる作りです。" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -12055,30 +11662,6 @@ msgid "" msgstr "" "金属製のカウボーイハットのように見える、広いつばが付いたヘルメットです。残念ながら、目を太陽光から保護する機能はありません。一般的なサイズより大きく作られています。" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "スカベンジャーの頭巾" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "防毒マスクと保護メガネが装着された、首元まで覆う頑丈な保護頭巾です。危険な探索作業のための頭巾です。" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "XLスカベンジャーの頭巾" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "防毒マスクと保護メガネが装着された、首元まで覆う頑丈な保護頭巾です。大柄な人間が危険な探索作業をするための頭巾です。" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -12266,36 +11849,6 @@ msgid "" "holster/draw a gun." msgstr "非常に小さな拳銃を身体に密着させて隠し持つためのゴムバンドです。練習なしでは使いこなせません。使用すると銃を収納/装備します。" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "サバイバーハーネス" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" -"小型のライフルなどを取り付けられる戦闘用の吊り帯とポーチが付いた特製の軽量ハーネスです。丈夫で着心地が良いように作られています。使用すると銃を収納/装備します。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "XLサバイバーハーネス" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" -"小型のライフルなどを取り付けられる戦闘用の吊り帯とポーチが付いた特製の軽量ハーネスです。丈夫で着心地が良く、大柄な体格にフィットします。使用すると銃を収納/装備します。" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -12342,71 +11895,6 @@ msgid "" "in size XL." msgstr "チェインメイルで作られた特別仕立ての巨大なフードです。ヘルメットの下に快適に着用できます。" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "サバイバー防火フード" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "ノーメックスとケブラーで作った、特別仕立ての装甲付きフードです。丈夫で耐久力に優れています。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "XLサバイバー防火フード" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "ノーメックスとケブラーで作った、特別仕立ての装甲付きフードです。非常に強固で頑丈です。巨人の国で作られたようなサイズです。" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "軽量型サバイバーフード" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "布とケブラーで作った、特別仕立ての装甲付きフードです。軽量で、しかも耐久性に優れています。" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "XL軽量型サバイバーフード" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "布とケブラーで作った、特別仕立ての巨大な装甲付きフードです。軽量で、しかも耐久性に優れています。" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "サバイバー防寒フード(フェイクファー)" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "特別仕立てのケブラー製装甲付きフードです。保温のため、裏地にはフェイクファーを使っています。" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "XLサバイバー防寒フード(フェイクファー)" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "特別仕立ての巨大なケブラー製装甲付きフードです。保温のため、裏地にはフェイクファーを使っています。" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -12417,52 +11905,6 @@ msgstr[0] "レインフード" msgid "A waterproof hood made to be worn in bad weather." msgstr "悪天候時の着用を想定して作られた、防水素材のフードです。" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "サバイバーフード" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "革とケブラーで作った装甲付きフードです。装着感と保護性能のバランスが取れています。" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "サバイバー防寒フード" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "特別仕立てのケブラー製装甲付きフードです。保温のため、裏地には毛皮を使っています。" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "XLサバイバー防寒フード" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "特別仕立ての巨大なケブラー製装甲付きフードです。保温のため、裏地には毛皮を使っています。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "XLサバイバーフード" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "革とケブラーで作った巨大な装甲付きフードです。装着感と保護性能のバランスが取れています。" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -12846,9 +12288,9 @@ msgid "garnet and gold cufflinks" msgid_plural "garnet and gold cufflinks" msgstr[0] "カフスボタン(金/ガーネット)" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "ガーネットが嵌め込まれたカフスボタンです。" @@ -12858,9 +12300,9 @@ msgid "diamond and gold cufflinks" msgid_plural "diamond and gold cufflinks" msgstr[0] "カフスボタン(金/ダイヤモンド)" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "ダイヤモンドが嵌め込まれたカフスボタンです。" @@ -12870,9 +12312,9 @@ msgid "amethyst and gold cufflinks" msgid_plural "amethyst and gold cufflinks" msgstr[0] "カフスボタン(金/アメシスト)" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "アメシストが嵌め込まれたカフスボタンです。" @@ -12882,9 +12324,9 @@ msgid "aquamarine and gold cufflinks" msgid_plural "aquamarine and gold cufflinks" msgstr[0] "カフスボタン(金/アクアマリン)" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "アクアマリンが嵌め込まれたカフスボタンです。" @@ -12894,9 +12336,9 @@ msgid "emerald and gold cufflinks" msgid_plural "emerald and gold cufflinks" msgstr[0] "カフスボタン(金/エメラルド)" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "エメラルドが嵌め込まれたカフスボタンです。" @@ -12906,9 +12348,9 @@ msgid "alexandrite and gold cufflinks" msgid_plural "alexandrite and gold cufflinks" msgstr[0] "カフスボタン(金/アレキサンドライト)" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "アレキサンドライトが嵌め込まれたカフスボタンです。" @@ -12918,9 +12360,9 @@ msgid "ruby and gold cufflinks" msgid_plural "ruby and gold cufflinks" msgstr[0] "カフスボタン(金/ルビー)" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "ルビーが嵌め込まれたカフスボタンです。" @@ -12930,9 +12372,9 @@ msgid "peridot and gold cufflinks" msgid_plural "peridot and gold cufflinks" msgstr[0] "カフスボタン(金/ペリドット)" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "ペリドットが嵌め込まれたカフスボタンです。" @@ -12942,9 +12384,9 @@ msgid "sapphire and gold cufflinks" msgid_plural "sapphire and gold cufflinks" msgstr[0] "カフスボタン(金/サファイア)" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "サファイアが嵌め込まれたカフスボタンです。" @@ -12954,9 +12396,9 @@ msgid "tourmaline and gold cufflinks" msgid_plural "tourmaline and gold cufflinks" msgstr[0] "カフスボタン(金/トルマリン)" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "トルマリンが嵌め込まれたカフスボタンです。" @@ -12966,9 +12408,9 @@ msgid "citrine and gold cufflinks" msgid_plural "citrine and gold cufflinks" msgstr[0] "カフスボタン(金/黄水晶)" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "黄水晶が嵌め込まれたカフスボタンです。" @@ -12978,9 +12420,9 @@ msgid "blue topaz and gold cufflinks" msgid_plural "blue topaz and gold cufflinks" msgstr[0] "カフスボタン(金/ブルートパーズ)" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "ブルートパーズが嵌め込まれたカフスボタンです。" @@ -12990,9 +12432,9 @@ msgid "opal and gold cufflinks" msgid_plural "opal and gold cufflinks" msgstr[0] "カフスボタン(金/オパール)" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "オパールが嵌め込まれたカフスボタンです。" @@ -13002,9 +12444,9 @@ msgid "pearl and gold cufflinks" msgid_plural "pearl and gold cufflinks" msgstr[0] "カフスボタン(金/真珠)" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "真珠が嵌め込まれたカフスボタンです。" @@ -16291,7 +15733,7 @@ msgid "turnout trousers" msgid_plural "turnout trousers" msgstr[0] "消防士ボトムス" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -16330,7 +15772,7 @@ msgid "leather chaps" msgid_plural "leather chaps" msgstr[0] "レザーチャップス" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -16342,7 +15784,7 @@ msgid "chainsaw chaps" msgid_plural "chainsaw chaps" msgstr[0] "チェーンソーチャップス" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -16357,7 +15799,7 @@ msgid "fencing pants" msgid_plural "fencing pants" msgstr[0] "フェンシングパンツ" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "怪我防止のためにフェンシングの選手が使う補強されたズボンです。" @@ -16518,31 +15960,6 @@ msgid "" msgstr "" "厚いタイヤのゴムを紐で簡単に繋ぎ合わせて作った、特大サイズのレッグガードです。緩く繋いで重ねたゴムにはそれなりの防護性能がありますが、完璧な装甲とは言えません。着用するとゴミ山が歩いているように見えます。" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "軽量型サバイバーカーゴパンツ" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "できるだけたくさん収納できるように作られた、ケブラー装甲の頑丈な軽量カーゴパンツです。ほぼ完全防水です。" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "XL軽量型サバイバーカーゴパンツ" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" -"できるだけたくさん収納できるように作られた、ケブラー装甲の頑丈な軽量カーゴパンツです。ほぼ完全防水で、一般的なサイズより大きく作られています。" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -16553,36 +15970,12 @@ msgstr[0] "バイクパンツ" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "ダートバイクなどに乗る際に着用するパンツです。" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "サバイバーカーゴパンツ" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "ケブラー装甲を施し小物袋やポケットを取り付けた特製のズボンです。頑丈で着心地が良く、着るのも簡単です。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "XLサバイバーカーゴパンツ" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "ケブラー装甲を施し小物袋やポケットを取り付けた、サイズの大きな特製のズボンです。頑丈で着心地が良く、着るのも簡単です。" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "対爆ズボン" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -16594,7 +15987,7 @@ msgid "light EOD trousers" msgid_plural "light EOD trousers" msgstr[0] "軽装対爆ズボン" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -16619,7 +16012,7 @@ msgid "basketball shorts" msgid_plural "basketball shorts" msgstr[0] "バスケットボールパンツ" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "軽量で履き心地に優れたバスケットボールパンツです。" @@ -16629,7 +16022,7 @@ msgid "breeches" msgid_plural "breeches" msgstr[0] "ブリーチェス" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -16651,7 +16044,7 @@ msgid "hot pants" msgid_plural "hot pants" msgstr[0] "ホットパンツ" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "シンプルなショートパンツです。" @@ -16661,7 +16054,7 @@ msgid "fur hot pants" msgid_plural "fur hot pants" msgstr[0] "ホットパンツ(毛皮)" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "毛皮製のシンプルなショートパンツです。" @@ -16671,7 +16064,7 @@ msgid "leather hot pants" msgid_plural "leather hot pants" msgstr[0] "ホットパンツ(革)" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "革製のシンプルなショートパンツです。" @@ -16681,7 +16074,7 @@ msgid "jeans" msgid_plural "jeans" msgstr[0] "ジーンズ" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "2つの深いポケットが付いた青色のジーンズです。" @@ -16713,7 +16106,7 @@ msgid "red jeans" msgid_plural "red jeans" msgstr[0] "ジーンズ(赤)" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "2つの深いポケットが付いた、キャンディアップルレッドのタイトなジーンズです。" @@ -16739,7 +16132,7 @@ msgid "leggings" msgid_plural "leggings" msgstr[0] "レギンス" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -16809,7 +16202,7 @@ msgid "pants" msgid_plural "pants" msgstr[0] "コットンパンツ" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "ジーンズよりも少しだけ暖かいカーキ色のズボンです。" @@ -16819,15 +16212,15 @@ msgid "army pants" msgid_plural "army pants" msgstr[0] "軍用パンツ" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "複数のポケットが付いた軍採用の丈夫なズボンです。" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "軍人に人気の丈夫なズボンです。灰色、緑色、黄褐色からなる迷彩柄ですが、黒色を使っていない点が特徴です。" #: lang/json/ARMOR_from_json.py @@ -16859,7 +16252,7 @@ msgid "cargo pants" msgid_plural "cargo pants" msgstr[0] "カーゴパンツ" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "複数のポケットで十分な収納容積を確保したズボンです。" @@ -16869,7 +16262,7 @@ msgid "checkered pants" msgid_plural "checkered pants" msgstr[0] "チェックパンツ" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "いざという時には、このズボンはチェッカーのゲーム盤に利用できます。" @@ -16879,7 +16272,7 @@ msgid "fur pants" msgid_plural "fur pants" msgstr[0] "ファーパンツ" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "裏地に毛皮を用いた丈夫なズボンです。" @@ -16889,7 +16282,7 @@ msgid "faux fur pants" msgid_plural "faux fur pants" msgstr[0] "フェイクファーパンツ" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "裏地に毛皮の模造品が使われている布製の長ズボンです。" @@ -16899,7 +16292,7 @@ msgid "leather pants" msgid_plural "leather pants" msgstr[0] "レザーパンツ" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -16911,7 +16304,7 @@ msgid "ski pants" msgid_plural "ski pants" msgstr[0] "スキーパンツ" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "アルペンスキー用のズボンです。" @@ -16921,7 +16314,7 @@ msgid "police breeches" msgid_plural "police breeches" msgstr[0] "警官用ブリーチェス" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -16933,7 +16326,7 @@ msgid "mail carrier shorts" msgid_plural "mail carrier shorts" msgstr[0] "郵便配達員ボトムス" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "郵便局員が着用するダークブルーのショートパンツです。" @@ -16943,7 +16336,7 @@ msgid "shorts" msgid_plural "shorts" msgstr[0] "ハーフパンツ" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "丈の短いカーキ色のズボンです。" @@ -16953,7 +16346,7 @@ msgid "cargo shorts" msgid_plural "cargo shorts" msgstr[0] "ハーフカーゴパンツ" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "複数のポケットが付いた丈の短いズボンです。ある程度の収納容積を備えています。" @@ -16963,7 +16356,7 @@ msgid "denim shorts" msgid_plural "denim shorts" msgstr[0] "デニムパンツ" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "デニム生地のズボンです。" @@ -17020,7 +16413,7 @@ msgid "striped pants" msgid_plural "striped pants" msgstr[0] "ストライプパンツ" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "黒と白の横縞模様が入ったズボンです。" @@ -17049,7 +16442,7 @@ msgid "army winter pants" msgid_plural "army winter pants" msgstr[0] "軍用防寒パンツ" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -18124,54 +17517,6 @@ msgid "" " around is not exactly comfortable." msgstr "主に旅行中の衣服を運ぶ用途に使う、車輪が付いた中型サイズのスーツケースです。収納性は抜群ですが、持ち運びにはあまり適しません。" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "サバイバーダッフルバッグ" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "特製の丈夫な重量型ダッフルバッグです。出来る限りの荷物を詰め込めるように手間を掛けて作られています。" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "サバイバーバックパック" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "特製の丈夫なバックパックです。荷物を可能な限り詰め込めるように、手間を掛けて作られています。" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "サバイバーリュックサック" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "特製の丈夫な重量型バックパックです。荷物を可能な限り詰め込めるように、手間を掛けて作られています。" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "サバイバーランニングバッグ" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "特製の軽量で丈夫なランニング用のバッグです。出来る限りの荷物を詰め込めるように手間を掛けて作られています。" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -18573,32 +17918,6 @@ msgid "XL plate armor" msgid_plural "XL plate armors" msgstr[0] "XLプレートアーマー" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "放浪者の服" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "大変動前に市販されていた衣類を改造して作った、長旅に適した簡易的な装備です。たくさんの収納スペースが確保できます。" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "放浪者の軽装" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" -"大変動前に市販されていた衣類を改造して作った、長旅に適した簡易的な軽装備です。通常の放浪者の服に比べて収納スペースと防御力が減少しています。" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -18639,9 +17958,9 @@ msgstr[0] "ライオットアーマー" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." -msgstr "暴動発生時に機動隊が着用していた、黒いボディアーマーです。正面に「POLICE」の文字が入っています。" +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." +msgstr "暴動発生時に機動隊が着用していた、プラスチック製の黒い装甲服です。前面に「POLICE」の文字が入っています。" #: lang/json/ARMOR_from_json.py msgid "O-yoroi" @@ -18653,18 +17972,6 @@ msgstr[0] "大鎧" msgid "An ornamental suit of Japanese samurai armor." msgstr "侍が着ていた装飾的な鎧です。" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "スカベンジャーの服" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "大変動前に作られた防護服に改造を施した、スカベンジャーのための頑丈な服です。たくさんの収納スペースが確保できます。" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -18790,53 +18097,6 @@ msgid "XL entry suit" msgid_plural "XL entry suits" msgstr[0] "XLエントリースーツ" -#: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "サバイバー防火スーツ" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" -"切り詰めた防弾ベストと補強したノーメックス製の防火ジャンプスーツから作られた、手製の重量型コンビネーションアーマーです。着用者を火災やその他の外的要因から保護します。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "XLサバイバー防火スーツ" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "サバイバー防寒スーツ" - -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" -"補強した防弾ベストと断熱加工した革製ジャンプスーツから作られた、手製の冬用重量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "XLサバイバー防寒スーツ" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." -msgstr "" -"補強した防弾ベストと断熱加工した革製ジャンプスーツから作られた、サイズの大きな手製の冬用重量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" - #: lang/json/ARMOR_from_json.py msgid "gambeson" msgid_plural "gambesons" @@ -18849,11 +18109,29 @@ msgid "" "other armor. Or worn on its own, if you can't afford proper armor." msgstr "厚みのあるキルト生地の上着です。装甲の下に着るよう作られていますが、鎧が用意できない場合はそのまま着てもかまいません。" +#: lang/json/ARMOR_from_json.py +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" +msgstr[0] "ケブラーギャンベソン" + +#. ~ Description for kevlar gambeson +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." +msgstr "装甲の下に着るように作られた、厚みのあるキルト生地の上着です。ケブラー素材が使われており、より高い防御力を発揮します。" + #: lang/json/ARMOR_from_json.py msgid "XL gambeson" msgid_plural "XL gambesons" msgstr[0] "XLギャンベソン" +#: lang/json/ARMOR_from_json.py +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" +msgstr[0] "XLケブラーギャンベソン" + #: lang/json/ARMOR_from_json.py msgid "hazmat suit" msgid_plural "hazmat suits" @@ -18869,38 +18147,6 @@ msgid "" msgstr "" "危険物から身を守るために着用する、不浸透性の全身防護服です。装着感が悪く耐久性も低いですが、着用することで周囲の放射線から肉体をほぼ完全に保護します。完璧に保護したい場合は、別途ガスマスクを着用する必要があります。" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "重量型サバイバースーツ" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" -"補強した防弾ベストと金属板で強化した革製ジャンプスーツから作られた、手製の重量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "軽量型サバイバースーツ" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "切り詰めた防弾ベストと補強した布製ジャンプスーツから作られた、手製の軽量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "XL軽量型サバイバースーツ" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -18961,18 +18207,6 @@ msgid "" "experience." msgstr "上下がセットになった綿製のスーツです。この終末を真の紳士らしく生き延びましょう。" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "サバイバースーツ" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "防弾ベストと補強した革製ジャンプスーツから作られた、手製のコンビネーションアーマーです。天候や攻撃から身体を守ります。" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -18981,9 +18215,9 @@ msgstr[0] "SWATアーマー" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." -msgstr "ポケットがたくさん付いた黒い防弾性装甲スーツです。背中には大きくSWATと書かれています。" +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." +msgstr "胸部、腕部、脚部の弱点を重点的にカバーする黒い装甲服です。背中に大きく「SWAT」の文字が入っています。" #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -18997,42 +18231,6 @@ msgid "" "Light and very comfortable." msgstr "厚い革製のスーツです。バイクの運転時に怪我から身を守ってくれます。軽量で非常に着心地が良いです。" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"補強した防弾ベストと断熱加工した革製ジャンプスーツから作られた、手製の冬用重量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "XLサバイバースーツ" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "防弾ベストと補強した革製ジャンプスーツから作られた、サイズの大きな手製のコンビネーションアーマーです。天候や攻撃から身体を守ります。" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "XL重量型サバイバースーツ" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"補強した防弾ベストと金属板で強化した革製ジャンプスーツから作られた、サイズの大きな手製の重量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -19048,7 +18246,7 @@ msgstr "米軍が採用している、セージグリーンのパイロットス #: lang/json/ARMOR_from_json.py msgid "dress uniform" msgid_plural "dress uniforms" -msgstr[0] "" +msgstr[0] "軍服" #. ~ Description for dress uniform #: lang/json/ARMOR_from_json.py @@ -19056,7 +18254,7 @@ msgid "" "A military officer's dress uniform from before the Cataclysm, complete with " "rank and ribbons. Just looking at it gives you an air of authority. " "Perhaps not the most practical military wear, but a very stylish option." -msgstr "" +msgstr "階級章とリボンが付いた、大変動前の軍人の正装です。実戦には向きませんが、非常に威厳にあふれており、おしゃれに見えます。" #: lang/json/ARMOR_from_json.py msgid "bikini bottom" @@ -19098,43 +18296,6 @@ msgstr[0] "ウェットスーツフード" msgid "A neoprene hood, commonly worn by divers." msgstr "一般的なダイバーが着用するネオプレン製のフードです。" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "ダイビングフード" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "ネオプレンとケブラーで作った、特別仕立ての装甲付きフードです。とても強固で頑丈です。" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "サバイバーウェットスーツ" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" -"切り詰めた防弾ベストと補強したネオプレーン製ウェットスーツから作られた、手製の軽量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "サバイバーダイビンググローブ" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "ケブラーで補強した、特別仕立てのネオプレン製グローブです。過酷な状況下でも最大限の保護性能を発揮し、装着感も損なわれていません。" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -19233,7 +18394,7 @@ msgid "lorica segmentata" msgid_plural "lorica segmentata" msgstr[0] "ロリカセグメンタタ" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -19388,7 +18549,7 @@ msgid "tire leather armor" msgid_plural "tire leather armor" msgstr[0] "タイヤレザーアーマー" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -19446,23 +18607,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "軽量な防弾ベストです。衣服の下に着込むのに適しています。" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "軽量型サバイバーボディアーマー" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "ケブラーと丈夫な生地で作られた特製の軽量ボディーアーマーです。ほぼ完全防水です。" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "XL軽量型サバイバーボディアーマー" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -19712,7 +18856,7 @@ msgid "leotard" msgid_plural "leotard" msgstr[0] "レオタード" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -19796,7 +18940,7 @@ msgid "French maid clothes" msgid_plural "French maid clothes" msgstr[0] "メイド服" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "フリルの付いた白いエプロンと青いメイド服です。" @@ -20079,7 +19223,7 @@ msgid "boxer briefs" msgid_plural "boxer briefs" msgstr[0] "ボクサーブリーフ" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "定番の議論だけど、ボクサー派とブリーフ派、どっち?ほう、なるほど。" @@ -20089,7 +19233,7 @@ msgid "XL boxer briefs" msgid_plural "XL boxer briefs" msgstr[0] "XLボクサーブリーフ" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "定番の議論だけど、ボクサー派とブリーフ派、どっち?デカけりゃ何でもいいか!" @@ -20099,7 +19243,7 @@ msgid "boxer shorts" msgid_plural "boxer shorts" msgstr[0] "ボクサーパンツ" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -20110,7 +19254,7 @@ msgid "XL boxer shorts" msgid_plural "XL boxer shorts" msgstr[0] "XLボクサーパンツ" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -20122,7 +19266,7 @@ msgid "boy shorts" msgid_plural "boy shorts" msgstr[0] "ボーイレッグパンティー" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -20133,7 +19277,7 @@ msgid "XL boy shorts" msgid_plural "XL boy shorts" msgstr[0] "XLボーイレッグパンティー" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -20156,7 +19300,7 @@ msgid "briefs" msgid_plural "briefs" msgstr[0] "ブリーフ" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "ブリーフは男性が身に付ける快適な下着です。" @@ -20300,7 +19444,7 @@ msgid "panties" msgid_plural "panties" msgstr[0] "パンティー" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -20361,7 +19505,7 @@ msgid "tights" msgid_plural "tights" msgstr[0] "タイツ" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -20384,7 +19528,7 @@ msgid "compression shorts" msgid_plural "compression shorts" msgstr[0] "コンプレッションパンツ" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -20417,6 +19561,881 @@ msgid "" msgstr "" "クルーネックのレオタードとレギンスを組み合わせた形状の、肌に密着する合成繊維製の衣装です。主に体操選手、ダンサー、軽乗競技選手が着用し、全身を柔らかく包んで保護します。" +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "放浪者の服" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "大変動前に市販されていた衣類を改造して作った、長旅に適した簡易的な装備です。たくさんの収納スペースが確保できます。" + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "放浪者の軽装" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" +"大変動前に市販されていた衣類を改造して作った、長旅に適した簡易的な軽装備です。通常の放浪者の服に比べて収納スペースと防御力が減少しています。" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "スカベンジャーの服" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "大変動前に作られた防護服に改造を施した、スカベンジャーのための頑丈な服です。たくさんの収納スペースが確保できます。" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "軽量型サバイバースーツ" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "切り詰めた防弾ベストと補強した布製ジャンプスーツから作られた、手製の軽量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "XL軽量型サバイバースーツ" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "サバイバースーツ" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "防弾ベストと補強した革製ジャンプスーツから作られた、手製のコンビネーションアーマーです。天候や攻撃から身体を守ります。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "XLサバイバースーツ" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "防弾ベストと補強した革製ジャンプスーツから作られた、サイズの大きな手製のコンビネーションアーマーです。天候や攻撃から身体を守ります。" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "サバイバー防寒スーツ" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" +"補強した防弾ベストと断熱加工した革製ジャンプスーツから作られた、手製の冬用重量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "XLサバイバー防寒スーツ" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" +"補強した防弾ベストと断熱加工した革製ジャンプスーツから作られた、手製の冬用重量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" +"補強した防弾ベストと断熱加工した革製ジャンプスーツから作られた、サイズの大きな手製の冬用重量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "サバイバーウェットスーツ" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "" +"切り詰めた防弾ベストと補強したネオプレーン製ウェットスーツから作られた、手製の軽量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "軽量型サバイバーブーツ" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "ケブラーで補強した特別仕立ての布製ブーツです。保護性能よりも装着感を重視しており、膝までゾンビに浸かった状況でも機敏に動けます。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "XL軽量型サバイバーブーツ" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "サバイバーブーツ" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "ケブラーで補強した特別仕立てのレザーブーツです。装着感と保護性能のバランスが取れており、膝までゾンビに浸かった状況でも生き延びられます。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "XLサバイバーブーツ" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" +"ケブラーで補強した特別仕立ての巨大なレザーブーツです。装着感と保護性能のバランスが取れており、膝までゾンビに浸かった状況でも生き延びられます。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "サバイバー防寒ブーツ(フェイクファー)" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "ケブラーで補強した特別仕立てのブーツです。フェイクファーの裏地が付いているため暖かく、膝までゾンビに浸かった状況でも生き延びられます。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "XLサバイバー防寒ブーツ(フェイクファー)" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" +"ケブラーで補強した特別仕立ての巨大なブーツです。フェイクファーの裏地が付いているため暖かく、膝までゾンビに浸かった状況でも生き延びられます。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "サバイバー防寒ブーツ" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "ケブラーで補強した特別仕立てのブーツです。毛皮の裏地が付いているため暖かく、膝までゾンビに浸かった状況でも生き延びられます。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "XLサバイバー防寒ブーツ" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "サバイバーウェットスーツブーツ" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "ケブラーで補強した特別仕立てのレザーブーツです。これを着用していれば、地獄だろうが水中だろうが生き延びられます。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "軽量型サバイバーグローブ" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "ケブラーで補強した特別仕立ての布製グローブです。装着感を第一に考えたデザインです。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "XL軽量型サバイバーグローブ" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "軽量型サバイバー指貫グローブ" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "ケブラーで補強した特別仕立ての布製指貫グローブです。装着感を第一に考えたデザインです。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "XL軽量型サバイバー指貫グローブ" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "サバイバー指貫グローブ" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "ケブラーで補強した特別仕立ての指貫レザーグローブです。装着感と保護性能のバランスが取れています。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "XLサバイバー指貫グローブ" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "サバイバーグローブ" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "ケブラーで補強した特別仕立てのレザーグローブです。装着感と保護性のバランスが取れています。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "XLサバイバーグローブ" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "ケブラーで補強した特別仕立ての巨大なレザーグローブです。装着感と保護性のバランスが取れています。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "サバイバー防寒グローブ" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "ケブラーで補強した特別仕立てのグローブです。裏地には毛皮が付いています。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "XLサバイバー防寒グローブ" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "サバイバー防寒グローブ(フェイクファー)" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "ケブラーで補強した特別仕立てのグローブです。裏地にはフェイクファーが付いています。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "XLサバイバー防寒グローブ(フェイクファー)" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "ケブラーで補強した特別仕立ての巨大なグローブです。裏地にはフェイクファーが付いています。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "サバイバーダイビンググローブ" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "ケブラーで補強した、特別仕立てのネオプレン製グローブです。過酷な状況下でも最大限の保護性能を発揮し、装着感も損なわれていません。" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "放浪者の頭巾" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "長期間の放浪用に作られた頭巾です。雨や太陽光から目を保護する丈夫なひさしが付いています。" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "XL放浪者の頭巾" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "長期間の放浪用に作られた頭巾です。雨や太陽光から目を保護する丈夫なひさしが付いています。非常に大柄な放浪者でも着用できる作りです。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "サバイバーフード" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "革とケブラーで作った装甲付きフードです。装着感と保護性能のバランスが取れています。" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "サバイバー防寒フード" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "特別仕立てのケブラー製装甲付きフードです。保温のため、裏地には毛皮を使っています。" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "XLサバイバー防寒フード" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "特別仕立ての巨大なケブラー製装甲付きフードです。保温のため、裏地には毛皮を使っています。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "XLサバイバーフード" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "革とケブラーで作った巨大な装甲付きフードです。装着感と保護性能のバランスが取れています。" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "軽量型サバイバーフード" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "布とケブラーで作った、特別仕立ての装甲付きフードです。軽量で、しかも耐久性に優れています。" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "XL軽量型サバイバーフード" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "布とケブラーで作った、特別仕立ての巨大な装甲付きフードです。軽量で、しかも耐久性に優れています。" + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "サバイバー防寒フード(フェイクファー)" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "特別仕立てのケブラー製装甲付きフードです。保温のため、裏地にはフェイクファーを使っています。" + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "XLサバイバー防寒フード(フェイクファー)" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "特別仕立ての巨大なケブラー製装甲付きフードです。保温のため、裏地にはフェイクファーを使っています。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "ダイビングフード" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "ネオプレンとケブラーで作った、特別仕立ての装甲付きフードです。とても強固で頑丈です。" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "スカベンジャーの頭巾" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "防毒マスクと保護メガネが装着された、首元まで覆う頑丈な保護頭巾です。危険な探索作業のための頭巾です。" + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "XLスカベンジャーの頭巾" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "防毒マスクと保護メガネが装着された、首元まで覆う頑丈な保護頭巾です。大柄な人間が危険な探索作業をするための頭巾です。" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "軽量型サバイバーカーゴパンツ" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "できるだけたくさん収納できるように作られた、ケブラー装甲の頑丈な軽量カーゴパンツです。ほぼ完全防水です。" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "XL軽量型サバイバーカーゴパンツ" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" +"できるだけたくさん収納できるように作られた、ケブラー装甲の頑丈な軽量カーゴパンツです。ほぼ完全防水で、一般的なサイズより大きく作られています。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "サバイバーカーゴパンツ" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "ケブラー装甲を施し小物袋やポケットを取り付けた特製のズボンです。頑丈で着心地が良く、着るのも簡単です。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "XLサバイバーカーゴパンツ" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "ケブラー装甲を施し小物袋やポケットを取り付けた、サイズの大きな特製のズボンです。頑丈で着心地が良く、着るのも簡単です。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "サバイバーダスターコート" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "全身を覆う特製のダスターコートです。ケブラーで装甲を施し、収納容積を大幅に増やしました。動きやすく頑丈で、アイテムを大量に収納できます。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "XLサバイバーダスターコート" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "袖無しサバイバーダスターコート" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" +"全身を覆う特製の袖無しダスターコートです。ケブラーで装甲を施し、十分な収納容積を確保しています。動きやすく、頑丈で、アイテムを大量に収納できます。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "サバイバートレンチコート" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "特注のトレンチコートです。ケブラー装甲を施し、小物袋とポケットが取り付けてあります。着心地が良く、丈夫で、収納性にも優れています。" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "袖無しサバイバートレンチコート" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" +"邪魔な袖を取っ払った、特製のトレンチコートです。ケブラー装甲を施し、小物袋とポケットを取り付けてあります。着心地が良く、丈夫で、収納性にも優れています。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "サバイバーダッフルバッグ" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "特製の丈夫な重量型ダッフルバッグです。出来る限りの荷物を詰め込めるように手間を掛けて作られています。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "サバイバーバックパック" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "特製の丈夫なバックパックです。荷物を可能な限り詰め込めるように、手間を掛けて作られています。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "サバイバーリュックサック" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "特製の丈夫な重量型バックパックです。荷物を可能な限り詰め込めるように、手間を掛けて作られています。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "サバイバーランニングバッグ" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "特製の軽量で丈夫なランニング用のバッグです。出来る限りの荷物を詰め込めるように手間を掛けて作られています。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "サバイバー防火ブーツ" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "ケブラーで補強した特別仕立てのレザーブーツです。これを着用していれば、膝まで炎に包まれた状況でも生き延びられます。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "XLサバイバー防火ブーツ" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "重量型サバイバーブーツ" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "鋼鉄で補強した特別仕立てのケブラーブーツです装着感よりも保護性能を重視しており、とりわけ膝までゾンビに浸かった状況で真価を発揮します。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "XL重量型サバイバーブーツ" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "重量型サバイバーグローブ" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "鋼鉄で補強した特別仕立てのケブラー製グローブです。肉体の保護を第一に考えたデザインです。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "XL重量型サバイバーグローブ" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "サバイバー防火グローブ" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" +"ケブラーで補強した特別仕立てのノーメックス製グローブです。大変動以前に消防士が着用していたものを素材として、ポストアポカリプス時代に即した改造を加えました。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "XLサバイバー防火グローブ" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "サバイバー防火フード" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "ノーメックスとケブラーで作った、特別仕立ての装甲付きフードです。丈夫で耐久力に優れています。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "XLサバイバー防火フード" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "ノーメックスとケブラーで作った、特別仕立ての装甲付きフードです。非常に強固で頑丈です。巨人の国で作られたようなサイズです。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "サバイバー防火スーツ" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" +"切り詰めた防弾ベストと補強したノーメックス製の防火ジャンプスーツから作られた、手製の重量型コンビネーションアーマーです。着用者を火災やその他の外的要因から保護します。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "XLサバイバー防火スーツ" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "重量型サバイバースーツ" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" +"補強した防弾ベストと金属板で強化した革製ジャンプスーツから作られた、手製の重量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "XL重量型サバイバースーツ" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" +"補強した防弾ベストと金属板で強化した革製ジャンプスーツから作られた、サイズの大きな手製の重量型コンビネーションアーマーです。天候や攻撃から身体を守ります。" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "軽量型サバイバーボディアーマー" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "ケブラーと丈夫な生地で作られた特製の軽量ボディーアーマーです。ほぼ完全防水です。" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "XL軽量型サバイバーボディアーマー" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "サバイバーベルト" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "アイテムを収納する" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" +"ポーチを備えた特製の革製ベルトです。小型の刃物を収納する鞘と、ハンドガンを収納するホルスター、大型の工具を収納する留め具が付いています。頑丈で身に付けていて疲れないよう丁寧に調整してあります。使用すると武器を収納/装備します。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "サバイバーゴーグル" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "着色レンズが入った特製の装甲付きゴーグルです。快適かつ頑丈で、危険な環境からしっかりと目を保護します。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "サバイバーハーネス" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" +"小型のライフルなどを取り付けられる戦闘用の吊り帯とポーチが付いた特製の軽量ハーネスです。丈夫で着心地が良いように作られています。使用すると銃を収納/装備します。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "XLサバイバーハーネス" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" +"小型のライフルなどを取り付けられる戦闘用の吊り帯とポーチが付いた特製の軽量ハーネスです。丈夫で着心地が良く、大柄な体格にフィットします。使用すると銃を収納/装備します。" + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -20527,7 +20546,7 @@ msgid "impact knuckles" msgid_plural "impact knuckles" msgstr[0] "インパクトナックル" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -20539,7 +20558,7 @@ msgid "skewer knuckles" msgid_plural "skewer knuckles" msgstr[0] "棘付きナックル" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -20692,7 +20711,7 @@ msgid "pair of XL combat boots" msgid_plural "pair of XL combat boots" msgstr[0] "XLコンバットブーツ" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "近代的な強化を施した、特大サイズの戦闘用コンバットブーツです。耐久性に優れています。" @@ -20702,7 +20721,7 @@ msgid "pair of XL tactical gloves" msgid_plural "pair of XL tactical gloves" msgstr[0] "XLタクティカルグローブ" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -20714,7 +20733,7 @@ msgid "pair of Killophant gloves" msgid_plural "pair of Killophant gloves" msgstr[0] "殺人ゾウグローブ" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -20964,7 +20983,7 @@ msgid "psychrophile handling gloves" msgid_plural "psychrophile handling gloves" msgstr[0] "好冷菌取扱グローブ" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -21110,18 +21129,6 @@ msgid "" " ridiculously heavy." msgstr "ネオプレン素材の上に超合金を重ね、更にゴムで絶縁したアームガードです。頑丈で攻撃にもびくともしませんが、とんでもない重量です。" -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "CRITウェブベルト" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "CRITの標準装備のベルトです。ズボンと武器を腰に固定します。" - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -21247,7 +21254,7 @@ msgid "CRIT trousers" msgid_plural "CRIT trousers" msgstr[0] "CRITカーゴパンツ" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -21259,7 +21266,7 @@ msgid "CRIT pants" msgid_plural "CRIT pants" msgstr[0] "CRITドレスパンツ" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -21300,6 +21307,11 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "標準装備の偵察部隊用グローブです。肌にフィットする滑らかな布製で、滑り止めと手を冷やさないネオプレン製の裏地が備わっています。" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "CRITウェブベルト" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -21443,7 +21455,7 @@ msgid "Force Shield" msgid_plural "Force Shield" msgstr[0] "フォース・シールド" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -21901,7 +21913,7 @@ msgid "freerunner's boots" msgid_plural "freerunner's boots" msgstr[0] "フリーランブーツ" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -21970,7 +21982,7 @@ msgid "enchanted parabolan wool blouse" msgid_plural "enchanted parabolan wool blouse" msgstr[0] "高級パラボラブラウス" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -21985,7 +21997,7 @@ msgid "enchanted parabolan wool breeches" msgid_plural "enchanted parabolan wool breeches" msgstr[0] "高級パラボラブリーチェス" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -22014,7 +22026,7 @@ msgid "parabolan wool breeches" msgid_plural "parabolan wool breeches" msgstr[0] "パラボラブリーチェス" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -22068,7 +22080,7 @@ msgid "slick icy coatings" msgid_plural "slick icy coatings" msgstr[0] "薄氷の膜" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -22121,7 +22133,7 @@ msgid "frost armor" msgid_plural "frost armor" msgstr[0] "氷の鎧" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "魔法の氷で作られた薄い層が全身を覆っています。" @@ -22131,7 +22143,7 @@ msgid "stoneskin coating" msgid_plural "stoneskin coating" msgstr[0] "石肌の衣" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -22221,7 +22233,7 @@ msgid "spiritual armor" msgid_plural "spiritual armor" msgstr[0] "聖霊の鎧" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "呪文で作り出された中世風の鎧です。柔らかく光っており、頑丈そうに見えます。" @@ -22231,7 +22243,7 @@ msgid "auroral shell" msgid_plural "auroral shell" msgstr[0] "極光の甲殻" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "全身を頑丈な甲殻で包み込み、防御力を向上させます。" @@ -22310,16 +22322,18 @@ msgid "" msgstr "有効範囲5mのモーションセンサーです。静かに警告してくれます。眠っている時や目に見えないものの感知に役立ちます。" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "CBM: 合金装甲 - 腕" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "CBM: 合金製皮下装甲 - 両腕" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "腕の肉を合金の装甲に置換します。受動的な防御力を提供するほか、CBM格闘術に組み合わせて使用できます。" +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." +msgstr "皮下に高性能装甲メッシュを埋め込みます。常に防御力が向上しますが、動作制限も少し増加します。機甲術の戦闘スタイルと併用できます。" #: lang/json/BIONIC_ITEM_from_json.py msgid "Protective Lenses CBM" @@ -22336,40 +22350,33 @@ msgstr "" "眼窩を保護レンズで覆い、涙管を口内に繋ぎます。目が受けるであろう悪影響を防ぎます。泣いた場合、口の中の涙を吐き出すか飲み込むかすることになります。" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" -msgstr[0] "CBM: 合金装甲 - 頭部" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "CBM: 合金製皮下装甲 - 頭" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." -msgstr "頭部の肉を合金の装甲に置換します。頭と顎とを保護します。" +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." +msgstr "皮下に高性能装甲メッシュを埋め込みます。動作制限が少し増加しますが、頭部から顎までを保護します。" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" -msgstr[0] "CBM: 合金装甲 - 脚" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "CBM: 合金製皮下装甲 - 両脚" -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "脚部の肉を合金の装甲に置換します。受動的な防御力を提供するほか、CBM格闘術に組み合わせて使用できます。" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" -msgstr[0] "CBM: 合金装甲 - 胴体" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "CBM: 合金製皮下装甲 - 胴" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." -msgstr "腹部の肉を合金の装甲に置換し、物理的外傷から保護します。" +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." +msgstr "皮下に高性能装甲メッシュを埋め込みます。動作制限が少し増加しますが、物理的なダメージから胴を保護します。" #: lang/json/BIONIC_ITEM_from_json.py msgid "Battery System CBM" @@ -23059,7 +23066,7 @@ msgid "Power Storage CBM Mk. II" msgid_plural "Power Storage CBM Mk. II" msgstr[0] "CBM: 蓄電装置Mk.II " -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -23474,7 +23481,7 @@ msgid "Squeaky Ankles" msgid_plural "Squeaky Ankles" msgstr[0] "軋む足首" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "軋んで騒音を発生させる欠陥生体部品です。" @@ -23667,7 +23674,7 @@ msgid "Self-Locking Thumbs" msgid_plural "Self-Locking Thumbs" msgstr[0] "親指固着" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "親指が固着してしまう生体部品です。" @@ -24930,7 +24937,7 @@ msgid "knife fighter's notes" msgid_plural "knife fighter's notes" msgstr[0] "本(学習/短剣使いの覚書)" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -25163,7 +25170,7 @@ msgid "plans for a radio repeater mod" msgid_plural "plans for a radio repeater mod" msgstr[0] "本(一般/無線中継モジュール図面)" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -25198,7 +25205,7 @@ msgid "trifacet handling procedures" msgid_plural "trifacet handling procedures" msgstr[0] "本(学習/トリファセット取扱手順)" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -25213,7 +25220,7 @@ msgid "schematics" msgid_plural "schematics" msgstr[0] "開発概要" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -25221,9 +25228,9 @@ msgstr[0] "開発概要" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -25237,7 +25244,7 @@ msgid "nurse bot schematics" msgid_plural "nurse bot schematics" msgstr[0] "本(学習/看護ロボット開発概要)" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -25252,7 +25259,7 @@ msgid "grocery bot schematics" msgid_plural "grocery bot schematics" msgstr[0] "本(学習/配送ロボット開発概要)" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -25267,7 +25274,7 @@ msgid "police bot schematics" msgid_plural "police bot schematics" msgstr[0] "本(学習/警官ロボット開発概要)" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -25281,7 +25288,7 @@ msgid "eyebot schematics" msgid_plural "eyebot schematics" msgstr[0] "本(学習/監視ロボット開発概要)" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -25295,7 +25302,7 @@ msgid "security bot schematics" msgid_plural "security bot schematics" msgstr[0] "本(学習/警備ロボット開発概要)" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -25309,7 +25316,7 @@ msgid "skitterbot schematics" msgid_plural "skitterbot schematics" msgstr[0] "本(学習/高速ロボット開発概要)" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -25323,7 +25330,7 @@ msgid "cleaner bot schematics" msgid_plural "cleaner bot schematics" msgstr[0] "本(学習/掃除ロボット開発概要)" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -25337,7 +25344,7 @@ msgid "miner bot schematics" msgid_plural "miner bot schematics" msgstr[0] "本(学習/採掘ロボット開発概要)" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -25351,7 +25358,7 @@ msgid "riot control bot schematics" msgid_plural "riot control bot schematics" msgstr[0] "本(学習/暴動鎮圧ロボット開発概要)" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -25365,7 +25372,7 @@ msgid "lab defense bot schematics" msgid_plural "lab defense bot schematics" msgstr[0] "本(学習/研究所防衛ロボット開発概要)" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -25379,7 +25386,7 @@ msgid "dispatch schematics" msgid_plural "dispatch schematics" msgstr[0] "本(学習/暴動鎮圧支援ロボット開発概要)" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -25394,7 +25401,7 @@ msgid "military dispatch schematics" msgid_plural "military dispatch schematics" msgstr[0] "本(学習/軍用支援ロボット開発概要)" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -25409,7 +25416,7 @@ msgid "anti-materiel turret schematics" msgid_plural "anti-materiel turret schematics" msgstr[0] "本(学習/対物タレット開発概要)" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -25423,7 +25430,7 @@ msgid "milspec searchlight schematics" msgid_plural "milspec searchlight schematics" msgstr[0] "本(学習/軍用探照灯開発概要)" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -25994,7 +26001,7 @@ msgid "The Spirit of Aikido" msgid_plural "The Spirit of Aikido" msgstr[0] "本(武術/合気道の精神)" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "合気道のコンプリートガイドブックです。" @@ -26004,7 +26011,7 @@ msgid "Practical Pugilism" msgid_plural "Practical Pugilism" msgstr[0] "本(武術/実践的なボクシング)" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -26015,7 +26022,7 @@ msgid "Capoeira 100" msgid_plural "Capoeira 100" msgstr[0] "本(武術/カポエイラの動きと技術100)" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "カポエイラのコンプリートガイドブックです。" @@ -26025,7 +26032,7 @@ msgid "The Centipede Lu Feng" msgid_plural "The Centipede Lu Feng" msgstr[0] "本(武術/五毒門・蜈蚣功の極意)" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "蜈蚣功のコンプリートガイドブックです。" @@ -26035,7 +26042,7 @@ msgid "The Red Crane" msgid_plural "The Red Crane" msgstr[0] "本(武術/紅の鶴形拳)" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "鶴形拳のコンプリートガイドブックです。" @@ -26045,7 +26052,7 @@ msgid "The Jade Dragon" msgid_plural "The Jade Dragon" msgstr[0] "本(武術/翠の龍形拳)" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "龍形拳のコンプリートガイドブックです。" @@ -26055,7 +26062,7 @@ msgid "Practical Eskrima" msgid_plural "Practical Eskrima" msgstr[0] "本(武術/実践的なエスクリマ)" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "エスクリマのコンプリートガイドブックです。" @@ -26065,7 +26072,7 @@ msgid "The Modern Swordsman" msgid_plural "The Modern Swordsman" msgstr[0] "本(武術/現代の剣士)" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "フェンシングのコンプリートガイドブックです。" @@ -26075,7 +26082,7 @@ msgid "Kodokan Judo" msgid_plural "Kodokan Judo" msgstr[0] "本(武術/講道館流柔道)" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "柔道のコンプリートガイドブックです。" @@ -26085,7 +26092,7 @@ msgid "The Shotokan Karate Handbook" msgid_plural "The Shotokan Karate Handbook" msgstr[0] "本(武術/松濤館流空手)" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "空手のコンプリートガイドブックです。" @@ -26095,7 +26102,7 @@ msgid "Complete Krav Maga" msgid_plural "Complete Krav Maga" msgstr[0] "本(武術/クラヴマガコンプリートガイド)" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "グラヴマガのコンプリートガイドブックです。" @@ -26105,7 +26112,7 @@ msgid "The Deaf Leopard" msgid_plural "The Deaf Leopard" msgstr[0] "本(武術/聾の豹形拳)" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "豹形拳のコンプリートガイドブックです。" @@ -26115,7 +26122,7 @@ msgid "The Lizard Kuo Chui" msgid_plural "The Lizard Kuo Chui" msgstr[0] "本(武術/五毒門・壁虎功の極意)" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "壁虎功のコンプリートガイドブックです。" @@ -26125,7 +26132,7 @@ msgid "Ultimate Muay Thai" msgid_plural "Ultimate Muay Thai" msgstr[0] "本(武術/究極のムエタイ)" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "ムエタイのコンプリートガイドブックです。" @@ -26135,7 +26142,7 @@ msgid "Essence of Ninjutsu" msgid_plural "Essence of Ninjutsu" msgstr[0] "本(武術/忍の極意)" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "忍術のコンプリートガイドブックです。" @@ -26145,7 +26152,7 @@ msgid "The Book of Five Rings" msgid_plural "The Book of Five Rings" msgstr[0] "本(武術/五輪書)" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -26157,7 +26164,7 @@ msgid "The Modern Pankratiast" msgid_plural "The Modern Pankratiast" msgstr[0] "本(武術/現代の拳闘士)" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "パンクラチオンのコンプリートガイドブックです。" @@ -26167,7 +26174,7 @@ msgid "The Scorpion Sun Chien" msgid_plural "The Scorpion Sun Chien" msgstr[0] "本(武術/五毒門・蝎子功の極意)" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "蝎子功のコンプリートガイドブックです。" @@ -26177,7 +26184,7 @@ msgid "The Indonesian Warrior" msgid_plural "The Indonesian Warrior" msgstr[0] "本(武術/インドネシアの戦士)" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "プンチャック・シラットのコンプリートガイドブックです。" @@ -26187,7 +26194,7 @@ msgid "The Black Snake" msgid_plural "The Black Snake" msgstr[0] "本(武術/黒の蛇形拳)" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "蛇形拳のコンプリートガイドブックです。" @@ -26197,7 +26204,7 @@ msgid "Official Taekwondo Training Manual" msgid_plural "Official Taekwondo Training Manual" msgstr[0] "本(武術/テコンドー公式鍛錬マニュアル)" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "テコンドーのコンプリートガイドブックです。" @@ -26207,7 +26214,7 @@ msgid "Becoming One with the Tao" msgid_plural "Becoming One with the Tao" msgstr[0] "本(武術/太極拳・タオと調和)" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "太極拳のコンプリートガイドブックです。" @@ -26217,7 +26224,7 @@ msgid "The White Tiger" msgid_plural "The White Tiger" msgstr[0] "本(武術/白の虎形拳)" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "虎形拳のコンプリートガイドブックです。" @@ -26227,7 +26234,7 @@ msgid "The Toad Lo Mang" msgid_plural "The Toad Lo Mang" msgstr[0] "本(武術/五毒門・蛤蟆功の極意) " -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "蛤蟆功のコンプリートガイドブックです。" @@ -26237,7 +26244,7 @@ msgid "The Viper Wei Pai" msgid_plural "The Viper Wei Pai" msgstr[0] "本(武術/五毒門・蛇功の極意)" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "蛇功のコンプリートガイドブックです。" @@ -26247,7 +26254,7 @@ msgid "Zui Quan and You" msgid_plural "Zui Quan and You" msgstr[0] "本(武術/酔拳と貴方)" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "酔拳のコンプリートガイドブックです。" @@ -26257,7 +26264,7 @@ msgid "The Way of the Spear" msgid_plural "The Way of the Spear" msgstr[0] "本(武術/槍の道)" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "槍術のコンプリートガイドブックです。" @@ -26267,7 +26274,7 @@ msgid "Beautiful Springtime" msgid_plural "Beautiful Springtime" msgstr[0] "本(武術/麗しき春を詠む)" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "詠春拳のコンプリートガイドブックです。" @@ -26278,7 +26285,7 @@ msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "西洋長柄武器術" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -26292,7 +26299,7 @@ msgid "Historic European Swordfighting" msgid_plural "Historic European Swordfighting" msgstr[0] "本(武術/伝統的な西洋剣術)" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -26438,7 +26445,7 @@ msgid "Ranch Prospectus" msgid_plural "Ranch Prospectus" msgstr[0] "本(一般/大農園発起書)" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -27260,7 +27267,7 @@ msgid "patient treatment records" msgid_plural "patient treatment records" msgstr[0] "本(一般/医療記録)" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "大量の医療記録です。手術中の様子が詳細に記述されています。" @@ -27270,7 +27277,7 @@ msgid "national weather transcripts" msgid_plural "national weather transcripts" msgstr[0] "本(一般/全国気象情報)" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "過去の気象記録は路傍の石と同じぐらいに興味深いですね。" @@ -30630,7 +30637,7 @@ msgid "chicken walker schematics" msgid_plural "chicken walker schematics" msgstr[0] "本(学習/チキンウォーカー開発概要)" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -30645,7 +30652,7 @@ msgid "diamond press schematics" msgid_plural "diamond press schematics" msgstr[0] "本(学習/ダイヤモンド高圧合成装置開発概要)" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -30660,7 +30667,7 @@ msgid "nano forge schematics" msgid_plural "nano forge schematics" msgstr[0] "本(学習/ナノ加工装置開発概要)" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -30675,7 +30682,7 @@ msgid "tank drone schematics" msgid_plural "tank drone schematics" msgstr[0] "本(学習/無人戦車開発概要)" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -30690,7 +30697,7 @@ msgid "tripod schematics" msgid_plural "tripod schematics" msgstr[0] "本(学習/三脚ロボット開発概要)" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -30921,7 +30928,7 @@ msgid "Scorching Sirocco" msgid_plural "Scorching Sirocco" msgstr[0] "本(武術/灼熱の旋風)" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "この本には「砂漠の旋風」の訓練法が書かれています。" @@ -30931,7 +30938,7 @@ msgid "Perfect Clarity of Mind and Body" msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "本(武術/心身の清澄)" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "この本には「金剛石の心」の訓練法が書かれています。" @@ -30941,7 +30948,7 @@ msgid "The Book of Mudora" msgid_plural "The Book of Mudora" msgstr[0] "本(武術/ムドラの書)" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -30953,7 +30960,7 @@ msgid "Stormguard Warrior" msgid_plural "Stormguard Warrior" msgstr[0] "本(武術/ストームガードの戦士)" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "この本には「鋼の意志」の訓練法が書かれています。" @@ -30963,7 +30970,7 @@ msgid "The Life and Work of Tiger Sauer" msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "本(武術/ティーガー・ザウエルの生涯と功績)" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -30975,7 +30982,7 @@ msgid "Pocket Monster Encyclopedia" msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "本(武術/ポケットモンスター大百科)" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -30988,7 +30995,7 @@ msgid "Distant Horizon" msgid_plural "Distant Horizon" msgstr[0] "本(武術/遠い地平線)" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "この本には「落陽」の訓練法が書かれています。" @@ -30998,7 +31005,7 @@ msgid "Jedi Holocrons: Form I" msgid_plural "Jedi Holocrons: Form I" msgstr[0] "ジェダイ・ホロクロン(フォームI)" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -31010,7 +31017,7 @@ msgid "Shards of Granite" msgid_plural "Shards of Granite" msgstr[0] "本(武術/花崗岩の欠片)" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "この本には「岩龍」の訓練法が書かれています。" @@ -31020,7 +31027,7 @@ msgid "Reaping Talons" msgid_plural "Reaping Talons" msgstr[0] "本(武術/斬り捨てる鉤爪)" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "この本には「虎の爪」の訓練法が書かれています。" @@ -31045,6 +31052,21 @@ msgstr[0] "本(学習/基礎呪文詠唱)" msgid "A beginner textbook on magical theories." msgstr "魔法の理論に関する初級者向けの教科書です。" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "本(学習/ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ)" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" +"馴染みのないルーン文字で書かれた書物です。幸いなことに、銀色の鋳塊から剣を鍛造する過程を示す非常に詳細な挿絵が載っています。鍛冶屋のための教科書のような印象があります。" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -32993,7 +33015,7 @@ msgid "bird litter" msgid_plural "bird litter" msgstr[0] "糞(鳥)" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "羽根やひどく汚れた物体が混ざった、鳥の落とし物です。" @@ -33044,13 +33066,13 @@ msgid "bleach" msgid_plural "bleach" msgstr[0] "漂白剤(塩素)" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "汚れた漂白剤(塩素)" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -33062,7 +33084,7 @@ msgid "ammonia" msgid_plural "ammonia" msgstr[0] "漂白剤(アンモニア)" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -33074,7 +33096,7 @@ msgid "liquid fertilizer" msgid_plural "liquid fertilizer" msgstr[0] "液体肥料" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "植物のための栄養がたっぷり入った液剤です。" @@ -33084,7 +33106,7 @@ msgid "commercial fertilizer" msgid_plural "commercial fertilizer" msgstr[0] "化学肥料" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "植物のための栄養がたっぷり入った粒剤です。" @@ -33094,7 +33116,7 @@ msgid "fungicide" msgid_plural "fungicide" msgstr[0] "殺菌剤" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -33106,7 +33128,7 @@ msgid "insecticide" msgid_plural "insecticide" msgstr[0] "殺虫剤" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -33118,7 +33140,7 @@ msgid "salt water" msgid_plural "salt water" msgstr[0] "塩水" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "塩分を含んだ水です。飲用には適していません。" @@ -33128,7 +33150,7 @@ msgid "soapy water" msgid_plural "soapy water" msgstr[0] "石鹸水" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "石鹸を溶かした水です。飲用には適していません。" @@ -33148,7 +33170,7 @@ msgid "sulfuric acid" msgid_plural "sulfuric acid" msgstr[0] "硫酸" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -33163,7 +33185,7 @@ msgid "hydrochloric acid" msgid_plural "hydrochloric acid" msgstr[0] "塩酸" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -33177,7 +33199,7 @@ msgid "nitric acid" msgid_plural "nitric acid" msgstr[0] "硝酸" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -33209,7 +33231,7 @@ msgid "sewage water" msgid_plural "sewage water" msgstr[0] "下水" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "下水道から採取した、ひどい悪臭を放つ濁った液体です。" @@ -33219,7 +33241,7 @@ msgid "lye" msgid_plural "lye" msgstr[0] "灰汁" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -33231,7 +33253,7 @@ msgid "ether" msgid_plural "ether" msgstr[0] "ジエチルエーテル" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -33246,7 +33268,7 @@ msgid "dimethyl sulfoxide" msgid_plural "dimethyl sulfoxide" msgstr[0] "ジメチルスルホキシド" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -33261,7 +33283,7 @@ msgid "chloroform" msgid_plural "chloroform" msgstr[0] "クロロホルム" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -33274,7 +33296,7 @@ msgid "phenol" msgid_plural "phenol" msgstr[0] "フェノール" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -33290,7 +33312,7 @@ msgid "glycerol" msgid_plural "glycerol" msgstr[0] "グリセリン" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -33302,7 +33324,7 @@ msgid "peptone broth powder" msgid_plural "peptone broth powder" msgstr[0] "ペプトン粉末" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -33316,7 +33338,7 @@ msgid "agar" msgid_plural "agar" msgstr[0] "寒天" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -33331,7 +33353,7 @@ msgid "acrylamide" msgid_plural "acrylamide" msgstr[0] "アクリルアミド" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -33343,7 +33365,7 @@ msgid "acetylene" msgid_plural "acetylene" msgstr[0] "アセチレン" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -33355,7 +33377,7 @@ msgid "formic acid" msgid_plural "formic acid" msgstr[0] "ギ酸" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -33367,7 +33389,7 @@ msgid "latex" msgid_plural "latex" msgstr[0] "ラテックス" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "ある種の植物が分泌するゴムの前駆体です。" @@ -33377,7 +33399,7 @@ msgid "citric acid" msgid_plural "citric acid" msgstr[0] "クエン酸" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -33452,13 +33474,23 @@ msgid "acetic anhydride" msgid_plural "acetic anhydride" msgstr[0] "無水酢酸" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "瓶に入った無水酢酸です。十分な科学知識があれば、この液体を使ってモルヒネをヘロインへと容易に変えられます。" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "液体石鹸" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "液状の石鹸です。" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -33493,7 +33525,7 @@ msgid "marloss wine" msgid_plural "marloss wine" msgstr[0] "ミカズワイン" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "ミカズフルーツから作られた濃厚な白ワインです。" @@ -33503,7 +33535,7 @@ msgid "Riesling" msgid_plural "Riesling" msgstr[0] "ワイン(リースリング)" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "世界で最も高貴な葡萄から作られた発泡性の白ワインです。" @@ -33513,7 +33545,7 @@ msgid "Chardonnay" msgid_plural "Chardonnay" msgstr[0] "ワイン(シャルドネ)" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "米国で最も人気のあるワインです。評判通りのおいしさ。" @@ -33523,7 +33555,7 @@ msgid "Cabernet Sauvignon" msgid_plural "Cabernet Sauvignon" msgstr[0] "ワイン(カベルネ・ソービニヨン)" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -33535,7 +33567,7 @@ msgid "pinot noir" msgid_plural "pinot noir" msgstr[0] "ワイン(ピノ・ノワール)" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -33547,7 +33579,7 @@ msgid "marsala" msgid_plural "marsala" msgstr[0] "ワイン(マルサラ)" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "イタリア料理レストランで一般的に提供されるワインです。" @@ -33557,7 +33589,7 @@ msgid "vermouth" msgid_plural "vermouth" msgstr[0] "ワイン(ベルモット)" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -33569,7 +33601,7 @@ msgid "barley wine" msgid_plural "barley wine" msgstr[0] "ビール(バーレーワイン)" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "度数の高いエールです。" @@ -33579,7 +33611,7 @@ msgid "whiskey" msgid_plural "whiskey" msgstr[0] "ウイスキー" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -33590,7 +33622,7 @@ msgid "vodka" msgid_plural "vodka" msgstr[0] "ウォッカ" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -33602,7 +33634,7 @@ msgid "gin" msgid_plural "gin" msgstr[0] "ジン" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -33614,7 +33646,7 @@ msgid "rum" msgid_plural "rum" msgstr[0] "ラム酒" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -33626,7 +33658,7 @@ msgid "tequila" msgid_plural "tequila" msgstr[0] "テキーラ" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -33638,7 +33670,7 @@ msgid "triple sec" msgid_plural "triple sec" msgstr[0] "トリプルセック" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "オレンジ風味のリキュールは、多くのミックスドリンクに使用されます。" @@ -33648,7 +33680,7 @@ msgid "cheap wine" msgid_plural "cheap wine" msgstr[0] "安物ワイン" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "非常に安価な酒精強化ワインです。" @@ -33658,7 +33690,7 @@ msgid "strong mixed alcohol" msgid_plural "strong mixed alcohol" msgstr[0] "混合アルコール(強)" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "度数の高い酒類を、味などお構いなしに混合した飲み物です。" @@ -33668,7 +33700,7 @@ msgid "weak mixed alcohol" msgid_plural "weak mixed alcohol" msgstr[0] "混合アルコール(弱)" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "度数の低い酒類を、味などお構いなしに混合した飲み物です。" @@ -33678,7 +33710,7 @@ msgid "fruit wine" msgid_plural "fruit wine" msgstr[0] "果実酒" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -33689,7 +33721,7 @@ msgid "brandy" msgid_plural "brandy" msgstr[0] "ブランデー" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -33701,7 +33733,7 @@ msgid "Irish coffee" msgid_plural "Irish coffee" msgstr[0] "アイリッシュ・コーヒー" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -33713,7 +33745,7 @@ msgid "Long Island iced tea" msgid_plural "Long Island iced tea" msgstr[0] "ロングアイランド・アイスティー" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -33739,7 +33771,7 @@ msgid "wild apple" msgid_plural "wild apple" msgstr[0] "ワイルドアップル" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "アップルサイダー風味のウォッカです。" @@ -33749,7 +33781,7 @@ msgid "rum & cola" msgid_plural "rum & cola" msgstr[0] "ラムコーク" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "南国の別荘やカナダ人の芸術家によく似合います。" @@ -33759,7 +33791,7 @@ msgid "beer" msgid_plural "beer" msgstr[0] "ビール" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -33771,7 +33803,7 @@ msgid "spiced mead" msgid_plural "spiced mead" msgstr[0] "スパイスミード" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -33782,7 +33814,7 @@ msgid "dandelion wine" msgid_plural "dandelion wine" msgstr[0] "タンポポ酒" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -33794,7 +33826,7 @@ msgid "burdock wine" msgid_plural "burdock wine" msgstr[0] "ゴボウワイン" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "ゴボウの根から作られた、口当たりが軽く美味しいワインです。ほのかな甘みがあります。" @@ -33804,7 +33836,7 @@ msgid "pine wine" msgid_plural "pine wine" msgstr[0] "松脂ワイン" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -33816,7 +33848,7 @@ msgid "homebrew beer" msgid_plural "homebrew beer" msgstr[0] "自家醸造ビール" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "最上の飲み物ではないでしょうが、ほら、ガロン単位のアルコールだよ。" @@ -33826,7 +33858,7 @@ msgid "moonshine" msgid_plural "moonshine" msgstr[0] "密造酒" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -33839,7 +33871,7 @@ msgid "European pilsner" msgid_plural "European pilsner" msgstr[0] "ビール(ヨーロピアンピルスナー)" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -33851,7 +33883,7 @@ msgid "American pale ale" msgid_plural "American pale ale" msgstr[0] "ビール(アメリカンペールエール)" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -33863,7 +33895,7 @@ msgid "India pale ale" msgid_plural "India pale ale" msgstr[0] "ビール(インディアペールエール)" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -33875,7 +33907,7 @@ msgid "stout" msgid_plural "stout" msgstr[0] "ビール(スタウト)" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "味わい深い地ビールです。まるでこれからの未来を暗示するかのような暗色をしています。" @@ -33885,7 +33917,7 @@ msgid "Belgian ale" msgid_plural "Belgian ale" msgstr[0] "ビール(ベルジャンエール)" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -33897,7 +33929,7 @@ msgid "imperial stout" msgid_plural "imperial stout" msgstr[0] "ビール(インペリアルスタウト)" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -33936,7 +33968,7 @@ msgid "single malt whiskey" msgid_plural "single malt whiskey" msgstr[0] "ウイスキー(シングルモルト)" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "それぞれの蒸留所で作られた最上のウイスキーをその場で瓶詰めしたものが、シングルモルト・ウイスキーです。" @@ -33946,7 +33978,7 @@ msgid "single pot still Irish whiskey" msgid_plural "single pot still Irish whiskey" msgstr[0] "ウイスキー(アイリッシュ)" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "大麦の麦芽と生大麦を混合したマッシュから作ったウイスキーです。" @@ -33956,7 +33988,7 @@ msgid "cheap whiskey" msgid_plural "cheap whiskey" msgstr[0] "ウイスキー(安物)" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "非常に安価なブレンデッドウイスキーです。" @@ -33966,7 +33998,7 @@ msgid "Canadian whiskey" msgid_plural "Canadian whiskey" msgstr[0] "ウイスキー(カナディアン)" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "トウモロコシとライ麦のマッシュから作った酒です。" @@ -33976,7 +34008,7 @@ msgid "sherry" msgid_plural "sherry" msgstr[0] "ワイン(シェリー)" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -33987,7 +34019,7 @@ msgid "Bristol Cream" msgid_plural "Bristol Cream" msgstr[0] "ワイン(ブリストル・クリーム)" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -33999,7 +34031,7 @@ msgid "Madeira wine" msgid_plural "Madeira wine" msgstr[0] "マデイラワイン" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "マデイラ島産の酒精強化ワインです。英国海軍のための真の酒です。" @@ -34009,7 +34041,7 @@ msgid "fancy hobo" msgid_plural "fancy hobo" msgstr[0] "ファンシーホーボー" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "まるで浮浪者が飲む酒のような味です。" @@ -34019,7 +34051,7 @@ msgid "kalimotxo" msgid_plural "kalimotxo" msgstr[0] "カリモーチョ" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -34031,7 +34063,7 @@ msgid "bee's knees" msgid_plural "bee's knees" msgstr[0] "ビーズニーズ" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -34116,7 +34148,7 @@ msgid "hard seltzer" msgid_plural "hard seltzer" msgstr[0] "ハードセルツァー" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "アルコール入り炭酸水です。暑い夏の日の飲み物はこれに限ります。" @@ -34126,7 +34158,7 @@ msgid "pumpkin muffin" msgid_plural "pumpkin muffin" msgstr[0] "カボチャマフィン" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "カボチャを使ったマフィンです。秋のごちそうにぴったりですね。" @@ -34136,7 +34168,7 @@ msgid "donut holes" msgid_plural "donut holes" msgstr[0] "ドーナツボール" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -34148,7 +34180,7 @@ msgid "sourdough bread" msgid_plural "sourdough bread" msgstr[0] "サワーブレッド" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -34160,7 +34192,7 @@ msgid "flatbread" msgid_plural "flatbread" msgstr[0] "フラットブレッド" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "無発酵のシンプルなパンです。" @@ -34170,7 +34202,7 @@ msgid "bread" msgid_plural "bread" msgstr[0] "パン" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "ヘルシーで食べ応えがあります。" @@ -34180,7 +34212,7 @@ msgid "toast" msgid_plural "toast" msgstr[0] "トースト" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -34192,7 +34224,7 @@ msgid "buttered toast" msgid_plural "buttered toast" msgstr[0] "バタートースト" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "トーストにバターを塗ったら更に美味しくなりました。" @@ -34202,7 +34234,7 @@ msgid "jam toast" msgid_plural "jam toast" msgstr[0] "ジャムトースト" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -34214,7 +34246,7 @@ msgid "peanut butter toast" msgid_plural "peanut butter toast" msgstr[0] "ピーナッツバタートースト" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -34225,7 +34257,7 @@ msgid "toad in a hole" msgid_plural "toad in a hole" msgstr[0] "エッグトースト" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "パンの上に卵をのせてトーストしました。" @@ -34235,7 +34267,7 @@ msgid "PBJ Toast" msgid_plural "PBJ Toast" msgstr[0] "PBJトースト" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -34247,7 +34279,7 @@ msgid "cornbread" msgid_plural "cornbread" msgstr[0] "コーンブレッド" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "ヘルシーで食べ応えのあるコーンブレッドです。" @@ -34277,7 +34309,7 @@ msgid "hardtack" msgid_plural "hardtack" msgstr[0] "乾パン" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -34299,21 +34331,21 @@ msgid "wastebread" msgid_plural "wastebread" msgstr[0] "廃棄パン" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" " to mix it with leftovers of other ingredients and bake it all into bread. " "It's filling, and that's what matters." msgstr "" -"今や穀粉は貴重な生産物です。よって節約しなければなりません。そこで残飯や生ゴミを漁り、使えそうなものを集めて、小麦粉を混ぜて捏ね、パンのように焼くことにしました。腹の足しになります。そこが重要なのです。" +"今や穀粉は貴重な生産物です。よって節約しなければなりません。そこで残飯や生ゴミを漁り、使えそうなものを集めて、穀粉を混ぜて捏ね、パンのように焼くことにしました。腹の足しになります。そこが重要なのです。" #: lang/json/COMESTIBLE_from_json.py msgid "brown bread" msgid_plural "brown bread" msgstr[0] "ブラウンブレッド" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "ケーキのように甘いパンです。" @@ -34323,7 +34355,7 @@ msgid "hallula" msgid_plural "hallula" msgstr[0] "アジュージャ" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -34566,18 +34598,18 @@ msgid "malting grain" msgid_plural "malting grain" msgstr[0] "発芽穀物(浸漬中)" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "穀物を水に浸してしばらく置くと、発芽穀物になりました。" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "穀物はまだ発芽していません。" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "醸造に使うために水分に浸してある植物です。" @@ -34587,8 +34619,8 @@ msgid "malted grain" msgid_plural "malted grain" msgstr[0] "発芽穀物" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -34600,14 +34632,14 @@ msgid "soaking dandelion" msgid_plural "soaking dandelion" msgstr[0] "タンポポエキス(浸漬中)" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "湯に浸したタンポポからエキスが十分に抽出されており、ワインを作ることができます。" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "タンポポエキスはもう少し置いておく必要があります。" @@ -34617,7 +34649,7 @@ msgid "soaked dandelion" msgid_plural "soaked dandelion" msgstr[0] "タンポポエキス" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "タンポポワインの材料となる、湯に浸したタンポポです。" @@ -34642,7 +34674,7 @@ msgid "cooked fish" msgid_plural "cooked fish" msgstr[0] "魚(調理済)" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "調理を施した新鮮な魚です。栄養が豊富です。" @@ -34735,7 +34767,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "新鮮な肉の塊です。生食も可能ですが、調理した方が良さそうです。" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "生物から抽出された新鮮な血液です。" @@ -34832,7 +34864,7 @@ msgid "mutant blood" msgid_plural "mutant blood" msgstr[0] "変異血液" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "ひどく変異した生物から抽出された新鮮な血液です。" @@ -34869,7 +34901,7 @@ msgid "mutant human blood" msgid_plural "mutant human blood" msgstr[0] "人間の変異血液" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "ひどく変異した人間から抽出された新鮮な血液です。" @@ -34911,7 +34943,7 @@ msgid "butchery refuse" msgid_plural "butchery refuse" msgstr[0] "廃棄部位" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -34990,7 +35022,7 @@ msgid "cooked offal" msgid_plural "cooked offal" msgstr[0] "臓物(調理済)" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -35003,7 +35035,7 @@ msgid "mutant organs" msgid_plural "mutant organs" msgstr[0] "変異臓物" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "巨大な突然変異体の昆虫から採取された臓器です。" @@ -35013,7 +35045,7 @@ msgid "pickled offal" msgid_plural "pickled offal" msgstr[0] "臓物(酢漬け)" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -35026,7 +35058,7 @@ msgid "canned offal" msgid_plural "canned offal" msgstr[0] "臓物(保存食)" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -35058,28 +35090,25 @@ msgid "meat jerky" msgid_plural "meat jerky" msgstr[0] "ミートジャーキー" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "人肉ジャーキー" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "亜人肉ジャーキー" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "変異肉ジャーキー" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -35090,7 +35119,7 @@ msgid "salted fish" msgid_plural "salted fish" msgstr[0] "魚(塩漬け)" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -35101,31 +35130,25 @@ msgid "smoked meat" msgid_plural "smoked meats" msgstr[0] "肉(燻製)" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "人肉(燻製)" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "亜人肉(燻製)" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -35144,7 +35167,7 @@ msgid "smoked fish" msgid_plural "smoked fish" msgstr[0] "魚(燻製)" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -35193,7 +35216,7 @@ msgid "mutant lungs" msgid_plural "mutant lungs" msgstr[0] "変異肺" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "恐らく肺組織だと考えられます。" @@ -35240,7 +35263,7 @@ msgid "raw brains" msgid_plural "raw brains" msgstr[0] "脳" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "動物の脳です。生では食べたくありませんね..." @@ -35250,7 +35273,7 @@ msgid "cooked brains" msgid_plural "cooked brains" msgstr[0] "脳(調理済)" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -35321,7 +35344,7 @@ msgstr[0] "シビレ(調理済)" msgid "Normally a delicacy, it needs a little… something." msgstr "中々の珍味ですが、少し...物足りない味です。" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "恐らくは人間の血液です。気持ち悪いですね!" @@ -35463,7 +35486,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "明らかに身体に害がありそうな肉です。食べることも不可能ではありませんが、有毒です。" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -35694,7 +35717,7 @@ msgid "alien fronds" msgid_plural "alien fronds" msgstr[0] "異界葉状体" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -35793,7 +35816,7 @@ msgid "demihuman flesh" msgid_plural "demihuman flesh" msgstr[0] "亜人肉" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "亜人から切り落とされた肉片です。" @@ -35803,7 +35826,7 @@ msgid "demihuman blood" msgid_plural "demihuman blood" msgstr[0] "亜人血液" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "亜人から抽出された新鮮な血液です。" @@ -35839,12 +35862,34 @@ msgid "" "appetizing." msgstr "茹でた小さな亜人の胃です。味以外は問題ありません。" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "ミートフライ" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "人肉フライ" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "亜人肉フライ" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "油で揚げた美味しい肉です。" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "コーンキャセロール" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -35858,7 +35903,7 @@ msgid "fish noodle casserole" msgid_plural "fish noodle casserole" msgstr[0] "フィッシュキャセロール" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -35870,7 +35915,7 @@ msgid "cereal" msgid_plural "cereal" msgstr[0] "シリアル" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "箱に入った汎用シリアルです。見てはいけません。" @@ -35880,7 +35925,7 @@ msgid "Foodplace cereal" msgid_plural "Foodplace cereal" msgstr[0] "シリアル(フードプレイス)" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -35891,7 +35936,7 @@ msgid "Snicker-Snacks cereal" msgid_plural "Snicker-Snacks cereal" msgstr[0] "シリアル(スニッカースナック)" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -35903,7 +35948,7 @@ msgid "Carpenter Crunch cereal" msgid_plural "Carpenter Crunch cereal" msgstr[0] "シリアル(カーペンタークランチ)" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -35915,7 +35960,7 @@ msgid "Brantastic cereal" msgid_plural "Brantastic cereal" msgstr[0] "シリアル(ブランタスティック)" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -35927,7 +35972,7 @@ msgid "Sugar Chomps cereal" msgid_plural "Sugar Chomps cereal" msgstr[0] "シリアル(シュガーチョンプス)" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -35940,7 +35985,7 @@ msgid "Honey Pellet cereal" msgid_plural "Honey Pellet cereal" msgstr[0] "シリアル(ハニーペレット)" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -35964,7 +36009,7 @@ msgid "Foodios cereal" msgid_plural "Foodios cereal" msgstr[0] "シリアル(フーディオス)" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "フードプレイスブランドのシリアルです。フーディオス™はフーデリシャス™!" @@ -35986,7 +36031,7 @@ msgid "wheat cereal" msgid_plural "wheat cereal" msgstr[0] "シリアル(小麦)" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -36008,7 +36053,7 @@ msgid "milk" msgid_plural "milk" msgstr[0] "牛乳" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "子牛の飲み物ですが、成人にも適しています。腐りやすい飲み物です。" @@ -36018,7 +36063,7 @@ msgid "chocolate milk" msgid_plural "chocolate milk" msgstr[0] "チョコミルク" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "子牛の飲み物ですが、チョコレートが入っており成人にも適しています。腐りやすい飲み物です。" @@ -36028,7 +36073,7 @@ msgid "reconstituted milk" msgid_plural "reconstituted milk" msgstr[0] "還元牛乳" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -36040,7 +36085,7 @@ msgid "raw milk" msgid_plural "raw milk" msgstr[0] "生乳" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -36055,7 +36100,7 @@ msgid "shelf stable milk" msgid_plural "shelf stable milk" msgstr[0] "ロングライフ牛乳" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -36068,7 +36113,7 @@ msgid "evaporated milk" msgid_plural "evaporated milk" msgstr[0] "無糖練乳" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -36079,7 +36124,7 @@ msgid "buttermilk" msgid_plural "buttermilk" msgstr[0] "バターミルク" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -36101,7 +36146,7 @@ msgid "butter" msgid_plural "butter" msgstr[0] "バター" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -36112,7 +36157,7 @@ msgid "raw butter" msgid_plural "raw butter" msgstr[0] "ローバター" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -36123,7 +36168,7 @@ msgid "ghee" msgid_plural "ghee" msgstr[0] "澄ましバター" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -36157,7 +36202,7 @@ msgid "hard cheese" msgid_plural "hard cheese" msgstr[0] "ハードチーズ" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -36169,7 +36214,7 @@ msgid "cheese" msgid_plural "cheese" msgstr[0] "チーズ" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "黄色いプロセスチーズの塊です。" @@ -36189,7 +36234,7 @@ msgid "powdered milk" msgid_plural "powdered milk" msgstr[0] "粉ミルク" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "牛乳の水分を取り除き粉状にしたものです。水と混ぜることで牛乳を作れます。" @@ -36199,7 +36244,7 @@ msgid "condensed milk" msgid_plural "condensed milk" msgstr[0] "コンデンスミルク" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -36211,7 +36256,7 @@ msgid "whipped cream" msgid_plural "whipped cream" msgstr[0] "ホイップクリーム" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -36223,7 +36268,7 @@ msgid "heavy cream" msgid_plural "heavy cream" msgstr[0] "生クリーム" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "寝かせた生乳から乳脂肪だけを取り出して作ったクリームです。" @@ -36233,7 +36278,7 @@ msgid "apple cider" msgid_plural "apple cider" msgstr[0] "アップルサイダー" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "リンゴの果汁で作られたサイダーです。美味しく栄養も豊富です。" @@ -36269,7 +36314,7 @@ msgid "atomic coffee" msgid_plural "atomic coffee" msgstr[0] "アトミックコーヒー" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -36283,7 +36328,7 @@ msgid "bee balm tea" msgid_plural "bee balm tea" msgstr[0] "ビーバームティー" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -36305,7 +36350,7 @@ msgid "chai tea" msgid_plural "chai tea" msgstr[0] "チャイ" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "紅茶にミルクと香辛料を加えた南アジアの伝統的な飲み物です。" @@ -36315,7 +36360,7 @@ msgid "chamomile tea" msgid_plural "chamomile tea" msgstr[0] "カモミールティー" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -36339,7 +36384,7 @@ msgid "coffee" msgid_plural "coffee" msgstr[0] "コーヒー" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -36353,7 +36398,7 @@ msgid "coffee substitute" msgid_plural "coffee substitute" msgstr[0] "代用コーヒー" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -36367,7 +36412,7 @@ msgid "chicory brew" msgid_plural "chicory brew" msgstr[0] "チコリコーヒー" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -36431,7 +36476,7 @@ msgid "dandelion tea" msgid_plural "dandelion tea" msgstr[0] "タンポポティー" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "タンポポの根をお湯で煎じた健康飲料です。" @@ -36441,7 +36486,7 @@ msgid "dandelion and burdock tea" msgid_plural "dandelion and burdock tea" msgstr[0] "タンポポゴボウティー" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -36495,7 +36540,7 @@ msgid "herbal tea" msgid_plural "herbal tea" msgstr[0] "ハーブティー" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "ハーブをお湯で煎じた健康飲料です。" @@ -36505,7 +36550,7 @@ msgid "hot chocolate" msgid_plural "hot chocolate" msgstr[0] "ホットショコラ" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -36549,7 +36594,7 @@ msgid "lemonade" msgid_plural "lemonade" msgstr[0] "レモネード" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -36573,7 +36618,7 @@ msgid "lotus tea" msgid_plural "lotus tea" msgstr[0] "ロータスティー" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "スイレンの花をお湯で煎じた健康飲料です。" @@ -36583,7 +36628,7 @@ msgid "Mexican hot chocolate" msgid_plural "Mexican hot chocolate" msgstr[0] "メキシカンホットショコラ" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -36640,7 +36685,7 @@ msgid "pine needle tea" msgid_plural "pine needle tea" msgstr[0] "松葉ティー" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -36676,7 +36721,7 @@ msgid "root beer" msgid_plural "root beer" msgstr[0] "ルートビア" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "コーラに似ていますが、カフェインを含んでいない飲料です。しかし、健康な飲料とは言い難いでしょうね。" @@ -36710,13 +36755,13 @@ msgid "spurge tea" msgid_plural "spurge tea" msgstr[0] "スパージティー" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "少なくともしばらくの間は、喘息発作の心配はなくなりました。" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -36740,7 +36785,7 @@ msgid "sweet water" msgid_plural "sweet water" msgstr[0] "甘水" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "砂糖や蜂蜜を加えた水です。それなりの味ですよ。" @@ -36762,7 +36807,7 @@ msgid "willowbark tea" msgid_plural "willowbark tea" msgstr[0] "ヤナギ樹皮茶" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -36796,7 +36841,7 @@ msgid "water" msgid_plural "water" msgstr[0] "水" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -36808,7 +36853,7 @@ msgid "clean water" msgid_plural "clean water" msgstr[0] "飲料水" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "新鮮で清潔な水は喉の渇きを癒すのにぴったりです。" @@ -36818,7 +36863,7 @@ msgid "mineral water" msgid_plural "mineral water" msgstr[0] "ミネラルウォーター" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "特別なボトルに入った上質な天然水です。上質な水を持っていると、何だか特別な気分になりますね。" @@ -36940,7 +36985,7 @@ msgid "maple sap" msgid_plural "maple sap" msgstr[0] "カエデの樹液" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "カエデの木から抽出した甘い液体です。" @@ -36950,7 +36995,7 @@ msgid "mayonnaise" msgid_plural "mayonnaise" msgstr[0] "マヨネーズ" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -36973,7 +37018,7 @@ msgid "mustard" msgid_plural "mustard" msgstr[0] "マスタード" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -36985,7 +37030,7 @@ msgid "forest honey" msgid_plural "forest honey" msgstr[0] "純粋蜂蜜" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -36997,7 +37042,7 @@ msgid "vinegar" msgid_plural "vinegar" msgstr[0] "食用酢" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -37009,7 +37054,7 @@ msgid "vegetable cooking oil" msgid_plural "vegetable cooking oil" msgstr[0] "植物性調理油" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "調理に使用される淡黄色の植物油です。" @@ -37019,7 +37064,7 @@ msgid "animal cooking oil" msgid_plural "animal cooking oil" msgstr[0] "動物性調理油" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "調理に使用される淡黄色の動物油です。" @@ -37029,7 +37074,7 @@ msgid "molasses" msgid_plural "molasses" msgstr[0] "糖蜜" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -37041,7 +37086,7 @@ msgid "horseradish" msgid_plural "horseradish" msgstr[0] "ホースラディッシュ" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "刺激的な味がする植物の根を簡単に切り分けて、酢と塩で漬け込んであります。" @@ -37051,7 +37096,7 @@ msgid "coffee syrup" msgid_plural "coffee syrup" msgstr[0] "コーヒーシロップ" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -37123,7 +37168,7 @@ msgstr "コマドリが産んだ栄養価の高い卵です。" #: lang/json/COMESTIBLE_from_json.py msgid "sparrow egg" msgid_plural "sparrow eggs" -msgstr[0] "卵(ツバメ)" +msgstr[0] "卵(スズメ)" #: lang/json/COMESTIBLE_from_json.py msgid "duck egg" @@ -37358,7 +37403,7 @@ msgid "scrambled eggs" msgid_plural "scrambled eggs" msgstr[0] "スクランブルエッグ" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "ふわふわで美味しそうなスクランブルエッグです。" @@ -37378,7 +37423,7 @@ msgid "fried eggs" msgid_plural "fried eggs" msgstr[0] "目玉焼き" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -37390,7 +37435,7 @@ msgid "deluxe fried eggs" msgid_plural "deluxe fried eggs" msgstr[0] "DX目玉焼き" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -37402,7 +37447,7 @@ msgid "fried egg sandwich" msgid_plural "fried egg sandwich" msgstr[0] "サンドイッチ(目玉焼き)" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -37414,7 +37459,7 @@ msgid "deluxe fried egg sandwich" msgid_plural "deluxe fried egg sandwich" msgstr[0] "サンドイッチ(DX目玉焼き)" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -37592,7 +37637,7 @@ msgid "frozen yogurt" msgid_plural "frozen yogurt" msgstr[0] "フローズンヨーグルト" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -37656,7 +37701,7 @@ msgid "peaches in syrup" msgid_plural "peaches in syrup" msgstr[0] "モモのシロップ漬け" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "あっさりしたシロップに漬け込まれた薄切りの黄桃です。" @@ -37676,7 +37721,7 @@ msgid "lemonade drink mix" msgid_plural "lemonade drink mix" msgstr[0] "レモネードパウダー" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -37708,7 +37753,7 @@ msgid "dehydrated fruit" msgid_plural "dehydrated fruit" msgstr[0] "ドライフルーツ" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -37721,7 +37766,7 @@ msgid "rehydrated fruit" msgid_plural "rehydrated fruit" msgstr[0] "水で戻した果物" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -37744,7 +37789,7 @@ msgid "canned fruit" msgid_plural "canned fruit" msgstr[0] "果物(保存食)" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -37757,7 +37802,7 @@ msgid "pumpkin yeast bread" msgid_plural "pumpkin yeast bread" msgstr[0] "カボチャパン" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -37779,7 +37824,7 @@ msgid "irradiated rose hips" msgid_plural "irradiated rose hips" msgstr[0] "ローズヒップ(照射)" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -38139,7 +38184,7 @@ msgid "irradiated broccoli" msgid_plural "irradiated broccoli" msgstr[0] "ブロッコリー(照射)" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -38187,7 +38232,7 @@ msgid "irradiated corn" msgid_plural "irradiated corn" msgstr[0] "トウモロコシ(照射)" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -38235,7 +38280,7 @@ msgid "irradiated celery" msgid_plural "irradiated celery" msgstr[0] "セロリ(照射)" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -38247,7 +38292,7 @@ msgid "irradiated rhubarb" msgid_plural "irradiated rhubarb" msgstr[0] "ルバーブ(照射)" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -38348,12 +38393,12 @@ msgid "potato chips" msgid_plural "potato chips" msgstr[0] "ポテトチップス" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "ごく普通の塩味のポテトチップスです。" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "何てこった!これ、大好物なんだ!やったね!" @@ -38363,7 +38408,7 @@ msgid "popcorn kernels" msgid_plural "popcorn kernels" msgstr[0] "ポップコーン粒" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -38375,7 +38420,7 @@ msgid "popcorn" msgid_plural "popcorn" msgstr[0] "ポップコーン" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -38387,7 +38432,7 @@ msgid "salted popcorn" msgid_plural "salted popcorn" msgstr[0] "ポップコーン(塩)" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "塩を加えたポップコーンです。" @@ -38397,7 +38442,7 @@ msgid "buttered popcorn" msgid_plural "buttered popcorn" msgstr[0] "ポップコーン(バター)" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "バターが薄くコーティングされたポップコーンです。" @@ -38407,7 +38452,7 @@ msgid "pretzels" msgid_plural "pretzels" msgstr[0] "プレッツェル" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "塩味のスナック菓子です。" @@ -38437,7 +38482,7 @@ msgid "marshmallows" msgid_plural "marshmallows" msgstr[0] "マシュマロ" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "ぷにぷにで、ふわふわとした、ふっくらと美味しいマシュマロです。" @@ -38447,7 +38492,7 @@ msgid "s'mores" msgid_plural "s'mores" msgstr[0] "スモア" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -38479,7 +38524,7 @@ msgid "chewy candy" msgid_plural "chewy candy" msgstr[0] "飴(フルーツ)" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "フルーツ味のカラフルなチューイングキャンディです。" @@ -38489,12 +38534,12 @@ msgid "gummy candy" msgid_plural "gummy candy" msgstr[0] "飴(グミ)" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "フルーツ味とソーダ味のカラフルなグミキャンディです。" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -38538,7 +38583,7 @@ msgid "powder candy sticks" msgid_plural "powder candy sticks" msgstr[0] "パウダーキャンディスティック" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -38607,7 +38652,7 @@ msgid "maple syrup" msgid_plural "maple syrup" msgstr[0] "メープルシロップ" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -38619,7 +38664,7 @@ msgid "sugar beet syrup" msgid_plural "sugar beet syrup" msgstr[0] "サトウダイコンシロップ" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -38666,7 +38711,7 @@ msgid "fast-food French fries" msgid_plural "fast-food French fries" msgstr[0] "即席フライドポテト" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "ファーストフード店のフライドポテトです。どういう訳かまだ食べられるようです。" @@ -38676,7 +38721,7 @@ msgid "French fries" msgid_plural "French fries" msgstr[0] "フライドポテト" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "しっかり揚げて塩をまぶしたポテトです。カリカリとして美味しいです。" @@ -38696,7 +38741,7 @@ msgid "Necco wafers" msgid_plural "Necco wafers" msgstr[0] "ラムネ菓子" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -38720,8 +38765,8 @@ msgid "caramel" msgid_plural "caramel" msgstr[0] "カラメル" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "カラメルです。健康にはよくありません。" @@ -38731,7 +38776,7 @@ msgid "caramel apple" msgid_plural "caramel apple" msgstr[0] "キャラメルアップル" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "やめられない、止まらない。" @@ -38741,7 +38786,7 @@ msgid "tortilla chips" msgid_plural "tortilla chips" msgstr[0] "トルティーヤチップス" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -38753,7 +38798,7 @@ msgid "cheese nachos" msgid_plural "cheese nachos" msgstr[0] "ナチョス(チーズ)" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -38765,28 +38810,25 @@ msgid "meat nachos" msgid_plural "meat nachos" msgstr[0] "ナチョス(肉)" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "ナチョス(人肉)" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "ナチョス(亜人肉)" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "ナチョス(変異肉)" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -38798,28 +38840,28 @@ msgid "meat nachos with cheese" msgid_plural "meat nachos with cheese" msgstr[0] "ナチョス(肉とチーズ)" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "ナチョス(人肉とチーズ)" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "ナチョス(亜人肉とチーズ)" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "ナチョス(変異肉とチーズ)" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -38831,7 +38873,7 @@ msgid "vegetarian nachos" msgid_plural "vegetarian nachos" msgstr[0] "ナチョス(豆)" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -38843,7 +38885,7 @@ msgid "vegetarian nachos with cheese" msgid_plural "vegetarian nachos with cheese" msgstr[0] "ナチョス(豆とチーズ)" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -38913,7 +38955,7 @@ msgid "chili dogs" msgid_plural "chili dogs" msgstr[0] "チリドッグ" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "ホットドッグにトッピングとしてチリコンカルネを添えました。旨い!" @@ -38923,7 +38965,7 @@ msgid "uncooked corn dogs" msgid_plural "uncooked corn dogs" msgstr[0] "アメリカンドッグ(未調理)" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -38993,7 +39035,7 @@ msgid "cheese fries" msgid_plural "cheese fries" msgstr[0] "チーズフライドポテト" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "美味しいチーズがかかったフライドポテトです。" @@ -39074,8 +39116,7 @@ msgid "candy-coated peanuts" msgid_plural "candy-coated peanuts" msgstr[0] "シュガーピーナッツ" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -39210,30 +39251,24 @@ msgid "raw sausage" msgid_plural "raw sausages" msgstr[0] "生ソーセージ" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "生人肉ソーセージ" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "生亜人肉ソーセージ" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -39250,14 +39285,13 @@ msgid "smoked sausage" msgid_plural "smoked sausages" msgstr[0] "ソーセージ(燻製)" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "人肉ソーセージ(燻製)" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -39274,14 +39308,13 @@ msgid "cooked sausage" msgid_plural "cooked sausages" msgstr[0] "ソーセージ(調理済)" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "人肉ソーセージ(調理済)" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -39308,21 +39341,19 @@ msgid "bratwurst" msgid_plural "bratwursts" msgstr[0] "ブラートヴォルスト" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "人肉ブラートヴォルスト" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "亜人肉ブラートヴォルスト" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -39341,7 +39372,7 @@ msgid "royal beef" msgid_plural "royal beef" msgstr[0] "ローヤルビーフ" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -39388,7 +39419,7 @@ msgid "cracklins" msgid_plural "cracklins" msgstr[0] "クラックリング" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -39400,15 +39431,14 @@ msgid "glazed tenderloins" msgid_plural "glazed tenderloins" msgstr[0] "ヒレ肉の照り焼き" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" msgid_plural "grisly %s" msgstr[0] "変異%s" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -39421,23 +39451,21 @@ msgid "currywurst" msgid_plural "currywursts" msgstr[0] "カレーヴォルスト" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" msgid_plural "cheapskate %s" msgstr[0] "人肉%s" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" msgid_plural "confusing %s" msgstr[0] "亜人肉%s" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -39456,27 +39484,24 @@ msgid "aspic" msgid_plural "aspics" msgstr[0] "アスピック" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" msgid_plural "abomination %s" msgstr[0] "変異%s" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" msgid_plural "amoral %s" msgstr[0] "人肉%s" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -39496,7 +39521,7 @@ msgid "dehydrated fish" msgid_plural "dehydrated fish" msgstr[0] "乾燥魚肉" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -39508,7 +39533,7 @@ msgid "rehydrated fish" msgid_plural "rehydrated fish" msgstr[0] "水で戻した魚" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -39520,7 +39545,7 @@ msgid "pickled fish" msgid_plural "pickled fish" msgstr[0] "魚(酢漬け)" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -39531,7 +39556,7 @@ msgid "canned fish" msgid_plural "canned fish" msgstr[0] "魚(保存食)" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -39543,7 +39568,7 @@ msgid "batter fried fish" msgid_plural "batter fried fish" msgstr[0] "フライドフィッシュ" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "黄金色をした美味しそうな揚げ魚です。" @@ -39573,8 +39598,7 @@ msgid "lunch meat" msgid_plural "lunch meats" msgstr[0] "ランチミート" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -39593,30 +39617,28 @@ msgid "bologna" msgid_plural "bologna" msgstr[0] "ボローニャソーセージ" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" msgid_plural "brat %s" msgstr[0] "人肉%s" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" msgid_plural "Tumnis %s" msgstr[0] "亜人肉%s" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" msgid_plural "bleak %s" msgstr[0] "変異%s" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -39643,7 +39665,7 @@ msgid "SPAM" msgid_plural "SPAM" msgstr[0] "スパム" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -39679,22 +39701,20 @@ msgid "sausage gravy" msgid_plural "sausage gravies" msgstr[0] "ソーセージグレービー" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "人肉ソーセージグレービー" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "亜人肉ソーセージグレービー" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -39713,30 +39733,28 @@ msgid "pemmican" msgid_plural "pemmican" msgstr[0] "ペミカン" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" msgid_plural "prepper %s" msgstr[0] "人肉%s" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" msgid_plural "Orley %s" msgstr[0] "亜人肉%s" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" msgid_plural "pernicious %s" msgstr[0] "変異%s" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -39749,22 +39767,20 @@ msgid "hamburger helper" msgid_plural "hamburger helpers" msgstr[0] "ハンバーグヘルパー" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "人肉ハンバーグヘルパー" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" msgid_plural "halfling helper" msgstr[0] "亜人肉ハンバーグヘルパー" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -39793,22 +39809,20 @@ msgid "chili con carne" msgid_plural "chilis con carne" msgstr[0] "チリコンカルネ" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "チリコン人肉" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "チリコン亜人肉" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -39824,7 +39838,7 @@ msgid "pork and beans" msgid_plural "pork and beans" msgstr[0] "ポークビーンズ" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -39836,7 +39850,7 @@ msgid "canned tuna fish" msgid_plural "canned tuna fish" msgstr[0] "ツナ(保存食)" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "内容物の95%はマグロですが、わずかにイルカ肉が含まれています!" @@ -39846,7 +39860,7 @@ msgid "canned salmon" msgid_plural "canned salmon" msgstr[0] "サーモン(保存食)" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "缶詰の中にはピンク色のサーモンペーストが入っています!" @@ -39866,7 +39880,7 @@ msgid "pickled herring" msgid_plural "pickled herring" msgstr[0] "ニシン(酢漬け)" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "ピリ辛のホワイトソースなどで味を整えた漬け汁に、魚の切り身を漬けた料理です。" @@ -39886,15 +39900,13 @@ msgid "clam chowder" msgid_plural "clam chowders" msgstr[0] "クラムチャウダー" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "ミートチャウダー" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -39912,14 +39924,13 @@ msgid "baked beans" msgid_plural "baked beans" msgstr[0] "ベイクドビーンズ(肉)" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "ベイクドビーンズ(変異肉)" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "豆と肉を一緒に炊いた料理です。美味しく、お腹も十分満たされます。" @@ -39929,14 +39940,13 @@ msgid "meat fried rice" msgid_plural "meat fried rice" msgstr[0] "炒飯(肉)" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "炒飯(変異肉)" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "ご飯と肉を一緒に炒めた料理です。美味しく、お腹も十分満たされます。" @@ -39946,14 +39956,14 @@ msgid "deluxe beans and rice" msgid_plural "deluxe beans and rice" msgstr[0] "DX豆飯(肉)" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "DX豆飯(変異肉)" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -39965,20 +39975,19 @@ msgid "meat pie" msgid_plural "meat pies" msgstr[0] "ミートパイ" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "人肉パイ" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "亜人肉パイ" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -39995,21 +40004,19 @@ msgid "meat pizza" msgid_plural "meat pizzas" msgstr[0] "ミートピザ" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "人肉ピザ" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "亜人肉ピザ" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -40038,28 +40045,27 @@ msgid "deluxe scrambled eggs" msgid_plural "deluxe scrambled eggs" msgstr[0] "DXスクランブルエッグ" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "DXスクランブルエッグ(人肉)" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "DXスクランブルエッグ(変異肉)" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "DXスクランブルエッグ(変異肉)" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -40071,14 +40077,13 @@ msgid "canned meat" msgid_plural "canned meats" msgstr[0] "肉(保存食)" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "薄切り人肉" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -40096,14 +40101,13 @@ msgid "salted meat slice" msgid_plural "salted meat slices" msgstr[0] "薄切り肉(塩漬け)" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "薄切り人肉(塩漬け)" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -40120,29 +40124,27 @@ msgid "spaghetti bolognese" msgid_plural "spaghetti bolognese" msgstr[0] "スパゲッティ(ボロネーゼ)" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "スパゲッティ(人肉)" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" msgid_plural "speaking spaghetti" msgstr[0] "スパゲッティ(亜人肉)" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" msgid_plural "gnarly %s" msgstr[0] "%s(変異肉)" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "トマトベースの重量感あるミートソースがたっぷりとかかったスパゲッティです。うまい!" @@ -40152,22 +40154,21 @@ msgid "lasagne" msgid_plural "lasagnes" msgstr[0] "ラザニア" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" msgid_plural "Luigi %s" msgstr[0] "人肉%s" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" msgid_plural "Lab %s" msgstr[0] "亜人肉%s" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -40186,7 +40187,7 @@ msgid "fried SPAM" msgid_plural "fried SPAM" msgstr[0] "フライドスパム" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "油で揚げたスパムです。とても美味しいですよ。" @@ -40196,15 +40197,14 @@ msgid "cheeseburger" msgid_plural "cheeseburgers" msgstr[0] "チーズバーガー" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" msgid_plural "chump %s" msgstr[0] "人肉%s" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -40212,8 +40212,7 @@ msgid "elf %s" msgid_plural "elf %s" msgstr[0] "亜人肉%s" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -40244,21 +40243,19 @@ msgid "hamburger" msgid_plural "hamburgers" msgstr[0] "ハンバーガー" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "人肉バーガー" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "亜人肉バーガー" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -40275,21 +40272,19 @@ msgid "sloppy joe" msgid_plural "sloppy joes" msgstr[0] "スラッピー・ジョー" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "サンドイッチ(人肉)" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "亜人肉スラッピー・ジョー" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -40308,22 +40303,21 @@ msgid "taco" msgid_plural "tacos" msgstr[0] "タコス" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" msgid_plural "tio %s" msgstr[0] "人肉%s" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" msgid_plural "talking %s" msgstr[0] "亜人肉%s" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -40342,14 +40336,13 @@ msgid "pickled meat" msgid_plural "pickled meats" msgstr[0] "肉(酢漬け)" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "人肉(酢漬け)" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -40367,22 +40360,19 @@ msgid "dehydrated meat" msgid_plural "dehydrated meats" msgstr[0] "乾燥肉" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" msgid_plural "%s, human" msgstr[0] "%s(人肉)" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -40413,9 +40403,8 @@ msgid "haggis" msgid_plural "haggises" msgstr[0] "ハギス" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -40437,7 +40426,7 @@ msgid "fish makizushi" msgid_plural "fish makizushi" msgstr[0] "巻き寿司(魚)" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -40449,15 +40438,14 @@ msgid "meat temaki" msgid_plural "meat temaki" msgstr[0] "巻き寿司(肉)" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" msgid_plural "troubling %s" msgstr[0] "変異%s" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -40469,7 +40457,7 @@ msgid "sashimi" msgid_plural "sashimi" msgstr[0] "刺身" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "薄く切った生魚と細長く切った野菜を盛り合わせた美味しい料理です。" @@ -40491,7 +40479,7 @@ msgid "pelmeni" msgid_plural "pelmenis" msgstr[0] "ペリメニ" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -40510,8 +40498,7 @@ msgid "homemade burrito" msgid_plural "homemade burritos" msgstr[0] "自家製ブリート(調理済)" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -40531,14 +40518,13 @@ msgid "raw meatball" msgid_plural "raw meatballs" msgstr[0] "ミートボール(未調理)" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "人肉ボール(未調理)" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -40555,14 +40541,13 @@ msgid "meatball" msgid_plural "meatballs" msgstr[0] "ミートボール(調理済)" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "人肉ボール(調理済)" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -40597,12 +40582,12 @@ msgid "prescription stimulant" msgid_plural "prescription stimulant" msgstr[0] "医療用覚醒剤" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "覚醒剤を摂取しました。" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -40648,7 +40633,7 @@ msgid "antibiotics" msgid_plural "antibiotics" msgstr[0] "抗生物質" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -40673,7 +40658,7 @@ msgid "antiparasitic drug" msgid_plural "antiparasitic drug" msgstr[0] "抗寄生虫薬" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -40745,7 +40730,7 @@ msgid "antiseptic powder" msgid_plural "antiseptic powder" msgstr[0] "粉末消毒薬" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -40798,7 +40783,7 @@ msgid "hydrogen peroxide" msgid_plural "hydrogen peroxide" msgstr[0] "過酸化水素水" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -40847,12 +40832,12 @@ msgid "codeine" msgid_plural "codeine" msgstr[0] "コデイン" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "コデインを摂取しました。" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -40865,7 +40850,7 @@ msgid "cocaine" msgid_plural "cocaine" msgstr[0] "コカイン" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -40906,7 +40891,7 @@ msgid "cotton balls" msgid_plural "cotton balls" msgstr[0] "綿球" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -40919,12 +40904,12 @@ msgid "crack" msgid_plural "crack" msgstr[0] "高純度コカイン" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "高純度コカインを吸いました。あなたのママも鼻が高いことでしょう。" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -40936,7 +40921,7 @@ msgid "non-drowsy cough syrup" msgid_plural "non-drowsy cough syrup" msgstr[0] "咳止めシロップ(カフェイン)" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -40949,7 +40934,7 @@ msgid "antiseptic" msgid_plural "antiseptic" msgstr[0] "消毒薬" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "一般的には不潔な傷口に対して使う、強力な消毒薬です。" @@ -40970,7 +40955,7 @@ msgid "prescription sedative" msgid_plural "prescription sedative" msgstr[0] "医療用鎮静剤" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -40982,12 +40967,12 @@ msgid "high quality shatter" msgid_plural "high quality shatter" msgstr[0] "高品質大麻シャッター" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "大麻シャッターを摂取しました。わぁ、素晴らしいテルペンの香りです!" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -41004,12 +40989,12 @@ msgid "high quality wax" msgid_plural "high quality wax" msgstr[0] "高品質大麻ワックス" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "大麻ワックスを摂取しました。*ゲフッゲフッ*こりゃいいや!" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -41025,12 +41010,12 @@ msgid "high quality crude oil" msgid_plural "high quality crude oil" msgstr[0] "高品質大麻原油" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "まずい大麻オイルを摂取しました。止めておくべきでしたね。" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -41044,16 +41029,14 @@ msgid "low quality crude oil" msgid_plural "low quality crude oil" msgstr[0] "低品質大麻原油" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "非常にまずい大麻オイルを摂取しました。止めておくべきでしたね。" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -41067,7 +41050,7 @@ msgid "(ethanol) low quality crude oil" msgid_plural "(ethanol) low quality crude oil" msgstr[0] "低品質大麻原油(エタノール残留)" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -41080,7 +41063,7 @@ msgid "(ethanol) high quality crude oil" msgid_plural "(ethanol) high quality crude oil" msgstr[0] "高品質大麻原油(エタノール残留)" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -41093,7 +41076,7 @@ msgid "(ethanol) filtered low quality crude oil" msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "ろ過済み低品質大麻原油(エタノール残留)" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -41107,7 +41090,7 @@ msgid "(ethanol) filtered high quality crude oil" msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "ろ過済み高品質大麻原油(エタノール残留)" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -41121,7 +41104,7 @@ msgid "filtered low quality crude oil" msgid_plural "filtered low quality crude oil" msgstr[0] "ろ過済み低品質大麻原油" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -41136,7 +41119,7 @@ msgid "filtered high quality crude oil" msgid_plural "filtered high quality crude oil" msgstr[0] "ろ過済み高品質大麻原油" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -41151,7 +41134,7 @@ msgid "high quality distillate (heads)" msgid_plural "high quality distillate (heads)" msgstr[0] "高品質大麻蒸留物(ヘッド)" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -41165,7 +41148,7 @@ msgid "high quality distillate (tails)" msgid_plural "high quality distillate (tails)" msgstr[0] "高品質大麻蒸留物(テイル)" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -41179,12 +41162,12 @@ msgid "high quality distillate" msgid_plural "high quality distillate" msgstr[0] "高品質大麻蒸留物" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "大麻蒸留物を摂取しました。とーってもまろやか..." -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -41263,7 +41246,7 @@ msgid "chewing gum" msgid_plural "chewing gum" msgstr[0] "チューインガム" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "鮮やかなピンク色をした、砂糖不使用のチューインガムです。" @@ -41287,13 +41270,13 @@ msgid "heroin" msgid_plural "heroin" msgstr[0] "ヘロイン" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "薬物を投与しました。" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -41364,7 +41347,7 @@ msgid "low-grade methamphetamine" msgid_plural "low-grade methamphetamine" msgstr[0] "メタンフェタミン" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -41378,7 +41361,7 @@ msgid "high-grade methamphetamine" msgid_plural "high-grade methamphetamine" msgstr[0] "メタンフェタミン(高品質)" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -41428,7 +41411,7 @@ msgid "cough syrup" msgid_plural "cough syrup" msgstr[0] "咳止めシロップ" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -41457,7 +41440,7 @@ msgid "sleeping pill" msgid_plural "sleeping pill" msgstr[0] "睡眠薬" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -41500,7 +41483,7 @@ msgid "poppy cough syrup" msgid_plural "poppy cough syrup" msgstr[0] "咳止めシロップ(ケシ)" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "変異したケシから作った咳止めシロップです。飲むと眠気を催します。" @@ -41510,15 +41493,14 @@ msgid "injectable prophylactic antivenom" msgid_plural "injectable prophylactic antivenom" msgstr[0] "注射剤(防毒薬)" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "水薬瓶に入った予防的抗毒素薬を腕に注射しました。少し吐き気がします。" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -41533,7 +41515,7 @@ msgid "antidepressant" msgid_plural "antidepressant" msgstr[0] "抗鬱薬" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -41564,7 +41546,7 @@ msgid "hemostatic powder" msgid_plural "hemostatic powder" msgstr[0] "粉末止血薬" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -41588,7 +41570,7 @@ msgid "antipsychotic" msgid_plural "antipsychotic" msgstr[0] "抗精神病薬" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -41837,12 +41819,12 @@ msgid "marijuana" msgid_plural "marijuana" msgstr[0] "マリファナ" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "大麻を吸いました。これは良いね!" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -41856,7 +41838,7 @@ msgid "fast-acting sedative" msgid_plural "fast-acting sedative" msgstr[0] "即効性鎮静剤" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -41882,7 +41864,7 @@ msgid "antiseptic soaked cotton balls" msgid_plural "antiseptic soaked cotton balls" msgstr[0] "消毒綿" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -41894,7 +41876,7 @@ msgid "narrow-spectrum antibiotics" msgid_plural "narrow-spectrum antibiotics" msgstr[0] "狭域抗生物質" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -41959,7 +41941,7 @@ msgid "broad-spectrum antibiotics" msgid_plural "broad-spectrum antibiotics" msgstr[0] "広域抗生物質" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -41974,7 +41956,7 @@ msgid "cocaine topical cream" msgid_plural "cocaine topical cream" msgstr[0] "コカイン局所麻酔クリーム" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -42416,7 +42398,7 @@ msgid "alpha serum" msgid_plural "alpha serum" msgstr[0] "血清(アルファ)" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -42630,27 +42612,27 @@ msgstr "薄い色の細糸が混じっているようにも見える、濃縮さ #: lang/json/COMESTIBLE_from_json.py msgid "snail serum" msgid_plural "snail serums" -msgstr[0] "" +msgstr[0] "血清(カタツムリ)" #. ~ Description for snail serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen with the consistency of snot. You need a " "syringe to inject it… if you really want to?" -msgstr "" +msgstr "鼻水のようにネバネバした、濃縮された変異原物質です。使用するには注射器が必要ですが...本気ですか?" #: lang/json/COMESTIBLE_from_json.py msgid "batrachian serum" msgid_plural "batrachian serums" -msgstr[0] "" +msgstr[0] "血清(両生類)" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" +"池の水のような見た目の、濃縮された変異原物質です。水中で何かが動いているように見えるのは気のせいでしょうか?使用するなら注射器が必要ですが...本気ですか?" #: lang/json/COMESTIBLE_from_json.py msgid "troglobite serum" @@ -42710,7 +42692,7 @@ msgid "alpha mutagen" msgid_plural "alpha mutagen" msgstr[0] "変異原物質(アルファ)" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -42806,24 +42788,25 @@ msgstr[0] "変異原物質(クモ)" #: lang/json/COMESTIBLE_from_json.py msgid "batrachian mutagen" msgid_plural "batrachian mutagens" -msgstr[0] "" +msgstr[0] "変異原物質(両生類)" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." -msgstr "" +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." +msgstr "小さなオタマジャクシがたくさん泳いでいるように見える、黒っぽい変異原物質です。" #: lang/json/COMESTIBLE_from_json.py msgid "snail mutagen" msgid_plural "snail mutagens" -msgstr[0] "" +msgstr[0] "変異原物質(カタツムリ)" #. ~ Description for snail mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" "A mutagen that looks awfully like the slime from an old children's network." -msgstr "" +msgstr "昔の子供向け番組に登場するスライムにそっくりの変異原物質です。" #: lang/json/COMESTIBLE_from_json.py msgid "troglobite mutagen" @@ -42940,7 +42923,7 @@ msgid "pine nuts" msgid_plural "pine nuts" msgstr[0] "松の実" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "松かさから取り出した、カリカリとした美味しい木の実です。" @@ -42950,7 +42933,7 @@ msgid "junipers" msgid_plural "junipers" msgstr[0] "ジュニパーベリー" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -42962,7 +42945,7 @@ msgid "shelled pistachios" msgid_plural "shelled pistachios" msgstr[0] "ピスタチオ(殻無し)" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -42973,7 +42956,7 @@ msgid "roasted pistachios" msgid_plural "roasted pistachios" msgstr[0] "ピスタチオ(調理済)" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "ピスタチオの木から採取した実を炙ったものです。" @@ -42983,7 +42966,7 @@ msgid "shelled almonds" msgid_plural "shelled almonds" msgstr[0] "アーモンド(殻無し)" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "アーモンドの木から採取した実です。殻は割って外してあります。" @@ -42993,7 +42976,7 @@ msgid "almond pulp" msgid_plural "almond pulp" msgstr[0] "アーモンドパルプ" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -43004,7 +42987,7 @@ msgid "roasted almonds" msgid_plural "roasted almonds" msgstr[0] "アーモンド(調理済)" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "アーモンドの木から採取した実を炙ったものです。" @@ -43014,7 +42997,7 @@ msgid "cashews" msgid_plural "cashews" msgstr[0] "カシューナッツ" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "塩をまぶしたカシューナッツです。" @@ -43024,7 +43007,7 @@ msgid "shelled pecans" msgid_plural "shelled pecans" msgstr[0] "ペカン(殻無し)" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -43036,7 +43019,7 @@ msgid "roasted pecans" msgid_plural "roasted pecans" msgstr[0] "ペカン(調理済)" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "ペカンの木から採取した実を炙ったものです。" @@ -43046,7 +43029,7 @@ msgid "shelled peanuts" msgid_plural "shelled peanuts" msgstr[0] "ピーナッツ(殻無し)" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "殻を剥いて塩で味付けしたピーナッツです。" @@ -43056,7 +43039,7 @@ msgid "beech nuts" msgid_plural "beech nuts" msgstr[0] "ビーチナッツ" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "ブナの木から採取した、硬く尖った実です。" @@ -43066,7 +43049,7 @@ msgid "shelled walnuts" msgid_plural "shelled walnuts" msgstr[0] "クルミ(殻無し)" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -43078,7 +43061,7 @@ msgid "roasted walnuts" msgid_plural "roasted walnuts" msgstr[0] "クルミ(調理済)" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "クルミの木から採取した実を炙ったものです。" @@ -43088,7 +43071,7 @@ msgid "shelled chestnuts" msgid_plural "shelled chestnuts" msgstr[0] "クリ(殻無し)" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -43100,7 +43083,7 @@ msgid "roasted chestnuts" msgid_plural "roasted chestnuts" msgstr[0] "クリ(調理済)" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "クリの木から採取した実を炙ったものです。" @@ -43110,7 +43093,7 @@ msgid "shelled hazelnuts" msgid_plural "shelled hazelnuts" msgstr[0] "ヘーゼルナッツ(殻無し)" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -43122,7 +43105,7 @@ msgid "roasted edamame" msgid_plural "roasted edamame" msgstr[0] "枝豆(調理済)" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "炒った枝豆は健康に良いおやつです。" @@ -43132,7 +43115,7 @@ msgid "roasted soy nuts" msgid_plural "roasted soy nuts" msgstr[0] "大豆(調理済)" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "ソイナッツとも呼ばれる炒った大豆です。" @@ -43142,7 +43125,7 @@ msgid "roasted hazelnuts" msgid_plural "roasted hazelnuts" msgstr[0] "ヘーゼルナッツ(調理済)" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "ハシバミの木から採取したヘーゼルナッツを炙ったものです。" @@ -43152,7 +43135,7 @@ msgid "shelled hickory nuts" msgid_plural "shelled hickory nuts" msgstr[0] "ヒッコリーナッツ(殻無し)" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -43164,7 +43147,7 @@ msgid "roasted hickory nuts" msgid_plural "roasted hickory nuts" msgstr[0] "ヒッコリーナッツ(調理済)" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "ヒッコリーの木から採取した実を炙ったものです。" @@ -43217,19 +43200,19 @@ msgid "acorns" msgid_plural "acorns" msgstr[0] "ドングリ" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " "taste terribly bitter and can upset your stomach." -msgstr "" +msgstr "殻に入ったままの一つかみ分のどんぐりです。リスの好物ですが、胃が荒れそうな非常に苦い味がします。" #: lang/json/COMESTIBLE_from_json.py msgid "roasted acorns" msgid_plural "roasted acorns" msgstr[0] "ドングリ(調理済)" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "オークの木から採取したドングリを炙ったものです。" @@ -43239,7 +43222,7 @@ msgid "cooked acorn meal" msgid_plural "cooked acorn meal" msgstr[0] "ドングリ(調理済)" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -43251,7 +43234,7 @@ msgid "foie gras" msgid_plural "foie gras" msgstr[0] "フォアグラ" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -43262,7 +43245,7 @@ msgid "liver & onions" msgid_plural "liver & onions" msgstr[0] "レバー&オニオン" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "肝臓を使った古典的な料理です。" @@ -43312,7 +43295,7 @@ msgid "leverpostej" msgid_plural "leverpostej" msgstr[0] "レバーパテ" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -43403,14 +43386,14 @@ msgstr "動物の腸から作られた、ソーセージ用のケーシングで #: lang/json/COMESTIBLE_from_json.py msgid "artifical sausage casing" msgid_plural "artifical sausage casings" -msgstr[0] "" +msgstr[0] "人工ケーシング" #. ~ Description for artifical sausage casing #: lang/json/COMESTIBLE_from_json.py msgid "" "Sausage casings made from plastic bags. Ready to be used for forming meat " "products." -msgstr "" +msgstr "ビニール製のソーセージ用ケーシングです。すぐに食肉加工品を作れる状態になっています。" #: lang/json/COMESTIBLE_from_json.py msgid "homemade hot dog" @@ -43509,7 +43492,7 @@ msgid "marloss gelatin" msgid_plural "marloss gelatin" msgstr[0] "ゼラチン(マーロス)" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -43537,7 +43520,7 @@ msgid "yeast" msgid_plural "yeast" msgstr[0] "酵母" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -43548,7 +43531,7 @@ msgid "bone meal" msgid_plural "bone meal" msgstr[0] "骨粉" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "骨を粉末状にしたものです。化学肥料などの材料として利用できます。" @@ -43558,7 +43541,7 @@ msgid "powdered gelatin" msgid_plural "powdered gelatin" msgstr[0] "ゼラチンパウダー" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -43569,7 +43552,7 @@ msgid "fresh gelatin" msgid_plural "fresh gelatin" msgstr[0] "ゼラチン" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "肉" @@ -43579,7 +43562,7 @@ msgid "tainted bone meal" msgid_plural "tainted bone meal" msgstr[0] "汚染骨粉" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "粉末状にした灰白色の腐った骨です。" @@ -43589,7 +43572,7 @@ msgid "chitin powder" msgid_plural "chitin powder" msgstr[0] "キチン粉末" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -43632,7 +43615,7 @@ msgid "dried beans" msgid_plural "dried beans" msgstr[0] "豆(乾燥)" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -43644,7 +43627,7 @@ msgid "cooked beans" msgid_plural "cooked beans" msgstr[0] "豆(調理済)" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "茹でた白インゲン豆です。ボリューム満点。" @@ -43654,8 +43637,8 @@ msgid "tofu" msgid_plural "tofu" msgstr[0] "豆腐" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -43672,7 +43655,7 @@ msgid "dehydrated tofu" msgid_plural "dehydrated tofu" msgstr[0] "乾燥豆腐" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "長期間保存できるように脱水して密封した豆腐です。" @@ -43682,7 +43665,7 @@ msgid "soybeans" msgid_plural "soybeans" msgstr[0] "大豆" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -43706,7 +43689,7 @@ msgid "dried lentils" msgid_plural "dried lentils" msgstr[0] "レンズ豆(乾燥)" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -43717,7 +43700,7 @@ msgid "Foodplace's delicious food™" msgid_plural "Foodplace's delicious food™" msgstr[0] "デリシャスフード™" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43730,7 +43713,7 @@ msgid "Foodplace's appropriate snack™" msgid_plural "Foodplace's appropriate snack™" msgstr[0] "デリシャスバー™" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "本物のデリシャス物質がポケットサイズになりました!" @@ -43740,7 +43723,7 @@ msgid "cooked lentils" msgid_plural "cooked lentils" msgstr[0] "レンズ豆(調理済)" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "質素ながら栄養豊富な、美味しく調理したレンズ豆です。" @@ -43750,7 +43733,7 @@ msgid "coffee powder" msgid_plural "coffee powder" msgstr[0] "コーヒー粉末" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -43763,7 +43746,7 @@ msgid "Kentucky coffee grounds" msgid_plural "Kentucky coffee grounds" msgstr[0] "代用コーヒー豆" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -43775,7 +43758,7 @@ msgid "candied honey" msgid_plural "candied honey" msgstr[0] "固形蜂蜜" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -43812,7 +43795,7 @@ msgid "cattle fodder" msgid_plural "cattle fodder" msgstr[0] "家畜飼料" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -43824,7 +43807,7 @@ msgid "bird food" msgid_plural "bird food" msgstr[0] "鳥の餌" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -43836,7 +43819,7 @@ msgid "wet dog food" msgid_plural "wet dog food" msgstr[0] "ドッグフード(ウェット)" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -43848,7 +43831,7 @@ msgid "dry dog food" msgid_plural "dry dog food" msgstr[0] "ドッグフード(ドライ)" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -43860,7 +43843,7 @@ msgid "wet cat food" msgid_plural "wet cat food" msgstr[0] "キャットフード(ウェット)" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -43872,7 +43855,7 @@ msgid "dry cat food" msgid_plural "dry cat food" msgstr[0] "キャットフード(ドライ)" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -43989,7 +43972,7 @@ msgid "instant coffee mix" msgid_plural "instant coffee mix" msgstr[0] "インスタントコーヒー" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -44025,28 +44008,24 @@ msgid "protein drink" msgid_plural "protein drinks" msgstr[0] "プロテインドリンク" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "人肉ドリンク" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" msgid_plural "sapient green drink" msgstr[0] "亜人肉ドリンク" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -44065,21 +44044,20 @@ msgid "protein powder" msgid_plural "protein powder" msgstr[0] "プロテインパウダー" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "人肉パウダー" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" msgid_plural "sapient green powder" msgstr[0] "亜人肉パウダー" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -44111,14 +44089,13 @@ msgid "protein shake" msgid_plural "protein shakes" msgstr[0] "プロテインシェイク" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "人肉シェイク" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -44137,14 +44114,14 @@ msgid "fortified protein shake" msgid_plural "fortified protein shakes" msgstr[0] "強化プロテインシェイク" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" msgid_plural "fortified soylent green shake" msgstr[0] "強化人肉シェイク" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -44206,7 +44183,7 @@ msgid "blueberries" msgid_plural "blueberries" msgstr[0] "ブルーベリー" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "青い色をしていますが、それは悲しさを表現している訳ではありませんよ。" @@ -44216,7 +44193,7 @@ msgid "strawberries" msgid_plural "strawberries" msgstr[0] "イチゴ" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "美味しく瑞々しいイチゴです。野原に自生していることがあります。" @@ -44226,7 +44203,7 @@ msgid "cranberries" msgid_plural "cranberries" msgstr[0] "クランベリー" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "酸味のある赤いベリーです。健康的な果物です。" @@ -44236,7 +44213,7 @@ msgid "raspberries" msgid_plural "raspberries" msgstr[0] "ラズベリー" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "甘くて赤いベリーです。" @@ -44246,7 +44223,7 @@ msgid "huckleberries" msgid_plural "huckleberries" msgstr[0] "ハックルベリー" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "しばしばブルーベリーと混同される果実です。" @@ -44256,7 +44233,7 @@ msgid "mulberries" msgid_plural "mulberries" msgstr[0] "マルベリー" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -44268,7 +44245,7 @@ msgid "elderberries" msgid_plural "elderberries" msgstr[0] "エルダーベリー" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "エルダーベリーは生で食べると毒がありますが、調理すれば非常に美味しく食べられます。" @@ -44278,7 +44255,7 @@ msgid "rose hips" msgid_plural "rose hips" msgstr[0] "ローズヒップ" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "受粉したバラに実る果実です。" @@ -44320,7 +44297,7 @@ msgid "cherries" msgid_plural "cherries" msgstr[0] "サクランボ" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "木に実る赤くて甘い果物です。" @@ -44341,7 +44318,7 @@ msgid "grapes" msgid_plural "grapes" msgstr[0] "ブドウ" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "瑞々しいブドウの房です。" @@ -44401,7 +44378,7 @@ msgid "blackberries" msgid_plural "blackberries" msgstr[0] "ブラックベリー" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "ラズベリーより色の濃いベリーです。従兄弟のようなものです。" @@ -44452,7 +44429,7 @@ msgid "apricots" msgid_plural "apricots" msgstr[0] "アンズ" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "滑らかな肌触りのモモに似た果物です。" @@ -44489,7 +44466,7 @@ msgid "bee balm" msgid_plural "bee balm" msgstr[0] "ビーバーム" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -44500,7 +44477,7 @@ msgid "broccoli" msgid_plural "broccoli" msgstr[0] "ブロッコリー" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "少し硬さがありますが、とても美味しい野菜です。" @@ -44510,7 +44487,7 @@ msgid "buckwheat" msgid_plural "buckwheat" msgstr[0] "蕎麦" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -44532,7 +44509,7 @@ msgid "spinach" msgid_plural "spinach" msgstr[0] "ホウレンソウ" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "一束のホウレンソウです。" @@ -44578,7 +44555,7 @@ msgid "celery" msgid_plural "celery" msgstr[0] "セロリ" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "美味しくもなく栄養もそれほど豊富ではありませんが、サラダにはよく合います。" @@ -44600,7 +44577,7 @@ msgid "corn kernels" msgid_plural "corn kernels" msgstr[0] "コーン粒" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "美味しい黄金の粒が一杯付いたトウモロコシです。" @@ -44610,7 +44587,7 @@ msgid "empty corn cob" msgid_plural "empty corn cob" msgstr[0] "トウモロコシ軸" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -44667,7 +44644,7 @@ msgid "salsify" msgid_plural "salsify" msgstr[0] "サルシファイ" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -44680,7 +44657,7 @@ msgid "chicory" msgid_plural "chicory" msgstr[0] "チコリ" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -44793,7 +44770,7 @@ msgid "raw popcorn" msgid_plural "raw popcorn" msgstr[0] "ポップコーン粒" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -44827,7 +44804,7 @@ msgid "horseradish greens" msgid_plural "horseradish greens" msgstr[0] "ホースラディッシュの葉" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -44839,7 +44816,7 @@ msgid "dandelions" msgid_plural "dandelions" msgstr[0] "タンポポ" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -44851,7 +44828,7 @@ msgid "burdocks" msgid_plural "burdocks" msgstr[0] "ゴボウ" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "アザミのような姿の、苦みの強い野菜です。生でも調理しても食べられます。" @@ -44941,7 +44918,7 @@ msgid "wild vegetables" msgid_plural "wild vegetables" msgstr[0] "山菜" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -44973,7 +44950,7 @@ msgid "raw beans" msgid_plural "raw beans" msgstr[0] "生豆" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -44985,7 +44962,7 @@ msgid "raw lentils" msgid_plural "raw lentils" msgstr[0] "生レンズ豆" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "未調理のレンズ豆です。調理すれば食べられます。" @@ -44995,7 +44972,7 @@ msgid "fiddleheads" msgid_plural "fiddleheads" msgstr[0] "ゼンマイ" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -45030,8 +45007,7 @@ msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" msgstr[0] "サンドイッチ(DX)" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -45044,6 +45020,26 @@ msgid "" "nutritious!" msgstr "肉、野菜、チーズ、そして各種の調味料を挟んだ豪華版サンドイッチです。味も栄養も抜群です!" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "ルーベンサンド" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "変異ルーベンサンド" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" +"大変動以前からの定番料理ですが、おそらく材料のほとんどは代用品です。一般的には、パンに特製ソースとザワークラウト、肉、チーズを挟み、フライパンで熱して作ります。" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -45099,7 +45095,7 @@ msgid "fairy bread" msgid_plural "fairy bread" msgstr[0] "フェアリーブレッド" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -45144,24 +45140,21 @@ msgid "meat sandwich" msgid_plural "meat sandwiches" msgstr[0] "サンドイッチ(肉)" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "サンドイッチ(人肉)" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "サンドイッチ(亜人肉)" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -45266,7 +45259,7 @@ msgid "mushroom spores" msgid_plural "mushroom spores" msgstr[0] "胞子(キノコ)" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "キノコの胞子です。" @@ -45276,7 +45269,7 @@ msgid "hop rhizomes" msgid_plural "hop rhizomes" msgstr[0] "根茎(ホップ)" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "ホップの根茎です。自家栽培できます。" @@ -45290,7 +45283,7 @@ msgid "blackberry seeds" msgid_plural "blackberry seeds" msgstr[0] "種(ブラックベリー)" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "ブラックベリーの種です。" @@ -45304,7 +45297,7 @@ msgid "blueberry seeds" msgid_plural "blueberry seeds" msgstr[0] "種(ブルーベリー)" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "ブルーベリーの種です。" @@ -45318,7 +45311,7 @@ msgid "cranberry seeds" msgid_plural "cranberry seeds" msgstr[0] "種(クランベリー)" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "クランベリーの種です。" @@ -45332,7 +45325,7 @@ msgid "huckleberry seeds" msgid_plural "huckleberry seeds" msgstr[0] "種(ハックルベリー)" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "ハックルベリーの種です。" @@ -45346,7 +45339,7 @@ msgid "mulberry seeds" msgid_plural "mulberry seeds" msgstr[0] "種(マルベリー)" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "マルベリーの種です。" @@ -45360,7 +45353,7 @@ msgid "elderberry seeds" msgid_plural "elderberry seeds" msgstr[0] "種(エルダーベリー)" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "エルダーベリーの種です。" @@ -45374,7 +45367,7 @@ msgid "raspberry seeds" msgid_plural "raspberry seeds" msgstr[0] "種(ラズベリー)" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "ラズベリーの種です。" @@ -45388,7 +45381,7 @@ msgid "strawberry seeds" msgid_plural "strawberry seeds" msgstr[0] "種(イチゴ)" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "イチゴの種です。" @@ -45402,7 +45395,7 @@ msgid "grape seeds" msgid_plural "grape seeds" msgstr[0] "種(ブドウ)" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "ブドウの種です。" @@ -45416,7 +45409,7 @@ msgid "rose seeds" msgid_plural "rose seeds" msgstr[0] "種(バラ)" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "バラの種です。" @@ -45430,7 +45423,7 @@ msgid "tobacco seeds" msgid_plural "tobacco seeds" msgstr[0] "種(タバコ)" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "タバコの種です。" @@ -45444,7 +45437,7 @@ msgid "barley seeds" msgid_plural "barley seeds" msgstr[0] "種(大麦)" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "大麦の種です。" @@ -45454,7 +45447,7 @@ msgid "sugar beet seeds" msgid_plural "sugar beet seeds" msgstr[0] "種(サトウダイコン)" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "サトウダイコンの種です。" @@ -45464,7 +45457,7 @@ msgid "lettuce seeds" msgid_plural "lettuce seeds" msgstr[0] "種(レタス)" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "レタスの種です。" @@ -45474,7 +45467,7 @@ msgid "cabbage seeds" msgid_plural "cabbage seeds" msgstr[0] "種(キャベツ)" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "キャベツの種です。" @@ -45484,7 +45477,7 @@ msgid "tomato seeds" msgid_plural "tomato seeds" msgstr[0] "種(トマト)" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "トマトの種です。" @@ -45494,7 +45487,7 @@ msgid "cotton seeds" msgid_plural "cotton seeds" msgstr[0] "種(綿)" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "綿の種です。食用油も生成できます。" @@ -45508,7 +45501,7 @@ msgid "broccoli seeds" msgid_plural "broccoli seeds" msgstr[0] "種(ブロッコリー)" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "ブロッコリーの種です。" @@ -45518,7 +45511,7 @@ msgid "zucchini seeds" msgid_plural "zucchini seeds" msgstr[0] "種(ズッキーニ)" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "ズッキーニの種です。" @@ -45528,7 +45521,7 @@ msgid "onion seeds" msgid_plural "onion seeds" msgstr[0] "種(タマネギ)" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "タマネギの種です。" @@ -45538,7 +45531,7 @@ msgid "garlic seeds" msgid_plural "garlic seeds" msgstr[0] "種(ニンニク)" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "ニンニクの種です。" @@ -45552,7 +45545,7 @@ msgid "cattail seeds" msgid_plural "cattail seeds" msgstr[0] "種(ガマ)" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "ガマの種です。" @@ -45566,7 +45559,7 @@ msgid "dahlia seeds" msgid_plural "dahlia seeds" msgstr[0] "種(ダリア)" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "ダリアの種です。" @@ -45580,7 +45573,7 @@ msgid "salsify seeds" msgid_plural "salsify seeds" msgstr[0] "種(サルシファイ)" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "サルシファイの種です。" @@ -45590,7 +45583,7 @@ msgid "chicory seeds" msgid_plural "chicory seeds" msgstr[0] "種(チコリ)" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "チコリの種です。" @@ -45600,7 +45593,7 @@ msgid "wild root seeds" msgid_plural "wild root seeds" msgstr[0] "種(根菜)" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "白い花をつける根菜の種です。" @@ -45610,7 +45603,7 @@ msgid "decorative plant seeds" msgid_plural "decorative plant seeds" msgstr[0] "種(観賞用植物)" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -45626,7 +45619,7 @@ msgid "cactus seeds" msgid_plural "cactus seeds" msgstr[0] "種(サボテン)" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "サボテンの種です。" @@ -45650,7 +45643,7 @@ msgid "carrot seeds" msgid_plural "carrot seeds" msgstr[0] "種(ニンジン)" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "ニンジンの種です。" @@ -45660,7 +45653,7 @@ msgid "corn seeds" msgid_plural "corn seeds" msgstr[0] "種(トウモロコシ)" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "トウモロコシの種です。" @@ -45674,7 +45667,7 @@ msgid "chili pepper seeds" msgid_plural "chili pepper seeds" msgstr[0] "種(トウガラシ)" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "トウガラシの種です。" @@ -45684,7 +45677,7 @@ msgid "cucumber seeds" msgid_plural "cucumber seeds" msgstr[0] "種(キュウリ)" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "キュウリの種です。" @@ -45708,7 +45701,7 @@ msgid "cannabis seeds" msgid_plural "cannabis seeds" msgstr[0] "種(大麻)" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -45738,7 +45731,7 @@ msgid "bean seeds" msgid_plural "bean seeds" msgstr[0] "種(豆)" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "未調理の生豆です。植えて栽培できます。" @@ -45752,7 +45745,7 @@ msgid "soybean seeds" msgid_plural "soybean seeds" msgstr[0] "種(大豆)" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "大豆の種です。" @@ -45761,7 +45754,7 @@ msgstr "大豆の種です。" msgid "soybean" msgstr "大豆" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "未調理のレンズ豆です。植えて栽培できます。" @@ -45775,7 +45768,7 @@ msgid "thyme seeds" msgid_plural "thyme seeds" msgstr[0] "種(タイム)" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "タイムの種です。" @@ -45790,7 +45783,7 @@ msgid "canola seeds" msgid_plural "canola seeds" msgstr[0] "種(アブラナ)" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "アブラナの種です。精油に加工できます。" @@ -45800,7 +45793,7 @@ msgid "pumpkin seeds" msgid_plural "pumpkin seeds" msgstr[0] "種(カボチャ)" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "生のカボチャの種です。揚げれば食べられます。" @@ -45810,7 +45803,7 @@ msgid "sunflower seeds" msgid_plural "sunflower seeds" msgstr[0] "種(ヒマワリ)" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "ヒマワリの種です。圧搾することで油になります。" @@ -45826,7 +45819,7 @@ msgid "dogbane seeds" msgid_plural "dogbane seeds" msgstr[0] "種(ドッグベイン)" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "ドッグベインの種です。" @@ -45836,7 +45829,7 @@ msgid "bee balm seeds" msgid_plural "bee balm seeds" msgstr[0] "種(ビーバーム)" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "ビーバームの種です。" @@ -45846,7 +45839,7 @@ msgid "mugwort seeds" msgid_plural "mugwort seeds" msgstr[0] "種(ヨモギ)" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "ヨモギの種です。" @@ -45856,7 +45849,7 @@ msgid "buckwheat seeds" msgid_plural "buckwheat seeds" msgstr[0] "種(蕎麦)" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "蕎麦の種です。" @@ -45866,7 +45859,7 @@ msgid "wild herb seeds" msgid_plural "wild herb seeds" msgstr[0] "種(野草)" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "野草から採れた種です。" @@ -45880,7 +45873,7 @@ msgid "wild vegetable stems" msgid_plural "wild vegetable stems" msgstr[0] "茎(山菜)" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "山菜の茎です。" @@ -45894,7 +45887,7 @@ msgid "dandelion seeds" msgid_plural "dandelion seeds" msgstr[0] "種(タンポポ)" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "タンポポの種です。" @@ -45908,7 +45901,7 @@ msgid "burdock seeds" msgid_plural "burdock seeds" msgstr[0] "種(ゴボウ)" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "ゴボウの種です。" @@ -45922,7 +45915,7 @@ msgid "rhubarb stems" msgid_plural "rhubarb stems" msgstr[0] "茎(ルバーブ)" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "ルバーブの茎です。" @@ -45932,7 +45925,7 @@ msgid "morel mushroom spores" msgid_plural "morel mushroom spores" msgstr[0] "胞子(アミガサタケ)" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "アミガサタケの胞子です。" @@ -45942,7 +45935,7 @@ msgid "datura seeds" msgid_plural "datura seeds" msgstr[0] "種(ダチュラ)" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -45960,7 +45953,7 @@ msgid "celery seeds" msgid_plural "celery seeds" msgstr[0] "種(セロリ)" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "セロリの種です。" @@ -45970,7 +45963,7 @@ msgid "oat seeds" msgid_plural "oat seeds" msgstr[0] "種(燕麦)" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "燕麦の種です。" @@ -45985,7 +45978,7 @@ msgid "wheat seeds" msgid_plural "wheat seeds" msgstr[0] "種(小麦)" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "小麦の種です。" @@ -46000,7 +45993,7 @@ msgid "fried seeds" msgid_plural "fried seeds" msgstr[0] "炒り種" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -46025,7 +46018,7 @@ msgid "coffee beans" msgid_plural "coffee beans" msgstr[0] "コーヒー豆" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "焙煎していないコーヒー豆です。" @@ -46035,7 +46028,7 @@ msgid "roasted coffee beans" msgid_plural "roasted coffee beans" msgstr[0] "コーヒー豆(焙煎済)" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "焙煎したコーヒー豆です。細かく砕くとコーヒー粉末になります。" @@ -46045,7 +46038,7 @@ msgid "chamomile seeds" msgid_plural "chamomile seeds" msgstr[0] "種(カモミール)" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "カモミールの種です。" @@ -46059,7 +46052,7 @@ msgid "spurge seeds" msgid_plural "spurge seeds" msgstr[0] "種(スパージ)" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "スパージの種です。" @@ -46073,7 +46066,7 @@ msgid "popcorn seeds" msgid_plural "popcorn seeds" msgstr[0] "種(ポップコーン)" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "ポップ種のトウモロコシの種です。" @@ -46083,7 +46076,7 @@ msgid "horseradish seeds" msgid_plural "horseradish seeds" msgstr[0] "種(ホースラディッシュ)" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "ホースラディッシュの種です。" @@ -46093,7 +46086,7 @@ msgid "mustard seeds" msgid_plural "mustard seeds" msgstr[0] "種(カラシナ)" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "カラシナの種です。細かく砕くとマスタードパウダーになります。" @@ -46103,7 +46096,7 @@ msgid "bell pepper seeds" msgid_plural "bell pepper seeds" msgstr[0] "種(ピーマン)" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "ピーマンの種です。" @@ -46123,8 +46116,7 @@ msgid "bone broth" msgid_plural "bone broths" msgstr[0] "だし汁(骨)" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -46151,14 +46143,13 @@ msgid "meat soup" msgid_plural "meat soups" msgstr[0] "肉煮込みスープ" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "人肉煮込みスープ" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -46194,8 +46185,7 @@ msgid "curry with meat" msgid_plural "curries with meat" msgstr[0] "ミートカレー" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -46211,10 +46201,8 @@ msgid "woods meat soup" msgid_plural "woods meat soups" msgstr[0] "森のスープ(肉)" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -46270,7 +46258,7 @@ msgid "chicken and dumplings" msgid_plural "chicken and dumplings" msgstr[0] "チキン&ダンプリング" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "鶏肉の団子と穀粉の団子が入ったスープです。悪くありません。" @@ -46292,7 +46280,7 @@ msgid "chili powder" msgid_plural "chili powder" msgstr[0] "チリパウダー" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -46304,7 +46292,7 @@ msgid "hot sauce" msgid_plural "hot sauce" msgstr[0] "ホットソース" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -46316,7 +46304,7 @@ msgid "cinnamon" msgid_plural "cinnamon" msgstr[0] "シナモン" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "挽いた桂皮に甘くてちょっとだけスパイシーな香りを添えて。" @@ -46326,7 +46314,7 @@ msgid "curry powder" msgid_plural "curry powder" msgstr[0] "カレー粉" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -46338,7 +46326,7 @@ msgid "black pepper" msgid_plural "black pepper" msgstr[0] "黒胡椒" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "黒い実を挽いて作る香辛料です。刺激的な香りがします。" @@ -46348,7 +46336,7 @@ msgid "salt" msgid_plural "salt" msgstr[0] "食塩" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -46360,7 +46348,7 @@ msgid "Italian seasoning" msgid_plural "Italian seasoning" msgstr[0] "イタリアンスパイス" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "乾燥させたオレガノやバジル、タイム、その他の香辛料を混ぜた香り豊かなスパイスです。" @@ -46370,7 +46358,7 @@ msgid "seasoned salt" msgid_plural "seasoned salt" msgstr[0] "調味塩" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "香辛料と秘密のハーブをブレンドした香り豊かな塩です。" @@ -46380,7 +46368,7 @@ msgid "sugar" msgid_plural "sugar" msgstr[0] "砂糖" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -46392,7 +46380,7 @@ msgid "sprinkles" msgid_plural "sprinkles" msgstr[0] "スプリンクル" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -46408,7 +46396,7 @@ msgid "wild herbs" msgid_plural "wild herbs" msgstr[0] "野草" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -46420,7 +46408,7 @@ msgid "soy sauce" msgid_plural "soy sauce" msgstr[0] "醤油" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "大豆を発酵させて作る液体調味料です。" @@ -46435,7 +46423,7 @@ msgid "mustard powder" msgid_plural "mustard powder" msgstr[0] "マスタードパウダー" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "香りのよい黄色の粉末です。この状態では食べられません。" @@ -46481,7 +46469,7 @@ msgid "starch" msgid_plural "starch" msgstr[0] "デンプン" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -46493,7 +46481,7 @@ msgid "cooked dandelion greens" msgid_plural "cooked dandelion greens" msgstr[0] "タンポポの葉(調理済)" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "調理した野生のタンポポの葉です。美味しく栄養も豊富です。" @@ -46503,7 +46491,7 @@ msgid "fried dandelions" msgid_plural "fried dandelions" msgstr[0] "揚げタンポポ" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -46514,7 +46502,7 @@ msgid "cooked burdock greens" msgid_plural "cooked burdock greens" msgstr[0] "ゴボウの葉(調理済)" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "調理した野生のゴボウの葉です。美味しく栄養も豊富です。" @@ -46524,7 +46512,7 @@ msgid "fried burdocks" msgid_plural "fried burdocks" msgstr[0] "揚げゴボウ" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -46558,7 +46546,7 @@ msgid "cooked wild vegetables" msgid_plural "cooked wild vegetables" msgstr[0] "山菜(調理済)" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "食べられる野草を調理したものです。色々な食材が混ざった風変わりな味です。" @@ -46579,7 +46567,7 @@ msgid "cooked buckwheat" msgid_plural "cooked buckwheat" msgstr[0] "蕎麦(調理済)" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -46590,7 +46578,7 @@ msgid "canned corn" msgid_plural "canned corn" msgstr[0] "トウモロコシ(保存食)" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "水に浸したコーンが容器に入っています。美味しそう!" @@ -46600,7 +46588,7 @@ msgid "corn on the cob" msgid_plural "corn on the cob" msgstr[0] "トウモロコシ(調理済)" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "ホイルで包んで焼いたトウモロコシです。" @@ -46610,7 +46598,7 @@ msgid "pan roasted corn" msgid_plural "pan roasted corn" msgstr[0] "コーン(調理済)" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "薬草やスパイスと共に焼いたコーンです。" @@ -46620,7 +46608,7 @@ msgid "hominy" msgid_plural "hominy" msgstr[0] "ホミニー" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -46632,7 +46620,7 @@ msgid "cornmeal" msgid_plural "cornmeal" msgstr[0] "コーンミール" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "焼いて調理すると美味しく食べられます。" @@ -46642,7 +46630,7 @@ msgid "vegetarian baked beans" msgid_plural "vegetarian baked beans" msgstr[0] "ベイクドビーンズ(野菜)" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "豆と野菜を一緒に炊いた料理です。美味しく、お腹も十分満たされます。" @@ -46652,7 +46640,7 @@ msgid "dried rice" msgid_plural "dried rice" msgstr[0] "米(乾燥)" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -46664,7 +46652,7 @@ msgid "cooked rice" msgid_plural "cooked rice" msgstr[0] "米(調理済)" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "炊き上がった長粒種の白米です。ボリューム満点。" @@ -46674,7 +46662,7 @@ msgid "fried rice" msgid_plural "fried rice" msgstr[0] "炒飯(野菜)" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "ご飯と野菜を一緒に炒めた料理です。美味しく、お腹も十分満たされます。" @@ -46684,7 +46672,7 @@ msgid "beans and rice" msgid_plural "beans and rice" msgstr[0] "豆飯" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -46696,7 +46684,7 @@ msgid "tofu fried rice" msgid_plural "tofu fried rice" msgstr[0] "炒飯(豆腐)" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "ご飯と豆腐と野菜を一緒に炒めた料理です。美味しく、お腹も十分満たされます。" @@ -46706,7 +46694,7 @@ msgid "tofu stirfry" msgid_plural "tofu stirfry" msgstr[0] "豆腐飯" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -46718,7 +46706,7 @@ msgid "deluxe vegetarian beans and rice" msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "DX豆飯(野菜)" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -46784,7 +46772,7 @@ msgid "pesto" msgid_plural "pesto" msgstr[0] "ペストソース" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "オリーブオイル、バジル、ガーリック、松の実が入ったシンプルで美味しいペストソースです。" @@ -46818,7 +46806,7 @@ msgid "spaghetti al pesto" msgid_plural "spaghetti al pesto" msgstr[0] "スパゲッティ(ペストソース)" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "ペストソースを贅沢に使ったスパゲッティです。うまい!" @@ -46839,7 +46827,7 @@ msgid "sauerkraut w/ sautee'd onions" msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "ザワークラウトとタマネギのソテー" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -46875,7 +46863,7 @@ msgid "dehydrated corn kernels" msgid_plural "dehydrated corn kernels" msgstr[0] "ドライコーン" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "乾燥させたコーン粒です。" @@ -46897,7 +46885,7 @@ msgid "rehydrated corn kernels" msgid_plural "rehydrated corn kernels" msgstr[0] "水で戻したコーン" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -46967,7 +46955,7 @@ msgid "sushi rice" msgid_plural "sushi rice" msgstr[0] "酢飯" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "酢で味付けされた米です。主に寿司を作るために使われます。" @@ -46977,7 +46965,7 @@ msgid "onigiri" msgid_plural "onigiri" msgstr[0] "おにぎり" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -46989,7 +46977,7 @@ msgid "vegetable hosomaki" msgid_plural "vegetable hosomaki" msgstr[0] "巻き寿司(野菜)" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -47013,7 +47001,7 @@ msgid "sauerkraut" msgid_plural "sauerkraut" msgstr[0] "ザワークラウト" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -47036,7 +47024,7 @@ msgid "boiled fiddleheads" msgid_plural "boiled fiddleheads" msgstr[0] "ゼンマイ(湯煮)" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "茹でたゼンマイです。悪くはありませんが、できればバターを使ってソテーにしたいところです。" @@ -47046,7 +47034,7 @@ msgid "sauteed fiddleheads" msgid_plural "sauteed fiddleheads" msgstr[0] "ゼンマイソテー" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "油でソテーにしたゼンマイです。柔らかく美味です。" @@ -47063,7 +47051,7 @@ msgid "" " are removed." msgstr "芯を取り除いて調理したピーマンです。生でそのまま食べるよりも断然美味しく食べられます。" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "生の小麦は、とても食べられたものではありません。" @@ -47073,7 +47061,7 @@ msgid "raw spaghetti pasta" msgid_plural "raw spaghetti pasta" msgstr[0] "スパゲッティ(未調理)" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -47085,7 +47073,7 @@ msgid "raw lasagne pasta" msgid_plural "raw lasagne pasta" msgstr[0] "ラザーニャ(未調理)" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -47097,7 +47085,7 @@ msgid "boiled noodles" msgid_plural "boiled noodles" msgstr[0] "ゆで麺" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "できたての水茹で麺です。まったく面白みのない味ですが、お腹は満たされます。" @@ -47107,7 +47095,7 @@ msgid "raw macaroni" msgid_plural "raw macaroni" msgstr[0] "マカロニ(乾燥)" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "調理を施せば美味しく食べられます。しかし、餓死寸前だというならそのまま食べるのも悪くはないでしょう。" @@ -47117,7 +47105,7 @@ msgid "mac & cheese" msgid_plural "mac & cheese" msgstr[0] "マカロニチーズ" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -47129,7 +47117,7 @@ msgid "flour" msgid_plural "flour" msgstr[0] "穀粉" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "栄養豊富な白い穀粉です。パンが焼けます。" @@ -47139,7 +47127,7 @@ msgid "bread flour" msgid_plural "bread flour" msgstr[0] "パン粉" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -47151,14 +47139,14 @@ msgid "oatmeal" msgid_plural "oatmeal" msgstr[0] "オートミール" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "燕麦を潰して乾燥させたものです。そのままでは馬の飼料ですが、調理すれば栄養価が高い食品になります。" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "生の燕麦です。" @@ -47168,7 +47156,7 @@ msgid "cooked oatmeal" msgid_plural "cooked oatmeal" msgstr[0] "オートミール(調理済)" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -47180,7 +47168,7 @@ msgid "deluxe cooked oatmeal" msgid_plural "deluxe cooked oatmeal" msgstr[0] "DXオートミール(調理済)" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -47259,7 +47247,7 @@ msgid "oyster crackers" msgid_plural "oyster crackers" msgstr[0] "オイスタークラッカー" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -47291,7 +47279,7 @@ msgid "granola" msgid_plural "granola" msgstr[0] "グラノーラ" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -47313,7 +47301,7 @@ msgid "fast noodles" msgid_plural "fast noodles" msgstr[0] "インスタントヌードル" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "いわゆるラーメンです。生でも食べられます。" @@ -47493,7 +47481,7 @@ msgid "pineapple stem" msgid_plural "pineapple stem" msgstr[0] "茎(パイナップル)" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "パイナップルの根茎です。自家栽培できます。" @@ -47503,7 +47491,7 @@ msgid "melon seeds" msgid_plural "melon seeds" msgstr[0] "種(メロン)" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "メロンの種です。" @@ -47513,7 +47501,7 @@ msgid "banana saplings" msgid_plural "banana saplings" msgstr[0] "苗(バナナ)" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "バナナの苗木です。" @@ -47523,7 +47511,7 @@ msgid "orange vine" msgid_plural "orange vine" msgstr[0] "苗(オレンジ)" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "オレンジの苗木です。間違いなく遺伝子組み換え植物です。" @@ -47533,7 +47521,7 @@ msgid "lemon vine" msgid_plural "lemon vine" msgstr[0] "苗(レモン)" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "レモンの苗木です。間違いなく遺伝子組み換え植物です。" @@ -47543,7 +47531,7 @@ msgid "subterraenean coconut" msgid_plural "subterraenean coconut" msgstr[0] "苗(ココナッツ)" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "人間が大変動以前に行なっていた度が過ぎた行動の結実です。" @@ -47588,7 +47576,7 @@ msgid "cooked freezerburned human meat" msgid_plural "cooked freezerburned human meat" msgstr[0] "壊死した人肉(調理済)" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "調理を施した、新鮮な薄切り人肉です。酷い凍傷の跡があります。" @@ -47630,7 +47618,7 @@ msgid "freezerburned human tallow" msgid_plural "freezerburned human tallow" msgstr[0] "精製壊死人脂" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -47642,7 +47630,7 @@ msgid "freezerburned human lard" msgid_plural "freezerburned human lard" msgstr[0] "壊死した人脂" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -47681,7 +47669,7 @@ msgid "cooked alien flesh" msgid_plural "cooked alien flesh" msgstr[0] "異星肉塊(調理済)" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -47782,7 +47770,7 @@ msgid "raw alien brains" msgid_plural "raw alien brains" msgstr[0] "異星脳" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -47795,7 +47783,7 @@ msgid "cooked alien brains" msgid_plural "cooked alien brains" msgstr[0] "異星脳(調理済)" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -47879,7 +47867,7 @@ msgid "alien tallow" msgid_plural "alien tallow" msgstr[0] "精製異星獣脂" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -47893,7 +47881,7 @@ msgid "alien lard" msgid_plural "alien lard" msgstr[0] "異星獣脂" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -47907,7 +47895,7 @@ msgid "unidentifiable alien organs" msgid_plural "unidentifiable alien organs" msgstr[0] "異星臓器" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -47918,7 +47906,7 @@ msgid "alien cracklins" msgid_plural "alien cracklins" msgstr[0] "異星クラックリング" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -47930,7 +47918,7 @@ msgid "freezerburned human cracklins" msgid_plural "freezerburned human cracklins" msgstr[0] "壊死人肉クラックリング" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -47984,7 +47972,7 @@ msgid "mealgrub spores" msgid_plural "mealgrub spores" msgstr[0] "食用ワーム種" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -48000,7 +47988,7 @@ msgid "mealgrub broth" msgid_plural "mealgrub broth" msgstr[0] "食用ワーム培養液" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -48014,7 +48002,7 @@ msgid "live mealgrubs" msgid_plural "live mealgrubs" msgstr[0] "活食用ワーム" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -48028,7 +48016,7 @@ msgid "mealgrubs" msgid_plural "mealgrubs" msgstr[0] "食用ワーム" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -48090,7 +48078,7 @@ msgid "H₂O™" msgid_plural "H₂O™" msgstr[0] "H₂O™" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -48105,7 +48093,7 @@ msgid "food cubes" msgid_plural "food cubes" msgstr[0] "フードキューブ" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -48116,7 +48104,7 @@ msgid "Foodplace's Food-to-go™" msgid_plural "Foodplace's Food-to-go™" msgstr[0] "フード・トゥ・ゴー™" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -48138,7 +48126,7 @@ msgid "cee wafers" msgid_plural "cee wafers" msgstr[0] "Cウエハース" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -48164,7 +48152,7 @@ msgid "soup, flavor 27" msgid_plural "soup, flavor 27" msgstr[0] "フレーバー27スープ" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -48178,7 +48166,7 @@ msgid "landfall survival rations" msgid_plural "landfall survival rations" msgstr[0] "着陸時サバイバルレーション" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -48194,7 +48182,7 @@ msgid "caffex" msgid_plural "caffex" msgstr[0] "カフェックス" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -48233,7 +48221,7 @@ msgid "supercritical coolant" msgid_plural "supercritical coolant" msgstr[0] "超臨界冷却剤" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -48292,7 +48280,7 @@ msgid "SpOreos" msgid_plural "SpOreos" msgstr[0] "真菌オレオ" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -48313,7 +48301,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "中心部にうごめく小さな斑点が見える、地球外のハイドロゲルの塊です。「飲む」ことも可能ですが、気持ちのいいものではありません。" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -48585,15 +48573,25 @@ msgid_plural "siats eggs" msgstr[0] "卵(シアッツ)" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" -msgstr[0] "卵(ティラノサウルス)" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" +msgstr[0] "卵(ゴルゴサウルス)" #: lang/json/COMESTIBLE_from_json.py msgid "albertosaurus egg" msgid_plural "albertosaurus eggs" msgstr[0] "卵(アルバートサウルス)" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "卵(キアンゾウサウルス)" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "卵(ティラノサウルス)" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -48629,6 +48627,11 @@ msgid "eoraptor egg" msgid_plural "eoraptor eggs" msgstr[0] "卵(エオラプトル)" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "卵(アマルガサウルス)" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -48729,6 +48732,11 @@ msgid "pentaceratops egg" msgid_plural "pentaceratops eggs" msgstr[0] "卵(ペンタケラトプス)" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "卵(コスモケラトプス)" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -48759,21 +48767,6 @@ msgid "mosasaurus egg" msgid_plural "mosasaurus eggs" msgstr[0] "卵(モササウルス)" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "卵(キアンゾウサウルス)" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "卵(アマルガサウルス)" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "卵(コスモケラトプス)" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -49054,7 +49047,7 @@ msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "竜の肉" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -49116,7 +49109,7 @@ msgid "mana infused blood" msgid_plural "mana infused blood" msgstr[0] "マナ血液" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -49173,14 +49166,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "ラムネ菓子の死体です。どこからどう見ても巨大なラムネ菓子そのものです。一口ぐらいかじってもいいかな?" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "プニプニ、フワフワ、モコモコとした美味しいマシュマロです。不思議な温もりを感じます..." -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -49263,7 +49256,7 @@ msgid "raw chocolate milk" msgid_plural "raw chocolate milk" msgstr[0] "チョコローミルク" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -49273,7 +49266,7 @@ msgid "" msgstr "" "成分調整や低温殺菌を経ていない、チョコレートウシから絞った未加工のチョコレートミルクです。牛から直接飲まない限りは、新鮮とは言えません。飲食に対する考え方によっては、飲む前に低温殺菌もしくは煮沸した方がいいと思う人もいるでしょう。" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -49284,7 +49277,7 @@ msgid "liquid cacao" msgid_plural "liquid cacao" msgstr[0] "カカオ液" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "砂糖を加えていない、かなり苦い液状のカカオです。" @@ -49294,7 +49287,7 @@ msgid "reconstituted chocolate milk" msgid_plural "reconstituted chocolate milk" msgstr[0] "還元チョコミルク" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -49306,7 +49299,7 @@ msgid "powdered chocolate milk" msgid_plural "powdered chocolate milk" msgstr[0] "チョコミルク粉末" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -49324,7 +49317,7 @@ msgid "pieces of candy wrapper" msgid_plural "pieces of candy wrapper" msgstr[0] "飴の欠片" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -49338,7 +49331,7 @@ msgid "sticky sludge" msgid_plural "sticky sludge" msgstr[0] "粘性の排出物" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -49859,7 +49852,7 @@ msgstr[0] "三日月型の石" #: lang/json/GENERIC_from_json.py msgid "fetid goop" msgid_plural "fetid goops" -msgstr[0] "臭いヘドロ" +msgstr[0] "臭い粘液" #. ~ Description for fetid goop #: lang/json/GENERIC_from_json.py @@ -49885,7 +49878,7 @@ msgid "rock salt" msgid_plural "rock salt" msgstr[0] "岩塩" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "少量の岩塩です。精製して食塩に出来ます。" @@ -49895,7 +49888,7 @@ msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "ロードナイト" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -49907,7 +49900,7 @@ msgid "zincite" msgid_plural "zincite" msgstr[0] "ジンカイト" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -49941,7 +49934,7 @@ msgid "hickory nuts" msgid_plural "hickory nuts" msgstr[0] "ヒッコリーナッツ" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "ヒッコリーの木から採取した硬い実です。殻が付いています。" @@ -49951,7 +49944,7 @@ msgid "pecans" msgid_plural "pecans" msgstr[0] "ペカン" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "ペカンの木から採取した硬い実です。殻が付いています。" @@ -49961,7 +49954,7 @@ msgid "pistachios" msgid_plural "pistachios" msgstr[0] "ピスタチオ" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "ピスタチオの木から採取した硬い実です。殻が付いています。" @@ -49971,7 +49964,7 @@ msgid "almonds" msgid_plural "almonds" msgstr[0] "アーモンド" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "アーモンドの木から採取した硬い実です。殻が付いています。" @@ -49981,7 +49974,7 @@ msgid "peanuts" msgid_plural "peanuts" msgstr[0] "ピーナッツ" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "ラッカセイの茂みから採取した硬い実です。殻が付いています。" @@ -49991,7 +49984,7 @@ msgid "hazelnuts" msgid_plural "hazelnuts" msgstr[0] "ヘーゼルナッツ" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "ハシバミの木から採取した硬い実です。殻が付いています。" @@ -50001,7 +49994,7 @@ msgid "chestnuts" msgid_plural "chestnuts" msgstr[0] "クリ" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "クリの木から採取した硬い実です。殻が付いています。" @@ -50011,7 +50004,7 @@ msgid "walnuts" msgid_plural "walnuts" msgstr[0] "クルミ" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "クルミの木から採取した硬い実です。殻が付いています。" @@ -50275,6 +50268,17 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "公衆衛生総監の警告: 喫煙は肺がん、心臓病、肺気腫の原因になり、妊娠を困難にする恐れがあります。" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "葉巻ケース" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "葉巻を2本まで収納できる、木と革で作られた小さなケースです。" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -50285,6 +50289,18 @@ msgstr[0] "段ボール箱S" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "小さな段ボール箱です。靴が一足入る程度の寸法です。" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "木箱S" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "一辺が数cmしかない、ちょっとした小物を入れるのに丁度いい小さな木箱です。" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -51004,7 +51020,7 @@ msgid "semi ground grains" msgid_plural "semi ground grains" msgstr[0] "粗挽穀粉" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "まだ完全に粉砕されていない、粒の粗い穀粉です。" @@ -51014,7 +51030,7 @@ msgid "smoldering embers" msgid_plural "smoldering embers" msgstr[0] "燻る残り火" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -51204,6 +51220,27 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "何の特徴もない、北米で流通しているシリンダー錠用の古びた鍵です。どこの錠を開けられるかなんて、神にしか分かりません。気にするだけ無駄です。" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "シガーカッター" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "葉巻の先端をカットするための、小さな刃が付いた道具です。" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "シガーパンチ" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "葉巻の先端に穴をあけるための、小さな筒状の道具です。" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -51384,7 +51421,7 @@ msgid "superglue" msgid_plural "superglue" msgstr[0] "瞬間接着剤" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "チューブに入った強力な接着剤です。多くのレシピで利用します。" @@ -51651,7 +51688,7 @@ msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "FEMAデータ" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -51786,7 +51823,7 @@ msgid "concrete" msgid_plural "concrete" msgstr[0] "コンクリート" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "いつでも建築に使えるよう調整されたコンクリートです。" @@ -52566,7 +52603,7 @@ msgid "clockworks" msgid_plural "clockworks" msgstr[0] "時計用計時機構" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "歯車など時計の機構に必要となる小さな部品の詰め合わせです。" @@ -52687,7 +52724,7 @@ msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "カモミールの花" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -52711,7 +52748,7 @@ msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "スパージの花" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -52743,7 +52780,7 @@ msgid "mortar" msgid_plural "mortar" msgstr[0] "モルタル" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "いつでも建築に使えるよう調整されたモルタルです。" @@ -52787,7 +52824,7 @@ msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "日干しレンガ用モルタル" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -52799,7 +52836,7 @@ msgid "tanbark" msgid_plural "tanbark" msgstr[0] "タン皮" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "タンニンを豊富に含む樹皮です。皮を鞣す際に役立つでしょう。" @@ -52819,7 +52856,7 @@ msgid "willowbark" msgid_plural "willowbark" msgstr[0] "ヤナギ樹皮" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -53220,7 +53257,7 @@ msgid "raw tobacco" msgid_plural "raw tobacco" msgstr[0] "タバコの葉" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -53501,7 +53538,7 @@ msgid "plastic dice" msgid_plural "plastic dice" msgstr[0] "サイコロ(プラスチック)" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "プラスチック製の六面体のサイコロです。" @@ -53522,7 +53559,7 @@ msgid "alder bark" msgid_plural "alder bark" msgstr[0] "ハンノキ樹皮" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -53839,14 +53876,14 @@ msgstr "医師が着用するバッジです。裏面には使用方法が記載 #: lang/json/GENERIC_from_json.py msgid "snail sample" msgid_plural "snail samples" -msgstr[0] "" +msgstr[0] "カタツムリ生体サンプル" #. ~ Description for snail sample #: lang/json/GENERIC_from_json.py msgid "" "A sample of things that make up key parts of being a snail. You will " "probably need to find a very large snail." -msgstr "" +msgstr "カタツムリの主成分で構成された生体サンプルです。非常に巨大なカタツムリから採取されたようです。" #: lang/json/GENERIC_from_json.py msgid "rabbit sample" @@ -53861,14 +53898,99 @@ msgstr "ウサギから採取した小さな足です。幸運のお守りだな #: lang/json/GENERIC_from_json.py msgid "frog sample" msgid_plural "frog samples" -msgstr[0] "" +msgstr[0] "カエル生体サンプル" #. ~ Description for frog sample #: lang/json/GENERIC_from_json.py msgid "" "A sample of things that make up key parts of being a frog. You will " "probably need to find a very large frog." -msgstr "" +msgstr "カエルの主成分で構成された生体サンプルです。非常に巨大なカエルから採取されたようです。" + +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "昆虫生体サンプル" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "昆虫の主成分で構成された生体サンプルです。非常に巨大な昆虫から採取されたようです。" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "ウシ生体サンプル" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "ウシの主成分で構成された生体サンプルです。生きているウシから採取されたようです。" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "デバネズミ生体サンプル" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "地中生物の主成分で構成された生体サンプルです。地中に棲む巨大生物から採取されたようです。" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "クモ生体サンプル" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "クモの主成分で構成された生体サンプルです。採取元と思しき非常に巨大なクモは、今ならどこにでも存在しますね?" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "爬虫類生体サンプル" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "トカゲの主成分で構成された生体サンプルです。ワニや巨大ガラガラヘビなどから採取されたようです。" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "オオカミ生体サンプル" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "オオカミの主成分で構成された生体サンプルです。女王陛下に同伴するロン・チェイニー・ジュニアから採取したのでしょうか?" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "ネコ生体サンプル" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "ネコの主成分で構成された生体サンプルです。この地域に生息しているヤマネコやピューマから採取したのでしょうか?" #: lang/json/GENERIC_from_json.py msgid "flyer" @@ -54577,7 +54699,7 @@ msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "自己監視センサー" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -54702,7 +54824,7 @@ msgid "turret interior chassis" msgid_plural "turret interior chassis" msgstr[0] "シャシー(タレット)" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -54714,7 +54836,7 @@ msgid "police bot chassis" msgid_plural "police bot chassis" msgstr[0] "シャシー(警官ロボット)" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -54741,7 +54863,7 @@ msgid "Alarm System CBM installation data" msgid_plural "Alarm System CBM installation data" msgstr[0] "CBMデータ(警報システム)" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54757,7 +54879,7 @@ msgid "LED Tattoo CBM installation data" msgid_plural "LED Tattoo CBM installation data" msgstr[0] "CBMデータ(LEDタトゥー)" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54773,7 +54895,7 @@ msgid "Power Armor Interface CBM installation data" msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "CBMデータ(パワーアーマーインターフェース)" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54789,7 +54911,7 @@ msgid "Power Storage CBM installation data" msgid_plural "Power Storage CBM installation data" msgstr[0] "CBMデータ(蓄電装置)" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54805,7 +54927,7 @@ msgid "Power Storage CBM Mk. II installation data" msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "CBMデータ(蓄電装置Mk.II)" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54821,7 +54943,7 @@ msgid "Internal Chronometer CBM installation data" msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "CBMデータ(体内精密時計)" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54837,7 +54959,7 @@ msgid "Intravenous Needletip CBM installation data" msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "CBMデータ(静脈直結カテーテル)" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54853,7 +54975,7 @@ msgid "Blood Analysis CBM installation data" msgid_plural "Blood Analysis CBM installation data" msgstr[0] "CBMデータ(血液分析センサー)" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54869,7 +54991,7 @@ msgid "Cranial Flashlight CBM installation data" msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "CBMデータ(頭部LEDライト)" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54885,7 +55007,7 @@ msgid "Electromagnetic Unit CBM installation data" msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "CBMデータ(電磁ユニット)" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54901,7 +55023,7 @@ msgid "Soporific Induction CBM installation data" msgid_plural "Soporific Induction CBM installation data" msgstr[0] "CBMデータ(睡眠導入装置)" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54917,7 +55039,7 @@ msgid "Arms Alloy Plating CBM installation data" msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "CBMデータ(合金装甲 - 脚)" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54933,7 +55055,7 @@ msgid "Legs Alloy Plating CBM installation data" msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "CBMデータ(合金装甲 - 腕)" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54949,7 +55071,7 @@ msgid "Shotgun Arm CBM installation data" msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "CBMデータ(ショットガンアーム)" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54965,7 +55087,7 @@ msgid "Blood Filter CBM installation data" msgid_plural "Blood Filter CBM installation data" msgstr[0] "CBMデータ(血液ろ過システム)" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54981,8 +55103,7 @@ msgid "Internal Climate Control CBM installation data" msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "CBMデータ(体温制御装置)" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54998,7 +55119,7 @@ msgid "Integrated Dosimeter CBM installation data" msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "CBMデータ(内蔵放射線量計)" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -55014,7 +55135,7 @@ msgid "Thermal Dissipation CBM installation data" msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "CBMデータ(熱消散システム)" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -55030,7 +55151,7 @@ msgid "Weather Reader CBM installation data" msgid_plural "Weather Reader CBM installation data" msgstr[0] "CBMデータ(気象表示装置)" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -55046,7 +55167,7 @@ msgid "Railgun CBM installation data" msgid_plural "Railgun CBM installation data" msgstr[0] "CBMデータ(レールガン)" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -55062,7 +55183,7 @@ msgid "Unified Power System CBM installation data" msgid_plural "Unified Power System CBM installation data" msgstr[0] "CBMデータ(統合電源システム)" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -55078,8 +55199,7 @@ msgid "Titanium Skeletal Bracing CBM installation data" msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "CBMデータ(チタン製骨格支柱)" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -55100,7 +55220,7 @@ msgid "misc software" msgid_plural "misc software" msgstr[0] "色々なソフトウェア" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "多数存在する娯楽用ソフトウェアの1つです。多分、今となっては何の役にも立たないでしょう。" @@ -55110,7 +55230,7 @@ msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "ハックプロ" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "ハッキング用ソフトウェアの1つです。" @@ -55120,7 +55240,7 @@ msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "メディソフト" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "医療用ソフトウェアの1つです。" @@ -55130,7 +55250,7 @@ msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "マスマックス" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "数学用ソフトウェアの1つです。" @@ -55140,7 +55260,7 @@ msgid "infection data" msgid_plural "infection data" msgstr[0] "感染データ" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "ゾンビ血液の医療データです。" @@ -55150,7 +55270,7 @@ msgid "lab data" msgid_plural "lab data" msgstr[0] "実験記録" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "政府機関の研究所で行われた研究の記録です。" @@ -55160,7 +55280,7 @@ msgid "train data" msgid_plural "train data" msgstr[0] "列車運行記録" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "地下鉄路線の運行経路とスケジュールについての記録です。" @@ -55170,7 +55290,7 @@ msgid "neural data" msgid_plural "neural data" msgstr[0] "ニューロンデータ" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -55455,27 +55575,38 @@ msgid "" "feeling sufficiently ghoulish." msgstr "亜人の骨です。非常に残酷な者なら、何かの材料として使おうと考えるかもしれません。" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "人間の頭蓋骨" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "人間の頭蓋骨です。こんなものを持ち歩いていたら、友達ができませんよ。" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "死体" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "(内臓摘出)" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" msgid_plural "skinned %s" msgstr[0] "%s(皮剥)" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -55541,7 +55672,7 @@ msgstr "性別が分からないほど大量の弾痕が残った子供の死体 msgid "" "The corpse of an infant. A single small-caliber bullet has been put through" " its skull." -msgstr "" +msgstr "乳児の死体です。頭蓋骨に小口径の銃弾が一発撃ちこまれています。" #. ~ Description for corpse #: lang/json/GENERIC_from_json.py @@ -55577,24 +55708,24 @@ msgstr "背中を刺された痕跡が残っている死体です。" msgid "" "The bloody corpse of a young man. He has been stabbed repeatedly in the " "jugular and throat with a small blade." -msgstr "" +msgstr "血まみれになった若い男の死体です。頸動脈と喉を小型のナイフで何度も刺されています。" #: lang/json/GENERIC_from_json.py msgid "" "The dead body of a person. They look to have been skewered through with a " "large sharp implement." -msgstr "" +msgstr "人間の死体です。大きく鋭いもので串刺しにされたようです。" #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a tall middle-aged woman. She appears to have many stab " "wounds up her legs and thighs." -msgstr "" +msgstr "背の高い中年女性の死体です。脚や太ももにたくさんの刺し傷が残っています。" #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a small old lady, her face caked in blood and missing an eye." -msgstr "" +msgstr "小柄な老婦人の死体です。顔は血に塗れており、片目が無くなっています。" #. ~ Description for corpse #: lang/json/GENERIC_from_json.py @@ -55621,38 +55752,38 @@ msgstr "顎から上が消失した死体です。何が原因でこうなった msgid "" "The corpse of a young blond woman shot several times in the back with a low-" "caliber weapon." -msgstr "" +msgstr "金髪の若い女性の死体です。小口径の銃で背中を数回撃たれたようです。" #: lang/json/GENERIC_from_json.py msgid "" "An androgynous-looking corpse gored by arms fire chest to thighs, leaving " "the face eerily pristine." -msgstr "" +msgstr "男女の判別がつかない死体です。胸から太ももにかけて銃創でグチャグチャになっており、顔は不自然なほどに崩れています。" #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a seemingly older male. He appears to have been shot in the " "forehead at a very close range leaving you a good view of his brain matter." -msgstr "" +msgstr "年配と思われる男性の死体です。至近距離から額を撃たれたようで、脳が露出しています。" #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a middle-aged woman, her legs and arms covered in blood. She " "appears to have been shot in the thigh." -msgstr "" +msgstr "中年女性の遺体です。脚と腕は血に塗れており、太ももは銃で撃たれたようです。" #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a young man who appears to have been shot to death. His right" " arm is only barely still attached to his shoulder." -msgstr "" +msgstr "射殺されたと思われる若い男性の死体です。右腕が肩とかろうじて繋がっており、今にもちぎれそうです。" #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a tall woman unblemished but for the bloody hole atop her " "head, its thick black hair intermixed now with brain, viscera and shotgun " "pellets." -msgstr "" +msgstr "背の高い女性の死体です。頭部に血塗れの穴が開いている以外は無傷です。豊かな黒髪に脳や肉、ショットガンの弾が絡みついています。" #: lang/json/GENERIC_from_json.py msgid "broken exodii worker" @@ -55709,7 +55840,7 @@ msgid "trifacet remains" msgid_plural "trifacet remains" msgstr[0] "トリファセットの残骸" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -56028,6 +56159,96 @@ msgid "" "useful for scouring toilet bowls." msgstr "この硬いブラシは便器を洗うときにしか役立ちません。ゾンビを威圧したり侮辱したりもできません。" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "シラミ取り櫛" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "歯に螺旋状の溝が付いている、ステンレス製の櫛です。髪に付着した寄生虫を取り除くことができます。考えただけでも痒くなりますね。" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "浴玩" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "風呂に浮かべて遊ぶおもちゃです。" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "風呂に浮かべて遊ぶ、ゴム製の黄色いアヒルです。" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "風呂に浮かべて遊ぶ、大きな白い目をしたゴム製の黒いアヒルです。" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "風呂に浮かべて遊ぶ、ニヤリと笑っている緑色の小さな恐竜のおもちゃです。" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "電動歯ブラシ" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "プラスチック製の電動歯ブラシです。" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "液体石鹸を入れて洗面所で使うための、使用済みのプッシュボトルです。" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "ヘアカラー用シャンプーのボトルです。" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "一番安物のシャンプーを入れる真っ白なボトルです。" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "ボディソープ用のボトルです。ラベルに「アフリカ」と書かれています。" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "ヘアーコンディショナーを入れるボトルです。" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "子供向けの全身シャンプーを入れる色鮮やかなボトルです。" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "一番安物のヘアコンディショナーを入れる真っ白なボトルです。" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "一番安物のシャワージェルを入れる真っ白なボトルです。" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "入れ歯" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "標準的な入れ歯です。持ち主以外の役には立ちません。" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -57453,7 +57674,7 @@ msgstr[0] "フライパン(鋼)" #: lang/json/GENERIC_from_json.py msgid "" "A steel frying pan. Makes a decent melee weapon, and is used for cooking." -msgstr "鋳鉄製のフライパンです。まともな近接武器ですが、ちゃんと料理にも使えます。" +msgstr "スチール製のフライパンです。まともな近接武器ですが、ちゃんと料理にも使えます。" #: lang/json/GENERIC_from_json.py msgid "copper frying pan" @@ -57628,7 +57849,7 @@ msgid "headphones" msgid_plural "headphones" msgstr[0] "ヘッドフォン" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -57705,7 +57926,7 @@ msgid "spare parts" msgid_plural "spare parts" msgstr[0] "予備部品" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -58267,7 +58488,7 @@ msgid "bokken" msgid_plural "bokken" msgstr[0] "木刀" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -58276,14 +58497,14 @@ msgid "" msgstr "" "本物に近い重量やバランスを再現して製作された鍛錬用の木製模擬刀です。鋭い金属の刃はありませんが、その重量と堅木の刃によって致命的な傷を与える事は十分に可能でしょう。" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "「訓練」で使う丈夫な木製の刀です。武器として使うにはあまりにも軽すぎます。" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -58811,7 +59032,7 @@ msgid "bionic claws" msgid_plural "bionic claws" msgstr[0] "アダマンチウム・クロー" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "短くて鋭い鉤爪です。先端技術で生成した金属から作られています。" @@ -59017,7 +59238,7 @@ msgid "qiang" msgid_plural "qiang" msgstr[0] "鎗(qiang)" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -59060,7 +59281,7 @@ msgid "naginata" msgid_plural "naginata" msgstr[0] "薙刀" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -59068,7 +59289,7 @@ msgid "" "or by their wives in defense of the household." msgstr "刀をはじめとする日本の刀剣と同じ流れを汲む長柄武器です。侍によって戦場で、あるいはその妻女によって御家を守るために使われました。" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -59076,7 +59297,7 @@ msgid "" "feels a bit shoddily made." msgstr "刀をはじめとする日本の刀剣と同じ手法で作られた、湾曲した刃を持つ頑丈な長柄武器です。刃が少しガタついており、作りが雑な気がします。" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -59089,7 +59310,7 @@ msgid "survivor naginata" msgid_plural "survivor naginata" msgstr[0] "サバイバー薙刀" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -59211,7 +59432,7 @@ msgid "ji" msgid_plural "ji" msgstr[0] "戟(ji)" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -59269,13 +59490,27 @@ msgid "" msgstr "" "木製の剣に数個の金属屑を取り付けて刃にした剣です。作りが粗いためバランスが悪く取り回し辛いですが、ギザギザの刃は確かな斬撃性能を生み出しています。" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "金属剣" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" +"少なくとも剣の形状は知っている人間が作った、真剣の模造品です。見た目は本物そっくりで切れ味もありますが、素材の品質が悪く、全体的なバランスも取れていません。" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" msgid_plural "jian" msgstr[0] "劍(jian)" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -59354,14 +59589,14 @@ msgid "tanto" msgid_plural "tanto" msgstr[0] "短刀" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "脇差が登場する以前の時代の、侍が懐刀として使っていた武器...の安価で刃が鈍いレプリカです。" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -59375,14 +59610,14 @@ msgid "nodachi" msgid_plural "nodachi" msgstr[0] "野太刀" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "反りの入った長大な太刀...の安価なレプリカです。大きさの割には軽量ですが、刃がないので切れ味は最悪です。" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -59515,7 +59750,7 @@ msgid "katana" msgid_plural "katana" msgstr[0] "日本刀" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "希少価値の高い日本刀...の安価なレプリカです。刃がないので切れ味は最悪です。" @@ -59580,7 +59815,7 @@ msgid "wakizashi" msgid_plural "wakizashi" msgstr[0] "脇差" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -59640,7 +59875,7 @@ msgid "tiger claws" msgid_plural "tiger claws" msgstr[0] "タイガークロー" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -59860,12 +60095,26 @@ msgid "" msgstr "" "奇妙な樹脂の断片です。縁は丸みを帯びていて艶があり、表面がざらついた巨大なビーチグラスのようにも見えます。触ってみるとほのかに温かさを感じます。" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "異星植物" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" +"大きさ約60cmの葉を広げる、高さ約60cmの巨大なシダ植物です。いつの日か、この植物を材料にした物の作り方を思い付く時が来るかもしれませんね。" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "シャシー(エクゾディ)" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -59881,7 +60130,7 @@ msgid "Exodii drone chassis" msgid_plural "Exodii drone chassis" msgstr[0] "シャシー(エクゾディドローン)" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -59925,7 +60174,7 @@ msgid "inscribed metal plates" msgid_plural "inscribed metal plates" msgstr[0] "金属製の装置" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -60200,7 +60449,7 @@ msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "銅屑" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "小さな銅の欠片です。修復やアイテム製作に使います。" @@ -60446,7 +60695,7 @@ msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "裂けた木材" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "裂けて使い物にならなくなった木材です。串や焚き付けとして利用できます。" @@ -60652,17 +60901,17 @@ msgid "sealed yeast culture" msgid_plural "sealed yeast culture" msgstr[0] "密封フラスコ(酵母培養液)" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "フラスコを開けて、培養液を採取しました。" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "酵母はまだ培養されていません。" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -61794,7 +62043,7 @@ msgid "oars" msgid_plural "oars" msgstr[0] "オール" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "ボート用のオールです。" @@ -61814,7 +62063,7 @@ msgid "inflatable section" msgid_plural "inflatable section" msgstr[0] "膨張式空気袋" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "空気で膨らむボートの部品です。" @@ -61824,7 +62073,7 @@ msgid "inflatable airbag" msgid_plural "inflatable airbag" msgstr[0] "エアバッグ" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "膨張式エアバッグです。" @@ -62615,7 +62864,7 @@ msgid "chime loudspeakers" msgid_plural "chime loudspeakers" msgstr[0] "チャイムスピーカー" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -62629,7 +62878,7 @@ msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "板金" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "金属製の薄板です。" @@ -62639,7 +62888,7 @@ msgid "wired sheet metal" msgid_plural "wired sheet metal" msgstr[0] "配線付き板金" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "内部に照明用の配線が施された薄い金属板です。" @@ -62659,7 +62908,7 @@ msgid "steel plating" msgid_plural "steel plating" msgstr[0] "装甲板(鋼)" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "鋼鉄で作られた装甲板です。" @@ -62669,7 +62918,7 @@ msgid "superalloy plating" msgid_plural "superalloy plating" msgstr[0] "装甲板(超合金)" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "頑丈な超合金で作られた装甲板です。" @@ -62690,7 +62939,7 @@ msgid "spiked plating" msgid_plural "spiked plating" msgstr[0] "装甲板(スパイク鋼)" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -62901,12 +63150,18 @@ msgid_plural "solar panels" msgstr[0] "ソーラーパネル" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "太陽光のエネルギーを電力に変換する電子部品です。車両部品として使います。" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "組立式ソーラーアレイ" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -63027,6 +63282,16 @@ msgstr[0] "車両用ヒーター" msgid "A vehicle-mounted area heater." msgstr "車内を暖めるヒーターです。" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "車両用小型ヒーター" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "車内を暖める小型のヒーターです。" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -63431,7 +63696,7 @@ msgid "Dana's family sourdough starter" msgid_plural "Dana's family sourdough starter" msgstr[0] "ダナのサワー種スターター" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -63491,7 +63756,7 @@ msgid "bioweapon chassis" msgid_plural "bioweapon chassis" msgstr[0] "シャシー(生体タレット)" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -63764,7 +64029,7 @@ msgid "broken Isohypsa" msgid_plural "broken Isohypsa" msgstr[0] "壊れたイソヒプサ" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -63776,7 +64041,7 @@ msgid "broken Kabura-ya" msgid_plural "broken Kabura-ya" msgstr[0] "壊れたカブラヤ" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -63892,7 +64157,7 @@ msgid "scrap titanium" msgid_plural "scrap titanium" msgstr[0] "チタン屑" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "小さなチタンの欠片です。修復やアイテム製作に使います。" @@ -63902,7 +64167,7 @@ msgid "nuclear waste" msgid_plural "nuclear waste" msgstr[0] "核廃棄物" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "触ると温かみを感じる、金属のような銀色のペレットです。" @@ -64084,7 +64349,7 @@ msgid "tripod chassis" msgid_plural "tripod chassis" msgstr[0] "シャシー(三脚ロボット)" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64096,7 +64361,7 @@ msgid "Pathfinder chassis" msgid_plural "Pathfinder chassis" msgstr[0] "シャシー(パスファインダー)" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64108,7 +64373,7 @@ msgid "Regulator chassis" msgid_plural "Regulator chassis" msgstr[0] "シャシー(レギュレーター)" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64120,7 +64385,7 @@ msgid "Seneschal chassis" msgid_plural "Seneschal chassis" msgstr[0] "シャシー(セネシャル)" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64132,7 +64397,7 @@ msgid "Likvidator chassis" msgid_plural "Likvidator chassis" msgstr[0] "シャシー(リクビダートル)" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64144,7 +64409,7 @@ msgid "Famulus chassis" msgid_plural "Famulus chassis" msgstr[0] "シャシー(ファミュラス)" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -64156,7 +64421,7 @@ msgid "Udarnik chassis" msgid_plural "Udarnik chassis" msgstr[0] "シャシー(ウダルニク)" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64168,7 +64433,7 @@ msgid "Brandspojt chassis" msgid_plural "Brandspojt chassis" msgstr[0] "シャシー(ブランドスポイト)" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64180,7 +64445,7 @@ msgid "Surgical Droid chassis" msgid_plural "Surgical Droid chassis" msgstr[0] "シャシー(手術ロボット)" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64192,7 +64457,7 @@ msgid "Aegis chassis" msgid_plural "Aegis chassis" msgstr[0] "シャシー(イージス)" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64204,7 +64469,7 @@ msgid "military robot chassis" msgid_plural "military robot chassis" msgstr[0] "シャシー(軍用ロボット)" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64216,7 +64481,7 @@ msgid "military humaniform chassis" msgid_plural "military humaniform chassis" msgstr[0] "シャシー(人型ロボット)" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -64321,7 +64586,7 @@ msgid "monomeric slurry" msgid_plural "monomeric slurry" msgstr[0] "モノマー懸濁液" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -64345,7 +64610,7 @@ msgid "artificial muscle fibers" msgid_plural "artificial muscle fibers" msgstr[0] "人工筋線維" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -64357,7 +64622,7 @@ msgid "self healing polymers" msgid_plural "self healing polymers" msgstr[0] "自己修復性ポリマー" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -64381,7 +64646,7 @@ msgid "scrap photonics" msgid_plural "scrap photonics" msgstr[0] "廃棄フォトニック部品" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "光を介して信号を伝達する、青色と金色の小さな回路です。" @@ -64411,7 +64676,7 @@ msgid "hypergeometric photonics" msgid_plural "hypergeometric photonics" msgstr[0] "超幾何学フォトニック部品" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -64736,7 +65001,7 @@ msgid "laser optics" msgid_plural "laser optics" msgstr[0] "レーザー光学系" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -65412,7 +65677,7 @@ msgid "enchanted wood" msgid_plural "enchanted wood" msgstr[0] "魔法の木材" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "マナが注入された木材です。" @@ -66713,7 +66978,7 @@ msgid "subzero talons" msgid_plural "subzero talons" msgstr[0] "氷の爪" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -66918,7 +67183,7 @@ msgid "fireproof mortar" msgid_plural "fireproof mortar" msgstr[0] "耐火モルタル" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -67033,7 +67298,7 @@ msgid "chicken walker chassis" msgid_plural "chicken walker chassis" msgstr[0] "シャシー(チキンウォーカー)" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -67045,7 +67310,7 @@ msgid "Beagle chassis" msgid_plural "Beagle chassis" msgstr[0] "シャシー(小型無人戦車)" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -67862,6 +68127,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "野生動物以外の全モンスターを削除します。" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "追加 - 収納家具" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "アイテム漁りのスリルを高めるために、扉が付いた収納家具などを追加します。" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "変更 - スキルと連動した能力成長" @@ -68008,10 +68284,10 @@ msgstr "追加 - retrodaysステータス表示" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" -"モンスターがプレイヤーキャラクターを視認していることを示すマークを追加し、プレイヤーキャラクター上に駆足、屈む、出血のステータスアイコンが表示されるようになります。retrodaysタイルセット用のデザインです。" +"モンスターがプレイヤーキャラクターを視認していることを示すマークや、プレイヤーキャラクター上に駆足、屈む、臥位、出血、光源などの状態を示すアイコンが表示されるようになります。retrodaysタイルセット用のデザインですが、neodaysタイルセットでも問題なく動作します。" #: lang/json/MOD_INFO_from_json.py msgid "SpeedyDex" @@ -68119,7 +68395,7 @@ msgstr "胸が赤みがかったオレンジ色になっている、茶色い鳥 #: lang/json/MONSTER_from_json.py msgid "sparrow" msgid_plural "sparrows" -msgstr[0] "ツバメ" +msgstr[0] "スズメ" #. ~ Description for sparrow #: lang/json/MONSTER_from_json.py @@ -68332,6 +68608,11 @@ msgid "" msgstr "" "見慣れない部品を組み合わせて作られた、巨大な四足歩行ロボットです。足音と共に重々しく妙に優雅な足取りで移動し、地面に浅いクレーターを残します。様々な武器を搭載していますが、こちらを狙っているようには見えません。距離を取った方が良さそうです。" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "四足歩行ロボットがガンポッドの銃器を発射しました!" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "カチャッ!" @@ -68719,7 +69000,7 @@ msgid "tiny fish" msgid_plural "tiny fish" msgstr[0] "魚(極小)" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "極小サイズの魚です。" @@ -68729,7 +69010,7 @@ msgid "small fish" msgid_plural "small fish" msgstr[0] "魚(小)" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "小型サイズの魚です。" @@ -68739,7 +69020,7 @@ msgid "medium fish" msgid_plural "medium fish" msgstr[0] "魚(中)" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "中型サイズの魚です。" @@ -68749,7 +69030,7 @@ msgid "large fish" msgid_plural "large fish" msgstr[0] "魚(大)" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "大型サイズの魚です。" @@ -68759,7 +69040,7 @@ msgid "huge fish" msgid_plural "huge fish" msgstr[0] "魚(巨大)" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "巨大なサイズの魚です。" @@ -68884,7 +69165,7 @@ msgid "whitefish" msgid_plural "whitefish" msgstr[0] "ホワイトフィッシュ" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -68896,7 +69177,7 @@ msgid "largemouth bass" msgid_plural "largemouth bass" msgstr[0] "オオクチバス" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "オオクチバスです。釣りをスポーツとして楽しむ人に人気の魚です。" @@ -68906,7 +69187,7 @@ msgid "smallmouth bass" msgid_plural "smallmouth bass" msgstr[0] "コクチバス" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -68918,7 +69199,7 @@ msgid "striped bass" msgid_plural "striped bass" msgstr[0] "シマスズキ" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -68930,7 +69211,7 @@ msgid "white bass" msgid_plural "white bass" msgstr[0] "ホワイトバス" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -68964,7 +69245,7 @@ msgid "sunfish" msgid_plural "sunfish" msgstr[0] "サンフィッシュ" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "サンフィッシュです。バスやブルーギルに近い種類の小さな魚です。" @@ -68974,7 +69255,7 @@ msgid "pumpkinseed sunfish" msgid_plural "pumpkinseed sunfish" msgstr[0] "パンプキンシード" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "サンフィッシュ科のパンプキンシードです。バスやブルーギルに近い種類の小さな魚です。" @@ -68995,7 +69276,7 @@ msgid "redbreast sunfish" msgid_plural "redbreast sunfish" msgstr[0] "レッドブレストサンフィッシュ" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "レッドブレストサンフィッシュです。バスやブルーギルに近い種類の小さな魚です。" @@ -69005,7 +69286,7 @@ msgid "green sunfish" msgid_plural "green sunfish" msgstr[0] "グリーンサンフィッシュ" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "グリーンサンフィッシュです。バスやブルーギルに近い種類の小さな魚です。" @@ -69015,7 +69296,7 @@ msgid "longear sunfish" msgid_plural "longear sunfish" msgstr[0] "ロングイヤーサンフィッシュ" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "ロングイヤーサンフィッシュです。バスやブルーギルに近い種類の小さな魚です。" @@ -69025,7 +69306,7 @@ msgid "redear sunfish" msgid_plural "redear sunfish" msgstr[0] "レッドイヤーサンフィッシュ" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "レッドイヤーサンフィッシュです。バスやブルーギルに近い種類の小さな魚です。" @@ -69035,7 +69316,7 @@ msgid "rock bass" msgid_plural "rock bass" msgstr[0] "ロックバス" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -69047,7 +69328,7 @@ msgid "calico bass" msgid_plural "calico bass" msgstr[0] "キャリコバス" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "キャリコバスです。「クラッピー」とも呼ばれる中型の魚です。" @@ -69079,7 +69360,7 @@ msgid "channel catfish" msgid_plural "channel catfish" msgstr[0] "アメリカナマズ" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "アメリカナマズは二股の尾びれと長いヒゲが特徴的です。" @@ -69089,7 +69370,7 @@ msgid "white catfish" msgid_plural "white catfish" msgstr[0] "ホワイトキャットフィッシュ" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "ホワイトキャットフィッシュは、頭が大きくヒゲが生えた小型の魚です。" @@ -69178,7 +69459,7 @@ msgid "fallfish" msgid_plural "fallfish" msgstr[0] "フォールフィッシュ" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -69204,7 +69485,7 @@ msgid "crayfish" msgid_plural "crayfish" msgstr[0] "ザリガニ" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -69234,7 +69515,7 @@ msgid "" msgstr "" "北アメリカ東岸に生息するアメリカウナギです。ダムが建設されるまでは一部で食用として乱獲されていました。しかし、今や彼らを脅かすものは姿を消し、平穏な日々を取り戻す機会を得たのです。" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -69246,7 +69527,7 @@ msgid "giant crayfish" msgid_plural "giant crayfish" msgstr[0] "巨大ザリガニ" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -69258,7 +69539,7 @@ msgid "colossal crayfish" msgid_plural "colossal crayfish" msgstr[0] "超巨大ザリガニ" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "鋭い鋏と長い触覚をもつ、変異した非常に巨大なザリガニです。" @@ -69883,7 +70164,7 @@ msgid "fused dragonflies" msgid_plural "fused dragonflies" msgstr[0] "連結巨大トンボ" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -70059,7 +70340,7 @@ msgstr[0] "超巨大ハエトリグモ" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -71611,7 +71892,7 @@ msgid "Great Pyrenees" msgid_plural "Great Pyrenees" msgstr[0] "グレートピレニーズ" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -71797,7 +72078,7 @@ msgid "moose" msgid_plural "moose" msgstr[0] "ヘラジカ" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -71950,7 +72231,7 @@ msgid_plural "lambs" msgstr[0] "ヒツジ(幼体)" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -72234,10 +72515,11 @@ msgstr[0] "デバッグモンスター" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -72248,6 +72530,16 @@ msgstr "%sは溶けて無くなりました。" msgid "This monster exists only for testing purposes." msgstr "このモンスターはデバッグテスト用に存在しています。" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "弱点モンスター" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "弱点テスト専用のモンスターです。" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -74384,7 +74676,7 @@ msgid "sawbones" msgid_plural "sawbones" msgstr[0] "骸骨医者ゾンビ" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -74399,7 +74691,7 @@ msgid "doctor burns" msgid_plural "doctor burns" msgstr[0] "弱酸医者ゾンビ" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -74571,7 +74863,7 @@ msgid "unstable flesh-raptor" msgid_plural "unstable flesh-raptor" msgstr[0] "肥満猛禽ゾンビ" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -74685,17 +74977,18 @@ msgstr[0] "炭化子供ゾンビ" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -75112,7 +75405,7 @@ msgid "gangrenous flesh" msgid_plural "gangrenous flesh" msgstr[0] "壊疽ゾンビ" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -75155,7 +75448,7 @@ msgid "scissorlimbs" msgid_plural "scissorlimbs" msgstr[0] "棘足ゾンビ" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -75169,7 +75462,7 @@ msgid "hanging innards" msgid_plural "hanging innards" msgstr[0] "垂下ゾンビ" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -75638,7 +75931,7 @@ msgid "Shia LaBeouf" msgid_plural "Shia LaBeouf" msgstr[0] "シャイア・ラブーフ" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -77455,7 +77748,7 @@ msgid "wisp" msgid_plural "wisp" msgstr[0] "ウィスプ" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -77990,7 +78283,7 @@ msgid "coelophysis" msgid_plural "coelophysis" msgstr[0] "コエロフィシス" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -78002,7 +78295,7 @@ msgid "dilophosaurus" msgid_plural "dilophosaurus" msgstr[0] "ディロフォサウルス" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -78014,7 +78307,7 @@ msgid "ceratosaurus" msgid_plural "ceratosaurus" msgstr[0] "ケラトサウルス" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -78027,7 +78320,7 @@ msgid "spinosaurus" msgid_plural "spinosaurus" msgstr[0] "スピノサウルス" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -78040,7 +78333,7 @@ msgid "allosaurus" msgid_plural "allosaurus" msgstr[0] "アロサウルス" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -78052,7 +78345,7 @@ msgid "acrocanthosaurus" msgid_plural "acrocanthosaurus" msgstr[0] "アクロカントサウルス" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -78065,55 +78358,67 @@ msgid "siats" msgid_plural "siats" msgstr[0] "シアッツ" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "長い爪と組みつきに適した強力な腕をもつ巨大な二足歩行肉食恐竜です。" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "ゴルゴサウルス" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "巨大な歯、獰猛な目つき、小さな腕、羽毛が生えたうなじと尾、発達した肉体を前進させる強靭な骨格をもつ恐竜です。" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "アルバートサウルス" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " "long strong arms and a feathered mullet and tail." -msgstr "巨大な歯、獰猛な目つき、筋肉質な長い腕、羽毛が生えたうなじと尾、それらの肉体を前進させるパワフルな骨格をもつ恐竜です。" +msgstr "巨大な歯、獰猛な目つき、筋肉質な長い腕、羽毛が生えたうなじと尾、発達した肉体を前進させる強靭な骨格をもつ恐竜です。" #: lang/json/MONSTER_from_json.py msgid "qianzhousaurus" msgid_plural "qianzhousaurus" msgstr[0] "キアンゾウサウルス" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " "with sharp teeth." -msgstr "鋭い歯が生えたワニのような長い口をもつ、羽毛に覆われた二足歩行の大型恐竜です。" +msgstr "鋭い歯が生えたワニのような長い口をもつ、羽毛に覆われた大型二足歩行恐竜です。" #: lang/json/MONSTER_from_json.py msgid "tyrannosaurus rex" msgid_plural "tyrannosaurus rex" msgstr[0] "ティラノサウルス・レックス" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " "it forward, short arms with large claws, with a feathered mullet and tail." -msgstr "巨大な顎と歯、獰猛な目つき、発達した爪が生えた短い腕、羽毛が生えたうなじと尾、それらの肉体を前進させるパワフルな骨格をもつ恐竜です。" +msgstr "巨大な顎と歯、獰猛な目つき、発達した爪が生えた短い腕、羽毛が生えたうなじと尾、発達した肉体を前進させる強靭な骨格をもつ恐竜です。" #: lang/json/MONSTER_from_json.py msgid "compsognathus" msgid_plural "compsognathus" msgstr[0] "コンプソグナトゥス" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -78125,7 +78430,7 @@ msgid "gallimimus" msgid_plural "gallimimus" msgstr[0] "ガリミムス" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -78149,7 +78454,7 @@ msgid "nothronychus" msgid_plural "nothronychus" msgstr[0] "ノトロニクス" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -78161,7 +78466,7 @@ msgid "deinonychus" msgid_plural "deinonychus" msgstr[0] "デイノニクス" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -78197,7 +78502,7 @@ msgid "amargasaurus" msgid_plural "amargasaurus" msgstr[0] "アマルガサウルス" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -78209,7 +78514,7 @@ msgid "apatosaurus" msgid_plural "apatosaurus" msgstr[0] "アパトサウルス" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -78221,7 +78526,7 @@ msgid "brontosaurus" msgid_plural "brontosaurus" msgstr[0] "ブロントサウルス" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -78233,7 +78538,7 @@ msgid "diplodocus" msgid_plural "diplodocus" msgstr[0] "ディプロドクス" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "首が長く巨大な四足歩行恐竜です。長い鞭のような尾をもっています。" @@ -78243,7 +78548,7 @@ msgid "camarasaurus" msgid_plural "camarasaurus" msgstr[0] "カマラサウルス" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -78255,7 +78560,7 @@ msgid "brachiosaurus" msgid_plural "brachiosaurus" msgstr[0] "ブラキオサウルス" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -78267,7 +78572,7 @@ msgid "alamosaurus" msgid_plural "alamosaurus" msgstr[0] "アラモサウルス" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -78279,7 +78584,7 @@ msgid "scutellosaurus" msgid_plural "scutellosaurus" msgstr[0] "スクテロサウルス" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -78291,7 +78596,7 @@ msgid "stegosaurus" msgid_plural "stegosaurus" msgstr[0] "ステゴサウルス" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -78302,7 +78607,7 @@ msgid "dyoplosaurus" msgid_plural "dyoplosaurus" msgstr[0] "ディオプロサウルス" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -78314,7 +78619,7 @@ msgid "ankylosaurus" msgid_plural "ankylosaurus" msgstr[0] "アンキロサウルス" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -78326,7 +78631,7 @@ msgid "nodosaurus" msgid_plural "nodosaurus" msgstr[0] "ノドサウルス" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -78337,7 +78642,7 @@ msgid "edmontonia" msgid_plural "edmontonia" msgstr[0] "エドモントニア" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -78349,7 +78654,7 @@ msgid "camptosaurus" msgid_plural "camptosaurus" msgstr[0] "カンプトサウルス" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -78361,7 +78666,7 @@ msgid "parasaurolophus" msgid_plural "parasaurolophus" msgstr[0] "パラサウロロフス" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "頭頂部が長く伸びた、まだら模様の巨大な四足歩行恐竜です。" @@ -78371,7 +78676,7 @@ msgid "maiasaura" msgid_plural "maiasaura" msgstr[0] "マイアサウラ" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -78383,7 +78688,7 @@ msgid "corythosaurus" msgid_plural "corythosaurus" msgstr[0] "コリトサウルス" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -78395,7 +78700,7 @@ msgid "edmontosaurus" msgid_plural "edmontosaurus" msgstr[0] "エドモントサウルス" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "歯はなく平たいくちばしをもつ、鱗が生えた巨大な恐竜です。" @@ -78405,7 +78710,7 @@ msgid "pachycephalosaurus" msgid_plural "pachycephalosaurus" msgstr[0] "パキケファロサウルス" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -78418,7 +78723,7 @@ msgid "pachyrhinosaurus" msgid_plural "pachyrhinosaurus" msgstr[0] "パキリノサウルス" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -78430,7 +78735,7 @@ msgid "pentaceratops" msgid_plural "pentaceratops" msgstr[0] "ペンタケラトプス" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -78442,7 +78747,7 @@ msgid "kosmoceratops" msgid_plural "kosmoceratops" msgstr[0] "コスモケラトプス" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -78455,7 +78760,7 @@ msgid "torosaurus" msgid_plural "torosaurus" msgstr[0] "トロサウルス" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -78467,7 +78772,7 @@ msgid "triceratops" msgid_plural "triceratops" msgstr[0] "トリケラトプス" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -78479,7 +78784,7 @@ msgid "dimorphodon" msgid_plural "dimorphodon" msgstr[0] "ディモルフォドン" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -78491,7 +78796,7 @@ msgid "pteranodon" msgid_plural "pteranodon" msgstr[0] "プテラノドン" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -78503,7 +78808,7 @@ msgid "quetzalcoatlus" msgid_plural "quetzalcoatlus" msgstr[0] "ケツァルコアトルス" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -78515,7 +78820,7 @@ msgid "mosasaurus" msgid_plural "mosasaurus" msgstr[0] "モササウルス" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -78527,7 +78832,7 @@ msgid "Gallimimus bio-operator" msgid_plural "Gallimimus bio-operator" msgstr[0] "改造ガリミムス兵" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -78539,7 +78844,7 @@ msgid "Pachycephalosaurus bio-operator" msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "改造パキケファロサウルス兵" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -78552,7 +78857,7 @@ msgid "Triceratops bio-operator" msgid_plural "Triceratops bio-operator" msgstr[0] "改造トリケラトプス兵" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -78564,7 +78869,7 @@ msgid "Velociraptor bio-operator" msgid_plural "Velociraptor bio-operator" msgstr[0] "改造ヴェロキラプトル兵" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -78576,7 +78881,7 @@ msgid "Deinonychus bio-operator" msgid_plural "Deinonychus bio-operator" msgstr[0] "改造デイノニクス兵" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -78588,7 +78893,7 @@ msgid "Dimorphodon bio-operator" msgid_plural "Dimorphodon bio-operator" msgstr[0] "改造ディモルフォドン兵" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -78600,7 +78905,7 @@ msgid "Spinosaurus bio-operator" msgid_plural "Spinosaurus bio-operator" msgstr[0] "改造スピノサウルス兵" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -78704,6 +79009,19 @@ msgid "" msgstr "" "長い爪と強力な腕を備えた巨大二足歩行肉食恐竜は、今や真菌の糸が口や目など全身のあらゆる穴から飛び出し、カビが生えた肉体を繋ぎ合わせています。" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "真菌ゾンビゴルゴサウルス" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "大きな顎を備えた巨大二足歩行肉食恐竜は、今や真菌の糸が口や目など全身のあらゆる穴から飛び出し、カビが生えた肉体を繋ぎ合わせています。" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -79203,6 +79521,11 @@ msgid "dark gray and yellow hatchling" msgid_plural "dark gray and yellow hatchlings" msgstr[0] "恐竜幼体(鼠色&黄色)" +#: lang/json/MONSTER_from_json.py +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" +msgstr[0] "恐竜幼体(緑色&赤紫色)" + #: lang/json/MONSTER_from_json.py msgid "red and green hatchling" msgid_plural "red and green hatchlings" @@ -79213,11 +79536,6 @@ msgid "dark gray and white hatchling" msgid_plural "dark gray and white hatchlings" msgstr[0] "恐竜幼体(鼠色&白色)" -#: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" -msgstr[0] "恐竜幼体(緑色&赤紫色)" - #: lang/json/MONSTER_from_json.py msgid "amargasaurus hatchling" msgid_plural "amargasaurus hatchlings" @@ -79266,7 +79584,6 @@ msgid_plural "magenta and green two-legged juveniles" msgstr[0] "二足歩行恐竜幼体(赤紫色&緑色)" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -79286,23 +79603,81 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "背中に大きな帆がある巨大な肉食恐竜の幼体です。" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" -msgstr[0] "二足歩行恐竜幼体(茶色&白色)" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" +msgstr[0] "アロサウルス幼体" + +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "大型二足歩行肉食恐竜の幼体です。" #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" -msgstr[0] "二足歩行恐竜幼体(赤色&白色)" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" +msgstr[0] "アクロカントサウルス幼体" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." -msgstr "光沢のある大きな瞳が特徴的な、小さな二足歩行肉食恐竜の幼体です。様々な種が混血している可能性があります。" +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "背骨に沿って生えた突起が特徴的な、筋肉質の大型二足歩行肉食恐竜の幼体です。" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "シアッツ幼体" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "長い爪と組みつきに適した強力な腕をもつ、大型二足歩行肉食恐竜の幼体です。" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "ゴルゴサウルス幼体" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "巨大な歯、獰猛な目つき、小さな腕、羽毛が生えたうなじと尾、発達した肉体を前進させる強靭な骨格をもつ恐竜の幼体です。" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "アルバートサウルス幼体" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "巨大な歯、獰猛な目つき、筋肉質な長い腕、羽毛が生えたうなじと尾、発達した肉体を前進させる強靭な骨格をもつ恐竜の幼体です。" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "キアンゾウサウルス幼体" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "鋭い歯が生えたワニのような長い口をもつ、羽毛に覆われた大型二足歩行恐竜の幼体です。" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "ティラノサウルス幼体" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "大きく鋭い歯が生えた巨大な肉食恐竜の幼体です。" @@ -79507,6 +79882,18 @@ msgid "" "and strong arms for grappling." msgstr "長い爪と組みつきに適した強力な腕をもつ二足歩行肉食恐竜のゾンビです。" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "ゾンビゴルゴサウルス" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "巨体をフラフラと揺らしながら歩く恐竜のゾンビは、大きな顎から黒い液体を垂らしています。" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -79608,7 +79995,7 @@ msgid "amargasaurus zombie" msgid_plural "amargasaurus zombie" msgstr[0] "アマルガサウルスゾンビ" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -80043,6 +80430,7 @@ msgstr[0] "焼焦ゾンビディロフォサウルス" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -80088,6 +80476,11 @@ msgid "scorched siats zombie" msgid_plural "scorched siats zombies" msgstr[0] "焼焦ゾンビシアッツ" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "焼焦ゾンビゴルゴサウルス" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -80464,6 +80857,18 @@ msgid "" "muscles and swollen, festering wounds." msgstr "長い爪と発達した腕をもつ、大型二足歩行肉食恐竜のゾンビです。発達した全身の筋肉と化膿で膨れ上がった傷口によって、非常に大柄に見えます。" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "凶暴ゾンビゴルゴサウルス" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "巨大な顎をもつ、二足歩行恐竜のゾンビです。全身が傷で化膿しており、筋肉が異様に膨れ上がっています。" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -80493,7 +80898,7 @@ msgid "Rage Rex" msgid_plural "Rage Rex" msgstr[0] "凶暴ゾンビティラノサウルス" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -80506,7 +80911,7 @@ msgid "Gruesome Gallimimus" msgid_plural "Gruesome Gallimimus" msgstr[0] "凶暴ゾンビガリミムス" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -80520,7 +80925,7 @@ msgid "Nefarious Nothronychus" msgid_plural "Nefarious Nothronychus" msgstr[0] "凶暴ゾンビノトロニクス" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -80578,7 +80983,7 @@ msgid "Anabolic Apatosaurus" msgid_plural "Anabolic Apatosaurus" msgstr[0] "凶暴ゾンビアパトサウルス" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -80639,7 +81044,7 @@ msgid "Anabolic Alamosaurus" msgid_plural "Anabolic Alamosaurus" msgstr[0] "凶暴ゾンビアラモサウルス" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -80879,11 +81284,23 @@ msgstr "" "翼がボロボロになった、大型翼竜のゾンビです。刃が生えておらず先端が尖ったくちばしと、角のような頭部の突起が特徴的です。発達した全身の筋肉と化膿で膨れ上がった傷口によって、非常に大柄に見えます。" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "冥暗ゾンビケラトサウルス" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "全身が不気味な影に覆われており、角と棘と大きな鋭い歯をもつ巨大な二足歩行恐竜の輪郭だけがぼんやりと見えています。" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "冥暗ゾンビスピノサウルス" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -80892,63 +81309,65 @@ msgid "" msgstr "ボロボロの帆を背負った巨大な二足歩行恐竜です。頭部は細長く、口が尖っています。不気味な影に包まれており、輪郭がぼやけています。" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" -msgstr[0] "冥暗ゾンビティラノサウルス" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" +msgstr[0] "冥暗ゾンビアロサウルス" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." -msgstr "" -"羽毛が生えた巨大な二足歩行恐竜のゾンビです。頭部は大きく、口元から大きな鋭い歯列が覗いています。不気味な影に包まれており、輪郭がぼやけています。" +" large, bipedal dinosaur with big, sharp teeth." +msgstr "全身が不気味な影に覆われており、尖った大きな歯をもつ巨大な二足歩行恐竜の輪郭だけがぼんやりと見えています。" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" -msgstr[0] "冥暗ゾンビアルバートサウルス" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" +msgstr[0] "冥暗ゾンビゴルゴサウルス" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" -"全身が不気味な影に覆われており、羽毛の生えた巨大な二足歩行恐竜の輪郭だけがぼんやりと見えています。頭部が大きく、足にはスパイクのような爪が生えているようです。" +"全身が不気味な影に覆われており、羽毛の生えた巨大な二足歩行恐竜の輪郭だけがぼんやりと見えています。頭部が大きく、口内には発達した鋭い歯がたくさん並んでいるようです。" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" -msgstr[0] "冥暗ゾンビアンキロサウルス" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" +msgstr[0] "冥暗ゾンビアルバートサウルス" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." -msgstr "全身が不気味な影に覆われており、棘付きの尻尾と大きく重そうな装甲をもつ四足歩行恐竜の輪郭だけがぼんやりと見えています。" +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." +msgstr "" +"全身が不気味な影に覆われており、羽毛の生えた巨大な二足歩行恐竜の輪郭だけがぼんやりと見えています。頭部が大きく、足にはスパイクのような爪が生えているようです。" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" -msgstr[0] "冥暗ゾンビアロサウルス" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" +msgstr[0] "冥暗ゾンビティラノサウルス" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." -msgstr "全身が不気味な影に覆われており、尖った大きな歯をもつ巨大な二足歩行恐竜の輪郭だけがぼんやりと見えています。" +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." +msgstr "" +"羽毛が生えた巨大な二足歩行恐竜のゾンビです。頭部は大きく、口元から大きな鋭い歯列が覗いています。不気味な影に包まれており、輪郭がぼやけています。" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "冥暗ゾンビノトロニクス" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -80957,11 +81376,11 @@ msgstr "" "全身が不気味な影に覆われており、羽毛をもち両足から大鎌のような爪が生えた二足歩行恐竜の輪郭だけがぼんやりと見えています。手から長い爪が突き出しています。" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "冥暗ゾンビデイノニクス" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -80970,11 +81389,11 @@ msgid "" msgstr "全身が不気味な影に覆われており、羽毛をもち両足から大鎌のような爪が生えた二足歩行恐竜の輪郭だけがぼんやりと見えています。" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "冥暗ゾンビユタラプトル" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -80983,16 +81402,16 @@ msgid "" msgstr "全身が不気味な影に覆われており、羽毛をもち両足から大鎌のような爪が生えた二足歩行恐竜の輪郭だけがぼんやりと見えています。" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" -msgstr[0] "冥暗ゾンビケラトサウルス" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" +msgstr[0] "冥暗ゾンビアンキロサウルス" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." -msgstr "全身が不気味な影に覆われており、角と棘と大きな鋭い歯をもつ巨大な二足歩行恐竜の輪郭だけがぼんやりと見えています。" +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." +msgstr "全身が不気味な影に覆われており、棘付きの尻尾と大きく重そうな装甲をもつ四足歩行恐竜の輪郭だけがぼんやりと見えています。" #: lang/json/MONSTER_from_json.py msgid "Bone Dragon" @@ -81019,7 +81438,7 @@ msgid "skeletal spinosaurus" msgid_plural "skeletal spinosaurus" msgstr[0] "骸骨ゾンビスピノサウルス" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -81031,7 +81450,8 @@ msgid "skeletal allosaurus" msgid_plural "skeletal allosaurus" msgstr[0] "骸骨ゾンビアロサウルス" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -81043,7 +81463,7 @@ msgid "skeletal acrocanthosaurus" msgid_plural "skeletal acrocanthosaurus" msgstr[0] "骸骨ゾンビアクロカントサウルス" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -81055,19 +81475,24 @@ msgid "skeletal siats" msgid_plural "skeletal siats" msgstr[0] "骸骨ゾンビシアッツ" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "黒い粘液が滴る鋭い歯を見せつけている、巨大な骨の集合体です。長い爪と太い腕の骨が特徴的です。" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "骸骨ゾンビゴルゴサウルス" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "骸骨ゾンビアルバートサウルス" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -81079,7 +81504,7 @@ msgid "skeletal qianzhousaurus" msgid_plural "skeletal qianzhousaurus" msgstr[0] "骸骨ゾンビキアンゾウサウルス" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -81103,7 +81528,7 @@ msgid "skeletal gallimimus" msgid_plural "skeletal gallimimus" msgstr[0] "骸骨ゾンビガリミムス" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -81114,7 +81539,7 @@ msgid "skeletal nothronychus" msgid_plural "skeletal nothronychus" msgstr[0] "骸骨ゾンビノトロニクス" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -81126,8 +81551,8 @@ msgid "skeletal deinonychus" msgid_plural "skeletal deinonychus" msgstr[0] "骸骨ゾンビデイノニクス" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -81144,7 +81569,7 @@ msgid "armored amargasaurus" msgid_plural "armored amargasaurus" msgstr[0] "骸骨ゾンビアマルガサウルス" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -81157,7 +81582,7 @@ msgid "armored apatosaurus" msgid_plural "armored apatosaurus" msgstr[0] "骸骨ゾンビアパトサウルス" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -81169,7 +81594,7 @@ msgid "armored brontosaurus" msgid_plural "armored brontosaurus" msgstr[0] "骸骨ゾンビブロントサウルス" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -81181,7 +81606,7 @@ msgid "armored diplodocus" msgid_plural "armored diplodocus" msgstr[0] "骸骨ゾンビディプロドクス" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -81193,7 +81618,7 @@ msgid "armored camarasaurus" msgid_plural "armored camarasaurus" msgstr[0] "骸骨ゾンビカマラサウルス" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -81205,7 +81630,7 @@ msgid "armored brachiosaurus" msgid_plural "armored brachiosaurus" msgstr[0] "骸骨ゾンビブラキオサウルス" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -81217,7 +81642,7 @@ msgid "armored alamosaurus" msgid_plural "armored alamosaurus" msgstr[0] "骸骨ゾンビアラモサウルス" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -81229,7 +81654,7 @@ msgid "skeletal stegosaurus" msgid_plural "skeletal stegosaurus" msgstr[0] "骸骨ゾンビステゴサウルス" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -81241,7 +81666,7 @@ msgid "skeletal dyoplosaurus" msgid_plural "skeletal dyoplosaurus" msgstr[0] "骸骨ゾンビディオプロサウルス" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -81255,7 +81680,7 @@ msgid "Bone Fortress" msgid_plural "Bone Fortress" msgstr[0] "骸骨ゾンビアンキロサウルス" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -81269,7 +81694,7 @@ msgid "armored nodosaurus" msgid_plural "armored nodosaurus" msgstr[0] "骸骨ゾンビノドサウルス" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -81281,7 +81706,7 @@ msgid "armored edmontonia" msgid_plural "armored edmontonia" msgstr[0] "骸骨ゾンビエドモントニア" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -81293,7 +81718,7 @@ msgid "armored camptosaurus" msgid_plural "armored camptosaurus" msgstr[0] "骸骨ゾンビカンプトサウルス" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -81305,7 +81730,7 @@ msgid "armored maiasaura" msgid_plural "armored maiasaura" msgstr[0] "骸骨ゾンビマイアサウラ" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -81317,7 +81742,7 @@ msgid "armored parasaurolophus" msgid_plural "armored parasaurolophus" msgstr[0] "骸骨ゾンビパラサウロロフス" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -81329,7 +81754,7 @@ msgid "armored corythosaurus" msgid_plural "armored corythosaurus" msgstr[0] "骸骨ゾンビコリトサウルス" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -81341,7 +81766,7 @@ msgid "armored Edmontosaurus" msgid_plural "armored Edmontosaurus" msgstr[0] "骸骨ゾンビエドモントサウルス" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -81353,7 +81778,7 @@ msgid "protected pachycephalosaurus" msgid_plural "protected pachycephalosaurus" msgstr[0] "骸骨ゾンビパキケファロサウルス" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -81365,7 +81790,7 @@ msgid "protected pachyrhinosaurus" msgid_plural "protected pachyrhinosaurus" msgstr[0] "骸骨ゾンビパキリノサウルス" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -81377,7 +81802,7 @@ msgid "protected pentaceratops" msgid_plural "protected pentaceratops" msgstr[0] "骸骨ゾンビペンタケラトプス" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -81389,7 +81814,7 @@ msgid "armored kosmoceratops" msgid_plural "armored kosmoceratops" msgstr[0] "骸骨ゾンビコスモケラトプス" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -81401,7 +81826,7 @@ msgid "armored torosaurus" msgid_plural "armored torosaurus" msgstr[0] "骸骨ゾンビトロサウルス" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -81413,7 +81838,7 @@ msgid "armored triceratops" msgid_plural "armored triceratops" msgstr[0] "骸骨ゾンビトリケラトプス" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -81425,7 +81850,7 @@ msgid "Tyruckusaurus Rex" msgid_plural "Tyruckusaurus Rex" msgstr[0] "改造ゾンビティラノサウルス" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -81439,7 +81864,7 @@ msgid "Tankylosaurus" msgid_plural "Tankylosaurus" msgstr[0] "ゾンビアンキロサウルス戦車" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -81452,7 +81877,7 @@ msgid "Goliath Rex" msgid_plural "Goliath Rex" msgstr[0] "巨体ゾンビティラノサウルス" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -81464,7 +81889,7 @@ msgid "Ankylosaurus hulk" msgid_plural "Ankylosaurus hulk" msgstr[0] "巨体ゾンビアンキロサウルス" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -81476,7 +81901,7 @@ msgid "Dimorphodon zombie" msgid_plural "Dimorphodon zombie" msgstr[0] "ゾンビディモルフォドン" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -81516,7 +81941,7 @@ msgid "CROWS II, heavy machinegun" msgid_plural "CROWS II, heavy machinegun" msgstr[0] "タレット(CROWS II/ヘビーマシンガン)" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -81533,7 +81958,7 @@ msgid "CROWS II, light machinegun" msgid_plural "CROWS II, light machinegun" msgstr[0] "タレット(CROWS II/ライトマシンガン)" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -81837,7 +82262,7 @@ msgid "forge hounds" msgid_plural "forge hounds" msgstr[0] "フォージハウンド" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -82128,7 +82553,7 @@ msgid "hunllef rams" msgid_plural "hunllef rams" msgstr[0] "ヒンシェヴシープ" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -82255,6 +82680,22 @@ msgid "" msgstr "" "かつてケベック州とルイジアナ州の郊外で絶滅したと考えられていた恐るべき怪物です。人間に領土を破壊されなくなった時、オオカミと繁殖するようになると言われています。" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "炎の悪鬼" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" +"燃え盛る影としか言い表しようがない、巨大な怪物です。黒く大きな翼を堂々と広げ、燃える石炭のような二つの瞳がこちらを憎々しげに見下ろしています。一方の手には大振りの剣、もう一方の手にはいくつにも枝分かれした鞭が握られており、どちらの武器も炎に包まれ赤熱しています。" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -82519,7 +82960,7 @@ msgid "animal cracker largemouth bass" msgid_plural "animal cracker largemouth bass" msgstr[0] "アニマルクラッカーバス" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -82804,7 +83245,7 @@ msgstr "" "ノースロップ社製のWatchman " "X-1は重装甲戦闘用ロボットシリーズの一つです。当初は軍の哨戒や護衛任務用途で開発されました。油圧で歩行し、M16A4ライフルで武装しています。" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -84943,37 +85384,37 @@ msgstr "敵を短時間盲目にします。" #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Slime Spray" -msgstr "" +msgstr "粘液噴出" #. ~ Description for Slime Spray #: lang/json/SPELL_from_json.py msgid "Spray slime onto an enemy to slow them down." -msgstr "" +msgstr "粘液を噴出して敵の動きを鈍らせます。" #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Bioluminescent Flare" -msgstr "" +msgstr "発光液噴出" #. ~ Description for Bioluminescent Flare #: lang/json/SPELL_from_json.py msgid "" "Projects a spray of bioluminescent goo that illuminates the area around it." -msgstr "" +msgstr "周囲を照らす発光液を噴出します。" #: lang/json/SPELL_from_json.py msgid "Short Leap" -msgstr "" +msgstr "跳躍" #. ~ Description for Short Leap #: lang/json/SPELL_from_json.py msgid "" "You squat down, build up tension in your legs and release. Launching " "yourself quite a distance." -msgstr "" +msgstr "しゃがんで脚に力を入れ、一気に開放してかなりの距離を跳躍します。" #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Crushing Leap" -msgstr "" +msgstr "大跳躍" #. ~ Description for Crushing Leap #: lang/json/SPELL_from_json.py @@ -84981,7 +85422,7 @@ msgid "" "You squat down, build up tension in your legs and release. You have the " "ability to target and land in the way to do maximum damage to any target in " "your way. Death from above." -msgstr "" +msgstr "しゃがんで脚に力を入れ、一気に開放します。邪魔な標的めがけて跳べば、大ダメージを与えられます。これぞデス・フロム・アバブです。" #: lang/json/SPELL_from_json.py msgid "Cranial Explosion" @@ -87869,7 +88310,7 @@ msgstr[0] "採掘ヘルメット(オン)" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -87913,7 +88354,7 @@ msgstr "オフにする" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -88796,7 +89237,7 @@ msgid "RX11 stimulant delivery system" msgid_plural "RX11 stimulant delivery system" msgstr[0] "RX11興奮剤注入システム" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -89358,17 +89799,17 @@ msgid "shooter's earmuffs" msgid_plural "shooter's earmuffs" msgstr[0] "射撃用イヤーマフ" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "射撃用イヤーマフの電源を入れました。" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "射撃用イヤーマフの電池が切れました。" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -89378,7 +89819,7 @@ msgid "" msgstr "" "射撃選手が愛用するイヤーマフです。電池がない、または電源を切った状態で着用すると、通常の耳栓のようにすべての音を遮音します。電源を入れて着用すると、特定のデシベル以上の音を遮音します。現在電源は入っていません。" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -89590,7 +90031,6 @@ msgid "You turn the flight helmet on." msgstr "パイロットヘルメットの電源を入れました。" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -89601,29 +90041,38 @@ msgstr "バイザー、マイク、ノイズ減衰システムを完備した軍 #: lang/json/TOOL_ARMOR_from_json.py msgid "military flight helmet (on)" msgid_plural "military flight helmets (on)" -msgstr[0] "" +msgstr[0] "軍用パイロットヘルメット(オン)" + +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" +"バイザー、マイク、ノイズ減衰システムを完備した軍用のパイロットヘルメットです。様々な装備を後付けできるプラスチックレールも付いています。様々なLEDデバイスが周期的に点滅しています。" #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" -msgstr[0] "" +msgstr[0] "官帽" #. ~ Use action menu_text for Combo cover. #: lang/json/TOOL_ARMOR_from_json.py msgid "Salute" -msgstr "" +msgstr "敬礼する" #. ~ Use action msg for Combo cover. #: lang/json/TOOL_ARMOR_from_json.py msgid "You bring your hand to your cover and issue a salute." -msgstr "" +msgstr "官帽に手を当てて敬礼しました。" #. ~ Description for Combo cover #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military officer's combo cover, or peaked cap. It conveys an air of " "authority, while keeping the sun out of your eyes." -msgstr "" +msgstr "軍人が着用する、つばが付いた官帽です。太陽光を遮るようになっており、威厳がありそうに見えます。" #: lang/json/TOOL_ARMOR_from_json.py msgid "FB51 optical cloak" @@ -89944,7 +90393,7 @@ msgid "bagpipes" msgid_plural "bagpipes" msgstr[0] "バグパイプ" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -90555,7 +91004,7 @@ msgid "Megingjörð" msgid_plural "Megingjörð" msgstr[0] "メギンギョルズ" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -90626,7 +91075,7 @@ msgid "escape boots" msgid_plural "escape boots" msgstr[0] "転移のブーツ" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -91316,7 +91765,7 @@ msgid "autonomous surgical scalpels" msgid_plural "autonomous surgical scalpels" msgstr[0] "自律式外科用メス" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -93046,7 +93495,7 @@ msgid "" msgstr "" "ネパール発祥の伝統ある刃物を近代的に改造した、実用性の高い武器です。重い刃の内側は湾曲しており、武器としても道具としても使うことができます。" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -93055,7 +93504,7 @@ msgid "" msgstr "" "古代中国で使われた両刃の直剣です。鍔には優美な装飾が施され、柄頭には飾り房が付いています。民俗学四大武器の一つで、あとの三つは刀(dao)、鎗(qiang)、棍(gun)であると言われています。" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -93138,7 +93587,7 @@ msgid "dao" msgid_plural "dao" msgstr[0] "刀(dao)" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -93187,7 +93636,7 @@ msgid "" msgstr "" "銃器やクロスボウの先端に取り付けて槍のように扱うこともできる、大型の斬撃武器です。ハンドガンとサブマシンガン以外のほぼすべての銃器に取り付けられるように改造してあります。" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -93196,7 +93645,7 @@ msgid "" msgstr "" "日本の刀剣の一種です。脇差が登場する以前の時代の、侍が懐刀として使っていた武器を模しているようです。よく知られている刀に比べて刀身は短いですが、その鋭い切れ味は依然として致命的です。" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -93227,7 +93676,7 @@ msgid "" "made." msgstr "シーク教徒の男性が携行する儀式用の短剣です。あまり出来が良くないようです。" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -93316,14 +93765,14 @@ msgid "" "battle a stylish battle." msgstr "華美な鍔が付いた、紳士と剣士が好む細剣です。軽量で素早く扱えるため、どんな戦いもスタイリッシュにこなせます。" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "希少価値の高い日本刀です。武装していない敵に対しては致命的なダメージを与えられますが、装甲の厚い相手にも有効です。" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -93337,7 +93786,7 @@ msgid "" "supposed to be that bendy." msgstr "ドイツ生まれの巨大な両手剣です。なんだか想像していたよりずっと折れやすそうに見えます。" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -93488,7 +93937,7 @@ msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "端切れ(合成繊維)" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -94193,7 +94642,7 @@ msgid "electronic handcuffs" msgid_plural "electronic handcuffs" msgstr[0] "電子手錠" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -94397,7 +94846,7 @@ msgstr[0] "スマートフォン" #. ~ Use action menu_text for smartphone. #: lang/json/TOOL_from_json.py msgid "Turn on flashlight" -msgstr "ライトを消す" +msgstr "ライトを点ける" #. ~ Use action msg for smartphone. #. ~ Use action msg for atomic smartphone. @@ -95078,7 +95527,7 @@ msgid "" "the rag. You will, of course, need a lighter or matches in your inventory " "to do this. After lighting it, throw it to cause fires." msgstr "" -"可燃性の液体を入れて燃えやすい布で栓をした瓶です。投擲すると落下の衝撃で瓶が割れて発火します。その場に落とすと自分に火が付くので、火傷をしたくなかったら止めておきましょう。" +"可燃性の液体を入れて燃えやすい布で栓をした瓶です。使用すると布に点火します。当然ながら、使用するにはライターやマッチを所持している必要があります。火をつけてから投げると燃え広がります。" #. ~ Description for Molotov cocktail #: lang/json/TOOL_from_json.py @@ -95764,7 +96213,7 @@ msgstr[0] "大型消火器" msgid "" "This is an emergency fire extinguisher containing five gallons of fire " "retardant foam. It would be useful for putting out adjacent fires." -msgstr "約22.7Lの発砲消火剤が封入されている、緊急用の消火器です。隣接している火を消す際に役立ちます。" +msgstr "約19Lの発泡消火剤が封入されている、緊急用の消火器です。隣接している火を消す際に役立ちます。" #: lang/json/TOOL_from_json.py msgid "fire axe" @@ -96425,10 +96874,9 @@ msgstr "高耐久懐中電灯の電池が切れています。" #: lang/json/TOOL_from_json.py msgid "" "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." -msgstr "" -"過酷な使用環境を想定して設計されたアルミ合金製のLEDフラッシュライトです。ショッピングモールの警備員がよく持っています。頑丈で重量があるので、まずまずの威力の近接武器としても使えます。通常の電池で作動し、使用すると周囲を照らします。" +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." +msgstr "警備員が使うアルミ製の頑丈なLED懐中電灯です。電力がある状態なら、水中でも点灯して光源にすることができます。" #: lang/json/TOOL_from_json.py msgid "heavy duty flashlight (on)" @@ -97016,7 +97464,7 @@ msgstr "金属製の長いトングです。一般的には調理作業で使い #: lang/json/TOOL_from_json.py msgid "pair of flatjaw tongs" msgid_plural "pairs of flatjaw tongs" -msgstr[0] "ヤットコ" +msgstr[0] "やっとこ" #. ~ Description for pair of flatjaw tongs #: lang/json/TOOL_from_json.py @@ -97069,6 +97517,36 @@ msgstr[0] "砂型" msgid "A mold for casting molten metals into different shapes" msgstr "溶けた金属を様々な形に鋳造するための型です。" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "研石" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "表面が平らになっている大きな天然石です。" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "砥石車" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "金属を削るのに便利な、ペダルを使って回す丸い砥石です。" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "せんすき" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "ドローナイフに似た形状ですが、刃が硬化鋼でできており金属を削れます。" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -97721,7 +98199,7 @@ msgid "shears" msgid_plural "shears" msgstr[0] "毛刈りハサミ" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "羊の毛を刈るためのハサミです。" @@ -97731,7 +98209,7 @@ msgid "electric shears" msgid_plural "electric shears" msgstr[0] "電動毛刈りハサミ" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "動物の毛を素早く刈れる電動ハサミです。" @@ -97773,6 +98251,30 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "ペットの収容や運搬を目的として作られた木製の容器です。使用して適切な動物の方向を選択すると収容し、何もないタイルを選択すると開放します。" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "テラリウム" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "植物や昆虫を入れるための、ガラス製の容器です。様々なサイズのものがあります。" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "サバイバー生物発光灯" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "ある意欲的な生存者が、巨大なホタルやトリフィドなどをテラリウムに入れて光源にすることを思い付きました。" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -98294,7 +98796,7 @@ msgid "qualitative filter paper" msgid_plural "qualitative filter paper" msgstr[0] "定性ろ紙" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -98307,7 +98809,7 @@ msgid "quantitative filter paper" msgid_plural "quantitative filter paper" msgstr[0] "定量ろ紙" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -98766,39 +99268,39 @@ msgid "Mi-go Biotech" msgid_plural "Mi-go Biotech" msgstr[0] "ミ=ゴのバイオテック" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" msgid_plural "%s (happy)" msgstr[0] "%s(幸福)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" msgid_plural "%s (focus)" msgstr[0] "%s(集中)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" msgid_plural "%s (pain relief)" msgstr[0] "%s(鎮痛)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" msgid_plural "%s (wake up)" msgstr[0] "%s(覚醒)" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "ミ=ゴの生体技術を使った道具です。" @@ -99213,7 +99715,7 @@ msgid "patchwork cotton clothing parts" msgid_plural "patchwork cotton clothing parts" msgstr[0] "継ぎ生地(綿)" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -99435,13 +99937,13 @@ msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "鉄菱" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "%sに鉄菱を撒きました。" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -99453,13 +99955,13 @@ msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "ガラス棘" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "%sにガラス棘を撒きました。" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -99695,7 +100197,7 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "stone adze" msgid_plural "stone adzes" -msgstr[0] "釿(石)" +msgstr[0] "握り斧" #. ~ Description for stone adze #: lang/json/TOOL_from_json.py @@ -99897,6 +100399,21 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "電池で稼働するコードレスハンドドリルです。付け替え用の先端部品がいくつか付属しています。" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "電動インパクトレンチ" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" +"内部のハンマーを回転させることで高いトルクをかける、電池式のコードレスインパクトレンチです。標準的なソケット類が付属しており、作動中はラチェット機構が動いて大きな音を立てます。大型のボルトを締めたり、車のホイールを交換したりする際に使われます。" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -100160,13 +100677,28 @@ msgid "pliers" msgid_plural "pliers" msgstr[0] "ペンチ" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "基本的な機械整備作業に適した、スリップジョイント付きの標準的なペンチです。更に複雑な作業にはレンチが必要です。" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "ロッキングプライヤー" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" +"このプライヤーは顎が非常に太く、その間に挟まれた不幸な物体をしっかりと固定しておくことができます。大きなボルトの頭部を掴んで回したり、2つの部品を一時的にまとめて固定したりする際に使われます。" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -100216,6 +100748,32 @@ msgid "" "to have the right tools for more precise work." msgstr "数種類のサイズと先端の形状が揃ったドライバーセットです。より精密な作業に適した工具が揃っています。" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "ソケットドライバーセット" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "小さなボルトやナットに適合する様々な六角ソケットと標準的なドライバービットが付属している、ラチェット式のドライバーです。" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "ソケットレンチセット" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" +"一般的な六角ボルトの様々なサイズに合わせてソケットを付け替えられる、持ち手が太いラチェット式レンチです。かなり大きなボルトでも確実に回すことができ、ラチェットが立てる音も快く聞いていられます。" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -100336,17 +100894,44 @@ msgstr "" "小型の鋭利な刃物です。織物や工作などの精密作業をするための道具ですが、傷の焼灼にも使えます。切れ味はまともですが、刃が小さ過ぎるため武器として使うのは困難です。死体の解体はできません。" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" -msgstr[0] "レンチ" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "小型モンキーレンチ" + +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "掌に収まる短い持ち手が特徴的な、幅を調整できるコンパクトな工具です。小さな六角ナットやボルトを回すのに使えそうです。" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "モンキーレンチ" -#. ~ Description for wrench +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "サイズ調節が可能なレンチです。武器としても頼りになり、様々な機械工作で使われます。" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "大型モンキーレンチ" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" +"このモンキーレンチは持ち手が長く、顎の幅は5cm以上広げることができます。大抵のボルトであればこの工具で回すことができ、車のホイールに使われているラグナットにも対応しています。" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -100628,36 +101213,6 @@ msgid "" msgstr "" "停止状態の恐ろしい怪物です。使用すると起動して指定した場所に設置され、IFFの初期設定が行われます。プログラムの書き換えと設置に成功すると使用者を味方として認識し、接近する全ての敵を回転式レーザー砲で攻撃します。" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "チキンウォーカー(停止)" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "チキンウォーカーは脚部を展開し、周囲の探索のために動き出しました。" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "チキンウォーカーは唸るような音を発し、こちらに狙いを定めました。隠れましょう!" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" -"停止状態のチキンウォーカーです。使用すると所持している手詰めでない5.56mm弾と40mm弾が装填され(弾薬を指定個数だけ装填したい場合は、装填しない分の弾薬を一旦地面に置いて下さい)、設置された状態で起動します。起動時のプログラムの書き換えと配線に成功すると、使用者を味方として認識して追従もしくは周囲の探索を開始し、内蔵銃器とグレネードランチャーであらゆる敵を攻撃します。" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -100688,6 +101243,11 @@ msgid "" msgstr "" "停止状態の小型無人戦車、Beagleです。使用すると所持している手詰めでない5.56mm弾と40mm弾が装填され(弾薬を指定個数だけ装填したい場合は、装填しない分の弾薬を一旦地面に置いて下さい)、設置された状態で起動します。起動時のプログラムの書き換えと配線に成功すると、使用者を味方として認識して追従もしくは周囲の探索を開始し、内蔵銃器とグレネードランチャーであらゆる敵を攻撃します。" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "チキンウォーカー(停止)" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -100904,11 +101464,11 @@ msgstr[0] "駆除ロボット(停止)" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" -"小型の害獣を捕らえるために設計された、小型の六脚ドローンです。持ち運びやすいように、脚部が収納されて小さな立方体状になっています。あらゆる種類の小型哺乳類を効率的に捕獲できますが、ネズミより大きなものには効き目がありません。" +"小型の害獣を捕らえるために設計された、小型の六脚ドローンです。脚部が収納されて、持ち運びやすい小さな立方体状になっています。あらゆる種類の小型哺乳類を効率的に捕獲できますが、ネズミより大きなものには効き目がありません。" #: lang/json/TOOL_from_json.py msgid "inactive grab-bot" @@ -101332,7 +101892,7 @@ msgid "377-UASTA (weaponized)" msgid_plural "377-UASTA (weaponized)" msgstr[0] "戦闘用プラズマ溶接トーチ" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -101759,7 +102319,7 @@ msgid "" "you!" msgstr "装置の電源が入っており、カチカチ、パリパリと嫌なノイズが流れています。敵が気付いてやってくる前に、早く離れましょう!" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -101812,7 +102372,7 @@ msgid "" msgstr "" "シンプルな金属の棘が括りつけられた細い木の棒です。ただ鋭いだけで不恰好なつくりですが、もっとマシなものが見つかるまでは敵を腕の届く範囲から遠ざけることができそうです。" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -101830,7 +102390,7 @@ msgid "inactive CROWS II, light machinegun" msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "タレット(CROWS II/ライトマシンガン/停止)" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -102764,6 +103324,16 @@ msgid "" " preferred." msgstr "スチールの代わりにオリハルコンを使った消化斧です。硬い素材でも切り刻むことが可能になり、設備が充実した消防署には欠かせない装備です。" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" +"小ぶりのアーミングソードとより後期に現れるツーハンデッドソードの中間にあたるサイズの、伝統的な中世の剣です。正体不明の銀色の金属で作られており、鍛えた鋼よりも強度が高く、重量も大幅に軽くなっています。" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -102812,6 +103382,31 @@ msgstr[0] "ロックキャンディ" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "硬い氷砂糖の塊です。分解すると砂糖になります。" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "チキンウォーカーは脚部を展開し、周囲の探索のために動き出しました。" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "チキンウォーカーは唸るような音を発し、こちらに狙いを定めました。隠れましょう!" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" +"停止状態のチキンウォーカーです。使用すると所持している手詰めでない5.56mm弾と40mm弾が装填され(弾薬を指定個数だけ装填したい場合は、装填しない分の弾薬を一旦地面に置いて下さい)、設置された状態で起動します。起動時のプログラムの書き換えと配線に成功すると、使用者を味方として認識して追従もしくは周囲の探索を開始し、内蔵銃器とグレネードランチャーであらゆる敵を攻撃します。" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -103347,11 +103942,11 @@ msgstr "植物の閾値を超える" #: lang/json/achievement_from_json.py msgid "Finally beat the tortoise" -msgstr "" +msgstr "やっとカメに勝てた" #: lang/json/achievement_from_json.py msgid "crossed rabbit mutation threshold" -msgstr "" +msgstr "ウサギの閾値を超える" #: lang/json/achievement_from_json.py msgid "Heard of the swarm?" @@ -103467,19 +104062,19 @@ msgstr "地中生物の閾値を超える" #: lang/json/achievement_from_json.py msgid "Carrying your home on your back" -msgstr "" +msgstr "家庭を背負う" #: lang/json/achievement_from_json.py msgid "crossed gastropod mutation threshold" -msgstr "" +msgstr "腹足類の閾値を超える" #: lang/json/achievement_from_json.py msgid "Leaping forward in life" -msgstr "" +msgstr "躍動感ある暮らし" #: lang/json/achievement_from_json.py msgid "crossed batrachian mutation threshold" -msgstr "" +msgstr "両生類の閾値を超える" #: lang/json/achievement_from_json.py msgid "Thus spake zombiethustra" @@ -103695,8 +104290,8 @@ msgid "Fashion Designer" msgstr "ファッションデザイナー" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." -msgstr "男性、女性、変異体のファッションが得意分野です。" +msgid "From catwalk to cataclysm." +msgstr "キャットウォークからカタクリズムまで。" #: lang/json/achievement_from_json.py msgid "Survivalist" @@ -104176,6 +104771,10 @@ msgstr "建設" msgid "mining" msgstr "掘削" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "拭取" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "片付け" @@ -104446,7 +105045,7 @@ msgstr "ワイヤー切断" #: lang/json/activity_type_from_json.py msgid "prying open" -msgstr "" +msgstr "こじ開け" #: lang/json/activity_type_from_json.py msgid "chopping down a tree" @@ -105046,16 +105645,15 @@ msgid "" msgstr "運命のいたずらか、移植手術がずさんだったために、何の役にも立たないうえに歩くとキーキー鳴る故障した生体部品が両足首に残ってしまいました。" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "合金装甲 - 腕" +msgid "Intradermal Alloy - Arms" +msgstr "合金製皮下装甲 - 両腕" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." -msgstr "腕の肉を合金の装甲に置換します。受動的な防御力を提供するほか、CBM格闘術に組み合わせて使用できます。 " +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." +msgstr "腕や手の皮下に埋め込んだ高性能装甲メッシュによって、物理的ダメージを軽減します。" #: lang/json/bionic_from_json.py msgid "Protective Lenses" @@ -105070,38 +105668,37 @@ msgid "" msgstr "外科手術によって眼窩を頑丈な保護レンズで完全に覆い、涙管を口内に繋ぎます。涙が出たときは、口から吐き出すか飲み込むしかありません。" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" -msgstr "合金装甲 - 頭部" +msgid "Intradermal Alloy - head" +msgstr "合金製皮下装甲 - 頭" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." -msgstr "外科手術によって頭部の肉を頑丈な装甲に取り換えます。頭と顎をしっかりと保護します。 " +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." +msgstr "頭や顎の皮下に埋め込んだ高性能装甲メッシュによって、頭蓋骨への物理的ダメージを軽減します。" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "合金装甲 - 脚" +msgid "Intradermal Alloy - Legs" +msgstr "合金製皮下装甲 - 両脚" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." -msgstr "脚部の肉を合金の装甲に置換します。受動的な防御力を提供するほか、CBM格闘術に組み合わせて使用できます。 " +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." +msgstr "脚や足の皮下に埋め込んだ高性能装甲メッシュによって、物理的ダメージを軽減します。" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" -msgstr "合金装甲 - 胴体" +msgid "Intradermal Alloy - torso" +msgstr "合金製皮下装甲 - 胴" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." -msgstr "胴体の肉を合金の装甲に置換し、物理的外傷から守ります。 " +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." +msgstr "胴の皮下に埋め込んだ高性能装甲メッシュによって、物理的ダメージを軽減します。" #: lang/json/bionic_from_json.py msgid "Battery System" @@ -105111,9 +105708,10 @@ msgstr "バッテリーシステム" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." -msgstr "自身に電池からの電力供給を可能にする電力変換回路を取り付けます。'E'キーで電池を消費して充電します。オンオフの切り替えが可能です。 " +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." +msgstr "" +"電池からCBM電力を供給できる電力変換回路が、体内に埋め込んであります。CBMメニューから起動すると、電池を消費してCBM電力を充電できる状態になります。起動と停止を自由に切り替えられます。" #: lang/json/bionic_from_json.py msgid "Monomolecular Blade" @@ -107542,7 +108140,7 @@ msgstr "窓に鉄格子を設置する" #: lang/json/construction_group_from_json.py msgid "Build Metal Rack" -msgstr "棚(金属)を設置する" +msgstr "金属棚を設置する" #: lang/json/construction_group_from_json.py msgid "Build Metal Roof" @@ -107838,7 +108436,7 @@ msgstr "ビア樽(木)を設置する" #: lang/json/construction_group_from_json.py msgid "Build Wooden Rack" -msgstr "棚(木)を設置する" +msgstr "木製棚を設置する" #: lang/json/construction_group_from_json.py msgid "Build Wooden Railing" @@ -108251,7 +108849,7 @@ msgstr "夢の中で、身体に投薬されたような奇妙な感覚をおぼ #: lang/json/dream_from_json.py msgid "You have a strange dream about rabbits." -msgstr "" +msgstr "ウサギに関する奇妙な夢を見ました。" #: lang/json/dream_from_json.py msgid "Your dreams give you a strange furry feeling." @@ -108267,20 +108865,20 @@ msgstr "夢の中で、身体に羽が生えたような奇妙な感覚をおぼ #: lang/json/dream_from_json.py msgid "You have a strange dream about snails and slugs in your garden." -msgstr "" +msgstr "庭のカタツムリやナメクジに関する奇妙な夢を見ました。" #: lang/json/dream_from_json.py msgid "Your dreams leave you feeling like something is stuck to you." -msgstr "" +msgstr "何かにへばりつく夢を見ました。" #: lang/json/dream_from_json.py msgid "" "You have a strange dream about frogs in a pond near your childhood home." -msgstr "" +msgstr "子供のころの自宅近くで見かけた、池に棲むカエルについての奇妙な夢を見ました。" #: lang/json/dream_from_json.py msgid "Your dreams contain a croaking concerto." -msgstr "" +msgstr "喉を膨らませて協奏曲を奏でる夢を見ました。" #: lang/json/dream_from_json.py msgid "You have a strange dream about fish." @@ -108463,32 +109061,32 @@ msgstr "夢の中で、自分は病院のガウンを羽織り、治療を受け #: lang/json/dream_from_json.py msgid "You have a disturbing dream about running from dogs." -msgstr "" +msgstr "イヌの群れから逃げ惑う不穏な夢を見ました。" #: lang/json/dream_from_json.py msgid "" "While dreaming, you see a distinctively rabbit-like reflection of yourself." -msgstr "" +msgstr "夢の中で、自分はウサギのような姿になっていました。" #: lang/json/dream_from_json.py msgid "You have a strange dream of carrying a house on your back." -msgstr "" +msgstr "家を背負うという奇妙な夢を見ました。" #: lang/json/dream_from_json.py msgid "" "While dreaming, you see yourself weighted down under massive backpack/tent " "upon your back, as you pass by a mirrored surface." -msgstr "" +msgstr "巨大なリュックサック、あるいはテントのようなものを背負い、鏡面を移動する夢を見ました。" #: lang/json/dream_from_json.py msgid "You have a disturbing dream of eating insects." -msgstr "" +msgstr "昆虫を食べる不穏な夢を見ました。" #: lang/json/dream_from_json.py msgid "" "While dreaming, you see yourself in a pond, your face has widened and is " "covered in mucus." -msgstr "" +msgstr "池の中にいる夢を見ました。顔は平らになり、全身が粘液で覆われていました。" #: lang/json/dream_from_json.py msgid "You have strange dreams of soaring through the sky." @@ -108672,11 +109270,11 @@ msgstr "トカゲのように生活する現実感溢れる不安な夢を見ま #: lang/json/dream_from_json.py msgid "You have a strange dream about being the Easter Bunny." -msgstr "" +msgstr "イースターバニーになるという奇妙な夢を見ました。" #: lang/json/dream_from_json.py msgid "You have a comforting and warm dream of living as a rabbit." -msgstr "" +msgstr "ウサギになって暮らすという、心地よく温かい夢を見ました。" #: lang/json/dream_from_json.py msgid "" @@ -108710,21 +109308,21 @@ msgstr "目覚めた水中ではなかった為、窒息しないかと狼狽し #: lang/json/dream_from_json.py msgid "You dream of leaping from the water to catch your prey." -msgstr "" +msgstr "水面から飛び出して獲物を捕らえる夢を見ました。" #: lang/json/dream_from_json.py msgid "You wake up with your legs pumping as you hop along in your sleep." -msgstr "" +msgstr "睡眠中に脚が勝手に屈伸して、思わず目が覚めました。" #: lang/json/dream_from_json.py msgid "" "You dream of crawling along the world when you realize you can see three " "hundred and sixty degrees around yourself." -msgstr "" +msgstr "大地を這い進み、周囲360度を見渡せるようになった夢を見ました。" #: lang/json/dream_from_json.py msgid "You dream of curling up inside a shell to sleep." -msgstr "" +msgstr "殻の中で丸くなって眠る夢を見ました。" #: lang/json/dream_from_json.py msgid "You vividly dream of running with your pack, hunting a wild animal." @@ -108920,11 +109518,11 @@ msgstr "空から素晴らしい景色を眺める夢は、自分自身の腕が #: lang/json/dream_from_json.py msgid "Will your burrow be warm enough for the family in winter?" -msgstr "" +msgstr "この巣穴で冬の間家族と快適に過ごせるでしょうか?不安がよぎった瞬間目が覚めました。" #: lang/json/dream_from_json.py msgid "You dream of outrunning the apocalypse." -msgstr "" +msgstr "滅亡した世界を跳び越す夢を見ました。" #: lang/json/dream_from_json.py msgid "You have a comforting dream of swimming with a school of fish." @@ -109130,23 +109728,23 @@ msgstr "他人に理解してほしい、共に戦ってもらいたいと強く msgid "" "There is so much that you never imagined, the slime, the legs, and eyestalks" " but the shell was worth it." -msgstr "" +msgstr "夢の中で異常な粘液、腹足、眼などがある肉体を得ました。しかし、殻には驚きを補って余りある価値があります。" #: lang/json/dream_from_json.py msgid "You'll always be home, once you take this last step." -msgstr "" +msgstr "最後の一歩を踏み出せば、その先はずっと家に居られます。" #: lang/json/dream_from_json.py msgid "" "You'd never considered that frogs were generalist predators before this " "point in your life…" -msgstr "" +msgstr "今まで考えもしませんでしたが、カエルは一般的に捕食者側の生物であることに気付きました..." #: lang/json/dream_from_json.py msgid "" "On land and in the water, you control all that you can reach, and your " "tongue has quite the reach." -msgstr "" +msgstr "陸上でも水中でも、手が届くものは全て支配できる気がしてきました。そして、舌を伸ばせば大抵のものに手が届きます。" #: lang/json/dream_from_json.py msgid "Your body flows slightly faster than you expected… oh, just a dream." @@ -110710,8 +111308,8 @@ msgstr "傷口から感染症に罹りました。" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." -msgstr "咬傷から感染症に罹ったような気がします。" +msgid "Your wound feels infected." +msgstr "傷が原因で感染症に罹ったようです。" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus #. Filled'. @@ -111868,7 +112466,7 @@ msgstr "あまり食べたくない物を食べています。" #: lang/json/effects_from_json.py msgid "Demoralizing food" -msgstr "辛い食事" +msgstr "酷い食事" #. ~ Description of effect 'Demoralizing food'. #: lang/json/effects_from_json.py @@ -112271,7 +112869,7 @@ msgstr "息苦しいほどの悪臭に、気分が悪くなっています。" #: lang/json/effects_from_json.py msgid "Covered in fetid goop" -msgstr "臭いヘドロまみれ" +msgstr "臭い粘液まみれ" #. ~ Description of effect 'Covered in fetid goop'. #: lang/json/effects_from_json.py @@ -114445,15 +115043,15 @@ msgstr "旧瓦礫" #: lang/json/field_type_from_json.py msgid "glimmer" -msgstr "" +msgstr "弱い発光" #: lang/json/field_type_from_json.py msgid "glow" -msgstr "" +msgstr "発光" #: lang/json/field_type_from_json.py msgid "shine" -msgstr "" +msgstr "強い発光" #: lang/json/field_type_from_json.py msgid "thin smoke" @@ -115423,8 +116021,7 @@ msgid "" msgstr "太陽光を電気に変えて利用する太陽光発電機のセットです。大変動の前から有用でしたが、今はどんな生存者にとってもかけがえのない貴重な装置です。" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "バシッ!" @@ -115441,9 +116038,8 @@ msgid "" msgstr "" "道路の通行を遮断するために使われる、大きな木製の封鎖板です。視認性を高めるための反射テープが貼り付けてあります。その名前にもかかわらず、運転中の車を止めることはほとんど不可能です。" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "ガチャン!" @@ -116123,7 +116719,7 @@ msgstr "積み上げられた枯れ草です。快適さや暖かさを気にし #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "バリバリッ!" @@ -117048,7 +117644,7 @@ msgstr "升目が描かれたフェルトと、内部の凹みのどこかにボ #: lang/json/furniture_from_json.py msgid "this should never actually show up, it's a pseudo furniture" -msgstr "実際に表示されない疑似的な設置物です。" +msgstr "非表示の疑似設置物" #. ~ Description for this should never actually show up, it's a pseudo #. furniture @@ -117640,7 +118236,7 @@ msgstr "大量の衣類を吊るすために使われる、ホイールが付い #: lang/json/furniture_from_json.py msgid "display rack" -msgstr "棚(金属)" +msgstr "金属棚" #. ~ Description for display rack #: lang/json/furniture_from_json.py @@ -117663,7 +118259,7 @@ msgstr "収納したものがよく見えるように棚板に角度が付いて #: lang/json/furniture_from_json.py msgid "wooden rack" -msgstr "棚(木)" +msgstr "木製棚" #. ~ Description for wooden rack #: lang/json/furniture_from_json.py @@ -118462,7 +119058,8 @@ msgid "" " the skills." msgstr "スタンドアロン型のコンピュータ端末です。使用すると任意の機能を実行します。スキルがあれば、ハッキングできるかもしれません。" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "炉" @@ -118585,6 +119182,21 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "正確な位置に穴を開けられる強力なドリルです。UPSから電力を供給できれば、工業加工品から家庭の木工品まで、あらゆる製作の場面で役立ちます。" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "生物発光灯" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" +"大抵の生存者は電気を使って照明を復旧しようとするものですが、ここの住人は、大変動による環境変化を利用して光源を確保することにしたようです。飼育容器の中に、土と見たこともない奇妙な植物、そして驚くべきことに、変異した巨大なホタルが入っています。" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -121100,17 +121712,17 @@ msgstr "" "20世紀に生まれた拳銃の中で最も有名なもののひとつです。もし、あなたの名前がボンドではなかったとしても、この小さな銃は同じように役立ってくれるでしょう。" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" -msgstr[0] "ハンドガン(.32口径/ケルテックP32)" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" +msgstr[0] "ハンドガン(.32口径/ケルテックP-32)" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" -"ケルテックが設計した銃の中では歴史が古く、隠匿やバックアップの用途で広く使われています。非常に軽量で小型であるにもかかわらず、.32口径ACP弾の利用によって優れた操作性と反動制御性能を実現しています。" +"ケルテックが設計した銃の中では歴史が古く、隠匿携帯用やバックアップガンとして広く使われています。非常に軽量で小型であるにもかかわらず、.32口径ACP弾の利用によって優れた操作性と反動制御性能を実現しています。" #: lang/json/gun_from_json.py msgid "SIG P226" @@ -121241,18 +121853,19 @@ msgstr "" "10の変種である知る人ぞ知るマシンピストルです。ほとんどすべての部品が小型化されたこの安価なオートマチック銃は、その軽さと1200~1400発/分に及ぶ不条理な連射速度故に、「電話ボックス内での戦闘にのみ適している」と言われています。" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" -msgstr[0] "ハンドガン(.380口径/ケルテックP3AT)" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" +msgstr[0] "ハンドガン(.380口径/ケルテックP-3AT)" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" -"ケルテックP32をわずかに高機能化した人気の高いこの銃は、.380口径ACP弾を利用し、隠し持てる程の小型化とより優れた弾道性能を実現しています。反動の強さと制御の難しさのため、操作性にはやや難があります。" +"ケルテックP-" +"32をわずかに高機能化した人気の高いこの銃は、.380口径ACP弾を利用し、隠し持てる程の小型化とより優れた弾道性能を実現しています。反動の強さと制御の難しさのため、操作性にはやや難があります。" #: lang/json/gun_from_json.py msgid "FN 1910 .380" @@ -122202,13 +122815,13 @@ msgid "" msgstr "有名なAK-47ライフルの後継となる銃です。AKシリーズの信頼性はそのままに、弾速が速く軽量な5.45x39mm弾を使用できます。" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "ハンドガン(5.7x28mm/FNファイブセブン)" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "軽さと装弾数の多さが特長のFN社製拳銃です。同社製の5.7x28mm弾を使用し、装甲を纏った敵に対して特に有効です。" @@ -123207,8 +123820,8 @@ msgid "" "readily available ammunition. It perfectly served the purposes of the " "Exodii, who had far less concern about its unwieldiness." msgstr "" -"12.3ln弾を使う銃で最も人気だったのは、もちろんPA " -"md.71でしたが、その前身であるmd.68はある種の失敗作だという意見が多数ありました。信頼性と威力はあったものの、歩兵が持つ銃器としては重すぎて扱い辛かったことが理由です。しかしゾンビによる世界崩壊が訪れたことで、手に入りやすい弾薬を使う据え付けの銃として復活を遂げました。この銃は扱い辛さという懸念がはるかに少ないエクゾディにうってつけだったのです。" +"12.3ln弾を使う銃で最も人気が高かったのはもちろんPA " +"md.71ですが、その前身であるmd.68はある種の失敗作だという見方がほとんどでした。信頼性と威力はあったものの、歩兵が持つ銃器としては重すぎて扱い辛かったことが理由です。しかしゾンビによる世界崩壊が訪れたことで、この失敗作は手に入りやすい弾薬を使う据え付けの銃として復活を遂げたのです。扱い辛さをそれほど気にしないエクゾディの方針にもぴったりでした。" #: lang/json/gun_from_json.py msgid "PA md. 71 zombie hunting rifle" @@ -124395,6 +125008,21 @@ msgid "acid dart gun" msgid_plural "acid dart guns" msgstr[0] "酸の銃" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "ライフル(12.3ln/ルビクのPA Md.68バトルライフル)" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" +"12.3ln弾を使う銃で最も人気が高かったのはもちろんPA md.71ですが、その前身であるmd.68はある種の失敗作だという見方がほとんどでした。信頼性と威力はあったものの、歩兵が持つ銃器としては重すぎて扱い辛かったことが理由です。しかしゾンビによる世界崩壊が訪れたことで、この失敗作は手に入りやすい弾薬を使う据え付けの銃として復活を遂げたのです。扱い辛さをそれほど気にしないエクゾディの方針にもぴったりでした。\n" +"\n" +"このライフルはくすんだピンク色に塗ってあり、笑顔のウナギの絵が銃身に絡みつくように描かれています。" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -126852,10 +127480,11 @@ msgstr[0] "二脚" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" -"二脚は銃口を停止させ、ブレを減らすためにライフルやマシンガンに取り付けます。反動が大幅に減少しますが、特定の地形上でなければ効果を発揮せず、装備にかかる時間も長くなります。" +"二脚は銃口を静止させてブレを減らすために、ライフルやマシンガンの前方に取り付けます。反動が大幅に軽減しますが、特定の地形上(あるいは伏せた体勢)でなければ効果を発揮せず、装備にかかる時間も長くなります。" #: lang/json/gunmod_from_json.py msgid "modified bipod" @@ -126865,12 +127494,12 @@ msgstr[0] "改造二脚" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" -"二脚は銃口を停止させ、ブレを減らすためにライフルやマシンガンに取り付けます。反動が大幅に減少しますが、特定の地形上でなければ効果を発揮せず、装備にかかる時間も長くなります。ほとんどすべての銃器に取り付けられるように改造されています。" +"二脚は銃口を静止させてブレを減らすために、ライフルやマシンガンの前方に取り付けます。反動が大幅に軽減しますが、特定の地形上(あるいは伏せた体勢)でなければ効果を発揮せず、装備にかかる時間も長くなります。大抵の銃器に取り付けられるように改造が施されています。" #: lang/json/gunmod_from_json.py msgid "combination gun shotgun" @@ -127351,18 +127980,22 @@ msgid "" msgstr "アイアンサイトを取り外し、マナクリスタルで作った光学式ブルードットサイトを搭載します。精度が向上し、重量が増加します。" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." msgstr "魚の内臓を取り、切り身にしました。" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" -msgstr "隠れている肉を取り出すために外骨格を割って開きました。" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "内側の肉を取り出すために、外骨格を割り開きました。" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." +msgstr "内側の肉を取り出すために、硬い殻を割り開きました。" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" -msgstr "実験の失敗作の中から取り出せそうなCBMが残っていないか探りました。" +"You search for any salvageable hardware in what's left of this failed " +"experiment." +msgstr "実験の失敗作の中に取り出せそうな機械類が残っていないか探りました。" #: lang/json/harvest_from_json.py msgid "" @@ -129254,7 +129887,7 @@ msgstr "素早く火をつける" #: lang/json/item_action_from_json.py msgid "Pry crate, window, door or nails" -msgstr "" +msgstr "木箱/窓/ドア/釘をこじ開ける" #: lang/json/item_action_from_json.py msgid "Pick a lock" @@ -129889,6 +130522,11 @@ msgid "" "the punishment of combat." msgstr "このアイテムは頑丈な武器であり、戦闘時に損傷しにくい作りです。" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "着用時にグラフィックを表示しないよう設定しました。" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -130727,6 +131365,14 @@ msgstr "ここは平らで食事をするのに丁度良さそうです。" msgid "You can craft here." msgstr "この場所でアイテム製作ができます。" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" +"車両のタンクに入ったディーゼル燃料やJP8燃料を燃焼させて稼働する燃焼機関です。バイオディーゼルやランプオイル、灯油も燃料として利用できますが、効率はやや下がります。" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "上スクロール" @@ -130895,6 +131541,10 @@ msgstr "切替/パネル非表示" msgid "Change side armor is worn on" msgstr "着用中アイテムの左右を変更する" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "切替/着用アイテムのグラフィック表示" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "キー割当" @@ -132007,6 +132657,10 @@ msgstr "上へ移動" msgid "Move cursor down" msgstr "下へ移動" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "切替/グラフィック表示" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "終了/キー割当" @@ -132207,6 +132861,20 @@ msgstr "Yes" msgid "No" msgstr "No" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "仲間と遊ぶ" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "一人で遊ぶ" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "取消" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "終了" @@ -133512,13 +134180,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr ".32口径ACP弾を装填するVz.61スコーピオンに対応する20発弾倉です。" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" -msgstr[0] "弾倉(.32口径/P32/7発)" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" +msgstr[0] "弾倉(.32口径/P-32/7発)" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." -msgstr "ケルテックP32に対応する、標準仕様の7発鋼鉄製箱型弾倉です。" +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." +msgstr "ケルテックP-32に対応する、標準仕様の7発鋼鉄製箱型弾倉です。" #: lang/json/magazine_from_json.py msgid "P226 .357 SIG 12-round magazine" @@ -133574,13 +134242,13 @@ msgid "" msgstr ".357口径マグナム弾もしくは.38口径スペシャル弾を6発装填できるスピードローダーです。互換性のあるリボルバーでの装填速度が向上します。" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" -msgstr[0] "弾倉(.380口径/P3AT/6発)" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" +msgstr[0] "弾倉(.380口径/P-3AT/6発)" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." -msgstr "ケルテックP3ATに対応する、標準仕様の6発鋼鉄製箱型弾倉です。" +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." +msgstr "ケルテックP-3ATに対応する、標準仕様の6発鋼鉄製箱型弾倉です。" #: lang/json/magazine_from_json.py msgid "FN 1910 6-round magazine" @@ -134139,13 +134807,13 @@ msgid "" msgstr "AK74-Mに対応する延長仕様の45発弾倉です。本来はRPK-74用に設計された弾倉でした。" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "弾倉(5.7x28mm/ファイブセブン/20発)" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." -msgstr "FN ファイブセブンに対応する標準仕様の弾倉です。" +msgid "A standard capacity magazine for use with the FN Five-seveN." +msgstr "FNファイブセブンに対応する標準仕様の弾倉です。" #: lang/json/magazine_from_json.py msgid "P90 50-round magazine" @@ -136271,12 +136939,12 @@ msgstr "下水パイプとポンプです。" #: lang/json/map_extra_from_json.py msgid "Prison Van" -msgstr "" +msgstr "護送車" #. ~ Description for Prison Van #: lang/json/map_extra_from_json.py msgid "A violent escape." -msgstr "" +msgstr "暴力的な逃走事件の現場です。" #: lang/json/map_extra_from_json.py msgid "Wraitheon Droneswarm" @@ -137437,6 +138105,16 @@ msgstr "自然歩道" msgid "PLEASE No fish cleaning or dish washing." msgstr "魚の内蔵処理や食器洗浄はご遠慮ください。" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -137869,10 +138547,9 @@ msgstr "合気道" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." -msgstr "" -"合気道は、極力負傷せず護身のため戦うことを目的とした日本の武道です。防御を兼ねた投げ技と武装解除の技を駆使しますが、攻撃的な技はありません。" +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." +msgstr "合気道は、できるだけ負傷しないように身を守ることを目的とした日本の武道です。投げ技や武装解除などの、防御を重視した威力の低い技を使います。" #. ~ initiate message for martial art '{'str': 'Aikido'}' #: lang/json/martial_art_from_json.py @@ -137895,11 +138572,13 @@ msgstr "合気道の構え" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" -"攻撃よりも護身を優先することで、防御力が向上します。\n" +"攻めを捨てて守りに徹することで、防御力が向上します。\n" "\n" -"器用x100%のブロック時ダメージ軽減" +"器用x100%のブロック時ダメージ軽減、ブロック効果+2\n" +"回避スキル+1.0" #: lang/json/martial_art_from_json.py msgid "Intermediate Aikido" @@ -137912,13 +138591,14 @@ msgstr "合気道の修練" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" -"合気道の修練を続ければ、複数の敵から身を守れるようになります。\n" +"合気道の中級者は、複数の敵からも身を守ることができます。\n" "\n" "器用x100%のブロック時ダメージ軽減\n" -"ブロック+1、回避+1" +"ブロック効果+1\n" +"ブロック発動+1、回避発動+1" #: lang/json/martial_art_from_json.py msgid "Advanced Aikido" @@ -137929,11 +138609,49 @@ msgstr "合気道の熟達" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" -"合気道を極め、さらに多数の敵から身を守れるようになりました。\n" +"合気道の達人は、更に多数の相手から身を守ることができます。\n" "\n" -"ブロック+1、回避+1" +"ブロック効果+1\n" +"ブロック発動+1、回避発動+1" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "受け流し" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" +"攻撃をスムーズにかわし、カウンターを繰り出す準備をします。\n" +"\n" +"行動コスト-10%\n" +"1ターン継続" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "受け止め" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" +"攻撃を上手く受け止め、カウンターを繰り出す準備をします。\n" +"\n" +"行動コスト-10%\n" +"1ターン継続" #: lang/json/martial_art_from_json.py msgid "Boxing" @@ -138047,7 +138765,7 @@ msgid "" msgstr "" "戦闘訓練を重ね、一度に複数の攻撃をブロックできるようになりました。\n" "\n" -"回避+1" +"回避発動+1" #: lang/json/martial_art_from_json.py msgid "Capoeira" @@ -138118,12 +138836,12 @@ msgstr "カポエイラのステップ" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." msgstr "" -"見逃してはいけません。このダンスは、ここからクライマックスが始まるのです!\n" +"のるかそるか、それこそがダンスの醍醐味です。お楽しみはこれからですよ!\n" "\n" "打撃与ダメージ+15%\n" "2ターン継続、最大蓄積数3" @@ -138137,9 +138855,10 @@ msgstr "鶴形拳" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" -"少林拳に伝わる、五獣拳の1つです。鶴形拳は手を使った複雑な技とジャンプによる回避を駆使します。器用依存で与ダメージが決定し、移動と回避成功によって回避ボーナスを得ます。" +"少林拳に伝わる五獣拳の一つです。鶴形拳は手を使った複雑な技とジャンプによる身かわしを駆使します。筋力ではなく器用さが与えるダメージを左右し、回避が成功すると一定時間強力な技が発動するようになります。" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -138172,22 +138891,20 @@ msgstr "" "器用x75%の打撃与ダメージ上昇、筋力x75%の打撃与ダメージ低下" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" -msgstr "鶴の飛翔" +msgid "Crane's Stance" +msgstr "鶴の構え" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" -"鳥のように飛び上がって危険を回避します。\n" +"鶴のように美しく構えることで、危険を回避しやすくなります。\n" "\n" -"回避スキル+1.0\n" -"2ターン継続" +"回避スキル+2.0" #: lang/json/martial_art_from_json.py msgid "Crane's Grace" @@ -138197,15 +138914,33 @@ msgstr "鶴の身かわし" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." msgstr "" -"鶴のように素早く危険を回避します。\n" +"鶴形拳の達人は、複数の敵からの攻撃すら容易に回避します。\n" "\n" -"回避+1、回避スキル+1.0\n" -"2ターン継続" +"回避発動+2" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "鶴の飛翔" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." +msgstr "" +"鶴のように攻撃を回避し、素早く反撃に移ります。\n" +"\n" +"命中+1、回避スキル+1.0\n" +"「鶴の一蹴」「鶴の一撃」有効化\n" +"3ターン継続" #: lang/json/martial_art_from_json.py msgid "Dragon Kung Fu" @@ -138215,11 +138950,12 @@ msgstr "龍形拳" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" -"少林拳に伝わる、五獣拳の1つです。龍形拳は流れるような動作と激しい打撃が特徴です。器用ではなく知性依存で精度が向上します。最初の攻撃が敵を動けなくするカウンター攻撃へと派生し、強力な必殺技の予備動作となります。" +"少林拳に伝わる五獣拳の一つです。龍形拳は流れるような動作と激しい打撃が特徴です。器用と筋力ではなく、知性依存で命中精度と威力が上昇します。回避やブロックに成功すると次に繰り出す攻撃の威力が上昇し、特定の体勢をとることで防御力が上昇します。転倒した敵に強力な一撃を加える技を操ります。" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -138233,41 +138969,67 @@ msgid "%s assumes a dragon-like stance." msgstr "%sは龍形拳の構えをとりました。" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" -msgstr "龍の飛翔" +msgid "Dragon's Knowledge" +msgstr "竜の知恵" + +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. Kung Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" +"\n" +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." +msgstr "" +"素早さに頼らずに、直感で狙いを定めて攻撃方法を事前に組み立て、それを忠実に再現します。\n" +"器用ではなく知性依存で命中精度が上昇します。筋力ではなく知性依存で近接攻撃力が上昇します。\n" +"\n" +"知性x25%の命中精度上昇、器用x25%の命中精度低下、知性x75%の打撃与ダメージ上昇、筋力x75%の近接攻撃与ダメージ低下" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Wing" +msgstr "龍の翼" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"+10% bash damage.\n" +"Lasts 3 turns." msgstr "" "生命と戦いは円です。攻撃はカウンターに繋がり、再び攻撃に戻ります。この円環を完成させましょう。\n" -"「旋風の守り」「旋風の身かわし」有効化\n" -"1ターン継続" +"\n" +"打撃与ダメージ+10%\n" +"3ターン継続" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" -msgstr "竜の知恵" +msgid "Dragon Power" +msgstr "龍の力量" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon -#. Kung Fu'}' +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." msgstr "" -"素早さに頼らずに、直感で狙いを定めて攻撃方法を事前に組み立てます。\n" -"器用ではなく知性依存で命中精度が向上します。\n" +"今までの戦いとこれからの戦いに思いを巡らせ洞察することが、今後の被害を減らす鍵になります。\n" "\n" -"知性x25%の命中精度上昇、器用x25%の命中精度低下" +"ブロック効果+2、知性x100%のブロック時ダメージ軽減、回避スキル+1.0\n" +"2ターン継続" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" +msgstr "龍の旋風" #: lang/json/martial_art_from_json.py msgid "Eskrima" @@ -138369,6 +139131,25 @@ msgstr "" "\n" "器用x50%のブロック時ダメージ軽減" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "防御カウンター" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" +"攻撃を仕掛けるフリをしながら、複合攻撃を繰り出す準備動作をします。\n" +"\n" +"ブロック効果+2\n" +"「複合攻撃」有効化\n" +"2ターン継続" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "受け流す" @@ -138435,11 +139216,11 @@ msgstr "固守" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" "しっかりと地を踏みしめ、どんな脅威に対しても動揺しません。\n" "\n" -"ブロック+2、回避スキル-1.0、筋力x50%のブロック時ダメージ軽減" +"ブロック効果+2、ブロック発動+1、回避スキル-1.0、筋力x50%のブロック時ダメージ軽減" #: lang/json/martial_art_from_json.py msgid "Tactical Retreat" @@ -138452,13 +139233,15 @@ msgstr "戦術的撤退" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" "移動して「固守」を無効化しました!\n" "\n" -"ブロック-2、回避スキル+1.0、筋力x50%のブロック時ダメージ軽減\n" -"1ターン継続" +"ブロック効果-2、ブロック発動-1、回避スキル+1.0、筋力x50%のブロック時ダメージ軽減\n" +"「大旋回」「引き倒し」有効化\n" +"2ターン継続" #: lang/json/martial_art_from_json.py msgid "Defense Break" @@ -138471,11 +139254,13 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" -"ブロックに成功することで、相手の防御の隙が見えます。\n" +"ブロックに成功することで、相手の防御に隙が生まれます。\n" "\n" "命中+1\n" +"「回避フック」有効化\n" "1ターン継続、最大蓄積数3" #: lang/json/martial_art_from_json.py @@ -138532,6 +139317,22 @@ msgstr "" "組み手の知識が身に付き、打ち倒されても即座に回復できます。\n" "更に、拘束や打ち倒し攻撃に投げ技で対抗できます。" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "完璧なポジション" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" +"カウンター攻撃に最適なポジションを確保しました!\n" +"\n" +"打撃与ダメージ+30%" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "空手" @@ -138571,7 +139372,7 @@ msgid "" msgstr "" "攻撃を命中させることで、複数の敵に対して最大限の防御力を発揮できるように立ち回ります。\n" "\n" -"ブロック+2、回避+1、ブロック発動時に筋力x50%のダメージを軽減\n" +"ブロック発動+2、回避発動+1、ブロック発動時に筋力x50%のダメージを軽減\n" "2ターン継続" #: lang/json/martial_art_from_json.py @@ -138627,7 +139428,26 @@ msgid "" msgstr "" "訓練によって命中精度や複数の敵との戦闘技術を向上させます。\n" "\n" -"命中+1、ブロック+1" +"命中+1、ブロック発動+1" + +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "決定的一撃" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" +"敵に大きな隙が生じました。\n" +"\n" +"会心発生+5%\n" +"1ターン継続" #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" @@ -138641,7 +139461,7 @@ msgid "" "than Strength. Moving increases dodge skill and accuracy further; attacking" " after moving increases damage." msgstr "" -"少林拳に伝わる、五獣拳の1つです。豹形拳は戦略的な素早い攻撃が特徴です。筋力ではなく器用によって与ダメージが上昇し、移動することで回避スキルと命中精度が更に上昇します。移動後に攻撃すると与ダメージが増加します。" +"少林拳に伝わる五獣拳の一つです。豹形拳は戦略的な素早い攻撃が特徴です。筋力ではなく器用によって与ダメージが上昇し、移動することで回避スキルと命中精度が更に上昇します。移動後に攻撃すると与ダメージが増加します。" #. ~ initiate message for martial art '{'str': 'Leopard Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -138779,7 +139599,7 @@ msgid "" msgstr "" "油断のない騎士の構えによって、剣による防御力が向上します。\n" "\n" -"ブロック+1、筋力x50%のブロック時ダメージ軽減" +"ブロック発動+1、筋力x50%のブロック時ダメージ軽減" #: lang/json/martial_art_from_json.py msgid "Half Swording" @@ -138800,6 +139620,25 @@ msgstr "" "筋力x50%のブロック時ダメージ軽減、命中精度-1\n" "「掴み倒し」「致命の一撃」有効化" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "名人の剣捌き" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" +"攻撃を受け流し、より勢いを込めた反撃をお返ししました!\n" +"\n" +"与ダメージ+10%、行動コスト-10\n" +"1ターン継続" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "ムエタイ" @@ -139206,21 +140045,22 @@ msgstr "" "回避+1" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" -msgstr "回避(シラット)" +msgid "Silat Ambush" +msgstr "シラットの伏撃" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" -"敵に拘束されないよう、姿勢を低くして移動します。\n" +"敵に防御されないように、より低い姿勢で攻撃を繰り出します。\n" "\n" -"回避+1\n" -"2ターン継続" +"会心発生+5%\n" +"1ターン継続" #: lang/json/martial_art_from_json.py msgid "Silat Appraisal" @@ -139252,7 +140092,7 @@ msgid "" " than Dexterity. Standing still will increases your accuracy and damage of " "your next attack." msgstr "" -"少林拳に伝わる五獣拳の1つです。蛇形拳はしなやかな動きと正確な攻撃を使いこなします。器用ではなく感覚によって命中精度が決定します。その場に留まると、次の攻撃の精度と威力が上昇します。" +"少林拳に伝わる五獣拳の一つです。蛇形拳はしなやかな動きと正確な攻撃を使いこなします。器用ではなく感覚によって命中精度が決定します。その場に留まると、次の攻撃の精度と威力が上昇します。" #. ~ initiate message for martial art '{'str': 'Snake Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -139298,7 +140138,7 @@ msgid "" msgstr "" "ヘビは攻撃を仕掛ける絶好の瞬間をじっと待ちます。敵が気を許した隙を突き、弱点を容赦なく攻めましょう!\n" "\n" -"命中+1、感覚x50%の貫通力上昇\n" +"命中+1、感覚x50%の装甲貫通\n" "1ターン継続、最大蓄積数3" #: lang/json/martial_art_from_json.py @@ -139335,11 +140175,11 @@ msgstr "槍術の構え" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" "訓練によって長柄武器装備中の防御力が向上しました。\n" "\n" -"ブロック+1" +"ブロック発動+1、ブロック効果+2" #: lang/json/martial_art_from_json.py msgid "Superior Positioning" @@ -139357,7 +140197,7 @@ msgid "" msgstr "" "一旦防御を放棄して攻めに転じます。\n" "\n" -"与ダメージ+10%、ブロック-1\n" +"与ダメージ+10%、ブロック発動-1\n" "1ターン継続" #: lang/json/martial_art_from_json.py @@ -139457,26 +140297,7 @@ msgid "" msgstr "" "敵の攻撃を予測し、防御に集中します。\n" "\n" -"ブロック+1、感覚x100%のブロック時ダメージ軽減" - -#: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" -msgstr "猿戯" - -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' -#: lang/json/martial_art_from_json.py -#, no-python-format -msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" -"\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." -msgstr "" -"敵の動きを正確に捉える位置取りによって攻撃の正確性を増し、防御を掻い潜ります。\n" -"\n" -"感覚x20%の命中精度上昇、感覚x50%の打撃装甲貫通。\n" -"2ターン継続" +"ブロック発動+1、感覚x100%のブロック時ダメージ軽減" #: lang/json/martial_art_from_json.py msgid "Cross Hands" @@ -139488,16 +140309,35 @@ msgstr "十字手" msgid "" "By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" "Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" "Lasts 3 turns." msgstr "" "時間をかけて準備を整えることで、全身をフルに使った攻防が可能になります。\n" "\n" -"回避スキル+1.0、感覚x50%のブロック時ダメージ軽減\n" +"ブロック効果+2、感覚x50%のブロック時ダメージ軽減\n" "「掌打」「双掌打」有効化\n" "3ターン継続" +#: lang/json/martial_art_from_json.py +msgid "Repulse the Monkey" +msgstr "猿戯" + +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"\n" +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." +msgstr "" +"敵の動きを正確に捉える位置取りによって攻撃の正確性を増し、防御を掻い潜ります。\n" +"\n" +"感覚x20%の命中精度上昇、感覚x50%の打撃与ダメージ装甲貫通\n" +"2ターン継続" + #: lang/json/martial_art_from_json.py msgid "Tiger Kung Fu" msgstr "虎形拳" @@ -139509,7 +140349,7 @@ msgid "" "attacks above all else. Your Strength determines your accuracy, and your " "attacks do increasing damage as you continue attacking." msgstr "" -"少林拳に伝わる、五獣拳の1つです。虎形拳の全ては敵を寄せ付けない激しい攻撃にあります。器用さではなく筋力によって命中精度が決定されます。連続で攻撃が命中する度に威力が上昇します。" +"少林拳に伝わる五獣拳の一つです。虎形拳の全ては敵を寄せ付けない激しい攻撃にあります。器用さではなく筋力によって命中精度が決定されます。連続で攻撃が命中する度に威力が上昇します。" #. ~ initiate message for martial art '{'str': 'Tiger Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -139576,7 +140416,7 @@ msgid "" msgstr "" "敵が途方に暮れたらこっちのものです。次に繰り出す攻撃は装甲を貫通します。\n" "\n" -"筋力x50%の貫通力上昇\n" +"筋力x50%の装甲貫通\n" "1ターン継続、最大蓄積数2" #: lang/json/martial_art_from_json.py @@ -139634,11 +140474,11 @@ msgstr "黐手" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" "体幹と技術をより深く研究しました。敵の攻撃を見切りやすくなります。\n" "\n" -"感覚x15% の回避スキル上昇、感覚x50%のブロック時ダメージ軽減" +"感覚x25% の回避スキル上昇、感覚x50%のブロック時ダメージ軽減" #: lang/json/martial_art_from_json.py msgid "Biu Ji" @@ -139858,7 +140698,27 @@ msgstr "" "set_hit_bonus( get_hit_bonus() + 1 );\n" "}\n" "\n" -"ブロック+2、命中精度+1" +"ブロック発動+2、命中精度+1" + +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "バイナリ堅牢化" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"打撃、斬撃、刺突耐性+3\n" +"3ターン継続、最大蓄積数3" #: lang/json/martial_art_from_json.py msgid "Optimization" @@ -139931,16 +140791,17 @@ msgstr "百足の毒" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" "最高のタイミングで毒が敵を蝕みます。\n" "\n" "\n" -"打撃与ダメージ+2\n" +"与ダメージ+15%\n" "2ターン継続" #: lang/json/martial_art_from_json.py @@ -140053,14 +140914,15 @@ msgstr "サソリの毒" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" "サソリの毒からは絶対に逃れられません。\n" "\n" -"打撃与ダメージ+2" +"与ダメージ+15%" #: lang/json/martial_art_from_json.py msgid "Scorpion's Charge" @@ -140789,12 +141651,31 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." msgstr "" "「シャッテン・フォルゲン」\n" "機甲術使いとして、常に標的の死角に立つよう訓練されています。\n" "\n" -"回避+1、感覚x12%%の回避スキル上昇" +"回避発動+1、感覚x15%%の回避スキル上昇" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "固有流儀" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." +msgstr "" +"「ザイナーヴァイゼン」\n" +"機甲術を会得したことで、全ての攻撃が致死性のプラズマをまとうようになりました!\n" +"\n" +"感覚x50%の電撃与ダメージ付与" #: lang/json/martial_art_from_json.py msgid "Einzug Rüstungen" @@ -140803,16 +141684,17 @@ msgstr "遊撃功律動" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" "「アインザッツリュトメン」\n" "相手のリズムに同調することで、特に防御が薄い位置を狙って攻撃します。\n" -"打撃装甲貫通+3\n" -"2ターン継続" +"命中+1、感覚x50%の装甲貫通\n" +"3ターン継続" #: lang/json/martial_art_from_json.py msgid "Pokken" @@ -140918,6 +141800,24 @@ msgstr "重心をずらし、自身を守る準備を整えました。" msgid "%s shifts their weight and assumes a new stance." msgstr "%sは重心をずらし、今までと異なる構えをとりました。" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "偽装降伏" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" +"意図的に防御態勢を解くことで相手のバランスを崩し、素早く次の行動に移ります。\n" +"\n" +"速度+20\n" +"1ターン継続" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "奇妙な構え" @@ -140930,30 +141830,31 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" -"敵の攻撃に備え、投げ飛ばす用意を整えます!\n" +"敵の攻撃をかわし、投げ飛ばす用意を整えます!\n" "\n" "知性x20%の回避スキル上昇、「全力投げ」「巨砲投げ」有効化\n" -"1ターン継続" +"2ターン継続" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" -msgstr "偽装降伏" +msgid "Fool's Strike" +msgstr "愚弄攻撃" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" -"意図的に防御態勢を解くことで相手のバランスを崩し、素早く次の行動に移ります。\n" +"相手の攻撃を逆手に取るように、巧みに立ち回ります。\n" "\n" -"速度+20\n" -"1ターン継続" +"打撃与ダメージ+20%\n" +"2ターン継続" #: lang/json/martial_art_from_json.py msgid "Shii-Cho" @@ -141009,7 +141910,7 @@ msgid "" msgstr "" "シャイ=チョーを使った訓練によって、複数の敵との戦い方を学びます。\n" "\n" -"ブロック+1、ブロック効果+1" +"ブロック発動+1、ブロック効果+1" #: lang/json/martial_art_from_json.py msgid "Knight Training" @@ -141025,7 +141926,7 @@ msgid "" msgstr "" "シャイ=チョーを使った更なる訓練によって、複数の敵との戦闘技術を向上させます。\n" "\n" -"ブロック+1、ブロック効果+1" +"ブロック発動+1、ブロック効果+1" #: lang/json/martial_art_from_json.py msgid "Master Training" @@ -141041,7 +141942,25 @@ msgid "" msgstr "" "シャイ=チョーをマスターしました。集団戦闘では誰にも負けません。\n" "\n" -"ブロック+1、ブロック効果+1" +"ブロック発動+1、ブロック効果+1" + +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "伏流の反撃" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" +"攻撃を受け流しながらカウンターを叩き込みます。\n" +"\n" +"行動コスト-25%\n" +"1ターン継続" #: lang/json/martial_art_from_json.py msgid "Stone Dragon" @@ -142736,7 +143655,7 @@ msgstr "まだ仕事が済んだようには見えないが。" msgid "Kill your pursuer" msgstr "追跡者を殺す" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -142936,7 +143855,7 @@ msgstr "大邸宅へ行って宅配を完了する" msgid "Refuel your helicopter." msgstr "ヘリコプターに補給する" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -143144,7 +144063,7 @@ msgstr "がっかりだよ..." msgid "Prove You're A Survivor" msgstr "サバイバーである事を示す" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -143199,8 +144118,7 @@ msgstr "君がどうやって死んだのか、その後どうやって私に話 msgid "Gather cattail stalks to create cattail jelly" msgstr "茎(ガマ)を集める" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -143368,7 +144286,7 @@ msgstr "歌が聞こえるまで続けるのだ。" msgid "Protect fisherman's daughter" msgstr "漁師の娘を守る" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "素敵な女の子を死なせる訳にはいきませんね?" @@ -143382,7 +144300,7 @@ msgstr "-" msgid "Lighthouse" msgstr "灯台" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "ミハイルを灯台まで先導しましょう。" @@ -143422,7 +144340,7 @@ msgstr "いい感じじゃないか、。どうにかしてを msgid "House cleaning" msgstr "大掃除" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "ミハイルと共に灯台のを一掃しましょう。" @@ -143458,7 +144376,7 @@ msgstr "よし、いいぞ。この調子で全ての階を掃除しよう msgid "Fisherman's family" msgstr "漁師の一家" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "ミハイルに家族を連れてくるよう頼まれました。" @@ -143490,7 +144408,7 @@ msgstr "、言葉にできんほど感謝しているよ。一生の借 msgid "Fisherman's boat" msgstr "漁船" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "ボート作りを手伝うために、250本の釘をミハイルに渡しましょう。" @@ -143535,7 +144453,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "灯台の修理" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -143579,16 +144497,50 @@ msgstr "、あんたは素晴らしいよ!あとは待つだけだ..." msgid "Protect fisherman's wife" msgstr "漁師の妻を守る" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "素敵な女性を死なせる訳にはいきませんね?" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "ルビクに6Lの麻酔薬を渡す" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "しょっぱい料理" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "100個の食塩を探しましょう。" @@ -143635,7 +144587,7 @@ msgstr "気にしないで、それほど重要な仕事でもない。" msgid "Pickled Meals" msgstr "酸っぱい料理" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "5個のガラス瓶(3L)を見つけましょう。" @@ -143686,7 +144638,7 @@ msgstr "緊急の仕事ではないから、気にするな。" msgid "Prickled Meals" msgstr "精いっぱいの料理" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "ブッチャーナイフを見つけましょう。" @@ -143729,7 +144681,7 @@ msgstr "助けてくれてありがとう。" msgid "Busy While Work" msgstr "本に夢中" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "3個の本(一般/ミステリー小説)を見つける。" @@ -143779,7 +144731,7 @@ msgstr "別にいいよ。何か他の本を探そう。" msgid "Timber!" msgstr "木こり仕事" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "5つの丸太を持ってきましょう。" @@ -143806,7 +144758,7 @@ msgstr "どうだ?揃ったか?" msgid "Sweets" msgstr "スイーツ" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "25個のブラックベリーを探す" @@ -143841,7 +144793,7 @@ msgstr "協力してくれてありがとう。これが報酬だ。" msgid "Visit the Isherwoods" msgstr "イシャーウッド氏を訪ねる" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -144354,7 +145306,7 @@ msgstr "しかたがない。他の仕入れ先を探すことにするよ。" #: lang/json/mission_def_from_json.py msgid "I wonder where all the seeds went…" -msgstr "全ての小麦の種がどこかに消えてしまったんだろうか..." +msgstr "地球上から全ての小麦の種が消えてしまったんだろうか..." #: lang/json/mission_def_from_json.py msgid "Kill monster" @@ -144721,7 +145673,7 @@ msgstr "これで調査が必要な信号を指揮官に報告できるな。" msgid "Angry pizzaiolo" msgstr "怒れるピッツァ職人" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -144759,7 +145711,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "フードパーソンを探す" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "ピッツァ職人が真のフードパーソンを見つけるのを手伝いましょう。" @@ -144797,7 +145749,7 @@ msgstr "やったな、。一発かましてやろう!" msgid "Pizza parlor" msgstr "ピッツェリア" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "ピッツァ職人のレストラン奪還を手伝いましょう。" @@ -144834,7 +145786,7 @@ msgstr "" msgid "Family house" msgstr "わが家へ" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -144863,7 +145815,7 @@ msgstr "私の話をちゃんと聞いていれば、簡単に作れるはずさ msgid "Find scrap for the meteorologist" msgstr "気象学者に金属屑を渡す" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "気象学者から金属屑を50個持ってくるよう頼まれました。" @@ -144917,7 +145869,7 @@ msgstr "どうしてそんなことを言うんだ?" msgid "Find batteries for the meteorologist" msgstr "気象学者に充電池(中)を渡す" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "気象学者から充電池(中)を6個持ってくるよう頼まれました。" @@ -144948,7 +145900,7 @@ msgstr "いいね、早速続きに取り掛かろう..." msgid "Find lens_small 5" msgstr "小型高性能レンズを5個渡す" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "気象学者から小型高性能レンズを5個持ってくるよう頼まれました。" @@ -144977,7 +145929,7 @@ msgstr "いいね、早速続きに取り掛かろう..." msgid "Find radiocontrol" msgstr "遠隔制御装置を渡す" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "気象学者から遠隔制御装置を持ってくるよう頼まれました。" @@ -145008,7 +145960,7 @@ msgstr "" msgid "Find crashed drone" msgstr "墜落したドローンを探す" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "気象学者から墜落したドローンを持ってくるよう頼まれました。" @@ -145284,8 +146236,7 @@ msgstr "残念だが、努力には感謝しよう。気持ちいいことをし msgid "Find someone to clean up the back bay." msgstr "建物裏手の片付け要員を探す" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -145698,7 +146649,7 @@ msgstr "そうそう。これだよこれ。今後のテストはきっと上手 msgid "Find 50 doses of antiseptic" msgstr "消毒薬を50単位渡す" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -145741,7 +146692,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "包帯を30個渡す" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -145770,7 +146721,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "プロザックを6瓶分持ってくる" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -145855,7 +146806,7 @@ msgstr "本当に?*ハサミ*すら見つけられないのか?出かける msgid "In a Pickle Pt. 2" msgstr "瓶詰め(2)" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -145894,7 +146845,7 @@ msgstr "わぁ、思っていたよりも随分たくさん瓶があるな。あ msgid "Smokes, let's go." msgstr "一服いかが" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -145939,7 +146890,7 @@ msgstr "ありがとう!人と会ったら忘れずに君の手柄を伝える msgid "Clear Back Bay" msgstr "建物裏手の掃除" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -145990,7 +146941,7 @@ msgstr "" msgid "Missing Caravan" msgstr "行方不明の隊商" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -146035,7 +146986,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "本(一般/大農園発起書) を受け取る" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -146079,7 +147030,7 @@ msgstr "" msgid "Solar Power" msgstr "太陽の力" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -146115,7 +147066,7 @@ msgstr "素晴らしい、十分な礼はできないが、また持ってきて msgid "In a Pickle" msgstr "瓶詰め" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -146162,7 +147113,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "見知らぬ受取人" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -146173,6 +147124,65 @@ msgstr "HDDを軍の残党のもとへ運びましょう。受け渡しが完了 msgid "Have you finished the delivery already?" msgstr "配達はもう終わったのか?" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "農場を調べる" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "農場に住んでる一家を見てきてはどうだろう。どうも隊商と関わりたがっていないようなんだ。君なら会ってもらえるかもしれない。" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "いいね。" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "妥当な判断だ。" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "気を付けて行け。外は危険だからな。" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "ふうん、そうか。" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "まぁいいんじゃないか。" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "ある噂を聞いた。秘密の研究所みたいな施設がこの荒野のどこかにあって、しかも生存者が住んでるらしいんだ。" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "屑鉄の砦を調べる" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" +"戻ってきた隊商のメンバーが、人里離れた岩山の上に建つ巨大な屑鉄の砦を見たそうだ。わざわざ中へ侵入するほど狂ってはいなかったようだがな。気になるなら、見に行ってみてはどうだ。" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "自己責任だからな。" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "危険な場所だろうから、気を付けて行け。" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -146327,7 +147337,7 @@ msgstr "素晴らしい!これで、どんな貨物がどの研究所に送ら msgid "Supply the arsonist." msgstr "放火屋に物資を供給しましょう。" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "放火屋に化学肥料42kgを渡す" @@ -146383,7 +147393,7 @@ msgstr "畜生。同じようなことを考えてる奴がいるんだな。" msgid "Kill Bandits" msgstr "盗賊を殺す" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -146423,7 +147433,7 @@ msgstr "無法者の殲滅、ご苦労だった。オールドガードとして msgid "Deal with Informant" msgstr "内通者を始末する" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -146461,11 +147471,65 @@ msgstr "裏切り者を始末できたか?" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "ありがとう、君のやったことについて誰かに聞かれたら、こちらでちゃんと説明しておく。" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "ロボットの出所を探る" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" +"普段あまり連絡をよこさない司令部から、最近無線でメッセージが届いたんだ。この仕事は君が適任な気がするな。世界崩壊後に、奇妙なロボットのようなものの目撃報告があった。原因は不明だが、司令部はロボットの出所と思われる場所を突き止めたらしい。ロボットの製作者を突き止めて、そいつから技術支援を得られるかどうか調べてくれ。これは厳密には偵察任務だ。相手が敵対的な存在である可能性もあるから、派手な接触は避けた方がいい。" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "妙な話を聞いてしまった..." + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "ありがとう。そいつの正体が分かったら、報告してくれ。" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "気が変わったら戻ってきてくれ。もし、そいつが私たちの味方である可能性が少しでもあるなら、できる限り協力を得たいと思っているのだ。" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" +"そいつの周囲に妙な機械があったとしても、触らない方がいい。忍び足で逃げるのが賢明だ。どうやらゾンビを敵視はしているようだが、だからと言って君とゾンビの区別が付いてるとは限らないからな。" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "素晴らしい、正直、君を送り出してから気が気でなかったよ。" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "それは非常に残念だ。もっと上手くやってくれると思っていたのだが。ともかく、引き受けてくれた事には感謝する。" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "クソッ...いつかまた機会がくることを願っているよ。" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "交易ルートの護衛" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -146493,15 +147557,11 @@ msgid "" "be able to find something." msgstr "周囲に何か痕跡はなかったか?私は追跡の専門家ではないが、君なら何か発見できるはずだ。" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "素晴らしい、正直、君を送り出してから気が気でなかったよ。" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "レイダーのボスを暗殺する" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -146562,7 +147622,7 @@ msgstr "" msgid "Return Field Data" msgstr "実地データを回収する" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -146615,7 +147675,7 @@ msgstr "本当に役立たずだな..." msgid "Steal a dead man's mind" msgstr "死者の精神を取り出す" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -146664,7 +147724,7 @@ msgstr "感謝の気持ちとお礼を送るよ。" msgid "Light retrieval" msgstr "光の復活" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -146711,13 +147771,14 @@ msgstr "テンプレートを取ってきたか?" msgid "Iron Safari" msgstr "鉄塊狩り" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" -"地球外の技術が用いられているロボットを停止して回収しましょう。ハブ01で示された地点のロボットを狙うか、あるいはどこか別の場所で起動していないロボットを見つけましょう。" +"地球外の技術が用いられているロボットを停止して回収しましょう。ハブ01で示された地点のロボットを狙うか、あるいはどこか別の場所で起動していないロボットを見つけましょう。ロボットを停止するには、電子工学や機械整備の技術が必要です。" #: lang/json/mission_def_from_json.py msgid "" @@ -146763,7 +147824,7 @@ msgstr "期待通りの活躍だ。試作銃の使い心地を気に入っても msgid "Retrieve chunks of gold" msgstr "金塊を手に入れる" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "200個の金を集めましょう。" @@ -146811,7 +147872,7 @@ msgstr "何もないじゃないか。自分で金を探すことにするよ。 msgid "Active Noise Control" msgstr "ノイズを消し去る" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -146856,7 +147917,7 @@ msgstr "ああ、そりゃどうも。" msgid "Return to Hub 01" msgstr "ハブ01へ戻る" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "ハブ01へ戻りましょう。" @@ -147352,7 +148413,7 @@ msgstr "2つ必要だ。溶接機が壊れたら、修理するには溶接機 msgid "" "The only place I've seen them is garages but I imagine you could find them " "in some stores." -msgstr "車両修理工場でしか見たことがないが、他にも置いてある店があるかもな。" +msgstr "車両整備工場でしか見たことがないが、他にも置いてある店があるかもな。" #: lang/json/mission_def_from_json.py msgid "Do you have the welders?" @@ -148077,17 +149138,17 @@ msgstr "ミ=ゴの生態" #. ~ Description for mission 'Migo biology' #: lang/json/mission_def_from_json.py msgid "Find fetid goop." -msgstr "臭いヘドロを探しましょう。" +msgstr "臭い粘液を探しましょう。" #: lang/json/mission_def_from_json.py msgid "I need 14 fetid goops from mi-go locations." -msgstr "ミ=ゴがいる場所で臭いヘドロを14単位採取してきてほしいんだ。" +msgstr "ミ=ゴがいる場所で臭い粘液を14単位採取してきてほしいんだ。" #: lang/json/mission_def_from_json.py msgid "" "My experiments are at a critical point. Could you find about… 14 fetid " "goops for me?" -msgstr "実験もいよいよ大詰めだ。よかったら...臭いヘドロを14単位集めてきてもらえないか?" +msgstr "実験もいよいよ大詰めだ。よかったら...臭い粘液を14単位集めてきてもらえないか?" #: lang/json/mission_def_from_json.py msgid "" @@ -148564,7 +149625,7 @@ msgstr "バンバン" msgid "Secure Area" msgstr "保護区域" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -148584,7 +149645,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "森の迷子" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -148612,7 +149673,7 @@ msgstr "あまり音を立てない方がいい。森の中は視界が悪いか msgid "Protect the cattle" msgstr "家畜を守る" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "沼地で何者かがウシを盗んでいます。被害を止めましょう。" @@ -148648,7 +149709,7 @@ msgstr "" msgid "Betty" msgstr "ベティ" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "50体の恐竜を殺す" @@ -148696,7 +149757,7 @@ msgstr "それを聞きたかったんだ。私たちもやり遂げたし、何 msgid "Stromer" msgstr "ストローマー" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "ティラノサウルス・レックスを殺せ" @@ -149476,6 +150537,30 @@ msgid "" " and stumbles." msgstr "%1$sはグレートクラブでの%2$sを叩き潰そうとしましたが、狙いが外れてふらつきました。" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "%1$sは炎の鞭を振るいました!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "%1$sは目掛けて炎の鞭を振るいました!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "%1$sが炎の鞭を振るいましたが、装甲に阻まれました。" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "%1$sが目掛けて炎の鞭を振るいましたが、装甲に阻まれました。" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -149604,7 +150689,7 @@ msgstr "ジャンクフードを食べた" #: lang/json/morale_type_from_json.py msgid "Wheat Allergy" -msgstr "小麦アレルギー" +msgstr "穀粉アレルギー" #: lang/json/morale_type_from_json.py msgid "Enjoyed sugary food" @@ -150094,29 +151179,29 @@ msgstr "深淵に到達しました。" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py msgid "Gastropod" -msgstr "" +msgstr "腹足類" #. ~ Mutation class: Gastropod mutagen_message #: lang/json/mutation_category_from_json.py msgid "Are you dancing a descending spiral?" -msgstr "" +msgstr "まるで踊るように、螺旋の道を下り続けています。" #. ~ Mutation class: Gastropod iv_message #: lang/json/mutation_category_from_json.py msgid "Your split lower body starts to come back together." -msgstr "" +msgstr "離れ離れになっていた半身を取り戻しました。" #. ~ Mutation class: Gastropod Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" msgid "Left a trail." -msgstr "" +msgstr "道に痕跡を残して進みました。" #. ~ Mutation class: Gastropod Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" msgid "Left a trail." -msgstr "" +msgstr "道に痕跡を残して進みました。" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py @@ -150168,13 +151253,13 @@ msgstr "注射された液体が体に馴染み、鼓動が荒ぶっています #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "自らの野性を受け入れました。" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "自らの野性を受け入れました。" #. ~ Mutation class name @@ -150372,29 +151457,29 @@ msgstr "醜い人間の皮を脱ぎ捨てました。" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py msgid "Batrachian" -msgstr "" +msgstr "両生類" #. ~ Mutation class: Batrachian mutagen_message #: lang/json/mutation_category_from_json.py msgid "An involuntary hop and a croak." -msgstr "" +msgstr "無意識のうちに飛び跳ねたり、ゲロゲロ鳴いたりしています。" #. ~ Mutation class: Batrachian iv_message #: lang/json/mutation_category_from_json.py msgid "Like a tadpole you must transform." -msgstr "" +msgstr "オタマジャクシのように、変身する時を迎えました。" #. ~ Mutation class: Batrachian Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" msgid "Found a bigger pond." -msgstr "" +msgstr "もっと大きな池を見つけました。" #. ~ Mutation class: Batrachian Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" msgid "Found a bigger pond." -msgstr "" +msgstr "もっと大きな池を見つけました。" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py @@ -150904,6 +151989,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "五毒門の門下生です。開始時から蜈蚣功、蛇功、蝎子功、壁虎功、蛤蟆功の内1つを修得しています。" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "標準的神経工学インターフェース" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "ユニバーサルコントロールと自動分散制御機能をもつ小型CBMを中枢神経系に埋め込んでいます。" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "エクゾディサイボーグフレームワーク-1a" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "脳や一部の臓器を頑丈な二足歩行フレームで保護しています。" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "髪型(黒/角刈り)" @@ -151703,7 +152810,7 @@ msgstr "発光器官が明るく光っています。" msgid "" "You can spit a wad of bioluminescent goo several meters away. There it will" " light up it's surroundings until it dissipates." -msgstr "" +msgstr "蓄光性の粘液を数メートル先まで噴出することができます。付着した発光粘液は消滅するまで周囲を照らし続けます。" #: lang/json/mutation_from_json.py msgid "Normal Human" @@ -151811,19 +152918,25 @@ msgstr "動作が機敏であり、行動コストに10%のボーナスを得ま #: lang/json/mutation_from_json.py msgid "Tunnel Fighter" -msgstr "" +msgstr "坑道兵" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " "bonuses when fighting underground." -msgstr "" +msgstr "崩壊の危険性がある狭い穴の中での戦い方を心得ています。地下での戦闘時にボーナスを得ます。" #: lang/json/mutation_from_json.py msgid "Night Raider" -msgstr "" +msgstr "夜戦兵" + +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "肉体を宵闇に紛れさせることができます。月が出ている時間帯であれば、天気にかかわらず立てる音が小さくなります。" #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py @@ -151879,21 +152992,21 @@ msgstr "新陳代謝が激しいため、どんな場所でも眠りに付けま #: lang/json/mutation_from_json.py msgid "Earth Sleeper" -msgstr "" +msgstr "穴籠もり" #. ~ Description for {'str': 'Earth Sleeper'} #: lang/json/mutation_from_json.py msgid "You always sleep better surrounded by earth." -msgstr "" +msgstr "地下にいる方がよく眠れます。" #: lang/json/mutation_from_json.py msgid "Aquatic Sleeper" -msgstr "" +msgstr "水籠もり" #. ~ Description for {'str': 'Aquatic Sleeper'} #: lang/json/mutation_from_json.py msgid "You always sleep better underwater." -msgstr "" +msgstr "水中にいる方がよく眠れます。" #: lang/json/mutation_from_json.py msgid "Pain Resistant" @@ -151949,19 +153062,19 @@ msgstr "足の皮が厚く、裸足で歩く事に慣れています。足にア #: lang/json/mutation_from_json.py msgid "Bovine Bulk" -msgstr "" +msgstr "ウシの体格" #. ~ Description for {'str': 'Bovine Bulk'} #: lang/json/mutation_from_json.py #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" -msgstr "" +" hit points. Swimming will be more difficult from now on." +msgstr "体重が大幅に増加していますが、そのほとんどが筋肉の重さです。全部位のHPに10%のボーナスを得ます。水泳が困難になります。" #: lang/json/mutation_from_json.py msgid "Bull Roids" -msgstr "" +msgstr "ウシの巨体" #. ~ Description for {'str': 'Bull Roids'} #: lang/json/mutation_from_json.py @@ -151971,6 +153084,7 @@ msgid "" "get a 20% bonus to all hit points. Swimming is no longer recommended for " "someone built like you." msgstr "" +"きっと大変動以前のスポーツ大会には出場を許されない、異常な筋肉量です。全部位のHPに20%のボーナスを得ます。この体格で泳ごうなどと考えてはいけません。" #: lang/json/mutation_from_json.py msgid "Tough" @@ -152078,7 +153192,7 @@ msgstr "食中毒やアルコールによって嘔吐する確率が低くなり #: lang/json/mutation_from_json.py msgid "Stomach Cleanse" -msgstr "" +msgstr "胃洗浄" #. ~ Description for {'str': 'Stomach Cleanse'} #: lang/json/mutation_from_json.py @@ -152088,6 +153202,7 @@ msgid "" "poisoning, alcohol, etc. If you throw up because of this this, you won't " "suffer any residual nausea." msgstr "" +"胃を裏返して口から吐き出し、毒素を素早く排出する能力を獲得しました。食中毒やアルコールの過剰摂取で嘔吐しやすくなりますが、胃洗浄によって嘔吐した場合、吐き気の後遺症に悩まされることはありません。" #: lang/json/mutation_from_json.py msgid "Good Memory" @@ -152103,7 +153218,7 @@ msgstr "記憶力が高く、学んだことを長く覚えていられます。 #: lang/json/mutation_from_json.py msgid "Deft" -msgstr "器用" +msgstr "機敏な動き" #. ~ Description for {'str': 'Deft'} #: lang/json/mutation_from_json.py @@ -152205,9 +153320,9 @@ msgstr "畏怖" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." -msgstr "" +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." +msgstr "恐ろしい気配を発しており、生物が逃走する可能性が上昇します。" #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -152233,7 +153348,7 @@ msgstr "危機に陥ると一時的に速度と筋力が大幅上昇するアド #: lang/json/mutation_from_json.py msgid "Combat Adaptation" -msgstr "" +msgstr "戦闘態勢" #. ~ Description for {'str': 'Combat Adaptation'} #: lang/json/mutation_from_json.py @@ -152243,6 +153358,7 @@ msgid "" "process things around you slightly faster. Giving you better reaction times" " that you can pay for later if you survive." msgstr "" +"大きな危険に晒されている状況で生き延びる可能性を高めるために、脳内の化学物質を分泌させて神経系の処理速度を高めます。空腹や口渇、倦怠感が増す副作用があります。" #: lang/json/mutation_from_json.py msgid "Less Sleep" @@ -152518,14 +153634,14 @@ msgstr "怪我や加齢などの理由に関係なく、膝が弱く柔軟性が #: lang/json/mutation_from_json.py msgid "Strong Knees" -msgstr "" +msgstr "強靭な膝" #. ~ Description for {'str': 'Strong Knees'} #: lang/json/mutation_from_json.py msgid "" "Your knees are strong and capable of angles that you couldn't imagine " "previously. Moving over rough terrain will slow you down less than normal." -msgstr "" +msgstr "膝が丈夫になり、以前では考えられなかった衝撃にも耐えられるようになりました。起伏の多い地形でもあまり移動速度が低下しません。" #: lang/json/mutation_from_json.py msgid "Languorous" @@ -152677,7 +153793,7 @@ msgstr "字の読み書きを学んだ事がありません!本やコンピュ #: lang/json/mutation_from_json.py msgid "Poor Hearing" -msgstr "聴覚不全" +msgstr "軽度難聴" #. ~ Description for {'str': 'Poor Hearing'} #: lang/json/mutation_from_json.py @@ -152803,7 +153919,7 @@ msgid "" "for you to eat wheat-based products, but you will suffer morale penalties " "and obtain less nutrition from them." msgstr "" -"小麦に対するアレルギーを持つ珍しい体質です。小麦が入った食品を食べることは可能ですが、意欲が低下するペナルティが課され、得られる養分も減少します。" +"穀粉に対するアレルギーを持つ珍しい体質です。穀粉が入った食品を食べることは可能ですが、意欲が低下するペナルティが課され、得られる養分も減少します。" #: lang/json/mutation_from_json.py msgid "Sweet Tooth" @@ -153262,6 +154378,7 @@ msgid "" "toggle NV-visible areas on or off. Surprisingly, frogs' vision works " "exactly the same." msgstr "" +"視覚の処理方法が変化しました。暗闇では視界が向上し、明るい光の下では近視になりますが、メガネで矯正可能です。有効化して暗視能力を切り替えられます。驚くべきことに、これはカエルの視覚とほぼ同じものです。" #: lang/json/mutation_from_json.py msgid "Avian Eyes" @@ -154024,22 +155141,22 @@ msgstr "胴体から複数の墨袋が生えています。胴体に何も着用 msgid "" "You exude slime from your pores. You can spread that slime on an opponent " "in melee range." -msgstr "" +msgstr "毛穴から粘液を噴出します。近接戦闘距離にいる敵に粘液を付着させます。" #: lang/json/mutation_from_json.py msgid "Bulging Reservoir" -msgstr "" +msgstr "水分蓄積" #. ~ Description for {'str': 'Bulging Reservoir'} #: lang/json/mutation_from_json.py msgid "" "You develop a reservoir of fluids that bulges out of your abdomen. Your " "body has adapted to containing extra liquids in event of shortfalls." -msgstr "" +msgstr "腹部に水分を蓄積できる器官ができました。喉が渇いた時のために、水分を多めに体内に溜めておけます。" #: lang/json/mutation_from_json.py msgid "Bombadier Beetle Blast" -msgstr "" +msgstr "高熱ガス噴出" #. ~ Description for {'str': 'Bombadier Beetle Blast'} #: lang/json/mutation_from_json.py @@ -154048,16 +155165,17 @@ msgid "" "distance. This will drastically increase your thirst. Without an extra " "reservoir you would quickly dehydrate yourself." msgstr "" +"近接戦闘距離にいる敵めがけて高熱ガスを噴出します。口渇が大幅に上昇する欠点があり、体内に水分を蓄積する能力がなければ酷い口渇状態になってしまいます。" #: lang/json/mutation_from_json.py #, no-python-format msgid "You spray %s with a boiling chemical mixture" -msgstr "" +msgstr "%sめがけて高温のガスを噴出しました" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s sprays %2$s with a boiling chemical mixture" -msgstr "" +msgstr "%1$sは%2$sめがけて高温のガスを噴出しました" #: lang/json/mutation_from_json.py msgid "Large Talons" @@ -154153,7 +155271,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Amphibian Pheromones" -msgstr "" +msgstr "両生類フェロモン" #. ~ Description for {'str': 'Amphibian Pheromones'} #: lang/json/mutation_from_json.py @@ -154161,6 +155279,7 @@ msgid "" "Your body produces low-level pheromones, identifying you as a friend to many" " species of amphibian. Amphibians will attack you much less." msgstr "" +"身体から低レベルのフェロモンを分泌しています。多くの両生類が友人として認識してくれるようになり、両生類から攻撃される可能性が大幅に低下します。" #: lang/json/mutation_from_json.py msgid "Mammal Pheromones" @@ -154301,54 +155420,54 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Muscle Consolidation" -msgstr "" +msgstr "筋力強化" #. ~ Description for {'str': 'Muscle Consolidation'} #: lang/json/mutation_from_json.py msgid "" "Your extremities have gained strength but lost fine motor skills. -1 " "Dexterity +2 Strength." -msgstr "" +msgstr "四肢の筋肉が発達しましたが、微細な動きは苦手になりました。器用-1、筋力+2" #: lang/json/mutation_from_json.py msgid "Rasping Tongue" -msgstr "" +msgstr "歯舌" #. ~ Description for {'str': 'Rasping Tongue'} #: lang/json/mutation_from_json.py msgid "" "You've developed an extremely long and mobile tongue capped with teeth. You" " may use it to attack your enemies." -msgstr "" +msgstr "舌が非常に長く、自在に動き、表面が硬い歯のようなもので覆われています。この舌を使って敵を攻撃できます。" #: lang/json/mutation_from_json.py #, no-python-format msgid "You tear into %s with your rasping tongue." -msgstr "" +msgstr "歯舌で%sを切り裂きました。" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s tears into %2$s with their rasping tongue." -msgstr "" +msgstr "%1$sは歯舌で%sを切り裂きました。" #: lang/json/mutation_from_json.py msgid "Harpoon Tongue" -msgstr "" +msgstr "伸びる歯舌" #. ~ Description for {'str': 'Harpoon Tongue'} #: lang/json/mutation_from_json.py msgid "Your tongue has increased its length and mobility." -msgstr "" +msgstr "歯舌の長さと可動性が向上しました。" #: lang/json/mutation_from_json.py #, no-python-format msgid "You stab into %s with your harpoon tongue." -msgstr "" +msgstr "歯舌で%sを突き刺しました。" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s stabs into %2$s with their harpoon tongue." -msgstr "" +msgstr "%1$sは歯舌で%sを突き刺しました。" #: lang/json/mutation_from_json.py msgid "Compound Eyes" @@ -154376,28 +155495,28 @@ msgstr "頑丈な肉球が足の裏を覆っています。裸足で移動する #: lang/json/mutation_from_json.py msgid "Strong Legs" -msgstr "" +msgstr "強靭な脚" #. ~ Description for {'str': 'Strong Legs'} #: lang/json/mutation_from_json.py msgid "Your legs have gained muscle mass to propel you across any terrain." -msgstr "" +msgstr "脚の筋肉が発達し、どんな地形でも楽に移動できるようになりました。" #: lang/json/mutation_from_json.py msgid "Leaping Legs" -msgstr "" +msgstr "跳躍力" #. ~ Description for {'str': 'Leaping Legs'} #: lang/json/mutation_from_json.py msgid "You've gained a strong ability to leap from a standing position." -msgstr "" +msgstr "立った状態からの跳躍力が向上しました。" #. ~ Description for {'str': 'Crushing Leap'} #: lang/json/mutation_from_json.py msgid "" "You've gained a strong ability to leap a significant distance from a " "standing position and crush whatever you land on." -msgstr "" +msgstr "立った状態からかなりの距離を跳躍し、更に着地地点のものを蹴り砕けるようになりました。" #: lang/json/mutation_from_json.py msgid "Toe Talons" @@ -155208,7 +156327,7 @@ msgstr "伸縮性のある牙が下顎から生えてきました。素早い噛 #: lang/json/mutation_from_json.py msgid "Gastropod Foot" -msgstr "" +msgstr "腹足" #. ~ Description for {'str': 'Gastropod Foot'} #: lang/json/mutation_from_json.py @@ -155219,21 +156338,22 @@ msgid "" "noise. In addition to being harder to knock down, you can move through " "sludge-covered surfaces easily." msgstr "" +"脚の代わりに、腹にかけて並ぶ筋肉質な一本の腹足を使って移動するようになりました。移動速度は通常の1/4になり、脚や足にアイテムを着用できませんが、移動音はかなり小さくなります。転倒しにくくなり、ヘドロに覆われた地形も楽に移動できます。" #: lang/json/mutation_from_json.py msgid "Gastropod Balance" -msgstr "" +msgstr "腹足類の平衡感覚" #. ~ Description for {'str': 'Gastropod Balance'} #: lang/json/mutation_from_json.py msgid "" "By pushing your whole 'foot' against the ground you are able to move across " "rough terrain without losing your 'footing'." -msgstr "" +msgstr "腹足全体を地面に押し付けることで、起伏の多い地形でもしっかりした「足取り」で移動できます。" #: lang/json/mutation_from_json.py msgid "Mucus Secretion" -msgstr "" +msgstr "粘液分泌" #. ~ Description for {'str': 'Mucus Secretion'} #: lang/json/mutation_from_json.py @@ -155242,38 +156362,39 @@ msgid "" " covers evrerything you come into contact with but now you can move through " "slime you didn't create with ease." msgstr "" +"好きな人から「粘着質だ」と言われた経験があるかは知りませんが、まさにそのような状態になっています。触れたものは皆ネバネバになりますが、自分が分泌していない粘液が付いた地形も楽に移動できます。" #: lang/json/mutation_from_json.py msgid "Acidic Secretion" -msgstr "" +msgstr "酸性粘液分泌" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." -msgstr "" +"Your mucus has developed an acidic component that seems to soften your prey " +"up." +msgstr "肉を柔らかくする効果がある酸性の粘液を分泌します。" #: lang/json/mutation_from_json.py #, no-python-format msgid "You smear slime on %s" -msgstr "" +msgstr "%sに粘液を塗りたくりました" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s smears slime on %2$s" -msgstr "" +msgstr "%1$sは%2$sに粘液を塗りたくりました" #: lang/json/mutation_from_json.py msgid "Snail Trail" -msgstr "" +msgstr "粘液痕" #. ~ Description for {'str': 'Snail Trail'} #: lang/json/mutation_from_json.py msgid "" "You've developed some ability to control your slime emissions. As a result " "of this you can leave trails of slime anywhere you walk." -msgstr "" +msgstr "粘液の分泌をコントロールする能力を身につけました。あらゆる地形を移動した後に粘液を残すことができます。" #: lang/json/mutation_from_json.py msgid "Canine Ears" @@ -155494,7 +156615,7 @@ msgstr "筋力発達(レベル1)" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "筋肉が少し逞しくなりました。 筋力+1" #: lang/json/mutation_from_json.py @@ -155503,7 +156624,7 @@ msgstr "筋力発達(レベル2)" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "筋肉が逞しくなりました。 筋力+2" #: lang/json/mutation_from_json.py @@ -155512,8 +156633,8 @@ msgstr "筋力発達(レベル3)" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" -msgstr "筋肉が非常に逞しくなりました。 筋力+4" +msgid "Your muscles are much stronger. +4 Strength." +msgstr "筋肉が更に逞しくなりました。 筋力+2" #: lang/json/mutation_from_json.py msgid "Insanely Strong" @@ -155521,7 +156642,7 @@ msgstr "筋力発達(レベル4)" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "筋肉が目に見えて膨張しています。 筋力+7" #: lang/json/mutation_from_json.py @@ -155539,7 +156660,7 @@ msgstr "器用発達(レベル1)" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "少し軽快に動けます。 器用+1" #: lang/json/mutation_from_json.py @@ -155548,7 +156669,7 @@ msgstr "器用発達(レベル2)" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "軽快に動けます。 器用+2" #: lang/json/mutation_from_json.py @@ -155557,7 +156678,7 @@ msgstr "器用発達(レベル3)" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "俊敏かつ軽快に動けます。 器用+4" #: lang/json/mutation_from_json.py @@ -155566,8 +156687,8 @@ msgstr "器用発達(レベル4)" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" -msgstr "以前よりも更に軽快に動けます。 器用+7" +msgid "You are much nimbler than before. +7 Dexterity." +msgstr "以前よりも遥かに軽快に動けます。 器用+7" #: lang/json/mutation_from_json.py msgid "Prime Dexterity" @@ -155584,7 +156705,7 @@ msgstr "知性発達(レベル1)" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "少し賢くなりました。 知性+1" #: lang/json/mutation_from_json.py @@ -155593,7 +156714,7 @@ msgstr "知性発達(レベル2)" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "賢くなりました。 知性+2" #: lang/json/mutation_from_json.py @@ -155603,7 +156724,7 @@ msgstr "知性発達(レベル3)" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "非常に賢くなりましたが、頭蓋骨がわずかに膨らんでいます。 知性+4" #: lang/json/mutation_from_json.py @@ -155613,7 +156734,7 @@ msgstr "知性発達(レベル4)" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "優れた頭脳を収めきれず、頭蓋骨が目に見えて膨らんでいます。知性+7" #: lang/json/mutation_from_json.py @@ -155643,7 +156764,7 @@ msgstr "感覚発達(レベル1)" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "感覚が少し優れています。 感覚+1" #: lang/json/mutation_from_json.py @@ -155652,7 +156773,7 @@ msgstr "感覚発達(レベル2)" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "感覚が優れています。 感覚+2" #: lang/json/mutation_from_json.py @@ -155661,8 +156782,8 @@ msgstr "感覚発達(レベル3)" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" -msgstr "感覚が非常に優れています。 感覚+4" +msgid "Your senses are much keener. +4 Perception." +msgstr "感覚が非常に優れています。 感覚+2" #: lang/json/mutation_from_json.py msgid "Insanely Perceptive" @@ -155670,8 +156791,8 @@ msgstr "感覚発達(レベル4)" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" -msgstr "想像すら及ばない領域のものでさえ察知できます。 感覚+7" +msgid "You can sense things you never imagined. +7 Perception." +msgstr "想像すら及ばない領域の事象でさえ察知できます。 感覚+7" #: lang/json/mutation_from_json.py msgid "Prime Perception" @@ -155801,35 +156922,35 @@ msgstr "爬虫類のように舌が先端で分かれています。特に効果 #: lang/json/mutation_from_json.py msgid "Lolling Tongue" -msgstr "" +msgstr "長い舌" #. ~ Description for {'str': 'Lolling Tongue'} #: lang/json/mutation_from_json.py msgid "" "Your tongue has lengthened and often extends far beyond your mouth. This " "has no effect." -msgstr "" +msgstr "舌が長くなり、口から大きくはみ出してしまいます。特に効果はありません。" #: lang/json/mutation_from_json.py msgid "Whipping Tongue" -msgstr "" +msgstr "舌の鞭" #. ~ Description for {'str': 'Whipping Tongue'} #: lang/json/mutation_from_json.py msgid "" "You've developed an extremely long and mobile tongue. You may use it to " "attack your enemies." -msgstr "" +msgstr "舌が非常に長く、自在に動きます。この舌を使って敵を攻撃できます。" #: lang/json/mutation_from_json.py #, no-python-format msgid "You bash %s with your tongue." -msgstr "" +msgstr "%sに舌を叩きつけました。" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s smacks into %2$s with their tongue." -msgstr "" +msgstr "%1$sは%2$sに舌を叩きつけました。" #: lang/json/mutation_from_json.py msgid "Bulging Eyes" @@ -155844,7 +156965,7 @@ msgstr "眼球が頭蓋骨から10cmほど飛び出していますが、視界 #: lang/json/mutation_from_json.py msgid "Intermediate Eyestalks" -msgstr "" +msgstr "突出した目" #. ~ Description for {'str': 'Intermediate Eyestalks'} #: lang/json/mutation_from_json.py @@ -155854,10 +156975,11 @@ msgid "" "but sometimes your vision goes wonky as your brain tries to process the new " "angles. Perception +1" msgstr "" +"目が頭から突出して触角のように伸びています。柔軟ではないアイテムを目に着用できません。新たな視覚を得られますが、脳の処理が追い付かないことがあるため時々視界が乱れます。感覚+1" #: lang/json/mutation_from_json.py msgid "Eyestalks" -msgstr "" +msgstr "カタツムリの目" #. ~ Description for {'str': 'Eyestalks'} #: lang/json/mutation_from_json.py @@ -155866,6 +156988,7 @@ msgid "" "of any eyewear. On the plus side, you can see in two directions at once, " "and they automatically retract to reduce damage. Perception +2" msgstr "" +"目が頭から突出し、柔軟な触角の先端に付いています。柔軟ではないアイテムを目に着用できません。同時に二方向を視認でき、攻撃を受けた際はダメージを軽減するために自然と触角が引っ込みます。感覚+2" #: lang/json/mutation_from_json.py msgid "Mouth Flaps" @@ -156111,14 +157234,14 @@ msgstr "%1$sは%2$sを噛みちぎりました" #: lang/json/mutation_from_json.py msgid "Wide Mouth" -msgstr "" +msgstr "大きな口" #. ~ Description for {'str': 'Wide Mouth'} #: lang/json/mutation_from_json.py msgid "" "Your face and jaws have widened like a frogs. It looks hideous but it " "allows you to eat food whole." -msgstr "" +msgstr "顔がカエルのように横に広がっています。見た目は悪いですが、食べ物を一口で食べられます。" #: lang/json/mutation_from_json.py msgid "Proboscis" @@ -156177,7 +157300,7 @@ msgstr "持久狩猟" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "獲物が瀕死になるまで、ペースを変えながら何キロも追い掛け続けることができます。" #: lang/json/mutation_from_json.py @@ -156297,7 +157420,7 @@ msgstr "傾眠" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "かなり頻繁に眠る必要があります。半日はベッドとその周辺で過ごす事になるでしょう。" #: lang/json/mutation_from_json.py @@ -156826,18 +157949,18 @@ msgstr "唸り声" msgid "" "You have a growling, rough voice. Persuading NPCs will be more difficult, " "but threatening them will be easier." -msgstr "獣が唸るような荒々しい声です。NPCの説得が困難になりますが、怖がらせるのは簡単になります。" +msgstr "獣が唸るような荒々しい声です。NPCの説得が困難になりますが、恐怖させるのは容易です。" #: lang/json/mutation_from_json.py msgid "Croaking Voice" -msgstr "" +msgstr "しわがれ声" #. ~ Description for {'str': 'Croaking Voice'} #: lang/json/mutation_from_json.py msgid "" "You have a low, croaking voice, like an aged grandparent. Persuading NPCs " "will be easier, but threatening them will be more difficult." -msgstr "" +msgstr "年老いた祖父母のような、低くしゃがれた声です。NPCの説得は容易ですが、恐怖させるのは困難になります。" #: lang/json/mutation_from_json.py msgid "Snarling Voice" @@ -156848,7 +157971,7 @@ msgstr "凶暴な唸り声" msgid "" "You have a threatening snarl in your voice. Persuading NPCs will be near " "impossible, but threatening them will be much easier." -msgstr "身の毛もよだつ凶悪な響きの声です。NPCの説得はほぼ不可能になりましたが、より簡単に怖がらせることができます。" +msgstr "身の毛もよだつ凶悪な響きの声です。NPCの説得はほぼ不可能ですが、恐怖させるのは驚くほど容易です。" #: lang/json/mutation_from_json.py msgid "Hissing Voice" @@ -156859,7 +157982,7 @@ msgstr "威嚇音" msgid "" "You hiss when speaking. Persuading NPCs will be more difficult, but " "threatening them will be easier." -msgstr "シューシューと威嚇音を発しながら喋ります。NPCの説得が困難になりますが、怖がらせるのは簡単です。" +msgstr "シューシューと威嚇音を発しながら喋ります。NPCの説得が困難になりますが、恐怖させるのは容易です。" #: lang/json/mutation_from_json.py msgid "Shouter" @@ -157032,14 +158155,14 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Nacreous Shell" -msgstr "" +msgstr "真珠層の殻" #. ~ Description for {'str': 'Nacreous Shell'} #: lang/json/mutation_from_json.py msgid "" "Your protective shell has developed increased strength and hardness and a " "mother of pearl sheen." -msgstr "" +msgstr "肉体を保護する殻の強度と硬度が増し、真珠のような輝きを放っています。" #: lang/json/mutation_from_json.py msgid "Leg Tentacles" @@ -157078,7 +158201,7 @@ msgstr "たまに尻尾が無かった頃のことを思い出します。やっ msgid "" "You feel bad for all the creatures that don't carry their home on their " "backs." -msgstr "" +msgstr "家を背負っていない生物が気の毒に思えてきます。" #. ~ Description for {'str': 'Bird'} #: lang/json/mutation_from_json.py @@ -157245,7 +158368,7 @@ msgstr "一度ならず二度までも、終焉を元通りに戻す機会に恵 #. ~ Description for {'str': 'Batrachian'} #: lang/json/mutation_from_json.py msgid "A perfect ambush predator, if only there were less competition." -msgstr "" +msgstr "天敵さえ少なければ、完璧な待ち伏せ型の捕食者になれます。" #: lang/json/mutation_from_json.py msgid "Diminutive" @@ -157724,13 +158847,13 @@ msgstr "空腹、喉の渇き、倦怠、全てを感じなくなります。よ #: lang/json/mutation_from_json.py msgid "Debug Stamina" -msgstr "" +msgstr "スタミナ(デバッグ専用)" #. ~ Description for {'str': 'Debug Stamina'} #: lang/json/mutation_from_json.py msgid "" "You can't run from the bugs, but you have enough stamina to at least try to." -msgstr "" +msgstr "バグから逃げることはできませんが、逃げようと試みるだけのスタミナは備わっています。" #: lang/json/mutation_from_json.py msgid "Debug Deodorizer" @@ -160609,25 +161732,25 @@ msgstr "マナ効率低下(レベル3)" #: lang/json/mutation_from_json.py msgid "Slime Breath" -msgstr "" +msgstr "粘つく息" #. ~ Description for {'str': 'Slime Breath'} #: lang/json/mutation_from_json.py msgid "" "Your breath is sticky and slimy somehow. This won't damage your " "interactions with people but it's definitely noticeable." -msgstr "" +msgstr "呼気がどことなくネバネバ、ヌルヌルしている気がします。人付き合いに支障はありませんが、少し気になります。" #: lang/json/mutation_from_json.py msgid "Chimeric Breath" -msgstr "" +msgstr "酷い口臭" #. ~ Description for {'str': 'Chimeric Breath'} #: lang/json/mutation_from_json.py msgid "" "Your breath could metaphorically melt lead. It's horrible. It's so bad " "that it can actually distract from your attempts to intimidate someone." -msgstr "" +msgstr "鉛さえ溶かしてしまう気さえする、酷い口臭です。信じられません。他人を威嚇しようとしても、口臭の方を気にされて威嚇にならないほどの酷さです。" #: lang/json/mutation_from_json.py msgid "Debug Spell Mutation" @@ -160897,6 +162020,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "私はフードパーソン。食べ物をどうぞ!" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "サイボーグ" @@ -160932,6 +162056,14 @@ msgstr "もっと骨を集めなければ。" msgid "Fisherman" msgstr "漁師" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "タイプ1サイボーグ" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "私はサイボーグだ。" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "教会員" @@ -161490,6 +162622,14 @@ msgstr "ステゴサウルスの変異原を探している...恐竜王になり msgid "Operator" msgstr "特殊部隊員" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "司書" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "本や巻物の手入れをしております。" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "海賊の女王" @@ -161625,6 +162765,10 @@ msgstr "ミハイル フロロワ" msgid "Heather Frolova" msgstr "ヘザー フロロワ" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "ルビク" + #: lang/json/npc_from_json.py msgid "member" msgstr "教会員" @@ -161793,6 +162937,10 @@ msgstr "仲買人" msgid "Guard" msgstr "警備員" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "運転手" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "マケイラ サンチェス" @@ -161951,7 +163099,7 @@ msgstr "CEO" #: lang/json/npc_from_json.py msgid "Bo Baronyx" -msgstr "ボー・バロニクス" +msgstr "ボー バロニクス" #: lang/json/npc_from_json.py msgid "Yoshimi" @@ -161961,6 +163109,10 @@ msgstr "ヨシミ" msgid "Forge Lord" msgstr "フォージロード" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "司書" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "ヘレン タブレル、元海賊" @@ -162907,6 +164059,10 @@ msgstr "粘液穴" msgid "rocky butte" msgstr "岩峰" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "地上入口" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "屑鉄野営地" @@ -163553,7 +164709,7 @@ msgstr "道路" #: lang/json/overmap_terrain_from_json.py msgid "camp survey" -msgstr "拠点予定地" +msgstr "拠点" #: lang/json/overmap_terrain_from_json.py msgid "survivor camp" @@ -163565,16 +164721,16 @@ msgstr "生存者の拠点" #: lang/json/overmap_terrain_from_json.py msgid "farm survey" -msgstr "農地予定地" +msgstr "拠点 - 農地" #: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "garage survey" -msgstr "車両整備工場予定地" +msgstr "拠点 - 車両解体場" #: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py #: lang/json/recipe_from_json.py msgid "kitchen survey" -msgstr "調理場予定地" +msgstr "拠点 - 調理場" #: lang/json/overmap_terrain_from_json.py msgid "kitchen" @@ -163594,35 +164750,55 @@ msgstr "塹壕(スパイク)" #: lang/json/overmap_terrain_from_json.py msgid "fabrication workshop survey" -msgstr "工作場予定地" +msgstr "拠点 - 工作場" + +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "拠点 - 工作場2" #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" -msgstr "鍛冶場予定地" +msgstr "拠点 - 鍛冶場" #: lang/json/overmap_terrain_from_json.py msgid "blacksmith shop" msgstr "鍛冶場" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" -msgstr "牧場予定地" +msgstr "拠点 - 牧場" + +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "拠点 - 牧場2" #: lang/json/overmap_terrain_from_json.py msgid "store house survey" -msgstr "倉庫予定地" +msgstr "拠点 - 大型倉庫" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" -msgstr "製塩場予定地" +msgid "store house survey 2" +msgstr "拠点 - 大型倉庫2" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "拠点 - 製塩場" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" -msgstr "食堂予定地" +msgstr "拠点 - 食堂" + +#: lang/json/overmap_terrain_from_json.py +msgid "canteen survey 2" +msgstr "拠点 - 食堂2" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "拠点 - 農場2" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" -msgstr "農場予定地_2" +msgid "garage survey 2" +msgstr "拠点 - 車両解体場2" #: lang/json/overmap_terrain_from_json.py msgid "military helipad garage" @@ -163988,6 +165164,10 @@ msgstr "ミ=ゴの偵察塔" msgid "subway station?" msgstr "地下鉄駅?" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "研究所(通路)" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "研究所(反応炉)" @@ -165452,6 +166632,62 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "酒瓶の底に慰めを見出しました。畜生、もっと酒が必要です。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "睡眠薬依存" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" +"なかなか寝付けなかったことがきっかけで、睡眠薬を飲み始めました。睡眠薬なしでは眠れなくなってしまったことも問題ですが、大変動がその問題を更に複雑にしてしまいました。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "睡眠薬依存" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" +"なかなか寝付けなかったことがきっかけで、睡眠薬を飲み始めました。睡眠薬なしでは眠れなくなってしまったことも問題ですが、大変動がその問題を更に複雑にしてしまいました。" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "カフェイン依存" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "仕事を乗り切るために毎日コーヒーを飲んでいましたが、今後の生活ではカフェインの摂取が難しくなりそうです。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "カフェイン依存" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "仕事を乗り切るために毎日コーヒーを飲んでいましたが、今後の生活ではカフェインの摂取が難しくなりそうです。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -165568,6 +166804,36 @@ msgid "" msgstr "" "忙しい現代生活を忘れる手段として、広大な土地でキャンプを楽しんでいました。森の中には人がいないから、今もきっと安全です。本当に?どうでしょうね。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "野外生活" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" +"道具を何も使わないキャンプも楽しくこなせます。夜間や休日に、ナイフだけを頼りに森の中で過ごすことが趣味でした。学んだ技術を使えば、人のいない土地で安全に暮らせるかもしれません。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "野外生活" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" +"道具を何も使わないキャンプも楽しくこなせます。夜間や休日に、ナイフだけを頼りに森の中で過ごすことが趣味でした。学んだ技術を使えば、人のいない土地で安全に暮らせるかもしれません。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -165604,7 +166870,7 @@ msgstr "読書家" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "読書が大好きで、本を読む時間が足りないと常々思っていました。もしかすると、大変動は不幸中の幸いかもしれません。" #: lang/json/professions_from_json.py @@ -165617,7 +166883,7 @@ msgstr "読書家" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "読書が大好きで、本を読む時間が足りないと常々思っていました。もしかすると、大変動は不幸中の幸いかもしれません。" #: lang/json/professions_from_json.py @@ -166214,6 +167480,32 @@ msgid "" "anyone else!" msgstr "食べることを心から楽しんでおり、誰よりも早く、そして多く飲み食いできます。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "マラソン" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "ボストンマラソンには毎年参加していました。今こそトレーニングの成果を死者からの逃走に役立てる時です。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "マラソン" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "ボストンマラソンには毎年参加していました。今こそトレーニングの成果を死者からの逃走に役立てる時です。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -166482,6 +167774,62 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "スケートが得意です。ローラースケートやローラーブレード着用時に攻撃を受けた場合、回避に対するペナルティと転倒確率が軽減されます。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "美術工芸" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "自宅で工芸作品を作るのが好きでした。世界が地獄と化した今、この技術が生き延びる助けになればいいのですが。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "美術工芸" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "自宅で工芸作品を作るのが好きでした。世界が地獄と化した今、この技術が生き延びる助けになればいいのですが。" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "自動車修理" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" +"自宅のガレージでおんぼろのクラシックカーを修理するのが、毎週末の一番の楽しみでした。結局修理は完了しませんでしたが、何年もかけて少しずつ学んだ技術は本物です。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "自動車修理" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" +"自宅のガレージでおんぼろのクラシックカーを修理するのが、毎週末の一番の楽しみでした。結局修理は完了しませんでしたが、何年もかけて少しずつ学んだ技術は本物です。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -166608,6 +167956,36 @@ msgid "" "you're the last member of your party." msgstr "これまでダンジョンや砦を旅する数多のプレイヤーを導いてきました。そして今、パーティの最後の一人になってしまいました。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "アマチュア無線" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" +"古い無線機を使ったり、作ったり、修理したりすることが毎晩の楽しみでした。今は話し相手がいませんが、希望を捨てずにいれば、電子工作の知識が何かの役に立つかもしれません。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "アマチュア無線" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" +"古い無線機を使ったり、作ったり、修理したりすることが毎晩の楽しみでした。今は話し相手がいませんが、希望を捨てずにいれば、電子工作の知識が何かの役に立つかもしれません。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -166656,6 +168034,36 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "優れたアウトサイドプレーやポストプレーの実力によって、オーバータイムでゾンビを打ち負かします。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "射撃練習" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" +"近所の銃砲店で試し撃ちをするのが好きでした。フェンスの柱に立てた缶を撃って遊ぶこともありました。死体を的だと思えば、少しは気が楽になるかもしれません。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "射撃練習" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" +"近所の銃砲店で試し撃ちをするのが好きでした。フェンスの柱に立てた缶を撃って遊ぶこともありました。死体を的だと思えば、少しは気が楽になるかもしれません。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -166678,6 +168086,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "いくら通報しても医療関係者は来ませんが、それでも生き延びられそうです。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "トラップ射撃" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "硝煙の匂いをまとわせ、空を舞うオレンジ色の皿を吹き飛ばすのが何よりの楽しみでした。今回のターゲットは、ハトより多少肉付きが良いようです。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "トラップ射撃" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "硝煙の匂いをまとわせ、空を舞うオレンジ色の皿を吹き飛ばすのが何よりの楽しみでした。今回のターゲットは、ハトより多少肉付きが良いようです。" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "バーベキュー" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "週末になると欠かさず隣人を裏庭に招いていました。もちろん、バーベキューの達人として料理を振る舞うためです。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "バーベキュー" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "週末になると欠かさず隣人を裏庭に招いていました。もちろん、バーベキューの達人として料理を振る舞うためです。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -167077,7 +168537,7 @@ msgstr "ダンスフロアでの出会いを何よりも楽しみにしていま #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Meditation" -msgstr "" +msgstr "瞑想" #. ~ Profession (male Meditation) description #: lang/json/professions_from_json.py @@ -167090,7 +168550,7 @@ msgstr "たとえ世の中が混沌としていても、自分の考えを整理 #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Meditation" -msgstr "" +msgstr "瞑想" #. ~ Profession (female Meditation) description #: lang/json/professions_from_json.py @@ -167504,6 +168964,7 @@ msgid "" "You played with the local team. You're the only one left, but now you can " "use your trusty bat for another purpose. Home run!" msgstr "" +"地元のチームでプレーしていましたが、生き残った最後のメンバーになってしまいました。信頼できるバットは今後別の用途で使いましょう。目指せホームラン!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167517,6 +168978,7 @@ msgid "" "You played with the local team. You're the only one left, but now you can " "use your trusty bat for another purpose. Home run!" msgstr "" +"地元のチームでプレーしていましたが、生き残った最後のメンバーになってしまいました。信頼できるバットは今後別の用途で使いましょう。目指せホームラン!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -167592,6 +169054,7 @@ msgid "" "tours now, but as the saying goes, life is like riding a bicycle: you've got" " to keep moving." msgstr "" +"将来を嘱望された自転車乗りでした。こうなっては最早グランツールに参加することも無いでしょうが、諺にもあります。「人生とは自転車のようなものだ。倒れないようにするには走らなければならない」と。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167607,6 +169070,7 @@ msgid "" "tours now, but as the saying goes, life is like riding a bicycle: you've got" " to keep moving." msgstr "" +"将来を嘱望された自転車乗りでした。こうなっては最早グランツールに参加することも無いでしょうが、諺にもあります。「人生とは自転車のようなものだ。倒れないようにするには走らなければならない」と。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -167622,6 +169086,7 @@ msgid "" " duty have left your shooting skills rusty, and all the medals in the world " "won't protect you now." msgstr "" +"無名の兵卒から出発し、名の知れた少将まで上り詰めました。周囲から尊敬され、勲章も授与されましたが、長年のデスクワークで射撃の腕は衰えています。どんな立派な勲章も、今の状況では役に立ちません。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167637,6 +169102,7 @@ msgid "" " duty have left your shooting skills rusty, and all the medals in the world " "won't protect you now." msgstr "" +"無名の兵卒から出発し、名の知れた少将まで上り詰めました。周囲から尊敬され、勲章も授与されましたが、長年のデスクワークで射撃の腕は衰えています。どんな立派な勲章も、今の状況では役に立ちません。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -167683,6 +169149,7 @@ msgid "" "the mechanic's trade, keeping the armor running. It's been years since you " "last touched a rifle, and the dead men are marching again…" msgstr "" +"入隊して間もなく整備兵の訓練生に抜擢され、装甲車両の整備を続けてきました。最後にライフルを触ってから何年も経ったある日、死者が蘇って行進を始めました..." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167697,6 +169164,7 @@ msgid "" "the mechanic's trade, keeping the armor running. It's been years since you " "last touched a rifle, and the dead men are marching again…" msgstr "" +"入隊して間もなく整備兵の訓練生に抜擢され、装甲車両の整備を続けてきました。最後にライフルを触ってから何年も経ったある日、死者が蘇って行進を始めました..." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -167712,6 +169180,7 @@ msgid "" "years since you last handled a rifle in basic training; now might be the " "time to dust off those skills." msgstr "" +"軍隊を前進させ続ける、なんとシンプルな仕事でしょうか。いくつもの橋を架け、道路を延ばし、要塞を壊し、地雷を解除してきました。基礎訓練でライフルに触れたのはもう何年も前です。なまった腕を鍛え直す時がやってきました。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167727,6 +169196,7 @@ msgid "" "years since you last handled a rifle in basic training; now might be the " "time to dust off those skills." msgstr "" +"軍隊を前進させ続ける、なんとシンプルな仕事でしょうか。いくつもの橋を架け、道路を延ばし、要塞を壊し、地雷を解除してきました。基礎訓練でライフルに触れたのはもう何年も前です。なまった腕を鍛え直す時がやってきました。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -167741,6 +169211,7 @@ msgid "" "sort of parental figure, and they relied on you to give orders and keep them" " alive. You failed them. And now you're alone." msgstr "" +"平和維持作戦を何度か経験したベテランとして活躍していました。親身になって部隊を率い、部下も信頼して付き従ってくれました。彼らが全滅した今は、孤独に戦うほかありません。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167755,6 +169226,7 @@ msgid "" "sort of parental figure, and they relied on you to give orders and keep them" " alive. You failed them. And now you're alone." msgstr "" +"平和維持作戦を何度か経験したベテランとして活躍していました。親身になって部隊を率い、部下も信頼して付き従ってくれました。彼らが全滅した今は、孤独に戦うほかありません。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168105,6 +169577,7 @@ msgid "" "friends. But for all the crap thrown your way, you're still breathing. For" " now." msgstr "" +"社会から爪弾きにされ、家も家族も友人もいません。しかし、投げつけられたゴミに囲まれて、今も生きています。いつまで生きていられるかは分かりませんが。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168119,6 +169592,7 @@ msgid "" "friends. But for all the crap thrown your way, you're still breathing. For" " now." msgstr "" +"社会から爪弾きにされ、家も家族も友人もいません。しかし、投げつけられたゴミに囲まれて、今も生きています。いつまで生きていられるかは分かりませんが。" #. ~ Profession (male Helicopter Pilot) description #: lang/json/professions_from_json.py @@ -168402,6 +169876,7 @@ msgid "" "motorcycle to escape. Who's going to respect your authority when the " "government this badge represents doesn't exist anymore?" msgstr "" +"小さな町の保安官として、通報を受けてすぐ救助に向かいました。しかし、すぐに自分自身の救助を要請する羽目になり、バイクを捨てて必死に逃げました。このバッジの威光を保証する政府が消えてしまったら、誰が警察の権限を尊重してくれるのでしょうか?" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168417,6 +169892,7 @@ msgid "" "motorcycle to escape. Who's going to respect your authority when the " "government this badge represents doesn't exist anymore?" msgstr "" +"小さな町の保安官として、通報を受けてすぐ救助に向かいました。しかし、すぐに自分自身の救助を要請する羽目になり、バイクを捨てて必死に逃げました。このバッジの威光を保証する政府が消えてしまったら、誰が警察の権限を尊重してくれるのでしょうか?" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168649,6 +170125,7 @@ msgid "" "way to pick up a customer, a riot broke out around you. You took a long " "detour to safety, only to find yourself somewhere unfamiliar." msgstr "" +"運転が好きなので、運転で飯を食っていくことにしました。客を迎えに行く道中で周囲の暴動に気付き、念のため遠回りようとしましたが、気が付くと知らない場所に来ていました。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168663,6 +170140,7 @@ msgid "" "way to pick up a customer, a riot broke out around you. You took a long " "detour to safety, only to find yourself somewhere unfamiliar." msgstr "" +"運転が好きなので、運転で飯を食っていくことにしました。客を迎えに行く道中で周囲の暴動に気付き、念のため遠回りようとしましたが、気が付くと知らない場所に来ていました。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168678,6 +170156,7 @@ msgid "" " took a long detour only to find yourself lost. That call will have to wait" " - you're in an emergency of your own now." msgstr "" +"緊急事態に対応するため車両を走らせていると、街で発生していた暴動に出くわしました。燃え盛る瓦礫を迂回しようとしましたが、道に迷ってしまいました。緊急通報は後回しにせざるを得ません。緊急事態に巻き込まれたのは自分自身なのですから。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168693,6 +170172,7 @@ msgid "" " took a long detour only to find yourself lost. That call will have to wait" " - you're in an emergency of your own now." msgstr "" +"緊急事態に対応するため車両を走らせていると、街で発生していた暴動に出くわしました。燃え盛る瓦礫を迂回しようとしましたが、道に迷ってしまいました。緊急通報は後回しにせざるを得ません。緊急事態に巻き込まれたのは自分自身なのですから。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168709,6 +170189,7 @@ msgid "" "You veered off onto an old, neglected side road to escape, only to find " "yourself lost and low on gas." msgstr "" +"大企業に雇われ、文句だけは一人前な機械音痴たちの自宅で機器の設置や故障点検をして働いていました。最後の訪問先から帰る途中で、突然怒り狂った暴徒たちが車に群がってきました。忘れ去られたような古い脇道に逃げ込みましたが、帰り道は分からず、ガソリンもそろそろ切れそうです。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168725,6 +170206,7 @@ msgid "" "You veered off onto an old, neglected side road to escape, only to find " "yourself lost and low on gas." msgstr "" +"大企業に雇われ、文句だけは一人前な機械音痴たちの自宅で機器の設置や故障点検をして働いていました。最後の訪問先から帰る途中で、突然怒り狂った暴徒たちが車に群がってきました。忘れ去られたような古い脇道に逃げ込みましたが、帰り道は分からず、ガソリンもそろそろ切れそうです。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168741,6 +170223,7 @@ msgid "" " but now you've gotten lost. At least you're getting a break from the " "hellish screams of children, though you're starting to hear new ones…" msgstr "" +"子供たちを学校に送り迎えすることで生計を立てていましたが、この職に就いたことを後悔しない日はありませんでした。今日は珍しくどの停留所にも子供がまったく居ませんでしたが、バスの音につられてゾンビの大群がやってきました。何とかその場からは逃げ出せましたが、今度は道に迷ってしまいました。少なくとも子供たちの地獄のような叫び声からは解放されましたが、今度は今まで聞いたことのない声が聞こえてきます..." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168757,6 +170240,7 @@ msgid "" " but now you've gotten lost. At least you're getting a break from the " "hellish screams of children, though you're starting to hear new ones…" msgstr "" +"子供たちを学校に送り迎えすることで生計を立てていましたが、この職に就いたことを後悔しない日はありませんでした。今日は珍しくどの停留所にも子供がまったく居ませんでしたが、バスの音につられてゾンビの大群がやってきました。何とかその場からは逃げ出せましたが、今度は道に迷ってしまいました。少なくとも子供たちの地獄のような叫び声からは解放されましたが、今度は今まで聞いたことのない声が聞こえてきます..." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168771,6 +170255,7 @@ msgid "" "robbery. It all went to shit, your backup got eaten, and you were lucky to " "escape with your life and patrol car." msgstr "" +"強盗発生の通報を受けて現場に向かおうとしていました。しかし全てが滅茶苦茶になり、副官も食われ、幸運にも自分の命とパトカーだけを守り切って逃げ出しました。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168785,6 +170270,7 @@ msgid "" "robbery. It all went to shit, your backup got eaten, and you were lucky to " "escape with your life and patrol car." msgstr "" +"強盗発生の通報を受けて現場に向かおうとしていました。しかし全てが滅茶苦茶になり、副官も食われ、幸運にも自分の命とパトカーだけを守り切って逃げ出しました。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168801,6 +170287,7 @@ msgid "" "act of rebellion against the cruelty of this doomed world. Do not let that " "flame of hope perish inside you." msgstr "" +"気の合う仲間と共に森の中に隠れ家を作り、改造したピックアップトラックに乗って略奪行為をしていました。しかし、最後の作戦は失敗に終わり、仲間は皆死にました。この状況を生き延びて呼吸をしていることだけでも、絶望的で残酷な世界に対する反抗と言えます。希望の炎を絶やしてはなりません。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168817,6 +170304,7 @@ msgid "" "act of rebellion against the cruelty of this doomed world. Do not let that " "flame of hope perish inside you." msgstr "" +"気の合う仲間と共に森の中に隠れ家を作り、改造したピックアップトラックに乗って略奪行為をしていました。しかし、最後の作戦は失敗に終わり、仲間は皆死にました。この状況を生き延びて呼吸をしていることだけでも、絶望的で残酷な世界に対する反抗と言えます。希望の炎を絶やしてはなりません。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168833,6 +170321,7 @@ msgid "" "stockpiled as many supplies as possible and set out in your pickup looking " "for answers." msgstr "" +"自然公園を巡回して人と野生動物双方を守る日々によって、多くの有用な技能を身につけました。ある日キャンプ場で恐ろしい出来事に遭遇しましたが、無線で助けを求めても応答はありません。できるだけ多くの物資をピックアップトラックに詰め込み、何が起きたのか探るために出発しました。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168849,6 +170338,7 @@ msgid "" "stockpiled as many supplies as possible and set out in your pickup looking " "for answers." msgstr "" +"自然公園を巡回して人と野生動物双方を守る日々によって、多くの有用な技能を身につけました。ある日キャンプ場で恐ろしい出来事に遭遇しましたが、無線で助けを求めても応答はありません。できるだけ多くの物資をピックアップトラックに詰め込み、何が起きたのか探るために出発しました。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168861,7 +170351,7 @@ msgctxt "prof_desc_male" msgid "" "You're a lumberjack, and you're okay. You felled trees before the world " "ended, and you suspect the undead aren't nearly as tough." -msgstr "" +msgstr "僕は木こり、よく働き、よく眠る! 世界が終焉を迎える前から木を伐り続けていたので、ゾンビは木ほど頑丈ではないと思っています。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168874,7 +170364,7 @@ msgctxt "prof_desc_female" msgid "" "You're a lumberjack, and you're okay. You felled trees before the world " "ended, and you suspect the undead aren't nearly as tough." -msgstr "" +msgstr "僕は木こり、よく働き、よく眠る! 世界が終焉を迎える前から木を伐り続けていたので、ゾンビは木ほど頑丈ではないと思っています。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168889,6 +170379,7 @@ msgid "" "irritable and unreasonable than usual today. You showed them the meaning of" " fast food… by running for your life!" msgstr "" +"しゃれたバーガーショップに勤めていましたが、今日ほど客が怒りっぽく理不尽だったことはありません。ファーストフードの意味を教える時が来たのです...全速力で逃げましょう!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168903,6 +170394,7 @@ msgid "" "irritable and unreasonable than usual today. You showed them the meaning of" " fast food… by running for your life!" msgstr "" +"しゃれたバーガーショップに勤めていましたが、今日ほど客が怒りっぽく理不尽だったことはありません。ファーストフードの意味を教える時が来たのです...全速力で逃げましょう!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168945,6 +170437,7 @@ msgid "" " no one stopping you from your dream of breaking into a military mainframe " "now." msgstr "" +"カフェイン剤を噛み砕きつつ夜通しモニターを眺めている内に、コーディングと解析のエキスパートになりました。残念ながら電気が止まっているため、今から専門技術を生かせる場面はあまりない気がします。しかし少なくとも、軍のメインフレームに侵入するという長年の夢は叶うかもしれません。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168961,6 +170454,7 @@ msgid "" " no one stopping you from your dream of breaking into a military mainframe " "now." msgstr "" +"カフェイン剤を噛み砕きつつ夜通しモニターを眺めている内に、コーディングと解析のエキスパートになりました。残念ながら電気が止まっているため、今から専門技術を生かせる場面はあまりない気がします。しかし少なくとも、軍のメインフレームに侵入するという長年の夢は叶うかもしれません。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -169063,7 +170557,7 @@ msgctxt "prof_desc_male" msgid "" "You spent most of your life on a motorcycle, out on the open road with your " "club. Now they're all dead. Time to ride or die." -msgstr "" +msgstr "人生の大半をバイクと共に過ごし、愛好会の皆と公道を駆けていましたが、気のいい仲間は全滅しました。乗るか、死ぬか。選択の時です。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -169076,7 +170570,7 @@ msgctxt "prof_desc_female" msgid "" "You spent most of your life on a motorcycle, out on the open road with your " "club. Now they're all dead. Time to ride or die." -msgstr "" +msgstr "人生の大半をバイクと共に過ごし、愛好会の皆と公道を駆けていましたが、気のいい仲間は全滅しました。乗るか、死ぬか。選択の時です。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -169520,6 +171014,7 @@ msgid "" "Neither snow nor rain nor heat nor gloom of night stays you from the swift " "completion of your appointed rounds, but nobody said anything about zombies." msgstr "" +"雪が降ろうが、雨が降ろうが、暑かろうが、夜明けまでかかろうが、担当地区で迅速に配達をこなしてきました。しかし、ゾンビが現れた場合はどうすればいいのでしょうか。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -169533,6 +171028,7 @@ msgid "" "Neither snow nor rain nor heat nor gloom of night stays you from the swift " "completion of your appointed rounds, but nobody said anything about zombies." msgstr "" +"雪が降ろうが、雨が降ろうが、暑かろうが、夜明けまでかかろうが、担当地区で迅速に配達をこなしてきました。しかし、ゾンビが現れた場合はどうすればいいのでしょうか。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -169546,7 +171042,7 @@ msgid "" "Your trial was contentious, but ultimately you found yourself behind bars. " "The Cataclysm has offered you a chance to escape, but freedom may come with " "a steep price." -msgstr "" +msgstr "裁判は紛糾しましたが、結局刑務所に収監されることになりました。大変動によって脱獄のチャンスを得ましたが、自由の代償は高くつきそうです。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -169560,7 +171056,7 @@ msgid "" "Your trial was contentious, but ultimately you found yourself behind bars. " "The Cataclysm has offered you a chance to escape, but freedom may come with " "a steep price." -msgstr "" +msgstr "裁判は紛糾しましたが、結局刑務所に収監されることになりました。大変動によって脱獄のチャンスを得ましたが、自由の代償は高くつきそうです。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -169635,6 +171131,7 @@ msgid "" "they had the nerve to put you in jail for it. Too bad you can't sell drugs " "to zombies." msgstr "" +"誰もが欲しがる商品を売り続けて貧困から抜け出しましたが、理不尽にも刑務所に収監されてしまいました。残念ながらゾンビにヤクを売ることはできません。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -169649,6 +171146,7 @@ msgid "" "they had the nerve to put you in jail for it. Too bad you can't sell drugs " "to zombies." msgstr "" +"誰もが欲しがる商品を売り続けて貧困から抜け出しましたが、理不尽にも刑務所に収監されてしまいました。残念ながらゾンビにヤクを売ることはできません。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -170761,6 +172259,7 @@ msgid "" " It wouldn't be a lie to say that running is your life. Which is good, " "because now that the end has come, you're running FOR your life." msgstr "" +"長年パルクールの練習を積み重ね、全世界を遊び場にして走り回ってきました。走ることに命を懸けていると言っても過言ではありません。世界が崩壊した今、文字通り命を懸けて走らなければならなくなったことを喜ぶべきなのでしょうか。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -170775,6 +172274,7 @@ msgid "" " It wouldn't be a lie to say that running is your life. Which is good, " "because now that the end has come, you're running FOR your life." msgstr "" +"長年パルクールの練習を積み重ね、全世界を遊び場にして走り回ってきました。走ることに命を懸けていると言っても過言ではありません。世界が崩壊した今、文字通り命を懸けて走らなければならなくなったことを喜ぶべきなのでしょうか。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -170789,6 +172289,7 @@ msgid "" " ever leaving home. You came here to get a taste of New England, but New " "England keeps trying to get a taste of you!" msgstr "" +"休暇を過ごすには最高の場所だと思っていましたが、今は外出したことを後悔し始めています。ニューイングランドの食を求めてやってきたのに、ニューイングランドで食い尽くされそうになっています!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -170803,6 +172304,7 @@ msgid "" " ever leaving home. You came here to get a taste of New England, but New " "England keeps trying to get a taste of you!" msgstr "" +"休暇を過ごすには最高の場所だと思っていましたが、今は外出したことを後悔し始めています。ニューイングランドの食を求めてやってきたのに、ニューイングランドで食い尽くされそうになっています!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -171375,6 +172877,7 @@ msgid "" "tried to bite you. To top it off, it seems that this wasn't some sort of " "bad high, as the whole town tried going for your throat too." msgstr "" +"今までで一番大きな取り引きをするはずが、現場にやってきた客に噛みつかれそうになりました。しかも街の住人全員が喉笛を狙ってくるのですから、これがバッドトリップでないことは明らかです。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -171389,11 +172892,12 @@ msgid "" "tried to bite you. To top it off, it seems that this wasn't some sort of " "bad high, as the whole town tried going for your throat too." msgstr "" +"今までで一番大きな取り引きをするはずが、現場にやってきた客に噛みつかれそうになりました。しかも街の住人全員が喉笛を狙ってくるのですから、これがバッドトリップでないことは明らかです。" #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Mafia Boss" -msgstr "" +msgstr "マフィアのボス" #. ~ Profession (male Mafia Boss) description #: lang/json/professions_from_json.py @@ -171410,7 +172914,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Mafia Boss" -msgstr "" +msgstr "マフィアのボス" #. ~ Profession (female Mafia Boss) description #: lang/json/professions_from_json.py @@ -171424,6 +172928,68 @@ msgid "" msgstr "" "貧しい家庭に生まれ、生き延びるため犯罪組織に加わり、そこで頭角を現してボスになりました。RICO法に基づいて立件される寸前でしたが、終末の日が先に来てしまいました。仲間はいなくなりましたが、暴力が共通の価値観となる世界で生き抜く力は、これまでの人生で十分に培っています。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "超常現象調査員" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" +"地元の大学で教授として超心理学の研究をしていましたが、解任されて独立し、超常現象調査員になりました。元同僚たちに最後まで認めてもらえなかった研究の成果を、実際にこの目で見られる時代が遂にやってきたのです。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "超常現象調査員" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" +"地元の大学で教授として超心理学の研究をしていましたが、解任されて独立し、超常現象調査員になりました。元同僚たちに最後まで認めてもらえなかった研究の成果を、実際にこの目で見られる時代が遂にやってきたのです。" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "バードウォッチャー" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" +"お気に入りの公園でコマドリを観察していた丁度その時、大変動が発生しました。今の武器は手元の双眼鏡と、地元の鳥に関するたくさんの豆知識だけです。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "バードウォッチャー" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" +"お気に入りの公園でコマドリを観察していた丁度その時、大変動が発生しました。今の武器は手元の双眼鏡と、地元の鳥に関するたくさんの豆知識だけです。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -175992,6 +177558,28 @@ msgid "" "ambushes." msgstr "罠や待ち伏せのような普通は見過ごすことに気付く技術を身に付けました。" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "弱点攻撃(デバッグ専用)" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "モンスターの弱点に攻撃が命中する基礎的な確率が上昇します。" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "弱点攻撃熟練(デバッグ専用)" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "熟練によってモンスターの弱点に攻撃が命中する確率が上昇します。" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "紡績" @@ -176681,7 +178269,7 @@ msgstr "貯蔵穴" msgid "" "Digging a well will give us easy access to water and allow us to send out " "combat patrols or scouts." -msgstr "井戸を掘れば水が採取しやすくなり、戦闘派遣や偵察任務ができるようになります。" +msgstr "井戸を掘れば水が採取しやすくなり、武装巡回や偵察を指示できるようになります。" #: lang/json/recipe_from_json.py msgid "water well" @@ -176706,7 +178294,7 @@ msgstr "穴に矢来を埋めて拠点の入口の防御を固めましょう。 #: lang/json/recipe_from_json.py msgid "build palisade segments" -msgstr "壁(矢来)設置" +msgstr "壁(矢来)" #: lang/json/recipe_from_json.py msgid "We should build a pair of reinforced doors to secure camp's entrance." @@ -176714,7 +178302,7 @@ msgstr "補強ドアを2つ作って拠点への出入り口を確保しまし #: lang/json/recipe_from_json.py msgid "build reinforced doors" -msgstr "板張り補強ドア設置" +msgstr "板張り補強ドア" #: lang/json/recipe_from_json.py msgid "We should build a pair of metal doors to secure camp's entrance." @@ -176722,7 +178310,7 @@ msgstr "ドア(金属)を2つ作って拠点への出入り口を確保しまし #: lang/json/recipe_from_json.py msgid "build metal doors" -msgstr "ドア(金属)設置" +msgstr "金属ドア" #: lang/json/recipe_from_json.py msgid "" @@ -177095,7 +178683,7 @@ msgstr "正面の窓を木製の壁で塞いで防御を固めましょう。" #: lang/json/recipe_from_json.py msgid "wooden barricades" -msgstr "バリケード(木造)" +msgstr "正面バリケード - 木造" #: lang/json/recipe_from_json.py msgid "" @@ -177104,7 +178692,7 @@ msgstr "正面の窓を異星樹脂の壁で塞いで防御を固めましょう #: lang/json/recipe_from_json.py msgid "mi-go resin barricades" -msgstr "バリケード(異星樹脂)" +msgstr "正面バリケード - 異星樹脂" #: lang/json/recipe_from_json.py msgid "We could build butchery rack to start hunting larger animals." @@ -177144,7 +178732,7 @@ msgstr "異星樹脂の壁を使って窓を塞ぎましょう。" #: lang/json/recipe_from_json.py msgid "resin barricades" -msgstr "バリケード(異星樹脂)" +msgstr "バリケード - 異星樹脂" #: lang/json/recipe_from_json.py msgid "Building a butchery rack will allow us hunting bigger animals." @@ -177392,7 +178980,7 @@ msgstr "鍛冶場として使うための、金属の屋根と壁がある小屋 #: lang/json/recipe_from_json.py msgid "metal blacksmith workshop" -msgstr "鍛冶場 - 金属" +msgstr "鍛冶場 - 金属壁" #: lang/json/recipe_from_json.py msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." @@ -177400,7 +178988,7 @@ msgstr "鍛冶場として使うための、異星樹脂の屋根と壁がある #: lang/json/recipe_from_json.py msgid "mi-go blacksmith workshop" -msgstr "鍛冶場 - 異星樹脂" +msgstr "鍛冶場 - 異星樹脂壁" #: lang/json/recipe_from_json.py msgid "" @@ -177438,7 +179026,7 @@ msgstr "鍛冶場として使うための、木製の屋根と壁がある小屋 #: lang/json/recipe_from_json.py msgid "wooden blacksmith workshop" -msgstr "鍛冶場 - 木造" +msgstr "鍛冶場 - 板壁" #: lang/json/recipe_from_json.py msgid "Let's build a rock forge and a workbench to start smithing." @@ -177466,7 +179054,7 @@ msgstr "大型動物の狩猟を始める準備として、食肉処理ラック msgid "" "We should remove some of display racks and counters, then build a pair of " "mattress beds inside radio control's room for our survivors." -msgstr "無線制御室内の余分な陳列棚やカウンターを撤去して、生存者のためのマットレス付きベッドを2つ用意しましょう。" +msgstr "無線制御室内の余分な金属棚やカウンターを撤去して、生存者のためのマットレス付きベッドを2つ用意しましょう。" #: lang/json/recipe_from_json.py msgid "pair of mattress beds in radio control's room" @@ -177546,7 +179134,7 @@ msgstr "ベッド(南東側面)" msgid "" "We should remove some of display racks and counters, then build a pair of " "straw beds inside radio control's room for our survivors." -msgstr "無線制御室内の余分な陳列棚やカウンターを撤去して、生存者のための藁ベッドを2つ用意しましょう。" +msgstr "無線制御室内の余分な金属棚やカウンターを撤去して、生存者のための藁ベッドを2つ用意しましょう。" #: lang/json/recipe_from_json.py msgid "pair of straw beds in radio control's room" @@ -177649,7 +179237,7 @@ msgstr "拠点を矢来壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build palisade" -msgstr "壁(矢来)設置" +msgstr "壁(矢来)" #: lang/json/recipe_from_json.py msgid "" @@ -177731,7 +179319,7 @@ msgstr "避難シェルターが必要です。無線制御室の窓を異星樹 #: lang/json/recipe_from_json.py msgid "barricade radio control's room" -msgstr "障壁(無線制御室)" +msgstr "バリケード(無線制御室)" #: lang/json/recipe_from_json.py msgid "" @@ -178079,11 +179667,11 @@ msgstr "寝室(北東区画)" #: lang/json/recipe_from_json.py msgid "Let's furnish the common area." -msgstr "共用スペースを作りましょう。" +msgstr "共用スペースに家具を揃えましょう。" #: lang/json/recipe_from_json.py msgid "furnish the common area furniture" -msgstr "共用スペースに家具を置きましょう。" +msgstr "共用スペース家具" #: lang/json/recipe_from_json.py msgid "Let's build a fabrication workshop." @@ -178122,7 +179710,7 @@ msgstr "高度な道具類" msgid "" "Let's get a nice workbench built to improve our work. Place it next to the " "anvil." -msgstr "作業効率を上げるために立派な作業台を金床の隣に置きましょう。" +msgstr "作業効率を上げるためにきちんとした作業台を金床の隣に置きましょう。" #: lang/json/recipe_from_json.py msgid "build a workbench" @@ -178439,7 +180027,7 @@ msgstr "南西の部屋にちゃんとしたベッドを2つ置けば、人員 msgid "" "A fireplace, counter, and some pots and pans in the central building will " "allow us to cook simple recipes and organize hunting expeditions." -msgstr "中央の建物に暖炉、カウンター、鍋やフライパンがあれば、簡単なレシピの製作や狩猟遠征の拠点として活用できそうです。" +msgstr "中央棟に暖炉、カウンター、鍋やフライパンがあれば、簡単なレシピの製作や狩猟遠征の拠点として活用できそうです。" #: lang/json/recipe_from_json.py msgid "central fireplace" @@ -178458,7 +180046,7 @@ msgstr "食肉処理ラック(中央区画)" #: lang/json/recipe_from_json.py msgid "" "A tool rack in the central building will give us a place to store tools." -msgstr "中央の建物に工具棚を置けば、工具を適切に保管できます。" +msgstr "中央棟に工具棚を置けば、工具を適切に保管できます。" #: lang/json/recipe_from_json.py msgid "central tool rack" @@ -178468,7 +180056,7 @@ msgstr "工具棚(中央区画)" msgid "" "Setting up some tables and chairs will make the central building into a " "dining area, and we can also use them as a workspace to organize the camp." -msgstr "中央の建物にテーブルや椅子を複数置けば、食事や拠点構築の作業をするスペースとして活用できます。" +msgstr "中央棟にテーブルや椅子を複数置けば、食事や拠点構築の作業をするスペースとして活用できます。" #: lang/json/recipe_from_json.py msgid "central dining hall" @@ -178484,7 +180072,7 @@ msgid "" "central building will allow us to cook simple recipes and organize hunting " "expeditions. The stove will be more efficient than a fireplace." msgstr "" -"中央の建物の南側に薪ストーブ、カウンター、鍋やフライパンがあれば、簡単なレシピの製作や狩猟遠征の拠点として活用できそうです。ストーブは暖炉よりも効率的です。" +"中央棟の南側に薪ストーブ、カウンター、鍋やフライパンがあれば、簡単なレシピの製作や狩猟遠征の拠点として活用できそうです。ストーブは暖炉よりも効率的です。" #: lang/json/recipe_from_json.py msgid "south wood stove" @@ -178733,85 +180321,85 @@ msgstr "個室(南西区画)" msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from logs." -msgstr "中央の建物は調理場や食堂として活用できます。北東の丸太壁の建物の一角を拡張しましょう。" +msgstr "中央棟は調理場や食堂として活用できます。北東の丸太壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "central building NE corner" -msgstr "中央棟(北東)" +msgstr "中央棟(北東区画)" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with logs." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側の丸太壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側の丸太壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from logs." -msgstr "中央の建物は拠点の中核や食堂として活用できます。北西の丸太壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。北西の丸太壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "central building NW corner" -msgstr "中央棟(北西)" +msgstr "中央棟(北西区画)" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with logs." -msgstr "中央の建物は拠点の中核や食堂として活用できます。西側の丸太壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。西側の丸太壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with logs." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側と西側の丸太壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側と西側の丸太壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "central building north half" -msgstr "中央棟(北)" +msgstr "中央棟(北区画)" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from logs." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東の丸太壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東の丸太壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "central building SE corner" -msgstr "中央棟(南東)" +msgstr "中央棟(南東区画)" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with logs." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東の丸太壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東の丸太壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from logs." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西の丸太壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西の丸太壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "central building SW corner" -msgstr "中央棟(南西)" +msgstr "中央棟(南西区画)" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with logs." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西の丸太壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西の丸太壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with logs." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東と南西の丸太壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東と南西の丸太壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "central building south half" -msgstr "中央棟(南)" +msgstr "中央棟(南区画)" #: lang/json/recipe_from_json.py msgid "" @@ -178886,61 +180474,61 @@ msgstr "更に住居を広げるために、南西に金属壁の個室を増や msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from metal." -msgstr "中央の建物は調理場や食堂として活用できます。北東の金属壁の建物の一角を拡張しましょう。" +msgstr "中央棟は調理場や食堂として活用できます。北東の金属壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with metal." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側の金属壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側の金属壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from metal." -msgstr "中央の建物は拠点の中核や食堂として活用できます。北西の金属壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。北西の金属壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with metal." -msgstr "中央の建物は拠点の中核や食堂として活用できます。西側の金属壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。西側の金属壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with metal." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側と西側の金属壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側と西側の金属壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from metal." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東の金属壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東の金属壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with metal." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東の金属壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東の金属壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from metal." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西の金属壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西の金属壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with metal." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西の金属壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西の金属壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with metal." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東と南西の金属壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東と南西の金属壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" @@ -179016,61 +180604,61 @@ msgstr "更に住居を広げるために、南西に異星樹脂壁の個室を msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from mi-go resin." -msgstr "中央の建物は調理場や食堂として活用できます。北東の異星樹脂壁の建物の一角を拡張しましょう。" +msgstr "中央棟は調理場や食堂として活用できます。北東の異星樹脂壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with mi-go resin." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側の異星樹脂壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側の異星樹脂壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from mi-go resin." -msgstr "中央の建物は拠点の中核や食堂として活用できます。北西の異星樹脂壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。北西の異星樹脂壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with mi-go resin." -msgstr "中央の建物は拠点の中核や食堂として活用できます。西側の異星樹脂壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。西側の異星樹脂壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with mi-go resin." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側と西側の異星樹脂壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側と西側の異星樹脂壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from mi-go resin." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東の異星樹脂壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東の異星樹脂壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with mi-go resin." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東の異星樹脂壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東の異星樹脂壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from mi-go resin." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西の異星樹脂壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西の異星樹脂壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with mi-go resin." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西の異星樹脂壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西の異星樹脂壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with mi-go resin." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東と南西の異星樹脂壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東と南西の異星樹脂壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" @@ -179146,61 +180734,61 @@ msgstr "更に住居を広げるために、南西に練土壁の個室を増や msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from rammed earth." -msgstr "中央の建物は調理場や食堂として活用できます。北東の練土壁の建物の一角を拡張しましょう。" +msgstr "中央棟は調理場や食堂として活用できます。北東の練土壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with rammed earth." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側の練土壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側の練土壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from rammed earth." -msgstr "中央の建物は拠点の中核や食堂として活用できます。北西の練土壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。北西の練土壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with rammed earth." -msgstr "中央の建物は拠点の中核や食堂として活用できます。西側の練土壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。西側の練土壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with rammed earth." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側と西側の練土壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側と西側の練土壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from rammed earth." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東の練土壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東の練土壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with rammed earth." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東の練土壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東の練土壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from rammed earth." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西の練土壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西の練土壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with rammed earth." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西の練土壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西の練土壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with rammed earth." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東と南西の練土壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東と南西の練土壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" @@ -179245,7 +180833,7 @@ msgstr "更に住居を広げるために、南東に石壁の個室を増やし msgid "" "We should expand our housing by putting up a rock building on the northwest " "side, which we can also use as part of the central building." -msgstr "更に住居を広げるために、石に丸太壁の建物を建てましょう。建設した壁は中央の部屋の壁の一部として利用できます。" +msgstr "更に住居を広げるために、北西に石壁の建物を建てましょう。建設した壁は中央の部屋の壁の一部として利用できます。" #: lang/json/recipe_from_json.py msgid "" @@ -179275,61 +180863,61 @@ msgstr "更に住居を広げるために、南西に石壁の個室を増やし msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from rocks." -msgstr "中央の建物は調理場や食堂として活用できます。北東の石壁の建物の一角を拡張しましょう。" +msgstr "中央棟は調理場や食堂として活用できます。北東の石壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with rocks." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側の石壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側の石壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from rocks." -msgstr "中央の建物は拠点の中核や食堂として活用できます。北西の石壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。北西の石壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with rocks." -msgstr "中央の建物は拠点の中核や食堂として活用できます。西側の石壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。西側の石壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with rocks." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側と西側の石壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側と西側の石壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from rocks." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東の石壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東の石壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with rocks." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東の石壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東の石壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from rocks." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西の石壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西の石壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with rocks." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西の石壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西の石壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with rocks." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東と南西の石壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東と南西の石壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" @@ -179344,7 +180932,7 @@ msgstr "テント(北東区画)" msgid "" "We should expand our housing by putting up a tent on the east side, though " "doing so will mean we need more materials to build the central building." -msgstr "更に住居を拡張するために、東側にテントを建てましょう。将来中央の建物を建てる時に、更に多くの資材が必要になるでしょう。" +msgstr "更に住居を拡張するために、東側にテントを建てましょう。将来中央棟を建てる時に、更に多くの資材が必要になるでしょう。" #: lang/json/recipe_from_json.py msgid "east tent" @@ -179355,7 +180943,7 @@ msgid "" "We should expand our housing by putting up a tent on the southeast side, " "though doing so will mean we need more materials to build the central " "building." -msgstr "更に住居を拡張するために、南東にテントを建てましょう。将来中央の建物を建てる時に、更に多くの資材が必要になるでしょう。" +msgstr "更に住居を拡張するために、南東にテントを建てましょう。将来中央棟を建てる時に、更に多くの資材が必要になるでしょう。" #: lang/json/recipe_from_json.py msgid "southeast tent" @@ -179366,7 +180954,7 @@ msgid "" "We should expand our housing by putting up a tent on the northwest side, " "though doing so will mean we need more materials to build the central " "building." -msgstr "更に住居を拡張するために、北西にテントを建てましょう。将来中央の建物を建てる時に、更に多くの資材が必要になるでしょう。" +msgstr "更に住居を拡張するために、北西にテントを建てましょう。将来中央棟を建てる時に、更に多くの資材が必要になるでしょう。" #: lang/json/recipe_from_json.py msgid "northwest tent" @@ -179376,7 +180964,7 @@ msgstr "テント(北西区画)" msgid "" "We should expand our housing by putting up a tent on the west side, though " "doing so will mean we need more materials to build the central building." -msgstr "更に住居を拡張するために、西側にテントを建てましょう。将来中央の建物を建てる時に、更に多くの資材が必要になるでしょう。" +msgstr "更に住居を拡張するために、西側にテントを建てましょう。将来中央棟を建てる時に、更に多くの資材が必要になるでしょう。" #: lang/json/recipe_from_json.py msgid "west tent" @@ -179387,7 +180975,7 @@ msgid "" "We should expand our housing by putting up a tent on the southwest side, " "though doing so will mean we need more materials to build the central " "building." -msgstr "更に住居を拡張するために、南西にテントを建てましょう。将来中央の建物を建てる時に、更に多くの資材が必要になるでしょう。" +msgstr "更に住居を拡張するために、南西にテントを建てましょう。将来中央棟を建てる時に、更に多くの資材が必要になるでしょう。" #: lang/json/recipe_from_json.py msgid "southwest tent" @@ -179467,61 +181055,61 @@ msgstr "更に住居を広げるために、南西に荒打漆喰壁の個室を msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from wattle-and-daub." -msgstr "中央の建物は調理場や食堂として活用できます。北東に荒打漆喰壁の建物の一角を広げましょう。" +msgstr "中央棟は調理場や食堂として活用できます。北東に荒打漆喰壁の建物の一角を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with wattle-and-daub." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側に荒打漆喰壁の建物の一角を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側に荒打漆喰壁の建物の一角を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from wattle-and-daub." -msgstr "中央の建物は拠点の中核や食堂として活用できます。北西に荒打漆喰壁の建物の一角を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。北西に荒打漆喰壁の建物の一角を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with wattle-and-daub." -msgstr "中央の建物は拠点の中核や食堂として活用できます。西側に荒打漆喰壁の建物の一角を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。西側に荒打漆喰壁の建物の一角を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with wattle-and-daub." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側と西側に荒打漆喰壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側と西側に荒打漆喰壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from wattle-and-daub." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東にある荒打漆喰壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東にある荒打漆喰壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with wattle-and-daub." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東に荒打漆喰壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東に荒打漆喰壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from wattle-and-daub." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西にある荒打漆喰壁の建物の一角を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西にある荒打漆喰壁の建物の一角を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with wattle-and-daub." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西に荒打漆喰壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西に荒打漆喰壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with wattle-and-daub." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東と南西に荒打漆喰壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東と南西に荒打漆喰壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" @@ -179597,61 +181185,61 @@ msgstr "更に住居を広げるために、南西の板壁の個室を増やし msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from wood panel." -msgstr "中央の建物は調理場や食堂として活用できます。北東の板壁の建物の一角を拡張しましょう。" +msgstr "中央棟は調理場や食堂として活用できます。北東の板壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with wood panel." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側に板壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側に板壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from wood panel." -msgstr "中央の建物は拠点の中核や食堂として活用できます。北西の板壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。北西の板壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with wood panel." -msgstr "中央の建物は拠点の中核や食堂として活用できます。西側に板壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。西側に板壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with wood panel." -msgstr "中央の建物は拠点の中核や食堂として活用できます。東側と西側に板壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。東側と西側に板壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from wood panel." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東の板壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東の板壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with wood panel." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東に板壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東に板壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from wood panel." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西の板壁の建物の一角を拡張しましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西の板壁の建物の一角を拡張しましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with wood panel." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南西に板壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南西に板壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with wood panel." -msgstr "中央の建物は拠点の中核や食堂として活用できます。南東と南西に板壁の部屋を広げましょう。" +msgstr "中央棟は拠点の中核や食堂として活用できます。南東と南西に板壁の部屋を広げましょう。" #: lang/json/recipe_from_json.py msgid "We need to survey the base site first." @@ -179665,7 +181253,7 @@ msgstr "まずは、作業者を管理し仕事を割り振る本部テントが #: lang/json/recipe_from_json.py msgid "basic northeast tent" -msgstr "拠点 - テント(北東区画)" +msgstr "テント(北東区画)" #: lang/json/recipe_from_json.py msgid "" @@ -179675,7 +181263,7 @@ msgstr "ここに長期滞在するなら、火を起こせる穴と寝床が必 #: lang/json/recipe_from_json.py msgid "basic firepit" -msgstr "拠点 - 焚き火穴" +msgstr "焚き火穴" #: lang/json/recipe_from_json.py msgid "" @@ -179685,7 +181273,7 @@ msgstr "この拠点を運営できるようにするには、消耗品を整理 #: lang/json/recipe_from_json.py msgid "basic storage" -msgstr "拠点 - 貯蔵庫" +msgstr "貯蔵庫" #: lang/json/recipe_from_json.py msgid "" @@ -179695,7 +181283,7 @@ msgstr "これから快適な生活を長く続けていくためには、キャ #: lang/json/recipe_from_json.py msgid "basic northeast bed" -msgstr "拠点 - ベッド(北東区画)" +msgstr "ベッド(北東区画)" #: lang/json/recipe_from_json.py msgid "" @@ -179705,7 +181293,7 @@ msgstr "住居と倉庫を増やせば、キャンプは更に専門的な生産 #: lang/json/recipe_from_json.py msgid "basic northwest tent" -msgstr "拠点 - テント(北西区画)" +msgstr "テント(北西区画)" #: lang/json/recipe_from_json.py msgid "" @@ -179715,7 +181303,7 @@ msgstr "強固な指令所を構築すれば、この小さなキャンプは真 #: lang/json/recipe_from_json.py msgid "basic central building" -msgstr "拠点 - 中央棟" +msgstr "中央棟" #: lang/json/recipe_from_json.py msgid "" @@ -179725,7 +181313,7 @@ msgstr "住居を追加すれば、仲間を野外に派遣して新たな味方 #: lang/json/recipe_from_json.py msgid "basic west tent" -msgstr "拠点 - テント(西区画)" +msgstr "テント(西区画)" #: lang/json/recipe_from_json.py msgid "We need to expand our base to include basic dining facilities." @@ -179733,7 +181321,7 @@ msgstr "基本的な食堂を設置できるように、拠点を拡張する必 #: lang/json/recipe_from_json.py msgid "basic central kitchen" -msgstr "拠点 - 調理場" +msgstr " 中央調理場" #: lang/json/recipe_from_json.py msgid "More housing means that we can support additional specialists." @@ -179741,7 +181329,7 @@ msgstr "住居が増えれば、更に多くの専門職を養えます。" #: lang/json/recipe_from_json.py msgid "basic southeast tent" -msgstr "拠点 - テント(南東区画)" +msgstr "テント(南東区画)" #: lang/json/recipe_from_json.py msgid "An expanded kitchen is needed to support our growing settlement." @@ -179749,7 +181337,7 @@ msgstr "拡大する開拓地を養うために、拡張した土地に調理場 #: lang/json/recipe_from_json.py msgid "basic expanded kitchen" -msgstr "拠点 - 調理場(拡張)" +msgstr "調理場拡張" #: lang/json/recipe_from_json.py msgid "" @@ -179759,7 +181347,7 @@ msgstr "施設の強度を高めれば、攻撃を受けた際の退避場所が #: lang/json/recipe_from_json.py msgid "basic completed central building" -msgstr "拠点 - 中央棟完成" +msgstr "中央棟完成" #: lang/json/recipe_from_json.py msgid "" @@ -179769,7 +181357,7 @@ msgstr "綺麗な水源を確保しないまま、今まで生きてこられた #: lang/json/recipe_from_json.py msgid "basic water well" -msgstr "拠点 - 井戸" +msgstr "井戸" #: lang/json/recipe_from_json.py msgid "" @@ -179779,7 +181367,7 @@ msgstr "強い壁を築けば、小規模な群れから攻撃を受けても拠 #: lang/json/recipe_from_json.py msgid "basic partial wall" -msgstr "拠点 - 壁" +msgstr "壁" #: lang/json/recipe_from_json.py msgid "We need to finish our half built fortifications." @@ -179787,7 +181375,7 @@ msgstr "建設途中の要塞を完成させましょう。" #: lang/json/recipe_from_json.py msgid "basic complete wall" -msgstr "拠点 - 壁完成" +msgstr "壁完成" #: lang/json/recipe_from_json.py msgid "We're running out of room and need another living quarters." @@ -179795,7 +181383,7 @@ msgstr "もう部屋が足りません。新たな住居が必要です。" #: lang/json/recipe_from_json.py msgid "basic east tent" -msgstr "拠点 - テント(東区画)" +msgstr "テント(東区画)" #: lang/json/recipe_from_json.py msgid "Our kitchen isn't able to keep up with demand, we need to expand it." @@ -179803,7 +181391,7 @@ msgstr "調理場の性能が需要に追いついていません。改善が必 #: lang/json/recipe_from_json.py msgid "basic dining hall" -msgstr "拠点 - 食堂" +msgstr "食堂" #: lang/json/recipe_from_json.py msgid "We should build stronger doors to secure our compound." @@ -179811,7 +181399,7 @@ msgstr "拠点を守るなら、もっと強い扉を付けるべきでしょう #: lang/json/recipe_from_json.py msgid "basic reinforced gates" -msgstr "拠点 - 補強門" +msgstr "補強門" #: lang/json/recipe_from_json.py msgid "One more tent and our living space will be full." @@ -179819,7 +181407,7 @@ msgstr "もう一つテントがあれば、十分な生活空間が確保でき #: lang/json/recipe_from_json.py msgid "basic southwest tent" -msgstr "拠点 - テント(南西区画)" +msgstr "テント(南西区画)" #: lang/json/recipe_from_json.py msgid "" @@ -179829,7 +181417,7 @@ msgstr "電波塔を建てれば、通信範囲が改善するはです。まず #: lang/json/recipe_from_json.py msgid "basic radio tower" -msgstr "拠点 - 電波塔" +msgstr "電波塔" #: lang/json/recipe_from_json.py msgid "We need to build a console to control the radio tower." @@ -179837,7 +181425,7 @@ msgstr "電波塔を制御するコンソールを設置する必要がありま #: lang/json/recipe_from_json.py msgid "basic radio console" -msgstr "拠点 - 電波制御装置" +msgstr "電波制御装置" #: lang/json/recipe_from_json.py msgid "Survey land for a kitchen." @@ -179853,7 +181441,7 @@ msgstr "まずは火を使う小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "Kitchen fireplace shack" -msgstr "調理場 - 調理小屋" +msgstr "調理小屋" #: lang/json/recipe_from_json.py msgid "We need to finish framing the walls for the cook-shack." @@ -179861,7 +181449,7 @@ msgstr "調理小屋の壁を完成させましょう。" #: lang/json/recipe_from_json.py msgid "Kitchen finished shack" -msgstr "調理場 - 調理小屋完成" +msgstr "調理小屋完成" #: lang/json/recipe_from_json.py msgid "" @@ -179870,7 +181458,7 @@ msgstr "小屋を広げて燻製ラックを置けば、作れる料理の種類 #: lang/json/recipe_from_json.py msgid "Kitchen charcoal smoker" -msgstr "調理場 - 燻製器" +msgstr "燻製器" #: lang/json/recipe_from_json.py msgid "A pantry will allow our cooks to store more non-perishables." @@ -179878,7 +181466,7 @@ msgstr "食料貯蔵室があれば、生鮮食品以外の物ならより長く #: lang/json/recipe_from_json.py msgid "Kitchen pantry expansion" -msgstr "調理場 - 貯蔵庫" +msgstr "貯蔵庫" #: lang/json/recipe_from_json.py msgid "" @@ -179887,7 +181475,7 @@ msgstr "燻製ラックの台数を増やせば、一度により多くの料理 #: lang/json/recipe_from_json.py msgid "Kitchen more smoking racks" -msgstr "調理場 - 燻製ラック追加" +msgstr "燻製ラック追加" #: lang/json/recipe_from_json.py msgid "A well is needed so our cooks don't have to haul in water." @@ -179895,7 +181483,7 @@ msgstr "井戸があれば、料理人がわざわざ水を運んでくる必要 #: lang/json/recipe_from_json.py msgid "Kitchen water well" -msgstr "調理場 - 井戸" +msgstr "井戸" #: lang/json/recipe_from_json.py msgid "" @@ -179905,7 +181493,7 @@ msgstr "薪ストーブを使えば更に繊細な温度調節が可能になり #: lang/json/recipe_from_json.py msgid "Kitchen wood stoves" -msgstr "調理場 - 薪ストーブ" +msgstr "薪ストーブ" #: lang/json/recipe_from_json.py msgid "" @@ -179915,7 +181503,7 @@ msgstr "仕上げに、貯蔵庫を更に広げて、もっと料理素材を保 #: lang/json/recipe_from_json.py msgid "Kitchen expanded pantry" -msgstr "調理場 - 改良貯蔵庫" +msgstr "貯蔵庫拡張" #: lang/json/recipe_from_json.py msgid "" @@ -179943,7 +181531,7 @@ msgstr "最初の仕事は炉と窯の設置です。" #: lang/json/recipe_from_json.py msgid "Blacksmithy forge and kiln" -msgstr "鍛冶場 - 炉と窯" +msgstr "炉と窯" #: lang/json/recipe_from_json.py msgid "Building a proper roof for the shop is the next step." @@ -179951,7 +181539,7 @@ msgstr "次は建物の屋根を作りましょう。" #: lang/json/recipe_from_json.py msgid "Blacksmithy roof" -msgstr "鍛冶場 - 屋根" +msgstr "屋根" #: lang/json/recipe_from_json.py msgid "Building a working table and placing an anvil are next." @@ -179959,7 +181547,7 @@ msgstr "更に、作業台を作って金床を置きましょう。" #: lang/json/recipe_from_json.py msgid "Blacksmithy anvil and workbench" -msgstr "鍛冶場 - 金床と作業台" +msgstr "金床と作業台" #: lang/json/recipe_from_json.py msgid "" @@ -179968,7 +181556,7 @@ msgstr "簡単な鋳造作業以上のことをするなら、より大規模な #: lang/json/recipe_from_json.py msgid "Blacksmithy expanded shop" -msgstr "鍛冶場 - 倉庫改良" +msgstr "倉庫拡張" #: lang/json/recipe_from_json.py msgid "We need some basic tools to make more advanced crafts." @@ -179976,7 +181564,7 @@ msgstr "より複雑な工芸品を作るなら、基本的な工具を用意す #: lang/json/recipe_from_json.py msgid "Blacksmithy forging tools" -msgstr "鍛冶場 - 鍛造工具" +msgstr "鍛造工具" #: lang/json/recipe_from_json.py msgid "An expanded forge will allow us to work on bigger projects." @@ -179984,7 +181572,7 @@ msgstr "鋳造施設が改良されれば、より大きな事業にも取り組 #: lang/json/recipe_from_json.py msgid "Blacksmithy expanded forge" -msgstr "鍛冶場 - 炉改良" +msgstr "炉拡張" #: lang/json/recipe_from_json.py msgid "Proper steel work requires a bellows and quenching setup." @@ -179992,7 +181580,7 @@ msgstr "鉄鋼製品を適切に作りたいなら、ふいごと焼き入れ装 #: lang/json/recipe_from_json.py msgid "Blacksmithy bellows and quenching barrels" -msgstr "鍛冶場 - ふいごと焼き入れ装置" +msgstr "ふいごと焼き入れ装置" #: lang/json/recipe_from_json.py msgid "A separate workshop will allow us to do the most basic of machining." @@ -180000,15 +181588,15 @@ msgstr "独立した作業室があれば、基本的な機械加工の作業が #: lang/json/recipe_from_json.py msgid "Blacksmithy machine shop" -msgstr "鍛冶場 - 作業室" +msgstr "作業室" #: lang/json/recipe_from_json.py msgid "Next we need to add some basic tools and vises to the workshop." -msgstr "次は、作業場に基本的な工具と万力を置きたいな。" +msgstr "次は、作業場に基本的な工具と万力を置きましょう。" #: lang/json/recipe_from_json.py msgid "Blacksmithy machine shop tools" -msgstr "鍛冶場 - 機械類" +msgstr "機械類" #: lang/json/recipe_from_json.py msgid "Advanced forging processes require more room to work." @@ -180016,7 +181604,7 @@ msgstr "もっと作業スペースが広ければ、高度な鍛造作業がで #: lang/json/recipe_from_json.py msgid "Blacksmithy machine shop expansion" -msgstr "鍛冶場 - 作業室改良" +msgstr "作業室拡張" #: lang/json/recipe_from_json.py msgid "An on-site well will allow us to fill boilers as needed." @@ -180024,7 +181612,7 @@ msgstr "近くに井戸があれば、必要に応じてボイラーを使えま #: lang/json/recipe_from_json.py msgid "Blacksmithy well" -msgstr "鍛冶場 - 井戸" +msgstr "井戸" #: lang/json/recipe_from_json.py msgid "" @@ -180034,7 +181622,7 @@ msgstr "蒸気駆動のドロップハンマーは炭を消費しますが、生 #: lang/json/recipe_from_json.py msgid "Blacksmithy drop hammer" -msgstr "鍛冶場 - ドロップハンマー" +msgstr "ドロップハンマー" #: lang/json/recipe_from_json.py msgid "" @@ -180142,7 +181730,7 @@ msgstr "居間を作りましょう。" #: lang/json/recipe_from_json.py msgid "furnish the living room" -msgstr "居間(完成)" +msgstr "居間完成" #: lang/json/recipe_from_json.py msgid "Let's build some pantry storage." @@ -180150,7 +181738,7 @@ msgstr "食料貯蔵室を作りましょう。" #: lang/json/recipe_from_json.py msgid "build some wooden racks" -msgstr "棚(木)" +msgstr "木製棚" #: lang/json/recipe_from_json.py msgid "Let's build a work bench." @@ -180168,7 +181756,7 @@ msgstr "拠点を広げるために、南東に居住区を作りましょう。 #: lang/json/recipe_from_json.py msgid "build SE log bedroom walls" -msgstr "寝室 - 丸太壁(南東)" +msgstr "寝室 - 丸太壁(南東区画)" #: lang/json/recipe_from_json.py msgid "" @@ -180178,7 +181766,7 @@ msgstr "拠点を広げるために、居住区の壁を延長しましょう。 #: lang/json/recipe_from_json.py msgid "build E log bedroom walls" -msgstr "寝室 - 丸太壁(東)" +msgstr "寝室 - 丸太壁(東区画)" #: lang/json/recipe_from_json.py msgid "" @@ -180188,95 +181776,95 @@ msgstr "拠点を広げるために、居住区のもう一方の壁を延長し #: lang/json/recipe_from_json.py msgid "build SW log bedroom walls" -msgstr "寝室 - 丸太壁(南西)" +msgstr "寝室 - 丸太壁(南西区画)" #: lang/json/recipe_from_json.py msgid "build W log bedroom walls" -msgstr "寝室 - 丸太壁(西)" +msgstr "寝室 - 丸太壁(西区画)" #: lang/json/recipe_from_json.py msgid "build NW log bedroom walls" -msgstr "寝室 - 丸太壁(北西)" +msgstr "寝室 - 丸太壁(北西区画)" #: lang/json/recipe_from_json.py msgid "build SE rock bedroom walls" -msgstr "寝室 - 石壁(南東)" +msgstr "寝室 - 石壁(南東区画)" #: lang/json/recipe_from_json.py msgid "build E rock bedroom walls" -msgstr "寝室 - 石壁(東)" +msgstr "寝室 - 石壁(東区画)" #: lang/json/recipe_from_json.py msgid "build SW rock bedroom walls" -msgstr "寝室 - 石壁(南西)" +msgstr "寝室 - 石壁(南西区画)" #: lang/json/recipe_from_json.py msgid "build W rock bedroom walls" -msgstr "寝室 - 石壁(西)" +msgstr "寝室 - 石壁(西区画)" #: lang/json/recipe_from_json.py msgid "build NW rock bedroom walls" -msgstr "寝室 - 石壁(北西)" +msgstr "寝室 - 石壁(北西区画)" #: lang/json/recipe_from_json.py msgid "build SE standard bedroom walls" -msgstr "寝室 - 木壁(南東)" +msgstr "寝室 - 木壁(南東区画)" #: lang/json/recipe_from_json.py msgid "build E standard bedroom walls" -msgstr "寝室 - 木壁(東)" +msgstr "寝室 - 木壁(東区画)" #: lang/json/recipe_from_json.py msgid "build SW standard bedroom walls" -msgstr "寝室 - 木壁(南西)" +msgstr "寝室 - 木壁(南西区画)" #: lang/json/recipe_from_json.py msgid "build W standard bedroom walls" -msgstr "寝室 - 木壁(西)" +msgstr "寝室 - 木壁(西区画)" #: lang/json/recipe_from_json.py msgid "build NW standard bedroom walls" -msgstr "寝室 - 木壁(北西)" +msgstr "寝室 - 木壁(北西区画)" #: lang/json/recipe_from_json.py msgid "build SE wattle and daub bedroom walls" -msgstr "寝室 - 荒打漆喰壁(南東)" +msgstr "寝室 - 荒打漆喰壁(南東区画)" #: lang/json/recipe_from_json.py msgid "build E wattle and daub bedroom walls" -msgstr "寝室 - 荒打漆喰壁(東)" +msgstr "寝室 - 荒打漆喰壁(東区画)" #: lang/json/recipe_from_json.py msgid "build SW wattle and daub bedroom walls" -msgstr "寝室 - 荒打漆喰壁(南東)" +msgstr "寝室 - 荒打漆喰壁(南東区画)" #: lang/json/recipe_from_json.py msgid "build W wattle and daub bedroom walls" -msgstr "寝室 - 荒打漆喰壁(西)" +msgstr "寝室 - 荒打漆喰壁(西区画)" #: lang/json/recipe_from_json.py msgid "build NW wattle and daub bedroom walls" -msgstr "寝室 - 荒打漆喰壁(北西)" +msgstr "寝室 - 荒打漆喰壁(北西区画)" #: lang/json/recipe_from_json.py msgid "build SE wood panel bedroom walls" -msgstr "寝室 - 荒打漆喰壁(南東)" +msgstr "寝室 - 板壁(南東区画)" #: lang/json/recipe_from_json.py msgid "build E wood panel bedroom walls" -msgstr "寝室 - 荒打漆喰壁(東)" +msgstr "寝室 - 板壁(東区画)" #: lang/json/recipe_from_json.py msgid "build SW wood panel bedroom walls" -msgstr "寝室 - 板壁(南西)" +msgstr "寝室 - 板壁(南西区画)" #: lang/json/recipe_from_json.py msgid "build W wood panel bedroom walls" -msgstr "寝室 - 板壁(西)" +msgstr "寝室 - 板壁(西区画)" #: lang/json/recipe_from_json.py msgid "build NW wood panel bedroom walls" -msgstr "寝室 - 板壁(北西)" +msgstr "寝室 - 板壁(北西区画)" #: lang/json/recipe_from_json.py msgid "Let's furnish the southeast bedroom with a regular bed." @@ -180352,35 +181940,35 @@ msgstr "拠点を広げるために、居住区の南の壁を延長しましょ #: lang/json/recipe_from_json.py msgid "build S log bedroom walls" -msgstr "寝室 - 丸太壁(南)" +msgstr "寝室 - 丸太壁(南区画)" #: lang/json/recipe_from_json.py msgid "build S rock bedroom walls" -msgstr "寝室 - 石壁(南)" +msgstr "寝室 - 石壁(南区画)" #: lang/json/recipe_from_json.py msgid "build S standard bedroom walls" -msgstr "寝室 - 木壁(南)" +msgstr "寝室 - 木壁(南区画)" #: lang/json/recipe_from_json.py msgid "build S wattle and daub bedroom walls" -msgstr "寝室 - 荒打漆喰壁(南)" +msgstr "寝室 - 荒打漆喰壁(南区画)" #: lang/json/recipe_from_json.py msgid "build NW wood bedroom walls" -msgstr "寝室 - 板壁(北西)" +msgstr "寝室 - 板壁(北西区画)" #: lang/json/recipe_from_json.py msgid "build W wood bedroom walls" -msgstr "寝室 - 板壁(西)" +msgstr "寝室 - 板壁(西区画)" #: lang/json/recipe_from_json.py msgid "build SW wood bedroom walls" -msgstr "寝室 - 板壁(南西)" +msgstr "寝室 - 板壁(南西区画)" #: lang/json/recipe_from_json.py msgid "build S wood bedroom walls" -msgstr "寝室 - 板壁(南)" +msgstr "寝室 - 板壁(南区画)" #: lang/json/recipe_from_json.py msgid "" @@ -180444,7 +182032,7 @@ msgstr "拠点を広げるために、階段の吹き抜けを囲む寝室を更 #: lang/json/recipe_from_json.py msgid "build central E bedroom log walls" -msgstr "寝室 - 丸太壁(中央東)" +msgstr "寝室 - 丸太壁(中央東区画)" #: lang/json/recipe_from_json.py msgid "Let's build another bedroom on the east wall." @@ -180452,43 +182040,43 @@ msgstr "東の壁沿いに更に寝室を作りましょう。" #: lang/json/recipe_from_json.py msgid "build E bedroom log walls" -msgstr "寝室 - 丸太壁(東)" +msgstr "寝室 - 丸太壁(東区画)" #: lang/json/recipe_from_json.py msgid "build central E bedroom rock walls" -msgstr "寝室 - 石壁(中央東)" +msgstr "寝室 - 石壁(中央東区画)" #: lang/json/recipe_from_json.py msgid "build E bedroom rock walls" -msgstr "寝室 - 石壁(東)" +msgstr "寝室 - 石壁(東区画)" #: lang/json/recipe_from_json.py msgid "build central E bedroom standard walls" -msgstr "寝室追加 - 木壁(中央東)" +msgstr "寝室追加 - 木壁(中央東区画)" #: lang/json/recipe_from_json.py msgid "build E bedroom standard walls" -msgstr "寝室追加 - 木壁(東)" +msgstr "寝室追加 - 木壁(東区画)" #: lang/json/recipe_from_json.py msgid "build central E bedroom wattle and daub" -msgstr "寝室 - 荒打漆喰壁(中央東)" +msgstr "寝室 - 荒打漆喰壁(中央東区画)" #: lang/json/recipe_from_json.py msgid "build E bedroom wattle and daub" -msgstr "寝室 - 荒打漆喰壁(東)" +msgstr "寝室 - 荒打漆喰壁(東区画)" #: lang/json/recipe_from_json.py msgid "build S wood panel bedroom walls" -msgstr "寝室 - 板壁(南)" +msgstr "寝室 - 板壁(南区画)" #: lang/json/recipe_from_json.py msgid "build central E bedroom wood panel bedroom walls" -msgstr "寝室 - 板壁(中央東)" +msgstr "寝室 - 板壁(中央東区画)" #: lang/json/recipe_from_json.py msgid "build E bedroom wood panel bedroom walls" -msgstr "寝室 - 板壁(東)" +msgstr "寝室 - 板壁(東区画)" #: lang/json/recipe_from_json.py msgid "Survey land for a kitchen and dining area." @@ -180502,7 +182090,7 @@ msgstr "屋根ができたので、調理場と食堂に鍋を置ける暖炉を #: lang/json/recipe_from_json.py msgid "build 2 fireplaces" -msgstr "暖炉(2か所)" +msgstr "暖炉2台" #: lang/json/recipe_from_json.py msgid "" @@ -180512,7 +182100,7 @@ msgstr "屋根ができたので、鍋を置ける調理用の薪ストーブを #: lang/json/recipe_from_json.py msgid "build 2 wood stoves" -msgstr "薪ストーブ(2か所)" +msgstr "薪ストーブ2台" #: lang/json/recipe_from_json.py msgid "We should build a well. This will make cooking more convenient." @@ -180528,7 +182116,7 @@ msgstr "キッチンカウンター" #: lang/json/recipe_from_json.py msgid "build 3 smoking racks and a charcoal kiln" -msgstr "燻製ラックと炭焼窯(3か所)" +msgstr "燻製ラックと炭焼窯3台" #: lang/json/recipe_from_json.py msgid "Lets furnish the pantry and build 2 root cellars." @@ -180552,29 +182140,29 @@ msgstr "プランター" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen log walls." -msgstr "中央の調理場に丸太壁を設置しましょう。" +msgstr "丸太壁で中央に調理場を作り始めましょう。" #: lang/json/recipe_from_json.py msgid "build the log wall central kitchen room" -msgstr "調理場 - 丸太壁" +msgstr "中央調理場 - 丸太壁" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen log walls." -msgstr "中央の調理場の丸太壁を完成させましょう。" +msgstr "丸太壁で中央の調理場を完成させましょう。" #: lang/json/recipe_from_json.py msgid "finish the log wall central kitchen room" -msgstr "調理場 - 丸太壁(完成)" +msgstr "中央調理場 - 丸太壁完成" #: lang/json/recipe_from_json.py msgid "" "Let's get this log wall smoking area covered to protect the workers from the" " weather." -msgstr "作業者を風雨から守るため、燻製加工室を丸太壁で囲みましょう。" +msgstr "丸太壁の燻製加工室を建てて、風雨を気にせず作業できるようにしましょう。" #: lang/json/recipe_from_json.py msgid "build a log wall roofed area for smoking racks" -msgstr "燻製加工室 - 丸太壁と屋根" +msgstr "燻製加工室 - 丸太壁" #: lang/json/recipe_from_json.py msgid "Let's build a log wall pantry west of the kitchen." @@ -180590,7 +182178,7 @@ msgstr "食堂の西側を丸太壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build W log wall" -msgstr "食堂 - 丸太壁(西)" +msgstr "食堂 - 丸太壁(西区画)" #: lang/json/recipe_from_json.py msgid "Let's build the east log wall of the dining hall." @@ -180598,7 +182186,7 @@ msgstr "食堂の東側を丸太壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build E log wall" -msgstr "食堂 - 丸太壁(東)" +msgstr "食堂 - 丸太壁(東区画)" #: lang/json/recipe_from_json.py msgid "Let's build the center of the log wall dining hall." @@ -180606,33 +182194,33 @@ msgstr "食堂の中央を丸太壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build center of the log wall dining hall" -msgstr "食堂 - 丸太壁(中央)" +msgstr "食堂 - 丸太壁(中央区画)" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen metal walls." -msgstr "中央の調理場に金属壁を設置しましょう。" +msgstr "金属壁で中央に調理場を作り始めましょう。" #: lang/json/recipe_from_json.py msgid "build the metal wall central kitchen room" -msgstr "調理場 - 金属壁" +msgstr "中央調理場 - 金属壁" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen metal walls." -msgstr "中央の調理場の金属壁を完成させましょう。" +msgstr "金属壁で中央の調理場を完成させましょう。" #: lang/json/recipe_from_json.py msgid "finish the metal wall central kitchen room" -msgstr "調理場 - 金属壁(完成)" +msgstr "中央調理場 - 金属壁完成" #: lang/json/recipe_from_json.py msgid "" "Let's get this metal wall smoking area covered to protect the workers from " "the weather." -msgstr "作業者を風雨から守るため、燻製加工室を金属壁で囲みましょう。" +msgstr "金属壁の燻製加工室を建てて、風雨を気にせず作業できるようにしましょう。" #: lang/json/recipe_from_json.py msgid "build a metal wall roofed area for smoking racks" -msgstr "燻製加工室 - 金属壁と屋根" +msgstr "燻製加工室 - 金属壁" #: lang/json/recipe_from_json.py msgid "Let's build a metal wall pantry west of the kitchen." @@ -180648,7 +182236,7 @@ msgstr "食堂の西側を金属壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build W metal wall" -msgstr "食堂 - 金属壁(西)" +msgstr "食堂 - 金属壁(西区画)" #: lang/json/recipe_from_json.py msgid "Let's build the east metal wall of the dining hall." @@ -180656,7 +182244,7 @@ msgstr "食堂の東側を金属壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build E metal wall" -msgstr "食堂 - 金属壁(東)" +msgstr "食堂 - 金属壁(東区画)" #: lang/json/recipe_from_json.py msgid "Let's build the center of the metal wall dining hall." @@ -180664,33 +182252,33 @@ msgstr "食堂の中央を金属壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build center of the metal wall dining hall" -msgstr "食堂 - 金属壁(中央)" +msgstr "食堂 - 金属壁(中央区画)" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen mi-go resin walls." -msgstr "中央の調理場に異星樹脂壁を設置しましょう。" +msgstr "異星樹脂壁で中央に調理場を作り始めましょう。" #: lang/json/recipe_from_json.py msgid "build the mi-go resin central kitchen room" -msgstr "調理場 - 異星樹脂壁" +msgstr "中央調理場 - 異星樹脂壁" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen mi-go resin walls." -msgstr "中央の調理場の異星樹脂壁を完成させましょう。" +msgstr "異星樹脂壁で中央の調理場を完成させましょう。" #: lang/json/recipe_from_json.py msgid "finish the mi-go resin central kitchen room" -msgstr "調理場 - 異星樹脂壁(完成)" +msgstr "中央調理場 - 異星樹脂壁完成" #: lang/json/recipe_from_json.py msgid "" "Let's get this mi-go resin smoking area covered to protect the workers from " "the weather." -msgstr "作業者を風雨から守るため、燻製加工室を異星樹脂壁で囲みましょう。" +msgstr "異星樹脂壁の燻製加工室を建てて、風雨を気にせず作業できるようにしましょう。" #: lang/json/recipe_from_json.py msgid "build a mi-go resin roofed area for smoking racks" -msgstr "燻製加工室 - 異星樹脂壁と屋根" +msgstr "燻製加工室 - 異星樹脂壁" #: lang/json/recipe_from_json.py msgid "Let's build a mi-go resin wall pantry west of the kitchen." @@ -180706,7 +182294,7 @@ msgstr "食堂の西側を異星樹脂壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build W mi-go resin wall" -msgstr "食堂 - 異星樹脂壁(西)" +msgstr "食堂 - 異星樹脂壁(西区画)" #: lang/json/recipe_from_json.py msgid "Let's build the east mi-go resin wall of the dining hall." @@ -180714,7 +182302,7 @@ msgstr "食堂の東側を異星樹脂壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build E mi-go resin wall" -msgstr "食堂 - 異星樹脂壁(東)" +msgstr "食堂 - 異星樹脂壁(東区画)" #: lang/json/recipe_from_json.py msgid "Let's build the center of the mi-go resin dining hall." @@ -180722,33 +182310,33 @@ msgstr "食堂の中央を異星樹脂壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build center of the mi-go resin dining hall" -msgstr "食堂 - 異星樹脂壁(中央)" +msgstr "食堂 - 異星樹脂壁(中央区画)" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen rammed earth walls." -msgstr "中央の調理場に異星樹脂壁を設置しましょう。" +msgstr "練土壁で中央に調理場を作り始めましょう。" #: lang/json/recipe_from_json.py msgid "build the rammed earth central kitchen room" -msgstr "調理場 - 練土壁" +msgstr "中央調理場 - 練土壁" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen rammed earth walls." -msgstr "中央の調理場の練土壁を完成させましょう。" +msgstr "練土壁で中央の調理場を完成させましょう。" #: lang/json/recipe_from_json.py msgid "finish the rammed earth central kitchen room" -msgstr "調理場 - 練土壁(完成)" +msgstr "中央調理場 - 練土壁完成" #: lang/json/recipe_from_json.py msgid "" "Let's get this rammed earth smoking area covered to protect the workers from" " the weather." -msgstr "作業者を風雨から守るため、燻製加工室を練土壁で囲みましょう。" +msgstr "練土壁の燻製加工室を建てて、風雨を気にせず作業できるようにしましょう。" #: lang/json/recipe_from_json.py msgid "build a rammed earth roofed area for smoking racks" -msgstr "燻製加工室 - 練土壁と屋根" +msgstr "燻製加工室 - 練土壁" #: lang/json/recipe_from_json.py msgid "Let's build a rammed earth wall pantry west of the kitchen." @@ -180764,7 +182352,7 @@ msgstr "食堂の西側を練土壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build W rammed earth wall" -msgstr "食堂 - 練土壁(西)" +msgstr "食堂 - 練土壁(西区画)" #: lang/json/recipe_from_json.py msgid "Let's build the east rammed earth wall of the dining hall." @@ -180772,7 +182360,7 @@ msgstr "食堂の東側を練土壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build E rammed earth wall" -msgstr "食堂 - 練土壁(東)" +msgstr "食堂 - 練土壁(東区画)" #: lang/json/recipe_from_json.py msgid "Let's build the center of the rammed earth dining hall." @@ -180780,33 +182368,33 @@ msgstr "食堂の中央を練土壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build center of the rammed earth dining hall" -msgstr "食堂 - 練土壁(中央)" +msgstr "食堂 - 練土壁(中央区画)" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen rock walls." -msgstr "中央の調理場に金属壁を設置しましょう。" +msgstr "石壁で中央に調理場を作り始めましょう。" #: lang/json/recipe_from_json.py msgid "build the central kitchen room" -msgstr "調理場 - 金属壁" +msgstr "中央調理場 - 石壁" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen rock walls." -msgstr "中央の調理場の金属壁を完成させましょう。" +msgstr "石壁で中央の調理場を完成させましょう。" #: lang/json/recipe_from_json.py msgid "finish the rock wall central kitchen room" -msgstr "調理場 - 金属壁(完成)" +msgstr "中央調理場 - 石壁完成" #: lang/json/recipe_from_json.py msgid "" "Let's get this rock wall smoking area covered to protect the workers from " "the weather." -msgstr "作業者を風雨から守るため、燻製加工室を金属壁で囲みましょう。" +msgstr "石壁の燻製加工室を建てて、風雨を気にせず作業できるようにしましょう。" #: lang/json/recipe_from_json.py msgid "build a rock wall roofed area for smoking racks" -msgstr "燻製加工室 - 金属壁と屋根" +msgstr "燻製加工室 - 石壁" #: lang/json/recipe_from_json.py msgid "Let's build a rock wall pantry west of the kitchen." @@ -180822,7 +182410,7 @@ msgstr "食堂の西側を石壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build W rock wall" -msgstr "食堂 - 石壁(西)" +msgstr "食堂 - 石壁(西区画)" #: lang/json/recipe_from_json.py msgid "Let's build the east rock wall of the rock wall dining hall." @@ -180830,7 +182418,7 @@ msgstr "食堂の東側を石壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build E rock wall" -msgstr "食堂 - 石壁(東)" +msgstr "食堂 - 石壁(東区画)" #: lang/json/recipe_from_json.py msgid "Let's build the center of the rock wall dining hall." @@ -180838,33 +182426,33 @@ msgstr "食堂の中央を石壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build center of the rock dining hall" -msgstr "食堂 - 石壁(中央)" +msgstr "食堂 - 石壁(中央区画)" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen wattle and daub walls." -msgstr "中央の調理場に荒打漆喰壁を設置しましょう。" +msgstr "荒打漆喰壁で中央に調理場を作り始めましょう。" #: lang/json/recipe_from_json.py msgid "build the wattle and daub central kitchen room" -msgstr "調理場 - 荒打漆喰壁" +msgstr "中央調理場 - 荒打漆喰壁" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen wattle and daub walls." -msgstr "中央の調理場の荒打漆喰壁を完成させましょう。" +msgstr "荒打漆喰壁で中央の調理場を完成させましょう。" #: lang/json/recipe_from_json.py msgid "finish the wattle and daub central kitchen room" -msgstr "調理場 - 荒打漆喰壁(完成)" +msgstr "中央調理場 - 荒打漆喰壁完成" #: lang/json/recipe_from_json.py msgid "" "Let's get this wattle and daub smoking area covered to protect the workers " "from the weather." -msgstr "作業者を風雨から守るため、燻製加工室を荒打漆喰壁で囲みましょう。" +msgstr "荒打漆喰壁の燻製加工室を建てて、風雨を気にせず作業できるようにしましょう。" #: lang/json/recipe_from_json.py msgid "build a wattle and daub roofed area for smoking racks" -msgstr "燻製加工室 - 荒打漆喰壁と屋根" +msgstr "燻製加工室 - 荒打漆喰壁" #: lang/json/recipe_from_json.py msgid "Let's build a wattle and daub wall pantry west of the kitchen." @@ -180880,7 +182468,7 @@ msgstr "食堂の西側を荒打漆喰壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build W wattle and daub wall" -msgstr "食堂 - 荒打漆喰壁(西)" +msgstr "食堂 - 荒打漆喰壁(西区画)" #: lang/json/recipe_from_json.py msgid "Let's build the east wattle and daub wall of the dining hall." @@ -180888,7 +182476,7 @@ msgstr "食堂の東側を荒打漆喰壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build E wattle and daub wall" -msgstr "食堂 - 荒打漆喰壁(東)" +msgstr "食堂 - 荒打漆喰壁(東区画)" #: lang/json/recipe_from_json.py msgid "Let's build the center of the wattle and daub dining hall." @@ -180896,33 +182484,33 @@ msgstr "食堂の中央を荒打漆喰壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build center of the wattle and daub dining hall" -msgstr "食堂 - 荒打漆喰壁(中央)" +msgstr "食堂 - 荒打漆喰壁(中央区画)" #: lang/json/recipe_from_json.py msgid "Let's start building the central kitchen wood panel walls." -msgstr "中央の調理場に板壁を設置しましょう。" +msgstr "板壁で中央に調理場を作り始めましょう。" #: lang/json/recipe_from_json.py msgid "build the wood panel central kitchen room" -msgstr "調理場 - 板壁" +msgstr "中央調理場 - 板壁" #: lang/json/recipe_from_json.py msgid "Let's finish the central kitchen wood panel walls." -msgstr "中央の調理場の板壁を完成させましょう。" +msgstr "板壁で中央の調理場を完成させましょう。" #: lang/json/recipe_from_json.py msgid "finish the wood panel central kitchen room" -msgstr "調理場 - 板壁(完成)" +msgstr "中央調理場 - 板壁完成" #: lang/json/recipe_from_json.py msgid "" "Let's get this wood panel smoking area covered to protect the workers from " "the weather." -msgstr "作業者を風雨から守るため、燻製加工室を板壁で囲みましょう。" +msgstr "板壁の燻製加工室を建てて、風雨を気にせず作業できるようにしましょう。" #: lang/json/recipe_from_json.py msgid "build a wood panel roofed area for smoking racks" -msgstr "燻製加工室 - 板壁と屋根" +msgstr "燻製加工室 - 板壁" #: lang/json/recipe_from_json.py msgid "Let's build a wood panel pantry west of the kitchen." @@ -180938,7 +182526,7 @@ msgstr "食堂の西側を板壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build W wood wall" -msgstr "食堂 - 板壁(西)" +msgstr "食堂 - 板壁(西区画)" #: lang/json/recipe_from_json.py msgid "Let's build the east wood panel wall of the dining hall." @@ -180946,7 +182534,7 @@ msgstr "食堂の東側を板壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build E wood wall" -msgstr "食堂 - 板壁(東)" +msgstr "食堂 - 板壁(東区画)" #: lang/json/recipe_from_json.py msgid "Let's build the center of the wood panel dining hall." @@ -180954,7 +182542,529 @@ msgstr "食堂の中央を板壁で囲みましょう。" #: lang/json/recipe_from_json.py msgid "build center of the dining hall" -msgstr "食堂 - 板壁(中央)" +msgstr "食堂 - 板壁(中央区画)" + +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "食堂として使う土地を調査しましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "屋根ができたので、鍋を置ける調理用の暖炉を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "屋根ができたので、鍋を置ける調理用の薪ストーブを作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "調理作業の効率化と菜園への水の供給のために、井戸を掘りましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "燻製ラックと炭焼窯を設置して、保存食など調理の幅を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "調理場に貯蔵穴を2つ作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "貯蔵穴" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "食料貯蔵室を整備しましょう。" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "食料を採取できる菜園を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "「空きスペース」を潰して菜園を広げましょう(他の用途に使う場合は選択しないでください)。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "塩水を貯めるタンクを2つ設置して塩の生産体制を整え、皮をなめす作業を効率化しましょう。" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "塩水タンク" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "醸造所に発酵大桶を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "発酵大桶" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "醸造所に収納用の棚を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "醸造所の棚" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "醸造所に蒸留器を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "蒸留器" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "風車を設置して、穀粉を効率的に供給できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "風車" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "調理場の外にベンチとバードバスを設置してリラックスできるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "ベンチとバードバス" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "コンクリート壁で調理場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "調理場 - コンクリート壁" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "コンクリート壁で調理場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "調理場 - コンクリート壁完成" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "コンクリート壁の燻製加工室を建てて、風雨を気にせず作業できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "燻製加工室 - コンクリート壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "調理場の横をコンクリート壁で区切って食料貯蔵室を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "食料貯蔵室 - コンクリート壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "食堂に1か所目のコンクリート壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "食堂 - コンクリート壁1" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "食堂に2か所目のコンクリート壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "食堂 - コンクリート壁2" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "コンクリート壁の醸造所を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "醸造所 - コンクリート壁" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "丸太壁で調理場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "調理場 - 丸太壁" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "丸太壁で調理場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "調理場 - 丸太壁完成" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "丸太壁の燻製加工室を建てて、風雨を気にせず作業できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "燻製加工室 - 丸太壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "調理場の横を丸太壁で区切って食料貯蔵室を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "食料貯蔵室 - 丸太壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "食堂に1か所目の丸太壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "食堂 - 丸太壁1" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "食堂に2か所目の丸太壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "食堂 - 丸太壁2" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "丸太壁の醸造所を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "醸造所 - 丸太壁" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "金属壁で調理場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "調理場 - 金属壁" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "金属壁で調理場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "調理場 - 金属壁完成" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "金属壁の燻製加工室を建てて、風雨を気にせず作業できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "燻製加工室 - 金属壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "調理場の横を金属壁で区切って食料貯蔵室を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "食料貯蔵室 - 金属壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "食堂に1か所目の金属壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "食堂 - 金属壁1" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "食堂に2か所目の金属壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "食堂 - 金属壁2" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "金属壁の醸造所を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "醸造所 - 金属壁" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "異星樹脂壁で調理場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "調理場 - 異星樹脂壁" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "異星樹脂壁で調理場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "調理場 - 異星樹脂壁完成" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "調理場の横を異星樹脂壁で区切って食料貯蔵室を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "食堂に1か所目の異星樹脂壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "食堂 - 異星樹脂壁1" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "食堂に2か所目の異星樹脂壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "食堂 - 異星樹脂壁2" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "異星樹脂壁の醸造所を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "醸造所 - 異星樹脂壁" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "練土壁で調理場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "調理場 - 練土壁" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "練土壁で調理場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "調理場 - 練土壁完成" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "調理場の横を練土壁で区切って食料貯蔵室を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "食堂に1か所目の練土壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "食堂 - 練土壁1" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "食堂に2か所目の練土壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "食堂 - 練土壁2" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "練土壁の醸造所を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "醸造所 - 練土壁" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "石壁で調理場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "調理場 - 石壁" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "石壁で調理場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "調理場 - 石壁完成" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "石壁の燻製加工室を建てて、風雨を気にせず作業できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "燻製加工室 - 石壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "調理場の横を石壁で区切って食料貯蔵室を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "食料貯蔵室 - 石壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "食堂に1か所目の石壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "食堂 - 石壁1" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "食堂に2か所目の石壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "食堂 - 石壁2" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "石壁の醸造所を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "醸造所 - 石壁" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "荒打漆喰壁で調理場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "調理場 - 荒打漆喰壁" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "荒打漆喰壁で調理場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "調理場 - 荒打漆喰壁完成" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "荒打漆喰壁の燻製加工室を建てて、風雨を気にせず作業できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "燻製加工室 - 荒打漆喰壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "調理場の横を荒打漆喰壁で区切って食料貯蔵室を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "食料貯蔵室 - 荒打漆喰壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "食堂に1か所目の荒打漆喰壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "食堂 - 荒打漆喰壁1" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "食堂に2か所目の荒打漆喰壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "食堂 - 荒打漆喰壁2" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "荒打漆喰壁の醸造所を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "醸造所 - 荒打漆喰壁" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "板壁で調理場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "調理場 - 板壁" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "板壁で調理場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "調理場 - 板壁完成" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "調理場の横を板壁で区切って食料貯蔵室を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "食堂に1か所目の板壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "食堂 - 板壁1" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "食堂に2か所目の板壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "食堂 - 板壁2" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "板壁の醸造所を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "醸造所 - 板壁" #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." @@ -180970,7 +183080,7 @@ msgstr "そろそろ畑を耕してみましょう。" #: lang/json/recipe_from_json.py msgid "Farm basic plots" -msgstr "農地 - 耕作地" +msgstr "耕作地" #: lang/json/recipe_from_json.py msgid "We could use a farming shed to store resources where we'll be working." @@ -180978,17 +183088,17 @@ msgstr "農場を利用して、この作業拠点に資源を蓄えましょう #: lang/json/recipe_from_json.py msgid "Farm basic shed" -msgstr "農地 - 倉庫" +msgstr "小屋" #: lang/json/recipe_from_json.py msgid "" "Our farm could be expanded by finishing the shed and adding additional " "plots." -msgstr "倉庫を完成させて耕地を増やせば、農場は更に便利になります。" +msgstr "小屋を完成させて耕地を増やせば、農場は更に便利になります。" #: lang/json/recipe_from_json.py msgid "Farm upgraded shed" -msgstr "農地 - 倉庫改良" +msgstr "小屋改良" #: lang/json/recipe_from_json.py msgid "" @@ -180998,11 +183108,68 @@ msgstr "加工場を建てれば、農業の副産物から種子を採取でき #: lang/json/recipe_from_json.py msgid "Farm processing shack" -msgstr "農地 - 加工場" +msgstr "加工場" + +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "1列目の耕作地を整備しましょう。" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "耕作地の整備" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "2列目の耕作地を整備しましょう。" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "もう一組の耕作地を整備しましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "区画の外側の長辺に沿ってフェンスを設置し、シカなどが作物に近づかないようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "フェンス" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "区画の外側の短辺に沿ってフェンスを設置し、シカなどが作物に近づかないようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "区画の内側の短辺に沿ってフェンスを設置し、シカなどが作物に近づかないようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "区画の内側の長辺に沿ってフェンスを設置し、シカなどが作物に近づかないようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "畑をトラクターで耕す予定はないので、区画の内縁の長辺をフェンスで囲みましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "来年にはトラクターで畑を耕したいので、畑に進入できるように矢来門を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "矢来門" #: lang/json/recipe_from_json.py msgid "Survey land for a garage." -msgstr "車両整備工場として使う土地を調査しましょう。" +msgstr "車両解体場として使う土地を調査しましょう。" #: lang/json/recipe_from_json.py msgid "Building a tool rack should be the first priority." @@ -181010,15 +183177,15 @@ msgstr "何よりもまず、工具を置く棚を作る必要があります。 #: lang/json/recipe_from_json.py msgid "Garage tool rack" -msgstr "車両整備工場 - 工具棚" +msgstr "工具棚" #: lang/json/recipe_from_json.py msgid "We should start construction of a roof for the garage." -msgstr "車両整備工場の屋根を建て始めましょう。" +msgstr "車両解体場の屋根を建て始めましょう。" #: lang/json/recipe_from_json.py msgid "Garage partial roof" -msgstr "車両整備工場 - 屋根" +msgstr "屋根" #: lang/json/recipe_from_json.py msgid "Finishing out the roof will let our mechanics work rain or shine." @@ -181026,25 +183193,25 @@ msgstr "屋根が完成すれば、機械工も天気にかかわらず働ける #: lang/json/recipe_from_json.py msgid "Garage completed roof" -msgstr "車両整備工場 - 屋根完成" +msgstr "屋根完成" #: lang/json/recipe_from_json.py msgid "" "Our garage isn't big enough to work on larger vehicles. Let's start " "expanding it." -msgstr "この整備工場は大きな車両を扱うには狭すぎます。もっと広げましょう。" +msgstr "この解体場は大きな車両を扱うには狭すぎます。もっと広げましょう。" #: lang/json/recipe_from_json.py msgid "Garage partial expansion" -msgstr "車両整備工場 - ガレージ改良" +msgstr "車両解体場拡張" #: lang/json/recipe_from_json.py msgid "Finishing the roof will let us park RVs and buses in the garage." -msgstr "屋根を完成させれば、車両整備工場にキャンピングカーやバスを置いておけます。" +msgstr "屋根を完成させれば、車両解体場にキャンピングカーやバスを置いておけます。" #: lang/json/recipe_from_json.py msgid "Garage expanded roof" -msgstr "車両整備工場 - 屋根改良" +msgstr "屋根拡張" #: lang/json/recipe_from_json.py msgid "" @@ -181053,7 +183220,528 @@ msgstr "詰め所を作っておけば、機械工が必要な時に長時間働 #: lang/json/recipe_from_json.py msgid "Garage mechanics quarters" -msgstr "車両整備工場 - 詰め所" +msgstr "詰め所" + +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "壁同士を繋ぐように屋根を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "屋根" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "屋根ができたので、次はカウンターや棚を作って工具や部品を置き、解体場としての実用性を高めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "車両解体場家具" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "解体場は十分な広さになりました。開放されている面に矢来門を設置して、開閉できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "矢来門" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "解体場の仕上げとして、屋根がある区画を閉鎖できるように矢来門を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "コンクリート壁で車両解体場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "車両解体場 - コンクリート壁1" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"コンクリート壁で車両解体場を囲み、反対方向からの風を遮るようにしましょう。普通車なら2台、超大型車なら1台が停車できるサイズの解体場が完成します。" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "車両解体場 - コンクリート壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "解体場を風が吹き抜けないように、コンクリート壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "車両解体場 - 内側コンクリート壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "短い車両は停められるようになりました。長い車両にも対応できるように、コンクリート壁で解体場のサイズを広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "車両解体場拡張 - コンクリート壁1" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "コンクリート壁で拡張した車両解体場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "車両解体場拡張 - コンクリート壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "長い車両も停められるようになりました。もっと長い車両や複数車両にも対応できるように、コンクリート壁で解体場のサイズを更に広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "コンクリート壁で格納庫サイズまで広がった車両解体場を完成させ、超大型車やたくさんの普通車を解体できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "丸太壁で車両解体場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "車両解体場 - 丸太壁1" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "丸太壁で車両解体場を囲み、反対方向からの風を遮るようにしましょう。普通車なら2台、超大型車なら1台が停車できるサイズの解体場が完成します。" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "車両解体場 - 丸太壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "解体場を風が吹き抜けないように、丸太壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "車両解体場 - 内側丸太壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "短い車両は停められるようになりました。長い車両にも対応できるように、丸太壁で解体場のサイズを広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "車両解体場拡張 - 丸太壁1" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "丸太壁で拡張した車両解体場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "車両解体場拡張 - 丸太壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "長い車両も停められるようになりました。もっと長い車両や複数車両にも対応できるように、丸太壁で解体場のサイズを更に広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "車両解体場拡張 - 丸太壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "丸太壁で格納庫サイズまで広がった車両解体場を完成させ、超大型車やたくさんの普通車を解体できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "金属壁で車両解体場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "車両解体場 - 金属壁1" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "金属壁で車両解体場を囲み、反対方向からの風を遮るようにしましょう。普通車なら2台、超大型車なら1台が停車できるサイズの解体場が完成します。" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "車両解体場 - 金属壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "解体場を風が吹き抜けないように、金属壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "車両解体場 - 内側金属壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "短い車両は停められるようになりました。長い車両にも対応できるように、金属壁で解体場のサイズを広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "車両解体場拡張 - 金属壁1" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "金属壁で拡張した車両解体場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "車両解体場拡張 - 金属壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "長い車両も停められるようになりました。もっと長い車両や複数車両にも対応できるように、金属壁で解体場のサイズを更に広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "金属壁で格納庫サイズまで広がった車両解体場を完成させ、超大型車やたくさんの普通車を解体できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "異星樹脂壁で車両解体場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "車両解体場 - 異星樹脂壁1" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" +"異星樹脂壁で車両解体場を囲み、反対方向からの風を遮るようにしましょう。普通車なら2台、超大型車なら1台が停車できるサイズの解体場が完成します。" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "車両解体場 - 異星樹脂壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "解体場を風が吹き抜けないように、異星樹脂壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "車両解体場 - 内側異星樹脂壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "短い車両は停められるようになりました。長い車両にも対応できるように、異星樹脂壁で解体場のサイズを広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "車両解体場拡張 - 異星樹脂壁1" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "異星樹脂壁で拡張した車両解体場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "車両解体場拡張 - 異星樹脂壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "長い車両も停められるようになりました。もっと長い車両や複数車両にも対応できるように、異星樹脂壁で解体場のサイズを更に広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "異星樹脂壁で格納庫サイズまで広がった車両解体場を完成させ、超大型車やたくさんの普通車を解体できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "練土壁で車両解体場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "車両解体場 - 練土壁1" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "練土壁で車両解体場を囲み、反対方向からの風を遮るようにしましょう。普通車なら2台、超大型車なら1台が停車できるサイズの解体場が完成します。" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "車両解体場 - 練土壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "解体場を風が吹き抜けないように、練土壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "車両解体場 - 内側練土壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "短い車両は停められるようになりました。長い車両にも対応できるように、練土壁で解体場のサイズを広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "車両解体場拡張 - 練土壁1" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "練土壁で拡張した車両解体場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "車両解体場拡張 - 練土壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "長い車両も停められるようになりました。もっと長い車両や複数車両にも対応できるように、練土壁で解体場のサイズを更に広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "練土壁で格納庫サイズまで広がった車両解体場を完成させ、超大型車やたくさんの普通車を解体できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "石壁で車両解体場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "車両解体場 - 石壁1" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "石壁で車両解体場を囲み、反対方向からの風を遮るようにしましょう。普通車なら2台、超大型車なら1台が停車できるサイズの解体場が完成します。" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "車両解体場 - 石壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "解体場を風が吹き抜けないように、石壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "車両解体場 - 内側石壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "短い車両は停められるようになりました。長い車両にも対応できるように、石壁で解体場のサイズを広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "車両解体場拡張 - 石壁1" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "石壁で拡張した車両解体場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "車両解体場拡張 - 石壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "長い車両も停められるようになりました。もっと長い車両や複数車両にも対応できるように、石壁で解体場のサイズを更に広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "石壁で格納庫サイズまで広がった車両解体場を完成させ、超大型車やたくさんの普通車を解体できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "荒打漆喰壁で車両解体場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "車両解体場 - 荒打漆喰壁1" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" +"荒打漆喰壁で車両解体場を囲み、反対方向からの風を遮るようにしましょう。普通車なら2台、超大型車なら1台が停車できるサイズの解体場が完成します。" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "車両解体場 - 荒打漆喰壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "解体場を風が吹き抜けないように、荒打漆喰壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "車両解体場 - 内側荒打漆喰壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "短い車両は停められるようになりました。長い車両にも対応できるように、荒打漆喰壁で解体場のサイズを広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "車両解体場拡張 - 荒打漆喰壁1" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "荒打漆喰壁で拡張した車両解体場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "車両解体場拡張 - 荒打漆喰壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "長い車両も停められるようになりました。もっと長い車両や複数車両にも対応できるように、荒打漆喰壁で解体場のサイズを更に広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "荒打漆喰壁で格納庫サイズまで広がった車両解体場を完成させ、超大型車やたくさんの普通車を解体できるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "板壁で車両解体場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "車両解体場 - 板壁1" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "板壁で車両解体場を囲み、反対方向からの風を遮るようにしましょう。普通車なら2台、超大型車なら1台が停車できるサイズの解体場が完成します。" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "車両解体場 - 板壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "解体場を風が吹き抜けないように、板壁を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "車両解体場 - 内側板壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "短い車両は停められるようになりました。長い車両にも対応できるように、板壁で解体場のサイズを広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "車両解体場拡張 - 板壁1" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "板壁で拡張した車両解体場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "車両解体場拡張 - 板壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "長い車両も停められるようになりました。もっと長い車両や複数車両にも対応できるように、板壁で解体場のサイズを更に広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "車両解体場拡張 - 板壁2" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "板壁で格納庫サイズまで広がった車両解体場を完成させ、超大型車やたくさんの普通車を解体できるようにしましょう。" #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." @@ -181103,27 +183791,27 @@ msgstr "厩舎の付近で家畜が運動できるように、牧場の南側を msgid "" "We could use a coop to contain our chickens and other birds, so build a log " "shack with a roof on the northeast side of the livestock field." -msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の北東に屋根がある丸太小屋を建てましょう。" +msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の北東に屋根がある丸太壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "northeast coop" -msgstr "鶏小屋(北東区画)" +msgstr "鶏舎(北東区画)" #: lang/json/recipe_from_json.py msgid "" "We could use a storage room for feed, animal gear and tools, so build a log " "shack with a roof on the southeast side of the livestock field." -msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の南東に屋根がある丸太小屋を建てましょう。" +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の南東に屋根がある丸太壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "southeast storage room" -msgstr "貯蔵庫(南東区画)" +msgstr "物置小屋(南東区画)" #: lang/json/recipe_from_json.py msgid "" "We could use a stable for larger livestock, so build a log shack with a roof" " on the southwest side of the livestock field." -msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に屋根がある丸太小屋を建てましょう。" +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に屋根がある丸太壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "southwest stable" @@ -181153,73 +183841,73 @@ msgstr "厩舎(北西区画)" msgid "" "We could use a coop to contain our chickens and other birds, so build a " "metal sheet shack with a roof on the northeast side of the livestock field." -msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の北東に屋根がある板金製の小屋を建てましょう。" +msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の北東に屋根がある板金壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a storage room for feed, animal gear and tools, so build a " "metal sheet shack with a roof on the southeast side of the livestock field." -msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の南東に屋根がある板金製の小屋を建てましょう。" +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の南東に屋根がある板金壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a stable for larger livestock, so build a metal sheet shack " "with a roof on the southwest side of the livestock field." -msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に屋根がある板金製の小屋を建てましょう。" +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に屋根がある板金壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a coop to contain our chickens and other birds, so build a mi-" "go resin shack with a roof on the northeast side of the livestock field." -msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の北東に屋根がある異星樹脂製の小屋を建てましょう。" +msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の北東に屋根がある異星樹脂壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a storage room for feed, animal gear and tools, so build a mi-" "go resin shack with a roof on the southeast side of the livestock field." -msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の南東に屋根がある異星樹脂製の小屋を建てましょう。" +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の南東に屋根がある異星樹脂壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a stable for larger livestock, so build a mi-go resin shack " "with a roof on the southwest side of the livestock field." -msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に屋根がある異星樹脂製の小屋を建てましょう。" +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に屋根がある異星樹脂壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a coop to contain our chickens and other birds, so build a " "rammed earth shack with a roof on the northeast side of the livestock field." -msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の北東に屋根がある練土製の小屋を建てましょう。" +msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の北東に屋根がある練土壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a storage room for feed, animal gear and tools, so build a " "rammed earth shack with a roof on the southeast side of the livestock field." -msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の南東に屋根がある練土製の小屋を建てましょう。" +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の南東に屋根がある練土壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a stable for larger livestock, so build a rammed earth shack " "with a roof on the southwest side of the livestock field." -msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に屋根がある練土製の小屋を建てましょう。" +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に屋根がある練土壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a coop to contain our chickens and other birds, so build a " "stone shack with a roof on the northeast side of the livestock field." -msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の北東に屋根がある石造りの小屋を建てましょう。" +msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の北東に屋根がある石壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a storage room for feed, animal gear and tools, so build a " "stone shack with a roof on the southeast side of the livestock field." -msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の南東に屋根のある石造りの小屋を建てましょう。" +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の南東に屋根がある石壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a stable for larger livestock, so build a stone shack with a " "roof on the southwest side of the livestock field." -msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に屋根がある石造りの小屋を建てましょう。" +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に屋根がある石壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" @@ -181233,7 +183921,7 @@ msgid "" "We could use a storage room for feed, animal gear and tools, so build a " "wattle and daub shack with a roof on the southeast side of the livestock " "field." -msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の南東に屋根のある荒打漆喰壁の小屋を建てましょう。" +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の南東に屋根がある荒打漆喰壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" @@ -181245,19 +183933,395 @@ msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に msgid "" "We could use a coop to contain our chickens and other birds, so build a wood" " panel shack with a roof on the northeast side of the livestock field." -msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の北東に屋根がある板張りの小屋を建てましょう。" +msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の北東に屋根がある板壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a storage room for feed, animal gear and tools, so build a wood" " panel shack with a roof on the southeast side of the livestock field." -msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の南東に屋根のある板張りの小屋を建てましょう。" +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の南東に屋根がある板壁の小屋を建てましょう。" #: lang/json/recipe_from_json.py msgid "" "We could use a stable for larger livestock, so build a wood panel shack with" " a roof on the southwest side of the livestock field." -msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に屋根がある板張りの小屋を建てましょう。" +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の南西に屋根がある板壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "フェンスがあればニワトリなどの鳥類を確保できます。亀甲金網フェンスで鳥小屋の周辺を囲みましょう。" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "鶏囲い" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "厩舎の付近で家畜が運動できるように、牧場の外縁部をスプリットレールの柵で囲みましょう。" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "運動場(外側)" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "厩舎の付近で家畜が運動できるように、牧場の側面部をスプリットレールの柵で囲みましょう。" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "運動場(側面)" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "厩舎の付近で家畜が運動できるように、牧場の内縁部をスプリットレールの柵で囲みましょう。" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "運動場(内側)" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "鶏舎があればニワトリなどの鳥類を確保できます。牧場の外側に近い位置に、屋根があるコンクリート壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "鶏舎 - コンクリート壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の内側に近い位置に、屋根があるコンクリート壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "物置小屋 - コンクリート壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の内側に近い位置に、屋根があるコンクリート壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "厩舎 - コンクリート壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "コンクリート壁の小屋をもう1軒増やし、厩舎を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "2軒のコンクリート壁の馬小屋を仕上げ、より広い厩舎を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "鶏舎があればニワトリなどの鳥類を確保できます。牧場の外側に近い位置に、屋根がある丸太壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "鶏舎 - 丸太壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の内側に近い位置に、屋根がある丸太壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "物置小屋 - 丸太壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の内側に近い位置に、屋根がある丸太壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "厩舎 - 丸太壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "丸太壁の小屋をもう1軒増やし、厩舎を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "2軒の丸太壁の馬小屋を仕上げ、より広い厩舎を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "鶏舎があればニワトリなどの鳥類を確保できます。牧場の外側に近い位置に、屋根がある金属壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "鶏舎 - 金属壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の内側に近い位置に、屋根がある金属壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "物置小屋 - 金属壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の内側に近い位置に、屋根がある金属壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "厩舎 - 金属壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "金属壁の小屋をもう1軒増やし、厩舎を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "2軒の金属壁の馬小屋を仕上げ、より広い厩舎を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の外側に近い位置に、屋根がある異星樹脂製の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "鶏舎 - 異星樹脂壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の内側に近い位置に、屋根がある異星樹脂製の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "物置小屋 - 異星樹脂壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の内側に近い位置に、屋根がある異星樹脂壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "厩舎 - 異星樹脂壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "異星樹脂壁の小屋をもう1軒増やし、厩舎を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "2軒の異星樹脂壁の馬小屋を仕上げ、より広い厩舎を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "鶏舎があればニワトリなどの鳥類を確保できます。牧場の外側に近い位置に、屋根がある練土壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "鶏舎 - 練土壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の内側に近い位置に、屋根がある練土壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "物置小屋 - 練土壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の内側に近い位置に、屋根がある練土壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "厩舎 - 練土壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "練土壁の小屋をもう1軒増やし、厩舎を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "2軒の練土壁の馬小屋を仕上げ、より広い厩舎を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "鶏舎があればニワトリなどの鳥類を確保できます。牧場の外側に近い位置に、屋根がある石壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "鶏舎 - 石壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の内側に近い位置に、屋根がある石壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "物置小屋 - 石壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の内側に近い位置に、屋根がある石壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "厩舎 - 石壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "石壁の小屋をもう1軒増やし、厩舎を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "2軒の石壁の馬小屋を仕上げ、より広い厩舎を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の外側に近い位置に、屋根がある荒打漆喰壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "鶏舎 - 荒打漆喰壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の内側に近い位置に、屋根がある荒打漆喰壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "物置小屋 - 荒打漆喰壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の内側に近い位置に、屋根がある荒打漆喰壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "厩舎 - 荒打漆喰壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "荒打漆喰壁の小屋をもう1軒増やし、厩舎を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "2軒の荒打漆喰壁の馬小屋を仕上げ、より広い厩舎を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "小屋があればニワトリなどの鳥類を確保できます。牧場の外側に近い位置に、屋根がある板壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "鶏舎 - 板壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "飼料、飼育用具、道具類を保管する場所が必要です。牧場の内側に近い位置に、屋根がある板壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "物置小屋 - 板壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "ウマなどの大型動物は厩舎で飼います。牧場の内側に近い位置に、屋根がある板壁の小屋を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "厩舎 - 板壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "板壁の小屋をもう1軒増やし、厩舎を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "2軒の板壁の馬小屋を仕上げ、より広い厩舎を完成させましょう。" #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." @@ -181271,11 +184335,11 @@ msgstr "製塩場調査" msgid "" "We could upgrade the workspace in the brewery to add a still, wood stove and" " work table." -msgstr "醸造場の作業区画を改良し、蒸留器、薪ストーブ、作業台を追加します。" +msgstr "醸造所の作業区画を改良し、蒸留器、薪ストーブ、作業台を追加します。" #: lang/json/recipe_from_json.py msgid "SW brewery still" -msgstr "醸造場 - 蒸留器(南西区画)" +msgstr "蒸留器(南西区画)" #: lang/json/recipe_from_json.py msgid "We could use fill out the space with extra kegs and storage racks." @@ -181283,7 +184347,7 @@ msgstr "空いたスペースにビア樽と収納棚を追加します。" #: lang/json/recipe_from_json.py msgid "SW brewery kegs" -msgstr "醸造場 - ビア樽(南西区画)" +msgstr "ビア樽(南西区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181293,7 +184357,7 @@ msgstr "丸太壁の建物に付近の沼地から塩水を引き入れ、塩を #: lang/json/recipe_from_json.py msgid "NE log wall saltpan" -msgstr "製塩場 - 丸太壁(北東)" +msgstr "製塩場 - 丸太壁(北東区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181309,11 +184373,11 @@ msgstr "貯蔵庫 - 丸太壁(南東区画)" msgid "" "We could take advantage of the designation of this area to build a log " "brewery." -msgstr "この区画に丸太壁の醸造場を建設しましょう。" +msgstr "この区画に丸太壁の醸造所を建設しましょう。" #: lang/json/recipe_from_json.py msgid "SW log wall brewery" -msgstr "醸造場 - 丸太壁(南西)" +msgstr "醸造所 - 丸太壁(南西区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181323,7 +184387,7 @@ msgstr "金属壁の建物に付近の沼地から塩水を引き入れ、塩を #: lang/json/recipe_from_json.py msgid "NE metal wall saltpan" -msgstr "製塩場 - 金属壁(北東)" +msgstr "製塩場 - 金属壁(北東区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181339,11 +184403,11 @@ msgstr "貯蔵庫 - 金属壁(南東区画)" msgid "" "We could take advantage of the designation of this area to build a metal " "wall brewery." -msgstr "この区画に金属壁の醸造場を建設しましょう。" +msgstr "この区画に金属壁の醸造所を建設しましょう。" #: lang/json/recipe_from_json.py msgid "SW metal wall brewery" -msgstr "醸造場 - 金属壁(南西)" +msgstr "醸造所 - 金属壁(南西区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181353,7 +184417,7 @@ msgstr "荒打漆喰壁の建物に付近の沼地から塩水を引き入れ、 #: lang/json/recipe_from_json.py msgid "NE migo resin saltpan" -msgstr "製塩場 - 異星樹脂壁(北東)" +msgstr "製塩場 - 異星樹脂壁(北東区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181369,15 +184433,15 @@ msgstr "貯蔵庫 - 異星樹脂壁(南東区画)" msgid "" "We could take advantage of the designation of this area to build an migo " "resin brewery." -msgstr "この区画に異星樹脂壁の醸造場を建設しましょう。" +msgstr "この区画に異星樹脂壁の醸造所を建設しましょう。" #: lang/json/recipe_from_json.py msgid "SW migo resin brewery" -msgstr "醸造場 - 異星樹脂壁(南西)" +msgstr "醸造所 - 異星樹脂壁(南西区画)" #: lang/json/recipe_from_json.py msgid "NE rammed earth saltpan" -msgstr "製塩場 - 練土壁(北東)" +msgstr "製塩場 - 練土壁(北東区画)" #: lang/json/recipe_from_json.py msgid "SE rammed earth storage room" @@ -181387,11 +184451,11 @@ msgstr "貯蔵庫 - 練土壁(南東区画)" msgid "" "We could take advantage of the designation of this area to build an rammed " "earth brewery." -msgstr "この区画に練土壁の醸造場を建設しましょう。" +msgstr "この区画に練土壁の醸造所を建設しましょう。" #: lang/json/recipe_from_json.py msgid "SW rammed earth brewery" -msgstr "醸造場 - 練土壁(南西)" +msgstr "醸造所 - 練土壁(南西区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181401,7 +184465,7 @@ msgstr "石壁の建物に付近の沼地から塩水を引き入れ、塩を安 #: lang/json/recipe_from_json.py msgid "NE stone wall saltpan" -msgstr "製塩場 - 石壁(北東)" +msgstr "製塩場 - 石壁(北東区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181417,29 +184481,29 @@ msgstr "貯蔵庫 - 石壁(南東区画)" msgid "" "We could take advantage of the designation of this area to build a stone " "brewery." -msgstr "この区画に石壁の醸造場を建設しましょう。" +msgstr "この区画に石壁の醸造所を建設しましょう。" #: lang/json/recipe_from_json.py msgid "SW stone wall brewery" -msgstr "醸造場 - 石壁(南西)" +msgstr "醸造所 - 石壁(南西区画)" #: lang/json/recipe_from_json.py msgid "NE wattle and daub saltpan" -msgstr "製塩場 - 荒打漆喰壁(北東)" +msgstr "製塩場 - 荒打漆喰壁(北東区画)" #: lang/json/recipe_from_json.py msgid "SE wattle and daub storage room" -msgstr "貯蔵庫 - 荒打漆喰壁(北東)" +msgstr "貯蔵庫 - 荒打漆喰壁(北東区画)" #: lang/json/recipe_from_json.py msgid "" "We could take advantage of the designation of this area to build an wattle " "and daub brewery." -msgstr "この区画に荒打漆喰壁の醸造場を建設しましょう。" +msgstr "この区画に荒打漆喰壁の醸造所を建設しましょう。" #: lang/json/recipe_from_json.py msgid "SW wattle and daub brewery" -msgstr "醸造場 - 荒打漆喰壁(南西)" +msgstr "醸造所 - 荒打漆喰壁(南西区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181449,7 +184513,7 @@ msgstr "板壁の建物に付近の沼地から塩水を引き入れ、塩を安 #: lang/json/recipe_from_json.py msgid "NE wood panel saltpan" -msgstr "製塩場 - 板壁(北東)" +msgstr "製塩場 - 板壁(北東区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181465,11 +184529,11 @@ msgstr "貯蔵庫 - 板壁(南東区画)" msgid "" "We could take advantage of the designation of this area to build a wooden " "brewery." -msgstr "この区画に板壁の醸造場を建設しましょう。" +msgstr "この区画に板壁の醸造所を建設しましょう。" #: lang/json/recipe_from_json.py msgid "SW wood panel brewery" -msgstr "醸造場 - 板壁(南西)" +msgstr "醸造所 - 板壁(南西区画)" #: lang/json/recipe_from_json.py msgid "Survey land for a storehouse area." @@ -181487,7 +184551,7 @@ msgstr "大量の丸太を使って中央に大型倉庫を建てられます。 #: lang/json/recipe_from_json.py msgid "east storage wing" -msgstr "大型倉庫 - 東" +msgstr "東区画" #: lang/json/recipe_from_json.py msgid "" @@ -181497,7 +184561,7 @@ msgstr "大量の丸太を使って中央に大型倉庫を建てられます。 #: lang/json/recipe_from_json.py msgid "west storage wing" -msgstr "大型倉庫 - 西" +msgstr "西区画" #: lang/json/recipe_from_json.py msgid "" @@ -181507,7 +184571,7 @@ msgstr "大量の丸太を使って中央に大型倉庫を建てられます。 #: lang/json/recipe_from_json.py msgid "northwest storeroom corner" -msgstr "大型倉庫 - 北西" +msgstr "北西区画" #: lang/json/recipe_from_json.py msgid "" @@ -181517,7 +184581,7 @@ msgstr "大量の丸太を使って中央に大型倉庫を建てられます。 #: lang/json/recipe_from_json.py msgid "southwest storeroom corner" -msgstr "大型倉庫 - 南西" +msgstr "南西区画" #: lang/json/recipe_from_json.py msgid "" @@ -181527,7 +184591,7 @@ msgstr "大量の丸太を使って中央に大型倉庫を建てられます。 #: lang/json/recipe_from_json.py msgid "northeast storeroom corner" -msgstr "大型倉庫 - 北東" +msgstr "北東区画" #: lang/json/recipe_from_json.py msgid "" @@ -181537,7 +184601,7 @@ msgstr "大量の丸太を使って中央に大型倉庫を建てられます。 #: lang/json/recipe_from_json.py msgid "southeast storeroom corner" -msgstr "大型倉庫 - 南東" +msgstr "南東区画" #: lang/json/recipe_from_json.py msgid "" @@ -181547,7 +184611,7 @@ msgstr "大量の丸太を使って中央に大型倉庫を建てられます。 #: lang/json/recipe_from_json.py msgid "south storeroom entrance" -msgstr "大型倉庫 - 出入口(南)" +msgstr "出入口(南区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181557,7 +184621,7 @@ msgstr "大量の丸太を使って中央に大型倉庫を建てられます。 #: lang/json/recipe_from_json.py msgid "north storeroom entrance" -msgstr "大型倉庫 - 出入口(北)" +msgstr "出入口(北区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181897,7 +184961,7 @@ msgstr "保管場所として使うために、西側の区画に本棚を設置 #: lang/json/recipe_from_json.py msgid "bookcases, west" -msgstr "大型倉庫 - 本棚(西区画)" +msgstr "本棚(西区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181907,7 +184971,7 @@ msgstr "保管場所として使うために、東側の区画にロッカーを #: lang/json/recipe_from_json.py msgid "lockers, east" -msgstr "大型倉庫 - ロッカー(東区画)" +msgstr "ロッカー(東区画)" #: lang/json/recipe_from_json.py msgid "We could use some storage containers. Let's build some tables." @@ -181915,7 +184979,7 @@ msgstr "保管場所として使うために、テーブルを設置しましょ #: lang/json/recipe_from_json.py msgid "tables, center" -msgstr "大型倉庫 - テーブル(中央区画)" +msgstr "テーブル(中央区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181924,7 +184988,7 @@ msgstr "北西の外周にベンチを設置しましょう。" #: lang/json/recipe_from_json.py msgid "benches, northwest" -msgstr "大型倉庫 - ベンチ(北西)" +msgstr "ベンチ(北西区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181933,7 +184997,7 @@ msgstr "北東の外周にベンチを設置しましょう。" #: lang/json/recipe_from_json.py msgid "benches, northeast" -msgstr "大型倉庫 - ベンチ(北東)" +msgstr "ベンチ(北東区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181942,7 +185006,7 @@ msgstr "南東の外周にベンチを設置しましょう。" #: lang/json/recipe_from_json.py msgid "benches, southeast" -msgstr "大型倉庫 - ベンチ(南東)" +msgstr "ベンチ(南東区画)" #: lang/json/recipe_from_json.py msgid "" @@ -181951,7 +185015,656 @@ msgstr "南西の外周にベンチを設置しましょう。" #: lang/json/recipe_from_json.py msgid "benches, southwest" -msgstr "大型倉庫 - ベンチ(南西)" +msgstr "ベンチ(南西区画)" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "12台の本棚を、通路を挟んで1列と2列に並べます(全容量2000L、遠隔からアイテム視認可能、視線が通らない)。" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "本棚12台(セクションA)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "本棚12台(セクションB)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "本棚12台(セクションC)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "本棚12台(セクションD)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "本棚12台(セクションE)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "本棚12台(セクションF)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "本棚12台(セクションG)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "本棚12台(セクションH)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "本棚12台(セクションI)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "本棚12台(セクションJ)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "本棚12台(セクションK)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "本棚12台(セクションL)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "本棚12台(セクションM)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "本棚12台(セクションN)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "本棚12台(セクションO)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "本棚12台(セクションP)" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "拠点 - 大型倉庫" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "大規模な貯蔵庫を作れるようになりました。まずはコンクリート壁を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "貯蔵庫 - コンクリート壁" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "コンクリート壁を更に伸ばして貯蔵庫を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" +"コンクリート壁の貯蔵庫を完成させましょう。更に欲張って倍の広さまで拡張することもできますが、戦利品を一時的に置いておくスペースとして使うなら、この程度でいいのではないでしょうか?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "ありとあらゆるアイテムを貯蔵できるようにしましょう!コンクリート壁の貯蔵庫を2倍の広さに拡張します。" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "12台の衣装棚を、通路を挟んで1列と2列に並べます(全容量2000L、遠隔からアイテム視認可能、視線が通る)。" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "衣装棚12台(セクションA)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "衣装棚12台(セクションB)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "衣装棚12台(セクションC)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "衣装棚12台(セクションD)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "衣装棚12台(セクションE)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "衣装棚12台(セクションF)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "衣装棚12台(セクションG)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "衣装棚12台(セクションH)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "衣装棚12台(セクションI)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "衣装棚12台(セクションJ)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "衣装棚12台(セクションK)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "衣装棚12台(セクションL)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "衣装棚12台(セクションM)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "衣装棚12台(セクションN)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "衣装棚12台(セクションO)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "衣装棚12台(セクションP)" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" +"12台のロッカーを、通路を挟んで1列と2列に並べます(全容量2000L、遠隔からアイテム視認不可、視線が通らない)。本棚や衣装棚を並べる方がいいかもしれません。" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "ロッカー12台(セクションA)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "ロッカー12台(セクションB)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "ロッカー12台(セクションC)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "ロッカー12台(セクションD)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "ロッカー12台(セクションE)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "ロッカー12台(セクションF)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "ロッカー12台(セクションG)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "ロッカー12台(セクションH)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "ロッカー12台(セクションI)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "ロッカー12台(セクションJ)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "ロッカー12台(セクションK)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "ロッカー12台(セクションL)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "ロッカー12台(セクションM)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "ロッカー12台(セクションN)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "ロッカー12台(セクションO)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "ロッカー12台(セクションP)" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "大規模な貯蔵庫を作れるようになりました。まずは丸太壁を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "貯蔵庫 - 丸太壁" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "丸太壁を更に伸ばして貯蔵庫を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" +"丸太壁の貯蔵庫を完成させましょう。更に欲張って倍の広さまで拡張することもできますが、戦利品を一時的に置いておくスペースとして使うなら、この程度でいいのではないでしょうか?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "ありとあらゆるアイテムを貯蔵できるようにしましょう!丸太壁の貯蔵庫を2倍の広さに拡張します。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "大規模な貯蔵庫を作れるようになりました。まずは金属壁を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "貯蔵庫 - 金属壁" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "金属壁を更に伸ばして貯蔵庫を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" +"金属壁の貯蔵庫を完成させましょう。更に欲張って倍の広さまで拡張することもできますが、戦利品を一時的に置いておくスペースとして使うなら、この程度でいいのではないでしょうか?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "ありとあらゆるアイテムを貯蔵できるようにしましょう!金属壁の貯蔵庫を2倍の広さに拡張します。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "大規模な貯蔵庫を作れるようになりました。まずは異星樹脂壁を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "貯蔵庫 - 異星樹脂壁" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "異星樹脂壁を更に伸ばして貯蔵庫を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" +"異星樹脂壁の貯蔵庫を完成させましょう。更に欲張って倍の広さまで拡張することもできますが、戦利品を一時的に置いておくスペースとして使うなら、この程度でいいのではないでしょうか?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "ありとあらゆるアイテムを貯蔵できるようにしましょう!異星樹脂壁の貯蔵庫を2倍の広さに拡張します。" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "12台の金属棚を、通路を挟んで1列と2列に並べます(全容量1750L、遠隔からアイテム視認可能、視線が通る)。" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "金属棚12台(セクションA)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "金属棚12台(セクションB)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "金属棚12台(セクションC)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "金属棚12台(セクションD)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "金属棚12台(セクションE)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "金属棚12台(セクションF)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "金属棚12台(セクションG)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "金属棚12台(セクションH)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "金属棚12台(セクションI)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "金属棚12台(セクションJ)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "金属棚12台(セクションK)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "金属棚12台(セクションL)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "金属棚12台(セクションM)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "金属棚12台(セクションN)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "金属棚12台(セクションO)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "金属棚12台(セクションP)" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "大規模な貯蔵庫を作れるようになりました。まずは練土壁を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "貯蔵庫 - 練土壁" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "練土壁を更に伸ばして貯蔵庫を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" +"練土壁の貯蔵庫を完成させましょう。更に欲張って倍の広さまで拡張することもできますが、戦利品を一時的に置いておくスペースとして使うなら、この程度でいいのではないでしょうか?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "ありとあらゆるアイテムを貯蔵できるようにしましょう!練土壁の貯蔵庫を2倍の広さに拡張します。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "大規模な貯蔵庫を作れるようになりました。まずは石壁を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "貯蔵庫 - 石壁" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "石壁を更に伸ばして貯蔵庫を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" +"石壁の貯蔵庫を完成させましょう。更に欲張って倍の広さまで拡張することもできますが、戦利品を一時的に置いておくスペースとして使うなら、この程度でいいのではないでしょうか?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "ありとあらゆるアイテムを貯蔵できるようにしましょう!石壁の貯蔵庫を2倍の広さに拡張します。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "大規模な貯蔵庫を作れるようになりました。まずは荒打漆喰壁を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "貯蔵庫 - 荒打漆喰壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "荒打漆喰壁を更に伸ばして貯蔵庫を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" +"荒打漆喰壁の貯蔵庫を完成させましょう。更に欲張って倍の広さまで拡張することもできますが、戦利品を一時的に置いておくスペースとして使うなら、この程度でいいのではないでしょうか?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "ありとあらゆるアイテムを貯蔵できるようにしましょう!荒打漆喰壁の貯蔵庫を2倍の広さに拡張します。" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" +"12台の倉庫棚を、通路を挟んで1列と2列に並べます(全容量3500L、遠隔からアイテム視認可能、視線が通らない)。収納容量は最大級ですが、その分コストも増大します。" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "倉庫棚12台(セクションA)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "倉庫棚12台(セクションB)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "倉庫棚12台(セクションC)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "倉庫棚12台(セクションD)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "倉庫棚12台(セクションE)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "倉庫棚12台(セクションF)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "倉庫棚12台(セクションG)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "倉庫棚12台(セクションH)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "倉庫棚12台(セクションI)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "倉庫棚12台(セクションJ)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "倉庫棚12台(セクションK)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "倉庫棚12台(セクションL)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "倉庫棚12台(セクションM)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "倉庫棚12台(セクションN)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "倉庫棚12台(セクションO)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "倉庫棚12台(セクションP)" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "大規模な貯蔵庫を作れるようになりました。まずは板壁を建てましょう。" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "貯蔵庫 - 板壁" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "板壁を更に伸ばして貯蔵庫を広げましょう。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" +"板壁の貯蔵庫を完成させましょう。更に欲張って倍の広さまで拡張することもできますが、戦利品を一時的に置いておくスペースとして使うなら、この程度でいいのではないでしょうか?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "ありとあらゆるアイテムを貯蔵できるようにしましょう!板壁の貯蔵庫を2倍の広さに拡張します。" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "12台の木製棚を、通路を挟んで1列と2列に並べます(全容量1500L、遠隔からアイテム視認可能、視線が通る)。" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "木製棚12台(セクションA)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "木製棚12台(セクションB)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "木製棚12台(セクションC)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "木製棚12台(セクションD)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "木製棚12台(セクションE)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "木製棚12台(セクションF)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "木製棚12台(セクションG)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "木製棚12台(セクションH)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "木製棚12台(セクションI)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "木製棚12台(セクションJ)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "木製棚12台(セクションK)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "木製棚12台(セクションL)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "木製棚12台(セクションM)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "木製棚12台(セクションN)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "木製棚12台(セクションO)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "木製棚12台(セクションP)" #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." @@ -181991,7 +185704,7 @@ msgstr "ふいご" msgid "" "We can use a log workshop. Let's start by building a spot to protect the " "workers from the rain." -msgstr "労働者が雨に濡れずに済むように、まずは丸太壁の作業場を作りましょう。" +msgstr "作業者が雨に濡れずに済むように、まずは丸太壁の作業場を作りましょう。" #: lang/json/recipe_from_json.py msgid "northeast wall" @@ -182008,11 +185721,11 @@ msgstr "壁(北区画)" #: lang/json/recipe_from_json.py msgid "Let's expand our production by adding another charcoal kiln." -msgstr "生産効率を上げるために、炭焼窯を追加しましょう。" +msgstr "生産効率を上げるために、更に作業場を広げて炭焼窯を追加しましょう。" #: lang/json/recipe_from_json.py msgid "east forge wall" -msgstr "作業場の壁(東区画)" +msgstr "作業場(東区画)" #: lang/json/recipe_from_json.py msgid "" @@ -182022,7 +185735,7 @@ msgstr "丸太壁を延長して作業場を広げ、参考書を置く本棚を #: lang/json/recipe_from_json.py msgid "west forge wall" -msgstr "作業場の壁(西区画)" +msgstr "作業場(西区画)" #: lang/json/recipe_from_json.py msgid "Let's expand our production by adding a log walled pottery kiln area." @@ -182055,7 +185768,7 @@ msgstr "屋外作業場" msgid "" "We can use a metal workshop. Let's start by building a spot to protect the " "workers from the rain." -msgstr "労働者が雨に濡れずに済むように、まずは金属壁の作業場を作りましょう。" +msgstr "作業者が雨に濡れずに済むように、まずは金属壁の作業場を作りましょう。" #: lang/json/recipe_from_json.py msgid "" @@ -182083,7 +185796,7 @@ msgstr "製陶作業場を金属壁で囲み、収納場所も追加しましょ msgid "" "We can use a mi-go resin workshop. Let's start by building a spot to " "protect the workers from the rain." -msgstr "労働者が雨に濡れずに済むように、まずは異星樹脂壁の作業場を作りましょう。" +msgstr "作業者が雨に濡れずに済むように、まずは異星樹脂壁の作業場を作りましょう。" #: lang/json/recipe_from_json.py msgid "" @@ -182113,7 +185826,7 @@ msgstr "製陶作業場を異星樹脂壁で囲み、収納場所も追加しま msgid "" "We can use a rammed earth workshop. Let's start by building a spot to " "protect the workers from the rain." -msgstr "労働者が雨に濡れずに済むように、まずは練土壁の作業場を作りましょう。" +msgstr "作業者が雨に濡れずに済むように、まずは練土壁の作業場を作りましょう。" #: lang/json/recipe_from_json.py msgid "" @@ -182143,7 +185856,7 @@ msgstr "製陶作業場を練土壁で囲み、収納場所も追加しましょ msgid "" "We can use a rock workshop. Let's start by building a spot to protect the " "workers from the rain." -msgstr "労働者が雨に濡れずに済むように、まずは石壁の作業場を作りましょう。" +msgstr "作業者が雨に濡れずに済むように、まずは石壁の作業場を作りましょう。" #: lang/json/recipe_from_json.py msgid "" @@ -182169,7 +185882,7 @@ msgstr "製陶作業場を石壁で囲み、収納場所も追加しましょう msgid "" "We can use a wattle and daub workshop. Let's start by building a spot to " "protect the workers from the rain." -msgstr "労働者が雨に濡れずに済むように、まずは荒打漆喰壁の作業場を作りましょう。" +msgstr "作業者が雨に濡れずに済むように、まずは荒打漆喰壁の作業場を作りましょう。" #: lang/json/recipe_from_json.py msgid "" @@ -182199,7 +185912,7 @@ msgstr "製陶作業場を荒打漆喰壁で囲み、収納場所も追加しま msgid "" "We can use a wood panel workshop. Let's start by building a spot to protect" " the workers from the rain." -msgstr "労働者が雨に濡れずに済むように、まずは木製の壁の作業場を作りましょう。" +msgstr "作業者が雨に濡れずに済むように、まずは板壁の作業場を作りましょう。" #: lang/json/recipe_from_json.py msgid "Let's extend the north wall to the west and add some storage space." @@ -182218,61 +185931,372 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "製陶作業場を木製の壁で囲み、収納場所も追加しましょう。" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." -msgstr "1列目の耕作地を整備しましょう。" +msgid "Survey land for a workshop area." +msgstr "作業場として使う土地を調査しましょう。" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" -msgstr "耕作地の整備" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." +msgstr "" +"鍛冶場に金属加工用の炉を設置し、必要な道具を置く収納スペースも併せて作りましょう。完成すれば、基本的なレシピの製作を指示できるようになります。" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." -msgstr "2列目の耕作地を整備しましょう。" +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." +msgstr "鍛冶場の外に炭焼窯を2台ほど設置し、併せてるつぼも用意しましょう。完成すれば、指示できる製作レシピの種類が増加します。" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." -msgstr "もう一組の耕作地を整備しましょう。" +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." +msgstr "鍛冶場に金床と焼き入れ装置、作業台を設置しましょう。完成すれば、指示できる製作レシピの種類が増加します。" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." -msgstr "区画の外側の長辺に沿ってフェンスを設置し、シカなどが作物に近づかないようにしましょう。" +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." +msgstr "鍛冶場に家具と道具を追加しましょう。完成すれば、指示できる製作レシピの種類が増加します。" #: lang/json/recipe_from_json.py -msgid "erect a fence" -msgstr "フェンスの建設" +msgid "smithing tools" +msgstr "鍛冶道具" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." -msgstr "区画の外側の短辺に沿ってフェンスを設置し、シカなどが作物に近づかないようにしましょう。" +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." +msgstr "鍛造用のふいごと道具類を追加しましょう。完成すれば、指示できる製作レシピの種類が増加します。" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." -msgstr "区画の内側の短辺に沿ってフェンスを設置し、シカなどが作物に近づかないようにしましょう。" +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" +"鍛冶場の生産性を高めるために、ドロップハンマーなどの工具を追加しましょう。完成すれば、鍛冶場としてのポテンシャルを最大限に発揮できるようになります。" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "製陶作業場に家具を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "製陶作業場家具" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." -msgstr "区画の内側の長辺に沿ってフェンスを設置し、シカなどが作物に近づかないようにしましょう。" +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "製陶作業場の外にベンチとドラム缶焚き火台を設置してリラックスできるようにしましょう。" + +#: lang/json/recipe_from_json.py +msgid "recreation area" +msgstr "休憩エリア" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." -msgstr "畑をトラクターで耕す予定はないので、区画の内縁の長辺をフェンスで囲みましょう。" +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "作業者が雨に濡れずに済むように、まずはコンクリート壁の鍛冶場を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" +msgstr "鍛冶場 - コンクリート壁" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." -msgstr "来年にはトラクターで畑を耕したいので、畑に進入できるように矢来門を設置しましょう。" +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." +msgstr "炭焼窯を置く場所が雨で濡れないように、コンクリート壁と屋根を設置しましょう。" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" -msgstr "矢来門の設置" +msgid "concrete kiln protection" +msgstr "炭焼窯 - コンクリート壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "コンクリート壁で鍛冶場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "鍛冶場 - コンクリート壁完成" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "コンクリート壁で製陶作業場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "製陶作業場 - コンクリート壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "作業者が雨に濡れずに済むように、まずは丸太壁の鍛冶場を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "鍛冶場 - 丸太壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "炭焼窯を置く場所が雨で濡れないように、丸太壁と屋根を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "炭焼窯 - 丸太壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "丸太壁で鍛冶場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "鍛冶場 - 丸太壁完成" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "丸太壁で製陶作業場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "製陶作業場 - 丸太壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "作業者が雨に濡れずに済むように、まずは金属壁の鍛冶場を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "鍛冶場 - 金属壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "炭焼窯を置く場所が雨で濡れないように、金属壁と屋根を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "炭焼窯 - 金属壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "金属壁で鍛冶場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "鍛冶場 - 金属壁完成" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "金属壁で製陶作業場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "製陶作業場 - 金属壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "作業者が雨に濡れずに済むように、まずは異星樹脂壁の鍛冶場を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "鍛冶場 - 異星樹脂壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "炭焼窯を置く場所が雨で濡れないように、異星樹脂壁と屋根を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "炭焼窯 - 異星樹脂壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "異星樹脂壁で鍛冶場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "鍛冶場 - 異星樹脂壁完成" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "異星樹脂壁で製陶作業場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "製陶作業場 - 異星樹脂壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "作業者が雨に濡れずに済むように、まずは練土壁の鍛冶場を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "鍛冶場 - 練土壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "炭焼窯を置く場所が雨で濡れないように、練土壁と屋根を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "炭焼窯 - 練土壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "練土壁で鍛冶場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "鍛冶場 - 練土壁完成" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "練土壁で製陶作業場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "製陶作業場 - 練土壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "作業者が雨に濡れずに済むように、まずは石壁の鍛冶場を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "鍛冶場 - 石壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "炭焼窯を置く場所が雨で濡れないように、石壁と屋根を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "炭焼窯 - 石壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "石壁で鍛冶場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "鍛冶場 - 石壁完成" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "石壁で製陶作業場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "製陶作業場 - 石壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "作業者が雨に濡れずに済むように、まずは荒打漆喰壁の鍛冶場を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "鍛冶場 - 荒打漆喰壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "炭焼窯を置く場所が雨で濡れないように、荒打漆喰壁と屋根を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "炭焼窯 - 荒打漆喰壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "荒打漆喰壁で鍛冶場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "鍛冶場 - 荒打漆喰壁完成" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "荒打漆喰壁で製陶作業場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "製陶作業場 - 荒打漆喰壁" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "作業者が雨に濡れずに済むように、まずは板壁の鍛冶場を作りましょう。" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "鍛冶場 - 板壁" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "炭焼窯を置く場所が雨で濡れないように、板壁と屋根を設置しましょう。" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "炭焼窯 - 板壁" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "板壁で鍛冶場を完成させましょう。" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "鍛冶場 - 板壁完成" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "板壁で製陶作業場を作り始めましょう。" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "製陶作業場 - 板壁" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" +msgstr "" #: lang/json/recipe_from_json.py msgid "Buttery Duck Bites" @@ -183011,31 +187035,31 @@ msgstr "製作: つるはし" #: lang/json/recipe_group_from_json.py msgid " Craft: Sheet Metal, Drop Hammer" -msgstr "製作: 板金[設備: ドロップハンマー]" +msgstr "製作: 板金[設備: ドロップハンマー]" #: lang/json/recipe_group_from_json.py msgid " Craft: Chain, Drop Hammer" -msgstr "製作: チェーン[設備: ドロップハンマー]" +msgstr "製作: チェーン[設備: ドロップハンマー]" #: lang/json/recipe_group_from_json.py msgid " Craft: Nail, Drop Hammer" -msgstr "製作: 釘[設備: ドロップハンマー]" +msgstr "製作: 釘[設備: ドロップハンマー]" #: lang/json/recipe_group_from_json.py msgid " Craft: Wire, Drop Hammer" -msgstr "製作: ワイヤー[設備: ドロップハンマー]" +msgstr "製作: ワイヤー[設備: ドロップハンマー]" #: lang/json/recipe_group_from_json.py msgid " Craft: Pipe, Drop Hammer" -msgstr "製作: パイプ[設備: ドロップハンマー]" +msgstr "製作: パイプ[設備: ドロップハンマー]" #: lang/json/recipe_group_from_json.py msgid " Craft: Rebar, Drop Hammer" -msgstr "製作: 鉄筋[設備: ドロップハンマー]" +msgstr "製作: 鉄筋[設備: ドロップハンマー]" #: lang/json/recipe_group_from_json.py msgid "Modular Field Camp version 1" -msgstr "モジュール式平野拠点バージョン1" +msgstr "モジュール式平野拠点1" #: lang/json/recipe_group_from_json.py msgid "Firestation Base" @@ -183106,37 +187130,85 @@ msgid "Mansion Garden With Columns Base" msgstr "拠点(大邸宅 - 円柱庭園)" #: lang/json/recipe_group_from_json.py -msgid "Canteen" -msgstr "食堂" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" +"食堂1\n" +"薪ストーブ、井戸、貯蔵穴を作り、いくつかの調理レシピ製作を指示できる" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" +msgstr "" +"食堂2\n" +"食堂1の設備に蒸留器、風車、プランターを追加" #: lang/json/recipe_group_from_json.py msgid "Farm version 1. Shed, plots, some farming recipes" -msgstr "農地バージョン1です。小屋と畑を作り、いくつかの農業レシピを製作できるようにします。" +msgstr "" +"農地1\n" +"小屋と畑を作り、いくつかの農業レシピ製作を指示できる" #: lang/json/recipe_group_from_json.py msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" -msgstr "農地バージョン2です。畑とフェンス(オプションでトラクターが通行できる門)のみ作り、農業レシピは製作できません。" +msgstr "" +"農地2\n" +"畑とフェンス(オプションでトラクターが通行できる門)のみ作り、農業レシピ製作は指示できない" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "車両整備工場" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "" +"車両解体場1\n" +"適度なサイズの車両を収容でき、周囲には空き地が残る" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" -msgstr "牧場" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" +"車両解体場2\n" +"幅を車両2台分、3台分、最大の3通りから選択できる" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" +"牧場1\n" +"空き地が多い" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" +msgstr "" +"牧場2\n" +"仕切った小部屋が多く、空き地が少ない" #: lang/json/recipe_group_from_json.py msgid "Saltworks Area" msgstr "製塩場区画" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" -msgstr "大型倉庫" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" +"大型倉庫1\n" +"空き地がある便利な建物" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" +"大型倉庫2\n" +"拠点の東西南北にのみ配置できる、収納を重視した建物" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" -msgstr "工作場" +msgid "Fabrication Workshop version 1. Nice workshop cottage" +msgstr "" +"作業場1\n" +"製作に便利な建物" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 2. More detailed recipe progression" +msgstr "" +"作業場2\n" +"より多くの製作レシピに対応" #: lang/json/recipe_group_from_json.py msgid "Light Industry Workshop" @@ -183298,6 +187370,62 @@ msgstr "解析: ICデータシート[材料: USBメモリ]" msgid " Hack & Download: Satellite Map, sketch" msgstr "解析: 衛星地図" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "製作: るつぼ(陶器)" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "製作: やっとこ" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "製作: 金工タガネ" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "製作: 狩猟用ナイフ" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "製作: ポンチ" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "拠点(平野)" @@ -185505,6 +189633,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "植物の閾値を超えている変異体として開始します。" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "変異体 - 閾値突破(ウサギ)" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "変異体 - 閾値突破(ウサギ)" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "ウサギの閾値を超えている変異体として開始します。" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "ウサギの閾値を超えている変異体として開始します。" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -185825,7 +189979,7 @@ msgid "" "objects." msgstr "資源を活用して便利なアイテムを製作する為の加工スキルです。ほとんどのアイテム製作に必要なスキルです。" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "調理" @@ -186574,9 +190728,9 @@ msgstr "ゾンビの大群が向かって来たら、すぐに逃げよう!" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." -msgstr "ゾンビの大群に追われているなら、地下鉄路線を通って、1、2ブロック離れた場所から地上に出てみよう。" +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." +msgstr "ゾンビの大群に追われているなら、地下鉄路線を通って1、2ブロック離れた場所から地上に出てみよう。" #: lang/json/snippet_from_json.py msgid "" @@ -187369,17 +191523,19 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." -msgstr "マイクは今も正気を保っているだろうか。不幸なことに、学校へ侵入したんだ。この経験で彼は肋骨を折り、心も折れてしまった。" +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." +msgstr "" +"私の知り合いの小学校教師は、学校を脱出するために戦わねばならなかった。12人の狂った子供たちを殺さねばならなかった。その経験が人格にどんな影響を与えるのか、想像もつかない。" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" -"爆発物については、爆心地から思いっきり逃げてもまだ爆発しなかったら、更に逃げよう。ダイナマイトの爆発範囲は逃げられるギリギリまで届くからね。" +"爆発物についての考察: 走る気力が残っていて、爆弾がまだ爆発していないなら、更に距離を取るべきだ。手榴弾の扱いは、いくら注意してもし過ぎることはない。" #: lang/json/snippet_from_json.py msgid "Avoid using launchers in narrow hallways, you might miss." @@ -191612,67 +195768,67 @@ msgstr "その、、批判するつもりじゃないけど、拠点の #: lang/json/snippet_from_json.py msgid "right on top of us!" -msgstr "...真上だ!" +msgstr "真上だ!" #: lang/json/snippet_from_json.py msgid "right there!" -msgstr "...そこだ!" +msgstr "そこだ!" #: lang/json/snippet_from_json.py msgid "danger close!" -msgstr "...近くに!" +msgstr "近い!" #: lang/json/snippet_from_json.py msgid "almost in melee range!" -msgstr "...もうすく射程距離内だ!" +msgstr "もうすぐ肉薄する!" #: lang/json/snippet_from_json.py msgid "too close for comfort!" -msgstr "...近すぎる、マズい!" +msgstr "近すぎる、マズい!" #: lang/json/snippet_from_json.py msgid "within shooting range." -msgstr "...射程距離内に入った。" +msgstr "射程距離内に入った。" #: lang/json/snippet_from_json.py msgid "only a couple of seconds' away." -msgstr "...肉薄してる。" +msgstr "目と鼻の先だ。" #: lang/json/snippet_from_json.py msgid "just a bit away." -msgstr "...すぐそこにいる。" +msgstr "すぐそこにいる。" #: lang/json/snippet_from_json.py msgid "closer than I'd like." -msgstr "...近くに居る、マズいな。" +msgstr "近くに居る、マズいな。" #: lang/json/snippet_from_json.py msgid "near enough to see us." -msgstr "...目と鼻の先だ。" +msgstr "目の前だ。" #: lang/json/snippet_from_json.py msgid "quite a bit away." -msgstr "...かなり遠くにいるな。" +msgstr "かなり遠くにいるな。" #: lang/json/snippet_from_json.py msgid "maybe within shooting range." -msgstr "...射程距離内に入ったかもしれない。" +msgstr "射程距離内に入ったかもしれない。" #: lang/json/snippet_from_json.py msgid "at a good distance." -msgstr "...程よい距離が取れている。" +msgstr "ほどよく距離が取れている。" #: lang/json/snippet_from_json.py msgid "far enough away that we could make sneak away." -msgstr "...かなり遠くにいる。こっそり離れられそうだ。" +msgstr "かなり遠くにいる。こっそり離れられそうだ。" #: lang/json/snippet_from_json.py msgid "out on the horizon, so don't worry much." -msgstr "...地平線の向こうだ。心配ないよ。" +msgstr "地平線の向こうだ。心配ないよ。" #: lang/json/snippet_from_json.py msgid "at a long distance." -msgstr "...遠くにいるな。" +msgstr "遠くにいるな。" #: lang/json/snippet_from_json.py msgid " will use ranged weapons." @@ -192572,6 +196728,273 @@ msgid "" "then come back to life in ragged succession." msgstr "空を見上げていると、広範囲の星々が暗闇に呑まれ、しばらくするとポツポツと光を取り戻しています。" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "一瞬、空に島のようなものが見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "一瞬、太陽が血のように赤くなり、何かを滴らせているように見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "一瞬、遠くに山のようなサイズのビルが見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "一瞬、半透明の群衆が周囲に現れました。誰もこちらを気にしていないようです。" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "低空飛行する軽飛行機が見えました。何故か上下逆さまに飛んでおり、見たこともないデザインの横断幕を引いています。" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "周囲のあらゆる影が、まるで太陽が高速で動いているかのように回転しました。" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "一瞬、空に連なった島のようなものが見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "一瞬、まるで巨大な目が瞬きしたかのように、太陽が陰りました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "一瞬、遠くに山のようなサイズの昆虫が見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "一瞬、半透明の群衆が周囲に現れました。全員がこちらを見ています。" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "低空飛行する大型飛行機が見えました。何故か上下逆さまに飛んでおり、尾翼には色を反転させた国旗が描かれています。" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "周囲のあらゆる影が形と色を転じ、人のような姿に変形しました。" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "一瞬、空に街のようなものが見えました。" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "一瞬、太陽が猛スピードで北に移動したように見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "一瞬、遠くに山のようなサイズの人間が見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "一瞬、半透明の群衆が周囲に現れました。全員がこちらを指差し、人間の声帯では絶対に出せないような声で叫んでいます。" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" +"上下逆さまの状態で低空飛行する大型飛行機が見えました。その付近にパラシュートを広げた人を見つけましたが、もがきながら飛行機に巻き込まれていきました。" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "周囲のあらゆる影が形と色を転じ、手足が増えた人のような姿に変形し、手招きをしているように見えました。" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "どこかで嗅いだことのあるような、きつい化学物質の臭いがしました。" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "全身の皮膚を粟立たせるような、微かな痺れを感じました。" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "空に巨大な穴が開き、雲がどんどん吸い込まれていきました。" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "空に巨大な穴が開き、中から暗雲が湧き出しました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "一瞬、世界がずれたかのように周囲がぼやけました。" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "一瞬、目の前の空間に穴が開き、その中に自分の背中が見えました。" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "一瞬、周囲のすべての色がくすんで見えました。" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "一瞬、あらゆるものとの距離が縮まったように見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "背の低い人影が現れ、それが何なのか認識する間もなく消失しました。" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "今まで嗅いだことのない、よく分からない匂いがします。良いものなのか、悪いものなのかすら判別できません。" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "全身の皮膚を粟立たせるような痺れを感じました。" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "空に巨大な穴が開き、中から鮮やかな色の雲が湧き出しました。" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "空に目のような巨大な穴が開き、瞬きするように閉じました。" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "一瞬、広大で空虚な空間が現実世界と重なって見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "一瞬、何の特徴もない小さな円形の空間が、現実世界と重なって見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "一瞬、ビルほどのサイズの植物らしきもので覆われた広大で異質な風景が、現実世界と重なって見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "一瞬、廃墟となったとてつもない規模の無人都市の風景が、現実世界の建物と重なって見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "一瞬、目の前の空間に穴が開き、その中にほぼ完全な自分のコピーが見えました。" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "一瞬、周囲のすべての色が反転して見えました。" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "一瞬、あらゆるものとの距離が遠くなったように見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "目の前に突然背の高い人物が現れ、どことなく嫌な予感がしましたが、すぐに消えてしまいました。" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "今まで嗅いだことのない、吐き気を催す匂いがします。" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "全身の皮膚を粟立たせるような、強い痺れを感じました。" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "空にギザギザの穴が開き、非対称な人型の大きな雲が湧き出しました。" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "空にギザギザした目のような穴が開き、こちらを見つめています。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "一瞬、現実世界が消失し、広大で空虚な空間に立っていました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "一瞬、現実世界が消失し、何の特徴もない小さな円形の空間に立っていました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "一瞬、現実世界が消失し、ビルほどのサイズの植物らしきもので覆われた広大で異質な世界に立っていました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "一瞬、現実世界が消失し、廃墟となったとてつもない規模の無人都市に立っていました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "一瞬、目の前の空間に穴が開き、その中に完璧な自分のコピーが見えました。" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "一瞬、周囲のあらゆる色が絶え間なく変わり、あらゆる形状がギザギザになっているように見えました。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "一瞬、あらゆるものとの距離が消え、すべてが一つになったように感じ、閉所恐怖症のような感情が沸き起こりました。" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "目の前に突然背の高い人物が現れ、こちらを指差し、すぐに消失しました。" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -192580,8 +197003,8 @@ msgstr "地下鉄路線は静まり返っており、自分の足音だけがや #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." -msgstr "地下から泥のような灰色の水が湧き出しており、レールが濡れています。" +"The rails are slick here with a gray, quivering ooze welling up from below." +msgstr "地下から泥のような灰色の水が湧き出し、レールを濡らしています。" #: lang/json/snippet_from_json.py msgid "" @@ -192702,7 +197125,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "壁面には緑灰色のキノコが隙間なく繁茂しています。キノコが楽しそうに傘を掲げて挨拶しているような気がしました。" @@ -194998,7 +199421,7 @@ msgstr "" " To: 全てのSRCF職員\n" " From: 核安全保障局次官 コンスタンティン・ドボルザーク\n" " \n" -" 職員注意事項: 自身のセキュリティクリアランス以上のコンテナの開封、検査は厳禁とする。 安全手順や配送手配に関して質問がある場合は、SRCF管理者、または現場の士官に連絡すること。判断がつかない場合は、全てのコンテナをクラスAと見なし、毒性の強い病原体として取り扱うように。くれぐれも細心の注意を払うこと!" +" 職員注意事項: 自身のセキュリティクリアランスより高いクラスのコンテナの開封、および検査は厳禁とする。 安全手順や配送手配に関して質問がある場合は、SRCF管理者、または現場の士官に連絡すること。判断がつかない場合は、全てのコンテナをクラスAと見なし、毒性の強い病原体として取り扱うように。くれぐれも細心の注意を払うこと!" #: lang/json/snippet_from_json.py msgid "" @@ -196955,11 +201378,11 @@ msgstr "身分証明は常に見える位置に携帯しまし #: lang/json/snippet_from_json.py msgid "some ." -msgstr "が流れています。" +msgstr "の音楽" #: lang/json/snippet_from_json.py msgid "some . The is ." -msgstr "が流れています。と感じました。" +msgstr "の音楽と" #: lang/json/snippet_from_json.py msgid " " @@ -196996,11 +201419,11 @@ msgstr "オーケー" #: lang/json/snippet_from_json.py msgid "pretty good" -msgstr "かなり良い感じだ" +msgstr "かなり良い感じの" #: lang/json/snippet_from_json.py msgid "sweet" -msgstr "甘美だ" +msgstr "甘美な" #: lang/json/snippet_from_json.py msgid "sick" @@ -197008,7 +201431,7 @@ msgstr "ヤバい" #: lang/json/snippet_from_json.py msgid "totally danceable" -msgstr "すごくダンサブルだ" +msgstr "すごくダンサブルな" #: lang/json/snippet_from_json.py msgid "bangin'" @@ -197016,15 +201439,15 @@ msgstr "力強い" #: lang/json/snippet_from_json.py msgid "grating" -msgstr "耳障りだ" +msgstr "耳障りな" #: lang/json/snippet_from_json.py msgid "ear-splitting" -msgstr "耳をつんざくようだ" +msgstr "耳をつんざくような" #: lang/json/snippet_from_json.py msgid "too slow for your taste" -msgstr "ゆったりし過ぎだ" +msgstr "ゆったりしすぎな" #: lang/json/snippet_from_json.py msgid "frenetic" @@ -197040,7 +201463,7 @@ msgstr "混沌としている" #: lang/json/snippet_from_json.py src/iuse.cpp msgid "not bad" -msgstr "普通" +msgstr "平凡な" #: lang/json/snippet_from_json.py msgid "not bad, not bad at all" @@ -197048,7 +201471,7 @@ msgstr "悪くない、いや、結構いける" #: lang/json/snippet_from_json.py msgid "honestly kinda mediocre" -msgstr "正直言ってちょっと平凡" +msgstr "正直言ってちょっとありがちな" #: lang/json/snippet_from_json.py msgid "bassline" @@ -197861,7 +202284,7 @@ msgstr "酷く変異した動物の肺です。気道には石のように硬い msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" "変異した動物の肺を調理したものです。苦労して半透明の硬い殻を取り除きましたが、その下にある灰色のスポンジのようなほとんど味のしない組織塊を食べるしかありません。" @@ -197927,7 +202350,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" "変異した動物の肝臓です。表面は黒く硬くなっていますが、所々に入ったひびの隙間からピンク色の組織が見えています。表皮を完全に割り開くと内部の組織は驚くべき速度で膨らみ始め、やがて灰色に変色して活動を停止します。" @@ -197942,7 +202365,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -197962,7 +202385,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" @@ -197970,12 +202393,12 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" -"変異した動物の腎臓です。刃物が滑って側面に大きな傷ができ、そこから小さく美しい真珠のような粒が転がり出てきました。その真珠は湿気を帯びて光りだし、やがて悪臭を放ちながら溶けて跡形もなく消えました。" +"変異した動物の腎臓です。解体中に刃が滑って側面に大きな傷ができ、そこから小さく美しい真珠のような粒が転がり出てきました。その真珠は湿気を帯びて光りだし、やがて悪臭を放ちながら溶けて跡形もなく消えました。" #: lang/json/snippet_from_json.py msgid "" @@ -198062,7 +202485,7 @@ msgstr "変異した巨大昆虫から取り出した、長い紐状の器官で #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -198176,9 +202599,9 @@ msgstr "死体の関節部にしがみついていた寄生虫が、傍にいる #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" -msgstr "全身の至る所から、成長段階がそれぞれ異なる小さな卵塊が見つかりました" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" +msgstr "全身の至る所から、成長段階がまちまちの小さな卵塊が見つかりました" #: lang/json/snippet_from_json.py msgid "" @@ -198592,7 +203015,7 @@ msgstr "" "体内の混沌とした臓器群は他の変異した昆虫のものとよく似ていますが、腹部には狂気的な秩序が見られます。毒で満たされた腺は綺麗に整列しており、それらが針の基部にある貯毒池に毒を注ぎ込んでいます" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "胃を開いてみると、甘い香りがする灰色の液体が噴出しました" #: lang/json/snippet_from_json.py @@ -198602,9 +203025,9 @@ msgstr "餌がほとんどなかったのか、腸はほぼ完全に萎縮して #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" -msgstr "刃が引っ込められた針に到達し、大量の毒腺を切り開きつつ滑らかな針の表面を滑りました。まさか切り傷があったりはしませんよね?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" +msgstr "刃が引っ込められた針に到達し、大量の毒腺を切り開きつつ滑らかな針の表面を滑りました。解体作業中にケガをしないよう祈るばかりです。" #: lang/json/snippet_from_json.py msgid "" @@ -200175,6 +204598,68 @@ msgid "" "being stuck in an office job." msgstr "大変動が起こらない世界でひたすら仕事をし続ける悪夢から目覚めました。" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "じゃあ、ネコとイヌのどっちが好き?" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "ゾンビは痛みを感じないようでホッとしたよ。" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "どこまで行こうがきっと生き延びられる、そう思うだろう?" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "なんとなくだけど、世界がすぐに元通りになる気がしないんだ..." + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "やれやれ、ハリウッドのゾンビ映画とは大違いだな!" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "ゾンビを殺すことの倫理観について考えたことはある?" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "歯磨き粉を塗って、その後で、歯ブラシを濡らすのか?変なの。" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "今、大統領は何をしてると思う?" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "どんなジャンルの音楽が好き?個人的には、ベースの効いたポスト・グラム・スピード・ポルカかな。" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "他の人には内緒だけど、時々クマちゃんのぬいぐるみを抱いて眠るんだ。" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "時々、夜空に奇妙なものが見えるんだ。" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "昔、ネコを飼っていたんだ。Mr.カドルズが居なくて本当に寂しいよ..." + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "友達とケイドロで遊んだことを思い出すな。まさかゾンビを足して似たようなことをするとはね..." + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "私たちが、何かのシミュレーション内にいるって考えたことはある?" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -202490,7 +206975,7 @@ msgstr "さっさと殺そう!" msgid "I'm your best friend, right?" msgstr "私たちは親友だよな?" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "だいすき!" @@ -203184,6 +207669,118 @@ msgstr "マジでムカつくんだが..." msgid "You hate this loud sound." msgstr "忌々しい大音量が鳴り響きました。" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "こんな犬を飼っていた事もあったなぁ..." + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "ハハッ!実に面白い猫の写真です。" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "素晴らしい風景写真です。" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "美味しそうな食べ物の写真です...お腹が空いてきますね!" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "数枚のとても楽しそうな旅行写真です。" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "人気ポップスバンドのコンサート写真です。" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "見知らぬ誰かの豪邸の写真です。" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "写真を眺めていると懐かしさが込み上げてきました。" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "確実です。" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "明らかにそうです。" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "間違いありません。" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "はい、確かです。" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "見込みがあります。" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "イエスだと考えられます。" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "多分そうです。" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "良い見通しです。" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "はい。" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "良い兆候です。" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "よく分かりません、もう一度試してください。" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "また後で尋ねてください。" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "今は答えを聞かない方が良いでしょう。" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "今のところ分かりません。" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "精神を集中してもう一度聞いてください。" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "当てにしては駄目です。" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "ノーと言えます。" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "情報源によればノーです。" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "悪い見通しです。" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "非常に怪しいです。" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -203202,6 +207799,21 @@ msgstr "「私達はこの状況を必ず切り抜けます!」" msgid "\"i'm here for you!\"" msgstr "「私は貴方の為にここにいるのです!」" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "「わー!わたしたちそっくり!気をつけていこうね!」" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "「おおきなわたし、さあ、いこう!」" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "「みんななかまだ、がんばるぞ!」" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "「我々が正しかった。政府はやり遂げた」" @@ -203945,7 +208557,7 @@ msgstr "「友達が近づいてきたと思ったら全員死人だった。つ #: lang/json/snippet_from_json.py msgid "\"DOG NOT REAL DOG\"" -msgstr "「その犬は偽物だ」" +msgstr "「その犬は偽者だ」" #: lang/json/snippet_from_json.py msgid "" @@ -204386,6 +208998,91 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "「...生物発光、直径約150cm...肉体から分離した巨大な眼球のように見え、飛行能力をもち、思考[判読不能]ようだ」" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" +"「まだ水を沸騰させているの?雨水は自然に蒸留されてる。そのままでも安全だし、煮沸なんて時間の無駄だ。川の水を飲んだけど、ピンピンしてるよ!」" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" +"「避難シェルターにいたら、知らない人たちが入ってきて、出て行って、石を掴んで、また入ってきて、ベンチを叩き壊して、板を削って、また出て行った。あの人たちの姿はもう3日も見ていない...一体何だったんだろう」" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" +"うわっ、このメモは灰色の粘液に覆われています...「私はスライムフェチだが、これはやりすぎだ。両手もスライム。髪の毛もスライム。全身スライムだ。スライムのせいでバールも握れない。どこへ行ってもスライムの痕跡が残る。何もかもスライム。バッグもスライムの海に沈んでしまった」" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" +"ノートの1ページに、モールス信号とそれらを解読したメッセージが記されています。「Whiskey Echo Whiskey - Lima Alpha " +"Delta :wew lad(やれやれ)」" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "「たとえば貴方に すこしだけでも けっして諦めぬ おもいが有れば より強くだいた んに食いつない でいけるだろう」" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "「街でフードプレイスの従業員を見かけた。正直言って、あいつら生きてても死んでても見た目が変わらないよな」" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" +"「照射施設には絶対に行くな。トラックがタレットにやられてスイスチーズみたいに穴ぼこだらけだ。酷い状態の車を修理しなきゃならないから、何時間も道端で立ち往生することになりそうだ」" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "「SNSで『愛と祈り』を送るやつらの姿が目に浮かぶね。愛はゾンビを殺さないし、祈りで腹は膨れない」" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" +"「以前の私は、こんな思想を鵜呑みにしていた。測定できなければ、説明できなければ、数字で表現できなければ、それは現実ではない。それが今じゃこのザマだ。笑うしかないよ」" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "うわっ、このメモは灰色の粘液に覆われています...「ブロブロブ」" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "「森の中で若い女を見かけた。全身の皮膚が緑色で、葉や蔓に覆われていた」" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "「良いニュース: 宿題を忘れても先生が手足を引き裂こうとしてこない。悪いニュース: 良い子にしてても先生が手足を引き裂こうとしてくる」" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -204493,7 +209190,7 @@ msgid "" "\n" "To continue the tutorial, please wield the spear and move to the counters west of you." msgstr "" -"隣の陳列棚にはスチールスピアが置いてありますね。wキーを押せば、アイテムを取得する過程を経ずに装備することができます。wキーを押すとアイテム装備メニューが表示されるので、手に持ちたいアイテムを選択し、エンターキーで実行します。\n" +"隣の金属棚にはスチールスピアが置いてありますね。wキーを押せば、アイテムを取得する過程を経ずに装備することができます。wキーを押すとアイテム装備メニューが表示されるので、手に持ちたいアイテムを選択し、エンターキーで実行します。\n" "所持容量が足りないため、スチールスピアを装備するには野球バットをその場に落とす必要があります。\n" "両手を空けたい(何も装備しない状態にしたい)場合は、wキーを押してから現在装備しているアイテムを選択しましょう。また、dキーを押してから装備中のアイテムを選択することで、装備していたアイテムをその場に落とすことも可能です。\n" "スチールスピアを装備したら、西側のカウンターまで移動して、チュートリアルを続けましょう。" @@ -206964,6 +211661,14 @@ msgstr "「茶色とマゼンタ色の四足歩行幼体は一体何なんだ! msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "「私は今日、最も美しい恐竜を見た。彼女に服を着せなければ」" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" +"「最初に恐竜を見た時はゴージャスだなって思った。次に恐竜を見た時は超ゴージャスだなって思った。次の次に見た恐竜は超超ゴージャスなゴルゴサウルスだったんだ!本当だよ」" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -207005,7 +211710,7 @@ msgid "" "soon' reports Swamper CEO Bo Baronyx confidently. Sounds like good news " "ahead!" msgstr "" -"「支配者は人間ではない?」スワンパーの研究者がヒストリカル・シミュレーションを行った結果、人工的に災害が引き起こされない限り人間は決して進化せず、恐竜が今日まで地球の支配者であり続けるという結果が出たと報告しました。スワンパーのCEO、ボー・バロニクス氏は「恐れることはありません。この世界は回復し、まもなく平常に戻るのです」と、自信ありげに述べています。良いニュースとみて間違いありませんね!" +"『支配者は人間ではない?』スワンパーの研究者がヒストリカル・シミュレーションを行った結果、人工的に災害が引き起こされない限り人間は決して進化せず、恐竜が今日まで地球の支配者であり続けるという結果が出たと報告しました。スワンパーのCEO、ボー・バロニクス氏は「恐れることはありません。この世界は回復し、まもなく平常に戻るのです」と、自信ありげに述べています。良いニュースとみて間違いありませんね!" #: lang/json/snippet_from_json.py msgid "" @@ -207084,6 +211789,26 @@ msgid "" "time." msgstr "アロンソは彼女をよく知らないが、美しく雄大で、きちんとした墓に値する者だと思う。アロンソはしばらくの間、この恐竜のことを覚えているだろう。" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" +"主要な魔法使いの連絡係になっているジェイコブから通信が入った。かなり参っているようで何時間も泣き言を聞かされたが、ともかく中央研究所は全て制圧されたようだ。死霊術師たちは我々を排除するために団結したのだろうか?奴らの計画は何だ?" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" +"昨日、魔法使いのグレゴリー・ハミルトンが地元の繁華街で暴れ回った。ニューヨーク州シラキュースで最も強い魔法使いとして知られていた彼のことだから、街一帯をもうもうと煙るクレーターに変えることなど造作もなかっただろう。州兵は狙撃班と5機のヘリコプターを動員し、彼を排除した。犠牲者の数は不明だが、現時点での予想は15000人以上と言われている。" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -207122,6 +211847,14 @@ msgstr "" "\n" "オリハルコンは、主に銅をベースとした合金だが、それ以外の金属や正確な混合手順については諸説ある。強度は鋼に及ばないが、腐食や単純な摩耗には遥かに強い(形状を維持しようとする意志があるという説もある)。従来の古代魔法剣の存在もあるが、オリハルコンに関する一般的な理解の多くは、産業革命以前に墳墓で発見された損耗のないオリハルコン製の武器に基づいている。では、なぜオリハルコンは工業分野で用いられないのだろうか?それは、正しい技術で鍛造しないと、魔術的エネルギーが劣化してしまうためだ。鍛造したオリハルコンはいくらか損耗しても数分で再生する(そもそも損耗するということは真のオリハルコンではないとも言える)ものの、この損耗リスクは鍛造後30年間でより顕著に表れる。つまり、ワインのように「熟成」させなければ、真のオリハルコンにならないのだ。既存のオリハルコンを再鍛造する場合も同様の問題があるため、オリハルコンは工業的な活用が困難であり、もっぱら工芸品として用いられる。オリハルコン製の古い鎧や武器はもちろん、先祖伝来の豪華なカトラリーなども存在している。現在でも趣味人や職人による活発なコミュニティは存在しているが、オリハルコンは他の多くの魔法事象と同様に、現代社会全体に浸透することはないだろう。」" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" +"モールで暴動が発生した。分かっているのはただ一つ、どこかの馬鹿がモール内でマス・バーサークの呪文詠唱実験をしていたということだけだ。その種の呪文が軍事機密に分類されていることには、ちゃんと*理由*があるというのに..." + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -208633,9 +213366,9 @@ msgstr "[陽気な声]「お客様?これからもずっとお友達、です #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" -msgstr "[平坦な声]「お客様とお過ごしする時間が間もなく終了することを、お知らせしなければなりません」" +msgstr "[平坦な声]「お客様とお過ごしする時間が間もなく終了してしまうことを、お知らせしなければなりません」" #: lang/json/speech_from_json.py msgid "" @@ -208804,19 +213537,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "「警察が到着する。そのまま動くな!」" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" -msgstr "[内臓を震わせる甲高い音]" +msgid "visceral chittering." +msgstr "[内臓を震わせる音]" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" -msgstr "[唸るような澄んだ高い音]" +msgid "a clear, high-pitched hum." +msgstr "[澄んだ高い唸り音]" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "[唸るような電流の音]" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "[唸るような低い音]" #: lang/json/speech_from_json.py @@ -208889,128 +213622,132 @@ msgid "" msgstr "「フードプレイスは、健康で強力な人生を手に入れる唯一の方法です!」" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "わたしと一緒に遊ばない?" +msgid "\"Wanna play with me?\"" +msgstr "「わたしと一緒に遊ばない?」" + +#: lang/json/speech_from_json.py +msgid "\"Sing with me!\"" +msgstr "「一緒に歌おうよ!」" #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "一緒に歌おうよ!" +msgid "\"I love you!\"" +msgstr "「だいすき!」" #: lang/json/speech_from_json.py -msgid "Please take me with you!" -msgstr "一緒に連れて行って!" +msgid "\"Please take me with you!\"" +msgstr "「一緒に連れて行って!」" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "クッキーを食べてもいい?" +msgid "\"May I have a cookie?\"" +msgstr "「クッキーを食べてもいい?」" #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "一緒に遊びましょう!" +msgid "\"Let's play together!\"" +msgstr "「一緒に遊びましょう!」" #: lang/json/speech_from_json.py -msgid "Time to play!" -msgstr "一緒に遊ぼう!" +msgid "\"Time to play!\"" +msgstr "「遊びましょう!」" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" -msgstr "ムシャムシャ、美味しいね!" +msgid "\"Om nom nom! Delicious!\"" +msgstr "「ムシャムシャ、美味しいね!」" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" -msgstr "お母さん?" +msgid "\"Are you my mommy?\"" +msgstr "「お母さん?」" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" -msgstr "あぁ楽しい!" +msgid "\"Oh, how fun!\"" +msgstr "「あぁ楽しい!」" #: lang/json/speech_from_json.py -msgid "You're my best friend!" -msgstr "君はいちばんの友達!" +msgid "\"You're my best friend!\"" +msgstr "「君はいちばんの友達!」" #: lang/json/speech_from_json.py -msgid "Heehee!" -msgstr "へへへっ!" +msgid "\"Heehee!\"" +msgstr "「へへへっ!」" #: lang/json/speech_from_json.py -msgid "Let's have fun!" -msgstr "楽しくいこう!" +msgid "\"Let's have fun!\"" +msgstr "「楽しみましょう!」" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" -msgstr "お茶会を開きましょう!" +msgid "\"Let's have a tea party!\"" +msgstr "「お茶会を開きましょう!」" #: lang/json/speech_from_json.py -msgid "You're the best!" -msgstr "君は最高だよ!" +msgid "\"You're the best!\"" +msgstr "「君は最高だよ!」" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." -msgstr "どうしてそんなことするの。" +msgid "\"You shouldn't have done that.\"" +msgstr "「どうしてそんなことするの」" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." -msgstr "遊ぼうよ...ロシアンルーレットで。" +msgid "\"Let's play… Russian roulette.\"" +msgstr "「一緒に...ロシアンルーレットで遊びましょう」" #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "だいっきらい。" +msgid "\"I hate you.\"" +msgstr "「だいっきらい」" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" -msgstr "しんじゃえ!" +msgid "\"Go kill yourself!\"" +msgstr "「死んじゃえ!」" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" -msgstr "ビッグブラザーはあなたを見ている..." +msgid "\"Big Brother is watching you…\"" +msgstr "「ビッグ・ブラザーがあなたを見守っている...」" #: lang/json/speech_from_json.py -msgid "Die for me!" -msgstr "死んじゃえ!" +msgid "\"Die for me!\"" +msgstr "「死んでよ!」" #: lang/json/speech_from_json.py -msgid "Why won't you die?" -msgstr "はやく死んで?" +msgid "\"Why won't you die?\"" +msgstr "「さっさと死んでよ?」" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." -msgstr "血...おいしいね。" +msgid "\"Blood… Delicious.\"" +msgstr "「血...おいしいね」" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" -msgstr "また会おう...地獄でな!" +msgid "\"See you… IN HELL!\"" +msgstr "「さようなら...地獄で会おうね!」" #: lang/json/speech_from_json.py msgid "AAAIEEEEEEE!" msgstr "アアァイェエエエェェェ!!!" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" -msgstr "糞ったれが!" +msgid "\"FUCK YOU!\"" +msgstr "「ファッキュー!」" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" -msgstr "お母さんに何てことするの?" +msgid "\"What did you do with my Mommy?\"" +msgstr "「わたしのママに何したの?」" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" -msgstr "一緒だよ...永遠にね!" +msgid "\"Stay with me… forever!\"" +msgstr "「一緒だよ...永遠にね!」" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "よぉ、ガキ。菓子でもやろうか?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "「やあキミ。お菓子好きかい?」" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" -msgstr "おりてきなよ、みんなこっちに浮かんでるよ!" +msgid "\"Down here, they ALL float!\"" +msgstr "「おりてきなよ、みんなこっちに浮かんでるよ!」" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" -msgstr "ハチミツを入れすぎだよ?" +msgid "\"Do you really need that much honey?\"" +msgstr "「ハチミツ入れすぎじゃない?」" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" -msgstr "前のごしゅじんさまはブタみたいに鳴きながらはらわたぶちまけてたよ!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" +msgstr "「前のごしゅじんさまは、ブタみたいに鳴きながらハラワタぶちまけてたよ!」" #: lang/json/speech_from_json.py msgid "BARK!" @@ -209025,19 +213762,15 @@ msgid "WOOF!" msgstr "グルル!" #: lang/json/speech_from_json.py -msgid "heavy breathing" -msgstr "[荒い息遣い]" - -#: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "labored breathing." msgstr "[苦しそうな息遣い]" #: lang/json/speech_from_json.py -msgid "a whimper" +msgid "a whimper." msgstr "[鼻を鳴らす音]" #: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "[耳障りな唸り声]" #: lang/json/speech_from_json.py @@ -210104,6 +214837,10 @@ msgstr "食料雑貨店" msgid "Gun Store" msgstr "銃砲店" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "車両整備工場" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "質屋" @@ -211613,6 +216350,10 @@ msgstr "建設区域へ行って建設作業をしてくれ。" msgid "Please do any mining work that you can." msgstr "掘削作業をできる限りやってくれ。" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "拭取区画の液体を拭き取ってくれ。" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "本を読んで勉強してくれ。" @@ -211667,7 +216408,7 @@ msgstr "ああ分かった。" #: lang/json/talk_topic_from_json.py msgid "What about the camp?" -msgstr "拠点って何?" +msgstr "拠点の何について?" #: lang/json/talk_topic_from_json.py msgid "I want to assign you to work at this camp." @@ -211922,7 +216663,7 @@ msgstr "いいや、まだだ。さようなら。" #: lang/json/talk_topic_from_json.py msgid "Yup! Here it is!" -msgstr "ああ!持ってきたぞ!" +msgstr "さあ、どうぞ!" #: lang/json/talk_topic_from_json.py msgid "We're here!" @@ -211950,7 +216691,7 @@ msgstr "すべて殺したよ。" #: lang/json/talk_topic_from_json.py msgid "I brought 'em." -msgstr "持ってきたぞ。" +msgstr "持ってきた。" #: lang/json/talk_topic_from_json.py msgid "I've taken care of it" @@ -212754,7 +217495,7 @@ msgstr "" "各拡張施設を作るには、中央の拠点にベッドを2つ置く段階まで改良を進める必要がある。現在、拡張施設は平野に建物を一から建てる方法でしか作れない。\n" "拡張施設での任務は、掲示板に別のタブで表示される。全体マップの拡張施設があるマスごとに分かれて表示されるので、表示を切り替えたい時はタブキーを押そう。現在作れる拡張施設は次の通りだ。\n" "-- 農場: 一面全てを耕した土地だ。自分で農作業をしてもいいし、任務として仲間に管理させてもいい。一般的な植物はここで問題なく育つ。\n" -"-- 車両整備工場: 大きな建物だ。仲間に車両解体の任務を割り当てられる。でも、車両整備工場がなくても仲間に車を解体するよう指示を出せるようになっているから、この施設はあまり役立たないかもな。\n" +"-- 車両解体場: 大きな建物だ。仲間に車両解体の任務を割り当てられる。でも、解体場がなくても仲間に車を解体するよう指示を出せるようになっているから、この施設はあまり役立たないかもな。\n" "-- 食堂: 広いキッチン、ダイニング、貯蔵庫などがある施設だ。\n" "-- 牧場: ウシ、ウマ、ニワトリなどの家畜を飼育すモジュール式の建物だ。動物は自分で用意しよう!\n" "-- 作業場: 製作に関するありとあらゆる作業をする大きな施設だ。仲間に製作任務を割り当てれば、いくつかのアイテムは手作業よりもはるかに速く製作できる。\n" @@ -219144,6 +223885,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "無事で何よりだ。" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "アイテムを取り引きしないか?" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "何を言っているのか分からない。" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "あなたはロボットか何か?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "[知性 9]エクゾディと呼ばれているんだな?エクソダス、つまり故郷を追われたってことか?" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "ここはどんな場所?" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "[感覚 6]どこか...妙な技術を使っているようだ。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "先ほど、何か質問したいと言っていたな。失礼な返答をして申し訳ない。何が聞きたかったんだ?" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "あなたがこの世界に来た話について、続きを聞かせてもらえる?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "今、すぐに、私をサイボーグにしてもらえないか?知っての通り、私はこのゲームの開発者なんだ。" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "実は、サイボーグになってみたいと思ってるんだ。" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "あなたは誰だ?ここは何なんだ?" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "麻酔キットを持ってきた。これで手伝ってくれるんだな?" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "さて、話をしに来たんだ。" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "ええと、そろそろ行くよ。さようなら。" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "前に言っていた話は何だったかな?" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "いいや。こっちは忙しいんだから、そちらが質問に答えるのが先だ。もういい、行くよ。" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "[質問に答える]" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "他にはどんな話がある?" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "もう行くよ。さようなら、ルビク。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "さっぱり分からない。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "[知性 9]つまり、死にたてホヤホヤの世界に来られて良かったってことか?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "ああ、大変動が起きたばかりの頃にやってきたってことか。どうしてそれが良いことなんだ?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "な...何が何だかさっぱりだ。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "あなたの世界の話を聞きたい。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "なるほど、分かったよ。他の話をしよう。" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "どうして肉体が金属になっているんだ?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "言いたいことは分かる気がするな。生き残るための唯一の方法は...「アップグレード」だ。力を貸してもらえないか?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "[知性 9]ある種のサイボーグってこと?すごいな。どうやったらサイボーグになれるんだ?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "何を言っているのか、さっぱり分からない。あなたはロボットのようなものだが、血肉は備えているということか?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "ちょっと混乱してきた。他にはどんな話がある?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "...え?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "[知性or感覚 9]あなたはどこから来たんだ?宇宙人ってこと?" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "一体どういうことなんだ?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "[知性 8]つまり、もう破滅するしかないってことか?生き延びる方法がないなら、何のためにここに来たんだ?" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "つまり、もう破滅するしかないってことか?生き延びる方法がないなら、何のためにここに来たんだ?" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "ちょっと待った。その金属の表皮の下には、肉や骨が残っているんじゃないのか。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "よし、やろう。" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "やっぱり気が変わった。さっき言ってた話は何だっけ?" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "やっぱり気が変わった。もう行くよ。さよなら。" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "よく考えてみたら、正体不明の地球外ロボットたちに脳の手術を任せたくはないな。" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "よし、それなら今からアイテムを取り引きしよう。" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "分かった、もう少しアイテムを揃えたら戻ってくるよ。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "どうしていつも、さっきみたいにちゃんと喋ってくれないんだ?単語はもちろん、何を言っているのか理解するのにも一苦労だってことに気付いてくれ。" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "まぁ、どうでもいいか。そんなことより、私を機械と人間が融合した忌まわしい姿にしてくれるっていうなら、さっさと始めてくれ。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "会話すればするほど、正体不明の地球外ロボットたちに脳の手術を任せたくはないと思えてきたよ。" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "分かった、分かった。それで、何の話だった?声の変化に気を取られて聞いてなかったんだ。" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "おかしいな、この会話選択肢にはたどり着けないはずなのに。バグの報告をした方がいいかもしれない。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "よし、始めよう。" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "待って。考える時間がほしい。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "私はサイボーグになったのか?あまり違和感はないな。" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "さて、そろそろ行くよ。移植手術をしてくれてありがとう。さようなら。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "私にもっとたくさんCBMを売って、もっと親しくなれば、更に色々なCBMが手に入ると思わないか?今から取り引きするのはどうだろう?" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "あなたの話を聞かせて?" @@ -219813,6 +225332,10 @@ msgstr "何か手伝えるか?" msgid "Do you need any resources?" msgstr "何か必要な物資はある?" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "巨大ホタルのテラリウムは、どこで手に入れたんだ?" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "ああ、何とかやっていこう。" @@ -219882,6 +225405,17 @@ msgstr "ウサギの飼い方を100人の人に教えれば、教わった人が msgid "That's the most hopeful thing I've heard so far." msgstr "希望が湧いてくる話だ。" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "旅人にウサギをあげたお返しとして貰ったんだ。沼地に住んでる科学者だそうだよ。場所を取るから車の中に置き辛かったんだって。" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "なかなかユニークだね!" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "君と同じく、私も賭けをしたのさ。" @@ -222378,10 +227912,6 @@ msgstr "そもそも、大学の本屋で何の仕事をしていたんだ?学 msgid "What's this I hear about you having a doctorate?" msgstr "博士号を持っていると聞いたんだけど、どうなんだ?" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "前に言っていた話は何だったかな?" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -226331,10 +231861,6 @@ msgstr "人手が必要なようだな..." msgid "What's with these 'free merchant certified notes'?" msgstr "この「マーチ」という紙は何だ?" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "ええと、そろそろ行くよ。さようなら。" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "ようこそ、執行官..." @@ -226684,6 +232210,116 @@ msgid "" msgstr "" "おいおい、本気か?分かった、マーチ10枚も支払ってくれるなら、間違いなくたくさんの人が手伝ってくれるだろうな?もしお望みなら、私も休憩時間には手伝いに行くよ。口だけでなく行動で示す者は尊敬に値するからな。" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "隊商は旅先で何か面白いものを見つけたか?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "最近会った新たな取り引き先候補のことを伝えようと思ってね。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "おや、見ない顔だ。どうぞよろしく。私はここの隊商を遠くまで運んでいるんだ。何かご用かな?" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "いくつか聞いてもいいか?" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "もう行かないと。話せて良かったよ。" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "いいとも、今は積荷も無いからな。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "いいや、すまんね。最近は面白そうなものを何も見ていない。おかしな生存者にはたまに会うが、突然の訪問者は大抵歓迎されない。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "実のところ、一つあったんだ。農場で暮らす一家に出会ってね。商人とは関わりたくないと言われてしまったが、君なら話が聞けるんじゃないか。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "ある噂を聞いた。秘密の研究所みたいな施設がこの荒野のどこかにあって、しかも生存者が住んでるらしい。自分で見たわけではないけどな。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" +"戻ってきた隊商のメンバーが、人里離れた岩山の上に建つ巨大な屑鉄の砦を見たそうだ。わざわざ中へ侵入するほど狂ってはいなかったようだがな。気になるなら、見に行ってみてはどうだ。" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "エラー: randomize_directionsの範囲外です。" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "その農場へ行くにはどうしたらいい?" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "その研究所へ行くにはどうしたらいい?" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "その砦へ行くにはどうしたらいい?" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "ああ、その話なら知ってるよ。でもありがとう。" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "待って、さっきの話は何だっけ?" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "もう行かないと。また後で。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "*はマップ上の位置を示した。「ここにある筈だ。目当てのものが見つかるといいな。幸運を祈ってるよ。」" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "教えてくれてありがとう。見に行ってみるよ。" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "新しい取り引き先ならいつでも大歓迎だ。どんな情報だ?" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "[ルビクとエクゾディのことを伝える]" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "そりゃまた、とんでもない話だ。後でそこへ行って調べてみることにしよう。いい取り引きができそうだ。" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "他の話をしようか?" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "執行官..." @@ -226983,6 +232619,15 @@ msgstr "野外では気を抜くなよ。" msgid "Is there any way I can join the 'Old Guard'?" msgstr "私も「オールドガード」に参加出来るか?" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "奇妙なロボットについて、いくつか質問がある。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "あの「ロボット」について何か知りたいことがあるなら、私が教えよう。" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "オールドガードは何を必要としている?" @@ -227084,6 +232729,61 @@ msgid "" msgstr "" "仲間に加わりたいなら募集人を通せ。まずは、ここに時々顔を出して出来る仕事が無いか私に聞いてくれ。任務を請け負って達成していけば、募集人に実力を知らしめることができるだろう。" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" +"私たちの次の段階について知りたいのだろうが、勝手に話すことはできない。実を言うと、私自身も知らされていないんだ。そういった情報は私のところまで下りてこない。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "実際にロボットの持ち主に会ってきたんだ。取り引きなどに対しても積極的なようだった。知りたかった情報だろう。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" +"なるほど、それは興味深い。私は何かできる立場ではないが、その情報を自由商人の運転手にでも伝えてみたらどうだ。そうすれば、もっと友好的な関係を築けるかもしれない。" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "いい考えだ。伝えてみるよ。" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "ふーん、なるほど。じゃあ何か他の話をしようか?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" +"おや、そうか。それなら、あの集団について知っている事を教えてもらいたい。司令部にも伝えるつもりだ。取り引きで何を渡せばいいか...ここの店の抗生物質はどうだろう?たくさん渡しても迷惑ではないと思うのだが。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "ああ、もう会ってきたんだ。取り引きなどに対しても積極的なようだった。少なくとも私に対しての敵意はないよ。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "考えておくよ。とりあえず今は、別の話をしよう。" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "気が変わった、また今度にしよう。" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -229434,7 +235134,7 @@ msgstr "もう行くよ。お気をつけて、CEO。" msgid "" "The great eaters have returned, along with the false ones. We must feed the" " eaters and destroy the pretenders child." -msgstr "捕食者が帰ってきたんだ、偽物も連れてな。本物には飯を用意して、偽物は駆除しないと。" +msgstr "捕食者が帰ってきたんだ、偽者も連れてな。本物には飯を用意して、偽者は駆除しないと。" #: lang/json/talk_topic_from_json.py msgid "Who are you talking about?" @@ -229504,7 +235204,7 @@ msgstr "" #: lang/json/talk_topic_from_json.py msgid "Our purpose? How do you know?" -msgstr "目的?どうしてそんな目的になったんだ?" +msgstr "目的って?何がきっかけでそう考えたんだ?" #: lang/json/talk_topic_from_json.py msgid "" @@ -229929,6 +235629,24 @@ msgstr "今の所は何もないな、また今度寄ってくれ。" msgid "Sure…" msgstr "そうか..." +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" +"私はヴァルザイン氏の本を管理しております。彼の次元ポケットに収められている書物は建物数階分に及びますが、すぐに取り出して読む本はこのように保管しているのです。複写したものをお売りすることもできますよ。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "本棚の整頓や、余った書物の売却ですね。貸し出しをしていた頃は、返却が遅れた者を捜しに出かけることもありました。" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "取り引きをしよう。" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "私を捕らえに来たのか?" @@ -230115,20 +235833,6 @@ msgstr "じっとしていてくれ、。まずは脱出経路を確保し msgid "Pack your bags, . We're going on a trip." msgstr "荷物をまとめてくれ、。旅立ちの時だ。" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "カウンター(サイボーグ格闘術)" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "%sの攻撃を防ぐと同時に反撃を放ちました。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "は%s攻撃を防ぐと同時に反撃を放ちました。" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "武装解除" @@ -230736,20 +236440,6 @@ msgstr "鞭を絡めて%sの武装を解除しました。" msgid " disarms %s using their whip" msgstr "は鞭を絡めて%sの武装を解除しました。" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "カウンター" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "%sにカウンター攻撃を繰り出しました。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "は%sにカウンター攻撃を繰り出しました。" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "フェイント" @@ -230785,55 +236475,45 @@ msgid " jabs deftly at %s" msgstr "は%sに巧みなジャブを繰り出しました。" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" -msgstr "ブロック武装解除" +msgid "Counter Throw (block)" +msgstr "受け止め投げ" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" -msgstr "%sの攻撃を受け止め、流れるように武装解除しました。" +msgid "You smoothly throw %s" +msgstr "巧みに%sを投げ飛ばしました。" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "は%sの攻撃を受け止め、流れるように武装解除しました。" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" -msgstr "ブロック投げ" +msgid " blocks and smoothly throws %s" +msgstr "は%sの攻撃を受け止め、流れるように投げ飛ばしました。" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" -msgstr "%sの攻撃を受け止め、流れるように投げ飛ばしました。" +msgid "Counter Throw (dodge)" +msgstr "受け流し投げ" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" -msgstr "は%sの攻撃を受け止め、流れるように投げ飛ばしました。" +msgid " dodges and smoothly throws %s" +msgstr "は%sの攻撃を避け、流れるように投げ飛ばしました。" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" -msgstr "回避投げ" +msgid "Disarming Throw (block)" +msgstr "受け止め武装解除投げ" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" -msgstr "%sの攻撃を避け、流れるように投げ飛ばしました。" +msgid "You smoothly disarm %s" +msgstr "巧みに%sの武装を解除しました" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "は%sの攻撃を避け、流れるように投げ飛ばしました。" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" -msgstr "回避武装解除" +msgid " blocks and smoothly disarms %s" +msgstr "は%sの攻撃を受け止め、流れるように武装解除しました。" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" -msgstr "%sの攻撃を避け、流れるように武装解除しました。" +msgid "Disarming Throw (dodge)" +msgstr "受け流し武装解除投げ" #: lang/json/technique_from_json.py #, python-format @@ -230916,20 +236596,6 @@ msgstr "%sが掴みかかろうとしましたが、無理やり抜け出しま msgid "The %s tries to grab , but they break free!" msgstr "は%sに掴まれそうになりましたが、無理やり抜け出しました!" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "反撃" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "%sの攻撃を受け止め、反撃に転じました。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "は%sの攻撃を受け止め、反撃に転じました。" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -231048,34 +236714,6 @@ msgstr "腕を振り上げて%sを威嚇しました。" msgid " performs the Crane Wing at %s." msgstr "は%sに向けて翼のように腕を振り上げました。" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "鶴の飛翔" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "%sが掴みかかろうとしましたが、腕を振って拘束を逃れました!" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "は%sに掴まれそうになりましたが、腕を振るって逃れました!" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "鶴の一撃" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "%sに鋭い突きを繰り出しました。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "は%sに鋭い突きを繰り出しました。" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "鶴の一蹴" @@ -231091,46 +236729,46 @@ msgid " leaps and kicks %s" msgstr "は跳躍して%sを蹴りました。" #: lang/json/technique_from_json.py -msgid "Dragon Claw" -msgstr "竜の鉤爪" +msgid "Crane Flap" +msgstr "鶴の飛翔" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" -msgstr "竜の鉤爪で%sに激しく襲い掛かりました。" +msgid "The %s tries to grab you, but you swing your arms and break free!" +msgstr "%sが掴みかかろうとしましたが、腕を振って拘束を逃れました!" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" -msgstr "は竜の鉤爪で%sに激しく襲い掛かりました。" +msgid "The %s tries to grab , but they flap free!" +msgstr "は%sに掴まれそうになりましたが、腕を振るって逃れました!" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" -msgstr "旋風の守り" +msgid "Crane Strike" +msgstr "鶴の一撃" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" -msgstr "%sの攻撃を受け止めて捻り上げました。" +msgid "You hand-peck and strike %s" +msgstr "手を鋭く尖らせて%sを突きました" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" -msgstr "は%sの攻撃を受け止めて捻り上げました。" +msgid " hand-pecks and strikes %s" +msgstr "は手を鋭く尖らせて%sを突きました" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" -msgstr "旋風の身かわし" +msgid "Dragon Claw" +msgstr "竜の鉤爪" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" -msgstr "攻撃をかわしつつ%sの身体をグラつかせました。" +msgid "You lash out at %s with a Dragon Claw" +msgstr "竜の鉤爪で%sに激しく襲い掛かりました。" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" -msgstr "は攻撃をかわしつつ%sの身体をグラつかせました。" +msgid " lashes out at %s with a Dragon Claw" +msgstr "は竜の鉤爪で%sに激しく襲い掛かりました。" #: lang/json/technique_from_json.py #, python-format @@ -231213,18 +236851,18 @@ msgid " combination strikes %s" msgstr "は%sに連携攻撃を仕掛けました。" #: lang/json/technique_from_json.py -msgid "Puño Strike" -msgstr "柄尻打ち" +msgid "Stunning Strike" +msgstr "気絶攻撃" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" -msgstr "%sの急所に柄尻を打ち込みました。" +msgid "You deliver a stunning strike to %s" +msgstr "%sに気絶攻撃をお見舞いしました" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" -msgstr "は%sの急所に柄尻を打ち込みました。" +msgid " delivers a stunning strike to %s" +msgstr "は%sに気絶攻撃をお見舞いしました" #: lang/json/technique_from_json.py msgid "Low Strike" @@ -231265,8 +236903,8 @@ msgid " lunges at %s" msgstr "は%sに突き攻撃を繰り出しました。" #: lang/json/technique_from_json.py -msgid "Compound Attack" -msgstr "複合攻撃" +msgid "Compound Attack (Remise)" +msgstr "複合攻撃(ルミーズ)" #: lang/json/technique_from_json.py #, python-format @@ -231278,6 +236916,10 @@ msgstr "%sに対するフェイントを次の攻撃へ繋げました。" msgid "'s feint leads to a compound attack against %s" msgstr "は%sに対するフェイントを次の攻撃へ繋げました。" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "複合攻撃(防御カウンター)" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "リポスト" @@ -231424,20 +237066,6 @@ msgstr "%sが掴みかかろうとしましたが、力強く振りほどきま msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "%sが掴みかかろうとしましたが、は力強く振りほどきました!" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "カウンター投げ" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "%sの攻撃を避けて叩き伏せました。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "は%sの攻撃を避けて叩き伏せました。" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "カウンター(空手)" @@ -231542,20 +237170,6 @@ msgstr "%sが掴みかかろうとしましたが、何とか抜け出しまし msgid "The %s tries to grab , but they wrestle free!" msgstr "%sが掴みかかろうとしましたが、は何とか抜け出しました!" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "カウンター" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "%sの攻撃をブロックしてカウンターを繰り出しました。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "は%sの攻撃をブロックしてカウンターを繰り出しました。" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "豹の一蹴" @@ -231656,20 +237270,6 @@ msgid "" "another strike" msgstr "は攻撃を外しましたが、洗練された所作で素早く次の攻撃に移りました" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "即応攻撃" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "%sの攻撃を受け流し、すぐさま反撃に転じました" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "は%sの攻撃を受け流し、すぐさま反撃に転じました" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "肘打ち" @@ -231993,20 +237593,6 @@ msgstr "%sに危険な蛇の一撃を仕掛けました。" msgid " lashes out at %s with a vicious Snake Strike" msgstr "は%sに危険な蛇の一撃を仕掛けました。" -#: lang/json/technique_from_json.py -msgid "Push" -msgstr "突き飛ばし" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You push %s away" -msgstr "%sを突き飛ばしました。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " pushes %s away" -msgstr "は%sを突き飛ばしました。" - #: lang/json/technique_from_json.py msgid "Shove" msgstr "押し出し" @@ -232031,6 +237617,16 @@ msgstr "%sを器用に転ばせました。" msgid " deftly trips %s" msgstr "は器用に%sを転ばせました。" +#: lang/json/technique_from_json.py +#, python-format +msgid "You fake a thrust at %s" +msgstr "%sを突き刺すふりをしました" + +#: lang/json/technique_from_json.py +#, python-format +msgid " fakes a thrust at %s" +msgstr "は%sを突き刺すふりをしました" + #: lang/json/technique_from_json.py msgid "Snatch Weapon" msgstr "武器奪取" @@ -232229,20 +237825,6 @@ msgstr "%sへの攻撃は外れましたが、上手く体勢を立て直しま msgid "'s attack misses %s but they don't let up" msgstr "の%sへの攻撃は外れましたが、上手く体勢を立て直しました。" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "防御カウンター" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "%sからの攻撃を受け止め、お返しを繰り出しました。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "は%sの攻撃を受け止め、カウンターを繰り出しました。" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "フェイント(酔拳)" @@ -232598,7 +238180,7 @@ msgstr "剣を振り上げ、%s目がけて狙いすました一撃を振り下 #: lang/json/technique_from_json.py src/melee.cpp #, c-format, python-format msgid " chops %s" -msgstr "の唐竹割りが%sに命中しました。" +msgstr "の唐竹割りが%sに命中しました" #. ~ Description for HOOK #: lang/json/technique_from_json.py @@ -233005,20 +238587,6 @@ msgstr "周囲を巻き込みながら%sをスパッと刈り取りました。" msgid " cleanly reap throug %s and those nearby" msgstr "は周囲を巻き込みながら%sをスパッと刈り取りました。" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "弧影襲" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "%sの攻撃に合わせてカウンターを繰り出しました。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "は%sの攻撃に合わせてカウンターを繰り出しました。" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "空舞車輪落" @@ -233117,20 +238685,6 @@ msgstr "%sにローキックを繰り出しました。" msgid " uses Low Sweep on %s" msgstr "は%sにローキックを繰り出しました。" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "愚弄攻撃" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "%sの攻撃を愚弄し、反撃を繰り出しました。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "は%sの攻撃を愚弄し、反撃を繰り出しました。" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "九頭竜殺し" @@ -233173,20 +238727,6 @@ msgstr "%sを振り回し、投げ飛ばしました。" msgid " spins and hurls %s away with a Ballista Throw" msgstr "は%sを振り回し、投げ飛ばしました。" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "伏流の反撃" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "%sの攻撃を逸らし、流れるような反撃を繰り出しました。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "は%sの攻撃を逸らし、流れるような反撃を繰り出しました。" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "武装弾き" @@ -235454,6 +240994,19 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "比較的若い、種類不明の木です。大きくなるには何十年もかかるでしょうから、成長を待つのは無意味です。" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "巨大シダ" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" +"今までに見たことがない巨大なサイズのシダ植物です。葉は鮮やかな緋色で、緑色の葉脈が網目のように張り巡らされています。多角形の幹は頑丈で、まるでバルサ材のようです。" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "リンゴの木" @@ -237558,7 +243111,7 @@ msgstr "金属製のバックボードです。" #. ~ Description for this should never actually show up, it's a pseudo terrain #: lang/json/terrain_from_json.py msgid "this should never actually show up, it's a pseudo terrain" -msgstr "実際に表示されない疑似的な地形です。" +msgstr "非表示の疑似地形" #. ~ Description for this should never actually show up, it's a pseudo terrain #: lang/json/terrain_from_json.py @@ -238923,24 +244476,24 @@ msgid "" msgstr "石壁の高い位置には、息をのむような職人技によって、魅惑的な紺碧の海が描かれています。" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "鉄格子付きの窓" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "窓には金属柵が格子状に嵌っています。耐久性が高く、敵の侵入を防ぎます。" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "閉じたカーテン付きの窓には金属柵が格子状に嵌っています。耐久性が高く、敵の侵入を防ぎます。" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -238948,32 +244501,32 @@ msgid "" msgstr "開いたカーテン付きの窓には金属柵が格子状に嵌っています。耐久性が高く、敵の侵入を防ぎます。" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "一重窓" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "窓枠には大きなガラス板が嵌っています。" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "開いた一重窓" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "カーテン付きの一重窓" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "ガラス張りの窓の内側には洒落たカーテンが閉まっており、視界や日光を遮っています。" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -238981,35 +244534,30 @@ msgid "" msgstr "ガラス張りの窓の内側には、視界や日光を遮るための洒落たカーテンが付いています。" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "強化一重窓" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "窓枠には大きな強化ガラス板が嵌っています。" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "開いた強化一重窓" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" -msgstr "カーテン付きの強化一重窓" +msgid "reinforced single glazed glass window with a curtain" +msgstr "開いたカーテン付きの一重窓" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "窓の内側には洒落たカーテンが付いていおり、閉じて視界や日光を遮ることができます。" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "開いたカーテン付きの一重窓" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -239017,33 +244565,33 @@ msgid "" msgstr "強化ガラス張りの窓の内側には、視界や日光を遮るための洒落たカーテンが付いています。" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "二重窓" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "窓枠には2枚の大きなガラス板が嵌っています。" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "開いた二重窓" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "カーテン付きの二重窓" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "ガラス張りの二重窓の内側には洒落たカーテンが閉まっており、視界や日光を遮っています。" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -239051,10 +244599,10 @@ msgid "" msgstr "二重窓の内側には、視界や日光を遮るための洒落たカーテンが付いています。" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "強化二重窓" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -239062,10 +244610,10 @@ msgid "" msgstr "窓枠には2枚のガラス板が嵌っています。外側のガラス板は強化ガラスになっており、防犯性能が向上しています。" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "開いた強化二重窓" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -239073,40 +244621,38 @@ msgid "" msgstr "窓枠には大きなガラス板と強化ガラス板が嵌っています。" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "カーテン付きの強化二重窓" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "三重窓" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "窓枠には3枚の大きなガラス板が嵌っています。" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "窓枠には3枚の大きなガラス板が嵌っています。" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "カーテン付きの三重窓" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "ガラス張りの三重窓の内側には洒落たカーテンが閉まっており、視界や日光を遮っています。" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -239114,21 +244660,17 @@ msgid "" msgstr "三重窓の内側には、視界や日光を遮るための洒落たカーテンが付いています。" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "カーテン付きの三重窓" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "強化三重窓" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "窓枠には3枚の大きなガラス板が嵌っており、外側の1枚は強化ガラス窓になっています。" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -239136,44 +244678,35 @@ msgid "" msgstr "窓枠には3枚の大きなガラス板が嵌っており、外側の1枚は強化ガラス窓になっています。" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "カーテン付きの強化三重窓" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" -msgstr "カーテン付きの強化三重窓" - -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "カーテン付きの強化三重窓" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" +msgid "quadruple glazed glass window" msgstr "四重窓" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "窓枠には4枚の大きなガラス板が嵌っています。" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "開け放たれた四重窓です。" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "カーテン付きの四重窓" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "ガラス張りの四重窓の内側には洒落たカーテンが閉まっており、視界や日光を遮っています。" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -239181,14 +244714,10 @@ msgid "" msgstr "四重窓の内側には、視界や日光を遮るための洒落たカーテンが付いています。" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "カーテン付きの四重窓" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "強化四重窓" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -239206,12 +244735,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "強化四重ガラス窓の内側には洒落たカーテンが閉まっており、視界や日光を遮っています。" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "カーテン付きの強化四重窓" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -239219,21 +244743,17 @@ msgid "" msgstr "強化四重窓の内側には、視界や日光を遮るための洒落たカーテンが付いています。" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "カーテン付きの強化四重窓" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "プラスチック窓" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "木製の窓枠には、半透明の硬質プラスチック板で作られた即席の窓が嵌っています。非常時の窓はこれで十分です。" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -239241,10 +244761,10 @@ msgid "" msgstr "木製の窓枠には、半透明の硬質プラスチック板で作られた即席の窓が嵌っています。非常時の窓はこれで十分です。窓は開け放たれています。" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "カーテン付きのプラスチック窓" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -239253,7 +244773,7 @@ msgid "" msgstr "" "カーテンが付いた簡素な窓です。木製の窓枠に半透明の硬質プラスチック板が嵌っています。カーテンは閉まっており、光を遮っています。非常時の窓はこれで十分です。" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -239263,10 +244783,10 @@ msgstr "" "カーテンが付いた簡素な窓です。木製の窓枠に半透明の硬質プラスチック板が嵌っています。必要に応じてカーテンを閉めれば光が遮られます。非常時の窓はこれで十分です。" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "カーテンを開いたプラスチック窓" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -239276,21 +244796,17 @@ msgstr "" "カーテンが開かれた簡素な窓です。木製の窓枠に半透明の硬質プラスチック板が嵌っており、必要に応じてカーテンを閉めれば光が遮られます。非常時の窓はこれで十分です。" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "強化プラスチック窓" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "木製の窓枠には、半透明の硬質プラスチック板で作られた即席の窓が3枚嵌っています。非常時の窓はこれで十分です。" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "強化プラスチック窓" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -239298,10 +244814,10 @@ msgid "" msgstr "木製の窓枠には、半透明の硬質プラスチック板で作られた即席の窓が3枚嵌っています。非常時の窓はこれで十分です。窓は開け放たれています。" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "カーテン付きの強化プラスチック窓" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -239311,10 +244827,10 @@ msgstr "" "カーテンが付いた簡素な窓です。木製の窓枠に半透明の硬質プラスチック板が3枚嵌っており、カーテンによって光も遮られています。非常時の窓はこれで十分です。" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "カーテンを開いた強化プラスチック窓" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -239323,7 +244839,7 @@ msgid "" msgstr "" "カーテンが付いた簡素な窓です。木製の窓枠に半透明の硬質プラスチック板が3枚嵌っています。必要に応じてカーテンを閉めれば光が遮られます。非常時の窓はこれで十分です。" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -239333,26 +244849,26 @@ msgstr "" "カーテンが開かれた簡素な窓です。木製の窓枠に半透明の硬質プラスチック板が3枚嵌っています。必要に応じてカーテンを閉めれば光が遮られます。非常時の窓はこれで十分です。" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "天窓枠" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "天窓用の木製フレームです。" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "安全ガラス窓" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "窓枠には大きな安全ガラス板が嵌っています。" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "開いた安全ガラス窓" #: lang/json/terrain_from_json.py @@ -239366,11 +244882,7 @@ msgid "" " visibility and shut out any light." msgstr "安全ガラス窓の内側には洒落たカーテンが付いており、閉めれば視界や日光が遮られます。" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "カーテン付きの安全ガラス窓" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -240466,7 +245978,7 @@ msgstr "こじ開け" #: lang/json/tool_quality_from_json.py msgid "nail prying" -msgstr "" +msgstr "釘抜き" #: lang/json/tool_quality_from_json.py msgid "punch" @@ -241888,18 +247400,125 @@ msgid "" msgstr "" "最新の燃焼機関です。車両のタンクに入ったガソリンやディーゼル燃料、航空燃料を燃焼させて稼働します。ランプオイルも多少効率は下がりますが燃料として利用できます。重い車両でも従来のエンジンより高い出力を発揮できますが、燃料の消費量は増加しています。" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "直列6気筒のディーゼルエンジンです。V6エンジンよりやや強力で、一般的にはロードローラーやショベルカーなどに搭載されます。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "バス、キャンピングカー、大型バン、装甲兵員輸送車などに搭載されている、強力な6気筒ディーゼルエンジンです。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "貨物トラックや装甲車、高軌道多用途装輪車などに適した、大型8気筒ディーゼルエンジンです。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "スクーターや原動機付き自転車に搭載される、出力10馬力程度の小型単気筒ガソリンエンジンです。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "モトクロッサーやダートバイクに搭載されている、出力55馬力程度の大型単気筒ガソリンエンジンです。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "小型の芝刈り機に適している、出力数馬力程度の小型単気筒ガソリンエンジンです。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "一般的には小型乗用車や小型トラックに搭載されている、4気筒ガソリンエンジンです。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "スポーツカーに相応しいパワーを備えた、巨大な12気筒ガソリンエンジンです。" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "大型トラックに搭載されることが多い、巨大な12気筒ディーゼルエンジンです。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "軽トラックやSUV、フルサイズバンに適した、強力な6気筒ガソリンエンジンです。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "消防車や救急車、レッカー車などに搭載されている、大型8気筒ガソリンエンジンです。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "オートバイや四輪バイクに適した、2気筒ガソリンエンジンです。" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "外燃機関の一種である、密閉サイクルで動作する蒸気機関です。車両の燃料箱に入った石炭や木炭を燃料にして蒸気を発生させます。" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "1人または2人乗りの小型ヘリコプターに適した、強力な小型ガスタービンエンジンです。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "ドクターヘリやアパッチ、ブラックホークなどのヘリコプターに搭載されている、大型ガスタービンエンジンです。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "V-22オスプレイなどの大型軍用ヘリに搭載されている、巨大なガスタービンエンジンです。" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "ドアです。窓があるため、閉じていても視界を遮りません。" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "垂れ幕" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "閉じた状態で扉のように部屋を区切れる、布製のシートです。" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "カーテンドア" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "閉じた状態で扉のように部屋を区切れる、布製のカーテンです。" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "不透明ドア" @@ -242277,6 +247896,57 @@ msgstr "車両の内部に取り付けた小型のミラーです。鏡に映る msgid "An electric motor." msgstr "電気モーターです。" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "一般的な自動車には小さすぎますが、自転車サイズの車両にはちょうどいい電気モーターです。" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "電動自転車やスクーターサイズの車両であれば十分ですが、あまり重い車両には向かない電気モーターです。" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "超軽量車両やガソリンと電気のハイブリッド駆動自動車に適した、中型の電気モーターです。" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "バッテリーの容量があれば大型車やSUVも電気駆動で走行が可能になる、大型の電気モーターです。" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "物好きな変人しか乗らない電動スポーツカーなどに搭載されている、強力で高性能な電気モーターです。駆動するには大容量のバッテリーが必要です。" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "電気駆動のレーシングカーなどに適した、巨大で非常にパワフルな電気モーターです。電力消費は激しいですが、高いトルクを発揮します。" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "電車を牽引できるほど強力な、巨大で重い牽引電動機です。" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -242763,6 +248433,15 @@ msgstr "通路です。" msgid "wooden aisle" msgstr "通路(木)" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "組立式通路" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "組み立て式の通路です。" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -242897,6 +248576,10 @@ msgstr "折り畳み式ボックス(木)" msgid "wood table" msgstr "テーブル(木)" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "組立式テーブル" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "船体(木)" @@ -242965,6 +248648,10 @@ msgstr "照明と制御装置が内蔵されたフレームです。" msgid "vehicle-mounted heater" msgstr "車載ヒーター" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "車載小型ヒーター" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "車載クーラー" @@ -243074,6 +248761,12 @@ msgid "" "vehicle." msgstr "安定感のある支柱が付いた大型の風力タービンです。車両の空気抵抗が増加します。" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "太陽電池パネルが付いた、折り畳めるデザインのソーラーアレイです。" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -243100,7 +248793,7 @@ msgstr "蛇口です。" #: lang/json/vehicle_part_from_json.py msgid "wooden armor" -msgstr "装甲(木)" +msgstr "装甲板(木)" #. ~ Description for spiked plating #: lang/json/vehicle_part_from_json.py @@ -244276,8 +249969,8 @@ msgstr "倦怠" msgid "Fatig" msgstr "倦怠" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "疲労" @@ -245087,7 +250780,7 @@ msgstr "%sが所持品に収まりません" #: src/activity_actor.cpp src/pickup.cpp #, c-format msgid "Dispose of %s and wield %s" -msgstr "装備中の%sを外して%sを構える" +msgstr "装備中の%sを外して%sを装備する" #: src/activity_actor.cpp src/pickup.cpp #, c-format @@ -245198,7 +250891,7 @@ msgstr "%sと触れ合って少し心が癒されました。" #: src/activity_actor.cpp #, c-format msgid "You can't use your %1$s to pry up the nails." -msgstr "" +msgstr "%1$sを使って釘を抜けません。" #: src/activity_actor.cpp msgid "You open up your kit and shave." @@ -245294,7 +250987,7 @@ msgstr "部位解体を行う前に内臓を摘出する必要があります。 #: src/activity_handlers.cpp msgid "Would you dare desecrate the mortal remains of a fellow human being?" -msgstr "本当に仲間の遺体を冒涜しますか?" +msgstr "本当に人間の遺体を冒涜しますか?" #: src/activity_handlers.cpp msgid "You clench your teeth at the prospect of this gruesome job." @@ -245312,7 +251005,7 @@ msgstr "陰惨な光景を忘れようとしましたが、しばらくは頭か #: src/activity_handlers.cpp msgid "It needs a coffin, not a knife." -msgstr "必要なのはナイフじゃない、墓だ。" +msgstr "必要なのはナイフではなく墓です。" #: src/activity_handlers.cpp msgid "You salvage what you can from the corpse, but it is badly damaged." @@ -246988,7 +252681,19 @@ msgstr "性能" #: src/armor_layers.cpp src/item.cpp msgid "Coverage:" -msgstr "被覆率: " +msgstr "被覆: " + +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "被覆(近接):" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "被覆(遠距離):" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "被覆(会心):" #: src/armor_layers.cpp msgid "Encumbrance:" @@ -247081,10 +252786,12 @@ msgstr "着用品を並べ替える" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" -"[%s] を押してヘルプ表示。[%s] を押してキー割当。" +"[%s] グラフィック非表示、 [%s] 左右変更、 " +"[%s] ヘルプ、 [%s] キー割当。" #: src/armor_layers.cpp msgid "(Innermost)" @@ -247095,6 +252802,12 @@ msgstr "(下着)" msgid "Storage (%s)" msgstr "収納容積(%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "隠" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(上着)" @@ -248153,7 +253866,7 @@ msgstr "投擲するアイテムを選択" #: src/avatar_action.cpp msgid "You don't have any items to throw." -msgstr "投擲できるアイテムを何も持っていません。" +msgstr "投擲できるアイテムを所持していません。" #: src/avatar_action.cpp src/character_attire.cpp msgid "You don't have that item." @@ -248338,11 +254051,11 @@ msgstr "拠点名" #: src/basecamp.cpp src/faction_camp.cpp msgid "Base Missions" -msgstr "拠点任務" +msgstr "拠点ミッション" #: src/basecamp.cpp msgid "Expansion" -msgstr "拡張" +msgstr "ミッション" #: src/basecamp.cpp msgid "Empty Expansion" @@ -248786,11 +254499,11 @@ msgstr "%sは手術中にドジを踏みました。" #: src/bionics.cpp msgid "You don't have enough anesthetic to perform the installation." -msgstr "移植手術をするための麻酔が足りません。" +msgstr "移植手術をするための麻酔を所持していません。" #: src/bionics.cpp msgid "You don't have the required components to perform the installation." -msgstr "移植手術を行うために必要な素材がありません。" +msgstr "移植手術を行うために必要な素材を所持していません。" #: src/bionics.cpp #, c-format @@ -250578,7 +256291,7 @@ msgstr "装填物を抜き取るアイテムを選択" #: src/character.cpp #, c-format msgid "You can't unload a %s!" -msgstr "%sから弾薬は抜けません!" +msgstr "%sからは抜き取れません!" #: src/character.cpp #, c-format @@ -250866,7 +256579,7 @@ msgstr "所持している弾薬を装填できるアイテムがありません #: src/character_ammo.cpp #, c-format msgid "You don't have any %s to reload your %s!" -msgstr "%sを持っていないので%sに補充できません!" +msgstr "%sを所持していないので%sに補充できません!" #. ~ %s is armor name #: src/character_armor.cpp @@ -250894,7 +256607,7 @@ msgstr "の%sは完全に破壊されました!" #: src/character_armor.cpp #, c-format msgid "Your %1$s is %2$s further!" -msgstr "%2$s%1$sが更に傷付きました!" +msgstr "%1$sがさらに%2$s!" #: src/character_armor.cpp #, c-format @@ -250965,7 +256678,7 @@ msgstr "%sの出血は止血帯が必要なほど酷くはありません。" #: src/character_attire.cpp msgid "You don't have enough arms to wear that." -msgstr "腕の着用物が邪魔で着用できません。" +msgstr "腕の着用アイテムが邪魔で着用できません。" #: src/character_attire.cpp #, c-format @@ -251305,11 +257018,6 @@ msgstr "このアイテムを使っても効果は期待できません。" msgid "No limb would benefit from it." msgstr "このアイテムが役に立ちそうな部位がありません。" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "取消" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "立ち上がろうともがきました。" @@ -251621,6 +257329,14 @@ msgstr "作業: 掘削" msgid "Designate an area to mine." msgstr "掘削する区域を指定します。" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "作業: 拭取" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "こぼれている液体を拭き取る区域を指定します。" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "作業: 車両解体" @@ -253365,7 +259081,7 @@ msgstr "%sのレシピを覚えました!" #: src/crafting.cpp msgid "You don't have the required components to continue crafting!" -msgstr "製作を続けるのに必要なものがありません!" +msgstr "製作を続けるのに必要な素材を所持していません!" #: src/crafting.cpp msgid "Consume the missing components and continue crafting?" @@ -253385,11 +259101,11 @@ msgstr "製作を中断しました。" #: src/crafting.cpp msgid "You don't have the necessary tools to continue crafting!" -msgstr "製作を続けるのに必要な道具がありません!" +msgstr "製作を続けるのに必要な道具を所持していません!" #: src/crafting.cpp msgid "Use which selection of components?" -msgstr "使う材料を選択" +msgstr "消費する材料を選択" #: src/crafting.cpp #, c-format @@ -253422,7 +259138,7 @@ msgstr " (調理)" #: src/crafting.cpp msgid "Use which component?" -msgstr "使う材料を選択" +msgstr "消費する材料を選択" #: src/crafting.cpp #, c-format @@ -253848,10 +259564,6 @@ msgstr "製作時の必要スキル" msgid "any skill used to craft" msgstr "レシピの自力習得条件スキル" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "料理" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "製作に必要な性能" @@ -253881,7 +259593,7 @@ msgid "" "Examples:\n" msgstr "" "検索したい文字を入力すると、製作アイテムの中から検索します。1文字の接頭辞とコロン:を付けてから入力すると、様々な条件を指定して検索できます。複数のフィルタを追加したい場合はコンマ,で区切ります。\n" -"難易度による絞り込みは範囲を指定できます。I:5~10と入力すると難易度5~10の全てのレシピを検索できます。\n" +"難易度による絞り込みは範囲を指定できます。l:5~10と入力すると難易度5~10の全てのレシピを検索できます。\n" "\n" "\n" "例:\n" @@ -254291,7 +260003,7 @@ msgstr "編集 - 自動移動ルート" #: src/debug_menu.cpp msgid "Control NPC follower" -msgstr "編集 - 仲間NPC" +msgstr "編集 - 仲間NPC操作" #: src/debug_menu.cpp msgid "Change spells" @@ -254405,6 +260117,14 @@ msgstr "出力 - NPC呪文情報" msgid "Test weather" msgstr "テスト - 天候" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "出力 - global effect_on_condition(s)リスト" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "出力 - global vars(s)リスト" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "テスト - 特殊地形一覧" @@ -254835,6 +260555,11 @@ msgstr "口渇: %d %s" msgid "Fatigue: %d %s" msgstr "倦怠: %d %s" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "疲労: %d %s" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "蓄積kCal: " @@ -254923,6 +260648,11 @@ msgstr "倦怠の値を設定 現在: %d" msgid "Set sleep deprivation to? Currently: %d" msgstr "眠気の値を設定 現在: %d" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "疲労の値をリセット 現在: %d" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -255682,7 +261412,7 @@ msgstr "自分に与えるダメージを入力(部位: %s)" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "出血レベルに等しい出血時間を設定(単位:分): " -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "このバイナリはタイルに対応していません。" @@ -255704,15 +261434,6 @@ msgid "" "items and vehicles!" msgstr "セーブせずに終了しますか?アイテムの重複や車両の消失などを引き起こす可能性があります!" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "スクリーンショットを次の場所に保存しました: %s" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "スクリーンショットの保存中にエラーが発生しました。" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "debug.logにレポートを出力しました。" @@ -256234,7 +261955,7 @@ msgstr "地形のidを'%s' (%s)から'%s' (%s)に変更しました" #: src/editmap.cpp msgid "Your mechanic could not find a vehicle at the garage." -msgstr "整備士は車両整備工場内で車両を発見できませんでした。" +msgstr "整備士は解体場内で車両を発見できませんでした。" #: src/editmap.cpp msgid "Select the Vehicle" @@ -257038,11 +262759,11 @@ msgstr "拠点拡張のために働いています!\n" #: src/faction_camp.cpp msgid "Recover Ally from Upgrading" -msgstr "仲間を改良作業から呼び戻す" +msgstr "呼び戻す 拠点の改良" #: src/faction_camp.cpp msgid "Emergency Recall" -msgstr "緊急帰還" +msgstr "作業の指示 緊急帰還" #: src/faction_camp.cpp msgid "Lost in the ether!\n" @@ -257070,7 +262791,7 @@ msgstr "移動中で手が離せません!\n" #: src/faction_camp.cpp msgid "Recall ally from traveling" -msgstr "仲間を移動から呼び戻す" +msgstr "呼び戻す 移動" #: src/faction_camp.cpp msgid "Gather Materials" @@ -257082,7 +262803,7 @@ msgstr "拠点改良のための資材を探しています。\n" #: src/faction_camp.cpp msgid "Recover Ally from Gathering" -msgstr "仲間を資材の収集から呼び戻す" +msgstr "呼び戻す 資材の収集" #: src/faction_camp.cpp msgid "Collect Firewood" @@ -257094,7 +262815,7 @@ msgstr "焚き木を探しています。\n" #: src/faction_camp.cpp msgid "Recover Firewood Gatherers" -msgstr "焚き木の収集から呼び戻す" +msgstr "呼び戻す 焚き木の収集" #: src/faction_camp.cpp msgid "Menial Labor" @@ -257106,7 +262827,7 @@ msgstr "単純作業をこなしています...\n" #: src/faction_camp.cpp msgid "Recover Menial Laborer" -msgstr "単純作業から呼び戻す" +msgstr "呼び戻す 単純作業" #: src/faction_camp.cpp msgid "Expand Base" @@ -257118,7 +262839,7 @@ msgstr "拡張に向けた調査をしています...\n" #: src/faction_camp.cpp msgid "Recover Surveyor" -msgstr "調査から呼び戻す" +msgstr "呼び戻す 調査" #: src/faction_camp.cpp msgid "Cut Logs" @@ -257130,7 +262851,7 @@ msgstr "森の中で丸太を切っています...\n" #: src/faction_camp.cpp msgid "Recover Log Cutter" -msgstr "丸太の切り出しから呼び戻す" +msgstr "呼び戻す 丸太の切り出し" #: src/faction_camp.cpp msgid "Clear a forest" @@ -257142,7 +262863,7 @@ msgstr "森林を開墾しています...\n" #: src/faction_camp.cpp msgid "Recover Clearcutter" -msgstr "森林の開墾から呼び戻す" +msgstr "呼び戻す 森林の開墾" #: src/faction_camp.cpp msgid "Setup Hide Site" @@ -257154,7 +262875,7 @@ msgstr "簡易シェルターを設置しています...\n" #: src/faction_camp.cpp msgid "Recover Hide Setup" -msgstr "簡易シェルターの設置から呼び戻す" +msgstr "呼び戻す 簡易シェルターの設置" #: src/faction_camp.cpp msgid "Relay Hide Site" @@ -257166,7 +262887,7 @@ msgstr "簡易シェルターに物資を移送しています...\n" #: src/faction_camp.cpp msgid "Recover Hide Relay" -msgstr "簡易シェルターへの物資の移送から呼び戻す" +msgstr "呼び戻す 簡易シェルターへの物資の移送" #: src/faction_camp.cpp msgid "Forage for plants" @@ -257174,11 +262895,11 @@ msgstr "食用植物の採集" #: src/faction_camp.cpp msgid "Foraging for edible plants.\n" -msgstr "食用植物を採集しています\n" +msgstr "食べられる植物を採集しています\n" #: src/faction_camp.cpp msgid "Recover Foragers" -msgstr "仲間を採集から呼び戻す" +msgstr "呼び戻す 採集" #: src/faction_camp.cpp msgid "Trap Small Game" @@ -257190,7 +262911,7 @@ msgstr "小動物の罠猟をしています。\n" #: src/faction_camp.cpp msgid "Recover Trappers" -msgstr "仲間を罠猟から呼び戻す" +msgstr "呼び戻す 罠猟" #: src/faction_camp.cpp msgid "Hunt Large Animals" @@ -257202,7 +262923,7 @@ msgstr "大型動物の狩猟をしています。\n" #: src/faction_camp.cpp msgid "Recover Hunter" -msgstr "仲間を狩猟から呼び戻す" +msgstr "呼び戻す 狩猟" #: src/faction_camp.cpp msgid "Construct Map Fortifications" @@ -257214,11 +262935,11 @@ msgstr "要塞を建設しています...\n" #: src/faction_camp.cpp msgid "Finish Map Fortifications" -msgstr "要塞の建設から呼び戻す" +msgstr "呼び戻す 要塞の建設" #: src/faction_camp.cpp msgid "Recruit Companions" -msgstr "仲間を募る" +msgstr "仲間の勧誘" #: src/faction_camp.cpp msgid "Searching for recruits.\n" @@ -257226,11 +262947,11 @@ msgstr "新たな仲間を探しています。\n" #: src/faction_camp.cpp msgid "Recover Recruiter" -msgstr "仲間探しから呼び戻す" +msgstr "呼び戻す 仲間の勧誘" #: src/faction_camp.cpp msgid "Scout Mission" -msgstr "偵察任務" +msgstr "偵察" #: src/faction_camp.cpp msgid "Scouting the region.\n" @@ -257238,11 +262959,11 @@ msgstr "周囲を偵察しています。\n" #: src/faction_camp.cpp msgid "Recover Scout" -msgstr "偵察から呼び戻す" +msgstr "呼び戻す 偵察" #: src/faction_camp.cpp msgid "Combat Patrol" -msgstr "戦闘派遣" +msgstr "武装巡回" #: src/faction_camp.cpp msgid "Patrolling the region.\n" @@ -257250,11 +262971,11 @@ msgstr "周辺地域を巡回しています。\n" #: src/faction_camp.cpp msgid "Recover Combat Patrol" -msgstr "戦闘派遣から呼び戻す" +msgstr "呼び戻す 武装巡回" #: src/faction_camp.cpp msgid " Expansion Upgrade" -msgstr "拡張施設の改良" +msgstr "施設の改良" #: src/faction_camp.cpp msgid "Working to upgrade your expansions!\n" @@ -257262,7 +262983,7 @@ msgstr "拠点改良のために働いています!\n" #: src/faction_camp.cpp msgid "Recover Ally" -msgstr "仲間を呼び戻す" +msgstr "作業の指示 仲間を呼び戻す" #: src/faction_camp.cpp msgid " Chop Shop" @@ -257399,7 +263120,7 @@ msgstr "%sは拠点を放棄しました。" #: src/faction_camp.cpp msgid " Expansion" -msgstr "拡張" +msgstr "施設の改良" #: src/faction_camp.cpp msgid "Recover Ally, " @@ -257631,7 +263352,7 @@ msgid "" "Positions: %d/3\n" msgstr "" "メモ:\n" -"仲間を派遣して、食用植物を集めてきてもらいます。\n" +"仲間を派遣して、食べられる植物を集めてきてもらいます。\n" " \n" "適用スキル: サバイバル\n" "難易度: なし \n" @@ -257783,7 +263504,7 @@ msgstr "" "適用スキル: 機械整備\n" "難易度: 2 \n" "効果:\n" -"> 取り外した部品は車両修理工場内の家具の上に置かれます。\n" +"> 取り外した部品はガレージ内の家具の上に置かれます。\n" "> スキルの高さによって回収できるアイテムは大きく異なります。\n" " \n" "危険: なし\n" @@ -257918,7 +263639,7 @@ msgstr "" " \n" "使用スキル: 製作\n" "効果:\n" -"> 拡張地点に建設する施設を選びましょう。食料は仲間の任務に不可欠なことや建設に必要な資材が少ないことを考えると、農場を選ぶのが賢明です。車両修理工場は最小限の投資で大型車両を迅速に解体できる点が便利であり、鍛冶場では木炭生産用の資源が提供されます。\n" +"> 拡張地点に建設する施設を選びましょう。食料は仲間の任務に不可欠なことや建設に必要な資材が少ないことを考えると、農場を選ぶのが賢明です。車両解体場は最小限の投資で大型車両を迅速に解体できる点が便利であり、鍛冶場では木炭生産用の資源が提供されます。\n" "\n" "メモ: 拡張した施設での行動や任務は、拠点管理ウィンドウの各タブから選択できます。\n" "\n" @@ -257944,9 +263665,9 @@ msgid "" "or %d day's rations" msgstr "" "メモ:\n" -"仲間が食べる食料を備蓄します。備蓄したい食料は「拠点: 備蓄食料」区域に置きましょう。「拠点: 備蓄食料」区域、「拠点: 道具」区域が設定されていない場合、区域管理メニューでそれらを設定するよう警告が表示されます。\n" +"仲間が食べる食料を備蓄します。備蓄したい食料をあらかじめ「拠点: 備蓄食料」区域に置いておきましょう。「拠点: 備蓄食料」区域、「拠点: 道具」区域が設定されていない場合、区域管理メニューでそれらを設定するよう警告が表示されます。\n" "効果:\n" -"> >派閥の食料ステータスが増加します。任務に就いた仲間が配給食料を消費します。\n" +"> >派閥の食料ステータスが増加します。作業を割り当てられた仲間が配給食料を消費します。\n" " \n" "満喫-6以上の食料が必要です\n" "生鮮食料は、改良の進行と腐敗までの時間によってカロリー減少のペナルティが課されます:\n" @@ -257959,7 +263680,7 @@ msgstr "" #: src/faction_camp.cpp msgid "Distribute Food" -msgstr "食料の備蓄" +msgstr "拠点の管理 食料の備蓄" #: src/faction_camp.cpp msgid "" @@ -257973,17 +263694,17 @@ msgid "" "Time: Ongoing" msgstr "" "メモ:\n" -"配置済みのNPCに仕事を繰り返すよう指示します。\n" +"割り当て済みのNPCに現在の仕事を繰り返すよう指示します。\n" "難易度: なし\n" "効果:\n" "\n" "\n" "危険度: なし\n" -"時間: 進行中" +"時間: 継続的" #: src/faction_camp.cpp msgid "Assign Jobs" -msgstr "作業継続" +msgstr "作業の指示 今の作業を継続" #: src/faction_camp.cpp msgid "" @@ -257995,7 +263716,7 @@ msgstr "" #: src/faction_camp.cpp msgid "Assign Workers" -msgstr "作業者割当" +msgstr "拠点の管理 作業者の任命" #: src/faction_camp.cpp msgid "" @@ -258007,7 +263728,7 @@ msgstr "" #: src/faction_camp.cpp msgid "Abandon Camp" -msgstr "拠点放棄" +msgstr "拠点の管理 拠点を放棄する" #: src/faction_camp.cpp msgid "" @@ -258512,7 +264233,7 @@ msgstr "%sには拠点を拡張できません。" #: src/faction_camp.cpp msgid "Select an expansion:" -msgstr "拡張施設を選択: " +msgstr "拡張した土地に作る施設を選択: " #: src/faction_camp.cpp #, c-format @@ -259342,6 +265063,10 @@ msgstr "取引" msgid "You swap places with %s." msgstr "%sと入れ替わりました。" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "ものを掴んだ状態では位置を入れ替えられません。" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -259626,6 +265351,15 @@ msgstr "そこに移動できません。" msgid "Nickname:" msgstr "愛称:" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "スクリーンショットを次の場所に保存しました: %s" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "スクリーンショットの保存中にエラーが発生しました。" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "アイテム" @@ -260569,7 +266303,7 @@ msgstr "平均動作制限" #: src/game_inventory.cpp msgid "AVG COVERAGE" -msgstr "平均被覆率" +msgstr "平均被覆" #: src/game_inventory.cpp msgid "WARMTH" @@ -261949,10 +267683,6 @@ msgstr "騎乗中は眠れません。" msgid "Are you sure you want to sleep?" msgstr "ここで眠りますか?" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "はい。" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "はい、眠る前にゲームを保存します。" @@ -262093,6 +267823,14 @@ msgstr "指定した区域内をすべて掘削します。道具は自動で取 msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "指定した区域内のアイテムを分解します。道具は自動で取得します。" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "液体を拭き取る" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "指定した区域内にこぼれている液体を拭き取ります。" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -262452,10 +268190,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "%sをどうしますか?" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "CBMに充電する" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "摂取する" @@ -262740,7 +268474,7 @@ msgstr "読めません!" #: src/iexamine.cpp msgid "You don't have a hacking tool with enough charges!" -msgstr "ハッキングツールの充電が足りません!" +msgstr "充電されたハッキングツールを所持していません!" #: src/iexamine.cpp msgid "Swipe your ID card?" @@ -262987,18 +268721,6 @@ msgstr "%1$sを%2$sでピッキングしようとしています..." msgid "This bulletin board is not inside a camp" msgstr "この掲示板は拠点内にありません" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" -"この壁は完全な垂直になっています。\n" -"壁には妙な形に歪んだ穴が開いており、かなり\n" -"奥まで続いているようです。\n" -"穴は人間のような形をしていますが、手足の部\n" -"分が長く伸び、捻じれています。" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "石化した眼を台座から外しますか?" @@ -264165,7 +269887,7 @@ msgstr "血液分析" #: src/iexamine.cpp msgid "You don't have any bionics installed." -msgstr "CBMが体内に一つもありません。" +msgstr "CBMを一つも移植していません。" #: src/iexamine.cpp msgid " doesn't have any bionics installed." @@ -265545,7 +271267,7 @@ msgstr "最長(%s): %s 重量(%s):" #: src/inventory_ui.cpp #, c-format msgid "Free Volume (%s): %s Volume (%s):" -msgstr "空容積(%s): %s 容積(%s):" +msgstr "最大空容積(%s): %s 容積(%s):" #: src/inventory_ui.cpp msgid "There are no available choices" @@ -266315,6 +272037,21 @@ msgstr "最大:" msgid "%s:" msgstr "%s:" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "(近):" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "(遠):" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "(会心):" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "胴 :" @@ -266475,7 +272212,7 @@ msgstr "通常。" #: src/item.cpp msgid "Average Coverage: " -msgstr "被覆率: " +msgstr "平均被覆: " #: src/item.cpp msgid "Warmth: " @@ -267834,7 +273571,7 @@ msgstr "総容量:" #: src/item_contents.cpp src/item_pocket.cpp msgid " Weight: " -msgstr "重量: " +msgstr " 重量: " #: src/item_contents.cpp #, c-format @@ -268636,7 +274373,7 @@ msgstr "どれを改良しますか?" #: src/iuse.cpp msgid "You don't have that item!" -msgstr "そのアイテムは持っていません!" +msgstr "そのアイテムを所持していません!" #: src/iuse.cpp msgid "Which signal should activate the item?" @@ -268915,7 +274652,7 @@ msgstr "それはこじ開けられません。" #: src/iuse.cpp #, c-format msgid "You can't get sufficient leverage to open that with your %1$s." -msgstr "" +msgstr "%1$sの性能が低すぎてこじ開けられません。" #: src/iuse.cpp msgid "Till soil where?" @@ -269326,13 +275063,14 @@ msgid "BEES!" msgstr "ハチだー!" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "時限装置をセットします。(0で取消)" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "特定秒のタイマーをセットします(0でキャンセル)。" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "時限装置を%dにセットしました。" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "タイマーを%d秒に設定しました。" #: src/iuse.cpp msgid "Tick!" @@ -270069,9 +275807,8 @@ msgid "Your vision is fine already." msgstr "既に十分な視力が備わっています。" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" -msgstr "%s" +msgid "You press a button on the doll to make it talk." +msgstr "ボタンを押すと人形が喋りました。" #: src/iuse.cpp msgid "You need a mechanics skill of 2 to use this repair kit." @@ -270290,38 +276027,6 @@ msgstr "メモリーカードの暗号化を解除する(スキルレベルが msgid "Wasted time. These pictures do not provoke your senses." msgstr "無駄な時間を過ごしました。この写真には何の感情も沸きませんね。" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "こんな犬を飼っていた事もあったなぁ..." - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "ハハッ!実に面白い猫の写真です。" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "素晴らしい風景写真です。" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "美味しそうな食べ物の写真です...お腹が空いてきますね!" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "数枚のとても楽しそうな旅行写真です。" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "人気ポップスバンドのコンサート写真です。" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "見知らぬ誰かの豪邸の写真です。" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "写真を眺めていると懐かしさが込み上げてきました。" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -271553,88 +277258,31 @@ msgstr "裏!" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "%sとゲームを楽しみますか?" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "ゲームで遊び始めました。" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "確実です。" +msgid "Play the %s with your friends?" +msgstr "仲間たちと%sで遊びますか?" #: src/iuse.cpp -msgid "It is decidedly so." -msgstr "明らかにそうです。" - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "間違いありません。" - -#: src/iuse.cpp -msgid "Yes - definitely." -msgstr "はい、確かです。" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "見込みがあります。" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "イエスだと考えられます。" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "多分そうです。" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "良い見通しです。" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "良い兆候です。" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "よく分かりません、もう一度試してください。" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "また後で尋ねてください。" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "今は答えを聞かない方が良いでしょう。" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "今のところ分かりません。" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "精神を集中してもう一度聞いてください。" - -#: src/iuse.cpp -msgid "Don't count on it." -msgstr "当てにしては駄目です。" +#, c-format +msgid "Play the %s with your friend?" +msgstr "仲間と%sで遊びますか?" #: src/iuse.cpp -msgid "My reply is no." -msgstr "ノーと言えます。" +#, c-format +msgid "You and your %d friends start playing." +msgstr "%d人の仲間たちと一緒に遊び始めました。" #: src/iuse.cpp -msgid "My sources say no." -msgstr "情報源によればノーです。" +msgid "You and your friend start playing." +msgstr "仲間と一緒に遊び始めました。" #: src/iuse.cpp -msgid "Outlook not so good." -msgstr "悪い見通しです。" +msgid "You start playing." +msgstr "ゲームで遊び始めました。" #: src/iuse.cpp -msgid "Very doubtful." -msgstr "非常に怪しいです。" +#, c-format +msgid "Play a game with the %s?" +msgstr "%sとゲームを楽しみますか?" #: src/iuse.cpp #, c-format @@ -274036,7 +279684,7 @@ msgstr " 簡素 " #: src/map.cpp msgid "Mountable." -msgstr " 通過可能 " +msgstr " 火器設置可能 " #: src/map.cpp msgid "Flammable." @@ -274050,7 +279698,7 @@ msgstr "落ちてきた%sが命中しました!" #: src/map.cpp #, c-format msgid "Falling %s hits " -msgstr "落ちてきた%sがに命中しました。" +msgstr "落ちてきた%sがに命中しました" #: src/map.cpp #, c-format @@ -274461,8 +280109,20 @@ msgid "%s: %d" msgstr "%s: %d" #: src/martialarts.cpp -msgid "Requires: " -msgstr "必要: " +msgid "Requires (all): " +msgstr "必要強化(全): " + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "必要強化: " + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "禁止強化(全): " + +#: src/martialarts.cpp +msgid "Forbidden (any): " +msgstr "禁止強化: " #: src/martialarts.cpp msgid "activate" @@ -275131,7 +280791,7 @@ msgstr "串刺攻撃が%sに命中しました。" #: src/melee.cpp #, c-format msgid "You gouge %s" -msgstr "抉るような突きが%sに命中しました。" +msgstr "抉るような突きが%sに命中しました" #: src/melee.cpp #, c-format @@ -275141,27 +280801,27 @@ msgstr "%sに武器を突き刺して" #: src/melee.cpp #, c-format msgid "You puncture %s" -msgstr "穿刺攻撃が%sに命中しました。" +msgstr "穿刺攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid "You pierce %s" -msgstr "貫通攻撃が%sに命中しました。" +msgstr "貫通攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid "You poke %s" -msgstr "突刺攻撃が%sに命中しました。" +msgstr "突刺攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid " impales %s" -msgstr "の串刺攻撃が%sに命中しました。" +msgstr "の串刺攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid " gouges %s" -msgstr "の抉るような突きが%sに命中しました。" +msgstr "の抉るような突きが%sに命中しました" #: src/melee.cpp #, c-format @@ -275171,57 +280831,57 @@ msgstr "は%sに武器を突き刺して" #: src/melee.cpp #, c-format msgid " punctures %s" -msgstr "の穿刺攻撃が%sに命中しました。" +msgstr "の穿刺攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid " pierces %s" -msgstr "の貫通攻撃が%sに命中しました。" +msgstr "の貫通攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid " pokes %s" -msgstr "の突刺攻撃が%sに命中しました。" +msgstr "の突刺攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid "You gut %s" -msgstr "鋭い突きが%sに命中しました。" +msgstr "鋭い突きが%sに命中しました" #: src/melee.cpp #, c-format msgid "You chop %s" -msgstr "唐竹割りが%sに命中しました。" +msgstr "唐竹割りが%sに命中しました" #: src/melee.cpp #, c-format msgid "You slash %s" -msgstr "滅多斬りが%sに命中しました。" +msgstr "滅多斬りが%sに命中しました" #: src/melee.cpp #, c-format msgid "You mutilate %s" -msgstr "切り裂き攻撃が%sに命中しました。" +msgstr "切り裂き攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid "You maim %s" -msgstr "切刻攻撃が%sに命中しました。" +msgstr "切刻攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid "You stab %s" -msgstr "刺突攻撃が%sに命中しました。" +msgstr "刺突攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid "You slice %s" -msgstr "横斬攻撃が%sに命中しました。" +msgstr "横斬攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid "You cut %s" -msgstr "斬撃攻撃が%sに命中しました。" +msgstr "斬撃攻撃が%sに命中しました" #: src/melee.cpp #, c-format @@ -275231,37 +280891,37 @@ msgstr "%sを切り裂いて" #: src/melee.cpp #, c-format msgid " guts %s" -msgstr "の鋭い突きが%sに命中しました。" +msgstr "の鋭い突きが%sに命中しました" #: src/melee.cpp #, c-format msgid " slashes %s" -msgstr "の滅多斬りが%sに命中しました。" +msgstr "の滅多斬りが%sに命中しました" #: src/melee.cpp #, c-format msgid " mutilates %s" -msgstr "の切り裂き攻撃が%sに命中しました。" +msgstr "の切り裂き攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid " maims %s" -msgstr "の切刻攻撃が%sに命中しました。" +msgstr "の切刻攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid " stabs %s" -msgstr "の刺突攻撃が%sに命中しました。" +msgstr "の刺突攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid " slices %s" -msgstr "の横斬攻撃が%sに命中しました。" +msgstr "の横斬攻撃が%sに命中しました" #: src/melee.cpp #, c-format msgid " cuts %s" -msgstr "の斬撃攻撃が%sに命中しました。" +msgstr "の斬撃攻撃が%sに命中しました" #: src/melee.cpp #, c-format @@ -275271,32 +280931,32 @@ msgstr "は%sを切り裂いて" #: src/melee.cpp #, c-format msgid "You clobber %s" -msgstr "強打が%sに命中しました。" +msgstr "強打が%sに命中しました" #: src/melee.cpp #, c-format msgid "You smash %s" -msgstr "猛打が%sに命中しました。" +msgstr "猛打が%sに命中しました" #: src/melee.cpp #, c-format msgid "You thrash %s" -msgstr "激打が%sに命中しました。" +msgstr "激打が%sに命中しました" #: src/melee.cpp #, c-format msgid "You batter %s" -msgstr "乱打が%sに命中しました。" +msgstr "乱打が%sに命中しました" #: src/melee.cpp #, c-format msgid "You whack %s" -msgstr "殴打が%sに命中しました。" +msgstr "殴打が%sに命中しました" #: src/melee.cpp #, c-format msgid "You hit %s" -msgstr "攻撃が%sに命中しました。" +msgstr "攻撃が%sに命中しました" #: src/melee.cpp #, c-format @@ -279377,7 +285037,7 @@ msgstr "%sからはこれ以上搾乳できません。" #: src/monexamine.cpp msgid "You don't have a shearing tool." -msgstr "毛刈り用の道具を持っていません。" +msgstr "毛刈り用の道具を所持していません。" #: src/monexamine.cpp #, c-format @@ -279506,6 +285166,11 @@ msgstr "%sの馬具を外す" msgid "Manage your friendship with %s" msgstr "%sとの友情をはぐくむ" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "%sと会話する" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -280081,7 +285746,7 @@ msgstr "目に見えない相手からの攻撃を回避しました。" #: src/monster.cpp #, c-format msgid "%1$s hits your %2$s." -msgstr "%1$sの%2$sへの攻撃が命中しました。" +msgstr "%1$sの攻撃が%2$sに命中しました。" #. ~ %1$s: name of your mount, %2$s: target NPC name, %3$d: damage value #. ~ %1$s: name of your mount, %2$s: target creature name, %3$d: damage value @@ -280124,7 +285789,7 @@ msgstr "%sに何かが命中しました。" #: src/monster.cpp #, c-format msgid "%1$s hits your %2$s, but your %3$s protects you." -msgstr "%1$sの%2$sへの攻撃が命中しましたが、%3$sが攻撃を弾きました。" +msgstr "%1$sの攻撃が%2$sに命中しましたが、%3$sが攻撃を弾きました。" #. ~ $1s is monster name, %2$s is that monster target name, #. ~ $3s is target bodypart name in accusative, $4s is the monster target @@ -280140,7 +285805,7 @@ msgstr "%1$sから%2$sの%3$sへの攻撃が命中しましたが、%4$sの%5$s #: src/monster.cpp #, c-format msgid "%1$s hits %2$s but is stopped by its %3$s." -msgstr "%1$sの%2$sへの攻撃が命中しましたが、%3$sが攻撃を阻みました。" +msgstr "%1$sの攻撃が%2$sに命中しましたが、%3$sが攻撃を阻みました。" #. ~ 1$s is bodypart name in accusative, 2$s is armor name. #: src/monster.cpp @@ -280367,7 +286032,7 @@ msgstr "糸穴から糸を出して網を紡ぎ始めました!" #: src/mutation.cpp msgid "You start leaving a trail of sludge as you go." -msgstr "" +msgstr "通った道筋にヘドロを残し始めました。" #: src/mutation.cpp msgid "You focus, but are too hemmed in to birth a new slimespring!" @@ -280378,21 +286043,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "意識を集中すると体が割れるような愉快な感覚がこみ上げてきて、新たなスライムが生まれました!" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "なあ、君、私にそっくりだな!お互い助け合おう!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "こいよ、でっかい私、行こう!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "我々はチームだ!やるぞーっ!" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "木々との交信は森林地帯以外では不可能です。" @@ -280656,11 +286306,20 @@ msgstr "説明表示" msgid "%s to activate mutation, " msgstr "%sを押して有効化/無効化の変更、" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "グラフィック非表示" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "%sでキー割当、" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "%sを押してグラフィック表示切替" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -282357,11 +288016,6 @@ msgstr "顔がないと喋れません!" msgid "What do you want to do?" msgstr "何をしますか?" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "%sと会話する" - #: src/npctalk.cpp msgid "Talk to…" msgstr "会話..." @@ -282688,7 +288342,7 @@ msgstr "購入する余裕がありません!" #: src/npctalk.cpp #, c-format msgid "You don't have a %1$s!" -msgstr "%1$sを持っていません!" +msgstr "%1$sを所持していません!" #. ~ %1%s is the NPC name, %2$s is an item #: src/npctalk.cpp @@ -283140,6 +288794,15 @@ msgid "" "trying to move into mineable terrain." msgstr "trueにすると、掘削可能な地形に移動しようとした際に、装備中のつるはしやジャックハンマーを自動で使用します。" +#: src/options.cpp +msgid "Auto mopping" +msgstr "自動拭取" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "trueにすると、液体がこぼれている地形に移動した時に装備中のモップを自動で使用します。" + #: src/options.cpp msgid "Auto foraging" msgstr "自動採集" @@ -283147,15 +288810,21 @@ msgstr "自動採集" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" -"「自動採集」が有効な場合に実行する行動を設定します。藪: 藪からのみ採集、木: 木からのみ採集、全て: 藪や木、花、ガマなどを含む全てから採集" +"「自動採集」が有効な場合に実行する行動を設定します。藪: 藪からのみ採集、木: 木からのみ採集、作物: 作物のみ採集、全て: " +"藪や木、作物、花、ガマなどを含む全てから採集" #: src/options.cpp msgid "Bushes" msgstr "藪" +#: src/options.cpp +msgid "Crops" +msgstr "作物" + #: src/options.cpp msgid "Everything" msgstr "全て" @@ -285533,20 +291202,6 @@ msgstr "区域: " msgid "# Unexplored" msgstr "# 未探索" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "臭気: %s" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "oter_type: %s" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "引数未設定" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "有効ミッションまでの距離:" @@ -285888,6 +291543,11 @@ msgstr "日暮れ" msgid "Night" msgstr "夜" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s、%d日" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "???" @@ -285936,6 +291596,10 @@ msgstr "かなり寒い!" msgid "Freezing!" msgstr "猛烈に寒い!" +#: src/panels.cpp +msgid "SAFE" +msgstr "SAFE" + #: src/panels.cpp msgid "On" msgstr "オン" @@ -286323,7 +291987,7 @@ msgstr "光量: " #: src/panels.cpp #, c-format msgid "Date : %s" -msgstr "日付 : %s" +msgstr "日付: %s" #: src/panels.cpp #, c-format @@ -288349,6 +294013,16 @@ msgstr "[%s] 射線非表示" msgid "[%s] Show lines of fire" msgstr "[%s] 射線表示" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "射程: %d" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "射程: %d/%d" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -288497,7 +294171,7 @@ msgstr "メックがバッテリー切れのため%sを発射できません。" msgid "" "You must stand near acceptable terrain or furniture to fire the %s. A " "table, a mound of dirt, a broken window, etc." -msgstr "%sを発射するには、テーブル、畝、割れた窓など適切な地形に隣接する必要があります。" +msgstr "%sを発射するには、テーブル、畝、割れた窓など適切な地形にいる必要があります。" #: src/recipe.cpp msgid " (Mitigated)" @@ -292696,6 +298370,10 @@ msgstr "%1$sの%2$sに入った水を浄水するには電力が足りない" msgid "You purify the contents of the %1$s's %2$s" msgstr "%1$sの%2$sに入った水を浄水しました。" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "モンスターの弱点を入念に記録しました。" + #: src/weather.cpp msgid "Monday" msgstr "月曜日" diff --git a/lang/po/ko.po b/lang/po/ko.po index 78253a6d011f0..b393f606ae6b8 100644 --- a/lang/po/ko.po +++ b/lang/po/ko.po @@ -14,7 +14,7 @@ # indejeC , 2021 # 장현우 , 2021 # Mark, 2021 -# 다람쥐과자 , 2021 +# 비가너무싫어 , 2021 # byoungheon jeon , 2021 # Brett Dong , 2021 # @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Brett Dong , 2021\n" "Language-Team: Korean (https://www.transifex.com/cataclysm-dda-translators/teams/2217/ko/)\n" @@ -37,7 +37,7 @@ msgid "battery" msgid_plural "battery" msgstr[0] "배터리" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -49,7 +49,7 @@ msgid "butane" msgid_plural "butane" msgstr[0] "" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "" @@ -59,7 +59,7 @@ msgid "aerosol paint" msgid_plural "aerosol paint" msgstr[0] "" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -71,7 +71,7 @@ msgid "permanent ink" msgid_plural "permanent ink" msgstr[0] "" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -83,7 +83,7 @@ msgid "candle wax" msgid_plural "candle wax" msgstr[0] "" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "" @@ -93,7 +93,7 @@ msgid "flare pyrotechnic" msgid_plural "flare pyrotechnic" msgstr[0] "" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "" @@ -115,7 +115,7 @@ msgid "oxygen" msgid_plural "oxygen" msgstr[0] "산소" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "" @@ -125,7 +125,7 @@ msgid "aluminum foil" msgid_plural "aluminum foil" msgstr[0] "알류미늄 호일" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -147,7 +147,7 @@ msgid "thread" msgid_plural "thread" msgstr[0] "실타래" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "반짇고리를 채우는데 사용할 수 있는 소량의 실타래." @@ -177,7 +177,7 @@ msgid "yarn" msgid_plural "yarn" msgstr[0] "실" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "니트 옷가지를 만드는 데 사용할 수 있는 양모 실." @@ -197,7 +197,7 @@ msgid "duct tape" msgid_plural "duct tape" msgstr[0] "접착 테이프" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "엄청나게 강력한 테이프. 용도가 셀 수 없을 정도로 많습니다." @@ -255,8 +255,8 @@ msgid "plutonium slurry" msgid_plural "plutonium slurry" msgstr[0] "플루토늄 슬러리" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -314,7 +314,7 @@ msgid "bearings" msgid_plural "bearings" msgstr[0] "베어링" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "볼 베어링 한 박스. 슬링의 탄환으로 사용된다." @@ -356,7 +356,7 @@ msgid "120mm HEAT" msgid_plural "120mm HEAT" msgstr[0] "120mm HEAT" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -379,7 +379,7 @@ msgid "mixed smokeless gunpowder" msgid_plural "mixed smokeless gunpowder" msgstr[0] "혼합 무연화약" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -394,7 +394,7 @@ msgid "smokeless shotgun powder" msgid_plural "smokeless shotgun powder" msgstr[0] "산탄총 무연화약" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "산탄총 재생탄 제작에 사용되는 무연화약." @@ -404,7 +404,7 @@ msgid "smokeless pistol powder" msgid_plural "smokeless pistol powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "권총 재생탄 제작에 사용되는 무연화약." @@ -414,7 +414,7 @@ msgid "smokeless magnum powder" msgid_plural "smokeless magnum powder" msgstr[0] "매그넘탄 무연화약" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -425,7 +425,7 @@ msgid "smokeless rifle powder" msgid_plural "smokeless rifle powder" msgstr[0] "소총 무연화약" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "소총 재생탄 제작에 사용되는 무연화약." @@ -435,7 +435,7 @@ msgid "smokeless overbore rifle powder" msgid_plural "smokeless overbore rifle powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "대구경 소총 재생탄 제작에 사용되는 무연화약." @@ -445,7 +445,7 @@ msgid "artillery propellant" msgid_plural "artillery propellant" msgstr[0] "포탄 추진제" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -457,7 +457,7 @@ msgid "oxidizer powder" msgid_plural "oxidizer powder" msgstr[0] "산화제 가루" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "반응성이 강한 산화 촉매제 가루." @@ -467,7 +467,7 @@ msgid "lye powder" msgid_plural "lye powder" msgstr[0] "가성소다 가루" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "분말화된 수산화나트륨." @@ -549,7 +549,7 @@ msgid "copper" msgid_plural "copper" msgstr[0] "구리" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -561,7 +561,7 @@ msgid "medical tape" msgid_plural "medical tape" msgstr[0] "의료용 테이프" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "접착 테이프와 비슷한 의료용 테이프입니다." @@ -572,7 +572,7 @@ msgid_plural "placeholder ammunitions" msgstr[0] "placeholder ammunition" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "IF YOU ARE SEEING THIS IT IS A BUG." @@ -582,7 +582,7 @@ msgid "charcoal" msgid_plural "charcoal" msgstr[0] "숯" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -597,7 +597,7 @@ msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "탄화칼슘 원료" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -621,7 +621,7 @@ msgid "albuterol" msgid_plural "albuterol" msgstr[0] "알부테롤" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -702,7 +702,7 @@ msgid "nicotine liquid" msgid_plural "nicotine liquid" msgstr[0] "액상 니코틴" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -714,7 +714,7 @@ msgid "fish bait" msgid_plural "fish bait" msgstr[0] "낚시용 미끼" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "물고기를 유인하는데 쓰이는 미끼." @@ -768,7 +768,7 @@ msgid "unfinished charcoal" msgid_plural "unfinished charcoal" msgstr[0] "덜 완성된 숯" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -780,7 +780,7 @@ msgid "unfinished calcium carbide" msgid_plural "unfinished calcium carbide" msgstr[0] "덜 완성된 탄화 칼슘" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -802,7 +802,7 @@ msgid "nitrox" msgid_plural "nitrox" msgstr[0] "잠수용 공기통" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "스쿠버 다이빙에 쓰이는 산소-질소 혼합 가스." @@ -812,7 +812,7 @@ msgid "extinguishing agent" msgid_plural "extinguishing agent" msgstr[0] "고체 소화제" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "화재 진압에 효과적인 건조 화학 물질." @@ -822,7 +822,7 @@ msgid "tinder" msgid_plural "tinder" msgstr[0] "부싯깃" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "가연성 물질. 불이 쉽게 붙도록 잘게 나눠 놓았습니다." @@ -852,7 +852,7 @@ msgid "bronze" msgid_plural "bronze" msgstr[0] "청동" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "적당한 크기의 청동 덩어리. 오래된 물건 제작에 사용할수 있습니다." @@ -862,7 +862,7 @@ msgid "glowstick juice" msgid_plural "glowstick juice" msgstr[0] "야광봉 용액" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -873,7 +873,7 @@ msgid "graphite" msgid_plural "graphite" msgstr[0] "흑연" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -886,7 +886,7 @@ msgid "black pen ink" msgid_plural "black pen ink" msgstr[0] "검은색 펜 잉크" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -898,7 +898,7 @@ msgid "blue pen ink" msgid_plural "blue pen ink" msgstr[0] "파란색 펜 잉크" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -910,7 +910,7 @@ msgid "green pen ink" msgid_plural "green pen ink" msgstr[0] "초록색 펜 잉크" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -922,7 +922,7 @@ msgid "red pen ink" msgid_plural "red pen ink" msgstr[0] "빨간색 펜 잉크" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -947,7 +947,7 @@ msgid "sulfur" msgid_plural "sulfur" msgstr[0] "유황" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -973,7 +973,7 @@ msgid "cement" msgid_plural "cement" msgstr[0] "시멘트" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -989,7 +989,7 @@ msgid "gravel" msgid_plural "gravel" msgstr[0] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -999,7 +999,7 @@ msgid "limestone" msgid_plural "limestone" msgstr[0] "석회석" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1014,7 +1014,7 @@ msgid "quicklime" msgid_plural "quicklime" msgstr[0] "생석회" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1031,7 +1031,7 @@ msgid "sand" msgid_plural "sand" msgstr[0] "모래" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1043,7 +1043,7 @@ msgid "soil" msgid_plural "soil" msgstr[0] "흙" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1055,7 +1055,7 @@ msgid "aluminum powder" msgid_plural "aluminum powder" msgstr[0] "알루미늄 분말" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1069,7 +1069,7 @@ msgid "zinc powder" msgid_plural "zinc powder" msgstr[0] "아연 분말" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1083,7 +1083,7 @@ msgid "zinc oxide" msgid_plural "zinc oxide" msgstr[0] "산화아연" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1095,7 +1095,7 @@ msgid "manganese dioxide" msgid_plural "manganese dioxide" msgstr[0] "이산화 망가니즈" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1109,7 +1109,7 @@ msgid "potassium chloride" msgid_plural "potassium chloride" msgstr[0] "염화포타슘" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1125,7 +1125,7 @@ msgid "potassium hydroxide" msgid_plural "potassium hydroxide" msgstr[0] "수산화 포타슘" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1140,7 +1140,7 @@ msgid "acetone" msgid_plural "acetone" msgstr[0] "아세톤" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1153,7 +1153,7 @@ msgid "chromium oxide" msgid_plural "chromium oxide" msgstr[0] "산화 크롬" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1171,7 +1171,7 @@ msgid "calcium carbide" msgid_plural "calcium carbide" msgstr[0] "탄화 칼슘" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1188,7 +1188,7 @@ msgid "hexamine" msgid_plural "hexamine" msgstr[0] "헥사민" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1203,7 +1203,7 @@ msgid "hydrogen peroxide (concentrated)" msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "과산화수소(농축)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1219,7 +1219,7 @@ msgid "ammonium nitrate" msgid_plural "ammonium nitrate" msgstr[0] "질산암모늄" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1235,7 +1235,7 @@ msgid "ammonium nitrate pellets" msgid_plural "ammonium nitrate pellets" msgstr[0] "질산암모늄 알갱이" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1251,7 +1251,7 @@ msgid "saltpeter" msgid_plural "saltpeter" msgstr[0] "초석" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1266,7 +1266,7 @@ msgid "niter" msgid_plural "niter" msgstr[0] "초석" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1278,7 +1278,7 @@ msgid "aluminum sulfate" msgid_plural "aluminum sulfate" msgstr[0] "황산 알루미늄" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1297,7 +1297,7 @@ msgid "acetic acid" msgid_plural "acetic acid" msgstr[0] "초산" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1313,7 +1313,7 @@ msgid "formaldehyde" msgid_plural "formaldehyde" msgstr[0] "포름알데히드" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1329,7 +1329,7 @@ msgid "thermite" msgid_plural "thermite" msgstr[0] "써마이트" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1345,7 +1345,7 @@ msgid "ANFO" msgid_plural "ANFO" msgstr[0] "ANFO" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1359,7 +1359,7 @@ msgid "black gunpowder" msgid_plural "black gunpowder" msgstr[0] "흑색 화약" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1373,7 +1373,7 @@ msgid "match head powder" msgid_plural "match head powder" msgstr[0] "성냥머리 분말" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1386,7 +1386,7 @@ msgid "RDX" msgid_plural "RDX" msgstr[0] "RDX" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1399,7 +1399,7 @@ msgid "composition b" msgid_plural "composition b" msgstr[0] "컴포지션 B" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1414,7 +1414,7 @@ msgid "HMTD" msgid_plural "HMTD" msgstr[0] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1429,7 +1429,7 @@ msgid "APEX" msgid_plural "APEX" msgstr[0] "" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1442,7 +1442,7 @@ msgid "improvised rocket fuel" msgid_plural "improvised rocket fuel" msgstr[0] "즉석 로켓 연료" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1454,7 +1454,7 @@ msgid "detergent" msgid_plural "detergent" msgstr[0] "세제" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "대중적이었던 대재앙 전 분말 세제." @@ -1464,7 +1464,7 @@ msgid "soap flakes" msgid_plural "soap flakes" msgstr[0] "비누 조각" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "세탁기에 사용하기 적합하도록 잘게 자른 비누." @@ -1520,7 +1520,7 @@ msgid "concentrated venom" msgid_plural "concentrated venom" msgstr[0] "" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1534,7 +1534,7 @@ msgid "concentrated paralytic" msgid_plural "concentrated paralytic" msgstr[0] "" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1548,7 +1548,7 @@ msgid "rocuronium" msgid_plural "rocuronium" msgstr[0] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1561,7 +1561,7 @@ msgid "red phosphorous" msgid_plural "red phosphorous" msgstr[0] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1573,7 +1573,7 @@ msgid "iodine crystal" msgid_plural "iodine crystal" msgstr[0] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1585,7 +1585,7 @@ msgid "ethanol" msgid_plural "ethanol" msgstr[0] "에탄올" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1613,7 +1613,7 @@ msgid "methanol" msgid_plural "methanol" msgstr[0] "" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1626,7 +1626,7 @@ msgid "diesel" msgid_plural "diesel" msgstr[0] "경유" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1637,7 +1637,7 @@ msgid "JP8 fuel" msgid_plural "JP8 fuel" msgstr[0] "JP8 연료" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1649,7 +1649,7 @@ msgid "avgas fuel" msgid_plural "avgas fuel" msgstr[0] "Avgas 연료" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "항공기에 사용되는 특수한 석유 기반 연료입니다." @@ -1659,7 +1659,7 @@ msgid "biodiesel" msgid_plural "biodiesel" msgstr[0] "바이오디젤" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1672,7 +1672,7 @@ msgid "gasoline" msgid_plural "gasoline" msgstr[0] "휘발유" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1684,7 +1684,7 @@ msgid "lamp oil" msgid_plural "lamp oil" msgstr[0] "램프 기름" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "기름 램프에 사용하는 묽은 기름으로 깔끔하게 연소합니다." @@ -1694,7 +1694,7 @@ msgid "motor oil" msgid_plural "motor oil" msgstr[0] "엔진오일" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "자동차 엔진에 사용하기 위해 만들어진 윤활유." @@ -1704,7 +1704,7 @@ msgid "napalm" msgid_plural "napalm" msgstr[0] "네이팜" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -1717,7 +1717,7 @@ msgid "gelled gasoline" msgid_plural "gelled gasoline" msgstr[0] "가솔린 젤리" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -1730,7 +1730,7 @@ msgid "flamethrower fuel" msgid_plural "flamethrower fuel" msgstr[0] "화염방사기 연료" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -1768,7 +1768,7 @@ msgid "shrapnel" msgid_plural "shrapnel" msgstr[0] "" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "가장자리가 들쭉날쭉하고 뒤틀린 금속판 조각입니다. " @@ -1819,7 +1819,7 @@ msgid "10mm Auto FMJ" msgid_plural "10mm Auto FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -1842,7 +1842,7 @@ msgid "H&K 12mm" msgid_plural "H&K 12mm" msgstr[0] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -1880,7 +1880,7 @@ msgid "20x66mm buckshot, handmade" msgid_plural "20x66mm buckshot, handmade" msgstr[0] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -1906,7 +1906,7 @@ msgid "20x66mm explosive" msgid_plural "20x66mm explosive" msgstr[0] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -1945,7 +1945,7 @@ msgid "20x66mm frag" msgid_plural "20x66mm frag" msgstr[0] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -1958,7 +1958,7 @@ msgid "20x66mm incendiary" msgid_plural "20x66mm incendiary" msgstr[0] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -1971,7 +1971,7 @@ msgid "20x66mm buckshot" msgid_plural "20x66mm buckshot" msgstr[0] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -1998,7 +1998,7 @@ msgid ".22 CB" msgid_plural ".22 CB" msgstr[0] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2013,7 +2013,7 @@ msgid ".22 FMJ" msgid_plural ".22 FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2028,7 +2028,7 @@ msgid ".22 LR" msgid_plural ".22 LR" msgstr[0] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2043,7 +2043,7 @@ msgid ".22 rat-shot" msgid_plural ".22 rat-shot" msgstr[0] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2077,7 +2077,7 @@ msgid ".223 Remington" msgid_plural ".223 Remington" msgstr[0] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2093,7 +2093,7 @@ msgid "5.56 NATO Mk 262" msgid_plural "5.56 NATO Mk 262" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2108,7 +2108,7 @@ msgid "5.56 NATO Mk 318" msgid_plural "5.56 NATO Mk 318" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2124,7 +2124,7 @@ msgid "5.56 NATO M855" msgid_plural "5.56 NATO M855" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2141,7 +2141,7 @@ msgid "5.56 NATO M855A1" msgid_plural "5.56 NATO M855A1" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2158,7 +2158,7 @@ msgid "5.56 NATO tracer" msgid_plural "5.56 NATO tracer" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2201,7 +2201,7 @@ msgid ".270 Winchester JSP" msgid_plural ".270 Winchester JSP" msgstr[0] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2249,7 +2249,7 @@ msgid ".300 Winchester Magnum, reloaded" msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2264,7 +2264,7 @@ msgid ".30-06 Springfield" msgid_plural ".30-06 Springfield" msgstr[0] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2279,7 +2279,7 @@ msgid ".30-06 M14A1 tracer" msgid_plural ".30-06 M14A1 tracer" msgstr[0] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2294,7 +2294,7 @@ msgid ".30-06 M2 AP" msgid_plural ".30-06 M2 AP" msgstr[0] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2396,7 +2396,7 @@ msgid ".308 Winchester" msgid_plural ".308 Winchester" msgstr[0] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2411,7 +2411,7 @@ msgid "7.62x51mm M80" msgid_plural "7.62x51mm M80" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2426,7 +2426,7 @@ msgid "7.62x51mm NATO tracer" msgid_plural "7.62x51mm NATO tracer" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2468,7 +2468,7 @@ msgid ".32 ACP" msgid_plural ".32 ACP" msgstr[0] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2490,7 +2490,7 @@ msgid ".357 Magnum FMJ" msgid_plural ".357 Magnum FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2503,7 +2503,7 @@ msgid ".357 Magnum JHP" msgid_plural ".357 Magnum JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2536,7 +2536,7 @@ msgid ".357 SIG FMJ" msgid_plural ".357 SIG FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2548,7 +2548,7 @@ msgid ".357 SIG JHP" msgid_plural ".357 SIG JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -2593,7 +2593,7 @@ msgid ".38 FMJ" msgid_plural ".38 FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -2620,7 +2620,7 @@ msgid ".38 Super" msgid_plural ".38 Super" msgstr[0] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -2659,7 +2659,7 @@ msgid ".380 ACP FMJ" msgid_plural ".380 ACP FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -2675,7 +2675,7 @@ msgid ".380 ACP JHP" msgid_plural ".380 ACP JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -2691,7 +2691,7 @@ msgid ".380 ACP +P" msgid_plural ".380 ACP +P" msgstr[0] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -2732,7 +2732,7 @@ msgid ".38 Super FMJ" msgid_plural ".38 Super FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -2750,7 +2750,7 @@ msgid ".40 S&W FMJ" msgid_plural ".40 S&W FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -2765,7 +2765,7 @@ msgid ".40 S&W JHP" msgid_plural ".40 S&W JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -2805,7 +2805,7 @@ msgid "40x46mm M1006 sponge" msgid_plural "40x46mm M1006 sponge" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -2820,7 +2820,7 @@ msgid "40x46mm M433 HEDP" msgid_plural "40x46mm M433 HEDP" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -2833,7 +2833,7 @@ msgid "40x46mm M576 buckshot" msgid_plural "40x46mm M576 buckshot" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -2846,7 +2846,7 @@ msgid "40x46mm M651 tear gas" msgid_plural "40x46mm M651 tear gas" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -2859,8 +2859,8 @@ msgid "40x46mm-M118 buckshot, reloaded" msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -2873,8 +2873,8 @@ msgid "40x46mm-M199 buckshot, reloaded" msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -2914,8 +2914,8 @@ msgid "40x46mm-M118 flechette, reloaded" msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -2928,8 +2928,8 @@ msgid "40x46mm-M199 flechette, reloaded" msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -2980,7 +2980,7 @@ msgid "40x46mm .22 LR hornet's nest" msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -2992,7 +2992,7 @@ msgid "40x46mm .410 hornet's nest" msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3019,7 +3019,7 @@ msgid "40x53mm M430A1 HEDP" msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3032,8 +3032,8 @@ msgid "40x53mm buckshot, reloaded" msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "M576을 닮은 간이 40x53mm 산탄입니다." @@ -3054,8 +3054,8 @@ msgid "40x53mm flechette, reloaded" msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3082,7 +3082,7 @@ msgid ".410 000 shot" msgid_plural ".410 000 shot" msgstr[0] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "000 샷 5개가 채워진 .410 산탄총 탄약. 사냥이나 전투에 걸맞는 위력을 가졌다." @@ -3097,7 +3097,7 @@ msgid ".44 Magnum FMJ" msgid_plural ".44 Magnum FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3154,7 +3154,7 @@ msgid ".45 ACP FMJ" msgid_plural ".45 ACP FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3166,7 +3166,7 @@ msgid ".45 ACP JHP" msgid_plural ".45 ACP JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3181,7 +3181,7 @@ msgid ".45 ACP +P" msgid_plural ".45 ACP +P" msgstr[0] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3219,7 +3219,7 @@ msgid ".454 Casull" msgid_plural ".454 Casull" msgstr[0] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3246,7 +3246,7 @@ msgid ".45-70 SP" msgid_plural ".45-70 SP" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3276,7 +3276,7 @@ msgid ".45-70 LFN cowboy" msgid_plural ".45-70 LFN cowboy" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3291,7 +3291,7 @@ msgid ".45-70 SP, reloaded" msgid_plural ".45-70 SP, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3322,7 +3322,7 @@ msgid ".45-70 LFN cowboy, reloaded" msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3338,7 +3338,7 @@ msgid ".45-70, black powder" msgid_plural ".45-70, black powder" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3354,7 +3354,7 @@ msgid ".45 Colt JHP" msgid_plural ".45 Colt JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3380,7 +3380,7 @@ msgid "4.6x30mm" msgid_plural "4.6x30mm" msgstr[0] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3395,8 +3395,8 @@ msgid "4.6x30mm, black powder" msgid_plural "4.6x30mm, black powder" msgstr[0] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3418,7 +3418,7 @@ msgid ".460 Rowland HCFN" msgid_plural ".460 Rowland HCFN" msgstr[0] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3430,7 +3430,7 @@ msgid ".460 Rowland" msgid_plural ".460 Rowland" msgstr[0] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -3458,7 +3458,7 @@ msgid ".460 Rowland FMJ, reloaded" msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -3475,7 +3475,7 @@ msgid ".50 BMG M17 tracer" msgid_plural ".50 BMG M17 tracer" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3490,7 +3490,7 @@ msgid ".50 BMG M33 Ball" msgid_plural ".50 BMG M33 Ball" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -3508,7 +3508,7 @@ msgid ".50 BMG Match" msgid_plural ".50 BMG Match" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -3521,7 +3521,7 @@ msgid ".50 BMG M2 AP" msgid_plural ".50 BMG M2 AP" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -3533,7 +3533,7 @@ msgid ".50 BMG Raufoss Mk 211" msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -3555,7 +3555,7 @@ msgid ".50 BMG tracer, reloaded" msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3570,7 +3570,7 @@ msgid ".50 BMG Match, reloaded" msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -3588,7 +3588,7 @@ msgid ".50 BMG AP, reloaded" msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -3641,7 +3641,7 @@ msgid "5.45x39mm 7N10" msgid_plural "5.45x39mm 7N10" msgstr[0] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -3657,7 +3657,7 @@ msgid "5.45x39mm 7N22" msgid_plural "5.45x39mm 7N22" msgstr[0] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -3669,7 +3669,7 @@ msgid "5.45x39mm, reloaded" msgid_plural "5.45x39mm, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -3684,7 +3684,7 @@ msgid "5.45x39mm AP, reloaded" msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -3708,7 +3708,7 @@ msgid "5.7x28mm SS190" msgid_plural "5.7x28mm SS190" msgstr[0] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3727,8 +3727,8 @@ msgid "5.7x28mm, black powder" msgid_plural "5.7x28mm, black powder" msgstr[0] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3811,7 +3811,7 @@ msgid "66mm HEAT" msgid_plural "66mm HEAT" msgstr[0] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -3823,7 +3823,7 @@ msgid ".700 NX" msgid_plural ".700 NX" msgstr[0] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -3849,7 +3849,7 @@ msgid "7.62x39mm 57-N-231" msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -3866,7 +3866,7 @@ msgid "7.62x39mm M67" msgid_plural "7.62x39mm M67" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -3882,7 +3882,7 @@ msgid "7.62x39mm M43, reloaded" msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -3914,7 +3914,7 @@ msgid "7.62x54mmR" msgid_plural "7.62x54mmR" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -3942,7 +3942,7 @@ msgid "7.62x25mm JHP" msgid_plural "7.62x25mm JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -3969,7 +3969,7 @@ msgid "7.62x25mm Type P" msgid_plural "7.62x25mm Type P" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4032,7 +4032,7 @@ msgid "bootleg 8x40mm JHP" msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4044,7 +4044,7 @@ msgid "8x40mm caseless" msgid_plural "8x40mm caseless" msgstr[0] "8x40mm 무탄피탄" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4056,7 +4056,7 @@ msgid "8x40mm sporting" msgid_plural "8x40mm sporting" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4069,7 +4069,7 @@ msgid "8x40mm FMJ" msgid_plural "8x40mm FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4082,7 +4082,7 @@ msgid "8x40mm HVP" msgid_plural "8x40mm HVP" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4098,7 +4098,7 @@ msgid "8x40mm tracer" msgid_plural "8x40mm tracer" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4114,7 +4114,7 @@ msgid "8x40mm JHP" msgid_plural "8x40mm JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4127,7 +4127,7 @@ msgid "9x19mm JHP" msgid_plural "9x19mm JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4143,7 +4143,7 @@ msgid "9x19mm FMJ" msgid_plural "9x19mm FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4155,7 +4155,7 @@ msgid "9x19mm +P" msgid_plural "9x19mm +P" msgstr[0] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4167,7 +4167,7 @@ msgid "9x19mm +P+" msgid_plural "9x19mm +P+" msgstr[0] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4209,7 +4209,7 @@ msgid "9x18mm 57-N-181S" msgid_plural "9x18mm 57-N-181S" msgstr[0] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4224,7 +4224,7 @@ msgid "9x18mm SP-7" msgid_plural "9x18mm SP-7" msgstr[0] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4237,7 +4237,7 @@ msgid "9x18mm RG028" msgid_plural "9x18mm RG028" msgstr[0] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4259,7 +4259,7 @@ msgid "9x18mm, reloaded" msgid_plural "9x18mm, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4274,7 +4274,7 @@ msgid "9x18mm +P+, reloaded" msgid_plural "9x18mm +P+, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4289,7 +4289,7 @@ msgid "9x18mm FMJ, reloaded" msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4304,7 +4304,7 @@ msgid "152mm ATGM HEAT" msgid_plural "152mm ATGM HEAT" msgstr[0] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -4328,7 +4328,7 @@ msgid "cannon round shot" msgid_plural "cannon round shot" msgstr[0] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -4340,7 +4340,7 @@ msgid "sprayable toxic gas" msgid_plural "sprayable toxic gas" msgstr[0] "분무용 독가스" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -4352,7 +4352,7 @@ msgid "sprayable fungicide" msgid_plural "sprayable fungicide" msgstr[0] "분무용 살진균제" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -4366,7 +4366,7 @@ msgid "sprayable insecticide" msgid_plural "sprayable insecticide" msgstr[0] "분무용 농약" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -4469,7 +4469,7 @@ msgid "paintball" msgid_plural "paintball" msgstr[0] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "작은 페인트볼 한 튜브. 탄환으로 사용해도 피해를 거의 주지 못합니다. " @@ -4570,7 +4570,7 @@ msgid "00 shot" msgid_plural "00 shot" msgstr[0] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -4583,7 +4583,7 @@ msgid_plural "shotgun beanbags" msgstr[0] "산탄총용 빈백" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "산탄총용 빈백탄. 살상용이 아닌 무력화용 탄입니다." @@ -4593,7 +4593,7 @@ msgid "birdshot" msgid_plural "birdshot" msgstr[0] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -4648,8 +4648,8 @@ msgid "00 shot, scrap loaded" msgid_plural "00 shot, scrap loaded" msgstr[0] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -4792,7 +4792,7 @@ msgid "oxyacetylene" msgid_plural "oxyacetylene" msgstr[0] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -4804,7 +4804,7 @@ msgid "fungal seeds" msgid_plural "fungal seeds" msgstr[0] "진균 씨앗" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "약간의 진균 씨앗." @@ -5570,7 +5570,7 @@ msgid "red paint" msgid_plural "red paint" msgstr[0] "빨간색 페인트" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "빨간색 페인트 한 통." @@ -5580,7 +5580,7 @@ msgid "blue paint" msgid_plural "blue paint" msgstr[0] "파란색 페인트" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "파란색 페인트 한 통." @@ -5590,7 +5590,7 @@ msgid "white paint" msgid_plural "white paint" msgstr[0] "하얀색 페인트" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "하얀색 페인트 한 통." @@ -5600,7 +5600,7 @@ msgid "green paint" msgid_plural "green paint" msgstr[0] "녹색 페인트" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "녹색 페인트 한 통." @@ -5610,7 +5610,7 @@ msgid "purple paint" msgid_plural "purple paint" msgstr[0] "자주색 페인트" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "자주색 페인트 한 통." @@ -5620,7 +5620,7 @@ msgid "yellow paint" msgid_plural "yellow paint" msgstr[0] "노란색 페인트" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "노란색 페인트 한 통." @@ -5682,7 +5682,7 @@ msgid "bismuth" msgid_plural "bismuth" msgstr[0] "비스무트" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "밀도가 높지만 잘 부서지는 금속으로 납의 대체재로 종종 쓰이는 금속입니다." @@ -5692,8 +5692,8 @@ msgid "gold" msgid_plural "gold" msgstr[0] "금" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -5710,7 +5710,7 @@ msgid "zinc" msgid_plural "zinc" msgstr[0] "아연" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -5724,7 +5724,7 @@ msgid "lead" msgid_plural "lead" msgstr[0] "납" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -5737,7 +5737,7 @@ msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "마그네슘 분말" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -5749,7 +5749,7 @@ msgid "silver" msgid_plural "silver" msgstr[0] "은" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -5805,7 +5805,7 @@ msgid "tin powder" msgid_plural "tin powder" msgstr[0] "주석 가루" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -5817,7 +5817,7 @@ msgid "solder" msgid_plural "solder" msgstr[0] "납땜용 연납" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -5850,7 +5850,7 @@ msgid "fuse" msgid_plural "fuse" msgstr[0] "신관" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -5899,7 +5899,7 @@ msgid "cotton scraps" msgid_plural "cotton scraps" msgstr[0] "목화 조각" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -5914,7 +5914,7 @@ msgid "faux fur scraps" msgid_plural "faux fur scraps" msgstr[0] "인조 모피 조각" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -5926,7 +5926,7 @@ msgid "felt scraps" msgid_plural "felt scraps" msgstr[0] "펠트 조각" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -5941,7 +5941,7 @@ msgid "fur scraps" msgid_plural "fur scraps" msgstr[0] "모피 조각" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -5953,7 +5953,7 @@ msgid "Kevlar scraps" msgid_plural "Kevlar scraps" msgstr[0] "케블라 조각" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -5969,7 +5969,7 @@ msgid "leather scraps" msgid_plural "leather scraps" msgstr[0] "가죽 조각" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -5981,7 +5981,7 @@ msgid "Lycra scraps" msgid_plural "Lycra scraps" msgstr[0] "라이크라 조각" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -5993,7 +5993,7 @@ msgid "neoprene scraps" msgid_plural "neoprene scraps" msgstr[0] "네오프린 조각" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -6005,7 +6005,7 @@ msgid "synthetic fabric scraps" msgid_plural "synthetic fabric scraps" msgstr[0] "합성 섬유 조각" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -6017,7 +6017,7 @@ msgid "Nomex scraps" msgid_plural "Nomex scraps" msgstr[0] "노멕스 조각" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -6043,7 +6043,7 @@ msgid "patchwork cotton sheet" msgid_plural "patchwork cotton sheet" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -6066,7 +6066,7 @@ msgid "patchwork faux fur clothing parts" msgid_plural "patchwork faux fur clothing parts" msgstr[0] "간이 인조 모피 의류 부품" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -6089,7 +6089,7 @@ msgid "patchwork felt clothing parts" msgid_plural "patchwork felt clothing parts" msgstr[0] "간이 양모 의류 부품" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -6126,7 +6126,7 @@ msgid "patchwork Lycra clothing parts" msgid_plural "patchwork Lycra clothing parts" msgstr[0] "간이 라이크라 의류 부품" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -6151,7 +6151,7 @@ msgid "patchwork neoprene clothing parts" msgid_plural "patchwork neoprene clothing parts" msgstr[0] "간이 네오프린 의류 부품" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -6177,7 +6177,7 @@ msgid "patchwork Nomex clothing parts" msgid_plural "patchwork Nomex clothing parts" msgstr[0] "간이 노멕스 의류 부품" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -6200,7 +6200,7 @@ msgid "patchwork synthetic fabric clothing parts" msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "간이 합성 섬유 의류 부품" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -6287,7 +6287,7 @@ msgid "titanium" msgid_plural "titanium" msgstr[0] "티타늄" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -6313,7 +6313,7 @@ msgid "10mm FMJ caseless" msgid_plural "10mm FMJ caseless" msgstr[0] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -6327,7 +6327,7 @@ msgid "10mm JHP caseless" msgid_plural "10mm JHP caseless" msgstr[0] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -6341,7 +6341,7 @@ msgid "25mm canister shot" msgid_plural "25mm canister shot" msgstr[0] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -6356,7 +6356,7 @@ msgid "7.50mm caseless" msgid_plural "7.50mm caseless" msgstr[0] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -6370,7 +6370,7 @@ msgid "7.50mm RP" msgid_plural "7.50mm RP" msgstr[0] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -6386,7 +6386,7 @@ msgid "electric charge" msgid_plural "electric charge" msgstr[0] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -6398,7 +6398,7 @@ msgid "foamcrete" msgid_plural "foamcrete" msgstr[0] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -6413,7 +6413,7 @@ msgid "solid hydrogen" msgid_plural "solid hydrogen" msgstr[0] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -6425,7 +6425,7 @@ msgid "lead pellets" msgid_plural "lead pellets" msgstr[0] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -6438,7 +6438,7 @@ msgid "domed HP pellets" msgid_plural "domed HP pellets" msgstr[0] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -6452,7 +6452,7 @@ msgid "tipped HP pellets" msgid_plural "tipped HP pellets" msgstr[0] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -6466,7 +6466,7 @@ msgid "alloy pellets" msgid_plural "alloy pellets" msgstr[0] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -6600,7 +6600,7 @@ msgid "pistol ammo, ball" msgid_plural "pistol ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6614,7 +6614,7 @@ msgid "pistol ammo, JHP" msgid_plural "pistol ammo, JHP" msgstr[0] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6648,7 +6648,7 @@ msgid "magnum ammo, ball" msgid_plural "magnum ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -6663,7 +6663,7 @@ msgid "magnum ammo, JHP" msgid_plural "magnum ammo, JHP" msgstr[0] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -6698,7 +6698,7 @@ msgid "tiny pistol ammo, ball" msgid_plural "tiny pistol ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -6713,7 +6713,7 @@ msgid "tiny pistol ammo, JHP" msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -6748,7 +6748,7 @@ msgid "rifle ammo, ball" msgid_plural "rifle ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -6763,7 +6763,7 @@ msgid "rifle ammo, AP" msgid_plural "rifle ammo, AP" msgstr[0] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -6798,7 +6798,7 @@ msgid "foreign rifle ammo, ball" msgid_plural "foreign rifle ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -6809,7 +6809,7 @@ msgid "railgun rifle ammo" msgid_plural "railgun rifle ammo" msgstr[0] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -6821,7 +6821,7 @@ msgid "huge rifle ammo, ball" msgid_plural "huge rifle ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -6836,7 +6836,7 @@ msgid "huge rifle ammo, AP" msgid_plural "huge rifle ammo, AP" msgstr[0] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -6860,7 +6860,7 @@ msgid "rocket, antipersonnel" msgid_plural "rocket, antipersonnel" msgstr[0] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -6872,7 +6872,7 @@ msgid "rocket, multipurpose" msgid_plural "rocket, multipurpose" msgstr[0] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -6885,7 +6885,7 @@ msgid "rocket, smoke" msgid_plural "rocket, smoke" msgstr[0] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -6908,7 +6908,7 @@ msgid "shotshell, birdshot" msgid_plural "shotshell, birdshot" msgstr[0] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -6920,7 +6920,7 @@ msgid "shotshell, slug" msgid_plural "shotshell, slug" msgstr[0] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -6933,7 +6933,7 @@ msgid "shotshell, pyrotechnical" msgid_plural "shotshell, pyrotechnical" msgstr[0] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -6976,7 +6976,7 @@ msgid "shotshell, flechette (reloaded)" msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -7020,7 +7020,7 @@ msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -7069,7 +7069,7 @@ msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "드래곤의 혈액" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -7094,7 +7094,7 @@ msgid "parabolan yarn" msgid_plural "parabolan yarn" msgstr[0] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -7104,7 +7104,7 @@ msgid "crystallized mana" msgid_plural "crystallized mana" msgstr[0] "마나 결정" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -7139,7 +7139,7 @@ msgid "liquid mercury" msgid_plural "liquid mercury" msgstr[0] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -7155,7 +7155,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -7620,7 +7620,7 @@ msgstr[0] "탄약 수납부" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -7636,7 +7636,7 @@ msgstr "%s을(를) 수납했다." #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -7670,7 +7670,7 @@ msgid "chest rig" msgid_plural "chest rig" msgstr[0] "군용 조끼" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -8491,36 +8491,18 @@ msgid "" msgstr "경찰관들이 쓰는 검은 가죽 벨트. 수납 공간이 있고, 경찰봉을 넣을 수 있는 홀스터가 달려 있다." #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "생존용 벨트" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "도구 벨트" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "%1$s을(를) %2$s에 집어넣었다." -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "도구 벨트" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -8660,23 +8642,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "생존용 방화부츠" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -8692,42 +8657,6 @@ msgid "pair of XL fur boots" msgid_plural "pairs of XL fur boots" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "생존용 잠수신발" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -8738,24 +8667,6 @@ msgstr[0] "하이킹 부츠" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "중량형 생존용 부츠" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -8772,24 +8683,6 @@ msgid "pair of XL leather armor boots" msgid_plural "pairs of XL leather armor boots" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "경량형 생존용 부츠" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -8853,19 +8746,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "생존용 부츠" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -8894,36 +8774,6 @@ msgid "pair of XL winter boots" msgid_plural "pairs of XL winter boots" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "겨울형 생존용 부츠" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "특대 생존용 부츠" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -9747,23 +9597,6 @@ msgid "XL leather duster" msgid_plural "XL leather dusters" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "생존용 더스터 코트" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "케블라로 보강한 수제 더스터 코트. 편안하고 튼튼하며, 주머니가 많이 달려 있어 저장 공간이 많습니다." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -9812,7 +9645,7 @@ msgid "army jacket" msgid_plural "army jacket" msgstr[0] "전투복 상의" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "튼튼하고 주머니가 많은 상의. 군대에서 주로 사용됩니다." @@ -9973,7 +9806,7 @@ msgid "kimono" msgid_plural "kimono" msgstr[0] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -10122,18 +9955,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "두꺼운 가죽 재질의 긴 더스터 코트. 소매가 없어 팔이 거치적거리지 않습니다. 주머니가 많이 달려 있습니다." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "민소매 생존용 더스터 코트" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "케블라로 보강한 수제 민소매 더스터 코트. 편안하고 튼튼하며, 주머니가 많이 달려 있어 저장 공간이 많습니다." - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -10182,18 +10003,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "두꺼운 가죽으로 만들어진 트렌치코트. 소매가 없어 팔이 불편하지 않고, 주머니가 많아 수납공간이 넓습니다." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "민소매 생존용 트렌치코트" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "케블라로 보강한 민소매 수제 트렌치코트. 편안하고 튼튼하며, 주머니가 많아 수납공간이 많습니다." - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -10209,7 +10018,7 @@ msgid "thawb" msgid_plural "thawb" msgstr[0] "토브" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -10259,18 +10068,6 @@ msgstr[0] "가죽 트렌치코트" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "두꺼운 가죽으로 만들어진 트렌치코트. 주머니가 일렬로 쭉 달려있어 수납공간이 많습니다." -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "생존용 트렌치코트" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "케블라로 보강한 수제 트렌치코트. 편안하고 튼튼하며, 주머니가 많아 수납공간이 많습니다." - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -10501,19 +10298,6 @@ msgstr[0] "선글라스" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "선글라스. 눈부심을 방지해줍니다." -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "생존용 고글" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" -"썬팅한 렌즈가 달린 수제 강화 고글. 편안하고 오래 쓸수 있도록 만들어 졌으며, 여러 환경적 위험에서 눈을 매우 효과적으로 보호합니다." - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -10855,23 +10639,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "생존용 방화장갑" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -10887,46 +10654,6 @@ msgid "pair of XL fur gloves" msgid_plural "pairs of XL fur gloves" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "중량형 생존용 장갑" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -10985,57 +10712,6 @@ msgid "pair of XL glove liners" msgid_plural "pairs of XL glove liners" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "경량형 생존용 장갑" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "생존용 반장갑" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -11072,18 +10748,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "고무로 만들어진 장갑. 주로 부식성 물질을 사용해서 청소를 하는데 쓰입니다." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "생존용 장갑" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -11195,34 +10859,6 @@ msgid "" "mischief." msgstr "손에 둘둘 말아서 사용하는 긴 양모 조각. 주먹질을 하거나 다른 행동을 할 때 약간의 보호력을 제공합니다." -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "겨울형 생존용 장갑" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "특대 생존용 장갑" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -11916,7 +11552,7 @@ msgid "kabuto" msgid_plural "kabuto" msgstr[0] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -12020,30 +11656,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "유목민 카울" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "긴 여행을 위해 만들어진 수제 머리 덮개. 얼굴 가리개가 비나 햇빛으로부터 눈을 보호합니다." - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -12093,30 +11705,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "수색꾼 카울" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "목까지 내려와 보호성이 확실한 머리 덮개로, 눈을 보호해주며 마스크처럼 쓸 수도 있습니다. 위험한 수색 작업에 적합합니다." - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -12304,36 +11892,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "생존용 하네스" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" -"주머니가 주렁주렁 달린 경량 수제 하네스. 소형 소총 혹은 유사한 무기를 고정할수 있는 줄이 달려 있습니다. 견고하며, 착용하기 " -"편안하도록 제작되었습니다. [사용]해서 무기를 넣거나 꺼낼수 있습니다." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -12381,71 +11939,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "생존용 방화후드" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "경량형 생존용 후드" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -12456,52 +11949,6 @@ msgstr[0] "방수 후드" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "생존용 후드" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "겨울형 생존용 후드" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "특대 생존용 후드" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -12880,9 +12327,9 @@ msgid "garnet and gold cufflinks" msgid_plural "garnet and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -12892,9 +12339,9 @@ msgid "diamond and gold cufflinks" msgid_plural "diamond and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -12904,9 +12351,9 @@ msgid "amethyst and gold cufflinks" msgid_plural "amethyst and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -12916,9 +12363,9 @@ msgid "aquamarine and gold cufflinks" msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -12928,9 +12375,9 @@ msgid "emerald and gold cufflinks" msgid_plural "emerald and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -12940,9 +12387,9 @@ msgid "alexandrite and gold cufflinks" msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -12952,9 +12399,9 @@ msgid "ruby and gold cufflinks" msgid_plural "ruby and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -12964,9 +12411,9 @@ msgid "peridot and gold cufflinks" msgid_plural "peridot and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -12976,9 +12423,9 @@ msgid "sapphire and gold cufflinks" msgid_plural "sapphire and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -12988,9 +12435,9 @@ msgid "tourmaline and gold cufflinks" msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -13000,9 +12447,9 @@ msgid "citrine and gold cufflinks" msgid_plural "citrine and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -13012,9 +12459,9 @@ msgid "blue topaz and gold cufflinks" msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -13024,9 +12471,9 @@ msgid "opal and gold cufflinks" msgid_plural "opal and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -13036,9 +12483,9 @@ msgid "pearl and gold cufflinks" msgid_plural "pearl and gold cufflinks" msgstr[0] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -16322,7 +15769,7 @@ msgid "turnout trousers" msgid_plural "turnout trousers" msgstr[0] "방열바지" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -16359,7 +15806,7 @@ msgid "leather chaps" msgid_plural "leather chaps" msgstr[0] "가죽 덧바지" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -16371,7 +15818,7 @@ msgid "chainsaw chaps" msgid_plural "chainsaw chaps" msgstr[0] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -16385,7 +15832,7 @@ msgid "fencing pants" msgid_plural "fencing pants" msgstr[0] "펜싱 바지" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "부상을 방지하기 위해 보강된 펜서용 바지." @@ -16546,30 +15993,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "경량형 생존용 카고바지" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "케블라로 보강한 경량 카고바지. 저장공간이 가능한 많게 만들었으며, 견고하고, 대부분 방수가 됩니다." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -16580,36 +16003,12 @@ msgstr[0] "오토바이 팬츠" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "오프로드 바이커와 오토바이 선수용으로 만들어진 바지." -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "생존용 카고바지" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -16621,7 +16020,7 @@ msgid "light EOD trousers" msgid_plural "light EOD trousers" msgstr[0] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -16646,7 +16045,7 @@ msgid "basketball shorts" msgid_plural "basketball shorts" msgstr[0] "농구용 반바지" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "농구용 반바지. 편안하고 가볍습니다." @@ -16656,7 +16055,7 @@ msgid "breeches" msgid_plural "breeches" msgstr[0] "브리치즈" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -16678,7 +16077,7 @@ msgid "hot pants" msgid_plural "hot pants" msgstr[0] "핫팬츠" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "평범한 핫팬츠." @@ -16688,7 +16087,7 @@ msgid "fur hot pants" msgid_plural "fur hot pants" msgstr[0] "모피 핫팬츠" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "평범한 모피 핫팬츠." @@ -16698,7 +16097,7 @@ msgid "leather hot pants" msgid_plural "leather hot pants" msgstr[0] "가죽 핫팬츠" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "평범한 가죽 핫팬츠." @@ -16708,7 +16107,7 @@ msgid "jeans" msgid_plural "jeans" msgstr[0] "청바지" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "두 개의 깊은 주머니가 있는 청바지." @@ -16740,7 +16139,7 @@ msgid "red jeans" msgid_plural "red jeans" msgstr[0] "빨간 청바지" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "두 개의 깊은 주머니를 가진 캔디 애플 레드색 청바지. 몸에 딱 달라붙습니다." @@ -16766,7 +16165,7 @@ msgid "leggings" msgid_plural "leggings" msgstr[0] "레깅스" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -16838,7 +16237,7 @@ msgid "pants" msgid_plural "pants" msgstr[0] "바지" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "카키색 바지. 청바지보다 조금 더 따뜻합니다." @@ -16848,15 +16247,15 @@ msgid "army pants" msgid_plural "army pants" msgstr[0] "전투복 하의" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "튼튼하고 주머니가 많은 바지. 군대에서 주로 사용됩니다." #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -16888,7 +16287,7 @@ msgid "cargo pants" msgid_plural "cargo pants" msgstr[0] "카고 바지" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "주머니가 많은 바지로, 상당량의 수납공간을 제공합니다." @@ -16898,7 +16297,7 @@ msgid "checkered pants" msgid_plural "checkered pants" msgstr[0] "체크무늬 바지" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "위기가 닥쳤을 경우, 이 바지로 간단하게 체커 게임을 둘 수 있습니다." @@ -16908,7 +16307,7 @@ msgid "fur pants" msgid_plural "fur pants" msgstr[0] "모피 바지" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "무거운 모피 바지." @@ -16918,7 +16317,7 @@ msgid "faux fur pants" msgid_plural "faux fur pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "따뜻한 인조 모피로 만든 긴 면화 바지. " @@ -16928,7 +16327,7 @@ msgid "leather pants" msgid_plural "leather pants" msgstr[0] "가죽 바지" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -16940,7 +16339,7 @@ msgid "ski pants" msgid_plural "ski pants" msgstr[0] "스키 바지" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "산악 스키를 위한 바지." @@ -16950,7 +16349,7 @@ msgid "police breeches" msgid_plural "police breeches" msgstr[0] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -16962,7 +16361,7 @@ msgid "mail carrier shorts" msgid_plural "mail carrier shorts" msgstr[0] "우체부 반바지" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "우체부가 착용하는 진한 파란색 반바지." @@ -16972,7 +16371,7 @@ msgid "shorts" msgid_plural "shorts" msgstr[0] "반바지" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "카키색 반바지." @@ -16982,7 +16381,7 @@ msgid "cargo shorts" msgid_plural "cargo shorts" msgstr[0] "카고 반바지" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "주머니가 일렬로 달린 카고 반바지. 괜찮은 수납공간을 제공합니다." @@ -16992,7 +16391,7 @@ msgid "denim shorts" msgid_plural "denim shorts" msgstr[0] "청반바지" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -17049,7 +16448,7 @@ msgid "striped pants" msgid_plural "striped pants" msgstr[0] "줄무늬 바지" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "수평으로 검은색과 흰색 줄무늬가 그려진 바지 한 벌." @@ -17078,7 +16477,7 @@ msgid "army winter pants" msgid_plural "army winter pants" msgstr[0] "겨울용 전투복 하의" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -18149,54 +17548,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "생존용 더플백" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "큼직한 맞춤형 더플백. 최대한 많은 물건을 집어넣을 수 있도록 튼튼하고 세심하게 만들어졌다." - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "생존용 배낭" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "맞춤형 배낭. 최대한 많은 물건을 집어넣을 수 있도록 튼튼하고 세심하게 만들어졌다." - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "생존용 큰 배낭" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "큼직한 맞춤형 배낭. 최대한 많은 물건을 집어넣을 수 있도록 튼튼하고 세심하게 만들어졌다." - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "생존용 러너팩" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "맞춤형 경량 러너팩. 최대한 많은 물건을 집어넣을 수 있도록 튼튼하고 세심하게 만들어졌다." - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -18599,31 +17950,6 @@ msgid "XL plate armor" msgid_plural "XL plate armors" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "유목민 외투" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "가벼운 유목민 외투" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -18664,8 +17990,8 @@ msgstr[0] "시위 진압용 보호구" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -18678,18 +18004,6 @@ msgstr[0] "일본 갑옷" msgid "An ornamental suit of Japanese samurai armor." msgstr "장식용 일본 사무라이 갑옷." -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "수색꾼 외투" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -18820,65 +18134,38 @@ msgid_plural "XL entry suits" msgstr[0] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "생존용 방화복" +msgid "gambeson" +msgid_plural "gambesons" +msgstr[0] "갬버슨" -#. ~ Description for survivor firesuit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" -"잘라낸 방탄조끼와 노멕스로 만들어진 강화된 방화 점프슈트를 사용해서 만든 무거운 수제 방어구. 화재와 각종 피해로부터 몸을 보호해줍니다." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." +msgstr "천을 누벼서 만든 두꺼운 외투. 갑옷 밑에 입거나 갑옷이 없다면 그냥 입도록 만들어진 것입니다." #: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "겨울형 생존용 슈트" - -#. ~ Description for winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" -msgstr[0] "갬버슨" - -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "천을 누벼서 만든 두꺼운 외투. 갑옷 밑에 입거나 갑옷이 없다면 그냥 입도록 만들어진 것입니다." - -#: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" #: lang/json/ARMOR_from_json.py @@ -18895,37 +18182,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "중량형 생존용 슈트" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "강화된 방탄조끼와 금속을 덧댄 가죽제 점프슈트를 사용해서 만든 무거운 수제 방어구입니다. 각종 피해로부터 몸을 보호해줍니다." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "경량형 생존용 슈트" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "잘라낸 방탄조끼와 천을 덧댄 잠수복을 사용해서 만든 경량 수제 방어구. 각종 피해로부터 몸을 보호해줍니다." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -18986,18 +18242,6 @@ msgid "" "experience." msgstr "전신, 면 소재 정장. 망해버린 세상에서의 삶을 진정한 신사의 삶으로 만들어줍니다." -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "생존용 슈트" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "방탄조끼와 보강된 가죽을 덧댄 점프슈트를 사용해서 만든 수제 방어구. 각종 피해로부터 몸을 보호해줍니다." - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -19006,9 +18250,9 @@ msgstr[0] "SWAT 방어구" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." -msgstr "많은 주머니가 달린 검은 방탄 방어구. 'SWAT'이라는 글자가 뒤에 새겨져 있습니다." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." +msgstr "" #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -19022,43 +18266,6 @@ msgid "" "Light and very comfortable." msgstr "모터사이클용 두꺼운 가죽 슈트. 가볍고 착용감이 아주 좋습니다." -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"강화된 방탄조끼와 단열 처리가 된 가죽제 점프슈트를 사용해서 만든 수제 방어구. 각종 피해로부터 몸을 보호해주며, 따뜻하지만 무겁습니다." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "특대 생존용 슈트" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "특대 중형 생존자 슈트" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"육중한 무게의 수제 갑옷. 거대한 가죽 전신 슈트에 방탄복과 금속 장갑이 덧대어 있다. 각종 피해로부터 몸을 보호해주지만 몸이 작은 " -"일반인에게는 맞지 않는다." - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -19124,42 +18331,6 @@ msgstr[0] "잠수모" msgid "A neoprene hood, commonly worn by divers." msgstr "잠수부들이 주로 착용하는 네오프렌 모자." -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "생존용 잠수모" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "네오프렌과 케블라로 보강된 수제 잠수모. 아주 강하고 튼튼합니다." - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "생존용 잠수복" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "잘라낸 방탄조끼와 강화된 네오프렌 잠수복을 사용해서 만든 경량 수제 방어구. 각종 피해로부터 몸을 보호해줍니다." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "생존용 잠수장갑" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "한 쌍의 케블라 보강 맞춤형 네오프렌 장갑. 극한 상황에서도 최고의 보호력과 착용감을 제공합니다." - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -19261,7 +18432,7 @@ msgid "lorica segmentata" msgid_plural "lorica segmentata" msgstr[0] "로리카 세그멘타타" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -19415,7 +18586,7 @@ msgid "tire leather armor" msgid_plural "tire leather armor" msgstr[0] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -19471,23 +18642,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "경량 방탄조끼. 옷 아래에 착용하기 좋습니다." -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "경량형 생존용 몸체 방호구" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -19737,7 +18891,7 @@ msgid "leotard" msgid_plural "leotard" msgstr[0] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -19820,7 +18974,7 @@ msgid "French maid clothes" msgid_plural "French maid clothes" msgstr[0] "프랑스풍 메이드복" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "프릴로 장식된 하얀 앞치마가 달린 파란색 프랑스풍 메이드복입니다." @@ -20103,7 +19257,7 @@ msgid "boxer briefs" msgid_plural "boxer briefs" msgstr[0] "남성용 드로어즈" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "오래된 질문이 있죠. 사각입니까? 삼각입니까? 난 둘 다." @@ -20113,7 +19267,7 @@ msgid "XL boxer briefs" msgid_plural "XL boxer briefs" msgstr[0] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -20123,7 +19277,7 @@ msgid "boxer shorts" msgid_plural "boxer shorts" msgstr[0] "사각팬티" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -20134,7 +19288,7 @@ msgid "XL boxer shorts" msgid_plural "XL boxer shorts" msgstr[0] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -20146,7 +19300,7 @@ msgid "boy shorts" msgid_plural "boy shorts" msgstr[0] "보이 쇼츠" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -20157,7 +19311,7 @@ msgid "XL boy shorts" msgid_plural "XL boy shorts" msgstr[0] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -20180,7 +19334,7 @@ msgid "briefs" msgid_plural "briefs" msgstr[0] "삼각팬티" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "삼각 팬티. 남성이 입기 편한 속옷입니다." @@ -20324,7 +19478,7 @@ msgid "panties" msgid_plural "panties" msgstr[0] "팬티" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -20383,7 +19537,7 @@ msgid "tights" msgid_plural "tights" msgstr[0] "타이즈" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -20406,7 +19560,7 @@ msgid "compression shorts" msgid_plural "compression shorts" msgstr[0] "압착 반바지" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -20438,6 +19592,871 @@ msgid "" "unitard provides overall coverage with great flexibility." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "유목민 외투" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "가벼운 유목민 외투" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "수색꾼 외투" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "경량형 생존용 슈트" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "잘라낸 방탄조끼와 천을 덧댄 잠수복을 사용해서 만든 경량 수제 방어구. 각종 피해로부터 몸을 보호해줍니다." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "생존용 슈트" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "방탄조끼와 보강된 가죽을 덧댄 점프슈트를 사용해서 만든 수제 방어구. 각종 피해로부터 몸을 보호해줍니다." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "특대 생존용 슈트" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "겨울형 생존용 슈트" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" +"강화된 방탄조끼와 단열 처리가 된 가죽제 점프슈트를 사용해서 만든 수제 방어구. 각종 피해로부터 몸을 보호해주며, 따뜻하지만 무겁습니다." + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "생존용 잠수복" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "잘라낸 방탄조끼와 강화된 네오프렌 잠수복을 사용해서 만든 경량 수제 방어구. 각종 피해로부터 몸을 보호해줍니다." + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "경량형 생존용 부츠" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "생존용 부츠" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "특대 생존용 부츠" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "겨울형 생존용 부츠" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "생존용 잠수신발" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "경량형 생존용 장갑" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "생존용 반장갑" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "생존용 장갑" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "특대 생존용 장갑" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "겨울형 생존용 장갑" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "생존용 잠수장갑" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "한 쌍의 케블라 보강 맞춤형 네오프렌 장갑. 극한 상황에서도 최고의 보호력과 착용감을 제공합니다." + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "유목민 카울" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "긴 여행을 위해 만들어진 수제 머리 덮개. 얼굴 가리개가 비나 햇빛으로부터 눈을 보호합니다." + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "생존용 후드" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "겨울형 생존용 후드" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "특대 생존용 후드" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "경량형 생존용 후드" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "생존용 잠수모" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "네오프렌과 케블라로 보강된 수제 잠수모. 아주 강하고 튼튼합니다." + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "수색꾼 카울" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "목까지 내려와 보호성이 확실한 머리 덮개로, 눈을 보호해주며 마스크처럼 쓸 수도 있습니다. 위험한 수색 작업에 적합합니다." + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "경량형 생존용 카고바지" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "케블라로 보강한 경량 카고바지. 저장공간이 가능한 많게 만들었으며, 견고하고, 대부분 방수가 됩니다." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "생존용 카고바지" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "생존용 더스터 코트" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "케블라로 보강한 수제 더스터 코트. 편안하고 튼튼하며, 주머니가 많이 달려 있어 저장 공간이 많습니다." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "민소매 생존용 더스터 코트" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "케블라로 보강한 수제 민소매 더스터 코트. 편안하고 튼튼하며, 주머니가 많이 달려 있어 저장 공간이 많습니다." + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "생존용 트렌치코트" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "케블라로 보강한 수제 트렌치코트. 편안하고 튼튼하며, 주머니가 많아 수납공간이 많습니다." + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "민소매 생존용 트렌치코트" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "케블라로 보강한 민소매 수제 트렌치코트. 편안하고 튼튼하며, 주머니가 많아 수납공간이 많습니다." + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "생존용 더플백" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "큼직한 맞춤형 더플백. 최대한 많은 물건을 집어넣을 수 있도록 튼튼하고 세심하게 만들어졌다." + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "생존용 배낭" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "맞춤형 배낭. 최대한 많은 물건을 집어넣을 수 있도록 튼튼하고 세심하게 만들어졌다." + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "생존용 큰 배낭" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "큼직한 맞춤형 배낭. 최대한 많은 물건을 집어넣을 수 있도록 튼튼하고 세심하게 만들어졌다." + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "생존용 러너팩" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "맞춤형 경량 러너팩. 최대한 많은 물건을 집어넣을 수 있도록 튼튼하고 세심하게 만들어졌다." + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "생존용 방화부츠" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "중량형 생존용 부츠" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "중량형 생존용 장갑" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "생존용 방화장갑" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "생존용 방화후드" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "생존용 방화복" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" +"잘라낸 방탄조끼와 노멕스로 만들어진 강화된 방화 점프슈트를 사용해서 만든 무거운 수제 방어구. 화재와 각종 피해로부터 몸을 보호해줍니다." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "중량형 생존용 슈트" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "강화된 방탄조끼와 금속을 덧댄 가죽제 점프슈트를 사용해서 만든 무거운 수제 방어구입니다. 각종 피해로부터 몸을 보호해줍니다." + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "특대 중형 생존자 슈트" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" +"육중한 무게의 수제 갑옷. 거대한 가죽 전신 슈트에 방탄복과 금속 장갑이 덧대어 있다. 각종 피해로부터 몸을 보호해주지만 몸이 작은 " +"일반인에게는 맞지 않는다." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "경량형 생존용 몸체 방호구" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "생존용 벨트" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "생존용 고글" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" +"썬팅한 렌즈가 달린 수제 강화 고글. 편안하고 오래 쓸수 있도록 만들어 졌으며, 여러 환경적 위험에서 눈을 매우 효과적으로 보호합니다." + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "생존용 하네스" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" +"주머니가 주렁주렁 달린 경량 수제 하네스. 소형 소총 혹은 유사한 무기를 고정할수 있는 줄이 달려 있습니다. 견고하며, 착용하기 " +"편안하도록 제작되었습니다. [사용]해서 무기를 넣거나 꺼낼수 있습니다." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -20548,7 +20567,7 @@ msgid "impact knuckles" msgid_plural "impact knuckles" msgstr[0] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -20560,7 +20579,7 @@ msgid "skewer knuckles" msgid_plural "skewer knuckles" msgstr[0] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -20709,7 +20728,7 @@ msgid "pair of XL combat boots" msgid_plural "pair of XL combat boots" msgstr[0] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -20719,7 +20738,7 @@ msgid "pair of XL tactical gloves" msgid_plural "pair of XL tactical gloves" msgstr[0] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -20731,7 +20750,7 @@ msgid "pair of Killophant gloves" msgid_plural "pair of Killophant gloves" msgstr[0] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -20974,7 +20993,7 @@ msgid "psychrophile handling gloves" msgid_plural "psychrophile handling gloves" msgstr[0] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -21114,18 +21133,6 @@ msgid "" " ridiculously heavy." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -21244,7 +21251,7 @@ msgid "CRIT trousers" msgid_plural "CRIT trousers" msgstr[0] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -21256,7 +21263,7 @@ msgid "CRIT pants" msgid_plural "CRIT pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -21296,6 +21303,11 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -21434,7 +21446,7 @@ msgid "Force Shield" msgid_plural "Force Shield" msgstr[0] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -21883,7 +21895,7 @@ msgid "freerunner's boots" msgid_plural "freerunner's boots" msgstr[0] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -21950,7 +21962,7 @@ msgid "enchanted parabolan wool blouse" msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -21964,7 +21976,7 @@ msgid "enchanted parabolan wool breeches" msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -21991,7 +22003,7 @@ msgid "parabolan wool breeches" msgid_plural "parabolan wool breeches" msgstr[0] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -22044,7 +22056,7 @@ msgid "slick icy coatings" msgid_plural "slick icy coatings" msgstr[0] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -22097,7 +22109,7 @@ msgid "frost armor" msgid_plural "frost armor" msgstr[0] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -22107,7 +22119,7 @@ msgid "stoneskin coating" msgid_plural "stoneskin coating" msgstr[0] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -22197,7 +22209,7 @@ msgid "spiritual armor" msgid_plural "spiritual armor" msgstr[0] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -22207,7 +22219,7 @@ msgid "auroral shell" msgid_plural "auroral shell" msgstr[0] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -22285,15 +22297,17 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "CBM:합금 보호판-팔" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -22310,39 +22324,32 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" -msgstr[0] "CBM:합금 보호판-머리" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" -msgstr[0] "CBM:합금 보호판-다리" - -#. ~ Description for Legs Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" -msgstr[0] "CBM:합금 보호판-상체" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -23017,7 +23024,7 @@ msgid "Power Storage CBM Mk. II" msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -23419,7 +23426,7 @@ msgid "Squeaky Ankles" msgid_plural "Squeaky Ankles" msgstr[0] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -23613,7 +23620,7 @@ msgid "Self-Locking Thumbs" msgid_plural "Self-Locking Thumbs" msgstr[0] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -24862,7 +24869,7 @@ msgid "knife fighter's notes" msgid_plural "knife fighter's notes" msgstr[0] "나이프 파이터의 노트" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -25102,7 +25109,7 @@ msgid "plans for a radio repeater mod" msgid_plural "plans for a radio repeater mod" msgstr[0] "라디오 중계기 모듈 설치 계획" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -25137,7 +25144,7 @@ msgid "trifacet handling procedures" msgid_plural "trifacet handling procedures" msgstr[0] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -25151,7 +25158,7 @@ msgid "schematics" msgid_plural "schematics" msgstr[0] "도식" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -25159,9 +25166,9 @@ msgstr[0] "도식" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -25175,7 +25182,7 @@ msgid "nurse bot schematics" msgid_plural "nurse bot schematics" msgstr[0] "간호 로봇 도식" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -25189,7 +25196,7 @@ msgid "grocery bot schematics" msgid_plural "grocery bot schematics" msgstr[0] "잡화점 로봇 도식" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -25203,7 +25210,7 @@ msgid "police bot schematics" msgid_plural "police bot schematics" msgstr[0] "경찰 로봇 도식" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -25216,7 +25223,7 @@ msgid "eyebot schematics" msgid_plural "eyebot schematics" msgstr[0] "아이봇 도식" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -25229,7 +25236,7 @@ msgid "security bot schematics" msgid_plural "security bot schematics" msgstr[0] "보안 로봇 도식" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -25242,7 +25249,7 @@ msgid "skitterbot schematics" msgid_plural "skitterbot schematics" msgstr[0] "스키터봇 도식" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -25255,7 +25262,7 @@ msgid "cleaner bot schematics" msgid_plural "cleaner bot schematics" msgstr[0] "청소 로봇 도식" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -25268,7 +25275,7 @@ msgid "miner bot schematics" msgid_plural "miner bot schematics" msgstr[0] "채광 로봇 도식" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -25281,7 +25288,7 @@ msgid "riot control bot schematics" msgid_plural "riot control bot schematics" msgstr[0] "시위진압 로봇 도식" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -25294,7 +25301,7 @@ msgid "lab defense bot schematics" msgid_plural "lab defense bot schematics" msgstr[0] "연구소 방어 로봇 도식" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -25307,7 +25314,7 @@ msgid "dispatch schematics" msgid_plural "dispatch schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -25321,7 +25328,7 @@ msgid "military dispatch schematics" msgid_plural "military dispatch schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -25335,7 +25342,7 @@ msgid "anti-materiel turret schematics" msgid_plural "anti-materiel turret schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -25348,7 +25355,7 @@ msgid "milspec searchlight schematics" msgid_plural "milspec searchlight schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -25923,7 +25930,7 @@ msgid "The Spirit of Aikido" msgid_plural "The Spirit of Aikido" msgstr[0] "합기도의 정신" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "" @@ -25935,7 +25942,7 @@ msgid "Practical Pugilism" msgid_plural "Practical Pugilism" msgstr[0] "실용적인 권투" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -25946,7 +25953,7 @@ msgid "Capoeira 100" msgid_plural "Capoeira 100" msgstr[0] "카포에이라 100" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "" @@ -25958,7 +25965,7 @@ msgid "The Centipede Lu Feng" msgid_plural "The Centipede Lu Feng" msgstr[0] "지네 루 펑" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "" @@ -25970,7 +25977,7 @@ msgid "The Red Crane" msgid_plural "The Red Crane" msgstr[0] "붉은 학" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "학권에 대한 완벽한 안내서." @@ -25980,7 +25987,7 @@ msgid "The Jade Dragon" msgid_plural "The Jade Dragon" msgstr[0] "옥룡" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "용권에 대한 완벽한 안내서." @@ -25990,7 +25997,7 @@ msgid "Practical Eskrima" msgid_plural "Practical Eskrima" msgstr[0] "실용적인 에스크리마" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "" @@ -26002,7 +26009,7 @@ msgid "The Modern Swordsman" msgid_plural "The Modern Swordsman" msgstr[0] "현대의 검객" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "" @@ -26014,7 +26021,7 @@ msgid "Kodokan Judo" msgid_plural "Kodokan Judo" msgstr[0] "강도관 유도" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "유도에 대한 완벽한 안내서. (역주: 실존서적)" @@ -26024,7 +26031,7 @@ msgid "The Shotokan Karate Handbook" msgid_plural "The Shotokan Karate Handbook" msgstr[0] "송도관 가라테 안내서" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "" @@ -26036,7 +26043,7 @@ msgid "Complete Krav Maga" msgid_plural "Complete Krav Maga" msgstr[0] "완벽한 크라브 마가" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "" @@ -26048,7 +26055,7 @@ msgid "The Deaf Leopard" msgid_plural "The Deaf Leopard" msgstr[0] "귀머거리 표범" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "표범권에 대한 완벽한 안내서." @@ -26058,7 +26065,7 @@ msgid "The Lizard Kuo Chui" msgid_plural "The Lizard Kuo Chui" msgstr[0] "도마뱀 쿠오 초이" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "" @@ -26070,7 +26077,7 @@ msgid "Ultimate Muay Thai" msgid_plural "Ultimate Muay Thai" msgstr[0] "궁극의 무에타이" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "" @@ -26082,7 +26089,7 @@ msgid "Essence of Ninjutsu" msgid_plural "Essence of Ninjutsu" msgstr[0] "인술의 정수" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "" @@ -26094,7 +26101,7 @@ msgid "The Book of Five Rings" msgid_plural "The Book of Five Rings" msgstr[0] "오륜서" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -26108,7 +26115,7 @@ msgid "The Modern Pankratiast" msgid_plural "The Modern Pankratiast" msgstr[0] "현대의 판크라티온" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "판크라티온에 대한 완벽한 안내서." @@ -26118,7 +26125,7 @@ msgid "The Scorpion Sun Chien" msgid_plural "The Scorpion Sun Chien" msgstr[0] "전갈 순 치엔" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "" @@ -26130,7 +26137,7 @@ msgid "The Indonesian Warrior" msgid_plural "The Indonesian Warrior" msgstr[0] "인도네시아 전사" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "픈짝 실랏에 대한 완벽한 안내서." @@ -26140,7 +26147,7 @@ msgid "The Black Snake" msgid_plural "The Black Snake" msgstr[0] "흑사" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "사권에 대한 완벽한 안내서." @@ -26150,7 +26157,7 @@ msgid "Official Taekwondo Training Manual" msgid_plural "Official Taekwondo Training Manual" msgstr[0] "공식 태권도 훈련교본" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -26162,7 +26169,7 @@ msgid "Becoming One with the Tao" msgid_plural "Becoming One with the Tao" msgstr[0] "도와 하나가 되다" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "태극권에 대한 완벽한 안내서. (역주: 실존서적)" @@ -26172,7 +26179,7 @@ msgid "The White Tiger" msgid_plural "The White Tiger" msgstr[0] "백호" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "호권에 대한 완벽한 안내서." @@ -26182,7 +26189,7 @@ msgid "The Toad Lo Mang" msgid_plural "The Toad Lo Mang" msgstr[0] "두꺼비 로 망" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "" @@ -26194,7 +26201,7 @@ msgid "The Viper Wei Pai" msgid_plural "The Viper Wei Pai" msgstr[0] "살무사 웨이 파이" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "" @@ -26206,7 +26213,7 @@ msgid "Zui Quan and You" msgid_plural "Zui Quan and You" msgstr[0] "취권과 당신" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "취권에 대한 완벽한 안내서." @@ -26216,7 +26223,7 @@ msgid "The Way of the Spear" msgid_plural "The Way of the Spear" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "무술의 일종인 창술에 대한 완벽한 안내서." @@ -26226,7 +26233,7 @@ msgid "Beautiful Springtime" msgid_plural "Beautiful Springtime" msgstr[0] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -26237,7 +26244,7 @@ msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -26250,7 +26257,7 @@ msgid "Historic European Swordfighting" msgid_plural "Historic European Swordfighting" msgstr[0] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -26397,7 +26404,7 @@ msgid "Ranch Prospectus" msgid_plural "Ranch Prospectus" msgstr[0] "농장 계획서" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -27215,7 +27222,7 @@ msgid "patient treatment records" msgid_plural "patient treatment records" msgstr[0] "환자 진료기록" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "끔찍한 수술 사례들이 실린, 거대한 의료 기록 뭉터기입니다." @@ -27225,7 +27232,7 @@ msgid "national weather transcripts" msgid_plural "national weather transcripts" msgstr[0] "국가 기상기록" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "옛 날씨 기록은 언제나 흥미롭습니다. 저기 있는 바위 만큼이나요." @@ -30531,7 +30538,7 @@ msgid "chicken walker schematics" msgid_plural "chicken walker schematics" msgstr[0] "치킨 워커 도식" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -30545,7 +30552,7 @@ msgid "diamond press schematics" msgid_plural "diamond press schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -30559,7 +30566,7 @@ msgid "nano forge schematics" msgid_plural "nano forge schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -30573,7 +30580,7 @@ msgid "tank drone schematics" msgid_plural "tank drone schematics" msgstr[0] "탱크 드론 도식" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -30587,7 +30594,7 @@ msgid "tripod schematics" msgid_plural "tripod schematics" msgstr[0] "트라이포드 도식" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -30803,7 +30810,7 @@ msgid "Scorching Sirocco" msgid_plural "Scorching Sirocco" msgstr[0] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -30813,7 +30820,7 @@ msgid "Perfect Clarity of Mind and Body" msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -30823,7 +30830,7 @@ msgid "The Book of Mudora" msgid_plural "The Book of Mudora" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -30835,7 +30842,7 @@ msgid "Stormguard Warrior" msgid_plural "Stormguard Warrior" msgstr[0] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -30845,7 +30852,7 @@ msgid "The Life and Work of Tiger Sauer" msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -30857,7 +30864,7 @@ msgid "Pocket Monster Encyclopedia" msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -30870,7 +30877,7 @@ msgid "Distant Horizon" msgid_plural "Distant Horizon" msgstr[0] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -30880,7 +30887,7 @@ msgid "Jedi Holocrons: Form I" msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -30892,7 +30899,7 @@ msgid "Shards of Granite" msgid_plural "Shards of Granite" msgstr[0] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -30902,7 +30909,7 @@ msgid "Reaping Talons" msgid_plural "Reaping Talons" msgstr[0] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -30927,6 +30934,20 @@ msgstr[0] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -32850,7 +32871,7 @@ msgid "bird litter" msgid_plural "bird litter" msgstr[0] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -32901,13 +32922,13 @@ msgid "bleach" msgid_plural "bleach" msgstr[0] "표백제" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -32919,7 +32940,7 @@ msgid "ammonia" msgid_plural "ammonia" msgstr[0] "암모니아" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -32931,7 +32952,7 @@ msgid "liquid fertilizer" msgid_plural "liquid fertilizer" msgstr[0] "액체비료" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -32941,7 +32962,7 @@ msgid "commercial fertilizer" msgid_plural "commercial fertilizer" msgstr[0] "화학비료" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -32951,7 +32972,7 @@ msgid "fungicide" msgid_plural "fungicide" msgstr[0] "살진균제" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -32963,7 +32984,7 @@ msgid "insecticide" msgid_plural "insecticide" msgstr[0] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -32975,7 +32996,7 @@ msgid "salt water" msgid_plural "salt water" msgstr[0] "소금물" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "소금이 들은 물. 마시기엔 좋지 않습니다." @@ -32985,7 +33006,7 @@ msgid "soapy water" msgid_plural "soapy water" msgstr[0] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -33005,7 +33026,7 @@ msgid "sulfuric acid" msgid_plural "sulfuric acid" msgstr[0] "황산" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -33021,7 +33042,7 @@ msgid "hydrochloric acid" msgid_plural "hydrochloric acid" msgstr[0] "염산" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -33036,7 +33057,7 @@ msgid "nitric acid" msgid_plural "nitric acid" msgstr[0] "질산" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -33067,7 +33088,7 @@ msgid "sewage water" msgid_plural "sewage water" msgstr[0] "하수도 물" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -33077,7 +33098,7 @@ msgid "lye" msgid_plural "lye" msgstr[0] "가성소다" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -33089,7 +33110,7 @@ msgid "ether" msgid_plural "ether" msgstr[0] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -33103,7 +33124,7 @@ msgid "dimethyl sulfoxide" msgid_plural "dimethyl sulfoxide" msgstr[0] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -33117,7 +33138,7 @@ msgid "chloroform" msgid_plural "chloroform" msgstr[0] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -33130,7 +33151,7 @@ msgid "phenol" msgid_plural "phenol" msgstr[0] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -33145,7 +33166,7 @@ msgid "glycerol" msgid_plural "glycerol" msgstr[0] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -33157,7 +33178,7 @@ msgid "peptone broth powder" msgid_plural "peptone broth powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -33170,7 +33191,7 @@ msgid "agar" msgid_plural "agar" msgstr[0] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -33184,7 +33205,7 @@ msgid "acrylamide" msgid_plural "acrylamide" msgstr[0] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -33196,7 +33217,7 @@ msgid "acetylene" msgid_plural "acetylene" msgstr[0] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -33208,7 +33229,7 @@ msgid "formic acid" msgid_plural "formic acid" msgstr[0] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -33220,7 +33241,7 @@ msgid "latex" msgid_plural "latex" msgstr[0] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -33230,7 +33251,7 @@ msgid "citric acid" msgid_plural "citric acid" msgstr[0] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -33301,13 +33322,23 @@ msgid "acetic anhydride" msgid_plural "acetic anhydride" msgstr[0] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -33342,7 +33373,7 @@ msgid "marloss wine" msgid_plural "marloss wine" msgstr[0] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -33352,7 +33383,7 @@ msgid "Riesling" msgid_plural "Riesling" msgstr[0] "" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "세계에서 가장 우수한 품질의 귀골 포도(noble grapes)로 만든 스파클링 화이트 와인." @@ -33362,7 +33393,7 @@ msgid "Chardonnay" msgid_plural "Chardonnay" msgstr[0] "샤르도네" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "미국에서 가장 인기 있는 와인. 인기가 좋은데는 다 이유가 있습니다." @@ -33372,7 +33403,7 @@ msgid "Cabernet Sauvignon" msgid_plural "Cabernet Sauvignon" msgstr[0] "카베르네 쇼비뇽" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -33385,7 +33416,7 @@ msgid "pinot noir" msgid_plural "pinot noir" msgstr[0] "피노 누아르" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -33398,7 +33429,7 @@ msgid "marsala" msgid_plural "marsala" msgstr[0] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -33408,7 +33439,7 @@ msgid "vermouth" msgid_plural "vermouth" msgstr[0] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -33420,7 +33451,7 @@ msgid "barley wine" msgid_plural "barley wine" msgstr[0] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -33430,7 +33461,7 @@ msgid "whiskey" msgid_plural "whiskey" msgstr[0] "위스키" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -33441,7 +33472,7 @@ msgid "vodka" msgid_plural "vodka" msgstr[0] "보드카" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -33453,7 +33484,7 @@ msgid "gin" msgid_plural "gin" msgstr[0] "진" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -33465,7 +33496,7 @@ msgid "rum" msgid_plural "rum" msgstr[0] "럼주" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -33477,7 +33508,7 @@ msgid "tequila" msgid_plural "tequila" msgstr[0] "데킬라" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -33489,7 +33520,7 @@ msgid "triple sec" msgid_plural "triple sec" msgstr[0] "트리플 섹" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "오렌지 향이 나는 이 술은 다양한 혼합주를 제조할 때 쓰입니다." @@ -33499,7 +33530,7 @@ msgid "cheap wine" msgid_plural "cheap wine" msgstr[0] "싸구려 와인" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "" @@ -33511,7 +33542,7 @@ msgid "strong mixed alcohol" msgid_plural "strong mixed alcohol" msgstr[0] "고농도 주정" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "맛에 상관 없이 이것저것 섞은 고농도의 주정" @@ -33521,7 +33552,7 @@ msgid "weak mixed alcohol" msgid_plural "weak mixed alcohol" msgstr[0] "저농도 주정" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "맛에 상관없이 이것저것을 섞은 저농도의 주정" @@ -33531,7 +33562,7 @@ msgid "fruit wine" msgid_plural "fruit wine" msgstr[0] "과일주" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -33542,7 +33573,7 @@ msgid "brandy" msgid_plural "brandy" msgstr[0] "브랜디" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -33554,7 +33585,7 @@ msgid "Irish coffee" msgid_plural "Irish coffee" msgstr[0] "아이리시 커피" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -33566,7 +33597,7 @@ msgid "Long Island iced tea" msgid_plural "Long Island iced tea" msgstr[0] "롱아일랜드 아이스티" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -33592,7 +33623,7 @@ msgid "wild apple" msgid_plural "wild apple" msgstr[0] "야생 사과" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "사과 주스 맛입니다. 단지 보드카를 넣은 것만 빼고요." @@ -33602,7 +33633,7 @@ msgid "rum & cola" msgid_plural "rum & cola" msgstr[0] "럼&콜라" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "열대 지방이나 캐나다 예술가들에게 맞는 음료입니다." @@ -33612,7 +33643,7 @@ msgid "beer" msgid_plural "beer" msgstr[0] "맥주" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -33624,7 +33655,7 @@ msgid "spiced mead" msgid_plural "spiced mead" msgstr[0] "벌꿀주" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -33635,7 +33666,7 @@ msgid "dandelion wine" msgid_plural "dandelion wine" msgstr[0] "민들레 술" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -33647,7 +33678,7 @@ msgid "burdock wine" msgid_plural "burdock wine" msgstr[0] "우엉 와인" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -33657,7 +33688,7 @@ msgid "pine wine" msgid_plural "pine wine" msgstr[0] "소나무 술" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -33669,7 +33700,7 @@ msgid "homebrew beer" msgid_plural "homebrew beer" msgstr[0] "수제 맥주" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "그다지 질이 높지는 않지만, 알코올은 충분합니다." @@ -33679,7 +33710,7 @@ msgid "moonshine" msgid_plural "moonshine" msgstr[0] "밀조주" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -33692,7 +33723,7 @@ msgid "European pilsner" msgid_plural "European pilsner" msgstr[0] "유러피안 필스너" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -33704,7 +33735,7 @@ msgid "American pale ale" msgid_plural "American pale ale" msgstr[0] "아메리칸 페일 에일" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -33716,7 +33747,7 @@ msgid "India pale ale" msgid_plural "India pale ale" msgstr[0] "인디아 페일 에일" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -33730,7 +33761,7 @@ msgid "stout" msgid_plural "stout" msgstr[0] "스타우트" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -33742,7 +33773,7 @@ msgid "Belgian ale" msgid_plural "Belgian ale" msgstr[0] "벨기안 에일" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -33754,7 +33785,7 @@ msgid "imperial stout" msgid_plural "imperial stout" msgstr[0] "임페리얼 스타우트" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -33797,7 +33828,7 @@ msgid "single malt whiskey" msgid_plural "single malt whiskey" msgstr[0] "싱글 몰트 위스키" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "마개부터 다른 최고급 위스키." @@ -33807,7 +33838,7 @@ msgid "single pot still Irish whiskey" msgid_plural "single pot still Irish whiskey" msgstr[0] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -33817,7 +33848,7 @@ msgid "cheap whiskey" msgid_plural "cheap whiskey" msgstr[0] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -33827,7 +33858,7 @@ msgid "Canadian whiskey" msgid_plural "Canadian whiskey" msgstr[0] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -33837,7 +33868,7 @@ msgid "sherry" msgid_plural "sherry" msgstr[0] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -33848,7 +33879,7 @@ msgid "Bristol Cream" msgid_plural "Bristol Cream" msgstr[0] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -33860,7 +33891,7 @@ msgid "Madeira wine" msgid_plural "Madeira wine" msgstr[0] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -33870,7 +33901,7 @@ msgid "fancy hobo" msgid_plural "fancy hobo" msgstr[0] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "확실히 노숙자가 마실 법한 맛이다." @@ -33880,7 +33911,7 @@ msgid "kalimotxo" msgid_plural "kalimotxo" msgstr[0] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -33893,7 +33924,7 @@ msgid "bee's knees" msgid_plural "bee's knees" msgstr[0] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -33981,7 +34012,7 @@ msgid "hard seltzer" msgid_plural "hard seltzer" msgstr[0] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -33991,7 +34022,7 @@ msgid "pumpkin muffin" msgid_plural "pumpkin muffin" msgstr[0] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -34001,7 +34032,7 @@ msgid "donut holes" msgid_plural "donut holes" msgstr[0] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -34013,7 +34044,7 @@ msgid "sourdough bread" msgid_plural "sourdough bread" msgstr[0] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -34025,7 +34056,7 @@ msgid "flatbread" msgid_plural "flatbread" msgstr[0] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "발효시키지 않은 간단한 빵." @@ -34035,7 +34066,7 @@ msgid "bread" msgid_plural "bread" msgstr[0] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "몸에 좋고 배도 찬다." @@ -34045,7 +34076,7 @@ msgid "toast" msgid_plural "toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -34057,7 +34088,7 @@ msgid "buttered toast" msgid_plural "buttered toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -34067,7 +34098,7 @@ msgid "jam toast" msgid_plural "jam toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -34079,7 +34110,7 @@ msgid "peanut butter toast" msgid_plural "peanut butter toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -34090,7 +34121,7 @@ msgid "toad in a hole" msgid_plural "toad in a hole" msgstr[0] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -34100,7 +34131,7 @@ msgid "PBJ Toast" msgid_plural "PBJ Toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -34112,7 +34143,7 @@ msgid "cornbread" msgid_plural "cornbread" msgstr[0] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "몸에 좋고 맛도 좋은 옥수수빵." @@ -34142,7 +34173,7 @@ msgid "hardtack" msgid_plural "hardtack" msgstr[0] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -34164,7 +34195,7 @@ msgid "wastebread" msgid_plural "wastebread" msgstr[0] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -34179,7 +34210,7 @@ msgid "brown bread" msgid_plural "brown bread" msgstr[0] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -34189,7 +34220,7 @@ msgid "hallula" msgid_plural "hallula" msgstr[0] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -34431,18 +34462,18 @@ msgid "malting grain" msgid_plural "malting grain" msgstr[0] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -34452,8 +34483,8 @@ msgid "malted grain" msgid_plural "malted grain" msgstr[0] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -34465,14 +34496,14 @@ msgid "soaking dandelion" msgid_plural "soaking dandelion" msgstr[0] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -34482,7 +34513,7 @@ msgid "soaked dandelion" msgid_plural "soaked dandelion" msgstr[0] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -34507,7 +34538,7 @@ msgid "cooked fish" msgid_plural "cooked fish" msgstr[0] "생선 (요리됨)" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "갓 요리된 생선입니다. 영양가가 아주 높습니다." @@ -34604,7 +34635,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "갓 잘라낸 신선한 고기입니다. 날것으로 먹을 수 있긴 하지만, 요리해서 먹는 편이 더 좋습니다." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -34700,7 +34731,7 @@ msgid "mutant blood" msgid_plural "mutant blood" msgstr[0] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -34736,7 +34767,7 @@ msgid "mutant human blood" msgid_plural "mutant human blood" msgstr[0] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -34778,7 +34809,7 @@ msgid "butchery refuse" msgid_plural "butchery refuse" msgstr[0] "고기 부산물" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -34860,7 +34891,7 @@ msgid "cooked offal" msgid_plural "cooked offal" msgstr[0] "내장 (요리됨)" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -34875,7 +34906,7 @@ msgid "mutant organs" msgid_plural "mutant organs" msgstr[0] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -34885,7 +34916,7 @@ msgid "pickled offal" msgid_plural "pickled offal" msgstr[0] "내장 식초절임" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -34900,7 +34931,7 @@ msgid "canned offal" msgid_plural "canned offal" msgstr[0] "내장 통조림" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -34932,28 +34963,25 @@ msgid "meat jerky" msgid_plural "meat jerky" msgstr[0] "육포" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "인육 육포" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "몬스터 육포" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -34964,7 +34992,7 @@ msgid "salted fish" msgid_plural "salted fish" msgstr[0] "생선 소금절임" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -34975,31 +35003,25 @@ msgid "smoked meat" msgid_plural "smoked meats" msgstr[0] "훈제 고기" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "훈제 인육" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -35018,7 +35040,7 @@ msgid "smoked fish" msgid_plural "smoked fish" msgstr[0] "훈제 생선" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -35068,7 +35090,7 @@ msgid "mutant lungs" msgid_plural "mutant lungs" msgstr[0] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -35116,7 +35138,7 @@ msgid "raw brains" msgid_plural "raw brains" msgstr[0] "생 뇌" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "동물에서 얻은 생 뇌. 이걸 날것으로 먹고 싶진 않습니다…" @@ -35126,7 +35148,7 @@ msgid "cooked brains" msgid_plural "cooked brains" msgstr[0] "요리된 뇌" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -35199,7 +35221,7 @@ msgstr[0] "스위트브레드 (요리됨)" msgid "Normally a delicacy, it needs a little… something." msgstr "흔히 별미로 먹지만, 이것만으로는 뭔가… 부족하다." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "인간의 것으로 보이는 혈액입니다. 역겹네요!" @@ -35348,7 +35370,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "확실히 몸에 해로운 고기입니다. 먹을 수는 있지만, 중독될 겁니다." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -35580,7 +35602,7 @@ msgid "alien fronds" msgid_plural "alien fronds" msgstr[0] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -35677,7 +35699,7 @@ msgid "demihuman flesh" msgid_plural "demihuman flesh" msgstr[0] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -35687,7 +35709,7 @@ msgid "demihuman blood" msgid_plural "demihuman blood" msgstr[0] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -35723,12 +35745,34 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -35741,7 +35785,7 @@ msgid "fish noodle casserole" msgid_plural "fish noodle casserole" msgstr[0] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -35753,7 +35797,7 @@ msgid "cereal" msgid_plural "cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -35763,7 +35807,7 @@ msgid "Foodplace cereal" msgid_plural "Foodplace cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -35774,7 +35818,7 @@ msgid "Snicker-Snacks cereal" msgid_plural "Snicker-Snacks cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -35786,7 +35830,7 @@ msgid "Carpenter Crunch cereal" msgid_plural "Carpenter Crunch cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -35798,7 +35842,7 @@ msgid "Brantastic cereal" msgid_plural "Brantastic cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -35810,7 +35854,7 @@ msgid "Sugar Chomps cereal" msgid_plural "Sugar Chomps cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -35822,7 +35866,7 @@ msgid "Honey Pellet cereal" msgid_plural "Honey Pellet cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -35846,7 +35890,7 @@ msgid "Foodios cereal" msgid_plural "Foodios cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -35868,7 +35912,7 @@ msgid "wheat cereal" msgid_plural "wheat cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -35890,7 +35934,7 @@ msgid "milk" msgid_plural "milk" msgstr[0] "우유" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "송아지를 위한 식품입니다만, 성인에게도 잘 맞습니다. 빨리 상합니다." @@ -35900,7 +35944,7 @@ msgid "chocolate milk" msgid_plural "chocolate milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -35910,7 +35954,7 @@ msgid "reconstituted milk" msgid_plural "reconstituted milk" msgstr[0] "환원유" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -35922,7 +35966,7 @@ msgid "raw milk" msgid_plural "raw milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -35936,7 +35980,7 @@ msgid "shelf stable milk" msgid_plural "shelf stable milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -35949,7 +35993,7 @@ msgid "evaporated milk" msgid_plural "evaporated milk" msgstr[0] "연유" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -35960,7 +36004,7 @@ msgid "buttermilk" msgid_plural "buttermilk" msgstr[0] "버터밀크" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -35982,7 +36026,7 @@ msgid "butter" msgid_plural "butter" msgstr[0] "버터" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -35993,7 +36037,7 @@ msgid "raw butter" msgid_plural "raw butter" msgstr[0] "생 버터" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -36004,7 +36048,7 @@ msgid "ghee" msgid_plural "ghee" msgstr[0] "기 버터" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -36038,7 +36082,7 @@ msgid "hard cheese" msgid_plural "hard cheese" msgstr[0] "딱딱한 치즈" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -36050,7 +36094,7 @@ msgid "cheese" msgid_plural "cheese" msgstr[0] "치즈" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "노란색 가공치즈 덩어리." @@ -36070,7 +36114,7 @@ msgid "powdered milk" msgid_plural "powdered milk" msgstr[0] "분유" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "우유 분말. 물과 섞으면 마실 수 있는 우유가 된다." @@ -36080,7 +36124,7 @@ msgid "condensed milk" msgid_plural "condensed milk" msgstr[0] "연유" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -36092,7 +36136,7 @@ msgid "whipped cream" msgid_plural "whipped cream" msgstr[0] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -36104,7 +36148,7 @@ msgid "heavy cream" msgid_plural "heavy cream" msgstr[0] "진한 크림" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -36114,7 +36158,7 @@ msgid "apple cider" msgid_plural "apple cider" msgstr[0] "사과주" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "신선한 사과에서 짜냈습니다. 맛있고 영양가도 풍부합니다." @@ -36148,7 +36192,7 @@ msgid "atomic coffee" msgid_plural "atomic coffee" msgstr[0] "방사능 커피" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -36163,7 +36207,7 @@ msgid "bee balm tea" msgid_plural "bee balm tea" msgstr[0] "향수박하 차" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -36185,7 +36229,7 @@ msgid "chai tea" msgid_plural "chai tea" msgstr[0] "마살라 차이" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "남부 아시아의 전통 차. 향료와 우유를 넣은 차입니다." @@ -36195,7 +36239,7 @@ msgid "chamomile tea" msgid_plural "chamomile tea" msgstr[0] "캐모마일 차" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -36219,7 +36263,7 @@ msgid "coffee" msgid_plural "coffee" msgstr[0] "커피" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -36234,7 +36278,7 @@ msgid "coffee substitute" msgid_plural "coffee substitute" msgstr[0] "커피 대용품" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -36247,7 +36291,7 @@ msgid "chicory brew" msgid_plural "chicory brew" msgstr[0] "치코리 차" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -36311,7 +36355,7 @@ msgid "dandelion tea" msgid_plural "dandelion tea" msgstr[0] "민들레차" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "민들레 뿌리를 끓는 물에 우린 음료. 건강에 좋다." @@ -36321,7 +36365,7 @@ msgid "dandelion and burdock tea" msgid_plural "dandelion and burdock tea" msgstr[0] "민들레와 우엉차" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -36376,7 +36420,7 @@ msgid "herbal tea" msgid_plural "herbal tea" msgstr[0] "허브티" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "끓는 물에 약초를 우려낸 건강에 좋은 음료." @@ -36386,7 +36430,7 @@ msgid "hot chocolate" msgid_plural "hot chocolate" msgstr[0] "코코아" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -36430,7 +36474,7 @@ msgid "lemonade" msgid_plural "lemonade" msgstr[0] "레모네이드" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -36455,7 +36499,7 @@ msgid "lotus tea" msgid_plural "lotus tea" msgstr[0] "연꽃 차" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "끓는 물에 연꽃잎을 우려낸 건강에 좋은 음료." @@ -36465,7 +36509,7 @@ msgid "Mexican hot chocolate" msgid_plural "Mexican hot chocolate" msgstr[0] "멕시코식 코코아" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -36522,7 +36566,7 @@ msgid "pine needle tea" msgid_plural "pine needle tea" msgstr[0] "솔잎차" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -36557,7 +36601,7 @@ msgid "root beer" msgid_plural "root beer" msgstr[0] "루트비어" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "콜라와 비슷하지만 카페인이 없는 음료입니다. 하지만 여전히 건강에는 좋지 않습니다." @@ -36591,13 +36635,13 @@ msgid "spurge tea" msgid_plural "spurge tea" msgstr[0] "대극 차" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -36621,7 +36665,7 @@ msgid "sweet water" msgid_plural "sweet water" msgstr[0] "단물" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "설탕이나 꿀을 탄 물. 맛은 괜찮다." @@ -36643,7 +36687,7 @@ msgid "willowbark tea" msgid_plural "willowbark tea" msgstr[0] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -36678,7 +36722,7 @@ msgid "water" msgid_plural "water" msgstr[0] "물" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -36690,7 +36734,7 @@ msgid "clean water" msgid_plural "clean water" msgstr[0] "깨끗한 물" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "정수라고 불리는 깨끗한 담수입니다. 갈증을 없애는 최고의 수단이죠." @@ -36700,7 +36744,7 @@ msgid "mineral water" msgid_plural "mineral water" msgstr[0] "미네랄 워터" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "고급스러운 미네랄 워터입니다. 무척 고급스러워서 단지 병을 들고 있는 것 만으로도 고급스러운 기분이 들도록 해줍니다." @@ -36819,7 +36863,7 @@ msgid "maple sap" msgid_plural "maple sap" msgstr[0] "단풍나무 수액" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "단풍나무로부터 추출한 설탕 수용액" @@ -36829,7 +36873,7 @@ msgid "mayonnaise" msgid_plural "mayonnaise" msgstr[0] "마요네즈" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -36852,7 +36896,7 @@ msgid "mustard" msgid_plural "mustard" msgstr[0] "머스타드" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -36864,7 +36908,7 @@ msgid "forest honey" msgid_plural "forest honey" msgstr[0] "자연산 꿀" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -36876,7 +36920,7 @@ msgid "vinegar" msgid_plural "vinegar" msgstr[0] "식초" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -36888,7 +36932,7 @@ msgid "vegetable cooking oil" msgid_plural "vegetable cooking oil" msgstr[0] "식물성 식용유" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "요리에 쓰는 연노란색 기름." @@ -36898,7 +36942,7 @@ msgid "animal cooking oil" msgid_plural "animal cooking oil" msgstr[0] "동물성 식용유" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "요리에 쓰는 연노란색 동물성 기름." @@ -36908,7 +36952,7 @@ msgid "molasses" msgid_plural "molasses" msgstr[0] "당밀" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -36920,7 +36964,7 @@ msgid "horseradish" msgid_plural "horseradish" msgstr[0] "서양 고추냉이" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "매운 뿌리채소를 갈아서 식초 소금물에 절였다." @@ -36930,7 +36974,7 @@ msgid "coffee syrup" msgid_plural "coffee syrup" msgstr[0] "커피 시럽" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -37237,7 +37281,7 @@ msgid "scrambled eggs" msgid_plural "scrambled eggs" msgstr[0] "스크램블 에그" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "부드럽고 맛있는 스크램블 에그." @@ -37257,7 +37301,7 @@ msgid "fried eggs" msgid_plural "fried eggs" msgstr[0] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -37269,7 +37313,7 @@ msgid "deluxe fried eggs" msgid_plural "deluxe fried eggs" msgstr[0] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -37281,7 +37325,7 @@ msgid "fried egg sandwich" msgid_plural "fried egg sandwich" msgstr[0] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -37293,7 +37337,7 @@ msgid "deluxe fried egg sandwich" msgid_plural "deluxe fried egg sandwich" msgstr[0] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -37474,7 +37518,7 @@ msgid "frozen yogurt" msgid_plural "frozen yogurt" msgstr[0] "얼은 요구르트" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -37538,7 +37582,7 @@ msgid "peaches in syrup" msgid_plural "peaches in syrup" msgstr[0] "시럽에 담근 복숭아" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -37560,7 +37604,7 @@ msgid "lemonade drink mix" msgid_plural "lemonade drink mix" msgstr[0] "레모네이드 가루" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -37592,7 +37636,7 @@ msgid "dehydrated fruit" msgid_plural "dehydrated fruit" msgstr[0] "건조처리 과일" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -37605,7 +37649,7 @@ msgid "rehydrated fruit" msgid_plural "rehydrated fruit" msgstr[0] "수분 공급된 과일" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -37628,7 +37672,7 @@ msgid "canned fruit" msgid_plural "canned fruit" msgstr[0] "과일 통조림" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -37640,7 +37684,7 @@ msgid "pumpkin yeast bread" msgid_plural "pumpkin yeast bread" msgstr[0] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -37662,7 +37706,7 @@ msgid "irradiated rose hips" msgid_plural "irradiated rose hips" msgstr[0] "방사선 살균된 들장미" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -38022,7 +38066,7 @@ msgid "irradiated broccoli" msgid_plural "irradiated broccoli" msgstr[0] "방사선 살균된 브로콜리" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -38070,7 +38114,7 @@ msgid "irradiated corn" msgid_plural "irradiated corn" msgstr[0] "방사선 살균된 옥수수" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -38118,7 +38162,7 @@ msgid "irradiated celery" msgid_plural "irradiated celery" msgstr[0] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -38130,7 +38174,7 @@ msgid "irradiated rhubarb" msgid_plural "irradiated rhubarb" msgstr[0] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -38232,12 +38276,12 @@ msgid "potato chips" msgid_plural "potato chips" msgstr[0] "감자칩" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "짭잘한 감자칩." -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "오 이런! 감자칩이여, 사랑한다! 제 점수는요!" @@ -38247,7 +38291,7 @@ msgid "popcorn kernels" msgid_plural "popcorn kernels" msgstr[0] "팝콘 낟알" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -38260,7 +38304,7 @@ msgid "popcorn" msgid_plural "popcorn" msgstr[0] "팝콘" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -38272,7 +38316,7 @@ msgid "salted popcorn" msgid_plural "salted popcorn" msgstr[0] "소금맛 팝콘" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "소금을 쳐서 맛을 낸 팝콘입니다." @@ -38282,7 +38326,7 @@ msgid "buttered popcorn" msgid_plural "buttered popcorn" msgstr[0] "버터맛 팝콘" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "버터를 살짝 묻혀 맛을 낸 팝콘입니다." @@ -38292,7 +38336,7 @@ msgid "pretzels" msgid_plural "pretzels" msgstr[0] "프레첼" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "소금 처리된 과자입니다." @@ -38322,7 +38366,7 @@ msgid "marshmallows" msgid_plural "marshmallows" msgstr[0] "마시멜로" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "질척질척하고, 폭신해보이며, 뭉실뭉실한 맛있는 마시멜로 한 움큼." @@ -38332,7 +38376,7 @@ msgid "s'mores" msgid_plural "s'mores" msgstr[0] "스모어" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -38364,7 +38408,7 @@ msgid "chewy candy" msgid_plural "chewy candy" msgstr[0] "츄잉캔디" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "다양한 색깔의 과일맛 씹어먹는 사탕." @@ -38374,12 +38418,12 @@ msgid "gummy candy" msgid_plural "gummy candy" msgstr[0] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -38423,7 +38467,7 @@ msgid "powder candy sticks" msgid_plural "powder candy sticks" msgstr[0] "분말 사탕" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -38492,7 +38536,7 @@ msgid "maple syrup" msgid_plural "maple syrup" msgstr[0] "메이플 시럽" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -38504,7 +38548,7 @@ msgid "sugar beet syrup" msgid_plural "sugar beet syrup" msgstr[0] "사탕무 시럽" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -38553,7 +38597,7 @@ msgid "fast-food French fries" msgid_plural "fast-food French fries" msgstr[0] "패스트푸드점 감자튀김" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "패스트 푸드인 감자 튀김입니다. 어쨌건, 아직 먹을 수 있습니다." @@ -38563,7 +38607,7 @@ msgid "French fries" msgid_plural "French fries" msgstr[0] "감자튀김" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "소금 한 줌과 같이 튀겨진 감자. 바삭바삭하고 맛이 좋습니다." @@ -38583,7 +38627,7 @@ msgid "Necco wafers" msgid_plural "Necco wafers" msgstr[0] "네코 캔디" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -38609,8 +38653,8 @@ msgid "caramel" msgid_plural "caramel" msgstr[0] "캐러멜" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "소량의 캐러멜. 건강에 좋지 않다." @@ -38620,7 +38664,7 @@ msgid "caramel apple" msgid_plural "caramel apple" msgstr[0] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "절대로 하나만 먹고는 못 배길겁니다." @@ -38630,7 +38674,7 @@ msgid "tortilla chips" msgid_plural "tortilla chips" msgstr[0] "토르티야 칩" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -38642,7 +38686,7 @@ msgid "cheese nachos" msgid_plural "cheese nachos" msgstr[0] "치즈 나쵸" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -38654,28 +38698,25 @@ msgid "meat nachos" msgid_plural "meat nachos" msgstr[0] "고기 나쵸" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "인육 나쵸" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "추파카브라 나쵸" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -38687,28 +38728,28 @@ msgid "meat nachos with cheese" msgid_plural "meat nachos with cheese" msgstr[0] "치즈 고기 나쵸" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "치즈 인육 나쵸" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "치즈 추파카브라 나쵸" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -38720,7 +38761,7 @@ msgid "vegetarian nachos" msgid_plural "vegetarian nachos" msgstr[0] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -38732,7 +38773,7 @@ msgid "vegetarian nachos with cheese" msgid_plural "vegetarian nachos with cheese" msgstr[0] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -38801,7 +38842,7 @@ msgid "chili dogs" msgid_plural "chili dogs" msgstr[0] "칠리 도그" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "칠리소스를 토핑으로 사용한 핫도그입니다. 냠냠!" @@ -38811,7 +38852,7 @@ msgid "uncooked corn dogs" msgid_plural "uncooked corn dogs" msgstr[0] "콘도그 (요리전)" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -38881,7 +38922,7 @@ msgid "cheese fries" msgid_plural "cheese fries" msgstr[0] "치즈 감자튀김" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "패스트 푸드 감자 튀김. 위쪽에는 맛있는 치즈가 듬뿍 뿌려져있습니다." @@ -38962,8 +39003,7 @@ msgid "candy-coated peanuts" msgid_plural "candy-coated peanuts" msgstr[0] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -39095,30 +39135,24 @@ msgid "raw sausage" msgid_plural "raw sausages" msgstr[0] "생 소시지" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "생 인육 소시지" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -39135,14 +39169,13 @@ msgid "smoked sausage" msgid_plural "smoked sausages" msgstr[0] "훈제 소시지" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "훈제 인육 소시지" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -39159,14 +39192,13 @@ msgid "cooked sausage" msgid_plural "cooked sausages" msgstr[0] "소시지 (요리)" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "인육 소시지 (요리)" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -39193,21 +39225,19 @@ msgid "bratwurst" msgid_plural "bratwursts" msgstr[0] "브라트부르스트" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "인육 브라트부르스트" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "프랑켄푸르트" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -39228,7 +39258,7 @@ msgid "royal beef" msgid_plural "royal beef" msgstr[0] "로얄 비프" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -39276,7 +39306,7 @@ msgid "cracklins" msgid_plural "cracklins" msgstr[0] "크래클린" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -39288,15 +39318,14 @@ msgid "glazed tenderloins" msgid_plural "glazed tenderloins" msgstr[0] "안심 데리야키" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" msgid_plural "grisly %s" msgstr[0] "소름돋는 %s" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -39309,23 +39338,21 @@ msgid "currywurst" msgid_plural "currywursts" msgstr[0] "카레 소시지" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" msgid_plural "cheapskate %s" msgstr[0] "인육 %s" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" msgid_plural "confusing %s" msgstr[0] "혼란스러운 %s" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -39344,27 +39371,24 @@ msgid "aspic" msgid_plural "aspics" msgstr[0] "아스픽" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" msgid_plural "abomination %s" msgstr[0] "혐오스러운 %s" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" msgid_plural "amoral %s" msgstr[0] "인육 %s" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -39384,7 +39408,7 @@ msgid "dehydrated fish" msgid_plural "dehydrated fish" msgstr[0] "건조처리 생선" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -39396,7 +39420,7 @@ msgid "rehydrated fish" msgid_plural "rehydrated fish" msgstr[0] "수분 공급된 생선" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -39408,7 +39432,7 @@ msgid "pickled fish" msgid_plural "pickled fish" msgstr[0] "생선 식초절임" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -39419,7 +39443,7 @@ msgid "canned fish" msgid_plural "canned fish" msgstr[0] "생선 통조림" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -39431,7 +39455,7 @@ msgid "batter fried fish" msgid_plural "batter fried fish" msgstr[0] "생선 튀김" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "바삭하고 맛있는 황금색 생선 튀김입니다." @@ -39461,8 +39485,7 @@ msgid "lunch meat" msgid_plural "lunch meats" msgstr[0] "런천 미트" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -39481,30 +39504,28 @@ msgid "bologna" msgid_plural "bologna" msgstr[0] "볼로냐 소시지" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" msgid_plural "brat %s" msgstr[0] "인육 %s" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" msgid_plural "Tumnis %s" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" msgid_plural "bleak %s" msgstr[0] "음산한 %s" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -39533,7 +39554,7 @@ msgid "SPAM" msgid_plural "SPAM" msgstr[0] "스팸" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -39570,22 +39591,20 @@ msgid "sausage gravy" msgid_plural "sausage gravies" msgstr[0] "소시지 그레이비" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "인육 소시지 그레이비" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -39604,30 +39623,28 @@ msgid "pemmican" msgid_plural "pemmican" msgstr[0] "페미컨" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" msgid_plural "prepper %s" msgstr[0] "인육 %s" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" msgid_plural "Orley %s" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" msgid_plural "pernicious %s" msgstr[0] "유해한 %s" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -39642,22 +39659,20 @@ msgid "hamburger helper" msgid_plural "hamburger helpers" msgstr[0] "햄버거 헬퍼" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" msgid_plural "halfling helper" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -39686,22 +39701,20 @@ msgid "chili con carne" msgid_plural "chilis con carne" msgstr[0] "칠리 콘 카르네" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "인육 칠리 콘 카르네" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "신다르 칠리 콘 카르네" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -39717,7 +39730,7 @@ msgid "pork and beans" msgid_plural "pork and beans" msgstr[0] "포크 앤 빈스" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -39731,7 +39744,7 @@ msgid "canned tuna fish" msgid_plural "canned tuna fish" msgstr[0] "참치 통조림" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "" @@ -39743,7 +39756,7 @@ msgid "canned salmon" msgid_plural "canned salmon" msgstr[0] "연어 통조림" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "연분홍색 생선살 통조림입니다!" @@ -39763,7 +39776,7 @@ msgid "pickled herring" msgid_plural "pickled herring" msgstr[0] "청어 식초절임" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "시큼한 일종의 화이트 소스에 절인 생선 조각." @@ -39783,15 +39796,13 @@ msgid "clam chowder" msgid_plural "clam chowders" msgstr[0] "대합 수프" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "고기 수프" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -39809,14 +39820,13 @@ msgid "baked beans" msgid_plural "baked beans" msgstr[0] "구운 콩" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "오크 앤 빈스" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "푹 익힌 고기와 콩. 맛과 양이 풍부하다." @@ -39826,14 +39836,13 @@ msgid "meat fried rice" msgid_plural "meat fried rice" msgstr[0] "고기 볶음밥" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "돌연변이 고기 볶음밥" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "고기를 넣어 맛있게 볶은 밥. 맛과 양이 풍부하다." @@ -39843,14 +39852,14 @@ msgid "deluxe beans and rice" msgid_plural "deluxe beans and rice" msgstr[0] "특제 콩밥" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "\"특제\" 콩밥" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -39862,20 +39871,19 @@ msgid "meat pie" msgid_plural "meat pies" msgstr[0] "고기 파이" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -39892,21 +39900,19 @@ msgid "meat pizza" msgid_plural "meat pizzas" msgstr[0] "고기 피자" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -39935,28 +39941,27 @@ msgid "deluxe scrambled eggs" msgid_plural "deluxe scrambled eggs" msgstr[0] "특제 스크램블 에그" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "\"특제\" 스크램블 에그" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -39968,14 +39973,13 @@ msgid "canned meat" msgid_plural "canned meats" msgstr[0] "고기 통조림" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -39994,14 +39998,13 @@ msgid "salted meat slice" msgid_plural "salted meat slices" msgstr[0] "고기 소금절임 조각" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -40018,29 +40021,27 @@ msgid "spaghetti bolognese" msgid_plural "spaghetti bolognese" msgstr[0] "스파게티 볼로네즈" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" msgid_plural "speaking spaghetti" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" msgid_plural "gnarly %s" msgstr[0] "끝내주는 %s" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "스파게티에 걸쭉한 고기 소스를 부은 것. 맛있겠군요!" @@ -40050,22 +40051,21 @@ msgid "lasagne" msgid_plural "lasagnes" msgstr[0] "라자냐" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" msgid_plural "Luigi %s" msgstr[0] "인육 %s" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" msgid_plural "Lab %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -40084,7 +40084,7 @@ msgid "fried SPAM" msgid_plural "fried SPAM" msgstr[0] "구운 스팸" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "구웠더니 스팸이 제법 맛있어졌습니다." @@ -40094,15 +40094,14 @@ msgid "cheeseburger" msgid_plural "cheeseburgers" msgstr[0] "치즈버거" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" msgid_plural "chump %s" msgstr[0] "인육 %s" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -40110,8 +40109,7 @@ msgid "elf %s" msgid_plural "elf %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -40142,21 +40140,19 @@ msgid "hamburger" msgid_plural "hamburgers" msgstr[0] "햄버거" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -40173,21 +40169,19 @@ msgid "sloppy joe" msgid_plural "sloppy joes" msgstr[0] "슬로피조" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "인육 샌드위치" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -40206,22 +40200,21 @@ msgid "taco" msgid_plural "tacos" msgstr[0] "타코" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" msgid_plural "tio %s" msgstr[0] "인육 %s" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" msgid_plural "talking %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -40240,14 +40233,13 @@ msgid "pickled meat" msgid_plural "pickled meats" msgstr[0] "고기 식초절임" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -40265,22 +40257,19 @@ msgid "dehydrated meat" msgid_plural "dehydrated meats" msgstr[0] "건조처리 고기" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" msgid_plural "%s, human" msgstr[0] "%s (인육)" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -40311,9 +40300,8 @@ msgid "haggis" msgid_plural "haggises" msgstr[0] "해기스" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -40336,7 +40324,7 @@ msgid "fish makizushi" msgid_plural "fish makizushi" msgstr[0] "생선 마키즈시" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -40348,15 +40336,14 @@ msgid "meat temaki" msgid_plural "meat temaki" msgstr[0] "고기 데마끼" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" msgid_plural "troubling %s" msgstr[0] "곤란한 %s" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -40368,7 +40355,7 @@ msgid "sashimi" msgid_plural "sashimi" msgstr[0] "생선회" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "날생선을 얇게 썰고 맛있는 야채를 곁들여 만든 회." @@ -40390,7 +40377,7 @@ msgid "pelmeni" msgid_plural "pelmenis" msgstr[0] "펠메니" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -40409,8 +40396,7 @@ msgid "homemade burrito" msgid_plural "homemade burritos" msgstr[0] "수제 부리토" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -40429,14 +40415,13 @@ msgid "raw meatball" msgid_plural "raw meatballs" msgstr[0] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -40453,14 +40438,13 @@ msgid "meatball" msgid_plural "meatballs" msgstr[0] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -40496,12 +40480,12 @@ msgid "prescription stimulant" msgid_plural "prescription stimulant" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -40546,7 +40530,7 @@ msgid "antibiotics" msgid_plural "antibiotics" msgstr[0] "항생제" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -40571,7 +40555,7 @@ msgid "antiparasitic drug" msgid_plural "antiparasitic drug" msgstr[0] "구충제" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -40645,7 +40629,7 @@ msgid "antiseptic powder" msgid_plural "antiseptic powder" msgstr[0] "가루 소독제" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -40697,7 +40681,7 @@ msgid "hydrogen peroxide" msgid_plural "hydrogen peroxide" msgstr[0] "과산화수소" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -40749,12 +40733,12 @@ msgid "codeine" msgid_plural "codeine" msgstr[0] "코데인" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "코데인을 복용했다." -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -40769,7 +40753,7 @@ msgid "cocaine" msgid_plural "cocaine" msgstr[0] "코카인" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -40813,7 +40797,7 @@ msgid "cotton balls" msgid_plural "cotton balls" msgstr[0] "목화송이" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -40826,12 +40810,12 @@ msgid "crack" msgid_plural "crack" msgstr[0] "크랙" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "크랙을 피웠습니다. 엄마가 자랑스러워하겠네요." -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -40843,7 +40827,7 @@ msgid "non-drowsy cough syrup" msgid_plural "non-drowsy cough syrup" msgstr[0] "비 수면유도성 기침약" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -40858,7 +40842,7 @@ msgid "antiseptic" msgid_plural "antiseptic" msgstr[0] "소독제" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "오염된 상처에 사용되는 강력한 소독약입니다." @@ -40879,7 +40863,7 @@ msgid "prescription sedative" msgid_plural "prescription sedative" msgstr[0] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -40891,12 +40875,12 @@ msgid "high quality shatter" msgid_plural "high quality shatter" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -40912,12 +40896,12 @@ msgid "high quality wax" msgid_plural "high quality wax" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -40932,12 +40916,12 @@ msgid "high quality crude oil" msgid_plural "high quality crude oil" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -40950,16 +40934,14 @@ msgid "low quality crude oil" msgid_plural "low quality crude oil" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -40972,7 +40954,7 @@ msgid "(ethanol) low quality crude oil" msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -40985,7 +40967,7 @@ msgid "(ethanol) high quality crude oil" msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -40998,7 +40980,7 @@ msgid "(ethanol) filtered low quality crude oil" msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -41011,7 +40993,7 @@ msgid "(ethanol) filtered high quality crude oil" msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -41024,7 +41006,7 @@ msgid "filtered low quality crude oil" msgid_plural "filtered low quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -41038,7 +41020,7 @@ msgid "filtered high quality crude oil" msgid_plural "filtered high quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -41052,7 +41034,7 @@ msgid "high quality distillate (heads)" msgid_plural "high quality distillate (heads)" msgstr[0] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -41065,7 +41047,7 @@ msgid "high quality distillate (tails)" msgid_plural "high quality distillate (tails)" msgstr[0] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -41078,12 +41060,12 @@ msgid "high quality distillate" msgid_plural "high quality distillate" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -41160,7 +41142,7 @@ msgid "chewing gum" msgid_plural "chewing gum" msgstr[0] "껌" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -41185,13 +41167,13 @@ msgid "heroin" msgid_plural "heroin" msgstr[0] "헤로인" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "주사했다." -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -41266,7 +41248,7 @@ msgid "low-grade methamphetamine" msgid_plural "low-grade methamphetamine" msgstr[0] "저급 메탐페타민" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -41281,7 +41263,7 @@ msgid "high-grade methamphetamine" msgid_plural "high-grade methamphetamine" msgstr[0] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -41330,7 +41312,7 @@ msgid "cough syrup" msgid_plural "cough syrup" msgstr[0] "기침약" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -41359,7 +41341,7 @@ msgid "sleeping pill" msgid_plural "sleeping pill" msgstr[0] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -41402,7 +41384,7 @@ msgid "poppy cough syrup" msgid_plural "poppy cough syrup" msgstr[0] "양귀비 기침약" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "변이된 양귀비로 만든 기침약. 수면을 유도한다." @@ -41412,15 +41394,14 @@ msgid "injectable prophylactic antivenom" msgid_plural "injectable prophylactic antivenom" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -41434,7 +41415,7 @@ msgid "antidepressant" msgid_plural "antidepressant" msgstr[0] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -41464,7 +41445,7 @@ msgid "hemostatic powder" msgid_plural "hemostatic powder" msgstr[0] "지혈제" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -41488,7 +41469,7 @@ msgid "antipsychotic" msgid_plural "antipsychotic" msgstr[0] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -41735,12 +41716,12 @@ msgid "marijuana" msgid_plural "marijuana" msgstr[0] "마리화나" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "대마에 불을 붙였다. 이거 좋구먼, 친구!" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -41755,7 +41736,7 @@ msgid "fast-acting sedative" msgid_plural "fast-acting sedative" msgstr[0] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -41780,7 +41761,7 @@ msgid "antiseptic soaked cotton balls" msgid_plural "antiseptic soaked cotton balls" msgstr[0] "소독제 적신 목화송이" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -41792,7 +41773,7 @@ msgid "narrow-spectrum antibiotics" msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -41858,7 +41839,7 @@ msgid "broad-spectrum antibiotics" msgid_plural "broad-spectrum antibiotics" msgstr[0] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -41872,7 +41853,7 @@ msgid "cocaine topical cream" msgid_plural "cocaine topical cream" msgstr[0] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -42316,7 +42297,7 @@ msgid "alpha serum" msgid_plural "alpha serum" msgstr[0] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -42548,9 +42529,8 @@ msgstr[0] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -42611,7 +42591,7 @@ msgid "alpha mutagen" msgid_plural "alpha mutagen" msgstr[0] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -42712,7 +42692,8 @@ msgstr[0] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -42841,7 +42822,7 @@ msgid "pine nuts" msgid_plural "pine nuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -42851,7 +42832,7 @@ msgid "junipers" msgid_plural "junipers" msgstr[0] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -42863,7 +42844,7 @@ msgid "shelled pistachios" msgid_plural "shelled pistachios" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -42874,7 +42855,7 @@ msgid "roasted pistachios" msgid_plural "roasted pistachios" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -42884,7 +42865,7 @@ msgid "shelled almonds" msgid_plural "shelled almonds" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "아몬드 나무에서 난 딱딱한 열매를 날 것 그대로 껍질만 벗겨놓은 것입니다." @@ -42894,7 +42875,7 @@ msgid "almond pulp" msgid_plural "almond pulp" msgstr[0] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -42905,7 +42886,7 @@ msgid "roasted almonds" msgid_plural "roasted almonds" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "아몬드 나무에서 난 열매를 볶은 것입니다" @@ -42915,7 +42896,7 @@ msgid "cashews" msgid_plural "cashews" msgstr[0] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "짭잘한 캐슈 한 줌." @@ -42925,7 +42906,7 @@ msgid "shelled pecans" msgid_plural "shelled pecans" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -42937,7 +42918,7 @@ msgid "roasted pecans" msgid_plural "roasted pecans" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "피칸 나무에서 난 열매를 볶은 것입니다." @@ -42947,7 +42928,7 @@ msgid "shelled peanuts" msgid_plural "shelled peanuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -42957,7 +42938,7 @@ msgid "beech nuts" msgid_plural "beech nuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -42967,7 +42948,7 @@ msgid "shelled walnuts" msgid_plural "shelled walnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -42979,7 +42960,7 @@ msgid "roasted walnuts" msgid_plural "roasted walnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "호두 나무에서 난 열매를 볶은 것입니다" @@ -42989,7 +42970,7 @@ msgid "shelled chestnuts" msgid_plural "shelled chestnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -43001,7 +42982,7 @@ msgid "roasted chestnuts" msgid_plural "roasted chestnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "밤 나무에서 난 열매를 볶은 것입니다" @@ -43011,7 +42992,7 @@ msgid "shelled hazelnuts" msgid_plural "shelled hazelnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -43023,7 +43004,7 @@ msgid "roasted edamame" msgid_plural "roasted edamame" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -43033,7 +43014,7 @@ msgid "roasted soy nuts" msgid_plural "roasted soy nuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -43043,7 +43024,7 @@ msgid "roasted hazelnuts" msgid_plural "roasted hazelnuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "헤이즐넛 나무에서 난 열매를 볶은 것입니다" @@ -43053,7 +43034,7 @@ msgid "shelled hickory nuts" msgid_plural "shelled hickory nuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -43065,7 +43046,7 @@ msgid "roasted hickory nuts" msgid_plural "roasted hickory nuts" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "히코리 나무에서 난 열매를 볶은 것입니다." @@ -43119,7 +43100,7 @@ msgid "acorns" msgid_plural "acorns" msgstr[0] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -43131,7 +43112,7 @@ msgid "roasted acorns" msgid_plural "roasted acorns" msgstr[0] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "떡갈나무에서 난 열매를 볶은 것입니다." @@ -43141,7 +43122,7 @@ msgid "cooked acorn meal" msgid_plural "cooked acorn meal" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -43153,7 +43134,7 @@ msgid "foie gras" msgid_plural "foie gras" msgstr[0] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -43164,7 +43145,7 @@ msgid "liver & onions" msgid_plural "liver & onions" msgstr[0] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "전통적인 방식으로 간을 요리하는 방법." @@ -43214,7 +43195,7 @@ msgid "leverpostej" msgid_plural "leverpostej" msgstr[0] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -43411,7 +43392,7 @@ msgid "marloss gelatin" msgid_plural "marloss gelatin" msgstr[0] "말로스 젤라틴" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -43439,7 +43420,7 @@ msgid "yeast" msgid_plural "yeast" msgstr[0] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -43450,7 +43431,7 @@ msgid "bone meal" msgid_plural "bone meal" msgstr[0] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "이 뼛가루는 비료와 다른 것들을 만드는 데 사용될 수 있다." @@ -43460,7 +43441,7 @@ msgid "powdered gelatin" msgid_plural "powdered gelatin" msgstr[0] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -43471,7 +43452,7 @@ msgid "fresh gelatin" msgid_plural "fresh gelatin" msgstr[0] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -43481,7 +43462,7 @@ msgid "tainted bone meal" msgid_plural "tainted bone meal" msgstr[0] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "오염된 뼈를 갈아 만든 회색 뼛가루." @@ -43491,7 +43472,7 @@ msgid "chitin powder" msgid_plural "chitin powder" msgstr[0] "키틴질 가루" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -43534,7 +43515,7 @@ msgid "dried beans" msgid_plural "dried beans" msgstr[0] "말린 콩" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -43546,7 +43527,7 @@ msgid "cooked beans" msgid_plural "cooked beans" msgstr[0] "콩 (요리됨)" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "따뜻하게 조리된 북부 대형 콩." @@ -43556,8 +43537,8 @@ msgid "tofu" msgid_plural "tofu" msgstr[0] "두부" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -43574,7 +43555,7 @@ msgid "dehydrated tofu" msgid_plural "dehydrated tofu" msgstr[0] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -43584,7 +43565,7 @@ msgid "soybeans" msgid_plural "soybeans" msgstr[0] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -43608,7 +43589,7 @@ msgid "dried lentils" msgid_plural "dried lentils" msgstr[0] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -43619,7 +43600,7 @@ msgid "Foodplace's delicious food™" msgid_plural "Foodplace's delicious food™" msgstr[0] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43632,7 +43613,7 @@ msgid "Foodplace's appropriate snack™" msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -43642,7 +43623,7 @@ msgid "cooked lentils" msgid_plural "cooked lentils" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -43652,7 +43633,7 @@ msgid "coffee powder" msgid_plural "coffee powder" msgstr[0] "커피 가루" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -43665,7 +43646,7 @@ msgid "Kentucky coffee grounds" msgid_plural "Kentucky coffee grounds" msgstr[0] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -43677,7 +43658,7 @@ msgid "candied honey" msgid_plural "candied honey" msgstr[0] "굳은 꿀" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -43713,7 +43694,7 @@ msgid "cattle fodder" msgid_plural "cattle fodder" msgstr[0] "소 사료" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -43725,7 +43706,7 @@ msgid "bird food" msgid_plural "bird food" msgstr[0] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -43737,7 +43718,7 @@ msgid "wet dog food" msgid_plural "wet dog food" msgstr[0] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -43749,7 +43730,7 @@ msgid "dry dog food" msgid_plural "dry dog food" msgstr[0] "건조 개 사료" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -43761,7 +43742,7 @@ msgid "wet cat food" msgid_plural "wet cat food" msgstr[0] "습식 고양이 사료" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -43773,7 +43754,7 @@ msgid "dry cat food" msgid_plural "dry cat food" msgstr[0] "건조 고양이 사료" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -43890,7 +43871,7 @@ msgid "instant coffee mix" msgid_plural "instant coffee mix" msgstr[0] "커피 믹스" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -43926,28 +43907,24 @@ msgid "protein drink" msgid_plural "protein drinks" msgstr[0] "단백질 음료" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "소일렌트 그린 음료" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" msgid_plural "sapient green drink" msgstr[0] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -43966,21 +43943,20 @@ msgid "protein powder" msgid_plural "protein powder" msgstr[0] "단백질 가루" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" msgid_plural "sapient green powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -44007,14 +43983,13 @@ msgid "protein shake" msgid_plural "protein shakes" msgstr[0] "단백질 셰이크" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "소일렌트 그린 셰이크" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -44033,14 +44008,14 @@ msgid "fortified protein shake" msgid_plural "fortified protein shakes" msgstr[0] "단백질 셰이크 강화주" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" msgid_plural "fortified soylent green shake" msgstr[0] "소일렌트 그린 셰이크 강화주" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -44102,7 +44077,7 @@ msgid "blueberries" msgid_plural "blueberries" msgstr[0] "블루베리" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -44114,7 +44089,7 @@ msgid "strawberries" msgid_plural "strawberries" msgstr[0] "딸기" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "맛있는 과즙이 들어있는 열매. 종종 들판에서 자라나는 것을 발견할 수 있다." @@ -44124,7 +44099,7 @@ msgid "cranberries" msgid_plural "cranberries" msgstr[0] "크랜베리" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "새콤한 붉은색 열매입니다. 건강에 좋습니다." @@ -44134,7 +44109,7 @@ msgid "raspberries" msgid_plural "raspberries" msgstr[0] "산딸기" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "달콤한 붉은색 열매입니다." @@ -44144,7 +44119,7 @@ msgid "huckleberries" msgid_plural "huckleberries" msgstr[0] "월귤나무 열매" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "가끔씩 불루베리와 헷갈리는 월귤나무 열매." @@ -44154,7 +44129,7 @@ msgid "mulberries" msgid_plural "mulberries" msgstr[0] "오디" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -44166,7 +44141,7 @@ msgid "elderberries" msgid_plural "elderberries" msgstr[0] "딱총나무 열매" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "날것으로 먹으면 독성이 있으니 요리해 먹는 것이 좋다." @@ -44176,7 +44151,7 @@ msgid "rose hips" msgid_plural "rose hips" msgstr[0] "장미 열매" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "꽃가루가 들어간 장미꽃의 열매입니다." @@ -44218,7 +44193,7 @@ msgid "cherries" msgid_plural "cherries" msgstr[0] "체리" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "나무에서 자라는 붉고 달콤한 과일입니다." @@ -44239,7 +44214,7 @@ msgid "grapes" msgid_plural "grapes" msgstr[0] "포도" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "즙이 많은 포도 한 송이." @@ -44299,7 +44274,7 @@ msgid "blackberries" msgid_plural "blackberries" msgstr[0] "블랙베리" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "산딸기의 검은색 사촌입니다." @@ -44350,7 +44325,7 @@ msgid "apricots" msgid_plural "apricots" msgstr[0] "살구" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "부드러운 촉감의 과일로, 복숭아와 비슷한 과일입니다." @@ -44388,7 +44363,7 @@ msgid "bee balm" msgid_plural "bee balm" msgstr[0] "향수박하" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -44399,7 +44374,7 @@ msgid "broccoli" msgid_plural "broccoli" msgstr[0] "브로콜리" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "먹기 조금 힘들지만, 꽤 맛있다." @@ -44409,7 +44384,7 @@ msgid "buckwheat" msgid_plural "buckwheat" msgstr[0] "메밀" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -44431,7 +44406,7 @@ msgid "spinach" msgid_plural "spinach" msgstr[0] "시금치" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "시금치 잎 한 다발입니다." @@ -44476,7 +44451,7 @@ msgid "celery" msgid_plural "celery" msgstr[0] "셀러리" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "맛도 없고 영양가도 없지만, 샐러드와 잘 어울립니다." @@ -44498,7 +44473,7 @@ msgid "corn kernels" msgid_plural "corn kernels" msgstr[0] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "맛있는 황금색 알갱이들." @@ -44508,7 +44483,7 @@ msgid "empty corn cob" msgid_plural "empty corn cob" msgstr[0] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -44564,7 +44539,7 @@ msgid "salsify" msgid_plural "salsify" msgstr[0] "서양우엉" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -44577,7 +44552,7 @@ msgid "chicory" msgid_plural "chicory" msgstr[0] "치코리" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -44690,7 +44665,7 @@ msgid "raw popcorn" msgid_plural "raw popcorn" msgstr[0] "생 팝콘" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -44724,7 +44699,7 @@ msgid "horseradish greens" msgid_plural "horseradish greens" msgstr[0] "서양 고추냉이 잎사귀" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -44736,7 +44711,7 @@ msgid "dandelions" msgid_plural "dandelions" msgstr[0] "민들레" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -44748,7 +44723,7 @@ msgid "burdocks" msgid_plural "burdocks" msgstr[0] "우엉" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "우엉. 쓴 엉겅퀴 같은 채소입니다. 생으로 먹거나 요리해 먹습니다." @@ -44840,7 +44815,7 @@ msgid "wild vegetables" msgid_plural "wild vegetables" msgstr[0] "산나물" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -44872,7 +44847,7 @@ msgid "raw beans" msgid_plural "raw beans" msgstr[0] "생 콩" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -44884,7 +44859,7 @@ msgid "raw lentils" msgid_plural "raw lentils" msgstr[0] "생 렌틸콩" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "생 렌틸콩. 요리 할 수 있습니다." @@ -44894,7 +44869,7 @@ msgid "fiddleheads" msgid_plural "fiddleheads" msgstr[0] "고사리" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -44928,8 +44903,7 @@ msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" msgstr[0] "디럭스 샌드위치" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -44942,6 +44916,25 @@ msgid "" "nutritious!" msgstr "고기, 야채, 치즈를 넣어 만든 샌드위치. 맛있고 영양이 풍부합니다. " +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -44997,7 +44990,7 @@ msgid "fairy bread" msgid_plural "fairy bread" msgstr[0] "페어리브레드" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -45043,24 +45036,21 @@ msgid "meat sandwich" msgid_plural "meat sandwiches" msgstr[0] "고기 샌드위치" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "인육 샌드위치" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -45165,7 +45155,7 @@ msgid "mushroom spores" msgid_plural "mushroom spores" msgstr[0] "버섯 포자" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "약간의 버섯포자입니다." @@ -45175,7 +45165,7 @@ msgid "hop rhizomes" msgid_plural "hop rhizomes" msgstr[0] "홉 뿌리" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "홉의 뿌리줄기. 직접 기를 수도 있다." @@ -45189,7 +45179,7 @@ msgid "blackberry seeds" msgid_plural "blackberry seeds" msgstr[0] "블랙베리 씨앗" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "약간의 블랙베리 씨앗." @@ -45203,7 +45193,7 @@ msgid "blueberry seeds" msgid_plural "blueberry seeds" msgstr[0] "블루베리 씨앗" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "약간의 블루베리 씨앗." @@ -45217,7 +45207,7 @@ msgid "cranberry seeds" msgid_plural "cranberry seeds" msgstr[0] "크랜베리 씨앗" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "크렌베리약간의 크랜베리 씨앗." @@ -45231,7 +45221,7 @@ msgid "huckleberry seeds" msgid_plural "huckleberry seeds" msgstr[0] "월귤나무 씨앗" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "약간의 월귤나무열매 씨앗" @@ -45245,7 +45235,7 @@ msgid "mulberry seeds" msgid_plural "mulberry seeds" msgstr[0] "오디 씨앗" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "약간의 오디 씨앗" @@ -45259,7 +45249,7 @@ msgid "elderberry seeds" msgid_plural "elderberry seeds" msgstr[0] "딱총나무 씨앗" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "약간의 딱총나무 씨앗." @@ -45273,7 +45263,7 @@ msgid "raspberry seeds" msgid_plural "raspberry seeds" msgstr[0] "라즈베리 씨앗" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "약간의 산딸기 씨앗." @@ -45287,7 +45277,7 @@ msgid "strawberry seeds" msgid_plural "strawberry seeds" msgstr[0] "딸기 씨앗" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "약간의 딸기 씨앗." @@ -45301,7 +45291,7 @@ msgid "grape seeds" msgid_plural "grape seeds" msgstr[0] "포도 씨앗" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "약간의 포도 씨앗" @@ -45315,7 +45305,7 @@ msgid "rose seeds" msgid_plural "rose seeds" msgstr[0] "장미 씨앗" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "약간의 장미 씨앗." @@ -45329,7 +45319,7 @@ msgid "tobacco seeds" msgid_plural "tobacco seeds" msgstr[0] "담배 씨앗." -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "약간의 담배씨앗." @@ -45343,7 +45333,7 @@ msgid "barley seeds" msgid_plural "barley seeds" msgstr[0] "보리 씨앗" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "약간의 보리 씨앗." @@ -45353,7 +45343,7 @@ msgid "sugar beet seeds" msgid_plural "sugar beet seeds" msgstr[0] "사탕무 씨앗" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "약간의 사탕무 씨앗." @@ -45363,7 +45353,7 @@ msgid "lettuce seeds" msgid_plural "lettuce seeds" msgstr[0] "양상추 씨앗" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "약간의 양상추 씨앗." @@ -45373,7 +45363,7 @@ msgid "cabbage seeds" msgid_plural "cabbage seeds" msgstr[0] "양배추 씨앗" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "약간의 백양배추 씨앗." @@ -45383,7 +45373,7 @@ msgid "tomato seeds" msgid_plural "tomato seeds" msgstr[0] "토마토 씨앗" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "약간의 토마토 씨앗." @@ -45393,7 +45383,7 @@ msgid "cotton seeds" msgid_plural "cotton seeds" msgstr[0] "목화 씨앗" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "약간의 목화 씨앗. 식용유를 만들 때 사용할 수 있다." @@ -45407,7 +45397,7 @@ msgid "broccoli seeds" msgid_plural "broccoli seeds" msgstr[0] "브로콜리 씨앗" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "약간의 브로콜리 씨앗." @@ -45417,7 +45407,7 @@ msgid "zucchini seeds" msgid_plural "zucchini seeds" msgstr[0] "주키니 씨앗" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "약간의 주키니 씨앗." @@ -45427,7 +45417,7 @@ msgid "onion seeds" msgid_plural "onion seeds" msgstr[0] "양파 씨앗" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "약간의 양파 씨앗." @@ -45437,7 +45427,7 @@ msgid "garlic seeds" msgid_plural "garlic seeds" msgstr[0] "마늘 씨앗" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "약간의 마늘 씨앗." @@ -45451,7 +45441,7 @@ msgid "cattail seeds" msgid_plural "cattail seeds" msgstr[0] "부들 씨앗" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "약간의 부들 씨앗." @@ -45465,7 +45455,7 @@ msgid "dahlia seeds" msgid_plural "dahlia seeds" msgstr[0] "달리아 씨앗" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "약간의 달리아 씨앗." @@ -45479,7 +45469,7 @@ msgid "salsify seeds" msgid_plural "salsify seeds" msgstr[0] "서양우엉 씨앗" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "약간의 서양우엉 씨앗." @@ -45489,7 +45479,7 @@ msgid "chicory seeds" msgid_plural "chicory seeds" msgstr[0] "치코리 씨앗" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "약간의 치코리 씨앗." @@ -45499,7 +45489,7 @@ msgid "wild root seeds" msgid_plural "wild root seeds" msgstr[0] "야생 뿌리 씨앗" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "약간의 흰 잡초 꽃 씨앗. " @@ -45509,7 +45499,7 @@ msgid "decorative plant seeds" msgid_plural "decorative plant seeds" msgstr[0] "장식용 식물 씨앗" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -45525,7 +45515,7 @@ msgid "cactus seeds" msgid_plural "cactus seeds" msgstr[0] "선인장 씨앗" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "약간의 선인장 씨앗." @@ -45549,7 +45539,7 @@ msgid "carrot seeds" msgid_plural "carrot seeds" msgstr[0] "당근 씨앗" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "약간의 당근 씨앗." @@ -45559,7 +45549,7 @@ msgid "corn seeds" msgid_plural "corn seeds" msgstr[0] "옥수수 씨앗" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "약간의 옥수수 씨앗." @@ -45573,7 +45563,7 @@ msgid "chili pepper seeds" msgid_plural "chili pepper seeds" msgstr[0] "고추 씨앗" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "약간의 고추 씨앗." @@ -45583,7 +45573,7 @@ msgid "cucumber seeds" msgid_plural "cucumber seeds" msgstr[0] "오이 씨앗" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "약간의 오이 씨앗." @@ -45607,7 +45597,7 @@ msgid "cannabis seeds" msgid_plural "cannabis seeds" msgstr[0] "대마초 씨앗" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -45638,7 +45628,7 @@ msgid "bean seeds" msgid_plural "bean seeds" msgstr[0] "콩 씨앗" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "요리되지 않은 콩. 심을 수 있습니다." @@ -45652,7 +45642,7 @@ msgid "soybean seeds" msgid_plural "soybean seeds" msgstr[0] "대두 씨앗" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "약간의 대두 씨앗." @@ -45661,7 +45651,7 @@ msgstr "약간의 대두 씨앗." msgid "soybean" msgstr "대두" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "요리되지 않은 렌틸 콩. 심을 수 있습니다." @@ -45675,7 +45665,7 @@ msgid "thyme seeds" msgid_plural "thyme seeds" msgstr[0] "백리향 씨앗" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "약간의 백리향 씨앗." @@ -45690,7 +45680,7 @@ msgid "canola seeds" msgid_plural "canola seeds" msgstr[0] "카놀라 씨앗" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "약간의 카놀라 씨앗. 기름을 짤 수 있습니다. " @@ -45700,7 +45690,7 @@ msgid "pumpkin seeds" msgid_plural "pumpkin seeds" msgstr[0] "호박씨" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "약간의 호박 씨앗. 볶아서 먹을 수 있습니다." @@ -45710,7 +45700,7 @@ msgid "sunflower seeds" msgid_plural "sunflower seeds" msgstr[0] "해바라기씨" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "약간의 가공하지 않은 해바라기씨. 기름을 짜낼 수 있습니다." @@ -45726,7 +45716,7 @@ msgid "dogbane seeds" msgid_plural "dogbane seeds" msgstr[0] "개정향풀 씨앗" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "약간의 개정향풀 씨앗." @@ -45736,7 +45726,7 @@ msgid "bee balm seeds" msgid_plural "bee balm seeds" msgstr[0] "향수박하 씨앗" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "약간의 향수박하 씨앗." @@ -45746,7 +45736,7 @@ msgid "mugwort seeds" msgid_plural "mugwort seeds" msgstr[0] "쑥 씨앗" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "약간의 쑥 씨앗." @@ -45756,7 +45746,7 @@ msgid "buckwheat seeds" msgid_plural "buckwheat seeds" msgstr[0] "메밀 씨앗" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "약간의 메밀 씨앗." @@ -45766,7 +45756,7 @@ msgid "wild herb seeds" msgid_plural "wild herb seeds" msgstr[0] "야생 허브 씨앗" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "야생 허브에서 수확한 씨앗 조금. " @@ -45780,7 +45770,7 @@ msgid "wild vegetable stems" msgid_plural "wild vegetable stems" msgstr[0] "산나물 줄기" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "약간의 산나물 줄기 씨앗." @@ -45794,7 +45784,7 @@ msgid "dandelion seeds" msgid_plural "dandelion seeds" msgstr[0] "민들레 씨앗" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "약간의 민들레 씨앗." @@ -45808,7 +45798,7 @@ msgid "burdock seeds" msgid_plural "burdock seeds" msgstr[0] "우엉 씨앗" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "약간의 우엉 씨앗." @@ -45822,7 +45812,7 @@ msgid "rhubarb stems" msgid_plural "rhubarb stems" msgstr[0] "대황 줄기" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "약간의 대황 줄기." @@ -45832,7 +45822,7 @@ msgid "morel mushroom spores" msgid_plural "morel mushroom spores" msgstr[0] "곰보버섯 포자" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "약간의 곰보버섯 포자." @@ -45842,7 +45832,7 @@ msgid "datura seeds" msgid_plural "datura seeds" msgstr[0] "독말풀 씨앗" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -45860,7 +45850,7 @@ msgid "celery seeds" msgid_plural "celery seeds" msgstr[0] "셀러리 씨앗" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "약간의 셀러리 씨앗." @@ -45870,7 +45860,7 @@ msgid "oat seeds" msgid_plural "oat seeds" msgstr[0] "귀리 씨앗" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "약간의 귀리 씨앗." @@ -45885,7 +45875,7 @@ msgid "wheat seeds" msgid_plural "wheat seeds" msgstr[0] "밀 씨앗" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "약간의 밀 씨앗." @@ -45900,7 +45890,7 @@ msgid "fried seeds" msgid_plural "fried seeds" msgstr[0] "볶은 콩" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -45924,7 +45914,7 @@ msgid "coffee beans" msgid_plural "coffee beans" msgstr[0] "커피콩" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "커피콩. 볶을 수 있다." @@ -45934,7 +45924,7 @@ msgid "roasted coffee beans" msgid_plural "roasted coffee beans" msgstr[0] "볶은 커피콩" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "볶은 커피콩. 갈아서 가루로 만들 수 있다." @@ -45944,7 +45934,7 @@ msgid "chamomile seeds" msgid_plural "chamomile seeds" msgstr[0] "캐모마일 씨앗" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "약간의 캐모마일 씨앗." @@ -45958,7 +45948,7 @@ msgid "spurge seeds" msgid_plural "spurge seeds" msgstr[0] "등대풀 씨앗" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "약간의 등대풀 씨앗." @@ -45972,7 +45962,7 @@ msgid "popcorn seeds" msgid_plural "popcorn seeds" msgstr[0] "팝콘 씨앗" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "약간의 팝콘 씨앗." @@ -45982,7 +45972,7 @@ msgid "horseradish seeds" msgid_plural "horseradish seeds" msgstr[0] "서양 고추냉이 씨앗" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "약간의 서양 고추냉이 씨앗." @@ -45992,7 +45982,7 @@ msgid "mustard seeds" msgid_plural "mustard seeds" msgstr[0] "머스타드 씨앗" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "약간의 머스타드 씨앗. 갈면 머스타드(겨자) 가루가 됩니다." @@ -46002,7 +45992,7 @@ msgid "bell pepper seeds" msgid_plural "bell pepper seeds" msgstr[0] "피망 씨앗" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "약간의 피망 씨앗." @@ -46022,8 +46012,7 @@ msgid "bone broth" msgid_plural "bone broths" msgstr[0] "뼈 육수" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -46050,14 +46039,13 @@ msgid "meat soup" msgid_plural "meat soups" msgstr[0] "고기 수프" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "인육 수프" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -46093,8 +46081,7 @@ msgid "curry with meat" msgid_plural "curries with meat" msgstr[0] "고기 카레" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -46110,10 +46097,8 @@ msgid "woods meat soup" msgid_plural "woods meat soups" msgstr[0] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -46169,7 +46154,7 @@ msgid "chicken and dumplings" msgid_plural "chicken and dumplings" msgstr[0] "치킨 앤 덤플링" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "닭고기와 공 모양의 밀가루 반죽이 들어있는 수프. 나쁘지 않습니다." @@ -46191,7 +46176,7 @@ msgid "chili powder" msgid_plural "chili powder" msgstr[0] "칠리 가루" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -46203,7 +46188,7 @@ msgid "hot sauce" msgid_plural "hot sauce" msgstr[0] "핫소스" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -46215,7 +46200,7 @@ msgid "cinnamon" msgid_plural "cinnamon" msgstr[0] "계피" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "계피 껍질. 단내가 나지만 톡 쏘는 냄새도 납니다." @@ -46225,7 +46210,7 @@ msgid "curry powder" msgid_plural "curry powder" msgstr[0] "카레 가루" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -46237,7 +46222,7 @@ msgid "black pepper" msgid_plural "black pepper" msgstr[0] "검은 후추" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "강한 향을 가진 검은 향신료 가루." @@ -46247,7 +46232,7 @@ msgid "salt" msgid_plural "salt" msgstr[0] "소금" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -46259,7 +46244,7 @@ msgid "Italian seasoning" msgid_plural "Italian seasoning" msgstr[0] "이탈리아 조미료" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "말린 오레가노, 바질, 타임과 다른 향미료를 섞은 것입니다." @@ -46269,7 +46254,7 @@ msgid "seasoned salt" msgid_plural "seasoned salt" msgstr[0] "맛소금" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "비밀의 조미료와 허브 가루들을 섞어 만든 소금." @@ -46279,7 +46264,7 @@ msgid "sugar" msgid_plural "sugar" msgstr[0] "설탕" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -46291,7 +46276,7 @@ msgid "sprinkles" msgid_plural "sprinkles" msgstr[0] "스프링클" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -46305,7 +46290,7 @@ msgid "wild herbs" msgid_plural "wild herbs" msgstr[0] "야생 허브" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -46317,7 +46302,7 @@ msgid "soy sauce" msgid_plural "soy sauce" msgstr[0] "간장" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "콩을 발효시켜 만든 짭짤한 간장." @@ -46332,7 +46317,7 @@ msgid "mustard powder" msgid_plural "mustard powder" msgstr[0] "머스타드 가루" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "향기로운 노란 가루입니다. 이 상태로 바로 먹을 수는 없습니다." @@ -46378,7 +46363,7 @@ msgid "starch" msgid_plural "starch" msgstr[0] "전분" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -46390,7 +46375,7 @@ msgid "cooked dandelion greens" msgid_plural "cooked dandelion greens" msgstr[0] "민들레 잎 (요리됨)" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "요리한 야생 민들레 잎. 영양가 있고 맛있다." @@ -46400,7 +46385,7 @@ msgid "fried dandelions" msgid_plural "fried dandelions" msgstr[0] "민들레 튀김" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -46411,7 +46396,7 @@ msgid "cooked burdock greens" msgid_plural "cooked burdock greens" msgstr[0] "우엉 잎 (요리됨)" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "요리한 우엉 잎. 맛있고 영양가 있습니다." @@ -46421,7 +46406,7 @@ msgid "fried burdocks" msgid_plural "fried burdocks" msgstr[0] "튀긴 우엉" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -46455,7 +46440,7 @@ msgid "cooked wild vegetables" msgid_plural "cooked wild vegetables" msgstr[0] "야생야채 (요리됨)" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "요리된 야생 식용 식물입니다. 여러 가지 흥미로운 맛이 납니다." @@ -46476,7 +46461,7 @@ msgid "cooked buckwheat" msgid_plural "cooked buckwheat" msgstr[0] "메밀 (요리됨)" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -46487,7 +46472,7 @@ msgid "canned corn" msgid_plural "canned corn" msgstr[0] "옥수수 통조림" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "통조림 안에 옥수수와 물이 들어있습니다. 먹어버리세요!" @@ -46497,7 +46482,7 @@ msgid "corn on the cob" msgid_plural "corn on the cob" msgstr[0] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -46507,7 +46492,7 @@ msgid "pan roasted corn" msgid_plural "pan roasted corn" msgstr[0] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -46517,7 +46502,7 @@ msgid "hominy" msgid_plural "hominy" msgstr[0] "옥수수 죽" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -46529,7 +46514,7 @@ msgid "cornmeal" msgid_plural "cornmeal" msgstr[0] "옥수수 가루" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "제빵에 쓰이는 노란 옥수수 가루." @@ -46539,7 +46524,7 @@ msgid "vegetarian baked beans" msgid_plural "vegetarian baked beans" msgstr[0] "채식형 구운 콩" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "푹 익힌 야채와 콩. 맛과 양이 풍부하다." @@ -46549,7 +46534,7 @@ msgid "dried rice" msgid_plural "dried rice" msgstr[0] "쌀" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -46561,7 +46546,7 @@ msgid "cooked rice" msgid_plural "cooked rice" msgstr[0] "밥" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "따끈하게 익힌 흰 쌀밥." @@ -46571,7 +46556,7 @@ msgid "fried rice" msgid_plural "fried rice" msgstr[0] "볶음밥" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "야채를 넣어 맛있게 볶은 밥. 맛과 양이 풍부하다." @@ -46581,7 +46566,7 @@ msgid "beans and rice" msgid_plural "beans and rice" msgstr[0] "콩밥" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -46593,7 +46578,7 @@ msgid "tofu fried rice" msgid_plural "tofu fried rice" msgstr[0] "두부 볶음밥" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "야채를 넣고 볶은 맛있는 두부 볶음밥. 맛과 양이 풍부하다." @@ -46603,7 +46588,7 @@ msgid "tofu stirfry" msgid_plural "tofu stirfry" msgstr[0] "두부 볶음" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -46615,7 +46600,7 @@ msgid "deluxe vegetarian beans and rice" msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "특제 채식형 콩밥" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -46680,7 +46665,7 @@ msgid "pesto" msgid_plural "pesto" msgstr[0] "페스토" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "올리브 오일, 바질, 마늘, 견과류 등이 들어있는 소스입니다. 간단하고 맛있습니다." @@ -46714,7 +46699,7 @@ msgid "spaghetti al pesto" msgid_plural "spaghetti al pesto" msgstr[0] "스파게티 알 페스토" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "스파게티에 페스토 소스를 푸짐하게 부은 것. 맛있겠군요!" @@ -46735,7 +46720,7 @@ msgid "sauerkraut w/ sautee'd onions" msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "양파 소테를 곁들인 자워크라우트" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -46771,7 +46756,7 @@ msgid "dehydrated corn kernels" msgid_plural "dehydrated corn kernels" msgstr[0] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -46793,7 +46778,7 @@ msgid "rehydrated corn kernels" msgid_plural "rehydrated corn kernels" msgstr[0] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -46863,7 +46848,7 @@ msgid "sushi rice" msgid_plural "sushi rice" msgstr[0] "초밥용 쌀밥" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "초밥에 쓰이는 식초로 간한 밥." @@ -46873,7 +46858,7 @@ msgid "onigiri" msgid_plural "onigiri" msgstr[0] "주먹밥" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -46885,7 +46870,7 @@ msgid "vegetable hosomaki" msgid_plural "vegetable hosomaki" msgstr[0] "야채 호소마끼" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -46909,7 +46894,7 @@ msgid "sauerkraut" msgid_plural "sauerkraut" msgstr[0] "자워크라우트" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -46931,7 +46916,7 @@ msgid "boiled fiddleheads" msgid_plural "boiled fiddleheads" msgstr[0] "삶은 고사리" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "삶은 고사리. 나쁘진 않지만 버터에 살짝 볶는게 더 좋습니다." @@ -46941,7 +46926,7 @@ msgid "sauteed fiddleheads" msgid_plural "sauteed fiddleheads" msgstr[0] "볶은 고사리" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "지방으로 볶은 고사리. 부드럽고 맛있습니다." @@ -46958,7 +46943,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "생 밀알. 맛은 별로다." @@ -46968,7 +46953,7 @@ msgid "raw spaghetti pasta" msgid_plural "raw spaghetti pasta" msgstr[0] "생 스파게티" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -46980,7 +46965,7 @@ msgid "raw lasagne pasta" msgid_plural "raw lasagne pasta" msgstr[0] "생 라자냐" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -46992,7 +46977,7 @@ msgid "boiled noodles" msgid_plural "boiled noodles" msgstr[0] "끓인 국수" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "신선하고 촉촉한 면발입니다. 단조로운 메뉴지만, 배불리 먹을 수 있습니다." @@ -47002,7 +46987,7 @@ msgid "raw macaroni" msgid_plural "raw macaroni" msgstr[0] "생 마카로니" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "절망적인 상황이라면 생으로 먹을 수 있습니다만, 요리해서 먹는게 훨씬 좋습니다." @@ -47012,7 +46997,7 @@ msgid "mac & cheese" msgid_plural "mac & cheese" msgstr[0] "치즈 마카로니" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "치즈가 흐르기 시작할 때, 크래프트의 면발 맛도 같이 흐릅니다." @@ -47022,7 +47007,7 @@ msgid "flour" msgid_plural "flour" msgstr[0] "밀가루" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "제빵에 쓰이는 하얀 밀가루." @@ -47032,7 +47017,7 @@ msgid "bread flour" msgid_plural "bread flour" msgstr[0] "제빵용 밀가루" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -47044,14 +47029,14 @@ msgid "oatmeal" msgid_plural "oatmeal" msgstr[0] "오트밀" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "귀리를 갈아 만든 건조한 가루. 조리하면 배부르고 맛있게 먹을 수 있고, 건조된 상태에선 말 먹이로도 쓰인다." -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "생 귀리." @@ -47061,7 +47046,7 @@ msgid "cooked oatmeal" msgid_plural "cooked oatmeal" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -47073,7 +47058,7 @@ msgid "deluxe cooked oatmeal" msgid_plural "deluxe cooked oatmeal" msgstr[0] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -47154,7 +47139,7 @@ msgid "oyster crackers" msgid_plural "oyster crackers" msgstr[0] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -47186,7 +47171,7 @@ msgid "granola" msgid_plural "granola" msgstr[0] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -47208,7 +47193,7 @@ msgid "fast noodles" msgid_plural "fast noodles" msgstr[0] "라면" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "'라면'이라고 부르는 국수입니다. 날로 먹을 수도 있습니다." @@ -47387,7 +47372,7 @@ msgid "pineapple stem" msgid_plural "pineapple stem" msgstr[0] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -47397,7 +47382,7 @@ msgid "melon seeds" msgid_plural "melon seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -47407,7 +47392,7 @@ msgid "banana saplings" msgid_plural "banana saplings" msgstr[0] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -47417,7 +47402,7 @@ msgid "orange vine" msgid_plural "orange vine" msgstr[0] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -47427,7 +47412,7 @@ msgid "lemon vine" msgid_plural "lemon vine" msgstr[0] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -47437,7 +47422,7 @@ msgid "subterraenean coconut" msgid_plural "subterraenean coconut" msgstr[0] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -47482,7 +47467,7 @@ msgid "cooked freezerburned human meat" msgid_plural "cooked freezerburned human meat" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -47524,7 +47509,7 @@ msgid "freezerburned human tallow" msgid_plural "freezerburned human tallow" msgstr[0] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -47536,7 +47521,7 @@ msgid "freezerburned human lard" msgid_plural "freezerburned human lard" msgstr[0] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -47574,7 +47559,7 @@ msgid "cooked alien flesh" msgid_plural "cooked alien flesh" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -47675,7 +47660,7 @@ msgid "raw alien brains" msgid_plural "raw alien brains" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -47688,7 +47673,7 @@ msgid "cooked alien brains" msgid_plural "cooked alien brains" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -47771,7 +47756,7 @@ msgid "alien tallow" msgid_plural "alien tallow" msgstr[0] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -47784,7 +47769,7 @@ msgid "alien lard" msgid_plural "alien lard" msgstr[0] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -47797,7 +47782,7 @@ msgid "unidentifiable alien organs" msgid_plural "unidentifiable alien organs" msgstr[0] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -47808,7 +47793,7 @@ msgid "alien cracklins" msgid_plural "alien cracklins" msgstr[0] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -47820,7 +47805,7 @@ msgid "freezerburned human cracklins" msgid_plural "freezerburned human cracklins" msgstr[0] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -47871,7 +47856,7 @@ msgid "mealgrub spores" msgid_plural "mealgrub spores" msgstr[0] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -47886,7 +47871,7 @@ msgid "mealgrub broth" msgid_plural "mealgrub broth" msgstr[0] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -47899,7 +47884,7 @@ msgid "live mealgrubs" msgid_plural "live mealgrubs" msgstr[0] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -47912,7 +47897,7 @@ msgid "mealgrubs" msgid_plural "mealgrubs" msgstr[0] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -47969,7 +47954,7 @@ msgid "H₂O™" msgid_plural "H₂O™" msgstr[0] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -47982,7 +47967,7 @@ msgid "food cubes" msgid_plural "food cubes" msgstr[0] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -47993,7 +47978,7 @@ msgid "Foodplace's Food-to-go™" msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -48015,7 +48000,7 @@ msgid "cee wafers" msgid_plural "cee wafers" msgstr[0] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -48039,7 +48024,7 @@ msgid "soup, flavor 27" msgid_plural "soup, flavor 27" msgstr[0] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -48052,7 +48037,7 @@ msgid "landfall survival rations" msgid_plural "landfall survival rations" msgstr[0] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -48067,7 +48052,7 @@ msgid "caffex" msgid_plural "caffex" msgstr[0] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -48105,7 +48090,7 @@ msgid "supercritical coolant" msgid_plural "supercritical coolant" msgstr[0] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -48162,7 +48147,7 @@ msgid "SpOreos" msgid_plural "SpOreos" msgstr[0] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -48182,7 +48167,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -48444,8 +48429,8 @@ msgid_plural "siats eggs" msgstr[0] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" #: lang/json/COMESTIBLE_from_json.py @@ -48453,6 +48438,16 @@ msgid "albertosaurus egg" msgid_plural "albertosaurus eggs" msgstr[0] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -48488,6 +48483,11 @@ msgid "eoraptor egg" msgid_plural "eoraptor eggs" msgstr[0] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -48588,6 +48588,11 @@ msgid "pentaceratops egg" msgid_plural "pentaceratops eggs" msgstr[0] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -48618,21 +48623,6 @@ msgid "mosasaurus egg" msgid_plural "mosasaurus eggs" msgstr[0] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -48906,7 +48896,7 @@ msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -48967,7 +48957,7 @@ msgid "mana infused blood" msgid_plural "mana infused blood" msgstr[0] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -49023,14 +49013,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -49111,7 +49101,7 @@ msgid "raw chocolate milk" msgid_plural "raw chocolate milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -49120,7 +49110,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -49131,7 +49121,7 @@ msgid "liquid cacao" msgid_plural "liquid cacao" msgstr[0] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -49141,7 +49131,7 @@ msgid "reconstituted chocolate milk" msgid_plural "reconstituted chocolate milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -49153,7 +49143,7 @@ msgid "powdered chocolate milk" msgid_plural "powdered chocolate milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -49171,7 +49161,7 @@ msgid "pieces of candy wrapper" msgid_plural "pieces of candy wrapper" msgstr[0] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -49184,7 +49174,7 @@ msgid "sticky sludge" msgid_plural "sticky sludge" msgstr[0] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -49737,7 +49727,7 @@ msgid "rock salt" msgid_plural "rock salt" msgstr[0] "암염" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "한 줌의 암염 결정체. 정제하여 식염으로 만들 수 있습니다." @@ -49747,7 +49737,7 @@ msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "장미 휘석" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -49759,7 +49749,7 @@ msgid "zincite" msgid_plural "zincite" msgstr[0] "홍아연석" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -49795,7 +49785,7 @@ msgid "hickory nuts" msgid_plural "hickory nuts" msgstr[0] "히코리 열매" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "히코리 나무 열매 한 줌. 아직 껍질에 덮여있습니다." @@ -49805,7 +49795,7 @@ msgid "pecans" msgid_plural "pecans" msgstr[0] "피칸" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "피칸 나무 열매 한 줌. 아직 껍질에 덮여있습니다." @@ -49815,7 +49805,7 @@ msgid "pistachios" msgid_plural "pistachios" msgstr[0] "피스타치오" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "피스타치오 나무 열매 한 줌. 아직 껍질에 덮여있습니다." @@ -49825,7 +49815,7 @@ msgid "almonds" msgid_plural "almonds" msgstr[0] "아몬드" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "아몬드 나무 열매 한 줌. 아직 껍질에 덮여있습니다." @@ -49835,7 +49825,7 @@ msgid "peanuts" msgid_plural "peanuts" msgstr[0] "땅콩" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "땅콩 수풀에서 얻은 땅콩 한 줌. 아직 껍질에 덮여있습니다." @@ -49845,7 +49835,7 @@ msgid "hazelnuts" msgid_plural "hazelnuts" msgstr[0] "헤이즐넛" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "헤이즐넛 나무 열매 한 줌. 아직 껍질에 덮여있습니다." @@ -49855,7 +49845,7 @@ msgid "chestnuts" msgid_plural "chestnuts" msgstr[0] "밤" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "밤 나무 열매 한 줌. 아직 껍질에 덮여있습니다." @@ -49865,7 +49855,7 @@ msgid "walnuts" msgid_plural "walnuts" msgstr[0] "호두" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "호두 나무 열매 한 줌. 아직 껍질에 덮여있습니다." @@ -50128,6 +50118,17 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "경고: 흡연은 폐암, 심장병, 폐기종을 유발하고 태아에게 심각한 영향을 끼칠수 있습니다." +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -50138,6 +50139,18 @@ msgstr[0] "작은 종이상자" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "작은 골판지 상자. 가로, 세로, 높이 모두 30cm를 넘지 않는다." +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -50857,7 +50870,7 @@ msgid "semi ground grains" msgid_plural "semi ground grains" msgstr[0] "반쯤 빻은 곡물" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "반 쯤 가공된 곡물 가루. 아직 밀가루가 아닙니다." @@ -50867,7 +50880,7 @@ msgid "smoldering embers" msgid_plural "smoldering embers" msgstr[0] "연기나는 불씨" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -51056,6 +51069,27 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -51237,7 +51271,7 @@ msgid "superglue" msgid_plural "superglue" msgstr[0] "순간 접착제" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "강력한 접착제가 들어있는 튜브입니다. 여러 가지 제작에 사용됩니다." @@ -51503,7 +51537,7 @@ msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -51634,7 +51668,7 @@ msgid "concrete" msgid_plural "concrete" msgstr[0] "콘크리트" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "건설 작업에 쓰이는 소량의 콘크리트." @@ -52414,7 +52448,7 @@ msgid "clockworks" msgid_plural "clockworks" msgstr[0] "태엽 장치" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "작은 태엽 장치들을 모아놓은 장치입니다." @@ -52535,7 +52569,7 @@ msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -52559,7 +52593,7 @@ msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -52591,7 +52625,7 @@ msgid "mortar" msgid_plural "mortar" msgstr[0] "회반죽" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "건설 작업에 쓰이는 약간의 회반죽." @@ -52635,7 +52669,7 @@ msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -52647,7 +52681,7 @@ msgid "tanbark" msgid_plural "tanbark" msgstr[0] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "나무에서 벗겨낸 나무껍질. 타닌이 풍부해서 무두질에 사용된다." @@ -52667,7 +52701,7 @@ msgid "willowbark" msgid_plural "willowbark" msgstr[0] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -53071,7 +53105,7 @@ msgid "raw tobacco" msgid_plural "raw tobacco" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -53353,7 +53387,7 @@ msgid "plastic dice" msgid_plural "plastic dice" msgstr[0] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -53374,7 +53408,7 @@ msgid "alder bark" msgid_plural "alder bark" msgstr[0] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -53722,6 +53756,91 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -54428,7 +54547,7 @@ msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -54553,7 +54672,7 @@ msgid "turret interior chassis" msgid_plural "turret interior chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -54565,7 +54684,7 @@ msgid "police bot chassis" msgid_plural "police bot chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -54592,7 +54711,7 @@ msgid "Alarm System CBM installation data" msgid_plural "Alarm System CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54607,7 +54726,7 @@ msgid "LED Tattoo CBM installation data" msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54622,7 +54741,7 @@ msgid "Power Armor Interface CBM installation data" msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54637,7 +54756,7 @@ msgid "Power Storage CBM installation data" msgid_plural "Power Storage CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54652,7 +54771,7 @@ msgid "Power Storage CBM Mk. II installation data" msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54667,7 +54786,7 @@ msgid "Internal Chronometer CBM installation data" msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54682,7 +54801,7 @@ msgid "Intravenous Needletip CBM installation data" msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54697,7 +54816,7 @@ msgid "Blood Analysis CBM installation data" msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54712,7 +54831,7 @@ msgid "Cranial Flashlight CBM installation data" msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54727,7 +54846,7 @@ msgid "Electromagnetic Unit CBM installation data" msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54742,7 +54861,7 @@ msgid "Soporific Induction CBM installation data" msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54757,7 +54876,7 @@ msgid "Arms Alloy Plating CBM installation data" msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54772,7 +54891,7 @@ msgid "Legs Alloy Plating CBM installation data" msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54787,7 +54906,7 @@ msgid "Shotgun Arm CBM installation data" msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54802,7 +54921,7 @@ msgid "Blood Filter CBM installation data" msgid_plural "Blood Filter CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54817,8 +54936,7 @@ msgid "Internal Climate Control CBM installation data" msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54833,7 +54951,7 @@ msgid "Integrated Dosimeter CBM installation data" msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54848,7 +54966,7 @@ msgid "Thermal Dissipation CBM installation data" msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54863,7 +54981,7 @@ msgid "Weather Reader CBM installation data" msgid_plural "Weather Reader CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54878,7 +54996,7 @@ msgid "Railgun CBM installation data" msgid_plural "Railgun CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54893,7 +55011,7 @@ msgid "Unified Power System CBM installation data" msgid_plural "Unified Power System CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54908,8 +55026,7 @@ msgid "Titanium Skeletal Bracing CBM installation data" msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54929,7 +55046,7 @@ msgid "misc software" msgid_plural "misc software" msgstr[0] "잡다한 소프트웨어" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "잡다한 취미용 소프트웨어. 별로 쓸모 있어 보이진 않는다." @@ -54939,7 +55056,7 @@ msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "해킹PRO" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "해킹용 소프트웨어." @@ -54949,7 +55066,7 @@ msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "의료용 소프트웨어" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "의료용 소프트웨어." @@ -54959,7 +55076,7 @@ msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "메쓰맥스" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "수학용 소프트웨어." @@ -54969,7 +55086,7 @@ msgid "infection data" msgid_plural "infection data" msgstr[0] "감염 데이터" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "좀비 혈액에 대한 의학 자료." @@ -54979,7 +55096,7 @@ msgid "lab data" msgid_plural "lab data" msgstr[0] "연구실 데이터" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "정부 연구소의 연구 결과를 모은 것입니다" @@ -54989,7 +55106,7 @@ msgid "train data" msgid_plural "train data" msgstr[0] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "지하 열차 노선 및 스케줄에 대한 물류 데이터입니다." @@ -54999,7 +55116,7 @@ msgid "neural data" msgid_plural "neural data" msgstr[0] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -55282,27 +55399,38 @@ msgid "" "feeling sufficiently ghoulish." msgstr "반쪽짜리 인간에게 나온 뼈. 스스로를 식인종이라고 생각한다면, 뭔가를 만들 수 있을 것입니다." +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "시체" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "시체" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" msgid_plural "skinned %s" msgstr[0] "가죽이 벗겨진 %s " -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -55534,7 +55662,7 @@ msgid "trifacet remains" msgid_plural "trifacet remains" msgstr[0] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -55850,6 +55978,96 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -57448,7 +57666,7 @@ msgid "headphones" msgid_plural "headphones" msgstr[0] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -57522,7 +57740,7 @@ msgid "spare parts" msgid_plural "spare parts" msgstr[0] "예비 부품" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -58076,7 +58294,7 @@ msgid "bokken" msgid_plural "bokken" msgstr[0] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -58086,14 +58304,14 @@ msgstr "" "단단한 목재로 만들어진 검도 '연습용' 목도. 진검처럼 정확히 무게와 균형을 맞춰 만들었다. 날카로운 금속 칼날이 없음에도 불구하고 " "치명적인 부상을 입힐 수 있다." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "이것은 단단한 나무 '훈련용' 카타나이지만, 효과적인 무기를 만들기에는 너무 가벼운 느낌입니다." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -58611,7 +58829,7 @@ msgid "bionic claws" msgid_plural "bionic claws" msgstr[0] "바이오닉 클로" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "최첨단 기술로 제조된 금속으로 만들어진 짧고 날카로운 손톱입니다." @@ -58816,7 +59034,7 @@ msgid "qiang" msgid_plural "qiang" msgstr[0] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -58858,7 +59076,7 @@ msgid "naginata" msgid_plural "naginata" msgstr[0] "나기나타" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -58868,7 +59086,7 @@ msgstr "" "카타나와 같은 다른 일본도와 같이 끝에 곡도가 달려 있는 폴암. 초기의 사무라이들이 가끔식 사용했으며, 사무라이의 부인들운 호신용으로 " "사용하였다. " -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -58876,7 +59094,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -58889,7 +59107,7 @@ msgid "survivor naginata" msgid_plural "survivor naginata" msgstr[0] "생존용 나기나타" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -59011,7 +59229,7 @@ msgid "ji" msgid_plural "ji" msgstr[0] "극" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -59069,13 +59287,26 @@ msgstr "" "얇은 고철 몇 조각을 급조한 목검의 모서리에 대강 붙여서 만들었다. 무게가 증가하면서 균형이 맞지 않게 되었지만, 그래도 칼날 덕분에 " "괜찮은 베기 피해를 입힐 수 있다." +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" msgid_plural "jian" msgstr[0] "지안" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -59154,14 +59385,14 @@ msgid "tanto" msgid_plural "tanto" msgstr[0] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -59174,14 +59405,14 @@ msgid "nodachi" msgid_plural "nodachi" msgstr[0] "야태도" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -59313,7 +59544,7 @@ msgid "katana" msgid_plural "katana" msgstr[0] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -59376,7 +59607,7 @@ msgid "wakizashi" msgid_plural "wakizashi" msgstr[0] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -59436,7 +59667,7 @@ msgid "tiger claws" msgid_plural "tiger claws" msgstr[0] "호랑이 발톱" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -59653,12 +59884,25 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -59673,7 +59917,7 @@ msgid "Exodii drone chassis" msgid_plural "Exodii drone chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -59714,7 +59958,7 @@ msgid "inscribed metal plates" msgid_plural "inscribed metal plates" msgstr[0] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -59982,7 +60226,7 @@ msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "구리 조각" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "작은 구리 조각. 제작이나 수리에 쓸 수 있습니다." @@ -60223,7 +60467,7 @@ msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "쪼개진 나무 조각. 뭔가 꽂아 두거나 불쏘시개 말고는 별달리 쓸모가 없습니다." @@ -60424,17 +60668,17 @@ msgid "sealed yeast culture" msgid_plural "sealed yeast culture" msgstr[0] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "플라스크를 열고 배양된 이스트를 꺼냈습니다." -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "이스트가 충분히 배양되지 않았다." -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -61559,7 +61803,7 @@ msgid "oars" msgid_plural "oars" msgstr[0] "노" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "보트에 쓰이는 노." @@ -61579,7 +61823,7 @@ msgid "inflatable section" msgid_plural "inflatable section" msgstr[0] "고무보트 바닥" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "공기주입식 보트 바닥." @@ -61589,7 +61833,7 @@ msgid "inflatable airbag" msgid_plural "inflatable airbag" msgstr[0] "공기주머니" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "공기주입식 주머니." @@ -62383,7 +62627,7 @@ msgid "chime loudspeakers" msgid_plural "chime loudspeakers" msgstr[0] "차임 확성기" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -62398,7 +62642,7 @@ msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "얇은 금속판." @@ -62408,7 +62652,7 @@ msgid "wired sheet metal" msgid_plural "wired sheet metal" msgstr[0] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -62428,7 +62672,7 @@ msgid "steel plating" msgid_plural "steel plating" msgstr[0] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "강철로 만들어진 장갑판." @@ -62438,7 +62682,7 @@ msgid "superalloy plating" msgid_plural "superalloy plating" msgstr[0] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "단단한 초합금으로 만들어진 장갑판." @@ -62459,7 +62703,7 @@ msgid "spiked plating" msgid_plural "spiked plating" msgstr[0] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -62676,12 +62920,18 @@ msgid_plural "solar panels" msgstr[0] "태양 전지판" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "태양 복사를 전기로 바꿔주는 전기 장치이다. 차량에 쓰인다." +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -62804,6 +63054,16 @@ msgstr[0] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -63203,7 +63463,7 @@ msgid "Dana's family sourdough starter" msgid_plural "Dana's family sourdough starter" msgstr[0] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -63258,7 +63518,7 @@ msgid "bioweapon chassis" msgid_plural "bioweapon chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -63526,7 +63786,7 @@ msgid "broken Isohypsa" msgid_plural "broken Isohypsa" msgstr[0] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -63538,7 +63798,7 @@ msgid "broken Kabura-ya" msgid_plural "broken Kabura-ya" msgstr[0] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -63652,7 +63912,7 @@ msgid "scrap titanium" msgid_plural "scrap titanium" msgstr[0] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -63662,7 +63922,7 @@ msgid "nuclear waste" msgid_plural "nuclear waste" msgstr[0] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "은빛 금속으로 된 작은 알갱이. 여전히 따뜻하다," @@ -63839,7 +64099,7 @@ msgid "tripod chassis" msgid_plural "tripod chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63851,7 +64111,7 @@ msgid "Pathfinder chassis" msgid_plural "Pathfinder chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63863,7 +64123,7 @@ msgid "Regulator chassis" msgid_plural "Regulator chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63875,7 +64135,7 @@ msgid "Seneschal chassis" msgid_plural "Seneschal chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63887,7 +64147,7 @@ msgid "Likvidator chassis" msgid_plural "Likvidator chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63899,7 +64159,7 @@ msgid "Famulus chassis" msgid_plural "Famulus chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -63911,7 +64171,7 @@ msgid "Udarnik chassis" msgid_plural "Udarnik chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63923,7 +64183,7 @@ msgid "Brandspojt chassis" msgid_plural "Brandspojt chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63935,7 +64195,7 @@ msgid "Surgical Droid chassis" msgid_plural "Surgical Droid chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63947,7 +64207,7 @@ msgid "Aegis chassis" msgid_plural "Aegis chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63959,7 +64219,7 @@ msgid "military robot chassis" msgid_plural "military robot chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63971,7 +64231,7 @@ msgid "military humaniform chassis" msgid_plural "military humaniform chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -64074,7 +64334,7 @@ msgid "monomeric slurry" msgid_plural "monomeric slurry" msgstr[0] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -64098,7 +64358,7 @@ msgid "artificial muscle fibers" msgid_plural "artificial muscle fibers" msgstr[0] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -64110,7 +64370,7 @@ msgid "self healing polymers" msgid_plural "self healing polymers" msgstr[0] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -64134,7 +64394,7 @@ msgid "scrap photonics" msgid_plural "scrap photonics" msgstr[0] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -64164,7 +64424,7 @@ msgid "hypergeometric photonics" msgid_plural "hypergeometric photonics" msgstr[0] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -64484,7 +64744,7 @@ msgid "laser optics" msgid_plural "laser optics" msgstr[0] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -65146,7 +65406,7 @@ msgid "enchanted wood" msgid_plural "enchanted wood" msgstr[0] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -66438,7 +66698,7 @@ msgid "subzero talons" msgid_plural "subzero talons" msgstr[0] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -66639,7 +66899,7 @@ msgid "fireproof mortar" msgid_plural "fireproof mortar" msgstr[0] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -66752,7 +67012,7 @@ msgid "chicken walker chassis" msgid_plural "chicken walker chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -66764,7 +67024,7 @@ msgid "Beagle chassis" msgid_plural "Beagle chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -67571,6 +67831,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "게임에서 야생동물을 제외한 모든 괴물을 제거합니다." +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -67715,8 +67986,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -68038,6 +68309,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "a chk!" @@ -68420,7 +68696,7 @@ msgid "tiny fish" msgid_plural "tiny fish" msgstr[0] "아주 작은 물고기" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -68430,7 +68706,7 @@ msgid "small fish" msgid_plural "small fish" msgstr[0] "작은 물고기" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -68440,7 +68716,7 @@ msgid "medium fish" msgid_plural "medium fish" msgstr[0] "중형 물고기" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -68450,7 +68726,7 @@ msgid "large fish" msgid_plural "large fish" msgstr[0] "큰 물고기" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -68460,7 +68736,7 @@ msgid "huge fish" msgid_plural "huge fish" msgstr[0] "거대한 물고기" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -68585,7 +68861,7 @@ msgid "whitefish" msgid_plural "whitefish" msgstr[0] "화이트피시" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -68597,7 +68873,7 @@ msgid "largemouth bass" msgid_plural "largemouth bass" msgstr[0] "큰입우럭" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "큰입 배스는 스포츠 낚시꾼들에게 인기가 높습니다." @@ -68607,7 +68883,7 @@ msgid "smallmouth bass" msgid_plural "smallmouth bass" msgstr[0] "작은입우럭" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -68619,7 +68895,7 @@ msgid "striped bass" msgid_plural "striped bass" msgstr[0] "줄무늬농어" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -68631,7 +68907,7 @@ msgid "white bass" msgid_plural "white bass" msgstr[0] "화이트 배스" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -68665,7 +68941,7 @@ msgid "sunfish" msgid_plural "sunfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -68675,7 +68951,7 @@ msgid "pumpkinseed sunfish" msgid_plural "pumpkinseed sunfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -68696,7 +68972,7 @@ msgid "redbreast sunfish" msgid_plural "redbreast sunfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -68706,7 +68982,7 @@ msgid "green sunfish" msgid_plural "green sunfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -68716,7 +68992,7 @@ msgid "longear sunfish" msgid_plural "longear sunfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -68726,7 +69002,7 @@ msgid "redear sunfish" msgid_plural "redear sunfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -68736,7 +69012,7 @@ msgid "rock bass" msgid_plural "rock bass" msgstr[0] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -68748,7 +69024,7 @@ msgid "calico bass" msgid_plural "calico bass" msgstr[0] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -68780,7 +69056,7 @@ msgid "channel catfish" msgid_plural "channel catfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -68790,7 +69066,7 @@ msgid "white catfish" msgid_plural "white catfish" msgstr[0] "하얀 메기" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -68881,7 +69157,7 @@ msgid "fallfish" msgid_plural "fallfish" msgstr[0] "폴피쉬" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -68910,7 +69186,7 @@ msgid "crayfish" msgid_plural "crayfish" msgstr[0] "가재" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -68942,7 +69218,7 @@ msgid "" msgstr "" "미국 뱀장어는 한때 흔했지만 댐이 건설된 후 보기 힘들어졌습니다. 이제 댐을 돌릴 사람도 없으니 다시 번영할 기회가 온 것 같습니다." -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -68954,7 +69230,7 @@ msgid "giant crayfish" msgid_plural "giant crayfish" msgstr[0] "거대 가재" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -68966,7 +69242,7 @@ msgid "colossal crayfish" msgid_plural "colossal crayfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -69591,7 +69867,7 @@ msgid "fused dragonflies" msgid_plural "fused dragonflies" msgstr[0] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -69766,7 +70042,7 @@ msgstr[0] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -71308,7 +71584,7 @@ msgid "Great Pyrenees" msgid_plural "Great Pyrenees" msgstr[0] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -71496,7 +71772,7 @@ msgid "moose" msgid_plural "moose" msgstr[0] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -71648,7 +71924,7 @@ msgid_plural "lambs" msgstr[0] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -71930,10 +72206,11 @@ msgstr[0] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -71944,6 +72221,16 @@ msgstr "%s이(가) 녹아 사라졌다." msgid "This monster exists only for testing purposes." msgstr "이 괴물은 테스트 목적으로만 존재합니다." +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -74059,7 +74346,7 @@ msgid "sawbones" msgid_plural "sawbones" msgstr[0] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -74073,7 +74360,7 @@ msgid "doctor burns" msgid_plural "doctor burns" msgstr[0] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -74241,7 +74528,7 @@ msgid "unstable flesh-raptor" msgid_plural "unstable flesh-raptor" msgstr[0] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -74356,17 +74643,18 @@ msgstr[0] "불탄 아이 좀비" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -74791,7 +75079,7 @@ msgid "gangrenous flesh" msgid_plural "gangrenous flesh" msgstr[0] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -74832,7 +75120,7 @@ msgid "scissorlimbs" msgid_plural "scissorlimbs" msgstr[0] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -74845,7 +75133,7 @@ msgid "hanging innards" msgid_plural "hanging innards" msgstr[0] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -75301,7 +75589,7 @@ msgid "Shia LaBeouf" msgid_plural "Shia LaBeouf" msgstr[0] "샤이아 라보프" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -77050,7 +77338,7 @@ msgid "wisp" msgid_plural "wisp" msgstr[0] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -77558,7 +77846,7 @@ msgid "coelophysis" msgid_plural "coelophysis" msgstr[0] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -77570,7 +77858,7 @@ msgid "dilophosaurus" msgid_plural "dilophosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -77582,7 +77870,7 @@ msgid "ceratosaurus" msgid_plural "ceratosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -77595,7 +77883,7 @@ msgid "spinosaurus" msgid_plural "spinosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -77608,7 +77896,7 @@ msgid "allosaurus" msgid_plural "allosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -77620,7 +77908,7 @@ msgid "acrocanthosaurus" msgid_plural "acrocanthosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -77633,19 +77921,31 @@ msgid "siats" msgid_plural "siats" msgstr[0] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -77657,7 +77957,7 @@ msgid "qianzhousaurus" msgid_plural "qianzhousaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -77669,7 +77969,7 @@ msgid "tyrannosaurus rex" msgid_plural "tyrannosaurus rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -77681,7 +77981,7 @@ msgid "compsognathus" msgid_plural "compsognathus" msgstr[0] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -77693,7 +77993,7 @@ msgid "gallimimus" msgid_plural "gallimimus" msgstr[0] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -77717,7 +78017,7 @@ msgid "nothronychus" msgid_plural "nothronychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -77729,7 +78029,7 @@ msgid "deinonychus" msgid_plural "deinonychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -77765,7 +78065,7 @@ msgid "amargasaurus" msgid_plural "amargasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -77777,7 +78077,7 @@ msgid "apatosaurus" msgid_plural "apatosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -77789,7 +78089,7 @@ msgid "brontosaurus" msgid_plural "brontosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -77801,7 +78101,7 @@ msgid "diplodocus" msgid_plural "diplodocus" msgstr[0] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -77811,7 +78111,7 @@ msgid "camarasaurus" msgid_plural "camarasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -77823,7 +78123,7 @@ msgid "brachiosaurus" msgid_plural "brachiosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -77835,7 +78135,7 @@ msgid "alamosaurus" msgid_plural "alamosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -77847,7 +78147,7 @@ msgid "scutellosaurus" msgid_plural "scutellosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -77859,7 +78159,7 @@ msgid "stegosaurus" msgid_plural "stegosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -77870,7 +78170,7 @@ msgid "dyoplosaurus" msgid_plural "dyoplosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -77882,7 +78182,7 @@ msgid "ankylosaurus" msgid_plural "ankylosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -77894,7 +78194,7 @@ msgid "nodosaurus" msgid_plural "nodosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -77905,7 +78205,7 @@ msgid "edmontonia" msgid_plural "edmontonia" msgstr[0] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -77917,7 +78217,7 @@ msgid "camptosaurus" msgid_plural "camptosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -77929,7 +78229,7 @@ msgid "parasaurolophus" msgid_plural "parasaurolophus" msgstr[0] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -77939,7 +78239,7 @@ msgid "maiasaura" msgid_plural "maiasaura" msgstr[0] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -77951,7 +78251,7 @@ msgid "corythosaurus" msgid_plural "corythosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -77963,7 +78263,7 @@ msgid "edmontosaurus" msgid_plural "edmontosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -77973,7 +78273,7 @@ msgid "pachycephalosaurus" msgid_plural "pachycephalosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -77985,7 +78285,7 @@ msgid "pachyrhinosaurus" msgid_plural "pachyrhinosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -77997,7 +78297,7 @@ msgid "pentaceratops" msgid_plural "pentaceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -78009,7 +78309,7 @@ msgid "kosmoceratops" msgid_plural "kosmoceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -78022,7 +78322,7 @@ msgid "torosaurus" msgid_plural "torosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -78034,7 +78334,7 @@ msgid "triceratops" msgid_plural "triceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -78046,7 +78346,7 @@ msgid "dimorphodon" msgid_plural "dimorphodon" msgstr[0] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -78058,7 +78358,7 @@ msgid "pteranodon" msgid_plural "pteranodon" msgstr[0] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -78070,7 +78370,7 @@ msgid "quetzalcoatlus" msgid_plural "quetzalcoatlus" msgstr[0] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -78082,7 +78382,7 @@ msgid "mosasaurus" msgid_plural "mosasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -78094,7 +78394,7 @@ msgid "Gallimimus bio-operator" msgid_plural "Gallimimus bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -78106,7 +78406,7 @@ msgid "Pachycephalosaurus bio-operator" msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -78118,7 +78418,7 @@ msgid "Triceratops bio-operator" msgid_plural "Triceratops bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -78130,7 +78430,7 @@ msgid "Velociraptor bio-operator" msgid_plural "Velociraptor bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -78142,7 +78442,7 @@ msgid "Deinonychus bio-operator" msgid_plural "Deinonychus bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -78154,7 +78454,7 @@ msgid "Dimorphodon bio-operator" msgid_plural "Dimorphodon bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -78166,7 +78466,7 @@ msgid "Spinosaurus bio-operator" msgid_plural "Spinosaurus bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -78263,6 +78563,19 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -78735,6 +79048,11 @@ msgid "dark gray and yellow hatchling" msgid_plural "dark gray and yellow hatchlings" msgstr[0] "" +#: lang/json/MONSTER_from_json.py +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" +msgstr[0] "" + #: lang/json/MONSTER_from_json.py msgid "red and green hatchling" msgid_plural "red and green hatchlings" @@ -78745,11 +79063,6 @@ msgid "dark gray and white hatchling" msgid_plural "dark gray and white hatchlings" msgstr[0] "" -#: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" -msgstr[0] "" - #: lang/json/MONSTER_from_json.py msgid "amargasaurus hatchling" msgid_plural "amargasaurus hatchlings" @@ -78798,7 +79111,6 @@ msgid_plural "magenta and green two-legged juveniles" msgstr[0] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -78818,23 +79130,81 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" +#. ~ Description for juvenile allosaurus #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -79038,6 +79408,18 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -79139,7 +79521,7 @@ msgid "amargasaurus zombie" msgid_plural "amargasaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -79566,6 +79948,7 @@ msgstr[0] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -79610,6 +79993,11 @@ msgid "scorched siats zombie" msgid_plural "scorched siats zombies" msgstr[0] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -79975,6 +80363,18 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -80004,7 +80404,7 @@ msgid "Rage Rex" msgid_plural "Rage Rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -80016,7 +80416,7 @@ msgid "Gruesome Gallimimus" msgid_plural "Gruesome Gallimimus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -80029,7 +80429,7 @@ msgid "Nefarious Nothronychus" msgid_plural "Nefarious Nothronychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -80083,7 +80483,7 @@ msgid "Anabolic Apatosaurus" msgid_plural "Anabolic Apatosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -80141,7 +80541,7 @@ msgid "Anabolic Alamosaurus" msgid_plural "Anabolic Alamosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -80368,11 +80768,23 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -80381,61 +80793,62 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -80443,11 +80856,11 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -80456,11 +80869,11 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -80469,15 +80882,15 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -80505,7 +80918,7 @@ msgid "skeletal spinosaurus" msgid_plural "skeletal spinosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -80517,7 +80930,8 @@ msgid "skeletal allosaurus" msgid_plural "skeletal allosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -80529,7 +80943,7 @@ msgid "skeletal acrocanthosaurus" msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -80541,19 +80955,24 @@ msgid "skeletal siats" msgid_plural "skeletal siats" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -80565,7 +80984,7 @@ msgid "skeletal qianzhousaurus" msgid_plural "skeletal qianzhousaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -80589,7 +81008,7 @@ msgid "skeletal gallimimus" msgid_plural "skeletal gallimimus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -80600,7 +81019,7 @@ msgid "skeletal nothronychus" msgid_plural "skeletal nothronychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -80612,8 +81031,8 @@ msgid "skeletal deinonychus" msgid_plural "skeletal deinonychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -80630,7 +81049,7 @@ msgid "armored amargasaurus" msgid_plural "armored amargasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -80643,7 +81062,7 @@ msgid "armored apatosaurus" msgid_plural "armored apatosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -80655,7 +81074,7 @@ msgid "armored brontosaurus" msgid_plural "armored brontosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -80667,7 +81086,7 @@ msgid "armored diplodocus" msgid_plural "armored diplodocus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -80679,7 +81098,7 @@ msgid "armored camarasaurus" msgid_plural "armored camarasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -80691,7 +81110,7 @@ msgid "armored brachiosaurus" msgid_plural "armored brachiosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -80703,7 +81122,7 @@ msgid "armored alamosaurus" msgid_plural "armored alamosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -80715,7 +81134,7 @@ msgid "skeletal stegosaurus" msgid_plural "skeletal stegosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -80727,7 +81146,7 @@ msgid "skeletal dyoplosaurus" msgid_plural "skeletal dyoplosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -80740,7 +81159,7 @@ msgid "Bone Fortress" msgid_plural "Bone Fortress" msgstr[0] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -80753,7 +81172,7 @@ msgid "armored nodosaurus" msgid_plural "armored nodosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -80765,7 +81184,7 @@ msgid "armored edmontonia" msgid_plural "armored edmontonia" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -80777,7 +81196,7 @@ msgid "armored camptosaurus" msgid_plural "armored camptosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -80789,7 +81208,7 @@ msgid "armored maiasaura" msgid_plural "armored maiasaura" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -80801,7 +81220,7 @@ msgid "armored parasaurolophus" msgid_plural "armored parasaurolophus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -80813,7 +81232,7 @@ msgid "armored corythosaurus" msgid_plural "armored corythosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -80825,7 +81244,7 @@ msgid "armored Edmontosaurus" msgid_plural "armored Edmontosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -80837,7 +81256,7 @@ msgid "protected pachycephalosaurus" msgid_plural "protected pachycephalosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -80849,7 +81268,7 @@ msgid "protected pachyrhinosaurus" msgid_plural "protected pachyrhinosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -80861,7 +81280,7 @@ msgid "protected pentaceratops" msgid_plural "protected pentaceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -80873,7 +81292,7 @@ msgid "armored kosmoceratops" msgid_plural "armored kosmoceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -80885,7 +81304,7 @@ msgid "armored torosaurus" msgid_plural "armored torosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -80897,7 +81316,7 @@ msgid "armored triceratops" msgid_plural "armored triceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -80909,7 +81328,7 @@ msgid "Tyruckusaurus Rex" msgid_plural "Tyruckusaurus Rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -80922,7 +81341,7 @@ msgid "Tankylosaurus" msgid_plural "Tankylosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -80935,7 +81354,7 @@ msgid "Goliath Rex" msgid_plural "Goliath Rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -80947,7 +81366,7 @@ msgid "Ankylosaurus hulk" msgid_plural "Ankylosaurus hulk" msgstr[0] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -80959,7 +81378,7 @@ msgid "Dimorphodon zombie" msgid_plural "Dimorphodon zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -80997,7 +81416,7 @@ msgid "CROWS II, heavy machinegun" msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -81012,7 +81431,7 @@ msgid "CROWS II, light machinegun" msgid_plural "CROWS II, light machinegun" msgstr[0] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -81304,7 +81723,7 @@ msgid "forge hounds" msgid_plural "forge hounds" msgstr[0] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -81589,7 +82008,7 @@ msgid "hunllef rams" msgid_plural "hunllef rams" msgstr[0] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -81713,6 +82132,21 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -81969,7 +82403,7 @@ msgid "animal cracker largemouth bass" msgid_plural "animal cracker largemouth bass" msgstr[0] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -82236,7 +82670,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -87253,7 +87687,7 @@ msgstr[0] "광부 헬멧 (켜짐)" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -87297,7 +87731,7 @@ msgstr "끄기" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -88191,7 +88625,7 @@ msgid "RX11 stimulant delivery system" msgid_plural "RX11 stimulant delivery system" msgstr[0] "RX11 각성제 주사기" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -88770,17 +89204,17 @@ msgid "shooter's earmuffs" msgid_plural "shooter's earmuffs" msgstr[0] "사격용 이어머프" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "사격용 이어머프를 작동시켰다." -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "사격용 이어머프의 배터리가 다 되었다." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -88789,7 +89223,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -88999,7 +89433,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -89012,6 +89445,14 @@ msgid "military flight helmet (on)" msgid_plural "military flight helmets (on)" msgstr[0] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -89345,7 +89786,7 @@ msgid "bagpipes" msgid_plural "bagpipes" msgstr[0] "백파이프" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -89935,7 +90376,7 @@ msgid "Megingjörð" msgid_plural "Megingjörð" msgstr[0] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -90005,7 +90446,7 @@ msgid "escape boots" msgid_plural "escape boots" msgstr[0] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -90688,7 +91129,7 @@ msgid "autonomous surgical scalpels" msgid_plural "autonomous surgical scalpels" msgstr[0] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -92394,7 +92835,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -92404,7 +92845,7 @@ msgstr "" "고대 중국의 곧은 양날검. 가드가 화려하게 장식되었고, 폼멜에 길게 술이 달려 있습니다. 다오, 치앙, 곤과 함께 4대 전통 무기 중 " "하나입니다." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -92489,7 +92930,7 @@ msgid "dao" msgid_plural "dao" msgstr[0] "다오" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -92538,7 +92979,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -92548,7 +92989,7 @@ msgstr "" "현대적인 리메이크처럼 긴 일본 칼은 더 큰 와키자시가 등장하기 전에 사무라이의 예비 무기였습니다. 치명적인 칼날이며, 심지어 유명한 " "동류의 검보다 더 작습니다." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -92579,7 +93020,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -92668,14 +93109,14 @@ msgid "" msgstr "" "화려하게 장식된 핸드가드가 달린 얇은 검입니다. 신사와 검술가들이 선호하는 무기입니다. 가볍고 빠르며, 우아한 전투가 가능합니다." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "일본에서 전래된 희귀한 칼. 무장하지 않은 적에게 치명적이며, 무장한 상태라도 충분히 위협적이다." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -92689,7 +93130,7 @@ msgid "" "supposed to be that bendy." msgstr "독일에서 사용된 거대한 양손검. 이게 원래 이렇게 휘어지는건지 의심이 듭니다." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -92838,7 +93279,7 @@ msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "합성 섬유" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -93554,7 +93995,7 @@ msgid "electronic handcuffs" msgid_plural "electronic handcuffs" msgstr[0] "전자수갑" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -95787,11 +96228,9 @@ msgstr "고강도 손전등의 배터리가 다 되었다." #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" -"경비원들이 흔히 쓰는 원통형 알루미늄 고강도 LED 손전등. 쓸만한 근접무기이기도 합니다. 사용하면 켜져서 빛을 냅니다. 물론 배터리가 " -"있다면요." #: lang/json/TOOL_from_json.py msgid "heavy duty flashlight (on)" @@ -96439,6 +96878,36 @@ msgstr[0] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -97101,7 +97570,7 @@ msgid "shears" msgid_plural "shears" msgstr[0] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -97111,7 +97580,7 @@ msgid "electric shears" msgid_plural "electric shears" msgstr[0] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -97154,6 +97623,30 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -97675,7 +98168,7 @@ msgid "qualitative filter paper" msgid_plural "qualitative filter paper" msgstr[0] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -97688,7 +98181,7 @@ msgid "quantitative filter paper" msgid_plural "quantitative filter paper" msgstr[0] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -98135,39 +98628,39 @@ msgid "Mi-go Biotech" msgid_plural "Mi-go Biotech" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" msgid_plural "%s (happy)" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" msgid_plural "%s (focus)" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" msgid_plural "%s (pain relief)" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" msgid_plural "%s (wake up)" msgstr[0] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -98587,7 +99080,7 @@ msgid "patchwork cotton clothing parts" msgid_plural "patchwork cotton clothing parts" msgstr[0] "간이 목화 의류 부품" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -98811,13 +99304,13 @@ msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "성긴 마름쇠" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "%s에 마름쇠를 뿌렸다." -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -98829,13 +99322,13 @@ msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -99273,6 +99766,20 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "배터리로 작동하는 무선 드릴입니다. 드릴 비트 세트가 딸려 있습니다." +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -99535,7 +100042,7 @@ msgid "pliers" msgid_plural "pliers" msgstr[0] "펜치" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " @@ -99543,6 +100050,20 @@ msgid "" msgstr "" "기본적인 형태의 슬립조인트 플라이어. 펜치라고도 불리며, 기본적인 기계공학 작업에 사용된다. 복잡한 작업에는 렌치도 같이 사용된다." +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -99592,6 +100113,31 @@ msgid "" "to have the right tools for more precise work." msgstr "크기, 용도별로 들어있는 스크류드라이버 세트. 더 정밀한 작업을 하는데 알맞습니다." +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -99716,17 +100262,43 @@ msgstr "" "작고 날카로운 칼날은 숙련된 사람이 정확한 공격을 할 수 있도록 해준다. 시체를 도축하기에는 칼이 너무 작다." #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" -msgstr[0] "렌치" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "" + +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" -#. ~ Description for wrench +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "조정가능한 반월형 렌치. 근접 무기로 적절하며 기계공학 제작에 많이 쓰입니다." +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -100004,35 +100576,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -100062,6 +100605,11 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -100270,8 +100818,8 @@ msgstr[0] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -100689,7 +101237,7 @@ msgid "377-UASTA (weaponized)" msgid_plural "377-UASTA (weaponized)" msgstr[0] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -101103,7 +101651,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -101150,7 +101698,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -101167,7 +101715,7 @@ msgid "inactive CROWS II, light machinegun" msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -102090,6 +102638,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -102137,6 +102694,30 @@ msgstr[0] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -103017,7 +103598,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -103494,6 +104075,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -104365,15 +104950,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "합금 보호판-팔" +msgid "Intradermal Alloy - Arms" +msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -104389,37 +104973,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "합금 보호판-다리" +msgid "Intradermal Alloy - Legs" +msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -104430,8 +105013,8 @@ msgstr "배터리 시스템" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -110001,8 +110584,8 @@ msgstr "감염된 상처가 생겼습니다." #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." -msgstr "물린 상처가 감염된 것 같습니다." +msgid "Your wound feels infected." +msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus #. Filled'. @@ -114645,8 +115228,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "꽝!" @@ -114662,9 +115244,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "쾅!" @@ -115340,7 +115921,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "우지끈!" @@ -117615,7 +118196,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "용광로" @@ -117737,6 +118319,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -120215,13 +120811,13 @@ msgid "" msgstr "20세기의 가장 유명한 권총 중 하나. 이름이 본드가 아닌 사람이라도 꽤 쓸모있게 사용할 수 있을 것입니다." #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -120353,15 +120949,15 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -121287,18 +121883,16 @@ msgstr "" "매우 잘 알려진 AK-47 소총의 후계자입니다. AK 시리즈의 신뢰도와 가볍고, 고속탄인 5.45x39mm 탄을 혼합시켰습니다." #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" -msgstr[0] "FN 파이브-세븐" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" +msgstr[0] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" -"FN 사가 개발한 5.7x28mm 구경 탄환을 사용하기 위해 제작된 권총. 파이브-세븐 (Five-Seven) 은 매우 가벼우며, " -"장탄량이 많고, 장갑 관통력이 좋습니다." #: lang/json/gun_from_json.py msgid "FN P90" @@ -123455,6 +124049,18 @@ msgid "acid dart gun" msgid_plural "acid dart guns" msgstr[0] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -125803,11 +126409,10 @@ msgstr[0] "양각대" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" -"양각대는 소총과 기관총에 널리 사용되어 전방 지지대의 역할을 하며 불필요한 움직임을 감소해 줍니다. 반동 제어가 크게 향상하지만, 안정된" -" 바닥에서만 사용할 수 있고, 총기를 손에 드는데 시간이 더 걸리게 됩니다." #: lang/json/gunmod_from_json.py msgid "modified bipod" @@ -125817,10 +126422,10 @@ msgstr[0] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -126287,17 +126892,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -128639,6 +129248,11 @@ msgid "" "the punishment of combat." msgstr "이 무기는 고품질이며 전투에서 쓸 수 있다." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -129478,6 +130092,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "위로 스크롤" @@ -129646,6 +130267,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "측면 보호구 착용" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "보호구 단축키 설정" @@ -130758,6 +131383,10 @@ msgstr "커서 위로 올리기" msgid "Move cursor down" msgstr "커서 아래로 내리기" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "단축키창 나가기" @@ -130958,6 +131587,20 @@ msgstr "예" msgid "No" msgstr "아니오" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "취소" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -132246,12 +132889,12 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr ".32 ACP를 사용하는 Vz.61 스콜피온에 사용되는 20발들이 표준탄창." #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -132308,12 +132951,12 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -132868,13 +133511,13 @@ msgid "" msgstr "AK-74M이랑 호환되는 45발들이 탄창으로, 원래 RPK-74 경기관총용으로 제작되었던 탄창입니다." #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." -msgstr "FN 파이브-세븐 권총에 사용하는 표준 탄창입니다." +msgid "A standard capacity magazine for use with the FN Five-seveN." +msgstr "" #: lang/json/magazine_from_json.py msgid "P90 50-round magazine" @@ -136146,6 +136789,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -136568,8 +137221,8 @@ msgstr "합기도" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -136593,7 +137246,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -136607,7 +137261,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -136620,9 +137274,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "권투" @@ -136782,7 +137465,7 @@ msgstr "카포에이라 템포" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -136797,7 +137480,8 @@ msgstr "학권" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -136827,17 +137511,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -136848,10 +137531,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -136862,9 +137559,10 @@ msgstr "용권" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -136879,35 +137577,56 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+10% bash damage.\n" +"Lasts 3 turns." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" +"\n" +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" +msgstr "용의 소용돌이" + #: lang/json/martial_art_from_json.py msgid "Eskrima" msgstr "에스크리마" @@ -136996,6 +137715,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "받아내기" @@ -137053,7 +137786,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -137067,8 +137800,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -137082,6 +137816,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -137133,6 +137868,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "가라테" @@ -137222,6 +137970,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "표권" @@ -137368,6 +138131,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "무에타이" @@ -137706,16 +138484,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -137818,7 +138597,7 @@ msgstr "창술 자세" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -137925,33 +138704,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -138074,7 +138853,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -138274,6 +139053,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -138334,10 +139128,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -138438,10 +139233,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -139085,7 +139881,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -139095,11 +139906,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -139193,6 +140005,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -139205,21 +140031,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -139297,6 +140124,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -140960,7 +141801,7 @@ msgstr "아직 그걸 못찾은거 같은데." msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -141160,7 +142001,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -141370,7 +142211,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "생존자임을 증명" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -141424,8 +142265,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -141587,7 +142427,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -141601,7 +142441,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -141640,7 +142480,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -141675,7 +142515,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -141706,7 +142546,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -141748,7 +142588,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -141790,16 +142630,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -141846,7 +142720,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -141896,7 +142770,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -141938,7 +142812,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -141987,7 +142861,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -142014,7 +142888,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -142049,7 +142923,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -142918,7 +143792,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -142953,7 +143827,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -142990,7 +143864,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -143025,7 +143899,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -143053,7 +143927,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -143105,7 +143979,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -143136,7 +144010,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -143165,7 +144039,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -143195,7 +144069,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -143464,8 +144338,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -143866,7 +144739,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -143907,7 +144780,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -143934,7 +144807,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -144016,7 +144889,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -144053,7 +144926,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -144097,7 +144970,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "격리구 소탕" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -144146,7 +145019,7 @@ msgstr "" msgid "Missing Caravan" msgstr "캐러반 실종사건 조사" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -144188,7 +145061,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "안내서 회수하기" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -144229,7 +145102,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -144264,7 +145137,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -144309,7 +145182,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -144320,6 +145193,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -144470,7 +145401,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -144525,7 +145456,7 @@ msgstr "" msgid "Kill Bandits" msgstr "약탈자 죽이기" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -144564,7 +145495,7 @@ msgstr "올드 가드는 범죄자들을 제거해줘서 고마워할거야. 너 msgid "Deal with Informant" msgstr "밀고자 처리하기 " -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -144603,11 +145534,63 @@ msgstr "쥐새끼를 잡았나?" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -144633,15 +145616,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -144698,7 +145677,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -144748,7 +145727,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -144793,7 +145772,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -144834,11 +145813,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -144881,7 +145861,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -144929,7 +145909,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -144973,7 +145953,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -146648,7 +147628,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -146667,7 +147647,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -146694,7 +147674,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -146728,7 +147708,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -146775,7 +147755,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -147551,6 +148531,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -148243,14 +149247,14 @@ msgstr "약물의 주입이 끝나자 심장이 미친듯이 뛰기 시작했다 #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." -msgstr "짐승같은 본성을 포용했다." +msgid "Embraced their bestial nature." +msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." -msgstr "짐승같은 본성을 포용했다." +msgid "Embraced their bestial nature." +msgstr "" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py @@ -148980,6 +149984,28 @@ msgid "" msgstr "" "당신은 극독파의 문하생입니다. 시작할 때 다음 다섯 가지 극독 무공 중 하나를 가지고 시작합니다: 지네, 독사, 전갈, 도마뱀, 두꺼비." +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -149888,7 +150914,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -149899,6 +150924,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -150031,7 +151063,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -150288,9 +151320,9 @@ msgstr "공포스러운" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." -msgstr "" +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." +msgstr "당신에게는 근처 동물들을 겁에 질리게 하는 무언가가 있습니다. 근처 동물들이 대부분 도망가려고 하게 됩니다." #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -153313,8 +154345,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -153556,8 +154588,8 @@ msgstr "강함" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" -msgstr "근육이 조금 강해졌습니다. 힘 + 1" +msgid "Your muscles are a little stronger. +1 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Strong" @@ -153565,8 +154597,8 @@ msgstr "뛰어난 근력" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" -msgstr "근육이 더욱 강해졌습니다. 힘 + 2" +msgid "Your muscles are stronger. +2 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Strong" @@ -153574,8 +154606,8 @@ msgstr "극한적 근력" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" -msgstr "근육이 매우 강해졌습니다. 힘 + 4" +msgid "Your muscles are much stronger. +4 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Strong" @@ -153583,8 +154615,8 @@ msgstr "초인적 근력" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" -msgstr "눈에 띄게 근육이 부풀어 올랐습니다. 힘 + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Strength" @@ -153601,8 +154633,8 @@ msgstr "민첩성" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" -msgstr "조금 날렵해졌습니다. 민첩성 + 1" +msgid "You are a little nimbler. +1 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Dextrous" @@ -153610,8 +154642,8 @@ msgstr "뛰어난 민첩성" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" -msgstr "날렵해졌습니다. 민첩성 + 2" +msgid "You are nimbler. +2 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Dextrous" @@ -153619,8 +154651,8 @@ msgstr "극한적 민첩성" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" -msgstr "날렵하고 신속해졌습니다. 민첩성 + 4" +msgid "You are nimble and quick. +4 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Dextrous" @@ -153628,8 +154660,8 @@ msgstr "초인적 민첩성" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" -msgstr "예전에 비해 훨씬 날렵해졌습니다. 민첩성 + 7" +msgid "You are much nimbler than before. +7 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Dexterity" @@ -153646,8 +154678,8 @@ msgstr "지능" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" -msgstr "조금 영리해졌습니다. 지능 + 1" +msgid "You are a little smarter. +1 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Smart" @@ -153655,8 +154687,8 @@ msgstr "뛰어난 지능" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" -msgstr "더 영리해졌습니다. 지능 + 2" +msgid "You are smarter. +2 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Smart" @@ -153665,8 +154697,8 @@ msgstr "극한적 지능" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" -msgstr "매우 영리해졌으며 두개골에 살짝 튀어나온 부분이 생겼습니다. 지능 + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Smart" @@ -153675,7 +154707,7 @@ msgstr "초인적 지능" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -153705,8 +154737,8 @@ msgstr "지각력" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" -msgstr "감각이 조금 날카로워졌습니다. 지각력 + 1" +msgid "Your senses are a little keener. +1 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Perceptive" @@ -153714,8 +154746,8 @@ msgstr "뛰어난 지각력" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" -msgstr "감각이 더 날카로워졌습니다. 지각력 + 2" +msgid "Your senses are keener. +2 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Perceptive" @@ -153723,8 +154755,8 @@ msgstr "극한적 지각력" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" -msgstr "감각이 매우 날카로워졌습니다. 지각력 + 4" +msgid "Your senses are much keener. +4 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Perceptive" @@ -153732,8 +154764,8 @@ msgstr "초인적 지각력" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" -msgstr "상상도 못했던 것들을 감지할 수 있게 되었습니다. 지각력 + 7" +msgid "You can sense things you never imagined. +7 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Perception" @@ -154239,7 +155271,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -154358,7 +155390,7 @@ msgstr "심한 피로감" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -158893,6 +159925,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "사이보그" @@ -158928,6 +159961,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -159486,6 +160527,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -159621,6 +160670,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -159789,6 +160842,10 @@ msgstr "중개상" msgid "Guard" msgstr "보초병" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "마케일라 산체스" @@ -159957,6 +161014,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -160892,6 +161953,10 @@ msgstr "슬라임 굴" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -161581,6 +162646,10 @@ msgstr "참호 스파이크" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "대장간 조사" @@ -161589,24 +162658,40 @@ msgstr "대장간 조사" msgid "blacksmith shop" msgstr "대장간" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -161973,6 +163058,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -163437,6 +164526,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -163551,6 +164694,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -163587,7 +164758,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -163600,7 +164771,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -164195,6 +165366,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -164459,6 +165656,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -164585,6 +165836,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -164633,6 +165912,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -164655,6 +165962,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -169289,6 +170648,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -173651,6 +175068,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -178606,6 +180045,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -178650,6 +180611,63 @@ msgstr "" msgid "Farm processing shack" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "차고를 위해 땅을 조사합니다." @@ -178705,6 +180723,524 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "" @@ -178909,6 +181445,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -179603,6 +182515,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -179868,60 +183419,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -180756,7 +184616,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -180768,12 +184632,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "차고" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -180781,11 +184655,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -180948,6 +184832,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -183121,6 +187061,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -183434,7 +187400,7 @@ msgid "" "objects." msgstr "가공되지 않은 재료를 가공해서 유용한 물건으로 만드는 기술입니다. 다양한 물품을 만들 때 중요한 역할을 합니다." -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -184198,9 +188164,9 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." -msgstr "좀비 떼에게 쫓기고 있다면, 지하철 쪽으로 도망치세요. 한 두 블록 정도 이동한 다음, 다시 나오면 됩니다." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." +msgstr "" #: lang/json/snippet_from_json.py msgid "" @@ -185031,20 +188997,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" -"마이크가 더 이상 제정신인지 아닌지 확실하지 않다. 그는 한 번 학교를 태울 만큼 불행했다. 이 경험은 당시 그의 갈비뼈보다 더 많이 " -"부러졌다." #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" -"폭발물에 대한 생각이에요 그래도 달릴 수 있는데 아직 뛰지 않으면 더 뛰세요. 당신과 다이너마이트 막대 사이에는 여분의 공간이 " -"없습니다." #: lang/json/snippet_from_json.py msgid "Avoid using launchers in narrow hallways, you might miss." @@ -190090,6 +194053,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -190098,7 +194327,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -190215,7 +194444,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -194926,7 +199155,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -194985,7 +199214,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -194998,7 +199227,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -195016,17 +199245,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -195105,7 +199334,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -195215,8 +199444,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -195624,7 +199853,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -195634,8 +199863,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -197057,6 +201286,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -199352,7 +203643,7 @@ msgstr "뭔가를 죽이게 해줘!" msgid "I'm your best friend, right?" msgstr "난 너의 제일 친한 친구야, 그렇지?" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "난 너를 사랑해!" @@ -200013,6 +204304,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "하-하! 재미있는 차 사진이다." + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "훌룡한 자연의 사진" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "매우 흥미로워 보이는 여행 사진" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "유명한 밴드의 콘서트 사진" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "누군가의 호화로운 주택 사진" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "사진을 보며 향수에 잠겼다." + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "네." + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -200031,6 +204434,21 @@ msgstr "\"우리가 도와줄게!\"" msgid "\"i'm here for you!\"" msgstr "\"널 도와주기 위해 왔어!\"" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "\"우리가 옳았어, 정부가 해냈어\"" @@ -201215,6 +205633,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -203574,6 +208070,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -203683,6 +208186,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -203706,6 +208227,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -205216,7 +209744,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -205386,19 +209914,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -205471,95 +209999,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "나랑 놀고 싶니?" +msgid "\"Wanna play with me?\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"Sing with me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "나랑 같이 노래부르자!" +msgid "\"I love you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" -msgstr "제발 나를 데려가줘!" +msgid "\"Please take me with you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "쿠키 좀 줄래?" +msgid "\"May I have a cookie?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "같이 놀자!" +msgid "\"Let's play together!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" -msgstr "놀 시간이야!" +msgid "\"Time to play!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" -msgstr "음 냠냠! 맛있네!" +msgid "\"Om nom nom! Delicious!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" -msgstr "당신이 제 엄마에요?" +msgid "\"Are you my mommy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" -msgstr "야, 재미있다!" +msgid "\"Oh, how fun!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" -msgstr "너는 최고의 친구야!" +msgid "\"You're my best friend!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" -msgstr "히히!" +msgid "\"Heehee!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" -msgstr "재밌게 놀자!" +msgid "\"Let's have fun!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" -msgstr "다과회를 열자!" +msgid "\"Let's have a tea party!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" -msgstr "너는 최고야!" +msgid "\"You're the best!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." -msgstr "너 그러면 안 돼." +msgid "\"You shouldn't have done that.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "난 니가 미워." +msgid "\"I hate you.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" -msgstr "가서 죽어버려!" +msgid "\"Go kill yourself!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" -msgstr "날 위해서 죽어버려!" +msgid "\"Die for me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" -msgstr "왜 죽지 않는 거야?" +msgid "\"Why won't you die?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Blood… Delicious.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -205567,32 +210099,32 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" -msgstr "씨발 엿이나 먹어라!" +msgid "\"FUCK YOU!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" -msgstr "너 우리 엄마랑 뭔짓했어?" +msgid "\"What did you do with my Mommy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "어이 애송이. 사탕 좀 먹을래?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" -msgstr "여기 아래에, 그들 모두가 떠있어!" +msgid "\"Down here, they ALL float!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" -msgstr "너 정말로 꿀이 더 필요해?" +msgid "\"Do you really need that much honey?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" -msgstr "내 전 주인은 내가 그녀의 내장을 뽑아냈을 때 돼지처럼 꽥꽥거렸지!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" +msgstr "" #: lang/json/speech_from_json.py msgid "BARK!" @@ -205607,19 +210139,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -206714,6 +211242,10 @@ msgstr "식료품점" msgid "Gun Store" msgstr "총포사" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "차고" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "전당포" @@ -208147,6 +212679,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -215391,6 +219927,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -216037,6 +221351,10 @@ msgstr "내가 뭐 도울 것 없을까?" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -216106,6 +221424,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -218552,10 +223881,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -222365,10 +227690,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -222699,6 +228020,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -223004,6 +228434,15 @@ msgstr "등 뒤를 조심해." msgid "Is there any way I can join the 'Old Guard'?" msgstr "내가 '올드 가드'에 들어갈 방법이 있을까?" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "올드 가드가 필요한 게 있을까?" @@ -223105,6 +228544,58 @@ msgstr "" "모집관을 통하지 않으면 들어올 수 없어. 그렇지만 도움은 받아. 할 일이 있는지 물어보려면 나한테 물어 봐. 계약자로써 임무를 완수하는 " "건 이 세계에 남아 있는 가장 강한 사람들 사이에서 이름을 알리는 좋은 길이야." +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -225882,6 +231373,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -226067,20 +231575,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "가방 챙겨, . 떠날거야." -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "%s을(를) 막고 반격했다." - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "이(가) %s을(를) 막고 반격했다." - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "무장해제" @@ -226688,20 +232182,6 @@ msgstr "채찍으로 %s의 무장을 해제시켰다" msgid " disarms %s using their whip" msgstr "이(가) 채찍으로 %s의 무장을 해제시켰다" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "반격" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "%s에게 반격했다." - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "이(가) %s에게 반격했다." - #: lang/json/technique_from_json.py msgid "Feint" msgstr "페인트 모션" @@ -226737,54 +232217,44 @@ msgid " jabs deftly at %s" msgstr "이(가) %s에게 능숙한 일격을 날렸다." #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" -msgstr "" +msgid "You smoothly throw %s" +msgstr "%s을(를) 내던졌다." #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -226868,20 +232338,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "받아치기" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -227000,34 +232456,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "학의 날갯짓" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "학의 일격" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -227043,45 +232471,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" -msgstr "" +msgid "Crane Flap" +msgstr "학의 날갯짓" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" -msgstr "" +msgid "Crane Strike" +msgstr "학의 일격" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -227165,17 +232593,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -227217,7 +232645,7 @@ msgid " lunges at %s" msgstr "이(가) %s을(를) 향해 몸을 뻗으며 찔렀다." #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -227230,6 +232658,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -227376,20 +232808,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -227494,20 +232912,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -227608,20 +233012,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -227946,41 +233336,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -228181,20 +233567,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -228955,20 +234327,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -229067,20 +234425,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -229123,20 +234467,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -231377,6 +236707,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "사과 나무" @@ -234766,24 +240108,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -234791,32 +240133,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -234824,35 +240166,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -234860,33 +240197,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -234894,10 +240231,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -234905,10 +240242,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -234916,40 +240253,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -234957,21 +240292,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" +msgid "reinforced triple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" -msgstr "" - -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -234979,44 +240310,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" +msgid "quadruple glazed glass window" msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -235024,14 +240346,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -235049,12 +240367,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -235062,21 +240375,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" +msgid "plastic window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Plastic window" -msgstr "" - -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -235084,10 +240393,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -235095,7 +240404,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -235104,10 +240413,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -235116,21 +240425,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -235138,10 +240443,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -235150,10 +240455,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -235161,7 +240466,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -235170,26 +240475,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -235203,11 +240508,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -237710,18 +243011,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "불투명한 문" @@ -238091,6 +243499,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -238579,6 +244038,15 @@ msgstr "" msgid "wooden aisle" msgstr "나무 복도" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -238712,6 +244180,10 @@ msgstr "접이식 나무상자" msgid "wood table" msgstr "나무 탁자" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -238780,6 +244252,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -238887,6 +244363,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -240072,8 +245554,8 @@ msgstr "피로" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -242772,6 +248254,18 @@ msgstr "성능" msgid "Coverage:" msgstr "보호율:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "방해도:" @@ -242863,8 +248357,9 @@ msgstr "보호구 정렬" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -242876,6 +248371,12 @@ msgstr "(가장 안쪽)" msgid "Storage (%s)" msgstr "수납용량 (%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(가장 바깥쪽)" @@ -247038,11 +252539,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "취소" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "일어서기 위해 노력하는 중입니다." @@ -247353,6 +252849,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -249521,10 +255025,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "요리" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -250065,6 +255565,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -250491,6 +255999,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -250579,6 +256092,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -251330,7 +256848,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "이 바이너리는 타일 지원 사양이 아닙니다." @@ -251352,15 +256870,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -254690,6 +260199,10 @@ msgstr "거래" msgid "You swap places with %s." msgstr "%s와(과) 자리를 바꿨다." +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -254974,6 +260487,15 @@ msgstr "그곳으로 여행할 수 없다." msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "물품" @@ -257287,10 +262809,6 @@ msgstr "타고 있는 중에는 잘 수 없다." msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "네." - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "네, 그리고 자기 전에 게임을 저장합니다." @@ -257431,6 +262949,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -257790,10 +263316,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "%s(으)로 무엇을 합니까?" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "먹는다" @@ -258318,16 +263840,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" -"이 벽은 완벽한 수직이며, 단단한 돌로 된 벽에 이상하게 뒤틀린 구멍이\n" -"안으로 쭉 뚫려 있습니다. 이 구멍은 인간 형태의 모양이지만\n" -"팔다리가 비정상적으로 길고 뒤틀려 있습니다." - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -261631,6 +267143,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -264622,13 +270149,14 @@ msgid "BEES!" msgstr "벌이야!" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "타이머 지정 (0 은 취소)?" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "타이머를 %d초로 설정했다." +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" #: src/iuse.cpp msgid "Tick!" @@ -265365,8 +270893,7 @@ msgid "Your vision is fine already." msgstr "시야가 이미 정상이다." #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -265586,38 +271113,6 @@ msgstr "메모리카드 해독 (낮은 수준)" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "하-하! 재미있는 차 사진이다." - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "훌룡한 자연의 사진" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "매우 흥미로워 보이는 여행 사진" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "유명한 밴드의 콘서트 사진" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "누군가의 호화로운 주택 사진" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "사진을 보며 향수에 잠겼다." - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -266837,87 +272332,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "" - -#: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -269731,8 +275169,20 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " -msgstr "요구" +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " +msgstr "" #: src/martialarts.cpp msgid "activate" @@ -274693,6 +280143,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -275561,21 +281016,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "집중해서, 쾌활한 퐁 소리와 함께 새 슬라임 새끼를 낳았다!" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "어서와, 거대한 나, 가자고!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "우린 한팀이야, 해낼 수 있어!" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -275839,11 +281279,20 @@ msgstr "확인중" msgid "%s to activate mutation, " msgstr "%s 키로 변이 활성화, " +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "%s 키로 단축키 재설정, " +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -277507,11 +282956,6 @@ msgstr "얼굴이 없어 대화할 수 없다!" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -278285,6 +283729,15 @@ msgid "" "trying to move into mineable terrain." msgstr "곡괭이나 착암기를 장착하고 있을 경우, 굴착 가능한 지역으로 이동할 때마다 자동으로 사용합니다." +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "자동 채집" @@ -278292,14 +283745,19 @@ msgstr "자동 채집" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "수풀" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -280666,20 +286124,6 @@ msgstr "영역:" msgid "# Unexplored" msgstr "# 조사되지 않음" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "진행 중인 임무까지 거리:" @@ -281020,6 +286464,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s, %d일" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -281068,6 +286517,10 @@ msgstr "심한 추위!" msgid "Freezing!" msgstr "얼어붙음!" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -283475,6 +288928,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -287786,6 +293249,10 @@ msgstr "%1$s의 %2$s 내용물을 정수하기엔 전력이 부족하다." msgid "You purify the contents of the %1$s's %2$s" msgstr "%1$s의 %2$s 내용물을 정수했다." +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "월요일" diff --git a/lang/po/nb.po b/lang/po/nb.po index ccfc511c6eb7a..c15f672aa8f33 100644 --- a/lang/po/nb.po +++ b/lang/po/nb.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Arne Holmen , 2021\n" "Language-Team: Norwegian Bokmål (https://www.transifex.com/cataclysm-dda-translators/teams/2217/nb/)\n" @@ -26,7 +26,7 @@ msgid_plural "battery" msgstr[0] "batteri" msgstr[1] "batteri" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -41,7 +41,7 @@ msgid_plural "butane" msgstr[0] "butan" msgstr[1] "butan" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "En vanlig brannfarlig væske som brukes i lightere." @@ -52,7 +52,7 @@ msgid_plural "aerosol paint" msgstr[0] "aerosolmaling" msgstr[1] "aerosolmaling" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -67,7 +67,7 @@ msgid_plural "permanent ink" msgstr[0] "permanent blekk" msgstr[1] "permanent blekk" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -82,7 +82,7 @@ msgid_plural "candle wax" msgstr[0] "Stearin" msgstr[1] "Stearinvoks" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "Et fast brennbart stoff som brukes til å lage lys." @@ -93,7 +93,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "bluss pyroteknisk" msgstr[1] "bluss pyroteknisk" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "Et pyroteknisk kjemikalie som brukes i bluss" @@ -119,7 +119,7 @@ msgid_plural "oxygen" msgstr[0] "oksygen" msgstr[1] "oksygen" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Komprimert medisinsk oksygen." @@ -130,7 +130,7 @@ msgid_plural "aluminum foil" msgstr[0] "aluminiumsfolie" msgstr[1] "aluminiumsfolier" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -156,7 +156,7 @@ msgid_plural "thread" msgstr[0] "tråd" msgstr[1] "tråd" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -190,7 +190,7 @@ msgid_plural "yarn" msgstr[0] "garn" msgstr[1] "garn" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Ull garn, kan bli brukt til å strikke ullklær." @@ -212,7 +212,7 @@ msgid_plural "duct tape" msgstr[0] "gaffateip" msgstr[1] "gaffateiper" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "En rull av utrolig sterk tape. Dets bruksområder er utallig." @@ -277,8 +277,8 @@ msgid_plural "plutonium slurry" msgstr[0] "plutoniumoppslemming" msgstr[1] "plutoniumoppslemminger" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -346,7 +346,7 @@ msgid_plural "bearings" msgstr[0] "kulelager" msgstr[1] "kulelager" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "En kasse med kulelager, nyttig som ammunisjon for spretterter." @@ -394,7 +394,7 @@ msgid_plural "120mm HEAT" msgstr[0] "120mm HEAT" msgstr[1] "120mm HEAT" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -423,7 +423,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "blandet røykfritt krutt" msgstr[1] "blandet røykfritt krutt" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -441,7 +441,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "røykfritt haglepulver" msgstr[1] "røykfritt haglepulver" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "Krutt av våpengradskvalitet, ment for bruk i haglepatroner." @@ -452,7 +452,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "røykfritt pistolpulver" msgstr[1] "røykfritt pistolpulver" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "våpengradskvalitet krutt, ment for bruk i pistolammo." @@ -463,7 +463,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "røykfritt magnumpulver" msgstr[1] "røykfritt magnumpulver" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -475,7 +475,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "røykfritt geværpulver" msgstr[1] "røykfritt geværpulver" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "Krutt av våpengradskvalitet, ment for bruk i rifleammo." @@ -486,7 +486,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "røykfritt stort geværpulver" msgstr[1] "røykfritt stort geværpulver" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "Krutt av våpengradskvalitet, ment for bruk i større rifleammo. " @@ -497,7 +497,7 @@ msgid_plural "artillery propellant" msgstr[0] "artilleridrivmiddel" msgstr[1] "artilleridrivmiddel" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -511,7 +511,7 @@ msgid_plural "oxidizer powder" msgstr[0] "oksidasjonspulver" msgstr[1] "oksidasjonspulver" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Volatil pulverisert kjemisk oksidasjonsmiddel." @@ -522,7 +522,7 @@ msgid_plural "lye powder" msgstr[0] "lutkrutt" msgstr[1] "lutkrutt" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Pulverisert kaustisk soda." @@ -614,7 +614,7 @@ msgid_plural "copper" msgstr[0] "kobber" msgstr[1] "kobber" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -629,7 +629,7 @@ msgid_plural "medical tape" msgstr[0] "medisinsk teip" msgstr[1] "medisinsk teip" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "En rull av medisintape, lik gaffateip." @@ -641,7 +641,7 @@ msgstr[0] "plassholderammunisjon " msgstr[1] "plassholderammunisjon" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "HVIS DU SER DETTE SÅ ER DET EN BUG." @@ -652,7 +652,7 @@ msgid_plural "charcoal" msgstr[0] "trekull" msgstr[1] "trekull" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -669,7 +669,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "kalsiumkarbidforblanding" msgstr[1] "kalsiumkarbidforblanding" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -699,7 +699,7 @@ msgid_plural "albuterol" msgstr[0] "salbutamol" msgstr[1] "salbutamol" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -797,7 +797,7 @@ msgid_plural "nicotine liquid" msgstr[0] "nikotinvæske" msgstr[1] "nikotinvæsker" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -812,7 +812,7 @@ msgid_plural "fish bait" msgstr[0] "fiskagn" msgstr[1] "fiskeagner" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Ett agn brukt i feller for å fange fisk." @@ -874,7 +874,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "uferdig kull" msgstr[1] "uferdig kull" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -889,7 +889,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "uferdig kalsiumkarbid" msgstr[1] "uferdig kalsiumkarbid" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -915,7 +915,7 @@ msgid_plural "nitrox" msgstr[0] "nitrox" msgstr[1] "nitrox" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "Blanding av oksygen og nitrogen i proporsjoner passende for dykking. " @@ -926,7 +926,7 @@ msgid_plural "extinguishing agent" msgstr[0] "slukningsmiddel" msgstr[1] "slukningsmiddel" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Tørr kjemisk løsning effektiv ved slukking av branner." @@ -937,7 +937,7 @@ msgid_plural "tinder" msgstr[0] "tennstoff" msgstr[1] "tennstoff" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -972,7 +972,7 @@ msgid_plural "bronze" msgstr[0] "bronse" msgstr[1] "bronse" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "Anstendig størrelse biter av bronse, for å forme noen klassiske ting." @@ -983,7 +983,7 @@ msgid_plural "glowstick juice" msgstr[0] "glødepinnejuice" msgstr[1] "glødepinnejuice" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -997,7 +997,7 @@ msgid_plural "graphite" msgstr[0] "grafitt" msgstr[1] "grafitt" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1014,7 +1014,7 @@ msgid_plural "black pen ink" msgstr[0] "svart pennblekk" msgstr[1] "svart pennblekk" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1029,7 +1029,7 @@ msgid_plural "blue pen ink" msgstr[0] "blå pennblekk" msgstr[1] "blå pennblekk" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1045,7 +1045,7 @@ msgid_plural "green pen ink" msgstr[0] "grønt pennblekk" msgstr[1] "grønt pennblekk" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1060,7 +1060,7 @@ msgid_plural "red pen ink" msgstr[0] "rød pennblekk" msgstr[1] "rød pennblekk" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1092,7 +1092,7 @@ msgid_plural "sulfur" msgstr[0] "svovel" msgstr[1] "svovel" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1122,7 +1122,7 @@ msgid_plural "cement" msgstr[0] "sement" msgstr[1] "sement" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1139,7 +1139,7 @@ msgid_plural "gravel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1150,7 +1150,7 @@ msgid_plural "limestone" msgstr[0] "kalkstein" msgstr[1] "kalkstein" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1167,7 +1167,7 @@ msgid_plural "quicklime" msgstr[0] "kalsiumoksid" msgstr[1] "kalsiumoksid" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1187,7 +1187,7 @@ msgid_plural "sand" msgstr[0] "sand" msgstr[1] "sand" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1202,7 +1202,7 @@ msgid_plural "soil" msgstr[0] "jord" msgstr[1] "jord" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1217,7 +1217,7 @@ msgid_plural "aluminum powder" msgstr[0] "aluminiumpulver" msgstr[1] "aluminiumpulver" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1236,7 +1236,7 @@ msgid_plural "zinc powder" msgstr[0] "sinkpulver " msgstr[1] "sinkpulver" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1255,7 +1255,7 @@ msgid_plural "zinc oxide" msgstr[0] "sinkoksid" msgstr[1] "sinkoksid" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1270,7 +1270,7 @@ msgid_plural "manganese dioxide" msgstr[0] "mangandioksid" msgstr[1] "mangandioksid" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1286,7 +1286,7 @@ msgid_plural "potassium chloride" msgstr[0] "kaliumklorid" msgstr[1] "kaliumklorid" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1305,7 +1305,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "kaliumhydroksid " msgstr[1] "kaliumhydroksid" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1322,7 +1322,7 @@ msgid_plural "acetone" msgstr[0] "aceton" msgstr[1] "aceton" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1339,7 +1339,7 @@ msgid_plural "chromium oxide" msgstr[0] "kromoksid" msgstr[1] "kromoksid" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1360,7 +1360,7 @@ msgid_plural "calcium carbide" msgstr[0] "kalsiumkarbid" msgstr[1] "kalsiumkarbid" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1381,7 +1381,7 @@ msgid_plural "hexamine" msgstr[0] "heksaminkoboltklorid" msgstr[1] "heksaminkoboltklorid" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1402,7 +1402,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "hydrogenperoksid (konsentrert)" msgstr[1] "hydrogenperoksid (konsentrert)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1421,7 +1421,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "ammonium nitrat" msgstr[1] "ammonium nitrat" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1440,7 +1440,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "ammoniumnitratpellet" msgstr[1] "ammoniumnitratpellets" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1458,7 +1458,7 @@ msgid_plural "saltpeter" msgstr[0] "salpeter" msgstr[1] "salpeter" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1475,7 +1475,7 @@ msgid_plural "niter" msgstr[0] "niter" msgstr[1] "niter" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1490,7 +1490,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "aluminium" msgstr[1] "aluminiumsulfat" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1513,7 +1513,7 @@ msgid_plural "acetic acid" msgstr[0] "eddiksyre" msgstr[1] "eddiksyre" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1532,7 +1532,7 @@ msgid_plural "formaldehyde" msgstr[0] "formaldehyd" msgstr[1] "formaldehyd" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1551,7 +1551,7 @@ msgid_plural "thermite" msgstr[0] "termitt" msgstr[1] "termitt" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1570,7 +1570,7 @@ msgid_plural "ANFO" msgstr[0] "ANFO" msgstr[1] "ANFO" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1590,7 +1590,7 @@ msgid_plural "black gunpowder" msgstr[0] "svartkrutt" msgstr[1] "svartkrutt" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1609,7 +1609,7 @@ msgid_plural "match head powder" msgstr[0] "fyrstikkpulver" msgstr[1] "fyrstikkpulver" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1626,7 +1626,7 @@ msgid_plural "RDX" msgstr[0] "RDX" msgstr[1] "RDX" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1643,7 +1643,7 @@ msgid_plural "composition b" msgstr[0] "komposisjon b" msgstr[1] "komposisjon b" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1661,7 +1661,7 @@ msgid_plural "HMTD" msgstr[0] "HMTD" msgstr[1] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1678,7 +1678,7 @@ msgid_plural "APEX" msgstr[0] "APEX" msgstr[1] "APEX" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1695,7 +1695,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "improvisert rakettdrivstoff " msgstr[1] "improvisert rakettdrivstoff " -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1710,7 +1710,7 @@ msgid_plural "detergent" msgstr[0] "vaskemiddel " msgstr[1] "vaskemiddel " -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "Et populært før-katastrofen vaskepulver." @@ -1721,7 +1721,7 @@ msgid_plural "soap flakes" msgstr[0] "såpeflak " msgstr[1] "såpeflak" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "Et såpestykke skåret i flak som er egnet til bruk i en vaskemaskin. " @@ -1790,7 +1790,7 @@ msgid_plural "concentrated venom" msgstr[0] "konsentrert gift " msgstr[1] "konsentrert gift " -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1809,7 +1809,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "konsentrert lammelsesmiddel" msgstr[1] "konsentrert lammelsesmiddel" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1828,7 +1828,7 @@ msgid_plural "rocuronium" msgstr[0] "rokuronium " msgstr[1] "rokuronium" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1845,7 +1845,7 @@ msgid_plural "red phosphorous" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1858,7 +1858,7 @@ msgid_plural "iodine crystal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1871,7 +1871,7 @@ msgid_plural "ethanol" msgstr[0] "etanol" msgstr[1] "etanol" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1905,7 +1905,7 @@ msgid_plural "methanol" msgstr[0] "metanol" msgstr[1] "metanol" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1921,7 +1921,7 @@ msgid_plural "diesel" msgstr[0] "diesel" msgstr[1] "diesel" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1935,7 +1935,7 @@ msgid_plural "JP8 fuel" msgstr[0] "JP8 drivstoff" msgstr[1] "JP8 drivstoff" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1951,7 +1951,7 @@ msgid_plural "avgas fuel" msgstr[0] "flybensin" msgstr[1] "flybensin" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -1963,7 +1963,7 @@ msgid_plural "biodiesel" msgstr[0] "biodiesel" msgstr[1] "biodiesel" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1979,7 +1979,7 @@ msgid_plural "gasoline" msgstr[0] "bensin" msgstr[1] "bensin" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1994,7 +1994,7 @@ msgid_plural "lamp oil" msgstr[0] "lampeolje" msgstr[1] "lampeolje" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "En tynn og renbrennende olje laget for bruk i oljelamper." @@ -2005,7 +2005,7 @@ msgid_plural "motor oil" msgstr[0] "motorolje" msgstr[1] "motorolje" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "En olje laget for bruk i bilmotorer." @@ -2016,7 +2016,7 @@ msgid_plural "napalm" msgstr[0] "napalm" msgstr[1] "napalm" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2033,7 +2033,7 @@ msgid_plural "gelled gasoline" msgstr[0] "gelert bensin " msgstr[1] "gelert bensin " -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2049,7 +2049,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "flammekasterbrensel" msgstr[1] "flammekasterbrensel" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2094,7 +2094,7 @@ msgid_plural "shrapnel" msgstr[0] "granatsplint" msgstr[1] "granatsplinter" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "Ett vridd fragment av hakket metall." @@ -2151,7 +2151,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "10mm Auto FMJ" msgstr[1] "10mm AUTO FMJ" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2177,7 +2177,7 @@ msgid_plural "H&K 12mm" msgstr[0] "H&K 12mm" msgstr[1] "H&K 12mm" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2225,7 +2225,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "20x66mm buckshot, håndlaget" msgstr[1] "20x66mm buckshot, håndlagede" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2257,7 +2257,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "20x66mm eksplosiv" msgstr[1] "20x66mm eksplosiv" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2308,7 +2308,7 @@ msgid_plural "20x66mm frag" msgstr[0] "20x66mm fragmenterende" msgstr[1] "20x66mm fragmenterende" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2325,7 +2325,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "20x66mm brannstiftende" msgstr[1] "20x66mm brannstiftende" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2342,7 +2342,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "20x66mm buckshot" msgstr[1] "20x66mm buckshot" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2376,7 +2376,7 @@ msgid_plural ".22 CB" msgstr[0] ".22 CB" msgstr[1] ".22 CB" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2393,7 +2393,7 @@ msgid_plural ".22 FMJ" msgstr[0] ".22 FMJ" msgstr[1] ".22 FMJ" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2410,7 +2410,7 @@ msgid_plural ".22 LR" msgstr[0] ".22 LR" msgstr[1] ".22 LR" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2427,7 +2427,7 @@ msgid_plural ".22 rat-shot" msgstr[0] ".22 rotteskudd" msgstr[1] ".22 rotteskudd" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2468,7 +2468,7 @@ msgid_plural ".223 Remington" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2485,7 +2485,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2501,7 +2501,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2518,7 +2518,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2536,7 +2536,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2554,7 +2554,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2605,7 +2605,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2657,7 +2657,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2674,7 +2674,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2691,7 +2691,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2708,7 +2708,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2813,7 +2813,7 @@ msgid_plural ".308 Winchester" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2830,7 +2830,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2847,7 +2847,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2898,7 +2898,7 @@ msgid_plural ".32 ACP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2925,7 +2925,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2939,7 +2939,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2977,7 +2977,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2992,7 +2992,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3047,7 +3047,7 @@ msgid_plural ".38 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3077,7 +3077,7 @@ msgid_plural ".38 Super" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3122,7 +3122,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3137,7 +3137,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3152,7 +3152,7 @@ msgid_plural ".380 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3197,7 +3197,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3217,7 +3217,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3234,7 +3234,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3281,7 +3281,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3295,7 +3295,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3309,7 +3309,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3323,7 +3323,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3337,8 +3337,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3352,8 +3352,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3396,8 +3396,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3411,8 +3411,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3470,7 +3470,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3483,7 +3483,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3513,7 +3513,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3527,8 +3527,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3551,8 +3551,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3583,7 +3583,7 @@ msgid_plural ".410 000 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3600,7 +3600,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3668,7 +3668,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3681,7 +3681,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3698,7 +3698,7 @@ msgid_plural ".45 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3742,7 +3742,7 @@ msgid_plural ".454 Casull" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3775,7 +3775,7 @@ msgid_plural ".45-70 SP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3803,7 +3803,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3817,7 +3817,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3846,7 +3846,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3861,7 +3861,7 @@ msgid_plural ".45-70, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3876,7 +3876,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3903,7 +3903,7 @@ msgid_plural "4.6x30mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3920,8 +3920,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3942,7 +3942,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3957,7 +3957,7 @@ msgid_plural ".460 Rowland" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -3990,7 +3990,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4011,7 +4011,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4025,7 +4025,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4041,7 +4041,7 @@ msgid_plural ".50 BMG Match" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4054,7 +4054,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4069,7 +4069,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -4088,7 +4088,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4102,7 +4102,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -4118,7 +4118,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -4178,7 +4178,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -4196,7 +4196,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -4211,7 +4211,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -4225,7 +4225,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -4250,7 +4250,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4267,8 +4267,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4349,7 +4349,7 @@ msgid_plural "66mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -4362,7 +4362,7 @@ msgid_plural ".700 NX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4389,7 +4389,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4404,7 +4404,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4419,7 +4419,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4452,7 +4452,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4480,7 +4480,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4507,7 +4507,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4574,7 +4574,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4587,7 +4587,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4600,7 +4600,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4614,7 +4614,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4628,7 +4628,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4643,7 +4643,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4658,7 +4658,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4672,7 +4672,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4687,7 +4687,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4700,7 +4700,7 @@ msgid_plural "9x19mm +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4713,7 +4713,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4762,7 +4762,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4776,7 +4776,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4790,7 +4790,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4815,7 +4815,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4829,7 +4829,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4843,7 +4843,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4857,7 +4857,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -4883,7 +4883,7 @@ msgid_plural "cannon round shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -4896,7 +4896,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -4912,7 +4912,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -4927,7 +4927,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -5038,7 +5038,7 @@ msgid_plural "paintball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -5154,7 +5154,7 @@ msgid_plural "00 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -5168,7 +5168,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -5179,7 +5179,7 @@ msgid_plural "birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -5234,8 +5234,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5386,7 +5386,7 @@ msgid_plural "oxyacetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5401,7 +5401,7 @@ msgid_plural "fungal seeds" msgstr[0] "soppfrø" msgstr[1] "soppfrø" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Noen soppfrø." @@ -6231,7 +6231,7 @@ msgid_plural "red paint" msgstr[0] "rødmaling" msgstr[1] "rødmaling" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "En boks med rødmaling." @@ -6242,7 +6242,7 @@ msgid_plural "blue paint" msgstr[0] "blåmaling" msgstr[1] "blåmaling" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "En boks med blåmaling." @@ -6253,7 +6253,7 @@ msgid_plural "white paint" msgstr[0] "hvitmaling" msgstr[1] "hvitmaling" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "En boks med hvitmaling." @@ -6264,7 +6264,7 @@ msgid_plural "green paint" msgstr[0] "grønnmaling" msgstr[1] "grønnmaling" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "En boks med grønnmaling." @@ -6275,7 +6275,7 @@ msgid_plural "purple paint" msgstr[0] "lilla maling" msgstr[1] "lillamaling" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "En boks med lillamaling." @@ -6286,7 +6286,7 @@ msgid_plural "yellow paint" msgstr[0] "gulmaling" msgstr[1] "gulmaling" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "En boks med gulmaling." @@ -6356,7 +6356,7 @@ msgid_plural "bismuth" msgstr[0] "vismut" msgstr[1] "vismut" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py 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." @@ -6367,8 +6367,8 @@ msgid_plural "gold" msgstr[0] "gull" msgstr[1] "gull" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -6389,7 +6389,7 @@ msgid_plural "zinc" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6404,7 +6404,7 @@ msgid_plural "lead" msgstr[0] "bly" msgstr[1] "bly" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6420,7 +6420,7 @@ msgid_plural "magnesium powder" msgstr[0] "magnesiumpulver" msgstr[1] "magnesiumpulver" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6435,7 +6435,7 @@ msgid_plural "silver" msgstr[0] "sølv" msgstr[1] "sølv" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -6498,7 +6498,7 @@ msgid_plural "tin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -6511,7 +6511,7 @@ msgid_plural "solder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -6550,7 +6550,7 @@ msgid_plural "fuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -6603,7 +6603,7 @@ msgid_plural "cotton scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -6617,7 +6617,7 @@ msgid_plural "faux fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -6630,7 +6630,7 @@ msgid_plural "felt scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -6644,7 +6644,7 @@ msgid_plural "fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -6657,7 +6657,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -6672,7 +6672,7 @@ msgid_plural "leather scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -6685,7 +6685,7 @@ msgid_plural "Lycra scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -6698,7 +6698,7 @@ msgid_plural "neoprene scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -6711,7 +6711,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -6724,7 +6724,7 @@ msgid_plural "Nomex scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -6750,7 +6750,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -6775,7 +6775,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -6800,7 +6800,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -6840,7 +6840,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -6867,7 +6867,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -6895,7 +6895,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -6920,7 +6920,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -7014,7 +7014,7 @@ msgid_plural "titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -7042,7 +7042,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -7057,7 +7057,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -7072,7 +7072,7 @@ msgid_plural "25mm canister shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -7088,7 +7088,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -7103,7 +7103,7 @@ msgid_plural "7.50mm RP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -7120,7 +7120,7 @@ msgid_plural "electric charge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -7133,7 +7133,7 @@ msgid_plural "foamcrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -7149,7 +7149,7 @@ msgid_plural "solid hydrogen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -7162,7 +7162,7 @@ msgid_plural "lead pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -7176,7 +7176,7 @@ msgid_plural "domed HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -7190,7 +7190,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -7203,7 +7203,7 @@ msgid_plural "alloy pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -7348,7 +7348,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7363,7 +7363,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7402,7 +7402,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -7418,7 +7418,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -7458,7 +7458,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7474,7 +7474,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7514,7 +7514,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7530,7 +7530,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7570,7 +7570,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -7582,7 +7582,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -7595,7 +7595,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7611,7 +7611,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7638,7 +7638,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -7651,7 +7651,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -7665,7 +7665,7 @@ msgid_plural "rocket, smoke" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -7691,7 +7691,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -7704,7 +7704,7 @@ msgid_plural "shotshell, slug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -7718,7 +7718,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -7768,7 +7768,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -7819,7 +7819,7 @@ msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -7872,7 +7872,7 @@ msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -7900,7 +7900,7 @@ msgid_plural "parabolan yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -7911,7 +7911,7 @@ msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -7949,7 +7949,7 @@ msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -7966,7 +7966,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -8463,7 +8463,7 @@ msgstr[1] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -8479,7 +8479,7 @@ msgstr "" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -8515,7 +8515,7 @@ msgid_plural "chest rig" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -9394,38 +9394,19 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" +msgid "tool belt" +msgid_plural "tool belts" msgstr[0] "" msgstr[1] "" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "" -msgstr[1] "" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -9577,25 +9558,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -9613,45 +9575,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -9663,26 +9586,6 @@ msgstr[1] "" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -9701,26 +9604,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -9791,20 +9674,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -9836,39 +9705,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -10759,25 +10595,6 @@ msgid_plural "XL leather dusters" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -10826,7 +10643,7 @@ msgid_plural "army jacket" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -10999,7 +10816,7 @@ msgid_plural "kimono" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -11160,19 +10977,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -11225,19 +11029,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -11255,7 +11046,7 @@ msgid_plural "thawb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -11307,19 +11098,6 @@ msgstr[1] "" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -11564,19 +11342,6 @@ msgstr[1] "" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -11948,25 +11713,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -11984,50 +11730,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -12091,63 +11793,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -12188,19 +11833,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -12322,37 +11954,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -13095,7 +12696,7 @@ msgid_plural "kabuto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -13205,32 +12806,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -13284,32 +12859,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -13509,36 +13058,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -13588,77 +13107,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -13670,56 +13118,6 @@ msgstr[1] "" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -14128,9 +13526,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -14141,9 +13539,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -14154,9 +13552,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -14167,9 +13565,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -14180,9 +13578,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -14193,9 +13591,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -14206,9 +13604,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -14219,9 +13617,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -14232,9 +13630,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -14245,9 +13643,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -14258,9 +13656,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -14271,9 +13669,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -14284,9 +13682,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -14297,9 +13695,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -17877,7 +17275,7 @@ msgid_plural "turnout trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -17917,7 +17315,7 @@ msgid_plural "leather chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -17930,7 +17328,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -17945,7 +17343,7 @@ msgid_plural "fencing pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -18118,32 +17516,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -18155,39 +17527,13 @@ msgstr[1] "" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -18200,7 +17546,7 @@ msgid_plural "light EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -18227,7 +17573,7 @@ msgid_plural "basketball shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "" @@ -18238,7 +17584,7 @@ msgid_plural "breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -18262,7 +17608,7 @@ msgid_plural "hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "" @@ -18273,7 +17619,7 @@ msgid_plural "fur hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "" @@ -18284,7 +17630,7 @@ msgid_plural "leather hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "" @@ -18295,7 +17641,7 @@ msgid_plural "jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "" @@ -18328,7 +17674,7 @@ msgid_plural "red jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -18357,7 +17703,7 @@ msgid_plural "leggings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -18433,7 +17779,7 @@ msgid_plural "pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "" @@ -18444,15 +17790,15 @@ msgid_plural "army pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -18485,7 +17831,7 @@ msgid_plural "cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -18496,7 +17842,7 @@ msgid_plural "checkered pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -18507,7 +17853,7 @@ msgid_plural "fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "" @@ -18518,7 +17864,7 @@ msgid_plural "faux fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -18529,7 +17875,7 @@ msgid_plural "leather pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -18542,7 +17888,7 @@ msgid_plural "ski pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "" @@ -18553,7 +17899,7 @@ msgid_plural "police breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -18566,7 +17912,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -18577,7 +17923,7 @@ msgid_plural "shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "" @@ -18588,7 +17934,7 @@ msgid_plural "cargo shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -18599,7 +17945,7 @@ msgid_plural "denim shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -18660,7 +18006,7 @@ msgid_plural "striped pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -18691,7 +18037,7 @@ msgid_plural "army winter pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -19831,58 +19177,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -20317,33 +19611,6 @@ msgid_plural "XL plate armors" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -20389,8 +19656,8 @@ msgstr[1] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -20404,19 +19671,6 @@ msgstr[1] "" msgid "An ornamental suit of Japanese samurai armor." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -20551,69 +19805,41 @@ msgstr[0] "" msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for survivor firesuit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" @@ -20632,40 +19858,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -20729,19 +19921,6 @@ msgid "" "experience." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -20751,8 +19930,8 @@ msgstr[1] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" #: lang/json/ARMOR_from_json.py @@ -20768,42 +19947,6 @@ msgid "" "Light and very comfortable." msgstr "" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -20875,45 +20018,6 @@ msgstr[1] "" msgid "A neoprene hood, commonly worn by divers." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -21021,7 +20125,7 @@ msgid_plural "lorica segmentata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -21190,7 +20294,7 @@ msgid_plural "tire leather armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -21250,25 +20354,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -21536,7 +20621,7 @@ msgid_plural "leotard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -21622,7 +20707,7 @@ msgid_plural "French maid clothes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -21922,7 +21007,7 @@ msgid_plural "boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -21933,7 +21018,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -21944,7 +21029,7 @@ msgid_plural "boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -21956,7 +21041,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -21969,7 +21054,7 @@ msgid_plural "boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21981,7 +21066,7 @@ msgid_plural "XL boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -22006,7 +21091,7 @@ msgid_plural "briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "" @@ -22163,7 +21248,7 @@ msgid_plural "panties" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -22227,7 +21312,7 @@ msgid_plural "tights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -22252,7 +21337,7 @@ msgid_plural "compression shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -22286,6 +21371,942 @@ msgid "" "unitard provides overall coverage with great flexibility." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -22406,7 +22427,7 @@ msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -22419,7 +22440,7 @@ msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -22579,7 +22600,7 @@ msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -22590,7 +22611,7 @@ msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -22603,7 +22624,7 @@ msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -22865,7 +22886,7 @@ msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -23015,19 +23036,6 @@ msgid "" " ridiculously heavy." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -23155,7 +23163,7 @@ msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -23168,7 +23176,7 @@ msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -23211,6 +23219,12 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -23359,7 +23373,7 @@ msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -23846,7 +23860,7 @@ msgid_plural "freerunner's boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -23918,7 +23932,7 @@ msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -23933,7 +23947,7 @@ msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23962,7 +23976,7 @@ msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -24020,7 +24034,7 @@ msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -24078,7 +24092,7 @@ msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -24089,7 +24103,7 @@ msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -24187,7 +24201,7 @@ msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -24198,7 +24212,7 @@ msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -24283,16 +24297,18 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -24310,42 +24326,35 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -25076,7 +25085,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -25507,7 +25516,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -25716,7 +25725,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -27020,7 +27029,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -27263,7 +27272,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -27301,7 +27310,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -27316,7 +27325,7 @@ msgid_plural "schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -27324,9 +27333,9 @@ msgstr[1] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -27342,7 +27351,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -27357,7 +27366,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -27372,7 +27381,7 @@ msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -27386,7 +27395,7 @@ msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -27400,7 +27409,7 @@ msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -27414,7 +27423,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -27428,7 +27437,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -27442,7 +27451,7 @@ msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -27456,7 +27465,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -27470,7 +27479,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -27484,7 +27493,7 @@ msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27499,7 +27508,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27514,7 +27523,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -27528,7 +27537,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -28130,7 +28139,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "" @@ -28141,7 +28150,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -28153,7 +28162,7 @@ msgid_plural "Capoeira 100" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "" @@ -28164,7 +28173,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "" @@ -28175,7 +28184,7 @@ msgid_plural "The Red Crane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "" @@ -28186,7 +28195,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "" @@ -28197,7 +28206,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "" @@ -28208,7 +28217,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "" @@ -28219,7 +28228,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "" @@ -28230,7 +28239,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "" @@ -28241,7 +28250,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "" @@ -28252,7 +28261,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "" @@ -28263,7 +28272,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "" @@ -28274,7 +28283,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "" @@ -28285,7 +28294,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "" @@ -28296,7 +28305,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -28309,7 +28318,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "" @@ -28320,7 +28329,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "" @@ -28331,7 +28340,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "" @@ -28342,7 +28351,7 @@ msgid_plural "The Black Snake" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "" @@ -28353,7 +28362,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -28364,7 +28373,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" @@ -28375,7 +28384,7 @@ msgid_plural "The White Tiger" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "" @@ -28386,7 +28395,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "" @@ -28397,7 +28406,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "" @@ -28408,7 +28417,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "" @@ -28419,7 +28428,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "" @@ -28430,7 +28439,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -28442,7 +28451,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -28456,7 +28465,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -28614,7 +28623,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -29483,7 +29492,7 @@ msgid_plural "patient treatment records" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -29494,7 +29503,7 @@ msgid_plural "national weather transcripts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -32926,7 +32935,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32941,7 +32950,7 @@ msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32956,7 +32965,7 @@ msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32971,7 +32980,7 @@ msgid_plural "tank drone schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32986,7 +32995,7 @@ msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -33219,7 +33228,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -33230,7 +33239,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -33241,7 +33250,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -33254,7 +33263,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -33265,7 +33274,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -33278,7 +33287,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -33292,7 +33301,7 @@ msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -33303,7 +33312,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -33316,7 +33325,7 @@ msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -33327,7 +33336,7 @@ msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -33354,6 +33363,21 @@ msgstr[1] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -35434,7 +35458,7 @@ msgid_plural "bird litter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -35490,14 +35514,14 @@ msgid_plural "bleach" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -35510,7 +35534,7 @@ msgid_plural "ammonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -35523,7 +35547,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -35534,7 +35558,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -35545,7 +35569,7 @@ msgid_plural "fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -35558,7 +35582,7 @@ msgid_plural "insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -35571,7 +35595,7 @@ msgid_plural "salt water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "" @@ -35582,7 +35606,7 @@ msgid_plural "soapy water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -35604,7 +35628,7 @@ msgid_plural "sulfuric acid" msgstr[0] "svovelsyre" msgstr[1] "svovelsyre" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -35623,7 +35647,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "saltsyre" msgstr[1] "saltsyre" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -35640,7 +35664,7 @@ msgid_plural "nitric acid" msgstr[0] "salpetersyre" msgstr[1] "salpetersyre" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -35676,7 +35700,7 @@ msgid_plural "sewage water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -35687,7 +35711,7 @@ msgid_plural "lye" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -35700,7 +35724,7 @@ msgid_plural "ether" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -35715,7 +35739,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -35730,7 +35754,7 @@ msgid_plural "chloroform" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -35744,7 +35768,7 @@ msgid_plural "phenol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -35760,7 +35784,7 @@ msgid_plural "glycerol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -35773,7 +35797,7 @@ msgid_plural "peptone broth powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -35787,7 +35811,7 @@ msgid_plural "agar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -35802,7 +35826,7 @@ msgid_plural "acrylamide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -35815,7 +35839,7 @@ msgid_plural "acetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -35828,7 +35852,7 @@ msgid_plural "formic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -35841,7 +35865,7 @@ msgid_plural "latex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -35852,7 +35876,7 @@ msgid_plural "citric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -35929,13 +35953,24 @@ msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -35974,7 +36009,7 @@ msgid_plural "marloss wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -35985,7 +36020,7 @@ msgid_plural "Riesling" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" @@ -35996,7 +36031,7 @@ msgid_plural "Chardonnay" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "" @@ -36007,7 +36042,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -36020,7 +36055,7 @@ msgid_plural "pinot noir" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -36033,7 +36068,7 @@ msgid_plural "marsala" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -36044,7 +36079,7 @@ msgid_plural "vermouth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -36057,7 +36092,7 @@ msgid_plural "barley wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -36068,7 +36103,7 @@ msgid_plural "whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -36080,7 +36115,7 @@ msgid_plural "vodka" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -36093,7 +36128,7 @@ msgid_plural "gin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -36106,7 +36141,7 @@ msgid_plural "rum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -36119,7 +36154,7 @@ msgid_plural "tequila" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -36132,7 +36167,7 @@ msgid_plural "triple sec" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -36143,7 +36178,7 @@ msgid_plural "cheap wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "" @@ -36154,7 +36189,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -36165,7 +36200,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -36176,7 +36211,7 @@ msgid_plural "fruit wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -36188,7 +36223,7 @@ msgid_plural "brandy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -36201,7 +36236,7 @@ msgid_plural "Irish coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -36214,7 +36249,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -36241,7 +36276,7 @@ msgid_plural "wild apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "" @@ -36252,7 +36287,7 @@ msgid_plural "rum & cola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -36263,7 +36298,7 @@ msgid_plural "beer" msgstr[0] "øl" msgstr[1] "øl" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -36276,7 +36311,7 @@ msgid_plural "spiced mead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -36288,7 +36323,7 @@ msgid_plural "dandelion wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -36301,7 +36336,7 @@ msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -36312,7 +36347,7 @@ msgid_plural "pine wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -36325,7 +36360,7 @@ msgid_plural "homebrew beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -36336,7 +36371,7 @@ msgid_plural "moonshine" msgstr[0] "hjemmebrent" msgstr[1] "hjemmebrent" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -36350,7 +36385,7 @@ msgid_plural "European pilsner" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -36363,7 +36398,7 @@ msgid_plural "American pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -36376,7 +36411,7 @@ msgid_plural "India pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -36389,7 +36424,7 @@ msgid_plural "stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -36400,7 +36435,7 @@ msgid_plural "Belgian ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -36413,7 +36448,7 @@ msgid_plural "imperial stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -36454,7 +36489,7 @@ msgid_plural "single malt whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "" @@ -36465,7 +36500,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -36476,7 +36511,7 @@ msgid_plural "cheap whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -36487,7 +36522,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -36498,7 +36533,7 @@ msgid_plural "sherry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -36510,7 +36545,7 @@ msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -36523,7 +36558,7 @@ msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -36534,7 +36569,7 @@ msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "" @@ -36545,7 +36580,7 @@ msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -36558,7 +36593,7 @@ msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -36649,7 +36684,7 @@ msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -36660,7 +36695,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -36671,7 +36706,7 @@ msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -36684,7 +36719,7 @@ msgid_plural "sourdough bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -36697,7 +36732,7 @@ msgid_plural "flatbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "" @@ -36708,7 +36743,7 @@ msgid_plural "bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "" @@ -36719,7 +36754,7 @@ msgid_plural "toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -36732,7 +36767,7 @@ msgid_plural "buttered toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -36743,7 +36778,7 @@ msgid_plural "jam toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -36756,7 +36791,7 @@ msgid_plural "peanut butter toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -36768,7 +36803,7 @@ msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -36779,7 +36814,7 @@ msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -36792,7 +36827,7 @@ msgid_plural "cornbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "" @@ -36825,7 +36860,7 @@ msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -36849,7 +36884,7 @@ msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -36863,7 +36898,7 @@ msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -36874,7 +36909,7 @@ msgid_plural "hallula" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -37141,18 +37176,18 @@ msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -37163,8 +37198,8 @@ msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -37177,14 +37212,14 @@ msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -37195,7 +37230,7 @@ msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -37223,7 +37258,7 @@ msgid_plural "cooked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "" @@ -37324,7 +37359,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -37427,7 +37462,7 @@ msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -37466,7 +37501,7 @@ msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -37513,7 +37548,7 @@ msgid_plural "butchery refuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -37598,7 +37633,7 @@ msgid_plural "cooked offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -37612,7 +37647,7 @@ msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -37623,7 +37658,7 @@ msgid_plural "pickled offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -37637,7 +37672,7 @@ msgid_plural "canned offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -37672,31 +37707,28 @@ msgid_plural "meat jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -37708,7 +37740,7 @@ msgid_plural "salted fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -37720,33 +37752,27 @@ msgid_plural "smoked meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -37767,7 +37793,7 @@ msgid_plural "smoked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -37820,7 +37846,7 @@ msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -37871,7 +37897,7 @@ msgid_plural "raw brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -37882,7 +37908,7 @@ msgid_plural "cooked brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -37961,7 +37987,7 @@ msgstr[1] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -38113,7 +38139,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -38354,7 +38380,7 @@ msgid_plural "alien fronds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -38459,7 +38485,7 @@ msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -38470,7 +38496,7 @@ msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -38508,13 +38534,38 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -38528,7 +38579,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -38541,7 +38592,7 @@ msgid_plural "cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -38552,7 +38603,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -38564,7 +38615,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -38577,7 +38628,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -38590,7 +38641,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -38603,7 +38654,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -38616,7 +38667,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -38642,7 +38693,7 @@ msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -38666,7 +38717,7 @@ msgid_plural "wheat cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -38690,7 +38741,7 @@ msgid_plural "milk" msgstr[0] "melk" msgstr[1] "melk" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -38701,7 +38752,7 @@ msgid_plural "chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -38712,7 +38763,7 @@ msgid_plural "reconstituted milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -38725,7 +38776,7 @@ msgid_plural "raw milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -38740,7 +38791,7 @@ msgid_plural "shelf stable milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -38754,7 +38805,7 @@ msgid_plural "evaporated milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -38766,7 +38817,7 @@ msgid_plural "buttermilk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -38790,7 +38841,7 @@ msgid_plural "butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -38802,7 +38853,7 @@ msgid_plural "raw butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -38814,7 +38865,7 @@ msgid_plural "ghee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -38851,7 +38902,7 @@ msgid_plural "hard cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -38864,7 +38915,7 @@ msgid_plural "cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "" @@ -38886,7 +38937,7 @@ msgid_plural "powdered milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -38897,7 +38948,7 @@ msgid_plural "condensed milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -38910,7 +38961,7 @@ msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -38923,7 +38974,7 @@ msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -38934,7 +38985,7 @@ msgid_plural "apple cider" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "" @@ -38971,7 +39022,7 @@ msgid_plural "atomic coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -38985,7 +39036,7 @@ msgid_plural "bee balm tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -39009,7 +39060,7 @@ msgid_plural "chai tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" @@ -39020,7 +39071,7 @@ msgid_plural "chamomile tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -39046,7 +39097,7 @@ msgid_plural "coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -39063,7 +39114,7 @@ msgid_plural "coffee substitute" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -39077,7 +39128,7 @@ msgid_plural "chicory brew" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -39147,7 +39198,7 @@ msgid_plural "dandelion tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -39158,7 +39209,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -39213,7 +39264,7 @@ msgid_plural "herbal tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -39224,7 +39275,7 @@ msgid_plural "hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -39272,7 +39323,7 @@ msgid_plural "lemonade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -39298,7 +39349,7 @@ msgid_plural "lotus tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -39309,7 +39360,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -39370,7 +39421,7 @@ msgid_plural "pine needle tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -39408,7 +39459,7 @@ msgid_plural "root beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -39445,13 +39496,13 @@ msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -39477,7 +39528,7 @@ msgid_plural "sweet water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "" @@ -39501,7 +39552,7 @@ msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -39538,7 +39589,7 @@ msgid_plural "water" msgstr[0] "vann" msgstr[1] "vann" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -39551,7 +39602,7 @@ msgid_plural "clean water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -39562,7 +39613,7 @@ msgid_plural "mineral water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -39693,7 +39744,7 @@ msgid_plural "maple sap" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -39704,7 +39755,7 @@ msgid_plural "mayonnaise" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -39729,7 +39780,7 @@ msgid_plural "mustard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -39742,7 +39793,7 @@ msgid_plural "forest honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -39755,7 +39806,7 @@ msgid_plural "vinegar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -39768,7 +39819,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "" @@ -39779,7 +39830,7 @@ msgid_plural "animal cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -39790,7 +39841,7 @@ msgid_plural "molasses" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -39803,7 +39854,7 @@ msgid_plural "horseradish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "" @@ -39814,7 +39865,7 @@ msgid_plural "coffee syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -40156,7 +40207,7 @@ msgid_plural "scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "" @@ -40178,7 +40229,7 @@ msgid_plural "fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -40191,7 +40242,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -40204,7 +40255,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -40217,7 +40268,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -40409,7 +40460,7 @@ msgid_plural "frozen yogurt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -40479,7 +40530,7 @@ msgid_plural "peaches in syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -40501,7 +40552,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -40536,7 +40587,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -40550,7 +40601,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -40575,7 +40626,7 @@ msgid_plural "canned fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -40588,7 +40639,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -40612,7 +40663,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -41002,7 +41053,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -41054,7 +41105,7 @@ msgid_plural "irradiated corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -41106,7 +41157,7 @@ msgid_plural "irradiated celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -41119,7 +41170,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -41227,12 +41278,12 @@ msgid_plural "potato chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -41243,7 +41294,7 @@ msgid_plural "popcorn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -41256,7 +41307,7 @@ msgid_plural "popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -41269,7 +41320,7 @@ msgid_plural "salted popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "" @@ -41280,7 +41331,7 @@ msgid_plural "buttered popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -41291,7 +41342,7 @@ msgid_plural "pretzels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "" @@ -41324,7 +41375,7 @@ msgid_plural "marshmallows" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -41335,7 +41386,7 @@ msgid_plural "s'mores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -41370,7 +41421,7 @@ msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -41381,12 +41432,12 @@ msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -41434,7 +41485,7 @@ msgid_plural "powder candy sticks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -41508,7 +41559,7 @@ msgid_plural "maple syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -41521,7 +41572,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -41571,7 +41622,7 @@ msgid_plural "fast-food French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -41582,7 +41633,7 @@ msgid_plural "French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -41604,7 +41655,7 @@ msgid_plural "Necco wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -41630,8 +41681,8 @@ msgid_plural "caramel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "" @@ -41642,7 +41693,7 @@ msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "" @@ -41653,7 +41704,7 @@ msgid_plural "tortilla chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -41666,7 +41717,7 @@ msgid_plural "cheese nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -41679,31 +41730,28 @@ msgid_plural "meat nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -41716,31 +41764,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -41753,7 +41801,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -41766,7 +41814,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -41840,7 +41888,7 @@ msgid_plural "chili dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" @@ -41851,7 +41899,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -41927,7 +41975,7 @@ msgid_plural "cheese fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "" @@ -42015,8 +42063,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -42159,32 +42206,26 @@ msgid_plural "raw sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -42203,15 +42244,14 @@ msgid_plural "smoked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -42230,15 +42270,14 @@ msgid_plural "cooked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -42268,23 +42307,21 @@ msgid_plural "bratwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -42305,7 +42342,7 @@ msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -42356,7 +42393,7 @@ msgid_plural "cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -42369,8 +42406,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -42378,7 +42414,7 @@ msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -42392,7 +42428,7 @@ msgid_plural "currywursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -42400,8 +42436,7 @@ msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -42409,8 +42444,7 @@ msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -42431,9 +42465,8 @@ msgid_plural "aspics" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -42441,9 +42474,8 @@ msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -42451,9 +42483,8 @@ msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -42475,7 +42506,7 @@ msgid_plural "dehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -42488,7 +42519,7 @@ msgid_plural "rehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -42501,7 +42532,7 @@ msgid_plural "pickled fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -42513,7 +42544,7 @@ msgid_plural "canned fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -42526,7 +42557,7 @@ msgid_plural "batter fried fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -42559,8 +42590,7 @@ msgid_plural "lunch meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -42581,7 +42611,7 @@ msgid_plural "bologna" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -42589,8 +42619,7 @@ msgid_plural "brat %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -42598,8 +42627,7 @@ msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -42607,7 +42635,7 @@ msgid_plural "bleak %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -42635,7 +42663,7 @@ msgid_plural "SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -42673,24 +42701,22 @@ msgid_plural "sausage gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -42711,7 +42737,7 @@ msgid_plural "pemmican" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -42719,8 +42745,7 @@ msgid_plural "prepper %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -42728,8 +42753,7 @@ msgid_plural "Orley %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -42737,7 +42761,7 @@ msgid_plural "pernicious %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -42751,15 +42775,14 @@ msgid_plural "hamburger helpers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -42767,8 +42790,7 @@ msgid_plural "halfling helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -42800,24 +42822,22 @@ msgid_plural "chilis con carne" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -42835,7 +42855,7 @@ msgid_plural "pork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -42848,7 +42868,7 @@ msgid_plural "canned tuna fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "" @@ -42859,7 +42879,7 @@ msgid_plural "canned salmon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "" @@ -42881,7 +42901,7 @@ msgid_plural "pickled herring" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -42903,16 +42923,14 @@ msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -42932,15 +42950,14 @@ msgid_plural "baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" @@ -42951,15 +42968,14 @@ msgid_plural "meat fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" @@ -42970,15 +42986,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -42991,22 +43007,21 @@ msgid_plural "meat pies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -43025,23 +43040,21 @@ msgid_plural "meat pizzas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -43073,31 +43086,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -43110,15 +43122,14 @@ msgid_plural "canned meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -43138,15 +43149,14 @@ msgid_plural "salted meat slices" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -43165,15 +43175,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -43181,8 +43190,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -43190,7 +43198,7 @@ msgid_plural "gnarly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -43201,7 +43209,7 @@ msgid_plural "lasagnes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -43209,8 +43217,7 @@ msgid_plural "Luigi %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -43218,7 +43225,7 @@ msgid_plural "Lab %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -43239,7 +43246,7 @@ msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" @@ -43250,8 +43257,7 @@ msgid_plural "cheeseburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -43259,7 +43265,7 @@ msgid_plural "chump %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -43268,8 +43274,7 @@ msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -43303,23 +43308,21 @@ msgid_plural "hamburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -43338,23 +43341,21 @@ msgid_plural "sloppy joes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -43375,7 +43376,7 @@ msgid_plural "tacos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -43383,8 +43384,7 @@ msgid_plural "tio %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -43392,7 +43392,7 @@ msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -43413,15 +43413,14 @@ msgid_plural "pickled meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -43441,10 +43440,8 @@ msgid_plural "dehydrated meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -43452,12 +43449,11 @@ msgid_plural "%s, human" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -43491,9 +43487,8 @@ msgid_plural "haggises" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -43516,7 +43511,7 @@ msgid_plural "fish makizushi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -43529,8 +43524,7 @@ msgid_plural "meat temaki" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -43538,7 +43532,7 @@ msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -43551,7 +43545,7 @@ msgid_plural "sashimi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -43575,7 +43569,7 @@ msgid_plural "pelmenis" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -43596,8 +43590,7 @@ msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -43618,15 +43611,14 @@ msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -43645,15 +43637,14 @@ msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -43690,12 +43681,12 @@ msgid_plural "prescription stimulant" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -43742,7 +43733,7 @@ msgid_plural "antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -43769,7 +43760,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -43847,7 +43838,7 @@ msgid_plural "antiseptic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -43903,7 +43894,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -43955,12 +43946,12 @@ msgid_plural "codeine" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -43974,7 +43965,7 @@ msgid_plural "cocaine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -44016,7 +44007,7 @@ msgid_plural "cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -44030,12 +44021,12 @@ msgid_plural "crack" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -44048,7 +44039,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -44062,7 +44053,7 @@ msgid_plural "antiseptic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -44085,7 +44076,7 @@ msgid_plural "prescription sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -44098,12 +44089,12 @@ msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -44120,12 +44111,12 @@ msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -44141,12 +44132,12 @@ msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -44160,16 +44151,14 @@ msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -44183,7 +44172,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -44197,7 +44186,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -44211,7 +44200,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -44225,7 +44214,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -44239,7 +44228,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -44254,7 +44243,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -44269,7 +44258,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -44283,7 +44272,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -44297,12 +44286,12 @@ msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -44382,7 +44371,7 @@ msgid_plural "chewing gum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -44407,13 +44396,13 @@ msgid_plural "heroin" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -44489,7 +44478,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44503,7 +44492,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44556,7 +44545,7 @@ msgid_plural "cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -44587,7 +44576,7 @@ msgid_plural "sleeping pill" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -44632,7 +44621,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -44643,15 +44632,14 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -44666,7 +44654,7 @@ msgid_plural "antidepressant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -44698,7 +44686,7 @@ msgid_plural "hemostatic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -44726,7 +44714,7 @@ msgid_plural "antipsychotic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -44977,12 +44965,12 @@ msgid_plural "marijuana" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -44996,7 +44984,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -45023,7 +45011,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -45036,7 +45024,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -45103,7 +45091,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -45118,7 +45106,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -45601,7 +45589,7 @@ msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -45851,9 +45839,8 @@ msgstr[1] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -45920,7 +45907,7 @@ msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -46039,7 +46026,8 @@ msgstr[1] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -46181,7 +46169,7 @@ msgid_plural "pine nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -46192,7 +46180,7 @@ msgid_plural "junipers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -46205,7 +46193,7 @@ msgid_plural "shelled pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -46217,7 +46205,7 @@ msgid_plural "roasted pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -46228,7 +46216,7 @@ msgid_plural "shelled almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -46239,7 +46227,7 @@ msgid_plural "almond pulp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -46251,7 +46239,7 @@ msgid_plural "roasted almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -46262,7 +46250,7 @@ msgid_plural "cashews" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "" @@ -46273,7 +46261,7 @@ msgid_plural "shelled pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -46286,7 +46274,7 @@ msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -46297,7 +46285,7 @@ msgid_plural "shelled peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -46308,7 +46296,7 @@ msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -46319,7 +46307,7 @@ msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -46332,7 +46320,7 @@ msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -46343,7 +46331,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -46356,7 +46344,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -46367,7 +46355,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -46380,7 +46368,7 @@ msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -46391,7 +46379,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -46402,7 +46390,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -46413,7 +46401,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -46426,7 +46414,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -46483,7 +46471,7 @@ msgid_plural "acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -46496,7 +46484,7 @@ msgid_plural "roasted acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -46507,7 +46495,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -46520,7 +46508,7 @@ msgid_plural "foie gras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -46532,7 +46520,7 @@ msgid_plural "liver & onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "" @@ -46587,7 +46575,7 @@ msgid_plural "leverpostej" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -46800,7 +46788,7 @@ msgid_plural "marloss gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -46828,7 +46816,7 @@ msgid_plural "yeast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -46840,7 +46828,7 @@ msgid_plural "bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -46851,7 +46839,7 @@ msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -46863,7 +46851,7 @@ msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -46874,7 +46862,7 @@ msgid_plural "tainted bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -46885,7 +46873,7 @@ msgid_plural "chitin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -46932,7 +46920,7 @@ msgid_plural "dried beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -46945,7 +46933,7 @@ msgid_plural "cooked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "" @@ -46956,8 +46944,8 @@ msgid_plural "tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -46976,7 +46964,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -46987,7 +46975,7 @@ msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -47013,7 +47001,7 @@ msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -47025,7 +47013,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -47039,7 +47027,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -47050,7 +47038,7 @@ msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -47061,7 +47049,7 @@ msgid_plural "coffee powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -47074,7 +47062,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -47087,7 +47075,7 @@ msgid_plural "candied honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -47126,7 +47114,7 @@ msgid_plural "cattle fodder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -47139,7 +47127,7 @@ msgid_plural "bird food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -47152,7 +47140,7 @@ msgid_plural "wet dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -47165,7 +47153,7 @@ msgid_plural "dry dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -47178,7 +47166,7 @@ msgid_plural "wet cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -47191,7 +47179,7 @@ msgid_plural "dry cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -47318,7 +47306,7 @@ msgid_plural "instant coffee mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -47357,15 +47345,14 @@ msgid_plural "protein drinks" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -47373,14 +47360,11 @@ msgid_plural "sapient green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -47401,15 +47385,14 @@ msgid_plural "protein powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -47417,7 +47400,7 @@ msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -47446,15 +47429,14 @@ msgid_plural "protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -47475,7 +47457,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -47483,7 +47465,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -47550,7 +47532,7 @@ msgid_plural "blueberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -47561,7 +47543,7 @@ msgid_plural "strawberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" @@ -47572,7 +47554,7 @@ msgid_plural "cranberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "" @@ -47583,7 +47565,7 @@ msgid_plural "raspberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "" @@ -47594,7 +47576,7 @@ msgid_plural "huckleberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -47605,7 +47587,7 @@ msgid_plural "mulberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -47618,7 +47600,7 @@ msgid_plural "elderberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -47629,7 +47611,7 @@ msgid_plural "rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "" @@ -47675,7 +47657,7 @@ msgid_plural "cherries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "" @@ -47698,7 +47680,7 @@ msgid_plural "grapes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -47764,7 +47746,7 @@ msgid_plural "blackberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "" @@ -47820,7 +47802,7 @@ msgid_plural "apricots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "" @@ -47861,7 +47843,7 @@ msgid_plural "bee balm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -47873,7 +47855,7 @@ msgid_plural "broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "" @@ -47884,7 +47866,7 @@ msgid_plural "buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -47908,7 +47890,7 @@ msgid_plural "spinach" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -47957,7 +47939,7 @@ msgid_plural "celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -47981,7 +47963,7 @@ msgid_plural "corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "" @@ -47992,7 +47974,7 @@ msgid_plural "empty corn cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -48053,7 +48035,7 @@ msgid_plural "salsify" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -48067,7 +48049,7 @@ msgid_plural "chicory" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -48190,7 +48172,7 @@ msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -48227,7 +48209,7 @@ msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -48240,7 +48222,7 @@ msgid_plural "dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -48253,7 +48235,7 @@ msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -48351,7 +48333,7 @@ msgid_plural "wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -48386,7 +48368,7 @@ msgid_plural "raw beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -48399,7 +48381,7 @@ msgid_plural "raw lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -48410,7 +48392,7 @@ msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -48447,8 +48429,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -48462,6 +48443,27 @@ msgid "" "nutritious!" msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -48523,7 +48525,7 @@ msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -48571,26 +48573,23 @@ msgid_plural "meat sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -48706,7 +48705,7 @@ msgid_plural "mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -48717,7 +48716,7 @@ msgid_plural "hop rhizomes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "" @@ -48732,7 +48731,7 @@ msgid_plural "blackberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "Noen bjørnebærfrø." @@ -48747,7 +48746,7 @@ msgid_plural "blueberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "" @@ -48762,7 +48761,7 @@ msgid_plural "cranberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "" @@ -48777,7 +48776,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -48792,7 +48791,7 @@ msgid_plural "mulberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -48807,7 +48806,7 @@ msgid_plural "elderberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -48822,7 +48821,7 @@ msgid_plural "raspberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "" @@ -48837,7 +48836,7 @@ msgid_plural "strawberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "" @@ -48852,7 +48851,7 @@ msgid_plural "grape seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -48867,7 +48866,7 @@ msgid_plural "rose seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -48882,7 +48881,7 @@ msgid_plural "tobacco seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -48897,7 +48896,7 @@ msgid_plural "barley seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "" @@ -48908,7 +48907,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "" @@ -48919,7 +48918,7 @@ msgid_plural "lettuce seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "" @@ -48930,7 +48929,7 @@ msgid_plural "cabbage seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "" @@ -48941,7 +48940,7 @@ msgid_plural "tomato seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "" @@ -48952,7 +48951,7 @@ msgid_plural "cotton seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -48967,7 +48966,7 @@ msgid_plural "broccoli seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "" @@ -48978,7 +48977,7 @@ msgid_plural "zucchini seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "" @@ -48989,7 +48988,7 @@ msgid_plural "onion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "" @@ -49000,7 +48999,7 @@ msgid_plural "garlic seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "" @@ -49015,7 +49014,7 @@ msgid_plural "cattail seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -49030,7 +49029,7 @@ msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -49045,7 +49044,7 @@ msgid_plural "salsify seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -49056,7 +49055,7 @@ msgid_plural "chicory seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -49067,7 +49066,7 @@ msgid_plural "wild root seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -49078,7 +49077,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -49095,7 +49094,7 @@ msgid_plural "cactus seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -49121,7 +49120,7 @@ msgid_plural "carrot seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "" @@ -49132,7 +49131,7 @@ msgid_plural "corn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "" @@ -49147,7 +49146,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "" @@ -49158,7 +49157,7 @@ msgid_plural "cucumber seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "" @@ -49184,7 +49183,7 @@ msgid_plural "cannabis seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -49215,7 +49214,7 @@ msgid_plural "bean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -49230,7 +49229,7 @@ msgid_plural "soybean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -49239,7 +49238,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -49254,7 +49253,7 @@ msgid_plural "thyme seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -49271,7 +49270,7 @@ msgid_plural "canola seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -49282,7 +49281,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -49293,7 +49292,7 @@ msgid_plural "sunflower seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -49311,7 +49310,7 @@ msgid_plural "dogbane seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -49322,7 +49321,7 @@ msgid_plural "bee balm seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -49333,7 +49332,7 @@ msgid_plural "mugwort seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -49344,7 +49343,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -49355,7 +49354,7 @@ msgid_plural "wild herb seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -49370,7 +49369,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -49385,7 +49384,7 @@ msgid_plural "dandelion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -49400,7 +49399,7 @@ msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -49415,7 +49414,7 @@ msgid_plural "rhubarb stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -49426,7 +49425,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -49437,7 +49436,7 @@ msgid_plural "datura seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -49455,7 +49454,7 @@ msgid_plural "celery seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "" @@ -49466,7 +49465,7 @@ msgid_plural "oat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "" @@ -49483,7 +49482,7 @@ msgid_plural "wheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "" @@ -49500,7 +49499,7 @@ msgid_plural "fried seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -49526,7 +49525,7 @@ msgid_plural "coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "" @@ -49537,7 +49536,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -49548,7 +49547,7 @@ msgid_plural "chamomile seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -49563,7 +49562,7 @@ msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -49578,7 +49577,7 @@ msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -49589,7 +49588,7 @@ msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -49600,7 +49599,7 @@ msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -49611,7 +49610,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -49633,8 +49632,7 @@ msgid_plural "bone broths" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -49664,15 +49662,14 @@ msgid_plural "meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -49712,8 +49709,7 @@ msgid_plural "curries with meat" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -49731,10 +49727,8 @@ msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -49796,7 +49790,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" @@ -49820,7 +49814,7 @@ msgid_plural "chili powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -49833,7 +49827,7 @@ msgid_plural "hot sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -49846,7 +49840,7 @@ msgid_plural "cinnamon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -49857,7 +49851,7 @@ msgid_plural "curry powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -49870,7 +49864,7 @@ msgid_plural "black pepper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "" @@ -49881,7 +49875,7 @@ msgid_plural "salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -49894,7 +49888,7 @@ msgid_plural "Italian seasoning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -49905,7 +49899,7 @@ msgid_plural "seasoned salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -49916,7 +49910,7 @@ msgid_plural "sugar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -49929,7 +49923,7 @@ msgid_plural "sprinkles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -49944,7 +49938,7 @@ msgid_plural "wild herbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -49957,7 +49951,7 @@ msgid_plural "soy sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "" @@ -49973,7 +49967,7 @@ msgid_plural "mustard powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -50023,7 +50017,7 @@ msgid_plural "starch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -50036,7 +50030,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" @@ -50047,7 +50041,7 @@ msgid_plural "fried dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -50059,7 +50053,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -50070,7 +50064,7 @@ msgid_plural "fried burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -50107,7 +50101,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -50130,7 +50124,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -50142,7 +50136,7 @@ msgid_plural "canned corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "" @@ -50153,7 +50147,7 @@ msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -50164,7 +50158,7 @@ msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -50175,7 +50169,7 @@ msgid_plural "hominy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -50188,7 +50182,7 @@ msgid_plural "cornmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "" @@ -50199,7 +50193,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" @@ -50210,7 +50204,7 @@ msgid_plural "dried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -50223,7 +50217,7 @@ msgid_plural "cooked rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "" @@ -50234,7 +50228,7 @@ msgid_plural "fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "" @@ -50245,7 +50239,7 @@ msgid_plural "beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -50258,7 +50252,7 @@ msgid_plural "tofu fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -50269,7 +50263,7 @@ msgid_plural "tofu stirfry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -50282,7 +50276,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -50353,7 +50347,7 @@ msgid_plural "pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -50390,7 +50384,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "" @@ -50413,7 +50407,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -50452,7 +50446,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -50476,7 +50470,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -50552,7 +50546,7 @@ msgid_plural "sushi rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -50563,7 +50557,7 @@ msgid_plural "onigiri" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -50576,7 +50570,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -50602,7 +50596,7 @@ msgid_plural "sauerkraut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -50626,7 +50620,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -50637,7 +50631,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -50655,7 +50649,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "" @@ -50666,7 +50660,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -50679,7 +50673,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -50692,7 +50686,7 @@ msgid_plural "boiled noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "" @@ -50703,7 +50697,7 @@ msgid_plural "raw macaroni" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -50714,7 +50708,7 @@ msgid_plural "mac & cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -50725,7 +50719,7 @@ msgid_plural "flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "" @@ -50736,7 +50730,7 @@ msgid_plural "bread flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -50749,14 +50743,14 @@ msgid_plural "oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "" @@ -50767,7 +50761,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -50780,7 +50774,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -50866,7 +50860,7 @@ msgid_plural "oyster crackers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -50901,7 +50895,7 @@ msgid_plural "granola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -50925,7 +50919,7 @@ msgid_plural "fast noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -51119,7 +51113,7 @@ msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -51130,7 +51124,7 @@ msgid_plural "melon seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -51141,7 +51135,7 @@ msgid_plural "banana saplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -51152,7 +51146,7 @@ msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -51163,7 +51157,7 @@ msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -51174,7 +51168,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -51223,7 +51217,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -51269,7 +51263,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -51282,7 +51276,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -51323,7 +51317,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -51433,7 +51427,7 @@ msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -51447,7 +51441,7 @@ msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -51537,7 +51531,7 @@ msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -51551,7 +51545,7 @@ msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -51565,7 +51559,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -51577,7 +51571,7 @@ msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -51590,7 +51584,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -51645,7 +51639,7 @@ msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -51661,7 +51655,7 @@ msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -51675,7 +51669,7 @@ msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -51689,7 +51683,7 @@ msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -51750,7 +51744,7 @@ msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -51764,7 +51758,7 @@ msgid_plural "food cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -51776,7 +51770,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -51800,7 +51794,7 @@ msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -51826,7 +51820,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -51840,7 +51834,7 @@ msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -51856,7 +51850,7 @@ msgid_plural "caffex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -51897,7 +51891,7 @@ msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -51959,7 +51953,7 @@ msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -51980,7 +51974,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -52263,8 +52257,8 @@ msgstr[0] "" msgstr[1] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" @@ -52274,6 +52268,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -52316,6 +52322,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -52436,6 +52448,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -52472,24 +52490,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "" msgstr[1] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -52788,7 +52788,7 @@ msgid_plural "dragon meat" msgstr[0] "drage kjøtt" msgstr[1] "drage kjøtt" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -52854,7 +52854,7 @@ msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -52914,14 +52914,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -53004,7 +53004,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -53013,7 +53013,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -53025,7 +53025,7 @@ msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -53036,7 +53036,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -53049,7 +53049,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -53068,7 +53068,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -53082,7 +53082,7 @@ msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -53702,7 +53702,7 @@ msgid_plural "rock salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -53713,7 +53713,7 @@ msgid_plural "rhodonite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -53726,7 +53726,7 @@ msgid_plural "zincite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -53763,7 +53763,7 @@ msgid_plural "hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -53774,7 +53774,7 @@ msgid_plural "pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -53785,7 +53785,7 @@ msgid_plural "pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -53796,7 +53796,7 @@ msgid_plural "almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -53807,7 +53807,7 @@ msgid_plural "peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -53818,7 +53818,7 @@ msgid_plural "hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -53829,7 +53829,7 @@ msgid_plural "chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -53840,7 +53840,7 @@ msgid_plural "walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -54126,6 +54126,18 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -54137,6 +54149,19 @@ msgstr[1] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -54909,7 +54934,7 @@ msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -54920,7 +54945,7 @@ msgid_plural "smoldering embers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -55125,6 +55150,29 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -55329,7 +55377,7 @@ msgid_plural "superglue" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "En tube av sterk lim. Brukt i mange lage-oppskrifter." @@ -55617,7 +55665,7 @@ msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -55759,7 +55807,7 @@ msgid_plural "concrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "" @@ -56603,7 +56651,7 @@ msgid_plural "clockworks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -56734,7 +56782,7 @@ msgid_plural "chamomile flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -56760,7 +56808,7 @@ msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -56795,7 +56843,7 @@ msgid_plural "mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "" @@ -56842,7 +56890,7 @@ msgid_plural "adobe mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -56855,7 +56903,7 @@ msgid_plural "tanbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -56877,7 +56925,7 @@ msgid_plural "willowbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -57304,7 +57352,7 @@ msgid_plural "raw tobacco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -57613,7 +57661,7 @@ msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -57636,7 +57684,7 @@ msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -58009,6 +58057,98 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -58701,7 +58841,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -58838,7 +58978,7 @@ msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58851,7 +58991,7 @@ msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58881,7 +59021,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58897,7 +59037,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58913,7 +59053,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58929,7 +59069,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58945,7 +59085,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58961,7 +59101,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58977,7 +59117,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58993,7 +59133,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59009,7 +59149,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59025,7 +59165,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59041,7 +59181,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59057,7 +59197,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59073,7 +59213,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59089,7 +59229,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59105,7 +59245,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59121,8 +59261,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59138,7 +59277,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59154,7 +59293,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59170,7 +59309,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59186,7 +59325,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59202,7 +59341,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59218,8 +59357,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -59241,7 +59379,7 @@ msgid_plural "misc software" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -59252,7 +59390,7 @@ msgid_plural "hackPRO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "" @@ -59263,7 +59401,7 @@ msgid_plural "MediSoft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "" @@ -59274,7 +59412,7 @@ msgid_plural "MatheMAX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "" @@ -59285,7 +59423,7 @@ msgid_plural "infection data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "" @@ -59296,7 +59434,7 @@ msgid_plural "lab data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -59307,7 +59445,7 @@ msgid_plural "train data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -59318,7 +59456,7 @@ msgid_plural "neural data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -59608,22 +59746,34 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "lik" msgstr[1] "lik" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -59631,7 +59781,7 @@ msgid_plural "skinned %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -59870,7 +60020,7 @@ msgid_plural "trifacet remains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -60206,6 +60356,100 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -61925,7 +62169,7 @@ msgid_plural "headphones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -62005,7 +62249,7 @@ msgid_plural "spare parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -62603,7 +62847,7 @@ msgid_plural "bokken" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -62611,14 +62855,14 @@ msgid "" "edge, it's still quite capable of inflicting deadly wounds." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -63164,7 +63408,7 @@ msgid_plural "bionic claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -63385,7 +63629,7 @@ msgid_plural "qiang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -63430,7 +63674,7 @@ msgid_plural "naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -63438,7 +63682,7 @@ msgid "" "or by their wives in defense of the household." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -63446,7 +63690,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -63460,7 +63704,7 @@ msgid_plural "survivor naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -63591,7 +63835,7 @@ msgid_plural "ji" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -63651,6 +63895,20 @@ msgid "" "offers a good bit of slashing power." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -63658,7 +63916,7 @@ msgid_plural "jian" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -63742,14 +64000,14 @@ msgid_plural "tanto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -63763,14 +64021,14 @@ msgid_plural "nodachi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -63908,7 +64166,7 @@ msgid_plural "katana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -63976,7 +64234,7 @@ msgid_plural "wakizashi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -64041,7 +64299,7 @@ msgid_plural "tiger claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -64278,13 +64536,27 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -64300,7 +64572,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -64344,7 +64616,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -64634,7 +64906,7 @@ msgid_plural "scrap copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -64896,7 +65168,7 @@ msgid_plural "splintered wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -65113,17 +65385,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -66317,7 +66589,7 @@ msgid_plural "oars" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -66339,7 +66611,7 @@ msgid_plural "inflatable section" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -66350,7 +66622,7 @@ msgid_plural "inflatable airbag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -67206,7 +67478,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -67220,7 +67492,7 @@ msgid_plural "sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "" @@ -67231,7 +67503,7 @@ msgid_plural "wired sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -67253,7 +67525,7 @@ msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "" @@ -67264,7 +67536,7 @@ msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -67287,7 +67559,7 @@ msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -67511,12 +67783,19 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -67645,6 +67924,17 @@ msgstr[1] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -68080,7 +68370,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -68142,7 +68432,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -68434,7 +68724,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -68447,7 +68737,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -68569,7 +68859,7 @@ msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -68580,7 +68870,7 @@ msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -68771,7 +69061,7 @@ msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68784,7 +69074,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68797,7 +69087,7 @@ msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68810,7 +69100,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68823,7 +69113,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68836,7 +69126,7 @@ msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -68849,7 +69139,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68862,7 +69152,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68875,7 +69165,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68888,7 +69178,7 @@ msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68901,7 +69191,7 @@ msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68914,7 +69204,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -69023,7 +69313,7 @@ msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -69049,7 +69339,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -69062,7 +69352,7 @@ msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -69088,7 +69378,7 @@ msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -69121,7 +69411,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -69468,7 +69758,7 @@ msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -70182,7 +70472,7 @@ msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -71633,7 +71923,7 @@ msgid_plural "subzero talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -71847,7 +72137,7 @@ msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -71971,7 +72261,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71984,7 +72274,7 @@ msgid_plural "Beagle chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72801,6 +73091,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -72945,8 +73246,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -73285,6 +73586,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -73685,7 +73991,7 @@ msgid_plural "tiny fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -73696,7 +74002,7 @@ msgid_plural "small fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -73707,7 +74013,7 @@ msgid_plural "medium fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -73718,7 +74024,7 @@ msgid_plural "large fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -73729,7 +74035,7 @@ msgid_plural "huge fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -73865,7 +74171,7 @@ msgid_plural "whitefish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -73878,7 +74184,7 @@ msgid_plural "largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -73889,7 +74195,7 @@ msgid_plural "smallmouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -73902,7 +74208,7 @@ msgid_plural "striped bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -73915,7 +74221,7 @@ msgid_plural "white bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -73952,7 +74258,7 @@ msgid_plural "sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73963,7 +74269,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73986,7 +74292,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73997,7 +74303,7 @@ msgid_plural "green sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -74008,7 +74314,7 @@ msgid_plural "longear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -74019,7 +74325,7 @@ msgid_plural "redear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -74030,7 +74336,7 @@ msgid_plural "rock bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -74043,7 +74349,7 @@ msgid_plural "calico bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -74078,7 +74384,7 @@ msgid_plural "channel catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -74089,7 +74395,7 @@ msgid_plural "white catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -74186,7 +74492,7 @@ msgid_plural "fallfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -74213,7 +74519,7 @@ msgid_plural "crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -74244,7 +74550,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -74257,7 +74563,7 @@ msgid_plural "giant crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -74270,7 +74576,7 @@ msgid_plural "colossal crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -74925,7 +75231,7 @@ msgid_plural "fused dragonflies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -75112,7 +75418,7 @@ msgstr[1] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -76756,7 +77062,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -76951,7 +77257,7 @@ msgid_plural "moose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -77110,7 +77416,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -77417,10 +77723,11 @@ msgstr[1] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -77431,6 +77738,17 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -79650,7 +79968,7 @@ msgid_plural "sawbones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -79665,7 +79983,7 @@ msgid_plural "doctor burns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -79843,7 +80161,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -79962,17 +80280,18 @@ msgstr[1] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -80406,7 +80725,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -80450,7 +80769,7 @@ msgid_plural "scissorlimbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -80464,7 +80783,7 @@ msgid_plural "hanging innards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -80945,7 +81264,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -82818,7 +83137,7 @@ msgid_plural "wisp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -83362,7 +83681,7 @@ msgid_plural "coelophysis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -83375,7 +83694,7 @@ msgid_plural "dilophosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -83388,7 +83707,7 @@ msgid_plural "ceratosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -83402,7 +83721,7 @@ msgid_plural "spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -83416,7 +83735,7 @@ msgid_plural "allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -83429,7 +83748,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -83443,20 +83762,33 @@ msgid_plural "siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -83469,7 +83801,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -83482,7 +83814,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -83495,7 +83827,7 @@ msgid_plural "compsognathus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -83508,7 +83840,7 @@ msgid_plural "gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -83534,7 +83866,7 @@ msgid_plural "nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -83547,7 +83879,7 @@ msgid_plural "deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -83586,7 +83918,7 @@ msgid_plural "amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -83599,7 +83931,7 @@ msgid_plural "apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -83612,7 +83944,7 @@ msgid_plural "brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -83625,7 +83957,7 @@ msgid_plural "diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -83636,7 +83968,7 @@ msgid_plural "camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -83649,7 +83981,7 @@ msgid_plural "brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -83662,7 +83994,7 @@ msgid_plural "alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -83675,7 +84007,7 @@ msgid_plural "scutellosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -83688,7 +84020,7 @@ msgid_plural "stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -83700,7 +84032,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83713,7 +84045,7 @@ msgid_plural "ankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83726,7 +84058,7 @@ msgid_plural "nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -83738,7 +84070,7 @@ msgid_plural "edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -83751,7 +84083,7 @@ msgid_plural "camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -83764,7 +84096,7 @@ msgid_plural "parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -83775,7 +84107,7 @@ msgid_plural "maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -83788,7 +84120,7 @@ msgid_plural "corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -83801,7 +84133,7 @@ msgid_plural "edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -83812,7 +84144,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -83825,7 +84157,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -83838,7 +84170,7 @@ msgid_plural "pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -83851,7 +84183,7 @@ msgid_plural "kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -83865,7 +84197,7 @@ msgid_plural "torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -83878,7 +84210,7 @@ msgid_plural "triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -83891,7 +84223,7 @@ msgid_plural "dimorphodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -83904,7 +84236,7 @@ msgid_plural "pteranodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -83917,7 +84249,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -83930,7 +84262,7 @@ msgid_plural "mosasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -83943,7 +84275,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -83956,7 +84288,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -83969,7 +84301,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -83982,7 +84314,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -83995,7 +84327,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -84008,7 +84340,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -84021,7 +84353,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -84124,6 +84456,20 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -84637,20 +84983,20 @@ msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" @@ -84710,7 +85056,6 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -84731,25 +85076,88 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" +#. ~ Description for juvenile allosaurus #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -84972,6 +85380,19 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -85082,7 +85503,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -85542,6 +85963,7 @@ msgstr[1] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -85591,6 +86013,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "" msgstr[1] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -85995,6 +86423,19 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -86027,7 +86468,7 @@ msgid_plural "Rage Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -86040,7 +86481,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -86054,7 +86495,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -86112,7 +86553,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -86175,7 +86616,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -86419,12 +86860,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" msgstr[1] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -86433,66 +86887,67 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -86500,12 +86955,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -86514,12 +86969,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -86528,16 +86983,16 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -86567,7 +87022,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -86580,7 +87035,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86593,7 +87049,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -86606,20 +87062,26 @@ msgid_plural "skeletal siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86632,7 +87094,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -86658,7 +87120,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -86670,7 +87132,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86683,8 +87145,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86703,7 +87165,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -86717,7 +87179,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -86730,7 +87192,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -86743,7 +87205,7 @@ msgid_plural "armored diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -86756,7 +87218,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -86769,7 +87231,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -86782,7 +87244,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -86795,7 +87257,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -86808,7 +87270,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -86822,7 +87284,7 @@ msgid_plural "Bone Fortress" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -86836,7 +87298,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86849,7 +87311,7 @@ msgid_plural "armored edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86862,7 +87324,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -86875,7 +87337,7 @@ msgid_plural "armored maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -86888,7 +87350,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -86901,7 +87363,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -86914,7 +87376,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -86927,7 +87389,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -86940,7 +87402,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -86953,7 +87415,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -86966,7 +87428,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -86979,7 +87441,7 @@ msgid_plural "armored torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -86992,7 +87454,7 @@ msgid_plural "armored triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -87005,7 +87467,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -87019,7 +87481,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -87033,7 +87495,7 @@ msgid_plural "Goliath Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -87046,7 +87508,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -87059,7 +87521,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -87100,7 +87562,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -87116,7 +87578,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -87429,7 +87891,7 @@ msgid_plural "forge hounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -87735,7 +88197,7 @@ msgid_plural "hunllef rams" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -87868,6 +88330,22 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -88145,7 +88623,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -88427,7 +88905,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -93501,7 +93979,7 @@ msgstr[1] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -93545,7 +94023,7 @@ msgstr "" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -94453,7 +94931,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -95041,17 +95519,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -95060,7 +95538,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -95283,7 +95761,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -95297,6 +95774,14 @@ msgid_plural "military flight helmets (on)" msgstr[0] "" msgstr[1] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -95647,7 +96132,7 @@ msgid_plural "bagpipes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -96274,7 +96759,7 @@ msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -96349,7 +96834,7 @@ msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -97095,7 +97580,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -98880,7 +99365,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -98888,7 +99373,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -98973,7 +99458,7 @@ msgid_plural "dao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -99023,7 +99508,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -99031,7 +99516,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -99063,7 +99548,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -99152,14 +99637,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -99173,7 +99658,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -99333,7 +99818,7 @@ msgid_plural "synthetic fabric" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -100074,7 +100559,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -102391,8 +102876,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -103077,6 +103562,39 @@ msgstr[1] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -103773,7 +104291,7 @@ msgid_plural "shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -103784,7 +104302,7 @@ msgid_plural "electric shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -103828,6 +104346,32 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -104373,7 +104917,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -104387,7 +104931,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -104864,8 +105408,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -104873,8 +105417,8 @@ msgid_plural "%s (happy)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -104882,8 +105426,8 @@ msgid_plural "%s (focus)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -104891,8 +105435,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -104900,7 +105444,7 @@ msgid_plural "%s (wake up)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -105341,7 +105885,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -105572,13 +106116,13 @@ msgid_plural "loose caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -105591,13 +106135,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -106061,6 +106605,21 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -106341,13 +106900,28 @@ msgid_plural "pliers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -106401,6 +106975,33 @@ msgid "" "to have the right tools for more precise work." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -106526,18 +107127,46 @@ msgid "" msgstr "" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" msgstr[0] "" msgstr[1] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -106834,36 +107463,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -106894,6 +107493,12 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -107116,8 +107721,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -107558,7 +108163,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -107980,7 +108585,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -108027,7 +108632,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -108045,7 +108650,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -109050,6 +109655,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -109101,6 +109715,30 @@ msgstr[1] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -110005,7 +110643,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -110482,6 +111120,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -111365,18 +112007,15 @@ msgstr "" "par unyttige bionikker som lager knirkelyder når du går." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "Legeringsplate - Armer" +msgid "Intradermal Alloy - Arms" +msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" -"Kjøttet på armene dine er kirurgisk erstattet av legering. Gir passiv " -"beskyttelse og kan brukes i forbindelse med bionisk kampsport." #: lang/json/bionic_from_json.py msgid "Protective Lenses" @@ -111394,44 +112033,37 @@ msgstr "" " du spytte ut eller svelge tårene." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" -msgstr "Legeringsplate - hode" +msgid "Intradermal Alloy - head" +msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" -"Kjøttet på hodet ditt er kirurgisk erstattet av legering, og beskytter både " -"hodet og kjeveområdet." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "Legeringsplate - Ben" +msgid "Intradermal Alloy - Legs" +msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" -"Kjøttet på bena dine er kirurgisk erstattet av legering. Gir passiv " -"beskyttelse og kan brukes i forbindelse med bionisk kampsport." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" -msgstr "Legeringsplate - bryst" +msgid "Intradermal Alloy - torso" +msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" -"Kjøttet på brystet ditt er kirurgisk erstattet av legering, som beskytter " -"det mot fysisk traume." #: lang/json/bionic_from_json.py msgid "Battery System" @@ -111441,12 +112073,9 @@ msgstr "Batterisystem" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" -"Du har et batteridreneringsutstyr, og kan dermed bruke energien som finnes i" -" vanlige, hverdagslige batterier. Bruk 'E' for å tømme strømmen fra et " -"batteri. Kan slås av og på etter eget ønske." #: lang/json/bionic_from_json.py msgid "Monomolecular Blade" @@ -117110,8 +117739,8 @@ msgstr "Du har et infisert sår." #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." -msgstr "Bittesåret ditt føles infisert." +msgid "Your wound feels infected." +msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus #. Filled'. @@ -121904,8 +122533,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "" @@ -121921,9 +122549,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "" @@ -122599,7 +123226,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "" @@ -124883,7 +125510,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "" @@ -125005,6 +125633,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -127523,14 +128165,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -127669,16 +128311,16 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -128652,14 +129294,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -130935,6 +131577,19 @@ msgid_plural "acid dart guns" msgstr[0] "" msgstr[1] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -133452,8 +134107,9 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -133465,10 +134121,10 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -133970,17 +134626,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -136317,6 +136977,11 @@ msgid "" "the punishment of combat." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -137156,6 +137821,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "Rull opp" @@ -137324,6 +137996,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -138436,6 +139112,10 @@ msgstr "" msgid "Move cursor down" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -138636,6 +139316,20 @@ msgstr "" msgid "No" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -140022,13 +140716,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -140090,13 +140784,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -140705,13 +141399,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -144149,6 +144843,16 @@ msgstr " Sti" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -144571,8 +145275,8 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -144596,7 +145300,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -144610,7 +145315,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -144623,9 +145328,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "" @@ -144785,7 +145519,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -144800,7 +145534,8 @@ msgstr "" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -144830,17 +145565,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -144851,10 +145585,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144865,9 +145613,10 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -144882,33 +145631,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" +"\n" +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -144999,6 +145769,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "" @@ -145056,7 +145840,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -145070,8 +145854,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -145085,6 +145870,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -145136,6 +145922,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "" @@ -145221,6 +146020,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "" @@ -145367,6 +146181,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "" @@ -145703,16 +146532,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -145815,7 +146645,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -145922,33 +146752,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146069,7 +146899,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -146267,6 +147097,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -146327,10 +147172,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -146431,10 +147277,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -147078,7 +147925,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -147088,11 +147950,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -147186,6 +148049,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -147198,21 +148075,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -147290,6 +148168,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -148929,7 +149821,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -149124,7 +150016,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -149329,7 +150221,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -149383,8 +150275,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -149544,7 +150435,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -149558,7 +150449,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -149597,7 +150488,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -149632,7 +150523,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -149663,7 +150554,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -149705,7 +150596,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -149747,16 +150638,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -149803,7 +150728,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -149853,7 +150778,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -149895,7 +150820,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -149944,7 +150869,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -149971,7 +150896,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -150006,7 +150931,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -150872,7 +151797,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -150907,7 +151832,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -150944,7 +151869,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -150979,7 +151904,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -151007,7 +151932,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -151059,7 +151984,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -151090,7 +152015,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -151119,7 +152044,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -151149,7 +152074,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -151418,8 +152343,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -151820,7 +152744,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -151861,7 +152785,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -151888,7 +152812,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -151970,7 +152894,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -152007,7 +152931,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -152051,7 +152975,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -152100,7 +153024,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -152142,7 +153066,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -152183,7 +153107,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -152218,7 +153142,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -152263,7 +153187,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -152274,6 +153198,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -152420,7 +153402,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -152475,7 +153457,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -152514,7 +153496,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -152551,11 +153533,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -152581,15 +153615,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -152646,7 +153676,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -152696,7 +153726,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -152741,7 +153771,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -152782,11 +153812,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -152829,7 +153860,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -152877,7 +153908,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -152921,7 +153952,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -154584,7 +155615,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -154603,7 +155634,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -154630,7 +155661,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -154664,7 +155695,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -154711,7 +155742,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -155487,6 +156518,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -156179,13 +157234,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -156915,6 +157970,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -157837,7 +158914,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -157848,6 +158924,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -157995,7 +159078,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -158277,9 +159360,11 @@ msgstr "Skummel" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" +"Det er noe med deg som skapninger synes er skremmende, og det er mer " +"sannsynlig at de prøver å flykte." #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -161434,8 +162519,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -161677,7 +162762,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -161686,7 +162771,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -161695,7 +162780,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -161704,7 +162789,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -161722,7 +162807,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -161731,7 +162816,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -161740,7 +162825,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -161749,7 +162834,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -161767,7 +162852,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -161776,7 +162861,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -161786,7 +162871,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -161796,7 +162881,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -161826,7 +162911,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -161835,7 +162920,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -161844,7 +162929,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -161853,7 +162938,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -162351,7 +163436,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -162470,7 +163555,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -166984,6 +168069,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -167019,6 +168105,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -167577,6 +168671,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -167712,6 +168814,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -167880,6 +168986,10 @@ msgstr "" msgid "Guard" msgstr "Vakt" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "Makayla Sanchez" @@ -168048,6 +169158,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -168983,6 +170097,10 @@ msgstr "slimhull" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -169672,6 +170790,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -169680,24 +170802,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -170064,6 +171202,10 @@ msgstr "mi-go leirtårn" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "forskningslabbatomreaktor" @@ -171520,6 +172662,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -171630,6 +172826,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -171666,7 +172890,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -171679,7 +172903,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -172286,6 +173510,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -172556,6 +173806,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -172682,6 +173986,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -172730,6 +174062,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -172752,6 +174112,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -177312,6 +178724,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -181702,6 +183172,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -186667,6 +188159,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -186711,6 +188725,63 @@ msgstr "" msgid "Farm processing shack" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "" @@ -186766,6 +188837,524 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "" @@ -186970,6 +189559,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -187664,6 +190629,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -187929,60 +191533,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -188817,7 +192730,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -188829,12 +192746,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -188842,11 +192769,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -189009,6 +192946,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -191150,6 +195143,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -191462,7 +195481,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -192212,8 +196231,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -192988,15 +197007,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -198074,6 +202094,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -198082,7 +202368,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -198199,7 +202485,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -202801,7 +207087,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -202860,7 +207146,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -202873,7 +207159,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -202891,17 +207177,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -202980,7 +207266,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -203090,8 +207376,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -203499,7 +207785,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -203509,8 +207795,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -204932,6 +209218,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -207234,7 +211582,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "" @@ -207895,6 +212243,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -207913,6 +212373,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -209082,6 +213557,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -211408,6 +215961,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -211517,6 +216077,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -211540,6 +216118,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -213050,7 +217635,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -213220,19 +217805,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -213305,95 +217890,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" +msgid "\"Wanna play with me?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" +msgid "\"Sing with me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" +msgid "\"Please take me with you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" +msgid "\"May I have a cookie?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -213401,31 +217990,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" +msgid "\"Hey kids. Want some candy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -213441,19 +218030,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -214520,6 +219105,10 @@ msgstr "" msgid "Gun Store" msgstr "" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "" @@ -215953,6 +220542,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -223173,6 +227766,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -223819,6 +229190,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -223888,6 +229263,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -226320,10 +231706,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -230116,10 +235498,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -230448,6 +235826,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -230739,6 +236226,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -230829,6 +236325,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -233604,6 +239152,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -233789,20 +239354,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -234410,20 +239961,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "" @@ -234459,54 +239996,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -234590,20 +240117,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -234722,34 +240235,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -234765,45 +240250,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -234887,17 +240372,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -234939,7 +240424,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -234952,6 +240437,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -235098,20 +240587,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -235216,20 +240691,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -235330,20 +240791,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -235668,41 +241115,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -235903,20 +241346,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -236677,20 +242106,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -236789,20 +242204,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -236845,20 +242246,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -239099,6 +244486,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "eple tre" @@ -242491,24 +247890,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -242516,32 +247915,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -242549,35 +247948,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -242585,33 +247979,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -242619,10 +248013,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -242630,10 +248024,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -242641,40 +248035,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -242682,21 +248074,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -242704,44 +248092,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -242749,14 +248128,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -242774,12 +248149,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -242787,21 +248157,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -242809,10 +248175,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -242820,7 +248186,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -242829,10 +248195,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -242841,21 +248207,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -242863,10 +248225,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -242875,10 +248237,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -242886,7 +248248,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -242895,26 +248257,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -242928,11 +248290,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -245435,18 +250793,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "" @@ -245809,6 +251274,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -246286,6 +251802,15 @@ msgstr "" msgid "wooden aisle" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -246421,6 +251946,10 @@ msgstr "" msgid "wood table" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -246489,6 +252018,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -246595,6 +252128,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -247778,8 +253317,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -250492,6 +256031,18 @@ msgstr "" msgid "Coverage:" msgstr "" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "Last:" @@ -250583,8 +256134,9 @@ msgstr "" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -250596,6 +256148,12 @@ msgstr "" msgid "Storage (%s)" msgstr "" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "" @@ -254790,11 +260348,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "" @@ -255105,6 +260658,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -257271,10 +262832,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -257815,6 +263372,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -258241,6 +263806,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -258329,6 +263899,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -259082,7 +264657,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -259104,15 +264679,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -262444,6 +268010,10 @@ msgstr "" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -262728,6 +268298,15 @@ msgstr "" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "" @@ -265042,10 +270621,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "Ja, og lagre spillet før søvn." @@ -265186,6 +270761,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -265545,10 +271128,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -266075,13 +271654,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -269388,6 +274960,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -272410,13 +277997,15 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" +msgid "Set the timer to how many seconds (0 to cancel)?" msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -273153,8 +278742,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -273376,38 +278964,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -274632,87 +280188,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -277534,7 +283033,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -282456,6 +287967,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -283325,21 +288841,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -283603,11 +289104,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -285294,11 +290804,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -286065,6 +291570,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -286072,14 +291586,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -288395,20 +293914,6 @@ msgstr "" msgid "# Unexplored" msgstr "" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -288749,6 +294254,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -288797,6 +294307,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -291201,6 +296715,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -295513,6 +301037,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "" diff --git a/lang/po/nl.po b/lang/po/nl.po index 239f4a9278a59..22c9492dc9d83 100644 --- a/lang/po/nl.po +++ b/lang/po/nl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Perry Vorselaars , 2021\n" "Language-Team: Dutch (https://www.transifex.com/cataclysm-dda-translators/teams/2217/nl/)\n" @@ -24,7 +24,7 @@ msgid_plural "battery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -37,7 +37,7 @@ msgid_plural "butane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "" @@ -48,7 +48,7 @@ msgid_plural "aerosol paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -61,7 +61,7 @@ msgid_plural "permanent ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -74,7 +74,7 @@ msgid_plural "candle wax" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "" @@ -85,7 +85,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "" @@ -109,7 +109,7 @@ msgid_plural "oxygen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "" @@ -120,7 +120,7 @@ msgid_plural "aluminum foil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -144,7 +144,7 @@ msgid_plural "thread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -178,7 +178,7 @@ msgid_plural "yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Wolle garen, kan gebruikt worden om wolle kleding mee te breien." @@ -200,7 +200,7 @@ msgid_plural "duct tape" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -263,8 +263,8 @@ msgid_plural "plutonium slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -328,7 +328,7 @@ msgid_plural "bearings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -374,7 +374,7 @@ msgid_plural "120mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -399,7 +399,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -413,7 +413,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -424,7 +424,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -435,7 +435,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -447,7 +447,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -458,7 +458,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -469,7 +469,7 @@ msgid_plural "artillery propellant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -482,7 +482,7 @@ msgid_plural "oxidizer powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "" @@ -493,7 +493,7 @@ msgid_plural "lye powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "" @@ -583,7 +583,7 @@ msgid_plural "copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -596,7 +596,7 @@ msgid_plural "medical tape" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Rol medische plakband, net als duct tape." @@ -608,7 +608,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "ALS JE DIT ZIET IS HET EEN BUG" @@ -619,7 +619,7 @@ msgid_plural "charcoal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -633,7 +633,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -659,7 +659,7 @@ msgid_plural "albuterol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -747,7 +747,7 @@ msgid_plural "nicotine liquid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -760,7 +760,7 @@ msgid_plural "fish bait" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "" @@ -813,7 +813,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -826,7 +826,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -850,7 +850,7 @@ msgid_plural "nitrox" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -861,7 +861,7 @@ msgid_plural "extinguishing agent" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "" @@ -872,7 +872,7 @@ msgid_plural "tinder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -905,7 +905,7 @@ msgid_plural "bronze" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -916,7 +916,7 @@ msgid_plural "glowstick juice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -928,7 +928,7 @@ msgid_plural "graphite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -942,7 +942,7 @@ msgid_plural "black pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -955,7 +955,7 @@ msgid_plural "blue pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -968,7 +968,7 @@ msgid_plural "green pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -981,7 +981,7 @@ msgid_plural "red pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1008,7 +1008,7 @@ msgid_plural "sulfur" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1034,7 +1034,7 @@ msgid_plural "cement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1048,7 +1048,7 @@ msgid_plural "gravel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1059,7 +1059,7 @@ msgid_plural "limestone" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1073,7 +1073,7 @@ msgid_plural "quicklime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1089,7 +1089,7 @@ msgid_plural "sand" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1102,7 +1102,7 @@ msgid_plural "soil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1115,7 +1115,7 @@ msgid_plural "aluminum powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1130,7 +1130,7 @@ msgid_plural "zinc powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1145,7 +1145,7 @@ msgid_plural "zinc oxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1158,7 +1158,7 @@ msgid_plural "manganese dioxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1172,7 +1172,7 @@ msgid_plural "potassium chloride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1187,7 +1187,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1201,7 +1201,7 @@ msgid_plural "acetone" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1215,7 +1215,7 @@ msgid_plural "chromium oxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1231,7 +1231,7 @@ msgid_plural "calcium carbide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1247,7 +1247,7 @@ msgid_plural "hexamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1263,7 +1263,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1278,7 +1278,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1293,7 +1293,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1308,7 +1308,7 @@ msgid_plural "saltpeter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1322,7 +1322,7 @@ msgid_plural "niter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1335,7 +1335,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1352,7 +1352,7 @@ msgid_plural "acetic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1367,7 +1367,7 @@ msgid_plural "formaldehyde" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1382,7 +1382,7 @@ msgid_plural "thermite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1397,7 +1397,7 @@ msgid_plural "ANFO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1412,7 +1412,7 @@ msgid_plural "black gunpowder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1427,7 +1427,7 @@ msgid_plural "match head powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1441,7 +1441,7 @@ msgid_plural "RDX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1455,7 +1455,7 @@ msgid_plural "composition b" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1469,7 +1469,7 @@ msgid_plural "HMTD" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1483,7 +1483,7 @@ msgid_plural "APEX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1497,7 +1497,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1510,7 +1510,7 @@ msgid_plural "detergent" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "" @@ -1521,7 +1521,7 @@ msgid_plural "soap flakes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1582,7 +1582,7 @@ msgid_plural "concentrated venom" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1597,7 +1597,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1612,7 +1612,7 @@ msgid_plural "rocuronium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1626,7 +1626,7 @@ msgid_plural "red phosphorous" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1639,7 +1639,7 @@ msgid_plural "iodine crystal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1652,7 +1652,7 @@ msgid_plural "ethanol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1680,7 +1680,7 @@ msgid_plural "methanol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1694,7 +1694,7 @@ msgid_plural "diesel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1706,7 +1706,7 @@ msgid_plural "JP8 fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1719,7 +1719,7 @@ msgid_plural "avgas fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -1730,7 +1730,7 @@ msgid_plural "biodiesel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1744,7 +1744,7 @@ msgid_plural "gasoline" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1757,7 +1757,7 @@ msgid_plural "lamp oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "Lampolie, touw, bommen. Wil je dat? Kan je krijgen, mijn vriend." @@ -1768,7 +1768,7 @@ msgid_plural "motor oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "" @@ -1779,7 +1779,7 @@ msgid_plural "napalm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -1793,7 +1793,7 @@ msgid_plural "gelled gasoline" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -1807,7 +1807,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -1846,7 +1846,7 @@ msgid_plural "shrapnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "" @@ -1902,7 +1902,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -1928,7 +1928,7 @@ msgid_plural "H&K 12mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -1968,7 +1968,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -1994,7 +1994,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2036,7 +2036,7 @@ msgid_plural "20x66mm frag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2050,7 +2050,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2064,7 +2064,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2092,7 +2092,7 @@ msgid_plural ".22 CB" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2106,7 +2106,7 @@ msgid_plural ".22 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2120,7 +2120,7 @@ msgid_plural ".22 LR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2134,7 +2134,7 @@ msgid_plural ".22 rat-shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2172,7 +2172,7 @@ msgid_plural ".223 Remington" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2189,7 +2189,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2205,7 +2205,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2222,7 +2222,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2240,7 +2240,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2258,7 +2258,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2307,7 +2307,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2355,7 +2355,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2369,7 +2369,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2383,7 +2383,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2397,7 +2397,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2499,7 +2499,7 @@ msgid_plural ".308 Winchester" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2513,7 +2513,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2527,7 +2527,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2576,7 +2576,7 @@ msgid_plural ".32 ACP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2601,7 +2601,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2615,7 +2615,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2653,7 +2653,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2666,7 +2666,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -2717,7 +2717,7 @@ msgid_plural ".38 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -2743,7 +2743,7 @@ msgid_plural ".38 Super" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -2786,7 +2786,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -2801,7 +2801,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -2816,7 +2816,7 @@ msgid_plural ".380 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -2861,7 +2861,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -2881,7 +2881,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -2895,7 +2895,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -2939,7 +2939,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -2953,7 +2953,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -2967,7 +2967,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -2981,7 +2981,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -2995,8 +2995,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3010,8 +3010,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3054,8 +3054,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3069,8 +3069,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3128,7 +3128,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3141,7 +3141,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3171,7 +3171,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3185,8 +3185,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3209,8 +3209,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3241,7 +3241,7 @@ msgid_plural ".410 000 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3258,7 +3258,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3322,7 +3322,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3335,7 +3335,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3349,7 +3349,7 @@ msgid_plural ".45 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3393,7 +3393,7 @@ msgid_plural ".454 Casull" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3421,7 +3421,7 @@ msgid_plural ".45-70 SP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3449,7 +3449,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3463,7 +3463,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3492,7 +3492,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3507,7 +3507,7 @@ msgid_plural ".45-70, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3522,7 +3522,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3549,7 +3549,7 @@ msgid_plural "4.6x30mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3563,8 +3563,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3585,7 +3585,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3598,7 +3598,7 @@ msgid_plural ".460 Rowland" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -3626,7 +3626,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -3645,7 +3645,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3659,7 +3659,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -3675,7 +3675,7 @@ msgid_plural ".50 BMG Match" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -3688,7 +3688,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -3701,7 +3701,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -3720,7 +3720,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3734,7 +3734,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -3750,7 +3750,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -3807,7 +3807,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -3822,7 +3822,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -3835,7 +3835,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -3849,7 +3849,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -3874,7 +3874,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3891,8 +3891,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3971,7 +3971,7 @@ msgid_plural "66mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -3984,7 +3984,7 @@ msgid_plural ".700 NX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4011,7 +4011,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4026,7 +4026,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4041,7 +4041,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4074,7 +4074,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4102,7 +4102,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4129,7 +4129,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4196,7 +4196,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4209,7 +4209,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4222,7 +4222,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4236,7 +4236,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4250,7 +4250,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4265,7 +4265,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4280,7 +4280,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4294,7 +4294,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4309,7 +4309,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4322,7 +4322,7 @@ msgid_plural "9x19mm +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4335,7 +4335,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4384,7 +4384,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4398,7 +4398,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4412,7 +4412,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4437,7 +4437,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4451,7 +4451,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4465,7 +4465,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4479,7 +4479,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -4505,7 +4505,7 @@ msgid_plural "cannon round shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -4518,7 +4518,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -4531,7 +4531,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -4544,7 +4544,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -4655,7 +4655,7 @@ msgid_plural "paintball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -4771,7 +4771,7 @@ msgid_plural "00 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -4785,7 +4785,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -4796,7 +4796,7 @@ msgid_plural "birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -4851,8 +4851,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5003,7 +5003,7 @@ msgid_plural "oxyacetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5016,7 +5016,7 @@ msgid_plural "fungal seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "" @@ -5837,7 +5837,7 @@ msgid_plural "red paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Een blik met rode verf." @@ -5848,7 +5848,7 @@ msgid_plural "blue paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Een blik met blauwe verf." @@ -5859,7 +5859,7 @@ msgid_plural "white paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Een blik met witte verf." @@ -5870,7 +5870,7 @@ msgid_plural "green paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Een blik met groene verf." @@ -5881,7 +5881,7 @@ msgid_plural "purple paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Een blik met paarse verf." @@ -5892,7 +5892,7 @@ msgid_plural "yellow paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Een blik met gele verf." @@ -5960,7 +5960,7 @@ msgid_plural "bismuth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -5971,8 +5971,8 @@ msgid_plural "gold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -5991,7 +5991,7 @@ msgid_plural "zinc" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6006,7 +6006,7 @@ msgid_plural "lead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6019,7 +6019,7 @@ msgid_plural "magnesium powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6032,7 +6032,7 @@ msgid_plural "silver" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -6093,7 +6093,7 @@ msgid_plural "tin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -6106,7 +6106,7 @@ msgid_plural "solder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -6142,7 +6142,7 @@ msgid_plural "fuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -6195,7 +6195,7 @@ msgid_plural "cotton scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -6209,7 +6209,7 @@ msgid_plural "faux fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -6222,7 +6222,7 @@ msgid_plural "felt scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -6236,7 +6236,7 @@ msgid_plural "fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -6249,7 +6249,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -6264,7 +6264,7 @@ msgid_plural "leather scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -6277,7 +6277,7 @@ msgid_plural "Lycra scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -6290,7 +6290,7 @@ msgid_plural "neoprene scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -6303,7 +6303,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -6316,7 +6316,7 @@ msgid_plural "Nomex scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -6342,7 +6342,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -6367,7 +6367,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -6392,7 +6392,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -6432,7 +6432,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -6459,7 +6459,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -6487,7 +6487,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -6512,7 +6512,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -6606,7 +6606,7 @@ msgid_plural "titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -6634,7 +6634,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -6649,7 +6649,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -6664,7 +6664,7 @@ msgid_plural "25mm canister shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -6680,7 +6680,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -6695,7 +6695,7 @@ msgid_plural "7.50mm RP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -6712,7 +6712,7 @@ msgid_plural "electric charge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -6725,7 +6725,7 @@ msgid_plural "foamcrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -6741,7 +6741,7 @@ msgid_plural "solid hydrogen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -6754,7 +6754,7 @@ msgid_plural "lead pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -6768,7 +6768,7 @@ msgid_plural "domed HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -6782,7 +6782,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -6795,7 +6795,7 @@ msgid_plural "alloy pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -6940,7 +6940,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6955,7 +6955,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6994,7 +6994,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -7010,7 +7010,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -7050,7 +7050,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7066,7 +7066,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7106,7 +7106,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7122,7 +7122,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7162,7 +7162,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -7174,7 +7174,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -7187,7 +7187,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7203,7 +7203,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7230,7 +7230,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -7243,7 +7243,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -7257,7 +7257,7 @@ msgid_plural "rocket, smoke" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -7283,7 +7283,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -7296,7 +7296,7 @@ msgid_plural "shotshell, slug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -7310,7 +7310,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -7360,7 +7360,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -7411,7 +7411,7 @@ msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -7464,7 +7464,7 @@ msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -7492,7 +7492,7 @@ msgid_plural "parabolan yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -7503,7 +7503,7 @@ msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -7541,7 +7541,7 @@ msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -7558,7 +7558,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -8051,7 +8051,7 @@ msgstr[1] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -8067,7 +8067,7 @@ msgstr "" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -8103,7 +8103,7 @@ msgid_plural "chest rig" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -8982,38 +8982,19 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" +msgid "tool belt" +msgid_plural "tool belts" msgstr[0] "" msgstr[1] "" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "" -msgstr[1] "" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -9165,25 +9146,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -9201,45 +9163,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -9251,26 +9174,6 @@ msgstr[1] "" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -9289,26 +9192,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -9379,20 +9262,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -9424,39 +9293,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -10347,25 +10183,6 @@ msgid_plural "XL leather dusters" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -10414,7 +10231,7 @@ msgid_plural "army jacket" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -10587,7 +10404,7 @@ msgid_plural "kimono" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -10748,19 +10565,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -10813,19 +10617,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -10843,7 +10634,7 @@ msgid_plural "thawb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -10895,19 +10686,6 @@ msgstr[1] "" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -11152,19 +10930,6 @@ msgstr[1] "" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -11536,25 +11301,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -11572,50 +11318,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -11679,63 +11381,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -11776,19 +11421,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -11910,37 +11542,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -12681,7 +12282,7 @@ msgid_plural "kabuto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -12791,32 +12392,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -12870,32 +12445,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -13095,36 +12644,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -13174,77 +12693,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -13256,56 +12704,6 @@ msgstr[1] "" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -13714,9 +13112,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -13727,9 +13125,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -13740,9 +13138,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -13753,9 +13151,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -13766,9 +13164,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -13779,9 +13177,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -13792,9 +13190,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -13805,9 +13203,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -13818,9 +13216,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -13831,9 +13229,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -13844,9 +13242,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -13857,9 +13255,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -13870,9 +13268,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -13883,9 +13281,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -17463,7 +16861,7 @@ msgid_plural "turnout trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -17503,7 +16901,7 @@ msgid_plural "leather chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -17516,7 +16914,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -17531,7 +16929,7 @@ msgid_plural "fencing pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -17704,32 +17102,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -17741,39 +17113,13 @@ msgstr[1] "" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -17786,7 +17132,7 @@ msgid_plural "light EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -17813,7 +17159,7 @@ msgid_plural "basketball shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "" @@ -17824,7 +17170,7 @@ msgid_plural "breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -17848,7 +17194,7 @@ msgid_plural "hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "" @@ -17859,7 +17205,7 @@ msgid_plural "fur hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "" @@ -17870,7 +17216,7 @@ msgid_plural "leather hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "" @@ -17881,7 +17227,7 @@ msgid_plural "jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "" @@ -17914,7 +17260,7 @@ msgid_plural "red jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -17943,7 +17289,7 @@ msgid_plural "leggings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -18019,7 +17365,7 @@ msgid_plural "pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "" @@ -18030,15 +17376,15 @@ msgid_plural "army pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -18071,7 +17417,7 @@ msgid_plural "cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -18082,7 +17428,7 @@ msgid_plural "checkered pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -18093,7 +17439,7 @@ msgid_plural "fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "" @@ -18104,7 +17450,7 @@ msgid_plural "faux fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -18115,7 +17461,7 @@ msgid_plural "leather pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -18128,7 +17474,7 @@ msgid_plural "ski pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "" @@ -18139,7 +17485,7 @@ msgid_plural "police breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -18152,7 +17498,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -18163,7 +17509,7 @@ msgid_plural "shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "" @@ -18174,7 +17520,7 @@ msgid_plural "cargo shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -18185,7 +17531,7 @@ msgid_plural "denim shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -18246,7 +17592,7 @@ msgid_plural "striped pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -18277,7 +17623,7 @@ msgid_plural "army winter pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -19417,58 +18763,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -19903,33 +19197,6 @@ msgid_plural "XL plate armors" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -19975,8 +19242,8 @@ msgstr[1] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -19990,19 +19257,6 @@ msgstr[1] "" msgid "An ornamental suit of Japanese samurai armor." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -20137,69 +19391,41 @@ msgstr[0] "" msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for survivor firesuit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" @@ -20218,40 +19444,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -20315,19 +19507,6 @@ msgid "" "experience." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -20337,8 +19516,8 @@ msgstr[1] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" #: lang/json/ARMOR_from_json.py @@ -20354,42 +19533,6 @@ msgid "" "Light and very comfortable." msgstr "" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -20461,45 +19604,6 @@ msgstr[1] "" msgid "A neoprene hood, commonly worn by divers." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -20607,7 +19711,7 @@ msgid_plural "lorica segmentata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -20776,7 +19880,7 @@ msgid_plural "tire leather armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -20836,25 +19940,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -21122,7 +20207,7 @@ msgid_plural "leotard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -21208,7 +20293,7 @@ msgid_plural "French maid clothes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -21508,7 +20593,7 @@ msgid_plural "boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -21519,7 +20604,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -21530,7 +20615,7 @@ msgid_plural "boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -21542,7 +20627,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -21555,7 +20640,7 @@ msgid_plural "boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21567,7 +20652,7 @@ msgid_plural "XL boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21592,7 +20677,7 @@ msgid_plural "briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "" @@ -21749,7 +20834,7 @@ msgid_plural "panties" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -21813,7 +20898,7 @@ msgid_plural "tights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -21838,7 +20923,7 @@ msgid_plural "compression shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -21872,6 +20957,942 @@ msgid "" "unitard provides overall coverage with great flexibility." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -21992,7 +22013,7 @@ msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -22005,7 +22026,7 @@ msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -22165,7 +22186,7 @@ msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -22176,7 +22197,7 @@ msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -22189,7 +22210,7 @@ msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -22451,7 +22472,7 @@ msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -22601,19 +22622,6 @@ msgid "" " ridiculously heavy." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -22741,7 +22749,7 @@ msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -22754,7 +22762,7 @@ msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -22797,6 +22805,12 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -22945,7 +22959,7 @@ msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -23432,7 +23446,7 @@ msgid_plural "freerunner's boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -23504,7 +23518,7 @@ msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -23519,7 +23533,7 @@ msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23548,7 +23562,7 @@ msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23606,7 +23620,7 @@ msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -23664,7 +23678,7 @@ msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -23675,7 +23689,7 @@ msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -23773,7 +23787,7 @@ msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -23784,7 +23798,7 @@ msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -23869,16 +23883,18 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -23896,42 +23912,35 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -24657,7 +24666,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -25088,7 +25097,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -25297,7 +25306,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -26601,7 +26610,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -26844,7 +26853,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -26882,7 +26891,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -26897,7 +26906,7 @@ msgid_plural "schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -26905,9 +26914,9 @@ msgstr[1] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -26923,7 +26932,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -26938,7 +26947,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -26953,7 +26962,7 @@ msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -26967,7 +26976,7 @@ msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -26981,7 +26990,7 @@ msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -26995,7 +27004,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -27009,7 +27018,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -27023,7 +27032,7 @@ msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -27037,7 +27046,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -27051,7 +27060,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -27065,7 +27074,7 @@ msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27080,7 +27089,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27095,7 +27104,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -27109,7 +27118,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -27707,7 +27716,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "" @@ -27718,7 +27727,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -27730,7 +27739,7 @@ msgid_plural "Capoeira 100" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "" @@ -27741,7 +27750,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "" @@ -27752,7 +27761,7 @@ msgid_plural "The Red Crane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "" @@ -27763,7 +27772,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "" @@ -27774,7 +27783,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "" @@ -27785,7 +27794,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "" @@ -27796,7 +27805,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "" @@ -27807,7 +27816,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "" @@ -27818,7 +27827,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "" @@ -27829,7 +27838,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "" @@ -27840,7 +27849,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "" @@ -27851,7 +27860,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "" @@ -27862,7 +27871,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "" @@ -27873,7 +27882,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -27886,7 +27895,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "" @@ -27897,7 +27906,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "" @@ -27908,7 +27917,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "" @@ -27919,7 +27928,7 @@ msgid_plural "The Black Snake" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "" @@ -27930,7 +27939,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -27941,7 +27950,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" @@ -27952,7 +27961,7 @@ msgid_plural "The White Tiger" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "" @@ -27963,7 +27972,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "" @@ -27974,7 +27983,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "" @@ -27985,7 +27994,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "" @@ -27996,7 +28005,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "" @@ -28007,7 +28016,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -28019,7 +28028,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -28033,7 +28042,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -28189,7 +28198,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -29058,7 +29067,7 @@ msgid_plural "patient treatment records" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -29069,7 +29078,7 @@ msgid_plural "national weather transcripts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -32501,7 +32510,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32516,7 +32525,7 @@ msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32531,7 +32540,7 @@ msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32546,7 +32555,7 @@ msgid_plural "tank drone schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32561,7 +32570,7 @@ msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -32791,7 +32800,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -32802,7 +32811,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -32813,7 +32822,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -32826,7 +32835,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -32837,7 +32846,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -32850,7 +32859,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -32864,7 +32873,7 @@ msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -32875,7 +32884,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -32888,7 +32897,7 @@ msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -32899,7 +32908,7 @@ msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -32926,6 +32935,21 @@ msgstr[1] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -35006,7 +35030,7 @@ msgid_plural "bird litter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -35062,14 +35086,14 @@ msgid_plural "bleach" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -35082,7 +35106,7 @@ msgid_plural "ammonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -35095,7 +35119,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -35106,7 +35130,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -35117,7 +35141,7 @@ msgid_plural "fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -35130,7 +35154,7 @@ msgid_plural "insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -35143,7 +35167,7 @@ msgid_plural "salt water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "" @@ -35154,7 +35178,7 @@ msgid_plural "soapy water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -35176,7 +35200,7 @@ msgid_plural "sulfuric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -35191,7 +35215,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -35205,7 +35229,7 @@ msgid_plural "nitric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -35236,7 +35260,7 @@ msgid_plural "sewage water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -35247,7 +35271,7 @@ msgid_plural "lye" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -35260,7 +35284,7 @@ msgid_plural "ether" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -35275,7 +35299,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -35290,7 +35314,7 @@ msgid_plural "chloroform" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -35304,7 +35328,7 @@ msgid_plural "phenol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -35320,7 +35344,7 @@ msgid_plural "glycerol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -35333,7 +35357,7 @@ msgid_plural "peptone broth powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -35347,7 +35371,7 @@ msgid_plural "agar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -35362,7 +35386,7 @@ msgid_plural "acrylamide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -35375,7 +35399,7 @@ msgid_plural "acetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -35388,7 +35412,7 @@ msgid_plural "formic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -35401,7 +35425,7 @@ msgid_plural "latex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -35412,7 +35436,7 @@ msgid_plural "citric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -35489,13 +35513,24 @@ msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -35534,7 +35569,7 @@ msgid_plural "marloss wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -35545,7 +35580,7 @@ msgid_plural "Riesling" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" @@ -35556,7 +35591,7 @@ msgid_plural "Chardonnay" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "" @@ -35567,7 +35602,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -35580,7 +35615,7 @@ msgid_plural "pinot noir" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -35593,7 +35628,7 @@ msgid_plural "marsala" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -35604,7 +35639,7 @@ msgid_plural "vermouth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -35617,7 +35652,7 @@ msgid_plural "barley wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -35628,7 +35663,7 @@ msgid_plural "whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -35640,7 +35675,7 @@ msgid_plural "vodka" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -35653,7 +35688,7 @@ msgid_plural "gin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -35666,7 +35701,7 @@ msgid_plural "rum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -35679,7 +35714,7 @@ msgid_plural "tequila" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -35692,7 +35727,7 @@ msgid_plural "triple sec" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -35703,7 +35738,7 @@ msgid_plural "cheap wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "" @@ -35714,7 +35749,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -35725,7 +35760,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -35736,7 +35771,7 @@ msgid_plural "fruit wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -35748,7 +35783,7 @@ msgid_plural "brandy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -35761,7 +35796,7 @@ msgid_plural "Irish coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -35774,7 +35809,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -35801,7 +35836,7 @@ msgid_plural "wild apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "" @@ -35812,7 +35847,7 @@ msgid_plural "rum & cola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -35823,7 +35858,7 @@ msgid_plural "beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -35836,7 +35871,7 @@ msgid_plural "spiced mead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -35848,7 +35883,7 @@ msgid_plural "dandelion wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -35861,7 +35896,7 @@ msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -35872,7 +35907,7 @@ msgid_plural "pine wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -35885,7 +35920,7 @@ msgid_plural "homebrew beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -35896,7 +35931,7 @@ msgid_plural "moonshine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -35910,7 +35945,7 @@ msgid_plural "European pilsner" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -35923,7 +35958,7 @@ msgid_plural "American pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -35936,7 +35971,7 @@ msgid_plural "India pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -35949,7 +35984,7 @@ msgid_plural "stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -35960,7 +35995,7 @@ msgid_plural "Belgian ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -35973,7 +36008,7 @@ msgid_plural "imperial stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -36014,7 +36049,7 @@ msgid_plural "single malt whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "" @@ -36025,7 +36060,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -36036,7 +36071,7 @@ msgid_plural "cheap whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -36047,7 +36082,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -36058,7 +36093,7 @@ msgid_plural "sherry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -36070,7 +36105,7 @@ msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -36083,7 +36118,7 @@ msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -36094,7 +36129,7 @@ msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "" @@ -36105,7 +36140,7 @@ msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -36118,7 +36153,7 @@ msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -36209,7 +36244,7 @@ msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -36220,7 +36255,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -36231,7 +36266,7 @@ msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -36244,7 +36279,7 @@ msgid_plural "sourdough bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -36257,7 +36292,7 @@ msgid_plural "flatbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "" @@ -36268,7 +36303,7 @@ msgid_plural "bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "" @@ -36279,7 +36314,7 @@ msgid_plural "toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -36292,7 +36327,7 @@ msgid_plural "buttered toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -36303,7 +36338,7 @@ msgid_plural "jam toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -36316,7 +36351,7 @@ msgid_plural "peanut butter toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -36328,7 +36363,7 @@ msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -36339,7 +36374,7 @@ msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -36352,7 +36387,7 @@ msgid_plural "cornbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "" @@ -36385,7 +36420,7 @@ msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -36409,7 +36444,7 @@ msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -36423,7 +36458,7 @@ msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -36434,7 +36469,7 @@ msgid_plural "hallula" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -36697,18 +36732,18 @@ msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -36719,8 +36754,8 @@ msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -36733,14 +36768,14 @@ msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -36751,7 +36786,7 @@ msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -36779,7 +36814,7 @@ msgid_plural "cooked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "" @@ -36880,7 +36915,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -36983,7 +37018,7 @@ msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -37022,7 +37057,7 @@ msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -37069,7 +37104,7 @@ msgid_plural "butchery refuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -37154,7 +37189,7 @@ msgid_plural "cooked offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -37168,7 +37203,7 @@ msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -37179,7 +37214,7 @@ msgid_plural "pickled offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -37193,7 +37228,7 @@ msgid_plural "canned offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -37228,31 +37263,28 @@ msgid_plural "meat jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -37264,7 +37296,7 @@ msgid_plural "salted fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -37276,33 +37308,27 @@ msgid_plural "smoked meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -37323,7 +37349,7 @@ msgid_plural "smoked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -37376,7 +37402,7 @@ msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -37427,7 +37453,7 @@ msgid_plural "raw brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -37438,7 +37464,7 @@ msgid_plural "cooked brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -37517,7 +37543,7 @@ msgstr[1] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -37669,7 +37695,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -37910,7 +37936,7 @@ msgid_plural "alien fronds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -38015,7 +38041,7 @@ msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -38026,7 +38052,7 @@ msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -38064,13 +38090,38 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -38084,7 +38135,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -38097,7 +38148,7 @@ msgid_plural "cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -38108,7 +38159,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -38120,7 +38171,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -38133,7 +38184,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -38146,7 +38197,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -38159,7 +38210,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -38172,7 +38223,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -38198,7 +38249,7 @@ msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -38222,7 +38273,7 @@ msgid_plural "wheat cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -38246,7 +38297,7 @@ msgid_plural "milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -38257,7 +38308,7 @@ msgid_plural "chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -38268,7 +38319,7 @@ msgid_plural "reconstituted milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -38281,7 +38332,7 @@ msgid_plural "raw milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -38296,7 +38347,7 @@ msgid_plural "shelf stable milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -38310,7 +38361,7 @@ msgid_plural "evaporated milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -38322,7 +38373,7 @@ msgid_plural "buttermilk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -38346,7 +38397,7 @@ msgid_plural "butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -38358,7 +38409,7 @@ msgid_plural "raw butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -38370,7 +38421,7 @@ msgid_plural "ghee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -38407,7 +38458,7 @@ msgid_plural "hard cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -38420,7 +38471,7 @@ msgid_plural "cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "" @@ -38442,7 +38493,7 @@ msgid_plural "powdered milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -38453,7 +38504,7 @@ msgid_plural "condensed milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -38466,7 +38517,7 @@ msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -38479,7 +38530,7 @@ msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -38490,7 +38541,7 @@ msgid_plural "apple cider" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "" @@ -38527,7 +38578,7 @@ msgid_plural "atomic coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -38541,7 +38592,7 @@ msgid_plural "bee balm tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -38565,7 +38616,7 @@ msgid_plural "chai tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" @@ -38576,7 +38627,7 @@ msgid_plural "chamomile tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -38602,7 +38653,7 @@ msgid_plural "coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -38616,7 +38667,7 @@ msgid_plural "coffee substitute" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -38630,7 +38681,7 @@ msgid_plural "chicory brew" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -38700,7 +38751,7 @@ msgid_plural "dandelion tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -38711,7 +38762,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -38766,7 +38817,7 @@ msgid_plural "herbal tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -38777,7 +38828,7 @@ msgid_plural "hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -38825,7 +38876,7 @@ msgid_plural "lemonade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -38851,7 +38902,7 @@ msgid_plural "lotus tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -38862,7 +38913,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -38923,7 +38974,7 @@ msgid_plural "pine needle tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -38961,7 +39012,7 @@ msgid_plural "root beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -38998,13 +39049,13 @@ msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -39030,7 +39081,7 @@ msgid_plural "sweet water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "" @@ -39054,7 +39105,7 @@ msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -39091,7 +39142,7 @@ msgid_plural "water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -39104,7 +39155,7 @@ msgid_plural "clean water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -39115,7 +39166,7 @@ msgid_plural "mineral water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -39244,7 +39295,7 @@ msgid_plural "maple sap" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -39255,7 +39306,7 @@ msgid_plural "mayonnaise" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -39280,7 +39331,7 @@ msgid_plural "mustard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -39293,7 +39344,7 @@ msgid_plural "forest honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -39306,7 +39357,7 @@ msgid_plural "vinegar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -39319,7 +39370,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "" @@ -39330,7 +39381,7 @@ msgid_plural "animal cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -39341,7 +39392,7 @@ msgid_plural "molasses" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -39354,7 +39405,7 @@ msgid_plural "horseradish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "" @@ -39365,7 +39416,7 @@ msgid_plural "coffee syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -39707,7 +39758,7 @@ msgid_plural "scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "" @@ -39729,7 +39780,7 @@ msgid_plural "fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -39742,7 +39793,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -39755,7 +39806,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -39768,7 +39819,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -39960,7 +40011,7 @@ msgid_plural "frozen yogurt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -40030,7 +40081,7 @@ msgid_plural "peaches in syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -40052,7 +40103,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -40087,7 +40138,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -40101,7 +40152,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -40126,7 +40177,7 @@ msgid_plural "canned fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -40139,7 +40190,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -40163,7 +40214,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -40553,7 +40604,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -40605,7 +40656,7 @@ msgid_plural "irradiated corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -40657,7 +40708,7 @@ msgid_plural "irradiated celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -40670,7 +40721,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -40778,12 +40829,12 @@ msgid_plural "potato chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -40794,7 +40845,7 @@ msgid_plural "popcorn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -40807,7 +40858,7 @@ msgid_plural "popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -40820,7 +40871,7 @@ msgid_plural "salted popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "" @@ -40831,7 +40882,7 @@ msgid_plural "buttered popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -40842,7 +40893,7 @@ msgid_plural "pretzels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "" @@ -40875,7 +40926,7 @@ msgid_plural "marshmallows" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -40886,7 +40937,7 @@ msgid_plural "s'mores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -40921,7 +40972,7 @@ msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -40932,12 +40983,12 @@ msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -40985,7 +41036,7 @@ msgid_plural "powder candy sticks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -41059,7 +41110,7 @@ msgid_plural "maple syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -41072,7 +41123,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -41122,7 +41173,7 @@ msgid_plural "fast-food French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -41133,7 +41184,7 @@ msgid_plural "French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -41155,7 +41206,7 @@ msgid_plural "Necco wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -41181,8 +41232,8 @@ msgid_plural "caramel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "" @@ -41193,7 +41244,7 @@ msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "Een klein zakje gezouten chips." @@ -41204,7 +41255,7 @@ msgid_plural "tortilla chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -41217,7 +41268,7 @@ msgid_plural "cheese nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -41230,31 +41281,28 @@ msgid_plural "meat nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -41267,31 +41315,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -41304,7 +41352,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -41317,7 +41365,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -41391,7 +41439,7 @@ msgid_plural "chili dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" @@ -41402,7 +41450,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -41478,7 +41526,7 @@ msgid_plural "cheese fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "" @@ -41566,8 +41614,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -41710,32 +41757,26 @@ msgid_plural "raw sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -41754,15 +41795,14 @@ msgid_plural "smoked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -41781,15 +41821,14 @@ msgid_plural "cooked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -41819,23 +41858,21 @@ msgid_plural "bratwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -41856,7 +41893,7 @@ msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -41907,7 +41944,7 @@ msgid_plural "cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -41920,8 +41957,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -41929,7 +41965,7 @@ msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -41943,7 +41979,7 @@ msgid_plural "currywursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -41951,8 +41987,7 @@ msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -41960,8 +41995,7 @@ msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -41982,9 +42016,8 @@ msgid_plural "aspics" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -41992,9 +42025,8 @@ msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -42002,9 +42034,8 @@ msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -42026,7 +42057,7 @@ msgid_plural "dehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -42039,7 +42070,7 @@ msgid_plural "rehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -42052,7 +42083,7 @@ msgid_plural "pickled fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -42064,7 +42095,7 @@ msgid_plural "canned fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -42077,7 +42108,7 @@ msgid_plural "batter fried fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -42110,8 +42141,7 @@ msgid_plural "lunch meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -42132,7 +42162,7 @@ msgid_plural "bologna" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -42140,8 +42170,7 @@ msgid_plural "brat %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -42149,8 +42178,7 @@ msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -42158,7 +42186,7 @@ msgid_plural "bleak %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -42186,7 +42214,7 @@ msgid_plural "SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -42224,24 +42252,22 @@ msgid_plural "sausage gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -42262,7 +42288,7 @@ msgid_plural "pemmican" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -42270,8 +42296,7 @@ msgid_plural "prepper %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -42279,8 +42304,7 @@ msgid_plural "Orley %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -42288,7 +42312,7 @@ msgid_plural "pernicious %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -42302,15 +42326,14 @@ msgid_plural "hamburger helpers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -42318,8 +42341,7 @@ msgid_plural "halfling helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -42351,24 +42373,22 @@ msgid_plural "chilis con carne" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -42386,7 +42406,7 @@ msgid_plural "pork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -42399,7 +42419,7 @@ msgid_plural "canned tuna fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "" @@ -42410,7 +42430,7 @@ msgid_plural "canned salmon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "" @@ -42432,7 +42452,7 @@ msgid_plural "pickled herring" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -42454,16 +42474,14 @@ msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -42483,15 +42501,14 @@ msgid_plural "baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" @@ -42502,15 +42519,14 @@ msgid_plural "meat fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" @@ -42521,15 +42537,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -42542,22 +42558,21 @@ msgid_plural "meat pies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -42576,23 +42591,21 @@ msgid_plural "meat pizzas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -42624,31 +42637,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -42661,15 +42673,14 @@ msgid_plural "canned meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -42689,15 +42700,14 @@ msgid_plural "salted meat slices" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -42716,15 +42726,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -42732,8 +42741,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -42741,7 +42749,7 @@ msgid_plural "gnarly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -42752,7 +42760,7 @@ msgid_plural "lasagnes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -42760,8 +42768,7 @@ msgid_plural "Luigi %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -42769,7 +42776,7 @@ msgid_plural "Lab %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -42790,7 +42797,7 @@ msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" @@ -42801,8 +42808,7 @@ msgid_plural "cheeseburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -42810,7 +42816,7 @@ msgid_plural "chump %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -42819,8 +42825,7 @@ msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -42854,23 +42859,21 @@ msgid_plural "hamburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -42889,23 +42892,21 @@ msgid_plural "sloppy joes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -42926,7 +42927,7 @@ msgid_plural "tacos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -42934,8 +42935,7 @@ msgid_plural "tio %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -42943,7 +42943,7 @@ msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -42964,15 +42964,14 @@ msgid_plural "pickled meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -42992,10 +42991,8 @@ msgid_plural "dehydrated meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -43003,12 +43000,11 @@ msgid_plural "%s, human" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -43042,9 +43038,8 @@ msgid_plural "haggises" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -43067,7 +43062,7 @@ msgid_plural "fish makizushi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -43080,8 +43075,7 @@ msgid_plural "meat temaki" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -43089,7 +43083,7 @@ msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -43102,7 +43096,7 @@ msgid_plural "sashimi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -43126,7 +43120,7 @@ msgid_plural "pelmenis" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -43147,8 +43141,7 @@ msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -43169,15 +43162,14 @@ msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -43196,15 +43188,14 @@ msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -43241,12 +43232,12 @@ msgid_plural "prescription stimulant" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -43293,7 +43284,7 @@ msgid_plural "antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -43320,7 +43311,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -43398,7 +43389,7 @@ msgid_plural "antiseptic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -43454,7 +43445,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -43506,12 +43497,12 @@ msgid_plural "codeine" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -43525,7 +43516,7 @@ msgid_plural "cocaine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -43567,7 +43558,7 @@ msgid_plural "cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -43581,12 +43572,12 @@ msgid_plural "crack" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -43599,7 +43590,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -43613,7 +43604,7 @@ msgid_plural "antiseptic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -43636,7 +43627,7 @@ msgid_plural "prescription sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -43649,12 +43640,12 @@ msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43671,12 +43662,12 @@ msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43692,12 +43683,12 @@ msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -43711,16 +43702,14 @@ msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -43734,7 +43723,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43748,7 +43737,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43762,7 +43751,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43776,7 +43765,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43790,7 +43779,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43805,7 +43794,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43820,7 +43809,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -43834,7 +43823,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -43848,12 +43837,12 @@ msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43933,7 +43922,7 @@ msgid_plural "chewing gum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -43958,13 +43947,13 @@ msgid_plural "heroin" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -44040,7 +44029,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44054,7 +44043,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44107,7 +44096,7 @@ msgid_plural "cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -44138,7 +44127,7 @@ msgid_plural "sleeping pill" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -44183,7 +44172,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -44194,15 +44183,14 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -44217,7 +44205,7 @@ msgid_plural "antidepressant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -44249,7 +44237,7 @@ msgid_plural "hemostatic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -44275,7 +44263,7 @@ msgid_plural "antipsychotic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -44526,12 +44514,12 @@ msgid_plural "marijuana" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -44545,7 +44533,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -44572,7 +44560,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -44585,7 +44573,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -44652,7 +44640,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -44667,7 +44655,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -45144,7 +45132,7 @@ msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -45394,9 +45382,8 @@ msgstr[1] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -45463,7 +45450,7 @@ msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -45582,7 +45569,8 @@ msgstr[1] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -45724,7 +45712,7 @@ msgid_plural "pine nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -45735,7 +45723,7 @@ msgid_plural "junipers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -45748,7 +45736,7 @@ msgid_plural "shelled pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -45760,7 +45748,7 @@ msgid_plural "roasted pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -45771,7 +45759,7 @@ msgid_plural "shelled almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -45782,7 +45770,7 @@ msgid_plural "almond pulp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -45794,7 +45782,7 @@ msgid_plural "roasted almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -45805,7 +45793,7 @@ msgid_plural "cashews" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "" @@ -45816,7 +45804,7 @@ msgid_plural "shelled pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -45829,7 +45817,7 @@ msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -45840,7 +45828,7 @@ msgid_plural "shelled peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -45851,7 +45839,7 @@ msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -45862,7 +45850,7 @@ msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -45875,7 +45863,7 @@ msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -45886,7 +45874,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -45899,7 +45887,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -45910,7 +45898,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -45923,7 +45911,7 @@ msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -45934,7 +45922,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -45945,7 +45933,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -45956,7 +45944,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -45969,7 +45957,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -46026,7 +46014,7 @@ msgid_plural "acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -46039,7 +46027,7 @@ msgid_plural "roasted acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -46050,7 +46038,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -46063,7 +46051,7 @@ msgid_plural "foie gras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -46075,7 +46063,7 @@ msgid_plural "liver & onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "" @@ -46130,7 +46118,7 @@ msgid_plural "leverpostej" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -46343,7 +46331,7 @@ msgid_plural "marloss gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -46371,7 +46359,7 @@ msgid_plural "yeast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -46383,7 +46371,7 @@ msgid_plural "bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -46394,7 +46382,7 @@ msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -46406,7 +46394,7 @@ msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -46417,7 +46405,7 @@ msgid_plural "tainted bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -46428,7 +46416,7 @@ msgid_plural "chitin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -46475,7 +46463,7 @@ msgid_plural "dried beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -46488,7 +46476,7 @@ msgid_plural "cooked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "" @@ -46499,8 +46487,8 @@ msgid_plural "tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -46519,7 +46507,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -46530,7 +46518,7 @@ msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -46556,7 +46544,7 @@ msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -46568,7 +46556,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -46582,7 +46570,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -46593,7 +46581,7 @@ msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -46604,7 +46592,7 @@ msgid_plural "coffee powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -46617,7 +46605,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -46630,7 +46618,7 @@ msgid_plural "candied honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -46669,7 +46657,7 @@ msgid_plural "cattle fodder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -46682,7 +46670,7 @@ msgid_plural "bird food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -46695,7 +46683,7 @@ msgid_plural "wet dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -46708,7 +46696,7 @@ msgid_plural "dry dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -46721,7 +46709,7 @@ msgid_plural "wet cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -46734,7 +46722,7 @@ msgid_plural "dry cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -46861,7 +46849,7 @@ msgid_plural "instant coffee mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -46900,15 +46888,14 @@ msgid_plural "protein drinks" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -46916,14 +46903,11 @@ msgid_plural "sapient green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -46944,15 +46928,14 @@ msgid_plural "protein powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -46960,7 +46943,7 @@ msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -46989,15 +46972,14 @@ msgid_plural "protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -47018,7 +47000,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -47026,7 +47008,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -47093,7 +47075,7 @@ msgid_plural "blueberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -47104,7 +47086,7 @@ msgid_plural "strawberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" @@ -47115,7 +47097,7 @@ msgid_plural "cranberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "" @@ -47126,7 +47108,7 @@ msgid_plural "raspberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "" @@ -47137,7 +47119,7 @@ msgid_plural "huckleberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -47148,7 +47130,7 @@ msgid_plural "mulberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -47161,7 +47143,7 @@ msgid_plural "elderberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -47172,7 +47154,7 @@ msgid_plural "rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "" @@ -47218,7 +47200,7 @@ msgid_plural "cherries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "" @@ -47241,7 +47223,7 @@ msgid_plural "grapes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -47307,7 +47289,7 @@ msgid_plural "blackberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "" @@ -47363,7 +47345,7 @@ msgid_plural "apricots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "" @@ -47404,7 +47386,7 @@ msgid_plural "bee balm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -47416,7 +47398,7 @@ msgid_plural "broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "" @@ -47427,7 +47409,7 @@ msgid_plural "buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -47451,7 +47433,7 @@ msgid_plural "spinach" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -47500,7 +47482,7 @@ msgid_plural "celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -47524,7 +47506,7 @@ msgid_plural "corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "" @@ -47535,7 +47517,7 @@ msgid_plural "empty corn cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -47596,7 +47578,7 @@ msgid_plural "salsify" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -47610,7 +47592,7 @@ msgid_plural "chicory" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -47733,7 +47715,7 @@ msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -47770,7 +47752,7 @@ msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -47783,7 +47765,7 @@ msgid_plural "dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -47796,7 +47778,7 @@ msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -47894,7 +47876,7 @@ msgid_plural "wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -47929,7 +47911,7 @@ msgid_plural "raw beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -47942,7 +47924,7 @@ msgid_plural "raw lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -47953,7 +47935,7 @@ msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -47990,8 +47972,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -48005,6 +47986,27 @@ msgid "" "nutritious!" msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -48066,7 +48068,7 @@ msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -48114,26 +48116,23 @@ msgid_plural "meat sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -48249,7 +48248,7 @@ msgid_plural "mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -48260,7 +48259,7 @@ msgid_plural "hop rhizomes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "" @@ -48275,7 +48274,7 @@ msgid_plural "blackberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "" @@ -48290,7 +48289,7 @@ msgid_plural "blueberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "" @@ -48305,7 +48304,7 @@ msgid_plural "cranberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "" @@ -48320,7 +48319,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -48335,7 +48334,7 @@ msgid_plural "mulberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -48350,7 +48349,7 @@ msgid_plural "elderberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -48365,7 +48364,7 @@ msgid_plural "raspberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "" @@ -48380,7 +48379,7 @@ msgid_plural "strawberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "" @@ -48395,7 +48394,7 @@ msgid_plural "grape seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -48410,7 +48409,7 @@ msgid_plural "rose seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -48425,7 +48424,7 @@ msgid_plural "tobacco seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -48440,7 +48439,7 @@ msgid_plural "barley seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "" @@ -48451,7 +48450,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "" @@ -48462,7 +48461,7 @@ msgid_plural "lettuce seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "" @@ -48473,7 +48472,7 @@ msgid_plural "cabbage seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "" @@ -48484,7 +48483,7 @@ msgid_plural "tomato seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "" @@ -48495,7 +48494,7 @@ msgid_plural "cotton seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -48510,7 +48509,7 @@ msgid_plural "broccoli seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "" @@ -48521,7 +48520,7 @@ msgid_plural "zucchini seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "" @@ -48532,7 +48531,7 @@ msgid_plural "onion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "" @@ -48543,7 +48542,7 @@ msgid_plural "garlic seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "" @@ -48558,7 +48557,7 @@ msgid_plural "cattail seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -48573,7 +48572,7 @@ msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -48588,7 +48587,7 @@ msgid_plural "salsify seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -48599,7 +48598,7 @@ msgid_plural "chicory seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -48610,7 +48609,7 @@ msgid_plural "wild root seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -48621,7 +48620,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -48638,7 +48637,7 @@ msgid_plural "cactus seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -48664,7 +48663,7 @@ msgid_plural "carrot seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "" @@ -48675,7 +48674,7 @@ msgid_plural "corn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "" @@ -48690,7 +48689,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "" @@ -48701,7 +48700,7 @@ msgid_plural "cucumber seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "" @@ -48727,7 +48726,7 @@ msgid_plural "cannabis seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -48758,7 +48757,7 @@ msgid_plural "bean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -48773,7 +48772,7 @@ msgid_plural "soybean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -48782,7 +48781,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -48797,7 +48796,7 @@ msgid_plural "thyme seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -48814,7 +48813,7 @@ msgid_plural "canola seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -48825,7 +48824,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -48836,7 +48835,7 @@ msgid_plural "sunflower seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -48854,7 +48853,7 @@ msgid_plural "dogbane seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -48865,7 +48864,7 @@ msgid_plural "bee balm seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -48876,7 +48875,7 @@ msgid_plural "mugwort seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -48887,7 +48886,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -48898,7 +48897,7 @@ msgid_plural "wild herb seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -48913,7 +48912,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -48928,7 +48927,7 @@ msgid_plural "dandelion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -48943,7 +48942,7 @@ msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -48958,7 +48957,7 @@ msgid_plural "rhubarb stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -48969,7 +48968,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -48980,7 +48979,7 @@ msgid_plural "datura seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -48998,7 +48997,7 @@ msgid_plural "celery seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "" @@ -49009,7 +49008,7 @@ msgid_plural "oat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "" @@ -49026,7 +49025,7 @@ msgid_plural "wheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "" @@ -49043,7 +49042,7 @@ msgid_plural "fried seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -49069,7 +49068,7 @@ msgid_plural "coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "" @@ -49080,7 +49079,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -49091,7 +49090,7 @@ msgid_plural "chamomile seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -49106,7 +49105,7 @@ msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -49121,7 +49120,7 @@ msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -49132,7 +49131,7 @@ msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -49143,7 +49142,7 @@ msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -49154,7 +49153,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -49176,8 +49175,7 @@ msgid_plural "bone broths" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -49207,15 +49205,14 @@ msgid_plural "meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -49255,8 +49252,7 @@ msgid_plural "curries with meat" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -49274,10 +49270,8 @@ msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -49339,7 +49333,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" @@ -49363,7 +49357,7 @@ msgid_plural "chili powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -49376,7 +49370,7 @@ msgid_plural "hot sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -49389,7 +49383,7 @@ msgid_plural "cinnamon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -49400,7 +49394,7 @@ msgid_plural "curry powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -49413,7 +49407,7 @@ msgid_plural "black pepper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "" @@ -49424,7 +49418,7 @@ msgid_plural "salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -49437,7 +49431,7 @@ msgid_plural "Italian seasoning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -49448,7 +49442,7 @@ msgid_plural "seasoned salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -49459,7 +49453,7 @@ msgid_plural "sugar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -49472,7 +49466,7 @@ msgid_plural "sprinkles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -49487,7 +49481,7 @@ msgid_plural "wild herbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -49500,7 +49494,7 @@ msgid_plural "soy sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "" @@ -49516,7 +49510,7 @@ msgid_plural "mustard powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -49566,7 +49560,7 @@ msgid_plural "starch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -49579,7 +49573,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" @@ -49590,7 +49584,7 @@ msgid_plural "fried dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -49602,7 +49596,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -49613,7 +49607,7 @@ msgid_plural "fried burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -49650,7 +49644,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -49673,7 +49667,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -49685,7 +49679,7 @@ msgid_plural "canned corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "" @@ -49696,7 +49690,7 @@ msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -49707,7 +49701,7 @@ msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -49718,7 +49712,7 @@ msgid_plural "hominy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -49731,7 +49725,7 @@ msgid_plural "cornmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "" @@ -49742,7 +49736,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" @@ -49753,7 +49747,7 @@ msgid_plural "dried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -49766,7 +49760,7 @@ msgid_plural "cooked rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "" @@ -49777,7 +49771,7 @@ msgid_plural "fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "" @@ -49788,7 +49782,7 @@ msgid_plural "beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -49801,7 +49795,7 @@ msgid_plural "tofu fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -49812,7 +49806,7 @@ msgid_plural "tofu stirfry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -49825,7 +49819,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -49896,7 +49890,7 @@ msgid_plural "pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -49933,7 +49927,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "" @@ -49956,7 +49950,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -49995,7 +49989,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -50019,7 +50013,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -50095,7 +50089,7 @@ msgid_plural "sushi rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -50106,7 +50100,7 @@ msgid_plural "onigiri" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -50119,7 +50113,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -50145,7 +50139,7 @@ msgid_plural "sauerkraut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -50169,7 +50163,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -50180,7 +50174,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -50198,7 +50192,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "" @@ -50209,7 +50203,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -50222,7 +50216,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -50235,7 +50229,7 @@ msgid_plural "boiled noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "" @@ -50246,7 +50240,7 @@ msgid_plural "raw macaroni" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -50257,7 +50251,7 @@ msgid_plural "mac & cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -50268,7 +50262,7 @@ msgid_plural "flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "" @@ -50279,7 +50273,7 @@ msgid_plural "bread flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -50292,14 +50286,14 @@ msgid_plural "oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "" @@ -50310,7 +50304,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -50323,7 +50317,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -50409,7 +50403,7 @@ msgid_plural "oyster crackers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -50444,7 +50438,7 @@ msgid_plural "granola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -50468,7 +50462,7 @@ msgid_plural "fast noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -50662,7 +50656,7 @@ msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -50673,7 +50667,7 @@ msgid_plural "melon seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -50684,7 +50678,7 @@ msgid_plural "banana saplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -50695,7 +50689,7 @@ msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -50706,7 +50700,7 @@ msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -50717,7 +50711,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -50766,7 +50760,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -50812,7 +50806,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -50825,7 +50819,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -50866,7 +50860,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -50976,7 +50970,7 @@ msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -50990,7 +50984,7 @@ msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -51080,7 +51074,7 @@ msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -51094,7 +51088,7 @@ msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -51108,7 +51102,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -51120,7 +51114,7 @@ msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -51133,7 +51127,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -51188,7 +51182,7 @@ msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -51204,7 +51198,7 @@ msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -51218,7 +51212,7 @@ msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -51232,7 +51226,7 @@ msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -51293,7 +51287,7 @@ msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -51307,7 +51301,7 @@ msgid_plural "food cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -51319,7 +51313,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -51343,7 +51337,7 @@ msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -51369,7 +51363,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -51383,7 +51377,7 @@ msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -51399,7 +51393,7 @@ msgid_plural "caffex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -51440,7 +51434,7 @@ msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -51502,7 +51496,7 @@ msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -51523,7 +51517,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -51806,8 +51800,8 @@ msgstr[0] "" msgstr[1] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" @@ -51817,6 +51811,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -51859,6 +51865,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -51979,6 +51991,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -52015,24 +52033,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "" msgstr[1] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -52331,7 +52331,7 @@ msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -52397,7 +52397,7 @@ msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -52457,14 +52457,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -52547,7 +52547,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -52556,7 +52556,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -52568,7 +52568,7 @@ msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -52579,7 +52579,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -52592,7 +52592,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -52611,7 +52611,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -52625,7 +52625,7 @@ msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -53218,7 +53218,7 @@ msgid_plural "rock salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -53229,7 +53229,7 @@ msgid_plural "rhodonite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -53242,7 +53242,7 @@ msgid_plural "zincite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -53279,7 +53279,7 @@ msgid_plural "hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -53290,7 +53290,7 @@ msgid_plural "pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -53301,7 +53301,7 @@ msgid_plural "pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -53312,7 +53312,7 @@ msgid_plural "almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -53323,7 +53323,7 @@ msgid_plural "peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -53334,7 +53334,7 @@ msgid_plural "hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -53345,7 +53345,7 @@ msgid_plural "chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -53356,7 +53356,7 @@ msgid_plural "walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -53643,6 +53643,18 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -53654,6 +53666,19 @@ msgstr[1] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -54428,7 +54453,7 @@ msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -54439,7 +54464,7 @@ msgid_plural "smoldering embers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -54644,6 +54669,29 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -54846,7 +54894,7 @@ msgid_plural "superglue" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" @@ -55136,7 +55184,7 @@ msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -55278,7 +55326,7 @@ msgid_plural "concrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "" @@ -56120,7 +56168,7 @@ msgid_plural "clockworks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -56255,7 +56303,7 @@ msgid_plural "chamomile flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -56281,7 +56329,7 @@ msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -56316,7 +56364,7 @@ msgid_plural "mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "" @@ -56363,7 +56411,7 @@ msgid_plural "adobe mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -56376,7 +56424,7 @@ msgid_plural "tanbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -56398,7 +56446,7 @@ msgid_plural "willowbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -56825,7 +56873,7 @@ msgid_plural "raw tobacco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -57132,7 +57180,7 @@ msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -57155,7 +57203,7 @@ msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -57528,6 +57576,98 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -58220,7 +58360,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -58357,7 +58497,7 @@ msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58370,7 +58510,7 @@ msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58400,7 +58540,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58416,7 +58556,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58432,7 +58572,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58448,7 +58588,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58464,7 +58604,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58480,7 +58620,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58496,7 +58636,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58512,7 +58652,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58528,7 +58668,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58544,7 +58684,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58560,7 +58700,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58576,7 +58716,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58592,7 +58732,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58608,7 +58748,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58624,7 +58764,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58640,8 +58780,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58657,7 +58796,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58673,7 +58812,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58689,7 +58828,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58705,7 +58844,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58721,7 +58860,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58737,8 +58876,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58760,7 +58898,7 @@ msgid_plural "misc software" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -58771,7 +58909,7 @@ msgid_plural "hackPRO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "" @@ -58782,7 +58920,7 @@ msgid_plural "MediSoft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "" @@ -58793,7 +58931,7 @@ msgid_plural "MatheMAX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "" @@ -58804,7 +58942,7 @@ msgid_plural "infection data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "" @@ -58815,7 +58953,7 @@ msgid_plural "lab data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -58826,7 +58964,7 @@ msgid_plural "train data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -58837,7 +58975,7 @@ msgid_plural "neural data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -59127,22 +59265,34 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -59150,7 +59300,7 @@ msgid_plural "skinned %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -59389,7 +59539,7 @@ msgid_plural "trifacet remains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -59725,6 +59875,100 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -61444,7 +61688,7 @@ msgid_plural "headphones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -61524,7 +61768,7 @@ msgid_plural "spare parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -62122,7 +62366,7 @@ msgid_plural "bokken" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -62130,14 +62374,14 @@ msgid "" "edge, it's still quite capable of inflicting deadly wounds." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -62683,7 +62927,7 @@ msgid_plural "bionic claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -62904,7 +63148,7 @@ msgid_plural "qiang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -62949,7 +63193,7 @@ msgid_plural "naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -62957,7 +63201,7 @@ msgid "" "or by their wives in defense of the household." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -62965,7 +63209,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -62979,7 +63223,7 @@ msgid_plural "survivor naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -63110,7 +63354,7 @@ msgid_plural "ji" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -63170,6 +63414,20 @@ msgid "" "offers a good bit of slashing power." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -63177,7 +63435,7 @@ msgid_plural "jian" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -63261,14 +63519,14 @@ msgid_plural "tanto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -63282,14 +63540,14 @@ msgid_plural "nodachi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -63427,7 +63685,7 @@ msgid_plural "katana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -63495,7 +63753,7 @@ msgid_plural "wakizashi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -63560,7 +63818,7 @@ msgid_plural "tiger claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -63791,13 +64049,27 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -63813,7 +64085,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -63857,7 +64129,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -64147,7 +64419,7 @@ msgid_plural "scrap copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -64409,7 +64681,7 @@ msgid_plural "splintered wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -64626,17 +64898,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -65830,7 +66102,7 @@ msgid_plural "oars" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -65852,7 +66124,7 @@ msgid_plural "inflatable section" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -65863,7 +66135,7 @@ msgid_plural "inflatable airbag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -66719,7 +66991,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -66733,7 +67005,7 @@ msgid_plural "sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "" @@ -66744,7 +67016,7 @@ msgid_plural "wired sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -66766,7 +67038,7 @@ msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "" @@ -66777,7 +67049,7 @@ msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -66800,7 +67072,7 @@ msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -67024,12 +67296,19 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -67158,6 +67437,17 @@ msgstr[1] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -67593,7 +67883,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -67652,7 +67942,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -67944,7 +68234,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -67957,7 +68247,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -68079,7 +68369,7 @@ msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -68090,7 +68380,7 @@ msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -68281,7 +68571,7 @@ msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68294,7 +68584,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68307,7 +68597,7 @@ msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68320,7 +68610,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68333,7 +68623,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68346,7 +68636,7 @@ msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -68359,7 +68649,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68372,7 +68662,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68385,7 +68675,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68398,7 +68688,7 @@ msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68411,7 +68701,7 @@ msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68424,7 +68714,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -68533,7 +68823,7 @@ msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -68559,7 +68849,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -68572,7 +68862,7 @@ msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -68598,7 +68888,7 @@ msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -68631,7 +68921,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -68978,7 +69268,7 @@ msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -69692,7 +69982,7 @@ msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -71143,7 +71433,7 @@ msgid_plural "subzero talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -71357,7 +71647,7 @@ msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -71478,7 +71768,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71491,7 +71781,7 @@ msgid_plural "Beagle chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72298,6 +72588,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "Alleen wezens die in de natuur voorkomen zullen nog verschijnen." +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -72444,8 +72745,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -72784,6 +73085,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -73184,7 +73490,7 @@ msgid_plural "tiny fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -73195,7 +73501,7 @@ msgid_plural "small fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -73206,7 +73512,7 @@ msgid_plural "medium fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -73217,7 +73523,7 @@ msgid_plural "large fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -73228,7 +73534,7 @@ msgid_plural "huge fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -73364,7 +73670,7 @@ msgid_plural "whitefish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -73377,7 +73683,7 @@ msgid_plural "largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -73388,7 +73694,7 @@ msgid_plural "smallmouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -73401,7 +73707,7 @@ msgid_plural "striped bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -73414,7 +73720,7 @@ msgid_plural "white bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -73451,7 +73757,7 @@ msgid_plural "sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73462,7 +73768,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73485,7 +73791,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73496,7 +73802,7 @@ msgid_plural "green sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73507,7 +73813,7 @@ msgid_plural "longear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73518,7 +73824,7 @@ msgid_plural "redear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73529,7 +73835,7 @@ msgid_plural "rock bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -73542,7 +73848,7 @@ msgid_plural "calico bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -73577,7 +73883,7 @@ msgid_plural "channel catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -73588,7 +73894,7 @@ msgid_plural "white catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -73685,7 +73991,7 @@ msgid_plural "fallfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -73712,7 +74018,7 @@ msgid_plural "crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -73743,7 +74049,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -73756,7 +74062,7 @@ msgid_plural "giant crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -73769,7 +74075,7 @@ msgid_plural "colossal crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -74422,7 +74728,7 @@ msgid_plural "fused dragonflies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -74609,7 +74915,7 @@ msgstr[1] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -76253,7 +76559,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -76448,7 +76754,7 @@ msgid_plural "moose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -76607,7 +76913,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -76895,10 +77201,11 @@ msgstr[1] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -76909,6 +77216,17 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -79128,7 +79446,7 @@ msgid_plural "sawbones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -79143,7 +79461,7 @@ msgid_plural "doctor burns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -79321,7 +79639,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -79440,17 +79758,18 @@ msgstr[1] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -79884,7 +80203,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -79928,7 +80247,7 @@ msgid_plural "scissorlimbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -79942,7 +80261,7 @@ msgid_plural "hanging innards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -80423,7 +80742,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -82288,7 +82607,7 @@ msgid_plural "wisp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -82832,7 +83151,7 @@ msgid_plural "coelophysis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -82845,7 +83164,7 @@ msgid_plural "dilophosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -82858,7 +83177,7 @@ msgid_plural "ceratosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -82872,7 +83191,7 @@ msgid_plural "spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -82886,7 +83205,7 @@ msgid_plural "allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -82899,7 +83218,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -82913,20 +83232,33 @@ msgid_plural "siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -82939,7 +83271,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -82952,7 +83284,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -82965,7 +83297,7 @@ msgid_plural "compsognathus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -82978,7 +83310,7 @@ msgid_plural "gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -83004,7 +83336,7 @@ msgid_plural "nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -83017,7 +83349,7 @@ msgid_plural "deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -83056,7 +83388,7 @@ msgid_plural "amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -83069,7 +83401,7 @@ msgid_plural "apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -83082,7 +83414,7 @@ msgid_plural "brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -83095,7 +83427,7 @@ msgid_plural "diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -83106,7 +83438,7 @@ msgid_plural "camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -83119,7 +83451,7 @@ msgid_plural "brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -83132,7 +83464,7 @@ msgid_plural "alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -83145,7 +83477,7 @@ msgid_plural "scutellosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -83158,7 +83490,7 @@ msgid_plural "stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -83170,7 +83502,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83183,7 +83515,7 @@ msgid_plural "ankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83196,7 +83528,7 @@ msgid_plural "nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -83208,7 +83540,7 @@ msgid_plural "edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -83221,7 +83553,7 @@ msgid_plural "camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -83234,7 +83566,7 @@ msgid_plural "parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -83245,7 +83577,7 @@ msgid_plural "maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -83258,7 +83590,7 @@ msgid_plural "corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -83271,7 +83603,7 @@ msgid_plural "edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -83282,7 +83614,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -83295,7 +83627,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -83308,7 +83640,7 @@ msgid_plural "pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -83321,7 +83653,7 @@ msgid_plural "kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -83335,7 +83667,7 @@ msgid_plural "torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -83348,7 +83680,7 @@ msgid_plural "triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -83361,7 +83693,7 @@ msgid_plural "dimorphodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -83374,7 +83706,7 @@ msgid_plural "pteranodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -83387,7 +83719,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -83400,7 +83732,7 @@ msgid_plural "mosasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -83413,7 +83745,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -83426,7 +83758,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -83439,7 +83771,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -83452,7 +83784,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -83465,7 +83797,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -83478,7 +83810,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -83491,7 +83823,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -83594,6 +83926,20 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -84107,20 +84453,20 @@ msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" @@ -84180,7 +84526,6 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -84201,25 +84546,88 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" +#. ~ Description for juvenile allosaurus #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -84442,6 +84850,19 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -84552,7 +84973,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -85012,6 +85433,7 @@ msgstr[1] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -85061,6 +85483,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "" msgstr[1] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -85465,6 +85893,19 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -85497,7 +85938,7 @@ msgid_plural "Rage Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -85510,7 +85951,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -85524,7 +85965,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -85582,7 +86023,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -85645,7 +86086,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -85889,12 +86330,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" msgstr[1] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85903,66 +86357,67 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85970,12 +86425,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85984,12 +86439,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85998,16 +86453,16 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -86037,7 +86492,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -86050,7 +86505,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86063,7 +86519,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -86076,20 +86532,26 @@ msgid_plural "skeletal siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86102,7 +86564,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -86128,7 +86590,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -86140,7 +86602,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86153,8 +86615,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86173,7 +86635,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -86187,7 +86649,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -86200,7 +86662,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -86213,7 +86675,7 @@ msgid_plural "armored diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -86226,7 +86688,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -86239,7 +86701,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -86252,7 +86714,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -86265,7 +86727,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -86278,7 +86740,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -86292,7 +86754,7 @@ msgid_plural "Bone Fortress" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -86306,7 +86768,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86319,7 +86781,7 @@ msgid_plural "armored edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86332,7 +86794,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -86345,7 +86807,7 @@ msgid_plural "armored maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -86358,7 +86820,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -86371,7 +86833,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -86384,7 +86846,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -86397,7 +86859,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -86410,7 +86872,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -86423,7 +86885,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -86436,7 +86898,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -86449,7 +86911,7 @@ msgid_plural "armored torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -86462,7 +86924,7 @@ msgid_plural "armored triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -86475,7 +86937,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -86489,7 +86951,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -86503,7 +86965,7 @@ msgid_plural "Goliath Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -86516,7 +86978,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -86529,7 +86991,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -86570,7 +87032,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -86586,7 +87048,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -86899,7 +87361,7 @@ msgid_plural "forge hounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -87205,7 +87667,7 @@ msgid_plural "hunllef rams" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -87338,6 +87800,22 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -87615,7 +88093,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -87897,7 +88375,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -92969,7 +93447,7 @@ msgstr[1] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -93013,7 +93491,7 @@ msgstr "" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -93921,7 +94399,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -94509,17 +94987,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -94528,7 +95006,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -94751,7 +95229,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -94765,6 +95242,14 @@ msgid_plural "military flight helmets (on)" msgstr[0] "" msgstr[1] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -95115,7 +95600,7 @@ msgid_plural "bagpipes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -95742,7 +96227,7 @@ msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -95817,7 +96302,7 @@ msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -96559,7 +97044,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -98344,7 +98829,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -98352,7 +98837,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -98437,7 +98922,7 @@ msgid_plural "dao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -98487,7 +98972,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -98495,7 +98980,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -98527,7 +99012,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -98616,14 +99101,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -98637,7 +99122,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -98797,7 +99282,7 @@ msgid_plural "synthetic fabric" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -99538,7 +100023,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -101855,8 +102340,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -102537,6 +103022,39 @@ msgstr[1] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -103234,7 +103752,7 @@ msgid_plural "shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -103245,7 +103763,7 @@ msgid_plural "electric shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -103289,6 +103807,32 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -103834,7 +104378,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -103848,7 +104392,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -104325,8 +104869,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -104334,8 +104878,8 @@ msgid_plural "%s (happy)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -104343,8 +104887,8 @@ msgid_plural "%s (focus)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -104352,8 +104896,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -104361,7 +104905,7 @@ msgid_plural "%s (wake up)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -104802,7 +105346,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -105033,13 +105577,13 @@ msgid_plural "loose caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -105052,13 +105596,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -105522,6 +106066,21 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -105802,13 +106361,28 @@ msgid_plural "pliers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -105862,6 +106436,33 @@ msgid "" "to have the right tools for more precise work." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -105987,18 +106588,46 @@ msgid "" msgstr "" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" msgstr[0] "" msgstr[1] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -106295,36 +106924,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -106355,6 +106954,12 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -106577,8 +107182,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -107019,7 +107624,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -107441,7 +108046,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -107488,7 +108093,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -107506,7 +108111,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -108511,6 +109116,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -108562,6 +109176,30 @@ msgstr[1] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -109466,7 +110104,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -109943,6 +110581,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -110813,15 +111455,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" +msgid "Intradermal Alloy - Arms" msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -110837,37 +111478,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" +msgid "Intradermal Alloy - Legs" msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -110878,8 +111518,8 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -116394,7 +117034,7 @@ msgstr "" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -121140,8 +121780,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "" @@ -121157,9 +121796,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "" @@ -121835,7 +122473,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "" @@ -124110,7 +124748,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "" @@ -124232,6 +124871,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -126750,14 +127403,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -126896,16 +127549,16 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -127876,14 +128529,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -130144,6 +130797,19 @@ msgid_plural "acid dart guns" msgstr[0] "" msgstr[1] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -132659,8 +133325,9 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -132672,10 +133339,10 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -133177,17 +133844,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -135517,6 +136188,11 @@ msgid "" "the punishment of combat." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -136356,6 +137032,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "" @@ -136524,6 +137207,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -137636,6 +138323,10 @@ msgstr "" msgid "Move cursor down" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -137836,6 +138527,20 @@ msgstr "Ja" msgid "No" msgstr "Nee" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "Annuleer" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -139222,13 +139927,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -139290,13 +139995,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -139905,13 +140610,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -143346,6 +144051,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -143768,8 +144483,8 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -143793,7 +144508,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -143807,7 +144523,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -143820,9 +144536,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "" @@ -143982,7 +144727,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -143997,7 +144742,8 @@ msgstr "" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -144027,17 +144773,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -144048,10 +144793,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144062,9 +144821,10 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -144079,33 +144839,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" +"\n" +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -144196,6 +144977,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "" @@ -144253,7 +145048,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -144267,8 +145062,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144282,6 +145078,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -144333,6 +145130,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "" @@ -144418,6 +145228,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "" @@ -144564,6 +145389,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "" @@ -144900,16 +145740,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -145012,7 +145853,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -145119,33 +145960,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -145266,7 +146107,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -145464,6 +146305,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -145524,10 +146380,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -145628,10 +146485,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -146275,7 +147133,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -146285,11 +147158,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146383,6 +147257,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -146395,21 +147283,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146487,6 +147376,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -148119,7 +149022,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -148314,7 +149217,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -148519,7 +149422,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -148573,8 +149476,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -148734,7 +149636,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -148748,7 +149650,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -148787,7 +149689,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -148822,7 +149724,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -148853,7 +149755,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -148895,7 +149797,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -148937,16 +149839,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -148993,7 +149929,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -149043,7 +149979,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -149085,7 +150021,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -149134,7 +150070,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -149161,7 +150097,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -149196,7 +150132,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -150062,7 +150998,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -150097,7 +151033,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -150134,7 +151070,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -150169,7 +151105,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -150197,7 +151133,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -150249,7 +151185,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -150280,7 +151216,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -150309,7 +151245,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -150339,7 +151275,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -150608,8 +151544,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -151010,7 +151945,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -151051,7 +151986,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -151078,7 +152013,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -151160,7 +152095,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -151197,7 +152132,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -151241,7 +152176,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -151290,7 +152225,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -151332,7 +152267,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -151373,7 +152308,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -151408,7 +152343,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -151453,7 +152388,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -151464,6 +152399,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -151610,7 +152603,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -151665,7 +152658,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -151704,7 +152697,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -151741,11 +152734,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -151771,15 +152816,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -151836,7 +152877,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -151886,7 +152927,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -151931,7 +152972,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -151972,11 +153013,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -152019,7 +153061,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -152067,7 +153109,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -152111,7 +153153,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -153770,7 +154812,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -153789,7 +154831,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -153816,7 +154858,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -153850,7 +154892,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -153897,7 +154939,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -154673,6 +155715,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -155365,13 +156431,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -156101,6 +157167,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -157009,7 +158097,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -157020,6 +158107,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -157151,7 +158245,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -157395,8 +158489,8 @@ msgstr "" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" #: lang/json/mutation_from_json.py @@ -160373,8 +161467,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -160614,7 +161708,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160623,7 +161717,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160632,7 +161726,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160641,7 +161735,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160659,7 +161753,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160668,7 +161762,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160677,7 +161771,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160686,7 +161780,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160704,7 +161798,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160713,7 +161807,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160723,7 +161817,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160733,7 +161827,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160763,7 +161857,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160772,7 +161866,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160781,7 +161875,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160790,7 +161884,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -161288,7 +162382,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -161407,7 +162501,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -165916,6 +167010,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -165951,6 +167046,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -166509,6 +167612,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -166644,6 +167755,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -166812,6 +167927,10 @@ msgstr "" msgid "Guard" msgstr "" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "" @@ -166980,6 +168099,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -167915,6 +169038,10 @@ msgstr "" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -168604,6 +169731,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -168612,24 +169743,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -168996,6 +170143,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -170452,6 +171603,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -170562,6 +171767,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -170598,7 +171831,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -170611,7 +171844,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -171204,6 +172437,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -171460,6 +172719,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -171586,6 +172899,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -171634,6 +172975,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -171656,6 +173025,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -176210,6 +177631,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -180560,6 +182039,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -185515,6 +187016,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -185559,6 +187582,63 @@ msgstr "" msgid "Farm processing shack" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "" @@ -185614,6 +187694,524 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "" @@ -185818,6 +188416,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -186512,6 +189486,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -186777,60 +190390,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -187665,7 +191587,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187677,12 +191603,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187690,11 +191626,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187857,6 +191803,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -189994,6 +193996,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -190306,7 +194334,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -191044,8 +195072,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -191815,15 +195843,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -196870,6 +200899,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -196878,7 +201173,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -196995,7 +201290,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -201580,7 +205875,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -201639,7 +205934,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -201652,7 +205947,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -201670,17 +205965,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -201759,7 +206054,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -201869,8 +206164,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -202278,7 +206573,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -202288,8 +206583,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -203711,6 +208006,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -206007,7 +210364,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "" @@ -206668,6 +211025,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "Ja." + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -206686,6 +211155,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -207853,6 +212337,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -210179,6 +214741,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -210288,6 +214857,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -210311,6 +214898,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -211821,7 +216415,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -211991,19 +216585,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -212076,95 +216670,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" +msgid "\"Wanna play with me?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" +msgid "\"Sing with me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" +msgid "\"Please take me with you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" +msgid "\"May I have a cookie?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -212172,31 +216770,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" +msgid "\"Hey kids. Want some candy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -212212,19 +216810,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -213291,6 +217885,10 @@ msgstr "" msgid "Gun Store" msgstr "" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "" @@ -214724,6 +219322,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -221944,6 +226546,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -222590,6 +227970,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -222659,6 +228043,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -225091,10 +230486,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -228887,10 +234278,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -229219,6 +234606,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -229510,6 +235006,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -229600,6 +235105,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -232371,6 +237928,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -232556,20 +238130,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -233177,20 +238737,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "" @@ -233226,54 +238772,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -233357,20 +238893,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -233489,34 +239011,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -233532,45 +239026,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -233654,17 +239148,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -233706,7 +239200,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -233719,6 +239213,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -233865,20 +239363,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -233983,20 +239467,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -234097,20 +239567,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -234435,41 +239891,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -234670,20 +240122,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -235444,20 +240882,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -235556,20 +240980,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -235612,20 +241022,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -237866,6 +243262,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "" @@ -241255,24 +246663,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -241280,32 +246688,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -241313,35 +246721,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -241349,33 +246752,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -241383,10 +246786,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -241394,10 +246797,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -241405,40 +246808,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -241446,21 +246847,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" +msgid "reinforced triple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" -msgstr "" - -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -241468,44 +246865,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -241513,14 +246901,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -241538,12 +246922,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -241551,21 +246930,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" +msgid "plastic window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Plastic window" -msgstr "" - -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -241573,10 +246948,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -241584,7 +246959,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -241593,10 +246968,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -241605,21 +246980,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -241627,10 +246998,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -241639,10 +247010,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -241650,7 +247021,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -241659,26 +247030,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -241692,11 +247063,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -244199,18 +249566,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "ondoorzichtige deur" @@ -244573,6 +250047,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -245050,6 +250575,15 @@ msgstr "" msgid "wooden aisle" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -245183,6 +250717,10 @@ msgstr "opvouwbare houten doos" msgid "wood table" msgstr "houten tafel" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -245251,6 +250789,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -245357,6 +250899,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -246540,8 +252088,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -249254,6 +254802,18 @@ msgstr "Eigenschappen" msgid "Coverage:" msgstr "Dekking:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "" @@ -249345,8 +254905,9 @@ msgstr "" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -249358,6 +254919,12 @@ msgstr "" msgid "Storage (%s)" msgstr "Opslag (%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "" @@ -253543,11 +259110,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "Annuleer" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "" @@ -253858,6 +259420,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -256024,10 +261594,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "koken" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -256568,6 +262134,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -256994,6 +262568,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -257082,6 +262661,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -257835,7 +263419,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -257857,15 +263441,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -261201,6 +266776,10 @@ msgstr "" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -261485,6 +267064,15 @@ msgstr "" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "" @@ -263797,10 +269385,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "Ja." - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "Ja, en sla het spel op voordat ik slaap." @@ -263941,6 +269525,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -264300,10 +269892,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -264830,13 +270418,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -268141,6 +273722,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -271144,13 +276740,15 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" +msgid "Set the timer to how many seconds (0 to cancel)?" msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -271887,8 +277485,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -272110,38 +277707,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -273366,87 +278931,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -276264,7 +281772,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -281186,6 +286706,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -282055,21 +287580,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -282333,11 +287843,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -284009,11 +289528,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -284788,6 +290302,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -284795,14 +290318,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -287120,20 +292648,6 @@ msgstr "" msgid "# Unexplored" msgstr "" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -287474,6 +292988,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -287522,6 +293041,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -289913,6 +295436,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -294225,6 +299758,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "Maandag" diff --git a/lang/po/pl.po b/lang/po/pl.po index 0e49c32ffb1e3..c2f3de174ab3f 100644 --- a/lang/po/pl.po +++ b/lang/po/pl.po @@ -13,6 +13,7 @@ # Chris Bittner , 2021 # Salty Panda , 2021 # Millennium Falcon , 2021 +# Remigiusz Gedowski, 2021 # Aleksander Sienkiewicz , 2021 # Faalagorn, 2021 # @@ -20,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Faalagorn, 2021\n" "Language-Team: Polish (https://www.transifex.com/cataclysm-dda-translators/teams/2217/pl/)\n" @@ -38,7 +39,7 @@ msgstr[1] "baterie" msgstr[2] "baterii" msgstr[3] "baterii" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -55,7 +56,7 @@ msgstr[1] "butanu" msgstr[2] "butanu" msgstr[3] "butanu" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Palny płyn powszechnie używany w zapalniczkach." @@ -68,7 +69,7 @@ msgstr[1] "farby w aerozolu" msgstr[2] "farb w aerozolu" msgstr[3] "farby w aerozolu" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -85,7 +86,7 @@ msgstr[1] "tusze permanentne" msgstr[2] "tuszy permanentnych" msgstr[3] "tuszu permanentnego" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -102,7 +103,7 @@ msgstr[1] "woski świecowe" msgstr[2] "wosków świecowych" msgstr[3] "wosku świecowego" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "Łatwopalna stała substancja używana do tworzenia świec." @@ -115,7 +116,7 @@ msgstr[1] "flary pirotechniczne" msgstr[2] "flar pirotechnicznych" msgstr[3] "flary pirotechnicznej" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "Chemikalia pirotechniczne używane w flarach." @@ -145,7 +146,7 @@ msgstr[1] "tlenu" msgstr[2] "tlenu" msgstr[3] "tlenu" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Skompresowany tlen medyczny." @@ -158,7 +159,7 @@ msgstr[1] "folie aluminiowe" msgstr[2] "folii aluminiowych" msgstr[3] "folii aluminiowej" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -188,7 +189,7 @@ msgstr[1] "nici" msgstr[2] "nici" msgstr[3] "nici" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -230,7 +231,7 @@ msgstr[1] "przędze" msgstr[2] "przędz" msgstr[3] "przędzy" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "" @@ -257,7 +258,7 @@ msgstr[1] "taśmy klejące" msgstr[2] "taśm klejących" msgstr[3] "taśmy klejącej" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -294,10 +295,10 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "raw copper wire" msgid_plural "raw copper wires" -msgstr[0] "goły medziany drut" -msgstr[1] "gołe medziane druty" -msgstr[2] "gołych medzianych drutów" -msgstr[3] "gołego medzianego drutu" +msgstr[0] "goły miedziany drut" +msgstr[1] "gołe miedziane druty" +msgstr[2] "gołych miedzianych drutów" +msgstr[3] "gołego miedzianego drutu" #. ~ Description for raw copper wire #: lang/json/AMMO_from_json.py @@ -336,8 +337,8 @@ msgstr[1] "zawiesiny plutonu" msgstr[2] "zawiesin plutonu" msgstr[3] "zawiesiny plutonu" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -417,7 +418,7 @@ msgstr[1] "łożyska kulkowe" msgstr[2] "łożysk kulkowych" msgstr[3] "łożyska kulkowego" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "Pudło łożysk kulkowych, użyteczne jako amunicja do procy." @@ -475,7 +476,7 @@ msgstr[1] "120 mm kumulacyjne" msgstr[2] "120 mm kumulacyjnych" msgstr[3] "120 mm kumulacyjnego" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -509,7 +510,7 @@ msgstr[1] "zmieszane prochy bezdymne" msgstr[2] "zmieszanych prochów bezdymnych" msgstr[3] "zmieszanego prochu bezdymnego" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -529,7 +530,7 @@ msgstr[1] "bezdymne prochy do strzelb" msgstr[2] "bezdymnych prochów do strzelb" msgstr[3] "bezdymnego prochu do strzelb" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "Proch strzelniczy używany w pociskach przeznaczonych do strzelb." @@ -542,7 +543,7 @@ msgstr[1] "bezdymne prochy do pistoletów" msgstr[2] "bezdymnych prochów do pistoletów" msgstr[3] "bezdymnego prochu do pistoletów" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "Proch strzelniczy używany w pociskach przeznaczonych do pistoletów." @@ -555,7 +556,7 @@ msgstr[1] "bezdymne prochy do broni typu magnum" msgstr[2] "bezdymnych prochów do broni typu magnum" msgstr[3] "bezdymnego prochu do broni typu magnum" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -570,7 +571,7 @@ msgstr[1] "bezdymne prochy do karabinu" msgstr[2] "bezdymnych prochów do karabinu" msgstr[3] "bezdymnego prochu do karabinu" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "Proch strzelniczy używany w pociskach przeznaczonych do karabinów." @@ -583,7 +584,7 @@ msgstr[1] "bezdymne prochy do karabinu kalibru overbore" msgstr[2] "bezdymnych prochów do karabinu kalibru overbore" msgstr[3] "bezdymnego prochu do karabinu kalibru overbore" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -598,7 +599,7 @@ msgstr[1] "pędniki artyleryjskie" msgstr[2] "pędników artyleryjskich" msgstr[3] "pędniku artyleryjskiego" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -613,7 +614,7 @@ msgstr[1] "proszki utleniacza" msgstr[2] "proszków utleniacza" msgstr[3] "proszku utleniacza" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Lotny sproszkowany utleniacz chemiczny." @@ -626,7 +627,7 @@ msgstr[1] "ługi" msgstr[2] "ługów" msgstr[3] "ługu" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Sproszkowana soda kaustyczna." @@ -744,7 +745,7 @@ msgstr[1] "miedzi" msgstr[2] "miedzi" msgstr[3] "miedzi" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -761,7 +762,7 @@ msgstr[1] "taśmy medyczne" msgstr[2] "taśm medycznych" msgstr[3] "taśmy medycznej" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Zwój taśmy medycznej, podobnej nieco do taśmy montażowej." @@ -775,7 +776,7 @@ msgstr[2] "amunicji zastępczej" msgstr[3] "amunicji zastępczej" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "JEŻELI TO WIDZISZ TO JEST BŁĄD." @@ -788,7 +789,7 @@ msgstr[1] "węgle drzewne" msgstr[2] "węgli drzewnych" msgstr[3] "węgla drzewnego" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -797,7 +798,7 @@ msgid "" msgstr "" "Łatwopalny materiał, wytworzony przez powolne spalanie drewna. Używany w " "przepisach wymagających czystego, gorącego płomienia. Może być także używany" -" w filtrach by usunąć zanieczyszczenia z powietrza i wody." +" w filtrach, by usunąć zanieczyszczenia z powietrza i wody." #: lang/json/AMMO_from_json.py msgid "calcium carbide premix" @@ -807,7 +808,7 @@ msgstr[1] "przedmieszki węglika wapnia" msgstr[2] "przedmieszek węglika wapnia" msgstr[3] "przedmieszki węglika wapnia" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -841,7 +842,7 @@ msgstr[1] "albuterole" msgstr[2] "albuteroli" msgstr[3] "albuterolu" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -955,7 +956,7 @@ msgstr[1] "płyny nikotynowe" msgstr[2] "płynów nikotynowych" msgstr[3] "płynu nikotynowego" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -972,7 +973,7 @@ msgstr[1] "przynęty na ryby" msgstr[2] "przynęt na ryby" msgstr[3] "przynęty na ryby" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Przynęta używana w pułapkach do zwabiania ryb." @@ -1041,14 +1042,14 @@ msgstr[1] "niewypalone węgle drzewne" msgstr[2] "niewypalonych węgli drzewnych" msgstr[3] "niewypalonego węgla drzewnego" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " "fuel in a charcoal kiln." msgstr "" "Skutek przerwanego procesu wypalania węgla drzewnego. Bezużyteczny, chyba że" -" jako paliwo do pieca węglowego." +" jako paliwo do pieca do węgla drzewnego." #: lang/json/AMMO_from_json.py msgid "unfinished calcium carbide" @@ -1058,7 +1059,7 @@ msgstr[1] "niedokończone karbidy" msgstr[2] "niedokończonych karbidów" msgstr[3] "niedokończonego karbidu" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -1088,7 +1089,7 @@ msgstr[1] "nitroksy" msgstr[2] "nitroksów" msgstr[3] "nitroksa" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "Mieszanka tlenu i azotu w proporcjach odpowiednich do nurkowania." @@ -1101,7 +1102,7 @@ msgstr[1] "środki gaśnicze" msgstr[2] "środków gaśniczych" msgstr[3] "środka gaśniczego" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Sucha mieszanka chemiczna efektywna w gaszeniu pożarów." @@ -1114,7 +1115,7 @@ msgstr[1] "rozpałki" msgstr[2] "rozpałek" msgstr[3] "rozpałki" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "Palny materiał, drobno rozdrobniony, dla łatwego rozpalenia." @@ -1153,7 +1154,7 @@ msgstr[1] "brązy" msgstr[2] "brązów" msgstr[3] "brązu" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "Spore kawałki brązu, przydatne do tworzenia oldskulowych przedmiotów." @@ -1166,7 +1167,7 @@ msgstr[1] "płyny światła chemicznego" msgstr[2] "płynów światła chemicznego" msgstr[3] "płynu światła chemicznego" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -1182,7 +1183,7 @@ msgstr[1] "grafity" msgstr[2] "grafitów" msgstr[3] "grafitu" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1201,7 +1202,7 @@ msgstr[1] "czarne tusze do długopisu" msgstr[2] "czarnych tuszów do długopisu" msgstr[3] "czarnego tuszu do długopisu" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1218,7 +1219,7 @@ msgstr[1] "niebieskie tusze do długopisu" msgstr[2] "niebieskich tuszów do długopisu" msgstr[3] "niebieskiego tuszu do długopisu" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1236,7 +1237,7 @@ msgstr[1] "zielone tusze do długopisu" msgstr[2] "zielonych tuszów do długopisu" msgstr[3] "zielonego tuszu do długopisu" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1253,7 +1254,7 @@ msgstr[1] "czerwone tusze do długopisu" msgstr[2] "czerwonych tuszów do długopisu" msgstr[3] "czerwonego tuszu do długopisu" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1289,7 +1290,7 @@ msgstr[1] "siarki" msgstr[2] "siarki" msgstr[3] "siarki" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1308,7 +1309,7 @@ msgid_plural "chunks of sulfur" msgstr[0] "kawałek siarki" msgstr[1] "kawałki siarki" msgstr[2] "kawałków siarki" -msgstr[3] "kawałku siarki" +msgstr[3] "kawałka siarki" #. ~ Description for chunk of sulfur #: lang/json/AMMO_from_json.py @@ -1323,7 +1324,7 @@ msgstr[1] "cementy" msgstr[2] "cementów" msgstr[3] "cementu" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1342,7 +1343,7 @@ msgstr[1] "żwiry" msgstr[2] "żwirów" msgstr[3] "żwiru" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "Garść żwiru, mniejszego niż kamyki, ale większego niż piasek." @@ -1355,7 +1356,7 @@ msgstr[1] "wapienie" msgstr[2] "wapienia" msgstr[3] "wapienia" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1373,7 +1374,7 @@ msgstr[1] "wapna palone" msgstr[2] "wapieni palonych" msgstr[3] "wapna palonego" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1395,7 +1396,7 @@ msgstr[1] "piaski" msgstr[2] "piasków" msgstr[3] "piasku" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1412,7 +1413,7 @@ msgstr[1] "gleby" msgstr[2] "gleb" msgstr[3] "gleby" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1429,7 +1430,7 @@ msgstr[1] "sproszkowane aluminium" msgstr[2] "sproszkowanych aluminium" msgstr[3] "sproszkowanego aluminium" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1451,7 +1452,7 @@ msgstr[1] "sproszkowane cynki" msgstr[2] "sproszkowanych cynków" msgstr[3] "sproszkowanego cynku" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1471,7 +1472,7 @@ msgstr[1] "tlenki cynku" msgstr[2] "tlenków cynku" msgstr[3] "tlenku cynku" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1488,7 +1489,7 @@ msgstr[1] "dwutlenki manganu" msgstr[2] "dwutlenków manganu" msgstr[3] "dwutlenku manganu" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1507,7 +1508,7 @@ msgstr[1] "chlorki potasu" msgstr[2] "chlorków potasu" msgstr[3] "chlorku potasu" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1528,7 +1529,7 @@ msgstr[1] "wodorotlenki potasu" msgstr[2] "wodorotlenków potasu" msgstr[3] "wodorotlenku potasu" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1548,7 +1549,7 @@ msgstr[1] "acetony" msgstr[2] "acetonów" msgstr[3] "acetonu" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1567,7 +1568,7 @@ msgstr[1] "tlenki chromu" msgstr[2] "tlenków chromu" msgstr[3] "tlenku chromu" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1590,7 +1591,7 @@ msgstr[1] "acetylenki wapnia" msgstr[2] "acetylenków wapnia" msgstr[3] "acetylenku wapnia" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1613,7 +1614,7 @@ msgstr[1] "urotropiny" msgstr[2] "urotropin" msgstr[3] "urotropiny" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1636,7 +1637,7 @@ msgstr[1] "nadtlenki wodoru (skoncentrowane)" msgstr[2] "nadtlenków wodoru (skoncentrowanych)" msgstr[3] "nadtlenku wodoru (skoncentrowanego)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1657,7 +1658,7 @@ msgstr[1] "azotany amonu" msgstr[2] "azotanów amonu" msgstr[3] "azotanu amonu" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1678,7 +1679,7 @@ msgstr[1] "granulki azotanu amonu" msgstr[2] "granulek azotanu amonu" msgstr[3] "granulki azotanu amonu" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1699,7 +1700,7 @@ msgstr[1] "azotany potasu" msgstr[2] "azotanów potasu" msgstr[3] "azotanu potasu" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1717,7 +1718,7 @@ msgstr[1] "saletry potasowe" msgstr[2] "saletr potasowych" msgstr[3] "saletry potasowej" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1734,7 +1735,7 @@ msgstr[1] "siarczany glinu" msgstr[2] "siarczanów glinu" msgstr[3] "siarczanu glinu" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1758,7 +1759,7 @@ msgstr[1] "kwasy octowe" msgstr[2] "kwasów octowych" msgstr[3] "kwasu octowego" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1779,7 +1780,7 @@ msgstr[1] "formaliny" msgstr[2] "formalin" msgstr[3] "formaliny" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1800,7 +1801,7 @@ msgstr[1] "termity" msgstr[2] "termitów" msgstr[3] "termitu" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1822,7 +1823,7 @@ msgstr[1] "ANFO" msgstr[2] "ANFO" msgstr[3] "ANFO" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1844,7 +1845,7 @@ msgstr[1] "czarne prochy strzelnicze" msgstr[2] "czarnych prochów strzelniczych" msgstr[3] "czarnego prochu strzelniczego" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1865,7 +1866,7 @@ msgstr[1] "prochy z główek zapałek" msgstr[2] "prochów z główek zapałek" msgstr[3] "prochu z główek zapałek" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1884,7 +1885,7 @@ msgstr[1] "RDX-y" msgstr[2] "RDX-ów" msgstr[3] "RDX-u" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1904,7 +1905,7 @@ msgstr[1] "kompozyty b" msgstr[2] "kompozytów b" msgstr[3] "kompozytu b" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1923,7 +1924,7 @@ msgstr[1] "HMTD" msgstr[2] "HMTD" msgstr[3] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1943,7 +1944,7 @@ msgstr[1] "APEX" msgstr[2] "APEX" msgstr[3] "APEX" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1963,7 +1964,7 @@ msgstr[1] "prowizoryczne paliwa rakietowe" msgstr[2] "prowizorycznych paliw rakietowych" msgstr[3] "prowizorycznego paliwa rakietowego" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1980,7 +1981,7 @@ msgstr[1] "detergenty" msgstr[2] "detergentów" msgstr[3] "detergentu" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "Popularny przed Kataklizmem proszek do prania." @@ -1993,7 +1994,7 @@ msgstr[1] "płatki mydlane" msgstr[2] "płatków mydlanych" msgstr[3] "płatku mydlanego" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "Mydło pocięte na płatki - nadaje się do użytku w zmywarce." @@ -2071,7 +2072,7 @@ msgstr[1] "skoncentrowane jady" msgstr[2] "skoncentrowanych jadów" msgstr[3] "skoncentrowanego jadu" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -2092,7 +2093,7 @@ msgstr[1] "skoncentrowane środki paraliżujące" msgstr[2] "skoncentrowanych środków paraliżujących" msgstr[3] "skoncentrowanego środka paraliżującego" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -2114,7 +2115,7 @@ msgstr[1] "rokuronium" msgstr[2] "rokuronium" msgstr[3] "rokuronium" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -2129,11 +2130,11 @@ msgstr "" msgid "red phosphorous" msgid_plural "red phosphorous" msgstr[0] "czerwony fosfor" -msgstr[1] "czerwony fosfor" -msgstr[2] "czerwony fosfor" -msgstr[3] "czerwony fosfor" +msgstr[1] "czerwone fosfory" +msgstr[2] "czerwonych fosforów" +msgstr[3] "czerwonego fosforu" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -2146,11 +2147,11 @@ msgstr "" msgid "iodine crystal" msgid_plural "iodine crystal" msgstr[0] "kryształ jodu" -msgstr[1] "kryształ jodu" -msgstr[2] "kryształ jodu" -msgstr[3] "kryształ jodu" +msgstr[1] "kryształy jodu" +msgstr[2] "kryształów jodu" +msgstr[3] "kryształu jodu" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -2167,7 +2168,7 @@ msgstr[1] "etanole" msgstr[2] "etanoli" msgstr[3] "etanolu" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -2204,7 +2205,7 @@ msgstr[1] "metanole" msgstr[2] "metanoli" msgstr[3] "metanolu" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -2222,7 +2223,7 @@ msgstr[1] "oleju napędowego" msgstr[2] "oleju napędowego" msgstr[3] "oleju napędowego" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -2238,7 +2239,7 @@ msgstr[1] "paliwa JP-8" msgstr[2] "paliwa JP-8" msgstr[3] "paliwa JP-8" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -2256,7 +2257,7 @@ msgstr[1] "paliwa avgas" msgstr[2] "paliw avgas" msgstr[3] "paliwa avgas" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -2271,7 +2272,7 @@ msgstr[1] "biodiesle" msgstr[2] "biodiesli" msgstr[3] "biodiesela" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -2290,7 +2291,7 @@ msgstr[1] "benzyny" msgstr[2] "benzyny" msgstr[3] "benzyny" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -2307,7 +2308,7 @@ msgstr[1] "oliwy do lamp" msgstr[2] "oliwy do lamp" msgstr[3] "oliwy do lamp" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "Lekkie, płonące czystym płomieniem paliwo do lamp." @@ -2320,7 +2321,7 @@ msgstr[1] "oleju silnikowego" msgstr[2] "oleju silnikowego" msgstr[3] "oleju silnikowego" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "Olej przeznaczony do silników samochodowych." @@ -2333,7 +2334,7 @@ msgstr[1] "napalmy" msgstr[2] "napalmów" msgstr[3] "napalmu" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2352,7 +2353,7 @@ msgstr[1] "benzyny konsystencji żelu" msgstr[2] "benzyn konsystencji żelu" msgstr[3] "benzyny konsystencji żelu" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2371,7 +2372,7 @@ msgstr[1] "paliwa do miotacza ognia" msgstr[2] "paliw do miotacza ognia" msgstr[3] "paliwa do miotacza ognia" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2388,7 +2389,7 @@ msgid_plural "papers" msgstr[0] "papier" msgstr[1] "papiery" msgstr[2] "papierów" -msgstr[3] "papier" +msgstr[3] "papieru" #. ~ Description for paper #: lang/json/AMMO_from_json.py @@ -2422,7 +2423,7 @@ msgstr[1] "odłamki" msgstr[2] "odłamków" msgstr[3] "odłamka" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "Pogięty kawałek ostrego metalu." @@ -2491,7 +2492,7 @@ msgstr[1] "10 mm Auto FMJ" msgstr[2] "10 mm Auto FMJ" msgstr[3] "10 mm Auto FMJ" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2526,7 +2527,7 @@ msgstr[1] "12 mm H&K" msgstr[2] "12 mm H&K" msgstr[3] "12 mm H&K" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2581,7 +2582,7 @@ msgstr[1] "20 x 66 mm śrutowe, samoróbki" msgstr[2] "20 x 66 mm śrutowych, samoróbek" msgstr[3] "20 x 66 mm śrutowego, samoróbki" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2617,7 +2618,7 @@ msgstr[1] "20 x 66 mm wybuchowe" msgstr[2] "20 x 66 mm wybuchowych" msgstr[3] "20 x 66 mm wybuchowego" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2674,7 +2675,7 @@ msgstr[1] "20 x 66 mm odłamkowe" msgstr[2] "20 x 66 mm odłamkowych" msgstr[3] "20 x 66 mm odłamkowego" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2693,7 +2694,7 @@ msgstr[1] "20 x 66 mm zapalające" msgstr[2] "20 x 66 mm zapalających" msgstr[3] "20 x 66 mm zapalającego" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2712,7 +2713,7 @@ msgstr[1] "20 x 66 mm śrutowe" msgstr[2] "20 x 66 mm śrutowych" msgstr[3] "20 x 66 mm śrutowego" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2750,7 +2751,7 @@ msgstr[1] ".22 CB" msgstr[2] ".22 CB" msgstr[3] ".22 CB" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2770,7 +2771,7 @@ msgstr[1] ".22 FMJ" msgstr[2] ".22 FMJ" msgstr[3] ".22 FMJ" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2789,7 +2790,7 @@ msgstr[1] ".22 LR" msgstr[2] ".22 LR" msgstr[3] ".22 LR" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2808,7 +2809,7 @@ msgstr[1] ".22 szczurostrzały" msgstr[2] ".22 szczurostrzałów" msgstr[3] ".22 szczurostrzału" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2859,7 +2860,7 @@ msgstr[1] ".223 Remington" msgstr[2] ".223 Remington" msgstr[3] ".223 Remington" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2884,7 +2885,7 @@ msgstr[1] "5,56 NATO Mk 262" msgstr[2] "5,56 NATO Mk 262" msgstr[3] "5,56 NATO Mk 262" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2908,7 +2909,7 @@ msgstr[1] "5,56 NATO Mk 318" msgstr[2] "5,56 NATO Mk 318" msgstr[3] "5,56 NATO Mk 318" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2934,7 +2935,7 @@ msgstr[1] "5,56 NATO M855" msgstr[2] "5,56 NATO M855" msgstr[3] "5,56 NATO M855" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2961,7 +2962,7 @@ msgstr[1] "5,56 NATO M855A1" msgstr[2] "5,56 NATO M855A1" msgstr[3] "5,56 NATO M855A1" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2988,7 +2989,7 @@ msgstr[1] "5,56 NATO smugowe" msgstr[2] "5,56 NATO smugowych" msgstr[3] "5,56 NATO smugowego" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -3053,7 +3054,7 @@ msgstr[1] ".270 Winchester JSP" msgstr[2] ".270 Winchester JSP" msgstr[3] ".270 Winchester JSP" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -3119,7 +3120,7 @@ msgstr[1] ".300 Winchester Magnum, reelaborowane" msgstr[2] ".300 Winchester Magnum, reelaborowanych" msgstr[3] ".300 Winchester Magnum, reelaborowanego" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -3138,7 +3139,7 @@ msgstr[1] ".30-06 Springfield" msgstr[2] ".30-06 Springfield" msgstr[3] ".30-06 Springfield" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -3157,7 +3158,7 @@ msgstr[1] ".30-06 M14A1 smugowe" msgstr[2] ".30-06 M14A1 smugowych" msgstr[3] ".30-06 M14A1 smugowego" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -3176,7 +3177,7 @@ msgstr[1] ".30-06 M2 AP" msgstr[2] ".30-06 M2 AP" msgstr[3] ".30-06 M2 AP" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -3318,7 +3319,7 @@ msgstr[1] ".308 Winchester" msgstr[2] ".308 Winchester" msgstr[3] ".308 Winchester" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -3337,7 +3338,7 @@ msgstr[1] "7,62 x 51 mm M80" msgstr[2] "7,62 x 51 mm M80" msgstr[3] "7,62 x 51 mm M80" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -3356,7 +3357,7 @@ msgstr[1] "7,62 x 51 mm NATO smugowe" msgstr[2] "7,62 x 51 mm NATO smugowych" msgstr[3] "7,62 x 51 mm NATO smugowego" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -3421,7 +3422,7 @@ msgstr[1] ".32 ACP" msgstr[2] ".32 ACP" msgstr[3] ".32 ACP" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -3454,7 +3455,7 @@ msgstr[1] ".357 Magnum FMJ" msgstr[2] ".357 Magnum FMJ" msgstr[3] ".357 Magnum FMJ" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -3472,7 +3473,7 @@ msgstr[1] ".357 Magnum JHP" msgstr[2] ".357 Magnum JHP" msgstr[3] ".357 Magnum JHP" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -3523,7 +3524,7 @@ msgstr[1] ".357 SIG FMJ" msgstr[2] ".357 SIG FMJ" msgstr[3] ".357 SIG FMJ" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -3541,7 +3542,7 @@ msgstr[1] ".357 SIG JHP" msgstr[2] ".357 SIG JHP" msgstr[3] ".357 SIG JHP" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3609,7 +3610,7 @@ msgstr[1] ".38 FMJ" msgstr[2] ".38 FMJ" msgstr[3] ".38 FMJ" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3643,7 +3644,7 @@ msgstr[1] ".38 Super" msgstr[2] ".38 Super" msgstr[3] ".38 Super" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3701,7 +3702,7 @@ msgstr[1] ".380 ACP FMJ" msgstr[2] ".380 ACP FMJ" msgstr[3] ".380 ACP FMJ" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3722,7 +3723,7 @@ msgstr[1] ".380 ACP JHP" msgstr[2] ".380 ACP JHP" msgstr[3] ".380 ACP JHP" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3743,7 +3744,7 @@ msgstr[1] ".380 ACP +P" msgstr[2] ".380 ACP +P" msgstr[3] ".380 ACP +P" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3804,7 +3805,7 @@ msgstr[1] ".38 Super FMJ" msgstr[2] ".38 Super FMJ" msgstr[3] ".38 Super FMJ" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3831,7 +3832,7 @@ msgstr[1] ".40 S&W FMJ" msgstr[2] ".40 S&W FMJ" msgstr[3] ".40 S&W FMJ" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3850,7 +3851,7 @@ msgstr[1] ".40 S&W JHP" msgstr[2] ".40 S&W JHP" msgstr[3] ".40 S&W JHP" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3909,7 +3910,7 @@ msgstr[1] "40 x 46 mm M1006 gumowe" msgstr[2] "40 x 46 mm M1006 gumowych" msgstr[3] "40 x 46 mm M1006 gumowego" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3928,7 +3929,7 @@ msgstr[1] "40 x 46 mm M433 HEDP" msgstr[2] "40 x 46 mm M433 HEDP" msgstr[3] "40 x 46 mm M433 HEDP" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3947,7 +3948,7 @@ msgstr[1] "40 x 46 mm M576 śrutowe" msgstr[2] "40 x 46 mm M576 śrutowych" msgstr[3] "40 x 46 mm M576 śrutowego" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3967,7 +3968,7 @@ msgstr[1] "40 x 46 mm M651 gazy łzawiące" msgstr[2] "40 x 46 mm M651 gazów łzawiących" msgstr[3] "40 x 46 mm M651 gazu łzawiącego" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3986,8 +3987,8 @@ msgstr[1] "40 x 46 mm M118 śrutowe, reelaborowane" msgstr[2] "40 x 46 mm M118 śrutowych, reelaborowanych" msgstr[3] "40 x 46 mm M118 śrutowego, reelaborowanego" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -4007,8 +4008,8 @@ msgstr[1] "40 x 46 mm M199 śrutowe, reelaborowane" msgstr[2] "40 x 46 mm M199 śrutowych, reelaborowanych" msgstr[3] "40 x 46 mm M199 śrutowego, reelaborowanego" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -4069,8 +4070,8 @@ msgstr[1] "40 x 46 mm M118 strzałkowe, reelaborowane" msgstr[2] "40 x 46 mm M118 strzałkowych, reelaborowanych" msgstr[3] "40 x 46 mm M118 strzałkowego, reelaborowanego" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -4090,8 +4091,8 @@ msgstr[1] "40 x 46 mm M199 strzałkowe, reelaborowane" msgstr[2] "40 x 46 mm M199 strzałkowych, reelaborowanych" msgstr[3] "40 x 46 mm M199 strzałkowego, reelaborowanego" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -4171,7 +4172,7 @@ msgstr[1] "40 x 46 mm gniazda szerszeni z .22 LR" msgstr[2] "40 x 46 mm gniazd szerszeni z .22 LR" msgstr[3] "40 x 46 mm gniazda szerszeni z .22 LR" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -4188,7 +4189,7 @@ msgstr[1] "40 x 46 mm gniazda szerszeni z .410" msgstr[2] "40 x 46 mm gniazd szerszeni z .410" msgstr[3] "40 x 46 mm gniazda szerszeni z .410" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -4226,7 +4227,7 @@ msgstr[1] "40 x 53 mm M430A1 HEDP" msgstr[2] "40 x 53 mm M430A1 HEDP" msgstr[3] "40 x 53 mm M430A1 HEDP" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -4245,8 +4246,8 @@ msgstr[1] "40 x 53 mm śrutowe, reelaborowane" msgstr[2] "40 x 53 mm śrutowych, reelaborowanych" msgstr[3] "40 x 53 mm śrutowego, reelaborowanego" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "Improwizowany ładunek śrutowy 40x53 mm przypominający nieco M576." @@ -4273,8 +4274,8 @@ msgstr[1] "40 x 53 mm strzałkowe, reelaborowane" msgstr[2] "40 x 53 mm strzałkowych, reelaborowanych" msgstr[3] "40 x 53 mm strzałkowego, reelaborowanego" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -4315,7 +4316,7 @@ msgstr[1] ".410 śrutowe 000" msgstr[2] ".410 śrutowych 000" msgstr[3] ".410 śrutowego 000" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "Pocisk .410 z 5000 śrucin. Dobry jako ładunek myśliwski lub bojowy." @@ -4336,7 +4337,7 @@ msgstr[1] ".44 Magnum FMJ" msgstr[2] ".44 Magnum FMJ" msgstr[3] ".44 Magnum FMJ" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -4422,7 +4423,7 @@ msgstr[1] ".45 ACP FMJ" msgstr[2] ".45 ACP FMJ" msgstr[3] ".45 ACP FMJ" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -4439,7 +4440,7 @@ msgstr[1] ".45 ACP JHP" msgstr[2] ".45 ACP JHP" msgstr[3] ".45 ACP JHP" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -4458,7 +4459,7 @@ msgstr[1] ".45 ACP +P" msgstr[2] ".45 ACP +P" msgstr[3] ".45 ACP +P" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -4516,7 +4517,7 @@ msgstr[1] ".454 Casull" msgstr[2] ".454 Casull" msgstr[3] ".454 Casull" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -4554,7 +4555,7 @@ msgstr[1] ".45-70 SP" msgstr[2] ".45-70 SP" msgstr[3] ".45-70 SP" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4592,7 +4593,7 @@ msgstr[1] ".45-70 LFN cowboy" msgstr[2] ".45-70 LFN cowboy" msgstr[3] ".45-70 LFN cowboy" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4612,7 +4613,7 @@ msgstr[1] ".45-70 SP, reelaborowane" msgstr[2] ".45-70 SP, reelaborowanych" msgstr[3] ".45-70 SP, reelaborowanego" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4651,7 +4652,7 @@ msgstr[1] ".45-70 LFN cowboy, reelaborowane" msgstr[2] ".45-70 LFN cowboy, reelaborowanych" msgstr[3] ".45-70 LFN cowboy, reelaborowanego" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4672,7 +4673,7 @@ msgstr[1] ".45-70, czarnoprochowe" msgstr[2] ".45-70, czarnoprochowych" msgstr[3] ".45-70, czarnoprochowego" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4693,7 +4694,7 @@ msgstr[1] ".45 Colt JHP" msgstr[2] ".45 Colt JHP" msgstr[3] ".45 Colt JHP" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -4731,7 +4732,7 @@ msgstr[1] "4,6 x 30 mm" msgstr[2] "4,6 x 30 mm" msgstr[3] "4,6 x 30 mm" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -4751,8 +4752,8 @@ msgstr[1] "4,6 x 30 mm, czarnoprochowe" msgstr[2] "4,6 x 30 mm, czarnoprochowych" msgstr[3] "4,6 x 30 mm, czarnoprochowego" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -4782,7 +4783,7 @@ msgstr[1] ".460 Rowland HCFN" msgstr[2] ".460 Rowland HCFN" msgstr[3] ".460 Rowland HCFN" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -4800,7 +4801,7 @@ msgstr[1] ".460 Rowland" msgstr[2] ".460 Rowland" msgstr[3] ".460 Rowland" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4839,7 +4840,7 @@ msgstr[1] ".460 Rowland FMJ, reelaborowane" msgstr[2] ".460 Rowland FMJ, reelaborowanych" msgstr[3] ".460 Rowland FMJ, reelaborowanego" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4865,7 +4866,7 @@ msgstr[1] ".50 BMG M17 smugowe" msgstr[2] ".50 BMG M17 smugowych" msgstr[3] ".50 BMG M17 smugowego" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4884,7 +4885,7 @@ msgstr[1] ".50 BMG M33 Ball" msgstr[2] ".50 BMG M33 Ball" msgstr[3] ".50 BMG M33 Ball" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4908,7 +4909,7 @@ msgstr[1] ".50 BMG dopasowane" msgstr[2] ".50 BMG dopasowanych" msgstr[3] ".50 BMG dopasowanego" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4926,7 +4927,7 @@ msgstr[1] ".50 BMG M2 AP" msgstr[2] ".50 BMG M2 AP" msgstr[3] ".50 BMG M2 AP" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4944,7 +4945,7 @@ msgstr[1] ".50 BMG Raufoss Mk 211" msgstr[2] ".50 BMG Raufoss Mk 211" msgstr[3] ".50 BMG Raufoss Mk 211" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -4974,7 +4975,7 @@ msgstr[1] ".50 BMG smugowe reelaborowane" msgstr[2] ".50 BMG smugowych, reelaborowanych" msgstr[3] ".50 BMG smugowego, reelaborowanego" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4993,7 +4994,7 @@ msgstr[1] ".50 BMG dopasowane, reelaborowane" msgstr[2] ".50 BMG dopasowanych, reelaborowanych" msgstr[3] ".50 BMG dopasowanego, reelaborowanego" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -5017,7 +5018,7 @@ msgstr[1] ".50 BMG AP, reelaborowane" msgstr[2] ".50 BMG AP, reelaborowanych" msgstr[3] ".50 BMG AP, reelaborowanego" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -5094,7 +5095,7 @@ msgstr[1] "5,45 x 39 mm 7N10" msgstr[2] "5,45 x 39 mm 7N10" msgstr[3] "5,45 x 39 mm 7N10" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -5115,7 +5116,7 @@ msgstr[1] "5,45 x 39 mm 7N22" msgstr[2] "5,45 x 39 mm 7N22" msgstr[3] "5,45 x 39 mm 7N22" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -5132,7 +5133,7 @@ msgstr[1] "5,45 x 39 mm, reelaborowane" msgstr[2] "5,45 x 39 mm, reelaborowanych" msgstr[3] "5,45 x 39 mm, reelaborowanego" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -5151,7 +5152,7 @@ msgstr[1] "5,45 x 39mm AP, reelaborowane" msgstr[2] "5,45 x 39mm AP, reelaborowanych" msgstr[3] "5,45 x 39mm AP, reelaborowanego" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -5184,7 +5185,7 @@ msgstr[1] "5,7 x 28 mm SS190" msgstr[2] "5,7 x 28 mm SS190" msgstr[3] "5,7 x 28 mm SS190" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -5209,8 +5210,8 @@ msgstr[1] "5,7 x 28 mm, czarnoprochowe" msgstr[2] "5,7 x 28 mm, czarnoprochowych" msgstr[3] "5,7 x 28 mm, czarnoprochowego" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -5320,7 +5321,7 @@ msgstr[1] "66 mm HEAT" msgstr[2] "66 mm HEAT" msgstr[3] "66 mm HEAT" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -5337,7 +5338,7 @@ msgstr[1] ".700 NX" msgstr[2] ".700 NX" msgstr[3] ".700 NX" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -5374,7 +5375,7 @@ msgstr[1] "7,62 x 39 mm 57-N-231" msgstr[2] "7,62 x 39 mm 57-N-231" msgstr[3] "7,62 x 39 mm 57-N-231" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -5396,7 +5397,7 @@ msgstr[1] "7,62 x 39 mm M67" msgstr[2] "7,62 x 39 mm M67" msgstr[3] "7,62 x 39 mm M67" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -5417,7 +5418,7 @@ msgstr[1] "7,62 x 39 mm M43, reelaborowane" msgstr[2] "7,62 x 39 mm M43, reelaborowanych" msgstr[3] "7,62 x 39 mm M43, reelaborowanego" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -5463,7 +5464,7 @@ msgstr[1] "7,62 x 54 mm R" msgstr[2] "7,62 x 54 mm R" msgstr[3] "7,62 x 54 mm R" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -5502,7 +5503,7 @@ msgstr[1] "7,62 x 25 mm JHP" msgstr[2] "7,62 x 25 mm JHP" msgstr[3] "7,62 x 25 mm JHP" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -5538,7 +5539,7 @@ msgstr[1] "7,62 x 25 mm typy P" msgstr[2] "7,62 x 25 mm typów P" msgstr[3] "7,62 x 25 mm typu P" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -5629,7 +5630,7 @@ msgstr[1] "8 x 40 mm JHP, pirackie" msgstr[2] "8 x 40 mm JHP, pirackich" msgstr[3] "8 x 40 mm JHP, pirackiego" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -5646,7 +5647,7 @@ msgstr[1] "8 x 40 mm bezłuskowe" msgstr[2] "8 x 40 mm bezłuskowych" msgstr[3] "8 x 40 mm bezłuskowego" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -5663,7 +5664,7 @@ msgstr[1] "8 x 40 mm sportowe" msgstr[2] "8 x 40 mm sportowych" msgstr[3] "8 x 40 mm sportowego" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -5683,7 +5684,7 @@ msgstr[1] "8 x 40 mm FMJ" msgstr[2] "8 x 40 mm FMJ" msgstr[3] "8 x 40 mm FMJ" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -5702,7 +5703,7 @@ msgstr[1] "8 x 40 mm HVP" msgstr[2] "8 x 40 mm HVP" msgstr[3] "8 x 40 mm HVP" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -5723,7 +5724,7 @@ msgstr[1] "8 x 40 mm smugowe" msgstr[2] "8 x 40 mm smugowych" msgstr[3] "8 x 40 mm smugowego" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -5744,7 +5745,7 @@ msgstr[1] "8 x 40 mm JHP" msgstr[2] "8 x 40 mm JHP" msgstr[3] "8 x 40 mm JHP" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -5763,7 +5764,7 @@ msgstr[1] "9 x 19 mm JHP" msgstr[2] "9 x 19 mm JHP" msgstr[3] "9 x 19 mm JHP" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -5784,7 +5785,7 @@ msgstr[1] "9 x 19 mm FMJ" msgstr[2] "9 x 19 mm FMJ" msgstr[3] "9 x 19 mm FMJ" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -5801,7 +5802,7 @@ msgstr[1] "9 x 19 mm +P" msgstr[2] "9 x 19 mm +P" msgstr[3] "9 x 19 mm +P" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -5818,7 +5819,7 @@ msgstr[1] "9 x 19 mm +P+" msgstr[2] "9 x 19 mm +P+" msgstr[3] "9 x 19 mm +P+" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -5884,7 +5885,7 @@ msgstr[1] "9 x 18 mm 57-N-181S" msgstr[2] "9 x 18 mm 57-N-181S" msgstr[3] "9 x 18 mm 57-N-181S" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -5903,7 +5904,7 @@ msgstr[1] "9 x 18 mm SP-7" msgstr[2] "9 x 18 mm SP-7" msgstr[3] "9 x 18 mm SP-7" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -5921,7 +5922,7 @@ msgstr[1] "9 x 18 mm RG028" msgstr[2] "9 x 18 mm RG028" msgstr[3] "9 x 18 mm RG028" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -5954,7 +5955,7 @@ msgstr[1] "9 x 18 mm, reelaborowane" msgstr[2] "9 x 18 mm, reelaborowanych" msgstr[3] "9 x 18 mm, reelaborowanego" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5973,7 +5974,7 @@ msgstr[1] "9 x 18 mm +P+, elaborowane" msgstr[2] "9 x 18 mm +P+, elaborowanych" msgstr[3] "9 x 18 mm +P+, elaborowanego" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5993,7 +5994,7 @@ msgstr[1] "9 x 18 mm FMJ, reelaborowane" msgstr[2] "9 x 18 mm FMJ, reelaborowanych" msgstr[3] "9 x 18 mm FMJ, reelaborowanego" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -6012,7 +6013,7 @@ msgstr[1] "152 mm ATGM HEAT" msgstr[2] "152 mm ATGM HEAT" msgstr[3] "152 mm ATGM HEAT" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -6046,7 +6047,7 @@ msgstr[1] "kule armatnie" msgstr[2] "kul armatnich" msgstr[3] "kuli armatniej" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -6063,7 +6064,7 @@ msgstr[1] "toksyczny gaz w sprayu" msgstr[2] "toksyczny gaz w sprayu" msgstr[3] "toksyczny gaz w sprayu" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -6081,7 +6082,7 @@ msgstr[1] "fungicyd w sprayu" msgstr[2] "fungicyd w sprayu" msgstr[3] "fungicyd w sprayu" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -6099,7 +6100,7 @@ msgstr[1] "środek owadobójczy w sprayu" msgstr[2] "środek owadobójczy w sprayu" msgstr[3] "środek owadobójczy w sprayu" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -6251,7 +6252,7 @@ msgstr[1] "kulki do paintballa" msgstr[2] "kulek do paintballa" msgstr[3] "kulki do paintballa" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "Tuba małych kulek do paintballa. Praktycznie nie zadają obrażeń." @@ -6403,7 +6404,7 @@ msgstr[1] "śruty 00 do strzelby" msgstr[2] "śrutów 00 do strzelby" msgstr[3] "śrutu 00 do strzelby" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -6422,7 +6423,7 @@ msgstr[2] "amunicji gumowej do strzelby" msgstr[3] "amunicji gumowej do strzelby" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -6437,7 +6438,7 @@ msgstr[1] "drobne śruty do strzelby" msgstr[2] "drobnych śrutów do strzelby" msgstr[3] "drobnego śrutu do strzelby" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -6511,8 +6512,8 @@ msgstr[1] "śruty 00 do strzelby, załadowane złomem" msgstr[2] "śrutów 00 do strzelby, załadowanych złomem" msgstr[3] "śrutu 00 do strzelby, załadowanego złomem" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -6710,7 +6711,7 @@ msgstr[1] "acetyleny" msgstr[2] "acetylenów" msgstr[3] "acetylenu" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -6727,7 +6728,7 @@ msgstr[1] "zarodniki grzybów" msgstr[2] "zarodników grzybów" msgstr[3] "zarodnika grzybów" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Trochę zarodników grzybów." @@ -7770,7 +7771,7 @@ msgstr[1] "czerwone farby" msgstr[2] "czerwonych farb" msgstr[3] "czerwonej farby" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Puszka czerwonej farby." @@ -7783,7 +7784,7 @@ msgstr[1] "niebieskie farby" msgstr[2] "niebieskich farb" msgstr[3] "niebieskiej farby" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Puszka niebieskiej farby." @@ -7796,7 +7797,7 @@ msgstr[1] "białe farby" msgstr[2] "białych farb" msgstr[3] "białej farby" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Puszka białej farby." @@ -7809,7 +7810,7 @@ msgstr[1] "zielone farby" msgstr[2] "zielonych farb" msgstr[3] "zielonej farby" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Puszka zielonej farby." @@ -7822,7 +7823,7 @@ msgstr[1] "fioletowe farby" msgstr[2] "fioletowych farb" msgstr[3] "fioletowej farby" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Puszka fioletowej farby." @@ -7835,7 +7836,7 @@ msgstr[1] "żółte farby" msgstr[2] "żółtych farb" msgstr[3] "żółtej farby" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Puszka żółtej farby." @@ -7917,7 +7918,7 @@ msgstr[1] "bizmuty" msgstr[2] "bizmutów" msgstr[3] "bizmutu" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py 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." @@ -7930,8 +7931,8 @@ msgstr[1] "złota" msgstr[2] "złota" msgstr[3] "złota" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -7956,7 +7957,7 @@ msgstr[1] "cynku" msgstr[2] "cynku" msgstr[3] "cynku" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -7976,7 +7977,7 @@ msgstr[1] "ołowiu" msgstr[2] "ołowiu" msgstr[3] "ołowiu" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -7993,7 +7994,7 @@ msgstr[1] "sproszkowane magnezy" msgstr[2] "sproszkowanych magnezów" msgstr[3] "sproszkowanego magnezu" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -8010,7 +8011,7 @@ msgstr[1] "srebra" msgstr[2] "srebra" msgstr[3] "srebra" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -8087,7 +8088,7 @@ msgstr[1] "proszki cyny" msgstr[2] "proszków cyny" msgstr[3] "proszku cyny" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -8104,7 +8105,7 @@ msgstr[1] "luty" msgstr[2] "lutów" msgstr[3] "lutu" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -8149,7 +8150,7 @@ msgstr[1] "lonty" msgstr[2] "lontów" msgstr[3] "lontu" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -8219,7 +8220,7 @@ msgstr[1] "skrawki bawełny" msgstr[2] "skrawków bawełny" msgstr[3] "skrawka bawełny" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -8238,7 +8239,7 @@ msgstr[1] "skrawki sztucznego futra" msgstr[2] "skrawków sztucznego futra" msgstr[3] "skrawka sztucznego futra" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -8255,7 +8256,7 @@ msgstr[1] "skrawki filcu" msgstr[2] "skrawków filcu" msgstr[3] "skrawka filcu" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -8274,7 +8275,7 @@ msgstr[1] "skrawki futra" msgstr[2] "skrawków futra" msgstr[3] "skrawka futra" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -8291,7 +8292,7 @@ msgstr[1] "skrawki Kevlaru" msgstr[2] "skrawków Kevlaru" msgstr[3] "skrawka Kevlaru" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -8312,7 +8313,7 @@ msgstr[1] "skrawki skóry" msgstr[2] "skrawków skóry" msgstr[3] "skrawka skóry" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -8329,7 +8330,7 @@ msgstr[1] "skrawki Lycry" msgstr[2] "skrawków Lycry" msgstr[3] "skrawka Lycry" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -8346,7 +8347,7 @@ msgstr[1] "skrawki neoprenu" msgstr[2] "skrawków neoprenu" msgstr[3] "skrawka neoprenu" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -8363,7 +8364,7 @@ msgstr[1] "skrawki tkaniny syntetycznej" msgstr[2] "skrawków tkaniny syntetycznej" msgstr[3] "skrawka tkaniny syntetycznej" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -8380,7 +8381,7 @@ msgstr[1] "skrawki Nomeksu" msgstr[2] "skrawków Nomeksu" msgstr[3] "skrawka Nomeksu" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -8414,7 +8415,7 @@ msgstr[1] "połatane arkusze bawełny" msgstr[2] "połatanych arkuszy bawełny" msgstr[3] "połatanego arkusza bawełny" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -8447,7 +8448,7 @@ msgstr[1] "połatane części ubrań ze sztucznego futra" msgstr[2] "połatanych części ubrań ze sztucznego futra" msgstr[3] "połatanych części ubrań ze sztucznego futra" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -8479,7 +8480,7 @@ msgstr[1] "połatane części ubrań z filcu" msgstr[2] "połatanych części ubrań z filcu" msgstr[3] "połatanych części ubrań z filcu" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -8533,7 +8534,7 @@ msgstr[1] "połatane części ubrań z Lycry" msgstr[2] "połatanych części ubrań z Lycry" msgstr[3] "połatanych części ubrań z Lycry" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -8569,7 +8570,7 @@ msgstr[1] "połatane części ubrań z neoprenu" msgstr[2] "połatanych części ubrań z neoprenu" msgstr[3] "połatanych części ubrań z neoprenu" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -8607,7 +8608,7 @@ msgstr[1] "połatane części ubrań z Nomeksu" msgstr[2] "połatanych części ubrań z Nomeksu" msgstr[3] "połatanych części ubrań z Nomeksu" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -8640,7 +8641,7 @@ msgstr[1] "połatane części ubrań z tkaniny syntetycznej" msgstr[2] "połatanych części ubrań z tkaniny syntetycznej" msgstr[3] "połatanych części ubrań z tkaniny syntetycznej" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -8768,7 +8769,7 @@ msgstr[1] "tytany" msgstr[2] "tytanów" msgstr[3] "tytanu" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -8806,7 +8807,7 @@ msgstr[1] "10 mm FMJ bezłuskowe" msgstr[2] "10 mm FMJ bezłuskowych" msgstr[3] "10 mm FMJ bezłuskowego" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -8827,7 +8828,7 @@ msgstr[1] "10 mm JHP bezłuskowe" msgstr[2] "10 mm JHP bezłuskowych" msgstr[3] "10 mm JHP bezłuskowego" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -8849,7 +8850,7 @@ msgstr[1] "25 mm kartacze" msgstr[2] "25 mm kartaczy" msgstr[3] "25 mm kartacza" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -8873,7 +8874,7 @@ msgstr[1] "7,5 mm bezłuskowe" msgstr[2] "7,5 mm bezłuskowych" msgstr[3] "7,5 mm bezłuskowego" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -8894,7 +8895,7 @@ msgstr[1] "7,5 mm RP" msgstr[2] "7,5 mm RP" msgstr[3] "7,5 mm RP" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -8919,7 +8920,7 @@ msgstr[1] "ładunki elektryczne" msgstr[2] "ładunków elektrycznych" msgstr[3] "ładunku elektrycznego" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -8937,7 +8938,7 @@ msgstr[1] "pianobetony" msgstr[2] "pianobetonów" msgstr[3] "pianobetonu" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -8960,7 +8961,7 @@ msgstr[1] "stałe wodory" msgstr[2] "stałych wodorów" msgstr[3] "stałego wodoru" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -8977,7 +8978,7 @@ msgstr[1] "ołowiane śruty" msgstr[2] "ołowianych śrutów" msgstr[3] "ołowianego śrutu" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -8996,7 +8997,7 @@ msgstr[1] "śruty z zaokrągloną główką HP" msgstr[2] "śrutów z zaokrągloną główką HP" msgstr[3] "śrutu z zaokrągloną główką HP" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -9015,7 +9016,7 @@ msgstr[1] "szpiczaste śruty HP" msgstr[2] "szpiczastych śrutów HP" msgstr[3] "szpiczastego śrutu HP" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -9033,7 +9034,7 @@ msgstr[1] "śruty kompozytowe" msgstr[2] "śrutów kompozytowych" msgstr[3] "śrutu kompozytowego" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -9229,7 +9230,7 @@ msgstr[1] "amunicje do pistoletu, ball" msgstr[2] "amunicji do pistoletu, ball" msgstr[3] "amunicji do pistoletu, ball" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -9251,7 +9252,7 @@ msgstr[1] "amunicje do pistoletu, JHP" msgstr[2] "amunicji do pistoletu, JHP" msgstr[3] "amunicji do pistoletu, JHP" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -9305,7 +9306,7 @@ msgstr[1] "amunicje magnum, ball" msgstr[2] "amunicji magnum, ball" msgstr[3] "amunicji magnum, ball" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -9328,7 +9329,7 @@ msgstr[1] "amunicje magnum, JHP" msgstr[2] "amunicji magnum, JHP" msgstr[3] "amunicji magnum, JHP" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -9383,7 +9384,7 @@ msgstr[1] "drobne amunicje do pistoletu, ball" msgstr[2] "drobnych amunicji do pistoletu, ball" msgstr[3] "drobnej amunicji do pistoletu, ball" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -9406,7 +9407,7 @@ msgstr[1] "drobne amunicje do pistoletu, JHP" msgstr[2] "drobnych amunicji do pistoletu, JHP" msgstr[3] "drobnej amunicji do pistoletu, JHP" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -9461,7 +9462,7 @@ msgstr[1] "amunicje do karabinu, ball" msgstr[2] "amunicji do karabinu, ball" msgstr[3] "amunicji do karabinu, ball" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -9484,7 +9485,7 @@ msgstr[1] "amunicje do karabinu, AP" msgstr[2] "amunicji do karabinu, AP" msgstr[3] "amunicji do karabinu, AP" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -9540,7 +9541,7 @@ msgstr[1] "amunicje do obcego karabinu, ball" msgstr[2] "amunicji do obcego karabinu, ball" msgstr[3] "amunicji do obcego karabinu, ball" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -9555,7 +9556,7 @@ msgstr[1] "amunicje do karabinu elektromagnetycznego" msgstr[2] "amunicji do karabinu elektromagnetycznego" msgstr[3] "amunicji do karabinu elektromagnetycznego" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -9572,7 +9573,7 @@ msgstr[1] "ogromne amunicje do karabinu, ball" msgstr[2] "ogromnych amunicji do karabinu, ball" msgstr[3] "ogromnej amunicji do karabinu, ball" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -9583,9 +9584,9 @@ msgid "" msgstr "" "Ogromna amunicja karabinowa, taka jak ta, stanowi pomost pomiędzy lekkimi " "działkami a strzelbami na grubego zwierza. Nadaje się do zwalczania lekkich " -"pojazdów i innego sprzętu lub do polowania na bardzo dużą zwierzynę. " -"\"Kula\" to stare określenie na pociski z płaszczem metalowym, które oferują" -" mniejsze zanieczyszczenie, lepszą niezawodność i nieco lepszą penetrację w " +"pojazdów i innego sprzętu lub do polowania na bardzo dużą zwierzynę. „ball” " +"to stare określenie na pociski z płaszczem metalowym, które oferują mniejsze" +" zanieczyszczenie, lepszą niezawodność i nieco lepszą penetrację w " "porównaniu do zwykłego ołowiu." #: lang/json/AMMO_from_json.py @@ -9596,7 +9597,7 @@ msgstr[1] "ogromne amunicje do karabinu, AP" msgstr[2] "ogromnych amunicji do karabinu, AP" msgstr[3] "ogromnej amunicji do karabinu, AP" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -9634,7 +9635,7 @@ msgstr[1] "rakiety, przeciwpiechotne" msgstr[2] "rakiet, przeciwpiechotnych" msgstr[3] "rakiety, przeciwpiechotnej" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -9651,7 +9652,7 @@ msgstr[1] "rakiety, wielozadaniowe" msgstr[2] "rakiet, wielozadaniowych" msgstr[3] "rakiety, wielozadaniowej" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -9671,7 +9672,7 @@ msgstr[1] "rakiety, dymne" msgstr[2] "rakiet, dymnych" msgstr[3] "rakiety, dymnej" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -9706,7 +9707,7 @@ msgstr[1] "amunicje do strzelby, drobny śrut" msgstr[2] "amunicji do strzelby, drobny śrut" msgstr[3] "amunicji do strzelby, drobny śrut" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -9724,7 +9725,7 @@ msgstr[1] "amunicje do strzelby, breneki" msgstr[2] "amunicji do strzelby, brenek" msgstr[3] "amunicji do strzelby, breneki" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -9743,7 +9744,7 @@ msgstr[1] "amunicje do strzelby, pirotechniczne" msgstr[2] "amunicji do strzelby, pirotechnicznych" msgstr[3] "amunicji do strzelby, pirotechnicznej" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -9810,7 +9811,7 @@ msgstr[1] "amunicje do strzelby, strzałkowe (elaborowane)" msgstr[2] "amunicji do strzelby, strzałkowych (elaborowanych)" msgstr[3] "amunicji do strzelby, strzałkowej (elaborowanej)" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -9879,7 +9880,7 @@ msgstr[1] "alumentum" msgstr[2] "alumentum" msgstr[3] "alumentum" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -9951,7 +9952,7 @@ msgstr[1] "smocze krwi" msgstr[2] "smoczych krwi" msgstr[3] "smoczej krwi" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -9987,7 +9988,7 @@ msgstr[1] "przędze paraboliczne" msgstr[2] "przędz parabolicznych" msgstr[3] "przędzy parabolicznej" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -10002,7 +10003,7 @@ msgstr[1] "skrystalizowane many" msgstr[2] "skrystalizowanych man" msgstr[3] "skrystalizowanej many" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -10052,7 +10053,7 @@ msgstr[1] "ciekłe rtęci" msgstr[2] "ciekłych rtęci" msgstr[3] "ciekłej rtęci" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -10074,7 +10075,7 @@ msgstr "" "Bryła surowego mithrilu. Aby była użyteczna, musi zostać przerobiona na " "sztabkę." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -10099,10 +10100,10 @@ msgstr "Jeśli to widzisz, jest to błąd." #: lang/json/ARMOR_from_json.py msgid "portable seismograph" msgid_plural "portable seismographs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "przenośny sejsmograf" +msgstr[1] "przenośne sejsmografy" +msgstr[2] "przenośne sejsmografy" +msgstr[3] "przenośne sejsmografy" #. ~ Description for portable seismograph #: lang/json/ARMOR_from_json.py @@ -10182,7 +10183,7 @@ msgid "" "designed to fit Huge survivors." msgstr "" "Proste narzędzie do unieruchomienia złamanych kości ramion. Jest specjalnie " -"zaprojektowana by pasować na wielkich ocalałych." +"zaprojektowana, by pasować na wielkich ocalonych." #: lang/json/ARMOR_from_json.py msgid "tourniquet (arm)" @@ -10521,7 +10522,7 @@ msgstr[3] "" #. ~ Use action msg for armet helm. #: lang/json/ARMOR_from_json.py msgid "You raise the armet visor." -msgstr "" +msgstr "Podnosisz przyłbicę hełmu." #. ~ Description for armet helm #. ~ Description for armet helm (raised) @@ -10545,7 +10546,7 @@ msgstr[3] "" #. ~ Use action msg for armet helm (raised). #: lang/json/ARMOR_from_json.py msgid "You lower the armet visor." -msgstr "" +msgstr "Opuszczasz przyłbicę hełmu." #: lang/json/ARMOR_from_json.py msgid "pair of attached ear plugs (in)" @@ -10559,13 +10560,13 @@ msgstr[3] "" #. ~ Use action menu_text for pair of makeshift ear plugs (in). #: lang/json/ARMOR_from_json.py msgid "Unplug" -msgstr "" +msgstr "Odetkaj" #. ~ Use action msg for pair of attached ear plugs (in). #. ~ Use action msg for pair of makeshift ear plugs (in). #: lang/json/ARMOR_from_json.py msgid "You take the ear plugs out." -msgstr "" +msgstr "Wyciągasz zatyczki do uszu." #. ~ Description for pair of attached ear plugs (in) #: lang/json/ARMOR_from_json.py @@ -10694,7 +10695,7 @@ msgstr[3] "ładownica" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -10710,7 +10711,7 @@ msgstr "Chowasz swój %s." #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -10754,7 +10755,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -11071,7 +11072,7 @@ msgid "" msgstr "" "Para naramienników wykonanych z dokładnie oczyszczonych i przyciętych " "biosilikowanych egzoszkieletów kwasowych mrówek. Odporne na działanie " -"kwasów, ale kruche i przeznaczone dla największych ocalałych." +"kwasów, ale kruche i przeznaczone dla największych ocalonych." #: lang/json/ARMOR_from_json.py msgid "pair of hard arm guards" @@ -11889,46 +11890,21 @@ msgstr "" " pałkę. " #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "pas ocalonych" -msgstr[1] "pas ocalonych" -msgstr[2] "pas ocalonych" -msgstr[3] "pas ocalonych" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "pas narzędziowy" +msgstr[1] "pas narzędziowy" +msgstr[2] "pas narzędziowy" +msgstr[3] "pas narzędziowy" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "Wkładasz twój %1$s do %2$s." -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "Umieść przedmiot" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" -"Wykonany pod indywidualne potrzeby skórzany pas pokryty kieszeniami, z " -"pochwą do noszenia niewielkiego ostrza i kaburą do noszenia pistoletu. " -"Wytrzymały i starannie wykonany, aby wygodnie się go nosiło. Aktywuj, aby " -"schować/wyciągnąć broń." - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "pas narzędziowy" -msgstr[1] "pas narzędziowy" -msgstr[2] "pas narzędziowy" -msgstr[3] "pas narzędziowy" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -12119,31 +12095,6 @@ msgstr "" "Gumowe obuwie ochronne zakrywające palce stóp solidnym, stalowym noskiem " "zgodnym z normami OSHA." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "ogniotrwałe buty ocalonych" -msgstr[1] "ogniotrwałe buty ocalonych" -msgstr[2] "ogniotrwałe buty ocalonych" -msgstr[3] "ogniotrwałe buty ocalonych" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" -"Para spersonalizowanych, opancerzonych kevlarem butów z Nomexu. Utrzymają " -"cię przy życiu, nawet gdy będziesz po kolana w płomieniach." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -12165,60 +12116,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" -"Para spersonalizowanych, opancerzonych butów z kevlaru. Ciepłe dzięki " -"podszewce ze sztucznego futra, utrzymają cię przy życiu, nawet gdy będziesz " -"po kolana w trupach." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" -"Para wielkich, spersonalizowanych, opancerzonych butów z kevlaru. Ciepłe " -"dzięki podszewce ze sztucznego futra, utrzymają cię przy życiu, nawet gdy " -"będziesz po kolana w trupach." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "buty do nurkowania ocalonych" -msgstr[1] "buty do nurkowania ocalonych" -msgstr[2] "buty do nurkowania ocalonych" -msgstr[3] "buty do nurkowania ocalonych" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" -"Para spersonalizowanych, opancerzonych kevlarem butów neoprenowych. Dzięki " -"nim pozostaniesz suchy i żywy, bez względu na to, czy będzie piekło, czy " -"słota." - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -12234,33 +12131,6 @@ msgstr "" "Wytrzymałe i jednocześnie lekkie buty skórzane, przeznaczone do aktywności " "na świeżym powietrzu." -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "ciężkie buty ocalonych" -msgstr[1] "ciężkie buty ocalonych" -msgstr[2] "ciężkie buty ocalonych" -msgstr[3] "ciężkie buty ocalonych" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" -"Para spersonalizowanych butów z kevlaru, które są mocno opancerzone stalą. " -"Przedkładając ochronę nad wygodę, utrzymają cię one przy życiu, zwłaszcza " -"gdy będziesz po kolana w trupach." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -12284,33 +12154,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "lekkie buty ocalonych" -msgstr[1] "lekkie buty ocalonych" -msgstr[2] "lekkie buty ocalonych" -msgstr[3] "lekkie buty ocalonych" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" -"Para spersonalizowanych, opancerzonych kevlarem butów z tkaniny. " -"Przedkładając komfort nad ochronę, buty te zapewnią ci ruch i zwinność, " -"nawet gdy będziesz po kolana w trupach." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -12400,25 +12243,6 @@ msgstr "" " stało się popularne wśród ludzi z klasy robotniczej w ciągu ostatnich kilku" " dekad." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "buty ocalonych" -msgstr[1] "buty ocalonych" -msgstr[2] "buty ocalonych" -msgstr[3] "buty ocalonych" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" -"Para spersonalizowanych skórzanych butów opancerzonych Kevlarem. Zapewniają " -"komfort i ochronę, dzięki czemu utrzymają cię przy życiu, nawet gdy będziesz" -" po kolana w trupach." - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -12459,51 +12283,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "zimowe buty ocalonych" -msgstr[1] "zimowe buty ocalonych" -msgstr[2] "zimowe buty ocalonych" -msgstr[3] "zimowe buty ocalonych" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" -"Para spersonalizowanych, opancerzonych kevlarem butów. Ciepłe dzięki " -"podszewce z prawdziwego futra, utrzymają cię przy życiu, nawet gdy będziesz " -"po kolana w trupach." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "buty ocalonych XL" -msgstr[1] "buty ocalonych XL" -msgstr[2] "buty ocalonych XL" -msgstr[3] "buty ocalonych XL" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" -"Para masywnych spersonalizowanych skórzanych butów opancerzonych Kevlarem. " -"Zapewniają komfort i ochronę, dzięki czemu utrzymają cię przy życiu, nawet " -"gdy będziesz po kolana w trupach." - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -13625,31 +13404,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "prochowiec ocalonych" -msgstr[1] "prochowiec ocalonych" -msgstr[2] "prochowiec ocalonych" -msgstr[3] "prochowiec ocalonych" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" -"Ręcznie przerabiany prochowiec, obszyty kevlarem z doszytymi kieszeniami i " -"sakwami. Wygodny, odporny i pojemny." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -13711,7 +13465,7 @@ msgstr[1] "kurtka wojskowa" msgstr[2] "kurtka wojskowa" msgstr[3] "kurtka wojskowa" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "Wytrzymała kurtka wojskowa z kieszeniami ceniona przez armię." @@ -13931,7 +13685,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -14135,23 +13889,6 @@ msgstr "" "Gruby skórzany prochowiec pełnej długości pozbawiony rękawów. Ma wiele " "kieszeni." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "prochowiec bez rękawów ocalonych" -msgstr[1] "prochowiec bez rękawów ocalonych" -msgstr[2] "prochowiec bez rękawów ocalonych" -msgstr[3] "prochowiec bez rękawów ocalonych" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" -"Ręcznie przerabiany pozbawiony rękawów prochowiec, z naszytymi kieszeniami i" -" sakwami. Wygodny, odporny i pojemny." - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -14220,24 +13957,6 @@ msgstr "" "Ciężki skórzany płaszcz, który nie krępuje ramion. Jego liczne kieszenie " "mają sporą pojemność." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "płaszcz ocalonych bez rękawów" -msgstr[1] "płaszcz ocalonych bez rękawów" -msgstr[2] "płaszcz ocalonych bez rękawów" -msgstr[3] "płaszcz ocalonych bez rękawów" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" -"Ręcznie dostosowany płaszcz podszyty ochronnym kevlarem, pozbawiony rękawów." -" Pokryty doszywanymi kieszeniami i sakiewkami. Wygodny, wytrzymały, i o " -"sporej pojemności." - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -14260,7 +13979,7 @@ msgstr[1] "thawb" msgstr[2] "thawb" msgstr[3] "thawb" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -14325,23 +14044,6 @@ msgstr[3] "skórzany płaszcz" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "Gruby skórzany płaszcz, z wieloma kieszeniami o sporej pojemności." -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "płaszcz ocalonych" -msgstr[1] "płaszcz ocalonych" -msgstr[2] "płaszcz ocalonych" -msgstr[3] "płaszcz ocalonych" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" -"Ręcznie dostosowany płaszcz podszyty ochronnym kevlarem, pokryty doszywanymi" -" kieszeniami i sakiewkami. Wygodny, wytrzymały, i o sporej pojemności." - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -14659,24 +14361,6 @@ msgstr[3] "okulary przeciwsłoneczne" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "Okulary chroniące oczy przed słońcem." -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "gogle ocalonych" -msgstr[1] "gogle ocalonych" -msgstr[2] "gogle ocalonych" -msgstr[3] "gogle ocalonych" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" -"Ręcznie robiona para opancerzonych gogli o przyciemnianych szkłach. Wygodne " -"i wytrzymałe, zapewniają doskonałą ochronę przed niebezpieczeństwami " -"środowiskowymi." - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -15171,32 +14855,6 @@ msgstr "" "Para skórzanych rękawic bez palców. Zostały one prymitywnie wzmocnione " "stalowymi osłonami na grzbiecie." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "ogniotrwałe rękawice ocalonych" -msgstr[1] "ogniotrwałe rękawice ocalonych" -msgstr[2] "ogniotrwałe rękawice ocalonych" -msgstr[3] "ogniotrwałe rękawice ocalonych" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" -"Para spersonalizowanych, opancerzonych kevlarem rękawic z Nomexu. Są one " -"postapokaliptycznym udoskonaleniem tego, co strażacy nosili przed " -"Kataklizmem." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -15208,7 +14866,7 @@ msgstr[3] "futrzane rękawice" #. ~ Description for pair of fur gloves #: lang/json/ARMOR_from_json.py msgid "A pair of warm fur gloves." -msgstr "" +msgstr "Para ciepłych futrzanych rękawic." #: lang/json/ARMOR_from_json.py msgid "pair of XL fur gloves" @@ -15218,64 +14876,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" -"Para spersonalizowanych, opancerzonych rękawic z kevlaru. Są one wyłożone " -"sztucznym futrem." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" -"Para spersonalizowanych, przerośniętych, opancerzonych rękawic z kevlaru. Są" -" one wyłożone sztucznym futrem." - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "ciężkie rękawice ocalonych" -msgstr[1] "ciężkie rękawice ocalonych" -msgstr[2] "ciężkie rękawice ocalonych" -msgstr[3] "ciężkie rękawice ocalonych" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" -"Para spersonalizowanych rękawic kevlarowych wzmocnionych stalą. Są one " -"przeznaczone przede wszystkim do ochrony." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -15355,81 +14955,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "lekkie rękawice ocalonych" -msgstr[1] "lekkie rękawice ocalonych" -msgstr[2] "lekkie rękawice ocalonych" -msgstr[3] "lekkie rękawice ocalonych" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" -"Para spersonalizowanych, opancerzonych kevlarem rękawic z tkaniny. Zostały " -"one zaprojektowane przede wszystkim z myślą o wygodzie." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" -"Para spersonalizowanych, opancerzonych kevlarem płóciennych rękawic bez " -"palców. Zostały one zaprojektowane przede wszystkim z myślą o wygodzie." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" -"Para spersonalizowanych, opancerzonych kevlarem skórzanych rękawic bez " -"palców. Zapewniają równowagę między wygodą a ochroną." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -15482,23 +15007,6 @@ msgstr "" "Para gumowych rękawic, zwykle używanych w czyszczeniu z użyciem żrących " "środków." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "rękawice ocalonych" -msgstr[1] "rękawice ocalonych" -msgstr[2] "rękawice ocalonych" -msgstr[3] "rękawice ocalonych" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" -"Para spersonalizowanych, skórzanych rękawic opancerzonych kevlarem. " -"Zapewniają one równowagę między wygodą a ochroną." - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -15654,47 +15162,6 @@ msgstr "" "dłoni w celu zapewnienia niewielkiej ochrony podczas boksowania lub innych " "niecnych czynności." -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "zimowe rękawice ocalonych" -msgstr[1] "zimowe rękawice ocalonych" -msgstr[2] "zimowe rękawice ocalonych" -msgstr[3] "zimowe rękawice ocalonych" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" -"Para spersonalizowanych, opancerzonych kevlarem rękawic. Są one wyłożone " -"prawdziwym futrem." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "rękawice ocalonych XL" -msgstr[1] "rękawice ocalonych XL" -msgstr[2] "rękawice ocalonych XL" -msgstr[3] "rękawice ocalonych XL" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" -"Masywna para skórzanych rękawic opancerzonych kevlarem. Zapewniają równowagę" -" między ochroną a wygodą." - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -16637,7 +16104,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -16781,40 +16248,6 @@ msgstr "" "twarzy bez zasłaniania widoku. Właściwy sprzęt gigantów, w przeciwieństwie " "do stereotypowego rogatego hełmu." -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "szarfa nomada" -msgstr[1] "szarfa nomada" -msgstr[2] "szarfa nomada" -msgstr[3] "szarfa nomada" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" -"Prowizoryczna szarfa z osłoną chroniącą oczy przed słońcem i deszczem, " -"zaprojektowana na dalekie wyprawy." - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" -"Prowizoryczna szarfa z osłoną chroniącą oczy przed słońcem i deszczem, " -"zaprojektowana na dalekie wyprawy. Zrobiona dla gigantycznego wędrowca." - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -16885,40 +16318,6 @@ msgstr "" "kowbojski. Niestety, nie pomoże on w ochronie oczu przed słońcem. Ten jest " "większy niż standardowy." -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "szarfa szabrownika" -msgstr[1] "szarfa szabrownika" -msgstr[2] "szarfa szabrownika" -msgstr[3] "szarfa szabrownika" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" -"Solidny ochronny szal okrywający szyję, połączony z respiratorem i " -"ochraniaczem na oczy. Na niebezpieczne wyprawy szabrownicze." - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" -"Solidny ochronny szal okrywający szyję, połączony z respiratorem i " -"ochraniaczem na oczy. Na niebezpieczne wyprawy przerośniętych szabrowników." - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -17183,47 +16582,6 @@ msgstr "" "blisko ciała. Używanie jej bez wprawy jest uciążliwe. Aktywuj, aby " "zawiesić/wyciągnąć broń." -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "uprząż ocalonych" -msgstr[1] "uprząż ocalonych" -msgstr[2] "uprząż ocalonych" -msgstr[3] "uprząż ocalonych" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" -"Spersonalizowana lekka uprząż z kieszeniami i sakiewkami, a także ze " -"zintegrowaną taśmą na karabinek lub podobną broń. Wytrzymała i uszyta na " -"miarę by być wygodna w noszeniu. Aktywuj by wyjąć/schować broń." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" -"Spersonalizowana lekka uprząż z kieszeniami i sakiewkami, a także ze " -"zintegrowaną taśmą na karabinek lub podobną broń. Wytrzymała i uszyta na " -"miarę by być wygodna w noszeniu, nawet przez największych rozmiarem " -"użytkowników. Aktywuj by wyjąć/schować broń." - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -17290,100 +16648,6 @@ msgstr "" "Regulowana część kolczugi noszona na głowie, nadająca się do noszenia pod " "hełmem. Jest w rozmiarze XL." -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "ogniotrwały kaptur ocalonych" -msgstr[1] "ogniotrwały kaptur ocalonych" -msgstr[2] "ogniotrwały kaptur ocalonych" -msgstr[3] "ogniotrwały kaptur ocalonych" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" -"Przerabiany wzmacniany kaptur z Nomeksu i Kevlaru, trwały i wytrzymały." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" -"Przerabiany wzmacniany kaptur z Nomeksu i Kevlaru, bardzo trwały i " -"wytrzymały. Zrobiony w Muspelheim." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "lekki kaptur ocalonych" -msgstr[1] "lekki kaptur ocalonych" -msgstr[2] "lekki kaptur ocalonych" -msgstr[3] "lekki kaptur ocalonych" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" -"Indywidualnie dopasowany opancerzony kaptur z tkaniny i Kevlaru, lekki i " -"wytrzymały." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" -"Indywidualnie dopasowany i ponadwymiarowy pancerny kaptur z tkaniny i " -"Kevlaru, lekki i wytrzymały." - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" -"Indywidualnie dopasowany, opancerzony kaptur z kevlaru. Ciepło zapewnia " -"podszewka ze sztucznego futra." - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" -"Indywidualnie dopasowany i ponadwymiarowy, opancerzony kaptur z kevlaru. " -"Ciepło zapewnia podszewka ze sztucznego futra." - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -17397,72 +16661,6 @@ msgstr[3] "kaptur przeciwdeszczowy" msgid "A waterproof hood made to be worn in bad weather." msgstr "Nieprzemakalny kaptur przeznaczony do noszenia przy złej pogodzie." -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "kaptur ocalonych" -msgstr[1] "kaptur ocalonych" -msgstr[2] "kaptur ocalonych" -msgstr[3] "kaptur ocalonych" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" -"Indywidualnie dopasowany opancerzony kaptur ze skóry i Kevlaru, " -"zaprojektowany tak, aby zrównoważyć komfort i ochronę." - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "zimowy kaptur ocalonych" -msgstr[1] "zimowy kaptur ocalonych" -msgstr[2] "zimowy kaptur ocalonych" -msgstr[3] "zimowy kaptur ocalonych" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" -"Indywidualnie dopasowany, opancerzony kaptur z kevlaru. Ciepło zapewnia " -"podszewka z prawdziwego futra." - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" -"Indywidualnie dopasowany i ponadwymiarowy, opancerzony kaptur z kevlaru. " -"Ciepło zapewnia podszewka z prawdziwego futra." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "kaptur ocalonych XL" -msgstr[1] "kaptur ocalonych XL" -msgstr[2] "kaptur ocalonych XL" -msgstr[3] "kaptur ocalonych XL" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" -"Indywidualnie dopasowany masywny opancerzony kaptur ze skóry i Kevlaru, " -"zaprojektowany tak, aby zrównoważyć komfort i ochronę." - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -17998,9 +17196,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "Para spinek do mankietów z osadzonymi granatami." @@ -18013,9 +17211,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "Para spinek do mankietów z osadzonymi diamentami." @@ -18028,9 +17226,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "Para spinek do mankietów z osadzonymi ametystami." @@ -18043,9 +17241,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "Para spinek do mankietów z osadzonymi akwamarynami." @@ -18058,9 +17256,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "Para spinek do mankietów z osadzonymi szmaragdami." @@ -18073,9 +17271,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "Para spinek do mankietów z osadzonymi aleksandrytami." @@ -18088,9 +17286,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "Para spinek do mankietów z osadzonymi rubinami." @@ -18103,9 +17301,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "Para spinek do mankietów z osadzonymi perydotami." @@ -18118,9 +17316,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "Para spinek do mankietów z osadzonymi szafirami." @@ -18133,9 +17331,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "Para spinek do mankietów z osadzonymi turmalinami." @@ -18148,9 +17346,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "Para spinek do mankietów z osadzonymi cytrynami." @@ -18163,9 +17361,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "Para spinek do mankietów z osadzonymi błękitnymi topazami." @@ -18178,9 +17376,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "Para spinek do mankietów z osadzonymi opalami." @@ -18193,9 +17391,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "Para spinek do mankietów z osadzonymi perłami." @@ -22820,7 +22018,7 @@ msgstr[1] "spodnie strażackie" msgstr[2] "spodnie strażackie" msgstr[3] "spodnie strażackie" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -22873,7 +22071,7 @@ msgstr[1] "skórzane nogawice" msgstr[2] "skórzane nogawice" msgstr[3] "skórzane nogawice" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -22889,7 +22087,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -22911,7 +22109,7 @@ msgstr[1] "spodnie szermiercze" msgstr[2] "spodnie szermiercze" msgstr[3] "spodnie szermiercze" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -23136,41 +22334,6 @@ msgstr "" "zabezpieczonych prostymi sznurkami; luźny zbiór płyt zapewnia przyzwoitą, " "ale nie najwygodniejszą ochronę. Wyglądasz jak śmietnikowy gigant." -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "lekkie spodnie z kieszeniami ocalonych" -msgstr[1] "lekkie spodnie z kieszeniami ocalonych" -msgstr[2] "lekkie spodnie z kieszeniami ocalonych" -msgstr[3] "lekkie spodnie z kieszeniami ocalonych" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" -"Lekkie, wzmacniane Kevlarem spodnie z kieszeniami zaprojektowane do " -"pomieszczenia ile tylko się da. Odporne i zasadniczo nieprzemakalne." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" -"Lekkie, wzmacniane Kevlarem spodnie z kieszeniami zaprojektowane do " -"pomieszczenia ile tylko się da. Odporne i zasadniczo nieprzemakalne. W " -"ponadstandardowym rozmiarze." - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -23186,40 +22349,6 @@ msgstr "" "Specjalne spodnie zaprojektowane dla motocyklistów i cyklistów " "ekstremalnych." -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "spodnie z kieszeniami ocalonych" -msgstr[1] "spodnie z kieszeniami ocalonych" -msgstr[2] "spodnie z kieszeniami ocalonych" -msgstr[3] "spodnie z kieszeniami ocalonych" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" -"Podszyte kevlarem spodnie robocze z dodatkowymi kieszeniami i sakwami. " -"Ręcznie przerabiany dla zapewnienia wygody, komfortu i odporności." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" -"Podszyte kevlarem przerośnięte spodnie robocze z dodatkowymi kieszeniami i " -"sakwami. Ręcznie przerabiany dla zapewnienia wygody, komfortu i odporności." - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" @@ -23228,7 +22357,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -23245,7 +22374,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -23281,7 +22410,7 @@ msgstr[1] "szorty do koszykówki" msgstr[2] "szorty do koszykówki" msgstr[3] "szorty do koszykówki" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "Lekkie i wygodne szorty do koszykówki. " @@ -23294,7 +22423,7 @@ msgstr[1] "bryczesy" msgstr[2] "bryczesy" msgstr[3] "bryczesy" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -23325,7 +22454,7 @@ msgstr[1] "krótkie szorty" msgstr[2] "krótkie szorty" msgstr[3] "krótkie szorty" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "Proste bardzo krótkie szorty, które niewiele zakrywają." @@ -23338,7 +22467,7 @@ msgstr[1] "futrzane krótkie szorty" msgstr[2] "futrzane krótkie szorty" msgstr[3] "futrzane krótkie szorty" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "Proste bardzo krótkie futrzane szorty, które niewiele zakrywają." @@ -23351,7 +22480,7 @@ msgstr[1] "skórzane krótkie szorty" msgstr[2] "skórzane krótkie szorty" msgstr[3] "skórzane krótkie szorty" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "Proste bardzo krótkie skórzane szorty, które niewiele zakrywają." @@ -23364,7 +22493,7 @@ msgstr[1] "dżinsy" msgstr[2] "dżinsy" msgstr[3] "dżinsy" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "Niebieskie dżinsy z dwiema głębokimi kieszeniami." @@ -23401,7 +22530,7 @@ msgstr[1] "czerwone dżinsy" msgstr[2] "czerwone dżinsy" msgstr[3] "czerwone dżinsy" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -23438,7 +22567,7 @@ msgstr[1] "legginsy" msgstr[2] "legginsy" msgstr[3] "legginsy" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -23538,7 +22667,7 @@ msgstr[1] "spodnie" msgstr[2] "spodnie" msgstr[3] "spodnie" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "Spodnie w kolorze khaki. Nieco cieplejsze od dżinsów." @@ -23551,15 +22680,15 @@ msgstr[1] "spodnie wojskowe" msgstr[2] "spodnie wojskowe" msgstr[3] "spodnie wojskowe" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "Wytrzymała para wojskowych spodni z kieszeniami ceniona przez armię." #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" "Wytrzymała para spodni preferowana przez wojsko. Ta para występuje w szarym," " zielonym i brązowym kamuflażu. Wzór ten wyróżnia się brakiem czerni." @@ -23604,7 +22733,7 @@ msgstr[1] "spodnie z kieszeniami" msgstr[2] "spodnie z kieszeniami" msgstr[3] "spodnie z kieszeniami" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "Spodnie typu cargo z wieloma kieszeniami o przyzwoitej pojemności." @@ -23617,7 +22746,7 @@ msgstr[1] "spodnie w kratę" msgstr[2] "spodnie w kratę" msgstr[3] "spodnie w kratę" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "Z braku laku spodnie te dałoby się wykorzystać do gry w szachy." @@ -23630,7 +22759,7 @@ msgstr[1] "futrzane spodnie" msgstr[2] "futrzane spodnie" msgstr[3] "futrzane spodnie" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "Masywne spodnie podbite miękkim ciepłym futrem." @@ -23643,7 +22772,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "Para długich bawełnianych spodni podszytych ciepłą imitacją futra." @@ -23656,7 +22785,7 @@ msgstr[1] "skórzane spodnie" msgstr[2] "skórzane spodnie" msgstr[3] "skórzane spodnie" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -23673,7 +22802,7 @@ msgstr[1] "spodnie narciarskie" msgstr[2] "spodnie narciarskie" msgstr[3] "spodnie narciarskie" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "" @@ -23688,7 +22817,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -23705,7 +22834,7 @@ msgstr[1] "szorty pocztowe" msgstr[2] "szorty pocztowe" msgstr[3] "szorty pocztowe" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "Ciemnoniebieskie szorty noszone często przez listonoszy i kurierów." @@ -23718,7 +22847,7 @@ msgstr[1] "szorty" msgstr[2] "szorty" msgstr[3] "szorty" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "Szorty w kolorze khaki." @@ -23731,7 +22860,7 @@ msgstr[1] "szorty z kieszeniami" msgstr[2] "szorty z kieszeniami" msgstr[3] "szorty z kieszeniami" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "Szorty typu cargo z wieloma kieszeniami o przyzwoitej pojemności." @@ -23744,7 +22873,7 @@ msgstr[1] "szorty dżinsowe" msgstr[2] "szorty dżinsowe" msgstr[3] "szorty dżinsowe" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "Szorty dżinsowe." @@ -23819,7 +22948,7 @@ msgstr[1] "spodnie w paski" msgstr[2] "spodnie w paski" msgstr[3] "spodnie w paski" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "Para spodni w poprzeczne czarno-białe paski." @@ -23854,7 +22983,7 @@ msgstr[1] "zimowe spodnie wojskowe" msgstr[2] "zimowe spodnie wojskowe" msgstr[3] "zimowe spodnie wojskowe" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -24520,7 +23649,7 @@ msgstr "Chowasz swój %s do pochwy" #. ~ Use action holster_prompt for axe ring holster. #: lang/json/ARMOR_from_json.py msgid "Sheath axe" -msgstr "" +msgstr "Schowaj siekierę" #. ~ Description for axe ring holster #: lang/json/ARMOR_from_json.py @@ -25291,74 +24420,6 @@ msgstr "" "podróży; zapewnia przyzwoitą ilość miejsca, ale taszczenie jej ze sobą nie " "jest zbyt wygodne." -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "pojemna torba podróżna ocalonych" -msgstr[1] "pojemna torba podróżna ocalonych" -msgstr[2] "pojemna torba podróżna ocalonych" -msgstr[3] "pojemna torba podróżna ocalonych" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Spersonalizowana torba podróżna ocalonych. Wytrzymała i przemyślnie " -"skonstruowana by pomieścić tyle sprzętu ile się da." - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "plecak ocalonych" -msgstr[1] "plecak ocalonych" -msgstr[2] "plecak ocalonych" -msgstr[3] "plecak ocalonych" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" -"Spersonalizowany plecak. Wytrzymały i przemyślnie skonstruowany by pomieścić" -" tyle sprzętu ile się da." - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "plecak podróżny ocalonych" -msgstr[1] "plecak podróżny ocalonych" -msgstr[2] "plecak podróżny ocalonych" -msgstr[3] "plecak podróżny ocalonych" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Spersonalizowany pojemny plecak podróżny. Wytrzymały i przemyślnie " -"skonstruowany by pomieścić tyle sprzętu ile się da." - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "sakwa biegacza ocalonych" -msgstr[1] "sakwa biegacza ocalonych" -msgstr[2] "sakwa biegacza ocalonych" -msgstr[3] "sakwa biegacza ocalonych" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" -"Spersonalizowana noszona w talii lekka sakwa biegacza. Wytrzymała i " -"przemyślnie skonstruowana by pomieścić tyle sprzętu ile się da." - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -25929,42 +24990,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "ubiór nomada" -msgstr[1] "ubiór nomada" -msgstr[2] "ubiór nomada" -msgstr[3] "ubiór nomada" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" -"Prowizoryczny ubiór z ubrań sprzed Kataklizmu, przeznaczony do długich " -"wędrówek. Ma sporą przestrzeń w kieszeniach." - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "lekki ubiór nomada" -msgstr[1] "lekki ubiór nomada" -msgstr[2] "lekki ubiór nomada" -msgstr[3] "lekki ubiór nomada" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" -"Prowizoryczny ubiór z ubrań sprzed Kataklizmu, przeznaczony do długich " -"letnich wędrówek. Oferuje mniejszą przestrzeń na przedmioty i słabszą " -"ochronę niż zwykły ubiór nomada." - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -26022,11 +25047,12 @@ msgstr[3] "zbroi do tłumienia zamieszek" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" -"Czarny pancerz używany przez policjantów podczas zamieszek, kiedy były to " -"tylko zamieszki. Z przodu umieszczono napis POLICJA." +"Czarny plastikowy pancerz płytowy używany przez policjantów podczas " +"zamieszek, kiedy były to tylko zamieszki. Z przodu umieszczono napis " +"POLICJA." #: lang/json/ARMOR_from_json.py msgid "O-yoroi" @@ -26041,23 +25067,6 @@ msgstr[3] "o-yoroi" msgid "An ornamental suit of Japanese samurai armor." msgstr "Ornamentalna japońska zbroja samuraja." -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "ubiór szabrownika" -msgstr[1] "ubiór szabrownika" -msgstr[2] "ubiór szabrownika" -msgstr[3] "ubiór szabrownika" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" -"Solidny ubiór szabrownika z przerobionego sprzętu ochronnego sprzed " -"Kataklizmu. Ma porą przestrzeń w kieszeniach." - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -26240,90 +25249,51 @@ msgstr[2] "" msgstr[3] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "ognioodporny kombinezon ocalonych" -msgstr[1] "ognioodporny kombinezon ocalonych" -msgstr[2] "ognioodporny kombinezon ocalonych" -msgstr[3] "ognioodporny kombinezon ocalonych" +msgid "gambeson" +msgid_plural "gambesons" +msgstr[0] "przeszywanica" +msgstr[1] "przeszywanica" +msgstr[2] "przeszywanica" +msgstr[3] "przeszywanica" -#. ~ Description for survivor firesuit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" -"Ciężki ręcznie przerabiany kombinezon ochronny z pociętej kamizelki " -"kuloodpornej połączonej ze wzmocnionym ognioodpornym kombinezonem z nomeksu." -" Chroni przed ogniem i żywiołami." +"Gruba kamizelka z pikowanej materii, noszona pod kolczugą lub inną zbroją. " +"Lub noszona sama w sobie jeżeli nie było można sobie kupić właściwej zbroi." #: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "zimowy kombinezon ocalonych" -msgstr[1] "zimowy kombinezon ocalonych" -msgstr[2] "zimowy kombinezon ocalonych" -msgstr[3] "zimowy kombinezon ocalonych" - -#. ~ Description for winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" -"Domowej roboty ciężki lecz ciepły strój ochronny powstały z połączenia " -"wzmocnionej kamizelki kuloodpornej i ocieplanego sztucznym futrem skórzanego" -" kombinezonu. Chroni zarówno przed żywiołami jak i obrażeniami." +"Gruba kurtka z pikowanego materiału, przeznaczona do noszenia pod pancerzem " +"lub inną zbroją. Ta zawiera warstwy kewlaru dodane dla lepszej ochrony." #: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." -msgstr "" -"Ciepła, ciężka i ponadwymiarowa zbroja wykonana ręcznie z wzmocnionej " -"kamizelki kuloodpornej i skórzanego kombinezonu ocieplanego sztucznym " -"futrem. Chroni zarówno przed żywiołami, jak i przed urazami." - -#: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" -msgstr[0] "przeszywanica" -msgstr[1] "przeszywanica" -msgstr[2] "przeszywanica" -msgstr[3] "przeszywanica" - -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" -"Gruba kamizelka z pikowanej materii, noszona pod kolczugą lub inną zbroją. " -"Lub noszona sama w sobie jeżeli nie było można sobie kupić właściwej zbroi." - -#: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -26350,52 +25320,6 @@ msgstr "" "całkowitą ochronę przed promieniowaniem otoczenia. Dla pełnej ochrony wymaga" " osobnej maski przeciwgazowej." -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "ciężki kombinezon ocalonych" -msgstr[1] "ciężki kombinezon ocalonych" -msgstr[2] "ciężki kombinezon ocalonych" -msgstr[3] "ciężki kombinezon ocalonych" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" -"Domowej roboty ciężki strój ochronny powstały z połączenia pociętej " -"kamizelki kuloodpornej i wzmacnianego metalowymi płytkami skórzanego " -"kombinezonu. Chroni zarówno przed żywiołami jak i obrażeniami." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "lekki kombinezon ocalonych" -msgstr[1] "lekki kombinezon ocalonych" -msgstr[2] "lekki kombinezon ocalonych" -msgstr[3] "lekki kombinezon ocalonych" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" -"Domowej roboty lekki kombinezon ochronny powstały z połączenia pociętej " -"kamizelki kuloodpornej i wzmacnianego materiałowego kombinezonu. Chroni " -"zarówno przed żywiołami jak i obrażeniami." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -26482,24 +25406,6 @@ msgstr "" "Pełny bawełniany garnitur. Wyjdź naprzeciw apokalipsie jako prawdziwy " "dżentelmen." -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "kombinezon ocalonych" -msgstr[1] "kombinezon ocalonych" -msgstr[2] "kombinezon ocalonych" -msgstr[3] "kombinezon ocalonych" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" -"Domowej roboty kombinezon ochronny powstały z połączenia kamizelki " -"kuloodpornej i wzmacnianego skórzanego kombinezonu. Chroni zarówno przed " -"żywiołami jak i obrażeniami." - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -26511,11 +25417,11 @@ msgstr[3] "pancerz SWAT" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" -"Czarny kuloodporny kombinezon z licznymi kieszeniami. Ma na plecach wyszyte " -"słowo SWAT." +"Czarny pancerz pokrywający ważne części klatki piersiowej, ramion i nóg. Na " +"plecach wyryty jest napis SWAT." #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -26535,55 +25441,6 @@ msgstr "" "motocyklistów do ochrony przed wiatrem i warunkami pogodowymi. Lekkie i " "bardzo komfortowe." -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"Domowej roboty ciężki lecz ciepły strój ochronny powstały z połączenia " -"wzmocnionej kamizelki kuloodpornej i ocieplanego skórzanego kombinezonu. " -"Chroni zarówno przed żywiołami jak i obrażeniami." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "kombinezon ocalonych XL" -msgstr[1] "kombinezon ocalonych XL" -msgstr[2] "kombinezon ocalonych XL" -msgstr[3] "kombinezon ocalonych XL" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" -"Ręcznej roboty masywny strój ochronny powstały z połączenia kamizelki " -"kuloodpornej i wzmacnianego skórzanego kombinezonu. Chroni zarówno przed " -"żywiołami jak i obrażeniami." - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"Domowej roboty masywny ciężki strój ochronny powstały z połączenia pociętej " -"kamizelki kuloodpornej i wzmacnianego metalowymi płytkami skórzanego " -"kombinezonu. Chroni zarówno przed żywiołami jak i obrażeniami." - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -26616,6 +25473,9 @@ msgid "" "rank and ribbons. Just looking at it gives you an air of authority. " "Perhaps not the most practical military wear, but a very stylish option." msgstr "" +"Oficerski paradny mundur wojskowy sprzed Kataklizmu, z rangami i wstążkami. " +"Już sam jego wygląd emanuje autorytetem. Może nie jest to najbardziej " +"praktyczny strój wojskowy, ale za to bardzo stylowy." #: lang/json/ARMOR_from_json.py msgid "bikini bottom" @@ -26669,58 +25529,6 @@ msgstr[3] "kaptur do nurkowania" msgid "A neoprene hood, commonly worn by divers." msgstr "Neoprenowy kaptur nurka stanowiący uzupełnienie stroju do nurkowania." -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "kaptur do nurkowania ocalonych" -msgstr[1] "kaptur do nurkowania ocalonych" -msgstr[2] "kaptur do nurkowania ocalonych" -msgstr[3] "kaptur do nurkowania ocalonych" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" -"Przerabiany wzmacniany kaptur z neoprenu i Kevlaru, bardzo trwały i " -"wytrzymały." - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "kombinezon do nurkowania ocalonych" -msgstr[1] "kombinezon do nurkowania ocalonych" -msgstr[2] "kombinezon do nurkowania ocalonych" -msgstr[3] "kombinezon do nurkowania ocalonych" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" -"Domowej roboty lekki kombinezon ochronny powstały z połączenia pociętej " -"kamizelki kuloodpornej i wzmacnianego neoprenowego kombinezonu. Chroni " -"zarówno przed żywiołami jak i obrażeniami." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "rękawice do nurkowania ocalonych" -msgstr[1] "rękawice do nurkowania ocalonych" -msgstr[2] "rękawice do nurkowania ocalonych" -msgstr[3] "rękawice do nurkowania ocalonych" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" -"Para przerabianych wzmacnianych Kevlarem rękawic z neoprenu zmodyfikowanych " -"do ochrony przed żywiołami i komfortu nawet w ekstremalnych warunkach." - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -26860,7 +25668,7 @@ msgstr[1] "lorica segmentata" msgstr[2] "lorica segmentata" msgstr[3] "lorica segmentata" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -27080,7 +25888,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -27159,31 +25967,6 @@ msgid "" msgstr "" "Lekka kamizelka chroniąca przed postrzałem. Można ją nosić pod ubraniem." -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "lekka zbroja ocalonych" -msgstr[1] "lekka zbroja ocalonych" -msgstr[2] "lekka zbroja ocalonych" -msgstr[3] "lekka zbroja ocalonych" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" -"Lekki, wykonywany na miarę pancerz z kevlaru i wytrzymałej tkaniny. W " -"większości wodoodporny." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -27520,7 +26303,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -27623,7 +26406,7 @@ msgstr[1] "strój francuskiej pokojówki" msgstr[2] "strój francuskiej pokojówki" msgstr[3] "strój francuskiej pokojówki" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "Strój francuskiej pokojówki, z białym koronkowym fartuszkiem." @@ -28000,7 +26783,7 @@ msgstr[1] "slipki bokserki" msgstr[2] "slipki bokserki" msgstr[3] "slipki bokserki" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "Wiekowe pytanie: bokserki czy slipki? Twoja odpowiedź? Tak." @@ -28013,7 +26796,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "Wiekowe pytanie: bokserki czy slipki? Twoja odpowiedź? Wielkie." @@ -28026,7 +26809,7 @@ msgstr[1] "szorty bokserki" msgstr[2] "szorty bokserki" msgstr[3] "szorty bokserki" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -28040,7 +26823,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -28055,7 +26838,7 @@ msgstr[1] "kobiece szorty" msgstr[2] "kobiece szorty" msgstr[3] "kobiece szorty" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -28071,7 +26854,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -28102,7 +26885,7 @@ msgstr[1] "slipki" msgstr[2] "slipki" msgstr[3] "slipki" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "Slipki to wygodna męska bielizna." @@ -28303,7 +27086,7 @@ msgstr[1] "figi" msgstr[2] "figi" msgstr[3] "figi" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -28385,7 +27168,7 @@ msgstr[1] "rajtuzy" msgstr[2] "rajtuzy" msgstr[3] "rajtuzy" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -28418,7 +27201,7 @@ msgstr[1] "elastyczne spodenki sportowe" msgstr[2] "elastyczne spodenki sportowe" msgstr[3] "elastyczne spodenki sportowe" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -28464,714 +27247,1975 @@ msgstr "" "woltyżerki, trykot zapewnia ogólne okrycie z dużą elastycznością." #: lang/json/ARMOR_from_json.py -msgid "sheet" -msgid_plural "sheets" -msgstr[0] "prześcieradło" -msgstr[1] "prześcieradło" -msgstr[2] "prześcieradło" -msgstr[3] "prześcieradło" +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "ubiór nomada" +msgstr[1] "ubiór nomada" +msgstr[2] "ubiór nomada" +msgstr[3] "ubiór nomada" -#. ~ Description for sheet +#. ~ Description for nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" -" a bunch of rags." +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." msgstr "" -"Duże materiałowe prześcieradło, które można użyć do posłania łóżka lub jako " -"zastępcze zasłony. Można je też pociąć na sporą ilość szmat." - -#: lang/json/ARMOR_from_json.py -msgid "blanket" -msgid_plural "blankets" -msgstr[0] "koc" -msgstr[1] "koc" -msgstr[2] "koc" -msgstr[3] "koc" - -#. ~ Description for blanket -#: lang/json/ARMOR_from_json.py -msgid "Hiding under here will not protect you from the monsters." -msgstr "Chowanie się pod kocem nie uchroni cię przed potworami." +"Prowizoryczny ubiór z ubrań sprzed Kataklizmu, przeznaczony do długich " +"wędrówek. Ma sporą przestrzeń w kieszeniach." #: lang/json/ARMOR_from_json.py -msgid "down-filled blanket" -msgid_plural "down-filled blankets" -msgstr[0] "puchowy koc" -msgstr[1] "puchowy koc" -msgstr[2] "puchowy koc" -msgstr[3] "puchowy koc" +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "lekki ubiór nomada" +msgstr[1] "lekki ubiór nomada" +msgstr[2] "lekki ubiór nomada" +msgstr[3] "lekki ubiór nomada" -#. ~ Description for down-filled blanket +#. ~ Description for light nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"Hiding under here will not protect you from the monsters, but it'll keep you" -" warm." +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." msgstr "" -"Chowanie się pod puchowym kocem nie uchroni cię przed potworami, ale " -"przynajmniej będzie ciepło." +"Prowizoryczny ubiór z ubrań sprzed Kataklizmu, przeznaczony do długich " +"letnich wędrówek. Oferuje mniejszą przestrzeń na przedmioty i słabszą " +"ochronę niż zwykły ubiór nomada." #: lang/json/ARMOR_from_json.py -msgid "fur blanket" -msgid_plural "fur blankets" -msgstr[0] "futrzany koc" -msgstr[1] "futrzany koc" -msgstr[2] "futrzany koc" -msgstr[3] "futrzany koc" +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "ubiór szabrownika" +msgstr[1] "ubiór szabrownika" +msgstr[2] "ubiór szabrownika" +msgstr[3] "ubiór szabrownika" -#. ~ Description for fur blanket +#. ~ Description for scavenger gear #: lang/json/ARMOR_from_json.py -msgid "A heavy fur blanket that covers most of your body." -msgstr "Ciężki futrzany koc, który przykryje prawie całe ciało." +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" +"Solidny ubiór szabrownika z przerobionego sprzętu ochronnego sprzed " +"Kataklizmu. Ma porą przestrzeń w kieszeniach." #: lang/json/ARMOR_from_json.py -msgid "quilt" -msgid_plural "quilts" -msgstr[0] "kołdra" -msgstr[1] "kołdry" -msgstr[2] "kołder" -msgstr[3] "kołder" +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "lekki kombinezon ocalonych" +msgstr[1] "lekki kombinezon ocalonych" +msgstr[2] "lekki kombinezon ocalonych" +msgstr[3] "lekki kombinezon ocalonych" -#. ~ Description for quilt +#. ~ Description for light survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " -"cozy!" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." msgstr "" -"Duża, komfortowa kołdra wykonana z grubej wełny w trójkątny wzór. Niezwykle " -"przytulna!" +"Domowej roboty lekki kombinezon ochronny powstały z połączenia pociętej " +"kamizelki kuloodpornej i wzmacnianego materiałowego kombinezonu. Chroni " +"zarówno przed żywiołami jak i obrażeniami." #: lang/json/ARMOR_from_json.py -msgid "patchwork quilt" -msgid_plural "patchwork quilts" -msgstr[0] "patchworkowa kołdra" -msgstr[1] "patchworkowe kołdry" -msgstr[2] "patchworkowych kołder" -msgstr[3] "patchworkowych kołder" +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for patchwork quilt #: lang/json/ARMOR_from_json.py -msgid "A huge, patchwork wool quilt. Very, very warm." -msgstr "Wielka, patchworkowa, wełniana kołdra. Bardzo, bardzo ciepła." +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "kombinezon ocalonych" +msgstr[1] "kombinezon ocalonych" +msgstr[2] "kombinezon ocalonych" +msgstr[3] "kombinezon ocalonych" +#. ~ Description for survivor suit #: lang/json/ARMOR_from_json.py -msgid "sleeping bag" -msgid_plural "sleeping bags" -msgstr[0] "śpiwór" -msgstr[1] "śpiwóry" -msgstr[2] "śpiwórów" -msgstr[3] "śpiwórów" +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" +"Domowej roboty kombinezon ochronny powstały z połączenia kamizelki " +"kuloodpornej i wzmacnianego skórzanego kombinezonu. Chroni zarówno przed " +"żywiołami jak i obrażeniami." -#. ~ Use action msg for sleeping bag. #: lang/json/ARMOR_from_json.py -msgid "You roll up the sleeping bag, preparing it for transport." -msgstr "Rolujesz śpiwór przygotowując go do transportu." +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "kombinezon ocalonych XL" +msgstr[1] "kombinezon ocalonych XL" +msgstr[2] "kombinezon ocalonych XL" +msgstr[3] "kombinezon ocalonych XL" -#. ~ Description for sleeping bag +#. ~ Description for XL survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A large sleeping bag that covers you head to toe. This one is medium " -"weight." -msgstr "Duży śpiwór, który okrywa cię od stóp do głów. Ten ma średnią wagę." +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" +"Ręcznej roboty masywny strój ochronny powstały z połączenia kamizelki " +"kuloodpornej i wzmacnianego skórzanego kombinezonu. Chroni zarówno przed " +"żywiołami jak i obrażeniami." #: lang/json/ARMOR_from_json.py -msgid "cestus" -msgid_plural "cestuses" -msgstr[0] "cestus" -msgstr[1] "cestus" -msgstr[2] "cestus" -msgstr[3] "cestus" +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "zimowy kombinezon ocalonych" +msgstr[1] "zimowy kombinezon ocalonych" +msgstr[2] "zimowy kombinezon ocalonych" +msgstr[3] "zimowy kombinezon ocalonych" -#. ~ Description for cestus +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A leather hand and arm wrap incorporating metal plates over the knuckles to " -"improve punching power and defence." +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" -"Skórzana owijka na dłoń i ramię wyposażona w metalowe płytki na kłykciach, " -"które poprawiają siłę ciosu i obronę." +"Domowej roboty ciężki lecz ciepły strój ochronny powstały z połączenia " +"wzmocnionej kamizelki kuloodpornej i ocieplanego skórzanego kombinezonu. " +"Chroni zarówno przed żywiołami jak i obrażeniami." #: lang/json/ARMOR_from_json.py -msgid "pair of studded gloves" -msgid_plural "pairs of studded gloves" +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of studded gloves -#: lang/json/ARMOR_from_json.py -msgid "A pair of gloves with studded metal knuckles." -msgstr "Para rękawic z metalowymi knykciami nabijanymi ćwiekami." - +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "impact knuckles" -msgid_plural "impact knuckles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" +"Domowej roboty ciężki lecz ciepły strój ochronny powstały z połączenia " +"wzmocnionej kamizelki kuloodpornej i ocieplanego sztucznym futrem skórzanego" +" kombinezonu. Chroni zarówno przed żywiołami jak i obrażeniami." -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for XL winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of thick steel plates covering your proximal phalange. They are " -"strapped to your hands with metal braces." +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." msgstr "" -"Para grubych stalowych płyt pokrywających paliczek podstawny. Są one " -"przymocowane do rąk za pomocą metalowych klamer." +"Ciepła, ciężka i ponadwymiarowa zbroja wykonana ręcznie z wzmocnionej " +"kamizelki kuloodpornej i skórzanego kombinezonu ocieplanego sztucznym " +"futrem. Chroni zarówno przed żywiołami, jak i przed urazami." #: lang/json/ARMOR_from_json.py -msgid "skewer knuckles" -msgid_plural "skewer knuckles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "kombinezon do nurkowania ocalonych" +msgstr[1] "kombinezon do nurkowania ocalonych" +msgstr[2] "kombinezon do nurkowania ocalonych" +msgstr[3] "kombinezon do nurkowania ocalonych" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for survivor wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A single sturdy spike protrudes 5cm from the back of your hand. They are " -"strapped to your hands with metal braces." +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." msgstr "" -"Pojedynczy solidny kolec wystający 5cm z grzbietu dłoni. Są one przymocowane" -" do rąk za pomocą metalowych klamer." +"Domowej roboty lekki kombinezon ochronny powstały z połączenia pociętej " +"kamizelki kuloodpornej i wzmacnianego neoprenowego kombinezonu. Chroni " +"zarówno przed żywiołami jak i obrażeniami." #: lang/json/ARMOR_from_json.py -msgid "telescoping umbrella" -msgid_plural "telescoping umbrellas" -msgstr[0] "składany parasol" -msgstr[1] "składany parasol" -msgstr[2] "składany parasol" -msgstr[3] "składany parasol" +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "lekkie buty ocalonych" +msgstr[1] "lekkie buty ocalonych" +msgstr[2] "lekkie buty ocalonych" +msgstr[3] "lekkie buty ocalonych" -#. ~ Description for telescoping umbrella +#. ~ Description for pair of light survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A telescoping umbrella which collapses down for easy storage, useful for " -"keeping dry when wielded." +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." msgstr "" -"Teleskopowy parasol składany się dla łatwego przechowywania, przydatny gdy " -"trzymasz go chroniąc się przed deszczem." +"Para spersonalizowanych, opancerzonych kevlarem butów z tkaniny. " +"Przedkładając komfort nad ochronę, buty te zapewnią ci ruch i zwinność, " +"nawet gdy będziesz po kolana w trupach." #: lang/json/ARMOR_from_json.py -msgid "bag of holding" -msgid_plural "bags of holding" +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bag of holding -#: lang/json/ARMOR_from_json.py -msgid "" -"A sleek, unfathomably-complicated machine covered in dozens of blinking " -"lights, worn on the back by sturdy faux-leather straps. An electrode " -"dangles from the back, attaching to your forehead. How it operates without " -"annihilating spacetime isn't quite clear, but a localized portal allows " -"things to be stored in an extradimensional space." -msgstr "" -"Elegancka, niewyobrażalnie skomplikowana maszyna pokryta dziesiątkami " -"mrugających światełek, noszona na plecach na solidnych paskach ze sztucznej " -"skóry. Z tyłu zwisa elektroda, którą można przymocować do czoła. Nie jest do" -" końca jasne, jak to działa nie powodując anihilacji czasoprzestrzeni, ale " -"lokalny portal pozwala na przechowywanie rzeczy w przestrzeni " -"pozawymiarowej." - #: lang/json/ARMOR_from_json.py -msgid "titanium vest" -msgid_plural "titanium vests" -msgstr[0] "tytanowa kamizelka" -msgstr[1] "tytanowa kamizelka" -msgstr[2] "tytanowa kamizelka" -msgstr[3] "tytanowa kamizelka" +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "buty ocalonych" +msgstr[1] "buty ocalonych" +msgstr[2] "buty ocalonych" +msgstr[3] "buty ocalonych" -#. ~ Description for titanium vest +#. ~ Description for pair of survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight armor vest made of pieces of titanium sewn together, with " -"cloth padding for comfort. Brittle against blunt force, but highly " -"resistant to cuts and corrosion." +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." msgstr "" -"Lekka opancerzona kamizelka wykonana z kawałków tytanu zszytych razem, z " -"wyściółką z tkaniny dla zapewnienia wygody. Krucha w starciu z tępym " -"narzędziem, ale bardzo odporna na cięcia i korozję." +"Para spersonalizowanych skórzanych butów opancerzonych Kevlarem. Zapewniają " +"komfort i ochronę, dzięki czemu utrzymają cię przy życiu, nawet gdy będziesz" +" po kolana w trupach." #: lang/json/ARMOR_from_json.py -msgid "sentinel-lx cloak" -msgid_plural "sentinel-lx cloaks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "buty ocalonych XL" +msgstr[1] "buty ocalonych XL" +msgstr[2] "buty ocalonych XL" +msgstr[3] "buty ocalonych XL" -#. ~ Description for sentinel-lx cloak +#. ~ Description for pair of XL survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " -"unnatural shadow. Made from woven graphene, its lightweight and resistant, " -"but cannot be repaired" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." msgstr "" -"Czarna jak noc peleryna sentinel-lx wisi na ramionach niczym solidny, " -"nienaturalny cień. Wykonana z tkanego grafenu, jest lekka i wytrzymała, ale " -"nie można jej naprawić." +"Para masywnych spersonalizowanych skórzanych butów opancerzonych Kevlarem. " +"Zapewniają komfort i ochronę, dzięki czemu utrzymają cię przy życiu, nawet " +"gdy będziesz po kolana w trupach." #: lang/json/ARMOR_from_json.py -msgid "XL jeans" -msgid_plural "pairs of XL jeans" +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL jeans +#. ~ Description for pair of faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue jeans with two deep pockets." -msgstr "Niebieskie dżinsy XL z dwiema głębokimi kieszeniami." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" +"Para spersonalizowanych, opancerzonych butów z kevlaru. Ciepłe dzięki " +"podszewce ze sztucznego futra, utrzymają cię przy życiu, nawet gdy będziesz " +"po kolana w trupach." #: lang/json/ARMOR_from_json.py -msgid "XL work pants" -msgid_plural "pairs of XL work pants" +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for pair of XL faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue work pants." -msgstr "Para błękitnych spodni roboczych XL." +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" +"Para wielkich, spersonalizowanych, opancerzonych butów z kevlaru. Ciepłe " +"dzięki podszewce ze sztucznego futra, utrzymają cię przy życiu, nawet gdy " +"będziesz po kolana w trupach." #: lang/json/ARMOR_from_json.py -msgid "A pair of XL gray work pants." -msgstr "Para szarych spodni roboczych XL." +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "zimowe buty ocalonych" +msgstr[1] "zimowe buty ocalonych" +msgstr[2] "zimowe buty ocalonych" +msgstr[3] "zimowe buty ocalonych" +#. ~ Description for pair of winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL light-blue work pants." -msgstr "Para jasnoniebieskich spodni roboczych XL." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" +"Para spersonalizowanych, opancerzonych kevlarem butów. Ciepłe dzięki " +"podszewce z prawdziwego futra, utrzymają cię przy życiu, nawet gdy będziesz " +"po kolana w trupach." #: lang/json/ARMOR_from_json.py -msgid "XL work t-shirt" -msgid_plural "XL work t-shirts" +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL work t-shirt #: lang/json/ARMOR_from_json.py -msgid "A gray XL work t-shirt with a small front pocket." -msgstr "Szary t-shirt roboczy XL z małą kieszenią na przedzie." +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "buty do nurkowania ocalonych" +msgstr[1] "buty do nurkowania ocalonych" +msgstr[2] "buty do nurkowania ocalonych" +msgstr[3] "buty do nurkowania ocalonych" +#. ~ Description for pair of survivor wetsuit boots #: lang/json/ARMOR_from_json.py -msgid "An XL blue work t-shirt with a small front pocket." -msgstr "Błękitny t-shirt roboczy XL z małą kieszenią na przedzie." +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" +"Para spersonalizowanych, opancerzonych kevlarem butów neoprenowych. Dzięki " +"nim pozostaniesz suchy i żywy, bez względu na to, czy będzie piekło, czy " +"słota." #: lang/json/ARMOR_from_json.py -msgid "An XL gray work t-shirt with a small front pocket." -msgstr "Szary t-shirt roboczy XL z małą kieszenią na przedzie." +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "lekkie rękawice ocalonych" +msgstr[1] "lekkie rękawice ocalonych" +msgstr[2] "lekkie rękawice ocalonych" +msgstr[3] "lekkie rękawice ocalonych" +#. ~ Description for pair of light survivor gloves #: lang/json/ARMOR_from_json.py -msgid "An XL light-blue work t-shirt with a small front pocket." -msgstr "Jasnoniebieski t-shirt roboczy XL z małą kieszenią na przedzie." +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" +"Para spersonalizowanych, opancerzonych kevlarem rękawic z tkaniny. Zostały " +"one zaprojektowane przede wszystkim z myślą o wygodzie." #: lang/json/ARMOR_from_json.py -msgid "Uplifted SWAT armor" -msgid_plural "Uplifted SWAT armors" +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Uplifted SWAT armor -#: lang/json/ARMOR_from_json.py -msgid "" -"An extra large suit of black bulletproof armor with lots of pockets. The " -"word SWAT is emblazoned across the back. Specifically designed for Uplifted" -" officers such as Mastodons." -msgstr "" -"Bardzo duży kombinezon w czarnej kuloodpornej zbroi z mnóstwem kieszeni. Na " -"plecach widnieje napis SWAT. Zaprojektowany specjalnie dla Wzniesionych " -"funkcjonariuszy, takich jak Mastodonty." - #: lang/json/ARMOR_from_json.py -msgid "empty XL ballistic vest" -msgid_plural "empty XL ballistic vests" +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for empty XL ballistic vest +#. ~ Description for pair of fingerless light survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"Oversized ballistic armor without any armor inserts. The soft armor plate " -"carrier is still protective but it won't stop high energy projectiles." +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." msgstr "" -"Przerośnięty pancerz balistyczny bez żadnych wkładów pancernych. Miękki " -"pancerz nadal chroni, ale nie zatrzyma pocisków o dużej energii." +"Para spersonalizowanych, opancerzonych kevlarem płóciennych rękawic bez " +"palców. Zostały one zaprojektowane przede wszystkim z myślą o wygodzie." #: lang/json/ARMOR_from_json.py -msgid "XL ESAPI ballistic vest" -msgid_plural "XL ESAPI ballistic vests" +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL ESAPI ballistic vest -#: lang/json/ARMOR_from_json.py -msgid "Oversized ballistic armor with ESAPI ceramic armor plates." -msgstr "" -"Przerośnięty pancerz balistyczny z ceramicznymi płytami pancernymi ESAPI." - #: lang/json/ARMOR_from_json.py -msgid "pair of XL combat boots" -msgid_plural "pair of XL combat boots" +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of fingerless survivor gloves #: lang/json/ARMOR_from_json.py -msgid "Modern oversized reinforced tactical combat boots. Very durable." +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." msgstr "" -"Współczesne wzmacniane taktyczne buty wojskowe. Bardzo wytrzymałe i bardzo " -"duże." +"Para spersonalizowanych, opancerzonych kevlarem skórzanych rękawic bez " +"palców. Zapewniają równowagę między wygodą a ochroną." #: lang/json/ARMOR_from_json.py -msgid "pair of XL tactical gloves" -msgid_plural "pair of XL tactical gloves" +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "rękawice ocalonych" +msgstr[1] "rękawice ocalonych" +msgstr[2] "rękawice ocalonych" +msgstr[3] "rękawice ocalonych" + +#. ~ Description for pair of survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " -"police and military units." +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." msgstr "" -"Para wzmocnionych kevlarem przerośniętych rękawic używanych w siłach " -"policyjnych i w wojsku." +"Para spersonalizowanych, skórzanych rękawic opancerzonych kevlarem. " +"Zapewniają one równowagę między wygodą a ochroną." #: lang/json/ARMOR_from_json.py -msgid "pair of Killophant gloves" -msgid_plural "pair of Killophant gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "rękawice ocalonych XL" +msgstr[1] "rękawice ocalonych XL" +msgstr[2] "rękawice ocalonych XL" +msgstr[3] "rękawice ocalonych XL" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of XL survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of reinforced Kevlar tactical gloves, specifically designed to " -"accommodate three-fingered Killophants. Thinner than regular oversized " -"tactical gloves." +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." msgstr "" -"Para wzmocnionych kevlarowych rękawic taktycznych, zaprojektowanych " -"specjalnie dla trójpalczastych Kilofantów. Cieńsze niż zwykłe, przerośnięte " -"rękawice taktyczne." +"Masywna para skórzanych rękawic opancerzonych kevlarem. Zapewniają równowagę" +" między ochroną a wygodą." #: lang/json/ARMOR_from_json.py -msgid "XL leather belt" -msgid_plural "XL leather belts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "zimowe rękawice ocalonych" +msgstr[1] "zimowe rękawice ocalonych" +msgstr[2] "zimowe rękawice ocalonych" +msgstr[3] "zimowe rękawice ocalonych" -#. ~ Description for XL leather belt +#. ~ Description for pair of winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL leather belt. Useful for making your pair of pants fit if you need " -"really big pants." -msgstr "Skórzany pas XL. Użyteczny by dopasować parę dużych spodni." +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" +"Para spersonalizowanych, opancerzonych kevlarem rękawic. Są one wyłożone " +"prawdziwym futrem." #: lang/json/ARMOR_from_json.py -msgid "XL police duty belt" -msgid_plural "XL police duty belts" +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL police duty belt -#: lang/json/ARMOR_from_json.py -msgid "" -"An XL black leather belt used by extremely large uplifted police officers. " -"It has several pouches and a holder for a baton." -msgstr "" -"Czarny skórzany pas XL używany przez policjantów. Ma kilka kieszeni i uchwyt" -" na pałkę. " - #: lang/json/ARMOR_from_json.py -msgid "XL tactical full helmet" -msgid_plural "XL tactical full helmets" +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL tactical full helmet +#. ~ Description for pair of faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing massive black helmet that covers your entire face and " -"neck, providing excellent protection from all sorts of damage." +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." msgstr "" -"Pełnowymiarowy masywny czarny hełm, który osłania cała twarz i szyję, " -"zapewniając doskonałą ochronę przed całą gamą obrażeń." +"Para spersonalizowanych, opancerzonych rękawic z kevlaru. Są one wyłożone " +"sztucznym futrem." #: lang/json/ARMOR_from_json.py -msgid "XL leg ammo pouch" -msgid_plural "XL leg ammo pouches" +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL leg ammo pouch +#. ~ Description for pair of XL faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" -" two magazines close at hand." +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." msgstr "" -"Materiałowa ładownica XL noszona na nodze, w której zmieszczą się dwa " -"magazynki, które dzięki temu będą pod ręką." +"Para spersonalizowanych, przerośniętych, opancerzonych rękawic z kevlaru. Są" +" one wyłożone sztucznym futrem." #: lang/json/ARMOR_from_json.py -msgid "crew jumpsuit" -msgid_plural "crew jumpsuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "rękawice do nurkowania ocalonych" +msgstr[1] "rękawice do nurkowania ocalonych" +msgstr[2] "rękawice do nurkowania ocalonych" +msgstr[3] "rękawice do nurkowania ocalonych" -#. ~ Description for crew jumpsuit +#. ~ Description for pair of survivor wetsuit gloves #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " -"some freight hauling association or another. This one is a standard design " -"favored by spacers, with ample, easy access pockets." +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." msgstr "" -"Lekki kombinezon z tkaniny ozdobiony wyblakłymi znakami firmowymi jakiegoś " -"stowarzyszenia przewoźników towarowych. Ten jest standardowym wzorem " -"lubianym przez kosmonautów, z licznymi, łatwo dostępnymi kieszeniami." +"Para przerabianych wzmacnianych Kevlarem rękawic z neoprenu zmodyfikowanych " +"do ochrony przed żywiołami i komfortu nawet w ekstremalnych warunkach." #: lang/json/ARMOR_from_json.py -msgid "communications cap" -msgid_plural "communications caps" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "szarfa nomada" +msgstr[1] "szarfa nomada" +msgstr[2] "szarfa nomada" +msgstr[3] "szarfa nomada" -#. ~ Description for communications cap +#. ~ Description for nomad cowl #: lang/json/ARMOR_from_json.py msgid "" -"A padded cotton cap built around an augmented reality headset. During " -"normal operation it would provide visual information about a ship subsystems" -" and a communications link with the rest of the crew, but severed from a " -"spaceship, only their hearing protection function retains any utility." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." msgstr "" -"Wyściełana bawełniana czapka, wokół której zbudowany jest zestaw słuchawkowy" -" rozszerzonej rzeczywistości. Podczas normalnej pracy zapewnia wizualne " -"informacje o podsystemach statku i łączność z resztą załogi, ale po " -"odłączeniu od statku kosmicznego, jedynie funkcja ochrony słuchu zachowuje " -"swoją użyteczność." +"Prowizoryczna szarfa z osłoną chroniącą oczy przed słońcem i deszczem, " +"zaprojektowana na dalekie wyprawy." #: lang/json/ARMOR_from_json.py -msgid "HERC rig" -msgid_plural "HERC rigs" +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for HERC rig +#. ~ Description for nomad cowl XL #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " -"about in zero-g, Mars, the bottom of the Pacific, or other generally " -"inhospitable environments. It has several deep pockets, and two mounting " -"points for pressurized canisters or other large magazines." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." msgstr "" -"Lekka, wzmocniona stalą torba na narzędzia. Utrzymuje twoje narzędzia w " -"bezpiecznym miejscu w warunkach zero-g, na Marsie, na dnie Pacyfiku lub w " -"innych niegościnnych środowiskach. Posiada kilka głębokich kieszeni i dwa " -"punkty montażowe dla kanistrów ciśnieniowych lub innych dużych magazynków." +"Prowizoryczna szarfa z osłoną chroniącą oczy przed słońcem i deszczem, " +"zaprojektowana na dalekie wyprawy. Zrobiona dla gigantycznego wędrowca." #: lang/json/ARMOR_from_json.py -msgid "cecalia wetsuit" -msgid_plural "cecalia wetsuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "kaptur ocalonych" +msgstr[1] "kaptur ocalonych" +msgstr[2] "kaptur ocalonych" +msgstr[3] "kaptur ocalonych" -#. ~ Description for cecalia wetsuit +#. ~ Description for survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " -"explorer suit with no head or tentacle protection." +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." msgstr "" -"Mokry kombinezon zaprojektowany dla Wzniesionych Ośmiornic , znanych jako " -"Cecalia. Jest to kombinezon dla odkrywców, bez ochrony głowy i macek." +"Indywidualnie dopasowany opancerzony kaptur ze skóry i Kevlaru, " +"zaprojektowany tak, aby zrównoważyć komfort i ochronę." #: lang/json/ARMOR_from_json.py -msgid "combat wetsuit" -msgid_plural "combat wetsuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "zimowy kaptur ocalonych" +msgstr[1] "zimowy kaptur ocalonych" +msgstr[2] "zimowy kaptur ocalonych" +msgstr[3] "zimowy kaptur ocalonych" -#. ~ Description for combat wetsuit +#. ~ Description for winter survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " -"will provide some level of protection for deep dwellers." +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." msgstr "" -"Bojowa wersja kombinezonu Cecalia; wykonana z neoprenu i Kevlaru, zapewni " -"pewien poziom ochrony dla nurkujących na dużych głębokościach." +"Indywidualnie dopasowany, opancerzony kaptur z kevlaru. Ciepło zapewnia " +"podszewka z prawdziwego futra." #: lang/json/ARMOR_from_json.py -msgid "nanomesh vest" -msgid_plural "nanomesh vests" +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nanomesh vest +#. ~ Description for XL winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight nanomesh vest designed to face down many of the perils of " -"space travel. These vests are mass produced and often stacked in starship " -"lockers." +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." msgstr "" -"Lekka kamizelka z nano-siatki zaprojektowana by stawić czoła wielu " -"niebezpieczeństwom podróży kosmicznych. Kamizelki te są produkowane masowo i" -" często układane w schowkach na statkach kosmicznych." +"Indywidualnie dopasowany i ponadwymiarowy, opancerzony kaptur z kevlaru. " +"Ciepło zapewnia podszewka z prawdziwego futra." #: lang/json/ARMOR_from_json.py -msgid "vacuum cast cuirass" -msgid_plural "vacuum cast cuirasses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "kaptur ocalonych XL" +msgstr[1] "kaptur ocalonych XL" +msgstr[2] "kaptur ocalonych XL" +msgstr[3] "kaptur ocalonych XL" -#. ~ Description for vacuum cast cuirass +#. ~ Description for XL survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"This piece of armor harkens back to renaissance designs. It differs in that" -" it is cast as a single piece in deep space installations where conditions " -"can be controlled absolutely." +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." msgstr "" -"Ta zbroja nawiązuje do renesansowych wzorów. Różni się tym, że jest odlewana" -" jako pojedynczy element w instalacjach w głębokiej przestrzeni kosmicznej, " -"gdzie warunki mogą być pod absolutną kontrolą." +"Indywidualnie dopasowany masywny opancerzony kaptur ze skóry i Kevlaru, " +"zaprojektowany tak, aby zrównoważyć komfort i ochronę." #: lang/json/ARMOR_from_json.py -msgid "carbide raider's helmet" -msgid_plural "carbide raider's helmets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "lekki kaptur ocalonych" +msgstr[1] "lekki kaptur ocalonych" +msgstr[2] "lekki kaptur ocalonych" +msgstr[3] "lekki kaptur ocalonych" -#. ~ Description for carbide raider's helmet +#. ~ Description for light survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"This helmet is designed for the individual that is worried about catching " -"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " -"environmental protection features, but it just might stop even the largest " -"of ballistic rounds." +msgid "A customized armored cloth and Kevlar hood, light yet durable." msgstr "" -"Ten hełm jest przeznaczony dla osób, które martwią się o otrzymanie " -"ciężkiego postrzału z broni palnej w twarz. Jest nieporęczny, ciężki i nie " -"posiada podstawowych cech ochrony środowiskowej, ale może zatrzymać nawet " -"największe pociski balistyczne." +"Indywidualnie dopasowany opancerzony kaptur z tkaniny i Kevlaru, lekki i " +"wytrzymały." #: lang/json/ARMOR_from_json.py -msgid "UICAS Point of Impact helmet" -msgid_plural "UICAS Point of Impact helmets" +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for UICAS Point of Impact helmet +#. ~ Description for XL light survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight black helmet that provides excellent protection from all sorts" -" of damage, unless it's airborne. UICAS makes the point of designing all " -"headgear whenever possible with clear faceplates, in order to provide a " -"human touch to all interactions." +"A customized and oversized armored cloth and Kevlar hood, light yet durable." msgstr "" +"Indywidualnie dopasowany i ponadwymiarowy pancerny kaptur z tkaniny i " +"Kevlaru, lekki i wytrzymały." #: lang/json/ARMOR_from_json.py -msgid "cold resistance cream" -msgid_plural "cold resistance creams" +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cold resistance cream +#. ~ Description for winter faux fur survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"A thick layer of something that smells worse than walrus fat. But it keeps " -"you warm." +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." msgstr "" +"Indywidualnie dopasowany, opancerzony kaptur z kevlaru. Ciepło zapewnia " +"podszewka ze sztucznego futra." #: lang/json/ARMOR_from_json.py -msgid "heat retention xtreme cream" -msgid_plural "heat retention xtreme creams" +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for heat retention xtreme cream +#. ~ Description for XL faux fur winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"The last word in cold snap protection designed to give short term protection" -" in the event of a suit breach in vacuum." +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." msgstr "" +"Indywidualnie dopasowany i ponadwymiarowy, opancerzony kaptur z kevlaru. " +"Ciepło zapewnia podszewka ze sztucznego futra." #: lang/json/ARMOR_from_json.py -msgid "titanium watch" -msgid_plural "titanium watches" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "kaptur do nurkowania ocalonych" +msgstr[1] "kaptur do nurkowania ocalonych" +msgstr[2] "kaptur do nurkowania ocalonych" +msgstr[3] "kaptur do nurkowania ocalonych" -#. ~ Description for titanium watch +#. ~ Description for survivor wetsuit hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine watch made out of titanium. It is durable, light-weight " -"and water-resistant, an excellent watch to have in a hostile environment." +"A customized armored neoprene and Kevlar hood, very strong and durable." msgstr "" +"Przerabiany wzmacniany kaptur z neoprenu i Kevlaru, bardzo trwały i " +"wytrzymały." #: lang/json/ARMOR_from_json.py -msgid "titanium ring" -msgid_plural "titanium rings" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "szarfa szabrownika" +msgstr[1] "szarfa szabrownika" +msgstr[2] "szarfa szabrownika" +msgstr[3] "szarfa szabrownika" -#. ~ Description for titanium ring +#. ~ Description for scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine ring made out of titanium. Made in a variety of styles " -"and finishes, they're valued for their durability." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "" +"Solidny ochronny szal okrywający szyję, połączony z respiratorem i " +"ochraniaczem na oczy. Na niebezpieczne wyprawy szabrownicze." + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" +"Solidny ochronny szal okrywający szyję, połączony z respiratorem i " +"ochraniaczem na oczy. Na niebezpieczne wyprawy przerośniętych szabrowników." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "lekkie spodnie z kieszeniami ocalonych" +msgstr[1] "lekkie spodnie z kieszeniami ocalonych" +msgstr[2] "lekkie spodnie z kieszeniami ocalonych" +msgstr[3] "lekkie spodnie z kieszeniami ocalonych" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "" +"Lekkie, wzmacniane Kevlarem spodnie z kieszeniami zaprojektowane do " +"pomieszczenia ile tylko się da. Odporne i zasadniczo nieprzemakalne." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" +"Lekkie, wzmacniane Kevlarem spodnie z kieszeniami zaprojektowane do " +"pomieszczenia ile tylko się da. Odporne i zasadniczo nieprzemakalne. W " +"ponadstandardowym rozmiarze." + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "spodnie z kieszeniami ocalonych" +msgstr[1] "spodnie z kieszeniami ocalonych" +msgstr[2] "spodnie z kieszeniami ocalonych" +msgstr[3] "spodnie z kieszeniami ocalonych" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" +"Podszyte kevlarem spodnie robocze z dodatkowymi kieszeniami i sakwami. " +"Ręcznie przerabiany dla zapewnienia wygody, komfortu i odporności." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" +"Podszyte kevlarem przerośnięte spodnie robocze z dodatkowymi kieszeniami i " +"sakwami. Ręcznie przerabiany dla zapewnienia wygody, komfortu i odporności." + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "prochowiec ocalonych" +msgstr[1] "prochowiec ocalonych" +msgstr[2] "prochowiec ocalonych" +msgstr[3] "prochowiec ocalonych" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "" +"Ręcznie przerabiany prochowiec, obszyty kevlarem z doszytymi kieszeniami i " +"sakwami. Wygodny, odporny i pojemny." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "prochowiec bez rękawów ocalonych" +msgstr[1] "prochowiec bez rękawów ocalonych" +msgstr[2] "prochowiec bez rękawów ocalonych" +msgstr[3] "prochowiec bez rękawów ocalonych" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" +"Ręcznie przerabiany pozbawiony rękawów prochowiec, z naszytymi kieszeniami i" +" sakwami. Wygodny, odporny i pojemny." + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "płaszcz ocalonych" +msgstr[1] "płaszcz ocalonych" +msgstr[2] "płaszcz ocalonych" +msgstr[3] "płaszcz ocalonych" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "" +"Ręcznie dostosowany płaszcz podszyty ochronnym kevlarem, pokryty doszywanymi" +" kieszeniami i sakiewkami. Wygodny, wytrzymały, i o sporej pojemności." + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "płaszcz ocalonych bez rękawów" +msgstr[1] "płaszcz ocalonych bez rękawów" +msgstr[2] "płaszcz ocalonych bez rękawów" +msgstr[3] "płaszcz ocalonych bez rękawów" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" +"Ręcznie dostosowany płaszcz podszyty ochronnym kevlarem, pozbawiony rękawów." +" Pokryty doszywanymi kieszeniami i sakiewkami. Wygodny, wytrzymały, i o " +"sporej pojemności." + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "pojemna torba podróżna ocalonych" +msgstr[1] "pojemna torba podróżna ocalonych" +msgstr[2] "pojemna torba podróżna ocalonych" +msgstr[3] "pojemna torba podróżna ocalonych" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" +"Spersonalizowana torba podróżna ocalonych. Wytrzymała i przemyślnie " +"skonstruowana by pomieścić tyle sprzętu ile się da." + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "plecak ocalonych" +msgstr[1] "plecak ocalonych" +msgstr[2] "plecak ocalonych" +msgstr[3] "plecak ocalonych" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "" +"Spersonalizowany plecak. Wytrzymały i przemyślnie skonstruowany by pomieścić" +" tyle sprzętu ile się da." + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "plecak podróżny ocalonych" +msgstr[1] "plecak podróżny ocalonych" +msgstr[2] "plecak podróżny ocalonych" +msgstr[3] "plecak podróżny ocalonych" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" +"Spersonalizowany pojemny plecak podróżny. Wytrzymały i przemyślnie " +"skonstruowany by pomieścić tyle sprzętu ile się da." + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "sakwa biegacza ocalonych" +msgstr[1] "sakwa biegacza ocalonych" +msgstr[2] "sakwa biegacza ocalonych" +msgstr[3] "sakwa biegacza ocalonych" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "" +"Spersonalizowana noszona w talii lekka sakwa biegacza. Wytrzymała i " +"przemyślnie skonstruowana by pomieścić tyle sprzętu ile się da." + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "ogniotrwałe buty ocalonych" +msgstr[1] "ogniotrwałe buty ocalonych" +msgstr[2] "ogniotrwałych butów ocalonych" +msgstr[3] "ogniotrwałych butów ocalonych" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" +"Para spersonalizowanych, opancerzonych kevlarem butów z Nomexu. Utrzymają " +"cię przy życiu, nawet gdy będziesz po kolana w płomieniach." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "ciężkie buty ocalonych" +msgstr[1] "ciężkie buty ocalonych" +msgstr[2] "ciężkie buty ocalonych" +msgstr[3] "ciężkie buty ocalonych" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" +"Para spersonalizowanych butów z kevlaru, które są mocno opancerzone stalą. " +"Przedkładając ochronę nad wygodę, utrzymają cię one przy życiu, zwłaszcza " +"gdy będziesz po kolana w trupach." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "ciężkie rękawice ocalonych" +msgstr[1] "ciężkie rękawice ocalonych" +msgstr[2] "ciężkie rękawice ocalonych" +msgstr[3] "ciężkie rękawice ocalonych" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" +"Para spersonalizowanych rękawic kevlarowych wzmocnionych stalą. Są one " +"przeznaczone przede wszystkim do ochrony." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "ogniotrwałe rękawice ocalonych" +msgstr[1] "ogniotrwałe rękawice ocalonych" +msgstr[2] "ogniotrwałe rękawice ocalonych" +msgstr[3] "ogniotrwałe rękawice ocalonych" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" +"Para spersonalizowanych, opancerzonych kevlarem rękawic z Nomexu. Są one " +"postapokaliptycznym udoskonaleniem tego, co strażacy nosili przed " +"Kataklizmem." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "ogniotrwały kaptur ocalonych" +msgstr[1] "ogniotrwały kaptur ocalonych" +msgstr[2] "ogniotrwały kaptur ocalonych" +msgstr[3] "ogniotrwały kaptur ocalonych" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" +"Przerabiany wzmacniany kaptur z Nomeksu i Kevlaru, trwały i wytrzymały." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" +"Przerabiany wzmacniany kaptur z Nomeksu i Kevlaru, bardzo trwały i " +"wytrzymały. Zrobiony w Muspelheim." + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "ognioodporny kombinezon ocalonych" +msgstr[1] "ognioodporny kombinezon ocalonych" +msgstr[2] "ognioodporny kombinezon ocalonych" +msgstr[3] "ognioodporny kombinezon ocalonych" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" +"Ciężki ręcznie przerabiany kombinezon ochronny z pociętej kamizelki " +"kuloodpornej połączonej ze wzmocnionym ognioodpornym kombinezonem z nomeksu." +" Chroni przed ogniem i żywiołami." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "ciężki kombinezon ocalonych" +msgstr[1] "ciężki kombinezon ocalonych" +msgstr[2] "ciężki kombinezon ocalonych" +msgstr[3] "ciężki kombinezon ocalonych" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" +"Domowej roboty ciężki strój ochronny powstały z połączenia pociętej " +"kamizelki kuloodpornej i wzmacnianego metalowymi płytkami skórzanego " +"kombinezonu. Chroni zarówno przed żywiołami jak i obrażeniami." + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" +"Domowej roboty masywny ciężki strój ochronny powstały z połączenia pociętej " +"kamizelki kuloodpornej i wzmacnianego metalowymi płytkami skórzanego " +"kombinezonu. Chroni zarówno przed żywiołami jak i obrażeniami." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "lekka zbroja ocalonych" +msgstr[1] "lekka zbroja ocalonych" +msgstr[2] "lekka zbroja ocalonych" +msgstr[3] "lekka zbroja ocalonych" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" +"Lekki, wykonywany na miarę pancerz z kevlaru i wytrzymałej tkaniny. W " +"większości wodoodporny." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "pas ocalonych" +msgstr[1] "pasy ocalonych" +msgstr[2] "pasów ocalonych" +msgstr[3] "pasa ocalonych" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "Umieść przedmiot" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" +"Wykonany pod indywidualne potrzeby skórzany pas pokryty kieszeniami, z " +"pochwą do noszenia niewielkiego ostrza i kaburą do noszenia pistoletu a " +"także pętlą na większe narzędzia. Wytrzymały i starannie wykonany, aby " +"wygodnie się go nosiło. Aktywuj, aby schować/wyciągnąć broń." + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "gogle ocalonych" +msgstr[1] "gogle ocalonych" +msgstr[2] "gogle ocalonych" +msgstr[3] "gogle ocalonych" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" +"Ręcznie robiona para opancerzonych gogli o przyciemnianych szkłach. Wygodne " +"i wytrzymałe, zapewniają doskonałą ochronę przed niebezpieczeństwami " +"środowiskowymi." + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "uprząż ocalonych" +msgstr[1] "uprząż ocalonych" +msgstr[2] "uprząż ocalonych" +msgstr[3] "uprząż ocalonych" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" +"Spersonalizowana lekka uprząż z kieszeniami i sakiewkami, a także ze " +"zintegrowaną taśmą na karabinek lub podobną broń. Wytrzymała i uszyta na " +"miarę by być wygodna w noszeniu. Aktywuj by wyjąć/schować broń." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" +"Spersonalizowana lekka uprząż z kieszeniami i sakiewkami, a także ze " +"zintegrowaną taśmą na karabinek lub podobną broń. Wytrzymała i uszyta na " +"miarę by być wygodna w noszeniu, nawet przez największych rozmiarem " +"użytkowników. Aktywuj by wyjąć/schować broń." + +#: lang/json/ARMOR_from_json.py +msgid "sheet" +msgid_plural "sheets" +msgstr[0] "prześcieradło" +msgstr[1] "prześcieradło" +msgstr[2] "prześcieradło" +msgstr[3] "prześcieradło" + +#. ~ Description for sheet +#: lang/json/ARMOR_from_json.py +msgid "" +"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" +" a bunch of rags." +msgstr "" +"Duże materiałowe prześcieradło, które można użyć do posłania łóżka lub jako " +"zastępcze zasłony. Można je też pociąć na sporą ilość szmat." + +#: lang/json/ARMOR_from_json.py +msgid "blanket" +msgid_plural "blankets" +msgstr[0] "koc" +msgstr[1] "koc" +msgstr[2] "koc" +msgstr[3] "koc" + +#. ~ Description for blanket +#: lang/json/ARMOR_from_json.py +msgid "Hiding under here will not protect you from the monsters." +msgstr "Chowanie się pod kocem nie uchroni cię przed potworami." + +#: lang/json/ARMOR_from_json.py +msgid "down-filled blanket" +msgid_plural "down-filled blankets" +msgstr[0] "puchowy koc" +msgstr[1] "puchowy koc" +msgstr[2] "puchowy koc" +msgstr[3] "puchowy koc" + +#. ~ Description for down-filled blanket +#: lang/json/ARMOR_from_json.py +msgid "" +"Hiding under here will not protect you from the monsters, but it'll keep you" +" warm." msgstr "" +"Chowanie się pod puchowym kocem nie uchroni cię przed potworami, ale " +"przynajmniej będzie ciepło." + +#: lang/json/ARMOR_from_json.py +msgid "fur blanket" +msgid_plural "fur blankets" +msgstr[0] "futrzany koc" +msgstr[1] "futrzany koc" +msgstr[2] "futrzany koc" +msgstr[3] "futrzany koc" + +#. ~ Description for fur blanket +#: lang/json/ARMOR_from_json.py +msgid "A heavy fur blanket that covers most of your body." +msgstr "Ciężki futrzany koc, który przykryje prawie całe ciało." + +#: lang/json/ARMOR_from_json.py +msgid "quilt" +msgid_plural "quilts" +msgstr[0] "kołdra" +msgstr[1] "kołdry" +msgstr[2] "kołder" +msgstr[3] "kołder" + +#. ~ Description for quilt +#: lang/json/ARMOR_from_json.py +msgid "" +"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " +"cozy!" +msgstr "" +"Duża, komfortowa kołdra wykonana z grubej wełny w trójkątny wzór. Niezwykle " +"przytulna!" + +#: lang/json/ARMOR_from_json.py +msgid "patchwork quilt" +msgid_plural "patchwork quilts" +msgstr[0] "patchworkowa kołdra" +msgstr[1] "patchworkowe kołdry" +msgstr[2] "patchworkowych kołder" +msgstr[3] "patchworkowych kołder" + +#. ~ Description for patchwork quilt +#: lang/json/ARMOR_from_json.py +msgid "A huge, patchwork wool quilt. Very, very warm." +msgstr "Wielka, patchworkowa, wełniana kołdra. Bardzo, bardzo ciepła." + +#: lang/json/ARMOR_from_json.py +msgid "sleeping bag" +msgid_plural "sleeping bags" +msgstr[0] "śpiwór" +msgstr[1] "śpiwóry" +msgstr[2] "śpiwórów" +msgstr[3] "śpiwórów" + +#. ~ Use action msg for sleeping bag. +#: lang/json/ARMOR_from_json.py +msgid "You roll up the sleeping bag, preparing it for transport." +msgstr "Rolujesz śpiwór przygotowując go do transportu." + +#. ~ Description for sleeping bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A large sleeping bag that covers you head to toe. This one is medium " +"weight." +msgstr "Duży śpiwór, który okrywa cię od stóp do głów. Ten ma średnią wagę." + +#: lang/json/ARMOR_from_json.py +msgid "cestus" +msgid_plural "cestuses" +msgstr[0] "cestus" +msgstr[1] "cestus" +msgstr[2] "cestus" +msgstr[3] "cestus" + +#. ~ Description for cestus +#: lang/json/ARMOR_from_json.py +msgid "" +"A leather hand and arm wrap incorporating metal plates over the knuckles to " +"improve punching power and defence." +msgstr "" +"Skórzana owijka na dłoń i ramię wyposażona w metalowe płytki na kłykciach, " +"które poprawiają siłę ciosu i obronę." + +#: lang/json/ARMOR_from_json.py +msgid "pair of studded gloves" +msgid_plural "pairs of studded gloves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for pair of studded gloves +#: lang/json/ARMOR_from_json.py +msgid "A pair of gloves with studded metal knuckles." +msgstr "Para rękawic z metalowymi knykciami nabijanymi ćwiekami." + +#: lang/json/ARMOR_from_json.py +msgid "impact knuckles" +msgid_plural "impact knuckles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for impact knuckles +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of thick steel plates covering your proximal phalange. They are " +"strapped to your hands with metal braces." +msgstr "" +"Para grubych stalowych płyt pokrywających paliczek podstawny. Są one " +"przymocowane do rąk za pomocą metalowych klamer." + +#: lang/json/ARMOR_from_json.py +msgid "skewer knuckles" +msgid_plural "skewer knuckles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for skewer knuckles +#: lang/json/ARMOR_from_json.py +msgid "" +"A single sturdy spike protrudes 5cm from the back of your hand. They are " +"strapped to your hands with metal braces." +msgstr "" +"Pojedynczy solidny kolec wystający 5cm z grzbietu dłoni. Są one przymocowane" +" do rąk za pomocą metalowych klamer." + +#: lang/json/ARMOR_from_json.py +msgid "telescoping umbrella" +msgid_plural "telescoping umbrellas" +msgstr[0] "składany parasol" +msgstr[1] "składany parasol" +msgstr[2] "składany parasol" +msgstr[3] "składany parasol" + +#. ~ Description for telescoping umbrella +#: lang/json/ARMOR_from_json.py +msgid "" +"A telescoping umbrella which collapses down for easy storage, useful for " +"keeping dry when wielded." +msgstr "" +"Teleskopowy parasol składany się dla łatwego przechowywania, przydatny gdy " +"trzymasz go chroniąc się przed deszczem." + +#: lang/json/ARMOR_from_json.py +msgid "bag of holding" +msgid_plural "bags of holding" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for bag of holding +#: lang/json/ARMOR_from_json.py +msgid "" +"A sleek, unfathomably-complicated machine covered in dozens of blinking " +"lights, worn on the back by sturdy faux-leather straps. An electrode " +"dangles from the back, attaching to your forehead. How it operates without " +"annihilating spacetime isn't quite clear, but a localized portal allows " +"things to be stored in an extradimensional space." +msgstr "" +"Elegancka, niewyobrażalnie skomplikowana maszyna pokryta dziesiątkami " +"mrugających światełek, noszona na plecach na solidnych paskach ze sztucznej " +"skóry. Z tyłu zwisa elektroda, którą można przymocować do czoła. Nie jest do" +" końca jasne, jak to działa nie powodując anihilacji czasoprzestrzeni, ale " +"lokalny portal pozwala na przechowywanie rzeczy w przestrzeni " +"pozawymiarowej." + +#: lang/json/ARMOR_from_json.py +msgid "titanium vest" +msgid_plural "titanium vests" +msgstr[0] "tytanowa kamizelka" +msgstr[1] "tytanowa kamizelka" +msgstr[2] "tytanowa kamizelka" +msgstr[3] "tytanowa kamizelka" + +#. ~ Description for titanium vest +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight armor vest made of pieces of titanium sewn together, with " +"cloth padding for comfort. Brittle against blunt force, but highly " +"resistant to cuts and corrosion." +msgstr "" +"Lekka opancerzona kamizelka wykonana z kawałków tytanu zszytych razem, z " +"wyściółką z tkaniny dla zapewnienia wygody. Krucha w starciu z tępym " +"narzędziem, ale bardzo odporna na cięcia i korozję." + +#: lang/json/ARMOR_from_json.py +msgid "sentinel-lx cloak" +msgid_plural "sentinel-lx cloaks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for sentinel-lx cloak +#: lang/json/ARMOR_from_json.py +msgid "" +"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " +"unnatural shadow. Made from woven graphene, its lightweight and resistant, " +"but cannot be repaired" +msgstr "" +"Czarna jak noc peleryna sentinel-lx wisi na ramionach niczym solidny, " +"nienaturalny cień. Wykonana z tkanego grafenu, jest lekka i wytrzymała, ale " +"nie można jej naprawić." + +#: lang/json/ARMOR_from_json.py +msgid "XL jeans" +msgid_plural "pairs of XL jeans" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL jeans +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL blue jeans with two deep pockets." +msgstr "Niebieskie dżinsy XL z dwiema głębokimi kieszeniami." + +#: lang/json/ARMOR_from_json.py +msgid "XL work pants" +msgid_plural "pairs of XL work pants" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL blue work pants." +msgstr "Para błękitnych spodni roboczych XL." + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL gray work pants." +msgstr "Para szarych spodni roboczych XL." + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL light-blue work pants." +msgstr "Para jasnoniebieskich spodni roboczych XL." + +#: lang/json/ARMOR_from_json.py +msgid "XL work t-shirt" +msgid_plural "XL work t-shirts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL work t-shirt +#: lang/json/ARMOR_from_json.py +msgid "A gray XL work t-shirt with a small front pocket." +msgstr "Szary t-shirt roboczy XL z małą kieszenią na przedzie." + +#: lang/json/ARMOR_from_json.py +msgid "An XL blue work t-shirt with a small front pocket." +msgstr "Błękitny t-shirt roboczy XL z małą kieszenią na przedzie." + +#: lang/json/ARMOR_from_json.py +msgid "An XL gray work t-shirt with a small front pocket." +msgstr "Szary t-shirt roboczy XL z małą kieszenią na przedzie." + +#: lang/json/ARMOR_from_json.py +msgid "An XL light-blue work t-shirt with a small front pocket." +msgstr "Jasnoniebieski t-shirt roboczy XL z małą kieszenią na przedzie." + +#: lang/json/ARMOR_from_json.py +msgid "Uplifted SWAT armor" +msgid_plural "Uplifted SWAT armors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Uplifted SWAT armor +#: lang/json/ARMOR_from_json.py +msgid "" +"An extra large suit of black bulletproof armor with lots of pockets. The " +"word SWAT is emblazoned across the back. Specifically designed for Uplifted" +" officers such as Mastodons." +msgstr "" +"Bardzo duży kombinezon w czarnej kuloodpornej zbroi z mnóstwem kieszeni. Na " +"plecach widnieje napis SWAT. Zaprojektowany specjalnie dla Wzniesionych " +"funkcjonariuszy, takich jak Mastodonty." + +#: lang/json/ARMOR_from_json.py +msgid "empty XL ballistic vest" +msgid_plural "empty XL ballistic vests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for empty XL ballistic vest +#: lang/json/ARMOR_from_json.py +msgid "" +"Oversized ballistic armor without any armor inserts. The soft armor plate " +"carrier is still protective but it won't stop high energy projectiles." +msgstr "" +"Przerośnięty pancerz balistyczny bez żadnych wkładów pancernych. Miękki " +"pancerz nadal chroni, ale nie zatrzyma pocisków o dużej energii." + +#: lang/json/ARMOR_from_json.py +msgid "XL ESAPI ballistic vest" +msgid_plural "XL ESAPI ballistic vests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL ESAPI ballistic vest +#: lang/json/ARMOR_from_json.py +msgid "Oversized ballistic armor with ESAPI ceramic armor plates." +msgstr "" +"Przerośnięty pancerz balistyczny z ceramicznymi płytami pancernymi ESAPI." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL combat boots" +msgid_plural "pair of XL combat boots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for pair of XL combat boots +#: lang/json/ARMOR_from_json.py +msgid "Modern oversized reinforced tactical combat boots. Very durable." +msgstr "" +"Współczesne wzmacniane taktyczne buty wojskowe. Bardzo wytrzymałe i bardzo " +"duże." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL tactical gloves" +msgid_plural "pair of XL tactical gloves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for pair of XL tactical gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " +"police and military units." +msgstr "" +"Para wzmocnionych kevlarem przerośniętych rękawic używanych w siłach " +"policyjnych i w wojsku." + +#: lang/json/ARMOR_from_json.py +msgid "pair of Killophant gloves" +msgid_plural "pair of Killophant gloves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for pair of Killophant gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of reinforced Kevlar tactical gloves, specifically designed to " +"accommodate three-fingered Killophants. Thinner than regular oversized " +"tactical gloves." +msgstr "" +"Para wzmocnionych kevlarowych rękawic taktycznych, zaprojektowanych " +"specjalnie dla trójpalczastych Kilofantów. Cieńsze niż zwykłe, przerośnięte " +"rękawice taktyczne." + +#: lang/json/ARMOR_from_json.py +msgid "XL leather belt" +msgid_plural "XL leather belts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL leather belt +#: lang/json/ARMOR_from_json.py +msgid "" +"An XL leather belt. Useful for making your pair of pants fit if you need " +"really big pants." +msgstr "Skórzany pas XL. Użyteczny by dopasować parę dużych spodni." + +#: lang/json/ARMOR_from_json.py +msgid "XL police duty belt" +msgid_plural "XL police duty belts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL police duty belt +#: lang/json/ARMOR_from_json.py +msgid "" +"An XL black leather belt used by extremely large uplifted police officers. " +"It has several pouches and a holder for a baton." +msgstr "" +"Czarny skórzany pas XL używany przez policjantów. Ma kilka kieszeni i uchwyt" +" na pałkę. " + +#: lang/json/ARMOR_from_json.py +msgid "XL tactical full helmet" +msgid_plural "XL tactical full helmets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL tactical full helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"An all-encompassing massive black helmet that covers your entire face and " +"neck, providing excellent protection from all sorts of damage." +msgstr "" +"Pełnowymiarowy masywny czarny hełm, który osłania cała twarz i szyję, " +"zapewniając doskonałą ochronę przed całą gamą obrażeń." + +#: lang/json/ARMOR_from_json.py +msgid "XL leg ammo pouch" +msgid_plural "XL leg ammo pouches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for XL leg ammo pouch +#: lang/json/ARMOR_from_json.py +msgid "" +"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" +" two magazines close at hand." +msgstr "" +"Materiałowa ładownica XL noszona na nodze, w której zmieszczą się dwa " +"magazynki, które dzięki temu będą pod ręką." + +#: lang/json/ARMOR_from_json.py +msgid "crew jumpsuit" +msgid_plural "crew jumpsuits" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for crew jumpsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " +"some freight hauling association or another. This one is a standard design " +"favored by spacers, with ample, easy access pockets." +msgstr "" +"Lekki kombinezon z tkaniny ozdobiony wyblakłymi znakami firmowymi jakiegoś " +"stowarzyszenia przewoźników towarowych. Ten jest standardowym wzorem " +"lubianym przez kosmonautów, z licznymi, łatwo dostępnymi kieszeniami." + +#: lang/json/ARMOR_from_json.py +msgid "communications cap" +msgid_plural "communications caps" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for communications cap +#: lang/json/ARMOR_from_json.py +msgid "" +"A padded cotton cap built around an augmented reality headset. During " +"normal operation it would provide visual information about a ship subsystems" +" and a communications link with the rest of the crew, but severed from a " +"spaceship, only their hearing protection function retains any utility." +msgstr "" +"Wyściełana bawełniana czapka, wokół której zbudowany jest zestaw słuchawkowy" +" rozszerzonej rzeczywistości. Podczas normalnej pracy zapewnia wizualne " +"informacje o podsystemach statku i łączność z resztą załogi, ale po " +"odłączeniu od statku kosmicznego, jedynie funkcja ochrony słuchu zachowuje " +"swoją użyteczność." + +#: lang/json/ARMOR_from_json.py +msgid "HERC rig" +msgid_plural "HERC rigs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for HERC rig +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " +"about in zero-g, Mars, the bottom of the Pacific, or other generally " +"inhospitable environments. It has several deep pockets, and two mounting " +"points for pressurized canisters or other large magazines." +msgstr "" +"Lekka, wzmocniona stalą torba na narzędzia. Utrzymuje twoje narzędzia w " +"bezpiecznym miejscu w warunkach zero-g, na Marsie, na dnie Pacyfiku lub w " +"innych niegościnnych środowiskach. Posiada kilka głębokich kieszeni i dwa " +"punkty montażowe dla kanistrów ciśnieniowych lub innych dużych magazynków." + +#: lang/json/ARMOR_from_json.py +msgid "cecalia wetsuit" +msgid_plural "cecalia wetsuits" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for cecalia wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " +"explorer suit with no head or tentacle protection." +msgstr "" +"Mokry kombinezon zaprojektowany dla Wzniesionych Ośmiornic , znanych jako " +"Cecalia. Jest to kombinezon dla odkrywców, bez ochrony głowy i macek." + +#: lang/json/ARMOR_from_json.py +msgid "combat wetsuit" +msgid_plural "combat wetsuits" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for combat wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " +"will provide some level of protection for deep dwellers." +msgstr "" +"Bojowa wersja kombinezonu Cecalia; wykonana z neoprenu i Kevlaru, zapewni " +"pewien poziom ochrony dla nurkujących na dużych głębokościach." + +#: lang/json/ARMOR_from_json.py +msgid "nanomesh vest" +msgid_plural "nanomesh vests" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for nanomesh vest +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight nanomesh vest designed to face down many of the perils of " +"space travel. These vests are mass produced and often stacked in starship " +"lockers." +msgstr "" +"Lekka kamizelka z nano-siatki zaprojektowana by stawić czoła wielu " +"niebezpieczeństwom podróży kosmicznych. Kamizelki te są produkowane masowo i" +" często układane w schowkach na statkach kosmicznych." + +#: lang/json/ARMOR_from_json.py +msgid "vacuum cast cuirass" +msgid_plural "vacuum cast cuirasses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for vacuum cast cuirass +#: lang/json/ARMOR_from_json.py +msgid "" +"This piece of armor harkens back to renaissance designs. It differs in that" +" it is cast as a single piece in deep space installations where conditions " +"can be controlled absolutely." +msgstr "" +"Ta zbroja nawiązuje do renesansowych wzorów. Różni się tym, że jest odlewana" +" jako pojedynczy element w instalacjach w głębokiej przestrzeni kosmicznej, " +"gdzie warunki mogą być pod absolutną kontrolą." + +#: lang/json/ARMOR_from_json.py +msgid "carbide raider's helmet" +msgid_plural "carbide raider's helmets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for carbide raider's helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"This helmet is designed for the individual that is worried about catching " +"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " +"environmental protection features, but it just might stop even the largest " +"of ballistic rounds." +msgstr "" +"Ten hełm jest przeznaczony dla osób, które martwią się o otrzymanie " +"ciężkiego postrzału z broni palnej w twarz. Jest nieporęczny, ciężki i nie " +"posiada podstawowych cech ochrony środowiskowej, ale może zatrzymać nawet " +"największe pociski balistyczne." + +#: lang/json/ARMOR_from_json.py +msgid "UICAS Point of Impact helmet" +msgid_plural "UICAS Point of Impact helmets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for UICAS Point of Impact helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight black helmet that provides excellent protection from all sorts" +" of damage, unless it's airborne. UICAS makes the point of designing all " +"headgear whenever possible with clear faceplates, in order to provide a " +"human touch to all interactions." +msgstr "" +"Lekki, czarny hełm, który zapewnia doskonałą ochronę przed wszelkimi " +"rodzajami obrażeń, chyba że z powietrza. UICAS stara się projektować " +"wszystkie nakrycia głowy z przezroczystymi płytami czołowymi, aby zapewnić " +"ludzkie podejście do wszystkich interakcji." + +#: lang/json/ARMOR_from_json.py +msgid "cold resistance cream" +msgid_plural "cold resistance creams" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for cold resistance cream +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick layer of something that smells worse than walrus fat. But it keeps " +"you warm." +msgstr "" +"Gruba warstwa czegoś, co pachnie gorzej niż tłuszcz morsa. Ale dzięki temu " +"jest ci ciepło." + +#: lang/json/ARMOR_from_json.py +msgid "heat retention xtreme cream" +msgid_plural "heat retention xtreme creams" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for heat retention xtreme cream +#: lang/json/ARMOR_from_json.py +msgid "" +"The last word in cold snap protection designed to give short term protection" +" in the event of a suit breach in vacuum." +msgstr "" +"Ostatnie słowo w ochronie przed mrozem, zaprojektowane w celu zapewnienia " +"krótkotrwałej ochrony w przypadku naruszenia kombinezonu w próżni." + +#: lang/json/ARMOR_from_json.py +msgid "titanium watch" +msgid_plural "titanium watches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for titanium watch +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick, masculine watch made out of titanium. It is durable, light-weight " +"and water-resistant, an excellent watch to have in a hostile environment." +msgstr "" +"Gruby, męski zegarek wykonany z tytanu. Jest wytrzymały, lekki i " +"wodoodporny, doskonały do pracy w nieprzyjaznym środowisku." + +#: lang/json/ARMOR_from_json.py +msgid "titanium ring" +msgid_plural "titanium rings" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for titanium ring +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick, masculine ring made out of titanium. Made in a variety of styles " +"and finishes, they're valued for their durability." +msgstr "" +"Gruby, męski pierścień wykonany z tytanu. Wykonane w różnych stylach i " +"wykończeniach, cenione są za swoją trwałość." #: lang/json/ARMOR_from_json.py msgid "hazardous environment suit" @@ -29204,12 +29248,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" " temperatures. They can also be used to freeze your foes to death." msgstr "" +"Rękawice te przeznaczone są do pracy z organizmami żyjącymi w ekstremalnie " +"niskich temperaturach. Mogą być również używane do zamrażania przeciwników " +"na śmierć." #: lang/json/ARMOR_from_json.py msgid "CRIT Engineering Suit" @@ -29227,6 +29274,11 @@ msgid "" "universe for storage while built in joint-torsion ratchets generate the " "necessary energy required to power the interface." msgstr "" +"Hermetyczny, elastyczny kombinezon z tkanych włókien kompozytowych, " +"wyposażony w segmentowe płyty pancerza. Złożony system digitalizuje " +"przedmioty w indywidualnym wszechświecie kieszeni do przechowywania, podczas" +" gdy wbudowane mechanizmy przegubowe generują energię niezbędną do zasilania" +" interfejsu." #: lang/json/ARMOR_from_json.py msgid "CRIT face mask" @@ -29243,6 +29295,9 @@ msgid "" "filters provide decent environmental safety, but it was not intended for " "extended use. It has a basic integrated HUD." msgstr "" +"Standardowa maska twarzowa, wyłożona kevlarem dla dodatkowej ochrony. Kilka " +"filtrów zapewnia przyzwoite bezpieczeństwo środowiskowe, ale nie była ona " +"przeznaczona do dłuższego użytkowania. Posiada podstawowy zintegrowany HUD." #: lang/json/ARMOR_from_json.py msgid "pair of CRIT boots" @@ -29260,6 +29315,10 @@ msgid "" "outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " "protection as well. Decently heavy though" msgstr "" +"Para standardowych butów. Najnowszej generacji żele utrzymują stopy w " +"komforcie i higienie podczas długotrwałych misji, jednocześnie absorbując " +"wstrząsy i ciepło ze źródeł zewnętrznych. Siatka z superstopu i guma " +"zapewniają również sporą ochronę chemiczną. Są jednak dość ciężkie." #: lang/json/ARMOR_from_json.py msgid "pair of CRIT LA boots" @@ -29277,6 +29336,10 @@ msgid "" " of the old features of the standard issue boots but trade in protection for" " easier movement." msgstr "" +"Para odchudzonych butów. Oparty na butach C.R.I.T. wariant z lekkim " +"pancerzem został stworzony z myślą o misjach w cieplejszym klimacie. Buty LA" +" zachowują większość starych cech standardowych butów, ale rezygnują z " +"ochrony na rzecz łatwiejszego poruszania się." #: lang/json/ARMOR_from_json.py msgid "pair of CRIT fingertip-less gloves" @@ -29293,6 +29356,9 @@ msgid "" "gene-modding and/or mutations while still allowing greater manipulation of " "items and moderate protection." msgstr "" +"Para standardowych rękawic. Wykonane z siatki z superstopu dla osób z " +"modyfikacją genów i/lub mutacjami, a jednocześnie pozwalające na większą " +"manipulację przedmiotami i umiarkowaną ochronę." #: lang/json/ARMOR_from_json.py msgid "pair of CRIT fingertip-less liners" @@ -29309,6 +29375,10 @@ msgid "" "for warmth and fingertip-less for those with gene-modding and/or mutations " "while still allowing greater manipulation of items and moderate protection." msgstr "" +"Para standardowych wyściółek rękawic. Wykonane z neoprenu i gumowej siatki " +"dla ciepła i bez opuszków palców dla tych z modyfikacją genów i/lub " +"mutacjami, pozwalając jednocześnie na większą manipulację przedmiotami i " +"umiarkowaną ochronę." #: lang/json/ARMOR_from_json.py msgid "CRIT backpack" @@ -29326,6 +29396,11 @@ msgid "" " a larger weapon to be holstered, drawing and holstering is still rather " "awkward even with the magnetized clips, but practice helps." msgstr "" +"Plecak standardowego użytku. Oparty na konstrukcji plecaka MOLLE, ten " +"mniejszy plecak zachowuje równowagę pomiędzy przestrzenią magazynową a " +"uciążliwością i pozwala na zamocowanie większej broni, wyciąganie jej i " +"wkładanie do kabury jest nadal dość kłopotliwe, nawet z namagnesowanymi " +"klipsami, ale trening czyni mistrza." #: lang/json/ARMOR_from_json.py msgid "CRIT chestrig" @@ -29341,6 +29416,8 @@ msgid "" "A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " "with light-armor padding." msgstr "" +"Nieco zmodyfikowana uprząż, posiada siatkę i pętle MOLLE na ekwipunek oraz " +"kieszenie z wyściółką z lekkiego pancerza." #: lang/json/ARMOR_from_json.py msgid "pair of CRIT leg guards" @@ -29357,6 +29434,9 @@ msgid "" "for easy movement and the padding keeps the legs safe and warm in colder " "conditions." msgstr "" +"Zbroja na nogi dla tych, którzy walczą. Prosta konstrukcja i wytrzymały " +"materiał pozwala na swobodne poruszanie się, a wyściółka utrzymuje nogi " +"bezpieczne i ciepłe w chłodniejszych warunkach." #: lang/json/ARMOR_from_json.py msgid "pair of CRIT arm guards" @@ -29373,21 +29453,9 @@ msgid "" "insulated with rubber. They are sturdy and will block attacks, but they are" " ridiculously heavy." msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" +"Para ochraniaczy na ramiona wykonanych z superstopu nałożonego na neopren, a" +" następnie izolowanych gumą. Są wytrzymałe i będą blokować ataki, ale są " +"absurdalnie ciężkie." #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" @@ -29404,6 +29472,9 @@ msgid "" "encumbering, but rather protective against any anti-infantry electrical " "discharges from the robots. Has several pockets for storage." msgstr "" +"Gruby, długi płaszcz z gumową izolacją. Krępuje ruchy nieco bardziej, ale " +"chroni przed przeciwpiechotnymi wyładowaniami elektrycznymi robotów. Posiada" +" kilka kieszeni do przechowywania rzeczy." #: lang/json/ARMOR_from_json.py msgid "CRIT Armored Anomaly Suit" @@ -29421,6 +29492,11 @@ msgid "" "plates keep the suit light-weight and the one wearing it alive while " "offering superb resistance to the elements and ambient radiation." msgstr "" +"Stosunkowo prosty pancerz. Strój z tkanych włókien kompozytowych połączonych" +" z wewnętrznym skafandrem i strategicznie rozmieszczonymi segmentowymi " +"płytami z Kevlaru sprawia, że kombinezon jest lekki, a noszący go człowiek " +"żyje, oferując jednocześnie doskonałą odporność na żywioły i promieniowanie " +"otoczenia." #: lang/json/ARMOR_from_json.py msgid "CRIT drop leg pouch" @@ -29436,6 +29512,9 @@ msgid "" "A set of pouches that can be worn on the thighs using buckled straps. This " "variety is more compact and is favored by the C.R.I.T for its ease of use." msgstr "" +"Zestaw sakiewek, które można nosić na udach za pomocą zapinanych pasków. Ta " +"odmiana jest bardziej kompaktowa i jest preferowana przez C.R.I.T. ze " +"względu na łatwość użycia." #: lang/json/ARMOR_from_json.py msgid "CRIT Enforcer armor assembly" @@ -29456,6 +29535,9 @@ msgid "" "protective. Various adjustable connectors such as straps and clips hold it " "together." msgstr "" +"Seria płyt, osłon i sprzączek, które składają się na solidny pancerz, zwykle nakładany na inne pancerze. Nakładające się na siebie płyty stalowe i kevlarowe pokrywają rozległe przestrzenie, a pancerz wystaje miejscami, by odbijać ataki. Ten ciężki kombinezon, zbudowany w myśl zasady, że komfort jest mniej ważny niż bezpieczeństwo, jest trudny do poruszania się w nim, ale bardzo dobrze ochrania. Różne regulowane łączniki, takie jak paski i klipsy, utrzymują go razem.\n" +"\n" +"Przetłumaczono z www.DeepL.com/Translator (wersja darmowa)" #: lang/json/ARMOR_from_json.py msgid "pair of CRIT Enforcer docks" @@ -29474,6 +29556,11 @@ msgid "" "designs, but they do seem to be worth using if you were to be in the middle " "of a war zone." msgstr "" +"Dokery egzekutorów CRIT. Metalowe płytki w kształcie przerośniętych stóp, " +"które zaciskają się na twoim obuwiu, chroniąc twoje stopy przed " +"niebezpieczeństwem. W przeciwieństwie do większości projektów CRIT wygląda " +"to okropnie i sprawia wrażenie topornego, ale wydaje się, że warto z nich " +"korzystać, jeśli miałbyś znaleźć się w środku strefy wojny." #: lang/json/ARMOR_from_json.py msgid "CRIT Soldier Suit" @@ -29491,6 +29578,10 @@ msgid "" "soft neoprene pads areas for extra comfort. Most importantly, this can be " "worn comfortably under other armor." msgstr "" +"Nowoczesny pancerz. Strategicznie rozmieszczone płyty z superstopu utrzymują" +" wagę kombinezonu na minimalnym poziomie, podczas gdy płyty z kevlaru " +"pokrywają inne obszary, a podszewka z miękkiego neoprenu zapewnia dodatkowy " +"komfort. Co najważniejsze, można go wygodnie nosić pod innym opancerzeniem." #: lang/json/ARMOR_from_json.py msgid "CRIT Lone Wolf Series Armor" @@ -29508,6 +29599,10 @@ msgid "" "armor will definitely protect you from practically anything. Just make sure" " you can actually walk with it on though." msgstr "" +"Czarny, matowy kombinezon z przestarzałej i nieporęcznej zbroi płytowej " +"nałożonej na miękki, kevlarowy kombinezon. Doposażona w nowe ulepszenia " +"pancerza, ta ciężka zbroja z pewnością ochroni cię praktycznie przed " +"wszystkim. Upewnij się tylko, że będziesz mógł w niej chodzić." #: lang/json/ARMOR_from_json.py msgid "CRIT blouse" @@ -29525,6 +29620,10 @@ msgid "" "while a sleek design keeps it from being too flashy. A zipper at the back " "and front allows for quick donning and doffing." msgstr "" +"Standardowa kurtka wojskowa. Wytrzymała, lekka i z dużą ilością miejsca do " +"przechowywania. Super-elastyczny neopren utrzymuje ciepło w umiarkowanie " +"zimne dni, a elegancki design sprawia, że nie jest zbyt krzykliwa. Zamek " +"błyskawiczny z tyłu i z przodu pozwala na szybkie zakładanie i zdejmowanie." #: lang/json/ARMOR_from_json.py msgid "CRIT trousers" @@ -29534,12 +29633,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " "storage. Super-flex neoprene keeps one warm in moderately cold weather." msgstr "" +"Para standardowych spodni z kieszeniami. Wytrzymałe, lekkie i z dużą ilością" +" miejsca do przechowywania. Super-elastyczny neopren utrzymuje ciepło w " +"umiarkowanie zimnych warunkach pogodowych." #: lang/json/ARMOR_from_json.py msgid "CRIT pants" @@ -29549,13 +29651,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " "lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" " moderately cold weather." msgstr "" +"Para spodni garniturowych. Minimalistyczny, elegancki design sprawia, że " +"spodnie są lekkie i posiadają wystarczająco głębokie kieszenie. Super-" +"elastyczny neopren utrzymuje ciepło w umiarkowanie zimne dni." #: lang/json/ARMOR_from_json.py msgid "CRIT helmet liner" @@ -29568,7 +29673,7 @@ msgstr[3] "" #. ~ Description for CRIT helmet liner #: lang/json/ARMOR_from_json.py msgid "A standard-issue helmet liner. Keeps the noggin warm." -msgstr "" +msgstr "Standardowa wyściółka hełmu. Utrzymuje ciepło głowy." #: lang/json/ARMOR_from_json.py msgid "pair of CRIT shoes" @@ -29581,7 +29686,7 @@ msgstr[3] "" #. ~ Description for pair of CRIT shoes #: lang/json/ARMOR_from_json.py msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." -msgstr "" +msgstr "Elegancka para butów do garnituru. Fantazyjne, ale przyjazne dla oka." #: lang/json/ARMOR_from_json.py msgid "pair of CRIT rec gloves" @@ -29597,12 +29702,23 @@ msgid "" "A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +"Para standardowych rękawic sportowych. Przylegające do skóry i eleganckie, " +"wykonane są z bawełny z neoprenową podszewką zapewniającą ciepło i chwyt." + +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" "A standard-issue belt. Keeps your trousers up and your tools on your hip." msgstr "" +"Standardowy pasek. Trzyma spodnie na swoim miejscu, a narzędzia na biodrach." #: lang/json/ARMOR_from_json.py msgid "CRIT rec duster" @@ -29619,6 +29735,9 @@ msgid "" "functionality meet together to form a fancy but sleek contemporary design. " "It has several pockets for storage." msgstr "" +"Nieprzemakalny płaszcz przeciwdeszczowy o pełnej długości, wykonany z " +"neoprenu. Komfort i funkcjonalność spotykają się razem tworząc fantazyjny, " +"ale elegancki współczesny design. Posiada kilka kieszeni do przechowywania." #: lang/json/ARMOR_from_json.py msgid "CRIT rec hat" @@ -29635,6 +29754,9 @@ msgid "" "cover. Thick enough to provide warmth in colder weather, this hat shares " "the same sleek design of most of C.R.I.T's gear." msgstr "" +"Funkcjonalność spotyka się z modą w tym nieprzemakalnym nakryciu głowy CRIT " +"standardowego typu. Wystarczająco gruby, aby zapewnić ciepło w chłodniejsze " +"dni, ten czapka ma ten sam elegancki styl, co większość sprzętu C.R.I.T." #: lang/json/ARMOR_from_json.py msgid "plant fiber tunic" @@ -29650,6 +29772,8 @@ msgid "" "A loose garment cobbled together from a collection of plant bundles and " "wound together by makeshift cordage" msgstr "" +"Luźne ubranie złożone z zestawu wiązek roślin, owinięte prowizorycznym " +"sznurkiem" #: lang/json/ARMOR_from_json.py msgid "plant fiber bracelet" @@ -29665,6 +29789,8 @@ msgid "" "A bracelet wound together by makeshift cordage. Has some cool looking " "pebbles." msgstr "" +"Bransoletka zwinięta razem za pomocą prowizorycznego sznurka. Ma kilka " +"fajnie wyglądających kamyczków." #: lang/json/ARMOR_from_json.py msgid "CRIT canteen" @@ -29680,6 +29806,8 @@ msgid "" "A durable steel canteen that can heat up food with built in atomic heating " "elements." msgstr "" +"Wytrzymała stalowa manierka, która może podgrzewać jedzenie dzięki " +"wbudowanym atomowym elementom grzewczym." #: lang/json/ARMOR_from_json.py msgid "salvaged new order armor" @@ -29697,6 +29825,11 @@ msgid "" "needed to pry it off its wearer, and some sort of dead man's switch on the " "elements that actually power the thing and make it easy to wear." msgstr "" +"Zbroja należąca do ludzkich rozmiarów żołnierza Nowego Porządku. Jest " +"strasznie zniszczona w skutek kilku czynników: walk, które widziała, procesu" +" potrzebnego do zerwania jej z noszącego oraz jakiegoś rodzaju " +"\"przełącznika martwego człowieka\" na elementach, które ją zasilają i " +"sprawiają, że jest łatwa do noszenia." #: lang/json/ARMOR_from_json.py msgid "new order shield" @@ -29713,6 +29846,10 @@ msgid "" " Vigilants, the gendarmerie of the New Order. Alongside their infamous " "shock batons, this is an essential tool in 'keeping the peace'." msgstr "" +"Prosta tarcza wykonana z jakiegoś rodzaju poliwęglanu, używana powszechnie " +"przez Czuwających, żandarmerię Nowego Porządku. Wraz z ich niesławnymi " +"pałkami uderzeniowymi, jest to podstawowe narzędzie do \"utrzymywania " +"pokoju\"." #: lang/json/ARMOR_from_json.py msgid "new order battle shield" @@ -29728,6 +29865,8 @@ msgid "" "A well forged shield made of steel, emblazoned with what appears to be a " "highly stylized depiction of a sword piercing a star." msgstr "" +"Dobrze wykuta tarcza ze stali, ozdobiona czymś, co wydaje się być wysoce " +"stylizowanym przedstawieniem miecza przebijającego gwiazdę." #. ~ Description for large quiver #: lang/json/ARMOR_from_json.py @@ -29737,6 +29876,10 @@ msgid "" "but sometimes horses are a little hard to come by in this day and age. " "Activate to store arrows." msgstr "" +"Duży skórzany kołczan wykończony metalem, noszony na plecach, który może " +"pomieścić 60 strzał. Historycznie używany raczej przez łuczników konnych niż" +" pieszych, ale w dzisiejszych czasach ciężko o konie. Aktywuj, aby " +"przechowywać strzały." #. ~ Description for bra #: lang/json/ARMOR_from_json.py @@ -29744,6 +29887,7 @@ msgid "" "A simple bra. For protecting those bits you don't want creatures to look " "at." msgstr "" +"Stanik. Chroni te części ciała, które powinny uniknąć wzroku różnych istot." #: lang/json/ARMOR_from_json.py msgid "Ixythyug the Destroyer's soul" @@ -29756,29 +29900,31 @@ msgstr[3] "" #. ~ Description for Ixythyug the Destroyer's soul #: lang/json/ARMOR_from_json.py msgid "RIP AND TEAR" -msgstr "" +msgstr "WALCZ, ZABIJAJ" #: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py msgid "Force Shield" msgid_plural "Force Shield" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Tarcza Mocy" +msgstr[1] "Tarcza Mocy" +msgstr[2] "Tarcza Mocy" +msgstr[3] "Tarcza Mocy" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." msgstr "" +"Tarcza z czystej mocy, która chroni cię przed większością obrażeń " +"fizycznych." #: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py msgid "Soul Burn" msgid_plural "Soul Burns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Palenie Duszy" +msgstr[1] "Palenie Duszy" +msgstr[2] "Palenie Duszy" +msgstr[3] "Palenie Duszy" #. ~ Description for Soul Burn #: lang/json/ARMOR_from_json.py @@ -29786,6 +29932,8 @@ msgid "" "A little of your soul has been burned away, leaving you in a weakened state." " The soul heals quickly, so rest for now." msgstr "" +"Odrobina twojej duszy została wypalona, pozostawiając cię w osłabionym " +"stanie. Dusza szybko się goi, więc na razie odpoczywaj." #: lang/json/ARMOR_from_json.py msgid "copper infusion bracelet" @@ -29802,6 +29950,8 @@ 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 "" +"Na tej bransoletce wygrawerowane są runy. Gdy na nią patrzysz, wyczuwasz " +"lekki powiew mistycyzmu. Przydałaby się do nasycania materiału maną." #: lang/json/ARMOR_from_json.py msgid "silver infusion bracelet" @@ -29825,6 +29975,8 @@ 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 "" +"Drewniana opaska z miedzianymi wykończeniami do noszenia na głowie. Poprzez " +"dotknięcie skroni mając ją na sobie można poczuć się bardzo spokojnie." #: lang/json/ARMOR_from_json.py msgid "pair of demon chitin arm guards" @@ -29840,6 +29992,9 @@ msgid "" "A pair of arm guards crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" +"Para ochraniaczy na ramiona wykonana z dokładnie oczyszczonych i przyciętych" +" czerwonych egzoszkieletów demonicznych pająków. Odporne na ogień i bardzo " +"wytrzymałe." #: lang/json/ARMOR_from_json.py msgid "demon chitin armor" @@ -29855,6 +30010,9 @@ msgid "" "Leg and body armor crafted from the carefully cleaned and pruned red " "exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" +"Zbroja na nogi i ciało wykonana z dokładnie oczyszczonych i przyciętych " +"czerwonych egzoszkieletów demonicznych pająków. Odporna na ogień i bardzo " +"wytrzymała." #: lang/json/ARMOR_from_json.py msgid "demon chitin helmet" @@ -29870,6 +30028,9 @@ 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 "" +"Hełm wykonany z dokładnie oczyszczonych i przyciętych czerwonych " +"egzoszkieletów demonicznych pająków. Zakrywa całą głowę; ognioodporny i " +"bardzo wytrzymały." #: lang/json/ARMOR_from_json.py msgid "pair of demon chitin gauntlets" @@ -29885,6 +30046,8 @@ msgid "" "Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " "demon spiders. Fire-resistant and very durable." msgstr "" +"Rękawice wykonane z dokładnie oczyszczonych i przyciętych czerwonych " +"egzoszkieletów demonicznych pająków. Odporne na ogień i bardzo wytrzymałe." #: lang/json/ARMOR_from_json.py msgid "pair of demon chitin boots" @@ -29900,6 +30063,8 @@ msgid "" "Boots crafted from carefully cleaned and pruned red exoskeletons of demon " "spiders. Fire-resistant and very durable." msgstr "" +"Buty wykonane z dokładnie oczyszczonych i przyciętych czerwonych " +"egzoszkieletów demonicznych pająków. Ognioodporne i bardzo wytrzymałe." #: lang/json/ARMOR_from_json.py msgid "pair of black dragonscale boots" @@ -29915,6 +30080,8 @@ msgid "" "Boots made of black incredibly durable dragonscale. Very protective, and " "surprisingly light." msgstr "" +"Buty wykonane z czarnej, niesamowicie wytrzymałej smoczej łuski. Niezwykle " +"odporne, a przy tym zaskakująco lekkie." #: lang/json/ARMOR_from_json.py msgid "pair of black dragonhide boots" @@ -29930,6 +30097,8 @@ msgid "" "Boots made of very durable black dragonhide. Very protective, and " "surprisingly light." msgstr "" +"Buty wykonane z bardzo wytrzymałej czarnej smoczej skóry. Niezwykle odporne," +" a przy tym zaskakująco lekkie." #: lang/json/ARMOR_from_json.py msgid "black dragonscale helmet" @@ -29954,6 +30123,9 @@ msgid "" "black dragonhide. It comes equipped with a full face visor with only a thin" " slit to see out of. Activate to raise the visor." msgstr "" +"Hełm wykonany z czarnej, niezwykle wytrzymałej smoczej łuski, połączonej z " +"czarną smoczą skórą. Wyposażony jest w przyłbicę zakrywającą całą twarz, " +"przez którą widać tylko cienką szczelinę. Aktywuj, aby podnieść przyłbicę." #: lang/json/ARMOR_from_json.py msgid "black dragonscale helmet (raised visor)" @@ -29977,6 +30149,8 @@ msgid "" "A helmet made from incredibly durable black dragonscale, held together with " "black dragonhide. The visor is raised." msgstr "" +"Hełm wykonany z niewiarygodnie wytrzymałej czarnej smoczej łuski, połączonej" +" z czarną smoczą skórą. Przyłbica jest podniesiona." #: lang/json/ARMOR_from_json.py msgid "black dragonhide helmet" @@ -29992,6 +30166,8 @@ msgid "" "A helmet made from very durable black dragonhide. It protects your head " "well, but doesn't cover your face." msgstr "" +"Hełm wykonany z bardzo wytrzymałej czarnej smoczej skóry. Dobrze chroni " +"głowę, ale nie zasłania twarzy." #: lang/json/ARMOR_from_json.py msgid "black dragonscale armor" @@ -30008,6 +30184,9 @@ msgid "" "all the accoutrements that cover your torso, legs, and arms, with the " "benefit of being very light and flexible." msgstr "" +"Pełna zbroja z niewiarygodnie wytrzymałej czarnej smoczej łuski. Zawiera " +"wszystkie elementy, które pokrywają twój tors, nogi i ręce, a przy tym jest " +"bardzo lekki i elastyczny." #: lang/json/ARMOR_from_json.py msgid "black dragonhide armor" @@ -30024,6 +30203,9 @@ msgid "" "accoutrements that cover your torso, legs, and arms, with the benefit of " "being very light and flexible." msgstr "" +"Pełna zbroja z bardzo wytrzymałej, czarnej skóry smoka. Zawiera wszystkie " +"elementy, które pokrywają twój tors, nogi i ręce, a przy tym jest bardzo " +"lekka i elastyczna." #: lang/json/ARMOR_from_json.py msgid "pair of black dragonscale gauntlets" @@ -30039,6 +30221,8 @@ msgid "" "A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " "that covers your hands." msgstr "" +"Para wytrzymałych rękawic wykonanych z niewiarygodnie trwałej czarnej " +"smoczej łuski, które zakryją twoje dłonie." #: lang/json/ARMOR_from_json.py msgid "pair of black dragonhide gloves" @@ -30054,6 +30238,9 @@ msgid "" "A pair of gloves made of very durable black dragonhide, modified to be easy " "to wear while providing maximum protection under extreme conditions." msgstr "" +"Para rękawic wykonanych z bardzo wytrzymałej czarnej smoczej skóry, " +"zmodyfikowanych tak, aby były łatwe w noszeniu, a jednocześnie zapewniały " +"maksymalną ochronę w ekstremalnych warunkach." #: lang/json/ARMOR_from_json.py msgid "pair of XL black dragonscale boots" @@ -30069,6 +30256,9 @@ msgid "" "Massive boots made of incredibly durable black dragonscale, modified to fit " "even the strangest of bodies. Very protective, and surprisingly light." msgstr "" +"Masywne buty wykonane z niewiarygodnie wytrzymałej czarnej smoczej łuski, " +"zmodyfikowane tak, by pasowały nawet do najdziwniejszych ciał. Bardzo " +"wytrzymałe, a przy tym zaskakująco lekkie." #: lang/json/ARMOR_from_json.py msgid "pair of XL black dragonhide boots" @@ -30084,6 +30274,9 @@ msgid "" "Massive boots made of very durable black dragonhide, modified to fit even " "the strangest of bodies. Very protective, and surprisingly light." msgstr "" +"Masywne buty wykonane z bardzo wytrzymałej czarnej smoczej skóry, " +"zmodyfikowane tak, by pasowały nawet do najdziwniejszych ciał. Bardzo " +"wytrzymałe, a przy tym zaskakująco lekkie." #: lang/json/ARMOR_from_json.py msgid "pair of XL black dragonscale gauntlets" @@ -30099,6 +30292,8 @@ msgid "" "A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " "that covers your hands, or whatever you use as hands." msgstr "" +"Para wytrzymałych rękawic wykonanych z niewiarygodnie trwałej czarnej " +"smoczej łuski, które zakryją twoje dłonie, czy to cam ci służy za dłonie." #: lang/json/ARMOR_from_json.py msgid "pair of XL black dragonhide gloves" @@ -30115,6 +30310,10 @@ msgid "" "to wear while providing maximum protection under extreme conditions. Sized " "to fit even the strangest of anatomy." msgstr "" +"Para rękawic wykonanych z bardzo wytrzymałej czarnej smoczej skóry, " +"zmodyfikowanych tak, aby były łatwe w noszeniu, a jednocześnie zapewniały " +"maksymalną ochronę w ekstremalnych warunkach. Dostosowane rozmiarem do nawet" +" najdziwniejszych anatomii." #: lang/json/ARMOR_from_json.py msgid "XL black dragonscale helmet" @@ -30131,6 +30330,9 @@ msgid "" "together with black dragonhide. It comes equipped with a full face visor " "you can raise and is large enough to fit even the strangest of heads." msgstr "" +"Masywny hełm wykonany z niesamowicie wytrzymałej czarnej smoczej łuski, " +"połączonej z czarną smoczą skórą. Wyposażony jest w podnoszoną przyłbicę i " +"jest wystarczająco duży, by zmieścić nawet najdziwniejsze głowy." #: lang/json/ARMOR_from_json.py msgid "XL black dragonscale helmet (raised visor)" @@ -30147,6 +30349,9 @@ msgid "" "together with black dragonhide. It is large enough to fit even the " "strangest of heads. The visor is raised" msgstr "" +"Masywny hełm wykonany z niesamowicie wytrzymałej czarnej smoczej łuski, " +"połączonej z czarną smoczą skórą. Jest wystarczająco duży, by zmieścić nawet" +" najdziwniejsze głowy. Przyłbica jest uniesiona." #: lang/json/ARMOR_from_json.py msgid "XL black dragonhide helmet" @@ -30163,6 +30368,9 @@ msgid "" "head well, and doesn't cover your face, but is large enough to fit even the " "strangest of heads." msgstr "" +"Masywny hełm wykonany z bardzo wytrzymałej czarnej smoczej skóry. Dobrze " +"chroni głowę i nie zasłania twarzy, ale jest na tyle duży, że zmieści się " +"nawet na najdziwniejszą głowę." #: lang/json/ARMOR_from_json.py msgid "XL black dragonscale armor" @@ -30179,6 +30387,9 @@ msgid "" " with all the accoutrements that cover your torso, legs, and arms; sized to " "fit even the strangest of bodies." msgstr "" +"Masywna, pełna zbroja z niewiarygodnie wytrzymałej, czarnej smoczej łuski. " +"Zawiera wszystkie elementy, które zakrywają twój tors, nogi i ramiona, " +"dopasowane do nawet najdziwniejszych ciał." #: lang/json/ARMOR_from_json.py msgid "XL black dragonhide armor" @@ -30195,6 +30406,9 @@ msgid "" "all the accoutrements that cover your torso, legs, and arms; sized to fit " "even the strangest of bodies." msgstr "" +"Masywna, pełna zbroja z bardzo wytrzymałej, czarnej smoczej skóry. Zawiera " +"wszystkie elementy, które zakrywają twój tors, nogi i ramiona, dopasowane do" +" nawet najdziwniejszych ciał." #: lang/json/ARMOR_from_json.py msgid "dragonhide backpack" @@ -30210,6 +30424,8 @@ msgid "" "A custom-built backpack. Made of very durable dragon leather and carefully " "crafted to hold as much stuff as possible." msgstr "" +"Spersonalizowany plecak. Wykonany z bardzo wytrzymałej smoczej skóry i " +"starannie dopracowany, aby pomieścić jak najwięcej rzeczy." #: lang/json/ARMOR_from_json.py msgid "XL dragonhide backpack" @@ -30249,6 +30465,8 @@ msgid "" "A blue pointed hat with stars stitched into it. Wearing it increases your " "maximum mana." msgstr "" +"Niebieski spiczasty kapelusz z wyszytymi gwiazdami. Noszenie go zwiększa " +"twoją maksymalną manę." #: lang/json/ARMOR_from_json.py msgid "Cloak of Morthylla the Lamia" @@ -30264,6 +30482,8 @@ msgid "" "This cloak seems to absorb light except for the pinpricks of stars that move" " across its surface." msgstr "" +"Płaszcz ten zdaje się pochłaniać światło, z wyjątkiem drobnych punkcików " +"gwiazd, które przemieszczają się po jego powierzchni." #: lang/json/ARMOR_from_json.py msgid "pair of wolfshead cufflinks" @@ -30280,6 +30500,9 @@ msgid "" "cufflink has a bright ruby eye and pearl teeth. They appear to be growling." " There is an inscription, 'When the moon shines. I become alive.'" msgstr "" +"Para srebrnych spinek do mankietów z wygrawerowaną w nich głową wilka. Każda" +" spinka ma jasne rubinowe oko i perłowe zęby. Wyglądają jakby warczały. Jest" +" tam napis: \"Kiedy księżyc świeci. Staję się żywy.\"" #: lang/json/ARMOR_from_json.py msgid "technomancer's toolbelt" @@ -30295,6 +30518,8 @@ msgid "" "A custom-built leather utility belt that instantly creates any tool that you" " reach for. Activate to sheathe/draw a weapon." msgstr "" +"Spersonalizowany skórzany pas użytkowy, który natychmiast tworzy dowolne " +"narzędzie, po które sięgniesz. Aktywuj, aby schować/wyciągnąć broń." #: lang/json/ARMOR_from_json.py msgid "seven league boots" @@ -30312,6 +30537,10 @@ msgid "" "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 "" +"Wytrzymałe, ale niezwykle wygodne i dobrze dopasowane buty z przetartej " +"skóry i stali, wyglądają na takie, które wiele przeszły i prawdopodobnie " +"jeszcze wiele przejdą w przyszłości. Dzięki nim poruszanie się jest o wiele " +"mniej pracochłonne." #: lang/json/ARMOR_from_json.py msgid "boots of haste" @@ -30329,7 +30558,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -30338,6 +30567,11 @@ msgid "" "motions, to make movement around and over obstacles much more fluid and " "efficient." msgstr "" +"Wytrzymałe, ale niezwykle wygodne i dobrze dopasowane buty z przetartej " +"skóry i stali, wydają się być nieco bardziej elastyczne i przewiewne niż " +"typowe dla tego materiału. Zaklęcie, którym są opatrzone, pomaga " +"użytkownikowi kierować jego ruchami, dzięki czemu poruszanie się wokół i nad" +" przeszkodami jest bardziej płynne i efektywne." #: lang/json/ARMOR_from_json.py msgid "boots of grounding" @@ -30354,6 +30588,9 @@ msgid "" "small engraved runes seemingly filled with rubber. When worn, you are " "immune to damage from electricity." msgstr "" +"Wytrzymałe, ale niezwykle wygodne i dobrze dopasowane buty ze skóry z małymi" +" wygrawerowanymi runami, które wydają się być wypełnione gumą. Kiedy je " +"nosisz, jesteś odporny na obrażenia od elektryczności." #: lang/json/ARMOR_from_json.py msgid "Wildshape Cloak: Fish" @@ -30370,6 +30607,9 @@ msgid "" "worn to morph your body to a form that is excellent for swimming, but ill-" "suited for combat." msgstr "" +"Magiczna peleryna, która mieni się jak świeża woda w promieniach ciepłego " +"słońca. Można ją nosić, aby zmienić swoje ciało w formę, która jest " +"doskonała do pływania, ale nie nadaje się do walki." #: lang/json/ARMOR_from_json.py msgid "Wildshape Cloak: Bear" @@ -30386,6 +30626,9 @@ msgid "" "body to a form that is strong and resilient in melee combat. However, you " "feel as if you would lose a part of yourself." msgstr "" +"Magiczna peleryna, która pachnie lasem. Można ją nosić, aby zmienić swoje " +"ciało w formę, która jest silna i odporna w walce wręcz. Jednak czujesz się " +"tak, jakbyś miał stracić część siebie." #: lang/json/ARMOR_from_json.py msgid "Wildshape Cloak: Deer" @@ -30402,6 +30645,9 @@ msgid "" "body to a form well-suited to escaping difficult situations. However, it " "places a great strain on your body." msgstr "" +"Magiczna peleryna, która jest miękka w dotyku. Można ją nosić, aby zmienić " +"swoje ciało w formę odpowiednią do ucieczki w trudnych sytuacjach. Jest to " +"jednak bardzo obciążające dla organizmu." #: lang/json/ARMOR_from_json.py msgid "enchanted parabolan wool blouse" @@ -30411,7 +30657,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -30419,6 +30665,10 @@ msgid "" "sometimes dimly shows reflections of things here and not. This particular " "one has piratical flairs and glitters with enchantment." msgstr "" +"Luźna, opalizująca bluzka w stylu kojarzonym najczęściej z piratami i " +"festynami renesansowymi. Mieni się, gdy się na nią patrzy. Wykonana z wełny " +"parabolicznej, czasem niewyraźnie pokazuje odbicia rzeczy tu i tam. Ta " +"konkretna ma piracki charakter i migocze czarodziejskim blaskiem." #: lang/json/ARMOR_from_json.py msgid "enchanted parabolan wool breeches" @@ -30428,7 +30678,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -30436,6 +30686,10 @@ msgid "" "parabolan wool, it sometimes dimly shows reflections of things here and not." " This particular one has piratical flairs and gliters with enchantment." msgstr "" +"Dobrze uszyte spodnie w starym stylu, wykonane z opalizującego materiału. " +"Wygodne, ale brak w nich kieszeni. Mienią się, gdy się na nie patrzy. " +"Wykonane z wełny parabolicznej, czasem słabo widać w nich odbicia rzeczy tu " +"i tam. Te konkretne mają piracki sznyt i połyskują czarodziejskim blaskiem." #: lang/json/ARMOR_from_json.py msgid "parabolan wool blouse" @@ -30452,6 +30706,9 @@ msgid "" "renfaires. It shimmers as you look at it. Made of parabolan wool, it " "sometimes dimly shows reflections of things here and not." msgstr "" +"Luźna, opalizująca bluzka w stylu kojarzonym najczęściej z piratami i " +"festynami renesansowymi. Mieni się, gdy się na nią patrzy. Wykonana z wełny " +"parabolicznej, czasem niewyraźnie pokazuje odbicia rzeczy tu i tam." #: lang/json/ARMOR_from_json.py msgid "parabolan wool breeches" @@ -30461,13 +30718,17 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " "Comfortable, but lacks pockets. It shimmers as you look at it. Made of " "parabolan wool, it sometimes dimly shows reflections of things here and not." msgstr "" +"Dobrze uszyte spodnie w starym stylu, wykonane z opalizującego materiału. " +"Wygodne, ale brak w nich kieszeni. Mienią się, gdy się na nie patrzy. " +"Wykonane z wełny parabolicznej, czasem słabo widać w nich odbicia rzeczy tu " +"i tam." #: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py msgid "pair of magical armored stone gauntlets" @@ -30493,7 +30754,7 @@ msgstr[3] "" #. ~ Description for magic lamp #: lang/json/ARMOR_from_json.py msgid "A magical light source that will light up a small area." -msgstr "" +msgstr "Magiczne źródło światła, które oświetli niewielki obszar." #: lang/json/ARMOR_from_json.py msgid "magic light" @@ -30506,7 +30767,7 @@ msgstr[3] "" #. ~ Description for magic light #: lang/json/ARMOR_from_json.py msgid "A small magical light that you can read by." -msgstr "" +msgstr "Małe magiczne światło, przy którym można czytać." #: lang/json/ARMOR_from_json.py msgid "large shield of magical ice" @@ -30519,7 +30780,7 @@ msgstr[3] "" #. ~ Description for large shield of magical ice #: lang/json/ARMOR_from_json.py msgid "A lightweight but tough shield crafted entirely of magical ice." -msgstr "" +msgstr "Lekka, ale wytrzymała tarcza wykonana w całości z magicznego lodu." #: lang/json/ARMOR_from_json.py msgid "slick icy coatings" @@ -30529,12 +30790,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py 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 "" +"Magiczna, śliska, lodowa powłoka na twoich stopach. Choć są dość szybka na " +"płaskich powierzchniach, utrudnia poruszanie się po nierównym terenie." #: lang/json/ARMOR_from_json.py msgid "flesh pouch" @@ -30551,6 +30814,9 @@ msgid "" "grasp and hold anything you place inside. It shifts and adjusts itself to " "minimize encumbrance." msgstr "" +"Duża sakiewka ze stwardniałego ciała na plecach, wypełniona małymi mackami, " +"które chwytają i utrzymują wszystko, co umieścisz w środku. Przesuwa się i " +"dopasowuje, by zminimalizować obciążenia." #: lang/json/ARMOR_from_json.py msgid "obfuscating aura" @@ -30566,6 +30832,8 @@ 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 "" +"Wszechogarniająca, niewidzialna warstwa magii zniekształca światło wokół " +"twojego ciała. Pozwala na uniknięcie dwóch dodatkowych ataków w danej turze." #: lang/json/ARMOR_from_json.py msgid "acid resistance aura" @@ -30579,7 +30847,7 @@ msgstr[3] "" #. ~ Description for greater acid resistance aura #: lang/json/ARMOR_from_json.py msgid "An all-encompassing, invisible layer of protection against acid." -msgstr "" +msgstr "Wszechogarniająca, niewidzialna warstwa magii chroniąca przed kwasem." #: lang/json/ARMOR_from_json.py msgid "greater acid resistance aura" @@ -30597,10 +30865,10 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." -msgstr "" +msgstr "Cienka warstwa magicznego lodu, pokrywająca całe ciało." #: lang/json/ARMOR_from_json.py msgid "stoneskin coating" @@ -30610,12 +30878,13 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " "body." msgstr "" +"Cienka warstwa ruchomej, niemal płynnej żywej skały, pokrywająca całe ciało." #: lang/json/ARMOR_from_json.py msgid "overcharge burn" @@ -30628,7 +30897,7 @@ msgstr[3] "" #. ~ Description for overcharge burn #: lang/json/ARMOR_from_json.py msgid "Ouch, this really smarts! It'll go away soon, maybe?" -msgstr "" +msgstr "Auć, to naprawdę sprytne! Może wkrótce zniknie?" #: lang/json/ARMOR_from_json.py msgid "aura of protection" @@ -30644,6 +30913,8 @@ msgid "" "An all-encompassing, invisible layer of magical aura that protects you from " "the environment." msgstr "" +"Wszechogarniająca, niewidzialna warstwa magicznej aury, która chroni cię " +"przed środowiskiem." #: lang/json/ARMOR_from_json.py msgid "aura of repelling arc" @@ -30658,6 +30929,7 @@ msgstr[3] "" msgid "" "An invisible aura that strikes melee attackers with arcs of electricity." msgstr "" +"Niewidzialna aura, która razi atakujących wręcz łukami elektryczności." #: lang/json/ARMOR_from_json.py msgid "feral aura" @@ -30672,6 +30944,7 @@ msgstr[3] "" msgid "" "The manifestation of your rage. It won't disappear until you calm down." msgstr "" +"Manifestacja twojej wściekłości. Nie zniknie, dopóki się nie uspokoisz." #: lang/json/ARMOR_from_json.py msgid "acid aura" @@ -30687,6 +30960,8 @@ msgid "" "An aura of thin acid, swirling around your body ready to corrode when struck" " or while striking." msgstr "" +"Aura rzadkiego kwasu, wirująca wokół twojego ciała, gotowa korodować, gdy " +"zostaniesz uderzony lub podczas uderzenia." #: lang/json/ARMOR_from_json.py msgid "werewolf aura" @@ -30700,14 +30975,15 @@ msgstr[3] "" #: lang/json/ARMOR_from_json.py msgid "You have become the werewolf. Boys becoming men, men becoming wolves." msgstr "" +"Stałeś się wilkołakiem. Chłopcy stają się mężczyznami, mężczyźni wilkami." #: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py msgid "Black Dragon Shell" msgid_plural "Black Dragon Shells" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Skorupa Czarnego Smoka" +msgstr[1] "Skorupy Czarnego Smoka" +msgstr[2] "Skorup Czarnego Smoka" +msgstr[3] "Skorupy Czarnego Smoka" #. ~ Description for Black Dragon Shell #: lang/json/ARMOR_from_json.py @@ -30715,6 +30991,8 @@ msgid "" "An aura of black and green draconic energy, swirling around your body " "protecting you and punishing those who strike you." msgstr "" +"Aura czarnej i zielonej smoczej energii, wirująca wokół twojego ciała, " +"chroniąca cię i rażąca tych, którzy cię uderzą." #: lang/json/ARMOR_from_json.py msgid "spiritual armor" @@ -30724,10 +31002,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" +"Przyzwana średniowieczna zbroja. Delikatnie świeci i wygląda na solidną." #: lang/json/ARMOR_from_json.py msgid "auroral shell" @@ -30737,10 +31016,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" +"Solidna powłoka, która otacza twoje ciało, zapewniając solidną obronę." #: lang/json/BATTERY_from_json.py msgid "test battery" @@ -30756,6 +31036,8 @@ msgid "" "This is a testing item for the BATTERY item type. If you found one in game," " it's a bug." msgstr "" +"To jest element testowy dla typu elementu BATERIA. Jeśli znalazłeś taki w " +"grze, jest to błąd." #: lang/json/BIONIC_ITEM_from_json.py msgid "abstract bionic module" @@ -30847,21 +31129,24 @@ msgstr "" "prześladowcy." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "KMB Opancerzenie Ramion" -msgstr[1] "KMB Opancerzenie Ramion" -msgstr[2] "KMB Opancerzenie Ramion" -msgstr[3] "KMB Opancerzenie Ramion" - -#. ~ Description for Arms Alloy Plating CBM +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" -"Opancerzenie kompozytowe zastępujące ciało na ramionach użytkownika. " -"Zapewnia pasywną ochronę i można go używać z bionicznymi sztukami walki." +"Zaawansowana siatka ochronna, która wplata się w ciało użytkownika. Zapewnia" +" pasywną ochronę kosztem pewnych niedogodności i może być używana w " +"połączeniu z bionicznymi sztukami walki." #: lang/json/BIONIC_ITEM_from_json.py msgid "Protective Lenses CBM" @@ -30883,55 +31168,46 @@ msgstr "" "łzowe do ust. Gdy użytkownik płacze, musi wypluwać lub połykać łzy." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" -msgstr[0] "Opancerzenie Głowy CBM" -msgstr[1] "Opancerzenie Głowy CBM" -msgstr[2] "Opancerzenie Głowy CBM" -msgstr[3] "Opancerzenie Głowy CBM" - -#. ~ Description for Head Alloy Plating CBM +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" -"Opancerzenie kompozytowe zastępujące ciało na głowie użytkownika, chroniące " -"zarówno głowę jak i region szczęki." +"Zaawansowana siatka ochronna, która wplata się w ciało użytkownika, chroniąc" +" zarówno jego głowę, jak i okolice szczęki kosztem pewnych niedogodności." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" -msgstr[0] "KMB Opancerzenie Nóg" -msgstr[1] "KMB Opancerzenie Nóg" -msgstr[2] "KMB Opancerzenie Nóg" -msgstr[3] "KMB Opancerzenie Nóg" - -#. ~ Description for Legs Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" -"Opancerzenie kompozytowe zastępujące ciało na nogach użytkownika. Zapewnia " -"pasywną ochronę i można go używać z bionicznymi sztukami walki." +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" -msgstr[0] "KMB Opancerzenie Tułowia" -msgstr[1] "KMB Opancerzenie Tułowia" -msgstr[2] "KMB Opancerzenie Tułowia" -msgstr[3] "KMB Opancerzenie Tułowia" - -#. ~ Description for Torso Alloy Plating CBM +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" -"Opancerzenie kompozytowe zastępujące ciało na korpusie użytkownika, " -"chroniące go przed fizycznymi obrażeniami." +"Zaawansowana siatka ochronna, która wplata się w ciało użytkownika, chroniąc" +" je przed urazami fizycznymi kosztem pewnych niedogodności." #: lang/json/BIONIC_ITEM_from_json.py msgid "Battery System CBM" @@ -31910,7 +32186,7 @@ msgstr[1] "Banki Mocy II Generacji CBM" msgstr[2] "Banków Mocy II Generacji CBM" msgstr[3] "Banka Mocy II Generacji CBM" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -32497,7 +32773,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "Para uszkodzonych bionik, wydających piszczące dźwięki." @@ -32757,7 +33033,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "Para wadliwych, samoblokujących się bionicznych kciuków." @@ -34019,6 +34295,8 @@ msgid "" "A thick glossy paperback instructional manual for aspiring web designers " "that includes a teaching guide for young students." msgstr "" +"Gruby, błyszczący podręcznik dla aspirujących projektantów stron " +"internetowych, który zawiera przewodnik dydaktyczny dla młodych studentów." #: lang/json/BOOK_from_json.py msgid "Pro Hacker Secrets" @@ -34035,14 +34313,17 @@ msgid "" "exciting as the authors might have hoped, but there's some real knowledge in" " here." msgstr "" +"Lekko zawoalowana próba nauczenia dzieci kodowania. Nie jest to tak " +"ekscytujące, jak autorzy mieli nadzieję, ale jest tu trochę prawdziwej " +"wiedzy." #: lang/json/BOOK_from_json.py msgid "The Homebrewer's Bible" msgid_plural "copies of The Homebrewer's Bible" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Biblia domowego piwowara" +msgstr[1] "kopie Biblii domowego piwowara" +msgstr[2] "kopii Biblii domowego piwowara" +msgstr[3] "kopii Biblii domowego piwowara" #. ~ Description for The Homebrewer's Bible #: lang/json/BOOK_from_json.py @@ -34533,7 +34814,7 @@ msgstr[1] "notatki nożownika" msgstr[2] "notatki nożownika" msgstr[3] "notatki nożownika" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -34748,6 +35029,12 @@ msgid "" " 6502 8-bit processor. If you want to do anything useful with integrated " "circuits, a reference like this would be indispensable." msgstr "" +"Ten podręcznik referencyjny zawiera karty katalogowe i schematy wyprowadzeń " +"101 najpopularniejszych układów scalonych, w tym czasomierza 555, " +"wzmacniacza operacyjnego LM358 i regulatora napięcia LM317, a także układów " +"logicznych z rodziny 74xx, a nawet 8-bitowego procesora 6502. Jeśli chcesz " +"zrobić cokolwiek użytecznego z układami scalonymi, referencja taka jak ta " +"będzie niezbędna." #: lang/json/BOOK_from_json.py msgid "Amateur Home Radio for Enthusiasts" @@ -34852,7 +35139,7 @@ msgstr[1] "rysunek techniczny moda wzmacniaka radiowego" msgstr[2] "rysunek techniczny moda wzmacniaka radiowego" msgstr[3] "rysunek techniczny moda wzmacniaka radiowego" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -34901,7 +35188,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -34922,7 +35209,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -34930,9 +35217,9 @@ msgstr[3] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -34952,7 +35239,7 @@ msgstr[1] "schematy bota pielęgniarki" msgstr[2] "schematów bota pielęgniarki" msgstr[3] "schematów bota pielęgniarki" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -34973,7 +35260,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -34994,7 +35281,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -35013,7 +35300,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -35032,7 +35319,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -35051,7 +35338,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -35070,7 +35357,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -35089,7 +35376,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -35108,7 +35395,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -35127,7 +35414,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -35146,7 +35433,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -35154,8 +35441,8 @@ msgid "" "you could use the assembly plans to re-assemble the robot from salvaged " "parts." msgstr "" -"Opatrzone logo Uncanny plany montażowe, specyfikacje projektowe i rysunki " -"techniczne bota posłańca. Większość z nich jest dla Ciebie bezużyteczna, ale" +"Opatrzone logo Northrop plany montażowe, specyfikacje projektowe i rysunki " +"techniczne bota posłańca. Większość z nich jest dla ciebie bezużyteczna, ale" " możesz użyć planów montażowych do ponownego złożenia robota z ocalałych " "części." @@ -35167,7 +35454,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -35175,29 +35462,30 @@ msgid "" "you, but you could use the assembly plans to re-assemble the robot from " "salvaged parts." msgstr "" -"Opatrzone logo Uncanny plany montażowe, specyfikacje projektowe i rysunki " -"techniczne wojskowego bota posłańca. Większość z nich jest dla Ciebie " +"Opatrzone logo Northrop plany montażowe, specyfikacje projektowe i rysunki " +"techniczne wojskowego bota posłańca. Większość z nich jest dla ciebie " "bezużyteczna, ale możesz użyć planów montażowych do ponownego złożenia " "robota z ocalałych części." #: lang/json/BOOK_from_json.py msgid "anti-materiel turret schematics" msgid_plural "anti-materiel turret schematics" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "schematy wielkokalibrowej wieżyczki" +msgstr[1] "schematy wielkokalibrowej wieżyczki" +msgstr[2] "schematów wielkokalibrowej wieżyczki" +msgstr[3] "schematu wielkokalibrowej wieżyczki" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " "turret. Most of this is useless to you, but you could use the assembly " "plans to re-assemble the robot from salvaged parts." msgstr "" -"Plany montażowe, specyfikacje projektowe i rysunki techniczne wieżyczki " -"przeciwsprzętowej. Większość z nich jest dla Ciebie bezużyteczna, ale możesz" -" użyć planów montażowych do ponownego złożenia robota z ocalałych części." +"Plany montażowe, specyfikacje projektowe i rysunki techniczne " +"wielkokalibrowej wieżyczki. Większość z nich jest dla ciebie bezużyteczna, " +"ale możesz użyć planów montażowych do ponownego złożenia robota z ocalałych " +"części." #: lang/json/BOOK_from_json.py msgid "milspec searchlight schematics" @@ -35207,7 +35495,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -35221,10 +35509,10 @@ msgstr "" #: lang/json/BOOK_from_json.py msgid "The Art of Glassblowing" msgid_plural "copies of The Art of Glassblowing" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Sztuka dmuchania szkła" +msgstr[1] "kopie Sztuki dmuchania szkła" +msgstr[2] "kopii Sztuki dmuchania szkła" +msgstr[3] "kopii Sztuki dmuchania szkła" #. ~ Description for The Art of Glassblowing #: lang/json/BOOK_from_json.py @@ -35509,10 +35797,10 @@ msgstr "" #: lang/json/BOOK_from_json.py msgid "DIY Compendium" msgid_plural "copies of DIY Compendium" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Kompendium zrób to sam" +msgstr[1] "kopie Kompendium zrób to sam" +msgstr[2] "kopii Kompendium zrób to sam" +msgstr[3] "kopii Kompendium zrób to sam" #. ~ Description for DIY Compendium #: lang/json/BOOK_from_json.py @@ -35719,10 +36007,10 @@ msgstr "" #: lang/json/BOOK_from_json.py msgid "Guide to Advanced Emergency Care" msgid_plural "copies of Guide to Advanced Emergency Care" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Wprowadzenie do zaawansowanej opieki medycznej" +msgstr[1] "kopie Wprowadzenia do zaawansowanej opieki medycznej" +msgstr[2] "kopii Wprowadzenia do zaawansowanej opieki medycznej" +msgstr[3] "kopii Wprowadzenia do zaawansowanej opieki medycznej" #. ~ Description for Guide to Advanced Emergency Care #: lang/json/BOOK_from_json.py @@ -36016,7 +36304,7 @@ msgstr[1] "Duch Aikido" msgstr[2] "Duch Aikido" msgstr[3] "Duch Aikido" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "Kompletny przewodnik po aikido." @@ -36029,7 +36317,7 @@ msgstr[1] "Praktyczny Bokser" msgstr[2] "Praktyczny Bokser" msgstr[3] "Praktyczny Bokser" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -36044,7 +36332,7 @@ msgstr[1] "Capoeira 100" msgstr[2] "Capoeira 100" msgstr[3] "Capoeira 100" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "Kompletny przewodnik po capoeirze." @@ -36057,7 +36345,7 @@ msgstr[1] "Stonoga Lu Feng" msgstr[2] "Stonoga Lu Feng" msgstr[3] "Stonoga Lu Feng" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "Kompletny przewodnik po stylu kung-fu „stonoga”." @@ -36070,7 +36358,7 @@ msgstr[1] "Czerwony Żuraw" msgstr[2] "Czerwony Żuraw" msgstr[3] "Czerwony Żuraw" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "Kompletny przewodnik po stylu kung-fu „żuraw”." @@ -36083,7 +36371,7 @@ msgstr[1] "Jadeitowy Smok" msgstr[2] "Jadeitowy Smok" msgstr[3] "Jadeitowy Smok" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "Kompletny przewodnik po stylu kung-fu „smok”." @@ -36096,7 +36384,7 @@ msgstr[1] "Praktyczna Eskrima" msgstr[2] "Praktyczna Eskrima" msgstr[3] "Praktyczna Eskrima" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "Kompletny przewodnik po eskrimie." @@ -36109,7 +36397,7 @@ msgstr[1] "Współczesny Szermierz" msgstr[2] "Współczesny Szermierz" msgstr[3] "Współczesny Szermierz" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "Kompletny przewodnik po szermierstwie." @@ -36122,7 +36410,7 @@ msgstr[1] "Kodokan Judo" msgstr[2] "Kodokan Judo" msgstr[3] "Kodokan Judo" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "Kompletny przewodnik po judo." @@ -36135,7 +36423,7 @@ msgstr[1] "Podręcznik Shotokan Karate" msgstr[2] "Podręcznik Shotokan Karate" msgstr[3] "Podręcznik Shotokan Karate" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "Kompletny przewodnik po shotokan karate." @@ -36148,7 +36436,7 @@ msgstr[1] "Przegląd Krav Maga" msgstr[2] "Przegląd Krav Maga" msgstr[3] "Przegląd Krav Maga" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "Kompletny przewodnik po Krav Maga." @@ -36161,7 +36449,7 @@ msgstr[1] "Głuchy Lampart" msgstr[2] "Głuchy Lampart" msgstr[3] "Głuchy Lampart" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "Kompletny przewodnik po stylu kung-fu „lampart”." @@ -36174,7 +36462,7 @@ msgstr[1] "Jaszczur Kuo Chui" msgstr[2] "Jaszczur Kuo Chui" msgstr[3] "Jaszczur Kuo Chui" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "Kompletny przewodnik po stylu kung-fu „jaszczur”." @@ -36187,7 +36475,7 @@ msgstr[1] "Nadzwyczajna Muay Thai" msgstr[2] "Nadzwyczajna Muay Thai" msgstr[3] "Nadzwyczajna Muay Thai" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "Kompletny przewodnik po Muay Thai." @@ -36200,7 +36488,7 @@ msgstr[1] "Esencja Ninjutsu" msgstr[2] "Esencja Ninjutsu" msgstr[3] "Esencja Ninjutsu" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "Kompletny przewodnik po ninjutsu." @@ -36213,7 +36501,7 @@ msgstr[1] "Księga Pięciu Kręgów" msgstr[2] "Księga Pięciu Kręgów" msgstr[3] "Księga Pięciu Kręgów" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -36229,7 +36517,7 @@ msgstr[1] "Współczesny Zapaśnik" msgstr[2] "Współczesny Zapaśnik" msgstr[3] "Współczesny Zapaśnik" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "Przewodnik po pankrationie" @@ -36242,7 +36530,7 @@ msgstr[1] "Skorpion Sun Chien" msgstr[2] "Skorpion Sun Chien" msgstr[3] "Skorpion Sun Chien" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "Kompletny przewodnik po stylu kung-fu „skorpion”." @@ -36255,7 +36543,7 @@ msgstr[1] "Indonezyjski Wojownik" msgstr[2] "Indonezyjski Wojownik" msgstr[3] "Indonezyjski Wojownik" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "Kompletny przewodnik po Pentjak Silat." @@ -36268,7 +36556,7 @@ msgstr[1] "Czarny Wąż" msgstr[2] "Czarny Wąż" msgstr[3] "Czarny Wąż" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "Kompletny przewodnik po stylu kung-fu „wąż”." @@ -36281,7 +36569,7 @@ msgstr[1] "Oficjalny Podręcznik do Treningu Taekwondo" msgstr[2] "Oficjalny Podręcznik do Treningu Taekwondo" msgstr[3] "Oficjalny Podręcznik do Treningu Taekwondo" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "Kompletny przewodnik po taekwondo." @@ -36294,7 +36582,7 @@ msgstr[1] "Być Jednym z Tao" msgstr[2] "Być Jednym z Tao" msgstr[3] "Być Jednym z Tao" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "Kompletny przewodnik po T'ai Chi Ch'uan." @@ -36307,7 +36595,7 @@ msgstr[1] "Biały Tygrys" msgstr[2] "Biały Tygrys" msgstr[3] "Biały Tygrys" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "Kompletny przewodnik po stylu kung-fu „tygrys”." @@ -36320,7 +36608,7 @@ msgstr[1] "Ropucha Lo Mang" msgstr[2] "Ropucha Lo Mang" msgstr[3] "Ropucha Lo Mang" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "Kompletny przewodnik po stylu kung-fu „ropucha”." @@ -36333,7 +36621,7 @@ msgstr[1] "Żmija Wei Pai" msgstr[2] "Żmija Wei Pai" msgstr[3] "Żmija Wei Pai" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "Kompletny przewodnik po stylu kung-fu „żmija”." @@ -36346,7 +36634,7 @@ msgstr[1] "Zui Quan i Ty" msgstr[2] "Zui Quan i Ty" msgstr[3] "Zui Quan i Ty" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "Kompletny przewodnik po Zui Quan." @@ -36359,7 +36647,7 @@ msgstr[1] "Droga Włóczni" msgstr[2] "Droga Włóczni" msgstr[3] "Droga Włóczni" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "Kompletny przewodnik po Sōjutsu." @@ -36372,7 +36660,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "Kompletny przewodnik po stylu kung-fu „wing chun”." @@ -36386,7 +36674,7 @@ msgstr[1] "Fior di battaglia" msgstr[2] "Fior di battaglia" msgstr[3] "Fior di battaglia" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -36405,7 +36693,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -36611,7 +36899,7 @@ msgstr[1] "Prospekt Ranczerski" msgstr[2] "Prospekt Ranczerski" msgstr[3] "Prospekt Ranczerski" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -37746,7 +38034,7 @@ msgstr[1] "akta pacjentów" msgstr[2] "akta pacjentów" msgstr[3] "akta pacjentów" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -37760,7 +38048,7 @@ msgstr[1] "krajowe raporty pogodowe" msgstr[2] "krajowe raporty pogodowe" msgstr[3] "krajowe raporty pogodowe" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "Stare dane pogodowe interesują cię tyle co zeszłoroczny śnieg." @@ -38688,7 +38976,7 @@ msgstr "" #: lang/json/BOOK_from_json.py msgid "This is a small reader on Hegel's Dialectics." -msgstr "" +msgstr "Jest to małe czytadło na temat Dialektyki Hegla." #: lang/json/BOOK_from_json.py msgid "" @@ -38895,7 +39183,7 @@ msgid "" "This is a copy of \"Socialism\" by Ludwig von Mises, a critical examination " "of socialism." msgstr "" -"To jest kopia \"Socjalizmu\" Ludwiga von Misesa, krytycznej analizy " +"To jest kopia „Socjalizmu” Ludwiga von Misesa, krytycznej analizy " "socjalizmu." #: lang/json/BOOK_from_json.py @@ -39954,8 +40242,8 @@ msgid "" "playfully attributes a variety of famous philosophical expressions into " "edorsements for the sport of swimming. It's not a bad book, just a bit odd." msgstr "" -"Źle przetłumaczony tytuł ma oznaczać po łacinie \"Pływam, więc jestem\". Ta " -"krótka książka w twardej oprawie przedstawia \"Filozofię pływania\", a " +"Źle przetłumaczony tytuł ma oznaczać po łacinie „Pływam, więc jestem”. Ta " +"krótka książka w twardej oprawie przedstawia „filozofię pływania”, a " "następnie w zabawny sposób przypisuje różne słynne filozoficzne wyrażenia do" " słów uznania dla sportu pływackiego. To nie jest zła książka, tylko trochę " "dziwna." @@ -39974,7 +40262,7 @@ msgid "" "\"Stratosphere: The Rise of Hoops\" chronicles four decades of professional " "basketball against a backdrop of sustained social change." msgstr "" -"\"Stratosfera: Wyścig wysokich skoków\" to kronika czterech dekad " +"„Stratosfera: Wyścig wysokich skoków” to kronika czterech dekad " "profesjonalnej koszykówki na tle trwałych zmian społecznych." #: lang/json/BOOK_from_json.py @@ -40634,9 +40922,9 @@ msgid "" "guide for lawyers interviewing in any type of a job interview.\" It was " "supposed to help new lawyers find work." msgstr "" -"Ta lekka książka głosi się być \" JEDYNY przewodnik ze złotą gwiazdą dla " +"Ta lekka książka głosi się być „JEDYNY przewodnik ze złotą gwiazdą dla " "prawników prowadzących rozmowy kwalifikacyjne w każdym rodzaju rozmowy o " -"pracę\". To miało pomóc nowym prawnikom znaleźć pracę." +"pracę”. To miało pomóc nowym prawnikom znaleźć pracę." #: lang/json/BOOK_from_json.py msgid "holybook abstract" @@ -42283,7 +42571,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -42292,7 +42580,7 @@ msgid "" "parts." msgstr "" "Opatrzone logo Northrop, są to plany montażowe, specyfikacje projektowe i " -"rysunki techniczne robota kroczącego. Większość z nich jest dla Ciebie " +"rysunki techniczne robota kroczącego. Większość z nich jest dla ciebie " "bezużyteczna, ale możesz użyć planów montażowych do ponownego złożenia " "robota z odzyskanych części." @@ -42304,7 +42592,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -42325,7 +42613,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -42346,7 +42634,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -42355,7 +42643,7 @@ msgid "" "parts." msgstr "" "Opatrzone logo Northrop, są to plany montażowe, specyfikacje projektowe i " -"rysunki techniczne drona czołgowego. Większość z nich jest dla Ciebie " +"rysunki techniczne drona czołgowego. Większość z nich jest dla ciebie " "bezużyteczna, ale możesz użyć planów montażowych do ponownego złożenia " "robota z odzyskanych części." @@ -42367,7 +42655,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -42687,7 +42975,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "Książka ta zawiera nauczanie dyscypliny Pustynnego Wiatru." @@ -42700,7 +42988,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "Książka ta zawiera nauczanie dyscypliny Diamentowego Umysłu." @@ -42713,7 +43001,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -42730,7 +43018,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "Książka ta zawiera nauczanie dyscypliny Żelazne Serce." @@ -42743,7 +43031,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -42760,7 +43048,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -42778,7 +43066,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "Książka ta zawiera nauczanie dyscypliny Zachodzącego Słońca." @@ -42791,7 +43079,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -42808,7 +43096,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "Ta książka zawiera naukę dyscypliny Kamiennego Smoka." @@ -42821,7 +43109,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "Książka ta zawiera nauczanie dyscypliny Tygrysiego Pazura." @@ -42852,6 +43140,27 @@ msgstr[3] "" msgid "A beginner textbook on magical theories." msgstr "Podręcznik dla początkujących z zakresu teorii magicznych." +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" +"Ta książka jest napisana w nieznanym ci języku runicznym. Na szczęście jest " +"tam kilka bardzo szczegółowych ilustracji, które pokazują proces wykuwania " +"miecza z wlewki srebrzystego metalu. Odnosisz wrażenie, że jest to jakiś " +"podręcznik dla kowali." + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -45295,10 +45604,10 @@ msgstr "" #: lang/json/BOOK_from_json.py 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] "" +msgstr[0] "Księga maga bitewnego" +msgstr[1] "kopie Księgi maga bitewnego" +msgstr[2] "kopii Księgi maga bitewnego" +msgstr[3] "kopii Księgi maga bitewnego" #. ~ Description for The Tome of The Battle Mage #: lang/json/BOOK_from_json.py @@ -45533,7 +45842,7 @@ msgstr[1] "ptasie kupy" msgstr[2] "ptasich kup" msgstr[3] "ptasiej kupy" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "Ptasie odchody, pióra, i zanieczyszczone kawałki śmieci." @@ -45599,7 +45908,7 @@ msgstr[1] "wybielacz" msgstr[2] "wybielacz" msgstr[3] "wybielacz" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" @@ -45608,7 +45917,7 @@ msgstr[1] "rozlane rozpuszczalniki" msgstr[2] "rozlanych rozpuszczalników" msgstr[3] "rozlanego rozpuszczalnika" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -45625,7 +45934,7 @@ msgstr[1] "amoniak" msgstr[2] "amoniak" msgstr[3] "amoniak" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -45642,7 +45951,7 @@ msgstr[1] "płynny nawóz" msgstr[2] "płynny nawóz" msgstr[3] "płynny nawóz" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "Bogaty w składniki odżywcze eliksir dla roślin." @@ -45655,7 +45964,7 @@ msgstr[1] "komercyjny nawóz" msgstr[2] "komercyjny nawóz" msgstr[3] "komercyjny nawóz" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "Bogate w składniki odżywcze granulki dla roślin." @@ -45668,7 +45977,7 @@ msgstr[1] "preparat grzybobójczy" msgstr[2] "preparat grzybobójczy" msgstr[3] "preparat grzybobójczy" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -45685,7 +45994,7 @@ msgstr[1] "insektycydy" msgstr[2] "insektycydów" msgstr[3] "insektycydu" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -45702,7 +46011,7 @@ msgstr[1] "słona woda" msgstr[2] "słona woda" msgstr[3] "słona woda" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "Woda z solą. Nie nadaje się do picia." @@ -45715,7 +46024,7 @@ msgstr[1] "mydlane wody" msgstr[2] "mydlanych wód" msgstr[3] "mydlanej wody" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "Woda z mydłem. Nie nadaje się do picia." @@ -45741,7 +46050,7 @@ msgstr[1] "kwasy siarkowe" msgstr[2] "kwasów siarkowych" msgstr[3] "kwasu siarkowego" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -45762,7 +46071,7 @@ msgstr[1] "kwasy chlorowodorowe" msgstr[2] "kwasów chlorowodorowych" msgstr[3] "kwasu chlorowodorowego" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -45781,7 +46090,7 @@ msgstr[1] "kwasy azotowe" msgstr[2] "kwasów azotowych" msgstr[3] "kwasu azotowego" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -45825,7 +46134,7 @@ msgstr[1] "ścieki" msgstr[2] "ścieki" msgstr[3] "ścieki" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "Mętny płyn z kanałów o obrzydliwym zapachu." @@ -45838,7 +46147,7 @@ msgstr[1] "ług" msgstr[2] "ług" msgstr[3] "ług" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -45855,7 +46164,7 @@ msgstr[1] "eter" msgstr[2] "eter" msgstr[3] "eter" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -45876,7 +46185,7 @@ msgstr[1] "dimetylosulfotlenki" msgstr[2] "dimetylosulfotlenków" msgstr[3] "dimetylosulfotlenków" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -45897,7 +46206,7 @@ msgstr[1] "chloroformy" msgstr[2] "chloroformów" msgstr[3] "chloroformów" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -45916,7 +46225,7 @@ msgstr[1] "fenole" msgstr[2] "fenoli" msgstr[3] "fenoli" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -45939,7 +46248,7 @@ msgstr[1] "glicerole" msgstr[2] "gliceroli" msgstr[3] "gliceroli" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -45956,7 +46265,7 @@ msgstr[1] "sproszkowane pożywki peptonowe" msgstr[2] "sproszkowanych pożywek peptonowych" msgstr[3] "sproszkowanych pożywek peptonowych" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -45975,7 +46284,7 @@ msgstr[1] "agary" msgstr[2] "agarów" msgstr[3] "agarów" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -45997,7 +46306,7 @@ msgstr[1] "akrylamidy" msgstr[2] "akrylamidów" msgstr[3] "akrylamidów" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -46014,7 +46323,7 @@ msgstr[1] "acetyleny" msgstr[2] "acetylenów" msgstr[3] "acetylenu" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -46031,7 +46340,7 @@ msgstr[1] "kwasy mrówkowe" msgstr[2] "kwasów mrówkowych" msgstr[3] "kwasu mrówkowego" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -46048,7 +46357,7 @@ msgstr[1] "lateksy" msgstr[2] "lateksów" msgstr[3] "lateksu" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "Płynny prekursor gumy spotykany w niektórych roślinach." @@ -46061,7 +46370,7 @@ msgstr[1] "kwasy cytrynowe" msgstr[2] "kwasów cytrynowych" msgstr[3] "kwasu cytrynowego" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -46161,12 +46470,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "acetic anhydride" msgid_plural "acetic anhydride" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "bezwodnik octowy" +msgstr[1] "bezwodniki octowe" +msgstr[2] "bezwodników octowych" +msgstr[3] "bezwodnika octowego" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," @@ -46175,6 +46484,19 @@ msgstr "" "To jest butelka bezwodnika octowego, jeśli masz wystarczającą wiedzę " "chemiczną, możesz go użyć do łatwego przekształcenia morfiny w heroinę." +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "mydło w płynie" +msgstr[1] "mydła w płynie" +msgstr[2] "mydeł w płynie" +msgstr[3] "mydła w płynie" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "Mydło w płynie." + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -46225,7 +46547,7 @@ msgstr[1] "wina marloss" msgstr[2] "win marloss" msgstr[3] "wina marloss" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "Maziste białe wino zrobione z owocu marloss." @@ -46238,7 +46560,7 @@ msgstr[1] "wino Riesling" msgstr[2] "wino Riesling" msgstr[3] "wino Riesling" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" @@ -46252,7 +46574,7 @@ msgstr[1] "wino Chardonnay" msgstr[2] "wino Chardonnay" msgstr[3] "wino Chardonnay" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "Najpopularniejsze wino Ameryki, nie bez powodu." @@ -46265,7 +46587,7 @@ msgstr[1] "wino Cabernet Sauvignon" msgstr[2] "wino Cabernet Sauvignon" msgstr[3] "wino Cabernet Sauvignon" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -46282,7 +46604,7 @@ msgstr[1] "wino pinot noir" msgstr[2] "wino pinot noir" msgstr[3] "wino pinot noir" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -46299,7 +46621,7 @@ msgstr[1] "marsale" msgstr[2] "marsal" msgstr[3] "marsali" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "Popularne włoskie wino używane w wielu daniach." @@ -46312,7 +46634,7 @@ msgstr[1] "wermuty" msgstr[2] "wermutów" msgstr[3] "wermutu " -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -46329,7 +46651,7 @@ msgstr[1] "wina jęczmienne" msgstr[2] "win jęczmiennych" msgstr[3] "wina jęczmiennego" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "Mocne piwo typu ale." @@ -46342,7 +46664,7 @@ msgstr[1] "whiskey" msgstr[2] "whiskey" msgstr[3] "whiskey" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -46358,7 +46680,7 @@ msgstr[1] "wódka" msgstr[2] "wódka" msgstr[3] "wódka" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -46375,7 +46697,7 @@ msgstr[1] "dżin" msgstr[2] "dżin" msgstr[3] "dżin" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -46392,7 +46714,7 @@ msgstr[1] "rum" msgstr[2] "rum" msgstr[3] "rum" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -46409,7 +46731,7 @@ msgstr[1] "tequila" msgstr[2] "tequila" msgstr[3] "tequila" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -46426,7 +46748,7 @@ msgstr[1] "likier triple sec" msgstr[2] "likier triple sec" msgstr[3] "likier triple sec" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "Pomarańczowy w smaku likier używany w wielu drinkach." @@ -46439,7 +46761,7 @@ msgstr[1] "jabol" msgstr[2] "jabol" msgstr[3] "jabol" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "Tanie wzmacniane wino." @@ -46452,7 +46774,7 @@ msgstr[1] "silna mieszanka alkoholi" msgstr[2] "silna mieszanka alkoholi" msgstr[3] "silna mieszanka alkoholi" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "Wysokoprocentowe napoje alkoholowe, zmieszane bez patrzenia na smak." @@ -46465,7 +46787,7 @@ msgstr[1] "słaba mieszanka alkoholi" msgstr[2] "słaba mieszanka alkoholi" msgstr[3] "słaba mieszanka alkoholi" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "Niskoprocentowe napoje alkoholowe, zmieszane bez patrzenia na smak." @@ -46478,7 +46800,7 @@ msgstr[1] "wino owocowe" msgstr[2] "wino owocowe" msgstr[3] "wino owocowe" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -46493,7 +46815,7 @@ msgstr[1] "brandy" msgstr[2] "brandy" msgstr[3] "brandy" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -46510,7 +46832,7 @@ msgstr[1] "kawa po irlandzku" msgstr[2] "kawa po irlandzku" msgstr[3] "kawa po irlandzku" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -46527,7 +46849,7 @@ msgstr[1] "long island iced tea" msgstr[2] "long island iced tea" msgstr[3] "long island iced tea" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -46563,7 +46885,7 @@ msgstr[1] "drink dzikie jabłka" msgstr[2] "drink dzikie jabłka" msgstr[3] "drink dzikie jabłka" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "Jak sok jabłkowy, ale z wódką." @@ -46576,7 +46898,7 @@ msgstr[1] "rum z kolą" msgstr[2] "rum z kolą" msgstr[3] "rum z kolą" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "Odpowiedni zarówno dla wakacyjnych wypadów i kanadyjskich artystów." @@ -46589,7 +46911,7 @@ msgstr[1] "piwo" msgstr[2] "piwo" msgstr[3] "piwo" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -46606,7 +46928,7 @@ msgstr[1] "korzenny miód pitny" msgstr[2] "korzenny miód pitny" msgstr[3] "korzenny miód pitny" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -46622,7 +46944,7 @@ msgstr[1] "wino z mleczy" msgstr[2] "wino z mleczy" msgstr[3] "wino z mleczy" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -46638,7 +46960,7 @@ msgstr[1] "wina z łopianu" msgstr[2] "win z łopianu" msgstr[3] "wina z łopianu" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "Lekkie i smaczne wino z korzeni łopianu. Nieco słodkie." @@ -46651,7 +46973,7 @@ msgstr[1] "wino sosnowe" msgstr[2] "wino sosnowe" msgstr[3] "wino sosnowe" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -46668,7 +46990,7 @@ msgstr[1] "domowe piwo" msgstr[2] "domowe piwo" msgstr[3] "domowe piwo" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "Ne jest to może szczyt browarnictwa, ale hej, litry alkoholu." @@ -46681,7 +47003,7 @@ msgstr[1] "bimber" msgstr[2] "bimber" msgstr[3] "bimber" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -46700,7 +47022,7 @@ msgstr[1] "europejski pilzner" msgstr[2] "europejski pilzner" msgstr[3] "europejski pilzner" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -46717,7 +47039,7 @@ msgstr[1] "amerykańskie jasne pełne" msgstr[2] "amerykańskie jasne pełne" msgstr[3] "amerykańskie jasne pełne" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -46734,7 +47056,7 @@ msgstr[1] "indyjskie jasne pełne" msgstr[2] "indyjskie jasne pełne" msgstr[3] "indyjskie jasne pełne" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -46751,7 +47073,7 @@ msgstr[1] "ciemne piwo" msgstr[2] "ciemne piwo" msgstr[3] "ciemne piwo" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "Smaczne piwo rzemieślnicze, tak ciemne jak czasy przed nami." @@ -46764,7 +47086,7 @@ msgstr[1] "belgijskie piwo ale" msgstr[2] "belgijskie piwo ale" msgstr[3] "belgijskie piwo ale" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -46781,7 +47103,7 @@ msgstr[1] "imperial stouty" msgstr[2] "imperial stoutów" msgstr[3] "imperial stouta" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -46837,7 +47159,7 @@ msgstr[1] "single malt whiskey" msgstr[2] "single malt whiskey" msgstr[3] "single malt whiskey" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "Tylko najlepsza whiskey prosto ze szpuntu." @@ -46850,7 +47172,7 @@ msgstr[1] "Irlandzkie whiskey z jednej kadzi" msgstr[2] "Irlandzkich whiskey z jednej kadzi" msgstr[3] "Irlandzkiej whiskey z jednej kadzi" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -46865,7 +47187,7 @@ msgstr[1] "tanie whiskey" msgstr[2] "tanich whiskey" msgstr[3] "taniej whiskey" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "Bardzo tania mieszanka whiskey." @@ -46878,7 +47200,7 @@ msgstr[1] "kanadyjskie whiskey" msgstr[2] "kanadyjskich whiskey" msgstr[3] "kanadyjskiej whiskey" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "Alkohol wieloziarnisty z zacieru z kukurydzy i żyta." @@ -46891,7 +47213,7 @@ msgstr[1] "sherry" msgstr[2] "sherry" msgstr[3] "sherry" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -46907,7 +47229,7 @@ msgstr[1] "Bristol Cream" msgstr[2] "Bristol Cream" msgstr[3] "Bristol Cream" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -46924,7 +47246,7 @@ msgstr[1] "maderskie wina" msgstr[2] "maderskich win" msgstr[3] "maderskiego wina" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "Wzmocnione wino z Madery. Prawdziwy napój Królewskiej Marynarki." @@ -46937,7 +47259,7 @@ msgstr[1] "fantazyjne jabole" msgstr[2] "fantazyjnych jaboli" msgstr[3] "fantazyjnego jabola" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "Zdecydowanie smakuje jak drink żula." @@ -46950,7 +47272,7 @@ msgstr[1] "calimocho" msgstr[2] "calimocho" msgstr[3] "calimocho" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -46967,7 +47289,7 @@ msgstr[1] "pszczele kolanka" msgstr[2] "pszczelich kolanek" msgstr[3] "pszczelich kolanek" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -47084,7 +47406,7 @@ msgstr[1] "wzmocnione wody gazowane" msgstr[2] "wzmocnionych wód gazowanych" msgstr[3] "wzmocnionej wody gazowanej" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "Woda gazowana z alkoholem. Doskonała na gorące letnie dni." @@ -47097,7 +47419,7 @@ msgstr[1] "muffinki dyniowe" msgstr[2] "muffinków dyniowych" msgstr[3] "muffinka dyniowego" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "Muffinki upieczone z dyni. Doskonałe na dożynki." @@ -47110,7 +47432,7 @@ msgstr[1] "mini pączki" msgstr[2] "mini pączków" msgstr[3] "mini pączka" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -47127,7 +47449,7 @@ msgstr[1] "chleby na zakwasie" msgstr[2] "chlebów na zakwasie" msgstr[3] "chleba na zakwasie" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -47144,7 +47466,7 @@ msgstr[1] "podpłomyki" msgstr[2] "podpłomyków" msgstr[3] "podpłomyka" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "Prosty przaśny chlebek." @@ -47157,7 +47479,7 @@ msgstr[1] "chleby" msgstr[2] "chlebów" msgstr[3] "chleba" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "Zdrowy i pożywny." @@ -47170,7 +47492,7 @@ msgstr[1] "grzanki" msgstr[2] "grzanek" msgstr[3] "grzanki" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -47187,7 +47509,7 @@ msgstr[1] "grzanki z masłem" msgstr[2] "grzanek z masłem" msgstr[3] "grzanki z masłem" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "Grzanka z masłem na wierzchu dla lepszego smaku." @@ -47200,7 +47522,7 @@ msgstr[1] "grzanki z dżemem" msgstr[2] "grzanek z dżemem" msgstr[3] "grzanki z dżemem" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -47217,7 +47539,7 @@ msgstr[1] "grzanki z masłem orzechowym" msgstr[2] "grzanek z masłem orzechowym" msgstr[3] "grzanki z masłem orzechowym" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -47231,7 +47553,7 @@ msgstr[1] "jajka w grzance" msgstr[2] "jajek w grzance" msgstr[3] "jajka w grzance" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "Jajko sadzone serwowane wewnątrz wydrążonej grzanki." @@ -47244,7 +47566,7 @@ msgstr[1] "grzanki z masłem orzechowym i dżemem" msgstr[2] "grzanek z masłem orzechowym i dżemem" msgstr[3] "grzanki z masłem orzechowym i dżemem" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -47261,7 +47583,7 @@ msgstr[1] "chleby kukurydziane" msgstr[2] "chlebów kukurydzianych" msgstr[3] "chleba kukurydzianego" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "Zdrowy i pożywny chleb kukurydziany." @@ -47300,7 +47622,7 @@ msgstr[1] "suchary" msgstr[2] "sucharów" msgstr[3] "sucharu" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -47330,7 +47652,7 @@ msgstr[1] "chleby z resztek" msgstr[2] "chlebów z resztek" msgstr[3] "chleba z resztek" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -47349,7 +47671,7 @@ msgstr[1] "ciemne chleby" msgstr[2] "ciemnych chlebów" msgstr[3] "ciemnego chleba" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "Słodki chleb, niemal ciasto." @@ -47362,7 +47684,7 @@ msgstr[1] "hallule" msgstr[2] "halluli" msgstr[3] "halluli" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -47425,10 +47747,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "gin mash" msgid_plural "gin mashes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zacier ginu" +msgstr[1] "zaciery ginu" +msgstr[2] "zacierów ginu" +msgstr[3] "zacieru ginu" #. ~ Description for gin mash #: lang/json/COMESTIBLE_from_json.py @@ -47438,10 +47760,10 @@ msgstr "Niesfermentowany zacier ginu. Fermentując go, otrzymamy gin." #: lang/json/COMESTIBLE_from_json.py msgid "gin wash" msgid_plural "gin washes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "baza ginu" +msgstr[1] "bazy ginu" +msgstr[2] "baz ginu" +msgstr[3] "bazy ginu" #. ~ Description for gin wash #: lang/json/COMESTIBLE_from_json.py @@ -47455,10 +47777,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "vodka wort" msgid_plural "vodka worts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "brzeczka wódki" +msgstr[1] "brzeczki wódki" +msgstr[2] "brzeczke wódki" +msgstr[3] "brzeczki wódki" #. ~ Description for vodka wort #: lang/json/COMESTIBLE_from_json.py @@ -47485,10 +47807,10 @@ msgstr "Fermentowana, ale nie przedestylowana wódka. Nie smakuje już słodko." #: lang/json/COMESTIBLE_from_json.py msgid "rum wort" msgid_plural "rum worts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "brzeczka rumu" +msgstr[1] "brzeczki rumu" +msgstr[2] "brzeczkek rumu" +msgstr[3] "brzeczki rumu" #. ~ Description for rum wort #: lang/json/COMESTIBLE_from_json.py @@ -47515,10 +47837,10 @@ msgstr "Fermentowany, ale nie przedestylowany rum. Nie smakuje już słodko." #: lang/json/COMESTIBLE_from_json.py msgid "fruit wine must" msgid_plural "fruit wine musts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "moszcz do wina owocowego" +msgstr[1] "moszcze do wina owocowego" +msgstr[2] "moszczy do wina owocowego" +msgstr[3] "moszczu do wina owocowego" #. ~ Description for fruit wine must #: lang/json/COMESTIBLE_from_json.py @@ -47530,10 +47852,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "spiced mead must" msgid_plural "spiced mead musts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "moszcz korzennego miodu pitnego" +msgstr[1] "moszcze korzennego miodu pitnego" +msgstr[2] "moszczy korzennego miodu pitnego" +msgstr[3] "moszczu korzennego miodu pitnego" #. ~ Description for spiced mead must #: lang/json/COMESTIBLE_from_json.py @@ -47543,10 +47865,10 @@ msgstr "Niefermentowany korzenny miód pitny. Rozwodniony miód i drożdże." #: lang/json/COMESTIBLE_from_json.py msgid "dandelion wine must" msgid_plural "dandelion wine musts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "moszcz wina z mleczy" +msgstr[1] "moszcze do wina z mleczy" +msgstr[2] "moszczy do wina z mleczy" +msgstr[3] "moszczu do wina z mleczy" #. ~ Description for dandelion wine must #: lang/json/COMESTIBLE_from_json.py @@ -47560,10 +47882,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "burdock wine must" msgid_plural "burdock wine musts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "moszcz wina z łopianu" +msgstr[1] "moszcze wina z łopianu" +msgstr[2] "moszczy wina z łopianu" +msgstr[3] "moszczu wina z łopianu" #. ~ Description for burdock wine must #: lang/json/COMESTIBLE_from_json.py @@ -47577,10 +47899,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pine wine must" msgid_plural "pine wine musts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "moszcz wina sosnowego" +msgstr[1] "moszcze do wina sosnowego" +msgstr[2] "moszczy do wina sosnowego" +msgstr[3] "moszczu do wina sosnowego" #. ~ Description for pine wine must #: lang/json/COMESTIBLE_from_json.py @@ -47594,10 +47916,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "beer wort" msgid_plural "beer worts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "brzeczka piwa" +msgstr[1] "brzeczki piwa" +msgstr[2] "brzeczek piwa" +msgstr[3] "brzeczki piwa" #. ~ Description for beer wort #: lang/json/COMESTIBLE_from_json.py @@ -47679,10 +48001,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "growing wild yeast" msgid_plural "growing wild yeasts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "rosnące dzikie drożdże" +msgstr[1] "rosnące dzikie drożdże" +msgstr[2] "rosnących dzikich drożdży" +msgstr[3] "rosnących dzikich drożdży" #. ~ Description for growing wild yeast #: lang/json/COMESTIBLE_from_json.py @@ -47696,23 +48018,23 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "malting grain" msgid_plural "malting grain" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "słodujące się ziarno" +msgstr[1] "słodujące się ziarna" +msgstr[2] "słodujących się ziaren" +msgstr[3] "słodującego się ziarna" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "Po namoczeniu ziarna i odczekaniu, zakończyło się słodowanie." -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "Ziarno się jeszcze nie zakończyło słodować." -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "Słodowane ziarno, którego używa się w piwowarstwie." @@ -47720,13 +48042,13 @@ msgstr "Słodowane ziarno, którego używa się w piwowarstwie." #: lang/json/COMESTIBLE_from_json.py msgid "malted grain" msgid_plural "malted grain" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "słodowane ziarno" +msgstr[1] "słodowane ziarna" +msgstr[2] "słodowanych ziaren" +msgstr[3] "słodowanego ziarna" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -47738,12 +48060,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "soaking dandelion" msgid_plural "soaking dandelion" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "macerujące się mlecze" +msgstr[1] "macerujące się mlecze" +msgstr[2] "macerujących się mleczy" +msgstr[3] "macerujących się mleczy" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " @@ -47751,7 +48073,7 @@ msgid "" msgstr "" "Po namoczeniu mleczy we wrzątku, sok może być użyty do produkcji wina." -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "Mlecze potrzebują jeszcze trochę czasu." @@ -47759,12 +48081,12 @@ msgstr "Mlecze potrzebują jeszcze trochę czasu." #: lang/json/COMESTIBLE_from_json.py msgid "soaked dandelion" msgid_plural "soaked dandelion" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmacerowane mlecze" +msgstr[1] "zmacerowane mlecze" +msgstr[2] "zmacerowanych mleczy" +msgstr[3] "zmacerowanych mleczy" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -47799,7 +48121,7 @@ msgstr[1] "gotowane ryby" msgstr[2] "gotowanych ryb" msgstr[3] "gotowanych ryb" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "Świeża gotowana ryba. Bardzo pożywna." @@ -47923,7 +48245,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "Świeżo wycięte mięso. Możesz jeść surowe, ale lepiej ugotować." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "Świeża krew pozyskana z żywego stworzenia." @@ -48053,7 +48375,7 @@ msgstr[1] "krwi mutanta" msgstr[2] "krwi mutanta" msgstr[3] "krwi mutanta" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "Świeża krew pozyskana z mocno zmutowanego stworzenia." @@ -48061,10 +48383,10 @@ msgstr "Świeża krew pozyskana z mocno zmutowanego stworzenia." #: lang/json/COMESTIBLE_from_json.py msgid "scrap of mutant meat" msgid_plural "scraps of mutant meat" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "skrawki mięsa mutanta" +msgstr[1] "skrawki mięsa mutanta" +msgstr[2] "skrawków mięsa mutanta" +msgstr[3] "skrawków mięsa mutanta" #. ~ Description for scrap of mutant meat #: lang/json/COMESTIBLE_from_json.py @@ -48078,10 +48400,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mutant humanoid meat" msgid_plural "mutant humanoid meats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mięso zmutowanego człekokształtnego" +msgstr[1] "mięsa zmutowanego człekokształtnego" +msgstr[2] "mięs zmutowanego człekokształtnego" +msgstr[3] "mięsa zmutowanego człekokształtnego" #. ~ Description for mutant humanoid meat #: lang/json/COMESTIBLE_from_json.py @@ -48099,12 +48421,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mutant human blood" msgid_plural "mutant human blood" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "krew zmutowanego człowieka" +msgstr[1] "krwi zmutowanego człowieka" +msgstr[2] "krwi zmutowanego człowieka" +msgstr[3] "krwi zmutowanego człowieka" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "Świeża krew pozyskana z mocno zmutowanego człowieka." @@ -48130,26 +48452,26 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chunk of tainted mutant meat" msgid_plural "chunks of tainted mutant meat" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kawałka zmutowanego skażonego mięsa" +msgstr[1] "kawałki zmutowanego skażonego mięsa" +msgstr[2] "kawałków zmutowanego skażonego mięsa" +msgstr[3] "kawałka zmutowanego skażonego mięsa" #: lang/json/COMESTIBLE_from_json.py msgid "cooked tainted mutant meat" msgid_plural "cooked tainted mutant meats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowane zmutowane skażone mięso" +msgstr[1] "gotowane zmutowane skażone mięsa" +msgstr[2] "gotowanych zmutowanych skażonych mięs" +msgstr[3] "gotowanego zmutowanego skażonego mięsa" #: lang/json/COMESTIBLE_from_json.py msgid "smoked tainted mutant meat" msgid_plural "smoked tainted mutant meats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wędzone zmutowane skażone mięso" +msgstr[1] "wędzone zmutowane skażone mięsa" +msgstr[2] "wędzonych zmutowanych skażonych mięs" +msgstr[3] "wędzonego zmutowanego skażonego mięsa" #. ~ Description for smoked tainted mutant meat #: lang/json/COMESTIBLE_from_json.py @@ -48165,7 +48487,7 @@ msgstr[1] "odrzuty rzeźnicze" msgstr[2] "odrzutów rzeźniczych" msgstr[3] "odrzutu rzeźniczego" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -48181,10 +48503,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cooked meat" msgid_plural "cooked meats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowane mięso" +msgstr[1] "gotowane mięsa" +msgstr[2] "gotowanych mięs" +msgstr[3] "gotowanego mięsa" #. ~ Description for cooked meat #: lang/json/COMESTIBLE_from_json.py @@ -48198,10 +48520,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cooked fatty meat" msgid_plural "cooked fatty meats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowane tłuste mięso" +msgstr[1] "gotowane tłuste mięsa" +msgstr[2] "gotowanych tłustych mięs" +msgstr[3] "gotowanego tłustego mięsa" #. ~ Description for cooked fatty meat #: lang/json/COMESTIBLE_from_json.py @@ -48236,10 +48558,10 @@ msgstr "To ugotowany kawałek mięsa zmutowanego zwierzęcia." #: lang/json/COMESTIBLE_from_json.py msgid "cooked scrap of mutant meat" msgid_plural "cooked scraps of mutant meat" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowane skrawki zmutowanego mięsa" +msgstr[1] "gotowane skrawki zmutowanego mięsa" +msgstr[2] "gotowanych skrawków zmutowanego mięsa" +msgstr[3] "gotowanych skrawków zmutowanego mięsa" #. ~ Description for cooked scrap of mutant meat #: lang/json/COMESTIBLE_from_json.py @@ -48253,10 +48575,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "raw offal" msgid_plural "raw offals" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowe podroby" +msgstr[1] "surowe podroby" +msgstr[2] "surowych podrobów" +msgstr[3] "surowych podrobów" #. ~ Description for raw offal #: lang/json/COMESTIBLE_from_json.py @@ -48277,7 +48599,7 @@ msgstr[1] "gotowane podroby" msgstr[2] "gotowane podroby" msgstr[3] "gotowane podroby" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -48295,7 +48617,7 @@ msgstr[1] "organy mutantów" msgstr[2] "organy mutantów" msgstr[3] "organy mutantów" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "Te organy pochodzą z ogromnego zmutowanego robaka." @@ -48308,7 +48630,7 @@ msgstr[1] "peklowane podroby" msgstr[2] "peklowane podroby" msgstr[3] "peklowane podroby" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -48327,7 +48649,7 @@ msgstr[1] "puszkowane podroby" msgstr[2] "puszkowane podroby" msgstr[3] "puszkowane podroby" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -48370,8 +48692,7 @@ msgstr[1] "suszone mięso" msgstr[2] "suszone mięso" msgstr[3] "suszone mięso" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" @@ -48380,8 +48701,7 @@ msgstr[1] "suszony mięśniak" msgstr[2] "suszony mięśniak" msgstr[3] "suszony mięśniak" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" @@ -48390,8 +48710,7 @@ msgstr[1] "gadające suszone mięsa" msgstr[2] "gadających suszonych mięs" msgstr[3] "gadającego suszonego mięsa" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" @@ -48400,7 +48719,7 @@ msgstr[1] "suszone mięsa potwora" msgstr[2] "suszonych mięs potwora" msgstr[3] "suszonego mięsa potwora" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -48415,7 +48734,7 @@ msgstr[1] "solone ryby" msgstr[2] "solonych ryb" msgstr[3] "solonych ryb" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -48430,7 +48749,7 @@ msgstr[1] "wędzone mięsa" msgstr[2] "wędzonych mięs" msgstr[3] "wędzonego mięsa" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" @@ -48439,8 +48758,7 @@ msgstr[1] "wędzone dranie" msgstr[2] "wędzonych drani" msgstr[3] "wędzonego drania" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" @@ -48449,18 +48767,13 @@ msgstr[1] "wędzeni narnianie" msgstr[2] "wędzonych narnian" msgstr[3] "wędzonego narnianina" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -48487,7 +48800,7 @@ msgstr[1] "wędzone ryby" msgstr[2] "wędzonych ryb" msgstr[3] "wędzonych ryb" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -48537,18 +48850,18 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "piece of raw mutant lung" msgid_plural "pieces of raw mutant lung" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kawałki surowych zmutowanych płuc" +msgstr[1] "kawałki surowych zmutowanych płuc" +msgstr[2] "kawałków surowych zmutowanych płuc" +msgstr[3] "kawałków surowych zmutowanych płuc" #: lang/json/COMESTIBLE_from_json.py msgid "cooked piece of mutant lung" msgid_plural "cooked pieces of mutant lung" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowane kawałki zmutowanych płuc" +msgstr[1] "gotowane kawałki zmutowanych płuc" +msgstr[2] "gotowanych kawałków zmutowanych płuc" +msgstr[3] "gotowanych kawałków zmutowanych płuc" #: lang/json/COMESTIBLE_from_json.py msgid "mutant lungs" @@ -48558,7 +48871,7 @@ msgstr[1] "płuca mutantów" msgstr[2] "płuca mutantów" msgstr[3] "płuca mutantów" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -48609,18 +48922,18 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mutant liver" msgid_plural "mutant livers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmutowana wątroba" +msgstr[1] "zmutowane wątroby" +msgstr[2] "zmutowanych wątrób" +msgstr[3] "zmutowanej wątroby" #: lang/json/COMESTIBLE_from_json.py msgid "cooked mutant liver" msgid_plural "cooked mutant livers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowana zmutowana wątroba" +msgstr[1] "gotowane zmutowane wątroby" +msgstr[2] "gotowanych zmutowanych wątrób" +msgstr[3] "gotowanej zmutowanej wątroby" #: lang/json/COMESTIBLE_from_json.py msgid "raw brains" @@ -48630,7 +48943,7 @@ msgstr[1] "surowe mózgi" msgstr[2] "surowych mózgów" msgstr[3] "surowe mózgi" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "Zwierzęcy mózg. Nie chcesz jeść tego na surowo…" @@ -48643,7 +48956,7 @@ msgstr[1] "gotowane mózgi" msgstr[2] "gotowanych mózgów" msgstr[3] "gotowane mózgi" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -48655,18 +48968,18 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "raw mutant brains" msgid_plural "raw mutant brains" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowy zmutowany mózg" +msgstr[1] "surowe zmutowane mózgi" +msgstr[2] "surowych zmutowanych mózgów" +msgstr[3] "surowego zmutowanego mózgu" #: lang/json/COMESTIBLE_from_json.py msgid "cooked mutant brains" msgid_plural "cooked mutant brains" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowany zmutowany mózg" +msgstr[1] "gotowane zmutowane mózgi" +msgstr[2] "gotowanych zmutowanych mózgów" +msgstr[3] "gotowanego zmutowanego mózgu" #: lang/json/COMESTIBLE_from_json.py msgid "raw kidney" @@ -48701,26 +49014,26 @@ msgstr "Nie, to nie jest fasolka." #: lang/json/COMESTIBLE_from_json.py msgid "raw mutant kidney" msgid_plural "raw mutant kidney" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowa zmutowana nerka" +msgstr[1] "surowe zmutowane nerki" +msgstr[2] "surowych zmutowanych nerek" +msgstr[3] "surowej zmutowanej nerki" #: lang/json/COMESTIBLE_from_json.py msgid "cooked mutant kidney" msgid_plural "cooked mutant kidney" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowana zmutowana nerka" +msgstr[1] "gotowane zmutowane nerki" +msgstr[2] "gotowanych zmutowanych nerek" +msgstr[3] "gotowanej zmutowanej nerki" #: lang/json/COMESTIBLE_from_json.py msgid "raw sweetbread" msgid_plural "raw sweetbreads" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowa nerkówka" +msgstr[1] "surowe nerkówki" +msgstr[2] "surowych nerkówek" +msgstr[3] "surowej nerkówki" #. ~ Description for raw sweetbread #: lang/json/COMESTIBLE_from_json.py @@ -48734,17 +49047,17 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cooked sweetbread" msgid_plural "cooked sweetbreads" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowana nerkówka" +msgstr[1] "gotowane nerkówki" +msgstr[2] "gotowanych nerkówek" +msgstr[3] "gotowanej nerkówki" #. ~ Description for cooked sweetbread #: lang/json/COMESTIBLE_from_json.py msgid "Normally a delicacy, it needs a little… something." msgstr "Zwykle jest to przysmak, ale brakuję trochę… czegoś." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "Krew, prawdopodobnie ludzka. Obrzydliwe." @@ -48843,10 +49156,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mutant tallow" msgid_plural "mutant tallows" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmutowany łój" +msgstr[1] "zmutowane łoje" +msgstr[2] "zmutowanych łoi" +msgstr[3] "zmutowanego łoju" #. ~ Description for mutant tallow #: lang/json/COMESTIBLE_from_json.py @@ -48862,10 +49175,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mutant lard" msgid_plural "mutant lards" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmutowany smalec" +msgstr[1] "zmutowane smalce" +msgstr[2] "zmutowanych smalców" +msgstr[3] "zmutowanego smalcu" #. ~ Description for mutant lard #: lang/json/COMESTIBLE_from_json.py @@ -48881,10 +49194,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chunk of mutant humanoid fat" msgid_plural "chunks of mutant humanoid fat" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kawałek mięsa człekokształtnego mutanta" +msgstr[1] "kawałki mięsa człekokształtnego mutanta" +msgstr[2] "kawałków mięsa człekokształtnego mutanta" +msgstr[3] "kawałka mięsa człekokształtnego mutanta" #. ~ Description for chunk of mutant humanoid fat #: lang/json/COMESTIBLE_from_json.py @@ -48894,10 +49207,10 @@ msgstr "Świeżo wycięty tłuszcz z mocno zmutowanego humanoida." #: lang/json/COMESTIBLE_from_json.py msgid "mutant humanoid tallow" msgid_plural "mutant humanoid tallows" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "łój zmutowanego człekokształtnego" +msgstr[1] "łoje zmutowanego człekokształtnego" +msgstr[2] "łojów zmutowanego człekokształtnego" +msgstr[3] "łoju zmutowanego człekokształtnego" #. ~ Description for mutant humanoid tallow #: lang/json/COMESTIBLE_from_json.py @@ -48913,10 +49226,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mutant humanoid lard" msgid_plural "mutant humanoid lards" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "smalec zmutowanego człekokształtnego" +msgstr[1] "smalce zmutowanego człekokształtnego" +msgstr[2] "smalców zmutowanego człekokształtnego" +msgstr[3] "smalcu zmutowanego człekokształtnego" #. ~ Description for mutant humanoid lard #: lang/json/COMESTIBLE_from_json.py @@ -48943,7 +49256,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "Mięso o niezdrowym wyglądzie. Możesz je zjeść, ale się zatrujesz." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -48952,10 +49265,10 @@ msgstr "Krew o niezdrowym wyglądzie. Możesz ją zjeść, ale się zatrujesz." #: lang/json/COMESTIBLE_from_json.py msgid "tainted bone" msgid_plural "tainted bones" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "skażone kości" +msgstr[1] "skażone kości" +msgstr[2] "skażonych kości" +msgstr[3] "skażonych kości" #. ~ Description for tainted bone #: lang/json/COMESTIBLE_from_json.py @@ -48971,10 +49284,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "tainted fat" msgid_plural "tainted fats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "skażony tłuszcz" +msgstr[1] "skażone tłuszcze" +msgstr[2] "skażonych tłuszczów" +msgstr[3] "skażonego tłuszczu" #. ~ Description for tainted fat #: lang/json/COMESTIBLE_from_json.py @@ -48988,10 +49301,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "tainted tallow" msgid_plural "tainted tallows" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "skażony łój" +msgstr[1] "skażone łoje" +msgstr[2] "skażonych łoi" +msgstr[3] "skażonego łoju" #. ~ Description for tainted tallow #: lang/json/COMESTIBLE_from_json.py @@ -49007,10 +49320,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "large boiled stomach" msgid_plural "large boiled stomachs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "duży gotowany żołądek" +msgstr[1] "duże gotowane żołądki" +msgstr[2] "dużych gotowanych żołądków" +msgstr[3] "dużego gotowanego żołądka" #. ~ Description for large boiled stomach #: lang/json/COMESTIBLE_from_json.py @@ -49023,10 +49336,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "boiled large human stomach" msgid_plural "boiled large human stomachs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "duży gotowany ludzki żołądek" +msgstr[1] "duże gotowane ludzkie żołądki" +msgstr[2] "dużych gotowanych ludzkich żołądków" +msgstr[3] "dużego gotowanego ludzkiego żołądka" #. ~ Description for boiled large human stomach #: lang/json/COMESTIBLE_from_json.py @@ -49040,10 +49353,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "boiled stomach" msgid_plural "boiled stomachs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowany żołądek" +msgstr[1] "gotowane żołądki" +msgstr[2] "gotowanych żołądków" +msgstr[3] "gotowanego żołądka" #. ~ Description for boiled stomach #: lang/json/COMESTIBLE_from_json.py @@ -49057,10 +49370,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "boiled human stomach" msgid_plural "boiled human stomachs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowany ludzki żołądek" +msgstr[1] "gotowane ludzkie żołądki" +msgstr[2] "gotowanych ludzkich żołądków" +msgstr[3] "gotowanego ludzkiego żołądka" #. ~ Description for boiled human stomach #: lang/json/COMESTIBLE_from_json.py @@ -49074,10 +49387,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "raw hide" msgid_plural "raw hides" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowa skóra" +msgstr[1] "surowe skóry" +msgstr[2] "surowych skór" +msgstr[3] "surowej skóry" #. ~ Description for raw hide #: lang/json/COMESTIBLE_from_json.py @@ -49092,10 +49405,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "tainted hide" msgid_plural "tainted hides" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "skażona skóra" +msgstr[1] "skażone skóry" +msgstr[2] "skażonych skór" +msgstr[3] "skażonej skóry" #. ~ Description for tainted hide #: lang/json/COMESTIBLE_from_json.py @@ -49109,10 +49422,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "raw human skin" msgid_plural "raw human skins" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowa ludzka skóra" +msgstr[1] "surowe ludzkie skóry" +msgstr[2] "surowych ludzkich skór" +msgstr[3] "surowej ludzkiej skóry" #. ~ Description for raw human skin #: lang/json/COMESTIBLE_from_json.py @@ -49126,10 +49439,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "raw demihuman skin" msgid_plural "raw demihuman skins" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowa półludzka skóra" +msgstr[1] "surowe półludzkie skóry" +msgstr[2] "surowych półludzkich skór" +msgstr[3] "surowej półludzkiej skóry" #. ~ Description for raw demihuman skin #: lang/json/COMESTIBLE_from_json.py @@ -49144,10 +49457,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "raw pelt" msgid_plural "raw pelts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowe futro" +msgstr[1] "surowe futra" +msgstr[2] "surowych futer" +msgstr[3] "surowego futra" #. ~ Description for raw pelt #: lang/json/COMESTIBLE_from_json.py @@ -49163,10 +49476,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "tainted pelt" msgid_plural "tainted pelts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "skażone futro" +msgstr[1] "skażone futra" +msgstr[2] "skażonych futer" +msgstr[3] "skażonego futra" #. ~ Description for tainted pelt #: lang/json/COMESTIBLE_from_json.py @@ -49182,10 +49495,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "raw human pelt" msgid_plural "raw human pelts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowe ludzkie futro" +msgstr[1] "surowe ludzkie futra" +msgstr[2] "surowych ludzkich futer" +msgstr[3] "surowego ludzkiego futra" #. ~ Description for raw human pelt #: lang/json/COMESTIBLE_from_json.py @@ -49201,10 +49514,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "seeping heart" msgid_plural "seeping hearts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "sączące serce" +msgstr[1] "sączące serca" +msgstr[2] "sączących serc" +msgstr[3] "sączącego serca" #. ~ Description for seeping heart #: lang/json/COMESTIBLE_from_json.py @@ -49218,10 +49531,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "putrid heart" msgid_plural "putrid hearts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gnijące serce" +msgstr[1] "gnijące serca" +msgstr[2] "gnijących serc" +msgstr[3] "gnijącego serca" #. ~ Description for putrid heart #: lang/json/COMESTIBLE_from_json.py @@ -49233,18 +49546,18 @@ msgid "" " sayings about eating the hearts of your enemies…" msgstr "" "Gruba, olbrzymia masa ciała na pierwszy rzut oka przypominająca serce ssaka," -" otoczona w prążkowane rowki wielkości twojej głowy. Jest wciąż pełna, em, " -"cokolwiek jest odpowiednikiem krwi żaberzwłoków i czujesz że jest ciężkie. " +" otoczona w prążkowane rowki wielkości twojej głowy. Jest wciąż pełna, e, " +"cokolwiek jest odpowiednikiem krwi żaberzwłoków i czujesz, że jest ciężkie. " "Po wszystkim co ostatnio było ci widziane, nie możesz zapomnieć starego " "porzekadła o zjadaniu serc swoich wrogów…" #: lang/json/COMESTIBLE_from_json.py msgid "desiccated putrid heart" msgid_plural "desiccated putrid hearts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wysuszone gnijące serce" +msgstr[1] "wysuszone gnijące serca" +msgstr[2] "wysuszonych gnijących serc" +msgstr[3] "wysuszonego gnijącego serca" #. ~ Description for desiccated putrid heart #: lang/json/COMESTIBLE_from_json.py @@ -49260,12 +49573,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "alien fronds" msgid_plural "alien fronds" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "obce liście" +msgstr[1] "obce liście" +msgstr[2] "obcych liści" +msgstr[3] "obcych liści" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -49280,10 +49593,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "leech flower" msgid_plural "leech flowers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kwiat pijawka" +msgstr[1] "kwiaty pijawki" +msgstr[2] "kwiatów pijawek" +msgstr[3] "kwiatu pijawki" #. ~ Use action activation_message for leech flower. #: lang/json/COMESTIBLE_from_json.py @@ -49310,10 +49623,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "leech bark" msgid_plural "scraps of leech bark" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kora pijawka" +msgstr[1] "kawałki kory pijawki" +msgstr[2] "kawałków kory pijawki" +msgstr[3] "kawałka kory pijawki" #. ~ Description for leech bark #: lang/json/COMESTIBLE_from_json.py @@ -49328,10 +49641,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "demihuman stomach" msgid_plural "demihuman stomachs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "półludzki żołądek" +msgstr[1] "półludzkie żołądki" +msgstr[2] "półludzkich żołądków" +msgstr[3] "półludzkiego żołądka" #. ~ Description for demihuman stomach #: lang/json/COMESTIBLE_from_json.py @@ -49341,18 +49654,18 @@ msgstr "Żołądek inteligentnego półczłowieka. Zaskakująco wytrzymały." #: lang/json/COMESTIBLE_from_json.py msgid "large demihuman stomach" msgid_plural "large demihuman stomachs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "duży półludzki żołądek" +msgstr[1] "duże półludzkie żołądki" +msgstr[2] "dużych półludzkich żołądków" +msgstr[3] "dużego półludzkiego żołądka" #: lang/json/COMESTIBLE_from_json.py msgid "chunk of demihuman fat" msgid_plural "chunks of demihuman fat" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kawałek półludzkiego tłuszczu" +msgstr[1] "kawałki półludzkiego tłuszczu" +msgstr[2] "kawałków półludzkiego tłuszczu" +msgstr[3] "kawałka półludzkiego tłuszczu" #. ~ Description for chunk of demihuman fat #: lang/json/COMESTIBLE_from_json.py @@ -49362,10 +49675,10 @@ msgstr "Świeżo wycięte z półludzkiego ciała." #: lang/json/COMESTIBLE_from_json.py msgid "demihuman tallow" msgid_plural "demihuman tallows" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "półludzki łój" +msgstr[1] "półludzkie łoje" +msgstr[2] "półludzkich łoi" +msgstr[3] "półludzkiego łoju" #. ~ Description for demihuman tallow #: lang/json/COMESTIBLE_from_json.py @@ -49381,10 +49694,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "demihuman lard" msgid_plural "demihuman lards" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "półludzki smalec" +msgstr[1] "półludzkie smalce" +msgstr[2] "półludzkich smalców" +msgstr[3] "półludzkiego smalcu" #. ~ Description for demihuman lard #: lang/json/COMESTIBLE_from_json.py @@ -49399,12 +49712,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "demihuman flesh" msgid_plural "demihuman flesh" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "półludzkie mięso" +msgstr[1] "półludzkie mięsa" +msgstr[2] "półludzkich mięs" +msgstr[3] "półludzkiego mięsa" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "Świeżo wycięte z półludzkiego ciała." @@ -49412,12 +49725,12 @@ msgstr "Świeżo wycięte z półludzkiego ciała." #: lang/json/COMESTIBLE_from_json.py msgid "demihuman blood" msgid_plural "demihuman blood" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "półludzka krew" +msgstr[1] "półludzkie krwi" +msgstr[2] "półludzkich krwi" +msgstr[3] "półludzkiej krwi" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "Świeża krew pozyskana z półczłowieka." @@ -49442,10 +49755,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "boiled demihuman stomach" msgid_plural "boiled demihuman stomachs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowany półludzki żołądek" +msgstr[1] "gotowane półludzkie żołądki" +msgstr[2] "gotowanych półludzkich żołądków" +msgstr[3] "gotowanego półludzkiego żołądka" #. ~ Description for boiled demihuman stomach #: lang/json/COMESTIBLE_from_json.py @@ -49465,6 +49778,37 @@ msgstr "" "Mały gotowany żołądek z półczłowieka, nic ponadto. Wszystko można o nim " "można powiedzieć, ale nie że jest apetyczny." +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "smażone mięso" +msgstr[1] "smażone mięsa" +msgstr[2] "smażonych mięs" +msgstr[3] "smażonego mięsa" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "smażony ciul" +msgstr[1] "smażone ciule" +msgstr[2] "smażonych ciulów" +msgstr[3] "smażonego ciula" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "smażony chowaniec" +msgstr[1] "smażone chowańce" +msgstr[2] "smażonych chowańców" +msgstr[3] "smażonego chowańca" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "Pyszne mięso smażone na oleju." + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" @@ -49473,7 +49817,7 @@ msgstr[1] "pikantna zapiekanka kukurydziana" msgstr[2] "pikantna zapiekanka kukurydziana" msgstr[3] "pikantna zapiekanka kukurydziana" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -49487,12 +49831,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fish noodle casserole" msgid_plural "fish noodle casserole" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zapiekanka rybna z makaronem" +msgstr[1] "zapiekanki rybne z makaronem" +msgstr[2] "zapiekanek rybnych z makaronem" +msgstr[3] "zapiekanki rybnej z makaronem" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -49504,12 +49848,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cereal" msgid_plural "cereal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "płatki kukurydziane" +msgstr[1] "porcje płatków kukurydzianych" +msgstr[2] "porcji płatków kukurydziane" +msgstr[3] "porcji płatków kukurydzianych" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "Zwykła paczka płatków, nie powinieneś tego wiedzieć." @@ -49517,12 +49861,12 @@ msgstr "Zwykła paczka płatków, nie powinieneś tego wiedzieć." #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace cereal" msgid_plural "Foodplace cereal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "płatki Foodplace" +msgstr[1] "porcje płatków Foodplace" +msgstr[2] "porcji płatków Foodplace" +msgstr[3] "porcji płatków Foodplace" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -49531,12 +49875,12 @@ msgstr "Zwykła paczka płatków z Foodplace, nie powinieneś tego wiedzieć." #: lang/json/COMESTIBLE_from_json.py msgid "Snicker-Snacks cereal" msgid_plural "Snicker-Snacks cereal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść płatków Snicker-Snacks" +msgstr[1] "garście płatków Snicker-Snacks" +msgstr[2] "garści płatków Snicker-Snacks" +msgstr[3] "garści płatków Snicker-Snacks" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -49548,12 +49892,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "Carpenter Crunch cereal" msgid_plural "Carpenter Crunch cereal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść płatków Carpenter Crunch" +msgstr[1] "garście płatków Carpenter Crunch" +msgstr[2] "garści płatków Carpenter Crunch" +msgstr[3] "garści płatków Carpenter Crunch" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -49565,12 +49909,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "Brantastic cereal" msgid_plural "Brantastic cereal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść płatków Brantastic" +msgstr[1] "garście płatków Brantastic" +msgstr[2] "garści płatków Brantastic" +msgstr[3] "garści płatków Brantastic" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -49582,12 +49926,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "Sugar Chomps cereal" msgid_plural "Sugar Chomps cereal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść płatków Słodki Gryz" +msgstr[1] "garście płatków Słodki Gryz" +msgstr[2] "garści płatków Słodki Gryz" +msgstr[3] "garści płatków Słodki Gryz" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -49600,12 +49944,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "Honey Pellet cereal" msgid_plural "Honey Pellet cereal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść płatków Miodowe Kulki" +msgstr[1] "garście płatków Miodowe Kulki" +msgstr[2] "garści płatków Miodowe Kulki" +msgstr[3] "garści płatków Miodowe Kulki" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -49617,10 +49961,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "Fructose Flakes cereal" msgid_plural "Fructose Flakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść Fruktozowych Płatków" +msgstr[1] "garście Fruktozowych Płatków" +msgstr[2] "garści Fruktozowych Płatków" +msgstr[3] "garści Fruktozowych Płatków" #. ~ Description for Fructose Flakes cereal #: lang/json/COMESTIBLE_from_json.py @@ -49634,12 +49978,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "Foodios cereal" msgid_plural "Foodios cereal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść płatków Foodios" +msgstr[1] "garści płatków Foodios" +msgstr[2] "garści płatków Foodios" +msgstr[3] "garści płatków Foodios" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -49671,7 +50015,7 @@ msgstr[1] "płatki pszeniczne" msgstr[2] "płatków pszenicznych" msgstr[3] "płatków pszenicznych" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -49700,7 +50044,7 @@ msgstr[1] "mleka" msgstr[2] "mleka" msgstr[3] "mleka" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -49714,7 +50058,7 @@ msgstr[1] "mleka czekoladowe" msgstr[2] "mlek czekoladowych" msgstr[3] "mleka czekoladowego" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -49729,7 +50073,7 @@ msgstr[1] "mleko z proszku" msgstr[2] "mleko z proszku" msgstr[3] "mleko z proszku" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -49746,7 +50090,7 @@ msgstr[1] "surowe mleka" msgstr[2] "surowego mleka" msgstr[3] "surowego mleka" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -49767,7 +50111,7 @@ msgstr[1] "mleka kartonowe" msgstr[2] "mlek kartonowych" msgstr[3] "mleka kartonowego" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -49786,7 +50130,7 @@ msgstr[1] "sproszkowane mleka" msgstr[2] "sproszkowanych mlek" msgstr[3] "sproszkowanego mleka" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -49800,7 +50144,7 @@ msgstr[1] "maślanki" msgstr[2] "maślanek" msgstr[3] "maślanki" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -49830,7 +50174,7 @@ msgstr[1] "masła" msgstr[2] "maseł" msgstr[3] "masła" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -49845,7 +50189,7 @@ msgstr[1] "surowe masła" msgstr[2] "surowych maseł" msgstr[3] "surowego masła" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -49861,7 +50205,7 @@ msgstr[1] "masła klarowane" msgstr[2] "maseł klarowanych" msgstr[3] "masła klarowanego" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -49908,7 +50252,7 @@ msgstr[1] "twardy ser" msgstr[2] "twardy ser" msgstr[3] "twardy ser" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -49925,7 +50269,7 @@ msgstr[1] "ser żółty" msgstr[2] "ser żółty" msgstr[3] "ser żółty" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "Blok przetworzonego żółtego sera." @@ -49951,7 +50295,7 @@ msgstr[1] "mleko w proszku" msgstr[2] "mleko w proszku" msgstr[3] "mleko w proszku" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -49966,7 +50310,7 @@ msgstr[1] "mleko skondensowane" msgstr[2] "mleko skondensowane" msgstr[3] "mleko skondensowane" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -49983,7 +50327,7 @@ msgstr[1] "bite śmietany" msgstr[2] "bitych śmietan" msgstr[3] "bitej śmietany" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -50000,7 +50344,7 @@ msgstr[1] "śmietana" msgstr[2] "śmietan" msgstr[3] "śmietany" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -50014,7 +50358,7 @@ msgstr[1] "napój jabłkowy" msgstr[2] "napój jabłkowy" msgstr[3] "napój jabłkowy" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "Wyciskany ze świeżych jabłek. Pyszny i zdrowy." @@ -50061,7 +50405,7 @@ msgstr[1] "atomowa kawa" msgstr[2] "atomowa kawa" msgstr[3] "atomowa kawa" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -50080,7 +50424,7 @@ msgstr[1] "herbata z pysznogłówki" msgstr[2] "herbata z pysznogłówki" msgstr[3] "herbata z pysznogłówki" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -50092,10 +50436,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "coconut milk" msgid_plural "coconut milks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mleczko kokosowe" +msgstr[1] "mleczka kokosowe" +msgstr[2] "mleczek kokosowych" +msgstr[3] "mleczka kokosowego" #. ~ Description for coconut milk #: lang/json/COMESTIBLE_from_json.py @@ -50110,7 +50454,7 @@ msgstr[1] "czaj" msgstr[2] "czaj" msgstr[3] "czaj" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "Tradycyjna południowoazjatycka herbata korzenna z mlekiem." @@ -50118,12 +50462,12 @@ msgstr "Tradycyjna południowoazjatycka herbata korzenna z mlekiem." #: lang/json/COMESTIBLE_from_json.py msgid "chamomile tea" msgid_plural "chamomile tea" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "herbata rumiankowa" +msgstr[1] "herbaty rumiankowe" +msgstr[2] "herbat rumiankowych" +msgstr[3] "herbaty rumiankowej" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -50135,10 +50479,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chocolate drink" msgid_plural "chocolate drinks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napój czekoladowy" +msgstr[1] "napoje czekoladowe" +msgstr[2] "napoi czekoladowych" +msgstr[3] "napoju czekoladowego" #. ~ Description for chocolate drink #: lang/json/COMESTIBLE_from_json.py @@ -50157,7 +50501,7 @@ msgstr[1] "kawa" msgstr[2] "kawa" msgstr[3] "kawa" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -50176,7 +50520,7 @@ msgstr[1] "substytuty kawy" msgstr[2] "substytutów kawy" msgstr[3] "substytutów kawy" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -50190,12 +50534,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chicory brew" msgid_plural "chicory brew" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napar z cykorii" +msgstr[1] "napary z cykorii" +msgstr[2] "naparów z cykorii" +msgstr[3] "naparu z cykorii" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -50207,10 +50551,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "dark cola" msgid_plural "dark colas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "czarna kola" +msgstr[1] "czarne kole" +msgstr[2] "czarnych koli" +msgstr[3] "czarnej koli" #. ~ Description for dark cola #: lang/json/COMESTIBLE_from_json.py @@ -50220,10 +50564,10 @@ msgstr "Rzeczy idą łatwiej po koli. Słodzona woda z kofeiną." #: lang/json/COMESTIBLE_from_json.py msgid "energy cola" msgid_plural "energy colas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "energetyczna kola" +msgstr[1] "energetyczne kole" +msgstr[2] "energetycznych koli" +msgstr[3] "energetycznej koli" #. ~ Description for energy cola #: lang/json/COMESTIBLE_from_json.py @@ -50237,10 +50581,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cream soda" msgid_plural "cream sodas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kremowa woda gazowana" +msgstr[1] "kremowe wody gazowane" +msgstr[2] "kremowych wód gazowanych" +msgstr[3] "kremowej wody gazowanej" #. ~ Description for cream soda #: lang/json/COMESTIBLE_from_json.py @@ -50250,10 +50594,10 @@ msgstr "Napój gazowany z kofeiną o smaku waniliowym." #: lang/json/COMESTIBLE_from_json.py msgid "cranberry juice" msgid_plural "cranberry juices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "sok żurawinowy" +msgstr[1] "soki żurawinowe" +msgstr[2] "soków żurawinowych" +msgstr[3] "soku żurawinowego" #. ~ Description for cranberry juice #: lang/json/COMESTIBLE_from_json.py @@ -50282,7 +50626,7 @@ msgstr[1] "herbata z mleczy" msgstr[2] "herbata z mleczy" msgstr[3] "herbata z mleczy" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "Zdrowy napój z zaparzonych w przegotowanej wodzie korzeni mleczy." @@ -50290,12 +50634,12 @@ msgstr "Zdrowy napój z zaparzonych w przegotowanej wodzie korzeni mleczy." #: lang/json/COMESTIBLE_from_json.py msgid "dandelion and burdock tea" msgid_plural "dandelion and burdock tea" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "herbata z mleczy i łopianu" +msgstr[1] "herbaty z mleczy i łopianu" +msgstr[2] "herbat z mleczy i łopianu" +msgstr[3] "herbaty z mleczy i łopianu" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -50307,10 +50651,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "eggnog" msgid_plural "eggnogs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kogel mogel" +msgstr[1] "kogle mogle" +msgstr[2] "kogli mogli" +msgstr[3] "kogla mogla" #. ~ Description for eggnog #: lang/json/COMESTIBLE_from_json.py @@ -50326,10 +50670,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "energy drink" msgid_plural "energy drinks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napój energetyczny" +msgstr[1] "napoje energetyczne" +msgstr[2] "napoi energetycznych" +msgstr[3] "napoju energetycznego" #. ~ Description for energy drink #: lang/json/COMESTIBLE_from_json.py @@ -50343,10 +50687,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "atomic energy drink" msgid_plural "atomic energy drinks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "atomowy napój energetyczny" +msgstr[1] "atomowe napoje energetyczne" +msgstr[2] "atomowych napoi energetycznych" +msgstr[3] "atomowego napoju energetycznego" #. ~ Description for atomic energy drink #: lang/json/COMESTIBLE_from_json.py @@ -50368,7 +50712,7 @@ msgstr[1] "herbata ziołowa" msgstr[2] "herbata ziołowa" msgstr[3] "herbata ziołowa" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "Zdrowy napar z ziół moczonych we wrzątku." @@ -50381,7 +50725,7 @@ msgstr[1] "gorąca czekolada" msgstr[2] "gorąca czekolada" msgstr[3] "gorąca czekolada" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -50393,10 +50737,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pasteurized fruit juice" msgid_plural "pasteurized fruit juices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pasteryzowany sok owocowy" +msgstr[1] "pasteryzowane soki owocowe" +msgstr[2] "pasteryzowanych soków owocowych" +msgstr[3] "pasteryzowanego soku owocowego" #. ~ Description for pasteurized fruit juice #: lang/json/COMESTIBLE_from_json.py @@ -50410,10 +50754,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fruit juice" msgid_plural "fruit juices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "sok owocowy" +msgstr[1] "soki owocowe" +msgstr[2] "soków owocowych" +msgstr[3] "soku owocowego" #. ~ Description for fruit juice #: lang/json/COMESTIBLE_from_json.py @@ -50441,7 +50785,7 @@ msgstr[1] "lemoniada" msgstr[2] "lemoniada" msgstr[3] "lemoniada" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -50453,10 +50797,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "lemon-lime soda" msgid_plural "lemon-lime sodas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "cytrynowo-limonkowa woda gazowana" +msgstr[1] "cytrynowo-limonkowe wody gazowane" +msgstr[2] "cytrynowo-limonkowych wód gazowanych" +msgstr[3] "cytrynowo-limonkowej wody gazowanej" #. ~ Description for lemon-lime soda #: lang/json/COMESTIBLE_from_json.py @@ -50470,12 +50814,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "lotus tea" msgid_plural "lotus tea" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "herbata z lotosu" +msgstr[1] "herbaty z lotosu" +msgstr[2] "herbat z lotosu" +msgstr[3] "herbaty z lotosu" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "Zdrowy napar z kwiatów lotosu moczonych we wrzątku." @@ -50488,7 +50832,7 @@ msgstr[1] "meksykańska gorąca czekolada" msgstr[2] "meksykańska gorąca czekolada" msgstr[3] "meksykańska gorąca czekolada" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -50500,10 +50844,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "coffee milk" msgid_plural "coffee milks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "biała kawa" +msgstr[1] "białe kawy" +msgstr[2] "białych kaw" +msgstr[3] "białej kawy" #. ~ Description for coffee milk #: lang/json/COMESTIBLE_from_json.py @@ -50516,10 +50860,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "milk tea" msgid_plural "milk teas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "bawarka" +msgstr[1] "bawarki" +msgstr[2] "bawarek" +msgstr[3] "bawarki" #. ~ Description for milk tea #: lang/json/COMESTIBLE_from_json.py @@ -50529,10 +50873,10 @@ msgstr "Gorąca herbata z zimnym mlekiem." #: lang/json/COMESTIBLE_from_json.py msgid "orange juice" msgid_plural "orange juices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "sok pomarańczowy" +msgstr[1] "soki pomarańczowe" +msgstr[2] "soków pomarańczowych" +msgstr[3] "soku pomarańczowego" #. ~ Description for orange juice #: lang/json/COMESTIBLE_from_json.py @@ -50542,10 +50886,10 @@ msgstr "Świeżo wyciskany z prawdziwych pomarańczy! Pyszny i zdrowy." #: lang/json/COMESTIBLE_from_json.py msgid "orange soda" msgid_plural "orange sodas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pomarańczowa woda gazowana" +msgstr[1] "pomarańczowe wody gazowane" +msgstr[2] "pomarańczowych wód gazowanych" +msgstr[3] "pomarańczowej wody gazowanej" #. ~ Description for orange soda #: lang/json/COMESTIBLE_from_json.py @@ -50564,7 +50908,7 @@ msgstr[1] "herbata z igieł sosnowych" msgstr[2] "herbata z igieł sosnowych" msgstr[3] "herbata z igieł sosnowych" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -50574,10 +50918,10 @@ msgstr "Zdrowy i aromatyczny napar z sosnowych igieł zaparzonych wrzątkiem." #: lang/json/COMESTIBLE_from_json.py msgid "grape drink" msgid_plural "grape drinks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napój grejpfrutowy" +msgstr[1] "napoje grejpfrutowe" +msgstr[2] "napoi grejpfrutowych" +msgstr[3] "napoju grejpfrutowego" #. ~ Description for grape drink #: lang/json/COMESTIBLE_from_json.py @@ -50592,10 +50936,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mycus juice" msgid_plural "mycus juices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "sok mykus" +msgstr[1] "soki mykus" +msgstr[2] "soków mykus" +msgstr[3] "soku mykus" #. ~ Description for mycus juice #: lang/json/COMESTIBLE_from_json.py @@ -50610,7 +50954,7 @@ msgstr[1] "piwo korzenne" msgstr[2] "piwo korzenne" msgstr[3] "piwo korzenne" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "Jak kola ale bez kofeiny. Nadal niebyt zdrowe." @@ -50618,10 +50962,10 @@ msgstr "Jak kola ale bez kofeiny. Nadal niebyt zdrowe." #: lang/json/COMESTIBLE_from_json.py msgid "spezi" msgid_plural "spezis" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "spezi kola" +msgstr[1] "spezi kole" +msgstr[2] "spezi koli" +msgstr[3] "spezi koli" #. ~ Description for spezi #: lang/json/COMESTIBLE_from_json.py @@ -50635,10 +50979,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "sports drink" msgid_plural "sports drinks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napój sportowy" +msgstr[1] "napoje sportowe" +msgstr[2] "napoi sportowych" +msgstr[3] "napoju sportowego" #. ~ Description for sports drink #: lang/json/COMESTIBLE_from_json.py @@ -50652,18 +50996,18 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "spurge tea" msgid_plural "spurge tea" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "herbata z wilkomlecza" +msgstr[1] "herbaty z wilkomlecza" +msgstr[2] "herbat z wilkomlecza" +msgstr[3] "herbaty z wilkomlecza" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "Nie musisz się już bać ataku astmy, przynajmniej na jakiś czas." -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -50697,7 +51041,7 @@ msgstr[1] "słodka woda" msgstr[2] "słodka woda" msgstr[3] "słodka woda" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "Woda z dodatkiem cukru lub miodu. Smakuje ok." @@ -50705,10 +51049,10 @@ msgstr "Woda z dodatkiem cukru lub miodu. Smakuje ok." #: lang/json/COMESTIBLE_from_json.py msgid "black tea" msgid_plural "black teas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "czarna herbata" +msgstr[1] "czarne herbaty" +msgstr[2] "czarnych herbat" +msgstr[3] "czarnej herbaty" #. ~ Description for black tea #: lang/json/COMESTIBLE_from_json.py @@ -50722,12 +51066,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "willowbark tea" msgid_plural "willowbark tea" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "herbata z kory wierzby" +msgstr[1] "herbaty z kory wierzby" +msgstr[2] "herbat z kory wierzby" +msgstr[3] "herbaty z kory wierzby" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -50739,10 +51083,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "bark tea" msgid_plural "bark teas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "herbata z kory" +msgstr[1] "herbaty z kory" +msgstr[2] "herbat z kory" +msgstr[3] "herbaty z kory" #. ~ Description for bark tea #: lang/json/COMESTIBLE_from_json.py @@ -50775,7 +51119,7 @@ msgstr[1] "wody" msgstr[2] "wody" msgstr[3] "wody" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -50792,7 +51136,7 @@ msgstr[1] "czysta woda" msgstr[2] "czysta woda" msgstr[3] "czysta woda" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -50806,7 +51150,7 @@ msgstr[1] "woda mineralna" msgstr[2] "woda mineralna" msgstr[3] "woda mineralna" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -50816,10 +51160,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "green tea" msgid_plural "green teas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zielona herbata" +msgstr[1] "zielone herbaty" +msgstr[2] "zielonych herbat" +msgstr[3] "zielonej herbaty" #. ~ Description for green tea #: lang/json/COMESTIBLE_from_json.py @@ -50835,10 +51179,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fruit tea" msgid_plural "fruit teas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "herbata owocowa" +msgstr[1] "herbaty owocowe" +msgstr[2] "herbat owocowych" +msgstr[3] "herbaty owocowej" #. ~ Description for fruit tea #: lang/json/COMESTIBLE_from_json.py @@ -50852,10 +51196,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "sweetened coffee" msgid_plural "sweetened coffees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "słodzona kawa" +msgstr[1] "słodzone kawy" +msgstr[2] "słodzonych kaw" +msgstr[3] "słodzonej kawy" #. ~ Description for sweetened coffee #: lang/json/COMESTIBLE_from_json.py @@ -50873,10 +51217,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "sweetened tea" msgid_plural "sweetened teas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "słodzona herbata" +msgstr[1] "słodzone herbaty" +msgstr[2] "słodzonych herbat" +msgstr[3] "słodzonej herbaty" #. ~ Description for sweetened tea #: lang/json/COMESTIBLE_from_json.py @@ -50890,10 +51234,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "sweetened milk tea" msgid_plural "sweetened milk teas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "słodzona bawarka" +msgstr[1] "słodzone bawarki" +msgstr[2] "słodzonych bawarek" +msgstr[3] "słodzonej bawarki" #. ~ Description for sweetened milk tea #: lang/json/COMESTIBLE_from_json.py @@ -50903,10 +51247,10 @@ msgstr "Gorąca herbata z zimnym mlekiem i dodatkiem słodzika." #: lang/json/COMESTIBLE_from_json.py msgid "sweetened coffee substitute" msgid_plural "sweetened coffee substitutes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "słodzony substytut kawy" +msgstr[1] "słodzone substytuty kawy" +msgstr[2] "słodzonych substytutów kawy" +msgstr[3] "słodzonego substytutu kawy" #. ~ Description for sweetened coffee substitute #: lang/json/COMESTIBLE_from_json.py @@ -50923,10 +51267,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "sweetened coffee milk" msgid_plural "sweetened coffee milks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "słodzona kawa z mlekiem" +msgstr[1] "słodzone kawy z mlekiem" +msgstr[2] "słodzonych kaw z mlekiem" +msgstr[3] "słodzonej kawy z mlekiem" #. ~ Description for sweetened coffee milk #: lang/json/COMESTIBLE_from_json.py @@ -50957,10 +51301,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "red sauce" msgid_plural "red sauces" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "koncentrat pomidorowy" +msgstr[1] "koncentraty pomidorowe" +msgstr[2] "koncentratów pomidorowych" +msgstr[3] "koncentratu pomidorowego" #. ~ Description for red sauce #: lang/json/COMESTIBLE_from_json.py @@ -50975,7 +51319,7 @@ msgstr[1] "żywica klonowa" msgstr[2] "żywica klonowa" msgstr[3] "żywica klonowa" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "Roztwór wody i cukru wyekstrahowany z drzewa klonowego." @@ -50988,7 +51332,7 @@ msgstr[1] "majonez" msgstr[2] "majonez" msgstr[3] "majonez" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -51018,7 +51362,7 @@ msgstr[1] "musztardy" msgstr[2] "musztard" msgstr[3] "musztardy" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -51035,7 +51379,7 @@ msgstr[1] "miód leśny" msgstr[2] "miód leśny" msgstr[3] "miód leśny" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -51052,7 +51396,7 @@ msgstr[1] "ocet" msgstr[2] "ocet" msgstr[3] "ocet" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -51069,7 +51413,7 @@ msgstr[1] "olej roślinny" msgstr[2] "olej roślinny" msgstr[3] "olej roślinny" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "Przejrzysty żółty olej roślinny do zastosowań kuchennych." @@ -51082,7 +51426,7 @@ msgstr[1] "olej zwierzęcy" msgstr[2] "olej zwierzęcy" msgstr[3] "olej zwierzęcy" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "Przejrzysty żółty olej zwierzęcy do zastosowań kuchennych." @@ -51095,7 +51439,7 @@ msgstr[1] "melasa" msgstr[2] "melasa" msgstr[3] "melasa" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -51113,7 +51457,7 @@ msgstr[1] "chrzan" msgstr[2] "chrzan" msgstr[3] "chrzan" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "Tarty ostry korzeń chrzanu w zalewie octowej." @@ -51126,7 +51470,7 @@ msgstr[1] "syrop kawowy" msgstr[2] "syrop kawowy" msgstr[3] "syrop kawowy" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -51159,10 +51503,10 @@ msgstr[3] "kurzych jaj" #: lang/json/COMESTIBLE_from_json.py msgid "unfertilized bird egg" msgid_plural "unfertilized bird eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "niezapłodnione ptasie jajo" +msgstr[1] "niezapłodnione ptasie jaja" +msgstr[2] "niezapłodnionych ptasich jaj" +msgstr[3] "niezapłodnionego ptasiego jaja" #. ~ Description for unfertilized bird egg #: lang/json/COMESTIBLE_from_json.py @@ -51184,42 +51528,42 @@ msgstr[3] "jaja cietrzewia" #: lang/json/COMESTIBLE_from_json.py msgid "crow egg" msgid_plural "crow eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo wrony" +msgstr[1] "jaja wrony" +msgstr[2] "jaj wrony" +msgstr[3] "jaja wrony" #: lang/json/COMESTIBLE_from_json.py msgid "raven egg" msgid_plural "raven eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo kruka" +msgstr[1] "jaja kruka" +msgstr[2] "jaj kruka" +msgstr[3] "jaja kruka" #: lang/json/COMESTIBLE_from_json.py msgid "blue jay egg" msgid_plural "blue jay eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo modrosójki błękitnej" +msgstr[1] "jaja modrosójki błękitnej" +msgstr[2] "jaj modrosójki błękitnej" +msgstr[3] "jaja modrosójki błękitnej" #: lang/json/COMESTIBLE_from_json.py msgid "cardinal egg" msgid_plural "cardinal eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo kardynała" +msgstr[1] "jaja kardynała" +msgstr[2] "jaj kardynała" +msgstr[3] "jaja kardynała" #: lang/json/COMESTIBLE_from_json.py msgid "robin egg" msgid_plural "robin eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo rudzika" +msgstr[1] "jaja rudzika" +msgstr[2] "jaj rudzika" +msgstr[3] "jaja rudzika" #. ~ Description for robin egg #: lang/json/COMESTIBLE_from_json.py @@ -51229,58 +51573,58 @@ msgstr "Pożywne jajo złożone przez rudzika." #: lang/json/COMESTIBLE_from_json.py msgid "sparrow egg" msgid_plural "sparrow eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo wróbla" +msgstr[1] "jaja wróbla" +msgstr[2] "jaj wróbla" +msgstr[3] "jaja wróbla" #: lang/json/COMESTIBLE_from_json.py msgid "duck egg" msgid_plural "duck eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kacze jajo" +msgstr[1] "kacze jaja" +msgstr[2] "kaczych jaj" +msgstr[3] "kaczego jaja" #: lang/json/COMESTIBLE_from_json.py msgid "goose egg" msgid_plural "goose eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gęsie jajo" +msgstr[1] "gęsie jaja" +msgstr[2] "gęsich jaj" +msgstr[3] "gęsiego jaja" #: lang/json/COMESTIBLE_from_json.py msgid "turkey egg" msgid_plural "turkey eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo indyka" +msgstr[1] "jaja indyka" +msgstr[2] "jaj indyka" +msgstr[3] "jaja indyka" #: lang/json/COMESTIBLE_from_json.py msgid "pheasant egg" msgid_plural "pheasant eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo bażanta" +msgstr[1] "jaja bażanta" +msgstr[2] "jaj bażanta" +msgstr[3] "jaja bażanta" #: lang/json/COMESTIBLE_from_json.py msgid "cockatrice egg" msgid_plural "cockatrice eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo kokatryksa" +msgstr[1] "jaja kokatryksa" +msgstr[2] "jaj kokatryksa" +msgstr[3] "jaja kokatryksa" #: lang/json/COMESTIBLE_from_json.py msgid "reptile egg" msgid_plural "reptile eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gadzie jajo" +msgstr[1] "gadzie jaja" +msgstr[2] "gadzich jaj" +msgstr[3] "gadziego jaja" #. ~ Description for reptile egg #: lang/json/COMESTIBLE_from_json.py @@ -51290,18 +51634,18 @@ msgstr "Jajo należące do jednego z gatunku gadów żyjących w Nowej Anglii." #: lang/json/COMESTIBLE_from_json.py msgid "Insect Egg" msgid_plural "Insect Eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "owadzie jajo" +msgstr[1] "owadzie jaja" +msgstr[2] "owadzich jaj" +msgstr[3] "owadziego jaja" #: lang/json/COMESTIBLE_from_json.py msgid "ant egg" msgid_plural "ant eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mrówcze jajo" +msgstr[1] "mrówcze jaja" +msgstr[2] "mrówczych jaj" +msgstr[3] "mrówczego jaja" #. ~ Description for ant egg #: lang/json/COMESTIBLE_from_json.py @@ -51315,10 +51659,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "spider egg" msgid_plural "spider eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pajęcze jajo" +msgstr[1] "pajęcze jaja" +msgstr[2] "pajęczych jaj" +msgstr[3] "pajęczego jaja" #. ~ Description for spider egg #: lang/json/COMESTIBLE_from_json.py @@ -51328,10 +51672,10 @@ msgstr "Jajo pająka olbrzyma wielkości pięści. Niezwykle ohydne." #: lang/json/COMESTIBLE_from_json.py msgid "roach egg" msgid_plural "roach eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo karalucha" +msgstr[1] "jaja karalucha" +msgstr[2] "jaj karalucha" +msgstr[3] "jaja karalucha" #. ~ Description for roach egg #: lang/json/COMESTIBLE_from_json.py @@ -51341,10 +51685,10 @@ msgstr "Jajo karalucha olbrzyma wielkości pięści. Niezwykle ohydne." #: lang/json/COMESTIBLE_from_json.py msgid "locust egg" msgid_plural "locust eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo szarańczy" +msgstr[1] "jaja szarańczy" +msgstr[2] "jaj szarańczy" +msgstr[3] "jaja szarańczy" #. ~ Description for locust egg #: lang/json/COMESTIBLE_from_json.py @@ -51354,10 +51698,10 @@ msgstr "Jajo szarańczy wielkości pięści." #: lang/json/COMESTIBLE_from_json.py msgid "dragonfly egg" msgid_plural "dragonfly eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo ważki" +msgstr[1] "jaja ważki" +msgstr[2] "jaj ważki" +msgstr[3] "jaja ważki" #. ~ Description for dragonfly egg #: lang/json/COMESTIBLE_from_json.py @@ -51371,10 +51715,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "firefly egg" msgid_plural "firefly eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo świetlika" +msgstr[1] "jaja świetlika" +msgstr[2] "jaj świetlika" +msgstr[3] "jaja świetlika" #. ~ Description for firefly egg #: lang/json/COMESTIBLE_from_json.py @@ -51385,10 +51729,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "centipede egg" msgid_plural "centipede eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo stonogi" +msgstr[1] "jaja stonogi" +msgstr[2] "jaj stonogi" +msgstr[3] "jaja stonogi" #. ~ Description for centipede egg #: lang/json/COMESTIBLE_from_json.py @@ -51402,10 +51746,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "wasp egg" msgid_plural "wasp eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo osy" +msgstr[1] "jaja osy" +msgstr[2] "jaj osy" +msgstr[3] "jaja osy" #. ~ Description for wasp egg #: lang/json/COMESTIBLE_from_json.py @@ -51419,10 +51763,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "antlion egg" msgid_plural "antlion eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo mrówkolwa" +msgstr[1] "jaja mrówkolwa" +msgstr[2] "jaj mrówkolwa" +msgstr[3] "jaja mrówkolwa" #. ~ Description for antlion egg #: lang/json/COMESTIBLE_from_json.py @@ -51432,10 +51776,10 @@ msgstr "Duże białe jajo mrówkolwa. W środku jest coś twardego." #: lang/json/COMESTIBLE_from_json.py msgid "water strider egg" msgid_plural "water strider eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo nartnika" +msgstr[1] "jaja nartnika" +msgstr[2] "jaj nartnika" +msgstr[3] "jaja nartnika" #. ~ Description for water strider egg #: lang/json/COMESTIBLE_from_json.py @@ -51449,10 +51793,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "grasshopper egg" msgid_plural "grasshopper eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo konika polnego" +msgstr[1] "jaja konika polnego" +msgstr[2] "jaj konika polnego" +msgstr[3] "jaja konika polnego" #. ~ Description for grasshopper egg #: lang/json/COMESTIBLE_from_json.py @@ -51466,10 +51810,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "lady bug egg" msgid_plural "lady bug eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo biedronki" +msgstr[1] "jaj biedronki" +msgstr[2] "jaj biedronki" +msgstr[3] "jaja biedronki" #. ~ Description for lady bug egg #: lang/json/COMESTIBLE_from_json.py @@ -51483,10 +51827,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mole cricket egg" msgid_plural "mole cricket eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo świerszcza" +msgstr[1] "jaja świerszcza" +msgstr[2] "jaj świerszcza" +msgstr[3] "jaja świerszcza" #. ~ Description for mole cricket egg #: lang/json/COMESTIBLE_from_json.py @@ -51500,10 +51844,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "praying mantis egg case" msgid_plural "praying mantis egg cases" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kasetka jaj modliszki" +msgstr[1] "kasetki jaj modliszki" +msgstr[2] "kasetek jaj modliszki" +msgstr[3] "kasetki jaj modliszki" #. ~ Description for praying mantis egg case #: lang/json/COMESTIBLE_from_json.py @@ -51517,10 +51861,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "razorclaw roe" msgid_plural "razorclaw roes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ikra żyletoszpona" +msgstr[1] "ikry żyletoszpona" +msgstr[2] "ikr żyletoszpona" +msgstr[3] "ikry żyletoszpona" #. ~ Description for razorclaw roe #: lang/json/COMESTIBLE_from_json.py @@ -51530,10 +51874,10 @@ msgstr "Zlepek jaj żyletoszpona. Postapokaliptyczny delikates." #: lang/json/COMESTIBLE_from_json.py msgid "roe" msgid_plural "roes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ikra" +msgstr[1] "ikry" +msgstr[2] "ikr" +msgstr[3] "ikry" #. ~ Description for roe #: lang/json/COMESTIBLE_from_json.py @@ -51543,10 +51887,10 @@ msgstr "Pospolita ikra z nieznanej ryby." #: lang/json/COMESTIBLE_from_json.py msgid "powdered egg" msgid_plural "powdered eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajo w proszku" +msgstr[1] "jaja w proszku" +msgstr[2] "jaj w proszku" +msgstr[3] "jaja w proszku" #. ~ Description for powdered egg #: lang/json/COMESTIBLE_from_json.py @@ -51561,7 +51905,7 @@ msgstr[1] "jajecznica" msgstr[2] "jajecznica" msgstr[3] "jajecznica" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "Puszysta i smaczna jajecznica." @@ -51569,10 +51913,10 @@ msgstr "Puszysta i smaczna jajecznica." #: lang/json/COMESTIBLE_from_json.py msgid "boiled egg" msgid_plural "boiled eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajko na twardo" +msgstr[1] "jajka na twardo" +msgstr[2] "jajek na twardo" +msgstr[3] "jajka na twardo" #. ~ Description for boiled egg #: lang/json/COMESTIBLE_from_json.py @@ -51583,12 +51927,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fried eggs" msgid_plural "fried eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajko sadzone" +msgstr[1] "jajka sadzone" +msgstr[2] "jajek sadzonych" +msgstr[3] "jajka sadzonego" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -51598,12 +51942,12 @@ msgstr "Jajka sadzone, z miękkim żółtkiem ale delikatnie chrupiące na bokac #: lang/json/COMESTIBLE_from_json.py msgid "deluxe fried eggs" msgid_plural "deluxe fried eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajko sadzone deluxe" +msgstr[1] "jajka sadzone deluxe" +msgstr[2] "jajek sadzonych deluxe" +msgstr[3] "jajka sadzonego deluxe" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -51615,12 +51959,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fried egg sandwich" msgid_plural "fried egg sandwich" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kanapka z sadzonym jajkiem" +msgstr[1] "kanapki z sadzonym jajkiem" +msgstr[2] "kanapek z sadzonym jajkiem" +msgstr[3] "kanapki z sadzonym jajkiem" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -51632,12 +51976,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "deluxe fried egg sandwich" msgid_plural "deluxe fried egg sandwich" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kanapka z sadzonym jajkiem deluxe" +msgstr[1] "kanapki z sadzonym jajkiem deluxe" +msgstr[2] "kanapek z sadzonym jajkiem deluxe" +msgstr[3] "kanapki z sadzonym jajkiem deluxe" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -51649,10 +51993,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pickled egg" msgid_plural "pickled eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "marynowane jajko" +msgstr[1] "marynowane jajka" +msgstr[2] "marynowanych jajek" +msgstr[3] "marynowanego jajka" #. ~ Description for pickled egg #: lang/json/COMESTIBLE_from_json.py @@ -51665,10 +52009,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "milkshake" msgid_plural "milkshakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "koktajl mleczny" +msgstr[1] "koktajle mleczne" +msgstr[2] "koktajli mlecznych" +msgstr[3] "koktajlu mlecznego" #. ~ Description for milkshake #: lang/json/COMESTIBLE_from_json.py @@ -51699,10 +52043,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chocolate milkshake" msgid_plural "chocolate milkshakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "czekoladowy koktajl mleczny" +msgstr[1] "czekoladowe koktajle mleczne" +msgstr[2] "czekoladowych koktajli mlecznych" +msgstr[3] "czekoladowego koktajlu mlecznego" #. ~ Description for chocolate milkshake #: lang/json/COMESTIBLE_from_json.py @@ -51716,10 +52060,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "deluxe milkshake" msgid_plural "deluxe milkshakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "koktajl mleczny deluxe" +msgstr[1] "koktajle mleczne deluxe" +msgstr[2] "koktajli mlecznych deluxe" +msgstr[3] "koktajlu mlecznego deluxe" #. ~ Description for deluxe milkshake #: lang/json/COMESTIBLE_from_json.py @@ -51733,10 +52077,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "deluxe chocolate milkshake" msgid_plural "deluxe chocolate milkshakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "czekoladowy koktajl mleczny deluxe" +msgstr[1] "czekoladowe koktajle mleczne deluxe" +msgstr[2] "czekoladowych koktajli mlecznych deluxe" +msgstr[3] "czekoladowego koktajlu mlecznego deluxe" #. ~ Description for deluxe chocolate milkshake #: lang/json/COMESTIBLE_from_json.py @@ -51750,10 +52094,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "frozen lemonade" msgid_plural "frozen lemonades" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mrożona lemoniada" +msgstr[1] "mrożone lemoniady" +msgstr[2] "mrożonych lemoniad" +msgstr[3] "mrożonej lemoniady" #. ~ Description for frozen lemonade #: lang/json/COMESTIBLE_from_json.py @@ -51800,10 +52144,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chocolate ice cream" msgid_plural "chocolate ice cream scoops" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gałka lodów czekoladowych" +msgstr[1] "gałki lodów czekoladowych" +msgstr[2] "gałek lodów czekoladowych" +msgstr[3] "gałki lodów czekoladowych" #. ~ Description for chocolate ice cream #: lang/json/COMESTIBLE_from_json.py @@ -51816,10 +52160,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "sundae cup" msgid_plural "sundae cups" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "deser lodowy" +msgstr[1] "desery lodowe" +msgstr[2] "deserów lodowych" +msgstr[3] "deseru lodowego" #. ~ Description for sundae cup #: lang/json/COMESTIBLE_from_json.py @@ -51890,7 +52234,7 @@ msgstr[1] "zamrożone jogurty" msgstr[2] "zamrożonych jogurtów" msgstr[3] "zamrożonego jogurtu" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -51945,10 +52289,10 @@ msgstr "Trochę jak dżem truskawkowy, ale bez cukru." #: lang/json/COMESTIBLE_from_json.py msgid "fruit leather" msgid_plural "fruit leathers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "bakalie" +msgstr[1] "bakalie" +msgstr[2] "bakalii" +msgstr[3] "bakalii" #. ~ Description for fruit leather #: lang/json/COMESTIBLE_from_json.py @@ -51976,7 +52320,7 @@ msgstr[1] "brzoskwinie w syropie" msgstr[2] "brzoskwinie w syropie" msgstr[3] "brzoskwinie w syropie" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "Zwarte żółte plastry brzoskwini upakowane w lekkim syropie." @@ -51984,10 +52328,10 @@ msgstr "Zwarte żółte plastry brzoskwini upakowane w lekkim syropie." #: lang/json/COMESTIBLE_from_json.py msgid "canned pineapple" msgid_plural "canned pineapples" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ananas w puszce" +msgstr[1] "ananasy w puszce" +msgstr[2] "ananasów w puszce" +msgstr[3] "ananasa w puszce" #. ~ Description for canned pineapple #: lang/json/COMESTIBLE_from_json.py @@ -51997,12 +52341,12 @@ msgstr "Krążki ananasa w wodnej zalewie. Całkiem smaczne." #: lang/json/COMESTIBLE_from_json.py msgid "lemonade drink mix" msgid_plural "lemonade drink mix" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "lemoniada w proszku" +msgstr[1] "lemoniady w proszku" +msgstr[2] "lemoniad w proszku" +msgstr[3] "lemoniady w proszku" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -52014,10 +52358,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cooked fruit" msgid_plural "cooked fruits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowany owoc" +msgstr[1] "gotowane owoce" +msgstr[2] "gotowanych owoców" +msgstr[3] "gotowanego owoca" #. ~ Description for cooked fruit #: lang/json/COMESTIBLE_from_json.py @@ -52027,10 +52371,10 @@ msgstr "Trochę jak dżem owocowy, ale bez cukru." #: lang/json/COMESTIBLE_from_json.py msgid "fruit jam" msgid_plural "fruit jams" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "dżem owocowy" +msgstr[1] "dżemy owocowe" +msgstr[2] "dżemów owocowych" +msgstr[3] "dżemu owocowego" #. ~ Description for fruit jam #: lang/json/COMESTIBLE_from_json.py @@ -52045,7 +52389,7 @@ msgstr[1] "suszone owoce" msgstr[2] "suszone owoce" msgstr[3] "suszone owoce" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -52063,7 +52407,7 @@ msgstr[1] "nawodnione owoce" msgstr[2] "nawodnione owoce" msgstr[3] "nawodnione owoce" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -52075,10 +52419,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fruit slice" msgid_plural "fruit slices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "plaster owocowy" +msgstr[1] "plastry owocowe" +msgstr[2] "plastrów owocowych" +msgstr[3] "plastra owocowego" #. ~ Description for fruit slice #: lang/json/COMESTIBLE_from_json.py @@ -52095,7 +52439,7 @@ msgstr[1] "puszkowane owoce" msgstr[2] "puszkowane owoce" msgstr[3] "puszkowane owoce" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -52107,12 +52451,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pumpkin yeast bread" msgid_plural "pumpkin yeast bread" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "chleb drożdżowy z dynią" +msgstr[1] "chleby drożdżowe z dynią" +msgstr[2] "chlebów drożdżowych z dynią" +msgstr[3] "chleba drożdżowego z dynią" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -52124,10 +52468,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "brandied fruit" msgid_plural "brandied fruits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "owoc w brandy" +msgstr[1] "owoce w brandy" +msgstr[2] "owoców w brandy" +msgstr[3] "owocu w brandy" #. ~ Description for brandied fruit #: lang/json/COMESTIBLE_from_json.py @@ -52144,7 +52488,7 @@ msgstr[1] "napromieniowane róże biodrowe" msgstr[2] "napromieniowanych róż biodrowych" msgstr[3] "napromieniowane róże biodrowe" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -52275,10 +52619,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated apple" msgid_plural "irradiated apples" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowane jabłko" +msgstr[1] "napromieniowane jabłka" +msgstr[2] "napromieniowanych jabłek" +msgstr[3] "napromieniowanego jabłka" #. ~ Description for irradiated apple #: lang/json/COMESTIBLE_from_json.py @@ -52292,10 +52636,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated banana" msgid_plural "irradiated bananas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowany banan" +msgstr[1] "napromieniowane banany" +msgstr[2] "napromieniowanych bananów" +msgstr[3] "napromieniowanego banana" #. ~ Description for irradiated banana #: lang/json/COMESTIBLE_from_json.py @@ -52309,10 +52653,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated orange" msgid_plural "irradiated oranges" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowana pomarańcza" +msgstr[1] "napromieniowane pomarańcze" +msgstr[2] "napromieniowanych pomarańczy" +msgstr[3] "napromieniowanej pomarańczy" #. ~ Description for irradiated orange #: lang/json/COMESTIBLE_from_json.py @@ -52326,10 +52670,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated lemon" msgid_plural "irradiated lemons" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowana cytryna" +msgstr[1] "napromieniowane cytryny" +msgstr[2] "napromieniowanych cytryn" +msgstr[3] "napromieniowanej cytryny" #. ~ Description for irradiated lemon #: lang/json/COMESTIBLE_from_json.py @@ -52343,10 +52687,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated grapefruit" msgid_plural "irradiated grapefruits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowany grejpfrut" +msgstr[1] "napromieniowane grejpfruty" +msgstr[2] "napromieniowanych grejpfrutów" +msgstr[3] "napromieniowanego grejpfruta" #. ~ Description for irradiated grapefruit #: lang/json/COMESTIBLE_from_json.py @@ -52360,10 +52704,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated pear" msgid_plural "irradiated pears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowana gruszka" +msgstr[1] "napromieniowane gruszki" +msgstr[2] "napromieniowanych gruszek" +msgstr[3] "napromieniowanej gruszki" #. ~ Description for irradiated pear #: lang/json/COMESTIBLE_from_json.py @@ -52394,10 +52738,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated plum" msgid_plural "irradiated plums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowana śliwka" +msgstr[1] "napromieniowane śliwki" +msgstr[2] "napromieniowanych śliwek" +msgstr[3] "napromieniowanej śliwki" #. ~ Description for irradiated plum #: lang/json/COMESTIBLE_from_json.py @@ -52411,10 +52755,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated grape" msgid_plural "irradiated grapes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowane winogrono" +msgstr[1] "napromieniowane winogrona" +msgstr[2] "napromieniowanych winogron" +msgstr[3] "napromieniowanego winogrona" #. ~ Description for irradiated grape #: lang/json/COMESTIBLE_from_json.py @@ -52428,10 +52772,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated pineapple" msgid_plural "irradiated pineapples" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowany ananas" +msgstr[1] "napromieniowane ananasy" +msgstr[2] "napromieniowanych ananasów" +msgstr[3] "napromieniowanego ananasa" #. ~ Description for irradiated pineapple #: lang/json/COMESTIBLE_from_json.py @@ -52462,10 +52806,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated watermelon" msgid_plural "irradiated watermelons" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowany arbuz" +msgstr[1] "napromieniowane arbuzy" +msgstr[2] "napromieniowanych arbuzów" +msgstr[3] "napromieniowanego arbuza" #. ~ Description for irradiated watermelon #: lang/json/COMESTIBLE_from_json.py @@ -52479,10 +52823,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated melon" msgid_plural "irradiated melons" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowany melon" +msgstr[1] "napromieniowane melony" +msgstr[2] "napromieniowanych melonów" +msgstr[3] "napromieniowanego melona" #. ~ Description for irradiated melon #: lang/json/COMESTIBLE_from_json.py @@ -52513,10 +52857,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated mango" msgid_plural "irradiated mangos" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowane mango" +msgstr[1] "napromieniowane mango" +msgstr[2] "napromieniowanych mango" +msgstr[3] "napromieniowanego mango" #. ~ Description for irradiated mango #: lang/json/COMESTIBLE_from_json.py @@ -52530,10 +52874,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated pomegranate" msgid_plural "irradiated pomegranates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowany owoc granatu" +msgstr[1] "napromieniowane owoce granatu" +msgstr[2] "napromieniowanych owoców granatu" +msgstr[3] "napromieniowanego owocu granatu" #. ~ Description for irradiated pomegranate #: lang/json/COMESTIBLE_from_json.py @@ -52547,10 +52891,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated papaya" msgid_plural "irradiated papayas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowana papaja" +msgstr[1] "napromieniowane papaje" +msgstr[2] "napromieniowanych papai" +msgstr[3] "napromieniowanej papai" #. ~ Description for irradiated papaya #: lang/json/COMESTIBLE_from_json.py @@ -52564,10 +52908,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated kiwi" msgid_plural "irradiated kiwis" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowane kiwi" +msgstr[1] "napromieniowane kiwi" +msgstr[2] "napromieniowanych kiwi" +msgstr[3] "napromieniowanego kiwi" #. ~ Description for irradiated kiwi #: lang/json/COMESTIBLE_from_json.py @@ -52581,10 +52925,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated apricot" msgid_plural "irradiated apricots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowana morela" +msgstr[1] "napromieniowane morele" +msgstr[2] "napromieniowanych morel" +msgstr[3] "napromieniowanej moreli" #. ~ Description for irradiated apricot #: lang/json/COMESTIBLE_from_json.py @@ -52598,10 +52942,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated lettuce" msgid_plural "irradiated lettuces" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowana sałata" +msgstr[1] "napromieniowane sałaty" +msgstr[2] "napromieniowanych sałat" +msgstr[3] "napromieniowanej sałaty" #. ~ Description for irradiated lettuce #: lang/json/COMESTIBLE_from_json.py @@ -52615,10 +52959,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated cabbage" msgid_plural "irradiated cabbages" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowana kapusta" +msgstr[1] "napromieniowane kapusty" +msgstr[2] "napromieniowanych kapust" +msgstr[3] "napromieniowanej kapusty" #. ~ Description for irradiated cabbage #: lang/json/COMESTIBLE_from_json.py @@ -52654,7 +52998,7 @@ msgstr[1] "napromieniowane brokuły" msgstr[2] "napromieniowane brokuły" msgstr[3] "napromieniowane brokuły" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -52666,10 +53010,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated zucchini" msgid_plural "irradiated zucchinis" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowana cukinia" +msgstr[1] "napromieniowane cukinie" +msgstr[2] "napromieniowanych cukinii" +msgstr[3] "napromieniowanej cukinii" #. ~ Description for irradiated zucchini #: lang/json/COMESTIBLE_from_json.py @@ -52683,10 +53027,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated onion" msgid_plural "irradiated onions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowana cebula" +msgstr[1] "napromieniowane cebule" +msgstr[2] "napromieniowanych cebul" +msgstr[3] "napromieniowanej cebuli" #. ~ Description for irradiated onion #: lang/json/COMESTIBLE_from_json.py @@ -52700,10 +53044,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated carrot" msgid_plural "irradiated carrots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowana marchewka" +msgstr[1] "napromieniowane marchewki" +msgstr[2] "napromieniowanych marchewek" +msgstr[3] "napromieniowanej marchewki" #. ~ Description for irradiated carrot #: lang/json/COMESTIBLE_from_json.py @@ -52722,7 +53066,7 @@ msgstr[1] "napromieniowana kukurydza" msgstr[2] "napromieniowana kukurydza" msgstr[3] "napromieniowana kukurydza" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -52734,10 +53078,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated pumpkin" msgid_plural "irradiated pumpkins" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowana dynia" +msgstr[1] "napromieniowane dynie" +msgstr[2] "napromieniowanych dyń" +msgstr[3] "napromieniowanej dyni" #. ~ Description for irradiated pumpkin #: lang/json/COMESTIBLE_from_json.py @@ -52768,10 +53112,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated cucumber" msgid_plural "irradiated cucumbers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowany ogórek" +msgstr[1] "napromieniowane ogórki" +msgstr[2] "napromieniowanych ogórków" +msgstr[3] "napromieniowanego ogórka" #. ~ Description for irradiated cucumber #: lang/json/COMESTIBLE_from_json.py @@ -52785,12 +53129,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated celery" msgid_plural "irradiated celery" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowany seler" +msgstr[1] "napromieniowane selery" +msgstr[2] "napromieniowanych selerów" +msgstr[3] "napromieniowanego selera" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -52802,12 +53146,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "irradiated rhubarb" msgid_plural "irradiated rhubarb" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "napromieniowany rabarbar" +msgstr[1] "napromieniowane rabarbary" +msgstr[2] "napromieniowanych rabarbarów" +msgstr[3] "napromieniowanego rabarbaru" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -52819,10 +53163,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "toast-em" msgid_plural "toast-ems" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ciastko nadziewane" +msgstr[1] "ciastka nadziewane" +msgstr[2] "ciastek nadziewanych" +msgstr[3] "ciastka nadziewanego" #. ~ Description for toast-em #: lang/json/COMESTIBLE_from_json.py @@ -52852,10 +53196,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "homemade toast-em" msgid_plural "homemade toast-ems" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "domowe ciastko nadziewane" +msgstr[1] "domowe ciastka nadziewane" +msgstr[2] "domowych ciastek nadziewanych" +msgstr[3] "domowego ciastka nadziewanego" #. ~ Description for homemade toast-em #: lang/json/COMESTIBLE_from_json.py @@ -52905,10 +53249,10 @@ msgstr "Upieczone przez ciebie pyszne domowe ciastka nadziewane owocami." #: lang/json/COMESTIBLE_from_json.py msgid "toaster pastry with buttercream" msgid_plural "toaster pastries with buttercream" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "maślane ciasteczko tostowe" +msgstr[1] "maślane ciasteczka tostowe" +msgstr[2] "maślanych ciasteczek tostowych" +msgstr[3] "maślanego ciasteczka tostowego" #. ~ Description for toaster pastry with buttercream #: lang/json/COMESTIBLE_from_json.py @@ -52922,10 +53266,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "buttercream icing" msgid_plural "cups of buttercream icing" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "lukier maślany" +msgstr[1] "kubki lukru maślanego" +msgstr[2] "kubków lukru maślanego" +msgstr[3] "kubka lukru maślanego" #. ~ Description for buttercream icing #: lang/json/COMESTIBLE_from_json.py @@ -52944,12 +53288,12 @@ msgstr[1] "czipsy ziemniaczane" msgstr[2] "czipsy ziemniaczane" msgstr[3] "czipsy ziemniaczane" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "Nieco prostych, solonych czipsów ziemniaczanych." -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "O człowieku, uwielbiasz te czipsy. Wypas!" @@ -52962,7 +53306,7 @@ msgstr[1] "ziarna kukurydzy" msgstr[2] "ziarna kukurydzy" msgstr[3] "ziarna kukurydzy" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -52979,7 +53323,7 @@ msgstr[1] "popcorn" msgstr[2] "popcorn" msgstr[3] "popcorn" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -52996,7 +53340,7 @@ msgstr[1] "solony popcorn" msgstr[2] "solony popcorn" msgstr[3] "solony popcorn" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "Popcorn z dodatkiem soli dla smaku." @@ -53009,7 +53353,7 @@ msgstr[1] "maślany popcorn" msgstr[2] "maślany popcorn" msgstr[3] "maślany popcorn" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "Popcorn z dodatkiem masła dla polepszenia smaku." @@ -53022,7 +53366,7 @@ msgstr[1] "precle" msgstr[2] "precle" msgstr[3] "precle" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "Słona przekąska." @@ -53030,10 +53374,10 @@ msgstr "Słona przekąska." #: lang/json/COMESTIBLE_from_json.py msgid "chocolate-covered pretzel" msgid_plural "chocolate-covered pretzels" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "czekoladowy precel" +msgstr[1] "czekoladowe precle" +msgstr[2] "czekoladowych precli" +msgstr[3] "czekoladowego precla" #. ~ Description for chocolate-covered pretzel #: lang/json/COMESTIBLE_from_json.py @@ -53043,10 +53387,10 @@ msgstr "Chrupiąca przekąska w czekoladzie." #: lang/json/COMESTIBLE_from_json.py msgid "chocolate bar" msgid_plural "chocolate bars" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tabliczka czekolady" +msgstr[1] "tabliczki czekolady" +msgstr[2] "tabliczek czekolady" +msgstr[3] "tabliczki czekolady" #. ~ Description for chocolate bar #: lang/json/COMESTIBLE_from_json.py @@ -53061,7 +53405,7 @@ msgstr[1] "pianki żelowe" msgstr[2] "pianki żelowe" msgstr[3] "pianki żelowe" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -53075,7 +53419,7 @@ msgstr[1] "s'more" msgstr[2] "s'more" msgstr[3] "s'more" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -53111,12 +53455,12 @@ msgstr "Garść cukierków z nadzieniem czekoladowym." #: lang/json/COMESTIBLE_from_json.py msgid "chewy candy" msgid_plural "chewy candy" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "cukierek żujka" +msgstr[1] "cukierki żujki" +msgstr[2] "cukierków żujek" +msgstr[3] "cukierka żujka" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "Garść kolorowych owocowych cukierków do żucia." @@ -53124,17 +53468,17 @@ msgstr "Garść kolorowych owocowych cukierków do żucia." #: lang/json/COMESTIBLE_from_json.py msgid "gummy candy" msgid_plural "gummy candy" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "cukierek żelek" +msgstr[1] "cukierki żelki" +msgstr[2] "cukierków żelków" +msgstr[3] "cukierka żelka" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "Garść kolorowych żelków o smaku owoców lub słodzonych napoi." -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -53176,10 +53520,10 @@ msgstr "Garść czekoladek w kształcie krów." #: lang/json/COMESTIBLE_from_json.py msgid "licorice" msgid_plural "licorices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "lukrecja" +msgstr[1] "lukrecje" +msgstr[2] "lukrecji" +msgstr[3] "lukrecji" #. ~ Description for licorice #: lang/json/COMESTIBLE_from_json.py @@ -53195,7 +53539,7 @@ msgstr[1] "słomki ze cukierkowym proszkiem" msgstr[2] "słomki ze cukierkowym proszkiem" msgstr[3] "słomki ze cukierkowym proszkiem" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -53222,10 +53566,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "graham cracker" msgid_plural "graham crackers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "krakers graham" +msgstr[1] "krakersy grahamki" +msgstr[2] "krakersów grahamek" +msgstr[3] "krakersa grahamka" #. ~ Description for graham cracker #: lang/json/COMESTIBLE_from_json.py @@ -53239,10 +53583,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "graham cracker chunk" msgid_plural "graham cracker chunks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "okruch krakersa grahamka" +msgstr[1] "okruchy krakersa grahamka" +msgstr[2] "okruchów krakersa grahamka" +msgstr[3] "okrucha krakersa grahamka" #. ~ Description for graham cracker chunk #: lang/json/COMESTIBLE_from_json.py @@ -53290,7 +53634,7 @@ msgstr[1] "syrop klonowy" msgstr[2] "syrop klonowy" msgstr[3] "syrop klonowy" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -53306,7 +53650,7 @@ msgstr[1] "syrop z buraków cukrowych" msgstr[2] "syrop z buraków cukrowych" msgstr[3] "syrop z buraków cukrowych" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -53318,10 +53662,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cake" msgid_plural "cakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ciasto" +msgstr[1] "ciasta" +msgstr[2] "ciast" +msgstr[3] "ciasta" #. ~ Description for cake #: lang/json/COMESTIBLE_from_json.py @@ -53348,10 +53692,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chocolate-covered coffee bean" msgid_plural "chocolate-covered coffee beans" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kawa w czekoladzie" +msgstr[1] "kawy w czekoladzie" +msgstr[2] "kaw w czekoladzie" +msgstr[3] "kawy w czekoladzie" #. ~ Description for chocolate-covered coffee bean #: lang/json/COMESTIBLE_from_json.py @@ -53370,7 +53714,7 @@ msgstr[1] "frytki z fast foodu" msgstr[2] "frytki z fast foodu" msgstr[3] "frytki z fast foodu" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "Frytki ziemniaczane, w stylu fast food. Jakimś cudem wciąż jadalne." @@ -53383,7 +53727,7 @@ msgstr[1] "frytki" msgstr[2] "frytki" msgstr[3] "frytki" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -53405,12 +53749,12 @@ msgstr "Garść miękkich czekoladek wypełnionych miętowym nadzieniem… mniam #: lang/json/COMESTIBLE_from_json.py msgid "Necco wafers" msgid_plural "Necco wafers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wafelki Necco" +msgstr[1] "wafelki Necco" +msgstr[2] "wafelków Necco" +msgstr[3] "wafelka Necco" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -53422,10 +53766,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "candy cigarette" msgid_plural "candy cigarettes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "cukierek papieros" +msgstr[1] "cukierki papierosy" +msgstr[2] "cukierków papierosów" +msgstr[3] "cukierka papierosa" #. ~ Description for candy cigarette #: lang/json/COMESTIBLE_from_json.py @@ -53444,8 +53788,8 @@ msgstr[1] "karmele" msgstr[2] "karmeli" msgstr[3] "karmelu" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "Nieco karmelu. Niezbyt zdrowy." @@ -53453,12 +53797,12 @@ msgstr "Nieco karmelu. Niezbyt zdrowy." #: lang/json/COMESTIBLE_from_json.py msgid "caramel apple" msgid_plural "caramel apple" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jabłko w karmelu" +msgstr[1] "jabłka w karmelu" +msgstr[2] "jabłek w karmelu" +msgstr[3] "jabłka w karmelu" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "Założę się, że nie poprzestaniesz na jednym." @@ -53471,7 +53815,7 @@ msgstr[1] "czipsy tortilla" msgstr[2] "czipsy tortilla" msgstr[3] "czipsy tortilla" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -53488,7 +53832,7 @@ msgstr[1] "serowe nachos" msgstr[2] "serowych nachos" msgstr[3] "serowych nachos" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -53505,8 +53849,7 @@ msgstr[1] "mięsne nachos" msgstr[2] "mięsnych nachos" msgstr[3] "mięsnych nachos" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" @@ -53515,18 +53858,16 @@ msgstr[1] "niño nachos" msgstr[2] "niño nachos" msgstr[3] "niño nachos" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "nachos nibelungów" +msgstr[1] "nachosy nibelungów" +msgstr[2] "nachosów nibelungów" +msgstr[3] "nachosa nibelungów" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" @@ -53535,7 +53876,7 @@ msgstr[1] "nachos con chupacabra" msgstr[2] "nachos con chupacabra" msgstr[3] "nachos con chupacabra" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -53552,8 +53893,8 @@ msgstr[1] "mięsne nachos z serem" msgstr[2] "mięsnych nachos z serem" msgstr[3] "mięsnych nachos z serem" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" @@ -53562,18 +53903,18 @@ msgstr[1] "niño nachos z serem" msgstr[2] "niño nachos z serem" msgstr[3] "niño nachos z serem" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "nachos nibelungów z serem" +msgstr[1] "nachosy nibelungów z serem" +msgstr[2] "nachosów nibelungów z serem" +msgstr[3] "nachosa nibelungów z serem" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" @@ -53582,7 +53923,7 @@ msgstr[1] "serowe nachos con chupacabra" msgstr[2] "serowych nachos con chupacabra" msgstr[3] "serowych nachos con chupacabra" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -53594,12 +53935,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "vegetarian nachos" msgid_plural "vegetarian nachos" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wegetariańskie nachos" +msgstr[1] "wegetariańskie nachosy" +msgstr[2] "wegetariańskich nachosów" +msgstr[3] "wegetariańskiego nachosa" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -53611,12 +53952,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "vegetarian nachos with cheese" msgid_plural "vegetarian nachos with cheese" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wegetariańskie nachos z serem" +msgstr[1] "wegetariańskie nachosy z serem" +msgstr[2] "wegetariańskich nachosów z serem" +msgstr[3] "wegetariańskiego nachosa z serem" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -53641,10 +53982,10 @@ msgstr "Solona i suszona wieprzowina. Smaczna ale wzmaga pragnienie." #: lang/json/COMESTIBLE_from_json.py msgid "microwave burrito" msgid_plural "microwave burritos" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "burrito z mikrofali" +msgstr[1] "burrita z mikrofali" +msgstr[2] "burrito z mikrofali" +msgstr[3] "burrita z mikrofali" #. ~ Description for microwave burrito #: lang/json/COMESTIBLE_from_json.py @@ -53658,10 +53999,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "uncooked TV dinner" msgid_plural "uncooked TV dinners" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowe danie gotowe" +msgstr[1] "surowe dania gotowe" +msgstr[2] "surowych dań gotowych" +msgstr[3] "surowego dania gotowego" #. ~ Description for uncooked TV dinner #: lang/json/COMESTIBLE_from_json.py @@ -53675,10 +54016,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cooked TV dinner" msgid_plural "cooked TV dinners" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "podgrzane danie gotowe" +msgstr[1] "podgrzane dania gotowe" +msgstr[2] "podgrzanych dań gotowych" +msgstr[3] "podgrzanego dania gotowego" #. ~ Description for cooked TV dinner #: lang/json/COMESTIBLE_from_json.py @@ -53692,10 +54033,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "deep-fried chicken" msgid_plural "deep-fried chickens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kurczak smażony w głębokim tłuszczu" +msgstr[1] "kurczaki smażone w głębokim tłuszczu" +msgstr[2] "kurczaków smażonych w głębokim tłuszczu" +msgstr[3] "kurczaka smażonego w głębokim tłuszczu" #. ~ Description for deep-fried chicken #: lang/json/COMESTIBLE_from_json.py @@ -53710,7 +54051,7 @@ msgstr[1] "chili dogi" msgstr[2] "chili dogi" msgstr[3] "chili dogi" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "Hot dog serwowany z chilli con carne jako dodatek. Mniam!" @@ -53723,7 +54064,7 @@ msgstr[1] "surowe kukurydziane hot dogi" msgstr[2] "surowe kukurydziane hot dogi" msgstr[3] "surowe kukurydziane hot dogi" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -53735,10 +54076,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cooked corn dog" msgid_plural "cooked corn dogs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowany kukurydziany hot dog" +msgstr[1] "gotowane kukurydziane hot dogi" +msgstr[2] "gotowanych kukurydzianych hot dogów" +msgstr[3] "gotowanego kukurydzianego hot doga" #. ~ Description for cooked corn dog #: lang/json/COMESTIBLE_from_json.py @@ -53752,10 +54093,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "homemade corn dog" msgid_plural "homemade corn dogs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "domowy kukurydziany hot dog" +msgstr[1] "domowe kukurydziane hot dogi" +msgstr[2] "domowych kukurydzianych hot dogów" +msgstr[3] "domowego kukurydzianego hot doga" #. ~ Description for homemade corn dog #: lang/json/COMESTIBLE_from_json.py @@ -53786,10 +54127,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chocolate waffle" msgid_plural "chocolate waffles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gofr z czekoladą" +msgstr[1] "gofry z czekoladą" +msgstr[2] "gofrów z czekoladą" +msgstr[3] "gofra z czekoladą" #. ~ Description for chocolate waffle #: lang/json/COMESTIBLE_from_json.py @@ -53802,10 +54143,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cheese spread" msgid_plural "cheese spreads" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ser topiony" +msgstr[1] "sery topione" +msgstr[2] "serów topionych" +msgstr[3] "sera topionego" #. ~ Description for cheese spread #: lang/json/COMESTIBLE_from_json.py @@ -53820,7 +54161,7 @@ msgstr[1] "frytki z serem" msgstr[2] "frytki z serem" msgstr[3] "frytki z serem" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "Frytki ziemniaczane z roztopionym żółtym serem na wierzchu." @@ -53828,10 +54169,10 @@ msgstr "Frytki ziemniaczane z roztopionym żółtym serem na wierzchu." #: lang/json/COMESTIBLE_from_json.py msgid "onion ring" msgid_plural "onion rings" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "krążek cebulowy" +msgstr[1] "krążki cebulowe" +msgstr[2] "krążków cebulowych" +msgstr[3] "krążka cebulowego" #. ~ Description for onion ring #: lang/json/COMESTIBLE_from_json.py @@ -53841,10 +54182,10 @@ msgstr "Smażone plasterki cebuli. Chrupiące i pyszne." #: lang/json/COMESTIBLE_from_json.py msgid "uncooked hot dog" msgid_plural "uncooked hot dogs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowy hot dog" +msgstr[1] "surowe hot dogi" +msgstr[2] "surowych hot dogów" +msgstr[3] "surowego hot doga" #. ~ Description for uncooked hot dog #: lang/json/COMESTIBLE_from_json.py @@ -53858,10 +54199,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "campfire hot dog" msgid_plural "campfire hot dogs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "hot dog z ogniska" +msgstr[1] "hot dogi z ogniska" +msgstr[2] "hot dogów z ogniska" +msgstr[3] "hot doga z ogniska" #. ~ Description for campfire hot dog #: lang/json/COMESTIBLE_from_json.py @@ -53875,10 +54216,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cooked hot dog" msgid_plural "cooked hot dogs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowany hot dog" +msgstr[1] "gotowane hot dogi" +msgstr[2] "gotowanych hot dogów" +msgstr[3] "gotowanego hot doga" #. ~ Description for cooked hot dog #: lang/json/COMESTIBLE_from_json.py @@ -53892,10 +54233,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "new york wiener" msgid_plural "new york wieners" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "parówka nowojorska" +msgstr[1] "parówki nowojorskie" +msgstr[2] "parówek nowojorskich" +msgstr[3] "parówki nowojorskiej" #. ~ Description for new york wiener #: lang/json/COMESTIBLE_from_json.py @@ -53909,10 +54250,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "malted milk ball" msgid_plural "malted milk balls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "słodowana mleczna kulka" +msgstr[1] "i... gotowe" +msgstr[2] "słodowanych mlecznych kulek" +msgstr[3] "słodowanej mlecznej kulki" #. ~ Description for malted milk ball #: lang/json/COMESTIBLE_from_json.py @@ -53927,13 +54268,12 @@ msgstr "" msgctxt "candy-coated peanuts" msgid "candy-coated peanuts" msgid_plural "candy-coated peanuts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść słodkich fistaszków" +msgstr[1] "garście słodkich fistaszków" +msgstr[2] "garści słodkich fistaszków" +msgstr[3] "garści słodkich fistaszków" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -53944,10 +54284,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "freeze-dried meal" msgid_plural "freeze-dried meals" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "liofilizowany posiłek" +msgstr[1] "liofilizowane posiłki" +msgstr[2] "liofilizowanych posiłków" +msgstr[3] "liofilizowanego posiłku" #. ~ Description for freeze-dried meal #: lang/json/COMESTIBLE_from_json.py @@ -53961,10 +54301,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "rehydrated freeze-dried meal" msgid_plural "rehydrated freeze-dried meals" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "nawodniony liofilizowany posiłek" +msgstr[1] "nawodnione liofilizowane posiłki" +msgstr[2] "nawodnionych liofilizowanych posiłków" +msgstr[3] "nawodnionego liofilizowanego posiłku" #. ~ Description for rehydrated freeze-dried meal #: lang/json/COMESTIBLE_from_json.py @@ -53974,10 +54314,10 @@ msgstr "To nawodniony posiłek na okazję biwaku lub wypraw w dzicz." #: lang/json/COMESTIBLE_from_json.py msgid "military chocolate bar" msgid_plural "military chocolate bars" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wojskowa tabliczka czekolady" +msgstr[1] "wojskowe tabliczki czekolady" +msgstr[2] "wojskowych tabliczek czekolady" +msgstr[3] "wojskowej tabliczki czekolady" #. ~ Description for military chocolate bar #: lang/json/COMESTIBLE_from_json.py @@ -53993,10 +54333,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "gelatin dessert powder" msgid_plural "gelatin dessert powders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "galaretka deserowa w proszku" +msgstr[1] "galaretki deserowe w proszku" +msgstr[2] "galaretek deserowych w proszku" +msgstr[3] "galaretki deserowej w proszku" #. ~ Description for gelatin dessert powder #: lang/json/COMESTIBLE_from_json.py @@ -54010,10 +54350,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "unflavored gelatin dessert" msgid_plural "unflavored gelatin desserts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "naturalna galaretka deserowa" +msgstr[1] "naturalne galaretki deserowe" +msgstr[2] "naturalnych galaretek deserowych" +msgstr[3] "naturalnej galaretki deserowej" #. ~ Description for unflavored gelatin dessert #: lang/json/COMESTIBLE_from_json.py @@ -54027,10 +54367,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "processed gelatin dessert" msgid_plural "processed gelatin desserts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "przetworzona galaretka deserowa" +msgstr[1] "przetworzona galaretka deserowa" +msgstr[2] "przetworzone galaretki deserowe" +msgstr[3] "przetworzonej galaretki deserowej" #. ~ Description for processed gelatin dessert #: lang/json/COMESTIBLE_from_json.py @@ -54044,10 +54384,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "homemade gelatin dessert" msgid_plural "homemade gelatin desserts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "domowa galaretka deserowa" +msgstr[1] "domowe galaretki deserowe" +msgstr[2] "domowych galaretek deserowych" +msgstr[3] "domowej galaretki deserowej" #. ~ Description for homemade gelatin dessert #: lang/json/COMESTIBLE_from_json.py @@ -54061,10 +54401,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fruit filled gelatin dessert" msgid_plural "fruit filled gelatin desserts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "galaretka deserowa z owocami" +msgstr[1] "galaretki deserowe z owocami" +msgstr[2] "galaretek deserowych z owocami" +msgstr[3] "galaretki deserowej z owocami" #. ~ Description for fruit filled gelatin dessert #: lang/json/COMESTIBLE_from_json.py @@ -54078,10 +54418,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "vegan gelatin dessert" msgid_plural "vegan gelatin desserts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wegańska galaretka deserowa" +msgstr[1] "wegańskie galaretki deserowe" +msgstr[2] "wegańskich galaretek deserowych" +msgstr[3] "wegańskiej galaretki deserowej" #. ~ Description for vegan gelatin dessert #: lang/json/COMESTIBLE_from_json.py @@ -54097,10 +54437,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fruit filled vegan gelatin dessert" msgid_plural "fruit filled vegan gelatin desserts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wegańska galaretka deserowa z owocami" +msgstr[1] "wegańskie galaretki deserowe z owocami" +msgstr[2] "wegańskich galaretek deserowych z owocami" +msgstr[3] "wegańskiej galaretki deserowej z owocami" #. ~ Description for fruit filled vegan gelatin dessert #: lang/json/COMESTIBLE_from_json.py @@ -54116,49 +54456,43 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "raw sausage" msgid_plural "raw sausages" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowa kiełbasa" +msgstr[1] "surowe kiełbasy" +msgstr[2] "surowych kiełbas" +msgstr[3] "surowej kiełbasy" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowa kiełbasa z cieniasa" +msgstr[1] "surowe kiełbasy z cieniasa" +msgstr[2] "surowych kiełbas z cieniasa" +msgstr[3] "surowej kiełbasy z cieniasa" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +msgstr[0] "surowa na-kieł-basa" +msgstr[1] "surowe na-kieł-basy" +msgstr[2] "surowych na-kieł-bas" +msgstr[3] "surowej na-kieł-basy" + +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" msgid_plural "sinister %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "złowieszcza %s" +msgstr[1] "złowieszcze %s" +msgstr[2] "złowieszczych %s" +msgstr[3] "złowieszczego %s" #. ~ Description for raw sausage #: lang/json/COMESTIBLE_from_json.py @@ -54168,30 +54502,29 @@ msgstr "Swojska surowa kiełbasa, gotowa do wędzenia lub ugotowania." #: lang/json/COMESTIBLE_from_json.py msgid "smoked sausage" msgid_plural "smoked sausages" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wędzona kiełbasa" +msgstr[1] "wędzone kiełbasy" +msgstr[2] "wędzonych kiełbas" +msgstr[3] "wędzonej kiełbasy" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wędzona kiełbasa z cieniasa" +msgstr[1] "wędzone kiełbasy z cieniasa" +msgstr[2] "wędzonych kiełbas z cieniasa" +msgstr[3] "wędzonej kiełbasy z cieniasa" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" msgid_plural "smoked killbasas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wędzona na-kieł-basa" +msgstr[1] "wędzone na-kieł-basy" +msgstr[2] "wędzonych na-kieł-bas" +msgstr[3] "wędzonej na-kieł-basy" #. ~ Description for smoked sausage #: lang/json/COMESTIBLE_from_json.py @@ -54201,30 +54534,29 @@ msgstr "Swojska kiełbasa wędzona dla długotrwałej zdatności do spożycia." #: lang/json/COMESTIBLE_from_json.py msgid "cooked sausage" msgid_plural "cooked sausages" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowana kiełbasa" +msgstr[1] "gotowane kiełbasy" +msgstr[2] "gotowanych kiełbas" +msgstr[3] "gotowanej kiełbasy" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowana kiełbasa z cieniasa" +msgstr[1] "gotowane kiełbasy z cieniasa" +msgstr[2] "gotowanych kiełbas z cieniasa" +msgstr[3] "gotowanej kiełbasy z cieniasa" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" msgid_plural "cooked killbasas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowana na-kieł-basa" +msgstr[1] "gotowane na-kieł-basy" +msgstr[2] "gotowanych na-kieł-bas" +msgstr[3] "gotowanej na-kieł-basy" #. ~ Description for cooked sausage #: lang/json/COMESTIBLE_from_json.py @@ -54247,40 +54579,38 @@ msgstr "Słodkie i smakowite kiełbaski. Zjedz póki świeże." #: lang/json/COMESTIBLE_from_json.py msgid "bratwurst" msgid_plural "bratwursts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kiełbasa grillowa" +msgstr[1] "kiełbasy grillowe" +msgstr[2] "kiełbas grillowych" +msgstr[3] "kiełbasy grillowej" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "grillowa kiełbasa z cieniasa" +msgstr[1] "grillowe kiełbasy z cieniasa" +msgstr[2] "grillowych kiełbas z cieniasa" +msgstr[3] "grillowej kiełbasy z cieniasa" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "frankenfurterka" +msgstr[1] "frankenfurterki" +msgstr[2] "frankenfurterek" +msgstr[3] "frankenfurterki" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" msgid_plural "baleful %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "feralna %s" +msgstr[1] "feralne %s" +msgstr[2] "feralnych %s" +msgstr[3] "feralnej %s" #. ~ Description for bratwurst #: lang/json/COMESTIBLE_from_json.py @@ -54294,12 +54624,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "royal beef" msgid_plural "royal beef" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wołowina po królewsku" +msgstr[1] "wołowiny po królewsku" +msgstr[2] "wołowin po królewsku" +msgstr[3] "wołowiny po królewsku" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -54328,10 +54658,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "wasteland sausage" msgid_plural "wasteland sausages" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kiełbasa z pustkowi" +msgstr[1] "kiełbasy z pustkowi" +msgstr[2] "kiełbas z pustkowi" +msgstr[3] "kiełbasy z pustkowi" #. ~ Description for wasteland sausage #: lang/json/COMESTIBLE_from_json.py @@ -54345,10 +54675,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "raw wasteland sausage" msgid_plural "raw wasteland sausages" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowa kiełbasa z pustkowi" +msgstr[1] "surowe kiełbasy z pustkowi" +msgstr[2] "surowych kiełbas z pustkowi" +msgstr[3] "surowej kiełbasy z pustkowi" #. ~ Description for raw wasteland sausage #: lang/json/COMESTIBLE_from_json.py @@ -54366,7 +54696,7 @@ msgstr[1] "skwarki" msgstr[2] "skwarki" msgstr[3] "skwarki" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -54378,23 +54708,22 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "glazed tenderloins" msgid_plural "glazed tenderloins" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "glazurowana polędwica" +msgstr[1] "glazurowane polędwice" +msgstr[2] "glazurowanych polędwic" +msgstr[3] "glazurowanej polędwicy" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" msgid_plural "grisly %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "potworna %s" +msgstr[1] "potworne %s" +msgstr[2] "potwornych %s" +msgstr[3] "potwornej %s" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -54408,42 +54737,40 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "currywurst" msgid_plural "currywursts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kiełbasa curry" +msgstr[1] "kiełbasy curry" +msgstr[2] "kiełbas curry" +msgstr[3] "kiełbasy curry" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" msgid_plural "cheapskate %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%s z cieniasa" +msgstr[1] "%s z cieniasa" +msgstr[2] "%s z cieniasa" +msgstr[3] "%s z cieniasa" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" msgid_plural "confusing %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "niepewna %s" +msgstr[1] "niepewne %s" +msgstr[2] "niepewnych %s" +msgstr[3] "niepewnej %s" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" msgid_plural "bloodcurdling %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "odrażająca %s" +msgstr[1] "odrażające %s" +msgstr[2] "odrażających %s" +msgstr[3] "odrażającej %s" #. ~ Description for currywurst #: lang/json/COMESTIBLE_from_json.py @@ -54455,47 +54782,44 @@ msgstr "Gruba parówa w ketchupie curry. Pikantna i imponująca." #: lang/json/COMESTIBLE_from_json.py msgid "aspic" msgid_plural "aspics" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "galareta" +msgstr[1] "galarety" +msgstr[2] "galaret" +msgstr[3] "galarety" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" msgid_plural "abomination %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wstrętna %s" +msgstr[1] "wstrętne %s" +msgstr[2] "wstrętnych %s" +msgstr[3] "wstrętnej %s" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" msgid_plural "amoral %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "amoralna %s" +msgstr[1] "amoralne %s" +msgstr[2] "amoralnych %s" +msgstr[3] "amoralnej %s" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orwell's %s" msgid_plural "Orwell's %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "orwellowska %s" +msgstr[1] "orwellowske %s" +msgstr[2] "orwellowskich %s" +msgstr[3] "orwellowskiej %s" #. ~ Description for aspic #: lang/json/COMESTIBLE_from_json.py @@ -54514,7 +54838,7 @@ msgstr[1] "odwodnione ryby" msgstr[2] "odwodnionych ryb" msgstr[3] "odwodnionych ryb" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -54531,7 +54855,7 @@ msgstr[1] "nawodnione ryby" msgstr[2] "nawodnionych ryb" msgstr[3] "nawodnionych ryb" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -54548,7 +54872,7 @@ msgstr[1] "peklowana ryba" msgstr[2] "peklowana ryba" msgstr[3] "peklowana ryba" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -54564,7 +54888,7 @@ msgstr[1] "ryba w puszce" msgstr[2] "ryba w puszce" msgstr[3] "ryba w puszce" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -54581,7 +54905,7 @@ msgstr[1] "ryba smażona w panierce" msgstr[2] "ryba smażona w panierce" msgstr[3] "ryba smażona w panierce" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "Pyszna złotobrązowa porcja chrupiącej smażonej rybki." @@ -54589,10 +54913,10 @@ msgstr "Pyszna złotobrązowa porcja chrupiącej smażonej rybki." #: lang/json/COMESTIBLE_from_json.py msgid "crab cake" msgid_plural "crab cakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kotlecik krabowy" +msgstr[1] "kotleciki krabowe" +msgstr[2] "kotlecików krabowych" +msgstr[3] "kotlecika krabowego" #. ~ Description for crab cake #: lang/json/COMESTIBLE_from_json.py @@ -54602,10 +54926,10 @@ msgstr "Pyszne ciastko smażone w głębokim tłuszczu pełne krabiego mięsa." #: lang/json/COMESTIBLE_from_json.py msgid "stuffed clam" msgid_plural "stuffed clams" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "nadziewana małża" +msgstr[1] "nadziewane małże" +msgstr[2] "nadziewanych małż" +msgstr[3] "nadziewanej małży" #. ~ Description for stuffed clam #: lang/json/COMESTIBLE_from_json.py @@ -54615,21 +54939,20 @@ msgstr "Smażone małże nadziewane bułką tartą." #: lang/json/COMESTIBLE_from_json.py msgid "lunch meat" msgid_plural "lunch meats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wędlina" +msgstr[1] "wędliny" +msgstr[2] "wędlin" +msgstr[3] "wędliny" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" msgid_plural "loathsome %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "okropna %s" +msgstr[1] "okropne %s" +msgstr[2] "okropnych %s" +msgstr[3] "okropnej %s" #. ~ Description for lunch meat #: lang/json/COMESTIBLE_from_json.py @@ -54643,44 +54966,42 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "bologna" msgid_plural "bologna" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mortadela" +msgstr[1] "mortadele" +msgstr[2] "mortadel" +msgstr[3] "mortadeli" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" msgid_plural "brat %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%s z menela" +msgstr[1] "%s z menela" +msgstr[2] "%s z menela" +msgstr[3] "%s z menela" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" msgid_plural "Tumnis %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%s z nieprzyjaciela" +msgstr[1] "%s z nieprzyjaciela" +msgstr[2] "%s z nieprzyjaciela" +msgstr[3] "%s z nieprzyjaciela" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" msgid_plural "bleak %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "posępna %s" +msgstr[1] "posępne %s" +msgstr[2] "posępnych %s" +msgstr[3] "posępnej %s" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -54694,10 +55015,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "lutefisk" msgid_plural "lutefisks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "lutefisk" +msgstr[1] "lutefiski" +msgstr[2] "lutefisków" +msgstr[3] "lutefiska" #. ~ Description for lutefisk #: lang/json/COMESTIBLE_from_json.py @@ -54718,7 +55039,7 @@ msgstr[1] "tuszonki" msgstr[2] "tuszonek" msgstr[3] "tuszonki" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -54732,10 +55053,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "holy SPAM of debugging" msgid_plural "holy SPAMs of debugging" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "święty SPAM debuggowania" +msgstr[1] "święte SPAMy debuggowania" +msgstr[2] "świętych SPAMów debuggowania" +msgstr[3] "świętego SPAMu debuggowania" #. ~ Description for holy SPAM of debugging #: lang/json/COMESTIBLE_from_json.py @@ -54763,41 +55084,39 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "sausage gravy" msgid_plural "sausage gravies" -msgstr[0] "zupa gulaszowa" -msgstr[1] "zupa gulaszowa" -msgstr[2] "zupa gulaszowa" -msgstr[3] "zupa gulaszowa" +msgstr[0] "zasmażka na kiełbasie" +msgstr[1] "zasmażki na kiełbasie" +msgstr[2] "zasmażek na kiełbasie" +msgstr[3] "zasmażki na kiełbasie" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" -msgstr[0] "ludzka gulaszowa" -msgstr[1] "ludzka gulaszowa" -msgstr[2] "ludzka gulaszowa" -msgstr[3] "ludzka gulaszowa" +msgstr[0] "zasmażka na kiełbasie z cieniasa" +msgstr[1] "zasmażki na kiełbasie z cieniasa" +msgstr[2] "zasmażek na kiełbasie z cieniasa" +msgstr[3] "zasmażki na kiełbasie z cieniasa" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zasmażka na-kieł-basie" +msgstr[1] "zasmażki na-kieł-basie" +msgstr[2] "zasmażek na-kieł-basie" +msgstr[3] "zasmażki na-kieł-basie" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" msgid_plural "ghastly %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "upiorna %s" +msgstr[1] "upiorne %s" +msgstr[2] "upiornych %s" +msgstr[3] "upiornej %s" #. ~ Description for sausage gravy #: lang/json/COMESTIBLE_from_json.py @@ -54811,44 +55130,42 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pemmican" msgid_plural "pemmican" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pemikan" +msgstr[1] "pemikany" +msgstr[2] "pemikanów" +msgstr[3] "pemikana" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" msgid_plural "prepper %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%s z pepika" +msgstr[1] "%s z pepika" +msgstr[2] "%s z pepika" +msgstr[3] "%s z pepika" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" msgid_plural "Orley %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%s z elfika" +msgstr[1] "%s z elfika" +msgstr[2] "%s z elfika" +msgstr[3] "%s z elfika" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" msgid_plural "pernicious %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zgubny %s" +msgstr[1] "zgubne %s" +msgstr[2] "zgubnych %s" +msgstr[3] "zgubnego %s" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -54862,41 +55179,39 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "hamburger helper" msgid_plural "hamburger helpers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "hamburgerowy pomocnik" +msgstr[1] "hamburgerowe pomocniki" +msgstr[2] "hamburgerowych pomocników" +msgstr[3] "hamburgerowego pomocnika" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "żulerski pomocnik" +msgstr[1] "żulerskie pomocniki" +msgstr[2] "żulerskich pomocników" +msgstr[3] "żulerskiego pomocnika" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" msgid_plural "halfling helper" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "niziołkowy pomocnik" +msgstr[1] "niziołkowe pomocniki" +msgstr[2] "niziołkowych pomocników" +msgstr[3] "niziołkowego pomocnika" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" msgid_plural "heinous %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ohydny %s" +msgstr[1] "ohydne %s" +msgstr[2] "ohydnych %s" +msgstr[3] "ohydnego %s" #. ~ Description for hamburger helper #: lang/json/COMESTIBLE_from_json.py @@ -54910,10 +55225,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "ravioli" msgid_plural "raviolis" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pierożek ravioli" +msgstr[1] "pierożki ravioli" +msgstr[2] "pierożków ravioli" +msgstr[3] "pierożka ravioli" #. ~ Description for ravioli #: lang/json/COMESTIBLE_from_json.py @@ -54928,35 +55243,33 @@ msgstr[1] "chili con carne" msgstr[2] "chili con carne" msgstr[3] "chili con carne" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "chili con koleś" +msgstr[1] "chili con kolesie" +msgstr[2] "chili con kolesi" +msgstr[3] "chili con kolesia" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "chili con marne" +msgstr[1] "chili con marne" +msgstr[2] "chili con marne" +msgstr[3] "chili con marne" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "chili con chupacabra" +msgstr[1] "chili con chupacabra" +msgstr[2] "chili con chupacabra" +msgstr[3] "chilis con chupacabra" #. ~ Description for chili con carne #: lang/json/COMESTIBLE_from_json.py @@ -54971,7 +55284,7 @@ msgstr[1] "wieprzowina z fasolą" msgstr[2] "wieprzowina z fasolą" msgstr[3] "wieprzowina z fasolą" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -54988,7 +55301,7 @@ msgstr[1] "tuńczyk w puszce" msgstr[2] "tuńczyk w puszce" msgstr[3] "tuńczyk w puszce" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "Teraz o 95 procent mniej delfina." @@ -54996,12 +55309,12 @@ msgstr "Teraz o 95 procent mniej delfina." #: lang/json/COMESTIBLE_from_json.py msgid "canned salmon" msgid_plural "canned salmon" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "łosoś w puszce" +msgstr[1] "łososie w puszce" +msgstr[2] "łososi w puszce" +msgstr[3] "łososia w puszce" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "Jasnoróżowa pasta rybna w puszce." @@ -55009,10 +55322,10 @@ msgstr "Jasnoróżowa pasta rybna w puszce." #: lang/json/COMESTIBLE_from_json.py msgid "canned chicken" msgid_plural "canned chickens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kurczak w puszce" +msgstr[1] "kurczaki w puszce" +msgstr[2] "kurczaków w puszce" +msgstr[3] "kurczaka w puszce" #. ~ Description for canned chicken #: lang/json/COMESTIBLE_from_json.py @@ -55022,12 +55335,12 @@ msgstr "Białe mięso kurczaka w puszce." #: lang/json/COMESTIBLE_from_json.py msgid "pickled herring" msgid_plural "pickled herring" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "śledź w zalewie" +msgstr[1] "śledzie w zalewie" +msgstr[2] "śledzi w zalewie" +msgstr[3] "śledzia w zalewie" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "Filety śledziowe w pikantnej zalewie przypominającej biały sos." @@ -55035,10 +55348,10 @@ msgstr "Filety śledziowe w pikantnej zalewie przypominającej biały sos." #: lang/json/COMESTIBLE_from_json.py msgid "canned clam" msgid_plural "canned clams" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "małż w puszce" +msgstr[1] "małże w puszce" +msgstr[2] "małży w puszce" +msgstr[3] "małża w puszce" #. ~ Description for canned clam #: lang/json/COMESTIBLE_from_json.py @@ -55048,30 +55361,28 @@ msgstr "Siekane małże w wodzie." #: lang/json/COMESTIBLE_from_json.py msgid "clam chowder" msgid_plural "clam chowders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "potrawka z małży" +msgstr[1] "potrawki z małży" +msgstr[2] "potrawek z małży" +msgstr[3] "potrawki z małży" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "potrawka z mięsa" +msgstr[1] "potrawki z mięsa" +msgstr[2] "potrawek z mięsa" +msgstr[3] "potrawki z mięsa" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "potrawka z monstrum" +msgstr[1] "potrawki z monstrum" +msgstr[2] "potrawek z monstrum" +msgstr[3] "potrawki z monstrum" #. ~ Description for clam chowder #: lang/json/COMESTIBLE_from_json.py @@ -55090,17 +55401,16 @@ msgstr[1] "fasolka po bretońsku" msgstr[2] "fasolka po bretońsku" msgstr[3] "fasolka po bretońsku" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ork z fasolą" +msgstr[1] "orki z fasolą" +msgstr[2] "orków z fasolą" +msgstr[3] "orka z fasolą" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "Wolno duszona fasolka z mięsem. Bardzo smaczna i sycąca." @@ -55113,17 +55423,16 @@ msgstr[1] "ryż smażony z mięsem" msgstr[2] "ryż smażony z mięsem" msgstr[3] "ryż smażony z mięsem" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ryż smażony z mutantem" +msgstr[1] "porcje ryżu smażonego z mutantem" +msgstr[2] "porcje ryżu smażonego z mutantem" +msgstr[3] "porcji ryżu smażonego z mutantem" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "Ryż smażony z mięsem w stylu wschodniej kuchni. Smaczny i pożywny." @@ -55136,17 +55445,17 @@ msgstr[1] "luksusowy ryż z fasolą" msgstr[2] "luksusowy ryż z fasolą" msgstr[3] "luksusowy ryż z fasolą" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "\"luksusowy\" ryż z fasolą" +msgstr[1] "\"luksusowe\" porcje ryżu z fasolą" +msgstr[2] "\"luksusowych\" porcji ryżu z fasolą" +msgstr[3] "\"luksusowej\" porcji ryżu z fasolą" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -55158,39 +55467,38 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "meat pie" msgid_plural "meat pies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "placek z mięsem" +msgstr[1] "placki z mięsem" +msgstr[2] "placków z mięsem" +msgstr[3] "placka z mięsem" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "placek z sebiksem" +msgstr[1] "placki z sebiksem" +msgstr[2] "placków z sebiksem" +msgstr[3] "placka z sebiksem" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "placek z gadającym zwierzem" +msgstr[1] "placki z gadającym zwierzem" +msgstr[2] "placków z gadającym zwierzem" +msgstr[3] "placka z gadającym zwierzem" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" msgid_plural "malignant %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "szkodliwy %s" +msgstr[1] "szkodliwe %s" +msgstr[2] "szkodliwych %s" +msgstr[3] "szkodliwego %s" #. ~ Description for meat pie #: lang/json/COMESTIBLE_from_json.py @@ -55200,40 +55508,38 @@ msgstr "Pasztecik z mięsem, czyli upieczone ciasto z mięsnym nadzieniem." #: lang/json/COMESTIBLE_from_json.py msgid "meat pizza" msgid_plural "meat pizzas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pizza z mięsem" +msgstr[1] "pizze z mięsem" +msgstr[2] "pizz z mięsem" +msgstr[3] "pizzy z mięsem" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pizza z pozera" +msgstr[1] "pizze z pozera" +msgstr[2] "pizz z pozera" +msgstr[3] "pizzy z pozera" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pizza z lucyfera" +msgstr[1] "pizze z lucyfera" +msgstr[2] "pizz z lucyfera" +msgstr[3] "pizzy z lucyfera" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" msgid_plural "miserable %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "żałosna %s" +msgstr[1] "żałosne %s" +msgstr[2] "żałosnych %s" +msgstr[3] "żałosnej %s" #. ~ Description for meat pizza #: lang/json/COMESTIBLE_from_json.py @@ -55247,10 +55553,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "supreme pizza" msgid_plural "supreme pizzas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pizza supreme" +msgstr[1] "pizze supreme" +msgstr[2] "pizz supreme" +msgstr[3] "pizzy supreme" #. ~ Description for supreme pizza #: lang/json/COMESTIBLE_from_json.py @@ -55265,37 +55571,36 @@ msgstr[1] "luksusowa jajecznica" msgstr[2] "luksusowa jajecznica" msgstr[3] "luksusowa jajecznica" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "luksusowa jajecznica z jajogłowych" +msgstr[1] "luksusowe jajecznice z jajogłowych" +msgstr[2] "luksusowych jajecznic z jajogłowych" +msgstr[3] "luksusowej jajecznicy z jajogłowych" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jajecznica człowieka-ptaka" +msgstr[1] "jajecznice człowieka-ptaka" +msgstr[2] "jajecznic człowieka-ptaka" +msgstr[3] "jajecznicy człowieka-ptaka" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "\"luksusowa\" jajecznica" +msgstr[1] "\"luksusowe\" jajecznice" +msgstr[2] "\"luksusowych\" jajecznic" +msgstr[3] "\"luksusowej\" jajecznicy" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -55307,29 +55612,28 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "canned meat" msgid_plural "canned meats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "puszkowane mięso" +msgstr[1] "puszkowane mięsa" +msgstr[2] "puszkowanych mięs" +msgstr[3] "puszkowanego mięsa" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "plaster pożywki" +msgstr[1] "plastry pożywki" +msgstr[2] "plastrów pożywki" +msgstr[3] "plastra pożywki" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "plaster z rozumnego" +msgstr[1] "plastry z rozumnego" +msgstr[2] "plastrów z rozumnego" +msgstr[3] "plastra z rozumnego" #. ~ Description for canned meat #: lang/json/COMESTIBLE_from_json.py @@ -55343,30 +55647,29 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "salted meat slice" msgid_plural "salted meat slices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "solony plaster mięsa" +msgstr[1] "solone plastry mięsa" +msgstr[2] "solonych plastrów mięsa" +msgstr[3] "solonego plastra mięsa" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "solony plaster prostaka" +msgstr[1] "solone plastry prostaka" +msgstr[2] "solonych plastrów prostaka" +msgstr[3] "solonego plastra prostaka" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" msgid_plural "salted sapient slice" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "solony plaster mądrali" +msgstr[1] "solone plastry mądrali" +msgstr[2] "solonych plastrów mądrali" +msgstr[3] "solonego plastra mądrali" #. ~ Description for salted meat slice #: lang/json/COMESTIBLE_from_json.py @@ -55381,38 +55684,36 @@ msgstr[1] "spaghetti bolognese" msgstr[2] "spaghetti bolognese" msgstr[3] "spaghetti bolognese" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "spaghetti ciuloneze" +msgstr[1] "spaghetti ciuloneze" +msgstr[2] "spaghetti ciuloneze" +msgstr[3] "spaghetti ciuloneze" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" msgid_plural "speaking spaghetti" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "spaghetti blablaneze" +msgstr[1] "spaghetti blablaneze" +msgstr[2] "spaghetti blablaneze" +msgstr[3] "spaghetti blablaneze" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" msgid_plural "gnarly %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "niesmaczne %s" +msgstr[1] "niesmaczne %s" +msgstr[2] "niesmaczne %s" +msgstr[3] "niesmaczne %s" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "Spaghetti pokryte gęstym mięsnym sosem. Mniam!" @@ -55420,41 +55721,40 @@ msgstr "Spaghetti pokryte gęstym mięsnym sosem. Mniam!" #: lang/json/COMESTIBLE_from_json.py msgid "lasagne" msgid_plural "lasagnes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "lazania" +msgstr[1] "lazanie" +msgstr[2] "lazanii" +msgstr[3] "lazanii" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" msgid_plural "Luigi %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%s z lenia" +msgstr[1] "%s z lenia" +msgstr[2] "%s z lenia" +msgstr[3] "%s z lenia" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" msgid_plural "Lab %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "łażąca %s" +msgstr[1] "łażące %s" +msgstr[2] "łażących %s" +msgstr[3] "łażącej %s" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" msgid_plural "monster %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "potworna %s" +msgstr[1] "potworne %s" +msgstr[2] "potwornych %s" +msgstr[3] "potwornej %s" #. ~ Description for lasagne #: lang/json/COMESTIBLE_from_json.py @@ -55468,12 +55768,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fried SPAM" msgid_plural "fried SPAM" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pieczona tuszonka" +msgstr[1] "pieczone tuszonki" +msgstr[2] "pieczonych tuszonek" +msgstr[3] "pieczonej tuszonki" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "Po upieczeniu ta tuszonka stała się nawet całkiem smaczna." @@ -55481,43 +55781,41 @@ msgstr "Po upieczeniu ta tuszonka stała się nawet całkiem smaczna." #: lang/json/COMESTIBLE_from_json.py msgid "cheeseburger" msgid_plural "cheeseburgers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "cheeseburger" +msgstr[1] "cheeseburgery" +msgstr[2] "cheeseburgerów" +msgstr[3] "cheeseburgera" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" msgid_plural "chump %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%s z portiera" +msgstr[1] "%s z portiera" +msgstr[2] "%s z portiera" +msgstr[3] "%s z portiera" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "elf %s" msgid_plural "elf %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "elfo%s" +msgstr[1] "elfo%s" +msgstr[2] "elfo%s" +msgstr[3] "elfo%s" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" msgid_plural "chilling %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%s grozy" +msgstr[1] "%s grozy" +msgstr[2] "%s grozy" +msgstr[3] "%s grozy" #. ~ Description for cheeseburger #: lang/json/COMESTIBLE_from_json.py @@ -55531,10 +55829,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "deluxe cheeseburger" msgid_plural "deluxe cheeseburgers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "cheeseburger deluxe" +msgstr[1] "cheeseburgery deluxe" +msgstr[2] "cheeseburgerów deluxe" +msgstr[3] "cheeseburgera deluxe" #. ~ Description for deluxe cheeseburger #: lang/json/COMESTIBLE_from_json.py @@ -55548,40 +55846,38 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "hamburger" msgid_plural "hamburgers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "hamburger" +msgstr[1] "hamburgery" +msgstr[2] "hamburgerów" +msgstr[3] "hamburgera" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "koloburger" +msgstr[1] "koloburgery" +msgstr[2] "koloburgerów" +msgstr[3] "koloburgera" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "elfoburger" +msgstr[1] "elfoburgery" +msgstr[2] "elfoburgerów" +msgstr[3] "elfoburgera" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" msgid_plural "horrible %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "okropny %s" +msgstr[1] "okropne %s" +msgstr[2] "okropnych %s" +msgstr[3] "okropnego %s" #. ~ Description for hamburger #: lang/json/COMESTIBLE_from_json.py @@ -55591,12 +55887,12 @@ msgstr "Kanapka z mielonym mięsem i przyprawami." #: lang/json/COMESTIBLE_from_json.py msgid "sloppy joe" msgid_plural "sloppy joes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kanapka \"sloppy joe\"" +msgstr[1] "kanapki \"sloppy joe\"" +msgstr[2] "kanapek \"sloppy joe\"" +msgstr[3] "kanapki \"sloppy joe\"" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" @@ -55605,26 +55901,24 @@ msgstr[1] "kanapka z trepka" msgstr[2] "kanapka z trepka" msgstr[3] "kanapka z trepka" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kanapka \"dziwny joe\"" +msgstr[1] "kanapki \"dziwny joe\"" +msgstr[2] "kanapek \"dziwny joe\"" +msgstr[3] "kanapki \"dziwny joe\"" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" msgid_plural "suspicious %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "podejrzana %s" +msgstr[1] "podejrzane %s" +msgstr[2] "podejrzanych %s" +msgstr[3] "podejrzanej %s" #. ~ Description for sloppy joe #: lang/json/COMESTIBLE_from_json.py @@ -55638,41 +55932,40 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "taco" msgid_plural "tacos" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "taco" +msgstr[1] "tacos" +msgstr[2] "tacos" +msgstr[3] "taco" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" msgid_plural "tio %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jako %s" +msgstr[1] "jako %s" +msgstr[2] "jako %s" +msgstr[3] "jako %s" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" msgid_plural "talking %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "blabla %s" +msgstr[1] "blabla %s" +msgstr[2] "blabla %s" +msgstr[3] "blabla %s" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" msgid_plural "terrifying %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "straszne %s" +msgstr[1] "straszne %s" +msgstr[2] "strasznych %s" +msgstr[3] "strasznego %s" #. ~ Description for taco #: lang/json/COMESTIBLE_from_json.py @@ -55686,30 +55979,29 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pickled meat" msgid_plural "pickled meats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "peklowane mięso" +msgstr[1] "peklowane mięsa" +msgstr[2] "peklowanych mięs" +msgstr[3] "peklowanego mięsa" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "peklowany punk" +msgstr[1] "peklowane punki" +msgstr[2] "peklowanych punków" +msgstr[3] "peklowanego punka" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" msgid_plural "pickled anthro" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "peklowany człekokształtny" +msgstr[1] "peklowane człekokształtne" +msgstr[2] "peklowanych człekokształtnych" +msgstr[3] "peklowanego człekokształtnego" #. ~ Description for pickled meat #: lang/json/COMESTIBLE_from_json.py @@ -55721,38 +56013,35 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "dehydrated meat" msgid_plural "dehydrated meats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "suszone mięso" +msgstr[1] "suszone mięsa" +msgstr[2] "suszonych mięs" +msgstr[3] "suszonego mięsa" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" msgid_plural "%s, human" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%s, ludzkie" +msgstr[1] "%s, ludzkie" +msgstr[2] "%s, ludzkich" +msgstr[3] "%s, ludzkiego" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" msgid_plural "%s, demihuman" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "%s, półludzkie" +msgstr[1] "%s, półludzkie" +msgstr[2] "%s, półludzkich" +msgstr[3] "%s, półludzkiego" #. ~ Description for dehydrated meat #: lang/json/COMESTIBLE_from_json.py @@ -55766,10 +56055,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "rehydrated meat" msgid_plural "rehydrated meats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "nawodnione mięso" +msgstr[1] "nawodnione mięsa" +msgstr[2] "nawodnionych mięs" +msgstr[3] "nawodnionego mięsa" #. ~ Description for rehydrated meat #: lang/json/COMESTIBLE_from_json.py @@ -55783,22 +56072,21 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "haggis" msgid_plural "haggises" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "haggis" +msgstr[1] "haggisy" +msgstr[2] "haggisów" +msgstr[3] "haggisa" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" msgid_plural "human %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ludzki %s" +msgstr[1] "ludzkie %s" +msgstr[2] "ludzkich %s" +msgstr[3] "ludzkiego %s" #. ~ Description for haggis #: lang/json/COMESTIBLE_from_json.py @@ -55821,7 +56109,7 @@ msgstr[1] "rybne makizushi" msgstr[2] "rybne makizushi" msgstr[3] "rybne makizushi" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -55838,18 +56126,17 @@ msgstr[1] "mięsne temaki" msgstr[2] "mięsne temaki" msgstr[3] "mięsne temaki" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" msgid_plural "troubling %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "niepokojące %s" +msgstr[1] "niepokojące %s" +msgstr[2] "niepokojących %s" +msgstr[3] "niepokojącego %s" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -55866,7 +56153,7 @@ msgstr[1] "sashimi" msgstr[2] "sashimi" msgstr[3] "sashimi" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "Przepyszne plastry cienko krojonej surowej ryby z warzywami." @@ -55874,10 +56161,10 @@ msgstr "Przepyszne plastry cienko krojonej surowej ryby z warzywami." #: lang/json/COMESTIBLE_from_json.py msgid "dehydrated tainted meat" msgid_plural "dehydrated tainted meats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "suszone skażone mięso" +msgstr[1] "suszone skażone mięsa" +msgstr[2] "suszonych skażonych mięs" +msgstr[3] "suszonego skażonego mięsa" #. ~ Description for dehydrated tainted meat #: lang/json/COMESTIBLE_from_json.py @@ -55891,20 +56178,20 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pelmeni" msgid_plural "pelmenis" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pielmeni" +msgstr[1] "pielmeni" +msgstr[2] "pielmeni" +msgstr[3] "pielmeni" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" msgid_plural "perilous %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ryzykowne %s" +msgstr[1] "ryzykowne %s" +msgstr[2] "ryzykownych %s" +msgstr[3] "ryzykownego %s" #. ~ Description for pelmeni #: lang/json/COMESTIBLE_from_json.py @@ -55917,20 +56204,19 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "homemade burrito" msgid_plural "homemade burritos" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "domowe burrito" +msgstr[1] "domowe burrito" +msgstr[2] "domowych burrito" +msgstr[3] "domowego burrito" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "odstręczające burrito" +msgstr[1] "odstręczające burrito" +msgstr[2] "odstręczających burrito" +msgstr[3] "odstręczającego burrito" #. ~ Description for homemade burrito #: lang/json/COMESTIBLE_from_json.py @@ -55946,30 +56232,29 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "raw meatball" msgid_plural "raw meatballs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowy klopsik" +msgstr[1] "surowe klopsiki" +msgstr[2] "surowych klopsików" +msgstr[3] "surowego klopsika" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowy klopsik janosik" +msgstr[1] "surowe klopsiki janosiki" +msgstr[2] "surowych klopsików janosików" +msgstr[3] "surowego klopsika janosika" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" msgid_plural "raw murderballs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowy klopsik korpusik" +msgstr[1] "surowe klopsiki korpusiki" +msgstr[2] "surowych klopsików korpusików" +msgstr[3] "surowego klopsika korpusika" #. ~ Description for raw meatball #: lang/json/COMESTIBLE_from_json.py @@ -55979,29 +56264,28 @@ msgstr "Okrągłe przyprawione mięsne kulki, gotowe do smażenia." #: lang/json/COMESTIBLE_from_json.py msgid "meatball" msgid_plural "meatballs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "klopsik" +msgstr[1] "klopsiki" +msgstr[2] "klopsików" +msgstr[3] "klopsika" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "klopsik janosik" +msgstr[1] "klopsiki janosiki" +msgstr[2] "klopsików janosików" +msgstr[3] "klopsika janosika" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "klopsik korpusik" +msgstr[1] "klopsiki korpusiki" +msgstr[2] "klopsików korpusików" +msgstr[3] "klopsika korpusika" #. ~ Description for meatball #: lang/json/COMESTIBLE_from_json.py @@ -56011,10 +56295,10 @@ msgstr "Usmażone okrągłe przyprawione mięsne kulki. Takie jak mama robiła!" #: lang/json/COMESTIBLE_from_json.py msgid "melatonin tablet" msgid_plural "melatonin tablets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tabletka melatoniny" +msgstr[1] "tabletki melatoniny" +msgstr[2] "tabletek melatoniny" +msgstr[3] "tabletki melatoniny" #. ~ Use action activation_message for melatonin tablet. #: lang/json/COMESTIBLE_from_json.py @@ -56035,17 +56319,17 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "prescription stimulant" msgid_plural "prescription stimulant" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "stymulant na receptę" +msgstr[1] "stymulanty na receptę" +msgstr[2] "stymulantów na receptę" +msgstr[3] "stymulanta na receptę" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "Bierzesz trochę stymulantów." -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -56078,10 +56362,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "epinephrine autoinjector" msgid_plural "epinephrine autoinjectors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "autowstrzykiwacz adrenaliny" +msgstr[1] "autowstrzykiwacze adrenaliny" +msgstr[2] "autowstrzykiwaczy adrenaliny" +msgstr[3] "autowstrzykiwacza adrenaliny" #. ~ Use action activation_message for epinephrine autoinjector. #: lang/json/COMESTIBLE_from_json.py @@ -56107,7 +56391,7 @@ msgstr[1] "antybiotyki" msgstr[2] "antybiotyków" msgstr[3] "antybiotyków" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -56138,12 +56422,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "antiparasitic drug" msgid_plural "antiparasitic drug" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "lek przeciwpasożytniczy" +msgstr[1] "leki przeciwpasożytnicze" +msgstr[2] "leków przeciwpasożytniczych" +msgstr[3] "leku przeciwpasożytniczego" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -56243,7 +56527,7 @@ msgstr[1] "proszek antyseptyczny" msgstr[2] "proszek antyseptyczny" msgstr[3] "proszek antyseptyczny" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -56255,10 +56539,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "caffeinated chewing gum" msgid_plural "caffeinated chewing gums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "guma z kofeiną" +msgstr[1] "gumy z kofeiną" +msgstr[2] "gum z kofeiną" +msgstr[3] "gumy z kofeiną" #. ~ Description for caffeinated chewing gum #: lang/json/COMESTIBLE_from_json.py @@ -56269,10 +56553,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "caffeine pill" msgid_plural "caffeine pills" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tabletka kofeinowa" +msgstr[1] "tabletki kofeinowe" +msgstr[2] "tabletek kofeinowych" +msgstr[3] "tabletki kofeinowej" #. ~ Use action activation_message for caffeine pill. #: lang/json/COMESTIBLE_from_json.py @@ -56291,10 +56575,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chewing tobacco" msgid_plural "chewing tobaccos" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tytoń do żucia" +msgstr[1] "porcje tytoniu do żucia" +msgstr[2] "porcji tytoniu do żucia" +msgstr[3] "porcji tytoniu do żucia" #. ~ Description for chewing tobacco #: lang/json/COMESTIBLE_from_json.py @@ -56314,7 +56598,7 @@ msgstr[1] "woda utleniona" msgstr[2] "woda utleniona" msgstr[3] "woda utleniona" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -56365,10 +56649,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chloroform soaked rag" msgid_plural "chloroform soaked rags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "szmatka nasączona chloroformem" +msgstr[1] "szmatki nasączone chloroformem" +msgstr[2] "szmatek nasączonych chloroformem" +msgstr[3] "szmatki nasączonej chloroformem" #. ~ Description for chloroform soaked rag #: lang/json/COMESTIBLE_from_json.py @@ -56383,12 +56667,12 @@ msgstr[1] "kodeina" msgstr[2] "kodeina" msgstr[3] "kodeina" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "Bierzesz trochę kodeiny." -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -56407,7 +56691,7 @@ msgstr[1] "kokainy" msgstr[2] "kokain" msgstr[3] "kokainy" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -56421,10 +56705,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "methacola" msgid_plural "methacolas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "metakola" +msgstr[1] "metakole" +msgstr[2] "metakoli" +msgstr[3] "metakoli" #. ~ Description for methacola #: lang/json/COMESTIBLE_from_json.py @@ -56464,7 +56748,7 @@ msgstr[1] "kulki bawełny" msgstr[2] "kulki bawełny" msgstr[3] "kulki bawełny" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -56482,12 +56766,12 @@ msgstr[1] "crack" msgstr[2] "crack" msgstr[3] "crack" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "Wypalasz swoje kryształki cracku. Matka byłaby dumna." -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -56504,7 +56788,7 @@ msgstr[1] "nie usypiający syrop na kaszel" msgstr[2] "nie usypiający syrop na kaszel" msgstr[3] "nie usypiający syrop na kaszel" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -56523,7 +56807,7 @@ msgstr[1] "antyseptyki" msgstr[2] "antyseptyków" msgstr[3] "antyseptyku" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "Silny antyseptyk, używany do oczyszczania zainfekowanych ran." @@ -56531,10 +56815,10 @@ msgstr "Silny antyseptyk, używany do oczyszczania zainfekowanych ran." #: lang/json/COMESTIBLE_from_json.py msgid "makeshift antiseptic" msgid_plural "makeshift antiseptics" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "improwizowany antyseptyk" +msgstr[1] "improwizowane antyseptyki" +msgstr[2] "improwizowanych antyseptyków" +msgstr[3] "improwizowanego antyseptyka" #. ~ Description for makeshift antiseptic #: lang/json/COMESTIBLE_from_json.py @@ -56547,12 +56831,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "prescription sedative" msgid_plural "prescription sedative" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "lek uspokajający na receptę" +msgstr[1] "leki uspokajające na receptę" +msgstr[2] "leków uspokajających na receptę" +msgstr[3] "leku uspokajającego na receptę" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -56569,12 +56853,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" -msgstr "" +msgstr "Sztachnąłeś się. Wow to dopiero mordercze terpeny." -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -56598,12 +56882,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" -msgstr "" +msgstr "Sztachnąłeś się woskiem. *kaszlu kaszlu* mocna rzecz!" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -56625,12 +56909,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." -msgstr "" +msgstr "Zaciągasz się złym towarem. Niezbyt dobry pomysł." -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -56650,16 +56934,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." -msgstr "" +msgstr "Zaciągasz się naprawdę złym towarem. Niezbyt dobry pomysł." -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -56679,7 +56961,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -56698,7 +56980,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -56717,7 +56999,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -56737,7 +57019,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -56757,7 +57039,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -56778,7 +57060,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -56799,7 +57081,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -56818,7 +57100,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -56837,12 +57119,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" -msgstr "" +msgstr "Sztachnąłeś się destylatem. Jaaaaaaki gładki..." -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -56869,7 +57151,7 @@ msgstr[3] "" #. ~ Use action activation_message for high quality distillate cartridge. #: lang/json/COMESTIBLE_from_json.py msgid "You hit your dab pen. Sooooo smooth…" -msgstr "" +msgstr "Zaciągasz się z e-szluga. Jaaaaaki gładki..." #. ~ Description for high quality distillate cartridge #: lang/json/COMESTIBLE_from_json.py @@ -56891,10 +57173,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "electronic cigarette" msgid_plural "electronic cigarettes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "elektroniczny papieros" +msgstr[1] "elektroniczne papierosy" +msgstr[2] "elektronicznych papierosów" +msgstr[3] "elektronicznego papierosa" #. ~ Description for electronic cigarette #: lang/json/COMESTIBLE_from_json.py @@ -56951,7 +57233,7 @@ msgstr[1] "guma do żucia" msgstr[2] "guma do żucia" msgstr[3] "guma do żucia" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "Jasnoróżowa bezcukrowa guma do żucia." @@ -56959,10 +57241,10 @@ msgstr "Jasnoróżowa bezcukrowa guma do żucia." #: lang/json/COMESTIBLE_from_json.py msgid "hand-rolled cigarette" msgid_plural "hand-rolled cigarettes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ręcznie zwijany papieros" +msgstr[1] "ręcznie zwijane papierosy" +msgstr[2] "ręcznie zwijanych papierosów" +msgstr[3] "ręcznie zwijanego papierosa" #. ~ Description for hand-rolled cigarette #: lang/json/COMESTIBLE_from_json.py @@ -56983,13 +57265,13 @@ msgstr[1] "heroina" msgstr[2] "heroina" msgstr[3] "heroina" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "Wstrzykujesz działkę." -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -57003,10 +57285,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "potassium iodide tablet" msgid_plural "potassium iodide tablets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tabletka z jodkiem potasu" +msgstr[1] "tabletki z jodkiem potasu" +msgstr[2] "tabletek z jodkiem potasu" +msgstr[3] "tabletki z jodkiem potasu" #. ~ Use action activation_message for potassium iodide tablet. #: lang/json/COMESTIBLE_from_json.py @@ -57042,10 +57324,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pink tab" msgid_plural "pink tabs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "różowa tabletka" +msgstr[1] "różowe tabletki" +msgstr[2] "różowych tabletek" +msgstr[3] "różowej tabletki" #. ~ Use action activation_message for pink tab. #: lang/json/COMESTIBLE_from_json.py @@ -57087,7 +57369,7 @@ msgstr[1] "niskiej jakości metamfetamina" msgstr[2] "niskiej jakości metamfetamina" msgstr[3] "niskiej jakości metamfetamina" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -57106,7 +57388,7 @@ msgstr[1] "wysokiej jakości metamfetaminy" msgstr[2] "wysokiej jakości metamfetamin" msgstr[3] "wysokiej jakości metamfetaminy" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -57156,10 +57438,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "nicotine gum" msgid_plural "nicotine gums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "guma nikotynowa" +msgstr[1] "gumy nikotynowe" +msgstr[2] "gum nikotynowych" +msgstr[3] "gumy nikotynowej" #. ~ Description for nicotine gum #: lang/json/COMESTIBLE_from_json.py @@ -57178,7 +57460,7 @@ msgstr[1] "syrop na kaszel" msgstr[2] "syrop na kaszel" msgstr[3] "syrop na kaszel" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -57190,10 +57472,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "oxycodone" msgid_plural "oxycodones" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tabletka oksykodonu" +msgstr[1] "tabletki oksykodonu" +msgstr[2] "tabletek oksykodonu" +msgstr[3] "tabletki oksykodonu" #. ~ Use action activation_message for oxycodone. #: lang/json/COMESTIBLE_from_json.py @@ -57212,12 +57494,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "sleeping pill" msgid_plural "sleeping pill" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tabletka nasenna" +msgstr[1] "tabletki nasenne" +msgstr[2] "tabletek nasennych" +msgstr[3] "tabletki nasennej" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -57229,10 +57511,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "poppy painkiller" msgid_plural "poppy painkillers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "makowy lek przeciwbólowy" +msgstr[1] "makowe leki przeciwbólowe" +msgstr[2] "makowych leków przeciwbólowych" +msgstr[3] "makowego leku przeciwbólowego" #. ~ Use action activation_message for poppy painkiller. #: lang/json/COMESTIBLE_from_json.py @@ -57253,10 +57535,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "poppy sleep" msgid_plural "poppy sleeps" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "makowy usypiacz" +msgstr[1] "makowe usypiacze" +msgstr[2] "makowych usypiaczy" +msgstr[3] "makowego usypiacza" #. ~ Description for poppy sleep #: lang/json/COMESTIBLE_from_json.py @@ -57275,7 +57557,7 @@ msgstr[1] "makowy syrop na kaszel" msgstr[2] "makowy syrop na kaszel" msgstr[3] "makowy syrop na kaszel" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -57285,13 +57567,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "injectable prophylactic antivenom" msgid_plural "injectable prophylactic antivenom" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "profilaktyczna antytoksyna w zastrzyku" +msgstr[1] "profilaktyczne antytoksyny w zastrzykach" +msgstr[2] "profilaktycznych antytoksyn w zastrzykach" +msgstr[3] "profilaktycznej antytoksyny w zastrzyku" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " @@ -57300,7 +57581,7 @@ msgstr "" "Wstrzykujesz fiolkę profilaktycznej surowicy w ramię. Czujesz się lekko " "zemdlony." -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -57316,12 +57597,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "antidepressant" msgid_plural "antidepressant" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tabletka antydepresanta" +msgstr[1] "tabletki antydepresanta" +msgstr[2] "tabletek antydepresanta" +msgstr[3] "tabletki antydepresanta" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -57335,10 +57616,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "Prussian blue tablet" msgid_plural "Prussian blue tablets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tabletka pruskiego błękitu" +msgstr[1] "tabletki pruskiego błękitu" +msgstr[2] "tabletek pruskiego błękitu" +msgstr[3] "tabletki pruskiego błękitu" #. ~ Use action activation_message for Prussian blue tablet. #: lang/json/COMESTIBLE_from_json.py @@ -57363,7 +57644,7 @@ msgstr[1] "proszek hemostatyczny" msgstr[2] "proszek hemostatyczny" msgstr[3] "proszek hemostatyczny" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -57375,10 +57656,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "saline solution" msgid_plural "saline solutions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "roztwór soli fizjologicznej" +msgstr[1] "roztwory soli fizjologicznej" +msgstr[2] "roztworów soli fizjologicznej" +msgstr[3] "roztworu soli fizjologicznej" #. ~ Description for saline solution #: lang/json/COMESTIBLE_from_json.py @@ -57392,12 +57673,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "antipsychotic" msgid_plural "antipsychotic" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "lek antypsychotyczny" +msgstr[1] "leki antypsychotyczne" +msgstr[2] "leków antypsychotycznych" +msgstr[3] "leku antypsychotycznego" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -57410,10 +57691,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "thyme oil" msgid_plural "thyme oils" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "olej z tymianku" +msgstr[1] "oleje z tymianku" +msgstr[2] "olei z tymianku" +msgstr[3] "oleju z tymianku" #. ~ Description for thyme oil #: lang/json/COMESTIBLE_from_json.py @@ -57427,10 +57708,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "rolling tobacco" msgid_plural "rolling tobaccos" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja tytoniu" +msgstr[1] "porcje tytoniu" +msgstr[2] "porcji tytoniu" +msgstr[3] "porcji tytoniu" #. ~ Use action activation_message for rolling tobacco. #: lang/json/COMESTIBLE_from_json.py @@ -57450,10 +57731,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "tramadol" msgid_plural "tramadols" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tabletka tramadolu" +msgstr[1] "tabletki tramadolu" +msgstr[2] "tabletek tramadolu" +msgstr[3] "tabletki tramadolu" #. ~ Use action activation_message for tramadol. #: lang/json/COMESTIBLE_from_json.py @@ -57472,10 +57753,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "gamma globulin shot" msgid_plural "gamma globulin shots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zastrzyk gamma globulin" +msgstr[1] "zastrzyki gamma globulin" +msgstr[2] "zastrzyków gamma globulin" +msgstr[3] "zastrzyku gamma globulin" #. ~ Description for gamma globulin shot #: lang/json/COMESTIBLE_from_json.py @@ -57518,10 +57799,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "calcium tablet" msgid_plural "calcium tablets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tabletka z wapniem" +msgstr[1] "tabletki z wapniem" +msgstr[2] "tabletek z wapniem" +msgstr[3] "tabletki z wapniem" #. ~ Description for calcium tablet #: lang/json/COMESTIBLE_from_json.py @@ -57535,10 +57816,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "bone meal tablet" msgid_plural "bone meal tablets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tabletka z mączki kostnej" +msgstr[1] "tabletki z mączki kostnej" +msgstr[2] "tabletek z mączki kostnej" +msgstr[3] "tabletki z mączki kostnej" #. ~ Description for bone meal tablet #: lang/json/COMESTIBLE_from_json.py @@ -57552,10 +57833,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "flavored bone meal tablet" msgid_plural "flavored bone meal tablets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "smakowa tabletka z mączki kostnej" +msgstr[1] "smakowe tabletki z mączki kostnej" +msgstr[2] "smakowych tabletek z mączki kostnej" +msgstr[3] "smakowej tabletki z mączki kostnej" #. ~ Description for flavored bone meal tablet #: lang/json/COMESTIBLE_from_json.py @@ -57571,10 +57852,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "gummy vitamin" msgid_plural "gummy vitamins" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "żelek witaminowy" +msgstr[1] "żelki witaminowe" +msgstr[2] "żelków witaminowych" +msgstr[3] "żelka witaminowego" #. ~ Description for gummy vitamin #: lang/json/COMESTIBLE_from_json.py @@ -57590,10 +57871,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "homeopathic pill" msgid_plural "homeopathic pills" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tabletka homeopatyczna" +msgstr[1] "tabletki homeopatyczne" +msgstr[2] "tabletek homeopatycznych" +msgstr[3] "tabletki homeopatycznej" #. ~ Use action activation_message for homeopathic pill. #: lang/json/COMESTIBLE_from_json.py @@ -57680,10 +57961,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "injectable vitamin B" msgid_plural "injectable vitamin Bs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "dawka wstrzykiwanej witaminy B" +msgstr[1] "dawki wstrzykiwanej witaminy B" +msgstr[2] "dawek wstrzykiwanej witaminy B" +msgstr[3] "dawki wstrzykiwanej witaminy B" #. ~ Use action activation_message for injectable vitamin B. #: lang/json/COMESTIBLE_from_json.py @@ -57702,10 +57983,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "injectable iron" msgid_plural "injectable irons" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "dawka wstrzykiwanego żelaza" +msgstr[1] "dawki wstrzykiwanego żelaza" +msgstr[2] "dawek wstrzykiwanego żelaza" +msgstr[3] "dawki wstrzykiwanego żelaza" #. ~ Use action activation_message for injectable iron. #: lang/json/COMESTIBLE_from_json.py @@ -57728,12 +58009,12 @@ msgstr[1] "marihuana" msgstr[2] "marihuana" msgstr[3] "marihuana" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "Palisz zielsko. Dobry towar, człowieku!" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -57747,12 +58028,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fast-acting sedative" msgid_plural "fast-acting sedative" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "lek uspokajający szybkiego działania" +msgstr[1] "leki uspokajające szybkiego działania" +msgstr[2] "leków uspokajających szybkiego działania" +msgstr[3] "leku uspokajającego szybkiego działania" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -57766,10 +58047,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "antiseptic soaked rag" msgid_plural "antiseptic soaked rags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "szmatka nasączona antyseptykiem" +msgstr[1] "szmatki nasączone antyseptykiem" +msgstr[2] "szmatek nasączonych antyseptykiem" +msgstr[3] "szmatki nasączonej antyseptykiem" #. ~ Description for antiseptic soaked rag #: lang/json/COMESTIBLE_from_json.py @@ -57783,12 +58064,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "antiseptic soaked cotton balls" msgid_plural "antiseptic soaked cotton balls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kulka bawełny z antyseptykiem" +msgstr[1] "kulki bawełny z antyseptykiem" +msgstr[2] "kulek bawełny z antyseptykiem" +msgstr[3] "kulki bawełny z antyseptykiem" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -57800,12 +58081,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "narrow-spectrum antibiotics" msgid_plural "narrow-spectrum antibiotics" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "antybiotyk wąskiego spektrum" +msgstr[1] "antybiotyki wąskiego spektrum" +msgstr[2] "antybiotyków wąskiego spektrum" +msgstr[3] "antybiotyku wąskiego spektrum" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -57815,7 +58096,7 @@ msgid "" msgstr "" "Antybiotyk o wąskim spektrum używany do tłumienia infekcji i zapobieganiu " "jej rozprzestrzenienia. Jego spektrum działania nie jest wystarczająco " -"szerokie by usunąć większość infekcji z marszu, ale wzmacnia układ " +"szerokie, by usunąć większość infekcji z marszu, ale wzmacnia układ " "odpornościowy przeciwko nim. Jedna dawka starcza na dwanaście godzin." #: lang/json/COMESTIBLE_from_json.py @@ -57889,12 +58170,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "broad-spectrum antibiotics" msgid_plural "broad-spectrum antibiotics" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "antybiotyk szerokiego spektrum" +msgstr[1] "antybiotyki szerokiego spektrum" +msgstr[2] "antybiotyków szerokiego spektrum" +msgstr[3] "antybiotyku szerokiego spektrum" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -57910,12 +58191,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cocaine topical cream" msgid_plural "cocaine topical cream" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "krem miejscowy z kokainą" +msgstr[1] "kremy miejscowe z kokainą" +msgstr[2] "kremów miejscowych z kokainą" +msgstr[3] "kremu miejscowego z kokainą" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -57927,10 +58208,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "MRE entree" msgid_plural "MRE entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne MRE" +msgstr[1] "dania główne MRE" +msgstr[2] "dań głównych MRE" +msgstr[3] "dania głównego MRE" #. ~ Description for MRE entree #: lang/json/COMESTIBLE_from_json.py @@ -57940,10 +58221,10 @@ msgstr "Najzwyklejsze danie główne MRE. Nie powinieneś na to patrzeć." #: lang/json/COMESTIBLE_from_json.py msgid "chili & beans entree" msgid_plural "chili & beans entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne z fasoli i chili" +msgstr[1] "dania główne z fasoli i chili" +msgstr[2] "dań głównych z fasoli i chili" +msgstr[3] "dania głównego z fasoli i chili" #. ~ Description for chili & beans entree #: lang/json/COMESTIBLE_from_json.py @@ -57957,10 +58238,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "BBQ beef entree" msgid_plural "BBQ beef entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne z grilla wołowego" +msgstr[1] "dania główne z grilla wołowego" +msgstr[2] "dań głównych z grilla wołowego" +msgstr[3] "dania głównego z grilla wołowego" #. ~ Description for BBQ beef entree #: lang/json/COMESTIBLE_from_json.py @@ -57974,10 +58255,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chicken noodle entree" msgid_plural "chicken noodle entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne rosół z kury" +msgstr[1] "dania główne rosół z kury" +msgstr[2] "dań głównych rosół z kury" +msgstr[3] "dania głównego rosół z kury" #. ~ Description for chicken noodle entree #: lang/json/COMESTIBLE_from_json.py @@ -57991,10 +58272,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "spaghetti entree" msgid_plural "spaghetti entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne spaghetti" +msgstr[1] "dania główne spaghetti" +msgstr[2] "dań głównych spaghetti" +msgstr[3] "dania głównego spaghetti" #. ~ Description for spaghetti entree #: lang/json/COMESTIBLE_from_json.py @@ -58008,10 +58289,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chicken chunks entree" msgid_plural "chicken chunks entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne kawałki kurczaka" +msgstr[1] "dania główne kawałki kurczaka" +msgstr[2] "dań głównych kawałki kurczaka" +msgstr[3] "dania głównego kawałki kurczaka" #. ~ Description for chicken chunks entree #: lang/json/COMESTIBLE_from_json.py @@ -58025,10 +58306,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "beef taco entree" msgid_plural "beef taco entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne taco wołowe" +msgstr[1] "dania główne taco wołowe" +msgstr[2] "dań głównych taco wołowe" +msgstr[3] "dania głównego taco wołowe" #. ~ Description for beef taco entree #: lang/json/COMESTIBLE_from_json.py @@ -58042,10 +58323,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "beef brisket entree" msgid_plural "beef brisket entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne mostek wołowy" +msgstr[1] "dania główne mostek wołowy" +msgstr[2] "dań głównych mostek wołowy" +msgstr[3] "dania głównego mostek wołowy" #. ~ Description for beef brisket entree #: lang/json/COMESTIBLE_from_json.py @@ -58059,10 +58340,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "meatballs & marinara entree" msgid_plural "meatballs & marinara entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne klopsiki w sosie" +msgstr[1] "dania główne klopsiki w sosie" +msgstr[2] "dań głównych klopsiki w sosie" +msgstr[3] "dania głównego klopsiki w sosie" #. ~ Description for meatballs & marinara entree #: lang/json/COMESTIBLE_from_json.py @@ -58076,10 +58357,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "beef stew entree" msgid_plural "beef stew entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne gulasz wołowy" +msgstr[1] "dania główne gulasz wołowy" +msgstr[2] "dań głównych gulasz wołowy" +msgstr[3] "dania głównego gulasz wołowy" #. ~ Description for beef stew entree #: lang/json/COMESTIBLE_from_json.py @@ -58093,10 +58374,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chili & macaroni entree" msgid_plural "chili & macaroni entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne makaron z chili" +msgstr[1] "dania główne makaron z chili" +msgstr[2] "dań głównych makaron z chili" +msgstr[3] "dania głównego makaron z chili" #. ~ Description for chili & macaroni entree #: lang/json/COMESTIBLE_from_json.py @@ -58110,10 +58391,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "vegetarian taco entree" msgid_plural "vegetarian taco entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne taco wegetariańskie" +msgstr[1] "dania główne taco wegetariańskie" +msgstr[2] "dań głównych taco wegetariańskie" +msgstr[3] "dania głównego taco wegetariańskie" #. ~ Description for vegetarian taco entree #: lang/json/COMESTIBLE_from_json.py @@ -58127,10 +58408,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "macaroni & marinara entree" msgid_plural "macaroni & marinara entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne makaron w sosie pomidorowym" +msgstr[1] "dania główne makaron w sosie pomidorowym" +msgstr[2] "dań głównych makaron w sosie pomidorowym" +msgstr[3] "dania głównego makaron w sosie pomidorowym" #. ~ Description for macaroni & marinara entree #: lang/json/COMESTIBLE_from_json.py @@ -58145,10 +58426,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "spinach fettuccine entree" msgid_plural "spinach fettuccine entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne łazanki ze szpinakiem" +msgstr[1] "dania główne łazanki ze szpinakiem" +msgstr[2] "dań głównych łazanki ze szpinakiem" +msgstr[3] "dania głównego łazanki ze szpinakiem" #. ~ Description for spinach fettuccine entree #: lang/json/COMESTIBLE_from_json.py @@ -58163,10 +58444,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "ratatouille entree" msgid_plural "ratatouille entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne ratatouille" +msgstr[1] "dania główne ratatouille" +msgstr[2] "dań głównych ratatouille" +msgstr[3] "dania głównego ratatouille" #. ~ Description for ratatouille entree #: lang/json/COMESTIBLE_from_json.py @@ -58180,10 +58461,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cheese tortellini entree" msgid_plural "cheese tortellini entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne serowe pierożki tortellini" +msgstr[1] "dania główne serowe pierożki tortellini" +msgstr[2] "dań głównych serowe pierożki tortellini" +msgstr[3] "dania głównego serowe pierożki tortellini" #. ~ Description for cheese tortellini entree #: lang/json/COMESTIBLE_from_json.py @@ -58197,10 +58478,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mushroom fettuccine entree" msgid_plural "mushroom fettuccine entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne łazanki grzybowe" +msgstr[1] "dania główne łazanki grzybowe" +msgstr[2] "dań głównych łazanki grzybowe" +msgstr[3] "dania głównego łazanki grzybowe" #. ~ Description for mushroom fettuccine entree #: lang/json/COMESTIBLE_from_json.py @@ -58214,10 +58495,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "Mexican chicken stew entree" msgid_plural "Mexican chicken stew entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne meksykański gulasz z kurczaka" +msgstr[1] "dania główne meksykański gulasz z kurczaka" +msgstr[2] "dań głównych meksykański gulasz z kurczaka" +msgstr[3] "dania głównego meksykański gulasz z kurczaka" #. ~ Description for Mexican chicken stew entree #: lang/json/COMESTIBLE_from_json.py @@ -58232,10 +58513,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chicken burrito bowl entree" msgid_plural "chicken burrito bowl entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne burrito z kurczaka" +msgstr[1] "dania główne burrito z kurczaka" +msgstr[2] "dań głównych burrito z kurczaka" +msgstr[3] "dania głównego burrito z kurczaka" #. ~ Description for chicken burrito bowl entree #: lang/json/COMESTIBLE_from_json.py @@ -58249,10 +58530,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "maple sausage entree" msgid_plural "maple sausage entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne kiełbaska w syropie klonowym" +msgstr[1] "dania główne kiełbaska w syropie klonowym" +msgstr[2] "dań głównych kiełbaska w syropie klonowym" +msgstr[3] "dania głównego kiełbaska w syropie klonowym" #. ~ Description for maple sausage entree #: lang/json/COMESTIBLE_from_json.py @@ -58267,10 +58548,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "ravioli entree" msgid_plural "ravioli entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne pierożki ravioli" +msgstr[1] "dania główne pierożki ravioli" +msgstr[2] "dań głównych pierożki ravioli" +msgstr[3] "dania głównego pierożki ravioli" #. ~ Description for ravioli entree #: lang/json/COMESTIBLE_from_json.py @@ -58284,10 +58565,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pepper jack beef entree" msgid_plural "pepper jack beef entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne wołowina w serze z chili" +msgstr[1] "dania główne wołowina w serze z chili" +msgstr[2] "dań głównych wołowina w serze z chili" +msgstr[3] "dania głównego wołowina w serze z chili" #. ~ Description for pepper jack beef entree #: lang/json/COMESTIBLE_from_json.py @@ -58302,10 +58583,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "hash browns & bacon entree" msgid_plural "hash browns & bacon entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne placki ziemniaczane z bekonem" +msgstr[1] "dania główne placki ziemniaczane z bekonem" +msgstr[2] "dań głównych placki ziemniaczane z bekonem" +msgstr[3] "dania głównego placki ziemniaczane z bekonem" #. ~ Description for hash browns & bacon entree #: lang/json/COMESTIBLE_from_json.py @@ -58320,10 +58601,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "lemon pepper tuna entree" msgid_plural "lemon pepper tuna entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne tuńczyk z cytryną i pieprzem" +msgstr[1] "dania główne tuńczyk z cytryną i pieprzem" +msgstr[2] "dań głównych tuńczyk z cytryną i pieprzem" +msgstr[3] "dania głównego tuńczyk z cytryną i pieprzem" #. ~ Description for lemon pepper tuna entree #: lang/json/COMESTIBLE_from_json.py @@ -58338,10 +58619,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "asian beef & vegetables entree" msgid_plural "asian beef & vegetables entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne wołowina z warzywami po azjatycku" +msgstr[1] "dania główne wołowina z warzywami po azjatycku" +msgstr[2] "dań głównych wołowina z warzywami po azjatycku" +msgstr[3] "dania głównego wołowina z warzywami po azjatycku" #. ~ Description for asian beef & vegetables entree #: lang/json/COMESTIBLE_from_json.py @@ -58356,10 +58637,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chicken pesto & pasta entree" msgid_plural "chicken pesto & pasta entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne kurczak z pesto i makaronem" +msgstr[1] "dania główne kurczak z pesto i makaronem" +msgstr[2] "dań głównych kurczak z pesto i makaronem" +msgstr[3] "dania głównego kurczak z pesto i makaronem" #. ~ Description for chicken pesto & pasta entree #: lang/json/COMESTIBLE_from_json.py @@ -58374,10 +58655,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "southwest beef & beans entree" msgid_plural "southwest beef & beans entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne wołowina z fasolą w stylu południowo-zachodnim" +msgstr[1] "dania główne wołowina z fasolą w stylu południowo-zachodnim" +msgstr[2] "dań głównych wołowina z fasolą w stylu południowo-zachodnim" +msgstr[3] "dania głównego wołowina z fasolą w stylu południowo-zachodnim" #. ~ Description for southwest beef & beans entree #: lang/json/COMESTIBLE_from_json.py @@ -58392,10 +58673,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "frankfurters & beans entree" msgid_plural "frankfurters & beans entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "danie główne frankfurterki z fasolą" +msgstr[1] "dania główne frankfurterki z fasolą" +msgstr[2] "dań głównych frankfurterki z fasolą" +msgstr[3] "dania głównego frankfurterki z fasolą" #. ~ Description for frankfurters & beans entree #: lang/json/COMESTIBLE_from_json.py @@ -58411,10 +58692,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cooked mushroom" msgid_plural "cooked mushrooms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowany grzyb" +msgstr[1] "gotowane grzyby" +msgstr[2] "gotowanych grzybów" +msgstr[3] "gotowanego grzyba" #. ~ Description for cooked mushroom #: lang/json/COMESTIBLE_from_json.py @@ -58424,10 +58705,10 @@ msgstr "Pyszne gotowane leśne grzybki." #: lang/json/COMESTIBLE_from_json.py msgid "morel mushroom" msgid_plural "morel mushrooms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "smardz" +msgstr[1] "smardze" +msgstr[2] "smardzów" +msgstr[3] "smardza" #. ~ Description for morel mushroom #: lang/json/COMESTIBLE_from_json.py @@ -58441,10 +58722,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cooked morel mushroom" msgid_plural "cooked morel mushrooms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowany smardz" +msgstr[1] "gotowane smardze" +msgstr[2] "gotowanych smardzów" +msgstr[3] "gotowanego smardza" #. ~ Description for cooked morel mushroom #: lang/json/COMESTIBLE_from_json.py @@ -58454,10 +58735,10 @@ msgstr "Pyszny gotowany smardz." #: lang/json/COMESTIBLE_from_json.py msgid "fried morel mushroom" msgid_plural "fried morel mushrooms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "smażony smardz" +msgstr[1] "smażone smardze" +msgstr[2] "smażonych smardzów" +msgstr[3] "smażonego smardza" #. ~ Description for fried morel mushroom #: lang/json/COMESTIBLE_from_json.py @@ -58467,10 +58748,10 @@ msgstr "Pyszna porcja kęsków smażonych smardzów." #: lang/json/COMESTIBLE_from_json.py msgid "dried mushroom" msgid_plural "dried mushrooms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "suszony grzyb" +msgstr[1] "suszone grzyby" +msgstr[2] "suszonych grzybów" +msgstr[3] "suszonego grzyba" #. ~ Description for dried mushroom #: lang/json/COMESTIBLE_from_json.py @@ -58480,10 +58761,10 @@ msgstr "Suszone grzyby to zdrowy i aromatyczny dodatek do wielu dań." #: lang/json/COMESTIBLE_from_json.py msgid "mushroom" msgid_plural "mushrooms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "grzyb" +msgstr[1] "grzyby" +msgstr[2] "grzybów" +msgstr[3] "grzyba" #. ~ Description for mushroom #: lang/json/COMESTIBLE_from_json.py @@ -58496,10 +58777,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "abstract mutagen flavor" msgid_plural "abstract mutagen flavors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "abstrakcyjny smak mutagenu" +msgstr[1] "abstrakcyjne smaki mutagenu" +msgstr[2] "abstrakcyjnych smaków mutagenu" +msgstr[3] "abstrakcyjnego smaku mutagenu" #. ~ Description for abstract mutagen flavor #: lang/json/COMESTIBLE_from_json.py @@ -58509,10 +58790,10 @@ msgstr "Rzadka substancja nieznanego pochodzenia. Powoduje mutacje." #: lang/json/COMESTIBLE_from_json.py msgid "abstract iv mutagen flavor" msgid_plural "abstract iv mutagen flavors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "abstrakcyjny smak mutagenu w kroplówce" +msgstr[1] "abstrakcyjne smaki mutagenu w kroplówce" +msgstr[2] "abstrakcyjnych smaków mutagenu w kroplówce" +msgstr[3] "abstrakcyjnego smaku mutagenu w kroplówce" #. ~ Description for abstract iv mutagen flavor #: lang/json/COMESTIBLE_from_json.py @@ -58526,20 +58807,20 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mutagenic serum" msgid_plural "mutagenic serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mutageniczne serum" +msgstr[1] "mutageniczne serum" +msgstr[2] "mutagenicznych serum" +msgstr[3] "mutagenicznego serum" #: lang/json/COMESTIBLE_from_json.py msgid "alpha serum" msgid_plural "alpha serum" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "serum alfa" +msgstr[1] "porcje serum alfa" +msgstr[2] "porcji serum alfa" +msgstr[3] "porcji serum alfa" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -58551,10 +58832,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "beast serum" msgid_plural "beast serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "bestialskie serum" +msgstr[1] "porcje bestialskiego serum" +msgstr[2] "porcji bestialskiego serum" +msgstr[3] "porcji bestialskiego serum" #. ~ Description for beast serum #: lang/json/COMESTIBLE_from_json.py @@ -58568,10 +58849,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "bird serum" msgid_plural "bird serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ptasie serum" +msgstr[1] "porcje ptasiego serum" +msgstr[2] "porcji ptasiego serum" +msgstr[3] "porcji ptasiego serum" #. ~ Description for bird serum #: lang/json/COMESTIBLE_from_json.py @@ -58585,10 +58866,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cattle serum" msgid_plural "cattle serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "bydlęce serum" +msgstr[1] "porcje bydlęcego serum" +msgstr[2] "porcji bydlęcych serum" +msgstr[3] "porcji bydlęcego serum" #. ~ Description for cattle serum #: lang/json/COMESTIBLE_from_json.py @@ -58602,10 +58883,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cephalopod serum" msgid_plural "cephalopod serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "głowonogie serum" +msgstr[1] "porcje głowonogiego serum" +msgstr[2] "porcji głowonogiego serum" +msgstr[3] "porcji głowonogiego serum" #. ~ Description for cephalopod serum #: lang/json/COMESTIBLE_from_json.py @@ -58619,10 +58900,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chimera serum" msgid_plural "chimera serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "chimeryczne serum" +msgstr[1] "porcje chimerycznego serum" +msgstr[2] "porcji chimerycznego serum" +msgstr[3] "chimerycznego serum" #. ~ Description for chimera serum #: lang/json/COMESTIBLE_from_json.py @@ -58636,10 +58917,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "elf-a serum" msgid_plural "elf-a serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "serum elf-a" +msgstr[1] "porcje serum elf-a" +msgstr[2] "porcji serum elf-a" +msgstr[3] "porcji serum elf-a" #. ~ Description for elf-a serum #: lang/json/COMESTIBLE_from_json.py @@ -58653,10 +58934,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "feline serum" msgid_plural "feline serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja kociego serum" +msgstr[1] "porcje kociego serum" +msgstr[2] "porcji kociego serum" +msgstr[3] "porcji kociego serum" #. ~ Description for feline serum #: lang/json/COMESTIBLE_from_json.py @@ -58670,10 +58951,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fish serum" msgid_plural "fish serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja rybiego serum" +msgstr[1] "porcje rybiego serum" +msgstr[2] "porcji rybiego serum" +msgstr[3] "porcji rybiego serum" #. ~ Description for fish serum #: lang/json/COMESTIBLE_from_json.py @@ -58687,10 +58968,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "insect serum" msgid_plural "insect serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja owadziego serum" +msgstr[1] "porcje owadziego serum" +msgstr[2] "porcji owadziego serum" +msgstr[3] "porcji owadziego serum" #. ~ Description for insect serum #: lang/json/COMESTIBLE_from_json.py @@ -58704,10 +58985,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "lizard serum" msgid_plural "lizard serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja jaszczurzego serum" +msgstr[1] "porcje jaszczurzego serum" +msgstr[2] "porcji jaszczurzego serum" +msgstr[3] "porcji jaszczurzego serum" #. ~ Description for lizard serum #: lang/json/COMESTIBLE_from_json.py @@ -58721,10 +59002,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "lupine serum" msgid_plural "lupine serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja wilczego serum" +msgstr[1] "porcje wilczego serum" +msgstr[2] "porcji wilczego serum" +msgstr[3] "porcji wilczego serum" #. ~ Description for lupine serum #: lang/json/COMESTIBLE_from_json.py @@ -58738,10 +59019,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "medical serum" msgid_plural "medical serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja medycznego serum" +msgstr[1] "porcje medycznego serum" +msgstr[2] "porcji medycznego serum" +msgstr[3] "porcji medycznego serum" #. ~ Description for medical serum #: lang/json/COMESTIBLE_from_json.py @@ -58756,10 +59037,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "plant serum" msgid_plural "plant serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja roślinnego serum" +msgstr[1] "porcje roślinnego serum" +msgstr[2] "porcji roślinnego serum" +msgstr[3] "porcji roślinnego serum" #. ~ Description for plant serum #: lang/json/COMESTIBLE_from_json.py @@ -58773,10 +59054,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "raptor serum" msgid_plural "raptor serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja drapieżnego serum" +msgstr[1] "porcje drapieżnego serum" +msgstr[2] "porcji drapieżnego serum" +msgstr[3] "porcji drapieżnego serum" #. ~ Description for raptor serum #: lang/json/COMESTIBLE_from_json.py @@ -58791,10 +59072,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "rat serum" msgid_plural "rat serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja szczurzego serum" +msgstr[1] "porcje szczurzego serum" +msgstr[2] "porcji szczurzego serum" +msgstr[3] "porcji szczurzego serum" #. ~ Description for rat serum #: lang/json/COMESTIBLE_from_json.py @@ -58808,10 +59089,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "slime serum" msgid_plural "slime serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja śluzowego serum" +msgstr[1] "porcje śluzowego serum" +msgstr[2] "porcji śluzowego serum" +msgstr[3] "porcji śluzowego serum" #. ~ Description for slime serum #: lang/json/COMESTIBLE_from_json.py @@ -58826,10 +59107,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "spider serum" msgid_plural "spider serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja pajęczego serum" +msgstr[1] "porcje pajęczego serum" +msgstr[2] "porcji pajęczego serum" +msgstr[3] "porcji pajęczego serum" #. ~ Description for spider serum #: lang/json/COMESTIBLE_from_json.py @@ -58843,10 +59124,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "snail serum" msgid_plural "snail serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja ślimaczego serum" +msgstr[1] "porcje ślimaczego serum" +msgstr[2] "porcji ślimaczego serum" +msgstr[3] "porcji ślimaczego serum" #. ~ Description for snail serum #: lang/json/COMESTIBLE_from_json.py @@ -58854,30 +59135,34 @@ msgid "" "A super-concentrated mutagen with the consistency of snot. You need a " "syringe to inject it… if you really want to?" msgstr "" +"Super skoncentrowany mutagen o konsystencji smarków. Potrzebujesz " +"strzykawki, żeby go sobie wstrzyknąć... jeśli naprawdę chcesz?" #: lang/json/COMESTIBLE_from_json.py msgid "batrachian serum" msgid_plural "batrachian serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja żabiego serum" +msgstr[1] "porcje żabiego serum" +msgstr[2] "porcji żabiego serum" +msgstr[3] "porcji żabiego serum" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" +"Super skoncentrowany mutagen, który wygląda jak woda w stawie... czy cienie " +"w nim się poruszają? Potrzebujesz strzykawki, żeby go sobie wstrzyknąć... " +"jeśli naprawdę chcesz?" #: lang/json/COMESTIBLE_from_json.py msgid "troglobite serum" msgid_plural "troglobite serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja troglobiontycznego serum" +msgstr[1] "porcje troglobiontycznego serum" +msgstr[2] "porcji troglobiontycznego serum" +msgstr[3] "porcji troglobiontycznego serum" #. ~ Description for troglobite serum #: lang/json/COMESTIBLE_from_json.py @@ -58891,10 +59176,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "ursine serum" msgid_plural "ursine serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja niedźwiedziego serum" +msgstr[1] "porcje niedźwiedziego serum" +msgstr[2] "porcji niedźwiedziego serum" +msgstr[3] "porcji niedźwiedziego serum" #. ~ Description for ursine serum #: lang/json/COMESTIBLE_from_json.py @@ -58908,10 +59193,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mouse serum" msgid_plural "mouse serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja mysiego serum" +msgstr[1] "porcje mysiego serum" +msgstr[2] "porcji mysiego serum" +msgstr[3] "porcji mysiego serum" #. ~ Description for mouse serum #: lang/json/COMESTIBLE_from_json.py @@ -58925,18 +59210,18 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mutagen" msgid_plural "mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mutagen" +msgstr[1] "mutageny" +msgstr[2] "mutagenów" +msgstr[3] "mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "congealed blood" msgid_plural "congealed bloods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zastygła krew" +msgstr[1] "zastygłe krwi" +msgstr[2] "zastygłych krwi" +msgstr[3] "zastygłej krwi" #. ~ Description for congealed blood #: lang/json/COMESTIBLE_from_json.py @@ -58950,12 +59235,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "alpha mutagen" msgid_plural "alpha mutagen" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mutagen alfa" +msgstr[1] "mutageny alfa" +msgstr[2] "mutagenów alfa" +msgstr[3] "mutagenu alfa" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -58966,198 +59251,201 @@ msgstr "Bardzo rzadki koktajl mutagenów." #: lang/json/COMESTIBLE_from_json.py msgid "beast mutagen" msgid_plural "beast mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "szczurzy mutagen" +msgstr[1] "szczurze mutageny" +msgstr[2] "szczurzych mutagenów" +msgstr[3] "szczurzego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "bird mutagen" msgid_plural "bird mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ptasi mutagen" +msgstr[1] "ptasie mutageny" +msgstr[2] "ptasich mutagenów" +msgstr[3] "ptasiego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "cattle mutagen" msgid_plural "cattle mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "bydlęcy mutagen" +msgstr[1] "bydlęce mutageny" +msgstr[2] "bydlęcych mutagenów" +msgstr[3] "bydlęcego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "cephalopod mutagen" msgid_plural "cephalopod mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "głowonogi mutagen" +msgstr[1] "głowonogie mutageny" +msgstr[2] "głowonogich mutagenów" +msgstr[3] "głowonogiego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "chimera mutagen" msgid_plural "chimera mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "chimeryczny mutagen" +msgstr[1] "chimeryczne mutageny" +msgstr[2] "chimerycznych mutagenów" +msgstr[3] "chimerycznego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "elf-a mutagen" msgid_plural "elf-a mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mutagen elf-a" +msgstr[1] "mutageny elf-a" +msgstr[2] "mutagenów elf-a" +msgstr[3] "mutagenu elf-a" #: lang/json/COMESTIBLE_from_json.py msgid "feline mutagen" msgid_plural "feline mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "koci mutagen" +msgstr[1] "kocie mutageny" +msgstr[2] "kocich mutagenów" +msgstr[3] "kociego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "fish mutagen" msgid_plural "fish mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "rybi mutagen" +msgstr[1] "rybie mutageny" +msgstr[2] "rybich mutagenów" +msgstr[3] "rybiego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "insect mutagen" msgid_plural "insect mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "owadzi mutagen" +msgstr[1] "owadzie mutageny" +msgstr[2] "owadzich mutagenów" +msgstr[3] "owadziego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "lizard mutagen" msgid_plural "lizard mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jaszczurczy mutagen" +msgstr[1] "jaszczurcze mutageny" +msgstr[2] "jaszczurczych mutagenów" +msgstr[3] "jaszczurczego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "lupine mutagen" msgid_plural "lupine mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wilczy mutagen" +msgstr[1] "wilcze mutageny" +msgstr[2] "wilczych mutagenów" +msgstr[3] "wilczego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "medical mutagen" msgid_plural "medical mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "medyczny mutagen" +msgstr[1] "medyczne mutageny" +msgstr[2] "medycznych mutagenów" +msgstr[3] "medycznego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "plant mutagen" msgid_plural "plant mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "roślinny mutagen" +msgstr[1] "roślinne mutageny" +msgstr[2] "roślinnych mutagenów" +msgstr[3] "roślinnego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "raptor mutagen" msgid_plural "raptor mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "drapieżny mutagen" +msgstr[1] "drapieżne mutageny" +msgstr[2] "drapieżnych mutagenów" +msgstr[3] "drapieżnego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "rat mutagen" msgid_plural "rat mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "szczurzy mutagen" +msgstr[1] "szczurze mutageny" +msgstr[2] "szczurzych mutagenów" +msgstr[3] "szczurzego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "slime mutagen" msgid_plural "slime mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "śluzowy mutagen" +msgstr[1] "śluzowe mutageny" +msgstr[2] "śluzowych mutagenów" +msgstr[3] "śluzowego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "spider mutagen" msgid_plural "spider mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pajęczy mutagen" +msgstr[1] "pajęcze mutageny" +msgstr[2] "pajęczych mutagenów" +msgstr[3] "pajęczego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "batrachian mutagen" msgid_plural "batrachian mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "żabi mutagen" +msgstr[1] "żabiego mutagenu" +msgstr[2] "żabich mutagenów" +msgstr[3] "żabiego mutagenu" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" +"Ciemny mutagen, który wygląda, jakby był pełen małych, pływających kijanek." #: lang/json/COMESTIBLE_from_json.py msgid "snail mutagen" msgid_plural "snail mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ślimaczy mutagen" +msgstr[1] "ślimacze mutageny" +msgstr[2] "ślimaczych mutagenów" +msgstr[3] "ślimaczego mutagenu" #. ~ Description for snail mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" "A mutagen that looks awfully like the slime from an old children's network." msgstr "" +"Mutagen, który wygląda strasznie jak szlam ze starej sieci dla dzieci." #: lang/json/COMESTIBLE_from_json.py msgid "troglobite mutagen" msgid_plural "troglobite mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "troglobiontyczny mutagen" +msgstr[1] "troglobiontyczne mutageny" +msgstr[2] "troglobiontycznych mutagenów" +msgstr[3] "troglobiontycznego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "ursine mutagen" msgid_plural "ursine mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "niedźwiedzi mutagen" +msgstr[1] "niedźwiedzie mutageny" +msgstr[2] "niedźwiedzich mutagenów" +msgstr[3] "niedźwiedziego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "mouse mutagen" msgid_plural "mouse mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mysi mutagen" +msgstr[1] "mysie mutageny" +msgstr[2] "mysich mutagenów" +msgstr[3] "mysiego mutagenu" #: lang/json/COMESTIBLE_from_json.py msgid "rabbit serum" msgid_plural "rabbit serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja króliczego serum" +msgstr[1] "porcje króliczego serum" +msgstr[2] "porcji króliczego serum" +msgstr[3] "porcji króliczego serum" #. ~ Description for rabbit serum #: lang/json/COMESTIBLE_from_json.py @@ -59171,10 +59459,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "rabbit mutagen" msgid_plural "rabbit mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "króliczy mutagen" +msgstr[1] "królicze mutageny" +msgstr[2] "króliczych mutagenów" +msgstr[3] "króliczego mutagenu" #. ~ Description for rabbit mutagen #: lang/json/COMESTIBLE_from_json.py @@ -59187,10 +59475,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "purifier" msgid_plural "purifiers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "czyścik" +msgstr[1] "czyściki" +msgstr[2] "czyścików" +msgstr[3] "czyścika" #. ~ Description for purifier #: lang/json/COMESTIBLE_from_json.py @@ -59204,10 +59492,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "purifier serum" msgid_plural "purifier serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "czyszczące serum" +msgstr[1] "porcje czyszczącego serum" +msgstr[2] "porcji czyszczącego serum" +msgstr[3] "porcji czyszczącego serum" #. ~ Description for purifier serum #: lang/json/COMESTIBLE_from_json.py @@ -59220,10 +59508,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "purifier smart shot" msgid_plural "purifier smart shots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "czyszczące celowane serum" +msgstr[1] "porcje czyszczącego celowanego serum" +msgstr[2] "porcji czyszczącego celowanego serum" +msgstr[3] "porcji czyszczącego celowanego serum" #. ~ Description for purifier smart shot #: lang/json/COMESTIBLE_from_json.py @@ -59256,10 +59544,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mutated arm" msgid_plural "mutated arms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmutowane ramię" +msgstr[1] "zmutowane ramiona" +msgstr[2] "zmutowanych ramion" +msgstr[3] "zmutowanego ramienia" #. ~ Description for mutated arm #: lang/json/COMESTIBLE_from_json.py @@ -59273,10 +59561,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mutated leg" msgid_plural "mutated legs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmutowana noga" +msgstr[1] "zmutowane nogi" +msgstr[2] "zmutowanych nóg" +msgstr[3] "zmutowanej nogi" #. ~ Description for mutated leg #: lang/json/COMESTIBLE_from_json.py @@ -59290,12 +59578,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pine nuts" msgid_plural "pine nuts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja orzeszków piniowych" +msgstr[1] "porcje orzeszków piniowych" +msgstr[2] "porcji orzeszków piniowych" +msgstr[3] "porcji orzeszków piniowych" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "Chrupiące i smaczne orzeszki piniowe." @@ -59303,27 +59591,29 @@ msgstr "Chrupiące i smaczne orzeszki piniowe." #: lang/json/COMESTIBLE_from_json.py msgid "junipers" msgid_plural "junipers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "jałowiec" +msgstr[1] "jałowce" +msgstr[2] "jałowców" +msgstr[3] "jałowca" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " "similar to rosemary." msgstr "" +"Jałowiec, do aromatyzowania ginu zapachem ziemi. Ostry w smaku, podobny do " +"rozmarynu." #: lang/json/COMESTIBLE_from_json.py msgid "shelled pistachios" msgid_plural "shelled pistachios" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść łuskanych pistacji" +msgstr[1] "garście łuskanych pistacji" +msgstr[2] "garści łuskanych pistacji" +msgstr[3] "garści łuskanych pistacji" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -59332,12 +59622,12 @@ msgstr "Garść pistacji, których skorupy zostały obrane." #: lang/json/COMESTIBLE_from_json.py msgid "roasted pistachios" msgid_plural "roasted pistachios" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść prażonych pistacji" +msgstr[1] "garście prażonych pistacji" +msgstr[2] "garści prażonych pistacji" +msgstr[3] "garści prażonych pistacji" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "Garść prażonych orzeszków pistacjowych." @@ -59345,12 +59635,12 @@ msgstr "Garść prażonych orzeszków pistacjowych." #: lang/json/COMESTIBLE_from_json.py msgid "shelled almonds" msgid_plural "shelled almonds" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść łuskanych migdałów" +msgstr[1] "garście łuskanych migdałów" +msgstr[2] "garści łuskanych migdałów" +msgstr[3] "garści łuskanych migdałów" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "Garść orzechów z drzewa migdałowego, ich skorupki zostały usunięte." @@ -59358,12 +59648,12 @@ msgstr "Garść orzechów z drzewa migdałowego, ich skorupki zostały usunięte #: lang/json/COMESTIBLE_from_json.py msgid "almond pulp" msgid_plural "almond pulp" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pulpa migdałowa" +msgstr[1] "pulpy migdałowe" +msgstr[2] "pulp migdałowych" +msgstr[3] "pulpy migdałowej" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -59374,12 +59664,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "roasted almonds" msgid_plural "roasted almonds" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść prażonych migdałów" +msgstr[1] "garście prażonych migdałów" +msgstr[2] "garści prażonych migdałów" +msgstr[3] "garści prażonych migdałów" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "Garść prażonych orzechów z drzewa migdałowego." @@ -59387,12 +59677,12 @@ msgstr "Garść prażonych orzechów z drzewa migdałowego." #: lang/json/COMESTIBLE_from_json.py msgid "cashews" msgid_plural "cashews" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść orzechów nerkowca" +msgstr[1] "garście orzechów nerkowca" +msgstr[2] "garści orzechów nerkowca" +msgstr[3] "garście orzechów nerkowca" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "Garść solonych orzechów nerkowca." @@ -59400,12 +59690,12 @@ msgstr "Garść solonych orzechów nerkowca." #: lang/json/COMESTIBLE_from_json.py msgid "shelled pecans" msgid_plural "shelled pecans" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść łuskanych orzechów pekan" +msgstr[1] "garście łuskanych orzechów pekan" +msgstr[2] "garści łuskanych orzechów pekan" +msgstr[3] "garści łuskanych orzechów pekan" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -59417,12 +59707,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "roasted pecans" msgid_plural "roasted pecans" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść prażonych orzechów pekan" +msgstr[1] "garście prażonych orzechów pekan" +msgstr[2] "garści prażonych orzechów pekan" +msgstr[3] "garści prażonych orzechów pekan" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "Garść prażonych orzechów z drzewa pekan." @@ -59430,15 +59720,15 @@ msgstr "Garść prażonych orzechów z drzewa pekan." #: lang/json/COMESTIBLE_from_json.py msgid "shelled peanuts" msgid_plural "shelled peanuts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść łuskanych orzeszków ziemnych" +msgstr[1] "garście łuskanych orzeszków ziemnych" +msgstr[2] "garści łuskanych orzeszków ziemnych" +msgstr[3] "garści łuskanych orzeszków ziemnych" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." -msgstr "" +msgstr "Słone orzeszki ziemne bez skorupek." #: lang/json/COMESTIBLE_from_json.py msgid "beech nuts" @@ -59448,7 +59738,7 @@ msgstr[1] "orzechy bukowe" msgstr[2] "orzechów bukowych" msgstr[3] "orzechów bukowych" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "Garść twardych spiczastych orzechów z drzewa bukowego." @@ -59456,12 +59746,12 @@ msgstr "Garść twardych spiczastych orzechów z drzewa bukowego." #: lang/json/COMESTIBLE_from_json.py msgid "shelled walnuts" msgid_plural "shelled walnuts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść łuskanych orzechów włoskich" +msgstr[1] "garście łuskanych orzechów włoskich" +msgstr[2] "garści łuskanych orzechów włoskich" +msgstr[3] "garści łuskanych orzechów włoskich" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -59471,12 +59761,12 @@ msgstr "Garść surowych twardych orzechów włoskich, bez skorupek." #: lang/json/COMESTIBLE_from_json.py msgid "roasted walnuts" msgid_plural "roasted walnuts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść prażonych orzechów włoskich" +msgstr[1] "garście prażonych orzechów włoskich" +msgstr[2] "garści prażonych orzechów włoskich" +msgstr[3] "garści prażonych orzechów włoskich" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "Garść prażonych orzechów włoskich." @@ -59484,12 +59774,12 @@ msgstr "Garść prażonych orzechów włoskich." #: lang/json/COMESTIBLE_from_json.py msgid "shelled chestnuts" msgid_plural "shelled chestnuts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść łuskanych kasztanów" +msgstr[1] "garście łuskanych kasztanów" +msgstr[2] "garści łuskanych kasztanów" +msgstr[3] "garści łuskanych kasztanów" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -59499,12 +59789,12 @@ msgstr "Garść surowych twardych orzechów z kasztanowca, bez skorupek." #: lang/json/COMESTIBLE_from_json.py msgid "roasted chestnuts" msgid_plural "roasted chestnuts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść prażonych kasztanów" +msgstr[1] "garście prażonych kasztanów" +msgstr[2] "garści prażonych kasztanów" +msgstr[3] "garści prażonych kasztanów" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "Garść prażonych kasztanów z kasztanowca." @@ -59512,12 +59802,12 @@ msgstr "Garść prażonych kasztanów z kasztanowca." #: lang/json/COMESTIBLE_from_json.py msgid "shelled hazelnuts" msgid_plural "shelled hazelnuts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść łuskanych orzechów laskowych" +msgstr[1] "garście łuskanych orzechów laskowych" +msgstr[2] "garści łuskanych orzechów laskowych" +msgstr[3] "garści łuskanych orzechów laskowych" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -59527,25 +59817,25 @@ msgstr "Garść surowych twardych orzechów z drzewa orzechowego, bez skorupek." #: lang/json/COMESTIBLE_from_json.py msgid "roasted edamame" msgid_plural "roasted edamame" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "prażony strąk soi" +msgstr[1] "prażone strąki soi" +msgstr[2] "prażonych strąków soi" +msgstr[3] "prażonego strąku soi" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." -msgstr "" +msgstr "Prażona fasolka sojowa, zdrowa pożywna przekąska." #: lang/json/COMESTIBLE_from_json.py msgid "roasted soy nuts" msgid_plural "roasted soy nuts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść prażonych orzeszków sojowych" +msgstr[1] "garście prażonych orzeszków sojowych" +msgstr[2] "garści prażonych orzeszków sojowych" +msgstr[3] "garści prażonych orzeszków sojowych" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "Prażona soja, często zwana orzeszkami sojowymi." @@ -59553,12 +59843,12 @@ msgstr "Prażona soja, często zwana orzeszkami sojowymi." #: lang/json/COMESTIBLE_from_json.py msgid "roasted hazelnuts" msgid_plural "roasted hazelnuts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść prażonych orzechów laskowych" +msgstr[1] "garście prażonych orzechów laskowych" +msgstr[2] "garści prażonych orzechów laskowych" +msgstr[3] "garści prażonych orzechów laskowych" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "Garść prażonych orzechów laskowych." @@ -59566,12 +59856,12 @@ msgstr "Garść prażonych orzechów laskowych." #: lang/json/COMESTIBLE_from_json.py msgid "shelled hickory nuts" msgid_plural "shelled hickory nuts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść łuskanych orzechów orzesznika" +msgstr[1] "garście łuskanych orzechów orzesznika" +msgstr[2] "garści łuskanych orzechów orzesznika" +msgstr[3] "garści łuskanych orzechów orzesznika" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -59583,12 +59873,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "roasted hickory nuts" msgid_plural "roasted hickory nuts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść prażonych orzechów orzesznika" +msgstr[1] "garście prażonych orzechów orzesznika" +msgstr[2] "garści prażonych orzechów orzesznika" +msgstr[3] "garści prażonych orzechów orzesznika" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "Garść prażonych orzechów z drzewa orzesznika." @@ -59596,10 +59886,10 @@ msgstr "Garść prażonych orzechów z drzewa orzesznika." #: lang/json/COMESTIBLE_from_json.py msgid "hickory nut ambrosia" msgid_plural "hickory nut ambrosias" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "orzechowa ambrozja" +msgstr[1] "orzechowe ambrozje" +msgstr[2] "orzechowych ambrozji" +msgstr[3] "orzechowej ambrozji" #. ~ Description for hickory nut ambrosia #: lang/json/COMESTIBLE_from_json.py @@ -59609,10 +59899,10 @@ msgstr "Przepyszna ambrozja z orzechów orzesznika. Napój godny bogów." #: lang/json/COMESTIBLE_from_json.py msgid "peanut butter" msgid_plural "peanut butters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "masło orzechowe" +msgstr[1] "masła orzechowe" +msgstr[2] "maseł orzechowych" +msgstr[3] "masła orzechowego" #. ~ Description for peanut butter #: lang/json/COMESTIBLE_from_json.py @@ -59626,10 +59916,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "imitation peanutbutter" msgid_plural "imitation peanutbutters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "imitacja masła orzechowego" +msgstr[1] "imitacje masła orzechowego" +msgstr[2] "imitacji masła orzechowego" +msgstr[3] "imitacji masła orzechowego" #. ~ Description for imitation peanutbutter #: lang/json/COMESTIBLE_from_json.py @@ -59639,40 +59929,42 @@ msgstr "Gęsta, brązowa orzechowa pasta." #: lang/json/COMESTIBLE_from_json.py msgid "peanut butter spread" msgid_plural "peanut butter spreads" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pasta orzechowa z fistaszków" +msgstr[1] "pasty orzechowe z fistaszków" +msgstr[2] "past orzechowych z fistaszków" +msgstr[3] "pasty orzechowej z fistaszków" #. ~ Description for peanut butter spread #: lang/json/COMESTIBLE_from_json.py msgid "Processed peanut butter spread." -msgstr "" +msgstr "Przetworzona pasta masła orzechowego." #: lang/json/COMESTIBLE_from_json.py msgid "acorns" msgid_plural "acorns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść żołędzi" +msgstr[1] "garście żołędzi" +msgstr[2] "garści żołędzi" +msgstr[3] "garści żołędzi" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " "taste terribly bitter and can upset your stomach." msgstr "" +"Garść żołędzi, jeszcze w skorupkach. Wiewiórki je lubią, ale smakują " +"okropnie gorzko i mogą rozstroić żołądek." #: lang/json/COMESTIBLE_from_json.py msgid "roasted acorns" msgid_plural "roasted acorns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść prażonych żołędzi" +msgstr[1] "garście prażonych żołędzi" +msgstr[2] "garści prażonych żołędzi" +msgstr[3] "garści prażonych żołędzi" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "Garść prażonych żołędzi." @@ -59680,12 +59972,12 @@ msgstr "Garść prażonych żołędzi." #: lang/json/COMESTIBLE_from_json.py msgid "cooked acorn meal" msgid_plural "cooked acorn meal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowana porcja mączki z żołędzi" +msgstr[1] "gotowane porcje mączki z żołędzi" +msgstr[2] "gotowanych porcji mączki z żołędzi" +msgstr[3] "gotowanej porcji mączki z żołędzi" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -59702,7 +59994,7 @@ msgstr[1] "foie gras" msgstr[2] "foie gras" msgstr[3] "foie gras" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -59718,7 +60010,7 @@ msgstr[1] "wątróbka z cebulą" msgstr[2] "wątróbka z cebulą" msgstr[3] "wątróbka z cebulą" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "Klasyczny sposób podania wątróbki." @@ -59726,10 +60018,10 @@ msgstr "Klasyczny sposób podania wątróbki." #: lang/json/COMESTIBLE_from_json.py msgid "fried liver" msgid_plural "fried livers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "smażona wątróbka" +msgstr[1] "smażone wątróbki" +msgstr[2] "smażonych wątróbek" +msgstr[3] "smażonej wątróbki" #. ~ Description for fried liver #. ~ Description for deep-fried tripe @@ -59740,10 +60032,10 @@ msgstr "Nie ma nic lepszego nad coś głęboko smażonego." #: lang/json/COMESTIBLE_from_json.py msgid "humble pie" msgid_plural "humble pies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pokorna pieczeń" +msgstr[1] "pokorne pieczenie" +msgstr[2] "pokornych pieczeni" +msgstr[3] "pokornej pieczeni" #. ~ Description for humble pie #: lang/json/COMESTIBLE_from_json.py @@ -59757,10 +60049,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "stewed tripe" msgid_plural "stewed tripes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "flaczki" +msgstr[1] "porcje flaczków" +msgstr[2] "porcji flaczków" +msgstr[3] "porcji flaczków" #. ~ Description for stewed tripe #: lang/json/COMESTIBLE_from_json.py @@ -59774,10 +60066,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "deep-fried tripe" msgid_plural "deep-fried tripes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "smażone flaczki" +msgstr[1] "porcje smażonych flaczków" +msgstr[2] "porcji smażonych flaczków" +msgstr[3] "porcje smażonych flaczków" #: lang/json/COMESTIBLE_from_json.py msgid "leverpostej" @@ -59787,7 +60079,7 @@ msgstr[1] "pasztet z wątróbki" msgstr[2] "pasztet z wątróbki" msgstr[3] "pasztet z wątróbki" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -59797,10 +60089,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fried brain" msgid_plural "fried brains" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "smażony mózg" +msgstr[1] "smażone mózgi" +msgstr[2] "smażonych mózgów" +msgstr[3] "smażonego mózgu" #. ~ Description for fried brain #: lang/json/COMESTIBLE_from_json.py @@ -59810,10 +60102,10 @@ msgstr "Nie wiem czego się spodziewałeś. Został usmażony w głębokim tłus #: lang/json/COMESTIBLE_from_json.py msgid "deviled kidney" msgid_plural "deviled kidneys" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "faszerowana nerka" +msgstr[1] "faszerowane nerki" +msgstr[2] "faszerowanych nerek" +msgstr[3] "faszerowanej nerki" #. ~ Description for deviled kidney #: lang/json/COMESTIBLE_from_json.py @@ -59823,10 +60115,10 @@ msgstr "Pyszny sposób na przyrządzenie nerek." #: lang/json/COMESTIBLE_from_json.py msgid "grilled sweetbread" msgid_plural "grilled sweetbreads" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "grillowana nerkówka" +msgstr[1] "grillowane nerkówki" +msgstr[2] "grillowanych nerkówek" +msgstr[3] "grillowanej nerkówki" #. ~ Description for grilled sweetbread #: lang/json/COMESTIBLE_from_json.py @@ -59836,10 +60128,10 @@ msgstr "Doskonałe w smaku grillowane cząstki nerek." #: lang/json/COMESTIBLE_from_json.py msgid "canned liver" msgid_plural "canned livers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wątróbka z puszki" +msgstr[1] "wątróbki z puszki" +msgstr[2] "wątróbek z puszki" +msgstr[3] "wątróbki z puszki" #. ~ Description for canned liver #: lang/json/COMESTIBLE_from_json.py @@ -59849,10 +60141,10 @@ msgstr "Wątróbka zakonserwowana w puszce. Pełna witamin z grupy B." #: lang/json/COMESTIBLE_from_json.py msgid "lung provence" msgid_plural "lung provences" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "płucka po prowansalsku" +msgstr[1] "płucka po prowansalsku" +msgstr[2] "płucek po prowansalsku" +msgstr[3] "płucek po prowansalsku" #. ~ Description for lung provence #: lang/json/COMESTIBLE_from_json.py @@ -59862,10 +60154,10 @@ msgstr "Pyszny sposób na przyrządzenie płucek." #: lang/json/COMESTIBLE_from_json.py msgid "tÖttchen" msgid_plural "tÖttchens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ragout tÖttchen" +msgstr[1] "porcje ragout tÖttchen" +msgstr[2] "porcji ragout tÖttchen" +msgstr[3] "porcji ragout tÖttchen" #. ~ Description for tÖttchen #: lang/json/COMESTIBLE_from_json.py @@ -59907,10 +60199,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "artifical sausage casing" msgid_plural "artifical sausage casings" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "sztuczna kiełbaśnica" +msgstr[1] "sztuczne kiełbaśnice" +msgstr[2] "sztucznych kiełbaśnic" +msgstr[3] "sztucznej kiełbaśnicy" #. ~ Description for artifical sausage casing #: lang/json/COMESTIBLE_from_json.py @@ -59918,6 +60210,8 @@ msgid "" "Sausage casings made from plastic bags. Ready to be used for forming meat " "products." msgstr "" +"Osłonki wędliniarskie wykonane z worków foliowych. Gotowe do użycia do " +"formowania wyrobów mięsnych." #: lang/json/COMESTIBLE_from_json.py msgid "homemade hot dog" @@ -60014,10 +60308,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "honeydew" msgid_plural "honeydews" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "spadź" +msgstr[1] "porcje spadzi" +msgstr[2] "porcji spadzi" +msgstr[3] "porcji spadzi" #. ~ Description for honeydew #: lang/json/COMESTIBLE_from_json.py @@ -60055,7 +60349,7 @@ msgstr[1] "żelatyna z marloss" msgstr[2] "żelatyna z marloss" msgstr[3] "żelatyna z marloss" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -60093,7 +60387,7 @@ msgstr[1] "drożdże" msgstr[2] "drożdży" msgstr[3] "drożdży" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -60108,7 +60402,7 @@ msgstr[1] "mączki kostne" msgstr[2] "mączek kostnych" msgstr[3] "mączki kostnej" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -60123,7 +60417,7 @@ msgstr[1] "sproszkowane żelatyny" msgstr[2] "sproszkowanych żelatyn" msgstr[3] "sproszkowanej żelatyny" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -60139,7 +60433,7 @@ msgstr[1] "świeże żelatyny" msgstr[2] "świeżych żelatyn" msgstr[3] "świeżej żelatyny" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "Świeża żelatyna." @@ -60152,7 +60446,7 @@ msgstr[1] "skażone mączki kostne" msgstr[2] "skażonych mączek kostnych" msgstr[3] "skażonej mączki kostna" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "Ta szara mączka kostna została zrobiona z przegniłych kości." @@ -60165,7 +60459,7 @@ msgstr[1] "chitynowa mączka" msgstr[2] "chitynowa mączka" msgstr[3] "chitynowa mączka" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -60224,7 +60518,7 @@ msgstr[1] "sucha fasola jaś" msgstr[2] "sucha fasola jaś" msgstr[3] "sucha fasola jaś" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -60241,7 +60535,7 @@ msgstr[1] "gotowana fasola jaś" msgstr[2] "gotowana fasola jaś" msgstr[3] "gotowana fasola jaś" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "Porcja od serca gotowanej fasoli typu jaś." @@ -60254,8 +60548,8 @@ msgstr[1] "tofu" msgstr[2] "tofu" msgstr[3] "tofu" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -60280,7 +60574,7 @@ msgstr[1] "suszone tofu" msgstr[2] "suszone tofu" msgstr[3] "suszone tofu" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -60295,7 +60589,7 @@ msgstr[1] "soje" msgstr[2] "soi" msgstr[3] "soi" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -60329,7 +60623,7 @@ msgstr[1] "surowe soczewice" msgstr[2] "surowych soczewic" msgstr[3] "surowej soczewicy" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -60345,7 +60639,7 @@ msgstr[1] "pyszne posiłki Foodplace™" msgstr[2] "pysznych posiłków Foodplace™" msgstr[3] "pysznego posiłku Foodplace™" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -60363,7 +60657,7 @@ msgstr[1] "odpowiednie przekąski™ Foodplace" msgstr[2] "odpowiednich przekąsek™ Foodplace" msgstr[3] "odpowiedniej przekąski™ Foodplace" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "Prawdziwy posiłek teraz w formacie kieszonkowym!" @@ -60376,7 +60670,7 @@ msgstr[1] "gotowane soczewice" msgstr[2] "gotowanych soczewic" msgstr[3] "gotowanej soczewicy" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -60390,7 +60684,7 @@ msgstr[1] "kawa mielona" msgstr[2] "kawa mielona" msgstr[3] "kawa mielona" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -60407,7 +60701,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -60424,7 +60718,7 @@ msgstr[1] "miód skrystalizowany" msgstr[2] "miód skrystalizowany" msgstr[3] "miód skrystalizowany" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -60475,7 +60769,7 @@ msgstr[1] "pasza dla bydła" msgstr[2] "pasza dla bydła" msgstr[3] "pasza dla bydła" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -60492,7 +60786,7 @@ msgstr[1] "ptasie karmy" msgstr[2] "ptasich karm" msgstr[3] "ptasiej karmy" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -60509,7 +60803,7 @@ msgstr[1] "mokre karmy dla psa" msgstr[2] "mokrych karm dla psa" msgstr[3] "mokrej karmy dla psa" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -60526,7 +60820,7 @@ msgstr[1] "suche karmy dla psa" msgstr[2] "suchych karm dla psa" msgstr[3] "suchej karmy dla psa" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -60543,7 +60837,7 @@ msgstr[1] "mokre karmy dla kota" msgstr[2] "mokrych karm dla kota" msgstr[3] "mokrej karmy dla kota" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -60560,7 +60854,7 @@ msgstr[1] "suche karmy dla kota" msgstr[2] "suchych karm dla kota" msgstr[3] "suchej karmy dla kota" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -60614,10 +60908,10 @@ msgstr "Nektar. Jeśli to widzisz to błąd." #: lang/json/COMESTIBLE_from_json.py msgid "black tea bag" msgid_plural "black tea bags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "torebka czarnej herbaty" +msgstr[1] "torebki czarnej herbaty" +msgstr[2] "torebek czarnej herbaty" +msgstr[3] "torebki czarnej herbaty" #. ~ Description for black tea bag #: lang/json/COMESTIBLE_from_json.py @@ -60631,10 +60925,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "green tea bag" msgid_plural "green tea bags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "torebka zielonej herbaty" +msgstr[1] "torebki zielonej herbaty" +msgstr[2] "torebek zielonej herbaty" +msgstr[3] "torebki zielonej herbaty" #. ~ Description for green tea bag #: lang/json/COMESTIBLE_from_json.py @@ -60648,10 +60942,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fruit tea bag" msgid_plural "fruit tea bags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "torebka herbaty owocowej" +msgstr[1] "torebki herbaty owocowej" +msgstr[2] "torebek herbaty owocowej" +msgstr[3] "torebki herbaty owocowej" #. ~ Description for fruit tea bag #: lang/json/COMESTIBLE_from_json.py @@ -60665,10 +60959,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "herbal tea bag" msgid_plural "herbal tea bags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "torebka herbaty ziołowej" +msgstr[1] "torebki herbaty ziołowej" +msgstr[2] "torebek herbaty ziołowej" +msgstr[3] "torebki herbaty ziołowej" #. ~ Description for herbal tea bag #: lang/json/COMESTIBLE_from_json.py @@ -60682,10 +60976,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "dandelion tea bag" msgid_plural "dandelion tea bags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "torebka herbaty z mleczy" +msgstr[1] "torebki herbaty z mleczy" +msgstr[2] "torebek herbaty z mleczy" +msgstr[3] "torebki herbaty z mleczy" #. ~ Description for dandelion tea bag #: lang/json/COMESTIBLE_from_json.py @@ -60699,10 +60993,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chamomile tea bag" msgid_plural "chamomile tea bags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "torebka herbaty rumiankowej" +msgstr[1] "torebki herbaty rumiankowej" +msgstr[2] "torebek herbaty rumiankowej" +msgstr[3] "torebki herbaty rumiankowej" #. ~ Description for chamomile tea bag #: lang/json/COMESTIBLE_from_json.py @@ -60716,12 +61010,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "instant coffee mix" msgid_plural "instant coffee mix" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kawa instant" +msgstr[1] "kawy instant" +msgstr[2] "kaw instant" +msgstr[3] "kawy instant" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -60772,8 +61066,7 @@ msgstr[1] "drinki proteinowe" msgstr[2] "drinków proteinowych" msgstr[3] "drinku proteinowego" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" @@ -60782,7 +61075,7 @@ msgstr[1] "drinki z zielonej pożywki" msgstr[2] "drinków z zielonej pożywki" msgstr[3] "drinku z zielonej pożywki" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -60792,14 +61085,11 @@ msgstr[1] "drinki z myślącej pożywki" msgstr[2] "drinków z myślącej pożywki" msgstr[3] "drinku z myślącej pożywki" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -60826,8 +61116,7 @@ msgstr[1] "proszki proteinowe" msgstr[2] "proszków proteinowych" msgstr[3] "proszku proteinowego" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" @@ -60836,7 +61125,7 @@ msgstr[1] "proszki z zielonej pożywki" msgstr[2] "proszków z zielonej pożywki" msgstr[3] "proszku z zielonej pożywki" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -60846,7 +61135,7 @@ msgstr[1] "proszki z myślącej pożywki" msgstr[2] "proszków z myślącej pożywki" msgstr[3] "proszku z myślącej pożywki" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -60872,9 +61161,9 @@ msgid "" "\n" "Now, you hold a piece of famous crowdfunding history in your hands. How exciting." msgstr "" -"SoyPelusa zorganizowała udaną kampanię społecznościową gromadzącą fundusze na produkcję ich markowego batonu proteinowego o nazwie \"DaiZoom\".\n" +"SoyPelusa zorganizowała udaną kampanię społecznościową gromadzącą fundusze na produkcję ich markowego batonu proteinowego o nazwie „DaiZoom”.\n" "\n" -"Człowiek może podobno przeżyć w nieskończoność, konsumując jeden z tych batonów trzy razy na dzień. Gdy jednak osoby wspierające finansowo produkt dostały go do rąk wyszła na jaw jedna jedyna wada: większość konsumentów wolałaby głodować niż zaznać smaku tego batona. Nie sprzedano zatem ani ułamka pełnych po brzegi magazynów, a gdy firma niechybnie zbankrutowała, dało to impuls by FEMA zagarnęła je wszystkie po kosztach, wypełniając nimi schrony ewakuacyjne.\n" +"Człowiek może podobno przeżyć w nieskończoność, konsumując jeden z tych batonów trzy razy na dzień. Gdy jednak osoby wspierające finansowo produkt dostały go do rąk wyszła na jaw jedna jedyna wada: większość konsumentów wolałaby głodować, niż zaznać smaku tego batona. Nie sprzedano zatem ani ułamka pełnych po brzegi magazynów, a gdy firma niechybnie zbankrutowała, dało to impuls, by FEMA zagarnęła je wszystkie po kosztach, wypełniając nimi schrony ewakuacyjne.\n" "\n" "Trzymasz więc w swoich dłoniach kawał historii finansowania społecznościowego. Jakie to ekscytujące." @@ -60886,8 +61175,7 @@ msgstr[1] "szejki proteinowe" msgstr[2] "szejków proteinowych" msgstr[3] "szejku proteinowego" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" @@ -60896,7 +61184,7 @@ msgstr[1] "szejki z zielonej pożywki" msgstr[2] "szejków z zielonej pożywki" msgstr[3] "szejku z zielonej pożywki" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -60922,7 +61210,7 @@ msgstr[1] "wzmocnione szejki proteinowe" msgstr[2] "wzmocnionych szejków proteinowych" msgstr[3] "wzmocnionego szejku proteinowego" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -60932,7 +61220,7 @@ msgstr[1] "wzmocnione szejki z zielonej pożywki" msgstr[2] "wzmocnionych szejków z zielonej pożywki" msgstr[3] "wzmocnionego szejku z zielonej pożywki" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -61015,7 +61303,7 @@ msgstr[1] "jagody" msgstr[2] "jagód" msgstr[3] "jagody" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "Niebieskie, co nie znaczy że smutne." @@ -61028,7 +61316,7 @@ msgstr[1] "truskawki" msgstr[2] "truskawek" msgstr[3] "truskawki" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "Pyszne, czerwone, duże soczyste jagody. Często rosną dziko na polach." @@ -61041,7 +61329,7 @@ msgstr[1] "żurawiny" msgstr[2] "żurawin" msgstr[3] "żurawiny" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "Kwaśne czerwone jagody. Dobre dla zdrowia." @@ -61054,7 +61342,7 @@ msgstr[1] "maliny" msgstr[2] "malin" msgstr[3] "malina" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "Słodka czerwona jagoda." @@ -61067,7 +61355,7 @@ msgstr[1] "borówki" msgstr[2] "borówek" msgstr[3] "borówki" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "Borówki, często mylone z jagodami." @@ -61080,7 +61368,7 @@ msgstr[1] "morwy" msgstr[2] "morw" msgstr[3] "morwy" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -61098,7 +61386,7 @@ msgstr[1] "czarne bzy" msgstr[2] "czarnych bzów" msgstr[3] "czarnego bzu" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -61113,7 +61401,7 @@ msgstr[1] "owoce dzikiej róży" msgstr[2] "owoców dzikiej róży" msgstr[3] "owocu dzikiej róży" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "Owoc zapylonego kwiatu róży." @@ -61169,7 +61457,7 @@ msgstr[1] "wiśnie" msgstr[2] "wiśni" msgstr[3] "wiśni" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "Czerwone słodkie owoce z pestką, które rosną na drzewach." @@ -61196,7 +61484,7 @@ msgstr[1] "winogrona" msgstr[2] "winogron" msgstr[3] "winogorna" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "Pęk soczystych winogron." @@ -61274,7 +61562,7 @@ msgstr[1] "jeżyny" msgstr[2] "jeżyn" msgstr[3] "jeżyny" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "Ciemniejszy kuzyn malin." @@ -61340,7 +61628,7 @@ msgstr[1] "morele" msgstr[2] "moreli" msgstr[3] "moreli" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "Miękkoskóry owoc podobny do brzoskwini." @@ -61391,7 +61679,7 @@ msgstr[1] "pysznogłowki" msgstr[2] "pysznogłówek" msgstr[3] "pysznogłówki" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -61406,7 +61694,7 @@ msgstr[1] "brokuły" msgstr[2] "brokuły" msgstr[3] "brokuły" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "Twardawe, ale dość smaczne." @@ -61419,7 +61707,7 @@ msgstr[1] "gryka" msgstr[2] "gryka" msgstr[3] "gryka" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -61449,7 +61737,7 @@ msgstr[1] "szpinak" msgstr[2] "szpinak" msgstr[3] "szpinak" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "Garść liści szpinaku." @@ -61511,7 +61799,7 @@ msgstr[1] "selery" msgstr[2] "selerów" msgstr[3] "selera" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "Ani smaczny, ani pożywny, ale komponuje się w sałacie warzywnej." @@ -61541,7 +61829,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "Pyszne ziarna kukurydzy." @@ -61554,7 +61842,7 @@ msgstr[1] "kaczany" msgstr[2] "kaczanów" msgstr[3] "kaczana" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -61583,10 +61871,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "chili pepper" msgid_plural "chili peppers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "papryczka chili" +msgstr[1] "papryczki chili" +msgstr[2] "papryczek chili" +msgstr[3] "papryczki chili" #. ~ Description for chili pepper #: lang/json/COMESTIBLE_from_json.py @@ -61633,7 +61921,7 @@ msgstr[1] "salsefie" msgstr[2] "salsefie" msgstr[3] "salsefie" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -61651,7 +61939,7 @@ msgstr[1] "cykorie" msgstr[2] "cykorii" msgstr[3] "cykorii" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -61808,7 +62096,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -61858,7 +62146,7 @@ msgstr[1] "liście chrzanu" msgstr[2] "liści chrzanu" msgstr[3] "liści chrzanu" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -61875,7 +62163,7 @@ msgstr[1] "mlecze" msgstr[2] "mlecze" msgstr[3] "mlecze" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -61891,7 +62179,7 @@ msgstr[1] "łopiany" msgstr[2] "łopianów" msgstr[3] "łopianu" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -61914,10 +62202,10 @@ msgstr "Kwaśne łodygi rabarbaru, używane często do wypieku ciast." #: lang/json/COMESTIBLE_from_json.py msgid "sugar beet" msgid_plural "sugar beets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "burak cukrowy" +msgstr[1] "buraki cukrowe" +msgstr[2] "buraków cukrowych" +msgstr[3] "buraka cukrowego" #. ~ Description for sugar beet #: lang/json/COMESTIBLE_from_json.py @@ -61931,10 +62219,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "black tea leaf" msgid_plural "black tea leaves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "liść czarnej herbaty" +msgstr[1] "liście czarnej herbaty" +msgstr[2] "liści czarnej herbaty" +msgstr[3] "liścia czarnej herbaty" #. ~ Description for black tea leaf #: lang/json/COMESTIBLE_from_json.py @@ -61948,10 +62236,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "green tea leaf" msgid_plural "green tea leaves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "liść zielonej herbaty" +msgstr[1] "liście zielonej herbaty" +msgstr[2] "liści zielonej herbaty" +msgstr[3] "liścia zielonej herbaty" #. ~ Description for green tea leaf #: lang/json/COMESTIBLE_from_json.py @@ -62019,7 +62307,7 @@ msgstr[1] "dzikie warzywa" msgstr[2] "dzikie warzywa" msgstr[3] "dzikie warzywa" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -62060,7 +62348,7 @@ msgstr[1] "surowa fasola" msgstr[2] "surowa fasola" msgstr[3] "surowa fasola" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -62077,7 +62365,7 @@ msgstr[1] "surowe soczewice" msgstr[2] "surowych soczewic" msgstr[3] "surowych soczewic" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "Surowa, niegotowana soczewica. Może być ugotowana." @@ -62090,7 +62378,7 @@ msgstr[1] "pędy paproci" msgstr[2] "pędów paproci" msgstr[3] "pędu paproci" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -62137,8 +62425,7 @@ msgstr[1] "kanapki delux" msgstr[2] "kanapek delux" msgstr[3] "kanapek delux" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -62154,6 +62441,34 @@ msgid "" "nutritious!" msgstr "Kanapka z mięsem, warzywami, serem i przyprawami. Pożywna i smaczna." +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" +"Klasyk sprzed kataklizmu, prawdopodobnie przyrządzany z użyciem znaczących " +"zamienników. Kluczowe składniki to specjalny sos i kiszona kapusta, a także " +"podsmażany na patelni chleb, mięso i ser." + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -62196,10 +62511,10 @@ msgstr "Pyszna kanapka posmarowana dżemem." #: lang/json/COMESTIBLE_from_json.py msgid "jam and cheese sandwich" msgid_plural "jam and cheese sandwiches" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kanapka z dżemem i serem" +msgstr[1] "kanapki z dżemem i serem" +msgstr[2] "kanapek z dżemem i serem" +msgstr[3] "kanapki z dżemem i serem" #. ~ Description for jam and cheese sandwich #: lang/json/COMESTIBLE_from_json.py @@ -62209,10 +62524,10 @@ msgstr "Pyszna kanapka z dżemem i serem." #: lang/json/COMESTIBLE_from_json.py msgid "jam and butter sandwich" msgid_plural "jam and butter sandwiches" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kanapka z dżemem i masłem" +msgstr[1] "kanapki z dżemem i masłem" +msgstr[2] "kanapek z dżemem i masłem" +msgstr[3] "kanapki z dżemem i masłem" #. ~ Description for jam and butter sandwich #: lang/json/COMESTIBLE_from_json.py @@ -62222,12 +62537,12 @@ msgstr "Pyszna kanapka z dżemem i masłem." #: lang/json/COMESTIBLE_from_json.py msgid "fairy bread" msgid_plural "fairy bread" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "chleb wróżek" +msgstr[1] "chleby wróżek" +msgstr[2] "chlebów wróżek" +msgstr[3] "chleba wróżek" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -62286,8 +62601,7 @@ msgstr[1] "kanapki z mięsem" msgstr[2] "kanapek z mięsem" msgstr[3] "kanapek z mięsem" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" @@ -62296,8 +62610,8 @@ msgstr[1] "kanapka z mięśniaka" msgstr[2] "kanapka z mięśniaka" msgstr[3] "kanapka z mięśniaka" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" @@ -62306,10 +62620,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -62421,10 +62733,10 @@ msgstr "Pyszny rybny bajgiel ze szpinakiem i jajkiem." #: lang/json/COMESTIBLE_from_json.py msgid "BLT" msgid_plural "BLTs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kanapka z bekonem, sałatą i pomidorem" +msgstr[1] "kanapki z bekonem, sałatą i pomidorem" +msgstr[2] "kanapek z bekonem, sałatą i pomidorem" +msgstr[3] "kanapki z bekonem, sałatą i pomidorem" #. ~ Description for BLT #: lang/json/COMESTIBLE_from_json.py @@ -62455,7 +62767,7 @@ msgstr[1] "zarodniki grzybów" msgstr[2] "zarodniki grzybów" msgstr[3] "zarodniki grzybów" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "Nieco zarodników grzybów." @@ -62468,7 +62780,7 @@ msgstr[1] "kłącze chmielu" msgstr[2] "kłącze chmielu" msgstr[3] "kłącze chmielu" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "Kłącze chmielu, z którego wyrośnie nowa roślina." @@ -62485,7 +62797,7 @@ msgstr[1] "nasiona jeżyn" msgstr[2] "nasiona jeżyn" msgstr[3] "nasiona jeżyn" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "Nieco nasion jeżyn." @@ -62502,7 +62814,7 @@ msgstr[1] "nasiona jagód" msgstr[2] "nasiona jagód" msgstr[3] "nasiona jagód" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "Nieco nasion jagód." @@ -62519,7 +62831,7 @@ msgstr[1] "nasiona żurawiny" msgstr[2] "nasiona żurawiny" msgstr[3] "nasiona żurawiny" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "Nieco nasion żurawiny." @@ -62536,7 +62848,7 @@ msgstr[1] "nasiona borówki" msgstr[2] "nasion borówki" msgstr[3] "nasiona borówki" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "Trochę nasion borówki." @@ -62553,7 +62865,7 @@ msgstr[1] "nasiona morwy" msgstr[2] "nasion morwy" msgstr[3] "nasiona morwy" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "Trochę nasion morwy." @@ -62570,7 +62882,7 @@ msgstr[1] "nasiona czarnego bzu" msgstr[2] "nasion czarnego bzu" msgstr[3] "nasiona czarnego bzu" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "Trochę nasion czarnego bzu." @@ -62587,7 +62899,7 @@ msgstr[1] "nasiona malin" msgstr[2] "nasiona malin" msgstr[3] "nasiona malin" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "Nieco nasion malin." @@ -62604,7 +62916,7 @@ msgstr[1] "nasiona truskawek" msgstr[2] "nasiona truskawek" msgstr[3] "nasiona truskawek" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "Nieco nasion truskawek." @@ -62621,7 +62933,7 @@ msgstr[1] "nasiona winogron" msgstr[2] "nasion winogron" msgstr[3] "nasiona winogron" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "Trochę nasion winogron." @@ -62638,14 +62950,14 @@ msgstr[1] "nasiona róży" msgstr[2] "nasion róży" msgstr[3] "nasiona róży" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "Trochę nasion róży." #: lang/json/COMESTIBLE_from_json.py msgid "rose" -msgstr "" +msgstr "róża" #: lang/json/COMESTIBLE_from_json.py msgid "tobacco seeds" @@ -62655,7 +62967,7 @@ msgstr[1] "nasiona tytoniu" msgstr[2] "nasiona tytoniu" msgstr[3] "nasiona tytoniu" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "Nieco nasion tytoniu." @@ -62672,7 +62984,7 @@ msgstr[1] "nasiona jęczmienia" msgstr[2] "nasiona jęczmienia" msgstr[3] "nasiona jęczmienia" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "Nieco nasion jęczmienia." @@ -62685,7 +62997,7 @@ msgstr[1] "nasiona buraka cukrowego" msgstr[2] "nasiona buraka cukrowego" msgstr[3] "nasiona buraka cukrowego" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "Nieco nasion buraka cukrowego." @@ -62698,7 +63010,7 @@ msgstr[1] "nasiona sałaty" msgstr[2] "nasiona sałaty" msgstr[3] "nasiona sałaty" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "Nieco nasion sałaty." @@ -62711,7 +63023,7 @@ msgstr[1] "nasiona kapusty" msgstr[2] "nasiona kapusty" msgstr[3] "nasiona kapusty" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "Nieco białych nasion kapusty." @@ -62724,7 +63036,7 @@ msgstr[1] "nasiona pomidora" msgstr[2] "nasiona pomidora" msgstr[3] "nasiona pomidora" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "Nieco nasion pomidora." @@ -62737,7 +63049,7 @@ msgstr[1] "nasiona bawełny" msgstr[2] "nasiona bawełny" msgstr[3] "nasiona bawełny" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -62755,7 +63067,7 @@ msgstr[1] "nasiona brokułów" msgstr[2] "nasiona brokułów" msgstr[3] "nasiona brokułów" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "Nieco nasion brokułów." @@ -62768,7 +63080,7 @@ msgstr[1] "nasiona cukinii" msgstr[2] "nasiona cukinii" msgstr[3] "nasiona cukinii" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "Nieco nasion cukinii." @@ -62781,7 +63093,7 @@ msgstr[1] "nasiona cebuli" msgstr[2] "nasiona cebuli" msgstr[3] "nasiona cebuli" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "Nieco nasion cebuli." @@ -62794,7 +63106,7 @@ msgstr[1] "nasiona czosnku" msgstr[2] "nasiona czosnku" msgstr[3] "nasiona czosnku" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "Nieco nasion czosnku." @@ -62811,7 +63123,7 @@ msgstr[1] "nasiona pałki wodnej" msgstr[2] "nasiona pałki wodnej" msgstr[3] "nasiona pałki wodnej" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "Po prostu nasiona." @@ -62828,7 +63140,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "Nieco nasion dalii." @@ -62845,7 +63157,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "Nieco nasion salsefii." @@ -62858,7 +63170,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "Nieco nasion cykorii." @@ -62871,7 +63183,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "Nieco ziaren z białego kwiatka." @@ -62884,7 +63196,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -62906,7 +63218,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "Nieco nasion kaktusa." @@ -62936,7 +63248,7 @@ msgstr[1] "nasiona marchwi" msgstr[2] "nasiona marchwi" msgstr[3] "nasiona marchwi" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "Nieco nasion marchwi." @@ -62949,7 +63261,7 @@ msgstr[1] "nasiona kukurydzy" msgstr[2] "nasiona kukurydzy" msgstr[3] "nasiona kukurydzy" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "Nieco nasion kukurydzy." @@ -62966,7 +63278,7 @@ msgstr[1] "nasiona papryczki chili" msgstr[2] "nasiona papryczki chili" msgstr[3] "nasiona papryczki chili" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "Nieco nasion papryczki chili." @@ -62979,7 +63291,7 @@ msgstr[1] "nasiona ogórka" msgstr[2] "nasiona ogórka" msgstr[3] "nasiona ogórka" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "Nieco nasion ogórka." @@ -63011,7 +63323,7 @@ msgstr[1] "nasiona konopi" msgstr[2] "nasiona konopi" msgstr[3] "nasiona konopi" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -63050,7 +63362,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "Surowe, niegotowane fasolki gotowe do sadzenia." @@ -63067,16 +63379,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "Nieco nasion soi." #: lang/json/COMESTIBLE_from_json.py msgid "soybean" -msgstr "" +msgstr "soja" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "Surowa, niegotowana soczewica, gotowa do sadzenia." @@ -63093,7 +63405,7 @@ msgstr[1] "nasiona tymianku" msgstr[2] "nasiona tymianku" msgstr[3] "nasiona tymianku" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "Nieco nasion tymianku." @@ -63114,7 +63426,7 @@ msgstr[1] "nasiona rzepaku" msgstr[2] "nasiona rzepaku" msgstr[3] "nasiona rzepaku" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "Garść nasion rzepaku. Mógłbyś wytłoczyć z nich olej." @@ -63127,7 +63439,7 @@ msgstr[1] "nasiona dyni" msgstr[2] "nasiona dyni" msgstr[3] "nasiona dyni" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "Garść surowych nasion dyni. Można je uprażyć i zjeść." @@ -63140,7 +63452,7 @@ msgstr[1] "nasiona słonecznika" msgstr[2] "nasiona słonecznika" msgstr[3] "nasiona słonecznika" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "Garść surowych nasion słonecznika. Można z nich tłoczyć olej." @@ -63162,7 +63474,7 @@ msgstr[1] "nasiona psitruja" msgstr[2] "nasiona psitruja" msgstr[3] "nasiona psitruja" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "Nieco nasion psitruja." @@ -63175,7 +63487,7 @@ msgstr[1] "nasiona pysznogłówki" msgstr[2] "nasiona pysznogłówki" msgstr[3] "nasiona pysznogłówki" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "Nieco nasion pysznogłówki." @@ -63188,7 +63500,7 @@ msgstr[1] "nasiona bylicy" msgstr[2] "nasiona bylicy" msgstr[3] "nasiona bylicy" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "Nieco nasion bylicy." @@ -63201,7 +63513,7 @@ msgstr[1] "nasiona gryki" msgstr[2] "nasiona gryki" msgstr[3] "nasiona gryki" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "Nieco nasion gryki." @@ -63214,7 +63526,7 @@ msgstr[1] "nasiona dzikich ziół" msgstr[2] "nasiona dzikich ziół" msgstr[3] "nasiona dzikich ziół" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "Garść nasion zebranych z dziko rosnących ziół." @@ -63231,7 +63543,7 @@ msgstr[1] "sadzonki dzikich warzyw" msgstr[2] "sadzonki dzikich warzyw" msgstr[3] "sadzonki dzikich warzyw" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "Kilka sadzonek dzikich warzyw." @@ -63248,7 +63560,7 @@ msgstr[1] "nasiona mleczy" msgstr[2] "nasiona mleczy" msgstr[3] "nasiona mleczy" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "Nieco nasion mleczy." @@ -63265,7 +63577,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "Nieco nasion łopianu." @@ -63282,7 +63594,7 @@ msgstr[1] "sadzonki rabarbaru" msgstr[2] "sadzonki rabarbaru" msgstr[3] "sadzonki rabarbaru" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "Kilka sadzonek rabarbaru." @@ -63295,7 +63607,7 @@ msgstr[1] "zarodniki smardzów" msgstr[2] "zarodniki smardzów" msgstr[3] "zarodniki smardzów" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "Nieco zarodników smardzów." @@ -63308,7 +63620,7 @@ msgstr[1] "nasiona bielunia" msgstr[2] "nasiona bielunia" msgstr[3] "nasiona bielunia" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -63332,7 +63644,7 @@ msgstr[1] "nasiona selera" msgstr[2] "nasiona selera" msgstr[3] "nasiona selera" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "Nieco nasion selera." @@ -63345,7 +63657,7 @@ msgstr[1] "nasiona owsa" msgstr[2] "nasiona owsa" msgstr[3] "nasiona owsa" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "Nieco nasion owsa." @@ -63366,7 +63678,7 @@ msgstr[1] "nasiona pszenicy" msgstr[2] "nasiona pszenicy" msgstr[3] "nasiona pszenicy" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "Nieco nasion pszenicy." @@ -63387,7 +63699,7 @@ msgstr[1] "prażone nasiona" msgstr[2] "prażone nasiona" msgstr[3] "prażone nasiona" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -63421,7 +63733,7 @@ msgstr[1] "ziarna kawy" msgstr[2] "ziarna kawy" msgstr[3] "ziarna kawy" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "Nieco ziaren kawy, mogą być uprażone." @@ -63434,7 +63746,7 @@ msgstr[1] "kawa ziarnista" msgstr[2] "kawa ziarnista" msgstr[3] "kawa ziarnista" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "Prażone ziarna kawy, mogą być przemielone." @@ -63447,7 +63759,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "Nieco nasion rumianku." @@ -63464,14 +63776,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "Trochę nasion wilczomlecza." #: lang/json/COMESTIBLE_from_json.py msgid "spurge" -msgstr "" +msgstr "wilczomlecz" #: lang/json/COMESTIBLE_from_json.py msgid "popcorn seeds" @@ -63481,7 +63793,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "Nieco nasion kukurydzy z odmiany popcorn." @@ -63494,7 +63806,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "Nieco nasion chrzanu." @@ -63507,7 +63819,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "Nieco nasion gorczycy. Można je utrzeć na proszek musztardowy." @@ -63520,7 +63832,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "Nieco nasion papryki." @@ -63546,8 +63858,7 @@ msgstr[1] "wywary z kości" msgstr[2] "wywarów z kości" msgstr[3] "wywaru z kości" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -63565,10 +63876,10 @@ msgstr "Smaczny i pożywny wywar z kości." #: lang/json/COMESTIBLE_from_json.py msgid "vegetable soup" msgid_plural "vegetable soups" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zupa jarzynowa" +msgstr[1] "zupy jarzynowa" +msgstr[2] "zup jarzynowych" +msgstr[3] "zupy jarzynowej" #. ~ Description for vegetable soup #: lang/json/COMESTIBLE_from_json.py @@ -63578,29 +63889,28 @@ msgstr "Pożywna i przepyszna w smaku solidna zupa z warzyw." #: lang/json/COMESTIBLE_from_json.py msgid "meat soup" msgid_plural "meat soups" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zupa z mięsem" +msgstr[1] "zupy z mięsem" +msgstr[2] "zup z mięsem" +msgstr[3] "zupy z mięsem" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zupa z trupa" +msgstr[1] "zupy z trupa" +msgstr[2] "zup z trupa" +msgstr[3] "zupy z trupa" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zupa z goblina" +msgstr[1] "zupy z goblina" +msgstr[2] "zup z goblina" +msgstr[3] "zupy z goblina" #. ~ Description for meat soup #: lang/json/COMESTIBLE_from_json.py @@ -63610,10 +63920,10 @@ msgstr "Pożywna i przepyszna w smaku solidna zupa z mięsem." #: lang/json/COMESTIBLE_from_json.py msgid "fish soup" msgid_plural "fish soups" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zupa rybna" +msgstr[1] "zupy rybne" +msgstr[2] "zup rybnych" +msgstr[3] "zupy rybnej" #. ~ Description for fish soup #: lang/json/COMESTIBLE_from_json.py @@ -63641,8 +63951,7 @@ msgstr[1] "curry z mięsem" msgstr[2] "curry z mięsem" msgstr[3] "curry z mięsem" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -63664,10 +63973,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -63685,18 +63992,18 @@ msgstr "Pożywana i smaczna zupa z darów natury. Darz bór!" #: lang/json/COMESTIBLE_from_json.py msgid "woods egg soup" msgid_plural "woods egg soups" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zupa drwala z jajkiem" +msgstr[1] "zupy drwala z jajkiem" +msgstr[2] "zup drwala z jajkiem" +msgstr[3] "zupy drwala z jajkiem" #: lang/json/COMESTIBLE_from_json.py msgid "chicken noodle soup" msgid_plural "chicken noodle soups" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "rosół z kury" +msgstr[1] "rosoły z kury" +msgstr[2] "rosołów z kury" +msgstr[3] "rosołu z kury" #. ~ Description for chicken noodle soup #: lang/json/COMESTIBLE_from_json.py @@ -63710,10 +64017,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "mushroom soup" msgid_plural "mushroom soups" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zupa grzybowa" +msgstr[1] "zupy grzybowe" +msgstr[2] "zup grzybowych" +msgstr[3] "zupy grzybowej" #. ~ Description for mushroom soup #: lang/json/COMESTIBLE_from_json.py @@ -63723,10 +64030,10 @@ msgstr "Papkowata, szara, półpłynna zupa zrobiona grzybów." #: lang/json/COMESTIBLE_from_json.py msgid "tomato soup" msgid_plural "tomato soups" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zupa pomidorowa" +msgstr[1] "zupy pomidorowe" +msgstr[2] "zup pomidorowych" +msgstr[3] "zupy pomidorowej" #. ~ Description for tomato soup #: lang/json/COMESTIBLE_from_json.py @@ -63744,7 +64051,7 @@ msgstr[1] "zupa z kurczaka z kluskami" msgstr[2] "zupa z kurczaka z kluskami" msgstr[3] "zupa z kurczaka z kluskami" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "Zupa z kurczaka z kluseczkami. Niezła!" @@ -63752,10 +64059,10 @@ msgstr "Zupa z kurczaka z kluseczkami. Niezła!" #: lang/json/COMESTIBLE_from_json.py msgid "cullen skink" msgid_plural "cullen skinks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zupa cullen skink" +msgstr[1] "zupy cullen skink" +msgstr[2] "zup cullen skink" +msgstr[3] "zupy cullen skink" #. ~ Description for cullen skink #: lang/json/COMESTIBLE_from_json.py @@ -63774,7 +64081,7 @@ msgstr[1] "sproszkowane chili" msgstr[2] "sproszkowane chili" msgstr[3] "sproszkowane chili" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -63786,12 +64093,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "hot sauce" msgid_plural "hot sauce" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ostry sos" +msgstr[1] "ostre sosy" +msgstr[2] "ostrych sosów" +msgstr[3] "ostrego sosu" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -63808,7 +64115,7 @@ msgstr[1] "cynamon" msgstr[2] "cynamon" msgstr[3] "cynamon" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -63822,7 +64129,7 @@ msgstr[1] "sproszkowane curry" msgstr[2] "sproszkowane curry" msgstr[3] "sproszkowane curry" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -63839,7 +64146,7 @@ msgstr[1] "czarny pieprz" msgstr[2] "czarny pieprz" msgstr[3] "czarny pieprz" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "Zmielone czarne ziarna pieprzu o ostrym zapachu." @@ -63852,7 +64159,7 @@ msgstr[1] "sól" msgstr[2] "sól" msgstr[3] "sól" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -63869,7 +64176,7 @@ msgstr[1] "włoskie przyprawy" msgstr[2] "włoskie przyprawy" msgstr[3] "włoskie przyprawy" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "Pachnąca mieszanina oregano, bazylii, tymianku i innych ziół." @@ -63882,7 +64189,7 @@ msgstr[1] "sól ziołowa" msgstr[2] "sól ziołowa" msgstr[3] "sól ziołowa" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "Sól z mieszanką aromatycznych ziół i sekretnych przypraw." @@ -63895,7 +64202,7 @@ msgstr[1] "cukier" msgstr[2] "cukier" msgstr[3] "cukier" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -63911,7 +64218,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -63932,7 +64239,7 @@ msgstr[1] "dzikie zioła" msgstr[2] "dzikie zioła" msgstr[3] "dzikie zioła" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -63949,7 +64256,7 @@ msgstr[1] "sos sojowy" msgstr[2] "sos sojowy" msgstr[3] "sos sojowy" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "Słony sfermentowany sos z soi." @@ -63967,7 +64274,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "Aromatyczny żółty proszek. Niejadalny w tej postaci." @@ -63975,10 +64282,10 @@ msgstr "Aromatyczny żółty proszek. Niejadalny w tej postaci." #: lang/json/COMESTIBLE_from_json.py msgid "artificial sweetener" msgid_plural "artificial sweeteners" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "słodzik" +msgstr[1] "słodziki" +msgstr[2] "słodzików" +msgstr[3] "słodzika" #. ~ Description for artificial sweetener #: lang/json/COMESTIBLE_from_json.py @@ -63992,10 +64299,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cooked cattail stalk" msgid_plural "cooked cattail stalks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowana łodyga pałki wodnej" +msgstr[1] "gotowane łodygi pałki wodnej" +msgstr[2] "gotowanych łodyg pałki wodnej" +msgstr[3] "gotowanej łodygi pałki wodnej" #. ~ Description for cooked cattail stalk #: lang/json/COMESTIBLE_from_json.py @@ -64009,10 +64316,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "roasted cattail rhizome" msgid_plural "roasted cattail rhizomes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pieczone kłącze pałki wodnej" +msgstr[1] "pieczone kłącza pałki wodnej" +msgstr[2] "pieczonych kłączy pałki wodnej" +msgstr[3] "pieczonego kłącza pałki wodnej" #. ~ Description for roasted cattail rhizome #: lang/json/COMESTIBLE_from_json.py @@ -64031,7 +64338,7 @@ msgstr[1] "skrobia" msgstr[2] "skrobia" msgstr[3] "skrobia" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -64048,7 +64355,7 @@ msgstr[1] "gotowane liście mleczy" msgstr[2] "gotowane liście mleczy" msgstr[3] "gotowane liście mleczy" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "Gotowane liście dzikich mleczy. Smaczne i pożywne." @@ -64061,7 +64368,7 @@ msgstr[1] "smażone mlecze" msgstr[2] "smażone mlecze" msgstr[3] "smażone mlecze" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -64071,12 +64378,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cooked burdock greens" msgid_plural "cooked burdock greens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowany liść łopianu" +msgstr[1] "gotowane liście łopianu" +msgstr[2] "gotowanych liści łopianu" +msgstr[3] "gotowanego liścia łopianu" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "Gotowane liście łopianu. Smaczne i pożywne." @@ -64089,7 +64396,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -64136,7 +64443,7 @@ msgstr[1] "gotowane dzikie warzywa" msgstr[2] "gotowane dzikie warzywa" msgstr[3] "gotowane dzikie warzywa" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "Gotowane dzikie warzywa. Niezwykły kalejdoskop smaków." @@ -64164,7 +64471,7 @@ msgstr[1] "kasza gryczana" msgstr[2] "kasza gryczana" msgstr[3] "kasza gryczana" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -64173,12 +64480,12 @@ msgstr "Porcja ugotowanej kaszy gryczanej. Zdrowa i pożywna ale mdła." #: lang/json/COMESTIBLE_from_json.py msgid "canned corn" msgid_plural "canned corn" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "garść kukurydzy z puszki" +msgstr[1] "garście kukurydzy z puszki" +msgstr[2] "garści kukurydzy z puszki" +msgstr[3] "garści kukurydzy z puszki" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "Puszkowana kukurydza w wodzie. Do dna!" @@ -64186,12 +64493,12 @@ msgstr "Puszkowana kukurydza w wodzie. Do dna!" #: lang/json/COMESTIBLE_from_json.py msgid "corn on the cob" msgid_plural "corn on the cob" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kolba kukurydzy" +msgstr[1] "kolby kukurydzy" +msgstr[2] "kolb kukurydzy" +msgstr[3] "kolby kukurydzy" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "Kolba kukurydzy upieczona w folii aluminiowej." @@ -64204,7 +64511,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "Kolba kukurydzy usmażona na patelni z ziołami i przyprawami." @@ -64217,7 +64524,7 @@ msgstr[1] "hominy" msgstr[2] "homin" msgstr[3] "hominy" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -64234,7 +64541,7 @@ msgstr[1] "mąki kukurydziane" msgstr[2] "mąk kukurydzianych" msgstr[3] "mąki kukurydzianej" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "Ta żółta mąka z przemiału ziaren kukurydzy nadaje się do pieczenia." @@ -64247,7 +64554,7 @@ msgstr[1] "wegetariańska fasolka po bretońsku" msgstr[2] "wegetariańska fasolka po bretońsku" msgstr[3] "wegetariańska fasolka po bretońsku" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "Wolno duszona fasolka z warzywami. Bardzo smaczna i sycąca." @@ -64260,7 +64567,7 @@ msgstr[1] "suchy ryż" msgstr[2] "suchy ryż" msgstr[3] "suchy ryż" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -64277,7 +64584,7 @@ msgstr[1] "gotowany ryż" msgstr[2] "gotowany ryż" msgstr[3] "gotowany ryż" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "Porcja od serca gotowanego białego ryżu." @@ -64290,7 +64597,7 @@ msgstr[1] "ryż smażony" msgstr[2] "ryż smażony" msgstr[3] "ryż smażony" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "Ryż smażony z warzywami w stylu wschodniej kuchni. Smaczny i pożywny." @@ -64303,7 +64610,7 @@ msgstr[1] "ryż z fasolą" msgstr[2] "ryż z fasolą" msgstr[3] "ryż z fasolą" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -64313,12 +64620,12 @@ msgstr "Porcja ugotowanych razem ryżu i fasoli. Smaczne i zdrowe." #: lang/json/COMESTIBLE_from_json.py msgid "tofu fried rice" msgid_plural "tofu fried rice" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja ryżu smażonego z tofu" +msgstr[1] "porcje ryżu smażonego z tofu" +msgstr[2] "porcji ryżu smażonego z tofu" +msgstr[3] "porcji ryżu smażonego z tofu" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "Pyszny ryż smażony z tofu i warzywami. Smaczny i pożywny." @@ -64331,7 +64638,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -64348,7 +64655,7 @@ msgstr[1] "luksusowy wegetariański ryż z fasolą" msgstr[2] "luksusowy wegetariański ryż z fasolą" msgstr[3] "luksusowy wegetariański ryż z fasolą" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -64373,10 +64680,10 @@ msgstr "Apetyczne pieczone ziemniaki. Aż się proszą o śmietankę." #: lang/json/COMESTIBLE_from_json.py msgid "roasted carrot" msgid_plural "roasted carrots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pieczona marchewka" +msgstr[1] "pieczone marchewki" +msgstr[2] "pieczonych marchewek" +msgstr[3] "pieczonej marchewki" #. ~ Description for roasted carrot #: lang/json/COMESTIBLE_from_json.py @@ -64386,10 +64693,10 @@ msgstr "Prosta i smaczna pieczona marchewka." #: lang/json/COMESTIBLE_from_json.py msgid "mashed pumpkin" msgid_plural "mashed pumpkins" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja kremu z dyni" +msgstr[1] "porcje kremu z dyni" +msgstr[2] "porcji kremu z dyni" +msgstr[3] "porcji kremu z dyni" #. ~ Description for mashed pumpkin #: lang/json/COMESTIBLE_from_json.py @@ -64402,10 +64709,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "vegetable pie" msgid_plural "vegetable pies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "placek z warzywami" +msgstr[1] "placki z warzywami" +msgstr[2] "placków z warzywami" +msgstr[3] "placka z warzywami" #. ~ Description for vegetable pie #: lang/json/COMESTIBLE_from_json.py @@ -64415,10 +64722,10 @@ msgstr "Doskonały pieczony placek z pysznym nadzieniem warzywnym." #: lang/json/COMESTIBLE_from_json.py msgid "vegetable pizza" msgid_plural "vegetable pizzas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pizza wegetariańska" +msgstr[1] "pizze wegetariańskie" +msgstr[2] "pizz wegetariańskich" +msgstr[3] "pizzy wegetariańskiej" #. ~ Description for vegetable pizza #: lang/json/COMESTIBLE_from_json.py @@ -64437,7 +64744,7 @@ msgstr[1] "pesto" msgstr[2] "pesto" msgstr[3] "pesto" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -64463,10 +64770,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "salted veggy chunk" msgid_plural "salted veggy chunks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "solony kawałek warzywa" +msgstr[1] "solone kawałki warzyw" +msgstr[2] "solonych kawałków warzyw" +msgstr[3] "solonego kawałka warzywa" #. ~ Description for salted veggy chunk #: lang/json/COMESTIBLE_from_json.py @@ -64485,7 +64792,7 @@ msgstr[1] "spaghetti al pesto" msgstr[2] "spaghetti al pesto" msgstr[3] "spaghetti al pesto" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "Spaghetti z hojną porcją pesto na wierzchu. Mniam!" @@ -64514,7 +64821,7 @@ msgstr[1] "kapusta kiszona z zeszkloną cebulką" msgstr[2] "kapusta kiszona z zeszkloną cebulką" msgstr[3] "kapusta kiszona z zeszkloną cebulką" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -64542,10 +64849,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "dehydrated vegetable" msgid_plural "dehydrated vegetables" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja suszonych warzyw" +msgstr[1] "porcje suszonych warzyw" +msgstr[2] "porcji suszonych warzyw" +msgstr[3] "porcji suszonych warzyw" #. ~ Description for dehydrated vegetable #: lang/json/COMESTIBLE_from_json.py @@ -64564,7 +64871,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "Garść suszonych ziaren kukurydzy." @@ -64594,7 +64901,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -64606,10 +64913,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "vegetable salad" msgid_plural "vegetable salads" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "sałatka warzywna" +msgstr[1] "sałatki warzywne" +msgstr[2] "sałatek warzywnych" +msgstr[3] "sałatki warzywnej" #. ~ Description for vegetable salad #: lang/json/COMESTIBLE_from_json.py @@ -64692,7 +64999,7 @@ msgstr[1] "ryż sushi" msgstr[2] "ryż sushi" msgstr[3] "ryż sushi" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "Porcja ryżu w occie powszechnie używana do sushi." @@ -64705,7 +65012,7 @@ msgstr[1] "onigiri" msgstr[2] "onigiri" msgstr[3] "onigiri" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -64720,7 +65027,7 @@ msgstr[1] "warzywne hosomaki" msgstr[2] "warzywne hosomaki" msgstr[3] "warzywne hosomaki" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -64753,7 +65060,7 @@ msgstr[1] "kapusta kiszona" msgstr[2] "kapusta kiszona" msgstr[3] "kapusta kiszona" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -64778,12 +65085,12 @@ msgstr "Mniej kłująca wersja płatów kaktusa." #: lang/json/COMESTIBLE_from_json.py msgid "boiled fiddleheads" msgid_plural "boiled fiddleheads" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja gotowanych pędów paproci" +msgstr[1] "porcje gotowanych pędów paproci" +msgstr[2] "porcji gotowanych pędów paproci" +msgstr[3] "porcji gotowanych pędów paproci" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -64797,7 +65104,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "Pędy paproci przysmażone na tłuszczu. Delikatne i smaczne." @@ -64805,10 +65112,10 @@ msgstr "Pędy paproci przysmażone na tłuszczu. Delikatne i smaczne." #: lang/json/COMESTIBLE_from_json.py msgid "cooked bell pepper" msgid_plural "cooked bell peppers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowana papryka" +msgstr[1] "gotowane papryki" +msgstr[2] "gotowanych papryk" +msgstr[3] "gotowanej papryki" #. ~ Description for cooked bell pepper #: lang/json/COMESTIBLE_from_json.py @@ -64818,7 +65125,7 @@ msgid "" msgstr "" "Wydrylowana i gotowana papryka. Znacznie smaczniejsza po usunięciu nasion." -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "Surowa pszenica, niesmaczna." @@ -64831,7 +65138,7 @@ msgstr[1] "surowy makaron spaghetti" msgstr[2] "surowy makaron spaghetti" msgstr[3] "surowy makaron spaghetti" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -64848,7 +65155,7 @@ msgstr[1] "surowy makaron lazania" msgstr[2] "surowy makaron lazania" msgstr[3] "surowy makaron lazania" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -64865,7 +65172,7 @@ msgstr[1] "gotowany makaron" msgstr[2] "gotowany makaron" msgstr[3] "gotowany makaron" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "Świerży mokry makaron. Bez smaku, ale sycący." @@ -64878,7 +65185,7 @@ msgstr[1] "surowy makaron" msgstr[2] "surowy makaron" msgstr[3] "surowy makaron" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -64893,7 +65200,7 @@ msgstr[1] "makaron z serem" msgstr[2] "makaron z serem" msgstr[3] "makaron z serem" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "Jak serek się stopi makaronik dobrze wchodzi." @@ -64906,7 +65213,7 @@ msgstr[1] "mąka" msgstr[2] "mąka" msgstr[3] "mąka" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "Ta wzbogacona biała mąka nadaje się do pieczenia." @@ -64919,7 +65226,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -64936,7 +65243,7 @@ msgstr[1] "owsianka" msgstr[2] "owsianka" msgstr[3] "owsianka" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " @@ -64945,7 +65252,7 @@ msgstr "" "Suche płatki ze spłaszczonych ziaren owsa. Zdrowe i smaczne po ugotowaniu, a" " na sucho posłużą też jako pasza dla konia." -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "Surowy owies." @@ -64958,7 +65265,7 @@ msgstr[1] "ugotowana owsianka" msgstr[2] "ugotowana owsianka" msgstr[3] "ugotowana owsianka" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -64975,7 +65282,7 @@ msgstr[1] "ugotowana owsianka z dodatkami" msgstr[2] "ugotowana owsianka z dodatkami" msgstr[3] "ugotowana owsianka z dodatkami" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -64987,10 +65294,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pancake" msgid_plural "pancakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "naleśnik" +msgstr[1] "naleśniki" +msgstr[2] "naleśników" +msgstr[3] "naleśnika" #. ~ Description for pancake #: lang/json/COMESTIBLE_from_json.py @@ -65000,10 +65307,10 @@ msgstr "Puszyste naleśniki z prawdziwym syropem klonowym." #: lang/json/COMESTIBLE_from_json.py msgid "fruit pancake" msgid_plural "fruit pancakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "naleśnik z owocami" +msgstr[1] "naleśniki z owocami" +msgstr[2] "naleśników z owocami" +msgstr[3] "naleśnika z owocami" #. ~ Description for fruit pancake #: lang/json/COMESTIBLE_from_json.py @@ -65031,10 +65338,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "waffle" msgid_plural "waffles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gofr" +msgstr[1] "gofry" +msgstr[2] "gofrów" +msgstr[3] "gofra" #. ~ Description for waffle #: lang/json/COMESTIBLE_from_json.py @@ -65046,10 +65353,10 @@ msgstr "Czas na gofra, czas na gofra. Czy nie skusisz się na gofra?" #: lang/json/COMESTIBLE_from_json.py msgid "fruit waffle" msgid_plural "fruit waffles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gofr z owocami" +msgstr[1] "gofry z owocami" +msgstr[2] "gofrów z owocami" +msgstr[3] "gofra z owocami" #. ~ Description for fruit waffle #: lang/json/COMESTIBLE_from_json.py @@ -65080,7 +65387,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -65092,10 +65399,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "fruit pie" msgid_plural "fruit pies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "placek z owocami" +msgstr[1] "placki z owocami" +msgstr[2] "placków z owocami" +msgstr[3] "placka z owocami" #. ~ Description for fruit pie #: lang/json/COMESTIBLE_from_json.py @@ -65105,10 +65412,10 @@ msgstr "Przepyszne upieczone ciasto z owocowym nadzieniem." #: lang/json/COMESTIBLE_from_json.py msgid "cheese pizza" msgid_plural "cheese pizzas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pizza z serem" +msgstr[1] "pizze z serem" +msgstr[2] "pizz z serem" +msgstr[3] "pizzy z serem" #. ~ Description for cheese pizza #: lang/json/COMESTIBLE_from_json.py @@ -65123,7 +65430,7 @@ msgstr[1] "muesli" msgstr[2] "muesli" msgstr[3] "muesli" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -65135,10 +65442,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "maple pie" msgid_plural "maple pies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "placek klonowy" +msgstr[1] "placki klonowe" +msgstr[2] "placków klonowych" +msgstr[3] "placka klonowego" #. ~ Description for maple pie #: lang/json/COMESTIBLE_from_json.py @@ -65153,7 +65460,7 @@ msgstr[1] "szybki makaron" msgstr[2] "szybki makaron" msgstr[3] "szybki makaron" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -65163,10 +65470,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "cloutie dumpling" msgid_plural "cloutie dumplings" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "gotowany keks" +msgstr[1] "gotowane keksy" +msgstr[2] "gotowanych keksów" +msgstr[3] "gotowanego keksu" #. ~ Description for cloutie dumpling #: lang/json/COMESTIBLE_from_json.py @@ -65180,10 +65487,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "brioche" msgid_plural "brioches" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "brioszka" +msgstr[1] "brioszki" +msgstr[2] "brioszek" +msgstr[3] "brioszki" #. ~ Description for brioche #: lang/json/COMESTIBLE_from_json.py @@ -65193,10 +65500,10 @@ msgstr "Sycąca bułka drożdżowa, doskonała z herbatą w niedzielny poranek." #: lang/json/COMESTIBLE_from_json.py msgid "sponge cake" msgid_plural "sponge cakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "biszkopt" +msgstr[1] "biszkopty" +msgstr[2] "biszkoptów" +msgstr[3] "biszkoptu" #. ~ Description for sponge cake #: lang/json/COMESTIBLE_from_json.py @@ -65219,10 +65526,10 @@ msgstr "Celem tego ciasta jest zabranie cię w kosmiczną podróż." #: lang/json/COMESTIBLE_from_json.py msgid "brownie" msgid_plural "brownies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ciasto brownie" +msgstr[1] "ciasta brownie" +msgstr[2] "ciast brownie" +msgstr[3] "ciasta brownie" #. ~ Description for brownie #: lang/json/COMESTIBLE_from_json.py @@ -65400,7 +65707,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "Kłącze ananasa, z którego wyrośnie nowa roślina." @@ -65413,7 +65720,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "Nieco nasion melona." @@ -65426,7 +65733,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "Kilka sadzonek banana." @@ -65439,7 +65746,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "Kilka winorośli pomarańczy. Definitywnie GMO." @@ -65452,7 +65759,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "Kilka winorośli cytryny. Definitywnie GMO." @@ -65465,7 +65772,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "Dowód na to, że człowiek zaszedł za daleko przed Kataklizmem." @@ -65528,7 +65835,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "Świeżo ugotowany płat ludzkiego mięsa poznaczony odmrożeniem." @@ -65584,7 +65891,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -65601,7 +65908,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -65656,7 +65963,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -65802,7 +66109,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -65821,7 +66128,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -65938,7 +66245,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -65957,7 +66264,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -65976,7 +66283,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -65991,7 +66298,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -66008,7 +66315,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -66084,7 +66391,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -66107,7 +66414,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -66127,7 +66434,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -66147,7 +66454,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -66228,7 +66535,7 @@ msgstr[1] "H₂O™" msgstr[2] "H₂O™" msgstr[3] "H₂O™" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -66247,7 +66554,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -66263,7 +66570,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -66295,7 +66602,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -66329,7 +66636,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -66348,7 +66655,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -66371,7 +66678,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -66426,7 +66733,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -66509,7 +66816,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -66536,7 +66843,7 @@ msgstr "" "Bryła obcego hydrożelu z małymi, wijącymi się plamkami. Przydatna w " "rzemiośle. Można by go \"wypić\", ale nie ma mowy, żeby było to przyjemne." -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -66927,8 +67234,8 @@ msgstr[2] "" msgstr[3] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -66942,6 +67249,22 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -66998,6 +67321,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -67158,6 +67489,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -67206,30 +67545,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -67622,7 +67937,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -67709,7 +68024,7 @@ msgstr[1] "krwi tchniętej maną" msgstr[2] "krwi tchniętej maną" msgstr[3] "krwi tchniętej maną" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -67788,7 +68103,7 @@ msgstr "" "Zwłoki necco. Teraz to naprawdę wygląda jak gigantyczny wafel necco. " "Ugryzienie na pewno nie zaszkodzi, prawda?" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " @@ -67797,7 +68112,7 @@ msgstr "" "Garść gniotliwych, puchatych, mechatych, przepysznych pianek żelowych. Są " "dziwnie ciepłe…" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -67900,12 +68215,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "raw chocolate milk" msgid_plural "raw chocolate milk" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "surowe mleko czekoladowe" +msgstr[1] "surowe mleka czekoladowe" +msgstr[2] "surowych mlek czekoladowych" +msgstr[3] "surowego mleka czekoladowego" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -67919,7 +68234,7 @@ msgstr "" "wrażliwości dietetycznej, możesz chcieć je pasteryzować lub nawet zagotować " "przed wypiciem." -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -67930,12 +68245,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "liquid cacao" msgid_plural "liquid cacao" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "porcja płynnego kakao" +msgstr[1] "porcje płynnego kakao" +msgstr[2] "porcji płynnego kakao" +msgstr[3] "porcji płynnego kakao" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "Kakao w płynie, niesłodzone. Dość gorzkie w smaku." @@ -67943,12 +68258,12 @@ msgstr "Kakao w płynie, niesłodzone. Dość gorzkie w smaku." #: lang/json/COMESTIBLE_from_json.py msgid "reconstituted chocolate milk" msgid_plural "reconstituted chocolate milk" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mleko czekoladowe z proszku" +msgstr[1] "mleka czekoladowe z proszku" +msgstr[2] "mlek czekoladowe z proszku" +msgstr[3] "mleka czekoladowego z proszku" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -67960,12 +68275,12 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "powdered chocolate milk" msgid_plural "powdered chocolate milk" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mleko czekoladowe w proszku" +msgstr[1] "mleks czekoladowe w proszku" +msgstr[2] "mlek czekoladowe w proszku" +msgstr[3] "mleka czekoladowego w proszku" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -67990,7 +68305,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -68010,7 +68325,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -68022,10 +68337,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "caramel ointment" msgid_plural "caramel ointments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "maść karmelowa" +msgstr[1] "maści karmelowe" +msgstr[2] "maści karmelowych" +msgstr[3] "maści karmelowej" #. ~ Description for caramel ointment #: lang/json/COMESTIBLE_from_json.py @@ -68778,7 +69093,7 @@ msgstr[1] "sól kamienna" msgstr[2] "sól kamienna" msgstr[3] "sól kamienna" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py 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ą." @@ -68791,7 +69106,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -68808,7 +69123,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -68855,7 +69170,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -68869,7 +69184,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "Garść twardych orzechów pecan, wciąż w skorupce." @@ -68882,7 +69197,7 @@ msgstr[1] "pistacje" msgstr[2] "pistacji" msgstr[3] "pistacji" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -68896,7 +69211,7 @@ msgstr[1] "migdały" msgstr[2] "migdałów" msgstr[3] "migdała" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -68910,7 +69225,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -68925,7 +69240,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "Garść twardych orzechów laskowych, wciąż w skorupce." @@ -68938,7 +69253,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "Garść twardych kasztanów, wciąż w skorupce." @@ -68951,7 +69266,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "Garść twardych orzechów włoskich, wciąż w skorupce." @@ -69316,6 +69631,22 @@ msgstr "" "NACZELNY CHIRURG OSTRZEGA: Palenie powoduje raka płuc, choroby serca, " "rozedmę płuc i komplikacje porodowe." +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" +"Małe, ręcznie robione etui z drewna i skóry, przeznaczone do przechowywania " +"jednego lub dwóch cygar." + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -69329,6 +69660,23 @@ msgstr[3] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "Małe pudło kartonowe. Nie większe niż stopa w każdym wymiarze." +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" +"Małe drewniane pudełko, po kilka centymetrów z każdej strony, w sam raz do " +"przechowywania kilku drobiazgów." + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -69541,9 +69889,9 @@ msgstr "" msgid "clay canister" msgid_plural "clay canisters" msgstr[0] "gliniany kanister" -msgstr[1] "gliniany kanister" -msgstr[2] "gliniany kanister" -msgstr[3] "gliniany kanister" +msgstr[1] "gliniane kanistry" +msgstr[2] "glinianych kanistrów" +msgstr[3] "glinianego kanistra" #. ~ Description for clay canister #: lang/json/GENERIC_from_json.py @@ -69558,9 +69906,9 @@ msgstr "" msgid "clay hydria" msgid_plural "clay hydrias" msgstr[0] "gliniana hydria" -msgstr[1] "gliniana hydria" -msgstr[2] "gliniana hydria" -msgstr[3] "gliniana hydria" +msgstr[1] "gliniane hydrie" +msgstr[2] "glinianych hydrii" +msgstr[3] "glinianej hydrii" #. ~ Description for clay hydria #: lang/json/GENERIC_from_json.py @@ -70268,14 +70616,19 @@ msgid "" "electrical busses. With a few components and scraps of wire, you could " "quickly build a circuit on this, if you know what you're doing." msgstr "" +"Powszechnie używana w prototypowaniu elektroniki, bezlutowa płytka drukowana" +" jest małą płytką z tworzywa sztucznego wypełnioną setkami otworów " +"połączonych wewnętrznymi przewodami elektrycznymi. Mając kilka podzespołów i" +" trochę drutu, możesz szybko zbudować na niej obwód, jeśli znasz się na " +"rzeczy." #: lang/json/GENERIC_from_json.py msgid "magnetron" msgid_plural "magnetrons" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "magnetron" +msgstr[1] "magnetrony" +msgstr[2] "magnetronów" +msgstr[3] "magnetronu" #. ~ Description for magnetron #: lang/json/GENERIC_from_json.py @@ -70328,7 +70681,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "Pasta półproduktów zmielonych ziaren, prawie mąka." @@ -70341,7 +70694,7 @@ msgstr[1] "tlące się niedopałki" msgstr[2] "tlących się niedopałków" msgstr[3] "tlącego się niedopałku" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -70585,10 +70938,10 @@ msgstr "Gra, w której gracze próbują dowiedzieć się, kto zamordował lokaja #: lang/json/GENERIC_from_json.py msgid "key" msgid_plural "keys" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "klucz" +msgstr[1] "klucze" +msgstr[2] "kluczy" +msgstr[3] "klucza" #. ~ Description for key #: lang/json/GENERIC_from_json.py @@ -70599,6 +70952,34 @@ msgstr "" "Stary nieopisany klucz typu North American Cylinder. Bóg jeden wie do " "jakiego zamka pasuje; nie ma się co nim przejmować." +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" +"Zestaw małych ostrzy, które zaciskają się razem, aby odciąć koniec cygara." + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "Mała rurka przeznaczona do wycinania otworu w końcówce cygara." + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -70861,7 +71242,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Tubka silnego kleju. Używany w wielu recepturach rzemieślniczych." @@ -71198,9 +71579,9 @@ msgstr "" msgid "USB drive" msgid_plural "USB drives" msgstr[0] "pendrive USB" -msgstr[1] "pendrive USB" -msgstr[2] "pendrive USB" -msgstr[3] "pendrive USB" +msgstr[1] "pendrive'y USB" +msgstr[2] "pendrive'ów USB" +msgstr[3] "pendrive'a USB" #. ~ Description for USB drive #: lang/json/GENERIC_from_json.py @@ -71232,7 +71613,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -71416,7 +71797,7 @@ msgstr[1] "betony" msgstr[2] "betonów" msgstr[3] "betonu" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "Beton, gotowy do użycia w projektach budowlanych." @@ -72513,7 +72894,7 @@ msgstr[1] "trybiki" msgstr[2] "trybiki" msgstr[3] "trybiki" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "Kolekcja trybików i innych bebechów zegarka." @@ -72679,7 +73060,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -72712,7 +73093,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -72755,7 +73136,7 @@ msgstr[1] "zaprawa murarska" msgstr[2] "zaprawa murarska" msgstr[3] "zaprawa murarska" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "Zaprawa murarska, gotowa do użycia w projektach budowlanych." @@ -72812,7 +73193,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -72830,7 +73211,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "Płat bogatej w taninę kory drzewnej, użytecznej w garbowaniu skóry." @@ -72856,7 +73237,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -73382,7 +73763,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -73752,10 +74133,10 @@ msgstr[3] "zepsuta wieżyczka laserowa" #: lang/json/GENERIC_from_json.py msgid "fire brick" msgid_plural "fire bricks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wypalona cegła" +msgstr[1] "wypalone cegły" +msgstr[2] "wypalonych cegieł" +msgstr[3] "wypalonej cegły" #. ~ Description for fire brick #: lang/json/GENERIC_from_json.py @@ -73770,7 +74151,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "Sześcienna plastikowa kostka." @@ -73798,7 +74179,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -74022,7 +74403,7 @@ msgstr[3] "" #. ~ Use action message for transport freight employee badge. #: lang/json/GENERIC_from_json.py msgid "You add the facilities to your map" -msgstr "" +msgstr "Dodałeś obiekty do swojej mapy." #. ~ Description for visitor's pass #: lang/json/GENERIC_from_json.py @@ -74244,6 +74625,8 @@ msgid "" "A sample of things that make up key parts of being a snail. You will " "probably need to find a very large snail." msgstr "" +"Próbka rzeczy, które składają się na kluczowe aspekty bycia ślimakiem. " +"Prawdopodobnie będziesz musiał znaleźć bardzo dużego ślimaka." #: lang/json/GENERIC_from_json.py msgid "rabbit sample" @@ -74256,7 +74639,7 @@ msgstr[3] "" #. ~ Description for rabbit sample #: lang/json/GENERIC_from_json.py msgid "A tiny paw that came off of a rabbit. Please, no luck jokes." -msgstr "" +msgstr "Mała królicza łapka. Proszę, żadnych żartów o szczęściu." #: lang/json/GENERIC_from_json.py msgid "frog sample" @@ -74272,6 +74655,130 @@ msgid "" "A sample of things that make up key parts of being a frog. You will " "probably need to find a very large frog." msgstr "" +"Próbka rzeczy, które składają się na kluczowe aspekty bycia żabą. " +"Prawdopodobnie będziesz musiał znaleźć bardzo dużą żabę." + +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" +"Próbka rzeczy, które składają się na kluczowe części bycia owadem. " +"Prawdopodobnie będziesz musieć znaleźć bardzo dużego robaka." + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" +"Próbka rzeczy, które składają się na kluczowe części bycia bydlęciem. " +"Prawdopodobnie będziesz musieć znaleźć bardzo żywą krowę." + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" +"Próbka rzeczy, które stanowią kluczowe elementy bycia podziemnym " +"stworzeniem. Prawdopodobnie będziesz musieć znaleźć coś dużego, co żyje pod " +"ziemią." + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" +"Próbka rzeczy, które składają się na kluczowe elementy bycia pająkiem. " +"Dlaczego jest teraz tak wiele ogromnych pająków?" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" +"Próbka rzeczy, które składają się na kluczowe elementy bycia jaszczurką. " +"Aligatory i olbrzymie grzechotniki wydają się pasować do tego, czego " +"szukasz." + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" +"Próbka rzeczy, które składają się na kluczowe części bycia wilkiem. Czy to " +"Lon Chaney Jr spacerujący z królową?" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" +"Próbka rzeczy, które składają się na kluczowe elementy bycia kotem. Rysie i " +"pumy mogą być rodzime dla tego obszaru?" #: lang/json/GENERIC_from_json.py msgid "flyer" @@ -75218,7 +75725,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -75387,7 +75894,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -75404,7 +75911,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -75442,7 +75949,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75465,7 +75972,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75488,7 +75995,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75511,7 +76018,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75534,7 +76041,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75557,7 +76064,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75580,7 +76087,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75603,7 +76110,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75626,7 +76133,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75649,7 +76156,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75672,7 +76179,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75695,7 +76202,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75718,7 +76225,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75741,7 +76248,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75764,7 +76271,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75787,8 +76294,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75811,7 +76317,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75834,7 +76340,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75857,7 +76363,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75880,7 +76386,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75903,7 +76409,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75926,8 +76432,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75958,7 +76463,7 @@ msgstr[1] "różne oprogramowania" msgstr[2] "różnych oprogramowań" msgstr[3] "różnego oprogramowania" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -75972,7 +76477,7 @@ msgstr[1] "hackPRO" msgstr[2] "hackPRO" msgstr[3] "hackPRO" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "Program hakerski." @@ -75985,7 +76490,7 @@ msgstr[1] "MediSoft" msgstr[2] "MediSoft" msgstr[3] "MediSoft" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "Oprogramowanie medyczne." @@ -75998,7 +76503,7 @@ msgstr[1] "MatheMAX" msgstr[2] "MatheMAX" msgstr[3] "MatheMAX" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "Oprogramowanie matematyczne." @@ -76011,7 +76516,7 @@ msgstr[1] "dane o infekcji" msgstr[2] "dane o infekcji" msgstr[3] "dane o infekcji" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "Dane medyczne o krwi zombie." @@ -76024,7 +76529,7 @@ msgstr[1] "dane laboratoryjne" msgstr[2] "dane laboratoryjne" msgstr[3] "dane laboratoryjne" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "Archiwa naukowe z laboratorium rządowego." @@ -76037,7 +76542,7 @@ msgstr[1] "dane pociągów" msgstr[2] "dane pociągów" msgstr[3] "dane pociągów" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "Dane logistyczne o podziemnych liniach kolejowych i rozkładach jazdy." @@ -76050,7 +76555,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -76184,8 +76689,8 @@ msgid "" " to your map." msgstr "" "To mapa drogowa okolicy. Zawiera informacje o służbach publicznych takich " -"jak szpitale, posterunki policji, i możesz ją wykorzystać by dodać " -"interesujące miejsca do twojej mapy.  " +"jak szpitale, posterunki policji, i możesz ją wykorzystać, by dodać " +"interesujące miejsca do twojej mapy. " #: lang/json/GENERIC_from_json.py msgid "subway maintenance map" @@ -76421,6 +76926,23 @@ msgstr "" "Kość półczłowieka. Można jej użyć do stworzenia czegoś, jeśli czujesz się " "wystarczająco upiornie." +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "ludzka czaszka" +msgstr[1] "ludzkie czaszki" +msgstr[2] "ludzkich czaszek" +msgstr[3] "ludzkiej czaszki" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" +"Czaszka człowieka. Noszenie tego przy sobie prawdopodobnie nie przysporzy ci" +" przyjaciół." + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" @@ -76429,9 +76951,8 @@ msgstr[1] "ciała" msgstr[2] "ciała" msgstr[3] "ciała" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" @@ -76440,7 +76961,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -76450,7 +76971,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -76528,7 +77049,7 @@ msgstr "" msgid "" "The corpse of an infant. A single small-caliber bullet has been put through" " its skull." -msgstr "" +msgstr "Zwłoki niemowlęcia. Pojedyncza kula małego kalibru przebiła czaszkę." #. ~ Description for corpse #: lang/json/GENERIC_from_json.py @@ -76569,23 +77090,29 @@ msgid "" "The bloody corpse of a young man. He has been stabbed repeatedly in the " "jugular and throat with a small blade." msgstr "" +"Zakrwawione zwłoki młodego mężczyzny. Został wielokrotnie dźgnięty małym " +"ostrzem w szyję i gardło." #: lang/json/GENERIC_from_json.py msgid "" "The dead body of a person. They look to have been skewered through with a " "large sharp implement." msgstr "" +"Martwe ciało człowieka. Wygląda na to, że zostało przebite na wylot dużym, " +"ostrym narzędziem." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a tall middle-aged woman. She appears to have many stab " "wounds up her legs and thighs." msgstr "" +"Zwłoki wysokiej kobiety w średnim wieku. Wygląda na to, że ma wiele ran " +"kłutych na nogach i udach." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a small old lady, her face caked in blood and missing an eye." -msgstr "" +msgstr "Zwłoki małej staruszki, z twarzą zalaną krwią i bez oka." #. ~ Description for corpse #: lang/json/GENERIC_from_json.py @@ -76619,30 +77146,41 @@ msgid "" "The corpse of a young blond woman shot several times in the back with a low-" "caliber weapon." msgstr "" +"Zwłoki młodej blondynki postrzelonej kilkakrotnie w plecy z broni o niskim " +"kalibrze." #: lang/json/GENERIC_from_json.py msgid "" "An androgynous-looking corpse gored by arms fire chest to thighs, leaving " "the face eerily pristine." msgstr "" +"Androgynicznie wyglądające zwłoki nafaszerowane ołowiem z broni palnej od " +"klatki piersiowej do ud, pozostawiając twarz niesamowicie nieskazitelną." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a seemingly older male. He appears to have been shot in the " "forehead at a very close range leaving you a good view of his brain matter." msgstr "" +"Zwłoki zdaje się starszego mężczyzny. Wygląda na to, że został postrzelony w" +" czoło z bardzo bliskiej odległości, dzięki czemu masz dobry widok na jego " +"tkankę mózgową." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a middle-aged woman, her legs and arms covered in blood. She " "appears to have been shot in the thigh." msgstr "" +"Zwłoki kobiety w średnim wieku, jej nogi i ręce pokryte są krwią. Wygląda na" +" to, że została postrzelona w udo." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a young man who appears to have been shot to death. His right" " arm is only barely still attached to his shoulder." msgstr "" +"Zwłoki młodego mężczyzny, który najwyraźniej został śmiertelnie postrzelony." +" Jego prawa ręka ledwo trzyma się na ramieniu." #: lang/json/GENERIC_from_json.py msgid "" @@ -76650,6 +77188,9 @@ msgid "" "head, its thick black hair intermixed now with brain, viscera and shotgun " "pellets." msgstr "" +"Nienaruszone zwłoki wysokiej kobiety, z wyjątkiem krwawej dziury na głowie, " +"w której gęste czarne włosy zmieszały się z mózgiem, wnętrznościami i śrutem" +" ze strzelby." #: lang/json/GENERIC_from_json.py msgid "broken exodii worker" @@ -76725,7 +77266,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -77156,6 +77697,122 @@ msgstr "" "Zombie nie da się zastraszyć ani upokorzyć, więc ta sztywna szczota nadaje " "się jedynie do szorowania misek sedesowych." +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" +"Wykonany ze stali nierdzewnej grzebień ze spiralnie wyżłobionymi zębami, " +"przeznaczony do usuwania z włosów uciążliwych pasożytów. Nawet na samą myśl " +"o nim zaczyna cię swędzieć." + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "Plastikowa pływająca zabawka do kąpieli." + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "Żółta gumowa kaczka. Przeznaczona do wrzucania do wanny." + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" +"Czarna gumowa kaczka z dużymi białymi oczami. Przeznaczona do wrzucania do " +"wanny." + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "Mały zielony dinozaur z szerokim uśmiechem. Przeznaczony do kąpieli." + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "Plastikowa elektryczna szczoteczka do zębów." + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" +"Wyciskana, używana butelka do przechowywania różnych mydeł łazienkowych." + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "Butelka na specjalny szampon do włosów farbowanych." + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" +"Zwykła biała butelka przeznaczona do przechowywania najtańszego szamponu." + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "Butelka na płyn do mycia ciała. Ten nazywa się \"Afryka\"." + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "Butelka na odżywkę do włosów." + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" +"Kolorowa butelka z płynem do mycia ciała i włosów przeznaczona dla dzieci." + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" +"Zwykła biała butelka przeznaczona do przechowywania najtańszej odżywki do " +"włosów." + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" +"Zwykła biała butelka przeznaczona do przechowywania najtańszego żelu pod " +"prysznic." + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" +"Standardowy zestaw protetycznych zębów. Zupełnie bezużyteczny dla każdego " +"poza jego właścicielem." + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -79278,7 +79935,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -79383,7 +80040,7 @@ msgstr[1] "części zamienne" msgstr[2] "części zamienne" msgstr[3] "części zamienne" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -80148,7 +80805,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -80159,7 +80816,7 @@ msgstr "" "imitujący wagę i wyważenie prawdziwej. Pomimo braku ostrza nadal posiada " "zdolność zadawania śmiertelnych obrażeń." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " @@ -80168,7 +80825,7 @@ msgstr "" "Jest to katana do ćwiczeń wykonana z litego drewna, ale wydaje się zbyt " "lekka, by być skuteczną bronią." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -80252,7 +80909,7 @@ msgstr[3] "" #. ~ Description for crutches #: lang/json/GENERIC_from_json.py msgid "A pair of crutches." -msgstr "" +msgstr "Para kul inwalidzkich." #: lang/json/GENERIC_from_json.py msgid "cudgel" @@ -80884,7 +81541,7 @@ msgstr[1] "bioniczne pazury" msgstr[2] "bioniczne pazury" msgstr[3] "bioniczne pazury" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "Krótkie i ostre pazury z zaawansowanego technicznie metalu." @@ -80985,9 +81642,9 @@ msgstr "" msgid "pointy stick" msgid_plural "pointy sticks" msgstr[0] "zaostrzony kij" -msgstr[1] "zaostrzony kij" -msgstr[2] "zaostrzony kij" -msgstr[3] "zaostrzony kij" +msgstr[1] "zaostrzone kije" +msgstr[2] "zaostrzonych kijów" +msgstr[3] "zaostrzonego kija" #. ~ Description for pointy stick #: lang/json/GENERIC_from_json.py @@ -80997,15 +81654,15 @@ msgstr "Prosty kij drewniany z zaostrzonym końcem." #: lang/json/GENERIC_from_json.py msgid "long pointy stick" msgid_plural "long pointy sticks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "długi zaostrzony kij" +msgstr[1] "długie zaostrzone kije" +msgstr[2] "długich zaostrzonych kijów" +msgstr[3] "długiego zaostrzonego kija" #. ~ Description for long pointy stick #: lang/json/GENERIC_from_json.py msgid "A stout pole with one end sharpened to a point." -msgstr "" +msgstr "Mocna tyczka z jednym końcem zaostrzonym na szpic." #: lang/json/GENERIC_from_json.py msgid "wooden spear" @@ -81108,7 +81765,7 @@ msgstr[3] "" #. ~ Description for sharpened pipe #: lang/json/GENERIC_from_json.py msgid "A pipe with one end cut off at an angle." -msgstr "" +msgstr "Rura z jednym końcem odciętym pod kątem." #: lang/json/GENERIC_from_json.py msgid "basic pipe spear" @@ -81122,6 +81779,7 @@ msgstr[3] "" #: lang/json/GENERIC_from_json.py msgid "Three pipes tightly fit together with one end cut down to a point." msgstr "" +"Trzy rury ściśle przylegające do siebie z jednym końcem ściętym w szpic." #: lang/json/GENERIC_from_json.py msgid "pipe spear" @@ -81137,6 +81795,8 @@ msgid "" "Three pipes tightly fit together with some wrappings for a handle around one" " end and a sharp tip on the other." msgstr "" +"Trzy rury ściśle przylegające do siebie z jakimś zawiniątkiem na rękojeść na" +" jednym końcu i ostrą końcówką na drugim." #: lang/json/GENERIC_from_json.py msgid "sharpened rebar" @@ -81159,7 +81819,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -81219,7 +81879,7 @@ msgstr[1] "naginata" msgstr[2] "naginata" msgstr[3] "naginata" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -81230,7 +81890,7 @@ msgstr "" "sposobem co katany i inne japońskie ostrza. Czasami używane przez samurajów " "we wczesnych erach, lub przez ich żony w obronie domu." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -81241,7 +81901,7 @@ msgstr "" "sposobem co katany i inne japońskie ostrza. Ten egzemplarz ma nieco chwiejne" " ostrze i wgląda na kiepskie rzemiosło." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -81260,7 +81920,7 @@ msgstr[1] "naginata ocalonych" msgstr[2] "naginata ocalonych" msgstr[3] "naginata ocalonych" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -81427,7 +82087,7 @@ msgstr[1] "ji" msgstr[2] "ji" msgstr[3] "ji" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -81505,6 +82165,25 @@ msgstr "" " stylisku. Dodatkowa waga jest niewyważona, ale ząbkowane ostrze dodaje " "sporo tnącej siły." +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" +"Imitacja prawdziwego miecza wykuta przez kogoś, kto przynajmniej wie, jak " +"wyglądają miecze. Ma ogólny kształt miecza i jest ostry, ale jakość " +"wykonania jest niska, a wyważenie nie do końca prawidłowe." + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -81514,7 +82193,7 @@ msgstr[1] "jian" msgstr[2] "jian" msgstr[3] "jian" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -81622,7 +82301,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " @@ -81631,7 +82310,7 @@ msgstr "" "Tępa tania replika długiego japońskiego noża, typowo używana jako zapasowa " "broń samuraja." -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -81650,7 +82329,7 @@ msgstr[1] "nodachi" msgstr[2] "nodachi" msgstr[3] "nodachi" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " @@ -81659,7 +82338,7 @@ msgstr "" "Tępa, tania replika wielkiego zakrzywionego miecza dwuręcznego z Japonii. " "Zaskakująco lekki jak na swój rozmiar." -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -81844,7 +82523,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "Tępa, tania replika rzadkiego miecza z Japonii." @@ -81931,7 +82610,7 @@ msgstr[1] "wakizashi" msgstr[2] "wakizashi" msgstr[3] "wakizashi" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -82015,7 +82694,7 @@ msgstr[1] "pazury tygrysa" msgstr[2] "pazury tygrysa" msgstr[3] "pazury tygrysa" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -82318,6 +82997,25 @@ msgstr "" " z oceanu, matowy i żwirowaty, o zaokrąglonych brzegach. Jest nieco ciepły w" " dotyku." +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" +"Rozgałęziający się pień z liści mega paproci, około dwóch stóp długości i " +"kilka stóp średnicy mierząc od liści. Może pewnego dnia wymyślisz coś, co " +"można zrobić z gigantycznej paproci." + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" @@ -82326,7 +83024,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -82349,7 +83047,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -82411,7 +83109,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -82782,7 +83480,7 @@ msgstr[1] "złom miedziany" msgstr[2] "złom miedziany" msgstr[3] "złom miedziany" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "Kawałek miedzi, do wykorzystania w wytwarzaniu lub naprawach." @@ -83065,10 +83763,10 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "large rock" msgid_plural "large rocks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "duży kamień" +msgstr[1] "duże kamienie" +msgstr[2] "dużych kamieni" +msgstr[3] "dużego kamienia" #. ~ Description for large rock #: lang/json/GENERIC_from_json.py @@ -83121,7 +83819,7 @@ msgstr[1] "drewniane drzazgi" msgstr[2] "drewniane drzazgi" msgstr[3] "drewniane drzazgi" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -83130,10 +83828,10 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "stick" msgid_plural "sticks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "patyk" +msgstr[1] "patyki" +msgstr[2] "patyków" +msgstr[3] "patyka" #. ~ Description for stick #: lang/json/GENERIC_from_json.py @@ -83147,10 +83845,10 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "long stick" msgid_plural "long sticks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "długi kij" +msgstr[1] "długie kije" +msgstr[2] "długich kijów" +msgstr[3] "długiego kija" #. ~ Description for long stick #: lang/json/GENERIC_from_json.py @@ -83403,17 +84101,17 @@ msgstr[1] "zaplombowane kultury drożdży" msgstr[2] "zaplombowanych kultur drożdży" msgstr[3] "zaplombowanych kultur drożdży" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "Otwierasz słój i zbierasz drożdże." -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "Drożdże jeszcze się nie namnożyły." -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -84156,9 +84854,9 @@ msgstr "" msgid "lit charcoal kiln" msgid_plural "lit charcoal kilns" msgstr[0] "rozpalony piec do węgla drzewnego" -msgstr[1] "rozpalony piec do węgla drzewnego" -msgstr[2] "rozpalony piec do węgla drzewnego" -msgstr[3] "rozpalony piec do węgla drzewnego" +msgstr[1] "rozpalone piece do węgla drzewnego" +msgstr[2] "rozpalonych pieców do węgla drzewnego" +msgstr[3] "rozpalonego pieca do węgla drzewnego" #. ~ Use action msg for lit charcoal kiln. #: lang/json/GENERIC_from_json.py @@ -84637,7 +85335,7 @@ msgstr[3] "żyletka" #. ~ Description for razor blade #: lang/json/GENERIC_from_json.py msgid "A double-edged razor blade." -msgstr "" +msgstr "Żyletka z podwójnym ostrzem." #: lang/json/GENERIC_from_json.py msgid "hatchet" @@ -84965,7 +85663,7 @@ msgstr[1] "wiosła" msgstr[2] "wiosła" msgstr[3] "wiosła" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "Wiosła do łódki." @@ -84991,7 +85689,7 @@ msgstr[1] "nadmuchiwana sekcja" msgstr[2] "nadmuchiwana sekcja" msgstr[3] "nadmuchiwana sekcja" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "Nadmuchiwana sekcja łódki." @@ -85004,7 +85702,7 @@ msgstr[1] "nadmuchiwana poduszka powietrzna" msgstr[2] "nadmuchiwana poduszka powietrzna" msgstr[3] "nadmuchiwana poduszka powietrzna" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "Nadmuchiwana poduszka powietrzna." @@ -86092,7 +86790,7 @@ msgstr[1] "megafon" msgstr[2] "megafon" msgstr[3] "megafon" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -86106,12 +86804,12 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "sheet metal" msgid_plural "sheet metal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "blacha" +msgstr[1] "blachy" +msgstr[2] "blach" +msgstr[3] "blachy" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "Cienki arkusz metalu." @@ -86119,12 +86817,12 @@ msgstr "Cienki arkusz metalu." #: lang/json/GENERIC_from_json.py msgid "wired sheet metal" msgid_plural "wired sheet metal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "blacha z okablowaniem" +msgstr[1] "blachy z okablowaniem" +msgstr[2] "blach z okablowaniem" +msgstr[3] "blachy z okablowaniem" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "Metalowy arkusz z wmontowaną oprawą świetlną i jej okablowaniem." @@ -86151,7 +86849,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "Stalowe płyty pancerne." @@ -86164,7 +86862,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "Płyty pancerne z wytrzymałego superstopu." @@ -86192,7 +86890,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -86483,6 +87181,7 @@ msgstr[2] "ogniwa słoneczne" msgstr[3] "ogniwa słoneczne" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " @@ -86491,6 +87190,14 @@ msgstr "" "Urządzenie elektryczne konwertujące promieniowanie słoneczne w moc " "elektryczną. Użyteczny w pojazdach." +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -86656,6 +87363,19 @@ msgstr[3] "" msgid "A vehicle-mounted area heater." msgstr "Montowany w pojeździe klimatyzator grzejący." +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "Montowany w pojeździe mały grzejnik strefowy." + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -86951,7 +87671,7 @@ msgstr[3] "" #. ~ Description for bicycle rim #: lang/json/GENERIC_from_json.py msgid "A large spoked rim for a bicycle tire." -msgstr "" +msgstr "Duża szprychowa obręcz do opony rowerowej." #: lang/json/GENERIC_from_json.py msgid "17\" car tire" @@ -87221,7 +87941,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -87305,7 +88025,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -87426,6 +88146,8 @@ msgid "" "A broken Likvidator, now limp and unmoving. Could be gutted for parts or " "crafted into a salvaged robot." msgstr "" +"Zepsuty Likvidator, kulawy i nieruchomy. Może być wypruty na części albo " +"przerobiony na robota z odzysku." #: lang/json/GENERIC_from_json.py msgid "broken Whately turret" @@ -87686,7 +88408,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -87703,7 +88425,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -87864,7 +88586,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -87878,7 +88600,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "Mały pellet srebrzystego metalu, nadal ciepły w dotyku." @@ -88131,7 +88853,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88148,7 +88870,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88165,7 +88887,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88182,7 +88904,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88199,7 +88921,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88216,7 +88938,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -88234,7 +88956,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88251,7 +88973,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88268,7 +88990,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88285,7 +89007,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88302,7 +89024,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88319,7 +89041,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -88442,6 +89164,8 @@ msgid "" "A three pronged spear that is surface treated to be used confidently above " "and below water." msgstr "" +"Trójramienna włócznia, której powierzchnia została obrobiona tak, aby można " +"było jej pewnie używać nad i pod wodą." #: lang/json/GENERIC_from_json.py msgid "ur-scrap" @@ -88454,7 +89178,7 @@ msgstr[3] "" #. ~ Description for ur-scrap #: lang/json/GENERIC_from_json.py msgid "A small techno doodad." -msgstr "" +msgstr "Mały techniczny gadżet." #: lang/json/GENERIC_from_json.py msgid "monomeric slurry" @@ -88464,12 +89188,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " "of know-how, you can create proteins and other building blocks of life." msgstr "" +"Zbiór elementów składowych polimerów. Dzięki temu i sporej dawce wiedzy " +"można stworzyć białka i inne składniki budulcowe życia." #: lang/json/GENERIC_from_json.py msgid "micellular growth medium" @@ -88485,6 +89211,8 @@ msgid "" "For the mixing of biomaterials that might otherwise be antithetical to one " "another." msgstr "" +"Do mieszania biomateriałów, które w przeciwnym razie mogłyby być sprzeczne " +"ze sobą." #: lang/json/GENERIC_from_json.py msgid "artificial muscle fibers" @@ -88494,12 +89222,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " "performance ratios than baseline human muscles." msgstr "" +"Wyhodowane laboratoryjnie lub wydrukowane biologicznie włókna mięśniowe; " +"znacznie gęstsze i o wyższym współczynniku wydajności niż zwykłe ludzkie " +"mięśnie." #: lang/json/GENERIC_from_json.py msgid "self healing polymers" @@ -88509,12 +89240,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " "self-repair; be careful you don't make grey goo." msgstr "" +"Materiały zdolne do absorbowania chemikaliów środowiskowych i " +"wykorzystywania ich do samonaprawy; uważaj, żebyś nie zrobił szarej mazi." #: lang/json/GENERIC_from_json.py msgid "autologous totipotent tissue culture" @@ -88530,6 +89263,8 @@ msgid "" "Uncontaminated pure cellular matter that, with the right instructions, can " "become just about anything." msgstr "" +"Nieskażona czysta materia komórkowa, która dzięki odpowiednim instrukcjom " +"może stać się niemal wszystkim." #: lang/json/GENERIC_from_json.py msgid "scrap photonics" @@ -88539,10 +89274,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" +"Małe niebieskie i złote obwody, przekazujące sygnały za pomocą światła." #: lang/json/GENERIC_from_json.py msgid "photonic circuitry" @@ -88555,7 +89291,7 @@ msgstr[3] "" #. ~ Description for photonic circuitry #: lang/json/GENERIC_from_json.py msgid "A resplendent golden grid inlaid on dark blue substrate." -msgstr "" +msgstr "Wspaniała złota kratka inkrustowana na ciemnoniebieskim podłożu." #: lang/json/GENERIC_from_json.py msgid "photonic computation core" @@ -88568,7 +89304,7 @@ msgstr[3] "" #. ~ Description for photonic computation core #: lang/json/GENERIC_from_json.py msgid "A monolithic circuit shaped as a glowing cube of crystal." -msgstr "" +msgstr "Monolityczny obwód w kształcie świecącego sześciennego kryształu." #: lang/json/GENERIC_from_json.py msgid "hypergeometric photonics" @@ -88578,12 +89314,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " "like stars fixed on computational shells infinitely layered." msgstr "" +"W twoich rękach leży autonomiczny cyfrowy wszechświat. Jego programy świecą " +"jak gwiazdy osadzone na nieskończonych warstwach powłoki obliczeniowej." #: lang/json/GENERIC_from_json.py msgid "acausal logic permutator" @@ -88596,7 +89334,7 @@ msgstr[3] "" #. ~ Description for acausal logic permutator #: lang/json/GENERIC_from_json.py msgid "It has given you an answer, but you are yet to ask anything." -msgstr "" +msgstr "Udzielił ci odpowiedzi, ale ty jeszcze o nic nie zapytałeś." #: lang/json/GENERIC_from_json.py msgid "woven metamaterial sheet" @@ -88611,6 +89349,7 @@ msgstr[3] "" msgid "" "An intricately spun and carefully engineered sheet of iridescent fibers." msgstr "" +"Misternie przędzony i starannie opracowany arkusz opalizujących włókien." #: lang/json/GENERIC_from_json.py msgid "nanowire battery" @@ -88623,7 +89362,7 @@ msgstr[3] "" #. ~ Description for nanowire battery #: lang/json/GENERIC_from_json.py msgid "A small battery component with a very high energy density." -msgstr "" +msgstr "Mały podzespół baterii o bardzo dużej gęstości energii." #: lang/json/GENERIC_from_json.py msgid "ultracapacitor" @@ -88639,6 +89378,8 @@ msgid "" "A capacitor made from exotic compounds, capable of storing a high amount of " "electric charge." msgstr "" +"Kondensator wykonany z egzotycznych związków, zdolny do przechowywania " +"znacznego ładunku elektrycznego." #: lang/json/GENERIC_from_json.py msgid "ultracapacitor array" @@ -88652,6 +89393,8 @@ msgstr[3] "" #: lang/json/GENERIC_from_json.py msgid "Ultracapacitors assembled into a finely tuned energy storage array." msgstr "" +"Ultrakondensatory połączone w precyzyjnie dostrojony układ magazynowania " +"energii." #: lang/json/GENERIC_from_json.py msgid "superconductive coil" @@ -88667,6 +89410,8 @@ msgid "" "Superconductive wire warped upon itself manipulates the electromagnetic " "spectrum to store vast amounts of power." msgstr "" +"Nadprzewodzący drut nawinięty wokół samego siebie manipuluje widmem " +"elektromagnetycznym w celu zmagazynowania ogromnych ilości energii." #: lang/json/GENERIC_from_json.py msgid "zero-point energy extractor" @@ -88682,6 +89427,9 @@ msgid "" "A complex grid pins space-time to the surface of the multiversal hyper-" "torus, allowing the energies within to leak into our sliver of existence." msgstr "" +"Złożona siatka przywiązuje czasoprzestrzeń do powierzchni hiper-toroida " +"multiwersalnego, pozwalając energiom w niej zawartym przeniknąć do naszego " +"skrawka egzystencji." #: lang/json/GENERIC_from_json.py msgid "conductive thermoplastic" @@ -88699,6 +89447,9 @@ msgid "" "ago, and have tightly integrated themselves into the modern society since " "then." msgstr "" +"Doskonały przewodnik ciepła i izolator elektryczny. Termoplasty przewodzące " +"ciepło zostały wprowadzone na rynek cywilny prawie dwa wieki temu i od tego " +"czasu mocno zintegrowały się z nowoczesnym społeczeństwem." #: lang/json/GENERIC_from_json.py msgid "carbon-lattice heatsink" @@ -88717,6 +89468,11 @@ msgid "" "thermal conductivity and deformation resistance than any other conventional " "metals." msgstr "" +"Sekcje ciemnych, półprzezroczystych, monokrystalicznych lameli węglowych, " +"funkcjonalnie identycznych z diamentem. Mikroskopijne nacięcia wewnątrz " +"umożliwiają przepływ chłodziwa pod wysokim ciśnieniem. Siatki krystalicznego" +" węgla wykazują znacznie lepszą przewodność cieplną i odporność na " +"odkształcenia niż jakiekolwiek inne konwencjonalne metale." #: lang/json/GENERIC_from_json.py msgid "fermionic nanoribbon" @@ -88735,6 +89491,11 @@ msgid "" "annihilate the ground-state quantum uniformity of the fermionic superfluid " "matrix - Handle with care!" msgstr "" +"Ta delikatna wiązka srebrzystych, opalizujących kabli jest zdolna do " +"natychmiastowego przenoszenia energii cieplnej pomiędzy swoimi połączeniami," +" sama nigdy się nie nagrzewając. Nawet najmniejsze uszkodzenie obudowy " +"spowoduje anihilację kwantowej jednorodności stanu podstawowego fermionowej " +"matrycy nadciekłej - obchodź się z nią ostrożnie!" #: lang/json/GENERIC_from_json.py msgid "maxwellian entropic chirality generator" @@ -88752,6 +89513,10 @@ msgid "" "Hermetically sealed and devoid of any identifying feature, this peculiar " "device gives off an unexplainable, sinister aura." msgstr "" +"Nijaki, kwadratowy kawałek metalu wielkości komputerowego chipa. Jedna " +"strona jest zimna w dotyku, podczas gdy druga jest nieprzyjemnie gorąca. To " +"osobliwe urządzenie, hermetycznie zamknięte i pozbawione jakichkolwiek cech " +"identyfikacyjnych, roztacza niewytłumaczalną, złowrogą aurę." #: lang/json/GENERIC_from_json.py msgid "salvaged coolant system" @@ -88768,6 +89533,10 @@ msgid "" " usable supercritical coolant. You could disassemble it to separate the " "liquid coolant from the rest of the scrap." msgstr "" +"Zardzewiałe zbiorniki płynu i rozpadające się przewody wysokociśnieniowe " +"zawierające wciąż nadający się do użytku płyn chłodzący w stanie " +"nadkrytycznym. Można je rozebrać, aby oddzielić ciekły czynnik chłodzący od " +"reszty złomu." #: lang/json/GENERIC_from_json.py msgid "high quality electromagnet" @@ -88780,7 +89549,7 @@ msgstr[3] "" #. ~ Description for high quality electromagnet #: lang/json/GENERIC_from_json.py msgid "A sturdy, industrially crafted electromagnet." -msgstr "" +msgstr "Solidny, przemysłowo wykonany elektromagnes." #: lang/json/GENERIC_from_json.py msgid "cryo electromagnet" @@ -88796,6 +89565,8 @@ msgid "" "A powerful super conductive electromagnet, that must be kept at very low " "temperatures to operate." msgstr "" +"Potężny, nadprzewodzący elektromagnes, który aby działać musi być " +"utrzymywany w bardzo niskich temperaturach." #: lang/json/GENERIC_from_json.py msgid "super conductive electromagnet" @@ -88809,6 +89580,7 @@ msgstr[3] "" #: lang/json/GENERIC_from_json.py msgid "A powerful electromagnet made from a room temperature superconductor." msgstr "" +"Potężny elektromagnes wykonany z nadprzewodnika o temperaturze pokojowej." #: lang/json/GENERIC_from_json.py msgid "ferrofluid dynamo" @@ -88824,6 +89596,8 @@ msgid "" "Black metallic fluid, harmonically flowing from one fractal shape to the " "next." msgstr "" +"Czarny metaliczny płyn, harmonijnie przepływający od jednego fraktalnego " +"kształtu do następnego." #: lang/json/GENERIC_from_json.py msgid "composite alloy" @@ -88836,7 +89610,7 @@ msgstr[3] "" #. ~ Description for composite alloy #: lang/json/GENERIC_from_json.py msgid "Miscellaneous scrap pieces made from a composite alloy." -msgstr "" +msgstr "Różne kawałki złomu wykonane z kompozytowego stopu." #: lang/json/GENERIC_from_json.py msgid "vacuum cast carbide" @@ -88850,6 +89624,7 @@ msgstr[3] "" #: lang/json/GENERIC_from_json.py msgid "Malleable carbide cast by forges on high earth orbit." msgstr "" +"Węglik kowalny odlewany przez kuźnie na wysokiej orbicie okołoziemskiej." #: lang/json/GENERIC_from_json.py msgid "nanoprinted alloy" @@ -88865,6 +89640,8 @@ msgid "" "A meta material fabricated by precisely layering different elements at an " "atomic scale." msgstr "" +"Meta-materiał wytwarzany przez precyzyjne nakładanie warstw różnych " +"pierwiastków w skali atomowej." #: lang/json/GENERIC_from_json.py msgid "crystal forged neutrite" @@ -88881,6 +89658,9 @@ msgid "" " poured it within lattices of super conductive lanthanum. Locked in " "magnetic equilibrium, it was left to cool into a dark unbreakable metal" msgstr "" +"Wielkie kuźnie w jądrze Ziemi wykuwały wodór na płonący metal i wlewały go w" +" sieci nadprzewodzącego lantanu. Zablokowany w równowadze magnetycznej, " +"został pozostawiony do ostygnięcia w ciemny, niezniszczalny metal." #: lang/json/GENERIC_from_json.py msgid "phase uneven matter" @@ -88893,7 +89673,7 @@ msgstr[3] "" #. ~ Description for phase uneven matter #: lang/json/GENERIC_from_json.py msgid "Matter condensed from the liminal spaces between dimensions." -msgstr "" +msgstr "Materia skondensowana z przestrzeni granicznych pomiędzy wymiarami." #: lang/json/GENERIC_from_json.py msgid "peripheral electrode" @@ -88909,6 +89689,8 @@ msgid "" "A thin strand of wire and a clamp, meant to be spliced into the smaller " "nerves of the human body." msgstr "" +"Cienka nitka drutu i zacisk, przeznaczone do wpinania w mniejsze nerwy " +"ludzkiego ciała." #: lang/json/GENERIC_from_json.py msgid "neural electrode" @@ -88924,6 +89706,8 @@ msgid "" "A small array of metallic needles allows complex communication between " "machine and human mind." msgstr "" +"Niewielki układ metalowych igieł umożliwia złożoną komunikację między " +"maszyną a ludzkim umysłem." #: lang/json/GENERIC_from_json.py msgid "brain implant prod" @@ -88939,6 +89723,8 @@ msgid "" "A complexly etched rod of metal interfaces with the corpus callosum of the " "patient, granting increased control of bionic functions." msgstr "" +"Skomplikowany, wytrawiony pręt metalowy łączy się z ciałem modzelowatym " +"pacjenta, zapewniając zwiększoną kontrolę nad funkcjami bionicznymi." #: lang/json/GENERIC_from_json.py msgid "artificial neural tissue" @@ -88954,6 +89740,8 @@ msgid "" "Photonic axons process thought at speeds far surpassing primitive, chemical-" "driven communication." msgstr "" +"Aksony fotoniczne przetwarzają myśli z prędkością znacznie przewyższającą " +"prymitywną, napędzaną chemią komunikację." #: lang/json/GENERIC_from_json.py msgid "neurosynaptic interface matrix" @@ -88970,6 +89758,8 @@ msgid "" "machine and human intellect into a gestalt much greater than its individual " "parts." msgstr "" +"Membrana sztucznych neuronów otacza korę mózgową, stapiając maszynę i ludzki" +" intelekt w jedność znacznie większą niż jej poszczególne części." #: lang/json/GENERIC_from_json.py msgid "laser optics" @@ -88979,12 +89769,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" " weapon, industrial cutter or laser research setup." msgstr "" +"Soczewki, lustra, emitery i inne elementy optyczne, które kiedyś należały do" +" broni, wycinarki przemysłowej lub laserowej instalacji badawczej." #: lang/json/GENERIC_from_json.py msgid "metamaterial lens" @@ -89000,6 +89792,8 @@ msgid "" "A diminute sphere of crystal and metal, magnetically affixed to the centroid" " of its containing chamber." msgstr "" +"Pomniejszona kula z kryształu i metalu, magnetycznie przymocowana do środka " +"komory, w której się znajduje." #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "ultralight frame" @@ -89012,7 +89806,7 @@ msgstr[3] "" #. ~ Description for ultralight frame #: lang/json/GENERIC_from_json.py msgid "A sturdy, lightweight frame made from titanium. Useful for crafting." -msgstr "" +msgstr "Wytrzymała, lekka rama wykonana z tytanu. Przydatna w rzemiośle." #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "ultralight foldable frame" @@ -89025,7 +89819,7 @@ msgstr[3] "" #. ~ Description for ultralight foldable frame #: lang/json/GENERIC_from_json.py msgid "A sturdy, lightweight foldable frame made from titanium." -msgstr "" +msgstr "Wytrzymała, lekka, składana rama wykonana z tytanu." #: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py #: lang/json/vehicle_part_from_json.py @@ -89042,6 +89836,8 @@ msgid "" "A large and complex piloting station from a military vehicle, including a " "camera station, steering tools, and electronics controls." msgstr "" +"Duża i złożona stacja pilotażu z pojazdu wojskowego, zawierająca stację " +"kamer, narzędzia do sterowania i elementy elektroniczne." #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "quantum solar panel" @@ -89080,6 +89876,9 @@ msgid "" "outfitted with tie-downs and attachment points gallore for carrying an " "extended amount of cargo." msgstr "" +"Kilka ciężkich ram zmodernizowanych do wspólnego montażu, wyposażonych w " +"uchwyty mocujące i punkty montażowe, umożliwiające przewożenie dużej ilości " +"ładunku." #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "solar array" @@ -89098,6 +89897,12 @@ msgid "" "sunlight, they can't really be installed onto an existing vehicle. Requires" " a jumper cable or similar to pull power from." msgstr "" +"Pionowy układ trzech paneli słonecznych umieszczonych na podwoziu wznoszącym" +" się jeden nad drugim na metalowym słupie z prostym układem śledzenia i " +"silnikami. Ze względu na delikatną naturę hydrauliki i duży profil " +"powierzchni, aby zmaksymalizować światło słoneczne, nie można ich " +"zainstalować na istniejącym pojeździe. Wymagany jest przewód zasilający lub " +"podobny, aby pobrać zasilanie." #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar array" @@ -89116,6 +89921,12 @@ msgid "" "maximize sunlight, they can't really be installed onto an existing vehicle." " Requires a jumper cable or similar to pull power from." msgstr "" +"Pionowy układ trzech wzmocnionych paneli słonecznych umieszczonych na " +"podwoziu wznoszącym się jeden nad drugim na metalowym słupie z prostym " +"układem śledzenia i silnikami. Ze względu na delikatną naturę hydrauliki i " +"duży profil powierzchni, aby zmaksymalizować światło słoneczne, nie można " +"ich zainstalować na istniejącym pojeździe. Wymagany jest przewód zasilający " +"lub podobny, aby pobrać zasilanie." #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "upgraded solar array" @@ -89134,6 +89945,12 @@ msgid "" "maximize sunlight, they can't really be installed onto an existing vehicle." " Requires a jumper cable or similar to pull power from." msgstr "" +"Pionowy układ trzech ulepszonych paneli słonecznych umieszczonych na " +"podwoziu wznoszącym się jeden nad drugim na metalowym słupie z prostym " +"układem śledzenia i silnikami. Ze względu na delikatną naturę hydrauliki i " +"duży profil powierzchni, aby zmaksymalizować światło słoneczne, nie można " +"ich zainstalować na istniejącym pojeździe. Wymagany jest przewód zasilający " +"lub podobny, aby pobrać zasilanie." #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "upgraded reinforced solar array" @@ -89152,6 +89969,12 @@ msgid "" "profile to maximize sunlight, they can't really be installed onto an " "existing vehicle. Requires a jumper cable or similar to pull power from." msgstr "" +"Pionowy układ trzech wzmocnionych ulepszonych paneli słonecznych " +"umieszczonych na podwoziu wznoszącym się jeden nad drugim na metalowym " +"słupie z prostym układem śledzenia i silnikami. Ze względu na delikatną " +"naturę hydrauliki i duży profil powierzchni, aby zmaksymalizować światło " +"słoneczne, nie można ich zainstalować na istniejącym pojeździe. Wymagany " +"jest przewód zasilający lub podobny, aby pobrać zasilanie." #: lang/json/GENERIC_from_json.py msgid "withered plant bundle" @@ -89164,7 +89987,7 @@ msgstr[3] "" #. ~ Description for withered plant bundle #: lang/json/GENERIC_from_json.py msgid "A bundle of plant matter" -msgstr "" +msgstr "Wiązka materii roślinnej." #: lang/json/GENERIC_from_json.py msgid "CRIT hatchet" @@ -89177,7 +90000,7 @@ msgstr[3] "" #. ~ Use action msg for CRIT hatchet. #: lang/json/GENERIC_from_json.py msgid "You extend your hatchet" -msgstr "" +msgstr "Rozkładasz swój topór" #. ~ Description for CRIT hatchet #: lang/json/GENERIC_from_json.py @@ -89186,6 +90009,9 @@ msgid "" "weapon, and is useful both for chopping things and for use as a hammer when " "extended." msgstr "" +"Niesamowicie ostry, wytrzymały, jednoręczny topór. Świetnie sprawdza się w " +"walce wręcz, jest przydatny zarówno do rąbania przedmiotów, jak i jako młot," +" gdy jest rozłożony." #: lang/json/GENERIC_from_json.py msgid "CRIT axe" @@ -89198,7 +90024,7 @@ msgstr[3] "" #. ~ Use action msg for CRIT axe. #: lang/json/GENERIC_from_json.py msgid "You collapse your axe" -msgstr "" +msgstr "Składasz swoją siekierę" #. ~ Description for CRIT axe #: lang/json/GENERIC_from_json.py @@ -89207,6 +90033,9 @@ msgid "" "melee weapon, and is useful both for chopping things and for use as a hammer" " when extended." msgstr "" +"Niesamowicie ostra, wytrzymała siekiera o pełnej długości. Stanowi potężną " +"broń do walki wręcz i jest przydatna zarówno do rąbania przedmiotów, jak i " +"do używania jako młot, gdy jest rozłożona." #: lang/json/GENERIC_from_json.py msgid "CRIT Blade-work manual" @@ -89219,7 +90048,7 @@ msgstr[3] "" #. ~ Description for CRIT Blade-work manual #: lang/json/GENERIC_from_json.py msgid "An advanced military manual on CRIT Blade-work." -msgstr "" +msgstr "Zaawansowany podręcznik wojskowy dotyczący walki na ostrza CRIT." #: lang/json/GENERIC_from_json.py msgid "C.R.I.T Enforcement manual" @@ -89233,6 +90062,7 @@ msgstr[3] "" #: lang/json/GENERIC_from_json.py msgid "An advanced military manual on C.R.I.T Enforcer melee." msgstr "" +"Zaawansowany podręcznik wojskowy dotyczący walki wręcz egzekutora CRIT." #: lang/json/GENERIC_from_json.py msgid "CRIT CQB manual" @@ -89246,6 +90076,8 @@ msgstr[3] "" #: lang/json/GENERIC_from_json.py msgid "An advanced military manual on CRIT general CQB." msgstr "" +"Zaawansowany podręcznik wojskowy na temat ogólnego systemu walki w zwarciu " +"CRIT." #: lang/json/GENERIC_from_json.py msgid "burnt out Louisville Slaughterer" @@ -89279,6 +90111,8 @@ msgid "" "A collection of dazzling alien electronics, far beyond anything of " "terrestrial manufacture. Useful in crafting." msgstr "" +"Kolekcja olśniewającej elektroniki obcych, znacznie przewyższającej " +"wszystko, co zostało wyprodukowane na ziemi. Przydatna w rzemiośle." #: lang/json/GENERIC_from_json.py msgid "alien biotech" @@ -89294,6 +90128,8 @@ msgid "" "A fistfull of gently squirming parts that secrete viscous gel. Useful in " "crafting, but not fun to hold." msgstr "" +"Garść delikatnie poruszających się części, które wydzielają lepki żel. " +"Przydatne w rzemiośle, ale niezbyt przyjemne do trzymania." #: lang/json/GENERIC_from_json.py msgid "alien power cell" @@ -89311,6 +90147,10 @@ msgid "" "Though fundamentally incompatible with earthly technologies, it still might " "be useful in crafting." msgstr "" +"Cylindryczny pojemnik wielkości pięści, który sprawia, że czujesz lekkie " +"mrowienie, gdy trzymasz go w ręku. W jego środku znajduje się słabo " +"świecące, czerwone jądro jakiegoś rodzaju. Choć zasadniczo niekompatybilny z" +" ziemskimi technologiami, może być przydatny w rzemiośle." #: lang/json/GENERIC_from_json.py msgid "broken emissary" @@ -89327,6 +90167,10 @@ msgid "" " knowing the damage it can cause. Could be gutted for parts, but you'll " "probably need specialized alien tools." msgstr "" +"Masywne ciało powalonego emisariusza. Nadal trochę przerażające, być może z " +"uwagi na zniszczenia, jakie może spowodować. Może zostać wypatroszone na " +"części, ale prawdopodobnie będziesz potrzebował specjalistycznych narzędzi " +"obcych." #: lang/json/GENERIC_from_json.py msgid "broken emissary of plague" @@ -89343,6 +90187,10 @@ msgid "" "intimidating, perhaps knowing the damage it can cause. Could be gutted for " "parts, but you'll probably need specialized alien tools." msgstr "" +"Masywne ciało powalonego emisariusza plagi. Nadal trochę przerażające, być " +"może z uwagi na zniszczenia, jakie może spowodować. Może zostać wypatroszone" +" na części, ale prawdopodobnie będziesz potrzebował specjalistycznych " +"narzędzi obcych." #: lang/json/GENERIC_from_json.py msgid "broken emissary of flame" @@ -89359,6 +90207,10 @@ msgid "" "intimidating, perhaps knowing the damage it can cause. Could be gutted for " "parts, but you'll probably need specialized alien tools." msgstr "" +"Masywne ciało powalonego emisariusza ognia. Nadal trochę przerażające, być " +"może z uwagi na zniszczenia, jakie może spowodować. Może zostać wypatroszone" +" na części, ale prawdopodobnie będziesz potrzebował specjalistycznych " +"narzędzi obcych." #: lang/json/GENERIC_from_json.py msgid "broken surveillance drone" @@ -89376,6 +90228,10 @@ msgid "" "best for disassembly, but you could make do with more human instruments " "instead." msgstr "" +"Zepsuty dron. Znacznie mniej groźny teraz, gdy nie świeci wszędzie swoim " +"światłem. Może zostać wypatroszony na części. Do demontażu najlepsze byłyby " +"specjalistyczne narzędzia obcych, ale można się zadowolić bardziej ludzkimi " +"narzędziami." #: lang/json/GENERIC_from_json.py msgid "broken seeker drone" @@ -89676,6 +90532,9 @@ msgid "" "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 "" +"Zasilana magią świecącego proszku i pomniejszych eliksirów many, ta " +"niezwykle droga mała lampka zapewni wystarczającą ilość światła do czytania " +"przez co najmniej dekadę. Użyj jej, aby zamknąć pokrywę i ukryć światło." #: lang/json/GENERIC_from_json.py msgid "magical reading light (covered)" @@ -89693,6 +90552,10 @@ msgid "" "least a decade. The cover is closed. Use it to open the cover and show the" " light." msgstr "" +"Zasilana magią świecącego proszku i pomniejszych eliksirów many, ta " +"niezwykle droga mała lampka zapewni wystarczającą ilość światła do czytania " +"przez co najmniej dekadę. Pokrywa jest zamknięta. Użyj jej, aby uchylić " +"pokrywę i odkryć światło." #: lang/json/GENERIC_from_json.py msgid "bulette plate" @@ -89708,6 +90571,8 @@ msgid "" "The great plates from behind a bulette's head have always been prized for " "use in shield and armor making." msgstr "" +"Wielkie płyty z tylnej części głowy buletty zawsze były cenione do produkcji" +" tarcz i zbroi." #: lang/json/GENERIC_from_json.py msgid "bulette pearl" @@ -89724,6 +90589,9 @@ msgid "" "precious metals and gems which slowly aggregate into lustrous gemstones " "prized for their beauty and power." msgstr "" +"Gdy buletta przekopuje się przez ziemię, jej skrzela zbierają niewielkie " +"ilości metali szlachetnych i klejnotów, które powoli łączą się w lśniące " +"kamienie szlachetne, cenione za swoje piękno i moc." #: lang/json/GENERIC_from_json.py msgid "stirge proboscis" @@ -89739,6 +90607,7 @@ msgid "" "A long sucking apparatus harvested from stirge corpse. Makes a poor melee " "weapon." msgstr "" +"Długi aparat ssący pozyskany z ciała żądlaka. Kiepska broń do walki wręcz." #: lang/json/GENERIC_from_json.py msgid "chunk of demon chitin" @@ -89754,6 +90623,8 @@ msgid "" "A piece of demon spider exoskeleton. It is light and very durable, and " "probably has some magical properties." msgstr "" +"Fragment egzoszkieletu demonicznego pająka. Jest lekki i bardzo wytrzymały, " +"prawdopodobnie ma jakieś magiczne właściwości." #: lang/json/GENERIC_from_json.py msgid "bundle of demon chitin chunks" @@ -89769,6 +90640,8 @@ msgid "" "Pieces of demon spider exoskeleton, bundled tightly together for storage. " "Disassemble to unpack." msgstr "" +"Kawałki egzoszkieletu pająka demonicznego, spięte ciasno razem do " +"przechowywania. Rozłóż, aby rozpakować." #: lang/json/GENERIC_from_json.py msgid "demon chitin plate" @@ -89785,6 +90658,9 @@ msgid "" " of an adult demon spider. A plate of this size can be used to create armor" " plating." msgstr "" +"Duży kawałek egzoszkieletu demonicznego pająka, starannie wycięty ze zwłok " +"dorosłego demonicznego pająka. Płyta tej wielkości może być użyta do " +"stworzenia pancerza." #: lang/json/GENERIC_from_json.py msgid "demon spider fang" @@ -89800,6 +90676,8 @@ 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 "" +"Kieł z demonicznego pająka. Wygląda na to, że wciąż ocieka trucizną; może " +"uda ci się go wykorzystać w jakiejś alchemicznej recepturze?" #: lang/json/GENERIC_from_json.py msgid "mana dust" @@ -89839,7 +90717,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "Drewno nasycone maną." @@ -89890,6 +90768,9 @@ 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 "" +"Spreparowana skóra z czarnego smoka. Twarda, kwasoodporna, a z większą " +"ilością łusek mogłaby stworzyć zbroję tak twardą jak stal i o połowę " +"cięższą." #: lang/json/GENERIC_from_json.py msgid "bundle of black dragon hides" @@ -89905,6 +90786,8 @@ msgid "" "Hides from a black dragon, bundled tightly together for storage. " "Disassemble to unpack." msgstr "" +"Skóry czarnych smoków, zwinięte ciasno razem do przechowywania. Rozłóż, aby " +"rozpakować." #: lang/json/GENERIC_from_json.py msgid "vacation brochure" @@ -89946,6 +90829,8 @@ msgid "" "This is an well worn map. It has pictures of fantastical beasts " "embellishing the carefully drawn map markers." msgstr "" +"Jest to mocno podniszczona mapa. Posiada ilustracje fantastycznych bestii " +"zdobiących starannie narysowane znaczniki mapy." #: lang/json/GENERIC_from_json.py msgid "old photo" @@ -89995,6 +90880,8 @@ msgid "" "A broken clay golem, looking like a piece of post-modern art. Could be " "smashed for clay." msgstr "" +"Rozbity gliniany golem, wyglądający jak dzieło sztuki postmodernistycznej. " +"Może być rozbity na glinę." #: lang/json/GENERIC_from_json.py msgid "broken plastic golem" @@ -90010,6 +90897,9 @@ 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 "" +"Rozbity plastikowy golem, jak gigantyczna zabawka pogryziona przez równie " +"gigantycznego szczeniaka. Można by go rozbić na plastikowe kawałki do " +"recyklingu." #: lang/json/GENERIC_from_json.py msgid "broken stone golem" @@ -90025,6 +90915,8 @@ msgid "" "A broken stone golem, not that much different from big boulder. Could be " "smashed for stone." msgstr "" +"Rozbity kamienny golem, nie różniący się wiele od dużego głazu. Może być " +"rozbity na kamień." #: lang/json/GENERIC_from_json.py msgid "broken iron golem" @@ -90040,6 +90932,8 @@ msgid "" "A broken iron golem, with all iron you would possibly ever need. Could be " "smashed for iron." msgstr "" +"Zepsuty żelazny golem, z całym żelazem, jakiego kiedykolwiek potrzebowałeś. " +"Może być rozbity na kawałki żelaza." #: lang/json/GENERIC_from_json.py msgid "broken forge born" @@ -90055,6 +90949,8 @@ msgid "" "A broken forge born, with all orichalcum you would possibly ever need. " "Could be smashed for orichalcum." msgstr "" +"Rozbity zrodzony w kuźni, z całym orichalcum, jakiego kiedykolwiek " +"potrzebowałeś. Może zostać rozbity dla orichalcum." #: lang/json/GENERIC_from_json.py msgid "lesser dimensional bag" @@ -90071,6 +90967,10 @@ msgid "" "reduces the weight of its contents and expands less than the amount of stuff" " you put into it. It takes a few words and hand-waving to take an item out." msgstr "" +"Jest to torba, która może pomieścić więcej niż powinna. Torba w magiczny " +"sposób zmniejsza wagę swojej zawartości i rozszerza się w mniejszym stopniu " +"niż ilość rzeczy, które do niej włożyłeś. Wystarczy kilka słów i machnięć " +"ręką, aby wyjąć przedmiot." #: lang/json/GENERIC_from_json.py msgid "dimensional bag" @@ -90094,6 +90994,8 @@ msgid "" "This dimensional bag has reached the limits of human innovation with a " "combination of manufacturing and magical secrets." msgstr "" +"Ta wymiarowa torba osiągnęła granice ludzkiej innowacyjności dzięki " +"połączeniu sekretów technologicznych i magicznych." #: lang/json/GENERIC_from_json.py msgid "supergravity preservation box" @@ -90109,6 +91011,9 @@ msgid "" "A box that uses gravity magic to preserve food. It makes the box much " "heavier, but anything in it lasts far longer and you can store more." msgstr "" +"Pudełko, które wykorzystuje magię grawitacji do konserwacji żywności. " +"Sprawia to, że pudełko jest o wiele cięższe, ale wszystko, co się w nim " +"znajduje wytrzymuje o wiele dłużej i można przechowywać więcej." #: lang/json/GENERIC_from_json.py msgid "minor staff of the magi" @@ -90124,6 +91029,8 @@ msgid "" "A simple carved staff, made of wood. It faintly glows with magic when you " "cast spells. Wielding it slightly increases your mana regeneration" msgstr "" +"Prosta, rzeźbiona laska, wykonana z drewna. Słabo świeci magią, gdy rzucasz " +"zaklęcia. Trzymanie jej zwiększa nieco regenerację many." #: lang/json/GENERIC_from_json.py msgid "lesser staff of the magi" @@ -90140,6 +91047,9 @@ msgid "" "magic when you cast spells, but it is not a sturdy melee weapon. Wielding " "it increases your mana regeneration." msgstr "" +"Pięknie rzeźbiona laska, wykonana z zaczarowanego drewna. Słabo świeci " +"magią, gdy rzucasz zaklęcia, ale nie jest to mocna broń do walki wręcz. " +"Trzymanie jej zwiększa regenerację many." #: lang/json/GENERIC_from_json.py msgid "greater staff of the magi" @@ -90156,6 +91066,9 @@ msgid "" "glows with magic when you cast spells, but it is not a sturdy melee weapon." " Wielding it greatly increases your mana regeneration." msgstr "" +"Pięknie rzeźbiona laska, wykonana z zaklętego drewna i mithrilu. Słabo " +"świeci magią, gdy rzucasz zaklęcia, ale nie jest to mocna broń do walki " +"wręcz. Trzymanie jej znacznie zwiększa regenerację many." #: lang/json/GENERIC_from_json.py msgid "fireball hammer" @@ -90168,7 +91081,7 @@ msgstr[3] "" #. ~ Description for fireball hammer #: lang/json/GENERIC_from_json.py msgid "Use with caution! Flammable! Explosive!" -msgstr "" +msgstr "Stosować ostrożnie! Łatwopalne! Wybuchowe!" #: lang/json/GENERIC_from_json.py msgid "The Iron Whip" @@ -90184,6 +91097,8 @@ msgid "" "You loop the whip in your hand and it coils back into a belt form in an " "instant." msgstr "" +"Zapętlasz bicz w dłoni, a on w jednej chwili zwija się z powrotem do postaci" +" pasa." #. ~ Description for The Iron Whip #: lang/json/GENERIC_from_json.py @@ -90192,6 +91107,9 @@ msgid "" "the end. Easily capable of slicing and dicing anything that comes at you. " "It transforms back into a belt." msgstr "" +"Długi, giętki, stalowy bicz, który na końcu zwęża się w ostrze. Z łatwością " +"można nim kroić w plastry i kostki wszystko, co się na ciebie rzuci. Zmienia" +" się z powrotem w pas." #: lang/json/GENERIC_from_json.py msgid "cudgel +1" @@ -90879,6 +91797,8 @@ msgid "" "A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " "rune embedded at the base of the head." msgstr "" +"Groteskowy kościany grot włóczni na solidnym drewnianym palu. U podstawy " +"głowni wmurowana jest runa biomanty." #: lang/json/GENERIC_from_json.py msgid "Biomancer shifting spear" @@ -90892,6 +91812,7 @@ msgstr[3] "" #: lang/json/GENERIC_from_json.py msgid "You feel the spear rapidly contracting and squirming for ranged combat" msgstr "" +"Czujesz, jak włócznia gwałtownie się kurczy i napina do walki dystansowej." #. ~ Description for Biomancer shifting spear #: lang/json/GENERIC_from_json.py @@ -90900,6 +91821,9 @@ msgid "" "rune embedded in the middle. You feel this spear squirming in your hand as " "if alive." msgstr "" +"Groteskowy, kościany grot na stwardniałym, mięsnym palu. W środku osadzona " +"jest runa biomanty. Czujesz, jak ta włócznia wije się w twojej dłoni jak " +"żywa." #: lang/json/GENERIC_from_json.py msgid "Technomancer toolbar" @@ -90916,14 +91840,17 @@ msgid "" "hammer on the other in a convenient package. There is a Technomancer rune " "embedded in the hammerhead." msgstr "" +"Ta laska łączy w sobie solidny klucz płaski po jednej, a łom i młotek po " +"drugiej stronie w jedną wygodną całość. Na głowicy młotka znajduje się runa " +"technomanty." #: lang/json/GENERIC_from_json.py msgid "Magus staff" msgid_plural "Magus staves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "laska maga" +msgstr[1] "laski maga" +msgstr[2] "lasek maga" +msgstr[3] "laski maga" #. ~ Description for Magus staff #: lang/json/GENERIC_from_json.py @@ -90932,6 +91859,9 @@ msgid "" "and infused with mana for durability, to act as mana receptacles. There are" " two Magi runes embedded at the tips." msgstr "" +"Laska z wyrytymi runami i dwa szklane słoje, hartowane na gorąco i nasycone " +"maną dla większej trwałości, służące jako pojemniki na manę. Na czubkach " +"znajdują się dwie runy magów." #: lang/json/GENERIC_from_json.py msgid "Magus battle staff" @@ -90948,6 +91878,9 @@ msgid "" "enchanted with mana for durability. It fills you with an invigorating " "sensation. There are two Magi runes carved into the wood." msgstr "" +"Laska z wyrytymi runami i dwiema perłami many na czubku, nasycona maną dla " +"zwiększenia trwałości. Wypełnia cię ożywczym uczuciem. W drewnie wyryte są " +"dwie runy magów." #: lang/json/GENERIC_from_json.py msgid "Kelvinist flamberge" @@ -90963,6 +91896,8 @@ msgid "" "A sword with an undulating blade, reminiscent of a flame. There is a " "Kelvinist rune embedded in the pommel." msgstr "" +"Miecz o falującym ostrzu, przypominającym płomień. W klingę wmurowana jest " +"runa kelwinistyczna." #: lang/json/GENERIC_from_json.py msgid "Stormshaper axe" @@ -90978,6 +91913,8 @@ msgid "" "A forged copper axe with silver trimmings and a wooden handle. There is a " "Stormshaper rune embedded in the eye." msgstr "" +"Kuty miedziany topór z srebrnymi wykończeniami i drewnianą rękojeścią. W oku" +" osadzona jest runa mistrzów burz." #: lang/json/GENERIC_from_json.py msgid "Animist athame" @@ -90993,6 +91930,8 @@ msgid "" "A steel ritual knife used by Animists to draw blood for summoning. Their " "school rune is embedded in the crossguard." msgstr "" +"Stalowy nóż rytualny używany przez Animistów do upuszczania krwi w celu " +"przywołania. Ich szkolna runa jest osadzona na jelcu." #: lang/json/GENERIC_from_json.py msgid "springstaff(baton)" @@ -91010,7 +91949,7 @@ msgstr "Wydłuż do laski" #. ~ Use action msg for springstaff(baton). #: lang/json/GENERIC_from_json.py msgid "You snap open your springstaff into staff mode." -msgstr "" +msgstr "Z trzaskiem otwierasz swoją sprężynową laskę w tryb laski." #. ~ Description for springstaff(baton) #: lang/json/GENERIC_from_json.py @@ -91018,6 +91957,9 @@ msgid "" "This versatile weapon uses Technomancy-enhanced springs to keep the staff " "tips retracted while in baton configuration. Activate to extend." msgstr "" +"Ta wszechstronna broń wykorzystuje sprężyny wspomagane przez Technomancję, " +"aby utrzymać końcówki laski w pozycji schowanej, gdy są w konfiguracji " +"pałki. Aktywuj, aby wysunąć." #: lang/json/GENERIC_from_json.py msgid "springstaff(staff)" @@ -91035,7 +91977,7 @@ msgstr "Skróć do pałki" #. ~ Use action msg for springstaff(staff). #: lang/json/GENERIC_from_json.py msgid "You collapse your springstaff into baton mode." -msgstr "" +msgstr "Składasz swoją sprężynową laskę w tryb pałki." #. ~ Description for springstaff(staff) #: lang/json/GENERIC_from_json.py @@ -91043,6 +91985,9 @@ msgid "" "This versatile weapon uses Technomancy-enhanced springs to keep the staff " "tips from retracting while in staff configuration. Activate to extend." msgstr "" +"Ta wszechstronna broń wykorzystuje wzmocnione przez Technomancję sprężyny, " +"dzięki którym końcówki laski nie chowają się, gdy są w trybie laski. " +"Aktywuj, aby wysunąć." #: lang/json/GENERIC_from_json.py msgid "endless flask" @@ -91056,6 +92001,7 @@ msgstr[3] "" #: lang/json/GENERIC_from_json.py msgid "You open the flask and discover it full of sweet, sweet, whiskey!" msgstr "" +"Otwierasz flaszkę i odkrywasz, że jest pełna słodkiej, słodkiej, whiskey!" #: lang/json/GENERIC_from_json.py msgid "magic token" @@ -91085,7 +92031,7 @@ msgstr[3] "" #. ~ Use action menu_text for crowbar token. #: lang/json/GENERIC_from_json.py msgid "Whisper command" -msgstr "" +msgstr "Wyszepcz komendę" #. ~ Use action msg for longsword token. #: lang/json/GENERIC_from_json.py @@ -91093,6 +92039,8 @@ msgid "" "You say the command word engraved on the token, and it rapidly grows and " "morphs into a shiny pristine longsword!" msgstr "" +"Wypowiadasz słowo komendy wyryte na żetonie, a on szybko rośnie i zmienia " +"się w lśniący, nieskazitelny miecz!" #. ~ Description for longsword token #: lang/json/GENERIC_from_json.py @@ -91100,6 +92048,9 @@ msgid "" "A large 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 "" +"Duża srebrna moneta, która po aktywacji poprzez wypowiedzenie słowa na " +"odwrocie, zamienia się w przedmiot przedstawiony na awersie, w tym przypadku" +" w miecz długi." #: lang/json/GENERIC_from_json.py msgid "arming sword token" @@ -91115,6 +92066,8 @@ msgid "" "You say the command word engraved on the token, and it rapidly grows and " "morphs into a shiny pristine arming sword!" msgstr "" +"Wypowiadasz słowo komendy wyryte na żetonie, a on szybko rośnie i zmienia " +"się w lśniący, nieskazitelny jednoręczny miecz!" #. ~ Description for arming sword token #: lang/json/GENERIC_from_json.py @@ -91122,6 +92075,9 @@ msgid "" "A 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 "" +"Duża srebrna moneta, która po aktywacji poprzez wypowiedzenie słowa na " +"odwrocie, zamienia się w przedmiot przedstawiony na awersie, w tym przypadku" +" w miecz jednoręczny." #: lang/json/GENERIC_from_json.py msgid "broadsword token" @@ -91137,6 +92093,8 @@ msgid "" "You say the command word engraved on the token, and it rapidly grows and " "morphs into a shiny pristine broadsword!" msgstr "" +"Wypowiadasz słowo komendy wyryte na żetonie, a on szybko rośnie i zmienia " +"się w lśniący, nieskazitelny miecz szeroki!" #. ~ Description for broadsword token #: lang/json/GENERIC_from_json.py @@ -91144,6 +92102,9 @@ msgid "" "A large 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 "" +"Duża srebrna moneta, która po aktywacji poprzez wypowiedzenie słowa na " +"odwrocie, zamienia się w przedmiot przedstawiony na awersie, w tym przypadku" +" w miecz szeroki." #: lang/json/GENERIC_from_json.py msgid "battleaxe token" @@ -91159,6 +92120,8 @@ msgid "" "You say the command word engraved on the token, and it rapidly grows and " "morphs into a shiny pristine battle axe!" msgstr "" +"Wypowiadasz słowo komendy wyryte na żetonie, a on szybko rośnie i zmienia " +"się w lśniący, nieskazitelny topór bojowy!" #. ~ Description for battleaxe token #: lang/json/GENERIC_from_json.py @@ -91166,6 +92129,9 @@ msgid "" "A large 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 "" +"Duża srebrna moneta, która po aktywacji poprzez wypowiedzenie słowa na " +"odwrocie zamienia się w przedmiot przedstawiony na awersie, w tym przypadku " +"w topór bojowy." #: lang/json/GENERIC_from_json.py msgid "pike token" @@ -91181,6 +92147,8 @@ msgid "" "You say the command word engraved on the token, and it rapidly grows and " "morphs into a shiny pristine pike!" msgstr "" +"Wypowiadasz słowo komendy wyryte na żetonie, a on szybko rośnie i zmienia " +"się w lśniącą, nieskazitelną pikę!" #. ~ Description for pike token #: lang/json/GENERIC_from_json.py @@ -91188,6 +92156,9 @@ msgid "" "A large 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 "" +"Duża srebrna moneta, która po aktywacji poprzez wypowiedzenie słowa na " +"odwrocie zamienia się w przedmiot przedstawiony na awersie, w tym przypadku " +"w pikę." #: lang/json/GENERIC_from_json.py msgid "mace token" @@ -91203,6 +92174,8 @@ msgid "" "You say the command word engraved on the token, and it rapidly grows and " "morphs into a shiny pristine mace!" msgstr "" +"Wypowiadasz słowo komendy wyryte na żetonie, a on szybko rośnie i zmienia " +"się w lśniący, nieskazitelny buzdygan!" #. ~ Description for mace token #: lang/json/GENERIC_from_json.py @@ -91210,6 +92183,9 @@ msgid "" "A large 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 "" +"Duża srebrna moneta, która po aktywacji poprzez wypowiedzenie słowa na " +"odwrocie zamienia się w przedmiot przedstawiony na przedniej stronie, w tym " +"przypadku w buzdygan." #: lang/json/GENERIC_from_json.py msgid "quarterstaff token" @@ -91225,6 +92201,8 @@ msgid "" "You say the command word engraved on the token, and it rapidly grows and " "morphs into a pristine quarterstaff!" msgstr "" +"Wypowiadasz słowo komendy wyryte na żetonie, a on szybko rośnie i zmienia " +"się w nieskazitelną laskę!" #. ~ Description for quarterstaff token #: lang/json/GENERIC_from_json.py @@ -91232,6 +92210,9 @@ msgid "" "A large 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 "" +"Duża srebrna moneta, która po aktywacji poprzez wypowiedzenie słowa na " +"odwrocie zamienia się w przedmiot przedstawiony na przedniej stronie, w tym " +"przypadku w laskę." #: lang/json/GENERIC_from_json.py msgid "hammer token" @@ -91247,6 +92228,8 @@ msgid "" "You say the command word engraved on the token, and it rapidly grows and " "morphs into a shiny pristine hammer!" msgstr "" +"Wypowiadasz słowo komendy wyryte na żetonie, a on szybko rośnie i zmienia " +"się w lśniący, nieskazitelny młot!" #. ~ Description for hammer token #: lang/json/GENERIC_from_json.py @@ -91254,6 +92237,9 @@ msgid "" "A large 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 "" +"Duża srebrna moneta, która po aktywacji poprzez wypowiedzenie słowa na " +"odwrocie zamienia się w przedmiot przedstawiony na przedniej stronie, w tym " +"przypadku w młot." #: lang/json/GENERIC_from_json.py msgid "screwdriver set token" @@ -91269,6 +92255,8 @@ msgid "" "You say the command word engraved on the token, and it rapidly grows and " "morphs into a shiny pristine screwdriver set!" msgstr "" +"Wypowiadasz słowo komendy wygrawerowane na żetonie, a on szybko rośnie i " +"zmienia się w lśniący, nieskazitelny zestaw śrubokrętów!" #. ~ Description for screwdriver set token #: lang/json/GENERIC_from_json.py @@ -91276,6 +92264,9 @@ msgid "" "A large 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 "" +"Duża srebrna moneta, która po aktywacji poprzez wypowiedzenie słowa na " +"odwrocie zamienia się w przedmiot przedstawiony na przedniej stronie, w tym " +"przypadku w zestaw śrubokrętów." #: lang/json/GENERIC_from_json.py msgid "crowbar token" @@ -91291,6 +92282,8 @@ msgid "" "You say the command word engraved on the token, and it rapidly grows and " "morphs into a shiny pristine crowbar!" msgstr "" +"Wypowiadasz słowo komendy wyryte na żetonie, a on szybko rośnie i zmienia " +"się w lśniący, nieskazitelny łom!" #. ~ Description for crowbar token #: lang/json/GENERIC_from_json.py @@ -91298,6 +92291,9 @@ msgid "" "A large 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 "" +"Duża srebrna moneta, która po aktywacji poprzez wypowiedzenie słowa na " +"odwrocie zamienia się w przedmiot przedstawiony na przedniej stronie, w tym " +"przypadku w łom." #: lang/json/GENERIC_from_json.py msgid "crowbar +1" @@ -91458,6 +92454,10 @@ msgid "" "stout padding underneath to protect the wearers hand. It has been enchanted" " to emit dark magical flames that only harm enemies." msgstr "" +"Ciężka metalowa osłona, która obejmuje pięść i zwiększa siłę uderzenia, a " +"pod nią znajduje się mocna wyściółka chroniąca dłoń użytkownika. Została " +"zaczarowana, by emitować ciemne, magiczne płomienie, które ranią tylko " +"wrogów." #: lang/json/GENERIC_from_json.py msgid "flaming fist +1" @@ -91489,6 +92489,8 @@ msgid "" "A large gleaming metal gauntlet covered in magical symbols that allows you " "to land astoundingly powerful blows." msgstr "" +"Duża, błyszcząca, metalowa rękawica pokryta magicznymi symbolami, która " +"pozwala ci zadawać zdumiewająco potężne ciosy." #: lang/json/GENERIC_from_json.py msgid "Earthshaper cestus" @@ -91505,6 +92507,9 @@ msgid "" "while increasing striking power. There is an Earthshaper rune embedded in " "the palm." msgstr "" +"Kamienna rękawica bojowa z wyrytymi runami otaczającymi dłoń, chroniącymi ją" +" i zwiększającymi siłę uderzenia. Na dłoni znajduje się runa Kształtującego " +"Ziemię." #: lang/json/GENERIC_from_json.py msgid "The Stormhammer" @@ -91520,14 +92525,16 @@ msgid "" "A crackling magical warhammer full of lightning to smite your foes with, and" " of course, smash things to bits!" msgstr "" +"Iskrzący magiczny młot wojenny pełen błyskawic, którym możesz razić swoich " +"wrogów i oczywiście rozbijać rzeczy na kawałki!" #: lang/json/GENERIC_from_json.py lang/json/SPELL_from_json.py msgid "Stormfist" msgid_plural "Stormfists" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Pięść Burzy" +msgstr[1] "Pięści Burzy" +msgstr[2] "Pięści Burzy" +msgstr[3] "Pięści Burzy" #. ~ Description for Stormfist #: lang/json/GENERIC_from_json.py lang/json/SPELL_from_json.py @@ -91552,6 +92559,8 @@ msgid "" "A long, writhing, tentacle covered in sharp bonelike blades and spikey " "protrusions." msgstr "" +"Długa, wijąca się macka pokryta ostrymi, kościstymi ostrzami i kolczastymi " +"wypustkami." #: lang/json/GENERIC_from_json.py msgid "flarewhip" @@ -91567,6 +92576,8 @@ msgid "" "A long whip made of blue-hot magical flames. The heat is horrendous when " "touching an enemy." msgstr "" +"Długi bicz wykonany z rozgrzanych do niebieskości magicznych płomieni. Żar " +"jest potworny, gdy dotknie przeciwnika." #: lang/json/GENERIC_from_json.py msgid "Wicked Bonespear" @@ -91580,6 +92591,7 @@ msgstr[3] "" #: lang/json/GENERIC_from_json.py msgid "This is a wicked spear/halberd hybrid entirely created of bone." msgstr "" +"Jest to diabelska hybryda włóczni i halabardy wykonana w całości z kości." #: lang/json/GENERIC_from_json.py msgid "flaming sword" @@ -91595,6 +92607,8 @@ msgid "" "This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" " up soon." msgstr "" +"Ten drewniany miecz jest w płomieniach! Wydaje się być dość bezpieczny do " +"trzymania, ale wkrótce się spali." #: lang/json/GENERIC_from_json.py msgid "decaying boneclub" @@ -91610,6 +92624,8 @@ msgid "" "A pulsating club made of bone, stained with an ever-moving blood coating " "eager to absorb the living." msgstr "" +"Pulsująca pałka z kości, zabarwiona wiecznie ruchomą krwawą powłoką, chętna " +"by pochłaniać żywych." #: lang/json/GENERIC_from_json.py msgid "subzero talons" @@ -91619,12 +92635,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " "however, feel only a slight chill on your hands." msgstr "" +"Pazury wykonane z lodu, potrafią zamrażać przy kontakcie z przeciwnikiem. Ty" +" jednak czujesz tylko lekki chłód na dłoniach." #: lang/json/GENERIC_from_json.py msgid "jar of force" @@ -91657,6 +92675,9 @@ msgid "" "later two-handed swords in size. It glows slightly and its edge is " "exceedingly sharp." msgstr "" +"Jest to przywołany średniowieczny miecz, który pod względem wielkości " +"plasuje się pomiędzy lżejszym mieczem jednoręcznym a późniejszymi mieczami " +"dwuręcznymi. Świeci lekko, a jego krawędź jest niezwykle ostra." #: lang/json/GENERIC_from_json.py msgid "magical throwing knife" @@ -91673,6 +92694,9 @@ msgid "" "ineffective cutting edge and odd shape makes it unsuitable for use as a " "tool." msgstr "" +"Cienki i płaski nóż do rzucania, spowity w eteryczne płomienie. Jego " +"nieskuteczna krawędź tnąca i dziwny kształt sprawiają, że nie nadaje się do " +"użycia jako narzędzie." #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -91680,6 +92704,9 @@ msgid "" "A thin and flat knife made for throwing, emanates cold. Its ineffective " "cutting edge and odd shape makes it unsuitable for use as a tool." msgstr "" +"Cienki i płaski nóż przeznaczony do rzucania, emanuje zimnem. Jego " +"nieskuteczna krawędź tnąca i dziwny kształt sprawiają, że nie nadaje się do " +"użycia jako narzędzie." #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -91688,6 +92715,9 @@ msgid "" "sharp. Its ineffective cutting edge and odd shape makes it unsuitable for " "use as a tool." msgstr "" +"Cienki i płaski nóż o szerokiej krawędzi, przeznaczony do rzucania, sprawia " +"wrażenie nienaturalnie ostrego. Jego nieskuteczna krawędź tnąca i dziwny " +"kształt sprawiają, że nie nadaje się do użycia jako narzędzie." #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -91696,6 +92726,9 @@ msgid "" "covered in dark ooze. Its ineffective cutting edge and odd shape makes it " "unsuitable for use as a tool." msgstr "" +"Cienki i płaski nóż do rzucania, wykonany z porowatej substancji i pokryty " +"ciemną mazią. Jego nieskuteczna krawędź tnąca i dziwny kształt sprawiają, że" +" nie nadaje się do użycia jako narzędzie." #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -91703,6 +92736,9 @@ msgid "" "A transparent blade seems to radiate intent to be thrown. Its ineffective " "cutting edge and odd shape makes it unsuitable for use as a tool." msgstr "" +"Przezroczyste ostrze wydaje się promieniować chęcią rzucenia. Jego " +"nieefektywna krawędź tnąca i dziwny kształt sprawiają, że nie nadaje się do " +"użycia jako narzędzie." #: lang/json/GENERIC_from_json.py msgid "parabolan felt patch" @@ -91718,6 +92754,8 @@ msgid "" "A smallish patch of iridescent felt; could be disassembled for parabolan " "wool fiber." msgstr "" +"Niewielki skrawek opalizującego filcu; może być zdemontowany na włókno wełny" +" parabolicznej." #. ~ Description for Mjölnir #: lang/json/GENERIC_from_json.py @@ -91726,6 +92764,8 @@ msgid "" "mountains with a single blow. You feel the power of Asgard coursing through" " the hammer." msgstr "" +"Mjölnir, legendarny młot Thora. Podobno jednym ciosem można nim zrównać z " +"ziemią góry. Czujesz, jak moc Asgardu przepływa przez ten młot." #: lang/json/GENERIC_from_json.py msgid "Gungnir" @@ -91742,6 +92782,9 @@ msgid "" "perfectly hitting any target regardless of the wielder's strength or skill." " If feels like Odin's protecting you." msgstr "" +"Gungnir, włócznia Odyna. Mówi się, że jest to idealna włócznia, doskonale " +"trafiająca w każdy cel, niezależnie od siły i umiejętności jej posiadacza. " +"Czujesz się, jakby Odyn cię chronił." #: lang/json/GENERIC_from_json.py msgid "Gram" @@ -91758,6 +92801,9 @@ msgid "" "legendary dragon, Fafnir. Once said to have cleaved Regin's anvil in half, " "the edge is impeccable." msgstr "" +"Gram, miecz Sigurda. Mówi się, że jest to miecz, który zabił legendarnego " +"smoka Fafnira. Podobno kiedyś rozciął kowadło Regina na pół, a jego krawędź " +"jest nieskazitelna." #: lang/json/GENERIC_from_json.py msgid "Laevateinn" @@ -91774,6 +92820,8 @@ msgid "" "Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god" " himself." msgstr "" +"Laevateinn, laska Lokiego. Mówi się, że Loki wyrwał ją z bram Helu. " +"Przepełniona tajemniczą magią samego boga psotnika." #: lang/json/GENERIC_from_json.py lang/json/SPELL_from_json.py msgid "Wolfsbane" @@ -91790,6 +92838,9 @@ msgid "" "during the days when the Black Forest went from France to Transylvania, " "these spears targeted the Loup Garou that were weak against fire." msgstr "" +"Włócznie postrachy wilków są zazwyczaj antykami przywiezionymi z Europy. " +"Wykuwane w czasach, gdy Czarny Las ciągnął się od Francji do Transylwanii, " +"włócznie te były przeznaczone na wrażliwe na ogień wilkołaki." #: lang/json/GENERIC_from_json.py msgid "orichalcum ingot" @@ -91805,6 +92856,8 @@ 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 "" +"Sztabka orichalcum. Wymiary około 3 cm na 7 cm na 12 cm, gotowa do " +"wykorzystania przy różnych pracach kowalskich." #: lang/json/GENERIC_from_json.py msgid "mithril ingot" @@ -91820,6 +92873,8 @@ msgid "" "An ingot of mithril. About 3 cm by 7 cm by 12 cm in size, ready to be used " "for various blacksmithing tasks." msgstr "" +"Sztabka mithrilu. Wymiary około 3 cm na 7 cm na 12 cm, gotowa do " +"wykorzystania przy różnych pracach kowalskich." #: lang/json/GENERIC_from_json.py msgid "cauldron of purification" @@ -91836,6 +92891,9 @@ msgid "" "will hold 16 liters of material and will absorb poisons from it. It may " "have other properties that require discovery." msgstr "" +"Ten kociołek wykonany z chityny pająka demonicznego zdaje się pochłaniać " +"światło. Pomieści 16 litrów materiału i wchłonie z niego trucizny. Może mieć" +" inne właściwości, które wymagają odkrycia." #: lang/json/GENERIC_from_json.py msgid "orichalcum cauldron" @@ -91851,6 +92909,8 @@ msgid "" "This is an alchemical cauldron made of orichalcum. The metal is especially " "resistant to the unique types of corrosion caused by alchemy." msgstr "" +"Jest to kociołek alchemiczny wykonany z orichalcum. Metal ten jest " +"szczególnie odporny na unikalne rodzaje korozji powodowane przez alchemię." #: lang/json/GENERIC_from_json.py msgid "fireproof mortar" @@ -91860,12 +92920,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " "temperatures on par with dragonbreath." msgstr "" +"Trochę zaprawy alchemicznej, gotowej do użycia w projektach budowlanych " +"zakładających temperatury równe smoczemu oddechowi." #: lang/json/GENERIC_from_json.py msgid "greatclub" @@ -91881,6 +92943,8 @@ 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 "" +"Mocna, sękata maczuga z dużą gałką na szczycie. Choć jest bardzo ciężka, to " +"w rękach silnego przeciwnika stanowi bardzo skuteczną broń." #: lang/json/GENERIC_from_json.py msgid "wood trident" @@ -91897,14 +92961,17 @@ msgid "" "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 "" +"Drewniana broń do walki wręcz z ręcznie kutym stalowym, rozwidlonym grotem " +"na końcu. Można nią dźgać przeciwników na bliskim dystansie lub rzucać nią, " +"a w odpowiednich rękach można nią także łatwo rozbroić przeciwnika." #: lang/json/GENERIC_from_json.py lang/json/gun_from_json.py msgid "barbed javelin" msgid_plural "barbed javelins" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kolczasty oszczep" +msgstr[1] "kolczaste oszczepy" +msgstr[2] "kolczastych oszczepów" +msgstr[3] "kolczastego oszczepu" #. ~ Description for barbed javelin #: lang/json/GENERIC_from_json.py @@ -91913,6 +92980,9 @@ msgid "" "for better accuracy. The business end of the javelin has wicked-looking " "barbs which could cause significant bleeding." msgstr "" +"Ta broń mierzy około 3 stóp długości i jest zakończona jak strzała dla " +"lepszej celności. Końcówka oszczepu ma groźnie wyglądające zadziory, które " +"mogą spowodować poważne krwawienie." #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "foldable orichalcum frame" @@ -91928,6 +92998,8 @@ msgid "" "A folding frame made of orichalcum pipes. Not as light as aluminum, but " "significantly sturdier." msgstr "" +"Składana rama wykonana z rur orichalcum. Nie tak lekka jak aluminiowa, ale " +"znacznie wytrzymalsza." #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "orichalcum frame" @@ -91943,6 +93015,8 @@ msgid "" "A frame made of orichalcum. Significantly sturdier than steel, but also " "much more expensive." msgstr "" +"Rama wykonana z orichalcum. Znacznie bardziej wytrzymała niż stal, ale też " +"znacznie droższa." #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "light orichalcum frame" @@ -91958,6 +93032,8 @@ msgid "" "A frame made of orichalcum. Partially torn down in order to reduce weight " "at the cost of durability." msgstr "" +"Rama wykonana z orichalcum. Częściowo zdarta w celu zmniejszenia wagi " +"kosztem trwałości." #: lang/json/GENERIC_from_json.py msgid "magic v-twin combustion engine" @@ -91974,6 +93050,9 @@ msgid "" " mana rather than normal fuel, it otherwise functions exactly as a " "conventional internal combustion engine." msgstr "" +"Magicznie zamanifestowany silnik spalinowy. Pomimo tego, że działa " +"całkowicie na bazie many, a nie normalnego paliwa, funkcjonuje dokładnie " +"tak, jak konwencjonalny silnik spalinowy." #. ~ Use action friendly_msg for broken chickenbot. #. ~ Use action friendly_msg for inactive chicken walker. @@ -91998,7 +93077,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -92015,7 +93094,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -92574,7 +93653,7 @@ msgid "" "abandoned extrasolar colony far from Earth hundreds of years from today." msgstr "" "Zmierzająca w stronę survival horroru pełna konwersja osadzona w większości " -"opuszczonej pozasłonecznej kolonii z dala od Ziemi, setki lat od dzisiaj." +"opuszczonej pozasłonecznej kolonii z dala od Ziemi, setki lat później." #: lang/json/MOD_INFO_from_json.py msgid "Blaze Industries" @@ -92848,7 +93927,7 @@ msgid "" "\n" "See extended description in README.md." msgstr "" -"- Nie ma już gwarantowanych miejsc łupu wszędzie.\n" +"- Nie ma już wszędzie gwarantowanych miejsc łupu.\n" "- Łup pojawiający się w budynkach jest drastycznie ograniczony, szczególnie jedzenie, narzędzia, broń palna itp.\n" "- Większość budynków jest zniszczonych, uszkodzonych albo splądrowanych.\n" "- Większość samochodów jest zniszczonych albo przynajmniej uszkodzonych. Nieruszone pojazdy są praktycznie niemożliwa do znalezienia.\n" @@ -92886,6 +93965,19 @@ msgid "" msgstr "" "Usuwa wszystkie potwory z gry, oprócz tych z kategorii \"dzikie zwierzęta\"." +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "Szperanie" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" +"Niektóre meble pojemniki muszą otworzyć drzwi, by przeszukiwać, by zwiększyć" +" dreszczyk przeszukiwania." + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "Statystyki przez umiejętności" @@ -93053,12 +94145,13 @@ msgstr "Ikonki sees-player, run, crouch, bleed, retrodays" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" "Dodaję ikonkę pokazującą, jeśli stworzenie widzi gracza. Dodaje ikonki " -"statusu dla biegania, kucania i krwawienia nad kafelkiem gracza. " -"Zaprojektowane dla nakładki graficznej retrodays." +"statusu dla biegania, kucania, leżenia, krwawienia, światła nad kafelkiem " +"gracza. Zaprojektowane dla nakładki graficznej retrodays, ale działa dobrze " +"również z neodays." #: lang/json/MOD_INFO_from_json.py msgid "SpeedyDex" @@ -93501,6 +94594,11 @@ msgstr "" "arsenałem broni, i nie wygląda na to, by śpieszył się z wycelowaniem go w " "ciebie, to lepiej zachować dystans." +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "Czworonożny Exodii wystrzeliwuje ze swojej broni!" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "szu!" @@ -93689,7 +94787,7 @@ msgid "" " marks a low-force variant - *comparatively* low-force, anyways - typically " "deployed as guards after an area has been cleared." msgstr "" -"Robot Northrop \"Posłaniec\", opracowany do kontroli tłumów, przenosi i " +"Robot Northrop „Posłaniec”, opracowany do kontroli tłumów, przenosi i " "wypuszcza drony kamikaze różnych typów. Jaskrawozielony i żółty lakier " "oznacza wariant o niskiej sile rażenia - czytaj: *relatywnie* niskiej - i " "typowo rozmieszczany jest jako straż gdy teren zostanie oczyszczony." @@ -93710,7 +94808,7 @@ msgid "" "the lethal and feared military variant, carrying extreme and deadly " "firepower." msgstr "" -"Robot Northrop \"Posłaniec\", opracowany do kontroli tłumów, przenosi i " +"Robot Northrop „Posłaniec”, opracowany do kontroli tłumów, przenosi i " "wypuszcza drony kamikaze różnych typów. Ciemnozielony lakier oznacza " "zabójczy i budzący grozę wojskowy wariant, przenoszący na pokładzie " "ekstremalną, śmiertelną wersję broni." @@ -94045,7 +95143,7 @@ msgstr[1] "maleńkie ryby" msgstr[2] "maleńkich ryb" msgstr[3] "maleńkiej ryby" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "Maleńka ryba." @@ -94058,7 +95156,7 @@ msgstr[1] "małe ryby" msgstr[2] "małych ryb" msgstr[3] "małej ryby" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "Mała ryba." @@ -94071,7 +95169,7 @@ msgstr[1] "średnie ryby" msgstr[2] "średnich ryb" msgstr[3] "średniej ryby" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "Średnia ryba." @@ -94084,7 +95182,7 @@ msgstr[1] "duże ryby" msgstr[2] "dużych ryb" msgstr[3] "dużej ryby" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "Duża ryba" @@ -94097,7 +95195,7 @@ msgstr[1] "ogromne ryby" msgstr[2] "ogromnych ryb" msgstr[3] "ogromnej ryby" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "Olbrzymia ryba." @@ -94268,7 +95366,7 @@ msgstr[1] "sieje" msgstr[2] "siei" msgstr[3] "siei" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -94285,7 +95383,7 @@ msgstr[1] "bassy wielkogębowe" msgstr[2] "bassów wielkogębowych" msgstr[3] "bassa wielkogębowego" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "Bass wielkogębowy to bardzo popularna ryba wśród wędkarzy sportowych." @@ -94298,7 +95396,7 @@ msgstr[1] "bassy małogębowe" msgstr[2] "bassów małogębowych" msgstr[3] "bassa małogębowego" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -94315,7 +95413,7 @@ msgstr[1] "skalniki prążkowane" msgstr[2] "skalników prążkowanych" msgstr[3] "skalnika prążkowanego" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -94332,7 +95430,7 @@ msgstr[1] "bassy białe" msgstr[2] "bassów białych" msgstr[3] "bassa białego" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -94380,7 +95478,7 @@ msgstr[1] "bassy błękitnoskrzelne" msgstr[2] "bassów błękitnoskrzelnych" msgstr[3] "bassa błękitnoskrzelnego" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "Bass błękitnoskrzeli. Mała ryba z rodziny bassowatych." @@ -94393,7 +95491,7 @@ msgstr[1] "bassy słoneczne" msgstr[2] "bassów słonecznych" msgstr[3] "bassa słonecznego" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "Bass słoneczny. Mała ryba z rodziny bassowatych." @@ -94422,7 +95520,7 @@ msgstr[1] "bassy różowe" msgstr[2] "bassów różowych" msgstr[3] "bassa różowego" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "Bass różowy. Mała ryba z rodziny bassowatych." @@ -94435,7 +95533,7 @@ msgstr[1] "bassy zielone" msgstr[2] "bassów zielonych" msgstr[3] "bassa zielonego" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "Bass zielony. Mała ryba z rodziny bassowatych." @@ -94448,7 +95546,7 @@ msgstr[1] "bassy długouche" msgstr[2] "bassów długouchych" msgstr[3] "bassa długouchego" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "Bass długouchy. Mała ryba z rodziny bassowatych." @@ -94461,7 +95559,7 @@ msgstr[1] "bassy czerwonouche" msgstr[2] "bassów czerwonouchych" msgstr[3] "bassa czerwonouchego" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "Bass czerwonouchy. Mała ryba z rodziny bassowatych." @@ -94474,7 +95572,7 @@ msgstr[1] "bassy czerwonookie" msgstr[2] "bassów czerwonookich" msgstr[3] "bassa czerwonookiego" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -94491,7 +95589,7 @@ msgstr[1] "bassy perkalowe" msgstr[2] "bassów perkalowych" msgstr[3] "bassa perkalowego" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -94535,7 +95633,7 @@ msgstr[1] "sumiki kanałowe" msgstr[2] "sumików kanałowych" msgstr[3] "sumika kanałowego" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "Sum kanałowy, z rozdwojonym ogonem i sumiastymi wąsami." @@ -94548,7 +95646,7 @@ msgstr[1] "sumiki kocie" msgstr[2] "sumików kocich" msgstr[3] "sumika kociego" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "Sum koci, mała wąsata ryba z szeroką głową." @@ -94667,7 +95765,7 @@ msgstr[1] "semotilus corporalis" msgstr[2] "semotilus corporalis" msgstr[3] "semotilus corporalis" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -94703,7 +95801,7 @@ msgstr[1] "raki" msgstr[2] "raków" msgstr[3] "raka" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -94743,7 +95841,7 @@ msgstr "" "zbudowano zapór. Wygląda na to że teraz maja drugą szansę gdy tamy nie " "pracują." -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -94760,7 +95858,7 @@ msgstr[1] "gigantyczne raki" msgstr[2] "gigantycznych raków" msgstr[3] "gigantycznego raka" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -94777,7 +95875,7 @@ msgstr[1] "kolosalne raki" msgstr[2] "kolosalnych raków" msgstr[3] "kolosalnego raka" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "Olbrzymi przerośnięty zmutowany rak ze szczypcami i długimi czułkami." @@ -95629,7 +96727,7 @@ msgstr[1] "połączone ważki" msgstr[2] "połączonych ważek" msgstr[3] "połączonej ważki" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -95874,7 +96972,7 @@ msgstr[3] "rakietowego pająka" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -96936,7 +98034,7 @@ msgid "" msgstr "" "Przeciekający zlepek spazmatycznych mięśni i organów złączonych razem w " "karykaturę ludzkiej postaci. Różne organy odpadają od jego niezdarnego " -"cielska, po to tylko by być zaraz potem wchłonięte ponownie." +"cielska, po to tylko, by być zaraz potem wchłonięte ponownie." #: lang/json/MONSTER_from_json.py msgid "jabberwock" @@ -98046,7 +99144,7 @@ msgstr[1] "pirenejskie psy górskie" msgstr[2] "pirenejskich psów górskich" msgstr[3] "pirenejskiego psa górskiego" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -98308,7 +99406,7 @@ msgstr[1] "łosie" msgstr[2] "łosi" msgstr[3] "łosia" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -98521,7 +99619,7 @@ msgstr[2] "jagniąt" msgstr[3] "jagnięcia" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -98924,10 +100022,11 @@ msgstr[3] "potwora debugującego" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -98938,6 +100037,19 @@ msgstr "%s rozpuszcza się." msgid "This monster exists only for testing purposes." msgstr "Ten potwór istnieje wyłącznie do potrzeb testowych." +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "potwór słabych punktów" +msgstr[1] "potwory słabych punktów" +msgstr[2] "potworów słabych punktów" +msgstr[3] "potwora słabych punktów" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "Ten potwór istnieje wyłącznie do potrzeb testowych słabych punków." + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -100165,10 +101277,10 @@ msgstr "Błyskawica strzela z rdzennej kapsuły!" #: lang/json/MONSTER_from_json.py msgid "frog" msgid_plural "frogs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "żaba" +msgstr[1] "żaby" +msgstr[2] "żab" +msgstr[3] "żaby" #. ~ Description for frog #: lang/json/MONSTER_from_json.py @@ -101072,10 +102184,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "hulking horror" msgid_plural "hulking horrors" -msgstr[0] "polujący horror" -msgstr[1] "polujące horrory" -msgstr[2] "polujących horrorów" -msgstr[3] "polującego horrora" +msgstr[0] "zwalisty horror" +msgstr[1] "zwaliste horrory" +msgstr[2] "zwalistych horrorów" +msgstr[3] "zwalistego horrora" #. ~ Description for hulking horror #: lang/json/MONSTER_from_json.py @@ -101901,7 +103013,7 @@ msgstr[1] "rzeźbiarze" msgstr[2] "rzeźbiarzy" msgstr[3] "rzeźbiarza" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -101922,7 +103034,7 @@ msgstr[1] "żrących doktorów" msgstr[2] "żrących doktorów" msgstr[3] "żrącego doktora" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -102164,7 +103276,7 @@ msgstr[1] "niestabilne cieliste drapieżniki" msgstr[2] "niestabilnych cielistych drapieżników" msgstr[3] "niestabilnego cielistego drapieżnika" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -102320,17 +103432,18 @@ msgstr[3] "zombie maluszka" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -102896,7 +104009,7 @@ msgstr[1] "zgorzelinowe ciała" msgstr[2] "zgorzelinowe ciał" msgstr[3] "zgorzelinowego ciała" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -102954,7 +104067,7 @@ msgstr[1] "nożyconogi" msgstr[2] "nożyconogów" msgstr[3] "nożyconoga" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -102973,7 +104086,7 @@ msgstr[1] "zwisające wnętrzności" msgstr[2] "zwisających wnętrzności" msgstr[3] "zwisających wnętrzności" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -103307,7 +104420,7 @@ msgid "" "A hulking zombie swollen to the size of six men. Its inky black eyes are " "locked on you. No matter how far you run, it always seems to find you." msgstr "" -"Potężny zombie, spuchnięty do rozmiarów sześciu mężczyzn. Jego czarne, " +"Zwalisty zombie, spuchnięty do rozmiarów sześciu mężczyzn. Jego czarne, " "atramentowe oczy cały czas wpatrują się w ciebie. Nieważne jak daleko " "uciekasz, on zawsze cię znajdzie." @@ -103624,7 +104737,7 @@ msgstr[1] "Shia LaBeouf" msgstr[2] "Shia LaBeouf" msgstr[3] "Shia LaBeouf" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -104398,10 +105511,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "labbit" msgid_plural "labbits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "królik laboratoryjny" +msgstr[1] "króliki laboratoryjne" +msgstr[2] "królików laboratoryjnych" +msgstr[3] "królika laboratoryjnego" #. ~ Description for labbit #: lang/json/MONSTER_from_json.py @@ -104415,10 +105528,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "runner" msgid_plural "runners" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "biegacz" +msgstr[1] "biegacze" +msgstr[2] "biegaczy" +msgstr[3] "biegacza" #. ~ Description for runner #: lang/json/MONSTER_from_json.py @@ -104433,10 +105546,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "grazer" msgid_plural "grazers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wypasacz" +msgstr[1] "wypasacze" +msgstr[2] "wypasaczy" +msgstr[3] "wypasacza" #. ~ Description for grazer #: lang/json/MONSTER_from_json.py @@ -104452,10 +105565,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "hevel" msgid_plural "hevels" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "hevel" +msgstr[1] "hevele" +msgstr[2] "heveli" +msgstr[3] "hevela" #. ~ Description for hevel #: lang/json/MONSTER_from_json.py @@ -104471,10 +105584,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "venandi" msgid_plural "venatores" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "venandi" +msgstr[1] "venatore" +msgstr[2] "venatore" +msgstr[3] "venatore" #. ~ Description for venandi #: lang/json/MONSTER_from_json.py @@ -104490,10 +105603,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "terror bird" msgid_plural "terror birds" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ptak terroru" +msgstr[1] "ptaki terroru" +msgstr[2] "ptaków terroru" +msgstr[3] "ptaka terroru" #. ~ Description for terror bird #: lang/json/MONSTER_from_json.py @@ -104507,10 +105620,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "frost maddened human" msgid_plural "frost maddened humans" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "człowiek oszalały od mrozu" +msgstr[1] "ludzi oszalałych od mrozu" +msgstr[2] "ludzi oszalałych od mrozu" +msgstr[3] "człowieka oszalałego od mrozu" #. ~ Description for frost maddened human #: lang/json/MONSTER_from_json.py @@ -104537,10 +105650,10 @@ msgstr "Z ich płuc eksploduje zamrożone powietrze!" #: lang/json/MONSTER_from_json.py msgid "military flame robot" msgid_plural "military flame robots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ognisty robot wojskowy" +msgstr[1] "ogniste roboty wojskowe" +msgstr[2] "ognistych robotów wojskowych" +msgstr[3] "ognistego robota wojskowego" #. ~ Description for military flame robot #: lang/json/MONSTER_from_json.py @@ -104629,10 +105742,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "brain blaster" msgid_plural "brain blasters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mózgowy blaster" +msgstr[1] "mózgowe blastery" +msgstr[2] "mózgowych blasterów" +msgstr[3] "mózgowego blastera" #. ~ Description for brain blaster #: lang/json/MONSTER_from_json.py @@ -104648,10 +105761,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "Whately family brain blaster" msgid_plural "Whately family brain blasters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mózgowy blaster rodziny Whately" +msgstr[1] "mózgowe blastery rodziny Whately" +msgstr[2] "mózgowych blasterów rodziny Whately" +msgstr[3] "mózgowego blastera rodziny Whately" #. ~ Description for Whately family brain blaster #: lang/json/MONSTER_from_json.py @@ -104667,10 +105780,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "Wraitheon Pathfinder" msgid_plural "Wraitheon Pathfinders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Pathfinder Wraitheon" +msgstr[1] "Pathfindery Wraitheon" +msgstr[2] "Pathfinderów Wraitheon" +msgstr[3] "Pathfindera Wraitheon" #. ~ Description for Wraitheon Pathfinder #: lang/json/MONSTER_from_json.py @@ -104690,10 +105803,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "Wraitheon Regulator" msgid_plural "Wraitheon Regulators" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Regulator Wraitheon" +msgstr[1] "Regulatory Wraitheon" +msgstr[2] "Regulatorów Wraitheon" +msgstr[3] "Regulatora Wraitheon" #. ~ Description for Wraitheon Regulator #: lang/json/MONSTER_from_json.py @@ -104705,9 +105818,9 @@ msgid "" msgstr "" "Zaprojektowany przez Wraitheon, Regulator to pojazd bezzałogowy wielkości " "lodówki, przeznaczony do walk miejskich wysokiego ryzyka. Uzbrojony w " -"wyrzutnię pocisków przeciwsprzętowych, 40-milimetrową wyrzutnię granatów i " -"kilka rodzajów broni przeciwpiechotnej. Został zaprojektowany tak, by " -"zrównać zapał bojowników o wolność z przemysłową potęgą Ziemi." +"wyrzutnię pocisków przeciwsprzętowych, 40 mm wyrzutnię granatów i kilka " +"rodzajów broni przeciwpiechotnej. Został zaprojektowany tak, by zrównać " +"zapał bojowników o wolność z przemysłową potęgą Ziemi." #: lang/json/MONSTER_from_json.py msgid "tripod" @@ -104728,15 +105841,15 @@ msgstr "" "Honda Crop King. Pierwotnie zaprojektowany dla rolnictwa, ma trzy kolczaste " "chowane kable w miejscu, które było używane do montowania opryskiwacza " "pestycydowego, PrepNet Phyle zmodyfikował go, aby był wyposażony w miotacz " -"ognia do wojny z Mycusem." +"ognia do wojny z Grzybnią." #: lang/json/MONSTER_from_json.py msgid "Wraitheon Sentinel-lx" msgid_plural "Wraitheon Sentinels-lx" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Sentinel-lx Wraitheon" +msgstr[1] "Sentinel-lx Wraitheon" +msgstr[2] "Sentinel-lx Wraitheon" +msgstr[3] "Sentinel-lx Wraitheon" #. ~ Description for Wraitheon Sentinel-lx #: lang/json/MONSTER_from_json.py @@ -104752,15 +105865,15 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "\"Dispatching hostile with lethal force.\"" -msgstr "\"Zlikwidowanie wroga przy użyciu śmiercionośnej broni.\"" +msgstr "„Zlikwidowanie wroga przy użyciu śmiercionośnej broni”." #: lang/json/MONSTER_from_json.py msgid "bloodhound drone" msgid_plural "bloodhound drones" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "dron gończy" +msgstr[1] "drony gończe" +msgstr[2] "dronów gończych" +msgstr[3] "drona gończego" #. ~ Description for bloodhound drone #: lang/json/MONSTER_from_json.py @@ -104777,10 +105890,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "ENIAC Seneschal" msgid_plural "ENIAC Seneschals" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Seneszal ENIAC" +msgstr[1] "Seneszale ENIAC" +msgstr[2] "Seneszali ENIAC" +msgstr[3] "Seneszala ENIAC" #. ~ Description for ENIAC Seneschal #: lang/json/MONSTER_from_json.py @@ -104796,10 +105909,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "TsKBEM Likvidator" msgid_plural "TsKBEM Likvidators" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Likwidator TsKBEM" +msgstr[1] "Likwidatory TsKBEM" +msgstr[2] "Likwidatorów TsKBEM" +msgstr[3] "Likwidatora TsKBEM" #. ~ Description for TsKBEM Likvidator #: lang/json/MONSTER_from_json.py @@ -104818,10 +105931,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "ENIAC Famulus" msgid_plural "ENIAC Famuli" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Famulus ENIAC" +msgstr[1] "Famulusy ENIAC" +msgstr[2] "Famulusów ENIAC" +msgstr[3] "Famulusa ENIAC" #. ~ Description for ENIAC Famulus #: lang/json/MONSTER_from_json.py @@ -104841,10 +105954,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "TsKBEM Udarnik" msgid_plural "TsKBEM Udarniks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Udarnik TsKBEM" +msgstr[1] "Udarnika TsKBEM" +msgstr[2] "Udarników TsKBEM" +msgstr[3] "Udarnika TsKBEM" #. ~ Description for TsKBEM Udarnik #: lang/json/MONSTER_from_json.py @@ -104853,17 +105966,17 @@ msgid "" "\n" "This particular version is equipped with a mix of construction and heavy cargo-handling tools and was likely involved in the construction of colony buildings." msgstr "" -"Wysoce konfigurowalny lekki robot przemysłowy i rolniczy. Jego oryginalna konstrukcja pochodzi z czasów Związku Radzieckiego; trafnie nazwany Udarnik \"robotnik szturmowy\" zapoczątkował rewolucję automatyzacji, a po kolejnych adaptacjach stał się siłą roboczą wczesnej ludzkiej kolonizacji kosmosu. Choć przestarzały według współczesnych standardów, Udarnik jest nadal często spotykany na planetach pogranicza - dzięki łatwo dostępnym schematom produkcyjnym.\n" +"Wysoce konfigurowalny lekki robot przemysłowy i rolniczy. Jego oryginalna konstrukcja pochodzi z czasów Związku Radzieckiego; trafnie nazwany Udarnik „robotnik szturmowy” zapoczątkował rewolucję automatyzacji, a po kolejnych adaptacjach stał się siłą roboczą wczesnej ludzkiej kolonizacji kosmosu. Choć przestarzały według współczesnych standardów, Udarnik jest nadal często spotykany na planetach pogranicza - dzięki łatwo dostępnym schematom produkcyjnym.\n" "\n" "Ta konkretna wersja wyposażona jest w mieszankę narzędzi budowlanych i do przenoszenia ciężkich ładunków i prawdopodobnie brała udział w budowie budynków kolonii." #: lang/json/MONSTER_from_json.py msgid "TsKBEM Brandspojt" msgid_plural "TsKBEM Brandspojts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Brandspojt TsKBEM" +msgstr[1] "Brandspojty TsKBEM" +msgstr[2] "Brandspojtów TsKBEM" +msgstr[3] "Brandspojta TsKBEM" #. ~ Description for TsKBEM Brandspojt #: lang/json/MONSTER_from_json.py @@ -104883,10 +105996,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "Faulty Surgical Droid" msgid_plural "Faulty Surgical Droids" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wadliwy droid chirurgiczny" +msgstr[1] "wadliwe droidy chirurgiczne" +msgstr[2] "wadliwych droidów chirurgicznych" +msgstr[3] "wadliwego droida chirurgicznego" #. ~ Description for Faulty Surgical Droid #: lang/json/MONSTER_from_json.py @@ -104903,10 +106016,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "rat snatcher" msgid_plural "rat snatchers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "poławiacz szczurów" +msgstr[1] "poławiacza szczurów" +msgstr[2] "poławiaczy szczurów" +msgstr[3] "poławiacza szczurów" #. ~ Description for rat snatcher #: lang/json/MONSTER_from_json.py @@ -104922,10 +106035,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "grab-bot" msgid_plural "grab-bots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "łap-bot" +msgstr[1] "łap-boty" +msgstr[2] "łap-botów" +msgstr[3] "łap-bota" #. ~ Description for grab-bot #: lang/json/MONSTER_from_json.py @@ -104939,10 +106052,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "pest hunter" msgid_plural "pest hunters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "łowca szkodników" +msgstr[1] "łowcy szkodników" +msgstr[2] "łowców szkodników" +msgstr[3] "łowcy szkodników" #. ~ Description for pest hunter #: lang/json/MONSTER_from_json.py @@ -104958,10 +106071,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "Wraitheon Aegis" msgid_plural "Wraitheon Aegises" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Aegis Wraitheon" +msgstr[1] "Aegisy Wraitheon" +msgstr[2] "Aegisów Wraitheon" +msgstr[3] "Aegisa Wraitheon" #. ~ Description for Wraitheon Aegis #: lang/json/MONSTER_from_json.py @@ -104981,10 +106094,10 @@ msgstr "klik klik!" #: lang/json/MONSTER_from_json.py msgid "Wraitheon Imaginifer" msgid_plural "Wraitheon Imaginifers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Imaginifer Wraitheon" +msgstr[1] "Imaginifery Wraitheon" +msgstr[2] "Imaginiferów Wraitheon" +msgstr[3] "Imaginifera Wraitheon" #. ~ Description for Wraitheon Imaginifer #: lang/json/MONSTER_from_json.py @@ -105007,10 +106120,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "Wraitheon Hashashiyyin" msgid_plural "Wraitheon Hashashiyyins" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Hashashiyyin Wraitheon" +msgstr[1] "Hashashiyyiny Wraitheon" +msgstr[2] "Hashashiyyinów Wraitheon" +msgstr[3] "Hashashiyyina Wraitheon" #. ~ Description for Wraitheon Hashashiyyin #: lang/json/MONSTER_from_json.py @@ -105023,15 +106136,15 @@ msgstr "" "Hashashiyyin został nieortodoksyjnie zaprojektowany jak na wojskowego " "człekokształtnego. Choć zachowuje siłę większości człekokształtnych " "Wraitheon, to jednak jego priorytetem jest skradanie się. Wyposażony jest w " -"zintegrowany karabinek 5x50 mm." +"zintegrowany karabinek 5 x 50 mm." #: lang/json/MONSTER_from_json.py msgid "Wraitheon Suppressor" msgid_plural "Wraitheon Suppressors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Suppressor Wraitheon" +msgstr[1] "Suppressory Wraitheon" +msgstr[2] "Suppressorów Wraitheon" +msgstr[3] "Suppressora Wraitheon" #. ~ Description for Wraitheon Suppressor #: lang/json/MONSTER_from_json.py @@ -105041,17 +106154,16 @@ msgid "" "grenade launcher, it can easily dispatch anything in its path." msgstr "" "Wyglądający bardziej jak czołg niż jak robot, Suppressor został stworzony do" -" walki z pojazdami (w tym czołgami) jak i z siłą żywą. Wyposażony w " -"40-milimetrową wyrzutnię granatów, może z łatwością zlikwidować wszystko na " -"swojej drodze." +" walki z pojazdami (w tym czołgami) jak i z siłą żywą. Wyposażony w 40 mm " +"wyrzutnię granatów, może z łatwością zlikwidować wszystko na swojej drodze." #: lang/json/MONSTER_from_json.py msgid "Wraitheon Fulgent" msgid_plural "Wraitheon Fulgents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Fulgent Wraitheon" +msgstr[1] "Fulgenty Wraitheon" +msgstr[2] "Fulgentów Wraitheon" +msgstr[3] "Fulgenta Wraitheon" #. ~ Description for Wraitheon Fulgent #: lang/json/MONSTER_from_json.py @@ -105068,10 +106180,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "Wraitheon Irradiant" msgid_plural "Wraitheon Irradiants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Irradiant Wraitheon" +msgstr[1] "Irradianty Wraitheon" +msgstr[2] "Irradiantów Wraitheon" +msgstr[3] "Irradianta Wraitheon" #. ~ Description for Wraitheon Irradiant #: lang/json/MONSTER_from_json.py @@ -105103,10 +106215,10 @@ msgstr "wznoszący się pisk ładującego się plazmowego działa magnetycznego" #: lang/json/MONSTER_from_json.py msgid "Wraitheon Isohypsa" msgid_plural "Wraitheon Isohypsas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Isohypsa Wraitheon" +msgstr[1] "Isohypsy Wraitheon" +msgstr[2] "Isohyps Wraitheon" +msgstr[3] "Isohypsy Wraitheon" #. ~ Description for Wraitheon Isohypsa #: lang/json/MONSTER_from_json.py @@ -105132,10 +106244,10 @@ msgstr "Isohypsa emituje szybką sekwencję sykliwych dźwięków!" #: lang/json/MONSTER_from_json.py msgid "Wraitheon Kabura-ya" msgid_plural "Wraitheon Kabura-yas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Kabura-ya Wraitheon" +msgstr[1] "Kabura-ya Wraitheon" +msgstr[2] "Kabura-ya Wraitheon" +msgstr[3] "Kabura-ya Wraitheon" #. ~ Description for Wraitheon Kabura-ya #: lang/json/MONSTER_from_json.py @@ -105149,10 +106261,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "Wraitheon Frequency" msgid_plural "Wraitheon Frequencies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Frequency Wraitheon" +msgstr[1] "Frequency Wraitheon" +msgstr[2] "Frequency Wraitheon" +msgstr[3] "Frequency Wraitheon" #. ~ Description for Wraitheon Frequency #: lang/json/MONSTER_from_json.py @@ -105167,10 +106279,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "bee bot" msgid_plural "bee bots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "robot pszczoła" +msgstr[1] "roboty pszczoły" +msgstr[2] "robotów pszczół" +msgstr[3] "robota pszczoły" #. ~ Description for bee bot #: lang/json/MONSTER_from_json.py @@ -105184,10 +106296,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "floating lantern" msgid_plural "floating lanterns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "latająca latarnia" +msgstr[1] "latające latarnie" +msgstr[2] "latających latarni" +msgstr[3] "latającej latarni" #. ~ Description for floating lantern #: lang/json/MONSTER_from_json.py @@ -105197,10 +106309,10 @@ msgstr "Odratowany ze złomu dron przerobiony na mobilne źródło światła." #: lang/json/MONSTER_from_json.py msgid "floating heater" msgid_plural "floating heaters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "latająca grzałka" +msgstr[1] "latające grzałki" +msgstr[2] "latających grzałek" +msgstr[3] "latającej grzałki" #. ~ Description for floating heater #: lang/json/MONSTER_from_json.py @@ -105214,10 +106326,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "x-ray laser turret" msgid_plural "x-ray laser turrets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "wieżyczka lasera rentgenowskiego" +msgstr[1] "wieżyczki lasera rentgenowskiego" +msgstr[2] "wieżyczek lasera rentgenowskiego" +msgstr[3] "wieżyczki lasera rentgenowskiego" #. ~ Description for x-ray laser turret #: lang/json/MONSTER_from_json.py @@ -105234,10 +106346,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "Schwarz Walder" msgid_plural "Schwarz Walders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Szwarcwaldczyk" +msgstr[1] "Szwarcwaldczyków" +msgstr[2] "Szwarcwaldczyków" +msgstr[3] "Szwarcwaldczyka" #. ~ Description for Schwarz Walder #: lang/json/MONSTER_from_json.py @@ -105275,10 +106387,10 @@ msgstr "„Powinieneś odejść”." #: lang/json/MONSTER_from_json.py msgid "Schwarz Walder cub" msgid_plural "Schwarz Walder cubs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "szczeniak Szwarcwaldczyka" +msgstr[1] "szczeniaki Szwarcwaldczyka" +msgstr[2] "szczeniaków Szwarcwaldczyka" +msgstr[3] "szczeniaka Szwarcwaldczyka" #. ~ Description for Schwarz Walder cub #: lang/json/MONSTER_from_json.py @@ -105292,10 +106404,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "infeme" msgid_plural "infemes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "infeme" +msgstr[1] "infeme" +msgstr[2] "infeme" +msgstr[3] "infeme" #. ~ Description for infeme #: lang/json/MONSTER_from_json.py @@ -105305,7 +106417,7 @@ msgid "" "whether majority chimp, gorilla or baboon. They've probably formed colonies" " hidden from the Cataclysm." msgstr "" -"Infeme są Wzniesionymi od małp i innych bliskich przodków człowieka. " +"Infeme są wzniesionymi od małp i innych bliskich przodków człowieka. " "Zuluskie słowo oznaczające małpę stało się uniwersalnym określeniem dla " "wielu gatunków Wzniesionych, niezależnie od tego, czy były to szympansy, " "goryle czy pawiany. Prawdopodobnie utworzyli oni kolonie ukryte przed " @@ -105314,10 +106426,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "Cecaelian Survivor" msgid_plural "Cecaelian Survivors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ocalony Cecaelian" +msgstr[1] "ocaleni Cecaelian" +msgstr[2] "ocalonych Cecaelian" +msgstr[3] "ocalonego Cecaelian" #. ~ Description for Cecaelian Survivor #: lang/json/MONSTER_from_json.py @@ -105337,10 +106449,10 @@ msgstr "„Pod lustrem wody wojna nigdy nie ustaje”." #: lang/json/MONSTER_from_json.py msgid "Cecaelian Spawn" msgid_plural "Cecaelian Spawns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pomiot Cecaelian" +msgstr[1] "pomioty Cecaelian" +msgstr[2] "pomiotów Cecaelian" +msgstr[3] "pomiotu Cecaelian" #. ~ Description for Cecaelian Spawn #: lang/json/MONSTER_from_json.py @@ -105354,10 +106466,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "deep one" msgid_plural "deep ones" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "głęboki" +msgstr[1] "głębokie" +msgstr[2] "głębokich" +msgstr[3] "głębokiego" #. ~ Description for deep one #: lang/json/MONSTER_from_json.py @@ -105375,10 +106487,10 @@ msgstr "" #: lang/json/MONSTER_from_json.py msgid "deep one slaver" msgid_plural "deep one slavers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "łowca niewolników głębokich" +msgstr[1] "łowców niewolników głębokich" +msgstr[2] "łowców niewolników głębokich" +msgstr[3] "łowcy niewolników głębokich" #. ~ Description for deep one slaver #: lang/json/MONSTER_from_json.py @@ -106153,7 +107265,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -106919,7 +108031,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -106936,7 +108048,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -106953,7 +108065,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -106972,7 +108084,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -106991,7 +108103,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -107007,7 +108119,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -107026,7 +108138,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " @@ -107035,6 +108147,23 @@ msgstr "" "Ogromny drapieżny dwunożny dinozaur z długimi pazurami i silnymi ramionami " "do chwytania." +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" +"Ogromne zęby, wściekłe oczy i potężny szkielet, który napędza go do przodu, " +"z dwoma małymi ramionami i opierzonym grzbietem i ogonem." + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" @@ -107043,7 +108172,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -107060,7 +108189,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -107077,7 +108206,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -107095,7 +108224,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -107112,7 +108241,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -107146,7 +108275,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -107163,7 +108292,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -107214,7 +108343,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -107231,7 +108360,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -107249,7 +108378,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -107266,7 +108395,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -107281,7 +108410,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -107298,7 +108427,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -107315,7 +108444,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -107332,7 +108461,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -107349,7 +108478,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -107365,7 +108494,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -107382,7 +108511,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -107399,7 +108528,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -107415,7 +108544,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -107432,7 +108561,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -107449,7 +108578,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -107463,7 +108592,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -107480,7 +108609,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -107497,7 +108626,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "Ogromny łuskowaty dinozaur z szerokim bezzębnym dziobem." @@ -107510,7 +108639,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -107527,7 +108656,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -107544,7 +108673,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -107561,7 +108690,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -107580,12 +108709,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " "wicked horns emerge." msgstr "" +"Masywny dinozaur przypominający nosorożca z wysokim kościstym grzebieniem, z" +" którego wyrastają dwa długie, zawadiackie rogi." #: lang/json/MONSTER_from_json.py msgid "triceratops" @@ -107595,7 +108726,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -107612,12 +108743,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " "colorful beak." msgstr "" +"Opierzony latający gad o długości ponad trzech stóp, z krótkimi skrzydłami i" +" dużym kolorowym dziobem." #: lang/json/MONSTER_from_json.py msgid "pteranodon" @@ -107627,12 +108760,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " "long pointy head crest." msgstr "" +"Duży opierzony gad latający, z długim spiczastym bezzębnym dziobem i długim " +"spiczastym grzebieniem głowy." #: lang/json/MONSTER_from_json.py msgid "quetzalcoatlus" @@ -107642,12 +108777,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " "long stiff neck." msgstr "" +"Ogromny pierzasty gad latający, z długim spiczastym bezzębnym dziobem i " +"długą sztywną szyją." #: lang/json/MONSTER_from_json.py msgid "mosasaurus" @@ -107657,12 +108794,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " "crocodile-like head and powerful swimming fins." msgstr "" +"Ogromny gad wodny wielkości małego domu, z okrutną głową przypominającą " +"krokodyla i potężnymi płetwami." #: lang/json/MONSTER_from_json.py msgid "Gallimimus bio-operator" @@ -107672,12 +108811,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" " curved claws glow menacingly." msgstr "" +"Szybko poruszający się pierzasty dwunożny dinozaur usiany trzeszczącymi " +"bionikami. Jego zakrzywione pazury jarzą się groźnie." #: lang/json/MONSTER_from_json.py msgid "Pachycephalosaurus bio-operator" @@ -107687,12 +108828,14 @@ msgstr[1] "biooperatorzy pachycefalozaura" msgstr[2] "biooperatorów pachycefalozaura" msgstr[3] "biooperatora pachycefalozaura" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " "round hard-looking domed head. Its curved claws glow menacingly." msgstr "" +"Pierzasty, dwunożny dinozaur z trzeszczącymi elementami bionicznymi i " +"okrągłą, twardą, kopulastą głową. Jego zakrzywione pazury świecą groźnie." #: lang/json/MONSTER_from_json.py msgid "Triceratops bio-operator" @@ -107702,12 +108845,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " "The horns glow menacingly." msgstr "" +"Masywny, trójrogaty, czworonożny dinozaur usiany trzeszczącymi bionikami. " +"Rogi jarzą się groźnie." #: lang/json/MONSTER_from_json.py msgid "Velociraptor bio-operator" @@ -107717,12 +108862,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " "small, hooked claws glow menacingly." msgstr "" +"Mały pierzasty dwunożny dinozaur usiany trzeszczącymi bionikami. Jego małe, " +"haczykowate pazury świecą groźnie." #: lang/json/MONSTER_from_json.py msgid "Deinonychus bio-operator" @@ -107732,12 +108879,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " "has a large glowing sickle-like claw." msgstr "" +"Dwunożny dinozaur pokryty piórami i trzeszczącą bioniką. Każda stopa " +"wyposażona jest w duży, świecący sierpowaty pazur." #: lang/json/MONSTER_from_json.py msgid "Dimorphodon bio-operator" @@ -107747,12 +108896,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " "and a colorful glowing beak." msgstr "" +"Pierzasty latający gad z krótkimi skrzydłami usianymi trzeszczącymi " +"bionikami i kolorowym świecącym dziobem." #: lang/json/MONSTER_from_json.py msgid "Spinosaurus bio-operator" @@ -107762,7 +108913,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -107770,14 +108921,18 @@ msgid "" "There seems to be a laser rifle mounted to its head. It scans endlessly for" " its next target." msgstr "" +"Masywny terapod z ogromną płetwą na grzbiecie i pyskiem przypominającym pysk" +" krokodyla. Ma srebrną barwę od poszycia pancerza, a cybernetyka trzeszczy " +"na całym jego ciele. Na jego głowie zdaje się być zamontowany karabin " +"laserowy. Skanuje w nieskończoność w poszukiwaniu następnego celu." #: lang/json/MONSTER_from_json.py msgid "\"TARGET ACQUIRED.\"" -msgstr "" +msgstr "„CEL NAMIERZONY”." #: lang/json/MONSTER_from_json.py msgid "TARGET ACQUIRED. *beeeeeeeeep*. OUT OF AMMO." -msgstr "" +msgstr "CEL NAMIERZONY. *beeeeeeeeep*. KONIEC AMUNICJI." #: lang/json/MONSTER_from_json.py msgid "fungal dilophosaurus zombie" @@ -107795,6 +108950,10 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh with a " "colorful frill of interwoven mushrooms." msgstr "" +"Niegdyś był to drapieżny dinozaur z ostrymi zębami i dwoma wydatnymi " +"kostnymi grzebieniami na głowie. Teraz z jego pyska, oczu i innych otworów " +"gębowych wyrastają grzybowate wici, które spajają szamoczącą się masę " +"pokrytego pleśnią mięsa z kolorową falbanką splecionych grzybów." #: lang/json/MONSTER_from_json.py msgid "fungal ceratosaurus zombie" @@ -107811,6 +108970,10 @@ msgid "" "horns, fungal tendrils now sprout from its mouth, eyes, and other orifices, " "holding together a shambling mass of mold-covered scales and spikes." msgstr "" +"Niegdyś był to ogromny, łuskowaty dinozaur, najeżony kościstymi kolcami z " +"kolorowymi rogami. Teraz z jego pyska, oczu i innych otworów wyrastają " +"grzybicze wici, które trzymają razem szamoczącą się masę pokrytych pleśnią " +"łusek i kolców." #: lang/json/MONSTER_from_json.py msgid "fungal spinosaurus zombie" @@ -107827,6 +108990,10 @@ msgid "" "back, fungal tendrils now sprout from its mouth, eyes, and other orifices, " "holding together an enormous shambling mass of mold-covered flesh." msgstr "" +"Niegdyś był to ogromny krokodylogłowy mięsożerny dinozaur z żaglem na " +"grzbiecie. Teraz z jego ust, oczu i innych otworów wyrastają grzybowate " +"wici, które trzymają razem ogromną, szamoczącą się masę pokrytego pleśnią " +"ciała." #: lang/json/MONSTER_from_json.py msgid "fungal allosaurus zombie" @@ -107843,6 +109010,9 @@ msgid "" "tendrils now sprout from its mouth, eyes, and other orifices, holding " "together a shambling mass of mold-covered flesh." msgstr "" +"Niegdyś był to duży, drapieżny dinozaur dwunożny o szerokim, łuskowatym " +"grzbiecie. Teraz z jego pyska, oczu i innych otworów gębowych wyrastają " +"grzybowate wici, które trzymają w kupie masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal acrocanthosaurus zombie" @@ -107860,6 +109030,11 @@ msgid "" "serrated like sawblades, fungal tendrils now sprout from its mouth, eyes, " "and other orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +"Niegdyś był to ogromny, drapieżny, dwunożny dinozaur, z wysokim grzebieniem " +"biegnącym wzdłuż grzbietu, pokrytym ciężkimi mięśniami i zębami " +"zakrzywionymi i ząbkowanymi jak brzeszczoty. Teraz z jego pyska, oczu i " +"innych otworów gębowych wyrastają grzybicze wici, które trzymają razem " +"szamoczącą się masę pokrytego pleśnią mięsa." #: lang/json/MONSTER_from_json.py msgid "fungal siats zombie" @@ -107876,6 +109051,29 @@ msgid "" "grappling, fungal tendrils now sprout from its mouth, eyes, and other " "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +"Niegdyś był to ogromny drapieżny dwunożny dinozaur z długimi pazurami i " +"silnymi ramionami do walki, teraz z jego pyska, oczu i innych otworów " +"wyrastają grzybowate wici, które trzymają razem szamoczącą się masę " +"pokrytego pleśnią ciała." + +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" +"Niegdyś był to ogromny drapieżny dwunożny dinozaur z masywnymi szczękami. " +"Teraz z jego pyska, oczu i innych otworów wyrastają grzybicze wici, które " +"trzymają razem szamoczącą się masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" @@ -107892,6 +109090,10 @@ msgid "" "fungal tendrils now sprout from its mouth, eyes, and other orifices, holding" " together a shambling mass of mold-covered flesh." msgstr "" +"Niegdyś był to ogromny drapieżny dwunożny dinozaur z długimi pazurami i " +"masywnymi szczękami. Teraz z jego pyska, oczu i innych otworów wyrastają " +"grzybicze wici, które trzymają razem szamoczącą się masę pokrytego pleśnią " +"ciała." #: lang/json/MONSTER_from_json.py msgid "fungal qianzhousaurus zombie" @@ -107909,6 +109111,10 @@ msgid "" "eyes, and other orifices, holding together a shambling mass of mold-covered " "flesh." msgstr "" +"Kiedyś był to duży, dwunożny, pokryty piórami dinozaur z długą, " +"przypominającą aligatora paszczą z ostrymi zębami. Teraz z jego pyska, oczu " +"i innych otworów wyrastają grzybowate wici, które trzymają razem szamoczącą " +"się masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal z-rex" @@ -107925,6 +109131,9 @@ msgid "" "eyes, and other orifices, holding together an enormous shambling mass of " "mold-covered flesh." msgstr "" +"Niegdyś monarcha dinozaurów, teraz z jego pyska, oczu i innych otworów " +"wyrastają grzybowate wici, które trzymają razem ogromną, szamoczącą się masę" +" pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal gallimimus zombie" @@ -107941,6 +109150,9 @@ msgid "" " from its mouth, eyes, and other orifices, holding together an enormous " "shambling mass of mold-covered feathers." msgstr "" +"Niegdyś był to pierzasty, roślinożerny, dwunożny dinozaur. Teraz z jego " +"pyska, oczu i innych otworów wyrastają grzybowate wici, które trzymają razem" +" ogromną, szamoczącą się masę pokrytych pleśnią piór." #: lang/json/MONSTER_from_json.py msgid "fungal nothronychus zombie" @@ -107957,6 +109169,10 @@ msgid "" "claws, fungal tendrils now sprout from its mouth, eyes, and other orifices, " "holding together a shambling mass of mold-covered feathers." msgstr "" +"Niegdyś był to duży, pierzasty, dwunożny roślinożerny dinozaur z ostrymi, " +"zakrzywionymi pazurami. Teraz z jego pyska, oczu i innych otworów wyrastają " +"grzybicze wici, które trzymają razem szamoczącą się masę pokrytych pleśnią " +"piór." #: lang/json/MONSTER_from_json.py msgid "fungal deinonychus zombie" @@ -107973,6 +109189,10 @@ msgid "" "each foot, fungal tendrils now sprout from its mouth, eyes, and other " "orifices, holding together an enormous shambling mass of mold-covered flesh." msgstr "" +"Niegdyś pierzasty, mięsożerny dinozaur z dużym, sierpowatym szponem na " +"każdej stopie, teraz z jego pyska, oczu i innych otworów wyrastają grzybicze" +" wici, które trzymają razem ogromną, szamoczącą się masę pokrytego pleśnią " +"ciała." #: lang/json/MONSTER_from_json.py msgid "fungal utahraptor zombie" @@ -107989,6 +109209,10 @@ msgid "" "each foot, fungal tendrils now sprout from its mouth, eyes, and other " "orifices, holding together an enormous shambling mass of mold-covered flesh." msgstr "" +"Niegdyś był to duży, pierzasty, mięsożerny dinozaur z sierpowatym szponem na" +" każdej stopie. Teraz z jego pyska, oczu i innych otworów wyrastają " +"grzybicze wici, które spajają ogromną, szamoczącą się masę pokrytego pleśnią" +" ciała." #: lang/json/MONSTER_from_json.py msgid "fungal amargasaurus zombie" @@ -108006,6 +109230,10 @@ msgid "" "eyes, and other orifices, holding together an enormous shambling mass of " "mold-covered flesh." msgstr "" +"Niegdyś był to ogromny, długonogi, czworonożny roślinożerny dinozaur z " +"biczowatym ogonem i kolczastą szyją. Teraz z pyska, oczu i innych otworów " +"wyrastają mu grzybicze wici, które trzymają razem ogromną, szamoczącą się " +"masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal apatosaurus zombie" @@ -108022,6 +109250,10 @@ msgid "" "whip-like tail, fungal tendrils now sprout from its mouth, eyes, and other " "orifices, holding together an enormous shambling mass of mold-covered flesh." msgstr "" +"Niegdyś był to masywny roslinożerny dinozaur o długiej szyi i czterech " +"nogach, z długim, przypominającym bicz ogonem. Teraz z jego pyska, oczu i " +"innych otworów wyrastają grzybicze wici, które trzymają razem ogromną, " +"szamoczącą się masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal brontosaurus zombie" @@ -108039,6 +109271,10 @@ msgid "" " mouth, eyes, and other orifices, holding together an enormous shambling " "mass of mold-covered flesh." msgstr "" +"Kiedyś był to masywny, długonogi, czworonożny roślinożerny dinozaur z " +"masywnym tułowiem i długim, przypominającym bicz ogonem. Z jego pyska, oczu " +"i innych otworów wyrastają teraz grzybicze wici, które spajają ogromną, " +"szamoczącą się masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal diplodocus zombie" @@ -108056,6 +109292,10 @@ msgid "" "and other orifices, holding together an enormous shambling mass of mold-" "covered flesh." msgstr "" +"Niegdyś był to ogromny, długonogi, czworonożny roślinożerny dinozaur z " +"malutką głową i długim, biczowatym ogonem. Teraz z jego pyska, oczu i innych" +" otworów wyrastają grzybicze wici, które trzymają razem ogromną, szamoczącą " +"się masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal camarasaurus zombie" @@ -108072,6 +109312,10 @@ msgid "" "whip-like tail, fungal tendrils now sprout from its mouth, eyes, and other " "orifices, holding together an enormous shambling mass of mold-covered flesh." msgstr "" +"Niegdyś był to wielki roślinożerny dinozaur o długiej szyi i czterech " +"nogach, z długim, przypominającym bicz ogonem. Teraz z jego pyska, oczu i " +"innych otworów wyrastają grzybicze wici, które trzymają razem ogromną, " +"szamoczącą się masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal brachiosaurus zombie" @@ -108089,6 +109333,10 @@ msgid "" "mouth, eyes, and other orifices, holding together an enormous shambling mass" " of mold-covered flesh." msgstr "" +"Niegdyś był to gigantyczny, długonogi, czworonożny dinozaur żywiący się " +"roślinami, z dłuższymi kończynami przednimi i długim, przypominającym bicz " +"ogonem. Teraz z jego pyska, oczu i innych otworów wyrastają grzybicze wici, " +"które trzymają razem ogromną, szamoczącą się masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal alamosaurus zombie" @@ -108106,6 +109354,11 @@ msgid "" "now sprout from its mouth, eyes, and other orifices, holding together an " "enormous shambling mass of mold-covered flesh." msgstr "" +"Niegdyś był to gigantyczny, długonogi, czworonożny roślinożerny dinozaur z " +"dłuższymi przednimi kończynami i kolczastym ogonem, chronionym przez " +"naturalny pancerz kostny. Teraz z jego pyska, oczu i innych otworów " +"wyrastają grzybicze wici, które spajają ogromną, szamoczącą się masę " +"pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal stegosaurus zombie" @@ -108123,6 +109376,10 @@ msgid "" "its mouth, eyes, and other orifices, holding together a shambling mass of " "mold-covered flesh." msgstr "" +"Kiedyś był to duży, czworonożny dinozaur roślinożerca z kolczastym ogonem i " +"ciężkimi płytami kostnymi wystającymi z jego grzbietu. Z jego pyska, oczu i " +"innych otworów wyrastają teraz grzybicze wici, które trzymają razem " +"szamoczącą się masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal dyoplosaurus zombie" @@ -108139,6 +109396,9 @@ msgid "" "tail, fungal tendrils now sprout from its mouth, eyes, and other orifices, " "holding together a shambling mass of mold-covered flesh and bone." msgstr "" +"Niegdyś był czymś w rodzaju gigantycznej hybrydy pancernika i dinozaura z " +"kolczastym ogonem. Teraz z jego pyska, oczu i innych otworów wyrastają " +"grzybicze wici, które trzymają w kupie masę pokrytego pleśnią mięsa i kości." #: lang/json/MONSTER_from_json.py msgid "fungal ankylosaurus zombie" @@ -108155,6 +109415,10 @@ msgid "" "fungal tendrils now sprout from its mouth, eyes, and other orifices, holding" " together an enormous shambling mass of mold-covered flesh and bone." msgstr "" +"Niegdyś był on czymś w rodzaju gigantycznej hybrydy dinozaura pancernika z " +"kolczastym ogonem. Teraz z jego pyska, oczu i innych otworów wyrastają " +"grzybicze wici, które trzymają razem ogromną, szamoczącą się masę pokrytego " +"pleśnią mięsa i kości." #: lang/json/MONSTER_from_json.py msgid "fungal nodosaurus zombie" @@ -108171,6 +109435,9 @@ msgid "" "now sprout from its mouth, eyes, and other orifices, holding together a " "shambling mass of mold-covered flesh and bone." msgstr "" +"Niegdyś był czymś w rodzaju gigantycznej hybrydy pancernika i dinozaura. " +"Teraz z jego pyska, oczu i innych otworów wyrastają grzybicze wici, które " +"trzymają razem szamoczącą się masę pokrytego pleśnią mięsa i kości." #: lang/json/MONSTER_from_json.py msgid "fungal edmontonia zombie" @@ -108187,6 +109454,10 @@ msgid "" "spikes, fungal tendrils now sprout from its mouth, eyes, and other orifices," " holding together a shambling mass of mold-covered flesh and bone." msgstr "" +"Niegdyś był on czymś w rodzaju gigantycznej hybrydy pancernika i dinozaura z" +" długimi, kościstymi kolcami. Teraz z jego pyska, oczu i innych otworów " +"wyrastają grzybicze wici, które trzymają w ryzach szamoczącą się masę " +"pokrytego pleśnią mięsa i kości." #: lang/json/MONSTER_from_json.py msgid "fungal camptosaurus zombie" @@ -108204,6 +109475,10 @@ msgid "" "eyes, and other orifices, holding together an enormous shambling mass of " "mold-covered feathers." msgstr "" +"Był to niegdyś duży, opierzony, dwunożny dinozaur o silnych nogach, " +"szerokich ramionach i spiczastym dziobie. Z jego pyska, oczu i innych " +"otworów wyrastają teraz grzybicze wici, które trzymają razem ogromną, " +"szamoczącą się masę pokrytych pleśnią piór." #: lang/json/MONSTER_from_json.py msgid "fungal maiasaura zombie" @@ -108221,6 +109496,10 @@ msgid "" " other orifices, holding together a shambling mass of mold-covered flesh and" " bone." msgstr "" +"To był kiedyś ogromny, czworonożny dinozaur roślinożerca z kopytami, ciężkim" +" ogonem i płaskim dziobem. Z jego pyska, oczu i innych otworów wyrastają " +"teraz grzybicze wici, które trzymają razem szamoczącą się masę pokrytego " +"pleśnią mięsa i kości." #: lang/json/MONSTER_from_json.py msgid "fungal parasaurolophus zombie" @@ -108237,6 +109516,10 @@ msgid "" "tendrils now sprout from its mouth, eyes, and other orifices, holding " "together a shambling mass of mold-covered flesh and bone." msgstr "" +"Niegdyś był to ogromny, czworonożny dinozaur roślinożerca z tępym " +"grzebieniem na głowie. Teraz z jego pyska, oczu i innych otworów grzyba " +"wyrastają grzybicze wici, które trzymają w kupie szamoczącą się masę " +"pokrytego pleśnią mięsa i kości." #: lang/json/MONSTER_from_json.py msgid "fungal corythosaurus zombie" @@ -108253,6 +109536,10 @@ msgid "" "head crest, fungal tendrils now sprout from its mouth, eyes, and other " "orifices, holding together a shambling mass of mold-covered flesh and bone." msgstr "" +"Niegdyś był to ogromny, czworonożny dinozaur roślinożerca z krótkim dziobem " +"i wysokim grzebieniem na głowie. Teraz z jego pyska, oczu i innych otworów " +"grzyba wyrastają grzybicze wici, które trzymają razem szamoczącą się masę " +"pokrytego pleśnią mięsa i kości." #: lang/json/MONSTER_from_json.py msgid "fungal edmontosaurus zombie" @@ -108269,6 +109556,9 @@ msgid "" "fungal tendrils now sprout from its mouth, eyes, and other orifices, holding" " together a shambling mass of mold-covered flesh and bone." msgstr "" +"Niegdyś ogromny, czworonożny dinozaur roślinożerca z szerokim, bezzębnym " +"dziobem, teraz z jego pyska, oczu i innych otworów wyrastają grzybicze wici," +" które trzymają razem szamoczącą się masę pokrytego pleśnią mięsa i kości." #: lang/json/MONSTER_from_json.py msgid "fungal pachycephalosaurus zombie" @@ -108285,6 +109575,9 @@ msgid "" "tendrils now sprout from its mouth, eyes, and other orifices, holding " "together a shambling mass of mold-covered feathers." msgstr "" +"Niegdyś był to pierzasty, dwunożny dinozaur z twardą, kopulastą głową. Teraz" +" z jego pyska, oczu i innych otworów wyrastają grzybicze wici, które " +"trzymają razem szamoczącą się masę pokrytych pleśnią piór." #: lang/json/MONSTER_from_json.py msgid "fungal pachyrhinosaurus zombie" @@ -108303,6 +109596,10 @@ msgid "" "tendrils now sprout from its mouth, eyes, and other orifices, holding " "together a shambling mass of mold-covered flesh." msgstr "" +"Był to niegdyś masywny, czworonożny dinozaur roślinożerca, z wysokim " +"kościstym grzebieniem, z którego wyrastały cztery długie rogi i krótki róg " +"nosowy. Z jego pyska, oczu i innych otworów wyrastają teraz grzybicze wici, " +"które trzymają razem szamoczącą się masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal pentacerops zombie" @@ -108328,6 +109625,10 @@ msgid "" "sprout from its mouth, eyes, and other orifices, holding together a " "shambling mass of mold-covered flesh." msgstr "" +"Był to niegdyś masywny, czworonożny dinozaur roślinożerca, z wysokim " +"kościstym grzebieniem, z którego wyrastało piętnaście rogów i kolców. Z jego" +" pyska, oczu i innych otworów grzyba wyrastają teraz grzybicze wici, które " +"trzymają razem szamoczącą się masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal torosaurus zombie" @@ -108345,6 +109646,10 @@ msgid "" "sprout from its mouth, eyes, and other orifices, holding together a " "shambling mass of mold-covered flesh." msgstr "" +"Był to niegdyś masywny, czworonożny dinozaur roślinożerca, z wysokim " +"kościstym grzebieniem, z którego wyrastały dwa groźnie wyglądające rogi. Z " +"jego pyska, oczu i innych otworów wyrastają teraz grzybicze wici, które " +"trzymają razem szamoczącą się masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal triceratops zombie" @@ -108362,6 +109667,10 @@ msgid "" "sprout from its mouth, eyes, and other orifices, holding together a " "shambling mass of mold-covered flesh." msgstr "" +"Był to niegdyś masywny, czworonożny dinozaur roślinożerca, z kościstym " +"grzebieniem głowy, z którego wyrastały trzy groźnie wyglądające rogi. Z jego" +" pyska, oczu i innych otworów wyrastają teraz grzybicze wici, które trzymają" +" razem szamoczącą się masę pokrytego pleśnią ciała." #: lang/json/MONSTER_from_json.py msgid "fungal pteranodon zombie" @@ -108380,6 +109689,10 @@ msgid "" "eyes, and other orifices, holding together a shambling mass of mold-covered " "feathers." msgstr "" +"Kiedyś był to duży, opierzony gad z długim, spiczastym, bezzębnym dziobem i " +"długim, spiczastym grzebieniem głowy. Teraz z jego pyska, oczu i innych " +"otworów wyrastają grzybicze wici, które trzymają razem szamoczącą się masę " +"pokrytych pleśnią piór." #: lang/json/MONSTER_from_json.py msgid "fungal quetzalcoatlus zombie" @@ -108405,6 +109718,10 @@ msgid "" "eyes, and other orifices, holding together a foul mass of mold-covered " "scales and teeth." msgstr "" +"Kiedyś był to ogromny wodny dinozaur wielkości domu, z głową przypominającą " +"krokodyla i płetwami do pływania. Teraz z jego pyska, oczu i innych otworów " +"wyrastają grzybicze wici, które trzymają razem obrzydliwą masę pokrytych " +"pleśnią łusek i zębów." #: lang/json/MONSTER_from_json.py msgid "magenta and green hatchling" @@ -108452,6 +109769,8 @@ msgid "" "A tiny dinosaur hatchling with huge shiny eyes, it could be from a number of" " different species." msgstr "" +"Malutki pisklak dinozaura z wielkimi błyszczącymi oczami, może należeć do " +"wielu różnych gatunków." #: lang/json/MONSTER_from_json.py msgid "light green and yellow hatchling" @@ -108470,24 +109789,24 @@ msgstr[2] "" msgstr[3] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -108555,6 +109874,8 @@ msgid "" "A tiny aquatic reptile hatchling with huge shiny eyes and pointy little " "teeth." msgstr "" +"Malutki wykluty gad wodny z wielkimi błyszczącymi oczami i spiczastymi " +"ząbkami." #: lang/json/MONSTER_from_json.py msgid "magenta and green two-legged juvenile" @@ -108565,7 +109886,6 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -108573,6 +109893,8 @@ msgid "" "A small bipedal meat-eating dinosaur juvenile with huge shiny eyes, it could" " be from a number of different species." msgstr "" +"Mały dwunożny mięsożerny młodociany dinozaur z wielkimi błyszczącymi oczami," +" może należeć do wielu różnych gatunków." #: lang/json/MONSTER_from_json.py msgid "spinosaurus juvenile" @@ -108586,34 +109908,119 @@ msgstr[3] "" #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" +"Ogromny drapieżny młodociany dinozaur z wielkim wachlarzem na grzbiecie." #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "Duży dwunożny mięsożerny młodociany dinozaur." + #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." msgstr "" +"Duży drapieżny dwunożny młodociany dinozaur z wysokim grzbietem biegnącym " +"przez całą długość grzbietu pokrytego ciężkimi mięśniami." -#. ~ Description for red and white two-legged juvenile #: lang/json/MONSTER_from_json.py -msgid "A huge predatory dinosaur juvenile with large sharp teeth." +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." msgstr "" +"Duży drapieżny dwunożny młodociany dinozaur z długimi pazurami i silnymi " +"ramionami do chwytania." + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" +"Ogromne zęby, wściekłe oczy i potężna rama, która napędza tego młodego do " +"przodu, z dwoma małymi ramionami i pierzastym grzbietem i ogonem." + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" +"Ogromne zęby, wściekłe oczy i potężna sylwetka, która napędza tego młodego " +"do przodu, z dwoma długimi silnymi ramionami i pierzastym grzbietem i " +"ogonem." + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" +"Ten duży, dwunożny, pokryty piórami młodociany dinozaur ma długą, " +"przypominającą aligatora paszczę z ostrymi zębami." + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for tyrannosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "A huge predatory dinosaur juvenile with large sharp teeth." +msgstr "Ogromny drapieżny młodociany dinozaur z dużymi ostrymi zębami." #: lang/json/MONSTER_from_json.py msgid "greenish yellow two-legged juvenile" @@ -108629,6 +110036,8 @@ msgid "" "A small two-legged dinosaur juvenile with huge shiny eyes, it could be from " "a number of different species." msgstr "" +"Mały dwunożny młodociany dinozaur z wielkimi błyszczącymi oczami, może " +"należeć do wielu różnych gatunków." #: lang/json/MONSTER_from_json.py msgid "green and magenta two-legged juvenile" @@ -108644,6 +110053,8 @@ msgid "" "A small bipedal plant-eating dinosaur juvenile with huge shiny eyes, it " "could be from a number of different species." msgstr "" +"Mały dwunożny roślinożerny młodociany dinozaur z wielkimi błyszczącymi " +"oczami, może należeć do wielu różnych gatunków." #: lang/json/MONSTER_from_json.py msgid "red and green two-legged juvenile" @@ -108675,6 +110086,8 @@ msgid "" "A huge, four-legged, plant-eating juvenile sauropod with a long neck and " "tail, it could be from a number of different species." msgstr "" +"Ogromny, czworonożny, roślinożerny młodociany zauropod z długą szyją i " +"ogonem, może należeć do wielu różnych gatunków." #: lang/json/MONSTER_from_json.py msgid "green and magenta four-legged juvenile" @@ -108693,6 +110106,8 @@ msgid "" "A small four-legged plant-eating dinosaur juvenile with huge shiny eyes, it " "could be from a number of different species." msgstr "" +"Mały czworonożny roślinożerny młodociany dinozaur z wielkimi błyszczącymi " +"oczami, może należeć do wielu różnych gatunków." #: lang/json/MONSTER_from_json.py msgid "brown and magenta four-legged juvenile" @@ -108732,6 +110147,8 @@ msgid "" "A huge four-legged plant-eating dinosaur juvenile with a beak, two horns, " "and a broad bony nose." msgstr "" +"Ogromny czworonożny roślinożerny młodociany dinozaur z dziobem, dwoma rogami" +" i szerokim kościstym nosem." #: lang/json/MONSTER_from_json.py msgid "green and magenta ceratopsian juvenile" @@ -108747,6 +110164,8 @@ msgid "" "A huge four-legged plant-eating dinosaur juvenile with a bony crest, beak, " "and horns." msgstr "" +"Ogromny czworonożny roślinożerny młodociany dinozaur z kościstym " +"grzebieniem, dziobem i rogami." #: lang/json/MONSTER_from_json.py msgid "winged juvenile" @@ -108762,6 +110181,8 @@ msgid "" "A small winged dinosaur juvenile with huge shiny eyes, it could be from a " "number of different species." msgstr "" +"Mały skrzydlaty młodociany dinozaur z wielkimi błyszczącymi oczami, może " +"należeć do wielu różnych gatunków." #: lang/json/MONSTER_from_json.py msgid "mosasaurus juvenile" @@ -108777,6 +110198,8 @@ msgid "" "A juvenile predatory aquatic reptile with large pointy teeth, but not the " "largest." msgstr "" +"Młodociany drapieżny gad wodny z dużymi spiczastymi zębami, ale nie " +"największymi." #: lang/json/MONSTER_from_json.py msgid "dilophosaurus zombie" @@ -108793,6 +110216,9 @@ msgid "" "prominent bony crests on its head, with ragged strips of ripped flesh " "hanging down like a frill." msgstr "" +"Miotające się zwłoki średniej wielkości dinozaura z ostrymi zębami i dwoma " +"wydatnymi kostnymi grzebieniami na głowie, z poszarpanymi pasami rozerwanego" +" mięsa zwisającymi w dół jak falbana." #: lang/json/MONSTER_from_json.py msgid "ceratosaurus zombie" @@ -108809,6 +110235,9 @@ msgid "" "horrible speed. Its colorful horns are worn and wet with filth and its " "bright scales and bone spikes have taken a beating." msgstr "" +"Ten zombie jest ogromny, pokryty łuskami i najeżony kościanymi kolcami; " +"porusza się z przerażającą prędkością. Jego kolorowe rogi są zużyte i mokre " +"od brudu, a jaskrawe łuski i kościane kolce nieźle oberwały." #: lang/json/MONSTER_from_json.py msgid "spinosaurus zombie" @@ -108824,6 +110253,8 @@ msgid "" "Enormous putrid dinosaur corpse with a ferocious crocodile-like head, oozing" " black eyes, and a tattered sail on its back." msgstr "" +"Ogromne, gnijące zwłoki dinozaura z dzikim, krokodylim łbem, sączącymi się " +"czarnymi oczami i potarganym żaglem na grzbiecie." #: lang/json/MONSTER_from_json.py msgid "allosaurus zombie" @@ -108839,6 +110270,8 @@ msgid "" "The shambling corpse of a large predatory bipedal dinosaur, with tiger-like " "stripes on its broad, scaled back." msgstr "" +"Szamoczące się zwłoki dużego drapieżnego dwunożnego dinozaura, z tygrysimi " +"pasami na szerokim, pokrytym łuskami grzbiecie." #: lang/json/MONSTER_from_json.py msgid "acrocanthosaurus zombie" @@ -108855,6 +110288,9 @@ msgid "" " running down the length of its back covered with heavy muscles. Its teeth " "are curved and serrated like sawblades." msgstr "" +"Szamoczące się zwłoki ogromnego, dwunożnego dinozaurowego drapieżnika, z " +"wysokim grzebieniem biegnącym wzdłuż grzbietu pokrytego ciężkimi mięśniami. " +"Jego zęby są zakrzywione i ząbkowane jak ostrza piły." #: lang/json/MONSTER_from_json.py msgid "siats zombie" @@ -108870,6 +110306,25 @@ msgid "" "The shambling corpse of a huge, bipedal dinosaur predator with long claws " "and strong arms for grappling." msgstr "" +"Szamoczące się zwłoki ogromnego, dwunożnego drapieżnego dinozaura z długimi " +"pazurami i silnymi ramionami do chwytania." + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" +"Masywne szczęki ociekające czarną cieczą unoszą się nad ogromnym, " +"szamoczącym się trupem dinozaura." #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" @@ -108885,6 +110340,8 @@ msgid "" "Massive jaws drooling black liquid, lifted over grasping claws by a huge " "shuffling dinosaur corpse." msgstr "" +"Masywne szczęki ociekające czarną cieczą, unoszone na chwytnych pazurach " +"przez ogromne, szamoczące się zwłoki dinozaura." #: lang/json/MONSTER_from_json.py msgid "qianzhousaurus zombie" @@ -108900,6 +110357,8 @@ msgid "" "Massive, long jaws drooling black liquid, lifted by a huge but shuffling " "dinosaur corpse." msgstr "" +"Masywne, długie szczęki ociekające czarną cieczą, unoszone przez ogromne, " +"ale chwiejące się zwłoki dinozaura." #: lang/json/MONSTER_from_json.py msgid "Z-Rex" @@ -108912,7 +110371,7 @@ msgstr[3] "" #. ~ Description for Z-Rex #: lang/json/MONSTER_from_json.py msgid "Massive piles of ragged, stinking flesh lifting enormous teeth." -msgstr "" +msgstr "Masywne stosy poszarpanego, cuchnącego mięsa unoszące ogromne zęby." #: lang/json/MONSTER_from_json.py msgid "chained tyrannosaurus zombie" @@ -108928,6 +110387,8 @@ msgid "" "A massive dinosaur corpse with enormous teeth wrapped with heavy chains to " "allow some control." msgstr "" +"Masywne zwłoki dinozaura z ogromnymi zębami owinięte ciężkimi łańcuchami, " +"aby umożliwić pewną kontrolę." #: lang/json/MONSTER_from_json.py msgid "gallimimus zombie" @@ -108943,6 +110404,8 @@ msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur, covered with " "tattered feathers and black, putrid liquid." msgstr "" +"Zwiotczałe zwłoki średniej wielkości dwunożnego dinozaura, pokryte " +"potarganymi piórami i czarną, wstrętną cieczą." #: lang/json/MONSTER_from_json.py msgid "nothronychus zombie" @@ -108959,6 +110422,9 @@ msgid "" " feathers and black putrid liquid. Sharp curved claws protrude from its " "hands." msgstr "" +"Zwiotczałe zwłoki sporych rozmiarów dwunożnego dinozaura pokryte potarganymi" +" piórami i czarną, odrażającą cieczą. Z jego łap wystają ostre zakrzywione " +"pazury." #: lang/json/MONSTER_from_json.py msgid "deinonychus zombie" @@ -108975,6 +110441,9 @@ msgid "" "tattered feathers and black putrid liquid. Both feet brandish a large " "sickle-like claw." msgstr "" +"Zwiotczałe zwłoki średniej wielkości dwunożnego dinozaura, pokryte strzępami" +" piór i czarną, wstrętną cieczą. Obie łapy zakończone są dużym sierpowatym " +"pazurem." #: lang/json/MONSTER_from_json.py msgid "utahraptor zombie" @@ -108990,6 +110459,8 @@ msgid "" "The swaying, hopping corpse of a large bipedal dinosaur with feathered arms," " a long tail, and long, sharp scythe-like claws." msgstr "" +"Kołyszące się, podskakujące zwłoki dużego dwunożnego dinozaura z opierzonymi" +" ramionami, długim ogonem i długimi, ostrymi jak kosa pazurami." #: lang/json/MONSTER_from_json.py msgid "amargasaurus zombie" @@ -108999,12 +110470,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " "tall spines down its neck and back and a whip-like tail." msgstr "" +"Ogromne, długonogie, czworonożne zwłoki dinozaura z dwoma równoległymi " +"rzędami wysokich kolców na szyi i grzbiecie oraz biczowatym ogonem." #: lang/json/MONSTER_from_json.py msgid "apatosaurus zombie" @@ -109021,6 +110494,9 @@ msgid "" "tail. The head is still upright and the neck looks like it would still make" " a good, strong club." msgstr "" +"Masywne, długonogie, czworonożne zwłoki dinozaura z długim, przypominającym " +"bicz ogonem. Głowa wciąż jest wyprostowana, a szyja wygląda, jakby wciąż " +"mogła stanowić dobrą, mocną pałkę." #: lang/json/MONSTER_from_json.py msgid "Brontosaurus zombie" @@ -109036,6 +110512,8 @@ msgid "" "Massive, long-necked, four-legged dinosaur corpse with a bulky torso and a " "long, whip-like tail." msgstr "" +"Masywne, długonogie, czworonożne zwłoki dinozaura z masywnym tułowiem i " +"długim, przypominającym bicz ogonem." #: lang/json/MONSTER_from_json.py msgid "diplodocus zombie" @@ -109051,6 +110529,8 @@ msgid "" "Huge, long-necked, four-legged dinosaur with a long, whip-like tail and a " "tiny head with vacant white eyes. Sways and staggers." msgstr "" +"Ogromny, długoszyi, czworonożny dinozaur z długim, przypominającym bicz " +"ogonem i malutką głową z pustymi, białymi oczami. Kołysze się i zatacza." #: lang/json/MONSTER_from_json.py msgid "camarasaurus zombie" @@ -109067,6 +110547,9 @@ msgid "" "tail. The head is still upright and the neck looks like it would still make" " a good, strong club." msgstr "" +"Masywne, długonogie, czworonożne zwłoki dinozaura z długim, przypominającym " +"bicz ogonem. Głowa jest wciąż wyprostowana, a szyja wygląda, jakby wciąż " +"mogła stanowić dobrą, mocną pałkę." #: lang/json/MONSTER_from_json.py msgid "brachiosaurus zombie" @@ -109082,6 +110565,8 @@ msgid "" "Gigantic, long-necked, four-legged dinosaur corpse with longer forelegs and " "a whip-like tail." msgstr "" +"Gigantyczne, długonogie, czworonożne zwłoki dinozaura z dłuższymi kończynami" +" przednimi i ogonem przypominającym bicz." #: lang/json/MONSTER_from_json.py msgid "alamosaurus zombie" @@ -109097,6 +110582,8 @@ msgid "" "Gigantic, long-necked, four-legged dinosaur corpse, protected by natural " "bone armor and a spiked tail." msgstr "" +"Gigantyczne, długonogie, czworonożne zwłoki dinozaura, chronione przez " +"naturalny pancerz kostny i kolczasty ogon." #: lang/json/MONSTER_from_json.py msgid "stegosaurus zombie" @@ -109112,6 +110599,8 @@ msgid "" "A large, shambling quadruped dinosaur corpse, dragging with the weight of " "the plates on its back - waving a much livelier-looking spiked tail." msgstr "" +"Wielki, szamoczący się czworonożny trup dinozaura, wlokący się z ciężarem " +"płyt na plecach - machający znacznie żywszym, kolczastym ogonem." #: lang/json/MONSTER_from_json.py msgid "dyoplosaurus zombie" @@ -109127,6 +110616,8 @@ msgid "" "This armored dinosaur corpse looks like a giant prehistoric armadillo. Its " "tail ends in a spiked club of bone." msgstr "" +"Ten opancerzony trup dinozaura wygląda jak gigantyczny prehistoryczny " +"pancernik. Jego ogon zakończony jest kolczastą pałką z kości." #: lang/json/MONSTER_from_json.py msgid "ankylosaurus zombie" @@ -109143,6 +110634,9 @@ msgid "" "armored plates and black, glistening eyes. Its tail ends in a massive " "spiked club of bone." msgstr "" +"Szamoczące się zwłoki czegoś, co wygląda jak gigantyczny pancernik z " +"łuszczącymi się płytami pancernymi i czarnymi, lśniącymi oczami. Jego ogon " +"zakończony jest masywną, kolczastą pałką z kości." #: lang/json/MONSTER_from_json.py msgid "nodosaurus zombie" @@ -109158,6 +110652,8 @@ msgid "" "This heavily-armored dinosaur corpse looks like a giant prehistoric " "armadillo." msgstr "" +"Ten ciężko opancerzony trup dinozaura wygląda jak gigantyczny prehistoryczny" +" pancernik." #: lang/json/MONSTER_from_json.py msgid "edmontonia zombie" @@ -109173,6 +110669,8 @@ msgid "" "This heavily-armored dinosaur corpse looks like a giant prehistoric " "armadillo with long, bony spikes." msgstr "" +"Ten ciężko opancerzony trup dinozaura wygląda jak gigantyczny prehistoryczny" +" pancernik z długimi, kościstymi kolcami." #: lang/json/MONSTER_from_json.py msgid "camptosaurus zombie" @@ -109189,6 +110687,9 @@ msgid "" "legs, broad shoulders, and a pointed beak. Its tattered feathers are " "stained with black, sticky liquid." msgstr "" +"Zwiotczałe zwłoki dużego, opierzonego, dwunożnego dinozaura o silnych " +"nogach, szerokich ramionach i spiczastym dziobie. Jego potargane pióra są " +"poplamione czarną, lepką cieczą." #: lang/json/MONSTER_from_json.py msgid "maiasaura zombie" @@ -109205,6 +110706,9 @@ msgid "" "eyes vacant and swollen. Has a flat beak, thick nose, and a small but spiky" " head crest." msgstr "" +"Ogromny, cętkowany dinozaur z kopytami i ciężkim ogonem, martwy, lecz " +"kroczący, oczy puste i opuchnięte. Ma płaski dziób, gruby nos i mały, ale " +"kolczasty grzebień na głowie." #: lang/json/MONSTER_from_json.py msgid "parasaurolophus zombie" @@ -109220,6 +110724,8 @@ msgid "" "A huge, mottled dinosaur with a blunt head crest, dead but walking, eyes " "vacant and swollen." msgstr "" +"Ogromny, cętkowany dinozaur z tępym grzebieniem głowy, martwy, ale kroczący," +" oczy puste i opuchnięte." #: lang/json/MONSTER_from_json.py msgid "corythosaurus zombie" @@ -109235,6 +110741,8 @@ msgid "" "A huge, scaly dinosaur with a short beak and a tall head crest, dead but " "walking, eyes vacant and swollen." msgstr "" +"Ogromny, łuskowaty dinozaur z krótkim dziobem i wysokim grzebieniem na " +"głowie, martwy, ale kroczący, oczy puste i opuchnięte." #: lang/json/MONSTER_from_json.py msgid "edmontosaurus zombie" @@ -109250,6 +110758,8 @@ msgid "" "A huge, scaly dinosaur with a broad, toothless beak, dead but walking, eyes " "vacant and swollen." msgstr "" +"Ogromny, łuskowaty dinozaur z szerokim, bezzębnym dziobem, martwy, ale " +"kroczący, oczy puste i opuchnięte." #: lang/json/MONSTER_from_json.py msgid "pachycephalosaurus zombie" @@ -109266,6 +110776,9 @@ msgid "" "tattered feathers and black, putrid liquid. It resembles a reptilian " "ostrich with a hard-looking domed head." msgstr "" +"Zwiotczałe zwłoki średniej wielkości dwunożnego dinozaura pokryte " +"potarganymi piórami i czarną, wstrętną cieczą. Przypomina gadziego strusia z" +" ciężko wyglądającą, kopulastą głową." #: lang/json/MONSTER_from_json.py msgid "chained Pachycephalosaurus zombie" @@ -109281,6 +110794,8 @@ msgid "" "A feathered dinosaur corpse with a domed head with heavy chains to allow " "some control." msgstr "" +"Opierzone zwłoki dinozaura z kopulastą głową z ciężkimi łańcuchami, które " +"pozwalają na pewną kontrolę." #: lang/json/MONSTER_from_json.py msgid "pachyrhinosaurus zombie" @@ -109296,6 +110811,9 @@ msgid "" "A massive, shambling, rhino-like dinosaur corpse with two massive bony " "bosses on its brow and nose. Its eyes ooze black, putrid tears." msgstr "" +"Masywne, szamoczące się, przypominające nosorożca zwłoki dinozaura z dwoma " +"masywnymi, kościanymi guzami na czole i nosie. Z jego oczu sączą się czarne," +" wstrętne łzy." #: lang/json/MONSTER_from_json.py msgid "pentaceratops zombie" @@ -109312,6 +110830,9 @@ msgid "" "from which four long horns and a short nose horn emerge. Its eyes ooze " "black, putrid tears." msgstr "" +"Masywny, chwiejny, przypominający nosorożca trup dinozaura z wysokim, " +"kościstym grzebieniem, z którego wyrastają cztery długie rogi i krótki róg " +"nosowy. Z jego oczu sączą się czarne, ohydne łzy." #: lang/json/MONSTER_from_json.py msgid "kosmoceratops zombie" @@ -109327,6 +110848,9 @@ msgid "" "A massive, shambling, rhino-like dinosaur corpse with a bony crest and two " "wavy side horns. Its eyes ooze black, putrid tears." msgstr "" +"Masywne, szamoczące się, przypominające nosorożca zwłoki dinozaura z " +"kościstym grzebieniem i dwoma falistymi rogami po bokach. Z jego oczu sączą " +"się czarne, odrażające łzy." #: lang/json/MONSTER_from_json.py msgid "torosaurus zombie" @@ -109343,6 +110867,9 @@ msgid "" "from which two wicked-looking horns emerge. Its eyes ooze black, putrid " "tears." msgstr "" +"Masywne, szamoczące się, przypominające nosorożca zwłoki dinozaura z " +"wysokim, kościstym grzebieniem, z którego wyrastają dwa groźnie wyglądające " +"rogi. Z jego oczu sączą się czarne, odrażające łzy." #: lang/json/MONSTER_from_json.py msgid "triceratops zombie" @@ -109358,6 +110885,9 @@ msgid "" "A massive, shambling, rhino-like dinosaur corpse with a bony crest from " "which three wicked-looking horns emerge. Its eyes ooze black, putrid tears." msgstr "" +"Masywne, szamoczące się, przypominające nosorożca zwłoki dinozaura z " +"kościstym grzebieniem, z którego wyrastają trzy groźnie wyglądające rogi. Z " +"jego oczu sączą się czarne, ohydne łzy." #: lang/json/MONSTER_from_json.py msgid "pteranodon zombie" @@ -109373,6 +110903,8 @@ msgid "" "The ragged but flying corpse of a large, feathered reptile with a long, " "pointy, toothless beak and a long, pointy head crest." msgstr "" +"Poszarpane, ale latające zwłoki dużego, pierzastego gada z długim, " +"spiczastym, bezzębnym dziobem i długim, spiczastym grzebieniem na głowie." #: lang/json/MONSTER_from_json.py msgid "quetzalcoatlus zombie" @@ -109388,6 +110920,8 @@ msgid "" "The ragged but flying corpse of a large, feathered reptile with a long, " "pointy, toothless beak and a long, rigid neck." msgstr "" +"Poszarpane, ale latające zwłoki dużego, pierzastego gada z długim, " +"spiczastym, bezzębnym dziobem i długą, sztywną szyją." #: lang/json/MONSTER_from_json.py msgid "mosasaurus zombie" @@ -109403,6 +110937,8 @@ msgid "" "The ragged bloated corpse of a huge aquatic dinosaur the size of a house, " "with a crocodile-like head and swimming fins." msgstr "" +"Poszarpane, rozdęte zwłoki ogromnego wodnego dinozaura wielkości domu, z " +"krokodylą głową i płetwami do pływania." #: lang/json/MONSTER_from_json.py msgid "juvenile sauropod zombie" @@ -109418,6 +110954,8 @@ msgid "" "A small, four-legged, herbivorous dinosaur juvenile's corpse that could be " "from a number of different species." msgstr "" +"Małe, czworonożne zwłoki młodego roślinożernego dinozaura, które mogą " +"należeć do kilku różnych gatunków." #. ~ Description for juvenile sauropod zombie #: lang/json/MONSTER_from_json.py @@ -109425,6 +110963,8 @@ msgid "" "The corpse of a small, four-legged, herbivorous dinosaur juvenile, with " "cracked bone armor plates." msgstr "" +"Zwłoki małego, czworonożnego, roślinożernego młodego dinozaura, z popękanymi" +" płytkami pancerza kostnego." #: lang/json/MONSTER_from_json.py msgid "Gallimimus zombie bio-operator" @@ -109440,6 +110980,9 @@ msgid "" "The shuffling corpse of a bipedal dinosaur dotted with crackling bionics, " "tattered feathers, and black putrid liquid with glowing curved claws." msgstr "" +"Zataczające się zwłoki dwunożnego dinozaura usiane trzeszczącymi bionikami, " +"potarganymi piórami i czarną, odrażającą cieczą ze świecącymi, zakrzywionymi" +" pazurami." #: lang/json/MONSTER_from_json.py msgid "Pachycephalosaurus zombie bio-operator" @@ -109456,6 +110999,9 @@ msgid "" "head. The body is dotted with crackling bionics, tattered feathers, and " "black putrid liquid and carries glowing, curved claws." msgstr "" +"Chwiejące się zwłoki dwunożnego dinozaura z okrągłą, twardą głową w " +"kształcie kopuły. Ciało usiane jest trzeszczącymi bionikami, potarganymi " +"piórami i czarną, wstrętną cieczą oraz posiada świecące, zakrzywione pazury." #: lang/json/MONSTER_from_json.py msgid "Triceratops zombie bio-operator" @@ -109472,6 +111018,10 @@ msgid "" " with a bony crest and three wicked looking glowing horns. Its black eyes " "ooze like tears." msgstr "" +"Masywny, szamoczący się, przypominający nosorożca trup dinozaura, usiany " +"trzeszczącymi bionikami, z kościanym grzebieniem i trzema groźnie " +"wyglądającymi, świecącymi rogami. Z jego czarnych oczu sączy się coś jak " +"łzy." #: lang/json/MONSTER_from_json.py msgid "Deinonychus zombie bio-operator" @@ -109487,6 +111037,8 @@ msgid "" "A bipedal dinosaur covered with tattered feathers, black goo, and crackling " "bionics. Each foot has a large glowing sickle-like claw." msgstr "" +"Dwunożny dinozaur pokryty potarganymi piórami, czarną mazią i trzeszczącymi " +"bionikami. Każda stopa ma duży, świecący, sierpowaty pazur." #: lang/json/MONSTER_from_json.py msgid "Spinosaurus zombie bio-operator" @@ -109503,14 +111055,17 @@ msgid "" "bionics. It shambles quickly as it hunts. Is that a laser rifle on its " "head?" msgstr "" +"Lśniące płetwiaste zwłoki dinozaura pokryte krwawą zbroją i trzeszczącą " +"bioniką. Zatacza się szybko podczas polowania. Czy to karabin laserowy na " +"jego głowie?" #: lang/json/MONSTER_from_json.py msgid "\"TARGET *zZzZzz* ACQUIRED.\"" -msgstr "" +msgstr "\"CEL *zZzZzz* NAMIERZONY\"." #: lang/json/MONSTER_from_json.py msgid "*zZzzz*-TARGET ACQUIRED. *beeeeeeeeep*. OUT OF AMMO.-*zZzZ*" -msgstr "" +msgstr "*zZzZzz* CEL NAMIERZONY. *beeeeeeeeep*. KONIEC AMUNICJI. *zZzZzz*" #: lang/json/MONSTER_from_json.py msgid "scorched dilophosaurus zombie" @@ -109525,6 +111080,7 @@ msgstr[3] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -109535,6 +111091,8 @@ msgid "" "Heavily-burned zombie dinosaur predator that still reeks of charred meat. " "Its flesh has mended into a leathery shell." msgstr "" +"Mocno przypalony zombie drapieżnego dinozaura, który wciąż cuchnie zwęglonym" +" mięsem. Jego ciało zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched ceratosaurus zombie" @@ -109559,6 +111117,9 @@ msgid "" "spikes along its spine; it still reeks of charred meat. Its flesh has " "mended into a leathery shell." msgstr "" +"Mocno przypalony zombie drapieżnego dinozaur z rzędem poczerniałych kolców " +"kostnych wzdłuż kręgosłupa; wciąż cuchnie zwęglonym mięsem. Jego ciało " +"zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched allosaurus zombie" @@ -109584,6 +111145,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -109622,6 +111191,9 @@ msgid "" "A heavily-burned zombie dinosaur looking a bit like an overcooked ostrich - " "it still reeks of charred meat. Its flesh has mended into a leathery shell." msgstr "" +"Mocno przypalony dinozaur zombie wyglądający trochę jak zbyt mocno upieczony" +" struś - wciąż cuchnie zwęglonym mięsem. Jego ciało zmieniło się w skórzaną " +"skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched nothronychus zombie" @@ -109637,6 +111209,8 @@ msgid "" "A heavily-burned zombie dinosaur with sharp, curved claws; it still reeks of" " charred meat. Its flesh has mended into a leathery shell." msgstr "" +"Mocno przypalony dinozaur zombie z ostrymi, zakrzywionymi pazurami; wciąż " +"cuchnie zwęglonym mięsem. Jego ciało zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched deinonychus zombie" @@ -109674,6 +111248,8 @@ msgid "" "Heavily-burned zombie dinosaur sauropod that still reeks of charred meat. " "Its flesh has mended into a leathery shell." msgstr "" +"Ciężko przypalony zombie dinozaur zauropod, który wciąż cuchnie zwęglonym " +"mięsem. Jego ciało zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched apatosaurus zombie" @@ -109737,6 +111313,9 @@ msgid "" "A heavily-burned zombie dinosaur with prominant bony back plates; it still " "reeks of charred meat. Its flesh has mended into a leathery shell." msgstr "" +"Mocno przypalony dinozaur zombie z wydatnymi kościstymi płytami " +"grzbietowymi; wciąż cuchnie zwęglonym mięsem. Jego ciało zmieniło się w " +"skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched dyoplosaurus zombie" @@ -109755,6 +111334,8 @@ msgid "" "A heavily-burned, armored zombie dinosaur that still reeks of charred meat." " Its flesh has mended into a leathery shell." msgstr "" +"Mocno przypalony, opancerzony dinozaur zombie, który wciąż cuchnie zwęglonym" +" mięsem. Jego ciało zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched ankylosaurus zombie" @@ -109797,6 +111378,8 @@ msgid "" "A heavily-burned zombie dinosaur with a pointed beak; it still reeks of " "charred meat. Its flesh has mended into a leathery shell." msgstr "" +"Mocno przypalony dinozaur zombie ze spiczastym dziobem; wciąż cuchnie " +"zwęglonym mięsem. Jego ciało zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched maiasaura zombie" @@ -109828,6 +111411,9 @@ msgid "" "A heavily-burned zombie dinosaur with a pointed beak and tall head crest; it" " still reeks of charred meat. Its flesh has mended into a leathery shell." msgstr "" +"Mocno przypalony dinozaur zombie ze spiczastym dziobem i wysokim grzebieniem" +" na głowie; wciąż cuchnie zwęglonym mięsem. Jego ciało zmieniło się w " +"skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched edmontosaurus zombie" @@ -109851,6 +111437,8 @@ msgid "" "A heavily-burned zombie dinosaur with a domed head; it still reeks of " "charred meat. Its flesh has mended into a leathery shell." msgstr "" +"Mocno przypalony dinozaur zombie z kopulastą głową; wciąż cuchnie zwęglonym " +"mięsem. Jego ciało zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched pachyrhinosaurus zombie" @@ -109866,6 +111454,8 @@ msgid "" "A heavily-burned, four-legged zombie dinosaur with a broad bony nose; it " "still reeks of charred meat. Its flesh has mended into a leathery shell." msgstr "" +"Mocno przypalony, czworonożny dinozaur zombie z szerokim kościstym nosem; " +"wciąż cuchnie zwęglonym mięsem. Jego ciało zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched pentaceratops zombie" @@ -109882,6 +111472,9 @@ msgid "" "short nose horn; it still reeks of charred meat. Its flesh has mended into " "a leathery shell." msgstr "" +"Mocno przypalony, czworonożny dinozaur zombie z czterema długimi rogami i " +"krótkim rogiem nosowym; wciąż cuchnie zwęglonym mięsem. Jego ciało zmieniło " +"się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched kosmoceratops zombie" @@ -109898,6 +111491,9 @@ msgid "" " side horns; it still reeks of charred meat. Its flesh has mended into a " "leathery shell." msgstr "" +"Mocno przypalony, czworonożny dinozaur zombie z kościstym grzebieniem i " +"dwoma falistymi rogami po bokach; wciąż cuchnie zwęglonym mięsem. Jego ciało" +" zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched torosaurus zombie" @@ -109914,6 +111510,9 @@ msgid "" "wicked-looking horns; it still reeks of charred meat. Its flesh has mended " "into a leathery shell." msgstr "" +"Mocno przypalony, czworonożny dinozaur-zombie z kościstym grzebieniem i " +"dwoma dziwacznie wyglądającymi rogami; wciąż cuchnie zwęglonym mięsem. Jego " +"ciało zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched triceratops zombie" @@ -109930,6 +111529,9 @@ msgid "" "wicked-looking horns; it still reeks of charred meat. Its flesh has mended " "into a leathery shell." msgstr "" +"Mocno przypalony, czworonożny dinozaur-zombie z kościstym grzebieniem i " +"trzema dziwacznie wyglądającymi rogami; wciąż cuchnie zwęglonym mięsem. Jego" +" ciało zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched pteranodon zombie" @@ -109946,6 +111548,8 @@ msgid "" "A heavily-burned, birdlike zombie pterosaur that still reeks of charred " "meat. Its flesh has mended into a leathery shell." msgstr "" +"Mocno przypalony, przypominający ptaka pterozaur zombie, który wciąż cuchnie" +" zwęglonym mięsem. Jego ciało zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "scorched quetzalcoatlus zombie" @@ -109969,6 +111573,8 @@ msgid "" "A heavily-burned, aquatic zombie reptile that still reeks of charred meat. " "Its flesh has mended into a leathery shell." msgstr "" +"Mocno przypalony, wodny gad zombie, który wciąż cuchnie zwęglonym mięsem. " +"Jego ciało zmieniło się w skórzaną skorupę." #: lang/json/MONSTER_from_json.py msgid "Crested Crusher" @@ -109986,6 +111592,10 @@ msgid "" "hanging down like a frill. Its entire body bulges with distended muscles " "and swollen, festering wounds." msgstr "" +"Chwiejne zwłoki średniej wielkości dinozaura z ostrymi zębami i dwoma " +"wydatnymi kostnymi grzebieniami na głowie, z poszarpanymi pasami rozerwanego" +" mięsa zwisającymi w dół jak falbana. Całe ciało wybrzuszone jest rozdętymi " +"mięśniami i nabrzmiałymi, ropiejącymi ranami." #: lang/json/MONSTER_from_json.py msgid "Draco Titan" @@ -110002,6 +111612,10 @@ msgid "" "horrible speed. Its colorful horns and bone spikes sit on a body bulging " "with distended muscles and swollen, festering wounds." msgstr "" +"Ten zombie jest ogromny, łuskowaty, najeżony kościanymi kolcami i porusza " +"się z przerażającą prędkością. Jego kolorowe rogi i kościane kolce " +"spoczywają na ciele nabrzmiałym od naprężonych mięśni i opuchniętych, " +"ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Spino Sledge" @@ -110018,6 +111632,10 @@ msgid "" " black eyes, and a tattered sail on its back. Its body is even bigger than " "normal, bulging with distended muscles and swollen, festering wounds." msgstr "" +"Ogromne, gnijące zwłoki dinozaura z dzikim, krokodylim łbem, czarnymi oczami" +" i potarganym żaglem na plecach. Jego ciało jest jeszcze większe niż " +"normalnie, wybrzuszone nabrzmiałymi mięśniami i opuchniętymi, ropiejącymi " +"ranami." #: lang/json/MONSTER_from_json.py msgid "Allosaurus Avalanche" @@ -110033,6 +111651,8 @@ msgid "" "The shambling corpse of a large predatory bipedal dinosaur. Its entire body" " bulges with distended muscles and swollen, festering wounds." msgstr "" +"Chwiejne zwłoki dużego drapieżnego dwunożnego dinozaura. Całe jego ciało " +"jest nabrzmiałe od naprężonych mięśni i nabrzmiałych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Acrocanthosaurus Avenger" @@ -110049,6 +111669,9 @@ msgid "" "sawblade-like teeth. Its entire body bulges with distended muscles and " "swollen, festering wounds." msgstr "" +"Chwiejne zwłoki dużego drapieżnego dwunożnego dinozaura z zakrzywionymi, " +"przypominającymi piły zębami. Całe ciało ma rozdęte mięśnie i nabrzmiałe, " +"ropiejące rany." #: lang/json/MONSTER_from_json.py msgid "Siats Stonehenge" @@ -110065,6 +111688,26 @@ msgid "" "and strong arms for grappling. Its entire body bulges with distended " "muscles and swollen, festering wounds." msgstr "" +"Chwiejne zwłoki dużego drapieżnego dwunożnego dinozaura z długimi pazurami i" +" silnymi ramionami do walki. Całe jego ciało jest nabrzmiałe od naprężonych " +"mięśni i opuchniętych, ropiejących ran." + +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" +"Masywne szczęki uniesione przez wyprostowane ciało nieumarłego dinozaura, " +"wybrzuszone od napiętych mięśni i nabrzmiałych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" @@ -110080,6 +111723,8 @@ msgid "" "Massive jaws and grabbing claws lifted by an undead body bulging with " "distended muscles and swollen, festering wounds." msgstr "" +"Masywne szczęki i chwytne pazury unoszone przez nieumarłe ciało nabrzmiałe " +"od nabrzmiałych mięśni i spuchniętych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Qianzhousaurus chéngqiáng" @@ -110095,6 +111740,8 @@ msgid "" "Massive jaws on a long snout lifted by an undead body bulging with distended" " muscles and swollen, festering wounds." msgstr "" +"Masywne szczęki na długim pysku uniesionym przez nieumarłe ciało nabrzmiałe " +"od naprężonych mięśni i nabrzmiałych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Rage Rex" @@ -110104,12 +111751,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" " body bulges with distended muscles and swollen, festering wounds." msgstr "" +"Masywna kupa poszarpanego, cuchnącego mięsa unosząca ogromne zęby. Całe jego" +" ciało wybrzusza się od naprężonych mięśni i nabrzmiałych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Gruesome Gallimimus" @@ -110119,13 +111768,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " "tattered feathers and black, putrid liquid. Its entire body bulges with " "distended muscles and swollen, festering wounds." msgstr "" +"Zwiotczałe zwłoki średniej wielkości dwunożnego dinozaura pokryte są " +"strzępami piór i czarną, gnijącą cieczą. Całe ciało wybrzusza się od " +"napiętych mięśni i nabrzmiałych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Nefarious Nothronychus" @@ -110135,7 +111787,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -110143,6 +111795,10 @@ msgid "" " its hands. Its entire body bulges with distended muscles and swollen, " "festering wounds." msgstr "" +"Zwiotczałe zwłoki średniej wielkości dwunożnego dinozaura pokryte " +"potarganymi piórami i czarną, gnijącą cieczą. Z jego łap wystają długie, " +"zakrzywione pazury. Całe ciało wybrzusza się od napiętych mięśni i " +"nabrzmiałych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Deino Destroyer" @@ -110160,6 +111816,9 @@ msgid "" "sickle-shaped claw. Its entire body bulges with distended muscles and " "swollen, festering wounds." msgstr "" +"Zwiotczałe zwłoki średniej wielkości dwunożnego dinozaura, pokryte strzępami" +" piór i czarną, gnijącą cieczą. Obie łapy zakończone są dużym sierpowatym " +"pazurem. Całe ciało ma napięte mięśnie i nabrzmiałe, ropiejące rany." #: lang/json/MONSTER_from_json.py msgid "Utah Hoodoo" @@ -110176,6 +111835,10 @@ msgid "" " a long tail, and long, sharp, scythe-shaped claws. Its entire body bulges " "with distended muscles and swollen, festering wounds." msgstr "" +"Kołyszące się, podskakujące zwłoki dużego dwunożnego dinozaura z opierzonymi" +" ramionami, długim ogonem i długimi, ostrymi pazurami w kształcie kosy. Całe" +" jego ciało nabrzmiewa napiętymi mięśniami i opuchniętymi, ropiejącymi " +"ranami." #: lang/json/MONSTER_from_json.py msgid "Spiked Dreadnaught" @@ -110192,6 +111855,9 @@ msgid "" "tall spines down its neck and back and a whip-like tail. Its entire body " "bulges with distended muscles and swollen, festering wounds." msgstr "" +"Ogromne, długonogie, czworonożne zwłoki dinozaura z dwoma równoległymi " +"rzędami wysokich kolców na szyi i grzbiecie oraz biczowatym ogonem. Całe " +"ciało wybrzusza się od napiętych mięśni i opuchniętych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Anabolic Apatosaurus" @@ -110201,7 +111867,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -110209,6 +111875,9 @@ msgid "" "tail. Its entire body bulges with distended muscles and swollen, festering " "wounds." msgstr "" +"Masywne, długonogie, czworonożne zwłoki dinozaura z długim, przypominającym " +"bicz ogonem. Całe jego ciało wybrzusza się od napiętych mięśni i " +"spuchniętych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Brontosaurus Brute" @@ -110233,6 +111902,10 @@ msgid "" "and a tiny head with vacant white eyes. Sways and staggers. Its entire " "body bulges with distended muscles and swollen, festering wounds." msgstr "" +"Ogromne, długonogie, czworonożne zwłoki dinozaura z długim, przypominającym " +"bicz ogonem i malutką głową z pustymi, białymi oczami. Kołysze się i " +"zatacza. Całe ciało wybrzusza się od napiętych mięśni i spuchniętych, " +"ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Zombie Freight Train" @@ -110249,6 +111922,9 @@ msgid "" "frame. Its entire body bulges with distended muscles and swollen, festering" " wounds." msgstr "" +"Masywne, czworonożne zwłoki dinozaura z kwadratową głową i jeszcze " +"masywniejszą sylwetką. Całe jego ciało wybrzusza się od napiętych mięśni i " +"spuchniętych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Brachiosaurus Brute" @@ -110265,6 +111941,9 @@ msgid "" "tail. Its entire body bulges with distended muscles and swollen, festering " "wounds." msgstr "" +"Gigantyczne czworonożne zwłoki dinozaura z dłuższymi przednimi kończynami i " +"ogonem przypominającym bicz. Całe jego ciało wybrzusza się z powodu " +"napiętych mięśni i spuchniętych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Anabolic Alamosaurus" @@ -110274,13 +111953,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" "like tail. Its entire body bulges with distended muscles and swollen, " "festering wounds." msgstr "" +"Gigantyczne, czworonożne zwłoki dinozaura z długą szyją i kolczastym, " +"przypominającym bicz ogonem. Całe ciało ma rozdęte mięśnie i nabrzmiałe, " +"ropiejące rany." #: lang/json/MONSTER_from_json.py msgid "Stegosaurus Sledge" @@ -110297,6 +111979,9 @@ msgid "" "waving a spiked tail. Its entire body bulges with distended muscles and " "swollen, festering wounds." msgstr "" +"Wielkie, chwiejące się, czworonożne zwłoki dinozaura z płytami na grzbiecie," +" wymachujące kolczastym ogonem. Całe jego ciało nabrzmiewa napiętymi " +"mięśniami i opuchniętymi, ropiejącymi ranami." #: lang/json/MONSTER_from_json.py msgid "Dino Tankette" @@ -110312,6 +111997,8 @@ msgid "" "Heavily-armored zombie dinosaur with a thick, spiked tail. Its entire body " "bulges with distended muscles and swollen, festering wounds." msgstr "" +"Ciężko opancerzony dinozaur zombie z grubym, kolczastym ogonem. Całe jego " +"ciało jest nabrzmiałe od napiętych mięśni i spuchniętych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Dino Tank" @@ -110327,6 +112014,9 @@ msgid "" "Heavily-armored zombie dinosaur with a massive spiked tail of bone. Its " "entire body bulges with distended muscles and swollen, festering wounds." msgstr "" +"Ciężko opancerzony dinozaur zombie z masywnym, kolczastym ogonem z kości. " +"Całe jego ciało jest nabrzmiałe od napiętych mięśni i spuchniętych, " +"ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Nodosaurus Neutralizer" @@ -110342,6 +112032,8 @@ msgid "" "Heavily-armored zombie dinosaur. Its entire body bulges with distended " "muscles and swollen, festering wounds." msgstr "" +"Ciężko opancerzony dinozaur zombie. Całe jego ciało jest nabrzmiałe od " +"napiętych mięśni i spuchniętych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Edmontonia Elbow" @@ -110357,6 +112049,8 @@ msgid "" "Heavily-armored zombie dinosaur with long, bony spikes. Its entire body " "bulges with distended muscles and swollen, festering wounds." msgstr "" +"Ciężko opancerzony dinozaur-zombie z długimi, kościanymi kolcami. Całe ciało" +" ma napięte mięśnie i nabrzmiałe, ropiejące rany." #: lang/json/MONSTER_from_json.py msgid "Crusher Camp" @@ -110373,6 +112067,9 @@ msgid "" "bulging legs, massive hulking shoulders, and a vicious pointed beak. Its " "tattered feathers are stained with black, sticky liquid." msgstr "" +"Zwiotczałe zwłoki dużego, pierzastego, dwunożnego dinozaura z grubo " +"ciosanymi nogami, zwalistymi ramionami i złośliwym, spiczastym dziobem. Jego" +" potargane pióra są poplamione czarną, lepką cieczą." #: lang/json/MONSTER_from_json.py msgid "Mother Crusher" @@ -110389,6 +112086,9 @@ msgid "" "eyes vacant and swollen. Its entire body bulges with distended muscles and " "swollen, festering wounds." msgstr "" +"Ogromny, cętkowany dinozaur z kopytami i ciężkim ogonem, martwy, lecz " +"wędrujący, oczy puste i opuchnięte. Całe jego ciało wybrzusza się od " +"napiętych mięśni i spuchniętych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Parasaur Punch" @@ -110405,6 +112105,9 @@ msgid "" "vacant and swollen. Its entire body bulges with distended muscles and " "swollen, festering wounds." msgstr "" +"Ogromny, cętkowany dinozaur z tępym grzebieniem głowy, martwy, lecz " +"wędrujący, oczy puste i opuchnięte. Całe jego ciało wybrzusza się od " +"napiętych mięśni i nabrzmiałych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Cory Crusher" @@ -110421,6 +112124,9 @@ msgid "" "walking, eyes vacant and swollen. Its entire body bulges with distended " "muscles and swollen, festering wounds." msgstr "" +"Ogromny, łuskowaty dinozaur z krótkim dziobem i wysokim grzebieniem na " +"głowie, martwy, ale chodzący, oczy puste i opuchnięte. Całe jego ciało " +"wybrzusza się od napiętych mięśni i nabrzmiałych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Edmonton Everest" @@ -110437,6 +112143,9 @@ msgid "" "vacant and swollen. Its entire body bulges with distended muscles and " "swollen, festering wounds." msgstr "" +"Ogromny, łuskowaty dinozaur z szerokim, bezzębnym dziobem, martwy, ale " +"chodzący, oczy puste i opuchnięte. Całe jego ciało wybrzusza się od " +"napiętych mięśni i nabrzmiałych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Skull Breaker" @@ -110453,6 +112162,9 @@ msgid "" "tattered feathers and black, putrid liquid. Its hard-looking domed head " "sits on a body bulging with distended muscles and swollen, festering wounds." msgstr "" +"Chwiejne zwłoki średniej wielkości dwunożnego dinozaura, pokryte potarganymi" +" piórami i czarną, gnijącą cieczą. Jego twarda, kopulasta głowa spoczywa na " +"ciele nabrzmiałym od napiętych mięśni i opuchniętych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Dino Rhino" @@ -110469,6 +112181,9 @@ msgid "" "bosses on its brow and nose. Its entire body bulges with distended muscles " "and swollen, festering wounds." msgstr "" +"Masywne, trzęsące się, przypominające nosorożca zwłoki dinozaura z dwoma " +"masywnymi kostnymi guzami na czole i nosie. Całe jego ciało jest nabrzmiałe " +"od napiętych mięśni i spuchniętych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Five Horn Death Punch" @@ -110485,6 +112200,10 @@ msgid "" " which four long horns and a short nose horn emerge. Its entire body bulges" " with distended muscles and swollen, festering wounds." msgstr "" +"Masywne, trzęsące się, przypominające nosorożca zwłoki dinozaura z wysokim " +"kościstym grzebieniem, z którego wyrastają cztery długie rogi i krótki róg " +"nosowy. Całe jego ciało jest nabrzmiałe od napiętych mięśni i spuchniętych, " +"ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Kosmic Horror" @@ -110501,6 +112220,9 @@ msgid "" "wavy side horns. Its entire body bulges with distended muscles and swollen," " festering wounds." msgstr "" +"Masywne, chwiejne, przypominające nosorożca zwłoki dinozaura z kościstym " +"grzebieniem i dwoma falistymi rogami po bokach. Całe jego ciało wybrzusza " +"się od napiętych mięśni i nabrzmiałych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Bull Dino" @@ -110517,6 +112239,9 @@ msgid "" "which two wicked-looking horns emerge. Its entire body bulges with " "distended muscles and swollen, festering wounds." msgstr "" +"Masywne, chwiejne, przypominające nosorożca zwłoki dinozaura z kościstym " +"grzebieniem, z którego wyrastają dwa groźnie wyglądające rogi. Całe jego " +"ciało nabrzmiewa napiętymi mięśniami i opuchniętymi, ropiejącymi ranami." #: lang/json/MONSTER_from_json.py msgid "Triceratruck" @@ -110534,6 +112259,10 @@ msgid "" " Its entire body bulges with distended muscles and swollen, festering " "wounds." msgstr "" +"Masywne, chwiejne, przypominające nosorożca zwłoki dinozaura z kościstym " +"grzebieniem, z którego wyrastają trzy groźnie wyglądające rogi. Z jego oczu " +"sączą się czarne, ohydne łzy. Całe jego ciało nabrzmiewa napiętymi mięśniami" +" i opuchniętymi, ropiejącymi ranami." #: lang/json/MONSTER_from_json.py msgid "Winged Horror" @@ -110550,146 +112279,192 @@ msgid "" "pointed, toothless beak and a long, pointy head crest. Its entire body " "bulges with distended muscles and swollen, festering wounds." msgstr "" +"Poszarpane, ale latające zwłoki dużego pierzastego gada z długim, " +"spiczastym, bezzębnym dziobem i długim, spiczastym grzebieniem głowy. Całe " +"jego ciało jest nabrzmiałe od napiętych mięśni i nabrzmiałych, ropiejących " +"ran." + +#: lang/json/MONSTER_from_json.py +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" +"Niesamowity cień spowija tę istotę. Można w nim dostrzec zarys ogromnego, " +"dwunożnego dinozaura z rogami, kolcami i wielkimi, ostrymi zębami." #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" " huge, bipedal dinosaur with a tattered sail. The head is long and narrow, " "with a V-shaped snout." msgstr "" +"Niesamowity cień spowija tę istotę. Można w nim dostrzec zarys ogromnego, " +"dwunożnego dinozaura z potarganym żaglem. Głowa jest długa i wąska, z " +"pyskiem w kształcie litery V." #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" +"Niesamowity cień spowija tę istotę. Można w nim dostrzec zarys dużego, " +"dwunożnego dinozaura z wielkimi, ostrymi zębami." #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" +"Niesamowity cień spowija tę istotę. Można w nim dostrzec zarys ogromnego, " +"dwunożnego dinozaura o pierzastych krawędziach. Głowa wygląda na dużą, jakby" +" mogła pomieścić wiele ogromnych, ostrych zębów." #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" +"Niesamowity cień spowija tę istotę. Można w nim dostrzec zarys ogromnego, " +"dwunożnego dinozaura o pierzastych krawędziach. Głowa wygląda na dużą, a " +"poniżej znajdują się długie, chwytne szpony." #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" +"Niesamowity cień spowija tę istotę. Można w nim dostrzec zarys ogromnego, " +"dwunożnego dinozaura o pierzastych krawędziach. Głowa wygląda na dużą - " +"zmieściłoby się w niej mnóstwo dużych zębów." #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" " bipedal dinosaur with feathery edges. Long claws protrude from its hands." msgstr "" +"Niesamowity cień spowija tę istotę. Można w nim dostrzec zarys dwunożnego " +"dinozaura o pierzastych krawędziach. Z jego łap wystają długie szpony." #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" " bipedal dinosaur with feathery edges. Both feet brandish a large, sickle-" "shaped claw." msgstr "" +"Niesamowity cień spowija tę istotę. Można w nim dostrzec zarys dwunożnego " +"dinozaura o pierzastych krawędziach. Obie stopy wyposażone są w duże, " +"sierpowate szpony." #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" " big, bipedal dinosaur with feathery edges. Both feet brandish a large, " "sickle-shaped claw." msgstr "" +"Niesamowity cień spowija tę istotę. Można w nim dostrzec zarys dużego, " +"dwunożnego dinozaura o pierzastych krawędziach. Obydwie stopy wymachują " +"wielkimi, sierpowatymi pazurami." #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" +"Niesamowity cień spowija tę istotę. Można w nim dostrzec zarys dużego, " +"ciężko opancerzonego, czworonożnego dinozaura z kolczastym ogonem." #: lang/json/MONSTER_from_json.py msgid "Bone Dragon" @@ -110706,6 +112481,9 @@ msgid "" "black goo. Two especially bony crests on the top of the head complete the " "effect." msgstr "" +"Monstrualne kolumny gęstej kości unoszące ostre, spiczaste zęby ociekające " +"czarną mazią. Dwa wyjątkowo kościste grzebienie na czubku głowy dopełniają " +"dzieła." #. ~ Description for Bone Dragon #: lang/json/MONSTER_from_json.py @@ -110713,6 +112491,8 @@ msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " "black goo. Spikes and colorful horns jut out to complete the effect." msgstr "" +"Monstrualne kolumny gęstej kości unoszące ostre, spiczaste zęby ociekające " +"czarną mazią. Dla dopełnienia dzieła wystają z nich kolce i kolorowe rogi." #: lang/json/MONSTER_from_json.py msgid "skeletal spinosaurus" @@ -110722,12 +112502,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " "dripping with black goo. There is a ridge of long spikes on the back." msgstr "" +"Monstrualne kolumny gęstej kości unoszące ogromne, ostre, spiczaste zęby " +"ociekające czarną mazią. Na grzbiecie znajduje się grzebień długich kolców." #: lang/json/MONSTER_from_json.py msgid "skeletal allosaurus" @@ -110737,12 +112519,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " "black goo." msgstr "" +"Monstrualne kolumny gęstej kości unoszące ostre, spiczaste zęby ociekające " +"czarną mazią." #: lang/json/MONSTER_from_json.py msgid "skeletal acrocanthosaurus" @@ -110752,12 +112537,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " "black goo. A tall ridge runs down the back." msgstr "" +"Monstrualne kolumny gęstej kości unoszące ostre, zakrzywione zęby ociekające" +" czarną mazią. Wzdłuż grzbietu biegnie wysoki grzebień." #: lang/json/MONSTER_from_json.py msgid "skeletal siats" @@ -110767,12 +112554,22 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +"Monstrualne kolumny gęstej kości unoszące ostre zęby ociekające czarną " +"mazią. Są tu też długie szpony i silne ramiona do walki." + +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" @@ -110782,12 +112579,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " "black goo. Skeletal claws reach ahead." msgstr "" +"Monstrualne kolumny gęstej kości unoszące ostre, spiczaste zęby ociekające " +"czarną mazią. Szkieletowe szpony sięgają przed siebie." #: lang/json/MONSTER_from_json.py msgid "skeletal qianzhousaurus" @@ -110797,12 +112596,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " "teeth dripping with black goo." msgstr "" +"Monstrualne kolumny gęstej kości dźwigające długi pysk z wąskimi, " +"spiczastymi zębami ociekającymi czarną mazią." #: lang/json/MONSTER_from_json.py msgid "S-Rex" @@ -110818,6 +112619,8 @@ msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " "dripping with black goo." msgstr "" +"Monstrualne kolumny gęstej kości unoszące ogromne, ostre, spiczaste zęby " +"ociekające czarną mazią." #: lang/json/MONSTER_from_json.py msgid "skeletal gallimimus" @@ -110827,11 +112630,13 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." msgstr "" +"Monstrualne kolumny gęstej kości unoszące ostre zęby ociekające czarną " +"mazią." #: lang/json/MONSTER_from_json.py msgid "skeletal nothronychus" @@ -110841,12 +112646,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " "black goo. Long, sharp claws extend from its hands" msgstr "" +"Monstrualne kolumny gęstej kości unoszące ostre, spiczaste zęby ociekające " +"czarną mazią. Z jego łap wysuwają się długie, ostre szpony." #: lang/json/MONSTER_from_json.py msgid "skeletal deinonychus" @@ -110856,13 +112663,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " "black goo. There is a long tail and long, sharp, scythe-shaped claws" msgstr "" +"Monstrualne kolumny gęstej kości unoszące ostre, spiczaste zęby ociekające " +"czarną mazią. Ma długi ogon i długie, ostre pazury w kształcie kosy." #: lang/json/MONSTER_from_json.py msgid "Utah Bones" @@ -110880,13 +112689,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " "spikes and denser bone armor, completely covering the massive, four-legged " "body." msgstr "" +"Już wcześniej mocno chroniony, ten zombie Amargazaur ma jeszcze więcej " +"kolców i gęstszy pancerz kostny, całkowicie pokrywający masywne, czworonożne" +" ciało." #: lang/json/MONSTER_from_json.py msgid "armored apatosaurus" @@ -110896,12 +112708,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " "the massive, four-legged body." msgstr "" +"Ten Apatozaur zombie wyhodował gęstą zbroję kostną, całkowicie pokrywającą " +"masywne, czworonożne ciało." #: lang/json/MONSTER_from_json.py msgid "armored brontosaurus" @@ -110911,12 +112725,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " "the massive, four-legged body and long, whip-like tail." msgstr "" +"Ten Brontozaur zombie wyhodował gęstą zbroję kostną, całkowicie pokrywającą " +"masywne, czworonożne ciało i długi, przypominający bicz ogon." #: lang/json/MONSTER_from_json.py msgid "armored diplodocus" @@ -110926,12 +112742,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " "the massive, four-legged body and tiny head." msgstr "" +"Ten Diplodok zombie obrósł gęstym pancerzem kostnym, całkowicie pokrywającym" +" masywne, czworonożne ciało i maleńką głowę." #: lang/json/MONSTER_from_json.py msgid "armored camarasaurus" @@ -110941,12 +112759,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " "the massive, long-necked, four-legged body." msgstr "" +"Ten Kamarazaur zombie obrósł gęstym pancerzem, całkowicie pokrywającym " +"masywne, długonogie, czworonożne ciało." #: lang/json/MONSTER_from_json.py msgid "armored brachiosaurus" @@ -110956,12 +112776,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" " the gigantic, long-necked, four-legged body." msgstr "" +"Ten Brachiozaur zombie obrósł gęstym pancerzem, całkowicie pokrywającym " +"gigantyczne, długonogie, czworonożne ciało." #: lang/json/MONSTER_from_json.py msgid "armored alamosaurus" @@ -110971,12 +112793,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " "the gigantic, four-legged body and spiked tail." msgstr "" +"Ten Alamozaur zombie wyhodował gęstszy pancerz kostny, całkowicie " +"pokrywający gigantyczne, czworonożne ciało i kolczasty ogon." #: lang/json/MONSTER_from_json.py msgid "skeletal stegosaurus" @@ -110986,12 +112810,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " "armor below its back plates as well as a larger and spikier bony tail." msgstr "" +"Już mocno chroniony, ten Stegozaur zombie wyhodował gruby pancerz kostny pod" +" tylnymi płytami, a także większy i bardziej kolczasty kościany ogon." #: lang/json/MONSTER_from_json.py msgid "skeletal dyoplosaurus" @@ -111001,13 +112827,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" " bone armor as well as a larger and spikier bony tail. It must be even " "slower, which is difficult to imagine." msgstr "" +"Ten Djoplozaur zombie, który był już mocno chroniony, wyhodował jeszcze " +"gęstszy pancerz kostny, a także większy i bardziej kolczasty kościany ogon. " +"Musi być jeszcze wolniejszy, co jest trudne do wyobrażenia." #: lang/json/MONSTER_from_json.py msgid "Bone Fortress" @@ -111017,13 +112846,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" " bone armor as well as a larger and spikier bony tail. It must be even " "slower, which is difficult to imagine." msgstr "" +"Ten Ankylozaur zombie, który był już mocno chroniony, wyhodował jeszcze " +"gęstszy pancerz kostny, a także większy i bardziej kolczasty kościany ogon. " +"Musi być jeszcze wolniejszy, co jest trudne do wyobrażenia." #: lang/json/MONSTER_from_json.py msgid "armored nodosaurus" @@ -111033,12 +112865,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " "bone armor; it must also be even slower, which is hard to imagine." msgstr "" +"Ten Nodozaur zombie, który był już mocno chroniony, obrósł jeszcze gęstszym " +"pancerzem kostnym; musi też być jeszcze wolniejszy, co jest trudne do " +"wyobrażenia." #: lang/json/MONSTER_from_json.py msgid "armored edmontonia" @@ -111048,12 +112883,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " "bone armor, while keeping the long, bony spikes." msgstr "" +"Już wcześniej mocno chroniony, ten Nodozaur zombie wyhodował jeszcze gęstszy" +" pancerz kostny, zachowując przy tym długie, kościane kolce." #: lang/json/MONSTER_from_json.py msgid "armored camptosaurus" @@ -111063,12 +112900,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" " pointed beak has grown dense bone armor." msgstr "" +"Te duże, dwunożne zwłoki dinozaura o mocnych nogach, szerokich ramionach i " +"spiczastym dziobie porosły gęstym pancerzem kostnym." #: lang/json/MONSTER_from_json.py msgid "armored maiasaura" @@ -111078,12 +112917,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," " spiky head crest has grown dense bone armor." msgstr "" +"Ten duży, dwunożny trup dinozaura z płaskim dziobem, grubym nosem i małym, " +"kolczastym grzebieniem na głowie obrósł gęstym pancerzem kostnym." #: lang/json/MONSTER_from_json.py msgid "armored parasaurolophus" @@ -111093,12 +112934,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " "bone armor." msgstr "" +"Ten duży, dwunożny trup dinozaura z tępym grzebieniem głowy obrósł gęstym " +"pancerzem kostnym." #: lang/json/MONSTER_from_json.py msgid "armored corythosaurus" @@ -111108,12 +112951,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " "has grown dense bone armor." msgstr "" +"Ten duży, dwunożny trup dinozaura z krótkim dziobem i wysokim grzebieniem " +"głowy porósł gęstym pancerzem kostnym." #: lang/json/MONSTER_from_json.py msgid "armored Edmontosaurus" @@ -111123,12 +112968,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " "dense bone armor." msgstr "" +"Ten duży, dwunożny trup dinozaura z szerokim, bezzębnym dziobem obrósł " +"gęstym pancerzem kostnym." #: lang/json/MONSTER_from_json.py msgid "protected pachycephalosaurus" @@ -111138,12 +112985,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" " bone armor." msgstr "" +"Ten dwunożny trup dinozaura z twardo wyglądającą, kopulastą głową obrósł " +"gęstym pancerzem kostnym." #: lang/json/MONSTER_from_json.py msgid "protected pachyrhinosaurus" @@ -111153,12 +113002,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" " and brow has grown dense bone armor over the rest of its body." msgstr "" +"Ten wielki, czworonożny trup dinozaura z masywnymi kostnymi wypustkami na " +"nosie i czole obrósł gęstym pancerzem kostnym na reszcie ciała." #: lang/json/MONSTER_from_json.py msgid "protected pentaceratops" @@ -111168,12 +113019,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " "horns, and a short nose horn has grown dense bone armor." msgstr "" +"Ten duży, czworonożny trup dinozaura z wysokim kościstym grzebieniem, " +"czterema długimi rogami i krótkim rogiem nosowym obrósł gęstym kostnym " +"pancerzem." #: lang/json/MONSTER_from_json.py msgid "armored kosmoceratops" @@ -111183,12 +113037,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " "horns has grown dense bone armor." msgstr "" +"Ten duży, czworonożny trup dinozaura z kościstym grzebieniem i dwoma " +"falistymi rogami po bokach obrósł gęstym kostnym pancerzem." #: lang/json/MONSTER_from_json.py msgid "armored torosaurus" @@ -111198,12 +113054,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " "wicked-looking horns has grown dense bone armor." msgstr "" +"Ten duży, czworonożny trup dinozaura z wysokim kościstym grzebieniem i dwoma" +" groźnie wyglądającymi rogami obrósł gęstym kostnym pancerzem." #: lang/json/MONSTER_from_json.py msgid "armored triceratops" @@ -111213,12 +113071,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " "wicked-looking horns has grown dense bone armor." msgstr "" +"Ten masywny, czworonożny trup dinozaura z wysokim kościstym grzebieniem i " +"trzema groźnie wyglądającymi rogami obrósł gęstym kostnym pancerzem." #: lang/json/MONSTER_from_json.py msgid "Tyruckusaurus Rex" @@ -111228,13 +113088,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " "looks like a fully loaded long haul truck with mounted flamethrowers and " "robotic arms." msgstr "" +"Masywne stosy poszarpanego, cuchnącego mięsa unoszącego ogromne zęby i coś, " +"co wygląda jak w pełni załadowana ciężarówka z zamontowanymi miotaczami " +"ognia i robotycznymi ramionami." #: lang/json/MONSTER_from_json.py msgid "Tankylosaurus" @@ -111244,13 +113107,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " "looks like a US Army M1 Abrams Tank with a sparking but still functional " "turret." msgstr "" +"Ogromny, ciężko opancerzony dinozaur zombie podnoszący kolczasty ogon i coś," +" co wygląda jak czołg Armii Stanów Zjednoczonych M1 Abrams z iskrzącą się, " +"ale wciąż funkcjonalną wieżyczką." #: lang/json/MONSTER_from_json.py msgid "Goliath Rex" @@ -111260,12 +113126,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" " massive body bulges with distended muscles and swollen, festering wounds." msgstr "" +"Ohydnie spuchnięte, martwe ciało tyranozaura zombie wznosi się ku niebu. " +"Jego masywne ciało wybrzusza się za sprawą napiętych mięśni i spuchniętych, " +"ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Ankylosaurus hulk" @@ -111275,12 +113144,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " "massive body bulges with distended muscles and enormous bony armor." msgstr "" +"Ohydnie spuchnięte, martwe ciało Ankylozaura zombie wznosi się ku niebu. " +"Jego masywne ciało wybrzusza się za sprawą naprężonych mięśni i ogromnego " +"kostnego pancerza." #: lang/json/MONSTER_from_json.py msgid "Dimorphodon zombie" @@ -111290,12 +113162,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " "with short wings and a big colorful beak." msgstr "" +"Poszarpane, latające zwłoki pierzastego gada o długości ponad trzech stóp, z" +" krótkimi skrzydłami i wielkim kolorowym dziobem." #. ~ Description for Winged Horror #: lang/json/MONSTER_from_json.py @@ -111304,6 +113178,9 @@ msgid "" "wings and a big colorful beak. Its entire body bulges with distended " "muscles and swollen, festering wounds." msgstr "" +"Latające zwłoki opierzonego gada o długości ponad trzech stóp, z krótkimi " +"skrzydłami i wielkim kolorowym dziobem. Całe jego ciało wybrzusza się od " +"napiętych mięśni i spuchniętych, ropiejących ran." #: lang/json/MONSTER_from_json.py msgid "Dimorphozombie bio-operator" @@ -111320,6 +113197,9 @@ msgid "" "colorful glowing beak. It has been implanted with crackling bionics and is " "dripping black goo." msgstr "" +"Poszarpane, latające zwłoki pierzastego gada, z krótkimi skrzydłami i " +"kolorowym, świecącym dziobem. Wszczepiono mu trzeszczącą bionikę i ocieka " +"czarną mazią." #: lang/json/MONSTER_from_json.py msgid "improvised SMG turret" @@ -111337,7 +113217,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -111346,6 +113226,11 @@ msgid "" " anything up to light vehicles at long range without exposing the operator." " This one is fitted with a heavy machinegun." msgstr "" +"System zdalnej broni wywodzący się z M153 CROWS II i wzbogacony o " +"oprogramowanie do autonomicznej obsługi. Przed Kataklizmem wojska " +"amerykańskie wprowadziły ich tysiące i były one cenione za możliwość " +"atakowania wszystkiego aż do lekkich pojazdów, na dalekim dystansie, bez " +"narażania operatora. Ten egzemplarz jest wyposażony w cekaem." #: lang/json/MONSTER_from_json.py msgid "CROWS II, light machinegun" @@ -111355,7 +113240,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -111364,6 +113249,11 @@ msgid "" " infantry without exposing the operator. This one is fitted with a light " "machine gun." msgstr "" +"System zdalnej broni wywodzący się z M153 CROWS II i wzbogacony o " +"oprogramowanie do autonomicznej obsługi. Przed Kataklizmem wojska " +"amerykańskie wprowadziły ich tysiące i były cenione za możliwość atakowania " +"piechoty bez narażania operatora. Ten egzemplarz jest wyposażony w lekki " +"karabin maszynowy." #: lang/json/MONSTER_from_json.py msgid "autonomous rifle TALON UGV" @@ -111380,6 +113270,9 @@ msgid "" "is a small tracked UGV with an array of motors and sensors covering its " "weapon mount." msgstr "" +"Bezzałogowy pojazd naziemny TALON wyposażony w standardowy karabin " +"szturmowy. Jest to nieduży, gąsienicowy dron z szeregiem silników i " +"czujników zamontowanych wokół punktu montażowego broni." #: lang/json/MONSTER_from_json.py msgid "autonomous launcher TALON UGV" @@ -111396,6 +113289,9 @@ msgid "" "It is a small tracked UGV with an array of motors and sensors covering its " "weapon mount." msgstr "" +"Bezzałogowy pojazd naziemny TALON wyposażony w rewolwerowy granatnik. Jest " +"to nieduży, gąsienicowy dron z szeregiem silników i czujników zamontowanych " +"wokół punktu montażowego broni." #: lang/json/MONSTER_from_json.py msgid "animated blade" @@ -111411,6 +113307,8 @@ msgid "" "A conjured glowing longsword that darts and dodges around, slicing and " "cutting your foes into small pieces." msgstr "" +"Wyczarowany, świecący miecz, który rzuca się i robi uniki, tnąc przeciwników" +" na małe kawałki." #: lang/json/MONSTER_from_json.py msgid "Ogre" @@ -111426,6 +113324,8 @@ msgid "" "A green beast known for living in swamps and eating humans; it will kill " "anything it gets its hands on." msgstr "" +"Zielona bestia, znana z życia na bagnach i zjadania ludzi, zabije wszystko, " +"co wpadnie jej w ręce." #: lang/json/MONSTER_from_json.py msgid "Orc Warrior" @@ -111441,6 +113341,8 @@ msgid "" "This green brute is a orc warrior. It stares at you menacingly, sword in " "hand." msgstr "" +"Ten zielony brutal jest to ork wojownik. Wpatruje się w ciebie groźnie " +"trzymając miecz w ręku." #: lang/json/MONSTER_from_json.py msgid "orc archer" @@ -111456,14 +113358,16 @@ msgid "" "This green brute is a orc archer. It looks at you with a bow in hand and " "smiles silently as it aims at you." msgstr "" +"Ten zielony brutal to ork-łucznik. Patrzy na ciebie z łukiem w ręku i " +"uśmiecha się cicho, celując w ciebie." #: lang/json/MONSTER_from_json.py msgid "The orc shoots you with laser accuracy" -msgstr "" +msgstr "Ork strzela do ciebie z laserową precyzją." #: lang/json/MONSTER_from_json.py msgid "grunting" -msgstr "" +msgstr "pomruki" #: lang/json/MONSTER_from_json.py msgid "Blood Orc" @@ -111479,6 +113383,8 @@ msgid "" "This bloody red brute is a orc warrior. He stares at you menacingly, weapon" " in hand; this one seems to have bathed himself in the blood of his enemies." msgstr "" +"Ten krwistoczerwony brutal to ork wojownik. Wpatruje się w ciebie groźnie, z" +" bronią w ręku; wygląda na to, że wykąpał się we krwi swoich wrogów." #: lang/json/MONSTER_from_json.py msgid "demon spiderling" @@ -111496,6 +113402,10 @@ msgid "" "this creature before the Cataclysm. It is quick, and its large fangs drip " "with venom." msgstr "" +"Mimo, że jest wielkości małego psa, możesz stwierdzić, że to bardzo młody " +"pająk. Jego czerwony kolor jest powodem, dla którego nadałeś mu tę nazwę; " +"nigdy nie widziałeś tego stworzenia przed Kataklizmem. Jest szybki, a jego " +"wielkie kły ociekają jadem." #: lang/json/MONSTER_from_json.py msgid "demon spider" @@ -111513,6 +113423,11 @@ msgid "" " maroon carapace is studded with wicked-looking spikes that drip with some " "kind of viscous black liquid that sizzles when it touches the ground." msgstr "" +"Ten pająk jest wielkości samochodu. Jego ogromne, złożone oczy wydają się " +"być nieskończonymi otchłaniami czerni, które zdają się wysysać światło z " +"powietrza. Jego bordowy pancerz najeżony jest groźnie wyglądającymi kolcami," +" z których kapie jakaś lepka, czarna ciecz, która skwierczy, gdy tylko " +"dotknie ziemi." #: lang/json/MONSTER_from_json.py msgid "demon spider queen" @@ -111530,6 +113445,10 @@ msgid "" "huge and swollen-looking, and an evil intelligence burns in its eyes even as" " magic crackles around its chitinous barbs." msgstr "" +"Ten gigantyczny pająk jest wielkości jadącej furgonetki: nie masz pojęcia, " +"jak udaje mu się utrzymać w całości, a tym bardziej poruszać z taką masą. " +"Jego odwłok jest ogromny i opuchnięty, a w jego oczach płonie złowroga " +"inteligencja, podczas gdy wokół jego chitynowych kolców skrzy się magia." #: lang/json/MONSTER_from_json.py msgid "black dragon wyrmling" @@ -111546,6 +113465,9 @@ msgid "" "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 "" +"Jest to mały czarny smok, mający mniej niż pięć lat. Jego łuski są " +"błyszczące, a rogi ledwo wystają z głowy. Nawet u tak młodego osobnika widać" +" błysk sadyzmu w oczach." #: lang/json/MONSTER_from_json.py msgid "young black dragon" @@ -111564,6 +113486,11 @@ msgid "" "this creature is evil to its very core. Even though this dragon is not " "fully grown, it is the size of a full-grown bull." msgstr "" +"Ten czarny smok wydaje się być wciąż we wczesnym stadium życia. Jego oczy " +"właśnie zaczęły zapadać się w swoich oczodołach, a jego zakrzywione, " +"segmentowane rogi właśnie zaczęły ciemnieć na czubkach. Możesz stwierdzić po" +" samym wyglądzie, że to stworzenie jest do szpiku kości złe. Chociaż ten " +"smok nie jest jeszcze w pełni rozwinięty, jest wielkości dorosłego byka." #: lang/json/MONSTER_from_json.py msgid "adult black dragon" @@ -111580,6 +113507,9 @@ msgid "" "evil. Its face and skull appear skeletal, and acid drips from its dagger-" "like jaws." msgstr "" +"Czarnoskóre monstrum z głęboko osadzonymi oczodołami, jarzącymi się zielonym" +" blaskiem zła. Jego twarz i czaszka przypominają szkielet, a z jego " +"sztyletowatych szczęk kapie kwas." #: lang/json/MONSTER_from_json.py msgid "forge born" @@ -111596,6 +113526,10 @@ msgid "" "ever seen. Each one has its face designed in a mask displaying a single " "emotion. Blades extend from the wrists in combat." msgstr "" +"Najbardziej misterne, jaskrawe i przerysowane nakręcane stwory, jakie " +"kiedykolwiek widziałeś. Każdy z nich ma twarz zaprojektowaną jako maska " +"przedstawiająca jedną emocję. Ostrza wysuwają się z nadgarstków podczas " +"walki." #: lang/json/MONSTER_from_json.py msgid "goblin forgemaster" @@ -111611,6 +113545,8 @@ msgid "" "A goblin like none you've ever seen before. He directs workers and " "automatons with confidence and style." msgstr "" +"Goblin, jakiego jeszcze nie widziałeś. Kieruje robotnikami i automatami z " +"pewnością siebie i stylem." #: lang/json/MONSTER_from_json.py msgid "lizardfolk forgemaster" @@ -111626,6 +113562,8 @@ msgid "" "Lizardfolk rarely live outside of their tribes. This one has found freedom " "and purpose beyond serving their draconic masters." msgstr "" +"Jaszczuroludzie rzadko żyją poza swoimi plemionami. Ten znalazł wolność i " +"cel poza służeniem swoim smoczym panom." #: lang/json/MONSTER_from_json.py msgid "gracken forgemaster" @@ -111645,6 +113583,12 @@ msgid "" "rapidly as to appear a little more than a black blur of claws. This one " "politely asks you to mind your step as this is a working environment." msgstr "" +"To jakaś forma złowieszczego monstrum; niezgrabna czarna istota o gładkiej, " +"tłustej skórze i nieprzyjaznych rogach, które zakrzywiają się ku sobie. " +"Wysoki i szczupły, a cienie nienaturalnie przylegają do jego niejasno " +"zdefiniowanej humanoidalnej postaci, a jego ręce drgają i dygoczą tak " +"gwałtownie, że wydają się być jedynie czarną smugą pazurów. Ten uprzejmie " +"prosi, abyś uważał pod nogi, gdyż jest to miejsce pracy." #: lang/json/MONSTER_from_json.py msgid "forge demon" @@ -111662,6 +113606,10 @@ msgid "" "you then throws itself at the walls screaming bloody murder. Its mere " "presence fills you with an unfathomable dread." msgstr "" +"Pierwszą rzeczą, którą zauważasz jest to, że to stworzenie ma pięć ramion. " +"Kolejną jest to, że chodzi na trzech nogach. Przechadza się po sklepieniu, " +"aż cię zauważy, po czym rzuca się na ściany, krzycząc krwawo. Sama jego " +"obecność napawa cię niepojętym lękiem." #: lang/json/MONSTER_from_json.py msgid "vengeance spirit" @@ -111679,11 +113627,15 @@ msgid "" "eyeholes of a skull, the mouth opens and a deep moan vibrates up through the" " legs of those standing nearby." msgstr "" +"Wygląda jak błędny ognik, miota się w tę i z powrotem, dopóki nie wypatrzy " +"swojej ofiary. Kiedy chorobliwie zielone ogniki zapalają się w oczodołach " +"czaszki, usta otwierają się, a głęboki jęk wibruje przez nogi stojących w " +"pobliżu." #. ~ Attack message of monster "vengeance spirit"'s spell "None" #: lang/json/MONSTER_from_json.py msgid "The spirit flickers and reappears!" -msgstr "" +msgstr "Duch migocze i pojawia się na nowo!" #: lang/json/MONSTER_from_json.py msgid "forge worker" @@ -111701,6 +113653,11 @@ msgid "" " their skin aren't scarred from burns. Their clothes are designed to " "protect them from the intense environment they work in." msgstr "" +"Krępy humanoid, który wygląda na dość solidnie zbudowanego. Ich włosy " +"układają się w irokezy i inne dziwne fryzury, które wydają się być " +"podyktowane tym, które części ich skóry nie są pokryte bliznami po " +"oparzeniach. Ich ubrania są zaprojektowane tak, aby chronić ich przed " +"intensywnym środowiskiem, w którym pracują." #: lang/json/MONSTER_from_json.py msgid "forge hounds" @@ -111710,11 +113667,13 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" msgstr "" +"Z pobliskiego kąta wychodzi metaliczny pies gończy i warczy na ciebie. " +"Uciekaj!!!" #: lang/json/MONSTER_from_json.py msgid "goblin warrior" @@ -111730,6 +113689,8 @@ msgid "" "This short humanoid is covered in filth and shouts slurs at you as it " "brandishes a cudgel." msgstr "" +"Ten niski humanoid jest pokryty brudem i wykrzykuje do ciebie obelgi, " +"wymachując pałką." #: lang/json/MONSTER_from_json.py msgid "goblin slinger" @@ -111744,10 +113705,11 @@ msgstr[3] "" msgid "" "An ugly creature that slings rocks almost as well as it slings insults." msgstr "" +"Brzydkie stworzenie, które rzuca kamieniami prawie tak dobrze, jak obelgami." #: lang/json/MONSTER_from_json.py msgid "The goblin slings a rock at you!" -msgstr "" +msgstr "Goblin rzuca w ciebie kamieniem!" #: lang/json/MONSTER_from_json.py msgid "goblin chieftain" @@ -111763,6 +113725,8 @@ msgid "" "An ugly creature that was promoted to chieftain because it figured out which" " end of the weapon is pointy." msgstr "" +"Brzydkie stworzenie, które zostało awansowane na wodza, bo zorientowało się," +" który koniec broni jest spiczasty." #: lang/json/MONSTER_from_json.py msgid "clay golem" @@ -111778,6 +113742,8 @@ msgid "" "A large, humanoid golem made from clay. Its proportions are off and it " "seems fragile." msgstr "" +"Duży, humanoidalny golem wykonany z gliny. Jego proporcje są zachwiane i " +"wydaje się kruchy." #: lang/json/MONSTER_from_json.py msgid "plastic golem" @@ -111795,6 +113761,11 @@ msgid "" "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." msgstr "" +"Tradycyjnie, tworzenie golema to wielomiesięczny proces, w którym " +"wykorzystuje się narzędzia ręczne i precyzyjne rzemiosło. Kamienny golem " +"jest tak samo dziełem sztuki, jak i magicznym urządzeniem. Pojawienie się " +"druku 3D ułatwiło hobbystyczne tworzenie golemów, a plastikowe golemy " +"zyskały ogromną popularność." #: lang/json/MONSTER_from_json.py msgid "stone golem" @@ -111809,6 +113780,8 @@ msgstr[3] "" msgid "" "A large, humanoid golem made from stone. Its fists look similar to rockets." msgstr "" +"Duży, humanoidalny golem wykonany z kamienia. Jego pięści przypominają " +"rakiety." #: lang/json/MONSTER_from_json.py msgid "iron golem" @@ -111824,6 +113797,8 @@ msgid "" "A large, humanoid golem made from iron. Some sort of noxious gas seems to " "be seeping from its mouth." msgstr "" +"Duży, humanoidalny golem wykonany z żelaza. Z jego ust zdaje się wydobywać " +"jakiś trujący gaz." #: lang/json/MONSTER_from_json.py msgid "Yule Cat" @@ -111839,6 +113814,8 @@ msgid "" "Magical beast from Icelandic folklore, known for their catlike appearance " "and their hobby of eating Workshop Elves." msgstr "" +"Magiczna bestia z islandzkiego folkloru, znana z kociego wyglądu i hobby, " +"jakim jest zjadanie Elfów Warsztatowych." #: lang/json/MONSTER_from_json.py msgid "Yulecat Cub" @@ -111854,6 +113831,8 @@ msgid "" "The child of a yulecat, this catlike creature looks as if it poses no threat" " to you, but looks can be deceiving." msgstr "" +"Dziecko kota yule, to podobne do kota stworzenie, które wygląda jakby nie " +"stanowiło dla ciebie zagrożenia, ale wygląd może być mylący." #: lang/json/MONSTER_from_json.py msgid "Workshop Elf" @@ -111869,6 +113848,8 @@ msgid "" "Magical humanoids who are known for working in workshops, wearing green, and" " being proficient at making toys." msgstr "" +"Magiczne humanoidy, które są znane z pracy w warsztatach, noszenia zielonego" +" koloru i biegłości w tworzeniu zabawek." #: lang/json/MONSTER_from_json.py msgid "Leprechaun" @@ -111883,6 +113864,8 @@ msgstr[3] "" msgid "" "Mischievous shoemakers who wear green and love pulling pranks on mortals." msgstr "" +"Psotni szewcy, którzy noszą się na zielono i uwielbiają płatać figle " +"śmiertelnikom." #: lang/json/MONSTER_from_json.py msgid "lizardfolk warrior" @@ -111903,6 +113886,9 @@ msgid "" " their greatclubs, they are equally ferocious with their sharp teeth and " "claws." msgstr "" +"Wysoki, silny, gadzi humanoid z muskularnym ogonem, którego skóra pokryta jest ciemnymi szaro-zielonymi łuskami. Są plemienne i zwykle można je spotkać w jaskiniach i w pobliżu wody, zwłaszcza na terenach zamieszkałych przez smoki i im podobne. Nie są szczególnie wrogo nastawione, choć nie dbają o obcych i są bardzo niebezpieczne, gdy zostaną sprowokowane. Zazwyczaj wolą walczyć przy pomocy swoich potężnych pałek, ale są równie groźne dzięki swoim ostrym zębom i pazurom.\n" +"\n" +"Przetłumaczono z www.DeepL.com/Translator (wersja darmowa)" #: lang/json/MONSTER_from_json.py msgid "lizardfolk hunter" @@ -111918,10 +113904,12 @@ msgid "" "The hunter is a smaller lizardfolk than a warrior, but equally as deadly, " "with their lithe figures and accurate javelin throws." msgstr "" +"Łowca jest mniejszym jaszczuroludem niż wojownik, ale równie zabójczym, " +"dzięki swojej smukłej sylwetce i celnym rzutom oszczepem." #: lang/json/MONSTER_from_json.py msgid "The hunter hurls a barbed javelin at you!" -msgstr "" +msgstr "Łowca rzuca w ciebie kolczastym oszczepem!" #: lang/json/MONSTER_from_json.py msgid "lizardfolk shaman" @@ -111941,6 +113929,13 @@ msgid "" "Shamans are druidic spellcasters that can use the forces of nature to battle" " enemies, as well as summoning assistance when needed." msgstr "" +"Jaszczuroludzie są bardzo inteligentni i przebiegli, ale zdolności magiczne " +"są u nich rzadką cechą. Szamani są wybierani z plemienia w dzieciństwie, " +"kiedy to magiczne zdolności naznaczają los młodego współplemieńca. Niewiele " +"wiadomo o rytuale inicjacyjnym, któremu muszą się poddać, ale niewielu z " +"nich przeżywa to doświadczenie. Szamani to druidyczni zaklinacze, którzy " +"potrafią wykorzystywać siły natury do walki z wrogami, a także przywoływać " +"wsparcie w razie potrzeby." #: lang/json/MONSTER_from_json.py msgid "lizardfolk chieftan" @@ -111959,6 +113954,11 @@ msgid "" "strongest member of its tribe and carries a fierce trident to compliment its" " teeth and claws." msgstr "" +"Wśród jaszczuroludzi ambicja jest rzadką cechą. Wodzowie zasłużyli na swoje " +"miejsce, wykazując się niezwykle wysokim poziomem ambicji, często mylonym " +"przez postronnych obserwatorów z nadmierną, brutalną przemocą. Ten wódz jest" +" największym i najsilniejszym członkiem swojego plemienia i nosi groźny " +"trójząb, który dopełnia jego uzębienie i pazury." #: lang/json/MONSTER_from_json.py msgid "crocodile" @@ -111974,6 +113974,8 @@ 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 "" +"Ten wielki krokodyl, niegdysiejszy szaman jaszczuroludzi, nie ma już żadnych" +" cech humanoidalnych i wygląda bardzo, bardzo groźnie." #: lang/json/MONSTER_from_json.py msgid "owlbear" @@ -111992,6 +113994,11 @@ msgid "" "ravenous eaters, aggressive hunters, and evil tempered at all times. They " "attack prey on sight and will fight to the death." msgstr "" +"Okropny sowoniedźwiedź jest prawdopodobnie wynikiem eksperymentów " +"genetycznych jakiegoś szalonego czarodzieja. Stworzenia te zamieszkują " +"splątane leśne regiony każdego klimatu umiarkowanego, a także podziemne " +"labirynty. Są drapieżnymi żarłokami, agresywnymi łowcami i nieustannie mają " +"zły temperament. Atakują ofiarę na sam widok i walczą na śmierć i życie." #: lang/json/MONSTER_from_json.py msgid "black pudding" @@ -112007,11 +114014,13 @@ 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 "" +"Wijący się, lepki, czarny szlam przelewa się po ziemi. Z podłoża pod nim " +"wydobywa się słaby skwierczący dźwięk, gdy zbliża się do ciebie." #. ~ Attack message of monster "black pudding"'s spell "None" #: lang/json/MONSTER_from_json.py msgid "The black pudding burns %3$s with acid!" -msgstr "" +msgstr "Czarny szlam pali %3$s kwasem!" #: lang/json/MONSTER_from_json.py msgid "krabgek" @@ -112029,11 +114038,15 @@ msgid "" "liquid, and the weirdly humanoid figure is covered in sharp blue-black " "triangular plates." msgstr "" +"Z ciemności spogląda wielkie, straszliwe oko, którego blask wskazuje na " +"dziwną inteligencję i niepokojącą złośliwość. Z oka sączy się różowawy płyn," +" a dziwnie humanoidalna postać pokryta jest ostrymi, niebiesko-czarnymi, " +"trójkątnymi płytkami." #. ~ Attack message of monster "krabgek"'s spell "None" #: lang/json/MONSTER_from_json.py msgid "The krabgek gazes at %3$s!" -msgstr "" +msgstr "Krabgek gapi się na %3$s!" #: lang/json/MONSTER_from_json.py msgid "hunllef lamb" @@ -112049,6 +114062,8 @@ msgid "" "The offspring of the Hunllef rams are much more docile but still have wicked" " looking horns like their parents." msgstr "" +"Potomstwo baranów Hunllef jest znacznie bardziej potulne, ale nadal ma " +"groźnie wyglądające rogi, jak ich rodzice." #: lang/json/MONSTER_from_json.py msgid "hunllef rams" @@ -112058,7 +114073,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -112068,6 +114083,13 @@ msgid "" "parabolan wool and often take a protective stance towards other sheep, so " "some farmers will risk life and limb to keep them." msgstr "" +"Barany Hunllef, znane również jako Tryki Rozpruwacze, to wyjątkowo okrutna " +"rasa owiec, co do której istnieje podejrzenie, że pochodzi z innej planety. " +"Zarówno samce jak i samice posiadają śmiercionośne rogi i gotowość do użycia" +" ich na większości stworzeń, które się do nich zbliżą. Są one najbardziej " +"atrakcyjnym źródłem wełny parabolicznej i często przyjmują postawę ochronną " +"wobec innych owiec, dlatego niektórzy farmerzy ryzykują życiem i zdrowiem, " +"aby je hodować." #: lang/json/MONSTER_from_json.py msgid "owlbear cub" @@ -112094,6 +114116,11 @@ msgid "" " flesh. The stupid bulette is irascible and always hungry, and they fear " "nothing." msgstr "" +"Buletta (lub żarłacz piaskowy) powstała w wyniku eksperymentalnej krzyżówki " +"żółwia błotnego z pancernikiem, dokonanej przez szalonego czarodzieja, z " +"dodatkiem ikry demonów. Poruszają się w klimacie umiarkowanym, żywiąc się " +"końmi, ludźmi i większością innych mięs. Głupie buletty są złośliwe i zawsze" +" głodne, niczego się nie boją." #: lang/json/MONSTER_from_json.py msgid "will-o-wisp" @@ -112110,6 +114137,9 @@ msgid "" "mistaken for lanterns, especially in the foggy marshes and swamps where they" " reside." msgstr "" +"Błędne ogniki mogą być żółte, białe, zielone lub niebieskie. Łatwo je " +"pomylić z latarniami, zwłaszcza na mglistych bagnach i mokradłach, które " +"zamieszkują." #: lang/json/MONSTER_from_json.py msgid "troll" @@ -112125,14 +114155,16 @@ msgid "" "Monstrous, green-skinned humanoid. Trolls are renowned for their thick " "hides and natural regenerative ability." msgstr "" +"Potworny, zielonoskóry humanoid. Trolle słyną z grubej skóry i naturalnych " +"zdolności regeneracyjnych." #: lang/json/MONSTER_from_json.py msgid "stirge" msgid_plural "stirges" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "żądlak" +msgstr[1] "żądlaki" +msgstr[2] "żądlaków" +msgstr[3] "żądlaka" #. ~ Description for stirge #: lang/json/MONSTER_from_json.py @@ -112140,14 +114172,16 @@ msgid "" "This horrid flying creature looks like a cross between a large bat and " "oversized mosquito." msgstr "" +"To okropne latające stworzenie wygląda jak skrzyżowanie dużego nietoperza z " +"przerośniętym komarem." #: lang/json/MONSTER_from_json.py msgid "shrieker" msgid_plural "shriekers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "krzykacz" +msgstr[1] "krzykacze" +msgstr[2] "krzykaczy" +msgstr[3] "krzykacza" #. ~ Description for shrieker #: lang/json/MONSTER_from_json.py @@ -112155,6 +114189,8 @@ msgid "" "A shrieker is a human-sized mushroom that emits a piercing screech to drive " "off creatures that disturb it." msgstr "" +"Krzykacz jest grzybem wielkości człowieka, który wydaje przeszywający pisk, " +"aby odstraszyć stworzenia, które mu przeszkadzają." #. ~ Description for frog #: lang/json/MONSTER_from_json.py @@ -112162,6 +114198,8 @@ msgid "" "A conspicuously average american bullfrog. You better keep prince charming " "away from it." msgstr "" +"Wybitnie przeciętna amerykańska żaba rycząca. Lepiej trzymaj księcia z dala " +"od niej." #: lang/json/MONSTER_from_json.py msgid "lemure" @@ -112177,6 +114215,7 @@ msgid "" "A lemure resembles a molten mass of flesh with a vaguely humanoid head and " "torso." msgstr "" +"Lemur przypomina stopioną masę mięsa z nieco humanoidalną głową i tułowiem." #: lang/json/MONSTER_from_json.py msgid "winter wolf" @@ -112192,6 +114231,9 @@ msgid "" "A pure white dire wolf. If you squint, you can see a faint mist surrounding" " its coat, and ice shards slowly descend from its breath." msgstr "" +"Śnieżnobiały straszliwy wilk. Jeśli zmrużysz oczy, zobaczysz, że jego sierść" +" otacza słaba mgiełka, a jego oddech krystalizuje w powietrzu kryształki " +"lodu." #: lang/json/MONSTER_from_json.py msgid "loup garou" @@ -112208,6 +114250,33 @@ msgid "" " creature has been known to breed with true wolves when it isn't madly " "destroying any signs of humanity in it's territory." msgstr "" +"Wcześniej uważane za wymarłe poza wiejskimi terenami Quebecu i Luizjany, to " +"przeklęte stworzenie było znane z rozmnażania się z prawdziwymi wilkami, gdy" +" akurat nie niszczyło wściekle wszelkich oznak człowieczeństwa na swoim " +"terytorium." + +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "ognisty koszmar" +msgstr[1] "ogniste koszmary" +msgstr[2] "ognistych koszmarów" +msgstr[3] "ognistego koszmara" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" +"Kolosalna postać, która wydaje się składać wyłącznie z cieni ogarniętych " +"płomieniami. Jej ogromne ciemne skrzydła rozciągają się od ściany do ściany." +" Dwoje oczu, przypominających rozżarzone węgle, spogląda na ciebie z " +"nienawiścią. W jednej ręce trzyma ogromny miecz, w drugiej rozwidlony bicz, " +"oba jarzą się czerwonymi płomieniami." #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" @@ -112225,6 +114294,10 @@ msgid "" "It's jet black eyes seething with unsiatable hunger. Now you will know why " "you fear the night." msgstr "" +"Klasyczny pół człowiek pół wilk z filmów, ale z nowym zwrotem akcji: " +"NIEUMIARŁY! Ten potwór porusza się na przemian na dwóch i czterech nogach. " +"Jego czarne jak smoła oczy przesiąknięte są nieopisanym głodem. Teraz " +"będziesz wiedział, dlaczego boisz się nocy." #: lang/json/MONSTER_from_json.py msgid "Zorc" @@ -112240,6 +114313,8 @@ msgid "" "This unholy beast looks at you with a piercing stare so strong it might " "scare your soul away." msgstr "" +"Ta przeklęta bestia patrzy na ciebie przeszywającym wzrokiem, tak silnym, że" +" może odstraszyć twoją duszę." #: lang/json/MONSTER_from_json.py msgid "Zowlbear" @@ -112256,6 +114331,9 @@ msgid "" "than its living counterpart, you feel much more hostility from its black " "oily eyes." msgstr "" +"Ten straszny, zmutowany potwór stał się zombie. Choć wygląda słabiej niż " +"jego żywy odpowiednik, czujesz znacznie większą wrogość w jego czarnych, " +"oleistych oczach." #: lang/json/MONSTER_from_json.py msgid "Zowlbear Predator" @@ -112272,6 +114350,9 @@ msgid "" "skin protects the monster from harm, a sharp beak capable of rending through" " metal and a fury in its eyes warns you to stay away." msgstr "" +"Niegdyś sowoniedźwiedź zombie, teraz znacznie szybszy i o wiele większy. " +"Jego gruba skóra chroni potwora przed krzywdą, ostry dziób potrafi przebić " +"metal, a wściekłość w oczach ostrzega, by trzymać się z daleka." #: lang/json/MONSTER_from_json.py msgid "Undying" @@ -112289,6 +114370,10 @@ msgid "" "death, its pus filled body seems to have much grown stronger, it looks at " "you ferociously with hunger in its eyes." msgstr "" +"Ogromny humanoidalny potwór o żółtawo-zielonej skórze. Trolle słyną z grubej" +" skóry i naturalnych zdolności regeneracyjnych. Po śmierci, jego wypełnione " +"ropą ciało wydaje się być znacznie silniejsze i patrzy na ciebie z głodem w " +"oczach." #: lang/json/MONSTER_from_json.py msgid "Zombified Yule Cat" @@ -112306,6 +114391,10 @@ msgid "" " with its squirming uneven body after meeting demise and being reborn just " "to eat you." msgstr "" +"Magiczna bestia z islandzkiego folkloru, znana ze swojego kociego wyglądu i " +"hobby, jakim jest zjadanie Elfów Warsztatowych. Pokracznie zatacza się na " +"swoich czterech nogach i kołysze nierównym ciałem po tym, jak spotkała ją " +"śmierć i odrodziła się tylko po to, by cię zjeść." #: lang/json/MONSTER_from_json.py msgid "Tod Cat" @@ -112323,6 +114412,10 @@ msgid "" "Though its head is of a feline, it grins at you sadisticly with a glint in " "its cold demonic eyes." msgstr "" +"Po przyzwyczajeniu się do swojego rozkładającego się ciała, ten koszmarny " +"kot z grubymi zębami i ostrymi pazurami wydaje się rozglądać za rzeczami, " +"którymi mógłby się \"pobawić\". Chociaż jego głowa jest kocia, szczerzy się " +"do ciebie sadystycznie z błyskiem w zimnych, demonicznych oczach." #: lang/json/MONSTER_from_json.py msgid "necco" @@ -112335,7 +114428,7 @@ msgstr[3] "" #. ~ Description for necco #: lang/json/MONSTER_from_json.py msgid "A giant necco wafer happily hopping around." -msgstr "" +msgstr "Gigantyczny wafel necco radośnie podskakuje dookoła." #: lang/json/MONSTER_from_json.py msgid "marshmallow kid" @@ -112351,6 +114444,8 @@ msgid "" "A small humanoid made of marshmallow. It bumbles about on its stubby " "cushiony legs. How cute!" msgstr "" +"Mały humanoid zrobiony z pianki cukrowej. Kręci się na swoich poduszkowatych" +" nóżkach. Jakie to słodkie!" #: lang/json/MONSTER_from_json.py msgid "marshmallow guy" @@ -112366,6 +114461,8 @@ msgid "" "A marshmallow humanoid with a smile drawn on its face. It bumbles around as" " if looking for something. It's oddly adorable." msgstr "" +"Mały humanoid z uśmiechem na twarzy. Kręci się w kółko, jakby czegoś szukał." +" Jest dziwnie uroczy." #: lang/json/MONSTER_from_json.py msgid "marshmallow buff" @@ -112381,6 +114478,7 @@ msgid "" "A muscular body made of marshmallow, proudly striding towards an unknown " "goal. Yummy!" msgstr "" +"Muskularne ciało z pianki, dumnie kroczące ku nieznanemu celowi. Mniam!" #: lang/json/MONSTER_from_json.py msgid "marshmallow goliath" @@ -112396,6 +114494,8 @@ msgid "" "A gigantic marshmallow humanoid softly stomping around. Its frozen smile " "and big empty eyes are carefully scanning its surroundings." msgstr "" +"Gigantyczny piankowy humanoid miękko tupie dookoła. Jego zastygły uśmiech i " +"wielkie puste oczy obserwują skanują otoczenie." #: lang/json/MONSTER_from_json.py msgid "marshmallow squire" @@ -112411,6 +114511,9 @@ msgid "" "A small humanoid made of marshmallow. Its chocolate-coated cracker armor " "shines dully as it bumbles around on its stubby marshmallow legs. How cute!" msgstr "" +"Mały humanoid zrobiony z pianek cukrowych. Jego pokryta czekoladą zbroja z " +"krakersów błyszczy się słabo, gdy pomyka na swoich szczupłych nóżkach. Jakie" +" to słodkie!" #: lang/json/MONSTER_from_json.py msgid "marshmallow knight" @@ -112427,6 +114530,9 @@ msgid "" "crackers. It bumbles around as if looking around for something. It's oddly" " adorable in a majestic sort of way." msgstr "" +"Humanoid z pianki cukrowej ubrany w rycerską zbroję wykonaną z oblanych " +"czekoladą krakersów. Kręci się dookoła, jakby czegoś szukał. Jest dziwnie " +"uroczy w majestatyczny sposób." #: lang/json/MONSTER_from_json.py msgid "marshmallow champion" @@ -112442,6 +114548,8 @@ msgid "" "Standing tall in its shining armor of chocolate-coated crackers, this " "marshmallow proudly strides towards an unknown goal." msgstr "" +"Stojąc wysoko w swojej lśniącej zbroi z oblanych czekoladą krakersów, ten " +"piankowy stwór dumnie kroczy ku nieznanemu celowi." #: lang/json/MONSTER_from_json.py msgid "marshmallow war lord" @@ -112458,6 +114566,9 @@ msgid "" " Its frozen smile is barely visible from under its heavy helmet as it scans" " its surroundings." msgstr "" +"Gigantyczny humanoid opancerzony grubymi płytami pokrytych czekoladą " +"krakersów. Jego zastygły uśmiech jest ledwo widoczny spod ciężkiego hełmu, " +"gdy obserwuje otoczenie." #: lang/json/MONSTER_from_json.py msgid "gummy cub" @@ -112470,7 +114581,7 @@ msgstr[3] "" #. ~ Description for gummy cub #: lang/json/MONSTER_from_json.py msgid "An achingly adorable bear cub made of sugary gummy goodness." -msgstr "" +msgstr "Rozkosznie uroczy niedźwiadek wykonany z słodkiej gumowej dobroci." #: lang/json/MONSTER_from_json.py msgid "gummy bear" @@ -112486,6 +114597,9 @@ msgid "" "A large bear made of flavored sugary gelatin. Its smooth, round shape and " "fruity smell make it somehow less scary than its fleshy counterpart." msgstr "" +"Duży miś wykonany z aromatyzowanej, cukrowej żelatyny. Jego gładki, okrągły " +"kształt i owocowy zapach sprawiają, że jest jakoś mniej przerażający niż " +"jego mięsny odpowiednik." #: lang/json/MONSTER_from_json.py msgid "gummy gator" @@ -112501,6 +114615,8 @@ msgid "" "Slowly moving through the chocolate like a gummy log along the surface. You" " notice it's eye's following your movement as you approach." msgstr "" +"Powoli porusza się w czekoladzie jak gumowa kłoda po powierzchni. Zauważasz," +" że jego oczy śledzą twój ruch, gdy się zbliżasz." #: lang/json/MONSTER_from_json.py msgid "cracker kid" @@ -112513,12 +114629,12 @@ msgstr[3] "" #. ~ Description for cracker kid #: lang/json/MONSTER_from_json.py msgid "A small cracker kid running around on its cracker legs." -msgstr "" +msgstr "Małe krakersowe dziecko biegające na swoich krakersowych nóżkach." #. ~ Description for cracker #: lang/json/MONSTER_from_json.py msgid "A full grown cracker running around on its cracker legs." -msgstr "" +msgstr "Pełnoletni krakers biegający na swoich krakersowych nogach." #: lang/json/MONSTER_from_json.py msgid "animal cracker largemouth bass" @@ -112528,17 +114644,20 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " "food." msgstr "" +"Zwierzęcy krakers z gatunku bassów wielkogębowych. Wyskakuje z wody w pogoni" +" za pożywieniem." #. ~ Description for cookie #: lang/json/MONSTER_from_json.py msgid "A small cookie, scurrying around in search for crumbs to eat." msgstr "" +"Małe ciasteczko, buszujące po okolicy w poszukiwaniu okruszków do zjedzenia." #: lang/json/MONSTER_from_json.py msgid "cookie hydra" @@ -112554,6 +114673,8 @@ msgstr[3] "" msgid "" "A giant cookie dragon with multiple heads. It prowls looking for food." msgstr "" +"Gigantyczny ciasteczkowy smok z wieloma głowami. Grasuje w poszukiwaniu " +"pożywienia." #: lang/json/MONSTER_from_json.py msgid "cookie hydra spawn" @@ -112577,6 +114698,8 @@ msgid "" "A giant piece of gum stretched in the shape of a spider. You'd best not get" " gummed up in its web, literally." msgstr "" +"Olbrzymi kawałek żelka rozciągnięty w kształcie pająka. Lepiej nie przykleić" +" się do jego sieci, dosłownie." #: lang/json/MONSTER_from_json.py msgid "caffeinated gum spider" @@ -112592,6 +114715,8 @@ msgid "" "A giant piece of gum stretched in the shape of a spider. It jitters and " "darts about rapidly as if it had too much energy to stand still." msgstr "" +"Olbrzymi kawałek gumy rozciągnięty w kształcie pająka. Drga i skacze " +"gwałtownie, jakby miał zbyt dużo energii, by stać w miejscu." #: lang/json/MONSTER_from_json.py msgid "chocolate calf" @@ -112609,6 +114734,9 @@ msgid "" "and the males can have a violent streak to accompany their nasty-looking " "horns. This one looks to be made entirely of chocolate." msgstr "" +"Krowa domowa, groźne, przeżuwające zwierzę hodowlane. Jest dość muskularna, " +"a samce mogą mieć gwałtowne usposobienie, które towarzyszy ich paskudnie " +"wyglądającym rogom. Ta wygląda jakby była zrobiona w całości z czekolady." #: lang/json/MONSTER_from_json.py msgid "chocolate cow" @@ -112621,24 +114749,25 @@ msgstr[3] "" #: lang/json/MONSTER_from_json.py msgid "licorice snake" msgid_plural "licorice snakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "lukrecjowy wąż" +msgstr[1] "lukrecjowe węże" +msgstr[2] "lukrecjowych węży" +msgstr[3] "lukrecjowego wąża" #. ~ Description for licorice snake #: lang/json/MONSTER_from_json.py msgid "" "A Snake whose body is made out of Licorice, at least it's the red type." msgstr "" +"Wąż, którego ciało jest zrobione z lukrecji, przynajmniej tej czerwonej." #: lang/json/MONSTER_from_json.py msgid "Licorice Snake Hatchling" msgid_plural "Licorice Snake Hatchlings" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "młode lukrecjowego węża" +msgstr[1] "młode lukrecjowego węża" +msgstr[2] "młodych lukrecjowego węża" +msgstr[3] "młodego lukrecjowego węża" #. ~ Description for Licorice Snake Hatchling #: lang/json/MONSTER_from_json.py @@ -112646,6 +114775,8 @@ msgid "" "A baby snake made entirely out of licorice, possibly the children of the " "larger Licorice Snakes." msgstr "" +"Mały wąż wykonany w całości z lukrecji, prawdopodobnie potomstwo większych " +"węży lukrecjowych." #: lang/json/MONSTER_from_json.py msgid "W11B10" @@ -112680,6 +114811,9 @@ msgid "" "of one-to-one auxiliaries designed to seamlessly integrate with more " "traditional forces." msgstr "" +"Wraitheon (11B) Snajper 20 Poziomu. Jeden z serii wojsk pomocniczych jeden " +"do jednego produkcji Wraitheon, opracowany do płynnego zintegrowania z " +"bardziej tradycyjnymi siłami zbrojnymi." #: lang/json/MONSTER_from_json.py msgid "W12B10" @@ -112753,6 +114887,10 @@ msgid "" "of the art revolving laser cannon system with three barrels that charge from" " high-capacity batteries embedded in its hull." msgstr "" +"Wieżyczka TX-5LP Cerber to ulepszona wersja swojej poprzedniczki. " +"Zaopatrzona w najwyższej klasy trójlufowy system obrotowych działek " +"laserowych zasilanych z akumulatorów wysokiej pojemności wbudowanych w jej " +"szkielet." #: lang/json/MONSTER_from_json.py msgid "turret" @@ -112771,6 +114909,12 @@ msgid "" "its magazine is empty and the fire control system is only designed for semi " "automatic fire." msgstr "" +"General Atomics TX-1 Guardian, mała, zautomatyzowana wieżyczka strzelnicza w" +" kształcie pigułki, wykorzystująca najnowocześniejsze systemy automatycznego" +" kierowania ogniem do dynamicznej reorientacji na nowych przyjaciół i " +"wrogów. Nie ma mechanizmu przeładowywania broni, gdy jej magazynek jest " +"pusty, a system kontroli ognia jest przystosowany tylko do ognia " +"półautomatycznego." #: lang/json/MONSTER_from_json.py msgid "antimateriel turret" @@ -112808,6 +114952,9 @@ msgid "" "Leadworks LLC's T-4A1 Sentry. It features improved firmware over General " "Atomics' TX-1 9x19mm model and an automated 5.56mm carbine." msgstr "" +"Wieżyczka firmy Leadworks Sp z o.o. T-4A1 Strażnik. Posiada ulepszone " +"oprogramowanie wewnętrzne względem modelu General Atomics TX-1 9x19mm oraz " +"zautomatyzowany karabinek 5.56 mm." #. ~ Description for tripod #: lang/json/MONSTER_from_json.py @@ -112834,8 +114981,8 @@ msgid "" "anti-tank missile launcher, 40mm grenade launcher, and numerous anti-" "infantry weapons, it's designed for high-risk urban fighting." msgstr "" -"The Northrup Beagle to bezzałogowy pojazd naziemny (UGV) wielkości lodówki " -"do walk w terenie zurbanizowanym. Uzbrojony w wyrzutnię przeciwczołgowych " +"Beagle Northrop to bezzałogowy pojazd naziemny (UGV) wielkości lodówki do " +"walk w terenie zurbanizowanym. Uzbrojony w wyrzutnię przeciwczołgowych " "rakiet, granatnik 40 mm i liczną broń przeciwpiechotną. Opracowany do walk " "wysokiego ryzyka w terenie zabudowanym." @@ -112856,7 +115003,7 @@ msgid "" "against attackers, it is an effective automated sentry, though production " "was limited due to a legal dispute." msgstr "" -"Northrup ATSV, masywny, silnie uzbrojony i opancerzony robot kroczący na " +"ATSV Northrop, masywny, silnie uzbrojony i opancerzony robot kroczący na " "nogach z wstecznie skierowanymi stawami kolanowymi. Uzbrojony w 40 mm " "wyrzutnię granatów przeciw pojazdom, karabin 5,56 mm przeciw piechocie, oraz" " posiadający zdolność zelektryfikowania się przeciwko atakującym. Jest " @@ -112878,8 +115025,11 @@ msgid "" "robots. Initially designed for military patrol and escort service, it rolls" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" +"Watchman X-1 Northrop to fabryczna seria ciężko opancerzonego robota " +"bojowego. Pierwotnie przeznaczona do służby wojskowej jako patrol i eskorta." +" Toczy się na zestawie hydraulicznych gąsienic i jest uzbrojony w M16A4." -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -112908,6 +115058,9 @@ msgid "" " through some unknown agency. Its unearthly presence filling you with dread" " at the prospect of falling under its baleful gaze." msgstr "" +"Ogromna bezcielesna gałka oczna wielkości człowieka, latająca w powietrzu za" +" sprawą jakiejś nieznanej siły sprawczej. Jej nieziemska obecność napawa cię" +" lękiem na myśl o tym, że możesz trafić pod jej złowrogie spojrzenie." #: lang/json/MONSTER_from_json.py msgid "giant scorpion" @@ -112923,6 +115076,8 @@ msgid "" "A menacing arachnid with a second set of pedipalps, clacking rabidly as an " "engorged stinger looms over its body." msgstr "" +"Groźny pajęczak z drugim zestawem nogogłaszczek, który kląska wściekle, " +"podczas gdy nad jego ciałem unosi się nabrzmiałe żądło." #: lang/json/MONSTER_from_json.py msgid "bush elephant" @@ -112939,6 +115094,8 @@ msgid "" "tusks protruding from its mouth. Elephantry is on the rise since the " "Cataclysm." msgstr "" +"Afrykański słoń to masywne zwierzę lądowe z dwoma długimi kłami wystającymi " +"z pyska. Od czasu Kataklizmu słoniowatych jest coraz więcej." #: lang/json/MONSTER_from_json.py msgid "hook kangaroo" @@ -112955,6 +115112,9 @@ msgid "" "orifices. The most unnerving is its forearms have reformed into a raptorial" " shape, like that of a praying mantis." msgstr "" +"Groteskowe i zdeformowane ciało kangura, z którego otworów wycieka czarna " +"maź. Najbardziej niepokojące jest to, że jego przedramiona zmieniły się w " +"drapieżny kształt, jak u modliszki." #: lang/json/MONSTER_from_json.py msgid "fungal elephant" @@ -112970,6 +115130,8 @@ msgid "" "A horrifying image with tendrils seeping out of many oozing wounds, this " "elephant's form appears more eldritch than animal." msgstr "" +"Przerażający obraz z wiciami wychodzącymi z wielu sączących się ran, postać " +"tego słonia wydaje się bardziej przedpotopowa niż zwierzęca." #: lang/json/MONSTER_from_json.py msgid "zandcrawler" @@ -112985,6 +115147,8 @@ msgid "" "A calloused and misshapened form that seems to have adapted to the harsh, " "dry environment." msgstr "" +"Zesztywniała i zniekształcona forma, która najwyraźniej przystosowała się do" +" surowego, suchego środowiska." #: lang/json/MONSTER_from_json.py msgid "Gila monster" @@ -113000,6 +115164,8 @@ msgid "" "A reptile with aposematic coloration of black and orange that is renowned " "for an extremely painful venom when it bites." msgstr "" +"Gad o ostrzegawczym czarno-pomarańczowym ubarwieniu, który słynie z " +"niezwykle bolesnego jadu po ukąszeniu." #: lang/json/PET_ARMOR_from_json.py msgid "Kevlar dog harness" @@ -113016,6 +115182,9 @@ msgid "" " local law enforcement, that protects from shoulders to abdomen. You could " "put this on a friendly dog." msgstr "" +"Niebieska uprząż kuloodporna, przeznaczona do noszenia przez psy w służbie " +"lokalnych służb porządkowych, chroniąca od łopatek do brzucha. Można ją " +"założyć zaprzyjaźnionemu psu." #: lang/json/PET_ARMOR_from_json.py msgid "biosilicified chitin dog mesh harness" @@ -113032,6 +115201,9 @@ msgid "" " the neck to flank of canines. You could put this on a friendly dog. Acid-" "resistant but brittle" msgstr "" +"Prowizoryczna uprząż z biokrzemionkowej chityny mocowana do cienkiej siatki " +"chroniącej szyję i boki psów. Można ją założyć zaprzyjaźnionemu psu. Odporna" +" na kwasy, ale krucha." #: lang/json/PET_ARMOR_from_json.py msgid "chitin dog mesh harness" @@ -113047,6 +115219,8 @@ msgid "" "A makeshift harness of chitin fitted to a thin mesh protecting the neck to " "flank of canines. You could put this on a friendly dog." msgstr "" +"Prowizoryczna uprząż z chityny przymocowana do cienkiej siatki chroniącej " +"szyję i boki psów. Można ją założyć zaprzyjaźnionemu psu." #: lang/json/PET_ARMOR_from_json.py msgid "chainmail dog coat" @@ -113061,6 +115235,7 @@ msgstr[3] "" msgid "" "Protecteth yon hund fram ful daemons! You could put this on a friendly dog." msgstr "" +"Niechaj cię strzeże przed demonami! Możesz to założyć przyjacielskiemu psu." #: lang/json/PET_ARMOR_from_json.py msgid "leather dog harness" @@ -113076,6 +115251,8 @@ msgid "" "A neck to hip harness made from leather that can be attached to a canine for" " protection. You could put this on a friendly dog." msgstr "" +"Skórzana uprząż od szyi do bioder, którą można założyć psu dla ochrony. " +"Można ją założyć zaprzyjaźnionemu psu." #: lang/json/PET_ARMOR_from_json.py msgid "leather dog harness with bones" @@ -113092,6 +115269,9 @@ msgid "" "apocalyptic style, even with a skull bone headpiece! You could put this on " "a friendly dog." msgstr "" +"Ozdobne kości przymocowane do skórzanej uprzęży dla psa w prawdziwym " +"postapokaliptycznym stylu, nawet z czaszkowym nakryciem głowy! Możesz to " +"założyć przyjacielskiemu psu." #: lang/json/PET_ARMOR_from_json.py msgid "rubber dog rainsuit" @@ -113107,6 +115287,8 @@ msgid "" "A thin plastic covering adapted for dogs to protect from acid rain and other" " caustic sources. You could put this on a friendly dog." msgstr "" +"Cienka plastikowa osłona przystosowana dla psów, chroniąca przed kwaśnymi " +"deszczami i innymi żrącymi źródłami. Można to założyć zaprzyjaźnionemu psu." #: lang/json/PET_ARMOR_from_json.py msgid "superalloy tactical dog outfit" @@ -113123,6 +115305,9 @@ msgid "" "working dogs that covers from the dewlap to the croup, down to the elbows. " "You could put this on a friendly dog." msgstr "" +"Cienka siatka przeplatana płytkami z superstopu i sakiewkami dla psów " +"pracujących w wojsku, okrywająca od kłębu do zadu, aż po łokcie. Można to " +"założyć przyjaznemu psu." #: lang/json/PET_ARMOR_from_json.py msgid "horse armor" @@ -113147,6 +115332,9 @@ msgid "" "originally used as protection in bullfighting. You could put this on a " "friendly horse." msgstr "" +"Ciężka, przypominająca materac zbroja z tkaniny, skóry i grubych podszewek z" +" Kevlaru, pierwotnie używana jako ochrona w walkach byków. Można to założyć " +"na przyjaznego konia." #: lang/json/PET_ARMOR_from_json.py msgid "biosilicified chitin horse armor" @@ -113163,6 +115351,9 @@ msgid "" "biosilicified chitin fitted to a thin mesh. You could put this on a " "friendly horse. Acid-resistant but brittle." msgstr "" +"Prowizoryczne połączenie kryz, napierśnika i krupierki wykonane z " +"biokrzemowej chityny przymocowanej do cienkiej siatki. Można to założyć na " +"zaprzyjaźnionego konia. Odporna na kwasy, ale krucha." #: lang/json/PET_ARMOR_from_json.py msgid "chitin horse armor" @@ -113178,6 +115369,9 @@ msgid "" "A makeshift assembly of criniere, peytral and croupiere made from chitin " "fitted to a thin mesh. You could put this on a friendly horse." msgstr "" +"Prowizoryczne połączenie kryz, napierśnika i krupierki wykonane z chityny " +"przymocowanej do cienkiej siatki. Można to założyć na zaprzyjaźnionego " +"konia." #: lang/json/PET_ARMOR_from_json.py msgid "chainmail horse armor" @@ -113193,6 +115387,8 @@ msgid "" "A heavy covering of chainmail, suitably made for horses as protection. You " "could put this on a friendly horse." msgstr "" +"Ciężkie okrycie z kolczugi, odpowiednio wykonane dla koni jako ochrona. " +"Można to założyć na przyjaznego konia." #: lang/json/PET_ARMOR_from_json.py msgid "boiled leather horse barding with caprison" @@ -113209,6 +115405,9 @@ msgid "" "undercovering. This caparison is depicting a battle between a monstrous " "dragon and regal griffin. You could put this on a friendly horse." msgstr "" +"Pełna zbroja dla koni składająca się z gotowanej skóry i płóciennego " +"podszycia. Przedstawia walkę pomiędzy potwornym smokiem a królewskim gryfem." +" Można ją założyć na przyjaznego konia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113216,6 +115415,9 @@ msgid "" "undercovering. This caparison is depicting a red dragon breathing fire on " "cities. You could put this on a friendly horse." msgstr "" +"Pełna zbroja dla koni składająca się z gotowanej skóry i płóciennego " +"podszycia. Przedstawia czerwonego smoka ziejącego ogniem na miasta. Możesz " +"to założyć na przyjaznego konia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113224,6 +115426,10 @@ msgid "" "forelegs outstretched in a menacing manner. You could put this on a " "friendly horse." msgstr "" +"Pełna zbroja dla koni składająca się z gotowanej skóry i płóciennego " +"podszycia. Przedstawia niedźwiedzia stojącego na tylnych łapach i " +"wyciągniętych w groźny sposób przednich łapach. Można to założyć na " +"przyjaznego konia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113232,6 +115438,9 @@ msgid "" "vegetables with a very large orange featured in the foreground. You could " "put this on a friendly horse." msgstr "" +"Pełna zbroja dla koni wykonana z gotowanej skóry i płóciennego podszycia. Na" +" popręgu przedstawiony jest asortyment owoców i warzyw z bardzo dużą " +"pomarańczą na pierwszym planie. Można ją założyć na przyjaznego konia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113239,6 +115448,9 @@ msgid "" "undercovering. This caparison is depicting a massive vulture perched on a " "mountain. You could put this on a friendly horse." msgstr "" +"Pełna zbroja dla koni składająca się z gotowanej skóry i płóciennego " +"podszycia. Czaprak przedstawia masywnego sępa siedzącego na szczycie góry. " +"Można ją założyć na przyjaznego konia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113246,6 +115458,9 @@ msgid "" "undercovering. This caparison is depicting the mythical Erymanthian boar in" " various artistic forms. You could put this on a friendly horse." msgstr "" +"Pełna zbroja dla koni wykonana z gotowanej skóry i płóciennego podszycia. " +"Przedstawia ona mitycznego dzika erymantyjskiego w różnych formach " +"artystycznych. Można ją założyć na zaprzyjaźnionego konia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113254,6 +115469,10 @@ msgid "" "with a tag line of \"From down under to your home, we play all the roles " "from start to finish!\". You could put this on a friendly horse." msgstr "" +"Pełna zbroja dla koni wykonana z gotowanej skóry i płóciennego podszycia. " +"Czaprak wydaje się być sponsorowany przez Rycon Construction, z metką \" Od " +"dołu do twojego domu, odgrywamy wszystkie role od początku do końca!\". " +"Można by ją założyć na przyjaznego konia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113263,6 +115482,11 @@ msgid "" "design, we have the magic touch for your problems!\". You could put this on" " a friendly horse." msgstr "" +"Pełna zbroja dla koni wykonana z gotowanej skóry i materiałowego podszycia. " +"Czaprak wydaje się być sponsorowany przez Core Generator Tech, z hasłem " +"\"Dostarczamy rozwiązania energetyczne od kulinariów po projektowanie " +"graficzne, rozwiązujemy twoje problemy magicznym dotykiem!\". Można by to " +"założyć na przyjaznego konia." #: lang/json/PET_ARMOR_from_json.py msgid "boiled leather horse barding with bones" @@ -113278,6 +115502,8 @@ msgid "" "Decorative bones affixed to leather horse barding to invoke fear in bandits " "and raiders and traders all! You could put this on a friendly horse." msgstr "" +"Ozdobne kości przymocowane do skórzanej zbroi dla koni, aby wywołać strach u" +" bandytów, łajdaków i handlarzy! Możesz to umieścić na przyjaznym koniu." #: lang/json/PET_ARMOR_from_json.py msgid "horse rain sheet" @@ -113293,6 +115519,8 @@ msgid "" "A thin plastic covering adapted for horses to protect from acid rain and " "other caustic sources. You could put this on a friendly horse." msgstr "" +"Cienka plastikowa osłona przystosowana dla koni do ochrony przed kwaśnymi " +"deszczami i innymi żrącymi źródłami. Można to założyć przyjaznemu koniowi." #: lang/json/PET_ARMOR_from_json.py msgid "elephant armor" @@ -113317,6 +115545,9 @@ msgid "" "originally used as horse protection for bullfighting. You could put this on" " a friendly elephant." msgstr "" +"Ciężka, przypominająca materac zbroja z tkaniny, skóry i grubej podszewki z " +"kevlaru, pierwotnie używana jako ochrona konia podczas walk z bykami. Można " +"to założyć na przyjaznego słonia." #: lang/json/PET_ARMOR_from_json.py msgid "biosilicified chitin elephant armor" @@ -113333,6 +115564,9 @@ msgid "" "biosilicified chitin fitted to a thin mesh. You could put this on a " "friendly elephant." msgstr "" +"Prowizoryczne połączenie kryz, napierśnika i krupierki wykonane z " +"biokrzemowej chityny przymocowanej do cienkiej siatki. Można to założyć na " +"zaprzyjaźnionego słonia." #: lang/json/PET_ARMOR_from_json.py msgid "chitin elephant armor" @@ -113348,6 +115582,9 @@ msgid "" "A makeshift assembly of criniere, peytral, and croupiere made from chitin " "fitted to a thin mesh. You could put this on a friendly elephant." msgstr "" +"Prowizoryczne połączenie kryz, napierśnika i krupierki wykonane z chityny " +"przymocowanej do cienkiej siatki. Można to założyć na zaprzyjaźnionego " +"słonia." #: lang/json/PET_ARMOR_from_json.py msgid "chainmail elephant armor" @@ -113363,6 +115600,8 @@ msgid "" "A heavy covering of chainmail, suitably made for elephants as protection. " "You could put this on a friendly elephant." msgstr "" +"Ciężkie okrycie z kolczugi, odpowiednio wykonane dla słoni jako ochrona. " +"Można to założyć na przyjaznego słonia." #: lang/json/PET_ARMOR_from_json.py msgid "boiled leather elephant barding with caparison" @@ -113380,6 +115619,10 @@ msgid "" " regal warrior astride an elephant and wielding an elaborate vajra. You " "could put this on a friendly elephant." msgstr "" +"Pełna zbroja dla słoni, składająca się z gotowanej skóry i tkaniny pod " +"spodem. Przedstawia walkę pomiędzy potwornym demonem a królewskim " +"wojownikiem na słoniu, władającym misterną vajrą. Można to założyć na " +"przyjaznego słonia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113388,6 +115631,10 @@ msgid "" "bearing different items with one large uncovered breast on the left side. " "You could put this on a friendly elephant." msgstr "" +"Pełna zbroja dla słoni, składająca się z gotowanej skóry i tkaniny pod " +"spodem. Przedstawia istotę, boginię? z wieloma ramionami, na których " +"znajdują się różne przedmioty, z jedną dużą odsłoniętą piersią po lewej " +"stronie. Można to założyć na przyjaznego słonia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113395,6 +115642,9 @@ msgid "" "underneath. This caparison depicts several charging elephants trampling " "enemy soldiers. You could put this on a friendly elephant." msgstr "" +"Pełna zbroja dla słoni, składająca się z gotowanej skóry i tkaniny pod " +"spodem. Przedstawia kilka szarżujących słoni tratujących wrogich żołnierzy. " +"Można to założyć na przyjaznego słonia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113402,6 +115652,9 @@ msgid "" "underneath. This caparison depicts an assortment of diamonds and gems. You" " could put this on a friendly elephant." msgstr "" +"Pełna zbroja dla słoni, składająca się z gotowanej skóry i tkaniny pod " +"spodem. Na tym czapraku przedstawiony jest asortyment diamentów i klejnotów." +" Można to założyć na przyjaznego słonia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113410,6 +115663,10 @@ msgid "" "uncovered belly, riding in an elaborate chariot. You could put this on a " "friendly elephant." msgstr "" +"Pełna zbroja dla słoni, składająca się z gotowanej skóry i tkaniny pod " +"spodem. Przedstawia mężczyznę w bogatych szatach i z pełnym odsłoniętym " +"brzuchem, jadącego na wyszukanym rydwanie. Można to założyć na przyjaznego " +"słonia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113418,6 +115675,10 @@ msgid "" " of various bright colors performing a dance. You could put this on a " "friendly elephant." msgstr "" +"Pełna zbroja dla słoni, składająca się z gotowanej skóry z materiałem pod " +"spodem. Przedstawia on kilku identycznie uśmiechniętych mężczyzn w turbanach" +" o różnych jaskrawych kolorach, wykonujących taniec. Można to założyć na " +"przyjaznego słonia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113426,6 +115687,9 @@ msgid "" " out the side of a 1970s-era van. You could put this on a friendly " "elephant." msgstr "" +"Pełna zbroja dla słoni, składająca się z gotowanej skóry i materiału pod " +"spodem. Czaprak przedstawia wściekłego, trójrogiego dinozaura wyrywającego " +"się z boku furgonetki z lat 70-tych. Można to założyć na przyjaznego słonia." #: lang/json/PET_ARMOR_from_json.py msgid "boiled leather elephant barding with bones" @@ -113442,6 +115706,9 @@ msgid "" " in bandits and raiders and traders all! You could put this on a friendly " "elephant." msgstr "" +"Skórzana zbroja słonia z przyczepionymi ozdobnymi kośćmi, mająca wywoływać " +"strach u bandytów, rabusiów i handlarzy! Możesz to założyć na przyjaznego " +"słonia." #: lang/json/PET_ARMOR_from_json.py msgid "elephant rain sheet" @@ -113458,6 +115725,9 @@ msgid "" "splashes and similar caustic substances. You could put this on a friendly " "elephant." msgstr "" +"Cienka plastikowa osłona, przystosowana do ochrony słonia przed rozpryskami " +"kwasów zombie i podobnych żrących substancji. Można to założyć na " +"przyjaznego słonia." #: lang/json/PET_ARMOR_from_json.py msgid "ostrich armor" @@ -113482,6 +115752,10 @@ msgid "" "originally used as horse protection for bullfighting, but adapted for the " "noblest of beasts. You could put this on a friendly ostrich." msgstr "" +"Ciężka, przypominająca materac zbroja z tkaniny, skóry i grubej podszewki z " +"kevlaru, pierwotnie używana jako ochrona konia do walki z bykami, ale " +"przystosowana do najszlachetniejszych bestii. Można to założyć na " +"przyjaznego strusia." #: lang/json/PET_ARMOR_from_json.py msgid "biosilicified chitin ostrich armor" @@ -113498,6 +115772,9 @@ msgid "" "biosilicified chitin fitted to a thin mesh. You could put this on a " "friendly ostrich." msgstr "" +"Prowizoryczne połączenie kryz, napierśnika i krupierki wykonane z " +"biokrzemowej chityny przymocowanej do cienkiej siatki. Można to założyć na " +"zaprzyjaźnionego strusia." #: lang/json/PET_ARMOR_from_json.py msgid "chitin ostrich armor" @@ -113513,6 +115790,9 @@ msgid "" "A makeshift assembly of criniere, peytral, and croupiere made from chitin " "fitted to a thin mesh. You could put this on a friendly ostrich." msgstr "" +"Prowizoryczne połączenie kryz, napierśnika i krupierki wykonane z chityny " +"przymocowanej do cienkiej siatki. Można to założyć na zaprzyjaźnionego " +"strusia." #: lang/json/PET_ARMOR_from_json.py msgid "chainmail ostrich armor" @@ -113529,6 +115809,10 @@ msgid "" "protection. You could put this on a friendly ostrich. This caparison " "depicts four men in heavy metal armor riddled with bullet marks." msgstr "" +"Ciężkie okrycie z kolczugi, dostosowane do dużych dwunożnych ptaków jako " +"ochrona. Można to założyć na przyjaznego strusia. Czaprak przedstawia " +"czterech mężczyzn w ciężkich metalowych zbrojach, pokrytych śladami po " +"kulach." #: lang/json/PET_ARMOR_from_json.py msgid "boiled leather ostrich barding with caparison" @@ -113545,6 +115829,10 @@ msgid "" "underneath. This caparison depicts four men in heavy metal armor riddled " "with bullet marks. You could put this on a friendly ostrich." msgstr "" +"Pełna zbroja dla strusi, składająca się z gotowanej skóry i tkaniny pod " +"spodem. Czaprak przedstawia czterech mężczyzn w ciężkich metalowych " +"zbrojach, pokrytych śladami po kulach. Możesz to założyć na przyjaznego " +"strusia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113553,6 +115841,9 @@ msgid "" "in profile above the word AUSTRALIA. You could put this on a friendly " "ostrich." msgstr "" +"Pełna zbroja dla strusi, składająca się z gotowanej skóry z materiałem pod " +"spodem. Czaprak przedstawia koronę unoszącą się nad opancerzonym czołgiem w " +"profilu nad napisem AUSTRALIA. Można to założyć na przyjaznego strusia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113561,6 +115852,10 @@ msgid "" "machine gunners and a field of wheat. You could put this on a friendly " "ostrich." msgstr "" +"Pełna zbroja dla strusi, składająca się z gotowanej skóry z materiałem pod " +"spodem. Na tym czapraku przedstawionych jest kilka szarżujących strusi " +"tratujących wrogich karabinierów i pole pszenicy. Możesz to założyć na " +"przyjaznego strusia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113569,6 +115864,9 @@ msgid "" "feathers and fields with many ostriches. You could put this on a friendly " "ostrich." msgstr "" +"Pełna zbroja dla strusi, składająca się z gotowanej skóry i tkaniny pod " +"spodem. Przedstawia mężczyznę w koronie ze strusich piór i pola z wieloma " +"strusiami. Można to założyć na zaprzyjaźnionego strusia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113577,6 +115875,10 @@ msgid "" "with white ostrich feathers flaring dramatically from her pouf hairstyle. " "You could put this on a friendly ostrich." msgstr "" +"Pełna zbroja dla strusi, składająca się z gotowanej skóry i tkaniny pod " +"spodem. Czaprak przedstawia kobietę w bogatych szatach z błękitnego " +"aksamitu, z białymi strusimi piórami wyrastającymi z jej fryzury. Można to " +"założyć na przyjaznego strusia." #: lang/json/PET_ARMOR_from_json.py msgid "" @@ -113584,6 +115886,9 @@ msgid "" "underneath. This caparison depicts a fierce tyrannosaurus rex bursting out " "the side of a 1970s-era van. You could put this on a friendly ostrich." msgstr "" +"Pełna zbroja dla strusi, składająca się z gotowanej skóry i materiału pod " +"spodem. Czaprak przedstawia wściekłego tyranozaura wyrywającego się z boku " +"furgonetki z lat 70-tych. Możesz to założyć na przyjaznego strusia." #: lang/json/PET_ARMOR_from_json.py msgid "boiled leather ostrich barding with bones" @@ -113600,6 +115905,9 @@ msgid "" "in bandits and raiders and traders all! You could put this on a friendly " "ostrich." msgstr "" +"Skórzany pancerz strusia z przyczepionymi ozdobnymi kośćmi, mający wywoływać" +" strach u bandytów, łajdaków i handlarzy! Możesz to założyć na " +"zaprzyjaźnionego strusia." #: lang/json/PET_ARMOR_from_json.py msgid "ostrich rain sheet" @@ -113616,6 +115924,9 @@ msgid "" "splashes and similar caustic substances. You could put this on a friendly " "ostrich." msgstr "" +"Cienka plastikowa osłona, przystosowana do ochrony strusia przed rozpryskami" +" kwasów zombie i podobnych żrących substancji. Można to założyć na " +"zaprzyjaźnionego strusia." #: lang/json/PET_ARMOR_from_json.py msgid "demon chitin dog mesh harness" @@ -113631,6 +115942,8 @@ 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 "" +"Prowizoryczna uprząż z demonicznej chityny przymocowana do cienkiej siatki " +"chroniącej szyję i boki psów. Można to założyć przyjacielskiemu psu." #: lang/json/PET_ARMOR_from_json.py msgid "demon chitin horse armor" @@ -113646,6 +115959,9 @@ 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 "" +"Prowizoryczne połączenie kryz, napierśnika i krupierki wykonane z " +"demonicznej chityny przymocowanej do cienkiej siatki. Można to założyć na " +"zaprzyjaźnionego konia." #: lang/json/SPECIES_from_json.py msgid "a mammal" @@ -115128,7 +117444,7 @@ msgstr "Szlamowy spray" #. ~ Description for Slime Spray #: lang/json/SPELL_from_json.py msgid "Spray slime onto an enemy to slow them down." -msgstr "" +msgstr "Rozpyl szlam na przeciwnika, aby go spowolnić." #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Bioluminescent Flare" @@ -115138,11 +117454,11 @@ msgstr "Flara bioluminescencyjna" #: lang/json/SPELL_from_json.py msgid "" "Projects a spray of bioluminescent goo that illuminates the area around it." -msgstr "" +msgstr "Rozpyla bioluminescencyjny szlam, który oświetla obszar wokół niego." #: lang/json/SPELL_from_json.py msgid "Short Leap" -msgstr "" +msgstr "Krótki Skok" #. ~ Description for Short Leap #: lang/json/SPELL_from_json.py @@ -115150,6 +117466,8 @@ msgid "" "You squat down, build up tension in your legs and release. Launching " "yourself quite a distance." msgstr "" +"Przykucasz, budujesz napięcie w nogach i puszczasz. Wystrzeliwujesz się na " +"sporą odległość." #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Crushing Leap" @@ -115162,6 +117480,9 @@ msgid "" "ability to target and land in the way to do maximum damage to any target in " "your way. Death from above." msgstr "" +"Kucasz, budujesz napięcie w nogach i puszczasz. Masz możliwość wycelowania i" +" wylądowania w taki sposób, aby zadać maksymalne obrażenia każdemu celowi na" +" swojej drodze. Śmierć z wysoka." #: lang/json/SPELL_from_json.py msgid "Cranial Explosion" @@ -115377,12 +117698,12 @@ msgstr "atak, który oślepia cel na kilka tur" #: lang/json/SPELL_from_json.py msgid "Spawn ALRP" -msgstr "" +msgstr "Spawnuj ALRP" #. ~ Description for Spawn ALRP #: lang/json/SPELL_from_json.py msgid "Summons a squad of 3-4 skirmishers." -msgstr "" +msgstr "Przywołuje oddział 3-4 harcowników." #: lang/json/SPELL_from_json.py msgid "Ki Strike Meditations" @@ -115551,11 +117872,11 @@ msgstr "Paralityczna Strzałka" #: lang/json/SPELL_from_json.py msgid "Visceral Projection" -msgstr "" +msgstr "Dogłębna Projekcja" #: lang/json/SPELL_from_json.py msgid "Visceral Paralysis" -msgstr "" +msgstr "Dogłębny Paraliż" #. ~ Description for Visceral Paralysis #: lang/json/SPELL_from_json.py @@ -115564,7 +117885,7 @@ msgstr "Paralityczny efekt uboczny Projekcji." #: lang/json/SPELL_from_json.py msgid "Visceral Backlash" -msgstr "" +msgstr "Dogłębna Reakcja Zwrotna" #. ~ Description for Visceral Backlash #: lang/json/SPELL_from_json.py @@ -115577,7 +117898,7 @@ msgstr "Splot koagulantu" #: lang/json/SPELL_from_json.py msgid "Caustic Feedback" -msgstr "" +msgstr "Kaustyczne Sprzężenie" #. ~ Description for Caustic Feedback #: lang/json/SPELL_from_json.py @@ -115644,12 +117965,12 @@ msgstr "" #: lang/json/SPELL_from_json.py msgid "Black Dragon Shell Retaliation" -msgstr "" +msgstr "Zemsta Skorupy Czarnego Smoka" #. ~ Description for Black Dragon Shell Retaliation #: lang/json/SPELL_from_json.py msgid "Acid burst that punishes attackers." -msgstr "" +msgstr "Kwasowy rozbryzg, który daje popalić atakującym." #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Dragon Terror" @@ -115662,6 +117983,9 @@ msgid "" " fear into those who stand before you, slowing their escape from your " "terror." msgstr "" +"Z przeszywającym uszy rykiem emanujesz wewnętrzną mocą smoków i wzbudzasz " +"strach w tych, którzy stoją przed tobą, spowalniając ich ucieczkę przed " +"twoją grozą." #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Dragon Boost" @@ -115671,29 +117995,31 @@ msgstr "Wzmocnienie smoka" #: lang/json/SPELL_from_json.py msgid "" "You let out a mighty roar as you infuse yourself with the power of Dragons." -msgstr "" +msgstr "Wydajesz potężny ryk, gdy wypełnia cię moc smoków!" #: lang/json/SPELL_from_json.py msgid "Health recovery" -msgstr "" +msgstr "Odnowa Zdrowia" #. ~ Description for Health recovery #: lang/json/SPELL_from_json.py msgid "minor health recovery spell associated with Dragon Boost." msgstr "" +"pomniejsze zaklęcie przywracające zdrowie związane ze Smoczym Wzmocnieniem." #: lang/json/SPELL_from_json.py msgid "Stamina recovery" -msgstr "" +msgstr "Odnowa Staminy" #. ~ Description for Stamina recovery #: lang/json/SPELL_from_json.py msgid "minor stamina recovery spell associated with Dragon Boost." msgstr "" +"pomniejsze zaklęcie przywracające staminę związane ze Smoczym Wzmocnieniem." #: lang/json/SPELL_from_json.py msgid "Dragon Acid Spit" -msgstr "" +msgstr "Kwasowa Plwocina Smoka" #. ~ Description for Dragon Acid Spit #: lang/json/SPELL_from_json.py @@ -115701,6 +118027,8 @@ msgid "" "You conjur up acidic spittle that you can shoot long distances as you close " "on your terrified prey." msgstr "" +"Wyczarowujesz kwaśną plwocinę, którą możesz wystrzelić na duże odległości, " +"gdy zbliżasz się do swojej przerażonej ofiary." #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Black Dragon Breath" @@ -115710,16 +118038,16 @@ msgstr "Oddech czarnego smoka" #. ~ Description for Black Dragons' Breath #: lang/json/SPELL_from_json.py msgid "Spews a line of acid from your mouth." -msgstr "" +msgstr "Wypluwa strugę kwasu z twoich ust." #: lang/json/SPELL_from_json.py msgid "Crystallize Mana" -msgstr "" +msgstr "Krystalizacja Many" #. ~ Description for Crystallize Mana #: lang/json/SPELL_from_json.py msgid "Crystallizes mana into solid form" -msgstr "" +msgstr "Krystalizuje manę do postaci stałej" #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Mana Fatigue" @@ -115728,7 +118056,7 @@ msgstr "Zmęczenie many" #. ~ Description for Mana Fatigue #: lang/json/SPELL_from_json.py msgid "Secondary effect of Crystallize Mana" -msgstr "" +msgstr "Wtórny efekt Krystalizacji Many" #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Dark Sight" @@ -115737,7 +118065,7 @@ msgstr "Mroczny wzrok" #. ~ Description for Dark Sight #: lang/json/SPELL_from_json.py msgid "Gives you the power to see in the dark" -msgstr "" +msgstr "Daje ci moc widzenia w ciemności" #. ~ Message for SPELL 'Dark Sight' #: lang/json/SPELL_from_json.py @@ -115745,10 +118073,12 @@ msgid "" "Your eyes glow green for a moment. Now your sight can pierce the darkest " "shadows." msgstr "" +"Twoje oczy przez chwilę świecą na zielono. Teraz twój wzrok może przebić się" +" przez najmroczniejsze ciemności." #: lang/json/SPELL_from_json.py msgid "Megablast" -msgstr "" +msgstr "Megawybuch" #: lang/json/SPELL_from_json.py msgid "Magical Light" @@ -115772,75 +118102,79 @@ msgid "" "A magical aura distorts light around your body, increasing the amount of " "attacks you might dodge in a given turn." msgstr "" +"Magiczna aura zniekształca światło wokół twojego ciała, zwiększając ilość " +"ataków, których możesz uniknąć w danej turze." #: lang/json/SPELL_from_json.py msgid "Aura of Protection" -msgstr "" +msgstr "Aura Ochrony" #: lang/json/SPELL_from_json.py msgid "Translocate Self" -msgstr "" +msgstr "Przemieść Siebie" #. ~ Description for Translocate Self #: lang/json/SPELL_from_json.py msgid "Translocates the user to an attuned gate." -msgstr "" +msgstr "Przenosi użytkownika do dostrojonej bramy." #: lang/json/SPELL_from_json.py msgid "Acid Resistance" -msgstr "" +msgstr "Odporność na Kwas" #. ~ Description for Acid Resistance #. ~ Description for Greater Acid Resistance #: lang/json/SPELL_from_json.py msgid "Protects the user from acid." -msgstr "" +msgstr "Chroni użytkownika przed kwasem." #: lang/json/SPELL_from_json.py msgid "Greater Acid Resistance" -msgstr "" +msgstr "Większa Odporność na Kwas" #: lang/json/SPELL_from_json.py msgid "Template Spell" -msgstr "" +msgstr "Wzorcowy Czar" #. ~ Description for Template Spell #: lang/json/SPELL_from_json.py msgid "This is a template to show off all the available values" -msgstr "" +msgstr "To jest szablon, aby pokazać wszystkie dostępne wartości" #. ~ Message for SPELL 'Template Spell' #: lang/json/SPELL_from_json.py #, python-format msgid "As you cast %s, your ears pops!" -msgstr "" +msgstr "Jak rzucasz %s, uszy ci pękają!" #: lang/json/SPELL_from_json.py msgid "debug push no aoe" -msgstr "" +msgstr "debugowane pchnięcie bez efektu obszarowego" #. ~ Description for debug push no aoe #: lang/json/SPELL_from_json.py msgid "pushes all types of objects with an aoe of 0" -msgstr "" +msgstr "odpycha wszelkie rodzaje obiektów z obszarowym działaniem równym 0" #: lang/json/SPELL_from_json.py msgid "debug push blast" -msgstr "" +msgstr "debugowane pchnięcie wybuchowe" #. ~ Description for debug push blast #: lang/json/SPELL_from_json.py msgid "pushes all types of objects with an aoe of 3 in a blast pattern" msgstr "" +"odpycha wszelkie rodzaje obiektów z obszarowym działaniem równym 3 w " +"obszarze wybuchu" #: lang/json/SPELL_from_json.py msgid "Spawn Debug Monsters" -msgstr "" +msgstr "Spawnuj Potwora Debugującego" #. ~ Description for Spawn Debug Monsters #: lang/json/SPELL_from_json.py msgid "Set level to number of monsters spawned." -msgstr "" +msgstr "Ustaw poziom na liczbę przywołanych potworów." #. ~ Message for SPELL 'Spawn Debug Monsters' #. ~ Message for SPELL 'Debug HP Spell' @@ -115852,85 +118186,87 @@ msgstr "" #: lang/json/SPELL_from_json.py #, python-format msgid "Debug spell %s cast." -msgstr "" +msgstr "Debugujący czar %s rzucony." #: lang/json/SPELL_from_json.py msgid "Debug Stamina Spell" -msgstr "" +msgstr "Czar Debugujący Staminę" #. ~ Description for Debug Stamina Spell #: lang/json/SPELL_from_json.py msgid "Uses a little stamina" -msgstr "" +msgstr "Zużywa trochę staminy" #. ~ Message for SPELL 'Debug Stamina Spell' #: lang/json/SPELL_from_json.py #, python-format msgid "Debug spell [ %s ] has no effect. Debug warning is expected." msgstr "" +"Zaklęcie debugujące [ %s ] nie ma efektu. Oczekiwane jest ostrzeżenie " +"debugowania." #: lang/json/SPELL_from_json.py msgid "Debug polymorph" -msgstr "" +msgstr "Debugowana polimorfia" #. ~ Description for Debug polymorph #: lang/json/SPELL_from_json.py msgid "Well you wanted to lose weight, right?" -msgstr "" +msgstr "Cóż, chciałeś schudnąć, prawda?" #: lang/json/SPELL_from_json.py msgid "Debug HP Spell" -msgstr "" +msgstr "Czar Debugujący HP" #. ~ Description for Debug HP Spell #: lang/json/SPELL_from_json.py msgid "Uses a little HP" -msgstr "" +msgstr "Zużywa trochę HP" #: lang/json/SPELL_from_json.py msgid "Debug Bionic Spell" -msgstr "" +msgstr "Czar Debugujący Bionikę" #. ~ Description for Debug Bionic Spell #: lang/json/SPELL_from_json.py msgid "Uses a little Bionic Power" -msgstr "" +msgstr "Zużywa trochę bionicznej mocy" #: lang/json/SPELL_from_json.py msgid "Debug effect spell" -msgstr "" +msgstr "Czar Debugujący efekty" #. ~ Description for Debug effect spell #: lang/json/SPELL_from_json.py msgid "Adds an effect to the target" -msgstr "" +msgstr "Dodaje celowi efekt" #: lang/json/SPELL_from_json.py msgid "Test Area Pull" -msgstr "" +msgstr "Testowe Obszarowe Pociągnięcie" #. ~ Description for Test Area Pull #: lang/json/SPELL_from_json.py msgid "Pulls all objects inside." -msgstr "" +msgstr "Przyciąga wszystkie przedmioty wewnątrz." #: lang/json/SPELL_from_json.py msgid "Test Area Pull (Field)" -msgstr "" +msgstr "Testowe Obszarowe Pociągnięcie (Pole)" #. ~ Description for Test Area Pull (Field) #: lang/json/SPELL_from_json.py msgid "Pulls field contents tiles inside." -msgstr "" +msgstr "Wciąga zawartość obszaru pól do środka." #: lang/json/SPELL_from_json.py msgid "Test Area Push" -msgstr "" +msgstr "Testowe Obszarowe Pchnięcie" #. ~ Description for Test Area Push #: lang/json/SPELL_from_json.py msgid "Pushes all objects outside." -msgstr "" +msgstr "Odpycha wszystkie przedmioty na zewnątrz." #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Debug Full Protection" @@ -115945,21 +118281,21 @@ msgstr "Nic się nie rani." #. ~ Message for SPELL 'Debug Full Protection' #: lang/json/SPELL_from_json.py msgid "You are invulnerable, nothing can harm you!" -msgstr "" +msgstr "Jesteś nietykalny, nic nie może cię skrzywdzić!" #: lang/json/SPELL_from_json.py msgid "Debug Feather Falling" -msgstr "" +msgstr "Debugowane Piórkospadanie" #. ~ Description for Debug Feather Falling #: lang/json/SPELL_from_json.py msgid "You are light as a feather and fall like." -msgstr "" +msgstr "Jesteś lekki jak piórko i tak też spadasz." #. ~ Message for SPELL 'Debug Feather Falling' #: lang/json/SPELL_from_json.py msgid "You eat a feather!" -msgstr "" +msgstr "Zjadasz ptasie pióro!" #: lang/json/SPELL_from_json.py msgid "Debug Teleport To" @@ -115972,7 +118308,7 @@ msgstr "Teleportuje cię do wybranego celu." #: lang/json/SPELL_from_json.py msgid "Black Dragons' Breath" -msgstr "" +msgstr "Oddech Czarnego Smoka" #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Vegetative Grasp" @@ -115980,27 +118316,27 @@ msgstr "Uścisk wegetatywny" #: lang/json/SPELL_from_json.py msgid "Root Strike" -msgstr "" +msgstr "Uderzenie Korzeni" #: lang/json/SPELL_from_json.py msgid "Wooden Shaft" -msgstr "" +msgstr "Drewniany Sztyft" #: lang/json/SPELL_from_json.py msgid "Nature's Bow" -msgstr "" +msgstr "Łuk Natury" #: lang/json/SPELL_from_json.py msgid "Nature's Trance" -msgstr "" +msgstr "Trans Natury" #: lang/json/SPELL_from_json.py msgid "Bag of Cats" -msgstr "" +msgstr "Torba Kotów" #: lang/json/SPELL_from_json.py msgid "Cause Bear" -msgstr "" +msgstr "Spowoduj Niedźwiedzia" #. ~ Description for Cause Bear #: lang/json/SPELL_from_json.py @@ -116017,16 +118353,16 @@ msgstr "" #: lang/json/SPELL_from_json.py msgid "Kill Fungus" -msgstr "" +msgstr "Zabij Grzyb" #. ~ Description for Kill Fungus #: lang/json/SPELL_from_json.py msgid "Kills fungus affected areas" -msgstr "" +msgstr "Zabija grzyb, który zajął obszar" #: lang/json/SPELL_from_json.py msgid "Druid Rune" -msgstr "" +msgstr "Runa Druidów" #. ~ Description for Druid Rune #: lang/json/SPELL_from_json.py @@ -116034,10 +118370,12 @@ msgid "" "This ritual creates a small pebble attuned to Druids. You can use the rune " "as a catalyst for recipes." msgstr "" +"Ten rytuał tworzy mały kamyk dostrojony do Druidów. Możesz użyć runy jako " +"katalizatora do receptur." #: lang/json/SPELL_from_json.py msgid "Purification Seed" -msgstr "" +msgstr "Nasiono Oczyszczenia" #. ~ Description for Purification Seed #: lang/json/SPELL_from_json.py @@ -116045,18 +118383,20 @@ msgid "" "You summon a gift of the earth which will purify water. Rapidly degrades if" " not utilized." msgstr "" +"Przywołujesz dar ziemi, który oczyszcza wodę. Szybko ulega degradacji, jeśli" +" nie zostanie wykorzystany." #: lang/json/SPELL_from_json.py msgid "Sacrificial Regrowth" -msgstr "" +msgstr "Ofiarne Odrastanie" #: lang/json/SPELL_from_json.py msgid "Sacrificial Healing" -msgstr "" +msgstr "Ofiarne Leczenie" #: lang/json/SPELL_from_json.py msgid "Tornskin" -msgstr "" +msgstr "Darcioskór" #. ~ Description for Tornskin #: lang/json/SPELL_from_json.py @@ -116065,10 +118405,13 @@ msgid "" " page, seemed to involve thorns and bleeding wounds. The marred words may " "have altered the function." msgstr "" +"To zaklęcie, które przypomina Ciernistą Skórę dzięki żywicy i igłom " +"pokrywającym stronę, wydaje się mieć związek z cierniami i krwawiącymi " +"ranami. Uszkodzone słowa mogły zmienić jego działanie." #: lang/json/SPELL_from_json.py msgid "Feral Form" -msgstr "" +msgstr "Dziki Kształt" #. ~ Description for Feral Form #: lang/json/SPELL_from_json.py @@ -116076,15 +118419,17 @@ msgid "" "This spell unleashes your inner beast, growing claws & fangs to rend your " "foes limb from limb." msgstr "" +"To zaklęcie uwalnia twoją wewnętrzną bestię, wyrastają ci pazury i kły, " +"które rozerwą twojego wroga na strzępy." #: lang/json/SPELL_from_json.py msgid "Summon Wolf" -msgstr "" +msgstr "Przywołanie Wilka" #. ~ Description for Summon Wolf #: lang/json/SPELL_from_json.py msgid "Call to the wilds for aid from some wolves." -msgstr "" +msgstr "Wezwij na pomoc wilki z dziczy." #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Nature's Commune" @@ -116096,6 +118441,8 @@ msgid "" "You concentrate on the nature around you and commune with it, improving your" " health and calming the nearby wildlife." msgstr "" +"Koncentrujesz się na otaczającej cię przyrodzie i obcujesz z nią, " +"poprawiając swoje zdrowie i uspokajając pobliskie dzikie zwierzęta." #: lang/json/SPELL_from_json.py msgid "Seed of Growth" @@ -116136,11 +118483,11 @@ msgstr "Poruszenie Ziemi" #. ~ Description for Move Earth #: lang/json/SPELL_from_json.py msgid "Your essense flows around you, and the earth follows." -msgstr "" +msgstr "Twoja esencja płynie wokół ciebie, a ziemia podąża za tobą." #: lang/json/SPELL_from_json.py msgid "Earthshaper Rune" -msgstr "" +msgstr "Runa Kształtujących Ziemię" #. ~ Description for Earthshaper Rune #: lang/json/SPELL_from_json.py @@ -116148,31 +118495,35 @@ msgid "" "This ritual creates a small pebble attuned to Earthshapers. You can use the" " rune as a catalyst for recipes." msgstr "" +"Ten rytuał tworzy mały kamyk dostrojony do Kształtujących Ziemię. Możesz " +"użyć runy jako katalizatora do receptur." #: lang/json/SPELL_from_json.py msgid "Clairvoyance" -msgstr "" +msgstr "Jasnowidzenie" #: lang/json/SPELL_from_json.py msgid "Stoneskin" -msgstr "" +msgstr "Kamienna Skóra" #: lang/json/SPELL_from_json.py msgid "Pillar of Stone" -msgstr "" +msgstr "Kamienny Filar" #: lang/json/SPELL_from_json.py msgid "Pillar Side Effect" -msgstr "" +msgstr "Efekt Kamiennego Filara" #. ~ Description for Pillar Side Effect #: lang/json/SPELL_from_json.py msgid "Bash effect that follows, levels reduce damage and AoE." msgstr "" +"Efekt uderzenia który następuje po tym, poziomy zmniejszają obrażenia i " +"obszar rażenia." #: lang/json/SPELL_from_json.py msgid "Twisted Restoration" -msgstr "" +msgstr "Pokrętna Odnowa" #. ~ Description for Twisted Restoration #: lang/json/SPELL_from_json.py @@ -116181,10 +118532,13 @@ msgid "" "unwise to use this in immediate danger, and may be fatal if done in critical" " condition." msgstr "" +"To zaklęcie podkręca twoje serce, wytwarzając nowe ciało i mięśnie. Używanie" +" go w bezpośrednim niebezpieczeństwie jest nierozsądne i może być " +"śmiertelne, jeśli zostanie użyte w stanie krytycznym." #: lang/json/SPELL_from_json.py msgid "Improved Twisted Restoration" -msgstr "" +msgstr "Ulepszona Pokrętna Odnowa" #. ~ Description for Improved Twisted Restoration #: lang/json/SPELL_from_json.py @@ -116193,25 +118547,31 @@ msgid "" "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 "" +"To zaklęcie podkręca twoje serce, wytwarzając nowe ciało i mięśnie. Używanie" +" go w bezpośrednim niebezpieczeństwie jest nierozsądne, a w stanie " +"krytycznym może być śmiertelne. Udoskonalenie łagodzi obciążenie związane z " +"zaklęciem." #: lang/json/SPELL_from_json.py msgid "Conjure Throwing Blade I" -msgstr "" +msgstr "Wyczaruj Ostrze do Rzutów I" #. ~ Description for Conjure Throwing Blade I #: lang/json/SPELL_from_json.py msgid "conjures 3 throwing knives" -msgstr "" +msgstr "wyczarowuje 3 noże do rzucania " #. ~ Message for SPELL 'Conjure Throwing Blade I' #: lang/json/SPELL_from_json.py msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" +"Aktywujesz swój pierścień i pojawiają się trzy noże do rzucania, gotowe do " +"rzutu!" #: lang/json/SPELL_from_json.py msgid "Conjure Random Magical Throwing Blade" -msgstr "" +msgstr "Wyczaruj Losowe Magiczne Ostrze do Rzutów" #. ~ Description for Conjure Random Magical Throwing Blade #: lang/json/SPELL_from_json.py @@ -116219,10 +118579,12 @@ msgid "" "conjures a magical throwing knife, one of the spells specified in extra " "effects" msgstr "" +"wyczarowuje magiczny nóż do rzucania, jedno z zaklęć wymienionych w efektach" +" dodatkowych" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade I" -msgstr "" +msgstr "Wyczaruj Magiczne Ostrze do Rzutów I" #. ~ Description for Conjure Magical Throwing Blade I #. ~ Description for Conjure Magical Throwing Blade Fire @@ -116232,16 +118594,17 @@ msgstr "" #. ~ Description for Conjure Magical Throwing Blade Pure #: lang/json/SPELL_from_json.py msgid "conjures 1 magical throwing knife" -msgstr "" +msgstr "wyczarowuje 1 magiczny nóż do rzucania" #. ~ Message for SPELL 'Conjure Magical Throwing Blade I' #: lang/json/SPELL_from_json.py msgid "You activate your bag and a throwing knife appears, ready to throw!" msgstr "" +"Aktywujesz swoją torbę i pojawia się nóż do rzucania, gotowy do rzutu!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Fire" -msgstr "" +msgstr "Wyczaruj Magiczne Ostrze do Rzutów Ogień" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Fire' #: lang/json/SPELL_from_json.py @@ -116249,10 +118612,12 @@ msgid "" "You activate your bag and a throwing knife wrapped in ethereal flames " "appears, ready to throw!" msgstr "" +"Aktywujesz swoją torbę i pojawia się nóż do rzucania spowity w eteryczne " +"płomienie, gotowy do rzutu!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Cold" -msgstr "" +msgstr "Wyczaruj Magiczne Ostrze do Rzutów Mróz" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Cold' #: lang/json/SPELL_from_json.py @@ -116260,10 +118625,12 @@ msgid "" "You activate your bag and a throwing knife emanating cold appears, ready to " "throw!" msgstr "" +"Aktywujesz swoją torbę i pojawia się emanujący zimnem nóż do rzucania, " +"gotowy do rzutu!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Cut" -msgstr "" +msgstr "Wyczaruj Magiczne Ostrze do Rzutów Cięcie" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Cut' #: lang/json/SPELL_from_json.py @@ -116271,10 +118638,12 @@ msgid "" "You activate your bag and a throwing knife with unnaturally sharp edges " "appears, ready to throw!" msgstr "" +"Aktywujesz swoją torbę i pojawia się nóż do rzucania z nienaturalnie ostrymi" +" krawędziami, gotowy do rzutu!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Biological" -msgstr "" +msgstr "Wyczaruj Magiczne Ostrze do Rzutów Biologiczne" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Biological' #: lang/json/SPELL_from_json.py @@ -116282,10 +118651,12 @@ msgid "" "You activate your bag and a throwing knife covered in dark ooze appears, " "ready to throw!" msgstr "" +"Aktywujesz swoją torbę i pojawia się nóż do rzucania pokryty ciemnym " +"szlamem, gotowy do rzutu!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Pure" -msgstr "" +msgstr "Wyczaruj Magiczne Ostrze do Rzutów Czyste" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Pure' #: lang/json/SPELL_from_json.py @@ -116294,20 +118665,23 @@ msgid "" "hand into a shape of knife. It seems vastly more powerful than other knives" " that appear from the bag!" msgstr "" +"Aktywujesz swoją torbę i w mgnieniu oka magiczne energie łączą się w twojej " +"dłoni w kształt noża. Wydaje się on o wiele potężniejszy niż inne noże, " +"które wyłaniają się z torby!" #: lang/json/SPELL_from_json.py msgid "Recover Mana" -msgstr "" +msgstr "Odzyskanie Many" #. ~ Description for Recover Mana #: lang/json/SPELL_from_json.py msgid "You regain mana." -msgstr "" +msgstr "Odzyskujesz manę." #. ~ Message for SPELL 'Recover Mana' #: lang/json/SPELL_from_json.py msgid "You start regenerating mana!" -msgstr "" +msgstr "Zaczynasz regenerować manę!" #. ~ Message for SPELL '{'str': 'Pain'}' #: lang/json/SPELL_from_json.py @@ -116315,21 +118689,23 @@ msgid "" "Your veins feel like they are on fire!\n" "You start regenerating mana!" msgstr "" +"Czujesz jakby twoje żyły płonęły!\n" +"Zaczynasz regenerować manę!" #: lang/json/SPELL_from_json.py msgid "Lupercalian Release" -msgstr "" +msgstr "Uwolnienie Wilka" #. ~ Description for Lupercalian Release #: lang/json/SPELL_from_json.py msgid "" "This spell transforms you into a werewolf. There may be some cons to this." -msgstr "" +msgstr "To zaklęcie przekształca cię w wilkołaka. Może to mieć pewne wady." #. ~ Description for Wolfsbane #: lang/json/SPELL_from_json.py msgid "The tip of the spear glows white hot as you strike." -msgstr "" +msgstr "Czubek włóczni rozżarza się do białości podczas uderzenia." #: lang/json/SPELL_from_json.py msgid "Point Flare" @@ -116373,7 +118749,7 @@ msgstr "Ślizg po Lodzie" #: lang/json/SPELL_from_json.py msgid "Hoary Blast" -msgstr "" +msgstr "Brodate Uderzenie" #: lang/json/SPELL_from_json.py msgid "Ice Shield" @@ -116393,10 +118769,12 @@ msgid "" "This ritual creates a small pebble attuned to Kelvinists. You can use the " "rune as a catalyst for recipes." msgstr "" +"Ten rytuał tworzy mały kamyk dostrojony do Kelwinistów. Możesz używać runy " +"jako katalizatora do receptur." #: lang/json/SPELL_from_json.py msgid "Flamesword" -msgstr "" +msgstr "Ognisty Miecz" #. ~ Description for Flamesword #: lang/json/SPELL_from_json.py @@ -116404,10 +118782,12 @@ msgid "" "This spell ignites a wooden sword, creating a flaming blade able to burn, " "bruise, and chop." msgstr "" +"Zaklęcie to zapala drewniany miecz, tworząc płonące ostrze zdolne do " +"palenia, obijania i siekania." #: lang/json/SPELL_from_json.py msgid "Flamebreath" -msgstr "" +msgstr "Ognisty Oddech" #. ~ Description for Flamebreath #: lang/json/SPELL_from_json.py @@ -116415,96 +118795,99 @@ 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 "" +"Zaklęcie to podpala pył rozproszony w powietrzu, tworząc stożek płomieni. " +"Gorący popiół może przylgnąć do celu, powodując z czasem dodatkowe " +"oparzenia." #: lang/json/SPELL_from_json.py msgid "Freezing Touch" -msgstr "" +msgstr "Zamrażający Dotyk" #. ~ Description for Freezing Touch #: lang/json/SPELL_from_json.py msgid "This is a sub-spell of Freezing touch." -msgstr "" +msgstr "Jest to pod-zaklęcie Zamrażającego dotyku." #: lang/json/SPELL_from_json.py msgid "Summon Crocodile" -msgstr "" +msgstr "Przywołanie Krokodyla" #. ~ Description for Summon Crocodile #: lang/json/SPELL_from_json.py msgid "Summons a permanent crocodile." -msgstr "" +msgstr "Przyzywa permanentnego krokodyla." #. ~ Message for SPELL 'Summon Crocodile' #: lang/json/SPELL_from_json.py msgid "The shaman summons a crocodile!" -msgstr "" +msgstr "Szaman przyzywa krokodyla!" #: lang/json/SPELL_from_json.py msgid "an ancient reptilian spell" -msgstr "" +msgstr "starożytne gadzie zaklecie" #. ~ Description for an ancient reptilian spell #: lang/json/SPELL_from_json.py msgid "Causes one of the shaman spells to be cast." -msgstr "" +msgstr "Powoduje rzucenie jednego z zaklęć szamana." #: lang/json/SPELL_from_json.py msgid "Shadow Field" -msgstr "" +msgstr "Obszar Cieni" #. ~ Description for Shadow Field #: lang/json/SPELL_from_json.py msgid "Cast a field of intense shadows." -msgstr "" +msgstr "Rzuca pole głębokich cieni." #: lang/json/SPELL_from_json.py msgid "Magic Missile" -msgstr "" +msgstr "Magiczny Pocisk" #: lang/json/SPELL_from_json.py msgid "Phase Door" -msgstr "" +msgstr "Fazowe Drzwi" #: lang/json/SPELL_from_json.py msgid "Dimension Door" -msgstr "" +msgstr "Drzwi przez Wymiary" #. ~ Description for Dimension Door #: lang/json/SPELL_from_json.py msgid "Teleports you randomly near a target location." -msgstr "" +msgstr "Teleportuje cię losowo w pobliże wybranego celu." #: lang/json/SPELL_from_json.py msgid "Gravity Well" -msgstr "" +msgstr "Studnia Grawitacyjna" #: lang/json/SPELL_from_json.py msgid "Mana Blast" -msgstr "" +msgstr "Wybuch Many" #: lang/json/SPELL_from_json.py msgid "Mana Bolt" -msgstr "" +msgstr "Pocisk Many" #: lang/json/SPELL_from_json.py msgid "Haste" -msgstr "" +msgstr "Przyspieszenie" #: lang/json/SPELL_from_json.py msgid "Baleful Polymorph" -msgstr "" +msgstr "Złowroga Przemiana" #: lang/json/SPELL_from_json.py msgid "Mana Beam" -msgstr "" +msgstr "Wiązka Many" #: lang/json/SPELL_from_json.py msgid "Escape" -msgstr "" +msgstr "Ucieczka" #: lang/json/SPELL_from_json.py msgid "Magus Rune" -msgstr "" +msgstr "Runa Magów" #. ~ Description for Magus Rune #: lang/json/SPELL_from_json.py @@ -116512,6 +118895,8 @@ msgid "" "This ritual creates a small pebble attuned to Magi. You can use the rune as" " a catalyst for recipes." msgstr "" +"Ten rytuał tworzy mały kamyk dostrojony do Magów. Możesz użyć runy jako " +"katalizatora do receptur." #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Cat's Grace" @@ -116531,16 +118916,16 @@ msgstr "Przebiegłość lisa" #: lang/json/SPELL_from_json.py msgid "Jar of Force" -msgstr "" +msgstr "Słój Mocy" #. ~ Description for Jar of Force #: lang/json/SPELL_from_json.py msgid "Summon a jar of force in which you can store liquids." -msgstr "" +msgstr "Przywołaj słoik mocy, w którym możesz przechowywać płyny." #: lang/json/SPELL_from_json.py msgid "Impact Sling" -msgstr "" +msgstr "Proca Uderzeń" #. ~ Description for Impact Sling #: lang/json/SPELL_from_json.py @@ -116548,6 +118933,8 @@ msgid "" "This spell infuses a sling with tremendous force, delivering devastating " "pebble shots until the energy tears it apart." msgstr "" +"To zaklęcie napełnia procę ogromną siłą, zapewniając niszczycielskie strzały" +" kamykami, dopóki energia nie rozerwie jej na strzępy." #. ~ Description for Crystallize Mana #: lang/json/SPELL_from_json.py @@ -116555,6 +118942,8 @@ msgid "" "Crystallizes mana into solid form. Your physiological changes have made " "this spell much more efficient and easier to cast." msgstr "" +"Krystalizuje manę do postaci stałej. Twoje zmiany fizjologiczne sprawiły, że" +" zaklęcie to jest o wiele bardziej wydajne i łatwiejsze do rzucenia." #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Seeker Bolts" @@ -116566,120 +118955,124 @@ msgid "" "Fires bolts of mana from your fingertips that home in on randomly selected " "targets in range." msgstr "" +"Wystrzeliwuje z palców pociski many, które trafiają w losowo wybrane cele w " +"zasięgu." #. ~ description for the sound of spell 'Seeker Bolts' #: lang/json/SPELL_from_json.py msgid "a zing" -msgstr "" +msgstr "zing" #: lang/json/SPELL_from_json.py msgid "Blood Suck" -msgstr "" +msgstr "Wyssanie Krwi" #. ~ Description for Blood Suck #: lang/json/SPELL_from_json.py msgid "Sucks blood from one foe." -msgstr "" +msgstr "Wysysa krew z jednego przeciwnika." #: lang/json/SPELL_from_json.py msgid "Bear Trap" -msgstr "" +msgstr "Niedźwiedzia Pułapka" #. ~ Description for Bear Trap #: lang/json/SPELL_from_json.py msgid "A trap that summons bears! Not what you were expecting, is it?" msgstr "" +"Pułapka, która przywołuje niedźwiedzie! Nie tego się spodziewałeś, prawda?" #. ~ description for the sound of spell 'Bear Trap' #. ~ description for the sound of spell 'Forge Trap' #: lang/json/SPELL_from_json.py msgid "\"It's a trap!\"" -msgstr "" +msgstr "\"To pułapka!\"" #: lang/json/SPELL_from_json.py msgid "Forge Trap" -msgstr "" +msgstr "Pułapka Kuźni" #. ~ Description for Forge Trap #: lang/json/SPELL_from_json.py msgid "A trap that summons forge hounds! Not what you were expecting, is it?" msgstr "" +"Pułapka, która przywołuje ogary kuźni! Nie tego się spodziewałeś, prawda?" #: lang/json/SPELL_from_json.py msgid "Rocket Punch" -msgstr "" +msgstr "Rakietowa Pięść" #. ~ Description for Rocket Punch #: lang/json/SPELL_from_json.py msgid "Ejects giant fist from arm." -msgstr "" +msgstr "Wyrzuca gigantyczną pięść z ramienia." #: lang/json/SPELL_from_json.py msgid "Spirits of Vengeance" -msgstr "" +msgstr "Duchy Zemsty" #. ~ Description for Spirits of Vengeance #: lang/json/SPELL_from_json.py msgid "Summons spirits of vengeance." -msgstr "" +msgstr "Przywołuje duchy zemsty." #: lang/json/SPELL_from_json.py msgid "Teleport Charge" -msgstr "" +msgstr "Ładunek Teleportacyjny" #. ~ Description for Teleport Charge #: lang/json/SPELL_from_json.py msgid "Edit all this tomorrow" -msgstr "" +msgstr "Edytuj to wszystko jutro" #: lang/json/SPELL_from_json.py msgid "Leprechaun prank" -msgstr "" +msgstr "Dowcip Skrzata" #. ~ Description for Leprechaun prank #: lang/json/SPELL_from_json.py msgid "Pranks the PC. Gag humor." -msgstr "" +msgstr "Żarty na PC. Błyskotliwy humor." #: lang/json/SPELL_from_json.py msgid "Gas Attack" -msgstr "" +msgstr "Gazowy Atak" #. ~ Description for Gas Attack #: lang/json/SPELL_from_json.py msgid "Spreads toxic gas around itself." -msgstr "" +msgstr "Rozprzestrzenia wokół siebie toksyczne gazy." #: lang/json/SPELL_from_json.py msgid "Demon Fireball" -msgstr "" +msgstr "Demoniczna Kula Ognista" #. ~ Description for Demon Fireball #: lang/json/SPELL_from_json.py msgid "This is a monster only spell." -msgstr "" +msgstr "Czar tylko dla potworów." #: lang/json/SPELL_from_json.py msgid "Summon Demon Spiderlings" -msgstr "" +msgstr "Przywołaj Demoniczne Pajączki" #. ~ Description for Summon Demon Spiderlings #: lang/json/SPELL_from_json.py msgid "Summons 4 permanent demon spiderlings." -msgstr "" +msgstr "Przyzywa cztery permanentne demoniczne pajączki." #: lang/json/SPELL_from_json.py msgid "Hellfire Belch" -msgstr "" +msgstr "Żygacz Ognia Piekielnego" #. ~ Description for Hellfire Belch #: lang/json/SPELL_from_json.py msgid "Spits supernatural napalm from your mouth." -msgstr "" +msgstr "Wypluwa z ust nadnaturalny napalm." #: lang/json/SPELL_from_json.py msgid "Jolt" -msgstr "" +msgstr "Wstrząs" #. ~ description for the sound of spell 'Jolt' #. ~ description for the sound of spell 'Shocking Lash Base' @@ -116696,34 +119089,36 @@ msgstr "trzask" #: lang/json/SPELL_from_json.py msgid "Shocking Lash Base" -msgstr "" +msgstr "Baza Porażającego Uderzenia" #. ~ Description for Shocking Lash Base #: lang/json/SPELL_from_json.py msgid "" "Reference spell definition used for Shocking Lash and Shocking Lash Jump" msgstr "" +"Definicja zaklęcia referencyjnego używanego dla Szokującego Uderzenia i " +"Skaczącego Szokującego Uderzenia" #: lang/json/SPELL_from_json.py msgid "Shocking Lash" -msgstr "" +msgstr "Porażające Uderzenie" #: lang/json/SPELL_from_json.py msgid "Shocking Lash Jump" -msgstr "" +msgstr "Skok Porażającego Uderzenia" #. ~ Description for Shocking Lash Jump #: lang/json/SPELL_from_json.py msgid "The secondary jump from Shocking Lash." -msgstr "" +msgstr "Skok wtórny z Szokującego Uderzenia." #: lang/json/SPELL_from_json.py msgid "Lightning Bolt" -msgstr "" +msgstr "Błyskawica" #: lang/json/SPELL_from_json.py msgid "Windstrike" -msgstr "" +msgstr "Uderzenie Wichru" #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Windrunning" @@ -116731,11 +119126,11 @@ msgstr "Wietrzne bieganie" #: lang/json/SPELL_from_json.py msgid "Call Stormhammer" -msgstr "" +msgstr "Przyzwanie Młota Burz" #: lang/json/SPELL_from_json.py msgid "Stormshaper Rune" -msgstr "" +msgstr "Runa Zaklinaczy Burz" #. ~ Description for Stormshaper Rune #: lang/json/SPELL_from_json.py @@ -116743,10 +119138,12 @@ msgid "" "This ritual creates a small pebble attuned to Stormshapers. You can use the" " rune as a catalyst for recipes." msgstr "" +"Ten rytuał tworzy mały kamyk dostrojony do Zaklinaczy Burz. Możesz użyć runy" +" jako katalizatora do receptur." #: lang/json/SPELL_from_json.py msgid "Lightning Blast" -msgstr "" +msgstr "Wiązka Błyskawic" #: lang/json/SPELL_from_json.py lang/json/weather_type_from_json.py #: lang/json/weather_type_from_json.py @@ -116759,41 +119156,43 @@ 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 "" +"Wzywasz moc nieba, aby uderzyć w ziemię. Kilka błyskawic wystrzeliwuje z " +"twoich czubków palców, by uderzyć w cel." #: lang/json/SPELL_from_json.py msgid "Ionization" -msgstr "" +msgstr "Jonizacja" #: lang/json/SPELL_from_json.py msgid "Ionization Thunderclap" -msgstr "" +msgstr "Jonizacja Grom" #. ~ Description for Ionization Thunderclap #: lang/json/SPELL_from_json.py msgid "Adds the actual flashbang effect." -msgstr "" +msgstr "Dodaje rzeczywisty efekt błysku i huku." #: lang/json/SPELL_from_json.py msgid "Wall of Fog" -msgstr "" +msgstr "Ściana Mgły" #: lang/json/SPELL_from_json.py msgid "Repelling Arc Aura" -msgstr "" +msgstr "Aura Odpychającego Łuku" #. ~ Description for Repelling Arc Aura #: lang/json/SPELL_from_json.py msgid "This is a sub-spell of the Repelling Arc spell." -msgstr "" +msgstr "Jest to pod-zaklęcie zaklęcia Odpychający Łuk." #. ~ description for the sound of spell 'Repelling Arc Aura' #: lang/json/SPELL_from_json.py msgid "arcing electricity!" -msgstr "" +msgstr "łuk elektryczny!" #: lang/json/SPELL_from_json.py msgid "Repelling Arc" -msgstr "" +msgstr "Odpychający Łuk" #. ~ Description for Repelling Arc #: lang/json/SPELL_from_json.py @@ -116801,10 +119200,12 @@ msgid "" "Manifests an aura of crackling electricity around you to strike attackers " "with baleful lightning." msgstr "" +"Manifestuje wokół siebie aurę trzaskającej elektryczności, która razi " +"napastników groźnymi błyskawicami." #: lang/json/SPELL_from_json.py msgid "Bless" -msgstr "" +msgstr "Błogosławieństwo" #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Invisibility" @@ -116816,31 +119217,33 @@ msgid "" "Creates a magical field that hides your visual presence to others. " "Colloquially known as invisibility, but without all the science mumbo jumbo." msgstr "" +"Tworzy magiczne pole, które ukrywa twoją wizualną obecność dla innych. " +"Potocznie znane jako niewidzialność, ale bez całego naukowego bełkotu." #. ~ Message for SPELL 'Invisibility' #: lang/json/SPELL_from_json.py msgid "To the outside world, your body fades away and you cease to exist!" -msgstr "" +msgstr "Dla świata zewnętrznego twoje ciało zanika i przestajesz istnieć!" #: lang/json/SPELL_from_json.py msgid "Holy Blade" -msgstr "" +msgstr "Święte Ostrze" #: lang/json/SPELL_from_json.py msgid "Spiritual Armor" -msgstr "" +msgstr "Duchowa Zbroja" #: lang/json/SPELL_from_json.py msgid "Lamp" -msgstr "" +msgstr "Lampa" #: lang/json/SPELL_from_json.py msgid "Manatricity" -msgstr "" +msgstr "Manatryczność" #: lang/json/SPELL_from_json.py msgid "Technomancer Rune" -msgstr "" +msgstr "Runa Technomantów" #. ~ Description for Technomancer Rune #: lang/json/SPELL_from_json.py @@ -116848,14 +119251,16 @@ msgid "" "This ritual creates a small pebble attuned to Technomancers. You can use " "the rune as a catalyst for recipes." msgstr "" +"Ten rytuał tworzy mały kamyk dostrojony do Technomantów. Możesz użyć runy " +"jako katalizatora do receptur." #: lang/json/SPELL_from_json.py msgid "Taze" -msgstr "" +msgstr "Porażenie" #: lang/json/SPELL_from_json.py msgid "Lesser Quantum Tunnel" -msgstr "" +msgstr "Mniejszy Tunel Kwantowy" #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Synaptic Stimulation" @@ -116863,41 +119268,41 @@ msgstr "Stymulacja synaptyczna" #: lang/json/SPELL_from_json.py msgid "Laze" -msgstr "" +msgstr "Laser" #: lang/json/SPELL_from_json.py msgid "Animated Blade" -msgstr "" +msgstr "Ożywione Ostrze" #: lang/json/SPELL_from_json.py msgid "Mirror Image" -msgstr "" +msgstr "Lustrzane Odbicie" #: lang/json/SPELL_from_json.py msgid "Summon floating disk" -msgstr "" +msgstr "Przywołaj latający dysk" #: lang/json/SPELL_from_json.py msgid "Summon Mojocycle" -msgstr "" +msgstr "Przywołanie Mojocykla" #. ~ Description for Summon Mojocycle #: lang/json/SPELL_from_json.py msgid "You're not a cowboy, but on a steel horse you ride regardless." -msgstr "" +msgstr "Nie jesteś kowbojem, choć na stalowym rumaku jeździsz." #: lang/json/SPELL_from_json.py msgid "Overcharge Burn" -msgstr "" +msgstr "Przeładowane Spalanie" #. ~ Description for Overcharge Burn #: lang/json/SPELL_from_json.py msgid "The side effects of casting the overcharge spell." -msgstr "" +msgstr "Efekty uboczne rzucenia zaklęcia przeciążenia." #: lang/json/SPELL_from_json.py msgid "Optical Sneeze Beam" -msgstr "" +msgstr "Kichnięcie Optyczną Wiązką" #. ~ Description for Optical Sneeze Beam #: lang/json/SPELL_from_json.py @@ -116906,6 +119311,9 @@ msgid "" "your face. The inventor of this spell must have had some weird sense of " "humor." msgstr "" +"Przeładowujesz swoje wewnętrzne baterie, aby wysłać z twarzy " +"półukierunkowany promień. Wynalazca tego zaklęcia musiał mieć jakieś " +"osobliwe poczucie humoru." #. ~ description for the sound of spell 'Optical Sneeze Beam' #: lang/json/SPELL_from_json.py @@ -116918,14 +119326,16 @@ msgid "" "You overcharge your bionic energy through what ley lines you have left, and " "channel it through the center of your face." msgstr "" +"Przeładowujesz swoją bioniczną energię poprzez te linie energetyczne, które " +"ci jeszcze pozostały i przekierowujesz ją przez środek twarzy." #: lang/json/SPELL_from_json.py msgid "X-ray Vision" -msgstr "" +msgstr "Rentgenowski Wzrok" #: lang/json/SPELL_from_json.py msgid "Knock" -msgstr "" +msgstr "Pukanie" #. ~ Description for Knock #: lang/json/SPELL_from_json.py @@ -116933,10 +119343,12 @@ msgid "" "You channel magic into a force capable of opening doors. This variant can " "only open wooden doors." msgstr "" +"Zamieniasz magię w moc zdolną do otwierania drzwi. Ten wariant może otworzyć" +" tylko drewniane drzwi." #: lang/json/SPELL_from_json.py msgid "Improved Knock" -msgstr "" +msgstr "Ulepszone Pukanie" #. ~ Description for Improved Knock #: lang/json/SPELL_from_json.py @@ -116944,10 +119356,12 @@ msgid "" "You channel magic into a force capable of opening doors. This variant can " "open any locked door." msgstr "" +"Przekształcasz magię w moc zdolną do otwierania drzwi. Ten wariant może " +"otworzyć każde zamknięte drzwi." #: lang/json/SPELL_from_json.py msgid "Knifeshot" -msgstr "" +msgstr "Nożostrzał" #. ~ Description for Knifeshot #: lang/json/SPELL_from_json.py @@ -116955,10 +119369,12 @@ msgid "" "This spell generates a magnetic field around a knife, before launching it at" " high speed." msgstr "" +"Zaklęcie to wytwarza pole magnetyczne wokół noża, po czym wystrzeliwuje go z" +" dużą prędkością." #: lang/json/SPELL_from_json.py msgid "Hypervelocity Knifeshot" -msgstr "" +msgstr "Nadprędkościowy Nożostrzał" #. ~ Description for Hypervelocity Knifeshot #: lang/json/SPELL_from_json.py @@ -116966,20 +119382,22 @@ msgid "" "This spell goes even further beyond, launching a knife so fast it can pierce" " through targets." msgstr "" +"To zaklęcie idzie jeszcze dalej, wystrzeliwując nóż tak szybko, że może " +"przebić cele na wylot." #: lang/json/SPELL_from_json.py msgid "Manafusion bomb" -msgstr "" +msgstr "Bomba Manafuzyjna" #. ~ Description for Manafusion bomb #: lang/json/SPELL_from_json.py msgid "" "Oversaturates potion starter with mana to create a deadly mana explosion." -msgstr "" +msgstr "Przesyca starter mikstur maną, tworząc śmiercionośną eksplozję many." #: lang/json/SPELL_from_json.py msgid "Manafusion bomb create" -msgstr "" +msgstr "Bomba Manafuzyjna utworzenie" #. ~ Description for Manafusion bomb create #: lang/json/SPELL_from_json.py @@ -116987,10 +119405,12 @@ msgid "" "Gives you a manafusion bomb. Subspell; you aren't allowed to see it except " "in debug mode." msgstr "" +"Daje ci bombę manafuzyjną. Pod-zaklęcie; nie możesz go zobaczyć, chyba że w " +"trybie debugowania." #: lang/json/SPELL_from_json.py msgid "Manafusion trap" -msgstr "" +msgstr "Manafuzyjna Pułapka" #. ~ Description for Manafusion trap #: lang/json/SPELL_from_json.py @@ -116998,10 +119418,12 @@ msgid "" "Make a manafusion trap, stabilizing manafusion bombs and giving you some of " "the excess mana." msgstr "" +"Stwórz pułapkę manafuzyjną, stabilizującą bomby manafuzyjne i dającą ci " +"część nadmiaru many." #: lang/json/SPELL_from_json.py msgid "Manafusion trap create" -msgstr "" +msgstr "Manafuzyjna Pułapka tworzenie" #. ~ Description for Manafusion trap create #: lang/json/SPELL_from_json.py @@ -117009,10 +119431,12 @@ msgid "" "Gives you a manafusion trap. Subspell; you aren't allowed to see it except " "in debug mode." msgstr "" +"Daje ci pułapkę manafuzyjną. Pod-zaklęcie; nie możesz go zobaczyć, chyba że " +"w trybie debugowania." #: lang/json/SPELL_from_json.py msgid "Spy Wasp" -msgstr "" +msgstr "Osa Szpieg" #. ~ Description for Spy Wasp #: lang/json/SPELL_from_json.py @@ -117021,10 +119445,13 @@ msgid "" "that reveals terrain in a line in front of you. The wasp can travel through" " walls." msgstr "" +"Wysyła częściowo magicznego, częściowo elektronicznego drona szpiegowskiego " +"w kształcie osy, który ujawnia teren w linii przed tobą. Osa może podróżować" +" przez ściany." #: lang/json/SPELL_from_json.py msgid "Artificer's Toolkit" -msgstr "" +msgstr "Przybornik Sztukmistrza" #. ~ Description for Artificer's Toolkit #: lang/json/SPELL_from_json.py @@ -117033,10 +119460,13 @@ msgid "" "cover a wide variety of tasks. It is only a matter of temporarily summoning" " the item for use." msgstr "" +"Sztukmistrze posiadają specjalną kieszeń z magicznym narzędziem, które może " +"służyć do wielu różnych zadań. Jest to tylko kwestia czasowego przywołania " +"przedmiotu do użycia." #: lang/json/SPELL_from_json.py msgid "Nitro Boost" -msgstr "" +msgstr "Nitrodopalanie" #. ~ Description for Nitro Boost #: lang/json/SPELL_from_json.py @@ -117044,14 +119474,16 @@ msgid "" "You overclock your flesh and bionics, charging so fast the friction can " "ignite the air, to wind up for a skull-cracking punch." msgstr "" +"Podkręcasz swoje ciało i bionikę, ładując się tak szybko, że tarcie może " +"zapalić powietrze, by wyprowadzić rozłupujący czaszkę cios." #: lang/json/SPELL_from_json.py msgid "Jury Rig" -msgstr "" +msgstr "Improwizacja" #: lang/json/SPELL_from_json.py msgid "Greater Banishment" -msgstr "" +msgstr "Większe Wygnanie" #. ~ Description for Greater Banishment #: lang/json/SPELL_from_json.py @@ -117060,6 +119492,9 @@ msgid "" " to banish a monster. Being closely related to blood magic, the Blood Mage " "is much more specialized to use a spell like this." msgstr "" +"Bardziej zaawansowana wersja Wygnania, które jest rytualnym zaklęciem " +"próbującym wygnać potwora. Będąc blisko związanym z magią krwi, Mag Krwi " +"jest znacznie bardziej wyspecjalizowany w używaniu tego zaklęcia." #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Demonic Possession" @@ -117072,10 +119507,13 @@ msgid "" "combat abilities. You still retain control, though lose your spellcasting " "abilities temporarily." msgstr "" +"Pozwalasz, by demon opanował twoje ciało na krótki czas, dając ci wielkie " +"zdolności bojowe. Nadal zachowujesz kontrolę, ale tymczasowo tracisz " +"zdolność rzucania zaklęć." #: lang/json/SPELL_from_json.py msgid "Auroral Wave" -msgstr "" +msgstr "Fala Zorzy" #. ~ Description for Auroral Wave #: lang/json/SPELL_from_json.py @@ -117083,11 +119521,13 @@ msgid "" "A rippling wave of luminous energy spreads from your hands, a beautiful " "torrent of magnetic force and chill wind." msgstr "" +"Z twoich rąk rozchodzi się falująca fala świetlistej energii, piękny potok " +"magnetycznej siły i chłodnego wiatru." #. ~ description for the sound of spell 'Auroral Wave' #: lang/json/SPELL_from_json.py msgid "a faint shimmering crackle" -msgstr "" +msgstr "słaby, wibrujący trzask" #. ~ Description for Auroral Wave #: lang/json/SPELL_from_json.py @@ -117095,29 +119535,33 @@ msgid "" "This is the cold damage portion of the Auroral Wave spell, it is a wider " "blast around the central high damage cone." msgstr "" +"Jest to część zaklęcia Fala Zorzy zadająca obrażenia od zimna, jest to " +"szerszy podmuch wokół centralnego stożka zadającego duże obrażenia." #: lang/json/SPELL_from_json.py msgid "Auroral Guard" -msgstr "" +msgstr "Strażnik Zorzy" #. ~ Description for Auroral Guard #: lang/json/SPELL_from_json.py msgid "" "Create a sturdy shell that wraps around your body, gaining a sturdy defense." msgstr "" +"Tworzy solidną powłokę, która otacza twoje ciało, zapewniając solidną " +"obronę." #: lang/json/SPELL_from_json.py msgid "Immolate Transform" -msgstr "" +msgstr "Stopienie przemiana" #. ~ Description for Immolate Transform #: lang/json/SPELL_from_json.py msgid "The part of the Immolate spell that causes the transform." -msgstr "" +msgstr "Część zaklęcia Stopienie, która powoduje transformację." #: lang/json/SPELL_from_json.py msgid "Immolate" -msgstr "" +msgstr "Stopienie" #. ~ Description for Immolate #: lang/json/SPELL_from_json.py @@ -117125,25 +119569,30 @@ msgid "" "A purifying blast of raw elemental heat wipes the slate clean, searing the " "Earth back to her most original state: a barren ball of burning rock." msgstr "" +"Oczyszczający podmuch surowego, elementarnego żaru oczyszcza wszystko, " +"wypalając Ziemię do jej najbardziej pierwotnego stanu: jałowej kuli płonącej" +" skały." #. ~ description for the sound of spell 'Immolate' #: lang/json/SPELL_from_json.py msgid "a searing whoosh" -msgstr "" +msgstr "palące łuuusz" #: lang/json/SPELL_from_json.py msgid "Immolate push effect" -msgstr "" +msgstr "Stopienie efekt pchnięcia" #. ~ Description for Immolate push effect #: lang/json/SPELL_from_json.py msgid "" "The immolate spell is powerful enough to push targets from its epicenter." msgstr "" +"Zaklęcie Stopienie jest wystarczająco potężne, by odepchnąć cele od swojego " +"epicentrum." #: lang/json/SPELL_from_json.py msgid "Hermes Reborn" -msgstr "" +msgstr "Hermes Wskrzeszony" #. ~ Description for Hermes Reborn #: lang/json/SPELL_from_json.py @@ -117153,10 +119602,14 @@ msgid "" "Eating his wings variable\n" "And maketh himself yet full stable" msgstr "" +"W morzu bez ustoin\n" +"Ptak Hermesa stoi\n" +"Skrzydła swe zmienne zjadając\n" +"Na przekór jednością się czyniąc" #: lang/json/SPELL_from_json.py msgid "Hermes Reborn fire" -msgstr "" +msgstr "Hermes Wskrzeszony ogień" #. ~ Description for Hermes Reborn fire #: lang/json/SPELL_from_json.py @@ -117164,14 +119617,16 @@ msgid "" "Give some frost damage for Hermes Reborn spell. Subspell; you aren't " "allowed to see it except in debug mode." msgstr "" +"Daje trochę obrażeń od mrozu dla zaklęcia Hermes Reborn. Pod-zaklęcie; nie " +"możesz go zobaczyć, chyba że w trybie debugowania." #: lang/json/SPELL_from_json.py lang/json/TOOL_ARMOR_from_json.py msgid "Holy Shield" msgid_plural "Holy Shields" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Święta Tarcza" +msgstr[1] "Święte Tarcze" +msgstr[2] "Świętych Tarcz" +msgstr[3] "Świętej Tarczy" #. ~ Description for Holy Shield #: lang/json/SPELL_from_json.py @@ -117179,10 +119634,12 @@ msgid "" "Crusaders have the ability to summon a magically enhanced shield to their " "arm to protect them in armed combat." msgstr "" +"Krzyżowcy potrafią przywołać na swoje ramię magicznie wzmocnioną tarczę, " +"która chroni ich w walce zbrojnej." #: lang/json/SPELL_from_json.py msgid "Quake" -msgstr "" +msgstr "Trzęsienie Ziemi" #. ~ Description for Quake #: lang/json/SPELL_from_json.py @@ -117190,24 +119647,25 @@ msgid "" "Cause a localized earthquake, knocking down enemies and overturning the " "earth." msgstr "" +"Wywołaj lokalne trzęsienie ziemi, powalając wrogów i wywracając ziemię." #. ~ description for the sound of spell 'Quake' #: lang/json/SPELL_from_json.py msgid "a deep rumbling" -msgstr "" +msgstr "głębokie dudnienie" #: lang/json/SPELL_from_json.py msgid "Quake Transform" -msgstr "" +msgstr "Trzęsienie Ziemi przemiana" #. ~ Description for Quake Transform #: lang/json/SPELL_from_json.py msgid "causes rubble to be spawned occasionally" -msgstr "" +msgstr "powoduje sporadyczne pojawianie się gruzu" #: lang/json/SPELL_from_json.py msgid "Rock Blast" -msgstr "" +msgstr "Kamienne Uderzenie" #. ~ Description for Rock Blast #: lang/json/SPELL_from_json.py @@ -117215,58 +119673,62 @@ msgid "" "Fire three large rocks at an enemy, causing blunt damage and knocking it " "back." msgstr "" +"Wystrzel trzy duże kamienie w przeciwnika, zadając mu obrażenia obuchowe i " +"odrzucając go w tył." #: lang/json/SPELL_from_json.py msgid "Single Rock Blast" -msgstr "" +msgstr "Pojedyncze Kamienne Uderzenie" #. ~ Description for Single Rock Blast #: lang/json/SPELL_from_json.py msgid "A single portion of the rock blast spell" -msgstr "" +msgstr "Pojedyncza porcja zaklęcia Skalny Podmuch" #: lang/json/SPELL_from_json.py msgid "Rock Blast Push" -msgstr "" +msgstr "Kamienne Uderzenie pchnięcie" #. ~ Description for Rock Blast Push #: lang/json/SPELL_from_json.py msgid "The push portion of the rock blast spell" -msgstr "" +msgstr "Popychająca porcja zaklęcia Skalny Podmuch" #: lang/json/SPELL_from_json.py msgid "Flareup" -msgstr "" +msgstr "Zapłon" #. ~ Description for Flareup #: lang/json/SPELL_from_json.py msgid "" "You channel heat through your hands to severely burn a target you touch." msgstr "" +"Emitujesz ciepło przez swoje ręce, aby poważnie poparzyć cel, którego " +"dotkniesz." #. ~ description for the sound of spell 'Flareup' #. ~ description for the sound of spell 'Burn at Both Ends' #: lang/json/SPELL_from_json.py msgid "skin crackling" -msgstr "" +msgstr "trzaski na skórze" #: lang/json/SPELL_from_json.py msgid "Flarewhip" -msgstr "" +msgstr "Ognisty Bicz" #. ~ Description for Flarewhip #: lang/json/SPELL_from_json.py msgid "You conjure a whip made of solid flame." -msgstr "" +msgstr "Wyczarowujesz bicz z litego płomienia." #. ~ description for the sound of spell 'Flarewhip' #: lang/json/SPELL_from_json.py msgid "whoosh" -msgstr "" +msgstr "łuuusz" #: lang/json/SPELL_from_json.py msgid "Force Blade" -msgstr "" +msgstr "Ostrze Mocy" #. ~ Description for Force Blade #: lang/json/SPELL_from_json.py @@ -117274,6 +119736,8 @@ msgid "" "You shoot a blade of concentrated force in a straight line, cutting " "everything in its path." msgstr "" +"Wystrzeliwujesz ostrze skoncentrowanej mocy w linii prostej, tnąc wszystko " +"na jego drodze." #. ~ Description for Force Shield #: lang/json/SPELL_from_json.py @@ -117281,34 +119745,39 @@ msgid "" "Adds a shield of pure force that protects your body and your clothing from " "attacks." msgstr "" +"Dodaje tarczę z czystej mocy, która chroni twoje ciało i ubranie przed " +"atakami." #: lang/json/SPELL_from_json.py msgid "Samsara" -msgstr "" +msgstr "Samsara" #. ~ Description for Samsara #: lang/json/SPELL_from_json.py msgid "" "You tie your ley-lines to the world's, renewing your flesh as if reborn." msgstr "" +"Wiążesz swoje linie energetyczne z liniami świata, odnawiając swoje ciało " +"jak nowo narodzony." #: lang/json/SPELL_from_json.py msgid "Ice Clave" -msgstr "" +msgstr "Lodowa Klinga" #. ~ Description for Ice Clave #: lang/json/SPELL_from_json.py msgid "Use the unstoppable force from a glacier to cause severe damage." msgstr "" +"Wykorzystaj niepowstrzymaną siłę lodowca, aby zadać poważne obrażenia." #. ~ Description for Ice Clave #: lang/json/SPELL_from_json.py msgid "This is the blunt damage portion of the Ice Clave spell" -msgstr "" +msgstr "To jest część zaklęcia Lodowa Klinga zadająca obrażenia obuchowe." #: lang/json/SPELL_from_json.py msgid "Frozen Winds" -msgstr "" +msgstr "Mroźne Wichry" #. ~ Description for Frozen Winds #: lang/json/SPELL_from_json.py @@ -117316,19 +119785,22 @@ msgid "" "A gust of wind, colder than any Earthly mountaintop, spirals from your " "fingers, damaging and pushing anything in its path." msgstr "" +"Podmuch wiatru, zimniejszy niż jakikolwiek ziemski szczyt górski, rozchodzi " +"się spiralnie od twoich palców, raniąc i popychając wszystko na swojej " +"drodze." #: lang/json/SPELL_from_json.py msgid "Frozen Winds push effect" -msgstr "" +msgstr "Mroźne Wichry efekt pchania" #. ~ Description for Frozen Winds push effect #: lang/json/SPELL_from_json.py msgid "This is the push effect portion of the Frozen Winds spell." -msgstr "" +msgstr "To jest pchająca część efektu zaklęcia Mroźne Wichry." #: lang/json/SPELL_from_json.py msgid "Summon Claygolem" -msgstr "" +msgstr "Przyzwanie Glinianego Golema" #. ~ Description for Summon Claygolem #: lang/json/SPELL_from_json.py @@ -117336,28 +119808,30 @@ msgid "" "Use a golem core as a focus to shape clay into a roughly humanoid shape and " "animate it for some time." msgstr "" +"Użyj rdzenia golema jako punktu skupienia, aby nadać glinie z grubsza " +"humanoidalny kształt i animować ją przez jakiś czas." #: lang/json/SPELL_from_json.py msgid "Give back core" -msgstr "" +msgstr "Oddaj rdzeń" #. ~ Description for Give back core #: lang/json/SPELL_from_json.py msgid "Gives back a golem's core. You should not see this spell" -msgstr "" +msgstr "Zwraca rdzeń golema. Nie powinieneś widzieć tego zaklęcia" #: lang/json/SPELL_from_json.py msgid "Golem Push" -msgstr "" +msgstr "Pchnięcie Golema" #. ~ Description for Golem Push #: lang/json/SPELL_from_json.py msgid "You channel the strength of a golem to push an enemy backward." -msgstr "" +msgstr "Przywołujesz siłę golema, aby odepchnąć przeciwnika do tyłu." #: lang/json/SPELL_from_json.py msgid "Graviton Polarization Damage" -msgstr "" +msgstr "Polaryzacja Grawitonowa Obrażenia" #. ~ Description for Graviton Polarization Damage #: lang/json/SPELL_from_json.py @@ -117365,10 +119839,12 @@ msgid "" "handles the damage part of Graviton Polarization - if you see this something" " went wrong" msgstr "" +"obsługuje część destrukcyjną Polaryzacji Grawitonowej - jeśli widzisz to, " +"coś poszło nie tak" #: lang/json/SPELL_from_json.py msgid "Graviton Polarization" -msgstr "" +msgstr "Polaryzacja Grawitonowa" #. ~ Description for Graviton Polarization #: lang/json/SPELL_from_json.py @@ -117376,24 +119852,27 @@ msgid "" "Changes and amplifies gravitational pull towards a point you choose even " "through walls. Pulls in items and deals bashing damage in its center." msgstr "" +"Zmienia i wzmacnia przyciąganie grawitacyjne do wybranego punktu, nawet " +"przez ściany. Przyciąga przedmioty i zadaje obrażenia od uderzeń w jego " +"centrum." #. ~ description for the sound of spell 'Graviton Polarization' #: lang/json/SPELL_from_json.py msgid "a crack" -msgstr "" +msgstr "trzask" #: lang/json/SPELL_from_json.py msgid "Graviton Polarization centerdamage" -msgstr "" +msgstr "Polaryzacja Grawitonowa centralne obrażenia" #. ~ Description for Graviton Polarization centerdamage #: lang/json/SPELL_from_json.py msgid "handles damage in the extreme center of the Graviton" -msgstr "" +msgstr "odpowiada za uszkodzenia w ekstremalnym centrum grawitonu" #: lang/json/SPELL_from_json.py msgid "Subzero Talons" -msgstr "" +msgstr "Zmrożone Szpony" #. ~ Description for Subzero Talons #: lang/json/SPELL_from_json.py @@ -117401,6 +119880,8 @@ msgid "" "Your fingers stiffen as condensation freezes into claws, intensifying your " "naturally cold touch and protecting your hands from damage." msgstr "" +"Twoje palce sztywnieją, gdy skropliny zamarzają w szpony, intensyfikując " +"twój naturalnie zimny dotyk i chroniąc dłonie przed uszkodzeniem." #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Cold Heart" @@ -117412,10 +119893,12 @@ msgid "" "Harshly drop the temperature of your enemies from the inside, slowing down " "their bloodstreams or even shattering organs." msgstr "" +"Gwałtownie obniż temperaturę wrogów od wewnątrz, spowalniając ich krwiobieg," +" a nawet roztrzaskując organy." #: lang/json/SPELL_from_json.py msgid "Cold Heart slowdown" -msgstr "" +msgstr "Mroźne Serce spowolnienie" #. ~ Description for Cold Heart slowdown #: lang/json/SPELL_from_json.py @@ -117423,10 +119906,12 @@ msgid "" "Causes slowdown from the Cold Heart spell. Subspell; you aren't allowed to " "see it except in debug mode." msgstr "" +"Powoduje spowolnienie w skutek działania zaklęcia Mroźne Serce. Pod-" +"zaklęcie; nie możesz go zobaczyć, chyba że w trybie debugowania." #: lang/json/SPELL_from_json.py msgid "Spear of Light" -msgstr "" +msgstr "Włócznia Światła" #. ~ Description for Spear of Light #: lang/json/SPELL_from_json.py @@ -117434,6 +119919,8 @@ msgid "" "Shoot directed light from your fingertips that is so bright you can see " "through the skin of the targets for an instant." msgstr "" +"Strzelaj z opuszków palców światłem tak jasnym, że możesz przez mgnienie oka" +" widzieć przez skórę celów." #: lang/json/SPELL_from_json.py lang/json/bionic_from_json.py msgid "Railgun" @@ -117445,19 +119932,21 @@ msgid "" "Magnetize a bullet, and fire it at supersonic speeds by applying an opposite" " magnetic force to the bullet. Leaves a trail of sparks" msgstr "" +"Namagnesuj pocisk i wystrzel go z prędkością naddźwiękową poprzez " +"przyłożenie do niego przeciwnej siły magnetycznej. Pozostawia ślad z iskier." #: lang/json/SPELL_from_json.py msgid "Railgun Sparks" -msgstr "" +msgstr "Magnetyczne Iskry" #. ~ Description for Railgun Sparks #: lang/json/SPELL_from_json.py msgid "The spark portion of the Railgun spell" -msgstr "" +msgstr "Iskrząca część zaklęcia Magnetyczne Iskry" #: lang/json/SPELL_from_json.py msgid "Electrolaser" -msgstr "" +msgstr "Elektrolaser" #. ~ Description for Electrolaser #: lang/json/SPELL_from_json.py @@ -117466,10 +119955,13 @@ msgid "" "ionizing air molecules using a high-powered laser beam, then sends a " "powerful half million volt charge down the channel." msgstr "" +"Tworzy przewodzący kanał od dłoni rzucającego aż do celu poprzez jonizację " +"cząsteczek powietrza za pomocą wiązki laserowej o dużej mocy, a następnie " +"wysyła wzdłuż kanału potężny ładunek o napięciu pół miliona woltów." #: lang/json/SPELL_from_json.py msgid "Electrolaser electric damage" -msgstr "" +msgstr "Elektrolaser obrażenia elektryczne" #. ~ Description for Electrolaser electric damage #: lang/json/SPELL_from_json.py @@ -117477,10 +119969,12 @@ msgid "" "Give some electric damage for Electrolaser spell. Subspell; you aren't " "allowed to see it except in debug mode." msgstr "" +"Daj trochę obrażeń elektrycznych dla czaru Elektrolaser. Pod-zaklęcie; nie " +"możesz go zobaczyć, chyba że w trybie debugowania." #: lang/json/SPELL_from_json.py msgid "Overaccelerate" -msgstr "" +msgstr "Nadmierne Przyspieszenie" #. ~ Description for Overaccelerate #: lang/json/SPELL_from_json.py @@ -117488,6 +119982,8 @@ msgid "" "This drastically increases one target's metabolism to dangerous levels, " "causing its body to tear itself apart" msgstr "" +"To drastycznie zwiększa metabolizm jednego celu do niebezpiecznego poziomu, " +"powodując, że jego ciało rozpada się na kawałki." #: lang/json/SPELL_from_json.py lang/json/effects_from_json.py msgid "Overdrive" @@ -117500,24 +119996,27 @@ msgid "" "levels in a self-destructive way. You are a blur amongst your enemies, " "felling them with blows too swift to see." msgstr "" +"Przepływa przez ciebie moc many, zwiększając twoją szybkość do " +"nadprzyrodzonego poziomu w autodestrukcyjny sposób. Jesteś jak smuga wśród " +"swoich wrogów, zadając im ciosy zbyt szybkie, by mogli je dostrzec." #: lang/json/SPELL_from_json.py msgid "Shortwave" -msgstr "" +msgstr "Krótkofalówka" #. ~ Description for Shortwave #. ~ Description for Shortwave 2 #: lang/json/SPELL_from_json.py msgid "Cook nearby monsters (and yourself to an extent)" -msgstr "" +msgstr "Upiecz pobliskie potwory (i siebie do pewnego stopnia)" #: lang/json/SPELL_from_json.py msgid "Shortwave 2" -msgstr "" +msgstr "Krótkofalówka 2" #: lang/json/SPELL_from_json.py msgid "Gamma Burst" -msgstr "" +msgstr "Wybuch Gamma" #. ~ Description for Gamma Burst #: lang/json/SPELL_from_json.py @@ -117525,10 +120024,12 @@ msgid "" "Cause cell damage to everything in a wide area. Fast to cast, but does " "damage slowly." msgstr "" +"Powoduje obrażenia komórkowe wszystkim na dużym obszarze. Szybko się rzuca, " +"ale obrażenia zadaje powoli." #: lang/json/SPELL_from_json.py msgid "Burn at Both Ends" -msgstr "" +msgstr "Zapal Na Obu Końcach" #. ~ Description for Burn at Both Ends #: lang/json/SPELL_from_json.py @@ -117536,24 +120037,27 @@ msgid "" "A candle burns the most brightly at both ends, and yet it burns twice as " "fast." msgstr "" +"Świeca pali się najjaśniej na obu końcach, a jednak spala się dwa razy " +"szybciej." #. ~ Description for Soul Burn #: lang/json/SPELL_from_json.py msgid "This is a description for a spell the player will never see." -msgstr "" +msgstr "To jest opis zaklęcia, którego gracz nigdy nie zobaczy." #: lang/json/SPELL_from_json.py msgid "Soul Afterburner" -msgstr "" +msgstr "Dopalacz Dusz" #. ~ Description for Soul Afterburner #: lang/json/SPELL_from_json.py msgid "You burn a small portion of your soul to gain a large burst of speed." msgstr "" +"Spalasz niewielką część swojej duszy, aby uzyskać duży przypływ prędkości." #: lang/json/SPELL_from_json.py msgid "Storm Chain" -msgstr "" +msgstr "Łańcuch Burz" #. ~ Description for Storm Chain #: lang/json/SPELL_from_json.py @@ -117561,37 +120065,39 @@ msgid "" "You touch an unwilling subject and lightning dances from you to multiple " "nearby enemies." msgstr "" +"Dotykasz niechętnego obiektu, a błyskawice przeskakują od ciebie na wielu " +"pobliskich wrogów." #: lang/json/SPELL_from_json.py msgid "Storm Chain 1" -msgstr "" +msgstr "Łańcuch Burz 1" #. ~ Description for Storm Chain 1 #: lang/json/SPELL_from_json.py msgid "#1 in the storm chain series of effects" -msgstr "" +msgstr "#1 w serii efektów łańcucha burzowego" #: lang/json/SPELL_from_json.py msgid "Storm Chain 2" -msgstr "" +msgstr "Łańcuch Burz 2" #. ~ Description for Storm Chain 2 #: lang/json/SPELL_from_json.py msgid "#2 in the storm chain series of effects" -msgstr "" +msgstr "#2 w serii efektów łańcucha burzowego" #: lang/json/SPELL_from_json.py msgid "Storm Chain 3" -msgstr "" +msgstr "Łańcuch Burz 3" #. ~ Description for Storm Chain 3 #: lang/json/SPELL_from_json.py msgid "#3 in the storm chain series of effects" -msgstr "" +msgstr "#3 w serii efektów łańcucha burzowego" #: lang/json/SPELL_from_json.py msgid "Solar Beam" -msgstr "" +msgstr "Słoneczna Wiązka" #. ~ Description for Solar Beam #: lang/json/SPELL_from_json.py @@ -117599,14 +120105,17 @@ msgid "" "Fire a blast of sunlight in a wide beam, blinding everything in its path and" " leaving it bright enough for you to see for a few seconds." msgstr "" +"Wystrzeliwuje szeroki strumień światła słonecznego, oślepiający wszystko na " +"swojej drodze i pozostawiający jasność wystarczającą, byś mógł widzieć przez" +" kilka sekund." #: lang/json/SPELL_from_json.py lang/json/TOOL_from_json.py msgid "Pocket Sun" msgid_plural "Pocket Suns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Kieszonkowe Słońce" +msgstr[1] "Kieszonkowe Słońca" +msgstr[2] "Kieszonkowych Słońc" +msgstr[3] "Kieszonkowego Słońca" #. ~ Description for Pocket Sun #: lang/json/SPELL_from_json.py @@ -117614,10 +120123,12 @@ msgid "" "You create a stable portal in the fabric of reality to the sun, through " "which you can draw on its light and temperature." msgstr "" +"Tworzysz stabilny portal w tkance rzeczywistości do słońca, przez który " +"możesz czerpać z jego światła i temperatury." #: lang/json/SPELL_from_json.py msgid "Cold Snap" -msgstr "" +msgstr "Przymrozek" #. ~ Description for Cold Snap #: lang/json/SPELL_from_json.py @@ -117625,29 +120136,33 @@ msgid "" "With a snap of your fingers, a target takes cold damage and freezes in " "place." msgstr "" +"Za jednym pstryknięciem palców cel otrzymuje obrażenia od zimna i zamarza w " +"miejscu." #: lang/json/SPELL_from_json.py msgid "Cold Snap Freeze" -msgstr "" +msgstr "Przymrozek - Zamarzanie" #. ~ Description for Cold Snap Freeze #: lang/json/SPELL_from_json.py msgid "Freezes the target monster in place" -msgstr "" +msgstr "Zamraża docelowego potwora w miejscu" #: lang/json/SPELL_from_json.py msgid "Winter Wolf's Call" -msgstr "" +msgstr "Zew Zimowego Wilka" #. ~ Description for Winter Wolf's Call #: lang/json/SPELL_from_json.py msgid "" "Summon your personal pack of winter wolves to freeze and maul your foes." msgstr "" +"Przywołaj swoją osobistą sforę zimowych wilków, które zamrożą i zmasakrują " +"twoich wrogów." #: lang/json/SPELL_from_json.py msgid "Final Grasp" -msgstr "" +msgstr "Ostateczny Uścisk" #. ~ Description for Final Grasp #: lang/json/SPELL_from_json.py @@ -117655,10 +120170,12 @@ msgid "" "In the end, everything succumbs to the grasp of nonexistence and stasis. " "This spell gives the target a foretaste of that." msgstr "" +"W końcu wszystko poddaje się chwytowi nieistnienia i stagnacji. To zaklęcie " +"daje celowi przedsmak tego." #: lang/json/SPELL_from_json.py msgid "Final Grasp slowdown" -msgstr "" +msgstr "Ostateczny Uścisk spowolnienie" #. ~ Description for Final Grasp slowdown #: lang/json/SPELL_from_json.py @@ -117666,10 +120183,12 @@ msgid "" "Removes some moves from an enemy. Subspell; you aren't allowed to see it " "except in debug mode." msgstr "" +"Odejmuje przeciwnikowi nieco ruchów. Pod-zaklęcie; nie możesz go zobaczyć, " +"chyba że w trybie debugowania." #: lang/json/SPELL_from_json.py msgid "Horizon Vortex" -msgstr "" +msgstr "Wir Horyzontu" #. ~ Description for Horizon Vortex #: lang/json/SPELL_from_json.py @@ -117678,10 +120197,13 @@ msgid "" "rather random, and its effects can range from almost nothing to killing all " "hostiles in the area." msgstr "" +"Tworzy chaotyczne pole energetyczne, które razi znajdujących się w nim " +"wrogów. Jest ono raczej losowe, a jego efekty mogą wahać się od prawie " +"niczego do zabicia wszystkich wrogów w okolicy." #: lang/json/SPELL_from_json.py msgid "Horizon Vortex abstract" -msgstr "" +msgstr "Wir Horyzontu abstrakt" #. ~ Description for Horizon Vortex abstract #: lang/json/SPELL_from_json.py @@ -117689,61 +120211,63 @@ msgid "" "Causes some damage in the Horizon Vortex spell. Subspell; you aren't " "allowed to see it except in debug mode." msgstr "" +"Powoduje pewne obrażenia w zaklęciu Wir Horyzontu. Pod-zaklęcie; nie można " +"go zobaczyć, chyba że w trybie debugowania." #: lang/json/SPELL_from_json.py msgid "Horizon Vortex heat damage" -msgstr "" +msgstr "Wir Horyzontu obrażenia cieplne" #: lang/json/SPELL_from_json.py msgid "Horizon Vortex acid damage" -msgstr "" +msgstr "Wir Horyzontu obrażenia kwasowe" #: lang/json/SPELL_from_json.py msgid "Horizon Vortex bash damage" -msgstr "" +msgstr "Wir Horyzontu obrażenia obuchowe" #: lang/json/SPELL_from_json.py msgid "Horizon Vortex pure damage" -msgstr "" +msgstr "Wir Horyzontu czyste obrażenia" #: lang/json/SPELL_from_json.py msgid "Horizon Vortex cold damage" -msgstr "" +msgstr "Wir Horyzontu obrażenia od mrozu" #: lang/json/SPELL_from_json.py msgid "Horizon Vortex cut damage" -msgstr "" +msgstr "Wir Horyzontu obrażenia cięte" #: lang/json/SPELL_from_json.py msgid "Horizon Vortex electric damage" -msgstr "" +msgstr "Wir Horyzontu obrażenia elektryczne" #: lang/json/SPELL_from_json.py msgid "Horizon Vortex stab damage" -msgstr "" +msgstr "Wir Horyzontu obrażenia kłute" #: lang/json/SPELL_from_json.py msgid "Lava Bomb Shrapnel" -msgstr "" +msgstr "Bomba Lawy Szrapnel" #. ~ Description for Lava Bomb Shrapnel #. ~ Description for Lava Bomb Heat #. ~ Description for Lava Bomb Terrain #: lang/json/SPELL_from_json.py msgid "This is a sub spell for the Lava Bomb spell." -msgstr "" +msgstr "Jest to pod-zaklęcie zaklęcia Bomba Lawy." #: lang/json/SPELL_from_json.py msgid "Lava Bomb Heat" -msgstr "" +msgstr "Bomba Lawy Żar" #: lang/json/SPELL_from_json.py msgid "Lava Bomb Terrain" -msgstr "" +msgstr "Bomba Lawy Teren" #: lang/json/SPELL_from_json.py msgid "Lava Bomb" -msgstr "" +msgstr "Bomba Lawy" #. ~ Description for Lava Bomb #: lang/json/SPELL_from_json.py @@ -117752,10 +120276,13 @@ msgid "" "surrounded by hot, solid rock. It shatters upon impact, spraying shards of " "rock and lava everywhere." msgstr "" +"Wyrywasz ziemię pod sobą, by wystrzelić bombę lawy: kulę lawy otoczoną " +"gorącą, litą skałą. Przy uderzeniu roztrzaskuje się, rozrzucając wszędzie " +"odłamki skały i lawy." #: lang/json/SPELL_from_json.py msgid "Pyroclastic Flow" -msgstr "" +msgstr "Spływ Piroklastyczny" #. ~ Description for Pyroclastic Flow #: lang/json/SPELL_from_json.py @@ -117763,10 +120290,11 @@ msgid "" "Pulls up the heat of the Earth, along with considerable smoke mixed with " "ashes." msgstr "" +"Wydobywa ciepło Ziemi, wraz z dużą ilością dymu zmieszanego z popiołem." #: lang/json/SPELL_from_json.py msgid "Pyroclastic Flow smoke" -msgstr "" +msgstr "Spływ Piroklastyczny dym" #. ~ Description for Pyroclastic Flow smoke #: lang/json/SPELL_from_json.py @@ -117774,19 +120302,21 @@ msgid "" "Creates smoke in the area. Subspell; you aren't allowed to see it except in" " debug mode." msgstr "" +"Tworzy dym w okolicy. Pod-zaklęcie; nie możesz go zobaczyć, chyba że w " +"trybie debugowania." #: lang/json/SPELL_from_json.py msgid "Assassin Teleport" -msgstr "" +msgstr "Teleportacja Skrytobójcy" #. ~ Description for Assassin Teleport #: lang/json/SPELL_from_json.py msgid "This is a sub-spell for Assassin Strike. It teleports you." -msgstr "" +msgstr "Jest to pod-zaklęcie dla Ciosu Skrytobójcy. Teleportuje cię." #: lang/json/SPELL_from_json.py msgid "Assassin Toxic Smoke" -msgstr "" +msgstr "Toksyczny Dym Skrytobójcy" #. ~ Description for Assassin Toxic Smoke #: lang/json/SPELL_from_json.py @@ -117794,19 +120324,20 @@ msgid "" "This is a sub-spell for Assassin Strike. It generates toxic smoke in an " "area." msgstr "" +"Jest to pod-zaklęcie dla Ciosu Skrytobójcy. Tworzy toksyczny dym w obszarze." #: lang/json/SPELL_from_json.py msgid "Assassin Strike" -msgstr "" +msgstr "Cios Skrytobójcy" #. ~ Description for Assassin Strike #: lang/json/SPELL_from_json.py msgid "You strike a poisonous blow and disappear in a puff of toxic smoke." -msgstr "" +msgstr "Zadajesz trujący cios i znikasz w kłębach toksycznego dymu." #: lang/json/SPELL_from_json.py msgid "Life Drain" -msgstr "" +msgstr "Drenaż Życia" #. ~ Description for Life Drain #: lang/json/SPELL_from_json.py @@ -117814,10 +120345,12 @@ msgid "" "This spell takes some of a target's life; part of it comes to you in a less-" "potent form." msgstr "" +"To zaklęcie odbiera celowi część jego życia; jego fragment wraca do ciebie w" +" mniej potężnej formie." #: lang/json/SPELL_from_json.py msgid "Life Drain stamina" -msgstr "" +msgstr "Drenaż Życia stamina" #. ~ Description for Life Drain stamina #: lang/json/SPELL_from_json.py @@ -117825,37 +120358,39 @@ msgid "" "Gives you a bit of stamina. Subspell; you aren't allowed to see it except " "in debug mode." msgstr "" +"Daje ci trochę staminy. Pod-zaklęcie; nie możesz go zobaczyć, chyba że w " +"trybie debugowania." #: lang/json/SPELL_from_json.py msgid "Fire Elemental Burnback" -msgstr "" +msgstr "Żywiołak Ognia dopalenie" #. ~ Description for Fire Elemental Burnback #: lang/json/SPELL_from_json.py msgid "The burnback effect from the Fire Elemental Attunement." -msgstr "" +msgstr "Efekt wypalenia z Dostrojenia do Żywiołu Ognia." #: lang/json/SPELL_from_json.py msgid "Gaia's Chosen Thorns" -msgstr "" +msgstr "Ciernie Wybrańca Gai" #. ~ Description for Gaia's Chosen Thorns #: lang/json/SPELL_from_json.py msgid "The thorns effect from the Gaia's Chosen Attunement." -msgstr "" +msgstr "Efekt cierni z Dostrojenia Wybrańca Gai." #: lang/json/SPELL_from_json.py msgid "Ice Elemental Cold Damage" -msgstr "" +msgstr "Żywiołak Lodu Obrażenia Zimna" #. ~ Description for Ice Elemental Cold Damage #: lang/json/SPELL_from_json.py msgid "The cold damage effect from the Ice Elemental Attunement." -msgstr "" +msgstr "Efekt obrażeń od zimna z Dostrojenia do Żywiołu Lodu." #: lang/json/SPELL_from_json.py msgid "Soul Pressure" -msgstr "" +msgstr "Ciśnienie Dusz" #. ~ Description for Soul Pressure #: lang/json/SPELL_from_json.py @@ -117863,29 +120398,34 @@ msgid "" "This is a spell that represents the Soulfire putting a burning pressure on " "nearby opponents. If you are seeing this spell, you have debugged it in." msgstr "" +"Jest to zaklęcie, które przedstawia Ogień Dusz wywierający palący nacisk na " +"pobliskich przeciwników. Jeśli widzisz to zaklęcie, to znaczy, że je " +"zdebugowałeś." #. ~ description for the sound of spell 'Soul Pressure' #: lang/json/SPELL_from_json.py msgid "a grunt and a sizzle" -msgstr "" +msgstr "stęknięcie i skwierczenie" #: lang/json/SPELL_from_json.py msgid "Fire Elemental Zapback" -msgstr "" +msgstr "Żywiołak Ognia porażenie zwrotne" #. ~ Description for Fire Elemental Zapback #: lang/json/SPELL_from_json.py msgid "The zapback effect from the Storm Elemental Attunement." -msgstr "" +msgstr "Efekt porażenia zwrotnego z Dostrojenia do Żywiołu Burzy." #: lang/json/SPELL_from_json.py msgid "Void Claws" -msgstr "" +msgstr "Szpony Pustki" #. ~ Description for Void Claws #: lang/json/SPELL_from_json.py msgid "This is a spell that causes a DoT effect whenever you hit." msgstr "" +"Jest to zaklęcie, które powoduje efekt obrażeń rozłożonych w czasie przy " +"każdym trafieniu." #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Mana Siphon" @@ -117897,33 +120437,36 @@ msgid "" "This is the spell portion of the mana siphon series of mutations. If you " "have this spell you probably debugged it in." msgstr "" +"To jest część zaklęcia z serii mutacji syfonu many. Jeśli masz to zaklęcie, " +"to prawdopodobnie je zdebugowałeś." #: lang/json/SPELL_from_json.py msgid "Destruction Ray" -msgstr "" +msgstr "Promień Zniszczenia" #. ~ Description for Destruction Ray #: lang/json/SPELL_from_json.py msgid "Pre-nerf flaming eye's destruction ray." -msgstr "" +msgstr "Promień zniszczenia Płonącego Oka sprzed osłabienia." #: lang/json/SPELL_from_json.py msgid "Flaming Eye Damage" -msgstr "" +msgstr "Obrażenia Płonącego Oka" #. ~ Description for Flaming Eye Damage #: lang/json/SPELL_from_json.py msgid "Damage with the destruction ray." -msgstr "" +msgstr "Obrażenia od promienia zniszczenia." #: lang/json/SPELL_from_json.py msgid "Flaming Eye Notify" -msgstr "" +msgstr "Powiadomienie Płonącego Oka" #. ~ Description for Flaming Eye Notify #: lang/json/SPELL_from_json.py msgid "Flaming Eye warms up before activating its destruction ray." msgstr "" +"Płonące Oko rozgrzewa się przed aktywacją swojego promienia zniszczenia." #: lang/json/TOOLMOD_from_json.py msgid "base toolmod" @@ -118056,6 +120599,9 @@ msgid "" "A flat case with neck strap used to carry items such as currency, " "identification documents, laminated cards, and other small items." msgstr "" +"Płaski pojemnik z pakiem na szyję używany do noszenia rzeczy takich jak " +"pieniądze, dokumenty identyfikacyjne, karty laminowane i inne małe " +"przedmioty." #: lang/json/TOOL_ARMOR_from_json.py msgid "lanyard" @@ -118071,6 +120617,8 @@ msgid "" "A flat clear plastic sleeve for identification documents, laminated cards, " "and other small items. It has a neck strap attached." msgstr "" +"Płaski przezroczysty plastikowy pokrowiec na dokumenty identyfikacyjne, " +"laminowane karty i inne drobne przedmioty. Posiada dołączony pasek na szyję." #: lang/json/TOOL_ARMOR_from_json.py msgid "mining helmet" @@ -118100,6 +120648,8 @@ msgid "" "turn the flashlight on and provide light, assuming it is charged with " "batteries." msgstr "" +"To hełm górniczy z wydajną lampą LED. Użyj go by włączyć lampę i zapewnić " +"sobie oświetlenie, o ile ma baterie." #: lang/json/TOOL_ARMOR_from_json.py msgid "mining helmet (on)" @@ -118125,7 +120675,7 @@ msgstr[3] "hełm górniczy (wł.)" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -118169,7 +120719,7 @@ msgstr "Wyłącz" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -118183,6 +120733,8 @@ msgid "" "This is a mining helmet with a heavy-duty LED flashlight. The flashlight is" " turned on, and continually draining its batteries. Use it to turn it off." msgstr "" +"To hełm górniczy z wydajną lampą LED. Lampę ma włączoną i stale drenuje " +"baterie. Użyj go by wyłączyć." #: lang/json/TOOL_ARMOR_from_json.py msgid "game watch" @@ -118649,17 +121201,17 @@ msgstr[3] "" #. ~ Use action menu_text for EOD helmet. #: lang/json/TOOL_ARMOR_from_json.py msgid "Turn on headlamps" -msgstr "" +msgstr "Włącz reflektor czołowy" #. ~ Use action msg for EOD helmet. #: lang/json/TOOL_ARMOR_from_json.py msgid "\"Activating illumination.\"" -msgstr "" +msgstr "\"Aktywacja oświetlenia\"." #. ~ Use action need_charges_msg for EOD helmet. #: lang/json/TOOL_ARMOR_from_json.py msgid "\"Illumination disabled, low power.\"" -msgstr "" +msgstr "\"Oświetlenie wyłączone, niskie zasilanie\"." #. ~ Description for EOD helmet #: lang/json/TOOL_ARMOR_from_json.py @@ -118685,12 +121237,12 @@ msgstr[3] "" #. ~ Use action menu_text for EOD helmet (on). #: lang/json/TOOL_ARMOR_from_json.py msgid "Turn off headlamps" -msgstr "" +msgstr "Wyłącz reflektor czołowy" #. ~ Use action msg for EOD helmet (on). #: lang/json/TOOL_ARMOR_from_json.py msgid "\"Disabling illumination.\"" -msgstr "" +msgstr "\"Dezaktywacja oświetlenia\"." #: lang/json/TOOL_ARMOR_from_json.py msgid "RM13 combat armor" @@ -118744,7 +121296,7 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py #, no-python-format msgid "A LED light in the %s flickers on." -msgstr "" +msgstr "Zapala się dioda LED w %s." #. ~ Use action need_charges_msg for 5-point anchor. #. ~ Use action need_charges_msg for malfunctioning 5-point anchor. @@ -118774,7 +121326,7 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py #, no-python-format msgid "The %s LED light flickers off." -msgstr "" +msgstr "Dioda LED w %s gaśnie." #. ~ Description for 5-point anchor (on) #: lang/json/TOOL_ARMOR_from_json.py @@ -118862,7 +121414,7 @@ msgstr[3] "" #. ~ Use action msg for phase immersion suit (on). #: lang/json/TOOL_ARMOR_from_json.py msgid "Suit shutting down." -msgstr "" +msgstr "Kombinezon wyłącza się." #. ~ Description for phase immersion suit (on) #: lang/json/TOOL_ARMOR_from_json.py @@ -119334,7 +121886,7 @@ msgstr[1] "system zasilania w stymulanty RX11" msgstr[2] "system zasilania w stymulanty RX11" msgstr[3] "system zasilania w stymulanty RX11" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -119937,13 +122489,13 @@ msgstr[3] "" #. ~ Use action menu_text for turtleneck shirt. #: lang/json/TOOL_ARMOR_from_json.py msgid "Roll neck" -msgstr "" +msgstr "Zwiń kołnierz" #. ~ Use action msg for turtleneck. #. ~ Use action msg for turtleneck (rolled). #: lang/json/TOOL_ARMOR_from_json.py msgid "You adjust the neck and collar of the turtleneck." -msgstr "" +msgstr "Regulujesz szyję i kołnierz golfu." #. ~ Description for turtleneck #: lang/json/TOOL_ARMOR_from_json.py @@ -119966,12 +122518,13 @@ msgstr[3] "" #. ~ Use action menu_text for turtleneck shirt (rolled). #: lang/json/TOOL_ARMOR_from_json.py msgid "Unroll neck" -msgstr "" +msgstr "Rozwiń kołnierz" #. ~ Description for turtleneck (rolled) #: lang/json/TOOL_ARMOR_from_json.py msgid "This wool turtleneck's neck is rolled out of the way of the mouth." msgstr "" +"Szyja tego wełnianego golfu jest wywinięta tak, aby nie przeszkadzać ustom." #: lang/json/TOOL_ARMOR_from_json.py msgid "turtleneck shirt" @@ -119985,7 +122538,7 @@ msgstr[3] "" #. ~ Use action msg for turtleneck shirt (rolled). #: lang/json/TOOL_ARMOR_from_json.py msgid "You adjust the neck and collar of the turtleneck shirt." -msgstr "" +msgstr "Dostosowujesz szyję i kołnierzyk koszuli golfowej." #. ~ Description for turtleneck shirt #: lang/json/TOOL_ARMOR_from_json.py @@ -119993,6 +122546,8 @@ msgid "" "A tasteful cotton turtleneck shirt, thick for a shirt, thin for a sweater " "and completely lacking storage." msgstr "" +"A tasteful cotton turtleneck shirt, thick for a shirt, thin for a sweater " +"and completely lacking storage." #: lang/json/TOOL_ARMOR_from_json.py msgid "turtleneck shirt (rolled)" @@ -120005,7 +122560,7 @@ msgstr[3] "" #. ~ Description for turtleneck shirt (rolled) #: lang/json/TOOL_ARMOR_from_json.py msgid "This turtleneck shirt's neck is rolled out of the way of the mouth." -msgstr "" +msgstr "Kołnierz koszulki z golfem jest wywinięty poza obręb ust." #: lang/json/TOOL_ARMOR_from_json.py msgid "ski mask" @@ -120081,17 +122636,17 @@ msgstr[1] "nauszniki strzeleckie" msgstr[2] "nauszniki strzeleckie" msgstr[3] "nauszniki strzeleckie" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "Włączasz nauszniki." -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "Baterie w nausznikach są wyczerpane." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -120104,7 +122659,7 @@ msgstr "" "będą blokować dźwięki powyżej pewnego poziomu decybeli. Obecnie nauszniki są" " wyłączone." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -120196,7 +122751,7 @@ msgstr[3] "hełm do tłumienia zamieszek" #. ~ Use action menu_text for motorcycle helmet. #: lang/json/TOOL_ARMOR_from_json.py msgid "Raise visor" -msgstr "" +msgstr "Unieś wizjer" #. ~ Description for riot helmet #: lang/json/TOOL_ARMOR_from_json.py @@ -120217,7 +122772,7 @@ msgstr[3] "hełmy do tłumienia zamieszek (uniesiony wizjer)" #. ~ Use action menu_text for motorcycle helmet (raised visor). #: lang/json/TOOL_ARMOR_from_json.py msgid "Lower visor" -msgstr "" +msgstr "Opuść wizjer" #. ~ Description for riot helmet (raised visor) #: lang/json/TOOL_ARMOR_from_json.py @@ -120352,7 +122907,7 @@ msgstr "" #. ~ Use action need_charges_msg for Foodperson mask. #: lang/json/TOOL_ARMOR_from_json.py msgid "The mask's batteries are dead." -msgstr "" +msgstr "Baterie w masce są wyczerpane." #. ~ Description for Foodperson mask #: lang/json/TOOL_ARMOR_from_json.py @@ -120378,10 +122933,9 @@ msgstr[3] "" #. ~ Use action msg for military flight helmet. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the flight helmet on." -msgstr "" +msgstr "Włączasz hełm lotniczy." #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -120400,6 +122954,17 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" +"Wojskowy hełm lotniczy z zestawem ledowych urządzeń błyskających od czasu do" +" czasu. Wyposażony w wizjer, mikrofon i system tłumienia hałasu. Hełm " +"wyposażony jest również w plastikowe szyny pozwalające na różne obciążenia." + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -120411,12 +122976,12 @@ msgstr[3] "" #. ~ Use action menu_text for Combo cover. #: lang/json/TOOL_ARMOR_from_json.py msgid "Salute" -msgstr "" +msgstr "Salutuj" #. ~ Use action msg for Combo cover. #: lang/json/TOOL_ARMOR_from_json.py msgid "You bring your hand to your cover and issue a salute." -msgstr "" +msgstr "Podnosisz rękę do osłony i salutujesz." #. ~ Description for Combo cover #: lang/json/TOOL_ARMOR_from_json.py @@ -120424,6 +122989,8 @@ msgid "" "A military officer's combo cover, or peaked cap. It conveys an air of " "authority, while keeping the sun out of your eyes." msgstr "" +"Wojskowa czapka oficerska z daszkiem. Zapewnia aurę autorytetu, jednocześnie" +" chroniąc oczy przed słońcem." #: lang/json/TOOL_ARMOR_from_json.py msgid "FB51 optical cloak" @@ -120442,7 +123009,7 @@ msgstr "Twoja narzuta optyczna miga i staje się przezroczysta." #: lang/json/TOOL_ARMOR_from_json.py #, no-python-format msgid "You don't have enough UPS charges to turn on the %s" -msgstr "" +msgstr "Nie masz wystarczającej ilości ładunku w UPS, aby włączyć %s" #. ~ Description for FB51 optical cloak #: lang/json/TOOL_ARMOR_from_json.py @@ -120468,7 +123035,7 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py #, no-python-format msgid "The %s flickers for a moment as it becomes opaque." -msgstr "" +msgstr "%s migocze przez chwilę i staje się nieprzejrzysty." #. ~ Description for FB51 optical cloak (on) #: lang/json/TOOL_ARMOR_from_json.py @@ -120492,13 +123059,13 @@ msgstr[3] "" #. ~ Use action menu_text for head bandana. #: lang/json/TOOL_ARMOR_from_json.py msgid "Cover mouth" -msgstr "" +msgstr "Zasłoń usta" #. ~ Use action msg for head bandana. #: lang/json/TOOL_ARMOR_from_json.py #, no-python-format msgid "You adjust the %s to cover your mouth." -msgstr "" +msgstr "Regulujesz x tak, aby zakryć usta." #. ~ Description for head bandana #: lang/json/TOOL_ARMOR_from_json.py @@ -120551,13 +123118,13 @@ msgstr[3] "bandana" #. ~ Use action menu_text for bandana. #: lang/json/TOOL_ARMOR_from_json.py msgid "Cover head" -msgstr "" +msgstr "Zasłoń głowę" #. ~ Use action msg for bandana. #: lang/json/TOOL_ARMOR_from_json.py #, no-python-format msgid "You adjust the %s to cover your head." -msgstr "" +msgstr "Regulujesz %s tak, aby zakryć głowę." #. ~ Description for bandana #: lang/json/TOOL_ARMOR_from_json.py @@ -120582,7 +123149,7 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py #, no-python-format msgid "The %s engages." -msgstr "" +msgstr "%s uruchamia się." #. ~ Description for combat exoskeleton #: lang/json/TOOL_ARMOR_from_json.py @@ -120622,7 +123189,7 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py #, no-python-format msgid "The %s armor disengages." -msgstr "" +msgstr "%s rozłącza się." #. ~ Description for combat exoskeleton (on) #: lang/json/TOOL_ARMOR_from_json.py @@ -120873,7 +123440,7 @@ msgstr[1] "dudy" msgstr[2] "dudy" msgstr[3] "dudy" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -121013,6 +123580,9 @@ msgid "" "as 'the jar' due to its unusual clear polymer canopy that leaves its " "wearer's face visible." msgstr "" +"Uniwersalny hełm bojowy przeznaczony dla załogantów UICA. Powszechnie znany " +"jako \"słoik\" ze względu na jego niezwykłą przezroczystą polimerową czaszę," +" która pozostawia widoczną twarz użytkownika." #: lang/json/TOOL_ARMOR_from_json.py msgid "caster" @@ -121025,7 +123595,7 @@ msgstr[3] "zestawu kółek" #. ~ Description for caster #: lang/json/TOOL_ARMOR_from_json.py msgid "A generic techno doodad used to cast spells." -msgstr "" +msgstr "Generyczny techno-gadżet służący do rzucania zaklęć." #: lang/json/TOOL_ARMOR_from_json.py msgid "hologram transposition caster" @@ -121151,7 +123721,7 @@ msgstr[3] "" #. ~ Use action msg for hazardous environment helmet. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the helmet's headlamp on." -msgstr "" +msgstr "Włączasz latarkę czołową kasku." #. ~ Description for hazardous environment helmet #: lang/json/TOOL_ARMOR_from_json.py @@ -121268,12 +123838,12 @@ msgstr[3] "" #. ~ Use action menu_text for portable virtual reality rig. #: lang/json/TOOL_ARMOR_from_json.py msgid "power on holosuite" -msgstr "" +msgstr "włącz holodek" #. ~ Use action msg for portable virtual reality rig. #: lang/json/TOOL_ARMOR_from_json.py msgid "The holosuite comes to life around you." -msgstr "" +msgstr "Holoprojekcja ożywa wokół Ciebie." #. ~ Use action need_charges_msg for portable virtual reality rig. #. ~ Use action need_charges_msg for laptop computer. @@ -121305,7 +123875,7 @@ msgstr[3] "" #. ~ Use action msg for vr rig - holosuite deployed. #: lang/json/TOOL_ARMOR_from_json.py msgid "You power down the virtual overlay." -msgstr "" +msgstr "Wyłączasz wirtualną nakładkę." #: lang/json/TOOL_ARMOR_from_json.py msgid "Magellan helmet CA." @@ -121325,6 +123895,13 @@ msgid "" "Although not armored as such, it's strong enough to handle minor blunt " "impacts." msgstr "" +"Wysokiej jakości hełm egzokombinezonu Magellana, przystosowany do radzenia " +"sobie z mroźnym, ale zdatnym do oddychania powietrzem Salusa IV. Oprócz " +"funkcji podtrzymywania życia, posiada niewielką nakładkę na interfejs " +"użytkownika rzeczywistości rozszerzonej oraz wysuwany, pozłacany wizjer, " +"chroniący przed odblaskami i promieniowaniem UV. Mimo, że nie jest " +"opancerzony jako taki, jest wystarczająco wytrzymały, aby poradzić sobie z " +"niewielkimi tępymi uderzeniami." #: lang/json/TOOL_ARMOR_from_json.py msgid "Magellan helmet CA. (on)" @@ -121341,6 +123918,9 @@ msgid "" "tech garment are currently active, and continuously draining battery power." " Use it to turn them off." msgstr "" +"Jednostki kontroli temperatury i nakładki rozszerzonej rzeczywistości w tym " +"zaawansowanym technologicznie ubraniu są aktualnie aktywne i stale pobierają" +" energię z baterii. Użyj go, aby je wyłączyć." #: lang/json/TOOL_ARMOR_from_json.py msgid "frontier cryomask" @@ -121358,6 +123938,11 @@ msgid "" " its original functions have been discarded and it offers no noticeable " "protection against noxious fumes or other environmental hazards." msgstr "" +"Zwykły, przemysłowo drukowany aparat oddechowy został sprytnie przerobiony " +"na przenośny ogrzewacz powietrza. Choć odpowiednio chroni przed zimnem, " +"większość jego pierwotnych funkcji została utracona i nie oferuje on żadnej " +"zauważalnej ochrony przed szkodliwymi oparami lub innymi zagrożeniami " +"środowiskowymi." #: lang/json/TOOL_ARMOR_from_json.py msgid "frontier cryomask (on)" @@ -121373,6 +123958,8 @@ msgid "" "The heater of this high-tech garment is currently active, and continuously " "draining battery power. Use it to turn the heat off." msgstr "" +"Grzejnik tej zaawansowanej technologicznie odzieży jest w danej chwili " +"aktywny i stale pobiera energię z baterii. Użyj go, aby wyłączyć ogrzewanie." #: lang/json/TOOL_ARMOR_from_json.py msgid "Magellan exosuit" @@ -121389,6 +123976,9 @@ msgid "" "\n" "An integral battery allows the suit to operate for up to 34 hours, but complicates field recharging." msgstr "" +"Wysokiej jakości, cywilny kombinezon do pracy w przestrzeni kosmicznej, często używany przez uznane stowarzyszenia badań i eksploracji. Zaprojektowany, aby wspierać eksplorację trudnego terenu, oferuje dobrą ochronę przed typowymi zagrożeniami środowiskowymi, takimi jak ekstremalne temperatury, niegościnna atmosfera i promieniowanie świetlne. Ramiona i dłonie pozostają stosunkowo nieobciążone, co ułatwia manipulowanie przyrządami naukowymi.\n" +"\n" +"Zintegrowany akumulator pozwala na pracę kombinezonu do 34 godzin, ale utrudnia ładowanie w terenie." #: lang/json/TOOL_ARMOR_from_json.py msgid "Magellan exosuit (on)" @@ -121415,6 +124005,11 @@ msgid "" "insulation allows the suit to function with unrivaled efficiency, but also " "makes all types of movement difficult." msgstr "" +"Wytrzymały kombinezon przeznaczony do ochrony przed mrozem, wykonany z pary " +"kombinezonów, które zostały utkane wokół ciężkiej warstwy izolacyjnej i " +"poprzecinane rurkami termicznymi jednostki termoregulacyjnej. Gruba izolacja" +" pozwala kombinezonowi funkcjonować z niezrównaną wydajnością, ale również " +"utrudnia wszelkie ruchy." #: lang/json/TOOL_ARMOR_from_json.py msgid "frontier cryo suit (on)" @@ -121439,6 +124034,9 @@ msgid "" "your spinal cord, this device improves your overall physique and provides " "basic information on your surroundings." msgstr "" +"Standardowe wydanie C.R.I.T. Ogólnoinżynieryjnego Urządzenia Wspomagającego." +" Podłączone do twojego rdzenia kręgowego, urządzenie to poprawia twoją " +"ogólną kondycję i dostarcza podstawowych informacji o twoim otoczeniu." #: lang/json/TOOL_ARMOR_from_json.py msgid "CRIT gas mask (off)" @@ -121451,12 +124049,12 @@ msgstr[3] "" #. ~ Use action msg for CRIT gas mask (off). #: lang/json/TOOL_ARMOR_from_json.py msgid "CRIT HUD booting up…" -msgstr "" +msgstr "CRIT HUD uruchamia się…" #. ~ Use action need_charges_msg for CRIT gas mask (off). #: lang/json/TOOL_ARMOR_from_json.py msgid "Power levels too low for safe boot up" -msgstr "" +msgstr "Poziomy mocy zbyt niskie dla bezpiecznego rozruchu" #. ~ Description for CRIT gas mask (off) #: lang/json/TOOL_ARMOR_from_json.py @@ -121467,6 +124065,12 @@ msgid "" "wizardry allow for enhanced oxygen intake and safety even under bombardment." " It has an integrated HUD and the option to turn it on for more features." msgstr "" +"Jest to mocno zmodyfikowana maska przeciwgazowa Spec Ops, wyposażona w " +"najwyższej klasy elektronikę i wyłożona kevlarem dla dodatkowej ochrony, aby" +" głowa pozostawała na swoim miejscu. Różne filtry i inne zaawansowane " +"technologicznie rozwiązania pozwalają na lepsze pobieranie tlenu i " +"bezpieczeństwo nawet podczas bombardowania. Posiada zintegrowany HUD oraz " +"możliwość włączenia go w celu uzyskania większej ilości funkcji." #: lang/json/TOOL_ARMOR_from_json.py msgid "CRIT gas mask (on)" @@ -121479,7 +124083,7 @@ msgstr[3] "" #. ~ Use action msg for CRIT gas mask (on). #: lang/json/TOOL_ARMOR_from_json.py msgid "CRIT HUD deactivating." -msgstr "" +msgstr "CRIT HUD dezaktywuje się." #. ~ Description for CRIT gas mask (on) #: lang/json/TOOL_ARMOR_from_json.py @@ -121487,6 +124091,8 @@ msgid "" "This a heavily modified gas mask. It is currently on and draining power for" " the HUD, low-level night vision and other protective elements." msgstr "" +"To jest mocno zmodyfikowana maska przeciwgazowa. Obecnie jest włączona i " +"pobiera energię dla HUD, noktowizora i innych elementów ochronnych." #: lang/json/TOOL_ARMOR_from_json.py msgid "CRIT EM vest (off)" @@ -121499,12 +124105,12 @@ msgstr[3] "" #. ~ Use action msg for CRIT EM vest (off). #: lang/json/TOOL_ARMOR_from_json.py msgid "CRIT EM booting up…" -msgstr "" +msgstr "CRIT EM uruchamia się…" #. ~ Use action need_charges_msg for CRIT EM vest (off). #: lang/json/TOOL_ARMOR_from_json.py msgid "Power levels too low for safe bootup…" -msgstr "" +msgstr "Poziomy mocy zbyt niskie dla bezpiecznego rozruchu" #. ~ Description for CRIT EM vest (off) #: lang/json/TOOL_ARMOR_from_json.py @@ -121515,6 +124121,12 @@ msgid "" "and maneuverability. Turn it on for suit mode, extra protection and " "movement." msgstr "" +"Kamizelka Wspomaganego Ruchu jest wyposażona w zaawansowane technologicznie " +"włókna i reaktywne serwomechanizmy, które chronią użytkownika i wspomagają " +"jego ruch kosztem wysokiego zużycia energii. Jest ona powszechnie noszona " +"przez jednostki specjalne C.R.I.T. ze względu na łatwość użycia i " +"manewrowania. Włącz go, aby uzyskać tryb kombinezonu, dodatkową ochronę i " +"możliwość ruchu." #: lang/json/TOOL_ARMOR_from_json.py msgid "CRIT EM vest (on)" @@ -121527,12 +124139,12 @@ msgstr[3] "" #. ~ Use action menu_text for CRIT EM vest (on). #: lang/json/TOOL_ARMOR_from_json.py msgid "Turn off armor" -msgstr "" +msgstr "Wyłącz zbroję" #. ~ Use action msg for CRIT EM vest (on). #: lang/json/TOOL_ARMOR_from_json.py msgid "CRIT EM powering off…" -msgstr "" +msgstr "CRIT EM wyłącza się…" #. ~ Description for CRIT EM vest (on) #: lang/json/TOOL_ARMOR_from_json.py @@ -121543,6 +124155,12 @@ msgid "" " power usage. It is commonly worn by C.R.I.T Spec Ops. This vest is " "currently in suit form and draining your UPS power at high rates." msgstr "" +"Kamizelka Spec Ops Wspomaganego Ruchu jest wyposażona w zaawansowane " +"technologicznie włókna, reaktywne serwomechanizmy i generator pompujący " +"skrystalizowany płyn, który chroni użytkownika przed większością ciężkich " +"sytuacji bojowych kosztem ekstremalnego zużycia energii. Jest ona " +"powszechnie noszona przez jednostki specjalne C.R.I.T. Ta kamizelka jest " +"obecnie w formie kombinezonu i pobiera duże ilości energii z twojego UPS." #: lang/json/TOOL_ARMOR_from_json.py msgid "CRIT helmet (off)" @@ -121556,7 +124174,7 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py #, no-python-format msgid "You turn the %s on." -msgstr "" +msgstr "Włączasz %s." #. ~ Description for CRIT helmet (off) #: lang/json/TOOL_ARMOR_from_json.py @@ -121564,6 +124182,8 @@ msgid "" "A standard-issue helmet. Protects the noggin and has a stretch of insulated" " steel mesh for neck warmth and protection." msgstr "" +"Standardowy hełm. Chroni łepetynę i posiada warstwę izolowanej siatki " +"stalowej zapewniającej ciepło i ochronę szyi." #: lang/json/TOOL_ARMOR_from_json.py msgid "CRIT helmet (on)" @@ -121586,6 +124206,9 @@ msgid "" " steel mesh for neck warmth and protection. A tactically dim flashlight is " "attached to the side. This light is currently on and drawing power." msgstr "" +"Standardowy hełm. Chroni łepetynę i ma elastyczną, izolowaną siatkę stalową," +" zapewniającą ciepło i ochronę szyi. Z boku przymocowana jest taktycznie " +"przyciemniona latarka. Ta latarka jest obecnie włączona i pobiera prąd." #: lang/json/TOOL_ARMOR_from_json.py msgid "wet bandana" @@ -121601,6 +124224,8 @@ msgid "" "A dampened cotton bandana, worn over the mouth for a extra protection from " "dust and other contaminants." msgstr "" +"Zwilżona bawełniana bandana, noszona na ustach dla dodatkowej ochrony przed " +"kurzem i innymi zanieczyszczeniami." #. ~ Description for Holy Shield #: lang/json/TOOL_ARMOR_from_json.py @@ -121608,6 +124233,8 @@ msgid "" "A Crusader's magical shield, enhanced to protect the Crusader from all that " "stands in their way." msgstr "" +"Magiczna tarcza Krzyżowca, ulepszona, by chronić go przed wszystkim, co " +"stanie mu na drodze." #: lang/json/TOOL_ARMOR_from_json.py msgid "Bag of Infinite Throwing Knives" @@ -121623,6 +124250,8 @@ msgid "" "This bag conjures a magical throwing knife on activation. Only refills when" " worn." msgstr "" +"Ta torba wyczarowuje magiczny nóż do rzucania po aktywacji. Napełnia się " +"tylko podczas noszenia." #: lang/json/TOOL_ARMOR_from_json.py msgid "magic leather belt" @@ -121648,12 +124277,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " "doubles the wearer's base strength." msgstr "" +"Mityczny pas Thora, boga gromów. A przynajmniej tak się wydaje. Podwaja on " +"podstawową siłę użytkownika." #: lang/json/TOOL_ARMOR_from_json.py msgid "lesser dimensional toolbelt" @@ -121670,6 +124301,9 @@ msgid "" "access pouches. Like all dimensional spaces, they hold more than they " "should with a fair weight reduction." msgstr "" +"Solidny pas roboczy, który mieści się wokół twojej talii, wyposażony w łatwo" +" dostępne sakiewki. Jak wszystkie przestrzenie wielowymiarowe, mieści więcej" +" niż powinien przy dość znacznej redukcji wagi." #: lang/json/TOOL_ARMOR_from_json.py msgid "greater dimensional toolbelt" @@ -121686,6 +124320,9 @@ msgid "" "access pouches. Like all dimensional spaces, they hold far more than they " "should with a substantial weight reduction." msgstr "" +"Wytrzymały pas roboczy, który mieści się wokół twojej talii, wyposażony w " +"łatwo dostępne sakiewki. Jak wszystkie przestrzenie wielowymiarowe, mieści " +"dużo więcej niż powinien przy pokaźnej redukcji wagi." #: lang/json/TOOL_ARMOR_from_json.py msgid "Belt of Weaponry" @@ -121702,6 +124339,9 @@ msgid "" "weapon into it in the blink of an eye, and it seemingly stores them " "somewhere else." msgstr "" +"Szeroki pas, który pasuje do twojej talii, w którym w mgnieniu oka możesz " +"schować lub przytroczyć doń dowolną broń, a on najwyraźniej przechowuje ją " +"gdzie indziej." #: lang/json/TOOL_ARMOR_from_json.py msgid "Belt of The Iron Whip" @@ -121717,6 +124357,8 @@ msgid "" "You grab the belt and it uncoils to become a flexible metal whip in your " "hand!" msgstr "" +"Chwytasz za pasek, a on rozwija się i staje się elastycznym metalowym biczem" +" w twojej ręce!" #. ~ Description for Belt of The Iron Whip #: lang/json/TOOL_ARMOR_from_json.py @@ -121724,6 +124366,8 @@ 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 "" +"Pleciony, ale elastyczny pas, który wydaje się być wykonany z metalu. Możesz" +" go aktywować, aby przekształcić go w bicz i pociąć nim swoich wrogów." #: lang/json/TOOL_ARMOR_from_json.py msgid "escape boots" @@ -121733,7 +124377,7 @@ msgstr[1] "awaryjne buty ratunkowe" msgstr[2] "awaryjne buty ratunkowe" msgstr[3] "awaryjne buty ratunkowe" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -121781,6 +124425,9 @@ msgid "" "the top, silver accentuates the intricate design. It protects your body " "with a light aura to reduce damage you take." msgstr "" +"Lekki, ale niezwykle wytrzymały stalowy karwasz z ozdobną tarczą " +"wygrawerowaną na wierzchu, z misternym wzorem podkreślonym srebrem. Chroni " +"twoje ciało lekką aurą, redukując obrażenia, które otrzymujesz." #: lang/json/TOOL_ARMOR_from_json.py msgid "bracer of greater defense" @@ -121797,6 +124444,9 @@ msgid "" "the top, gold accentuates the intricate design. It protects your body with " "a strong aura to reduce damage you take." msgstr "" +"Lekki, ale niezwykle wytrzymały stalowy karwasz z ozdobną tarczą " +"wygrawerowaną na wierzchu, z misternym wzorem podkreślonym złotem. Chroni " +"twoje ciało silną aurą, redukując obrażenia, które otrzymujesz." #: lang/json/TOOL_ARMOR_from_json.py msgid "lesser bracer of lightning" @@ -121814,6 +124464,10 @@ msgid "" "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 "" +"Lekki, ale niezwykle wytrzymały stalowy karwasz z ozdobną wiązką błyskawic " +"wygrawerowaną na wierzchu, z misternym wzorem podkreślonym srebrem. Chroni " +"twoje ciało lekką aurą, redukując obrażenia od elektryczności, a także " +"pozwala na wyzwolenie zaklęcia Porażenie 3 razy dziennie." #: lang/json/TOOL_ARMOR_from_json.py msgid "greater bracer of lightning" @@ -121831,6 +124485,10 @@ msgid "" "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 "" +"Lekki, ale niezwykle wytrzymały stalowy karwasz z ozdobną wiązką błyskawic " +"wygrawerowaną na wierzchu, z misternym wzorem podkreślonym złotem. Chroni " +"twoje ciało silną aurą, redukując obrażenia od elektryczności, a także " +"pozwala na wyzwolenie zaklęcia Piorun 3 razy dziennie." #: lang/json/TOOL_ARMOR_from_json.py msgid "magic mask" @@ -121880,6 +124538,9 @@ msgid "" "face, it has large lenses that correct and greatly enhance the vision of the" " wearer." msgstr "" +"Zdecydowanie steampunkowo wyglądająca półmaska, która zakrywa okolice oczu " +"na twarzy, posiada duże soczewki, które korygują i znacznie poprawiają wzrok" +" użytkownika." #: lang/json/TOOL_ARMOR_from_json.py msgid "copper magic ring" @@ -121892,7 +124553,7 @@ msgstr[3] "" #. ~ Description for copper magic ring #: lang/json/TOOL_ARMOR_from_json.py msgid "A generic copper magic ring." -msgstr "" +msgstr "Generyczny miedziany magiczny pierścień." #: lang/json/TOOL_ARMOR_from_json.py msgid "magic ring" @@ -121905,17 +124566,17 @@ msgstr[3] "" #. ~ Description for magic ring #: lang/json/TOOL_ARMOR_from_json.py msgid "A generic silver magic ring." -msgstr "" +msgstr "Generyczny srebrny magiczny pierścień." #. ~ Description for magic ring #: lang/json/TOOL_ARMOR_from_json.py msgid "A generic gold magic ring." -msgstr "" +msgstr "Generyczny złoty magiczny pierścień." #. ~ Description for magic ring #: lang/json/TOOL_ARMOR_from_json.py msgid "A generic platinum magic ring." -msgstr "" +msgstr "Generyczny platynowy magiczny pierścień." #: lang/json/TOOL_ARMOR_from_json.py msgid "minor ring of wizardry" @@ -121931,6 +124592,8 @@ msgid "" "A thin copper band ring, engraved with a single sealed scroll. Increases " "mana capacity slightly." msgstr "" +"Cienki miedziany pierścień, na którym wygrawerowano pojedynczy, " +"zapieczętowany zwój. Zwiększa nieznacznie pojemność many." #: lang/json/TOOL_ARMOR_from_json.py msgid "lesser ring of wizardry" @@ -121946,6 +124609,8 @@ msgid "" "A thin silver band ring, engraved with two sealed scrolls. Increases mana " "capacity somewhat." msgstr "" +"Cienki srebrny pierścień, na którym wygrawerowano dwa zapieczętowane zwoje. " +"Zwiększa nieco pojemność many." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of wizardry" @@ -121961,6 +124626,8 @@ msgid "" "A thin gold band ring, engraved with a bound book. Increases mana capacity " "moderately." msgstr "" +"Cienki złoty pierścień, na którym wygrawerowano oprawioną księgę. Zwiększa " +"umiarkowanie pojemność many." #: lang/json/TOOL_ARMOR_from_json.py msgid "greater ring of wizardry" @@ -121976,6 +124643,8 @@ msgid "" "A thin platinum band ring, engraved with two bound books. Increases mana " "capacity greatly." msgstr "" +"Cienki platynowy pierścień, na którym wygrawerowano dwie oprawione księgi. " +"Zwiększa znacznie pojemność many." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of blades" @@ -121991,6 +124660,8 @@ msgid "" "An ornate silver ring engraved with daggers that conjures three mundane " "throwing knives on activation." msgstr "" +"Ozdobny srebrny pierścień z wygrawerowanymi sztyletami, który po aktywacji " +"wyczarowuje trzy zwykłe noże do rzucania." #: lang/json/TOOL_ARMOR_from_json.py msgid "eel ring" @@ -122006,6 +124677,8 @@ msgid "" "A thin silver band ring, depicting an eel coiled on itself. Allows you to " "dodge an extra attack per turn." msgstr "" +"Cienka srebrna obrączka, przedstawiająca węgorza zwiniętego na sobie samym. " +"Pozwala na uniknięcie dodatkowego ataku na turę." #: lang/json/TOOL_ARMOR_from_json.py msgid "bicephalous eel ring" @@ -122021,6 +124694,8 @@ msgid "" "A thin gold band ring, depicting a bicephalous eel coiled on itself. Allows" " you to dodge two extra attacks per turn." msgstr "" +"Cienka złota obrączka, przedstawiająca dwugłowego węgorza zawiniętego na " +"sobie samym. Pozwala na uniknięcie dwóch dodatkowych ataków na turę." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of strength +1" @@ -122034,6 +124709,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A copper ring that makes you a little stronger when you wear it." msgstr "" +"Miedziany pierścień, który sprawi, że staniesz się odrobinę silniejszy, gdy " +"go założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of strength +2" @@ -122047,6 +124724,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A silver ring that makes you a good bit stronger when you wear it." msgstr "" +"Srebrny pierścień, który sprawi, że staniesz się trochę silniejszy, gdy go " +"założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of strength +3" @@ -122060,6 +124739,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A golden ring that makes you surprisingly stronger when you wear it." msgstr "" +"Złoty pierścień, który sprawi, że staniesz się zaskakująco silniejszy, gdy " +"go założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of strength +4" @@ -122073,6 +124754,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A platinum ring that makes you much stronger when you wear it." msgstr "" +"Platynowy pierścień, który sprawi, że staniesz się dużo silniejszy, gdy go " +"założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of dexterity +1" @@ -122086,6 +124769,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A copper ring that makes you a little more agile when you wear it." msgstr "" +"Miedziany pierścień, który sprawi, że staniesz się odrobinę zwinniejszy, gdy" +" go założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of dexterity +2" @@ -122099,6 +124784,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A silver ring that makes you a good bit more agile when you wear it." msgstr "" +"Srebrny pierścień, który sprawi, że staniesz się trochę zwinniejszy, gdy go " +"założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of dexterity +3" @@ -122112,6 +124799,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A golden ring that makes you surprisingly more agile when you wear it." msgstr "" +"Złoty pierścień, który sprawi, że staniesz się zaskakująco zwinniejszy, gdy " +"go założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of dexterity +4" @@ -122125,6 +124814,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A platinum ring that makes you much more agile when you wear it." msgstr "" +"Platynowy pierścień, który sprawi, że staniesz się dużo zwinniejszy, gdy go " +"założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of intelligence +1" @@ -122139,6 +124830,8 @@ msgstr[3] "" msgid "" "A copper ring that makes you a little more intelligent when you wear it." msgstr "" +"Miedziany pierścień, który sprawi, że staniesz się odrobinę " +"inteligentniejszy, gdy go założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of intelligence +2" @@ -122153,6 +124846,8 @@ msgstr[3] "" msgid "" "A silver ring that makes you a good bit more intelligent when you wear it." msgstr "" +"Srebrny pierścień, który sprawi, że staniesz się trochę inteligentniejszy, " +"gdy go założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of intelligence +3" @@ -122167,6 +124862,8 @@ msgstr[3] "" msgid "" "A golden ring that makes you surprisingly more intelligent when you wear it." msgstr "" +"Złoty pierścień, który sprawi, że staniesz się zaskakująco " +"inteligentniejszy, gdy go założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of intelligence +4" @@ -122180,6 +124877,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A platinum ring that makes you much more intelligent when you wear it." msgstr "" +"Platynowy pierścień, który sprawi, że staniesz się dużo inteligentniejszy, " +"gdy go założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of perception +1" @@ -122194,6 +124893,8 @@ msgstr[3] "" msgid "" "A copper ring that makes you a little more perceptive when you wear it." msgstr "" +"Miedziany pierścień, który sprawi, że staniesz się odrobinę bardziej " +"spostrzegawczy, gdy go założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of perception +2" @@ -122208,6 +124909,8 @@ msgstr[3] "" msgid "" "A silver ring that makes you a good bit more perceptive when you wear it." msgstr "" +"Srebrny pierścień, który sprawi, że staniesz się trochę bardziej " +"spostrzegawczy, gdy go założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of perception +3" @@ -122222,6 +124925,8 @@ msgstr[3] "" msgid "" "A golden ring that makes you eye-openingly more perceptive when you wear it." msgstr "" +"Złoty pierścień, który sprawi, że staniesz się bardziej spostrzegawczy, gdy " +"go założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of perception +4" @@ -122235,6 +124940,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A platinum ring that makes you much more perceptive when you wear it." msgstr "" +"Platynowy pierścień, który sprawi, że staniesz się dużo bardziej " +"spostrzegawczy, gdy go założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of speed +3" @@ -122248,6 +124955,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A copper ring that makes you a little faster when you wear it." msgstr "" +"Miedziany pierścień, który sprawi, że staniesz się odrobinę szybszy, gdy go " +"założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of speed +5" @@ -122261,6 +124970,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A silver ring that makes you a good bit faster when you wear it." msgstr "" +"Srebrny pierścień, który sprawi, że staniesz się trochę szybszy, gdy go " +"założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of speed +7" @@ -122274,6 +124985,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A golden ring that makes you quite hasty when you wear it." msgstr "" +"Złoty pierścień, który sprawi, że staniesz się zdecydowanie szybszy, gdy go " +"założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of speed +10" @@ -122287,6 +125000,8 @@ msgstr[3] "" #: lang/json/TOOL_ARMOR_from_json.py msgid "A platinum ring that makes you much faster when you wear it." msgstr "" +"Platynowy pierścień, który sprawi, że staniesz się dużo szybszy, gdy go " +"założysz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of protection +2" @@ -122302,6 +125017,8 @@ msgid "" "A copper ring that reduces some of the force of damage you take when you " "wear it." msgstr "" +"Miedziany pierścień, który nieco zmniejsza siłę obrażeń, jakie otrzymujesz, " +"gdy go nosisz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of protection +4" @@ -122317,6 +125034,8 @@ msgid "" "A silver ring that appreciably reduces some of the force of damage you take " "when you wear it." msgstr "" +"Srebrny pierścień, który odczuwalnie zmniejsza siłę obrażeń, jakie " +"otrzymujesz, gdy go nosisz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of protection +6" @@ -122332,6 +125051,8 @@ msgid "" "A golden ring that greatly reduces some of the force of damage you take when" " you wear it." msgstr "" +"Złoty pierścień, który znacząco zmniejsza siłę obrażeń, jakie otrzymujesz, " +"gdy go nosisz." #: lang/json/TOOL_ARMOR_from_json.py msgid "ring of protection +8" @@ -122347,6 +125068,8 @@ msgid "" "A platinum ring that vastly reduces some of the force of damage you take " "when you wear it." msgstr "" +"Platynowy pierścień, który poważnie zmniejsza siłę obrażeń, jakie " +"otrzymujesz, gdy go nosisz." #: lang/json/TOOL_ARMOR_from_json.py msgid "lesser storage ring" @@ -122360,7 +125083,7 @@ msgstr[3] "" #. ~ Use action holster_prompt for greater storage ring. #: lang/json/TOOL_ARMOR_from_json.py msgid "Stick what into your ring" -msgstr "" +msgstr "Co włożyć do pierścienia?" #. ~ Description for lesser storage ring #: lang/json/TOOL_ARMOR_from_json.py @@ -122368,6 +125091,9 @@ msgid "" "A glistening ring holding a small dimensional space inside. Can store only " "a little but you can draw items instantly." msgstr "" +"Błyszczący pierścień, w którego wnętrzu znajduje się niewielka przestrzeń " +"wielowymiarowa. Może pomieścić tylko trochę, ale można wyciągać przedmioty " +"natychmiast." #: lang/json/TOOL_ARMOR_from_json.py msgid "greater storage ring" @@ -122383,6 +125109,9 @@ msgid "" "A glistening ring holding a small dimensional space inside. Capable of " "storing a medium-sized weapon you can draw instantly." msgstr "" +"Błyszczący pierścień, w którego wnętrzu znajduje się niewielka przestrzeń " +"wielowymiarowa. Może pomieścić średniej wielkości broń, której można " +"błyskawicznie dobyć." #: lang/json/TOOL_from_json.py msgid "RDX charge" @@ -122584,15 +125313,15 @@ msgstr "Fałszywy piecyk używany w obozach." #: lang/json/TOOL_from_json.py msgid "basecamp drop hammer" msgid_plural "basecamp drop hammers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "młot kafarowy z obozu" +msgstr[1] "młoty kafarowe z obozu" +msgstr[2] "młotów kafarowych z obozu" +msgstr[3] "młoty kafarowe z obozu" #. ~ Description for basecamp drop hammer #: lang/json/TOOL_from_json.py msgid "A fake drop hammer used for basecamps." -msgstr "Fałszywy młot upuszczany używany w obozach." +msgstr "Fałszywy młot kafarowy używany w obozach." #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "arc furnace" @@ -122634,12 +125363,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" " corpses." msgstr "" +"System skalpeli klasy chirurgicznej. Umożliwiają wykonywanie precyzyjnych " +"cięć na zwłokach." #: lang/json/TOOL_from_json.py msgid "bionic razor" @@ -122945,6 +125676,9 @@ msgid "" "This one is made from wood and it has some duct tape to mark the striking " "points." msgstr "" +"Ręcznie wykonana humanoidalna sylwetka, przydatna do treningu walki wręcz. " +"Ta wykonana jest z drewna z odrobiną taśmy klejącej do oznaczenia punktów " +"uderzenia." #: lang/json/TOOL_from_json.py msgid "armored training dummy" @@ -122960,6 +125694,8 @@ msgid "" "A hand-made humanoid figure, useful for training in close quarters combat. " "This one is covered in scrap armor and looks on guard." msgstr "" +"Ręcznie wykonana humanoidalna sylwetka, przydatna do treningu walki wręcz. " +"Ta jest ubrana w zbroję z złomu i wygląda jak na warcie." #: lang/json/TOOL_from_json.py msgid "plastic jack o'lantern" @@ -123334,6 +126070,12 @@ msgid "" "attach itself. If programmed successfully the turret will then identify you" " as a friendly, and attack all enemies with its M2HB." msgstr "" +"To nieaktywna wieżyczka. Użycie jej zakłada napełnienie pojemników " +"fabrycznymi nabojami .50 BMG z twojego ekwipunku (więc jak chcesz zostawić " +"nieco sobie to rozdziel amunicję i odłóż na bok TWOJĄ cześć), włączenie, " +"postawienie na ziemi, gdzie się zagnieździ. Jeżeli zostanie skutecznie " +"przeprogramowana rozpozna cię jako przyjaciela, i będzie atakować wrogów " +"wbudowanym M2HB." #: lang/json/TOOL_from_json.py msgid "inactive manhack" @@ -123419,6 +126161,12 @@ msgid "" "attach itself. If programmed successfully the turret will then identify you" " as a friendly, and attack all enemies with its M249." msgstr "" +"To nieaktywna wieżyczka. Użycie jej zakłada napełnienie pojemników " +"fabrycznymi nabojami 5.56x45mm z twojego ekwipunku (więc jak chcesz zostawić" +" nieco sobie to rozdziel amunicję i odłóż na bok TWOJĄ cześć), włączenie, " +"postawienie na ziemi, gdzie się zagnieździ. Jeżeli zostanie skutecznie " +"przeprogramowana rozpozna cię jako przyjaciela, i będzie atakować wrogów " +"wbudowanym M249." #: lang/json/TOOL_from_json.py msgid "inactive autonomous M240 CROWS II" @@ -123438,6 +126186,12 @@ msgid "" "attach itself. If programmed successfully the turret will then identify you" " as a friendly, and attack all enemies with its M240." msgstr "" +"To nieaktywna wieżyczka. Użycie jej zakłada napełnienie pojemników " +"fabrycznymi nabojami 7.62x51mm z twojego ekwipunku (więc jak chcesz zostawić" +" nieco sobie to rozdziel amunicję i odłóż na bok TWOJĄ cześć), włączenie, " +"postawienie na ziemi, gdzie się zagnieździ. Jeżeli zostanie skutecznie " +"przeprogramowana rozpozna cię jako przyjaciela, i będzie atakować wrogów " +"wbudowanym M240." #: lang/json/TOOL_from_json.py msgid "inactive riot control turret" @@ -123458,6 +126212,13 @@ msgid "" "identify you as a friendly, and attack all enemies with its riot control " "gun." msgstr "" +"Jest to nieaktywna wieżyczka do kontroli zamieszek. Użycie jej polega na " +"załadowaniu do niej gąbczastych naboi 40x46 mm M1006 z twojego ekwipunku " +"(jeśli chcesz podzielić amunicję, odłóż na bok te naboje, których NIE chcesz" +" dać wieżyczce), włączeniu jej i postawieniu na ziemi, gdzie się " +"przytwierdzi. Jeśli zaprogramujesz ją pomyślnie, wieżyczka rozpozna cię jako" +" przyjaciela i zaatakuje wszystkich wrogów swoją wyrzutnią do tłumienia " +"zamieszek." #: lang/json/TOOL_from_json.py msgid "inactive turret" @@ -123477,6 +126238,12 @@ msgid "" "rewired successfully the turret will then identify you as a friendly, and " "attack all enemies with its SMG." msgstr "" +"To nieaktywna wieżyczka. Użycie jej zakłada napełnienie pojemników " +"fabrycznymi nabojami 9x19mm z twojego ekwipunku (więc jak chcesz zostawić " +"nieco sobie to rozdziel amunicję i odłóż na bok TWOJĄ cześć), włączenie, " +"postawienie na ziemi. Jeżeli zostanie skutecznie przeprogramowana i " +"okablowana rozpozna cię jako przyjaciela, i będzie atakować wrogów " +"wbudowanym peemem." #: lang/json/TOOL_from_json.py msgid "inactive TALON UGV" @@ -123491,12 +126258,16 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "The security bot beeps affirmatively and begins scanning for hostiles." msgstr "" +"Bot bezpieczeństwa wydaje potwierdzający sygnał dźwiękowy i rozpoczyna " +"skanowanie w poszukiwaniu wrogów." #. ~ Use action hostile_msg for inactive TALON UGV. #. ~ Use action hostile_msg for inactive M202A1 TALON UGV. #: lang/json/TOOL_from_json.py msgid "You misprogram the security bot and it trains its gun on you. RUN!" msgstr "" +"Źle zaprogramowałeś bota bezpieczeństwa i wycelował w Ciebie swoją broń. " +"UCIEKAJ!" #. ~ Description for inactive TALON UGV #: lang/json/TOOL_from_json.py @@ -123509,6 +126280,12 @@ msgid "" "will then identify you as a friendly, roam around or follow you, and attack " "all enemies with its rifle." msgstr "" +"Jest to nieaktywny dron jezdny TALON wyposażony w M16A4. Użycie go polega na" +" załadowaniu go fabrycznymi nabojami 5.56x45 mm (jeśli chcesz podzielić " +"amunicję, odłóż na bok te, których NIE chcesz dać robotowi), włączeniu go i " +"postawieniu na ziemi. Po udanym przeprogramowaniu i okablowaniu, dron " +"ochrony rozpozna Cię jako przyjaciela, będzie się błąkał lub podążał za tobą" +" i atakował wszystkich wrogów swoim karabinem." #: lang/json/TOOL_from_json.py msgid "inactive M202A1 TALON UGV" @@ -123529,6 +126306,12 @@ msgid "" "you as a friendly, roam around or follow you, and attack all enemies with " "its M202A1." msgstr "" +"Jest to nieaktywny dron jezdny TALON wyposażony w M202A1. Użycie go polega " +"na załadowaniu go fabrycznymi rakietami M235 (jeśli chcesz podzielić " +"amunicję, odłóż na bok te rakiety, których NIE chcesz dać robotowi), " +"włączeniu go i postawieniu na ziemi. Po udanym przeprogramowaniu i " +"okablowaniu, dron ochrony rozpozna Cię jako przyjaciela, będzie się błąkał " +"lub podążał za tobą i atakował wszystkich wrogów swoim M202A1." #: lang/json/TOOL_from_json.py msgid "inactive nurse bot" @@ -123542,11 +126325,14 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "The nurse bot beeps affirmatively and awaits orders." msgstr "" +"Bot pielęgniarski wydaje potwierdzający sygnał dźwiękowy i czeka na " +"polecenia." #. ~ Use action hostile_msg for inactive nurse bot. #: lang/json/TOOL_from_json.py msgid "You misprogram the nurse bot. It's looking at you funny." msgstr "" +"Źle zaprogramowałeś bota pielęgniarskiego. Dziwnie się na ciebie patrzy." #. ~ Description for inactive nurse bot #: lang/json/TOOL_from_json.py @@ -123556,6 +126342,10 @@ msgid "" "successfully the nurse bot will then identify you as a friendly, roam around" " or follow you, and assist you in surgeries." msgstr "" +"Jest to nieaktywny bot pielęgniarski. Użycie go wymaga położenia go na ziemi" +" i reaktywowania jego mechanicznego ciała. Jeśli zostanie przeprogramowany i" +" okablowany, będzie Cię rozpoznawał jako przyjaciela, będzie włóczył się lub" +" podążał za tobą i pomagał Ci w operacjach chirurgicznych." #: lang/json/TOOL_from_json.py msgid "inactive grocery bot" @@ -123570,12 +126360,13 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "The grocery bot beeps affirmatively and awaits orders." msgstr "" +"Bot sklepowy wydaje potwierdzający sygnał dźwiękowy i czeka na polecenia." #. ~ Use action hostile_msg for inactive grocery bot. #. ~ Use action hostile_msg for inactive busted grocery bot. #: lang/json/TOOL_from_json.py msgid "You misprogram the grocery bot. It's looking at you funny." -msgstr "" +msgstr "Źle zaprogramowałeś bota sklepowego. Dziwnie się na ciebie patrzy." #. ~ Description for inactive grocery bot #. ~ Description for inactive busted grocery bot @@ -123586,6 +126377,10 @@ msgid "" "successfully the grocery bot will then identify you as a friendly, roam " "around or follow you." msgstr "" +"Jest to nieaktywny bot sklepowy. Użycie go wymaga położenia go na ziemi i " +"reaktywowania jego mechanicznego ciała. Jeśli zostanie przeprogramowany i " +"okablowany, będzie Cię rozpoznawał jako przyjaciela, będzie włóczył się lub " +"podążał za tobą." #: lang/json/TOOL_from_json.py msgid "inactive busted grocery bot" @@ -123609,11 +126404,13 @@ msgid "" "The broken cyborg rises to the sound of screeching metal and peers around " "for hostiles." msgstr "" +"Uszkodzony cyborg podnosi się przy dźwięku skrzypiącego metalu i rozgląda " +"się w poszukiwaniu wrogów." #. ~ Use action hostile_msg for inactive broken cyborg. #: lang/json/TOOL_from_json.py msgid "The broken cyborg lets out a howl of agony and attacks you!" -msgstr "" +msgstr "Uszkodzony cyborg wydaje z siebie skowyt agonii i atakuje cię!" #. ~ Description for inactive broken cyborg #: lang/json/TOOL_from_json.py @@ -123623,6 +126420,11 @@ msgid "" "reactivating its mechanical body. If reprogrammed and rewired successfully " "the cyborg will then follow you and attack enemies. You monster." msgstr "" +"Jest to zdezaktywowany, uszkodzony cyborg, którego ostatnie strzępy " +"człowieczeństwa wciąż jeszcze ulegają degradacji. Użycie go wymaga położenia" +" go na ziemi i reaktywowania jego mechanicznego ciała. Jeśli uda się go " +"przeprogramować i okablować, będzie podążał za tobą i atakował wrogów. Ty " +"potworze." #: lang/json/TOOL_from_json.py msgid "inactive prototype cyborg" @@ -123638,11 +126440,13 @@ msgid "" "The prototype cyborg rises to the sound of screeching metal and peers around" " for hostiles." msgstr "" +"Prototypowy cyborg podnosi się przy dźwięku skrzypiącego metalu i rozgląda " +"się w poszukiwaniu wrogów." #. ~ Use action hostile_msg for inactive prototype cyborg. #: lang/json/TOOL_from_json.py msgid "The prototype cyborg lets out a howl of agony and attacks you!" -msgstr "" +msgstr "Prototypowy cyborg wydaje z siebie skowyt agonii i atakuje cię!" #. ~ Description for inactive prototype cyborg #: lang/json/TOOL_from_json.py @@ -123653,6 +126457,11 @@ msgid "" "successfully the cyborg will then follow you and attack enemies. You " "monster." msgstr "" +"Jest to zdezaktywowany, prototypowy cyborg, którego przebłyski " +"człowieczeństwa wciąż jeszcze są widoczne w jego pustych oczach. Użycie go " +"wymaga położenia go na ziemi i reaktywowania jego mechanicznego ciała. Jeśli" +" uda się go przeprogramować i okablować, będzie podążał za tobą i atakował " +"wrogów. Ty potworze." #: lang/json/TOOL_from_json.py msgid "inactive police bot" @@ -123665,13 +126474,15 @@ msgstr[3] "" #. ~ Use action friendly_msg for inactive police bot. #: lang/json/TOOL_from_json.py msgid "The police bot rolls into action ready to pursue criminals." -msgstr "" +msgstr "Policyjny bot wkracza do akcji, gotowy do ścigania przestępców." #. ~ Use action hostile_msg for inactive police bot. #: lang/json/TOOL_from_json.py msgid "" "A siren howls and lights flash as the police bot prepares to arrest you!" msgstr "" +"Syrena wyje a światła migają, gdy policyjny bot przygotowuje się do " +"aresztowania ciebie!" #. ~ Description for inactive police bot #: lang/json/TOOL_from_json.py @@ -123697,7 +126508,7 @@ msgstr[3] "nieaktywny okobot" #. ~ Use action friendly_msg for inactive eyebot. #: lang/json/TOOL_from_json.py msgid "The eyebot hums and takes to the sky." -msgstr "" +msgstr "Okobot szumi i wzbija się w niebo." #. ~ Use action hostile_msg for inactive eyebot. #: lang/json/TOOL_from_json.py @@ -123705,6 +126516,8 @@ msgid "" "The eyebot beeps disapprovingly and focuses its camera on your face. Say " "cheese!" msgstr "" +"Okobot piszczy z dezaprobatą i ogniskuje swoją kamerę na twojej twarzy. " +"Uśmiech!" #. ~ Description for inactive eyebot #: lang/json/TOOL_from_json.py @@ -123713,6 +126526,9 @@ msgid "" "launching the UAV. If reprogrammed and rewired successfully the eyebot will" " then keep watch for intruders." msgstr "" +"To jest nieaktywny okobot. Użycie go polega na włączeniu go i wypuszczeniu " +"drona w powietrze. Jeśli zostanie przeprogramowany i okablowany pomyślnie, " +"okobot będzie strzegł przed intruzami." #: lang/json/TOOL_from_json.py msgid "inactive cleaner bot" @@ -123725,12 +126541,13 @@ msgstr[3] "" #. ~ Use action friendly_msg for inactive cleaner bot. #: lang/json/TOOL_from_json.py msgid "The cleaner bot emits a friendly beep and starts scrubbing." -msgstr "" +msgstr "Robot wydaje przyjazny sygnał dźwiękowy i zaczyna szorować podłogę." #. ~ Use action hostile_msg for inactive cleaner bot. #: lang/json/TOOL_from_json.py msgid "The cleaner bot plays an error sound, but starts cleaning anyway." msgstr "" +"Robot czyszczący wydaje dźwięk błędu, ale mimo to rozpoczyna czyszczenie." #. ~ Description for inactive cleaner bot #: lang/json/TOOL_from_json.py @@ -123739,6 +126556,9 @@ msgid "" " ground and turning it on. If reprogrammed and rewired successfully the " "cleaner bot will respond to future commands." msgstr "" +"To jest nieaktywny bot sanitarny. Użycie go wymaga położenia go na ziemi i " +"włączenia. Jeśli zostanie przeprogramowany i okablowany, będzie reagował na " +"przyszłe komendy." #: lang/json/TOOL_from_json.py msgid "inactive miner bot" @@ -123751,12 +126571,12 @@ msgstr[3] "nieaktywne roboty górnicze" #. ~ Use action friendly_msg for inactive miner bot. #: lang/json/TOOL_from_json.py msgid "The miner bot whirrs and tunnels into the ground." -msgstr "" +msgstr "Bot górniczy warczy i wwierca się w ziemię." #. ~ Use action hostile_msg for inactive miner bot. #: lang/json/TOOL_from_json.py msgid "The miner bot spins out of control and lunges at you. Make way!" -msgstr "" +msgstr "Górniczy bot wymyka się spod kontroli i rzuca się na ciebie. Z drogi!" #. ~ Description for inactive miner bot #: lang/json/TOOL_from_json.py @@ -123765,6 +126585,9 @@ msgid "" "the ground and turning it on. If reprogrammed and rewired successfully the " "miner bot will respond to future commands." msgstr "" +"Jest to nieaktywny robot górniczy. Użycie tego przedmiotu polega na " +"położeniu go na ziemi i włączeniu. Jeśli zostanie pomyślnie przeprogramowany" +" i okablowany, robot górniczy będzie reagował na przyszłe polecenia." #: lang/json/TOOL_from_json.py msgid "inactive riot control bot" @@ -123777,13 +126600,14 @@ msgstr[3] "" #. ~ Use action friendly_msg for inactive riot control bot. #: lang/json/TOOL_from_json.py msgid "The riot control bot rolls into action." -msgstr "" +msgstr "Bot kontroli zamieszek wkracza do akcji." #. ~ Use action hostile_msg for inactive riot control bot. #: lang/json/TOOL_from_json.py msgid "" "The riot control bot gases you and approaches with a pair of handcuffs." msgstr "" +"Bot kontrolujący zamieszki używa na tobie gazu i zbliża się z parą kajdanek." #. ~ Description for inactive riot control bot #: lang/json/TOOL_from_json.py @@ -123792,6 +126616,9 @@ msgid "" "on the ground and turning it on. If reprogrammed and rewired successfully " "the robot will bring order and peace to the horde." msgstr "" +"To jest nieaktywny bot do kontroli zamieszek. Użycie go polega na położeniu " +"na ziemi i włączeniu. Jeśli robot zostanie przeprogramowany i okablowany, " +"zaprowadzi porządek i spokój w hordzie." #: lang/json/TOOL_from_json.py msgid "inactive skitterbot" @@ -123804,12 +126631,12 @@ msgstr[3] "nieaktywny smyrgobot" #. ~ Use action friendly_msg for inactive skitterbot. #: lang/json/TOOL_from_json.py msgid "The skitterbot gives a quick bow and scurries away." -msgstr "" +msgstr "Smyrgacz skłonił się szybko i czmychnął." #. ~ Use action hostile_msg for inactive skitterbot. #: lang/json/TOOL_from_json.py msgid "The skitterbot darts around you and menacingly clicks its tazers." -msgstr "" +msgstr "Smyrgacz okrąża cię i groźnie strzela swoimi paralizatorami." #. ~ Description for inactive skitterbot #: lang/json/TOOL_from_json.py @@ -123818,6 +126645,9 @@ msgid "" "ground and turning it on. If reprogrammed and rewired successfully the " "robot will race towards enemies and shock them." msgstr "" +"To jest nieaktywny bot smyrgacz. Użycie go polega na położeniu go na ziemi i" +" włączeniu. Jeśli robot zostanie pomyślnie przeprogramowany i okablowany, " +"ruszy w kierunku przeciwników i porazi ich." #: lang/json/TOOL_from_json.py msgid "inactive lab defense bot" @@ -123838,6 +126668,8 @@ msgid "" "The lab defense bot raises its front legs and shines a multitude of colored " "lights in your face!" msgstr "" +"Obrońca laboratorium podnosi przednie nogi i świeci ci w twarz mnóstwem " +"kolorowych świateł!" #. ~ Description for inactive lab defense bot #: lang/json/TOOL_from_json.py @@ -123848,6 +126680,11 @@ msgid "" "reprogrammed and rewired successfully the robot will race towards enemies " "and deploy a variety of experimental devices." msgstr "" +"Jest to nieaktywny eksperymentalny robot zrabowany z laboratorium naukowego." +" Przypomina ludzkiej wielkości pająka i został zaprojektowany do wysyłania " +"dronów młynków. Użycie go polega na położeniu na ziemi i włączeniu. Jeśli " +"uda się go przeprogramować i okablować, będzie pędził w kierunku wrogów i " +"wysyłał różne eksperymentalne urządzenia." #: lang/json/TOOL_from_json.py msgid "inactive milspec searchlight" @@ -123860,13 +126697,14 @@ msgstr[3] "" #. ~ Use action friendly_msg for inactive milspec searchlight. #: lang/json/TOOL_from_json.py msgid "The searchlight flares up and establishes a perimeter." -msgstr "" +msgstr "Reflektor rozbłyskuje i ustanawia perymetr." #. ~ Use action hostile_msg for inactive milspec searchlight. #: lang/json/TOOL_from_json.py msgid "" "A bright light blinds you as the searchlight refuses to turn away from you." msgstr "" +"Oślepia cię jasne światło, gdyż reflektor nie chce się od ciebie odwrócić." #. ~ Description for inactive milspec searchlight #: lang/json/TOOL_from_json.py @@ -123877,6 +126715,11 @@ msgid "" "survey the area, and illuminate approaching hostiles. Seems to have an " "unhealthy fascination with you." msgstr "" +"Jest to nieaktywny automatyczny reflektor klasy wojskowej. Użycie go polega " +"na położeniu go na ziemi i włączeniu. Jeśli zostanie przeprogramowany i " +"okablowany, będzie identyfikował cię jako sprzymierzeńca, badał teren i " +"oświetlał zbliżających się wrogów. Wydaje się mieć niezdrową fascynację " +"twoją osobą." #: lang/json/TOOL_from_json.py msgid "inactive dispatch" @@ -123890,12 +126733,13 @@ msgstr[3] "" #. ~ Use action friendly_msg for inactive military dispatch. #: lang/json/TOOL_from_json.py msgid "The dispatch whirrs onto its legs and searches for a target." -msgstr "" +msgstr "Dyspozytor z warkotem podrywa się na nogi i szuka celu." #. ~ Use action hostile_msg for inactive dispatch. #: lang/json/TOOL_from_json.py msgid "The dispatch turns on you, whacking at you with its arms!" msgstr "" +"Dyspozytor zwraca się w twoją stronę, uderzając w ciebie swoimi ramionami!" #. ~ Description for inactive dispatch #: lang/json/TOOL_from_json.py @@ -123905,6 +126749,11 @@ msgid "" " the ground; due to a one-way switch triggered during deactivation, however," " it will be nonaggressive, and serves only as a distraction." msgstr "" +"Nieaktywny „Posłaniec” marki Northrop, model strażnika, służący jako mobilna" +" maszyna do montażu i wyrzutnia dronów młynków kamikaze dla obrony. Aktywuj " +"go, aby umieścić go na ziemi; ze względu na jednokierunkowy przełącznik " +"uruchomiony podczas dezaktywacji, nie będzie on agresywny i posłuży jedynie " +"do odwracania uwagi." #: lang/json/TOOL_from_json.py msgid "inactive military dispatch" @@ -123918,6 +126767,7 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "The dispatch turns on you, slashing at you with its arms!" msgstr "" +"Dyspozytor zwraca się w twoją stronę, wymachując na ciebie swoimi ramionami!" #. ~ Description for inactive military dispatch #: lang/json/TOOL_from_json.py @@ -123928,6 +126778,11 @@ msgid "" "deactivation, however, it will be nonaggressive, and serves only as a " "distraction." msgstr "" +"Nieaktywny Posłaniec marki Northrop, model wojskowy, służący jako mobilna " +"maszyna do montażu i wyrzutnia zabójczych dronów młynków do zastosowań " +"bojowych. Aktywuj go, aby umieścić go na ziemi; ze względu na " +"jednokierunkowy przełącznik uruchomiony podczas dezaktywacji, nie będzie on " +"agresywny i posłuży jedynie do odwracania uwagi." #: lang/json/TOOL_from_json.py msgid "inactive loudspeaker" @@ -123941,7 +126796,7 @@ msgstr[3] "" #. ~ Use action hostile_msg for inactive loudspeaker. #: lang/json/TOOL_from_json.py msgid "The loudspeaker activates and begins his non-stopping shouts." -msgstr "" +msgstr "Głośnik włącza się i zaczyna swoje nieustające okrzyki." #. ~ Description for inactive loudspeaker #: lang/json/TOOL_from_json.py @@ -123950,6 +126805,9 @@ msgid "" " it on the ground and turning it on. If reprogrammed and rewired " "successfully the loudspeaker will continuously shout pre-recorded messages." msgstr "" +"Jest to nieaktywny automatyczny głośnik. Użycie go polega na postawieniu na " +"ziemi i włączeniu. Po przeprogramowaniu i okablowaniu głośnik będzie " +"nieprzerwanie odtwarzał nagrane wcześniej komunikaty." #: lang/json/TOOL_from_json.py msgid "inactive tazer hack" @@ -123962,12 +126820,12 @@ msgstr[3] "" #. ~ Use action friendly_msg for inactive tazer hack. #: lang/json/TOOL_from_json.py msgid "The tazer hack flies from your hand and surveys the area!" -msgstr "" +msgstr "Młynek tazer wylatuje z twojej ręki i bada teren!" #. ~ Use action hostile_msg for inactive tazer hack. #: lang/json/TOOL_from_json.py msgid "You misprogram the tazer hack; run!" -msgstr "" +msgstr "Błędnie programujesz młynek-tazer! Uciekaj!" #. ~ Description for inactive tazer hack #: lang/json/TOOL_from_json.py @@ -123978,6 +126836,11 @@ msgid "" "the tazer hack. Electronics and computer skills determine if the targeting " "matrix is reprogrammed successfully." msgstr "" +"To jest nieaktywny młynek tazer. Młynki są robotami wielkości pięści, które " +"latają w powietrzu. Ten ma tazer i atakuje lecąc na swój cel i porażając go " +"prądem. Użyj go, aby przeprogramować i uwolnić młynek tazer. Umiejętności " +"elektroniczne i komputerowe decydują o tym, czy matryca celownicza zostanie " +"przeprogramowana pomyślnie." #: lang/json/TOOL_from_json.py msgid "inactive trifacet" @@ -123991,11 +126854,12 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "Your attempt at reprogramming the trifacet is somehow successful!" msgstr "" +"Twoja próba przeprogramowania trójfasetowca w jakiś sposób się powiodła!" #. ~ Use action hostile_msg for inactive trifacet. #: lang/json/TOOL_from_json.py msgid "The hostile trifacet violently unfolds just clear of your hand!" -msgstr "" +msgstr "Wrogi trójfasetowiec gwałtownie rozwija się tuż przed twoją ręką!" #. ~ Description for inactive trifacet #: lang/json/TOOL_from_json.py @@ -124005,6 +126869,10 @@ msgid "" "trifacet could probably be reactivated, it's unlikely to recognize you as an" " ally." msgstr "" +"Pozbawiona cech kwarcowa piramida, która choć ewidentnie jest sztucznym " +"tworem, nie wykazuje żadnych oznak, że kiedykolwiek była zaawansowanym " +"robotem. Chociaż ten trójfasetowiec prawdopodobnie mógłby zostać " +"reaktywowany, jest mało prawdopodobne, że uzna cię za sprzymierzeńca." #: lang/json/TOOL_from_json.py msgid "inactive security drone" @@ -124017,12 +126885,12 @@ msgstr[3] "" #. ~ Use action friendly_msg for inactive security drone. #: lang/json/TOOL_from_json.py msgid "The security drone flies from your hand and surveys the area!" -msgstr "" +msgstr "Dron ochrony wylatuje z twojej ręki i bada teren!" #. ~ Use action hostile_msg for inactive security drone. #: lang/json/TOOL_from_json.py msgid "You misprogram the drone; it's hostile!" -msgstr "" +msgstr "Błędnie programujesz drona; jest wrogi!" #. ~ Description for inactive security drone #: lang/json/TOOL_from_json.py @@ -124032,6 +126900,11 @@ msgid "" "reprogram and activate the security drone. Electronics and computer skill " "determines if the targeting matrix is reprogrammed successfully." msgstr "" +"To jest nieaktywny dron ochrony. Są to roboty wielkości pięści, które latają" +" w powietrzu. Posiadają skaner, obiektyw i głośnik. Użyj tego przedmiotu, " +"aby przeprogramować i aktywować drona bezpieczeństwa. Umiejętność " +"elektroniki i informatyki określa, czy matryca celownicza została " +"przeprogramowana pomyślnie." #: lang/json/TOOL_from_json.py msgid "clothes hanger" @@ -124330,7 +127203,7 @@ msgid_plural "carving knives" msgstr[0] "nóż do krojenia mięsa" msgstr[1] "noże do krojenia mięsa" msgstr[2] "noży do krojenia mięsa" -msgstr[3] "noży do krojenia mięsa" +msgstr[3] "noża do krojenia mięsa" #. ~ Description for carving knife #: lang/json/TOOL_from_json.py @@ -124435,6 +127308,9 @@ msgid "" "its blade 90 degrees, transforming it into a deadly giant blade on the end " "of a stick. However it's quite fragile." msgstr "" +"To narzędzie rolnicze zostało zmodyfikowane w broń improwizowaną poprzez " +"obrócenie jej ostrza o 90 stopni, przekształcając go w śmiertelne ostrze na " +"końcu laski. Jest to dosyć krucha broń." #: lang/json/TOOL_from_json.py msgid "spike on a stick" @@ -124451,6 +127327,9 @@ msgid "" " sharp, and crudely constructed, but it will keep the zombies out of arm's " "reach until you can find something better." msgstr "" +"Wątły kij wykonany z drewna z przywiązanym do niego metalowym szpikulcem. " +"Jest niezbyt ostry i prymitywnie skonstruowany, ale utrzyma zombie poza " +"zasięgiem ręki, dopóki nie znajdziesz czegoś lepszego." #: lang/json/TOOL_from_json.py msgid "simple knife spear" @@ -124468,6 +127347,10 @@ msgid "" " take a bit more time to carefully split the shaft and attach the knife " "blade more permanently." msgstr "" +"Wątły kij wykonany z drewna z nożem przymocowanym do czubka. Jest " +"wystarczająco długi, aby ciąć z daleka, ale nóż nie jest zbyt dobrze " +"przymocowany. Można by poświęcić trochę więcej czasu na staranne rozłupanie " +"trzonka i bardziej trwałe przymocowanie ostrza noża." #: lang/json/TOOL_from_json.py msgid "knife spear" @@ -124484,6 +127367,9 @@ msgid "" "split point, a sharp blade has been bolted into place and reinforced with " "layers of sturdy wrapped bindings." msgstr "" +"Gruby drewniany kij, ostrożnie rozszczepiony i wzmocniony. Osadzono w nim " +"ostrze, które zablokowano w miejscu bolcami i wzmocniono przez " +"wielowarstwowe owinięcie." #: lang/json/TOOL_from_json.py msgid "homemade halfpike" @@ -124499,6 +127385,9 @@ msgid "" "A short do-it-yourself spear made out of a smooth wooden shaft with a metal " "spike seated and bound into place at its tip." msgstr "" +"Krótka, własnoręcznie wykonana włócznia, składająca się z gładkiego, " +"drewnianego trzonka z metalowym szpikulcem osadzonym i przymocowanym na " +"czubku." #: lang/json/TOOL_from_json.py msgid "switchblade" @@ -124514,6 +127403,8 @@ msgid "" "This is a long, thin knife with a spring-loaded blade that rests inside the " "handle while not in use." msgstr "" +"To długi, cienki nóż z wysuwanym sprężynowo ostrzem, które pozostaje ukryte " +"w rączce gdy nie jest używane." #: lang/json/TOOL_from_json.py msgid "folding knife" @@ -124565,6 +127456,10 @@ msgid "" "one was modified and customized to mount on pretty much any weapon other " "than pistols, if you so want." msgstr "" +"Jest to wojskowy nóż bojowy. Jest lekki i niezwykle ostry, i może być " +"zabójczy w odpowiednich rękach lub gdy jest zamocowany jako bagnet. Ten " +"został zmodyfikowany i dostosowany do montażu na prawie każdej broni poza " +"pistoletami, jeśli tylko zechcesz." #: lang/json/TOOL_from_json.py msgid "hunting knife" @@ -124617,6 +127512,11 @@ msgid "" " manufactured for the military, it was very popular in films and among " "collectors due to its fearsome appearance." msgstr "" +"Ten solidny czarny matowy nóż Rivtech posiada długie cienkie dwustronne " +"ostrze z ostrym czubkiem i wyróżniającym się antypoślizgowym uchwytem, który" +" można przyłączyć jako bagnet do broni palnej. Pierwotnie zaprojektowany dla" +" wojska, zrobił karierę w filmach i wśród kolekcjonerów z uwagi na groźny " +"wygląd." #: lang/json/TOOL_from_json.py msgid "Swiss Army knife" @@ -124668,6 +127568,8 @@ msgid "" "A knife consisting of a long, somewhat sharpened spike and a tightly-wrapped" " rag as a handle. It makes a good melee weapon." msgstr "" +"Nóż z długiego zaostrzonego kolca, ciasno owinięty szmatą służącą za uchwyt." +" Dobra broń do walki." #: lang/json/TOOL_from_json.py msgid "bone shiv" @@ -124683,6 +127585,9 @@ msgid "" "A femur or other bone, about 20 cm long, which has been broken at one end " "and sharpened into a cutting tool. Its jagged edge is wicked but fragile." msgstr "" +"Kość, być może udowa, o długości około 20 cm, która została złamana na " +"jednym końcu i zaostrzona na narzędzie tnące. Jej poszarpana krawędź jest " +"groźna, ale krucha." #: lang/json/TOOL_from_json.py msgid "baselard" @@ -124698,6 +127603,8 @@ msgid "" "A medieval dagger forged from rough iron. It is not the sharpest tool in " "the shed, but it is certainly one of the largest." msgstr "" +"Średniowieczny sztylet wykuty z surowego żelaza. Nie jest to najostrzejsze " +"narzędzie w szopie, ale na pewno jedno z największych." #: lang/json/TOOL_from_json.py msgid "makeshift machete" @@ -124747,6 +127654,9 @@ msgid "" "A thin, wobbly steel blade with sawteeth on one side and a flat chisel tip " "for digging. A jack of many trades, and a master of none." msgstr "" +"Cienkie, chybotliwe stalowe ostrze z zębami z jednej strony i płaską " +"końcówką przypominającą dłuto do kopania. Jak coś jest do wszystkiego to " +"jest do niczego." #: lang/json/TOOL_from_json.py msgid "cavalry saber" @@ -124762,6 +127672,8 @@ msgid "" "This is a curved sword associated with cavalry from the Early Modern period " "onwards. Lightweight, but a deadly slashing weapon." msgstr "" +"Zakrzywiony miecz kojarzony z kawalerią okresu wczesnej współczesności i " +"późniejszych. Lekka ale zabójcza broń tnąca." #. ~ Description for kris #: lang/json/TOOL_from_json.py @@ -124787,8 +127699,11 @@ msgid "" "originated in Nepal. Featuring a heavy blade with an inwardly-curved edge, " "it can be used as both a tool and a weapon." msgstr "" +"To wszechstronne narzędzie jest nowoczesnym podejściem do tradycyjnej broni " +"pochodzącej z Nepalu. Ciężkie ostrze z zakrzywioną do wewnątrz krawędzią " +"może być używane zarówno jako narzędzie, jak i broń." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -124799,7 +127714,7 @@ msgstr "" " z czterech podstawowych broni w folklorze, razem z szablą dao, włócznią " "qiang, i laską gun." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -124900,6 +127815,9 @@ msgid "" " it was designed mainly to hack through the light armor common to the " "region." msgstr "" +"Starożytny miecz z brązu z zakrzywionym sierpowatym ostrzem zaostrzonym na " +"zewnętrznej krawędzi. Utożsamiany z okresem Nowego Królestwa starożytnego " +"Egiptu, i zaprojektowany do łupania lekkiej zbroi powszechnej w tym rejonie." #: lang/json/TOOL_from_json.py msgid "dao" @@ -124909,7 +127827,7 @@ msgstr[1] "dao" msgstr[2] "dao" msgstr[3] "dao" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -124972,8 +127890,12 @@ msgid "" "and customized to mount on pretty much any weapon other than pistols and " "SMGs, if you so want." msgstr "" +"Bagnet mieczowy jest dużą bronią tnącą, którą można przymocować do przedniej" +" części broni palnej lub kuszy, przekształcając ją w pikę. Ten został " +"zmodyfikowany i dostosowany do zamontowania na prawie każdej broni poza " +"pistoletami i peemami, jeśli zechcesz." -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -124984,7 +127906,7 @@ msgstr "" "bronią samurajów, przed nastaniem większych wakizashi. To nadal zabójcze " "ostrze, mimo że jest mniejsze od swoich słynniejszych kuzynów." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -125013,6 +127935,8 @@ msgid "" "A ceremonial dagger carried by Sikh men. This one is sharp and could be an " "effective weapon." msgstr "" +"Ceremonialny sztylet noszony przez mężczyzn Sikhów. Ten jest ostry i może " +"być skuteczną bronią." #. ~ Description for kirpan #: lang/json/TOOL_from_json.py @@ -125020,8 +127944,10 @@ msgid "" "A ceremonial dagger carried by Sikh men. This one is not particularly well-" "made." msgstr "" +"Ceremonialny sztylet noszony przez mężczyzn Sikhów. Ten nie jest szczególnie" +" dobrze wykonany." -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -125048,6 +127974,12 @@ msgid "" "Thrusting the sharpened tip into a foe and activating the momentary switch " "will deliver a painful electric shock." msgstr "" +"Modyfikacje wprowadzone do tego floretu może nie są sportowe, ale mogą dać " +"ci przewagę w tej ostatecznej rozgrywce. Dołożono dodatkowych starań, aby " +"odizolować uchwyt, a do osłony przymocowano wysokonapięciowy paralizator, " +"który jest podłączony przez elektroniczny obwód punktacji do końcówki. " +"Wbicie zaostrzonej końcówki w przeciwnika i uruchomienie chwilowego " +"przełącznika spowoduje bolesne porażenie prądem." #: lang/json/TOOL_from_json.py msgid "electrified épée" @@ -125067,6 +127999,12 @@ msgid "" "Thrusting the sharpened tip into a foe and activating the momentary switch " "will deliver a painful electric shock." msgstr "" +"Modyfikacje wprowadzone do tej szpady może nie są sportowe, ale mogą dać ci " +"przewagę w tej ostatecznej rozgrywce. Dołożono dodatkowych starań, aby " +"odizolować uchwyt, a do osłony przymocowano wysokonapięciowy paralizator, " +"który jest podłączony przez elektroniczny obwód punktacji do końcówki. " +"Wbicie zaostrzonej końcówki w przeciwnika i uruchomienie chwilowego " +"przełącznika spowoduje bolesne porażenie prądem." #: lang/json/TOOL_from_json.py msgid "electrified saber" @@ -125086,6 +128024,12 @@ msgid "" "sharpened tip into a foe and activating the momentary switch will deliver a " "painful electric shock." msgstr "" +"Modyfikacje wprowadzone do tej szabli może nie są sportowe, ale mogą dać ci " +"przewagę w tej ostatecznej rozgrywce. Dołożono dodatkowych starań, aby " +"odizolować uchwyt, a do osłony przymocowano wysokonapięciowy paralizator, " +"który jest podłączony przez elektroniczny obwód punktacji do końcówki. " +"Wbicie zaostrzonej końcówki w przeciwnika i uruchomienie chwilowego " +"przełącznika spowoduje bolesne porażenie prądem." #. ~ Description for broadsword #: lang/json/TOOL_from_json.py @@ -125093,6 +128037,8 @@ msgid "" "This is an early modern sword that saw use in the 16th, 17th, and 18th " "centuries. Called 'broad' to contrast with the slimmer rapiers." msgstr "" +"Miecz używany pomiędzy 16-tym a 18-tym wiekiem. Zwany szerokim dla " +"odróżnienia od cieńszych rapierów." #. ~ Description for broadsword #: lang/json/TOOL_from_json.py @@ -125101,6 +128047,9 @@ msgid "" "centuries. This sword appears to be made very poorly, but it should still " "stand up to a few swings." msgstr "" +"Miecz używany pomiędzy 16-tym a 18-tym wiekiem. Szerokie ostrze odróżnia go " +"od cieńszych rapierów. Ten miecz wygląda na bardzo niskiej jakości " +"produkcję, ale kilka machnięć powinien wytrzymać." #. ~ Description for cutlass #: lang/json/TOOL_from_json.py @@ -125122,7 +128071,7 @@ msgstr "" "To cienki miecz z ornamentowym jelcem. Wygląda na broń preferowaną przez " "gentlemanów i awanturników. Lekka i szybka, czyni każdą bitwę stylową." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " @@ -125131,7 +128080,7 @@ msgstr "" "To rzadki miecz z Japonii. Zabójczy przeciwko nieopancerzonym celom, i nadal" " bardzo efektywny przeciw zbrojom." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -125149,12 +128098,13 @@ msgstr "" "To wielki miecz dwuręczny z Niemiec. Nie jesteś pewien czy powinien być tak " "pogięty," -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " "quite right about this sword." msgstr "" +"To relatywnie powszechny krótki miecz japoński. Coś jest z nim nie tak." #: lang/json/TOOL_from_json.py msgid "pair of butterfly swords" @@ -125170,6 +128120,9 @@ msgid "" "This is a matched pair of traditional Shaolin butterfly swords. They are " "about the same size as machetes, but have hand guards and wider blades." msgstr "" +"Jest to dopasowana para tradycyjnych shaolińskich mieczy motylkowych. Są one" +" mniej więcej tej samej wielkości co maczety, ale mają osłony dłoni i " +"szersze ostrza." #. ~ Description for cutlass #: lang/json/TOOL_from_json.py @@ -125195,6 +128148,10 @@ msgid "" "to be easier to handle as a weapon. Unfortunately, these modifications have" " rendered it much less effective as a woodcutting tool." msgstr "" +"Jest to piła łańcuchowa, która została odchudzona, dostrojona i gruntownie " +"zmodyfikowana, aby łatwiej było się nią posługiwać jako bronią. Niestety, te" +" modyfikacje sprawiły, że jest ona znacznie mniej efektywna jako narzędzie " +"do cięcia drewna." #: lang/json/TOOL_from_json.py msgid "combat chainsaw (on)" @@ -125227,6 +128184,10 @@ msgid "" " modified to be easier to handle as a weapon. Unfortunately, these " "modifications have rendered it much less effective as a woodcutting tool." msgstr "" +"Jest to elektryczna piła łańcuchowa, która została odchudzona, dostrojona i " +"gruntownie zmodyfikowana, aby łatwiej było się nią posługiwać jako bronią. " +"Niestety, te modyfikacje sprawiły, że jest ona znacznie mniej efektywna jako" +" narzędzie do cięcia drewna." #: lang/json/TOOL_from_json.py msgid "electric combat chainsaw (on)" @@ -125260,6 +128221,9 @@ msgid "" "Squeezing it firmly causes resin to squirt from the broken stalk at the end," " hardening within a few seconds of being exposed to the air." msgstr "" +"Jest to duży strąk, wielkości beczki, wypełniony lepką żywicą obcych. Mocne " +"ściśnięcie go powoduje, że żywica tryska z pękniętej łodygi na końcu, " +"twardniejąc w ciągu kilku sekund od wystawienia na działanie atmosfery." #: lang/json/TOOL_from_json.py msgid "glass shard" @@ -125275,6 +128239,8 @@ msgid "" "You carefully place the shards on the ground, ready to be cracked by " "something passing by." msgstr "" +"Ostrożnie kładziesz odłamki na ziemi, gotowe do stłuczenia przez coś " +"przechodzącego tędy." #. ~ Description for glass shard #: lang/json/TOOL_from_json.py @@ -125299,6 +128265,8 @@ msgid "" "This piece of tough thermoplastic resin could allow you to fabricate, " "repair, or reinforce items." msgstr "" +"Ten kawałek wytrzymałej żywicy termoplastycznej może pozwolić ci na " +"wykonanie, naprawę lub wzmocnienie przedmiotów." #: lang/json/TOOL_from_json.py msgid "epoxy chunk" @@ -125314,6 +128282,8 @@ msgid "" "This piece of epoxy is hardy and durable. You could potentially craft items" " with it." msgstr "" +"Ten kawałek żywicy epoksydowej jest odporny i trwały. Możesz potencjalnie " +"wykonać z niego przedmioty." #: lang/json/TOOL_from_json.py msgid "plastic chunk" @@ -125340,13 +128310,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "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." msgstr "" +"To jest mały kawałek tkaniny syntetycznej. W przeciwieństwie do ciebie i " +"innych naturalnych materiałów, nie będzie się ona zbytnio niszczyć z " +"wiekiem. Może teraz to już mniejsze zło." #: lang/json/TOOL_from_json.py msgid "Lycra patch" @@ -125363,6 +128336,10 @@ msgid "" "fibers. It could be used to make flexible yet strong clothing. Stylish, " "but bad for the environment; at least you're recycling it." msgstr "" +"Jest to niewielki kawałek tkaniny syntetycznej z domieszką rozciągliwych " +"włókien lycry. Można ją wykorzystać do produkcji elastycznej, a jednocześnie" +" mocnej odzieży. Stylowe, ale szkodliwe dla środowiska; przynajmniej " +"poddajesz je recyklingowi." #: lang/json/TOOL_from_json.py msgid "layered kevlar panel" @@ -125378,6 +128355,8 @@ msgid "" "This is a small 16-layer thick Kevlar panel. It could be used to repair " "armor made of Kevlar." msgstr "" +"Jest to mały 16-warstwowy kevlarowy panel. Może być użyty do naprawy " +"pancerza wykonanego z Kevlaru." #: lang/json/TOOL_from_json.py msgid "rigid kevlar plate" @@ -125393,6 +128372,8 @@ msgid "" "This is a compressed panel of Kevlar treated with epoxy or other adhesive. " "It could be used to repair items made of Kevlar." msgstr "" +"Jest to sprasowany panel Kevlaru impregnowany żywicą epoksydową lub innym " +"klejem. Może być użyty do naprawy elementów wykonanych z Kevlaru." #: lang/json/TOOL_from_json.py msgid "butchering kit" @@ -125408,6 +128389,9 @@ msgid "" "This is a kit containing all the specialized knives you need to debone, " "skin, and prepare cuts of meat from an animal." msgstr "" +"Jest to zestaw zawierający wszystkie rodzaje specjalistycznych noży " +"potrzebnych do usuwania kości, skóry i przygotowywania porcji mięsa ze " +"zwierząt." #: lang/json/TOOL_from_json.py msgid "pseudo butter churn" @@ -125482,10 +128466,10 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "charcoal smoker" msgid_plural "charcoal smokers" -msgstr[0] "wędzarnia węglowa" -msgstr[1] "wędzarnia węglowa" -msgstr[2] "wędzarnia węglowa" -msgstr[3] "wędzarnia węglowa" +msgstr[0] "wędzarnia na węgiel drzewny" +msgstr[1] "wędzarnie na węgiel drzewny" +msgstr[2] "wędzarni na węgiel drzewny" +msgstr[3] "wędzarni na węgiel drzewny" #. ~ Description for charcoal smoker #: lang/json/TOOL_from_json.py @@ -125765,6 +128749,8 @@ msgid "" "A professional-grade multi-cooker, with a battery slot for camping trips or " "tailgating. There is a dish in it." msgstr "" +"Profesjonalna kuchenka wielofunkcyjna z gniazdem na baterie, przydatna na " +"kempingu lub na grillu. Znajduje się w nim naczynie." #: lang/json/TOOL_from_json.py msgid "lamp oil cooker" @@ -125816,6 +128802,8 @@ msgid "" "This is a simple hand-powered stone quern with wooden handle, for grinding " "grain." msgstr "" +"Są to proste, ręczne żarna kamienne z drewnianą rączką, służące do mielenia " +"ziarna." #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "still" @@ -125831,6 +128819,8 @@ msgid "" "This is a still. It's useful for creating distillations of alcohol and " "other, more curious substances. Features a slot for a thermometer." msgstr "" +"To destylarnia. Użyteczna do destylacji alkoholu i innych bardziej ciekawych" +" substancji. Ma otwór na termometr." #: lang/json/TOOL_from_json.py msgid "survivor mess kit" @@ -125922,6 +128912,9 @@ msgid "" "container of the right size. It's too small to fit anything much larger " "than splintered wood. Activate it to Deploy." msgstr "" +"To jest malutki improwizowany piecyk na drewno, zrobiony z metalowej puszki " +"lub podobnego pojemnika odpowiedniej wielkości. Jest zbyt mały, by zmieścić " +"w nim coś większego niż szczapy drewna. Aktywuj go, aby go rozstawić." #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "fire barrel (200L)" @@ -125939,6 +128932,9 @@ msgid "" "in its walls for air supply. Fires set in a fire barrel will not spread to " "surrounding flammable objects." msgstr "" +"Duża metalowa beczka używana do izolowania ognia. W jej ścianach znajduje " +"się wiele otworów umożliwiających dopływ powietrza. Ogień wzniecony w beczce" +" nie rozprzestrzenia się na otaczające ją łatwopalne przedmioty." #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "fire barrel (100L)" @@ -125959,7 +128955,7 @@ msgstr[3] "krzesła kempingowego" #. ~ Description for camp chair #: lang/json/TOOL_from_json.py msgid "Folded camp chair, deploy to sit down." -msgstr "" +msgstr "Składane krzesło kempingowe, rozłóż je, aby usiąść." #: lang/json/TOOL_from_json.py msgid "deployable antenna" @@ -125975,6 +128971,8 @@ msgid "" "A directional antenna and accompanying tripod, folded into a shape vaguely " "resembling an umbrella." msgstr "" +"Antena kierunkowa wraz z towarzyszącym jej statywem, złożona w kształt " +"przypominający parasol." #: lang/json/TOOL_from_json.py lang/json/trap_from_json.py msgid "cot" @@ -126030,6 +129028,8 @@ msgid "" "Metal butchering rack designed to hang a carcass in the air. It is folded " "for easy transportation." msgstr "" +"Metalowy stojak rzeźniczy przeznaczony do zawieszania tuszy w powietrzu. " +"Jest składany w celu ułatwienia transportu." #: lang/json/TOOL_from_json.py lang/json/vehicle_from_json.py msgid "inflatable boat" @@ -126069,6 +129069,8 @@ msgid "" "A metal rack designed to smoke food for better preservation and taste. It " "is folded for easy transportation." msgstr "" +"Metalowy stelaż przeznaczony do wędzenia żywności dla lepszej konserwacji i " +"smaku. Jest składany dla łatwego transportu." #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "folding table" @@ -126084,6 +129086,8 @@ msgid "" "Metal folding table for off-road trips. It is currently folded for easy " "transportation." msgstr "" +"Metalowy składany stół do wypraw plenerowych. Obecnie jest złożony w celu " +"ułatwienia transportu." #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "leather tarp" @@ -126138,6 +129142,9 @@ msgid "" "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." msgstr "" +"Duży drewniany pojemnik używany do przerabiania surowego mleka na masło i " +"maślankę. Ten model używa korby nożnej i pomieści trzy galony surowego " +"mleka." #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "water mill" @@ -126153,6 +129160,8 @@ msgid "" "A small water-powered mill that can convert starchy products into flour. " "Can be placed via the construction menu." msgstr "" +"Mały młyn napędzany wodą, który może przetwarzać produkty skrobiowe na mąkę." +" Można go postawić poprzez menu budowy." #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "wind mill" @@ -126168,6 +129177,8 @@ msgid "" "A small wind-powered mill that can convert starchy products into flour. Can" " be placed via the construction menu." msgstr "" +"Mały młyn napędzany wiatrem, który może przetwarzać produkty skrobiowe na " +"mąkę. Można go postawić poprzez menu budowy." #. ~ Description for camera #: lang/json/TOOL_from_json.py @@ -126197,6 +129208,10 @@ msgid "" "conventional batteries. Before the Cataclysm, you could have taken " "professional-grade photos using this." msgstr "" +"35 mm lustrzanka jednoobiektywowa (SLR) z cyfrowym i optycznym wizjerem, " +"soczewkami zoom z autofocusem i stabilizacją obrazu, oraz lampą błyskową. " +"Możesz oglądać zdjęcia na ekranie lub zapisać je na karcie pamięci. Korzysta" +" ze zwykłych baterii. Przed Kataklizmem robiłbyś nią profesjonalne zdjęcia." #: lang/json/TOOL_from_json.py msgid "cellphone" @@ -126272,7 +129287,7 @@ msgstr[1] "elektroniczne kajdanki" msgstr[2] "elektroniczne kajdanki" msgstr[3] "elektroniczne kajdanki" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -126292,17 +129307,17 @@ msgstr[3] "tabletu w technologii e-papieru" #. ~ Use action menu_text for e-ink tablet PC. #: lang/json/TOOL_from_json.py msgid "Turn on the screen" -msgstr "" +msgstr "Włącz ekran" #. ~ Use action msg for e-ink tablet PC. #: lang/json/TOOL_from_json.py msgid "You power up the screen." -msgstr "" +msgstr "Włączasz zasilanie ekranu." #. ~ Use action need_charges_msg for e-ink tablet PC. #: lang/json/TOOL_from_json.py msgid "The tablet batteries are dead." -msgstr "" +msgstr "Baterie w tablecie są wyczerpane." #. ~ Description for e-ink tablet PC #: lang/json/TOOL_from_json.py @@ -126311,6 +129326,9 @@ msgid "" "these were nifty gadgets; now, it's an almost priceless resource. Runs on " "conventional batteries." msgstr "" +"Tablet PC używający efektywnego kolorowego e-tuszu. Przed Kataklizmem to " +"były zmyślny gadżet; teraz to bezcenny zasób. Działa na konwencjonalnych " +"bateriach." #: lang/json/TOOL_from_json.py msgid "e-ink tablet PC (on)" @@ -126323,12 +129341,12 @@ msgstr[3] "" #. ~ Use action menu_text for e-ink tablet PC (on). #: lang/json/TOOL_from_json.py msgid "Turn off the screen" -msgstr "" +msgstr "Wyłącz ekran" #. ~ Use action msg for e-ink tablet PC (on). #: lang/json/TOOL_from_json.py msgid "You power down the screen." -msgstr "" +msgstr "Wyłączasz zasilanie ekranu." #: lang/json/TOOL_from_json.py msgid "electrohack" @@ -126405,6 +129423,9 @@ msgid "" "This is a hand-powered battery charger. It has an adjustable receptacle " "designed to accept a wide variety of rechargeable battery cells." msgstr "" +"Jest to ładowarka do akumulatorków z napędem ręcznym. Posiada regulowane " +"gniazdo przeznaczone do ładowania szerokiej gamy baterii wielokrotnego " +"ładowania." #: lang/json/TOOL_from_json.py msgid "laptop computer" @@ -126418,12 +129439,12 @@ msgstr[3] "laptop" #. ~ Use action menu_text for control laptop. #: lang/json/TOOL_from_json.py msgid "Light up the screen" -msgstr "" +msgstr "Rozświetl ekran" #. ~ Description for laptop computer #: lang/json/TOOL_from_json.py msgid "A laptop computer with replaceable batteries." -msgstr "" +msgstr "Laptop z wymiennymi bateriami." #: lang/json/TOOL_from_json.py msgid "laptop computer - lit screen" @@ -126448,6 +129469,9 @@ msgid "" "Fortunately, there's lots of songs you like, and listening to it will raise " "your morale slightly. Use it to turn it on." msgstr "" +"Zasilane bateryjnie urządzenie załadowane czyjąś kolekcją muzyki. " +"Szczęśliwie jest wśród niej wiele lubianych przez ciebie utworów, a " +"słuchanie go nieco poprawi twoje morale. Użyj by włączyć." #: lang/json/TOOL_from_json.py msgid "mp3 player (on)" @@ -126483,6 +129507,11 @@ msgid "" "electronic device with some amplifier circuits. It has now no other use " "beside emitting loud crackling static noise, that could distract zombies." msgstr "" +"Urządzenie to zostało skonstruowane poprzez \"ulepszenie\" głośnika " +"wyrwanego z jakiegoś urządzenia elektronicznego za pomocą obwodów " +"wzmacniacza. Nie ma ono obecnie żadnego innego zastosowania poza emitowaniem" +" głośnego trzeszczącego szumu statycznego, który mógłby odwrócić uwagę " +"zombie." #: lang/json/TOOL_from_json.py msgid "noise emitter (on)" @@ -126499,6 +129528,9 @@ msgid "" "other static sounds. Quick, get away from it before it draws zombies to " "you!" msgstr "" +"To urządzenie zostało włączone i emituje straszne trzaski, stuki i inne " +"statyczne dźwięki. Szybko, uciekaj od niego, zanim przyciągnie do ciebie " +"zombie!" #: lang/json/TOOL_from_json.py msgid "handheld game system" @@ -126530,7 +129562,7 @@ msgstr[3] "smartfonu" #. ~ Use action menu_text for smartphone. #: lang/json/TOOL_from_json.py msgid "Turn on flashlight" -msgstr "" +msgstr "Włącz latarkę" #. ~ Use action msg for smartphone. #. ~ Use action msg for atomic smartphone. @@ -126574,6 +129606,8 @@ msgid "" "This phone is playing music, steadily raising your morale. You can't hear " "anything else while you're listening." msgstr "" +"Ten telefon gra muzykę, miarowo podnosząc twoje morale. Nie słyszysz nic " +"innego, gdy jej słuchasz." #: lang/json/TOOL_from_json.py msgid "smartphone - Flashlight" @@ -126605,6 +129639,10 @@ msgid "" " is designed to power bionics, armor and some guns, but drains batteries " "quickly." msgstr "" +"Zunifikowany system zasilania, zwany UPS. Jest to urządzenie opracowane " +"wspólnie przez wojskowe i naukowe inicjatywy do użycia polowego i w boju. " +"UPS opracowano do zasilania bioniki, pancerzy wspomaganych i niektórych " +"broni, i szybko zużywa baterie." #: lang/json/TOOL_from_json.py msgid "vibrator" @@ -126639,6 +129677,9 @@ msgid "" " them, or to lift manhole covers. You could also wield it to bash some " "heads in." msgstr "" +"To masywne narzędzie do wyważania. Użyj go do wyważenia zamkniętych drzwi " +"bez niszczenia ich, lub podważania włazów do studzienek kanalizacyjnych. " +"Możesz też użyć go do rozbicia paru łbów." #: lang/json/TOOL_from_json.py msgid "rudimentary lockpick" @@ -126656,6 +129697,10 @@ msgid "" " are almost totally inadequate for the job, but when you've got nothing " "else, it might work." msgstr "" +"Jest to para cienkich kawałków metalu, jeden wygięty w kształcie litery " +"\"L\" do popychania zapadek, a drugi sztywny przedmiot działający jako klucz" +" skrętny. Narzędzia są prawie całkowicie nieodpowiednie do tej pracy, ale " +"kiedy nie masz nic innego, to może zadziałać." #: lang/json/TOOL_from_json.py msgid "improvised lockpick" @@ -126712,6 +129757,10 @@ msgid "" "or to lift manhole covers. You could also wield it to fight with, in a " "pinch." msgstr "" +"Jest to rura, której końce zostały wygięte i zbite na płasko, dzięki czemu " +"przypomina łom. Używaj jej do otwierania zamkniętych skrzyń bez ich " +"niszczenia lub do podnoszenia pokryw włazów kanalizacyjnych. W razie " +"potrzeby możesz nią również walczyć." #: lang/json/TOOL_from_json.py msgid "locksmith kit" @@ -126728,6 +129777,9 @@ msgid "" "It is essential for silently and quickly opening locks, provided you have " "some lock picking and mechanical skills." msgstr "" +"To zestaw ślusarski twardych stalowych wytrychów i narzędzi do podważania. " +"Jest niezbędny do cichego i szybkiego otwierania zamków, o ile masz nieco " +"zdolności w zakresie otwierania zamków i mechaniki." #: lang/json/TOOL_from_json.py msgid "bio lockpick" @@ -126903,6 +129955,11 @@ msgid "" " in your inventory to do this. Shortly after lighting the fuse, this item " "will explode, so get away!" msgstr "" +"Jest to kilka lasek materiałów wybuchowych otoczonych odłamkami, upchniętych" +" wewnątrz metalowego pojemnika. Lont wystaje przez mały otwór. Użyj tego " +"przedmiotu, aby zapalić lont. Będziesz oczywiście potrzebował zapalniczki " +"lub zapałek w swoim ekwipunku, aby to zrobić. Krótko po zapaleniu lontu, ten" +" przedmiot eksploduje, więc uciekaj!" #: lang/json/TOOL_from_json.py msgid "dynamite bomb (lit)" @@ -126918,6 +129975,8 @@ msgid "" "The fuse on this dynamite bomb is lit and hissing. It'll explode any moment" " now." msgstr "" +"Lont w tej bombie dynamitowej jest zapalony i syczy. Wybuchnie w każdej " +"chwili." #: lang/json/TOOL_from_json.py msgid "EMP bomb" @@ -126930,12 +129989,12 @@ msgstr[3] "" #. ~ Use action menu_text for EMP bomb. #: lang/json/TOOL_from_json.py msgid "Activate bomb" -msgstr "" +msgstr "Aktywuj bombę" #. ~ Use action msg for EMP bomb. #: lang/json/TOOL_from_json.py msgid "You activate the EMP bomb." -msgstr "" +msgstr "Aktywujesz bombę EMP." #. ~ Description for EMP bomb #: lang/json/TOOL_from_json.py @@ -126946,6 +130005,11 @@ msgid "" "this magnetic field is fed into the antenna, it creates a strong electro-" "magnetic pulse." msgstr "" +"To niebagatelne urządzenie jest bombą generującą impuls elektromagnetyczny. " +"Po aktywacji, plutonowe ogniwo paliwowe jest opróżniane do generatora " +"kompresji strumienia, którego detonacja wytwarza silne pole magnetyczne. " +"Kiedy to pole magnetyczne jest doprowadzane do anteny, wytwarza ono silny " +"impuls elektromagnetyczny." #: lang/json/TOOL_from_json.py msgid "active EMP bomb" @@ -126959,7 +130023,7 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py #, no-python-format msgid "You've already activated the %s, try throwing it instead." -msgstr "" +msgstr "Już aktywowałeś %s, spróbuj zamiast tego tym rzucić." #. ~ Description for active EMP bomb #: lang/json/TOOL_from_json.py @@ -126968,6 +130032,10 @@ msgid "" "field that damages robots and drains bionic energy, as well as a sizeable " "explosion. You may not want to be holding it much longer." msgstr "" +"Ta bomba EMP jest aktywna i wkrótce wybuchnie, tworząc obszar działania " +"silnego impulsu elektromagnetycznego, który uszkodzi roboty i wyczerpie " +"energię bioniczną, a także spowoduje niemałą eksplozję. Możesz nie chcieć " +"trzymać jej zbyt długo." #: lang/json/TOOL_from_json.py msgid "firecracker" @@ -127059,6 +130127,9 @@ msgid "" "with intense light and sound, blinding, deafening and disorienting anyone " "nearby." msgstr "" +"To policyjny i wojskowy granat ogłuszający. Użyj by odpalić zapalnik. " +"Będziesz miał pięć sekund zanim wybuchnie intensywnym błyskiem i hukiem, " +"ogłuszając, oślepiając i dezorientując wszystkich w pobliżu." #: lang/json/TOOL_from_json.py msgid "active flashbang" @@ -127113,6 +130184,10 @@ msgid "" "time. This gas poisons those exposed to it, in addition to obscuring vision" " and scent." msgstr "" +"To toporna bomba gazowa wykonana z użyciem chemii gospodarczej. Użyj by " +"uzbroić. Po trzech sekundach zacznie wydzielać toksyczny gaz przez krótki " +"czas. Gaz ten truje wystawionych na jego działanie, zaciemnia wzrok i tłumi " +"węch." #: lang/json/TOOL_from_json.py msgid "active makeshift gas canister" @@ -127126,7 +130201,7 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py #, no-python-format msgid "You've already armed the %s; try throwing it instead." -msgstr "" +msgstr "Już uzbroiłeś %s; spróbuj zamiast tego tym rzucić." #. ~ Use action sound_msg for active makeshift gas canister. #: lang/json/TOOL_from_json.py @@ -127220,6 +130295,13 @@ msgid "" "three seconds before it detonates, creating an EMP field that damages robots" " and drains bionic energy." msgstr "" +"Jest to granat generujący impuls elektromagnetyczny za pomocą baterii " +"kondensatorów o niskiej indukcyjności, wyładowanej w jednopętlową antenę. " +"Wytwarza on także lekką chmurę wstrząsów elektrycznych. Użyj tego " +"przedmiotu, aby wyciągnąć zawleczkę i zapalić lont, zmieniając go w aktywny " +"granat EMP. Będziesz miał trzy sekundy zanim wybuchnie, tworząc obszar " +"działania pola elektromagnetycznego, które uszkadza roboty i wysysa energię " +"bioniczną." #: lang/json/TOOL_from_json.py msgid "active EMP grenade" @@ -127236,6 +130318,10 @@ msgid "" "field that damages robots and drains bionic energy as well as a mild " "electric shock cloud. You may not want to be holding it much longer." msgstr "" +"Ten granat EMP jest aktywny i wkrótce wybuchnie, tworząc obszar działania " +"silnego impulsu elektromagnetycznego, który uszkodzi roboty i wyczerpie " +"energię bioniczną, a także spowoduje lekką chmurę wstrząsów elektrycznych. " +"Możesz nie chcieć trzymać go zbyt długo." #: lang/json/TOOL_from_json.py msgid "incendiary grenade" @@ -127252,6 +130338,9 @@ msgid "" " pin and light the fuse. You will then have five seconds before it explodes" " into a raging inferno; throwing it would be a good idea." msgstr "" +"Wojskowy ręczny granat zapalający. Użyj go by wyciągnąć zawleczkę i odpalić " +"zapalnik. Będziesz miał pięć sekund zanim zdetonuje dziką falą płomieni, " +"rzucenie nim będzie dobrym pomysłem." #: lang/json/TOOL_from_json.py msgid "active incendiary grenade" @@ -127379,6 +130468,10 @@ msgid "" "backup systems kick in. Use this item to pull the pin and light the fuse, " "turning it into an active scrambler grenade." msgstr "" +"To wyspecjalizowany granat, opracowany do zagłuszania czipów identyfikacji " +"swój-wróg (IFF) w robotach. Powoduje przejście robotów na twoją stronę na " +"krótki okres, zanim nie uruchomią się systemy zapasowe. Użyj by wyciągnąć " +"zawleczkę, zmieniając go w aktywny granat zagłuszający." #: lang/json/TOOL_from_json.py msgid "active scrambler grenade" @@ -127472,6 +130565,8 @@ msgid "" "You light the fuse on the improvised grenade. Throw it before it blows in " "your face!" msgstr "" +"Zapalasz lont w zaimprowizowanym granacie. Rzuć go, zanim wybuchnie ci w " +"twarz!" #. ~ Description for military explosive small homemade grenade #. ~ Description for military explosive homemade grenade @@ -127481,6 +130576,9 @@ msgid "" "light the fuse. You will then have some amount of time before it explodes; " "throwing it would be a good idea." msgstr "" +"Improwizowany ładunek wybuchowy sklecony z części. Użyj tego przedmiotu, aby" +" zapalić lont. Będziesz miał trochę czasu, zanim wybuchnie; rzucenie go " +"byłoby dobrym pomysłem." #: lang/json/TOOL_from_json.py msgid "active military explosive small homemade grenade" @@ -127499,7 +130597,7 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py #, no-python-format msgid "You've already lit the %s's fuse; try throwing it instead." -msgstr "" +msgstr "Już zapaliłeś lont w %s, spróbuj zamiast tego tym rzucić." #. ~ Use action sound_msg for active military explosive small homemade #. grenade. @@ -127537,7 +130635,7 @@ msgstr[3] "" #. ~ Use action msg for military explosive pipebomb. #: lang/json/TOOL_from_json.py msgid "You pull the pin on the pipebomb." -msgstr "" +msgstr "Wyciągasz zawleczkę z bomby rurowej." #. ~ Description for military explosive pipebomb #: lang/json/TOOL_from_json.py @@ -127562,7 +130660,7 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py #, no-python-format msgid "You've already pulled the %s pin, try throwing it instead." -msgstr "" +msgstr "Już wyrwałeś zawleczkę w %s, spróbuj zamiast tego tym rzucić." #. ~ Description for active military explosive pipebomb #: lang/json/TOOL_from_json.py @@ -127570,6 +130668,8 @@ msgid "" "This pipebomb's pin is pulled, and it will explode any second now. Throw it" " immediately!" msgstr "" +"To aktywna bomba rurowa z wyciągniętą zawleczką, która wybuchnie lada " +"chwila. Rzuć ją lepiej!" #: lang/json/TOOL_from_json.py msgid "military explosive bomb" @@ -127585,6 +130685,8 @@ msgid "" "You pull the pin on the small bootleg fragmentation device. Get rid of it " "quickly!" msgstr "" +"Wyciągasz zawleczkę z małego nielegalnego ładunku fragmentującego. Pozbądź " +"się go szybko!" #. ~ Description for military explosive bomb #: lang/json/TOOL_from_json.py @@ -127594,6 +130696,11 @@ msgid "" "fuse. Use this item to pull the pin. Once you do it should explode in " "about 20 seconds." msgstr "" +"Jest to urządzenie wybuchowe domowej roboty, składające się z dużej " +"plastikowej butli wypełnionej wojskowymi materiałami wybuchowymi i złomem, " +"wyposażonej w zapalnik z opóźnionym zapłonem. Użyj tego przedmiotu, aby " +"wyciągnąć zawleczkę. Gdy to zrobisz, powinien eksplodować w ciągu około 20 " +"sekund." #: lang/json/TOOL_from_json.py msgid "active military explosive bomb" @@ -127606,7 +130713,7 @@ msgstr[3] "" #. ~ Use action no_deactivate_msg for active military explosive bomb. #: lang/json/TOOL_from_json.py msgid "You've already pulled the pin - run!" -msgstr "" +msgstr "Już wyciągnąłeś zawleczkę - wiej!" #. ~ Description for active military explosive bomb #: lang/json/TOOL_from_json.py @@ -127615,6 +130722,9 @@ msgid "" "filled with military explosives and scrap metal, whose fuse has been lit, " "its final countdown starting." msgstr "" +"Domowej roboty ładunek wybuchowy z dużej plastikowej butli wypełnionej " +"wojskowymi materiałami wybuchowymi i drobnym złomem metalowym, którego lont " +"zapalono rozpoczynając odliczanie." #: lang/json/TOOL_from_json.py msgid "military explosive 50L barrel bomb" @@ -127630,7 +130740,7 @@ msgstr[3] "" #. ~ Use action menu_text for 100L barrel bomb. #: lang/json/TOOL_from_json.py msgid "Activate fuze" -msgstr "" +msgstr "Aktywuj zapalnik" #. ~ Use action msg for military explosive 50L barrel bomb. #. ~ Use action msg for military explosive 100L barrel bomb. @@ -127638,7 +130748,7 @@ msgstr "" #. ~ Use action msg for 100L barrel bomb. #: lang/json/TOOL_from_json.py msgid "You activate the fuze on the barrel bomb. Clear the area!" -msgstr "" +msgstr "Aktywujesz zapalnik w bombie beczkowej. Opuść teren!" #. ~ Description for military explosive 50L barrel bomb #: lang/json/TOOL_from_json.py @@ -127647,6 +130757,9 @@ msgid "" "been activated it will explode in 100 seconds, raining fire and steel on " "everything in sight." msgstr "" +"Jest to metalowy keg, wypełniony dużą ilością wojskowych materiałów " +"wybuchowych. Po aktywacji wybuchnie w ciągu 100 sekund, paląc ogniem i " +"mieczem wszystko w zasięgu wzroku." #: lang/json/TOOL_from_json.py msgid "active military explosive 50L barrel bomb" @@ -127665,7 +130778,7 @@ msgstr[3] "" #. ~ Use action no_deactivate_msg for active alien bomb. #: lang/json/TOOL_from_json.py msgid "You've already activated the bomb - clear the area immediately!" -msgstr "" +msgstr "Aktywowałeś już bombę - natychmiast opuść teren!" #. ~ Description for active military explosive 50L barrel bomb #: lang/json/TOOL_from_json.py @@ -127674,6 +130787,9 @@ msgid "" "activated and will soon explode, delivering its entire destructive power to " "everything in sight." msgstr "" +"Jest to metalowy keg, wypełniony dużą ilością wojskowych materiałów " +"wybuchowych. Jest aktywowany i wkrótce eksploduje, uwalniając całą swoją " +"niszczycielską moc na wszystko w zasięgu wzroku." #: lang/json/TOOL_from_json.py msgid "military explosive 100L barrel bomb" @@ -127691,6 +130807,9 @@ msgid "" " it has been activated it will explode in 100 seconds, raining fire and " "steel on everything in sight." msgstr "" +"Jest to metalowa beczka o pojemności 100 litrów, wypełniona dużą ilością " +"wojskowych materiałów wybuchowych. Po aktywacji wybuchnie w ciągu 100 " +"sekund, paląc ogniem i mieczem wszystko w zasięgu wzroku." #: lang/json/TOOL_from_json.py msgid "active military explosive 100L barrel bomb" @@ -127708,6 +130827,9 @@ msgid "" "has been activated and will soon explode, delivering its entire destructive " "power to everything in sight." msgstr "" +"Jest to metalowa beczka pojemności 100 litrów, wypełniona dużą ilością " +"wojskowych materiałów wybuchowych. Jest aktywowana i wkrótce eksploduje, " +"uwalniając całą swoją niszczycielską moc na wszystko w zasięgu wzroku." #: lang/json/TOOL_from_json.py msgid "small homemade grenade" @@ -127725,6 +130847,9 @@ msgid "" "item light the fuse. You will then have 5 seconds before it explodes; " "throwing it would be a good idea." msgstr "" +"Improwizowany ładunek wybuchowy sklecony z części zamiennych. Użyj tego " +"przedmiotu, aby zapalić lont. Będziesz miał 5 sekund zanim wybuchnie; " +"rzucenie nim byłoby dobrym pomysłem." #: lang/json/TOOL_from_json.py msgid "active small homemade grenade" @@ -127770,6 +130895,9 @@ msgid "" "the fuse, which gives you six seconds to get away from it before it " "detonates. You'll need a lighter or some matches to use it." msgstr "" +"To odcinek rury napełniony materiałem wybuchowym. Użyj by odpalić lont, co " +"da ci sześć sekund by od niej uciec zanim wybuchnie. Potrzebujesz " +"zapalniczki lub zapałek by to zrobić." #: lang/json/TOOL_from_json.py msgid "active pipebomb" @@ -127785,6 +130913,8 @@ msgid "" "This pipebomb's fuse is lit, and it will explode any second now. Throw it " "immediately!" msgstr "" +"To aktywna bomba rurowa z zapalonym lontem, która wybuchnie lada chwila. " +"Rzuć ją niezwłocznie!" #: lang/json/TOOL_from_json.py msgid "homemade bomb" @@ -127800,6 +130930,8 @@ msgid "" "You light the fuse on the small improvised fragmentation device. Get rid of" " it quickly!" msgstr "" +"Zapalasz lont małego nielegalnego ładunku fragmentującego. Pozbądź się go " +"szybko!" #. ~ Description for homemade bomb #: lang/json/TOOL_from_json.py @@ -127809,6 +130941,10 @@ msgid "" "Use this item to light the fuse. Once you do it should explode in about 20 " "seconds." msgstr "" +"Jest to urządzenie wybuchowe domowej roboty, składające się z dużej " +"plastikowej butli wypełnionej stabilnymi materiałami wybuchowymi i złomem, " +"wyposażonej w długi lont. Użyj tego przedmiotu, aby zapalić lont. Gdy to " +"zrobisz, powinien eksplodować w ciągu około 20 sekund." #. ~ Use action no_deactivate_msg for homemade bomb. #: lang/json/TOOL_from_json.py @@ -127827,6 +130963,9 @@ msgid "" "filled with stable explosives and scrap metal, whose fuse has been lit, its " "final countdown starting." msgstr "" +"Domowej roboty ładunek wybuchowy z dużej plastikowej butli wypełnionej " +"stabilnymi materiałami wybuchowymi i drobnym złomem metalowym, którego lont " +"zapalono rozpoczynając odliczanie." #: lang/json/TOOL_from_json.py msgid "homemade demolition charge" @@ -127850,6 +130989,10 @@ msgid "" "You will, of course, need a lighter or matches in your inventory to do this." " 20 seconds after lighting the fuse, this item will explode, so get away!" msgstr "" +"Jest to improwizowany ładunek burzący. Użyj tego przedmiotu, aby zapalić " +"lont. Będziesz oczywiście potrzebował zapalniczki lub zapałek w swoim " +"ekwipunku, aby to zrobić. 20 sekund po zapaleniu lontu, ten przedmiot " +"eksploduje, więc uciekaj!" #: lang/json/TOOL_from_json.py msgid "homemade demolition charge (lit)" @@ -127865,6 +131008,8 @@ msgid "" "The fuse on this primitive demolition charge is lit and hissing. It'll " "explode any moment now." msgstr "" +"Lont w tym prymitywnym ładunku burzącym jest zapalony i syczy. Wybuchnie " +"lada chwila." #: lang/json/TOOL_from_json.py msgid "50L barrel bomb" @@ -127882,6 +131027,10 @@ msgid "" "charge detonates completely and delivers its entire destructive power to " "everything in sight." msgstr "" +"Jest to metalowy keg, wypełniony dużą ilością stabilnego materiału " +"wybuchowego. Zawiera wybuchowy rdzeń, dzięki czemu po 100 sekundach od " +"zapalenia lontu ładunek całkowicie zdetonuje i całą swoją niszczycielską " +"mocą porazi wszystko w zasięgu wzroku." #: lang/json/TOOL_from_json.py msgid "active 50L barrel bomb" @@ -127898,6 +131047,9 @@ msgid "" "been lit and once it ignites the primary explosive, the bomb will detonate " "and rain fire and steel on everything in sight." msgstr "" +"Jest to metalowy keg, wypełniony dużą ilością stabilnego materiału " +"wybuchowego. Lont został zapalony i gdy zapali on główny materiał wybuchowy," +" bomba zdetonuje i deszcz ognia i stali spowije wszystko w zasięgu wzroku." #: lang/json/TOOL_from_json.py msgid "100L barrel bomb" @@ -127986,6 +131138,8 @@ msgid "" "This is a magnesium bar and a carbon steel striker. Use it to spark a " "flame." msgstr "" +"Jest to sztabka magnezu i spłonka ze stali węglowej. Użyj go do rozniecenia " +"płomienia." #: lang/json/TOOL_from_json.py msgid "lighter" @@ -128112,7 +131266,7 @@ msgstr "Rozpalasz podpałkę." #. ~ Use action need_charges_msg for ember carrier. #: lang/json/TOOL_from_json.py msgid "The ember carrier is out of tinder." -msgstr "" +msgstr "W nośniku żaru nie ma już podpałki." #. ~ Use action need_fire_msg for ember carrier. #: lang/json/TOOL_from_json.py @@ -128169,6 +131323,10 @@ msgid "" "pick opposite the blade, and an insulated handle. Used on airplanes to chop" " down or pry walls, or cabinets to gain access in case of fire." msgstr "" +"Krótkie, lekkie narzędzie ratownicze z ostrzem o kształcie ćwierci koła, z " +"krótkim kilofem po przeciwnej stronie ostrza i izolowaną rękojeścią. Używane" +" w samolotach do rozcinania lub wyłamywania ścian lub szafek, aby uzyskać " +"dostęp w przypadku pożaru." #: lang/json/TOOL_from_json.py msgid "large fire extinguisher" @@ -128184,6 +131342,8 @@ msgid "" "This is an emergency fire extinguisher containing five gallons of fire " "retardant foam. It would be useful for putting out adjacent fires." msgstr "" +"Jest to gaśnica awaryjna zawierająca pięć galonów piany gaśniczej. Przydaje " +"się do gaszenia pobliskich pożarów." #: lang/json/TOOL_from_json.py msgid "fire axe" @@ -128206,9 +131366,9 @@ msgstr "" msgid "Halligan bar" msgid_plural "Halligan bars" msgstr[0] "strażackie narzędzie ratownicze" -msgstr[1] "strażackie narzędzie ratownicze" -msgstr[2] "strażackie narzędzie ratownicze" -msgstr[3] "strażackie narzędzie ratownicze" +msgstr[1] "strażackie narzędzia ratownicze" +msgstr[2] "strażackich narzędzi ratowniczych" +msgstr[3] "strażackiego narzędzia ratowniczego" #. ~ Description for Halligan bar #: lang/json/TOOL_from_json.py @@ -128252,12 +131412,12 @@ msgstr[3] "rzucana gaśnica" #. ~ Use action menu_text for throwable fire extinguisher. #: lang/json/TOOL_from_json.py msgid "Pull plug" -msgstr "" +msgstr "Wyciągnij zatyczkę" #. ~ Use action msg for throwable fire extinguisher. #: lang/json/TOOL_from_json.py msgid "You pull the plug on the extinguisher grenade." -msgstr "" +msgstr "Wyciągasz zatyczkę w granacie gaśniczym." #. ~ Description for throwable fire extinguisher #: lang/json/TOOL_from_json.py @@ -128267,6 +131427,9 @@ msgid "" " plug that can be pulled, but is primarily activated by heat, so just throw " "it into the flames." msgstr "" +"To gaśnica w formie granatu. Nie tak efektywna jak zwykła gaśnica, ale można" +" jej użyć na dystans. Ma plastikową wyciąganą zatyczkę, którą można wyjąć, " +"ale jest głównie aktywowana termicznie, więc rzuć ją w płomienie." #: lang/json/TOOL_from_json.py msgid "active throwable fire extinguisher" @@ -128282,6 +131445,8 @@ msgid "" "This is an active extinguisher grenade, likely to burst any second now. " "Better throw it!" msgstr "" +"To jest aktywny granat gaśniczy, który może zadziałać w każdej chwili. " +"Lepiej go rzuć!" #: lang/json/TOOL_from_json.py msgid "New York hook" @@ -128297,6 +131462,8 @@ msgid "" "A shaft with a pair of hooks on one end and a pry bar on the other, forged " "from a single piece of steel." msgstr "" +"Trzonek z parą haków na jednym końcu i łomem na drugim, wykuty z jednego " +"kawałka stali." #: lang/json/TOOL_from_json.py msgid "plastic fish trap" @@ -128369,6 +131536,10 @@ msgid "" "with a rotating guard around that. It is not as effective as a normal " "fishing pole, but is much more compact than them." msgstr "" +"Komercyjna wersja wędki określanej często mianem \"kołowrotka wędkarskiego " +"dla kloszardów\". Jest to krótkie wędzisko z sekcją na jednym końcu z " +"obrotową osłoną, na której owinięta jest żyłka wędkarska. Nie jest tak " +"skuteczna jak zwykła wędka, ale jest od niej znacznie bardziej kompaktowa." #: lang/json/TOOL_from_json.py msgid "hobo hand fishing reel" @@ -128386,6 +131557,11 @@ msgid "" "put the string to help pull in fish. It is not as effective as a normal " "fishing pole, but is much more compact than them." msgstr "" +"Często zwana „kołowrotkiem wędkarskim dla kloszardów”. Jest to krótka " +"drewniana wędka z odcinkiem na jednym końcu z owiniętą wokół niego żyłką " +"wędkarską, z nacięciem do umieszczenia sznurka, aby pomóc w przyciąganiu " +"ryb. Nie jest tak skuteczna jak zwykła wędka, ale jest od niej znacznie " +"bardziej kompaktowa." #: lang/json/TOOL_from_json.py msgid "hand press" @@ -128423,6 +131599,14 @@ msgid "" " plastic hulls. There's no provision for resizing, so reloaded hulls will " "fire best in the firearm they were fired from." msgstr "" +"Jest to zbiór przedmiotów zaimprowizowanych do polowego przeładowywania " +"pocisków śrutowych do strzelb. Deska z wyciętym pośrodku otworem, średniej " +"wielkości gwóźdź i strugany kołek służą do osadzania podkładek, usuwania " +"spłonek i ponownego (ostrożnego!) zakładania spłonek do łusek. Proch i śrut " +"odmierza się ściętą wystrzeloną łuską. Przeciwległa strona deski została " +"wyprofilowana tak, aby umożliwić zaciskanie plastikowych łusek metodą " +"walcowania. Nie ma możliwości zmiany rozmiaru, więc przeładowane łuski będą " +"najlepiej strzelały z broni, z której zostały wystrzelone." #: lang/json/TOOL_from_json.py msgid "kinetic bullet puller" @@ -128540,6 +131724,9 @@ msgid "" "damage, but it really should be used against inanimate objects. It is too " "small to butcher corpses with." msgstr "" +"Jest to mały nóż, przeznaczony do otwierania pudełek. Może wyrządzić pewne " +"szkody, ale powinien być używany przeciwko martwym przedmiotom. Jest zbyt " +"mały, by używać go do rzeźnictwa." #: lang/json/TOOL_from_json.py msgid "stone chopper" @@ -128555,6 +131742,9 @@ msgid "" "A rock with sharpened edges, produced by knapping. Works as a crude cutting" " and butchering tool, if nothing else is available." msgstr "" +"Kamień z zaostrzonymi krawędziami, powstały w wyniku odłupywania. Służy jako" +" prymitywne narzędzie do cięcia i rzeźnictwa, jeśli nie ma nic innego do " +"dyspozycji." #: lang/json/TOOL_from_json.py msgid "trowel" @@ -128575,9 +131765,9 @@ msgstr "" msgid "hoe" msgid_plural "hoes" msgstr[0] "motyka" -msgstr[1] "motyka" -msgstr[2] "motyka" -msgstr[3] "motyka" +msgstr[1] "motyki" +msgstr[2] "motyk" +msgstr[3] "motyki" #. ~ Description for hoe #: lang/json/TOOL_from_json.py @@ -128603,6 +131793,9 @@ msgid "" "an alternative to metal shovels when metal was too expensive. It works " "passably well, but really can't compare to a metal shovel." msgstr "" +"To jest prymitywna łopata z głowicą wykonaną z drewna, historycznie używana " +"jako alternatywa dla metalowych łopat, gdy metal był zbyt drogi. Działa " +"całkiem nieźle, ale tak naprawdę nie może się równać z metalową łopatą." #: lang/json/TOOL_from_json.py msgid "metal rake" @@ -128615,7 +131808,7 @@ msgstr[3] "" #. ~ Description for metal rake #: lang/json/TOOL_from_json.py msgid "A sturdy metal rake, a must-have during autumn." -msgstr "" +msgstr "Solidne metalowe grabie, niezbędne w okresie jesiennym." #: lang/json/TOOL_from_json.py msgid "plastic rake" @@ -128631,6 +131824,8 @@ msgid "" "A cheap plastic rake. Will break quite fast if used for anything other than" " raking leaves." msgstr "" +"Tanie, plastikowe grabie. Zepsują się dość szybko, jeśli będą używane do " +"czegoś innego niż grabienie liści." #: lang/json/TOOL_from_json.py msgid "scythe" @@ -128655,9 +131850,9 @@ msgstr "" msgid "shovel" msgid_plural "shovels" msgstr[0] "szpadel" -msgstr[1] "szpadel" -msgstr[2] "szpadel" -msgstr[3] "szpadel" +msgstr[1] "szpadle" +msgstr[2] "szpadli" +msgstr[3] "szpadla" #. ~ Description for shovel #: lang/json/TOOL_from_json.py @@ -128676,7 +131871,7 @@ msgstr[3] "" #. ~ Description for snow shovel #: lang/json/TOOL_from_json.py msgid "This is a sturdy tool used for shoving snow." -msgstr "" +msgstr "Jest to solidne narzędzie służące do odśnieżania." #: lang/json/TOOL_from_json.py msgid "plastic snow shovel" @@ -128689,7 +131884,7 @@ msgstr[3] "" #. ~ Description for plastic snow shovel #: lang/json/TOOL_from_json.py msgid "A cheap plastic shovel used for shoving snow." -msgstr "" +msgstr "Jest to tania plastikowa łopata służąca do odśnieżania." #: lang/json/TOOL_from_json.py msgid "sickle" @@ -128969,7 +132164,7 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "The glowstick fades out." -msgstr "" +msgstr "Światło chemiczne gaśnie." #: lang/json/TOOL_from_json.py msgid "flare" @@ -129017,7 +132212,7 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "The flare sputters out" -msgstr "" +msgstr "Flara gaśnie." #: lang/json/TOOL_from_json.py msgid "heavy duty flashlight (off)" @@ -129041,12 +132236,12 @@ msgstr "Baterie w latarce przemysłowej są wyczerpane." #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" "To przemysłowa latarka LED w aluminiowej tubie, często używana przez " -"pracowników ochrony. Ujdzie jako słaba broń do walki wręcz. Użycie jej " -"zapali światło, jeżeli ma baterie." +"pracowników ochrony. Użycie jej zapali światło, nawet pod wodą, jeżeli ma " +"baterie." #: lang/json/TOOL_from_json.py msgid "heavy duty flashlight (on)" @@ -129084,10 +132279,13 @@ msgid "" " It provides some weak light and can't be turned off until the battery " "dies." msgstr "" +"Jest to obwód emitujący światło, który został podłączony bezpośrednio do " +"baterii. Zapewnia słabe światło i nie można go wyłączyć, dopóki bateria nie " +"padnie." #: lang/json/TOOL_from_json.py msgid "The lightstrip dies." -msgstr "" +msgstr "Pasek świetlny gaśnie." #: lang/json/TOOL_from_json.py msgid "lightstrip (inactive)" @@ -129108,6 +132306,9 @@ msgid "" "This is a light-emitting circuit that can be wired directly to a battery. " "It provides some weak light and can't be turned off until the battery dies." msgstr "" +"Jest to obwód emitujący światło, który może zostać podłączony bezpośrednio " +"do baterii. Zapewnia słabe światło i nie można go wyłączyć, dopóki bateria " +"nie padnie." #: lang/json/TOOL_from_json.py msgid "oil lamp (off)" @@ -129163,6 +132364,8 @@ msgid "" "An antique brass lamp designed to run from a pressurized cylinder of " "acetylene. It is an efficient, if somewhat dangerous, light source." msgstr "" +"Antyczna mosiężna lampa pracująca na sprężonym w cylindrze acetylenie. " +"Efektywne acz niebezpieczne źródło światła." #: lang/json/TOOL_from_json.py msgid "acetylene lamp (on)" @@ -129259,7 +132462,7 @@ msgstr[3] "sprytna lampa (wł.)" #. ~ Use action msg for smart lamp (on). #: lang/json/TOOL_from_json.py msgid "Your smart lamp turned off." -msgstr "" +msgstr "Twoja sprytna lampa się wyłącza." #. ~ Description for smart lamp (on) #: lang/json/TOOL_from_json.py @@ -129328,6 +132531,10 @@ msgid "" " 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." msgstr "" +"Jest to narzędzie budowlane służące do przecinania betonu lub innych " +"powierzchni. Działa na benzynę. Użycie tego przedmiotu spowoduje, że się " +"włączy, zamieniając go w bardzo potężną, ale nieporęczną broń do walki wręcz" +" lub okropną piłę łańcuchową." #: lang/json/TOOL_from_json.py msgid "masonry saw (on)" @@ -129342,6 +132549,8 @@ msgstr[3] "" msgid "" "This masonry saw is on and making a lot of noise. Use it to turn it off." msgstr "" +"Ta piła murarska jest włączona i robi dużo hałasu. Użyj jej, aby ją " +"wyłączyć." #: lang/json/TOOL_from_json.py msgid "anesthesia kit" @@ -129381,6 +132590,9 @@ msgid "" "requires a massive amount of power, so standard batteries will not power it " "sufficiently." msgstr "" +"To jest autoklaw. Jest przydatny do sterylizacji takich rzeczy jak KBM. " +"Wymaga ogromnej ilości energii, więc standardowe baterie nie zasilą go w " +"wystarczającym stopniu." #: lang/json/TOOL_from_json.py msgid "inhaler" @@ -129600,9 +132812,8 @@ msgid "" "This is a portable, charcoal fired, metalworking forge. If combined with " "the right tools, you could use this for metalworking." msgstr "" -"Przenośna, opalana węglem drzewnym, kuźnia do prac metalurgicznych. " -"Połączona z właściwymi narzędziami mógłbyś jej użyć do robót " -"metalurgicznych." +"Przenośna, opalana węglem drzewnym, kuźnia metalurgiczna. Połączona z " +"właściwymi narzędziami mógłbyś jej użyć do robót metalurgicznych." #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "rock forge" @@ -129688,9 +132899,9 @@ msgstr "" msgid "finished charcoal kiln" msgid_plural "finished charcoal kilns" msgstr[0] "wygasły piec do węgla drzewnego" -msgstr[1] "wygasły piec do węgla drzewnego" -msgstr[2] "wygasły piec do węgla drzewnego" -msgstr[3] "wygasły piec do węgla drzewnego" +msgstr[1] "wygasłe piece do węgla drzewnego" +msgstr[2] "wygasłych pieców do węgla drzewnego" +msgstr[3] "wygasłego pieca do węgla drzewnego" #. ~ Description for finished charcoal kiln #: lang/json/TOOL_from_json.py @@ -129781,6 +132992,8 @@ msgid "" "This is a hardened chisel like object for metalsmithing. This is used to " "cut lengths of metal in some metalworking fabrication recipes." msgstr "" +"Jest to hartowany przedmiot przypominający dłuto do obróbki metali. Jest on " +"używany do cięcia kawałków metalu w niektórych recepturach obróbki metalu." #: lang/json/TOOL_from_json.py msgid "drift" @@ -129796,6 +133009,9 @@ msgid "" "This is a hardened spike like object for metalsmithing. This is used to " "make holes in metal in some metalworking fabrication recipes." msgstr "" +"Jest to utwardzony przedmiot do obróbki metali przypominający szpikulec. " +"Jest on używany do robienia otworów w metalu w niektórych recepturach " +"obróbki metalu." #: lang/json/TOOL_from_json.py msgid "pair of metal tongs" @@ -129809,6 +133025,7 @@ msgstr[3] "metalowe obcęgi" #: lang/json/TOOL_from_json.py msgid "These are long, metal tongs. They are commonly used for cooking." msgstr "" +"Są to długie, metalowe szczypce. Są one powszechnie używane do gotowania." #: lang/json/TOOL_from_json.py msgid "pair of flatjaw tongs" @@ -129824,6 +133041,8 @@ msgid "" "These are a pair of flatjaw tongs. They are commonly used for metalworking," " fabrication or forging recipes." msgstr "" +"Jest to para szczypiec płasko-szczękowych. Są one powszechnie używane w " +"obróbce metali, produkcji lub kuciu." #: lang/json/TOOL_from_json.py msgid "sandpaper" @@ -129838,6 +133057,8 @@ msgstr[3] "" msgid "" "A sheet of rough paper. It is commonly used in metalworking and carpentry." msgstr "" +"Arkusz szorstkiego papieru. Jest powszechnie stosowany w obróbce metalu i " +"stolarstwie." #: lang/json/TOOL_from_json.py msgid "sandleather" @@ -129852,6 +133073,7 @@ msgstr[3] "" msgid "" "A patch of leather with some sand. Works as a substitute for sandpaper." msgstr "" +"Kawałek skóry z dodatkiem piasku. Działa jak substytut papieru ściernego." #: lang/json/TOOL_from_json.py msgid "draw plate" @@ -129867,6 +133089,8 @@ msgid "" "A piece of metal with holes of varying size drilled into it. Used as part " "of wire drawing." msgstr "" +"Kawałek metalu z wywierconymi w nim otworami o różnej wielkości. Używany " +"jako część procesu ciągnienia drutu." #: lang/json/TOOL_from_json.py msgid "sand casting mold" @@ -129879,7 +133103,48 @@ msgstr[3] "" #. ~ Description for sand casting mold #: lang/json/TOOL_from_json.py msgid "A mold for casting molten metals into different shapes" +msgstr "Forma do odlewania roztopionych metali w różne kształty." + +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "Duży, naturalny kamień z płaską powierzchnią do szlifowania." + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." msgstr "" +"Okrągły, napędzany pedałem kamień szlifierski, przydatny do szlifowania " +"metalu." + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "Narzędzie z hartowanej stali, podobne do ośnika, ale do metalu." #: lang/json/TOOL_from_json.py msgid "compressed air horn" @@ -129942,6 +133207,9 @@ msgid "" "A typical can of butane that you would normally use to fill a lighter. It " "could be useful as a fuel, but also as a solvent or chemical reagent." msgstr "" +"Typowy pojemnik z butanem, którego normalnie używa się do napełniania " +"zapalniczki. Może być przydatny jako paliwo, ale także jako rozpuszczalnik " +"lub odczynnik chemiczny." #: lang/json/TOOL_from_json.py msgid "cow bell" @@ -129954,7 +133222,7 @@ msgstr[3] "dzwonek krowi" #. ~ Description for cow bell #: lang/json/TOOL_from_json.py msgid "A brass cow bell. You feel like you need more of it." -msgstr "" +msgstr "Mosiężny krowi dzwonek. Czujesz, że potrzebujesz tego więcej." #: lang/json/TOOL_from_json.py msgid "dab pen" @@ -129967,19 +133235,21 @@ msgstr[3] "" #. ~ Use action msg for dab pen. #: lang/json/TOOL_from_json.py msgid "You turn on the dab pen." -msgstr "" +msgstr "Włączasz e-szluga." #. ~ Use action need_charges_msg for dab pen. #. ~ Use action need_charges_msg for dab pen (on). #: lang/json/TOOL_from_json.py msgid "The dab pen's batteries need more charge." -msgstr "" +msgstr "Baterie e-szluga wymagają większego poziomu naładowania." #. ~ Description for dab pen #: lang/json/TOOL_from_json.py msgid "" "A battery operated dab pen used for smoking cannabis distillate cartridges." msgstr "" +"Zasilany bateriami e-szlug służący do palenia wkładów z destylatem z konopi " +"indyjskich." #: lang/json/TOOL_from_json.py msgid "dab pen (on)" @@ -129992,7 +133262,7 @@ msgstr[3] "" #. ~ Use action msg for dab pen (on). #: lang/json/TOOL_from_json.py msgid "You turn off the dab pen." -msgstr "" +msgstr "Wyłączasz e-szluga." #. ~ Description for dab pen (on) #: lang/json/TOOL_from_json.py @@ -130000,6 +133270,8 @@ msgid "" "This dab pen, for vaporizing cannabis, is turned on. Now all you need is a " "distillate cartridge and you're ready to rock and roll." msgstr "" +"Ten e-szlug, do waporyzacji marihuany, jest włączony. Teraz wszystko, czego " +"potrzebujesz to wkład z destylatem i jesteś gotowy do rock and rolla." #: lang/json/TOOL_from_json.py msgid "entrenching tool" @@ -130085,6 +133357,8 @@ msgid "" "This is a flexible garden hose. If you cut it in smaller pieces, it could " "be used for crafting, or siphoning fuel from a vehicle." msgstr "" +"To jest elastyczny wąż ogrodowy. Jeśli pociąć go na mniejsze kawałki, można " +"by go użyć do majsterkowania, lub spuszczania paliwa z pojazdu." #: lang/json/TOOL_from_json.py msgid "grip hook" @@ -130097,7 +133371,7 @@ msgstr[3] "" #. ~ Description for grip hook #: lang/json/TOOL_from_json.py msgid "A simple steel meathook with a circular steel handle." -msgstr "" +msgstr "Prosty stalowy hak na mięso z okrągłym stalowym uchwytem." #: lang/json/TOOL_from_json.py msgid "hand pump" @@ -130194,7 +133468,7 @@ msgstr "Włączasz piecyk." #. ~ Use action need_charges_msg for small space heater. #: lang/json/TOOL_from_json.py msgid "The heater needs more charge." -msgstr "" +msgstr "Podgrzewacz wymaga więcej ładunków." #. ~ Description for large space heater #. ~ Description for large space heater (on) @@ -130237,6 +133511,9 @@ msgid "" "two part filtration system will purify the water you drink. Water taken " "from uncertain sources like a river may be dirty." msgstr "" +"Umieść słomkę życia w podejrzanej wodzie, pozostaw na minutę, a następnie " +"wypij. Dwuczęściowy system filtracji oczyści wodę, którą pijesz. Woda " +"pobrana z niepewnych źródeł, takich jak rzeka, może być brudna." #: lang/json/TOOL_from_json.py msgid "plastic gasket" @@ -130249,7 +133526,7 @@ msgstr[3] "" #. ~ Description for plastic gasket #: lang/json/TOOL_from_json.py msgid " A single-use plastic gasket." -msgstr "" +msgstr "Jednorazowa uszczelka z tworzywa sztucznego." #: lang/json/TOOL_from_json.py msgid "permanent marker" @@ -130308,6 +133585,8 @@ msgid "" "An old-fashioned pocket watch. This one tells you the time and looks good " "doing it. Can also be disassembled into some useful parts." msgstr "" +"Staromodny zegarek kieszonkowy. Ten wskazuje czas i dobrze wygląda robiąc " +"to. Można go też rozłożyć dla części." #: lang/json/TOOL_from_json.py msgid "rollmat" @@ -130381,6 +133660,8 @@ msgid "" "A portable electric heater that steadily emits warm air. Raises temperature" " about 10 degrees C." msgstr "" +"Przenośny grzejnik elektryczny, który stale emituje ciepłe powietrze. " +"Podnosi temperaturę o około 10 stopni Celsjusza." #: lang/json/TOOL_from_json.py msgid "small space heater (on)" @@ -130492,6 +133773,8 @@ msgid "" "This is a dummy item used by tear gas hacks that just so happens to be " "counting down. You should never see it outside of debug." msgstr "" +"Jest to sztuczny przedmiot używany przez młynki gazu łzawiący., który tak " +"akurat odlicza w dół. Nigdy nie powinieneś widzieć tego poza debugowaniem." #: lang/json/TOOL_from_json.py msgid "Flaming Chunk of Steel +2" @@ -130517,7 +133800,7 @@ msgstr[3] "" #. ~ Description for Whistle of Tindalos #: lang/json/TOOL_from_json.py msgid "Who is this Tindalos guy?" -msgstr "" +msgstr "Co to za jeden ten Tindalos?" #: lang/json/TOOL_from_json.py msgid "vortex stone" @@ -130551,6 +133834,8 @@ msgid "" "A plastic bucket holding a small spade and rake, perfect to build sand " "castles!" msgstr "" +"Plastikowe wiaderko z małą łopatką i grabkami, idealne do budowania zamków z" +" piasku!" #: lang/json/TOOL_from_json.py msgid "whistle multitool" @@ -130725,10 +134010,10 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." -msgstr "" +msgstr "Jest to zestaw nożyc przeznaczony do pozyskiwania wełny z owiec." #: lang/json/TOOL_from_json.py msgid "electric shears" @@ -130738,10 +134023,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" +"Ta elektryczna strzyżarka może być używana do szybszego strzyżenia zwierząt." #: lang/json/TOOL_from_json.py msgid "horse tack" @@ -130757,6 +134043,8 @@ msgid "" "A saddle, bridle, and associated tack that can be placed on a tamed animal " "that is capable of being ridden." msgstr "" +"Siodło, uzda i związany z nimi sprzęt, który może być umieszczony na " +"oswojonym zwierzęciu, które jest zdolne do jazdy wierzchem." #: lang/json/TOOL_from_json.py msgid "pet carrier" @@ -130789,6 +134077,43 @@ msgid "" "A wooden container meant to hold pets for transport. Use it on a suitable " "animal to capture, use it on an empty tile to release." msgstr "" +"Drewniany pojemnik do transportu zwierząt domowych. Użyj na stosownym " +"zwierzęciu by je schwytać, następnie użyj na pustym miejscu by wypuścić." + +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" +"Szklany pojemnik przeznaczony do przechowywania roślin i/lub owadów. " +"Dostępne są w różnych rozmiarach." + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" +"Jakiś przedsiębiorczy ocalały postanowił przekształcić to terrarium w źródło" +" światła, używając czegoś, co wydaje się być gigantycznym robaczkiem " +"świętojańskim i roślinnością tryfidów." #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" @@ -130805,6 +134130,9 @@ msgid "" "tone that causes nearby friendly dogs to either follow you closely and stop " "attacking, or start attacking enemies if they are currently docile." msgstr "" +"To gwizdek wystrugany z twardego drewna. Użyty wydaje wysokiego tonu gwizd, " +"który powoduje, że pobliskie psy podążają za tobą i nie atakują, lub atakują" +" wrogów jeśli są uległe." #: lang/json/TOOL_from_json.py msgid "butchery tree pseudo item" @@ -130820,6 +134148,8 @@ msgid "" "This is a pseudo item to represent the support of a tree or butchery rack " "without a hook." msgstr "" +"Jest to pseudo rzecz, która ma reprezentować podparcie drzewa lub stojaka " +"rzeźniczego bez haka." #: lang/json/TOOL_from_json.py msgid "butchery rack pseudo item" @@ -130835,6 +134165,8 @@ msgid "" "This is a pseudo item to represent the support of a tree or butchery rack " "with a hook." msgstr "" +"Jest to pseudo rzecz, która ma reprezentować podparcie drzewa lub stojaka " +"rzeźniczego z hakiem." #: lang/json/TOOL_from_json.py msgid "medium surface pseudo item" @@ -130850,6 +134182,8 @@ msgid "" "This is a pseudo item to represent a surface large enough to butcher a " "medium animal on." msgstr "" +"Jest to pseudo element, który ma reprezentować powierzchnię wystarczająco " +"dużą, aby wypatroszyć na niej średnie zwierzę." #: lang/json/TOOL_from_json.py msgid "large surface pseudo item" @@ -130865,6 +134199,8 @@ msgid "" "This is a pseudo item to represent a surface large enough to butcher a large" " animal on." msgstr "" +"Jest to pseudo element, który ma reprezentować powierzchnię wystarczająco " +"dużą, aby wypatroszyć na niej duże zwierzę." #: lang/json/TOOL_from_json.py msgid "RC control" @@ -131013,7 +134349,7 @@ msgstr[3] "lejka z kory brzozowej" #. ~ Use action done_message for birchbark funnel. #: lang/json/TOOL_from_json.py msgid "You place the birchbark funnel, waiting to collect rain." -msgstr "" +msgstr "Ustawiasz lejek z kory brzozy i czekasz aż zgromadzi deszczówkę." #. ~ Description for birchbark funnel #: lang/json/TOOL_from_json.py @@ -131021,6 +134357,8 @@ msgid "" "This is a small birchbark funnel. Place it above an outdoor container to " "collect rainwater." msgstr "" +"Jest to mały lejek z kory brzozowej. Umieść go nad pojemnikiem znajdującym " +"się na świeżym powietrzu, aby zbierać wodę deszczową." #: lang/json/TOOL_from_json.py lang/json/trap_from_json.py #: lang/json/vehicle_part_from_json.py @@ -131127,13 +134465,15 @@ msgstr[3] "" #. ~ Use action done_message for tarp raincatcher. #: lang/json/TOOL_from_json.py msgid "You set up the raincatcher, waiting to collect water." -msgstr "" +msgstr "Ustawiasz łapacz deszczu, czekając na zebranie wody." #. ~ Description for tarp raincatcher #: lang/json/TOOL_from_json.py msgid "" "Some sticks and string with a tarpaulin to set up an improvised raincatcher." msgstr "" +"Kilka patyków i sznurek z plandeką do rozstawienia improwizowanego łapacza " +"deszczu." #: lang/json/TOOL_from_json.py msgid "barometer" @@ -131238,6 +134578,9 @@ msgid "" "A small 0.9 cubic foot vacuum oven used to purge residual solvents out of " "liquids and solid. Looks kind of like a microwave." msgstr "" +"Mały piec próżniowy o pojemności 0,9 stopy sześciennej, używany do " +"oczyszczania pozostałości rozpuszczalników z cieczy i ciał stałych. Wygląda " +"trochę jak mikrofalówka." #: lang/json/TOOL_from_json.py msgid "filled small vacuum oven" @@ -131250,12 +134593,12 @@ msgstr[3] "" #. ~ Use action msg for filled small vacuum oven. #: lang/json/TOOL_from_json.py msgid "You turn on the vacuum oven and pump." -msgstr "" +msgstr "Włączasz piec próżniowy i pompę." #. ~ Use action need_charges_msg for filled small vacuum oven. #: lang/json/TOOL_from_json.py msgid "The vacuum oven's batteries need more charge." -msgstr "" +msgstr "Baterie pieca próżniowego wymagają większego poziomu naładowania." #. ~ Description for filled small vacuum oven #: lang/json/TOOL_from_json.py @@ -131263,6 +134606,8 @@ msgid "" "A small vacuum oven filled with extract ready to be purged of residual " "solvents." msgstr "" +"Mały piec próżniowy wypełniony ekstraktem, gotowym do oczyszczenia z " +"pozostałości rozpuszczalników." #: lang/json/TOOL_from_json.py msgid "small vacuum oven (on)" @@ -131275,12 +134620,12 @@ msgstr[3] "" #. ~ Use action msg for small vacuum oven (on). #: lang/json/TOOL_from_json.py msgid "The vacuum oven is done purging. Your shatter is ready!" -msgstr "" +msgstr "Piec próżniowy zakończył oczyszczanie. Twój kruszon jest gotowy!" #. ~ Use action not_ready_msg for small vacuum oven (on). #: lang/json/TOOL_from_json.py msgid "The vacuum oven is still purging." -msgstr "" +msgstr "Piec próżniowy nadal oczyszcza." #. ~ Description for small vacuum oven (on) #: lang/json/TOOL_from_json.py @@ -131288,6 +134633,8 @@ msgid "" "A small vacuum oven filled with extract currently purging out all residual " "solvents. This process takes about 72hrs." msgstr "" +"Niewielki piec próżniowy wypełniony ekstraktem oczyszczanym obecnie z " +"wszelkich pozostałości rozpuszczalników. Proces ten trwa około 72 godzin." #: lang/json/TOOL_from_json.py msgid "finished small vacuum oven" @@ -131303,6 +134650,8 @@ msgid "" "A small vacuum oven filled with extract ready to package up for consumption." " WooHoo!" msgstr "" +"Mały piec próżniowy wypełniony ekstraktem gotowym do zapakowania do " +"spożycia. ŁuuHuu!" #: lang/json/TOOL_from_json.py msgid "small closed loop extractor" @@ -131317,18 +134666,20 @@ msgstr[3] "" #. ~ Use action menu_text for vacuum pump. #: lang/json/TOOL_from_json.py msgid "turn on" -msgstr "" +msgstr "włącz" #. ~ Use action msg for small closed loop extractor. #: lang/json/TOOL_from_json.py msgid "You turn on the small closed loop extractor." -msgstr "" +msgstr "Włączasz mały ekstraktor z zamkniętym obiegiem." #. ~ Use action need_charges_msg for small closed loop extractor. #. ~ Use action need_charges_msg for small closed loop extractor (on). #: lang/json/TOOL_from_json.py msgid "The small closed loop extractor's batteries need more charge." msgstr "" +"Baterie małego ekstraktora z zamkniętym obiegiem wymagają większego poziomu " +"naładowania." #. ~ Description for small closed loop extractor #: lang/json/TOOL_from_json.py @@ -131339,6 +134690,12 @@ msgid "" "in the tube, flushed with solvent, and essential oils gathered from the pot." " Must be powered up to operate." msgstr "" +"Mały ekstraktor z zamkniętym obiegiem służący do ekstrakcji olejków " +"eterycznych z materiału organicznego, dający wysokiej jakości ekstrakt. " +"Składa się on z długiej metalowej rurki zaciśniętej na stalowym \"garnku " +"miodu\". Materiał organiczny jest ładowany do rurki, przepłukiwany " +"rozpuszczalnikiem, a olejki eteryczne zbierane są z naczynia. Musi być " +"zasilany, aby działać." #: lang/json/TOOL_from_json.py msgid "small closed loop extractor (on)" @@ -131353,12 +134710,12 @@ msgstr[3] "" #. ~ Use action menu_text for vacuum pump (on). #: lang/json/TOOL_from_json.py msgid "turn off" -msgstr "" +msgstr "wyłącz" #. ~ Use action msg for small closed loop extractor (on). #: lang/json/TOOL_from_json.py msgid "You turn off the small closed loop extractor." -msgstr "" +msgstr "Wyłączasz mały ekstraktor z zamkniętym obiegiem." #. ~ Description for small closed loop extractor (on) #: lang/json/TOOL_from_json.py @@ -131366,6 +134723,9 @@ msgid "" "The small closed loop extractor is running, it just needs some material to " "pack the tube with and an organic solvent like butane and it's good to go." msgstr "" +"Mały ekstraktor w obiegu zamkniętym działa, potrzebuje tylko trochę " +"materiału do zapakowania do rurki i rozpuszczalnika organicznego, takiego " +"jak butan, i można zaczynać." #: lang/json/TOOL_from_json.py msgid "large closed loop extractor" @@ -131378,13 +134738,15 @@ msgstr[3] "" #. ~ Use action msg for large closed loop extractor. #: lang/json/TOOL_from_json.py msgid "You turn on the large closed loop extractor." -msgstr "" +msgstr "Włączasz duży ekstraktor z zamkniętym obiegiem." #. ~ Use action need_charges_msg for large closed loop extractor. #. ~ Use action need_charges_msg for large closed loop extractor (on). #: lang/json/TOOL_from_json.py msgid "The large closed loop extractor's batteries need more charge." msgstr "" +"Baterie dużego ekstraktora z zamkniętym obiegiem wymagają większego poziomu " +"naładowania." #. ~ Description for large closed loop extractor #: lang/json/TOOL_from_json.py @@ -131395,6 +134757,11 @@ msgid "" "series of hoses and tubes come out of the machine going to different valves." " It needs to be powered up to operate." msgstr "" +"Duża maszyna używana do ekstrakcji olejków eterycznych z dużych partii " +"materiału organicznego, z którego otrzymuje się niskiej jakości surowy olej." +" Składa się z trzech długich metalowych rurek wlewających się do dużego " +"bębna ustawionego poziomo. Seria węży i rurek wychodzi z maszyny, kierując " +"się do różnych zaworów. Aby urządzenie działało, musi być zasilane prądem." #: lang/json/TOOL_from_json.py msgid "large closed loop extractor (on)" @@ -131407,7 +134774,7 @@ msgstr[3] "" #. ~ Use action msg for large closed loop extractor (on). #: lang/json/TOOL_from_json.py msgid "You turn off the large closed loop extractor." -msgstr "" +msgstr "Wyłączasz duży ekstraktor z zamkniętym obiegiem." #. ~ Description for large closed loop extractor (on) #: lang/json/TOOL_from_json.py @@ -131415,6 +134782,9 @@ msgid "" "The large closed loop extractor is running, it just needs some material to " "pack the tube with and an organic solvent like butane and it's good to go." msgstr "" +"Duży ekstraktor w obiegu zamkniętym działa, potrzebuje tylko trochę " +"materiału do zapakowania do rurki i rozpuszczalnika organicznego, takiego " +"jak butan, i można zaczynać." #: lang/json/TOOL_from_json.py msgid "makeshift essential oil extractor" @@ -131431,6 +134801,10 @@ msgid "" "to stir the solution, and a faucet at the bottom to drain the extractor. " "Not the most ideal piece of equipment but it will work." msgstr "" +"Prowizoryczny system ekstrakcji. To całkiem sporo po prostu 55 galonowa " +"beczka, rura do mieszania roztworu i kranik na dole do spuszczania wody z " +"ekstraktora. Nie jest to najbardziej optymalny element wyposażenia, ale " +"będzie działał." #: lang/json/TOOL_from_json.py msgid "qualitative filter paper" @@ -131440,13 +134814,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " "rating of 2 microns, separating more solids out than quantitative filter " "paper but the process takes longer." msgstr "" +"Papier filtracyjny do oddzielania ciał stałych od cieczy. Ten papier " +"filtracyjny ma wskaźnik 2 mikrony, oddzielając więcej ciał stałych niż " +"ilościowy papier filtracyjny, ale proces ten trwa dłużej." #: lang/json/TOOL_from_json.py msgid "quantitative filter paper" @@ -131456,13 +134833,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " "rating of 20 microns, separating less solids out than qualitative filter " "paper but the process is much faster." msgstr "" +"Papier filtracyjny do oddzielania ciał stałych od cieczy. Ten papier " +"filtracyjny ma wskaźnik 20 mikronów, oddzielając mniej cząstek stałych niż " +"jakościowy papier filtracyjny, ale proces jest znacznie szybszy." #: lang/json/TOOL_from_json.py msgid "vacuum pump" @@ -131475,13 +134855,13 @@ msgstr[3] "" #. ~ Use action msg for vacuum pump. #: lang/json/TOOL_from_json.py msgid "You turn on the vacuum pump." -msgstr "" +msgstr "Włączasz pompę próżniową." #. ~ Use action need_charges_msg for vacuum pump. #. ~ Use action need_charges_msg for vacuum pump (on). #: lang/json/TOOL_from_json.py msgid "The vacuum pump's batteries need more charge." -msgstr "" +msgstr "Baterie pompy próżniowej wymagają większego poziomu naładowania." #. ~ Description for vacuum pump #. ~ Description for vacuum pump (on) @@ -131490,6 +134870,8 @@ msgid "" "A small belt driven mechanical pump capable of achieving a vacuum of -29.99 " "hg (50 microns)." msgstr "" +"Mała pompa mechaniczna z napędem pasowym, zdolna do osiągnięcia próżni " +"-29,99 hg (50 mikronów)." #: lang/json/TOOL_from_json.py msgid "vacuum pump (on)" @@ -131502,7 +134884,7 @@ msgstr[3] "" #. ~ Use action msg for vacuum pump (on). #: lang/json/TOOL_from_json.py msgid "You turn off the vacuum pump." -msgstr "" +msgstr "Wyłączasz pompę próżniową." #: lang/json/TOOL_from_json.py msgid "recovery pump" @@ -131518,6 +134900,8 @@ msgid "" "A medium-sized vacuum pump designed to recover solvent (hydrocarbons) from " "extracted essential oils." msgstr "" +"Średniej wielkości pompa próżniowa przeznaczona do odzyskiwania " +"rozpuszczalnika (węglowodorów) z ekstrahowanych olejków eterycznych." #: lang/json/TOOL_from_json.py msgid "butane tank" @@ -131533,6 +134917,8 @@ msgid "" "This is a tank of compressed butane. It can be used to extract essential " "oils from organic material." msgstr "" +"Jest to zbiornik sprężonego butanu. Może być używany do ekstrakcji olejków " +"eterycznych z materiałów organicznych." #: lang/json/TOOL_from_json.py msgid "hydrogen tank" @@ -131548,6 +134934,8 @@ msgid "" "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." msgstr "" +"To jest zbiornik sprężonego wodoru. Może się przydać, jeśli musisz " +"wyprodukować wodę od podstaw lub unieść w powietrze zeppelin." #: lang/json/TOOL_from_json.py msgid "hygrometer" @@ -131577,6 +134965,8 @@ msgid "" "This is a tank of compressed nitrogen gas. Nitrogen is useful for its lack " "of reactivity. Don't try to breathe it." msgstr "" +"Jest to zbiornik sprężonego azotu. Azot jest przydatny ze względu na brak " +"reaktywności. Nie próbuj go wdychać." #: lang/json/TOOL_from_json.py msgid "oxygen cylinder" @@ -131592,6 +134982,8 @@ msgid "" "A large steel cylinder used for storing pressurized gas. It is marked with " "a faded, but legible O2 symbol." msgstr "" +"Duża stalowa butla służąca do przechowywania gazu pod ciśnieniem. Oznaczona " +"jest wyblakłym, ale czytelnym symbolem O2." #: lang/json/TOOL_from_json.py msgid "platinum grille" @@ -131793,6 +135185,8 @@ msgid "" "This device has two probes that let you measure the electrical potential " "between two points." msgstr "" +"Urządzenie to posiada dwie sondy, które pozwalają zmierzyć potencjał " +"elektryczny pomiędzy dwoma punktami." #: lang/json/TOOL_from_json.py msgid "multimeter" @@ -131810,6 +135204,10 @@ msgid "" "voltage, but current in amps, and resistance in ohms, as well as test for " "electrical continuty." msgstr "" +"Ten gadżet jest nieco większy od podręcznego kalkulatora, posiada cyfrowy " +"wyświetlacz i dwie ostro zakończone sondy połączone przewodami. Można nim " +"mierzyć nie tylko napięcie, ale i prąd w amperach, opór w omach, a także " +"sprawdzać ciągłość elektryczną." #: lang/json/TOOL_from_json.py msgid "melting point apparatus" @@ -131851,6 +135249,11 @@ msgid "" "power, rapidly shake and mix the contents of the test tube. It's " "surprisingly fun to use." msgstr "" +"Jest to mała, solidna, nudno wyglądająca maszyna. Jej obciążona " +"trapezoidalna rama posiada pojedynczy przełącznik i pokrętło prędkości, zaś " +"na jej szczycie znajduje się gumowe gniazdo. Dociskanie probówki do gniazda " +"powoduje gwałtowne potrząsanie i mieszanie zawartości probówki. Jest to " +"zaskakująco zabawne w użyciu." #: lang/json/TOOL_from_json.py msgid "microscope" @@ -131868,6 +135271,10 @@ msgid "" " but the rest of it is surprisingly functional. Unfortunately it's not " "useful for very much at the moment." msgstr "" +"Klasyczne narzędzie od wieków! Ten solidny, trwały element wyposażenia " +"laboratorium sprawia, że małe rzeczy wydają się większe. Bez prądu światło " +"nie działa, ale cała reszta jest zaskakująco funkcjonalna. Niestety w tej " +"chwili nie przydaje się do zbyt wielu rzeczy." #: lang/json/TOOL_from_json.py msgid "dissecting microscope" @@ -131886,6 +135293,11 @@ msgid "" "It still works pretty well with an added light source, but what would you do" " with it?" msgstr "" +"Ten mikroskop ma mniejsze powiększenie niż standardowy. Jest również " +"stereoskopowy i wytwarza zgrabny trójwymiarowy obraz powierzchni. Zazwyczaj " +"był używany do przeprowadzania sekcji i innych drobnych prac na małych " +"stworzeniach. Nadal działa całkiem dobrze z dodatkowym źródłem światła, ale " +"co byś z nim zrobił?" #: lang/json/TOOL_from_json.py msgid "separation funnel" @@ -131905,6 +135317,12 @@ msgid "" "compound you're trying to isolate. With a high level of skill it can also " "be used to make juvenile farting noises." msgstr "" +"Ta rzecz nie wygląda zbytnio jak lejek. Jest to kawałek szkła w kształcie " +"łezki z korkiem na szerokim końcu i zaworem na drugim. Można go używać do " +"mieszania jednej cieczy z drugą, na przykład wody z olejem, a następnie " +"odciągać tę z nich, która zawiera większą ilość związku, który próbujemy " +"wyizolować. Przy wysokim poziomie umiejętności może być również użyty do " +"wydawania młodzieńczych odgłosów pierdzenia." #: lang/json/TOOL_from_json.py msgid "burette" @@ -131920,6 +135338,8 @@ msgid "" "A tall glass column with a stopcock at the end. If you're serious about " "chemistry, you probably have a tattoo of one of these somewhere." msgstr "" +"Wysoka szklana kolumna z korkiem na końcu. Jeśli poważnie myślisz o chemii, " +"prawdopodobnie masz gdzieś tatuaż z jednym z nich." #: lang/json/TOOL_from_json.py msgid "rotary evaporator" @@ -131939,6 +135359,12 @@ msgid "" "tubes and collected in another flask, in case you wanted to save it for " "later." msgstr "" +"Już samo patrzenie na to coś sprawia, że czujesz się jak prawdziwy szalony " +"naukowiec. Jest to seria szklanych rurek i okrągłych kolb, połączonych z " +"centralnym silnikiem i elementem grzewczym. Element grzejny podgrzewa jedną " +"kolbę, utrzymywaną w ruchu przez silnik, odparowując jej zawartość. Para " +"jest następnie skraplana w rurkach i zbierana w innej kolbie, na wypadek " +"gdybyś chciał ją zachować na później." #: lang/json/TOOL_from_json.py msgid "fractional distillation apparatus" @@ -131959,6 +135385,13 @@ msgid "" "few milliliters at a time, it would not be very effective to try to distill " "whiskey in this thing." msgstr "" +"Jeden z klasycznych elementów szklanego sprzętu szalonej nauki, który jest w" +" zasadzie niewielką aparaturą do destylacji, która przepuszcza parę przez " +"kolumnę destylacji frakcyjnej, a następnie skrapla destylat w schłodzonej " +"kolumnie zbierającej. Student lub robot (czy naprawdę jest jakaś różnica?) " +"zbiera destylat we frakcjach, tak aby można było przeanalizować jego " +"specyficzną zawartość. Destylacja po kilka mililitrów na raz nie byłaby zbyt" +" efektywna, gdybyśmy w tym czymś próbowali destylować whisky." #: lang/json/TOOL_from_json.py msgid "electrophoresis tray" @@ -131977,6 +135410,11 @@ msgid "" "according to electrical charge and size. Pretty useless now, for anything " "but salvage." msgstr "" +"Jest to zestaw plastikowych tacek, elektrod i zasilacza zaprojektowanego do " +"tworzenia gradientu napięcia elektrycznego przez płynny roztwór zawierający " +"stały żel. Rzeczy takie jak białka i DNA byłyby wtedy rozdzielane na żelu " +"według ładunku elektrycznego i rozmiaru. Całkiem bezużyteczne teraz, z " +"wyjątkiem złomu." #: lang/json/TOOL_from_json.py msgid "microcentrifuge" @@ -131994,6 +135432,9 @@ msgid "" "powerful piece of equipment that can spin stuff really quickly. It's not a " "toy!" msgstr "" +"Jest to mniejsza, stołowa wersja większej, stacjonarnej wirówki o wymiarach " +"mebla. Nie daj się zwieść jej przenośnym rozmiarom; to wciąż bardzo mocny " +"sprzęt, który może wirować naprawdę szybko. To nie jest zabawka!" #: lang/json/TOOL_from_json.py msgid "sextant" @@ -132009,6 +135450,8 @@ msgid "" "A tool for measuring angles of distant objects. It can be used for " "measuring the altitude of the Sun." msgstr "" +"Narzędzie do pomiaru kątów odległych obiektów. Może być używany do pomiaru " +"wysokości Słońca." #: lang/json/TOOL_from_json.py msgid "lux meter" @@ -132021,7 +135464,7 @@ msgstr[3] "" #. ~ Description for lux meter #: lang/json/TOOL_from_json.py msgid "A tool for measuring illuminance." -msgstr "" +msgstr "Narzędzie do pomiaru natężenia oświetlenia." #: lang/json/TOOL_from_json.py msgid "Mi-go Biotech" @@ -132031,8 +135474,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -132042,8 +135485,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -132053,8 +135496,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -132064,8 +135507,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -132075,10 +135518,10 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." -msgstr "" +msgstr "Dzieło biotechnologii mi-go." #: lang/json/TOOL_from_json.py msgid "damaged shelter kit" @@ -132226,6 +135669,8 @@ msgid "" "These are a long pair of heavy-duty scissors. Use scissors to cut items " "made from cotton (like clothing) into rags." msgstr "" +"Długie przemysłowe nożyce. Użyj ich by pociąć ubrania z bawełny (itp.) na " +"szmaty." #: lang/json/TOOL_from_json.py msgid "pen" @@ -132238,20 +135683,20 @@ msgstr[3] "długopisy" #. ~ Description for pen #: lang/json/TOOL_from_json.py msgid "This is a fine pen, of much better quality than a disposable model." -msgstr "" +msgstr "To świetne pióro, o wiele lepszej jakości niż jednorazowe modele." #: lang/json/TOOL_from_json.py lang/json/tool_quality_from_json.py msgid "pencil" msgid_plural "pencils" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ołówek" +msgstr[1] "ołówki" +msgstr[2] "ołówków" +msgstr[3] "ołówka" #. ~ Description for pencil #: lang/json/TOOL_from_json.py msgid "Sharpened HB #2 graphite pencil, equipped with an eraser." -msgstr "" +msgstr "Zaostrzony ołówek grafitowy HB #2, wyposażony w gumkę." #: lang/json/TOOL_from_json.py msgid "black pen" @@ -132267,6 +135712,8 @@ msgid "" "Disposable ballpoint pen, offers a smooth writing experience on paper. " "Shares the same logo as those disposable lighters. This pen is black." msgstr "" +"Jednorazowy długopis, umożliwia płynne pisanie na papierze. Posiada takie " +"samo logo jak jednorazowe zapalniczki. Długopis jest czarny." #: lang/json/TOOL_from_json.py msgid "blue pen" @@ -132282,6 +135729,8 @@ msgid "" "Disposable ballpoint pen, offers a smooth writing experience on paper. " "Shares the same logo as those disposable lighters. This pen is blue." msgstr "" +"Jednorazowy długopis, umożliwia płynne pisanie na papierze. Posiada takie " +"samo logo jak jednorazowe zapalniczki. Długopis jest niebieski." #: lang/json/TOOL_from_json.py msgid "red pen" @@ -132297,6 +135746,8 @@ msgid "" "Disposable ballpoint pen, offers a smooth writing experience on paper. " "Shares the same logo as those disposable lighters. This pen is red." msgstr "" +"Jednorazowy długopis, umożliwia płynne pisanie na papierze. Posiada takie " +"samo logo jak jednorazowe zapalniczki. Długopis jest czerwony." #: lang/json/TOOL_from_json.py msgid "green pen" @@ -132312,6 +135763,8 @@ msgid "" "Disposable ballpoint pen, offers a smooth writing experience on paper. " "Shares the same logo as those disposable lighters. This pen is green." msgstr "" +"Jednorazowy długopis, umożliwia płynne pisanie na papierze. Posiada takie " +"samo logo jak jednorazowe zapalniczki. Długopis jest zielony." #: lang/json/TOOL_from_json.py msgid "leather journal" @@ -132327,6 +135780,8 @@ msgid "" "A leather-back journal for preserving notes and maps, has a strap to keep " "loose pages contained." msgstr "" +"Dziennik w skórzanej oprawie do przechowywania notatek i map, posiada pasek " +"do przechowywania luźnych stron." #: lang/json/TOOL_from_json.py msgid "bone needle" @@ -132382,6 +135837,10 @@ msgid "" "unsuitable for anything requiring speed or precision, or involving tougher " "materials like Kevlar." msgstr "" +"Jest to drewniana igła ścięta do ostrego końca. W główce ma wyryty wąski " +"otwór do nawlekania. Jej niska jakość sprawia, że nie nadaje się do niczego," +" co wymaga szybkości lub precyzji, lub też wymaga użycia twardszych " +"materiałów, takich jak Kevlar." #: lang/json/TOOL_from_json.py msgid "sewing kit" @@ -132476,6 +135935,10 @@ msgid "" "spools for thread, some small scissors, and an awl. Use a tailor's kit to " "customize your clothing and armor. This uses your tailoring skill." msgstr "" +"Jest to wysokiej jakości zestaw składający się z różnych igieł, kilku " +"plastikowych szpulek na nici, małych nożyczek i szydła. Użyj zestawu " +"krawieckiego, aby dostosować swoje ubrania i zbroje. Wykorzystuje to twoją " +"umiejętność krawiectwa." #: lang/json/TOOL_from_json.py msgid "bathroom scale" @@ -132488,7 +135951,7 @@ msgstr[3] "" #. ~ Description for bathroom scale #: lang/json/TOOL_from_json.py msgid "This is a small bathroom scale, meant to weigh a person while naked." -msgstr "" +msgstr "Jest to mała waga łazienkowa, przeznaczona do ważenia osoby nago." #: lang/json/TOOL_from_json.py msgid "scrub brush" @@ -132501,7 +135964,7 @@ msgstr[3] "" #. ~ Description for scrub brush #: lang/json/TOOL_from_json.py msgid "This is a simple scrub brush." -msgstr "" +msgstr "Jest to zwykła szczotka do szorowania." #: lang/json/TOOL_from_json.py msgid "dish towel" @@ -132515,41 +135978,46 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "This is a dish towel, useful for cleaning hard surfaces." msgstr "" +"Jest to ręcznik do naczyń, przydatny do czyszczenia twardych powierzchni." #: lang/json/TOOL_from_json.py msgid "" "An elegant, monogrammed dish towel. Unfortunately, they aren't your " "initials." msgstr "" +"Elegancki ręcznik do naczyń z monogramem. Niestety, nie są to twoje " +"inicjały." #: lang/json/TOOL_from_json.py msgid "An elegant, monogrammed dish towel. It even has your initials!" -msgstr "" +msgstr "Elegancki ręcznik do naczyń z monogramem. Nawet ma twoje inicjały!" #: lang/json/TOOL_from_json.py msgid "A well used dish towel, judging by the stains." -msgstr "" +msgstr "Często używany ręcznik do naczyń, sądząc po plamach." #: lang/json/TOOL_from_json.py msgid "" "A novelty dish towel, featuring a popular children's cartoon character." msgstr "" +"Oryginalny ręcznik do naczyń, przedstawiający popularną postać z kreskówek " +"dla dzieci." #: lang/json/TOOL_from_json.py msgid "A novelty dish towel which reads \"IT'S WINE O CLOCK\"." -msgstr "" +msgstr "Modny ręcznik do naczyń z napisem \"CZAS NA WINO\"." #: lang/json/TOOL_from_json.py msgid "A dish towel with a floral pattern." -msgstr "" +msgstr "Ręcznik do naczyń z kwiatowym wzorem." #: lang/json/TOOL_from_json.py msgid "A dish towel with a gingham pattern." -msgstr "" +msgstr "Ręcznik do naczyń w kratę." #: lang/json/TOOL_from_json.py msgid "A dish towel with a cat pattern." -msgstr "" +msgstr "Ręcznik do naczyń z kocim wzorem." #: lang/json/TOOL_from_json.py msgid "electric hair trimmer" @@ -132566,6 +136034,8 @@ msgid "" "it to cut your hair if it's supplied with batteries. It requires 10 units " "of charge per use." msgstr "" +"To kieszonkowa elektryczna strzyżarka do włosów. Możesz obciąć nią włosy " +"jeżeli zasilisz ją bateriami. Potrzebuje 10 ładunków na jedno użycie." #: lang/json/TOOL_from_json.py msgid "mop" @@ -132609,12 +136079,13 @@ msgstr[1] "połatane części ubrań z bawełny" msgstr[2] "połatanych części ubrań z bawełny" msgstr[3] "połatanych części ubrań z bawełny" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" " fashion." msgstr "" +"Wybór różnych części odzieży, może być zszyty razem w sposób patchworkowy." #: lang/json/TOOL_from_json.py msgid "shaving kit" @@ -132648,39 +136119,42 @@ msgid "" "A sponge is a tool or cleaning aid made of soft, porous material. Typically" " used for cleaning impervious surfaces." msgstr "" +"Gąbka jest narzędziem lub przyborem do czyszczenia wykonanym z miękkiego, " +"porowatego materiału. Zazwyczaj używana do czyszczenia nieprzepuszczalnych " +"powierzchni." #: lang/json/TOOL_from_json.py msgid "A round smiley face sponge." -msgstr "" +msgstr "Okrągła gąbka z uśmiechniętą buźką." #: lang/json/TOOL_from_json.py msgid "A rectangular sponge with a green abrasive back." -msgstr "" +msgstr "Prostokątna gąbka z zielonym spodem ściernym." #: lang/json/TOOL_from_json.py msgid "A natural sea sponge. It looks kind of lumpy." -msgstr "" +msgstr "Naturalna gąbka morska. Wygląda trochę grudkowato." #: lang/json/TOOL_from_json.py msgid "A dolphin shaped sponge. It looks at home in the water." -msgstr "" +msgstr "Gąbka w kształcie delfina. W wodzie wygląda jak w domu." #: lang/json/TOOL_from_json.py msgid "A rectangular sponge." -msgstr "" +msgstr "Prostokątna gąbka." #: lang/json/TOOL_from_json.py msgid "A sponge cake shaped sponge, the abrasive pad looks like frosting." -msgstr "" +msgstr "Gąbka w kształcie biszkoptu, nakładka ścierna wygląda jak lukier." #: lang/json/TOOL_from_json.py msgid "" "A sponge in the shape of a beloved character from a children's cartoon." -msgstr "" +msgstr "Gąbka w kształcie ukochanej postaci z kreskówki dla dzieci." #: lang/json/TOOL_from_json.py msgid "A cat shaped sponge." -msgstr "" +msgstr "Gąbka w kształcie kota." #: lang/json/TOOL_from_json.py msgid "makeshift haircut kit" @@ -132743,6 +136217,8 @@ msgid "" "A combination kit of a washboard and a scrubbing tool. Everything you need " "to clean items after the apocalypse." msgstr "" +"Zestaw składający się z deski do mycia i narzędzia do szorowania. Wszystko, " +"czego potrzebujesz do czyszczenia przedmiotów po apokalipsie." #: lang/json/TOOL_from_json.py lang/json/trap_from_json.py #: lang/json/trap_from_json.py @@ -132792,7 +136268,7 @@ msgstr[3] "pułapka z ostrzem" #: lang/json/TOOL_from_json.py #, no-python-format msgid "You set the blade trap %d squares away." -msgstr "" +msgstr "Rozstawiasz pułapkę z ostrzy%d pól dalej." #. ~ Description for blade trap #: lang/json/TOOL_from_json.py @@ -132849,6 +136325,8 @@ msgid "" "This is a crude explosive device triggered by a piece of string. Use it to " "set up and watch some poor bastard trigger it." msgstr "" +"To toporne urządzenie wybuchowe uruchamiane kawałkiem nici. Użyj do " +"rozłożenia i obserwuj jak jakiś żałosny bubek ją uruchomi." #: lang/json/TOOL_from_json.py lang/json/trap_from_json.py msgid "bubble wrap" @@ -132881,13 +136359,13 @@ msgstr[1] "luźna kolczatka" msgstr[2] "luźna kolczatka" msgstr[3] "luźna kolczatka" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "Rozsypujesz kolczatkę na %s." -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -132904,18 +136382,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." -msgstr "" +msgstr "Rozsypujesz kolczatkę ze szkła na %s." -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " "unsuspecting victim steps on one, they'll get cut." msgstr "" +"Są to odłamki szkła sklejone razem w celu odsłonięcia ich ostrych krawędzi. " +"Jeśli niczego nie spodziewająca się ofiara nadepnie na jeden z nich, " +"zostanie skaleczona." #: lang/json/TOOL_from_json.py lang/json/trap_from_json.py msgid "crossbow trap" @@ -132968,7 +136449,7 @@ msgstr "Zakopujesz minę lądową." #: lang/json/TOOL_from_json.py msgid "" "This is a military anti-personnel mine that is triggered when stepped upon." -msgstr "" +msgstr "To wojskowa przeciwpiechotna mina aktywowana naciskiem." #: lang/json/TOOL_from_json.py lang/json/trap_from_json.py #: lang/json/trap_from_json.py @@ -132991,6 +136472,10 @@ msgid "" "slamfire shotgun. When pulled, the shotgun fires. Two shells are loaded; " "the first time the trigger is pulled, one or both shells may be discharged." msgstr "" +"Prosta pułapka z potykaczem przyłączonym do spustu załadowanej strzelby z " +"mechanizmem uderzeniowym spustu. Pociągnięty uruchamia wystrzał ze strzelby." +" Załadowana jest dwoma nabojami. Pierwsze pociągnięcie linki spowoduje " +"wystrzał obu lub jednego z nich." #: lang/json/TOOL_from_json.py msgid "tripwire trap" @@ -133013,6 +136498,10 @@ msgid "" "purpose is to trip up trespassers, causing them to stumble and possibly hurt" " themselves slightly." msgstr "" +"To cienki wytrzymały przewód z przyczepionymi narzędziami na każdym końcu. " +"Pułapka ta musi być rozciągnięta w drzwiach lub wąskim przejściu. Jej cel to" +" podcinać przechodzących, powodując potknięcia i potencjalne lekkie " +"zranienia." #: lang/json/TOOL_from_json.py msgid "wood axe" @@ -133046,6 +136535,10 @@ msgid "" "trimming trees, pruning, and cutting firewood, but may be used for other " "rough cuts as well." msgstr "" +"Piła kabłąkowa jest bardziej odpowiednia do pracy na zewnątrz niż wewnątrz " +"pomieszczeń. Piły kabłąkowe są używane do przycinania drzew, przycinania " +"gałęzi i cięcia drewna na opał, ale mogą być również używane do innych cięć " +"zgrubnych." #: lang/json/TOOL_from_json.py msgid "chainsaw (off)" @@ -133186,6 +136679,8 @@ msgid "" "This is a broad piece of stone with an edge narrow enough to roughly chop " "wood." msgstr "" +"Jest to szeroki kawałek kamienia z krawędzią wystarczająco wąską do " +"zgrubnego rąbania drewna." #: lang/json/TOOL_from_json.py msgid "metal axe head" @@ -133202,6 +136697,9 @@ msgid "" " a cutting edge. It works passably well as an axe but really can't compare " "to a proper axe." msgstr "" +"Jest to kawałek stali z jedną krawędzią uklepaną do czegoś przypominającego " +"krawędź tnącą. Działa całkiem nieźle jako siekiera, ale naprawdę nie może " +"się równać z prawdziwym toporem." #: lang/json/TOOL_from_json.py msgid "stone adze" @@ -133215,6 +136713,8 @@ msgstr[3] "kamienne ciosło ciesielskie" #: lang/json/TOOL_from_json.py msgid "This is a stone adze, somewhat useful for smoothing wood objects." msgstr "" +"To kamienne ciosło ciesielskie, dość użyteczne do wygładzania drewnianych " +"obiektów." #: lang/json/TOOL_from_json.py msgid "stone axe" @@ -133230,6 +136730,8 @@ msgid "" "This is a stone with a narrow edge affixed to a stick. It can chop wood, " "but requires much more effort than a modern axe." msgstr "" +"Jest to kamień z wąską krawędzią przymocowany do kija. Można nim rąbać " +"drewno, ale wymaga to znacznie więcej wysiłku niż współczesna siekiera." #: lang/json/TOOL_from_json.py msgid "wood saw" @@ -133262,6 +136764,8 @@ msgid "" "This is a primitive short chisel made from hard stone, usually used for " "primitive woodworking." msgstr "" +"Jest to prymitywne krótkie dłuto wykonane z twardego kamienia, zwykle " +"używane do prymitywnej obróbki drewna." #: lang/json/TOOL_from_json.py msgid "pallet of wet adobe bricks" @@ -133274,18 +136778,20 @@ msgstr[3] "" #. ~ Use action msg for pallet of wet adobe bricks. #: lang/json/TOOL_from_json.py msgid "You test the bricks, and they're solid enough to use." -msgstr "" +msgstr "Testujesz cegły i wydają się one wystarczająco solidne, by ich użyć." #. ~ Use action not_ready_msg for pallet of wet adobe bricks. #: lang/json/TOOL_from_json.py msgid "The bricks are still too damp to bear weight." -msgstr "" +msgstr "Cegły są nadal zbyt wilgotne, aby wytrzymać ciężar." #. ~ Description for pallet of wet adobe bricks #: lang/json/TOOL_from_json.py msgid "" "A pallet full of heavy mud bricks which need to dry slowly to be usable." msgstr "" +"Paleta pełna ciężkich cegieł z błota, które muszą powoli wyschnąć, aby " +"nadawały się do użytku." #: lang/json/TOOL_from_json.py msgid "pallet of dry adobe bricks" @@ -133302,6 +136808,8 @@ msgid "" " risking your life. Disassemble it to retrieve your frame and building " "supplies." msgstr "" +"Paleta skromnych cegieł z błota, które schły przez tydzień, podczas gdy ty " +"ryzykowałeś życiem. Zdemontuj ją, aby odzyskać ramę i materiały budowlane." #: lang/json/TOOL_from_json.py msgid "acetylene-gas machine" @@ -133317,6 +136825,8 @@ msgid "" "This bulky device takes water and calcium carbide and yields unpressurised " "acetylene." msgstr "" +"To nieporęczne urządzenie pobiera wodę i węglik wapnia i wytwarza acetylen " +"bez sprężania." #: lang/json/TOOL_from_json.py msgid "angle grinder" @@ -133332,6 +136842,8 @@ msgid "" "This widespread powertool is often used for removing excess material or " "polishing surfaces." msgstr "" +"To uniwersalne narzędzie jest często stosowane do usuwania nadmiaru " +"materiału lub polerowania powierzchni." #: lang/json/TOOL_from_json.py msgid "brick kiln" @@ -133372,6 +136884,8 @@ msgid "" "This is a homemade vacuum forming machine with an air pump. It's used for " "creating plastic molds." msgstr "" +"To jest domowej roboty maszyna do formowania próżniowego z pompą powietrzną." +" Służy do tworzenia form z tworzyw sztucznych." #: lang/json/TOOL_from_json.py msgid "vacuum molder" @@ -133387,6 +136901,8 @@ msgid "" "This is a portable vacuum forming machine with an air pump. It's used for " "creating plastic molds." msgstr "" +"To jest przenośna maszyna do formowania próżniowego z pompą powietrzną. " +"Służy do tworzenia form z tworzyw sztucznych." #: lang/json/TOOL_from_json.py msgid "paint chipper" @@ -133415,6 +136931,8 @@ msgid "" "This clamp is useful for keeping things still, especially if you have " "several of them." msgstr "" +"Ten zacisk jest przydatny do utrzymania rzeczy w miejscu, zwłaszcza jeśli " +"masz ich kilka." #: lang/json/TOOL_from_json.py msgid "claw bar" @@ -133431,6 +136949,10 @@ msgid "" "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." msgstr "" +"Jest to małe narzędzie do wyważania z pazurami na jednym końcu, które służą " +"do wyciągania szpikulców. Używaj go do otwierania zamkniętych drzwi bez ich " +"niszczenia lub do podnoszenia pokryw włazów kanalizacyjnych. Możesz nim " +"również rozwalić kilka głów." #: lang/json/TOOL_from_json.py msgid "concrete mixer" @@ -133463,6 +136985,28 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "Bezprzewodowa zasilana bateriami wiertarka z zestawem wierteł." +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" +"Bezprzewodowy, akumulatorowy klucz udarowy, zaprojektowany tak, aby zapewnić" +" wysoki moment obrotowy dzięki wewnętrznemu młotkowi obrotowemu. Wyposażony " +"jest w standardowy zestaw nasadek, a podczas pracy wydaje głośny dźwięk " +"grzechotki. Możesz go użyć do odkręcania dużych śrub, a nawet do zmiany koła" +" w samochodzie." + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -133478,6 +137022,9 @@ msgid "" "surfaces. It runs on a cell compatible with UPS. Use it to blast a hole in" " adjacent solid terrain." msgstr "" +"Jest to narzędzie budowlane do wiercenia w twardej skale lub innych " +"powierzchniach. Działa na ogniwo kompatybilne z UPS. Użyj go do wywiercenia " +"otworu w przyległym litym terenie." #: lang/json/TOOL_from_json.py msgid "hacksaw" @@ -133507,6 +137054,9 @@ msgid "" " nails, and planks in your inventory, you could board up adjacent doors and " "windows. It has myriad other uses as well." msgstr "" +"Jest to rozmagnesowany stalowy młotek z drewnianą rękojeścią. Mając młotek, " +"gwoździe i deski w ekwipunku, możesz zabić deskami sąsiednie drzwi i okna. " +"Ma on również wiele innych zastosowań." #: lang/json/TOOL_from_json.py msgid "hand drill" @@ -133658,6 +137208,9 @@ msgid "" "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." msgstr "" +"Jest to toporny młotek zrobiony z kawałka metalu przymocowanego do kija. " +"Działa on odpowiednio jako młotek, ale naprawdę nie może się równać z " +"prawdziwym młotkiem." #: lang/json/TOOL_from_json.py msgid "metal fileset" @@ -133673,6 +137226,8 @@ msgid "" "These tools are commonly used to remove small amounts of materials from the " "surface of metal objects." msgstr "" +"Narzędzia te są powszechnie stosowane do usuwania niewielkich ilości " +"materiałów z powierzchni przedmiotów metalowych." #: lang/json/TOOL_from_json.py msgid "metallic smoother" @@ -133707,6 +137262,11 @@ msgid "" "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." msgstr "" +"Jest to przenośny zestaw narzędzi, składający się z małego noża " +"rzeźbiarskiego do precyzyjnego rzeźbienia części zamiennych z surowych " +"materiałów, piły do drewna do poważniejszego cięcia drewna oraz łaty z " +"miękkiego materiału do czyszczenia powierzchni. Jeśli jest zaopatrzony w " +"taśmę klejącą, może być użyty do naprawy niektórych elementów." #: lang/json/TOOL_from_json.py msgid "plastic mold" @@ -133720,6 +137280,8 @@ msgstr[3] "forma do plastiku" #: lang/json/TOOL_from_json.py msgid "This is a plastic mold. It can be used to form plastic chunks." msgstr "" +"Jest to forma do tworzyw sztucznych. Może być używana do formowania kawałków" +" plastiku." #: lang/json/TOOL_from_json.py msgid "multi-tool" @@ -133735,7 +137297,7 @@ msgid "" "A cleverly designed all-in-one tool which combines several smaller tools " "into the handles of a pair of pliers." msgstr "" -"Sprytnie opracowane narzędzie typu \"wszystko w jednym\" które łączy kilka " +"Sprytnie opracowane narzędzie typu „wszystko w jednym”, które łączy kilka " "mniejszych narzędzi w rączce kombinerek." #: lang/json/TOOL_from_json.py @@ -133805,23 +137367,46 @@ msgid "" "Handheld pin reamers of this kind are used to enlarge existing holes, or " "remove any burs and such from them." msgstr "" +"Ręczne rozwiertaki tego typu są używane do powiększania istniejących otworów" +" lub usuwania z nich ostrych krawędzi." #: lang/json/TOOL_from_json.py msgid "pliers" msgid_plural "pliers" msgstr[0] "szczypce" msgstr[1] "szczypce" -msgstr[2] "szczypce" -msgstr[3] "szczypce" +msgstr[2] "szczypiec" +msgstr[3] "szczypiec" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" "Podstawowe szczypce z nastawnym stawem, do podstawowych prac mechanicznych. " -"Złożone działania będą wymagać klucza." +"Złożone działania będą wymagać klucza nastawnego." + +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" +"Szczypce te mają bardzo mocne szczęki, oraz regulowany mechanizm zaciskający" +" je w zablokowanym uścisku na jakimkolwiek nieszczęsnym obiekcie uwięzionym " +"pomiędzy nimi. Mogą uchwycić i obrócić dość duży łeb śruby, lub tymczasowo " +"ścisnąć dwie części razem." #: lang/json/TOOL_from_json.py msgid "electric polisher" @@ -133855,6 +137440,9 @@ msgid "" "functions adequately as a hammer, but really can't compare to a proper one, " "and can't pull out nails either." msgstr "" +"Kamień osadzony na kiju, będący topornym faksymile młotka. Funkcjonuje " +"adekwatnie, ale nie da się go porównać do właściwego, ponadto nie da się nim" +" wyciągać gwoździ." #: lang/json/TOOL_from_json.py msgid "screwdriver" @@ -133891,6 +137479,44 @@ msgstr "" "Zestaw śrubokrętów o różnych rozmiarach i końcówkach. Możesz być pewny że ma" " właściwe narzędzia do bardziej precyzyjnych prac." +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" +"Jest to wkrętak grzechotkowy z kolekcją nasadek sześciokątnych do wkręcania " +"małych śrub lub nakrętek, a także z kilkoma standardowymi końcówkami " +"wkrętakowymi." + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" +"Jest to klucz grzechotkowy z grubą rączką i asortymentem wymiennych nasadek " +"w popularnych rozmiarach śrub sześciokątnych. Można nim poluzować lub " +"dokręcić dość duże śruby, a grzechotka wydaje satysfakcjonujący odgłos " +"klikania." + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -133944,6 +137570,10 @@ msgid "" "the lug nuts of a car's wheels to either fasten or loosen for convenient " "removal and replacement. Makes for a decent melee weapon in a pinch." msgstr "" +"Stalowy pręt wygięty pod kątem 90 stopni z nasadką na krótszym końcu, " +"służący do przytrzymywania nakrętek kół samochodowych w celu ich zamocowania" +" lub poluzowania, co umożliwia wygodny demontaż i wymianę. W razie potrzeby " +"stanowi przyzwoitą broń do walki wręcz." #: lang/json/TOOL_from_json.py msgid "extended toolset" @@ -133976,6 +137606,8 @@ msgid "" "This is a battery powered tool for welding metal pieces together using an " "electric arc. It is an indispensable tool for construction or repair." msgstr "" +"To zasilane bateriami narzędzie do spawania metalowych części łukiem " +"elektrycznym. Bezcenne narzędzie w budowie i naprawach." #: lang/json/TOOL_from_json.py msgid "makeshift arc welder" @@ -133993,6 +137625,10 @@ msgid "" "safety. While it's not as efficient as a factory welder, it will serve in a" " pinch." msgstr "" +"Ta prymitywna spawarka łukowa została zbudowana z kilku małych " +"transformatorów, drutu, improwizowanego uchwytu elektrody i całkowitego " +"braku szacunku dla własnego bezpieczeństwa. Nie jest tak wydajna jak " +"spawarka fabryczna, ale na pewno się przyda." #: lang/json/TOOL_from_json.py msgid "wooden smoother" @@ -134051,14 +137687,33 @@ msgstr "" "uzdolnionych dłoniach. Jest zbyt mały by ciąć nim ciała." #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" -msgstr[0] "klucz francuski" -msgstr[1] "klucz francuski" -msgstr[2] "klucz francuski" -msgstr[3] "klucz francuski" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" +"Ten nastawny klucz półksiężycowy jest kompaktowy, z krótką rękojeścią, która" +" mieści się w dłoni. Może być używany do odkręcania małych nakrętek lub śrub" +" z łbem sześciokątnym." + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " @@ -134067,6 +137722,25 @@ msgstr "" "To klucz nastawny o zmiennym ustawieniu zacisku. Może być niezłą bronią do " "walki wręcz, i jest używany w wielu pracach mechanicznych." +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" +"Ten regulowany klucz półksiężycowy jest niezwykle duży, z długim uchwytem i " +"szczękami, które rozszerzają się na ponad dwa cale. Może łatwo przekręcić " +"większość śrub, a nawet powinien zadziałać na nakrętkach kół." + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -134082,6 +137756,9 @@ msgid "" " to siphon fuel from a vehicle tank. However, it's not as elastic as a " "rubber hose." msgstr "" +"Jest to wąż wykonany ze skóry. Wodoszczelny i elastyczny, może być używany " +"do zasysania paliwa z baku pojazdu. Nie jest on jednak tak elastyczny jak " +"wąż gumowy." #: lang/json/TOOL_from_json.py msgid "makeshift hand drill" @@ -134097,6 +137774,8 @@ msgid "" "This is a makeshift manual drill made out of pipe and improvised drill bit." " It is very slow and it will exhaust you quickly." msgstr "" +"Jest to prowizoryczna ręczna wiertarka wykonana z rury i improwizowanego " +"wiertła. Jest bardzo powolna i szybko cię zmęczy." #: lang/json/TOOL_from_json.py msgid "wire draw machine" @@ -134110,6 +137789,8 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "A machine designed specifically for turning metal rods into wire." msgstr "" +"Maszyna zaprojektowana specjalnie do przekształcania prętów metalowych w " +"drut." #: lang/json/TOOL_from_json.py lang/json/vehicle_part_from_json.py msgid "jumper cable" @@ -134126,6 +137807,10 @@ msgid "" "stranded copper cable with power leads on either end, whose main purpose is " "to share power between vehicles, but can also link other electrical systems." msgstr "" +"To zestaw kabli rozruchowych, jakie wielokrotnie widziałeś: krótki, " +"wielożyłowy miedziany kabel z krokodylkami przyłączeniowymi na obu końcach, " +"którego podstawowym zadaniem jest współdzielenie energii przez pojazdy, ale " +"może połączyć też inne systemy elektryczne." #: lang/json/TOOL_from_json.py lang/json/vehicle_part_from_json.py msgid "heavy duty tow cable" @@ -134141,6 +137826,9 @@ msgid "" "An extremely heavy duty tow cable made from thick steel wire. If attached " "to a vehicle, it could be used to pull another vehicle of any weight." msgstr "" +"Bardzo wytrzymała lina holownicza wykonana z grubego drutu stalowego. Po " +"przymocowaniu do pojazdu może służyć do ciągnięcia innego pojazdu o dowolnej" +" masie." #: lang/json/TOOL_from_json.py lang/json/vehicle_part_from_json.py msgid "heavy-duty cable" @@ -134158,6 +137846,9 @@ msgid "" "expect the power loss would be noticeable. Can also link other electrical " "systems." msgstr "" +"Długi gruby kabel z krokodylkami na obu końcach. Wygląda na to, że mógłbyś " +"nim połączyć dwa pojazdy, ale straty na mocy mogą być zauważalne. Może też " +"łączyć inne systemy elektryczne." #: lang/json/TOOL_from_json.py lang/json/vehicle_part_from_json.py msgid "shiny cable" @@ -134193,6 +137884,9 @@ msgid "" "wreckage. If you can find a system to analyze this, you may find something " "of interest." msgstr "" +"Czarna skrzynka, najwyraźniej wyciągnięta z wraku jakiegoś wojskowego " +"pojazdu. Jeśli znajdziesz system do jej przeanalizowania możesz znaleźć coś " +"użytecznego." #: lang/json/TOOL_from_json.py lang/json/vehicle_part_from_json.py msgid "minireactor" @@ -134221,6 +137915,8 @@ msgid "" "This item is used to make a hole for a crater. It should not otherwise " "appear in game." msgstr "" +"Ten element jest używany do zrobienia otworu na krater. Nie powinien w inny " +"sposób pojawiać się w grze." #: lang/json/TOOL_from_json.py msgid "Ash's laptop computer" @@ -134235,7 +137931,7 @@ msgstr[3] "" msgid "" "A small, somewhat worn-out laptop computer. The flip-top is decorated with " "various stickers." -msgstr "" +msgstr "Mały, nieco zużyty laptop. Na klapce znajdują się różne naklejki." #: lang/json/TOOL_from_json.py msgid "suspending for butchering" @@ -134261,6 +137957,10 @@ msgid "" "Type II kit, and that it would only be helpful in a planet whose atmosphere " "and gravity are within two deviations from Earth's." msgstr "" +"Jest to metalowa skrzynka z zapasami ratunkowymi, często spotykana na " +"statkach i w ich kapsułach ratunkowych. Cyjanowe podświetlenia wskazują, że " +"jest to prostszy zestaw typu II i że przyda się tylko na planecie, której " +"atmosfera i grawitacja są w granicach dwóch odchyleń od ziemskiej." #: lang/json/TOOL_from_json.py msgid "inactive frankenstein" @@ -134276,6 +137976,8 @@ msgid "" "This stitched together abomination in human form lies still and waiting for " "you to give it the spark of life. In all likelihood you are the monster." msgstr "" +"Ta zszyta paskuda w ludzkiej postaci leży nieruchomo i czeka na ciebie, abyś" +" dał jej iskrę życia. Z dużym prawdopodobieństwem to ty jesteś potworem." #: lang/json/TOOL_from_json.py msgid "Kabura-ya antipersonnel device" @@ -134288,7 +137990,7 @@ msgstr[3] "" #. ~ Use action msg for Kabura-ya antipersonnel device. #: lang/json/TOOL_from_json.py msgid "You activate the device." -msgstr "" +msgstr "Aktywujesz urządzenie." #. ~ Description for Kabura-ya antipersonnel device #: lang/json/TOOL_from_json.py @@ -134296,6 +137998,8 @@ msgid "" "A tiny plastic explosive meant to be installed in a Kabura-ya drone. " "Explodes 3 turns after activation." msgstr "" +"Mały plastikowy ładunek wybuchowy przeznaczony do zainstalowania w dronie " +"Kabura-ya. Eksploduje 3 tury po aktywacji." #: lang/json/TOOL_from_json.py msgid "Armed Kabura-ya antipersonnel device" @@ -134309,7 +138013,7 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py #, no-python-format msgid "You've already activated the %s; try throwing it instead." -msgstr "" +msgstr "Już aktywowałeś %s, spróbuj zamiast tego tym rzucić." #. ~ Description for Armed Kabura-ya antipersonnel device #: lang/json/TOOL_from_json.py @@ -134317,6 +138021,8 @@ msgid "" "A tiny plastic explosive meant to be installed within a Kabura-ya drone. It" " is on the verge of exploding." msgstr "" +"Mały plastikowy ładunek wybuchowy przeznaczony do zainstalowania w dronie " +"Kabura-ya. Zaraz wybuchnie." #: lang/json/TOOL_from_json.py msgid "electroshock grenade" @@ -134333,6 +138039,9 @@ msgid "" "When activated, you'll have five turns before it starts doing so; throwing " "it before that would be a good idea." msgstr "" +"Jest to broń elektroniczna, która emituje pole elektryczne o krótkim " +"zasięgu. Po aktywacji, będziesz miał pięć tur zanim zacznie to robić; " +"rzucenie jej wcześniej byłoby dobrym pomysłem." #: lang/json/TOOL_from_json.py msgid "armed electroshock grenade" @@ -134347,6 +138056,8 @@ msgstr[3] "" msgid "" "This electroshock grenade is currently creating a dangerous electric field." msgstr "" +"Ten granat elektrowstrząsowy wytwarza właśnie niebezpieczne pole " +"elektryczne." #: lang/json/TOOL_from_json.py msgid "cryo grenade" @@ -134364,6 +138075,10 @@ msgid "" " the fuse. You will then have five seconds before it explodes; throwing it " "would be a good idea." msgstr "" +"Jest to wojskowy granat ręczny typu kriogenicznego. Po eksplozji rozrzuca " +"egzotyczne, wysoce radioaktywne odłamki. Użyj tego przedmiotu, aby wyciągnąć" +" zawleczkę i zapalić lont. Będziesz miał pięć sekund zanim wybuchnie; " +"rzucenie go byłoby dobrym pomysłem." #: lang/json/TOOL_from_json.py msgid "active cryo grenade" @@ -134379,6 +138094,8 @@ msgid "" "This is an active grenade, and will explode any second now. Once it " "explodes it spreads exotic highly thermodynamic shrapnel. Better throw it!" msgstr "" +"To jest aktywny granat, który wybuchnie w każdej chwili. Po eksplozji " +"rozrzuca egzotyczne, wysoce termodynamiczne odłamki. Lepiej go rzuć!" #: lang/json/TOOL_from_json.py msgid "inactive brain blaster" @@ -134391,12 +138108,13 @@ msgstr[3] "" #. ~ Use action friendly_msg for inactive brain blaster. #: lang/json/TOOL_from_json.py msgid "The brain blaster swivels towards you. Hi new friend!" -msgstr "" +msgstr "Mózgowy miotacz obraca się w twoją stronę. Cześć nowy przyjacielu!" #. ~ Use action hostile_msg for inactive brain blaster. #: lang/json/TOOL_from_json.py msgid "The brain blaster swivels towards you. You feel a buzzing in the air." msgstr "" +"Mózgowy miotacz obraca się w twoją stronę. Czujesz brzęczenie w powietrzu." #. ~ Description for inactive brain blaster #: lang/json/TOOL_from_json.py @@ -134407,38 +138125,11 @@ msgid "" "will identify you as a friendly, and attack all enemies with its revolving " "laser cannons." msgstr "" - -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" +"Jest to przerażające monstrum. Używanie tego przedmiotu jest kanibalizmem w " +"każdym calu, poza gustem i polega na włączeniu go i położeniu na ziemi, " +"gdzie się przyczepi. Jeśli zostanie przeprogramowany i ponownie podłączony z" +" powodzeniem, wieżyczka zidentyfikuje cię jako przyjaznego i zaatakuje " +"wszystkich wrogów swoimi obracającymi się działkami laserowymi." #: lang/json/TOOL_from_json.py msgid "inactive tank drone" @@ -134451,7 +138142,7 @@ msgstr[3] "" #. ~ Use action friendly_msg for inactive tank drone. #: lang/json/TOOL_from_json.py msgid "The tank drone rolls out and begins acquiring targets." -msgstr "" +msgstr "Dron czołgowy wyrusza i zaczyna namierzać cele." #. ~ Use action hostile_msg for inactive tank drone. #: lang/json/TOOL_from_json.py @@ -134459,6 +138150,8 @@ msgid "" "The tank drone swivels its turret and aims directly at you. Don your brown " "pants!" msgstr "" +"Dron czołgowy obraca swoją wieżyczkę i celuje prosto w ciebie. Załóż brązowe" +" spodnie!" #. ~ Description for inactive tank drone #: lang/json/TOOL_from_json.py @@ -134471,6 +138164,21 @@ msgid "" " will then identify you as a friendly, roam around or follow you, and attack" " all enemies with a built-in firearm and grenade launcher." msgstr "" +"Jest to nieaktywny pojazd samobieżny typu mini-czołg Beagle. Użycie tego " +"przedmiotu polega na postawieniu go na ziemi, załadowaniu go fabrycznymi " +"nabojami 5.56 mm i granatami 40 mm znajdującymi się w Twoim ekwipunku (jeśli" +" chcesz podzielić amunicję, odłóż na bok tę, której NIE chcesz dać robotowi)" +" i włączeniu go. Jeśli uda się go przeprogramować i okablować, będzie cię " +"rozpoznawał jako osobę przyjazną, poruszał się lub podążał za tobą i " +"atakował wszystkich wrogów za pomocą wbudowanej broni palnej i granatnika." + +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py @@ -134483,6 +138191,13 @@ msgid "" " then identify you as a friendly, roam around or follow you, and attack all " "enemies with a built-in firearm and grenade launcher." msgstr "" +"Jest to nieaktywny kurołaz. Użycie tego przedmiotu polega na postawieniu go " +"na ziemi, załadowaniu go fabrycznymi nabojami 5.56 mm i granatami 40 mm " +"znajdującymi się w Twoim ekwipunku (jeśli chcesz podzielić amunicję, odłóż " +"na bok tę, której NIE chcesz dać robotowi) i włączeniu go. Jeśli uda się go " +"przeprogramować i okablować, będzie cię rozpoznawał jako osobę przyjazną, " +"poruszał się lub podążał za tobą i atakował wszystkich wrogów za pomocą " +"wbudowanej broni palnej i granatnika." #: lang/json/TOOL_from_json.py msgid "inactive tripod" @@ -134496,6 +138211,7 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "The tribot rises to its feet and scans the area for contaminants." msgstr "" +"Tribot podnosi się na nogi i skanuje teren w poszukiwaniu zanieczyszczeń." #. ~ Use action hostile_msg for inactive tripod. #: lang/json/TOOL_from_json.py @@ -134503,6 +138219,8 @@ msgid "" "The tribot glowers down at you and ignites its flamethrower. Turns out you " "hate the smell of napalm." msgstr "" +"Tribot spogląda na ciebie i odpala swój miotacz ognia. Okazuje się, że nie " +"znosisz zapachu napalmu." #. ~ Description for inactive tripod #: lang/json/TOOL_from_json.py @@ -134513,6 +138231,11 @@ msgid "" "an ally, roam around or follow you, and impale hostiles with its spiked " "cable weapons." msgstr "" +"To jest nieaktywna Honda Regnal. Użycie tego przedmiotu polega na " +"postawieniu go na ziemi, zastanowieniu się, jak zasila swój miotacz ognia i " +"włączeniu go. Jeśli uda się go przeprogramować i podłączyć ponownie, tribot " +"rozpozna cię jako sojusznika, będzie się przemieszczał lub podążał za tobą, " +"a wrogów będzie przebijał swoimi kolczastymi kablami." #: lang/json/TOOL_from_json.py msgid "inactive sentinel-lx" @@ -134530,6 +138253,10 @@ msgid "" "the robot will identify you as a friendly, and will protect you from nearby " "foes." msgstr "" +"Przykucnięty i nieruchomy, ten opancerzony, luksusowy robot przypomina " +"starożytnego rycerza pogrążonego w głębokiej modlitwie. Jeśli zostanie " +"przeprogramowany i okablowany, robot rozpozna cię jako przyjaznego i będzie " +"cię chronił przed pobliskimi wrogami." #: lang/json/TOOL_from_json.py msgid "inactive Kabura-ya drone" @@ -134542,12 +138269,12 @@ msgstr[3] "" #. ~ Use action friendly_msg for inactive Kabura-ya drone. #: lang/json/TOOL_from_json.py msgid "The Kabura-ya emits a short IFF chirp as you throw it." -msgstr "" +msgstr "Kabura-ya wydaje krótki sygnał dźwiękowy IFF, gdy nią rzucasz." #. ~ Use action hostile_msg for inactive Kabura-ya drone. #: lang/json/TOOL_from_json.py msgid "The Kabura-ya emits an warning whine after your botched throw!" -msgstr "" +msgstr "Kabura-ya wydaje ostrzegawczy skowyt po twoim nieudanym rzucie!" #. ~ Description for inactive Kabura-ya drone #: lang/json/TOOL_from_json.py @@ -134557,6 +138284,10 @@ msgid "" "Unlike most robots, its activation depends on a successful throw, and not on" " your computer skill." msgstr "" +"Nieaktywny dron myśliwski Karuba-ya, składany w celu ułatwienia " +"przechowywania. Po uruchomieniu będzie szukał i leciał do najbliższego " +"wroga, zanim zostanie zdetonowany. W przeciwieństwie do większości robotów, " +"jego aktywacja zależy od udanego rzutu, a nie od umiejętności komputerowych." #: lang/json/TOOL_from_json.py msgid "inactive bloodhound drone" @@ -134569,12 +138300,12 @@ msgstr[3] "" #. ~ Use action friendly_msg for inactive bloodhound drone. #: lang/json/TOOL_from_json.py msgid "The bloodhound drone flies from your hand and surveys the area!" -msgstr "" +msgstr "Dron ogar wylatuje z twojej ręki i bada teren!" #. ~ Use action hostile_msg for inactive bloodhound drone. #: lang/json/TOOL_from_json.py msgid "You misprogram the bloodhound drone; it's hostile!" -msgstr "" +msgstr "Błędnie programujesz drona ogara; jest wrogi!" #. ~ Description for inactive bloodhound drone #: lang/json/TOOL_from_json.py @@ -134582,6 +138313,8 @@ msgid "" "This is an inactive bloodhound drone. If successfully deployed, it will fly" " towards enemy targets and highlight them with a powerful spotlight." msgstr "" +"Jest to nieaktywny dron typu ogar. Jeśli uda się go użyć, poleci w kierunku " +"wrogich celów i podświetli je silnym reflektorem." #: lang/json/TOOL_from_json.py msgid "inactive laser turret" @@ -134600,6 +138333,11 @@ msgid "" "attack all enemies with its replaceable laser cannons. It requires " "ammunition tubes to fire." msgstr "" +"To nieaktywna wieżyczka laserowa. Użycie jej zakłada włączenie jej, " +"postawienie na ziemi, gdzie się zagnieździ. Jeżeli zostanie skutecznie " +"przeprogramowana i przekablowana rozpozna cię jako przyjaciela, i będzie " +"atakować wrogów w zasięgu jej wymiennych działek laserowych. Wymaga tub " +"amunicyjnych do strzelania." #: lang/json/TOOL_from_json.py msgid "inactive bee-bot" @@ -134712,6 +138450,9 @@ msgid "" "constant jet of warm air to heat an enclosed space. It is non-aggressive " "and has no weapons systems. Activate this item to deploy the robot." msgstr "" +"Odzyskany ze złomu okobot przerobiony na latający grzejnik. Emituje stały " +"strumień gorącego powietrza, które rozgrzeje zamkniętą przestrzeń. Nie jest " +"agresywny i nie jest wyposażony w żadną broń. Aktywuj by uruchomić." #: lang/json/TOOL_from_json.py msgid "inactive defense robot" @@ -134733,10 +138474,14 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" +"Niewielki sześcionogi dron zaprojektowany do chwytania małych szkodników, " +"składany w niewielki sześcian ułatwiający przechowywanie. Jest w stanie " +"polować na wszelkiego rodzaju małe ssaki z niezwykłą skutecznością, ale nie " +"należy się spodziewać, że poradzi sobie z czymś większym niż szczur." #: lang/json/TOOL_from_json.py msgid "inactive grab-bot" @@ -134825,12 +138570,12 @@ msgstr[3] "" #. ~ Use action menu_text for cam-spy rover. #: lang/json/TOOL_from_json.py msgid "Activate cam-spy" -msgstr "" +msgstr "Aktywuj kamerę szpiegowską" #. ~ Use action msg for cam-spy rover. #: lang/json/TOOL_from_json.py msgid "You activate the cam-spy rover." -msgstr "" +msgstr "Aktywujesz kamerę szpiegowską łazika." #. ~ Description for cam-spy rover #: lang/json/TOOL_from_json.py @@ -134839,6 +138584,9 @@ msgid "" "eye for espionage work. Once turned on, a remote controller will let you " "use it as a mobile camera." msgstr "" +"Mały dron na kółkach, zwinny i prawie niewykrywalny, posiada robotyczne oko " +"do pracy szpiegowskiej. Po włączeniu, pilot zdalnego sterowania pozwoli ci " +"używać go jako przenośnej kamery." #: lang/json/TOOL_from_json.py msgid "cam-spy rover (on)" @@ -134851,12 +138599,12 @@ msgstr[3] "" #. ~ Use action menu_text for cam-spy rover (on). #: lang/json/TOOL_from_json.py msgid "Deactivate cam-spy" -msgstr "" +msgstr "Dezaktywuj kamerę szpiegowską" #. ~ Use action msg for cam-spy rover (on). #: lang/json/TOOL_from_json.py msgid "You deactivate the cam-spy." -msgstr "" +msgstr "Deaktywujesz kamerę szpiegowską." #. ~ Description for cam-spy rover (on) #: lang/json/TOOL_from_json.py @@ -134864,6 +138612,8 @@ msgid "" "This cam-spy rover is on, and continuously transmitting a video-feed of its " "immediate surroundings. Use a remote control to drive it around." msgstr "" +"Ten łazik-szpieg jest włączony i stale przesyła obraz wideo swojego " +"najbliższego otoczenia. Użyj pilota, aby nim sterować." #: lang/json/TOOL_from_json.py msgid "atomic smartphone" @@ -134882,6 +138632,12 @@ msgid "" "price made them a rarity. It includes an alarm clock, a high-resolution " "camera, and a bright flashlight." msgstr "" +"Nigdy więcej nie ładuj swojego telefonu dzięki atomowemu smartfonowi " +"Rivtech. Ten najnowocześniejszy gadżet, którego trwałość oceniono na 10 " +"milionów lat, był dostępny na rynku publicznym od niecałego tygodnia, gdy " +"nadszedł Kataklizm, a jego zaporowa cena sprawiła, że stał się rzadkością. " +"Zawiera budzik, aparat fotograficzny o wysokiej rozdzielczości i jasną " +"latarkę." #: lang/json/TOOL_from_json.py msgid "structural imager" @@ -134901,6 +138657,12 @@ msgid "" "obvious surveillance applications. It can be activated to reveal a small " "conical area around you." msgstr "" +"Kompaktowe narzędzie obrazowania, zdolne do skanowania i wizualizacji " +"obiektów ukrytych za ścianami, panelami konserwacyjnymi i wszelkimi innymi " +"barierami wizualnymi. Chociaż zwykle używane jest do diagnozowania " +"potencjalnych usterek w systemach wewnętrznych statków kosmicznych, zdolność" +" do zaglądania poza przeszkody daje mu oczywiste zastosowania obserwacyjne. " +"Może zostać aktywowany, aby ujawnić mały stożkowy obszar wokół ciebie." #: lang/json/TOOL_from_json.py msgid "377-UASTA plasma torch" @@ -134919,6 +138681,12 @@ msgid "" "construction or demolition work, and is sometimes transformed into weapon by" " mining & salvage outfits of questionable repute." msgstr "" +"Jedna z wielu wersji palników plazmowych z certyfikatem UASTA, będąca w " +"zasadzie cywilnym działkiem plazmowym, służącym do wytwarzania skupionych " +"fal plazmy w celu precyzyjnego spawania lub cięcia metalu. Jest to " +"niezastąpione narzędzie przy pracach budowlanych lub rozbiórkowych, a " +"czasami jest przekształcane w broń przez firmy górnicze i złomujące o " +"wątpliwej reputacji." #: lang/json/TOOL_from_json.py msgid "atomic smartphone - music" @@ -134950,6 +138718,9 @@ msgid "" "Your custom crafted atomic smartphone. Most notably a confidential " "executive-level override program allows you to remotely control most robots." msgstr "" +"Twój stworzony na zamówienie atomowy smartfon. Przede wszystkim poufny " +"program nadrzędny na poziomie wykonawczym pozwala na zdalne sterowanie " +"większością robotów." #: lang/json/TOOL_from_json.py msgid "Wraitheon executive's smartphone - music" @@ -134986,6 +138757,14 @@ msgid "" "the prospect of irradiating your food, but internal shielding ensures that " "only trace amounts find its way into the center." msgstr "" +"Premierowe samonagrzewające się urządzenie kuchenne firmy Rivtech, w " +"komplecie z pokrywką, ręcznie wykonane z wykorzystaniem mocy atomu, aby " +"osiągnąć dowolną temperaturę w trzydzieści sekund. Choć jest nieporęczne, " +"jego plutonowe źródło zasilania oznacza, że można w nim ugotować absurdalną " +"ilość posiłków bez obawy, że zabraknie mu energii. Nic dziwnego, że sprzedaż" +" nie była szczególnie dobra ze względu na perspektywę napromieniowania " +"żywności, ale wewnętrzne ekranowanie zapewnia, że tylko śladowe ilości " +"trafiają do środka." #: lang/json/TOOL_from_json.py msgid "power cutter (off)" @@ -134998,7 +138777,7 @@ msgstr[3] "" #. ~ Use action msg for power cutter (off). #: lang/json/TOOL_from_json.py msgid "You rev up the power cutter!" -msgstr "" +msgstr "Podkręcasz obroty tarczy przecinaka!" #. ~ Description for power cutter (off) #: lang/json/TOOL_from_json.py @@ -135006,6 +138785,8 @@ msgid "" "A huge, gas-powered saw with a diamond blade. If it has gasoline, it can be" " turned on to turn it into a powerful metal cutting tool." msgstr "" +"Ogromna, zasilana gazem piła z diamentową tarczą. Jeśli ma benzynę, można ją" +" włączyć, aby zamienić ją w potężne narzędzie do cięcia metalu." #: lang/json/TOOL_from_json.py msgid "power cutter (on)" @@ -135018,7 +138799,7 @@ msgstr[3] "" #. ~ Use action msg for power cutter (on). #: lang/json/TOOL_from_json.py msgid "Your power cutter falls quiet." -msgstr "" +msgstr "Przecinak milknie." #. ~ Description for power cutter (on) #: lang/json/TOOL_from_json.py @@ -135028,6 +138809,9 @@ msgid "" "metal. You can also use it as a terrifying weapon, if you're into that sort" " of thing." msgstr "" +"Ogromna, zasilana gazem piła z diamentową tarczą, obecnie wirująca smuga. " +"Zużywa benzynę, ale może być używana jako fantastyczne narzędzie do cięcia " +"metalu. Możesz też użyć jej jako strasznej broni, jeśli lubisz takie rzeczy." #: lang/json/TOOL_from_json.py msgid "murdersaw (off)" @@ -135040,7 +138824,7 @@ msgstr[3] "" #. ~ Use action msg for murdersaw (off). #: lang/json/TOOL_from_json.py msgid "You rev up the murdersaw!" -msgstr "" +msgstr "Podkręcasz obroty morderczej piły!" #. ~ Description for murdersaw (off) #: lang/json/TOOL_from_json.py @@ -135049,6 +138833,9 @@ msgid "" "unnecessary safety measures, turning it into a gas-powered killing machine." " Use it to turn it on." msgstr "" +"Ta dawna przecinarka elektryczna została odchudzona i pozbawiona wszystkich " +"zbędnych zabezpieczeń, zamieniając ją w napędzaną gazem maszynę do " +"zabijania. Użyj jej, aby ją włączyć." #: lang/json/TOOL_from_json.py msgid "murdersaw (on)" @@ -135061,7 +138848,7 @@ msgstr[3] "" #. ~ Use action msg for murdersaw (on). #: lang/json/TOOL_from_json.py msgid "Your murdersaw falls quiet." -msgstr "" +msgstr "Mordercza piła milknie." #. ~ Description for murdersaw (on) #: lang/json/TOOL_from_json.py @@ -135069,6 +138856,8 @@ msgid "" "This fearsome weapon is currently whirring loudly and shaking with the force" " of its own power. Use it to turn it off." msgstr "" +"Ta przerażająca broń obecnie głośno warczy i wibruje siłą własnej mocy. Użyj" +" jej, aby ją wyłączyć." #: lang/json/TOOL_from_json.py msgid "bionic maintenance toolkit" @@ -135086,6 +138875,10 @@ msgid "" "simple bionics, but anything more complex would require even more " "specialized tools." msgstr "" +"Zestaw bardzo małych narzędzi i zaszyfrowanych kluczy cyfrowych, zwykle " +"używanych do naprawy modułów bionicznych w warunkach klinicznych. Pozwolą ci" +" one rozmontować proste moduły bioniczne, ale wszystko bardziej " +"skomplikowane będzie wymagało jeszcze bardziej wyspecjalizowanych narzędzi." #: lang/json/TOOL_from_json.py msgid "complete bionic toolkit" @@ -135103,6 +138896,10 @@ msgid "" "bionics. A highly skilled and patient engineer could use them to manually " "assemble new cybernetics." msgstr "" +"Zestaw bardzo małych narzędzi robotycznych i zaszyfrowanych kluczy " +"cyfrowych, pierwotnie zaprojektowanych do demontażu i testowania jakości " +"bioniki produkowanej przemysłowo. Wysoce uzdolniony i cierpliwy inżynier " +"mógł ich użyć do ręcznego montażu nowych urządzeń cybernetycznych." #: lang/json/TOOL_from_json.py msgid "control laptop" @@ -135119,6 +138916,9 @@ msgid "" "high frequencies utilized by robots. Activate it to command robots from " "afar." msgstr "" +"Zmodyfikowany laptop, teraz zdolny jeszcze do transmisji sygnału bardzo " +"wysokich częstotliwości używanych przez roboty. Aktywuj by rozkazywać " +"robotom na odległość." #: lang/json/TOOL_from_json.py msgid "control laptop - lit screen" @@ -135158,11 +138958,13 @@ msgid "" "You activate the claw, and its bludgeoning surface slowly flattens into an " "edge as it begins to glow red-hot" msgstr "" +"Aktywujesz pazur, a jego płaska powierzchnia powoli się wygładza tworząc " +"ostrą krawędź i zaczyna się żarzyć na czerwono." #. ~ Use action need_charges_msg for CE-4 "The Claw" (Non-Lethal). #: lang/json/TOOL_from_json.py msgid "The claw is out of charge." -msgstr "" +msgstr "Szpon nie jest naładowany." #. ~ Description for CE-4 "The Claw" (Non-Lethal) #: lang/json/TOOL_from_json.py @@ -135174,6 +138976,13 @@ msgid "" "sharpened, super heated blade. Currently, it is in its less-lethal " "configuration, and looks like a sleek side-handle metal baton." msgstr "" +"CE-4, powszechnie znany jako \"Szpon \", jest popularną bronią do " +"samoobrony, używaną przez korporacyjnych egzekutorów wszędzie, zwłaszcza na " +"niebezpiecznych, granicznych światach. Wykonany z cylindra ze stopu z " +"pamięcią kształtu aktywowanego termicznie, po naciśnięciu przełącznika może " +"zmieniać się pomiędzy mniej zabójczą formą pałki a zaostrzonym, rozgrzanym " +"do czerwoności ostrzem. Obecnie znajduje się w mniej zabójczej konfiguracji " +"i wygląda jak elegancka metalowa pałka z boczną rękojeścią." #: lang/json/TOOL_from_json.py msgid "CE-4 \"The Claw\" (Lethal)" @@ -135186,7 +138995,7 @@ msgstr[3] "" #. ~ Use action menu_text for CE-4 "The Claw" (Lethal). #: lang/json/TOOL_from_json.py msgid "Deactivate" -msgstr "" +msgstr "Deaktywuj" #. ~ Use action msg for CE-4 "The Claw" (Lethal). #: lang/json/TOOL_from_json.py @@ -135194,6 +139003,8 @@ msgid "" "The blade stops humming, and its edge dissipates into a smooth curve as it " "cools." msgstr "" +"Ostrze przestaje szumieć, a jego krawędź rozpływa się w gładki łuk w miarę " +"stygnięcia." #. ~ Description for CE-4 "The Claw" (Lethal) #: lang/json/TOOL_from_json.py @@ -135206,6 +139017,14 @@ msgid "" "configuration, and looks like a sleek sword, humming softly as its blade " "glows from heat." msgstr "" +"CE-4, powszechnie znany jako \"Szpon\", jest popularną bronią do samoobrony," +" używaną przez korporacyjnych egzekutorów wszędzie, a zwłaszcza na " +"niebezpiecznych planetach granicznych. Wykonany z cylindra ze stopu z " +"pamięcią kształtu aktywowanego termicznie, po naciśnięciu przełącznika może " +"zmieniać swoją formę z mniej śmiercionośnej pałki na zaostrzone, rozgrzane " +"do czerwoności ostrze. Obecnie jest w swojej śmiercionośnej konfiguracji i " +"wygląda jak elegancki miecz, cicho szumiąc, gdy jego ostrze jarzy się od " +"żaru." #: lang/json/TOOL_from_json.py msgid "bodyguard knife" @@ -135221,6 +139040,8 @@ msgid "" "Designed to evade security measures, this knife is a must have for any " "Cataclysm dinner party." msgstr "" +"Zaprojektowany tak, by omijać środki bezpieczeństwa, nóż ten jest niezbędny " +"na każdym przyjęciu z okazji Kataklizmu." #: lang/json/TOOL_from_json.py msgid "aztlani hunting sword" @@ -135238,6 +139059,10 @@ msgid "" "been sharpened to a monomolecular point, while its back features a serrated " "saw edge." msgstr "" +"Ozdobny, jednoręczny miecz używany przez myśliwych Aztlani do dobijania " +"rannej zwierzyny. Wykonany z błyszczącego stopu kompozytowego, jego czubek i" +" przednie ostrze zostały zaostrzone do monomolekularnego punktu, podczas gdy" +" jego grzbiet posiada ząbkowaną krawędź piły." #: lang/json/TOOL_from_json.py msgid "377-UASTA (weaponized)" @@ -135247,13 +139072,16 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" "\n" "Unlike purposefully made plasma weapons, the propelled plasma bottle wont cause a considerable explosion upon contact, allowing for relatively safe operation within enclosed spaces." msgstr "" +"Powszechnie stosowana modyfikacja palników plazmowych, polegająca na zainstalowaniu zbyt dużych kondensatorów i ominięciu mechanizmów zabezpieczających, co pozwala im funkcjonować jako śmiercionośna, choć zdecydowanie krótkodystansowa broń. W większości przypadków, powstałe w ten sposób \"działo\" może nadal wykonywać swoje pierwotne funkcje związane z obróbką metalu, aczkolwiek z dużo mniejszą wydajnością.\n" +"\n" +"W przeciwieństwie do celowo stworzonej broni plazmowej, wystrzelona wiązka plazmy nie powoduje znacznej eksplozji przy kontakcie, co pozwala na względnie bezpieczną pracę w zamkniętych pomieszczeniach." #: lang/json/TOOL_from_json.py msgid "tactical flashlight" @@ -135266,12 +139094,12 @@ msgstr[3] "" #. ~ Use action msg for tactical flashlight. #: lang/json/TOOL_from_json.py msgid "You turn the tactical flashlight on." -msgstr "" +msgstr "Włączasz latarkę taktyczną." #. ~ Use action need_charges_msg for tactical flashlight. #: lang/json/TOOL_from_json.py msgid "The tactical flashlight's batteries are dead." -msgstr "" +msgstr "Baterie w latarce taktycznej są wyczerpane." #. ~ Description for tactical flashlight #: lang/json/TOOL_from_json.py @@ -135279,6 +139107,8 @@ msgid "" "A compact flashlight which is mounted to the side of your weapon, not " "powerful, but good enough for tight hallways." msgstr "" +"Kompaktowa latarka, którą montuje się z boku broni, nie jest mocna, ale " +"wystarczająco dobra w ciasnych korytarzach." #: lang/json/TOOL_from_json.py msgid "tactical flashlight (on)" @@ -135291,7 +139121,7 @@ msgstr[3] "" #. ~ Use action msg for tactical flashlight (on). #: lang/json/TOOL_from_json.py msgid "You turn the tactical flashlight off." -msgstr "" +msgstr "Wyłączasz latarkę taktyczną." #. ~ Description for tactical flashlight (on) #: lang/json/TOOL_from_json.py @@ -135299,6 +139129,8 @@ msgid "" "A compact flashlight which is attached to the side of your weapon, not " "powerful, but good enough for tight hallways." msgstr "" +"Kompaktowa latarka, przyłączona z boku broni, nie jest mocna, ale " +"wystarczająco dobra w ciasnych korytarzach." #: lang/json/TOOL_from_json.py msgid "CRIT mess kit" @@ -135318,6 +139150,13 @@ msgid "" "life but does have a rather small (useless) solar panel installed. Also " "comes with an absurdly small integrated fpoon and knife spatula set!" msgstr "" +"Standardowa manierka C.R.I.T. zaprojektowana z myślą o łatwym transporcie. " +"Bazując na zwykłej wojskowej manierce, ale zrobionej tak, aby była " +"teleskopowa, części są wykonane z cienkiego arkusza kompozytu z superstopu i" +" są izolowane ceramiką. Niestety, ta kompaktowa reimaginacja traci wiele ze " +"swojej żywotności baterii, ale ma zainstalowany raczej mały (bezużyteczny) " +"panel słoneczny. W zestawie znajduje się również absurdalnie mały " +"zintegrowany zestaw łyżelca i szpatułkonoża!" #: lang/json/TOOL_from_json.py msgid "CRIT service knife" @@ -135335,6 +139174,10 @@ msgid "" " situations and tanto tip allows for light-armor penetration. Blade length " "allows for decent reach." msgstr "" +"Zmodyfikowany nóż okopowy. Posiada osłonę knykci i mały, haczykowaty łom w " +"dolnej części. Czarne matowe wykończenie pozwala uniknąć refleksów przy " +"słabym oświetleniu, a czubek tanto pozwala na penetrację lekkiego " +"opancerzenia. Długość ostrza pozwala na przyzwoity zasięg." #: lang/json/TOOL_from_json.py msgid "pair of CRIT Knuckledusters" @@ -135350,6 +139193,8 @@ msgid "" "C.R.I.T CQB knuckledusters. Not too different from any normal pair other " "than weight." msgstr "" +"Kastety C.R.I.T CQB. Poza wagą nie różnią się zbytnio od zwykłej pary " +"kastetów." #: lang/json/TOOL_from_json.py msgid "CRIT Reso-blade" @@ -135366,6 +139211,9 @@ msgid "" "oddly seems to lack sharpness, and yet upon closer inspection, a hum of " "energy thrums from within." msgstr "" +"Broń do walki wręcz CRIT. Ostrze z węglowej stali zdobią runy kosmitów. " +"Ostrze wydaje się dziwnie nieostre, a jednak po bliższym przyjrzeniu się, z " +"jego wnętrza wydobywa się szum energii." #: lang/json/TOOL_from_json.py msgid "Dragon Slayer" @@ -135384,6 +139232,11 @@ msgid "" "It looks more like a raw heap of iron than a sword. The thing is… can you " "wield it?" msgstr "" +"Broń arcydzieło C.R.I.T Sekcji Badań i Rozwoju. Obce runy zdobią absurdalnie" +" duże ostrze ze stali węglowej, a z jego wnętrza wydobywa się szum energii. " +"Samo przesunięcie palcami po broni przynosi uczucie niezwyciężoności. " +"Wygląda bardziej jak surowa kupa żelaza niż jak miecz. Rzecz w tym... czy " +"potrafisz nim władać?" #: lang/json/TOOL_from_json.py msgid "CRIT entrenching tool" @@ -135400,6 +139253,9 @@ msgid "" "is powered by the user's movement allows the smaller spade to clear soil " "like a larger shovel." msgstr "" +"Standardowy składany szpadel C.R.I.T. Wbudowany system wibracji, który jest " +"napędzany przez ruch użytkownika, pozwala mniejszej łopacie usuwać ziemię " +"skutecznie jak większej łopacie." #: lang/json/TOOL_from_json.py msgid "CRIT night stick" @@ -135415,6 +139271,9 @@ msgid "" "C.R.I.T standard issue guard tonfa. The length allows for great reach and " "the domed tip allows for greater impact than a cylinder style baton." msgstr "" +"Standardowa tonfa strażnicza C.R.I.T. Długość pozwala na duży zasięg, a " +"kopulasta końcówka pozwala na większy impet niż w przypadku pałek " +"cylindrycznych." #: lang/json/TOOL_from_json.py msgid "companion potato" @@ -135642,6 +139501,9 @@ msgid "" " to conjure fireballs does not seem to respond to your will, but the cutting" " edge is perfectly serviceable." msgstr "" +"Dobrze zbudowany i zdobiony miecz wykuty z gęstego metalu obcych. Jego " +"zdolność do wyczarowywania kul ognia nie wydaje się reagować na twoją wolę, " +"ale krawędź tnąca jest w pełni użyteczna." #: lang/json/TOOL_from_json.py msgid "salvaged knight's sword" @@ -135658,6 +139520,9 @@ msgid "" " the New Order. The runes that adorn it no longer glow, but its cutting " "edge is perfectly serviceable." msgstr "" +"Dobrze zbudowany miecz z gęstego metalu obcych, w służbie rycerzy Nowego " +"Porządku. Zdobiące go runy już nie świecą, ale jego ostrze jest doskonale " +"sprawne." #: lang/json/TOOL_from_json.py msgid "alien cloth scrap" @@ -135673,6 +139538,8 @@ msgid "" "This is a sizable portion of fibrous synthetic cloth, flexible and " "resistant, but unpleasant to the touch. Useful in crafting." msgstr "" +"Jest to spora porcja włóknistej, syntetycznej tkaniny, elastycznej i " +"wytrzymałej, ale nieprzyjemnej w dotyku. Przydatna w rzemiośle." #: lang/json/TOOL_from_json.py msgid "alien polymer scrap" @@ -135688,6 +139555,9 @@ msgid "" "This is a collection of strange, ivory colored plastics that are unnervingly" " warm to the touch. It could be used to fabricate, repair, or reinforce." msgstr "" +"Jest to kolekcja dziwnych tworzyw sztucznych w kolorze kości słoniowej, " +"które są niepokojąco ciepłe w dotyku. Można je wykorzystać do produkcji, " +"naprawy lub wzmacniania." #. ~ Description for active alien bomb #: lang/json/TOOL_from_json.py @@ -135695,6 +139565,8 @@ msgid "" "This is an alien bomb. It has been activated and will soon explode, " "delivering its entire destructive power to everything in sight." msgstr "" +"To jest bomba obcych. Została aktywowana i wkrótce wybuchnie, niszcząc " +"wszystko w zasięgu wzroku całą swoją destrukcyjną mocą." #. ~ Description for smartphone #: lang/json/TOOL_from_json.py @@ -135746,7 +139618,7 @@ msgstr "" "statyczne dźwięki. Szybko, uciekaj od niego, zanim przyciągnie do ciebie " "wrogów!" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -135784,6 +139656,10 @@ msgid "" "enough to cut wood, aliens, or in an emergency, pizza. The blade, while " "effective in combat, is hard to hit with due to its small size." msgstr "" +"Lekka ręczna bezprzewodowa piła tarczowa. Rozkręca okrągłe ostrze na tyle " +"prędko by ciąć drewno, kosmitów, i w sytuacjach awaryjnych pizzę. Ostrzem " +"piły, pomimo że to dobra broń w walce, ciężko trafić z uwagi na jego mały " +"rozmiar." #. ~ Description for lobotomizer #: lang/json/TOOL_from_json.py @@ -135792,6 +139668,8 @@ msgid "" "shovel-like tip on one end. It can be used as a shovel, or you could chop " "an enemy up with it instead." msgstr "" +"Ręcznie wykute składane narzędzie z dwiema głowniami siekier i szpadlem na " +"końcu. Używane zamiennie jako szpadel i broń do siekania wrogów." #. ~ Description for spike on a stick #: lang/json/TOOL_from_json.py @@ -135800,8 +139678,11 @@ msgid "" " sharp, and crudely constructed, but it will keep an enemy out of arm's " "reach until you can find something better." msgstr "" +"Wątły kij wykonany z drewna z przywiązanym do niego metalowym szpikulcem. " +"Jest niezbyt ostry i prymitywnie skonstruowany, ale utrzyma wroga poza " +"zasięgiem ręki, dopóki nie znajdziesz czegoś lepszego." -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -135812,6 +139693,12 @@ msgid "" " turret will then identify you as a friendly, and attack all enemies with " "its heavy machine gun." msgstr "" +"Jest to nieaktywna wieżyczka. Użycie tego przedmiotu polega na załadowaniu " +"jednostki fabrycznie załadowanymi nabojami do ciężkiego karabinu maszynowego" +" (jeśli chcesz podzielić amunicję, odłóż na bok amunicję, której nie chcesz " +"dać wieżyczce), włączeniu jej i postawieniu na ziemi, gdzie się umocuje. " +"Jeśli zaprogramujesz ją pomyślnie, rozpozna cię jako przyjaciela i zaatakuje" +" wszystkich wrogów swoim ciężkim karabinem maszynowym." #: lang/json/TOOL_from_json.py msgid "inactive CROWS II, light machinegun" @@ -135821,7 +139708,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -135831,6 +139718,12 @@ msgid "" "attach itself. If programmed successfully the turret will then identify you" " as a friendly, and attack all enemies with its light machine gun." msgstr "" +"Jest to nieaktywna wieżyczka. Użycie tego przedmiotu polega na załadowaniu " +"jednostki fabrycznie załadowanymi nabojami do karabinu (jeśli chcesz " +"podzielić amunicję, odłóż na bok amunicję, której nie chcesz dać wieżyczce)," +" włączeniu jej i postawieniu na ziemi, gdzie się umocuje. Jeśli " +"zaprogramujesz ją pomyślnie, rozpozna cię jako przyjaciela i zaatakuje " +"wszystkich wrogów swoim lekkim karabinem maszynowym." #. ~ Description for inactive turret #: lang/json/TOOL_from_json.py @@ -135842,6 +139735,12 @@ msgid "" "rewired successfully the turret will then identify you as a friendly, and " "attack all enemies with its SMG." msgstr "" +"To nieaktywna wieżyczka. Użycie jej zakłada napełnienie pojemników " +"fabrycznymi nabojami pistoletowymi z twojego ekwipunku (więc jak chcesz " +"zostawić nieco sobie to rozdziel amunicję i odłóż na bok TWOJĄ cześć), " +"włączenie, postawienie na ziemi. Jeżeli zostanie skutecznie przeprogramowana" +" i okablowana rozpozna cię jako przyjaciela, i będzie atakować wrogów " +"wbudowanym peemem." #. ~ Description for inactive TALON UGV #: lang/json/TOOL_from_json.py @@ -135854,6 +139753,12 @@ msgid "" "then identify you as a friendly, roam around or follow you, and attack all " "enemies with its rifle." msgstr "" +"Jest to nieaktywny dron jezdny TALON wyposażony w M16A4. Użycie go polega na" +" załadowaniu go fabrycznymi nabojami karabinowymi (jeśli chcesz podzielić " +"amunicję, odłóż na bok te, których NIE chcesz dać robotowi), włączeniu go i " +"postawieniu na ziemi. Po udanym przeprogramowaniu i okablowaniu, dron " +"ochrony rozpozna Cię jako przyjaciela, będzie się błąkał lub podążał za tobą" +" i atakował wszystkich wrogów swoim karabinem." #: lang/json/TOOL_from_json.py msgid "inactive launcher TALON UGV" @@ -135874,6 +139779,13 @@ msgid "" "identify you as a friendly, roam around or follow you, and attack all " "enemies with its grenade launcher." msgstr "" +"Jest to nieaktywny pojazd samojezdny TALON wyposażony w sześciostrzałowy " +"granatnik. Użycie tego przedmiotu polega na załadowaniu urządzenia nabojami " +"do granatów HEDP z twojego ekwipunku (jeśli chcesz podzielić amunicję, odłóż" +" na bok granaty, których nie chcesz dać robotowi), włączeniu go i " +"postawieniu na ziemi. Po udanym przeprogramowaniu i podłączeniu rozpozna Cię" +" jako przyjaciela, będzie się poruszał lub podążał za Tobą i atakował " +"wszystkich wrogów za pomocą granatnika." #: lang/json/TOOL_from_json.py msgid "scroll abstract" @@ -135894,12 +139806,12 @@ msgstr[3] "" #. ~ Use action message for dragon hand scroll. #: lang/json/TOOL_from_json.py msgid "You unroll the dragon scroll…" -msgstr "" +msgstr "Rozwijasz smoczy zwój..." #. ~ Description for dragon hand scroll #: lang/json/TOOL_from_json.py msgid "Focus your ki into magical attacks." -msgstr "" +msgstr "Skoncentruj swoją ki na magicznych atakach." #: lang/json/TOOL_from_json.py msgid "owlbear gastrolith" @@ -135917,6 +139829,10 @@ msgid "" "possible that it could serve a similar purpose in alchemy, helping to bind " "together two disparate halves." msgstr "" +"Ten dziwnie ukształtowany kamień był niegdyś częścią skomplikowanego układu " +"pokarmowego niedźwiedzia sowiego, tworząc połączenie między gardłem sowy a " +"żołądkiem niedźwiedzia. Możliwe, że mógłby służyć podobnemu celowi w " +"alchemii, pomagając połączyć dwie rozbieżne połówki." #: lang/json/TOOL_from_json.py msgid "mana bomb" @@ -135929,12 +139845,12 @@ msgstr[3] "" #. ~ Use action menu_text for mana bomb. #: lang/json/TOOL_from_json.py msgid "Mix liquid" -msgstr "" +msgstr "Wymieszaj płyn" #. ~ Use action msg for mana bomb. #: lang/json/TOOL_from_json.py msgid "You mix the contents of the bottle, and it starts to sizzle." -msgstr "" +msgstr "Mieszasz zawartość butelki, a ona zaczyna skwierczeć." #. ~ Description for mana bomb #: lang/json/TOOL_from_json.py @@ -135944,6 +139860,11 @@ msgid "" "by pure arcane energy and can kill instantly. The exact workings are " "unclear, but they appear to use some kind of massive mana burn." msgstr "" +"Bomby many to stworzone przez mało znaną grupę alchemików potężne ładunki " +"wybuchowe przeznaczone do walki z wrogimi czarodziejami. Bomby te są " +"napędzane czystą energią arkanów i mogą zabijać natychmiastowo. Dokładne " +"działanie jest niejasne, ale wydaje się, że wykorzystują one jakiś rodzaj " +"żywiołowego spalania many." #: lang/json/TOOL_from_json.py msgid "mana bomb (lit)" @@ -135958,6 +139879,8 @@ msgstr[3] "" msgid "" "The reaction has already started - all you can do is get it away from you!" msgstr "" +"Reakcja już się rozpoczęła - jedyne, co możesz zrobić, to odrzucić ją od " +"siebie!" #. ~ Description for mana bomb (lit) #: lang/json/TOOL_from_json.py @@ -135965,6 +139888,8 @@ msgid "" "The liquid in the bottle is sizzling. Throwing it away from you, preferably" " at an enemy, would be a very good idea." msgstr "" +"Płyn w butelce skwierczy. Bardzo dobrym pomysłem byłoby rzucenie jej w " +"kierunku przeciwnym do twojego, najlepiej w przeciwnika." #: lang/json/TOOL_from_json.py lang/json/trap_from_json.py msgid "alchemical mine" @@ -135977,17 +139902,17 @@ msgstr[3] "miny alchemicznej" #. ~ Use action bury_question for alchemical mine. #: lang/json/TOOL_from_json.py msgid "Bury the alchemic mine?" -msgstr "" +msgstr "Zakopać alchemiczną minę?" #. ~ Use action done_message for alchemical mine. #: lang/json/TOOL_from_json.py msgid "You set the alchemic mine." -msgstr "" +msgstr "Ustawiasz minę alchemiczną." #. ~ Use action done_message for alchemical mine. #: lang/json/TOOL_from_json.py msgid "You bury the alchemic mine." -msgstr "" +msgstr "Zakopujesz alchemiczną minę?" #. ~ Description for alchemical mine #: lang/json/TOOL_from_json.py @@ -135996,6 +139921,9 @@ msgid "" "Any movement in the mana linkage zone provokes an extremely powerful " "explosion in a small area." msgstr "" +"Para stabilizowanych bomb alchemicznych, które łączy skoncentrowana mana. " +"Każdy ruch w strefie połączenia maną wywołuje niezwykle potężną eksplozję na" +" niewielkim obszarze." #: lang/json/TOOL_from_json.py msgid "tanning black dragon hide" @@ -136009,11 +139937,13 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "You carefully unfold the black dragon hide and shake it clean." msgstr "" +"Ostrożnie rozwijasz wyprawianą skórę czarnego smoka i wstrząsasz nią do " +"czysta." #. ~ Use action not_ready_msg for tanning black dragon hide. #: lang/json/TOOL_from_json.py msgid "The black dragon hide isn't done yet." -msgstr "" +msgstr "Wyprawiana skóra czarnego smoka nie jest jeszcze gotowa." #. ~ Description for tanning black dragon hide #: lang/json/TOOL_from_json.py @@ -136022,6 +139952,9 @@ msgid "" "required to become workable. You will be able to activate it to unroll and " "make use of it when it is done." msgstr "" +"Wyprawiona skóra czarnego smoka, która jest poddawana procesom chemicznym " +"wymaganym, aby stała się zdatna do użytku. Będziesz mógł ją aktywować, aby " +"ją rozwinąć i wykorzystać, gdy będzie gotowa." #: lang/json/TOOL_from_json.py msgid "Biomancer rune" @@ -136037,6 +139970,8 @@ 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 "" +"Ten magiczny kamyk ma na sobie symbol rozerwanego ciała i kości. Jest on " +"niezbędny dla biomantów, aby mogli oni wykorzystywać magię w swojej pracy." #: lang/json/TOOL_from_json.py msgid "Technomancer rune" @@ -136052,6 +139987,8 @@ 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 "" +"Ten magiczny kamyk ma na sobie symbol zegara i kół zębatych. Jest on " +"niezbędny technomantom do przekazywania magii do ich rzemiosła." #: lang/json/TOOL_from_json.py msgid "Magus rune" @@ -136067,6 +140004,8 @@ 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 "" +"Ten magiczny kamyk ma na sobie insygnia kryształu i kul mana. Jest on " +"niezbędny dla magów, aby mogli wykorzystywać magię w swoich rzemiosłach." #: lang/json/TOOL_from_json.py msgid "Earthshaper rune" @@ -136082,6 +140021,8 @@ 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 "" +"Ten magiczny kamyk ma na sobie insygnia stali i skał. Jest on niezbędny " +"Kształtującym Ziemię do przekazywania magii w ich rzemiośle." #: lang/json/TOOL_from_json.py msgid "Kelvinist rune" @@ -136097,6 +140038,8 @@ 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 "" +"Ten magiczny kamyk ma na sobie insygnia lodu i płomieni. Jest on niezbędny " +"Kelwinistom do przekazywania magii w ich rzemiośle." #: lang/json/TOOL_from_json.py msgid "Stormshaper rune" @@ -136112,6 +140055,9 @@ 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 "" +"Ten magiczny kamyk ma na sobie symbol błyskawicy i chmur burzowych. Jest on " +"niezbędny dla Zaklinaczy Burz, aby mogli wykorzystywać magię w swoim " +"rzemiośle." #: lang/json/TOOL_from_json.py msgid "Druid rune" @@ -136127,6 +140073,8 @@ 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 "" +"Ten magiczny kamyk ma na sobie symbol natury i drzew. Jest on niezbędny " +"druidom do przekazywania magii w ich rzemiośle." #: lang/json/TOOL_from_json.py msgid "Animist rune" @@ -136142,6 +140090,8 @@ msgid "" "This magical pebble has an insignia of summoners on it. It is necessary for" " Animists to channel magic into their crafts." msgstr "" +"Ten magiczny kamyk ma na sobie insygnia przywoływaczy. Jest on niezbędny " +"animistom do przekazywania magii w ich rzemiośle." #: lang/json/TOOL_from_json.py msgid "alchemist rune" @@ -136158,6 +140108,9 @@ msgid "" "versatile in use, the lack of attunement to any school prevents creation of " "more advanced recipes." msgstr "" +"Ten magiczny kamyk posiada insygnia alchemii i eliksirów. Choć ma " +"wszechstronne zastosowanie, brak przywiązania do jakiejkolwiek szkoły " +"uniemożliwia tworzenie bardziej zaawansowanych receptur." #: lang/json/TOOL_from_json.py msgid "Technomancer mana-toolbar" @@ -136176,6 +140129,11 @@ msgid "" " time to cram one spell in the prototype software. There is a Technomancer " "rune embedded in the hammerhead." msgstr "" +"Ta laska łączy w wygodnym opakowaniu solidny klucz płaski na szczycie łomu i" +" młotek na drugim końcu. W lasce znajdują się elementy elektroniczne " +"połączone z ekranem dotykowym wbudowanym w laskę, zdążyłeś upchnąć tylko " +"jedno zaklęcie w prototypowym oprogramowaniu. W głowni młota osadzona jest " +"runa technomanty." #: lang/json/TOOL_from_json.py msgid "Kelvinist Frostbind" @@ -136192,6 +140150,9 @@ msgid "" "crystal from which a cold wind emanates. There are Kelvinist runes embedded" " in the blade." msgstr "" +"Ten zakrzywiony miecz, przypominający bułat, ma rękojeść z osadzonym " +"kryształem, z którego emanuje zimny wiatr. Na ostrzu znajdują się " +"kelwinistyczne runy." #: lang/json/TOOL_from_json.py msgid "heat cube" @@ -136204,7 +140165,7 @@ msgstr[3] "" #. ~ Use action menu_text for heat cube. #: lang/json/TOOL_from_json.py msgid "Activate torch mode" -msgstr "" +msgstr "Aktywuj tryb pochodni" #. ~ Use action msg for heat cube. #: lang/json/TOOL_from_json.py @@ -136212,6 +140173,8 @@ 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 "" +"Naciskasz przycisk pochodni, a kostka emituje z góry duży płomień, który " +"wprawdzie promieniuje ciepłem, ale niczego nie spali." #. ~ Description for heat cube #: lang/json/TOOL_from_json.py @@ -136219,6 +140182,8 @@ msgid "" "A smooth steel cube the size of your fist. Several buttons on the sides " "activate the powers of the cube." msgstr "" +"Gładka stalowa kostka wielkości twojej pięści. Kilka przycisków po bokach " +"aktywuje jej moce." #: lang/json/TOOL_from_json.py msgid "heat cube (torch on)" @@ -136231,7 +140196,7 @@ msgstr[3] "" #. ~ Use action msg for heat cube (torch on). #: lang/json/TOOL_from_json.py msgid "The torch flame is extinguished." -msgstr "" +msgstr "Płomień pochodni zostaje wygaszony." #. ~ Description for heat cube (torch on) #: lang/json/TOOL_from_json.py @@ -136239,6 +140204,8 @@ msgid "" "The heat cube in the torch configuration, where it emits warmth and a bright" " flame that does not burn." msgstr "" +"Kostka cieplna w konfiguracji pochodni, gdzie emituje ciepło i jasny " +"płomień, który nie podpala." #: lang/json/TOOL_from_json.py msgid "skeleton key of opening" @@ -136253,6 +140220,8 @@ msgstr[3] "" msgid "" "A small gold skeleton key. You can activate it to unlock locked things." msgstr "" +"Mały złoty klucz szkieletowy. Możesz go aktywować, aby odblokować zamknięte " +"przedmioty." #: lang/json/TOOL_from_json.py msgid "everburning torch" @@ -136268,6 +140237,9 @@ 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 "" +"Jest to wysokiej jakości grawerowana drewniana pochodnia. Na komendę, " +"końcówka wybucha płomieniem i wytwarza sporą ilość światła. Będzie się palić" +" wiecznie." #: lang/json/TOOL_from_json.py msgid "enchanted tailor's kit" @@ -136286,6 +140258,12 @@ msgid "" "clothing and armor. This uses your tailoring skill. It also contains one " "of those magic spiders that constantly, if slowly, makes new thread." msgstr "" +"Jest to wysokiej jakości, grawerowany zestaw stalowy z różnymi igłami, " +"plastikowymi szpulkami na nici, małymi nożyczkami, a nawet małym elementem " +"grzejnym do topienia i łączenia plastiku. Użyj zestawu krawieckiego, aby " +"dostosować swoje ubrania i zbroje. Używa on twoich umiejętności krawieckich." +" Zawiera on również jednego z tych magicznych pająków, który ciągle, choć " +"powoli, tworzy nowe nici." #: lang/json/TOOL_from_json.py msgid "spider box" @@ -136302,6 +140280,9 @@ msgid "" "and night to produce silk thread that it stores in a reservoir you can open " "and retrieve it from." msgstr "" +"Jest to małe szklane pudełko, które zawiera pająka, który sumiennie pracuje " +"dzień i noc, aby wyprodukować jedwabną nić, którą przechowuje w zbiorniku, " +"który można otworzyć i wyciągnąć ją z niego." #: lang/json/TOOL_from_json.py msgid "Magic Wand" @@ -136335,6 +140316,8 @@ 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 "" +"Smukła drewniana różdżka z gniazdem kryształu many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca magiczne pociski." #: lang/json/TOOL_from_json.py msgid "lesser wand of magic missile" @@ -136368,6 +140351,8 @@ msgid "" "A slender wooden wand with a mana crystal socket at the base that casts a " "spell when activated. This wand casts fireball." msgstr "" +"Smukła drewniana różdżka z gniazdem kryształu many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca kule ognia." #: lang/json/TOOL_from_json.py msgid "lesser wand of fireball" @@ -136401,6 +140386,8 @@ 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 "" +"Smukła drewniana różdżka z gniazdem kryształu many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca strumień many." #: lang/json/TOOL_from_json.py msgid "lesser wand of mana beam" @@ -136434,6 +140421,8 @@ 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 "" +"Smukła drewniana różdżka z gniazdem kryształu many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca punktową flarę." #: lang/json/TOOL_from_json.py msgid "lesser wand of point flare" @@ -136467,6 +140456,8 @@ 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 "" +"Smukła drewniana różdżka z gniazdem kryształu many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca huraganowy podmuch." #: lang/json/TOOL_from_json.py msgid "lesser wand of hoary blast" @@ -136500,6 +140491,8 @@ 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 "" +"Smukła drewniana różdżka z gniazdem kryształu many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca stożek zimna." #: lang/json/TOOL_from_json.py msgid "lesser wand of cone of cold" @@ -136533,6 +140526,8 @@ msgid "" "A slender wooden wand with a mana crystal socket at the base that casts a " "spell when activated. This wand casts knock." msgstr "" +"Smukła drewniana różdżka z gniazdem kryształu many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca zaklęcie otwierające." #: lang/json/TOOL_from_json.py msgid "lesser wand of knock" @@ -136566,6 +140561,8 @@ msgid "" "A slender wooden wand with a mana crystal socket at the base that casts a " "spell when activated. This wand casts improved knock." msgstr "" +"Smukła drewniana różdżka z gniazdem kryształu many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca ulepszone zaklęcie otwierające." #: lang/json/TOOL_from_json.py msgid "lesser wand of improved knock" @@ -136599,6 +140596,8 @@ 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 "" +"Smukła drewniana różdżka z wbudowanym kryształem many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca magiczne pociski." #: lang/json/TOOL_from_json.py msgid "disposable lesser wand of magic missile" @@ -136632,6 +140631,8 @@ msgid "" "A slender wooden wand with an embedded mana crystal at the base that casts a" " spell when activated. This wand casts fireball." msgstr "" +"Smukła drewniana różdżka z wbudowanym kryształem many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca kule ognia." #: lang/json/TOOL_from_json.py msgid "disposable lesser wand of fireball" @@ -136665,6 +140666,8 @@ 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 "" +"Smukła drewniana różdżka z wbudowanym kryształem many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca strumień many." #: lang/json/TOOL_from_json.py msgid "disposable lesser wand of mana beam" @@ -136698,6 +140701,8 @@ 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 "" +"Smukła drewniana różdżka z wbudowanym kryształem many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca punktową flarę." #: lang/json/TOOL_from_json.py msgid "disposable lesser wand of point flare" @@ -136731,6 +140736,8 @@ 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 "" +"Smukła drewniana różdżka z wbudowanym kryształem many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca huraganowy wiatr." #: lang/json/TOOL_from_json.py msgid "disposable lesser wand of hoary blast" @@ -136764,6 +140771,8 @@ 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 "" +"Smukła drewniana różdżka z wbudowanym kryształem many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca stożek zimna." #: lang/json/TOOL_from_json.py msgid "disposable lesser wand of cone of cold" @@ -136797,6 +140806,8 @@ msgid "" "A slender wooden wand with an embedded mana crystal at the base that casts a" " spell when activated. This wand casts knock." msgstr "" +"Smukła drewniana różdżka z wbudowanym kryształem many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca zaklęcie otwierające." #: lang/json/TOOL_from_json.py msgid "disposable lesser wand of knock" @@ -136830,6 +140841,8 @@ msgid "" "A slender wooden wand with an embedded mana crystal at the base that casts a" " spell when activated. This wand casts improved knock." msgstr "" +"Smukła drewniana różdżka z wbudowanym kryształem many u podstawy, który po " +"aktywacji rzuca zaklęcie. Ta różdżka rzuca ulepszone zaklęcie otwierające." #: lang/json/TOOL_from_json.py msgid "disposable lesser wand of improved knock" @@ -136861,6 +140874,8 @@ 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 "" +"Jest to mały płomień, który możesz trzymać w dłoni. Za pomocą myśli możesz " +"sprawić, że coś się od niego zapali." #: lang/json/TOOL_from_json.py msgid "seed of purification" @@ -136873,13 +140888,13 @@ msgstr[3] "" #. ~ Use action menu_text for seed of purification. #: lang/json/TOOL_from_json.py msgid "Squeeze seed" -msgstr "" +msgstr "Zgnieć nasiono" #. ~ Use action msg for seed of purification. #: lang/json/TOOL_from_json.py msgid "" "You squeeze the seed in your palm, and it begins to turn to a fine dust." -msgstr "" +msgstr "Ściskasz nasiono w dłoni, a ono zaczyna zamieniać się w drobny pył." #. ~ Description for seed of purification #: lang/json/TOOL_from_json.py @@ -136887,6 +140902,8 @@ 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 "" +"Magiczne nasiono, które może być ściśnięte, aby uwolnić oczyszczający pył, " +"który może być użyty do oczyszczenia wody w ilości do jednego galona." #: lang/json/TOOL_from_json.py msgid "faintly glowing dust" @@ -136899,7 +140916,7 @@ msgstr[3] "" #. ~ Description for faintly glowing dust #: lang/json/TOOL_from_json.py msgid "This fine dust glows with a growing intensity" -msgstr "" +msgstr "Ten drobny pył świeci z rosnącą intensywnością" #. ~ Use action menu_text for Pocket Sun. #: lang/json/TOOL_from_json.py @@ -136909,12 +140926,12 @@ msgstr "Pokrywa" #. ~ Use action msg for Pocket Sun. #: lang/json/TOOL_from_json.py msgid "You cover the pocket sun, and now the gap doesn't emit light." -msgstr "" +msgstr "Zakrywasz kieszonkowe słońce i teraz szczelina nie emituje światła." #. ~ Description for Pocket Sun #: lang/json/TOOL_from_json.py msgid "A small, capsule-shaped field containing a stable portal to the sun." -msgstr "" +msgstr "Małe pole w kształcie kapsuły, zawierające stabilny portal do słońca." #: lang/json/TOOL_from_json.py msgid "Covered Pocket Sun" @@ -136927,13 +140944,15 @@ msgstr[3] "" #. ~ Use action menu_text for Covered Pocket Sun. #: lang/json/TOOL_from_json.py msgid "Relieve" -msgstr "" +msgstr "Uwolnij" #. ~ Use action msg for Covered Pocket Sun. #: lang/json/TOOL_from_json.py msgid "" "You remove the cover on the pocket sun, and now the gap emits light again." msgstr "" +"Zdejmujesz pokrywę na kieszonkowym słońcu i teraz szczelina znów emituje " +"światło." #. ~ Description for Covered Pocket Sun #: lang/json/TOOL_from_json.py @@ -136941,6 +140960,8 @@ msgid "" "A small, capsule-shaped field containing a stable portal to the sun. It is " "currently covered." msgstr "" +"Małe pole w kształcie kapsuły, zawierające stabilny portal do słońca. " +"Obecnie zasłonięty." #: lang/json/TOOL_from_json.py msgid "orichalcum combat knife" @@ -136957,6 +140978,9 @@ msgid "" "Sharper and easier to maintain than steel while just as dense, this knife " "also has a thinner blade, which shaves off some weight." msgstr "" +"Wariant noża bojowego, który jest wykonany z orichalcum zamiast stali. " +"Ostrzejszy i łatwiejszy w utrzymaniu niż stal, a przy tym tak samo gęsty. " +"Nóż ten ma również cieńsze ostrze, co pozwala na zmniejszenie wagi." #: lang/json/TOOL_from_json.py msgid "orichalcum longsword" @@ -136973,6 +140997,9 @@ msgid "" "Sharper and easier to maintain than steel while just as dense, this " "longsword also has a thinner blade, which shaves off some weight." msgstr "" +"Wariant miecza długiego wykonany z orichalcum zamiast stali. Ten miecz jest " +"ostrzejszy i łatwiejszy w utrzymaniu niż stal, a przy tym tak samo gęsty. Ma" +" też cieńsze ostrze, co zmniejsza jego wagę." #: lang/json/TOOL_from_json.py msgid "orichalcum fire axe" @@ -136989,6 +141016,22 @@ msgid "" " chop through harder materials, and in the very well-funded fire stations is" " preferred." msgstr "" +"Topór strażacki wykonany z orichalcum zamiast stali. Umożliwia on " +"przecinanie twardszych materiałów, a w bardzo dobrze dofinansowanych " +"remizach jest szczególnie ceniony." + +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" +"Jest to klasyczny miecz średniowieczny, rozmiarem mieszczący się pomiędzy " +"lżejszym mieczem zbrojnym a późniejszymi mieczami dwuręcznymi. Dzięki " +"tajemniczemu srebrnemu metalowi, z którego został wykuty, jest mocniejszy " +"niż hartowana stal, a jednocześnie waży znacznie mniej." #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" @@ -137005,6 +141048,9 @@ msgid "" "and fortified with demon spider chitin in order to be able to resmelt " "magical metals into their workable ingot form." msgstr "" +"Jest to przenośna wersja kuźni węglowej, która została magicznie ulepszona i" +" wzmocniona chityną demonicznego pająka, aby móc przetapiać magiczne metale " +"do postaci wygodnych sztabek." #: lang/json/TOOL_from_json.py msgid "parabolan wool staple" @@ -137020,6 +141066,8 @@ msgid "" "The natural cluster of parabolan wool fibers. Could be processed to felt " "patches or yarns." msgstr "" +"Naturalne skupisko włókien wełny parabolicznej. Może być przerabiane na " +"płaty filcowe lub przędzę." #: lang/json/TOOL_from_json.py msgid "glassteel shard" @@ -137035,6 +141083,8 @@ msgid "" "A broken shard of glassteel covered in sharp edges. You could use it as a " "weapon, but you might want to wear gloves." msgstr "" +"Odłamany odłamek stali szklanej pokryty ostrymi krawędziami. Można go użyć " +"jako broni, ale warto założyć rękawice." #: lang/json/TOOL_from_json.py msgid "rock candy chunk" @@ -137048,6 +141098,39 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +"Jest to kawałek twardego jak skała cukierka. Można go rozbić na cukier." + +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" +"Kurołaz podnosi się na nogi, odsuwa się od ciebie i zaczyna badać teren." + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "Kurołaz warknął i wycelował prosto w ciebie. Kryć się!" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" +"Jest to nieaktywny kurołaz. Użycie tego przedmiotu polega na postawieniu go " +"na ziemi, załadowaniu go fabrycznymi nabojami 5.56 mm i granatami 40 mm " +"znajdującymi się w Twoim ekwipunku (jeśli chcesz podzielić amunicję, odłóż " +"na bok tę, której NIE chcesz dać robotowi) i włączeniu go. Jeśli uda się go " +"przeprogramować i okablować, będzie cię rozpoznawał jako osobę przyjazną, " +"poruszał się lub podążał za tobą i atakował wszystkich wrogów za pomocą " +"wbudowanej broni palnej i granatnika." #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" @@ -137063,6 +141146,8 @@ msgid "" "A bar and harness to attach a creature to a wheeled vehicle, they then " "should be able to pull it." msgstr "" +"Pręt i uprząż do przymocowania stworzenia do pojazdu kołowego, które " +"następnie powinno być w stanie go ciągnąć." #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "wheel" @@ -137171,7 +141256,7 @@ msgstr[3] "" #. ~ Description for set of wheels #: lang/json/WHEEL_from_json.py msgid "A set of four small wheels with tough rubber tires." -msgstr "" +msgstr "Zestaw czterech małych kółek z wytrzymałymi gumowymi oponami." #: lang/json/WHEEL_from_json.py msgid "metal wheel" @@ -137200,6 +141285,8 @@ msgid "" "A strong rail wheel. A flange helps keep it on a rail, but makes it perform" " terribly when not on a rail." msgstr "" +"Mocne koło kolejowe. Kołnierz pomaga utrzymać je na szynie, ale sprawia, że " +"zachowuje się fatalnie, gdy nie jest na szynie." #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "pair of small rail wheels" @@ -137215,6 +141302,9 @@ msgid "" "A pair of small rail wheels. It fits small railroad rails found in places " "like amusement parks. Mostly for hobby purposes rather than transportation." msgstr "" +"Para małych kółek kolejowych. Pasują do małych szyn kolejowych spotykanych w" +" miejscach takich jak parki rozrywki. Głównie do celów hobbystycznych, a nie" +" transportowych." #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "motorbike wheel" @@ -137295,6 +141385,8 @@ msgid "" "A very small plastic wheel with a punk attitude. This wheel was made for " "skating." msgstr "" +"Bardzo małe plastikowe kółko z punkowym nastawieniem. Kółko zostało " +"stworzone do jazdy na rolkach." #: lang/json/WHEEL_from_json.py msgid "set of tricycle wheels" @@ -137310,6 +141402,8 @@ msgid "" "A set of hard plastic wheels with one larger than the other two. Proudly " "made in the USA by Double Dango Productions." msgstr "" +"Zestaw twardych plastikowych kółek, z których jedno jest większe od dwóch " +"pozostałych. Dumnie wykonane w USA przez Double Dango Productions." #: lang/json/WHEEL_from_json.py msgid "pair of wheelchair wheels" @@ -137393,6 +141487,7 @@ msgstr[3] "" #: lang/json/WHEEL_from_json.py msgid "A column of mana energy that enables a floating disk to move." msgstr "" +"Kolumna energii many, która umożliwia poruszanie się lewitującego dysku." #: lang/json/achievement_from_json.py msgid "One down, billions to go…" @@ -137663,15 +141758,15 @@ msgstr "Neutralny węglowo" #: lang/json/achievement_from_json.py msgid "crossed plant mutation threshold" -msgstr "przekroczyłeś próg mutacji roślinnej" +msgstr "przekroczono próg mutacji roślinnej" #: lang/json/achievement_from_json.py msgid "Finally beat the tortoise" -msgstr "" +msgstr "W końcu pokonano żółwia" #: lang/json/achievement_from_json.py msgid "crossed rabbit mutation threshold" -msgstr "" +msgstr "przekroczono próg mutacji króliczej" #: lang/json/achievement_from_json.py msgid "Heard of the swarm?" @@ -137679,7 +141774,7 @@ msgstr "Pasterz roju?" #: lang/json/achievement_from_json.py msgid "crossed insect mutation threshold" -msgstr "przekroczyłeś próg mutacji owadziej" +msgstr "przekroczono próg mutacji owadziej" #: lang/json/achievement_from_json.py msgid "With great power…" @@ -137687,7 +141782,7 @@ msgstr "Z wielką mocą przychodzi…" #: lang/json/achievement_from_json.py msgid "crossed spider mutation threshold" -msgstr "przekroczyłeś próg mutacji pajęczej" +msgstr "przekroczono próg mutacji pajęczej" #: lang/json/achievement_from_json.py msgid "Slippery when moist" @@ -137695,7 +141790,7 @@ msgstr "Śliski gdy wilgotny" #: lang/json/achievement_from_json.py msgid "crossed slime mutation threshold" -msgstr "przekroczyłeś próg mutacji śluzu" +msgstr "przekroczono próg mutacji śluzu" #: lang/json/achievement_from_json.py msgid "Tipping the scales" @@ -137703,7 +141798,7 @@ msgstr "Jak ryba w wodzie" #: lang/json/achievement_from_json.py msgid "crossed fish mutation threshold" -msgstr "przekroczyłeś próg mutacji rybiej" +msgstr "przekroczono próg mutacji rybiej" #: lang/json/achievement_from_json.py msgid "At first I was afraid, I was petrified…" @@ -137711,7 +141806,7 @@ msgstr "Kto się boi myszy?" #: lang/json/achievement_from_json.py msgid "crossed rat mutation threshold" -msgstr "przekroczyłeś próg mutacji szczurzej" +msgstr "przekroczono próg mutacji szczurzej" #: lang/json/achievement_from_json.py msgid "The nature of the me" @@ -137719,7 +141814,7 @@ msgstr "Mam to w naturze" #: lang/json/achievement_from_json.py msgid "crossed beast mutation threshold" -msgstr "przekroczyłeś próg mutacji bestii" +msgstr "przekroczono próg mutacji bestii" #: lang/json/achievement_from_json.py msgid "Just the necessities" @@ -137727,7 +141822,7 @@ msgstr "Ursus, ale nie ciągnik" #: lang/json/achievement_from_json.py msgid "crossed ursine mutation threshold" -msgstr "przekroczyłeś próg mutacji niedźwiedziej" +msgstr "przekroczono próg mutacji niedźwiedziej" #: lang/json/achievement_from_json.py msgid "Nine lives" @@ -137735,7 +141830,7 @@ msgstr "Dziewięć żyć" #: lang/json/achievement_from_json.py msgid "crossed feline mutation threshold" -msgstr "przekroczyłeś próg mutacji kociej" +msgstr "przekroczono próg mutacji kociej" #: lang/json/achievement_from_json.py msgid "Leader of the pack" @@ -137743,7 +141838,7 @@ msgstr "Lider stada" #: lang/json/achievement_from_json.py msgid "crossed lupine mutation threshold" -msgstr "przekroczyłeś próg mutacji wilczej" +msgstr "przekroczono próg mutacji wilczej" #: lang/json/achievement_from_json.py msgid "Don't drive a limousine, become it" @@ -137751,7 +141846,7 @@ msgstr "Jest byczo!" #: lang/json/achievement_from_json.py msgid "crossed cattle mutation threshold" -msgstr "przekroczyłeś próg mutacji bydlęcej" +msgstr "przekroczono próg mutacji bydlęcej" #: lang/json/achievement_from_json.py msgid "How did I ever get surrounded by such undead neighbors?" @@ -137759,7 +141854,7 @@ msgstr "Nie jestem mięczakiem." #: lang/json/achievement_from_json.py msgid "crossed cephalopod mutation threshold" -msgstr "przekroczyłeś próg mutacji głowonogów" +msgstr "przekroczono próg mutacji głowonogów" #: lang/json/achievement_from_json.py msgid "Look, Ma, I can fly!" @@ -137767,7 +141862,7 @@ msgstr "Lot nad kukułczym gniazdem." #: lang/json/achievement_from_json.py msgid "crossed bird mutation threshold" -msgstr "przekroczyłeś próg mutacji ptasiej" +msgstr "przekroczono próg mutacji ptasiej" #: lang/json/achievement_from_json.py msgid "Yer a lizard, Harry" @@ -137775,7 +141870,7 @@ msgstr "Niezła z ciebie gadzina." #: lang/json/achievement_from_json.py msgid "crossed lizard mutation threshold" -msgstr "przekroczyłeś próg mutacji gadziej" +msgstr "przekroczono próg mutacji gadziej" #: lang/json/achievement_from_json.py msgid "Spelunking: a lifestyle, not a hobby" @@ -137783,23 +141878,23 @@ msgstr "Grotołaz z zamiłowania." #: lang/json/achievement_from_json.py msgid "crossed troglobite mutation threshold" -msgstr "przekroczyłeś próg mutacji troglobiontów" +msgstr "przekroczono próg mutacji troglobiontów" #: lang/json/achievement_from_json.py msgid "Carrying your home on your back" -msgstr "" +msgstr "Dźwigasz swój dom na plecach" #: lang/json/achievement_from_json.py msgid "crossed gastropod mutation threshold" -msgstr "" +msgstr "przekroczono próg mutacji brzuchonoga" #: lang/json/achievement_from_json.py msgid "Leaping forward in life" -msgstr "" +msgstr "Skaczesz w przód w życiu" #: lang/json/achievement_from_json.py msgid "crossed batrachian mutation threshold" -msgstr "" +msgstr "przekroczono próg mutacji płaza bezogonowego" #: lang/json/achievement_from_json.py msgid "Thus spake zombiethustra" @@ -137807,7 +141902,7 @@ msgstr "Tako rzecze Zombitustra" #: lang/json/achievement_from_json.py msgid "crossed alpha mutation threshold" -msgstr "przekroczyłeś próg mutacji alfa" +msgstr "przekroczono próg mutacji alfa" #: lang/json/achievement_from_json.py msgid "What doesn't kill you, makes you stranger" @@ -137815,7 +141910,7 @@ msgstr "Co cię nie zabije, to cię udziwni" #: lang/json/achievement_from_json.py msgid "crossed medical mutation threshold" -msgstr "przekroczyłeś próg mutacji medycznej" +msgstr "przekroczono próg mutacji medycznej" #: lang/json/achievement_from_json.py msgid "Equal opportunity assimilator" @@ -137823,7 +141918,7 @@ msgstr "Asymilator równych szans" #: lang/json/achievement_from_json.py msgid "crossed chimera mutation threshold" -msgstr "przekroczyłeś próg mutacji chimerycznej" +msgstr "przekroczono próg mutacji chimerycznej" #: lang/json/achievement_from_json.py msgid "Treat every day like Christmas" @@ -137831,7 +141926,7 @@ msgstr "Każdy dzień to jak Gwiazdka" #: lang/json/achievement_from_json.py msgid "crossed Elf-A mutation threshold" -msgstr "przekroczyłeś próg mutacji Elf-A" +msgstr "przekroczono próg mutacji Elf-A" #: lang/json/achievement_from_json.py msgid "Clever girl" @@ -137839,7 +141934,7 @@ msgstr "Sprytna sztuka" #: lang/json/achievement_from_json.py msgid "crossed raptor mutation threshold" -msgstr "przekroczyłeś próg mutacji drapieżnika" +msgstr "przekroczono próg mutacji drapieżnika" #: lang/json/achievement_from_json.py msgid "Judge me by my size" @@ -137847,11 +141942,11 @@ msgstr "Rozmiar ma znaczenie" #: lang/json/achievement_from_json.py msgid "crossed mouse mutation threshold" -msgstr "przekroczyłeś próg mutacji mysiej" +msgstr "przekroczono próg mutacji mysiej" #: lang/json/achievement_from_json.py msgid "Broken But Not Defeated" -msgstr "Złamany Lecz Nie Pokonany" +msgstr "Złamany, lecz niepokonany" #: lang/json/achievement_from_json.py msgid "Does your medical insurance cover that?" @@ -138015,8 +142110,8 @@ msgid "Fashion Designer" msgstr "Projektant mody" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." -msgstr "Moda męska, żeńska i zmutowana." +msgid "From catwalk to cataclysm." +msgstr "Od wybiegu do kataklizmu." #: lang/json/achievement_from_json.py msgid "Survivalist" @@ -138520,6 +142615,10 @@ msgstr "konstruuowanie" msgid "mining" msgstr "kopanie" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "mopowanie" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "sprzątanie" @@ -138790,7 +142889,7 @@ msgstr "cięcie drutu" #: lang/json/activity_type_from_json.py msgid "prying open" -msgstr "" +msgstr "podważanie" #: lang/json/activity_type_from_json.py msgid "chopping down a tree" @@ -139405,19 +143504,17 @@ msgstr "" "dźwięki podczas chodzenia." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "Opancerzenie Ramion" +msgid "Intradermal Alloy - Arms" +msgstr "Stop Śródskórny - Ramiona" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" -"Tkanka na twoich rękach została chirurgicznie zastąpiona powłoką ze stopu. " -"Zapewnia pasywną ochronę i może być używana w połączeniu z bionicznymi " -"sztukami walki." +"Zaawansowana siatka ochronna została wpleciona w ciało na twoich ramionach i" +" dłoniach, chroniąc je przed urazami fizycznymi." #: lang/json/bionic_from_json.py msgid "Protective Lenses" @@ -139435,45 +143532,43 @@ msgstr "" "lub wypluwać łzy." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" -msgstr "" +msgid "Intradermal Alloy - head" +msgstr "Stop Śródskórny - Głowa" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" -"Tkanka na głowie została chirurgicznie zastąpiona powłoką ze stopu, " -"chroniącą zarówno głowę, jak i okolice szczęki." +"Zaawansowana siatka ochronna została wpleciona w ciało na twojej głowie, " +"chroniąc ją przed urazami fizycznymi." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "Opancerzenie Nóg" +msgid "Intradermal Alloy - Legs" +msgstr "Stop Śródskórny - Nogi" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" -"Tkanka na twoich nogach została chirurgicznie zastąpiona powłoką ze stopu. " -"Zapewnia pasywną ochronę i może być używana w połączeniu z bionicznymi " -"sztukami walki." +"Zaawansowana siatka ochronna została wpleciona w ciało na twoich nogach, " +"chroniąc je przed urazami fizycznymi." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" -msgstr "" +msgid "Intradermal Alloy - torso" +msgstr "Stop Śródskórny - Tors" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" -"Tkanka na twoim torsie została chirurgicznie zastąpiona powłoką ze stopu, " -"chroniącą go przed urazami fizycznymi." +"Zaawansowana siatka ochronna została wpleciona w ciało na twojej klatce " +"piersiowej, chroniąc ją przed urazami fizycznymi." #: lang/json/bionic_from_json.py msgid "Battery System" @@ -139483,12 +143578,13 @@ msgstr "System Bateryjny" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" "Posiadasz przystawkę do rozładowywania baterii, dzięki czemu możesz " -"korzystać z energii zawartej w zwykłych, codziennych bateriach. Użyj 'E', " -"aby wyładować baterię. Może być dowolnie włączany i wyłączany." +"korzystać z energii zawartej w zwykłych, codziennych bateriach. Użyj " +"bionicznego menu, aby wyładować baterię. Może być dowolnie włączany i " +"wyłączany." #: lang/json/bionic_from_json.py msgid "Monomolecular Blade" @@ -139978,7 +144074,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Respirator" -msgstr "" +msgstr "Respirator" #. ~ Description for Respirator #: lang/json/bionic_from_json.py @@ -140945,7 +145041,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Soporific Induction" -msgstr "" +msgstr "Induktor Nasenny" #. ~ Description for Soporific Induction #: lang/json/bionic_from_json.py @@ -140975,7 +145071,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Deployable Grenade Launcher" -msgstr "" +msgstr "Rozkładany Granatnik" #. ~ Description for Deployable Grenade Launcher #: lang/json/bionic_from_json.py @@ -141003,7 +145099,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Dopamine Stimulators" -msgstr "" +msgstr "Stymulatory Dopaminy" #. ~ Description for Dopamine Stimulators #: lang/json/bionic_from_json.py @@ -141021,11 +145117,11 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Counteractive Reflexes" -msgstr "" +msgstr "Odruchy Kontrreaktywne" #: lang/json/bionic_from_json.py msgid "Melee Optimization Unit" -msgstr "" +msgstr "Jednostka Optymalizacji Walki Wręcz" #. ~ Description for Melee Optimization Unit #: lang/json/bionic_from_json.py @@ -141040,7 +145136,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Weak Gravity Manipulation Field" -msgstr "" +msgstr "Słabe Pole Manipulacji Grawitacją" #. ~ Description for Weak Gravity Manipulation Field #: lang/json/bionic_from_json.py @@ -141056,7 +145152,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Combat Rated Gravity Manipulation Field" -msgstr "" +msgstr "Bojowe Pole Manipulacji Grawitacją" #. ~ Description for Combat Rated Gravity Manipulation Field #: lang/json/bionic_from_json.py @@ -141072,7 +145168,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Debt Collection Agent Personal GravyField" -msgstr "" +msgstr "Osobiste Graw-Pole Agenta Windykacji" #. ~ Description for Debt Collection Agent Personal GravyField #: lang/json/bionic_from_json.py @@ -141089,7 +145185,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Point Energy Conversion Field" -msgstr "" +msgstr "Pole Konwersji Energii Punktowej" #. ~ Description for Point Energy Conversion Field #: lang/json/bionic_from_json.py @@ -141110,7 +145206,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Holtzman Personal Shield Generator" -msgstr "" +msgstr "Osobisty Generator Tarczy Holtzmana" #. ~ Description for Holtzman Personal Shield Generator #: lang/json/bionic_from_json.py @@ -141127,7 +145223,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Illegally modified Shield Generator" -msgstr "" +msgstr "Nielegalnie Zmodyfikowany Generator Tarczy" #. ~ Description for Illegally modified Shield Generator #: lang/json/bionic_from_json.py @@ -141144,7 +145240,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Neurosoft: Aeronautics" -msgstr "" +msgstr "Neurosoft: Aeronautyka" #. ~ Description for Implanted translocator CBM #: lang/json/bionic_from_json.py @@ -141185,7 +145281,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Precision Solderers" -msgstr "" +msgstr "Lutownice Precyzyjne" #. ~ Description for Precision Solderers #: lang/json/bionic_from_json.py @@ -141202,7 +145298,7 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "Wind Turbines" -msgstr "" +msgstr "Turbiny Wiatrowe" #: lang/json/bionic_from_json.py lang/json/gun_from_json.py msgid "Ionic Overload Generator" @@ -141804,7 +145900,7 @@ msgstr "" "Zaznacz miejsce do tworzenia. Zadania rzemieślnicze znajdujące się obok tego" " kafelka automatycznie wykorzystają tę lokalizację zamiast próbować tworzyć " "w rękach, ze zwykłą karą za szybkość rzemieślniczą za pracę na ziemi. Nie " -"uniemożliwia korzystania z odpowiedniego stołu roboczego, jeśli jest " +"uniemożliwia korzystania z odpowiedniego stołu warsztatowego, jeśli jest " "dostępny. Dekonstruuj lub rozbij, aby usunąć." #: lang/json/construction_from_json.py @@ -141842,6 +145938,10 @@ msgid "" "high end of a ramp must be built adjacent to allow moving between z-levels " "in both directions." msgstr "" +"Zbuduj betonową rampę prowadzącą do następnego z-poziomu powyżej, oraz " +"odpowiadającą jej rampę w dół prowadzącą z z-poziomu z powyżej do tego " +"poziomu. Wysoki koniec rampy musi być zbudowany obok, aby umożliwić " +"poruszanie się pomiędzy poziomami z w obu kierunkach." #: lang/json/construction_from_json.py msgid "" @@ -141850,6 +145950,10 @@ msgid "" "must be built next to a low end of a ramp to allow moving between z-levels " "in both directions." msgstr "" +"Zbuduj betonową rampę prowadzącą do następnego z-poziomu powyżej, oraz " +"odpowiadającą jej rampę w dół prowadzącą z z-poziomu z powyżej do tego " +"poziomu. Musi być zbudowany obok niskiego końca rampy, aby umożliwić " +"poruszanie się pomiędzy z-poziomami w obu kierunkach." #: lang/json/construction_from_json.py msgid "You need a deep pit to construct a root cellar." @@ -141880,12 +145984,16 @@ msgid "" "Must be adjacent to a reinforced concrete wall that is itself adjacent to a " "metal gate in order to open said gate." msgstr "" +"Musi przylegać do żelbetowej ściany, która z kolei przylega do metalowej " +"bramy, aby można było ją otworzyć." #: lang/json/construction_from_json.py msgid "" "Must be between reinforced concrete walls to function, and at least one wall" " must have an adjacent mechanical winch." msgstr "" +"Musi znajdować się pomiędzy żelbetowymi ścianami, aby funkcjonować, a co " +"najmniej jedna ściana musi mieć przylegającą wciągarkę mechaniczną." #: lang/json/construction_from_json.py msgid "" @@ -141921,11 +146029,11 @@ msgstr "Zabij deskami drewniane drzwi" #: lang/json/construction_group_from_json.py msgid "Build a bellow" -msgstr "Zbuduj mieszek" +msgstr "Zbuduj miech" #: lang/json/construction_group_from_json.py msgid "Build a drop hammer" -msgstr "Zbuduj młot spadowy" +msgstr "Zbuduj młot kafarowy" #: lang/json/construction_group_from_json.py msgid "Build a radio tower" @@ -142009,7 +146117,7 @@ msgstr "Zbuduj krzesło" #: lang/json/construction_group_from_json.py msgid "Build Charcoal Kiln" -msgstr "Zbuduj piec do wypalania węgla drzewnego" +msgstr "Zbuduj piec do węgla drzewnego" #: lang/json/construction_group_from_json.py msgid "Build Chickenwire Fence" @@ -142189,7 +146297,7 @@ msgstr "Zbuduj stołek z kłody" #: lang/json/construction_group_from_json.py msgid "Build Log Wall" -msgstr "Zbuduj ścianę z kłody" +msgstr "Zbuduj ścianę z kłód" #: lang/json/construction_group_from_json.py msgid "Build Low End of a Concrete Ramp" @@ -142521,7 +146629,7 @@ msgstr "Zbuduj ogrodzenie z drutu" #: lang/json/construction_group_from_json.py msgid "Build Wood Stove" -msgstr "Zbuduj piec kozę" +msgstr "Zbuduj piecyk na drewno" #: lang/json/construction_group_from_json.py msgid "Build Wood Wall" @@ -142549,7 +146657,7 @@ msgstr "Zbuduj drewnianą klatkę schodową" #: lang/json/construction_group_from_json.py msgid "Build Workbench" -msgstr "Zbuduj warsztat" +msgstr "Zbuduj stół warsztatowy" #: lang/json/construction_group_from_json.py msgid "Build Woven Wattle Fence" @@ -142753,7 +146861,7 @@ msgstr "Umieść wiatrak" #: lang/json/construction_group_from_json.py msgid "Place Workbench" -msgstr "Umieść warsztat" +msgstr "Umieść stół warsztatowy" #: lang/json/construction_group_from_json.py msgid "Reinforce Boarded Window" @@ -142785,7 +146893,7 @@ msgstr "Usuń wosk z podłogi" #: lang/json/construction_group_from_json.py msgid "Repair Log Wall" -msgstr "Napraw ścianę z kłody" +msgstr "Napraw ścianę z kłód" #: lang/json/construction_group_from_json.py msgid "Repair Wattle-and-Daub Wall" @@ -142950,7 +147058,7 @@ msgstr "Twój sen sprawia że czuje się jakby po zażyciu leków." #: lang/json/dream_from_json.py msgid "You have a strange dream about rabbits." -msgstr "" +msgstr "Masz dziwny sen o królikach." #: lang/json/dream_from_json.py msgid "Your dreams give you a strange furry feeling." @@ -142966,20 +147074,22 @@ msgstr "Twoje sny sprawiają, że czujesz się upierzony." #: lang/json/dream_from_json.py msgid "You have a strange dream about snails and slugs in your garden." -msgstr "" +msgstr "Masz dziwny sen o ślimakach w swoim ogrodzie." #: lang/json/dream_from_json.py msgid "Your dreams leave you feeling like something is stuck to you." msgstr "" +"Twoje sny sprawiają, że masz wrażenie, że coś się do ciebie przykleiło." #: lang/json/dream_from_json.py msgid "" "You have a strange dream about frogs in a pond near your childhood home." msgstr "" +"Masz dziwny sen o żabach w stawie w pobliżu twojego domu z dzieciństwa." #: lang/json/dream_from_json.py msgid "Your dreams contain a croaking concerto." -msgstr "" +msgstr "Twoje sny to koncert rechoczących żab." #: lang/json/dream_from_json.py msgid "You have a strange dream about fish." @@ -143023,7 +147133,7 @@ msgstr "Masz dziwny sen o bydle." #: lang/json/dream_from_json.py msgid "Your dreams give you a strange content, furry feeling." -msgstr "Twoje sny sprawiają, że czujesz się zadowolony i porośnięty futrem." +msgstr "Twoje sny dają ci spokojne, futrzane uczucie." #: lang/json/dream_from_json.py msgid "You have a strange dream about insects." @@ -143162,32 +147272,36 @@ msgstr "W śnie widzisz siebie w szpitalnym kitlu podczas kuracji." #: lang/json/dream_from_json.py msgid "You have a disturbing dream about running from dogs." -msgstr "" +msgstr "Masz niepokojący sen o uciekaniu przed psami." #: lang/json/dream_from_json.py msgid "" "While dreaming, you see a distinctively rabbit-like reflection of yourself." -msgstr "" +msgstr "Podczas snu, widzisz wyraźnie królicze odbicie samego siebie." #: lang/json/dream_from_json.py msgid "You have a strange dream of carrying a house on your back." -msgstr "" +msgstr "Masz dziwny sen, że nosisz dom na plecach." #: lang/json/dream_from_json.py msgid "" "While dreaming, you see yourself weighted down under massive backpack/tent " "upon your back, as you pass by a mirrored surface." msgstr "" +"Podczas snu, widzisz siebie obciążonego masywnym plecakiem/namiotem na " +"plecach, jak przechodzisz obok lustrzanej powierzchni." #: lang/json/dream_from_json.py msgid "You have a disturbing dream of eating insects." -msgstr "" +msgstr "Masz niepokojący sen o jedzeniu owadów." #: lang/json/dream_from_json.py msgid "" "While dreaming, you see yourself in a pond, your face has widened and is " "covered in mucus." msgstr "" +"Podczas snu widzisz siebie w stawie, twoja twarz poszerzyła się i jest " +"pokryta śluzem." #: lang/json/dream_from_json.py msgid "You have strange dreams of soaring through the sky." @@ -143379,11 +147493,11 @@ msgstr "Masz niepokojąco prawdziwy sen o życiu jaszczura." #: lang/json/dream_from_json.py msgid "You have a strange dream about being the Easter Bunny." -msgstr "" +msgstr "Masz dziwny sen o tym, że jesteś Zajączkiem Wielkanocnym." #: lang/json/dream_from_json.py msgid "You have a comforting and warm dream of living as a rabbit." -msgstr "" +msgstr "Masz komfortowy i ciepły sen o życiu jako królik." #: lang/json/dream_from_json.py msgid "" @@ -143421,21 +147535,23 @@ msgstr "Budzisz się i panikujesz bo dusisz się wyciągnięty z wody." #: lang/json/dream_from_json.py msgid "You dream of leaping from the water to catch your prey." -msgstr "" +msgstr "Śnisz o skokach z wody, aby złapać swoją ofiarę." #: lang/json/dream_from_json.py msgid "You wake up with your legs pumping as you hop along in your sleep." -msgstr "" +msgstr "Budzisz się z podrygującymi nogami, podskakując we śnie." #: lang/json/dream_from_json.py msgid "" "You dream of crawling along the world when you realize you can see three " "hundred and sixty degrees around yourself." msgstr "" +"Śnisz o czołganiu się po świecie, kiedy uświadamiasz sobie, że widzisz " +"trzysta sześćdziesiąt stopni wokół siebie." #: lang/json/dream_from_json.py msgid "You dream of curling up inside a shell to sleep." -msgstr "" +msgstr "Śnisz o tym, by skulić się w muszli i zasnąć." #: lang/json/dream_from_json.py msgid "You vividly dream of running with your pack, hunting a wild animal." @@ -143650,11 +147766,11 @@ msgstr "" #: lang/json/dream_from_json.py msgid "Will your burrow be warm enough for the family in winter?" -msgstr "" +msgstr "Czy Twoja nora będzie wystarczająco ciepła dla rodziny w zimie?" #: lang/json/dream_from_json.py msgid "You dream of outrunning the apocalypse." -msgstr "" +msgstr "Śnisz o przegonieniu sprintem apokalipsy." #: lang/json/dream_from_json.py msgid "You have a comforting dream of swimming with a school of fish." @@ -143861,7 +147977,7 @@ msgstr "Gniew jest tak wielki! Zaraz CIĘ DOPAAAAH! *dyszysz* to tylko sen." #: lang/json/dream_from_json.py msgid "You find your paws twitching. There's a cave. You should go." -msgstr "Twoje łapy drżą. Jest jaskinia. Powinieneś iść." +msgstr "Twoje łapy drżą. Jest jaskinia. Musisz iść." #: lang/json/dream_from_json.py msgid "" @@ -143896,22 +148012,28 @@ msgid "" "There is so much that you never imagined, the slime, the legs, and eyestalks" " but the shell was worth it." msgstr "" +"Jest tak wiele rzeczy, których nigdy sobie nie wyobrażałeś, śluz, nogi i " +"gałki oczne, ale muszla była tego warta." #: lang/json/dream_from_json.py msgid "You'll always be home, once you take this last step." -msgstr "" +msgstr "Zawsze będziesz w domu, jeśli zrobisz ten ostatni krok." #: lang/json/dream_from_json.py msgid "" "You'd never considered that frogs were generalist predators before this " "point in your life…" msgstr "" +"Nigdy wcześniej nie myślałeś o tym, że żaby są uniwersalnymi " +"drapieżnikami..." #: lang/json/dream_from_json.py msgid "" "On land and in the water, you control all that you can reach, and your " "tongue has quite the reach." msgstr "" +"Na lądzie i w wodzie kontrolujesz wszystko, co możesz dosięgnąć, a twój " +"język ma całkiem spory zasięg." #: lang/json/dream_from_json.py msgid "Your body flows slightly faster than you expected… oh, just a dream." @@ -145637,8 +149759,8 @@ msgstr "Masz zainfekowaną ranę." #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." -msgstr "Twoja rana po ugryzieniu wydaje się być zainfekowana." +msgid "Your wound feels infected." +msgstr "Twoje rany wydają się być zainfekowane." #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus #. Filled'. @@ -149205,7 +153327,7 @@ msgstr "Byli więźniowie, którzy odzyskali wolność podczas apokalipsy." #: lang/json/faction_from_json.py msgid "The Exodii" -msgstr "" +msgstr "Exodii" #. ~ Description for The Exodii #: lang/json/faction_from_json.py @@ -149213,6 +153335,8 @@ msgid "" "A tribe of scavengers and survivors that have been through this before, and " "sacrificed what they must to make it through." msgstr "" +"Plemię szabrowników i ocalałych, którzy przeszli przez to już wcześniej i " +"poświęcili to, co musieli, aby przetrwać." #: lang/json/faction_from_json.py msgid "PrepNet Phyle" @@ -149830,15 +153954,15 @@ msgstr "przestarzały gruz" #: lang/json/field_type_from_json.py msgid "glimmer" -msgstr "" +msgstr "błysk" #: lang/json/field_type_from_json.py msgid "glow" -msgstr "" +msgstr "połysk" #: lang/json/field_type_from_json.py msgid "shine" -msgstr "" +msgstr "lśnienie" #: lang/json/field_type_from_json.py msgid "thin smoke" @@ -149866,7 +153990,7 @@ msgstr "gęsty toksyczny gaz" #: lang/json/field_type_from_json.py msgid "triffid pollen" -msgstr "pyłek tryffidów" +msgstr "pyłek tryfidów" #: lang/json/field_type_from_json.py msgid "tear gas" @@ -150909,8 +155033,7 @@ msgstr "" "ocalałego." #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "łup!" @@ -150929,9 +155052,8 @@ msgstr "" " jest taśmą odblaskową w celu zwiększenia widoczności. Pomimo nazwy, nie ma " "ona większego wpływu na zatrzymanie jadącego samochodu." -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "brzdęk!" @@ -151284,7 +155406,7 @@ msgstr "Nasiono, które właśnie zaczęło wypuszczać swoje pierwsze korzenie. #: lang/json/furniture_from_json.py msgid "planter" -msgstr "sadzarka" +msgstr "donica" #. ~ Description for planter #: lang/json/furniture_from_json.py @@ -151297,7 +155419,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "planter with harvestable plant" -msgstr "sadzarka gotowa do zbiorów" +msgstr "donica gotowa do zbiorów" #. ~ Description for planter with harvestable plant #: lang/json/furniture_from_json.py @@ -151310,7 +155432,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "planter with mature plant" -msgstr "sadzarka z dorosłą rośliną" +msgstr "donica z dorosłą rośliną" #. ~ Description for planter with mature plant #: lang/json/furniture_from_json.py @@ -151324,7 +155446,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "planter with seed" -msgstr "sadzarka z nasionami" +msgstr "donica z nasionami" #. ~ Description for planter with seed #: lang/json/furniture_from_json.py @@ -151337,7 +155459,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "planter with seedling" -msgstr "sadzarka z sadzonką" +msgstr "donica z sadzonką" #. ~ Description for planter with seedling #: lang/json/furniture_from_json.py @@ -151513,7 +155635,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "wood stove" -msgstr "piecyk koza" +msgstr "piecyk na drewno" #. ~ Description for wood stove #: lang/json/furniture_from_json.py @@ -151725,7 +155847,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "chrzęst!" @@ -153257,7 +157379,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "bookcase" -msgstr "regał na książki" +msgstr "biblioteczka" #. ~ Description for bookcase #: lang/json/furniture_from_json.py @@ -154463,7 +158585,8 @@ msgstr "" "zawartości i wykonywania wszelkich dozwolonych funkcji. Możliwe jest nawet " "zhakowanie go, jeśli posiada się odpowiednie umiejętności." -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "kuźnia" @@ -154498,7 +158621,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "metal charcoal kiln" -msgstr "metalowy piec do wypalania węgla drzewnego" +msgstr "metalowy piec do węgla drzewnego" #. ~ Description for metal charcoal kiln #. ~ Description for filled metal charcoal kiln @@ -154512,7 +158635,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "filled metal charcoal kiln" -msgstr "wypełniony metalowy piec do wypalania węgla drzewnego" +msgstr "wypełniony metalowy piec do węgla drzewnego" #. ~ Description for arc furnace #. ~ Description for filled arc furnace @@ -154536,7 +158659,8 @@ msgid "" "Works as a charcoal smoker in crafting recipes." msgstr "" "Specjalny stojak przeznaczony do wędzenia żywności dla zapewnienia lepszej " -"konserwacji i smaku. Działa jako wędzarnia węglowa w przepisach kulinarnych." +"konserwacji i smaku. Działa jako wędzarnia na węgiel drzewny w przepisach " +"kulinarnych." #: lang/json/furniture_from_json.py msgid "active smoking rack" @@ -154609,6 +158733,25 @@ msgstr "" "opuszczanie w dół. Przydatna we wszystkich rodzajach projektów, od produkcji" " przemysłowej po domową obróbkę drewna, jeśli jest zasilana z UPS." +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "terrarium dla ogników" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" +"Podczas gdy wielu ocalałych skupiłoby się na próbach przywrócenia świateł " +"elektrycznych, ktokolwiek tu mieszka najwyraźniej postanowił wykorzystać " +"zmiany wywołane przez kataklizm do zapewnienia światła. W tym wiwarium " +"znajduje się ziemia, dziwne rośliny, których nie rozpoznajesz na pierwszy " +"rzut oka, a przede wszystkim gigantyczny zmutowany ognik." + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -155973,9 +160116,9 @@ msgstr "Pociągasz za dźwignię…" msgid "acid spit gun" msgid_plural "acid spit guns" msgstr[0] "kwasowy pistolet plujka" -msgstr[1] "kwasowy pistolet plujka" -msgstr[2] "kwasowy pistolet plujka" -msgstr[3] "kwasowy pistolet plujka" +msgstr[1] "kwasowe pistolety plujka" +msgstr[2] "kwasowych pistoletów plujka" +msgstr[3] "kwasowego pistoletu plujka" #: lang/json/gun_from_json.py msgid "Fake gun that fires acid globs." @@ -155991,9 +160134,9 @@ msgstr "karabin" msgid "reach bow" msgid_plural "reach bows" msgstr[0] "łuk zasięgowy" -msgstr[1] "łuk zasięgowy" -msgstr[2] "łuk zasięgowy" -msgstr[3] "łuk zasięgowy" +msgstr[1] "łuki zasięgowe" +msgstr[2] "łuków zasięgowych" +msgstr[3] "łuku zasięgowego" #: lang/json/gun_from_json.py msgid "A test item that is both a ranged weapon and a reach weapon" @@ -156004,10 +160147,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "mi-go bio-gun" msgid_plural "mi-go bio-guns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "bio-spluwa mi-go" +msgstr[1] "bio-spluwy mi-go" +msgstr[2] "bio-spluw mi-go" +msgstr[3] "bio-spluwy mi-go" #: lang/json/gun_from_json.py msgid "" @@ -156022,8 +160165,8 @@ msgstr "" msgid "IF YOU SEE THIS IT IS A BUG" msgid_plural "IF YOU SEE THIS IT IS A BUGs" msgstr[0] "JEŻELI TO WIDZISZ TO JEST BŁĄD." -msgstr[1] "JEŻELI TO WIDZISZ TO JEST BŁĄD." -msgstr[2] "JEŻELI TO WIDZISZ TO JEST BŁĄD." +msgstr[1] "JEŻELI TO WIDZISZ TO SĄ BŁĘDY." +msgstr[2] "JEŻELI TO WIDZISZ TO SĄ BŁĘDY." msgstr[3] "JEŻELI TO WIDZISZ TO JEST BŁĄD." #: lang/json/gun_from_json.py @@ -156031,8 +160174,8 @@ msgid "" "An assault rifle used by a NATO member state. As per NATO's STANAG " "agreement, it is chambered in 5.56x45mm." msgstr "" -"Karabinek szturmowy używany przez państwo członkowskie NATO. Zgodnie z " -"natowskim porozumieniem STANAG, jest on wyposażony w komorę 5,56x45mm." +"Karabinek automatyczny używany przez państwo członkowskie NATO. Zgodnie z " +"natowskim porozumieniem STANAG, strzela on amunicją 5,56 x 45 mm." #: lang/json/gun_from_json.py msgid "" @@ -156040,16 +160183,16 @@ msgid "" "is damaging and accurate, though its rate of fire is a bit slower than " "competing .223 carbines." msgstr "" -"Ten karabinek opracowano do użytku wojskowego we wczesnych latach 21-go " -"wieku. Jest celny i zadaje sporo obrażeń, choć jego szybkostrzelność jest " -"nieco niższa niż konkurencyjnych karabinków kalibru .223." +"Ten karabinek opracowano do użytku wojskowego we wczesnych latach XXI wieku." +" Jest celny i zadaje sporo obrażeń, choć jego szybkostrzelność jest nieco " +"niższa niż konkurencyjnych karabinków kalibru .223." #: lang/json/gun_from_json.py msgid "" "Designed to replace the M4A1, the Heckler and Koch 416A5 features most of " "the former's strengths, while being considerably more durable." msgstr "" -"Opracowany by zastąpić M4A1, Heckler and Koch 416A5 cechuje się wszystkimi " +"Opracowany, by zastąpić M4A1, Heckler & Koch 416A5 cechuje się wszystkimi " "jego zaletami, będąc wyraźnie wytrzymalszą konstrukcją." #: lang/json/gun_from_json.py @@ -156057,7 +160200,7 @@ msgid "" "A H&K416 carbine outfitted with a heavier barrel to enable higher amounts of" " suppressive fire while retaining a good degree of mobility." msgstr "" -"Karabinek H&K 416 wyposażony w ciężką lufę, by zapewnić większą zdolność " +"Karabinek HK416 wyposażony w ciężką lufę, by zapewnić większą zdolność " "prowadzenia ognia zaporowego przy zachowaniu dobrego poziomu mobilności." #: lang/json/gun_from_json.py @@ -156077,11 +160220,11 @@ msgid "" "rotating bolt rifle known for its accuracy and controllable recoil. This " "one is a relatively rare M16A3, with full auto capability." msgstr "" -"M16 to bardzo popularny karabin szturmowy wywodzący się z AR-15, używany " -"przez wojsko na całym świecie od ponad 50 lat. Jest to karabin o napędzie " -"gazowym i obrotowym ryglu, znany z celności i łatwego do opanowania odrzutu." -" Ten egzemplarz to stosunkowo rzadki M16A3, z możliwością strzelania " -"automatycznego." +"M16 to bardzo popularny karabinek automatyczny wywodzący się z AR-15, " +"używany przez wojsko na całym świecie od ponad 50 lat. Jest to karabinek " +"wykorzystujący energię gazów wylotowych z obrotowym ryglem, znany z celności" +" i łatwego do opanowania odrzutu. Ten egzemplarz to stosunkowo rzadki M16A3," +" z możliwością strzelania ciągłego." #: lang/json/gun_from_json.py msgid "" @@ -156089,7 +160232,7 @@ msgid "" "United States Special Operations Command. The 'L' in its name stands for " "light, as it uses the lightweight .223 round." msgstr "" -"Bardzo celny modularny karabin szturmowy opracowany dla amerykańskiego " +"Bardzo celny modularny karabinek automatyczny opracowany dla amerykańskiego " "dowództwa operacji specjalnych. Litera L oznacza lekki, ponieważ używa " "lekkiej amunicji .223." @@ -156099,9 +160242,8 @@ msgid "" "H&K416, selected for accuracy, and outfitted with a variable power scope and" " a QDSS suppressor." msgstr "" -"M38 Desygnowany Karabin Strzelca Wyborowego to M27 IAR, sam wywodzący się z " -"H&K416, dobrany pod względem celności i wyposażony w lunetę o zmiennej mocy " -"oraz tłumik QDSS." +"Karabin wyborowy M38 to M27 IAR, sam wywodzący się z HK416, dobrany pod " +"względem celności i wyposażony w lunetę o zmiennej mocy oraz tłumik QDSS." #: lang/json/gun_from_json.py msgid "" @@ -156123,17 +160265,17 @@ msgstr "automatyczny" msgid "base gun" msgid_plural "base guns" msgstr[0] "bazowa broń palna" -msgstr[1] "bazowa broń palna" -msgstr[2] "bazowa broń palna" -msgstr[3] "bazowa broń palna" +msgstr[1] "bazowe bronie palne" +msgstr[2] "bazowych broni palnych" +msgstr[3] "bazowej broni palnej" #: lang/json/gun_from_json.py msgid "base flamethrower" msgid_plural "base flamethrowers" msgstr[0] "bazowy miotacz ognia" -msgstr[1] "bazowy miotacz ognia" -msgstr[2] "bazowy miotacz ognia" -msgstr[3] "bazowy miotacz ognia" +msgstr[1] "bazowe miotacze ognia" +msgstr[2] "bazowych miotaczy ognia" +msgstr[3] "bazowego miotacza ognia" #: lang/json/gun_from_json.py lang/json/gunmod_from_json.py msgctxt "gun_type_type" @@ -156148,9 +160290,9 @@ msgstr "slosz." msgid "base launcher" msgid_plural "base launchers" msgstr[0] "bazowa wyrzutnia" -msgstr[1] "bazowa wyrzutnia" -msgstr[2] "bazowa wyrzutnia" -msgstr[3] "bazowa wyrzutnia" +msgstr[1] "bazowe wyrzutnie" +msgstr[2] "bazowych wyrzutni" +msgstr[3] "bazowej wyrzutni" #: lang/json/gun_from_json.py msgid "single" @@ -156160,9 +160302,9 @@ msgstr "pojedynczy" msgid "base pistol" msgid_plural "base pistols" msgstr[0] "bazowy pistolet" -msgstr[1] "bazowy pistolet" -msgstr[2] "bazowy pistolet" -msgstr[3] "bazowy pistolet" +msgstr[1] "bazowe pistolety" +msgstr[2] "bazowych pistoletów" +msgstr[3] "bazowego pistoletu" #: lang/json/gun_from_json.py lang/json/gunmod_from_json.py src/item.cpp msgctxt "gun_type_type" @@ -156172,18 +160314,18 @@ msgstr "pistolet" #: lang/json/gun_from_json.py msgid "classic pistol" msgid_plural "classic pistols" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "klasyczny pistolet" +msgstr[1] "klasyczne pistolety" +msgstr[2] "klasycznych pistoletów" +msgstr[3] "klasycznego pistoletu" #: lang/json/gun_from_json.py msgid "backup pistol" msgid_plural "backup pistols" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zapasowy pistolet" +msgstr[1] "zapasowe pistolety" +msgstr[2] "zapasowych pistoletów" +msgstr[3] "zapasowego pistoletu" #: lang/json/gun_from_json.py src/item_factory.cpp msgid "revolver" @@ -156196,50 +160338,50 @@ msgstr[3] "rewolweru" #: lang/json/gun_from_json.py msgid "cap & ball revolver" msgid_plural "cap & ball revolvers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kapiszonowy rewolwer" +msgstr[1] "kapiszonowe rewolwery" +msgstr[2] "kapiszonowych rewolwerów" +msgstr[3] "kapiszonowego rewolweru" #: lang/json/gun_from_json.py msgid "base rifle" msgid_plural "base rifles" msgstr[0] "bazowy karabin" -msgstr[1] "bazowy karabin" -msgstr[2] "bazowy karabin" -msgstr[3] "bazowy karabin" +msgstr[1] "bazowe karabiny" +msgstr[2] "bazowych karabinów" +msgstr[3] "bazowego karabinu" #: lang/json/gun_from_json.py msgid "rifle with manual actions" msgid_plural "rifles with manual actions" msgstr[0] "karabin z ręcznym przeładowaniem" -msgstr[1] "karabin z ręcznym przeładowaniem" -msgstr[2] "karabin z ręcznym przeładowaniem" -msgstr[3] "karabin z ręcznym przeładowaniem" +msgstr[1] "karabiny z ręcznym przeładowaniem" +msgstr[2] "karabinów z ręcznym przeładowaniem" +msgstr[3] "karabinu z ręcznym przeładowaniem" #: lang/json/gun_from_json.py msgid "semi-automatic rifle" msgid_plural "semi-automatic rifles" msgstr[0] "półautomatyczny karabin" -msgstr[1] "półautomatyczny karabin" -msgstr[2] "półautomatyczny karabin" -msgstr[3] "półautomatyczny karabin" +msgstr[1] "półautomatyczne karabiny" +msgstr[2] "półautomatycznych karabinów" +msgstr[3] "półautomatycznego karabinu" #: lang/json/gun_from_json.py msgid "fully automatic rifle" msgid_plural "fully automatic rifles" msgstr[0] "automatyczny karabin" -msgstr[1] "automatyczny karabin" -msgstr[2] "automatyczny karabin" -msgstr[3] "automatyczny karabin" +msgstr[1] "automatyczne karabiny" +msgstr[2] "automatycznych karabinów" +msgstr[3] "automatycznego karabinu" #: lang/json/gun_from_json.py msgid "base shotgun" msgid_plural "base shotguns" msgstr[0] "bazowa strzelba" -msgstr[1] "bazowa strzelba" -msgstr[2] "bazowa strzelba" -msgstr[3] "bazowa strzelba" +msgstr[1] "bazowe strzelby" +msgstr[2] "bazowych strzelb" +msgstr[3] "bazowej strzelby" #: lang/json/gun_from_json.py lang/json/gunmod_from_json.py msgctxt "gun_type_type" @@ -156261,18 +160403,18 @@ msgstr "czuk czuk." #: lang/json/gun_from_json.py msgid "base race shotgun, pump" msgid_plural "base race shotguns, pump" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "bazowa strzelba zawodowa, pump action" +msgstr[1] "bazowe strzelby zawodowe, pump action" +msgstr[2] "bazowych strzelb zawodowych, pump action" +msgstr[3] "bazowej strzelby zawodowej, pump action" #: lang/json/gun_from_json.py msgid "base SMG" msgid_plural "base SMGs" msgstr[0] "bazowy pistolet maszynowy" -msgstr[1] "bazowy pistolet maszynowy" -msgstr[2] "bazowy pistolet maszynowy" -msgstr[3] "bazowy pistolet maszynowy" +msgstr[1] "bazowe pistolety maszynowe" +msgstr[2] "bazowych pistoletów maszynowych" +msgstr[3] "bazowego pistoletu maszynowego" #: lang/json/gun_from_json.py lang/json/gunmod_from_json.py msgctxt "gun_type_type" @@ -156282,38 +160424,38 @@ msgstr "pm" #: lang/json/gun_from_json.py msgid "10mm/.40 revolver" msgid_plural "10mm/.40 revolvers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "rewolwer 10 mm / .40" +msgstr[1] "rewolwery 10 mm / .40" +msgstr[2] "rewolwerów 10 mm / .40" +msgstr[3] "rewolwera 10 mm / .40" #: lang/json/gun_from_json.py msgid "A classic six-shooter revolver chambered for 10mm and .40 rounds." -msgstr "" +msgstr "Klasyczny sześciostrzałowy rewolwer na naboje 10 mm i .40." #: lang/json/gun_from_json.py msgid "S&W 610" msgid_plural "S&W 610" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "S&W 610" +msgstr[1] "S&W 610" +msgstr[2] "S&W 610" +msgstr[3] "S&W 610" #: lang/json/gun_from_json.py msgid "" "The Smith and Wesson 610 is a classic six-shooter revolver chambered for " "10mm rounds, or for S&W's own .40 round." msgstr "" -"Smith and Wesson 610 to klasyczny sześciostrzałowy rewolwer kalibru 10mm, " -"lub własnej amunicji S&W kalibru .40." +"Smith & Wesson 610 to klasyczny sześciostrzałowy rewolwer kalibru 10 mm lub " +"własnej amunicji S&W kalibru .40." #: lang/json/gun_from_json.py msgid "compact Glock pistol" msgid_plural "compact Glock pistols" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kompaktowy pistolet Glock" +msgstr[1] "kompaktowe pistolety Glock" +msgstr[2] "kompaktowych pistoletów Glock" +msgstr[3] "kompaktowego pistoletu Glock" #: lang/json/gun_from_json.py msgid "" @@ -156326,10 +160468,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "Glock 29" msgid_plural "Glock 29s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Glock 29" +msgstr[1] "Glock 29" +msgstr[2] "Glock 29" +msgstr[3] "Glock 29" #: lang/json/gun_from_json.py msgid "" @@ -156344,10 +160486,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "Glock pistol" msgid_plural "Glock pistols" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pistolet Glock" +msgstr[1] "pistolety Glock" +msgstr[2] "pistoletów Glock" +msgstr[3] "pistoletu Glock" #: lang/json/gun_from_json.py msgid "" @@ -156360,10 +160502,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "Glock 20" msgid_plural "Glock 20s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Glock 20" +msgstr[1] "Glock 20" +msgstr[2] "Glock 20" +msgstr[3] "Glock 20" #: lang/json/gun_from_json.py msgid "" @@ -156378,10 +160520,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "Glock 40 MOS" msgid_plural "Glock 40 MOSs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Glock 40 MOS" +msgstr[1] "Glock 40 MOS" +msgstr[2] "Glock 40 MOS" +msgstr[3] "Glock 40 MOS" #: lang/json/gun_from_json.py msgid "" @@ -156395,15 +160537,15 @@ msgstr "" "kaliber 10 mm Auto. Wydłużona lufa pozwala na stosowanie jeszcze mocniejszej" " amunicji, a dłuższe suwadło sprawia, że celowniki są nieco łatwiejsze w " "obsłudze. Wyposażony jest również w modułowy system optyczny Glocka, co " -"znacznie ułatwia montaż optyki z rynku wtórnego." +"znacznie ułatwia montaż nieoryginalnej optyki." #: lang/json/gun_from_json.py msgid "BA10 rifle" msgid_plural "BA10 rifles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "karabin BA10" +msgstr[1] "karabiny BA10" +msgstr[2] "karabinów BA10" +msgstr[3] "karabinu BA10" #: lang/json/gun_from_json.py msgid "A semi-automatic rifle, chambered in 10mm, accepting BA10 magazines." @@ -156412,10 +160554,10 @@ msgstr "Karabin półautomatyczny, kaliber 10 mm, akceptujący magazynki BA10." #: lang/json/gun_from_json.py msgid "BA10" msgid_plural "BA10s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "BA10" +msgstr[1] "BA10" +msgstr[2] "BA10" +msgstr[3] "BA10" #: lang/json/gun_from_json.py msgid "" @@ -156434,10 +160576,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "Colt Delta Elite pistol" msgid_plural "Colt Delta Elite pistols" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pistolet Colt Delta Elite" +msgstr[1] "pistolety Colt Delta Elite" +msgstr[2] "pistoletów Colt Delta Elite" +msgstr[3] "pistoletu Colt Delta Elite" #: lang/json/gun_from_json.py msgid "" @@ -156450,10 +160592,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "Colt Delta Elite" msgid_plural "Colt Delta Elites" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Colt Delta Elite" +msgstr[1] "Colt Delta Elite" +msgstr[2] "Colt Delta Elite" +msgstr[3] "Colt Delta Elite" #: lang/json/gun_from_json.py msgid "" @@ -156468,10 +160610,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "EAA Witness pistol" msgid_plural "EAA Witness pistols" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pistolet EAA Witness" +msgstr[1] "pistolety EAA Witness" +msgstr[2] "pistoletów EAA Witness" +msgstr[3] "pistoletu EAA Witness" #: lang/json/gun_from_json.py msgid "" @@ -156483,10 +160625,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "EAA Witness 10mm" msgid_plural "EAA Witness 10mms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "EAA Witness 10 mm" +msgstr[1] "EAA Witness 10 mm" +msgstr[2] "EAA Witness 10 mm" +msgstr[3] "EAA Witness 10 mm" #: lang/json/gun_from_json.py msgid "" @@ -156501,25 +160643,23 @@ msgstr "" #: lang/json/gun_from_json.py msgid "SIG pistol" msgid_plural "SIG pistols" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pistolet SIG" +msgstr[1] "pistolety SIG" +msgstr[2] "pistoletów SIG" +msgstr[3] "pistoletu SIG" #: lang/json/gun_from_json.py msgid "" "A semi-automatic pistol chambered in 10mmm, and accepting SIG magazines." -msgstr "" -"Półautomatyczny pistolet komorowy w kalibrze 10 mm, akceptujący magazynki " -"SIG." +msgstr "Półautomatyczny pistolet w kalibrze 10 mm, akceptujący magazynki SIG." #: lang/json/gun_from_json.py msgid "SIG P220 10mm" msgid_plural "SIG P220 10mms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "SIG P220 10 mm" +msgstr[1] "SIG P220 10 mm" +msgstr[2] "SIG P220 10 mm" +msgstr[3] "SIG P220 10 mm" #: lang/json/gun_from_json.py msgid "" @@ -156536,10 +160676,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "XD-M pistol" msgid_plural "XD-M pistols" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pistolet XD-M" +msgstr[1] "pistolety XD-M" +msgstr[2] "pistoletów XD-M" +msgstr[3] "pistoletu XD-M" #: lang/json/gun_from_json.py msgid "" @@ -156549,10 +160689,10 @@ msgstr "Półautomatyczny pistolet kalibru 10 mm, akceptujący magazynki XD-M." #: lang/json/gun_from_json.py msgid "XD-M Competition 10mm" msgid_plural "XD-M Competition 10mms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "XD-M Competition 10 mm" +msgstr[1] "XD-M Competition 10 mm" +msgstr[2] "XD-M Competition 10 mm" +msgstr[3] "XD-M Competition 10 mm" #: lang/json/gun_from_json.py msgid "" @@ -156569,10 +160709,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "Glock SMG" msgid_plural "Glock SMGs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pistolet maszynowy Glock" +msgstr[1] "pistolety maszynowe Glock" +msgstr[2] "pistoletów maszynowych Glock" +msgstr[3] "pistoletu maszynowego Glock" #: lang/json/gun_from_json.py msgid "This is a submachine gun chambered in 10mm, accepting Glock magazines." @@ -156582,10 +160722,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "Vector SDP 10mm" msgid_plural "Vector SDP 10mms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Vector SDP 10 mm" +msgstr[1] "Vector SDP 10 mm" +msgstr[2] "Vector SDP 10 mm" +msgstr[3] "Vector SDP 10 mm" #: lang/json/gun_from_json.py msgid "" @@ -156593,17 +160733,17 @@ msgid "" "reciprocating bolt that helps combat muzzle climb. This one is chambered in" " 10mm Auto." msgstr "" -"Vector SDP to \"pistolet\" z opóźnionym odrzutem z unikalnym, powracającym w" -" dół ryglem, który pomaga zwalczać wznoszenie się lufy. Ten egzemplarz ma " +"Vector SDP to „pistolet” z opóźnionym odrzutem z unikalnym, powracającym w " +"dół ryglem, który pomaga zwalczać wznoszenie się lufy. Ten egzemplarz ma " "kaliber 10 mm Auto." #: lang/json/gun_from_json.py msgid "H&K G80 railgun" msgid_plural "H&K G80 railguns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "działo elektromagnetyczne H&K G80" +msgstr[1] "działa elektromagnetyczne H&K G80" +msgstr[2] "dział elektromagnetycznych H&K G80" +msgstr[3] "działa elektromagnetycznego H&K G80" #: lang/json/gun_from_json.py msgid "" @@ -156611,15 +160751,15 @@ msgid "" "ferromagnetic projectile using an alternating current. Powered by UPS." msgstr "" "Opracowane przez Heckler & Koch działo napędzające elektromagnetycznie " -"pociski używając prądu zmiennego. Zasilane z UPS'a." +"pociski używając prądu zmiennego. Zasilane z UPS-a." #: lang/json/gun_from_json.py msgid "RM120c shotgun" msgid_plural "RM120c shotguns" msgstr[0] "strzelba RM120c" -msgstr[1] "strzelba RM120c" -msgstr[2] "strzelba RM120c" -msgstr[3] "strzelba RM120c" +msgstr[1] "strzelby RM120c" +msgstr[2] "strzelb RM120c" +msgstr[3] "strzelby RM120c" #: lang/json/gun_from_json.py msgid "" @@ -156635,9 +160775,9 @@ msgstr "" msgid "RM20 autoshotgun" msgid_plural "RM20 autoshotguns" msgstr[0] "automatyczna strzelba RM20" -msgstr[1] "automatyczna strzelba RM20" -msgstr[2] "automatyczna strzelba RM20" -msgstr[3] "automatyczna strzelba RM20" +msgstr[1] "automatyczne strzelby RM20" +msgstr[2] "automatycznych strzelb RM20" +msgstr[3] "automatycznej strzelby RM20" #: lang/json/gun_from_json.py msgid "" @@ -156653,9 +160793,9 @@ msgstr "" msgid "RM228 PDW" msgid_plural "RM228 PDWs" msgstr[0] "broń obrony osobistej RM228" -msgstr[1] "broń obrony osobistej RM228" -msgstr[2] "broń obrony osobistej RM228" -msgstr[3] "broń obrony osobistej RM228" +msgstr[1] "bronie obrony osobistej RM228" +msgstr[2] "broni obrony osobistej RM228" +msgstr[3] "broni obrony osobistej RM228" #: lang/json/gun_from_json.py msgid "" @@ -156665,7 +160805,7 @@ msgid "" "and light weight, its hefty price tag kept it out of the reach of casual " "collectors." msgstr "" -"Strzelająca silnymi nabojami bezłuskowymi 20x66mm broń obrony osobistej " +"Strzelająca silnymi nabojami bezłuskowymi 20 x 66mm broń obrony osobistej " "Rivtech RM228 opracowana dla cywilnego rynku obronnego z myślą o " "wytrzymałości i łatwości użycia. Choć gloryfikowana za małe rozmiary i lekką" " wagę, jej pokaźna cena stawiała ją poza zasięgiem przeciętnych " @@ -156685,10 +160825,10 @@ msgid "" "LR, unusual for an SMG. Though the round is low-powered, the high rate of " "fire and large magazine makes the 180 a formidable weapon." msgstr "" -"American-180 to pistolet maszynowy opracowany w latach 60-tych XX-wieku " -"strzelający nabojami .22 LR, nietypowymi dla PMów. Choć to pocisk małej " +"American-180 to pistolet maszynowy opracowany w latach 60. XX wieku " +"strzelający nabojami .22 LR, nietypowymi dla peemów. Choć to pocisk małej " "mocy, to broń nadrabia szybkostrzelnością, która przy dużym magazynku czyni " -"180-tkę zabójczą bronią." +"180. zabójczą bronią." #: lang/json/gun_from_json.py msgid "Marlin 39A" @@ -156705,7 +160845,7 @@ msgid "" "essentially no recoil." msgstr "" "Najstarsza i najdłużej produkowana naramienna broń palna na świecie. Choć " -"strzela słabym nabojem .22, to jest bardzo celna i raniąca, i niemal nie ma " +"strzela słabym nabojem .22, to jest bardzo celna i raniąca i niemal nie ma " "odrzutu." #: lang/json/gun_from_json.py @@ -156723,16 +160863,16 @@ msgid "" "accept .22 Short and .22 LR cartridges." msgstr "" "Pierwsza broń produkowana przez O.F. Mossberg & Sons. To mały kieszonkowy " -"pistolet, sprzedawany traperom w początkach 20-go wieku. Jego cztery lufy " +"pistolet, sprzedawany traperom w początkach XX wieku. Jego cztery lufy " "mieszczą naboje .22 Short i .22 LR." #: lang/json/gun_from_json.py msgid "pipe rifle: .22" msgid_plural "pipe rifles: .22" msgstr[0] "karabin rurowy: .22" -msgstr[1] "karabin rurowy: .22" -msgstr[2] "karabin rurowy: .22" -msgstr[3] "karabin rurowy: .22" +msgstr[1] "karabiny rurowe .22" +msgstr[2] "karabinów rurowych .22" +msgstr[3] "karabinu rurowego .22" #: lang/json/gun_from_json.py msgid "" @@ -156803,10 +160943,10 @@ msgstr "Popularny pistolet na amunicję kalibru .22." #: lang/json/gun_from_json.py msgid "Jennings J-22" msgid_plural "Jennings J-22s" -msgstr[0] "Jennings J-22s" -msgstr[1] "Jenningsy J-22s" -msgstr[2] "Jenningsów J-22s" -msgstr[3] "Jenningsów J-22s" +msgstr[0] "Jennings J-22" +msgstr[1] "Jennings J-22" +msgstr[2] "Jennings J-22" +msgstr[3] "Jennings J-22" #: lang/json/gun_from_json.py msgid "" @@ -156825,10 +160965,10 @@ msgstr "" #: lang/json/gun_from_json.py msgid "Walther P22" msgid_plural "Walther P22s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Walther P22" +msgstr[1] "Walther P22" +msgstr[2] "Walther P22" +msgstr[3] "Walther P22" #: lang/json/gun_from_json.py msgid "" @@ -156911,12 +161051,12 @@ msgid "" " rifle is well sealed from mud and dust for reliability, but this makes it " "incompatible with many aftermarket magazines." msgstr "" -"Elegancki karabinek typu bullpup zaprojektowany przez FN Herstal, wyposażony" -" w zintegrowaną szynę na akcesoria celownicze. System wyrzutu łusek do " -"przodu oraz oburęczne regulatory pozwalają na wygodne strzelanie zarówno " -"osobom prawo jak i leworęcznym. Cały karabinek jest dobrze uszczelniony " -"przed błotem i kurzem dla zapewnienia niezawodności, ale to sprawia, że nie " -"jest kompatybilny z wieloma dostępnymi na rynku wtórnym magazynkami." +"Elegancki bezkolbowy karabinek zaprojektowany przez FN Herstal, wyposażony w" +" zintegrowaną szynę na akcesoria celownicze. System wyrzutu łusek do przodu " +"oraz oburęczne regulatory pozwalają na wygodne strzelanie zarówno osobom " +"prawo jak i leworęcznym. Cały karabinek jest dobrze uszczelniony przed " +"błotem i kurzem dla zapewnienia niezawodności, ale to sprawia, że nie jest " +"kompatybilny z wieloma dostępnymi nieorginalnymi magazynkami." #: lang/json/gun_from_json.py msgid "M27 assault rifle" @@ -157018,7 +161158,7 @@ msgstr "" #: lang/json/gun_from_json.py msgid "burst" -msgstr "" +msgstr "seria" #: lang/json/gun_from_json.py msgid "M249S" @@ -157168,6 +161308,11 @@ msgid "" "screw into an armored vehicle's firing ports. It is chambered in 5.56x45mm " "and accepts STANAG magazines." msgstr "" +"Karabin M16 do strzelania z portu strzelniczego to karabin M16 zmodyfikowany" +" do strzelania z otwartym zamkiem z niedorzeczną prędkością, bez celowników." +" Posiada gwintowaną osłonę do wkręcenia w gniazda strzelnicze pojazdów " +"opancerzonych. Posiada komorę na nabój 5.56x45 mm i jest przystosowany do " +"magazynków STANAG." #: lang/json/gun_from_json.py msgid "M231 port firing weapon" @@ -157187,6 +161332,13 @@ msgid "" "firing port if you were so inclined. The fire selector says only 'SAFE' and" " 'AUTO'. You can't help but wonder which one is preferable." msgstr "" +"M231 PFW jest adaptacją karabinu szturmowego M16, zaprojektowaną do użycia w" +" otworach strzelniczych bojowego wozu piechoty M2 Bradley. Nie posiada on " +"kolby ani przedniego słupka celowniczego, a gładka przednia osłona dłoni nie" +" chroni cię przed potencjalnie gorącym kołnierzem lufy, co czyni go nieco " +"mniej ergonomicznym. Gdybyś miał ochotę, mógłbyś ją wkręcić w gniazdo " +"strzelnicze. Na selektorze ognia są tylko napisy \" BEZPIECZNY\" i \"AUTO\"." +" Nie sposób nie zastanawiać się, która z nich jest lepsza." #: lang/json/gun_from_json.py msgid "OA-93" @@ -157830,20 +161982,20 @@ msgstr "" "ta broń może ci się przydać mimo tego." #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" +msgstr[0] "Kel-Tec P-32" +msgstr[1] "Kel-Tec P-32" +msgstr[2] "Kel-Tec P-32" +msgstr[3] "Kel-Tec P-32" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" -"Jeden z najstarszych projektów Kel-tec'a, P32 jest popularną opcją do " +"Jeden z najstarszych projektów Kel-Tec, P-32 jest popularną opcją do " "skrytego noszenia i użycia jako broń zapasowa. Pomimo ekstremalnie niskiej " "wagi i niewielkich rozmiarów, jego komora .32 ACP zapewnia dobrą obsługę i " "kontrolę odrzutu." @@ -158032,24 +162184,24 @@ msgstr "" "naboi na minutę." #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" +msgstr[0] "Kel-Tec P-3AT" +msgstr[1] "Kel-Tec P-3AT" +msgstr[2] "Kel-Tec P-3AT" +msgstr[3] "Kel-Tec P-3AT" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" -"Zasadniczo nieco przeskalowany Kel-tec P32 w kalibrze .380 ACP, popularny " -"P3AT oferuje lepszą balistykę w małym, łatwym do ukrycia, lekkim opakowaniu." -" Obsługa pozostawia nieco do życzenia z powodu mocniejszego odrzutu i " -"mniejszych przyrządów sterujących." +"Zasadniczo nieco przeskalowany Kel-Tec P-32 w kalibrze .380 ACP, popularny " +"P-3AT oferuje lepszą balistykę w małym, łatwym do ukrycia, lekkim " +"opakowaniu. Obsługa pozostawia nieco do życzenia z powodu mocniejszego " +"odrzutu i mniejszych przyrządów sterujących." #: lang/json/gun_from_json.py msgid "FN 1910 .380" @@ -158126,6 +162278,8 @@ msgid "" "A .380 subcompact pistol. Designed for concealed carry and built from high-" "quality, durable materials." msgstr "" +"Subkompaktowy pistolet kalibru .380. Zaprojektowany do noszenia w ukryciu i " +"zbudowany z wysokiej jakości wytrzymałych materiałów." #: lang/json/gun_from_json.py msgid "AF2011A1 .38 Super" @@ -158140,6 +162294,8 @@ msgid "" "A double-barrel semi-automatic pistol of Italian origin, firing two bullets " "per shot, a derivative of the M1911 pistol." msgstr "" +"Dwulufowy półautomatyczny pistolet włoskiego pochodzenia, wystrzeliwujący " +"dwa pociski na strzał, pochodna pistoletu M1911." #: lang/json/gun_from_json.py msgid "double" @@ -158158,6 +162314,8 @@ msgid "" "The M1911A1 is an extremely popular pistol known for its reliability. This " "one is chambered for .38 Super." msgstr "" +"M1911A1 jest niezwykle popularnym pistoletem znanym z niezawodności. Ten " +"egzemplarz posiada komorę na nabój .38 Super." #: lang/json/gun_from_json.py msgid "Beretta 90-two .40 S&W" @@ -158174,6 +162332,11 @@ msgid "" "futuristic-looking design owed in large parts to the polymer underbarrel " "rail cover. This one is chambered in .40 S&W." msgstr "" +"Bardziej nowoczesna wersja popularnej serii pistoletów Beretta, " +"dziewięćdziesiątka dwójka działa w zasadzie tak samo. Główną różnicą jest " +"bardziej elegancki, niemal futurystyczny wygląd zawdzięczany w dużej mierze " +"polimerowej osłonie szyny pod lufą. Ten egzemplarz jest wyposażony w komorę " +".40 S&W." #: lang/json/gun_from_json.py msgid "Glock 22" @@ -158206,6 +162369,10 @@ msgid "" "utilizing light-weight polymer construction with steel inserts. Its shape " "was also optimized for concealed carry. This one is chambered in .40 S&W." msgstr "" +"Lżejszy od kultowej serii pistoletów Beretta 92, Px4 Storm został zbudowany " +"przy użyciu lekkiej konstrukcji polimerowej z wkładkami stalowymi. Jego " +"kształt został również zoptymalizowany do noszenia w ukryciu. Ten egzemplarz" +" ma komorę w kalibrze .40 S&W." #: lang/json/gun_from_json.py msgid "pipe rifle: .40 S&W" @@ -158247,6 +162414,12 @@ msgid "" "shop, but still very unreliable. This one is chambered for .40 S&W " "cartridges and accepts custom-made makeshift magazines." msgstr "" +"Prowizoryczny gładkolufowy peem wzoru Luty, prymitywnie skonstruowany z " +"różnych części stalowych przy użyciu niektórych z bardziej zaawansowanych " +"narzędzi ręcznych; prawdopodobnie jedna z najbardziej skomplikowanych broni," +" które są możliwe do wykonania poza warsztatem, ale wciąż bardzo zawodna. " +"Ten egzemplarz jest przystosowany do nabojów .40 S&W i akceptuje " +"prowizoryczne, ręcznie robione magazynki." #: lang/json/gun_from_json.py msgid "handmade six-shooter" @@ -158280,6 +162453,10 @@ msgid "" " Canada and Australia. This is a commercial variant produced by Browning " "Arms in .40 S&W." msgstr "" +"Browning Hi-Power to półautomatyczny pistolet opracowany na krótko przed " +"drugą wojną światową. Od tamtej pory jest szeroko rozpowszechniony, nadal " +"używany przez Indie, Kanadę i Australię. Jest to komercyjny wariant " +"produkowany przez Browning Arms w kalibrze .40 S&W." #: lang/json/gun_from_json.py msgid "Walther PPQ .40 S&W" @@ -158295,6 +162472,9 @@ msgid "" "P99QA, and maintains compatibility with some of its predecessor's " "accessories. This model is chambered in .40 S&W." msgstr "" +"Walther PPQ to półautomatyczny pistolet wywodzący się z modelu Walther " +"P99QA, zachowujący kompatybilność z niektórymi akcesoriami swojego " +"poprzednika. Model ten posiada komorę w kalibrze .40 S&W." #: lang/json/gun_from_json.py msgid "Hi-Point Model JCP" @@ -158312,6 +162492,11 @@ msgid "" "made with a zinc pot-metal which is relatively fragile compared to steel " "slides." msgstr "" +"Hi-Point Model JCP jest półautomatycznym pistoletem z mechanizmem odrzutu " +"zamka swobodnego, zaprojektowanym przez firmę Hi-Point Firearms, która znana" +" jest z produkcji niedrogiej broni palnej oraz z tego, że jest ona " +"nieporęczna i niewygodna. Hi-Pointy mają suwadła wykonane z cynku, który " +"jest stosunkowo kruchy w porównaniu z suwadłami stalowymi." #: lang/json/gun_from_json.py msgid "tube 40mm launcher" @@ -158343,6 +162528,9 @@ msgid "" "launchers in a very small package at the cost of decreased accuracy. This " "one is combined with a buttstock for standalone operation." msgstr "" +"Granatnik Heckler & Koch M320 oferuje funkcjonalność większych granatników w" +" bardzo małej postaci, kosztem zmniejszonej celności. Ten posiada kolbę dla " +"samodzielnego użycia." #: lang/json/gun_from_json.py msgid "M79 launcher" @@ -158358,6 +162546,9 @@ msgid "" "Vietnam War. Though mostly replaced by more modern launchers, the M79 still" " sees use with many units worldwide." msgstr "" +"Powszechnie używany granatnik po raz pierwszy użyty przez amerykanów w " +"wojnie wietnamskiej. Choć zasadniczo wyparty przez współczesne konstrukcje, " +"granatnik M79 nadal jest używany w wielu jednostkach wojskowych na świecie." #: lang/json/gun_from_json.py msgid "Milkor MGL" @@ -158431,6 +162622,7 @@ msgstr[3] "" msgid "" "An array of six M203 grenade launchers for use on the TALON UGV platform." msgstr "" +"Zestaw sześciu granatników M203 do użytku na platformie samojezdnej TALON." #: lang/json/gun_from_json.py msgid "Mark 19 grenade launcher" @@ -158446,6 +162638,9 @@ msgid "" "since the start of the Cold War all the way to the cataclysm, and if you can" " find some 40mm grenades, maybe even beyond." msgstr "" +"Ciężki granatnik na trójnogu zasilany taśmą amunicyjną, używany przez wojska" +" amerykańskie od początku zimnej wojny, aż do kataklizmu, a jak znajdziesz " +"trochę 40mm granatów to nawet i dłużej." #: lang/json/gun_from_json.py msgid "Saiga-410" @@ -158461,6 +162656,9 @@ msgid "" "pattern as the AK47 rifle. It reloads with a magazine, rather than one " "shell at a time like most shotguns." msgstr "" +"Saiga-410 to półautomatyczna strzelba oparta na tym samym wzorze co " +"Kałasznikow. Posiada magazynek, w przeciwieństwie do innych strzelb " +"przeładowywanych nabój po naboju." #: lang/json/gun_from_json.py msgid "Winchester M37 .410" @@ -158476,6 +162674,9 @@ msgid "" "lower-recoil alternative to 12 gauge shotguns, it is light and easy to " "manufacture." msgstr "" +"Jednostrzałowa strzelba łamana, z komorą w kalibrze .410. Zaprojektowana " +"jako alternatywa o mniejszym odrzucie dla strzelb kalibru 12, jest lekka i " +"łatwa w produkcji." #: lang/json/gun_from_json.py msgid "Desert Eagle .44" @@ -158593,11 +162794,18 @@ msgid "" " is offered in more prevalent .44 caliber. Despite modern quality " "materials, the design is still rather delicate." msgstr "" +"Reprodukcja Pietta rewolweru LeMat z czasów wojny secesyjnej, rzadkiego i " +"niezwykłego rewolweru kapiszonowo-kulowego kalibru .44. Podczas gdy jego " +"oryginalny niestandardowy kaliber .42 lub .35 ograniczał jego przydatność " +"dla armii konfederatów, ta reprodukcja jest oferowana w bardziej powszechnym" +" kalibrze .44. Mimo nowoczesnej jakości materiałów, konstrukcja jest nadal " +"dość delikatna." #: lang/json/gun_from_json.py msgid "" "This is a submachine gun chambered in .45 ACP, accepting Glock magazines." msgstr "" +"Jest to pistolet maszynowy w kalibrze .45 ACP, akceptujący magazynki Glocka." #: lang/json/gun_from_json.py msgid "Vector SMG .45" @@ -158614,6 +162822,10 @@ msgid "" "bore axis, reducing muzzle climb during bursts. This one is chambered in " ".45 ACP." msgstr "" +"Pistolet maszynowy Vector z opóźnionym odrzutem ma unikalną, rzędową " +"konstrukcję, która umieszcza dłoń i ramię strzelca w jednej linii z osią " +"otworu, redukując wznoszenie się lufy podczas serii. Ten egzemplarz jest " +"wyposażony w komorę kalibru .45 ACP." #: lang/json/gun_from_json.py msgid "UMP45 SMG" @@ -158628,6 +162840,8 @@ msgid "" "This is a submachine gun, chambered in .45 ACP, and accepting UMP45 " "magazines." msgstr "" +"Jest to pistolet maszynowy, z komorą kalibru .45 ACP, akceptujący magazynki " +"UMP45." #: lang/json/gun_from_json.py msgid "H&K UMP45" @@ -158659,6 +162873,7 @@ msgid "" "This is a semi-automatic pistol, chambered in .45 ACP and accepting M1991 " "magazines." msgstr "" +"Jest to pistolet półautomatyczny, z komorą .45 ACP i magazynkami M1991." #: lang/json/gun_from_json.py msgid "M1911" @@ -158694,6 +162909,13 @@ msgid "" "recoil springs. Most were replaced in 2016 with Glock 19's due to logistics" " issues." msgstr "" +"M45A1 zastąpił wcześniejsze pistolety M45 MEUSOC używane przez oddziały " +"rozpoznania bojowego jednostek ekspedycyjnych piechoty morskiej. Podczas gdy" +" oryginalne pistolety M45 były wypatroszonymi M1911A1 ręcznie montowanymi " +"przez zbrojmistrzów USMC, unowocześnione M45A1 prawie nie różnią się od " +"żadnej innej komercyjnej konstrukcji 1911, z wyjątkiem podwójnych sprężyn " +"odrzutu. Większość z nich została zastąpiona w 2016 roku Glockami 19 z " +"powodu problemów logistycznych." #: lang/json/gun_from_json.py msgid "MAC-10 SMG" @@ -158708,6 +162930,8 @@ msgid "" "This is a submachine gun chambered in .45 ACP, and accepting MAC-10 " "magazines." msgstr "" +"Jest to pistolet maszynowy, z komorą kalibru .45 ACP, akceptujący magazynki " +"MAC-10." #: lang/json/gun_from_json.py msgid "MAC-10" @@ -158753,6 +162977,12 @@ msgid "" "shop, but still very unreliable. This one is chambered for .45 ACP " "cartridges and accepts MAC-10 compatible magazines." msgstr "" +"Prowizoryczny gładkolufowy peem wzoru Luty, prymitywnie skonstruowany z " +"różnych części stalowych przy użyciu niektórych z bardziej zaawansowanych " +"narzędzi ręcznych; prawdopodobnie jedna z najbardziej skomplikowanych broni," +" które są możliwe do wykonania poza warsztatem, ale wciąż bardzo zawodna. " +"Ten model posiada komorę na naboje .45 ACP i akceptuje magazynki " +"kompatybilne z MAC-10." #: lang/json/gun_from_json.py msgid "homemade hand cannon" @@ -158784,6 +163014,8 @@ msgid "" "This is a submachine gun chambered in .45 ACP, and accepting Thompson " "magazines." msgstr "" +"Jest to pistolet maszynowy w kalibrze .45 ACP, akceptujący magazynki " +"Thompson." #: lang/json/gun_from_json.py msgid "Thompson M1928A1" @@ -158818,6 +163050,8 @@ msgstr[3] "" msgid "" "A semi-automatic pistol chambered in .45 ACP, and accepting USP magazines." msgstr "" +"Półautomatyczny pistolet z komorą w kalibrze .45 ACP, akceptujący magazynki " +"USP." #: lang/json/gun_from_json.py msgid "USP .45" @@ -158855,6 +163089,14 @@ msgid "" "remarkably reliable gun; someone could probably take out a nuclear equipped " "walking tank with this in their holster." msgstr "" +"Żartobliwie nazywany \"Jedynym na świecie pistoletem obsługiwanym przez " +"załogę\", ten masywny pistolet został zaprojektowany jako podstawowa broń " +"dla wybranych \"operatorów specjalnych\". Jego uciążliwa natura, " +"wprowadzenie pochodnej serii HK USP i logistyka zaopatrzenia wojsk lądowych " +"w amunicję .45 ACP skazały tego behemota na zagładę w amerykańskich " +"zbrojowniach SOCOM. Podobnie jak USP, Mk 23 jest niezwykle niezawodnym " +"pistoletem; ktoś mógłby prawdopodobnie zdjąć czołg kroczący wyposażony w " +"broń jądrową, mając go w kaburze." #: lang/json/gun_from_json.py msgid "PPQ pistol" @@ -158868,7 +163110,7 @@ msgstr[3] "" msgid "" "This is a semi-automatic pistol chambered in .45 ACP, and accepting PPQ " "magazines" -msgstr "" +msgstr "Jest to pistolet półautomatyczny, z komorą .45 ACP i magazynkami PPQ." #: lang/json/gun_from_json.py msgid "Walther PPQ 45" @@ -158884,6 +163126,9 @@ msgid "" "P99QA, and maintains compatibility with some of its predecessor's " "accessories. This model is chambered in .45 ACP." msgstr "" +"Walther PPQ to półautomatyczny pistolet wywodzący się z modelu Walther " +"P99QA, zachowujący kompatybilność z niektórymi akcesoriami swojego " +"poprzednika. Model ten posiada komorę w kalibrze .45 ACP." #: lang/json/gun_from_json.py msgid "Hi-Point pistol" @@ -158898,6 +163143,7 @@ msgid "" "This is a semi-automatic pistol chambered in .45 ACP, and accepting Hi-Point" " magazines." msgstr "" +"Jest to pistolet półautomatyczny, z komorą .45 ACP i magazynkami Hi-Point." #: lang/json/gun_from_json.py msgid "Hi-Point Model JHP" @@ -158915,12 +163161,18 @@ msgid "" "made with a zinc pot-metal which is relatively fragile compared to steel " "slides." msgstr "" +"Hi-Point Model JHP jest półautomatycznym pistoletem z mechanizmem odrzutu " +"zamka swobodnego, zaprojektowanym przez firmę Hi-Point Firearms, która znana" +" jest z produkcji niedrogiej broni palnej oraz z tego, że jest ona " +"nieporęczna i niewygodna. Hi-Pointy mają suwadła wykonane z cynku, który " +"jest stosunkowo kruchy w porównaniu z suwadłami stalowymi." #: lang/json/gun_from_json.py msgid "" "This is a semi-automatic pistol chambered in .45 ACP, and accepting Glock " "magazines." msgstr "" +"Jest to pistolet półautomatyczny, z komorą .45 ACP i magazynkami Glock." #: lang/json/gun_from_json.py msgid "Glock 21" @@ -158935,6 +163187,8 @@ msgid "" "A full-sized version of the highly successful Glock. This model is " "chambered in .45 ACP." msgstr "" +"Pełnowymiarowa wersja bardzo udanego Glocka. Model ten posiada komorę w " +"kalibrze .45 ACP." #: lang/json/gun_from_json.py msgid "Taurus Raging Bull" @@ -158965,6 +163219,8 @@ msgid "" "The Taurus Raging Judge Magnum is a 6-shot revolver chambered in .454 " "Casull. It can fire .410 shotshells and .45 Colt cartridges as well." msgstr "" +"Taurus Raging Judge Magnum to 6-strzałowy rewolwer w kalibrze .454 Casull. " +"Można z niego strzelać również nabojami śrutowymi .410 i .45 Colt." #: lang/json/gun_from_json.py msgid "Marlin 1895 SBL" @@ -158980,6 +163236,9 @@ msgid "" "Designed for wilderness guides for defense against large predators such as " "grizzly bears, moose, and dinosaurs." msgstr "" +"Poręczny, ale potężny karabinek o działaniu dźwigniowym w kalibrze .45-70 " +"Government. Zaprojektowany dla przewodników po bezdrożach do obrony przed " +"dużymi drapieżnikami, takimi jak niedźwiedzie grizzly, łosie i dinozaury." #: lang/json/gun_from_json.py msgid "Magnum Research BFR" @@ -158995,6 +163254,9 @@ msgid "" "significant velocity in its short pistol barrel, it still competes with " "other large magnum handguns in terms of power." msgstr "" +"Masywny rewolwer pojedynczego naciągu. Chociaż nabój karabinowy .45-70 " +"znacznie traci prędkość w krótkiej lufie pistoletowej, to jednak pod " +"względem mocy nadal konkuruje z innymi dużymi rewolwerami magnum." #: lang/json/gun_from_json.py msgid "1874 Sharps" @@ -159011,6 +163273,10 @@ msgid "" "powerful for the time, this one is made to handle modern smokeless " "ammunition." msgstr "" +"Reprodukcja zabytkowej jednostrzałowej strzelby .45-70 używanej niegdyś do " +"polowań na bizony i inną grubą zwierzynę pod koniec XIX wieku. Bardzo celny " +"i potężny jak na tamte czasy, ten jest przystosowany do obsługi nowoczesnej " +"amunicji bezdymnej." #: lang/json/gun_from_json.py msgid "Bond Arms Derringer" @@ -159026,6 +163292,9 @@ msgid "" "commonly chambered for .45 Colt, with chambers long enough to accept .410 " "shotgun shells." msgstr "" +"Bond Arms Derringer to seria wielolufowych kompaktowych pistoletów. " +"Najczęściej używają naboi kalibru .45 Colt, z komorą na tyle długą by " +"zmieścić nabój do strzelb kalibru .410." #: lang/json/gun_from_json.py msgid "Colt Lightning .45 Carbine" @@ -159041,10 +163310,13 @@ msgid "" ".44-40, modern versions most commonly use .45 Colt, complementing the Single" " Action Army as a Cowboy Action Shooting firearm." msgstr "" +"Współczesna reprodukcja karabinu Colta typu pompka. Pierwotnie miał komorę " +".44-40, współczesne wersje najczęściej używają .45 Colt, uzupełniając Single" +" Action Army jako broń do strzelania kowbojskiego." #: lang/json/gun_from_json.py msgid "chik chik." -msgstr "" +msgstr "czik czik." #: lang/json/gun_from_json.py msgid "Uberti Cattleman" @@ -159063,6 +163335,13 @@ msgid "" "collectors. Unlike modern revolvers, the cylinder cannot swing out for " "loading, and spent brass must be ejected one at a time." msgstr "" +"Ten 7,5-calowy rewolwer Uberti Cattleman jest nowoczesną reprodukcją " +"legendarnego Colta Single Action Army, czyli Colta Peacemakera, jednego z " +"pierwszych rewolwerów, w których zastosowano nowoczesny nabój zabudowany. " +"Rozsławiony przez westerny, jest nadal poszukiwany przez Strzelców " +"Kowbojskich, rekonstruktorów i kolekcjonerów. W przeciwieństwie do " +"współczesnych rewolwerów, cylinder nie może się wychylać w celu załadowania," +" a zużyte naboje muszą być wyrzucane pojedynczo." #: lang/json/gun_from_json.py msgid "H&K MP7A2" @@ -159078,6 +163357,8 @@ msgid "" "4.6x30mm round while being lightweight, compact in size, and practically " "recoil free." msgstr "" +"Opracowany jako broń obrony osobistej, MP7 strzela silną amunicją 4.6x30mm, " +"i jest lekki, kompaktowy i praktycznie bezodrzutowy." #: lang/json/gun_from_json.py msgid "1911-460" @@ -159094,6 +163375,10 @@ msgid "" "reducing slide velocity. Notably, normal .45ACP can also be fired through " "the weapon." msgstr "" +"Ten model 1911 został przystosowany do strzelania potężną amunicją .460 " +"Rowland. Posiada on teraz duży, zintegrowany kompensator, który pomaga w " +"okiełznaniu odrzutu i zmniejszeniu prędkości suwadła. Warto zauważyć, że z " +"tej broni można również strzelać normalną amunicją .45 ACP." #: lang/json/gun_from_json.py msgid "Barrett M107A1" @@ -159125,6 +163410,10 @@ msgid "" "Cataclysm, and even rarely by Cataclysm survivors. Its massive size and " "design make it impossible to use unless deployed or mounted to a vehicle." msgstr "" +"Ciężki karabin maszynowy używany przez wojsko Stanów Zjednoczonych od " +"wprowadzenia do Kataklizmu, a niekiedy przez ocalonych. Jego masywny rozmiar" +" i budowa czyni go niemożliwym do stosowania w sposób inny niż przez " +"zamontowanie w pojeździe." #: lang/json/gun_from_json.py msgid ".50 caliber rifle" @@ -159163,6 +163452,9 @@ msgid "" "accuracy for long range target and high fire rate, this weapon is still " "being used by Greek national guard." msgstr "" +"Karabin przeciwsprzętowy kalibru .50 wyprodukowany przez Accuracy " +"International. Dzięki wysokiej celności do celów dalekiego zasięgu i dużej " +"szybkostrzelności, broń ta jest nadal używana przez grecką gwardię narodową." #: lang/json/gun_from_json.py msgid "McMillan TAC-50" @@ -159181,6 +163473,12 @@ msgid "" "extreme distances. It notably holds the longest range confirmed sniper " "kill, as well as the 4th and 5th longest." msgstr "" +"Snajperski karabin przeciwsprzętowy i przeciwpiechotny dalekiego zasięgu " +"produkcji McMillan Firearms, służący od 2000 roku armii kanadyjskiej jako " +"C15 oraz Navy Seals jako Mk 15 Mod 0. Ten karabin powtarzalny kalibru .50 " +"jest w stanie zwalczać lekkie pojazdy, instalacje radarowe i broń " +"obsługiwaną przez załogę na ekstremalnych odległościach. Posiada najdłuższy " +"potwierdzony zasięg zabicia snajperskiego, a także 4 i 5 najdłuższy." #: lang/json/gun_from_json.py msgid "Serbu BFG-50" @@ -159195,6 +163493,8 @@ msgid "" "A single-shot, bolt-action rifle made by Serbu Firearms, the BFG-50 is a " "very affordable firearm for those wishing to shoot .50 BMG." msgstr "" +"Jednostrzałowy karabin powtarzalny firmy Serbu Firearms, BFG-50 jest bardzo " +"przystępną cenowo bronią dla tych, którzy chcą strzelać z kalibru .50 BMG." #: lang/json/gun_from_json.py msgid "Big Horn Model 89" @@ -159247,20 +163547,20 @@ msgstr "" "szybką amunicją 5.45x39mm." #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" -msgstr[0] "FN Pięć-Siedem" -msgstr[1] "FN Pięć-Siedem" -msgstr[2] "FN Pięć-Siedem" -msgstr[3] "FN Pięć-Siedem" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" +msgstr[0] "FN Five-seveN" +msgstr[1] "FN Five-seveN" +msgstr[2] "FN Five-seveN" +msgstr[3] "FN Five-seveN" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" -"Opracowany do własnej amunicji FN kalibru 5.7x28mm, Pięć Siedem to lekki " +"Opracowany do własnej amunicji FN kalibru 5,7 x 28 mm, Five-seveN to lekki " "pistolet z bardzo dużą pojemnością, doskonały przeciw opancerzonym wrogom." #: lang/json/gun_from_json.py @@ -159345,14 +163645,17 @@ msgid "" "flamethrowers still in use in Vietnam. It has four barrels sharing the 66mm" " caliber of the M72 LAW." msgstr "" +"Amerykańska wyrzutnia rakiet zaprojektowana w latach 70-tych XX wieku, aby " +"zastąpić miotacze ognia z czasów II wojny światowej, wciąż używane w " +"Wietnamie. Posiada cztery lufy o wspólnym kalibrze 66 mm z M72 LAW." #: lang/json/gun_from_json.py msgid "single shot" -msgstr "" +msgstr "pojedynczy strzał" #: lang/json/gun_from_json.py msgid "all barrels" -msgstr "" +msgstr "wszystkie lufy" #: lang/json/gun_from_json.py msgid "Elephant gun" @@ -159441,6 +163744,10 @@ msgid "" "function, their solid firepower and reliability in harsh conditions make " "them valuable weapons in this new world." msgstr "" +"Legalne cywilne klony kultowego Kałasznikowa, takie jak ten, były " +"produkowane i importowane przez wiele różnych firm. Nawet bez funkcji " +"strzelania serią, ich solidna siła ognia i niezawodność w trudnych warunkach" +" czynią je wartościową bronią w nowym świecie." #: lang/json/gun_from_json.py msgid "Mini Draco" @@ -159456,6 +163763,9 @@ msgid "" "\"pistol\" has seen some popularity with civilian shooters and gangbangers " "alike." msgstr "" +"Ten nieporęczny \"pistolet\", będący w zasadzie półautomatycznym AK z krótką" +" lufą i bez kolby, zyskał popularność zarówno wśród cywilnych strzelców, jak" +" i gangsterów." #: lang/json/gun_from_json.py msgid "Mosin-Nagant M44" @@ -159594,6 +163904,9 @@ msgid "" "reusable, multi-role recoilless rifle. This is a lighter, shorter, and more" " advanced development of the M3." msgstr "" +"Carl Gustav M3E1 to 84-milimetrowa, przenośna, wielokrotnego użytku, " +"wielozadaniowa wyrzutnia bezodrzutowa. Jest to lżejsze, krótsze i bardziej " +"zaawansowane rozwinięcie M3." #: lang/json/gun_from_json.py msgid "AT4" @@ -159608,6 +163921,9 @@ msgid "" "Mil-Spec rocket launcher. An 84-mm unguided, portable, single-shot " "recoilless smoothbore weapon used primarily by the US military." msgstr "" +"Wyrzutnia rakiet klasy wojskowej. 84-mm niekierowana, przenośna, " +"jednostrzałowa, bezodrzutowa broń gładkolufowa używana głównie przez wojsko " +"amerykańskie." #: lang/json/gun_from_json.py msgid "RM103A automagnum" @@ -159766,6 +164082,10 @@ msgid "" "futuristic-looking design owed in large parts to the polymer underbarrel " "rail cover." msgstr "" +"Bardziej nowoczesna wersja popularnej serii pistoletów Beretta, " +"dziewięćdziesiątka dwójka działa w zasadzie tak samo. Główną różnicą jest " +"bardziej elegancki, niemal futurystyczny wygląd zawdzięczany w dużej mierze " +"polimerowej osłonie szyny pod lufą." #: lang/json/gun_from_json.py msgid "Calico M960" @@ -159853,6 +164173,13 @@ msgid "" "waned in popularity among special forces due to its decreased terminal " "performance." msgstr "" +"H&K MP5SD oferuje poddźwiękowe osiągi w prawie takiej samej obudowie jak H&K" +" MP5, zachowując jego poręczność. Duży tłumik znacznie redukuje błysk " +"wystrzału, pomagając w nocnych akcjach. Jest on również popularny wśród " +"oddziałów SWAT, ponieważ zmniejsza ryzyko pożaru i eksplozji w nielegalnych " +"laboratoriach. Wraz z upowszechnieniem się pancerzy osobistych, MP5SD " +"stracił na popularności wśród sił specjalnych ze względu na obniżone osiągi " +"graniczne." #: lang/json/gun_from_json.py msgid "H&K MP5K-PDW" @@ -159870,6 +164197,11 @@ msgid "" "MP5K-PDW model features a shorter barrel, a built-in foregrip, and a side " "folding stock for vehicle or aircraft crew use." msgstr "" +"Heckler & Koch MP5 to jeden z najpowszechniej używanych pistoletów " +"maszynowych na świecie, wykorzystywany zarówno przez siły policyjne i " +"wojskowe. Powszechnie ceniony za wysoką celność i niski odrzut. Model MP5K-" +"PDW posiada krótszą lufę, wbudowany chwyt przedni oraz boczną składaną kolbę" +" do użytku przez załogę pojazdu lub samolotu." #: lang/json/gun_from_json.py msgid "PTR 603" @@ -159890,6 +164222,14 @@ msgid "" "offers convenient mounting for aftermarket optics, but precludes the use of " "claw mounts." msgstr "" +"PTR 603 jest półautomatyczną kopią słynnej serii MP5, produkowaną na rynek " +"amerykański na oryginalnym oprzyrządowaniu firmy Heckler and Koch przez PTR " +"Industries. Podobnie jak w MP5, jego rolkowy opóźniony mechanizm spustowy " +"zapewnia płynność i precyzję strzału, wyróżniając go spośród innych " +"pistoletów i karabinków kalibru pistoletowego. Model ten został " +"skonfigurowany jako pistolet, aby uniknąć niewygodnych i kosztownych " +"przepisów NFA. Spawana część szyny M1913 oferuje wygodny montaż dla " +"nieoryginalnej optyki, ale wyklucza użycie zaczepów." #: lang/json/gun_from_json.py msgid "H&K operational briefcase" @@ -159909,6 +164249,13 @@ msgid "" "while bodyguarding, this is your gun. When the briefcase is open the MP5 " "may be reloaded or dismounted." msgstr "" +"Jest to walizka z twardego materiału ze spustem w rączce i ukrytym otworem z" +" boku. Aby wystrzelić z zamontowanego wewnątrz MP5K-PDW, należy usztywnić " +"walizkę przy pasie, upewnić się, że jest ona skierowana w stronę wroga i " +"nacisnąć spust. Precyzja i obsługa są mocno ograniczone, ale jeśli musisz " +"\"przekazać towar\" lub wyglądać na mało widocznego podczas ochrony, to jest" +" to broń dla ciebie. Kiedy walizka jest otwarta, MP5 może zostać " +"przeładowany lub zdemontowany." #: lang/json/gun_from_json.py msgid "Luger P08" @@ -159924,6 +164271,9 @@ msgid "" "known for its use by Germans during both World Wars. Notably accurate even " "by modern standards." msgstr "" +"Półautomatyczny pistolet 9x19mm z nietypowym mechanizmem dźwigniowym, znany " +"z użycia przez Niemców w czasie obu wojen światowych. Niezwykle celny nawet " +"jak na dzisiejsze standardy." #: lang/json/gun_from_json.py msgid "MP 18" @@ -159938,6 +164288,8 @@ msgid "" "An early German submachine gun with wooden stock chambered for 9x19mm, " "introduced near the end of First World War." msgstr "" +"Wczesny niemiecki pistolet maszynowy z drewnianym magazynkiem na nabój 9x19 " +"mm, wprowadzony do uzbrojenia pod koniec I wojny światowej." #: lang/json/gun_from_json.py msgid "Broomhandle Mauser" @@ -159953,6 +164305,9 @@ msgid "" "'9' number burned and painted into the grip marks it as a variant chambered " "for 9x19mm." msgstr "" +"Pistolet półautomatyczny ze zintegrowanym magazynkiem ładowanym od góry. " +"Czerwona cyfra \"9\" wypalona i namalowana na chwycie oznacza, że jest to " +"odmiana na nabój 9x19 mm." #: lang/json/gun_from_json.py msgid "detachable-magazine Mauser" @@ -159967,6 +164322,8 @@ msgid "" "This is a variant of the Mauser C96 pistol chambered for 9x19mm, which uses " "a detachable magazine rather than an integral one." msgstr "" +"Jest to odmiana pistoletu Mauser C96 w kalibrze 9x19 mm, w której " +"zastosowano magazynek odłączany, a nie zintegrowany." #: lang/json/gun_from_json.py msgid "MP 40" @@ -159981,6 +164338,8 @@ msgid "" "This is a 9x19mm submachine gun with a folding stock, which was used " "extensively during Second World War." msgstr "" +"Jest to pistolet maszynowy 9x19 mm ze składanym magazynkiem, który był " +"powszechnie używany podczas II wojny światowej." #: lang/json/gun_from_json.py msgid "MP 40 Semi Auto" @@ -159997,6 +164356,10 @@ msgid "" "resemblance to the original, differing substantially from originally " "manufactured MP 40s in internal operations." msgstr "" +"Jest to współczesna półautomatyczna replika MP 40 SMG, pozbawiona kolby, aby" +" legalnie można ją było uznać za pistolet. W rzeczywistości tylko wizualnie " +"przypomina oryginał, różniąc się zasadniczo od oryginalnie produkowanych MP " +"40 w budowie wewnętrznej." #: lang/json/gun_from_json.py msgid "Kel-Tec SUB-2000" @@ -160011,6 +164374,8 @@ msgid "" "A uniquely designed pistol caliber carbine with an integral folding stock. " "It makes use of 9x19mm Glock magazines." msgstr "" +"Karabinek na amunicję pistoletową o unikatowej konstrukcji, ze zintegrowaną " +"składaną kolbą i wykorzystujący magazynki do Glocka 9x19 mm." #: lang/json/gun_from_json.py msgid "Beretta M9A1" @@ -160027,6 +164392,10 @@ msgid "" "enforcement before the advent of commercially available polymer-framed " "handguns and the FBI's adoption of .40S&W." msgstr "" +"Kultowy pistolet 9x19 mm, M9 był standardowym wyposażeniem sił zbrojnych USA" +" od 1985 roku aż do niedawna. Był on wcześniej popularny wśród stróżów " +"prawa, zanim pojawiły się dostępne na rynku pistolety z polimerową obudową, " +"a FBI zaczęło używać .40 S&W." #: lang/json/gun_from_json.py msgid "Beretta Px4 Storm" @@ -160043,6 +164412,10 @@ msgid "" "was also optimized for concealed carry, while maintaining the reliability " "the 92 series is known for." msgstr "" +"Lżejszy od kultowej serii pistoletów Beretta 92, Px4 Storm został zbudowany " +"przy użyciu lekkiej konstrukcji polimerowej z wkładkami stalowymi. Jego " +"kształt został również zoptymalizowany do noszenia w ukryciu, przy " +"zachowaniu niezawodności, z której znana jest seria 92." #: lang/json/gun_from_json.py msgid "pipe rifle: 9x19mm" @@ -160068,6 +164441,12 @@ msgid "" "shop, but still very unreliable. This one is chambered for 9x19mm " "cartridges and accepts STEN compatible magazines." msgstr "" +"Prowizoryczny gładkolufowy peem wzoru Luty, prymitywnie skonstruowany z " +"różnych części stalowych przy użyciu niektórych z bardziej zaawansowanych " +"narzędzi ręcznych; prawdopodobnie jedna z najbardziej skomplikowanych broni," +" które są możliwe do wykonania poza warsztatem, ale wciąż bardzo zawodna. " +"Ten model posiada komorę na naboje .9x19 mm i akceptuje magazynki " +"kompatybilne ze STEN." #: lang/json/gun_from_json.py msgid "STEN" @@ -160164,14 +164543,17 @@ msgid "" "Austria's EKO Cobra unit. It has compensator cuts along its barrel to make " "recoil more manageable." msgstr "" +"Odmiana Glocka 17 z selektorem ognia, pierwotnie zaprojektowana dla " +"austriackiej jednostki EKO Cobra. Posiada nacięcia kompensacyjne wzdłuż " +"lufy, dzięki którym odrzut jest łatwiejszy do opanowania." #: lang/json/gun_from_json.py msgid "Kel-Tec PF-9" msgid_plural "Kel-Tec PF-9s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Kel-Tec PF-9" +msgstr[1] "Kel-Tec PF-9" +msgstr[2] "Kel-Tec PF-9" +msgstr[3] "Kel-Tec PF-9" #: lang/json/gun_from_json.py msgid "" @@ -160180,6 +164562,10 @@ msgid "" "9x19mm, recoil is best described as unpleasant, and follow-up shots are " "difficult to place quickly." msgstr "" +"Kel-Tec PF-9 pozostaje jednym z najpopularniejszych pistoletów zapasowych ze" +" względu na swoją niezawodność, przystępną cenę i możliwość ukrycia. Komora " +"kalibru 9x19mm powoduje odrzut, który najlepiej opisać jako nieprzyjemny, a " +"kolejne strzały są trudne do szybkiego ulokowania w celu." #: lang/json/gun_from_json.py msgid "M11" @@ -160194,6 +164580,8 @@ msgid "" "The M11 is a compact semi-automatic, short recoil operated pistol, also " "known as the P228." msgstr "" +"M11 to kompaktowy półautomatyczny pistolet z krótkim odrzutem, znany również" +" jako P228." #: lang/json/gun_from_json.py msgid "M17" @@ -160208,6 +164596,8 @@ msgid "" "The M17 is a semi-automatic, short recoil operated pistol derived from the " "SIG Sauer P320." msgstr "" +"M17 to półautomatyczny pistolet z krótkim odrzutem, wywodzący się z modelu " +"SIG Sauer P320." #: lang/json/gun_from_json.py msgid "M18" @@ -160222,6 +164612,8 @@ msgid "" "The M18 is a compact, semi-automatic, short recoil operated pistol derived " "from the SIG Sauer P320 Carry, used by US Armed Forces." msgstr "" +"M18 jest kompaktowym, półautomatycznym pistoletem z krótkim odrzutem, " +"wywodzącym się z SIG Sauer P320 Carry, używanym przez siły zbrojne USA." #: lang/json/gun_from_json.py msgid "SIG P226 MK25" @@ -160237,6 +164629,9 @@ msgid "" "pistol with corrosion resitant internal coating, and an engraved anchor on " "the side of the slide." msgstr "" +"P226 MK25 to pełnowymiarowy półautomatyczny pistolet z kurkiem napinanym " +"pociągnięciem spustu, krótkim odrzutem, odporną na korozję powłoką " +"wewnętrzną i grawerowaną kotwicą na bocznej ściance suwadła." #: lang/json/gun_from_json.py msgid "SIG Pro SP2022 9mm" @@ -160251,6 +164646,9 @@ msgid "" "This is a polymer-frame, semi-automatic, DA/SA operated pistol, featuring a " "Picatinny rail, and a Nitron stainless steel slide." msgstr "" +"Jest to pistolet z polimerowym korpusem, półautomatyczny, z kurkiem " +"napinanym pociągnięciem spustu, wyposażony w szynę Picatinny i suwadło ze " +"stali nierdzewnej Nitron." #: lang/json/gun_from_json.py msgid "Browning Hi-Power 9x19mm" @@ -160267,6 +164665,10 @@ msgid "" " Canada and Australia. This is a commercial variant produced by Browning " "Arms in 9x19mm Parabellum." msgstr "" +"Browning Hi-Power to półautomatyczny pistolet opracowany na krótko przed " +"drugą wojną światową. Od tamtej pory jest szeroko rozpowszechniony, nadal " +"używany przez Indie, Kanadę i Australię. Jest to komercyjny wariant " +"produkowany przez Browning Arms w kalibrze 9x19 mm Parabellum." #: lang/json/gun_from_json.py msgid "Walther P38" @@ -160285,6 +164687,13 @@ msgid "" " more modern firearms such as the Beretta 92 series, and served Germany " "until 2004." msgstr "" +"Walther P38 to półautomatyczny pistolet wprowadzony na rynek krótko przed " +"drugą wojną światową. Stworzony ze względu na wysokie koszty produkcji " +"swojego poprzednika, Lugera P08, P38 jest również wyposażony w komorę na " +"nabój 9 mm Parabellum. Ta wczesna konstrukcja z zamkiem i napinanym przez " +"pociągnięcie spustu kurkiem wprowadziła cechy, które później pojawiły się w " +"bardziej nowoczesnej broni palnej, takiej jak seria Beretta 92, i służyła " +"Niemcom do 2004 roku." #: lang/json/gun_from_json.py msgid "Walther PPQ 9mm" @@ -160300,6 +164709,9 @@ msgid "" "P99QA, and maintains compatibility with some of its predecessor's " "accessories. This model is chambered in 9x19mm Parabellum." msgstr "" +"Walther PPQ to półautomatyczny pistolet wywodzący się z modelu Walther " +"P99QA, zachowujący kompatybilność z niektórymi akcesoriami swojego " +"poprzednika. Model ten posiada komorę na nabój 9x19 mm Parabellum." #: lang/json/gun_from_json.py msgid "Hi-Point C-9" @@ -160316,6 +164728,11 @@ msgid "" "making said firearms bulky and uncomfortable. Hi-Points have slides made " "with a zinc pot-metal which is relatively fragile compared to steel slides." msgstr "" +"Hi-Point C-9 jest półautomatycznym pistoletem opartym na mechanizmie odrzutu" +" zamka swobodnego zaprojektowanym przez firmę Hi-Point Firearms, która znana" +" jest z produkcji niedrogiej broni palnej oraz z tego, że jest ona " +"nieporęczna i niewygodna. Hi-Pointy mają suwadła wykonane z cynku, który " +"jest stosunkowo kruchy w porównaniu z suwadłami stalowymi." #: lang/json/gun_from_json.py msgid "CZ 75 B" @@ -160334,6 +164751,13 @@ msgid "" " around the world, with Česká zbrojovka only joining in the 90's. This " "pistol remains wildly popular among competition shooters." msgstr "" +"CZ 75 B to półautomatyczny pistolet skonstruowany w Czechosłowacji, jeden z " +"oryginalnych cudownych dziewiątek. Choć zaprojektowany na eksport do krajów " +"zachodnich, został uznany za tajemnicę państwową, a brak międzynarodowej " +"ochrony patentowej oznaczał, że wiele klonów i wariantów było produkowanych " +"i dystrybuowanych na całym świecie, a Česká zbrojovka dołączyła dopiero w " +"latach 90-tych. Pistolet ten nadal cieszy się ogromną popularnością wśród " +"strzelców sportowych." #: lang/json/gun_from_json.py msgid "Walther CCP" @@ -160351,6 +164775,12 @@ msgid "" " accurate than many other pistols, though this may difficult to realize with" " its average trigger and short sight radius." msgstr "" +"Walther CCP jest półautomatycznym pistoletem z gazowym mechanizmem odrzutu " +"zamka, przeznaczonym na rynek użytkowników noszących broń w ukryciu. " +"Wewnętrznie jest on niemal identyczny z kultowym, klasycznym H&K P7. Jego " +"konstrukcja ze stałą lufą sprawia, że jest potencjalnie bardziej celny niż " +"wiele innych pistoletów, choć może to być trudne do zrealizowania przy " +"przeciętnym spuście i krótkim promieniu celownika." #: lang/json/gun_from_json.py msgid "Colt Model 635" @@ -160368,6 +164798,12 @@ msgid "" "looks very similar to an M4 carbine, except for the magazine well that " "accepts Uzi-style magazines." msgstr "" +"Jest to pistolet maszynowy kalibru 9x19 mm oparty na konstrukcji karabinu " +"M16. Jest to pistolet z zamkniętym zamkiem, działający na zasadzie odrzutu. " +"Posiada duży plastikowy, mosiężny deflektor zamontowany przy otworze " +"wyrzutowym, nie posiada wspomagania docisku. Wygląda bardzo podobnie do " +"karabinka M4, z wyjątkiem gniazda magazynka, do którego pasują magazynki " +"typu Uzi." #: lang/json/gun_from_json.py msgid "B&T APC9 PRO K" @@ -160383,6 +164819,9 @@ msgid "" "9x19mm Parabellum. It has a collapsible shoulder stock, and a red dot " "sight." msgstr "" +"Brügger & Thomet APC9 PRO K to pistolet maszynowy z zamkniętym zamkiem " +"działającym na zasadzie odrzutu w kalibrze 9x19 mm Parabellum. Posiada " +"składaną kolbę na ramię oraz kolimator." #: lang/json/gun_from_json.py msgid "Makarov PM" @@ -160447,6 +164886,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "Bionic one-shot retracting shotgun integrated with your arm." msgstr "" +"Bioniczna jednostrzałowa wysuwana strzelba zintegrowana z twoim ramieniem." #: lang/json/gun_from_json.py msgid "laser finger" @@ -160466,7 +164906,7 @@ msgstr[3] "Kolca szturmowego" #: lang/json/gun_from_json.py msgid "A homemade version of a crude precursor to the shotgun." -msgstr "" +msgstr "Domowej roboty wersja prymitywnego prekursora strzelby." #: lang/json/gun_from_json.py lang/json/vehicle_part_from_json.py msgid "3-inch ordnance rifle" @@ -160482,6 +164922,8 @@ msgid "" "A light cannon widely used in the American Civil War, noted for its " "reliability." msgstr "" +"Lekkie działo szeroko stosowane w amerykańskiej wojnie secesyjnej, znane z " +"niezawodności." #: lang/json/gun_from_json.py msgid "makeshift chemical thrower" @@ -160537,6 +164979,14 @@ msgid "" "readily available ammunition. It perfectly served the purposes of the " "Exodii, who had far less concern about its unwieldiness." msgstr "" +"Najpopularniejszym pistoletem na nabój 12,3ln był oczywiście PA md. 71. Jego" +" poprzednik, md. 68, był przez wielu postrzegany jako swego rodzaju porażka:" +" choć był niezawodny i mocny, był zbyt ciężki, by używać go jako dobrej " +"broni piechoty, i nie dość ciężki, by być dobrym karabinem wsparcia. " +"Powstało ich jednak na tyle dużo, że w czasie apokalipsy zombie zyskały dużą" +" popularność jako lekka broń dystansowa, wykorzystująca łatwo dostępną " +"amunicję. Doskonale nadawała się do celów Exodii, którzy mieli o wiele mniej" +" problemów z jej nieporęcznością." #: lang/json/gun_from_json.py msgid "PA md. 71 zombie hunting rifle" @@ -160554,6 +165004,12 @@ msgid "" "targets. This modified design fires an extremely rapid 5-shot burst, with " "the goal of shredding the target and preventing revivification." msgstr "" +"Ten niezwykle popularny rumuński karabin szturmowy, rozsławiony podczas " +"trzeciej wojny karpackiej, został nieco przeprojektowany przez Exodii, aby " +"służyć jako broń snajperska. Doskonale nadaje się do precyzyjnych strzałów w" +" cele o wysokim priorytecie. Ta zmodyfikowana konstrukcja wystrzeliwuje " +"niezwykle szybką, 5-strzałową serię, której celem jest zniszczenie celu i " +"uniemożliwienie ożywienia." #: lang/json/gun_from_json.py msgid "flamethrower" @@ -160641,6 +165097,8 @@ msgid "" "A beautifully decorated flintlock pistol. If using this doesn't make you " "feel a pirate, nothing will." msgstr "" +"Pięknie dekorowany pistolet skałkowy. Jeżeli to nie sprawi, że poczujesz się" +" jak pirat, to nic innego nie zdoła." #: lang/json/gun_from_json.py msgid "flintlock musket" @@ -160674,6 +165132,9 @@ msgid "" "has significantly increased accuracy at the cost of taking even longer to " "reload." msgstr "" +"Nazywany również karabinem Pensylwanii, ten długolufowy, gwintowany karabin " +"skałkowy ma znacznie zwiększoną celność kosztem tego, że przeładowanie " +"zajmuje jeszcze więcej czasu." #: lang/json/gun_from_json.py msgid "barb launching organ" @@ -160686,6 +165147,8 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "A mutated organ capable of launching bony barbs at great speed." msgstr "" +"Zmutowany organ zdolny do wystrzeliwania kościanych kolców z ogromną " +"prędkością." #: lang/json/gun_from_json.py msgid "electric alien frond" @@ -160698,6 +165161,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "Electricity unnaturally arcs from the tips of this alien frond." msgstr "" +"Nienaturalny łuk elektryczny wydobywa się z końcówek tego obcego liścia." #: lang/json/gun_from_json.py msgid "hurled rubble" @@ -160709,7 +165173,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "Stone at the ready to crush that which isn't part of the blob." -msgstr "" +msgstr "Kamień w pogotowiu, by zmiażdżyć to, co nie jest częścią gluta." #: lang/json/gun_from_json.py msgctxt "gun_type_type" @@ -160745,14 +165209,16 @@ msgid "" "A tool used to drive nails into wood or other material. It could also be " "used as an ad-hoc weapon." msgstr "" +"Narzędzie do wstrzeliwania gwoździ w drewno lub inne materiały. Można go " +"użyć jako broni ad-hoc." #: lang/json/gun_from_json.py msgid "coilgun" msgid_plural "coilguns" msgstr[0] "działko Gaussa" -msgstr[1] "działko Gaussa" -msgstr[2] "działko Gaussa" -msgstr[3] "działko Gaussa" +msgstr[1] "działka Gaussa" +msgstr[2] "działek Gaussa" +msgstr[3] "działka Gaussa" #: lang/json/gun_from_json.py msgid "" @@ -160804,6 +165270,11 @@ msgid "" "six separate barrels make for difficult zeroing. The externally driven " "action means this is much less likely to jam." msgstr "" +"Elektrycznie napędzana sześciolufowa strzelba typu gatling, zasilana z " +"ręcznie robionych płóciennych pasów. Nawet prawidłowo zamontowana, wydaje " +"się być nieporęczną bestią, a sześć oddzielnych luf utrudnia zerowanie. " +"Dzięki zewnętrznemu napędowi jest znacznie mniej prawdopodobne, że się " +"zatnie." #: lang/json/gun_from_json.py msgid "handmade lever shotgun" @@ -160819,6 +165290,9 @@ msgid "" " While still a primitive design - made from a pipe and a plank - it is a " "formidable shotgun in its own right with room for improvement." msgstr "" +"Krótka, domowej roboty strzelba o napędzie dźwigniowym z małym, wewnętrznym " +"magazynkiem rurowym. Choć nadal jest to prymitywna konstrukcja - wykonana z " +"rury i deski - jest to solidna strzelba, którą można jeszcze ulepszyć." #: lang/json/gun_from_json.py msgid "14-round tube shotgun" @@ -160834,6 +165308,9 @@ msgid "" "gauge shot. Each tube has to be loaded separately, but this offers the " "option of loading different ammunition for different situations." msgstr "" +"Strzelba ta wykorzystuje system 2 tubowych magazynków do przenoszenia 14 " +"naboi o kalibrze 12. Każda rurka musi być ładowana osobno, ale daje to " +"możliwość załadowania różnej amunicji na różne sytuacje." #: lang/json/gun_from_json.py msgid "Kel-Tec KSG" @@ -160867,14 +165344,17 @@ msgid "" "gauge shot. Each tube has to be loaded separately, but this offers the " "option of loading different ammunition for different situations." msgstr "" +"Strzelba ta wykorzystuje system 2 tubowych magazynków do przenoszenia 24 " +"naboi o kalibrze 12. Każda rurka musi być ładowana osobno, ale daje to " +"możliwość załadowania różnej amunicji na różne sytuacje." #: lang/json/gun_from_json.py msgid "Kel-Tec KSG-25" msgid_plural "Kel-Tec KSG-25" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Kel-Tec KSG-25" +msgstr[1] "Kel-Tec KSG-25" +msgstr[2] "Kel-Tec KSG-25" +msgstr[3] "Kel-Tec KSG-25" #: lang/json/gun_from_json.py msgid "" @@ -160884,6 +165364,10 @@ msgid "" "situations. The big brother of the KSG, it has a longer barrel and longer " "magazine tubes." msgstr "" +"Kel-Tec KSG-25 to strzelba typu pump action w systemie pullpup, z dwiema " +"tubami amunicyjnymi dla zwiększenia pojemności. Każdą tubę ładuje się " +"osobno, ale to daje opcję ładowania różnej amunicji na różne okazje. Większy" +" brat KSG, ma dłuższą lufę i dłuższe tuby magazynków." #: lang/json/gun_from_json.py msgid "6-round shotgun" @@ -160895,7 +165379,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "This is a shotgun with capacity for 6 rounds of 12 gauge shot." -msgstr "" +msgstr "Jest to strzelba o pojemności 6 nabojów kalibru 12." #: lang/json/gun_from_json.py msgid "Mossberg 500 Field" @@ -160911,6 +165395,10 @@ msgid "" " for military use. It is noted for its high durability and low recoil. " "This one is fitted with a 28 inch barrel with sight rib." msgstr "" +"Mossberg 500 to popularna seria strzelb typu pump action, często " +"wykorzystywanych w zastosowaniach wojskowych. Zdobyła uznanie za wysoką " +"wytrzymałość i nisko odrzut. Ten egzemplarz wyposażony jest w 28 calową lufę" +" z żebrem celowniczym." #: lang/json/gun_from_json.py msgid "Mossberg 500 Security" @@ -160926,6 +165414,10 @@ msgid "" " for military use. It is noted for its high durability and low recoil. " "This one is fitted with an 18.5 inch barrel." msgstr "" +"Mossberg 500 to popularna seria strzelb typu pump action, często " +"wykorzystywanych w zastosowaniach wojskowych. Zdobyła uznanie za wysoką " +"wytrzymałość i nisko odrzut. Ten egzemplarz wyposażony jest w 18,5 calową " +"lufę." #: lang/json/gun_from_json.py msgid "9-round shotgun" @@ -160937,7 +165429,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "This is a shotgun with capacity for 9 rounds of 12 gauge shot" -msgstr "" +msgstr "Jest to strzelba o pojemności 9 nabojów kalibru 12." #: lang/json/gun_from_json.py msgid "Mossberg 590A1" @@ -160953,6 +165445,9 @@ msgid "" " 500. It features a heavier barrel, a bayonet lug, and a different magazine" " tube for easier cleaning and maintenance." msgstr "" +"Mossberg 590A1 jest wojskową i policyjną wersją modelu Mossberg 500. Posiada" +" cięższą lufę, gniazdo bagnetu i inną rurę magazynka ułatwiającą czyszczenie" +" i konserwację." #: lang/json/gun_from_json.py msgid "Franchi SPAS-12" @@ -160970,6 +165465,11 @@ msgid "" "semi-automatic firearm, with an arm stabilizing hook for one handed " "shooting." msgstr "" +"Wredny i onieśmielający z wyglądu, SPAS 12 ma wątpliwy zaszczyt być uznany " +"za urządzenie niszczące i zakazany imiennie do importu, co dodaje mu i tak " +"już sporego uroku. Jest to kombinacja broni palnej typu pompka i " +"półautomatycznej, z hakiem stabilizującym ramię, umożliwiającym strzelanie " +"jedną ręką." #: lang/json/gun_from_json.py msgid "8-round shotgun" @@ -160981,7 +165481,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "This is a shotgun with capacity for 8 rounds of 12 gauge shot" -msgstr "" +msgstr "Jest to strzelba o pojemności 8 nabojów kalibru 12." #: lang/json/gun_from_json.py msgid "Mossberg 930 SPX" @@ -160998,6 +165498,10 @@ msgid "" "Affordable pricing and decent ergonomics make this a popular entry-level " "3-gun shotgun." msgstr "" +"Ten półautomatyczny model firmy Mossberg posiada system gazowy z redukcją " +"odrzutu, celowniki w stylu karabinowym oraz fabrycznie montowaną szynę " +"picatinny. Przystępna cena i przyzwoita ergonomia sprawiają, że jest to " +"popularna strzelba klasy podstawowej do zawodów strzeleckich." #: lang/json/gun_from_json.py msgid "M1014 shotgun" @@ -161015,6 +165519,11 @@ msgid "" "Combat Shotgun, the Benelli M4 is one of the finest combat shotguns " "available." msgstr "" +"Pierwsza strzelba Benelli z systemem gazowym, wyposażona w podwójne tłoki " +"dla zwiększenia niezawodności przy różnych obciążeniach oraz składaną kolbę," +" która zmniejsza długość o prawie 8 cali. Przyjęty w 1999 roku jako Strzelba" +" Bojowa Służb Połączonych M1014, Benelli M4 jest jedną z najlepszych " +"dostępnych strzelb bojowych." #: lang/json/gun_from_json.py msgid "double-barrel pipe shotgun" @@ -161058,7 +165567,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "This is a shotgun with capacity for 5 rounds of 12 gauge shot." -msgstr "" +msgstr "Jest to strzelba o pojemności 5 nabojów kalibru 12." #: lang/json/gun_from_json.py msgid "Remington 870 Wingmaster" @@ -161075,6 +165584,11 @@ msgid "" "agencies alike thanks to its high accuracy and muzzle velocity. This one is" " a 28 inch barreled model for hunting fowl and game." msgstr "" +"Remington 870, wyprodukowany w liczbie ponad 10 milionów egzemplarzy, jest " +"jedną z najpopularniejszych strzelb na rynku, używaną zarówno przez " +"myśliwych, jak i organy ścigania, dzięki wysokiej celności i prędkości " +"strzału. Ten model ma 28-calową lufę i jest przeznaczony do polowań na " +"ptactwo i zwierzynę." #: lang/json/gun_from_json.py msgid "Remington 1100 competition" @@ -161093,6 +165607,13 @@ msgid "" "the nickel finished, teflon coated competition model, with a full length " "magazine tube and 30 inch barrel." msgstr "" +"Ta półautomatyczna strzelba posiada system samokompensacji gazowej, który " +"umożliwia podawanie szerokiej gamy pocisków przy jednoczesnym zmniejszeniu " +"odrzutu. Wprowadzona na rynek w 1963 roku, jest preferowana przez stróżów " +"prawa, myśliwych i strzelców wyborowych, i jest najlepiej sprzedającą się " +"strzelbą samopowtarzalną w historii USA. Jest to model sportowy z " +"wykończeniem niklowym, pokryty teflonem, z rurą magazynka na całej długości " +"i 30 calową lufą." #: lang/json/gun_from_json.py msgid "Browning Auto 5" @@ -161109,6 +165630,11 @@ msgid "" "million made between 1902 and 1998. The recoil tuning mechanism under the " "handguard and long dwell time of the action make for pleasant shooting." msgstr "" +"Ta skromnie wyglądająca strzelba była najwcześniejszą i drugą w historii " +"Stanów Zjednoczonych strzelbą półautomatyczną, której wyprodukowano ponad " +"2,7 miliona sztuk w latach 1902-1998. Mechanizm regulacji odrzutu pod " +"kabłąkiem i długi czas opóźnienia działania sprawiają, że strzelanie jest " +"przyjemne." #: lang/json/gun_from_json.py msgid "breaching shotgun" @@ -161124,6 +165650,9 @@ msgid "" "doors. It is small enough to carry as a secondary weapon, but has fairly " "unpleasant recoil and no sights." msgstr "" +"Ta strzelba ma krótką lufę, nie ma kolby i jest przystosowana do wyważania " +"drzwi. Jest na tyle mała, że można ją nosić jako broń dodatkową, ale ma dość" +" nieprzyjemny odrzut i nie ma celownika." #: lang/json/gun_from_json.py msgid "Remington 870 MCS" @@ -161141,6 +165670,12 @@ msgid "" "doors you might come across. The grip's design makes for controllable yet " "unpleasant recoil, and the barrel lacks any sights." msgstr "" +"Ta strzelba Remington 870 Modular Combat System jest obecnie skonfigurowana " +"do włamywania się, ma 10-calową lufę i nie posiada kolby. Jest wystarczająco" +" mała, aby nosić ją jako broń dodatkową, zwłaszcza do otwierania drzwi, " +"które można napotkać. Konstrukcja chwytu sprawia, że odrzut jest " +"kontrolowany, ale nieprzyjemny, a lufa nie posiada żadnych przyrządów " +"celowniczych." #: lang/json/gun_from_json.py msgid "7-round shotgun" @@ -161152,7 +165687,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "This is a shotgun with capacity for 7 rounds of 12 gauge shot." -msgstr "" +msgstr "Jest to strzelba o pojemności 7 nabojów kalibru 12." #: lang/json/gun_from_json.py msgid "Remington 870 express" @@ -161169,6 +165704,10 @@ msgid "" "agencies alike thanks to its high accuracy and muzzle velocity. This one is" " an 18.5 inch barreled defensive model." msgstr "" +"Remington 870, wyprodukowany w liczbie ponad 10 milionów egzemplarzy, jest " +"jedną z najpopularniejszych strzelb na rynku, używaną zarówno przez " +"myśliwych, jak i organy ścigania, dzięki wysokiej celności i prędkości " +"strzału. Ten model ma 18,5-calową lufę i jest przeznaczony do obrony." #: lang/json/gun_from_json.py msgid "shotgun revolver" @@ -161197,6 +165736,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "This shotgun is chambered in 12 gauge, and accepting Saiga magazines." msgstr "" +"Strzelba ta ma komorę kalibru 12 i jest przystosowana do magazynków Saiga." #: lang/json/gun_from_json.py msgid "Saiga-12" @@ -161214,6 +165754,11 @@ msgid "" "Mikhail Kalashnikov, and was popular in open division shotgun competitions " "prior to its ban from import via executive order." msgstr "" +"Saiga-12 to półautomatyczna strzelba zaprojektowana na wzór kałasznikowa, " +"podobnie jak karabin AK47. Ładuje się ją z magazynka, a nie jak większość " +"strzelb po jednym naboju. Jest to jedna z ostatnich konstrukcji Michaiła " +"Kałasznikowa i była popularna w zawodach strzeleckich w dywizji otwartej, " +"zanim zakazano jej importu na mocy rozporządzenia wykonawczego." #: lang/json/gun_from_json.py msgid "double barrel shotgun" @@ -161262,6 +165807,9 @@ msgid "" "revolver. It can hold 12 rounds of 12 gauge shot, and fire all of them in " "under 3 seconds" msgstr "" +"Ta strzelba, uznana za urządzenie niszczące, przypomina komicznie " +"przerośnięty rewolwer. Może pomieścić 12 naboi o kalibrze 12 i wystrzelić je" +" wszystkie w mniej niż 3 sekundy." #: lang/json/gun_from_json.py msgid "Cobray Streetsweeper" @@ -161279,6 +165827,12 @@ msgid "" " an ejector rod. Its unique design allows for all 12 shells to be fired in " "under 3 seconds, as demonstrated by the ATF technical branch." msgstr "" +"Mniej strzelba, a bardziej komicznie przerośnięty rewolwer, Cobray " +"Streetsweeper sprzedawał się słabo, zanim został uznany za urządzenie " +"niszczące. Cylinder jest napędzany przez sprężynę zegarową, nie może być " +"indeksowany ręcznie i musi być wyrzucany za pomocą wyrzutnika. Jego unikalna" +" konstrukcja pozwala na wystrzelenie wszystkich 12 pocisków w czasie poniżej" +" 3 sekund, co zostało zademonstrowane przez oddział techniczny ATF." #: lang/json/gun_from_json.py msgid "15-round tube fed shotgun" @@ -161295,6 +165849,10 @@ msgid "" "separately, but this offers the option of loading different ammunition for " "different situations." msgstr "" +"Strzelba ta wykorzystuje system 3 magazynków rurowych, które mieszczą 15 " +"naboi o kalibrze 12, w stosunkowo niewielkiej broni palnej. Każda rurka musi" +" być ładowana osobno, ale daje to możliwość załadowania różnej amunicji na " +"różne sytuacje." #: lang/json/gun_from_json.py msgid "Tavor TS12" @@ -161312,6 +165870,12 @@ msgid "" "more like a sci-fi prop gun than a firearm. An integral top rail is " "provided for mounting sights." msgstr "" +"Jest to strzelba typu bullpup z potrójnym magazynkiem, o działaniu gazowym, " +"produkcji Israeli Weapon Industries. Jest w stanie załadować 15 pocisków, a " +"wszystko to w stosunkowo niewielkiej obudowie. Podobnie jak wiele innych " +"nowoczesnych konstrukcji IWI, wygląda bardziej jak rekwizyt z filmów " +"science-fiction niż broń palna. Zintegrowana szyna górna służy do montażu " +"przyrządów celowniczych." #: lang/json/gun_from_json.py msgid "6-round lever-action shotgun" @@ -161327,6 +165891,9 @@ msgid "" "accepting 6 rounds of 12 gauge shot. It would pair nicely with a motorcycle" " jacket and a Harley Davidson." msgstr "" +"Jest to strzelba typu dźwigniowego z bardzo krótką lufą, bez magazynka, " +"mieszcząca 6 naboi o kalibrze 12. Ładnie komponuje się z kurtką motocyklową " +"i Harleyem Davidsonem." #: lang/json/gun_from_json.py msgid "1887 bootleg shotgun" @@ -161344,6 +165911,12 @@ msgid "" "today. This one has a very short barrel, no stock, and would pair nicely " "with a motorcycle jacket and a Harley Davidson." msgstr "" +"Jedna z pierwszych strzelb powtarzalnych, która odniosła sukces komercyjny. " +"Winchester 1887 został specjalnie wyprodukowany na życzenie Winchestera jako" +" broń o mechanizmie dźwigniowym. Choć później został przyćmiony przez " +"systemy typu pompka, 1887 pozostaje popularny do dziś. Ten egzemplarz ma " +"bardzo krótką lufę, nie ma kolby i świetnie komponuje się z kurtką " +"motocyklową i Harleyem Davidsonem." #: lang/json/gun_from_json.py msgid "trench shotgun" @@ -161359,6 +165932,9 @@ msgid "" "straight from the trenches of World War 1. There aren't any more trenches " "to clear, so the next zombie-infested town will have to suffice." msgstr "" +"Do tej strzelby dołączony jest duży bagnet, jakby pochodziła prosto z okopów" +" 1. wojny światowej. Nie ma już żadnych okopów do oczyszczenia, więc " +"następne miasto pełne zombie będzie musiało wystarczyć." #: lang/json/gun_from_json.py msgid "M1897 Trench Gun" @@ -161377,6 +165953,12 @@ msgid "" " There aren't any more trenches to clear, so the next zombie-infested town " "will have to suffice." msgstr "" +"Winchester 1897 był jedną z pierwszych komercyjnie udanych strzelb typu " +"pompka. W swojej konfiguracji \"okopowej\" stał się on niezwykle romantyczną" +" amerykańską ikoną pierwszej wojny światowej. Ze swoją osłoną lufy, zaczepem" +" na bagnet i 17-calowym bagnetem, ta strzelba jest niezaprzeczalnie " +"przerażająca z wyglądu. Nie ma już żadnych okopów do oczyszczenia, więc " +"następne miasto pełne zombie będzie musiało wystarczyć." #: lang/json/gun_from_json.py msgid "slam-fire pipe shotgun" @@ -161391,6 +165973,9 @@ msgid "" "A crude shotgun, composed of two thick steel pipes, an end cap and a nail. " "The lack of sights make this weapon only useful at point-blank range." msgstr "" +"Prymitywna strzelba, składająca się z dwóch grubych stalowych rur, nasadki i" +" gwoździa. Brak celowników sprawia, że broń ta jest przydatna tylko na " +"bliską odległość." #: lang/json/gun_from_json.py msgid "double slam-fire pipe shotgun" @@ -161406,6 +165991,9 @@ msgid "" "nails. The lack of sights make this weapon only useful at point-blank " "range." msgstr "" +"Prymitywna strzelba, składająca się z czterech grubych stalowych rur, dwóch " +"nasadek i dwóch gwoździ. Brak celowników sprawia, że broń ta jest przydatna " +"tylko na bliską odległość." #: lang/json/gun_from_json.py msgid "flaregun" @@ -161448,6 +166036,8 @@ msgid "" "This is the integral weapon system for the CMES exoskeleton mech-suit, a " "rotating-barrel actively-cooled rapid-fire laser system." msgstr "" +"Jest to integralny system uzbrojenia egzoszkieletu mech-kombinezonu CMES, " +"szybkostrzelny system laserowy z aktywnie chłodzoną obrotową lufą." #: lang/json/gun_from_json.py msgid "RMES marksman system" @@ -161462,6 +166052,8 @@ msgid "" "This is the integral weapon system for the RMES exoskeleton mech-suit, a " "quiet and accurate marksman laser rifle." msgstr "" +"Jest to integralny system uzbrojenia egzoszkieletu mech-kombinezonu RMES, " +"cichy i celny karabin laserowy dla strzelców wyborowych." #: lang/json/gun_from_json.py msgid "A7 laser rifle" @@ -161478,6 +166070,11 @@ msgid "" "corporate skulduggery. Though the Cataclysm put that on the ash heap of " "history, this weapon can still do the same to your foes." msgstr "" +"Najwyższej jakości karabin laserowy opracowany przez dział badawczy " +"Laboratoriów Lotniczych. Pierwsze próby dościgły najlepsze konstrukcje " +"Rivtech, z plotkami mówiącymi o machlojkach przemysłowych. Choć Kataklizm " +"wyrzucił je na śmietnisko historii, to ta broń może uczynić to samo z twoimi" +" wrogami." #: lang/json/gun_from_json.py msgid "hm12 dazzle rifle" @@ -161494,6 +166091,10 @@ msgid "" "white sheet metal. It will temporarily stun robots, if you manage to hit " "their sensors with a clean shot." msgstr "" +"Ten prototyp „broni energetycznej” został najwyraźniej wyprodukowany przez " +"Hub 01. Przypomina nieco przerośnięte działo radarowe, zamontowane na " +"prostokątnej ramie z białej blachy. Chwilowo ogłusza roboty, jeśli uda ci " +"się trafić w ich czujniki celnym strzałem." #: lang/json/gun_from_json.py msgid "V29 laser pistol" @@ -161508,6 +166109,9 @@ msgid "" "This V29 laser pistol was one of the first handheld laser weapons. It is " "larger than most traditional handguns, but has no recoil whatsoever." msgstr "" +"Ten pistolet laserowy V29 był jedną z pierwszych ręcznych broni laserowych. " +"Jest większy niż większość tradycyjnych pistoletów ręcznych, ale nie ma " +"żadnego odrzutu." #: lang/json/gun_from_json.py msgid "survival bow" @@ -161522,6 +166126,8 @@ msgid "" "A weak bow crudely crafted from a single uncured wood stave. Weak and " "wildly inaccurate, but easy to make." msgstr "" +"Słaby łuk wykonany w prosty sposób z jednego nieutwardzonego kawałka drewna." +" Słaby i bardzo niedokładny, ale łatwy do wykonania." #: lang/json/gun_from_json.py msgid "short bow" @@ -161536,6 +166142,9 @@ msgid "" "Emphasizing portability and agility over power, this all-wood bow is " "suitable for small game and harassing enemies." msgstr "" +"Ten wykonany w całości z drewna łuk, kładący nacisk na poręczność i zwinność" +" w stosunku do mocy, jest odpowiedni do strzelania do małej zwierzyny i " +"nękania wrogów." #: lang/json/gun_from_json.py msgid "compound hunting bow" @@ -161551,6 +166160,9 @@ msgid "" " that can be used effectively by fairly strong archers. Currently set to a " "medium weight." msgstr "" +"Łuk dużej mocy z kształtnymi bloczkami i dodatkowymi cięciwami do strzałów " +"dużych prędkości, którego mogą używać łucznicy o znacznej sile. Obecnie " +"ustawiony na średni naciąg." #: lang/json/gun_from_json.py msgid "compound hunting bow (high)" @@ -161566,6 +166178,10 @@ msgid "" " that can be used effectively by very strong archers. Currently set to a " "high weight, and ready to cause some real damage - if you can draw it." msgstr "" +"Łuk dużej mocy z kształtnymi bloczkami i dodatkowymi cięciwami do strzałów " +"dużych prędkości, którego mogą używać łucznicy o dużej sile. Obecnie " +"ustawiony na wysoki naciąg, i gotowy zadać duże obrażenia - jak zdołasz go " +"naciągnąć." #: lang/json/gun_from_json.py msgid "compound hunting bow (low)" @@ -161581,6 +166197,9 @@ msgid "" " that can be used effectively by average archers. Currently set to a low " "weight, making it much easier to draw." msgstr "" +"Łuk dużej mocy z kształtnymi bloczkami i dodatkowymi cięciwami do strzałów " +"dużych prędkości, którego mogą używać łucznicy o przeciętnej sile. Obecnie " +"ustawiony na niski naciąg, przez co łatwo go naciągnąć." #: lang/json/gun_from_json.py msgid "composite bow (heavy)" @@ -161595,6 +166214,8 @@ msgid "" "A traditionally-constructed bow made from wood, bone, and sinew. It has a " "rather high draw weight." msgstr "" +"Tradycyjnie skonstruowany łuk wykonany z drewna, kości i ścięgien. " +"Charakteryzuje się dość dużym ciężarem naciągu." #: lang/json/gun_from_json.py msgid "composite bow (light)" @@ -161609,6 +166230,8 @@ msgid "" "A traditionally-constructed bow made from wood, horn and sinew. It has a " "moderate draw weight." msgstr "" +"Łuk o tradycyjnej konstrukcji, wykonany z drewna, rogu i ścięgien. " +"Charakteryzuje się umiarkowanym ciężarem naciągu." #: lang/json/gun_from_json.py msgid "modern recurve bow" @@ -161623,6 +166246,8 @@ msgid "" "A modern fiberglass bow that can be used effectively by those of somewhat " "above-average strength." msgstr "" +"Nowoczesny łuk z włókna szklanego, który może być skutecznie używany przez " +"osoby o nieco ponadprzeciętnej sile." #: lang/json/gun_from_json.py msgid "longbow" @@ -161637,6 +166262,8 @@ msgid "" "A six-foot wooden hunting bow in the English style. It can be used " "effectively by those of above-average strength." msgstr "" +"Sześciostopowy, drewniany łuk myśliwski w stylu angielskim. Może być " +"skutecznie używany przez osoby o ponadprzeciętnej sile." #: lang/json/gun_from_json.py msgid "wooden greatbow" @@ -161652,6 +166279,9 @@ msgid "" "string to take an immense amount of energy. Takes incredible strength to " "draw." msgstr "" +"Niezwykle duży, sztywny długi łuk, składający się z ogromnych ramion i " +"grubej cięciwy, która jest w stanie przyjąć ogromną ilość energii. Wymaga " +"niewiarygodnej siły, by go naciągnąć." #: lang/json/gun_from_json.py msgid "compound greatbow" @@ -161667,6 +166297,9 @@ msgid "" "thick string to take an immense amount of energy. Takes incredible strength" " to draw." msgstr "" +"Niezwykle duży, silny łuk bloczkowy, składający się z ogromnych ramion i " +"grubej cięciwy, która jest w stanie przyjąć ogromną ilość energii. Wymaga " +"niewiarygodnej siły, by go naciągnąć." #: lang/json/gun_from_json.py msgid "Olympic style target bow" @@ -161681,6 +166314,8 @@ msgid "" "A highly refined, modern bow, but not all that useful, as the draw weight is" " very low." msgstr "" +"Bardzo dopracowany, nowoczesny łuk, ale nie do końca użyteczny, gdyż masa " +"naciągu jest bardzo niska." #: lang/json/gun_from_json.py msgid "bullet crossbow" @@ -161696,6 +166331,8 @@ msgid "" "projectiles instead of the traditional quarrel. Primarily intended for " "hunting small game." msgstr "" +"Zmodyfikowana wersja klasycznej kuszy która używa kamieni do miotania, " +"zamiast tradycyjnych bełtów. Pierwotnie do polowania na małą zwierzynę." #: lang/json/gun_from_json.py msgid "pistol crossbow" @@ -161710,6 +166347,8 @@ msgid "" "A small concealable pistol-like crossbow. It's weak due to its small size " "and draw, so it is best suited for hunting small game." msgstr "" +"Mała, dająca się ukryć kusza w kształcie pistoletu. Jest słaba z uwagi na " +"rozmiar i naciąg, więc najlepiej się sprawdza w polowaniu na małą zwierzynę." #: lang/json/gun_from_json.py msgid "wood crossbow" @@ -161721,7 +166360,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "A moderately powerful all-wood hunting crossbow." -msgstr "" +msgstr "Umiarkowanie mocna, w pełni drewniana kusza myśliwska." #: lang/json/gun_from_json.py msgid "composite crossbow" @@ -161733,7 +166372,7 @@ msgstr[3] "kompozytowej kuszy" #: lang/json/gun_from_json.py msgid "A traditionally-constructed crossbow made from wood, bone, and sinew." -msgstr "" +msgstr "Kusza o tradycyjnej konstrukcji, wykonana z drewna, kości i ścięgien." #: lang/json/gun_from_json.py msgid "compound crossbow" @@ -161765,6 +166404,9 @@ msgid "" "A HUGE medieval crossbow from Germany with a very slow, difficult reloading " "process. Its tension is so powerful that you feel it shake after firing." msgstr "" +"Ogromna średniowieczna kusza z Niemiec z bardzo powolnym, trudnym procesem " +"przeładowania. Jej naciąg jest tak silny, że po wystrzale czuć, że się " +"trzęsie." #: lang/json/gun_from_json.py msgid "repeating crossbow" @@ -161779,6 +166421,9 @@ msgid "" "A custom-made crossbow with a clever mechanism that loads and fires bolts in" " a single motion, it has a wooden magazine that holds 10 bolts." msgstr "" +"Wykonana na zamówienie kusza z inteligentnym mechanizmem, który ładuje i " +"wystrzeliwuje bełty jednym ruchem, posiada drewniany magazynek mieszczący 10" +" bełtów." #: lang/json/gun_from_json.py msgid "PPA-5" @@ -161796,6 +166441,12 @@ msgid "" " It was designed to take down heavy vehicles, and was expected to fully " "enter US Army service not long before the Cataclysm." msgstr "" +"Przenośny Akcelerator Plazmowy Model Piąty, opracowany przez Lockheed Martin" +" Corporation. Urządzenie to wykorzystuje wysoce zaawansowane baterie " +"kondensatorów do wytworzenia torusa z przegrzanej plazmy wodorowej i " +"rozpędzenia go do niewiarygodnej prędkości. Został zaprojektowany do " +"niszczenia ciężkich pojazdów i miał wejść do służby w armii amerykańskiej " +"niedługo przed Kataklizmem." #: lang/json/gun_from_json.py msgid "Boeing XM-P plasma rifle" @@ -161923,6 +166574,9 @@ msgid "" "A forked piece of wood with an elastic band stretched between two of its " "tips. Can launch tiny pebbles and similar things at high speeds." msgstr "" +"Rozwidlony kawałek drewna z elastyczną taśmą rozciągniętą pomiędzy dwoma " +"jego końcami. Może wystrzeliwać z dużą prędkością małe kamyczki i podobne " +"rzeczy." #: lang/json/gun_from_json.py msgid "staff sling" @@ -161937,6 +166591,8 @@ msgid "" "This staff can launch rocks with a whipping motion that sends them flying " "much further and faster than throwing them." msgstr "" +"Tą laską można wystrzeliwać kamienie biczującym ruchem, który posyła je w " +"powietrze znacznie dalej i szybciej niż samo rzucanie nimi." #: lang/json/gun_from_json.py msgid "brace slingshot" @@ -161951,6 +166607,8 @@ msgid "" "A modern slingshot with a wrist brace, allowing it to fire tiny objects " "slightly more forcefully than a simple wooden slingshot." msgstr "" +"Nowoczesna proca z klamrą na nadgarstek, pozwalająca wystrzeliwać drobne " +"przedmioty z nieco większą siłą niż zwykła proca drewniana." #: lang/json/gun_from_json.py msgid "pneumatic speargun" @@ -162041,6 +166699,24 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" +"Najpopularniejszym pistoletem na nabój 12,3ln był oczywiście PA md. 71. Jego poprzednik, md. 68, był przez wielu postrzegany jako swego rodzaju porażka: choć był niezawodny i mocny, był zbyt ciężki, by używać go jako dobrej broni piechoty, i nie dość ciężki, by być dobrym karabinem wsparcia. Powstało ich jednak na tyle dużo, że w czasie apokalipsy zombie zyskały dużą popularność jako lekka broń dystansowa, wykorzystująca łatwo dostępną amunicję. Doskonale nadawała się do celów Exodii, którzy mieli o wiele mniej problemów z jej nieporęcznością.\n" +"\n" +"Ten konkretny karabin został pomalowany na zakurzony różowy kolor i ma obrazek uśmiechniętego węgorza wijącego się wzdłuż lufy." + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -162054,6 +166730,8 @@ msgid "" "You ripped this from a mi-go abomination. You think you should wear gloves " "to reload it. " msgstr "" +"Zostało to zerwane z obrzydliwego mi-go. Chyba trzeba by założyć rękawiczki," +" żeby to przeładować. " #: lang/json/gun_from_json.py msgid "Alien lune" @@ -162069,6 +166747,9 @@ msgid "" "device. If the strand is interrupted, the device clanks and shudders before" " violently emitting a bolt of plasma from its apex." msgstr "" +"Delikatna nić światła łączy antypody tego urządzenia w kształcie " +"półksiężyca. Jeśli splot ten zostanie przerwany, urządzenie chrzęści i drży," +" po czym gwałtownie emituje z wierzchołka bełt plazmy." #: lang/json/gun_from_json.py msgid "deployed grenade launcher" @@ -162083,6 +166764,8 @@ msgid "" "A grenade launcher mounted onto your right-hand wrist. Less powerful than a" " proper grenade launcher, but infinitely more portable, and quick to reload." msgstr "" +"Granatnik montowany na nadgarstku prawej ręki. Mniej potężny niż prawdziwy " +"granatnik, ale nieskończenie bardziej przenośny i szybki do przeładowania." #: lang/json/gun_from_json.py msgid "Tankbot Main Gun" @@ -162112,6 +166795,9 @@ msgid "" "\n" "With its drawing aid system currently disabled, firing it will require truly superhuman strength. It can be activated to toggle it drawing assist functionality." msgstr "" +"Ozdobny łuk używany przez aztlańską szlachtę podczas rytuałów myśliwskich. Zaprojektowany, by walczyć z pokrytymi płytami stworzeniami Aztlanu, jego przegubowe i wspomagane ramiona pozwalają mu wystrzeliwać pociski z siłą porównywalną do nowoczesnych karabinów szturmowych.\n" +"\n" +"Ponieważ system wspomagania naciągu jest obecnie wyłączony, wystrzelenie zeń będzie wymagało prawdziwie nadludzkiej siły. Można go aktywować, aby przełączyć funkcję wspomagania naciągu." #: lang/json/gun_from_json.py msgid "aztlani bow (active)" @@ -162127,6 +166813,9 @@ msgid "" "\n" "With its drawing aid system enabled, it can be much more easily drawn, at the cost of a modest amount of UPS power consumption per arrow. It can be activated to toggle it drawing assist functionality." msgstr "" +"Ozdobny łuk używany przez aztlańską szlachtę podczas rytuałów myśliwskich. Zaprojektowany, by walczyć z pokrytymi płytami stworzeniami Aztlanu, jego przegubowe i wspomagane ramiona pozwalają mu wystrzeliwać pociski z siłą porównywalną do nowoczesnych karabinów szturmowych.\n" +"\n" +"Z włączonym systemem wspomagania naciągu, może być o wiele łatwiej napięty, kosztem niewielkiego zużycia energii UPS na strzałę. Można go aktywować, aby przełączyć funkcję wspomagania naciągu." #: lang/json/gun_from_json.py msgid "salvage bow" @@ -162143,6 +166832,10 @@ msgid "" "and string are made of shape-memory alloy that help increase string tension " "in the string. The memory alloy requires a UPS source to be activated." msgstr "" +"Łuk wykonany z łatwo dostępnych materiałów, szybko i tanio złożony. Nie jest" +" stworzony, aby być ładnym, ale aby wykonać zadanie. Jego nasadki i cięciwa " +"wykonane są ze stopu z pamięcią kształtu, który pomaga zwiększyć napięcie " +"cięciwy. Stop z pamięcią kształtu wymaga źródła UPS do aktywacji." #: lang/json/gun_from_json.py msgid "salvage crossbow" @@ -162158,6 +166851,9 @@ msgid "" "cheaply put together. While it isn't very pretty, it gets the job done, and" " its drawing mechanism is motorized allowing quick reloading." msgstr "" +"Kusza zbudowana z łatwo dostępnych materiałów, szybko i tanio złożona. Choć " +"nie jest zbyt ładna, spełnia swoje zadanie, a jej mechanizm naciągowy jest " +"napędzany silnikiem, co pozwala na szybkie przeładowanie." #: lang/json/gun_from_json.py msgid "Seyfert 84K" @@ -162173,6 +166869,10 @@ msgid "" "84K pistol doesn't particularly shine or show anything special but it keeps " "you safe on long journeys in the vast dark of Orion's Arm." msgstr "" +"Powszechnie noszony przez załogi statków, które mogą sobie na niego " +"pozwolić, pistolet 84K Seyfert Armistice nie błyszczy specjalnie ani nie " +"wyróżnia się niczym szczególnym, ale zapewnia bezpieczeństwo podczas długich" +" podróży w rozległych ciemnościach Ramienia Oriona." #: lang/json/gun_from_json.py msgid "Gibson S86" @@ -162190,10 +166890,15 @@ msgid "" " the target and user and is usually mounted as it is impossible to fire with" " average strength." msgstr "" +"S86, wyprodukowany przez Gibson Armory, to lekki granatnik zaprojektowany do" +" walki z umiarkowanie opancerzonymi przeciwnikami. Choć siła rażenia S86 nie" +" jest niczym godnym podziwu, to i tak daje on niezłego kopa zarówno celowi, " +"jak i użytkownikowi i zazwyczaj jest montowany, gdyż nie da się z niego " +"strzelać z przeciętną siłą." #: lang/json/gun_from_json.py msgid "DOUBLE" -msgstr "" +msgstr "PODWÓJNY" #: lang/json/gun_from_json.py msgid "eidolon derringer" @@ -162209,6 +166914,9 @@ msgid "" "operations and close range assassination. It will fire up to four 5x50mm " "penetrators simultaneously, to devastating effect." msgstr "" +"Zgrabny, miniaturowy derringer zaprojektowany jako broń zapasowa do tajnych " +"operacji i zabójstw na bliskim dystansie. Może wystrzelić do czterech " +"penetratorów 5x50 mm jednocześnie, z niszczycielskim skutkiem." #: lang/json/gun_from_json.py msgid "landfall survival gun" @@ -162224,6 +166932,9 @@ msgid "" "mounted within a flimsy metal assembly. Cheaply made and outdated in all " "respects, it's only useful in the most extenuating of circumstances." msgstr "" +"Lekki karabin powtarzalny, który jest głównie lufą 6,55 mm zamontowaną w " +"cienkiej metalowej obudowie. Tani i przestarzały pod każdym względem, jest " +"przydatny tylko w najbardziej wyjątkowych okolicznościach." #: lang/json/gun_from_json.py msgid "Accipiter Hawk-00" @@ -162240,6 +166951,10 @@ msgid "" "down suppressive fire; but also makes it exceedingly hard to control while " "unmounted." msgstr "" +"Lekki karabin maszynowy produkowany przez Accipiter Firearms i dystrybuowany" +" przez Wraitheon. Duża szybkostrzelność Hawk-00 sprawia, że idealnie nadaje " +"się on do prowadzenia ognia osłonowego, ale również sprawia, że bardzo " +"trudno jest go kontrolować, gdy nie jest zamontowany." #: lang/json/gun_from_json.py msgid "G&W SR-P9" @@ -162257,6 +166972,11 @@ msgid "" "for the SR-P9, and it remains common long past its initial introduction into" " service." msgstr "" +"Niezwykle wytrzymały i niezawodny karabin typu bullpup, używany przez wojsko" +" UICA podczas wczesnych ekspedycji odzyskiwania. Mimo że SR-P9 wyszedł z " +"użycia prawie dwie dekady temu, wiele prywatnych wojsk i kontrahentów " +"znalazło dla niego zastosowanie, a on sam pozostaje popularny jeszcze długo " +"po tym, jak został wprowadzony do służby." #: lang/json/gun_from_json.py msgid "RM99 revolver" @@ -162285,7 +167005,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "" "This is a pseudo item for monster attacks. If you see this, it's a bug." -msgstr "" +msgstr "To pseudo przedmiot do ataków potworów. Jeśli go widzisz to błąd." #: lang/json/gun_from_json.py msgid "mounted 1kg plasma railgun" @@ -162316,14 +167036,16 @@ msgid "" "A stubby industrial tool used to shoot expanding foam. Using it as a weapon" " might require some creative thinking." msgstr "" +"Pękate narzędzie przemysłowe używane do wystrzeliwania pianki rozprężnej. " +"Użycie go jako broni może wymagać nieco kreatywnego myślenia." #: lang/json/gun_from_json.py msgid "1s." -msgstr "" +msgstr "1s." #: lang/json/gun_from_json.py msgid "3s." -msgstr "" +msgstr "3s." #: lang/json/gun_from_json.py msgid "pshht" @@ -162343,6 +167065,9 @@ msgid "" "laser stun gun embed on its wrist is still functional, and can be used when " "connected to an UPS." msgstr "" +"Odcięta robotyczna ręka z Wartownika Wraitheon. Potężny paralizator elektro-" +"laserowy umieszczony na nadgarstku wciąż działa i może być użyty po " +"podłączeniu do zasilacza UPS." #: lang/json/gun_from_json.py msgid "wrist-trilaser" @@ -162358,10 +167083,13 @@ msgid "" "the wraitheon drone it originally belonged to. Can still be fired when " "connected to an UPS." msgstr "" +"Potężna, trójlufowa broń laserowa, wciąż zamontowana na robotycznej ręce " +"drona Wraitheona, do którego pierwotnie należała. Nadal może być " +"wystrzeliwana po podłączeniu do zasilacza UPS." #: lang/json/gun_from_json.py msgid "trilaser" -msgstr "" +msgstr "trójlaser" #: lang/json/gun_from_json.py msgid "handheld x-ray cannon" @@ -162377,6 +167105,10 @@ msgid "" " modified to use UPS power for firing. Single shot then requires reloading." " Nicknamed the 'Tin Can Killer' for it's ability to destroy power armor." msgstr "" +"Jest to laser rentgenowski zdemontowany z wieżyczki laserowej TX-5LR " +"Cerberus, która został zmodyfikowany, aby używać zasilania UPS do " +"strzelania. Pojedynczy strzał wymaga przeładowania. Nazwany \"Zabójcą " +"Puszek\" za zdolność niszczenia pancerzy wspomaganych." #: lang/json/gun_from_json.py msgid "mounted x-ray cannon" @@ -162418,18 +167150,24 @@ msgid "" "weaponry. Due to its low power, it must be fired in sequence mode to stand " "a chance against hardened foes." msgstr "" +"Popularny pistolet pulsacyjno-laserowy dopuszczony do użytku cywilnego. " +"Bezodrzutowy, energooszczędny i łatwy w użyciu, av-22 jest często noszony " +"jako broń do obrony przez tych, którym brakuje praktyki wymaganej do " +"skutecznego posługiwania się bronią balistyczną. Ze względu na niską moc, " +"aby mieć szansę w starciu z twardymi przeciwnikami, musi być wystrzeliwany w" +" trybie sekwencyjnym." #: lang/json/gun_from_json.py msgid "Pulse " -msgstr "" +msgstr "Impuls" #: lang/json/gun_from_json.py msgid "2s Sequence " -msgstr "" +msgstr "2s Sekwencja" #: lang/json/gun_from_json.py msgid "3s Sequence " -msgstr "" +msgstr "3s Sekwencja" #: lang/json/gun_from_json.py msgid "E-150b" @@ -162446,6 +167184,10 @@ msgid "" "engineering AIs of the late Hyperspace Era, it is as precious as it is " "deadly." msgstr "" +"Srebrny, elegancko wykonany pistolet laserowy, który wystrzeliwuje " +"przebijające pancerz pociski złotego światła. Niezastąpiony historyczny " +"artefakt zbudowany przez inżynierskie SI późnej ery nadprzestrzennej, jest " +"równie cenny, co śmiertelnie niebezpieczny." #: lang/json/gun_from_json.py msgid "V14 laser pistol" @@ -162462,6 +167204,11 @@ msgid "" "its leaked and widely-circulated design specifications allow this weapon to " "retain some popularity within backwater worlds." msgstr "" +"Niewiarygodnie starożytny i przestarzały projekt pistoletu laserowego, " +"którego początki sięgają wczesnej ery kosmicznej na Ziemi. Jako jeden z " +"niewielu pistoletów typu \"otwarty sprzęt\", dzięki przeciekom i szeroko " +"rozpowszechnianym specyfikacjom konstrukcyjnym, broń ta zachowała pewną " +"popularność w zacofanych światach." #: lang/json/gun_from_json.py msgid "xm34 EMP projector" @@ -162481,7 +167228,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "A plasma gun." -msgstr "" +msgstr "Działko plazmowe." #: lang/json/gun_from_json.py msgid "PAM-41 2g" @@ -162499,6 +167246,12 @@ msgid "" "range and damage output. Fired within an atmosphere, its very low range " "makes it dangerous to shooter and target alike." msgstr "" +"Krótki i mały, 2-gramowy plazmowy karabin szynowy, używany czasem przez " +"załogantów jako narzędzie do przebijania kadłuba. Podobnie jak większa broń " +"plazmowa, wystrzeliwuje toroidy plazmy, które detonują przy kontakcie, ale " +"jej zmniejszone rozmiary znacznie ograniczają jej zasięg i możliwości " +"zadawania obrażeń. Strzelając w atmosferze, jej bardzo mały zasięg czyni ją " +"niebezpieczną zarówno dla strzelca, jak i celu." #: lang/json/gun_from_json.py msgid "bionic skullgun" @@ -162511,6 +167264,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "Bionic one-shot subdermal .40 pistol integrated with your head." msgstr "" +"Bioniczny jednostrzałowy podskórny pistolet .40 zintegrowany z twoją głową." #: lang/json/gun_from_json.py msgid "makeshift rail rifle" @@ -162527,6 +167281,11 @@ msgid "" "accelerated to the point of spontaneous combustion by a Lorentz force " "generated by electromagnetic induction, powered by a standard UPS." msgstr "" +"Jednostrzałowa, łamana, napędzana elektrycznie, stalowa wyrzutnia szynowa, " +"ręcznie skonstruowana ze złomu. Hiperszybki metalowy pal, który " +"wystrzeliwuje, jest rozpędzany do progu spontanicznego zapłonu przez siłę " +"Lorenza generowaną indukcją elektromagnetyczną, zasilaną ze standardowego " +"UPS'a." #: lang/json/gun_from_json.py msgid "modified Marlin 39A" @@ -162538,7 +167297,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "A Marlin 39A, modified for use in a vehicle turret." -msgstr "" +msgstr "Marlin 39A, zmodyfikowany do użycia w wieżyczce pojazdu." #: lang/json/gun_from_json.py msgid "modified SKS" @@ -162551,6 +167310,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "An SKS, modified to be suitable for use in a vehicle turret." msgstr "" +"SKS, zmodyfikowany tak, aby nadawał się do użycia w wieżyczce pojazdu." #: lang/json/gun_from_json.py msgid "CRIT .5 LP" @@ -162567,6 +167327,10 @@ msgid "" "compensates for the lack of raw power and yet the gun manages to be " "relatively easy to aim and lightweight due to the superalloy construction." msgstr "" +"Eksperymentalna broń boczna o niskiej mocy, opracowywana w C.R.I.T R&D, .5 " +"LP jest stosunkowo słabym, ale celnym pistoletem laserowym. Dwulufowa " +"konstrukcja rekompensuje brak mocy, a mimo to pistolet jest stosunkowo łatwy" +" w celowaniu i lekki dzięki konstrukcji z superstopu." #: lang/json/gun_from_json.py msgid "CRIT Chain Laser" @@ -162583,6 +167347,10 @@ msgid "" "drill, this gun is a relatively light weapon for the amount of UPS it eats " "and destruction it can cause." msgstr "" +"Wypróbowany prawdziwy ulubieniec z czeluści piekła B+R. Oparty na filmie " +"pewnego badacza, który nagrał trzy sklejone razem .5 LP na ręcznej " +"wiertarce, pistolet ten jest stosunkowo lekką bronią, jak na ilość ładunków " +"UPS, które zjada i zniszczenia, które może spowodować." #: lang/json/gun_from_json.py msgid "CRIT Laser Carbine" @@ -162597,6 +167365,9 @@ msgid "" "A short-barrel lightweight laser gun developed by C.R.I.T R&D. Mainly " "developed to test out a new breakthrough in laser weapons." msgstr "" +"Lekka broń laserowa o krótkiej lufie, opracowana przez dział badawczo-" +"rozwojowy C.R.I.T. Stworzony głównie w celu przetestowania nowego wynalazku " +"w dziedzinie broni laserowej." #: lang/json/gun_from_json.py msgid "CRIT Energy Rifle" @@ -162611,6 +167382,8 @@ msgid "" "A heavy energy gun developed by C.R.I.T R&D. Mainly developed to test out a" " new breakthrough in hybrid weaponry." msgstr "" +"Ciężkie działo energetyczne opracowane przez C.R.I.T B+R. Stworzone głównie " +"w celu przetestowania nowego wynalazku w dziedzinie broni hybrydowej." #: lang/json/gun_from_json.py msgid "CRIT CQB Standard Issue" @@ -162628,6 +167401,11 @@ msgid "" "user's force and the rugged construction with tonfa-like grip can handle " "bashing in enemy heads." msgstr "" +"Prosta broń kombinowana. Ten wojskowej klasy karabinek półautomatyczny łączy" +" w sobie wszechstronność średniego zasięgu 9 mm z mocą strzelby kalibru 12. " +"Aby jeszcze bardziej uzupełnić aspekt walki w zwarciu, kolba jest zbudowana " +"tak, aby wzmocnić siłę użytkownika, a wytrzymała konstrukcja z chwytem " +"przypominającym tonfę poradzi sobie z waleniem wroga po głowie." #: lang/json/gun_from_json.py msgid "CRIT Fire Glove" @@ -162640,10 +167418,11 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "Experimental CQB weapon system under development in C.R.I.T R&D." msgstr "" +"Eksperymentalny system broni do walki w zwarciu opracowywany w C.R.I.T. B+R." #: lang/json/gun_from_json.py msgid "blast" -msgstr "" +msgstr "huk" #: lang/json/gun_from_json.py msgid "pellet gun" @@ -162661,6 +167440,11 @@ msgid "" "short, but the break action charging system requires some arm strength to " "load a pellet." msgstr "" +"Zaskakująco mocny karabin pneumatyczny, którym można niezawodnie polować na " +"drobną zwierzynę. Małe ołowiane lub stopowe pelety, które można załadować, " +"zapewniają mu przyzwoitą moc przy każdym strzale. Jest dość celny i może " +"powodować podobne obrażenia jak .22, ale system ładowania wymaga trochę siły" +" rąk do załadowania peletu." #: lang/json/gun_from_json.py msgid "Plasma Cutter" @@ -162675,6 +167459,8 @@ msgid "" "Experimental cutting tool under development in C.R.I.T R&D. It fires an " "extremely hot wave of plasma that slices into materials." msgstr "" +"Eksperymentalne narzędzie tnące opracowywane w C.R.I.T. B+R. Wystrzeliwuje " +"niezwykle gorącą falę plazmy, która tnie materiały." #: lang/json/gun_from_json.py msgid "Rivet Driver" @@ -162691,6 +167477,10 @@ msgid "" "firing it out, upon reaching a target, the fragile stake explodes into " "shards inside the target." msgstr "" +"Eksperymentalne narzędzie o podwójnym przeznaczeniu, opracowywane w C.R.I.T " +"B+R. Bierze zwykły gwóźdź i wydłuża go w ciągu ułamka sekundy przed " +"wystrzeleniem, po osiągnięciu celu kruchy kolec rozrywa się na drzazgi " +"wewnątrz celu." #: lang/json/gun_from_json.py msgid "Line Gun" @@ -162705,6 +167495,8 @@ msgid "" "Experimental high power cutting tool under development in C.R.I.T R&D. It " "fires plasma in a wide line for slicing into dense materials." msgstr "" +"Eksperymentalne narzędzie tnące o dużej mocy opracowywane w C.R.I.T B+R. " +"Wystrzeliwuje plazmę w szerokiej linii do cięcia gęstych materiałów." #: lang/json/gun_from_json.py msgid "Pulse Rifle" @@ -162720,6 +167512,10 @@ msgid "" "Great for enclosed spaces and mobs of enemies. Shoots alloy rounds which " "instantly mushroom out upon impact." msgstr "" +"Eksperymentalny trójlufowy karabin poddźwiękowy, nad którym trwają prace w " +"dziale badawczo-rozwojowym C.R.I.T. Doskonały do walki w zamkniętych " +"pomieszczeniach i z tłumem wrogów. Wystrzeliwuje pociski ze stopu, które " +"natychmiast wybuchają przy uderzeniu." #: lang/json/gun_from_json.py msgid "Ripper" @@ -162734,10 +167530,12 @@ msgid "" "Experimental EM saw under development in C.R.I.T R&D. Great for distance " "cutting of material." msgstr "" +"Eksperymentalna piła elektromagnetyczna w trakcie rozwoju w C.R.I.T. B+R. " +"Świetna do cięcia materiałów na odległość." #: lang/json/gun_from_json.py msgid "em field saw" -msgstr "" +msgstr "polowa piła em" #: lang/json/gun_from_json.py msgid "" @@ -162765,6 +167563,9 @@ msgid "" "the zombies in your path, all the hulks, the spiders, and those damned mole " "rats." msgstr "" +"Możesz wystrzelić wszystkie pociski tym maleństwem. Wystrzel je prosto we " +"wszystkie zombie na twojej drodze, wszystkie hulki, pająki i te przeklęte " +"kretoszczury." #: lang/json/gun_from_json.py msgid "fake flamesword" @@ -162778,6 +167579,8 @@ msgstr[3] "" msgid "" "a fake gun used by the consecrator. it's a bug if you find this in the wild" msgstr "" +"Fałszywy pistolet używany przez konsekratora. To błąd, jeśli znajdziesz to w" +" naturze." #: lang/json/gun_from_json.py msgid "fake firecannon" @@ -162791,6 +167594,8 @@ msgstr[3] "" msgid "" "Fires an explosive bolt of fiery energy. If you're seeing this, it's a bug." msgstr "" +"Wystrzeliwuje wybuchowy bełt ognistej energii. Jeśli to widzisz, to jest to " +"błąd." #: lang/json/gun_from_json.py msgid "fake smokegun" @@ -162803,6 +167608,8 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "Shoots dangerous radioactive gas. If you're seeing this, it's a bug." msgstr "" +"Wystrzeliwuje niebezpieczny gaz radioaktywny. Jeśli to widzisz, to jest to " +"błąd." #: lang/json/gun_from_json.py msgid "fake gasgun" @@ -162814,7 +167621,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "Shoots pacification gas. If you're seeing this, it's a bug." -msgstr "" +msgstr "Wystrzeliwuje gaz pacyfikujący. Jeśli to widzisz, to jest to błąd." #: lang/json/gun_from_json.py msgid "" @@ -162823,6 +167630,10 @@ msgid "" "mainly in medieval England in wartime, but pierces hide just as well as " "chainmail." msgstr "" +"Dwumetrowy łuk który wymaga znacznej siły do naciągnięcia i może być " +"efektywnie stosowany przez osoby z ponadprzeciętną siłą. Używany głównie w " +"średniowiecznej Anglii w czasach wojen, ale przebija się przez skórę tak " +"samo dobrze jak przez kolczugę." #: lang/json/gun_from_json.py msgid "" @@ -162830,6 +167641,9 @@ msgid "" "much punch as the best of 'em and rewards the skilled shooter with easily-" "crafted ammunition." msgstr "" +"Ten antyczny wzór nie ma szybkostrzelności współczesnych broni, ale daje " +"kopa jak najlepsze z nich, i nagradza wyszkolonego strzelca łatwo " +"produkowaną aminicją." #: lang/json/gun_from_json.py msgid "2-DINO-A7 laser rifle" @@ -162846,6 +167660,10 @@ msgid "" "corporate skulduggery. Fitted with a large internal plutonium cell for " "CyberDinos." msgstr "" +"Najnowocześniejszy karabin laserowy opracowany przez firmę badawczo-" +"rozwojową \"Aerial Labs\". Początkowo jego osiągi dorównywały najlepszym " +"karabinom Rivtechu, ale krążyły plotki o korporacyjnych manipulacjach. " +"Wyposażony w duże wewnętrzne ogniwo plutonowe dla Cyberdinozaurów." #: lang/json/gun_from_json.py msgid "antique pistol" @@ -162862,6 +167680,11 @@ msgid "" "and is theoretically sustainable. Range and accuracy are hampered by lack " "of rifling, but this old design is still plenty lethal." msgstr "" +"Ten przestarzały, jednostrzałowy pistolet mógłby ładnie uzupełnić strój " +"pirata. Chociaż jego ładowanie może być powolne, nie wymaga mosiężnych łusek" +" do wystrzału i teoretycznie jest trwały. Zasięg i celność są ograniczone " +"przez brak ryflowania, ale ta stara konstrukcja jest nadal bardzo " +"śmiercionośna." #: lang/json/gun_from_json.py msgid "antique revolver" @@ -162878,6 +167701,10 @@ msgid "" "fairly lengthy process. Despite its age, this type of weapon would perform " "adequately against most two-legged threats." msgstr "" +"Jest to stary rewolwer zaprojektowany w okresie ekspansji na zachód. " +"Papierowe naboje z czarnym prochem muszą być ładowane do każdego strzału, co" +" jest dość długim procesem. Pomimo swojego wieku, ten typ broni będzie " +"działał odpowiednio przeciwko większości dwunożnych zagrożeń." #: lang/json/gun_from_json.py msgid "antique musket" @@ -162895,6 +167722,12 @@ msgid "" "theoretically sustainable to fire. Range and accuracy are hampered by lack " "of rifling, but this time-tested design is plenty lethal." msgstr "" +"Ta gładkolufowa broń długa o antycznej konstrukcji wyglądałaby lepiej na " +"polu bitwy sprzed 1850 roku, niż w twoich rękach podczas Kataklizmu. Jego " +"ładowanie może być powolne, ale nie wymaga mosiężnych łusek do wystrzału i " +"jest teoretycznie odporny na ogień. Zasięg i celność są ograniczone przez " +"brak ryflowania, ale ta wypróbowana przez czas konstrukcja jest " +"wystarczająco zabójcza." #: lang/json/gun_from_json.py msgid "grenade launcher" @@ -162912,6 +167745,10 @@ msgid "" "personnel. Still deadly against hard or soft targets, depending on what " "cartridges are available." msgstr "" +"Starszy jednostrzałowy granatnik, wyglądający jak ścięta strzelba. Choć w " +"większości został zastąpiony przez wyrzutnie podlufowe, dedykowane modele, " +"takie jak ten, były używane przez służby porządkowe i policję. Nadal jest " +"zabójczy dla twardych i miękkich celów, w zależności od dostępnych nabojów." #: lang/json/gun_from_json.py msgid "automatic grenade launcher" @@ -162930,6 +167767,13 @@ msgid "" " isn't enough to solve your problems, surely a dozen more are. This must be" " mounted on a frame to be fired, and reloading is a bit slow." msgstr "" +"Ta duża, niezgrabnie wyglądająca wyrzutnia wygląda jak potomstwo karabinu " +"maszynowego i moździerza; jej otwór jest ogromny, a zasada działania równie " +"imponująca. Ogromną taśmę z nabojami ładuje się do jej zasobnika, co pozwala" +" na wystrzelenie kilku granatów w krótkim czasie. Jeśli jeden granat " +"wystrzelony z niego nie wystarczy do rozwiązania twoich problemów, to z " +"pewnością kilkanaście innych już tak. Aby wystrzelić, trzeba go zamontować " +"na stelażu, a przeładowywanie jest nieco powolne." #: lang/json/gun_from_json.py msgid "grenade pistol" @@ -162949,6 +167793,13 @@ msgid "" "devastating against hard or soft targets. This could be attached to a " "suitable rifle, if so desired." msgstr "" +"Pękaty, jednostrzałowy pistolet z dużą lufą, przystosowany do wystrzeliwania" +" granatów lub flar. Jest to nieco wygodniejszy sposób przenoszenia " +"granatnika niż montowanie go do karabinu, co jest bardziej popularne wśród " +"sił specjalnych. W ostatnich latach w handlu pojawiły się warianty służące " +"rzekomo do wystrzeliwania rac. Z odpowiednimi nabojami byłby zabójczy w " +"walce z twardymi i miękkimi celami. W razie potrzeby można by go przymocować" +" do odpowiedniego karabinu." #: lang/json/gun_from_json.py msgid "revolver grenade launcher" @@ -162966,6 +167817,12 @@ msgid "" "must be re-wound. Needless to say, six well placed shots is an incredible " "amount of firepower, depending on the cartridges loaded." msgstr "" +"Ta wyglądająca jak wielki rewolwer z kreskówki wyrzutnia jest w stanie " +"wystrzelić sześć granatów w krótkim odstępie czasu. Jej ogromny cylinder " +"jest nawijany przez sprężynę zegarową, co przyspiesza wystrzał, ale " +"spowalnia przeładowanie, gdyż trzeba go ponownie nawijać. Nie trzeba " +"dodawać, że sześć dobrze ulokowanych strzałów to niesamowita siła ognia, " +"zależna od załadowanych nabojów." #: lang/json/gun_from_json.py msgid "cowboy carbine" @@ -162983,6 +167840,11 @@ msgid "" "the number of calibers carried and squeeze more power from their pistol " "ammunition." msgstr "" +"Od wczesnych dni ekspansji na zachodzie, kiedy zaopatrzenie w amunicję było " +"rzadkie, strzelcy starali się dzielić amunicję pomiędzy broń boczną i długą." +" Ten karabinek dźwigniowy z magazynkiem rurowym pozwala strzelcowi " +"ograniczyć liczbę noszonych kalibrów i wycisnąć więcej mocy z amunicji " +"pistoletowej." #: lang/json/gun_from_json.py msgid "machine pistol" @@ -162999,6 +167861,11 @@ msgid "" " Machine pistols mostly see use by vehicle crewmen or bodyguards of VIPs. " "Due to its preposterous rate of fire it is difficult to control." msgstr "" +"Ten pistolet to malutki pistolet maszynowy, który można wsadzić do kabury i " +"z którego magazynka można strzelać z zawrotną szybkością do każdego wroga na" +" bliskim dystansie. Pistolety maszynowe są najczęściej używane przez " +"załogantów pojazdów lub ochroniarzy VIP-ów. Ze względu na nieprawdopodobną " +"szybkostrzelność jest on trudny do opanowania." #: lang/json/gun_from_json.py msgid "defensive pistol" @@ -163015,6 +167882,10 @@ msgid "" "capable of meeting FBI penetration minimums, the lack of a shoulder stock " "limits its utility." msgstr "" +"Nowoczesny pistolet na służbę, do wojska lub obrony osobistej, z odłączanym " +"magazynkiem pudełkowym i niezawodną akcją. Mimo, że jego komora nabojowa " +"jest w stanie spełnić minimalne wymagania FBI w zakresie penetracji, to brak" +" kolby na ramię ogranicza jego użyteczność." #: lang/json/gun_from_json.py msgid "survivalist carbine" @@ -163032,6 +167903,11 @@ msgid "" "with duty pistols, allowing one to transition to a more stable weapon " "without carrying extra ammo or magazines." msgstr "" +"Te małe karabinki dzielą amunicję i magazynki z popularnymi pistoletami, " +"oferując tym samym większą kontrolę nad karabinkiem niż zwykły karabin, " +"jednocześnie zmniejszając koszty amunicji. Ze względu na ich kompatybilność," +" dobrze współgrają z pistoletami służbowymi, pozwalając na przejście do " +"bardziej stabilnej broni bez noszenia dodatkowej amunicji lub magazynków." #: lang/json/gun_from_json.py msgid "police revolver" @@ -163050,6 +167926,12 @@ msgid "" "make for a serviceable sidearm, and there are no magazines for you to lose " "or damage." msgstr "" +"Rewolwery takie jak ten, wyposażone w komory na standardowe kalibry obronne," +" były ulubioną bronią wydziałów policji przez prawie sto lat, aż do " +"strzelaniny w Miami w 1986 roku. Później powolne przeładowywanie i " +"strzelanie z rewolwerów uznano za wadę; mimo to, celność tego modelu i " +"umiarkowany odrzut sprawiają, że jest to przydatna broń boczna, a do tego " +"nie ma magazynków, które można zgubić lub uszkodzić." #: lang/json/gun_from_json.py msgid "submachine gun" @@ -163067,6 +167949,12 @@ msgid "" "controllable in automatic fire. It feeds from detachable box magazines, " "which are easy to unload into close range targets." msgstr "" +"Ta kompaktowa broń długa, strzelająca amunicją pistoletową, jest idealna dla" +" żołnierzy walczących w okopach, załóg pojazdów, oddziałów SWAT i sił " +"specjalnych. Choć nie jest tak celna jak prawdziwy karabin, zwłaszcza na " +"większych odległościach, jest bardzo stabilna w ogniu automatycznym. Broń " +"zasilana jest z odłączanych magazynków pudełkowych, które można łatwo " +"opróżnić do celów znajdujących się w bliskiej odległości." #: lang/json/gun_from_json.py msgid "survivor subgun" @@ -163085,6 +167973,13 @@ msgid "" "their nations well enough, so this should be good for zombies… right? " "Accepts standard pistol ammunition." msgstr "" +"Prymitywnie skonstruowany, w pełni automatyczny karabin maszynowy, " +"obsługujący standardowe magazynki pistoletowe i do karabinów maszynowych. " +"Ciężki rygiel utrudnia celne strzelanie, a jego wątpliwa konstrukcja " +"sprawia, że jest mało niezawodny i długowieczny. Podobne desperackie " +"konstrukcje z czasów drugiej wojny światowej służyły swoim narodom " +"wystarczająco dobrze, więc to powinno być dobre na zombie... prawda? " +"Akceptuje standardową amunicję pistoletową." #: lang/json/gun_from_json.py msgid "hand cannon" @@ -163102,6 +167997,11 @@ msgid "" "deficiencies. Though traditionally such magnums are revolvers, this one is " "a magazine fed semi-automatic." msgstr "" +"Ten duży pistolet jest prawie tak ciężki jak mały karabinek i równie " +"potężny. Strzelający mocnymi kalibrami magnum, nadaje się do polowania na " +"średnią zwierzynę, ludzi lub do zniwelowania czyichś odczuwalnych " +"niedostatków. Choć tradycyjnie takie magnumy to rewolwery, ten jest " +"półautomatem zasilanym z magazynka." #: lang/json/gun_from_json.py msgid "magnum levergun" @@ -163119,6 +168019,11 @@ msgid "" "number of calibers carried, and allow you to squeeze more power from " "ammuntion." msgstr "" +"Nowoczesna interpretacja klasycznego westernowego karabinu dźwigniowego. Ten" +" duży karabin akceptuje zarówno potężną amunicję pistoletową magnum, jak i " +"słabszą amunicję pistoletową. Noszenie tego karabinu obok pistoletu magnum " +"pozwoliłoby zredukować ilość noszonych kalibrów, oraz pozwoliłoby wycisnąć " +"więcej mocy z amunicji." #: lang/json/gun_from_json.py msgid "handmade magnum carbine" @@ -163135,6 +168040,11 @@ msgid "" "with a rudimentary lever action system. Its powerful cartridge and relative" " precision should serve well against zombies and medium game." msgstr "" +"Prymitywnie skonstruowany karabinek, posiadający komory na amunicję " +"pistoletową magnum i standardową amunicję pistoletową. Karabinek zasilany " +"jest z komercyjnych magazynków pistoletowych i ryglowany za pomocą prostego " +"systemu dźwigniowego. Jego mocny nabój i względna precyzja powinny dobrze " +"służyć przeciwko zombie i średniej zwierzynie." #: lang/json/gun_from_json.py msgid "pipe magnum" @@ -163151,6 +168061,10 @@ msgid "" "assembly to fire it. There's no extractor, so it might be slow to reload, " "and its construction makes for poor reliability and longevity." msgstr "" +"Broń palna wykonana z mocnej rury, wzmocniona przy komorze. Mieści jeden " +"nabój na amunicję pistoletową standardową lub magnum, a do jej odpalania " +"służy prymitywny mechanizm. Nie ma wyciągu, więc przeładowywanie może być " +"powolne, a jej konstrukcja sprawia, że jest zawodna i nietrwała." #: lang/json/gun_from_json.py msgid "hunting magnum" @@ -163167,6 +168081,11 @@ msgid "" "revolvers' cylinders can thus chamber both magnum and standard pistol " "ammunition. You could take medium to large game with this hefty piece." msgstr "" +"Wcześni myśliwi z bronią palną pomogli rozwinąć tę rewolwerową amunicję " +"magnum ze standardowych kalibrów, które wymagały cięższych rewolwerów, aby " +"bezpiecznie z niej strzelać. Cylindry tych rewolwerów mogą więc pomieścić " +"zarówno amunicję magnum, jak i standardową amunicję pistoletową. Można z " +"niego strzelać do średniej i dużej zwierzyny." #: lang/json/gun_from_json.py msgid "plinker carbine" @@ -163183,6 +168102,10 @@ msgid "" "of holding an impressive amount of its small cartridges. You could take " "small game with this, but anything bigger might not even notice." msgstr "" +"Z prawie nieistniejącym odrzutem i niedrogą amunicją, karabiny takie jak ten" +" są popularną bronią dla początkujących. Posiada wbudowany magazynek, który " +"jest w stanie pomieścić imponującą ilość małych naboi. Można z niego " +"strzelać do małej zwierzyny, ale coś większego może nawet nie zauważyć." #: lang/json/gun_from_json.py msgid "target pistol" @@ -163199,6 +168122,11 @@ msgid "" "unsuited for taking on anything but small game, as it is meant to poke holes" " in paper. Accepts box magazines." msgstr "" +"Ten średniej wielkości pistolet wystrzeliwuje tanią i powszechną amunicję, i" +" jest wyjątkowo popularny do ćwiczeń lub strzelania do celu. Pistolet ten " +"nie nadaje się do strzelania do niczego poza drobną zwierzyną, gdyż jego " +"przeznaczeniem jest robienie dziur w papierze. Akceptuje magazynki " +"pudełkowe." #: lang/json/gun_from_json.py msgid "zip gun" @@ -163216,6 +168144,11 @@ msgid "" "might be slow to reload, and its construction leaves its longevity in " "question." msgstr "" +"Prymitywna, jednostrzałowa broń palna wykonana z improwizowanych lub domowej" +" roboty elementów, z komorą na drobną amunicję. Takie pistolety często " +"znajdowały się w rękach przestępców i powstańców. Nie posiada wyciągu, więc " +"przeładowywanie może być powolne, a jej konstrukcja stawia pod znakiem " +"zapytania jej długowieczność." #: lang/json/gun_from_json.py msgid "assault rifle" @@ -163233,6 +168166,11 @@ msgid "" "large creatures and light vehicles, this should take care of most of your " "problems out to several hundred meters." msgstr "" +"Karabiny takie jak ten, będące efektem dziesięcioleci udoskonaleń, są " +"poręczne, niezawodne i łatwe do przystosowania. Jako karabin szturmowy, jest" +" w stanie zapewnić zarówno celny ogień półautomatyczny, jak i serie ognia " +"automatycznego. W przypadku dużych stworzeń i lekkich pojazdów, powinien " +"załatwić większość twoich problemów na dystansie do kilkuset metrów." #: lang/json/gun_from_json.py msgid "light machine gun" @@ -163251,6 +168189,12 @@ msgid "" "does allow for a considerable amount of energy to be sent down range. Slow " "to reload." msgstr "" +"Lekki karabin maszynowy jest doskonałym narzędziem do prowadzenia ognia " +"zaporowego, ważnej części taktyki oddziału. Jego podajnik taśmowy pozwala na" +" załadowanie setek pocisków, a ciężkie komponenty wytrzymują długie serie " +"ognia. Lekki karabin maszynowy nie jest może tak precyzyjny jak karabin " +"służbowy, ale pozwala na wysłanie znacznej ilości energii na odległość. " +"Wolno się przeładowuje." #: lang/json/gun_from_json.py msgid "sniper rifle" @@ -163267,6 +168211,11 @@ msgid "" "interfaces for optics and supports. With care and practice, all should be " "quite capable of eliminating bipedal threats from very safe ranges." msgstr "" +"Karabiny snajperskie zaspokajają potrzeby wojska, policji i osób cywilnych w" +" zakresie precyzyjnego, celnego ognia. Nowoczesne egzemplarze posiadają " +"odłączane magazynki i różne interfejsy montażowe dla optyki i podpór. Przy " +"odpowiedniej dbałości i praktyce, wszystkie powinny być w stanie " +"wyeliminować dwunożne zagrożenie z bezpiecznego dystansu." #: lang/json/gun_from_json.py msgid "sporter carbine" @@ -163285,6 +168234,12 @@ msgid "" "rifles are just as adequate for taking on anything smaller than large game, " "however." msgstr "" +"Choć często błędnie nazywany karabinem szturmowym, ten powszechny, tani " +"karabinek zasilany z magazynka nie jest zdolny do prowadzenia ognia " +"automatycznego. Choć są prawie tak samo skuteczne jak prawdziwy karabin, " +"szersza gama komponentów i różny poziom konserwacji sprawiają, że są one " +"mniej niezawodne niż ich wojskowi bracia. Karabinki te są jednak równie " +"odpowiednie do walki z wszystkim, co nie jest zbyt dużą zwierzyną." #: lang/json/gun_from_json.py msgid "foreign assault rifle" @@ -163300,6 +168255,9 @@ msgid "" "slightly unwieldy to use as an infantry weapon. Just different enough from " "local weaponry that the same ammunition cannot be shared between them." msgstr "" +"Karabin bojowy popularny wśród Exodii. Niezawodny i potężny, choć nieco " +"nieporęczny w użyciu jako broń piechoty. Na tyle różny od lokalnej broni, że" +" nie można używać do niego tej samej amunicji." #: lang/json/gun_from_json.py msgid "foreign sniper rifle" @@ -163314,6 +168272,8 @@ msgid "" "A sniper rifle popular among the Exodii. Just different enough from local " "weaponry that the same ammunition cannot be shared between them." msgstr "" +"Karabin snajperski popularny wśród Exodii. Różni się od lokalnej broni na " +"tyle, że nie można używać tej samej amunicji." #: lang/json/gun_from_json.py msgid "railgun rifle" @@ -163328,6 +168288,8 @@ msgid "" "A handheld railgun which magnetically propels a ferromagnetic projectile " "using an alternating current. Powered by UPS." msgstr "" +"Ręczna broń szynowa, która magnetycznie napędza ferromagnetyczny pocisk za " +"pomocą prądu zmiennego. Zasilany przez UPS." #: lang/json/gun_from_json.py msgid "combination rifle shotgun" @@ -163343,6 +168305,9 @@ msgid "" "shotgun barrels. Historically used by egomaniac hunters in Africa, now used" " by their egomaniac descendants in New England." msgstr "" +"Broń palna łamana, składająca się z lufy karabinu i dwóch luf strzelby " +"gładkolufowej. Historycznie używana przez egomaniaków w Afryce, obecnie " +"używana przez ich egomaniackich potomków w Nowej Anglii." #: lang/json/gun_from_json.py msgid "anti-materiel rifle" @@ -163359,6 +168324,11 @@ msgid "" "material weapon is best suited for blinding tanks, shooting at aircraft, or " "destroying explosives. It feeds from comically oversized magazines." msgstr "" +"Duży, budzący grozę i przesadnie rozbudowany, ten potężny karabin " +"wystrzeliwuje ogromne pociski ze względną precyzją. Choć przypomina karabin " +"snajperski, ta broń przeciwsprzętowa najlepiej nadaje się do oślepiania " +"czołgów, ostrzeliwania samolotów lub niszczenia materiałów wybuchowych. " +"Karabin zasilany jest z komicznie dużych magazynków." #: lang/json/gun_from_json.py msgid "elephant rifle" @@ -163376,6 +168346,12 @@ msgid "" "recoil is monstrous. You could probably kill anything with this, especially" " if you were to fire both barrels at once." msgstr "" +"Elegancko grawerowany podwójny karabin, wykonany z niebieskiej stali o " +"wysokim połysku i z rzeźbionego drewna, jest prawie zbyt ładny, by z niego " +"strzelać. Twoje ramię może cię błagać, żebyś tego nie robił; komory są " +"prawie na tyle szerokie, że zmieszczą się w nich dwa palce, a odrzut jest " +"potworny. Prawdopodobnie mógłbyś tym zabić wszystko, zwłaszcza gdybyś " +"wystrzelił z obu luf naraz." #: lang/json/gun_from_json.py msgid "heavy machine gun" @@ -163393,6 +168369,12 @@ msgid "" "drones are just as susceptible, as are any other 'smaller' threats. Slow to" " reload, incredibly loud, and must be mounted to be fired." msgstr "" +"Ten duży, nieporęczny karabin maszynowy z napędem pasowym wystrzeliwuje " +"ogromne pociski, przeznaczone pierwotnie do walki z pojazdami na przełomie " +"wieków. Choć nie nadaje się już do zwalczania nowoczesnych czołgów czy " +"samolotów, mniej opancerzone pojazdy czy drony są równie podatne na ataki, " +"jak wszystkie inne \"mniejsze\" zagrożenia. Wolno się przeładowuje, jest " +"niewiarygodnie głośna i musi być zamontowana, by móc wystrzelić. " #: lang/json/gun_from_json.py msgid "disposable rocket launcher" @@ -163410,6 +168392,11 @@ msgid "" " portability and lack of dead weight once expended. Has a backblast, so " "make sure nothing you mind destroying is behind you." msgstr "" +"Wyrzutnia na jedną rakietę, zbudowana z włókna szklanego, z plastikowymi " +"celownikami i tytanową lufą. Choć nie jest tak skuteczna jak inne bronie " +"przeciwpancerne, prawdziwą wartością tej jednorazowej wyrzutni rakiet jest " +"jej poręczność i brak zbędnego balastu po zużyciu. Ma odrzut wsteczny, więc " +"upewnij się, że nic, co nie planujesz zniszczyć, nie znajduje się za tobą." #: lang/json/gun_from_json.py msgid "recoilless rocket launcher" @@ -163430,6 +168417,15 @@ msgid "" "tremendous backblast, so make sure nothing you mind destroying is behind " "you." msgstr "" +"Ta ciężka, gigantyczna rura gwintowana posiada skomplikowany celownik " +"optyczny i może wystrzeliwać różnorodne ładunki, w tym rakiety lub pociski " +"naprowadzane laserem. W zależności od załadowanej głowicy bojowej, broń ta " +"jest skuteczna przeciwko starszym czołgom, większości pojazdów, bunkrom i " +"personelowi. Broń ta jest przeznaczona do obsługi przez dwuosobową załogę, " +"więc przeładowywanie może być nieco powolne. Bezodrzutowa konstrukcja " +"pozwala na większy zasięg i obrażenia, ale wytwarza ogromny podmuch " +"wsteczny, więc upewnij się, że nic, co nie chcesz zniszczyć, nie znajduje " +"się za tobą." #: lang/json/gun_from_json.py msgid "double-barrel shotgun" @@ -163446,6 +168442,10 @@ msgid "" " Shotshells come in many varieties, and shotguns are suitable for anything " "from some large game to small birds." msgstr "" +"Staromodna, dwulufowa strzelba, ze spustem dla każdej lufy. Strzały z niej " +"są niezwykle szybkie, ale przeładowywanie jest nieco powolne. Naboje śrutowe" +" występują w wielu odmianach, a strzelby nadają się do wszystkiego, od dużej" +" zwierzyny po małe ptaki." #: lang/json/gun_from_json.py msgid "" @@ -163454,6 +168454,11 @@ msgid "" "there are no extractors or ejectors. Shotshells come in many varieties, and" " shotguns are suitable for anything from some large game to small birds." msgstr "" +"Prymitywnie wykonana, dwulufowa strzelba, ze spustem dla każdej lufy. " +"Strzały z niej są niezwykle szybkie, ale przeładowywanie jest powolne, " +"ponieważ nie ma wyciągu ani wyrzutnika. Naboje śrutowe występują w wielu " +"odmianach, a strzelby nadają się do wszystkiego, od dużej zwierzyny po małe " +"ptaki." #: lang/json/gun_from_json.py msgid "sporting shotgun" @@ -163471,6 +168476,11 @@ msgid "" "varieties, and shotguns are suitable for anything from some large game to " "small birds." msgstr "" +"Strzelby sportowe, o prostej, popularnej konstrukcji, są używane przez " +"stróżów prawa, cywilów i czasami przez wojsko. Jej wewnętrzny magazynek jest" +" niewielki jak na współczesne standardy, a przeładowywanie może być dość " +"powolne. Naboje śrutowe występują w wielu odmianach, a strzelby nadają się " +"do wszystkiego, od dużej zwierzyny po małe ptaki." #: lang/json/gun_from_json.py msgid "tactical shotgun" @@ -163489,6 +168499,12 @@ msgid "" "known for being somewhat finicky, these can be tuned to run with some " "reliability." msgstr "" +"Strzelba z odłączanym magazynkiem, skierowana głównie do zbyt " +"entuzjastycznych cywilów. Ten rodzaj strzelby, wyposażony w szyny i groźny " +"czarny wygląd, nie wygląda na broń o przeznaczeniu sportowym. Magazynki " +"skracają czas przeładowania związany z bronią śrutową. Choć znane są z tego," +" że są nieco kłopotliwe, można je dostroić tak, aby działały z pewną " +"niezawodnością." #: lang/json/gun_from_json.py msgid "Ichaival" @@ -163504,6 +168520,9 @@ msgid "" " string. It has gold and silver ornaments on it, as well as an ornate " "Raven." msgstr "" +"Ichaival, łuk Odyna. Podobno wystrzeliwuje 10 strzał przy każdym " +"naciągnięciu cięciwy. Posiada złote i srebrne ornamenty, a także ozdobnego " +"kruka." #: lang/json/gun_from_json.py msgid "Druid composite bow" @@ -163518,6 +168537,8 @@ msgid "" "A bow made of multiple materials to maximize energy efficiency. There are " "two Druid runes embedded at the tips." msgstr "" +"Łuk wykonany z wielu materiałów, aby zmaksymalizować wydajność energetyczną." +" Na jego końcówkach osadzone są dwie runy druidów." #: lang/json/gun_from_json.py msgid "M47A1 Techno-Medusa" @@ -163534,6 +168555,11 @@ msgid "" "reliability with smaller cartridges, it is not as accurate as dedicated " "caliber revolvers due to freebore." msgstr "" +"Ulepszona magicznie aktualizacja M47 Medusa firmy Phillips & Rodgers, " +"wielokalibrowego rewolweru przeznaczonego dla survivalowców. Podczas gdy " +"Technomancja poprawia niezawodność przy użyciu mniejszych nabojów, nie jest " +"on tak celny jak rewolwery dedykowane dla danego kalibru z powodu otworu " +"swobodnego." #: lang/json/gun_from_json.py msgid "Pistolet modèle Gardes de la Marine" @@ -163550,6 +168576,10 @@ msgid "" "unspeakably-rare heirlooms that remain combat-worthy due to their magical " "nature." msgstr "" +"Te pięknie wykonane, zaczarowane pistolety skałkowe zostały stworzone " +"specjalnie dla młodych szlacheckich potomków w Gardes de la Marine. Istnieją" +" do dziś jako niewypowiedzianie rzadkie pamiątki, które dzięki swej " +"magicznej naturze pozostają zdolne do walki." #: lang/json/gun_from_json.py msgid "gunblade" @@ -163565,6 +168595,9 @@ msgid "" "barrel pump shotgun attached to the blade's spine for finishing blows or a " "first strike." msgstr "" +"Zbudowany podobnie do falkaty, ten pochylony ku przodowi nóż ma przymocowaną" +" do grzbietu krótkolufową strzelbę-pompkę, służącą do dokańczania ciosów lub" +" pierwszego uderzenia." #: lang/json/gun_from_json.py msgid "Mosin-Nagant 91/30 Boreal" @@ -163580,6 +168613,9 @@ msgid "" "chambered in 7.62x51 NATO. The barrel is enchanted to give bullets a minor " "freezing property." msgstr "" +"Zmodernizowana wersja Mosin-Nagant 1891/30 przez Cannith Industries, z " +"komorą w kalibrze 7.62x51 NATO. Lufa jest zaczarowana, aby nadać pociskom " +"niewielkie właściwości zamrażające." #: lang/json/gun_from_json.py msgid "Bone Launcher" @@ -163595,6 +168631,9 @@ msgid "" "from bone and coated in flesh. There is an biomancer rune embedded in the " "tooth like trigger." msgstr "" +"Niegdyś mięsna włócznia, teraz groteskowy przedmiot przypominający rurę, z " +"lufą wykonaną z kości i pokrytą mięsem. W spust przypominający ząb " +"wmontowana jest runa biomanty." #: lang/json/gun_from_json.py msgid "shotcestus" @@ -163609,6 +168648,9 @@ 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 "" +"Strzelba o podwójnej lufie zamontowana na metalowym cestusie. Brak obsady " +"absorbującej odrzut sprawia, że do oddania strzału potrzebna jest pewna " +"siła." #: lang/json/gun_from_json.py msgid "Woodbow" @@ -163623,6 +168665,9 @@ 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 "" +"Magicznie wyczarowany ozdobny łuk z litego, elastycznego drewna. Po " +"naciągnięciu cięciwy do wystrzału pojawia się dopasowana, wyczarowana " +"drewniana strzała." #: lang/json/gun_from_json.py msgid "impact sling" @@ -163637,10 +168682,12 @@ msgid "" "A leather sling, quivering with energy when in your palm to the point of " "almost tearing. A pebble appears when you begin spinning it." msgstr "" +"Skórzana proca, która w twojej dłoni pulsuje energią do tego stopnia, że " +"prawie się rozrywa. Kamyk pojawia się, gdy zaczynasz nią kręcić." #: lang/json/gun_from_json.py msgid "Fake gun that fires barbed javelins." -msgstr "" +msgstr "Fałszywa broń, która wystrzeliwuje kolczaste oszczepy." #: lang/json/gunmod_from_json.py msgid "arrow rest" @@ -163671,9 +168718,9 @@ msgstr "łuk" msgid "bow stabilizer" msgid_plural "bow stabilizers" msgstr[0] "stabilizator łuku" -msgstr[1] "stabilizator łuku" -msgstr[2] "stabilizator łuku" -msgstr[3] "stabilizator łuku" +msgstr[1] "stabilizatory łuku" +msgstr[2] "stabilizatorów łuku" +msgstr[3] "stabilizatora łuku" #: lang/json/gunmod_from_json.py msgid "" @@ -163710,7 +168757,7 @@ msgid "bow dampening kit" msgid_plural "bow dampening kits" msgstr[0] "zestaw tłumiący łuk" msgstr[1] "zestawy tłumiące łuk" -msgstr[2] "zestawów tłumiącuch łuk" +msgstr[2] "zestawów tłumiących łuk" msgstr[3] "zestawu tłumiącego łuk" #: lang/json/gunmod_from_json.py @@ -163736,10 +168783,10 @@ msgstr "kusza" #: lang/json/gunmod_from_json.py msgid "belt clip" msgid_plural "belt clips" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zaczep do paska" +msgstr[1] "zaczepy do paska" +msgstr[2] "zaczepów do paska" +msgstr[3] "zaczepu do paska" #: lang/json/gunmod_from_json.py msgid "" @@ -163749,44 +168796,48 @@ msgid "" " to carry with the chamber empty or select a firearm with a very heavy " "trigger pull." msgstr "" +"Jest to zaczep do paska, który mocuje się do chwytu lub suwadła pistoletu w " +"celu ułatwienia „meksykańskiego noszenia”, czyli noszenia bez kabury. Nie " +"zapewnia on żadnej ochrony spustu, więc użytkownikom zaleca się noszenie z " +"pustą komorą lub wybór broni palnej o bardzo silnym naciągu spustu." #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "rugerlcp" -msgstr "" +msgstr "rugerlcp" #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "kp32" -msgstr "" +msgstr "kp32" #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "kp3at" -msgstr "" +msgstr "kp3at" #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "kpf9" -msgstr "" +msgstr "kpf9" #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "cop_38" -msgstr "" +msgstr "cop_38" #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "moss_brownie" -msgstr "" +msgstr "moss_brownie" #: lang/json/gunmod_from_json.py msgid "ported barrel" msgid_plural "ported barrels" msgstr[0] "nawiercona lufa" -msgstr[1] "nawiercona lufa" -msgstr[2] "nawiercona lufa" -msgstr[3] "nawiercona lufa" +msgstr[1] "nawiercone lufy" +msgstr[2] "nawierconych luf" +msgstr[3] "nawierconej lufy" #: lang/json/gunmod_from_json.py msgid "" @@ -163804,9 +168855,9 @@ msgstr "lufa" msgid "shortened barrel" msgid_plural "shortened barrels" msgstr[0] "skrócona lufa" -msgstr[1] "skrócona lufa" -msgstr[2] "skrócona lufa" -msgstr[3] "skrócona lufa" +msgstr[1] "skrócone lufy" +msgstr[2] "skróconych luf" +msgstr[3] "skróconej lufy" #: lang/json/gunmod_from_json.py msgid "" @@ -163814,36 +168865,40 @@ msgid "" "increase in noise, but also greatly improves the ease with which the weapon " "can be carried and wielded." msgstr "" -"Skrócona lufa skutkuje zauważalnie zredukowaną celnością, i lekko zwiększoną" -" głośnością, ale też znacznie ułatwia noszenie i używanie broni." +"Skrócona lufa skutkuje zauważalnie zredukowaną celnością i lekko zwiększoną " +"głośnością, ale też znacznie ułatwia noszenie i używanie broni." #: lang/json/gunmod_from_json.py msgid "upstest" msgid_plural "upstests" msgstr[0] "upstest" -msgstr[1] "upstest" -msgstr[2] "upstest" -msgstr[3] "upstest" +msgstr[1] "upstesty" +msgstr[2] "upstestów" +msgstr[3] "upstesta" #: lang/json/gunmod_from_json.py msgid "" "Testmod for UPS drain on mods, this should never spawn, if you see this, " "it's a bug. 50x more UPS drain." msgstr "" +"Mod testowy do zużywania UPS-a na modach, nigdy nie powinien się spawnować, " +"więc jak to widzisz to bug. Zużywa 50-krotnie szybciej UPS." #: lang/json/gunmod_from_json.py msgid "Power shot" msgid_plural "Power shots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "strzał mocy" +msgstr[1] "strzały mocy" +msgstr[2] "strzałów mocy" +msgstr[3] "strzału mocy" #: lang/json/gunmod_from_json.py msgid "" "This is a pseudo item -- the builtin part of a fusion blaster for the " "maximum power firing mode." msgstr "" +"Jest to pseudo przedmiot - wbudowana część blastera fuzyjnego do trybu " +"strzelania z maksymalną mocą." #: lang/json/gunmod_from_json.py msgid "underbarrel" @@ -163852,10 +168907,10 @@ msgstr "podlufowe" #: lang/json/gunmod_from_json.py msgid "brass catcher" msgid_plural "brass catchers" -msgstr[0] "łuskochwyt" -msgstr[1] "łuskochwyt" -msgstr[2] "łuskochwyt" -msgstr[3] "łuskochwyt" +msgstr[0] "łapacz łusek" +msgstr[1] "łapacze łusek" +msgstr[2] "łapaczy łusek" +msgstr[3] "łapacza łusek" #: lang/json/gunmod_from_json.py msgid "" @@ -163868,14 +168923,14 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid ".300 AAC Blackout AR-15 conversion kit" msgid_plural ".300 AAC Blackout AR-15 conversion kits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zestaw do konwersji AR-15 .300 AAC Blackout" +msgstr[1] "zestawy do konwersji AR-15 .300 AAC Blackout" +msgstr[2] "zestawów do konwersji AR-15 .300 AAC Blackout" +msgstr[3] "zestawu do konwersji AR-15 .300 AAC Blackout" #: lang/json/gunmod_from_json.py msgid "A complete AR-15 upper assembly with a .300 AAC Blackout barrel." -msgstr "" +msgstr "Kompletna zespół komory zamkowej AR-15 z lufą .300 AAC Blackout." #: lang/json/gunmod_from_json.py msgid "bore" @@ -163889,49 +168944,51 @@ msgstr "ar15" #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "m4a1" -msgstr "" +msgstr "m4a1" #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "m16a4" -msgstr "" +msgstr "m16a4" #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "h&k416a5" -msgstr "" +msgstr "h&k416a5" #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "m27iar" -msgstr "" +msgstr "m27iar" #: lang/json/gunmod_from_json.py msgid "grenade cradle for staff sling" msgid_plural "grenade cradles for staff slings" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kołyska granatów procy na kiju" +msgstr[1] "kołyski granatów procy na kiju" +msgstr[2] "kołysek granatów procy na kiju" +msgstr[3] "kołyski granatów procy na kiju" #: lang/json/gunmod_from_json.py msgid "" "A larger cradle with a longer sling for fitting to a staff sling to enable " "it to throw grenades." msgstr "" +"Większa kołyska z dłuższą pętlą do mocowania do procy na kiju, aby umożliwić" +" rzucanie granatami." #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "staff_sling" -msgstr "" +msgstr "proca_na_kiju" #: lang/json/gunmod_from_json.py msgid "lightweight replacement furniture" msgid_plural "lightweight replacement furnitures" -msgstr[0] "lekkie zamienniki obudowy" +msgstr[0] "lekki zamiennik obudowy" msgstr[1] "lekkie zamienniki obudowy" -msgstr[2] "lekkie zamienniki obudowy" -msgstr[3] "lekkie zamienniki obudowy" +msgstr[2] "lekkich zamienników obudowy" +msgstr[3] "lekkiego zamiennika obudowy" #: lang/json/gunmod_from_json.py msgid "" @@ -163948,10 +169005,10 @@ msgstr "chwyt" #: lang/json/gunmod_from_json.py msgid "ergonomic grip" msgid_plural "ergonomic grips" -msgstr[0] "ergonomiczny uchwyt" -msgstr[1] "ergonomiczny uchwyt" -msgstr[2] "ergonomiczny uchwyt" -msgstr[3] "ergonomiczny uchwyt" +msgstr[0] "ergonomiczny chwyt" +msgstr[1] "ergonomiczne chwyty" +msgstr[2] "ergonomicznych chwytów" +msgstr[3] "ergonomicznego chwytu" #: lang/json/gunmod_from_json.py msgid "" @@ -163962,23 +169019,25 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "breacher grip" msgid_plural "breacher grips" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "chwyt wyważacza" +msgstr[1] "chwyty wyważacza" +msgstr[2] "chwytów wyważacza" +msgstr[3] "chwytu wyważacza" #: lang/json/gunmod_from_json.py msgid "" "A very uncomfortable straight grip. Clearly not intended for regular use." msgstr "" +"Bardzo niewygodny prosty uchwyt. Wyraźnie nie jest przeznaczony do zwykłego " +"użytku." #: lang/json/gunmod_from_json.py msgid "beam scatterer" msgid_plural "beam scatterers" msgstr[0] "rozpraszacz wiązki" -msgstr[1] "rozpraszacz wiązki" -msgstr[2] "rozpraszacz wiązki" -msgstr[3] "rozpraszacz wiązki" +msgstr[1] "rozpraszacze wiązki" +msgstr[2] "rozpraszaczów wiązki" +msgstr[3] "rozpraszacza wiązki" #: lang/json/gunmod_from_json.py msgid "" @@ -163997,24 +169056,27 @@ msgstr "soczewki" #: lang/json/gunmod_from_json.py msgid "focusing lens" msgid_plural "focusing lenses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "soczewka skupiająca" +msgstr[1] "soczewki skupiającej" +msgstr[2] "soczewek skupiających" +msgstr[3] "soczewki skupiającej" #: lang/json/gunmod_from_json.py msgid "" "A set of optics to concentrate the laser beam on a smaller focus point. " "This increases range and damage output, but complicates targeting." msgstr "" +"Zestaw układów optycznych, które koncentrują wiązkę laserową na mniejszym " +"punkcie skupienia. Zwiększa to zasięg oraz moc zadawanych obrażeń, ale " +"utrudnia celowanie." #: lang/json/gunmod_from_json.py msgid "electrolaser conversion" msgid_plural "electrolaser conversions" -msgstr[0] "zestaw do konwersji elektrolaser" -msgstr[1] "zestaw do konwersji elektrolaser" -msgstr[2] "zestaw do konwersji elektrolaser" -msgstr[3] "zestaw do konwersji elektrolaser" +msgstr[0] "zestaw do konwersji elektrolasera" +msgstr[1] "zestawy do konwersji elektrolasera" +msgstr[2] "zestawów do konwersji elektrolasera" +msgstr[3] "zestawu do konwersji elektrolasera" #: lang/json/gunmod_from_json.py msgid "" @@ -164029,16 +169091,18 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "effective emitter" msgid_plural "effective emitters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "efektywny emiter" +msgstr[1] "efektywne emitery" +msgstr[2] "efektywnych emiterów" +msgstr[3] "efektywnego emitera" #: lang/json/gunmod_from_json.py msgid "" "A set of electronics to optimize emitter workcycle and increase overall " "energy efficiency. Decreases power consumption." msgstr "" +"Zestaw układów elektronicznych optymalizujących cykl pracy emitera i " +"zwiększających ogólną sprawność energetyczną. Zmniejsza pobór mocy." #: lang/json/gunmod_from_json.py msgid "emitter" @@ -164047,49 +169111,53 @@ msgstr "emiter" #: lang/json/gunmod_from_json.py msgid "high density capacitor" msgid_plural "high density capacitors" -msgstr[0] "kondensator wysokiej gęstości" -msgstr[1] "kondensator wysokiej gęstości" -msgstr[2] "kondensator wysokiej gęstości" -msgstr[3] "kondensator wysokiej gęstości" +msgstr[0] "wysokiej gęstości kondensator" +msgstr[1] "wysokiej gęstości kondensatory" +msgstr[2] "wysokiej gęstości kondensatorów" +msgstr[3] "wysokiej gęstości kondensatora" #: lang/json/gunmod_from_json.py msgid "" "A capacitor with a higher energy density increases range and damage; at the " "cost of a markedly increased power consumption." msgstr "" +"Kondensator ze zwiększoną gęstością zwiększa zasięg i siłę rażenia, kosztem " +"zauważalnie zwiększonego zużycia mocy." #: lang/json/gunmod_from_json.py msgid "speedloader chute" msgid_plural "speedloader chutes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "rękaw szybkoładowacza" +msgstr[1] "rękawy szybkoładowacza" +msgstr[2] "rękawów szybkoładowacza" +msgstr[3] "rękawa szybkoładowacza" #: lang/json/gunmod_from_json.py msgid "" "A metal ramp that is installed near a shotgun's feeding port to index " "speedloader tubes." msgstr "" +"Metalowa rampa montowana w pobliżu portu ładowania strzelby w celu " +"ułatwienia dostępu dla tub szybkiego ładowania." #: lang/json/gunmod_from_json.py msgid "loading port" -msgstr "" +msgstr "port ładowania" #: lang/json/gunmod_from_json.py msgid "match trigger" msgid_plural "match triggers" msgstr[0] "miękki spust" -msgstr[1] "miękki spust" -msgstr[2] "miękki spust" -msgstr[3] "miękki spust" +msgstr[1] "miękkie spusty" +msgstr[2] "miękkich spustów" +msgstr[3] "miękkiego spustu" #: lang/json/gunmod_from_json.py msgid "" "A precision weighted trigger assembly that slightly improves a firearm's " "accuracy." msgstr "" -"Precyzyjnie wyważony mechanizm spustowy nieco ulepszający celność broni." +"Precyzyjnie wyważony mechanizm spustowy, nieco ulepszający celność broni." #: lang/json/gunmod_from_json.py msgid "mechanism" @@ -164098,10 +169166,10 @@ msgstr "mechanizm" #: lang/json/gunmod_from_json.py msgid "drop-in auto sear" msgid_plural "drop-in auto sears" -msgstr[0] "zapadka trybu automatycznego" -msgstr[1] "zapadka trybu automatycznego" -msgstr[2] "zapadka trybu automatycznego" -msgstr[3] "zapadka trybu automatycznego" +msgstr[0] "zaczep trybu automatycznego" +msgstr[1] "zaczepy trybu automatycznego" +msgstr[2] "zaczepów trybu automatycznego" +msgstr[3] "zaczepu trybu automatycznego" #: lang/json/gunmod_from_json.py msgid "" @@ -164111,34 +169179,34 @@ msgid "" "good as actual full-auto parts, so precision and reliability suffer " "slightly." msgstr "" -"To kawałek metalu o kształcie przybliżonym do litery \"U\" z zapadką w " -"kształcie litery \"T\" na iglicy. Włożony w zamek AR-15, karabin będzie miał" -" możliwość wyboru trybu ognia. Ręcznie robiona zapadka nie ma powierzchni " -"tak dobrej jak fabryczne części trybu automatycznego, więc precyzja i " -"niezawodność nieco ucierpią." +"To kawałek metalu o kształcie przybliżonym do litery „U” z zapadką w " +"kształcie litery „T” na iglicy. Włożony w komorę spustową AR-15, karabin " +"będzie miał możliwość wyboru trybu ognia. Ręcznie robiony zaczep nie ma " +"powierzchni tak dobrej jak fabryczne części trybu automatycznego, więc " +"precyzja i niezawodność nieco ucierpią." #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "ar15_retool_300blk" -msgstr "" +msgstr "ar15_retool_300blk" #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "ar_pistol" -msgstr "" +msgstr "ar_pistol" #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "oa93" -msgstr "" +msgstr "oa93" #: lang/json/gunmod_from_json.py msgid "lightning link" msgid_plural "lightning links" msgstr[0] "błyskawiczny łącznik" -msgstr[1] "błyskawiczny łącznik" -msgstr[2] "błyskawiczny łącznik" -msgstr[3] "błyskawiczny łącznik" +msgstr[1] "błyskawiczne łączniki" +msgstr[2] "błyskawicznych łączników" +msgstr[3] "błyskawicznego łącznika" #: lang/json/gunmod_from_json.py msgid "" @@ -164148,35 +169216,36 @@ msgid "" "full-auto is enabled. Reliability and precision suffer greatly due to " "questionable craftsmanship and lack of unobtainium SP-1 parts." msgstr "" -"Ta reprodukcja. oryginalnie zaprojektowana do Colta SP-1, ma na celu zmienić" -" AR-15 w karabin działający tylko w trybie automatycznym. Gdy niezbędne " -"modyfikacje są zamontowane i łącznik jest na miejscu, tryb półautomatyczny " -"jest wyłączony a automatyczny włączony. Niezawodność i precyzja ucierpią " -"poważnie w wyniku wątpliwej jakości rzemiosła i nieosiągalnych części SP-1." +"Ta „reprodukcja”, oryginalnie zaprojektowana do Colta SP-1, ma na celu " +"zmienić AR-15 w karabinek działający tylko w trybie automatycznym. Gdy " +"niezbędne modyfikacje są zamontowane i łącznik jest na miejscu, tryb " +"samopowtarzalny jest wyłączony a samoczynno-samopowtarzalny włączony. " +"Niezawodność i precyzja ucierpią poważnie w wyniku wątpliwej jakości " +"rzemiosła i nieosiągalnych części SP-1." #: lang/json/gunmod_from_json.py msgid "firearm waterproofing" msgid_plural "firearm waterproofings" msgstr[0] "zestaw wodoodporny broni" -msgstr[1] "zestaw wodoodporny broni" -msgstr[2] "zestaw wodoodporny broni" -msgstr[3] "zestaw wodoodporny broni" +msgstr[1] "zestawy wodoodporne broni" +msgstr[2] "zestawów wodoodpornych broni" +msgstr[3] "zestawu wodoodpornego broni" #: lang/json/gunmod_from_json.py msgid "" "A set of seals and gaskets that will allow a firearm to operate reliably " "while submerged in water." msgstr "" -"Zestaw uszczelek i czopów, które pozwalają broni na niezawodne działanie " -"broni pod wodą." +"Zestaw uszczelek i czopów, które pozwalają broni na niezawodne działanie pod" +" wodą." #: lang/json/gunmod_from_json.py msgid "replaceable furniture kit" msgid_plural "replaceable furniture kits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zestaw wymiennej obudowy" +msgstr[1] "zestawy wymiennej obudowy" +msgstr[2] "zestawów wymiennej obudowy" +msgstr[3] "zestawu wymiennej obudowy" #: lang/json/gunmod_from_json.py msgid "" @@ -164185,18 +169254,23 @@ msgid "" "furniture so that it could be easily changed if needed. This allows " "installing any kind of more advanced grips or other furniture." msgstr "" +"Jest to zestaw składający się z różnych części stalowych i plastikowych; po " +"zainstalowaniu, trwale modyfikuje i częściowo zastępuje niektóre elementy " +"wyposażenia broni, tak aby można je było łatwo zmienić w razie potrzeby. " +"Pozwala to na zainstalowanie dowolnego rodzaju bardziej zaawansowanych " +"uchwytów lub innych elementów obudowy." #: lang/json/gunmod_from_json.py msgid "grip mount" -msgstr "" +msgstr "mocowanie chwytu" #: lang/json/gunmod_from_json.py msgid "side mount" msgid_plural "side mounts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mocowanie boczne" +msgstr[1] "mocowania boczne" +msgstr[2] "mocowań bocznych" +msgstr[3] "mocowania bocznego" #: lang/json/gunmod_from_json.py msgid "" @@ -164204,18 +169278,22 @@ msgid "" "permanently installed onto almost any weapon, along with some fasteners. " "Ideal for bringing out your inner tacticool on older guns." msgstr "" +"Jest to plastikowy uchwyt do mocowania akcesoriów na szynie, zaprojektowany " +"tak, aby można go było zamontować na stałe na prawie każdej broni, wraz z " +"kilkoma elementami mocującymi. Idealny, aby wydobyć wewnętrznego ducha " +"taktyki w starszych modelach broni." #: lang/json/gunmod_from_json.py msgid "rail mount" -msgstr "" +msgstr "mocowanie szynowe" #: lang/json/gunmod_from_json.py msgid "sights mount" msgid_plural "sights mounts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mocowanie celowników" +msgstr[1] "mocowania celowników" +msgstr[2] "mocowań celowników" +msgstr[3] "mocowania celowników" #: lang/json/gunmod_from_json.py msgid "" @@ -164224,14 +169302,18 @@ msgid "" "with some fasteners. Ideal for bringing out your inner tacticool on older " "guns." msgstr "" +"Jest to plastikowy uchwyt do mocowania celowników, zaprojektowany tak, aby " +"można go było zamontować na stałe na prawie każdej broni z wyjątkiem " +"wyrzutni i pistoletów, wraz z kilkoma elementami mocującymi. Idealny, aby " +"wydobyć wewnętrznego ducha taktyki w starszych modelach broni." #: lang/json/gunmod_from_json.py msgid "launcher sights mount" msgid_plural "launcher sights mounts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mocowanie celowników wyrzutni" +msgstr[1] "mocowania celowników wyrzutni" +msgstr[2] "mocowań celowników wyrzutni" +msgstr[3] "mocowania celowników wyrzutni" #: lang/json/gunmod_from_json.py msgid "" @@ -164239,14 +169321,18 @@ msgid "" "installed onto almost any launcher, along with some fasteners. Ideal for " "bringing out your inner tacticool on rocket launchers." msgstr "" +"Jest to plastikowy uchwyt do mocowania celownika, zaprojektowany do " +"zamontowania na stałe na prawie każdej wyrzutni, wraz z kilkoma elementami " +"mocującymi. Idealny do wydobycia wewnętrznego ducha taktyki w wyrzutniach " +"rakiet." #: lang/json/gunmod_from_json.py msgid "pistol sights mount" msgid_plural "pistol sights mounts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mocowanie celowników pistoletu" +msgstr[1] "mocowania celowników pistoletu" +msgstr[2] "mocowań celowników pistoletu" +msgstr[3] "mocowania celowników pistoletu" #: lang/json/gunmod_from_json.py msgid "" @@ -164254,14 +169340,18 @@ msgid "" "installed onto almost any pistol, along with some fasteners. Ideal for " "bringing out your inner tacticool on pocket pistols." msgstr "" +"Jest to plastikowy uchwyt do mocowania celownika, zaprojektowany do " +"zamontowania na stałe na prawie każdym pistolecie, wraz z kilkoma elementami" +" mocującymi. Idealny do wydobycia wewnętrznego ducha taktyki w kieszonkowych" +" pistoletach." #: lang/json/gunmod_from_json.py msgid "replaceable stock kit" msgid_plural "replaceable stock kits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zestaw wymiennej kolby" +msgstr[1] "zestawy wymiennej kolby" +msgstr[2] "zestawów wymiennej kolby" +msgstr[3] "zestawu wymiennej kolby" #: lang/json/gunmod_from_json.py msgid "" @@ -164271,18 +169361,24 @@ msgid "" "simply attach a stock mount if gun had no stock to start with. This allows " "easy installation of any kind of more advanced stocks." msgstr "" +"Jest to zestaw składający się z różnych części stalowych, po zainstalowaniu " +"którego można usunąć oryginalną stałą kolbę broni, zainstalować na jej " +"miejsce nową kolbę, zmodyfikować oryginalną kolbę tak aby pasowała do niej, " +"a następnie ponownie zamontować ją na broni, lub po prostu zamontować kolbę," +" jeśli broń nie miała kolby na starcie. Pozwala to na łatwy montaż dowolnego" +" rodzaju bardziej zaawansowanych typów kolb." #: lang/json/gunmod_from_json.py msgid "stock mount" -msgstr "" +msgstr "mocowanie kolby" #: lang/json/gunmod_from_json.py msgid "bottom mount" msgid_plural "bottom mounts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mocowanie dolne" +msgstr[1] "mocowania dolne" +msgstr[2] "mocowań dolnych" +msgstr[3] "mocowania dolnego" #: lang/json/gunmod_from_json.py msgid "" @@ -164290,10 +169386,14 @@ msgid "" "be permanently installed onto almost any weapon, along with some fasteners." " Ideal for bringing out your inner tacticool on older guns." msgstr "" +"Jest to plastikowy uchwyt do mocowania akcesoriów pod lufą, zaprojektowany " +"tak, aby można go było zamontować na stałe na prawie każdej broni, wraz z " +"kilkoma elementami mocującymi. Idealny, aby wydobyć wewnętrznego ducha " +"taktyki w starszych modelach broni." #: lang/json/gunmod_from_json.py msgid "underbarrel mount" -msgstr "" +msgstr "mocowanie podlufowe" #: lang/json/gunmod_from_json.py msgid "muzzle brake" @@ -164319,10 +169419,10 @@ msgstr "wylot lufy" #: lang/json/gunmod_from_json.py msgid "modified muzzle brake" msgid_plural "modified muzzle brakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowany hamulec wylotowy" +msgstr[1] "zmodyfikowane hamulce wylotowe" +msgstr[2] "zmodyfikowanych hamulców wylotowych" +msgstr[3] "zmodyfikowanego hamulca wylotowego" #: lang/json/gunmod_from_json.py msgid "" @@ -164331,14 +169431,18 @@ msgid "" " This one was modified and customized to mount on pretty much any firearm " "other than launchers, if you so want." msgstr "" +"Hamulec wylotowy przekierowuje gazy spalinowe, aby skompensować wznoszenie " +"się lufy, poprawiając odrzut, ale zwiększając masę, hałas i zmniejszając " +"nieco celność. Ten został zmodyfikowany i dostosowany do montażu na prawie " +"każdej broni palnej poza wyrzutniami, jeśli tylko chcesz." #: lang/json/gunmod_from_json.py msgid "homemade suppressor" msgid_plural "homemade suppressors" msgstr[0] "domowy tłumik" -msgstr[1] "domowy tłumik" -msgstr[2] "domowy tłumik" -msgstr[3] "domowy tłumik" +msgstr[1] "domowe tłumiki" +msgstr[2] "domowych tłumików" +msgstr[3] "domowego tłumika" #: lang/json/gunmod_from_json.py msgid "" @@ -164351,14 +169455,22 @@ msgid "" "when attached, will interfere with your ability to aim down the base sights " "of the gun." msgstr "" +"Domowej roboty tłumik wykonany z rury i zaimprowizowanych materiałów do " +"wycierania. Tak długo jak ściereczki wytrzymają, będzie on redukował ilość " +"hałasu i błysku z lufy generowanego przez wystrzał z broni palnej. Wystrzały" +" z broni palnej są niezwykle głośne i mogą uszkodzić słuch bez ochrony; " +"tłumik obniży głośność wystrzału do ogólnie bezpiecznego poziomu, jak " +"również nieznacznie zmniejszy odrzut i prędkość pocisku. Ten prosty tłumik " +"jest duży i po założeniu będzie przeszkadzał w celowaniu przez podstawowe " +"przyrządy celownicze." #: lang/json/gunmod_from_json.py msgid "'solvent trap' suppressor" msgid_plural "'solvent trap' suppressors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tłumik „nakładka czyszcząca”" +msgstr[1] "tłumiki „nakładka czyszcząca”" +msgstr[2] "tłumików „nakładka czyszcząca”" +msgstr[3] "tłumika „nakładka czyszcząca”" #: lang/json/gunmod_from_json.py msgid "" @@ -164370,14 +169482,21 @@ msgid "" " attached, will interfere with your ability to aim down the base sights of " "the gun." msgstr "" +"To jest filtr samochodowy, prymitywnie przystosowany do połączenia z lufą " +"broni palnej, tworząc nielegalny, niezarejestrowany tłumik. Dobrze, że nie " +"ma w pobliżu żadnych agentów Agencji Bezpieczeństwa Wewnętrznego, którzy " +"mogliby cię aresztować. Chociaż zbliżony w konstrukcji do prawdziwego " +"tłumika, nie został zaprojektowany do wysokich ciśnień i w końcu straci " +"skuteczność. Zamontowany filtr jest duży i po założeniu będzie przeszkadzał " +"w celowaniu przez celownik pistoletu." #: lang/json/gunmod_from_json.py msgid "soda bottle silencer" msgid_plural "soda bottle silencers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tłumik z butelki" +msgstr[1] "tłumiki z butelki" +msgstr[2] "tłumików z butelki" +msgstr[3] "tłumika z butelki" #: lang/json/gunmod_from_json.py msgid "" @@ -164389,14 +169508,21 @@ msgid "" "suppressor is large and, when attached, will interfere with your ability to " "aim down the base sights of the gun." msgstr "" +"Jest to „tłumik” zrobiony z 2-litrowej butelki po napoju gazowanym, kilku " +"mniejszych butelek jako przegrody i sporej długości taśmy klejącej. " +"Wystrzały z broni palnej są niezwykle głośne i mogą uszkodzić twój słuch bez" +" ochrony i możesz mieć pewność, że to nie uratuje twoich uszu. Co może " +"zrobić, to pozwolić ci oddać strzał lub dwa z nieco cichszym dźwiękiem. Ten " +"prosty tłumik jest duży i po założeniu będzie przeszkadzał w celowaniu przez" +" podstawowe celowniki broni." #: lang/json/gunmod_from_json.py msgid "RK6S34 suppressor" msgid_plural "RK6S34 suppressors" msgstr[0] "tłumik RK6S34" -msgstr[1] "tłumik RK6S34" -msgstr[2] "tłumik RK6S34" -msgstr[3] "tłumik RK6S34" +msgstr[1] "tłumiki RK6S34" +msgstr[2] "tłumików RK6S34" +msgstr[3] "tłumika RK6S34" #: lang/json/gunmod_from_json.py msgid "" @@ -164410,24 +169536,26 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "shotgun suppressor" msgid_plural "shotgun suppressors" -msgstr[0] "tłumik do strzelb" -msgstr[1] "tłumik do strzelb" -msgstr[2] "tłumik do strzelb" -msgstr[3] "tłumik do strzelb" +msgstr[0] "tłumik strzelby" +msgstr[1] "tłumiki strzelby" +msgstr[2] "tłumików strzelby" +msgstr[3] "tłumika strzelby" #: lang/json/gunmod_from_json.py msgid "" "A large suppressor designed to work with shotguns. It's a lot more complex " "than a suppressor for a pistol or rifle." msgstr "" +"Duży tłumik zaprojektowany do strzelb. Jest znacznie bardziej złożony niż " +"tłumik do pistoletu lub karabinu." #: lang/json/gunmod_from_json.py msgid "suppressor" msgid_plural "suppressors" msgstr[0] "tłumik" -msgstr[1] "tłumik" -msgstr[2] "tłumik" -msgstr[3] "tłumik" +msgstr[1] "tłumiki" +msgstr[2] "tłumików" +msgstr[3] "tłumika" #: lang/json/gunmod_from_json.py msgid "" @@ -164443,10 +169571,10 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "MP5SD integral suppressor" msgid_plural "MP5SD integral suppressors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zintegrowany tłumik MP5SD" +msgstr[1] "zintegrowane tłumiki MP5SD" +msgstr[2] "zintegrowanych tłumików MP5SD" +msgstr[3] "zintegrowanego tłumika MP5SD" #: lang/json/gunmod_from_json.py msgid "" @@ -164455,14 +169583,18 @@ msgid "" "most ammo subsonic at the cost of terminal performance. It is not as " "effective as modern designs." msgstr "" +"Jest to zintegrowany tłumik do H&K MP5SD. Jego duża komora rozprężna " +"spowalnia amunicję poprzez kilka portów w lufie, czyniąc większość amunicji " +"poddźwiękową, kosztem wydajności końcowej. Nie jest on tak skuteczny jak " +"nowoczesne konstrukcje." #: lang/json/gunmod_from_json.py msgid "compact suppressor" msgid_plural "compact suppressors" msgstr[0] "kompaktowy tłumik" -msgstr[1] "kompaktowy tłumik" -msgstr[2] "kompaktowy tłumik" -msgstr[3] "kompaktowy tłumik" +msgstr[1] "kompaktowe tłumiki" +msgstr[2] "kompaktowych tłumików" +msgstr[3] "kompaktowego tłumika" #: lang/json/gunmod_from_json.py msgid "" @@ -164476,9 +169608,9 @@ msgstr "" msgid "rail-mounted crossbow" msgid_plural "rail-mounted crossbows" msgstr[0] "kusza montowana na szynie" -msgstr[1] "kusza montowana na szynie" -msgstr[2] "kusza montowana na szynie" -msgstr[3] "kusza montowana na szynie" +msgstr[1] "kusze montowane na szynie" +msgstr[2] "kuszy montowanych na szynie" +msgstr[3] "kuszy montowanej na szynie" #: lang/json/gunmod_from_json.py msgid "" @@ -164490,15 +169622,15 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "rail" -msgstr "szyna akcesoryjna" +msgstr "szyna montażowa" #: lang/json/gunmod_from_json.py msgid "modified rail-mounted crossbow" msgid_plural "modified rail-mounted crossbows" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowana kusza montowana na szynie" +msgstr[1] "zmodyfikowane kusze montowane na szynie" +msgstr[2] "zmodyfikowanych kusz montowanych na szynie" +msgstr[3] "zmodyfikowanej kuszy montowanej na szynie" #: lang/json/gunmod_from_json.py msgid "" @@ -164507,14 +169639,18 @@ msgid "" " and customized to mount on pretty much any weapon other than pistols and " "SMGs, if you so want." msgstr "" +"Zestaw do mocowania pary ramion kuszy i szyny strzelniczej do lufy długiej " +"broni palnej. Pozwala to na wystrzeliwanie bełtów z kuszy. Ten został " +"zmodyfikowany i dostosowany do montażu na prawie każdej broni poza " +"pistoletami i peemami, jeśli tylko chcesz." #: lang/json/gunmod_from_json.py msgid "offset iron sights" msgid_plural "offset iron sights" -msgstr[0] "boczne przyrządy celownicze" -msgstr[1] "boczne przyrządy celownicze" -msgstr[2] "boczne przyrządy celownicze" -msgstr[3] "boczne przyrządy celownicze" +msgstr[0] "boczny celownik mechaniczny" +msgstr[1] "boczne celowniki mechaniczne" +msgstr[2] "bocznych celowników mechanicznych" +msgstr[3] "bocznego celownika mechanicznego" #: lang/json/gunmod_from_json.py msgid "" @@ -164528,10 +169664,10 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "modified offset iron sights" msgid_plural "modified offset iron sights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowany boczny celownik mechaniczny" +msgstr[1] "zmodyfikowane boczne celowniki mechaniczne" +msgstr[2] "zmodyfikowanych bocznych celowników mechanicznych" +msgstr[3] "zmodyfikowanego bocznego celownika mechanicznego" #: lang/json/gunmod_from_json.py msgid "" @@ -164539,42 +169675,48 @@ msgid "" "other modification prevents use of the primary sights. This one was " "modified and customized to mount on pretty much any weapon, if you so want." msgstr "" +"Alternatywny zestaw przyrządów celowniczych montowanych pod kątem 45°, " +"używany, gdy luneta lub inna modyfikacja uniemożliwia korzystanie z " +"przyrządów głównych. Ten został zmodyfikowany i dostosowany do montażu na " +"prawie każdej broni, jeśli tylko chcesz." #: lang/json/gunmod_from_json.py msgid "offset sight rail" msgid_plural "offset sight rails" -msgstr[0] "boczna szyna celowników" -msgstr[1] "boczna szyna celowników" -msgstr[2] "boczna szyna celowników" -msgstr[3] "boczna szyna celowników" +msgstr[0] "boczna szyna celownika" +msgstr[1] "boczne szyny celownika" +msgstr[2] "bocznych szyn celownika" +msgstr[3] "bocznej szyny celownika" #: lang/json/gunmod_from_json.py msgid "An additional rail set at 45° for attaching a secondary optic." msgstr "" -"Dodatkowa szyna akcesoryjna ustawiona pod kątem 45° do umieszczania drugiego" -" celownika." +"Dodatkowa szyna ustawiona pod kątem 45° do umieszczania drugiego celownika." #: lang/json/gunmod_from_json.py msgid "modified offset sight rail" msgid_plural "modified offset sight rails" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowana boczna szyna celownika" +msgstr[1] "zmodyfikowane boczne szyny celownika" +msgstr[2] "zmodyfikowanych bocznych szyn celownika" +msgstr[3] "zmodyfikowanej bocznej szyny celownika" #: lang/json/gunmod_from_json.py msgid "" "An additional rail set at 45° for attaching a secondary optic. This one was" " modified and customized to mount on pretty much any weapon, if you so want." msgstr "" +"Dodatkowa szyna ustawiona pod kątem 45° do zamocowania dodatkowego układu " +"optycznego. Ta została zmodyfikowana i dostosowana do montażu na prawie " +"każdej broni, jeśli tylko chcesz." #: lang/json/gunmod_from_json.py msgid "rail laser sight" msgid_plural "rail laser sights" msgstr[0] "szynowy celownik laserowy" -msgstr[1] "szynowy celownik laserowy" -msgstr[2] "szynowy celownik laserowy" -msgstr[3] "szynowy celownik laserowy" +msgstr[1] "szynowe celowniki laserowe" +msgstr[2] "szynowych celowników laserowych" +msgstr[3] "szynowego celownika laserowego" #: lang/json/gunmod_from_json.py msgid "" @@ -164590,9 +169732,9 @@ msgstr "" msgid "gyroscopic stabilizer" msgid_plural "gyroscopic stabilizers" msgstr[0] "stabilizator żyroskopowy" -msgstr[1] "stabilizator żyroskopowy" -msgstr[2] "stabilizator żyroskopowy" -msgstr[3] "stabilizator żyroskopowy" +msgstr[1] "stabilizatory żyroskopowe" +msgstr[2] "stabilizatorów żyroskopowych" +msgstr[3] "stabilizatora żyroskopowego" #: lang/json/gunmod_from_json.py msgid "" @@ -164605,10 +169747,10 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "modified gyroscopic stabilizer" msgid_plural "modified gyroscopic stabilizers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowany stabilizator żyroskopowy" +msgstr[1] "zmodyfikowane stabilizatory żyroskopowe" +msgstr[2] "zmodyfikowanych stabilizatorów żyroskopowych" +msgstr[3] "zmodyfikowanego stabilizatora żyroskopowego" #: lang/json/gunmod_from_json.py msgid "" @@ -164617,6 +169759,10 @@ msgid "" "one was modified and customized to mount on pretty much any weapon other " "than pistols, if you so want." msgstr "" +"Zaawansowane urządzenie, które mocuje się z boku broni palnej i które " +"redukuje wibracje, znacznie zmniejszając odrzut i nieznacznie zwiększając " +"celność. Ten egzemplarz został zmodyfikowany i dostosowany do montażu na " +"prawie każdej broni poza pistoletami, jeśli tylko chcesz." #: lang/json/gunmod_from_json.py msgid "five pin bow sight" @@ -164662,7 +169808,7 @@ msgid_plural "bow scopes" msgstr[0] "luneta do łuku" msgstr[1] "lunety do łuku" msgstr[2] "lunet do łuku" -msgstr[3] "lunet do łuku" +msgstr[3] "lunety do łuku" #: lang/json/gunmod_from_json.py msgid "" @@ -164678,9 +169824,9 @@ msgstr "" msgid "holographic sight" msgid_plural "holographic sights" msgstr[0] "celownik holograficzny" -msgstr[1] "celownik holograficzny" -msgstr[2] "celownik holograficzny" -msgstr[3] "celownik holograficzny" +msgstr[1] "celowniki holograficzne" +msgstr[2] "celowników holograficznych" +msgstr[3] "celownika holograficznego" #: lang/json/gunmod_from_json.py msgid "" @@ -164694,9 +169840,9 @@ msgstr "" msgid "iron sights" msgid_plural "iron sights" msgstr[0] "celownik mechaniczny" -msgstr[1] "celownik mechaniczny" -msgstr[2] "celownik mechaniczny" -msgstr[3] "celownik mechaniczny" +msgstr[1] "celowniki mechaniczne" +msgstr[2] "celowników mechanicznych" +msgstr[3] "celownika mechanicznego" #: lang/json/gunmod_from_json.py msgid "A basic set of iron sights" @@ -164705,26 +169851,26 @@ msgstr "Muszka i szczerbinka, czyli podstawowy zestaw celowniczy." #: lang/json/gunmod_from_json.py msgid "pistol scope" msgid_plural "pistol scopes" -msgstr[0] "luneta do pistoletu" -msgstr[1] "lunety do pistoletu" -msgstr[2] "lunet do pistoletu" -msgstr[3] "lunet do pistoletu" +msgstr[0] "luneta pistoletu" +msgstr[1] "lunety pistoletu" +msgstr[2] "lunet pistoletu" +msgstr[3] "lunety pistoletu" #: lang/json/gunmod_from_json.py msgid "" "A small scope intended for use on a handgun. Increases weight but improves " "accuracy greatly." msgstr "" -"Mała luneta do używania z pistoletem. Zwiększa wagę ale znacznie poprawia " +"Mała luneta do używania z pistoletem. Zwiększa wagę, ale znacznie poprawia " "celność." #: lang/json/gunmod_from_json.py msgid "red dot sight" msgid_plural "red dot sights" msgstr[0] "kolimator" -msgstr[1] "kolimator" -msgstr[2] "kolimator" -msgstr[3] "kolimator" +msgstr[1] "kolimatory" +msgstr[2] "kolimatorów" +msgstr[3] "kolimatora" #: lang/json/gunmod_from_json.py msgid "" @@ -164737,24 +169883,26 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "rifle scope" msgid_plural "rifle scopes" -msgstr[0] "luneta do karabinu" -msgstr[1] "lunety do karabinu" -msgstr[2] "lunet do karabinu" -msgstr[3] "lunet do karabinu" +msgstr[0] "luneta karabinu" +msgstr[1] "lunety karabinu" +msgstr[2] "lunet karabinu" +msgstr[3] "lunety karabinu" #: lang/json/gunmod_from_json.py msgid "" "A 3-18x44 rifle scope. It is adjustable for windage and elevation in 1/10th" " mrad increments and is remarkably small and light for its magnification." msgstr "" +"Luneta celownicza 3-18x44. Jest regulowana w pionie i poziomie w odstępach " +"co 1/10 tysięcznej i jest wyjątkowo mała i lekka jak na swoje powiększenie." #: lang/json/gunmod_from_json.py msgid "modified rifle scope" msgid_plural "modified rifle scopes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowana luneta karabinu" +msgstr[1] "zmodyfikowane lunety karabinu" +msgstr[2] "zmodyfikowanych lunet karabinu" +msgstr[3] "zmodyfikowanej lunety karabinu" #: lang/json/gunmod_from_json.py msgid "" @@ -164763,28 +169911,33 @@ msgid "" "This one was modified and customized to mount on pretty much any weapon " "other than pistols and SMGs, if you so want." msgstr "" +"Luneta celownicza 3-18x44. Jest regulowana w pionie i poziomie w odstępach " +"co 1/10 tysięczną i jest wyjątkowo mała i lekka jak na swoje powiększenie. " +"Ta została zmodyfikowana i dostosowana do montażu na prawie każdej broni " +"poza pistoletami i peemami, jeśli tylko chcesz." #: lang/json/gunmod_from_json.py msgid "ACOG scope" msgid_plural "ACOG scopes" -msgstr[0] "celownik ACOG" -msgstr[1] "celownik ACOG" -msgstr[2] "celownik ACOG" -msgstr[3] "celownik ACOG" +msgstr[0] "luneta ACOG" +msgstr[1] "lunety ACOG" +msgstr[2] "lunet ACOG" +msgstr[3] "lunety ACOG" #: lang/json/gunmod_from_json.py msgid "" "A 4x32 TA01 Advanced Combat Optical Gunsight with a tritium illuminated " "crosshair." msgstr "" +"Zaawansowany Celownik Optyczny 4x32 TA01 z trytowym podświetlanym krzyżem." #: lang/json/gunmod_from_json.py msgid "modified ACOG scope" msgid_plural "modified ACOG scopes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowana luneta ACOG" +msgstr[1] "zmodyfikowane lunety ACOG" +msgstr[2] "zmodyfikowanych lunet ACOG" +msgstr[3] "zmodyfikowanej lunety ACOG" #: lang/json/gunmod_from_json.py msgid "" @@ -164792,14 +169945,17 @@ msgid "" "crosshair. This one was modified and customized to mount on pretty much any" " weapon other than pistols, if you so want." msgstr "" +"A 4x32 TA01 Advanced Combat Optical Gunsight with a tritium illuminated " +"crosshair. Został zmodyfikowany i dostosowany do montażu na prawie każdej " +"broni poza pistoletami i SMG, jeśli tylko chcesz." #: lang/json/gunmod_from_json.py msgid "RS1219 scope" msgid_plural "RS1219 scopes" msgstr[0] "luneta RS1219" -msgstr[1] "luneta RS1219" -msgstr[2] "luneta RS1219" -msgstr[3] "luneta RS1219" +msgstr[1] "lunety RS1219" +msgstr[2] "lunet RS1219" +msgstr[3] "lunety RS1219" #: lang/json/gunmod_from_json.py msgid "" @@ -164815,9 +169971,9 @@ msgstr "" msgid "telescopic sight" msgid_plural "telescopic sights" msgstr[0] "celownik teleskopowy" -msgstr[1] "celownik teleskopowy" -msgstr[2] "celownik teleskopowy" -msgstr[3] "celownik teleskopowy" +msgstr[1] "celowniki teleskopowe" +msgstr[2] "celowników teleskopowych" +msgstr[3] "celownika teleskopowego" #: lang/json/gunmod_from_json.py msgid "" @@ -164825,14 +169981,17 @@ msgid "" "crosshairs. Not as good as the ones made before the Cataclysm. Increases " "weight but improves accuracy." msgstr "" +"Prosty, ręcznie wykonany celownik teleskopowy, w zasadzie mała luneta z " +"krzyżem. Nie tak dobry, jak te wykonane przed Kataklizmem. Zwiększa wagę, " +"ale poprawia celność." #: lang/json/gunmod_from_json.py msgid "telescopic pistol sight" msgid_plural "telescopic pistol sights" msgstr[0] "pistoletowy celownik teleskopowy" -msgstr[1] "pistoletowy celownik teleskopowy" -msgstr[2] "pistoletowy celownik teleskopowy" -msgstr[3] "pistoletowy celownik teleskopowy" +msgstr[1] "pistoletowe celowniki teleskopowe" +msgstr[2] "pistoletowych celowników teleskopowych" +msgstr[3] "pistoletowego celownika teleskopowego" #: lang/json/gunmod_from_json.py msgid "" @@ -164846,9 +170005,9 @@ msgstr "" msgid "shoulder strap" msgid_plural "shoulder straps" msgstr[0] "pas na ramię" -msgstr[1] "pas na ramię" -msgstr[2] "pas na ramię" -msgstr[3] "pas na ramię" +msgstr[1] "pasy na ramię" +msgstr[2] "pasów na ramię" +msgstr[3] "pasa na ramię" #: lang/json/gunmod_from_json.py msgid "" @@ -164860,15 +170019,15 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "sling" -msgstr "" +msgstr "pas nośny" #: lang/json/gunmod_from_json.py msgid "adjustable stock" msgid_plural "adjustable stocks" msgstr[0] "regulowana kolba" -msgstr[1] "regulowana kolba" -msgstr[2] "regulowana kolba" -msgstr[3] "regulowana kolba" +msgstr[1] "regulowanej kolby" +msgstr[2] "regulowanych kolb" +msgstr[3] "regulowanej kolby" #: lang/json/gunmod_from_json.py msgid "An adjustable replacement stock improving both recoil and accuracy." @@ -164883,9 +170042,9 @@ msgstr "kolba" msgid "folding stock" msgid_plural "folding stocks" msgstr[0] "składana kolba" -msgstr[1] "składana kolba" -msgstr[2] "składana kolba" -msgstr[3] "składana kolba" +msgstr[1] "składane kolby" +msgstr[2] "składanych kolb" +msgstr[3] "składanej kolby" #: lang/json/gunmod_from_json.py msgid "" @@ -164898,10 +170057,10 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "folding wire stock" msgid_plural "folding wire stocks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "składana druciana kolba" +msgstr[1] "składane druciane kolby" +msgstr[2] "składanych drucianych kolb" +msgstr[3] "składanej drucianej kolby" #: lang/json/gunmod_from_json.py msgid "" @@ -164909,26 +170068,31 @@ msgid "" "before use. It's somewhat wobbly but is better than nothing at all. " "Increases the time needed to wield the weapon." msgstr "" +"Składana druciana kolba, która składa się bardzo kompaktowo, ale wymaga " +"rozłożenia przed użyciem. Jest nieco chybotliwa, ale lepsza to niż nic. " +"Zwiększa czas potrzebny do trzymania broni." #: lang/json/gunmod_from_json.py msgid "pistol stock" msgid_plural "pistol stocks" -msgstr[0] "kolba do pistoletu" -msgstr[1] "kolba do pistoletu" -msgstr[2] "kolba do pistoletu" -msgstr[3] "kolba do pistoletu" +msgstr[0] "kolba pistoletu" +msgstr[1] "kolby pistoletu" +msgstr[2] "kolb pistoletu" +msgstr[3] "kolby pistoletu" #: lang/json/gunmod_from_json.py msgid "An add-on stock for handguns considerably improving control of recoil." msgstr "" +"Dodatkowa kolba do pistoletów ręcznych znacznie poprawiająca kontrolę " +"odrzutu." #: lang/json/gunmod_from_json.py msgid "recoil stock" msgid_plural "recoil stocks" msgstr[0] "kolba hamująca odrzut" -msgstr[1] "kolba hamująca odrzut" -msgstr[2] "kolba hamująca odrzut" -msgstr[3] "kolba hamująca odrzut" +msgstr[1] "kolby hamujące odrzut" +msgstr[2] "kolb hamujących odrzut" +msgstr[3] "kolby hamującej odrzut" #: lang/json/gunmod_from_json.py msgid "A replacement stock designed to absorb perceived recoil." @@ -164955,104 +170119,117 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "butt hook" msgid_plural "butt hooks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "hak naramienny" +msgstr[1] "haki naramienne" +msgstr[2] "haków naramiennych" +msgstr[3] "haka naramiennego" #: lang/json/gunmod_from_json.py msgid "" "An attachment to the butt of the gun that is put under the armpit allowing " "for greater stability." msgstr "" +"Mocowanie do kolby pistoletu, które umieszcza się pod pachą, co zapewnia " +"większą stabilność." #: lang/json/gunmod_from_json.py msgid "butt hook stock" msgid_plural "butt hook stocks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kolba z hakiem naramiennym" +msgstr[1] "kolby z hakiem naramiennym" +msgstr[2] "kolb z hakiem naramiennym" +msgstr[3] "kolby z hakiem naramiennym" #: lang/json/gunmod_from_json.py msgid "" "A replacement stock that partially encloses arm allowing for greater " "stability. Good fit and padding also helps with recoil control." msgstr "" +"Zamiennik kolby, który częściowo obejmuje ramię, zapewniając większą " +"stabilność. Dobre dopasowanie i wyściełanie pomaga również w kontroli " +"odrzutu." #: lang/json/gunmod_from_json.py msgid "tail hook stock" msgid_plural "tail hook stocks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "składana kolba z hakiem naramiennym" +msgstr[1] "składane kolby z hakiem naramiennym" +msgstr[2] "składanych kolb z hakiem naramiennym" +msgstr[3] "składanej kolby z hakiem naramiennym" #: lang/json/gunmod_from_json.py msgid "" "A foldable add-on stock for handguns and machine guns with pivoting hook " "that latches onto forearm allowing for greater stability." msgstr "" +"Składana nakładana kolba do pistoletów i karabinów maszynowych z obrotowym " +"hakiem, który zahacza się na przedramieniu, zapewniając większą stabilność." #: lang/json/gunmod_from_json.py msgid "bipod" msgid_plural "bipods" msgstr[0] "dwójnóg" -msgstr[1] "dwójnóg" -msgstr[2] "dwójnóg" -msgstr[3] "dwójnóg" +msgstr[1] "dwójnogi" +msgstr[2] "dwójnogów" +msgstr[3] "dwójnoga" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" "Dwójnogi są powszechnie używane w karabinach i karabinach maszynowych jako " "frontowe oparcie i sposób na zmniejszenie ruchów. Mimo że doskonale pomagają" " w panowaniu nad odrzutem, mogą być używane tylko na stabilnych " -"powierzchniach i powoli się je rozkłada." +"powierzchniach (lub na leżąco) i powoli się je rozkłada." #: lang/json/gunmod_from_json.py msgid "modified bipod" msgid_plural "modified bipods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowany dwójnóg" +msgstr[1] "zmodyfikowane dwójnogi" +msgstr[2] "zmodyfikowanych dwójnogów" +msgstr[3] "zmodyfikowanego dwójnoga" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" +"Dwójnogi są powszechnie używane w karabinach i karabinach maszynowych jako " +"frontowe oparcie i sposób na zmniejszenie ruchów. Mimo że doskonale pomagają" +" w panowaniu nad odrzutem, mogą być używane tylko na stabilnych " +"powierzchniach (i na leżąco) i powoli się je rozkłada. Zmodyfikowany i " +"dostosowany do montażu na prawie każdej broni, jeśli tylko chcesz." #: lang/json/gunmod_from_json.py msgid "combination gun shotgun" msgid_plural "combination gun shotguns" msgstr[0] "strzelba spluwy kombinowanej" -msgstr[1] "strzelba spluwy kombinowanej" -msgstr[2] "strzelba spluwy kombinowanej" -msgstr[3] "strzelba spluwy kombinowanej" +msgstr[1] "strzelby spluwy kombinowanej" +msgstr[2] "strzelb spluwy kombinowanej" +msgstr[3] "strzelby spluwy kombinowanej" #: lang/json/gunmod_from_json.py msgid "" "The integrated underbarrel shotgun of a combination gun which holds two " "shots. It's irremovable." msgstr "" -"Zintegrowana podlufowa strzelba broni kombinowanej która mieści dwa naboje. " -"Jest nieusuwalna." +"Zintegrowana podlufowa strzelba spluwy kombinowanej, która mieści dwa " +"naboje. Jest nieusuwalna." #: lang/json/gunmod_from_json.py msgid "factory handguard" msgid_plural "factory handguards" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "fabryczne łoże" +msgstr[1] "fabryczne łoża" +msgstr[2] "fabrycznych łóż" +msgstr[3] "fabrycznego łoża" #: lang/json/gunmod_from_json.py msgid "" @@ -165060,19 +170237,22 @@ msgid "" " as efficient as a proper forward grip or bipod at controlling recoil, but " "it's better than nothing." msgstr "" +"Zdejmowany, wyprofilowany chwyt, który jest standardem w pistoletach bez " +"szyn. Nie jest tak skuteczny w kontrolowaniu odrzutu jak prawidłowy chwyt " +"przedni lub dwójnóg, ale lepsze to niż nic." #: lang/json/gunmod_from_json.py msgctxt "gun_type_type" msgid "fs2000" -msgstr "" +msgstr "fs2000" #: lang/json/gunmod_from_json.py msgid "forward grip" msgid_plural "forward grips" -msgstr[0] "przedni chwyt" -msgstr[1] "przedni chwyt" -msgstr[2] "przedni chwyt" -msgstr[3] "przedni chwyt" +msgstr[0] "chwyt przedni" +msgstr[1] "chwyty przednie" +msgstr[2] "chwytów przednich" +msgstr[3] "chwytu przedniego" #: lang/json/gunmod_from_json.py msgid "" @@ -165085,10 +170265,10 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "modified forward grip" msgid_plural "modified forward grips" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowany chwyt przedni" +msgstr[1] "zmodyfikowane chwyty przednie" +msgstr[2] "zmodyfikowanych chwytów przednich" +msgstr[3] "zmodyfikowanego chwytu przedniego" #: lang/json/gunmod_from_json.py msgid "" @@ -165096,14 +170276,18 @@ msgid "" "effective as a bipod but usable under all conditions. This one was modified" " and customized to mount on pretty much any weapon, if you so want." msgstr "" +"Chwyt umieszczony z przodu lufy pozwala na większą kontrolę. Nie tak " +"skuteczny jak dwójnóg, ale przydatny w każdych warunkach. Ten został " +"zmodyfikowany i dostosowany do montażu na prawie każdej broni, jeśli tylko " +"chcesz." #: lang/json/gunmod_from_json.py msgid "integrated bayonet" msgid_plural "integrated bayonets" msgstr[0] "zintegrowany bagnet" -msgstr[1] "zintegrowany bagnet" -msgstr[2] "zintegrowany bagnet" -msgstr[3] "zintegrowany bagnet" +msgstr[1] "zintegrowane bagnety" +msgstr[2] "zintegrowanych bagnetów" +msgstr[3] "zintegrowanego bagnetu" #: lang/json/gunmod_from_json.py msgid "This is the bayonet integrated in the firearm." @@ -165117,67 +170301,73 @@ msgstr "bagnet" msgid "KSG second magazine" msgid_plural "KSG second magazines" msgstr[0] "drugi magazynek KSG" -msgstr[1] "drugi magazynek KSG" -msgstr[2] "drugi magazynek KSG" -msgstr[3] "drugi magazynek KSG" +msgstr[1] "drugie magazynki KSG" +msgstr[2] "drugich magazynków KSG" +msgstr[3] "drugiego magazynku KSG" #: lang/json/gunmod_from_json.py msgid "" "The integrated second shotgun magazine of the Kel-Tec KSG which holds 7 " "shots. It's irremovable." msgstr "" -"Zintegrowany drugi magazynek do strzelby Kel-Tec KSG który mieści 7 naboi. " +"Zintegrowany drugi magazynek do strzelby Kel-Tec KSG, który mieści 7 naboi. " "Jest nieusuwalny." #: lang/json/gunmod_from_json.py msgid "KSG-25 second magazine" msgid_plural "KSG-25 second magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "drugi magazynek KSG-25" +msgstr[1] "drugie magazynki KSG-25" +msgstr[2] "drugich magazynków KSG-25" +msgstr[3] "drugiego magazynku KSG-25" #: lang/json/gunmod_from_json.py msgid "" "The integrated second shotgun magazine of the Kel-Tec KSG-25 which holds 12 " "shots. It's irremovable." msgstr "" +"Zintegrowany drugi magazynek strzelby Kel-Tec KSG-25, który mieści 12 naboi." +" Jest nieusuwalny." #: lang/json/gunmod_from_json.py msgid "TS12 second magazine" msgid_plural "TS12 second magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "drugi magazynek TS12" +msgstr[1] "drugie magazynki TS12" +msgstr[2] "drugich magazynków TS12" +msgstr[3] "drugiego magazynku TS12" #: lang/json/gunmod_from_json.py msgid "" "The integrated second shotgun magazine of the Tavor TS12 which holds 5 " "shots. It's irremovable." msgstr "" +"Zintegrowany drugi magazynek strzelby Tavor TS12, który mieści 5 naboi. Jest" +" nieusuwalny." #: lang/json/gunmod_from_json.py msgid "TS12 third magazine" msgid_plural "TS12 third magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "trzeci magazynek TS12" +msgstr[1] "trzecie magazynki TS12" +msgstr[2] "trzecich magazynków TS12" +msgstr[3] "trzeciego magazynku TS12" #: lang/json/gunmod_from_json.py msgid "" "The integrated third shotgun magazine of the Tavor TS12 which holds 5 shots." " It's irremovable." msgstr "" +"Zintegrowany trzeci magazynek strzelby Tavor TS12, który mieści 5 naboi. " +"Jest nieusuwalny." #: lang/json/gunmod_from_json.py msgid "underbarrel laser sight" msgid_plural "underbarrel laser sights" msgstr[0] "podlufowy celownik laserowy" -msgstr[1] "podlufowy celownik laserowy" -msgstr[2] "podlufowy celownik laserowy" -msgstr[3] "podlufowy celownik laserowy" +msgstr[1] "podlufowe celowniki laserowe" +msgstr[2] "podlufowych celowników laserowych" +msgstr[3] "podlufowego celownika laserowego" #: lang/json/gunmod_from_json.py msgid "" @@ -165193,15 +170383,18 @@ msgstr "" msgid "LeMat revolver shotgun" msgid_plural "LeMat revolver shotguns" msgstr[0] "strzelba do rewolweru LeMat" -msgstr[1] "strzelba do rewolweru LeMat" -msgstr[2] "strzelba do rewolweru LeMat" -msgstr[3] "strzelba do rewolweru LeMat" +msgstr[1] "strzelby do rewolweru LeMat" +msgstr[2] "strzelb do rewolweru LeMat" +msgstr[3] "strzelby do rewolweru LeMat" #: lang/json/gunmod_from_json.py msgid "" "The Lemat revolver is unique in that its cylinder axis pin is also a fully " "functional 20ga percussion-primed smoothbore barrel. It's irremovable." msgstr "" +"Wyjątkowość rewolweru LeMat polega na tym, że trzpień osi cylindra jest " +"jednocześnie pełnowartościową lufą gładkolufową kalibru 20. Jest " +"nieusuwalna." #: lang/json/gunmod_from_json.py msgid "M203" @@ -165217,17 +170410,17 @@ msgid "" "attached to almost any rifle. It allows a single 40mm grenade to be loaded " "and fired." msgstr "" -"M203 pierwotnie opracowano do użycia z wariantami M16 lecz obecnie może być " -"przyłączany do niemal każdego karabinu. Pozwala na załadowanie i " -"wystrzelenie pojedynczego granatu 40mm." +"M203 pierwotnie opracowano do użycia z wariantami M16, lecz obecnie może być" +" przyłączany do niemal każdego karabinu. Pozwala na załadowanie i " +"wystrzelenie pojedynczego granatu 40 mm." #: lang/json/gunmod_from_json.py msgid "modified M203" msgid_plural "modified M203s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowany M203" +msgstr[1] "zmodyfikowane M203" +msgstr[2] "zmodyfikowanych M203" +msgstr[3] "zmodyfikowanego M203" #: lang/json/gunmod_from_json.py msgid "" @@ -165236,6 +170429,11 @@ msgid "" "and fired. This one was modified and customized to mount on pretty much any" " weapon other than pistols and pump-action guns, if you so want." msgstr "" +"M203 został pierwotnie zaprojektowany do użytku z wariantami M16, ale " +"obecnie może być montowany na prawie każdym karabinie. Pozwala na " +"załadowanie i wystrzelenie pojedynczego granatu 40 mm. Ten został " +"zmodyfikowany i dostosowany do montażu na prawie każdej broni poza " +"pistoletami i bronią typu pump action, jeśli tylko chcesz." #: lang/json/gunmod_from_json.py msgid "M320 GLM" @@ -165252,14 +170450,17 @@ msgid "" " be either attached to a rifle or combined with a buttstock for standalone " "use." msgstr "" +"Moduł granatnika M320 oferuje funkcjonalność większych granatników w bardzo " +"małej postaci, kosztem zmniejszonej celności. Może być albo przyłączony do " +"karabinu, albo wyposażony w kolbę do samodzielnego użycia." #: lang/json/gunmod_from_json.py msgid "modified M320 GLM" msgid_plural "modified M320 GLMs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowany M320 GLM" +msgstr[1] "zmodyfikowane M320 GLM" +msgstr[2] "zmodyfikowanych M320 GLM" +msgstr[3] "zmodyfikowanego M320 GLM" #: lang/json/gunmod_from_json.py msgid "" @@ -165269,28 +170470,35 @@ msgid "" "use. This one was modified and customized to mount on pretty much any " "weapon other than pistols and pump-action guns, if you so want." msgstr "" +"Moduł wyrzutni granatów M320 oferuje funkcjonalność większych wyrzutni w " +"bardzo małym opakowaniu, kosztem zmniejszonej celności. Może być " +"przymocowany do karabinu lub połączony z kolbą do samodzielnego użytku. Ten " +"został zmodyfikowany i dostosowany do montażu na prawie każdej broni poza " +"pistoletami i bronią typu pompka, jeśli tylko chcesz." #: lang/json/gunmod_from_json.py msgid "M6 Survival Gun shotgun" msgid_plural "M6 Survival Gun shotguns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "strzelba karabinu survivalowego M6" +msgstr[1] "strzelby karabinu survivalowego M6" +msgstr[2] "strzelb karabinu survivalowego M6" +msgstr[3] "strzelby karabinu survivalowego M6" #: lang/json/gunmod_from_json.py msgid "" "The integrated 12 gauge shotgun barrel of the Chiappa M6 Survival Gun. It's" " irremovable." msgstr "" +"Zintegrowana strzelba kalibru 12 w karabinie survivalowym Chiappa M6. Jest " +"nieusuwalna." #: lang/json/gunmod_from_json.py msgid "masterkey shotgun" msgid_plural "masterkey shotguns" msgstr[0] "strzelba podlufowa" -msgstr[1] "strzelba podlufowa" -msgstr[2] "strzelba podlufowa" -msgstr[3] "strzelba podlufowa" +msgstr[1] "strzelby podlufowe" +msgstr[2] "strzelb podlufowych" +msgstr[3] "strzelby podlufowej" #: lang/json/gunmod_from_json.py msgid "" @@ -165299,16 +170507,16 @@ msgid "" "fired." msgstr "" "Minimalistyczna strzelba typu pump action, pozwalająca na podlufowe " -"montowanie pod wieloma karabinkami. Pozwala załadować i wystrzelić łącznie " +"montowanie pod wieloma karabinami. Pozwala załadować i wystrzelić łącznie " "cztery naboje do strzelby." #: lang/json/gunmod_from_json.py msgid "modified masterkey shotgun" msgid_plural "modified masterkey shotguns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowana strzelba podlufowa" +msgstr[1] "zmodyfikowane strzelby podlufowe" +msgstr[2] "zmodyfikowanych strzelb podlufowych" +msgstr[3] "zmodyfikowanej strzelby podlufowej" #: lang/json/gunmod_from_json.py msgid "" @@ -165317,28 +170525,35 @@ msgid "" "fired. This one was modified and customized to mount on pretty much any " "weapon other than pistols and pump-action guns, if you so want." msgstr "" +"Minimalistyczna strzelba typu pump action, którą można zamontować pod lufą " +"wielu karabinów. Pozwala załadować i wystrzelić w sumie cztery pociski " +"śrutowe. Ta została zmodyfikowana i dostosowana do montażu na praktycznie " +"każdej broni poza pistoletami i bronią typu pump action, jeśli tylko chcesz." #: lang/json/gunmod_from_json.py msgid "40mm pipe launcher" msgid_plural "40mm pipe launchers" -msgstr[0] "rurowy granatnik 40mm" -msgstr[1] "rurowy granatnik 40mm" -msgstr[2] "rurowy granatnik 40mm" -msgstr[3] "rurowy granatnik 40mm" +msgstr[0] "rurowy granatnik 40 mm" +msgstr[1] "rurowe granatniki 40 mm" +msgstr[2] "rurowych granatników 40 mm" +msgstr[3] "rurowego granatnika 40 mm" #: lang/json/gunmod_from_json.py msgid "" "This is a home built launcher tube that can be attached to almost any weapon" " except handguns. It allows a single 40mm grenade to be loaded and fired." msgstr "" +"To domowej roboty tuba wyrzutni granatów 40 mm, która może być przyłączana " +"do niemal każdej broni z wyjątkiem pistoletów. Pozwala na załadowanie i " +"wystrzelenie pojedynczego granatu 40 mm." #: lang/json/gunmod_from_json.py msgid "pistol bayonet" msgid_plural "pistol bayonets" msgstr[0] "bagnet pistoletowy" -msgstr[1] "bagnet pistoletowy" -msgstr[2] "bagnet pistoletowy" -msgstr[3] "bagnet pistoletowy" +msgstr[1] "bagnety pistoletowe" +msgstr[2] "bagnetów pistoletowych" +msgstr[3] "bagnetu pistoletowego" #: lang/json/gunmod_from_json.py msgid "" @@ -165351,10 +170566,10 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "RM121 aux shotgun" msgid_plural "RM121 aux shotguns" -msgstr[0] "RM121 strzelba pomocnicza" -msgstr[1] "RM121 strzelba pomocnicza" -msgstr[2] "RM121 strzelba pomocnicza" -msgstr[3] "RM121 strzelba pomocnicza" +msgstr[0] "strzelba pomocnicza RM121" +msgstr[1] "strzelby pomocnicze RM121" +msgstr[2] "strzelb pomocniczych RM121" +msgstr[3] "strzelby pomocniczej RM121" #: lang/json/gunmod_from_json.py msgid "" @@ -165362,17 +170577,17 @@ msgid "" "caseless shotgun, which can be mounted under the barrel of many rifles. " "Accepts RMSA10 box magazines." msgstr "" -"Rivtech RM121 pomocniczy system broni to zasilana magazynkiem " +"Pomocniczy system broni Rivtech RM121 to zasilana magazynkiem " "półautomatyczna strzelba bezłuskowa, która może być montowana pod wieloma " -"rodzjami karabinów. Używa magazynków pudełkowych RMSA10." +"rodzajami karabinów. Używa magazynków RMSA10." #: lang/json/gunmod_from_json.py msgid "modified RM121 aux shotgun" msgid_plural "modified RM121 aux shotguns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowana strzelba pomocnicza RM121" +msgstr[1] "zmodyfikowane strzelby pomocnicze RM121" +msgstr[2] "zmodyfikowanych strzelb pomocniczych RM121" +msgstr[3] "zmodyfikowanej strzelby pomocniczej RM121" #: lang/json/gunmod_from_json.py msgid "" @@ -165381,14 +170596,19 @@ msgid "" "Accepts RMSA10 box magazines. This one was modified and customized to mount" " on pretty much any weapon other than pistols, if you so want." msgstr "" +"System broni pomocniczej Rivtech RM121 to zasilana magazynkami " +"półautomatyczna strzelba bezłuskowa, którą można zamontować pod lufą wielu " +"karabinów. Akceptuje magazynki pudełkowe RMSA10. Ta została zmodyfikowana i " +"dostosowana do montażu na praktycznie każdej broni poza pistoletami, jeśli " +"tylko chcesz." #: lang/json/gunmod_from_json.py msgid "underslung shotgun" msgid_plural "underslung shotguns" -msgstr[0] "podlufowa dwururka" -msgstr[1] "podlufowa dwururka" -msgstr[2] "podlufowa dwururka" -msgstr[3] "podlufowa dwururka" +msgstr[0] "podlufowa strzelba" +msgstr[1] "podlufowe strzelby" +msgstr[2] "podlufowych strzelb" +msgstr[3] "podlufowej strzelby" #: lang/json/gunmod_from_json.py msgid "" @@ -165401,10 +170621,10 @@ msgstr "" #: lang/json/gunmod_from_json.py msgid "modified underslung shotgun" msgid_plural "modified underslung shotguns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowana podlufowa strzelby" +msgstr[1] "zmodyfikowane podlufowe strzelby" +msgstr[2] "zmodyfikowanych podlufowych strzelb" +msgstr[3] "zmodyfikowanej podlufowej strzelby" #: lang/json/gunmod_from_json.py msgid "" @@ -165413,6 +170633,10 @@ msgid "" " was modified and customized to mount on pretty much any weapon other than " "pistols, if you so want." msgstr "" +"Krótka strzelba z dwoma lufami, którą można zamontować pod lufą wielu " +"karabinów. Pozwala na załadowanie i wystrzelenie dwóch pocisków śrutowych. " +"Ta została zmodyfikowana i dostosowana do montażu na prawie każdej broni " +"poza pistoletami, jeśli tylko chcesz." #: lang/json/gunmod_from_json.py msgid "" @@ -165420,34 +170644,41 @@ msgid "" "into a less-lethal electrolaser capable of stunning targets, at the cost of " "decreased damage output and increased power consumption." msgstr "" +"Zestaw zaawansowanej technologicznie elektroniki i optyki. Przekształca " +"pistolet laserowy w mniej zabójczy laser elektryczny, zdolny do ogłuszania " +"celów, kosztem zmniejszonych obrażeń i zwiększonego zużycia energii." #: lang/json/gunmod_from_json.py msgid "" "A capacitor with a higher energy density increases range and damage, at the " "cost of doubling power consumption." msgstr "" +"Kondensator o większej gęstości energii zwiększa zasięg i obrażenia, kosztem" +" podwojenia poboru mocy." #: lang/json/gunmod_from_json.py msgid "terrible iron sights" msgid_plural "terrible iron sights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "fatalny celownik mechaniczny" +msgstr[1] "fatalne celowniki mechaniczne" +msgstr[2] "fatalnych celowników mechanicznych" +msgstr[3] "fatalnego celownika mechanicznego" #: lang/json/gunmod_from_json.py msgid "" "The iron sights of this weapon are infamously terrible, making aiming much " "harder than it needs to be." msgstr "" +"Niesławne przyrządy celownicze tej broni są fatalne, przez co celowanie jest" +" znacznie trudniejsze, niż być powinno." #: lang/json/gunmod_from_json.py msgid "holographic aim-assist system" msgid_plural "holographic aim-assist system" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "holograficzny system wspomagania celowania" +msgstr[1] "holograficzne systemy wspomagania celowania" +msgstr[2] "holograficznych systemów wspomagania celowania" +msgstr[3] "holograficznego systemu wspomagania celowania" #: lang/json/gunmod_from_json.py msgid "" @@ -165455,56 +170686,68 @@ msgid "" "probabilities, and enemy movements, before outputting the information into " "an AR holo display. It greatly increases both accuracy and aiming speed." msgstr "" +"Zaawansowany komputer balistyczny oblicza trajektorie pocisków, " +"prawdopodobieństwo trafienia i ruchy przeciwnika, a następnie przekazuje te " +"informacje na holoekran AR. Znacznie zwiększa to zarówno celność, jak i " +"szybkość celowania." #: lang/json/gunmod_from_json.py msgid "Underslung flare launcher" msgid_plural "Underslung flare launchers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "podwieszana wyrzutnia flar" +msgstr[1] "podwieszane wyrzutnie flar" +msgstr[2] "podwieszanych wyrzutni flar" +msgstr[3] "podwieszanej wyrzutni flar" #: lang/json/gunmod_from_json.py msgid "" "A small barrel which launches signal flares. However, due to its awkward " "position, it has lower accuracy compared to an actual flaregun." msgstr "" +"Mała lufa, która wystrzeliwuje flary sygnalizacyjne. Jednak z powodu " +"niezręcznego położenia, ma mniejszą celność w porównaniu z prawdziwą " +"wyrzutnią flar." #: lang/json/gunmod_from_json.py msgid "CQB SI shotgun" msgid_plural "CQB SI shotguns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "strzelba CQB SI" +msgstr[1] "strzelby CQB SI" +msgstr[2] "strzelbstrzelba CQB SI CQB SI" +msgstr[3] "strzelby CQB SI" #: lang/json/gunmod_from_json.py msgid "" "The integrated underbarrel shotgun of this gun which holds a single shot. " "It's irremovable." msgstr "" +"Zintegrowana strzelba pod lufą tej broni, która mieści jeden strzał. Jest " +"nieusuwalna." #: lang/json/gunmod_from_json.py msgid "folding butt hook stock" msgid_plural "folding butt hook stocks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "składana kolba z hakiem naramiennym" +msgstr[1] "składane kolby z hakiem naramiennym" +msgstr[2] "składanych kolb z hakiem naramiennym" +msgstr[3] "składanej kolby z hakiem naramiennym" #: lang/json/gunmod_from_json.py msgid "" "A replacement folding stock that partially encloses arm allowing for greater" " stability. Good fit and padding also helps with recoil control." msgstr "" +"Składany zamiennik kolby, który częściowo obejmuje ramię, zapewniając " +"większą stabilność. Dobre dopasowanie i wyściełanie pomaga również w " +"kontroli odrzutu." #: lang/json/gunmod_from_json.py msgid "diffracting lens" msgid_plural "diffracting lenses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "soczewka rozpraszająca" +msgstr[1] "soczewki rozpraszające" +msgstr[2] "soczewek rozpraszających" +msgstr[3] "soczewki rozpraszającej" #: lang/json/gunmod_from_json.py msgid "" @@ -165512,14 +170755,18 @@ msgid "" "beam into several lower powered beams. This slightly increases point-blank " "damage and makes it difficult to not hit, but reduces range" msgstr "" +"Zestaw optyki przeznaczony do zamontowania na broni laserowej, który " +"rozprasza wiązkę laserową na kilka wiązek o niższej mocy. Zwiększa to nieco " +"obrażenia od strzałów z bliska i sprawia, że trudno jest nie trafić, ale " +"zmniejsza zasięg." #: lang/json/gunmod_from_json.py msgid "underbarrel launcher" msgid_plural "underbarrel launchers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "podlufowa wyrzutnia" +msgstr[1] "podlufowe wyrzutnie" +msgstr[2] "podlufowych wyrzutni" +msgstr[3] "podlufowej wyrzutni" #: lang/json/gunmod_from_json.py msgid "" @@ -165531,14 +170778,21 @@ msgid "" "targets. The launcher can be detached and its sights reattached to the " "could be disassembled and attached to a suitable rifle, if so desired." msgstr "" +"Pękata, jednostrzałowa wyrzutnia z dużą lufą, nadająca się do wystrzeliwania" +" granatów lub flar. Wyrzutnia ta może być przymocowana do karabinu lub innej" +" odpowiedniej platformy i posiada własny zestaw celowników. W ostatnich " +"latach w handlu pojawiły się warianty wyrzutni do wystrzeliwania rac. Z " +"odpowiednimi nabojami może to być skuteczna broń przeciwko twardym lub " +"miękkim celom. Wyrzutnia może zostać odłączona, a jej celowniki ponownie " +"zamontowane do karabinu, jeśli zajdzie taka potrzeba." #: lang/json/gunmod_from_json.py msgid "underbarrel launcher (modified)" msgid_plural "underbarrel launcher (modified)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowana podlufowa wyrzutnia" +msgstr[1] "zmodyfikowane podlufowe wyrzutnie" +msgstr[2] "zmodyfikowanych podlufowych wyrzutni" +msgstr[3] "zmodyfikowanej podlufowej wyrzutni" #: lang/json/gunmod_from_json.py msgid "" @@ -165549,44 +170803,54 @@ msgid "" "would be devastating against hard or soft targets. A crude homemade bracket" " has been attached, allowing a wider variety of hosts." msgstr "" +"Pękata, jednostrzałowa wyrzutnia do wystrzeliwania granatów lub flar. " +"Wyrzutnia ta może być przymocowana do karabinu lub innej odpowiedniej " +"platformy i posiada własny zestaw celowników. W ostatnich latach w handlu " +"pojawiły się warianty wyrzutni do wystrzeliwania rac. Z odpowiednimi " +"nabojami, byłaby to niszczycielska broń przeciwko twardym lub miękkim celom." +" Dołączony został prymitywny uchwyt domowej roboty, pozwalający na szerszą " +"gamę zastosowań." #: lang/json/gunmod_from_json.py msgid "underbarrel shotgun" msgid_plural "underbarrel shotguns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "podlufowa strzelba" +msgstr[1] "podlufowe strzelby" +msgstr[2] "podlufowych strzelb" +msgstr[3] "podlufowej strzelby" #: lang/json/gunmod_from_json.py msgid "modified underbarrel shotgun" msgid_plural "modified underbarrel shotguns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zmodyfikowana podlufowa strzelba" +msgstr[1] "zmodyfikowane podlufowe strzelby" +msgstr[2] "zmodyfikowanych podlufowych strzelb" +msgstr[3] "zmodyfikowanej podlufowej strzelby" #: lang/json/gunmod_from_json.py msgid "'Silent Winds' suppressor" msgid_plural "'Silent Winds' suppressors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "tłumik „cichych wiatrów”" +msgstr[1] "tłumiki „cichych wiatrów”" +msgstr[2] "tłumików „cichych wiatrów”" +msgstr[3] "tłumika „cichych wiatrów”" #: lang/json/gunmod_from_json.py msgid "" "Rather than using purely wipe media, an additional localized silence spell " "in this tube quiets gunshots going through to hearing-safe levels." msgstr "" +"Zamiast używać wyłącznie środków czyszczących, dodatkowe zaklęcie " +"wyciszające w tej tubie wycisza wystrzały do bezpiecznego dla słuchu " +"poziomu." #: lang/json/gunmod_from_json.py msgid "mana laser sight (rail)" msgid_plural "mana laser sights (rail)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "celownik laserowy many (szyna)" +msgstr[1] "celowniki laserowe many (szyna)" +msgstr[2] "celowników laserowych many (szyna)" +msgstr[3] "celownika laserowego many (szyna)" #: lang/json/gunmod_from_json.py msgid "" @@ -165595,14 +170859,20 @@ msgid "" "acquisition. Aside from increased weight, there are no drawbacks. You can " "rotate the attachment rail to fit under the barrel." msgstr "" +"Mały laser światła widzialnego, wykorzystujący światło emitowane przez " +"kryształ many, montowany na szynie akcesoryjnej broni palnej w celu " +"zwiększenia łatwości i szybkości celowania. Poza zwiększoną wagą, nie ma " +"żadnych wad. Można obrócić szynę mocującą, aby zmieściła się pod lufą." #: lang/json/gunmod_from_json.py msgid "mana laser sight (underbarrel)" msgid_plural "mana laser sights (underbarrel)" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "celownik laserowy many (podlufowy)" +msgstr[1] "celowniki laserowe many (podlufowe)" msgstr[2] "" -msgstr[3] "" +"celowników laserowych many (podlufowychcelownika laserowego many " +"(podlufowego))" +msgstr[3] "celownika laserowego many (podlufowego)" #: lang/json/gunmod_from_json.py msgid "" @@ -165611,36 +170881,48 @@ msgid "" "acquisition. Aside from increased weight, there are no drawbacks. You can " "rotate the attachment rail to fit on the rail." msgstr "" +"Mały laser światła widzialnego, wykorzystujący światło emitowane przez " +"kryształ many, montowany na szynie akcesoryjnej broni palnej w celu " +"zwiększenia łatwości i szybkości celowania. Poza zwiększoną wagą, nie ma " +"żadnych wad. Można obrócić szynę mocującą, aby zmieściła się na szynie " +"montażowej." #: lang/json/gunmod_from_json.py msgid "mana dot sight" msgid_plural "mana dot sights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kolimator many" +msgstr[1] "kolimatory many" +msgstr[2] "kolimatorów many" +msgstr[3] "kolimatora many" #: lang/json/gunmod_from_json.py 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 "" +"Dodaje do górnej części broni optykę z niebieską kropką wykonaną z " +"krystalicznej many, zastępując mechaniczne przyrządy celownicze. Zwiększa " +"celność i wagę." #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" -msgstr "Patroszysz i filetujesz rybę" +msgid "You gut and fillet the fish." +msgstr "Patroszysz i filetujesz rybę." #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" -msgstr "Ostrożnie rozłupujesz egzoszkielet by dostać się do mięsa pod spodem" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" +"Ostrożnie otwierasz jego egzoszkielet, aby dostać się do ciała pod spodem." + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." +msgstr "Otwierasz jego twardą skorupę, by dostać się do ciała pod spodem." #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" -"Przeszukujesz te pozostałości nieudanego eksperymentu w poszukiwaniu " -"dających się wykorzystać bionicznych części" +"Szukasz ocalałego sprzętu w tym, co zostało z tego nieudanego eksperymentu." #: lang/json/harvest_from_json.py msgid "" @@ -165648,19 +170930,24 @@ msgid "" "metal monster. Much of it is just scrap metal, but some of the electronics " "look surprisingly intact." msgstr "" +"Szukasz ocalałego sprzętu w tym, co zostało z tego potwora z metalu i ciała." +" Większość z nich to tylko złom, ale niektóre elementy elektroniczne " +"wyglądają na nienaruszone." #: lang/json/harvest_from_json.py msgid "" "You messily hack apart the hulking mass of fused, rancid flesh, taking note " "of anything that stands out." msgstr "" +"Niedbale rąbiesz zwalistą masę złączonego zepsutego mięsa, zwracając uwagę " +"na wszystko, co się wyróżnia." #: lang/json/harvest_from_json.py msgid "" "You messily hack apart the colossal mass of fused, rancid flesh, taking note" " of anything that stands out." msgstr "" -"Niedbale rąbiesz olbrzymią masę złączonego zepsutego mięsa, zwracając uwagę " +"Niedbale rąbiesz kolosalną masę złączonego zepsutego mięsa, zwracając uwagę " "na wszystko, co się wyróżnia." #: lang/json/harvest_from_json.py @@ -165673,7 +170960,7 @@ msgstr "" #: lang/json/harvest_from_json.py msgid "You laboriously dissect the colossal insect. " -msgstr "Mozolnie dokonujesz sekcji olbrzymiego owada. " +msgstr "Mozolnie dokonujesz sekcji kolosalnego owada. " #: lang/json/harvest_from_json.py lang/json/snippet_from_json.py #: lang/json/snippet_from_json.py @@ -165741,11 +171028,11 @@ msgstr "Z wysiłkiem tniesz i rąbiesz pozostałości grzybiczej masy." msgid "" "As you butcher the chocolate corpse, you break the large chunks of flesh " "down into bars." -msgstr "" +msgstr "Jak tniesz czekoladowe ciało, rąbiesz duże kawałki ciała na batony." #: lang/json/harvest_from_json.py msgid "As you butcher the corpse, it turns into a sugary mush of licorice." -msgstr "" +msgstr "Jak tniesz ciało, zamienia się ono w słodką lukrecjową papkę." #: lang/json/help_from_json.py msgid ": Introduction" @@ -168141,7 +173428,7 @@ msgstr "Rozpal szybko ogień" #: lang/json/item_action_from_json.py msgid "Pry crate, window, door or nails" -msgstr "" +msgstr "Podważ skrzynię, okno, drzwi lub gwoździe" #: lang/json/item_action_from_json.py msgid "Pick a lock" @@ -168806,6 +174093,12 @@ msgstr "" "Jako broń, ten przedmiot jest dobrze wykonany a zatem " "wytrzyma trudy walki." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" +"Oznaczono ten przedmiot, by nie pokazywał się na postaci podczas noszenia." + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -169829,6 +175122,15 @@ msgstr "To płaska powierzchnia. Może być dobrym miejscem na jedzenie." msgid "You can craft here." msgstr "Możesz tu wytwarzać." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" +"Spala olej napędowy lub JP8 ze zbiornika w pojeździe. Może też spalać " +"biodiesel i naftę, choć nieco mniej efektywnie." + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "Przewiń w górę" @@ -169997,6 +175299,10 @@ msgstr "Wyłącz panel" msgid "Change side armor is worn on" msgstr "Zmień stronę, po której nosisz zbroję" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "Przełącz widoczność pancerza na postaci gracza." + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "Przypisz literę do zbroi" @@ -171109,6 +176415,10 @@ msgstr "Przesuń kursor w górę" msgid "Move cursor down" msgstr "Przesuń kursor w dół" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "Przełącz grafikę" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "Wyjdź z tego ekrany przypisania klawiszy" @@ -171309,6 +176619,20 @@ msgstr "Tak" msgid "No" msgstr "Nie" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "Z przyjaciółmi" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "Tylko ja" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "Anuluj" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "Wyjdź" @@ -171495,7 +176819,7 @@ msgstr "Przełącz światła nad głową" #: lang/json/keybinding_from_json.py msgid "Toggle planter" -msgstr "Przełącz sadzarkę" +msgstr "Przełącz donicę" #: lang/json/keybinding_from_json.py msgid "Toggle plow" @@ -171845,7 +177169,7 @@ msgid "" "This speedloader can hold 6 rounds of .40 S&W or 10mm Auto and quickly " "reload a compatible revolver." msgstr "" -"Ta ładowarka może pomieścić 6 naboi .40 S&W lub 10 mm Auto i szybko " +"Ten szybkoładowacz może pomieścić 6 naboi .40 S&W lub 10 mm Auto i szybko " "przeładować kompatybilny rewolwer." #: lang/json/magazine_from_json.py @@ -172161,7 +177485,7 @@ msgid "" " a compatible rifle with tubular magazine." msgstr "" "To jest tuba na 19 naboi kal. .22, zaprojektowania do szybkiego ładowania " -"kompatybilnych karabinów z rurowym magazynkiem." +"kompatybilnych karabinków z rurowym magazynkiem." #: lang/json/magazine_from_json.py msgid "SIG Mosquito 10-round magazine" @@ -172619,9 +177943,9 @@ msgid "" "little more than a bent sheet of steel held together by duct tape and hope, " "for use with STANAG compatible rifles." msgstr "" -"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się z " -"niewiele więcej niż zgiętej blachy stalowej, trzymającej się na taśmie " -"klejącej i słowie honoru, do karabinków zgodnych ze STANAG." +"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się " +"głównie ze zgiętej blachy, trzymającej się na taśmie klejącej i słowie " +"honoru, do karabinków zgodnych ze STANAG." #: lang/json/magazine_from_json.py msgid "Mini-14 5-round makeshift magazine" @@ -172637,9 +177961,9 @@ msgid "" "little more than a bent sheet of steel held together by duct tape and hope, " "for use with the Ruger Mini-14 rifle." msgstr "" -"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się z " -"niewiele więcej niż zgiętej blachy stalowej, trzymającej się na taśmie " -"klejącej i słowie honoru, do karabinka Ruger Mini-14." +"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się " +"głównie ze zgiętej blachy, trzymającej się na taśmie klejącej i słowie " +"honoru, do karabinka Ruger Mini-14." #: lang/json/magazine_from_json.py msgid "M2010 5-round magazine" @@ -172774,9 +178098,9 @@ msgid "" "little more than a bent sheet of steel held together by duct tape and hope, " "for use with the FN FAL rifle." msgstr "" -"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek pudełkowy składający " -"się z niewiele więcej niż zgiętej blachy stalowej, trzymającej się na taśmie" -" klejącej i nadziei, do karabinu FN FAL." +"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się " +"głównie ze więcej niż zgiętej blachy, trzymającej się na taśmie klejącej i " +"słowie honoru, do karabinu FN FAL." #: lang/json/magazine_from_json.py msgid "G3 50-round drum magazine" @@ -172816,9 +178140,9 @@ msgid "" "little more than a bent sheet of steel held together by duct tape and hope, " "for use with G3 rifle." msgstr "" -"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się z " -"niewiele więcej niż zgiętej blachy stalowej, trzymającej się na taśmie " -"klejącej i słowie honoru, do karabinu G3." +"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się " +"głównie ze zgiętej blachy, trzymającej się na taśmie klejącej i słowie " +"honoru, do karabinu G3." #: lang/json/magazine_from_json.py msgid "M14 20-round magazine" @@ -172866,9 +178190,9 @@ msgid "" "little more than a bent sheet of steel held together by duct tape and hope, " "for use with M14 pattern rifles." msgstr "" -"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się z " -"niewiele więcej niż zgiętej stalowej blachy trzymającej się na taśmie " -"klejącej i słowie honoru, do karabinów z linii M14." +"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się " +"głównie ze zgiętej stalowej blachy, trzymającej się na taśmie klejącej i " +"słowie honoru, do karabinów z linii M14." #: lang/json/magazine_from_json.py msgid "SCAR-H 50-round drum magazine" @@ -172924,9 +178248,9 @@ msgid "" "little more than a bent sheet of steel held together by duct tape and hope, " "for use with the FN SCAR-H rifle." msgstr "" -"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się z " -"niewiele więcej niż zgiętej stalowej blachy trzymającej się na taśmie " -"klejącej i słowie honoru, do karabinu FN SCAR-H." +"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się " +"głównie ze zgiętej stalowej blachy, trzymającej się na taśmie klejącej i " +"słowie honoru, do karabinu FN SCAR-H." #: lang/json/magazine_from_json.py msgid "HK417 20-round magazine" @@ -172966,9 +178290,9 @@ msgid "" "little more than a bent sheet of steel held together by duct tape and hope, " "for use with the HK417 rifle." msgstr "" -"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się z " -"niewiele więcej niż zgiętej stalowej blachy trzymającej się na taśmie " -"klejącej i słowie honoru, do karabinu HK417." +"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się " +"głównie ze zgiętej stalowej blachy, trzymającej się na taśmie klejącej i " +"słowie honoru, do karabinu HK417." #: lang/json/magazine_from_json.py msgid "AR-10 20-round magazine" @@ -172996,9 +178320,9 @@ msgid "" "little more than a bent sheet of steel held together by duct tape and hope, " "for use with the AR-10 rifle." msgstr "" -"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się z " -"niewiele więcej niż zgiętej blachy stalowej, trzymającej się na taśmie " -"klejącej i słowie honoru, do karabinu AR-10." +"Prowizoryczny 5-nabojowy prosty jednorzędowy magazynek składający się " +"głównie ze zgiętej blachy, trzymającej się na taśmie klejącej i słowie " +"honoru, do karabinu AR-10." #: lang/json/magazine_from_json.py msgid "PPK 8-round magazine" @@ -173030,134 +178354,131 @@ msgid_plural "Skorpion Vz. 61 20-round magazines" msgstr[0] "20-nabojowy magazynek Skorpion vz. 61" msgstr[1] "20-nabojowe magazynki Skorpion vz. 61" msgstr[2] "20-nabojowych magazynków Skorpion vz. 61" -msgstr[3] "20-nabojowego magazynku Skorpion vz. 61" +msgstr[3] "20-nabojowego magazynku Škorpion vz. 61" #: lang/json/magazine_from_json.py msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" -"Standardowy 20-nabojowy magazynek do Skorpion vz. 61, na naboje .32 ACP." +"Standardowy 20-nabojowy magazynek do Škorpion vz. 61, na naboje .32 ACP." #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" -msgstr[0] "7-nabojowy magazynek P32" -msgstr[1] "7-nabojowe magazynki P32" -msgstr[2] "7-nabojowych magazynków P32" -msgstr[3] "7-nabojowego magazynku P32" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" +msgstr[0] "7-nabojowy magazynek P-32" +msgstr[1] "7-nabojowe magazynki P-32" +msgstr[2] "7-nabojowych magazynków P-32" +msgstr[3] "7-nabojowego magazynku P-32" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." -msgstr "Standardowy 7-nabojowy stalowy magazynek do Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." +msgstr "Standardowy 7-nabojowy stalowy magazynek do Kel-Tec P-32." #: lang/json/magazine_from_json.py msgid "P226 .357 SIG 12-round magazine" msgid_plural "P226 .357 SIG 12-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "12-nabojowy magazynek .357 SIG P226" +msgstr[1] "12-nabojowe magazynki .357 SIG P226" +msgstr[2] "12-nabojowych magazynków .357 SIG P226" +msgstr[3] "12-nabojowego magazynku .357 SIG P226" #: lang/json/magazine_from_json.py msgid "" "A 12-round double stack box magazine for a SIG P226 chambered for .357 SIG " "rounds." -msgstr "" -"Dwurzędowy pudełkowy magazynek na 12 naboi do SIG P226 kalibru .357 SIG." +msgstr "12-nabojowy dwurzędowy magazynek do SIG P226 kalibru .357 SIG." #: lang/json/magazine_from_json.py msgid "P320 .357 SIG 13-round magazine" msgid_plural "P320 .357 SIG 13-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "13-nabojowy magazynek .357 SIG P320" +msgstr[1] "13-nabojowe magazynki .357 SIG P320" +msgstr[2] "13-nabojowych magazynków .357 SIG P320" +msgstr[3] "13-nabojowego magazynku .357 SIG P320" #: lang/json/magazine_from_json.py msgid "A 13-round double stack box magazine for the SIG Sauer P320." -msgstr "13-nabojowy dwurzędowy magazynek pudełkowy do SIG Sauer P320." +msgstr "13-nabojowy dwurzędowy magazynek do SIG Sauer P320." #: lang/json/magazine_from_json.py msgid ".38/.357 7-round speedloader" msgid_plural ".38/.357 7-round speedloaders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "7-nabojowy szybkoładowacz .38/.357" +msgstr[1] "7-nabojowe szybkoładowacze .38/.357" +msgstr[2] "7-nabojowych szybkoładowaczy .38/.357" +msgstr[3] "7-nabojowego szybkoładowacza .38/.357" #: lang/json/magazine_from_json.py msgid "" "This speedloader can hold 7 rounds of .357 Magnum or .38 Special and quickly" " reload a compatible revolver." msgstr "" -"Ta ładowarka może pomieścić 7 naboi .357 Magnum lub .38 Special i szybko " -"przeładować kompatybilny rewolwer." +"Ten szybkoładowacz może pomieścić 7 naboi .357 Magnum lub .38 Special i " +"szybko przeładować kompatybilny rewolwer." #: lang/json/magazine_from_json.py msgid ".38/.357 5-round speedloader" msgid_plural ".38/.357 5-round speedloaders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "5-nabojowy szybkoładowacz .38/.357" +msgstr[1] "5-nabojowe szybkoładowacze .38/.357" +msgstr[2] "5-nabojowych szybkoładowaczy .38/.357" +msgstr[3] "5-nabojowego szybkoładowacza .38/.357" #: lang/json/magazine_from_json.py msgid "" "This speedloader can hold 5 rounds of .357 Magnum or .38 Special and quickly" " reload a compatible revolver." msgstr "" -"Ta ładowarka może pomieścić 5 naboi .357 Magnum lub .38 Special i szybko " -"przeładować kompatybilny rewolwer." +"Ten szybkoładowacz może pomieścić 5 naboi .357 Magnum lub .38 Special i " +"szybko przeładować kompatybilny rewolwer." #: lang/json/magazine_from_json.py msgid ".38/.357 6-round speedloader" msgid_plural ".38/.357 6-round speedloaders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "6-nabojowy szybkoładowacz .38/.357" +msgstr[1] "6-nabojowe szybkoładowacze .38/.357" +msgstr[2] "6-nabojowych szybkoładowaczy .38/.357" +msgstr[3] "6-nabojowego szybkoładowacza .38/.357" #: lang/json/magazine_from_json.py msgid "" "This speedloader can hold 6 rounds of .357 Magnum or .38 Special and quickly" " reload a compatible revolver." msgstr "" -"Ta ładowarka może pomieścić 6 naboi .357 Magnum lub .38 Special i szybko " -"przeładować kompatybilny rewolwer." +"Ten szybkoładowacz może pomieścić 6 naboi .357 Magnum lub .38 Special i " +"szybko przeładować kompatybilny rewolwer." #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" +msgstr[0] "6-nabojowy magazynek P-3AT" +msgstr[1] "6-nabojowe magazynki P-3AT" +msgstr[2] "6-nabojowych magazynkó P-3AT" +msgstr[3] "6-nabojowego magazynku P-3AT" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." -msgstr "Standardowy 6-nabojowy pudełkowy magazynek stalowy do Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." +msgstr "Standardowy 6-nabojowy magazynek stalowy do Kel-Tec P-3AT." #: lang/json/magazine_from_json.py msgid "FN 1910 6-round magazine" msgid_plural "FN 1910 6-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "6-nabojowy magazynek FN 1910" +msgstr[1] "6-nabojowe magazynki FN 1910" +msgstr[2] "6-nabojowych magazynków FN 1910" +msgstr[3] "6-nabojowego magazynku FN 1910" #: lang/json/magazine_from_json.py msgid "" "A standard 6-round steel box magazine for the FN 1910. It looks a bit old." -msgstr "" -"Standardowy 6-nabojowy pudełkowy magazynek stalowy do FN 1910. Wygląda " -"staro." +msgstr "Standardowy 6-nabojowy magazynek stalowy do FN 1910. Wygląda staro." #: lang/json/magazine_from_json.py msgid "LCP 6-round magazine" msgid_plural "LCP 6-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "6-nabojowy magazynek LCP" +msgstr[1] "6-nabojowe magazynki LCP" +msgstr[2] "6-nabojowych magazynków LCP" +msgstr[3] "6-nabojowego magazynku LCP" #: lang/json/magazine_from_json.py msgid "A standard 6-round capacity magazine for the Ruger LCP pistol." @@ -173166,36 +178487,34 @@ msgstr "Standardowy 6-nabojowy magazynek do pistoletu Ruger LCP." #: lang/json/magazine_from_json.py msgid "MAC-11 32-round magazine" msgid_plural "MAC-11 32-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "32-nabojowy magazynek MAC-11" +msgstr[1] "32-nabojowe magazynki MAC-11" +msgstr[2] "32-nabojowych magazynków MAC-11" +msgstr[3] "32-nabojowego magazynku MAC-11" #: lang/json/magazine_from_json.py msgid "A cheap 32-round steel box magazine for use with the MAC-11 SMG." -msgstr "" -"Tani 32-nabojowy stalowy magazynek pudełkowy do pistoletu maszynowego " -"MAC-11." +msgstr "Tani 32-nabojowy stalowy magazynek do pistoletu maszynowego MAC-11." #: lang/json/magazine_from_json.py msgid "CF-380 8-round magazine" msgid_plural "CF-380 8-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "8-nabojowy magazynek CF-380" +msgstr[1] "8-nabojowe magazynki CF-380" +msgstr[2] "8-nabojowych magazynków CF-380" +msgstr[3] "8-nabojowego magazynku CF-380" #: lang/json/magazine_from_json.py msgid "An 8-round steel box magazine for use with the Hi-Point CF-380." -msgstr "8-nabojowy stalowy magazynek pudełkowy do Hi-Point CF-380." +msgstr "8-nabojowy stalowy magazynek do Hi-Point CF-380." #: lang/json/magazine_from_json.py msgid "CF-380 10-round magazine" msgid_plural "CF-380 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek CF-380" +msgstr[1] "10-nabojowe magazynki CF-380" +msgstr[2] "10-nabojowych magazynków CF-380" +msgstr[3] "10-nabojowego magazynku CF-380" #: lang/json/magazine_from_json.py msgid "A 10-round steel box magazine for use with the Hi-Point CF-380." @@ -173204,10 +178523,10 @@ msgstr "10-nabojowy stalowy magazynek pudełkowy do Hi-Point CF-380." #: lang/json/magazine_from_json.py msgid "Taurus Spectrum 6-round magazine" msgid_plural "Taurus Spectrum 6-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "6-nabojowy magazynek Taurus Spectrum" +msgstr[1] "6-nabojowe magazynki Taurus Spectrum" +msgstr[2] "6-nabojowych magazynków Taurus Spectrum" +msgstr[3] "6-nabojowego magazynku Taurus Spectrum" #: lang/json/magazine_from_json.py msgid "" @@ -173217,70 +178536,70 @@ msgstr "Kompaktowy 6-nabojowy stalowy magazynek pudełkowy do Taurus Spectrum." #: lang/json/magazine_from_json.py msgid "AF2011A1 16-round double magazine" msgid_plural "AF2011A1 16-round double magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "16-nabojowy podwójny magazynek AF2011A1" +msgstr[1] "16-nabojowe podwójne magazynki AF2011A1" +msgstr[2] "16-nabojowych podwójnych magazynków AF2011A1" +msgstr[3] "16-nabojowego podwójnego magazynku AF2011A1" #: lang/json/magazine_from_json.py msgid "" "Two .38 Super 8-round box magazines attached to a single base plate, holding" " up to 16 rounds in total, used by the AF2011A1 double-barrel pistol." msgstr "" -"Dwa pudełkowe magazynki na 8 naboi kalibru .38 Special złączone wspólną " -"podstawą, mieszczące łącznie 16 naboi, używane w dwulufowym AF2011A1." +"Dwa magazynki na 8 naboi kalibru .38 Super złączone wspólną podstawą, " +"mieszczące łącznie 16 naboi, używane w dwulufowym pistolecie AF2011A1." #: lang/json/magazine_from_json.py msgid "M1911 .38 Super 9-round magazine" msgid_plural "M1911 .38 Super 9-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "9-nabojowy magazynek M1911 .38 Super" +msgstr[1] "9-nabojowe magazynki M1911 .38 Super" +msgstr[2] "9-nabojowych magazynków M1911 .38 Super" +msgstr[3] "9-nabojowego magazynku M1911 .38 Super" #: lang/json/magazine_from_json.py msgid "A compact single stack box magazine for the M1911." -msgstr "Kompaktowy jednorzędowy magazynek pudełkowy do M1911." +msgstr "Kompaktowy jednorzędowy magazynek do M1911." #: lang/json/magazine_from_json.py msgid "90-two .40 S&W 12-round magazine" msgid_plural "90-two .40 S&W 12-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "12-nabojowy magazynek 92 .40 S&W" +msgstr[1] "12-nabojowe magazynki 92 .40 S&W" +msgstr[2] "12-nabojowych magazynków 92 .40 S&W" +msgstr[3] "12-nabojowego magazynku 92 .40 S&W" #: lang/json/magazine_from_json.py msgid "" "A magazine for the 92 and 96 series of Beretta handguns, this one is for .40" " S&W and can hold 12 rounds." msgstr "" -"Magazynek do pistoletów Betetta serii 92 i 96. Ten jest do kalibru .04 S&W i" +"Magazynek do pistoletów Beretta serii 92 i 96. Ten jest do kalibru .40 S&W i" " mieści 12 nabojów. " #: lang/json/magazine_from_json.py msgid "Glock .40 S&W/.357 SIG 22-round magazine" msgid_plural "Glock .40 S&W/.357 SIG 22-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "22-nabojowy magazynek Glock .40 S&W / .357 SIG" +msgstr[1] "22-nabojowe magazynki Glock .40 S&W / .357 SIG" +msgstr[2] "22-nabojowych magazynków Glock .40 S&W / .357 SIG" +msgstr[3] "22-nabojowego magazynku Glock .40 S&W / .357 SIG" #: lang/json/magazine_from_json.py msgid "" "An extended 22-round magazine for use with Glock pistols chambered for .40 " "S&W or .357 SIG." msgstr "" -"Wydłużony 22 nabojowy magazynek do pistoletów Glock w kalibrze .40 S&W lub " +"Wydłużony 22-nabojowy magazynek do pistoletów Glock w kalibrze .40 S&W lub " ".357 SIG." #: lang/json/magazine_from_json.py msgid "Glock .40 S&W/.357 SIG 15-round magazine" msgid_plural "Glock .40 S&W/.357 SIG 15-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "15-nabojowy magazynek Glock .40 S&W / .357 SIG" +msgstr[1] "15-nabojowe magazynki Glock .40 S&W / .357 SIG" +msgstr[2] "15-nabojowych magazynkó Glock .40 S&W / .357 SIG" +msgstr[3] "15-nabojowego magazynku Glock .40 S&W / .357 SIG" #: lang/json/magazine_from_json.py msgid "" @@ -173293,10 +178612,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "Px4 .40 S&W 14-round magazine" msgid_plural "Px4 .40 S&W 14-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "14-nabojowy magazynek Px4 .40 S&W" +msgstr[1] "14-nabojowe magazynki Px4 .40 S&W" +msgstr[2] "14-nabojowych magazynków Px4 .40 S&W" +msgstr[3] "14-nabojowego magazynku Px4 .40 S&W" #: lang/json/magazine_from_json.py msgid "" @@ -173306,10 +178625,10 @@ msgstr "Magazynek do Px4 Storm w kalibrze .40 S&W. Mieści 14 naboi." #: lang/json/magazine_from_json.py msgid "SIG Pro .40 12-round magazine" msgid_plural "SIG Pro .40 12-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "12-nabojowy magazynek SIG Pro .40" +msgstr[1] "12-nabojowe magazynki SIG Pro .40" +msgstr[2] "12-nabojowych magazynków SIG Pro .40" +msgstr[3] "12-nabojowego magazynku SIG Pro .40" #: lang/json/magazine_from_json.py msgid "A compact and reliable magazine for use with the SIG Pro .40 pistol." @@ -173318,10 +178637,10 @@ msgstr "Kompaktowy i niezawodny magazynek do pistoletu SIG Pro .40" #: lang/json/magazine_from_json.py msgid "makeshift .40 20-round magazine" msgid_plural "makeshift .40 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "prowizoryczny 20-nabojowy magazynek .40" +msgstr[1] "prowizoryczne 20-nabojowe magazynki .40" +msgstr[2] "prowizorycznych 20-nabojowych magazynków .40" +msgstr[3] "prowizorycznego 20-nabojowego magazynku .40" #: lang/json/magazine_from_json.py msgid "" @@ -173329,77 +178648,77 @@ msgid "" "submachinegun, with a simplified feed system. It looks like it might feed " "20 rounds of .40S&W." msgstr "" -"Prowizoryczny magazynek kompatybilny głownie z domowej roboty peemem 'Luty' " -"z uproszczonym systemem podawania. Wygląda na to że pomieści 20 naboi " +"Prowizoryczny magazynek kompatybilny głównie z domowej roboty peemem „Luty” " +"z uproszczonym systemem podawania. Wygląda na to, że pomieści 20 naboi " "kalibru .40 S&W." #: lang/json/magazine_from_json.py msgid "Hi-Power .40 S&W 10-round magazine" msgid_plural "Hi-Power .40 S&W 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek Hi-Power .40 S&W" +msgstr[1] "10-nabojowe magazynki Hi-Power .40 S&W" +msgstr[2] "10-nabojowych magazynków Hi-Power .40 S&W" +msgstr[3] "10-nabojowego magazynku Hi-Power .40 S&W" #: lang/json/magazine_from_json.py msgid "A 10-round steel box magazine for the Browning Hi-Power .40 S&W." -msgstr "10-nabojowy stalowy magazynek pudełkowy do Browning Hi-Power .40 S&W." +msgstr "10-nabojowy stalowy magazynek do Browning Hi-Power .40 S&W." #: lang/json/magazine_from_json.py msgid "PPQ .40 S&W 10-round magazine" msgid_plural "PPQ .40 S&W 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek PPQ .40 S&W" +msgstr[1] "10-nabojowe magazynki PPQ .40 S&W" +msgstr[2] "10-nabojowych magazynków PPQ .40 S&W" +msgstr[3] "10-nabojowego magazynku PPQ .40 S&W" #: lang/json/magazine_from_json.py msgid "A 10-round steel box magazine for the Walther PPQ .40 S&W." -msgstr "10-nabojowy stalowy magazynek pudełkowy do Walther PPQ .40 S&W." +msgstr "10-nabojowy stalowy magazynek do Walther PPQ .40 S&W." #: lang/json/magazine_from_json.py msgid "PPQ .40 S&W 12-round magazine" msgid_plural "PPQ .40 S&W 12-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "12-nabojowy magazynek PPQ .40 S&W" +msgstr[1] "12-nabojowe magazynki PPQ .40 S&W" +msgstr[2] "12-nabojowych magazynków PPQ .40 S&W" +msgstr[3] "12-nabojowego magazynku PPQ .40 S&W" #: lang/json/magazine_from_json.py msgid "A 12-round steel box magazine for the Walther PPQ .40 S&W." -msgstr "12-nabojowy stalowy magazynek pudełkowy do Walther PPQ .40 S&W." +msgstr "12-nabojowy stalowy magazynek do Walther PPQ .40 S&W." #: lang/json/magazine_from_json.py msgid "PPQ .40 S&W 14-round magazine" msgid_plural "PPQ .40 S&W 14-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "14-nabojowy magazynek PPQ .40 S&W" +msgstr[1] "14-nabojowe magazynki PPQ .40 S&W" +msgstr[2] "14-nabojowych magazynków PPQ .40 S&W" +msgstr[3] "14-nabojowego magazynku PPQ .40 S&W" #: lang/json/magazine_from_json.py msgid "A 14-round steel box magazine for the Walther PPQ .40 S&W." -msgstr "14-nabojowy stalowy magazynek pudełkowy do Walther PPQ .40 S&W." +msgstr "14-nabojowy stalowy magazynek do Walther PPQ .40 S&W." #: lang/json/magazine_from_json.py msgid "Model JCP 10-round magazine" msgid_plural "Model JCP 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek Model JCP" +msgstr[1] "10-nabojowego magazynku Model JCP" +msgstr[2] "10-nabojowych magazynków Model JCP" +msgstr[3] "10-nabojowego magazynku Model JCP" #: lang/json/magazine_from_json.py msgid "A 10-round steel box magazine for use with the Hi-Point Model JCP." -msgstr "10-nabojowy stalowy magazynek pudełkowy do Hi-Point Model JCP." +msgstr "10-nabojowy stalowy magazynek do Hi-Point Model JCP." #: lang/json/magazine_from_json.py msgid "40x53mm grenade belt" msgid_plural "40x53mm grenade belts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "pasek granatowy 40 x 53 mm" +msgstr[1] "paski granatowe 40 x 53 mm" +msgstr[2] "pasków granatowych 40 x 53 mm" +msgstr[3] "paska granatowego 40 x 53 mm" #: lang/json/magazine_from_json.py msgid "" @@ -173414,85 +178733,80 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "Saiga-410 10-round magazine" msgid_plural "Saiga-410 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek Sajga-410" +msgstr[1] "10-nabojowe magazynki Sajga-410" +msgstr[2] "10-nabojowych magazynków Sajga-410" +msgstr[3] "10-nabojowego magazynku Sajga-410" #: lang/json/magazine_from_json.py msgid "" "A removable plastic box magazine for the Saiga-410 shotgun. Holds 10 " "shells." -msgstr "" -"Pudełkowy wyjmowany plastikowy magazynek do strzelby Saiga-410 na 10 naboi." +msgstr "Wyjmowany plastikowy magazynek do strzelby Sajga-410 na 10 naboi." #: lang/json/magazine_from_json.py msgid "Saiga-410 30-round drum magazine" msgid_plural "Saiga-410 30-round drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek bębnowy Sajga-410" +msgstr[1] "30-nabojowe magazynki bębnowe Sajga-410" +msgstr[2] "30-nabojowych magazynków bębnowych Sajga-410" +msgstr[3] "30-nabojowego magazynku bębnowego Sajga-410" #: lang/json/magazine_from_json.py msgid "" "A removable plastic drum magazine for the Saiga-410 shotgun. Holds 30 " "shells." msgstr "" -"Pudełkowy wyjmowany plastikowy magazynek bębnowy do strzelby Saiga-410 na 30" -" naboi." +"Wyjmowany plastikowy magazynek bębnowy do strzelby Sajga-410 na 30 naboi." #: lang/json/magazine_from_json.py msgid ".44 6-round speedloader" msgid_plural ".44 6-round speedloaders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "6-nabojowy szybkoładowacz .44" +msgstr[1] "6-nabojowe szybkoładowacze .44" +msgstr[2] "6-nabojowych szybkoładowaczy .44" +msgstr[3] "6-nabojowego szybkoładowacza .44" #: lang/json/magazine_from_json.py msgid "" "This speedloader can hold 6 rounds of .44 and quickly reload a compatible " "revolver." msgstr "" -"Ta ładowarka może pomieścić 6 naboi .44 i szybko przeładować kompatybilny " -"rewolwer." +"Ten szybkoładowacz może pomieścić 6 naboi .44 i szybko przeładować " +"kompatybilny rewolwer." #: lang/json/magazine_from_json.py msgid "Desert Eagle 8-round magazine" msgid_plural "Desert Eagle 8-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "8-nabojowy magazynek Desert Eagle" +msgstr[1] "8-nabojowe magazynki Desert Eagle" +msgstr[2] "8-nabojowych magazynków Desert Eagle" +msgstr[3] "8-nabojowego magazynku Desert Eagle" #: lang/json/magazine_from_json.py msgid "" "A standard 8-round steel box magazine for use with the IMI Desert Eagle." -msgstr "" -"Standardowy 8-nabojowy stalowy magazynek pudełkowy do IMI Desert Eagle." +msgstr "Standardowy 8-nabojowy stalowy magazynek do IMI Desert Eagle." #: lang/json/magazine_from_json.py msgid "MAC-10 30-round magazine" msgid_plural "MAC-10 30-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek MAC-10" +msgstr[1] "30-nabojowe magazynki MAC-10" +msgstr[2] "30-nabojowych magazynków MAC-10" +msgstr[3] "30-nabojowego magazynku MAC-10" #: lang/json/magazine_from_json.py msgid "A cheap 30-round steel box magazine for use with the MAC-10 SMG." -msgstr "" -"Tani 30-nabojowy stalowy magazynek pudełkowy do pistoletu maszynowego " -"MAC-10." +msgstr "Tani 30-nabojowy stalowy magazynek do pistoletu maszynowego MAC-10." #: lang/json/magazine_from_json.py msgid "MAC-10 20-round makeshift magazine" msgid_plural "MAC-10 20-round makeshift magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "prowizoryczny 20-nabojowy magazynek MAC-10" +msgstr[1] "prowizoryczne 20-nabojowe magazynki MAC-10" +msgstr[2] "prowizorycznych 20-nabojowych magazynków MAC-10" +msgstr[3] "prowizorycznego 20-nabojowego magazynku MAC-10" #: lang/json/magazine_from_json.py msgid "" @@ -173500,48 +178814,46 @@ msgid "" "little more than a bent sheet of steel held together by duct tape and hope, " "for use with the MAC-10 SMG." msgstr "" -"Prowizoryczny 20-nabojowy prosty jednorzędowy magazynek pudełkowy składający" -" się z niewiele więcej niż zgiętej blachy stalowej, trzymającej się na " -"taśmie klejącej i nadziei, do peemu MAC-10." +"Prowizoryczny 20-nabojowy prosty jednorzędowy magazynek składający się " +"głównie ze zgiętej blachy, trzymającej się na taśmie klejącej i słowie " +"honoru, do pistoletu maszynowego MAC-10." #: lang/json/magazine_from_json.py msgid "Glock SMG 30-round magazine" msgid_plural "Glock SMG 30-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek peem Glock" +msgstr[1] "30-nabojowe magazynki peem Glock" +msgstr[2] "30-nabojowych magazynków peem Glock" +msgstr[3] "30-nabojowego magazynku peem Glock" #: lang/json/magazine_from_json.py msgid "" "A 30-round polymer and steel box magazine for use with the Glock submachine " "gun." msgstr "" -"30-nabojowy polimerowo-stalowy magazynek pudełkowy kompatybilny z " -"pistoletami maszynowymi Glock." +"30-nabojowy polimerowo-stalowy magazynek kompatybilny z pistoletami " +"maszynowymi Glock." #: lang/json/magazine_from_json.py msgid "Vector SMG 30-round magazine" msgid_plural "Vector SMG 30-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek peem Vector" +msgstr[1] "30-nabojowe magazynki peem Vector" +msgstr[2] "30-nabojowych magazynków peem Vector" +msgstr[3] "30-nabojowego magazynku peem Vector" #: lang/json/magazine_from_json.py msgid "" "A 30-round polymer and steel box magazine for use with the KRISS Vector." -msgstr "" -"30-nabojowy polimerowo-stalowy magazynek pudełkowy kompatybilny z KRISS " -"Vector." +msgstr "30-nabojowy polimerowo-stalowy magazynek kompatybilny z KRISS Vector." #: lang/json/magazine_from_json.py msgid "Thompson 30-round magazine" msgid_plural "Thompson 30-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek Thompson" +msgstr[1] "30-nabojowe magazynki Thompson" +msgstr[2] "30-nabojowych magazynków Thompson" +msgstr[3] "30-nabojowego magazynku Thompson" #: lang/json/magazine_from_json.py msgid "An extended 30-round magazine for the Thompson submachine gun." @@ -173550,10 +178862,10 @@ msgstr "Wydłużony 30-nabojowy magazynek do pistoletu maszynowego Thompson." #: lang/json/magazine_from_json.py msgid "Thompson 50-round drum magazine" msgid_plural "Thompson 50-round drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "50-nabojowy magazynek bębnowy Thompson" +msgstr[1] "50-nabojowe magazynki bębnowe Thompson" +msgstr[2] "50-nabojowych magazynków bębnowych Thompson" +msgstr[3] "50-nabojowego magazynku bębnowego Thompson" #: lang/json/magazine_from_json.py msgid "" @@ -173562,16 +178874,16 @@ msgid "" " to greater reliability." msgstr "" "Magazynek bębnowy na 50 naboi do pistoletu maszynowego Thompson. Słynny za " -"sprawą gangsterów, ale wojsko wolało standardowe 20 i 30 nabojowe magazynki " -"z uwagi na ich niezawodność." +"sprawą gangsterów, ale wojsko wolało standardowe 20- i 30-nabojowe magazynki" +" z uwagi na ich lepszą niezawodność." #: lang/json/magazine_from_json.py msgid "Thompson 20-round magazine" msgid_plural "Thompson 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek Thompson" +msgstr[1] "20-nabojowe magazynki Thompson" +msgstr[2] "20-nabojowych magazynków Thompson" +msgstr[3] "20-nabojowego magazynku Thompson" #: lang/json/magazine_from_json.py msgid "A standard 20-round magazine for the Thompson submachine gun." @@ -173580,10 +178892,10 @@ msgstr "Standardowy 20-nabojowy magazynek do pistoletu maszynowego Thompson." #: lang/json/magazine_from_json.py msgid "Thompson 20-round makeshift magazine" msgid_plural "Thompson 20-round makeshift magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "prowizoryczny 20-nabojowy magazynek Thompson" +msgstr[1] "prowizoryczne 20-nabojowe magazynki Thompson" +msgstr[2] "prowizorycznych 20-nabojowych magazynków Thompson" +msgstr[3] "prowizorycznego 20-nabojowego magazynku Thompson" #: lang/json/magazine_from_json.py msgid "" @@ -173591,31 +178903,29 @@ msgid "" "little more than a bent sheet of steel held together by duct tape and hope, " "for use with the Thompson SMG." msgstr "" -"Prowizoryczny 20-nabojowy prosty jednorzędowy magazynek pudełkowy składający" -" się z niewiele więcej niż zgiętej blachy stalowej, trzymającej się na " -"taśmie klejącej i nadziei, do peemu Thompson." +"Prowizoryczny 20-nabojowy prosty jednorzędowy magazynek składający się " +"głównie ze zgiętej blachy, trzymającej się na taśmie klejącej i słowie " +"honoru, do pistoletu maszynowego Thompson." #: lang/json/magazine_from_json.py msgid "UMP45 25-round magazine" msgid_plural "UMP45 25-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "25-nabojowy magazynek UMP45" +msgstr[1] "25-nabojowe magazynki UMP45" +msgstr[2] "25-nabojowych magazynków UMP45" +msgstr[3] "25-nabojowego magazynku UMP45" #: lang/json/magazine_from_json.py msgid "A standard 25-round box magazine for use with the H&K UMP45 SMG." -msgstr "" -"Standardowy 25-nabojowy pudełkowy magazynek do pistoletu maszynowego H&K " -"UMP45." +msgstr "Standardowy 25-nabojowy magazynek do pistoletu maszynowego H&K UMP45." #: lang/json/magazine_from_json.py msgid "UMP45 20-round makeshift magazine" msgid_plural "UMP45 20-round makeshift magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "prowizoryczny 20-nabojowy magazynek UMP45" +msgstr[1] "prowizoryczne 20-nabojowe magazynki UMP45" +msgstr[2] "prowizorycznych 20-nabojowych magazynków UMP45" +msgstr[3] "prowizorycznego 20-nabojowego magazynku UMP45" #: lang/json/magazine_from_json.py msgid "" @@ -173623,17 +178933,17 @@ msgid "" "little more than a bent sheet of steel held together by duct tape and hope, " "for use with the H&K UMP45 SMG." msgstr "" -"Prowizoryczny 20-nabojowy prosty jednorzędowy magazynek pudełkowy składający" -" się z niewiele więcej niż zgiętej blachy stalowej, trzymającej się na " -"taśmie klejącej i nadziei, do peemu H&K UMP45." +"Prowizoryczny 20-nabojowy prosty jednorzędowy magazynek składający się " +"głównie ze zgiętej blachy, trzymającej się na taśmie klejącej i słowie " +"honoru, do pistoletu maszynowego H&K UMP45." #: lang/json/magazine_from_json.py msgid "USP .45 pistol 12-round magazine" msgid_plural "USP .45 pistol 12-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "12-nabojowy magazynek USP .45" +msgstr[1] "12-nabojowe magazynki USP .45" +msgstr[2] "12-nabojowych magazynków USP .45" +msgstr[3] "12-nabojowego magazynku USP .45" #: lang/json/magazine_from_json.py msgid "A 12 round magazine for use with the USP pistol" @@ -173642,10 +178952,10 @@ msgstr "12-nabojowy magazynek do pistoletu USP." #: lang/json/magazine_from_json.py msgid "USP .45 12-round magazine" msgid_plural "USP .45 12-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "12-nabojowy magazynek USP .45" +msgstr[1] "12-nabojowe magazynki USP .45" +msgstr[2] "12-nabojowych magazynków USP .45" +msgstr[3] "12-nabojowego magazynku USP .45" #: lang/json/magazine_from_json.py msgid "A standard capacity magazine for use with the H&K USP handgun." @@ -173654,46 +178964,46 @@ msgstr "Standardowej pojemności magazynek do pistoletu H&K USP." #: lang/json/magazine_from_json.py msgid "PPQ .45 12-round magazine" msgid_plural "PPQ .45 12-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "12-nabojowy magazynek PPQ .45" +msgstr[1] "12-nabojowe magazynki PPQ .45" +msgstr[2] "12-nabojowych magazynków PPQ .45" +msgstr[3] "12-nabojowego magazynku PPQ .45" #: lang/json/magazine_from_json.py msgid "A 12 round steel box magazine for the PPQ pistol." -msgstr "12-nabojowy stalowy magazynek pudełkowy do pistoletu PPQ." +msgstr "12-nabojowy stalowy magazynek do pistoletu PPQ." #: lang/json/magazine_from_json.py msgid "PPQ .45 ACP 12-round magazine" msgid_plural "PPQ .45 ACP 12-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "12-nabojowy magazynek PPQ .45 ACP" +msgstr[1] "12-nabojowe magazynki PPQ .45 ACP" +msgstr[2] "12-nabojowych magazynków PPQ .45 ACP" +msgstr[3] "12-nabojowego magazynku PPQ .45 ACP" #: lang/json/magazine_from_json.py msgid "A 12 round steel box magazine for the Walther PPQ .45 ACP." -msgstr "12-nabojowy stalowy magazynek pudełkowy do Walther PPQ .45 ACP." +msgstr "12-nabojowy stalowy magazynek do Walther PPQ .45 ACP." #: lang/json/magazine_from_json.py msgid "Model JHP 9-round magazine" msgid_plural "Model JHP 9-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "9-nabojowy magazynek Model JHP" +msgstr[1] "9-nabojowe magazynki Model JHP" +msgstr[2] "9-nabojowych magazynków Model JHP" +msgstr[3] "9-nabojowego magazynku Model JHP" #: lang/json/magazine_from_json.py msgid "A 9-round steel box magazine for use with the Hi-Point Model JHP." -msgstr "9-nabojowy stalowy magazynek pudełkowy do Hi-Point Model JHP." +msgstr "9-nabojowy stalowy magazynek do Hi-Point Model JHP." #: lang/json/magazine_from_json.py msgid "Glock .45 13-round magazine" msgid_plural "Glock .45 13-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "13-nabojowy magazynek Glock .45" +msgstr[1] "13-nabojowe magazynki Glock .45" +msgstr[2] "13-nabojowych magazynków Glock .45" +msgstr[3] "13-nabojowego magazynku Glock .45" #: lang/json/magazine_from_json.py msgid "A 13 round magazine for use with Glock firearms chambered in .45 ACP." @@ -173702,10 +179012,10 @@ msgstr "13-nabojowy magazynek do pistoletów Glock w kalibrze .45 ACP." #: lang/json/magazine_from_json.py msgid "Glock 21 13-round magazine" msgid_plural "Glock 21 13-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "13-nabojowy magazynek Glock 21" +msgstr[1] "13-nabojowe magazynki Glock 21" +msgstr[2] "13-nabojowych magazynków Glock 21" +msgstr[3] "13-nabojowego magazynku Glock 21" #: lang/json/magazine_from_json.py msgid "A standard capacity magazine for use with the Glock 21." @@ -173714,10 +179024,10 @@ msgstr "Standardowej pojemności magazynek do Glock 21." #: lang/json/magazine_from_json.py msgid "Glock .45 26-round magazine" msgid_plural "Glock .45 26-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "26-nabojowy magazynek Glock .45" +msgstr[1] "26-nabojowe magazynki Glock .45" +msgstr[2] "26-nabojowych magazynków Glock .45" +msgstr[3] "26-nabojowego magazynku Glock .45" #: lang/json/magazine_from_json.py msgid "A 26 round magazine for use with Glock firearms chambered in .45 ACP." @@ -173726,10 +179036,10 @@ msgstr "26-nabojowy magazynek do pistoletów Glock w kalibrze .45 ACP." #: lang/json/magazine_from_json.py msgid "Glock 21 26-round magazine" msgid_plural "Glock 21 26-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "26-nabojowy magazynek Glock 21" +msgstr[1] "26-nabojowe magazynki Glock 21" +msgstr[2] "26-nabojowych magazynków Glock 21" +msgstr[3] "26-nabojowego magazynku Glock 21" #: lang/json/magazine_from_json.py msgid "A double capacity magazine for use with the Glock 21." @@ -173738,77 +179048,78 @@ msgstr "Podwojonej pojemności magazynek do Glock 21." #: lang/json/magazine_from_json.py msgid ".454 5-round speedloader" msgid_plural ".454 5-round speedloaders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "5-nabojowy szybkoładowacz .454" +msgstr[1] "5-nabojowe szybkoładowacze .454" +msgstr[2] "5-nabojowych szybkoładowaczy .454" +msgstr[3] "5-nabojowego szybkoładowacza .454" #: lang/json/magazine_from_json.py msgid "" "This speedloader can hold 5 rounds of .454, .45 Colt or .410 bore and " "quickly reload a compatible revolver." msgstr "" -"Ta ładowarka może pomieścić 5 naboi kalibru .454, .45 Colt lub .410 i szybko" -" przeładować kompatybilny rewolwer." +"Ten szybkoładowacz może pomieścić 5 naboi kalibru .454, .45 Colt lub .410 i " +"szybko przeładować kompatybilny rewolwer." #: lang/json/magazine_from_json.py msgid ".454 6-round speedloader" msgid_plural ".454 6-round speedloaders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "6-nabojowy szybkoładowacz .454" +msgstr[1] "6-nabojowe szybkoładowacze .454" +msgstr[2] "6-nabojowych szybkoładowaczy .454" +msgstr[3] "6-nabojowego szybkoładowacza .454" #: lang/json/magazine_from_json.py msgid "MP7 40-round magazine" msgid_plural "MP7 40-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "40-nabojowy magazynek MP7" +msgstr[1] "40-nabojowe magazynki MP7" +msgstr[2] "40-nabojowych magazynków MP7" +msgstr[3] "40-nabojowego magazynku MP7" #: lang/json/magazine_from_json.py msgid "" "An extended 40-round magazine for use with H&K's proprietary 4.6x30mm round." -msgstr "Wydłużony 40 nabojowy magazynek do własnej amunicji H&K 4.6x30mm." +msgstr "Wydłużony 40-nabojowy magazynek do własnej amunicji H&K 4,6 x 30 mm." #: lang/json/magazine_from_json.py msgid "MP7 20-round magazine" msgid_plural "MP7 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek MP7" +msgstr[1] "20-nabojowe magazynki MP7" +msgstr[2] "20-nabojowych magazynków MP7" +msgstr[3] "20-nabojowego magazynku MP7" #: lang/json/magazine_from_json.py msgid "" "A standard capacity 20-round magazine for use with H&K's proprietary " "4.6x30mm round." -msgstr "Standardowy 20-nabojowy magazynek do własnej amunicji H&K 4.6x30mm." +msgstr "" +"Standardowy 20-nabojowy magazynek do własnej amunicji H&K 4,6 x 30 mm." #: lang/json/magazine_from_json.py msgid "M1911 10-round magazine" msgid_plural "M1911 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek M1911" +msgstr[1] "10-nabojowe magazynki M1911" +msgstr[2] "10-nabojowych magazynków M1911" +msgstr[3] "10-nabojowego magazynku M1911" #: lang/json/magazine_from_json.py msgid "An extended 10-round magazine for use with the M1911 handgun." -msgstr "Wydłużony 10 nabojowy magazynek do pistoletu M1911." +msgstr "Wydłużony 10-nabojowy magazynek do pistoletu M1911." #: lang/json/magazine_from_json.py msgid "M1911 7-round magazine" msgid_plural "M1911 7-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "7-nabojowy magazynek M1911" +msgstr[1] "7-nabojowe magazynki M1911" +msgstr[2] "7-nabojowych magazynków M1911" +msgstr[3] "7-nabojowego magazynku M1911" #: lang/json/magazine_from_json.py msgid "A military issue 7-round magazine for use with the M1911 handgun." -msgstr "Wojskowy 7 nabojowy magazynek do pistoletu M1911." +msgstr "Wojskowy 7-nabojowy magazynek do pistoletu M1911." #: lang/json/magazine_from_json.py msgid ".50 BMG ammo belt" @@ -173821,405 +179132,403 @@ msgstr[3] "taśmy nabojowej .50 BMG" #: lang/json/magazine_from_json.py msgid "Barrett 10-round magazine" msgid_plural "Barrett 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek Barrett" +msgstr[1] "10-nabojowe magazynki Barrett" +msgstr[2] "10-nabojowych magazynków Barrett" +msgstr[3] "10-nabojowego magazynku Barrett" #: lang/json/magazine_from_json.py msgid "" "A standard 10-round box magazine for the Barrett M107A1 anti-materiel rifle." msgstr "" -"Standardowy 10-nabojowy pudełkowy magazynek do karabinu przeciw-sprzętowemu " +"Standardowy 10-nabojowy magazynek do wielkokalibrowego karabinu wyborowego " "Barrett M107A1." #: lang/json/magazine_from_json.py msgid "AS50 10-round magazine" msgid_plural "AS50 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek AS50" +msgstr[1] "10-nabojowe magazynki AS50" +msgstr[2] "10-nabojowych magazynków AS50" +msgstr[3] "10-nabojowego magazynku AS50" #: lang/json/magazine_from_json.py msgid "" "A 10-round box magazine for the Accuracy International AS50 anti-materiel " "rifle." msgstr "" -"10-nabojowy pudełkowy magazynek do karabinu przeciw-sprzętowemu Accuracy " +"10-nabojowy magazynek do wielkokalibrowego karabinu wyborowego Accuracy " "International AS50." #: lang/json/magazine_from_json.py msgid "TAC-50 5-round magazine" msgid_plural "TAC-50 5-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "5-nabojowy magazynek TAC-50" +msgstr[1] "5-nabojowe magazynki TAC-50" +msgstr[2] "5-nabojowych magazynków TAC-50" +msgstr[3] "5-nabojowego magazynku TAC-50" #: lang/json/magazine_from_json.py msgid "A 5-round box magazine for the McMillan TAC-50 anti-materiel rifle." msgstr "" -"5-nabojowy pudełkowy magazynek do karabinu przeciw-sprzętowemu McMillan " +"5-nabojowy magazynek do wielkokalibrowego karabinu wyborowego McMillan " "TAC-50." #: lang/json/magazine_from_json.py msgid ".500 5-round speedloader" msgid_plural ".500 5-round speedloaders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "5-nabojowy szybkoładowacz .500" +msgstr[1] "5-nabojowe szybkoładowacze .500" +msgstr[2] "5-nabojowych szybkoładowaczy .500" +msgstr[3] "5-nabojowego szybkoładowacza .500" #: lang/json/magazine_from_json.py msgid "" "This speedloader can hold 5 rounds of .500 and quickly reload a compatible " "revolver." msgstr "" -"Ta ładowarka może pomieścić 5 naboi .500 i szybko przeładować kompatybilny " -"rewolwer." +"Ten szybkoładowacz może pomieścić 5 naboi .500 i szybko przeładować " +"kompatybilny rewolwer." #: lang/json/magazine_from_json.py msgid "AK-74M 30-round magazine" msgid_plural "AK-74M 30-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek AK-74M" +msgstr[1] "30-nabojowe magazynki AK-74M" +msgstr[2] "30-nabojowych magazynków AK-74M" +msgstr[3] "30-nabojowego magazynku AK-74M" #: lang/json/magazine_from_json.py msgid "" "A standard magazine made for the AK-74M rifle, made of steel-reinforced " "polymer. Holds 30 rounds." msgstr "" -"Standardowy magazynek do karabinu AK-74M, ze wzmacnianego stalą polimeru. " +"Standardowy magazynek do karabinka AK-74M, ze wzmacnianego stalą polimeru. " "Przenosi 30 naboi." #: lang/json/magazine_from_json.py msgid "AK-74M 45-round magazine" msgid_plural "AK-74M 45-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "45-nabojowy magazynek AK-74M" +msgstr[1] "45-nabojowe magazynki AK-74M" +msgstr[2] "45-nabojowych magazynków AK-74M" +msgstr[3] "45-nabojowego magazynku AK-74M" #: lang/json/magazine_from_json.py msgid "" "A 45-round magazine compatible with the AK-74M rifle, though originally " "designed for the RPK-74 light machine gun." msgstr "" -"45-nabojowy magazynek kompatybilny z karabinem AK-74M, choć pierwotnie " +"45-nabojowy magazynek kompatybilny z karabinkiem AK-74M, choć pierwotnie " "przeznaczony do erkaemu RPK-74." #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" +msgstr[0] "20-nabojowy magazynek Five-seveN" +msgstr[1] "20-nabojowe magazynki Five-seveN" +msgstr[2] "20-nabojowych magazynków Five-seveN" +msgstr[3] "20-nabojowego magazynku Five-seveN" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." -msgstr "Standardowej pojemności magazynek do FN Pięć-Siedem." +msgid "A standard capacity magazine for use with the FN Five-seveN." +msgstr "Standardowej pojemności magazynek do FN Five-seveN." #: lang/json/magazine_from_json.py msgid "P90 50-round magazine" msgid_plural "P90 50-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "50-nabojowy magazynek P90" +msgstr[1] "50-nabojowe magazynki P90" +msgstr[2] "50-nabojowych magazynków P90" +msgstr[3] "50-nabojowego magazynku P90" #: lang/json/magazine_from_json.py msgid "" "A factory issue translucent polymer box magazine that fits with the frame of" " the FN P90." msgstr "" -"Fabryczny przezroczysty pudełkowy magazynek polimerowy który wpasowuje się w" -" FN P90." +"Fabryczny przezroczysty magazynek polimerowy, który wpasowuje się w FN P90." #: lang/json/magazine_from_json.py msgid "5x50mm 100-round magazine" msgid_plural "5x50mm 100-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "100-nabojowy magazynek 5 x 50 mm" +msgstr[1] "100-nabojowe magazynki 5 x 50 mm" +msgstr[2] "100-nabojowych magazynków 5 x 50 mm" +msgstr[3] "100-nabojowego magazynku 5 x 50 mm" #: lang/json/magazine_from_json.py msgid "" "A 100-round box magazine for use with 5x50mm flechette firearms. Designated" " as RMFB100." msgstr "" -"100 nabojowy pudełkowy magazynek do broni strzałkowej 5x50mm. Opracowany " -"jako RMFB100." +"100-nabojowy magazynek do broni strzałkowej 5 x 50 mm. Opracowany jako " +"RMFB100." #: lang/json/magazine_from_json.py msgid "5x50mm 50-round magazine" msgid_plural "5x50mm 50-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "50-nabojowy magazynek 5 x 50 mm" +msgstr[1] "50-nabojowe magazynki 5 x 50 mm" +msgstr[2] "50-nabojowych magazynków 5 x 50 mm" +msgstr[3] "50-nabojowego magazynku 5 x 50 mm" #: lang/json/magazine_from_json.py msgid "" "A 50-round box magazine for use with 5x50mm flechette firearms. Designated " "as RMFB50." msgstr "" -"50 nabojowy pudełkowy magazynek do broni strzałkowej 5x50mm. Opracowany jako" -" RMFB50." +"50-nabojowy magazynek do broni strzałkowej 5 x 50 mm. Opracowany jako " +"RMFB50." #: lang/json/magazine_from_json.py msgid "M74 4-rocket clip" msgid_plural "M74 4-rocket clips" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "4-rakietowy zasobnik M74" +msgstr[1] "4-rakietowe zasobniki M74" +msgstr[2] "4-rakietowych zasobników M74" +msgstr[3] "4-rakietowego zasobnika M74" #: lang/json/magazine_from_json.py msgid "" "This is a clip for the M202A1 FLASH that can hold 4 M74 incendiary rockets." -msgstr "To zasobnik do M202A1 FLASH który mieści 4 rakiety zapalające M74." +msgstr "To zasobnik do M202A1 FLASH, który mieści 4 rakiety zapalające M74." #: lang/json/magazine_from_json.py msgid "7.62x39mm 10-round clip" msgid_plural "7.62x39mm 10-round clips" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowa łódka nabojowa 7,62 x 39 mm" +msgstr[1] "10-nabojowe łódki nabojowe 7,62 x 39 mm" +msgstr[2] "10-nabojowych łódek nabojowych 7,62 x 39 mm" +msgstr[3] "10-nabojowej łódki nabojowej 7,62 x 39 mm" #: lang/json/magazine_from_json.py msgid "AK 10-round magazine" msgid_plural "AK 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek AK" +msgstr[1] "10-nabojowe magazynki AK" +msgstr[2] "10-nabojowych magazynków AK" +msgstr[3] "10-nabojowego magazynku AK" #: lang/json/magazine_from_json.py msgid "" "A compact 10-round magazine for 7.62x39 AK-pattern rifles, made of stamped " "sheet metal. Made for restricted civilian use." msgstr "" -"Kompaktowy 10-nabojowy magazynek do karabinów w stylu AK o kalibrze 7.62x39 " -"mm zrobiony z tłoczonej blachy stalowej. Do ograniczonego użytku cywilnego." +"Kompaktowy 10-nabojowy magazynek do karabinków w stylu AK o kalibrze 7,62 x " +"39 mm zrobiony z tłoczonej blachy. Do ograniczonego użytku cywilnego." #: lang/json/magazine_from_json.py msgid "AK 20-round magazine" msgid_plural "AK 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek AK" +msgstr[1] "20-nabojowe magazynki AK" +msgstr[2] "20-nabojowych magazynków AK" +msgstr[3] "20-nabojowego magazynku AK" #: lang/json/magazine_from_json.py msgid "" "A compact 20-round magazine for 7.62x39 AK-pattern rifles, made of stamped " "sheet metal. Originally designed for tank crews." msgstr "" -"Kompaktowy 20-nabojowy magazynek do karabinów w stylu AK o kalibrze 7.62x39 " -"mm zrobiony z tłoczonej blachy stalowej. Pierwotnie opracowany dla załóg " -"czołgów." +"Kompaktowy 20-nabojowy magazynek do karabinków w stylu AK o kalibrze 7,62 x " +"39 mm zrobiony z tłoczonej blachy. Pierwotnie opracowany dla załóg czołgów." #: lang/json/magazine_from_json.py msgid "AK 30-round magazine" msgid_plural "AK 30-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek AK" +msgstr[1] "30-nabojowe magazynki AK" +msgstr[2] "30-nabojowych magazynków AK" +msgstr[3] "30-nabojowego magazynku AK" #: lang/json/magazine_from_json.py msgid "" "A standard 30-round magazine for 7.62x39 AK-pattern rifles, made of stamped " "sheet metal." msgstr "" -"Standardowy 30-nabojowy magazynek do karabinów w stylu AK o kalibrze 7.62x39" -" mm zrobiony z tłoczonej blachy stalowej." +"Standardowy 30-nabojowy magazynek do karabinków w stylu AK o kalibrze 7,62 x" +" 39 mm zrobiony z tłoczonej blachy." #: lang/json/magazine_from_json.py msgid "AK 40-round magazine" msgid_plural "AK 40-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "40-nabojowy magazynek AK" +msgstr[1] "40-nabojowe magazynki AK" +msgstr[2] "40-nabojowych magazynków AK" +msgstr[3] "40-nabojowego magazynku AK" #: lang/json/magazine_from_json.py msgid "" "An extended 40-round magazine for 7.62x39 AK-pattern rifles, made of stamped" " sheet metal." msgstr "" -"Wydłużony 40-nabojowy magazynek do karabinów w stylu AK o kalibrze 7.62x39 " -"mm zrobiony z tłoczonej blachy stalowej." +"Wydłużony 40-nabojowy magazynek do karabinków w stylu AK o kalibrze 7,62 x " +"39 mm zrobiony z tłoczonej blachy." #: lang/json/magazine_from_json.py msgid "AK 75-round drum magazine" msgid_plural "AK 75-round drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "75-nabojowy magazynek bębnowy AK" +msgstr[1] "75-nabojowe magazynki bębnowe AK" +msgstr[2] "75-nabojowych magazynków bębnowych AK" +msgstr[3] "75-nabojowego magazynku bębnowego AK" #: lang/json/magazine_from_json.py msgid "" "A bulky 75-round drum magazine for 7.62x39 AK-pattern rifles, made of " "stamped sheet metal." msgstr "" -"Masywny 75-nabojowy magazynek do karabinów w stylu AK o kalibrze 7.62x39 mm " -"zrobiony z tłoczonej blachy stalowej." +"Masywny 75-nabojowy magazynek bębnowy do karabinków w stylu AK o kalibrze " +"7,62 x 39 mm zrobiony z tłoczonej blachy." #: lang/json/magazine_from_json.py msgid "7.62x54mmR 5-round clip" msgid_plural "7.62x54mmR 5-round clips" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "5-nabojowea łódka nabojowa 7,62 x 54 mm R" +msgstr[1] "5-nabojowe łódki nabojowe 7,62 x 54 mm R" +msgstr[2] "5-nabojowych łódek nabojowych 7,62 x 54 mm R" +msgstr[3] "5-nabojowej łódki nabojowej 7,62 x 54 mm R" #: lang/json/magazine_from_json.py msgid "PPSh 71-round drum magazine" msgid_plural "PPSh 71-round drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "71-nabojowy magazynek bębnowy PPSz" +msgstr[1] "71-nabojowe magazynki bębnowe PPSz" +msgstr[2] "71-nabojowych magazynków bębnowych PPSz" +msgstr[3] "71-nabojowego magazynku bębnowego PPSz" #: lang/json/magazine_from_json.py msgid "A high-capacity drum magazine for the PPSh-41." -msgstr "Wysokiej pojemności magazynek bębnowy na 71 naboi do PPSh-41." +msgstr "Wysokiej pojemności magazynek bębnowy na 71 naboi do PPSz-41." #: lang/json/magazine_from_json.py msgid "PPSh 35-round magazine" msgid_plural "PPSh 35-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "35-nabojowy magazynek PPSz" +msgstr[1] "35-nabojowe magazynki PPSz" +msgstr[2] "35-nabojowych magazynków PPSz" +msgstr[3] "35-nabojowego magazynku PPSz" #: lang/json/magazine_from_json.py msgid "A 35-round box magazine for the PPSh-41." -msgstr "35-nabojowy pudełkowy magazynek do PPSh-41." +msgstr "35-nabojowy magazynek do PPSz-41." #: lang/json/magazine_from_json.py msgid "TT-33 8-round magazine" msgid_plural "TT-33 8-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "8-nabojowy magazynek TT-33" +msgstr[1] "8-nabojowe magazynki TT-33" +msgstr[2] "8-nabojowych magazynków TT-33" +msgstr[3] "8-nabojowego magazynku TT-33" #: lang/json/magazine_from_json.py msgid "A standard 8-round magazine for the Tokarev TT-33." -msgstr "Standardowy magazynek na 8 naboi do tetetki Tokarev TT-33." +msgstr "Standardowy magazynek na 8 naboi do tetetki TT-33." #: lang/json/magazine_from_json.py msgid "8x40mm 100-round magazine" msgid_plural "8x40mm 100-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "100-nabojowy magazynek 8 x 40 mm" +msgstr[1] "100-nabojowe magazynki 8 x 40 mm" +msgstr[2] "100-nabojowych magazynków 8 x 40 mm" +msgstr[3] "100-nabojowego magazynku 8 x 40 mm" #: lang/json/magazine_from_json.py msgid "" "A 100-round box magazine for use with Rivtech 8x40mm caseless firearms. " "Designated as RMGB100." msgstr "" -"100 nabojowy pudełkowy magazynek do bezłuskowej broni Rivtech kalibru " -"8x40mm. Opracowany jako RMGB100." +"100-nabojowy magazynek do bezłuskowej broni Rivtech kalibru 8 x 40 mm. " +"Opracowany jako RMGB100." #: lang/json/magazine_from_json.py msgid "8x40mm 10-round magazine" msgid_plural "8x40mm 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek 8 x 40 mm" +msgstr[1] "10-nabojowe magazynki 8 x 40 mm" +msgstr[2] "10-nabojowych magazynków 8 x 40 mm" +msgstr[3] "10-nabojowego magazynku 8 x 40 mm" #: lang/json/magazine_from_json.py msgid "" "A 10-round stick magazine for use with Rivtech 8x40mm caseless firearms. " "Designated as RMGP10." msgstr "" -"10 nabojowy pudełkowy magazynek do bezłuskowej broni Rivtech kalibru 8x40mm." -" Opracowany jako RMGP10." +"10-nabojowy magazynek do bezłuskowej broni Rivtech kalibru 8 x 40 mm. " +"Opracowany jako RMGP10." #: lang/json/magazine_from_json.py msgid "8x40mm 250-round drum magazine" msgid_plural "8x40mm 250-round drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "250-nabojowy magazynek bębnowy 8 x 40 mm" +msgstr[1] "250-nabojowe magazynki bębnowe 8 x 40 mm" +msgstr[2] "250-nabojowych magazynków bębnowych 8 x 40 mm" +msgstr[3] "250-nabojowego magazynku bębnowego 8 x 40 mm" #: lang/json/magazine_from_json.py msgid "" "A 250-round drum magazine for use with Rivtech 8x40mm caseless firearms. " "Designated as RMGD250." msgstr "" -"250 nabojowy magazynek bębnowy do bezłuskowej broni Rivtech kalibru 8x40mm. " -"Opracowany jako RMGD250." +"250-nabojowy magazynek bębnowy do bezłuskowej broni Rivtech kalibru 8 x 40 " +"mm. Opracowany jako RMGD250." #: lang/json/magazine_from_json.py msgid "8x40mm 25-round magazine" msgid_plural "8x40mm 25-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "25-nabojowy magazynek 8 x 40 mm" +msgstr[1] "25-nabojowe magazynki 8 x 40 mm" +msgstr[2] "25-nabojowych magazynków 8 x 40 mm" +msgstr[3] "25-nabojowego magazynku 8 x 40 mm" #: lang/json/magazine_from_json.py msgid "" "A 25-round stick magazine for use with Rivtech 8x40mm caseless firearms. " "Designated as RMGP25." msgstr "" -"25 nabojowy pudełkowy magazynek do bezłuskowej broni Rivtech kalibru 8x40mm." -" Opracowany jako RMGP25." +"25-nabojowy magazynek do bezłuskowej broni Rivtech kalibru 8 x 40 mm. " +"Opracowany jako RMGP25." #: lang/json/magazine_from_json.py msgid "8x40mm 500-round drum magazine" msgid_plural "8x40mm 500-round drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "500-nabojowy magazynek bębnowy 8 x 40 mm" +msgstr[1] "500-nabojowe magazynki bębnowe 8 x 40 mm" +msgstr[2] "500-nabojowych magazynków bębnowych 8 x 40 mm" +msgstr[3] "500-nabojowego magazynku bębnowego 8 x 40 mm" #: lang/json/magazine_from_json.py msgid "" "A 500-round drum magazine for use with Rivtech 8x40mm caseless firearms. " "Designated as RMGD500." msgstr "" -"500 nabojowy magazynek bębnowy do bezłuskowej broni Rivtech kalibru 8x40mm. " -"Opracowany jako RMGD500." +"500-nabojowy magazynek bębnowy do bezłuskowej broni Rivtech kalibru 8 x 40 " +"mm. Opracowany jako RMGD500." #: lang/json/magazine_from_json.py msgid "8x40mm 50-round magazine" msgid_plural "8x40mm 50-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "50-nabojowy magazynek 8 x 40 mm" +msgstr[1] "50-nabojowe magazynki 8 x 40 mm" +msgstr[2] "50-nabojowych magazynków 8 x 40 mm" +msgstr[3] "50-nabojowego magazynku 8 x 40 mm" #: lang/json/magazine_from_json.py msgid "" "A 50-round box magazine for use with Rivtech 8x40mm caseless firearms. " "Designated as RMGB50." msgstr "" -"50 nabojowy pudełkowy magazynek do bezłuskowej broni Rivtech kalibru 8x40mm." -" Opracowany jako RMGB50." +"50-nabojowy magazynek do bezłuskowej broni Rivtech kalibru 8 x 40 mm. " +"Opracowany jako RMGB50." #: lang/json/magazine_from_json.py msgid "Calico 50-round helical magazine" msgid_plural "Calico 50-round helical magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "50-nabojowy magazynek ślimakowy Calico" +msgstr[1] "50-nabojowe magazynki ślimakowe Calico" +msgstr[2] "50-nabojowych magazynków ślimakowych Calico" +msgstr[3] "50-nabojowego magazynku ślimakowego Calico" #: lang/json/magazine_from_json.py msgid "" @@ -174232,10 +179541,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "Calico 100-round helical magazine" msgid_plural "Calico 100-round helical magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "100-nabojowy magazynek ślimakowy Calico" +msgstr[1] "100-nabojowe magazynki ślimakowe Calico" +msgstr[2] "100-nabojowych magazynków ślimakowych Calico" +msgstr[3] "100-nabojowego magazynku ślimakowego Calico" #: lang/json/magazine_from_json.py msgid "" @@ -174248,180 +179557,180 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "Glock 9x19mm 30-round magazine" msgid_plural "Glock 9x19mm 30-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek Glock 9 x 19 mm" +msgstr[1] "30-nabojowe magazynki Glock 9 x 19 mm" +msgstr[2] "30-nabojowych magazynków Glock 9 x 19 mm" +msgstr[3] "30-nabojowego magazynku Glock 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "" "An extended 30-round polymer magazine for use with Glock compatible " "firearms." -msgstr "Wydłużony 30-nabojowy magazynek do pistoletów kompatybilnych z Glock." +msgstr "" +"Wydłużony 30-nabojowy polimerowy magazynek do pistoletów kompatybilnych z " +"Glock." #: lang/json/magazine_from_json.py msgid "Glock 9x19mm 15-round magazine" msgid_plural "Glock 9x19mm 15-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "15-nabojowy magazynek Glock 9 x 19 mm" +msgstr[1] "15-nabojowe magazynki Glock 9 x 19 mm" +msgstr[2] "15-nabojowych magazynków Glock 9 x 19 mm" +msgstr[3] "15-nabojowego magazynku Glock 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "" "A compact light-weight polymer magazine for use with Glock compatible " "firearms." msgstr "" -"Kompaktowy lekki polimerowy magazynek do pistoletów kompatybilnych Glock." +"Kompaktowy lekki polimerowy magazynek do pistoletów kompatybilnych z Glock." #: lang/json/magazine_from_json.py msgid "Glock 9x19mm 17-round magazine" msgid_plural "Glock 9x19mm 17-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "17-nabojowy magazynek Glock 9 x 19 mm" +msgstr[1] "17-nabojowe magazynki Glock 9 x 19 mm" +msgstr[2] "17-nabojowych magazynków Glock 9 x 19 mm" +msgstr[3] "17-nabojowego magazynku Glock 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "Made for the Glock 17, this magazine holds 17 rounds." -msgstr "Zaprojektowany do Glock'a magazynek na 17 naboi." +msgstr "Zaprojektowany do Glocka magazynek na 17 naboi." #: lang/json/magazine_from_json.py msgid "Glock 9x19mm 22-round magazine" msgid_plural "Glock 9x19mm 22-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "22-nabojowy magazynek Glock 9 x 19 mm" +msgstr[1] "22-nabojowe magazynki Glock 9 x 19 mm" +msgstr[2] "22-nabojowych magazynków Glock 9 x 19 mm" +msgstr[3] "22-nabojowego magazynku Glock 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "Made for the Glock 17, this magazine holds 22 rounds." -msgstr "Zaprojektowany do Glock'a magazynek na 22 naboje." +msgstr "Zaprojektowany do Glocka magazynek na 22 naboje." #: lang/json/magazine_from_json.py msgid "Glock 9x19mm 50-round drum magazine" msgid_plural "Glock 9x19mm 50-round drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "50-nabojowy magazynek bębnowy Glock 9 x 19 mm" +msgstr[1] "50-nabojowe magazynki bębnowe Glock 9 x 19 mm" +msgstr[2] "50-nabojowych magazynków bębnowych Glock 9 x 19 mm" +msgstr[3] "50-nabojowego magazynku bębnowego Glock 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "Made to fit most Glock pistols. This drum magazine holds 50 rounds." msgstr "" -"Zaprojektowany by pasował do większości Glock'ów magazynek bębnowy na 50 " -"naboi." +"Magazynek bębnowy na 100 naboi zaprojektowany, by pasował do większości " +"Glocków." #: lang/json/magazine_from_json.py msgid "Glock 9x19mm 100-round double drum magazine" msgid_plural "Glock 9x19mm 100-round double drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "100-nabojowy magazynek siodłowy Glock 9 x 19 mm" +msgstr[1] "100-nabojowe magazynki siodłowe Glock 9 x 19 mm" +msgstr[2] "100-nabojowych magazynków siodłowych Glock 9 x 19 mm" +msgstr[3] "100-nabojowego magazynku siodłowego Glock 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "" "Made to fit most Glock pistols. This double drum magazine holds 100 rounds." msgstr "" -"Magazynek dwubębnowy na 100 naboi zaprojektowany by pasował do większości " -"Glock'ów." +"Magazynek siodłowy na 100 naboi zaprojektowany, by pasował do większości " +"Glocków." #: lang/json/magazine_from_json.py msgid "M9 35-round magazine" msgid_plural "M9 35-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "35-nabojowy magazynek M9" +msgstr[1] "35-nabojowe magazynki M9" +msgstr[2] "35-nabojowych magazynków M9" +msgstr[3] "35-nabojowego magazynku M9" #: lang/json/magazine_from_json.py msgid "" "A 35-round extended magazine compatible with both the M9 handgun and some " "modern carbines." msgstr "" -"Rozszerzony magazynek 35 nabojowy kompatybilny z pistoletem M9 i niektórymi " +"Wydłużony 35-nabojowy magazynek kompatybilny z pistoletem M9 i niektórymi " "współczesnymi karabinkami." #: lang/json/magazine_from_json.py msgid "M9 32-round magazine" msgid_plural "M9 32-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "32-nabojowy magazynek M9" +msgstr[1] "32-nabojowe magazynki M9" +msgstr[2] "32-nabojowych magazynków M9" +msgstr[3] "32-nabojowego magazynku M9" #: lang/json/magazine_from_json.py msgid "" "A 32-round extended magazine compatible with both the M9 handgun and some " "modern carbines." msgstr "" -"Rozszerzony magazynek 32 nabojowy kompatybilny z pistoletem M9 i niektórymi " +"Wydłużony 32-nabojowy magazynek kompatybilny z pistoletem M9 i niektórymi " "współczesnymi karabinkami." #: lang/json/magazine_from_json.py msgid "M9 30-round magazine" msgid_plural "M9 30-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek M9" +msgstr[1] "30-nabojowe magazynki M9" +msgstr[2] "30-nabojowych magazynków M9" +msgstr[3] "30-nabojowego magazynku M9" #: lang/json/magazine_from_json.py msgid "" "A 30-round extended magazine compatible with both the M9 handgun and some " "modern carbines." msgstr "" -"Rozszerzony magazynek 30 nabojowy kompatybilny z pistoletem M9 i niektórymi " +"Wydłużony 30-nabojowy magazynek kompatybilny z pistoletem M9 i niektórymi " "współczesnymi karabinkami." #: lang/json/magazine_from_json.py msgid "M9 20-round magazine" msgid_plural "M9 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek M9" +msgstr[1] "20-nabojow magazynki M9" +msgstr[2] "20-nabojowych magazynków M9" +msgstr[3] "20-nabojowego magazynku M9" #: lang/json/magazine_from_json.py msgid "" "An extended-capacity 20-round box magazine for use with the Beretta M9 " "handgun." -msgstr "" -"Zwiększonej pojemności 20-nabojowy magazynek pudełkowy do pistoletu Beretta " -"M9." +msgstr "Zwiększonej pojemności 20-nabojowy magazynek do pistoletu Beretta M9." #: lang/json/magazine_from_json.py msgid "M9 18-round magazine" msgid_plural "M9 18-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "18-nabojowy magazynek M9" +msgstr[1] "18-nabojowe magazynki M9" +msgstr[2] "18-nabojowych magazynków M9" +msgstr[3] "18-nabojowego magazynku M9" #: lang/json/magazine_from_json.py msgid "An 18-round box magazine for use with the Beretta M9 handgun." -msgstr "18-nabojowy magazynek pudełkowy do pistoletu Beretta M9." +msgstr "18-nabojowy magazynek do pistoletu Beretta M9." #: lang/json/magazine_from_json.py msgid "M9 17-round magazine" msgid_plural "M9 17-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "17-nabojowy magazynek M9" +msgstr[1] "17-nabojowe magazynki M9" +msgstr[2] "17-nabojowych magazynków M9" +msgstr[3] "17-nabojowego magazynku M9" #: lang/json/magazine_from_json.py msgid "A 17-round box magazine for use with the Beretta M9 handgun." -msgstr "17-nabojowy magazynek pudełkowy do pistoletu Beretta M9." +msgstr "17-nabojowy magazynek do pistoletu Beretta M9." #: lang/json/magazine_from_json.py msgid "M9 15-round magazine" msgid_plural "M9 15-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "15-nabojowy magazynek M9" +msgstr[1] "15-nabojoe magazynki M9" +msgstr[2] "15-nabojowych magazynków M9" +msgstr[3] "15-nabojowego magazynku M9" #: lang/json/magazine_from_json.py msgid "" @@ -174434,10 +179743,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "M9 10-round magazine" msgid_plural "M9 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek M9" +msgstr[1] "10-nabojowe magazynki M9" +msgstr[2] "10-nabojowych magazynków M9" +msgstr[3] "10-nabojowego magazynku M9" #: lang/json/magazine_from_json.py msgid "" @@ -174445,29 +179754,30 @@ msgid "" "the same size as a 15-round magazine. It's made to comply with laws that " "limit maximum magazine capacity for firearms in some states." msgstr "" -"10 nabojowy magazynek pudełkowy do pistoletu Beretta M9, o fizycznych " -"rozmiarach analogicznego magazynka 15-nabojowego. Wykonany by spełniać " -"wymogi prawne limitujące maksymalną pojemność w niektórych stanach." +"10-nabojowy magazynek do pistoletu Beretta M9, o fizycznych rozmiarach " +"analogicznego magazynka 15-nabojowego. Wykonany, by spełniać wymogi prawne " +"limitujące maksymalną pojemność w niektórych stanach." #: lang/json/magazine_from_json.py msgid "MP5 100-round double drum magazine" msgid_plural "MP5 100-round double drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "100-nabojowy magazynek siodłowy MP5" +msgstr[1] "100-nabojowe magazynki siodłowe MP5" +msgstr[2] "100-nabojowych magazynków siodłowych MP5" +msgstr[3] "100-nabojowego magazynku siodłowego MP5" #: lang/json/magazine_from_json.py msgid "A bulky 100-round double drum magazine for use with the H&K MP5 SMG." -msgstr "Pokaźny 100-nabojowy magazynek dwubębnowy do peemu H&K MP5." +msgstr "" +"Pokaźny 100-nabojowy magazynek siodłowy do pistoletu maszynowego H&K MP5." #: lang/json/magazine_from_json.py msgid "MP5 50-round drum magazine" msgid_plural "MP5 50-round drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "50-nabojowy magazynek bębnowy MP5" +msgstr[1] "50-nabojowe magazynki bębnowe MP5" +msgstr[2] "50-nabojowych magazynków bębnowych MP5" +msgstr[3] "50-nabojowego magazynku bębnowego MP5" #: lang/json/magazine_from_json.py msgid "" @@ -174475,15 +179785,15 @@ msgid "" "less reliable than the factory specification magazine." msgstr "" "Bębnowy magazynek do pistoletu maszynowego H&K MP5. Znacznie większa " -"pojemność ale mniej niezawodny od fabrycznego." +"pojemność, ale mniejsza niezawodność od fabrycznego." #: lang/json/magazine_from_json.py msgid "MP5 40-round magazine" msgid_plural "MP5 40-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "40-nabojowy magazynek MP5" +msgstr[1] "40-nabojowe magazynki MP5" +msgstr[2] "40-nabojowych magazynków MP5" +msgstr[3] "40-nabojowego magazynku MP5" #: lang/json/magazine_from_json.py msgid "An extended-capacity 40-round magazine for use with the H&K MP5 SMG." @@ -174494,10 +179804,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "MP5 38-round magazine" msgid_plural "MP5 38-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "38-nabojowy magazynek MP5" +msgstr[1] "38-nabojowe magazynki MP5" +msgstr[2] "38-nabojowych magazynków MP5" +msgstr[3] "38-nabojowego magazynku MP5" #: lang/json/magazine_from_json.py msgid "An extended-capacity 38-round magazine for use with the H&K MP5 SMG." @@ -174508,10 +179818,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "MP5 30-round magazine" msgid_plural "MP5 30-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek MP5" +msgstr[1] "30-nabojowe magazynki MP5" +msgstr[2] "30-nabojowych magazynków MP5" +msgstr[3] "30-nabojowego magazynku MP5" #: lang/json/magazine_from_json.py msgid "A standard capacity curved magazine for use with the H&K MP5 SMG." @@ -174522,10 +179832,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "MP5 20-round magazine" msgid_plural "MP5 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek MP5" +msgstr[1] "20-nabojowe magazynki MP5" +msgstr[2] "20-nabojowych magazynków MP5" +msgstr[3] "20-nabojowego magazynku MP5" #: lang/json/magazine_from_json.py msgid "A compact 20-round magazine for use with the H&K MP5 SMG." @@ -174534,10 +179844,10 @@ msgstr "Kompaktowy 20-nabojowy magazynek do pistoletu maszynowego H&K MP5." #: lang/json/magazine_from_json.py msgid "MP5 15-round magazine" msgid_plural "MP5 15-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "15-nabojowy magazynek MP5" +msgstr[1] "15-nabojowe magazynki MP5" +msgstr[2] "15-nabojowych magazynków MP5" +msgstr[3] "15-nabojowego magazynku MP5" #: lang/json/magazine_from_json.py msgid "A compact 15-round magazine for use with the H&K MP5 SMG." @@ -174546,10 +179856,10 @@ msgstr "Kompaktowy 15-nabojowy magazynek do pistoletu maszynowego H&K MP5." #: lang/json/magazine_from_json.py msgid "MP5 10-round magazine" msgid_plural "MP5 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek MP5" +msgstr[1] "10-nabojowe magazynki MP5" +msgstr[2] "10-nabojowych magazynków MP5" +msgstr[3] "10-nabojowego magazynku MP5" #: lang/json/magazine_from_json.py msgid "A compact 10-round magazine for use with the H&K MP5 SMG." @@ -174558,26 +179868,26 @@ msgstr "Kompaktowy 10-nabojowy magazynek do pistoletu maszynowego H&K MP5." #: lang/json/magazine_from_json.py msgid "Luger 8-round magazine" msgid_plural "Luger 8-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "8-nabojowy magazynek Parabellum" +msgstr[1] "8-nabojowe magazynki Parabellum" +msgstr[2] "8-nabojowych magazynków Parabellum" +msgstr[3] "8-nabojowego magazynku Parabellum" #: lang/json/magazine_from_json.py msgid "" "A standard-capacity angled-feed 8-round steel box magazine for use with the " "Luger pistol." msgstr "" -"Standardowy 8-nabojowy stalowy pudełkowy magazynek do pistoletu Luger o " +"Standardowy 8-nabojowy stalowy magazynek do pistoletu Parabellum o " "nachylonym pod kątem kierunku podawania naboi." #: lang/json/magazine_from_json.py msgid "Luger 32-round snail-drum magazine" msgid_plural "Luger 32-round snail-drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "32-nabojowy magazynek ślimakowy Parabellum" +msgstr[1] "32-nabojowe magazynki ślimakowe Parabellum" +msgstr[2] "32-nabojowych magazynków ślimakowych Parabellum" +msgstr[3] "32-nabojowego magazynku ślimakowego Parabellum" #: lang/json/magazine_from_json.py msgid "" @@ -174585,76 +179895,76 @@ msgid "" "for use with the Luger pistol." msgstr "" "Zawodny i masywny 32-nabojowy ślimakowy magazynek, pierwotnie opracowany do " -"pistoletu Luger." +"pistoletu Parabellum." #: lang/json/magazine_from_json.py msgid "9x19mm 10-round clip" msgid_plural "9x19mm 10-round clips" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowa łódka nabojowa 9 x 19 mm" +msgstr[1] "10-nabojowe łódki nabojowe 9 x 19 mm" +msgstr[2] "10-nabojowych łódek nabojowych 9 x 19 mm" +msgstr[3] "10-nabojowej łódki nabojowej 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "" "A tiny piece of grooved metal designed to allow a shooter to quickly load a " "compatible weapon." msgstr "" -"Mały kawałek rowkowanego metalu opracowanego by umożliwić strzelcowi szybkie" -" przeładowanie kompatybilnej broni palnej." +"Mały kawałek rowkowanego metalu opracowanego, by umożliwić strzelcowi " +"szybkie załadowanie kompatybilnej broni palnej." #: lang/json/magazine_from_json.py msgid "Mauser 10-round magazine" msgid_plural "Mauser 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek Mauser" +msgstr[1] "10-nabojowe magazynki Mauser" +msgstr[2] "10-nabojowych magazynków Mauser" +msgstr[3] "10-nabojowego magazynku Mauser" #: lang/json/magazine_from_json.py msgid "" "A 10-round box magazine for Mauser pistols, specifically variants made to " "use a detachable magazine." msgstr "" -"10 nabojowy magazynek pudełkowy do pistoletów Mauser, a dokładnie do modeli " +"10-nabojowy magazynek do pistoletów Mauser, a dokładnie do modeli " "opracowanych do stosowania wymiennego magazynka." #: lang/json/magazine_from_json.py msgid "Mauser 20-round magazine" msgid_plural "Mauser 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek Mauser" +msgstr[1] "20-nabojowe magazynki Mauser" +msgstr[2] "20-nabojowych magazynków Mauser" +msgstr[3] "20-nabojowego magazynku Mauser" #: lang/json/magazine_from_json.py msgid "" "A 20-round box magazine for Mauser pistols, specifically variants made to " "use a detachable magazine." msgstr "" -"20 nabojowy magazynek pudełkowy do pistoletów Mauser, a dokładnie do modeli " +"20-nabojowy magazynek do pistoletów Mauser, a dokładnie do modeli " "opracowanych do stosowania wymiennego magazynka." #: lang/json/magazine_from_json.py msgid "MP 40 32-round magazine" msgid_plural "MP 40 32-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "32-nabojowy magazynek MP 40" +msgstr[1] "32-nabojowe magazynki MP 40" +msgstr[2] "32-nabojowych magazynków MP 40" +msgstr[3] "32-nabojowego magazynku MP 40" #: lang/json/magazine_from_json.py msgid "" "A double-column, single-feed 32-round box magazine used by the MP 40 SMG." -msgstr "Dwurzędowy pudełkowy magazynek 32-nabojowy do peemu MP 40." +msgstr "Dwurzędowy 32-nabojowy magazynek do pistoletu maszynowego MP 40." #: lang/json/magazine_from_json.py msgid "Px4 9x19mm 10-round magazine" msgid_plural "Px4 9x19mm 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek Px4 9 x 19 mm" +msgstr[1] "10-nabojowe magazynki Px4 9 x 19 mm" +msgstr[2] "10-nabojowych magazynków Px4 9 x 19 mm" +msgstr[3] "10-nabojowego magazynku Px4 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "" @@ -174663,77 +179973,75 @@ msgid "" "to comply with laws that limit maximum magazine capacity for firearms in " "some states." msgstr "" -"10 nabojowy magazynek pudełkowy do pistoletu Beretta Px4 w kalibrze 9x19 mm," -" o fizycznych rozmiarach analogicznego magazynka 15- i 17-nabojowego. " -"Wykonany by spełniać wymogi prawne limitujące maksymalną pojemność w " -"niektórych stanach." +"10-nabojowy magazynek do pistoletu Beretta Px4 w kalibrze 9 x 19 mm, o " +"fizycznych rozmiarach analogicznego magazynka 15- i 17-nabojowego. Wykonany," +" by spełniać wymogi prawne limitujące maksymalną pojemność w niektórych " +"stanach." #: lang/json/magazine_from_json.py msgid "Px4 9x19mm 15-round magazine" msgid_plural "Px4 9x19mm 15-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "15-nabojowy magazynek Px4 9 x 19 mm" +msgstr[1] "15-nabojowe magazynki Px4 9 x 19 mm" +msgstr[2] "15-nabojowych magazynków Px4 9 x 19 mm" +msgstr[3] "15-nabojowego magazynku Px4 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "" "A 15-round box magazine for use with the Beretta Px4 handgun, in 9x19mm." -msgstr "" -"15-nabojowy magazynek pudełkowy do pistoletu Beretta Px4 w kalibrze 9x19 mm." +msgstr "15-nabojowy magazynek do pistoletu Beretta Px4 w kalibrze 9 x 19 mm." #: lang/json/magazine_from_json.py msgid "Px4 9x19mm 17-round magazine" msgid_plural "Px4 9x19mm 17-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "17-nabojowy magazynek Px4 9 x 19 mm" +msgstr[1] "17-nabojowe magazynki Px4 9 x 19 mm" +msgstr[2] "17-nabojowych magazynków Px4 9 x 19 mm" +msgstr[3] "17-nabojowego magazynku Px4 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "A standard magazine for the Beretta Px4, in 9x19mm." -msgstr "" -"Standardowy magazynek pudełkowy do pistoletu Beretta Px4 w kalibrze 9x19 mm." +msgstr "Standardowy magazynek do pistoletu Beretta Px4 w kalibrze 9 x 19 mm." #: lang/json/magazine_from_json.py msgid "Px4 9x19mm 20-round magazine" msgid_plural "Px4 9x19mm 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek Px4 9 x 19 mm" +msgstr[1] "20-nabojowe magazynki Px4 9 x 19 mm" +msgstr[2] "20-nabojowych magazynków Px4 9 x 19 mm" +msgstr[3] "20-nabojowego magazynku Px4 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "" "An extended-capacity 20-round box magazine for use with the Beretta Px4 " "handgun, in 9x19mm." msgstr "" -"Zwiększonej pojemności 20-nabojowy magazynek pudełkowy do pistoletu Beretta " -"Px4 w kalibrze 9x19 mm." +"Zwiększonej pojemności 20-nabojowy magazynek do pistoletu Beretta Px4 w " +"kalibrze 9 x 19 mm." #: lang/json/magazine_from_json.py msgid "STEN 32-round magazine" msgid_plural "STEN 32-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "32-nabojowy magazynek Sten" +msgstr[1] "32-nabojowe magazynki Sten" +msgstr[2] "32-nabojowych magazynków Sten" +msgstr[3] "32-nabojowego magazynku Sten" #: lang/json/magazine_from_json.py msgid "" "A double-column, single-feed 9x19mm magazine used by the STEN submachine " "gun, based off the magazines for the German MP-28 and later MP-40." msgstr "" -"Dwurzędowy magazynek pojedynczego zasilania 9x19mm używany pistolecie " -"maszynowym STEN, opracowany na bazie niemieckich MP-28 i późniejszego MP-40." +"Dwurzędowy magazynek 9 x 19 mm używany w pistolecie maszynowym Sten, " +"opracowany na bazie niemieckich MP 28 i późniejszego MP 40." #: lang/json/magazine_from_json.py msgid "STEN 20-round makeshift magazine" msgid_plural "STEN 20-round makeshift magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "prowizoryczny 20-nabojowy magazynek Sten" +msgstr[1] "prowizoryczne 20-nabojowe magazynki Sten" +msgstr[2] "prowizorycznych 20-nabojowych magazynków Sten" +msgstr[3] "prowizorycznego 20-nabojowego magazynku Sten" #: lang/json/magazine_from_json.py msgid "" @@ -174746,10 +180054,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "TEC-9 10-round magazine" msgid_plural "TEC-9 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek TEC-9" +msgstr[1] "10-nabojowe magazynki TEC-9" +msgstr[2] "10-nabojowych magazynków TEC-9" +msgstr[3] "10-nabojowego magazynku TEC-9" #: lang/json/magazine_from_json.py msgid "A compact 10-round magazine for use with the TEC-9 SMG." @@ -174758,10 +180066,10 @@ msgstr "Kompaktowy 10-nabojowy magazynek do pistoletu maszynowego TEC-9." #: lang/json/magazine_from_json.py msgid "TEC-9 20-round magazine" msgid_plural "TEC-9 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek TEC-9" +msgstr[1] "20-nabojowe magazynki TEC-9" +msgstr[2] "20-nabojowych magazynków TEC-9" +msgstr[3] "20-nabojowego magazynku TEC-9" #: lang/json/magazine_from_json.py msgid "A compact 20-round magazine for use with the TEC-9 SMG." @@ -174770,70 +180078,68 @@ msgstr "Kompaktowy 20-nabojowy magazynek do pistoletu maszynowego TEC-9." #: lang/json/magazine_from_json.py msgid "TEC-9 30-round magazine" msgid_plural "TEC-9 30-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek TEC-9" +msgstr[1] "30-nabojowe magazynki TEC-9" +msgstr[2] "30-nabojowych magazynków TEC-9" +msgstr[3] "30-nabojowego magazynku TEC-9" #: lang/json/magazine_from_json.py msgid "" "A 30-round steel box magazine for use with the TEC-9 SMG, made as a more " "reliable alternative to 32-round magazines." msgstr "" -"30-nabojowy stalowy magazynek pudełkowy do pistoletu maszynowego TEC-9, " -"opracowany jako bardziej niezawodna alternatywa 32-nabojowych magazynków." +"30-nabojowy stalowy magazynek do pistoletu maszynowego TEC-9, opracowany " +"jako bardziej niezawodna alternatywa 32-nabojowych magazynków." #: lang/json/magazine_from_json.py msgid "TEC-9 32-round magazine" msgid_plural "TEC-9 32-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "32-nabojowy magazynek TEC-9" +msgstr[1] "32-nabojowe magazynki TEC-9" +msgstr[2] "32-nabojowych magazynków TEC-9" +msgstr[3] "32-nabojowego magazynku TEC-9" #: lang/json/magazine_from_json.py msgid "" "A cheap and somewhat unreliable 32-round steel box magazine for use with the" " TEC-9 SMG." msgstr "" -"Tani i czasami zawodny 32-nabojowy stalowy pudełkowy magazynek do pistoletu " -"maszynowego TEC-9." +"Tani i trochę zawodny 32-nabojowy stalowy magazynek do pistoletu maszynowego" +" TEC-9." #: lang/json/magazine_from_json.py msgid "TEC-9 36-round magazine" msgid_plural "TEC-9 36-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "36-nabojowy magazynek TEC-9" +msgstr[1] "36-nabojowe magazynki TEC-9" +msgstr[2] "36-nabojowych magazynków TEC-9" +msgstr[3] "36-nabojowego magazynku TEC-9" #: lang/json/magazine_from_json.py msgid "An extended 36-round steel box magazine for use with the TEC-9 SMG." msgstr "" -"Wydłużony 36-nabojowy stalowy pudełkowy magazynek do pistoletu maszynowego " -"TEC-9." +"Wydłużony 36-nabojowy stalowy magazynek do pistoletu maszynowego TEC-9." #: lang/json/magazine_from_json.py msgid "TEC-9 50-round magazine" msgid_plural "TEC-9 50-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "50-nabojowy magazynek TEC-9" +msgstr[1] "50-nabojowe magazynki TEC-9" +msgstr[2] "50-nabojowych magazynków TEC-9" +msgstr[3] "50-nabojowego magazynku TEC-9" #: lang/json/magazine_from_json.py msgid "An extended 50-round steel box magazine for use with the TEC-9 SMG." msgstr "" -"Wydłużony 50-nabojowy stalowy pudełkowy magazynek do pistoletu maszynowego " -"TEC-9." +"Wydłużony 50-nabojowy stalowy magazynek do pistoletu maszynowego TEC-9." #: lang/json/magazine_from_json.py msgid "TEC-9 72-round drum magazine" msgid_plural "TEC-9 72-round drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "72-nabojowy magazynek bębnowy TEC-9" +msgstr[1] "72-nabojowe magazynki bębnowe TEC-9" +msgstr[2] "72-nabojowych magazynków bębnowych TEC-9" +msgstr[3] "72-nabojowego magazynku bębnowego TEC-9" #: lang/json/magazine_from_json.py msgid "A bulky 72-round steel drum magazine for use with the TEC-9 SMG." @@ -174844,10 +180150,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "USP 9x19mm 10-round magazine" msgid_plural "USP 9x19mm 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek USP 9 x 19 mm" +msgstr[1] "10-nabojowe magazynki USP 9 x 19 mm" +msgstr[2] "10-nabojowych magazynków USP 9 x 19 mm" +msgstr[3] "10-nabojowego magazynku USP 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "" @@ -174855,17 +180161,17 @@ msgid "" "physically of the same size as a 15-round magazine. It's made to comply " "with laws that limit maximum magazine capacity for firearms in some states." msgstr "" -"10 nabojowy magazynek pudełkowy do pistoletu H&K USP kal. 9x19 mm, o " -"fizycznych rozmiarach analogicznego magazynka 15-nabojowego. Wykonany by " -"spełniać wymogi prawne limitujące maksymalną pojemność w niektórych stanach." +"10-nabojowy magazynek do pistoletu H&K USP kalibru 9 x 19 mm, o fizycznych " +"rozmiarach analogicznego magazynka 15-nabojowego. Wykonany, by spełniać " +"wymogi prawne limitujące maksymalną pojemność w niektórych stanach." #: lang/json/magazine_from_json.py msgid "USP 9x19mm 15-round magazine" msgid_plural "USP 9x19mm 15-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "15-nabojowy magazynek USP 9 x 19 mm" +msgstr[1] "15-nabojowe magazynki USP 9 x 19 mm" +msgstr[2] "15-nabojowych magazynków USP 9 x 19 mm" +msgstr[3] "15-nabojowego magazynku USP 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "" @@ -174873,150 +180179,141 @@ msgid "" "H&K USP 9x19mm pistol." msgstr "" "Magazynek wg specyfikacji fabrycznych na 15 naboi do niezawodnego pistoletu " -"H&K USP 9x19mm." +"H&K USP 9 x 19 mm." #: lang/json/magazine_from_json.py msgid "USP 9x19mm 18-round magazine" msgid_plural "USP 9x19mm 18-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "18-nabojowy magazynek USP 9 x 19 mm" +msgstr[1] "18-nabojowe magazynki USP 9 x 19 mm" +msgstr[2] "18-nabojowych magazynków USP 9 x 19 mm" +msgstr[3] "18-nabojowego magazynku USP 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "" "An extended 18-round box magazine for use with the H&K USP 9x19mm pistol." -msgstr "" -"Wydłużony 18 nabojowy magazynek pudełkowy do pistoletu H&K USP 9x19 mm." +msgstr "Wydłużony 18-nabojowy magazynek do pistoletu H&K USP 9 x 19 mm." #: lang/json/magazine_from_json.py msgid "USP 9x19mm 20-round magazine" msgid_plural "USP 9x19mm 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek USP 9 x 19 mm" +msgstr[1] "20-nabojowe magazynki USP 9 x 19 mm" +msgstr[2] "20-nabojowych magazynków USP 9 x 19 mm" +msgstr[3] "20-nabojowego magazynku USP 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "" "An extended 20-round box magazine for use with the H&K USP 9x19mm pistol." -msgstr "" -"Wydłużony 20 nabojowy magazynek pudełkowy do pistoletu H&K USP 9x19 mm." +msgstr "Wydłużony 20-nabojowy magazynek do pistoletu H&K USP 9 x 19 mm." #: lang/json/magazine_from_json.py msgid "USP 9x19mm 32-round magazine" msgid_plural "USP 9x19mm 32-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "32-nabojowy magazynek USP 9 x 19 mm" +msgstr[1] "32-nabojowe magazynki USP 9 x 19 mm" +msgstr[2] "32-nabojowych magazynków USP 9 x 19 mm" +msgstr[3] "32-nabojowego magazynku USP 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "" "An extended 32-round box magazine for use with the H&K USP 9x19mm pistol." -msgstr "" -"Wydłużony 32 nabojowy magazynek pudełkowy do pistoletu H&K USP 9x19 mm." +msgstr "Wydłużony 32-nabojowy magazynek do pistoletu H&K USP 9 x 19 mm." #: lang/json/magazine_from_json.py msgid "Uzi 20-round magazine" msgid_plural "Uzi 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek Uzi" +msgstr[1] "20-nabojowe magazynki Uzi" +msgstr[2] "20-nabojowych magazynków Uzi" +msgstr[3] "20-nabojowego magazynku Uzi" #: lang/json/magazine_from_json.py msgid "A compact 20-round box magazine for use with the Uzi SMG." -msgstr "" -"Kompaktowy 20-nabojowy magazynek pudełkowy do pistoletu maszynowego Uzi." +msgstr "Kompaktowy 20-nabojowy magazynek do pistoletu maszynowego Uzi." #: lang/json/magazine_from_json.py msgid "Uzi 25-round magazine" msgid_plural "Uzi 25-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "25-nabojowy magazynek Uzi" +msgstr[1] "25-nabojowe magazynki Uzi" +msgstr[2] "25-nabojowych magazynków Uzi" +msgstr[3] "25-nabojowego magazynku Uzi" #: lang/json/magazine_from_json.py msgid "A compact 25-round box magazine for use with the Uzi SMG." -msgstr "" -"Kompaktowy 25-nabojowy magazynek pudełkowy do pistoletu maszynowego Uzi." +msgstr "Kompaktowy 25-nabojowy magazynek do pistoletu maszynowego Uzi." #: lang/json/magazine_from_json.py msgid "Uzi 32-round magazine" msgid_plural "Uzi 32-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "32-nabojowy magazynek Uzi" +msgstr[1] "32-nabojowe magazynki Uzi" +msgstr[2] "32-nabojowych magazynków Uzi" +msgstr[3] "32-nabojowego magazynku Uzi" #: lang/json/magazine_from_json.py msgid "A standard 32-round steel box magazine for use with the Uzi SMG." msgstr "" -"Standardowy 32-nabojowy stalowy pudełkowy magazynek do pistoletu maszynowego" -" Uzi." +"Standardowy 32-nabojowy stalowy magazynek do pistoletu maszynowego Uzi." #: lang/json/magazine_from_json.py msgid "Uzi 40-round magazine" msgid_plural "Uzi 40-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "40-nabojowy magazynek Uzi" +msgstr[1] "40-nabojowe magazynki Uzi" +msgstr[2] "40-nabojowych magazynków Uzi" +msgstr[3] "40-nabojowego magazynku Uzi" #: lang/json/magazine_from_json.py msgid "An extended-capacity 40-round box magazine for use with the Uzi SMG." msgstr "" -"Zwiększonej pojemności 40-nabojowy magazynek pudełkowy do pistoletu " -"maszynowego Uzi." +"Zwiększonej pojemności 40-nabojowy magazynek do pistoletu maszynowego Uzi." #: lang/json/magazine_from_json.py msgid "Uzi 50-round magazine" msgid_plural "Uzi 50-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "50-nabojowy magazynek Uzi" +msgstr[1] "50-nabojowe magazynki Uzi" +msgstr[2] "50-nabojowych magazynków Uzi" +msgstr[3] "50-nabojowego magazynku Uzi" #: lang/json/magazine_from_json.py msgid "An extended-capacity 50-round box magazine for use with the Uzi SMG." msgstr "" -"Zwiększonej pojemności 50-nabojowy magazynek pudełkowy do pistoletu " -"maszynowego Uzi." +"Zwiększonej pojemności 50-nabojowy magazynek do pistoletu maszynowego Uzi." #: lang/json/magazine_from_json.py msgid "Uzi 100-round double drum magazine" msgid_plural "Uzi 100-round double drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "100-nabojowy magazynek siodłowy Uzi" +msgstr[1] "100-nabojowe magazynki siodłowe Uzi" +msgstr[2] "100-nabojowych magazynków siodłowych Uzi" +msgstr[3] "100-nabojowego magazynku siodłowego Uzi" #: lang/json/magazine_from_json.py msgid "A bulky 100-round double drum magazine for use with the Uzi SMG." -msgstr "" -"Pokaźny 100-nabojowy magazynek dwubębnowy do pistoletu maszynowego Uzi." +msgstr "Pokaźny 100-nabojowy magazynek siodłowy do pistoletu maszynowego Uzi." #: lang/json/magazine_from_json.py msgid "PF-9 7-round magazine" msgid_plural "PF-9 7-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "7-nabojowy magazynek PF-9" +msgstr[1] "7-nabojowe magazynki PF-9" +msgstr[2] "7-nabojowych magazynków PF-9" +msgstr[3] "7-nabojowego magazynku PF-9" #: lang/json/magazine_from_json.py msgid "A standard 7-round steel box magazine for the Kel-Tec PF-9." -msgstr "Standardowy 7-nabojowy pudełkowy magazynek stalowy do Kel-Tec PF-9." +msgstr "Standardowy 7-nabojowy magazynek stalowy do Kel-Tec PF-9." #: lang/json/magazine_from_json.py msgid "PF-9 8-round magazine" msgid_plural "PF-9 8-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "8-nabojowy magazynek PF-9" +msgstr[1] "8-nabojowe magazynki PF-9" +msgstr[2] "8-nabojowych magazynków PF-9" +msgstr[3] "8-nabojowego magazynku PF-9" #: lang/json/magazine_from_json.py msgid "" @@ -175024,296 +180321,296 @@ msgid "" "with the Kel-Tec PF-9. Holds a total of 8 rounds and provides a better grip" " for the shooter when loaded." msgstr "" -"Standardowy stalowy pudełkowy magazynek z zainstalowaną przedłużką, do Kel-" -"Tec PF-9. Mieści 8 naboi i zapewnia lepszy uchwyt dla strzelca." +"Standardowy stalowy magazynek z zainstalowaną przedłużką do Kel-Tec PF-9. " +"Mieści 8 naboi i zapewnia lepszy uchwyt dla strzelca." #: lang/json/magazine_from_json.py msgid "P226 9x19mm 10-round magazine" msgid_plural "P226 9x19mm 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek P226 9 x 19 mm" +msgstr[1] "10-nabojowe magazynki P226 9 x 19 mm" +msgstr[2] "10-nabojowych magazynków P226 9 x 19 mm" +msgstr[3] "10-nabojowego magazynku P226 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "A 10-round double stack box magazine for the SIG Sauer P226." -msgstr "10-nabojowy dwurzędowy magazynek pudełkowy do SIG Sauer P226." +msgstr "10-nabojowy dwurzędowy magazynek do SIG Sauer P226." #: lang/json/magazine_from_json.py msgid "P226 9x19mm 15-round magazine" msgid_plural "P226 9x19mm 15-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "15-nabojowy magazynek P226 9 x 19 mm" +msgstr[1] "15-nabojowe magazynki P226 9 x 19 mm" +msgstr[2] "15-nabojowych magazynków P226 9 x 19 mm" +msgstr[3] "15-nabojowego magazynku P226 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "A 15-round double stack box magazine for the SIG Sauer P226." -msgstr "15-nabojowy dwurzędowy magazynek pudełkowy do SIG Sauer P226." +msgstr "15-nabojowy dwurzędowy magazynek do SIG Sauer P226." #: lang/json/magazine_from_json.py msgid "M11 13-round magazine" msgid_plural "M11 13-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "13-nabojowy magazynek M11" +msgstr[1] "13-nabojowe magazynki M11" +msgstr[2] "13-nabojowych magazynków M11" +msgstr[3] "13-nabojowego magazynku M11" #: lang/json/magazine_from_json.py msgid "" "A 13-round double stack box magazine for the SIG Sauer P228 (also known as " "the M11) or P229." msgstr "" -"13-nabojowy dwurzędowy magazynek pudełkowy do SIG Sauer P229 (znanego też " -"jako M11) lub P229." +"13-nabojowy dwurzędowy magazynek do SIG Sauer P229 (znanego też jako M11) " +"lub P229." #: lang/json/magazine_from_json.py msgid "M17 10-round magazine" msgid_plural "M17 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek M17" +msgstr[1] "10-nabojowe magazynki M17" +msgstr[2] "10-nabojowych magazynków M17" +msgstr[3] "10-nabojowego magazynku M17" #: lang/json/magazine_from_json.py msgid "" "A 10-round box magazine for the SIG Sauer P320. Also compatible with its " "derivative pistols, the M17 and M18." msgstr "" -"10-nabojowy magazynek pudełkowy do SIG Sauer P320. Kompatybilny także z " -"pochodnymi pistoletami M17 i M18." +"10-nabojowy magazynek do SIG Sauer P320. Kompatybilny także z pochodnymi " +"pistoletami M17 i M18." #: lang/json/magazine_from_json.py msgid "M17 17-round magazine" msgid_plural "M17 17-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "17-nabojowy magazynek M17" +msgstr[1] "17-nabojowe magazynki M17" +msgstr[2] "17-nabojowych magazynków M17" +msgstr[3] "17-nabojowego magazynku M17" #: lang/json/magazine_from_json.py msgid "" "A 17-round double stack box magazine for the SIG Sauer P320. Also " "compatible with its derivative pistols, the M17 and M18." msgstr "" -"17-nabojowy dwurzędowy magazynek pudełkowy do SIG Sauer P320. Kompatybilny " -"także z pochodnymi pistoletami M17 i M18." +"17-nabojowy dwurzędowy magazynek do SIG Sauer P320. Kompatybilny także z " +"pochodnymi pistoletami M17 i M18." #: lang/json/magazine_from_json.py msgid "M17 21-round magazine" msgid_plural "M17 21-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "21-nabojowy magazynek M17" +msgstr[1] "21-nabojowe magazynki M17" +msgstr[2] "21-nabojowych magazynków M17" +msgstr[3] "21-nabojowego magazynku M17" #: lang/json/magazine_from_json.py msgid "" "A 21-round double stack box magazine for the SIG Sauer P320. Also " "compatible with its derivative pistols, the M17 and M18." msgstr "" -"21-nabojowy dwurzędowy magazynek pudełkowy do SIG Sauer P320. Kompatybilny " -"także z pochodnymi pistoletami M17 i M18." +"21-nabojowy dwurzędowy magazynek do SIG Sauer P320. Kompatybilny także z " +"pochodnymi pistoletami M17 i M18." #: lang/json/magazine_from_json.py msgid "SP2022 10-round magazine" msgid_plural "SP2022 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek SP2022" +msgstr[1] "10-nabojowe magazynki SP2022" +msgstr[2] "10-nabojowych magazynków SP2022" +msgstr[3] "10-nabojowego magazynku SP2022" #: lang/json/magazine_from_json.py msgid "A 10-round box magazine for the SIG Sauer SP2022, 2340, and 2009." -msgstr "10-nabojowy pudełkowy magazynek do SIG Sauer SP2022, 2340 i 2009." +msgstr "10-nabojowy magazynek do SIG Sauer SP2022, 2340 i 2009." #: lang/json/magazine_from_json.py msgid "SP2022 12-round magazine" msgid_plural "SP2022 12-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "12-nabojowy magazynek SP2022" +msgstr[1] "12-nabojowe magazynki SP2022" +msgstr[2] "12-nabojowych magazynków SP2022" +msgstr[3] "12-nabojowego magazynku SP2022" #: lang/json/magazine_from_json.py msgid "A 12-round box magazine for the SIG Sauer SP2022, 2340, and 2009." -msgstr "12-nabojowy pudełkowy magazynek do SIG Sauer SP2022, 2340 i 2009." +msgstr "12-nabojowy magazynek do SIG Sauer SP2022, 2340 i 2009." #: lang/json/magazine_from_json.py msgid "SP2022 15-round magazine" msgid_plural "SP2022 15-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "15-nabojowy magazynek SP2022" +msgstr[1] "15-nabojowe magazynki SP2022" +msgstr[2] "15-nabojowych magazynków SP2022" +msgstr[3] "15-nabojowego magazynku SP2022" #: lang/json/magazine_from_json.py msgid "A 15-round box magazine for the SIG Sauer SP2022, 2340, and 2009." -msgstr "15-nabojowy pudełkowy magazynek do SIG Sauer SP2022, 2340 i 2009." +msgstr "15-nabojowy magazynek do SIG Sauer SP2022, 2340 i 2009." #: lang/json/magazine_from_json.py msgid "Hi-Power 9x19mm 13-round magazine" msgid_plural "Hi-Power 9x19mm 13-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "13-nabojowy magazynek Hi-Power 9 x 19 mm" +msgstr[1] "13-nabojowe magazynki Hi-Power 9 x 19 mm" +msgstr[2] "13-nabojowych magazynków Hi-Power 9 x 19 mm" +msgstr[3] "13-nabojowego magazynku Hi-Power 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "A 13-round steel box magazine for the Browning Hi-Power 9x19mm." -msgstr "13-nabojowy stalowy magazynek pudełkowy do Browning Hi-Power 9x19 mm." +msgstr "13-nabojowy stalowy magazynek do Browning Hi-Power 9 x 19 mm." #: lang/json/magazine_from_json.py msgid "Hi-Power 9x19mm 15-round magazine" msgid_plural "Hi-Power 9x19mm 15-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "15-nabojowy magazynek Hi-Power 9 x 19 mm" +msgstr[1] "15-nabojowe magazynki Hi-Power 9 x 19 mm" +msgstr[2] "15-nabojowych magazynków Hi-Power 9 x 19 mm" +msgstr[3] "15-nabojowego magazynku Hi-Power 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "A 15-round steel box magazine for the Browning Hi-Power 9x19mm." -msgstr "15-nabojowy stalowy magazynek pudełkowy do Browning Hi-Power 9x19 mm." +msgstr "15-nabojowy stalowy magazynek do Browning Hi-Power 9 x 19 mm." #: lang/json/magazine_from_json.py msgid "P38 8-round magazine" msgid_plural "P38 8-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "8-nabojowy magazynek P38" +msgstr[1] "8-nabojowe magazynki P38" +msgstr[2] "8-nabojowych magazynków P38" +msgstr[3] "8-nabojowego magazynku P38" #: lang/json/magazine_from_json.py msgid "An 8-round steel box magazine for the Walther P38." -msgstr "8-nabojowy pudełkowy magazynek stalowy do Walther P38." +msgstr "8-nabojowy magazynek stalowy do Walther P38." #: lang/json/magazine_from_json.py msgid "PPQ 9x19mm 10-round magazine" msgid_plural "PPQ 9x19mm 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek PPQ 9 x 19 mm" +msgstr[1] "10-nabojowe magazynki PPQ 9 x 19 mm" +msgstr[2] "10-nabojowych magazynków PPQ 9 x 19 mm" +msgstr[3] "10-nabojowego magazynku PPQ 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "A 10-round steel box magazine for the Walther PPQ 9x19mm." -msgstr "10-nabojowy stalowy magazynek pudełkowy do Walther PPQ 9x19 mm." +msgstr "10-nabojowy stalowy magazynek do Walther PPQ 9 x 19 mm." #: lang/json/magazine_from_json.py msgid "PPQ 9x19mm 15-round magazine" msgid_plural "PPQ 9x19mm 15-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "15-nabojowy magazynek PPQ 9 x 19 mm" +msgstr[1] "15-nabojowe magazynki PPQ 9 x 19 mm" +msgstr[2] "15-nabojowych magazynków PPQ 9 x 19 mm" +msgstr[3] "15-nabojowego magazynku PPQ 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "A 15-round steel box magazine for the Walther PPQ 9x19mm." -msgstr "15-nabojowy stalowy magazynek pudełkowy do Walther PPQ 9x19 mm." +msgstr "15-nabojowy stalowy magazynek do Walther PPQ 9 x 19 mm." #: lang/json/magazine_from_json.py msgid "PPQ 9x19mm 17-round magazine" msgid_plural "PPQ 9x19mm 17-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "17-nabojowy magazynek PPQ 9 x 19 mm" +msgstr[1] "17-nabojowe magazynki PPQ 9 x 19 mm" +msgstr[2] "17-nabojowych magazynków PPQ 9 x 19 mm" +msgstr[3] "17-nabojowego magazynku PPQ 9 x 19 mm" #: lang/json/magazine_from_json.py msgid "A 17-round steel box magazine for the Walther PPQ 9x19mm." -msgstr "17-nabojowy stalowy magazynek pudełkowy do Walther PPQ 9x19 mm." +msgstr "17-nabojowy stalowy magazynek do Walther PPQ 9 x 19 mm." #: lang/json/magazine_from_json.py msgid "C-9 8-round magazine" msgid_plural "C-9 8-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "8-nabojowy magazynek C-9" +msgstr[1] "8-nabojowe magazynki C-9" +msgstr[2] "8-nabojowych magazynków C-9" +msgstr[3] "8-nabojowego magazynku C-9" #: lang/json/magazine_from_json.py msgid "An 8-round steel box magazine for use with the Hi-Point C-9." -msgstr "8-nabojowy stalowy magazynek pudełkowy do Hi-Point C-9." +msgstr "8-nabojowy stalowy magazynek do Hi-Point C-9." #: lang/json/magazine_from_json.py msgid "C-9 10-round magazine" msgid_plural "C-9 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek C-9" +msgstr[1] "10-nabojowe magazynki C-9" +msgstr[2] "10-nabojowych magazynków C-9" +msgstr[3] "10-nabojowego magazynku C-9" #: lang/json/magazine_from_json.py msgid "A 10-round steel box magazine for use with the Hi-Point C-9." -msgstr "10-nabojowy stalowy magazynek pudełkowy do Hi-Point C-9." +msgstr "10-nabojowy stalowy magazynek do Hi-Point C-9." #: lang/json/magazine_from_json.py msgid "C-9 15-round magazine" msgid_plural "C-9 15-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "15-nabojowy magazynek C-9" +msgstr[1] "15-nabojowe magazynki C-9" +msgstr[2] "15-nabojowych magazynków C-9" +msgstr[3] "15-nabojowego magazynku C-9" #: lang/json/magazine_from_json.py msgid "A 15-round steel box magazine for use with the Hi-Point C-9." -msgstr "15-nabojowy stalowy magazynek pudełkowy do Hi-Point C-9." +msgstr "15-nabojowy stalowy magazynek do Hi-Point C-9." #: lang/json/magazine_from_json.py msgid "CZ 75 12-round magazine" msgid_plural "CZ 75 12-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "12-nabojowy magazynek CZ 75" +msgstr[1] "12-nabojowe magazynki CZ 75" +msgstr[2] "12-nabojowych magazynków CZ 75" +msgstr[3] "12-nabojowego magazynku CZ 75" #: lang/json/magazine_from_json.py msgid "A 12-round steel box magazine for use with the CZ 75." -msgstr "12-nabojowy stalowy magazynek pudełkowy do CZ 75." +msgstr "12-nabojowy stalowy magazynek do CZ 75." #: lang/json/magazine_from_json.py msgid "CZ 75 20-round magazine" msgid_plural "CZ 75 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek CZ 75" +msgstr[1] "20-nabojowe magazynki CZ 75" +msgstr[2] "20-nabojowych magazynów CZ 75" +msgstr[3] "20-nabojowego magazynku CZ 75" #: lang/json/magazine_from_json.py msgid "A 20-round steel box magazine for use with the CZ 75." -msgstr "20-nabojowy stalowy magazynek pudełkowy do CZ 75." +msgstr "20-nabojowy stalowy magazynek do CZ 75." #: lang/json/magazine_from_json.py msgid "CZ 75 26-round magazine" msgid_plural "CZ 75 26-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "26-nabojowy magazynek CZ 75" +msgstr[1] "26-nabojowe magazynki CZ 75" +msgstr[2] "26-nabojowych magazynków CZ 75" +msgstr[3] "26-nabojowego magazynku CZ 75" #: lang/json/magazine_from_json.py msgid "A 26-round steel box magazine for use with the CZ 75." -msgstr "26-nabojowy stalowy magazynek pudełkowy do CZ 75." +msgstr "26-nabojowy stalowy magazynek do CZ 75." #: lang/json/magazine_from_json.py msgid "CCP 8-round magazine" msgid_plural "CCP 8-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "8-nabojowy magazynek CCP" +msgstr[1] "8-nabojowe magazynki CCP" +msgstr[2] "8-nabojowych magazynków CCP" +msgstr[3] "8-nabojowego magazynku CCP" #: lang/json/magazine_from_json.py msgid "An 8-round steel box magazine for use with the Walther CCP." -msgstr "8-nabojowy pudełkowy magazynek stalowy do Walther CCP." +msgstr "8-nabojowy stalowy magazynek do Walther CCP." #: lang/json/magazine_from_json.py msgid "CCP 9-round magazine" msgid_plural "CCP 9-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "9-nabojowy magazynek CCP" +msgstr[1] "9-nabojowe magazynki CCP" +msgstr[2] "9-nabojowych magazynków CCP" +msgstr[3] "9-nabojowego magazynku CCP" #: lang/json/magazine_from_json.py msgid "" @@ -175321,112 +180618,112 @@ msgid "" "with the Walther CCP. Holds a total of 9 rounds and provides a better grip " "for the shooter when loaded." msgstr "" -"Standardowy stalowy pudełkowy magazynek z zainstalowaną przedłużką, do " -"Walther CCP. Mieści 9 naboi i zapewnia lepszy uchwyt dla strzelca." +"Standardowy stalowy magazynek z zainstalowaną przedłużką do Walther CCP. " +"Mieści 9 naboi i zapewnia lepszy uchwyt dla strzelca." #: lang/json/magazine_from_json.py msgid "APC9 10-round magazine" msgid_plural "APC9 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek APC9" +msgstr[1] "10-nabojowe magazynki APC9" +msgstr[2] "10-nabojowych magazynków APC9" +msgstr[3] "10-nabojowego magazynku APC9" #: lang/json/magazine_from_json.py msgid "" "A 10-round translucent polymer magazine for use with the Brügger & Thomet " "MP9 and compatible guns." msgstr "" -"10 nabojowy przezroczysty polimerowy magazynek do Brügger & Thomet MP9 i " +"10-nabojowy przezroczysty polimerowy magazynek do Brügger & Thomet MP9 i " "kompatybilnych broni." #: lang/json/magazine_from_json.py msgid "APC9 15-round magazine" msgid_plural "APC9 15-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "15-nabojowy magazynek APC9" +msgstr[1] "15-nabojowe magazynki APC9" +msgstr[2] "15-nabojowych magazynków APC9" +msgstr[3] "15-nabojowego magazynku APC9" #: lang/json/magazine_from_json.py msgid "" "A 15-round translucent polymer magazine for use with the Brügger & Thomet " "MP9 and compatible guns." msgstr "" -"15 nabojowy przezroczysty polimerowy magazynek do Brügger & Thomet MP9 i " +"15-nabojowy przezroczysty polimerowy magazynek do Brügger & Thomet MP9 i " "kompatybilnych broni." #: lang/json/magazine_from_json.py msgid "APC9 20-round magazine" msgid_plural "APC9 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek APC9" +msgstr[1] "20-nabojowe magazynki APC9" +msgstr[2] "20-nabojowych magazynków APC9" +msgstr[3] "20-nabojowego magazynku APC9" #: lang/json/magazine_from_json.py msgid "" "A 20-round translucent polymer magazine for use with the Brügger & Thomet " "MP9 and compatible guns." msgstr "" -"20 nabojowy przezroczysty polimerowy magazynek do Brügger & Thomet MP9 i " +"20-nabojowy przezroczysty polimerowy magazynek do Brügger & Thomet MP9 i " "kompatybilnych broni." #: lang/json/magazine_from_json.py msgid "APC9 25-round magazine" msgid_plural "APC9 25-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "25-nabojowy magazynek APC9" +msgstr[1] "25-nabojowe magazynki APC9" +msgstr[2] "25-nabojowych magazynków APC9" +msgstr[3] "25-nabojowego magazynku APC9" #: lang/json/magazine_from_json.py msgid "" "A 25-round translucent polymer magazine for use with the Brügger & Thomet " "MP9 and compatible guns." msgstr "" -"25 nabojowy przezroczysty polimerowy magazynek do Brügger & Thomet MP9 i " +"25-nabojowy przezroczysty polimerowy magazynek do Brügger & Thomet MP9 i " "kompatybilnych broni." #: lang/json/magazine_from_json.py msgid "APC9 30-round magazine" msgid_plural "APC9 30-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek APC9" +msgstr[1] "30-nabojowe magazynki APC9" +msgstr[2] "30-nabojowych magazynków APC9" +msgstr[3] "30-nabojowego magazynku APC9" #: lang/json/magazine_from_json.py msgid "" "A 30-round translucent polymer magazine for use with the Brügger & Thomet " "MP9 and compatible guns." msgstr "" -"30 nabojowy przezroczysty polimerowy magazynek do Brügger & Thomet MP9 i " +"30-nabojowy przezroczysty polimerowy magazynek do Brügger & Thomet MP9 i " "kompatybilnych broni." #: lang/json/magazine_from_json.py msgid "APC9 50-round drum magazine" msgid_plural "APC9 50-round drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "50-nabojowy magazynek bębnowy APC9" +msgstr[1] "50-nabojowe magazynki bębnowe APC9" +msgstr[2] "50-nabojowych magazynków bębnowych APC9" +msgstr[3] "50-nabojowego magazynku bębnowego APC9" #: lang/json/magazine_from_json.py msgid "" "A bulky 50-round aluminum drum magazine for use with the Brügger & Thomet " "MP9 and compatible guns." msgstr "" -"Pokaźny 50 nabojowy aluminiowy magazynek do Brügger & Thomet MP9 i " +"Pokaźny 50-nabojowy aluminiowy magazynek do Brügger & Thomet MP9 i " "kompatybilnych broni." #: lang/json/magazine_from_json.py msgid "PM 8-round magazine" msgid_plural "PM 8-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "8-nabojowy magazynek PM" +msgstr[1] "8-nabojowe magazynki PM" +msgstr[2] "8-nabojowych magazynków PM" +msgstr[3] "8-nabojowego magazynku PM" #: lang/json/magazine_from_json.py msgid "A standard 8-round magazine for the Makarov pistol." @@ -175435,25 +180732,25 @@ msgstr "Standardowy magazynek na 8 naboi do pistoletu Makarowa." #: lang/json/magazine_from_json.py msgid "Skorpion Vz. 82 20-round magazine" msgid_plural "Skorpion Vz. 82 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek Škorpion vz. 82" +msgstr[1] "20-nabojowe magazynki Škorpion vz. 82" +msgstr[2] "20-nabojowych magazynków Škorpion vz. 82" +msgstr[3] "20-nabojowego magazynku Škorpion vz. 82" #: lang/json/magazine_from_json.py msgid "" "A standard 20-round magazine for the Skorpion Vz. 82, in 9x18mm Makarov." msgstr "" -"Standardowy 20-nabojowy magazynek do Skorpion Vz. 82, na naboje 9x18mm " +"Standardowy 20-nabojowy magazynek do Škorpion vz. 82, na naboje 9 x 18mm " "Makarowa." #: lang/json/magazine_from_json.py msgid "2L pressurized chemical tank" msgid_plural "2L pressurized chemical tanks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "2-litrowy ciśnieniowy zbiornik chemiczny" +msgstr[1] "2-litrowe ciśnieniowe zbiorniki chemiczne" +msgstr[2] "2-litrowych ciśnieniowych zbiorników chemicznych" +msgstr[3] "2-litrowego ciśnieniowego zbiornika chemicznego" #: lang/json/magazine_from_json.py msgid "" @@ -175466,10 +180763,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "PA Md. 71 Exodii 10-round magazine" msgid_plural "PA Md. 71 Exodii 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek PA md. 71 Exodii" +msgstr[1] "10-nabojowe magazynki PA md. 71 Exodii" +msgstr[2] "10-nabojowych magazynków PA md. 71 Exodii" +msgstr[3] "10-nabojowego magazynku PA md. 71 Exodii" #: lang/json/magazine_from_json.py msgid "" @@ -175478,7 +180775,7 @@ msgid "" "small size is less appropriate for ground-fighting of hordes of zombies, as " "it is a bit inconvenient to reload." msgstr "" -"Mały gładki magazynek na wzorze klasycznego magazynka PA Md. 71, z pewnymi " +"Mały gładki magazynek na wzorze klasycznego magazynka PA md. 71, z pewnymi " "zmianami ze strony Exodii do poprawy użytkowania w lżejszych niż powietrze " "dronach. Jego mały rozmiar jest mniej odpowiedni do naziemnego zwalczania " "hord zombie, jak również jest dość niewygodny w przeładowywaniu." @@ -175486,26 +180783,26 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "PA Md. 68 Exodii 60-round magazine" msgid_plural "PA Md. 68 Exodii 60-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "60-nabojowy magazynek PA md. 68 Exodii" +msgstr[1] "60-nabojowe magazynki PA md. 68 Exodii" +msgstr[2] "60-nabojowych magazynków PA md. 68 Exodii" +msgstr[3] "60-nabojowego magazynku PA md. 68 Exodii" #: lang/json/magazine_from_json.py msgid "" "An unreasonably large magazine for the already heavy PA Md. 68 battle rifle," " custom designed and manufactured by the Exodii." msgstr "" -"Nadmiernie duży magazynek do i tak już ciężkiego karabinu bojowego PA Md. " +"Nadmiernie duży magazynek do i tak już ciężkiego karabinu bojowego PA md. " "68, opracowany i produkowany wyłącznie przez Exodii." #: lang/json/magazine_from_json.py msgid "3L pressurized fuel tank" msgid_plural "3L pressurized fuel tanks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "3-litrowy ciśnieniowy zbiornik paliwa" +msgstr[1] "3-litrowe ciśnieniowe zbiorniki paliwa" +msgstr[2] "3-litrowych ciśnieniowych zbiorników paliwa" +msgstr[3] "3-litrowego ciśnieniowego zbiornika paliwa" #: lang/json/magazine_from_json.py msgid "A pressurized 3L canister designed to feed a flamethrower." @@ -175514,10 +180811,10 @@ msgstr "3-litrowy kanister pod ciśnieniem do zasilania miotacza ognia." #: lang/json/magazine_from_json.py msgid "0.5L pressurized fuel tank" msgid_plural "0.5L pressurized fuel tanks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "0,5-litrowy ciśnieniowy zbiornik paliwa" +msgstr[1] "0,5-litrowe ciśnieniowe zbiorniki paliwa" +msgstr[2] "0,5-litrowych ciśnieniowych zbiorników paliwa" +msgstr[3] "0,5-litrowego ciśnieniowego zbiornika paliwa" #: lang/json/magazine_from_json.py msgid "" @@ -175528,10 +180825,10 @@ msgstr "Półlitrowy kanister pod ciśnieniem do zasilania miotacza ognia." #: lang/json/magazine_from_json.py msgid "RM451 2L fuel canister" msgid_plural "RM451 2L fuel canisters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "2-litrowy kanister paliwa RM451" +msgstr[1] "2-litrowe kanistry paliwa RM451" +msgstr[2] "2-litrowych kanistrów paliwa RM451" +msgstr[3] "2-litrowego kanistra paliwa RM451" #: lang/json/magazine_from_json.py msgid "" @@ -175544,10 +180841,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "RM451 4L fuel canister" msgid_plural "RM451 4L fuel canisters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "4-litrowy kanistrer paliwa RM451" +msgstr[1] "4-litrowe kanistry paliwa RM451" +msgstr[2] "4-litrowych kanistrów paliwa RM451" +msgstr[3] "4-litrowego kanistra paliwa RM451" #: lang/json/magazine_from_json.py msgid "" @@ -175560,76 +180857,76 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "coilgun 50-round makeshift magazine" msgid_plural "coilgun 50-round makeshift magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "prowizoryczny 50-nabojowy magazynek działka Gaussa" +msgstr[1] "prowizoryczne 50-nabojowe magazynki działka Gaussa" +msgstr[2] "prowizorycznych 50-nabojowych magazynków działka Gaussa" +msgstr[3] "prowizorycznego 50-nabojowego magazynku działka Gaussa" #: lang/json/magazine_from_json.py msgid "" "An improvised magazine for use with a coilgun. Little more than a metal " "box, spring and some duct tape it is awkward to reload." msgstr "" -"Improwizowany magazynek do karabinu Gaussa. Niewiele więcej niż puszka, " -"sprężyna i taśma klejąca. Niewygodny w ładowaniu i niezbyt wiarygodny." +"Improwizowany magazynek do działka Gaussa. Głównie puszka, sprężyna i taśma " +"klejąca. Niewygodny w ładowaniu i niezbyt wiarygodny." #: lang/json/magazine_from_json.py msgid "Saiga shotgun 10-round magazine" msgid_plural "Saiga shotgun 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek strzelby Saiga" +msgstr[1] "10-nabojowe magazynki strzelb Saiga" +msgstr[2] "10-nabojowych magazynków strzelb Saiga" +msgstr[3] "10-nabojowego magazynku strzelby Sajga" #: lang/json/magazine_from_json.py msgid "A removable plastic magazine for the Saiga shotgun. Holds 10 rounds." -msgstr "Pudełkowy wyjmowany magazynek do strzelby Saiga na 10 naboi." +msgstr "Wyjmowany plastikowy magazynek do strzelby Sajga na 10 naboi." #: lang/json/magazine_from_json.py msgid "Saiga-12 10-round magazine" msgid_plural "Saiga-12 10-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "10-nabojowy magazynek Sajga-12" +msgstr[1] "10-nabojowe magazynki Sajga-12" +msgstr[2] "10-nabojowych magazynków Sajga-12" +msgstr[3] "10-nabojowego magazynku Sajga-12" #: lang/json/magazine_from_json.py msgid "" "A removable plastic magazine for the Saiga-12 shotgun. Holds 10 rounds." -msgstr "Pudełkowy wyjmowany magazynek do strzelby Saiga-12 na 10 naboi." +msgstr "Wyjmowany plastikowy magazynek do strzelby Sajga-12 na 10 naboi." #: lang/json/magazine_from_json.py msgid "Saiga shotgun 30-round drum magazine" msgid_plural "Saiga shotgun 30-round drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek bębnowy strzelby Sajga" +msgstr[1] "30-nabojowe magazynki bębnowe strzelb Sajga" +msgstr[2] "30-nabojowych magazynków bębnowych strzelb Sajga" +msgstr[3] "30-nabojowego magazynku bębnowego strzelby Sajga" #: lang/json/magazine_from_json.py msgid "A removable plastic magazine for the Saiga shotgun. Holds 30 rounds." -msgstr "Pudełkowy wyjmowany magazynek do strzelby Saiga na 30 naboi." +msgstr "Wyjmowany plastikowy magazynek do strzelby Sajga na 30 naboi." #: lang/json/magazine_from_json.py msgid "Saiga-12 30-round drum magazine" msgid_plural "Saiga-12 30-round drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek bębnowy Sajga-12" +msgstr[1] "30-nabojowe magazynki bębnowe Sajga-12" +msgstr[2] "30-nabojowych magazynków bębnowych Sajga-12" +msgstr[3] "30-nabojowego magazynku bębnowego Sajga-12" #: lang/json/magazine_from_json.py msgid "" "A removable plastic magazine for the Saiga-12 shotgun. Holds 30 rounds." -msgstr "Bębnowy wyjmowany magazynek do strzelby Saiga-12 na 30 naboi." +msgstr "Wyjmowany plastikowy magazynek do strzelby Sajga-12 na 30 naboi." #: lang/json/magazine_from_json.py msgid "20-round shotshell belt" msgid_plural "20-round shotshell belts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "taśma nabojowa na 20 amunicji do strzelby" +msgstr[1] "taśmy nabojowe na 20 amunicji do strzelby" +msgstr[2] "taśm nabojowych na 20 amunicji do strzelby" +msgstr[3] "taśmy nabojowej na 20 amunicji do strzelby" #: lang/json/magazine_from_json.py msgid "" @@ -175642,10 +180939,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "shotgun 6-round speedloader" msgid_plural "shotgun 6-round speedloaders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "6-nabojowy szybkoładowacz strzelby" +msgstr[1] "6-nabojowe szybkoładowacze strzelby" +msgstr[2] "6-nabojowych szybkoładowaczy strzelby" +msgstr[3] "6-nabojowego szybkoładowacza strzelby" #: lang/json/magazine_from_json.py msgid "" @@ -175655,16 +180952,16 @@ msgid "" msgstr "" "Plastikowa tuba z przesuwną rączką, której można użyć do szybkiego " "załadowania 6 naboi do magazynka tubowego strzelby, w znacznie krótszym " -"czasie niż trwałoby ładowanie ręczne. Musi łączyć się z rękawem żeby móc " +"czasie niż trwałoby ładowanie ręczne. Musi łączyć się z rękawem, żeby móc " "szybko ładować." #: lang/json/magazine_from_json.py msgid "shotgun 8-round speedloader" msgid_plural "shotgun 8-round speedloaders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "8-nabojowy szybkoładowacz strzelby" +msgstr[1] "8-nabojowe szybkoładowacze strzelby" +msgstr[2] "8-nabojowych szybkoładowaczy strzelby" +msgstr[3] "8-nabojowego szybkoładowacza strzelby" #: lang/json/magazine_from_json.py msgid "" @@ -175674,16 +180971,16 @@ msgid "" msgstr "" "Plastikowa tuba z przesuwną rączką, której można użyć do szybkiego " "załadowania 8 naboi do magazynka tubowego strzelby, w znacznie krótszym " -"czasie niż trwałoby ładowanie ręczne. Musi łączyć się z rękawem żeby móc " +"czasie niż trwałoby ładowanie ręczne. Musi łączyć się z rękawem, żeby móc " "szybko ładować." #: lang/json/magazine_from_json.py msgid "small welding tank" msgid_plural "small welding tanks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mały zbiornik spawalniczy" +msgstr[1] "małe zbiorniki spawalnicze" +msgstr[2] "małych zbiorników spawalniczych" +msgstr[3] "małego zbiornika spawalniczego" #: lang/json/magazine_from_json.py msgid "" @@ -175696,10 +180993,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "welding tank" msgid_plural "welding tanks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zbiornik spawalniczy" +msgstr[1] "zbiorniki spawalnicze" +msgstr[2] "zbiorników spawalniczych" +msgstr[3] "zbiornika spawalniczego" #: lang/json/magazine_from_json.py msgid "" @@ -175713,9 +181010,9 @@ msgstr "" msgid "car battery" msgid_plural "car batteries" msgstr[0] "akumulator samochodowy" -msgstr[1] "akumulator samochodowy" -msgstr[2] "akumulator samochodowy" -msgstr[3] "akumulator samochodowy" +msgstr[1] "akumulatory samochodowe" +msgstr[2] "akumulatorów samochodowych" +msgstr[3] "akumulatora samochodowego" #: lang/json/magazine_from_json.py msgid "A 12v lead-acid battery used to power car electrical systems." @@ -175727,9 +181024,9 @@ msgstr "" msgid "motorbike battery" msgid_plural "motorbike batteries" msgstr[0] "akumulator motocyklowy" -msgstr[1] "akumulator motocyklowy" -msgstr[2] "akumulator motocyklowy" -msgstr[3] "akumulator motocyklowy" +msgstr[1] "akumulatory motocyklowe" +msgstr[2] "akumulatorów motocyklowych" +msgstr[3] "akumulatora motocyklowego" #: lang/json/magazine_from_json.py msgid "" @@ -175741,10 +181038,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "small motorbike battery" msgid_plural "small motorbike batteries" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "mały akumulator motocyklowy" +msgstr[1] "małe akumulatory motocyklowe" +msgstr[2] "małych akumulatorów motocyklowych" +msgstr[3] "małego akumulatora motocyklowego" #: lang/json/magazine_from_json.py msgid "" @@ -175757,10 +181054,10 @@ msgstr "" #: lang/json/magazine_from_json.py lang/json/vehicle_part_from_json.py msgid "large storage battery" msgid_plural "large storage batteries" -msgstr[0] "duża bateria akumulacyjna" -msgstr[1] "duże baterie akumulacyjne" -msgstr[2] "dużych baterii akumulacyjnych" -msgstr[3] "dużych baterii akumulacyjnych" +msgstr[0] "duży akumulator" +msgstr[1] "duże akumulatory" +msgstr[2] "dużych akumulatorów" +msgstr[3] "dużego akumulatora" #: lang/json/magazine_from_json.py msgid "" @@ -175768,17 +181065,17 @@ msgid "" "tremendous amount of energy. Could be installed into a storage battery case" " for easy removal from a vehicle, or just welded straight in." msgstr "" -"Olbrzymia bateria akumulacyjna zawierająca wiele ogniw z jonów litu. " -"Przechowuje mnóstwo energii. Może być zamontowana w oprawie baterii " -"akumulacyjnej, dla łatwej wymiany w pojeździe, lub wprost przyspawana." +"Olbrzymi akumulator zawierający wiele ogniw litowo-jonowych. Przechowuje " +"mnóstwo energii. Może być zamontowany w oprawie akumulatora dla łatwej " +"wymiany z pojazdu lub przyspawany bezpośrednio." #: lang/json/magazine_from_json.py lang/json/vehicle_part_from_json.py msgid "medium storage battery" msgid_plural "medium storage batteries" -msgstr[0] "średnia bateria akumulacyjna" -msgstr[1] "średnie baterie akumulacyjne" -msgstr[2] "średnie baterie akumulacyjne" -msgstr[3] "średnie baterie akumulacyjne" +msgstr[0] "średni akumulator" +msgstr[1] "średnie akumulatory" +msgstr[2] "średnich akumulatorów" +msgstr[3] "średniego akumulatora" #: lang/json/magazine_from_json.py msgid "A medium storage battery containing multiple lithium-ion cells." @@ -175787,10 +181084,10 @@ msgstr "Średni akumulator zawierający wiele litowo-jonowych ogniw." #: lang/json/magazine_from_json.py lang/json/vehicle_part_from_json.py msgid "small storage battery" msgid_plural "small storage batteries" -msgstr[0] "mała bateria akumulacyjna" -msgstr[1] "małe baterie akumulacyjne" -msgstr[2] "małe baterie akumulacyjne" -msgstr[3] "małe baterie akumulacyjne" +msgstr[0] "mały akumulator" +msgstr[1] "małe akumulatory" +msgstr[2] "małych akumulatorów" +msgstr[3] "małego akumulatora" #: lang/json/magazine_from_json.py msgid "" @@ -175803,10 +181100,10 @@ msgstr "" #: lang/json/magazine_from_json.py lang/json/vehicle_part_from_json.py msgid "storage battery" msgid_plural "storage batteries" -msgstr[0] "bateria akumulacyjna" -msgstr[1] "baterie akumulacyjne" -msgstr[2] "baterie akumulacyjne" -msgstr[3] "baterie akumulacyjne" +msgstr[0] "akumulator" +msgstr[1] "akumulatory" +msgstr[2] "akumulatorów" +msgstr[3] "akumulatora" #: lang/json/magazine_from_json.py msgid "" @@ -175821,10 +181118,10 @@ msgstr "" #: lang/json/magazine_from_json.py lang/json/vehicle_part_from_json.py msgid "fuel bunker" msgid_plural "fuel bunkers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "zbiornik paliwa" +msgstr[1] "zbiorniki paliwa" +msgstr[2] "zbiorników paliwa" +msgstr[3] "zbiornika paliwa" #: lang/json/magazine_from_json.py msgid "A bin for holding solid fuel." @@ -175833,22 +181130,22 @@ msgstr "Kosz na paliwo stałe." #: lang/json/magazine_from_json.py msgid "84k 10mm 20-round magazine" msgid_plural "84k 10mm 20-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "20-nabojowy magazynek 84k 10 mm" +msgstr[1] "20-nabojowe magazynki 84k 10 mm" +msgstr[2] "20-nabojowych magazynków 84k 10 mm" +msgstr[3] "20-nabojowego magazynku 84k 10 mm" #: lang/json/magazine_from_json.py msgid "A 20-round magazine for use with the Seyfert 84k." -msgstr "12-nabojowy magazynek do Seyfert 84k." +msgstr "20-nabojowy magazynek do Seyfert 84k." #: lang/json/magazine_from_json.py msgid "25mm 40-round magazine" msgid_plural "25mm 40-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "40-nabojowy magazynek 25 mm" +msgstr[1] "40-nabojowe magazynki 25 mm" +msgstr[2] "40-nabojowych magazynków 25 mm" +msgstr[3] "40-nabojowego magazynku 25 mm" #: lang/json/magazine_from_json.py msgid "A 40-round magazine for use with 25mm firearms." @@ -175857,10 +181154,10 @@ msgstr "40-nabojowy magazynek do broni palnej kalibru 25 mm." #: lang/json/magazine_from_json.py msgid "UICASTA 30-round magazine" msgid_plural "UICASTA 30-round magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "30-nabojowy magazynek UICASTA" +msgstr[1] "30-nabojowe magazynki UICASTA" +msgstr[2] "30-nabojowych magazynków UICASTA" +msgstr[3] "30-nabojowego magazynku UICASTA" #: lang/json/magazine_from_json.py msgid "" @@ -175872,43 +181169,43 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "UICASTA 100-round double drum magazine" msgid_plural "UICASTA 100-round double drum magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "100-nabojowy magazynek siodłowy UICASTA" +msgstr[1] "100-nabojowe magazynki siodłowe UICASTA" +msgstr[2] "100-nabojowych magazynków siodłowych UICASTA" +msgstr[3] "100-nabojowego magazynku siodłowego UICASTA" #: lang/json/magazine_from_json.py msgid "" "A standardized 100-round double drum magazine compatible with most UICA " "issue rifles." msgstr "" -"Standaryzowany 100-nabojowy dwubębnowy magazynek kompatybilny z większością " +"Standaryzowany 100-nabojowy magazynek siodłowy kompatybilny z większością " "karabinów UICA." #: lang/json/magazine_from_json.py msgid "RMGS5 8x40mm speedloader" msgid_plural "RMGS5 8x40mm speedloaders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "szybkoładowacz RMGS5 8 x 40 mm" +msgstr[1] "szybkoładowacze RMGS5 8 x 40 mm" +msgstr[2] "szybkoładowaczów RMGS5 8 x 40 mm" +msgstr[3] "szybkoładowacza RMGS5 8 x 40 mm" #: lang/json/magazine_from_json.py msgid "" "This speedloader, made by Rivtech for use with the RM99 revolver, can hold 5" " rounds of 8x40mm caseless rounds and quickly reload a compatible revolver." msgstr "" -"Ta ładowarka produkcji Rivtech do rewolwera RM99, mieści 5 naboi " -"bezłuskowych kalibru .8x40 mmi pozwala szybko przeładować kompatybilny " +"Ten szybkoładowacz produkcji Rivtech do rewolweru RM99 mieści 5 naboi " +"bezłuskowych kalibru 8 x 40 mm i pozwala szybko przeładować kompatybilny " "rewolwer." #: lang/json/magazine_from_json.py msgid "alien cell" msgid_plural "alien cells" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kosmiczna komórka" +msgstr[1] "kosmiczne komórki" +msgstr[2] "kosmicznych komórek" +msgstr[3] "kosmicznej komórki" #: lang/json/magazine_from_json.py msgid "" @@ -175916,15 +181213,15 @@ msgid "" "circular face slowly pulse with purple light." msgstr "" "Stożkowe urządzenie wyjęte z obcego artefaktu. Rowki w jego okrągłym froncie" -" wolno pulsują fioletowym światłem. " +" wolno pulsują fioletowym światłem." #: lang/json/magazine_from_json.py msgid "power cartridge" msgid_plural "power cartridges" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kartridż mocy" +msgstr[1] "kartridże mocy" +msgstr[2] "kartridżów mocy" +msgstr[3] "kartridża mocy" #: lang/json/magazine_from_json.py msgid "" @@ -175937,10 +181234,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "compact power cartridge" msgid_plural "compact power cartridges" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kompaktowy kartridż mocy" +msgstr[1] "kompaktowe kartridże mocy" +msgstr[2] "kompaktowych kartridżów mocy" +msgstr[3] "kompaktowego kartridża mocy" #: lang/json/magazine_from_json.py msgid "" @@ -175953,26 +181250,26 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "bootleg power cartridge" msgid_plural "bootleg power cartridges" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "piracki kartridż mocy" +msgstr[1] "pirackie kartridże mocy" +msgstr[2] "pirackich kartridży mocy" +msgstr[3] "pirackiego kartridża mocy" #: lang/json/magazine_from_json.py msgid "" "A functional but poorly-built power cell compatible with most common energy " "weapons. It cannot be recharged." msgstr "" -"Funkcjonalne ale kiepsko skonstruowane ogniwo energetyczne kompatybilne z " +"Funkcjonalne, ale kiepsko skonstruowane ogniwo energetyczne kompatybilne z " "większością broni energetycznej. Nie może być ponownie naładowane." #: lang/json/magazine_from_json.py msgid "chromoelectric cartridge" msgid_plural "chromoelectric cartridges" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "chromoelektryczny kartridż" +msgstr[1] "chromoelektryczne kartridże" +msgstr[2] "chromoelektrycznych kartridżów" +msgstr[3] "chromoelektrycznego kartridża" #: lang/json/magazine_from_json.py msgid "" @@ -175988,10 +181285,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "pressurized foam tank" msgid_plural "pressurized foam tanks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "ciśnieniowy zbiornik piany" +msgstr[1] "ciśnieniowe zbiorniki piany" +msgstr[2] "ciśnieniowych zbiorników piany" +msgstr[3] "ciśnieniowego zbiornika piany" #: lang/json/magazine_from_json.py msgid "A pressurized 5L canister designed to feed an industrial foam gun." @@ -176001,10 +181298,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "4g plasma cell" msgid_plural "4g plasma cells" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "4-gramowa komórka plazmowa" +msgstr[1] "4-gramowe komórki plazmowe" +msgstr[2] "4-gramowych komórek plazmowych" +msgstr[3] "4-gramowej komórki plazmowej" #: lang/json/magazine_from_json.py msgid "" @@ -176017,10 +181314,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "40g plasma cell (civilian)" msgid_plural "40g plasma cells (civilian)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "40-gramowa komórka plazmowa (cywilna)" +msgstr[1] "40-gramowe komórki plazmowe (cywilne)" +msgstr[2] "40-gramowych komórek plazmowych (cywilnych)" +msgstr[3] "40-gramowej komórki plazmowej (cywilej)" #: lang/json/magazine_from_json.py msgid "" @@ -176028,14 +181325,18 @@ msgid "" "hydrogen in a cryo-pressurized state. A complex nozzle with integrated " "digital failsafes make it incompatible with military railguns." msgstr "" +"Żółto-czerwony kanister, który może bezpiecznie przechowywać do 24 gramów " +"litego wodoru w stanie kriokompresyjnym. Złożona dysza ze zintegrowanymi " +"cyfrowymi zabezpieczeniami uniemożliwia współpracę z wojskowymi działami " +"magnetycznymi." #: lang/json/magazine_from_json.py msgid "grenade machine gun belt" msgid_plural "grenade machine gun belts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "taśma nabojowa na granaty karabinu maszynowego" +msgstr[1] "taśmy nabojowe na granaty karabinu maszynowego" +msgstr[2] "taśm nabojowych na granaty karabinu maszynowego" +msgstr[3] "taśmy nabojowej na granaty karabinu maszynowego" #: lang/json/magazine_from_json.py msgid "" @@ -176050,10 +181351,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "pistol magazine" msgid_plural "pistol magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "magazynek pistoletowy" +msgstr[1] "magazynki pistoletowe" +msgstr[2] "magazynków pistoletowych" +msgstr[3] "magazynku pistoletowego" #: lang/json/magazine_from_json.py msgid "" @@ -176066,26 +181367,26 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "SMG magazine" msgid_plural "SMG magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "magazynek pistoletu maszynowego" +msgstr[1] "magazynki pistoletu maszynowego" +msgstr[2] "magazynków pistoletu maszynowego" +msgstr[3] "magazynku pistoletu maszynowego" #: lang/json/magazine_from_json.py msgid "" "A long stick magazine for use with pistols and submachine guns. Holds 30 " "rounds of standard pistol ammo." msgstr "" -"Długi pudełkowy magazynek do pistoletów i pistoletów maszynowych na 30 naboi" -" standardowej amunicji pistoletowej." +"Długi magazynek do pistoletów i pistoletów maszynowych na 30 naboi " +"standardowej amunicji pistoletowej." #: lang/json/magazine_from_json.py msgid "revolver speedloader" msgid_plural "revolver speedloaders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "szybkoładowacz rewolwerowy" +msgstr[1] "szybkoładowacze rewolwerowe" +msgstr[2] "szybkoładowaczy rewolwerowych" +msgstr[3] "szybkoładowacza rewolwerowego" #: lang/json/magazine_from_json.py msgid "" @@ -176093,17 +181394,17 @@ msgid "" "to aid in loading revolvers. Accepts 6 standard or magnum pistol " "cartridges." msgstr "" -"Ładowarka rewolwerowa. To metalowy blok zdolny chwytać i uwalniać amunicję " -"co pomaga w ładowaniu rewolwerów. Mieści 6 standardowych pocisków " +"Szybkoładowacz rewolwerowy. To metalowy blok zdolny chwytać i uwalniać " +"amunicję, co pomaga w ładowaniu rewolwerów. Mieści 6 standardowych pocisków " "pistoletowych lub pocisków magnum." #: lang/json/magazine_from_json.py msgid "magnum pistol magazine" msgid_plural "magnum pistol magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "magazynek pistoletowy magnum" +msgstr[1] "magazynki pistoletowe magnum" +msgstr[2] "magazynków pistoletowych magnum" +msgstr[3] "magazynku pistoletowego magnum" #: lang/json/magazine_from_json.py msgid "An 8 round magazine for use with semi-automatic magnum pistols." @@ -176112,10 +181413,10 @@ msgstr "8-nabojowy magazynek do półautomatycznych pistoletów magnum." #: lang/json/magazine_from_json.py msgid "target pistol magazine" msgid_plural "target pistol magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "magazynek pistoletu sportowego" +msgstr[1] "magazynki pistoletu sportowego" +msgstr[2] "magazynków pistoletu sportowego" +msgstr[3] "magazynku pistoletu sportowego" #: lang/json/magazine_from_json.py msgid "" @@ -176136,10 +181437,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "standard rifle magazine" msgid_plural "standard rifle magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "standardowy magazynek karabinu" +msgstr[1] "standardowe magazynki karabinu" +msgstr[2] "standardowych magazynków karabinu" +msgstr[3] "standardowego magazynku karabinu" #: lang/json/magazine_from_json.py msgid "" @@ -176148,7 +181449,7 @@ msgid "" "They're made of aluminum and were originally meant to be disposable, so " "they're not the most durable; don't let them get damaged." msgstr "" -"30 nabojowy magazynek standardowej pojemności do karabinów służby wojskowej," +"30-nabojowy magazynek standardowej pojemności do karabinów służby wojskowej," " tańszy niż koszt metalu z uwagi na zaadoptowanie przez niemal każdy " "powszechny karabin. Zrobione z aluminum i oryginalnie pomyślane jako " "jednorazowe, więc nie są zbyt trwałe; nie uszkodź ich." @@ -176156,10 +181457,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "compact rifle magazine" msgid_plural "compact rifle magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "kompaktowy magazynek karabinu" +msgstr[1] "kompaktowe magazynki karabinu" +msgstr[2] "kompaktowych magazynków karabinu" +msgstr[3] "kompaktowego magazynku karabinu" #: lang/json/magazine_from_json.py msgid "" @@ -176173,10 +181474,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "foreign rifle magazine" msgid_plural "foreign rifle magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "magazynek obcego karabinu" +msgstr[1] "magazynki obcego karabinu" +msgstr[2] "magazynków obcego karabinu" +msgstr[3] "magazynku obcego karabinu" #: lang/json/magazine_from_json.py msgid "" @@ -176189,10 +181490,10 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "foreign sniper rifle magazine" msgid_plural "foreign sniper rifle magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "magazynek obcego karabinu snajperskiego" +msgstr[1] "magazynki obcego karabinu snajperskiego" +msgstr[2] "magazynków obcego karabinu snajperskiego" +msgstr[3] "magazynku obcego karabinu snajperskiego" #: lang/json/magazine_from_json.py msgid "A small, sleek magazine for the unusual Exodii sniper rifles." @@ -176201,24 +181502,25 @@ msgstr "Mały płaski magazynek do niezwykłych karabinów snajperskich Exodii." #: lang/json/magazine_from_json.py msgid "railgun rifle magazine" msgid_plural "railgun rifle magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "magazynek karabinu elektromagnetycznego" +msgstr[1] "magazyni karabinu elektromagnetycznego" +msgstr[2] "magazynków karabinu elektromagnetycznego" +msgstr[3] "magazynku karabinu elektromagnetycznego" #: lang/json/magazine_from_json.py msgid "" "A railgun rifle magazine which can hold up to 20 ferromagnetic projectiles." msgstr "" -"Magazynek do działka Gaussa, który mieści 20 ferromagnetycznych pocisków." +"Magazynek do karabinu elektromagnetycznego, który mieści 20 " +"ferromagnetycznych pocisków." #: lang/json/magazine_from_json.py msgid "heavy machine gun belt" msgid_plural "heavy machine gun belts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "taśma nabojowa karabinu maszynowego" +msgstr[1] "taśmy nabojowe karabinu maszynowego" +msgstr[2] "taśm nabojowych karabinu maszynowego" +msgstr[3] "taśmy nabojowej karabinu maszynowego" #: lang/json/magazine_from_json.py msgid "" @@ -176231,22 +181533,23 @@ msgstr "" #: lang/json/magazine_from_json.py msgid "anti-materiel rifle magazine" msgid_plural "anti-materiel rifle magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "magazynek wielkokalibrowego karabinu wyborowego" +msgstr[1] "magazynki wielkokalibrowego karabinu wyborowego" +msgstr[2] "magazynków wielkokalibrowego karabinu wyborowego" +msgstr[3] "magazynku wielkokalibrowego karabinu wyborowego" #: lang/json/magazine_from_json.py msgid "A huge 10 round magazine for anti-materiel rifles." -msgstr "Wielki 10 nabojowy magazynek do karabinów przeciwsprzętowych." +msgstr "" +"Wielki 10-nabojowy magazynek do wielkokalibrowych karabinów wyborowych." #: lang/json/magazine_from_json.py msgid "shotgun box magazine" msgid_plural "shotgun box magazines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "magazynek pudełkowy do strzelby" +msgstr[1] "magazynki pudełkowe do strzelby" +msgstr[2] "magazynków pudełkowych do strzelby" +msgstr[3] "magazynku pudełkowego do strzelby" #: lang/json/magazine_from_json.py msgid "" @@ -176254,17 +181557,17 @@ msgid "" "well in box magazines due to their plastic hulls and the compression from " "the magazine spring." msgstr "" -"8 nabojowy magazynek pudełkowy do strzelb taktycznych. Naboje do strzelb " +"8-nabojowy magazynek pudełkowy do strzelb taktycznych. Naboje do strzelb " "lubią nie współpracować z pudełkowym magazynkiem z uwagi na plastikową " "powłokę i ucisk sprężyny magazynka." #: lang/json/magazine_from_json.py msgid "shotgun speedloader" msgid_plural "shotgun speedloaders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "szybkoładowacz strzelby" +msgstr[1] "szybkoładowacze strzelby" +msgstr[2] "szybkoładowaczów strzelby" +msgstr[3] "szybkoładowacza strzelby" #: lang/json/magazine_from_json.py msgid "" @@ -176273,17 +181576,17 @@ msgid "" "by pushing the follower against the shotgun's loading port. Bulky, but sees" " use in competition occasionally." msgstr "" -"Ładowarka do strzelby. To długa plastikowa tuba a wydatnym plastikowym " +"Szybkoładowacz do strzelby. To długa plastikowa tuba a wydatnym plastikowym " "tłokiem. Możesz naładować 6 naboi do odpowiednio zmodyfikowanej strzelby " "przez prowadnicę. Pokaźna ale w użyciu we współzawodnictwie." #: lang/json/magazine_from_json.py msgid "91/30 Boreal clip" msgid_plural "91/30 Boreal clips" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "łódka nabojowa 91/30 Boreal" +msgstr[1] "łódki nabojowe 91/30 Boreal" +msgstr[2] "łódek nabojowych 91/30 Boreal" +msgstr[3] "łódki nabojowej 91/30 Boreal" #: lang/json/magazine_from_json.py msgid "" @@ -176330,25 +181633,25 @@ msgstr "Jest tu krater." #: lang/json/map_extra_from_json.py msgid "College Kids" -msgstr "Dzieciaki ze szkoły średniej" +msgstr "Dzieciaki ze szkoły wyższej" #. ~ Description for College Kids #: lang/json/map_extra_from_json.py msgid "Several corpses of college kids are here." -msgstr "Kilka ciał dzieciaków ze szkoły średniej znajduje się w tym miejscu." +msgstr "Kilka ciał dzieciaków ze szkoły wyższej znajduje się w tym miejscu." #: lang/json/map_extra_from_json.py msgid "Drug Deal" -msgstr "Deal Narkotykowy" +msgstr "Deal narkotykowy" #. ~ Description for Drug Deal #: lang/json/map_extra_from_json.py msgid "Several corpses of drug dealers are here." -msgstr "Kilka ciał dilerów narkotyków znajduje się w tym miejscu." +msgstr "Kilka ciał dealerów narkotyków znajduje się w tym miejscu." #: lang/json/map_extra_from_json.py msgid "Roadworks" -msgstr "Roboty Drogowe" +msgstr "Roboty drogowe" #. ~ Description for Roadworks #: lang/json/map_extra_from_json.py @@ -176357,7 +181660,7 @@ msgstr "Trwają tu roboty drogowe." #: lang/json/map_extra_from_json.py msgid "Road Mayhem" -msgstr "Chaos Drogowy" +msgstr "Chaos drogowy" #. ~ Description for Road Mayhem #: lang/json/map_extra_from_json.py @@ -176366,7 +181669,7 @@ msgstr "Chaos na drodze." #: lang/json/map_extra_from_json.py msgid "Roadblock (Military)" -msgstr "Blokada (Wojskowa)" +msgstr "Blokada (wojsko)" #. ~ Description for Roadblock (Military) #: lang/json/map_extra_from_json.py @@ -176375,7 +181678,7 @@ msgstr "Drogę blokuje wojsko." #: lang/json/map_extra_from_json.py msgid "Roadblock (Bandits)" -msgstr "Blokada (Bandyci)" +msgstr "Blokada (bandyci)" #. ~ Description for Roadblock (Bandits) #: lang/json/map_extra_from_json.py @@ -176384,7 +181687,7 @@ msgstr "Drogę blokują bandyci." #: lang/json/map_extra_from_json.py msgid "Minefield" -msgstr "Pole Minowe" +msgstr "Pole minowe" #. ~ Description for Minefield #: lang/json/map_extra_from_json.py @@ -176393,7 +181696,7 @@ msgstr "Założono tu miny." #: lang/json/map_extra_from_json.py msgid "Supply Drop" -msgstr "Zrzut Zapasów" +msgstr "Zrzut zapasów" #. ~ Description for Supply Drop #: lang/json/map_extra_from_json.py @@ -176403,7 +181706,7 @@ msgstr "Kilka skrzyń z zapasami zrzucono w tym miejscu." #: lang/json/map_extra_from_json.py msgctxt "Map Extra" msgid "Military" -msgstr "Wojskowy" +msgstr "Wojsko" #. ~ Description for Military #: lang/json/map_extra_from_json.py @@ -176412,7 +181715,7 @@ msgstr "Kilka ciał żołnierzy znajduje się w tym miejscu." #: lang/json/map_extra_from_json.py msgid "Helicopter Crash" -msgstr "Rozbity Helikopter" +msgstr "Rozbity helikopter" #. ~ Description for Helicopter Crash #: lang/json/map_extra_from_json.py @@ -176439,7 +181742,7 @@ msgstr "Jest tu potral." #: lang/json/map_extra_from_json.py msgid "Portal In" -msgstr "Portal Do" +msgstr "Portal do" #. ~ Description for Portal In #: lang/json/map_extra_from_json.py @@ -176457,25 +181760,25 @@ msgstr "Jest jakaś rozbita metalowa kapsuła." #: lang/json/map_extra_from_json.py msgid "Start location concourse area" -msgstr "" +msgstr "Obszar miejsca zebrań lokacji startowej" #. ~ Description for Start location concourse area #: lang/json/map_extra_from_json.py msgid "There is a lanyard with an ID badge nearby." -msgstr "" +msgstr "W pobliżu znajduje się smycz z identyfikatorem." #: lang/json/map_extra_from_json.py msgid "Spider Nest" -msgstr "Gniazdo Pajęcze" +msgstr "Pajęcze gniazdo" #. ~ Description for Spider Nest #: lang/json/map_extra_from_json.py msgid "Spider nest is here." -msgstr "Jest tu gniazdo pajęcze." +msgstr "Jest tu pajęcze gniazdo." #: lang/json/map_extra_from_json.py msgid "Wasp Nest" -msgstr "Gniazdo Os." +msgstr "Gniazdo os." #. ~ Description for Wasp Nest #: lang/json/map_extra_from_json.py @@ -176516,7 +181819,7 @@ msgstr "Ten obszar porasta jeden rodzaj drzew." #: lang/json/map_extra_from_json.py msgid "Shrubbery" -msgstr "Zagajnik" +msgstr "Krzewy" #. ~ Description for Shrubbery #: lang/json/map_extra_from_json.py @@ -176570,16 +181873,16 @@ msgstr "Zapadająca się szopa." #: lang/json/map_extra_from_json.py msgid "Clay Deposit" -msgstr "Depozyt gliny" +msgstr "Złoże gliny" #. ~ Description for Clay Deposit #: lang/json/map_extra_from_json.py msgid "Small clay deposit is here." -msgstr "Jest tu mały depozyt gliny." +msgstr "Jest tu małe złoże gliny." #: lang/json/map_extra_from_json.py msgid "Dead Vegetation" -msgstr "Martwa Roślinność" +msgstr "Martwa roślinność" #. ~ Description for Dead Vegetation #. ~ Description for Dead Vegetation (Point) @@ -176589,11 +181892,11 @@ msgstr "Jest tu martwa roślinność." #: lang/json/map_extra_from_json.py msgid "Dead Vegetation (Point)" -msgstr "Martwa Roślinność (Punktowo)" +msgstr "Martwa roślinność (punktowo)" #: lang/json/map_extra_from_json.py msgid "Burned Ground" -msgstr "Spalona Ziemia" +msgstr "Spalona ziemia" #. ~ Description for Burned Ground #. ~ Description for Burned Ground (Point) @@ -176603,7 +181906,7 @@ msgstr "Jest tu spalona ziemia." #: lang/json/map_extra_from_json.py msgid "Burned Ground (Point)" -msgstr "Spalona Ziemia (Punktowo)" +msgstr "Spalona ziemia (punktowo)" #: lang/json/map_extra_from_json.py msgid "Marloss Pilgrimage" @@ -176631,7 +181934,7 @@ msgstr "Szabrownicy" #: lang/json/map_extra_from_json.py msgid "Some looters gathering everything not nailed down." msgstr "" -"Kilku szabrowników zbierających wszystko co nie jest przybite do podłogi." +"Kilku szabrowników zbierających wszystko, co nie jest przybite do podłogi." #: lang/json/map_extra_from_json.py msgid "Corpses" @@ -176649,7 +181952,7 @@ msgstr "Gniazdo os." #: lang/json/map_extra_from_json.py msgid "Dermatik Nest" -msgstr "Gniazdo Dermatików." +msgstr "Gniazdo dermatików" #. ~ Description for Dermatik Nest #: lang/json/map_extra_from_json.py @@ -176667,7 +181970,7 @@ msgstr "Autobus więzienny." #: lang/json/map_extra_from_json.py msgid "Mass Grave" -msgstr "Masowy Grób" +msgstr "Masowy grób" #. ~ Description for Mass Grave #: lang/json/map_extra_from_json.py @@ -176685,7 +181988,7 @@ msgstr "Grób." #: lang/json/map_extra_from_json.py msgid "Zombie Trap" -msgstr "Pułapka na Zombie" +msgstr "Pułapka na zombie" #. ~ Description for Zombie Trap #: lang/json/map_extra_from_json.py @@ -176703,7 +182006,7 @@ msgstr "Roślinność wodna." #: lang/json/map_extra_from_json.py msgid "Sewer Roundabout" -msgstr "Rondo w Kanałach" +msgstr "Rondo w kanałach" #. ~ Description for Sewer Roundabout #: lang/json/map_extra_from_json.py @@ -176712,7 +182015,7 @@ msgstr "Rondo w kanałach." #: lang/json/map_extra_from_json.py msgid "Sewer Grid" -msgstr "Sieć Kanałów" +msgstr "Sieć kanałów" #. ~ Description for Sewer Grid #: lang/json/map_extra_from_json.py @@ -176721,7 +182024,7 @@ msgstr "Sieć kanałów." #: lang/json/map_extra_from_json.py msgid "Sewer Maintenance" -msgstr "Konserwacja Kanałów" +msgstr "Konserwacja kanałów" #. ~ Description for Sewer Maintenance #: lang/json/map_extra_from_json.py @@ -176730,7 +182033,7 @@ msgstr "Konserwacja kanałów" #: lang/json/map_extra_from_json.py msgid "Sewer Grate" -msgstr "Krata Kanalizacyjna" +msgstr "Krata kanalizacyjna" #. ~ Description for Sewer Grate #: lang/json/map_extra_from_json.py @@ -176739,7 +182042,7 @@ msgstr "Krata kanalizacyjna." #: lang/json/map_extra_from_json.py msgid "Sewer Pipes" -msgstr "Rury Kanalizacyjne" +msgstr "Rury kanalizacyjne" #. ~ Description for Sewer Pipes #: lang/json/map_extra_from_json.py @@ -176748,16 +182051,16 @@ msgstr "Rury i pompy kanalizacyjne." #: lang/json/map_extra_from_json.py msgid "Prison Van" -msgstr "" +msgstr "Furgonetka więzienna" #. ~ Description for Prison Van #: lang/json/map_extra_from_json.py msgid "A violent escape." -msgstr "" +msgstr "Brutalna ucieczka." #: lang/json/map_extra_from_json.py msgid "Wraitheon Droneswarm" -msgstr "Rój Ronów Wraitheon" +msgstr "Rój dronów Wraitheon" #. ~ Description for Wraitheon Droneswarm #: lang/json/map_extra_from_json.py @@ -176766,7 +182069,7 @@ msgstr "Grupa dronów bojowych." #: lang/json/map_extra_from_json.py msgid "Bomb Crater" -msgstr "Krater po Bombie" +msgstr "Krater po bombie" #. ~ Description for Bomb Crater #: lang/json/map_extra_from_json.py @@ -176775,7 +182078,7 @@ msgstr "Krater po bombie." #: lang/json/map_extra_from_json.py msgid "DSA ALRP" -msgstr "DSA ALRP" +msgstr "DSA LPRO" #. ~ Description for DSA ALRP #: lang/json/map_extra_from_json.py @@ -176784,25 +182087,25 @@ msgstr "Lekki patrol rozpoznawczy obcych." #: lang/json/map_extra_from_json.py msgid "Tyrannosaurus Nest" -msgstr "Gniazdo Tyranozaura" +msgstr "Gniazdo tyranozaura" #. ~ Description for Tyrannosaurus Nest #: lang/json/map_extra_from_json.py msgid "A tyrannosaurus nest." -msgstr "To gniazdo Tyranozaura." +msgstr "To gniazdo tyranozaura." #: lang/json/map_extra_from_json.py msgid "Maiasaura Nest" -msgstr "Gniazdo Maiasaura" +msgstr "Gniazdo majazaura" #. ~ Description for Maiasaura Nest #: lang/json/map_extra_from_json.py msgid "A miasaura nest." -msgstr "To gniazdo Maiasaura." +msgstr "To gniazdo majazaura." #: lang/json/map_extra_from_json.py msgid "Bandit Ambush" -msgstr "Zasadzka Bandytów" +msgstr "Zasadzka bandytów" #. ~ Description for Bandit Ambush #: lang/json/map_extra_from_json.py @@ -176811,7 +182114,7 @@ msgstr "Byli tu bandyci." #: lang/json/map_extra_from_json.py msgid "Bandit Campsite" -msgstr "Obóz Bandytów" +msgstr "Obóz bandytów" #. ~ Description for Bandit Campsite #. ~ Description for Bandit Hideout @@ -176823,15 +182126,15 @@ msgstr "Są tu bandyci." #: lang/json/map_extra_from_json.py msgid "Bandit Hideout" -msgstr "Kryjówka Bandytów" +msgstr "Kryjówka bandytów" #: lang/json/map_extra_from_json.py msgid "Bandit Gravesite" -msgstr "Cmentarz Bandytów" +msgstr "Cmentarz bandytów" #: lang/json/map_extra_from_json.py msgid "Bandit Outpost" -msgstr "Posterunek Bandytów" +msgstr "Posterunek bandytów" #. ~ Computer name #: lang/json/mapgen_from_json.py @@ -177258,7 +182561,7 @@ msgstr "CDC: Wewnętrzna notka, pogotowie [2918115]" #. ~ Computer option #: lang/json/mapgen_from_json.py msgid "USARMY: SEAL SRCF [987167]" -msgstr "USARMY: ODCIĄĆ SRCF [987167]" +msgstr "ARMIAUSA: ODCIĄĆ SRCF [987167]" #. ~ Computer option #: lang/json/mapgen_from_json.py @@ -177931,6 +183234,16 @@ msgstr "Szlak rodziny " msgid "PLEASE No fish cleaning or dish washing." msgstr "PROSZĘ nie patroszyć ryb i nie zmywać naczyń." +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "Handlowcy mile a kysz" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "Wejdź drugiej z strony" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -178084,17 +183397,18 @@ msgstr "Pokaż linie metra" #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Relaxation Zone" -msgstr "" +msgstr "Strefa odpoczynku" #. ~ Computer name #: lang/json/mapgen_from_json.py msgid "Security Public Relations Zone" -msgstr "Strefa public relations ochrony" +msgstr "Strefa PR ochrony" #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Badges Mandatory Beyond This Point." msgstr "" +"Odznaki obowiązkowe po przekroczeniu tego punktu." #. ~ Computer name #: lang/json/mapgen_from_json.py @@ -178109,22 +183423,22 @@ msgstr "Apteka" #. ~ Computer name #: lang/json/mapgen_from_json.py msgid "Bio-Sample Storage" -msgstr "" +msgstr "Magazyn próbek biologicznych" #. ~ Computer name #: lang/json/mapgen_from_json.py msgid "PE050 Storage" -msgstr "" +msgstr "Magazyn PE050" #. ~ Computer name #: lang/json/mapgen_from_json.py msgid "PE065 Storage" -msgstr "" +msgstr "Magazyn PE065" #. ~ Computer name #: lang/json/mapgen_from_json.py msgid "PE070 Storage" -msgstr "" +msgstr "Magazyn PE070" #. ~ Computer name #: lang/json/mapgen_from_json.py src/mapgen.cpp @@ -178230,17 +183544,17 @@ msgstr "NEPowerOS" #. ~ Computer option #: lang/json/mapgen_from_json.py msgid "Read logs" -msgstr "" +msgstr "Czytaj logi" #. ~ Computer option #: lang/json/mapgen_from_json.py msgid "Activate Seismic Source" -msgstr "" +msgstr "Aktywne źródło sejsmiczne" #. ~ Computer option #: lang/json/mapgen_from_json.py msgid "Divert power to elevator" -msgstr "Przekieruj mod do windy" +msgstr "Przekieruj zasilanie do windy" #. ~ Computer name #: lang/json/mapgen_from_json.py @@ -178278,37 +183592,37 @@ msgstr "" #. ~ Computer name #: lang/json/mapgen_from_json.py msgid "West Entrance Gate Controls" -msgstr "" +msgstr "Sterowanie zachodnią bramą wejściową" #. ~ Computer option #: lang/json/mapgen_from_json.py msgid "EMERGENCY OVERRIDE - OPEN GATES" -msgstr "" +msgstr "OBEJŚCIE AWARYJNE - OTWÓRZ BRAMY" #. ~ Computer option #: lang/json/mapgen_from_json.py msgid "EMERGENCY OVERRIDE - CLOSE GATES" -msgstr "" +msgstr "OBEJŚCIE AWARYJNE - ZAMKNIJ BRAMY" #. ~ Computer name #: lang/json/mapgen_from_json.py msgid "South Entrance Gate Controls" -msgstr "" +msgstr "Sterowanie południową bramą wejściową" #. ~ Computer name #: lang/json/mapgen_from_json.py msgid "East Entrance Gate Controls" -msgstr "" +msgstr "Sterowanie wschodnią bramą wejściową" #. ~ Computer name #: lang/json/mapgen_from_json.py msgid "North Entrance Gate Controls" -msgstr "" +msgstr "Sterowanie północną bramą wejściową" #. ~ Computer name #: lang/json/mapgen_from_json.py msgid "Interior Gate Controls" -msgstr "" +msgstr "Sterowanie wewnętrzną bramą" #. ~ Computer name #: lang/json/mapgen_from_json.py @@ -178367,12 +183681,12 @@ msgstr "Aikido" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" "Aikido to japońska sztuka walki skupiająca się na samoobronie, przy " "zminimalizowaniu obrażeń atakującego. Używa defensywnych rzutów i " -"rozbrajających chwytów, ale brakuje mu technik ofensywnych." +"rozbrajających chwytów, ale jego technikom brakuje ofensywnej siły." #. ~ initiate message for martial art '{'str': 'Aikido'}' #: lang/json/martial_art_from_json.py @@ -178395,11 +183709,13 @@ msgstr "Postawa aikido" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" "Przez porzucenie ofensywy na rzecz samoobrony stajesz się lepszy w ochronie.\n" "\n" -"Zblokowane obrażenia zmniejszone o 100% zręczności." +"Zblokowane obrażenia zmniejszone o 100% zręczności, +2 efektywności bloku.\n" +"+1.0 umiejętności uników." #: lang/json/martial_art_from_json.py msgid "Intermediate Aikido" @@ -178412,12 +183728,12 @@ msgstr "Średnio zaawansowane aikido" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" "Średnio zaawansowany praktykant aikido może chronić się przed wieloma przeciwnikami.\n" "\n" -"Zblokowane obrażenia redukowane o 100% zręczności\n" +"Zblokowane obrażenia redukowane o 100% zręczności, +1 efektywności bloku.\n" "+1 prób bloku, +1 prób uniku." #: lang/json/martial_art_from_json.py @@ -178429,12 +183745,50 @@ msgstr "Zaawansowane aikido" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" "Zaawansowany praktykant aikido może chronić się przed jeszcze większą ilością przeciwników niż normalnie.\n" "\n" +"+1 efektywności bloku.\n" "+1 prób bloku, +1 prób uniku." +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "Płynne uniki" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" +"Po płynnym uniku przygotowujesz się do skontrowania wroga.\n" +"\n" +"-10% kosztu ruchu.\n" +"Trwa 1 turę." + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "Płynne blokowanie" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" +"Po płynnym bloku przygotowujesz się do skontrowania wroga.\n" +"\n" +"-10% kosztu ruchu.\n" +"Trwa 1 turę." + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "Boks" @@ -178489,8 +183843,10 @@ msgid "" "+1.0 Dodge skill.\n" "Lasts for 1 turns. Stacks 2 times." msgstr "" -"Czynisz się trudniejszym do trafienia przez zwody i uniki podczas poruszania" -" się." +"Czynisz się trudniejszym do trafienia przez zwody i uniki podczas poruszania się.\n" +"\n" +"+1.0 umiejętności uników.\n" +"Trwa 1 turę. Kumuluje się 2 razy." #: lang/json/martial_art_from_json.py msgid "Counter Chance" @@ -178624,15 +183980,15 @@ msgstr "Tempo capoeiry" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." msgstr "" -"Nie spudłowałeś, to tylko element tańca a najlepsza część dopiero przed nami!\n" +"Pudło, czy trafienie, to tylko element tańca! A najlepsza część dopiero przed nami!\n" "\n" "+15% obrażeń miażdżących.\n" -"Trwa 2 tury. Mnoży się do 3 razy." +"Trwa 2 tury. Kumuluje się 3 razy." #: lang/json/martial_art_from_json.py msgid "Crane Kung Fu" @@ -178643,11 +183999,13 @@ msgstr "Kung-fu żurawia" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" -"Jeden z pięciu stylów zwierzęcych Shaolin. Żuraw używa złożonych technik " -"ruchu dłonią i skaczących uników. Zręczność determinuje twoje obrażenia " -"bardziej niż siła. Ponadto dostajesz bonusowe uniki lub ruchy." +"Jeden z pięciu stylów zwierzęcych Shaolin. Żuraw używa skomplikowanych " +"technik ręcznych i skocznych uników. Zręczność, a nie Siła, decyduje o " +"zadawanych obrażeniach; masz większą szansę na unik, a uniki odblokowują " +"silne techniki na określony czas." #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -178680,22 +184038,20 @@ msgstr "" "Obrażenia miażdżące zwiększone o 75% zręczności ale zmniejszone o 75% siły." #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" -msgstr "Lot żurawia" +msgid "Crane's Stance" +msgstr "Poza żurawia" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" -"Tak jak ptak wznosisz się w powietrze by uniknąć niebezpieczeństwa.\n" +"Podobnie jak piękny żuraw, jesteś bardzo sprawny w unikaniu niebezpieczeństw.\n" "\n" -"+1.0 umiejętności uniki.\n" -"Trwa 2 tury." +"+2.0 umiejętności uniku." #: lang/json/martial_art_from_json.py msgid "Crane's Grace" @@ -178705,15 +184061,33 @@ msgstr "Gracja żurawia" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." msgstr "" -"Podobnie jak żuraw, szybko unikniesz niebezpieczeństwa.\n" +"Mistrzowie stylu żurawia mogą z łatwością unikać wielu przeciwników.\n" "\n" -"+1.0 umiejętności uniku, +1 prób uniku.\n" -"Trwa 2 tury." +"+2 próby uniku." + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "Lot żurawia" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." +msgstr "" +"Podobnie jak żuraw, szybko unikasz zagrożenia i odpierasz ataki.\n" +"\n" +"+1 celności, +1.0 umiejętności uniku.\n" +"Uaktywnia techniki „kopnięcie żurawia” i „uderzenie żurawia”.\n" +"Trwa 3 tury." #: lang/json/martial_art_from_json.py msgid "Dragon Kung Fu" @@ -178723,14 +184097,16 @@ msgstr "Kung-fu smoka" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" "Jeden z pięciu stylów zwierzęcych Shaolin. Smok używa płynnych ruchów i " -"mocnych uderzeń. Inteligencja poprawia twoją celność, zamiast zręczności. " -"Twoje ataki prowadzą do kontrataków, które unieszkodliwiają przeciwnika i " -"przygotowują go do potężnego ciosu kończącego." +"mocnych uderzeń. Inteligencja poprawia twoją celność i obrażenia, zamiast " +"zręczności i siły. uniki i blokowanie zwiększają twoje obrażenia. Pauza " +"zwiększa twoją obronę. Możesz wykonać potężne uderzenie na powalonego " +"przeciwnika." #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -178745,43 +184121,67 @@ msgid "%s assumes a dragon-like stance." msgstr "%s przyjmuje postawę smoka." #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" -msgstr "Lot smoka" +msgid "Dragon's Knowledge" +msgstr "Wiedza smoka" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" -"Życie i walka to koło. Atak prowadzi do kontry i znów do ataku. Staraj się zakończyć tę pętlę.\n" +"Planujesz swój atak z dużym wyprzedzeniem, polegając na intuicji, a nie na szybkości.\n" +"Inteligencja zwiększa celność zamiast zręczności i obrażenia w walce wręcz zamiast siły.\n" "\n" -"+1 celność, +2 obrażeń miażdżących.\n" -"Odblokowuje „blok smoczego wiru” i „unik smoczego skrzydła”\n" -"Trwa 1 turę." +"Celność zwiększona o 25% inteligencji, ale zmniejszona o 25% zręczności. Obrażenia obuchowe zwiększone o 75% inteligencji, ale zmniejszone o 75% siły." #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" -msgstr "Wiedza smoka" +msgid "Dragon Wing" +msgstr "Skrzydło smoka" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"\n" +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" +"Życie i walka to koło. Atak prowadzi do kontry i znów do ataku. Postaraj się dokończyć tę pętlę.\n" +"\n" +"+10% obrażeń od uderzenia.\n" +"Trwa 3 tury." + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "Smocza moc" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." msgstr "" -"Planujesz swój atak z dużym wyprzedzeniem, polegając na intuicji, a nie na szybkości by trafić pewnie.\n" -"Inteligencja zwiększa celność zamiast zręczności.\n" +"Poświęcasz chwilę na refleksję nad bitwami, które miały miejsce w przeszłości i które dopiero nadejdą. To spostrzeżenie ochroni cię przed krzywdą w przyszłości.\n" "\n" -"Celność zwiększona o 25% Inteligencji, ale zmniejszona o 25% zręczności." +"+2 skuteczności blokowania, zablokowane obrażenia zmniejszone o +100% inteligencji, +1.0 umiejętności uniku.\n" +"Trwa 2 tury." + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" +msgstr "Smoczy wir" #: lang/json/martial_art_from_json.py msgid "Eskrima" @@ -178843,7 +184243,7 @@ msgstr "" "\n" "+15% bonusu do wszystkich obrażeń.\n" "Odblokowuje technikę „kombinacyjny cios”.\n" -"Trwa 3 tury. Mnoży się do 3 razy." +"Trwa 3 tury. Kumuluje się 3 razy." #: lang/json/martial_art_from_json.py msgid "Fencing" @@ -178889,6 +184289,25 @@ msgstr "" "\n" "Zblokowane obrażenia zmniejszone o 50% zręczności." +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "Kontra" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" +"Udajesz atak i przygotowujesz się do wykonania „łączonego ataku”.\n" +"\n" +"+2 efektywności bloku.\n" +"Włącza technikę „Łączony atak”.\n" +"Lasts 2 turns." + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "Parowanie" @@ -178903,7 +184322,7 @@ msgid "" msgstr "" "Twoje następne uderzenie będzie o wiele łatwiejsze od parowania.\n" "\n" -"+1 celności\n" +"+1 celność\n" "Trwa 1 turę." #: lang/json/martial_art_from_json.py @@ -178960,11 +184379,11 @@ msgstr "Zostań na miejscu" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" -"Jesteś krzepki i nie drgniesz wobec żadnego zagrożenia.\n" +"Masz krzepę i nie drgniesz wobec żadnego zagrożenia.\n" "\n" -"+2 prób uniku, -1.0 umiejętności uniku, blokowane obrażenia zmniejszone o 50% siły." +"+2 efektywności bloku, +1 próba bloku, -1.0 umiejętności uniku, blokowane obrażenia zmniejszone o 50% siły." #: lang/json/martial_art_from_json.py msgid "Tactical Retreat" @@ -178977,12 +184396,14 @@ msgstr "Taktyczne wycofanie się" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" -"Ruszyłeś się i zniwelowałeś efekty Utrzymaj Pozycję!\n" +"Ruszasz się i niwelujesz efekty „utrzymaj pozycję”!\n" "\n" -"-2 próby blokowania, +1.0 umiejętność Unik, zablokowane obrażenia zwiększone o 50% siły.\n" +"-2 efektywności bloku, -1 próba bloku, +1.0 umiejętność uników, zablokowane obrażenia zwiększone o 50% siły.\n" +"Uniemożliwia użycie techniki „wysokie dookolne uderzenie” i „hak”.\n" "Trwa 1 turę." #: lang/json/martial_art_from_json.py @@ -178996,11 +184417,13 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" "Każdy udany blok odkrywa lukę w obronie przeciwnika.\n" "\n" -"+1 Celność.\n" +"+1 celności.\n" +"Włącza technikę „przemieszczenie i hak”.\n" "Trwa 1 turę. Kumuluje się 3 razy." #: lang/json/martial_art_from_json.py @@ -179061,6 +184484,22 @@ msgstr "" "Twoja znajomość chwytów pozwala ci na natychmiastowe podniesienie się po efektach obalenia.\n" "Dodatkowo, możesz kontratakować chwyty i ataki obalające za pomocą rzutu judo." +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "Idealna pozycja" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" +"Masz doskonałą pozycję do kontrataku!\n" +"\n" +"+30% obrażeń miażdżących." + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "Karate" @@ -179103,7 +184542,7 @@ msgid "" msgstr "" "Trafienie pozwala ci doskonale ustawić się w pozycji umożliwiającej maksymalną obronę przed wieloma przeciwnikami.\n" "\n" -"+2 próby blokowania, +1 próba uniku, obrażenia od zablokowanych ciosów zmniejszone o 50% Siły.\n" +"+2 próby blokowania, +1 próba uniku, obrażenia od zablokowanych ciosów zmniejszone o 50% siły.\n" "Trwa 2 tury." #: lang/json/martial_art_from_json.py @@ -179162,7 +184601,26 @@ msgid "" msgstr "" "Twój trening sprawia, że łatwiej ci trafiać i walczyć z wieloma przeciwnikami.\n" "\n" -"+1 Celność, +1 Próba Bloku." +"+1 celność, +1 próba bloku." + +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "Uderzenie w czuły punkt" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" +"Jak wróg, twój przeciwnik rozstawił się szeroko.\n" +"\n" +"+5% szansy na trafienie krytyczne.\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" @@ -179225,7 +184683,7 @@ msgid "" msgstr "" "Podobnie jak kot, jesteś szybki, zwinny i trudny do złapania.\n" "\n" -"+1.0 umiejętności Unik." +"+1.0 umiejętności uników." #: lang/json/martial_art_from_json.py msgid "Leopard's Stalk" @@ -179320,11 +184778,11 @@ msgid "" msgstr "" "Dzięki rycerskości i czujności, twoja obrona ostrzem wzrosła.\n" "\n" -"+1 Próba Bloku; zablokowane obrażenia zmniejszone o 50% Siły." +"+1 próba bloku; zablokowane obrażenia zmniejszone o 50% siły." #: lang/json/martial_art_from_json.py msgid "Half Swording" -msgstr "Walka Pół-Mieczem" +msgstr "Walka mieczem długim" #. ~ Description of buff 'Half Swording' for martial art '{'str': 'Medieval #. Swordsmanship'}' @@ -179338,8 +184796,27 @@ msgid "" msgstr "" "Chwytasz ostrze trochę poniżej połowy długości, by mieć większą kontrolę.\n" "\n" -"Zablokowane obrażenia zmniejszają się o dodatkowe 50% Siły, -1 Celność,\n" -"Umożliwia Chwyt i Zabójcze Uderzenie." +"Zablokowane obrażenia zmniejszają się o dodatkowe 50% siły, -1 celności,\n" +"Umożliwia „chwyt” i „zabójcze uderzenie”." + +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "Mistrzowskie cięcie" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" +"Parujesz i odpierasz atak z większą energią!\n" +"\n" +"+10% obrażeń, -10 kosztu ruchu\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Muay Thai" @@ -179353,8 +184830,8 @@ msgid "" " blocked damage. Blocking attacks or getting hit will increase your damage " "and blocked damage further." msgstr "" -"Muay Thai, zwana również \"Sztuką 8 Kończyn\", jest popularną techniką walki" -" z Tajlandii, która wykorzystuje potężne uderzenia. Twoja siła zmniejsza " +"Muay Thai, zwana również „sztuką 8 kończyn”, jest popularną techniką walki z" +" Tajlandii, która wykorzystuje potężne uderzenia. Twoja siła zmniejsza " "zablokowane obrażenia. Blokowanie ataków lub otrzymywanie ciosów jeszcze " "bardziej zwiększy twoje obrażenia i zablokowane obrażenia." @@ -179479,9 +184956,9 @@ msgid "" "+1.0 Dodge skill, Accuracy increased by 20% of Dexterity.\n" "Last 1 turn." msgstr "" -"Ninjas trenują, by być niezwykle zwinnymi i mobilnymi.\n" +"Ninja trenują, by być niezwykle zwinnymi i mobilnymi.\n" "\n" -"+1.0 umiejętności Unik, Celność zwiększona o 20% Zręczności.\n" +"+1.0 umiejętności uników, celność zwiększona o 20% zręczności.\n" "Trwa 1 turę." #: lang/json/martial_art_from_json.py @@ -179517,7 +184994,7 @@ msgid "" msgstr "" "Twój cel zginął. Czas odejść i zaplanować następny atak.\n" "\n" -"+2 próby Uniku, +10 prędkości ruchu.\n" +"+2 próby uniku, +10 prędkości ruchu.\n" "Trwa 3 tury." #: lang/json/martial_art_from_json.py @@ -179569,7 +185046,7 @@ msgstr "" "mierz i pokazuj swoje umiejętności.\n" "Praktyka czyni mistrza.\n" "\n" -"Przebicie pancerza przez uderzenia i cięcia zwiększone o 50% Percepcji, zablokowane obrażenia zmniejszone o 100% Percepcji." +"Przebicie pancerza przez uderzenia i cięcia zwiększone o 50% percepcji, zablokowane obrażenia zmniejszone o 100% percepcji." #: lang/json/martial_art_from_json.py msgid "Waning Moon" @@ -179590,7 +185067,7 @@ msgstr "" "koszmary zbliżają się ze wszystkich stron.\n" "Uciekaj za wszelką cenę!\n" "\n" -"-5.0 umiejętności Unik.\n" +"-5.0 umiejętności uników.\n" "Trwa 1 turę." #: lang/json/martial_art_from_json.py @@ -179657,7 +185134,7 @@ msgstr "" "ulotna chwila spokoju,\n" "przepadła bez śladu.\n" "\n" -"+2 Celność, umiejętność Unik zwiększona o 50% Percepcji.\n" +"+2 celności, umiejętność uników zwiększona o 50% percepcji.\n" "Trwa 2 tury." #: lang/json/martial_art_from_json.py @@ -179717,7 +185194,7 @@ msgid "" msgstr "" "Wróg otworzył lukę w swojej obronie.\n" "\n" -"+10% obrażeń od uderzeń. Włącza bonus \"Walka w zwarciu\".\n" +"+10% obrażeń od uderzeń. Włącza bonus „walka w zwarciu”.\n" "Trwa 1 turę." #: lang/json/martial_art_from_json.py @@ -179759,24 +185236,25 @@ msgid "" msgstr "" "Starasz się być jak najbardziej rozluźniony podczas walki, aby mieć więcej szans na unik.\n" "\n" -"+1 próba Uniku." +"+1 próba uniku." #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" -msgstr "Unik silat" +msgid "Silat Ambush" +msgstr "Zasadzka silat" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" -"Pozostajesz nisko podczas ruchu, co utrudnia wrogom przygwożdżenie cię.\n" +"Pozostajesz nisko podczas ruchu, co utrudnia wrogom obronę przed tobą.\n" "\n" -"+1 próba Uniku.\n" -"Trwa 2 tury." +"+5% szansy na trafienie krytyczne.\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Silat Appraisal" @@ -179793,7 +185271,7 @@ msgid "" msgstr "" "Za każdym razem, gdy unikasz ataku, dowiadujesz się nieco więcej o stylu walki przeciwników. Pozwala ci to na bardziej precyzyjne ataki przeciwko nim.\n" "\n" -"Celność zwiększona o 15% Zręczności.\n" +"Celność zwiększona o 15% zręczności.\n" "Trwa 2 tury. Kumuluje się 3 razy." #: lang/json/martial_art_from_json.py @@ -179809,8 +185287,8 @@ msgid "" "your next attack." msgstr "" "Jeden z pięciu stylów zwierzęcych Shaolin. Wąż koncentruje się na płynnych " -"ruchach i precyzyjnych uderzeniach. Percepcja a nie Zręczność decyduje o " -"twojej Celności. Stanie w miejscu zwiększy twoją celność i obrażenia " +"ruchach i precyzyjnych uderzeniach. percepcja a nie zręczność decyduje o " +"twojej celności. Stanie w miejscu zwiększy twoją celność i obrażenia " "następnego ataku." #. ~ initiate message for martial art '{'str': 'Snake Kung Fu'}' @@ -179857,7 +185335,7 @@ msgid "" msgstr "" "Każdy wąż czeka na idealny moment, aby uderzyć. Wyceluj w przeciwnika i zaatakuj jego słabe strony bez litości!\n" "\n" -"+1 Celność, penetracja pancerza równa 50% Percepcji.\n" +"+1 celność, penetracja pancerza równa 50% percepcji.\n" "Trwa 1 turę. Kumuluje się 3 razy." #: lang/json/martial_art_from_json.py @@ -179872,7 +185350,7 @@ msgid "" "to maintain advantage in combat. Standing still gives you an extra block " "attempt but moving will briefly increase your damage." msgstr "" -"Sōjutsu, \"Droga Włóczni\", jest japońską sztuką walki przy użyciu włóczni. " +"Sōjutsu, „droga włóczni”, jest japońską sztuką walki przy użyciu włóczni. " "Sōjutsu koncentruje się na utrzymywaniu przeciwnika na dystans, aby zachować" " przewagę w walce. Stanie w miejscu daje ci dodatkową próbę bloku, ale " "poruszanie się na krótko zwiększa zadawane obrażenia." @@ -179898,11 +185376,11 @@ msgstr "Poza sōjutsu" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" "Twój trening zapewnia lepszą obronę podczas używania broni drzewcowej.\n" "\n" -"+1 Próba Bloku." +"+1 próba bloku, +2 efektywności bloku." #: lang/json/martial_art_from_json.py msgid "Superior Positioning" @@ -179920,7 +185398,7 @@ msgid "" msgstr "" "Zrezygnowałeś na chwilę z obrony, aby zwiększyć obrażenia swoich ataków.\n" "\n" -"+10% obrażeń, -1 Próba Bloku.\n" +"+10% obrażeń, -1 próba bloku.\n" "Trwa 1 turę." #: lang/json/martial_art_from_json.py @@ -180028,7 +185506,27 @@ msgid "" msgstr "" "Skupiasz się na obronie i przewidywaniu ataków przeciwnika.\n" "\n" -"+1 Próba Bloku, zablokowane obrażenia zmniejszone o 100% Percepcji." +"+1 próba bloku, zablokowane obrażenia zmniejszone o 100% percepcji." + +#: lang/json/martial_art_from_json.py +msgid "Cross Hands" +msgstr "Skrzyżowane dłonie" + +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"\n" +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." +msgstr "" +"Poświęcając chwilę na przygotowanie się, jesteś w stanie w pełni wykorzystać całe swoje ciało do ataku i obrony.\n" +"\n" +"+2 efektywności bloku, zablokowane obrażenia zmniejszone o 50% percepcji.\n" +"Uaktywnia techniki „uderzenie dłonią” i „podwójne uderzenie dłonią”.\n" +"Trwa 3 tury." #: lang/json/martial_art_from_json.py msgid "Repulse the Monkey" @@ -180049,26 +185547,6 @@ msgstr "" "Celność zwiększona o 20% Percepcji, zyskujesz penetrację pancerza uderzeniem równą 50% Percepcji.\n" "Trwa 2 tury." -#: lang/json/martial_art_from_json.py -msgid "Cross Hands" -msgstr "Skrzyżowane dłonie" - -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' -#: lang/json/martial_art_from_json.py -#, no-python-format -msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" -"\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." -msgstr "" -"Poświęcając chwilę na przygotowanie się, jesteś w stanie w pełni wykorzystać całe swoje ciało do ataku i obrony.\n" -"\n" -"+1.0 umiejętności Unik, zablokowane obrażenia zmniejszone o 50% Percepcji.\n" -"Uaktywnia techniki \"Uderzenie Dłonią\" i \"Podwójne Uderzenie Dłonią\".\n" -"Trwa 3 tury." - #: lang/json/martial_art_from_json.py msgid "Tiger Kung Fu" msgstr "Kung-fu tygrysa" @@ -180211,11 +185689,11 @@ msgstr "Delikatność Chi Sao" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" "Masz większe zrozumienie równowagi i techniki. Daje ci to większe szanse na uniknięcie ataków przeciwnika.\n" "\n" -"Umiejętność Uniku zwiększona o 15% Percepcji. Zablokowane obrażenia zmniejszone o 50% Percepcji." +"Umiejętność uniku zwiększona o 25% percepcji. Zablokowane obrażenia zmniejszone o 50% percepcji." #: lang/json/martial_art_from_json.py msgid "Biu Ji" @@ -180230,9 +185708,9 @@ msgid "" "Accuracy increased by 20% of Perception, Enables \"Straight Punch (Knockback)\" and \"L-Hook (Knockback)\" techniques.\n" "Lasts 2 turns." msgstr "" -"Dzięki perfekcyjnemu zastosowaniu formy Dźgających Palców, możesz uderzyć w słabe punkty przeciwnika, odepchnąć go i podążać za nim!\n" +"Dzięki perfekcyjnemu zastosowaniu formy dźgających palców, możesz uderzyć w słabe punkty przeciwnika, odepchnąć go i podążać za nim!\n" "\n" -"Dokładność zwiększona o 20% Percepcji, umożliwia techniki \"Cios Prosty (Odrzucenie)\" i \"L-Hak (Odrzucenie)\".\n" +"Dokładność zwiększona o 20% percepcji, umożliwia techniki „prosty cios (odrzut)” i „l-hak (odrzut)”.\n" "Trwa 2 tury." #: lang/json/martial_art_from_json.py @@ -180248,7 +185726,7 @@ msgid "" " dodge, you inflict more damage with your counterattack for until the end of" " your next turn." msgstr "" -"Zui Quan, znany jako \"pijany boks\", naśladuje ruchy pijanego, aby zmylić " +"Zui Quan, znany jako „pijany boks”, naśladuje ruchy pijanego, aby zmylić " "przeciwnika. Zyskujesz pasywną premię do uników oraz premię do celności, " "zależną od twojej inteligencji. Poruszanie się daje ci dodatkowe próby " "uników, a za każdym razem, gdy wykonasz unik, zadajesz więcej obrażeń " @@ -180280,7 +185758,7 @@ msgid "" msgstr "" "Inni mogą myśleć, że zataczasz się bezładnie, ale ty wiesz lepiej. Każdy ruch jest obliczony tak, by ułatwić ci unikanie obrażeń.\n" "\n" -"Umiejętność Uniku zwiększona o 15% Inteligencji." +"Umiejętność uniku zwiększona o 15% inteligencji." #: lang/json/martial_art_from_json.py msgid "Advanced Zui Quan" @@ -180297,7 +185775,7 @@ msgid "" msgstr "" "Posiadasz większe zrozumienie Zui Quan. Twoje umiejętności w unikaniu i wyprowadzaniu ataków są dzięki temu znacznie lepsze.\n" "\n" -"+1 Próba Uniku, Celność zwiększona o 15% Inteligencji." +"+1 próba uniku, celność zwiększona o 15% inteligencji." #: lang/json/martial_art_from_json.py msgid "Drunken Stumble" @@ -180452,7 +185930,27 @@ msgstr "" " set_hit_bonus( get_hit_bonus() + 1 );\n" "}\n" "\n" -"+2 Próby Bloków, +1 Celność." +"+2 próby bloków, +1 celność." + +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "Binarne utwardzenie" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 miażdżącej, ciętej and kłutej zbroi.\n" +"Trwa 3 tury. Kumuluje się 3 razy." #: lang/json/martial_art_from_json.py msgid "Optimization" @@ -180471,9 +185969,9 @@ msgid "" msgstr "" ">10 ZLOKALIZUJ CEL\n" ">20 SKASUJ CEL\n" -">30 IDŹDO 10\n" +">30 GOTO 10\n" "\n" -"+1 Celność, +2 wszystkie obrażenia.\n" +"+1 celność, +2 wszystkie obrażenia.\n" "Trwa 3 tury. Kumuluje się 3 razy." #: lang/json/martial_art_from_json.py @@ -180527,15 +186025,16 @@ msgstr "Jad stonogi" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" "Twój jad pali przeciwników w najgorszym momencie.\n" "\n" -"+2 obrażenia od uderzeń.\n" +"+15% obrażeń.\n" "Trwa 2 tury." #: lang/json/martial_art_from_json.py @@ -180550,10 +186049,10 @@ msgid "" "bonus to Dodge skill and moving near a wall gives a large bonus to accuracy." " Stronger techniques are enabled when near a wall." msgstr "" -"Jeden z Pięciu Śmiercionośnych Jadów, używany przez Meng Tianxia. Styl " -"Jaszczura skupia się na wykorzystaniu ścian na swoją korzyść. Stanie przy " -"ścianie daje duży bonus do umiejętności Unik, a poruszanie się przy ścianie " -"daje duży bonus do celności. Silniejsze techniki są aktywowane przy ścianie." +"Jeden z pięciu trucicieli, używany przez Meng Tianxia. Styl Jaszczura skupia" +" się na wykorzystaniu ścian na swoją korzyść. Stanie przy ścianie daje duży " +"bonus do umiejętności uników, a poruszanie się przy ścianie daje duży bonus " +"do celności. Silniejsze techniki są aktywowane przy ścianie." #. ~ initiate message for martial art '{'str': 'Lizard Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -180599,8 +186098,8 @@ msgid "" msgstr "" "Poprzez krótkie susy, skoki lub odepchnięcie się od pobliskiej ściany, możesz uniknąć najgorszych ataków przeciwnika.\n" "\n" -"+3.0 umiejętności Unik w pobliżu ściany.\n" -"Włącza techniki \"Jaszczurzy ogon\" i \"Jaszczurza kontra na ścianę\", gdy jesteś blisko ściany." +"+3.0 umiejętności uniku w pobliżu ściany.\n" +"Włącza techniki „jaszczurzy ogon” i „jaszczurza kontra na ścianę”, gdy jesteś blisko ściany." #: lang/json/martial_art_from_json.py msgid "Lizard's Leap" @@ -180656,14 +186155,15 @@ msgstr "Jad skorpiona" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" "Twój jad jest stałym zagrożeniem, przed którym nic nie może uciec.\n" "\n" -"+2 obrażenia od uderzeń." +"+15% obrażeń." #: lang/json/martial_art_from_json.py msgid "Scorpion's Charge" @@ -180683,7 +186183,7 @@ msgstr "" "Pędź do przodu i złap swoją ofiarę!\n" "\n" "+10% obrażeń.\n" -"Uaktywnia technikę \"Cios Szczypiec\".\n" +"Uaktywnia technikę „cios szczypiec”.\n" "Kumuluje się 2 razy. Trwa 2 tury." #: lang/json/martial_art_from_json.py @@ -180701,7 +186201,7 @@ msgid "" msgstr "" "Nic nie jest straszniejsze od rozwścieczonego skorpiona. Twoje ataki mogą trzymać innych na dystans.\n" "\n" -"+1 Próba Uniku.\n" +"+1 próba uniku.\n" "Trwa 1 turę." #: lang/json/martial_art_from_json.py @@ -180845,7 +186345,7 @@ msgid "" msgstr "" "Każdy wąż czeka na idealny moment, aby zaatakować. Zamień błędy przeciwnika w swoją okazję do ataku!\n" "\n" -"+1.0 umiejętności Unik." +"+1.0 umiejętności uników." #: lang/json/martial_art_from_json.py msgid "Viper's Ambush" @@ -180910,7 +186410,7 @@ msgstr "%s inicjuje pracę z ostrzem." #: lang/json/martial_art_from_json.py msgid "Unwavering Edge" -msgstr "Niezachwiana Krawędź" +msgstr "Niezachwiana krawędź" #. ~ Description of buff 'Unwavering Edge' for martial art 'CRIT Blade-work' #: lang/json/martial_art_from_json.py @@ -180918,12 +186418,12 @@ msgid "" "Gain minor Accuracy, Cutting and Stabbing Arpen per stack. Greatly reduces " "dodge skill. 2 stacks max" msgstr "" -"Zyskujesz niewielką Celność, Cięcie i Kłucie Arpen za każdą kumulację. " -"Znacznie zmniejsza umiejętność uniku. Kumuluje się 2 razy maks." +"Zyskujesz niewielką celność, penetrację zbroi ciętą i kłutą za każdą " +"kumulację. Znacznie zmniejsza umiejętność uniku. Kumuluje się 2 razy maks." #: lang/json/martial_art_from_json.py msgid "Ruthlessness" -msgstr "" +msgstr "Bezwzględność" #. ~ Description of buff 'Ruthlessness' for martial art 'CRIT Blade-work' #: lang/json/martial_art_from_json.py @@ -180931,10 +186431,12 @@ msgid "" "Additional Stabbing and Cutting damage per stack. Reduces dodge attempts. " "4 stacks max." msgstr "" +"Dodatkowe obrażenia od dźgnięć i cięć na kumulację. Zmniejsza liczbę prób " +"uników. Maksymalnie 4 kumulacje." #: lang/json/martial_art_from_json.py msgid "Rending Strikes" -msgstr "" +msgstr "Rozdzierające ciosy" #. ~ Description of buff 'Rending Strikes' for martial art 'CRIT Blade-work' #: lang/json/martial_art_from_json.py @@ -180942,10 +186444,12 @@ msgid "" "Additional Armor penetration per stack. Further reduces dodge attempts. 3 " "stacks max." msgstr "" +"Dodatkowa penetracja pancerza za każdą kumulację. Zmniejsza liczbę prób " +"uników. Maksymalnie 3 kumulacje." #: lang/json/martial_art_from_json.py msgid "Calculating Eyes" -msgstr "" +msgstr "Kalkulujące oczy" #. ~ Description of buff 'Calculating Eyes' for martial art 'CRIT Blade-work' #: lang/json/martial_art_from_json.py @@ -180954,10 +186458,13 @@ msgid "" "weaponry. Gain great Cutting and Stabbing Armor Penetration on top of minor" " Accuracy" msgstr "" +"Nauczono cię, jak prawidłowo posługiwać się ostrą bronią małych i średnich " +"rozmiarów. Zyskujesz świetną penetrację pancerza przez cięcia i dźgnięcia " +"oraz niewielki bonus do celności." #: lang/json/martial_art_from_json.py msgid "Honed Movements" -msgstr "" +msgstr "Wyćwiczone ruchy" #. ~ Description of buff 'Honed Movements' for martial art 'CRIT Blade-work' #: lang/json/martial_art_from_json.py @@ -180965,10 +186472,12 @@ msgid "" "Your skill with handling sharp weaponry has improved. Gain extra Cutting " "and Stabbing damage." msgstr "" +"Twoje umiejętności posługiwania się ostrą bronią uległy poprawie. Zyskujesz " +"dodatkowe obrażenia od cięcia i dźgania." #: lang/json/martial_art_from_json.py msgid "C.R.I.T Enforcement" -msgstr "" +msgstr "Egzekucja CRIT" #. ~ Description for martial art 'C.R.I.T Enforcement' #: lang/json/martial_art_from_json.py @@ -180977,11 +186486,14 @@ msgid "" "grounding enemies. Each attack landed increases your armor and offers other" " combat bonuses based on stats." msgstr "" +"Styl defensywny, który koncentruje się na ogłuszających ciosach, nokautach i" +" uziemieniu wrogów. Każdy celny atak zwiększa twój pancerz i oferuje inne " +"bonusy bojowe zależne od statystyk." #. ~ initiate message for martial art 'C.R.I.T Enforcement' #: lang/json/martial_art_from_json.py msgid "You ready yourself to stand your ground." -msgstr "" +msgstr "Przygotowujesz się do obrony swojej pozycji." #. ~ initiate message for martial art 'C.R.I.T Enforcement' #: lang/json/martial_art_from_json.py @@ -180991,16 +186503,16 @@ msgstr "%s rysuje linię na piasku." #: lang/json/martial_art_from_json.py msgid "Bulwark" -msgstr "" +msgstr "Bastion" #. ~ Description of buff 'Bulwark' for martial art 'C.R.I.T Enforcement' #: lang/json/martial_art_from_json.py msgid "+1 armor and other small bonuses per stack. Max of 2 stacks" -msgstr "" +msgstr "+1 pancerz i inne małe bonusy na kumulację. Maksymalnie 2 kumulacje" #: lang/json/martial_art_from_json.py msgid "Unyielding Front" -msgstr "" +msgstr "Nieugięty front" #. ~ Description of buff 'Unyielding Front' for martial art 'C.R.I.T #. Enforcement' @@ -181009,10 +186521,12 @@ msgid "" "Stand strong in the face of adversity. +1 armor. STR provides accuracy and" " minor bash arpen." msgstr "" +"Stój silny w obliczu wroga. +1 pancerza. SIŁ zapewnia celność i niewielki " +"bonus do uderzeń." #: lang/json/martial_art_from_json.py msgid "CRIT CQB" -msgstr "" +msgstr "CQB CRIT" #. ~ Description for martial art 'CRIT CQB' #: lang/json/martial_art_from_json.py @@ -181020,31 +186534,35 @@ msgid "" "A style centered around rapid strikes and piercing jabs. Each attack landed" " adds a plethora of combat bonuses." msgstr "" +"Styl skoncentrowany na szybkich uderzeniach i przeszywających ciosach. Każdy" +" wyprowadzony atak dodaje mnóstwo bonusów do walki." #. ~ initiate message for martial art 'CRIT CQB' #: lang/json/martial_art_from_json.py msgid "You shift your weight for the oncoming fight." -msgstr "" +msgstr "Przesuwasz ciężar ciała na zbliżającą się walkę." #. ~ initiate message for martial art 'CRIT CQB' #: lang/json/martial_art_from_json.py #, python-format msgid "%s prepares for hand-to-hand battle." -msgstr "" +msgstr "%s szykuje się do walki wręcz." #: lang/json/martial_art_from_json.py msgid "Fluid Tenacity" -msgstr "" +msgstr "Płynna nieustępliwość" #. ~ Description of buff 'Fluid Tenacity' for martial art 'CRIT CQB' #: lang/json/martial_art_from_json.py msgid "" "+Atk Speed and other small bonuses based on DEX per stack. Max of 5 stacks" msgstr "" +"+Szybkość ataku i inne małe bonusy zależne od ZRĘ na kumulację. Maksymalnie " +"5 kumulacji" #: lang/json/martial_art_from_json.py msgid "Tactful Initiative" -msgstr "" +msgstr "Taktyczna inicjatywa" #. ~ Description of buff 'Tactful Initiative' for martial art 'CRIT CQB' #: lang/json/martial_art_from_json.py @@ -181052,10 +186570,12 @@ msgid "" "You have gained an advantage by always remaining mindful of common " "weaknesses. DEX provides dodge ability, accuracy and armor penetration." msgstr "" +"Zdobyłeś przewagę, zawsze pamiętając o typowych słabościach. ZRĘ zapewnia " +"zdolność uniku, celność i penetrację pancerza." #: lang/json/martial_art_from_json.py msgid "Desert Wind" -msgstr "" +msgstr "Pustynny wiatr" #. ~ Description for martial art '{'str': 'Desert Wind'}' #: lang/json/martial_art_from_json.py @@ -181066,22 +186586,28 @@ msgid "" " flames. Furthermore, these flames expand outward with explosive force, " "damaging anyone nearby." msgstr "" +"Wyznawcy dyscypliny pustynnego wiatru uczą się przekuwać swoją wewnętrzną " +"siłę w potężne spirale ognia. Będąc w ciągłym ruchu, adepci pustynnego " +"wiatru używają swojej broni jako przewodnika, aby spalać przeciwników " +"żrącymi płomieniami. Co więcej, płomienie te rozprzestrzeniają się na " +"zewnątrz z wybuchową siłą, raniąc każdego, kto znajduje się w pobliżu." #. ~ initiate message for martial art '{'str': 'Desert Wind'}' #: lang/json/martial_art_from_json.py msgid "" "You feel a wave of heat wash over you as you assume a running combat stance." msgstr "" +"Czujesz, jak ogarnia cię fala gorąca i przyjmujesz postawę bojową do biegu." #. ~ initiate message for martial art '{'str': 'Desert Wind'}' #: lang/json/martial_art_from_json.py #, python-format msgid "%s assumes into a running combat stance." -msgstr "" +msgstr "%s przyjmuje postawę bojową do biegu." #: lang/json/martial_art_from_json.py msgid "Wind Stride" -msgstr "" +msgstr "Krok wiatru" #. ~ Description of buff 'Wind Stride' for martial art '{'str': 'Desert #. Wind'}' @@ -181092,10 +186618,14 @@ msgid "" "+1.0 Dodging skill.\n" "Lasts 1 turn." msgstr "" +"Twój ruch jest przyspieszony, jak gdyby silny wiatr wiał zawsze od tyłu.\n" +"\n" +"+1.0 umiejętności uniku.\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Zephyr Dance" -msgstr "" +msgstr "Taniec zefira" #. ~ Description of buff 'Zephyr Dance' for martial art '{'str': 'Desert #. Wind'}' @@ -181106,10 +186636,14 @@ msgid "" "+1.0 Dodging skill, +1 Dodge attempt\n" "Lasts 1 turn." msgstr "" +"Twoje pełne gracji i płynne ruchy pozwalają ci z łatwością unikać ataków.\n" +"\n" +"+1.0 umiejętność uniku, +1 próby uniku\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Diamond Mind" -msgstr "" +msgstr "Diamentowy umysł" #. ~ Description for martial art '{'str': 'Diamond Mind'}' #: lang/json/martial_art_from_json.py @@ -181120,21 +186654,26 @@ msgid "" "confidence, those that hesitate for even a moment will fall before them in " "the blink of an eye." msgstr "" +"Uczeń dyscypliny diamentowego umysłu udoskonalił swój umysł, aby pokonać " +"każdego przeciwnika. Dzięki szybkiemu refleksowi i chirurgicznej precyzji, " +"potrafią poruszać się tak szybko, że ich przeciwnicy nie są w stanie " +"zareagować. Cechuje go niezrównana pewność siebie, a ci, którzy wahają się " +"choćby przez chwilę, padają przed nim w mgnieniu oka." #. ~ initiate message for martial art '{'str': 'Diamond Mind'}' #: lang/json/martial_art_from_json.py msgid "You concentrate and become very still for a moment." -msgstr "" +msgstr "Koncentrujesz się i stajesz się na chwilę w bezruchu." #. ~ initiate message for martial art '{'str': 'Diamond Mind'}' #: lang/json/martial_art_from_json.py #, python-format msgid "%s becomes very still for a moment." -msgstr "" +msgstr "%s staje się na chwilę bardzo w bezruchu." #: lang/json/martial_art_from_json.py msgid "Stance of Alacrity" -msgstr "" +msgstr "Postawa szybkości" #. ~ Description of buff 'Stance of Alacrity' for martial art '{'str': #. 'Diamond Mind'}' @@ -181145,10 +186684,13 @@ msgid "" "\n" "-10% move cost" msgstr "" +"Twój umysł jest bardziej jasny niż normalnie. Ta jasność pozwala ci poruszać się nieco szybciej w walce.\n" +"\n" +"-10% kosztu ruchu" #: lang/json/martial_art_from_json.py msgid "Pearl of Black Doubt" -msgstr "" +msgstr "Czarna perła wątpliwości" #. ~ Description of buff 'Pearl of Black Doubt' for martial art '{'str': #. 'Diamond Mind'}' @@ -181159,10 +186701,14 @@ msgid "" "+1 Dodge attempt\n" "Lasts 1 turn. Stacks 2 times" msgstr "" +"Każdy chybiony atak poddaje w wątpliwość umiejętności przeciwnika. Z każdym nieudanym atakiem staje się bardziej oczywiste, jak bardzo jesteś nietykalny.\n" +"\n" +"+1 próba uniku\n" +"Trwa 1 turę. Kumuluje się 2 razy" #: lang/json/martial_art_from_json.py msgid "Quicksilver Motion" -msgstr "" +msgstr "Srebrzysty ruch" #. ~ Description of buff 'Quicksilver Motion' for martial art '{'str': #. 'Diamond Mind'}' @@ -181173,10 +186719,14 @@ msgid "" "+50 Speed.\n" "Lasts 1 turn." msgstr "" +"Poświęcając chwilę na skupienie się, wybiegasz naprzód z niewiarygodną prędkością i działasz w mgnieniu oka.\n" +"\n" +"+50 szybkości.\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Mind over Body" -msgstr "" +msgstr "Umysł ponad ciałem" #. ~ Description of buff 'Mind over Body' for martial art '{'str': 'Diamond #. Mind'}' @@ -181187,10 +186737,14 @@ msgid "" "+1 Accuracy.\n" "Lasts 1 turn. Stacks 2 times" msgstr "" +"Twój dobrze wyszkolony umysł pozwala ci na krótki czas zniwelować skutki bólu podczas walki.\n" +"\n" +"+1 celności.\n" +"Trwa 1 turę. Kumuluje się 2 razy" #: lang/json/martial_art_from_json.py msgid "Hylian Swordsmanship" -msgstr "" +msgstr "Szermierka Hylian" #. ~ Description for martial art '{'str': 'Hylian Swordsmanship'}' #: lang/json/martial_art_from_json.py @@ -181200,21 +186754,25 @@ msgid "" "defense by using spins, jumps, and flips to confuse enemies and strike from " "unexpected angles." msgstr "" +"Ta rzadka forma walki była praktykowana przez wielu legendarnych bohaterów " +"na przestrzeni wieków. Szermierka Hylian sprzyja mobilności w ataku i " +"obronie, wykorzystując obroty, skoki i salta, aby zmylić przeciwników i " +"uderzyć z niespodziewanego kąta." #. ~ initiate message for martial art '{'str': 'Hylian Swordsmanship'}' #: lang/json/martial_art_from_json.py msgid "You begin to step lightly from side to side." -msgstr "" +msgstr "Zaczynasz lekko stąpać z boku na bok." #. ~ initiate message for martial art '{'str': 'Hylian Swordsmanship'}' #: lang/json/martial_art_from_json.py #, python-format msgid "%s begins to step lightly from side to side." -msgstr "" +msgstr "%s zaczyna lekko stąpać z boku na bok." #: lang/json/martial_art_from_json.py msgid "Combat Acrobat" -msgstr "" +msgstr "Bojowy akrobata" #. ~ Description of buff 'Combat Acrobat' for martial art '{'str': 'Hylian #. Swordsmanship'}' @@ -181224,10 +186782,13 @@ msgid "" "\n" "+1.0 Dodging skill." msgstr "" +"Zawsze stąpaj lekko na nogach. Lepiej jest zrobić unik niż zostać trafionym.\n" +"\n" +"+1.0 umiejętność uniku." #: lang/json/martial_art_from_json.py msgid "Intermediate Combat Acrobat" -msgstr "" +msgstr "Średniozaawansowany akrobata bojowy" #. ~ Description of buff 'Intermediate Combat Acrobat' for martial art #. '{'str': 'Hylian Swordsmanship'}' @@ -181237,10 +186798,13 @@ msgid "" "\n" "+1.0 Dodging skill." msgstr "" +"Po wielu ćwiczeniach masz jeszcze większą zwinność w walce.\n" +"\n" +"+1.0 umiejętności uniku." #: lang/json/martial_art_from_json.py msgid "Master Combat Acrobat" -msgstr "" +msgstr "Mistrzowski akrobata bojowy" #. ~ Description of buff 'Master Combat Acrobat' for martial art '{'str': #. 'Hylian Swordsmanship'}' @@ -181250,10 +186814,13 @@ msgid "" "\n" "+1.0 Dodging skill." msgstr "" +"Masz za sobą już tak wiele walk, że twoje umiejętności uniku są na najwyższym poziomie!\n" +"\n" +"+1.0 umiejętności uniku." #: lang/json/martial_art_from_json.py msgid "Dash Attack" -msgstr "" +msgstr "Atak z doskoku" #. ~ Description of buff 'Dash Attack' for martial art '{'str': 'Hylian #. Swordsmanship'}' @@ -181265,10 +186832,14 @@ msgid "" "+10% damage.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" +"Wykorzystując impet, pędzisz w kierunku wroga, by zadać mu potężne uderzenie.\n" +"\n" +"+10% obrażeń.\n" +"Trwa 1 turę. Kumuluje się 3 razy." #: lang/json/martial_art_from_json.py msgid "Flurry Rush" -msgstr "" +msgstr "Pęd wiatru" #. ~ Description of buff 'Flurry Rush' for martial art '{'str': 'Hylian #. Swordsmanship'}' @@ -181280,10 +186851,14 @@ msgid "" "-25% move cost.\n" "Lasts 1 turn." msgstr "" +"Kiedy perfekcyjnie unikniesz ataku, możesz przez krótki czas atakować błyskawicznie.\n" +"\n" +"Koszt ruchu -25%.\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Charge Up" -msgstr "" +msgstr "Naładowanie" #. ~ Description of buff 'Charge Up' for martial art '{'str': 'Hylian #. Swordsmanship'}' @@ -181295,10 +186870,14 @@ msgid "" "+20% damage, enables \"Spin Attack\" technique.\n" "Lasts 1 turn." msgstr "" +"Poświęcając chwilę na przygotowanie, możesz wyprowadzić silne, wirujące cięcie!\n" +"\n" +"+20% obrażeń, aktywuje technikę „atak z obrotu.\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Iron Heart" -msgstr "" +msgstr "Żelazne serce" #. ~ Description for martial art '{'str': 'Iron Heart'}' #: lang/json/martial_art_from_json.py @@ -181309,21 +186888,27 @@ msgid "" "to disable and dispatch opponents with superior skill and technique. Only " "the fool would attempt to fight an Iron Heart student head-on." msgstr "" +"Dyscyplina żelaznego serca jest nauką walki. Nic więcej, ale i nic mniej. " +"Uczniowie żelaznego serca ćwiczą bez końca, aby osiągnąć całkowite i " +"absolutne mistrzostwo w posługiwaniu się bronią. Użytkownicy żelaznego serca" +" są w stanie z łatwością obezwładnić i pokonać przeciwników dzięki " +"doskonałym umiejętnościom i technice. Tylko głupiec próbowałby walczyć z " +"uczniem żelaznego serca twarzą w twarz." #. ~ initiate message for martial art '{'str': 'Iron Heart'}' #: lang/json/martial_art_from_json.py msgid "You push away your fear and stand tall." -msgstr "" +msgstr "Odsuwasz od siebie strach i stajesz z podniesioną głową." #. ~ initiate message for martial art '{'str': 'Iron Heart'}' #: lang/json/martial_art_from_json.py #, python-format msgid "%s takes a bold and fearless stance." -msgstr "" +msgstr "%s przyjmuje odważną i nieustraszoną postawę." #: lang/json/martial_art_from_json.py msgid "Panzer Kunst" -msgstr "" +msgstr "Panzer Kunst" #. ~ Description for martial art '{'str': 'Panzer Kunst'}' #: lang/json/martial_art_from_json.py @@ -181331,21 +186916,23 @@ msgid "" "Panzer Kunst or \"Armor Art\" is a futuristic martial art devised for " "cyborgs fighting in zero-gravity environments." msgstr "" +"Panzer Kunst lub „pancerna sztuka” jest futurystyczną sztuką walki " +"opracowaną dla cyborgów walczących w środowisku zerowej grawitacji." #. ~ initiate message for martial art '{'str': 'Panzer Kunst'}' #: lang/json/martial_art_from_json.py msgid "You adopt a panzer kunst stance." -msgstr "" +msgstr "Przyjmujesz postawę Panzer Kunst." #. ~ initiate message for martial art '{'str': 'Panzer Kunst'}' #: lang/json/martial_art_from_json.py #, python-format msgid "%s adopts a panzer kunst stance." -msgstr "" +msgstr "%s przyjmuje postawę Panzer Kunst." #: lang/json/martial_art_from_json.py msgid "Schatten Folgen" -msgstr "" +msgstr "Schatten Folgen" #. ~ Description of buff 'Schatten Folgen' for martial art '{'str': 'Panzer #. Kunst'}' @@ -181355,26 +186942,55 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." msgstr "" +"„Śledzenie cienia”\n" +"Jako künstler, posiadasz wyszkolenie, by pozostać w martwym punkcie swojego celu.\n" +"\n" +"+1 próba uniku, umiejętność uniku zwiększona o 15% percepcji." #: lang/json/martial_art_from_json.py -msgid "Einzug Rüstungen" +msgid "Seinerweisen" +msgstr "Seinerweisen" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" +"„Osobista mądrość”\n" +"Dzięki swojemu opanowaniu Panzer Kunst posiadasz umiejętność manipulowania śmiercionośną plazmą we wszystkich swoich atakach!\n" +"\n" +"Zdobywa bonusowe elektryczne obrażenia równe 50% percepcji." + +#: lang/json/martial_art_from_json.py +msgid "Einzug Rüstungen" +msgstr "Einzug Rüstungen" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" +"„Penetracja pancerza”\n" +"Dostosowując się do rytmu przeciwnika, możesz uderzyć tam, gdzie jego garda jest najsłabsza.\n" +"\n" +"+1 celności, zdobywa penetrację pancerza równą 50% percepcji.\n" +"Trwa 3 tury." #: lang/json/martial_art_from_json.py msgid "Pokken" -msgstr "" +msgstr "Pokken" #. ~ Description for martial art '{'str': 'Pokken'}' #: lang/json/martial_art_from_json.py @@ -181385,21 +187001,27 @@ msgid "" "arts such as boxing and karate. Amazingly, it actually works. Some might " "even say it's a super effective way to fight." msgstr "" +"Pokken albo „Kieszonkowa pięść” to dziwna sztuka walki opracowana na " +"podstawie słynnej serii gier wideo Pokemon. W jakiś sposób grupie oddanych " +"fanów udało się połączyć ruchy używane przez różne pokemony z wieloma " +"istniejącymi sztukami walki, takimi jak boks i karate. O dziwo, to " +"faktycznie działa. Niektórzy mogą nawet powiedzieć, że to super skuteczny " +"sposób na walkę." #. ~ initiate message for martial art '{'str': 'Pokken'}' #: lang/json/martial_art_from_json.py msgid "You get ready to battle." -msgstr "" +msgstr "Przygotowujesz się do walki" #. ~ initiate message for martial art '{'str': 'Pokken'}' #: lang/json/martial_art_from_json.py #, python-format msgid "%s is about to challenge someone to a battle." -msgstr "" +msgstr "%s chce wyzwać kogoś do walki." #: lang/json/martial_art_from_json.py lang/json/widget_from_json.py msgid "Stamina" -msgstr "" +msgstr "Stamina" #. ~ Description of buff 'Stamina' for martial art '{'str': 'Pokken'}' #: lang/json/martial_art_from_json.py @@ -181410,10 +187032,14 @@ msgid "" "Gain bash, cut, stab armor equal to 50% of Strength.\n" "Lasts 3 turns." msgstr "" +"Zwiększa twoją obronę po otrzymaniu ciosu.\n" +"\n" +"Zyskujesz odporność na uderzenia, cięcia i dźgnięcia równą 50% wytrzymałości.\n" +"Trwa przez 3 tury." #: lang/json/martial_art_from_json.py msgid "Sniper" -msgstr "" +msgstr "Snajper" #. ~ Description of buff 'Sniper' for martial art '{'str': 'Pokken'}' #: lang/json/martial_art_from_json.py @@ -181424,10 +187050,14 @@ msgid "" "+50% damage.\n" "Lasts 1 turn." msgstr "" +"Wzmacnia twoje techniki po trafieniu krytycznym.\n" +"\n" +"+50% obrażeń.\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Moxie" -msgstr "" +msgstr "Moxie" #. ~ Description of buff 'Moxie' for martial art '{'str': 'Pokken'}' #: lang/json/martial_art_from_json.py @@ -181438,10 +187068,14 @@ msgid "" "+50% damage.\n" "Lasts 3 turns." msgstr "" +"Zwiększa twoje obrażenia po pokonaniu przeciwnika.\n" +"\n" +"+50% obrażeń.\n" +"Trwa 3 tury." #: lang/json/martial_art_from_json.py msgid "Setting Sun" -msgstr "" +msgstr "Zachodzące słońce" #. ~ Description for martial art '{'str': 'Setting Sun'}' #: lang/json/martial_art_from_json.py @@ -181451,21 +187085,43 @@ msgid "" " to fool their opponents and then turn their strength against them with a " "powerful throw." msgstr "" +"Dyscyplina zachodzącego słońca uczy swoich adeptów przekształcania przewagi " +"przeciwnika w jego niekorzyść. Uczniowie tej dyscypliny są w stanie oszukać " +"przeciwnika, a następnie obrócić jego siłę przeciwko niemu za pomocą " +"potężnego rzutu." #. ~ initiate message for martial art '{'str': 'Setting Sun'}' #: lang/json/martial_art_from_json.py msgid "You shift your weight and prepare to defend yourself." -msgstr "" +msgstr "Przenosisz punkt ciężkości i przygotowujesz się do obrony." #. ~ initiate message for martial art '{'str': 'Setting Sun'}' #: lang/json/martial_art_from_json.py #, python-format msgid "%s shifts their weight and assumes a new stance." +msgstr "%s przenosi punkt ciężkości i przygotowuje się do obrony." + +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "Pozorowana luka" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." msgstr "" +"Pozorując lukę w obronie, jesteś w stanie wytrącić przeciwnika z równowagi i działać szybciej przez krótki czas.\n" +"\n" +"+20 szybkości.\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Baffling Defense" -msgstr "" +msgstr "Zdumiewająca obrona" #. ~ Description of buff 'Baffling Defense' for martial art '{'str': 'Setting #. Sun'}' @@ -181475,26 +187131,35 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" +"Przygotowujesz się na atak przeciwnika, jednocześnie przygotowując się do wysłania go w powietrze!\n" +"\n" +"Umiejętność uników zwiększona o 20% inteligencji, włącza techniki „potężny rzut” oraz „rzut balisty”.\n" +"Trwa 2 tury." #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" -msgstr "" +msgid "Fool's Strike" +msgstr "Cios głupca" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" +"Poruszyłeś się w tak podstępny sposób, że obróciłeś atak przeciwnika przeciwko niemu.\n" +"\n" +"+20% obrażeń od uderzenia.\n" +"Trwa 2 tury." #: lang/json/martial_art_from_json.py msgid "Shii-Cho" -msgstr "" +msgstr "Shii-Cho" #. ~ Description for martial art '{'str': 'Shii-Cho'}' #: lang/json/martial_art_from_json.py @@ -181505,6 +187170,12 @@ msgid "" " understand the basics of armed combat. Shii-Cho excels at fighting against" " groups but lacks the offensive power of the other lightsaber forms." msgstr "" +"Shii-Cho, „droga Sarlaka”, była pierwszą formą walki mieczem świetlnym " +"opracowaną przez Jedi podczas ich przejścia z broni metalowej na miecze " +"świetlne. Shii-Cho jest uważana za formę treningową, której wszyscy Jedi " +"uczą się, by zrozumieć podstawy walki zbrojnej. Shii-Cho doskonale sprawdza " +"się w walce z grupami przeciwników, ale brakuje jej ofensywnej mocy innych " +"form miecza świetlnego." #. ~ initiate message for martial art '{'str': 'Shii-Cho'}' #: lang/json/martial_art_from_json.py @@ -181512,12 +187183,16 @@ msgid "" "You place one foot back and hold your weapon vertically on your dominant " "side." msgstr "" +"Jedną stopę stawiasz z tyłu i trzymasz broń pionowo po swojej dominującej " +"stronie." #. ~ initiate message for martial art '{'str': 'Shii-Cho'}' #: lang/json/martial_art_from_json.py #, python-format msgid "%s places one foot back and hold their weapon vertically." msgstr "" +"%s stawia jedną stopę z tyłu i trzyma broń pionowo po swojej dominującej " +"stronie." #. ~ Description of buff 'Determination' for martial art '{'str': 'Shii-Cho'}' #: lang/json/martial_art_from_json.py @@ -181527,10 +187202,13 @@ msgid "" "\n" "Blocked damage reduced by 100% of Strength, +1 Accuracy." msgstr "" +"Jesteś zdeterminowanym wojownikiem. Twój wewnętrzny spokój pomaga ci w wyprowadzaniu ciosów i obronie.\n" +"\n" +"Zablokowane obrażenia zmniejszone o 100% siły, +1 celności." #: lang/json/martial_art_from_json.py msgid "Apprentice Training" -msgstr "" +msgstr "Szkolenie ucznia" #. ~ Description of buff 'Apprentice Training' for martial art '{'str': 'Shii- #. Cho'}' @@ -181540,10 +187218,13 @@ msgid "" "\n" "+1 block attempts, +1 block effectiveness." msgstr "" +"Twój trening w Shii-Cho uczy cię jak walczyć z wieloma przeciwnikami.\n" +"\n" +"+1 próby blokowania, +1 skuteczności blokowania." #: lang/json/martial_art_from_json.py msgid "Knight Training" -msgstr "" +msgstr "Szkolenie rycerza" #. ~ Description of buff 'Knight Training' for martial art '{'str': 'Shii- #. Cho'}' @@ -181553,10 +187234,13 @@ msgid "" "\n" "+1 block attempts, +1 block effectiveness." msgstr "" +"Dalszy trening w Shii-Cho zwiększa twoją zdolność do walki z wieloma przeciwnikami.\n" +"\n" +"+1 próby blokowania, +1 skuteczność blokowania." #: lang/json/martial_art_from_json.py msgid "Master Training" -msgstr "" +msgstr "Szkolenie mistrza" #. ~ Description of buff 'Master Training' for martial art '{'str': 'Shii- #. Cho'}' @@ -181566,10 +187250,31 @@ msgid "" "\n" "+1 block attempts, +1 block effectiveness." msgstr "" +"Jako mistrz Shii-Cho, twoja zdolność do walki z grupami nie ma sobie równych.\n" +"\n" +"+1 próby blokowania, +1 skuteczności bloku." #: lang/json/martial_art_from_json.py -msgid "Stone Dragon" +msgid "Flowing Water" +msgstr "Płynąca woda" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." msgstr "" +"Jesteś w stanie odeprzeć atak i kontratakować w tym samym ruchu.\n" +"\n" +"Koszt ruchu -25%.\n" +"Trwa 1 turę." + +#: lang/json/martial_art_from_json.py +msgid "Stone Dragon" +msgstr "Kamienny smok" #. ~ Description for martial art '{'str': 'Stone Dragon'}' #: lang/json/martial_art_from_json.py @@ -181579,21 +187284,25 @@ msgid "" "powerful blow. By standing still for a moment, the user can fortify " "themselves with the power of stone." msgstr "" +"Siła, wytrzymałość i cierpliwość to kamienie węgielne dyscypliny Kamiennego " +"Smoka. Uczniowie Kamiennego Smoka uczą się kończyć bitwy jednym, potężnym " +"ciosem. Stojąc nieruchomo przez chwilę, użytkownik może wzmocnić się mocą " +"kamienia." #. ~ initiate message for martial art '{'str': 'Stone Dragon'}' #: lang/json/martial_art_from_json.py msgid "You dig your heels into the ground and steady yourself." -msgstr "" +msgstr "Wbijasz pięty w ziemię i stajesz stabilnie." #. ~ initiate message for martial art '{'str': 'Stone Dragon'}' #: lang/json/martial_art_from_json.py #, python-format msgid "%s digs their heels into the ground." -msgstr "" +msgstr "%s wbija pięty w ziemię i staje stabilnie." #: lang/json/martial_art_from_json.py msgid "Stone Bones" -msgstr "" +msgstr "Kamienne kości" #. ~ Description of buff 'Stone Bones' for martial art '{'str': 'Stone #. Dragon'}' @@ -181604,10 +187313,14 @@ msgid "" "+1 bash, cut, and stab armor.\n" "Lasts 1 turn. Stacks 5 times." msgstr "" +"Każdy atak na przeciwnika powoli wzmacnia twoją obronę.\n" +"\n" +"+1 do pancerza na uderzenia, cięcia i dźgnięcia.\n" +"Trwa 1 turę. Kumuluje się 5 razy." #: lang/json/martial_art_from_json.py msgid "Stonefoot Stance" -msgstr "" +msgstr "Postawa kamiennej stopy" #. ~ Description of buff 'Stonefoot Stance' for martial art '{'str': 'Stone #. Dragon'}' @@ -181618,10 +187331,13 @@ msgid "" "\n" "+10% damage, +2 bash, cut, and stab armor." msgstr "" +"Utrzymujesz stabilną postawę, która zwiększa twoją sprawność bojową. Jednak zbyt częste poruszanie się może przerwać twoją postawę.\n" +"\n" +"+10% obrażeń, +2 do pancerza na uderzenia, cięcia i dźgnięcia." #: lang/json/martial_art_from_json.py msgid "Cracked Stone" -msgstr "" +msgstr "Pęknięty kamień" #. ~ Description of buff 'Cracked Stone' for martial art '{'str': 'Stone #. Dragon'}' @@ -181632,10 +187348,14 @@ msgid "" "Enables \"Shattered Stone\" buff.\n" "Lasts 1 turn." msgstr "" +"Zbytnie poruszanie się spowoduje zanegowanie efektów postawy pewnej stopy. Nie ruszaj się, aby nie naruszyć swojej postawy!\n" +"\n" +"Włącza buff „roztrzaskany kamień”.\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Stattered Stone" -msgstr "" +msgstr "Strzaskany kamień" #. ~ Description of buff 'Stattered Stone' for martial art '{'str': 'Stone #. Dragon'}' @@ -181647,10 +187367,14 @@ msgid "" "-10% damage, -2 bash, cut, and stab armor.\n" "Lasts 4 turn." msgstr "" +"Nie jesteś w stanie utrzymać postawy pewnych stóp i musisz przestać się ruszać na krótki czas, aby odzyskać jej atuty.\n" +"\n" +"-10% obrażeń, -2 do pancerza na uderzenia, cięcia i dźgnięcia.\n" +"Trwa 4 tury." #: lang/json/martial_art_from_json.py msgid "Iron Bones" -msgstr "" +msgstr "Żelazne kości" #. ~ Description of buff 'Iron Bones' for martial art '{'str': 'Stone #. Dragon'}' @@ -181661,10 +187385,14 @@ msgid "" "+5 bash, cut, and stab armor.\n" "Lasts 1 turn." msgstr "" +"Dzięki potężnemu uderzeniu jeszcze bardziej wzmacniasz się przed kontratakami!\n" +"\n" +"+5 do pancerza na uderzenia, cięcia i dźgnięcia.\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Tiger Claw" -msgstr "" +msgstr "Tygrysi pazur" #. ~ Description for martial art '{'str': 'Tiger Claw'}' #: lang/json/martial_art_from_json.py @@ -181673,21 +187401,24 @@ msgid "" "Attacks from a Tiger Claw student are vicious and very few can stand against" " the might of a frenzied animal." msgstr "" +"Dyscyplina tygrysiego pazura uosabia wściekłość i siłę dzikiej bestii. Ataki" +" adepta tygrysiego pazura są okrutne i niewielu jest w stanie przeciwstawić " +"się potędze rozszalałego zwierzęcia." #. ~ initiate message for martial art '{'str': 'Tiger Claw'}' #: lang/json/martial_art_from_json.py msgid "You emit a low growl as you prepare for battle." -msgstr "" +msgstr "Wydajesz z siebie niskie warknięcie, przygotowując się do walki." #. ~ initiate message for martial art '{'str': 'Tiger Claw'}' #: lang/json/martial_art_from_json.py #, python-format msgid "%s hunkers down like a wild animal." -msgstr "" +msgstr "%s przyczaił się jak dzikie zwierzę." #: lang/json/martial_art_from_json.py msgid "Improved Critical" -msgstr "" +msgstr "Ulepszone krytyczne" #. ~ Description of buff 'Improved Critical' for martial art '{'str': 'Tiger #. Claw'}' @@ -181698,10 +187429,13 @@ msgid "" "\n" "+5% critical hit chance." msgstr "" +"Zawsze uderzaj z pełną siłą. Nigdy nie powstrzymuj się przed niczym, chyba że chcesz zginąć.\n" +"\n" +"+5% szansy na trafienie krytyczne." #: lang/json/martial_art_from_json.py msgid "Pounching Charge" -msgstr "" +msgstr "Szarża z wyskoku" #. ~ Description of buff 'Pounching Charge' for martial art '{'str': 'Tiger #. Claw'}' @@ -181713,10 +187447,14 @@ msgid "" "+2 Accuracy, +10% damage.\n" "Lasts 1 turn." msgstr "" +"Lekkomyślnie rzucasz się w wir walki, aby obezwładnić swoją ofiarę. Uderzaj na początku i uderzaj mocno.\n" +"\n" +"+2 celności, +10% obrażeń.\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Cornered Predator" -msgstr "" +msgstr "Drapieżnik w potrzasku" #. ~ Description of buff 'Cornered Predator' for martial art '{'str': 'Tiger #. Claw'}' @@ -181728,10 +187466,14 @@ msgid "" "-20% move cost.\n" "Lasts 1 turn." msgstr "" +"Osaczone zwierzę jest przerażającym i niebezpiecznym stworzeniem. Nie inaczej jest z tobą.\n" +"\n" +"-20% kosztu ruchu.\n" +"Trwa 1 turę." #: lang/json/martial_art_from_json.py msgid "Blood In The Water" -msgstr "" +msgstr "Krew w wodzie" #. ~ Description of buff 'Blood In The Water' for martial art '{'str': 'Tiger #. Claw'}' @@ -181743,10 +187485,14 @@ msgid "" "+1 Accuracy, +15% damage.\n" "Lasts 1 turn. Stacks 2 times." msgstr "" +"Zapach krwi jest blisko. Chcesz więcej. TERAZ!\n" +"\n" +"+1 celności, +15% obrażeń.\n" +"Trwa 1 turę. Kumuluje się 2 razy." #: lang/json/martial_art_from_json.py msgid "Prey on the Weak" -msgstr "" +msgstr "Żer na słabych" #. ~ Description of buff 'Prey on the Weak' for martial art '{'str': 'Tiger #. Claw'}' @@ -181757,6 +187503,10 @@ msgid "" "+30 Speed.\n" "Lasts 2 turns. Stacks 2 times" msgstr "" +"Zacząłeś przetrzebiać stado. Teraz powinno być łatwiej usunąć resztę.\n" +"\n" +"+30 szybkości.\n" +"Trwa 2 tury. Kumuluje się 2 razy" #: lang/json/martial_art_from_json.py msgid "Sojutsu" @@ -182422,7 +188172,7 @@ msgstr "landrynka" #: lang/json/mission_def_from_json.py msgid "Follow Sarcophagus Team" -msgstr "Podążaj za Zespołem Sarkofagu" +msgstr "Podążaj za zespołem sarkofagu" #: lang/json/mission_def_from_json.py msgid "You wouldn't believe what I found…" @@ -182441,20 +188191,20 @@ msgid "" msgstr "" "Święte nieba, wrak z którego odzyskałeś czarną skrzynkę nie był tak stary " "jak myślałem. Patrz na to, był na kursie przechwytującym by zabrać zespół " -"wysłany do zabezpieczenia i zniszczenia czegoś nazwanego \"Sarkofagiem " -"Niebezpiecznych Odpadów\" pośrodku niczego. Jeżeli śmigło nie zdołało zabrać" -" drużyny to mamy wciąż szansę spotkać się z nimi. Jest tu kod dostępu do " +"wysłany do zabezpieczenia i zniszczenia czegoś nazwanego „sarkofagiem " +"niebezpiecznych odpadów” pośrodku niczego. Jeżeli śmigło nie zdołało zabrać " +"drużyny to mamy wciąż szansę spotkać się z nimi. Jest tu kod dostępu do " "windy i zaszyfrowana wiadomość dla przywódcy, jak sądzę. Jak chcemy dołączyć" " do tej resztki rządu to teram mamy jedyną szansę." #: lang/json/mission_def_from_json.py msgid "Fuck ya, America!" -msgstr "Kurwa tak, Ameryka!" +msgstr "Ameryka, kurwa!" #: lang/json/mission_def_from_json.py msgid "" "Are you going to forfeit your duty when the country needs you the most?" -msgstr "Zamierzać porzucić służbę gdy kraj najbardziej cię potrzebuje?" +msgstr "Zamierzasz porzucić służbę, gdy kraj najbardziej cię potrzebuje?" #: lang/json/mission_def_from_json.py msgid "" @@ -182468,11 +188218,11 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Having any trouble following the map? Remember to search underground." -msgstr "" +msgstr "Masz problem z podążaniem za mapą? Pamiętaj, aby szukać pod ziemią." #: lang/json/mission_def_from_json.py msgid "Maybe these things are what remains of the team we were searching for…" -msgstr "" +msgstr "Może te rzeczy są tym, co pozostało z zespołu, którego szukaliśmy..." #: lang/json/mission_def_from_json.py msgid "What?! I out'ta whip your ass." @@ -182484,7 +188234,7 @@ msgstr "Cholera, byliśmy tak blisko." #: lang/json/mission_def_from_json.py msgid "Find Inhaler" -msgstr "Znajdź Inhalator" +msgstr "Znajdź inhalator" #: lang/json/mission_def_from_json.py msgid "I'm… short… of breath…" @@ -182529,7 +188279,7 @@ msgstr "Jakim cudem jeszcze żyję?!" #: lang/json/mission_def_from_json.py msgid "Find Antibiotics" -msgstr "Znajdź Antybiotyki" +msgstr "Znajdź antybiotyki" #: lang/json/mission_def_from_json.py msgid "This infection is bad, bad…" @@ -182553,7 +188303,7 @@ msgstr "Znalazłeś antybiotyki?" #: lang/json/mission_def_from_json.py msgid "Retrieve Military Black Box" -msgstr "Odzyskaj Wojskową Czarną Skrzynkę" +msgstr "Odzyskaj wojskową czarną skrzynkę" #: lang/json/mission_def_from_json.py msgid "We've got the flag, now we need to locate US forces." @@ -182604,7 +188354,7 @@ msgstr "Cholera, muszę sam ją znaleźć." #: lang/json/mission_def_from_json.py msgid "Retrieve Black Box Transcript" -msgstr "Uzyskaj Transkrypcję Czarnej Skrzynki" +msgstr "Uzyskaj transkrypcję czarnej skrzynki" #: lang/json/mission_def_from_json.py msgid "With the black box in hand, we need to find a lab." @@ -182650,7 +188400,7 @@ msgstr "Cholera, muszę znaleźć jakiegoś jajogłowego żeby złamał ten term #: lang/json/mission_def_from_json.py msgid "Find Deputy Badge" -msgstr "Znajdź Odznakę Zastępcy Szeryfa" +msgstr "Znajdź odznakę zastępcy szeryfa" #: lang/json/mission_def_from_json.py msgid "Those twisted snakes…" @@ -182689,7 +188439,7 @@ msgstr "Poszczęściło się?" #: lang/json/mission_def_from_json.py msgid "Great work, Deputy. We're in business." -msgstr "Doskonale Zastępco. Jesteśmy w grze." +msgstr "Doskonale, zastępco. Jesteśmy w grze." #: lang/json/mission_def_from_json.py msgid "Thanks for trying… I guess." @@ -182701,7 +188451,7 @@ msgstr "Dzień sądu nadejdzie dla kryminalistów, jeżeli już nie nastał." #: lang/json/mission_def_from_json.py msgid "Find Flag" -msgstr "Znajdź Flagę" +msgstr "Znajdź flagę" #: lang/json/mission_def_from_json.py msgid "Does our flag still yet wave?" @@ -182745,7 +188495,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Find Corporate Accounts" -msgstr "Znajdź Księgi Rachunkowe Korporacji" +msgstr "Znajdź księgi rachunkowe korporacji" #: lang/json/mission_def_from_json.py msgid "" @@ -182794,7 +188544,7 @@ msgstr "Dzień sądu nadejdzie dla korporacji, jeżeli już nie nastał." #: lang/json/mission_def_from_json.py msgid "Find Patient Records" -msgstr "Znajdź Akta Pacjentów" +msgstr "Znajdź akta pacjentów" #: lang/json/mission_def_from_json.py msgid "I hope I don't see many names I know…" @@ -182838,7 +188588,7 @@ msgstr "Założę się że kilku z nich jeszcze gdzieś tam jest…" #: lang/json/mission_def_from_json.py msgid "Find Weather Log" -msgstr "Znajdź Log Pogodowy" +msgstr "Znajdź rejestr pogodowy" #: lang/json/mission_def_from_json.py msgid "I wonder if a retreat might exist…" @@ -182886,7 +188636,7 @@ msgstr "Gdybyśmy znaleźli jakąś wielką dolinę lub coś podobnego." #: lang/json/mission_def_from_json.py msgid "Find Relic" -msgstr "Odnajdź Relikt" +msgstr "Odnajdź relikt" #: lang/json/mission_def_from_json.py msgid "St. Michael the archangel defend me in battle…" @@ -182937,7 +188687,7 @@ msgstr "To i tak była przegrana sprawa…" #: lang/json/mission_def_from_json.py msgid "Retrieve Deposit Box" -msgstr "Odzyskaj Skrzynkę Depozytową" +msgstr "Odzyskaj skrzynkę depozytową" #: lang/json/mission_def_from_json.py msgid "" @@ -182982,7 +188732,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Retrieve Software" -msgstr "Odzyskaj Oprogramowanie" +msgstr "Odzyskaj oprogramowanie" #: lang/json/mission_def_from_json.py msgid "Oh man, I can't believe I forgot to download it…" @@ -183002,7 +188752,7 @@ msgstr "Serio? To proste zadanie…" #: lang/json/mission_def_from_json.py msgid "Take this USB drive. Use the console, and download the software." -msgstr "Weź ten USB. Użyj konsoli, i ściągnij oprogramowanie." +msgstr "Weź ten USB. Użyj konsoli i ściągnij oprogramowanie." #: lang/json/mission_def_from_json.py msgid "So, do you have my software yet?" @@ -183018,7 +188768,7 @@ msgstr "Wow, spartaczyłeś? Cała praca poszła w las…" #: lang/json/mission_def_from_json.py msgid "Analyze Zombie Blood" -msgstr "Analizuj Krew Zombie" +msgstr "Analizuj krew zombie" #: lang/json/mission_def_from_json.py msgid "It could be very informative to perform an analysis of zombie blood…" @@ -183029,8 +188779,8 @@ msgid "" "I need someone to get a sample of zombie blood, take it to a hospital, and " "perform a centrifuge analysis of it." msgstr "" -"Potrzebuję kogoś do pobrania próbki krwi zombie, zabrania jej do szpitala, i" -" przeprowadzenia analizy w wirówce." +"Potrzebuję kogoś do pobrania próbki krwi zombie, zabrania jej do szpitala i " +"przeprowadzenia analizy w wirówce." #: lang/json/mission_def_from_json.py msgid "" @@ -183051,7 +188801,7 @@ msgid "" "The centrifuge is a bit technical; you might want to study up on the usage " "of computers before completing that part." msgstr "" -"Centryfuga to kawał zaawansowanej techniki; może poczytaj co nieco o " +"Wirówka to kawał zaawansowanej techniki; może poczytaj co nieco o " "komputerach zanim się za to zabierzesz." #: lang/json/mission_def_from_json.py @@ -183064,7 +188814,7 @@ msgstr "Doskonale! To może być klucz do zwalczenia infekcji." #: lang/json/mission_def_from_json.py msgid "Wait, you couldn't possibly have the data! Liar!" -msgstr "Czekaj, to niemożliwe żebyś miał te dane! Oszust!" +msgstr "Czekaj, to niemożliwe, żebyś miał te dane! Oszust!" #: lang/json/mission_def_from_json.py msgid "What a shame, that data could have proved invaluable…" @@ -183072,7 +188822,7 @@ msgstr "Wielka szkoda, te dane mogły być bezcenne…" #: lang/json/mission_def_from_json.py msgid "Investigate Cult" -msgstr "Śledź Kult" +msgstr "Śledź kult" #: lang/json/mission_def_from_json.py msgid "" @@ -183115,7 +188865,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "I'm positive there is something there… there has to be, any luck?" -msgstr "Jestem pewien, że coś tam jest… musi tam być, jak ci poszło?" +msgstr "Mam pewność, że coś tam jest… musi tam być, jak ci poszło?" #: lang/json/mission_def_from_json.py msgid "" @@ -183131,7 +188881,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Prison Visionary" -msgstr "Uwięziony Wizjoner" +msgstr "Uwięziony wizjoner" #: lang/json/mission_def_from_json.py msgid "" @@ -183238,7 +188988,7 @@ msgstr "Rezygnujesz tak szybko?" #: lang/json/mission_def_from_json.py msgid "Kill 100 Zombies" -msgstr "Zabij 100 Zombie" +msgstr "Zabij 100 zombie" #: lang/json/mission_def_from_json.py msgid "You seem to know this new world better than most…" @@ -183355,7 +189105,7 @@ msgstr "Nie sądzę żebyśmy go jeszcze dorwali." msgid "Kill your pursuer" msgstr "Zabij swego prześladowcę" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -183368,7 +189118,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Kill Jabberwock" -msgstr "Zabij Żaberzwłoka" +msgstr "Zabij żaberzwłoka" #: lang/json/mission_def_from_json.py msgid "" @@ -183432,7 +189182,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Kill Zombie Mom" -msgstr "Zabij Mamę Zombie" +msgstr "Zabij mamę zombie" #: lang/json/mission_def_from_json.py msgid "Oh god, I can't believe it happened…" @@ -183478,7 +189228,7 @@ msgstr "Pusta misja" #: lang/json/mission_def_from_json.py msgid "Reach Farm House" -msgstr "Idź do Domu na Farmie" +msgstr "Idź do domu na farmie" #: lang/json/mission_def_from_json.py msgid "I just need a place to start over…" @@ -183580,7 +189330,7 @@ msgstr "Cóż. To jednak nie był tak dobry pomysł jak myślałem." #: lang/json/mission_def_from_json.py msgid "Reach Safety" -msgstr "Idź w Bezpieczne Miejsce" +msgstr "Idź w bezpieczne miejsce" #: lang/json/mission_def_from_json.py msgid "Reach The Mansion And Finish This Delivery" @@ -183590,7 +189340,7 @@ msgstr "Dostań się do rezydencji i dokończ tę dostawę" msgid "Refuel your helicopter." msgstr "Zatankuj swój helikopter." -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -183601,7 +189351,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Recover Priest's Diary" -msgstr "Odzyskaj Dziennik Kapłana" +msgstr "Odzyskaj dziennik kapłana" #: lang/json/mission_def_from_json.py msgid "" @@ -183631,7 +189381,7 @@ msgstr "Dzięki, ten dziennik to właście coś czego szukałem." #: lang/json/mission_def_from_json.py msgid "Recruit Tracker" -msgstr "Zatrudnij Łowcę" +msgstr "Zatrudnij łowcę" #: lang/json/mission_def_from_json.py msgid "" @@ -183678,7 +189428,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Find Lost Dog" -msgstr "Znajdź Zgubionego Psa" +msgstr "Znajdź zgubionego psa" #: lang/json/mission_def_from_json.py msgid "Oh, my poor puppy…" @@ -183767,7 +189517,7 @@ msgstr "Straszne gówno. Zdarza się." #: lang/json/mission_def_from_json.py msgid "Find Antibiotics Before You Die!" -msgstr "Znajdź Antybiotyki Zanim Umrzesz!" +msgstr "Znajdź antybiotyki zanim umrzesz!" #: lang/json/mission_def_from_json.py msgid "Prove your worth to Foodperson" @@ -183819,7 +189569,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Well… where are they?" -msgstr "No wiec... gdzie one są?" +msgstr "No więc… gdzie one są?" #: lang/json/mission_def_from_json.py msgid "I'm so disappointed in you kid…" @@ -183827,9 +189577,9 @@ msgstr "Zawiodłem się na tobie dzieciaku..." #: lang/json/mission_def_from_json.py msgid "Prove You're A Survivor" -msgstr "Dowiedź Że Jesteś Ocalonym" +msgstr "Dowiedź, że jesteś ocalonym" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -183899,8 +189649,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "Nazbieraj pałki wodnej by zrobić żel z pałki wodnej" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -183910,7 +189659,7 @@ msgid "" "bag as well." msgstr "" "Zbierz 80 pałek wodnych z moczarów i przynieś je z" -" powrotem by nauczyć się jak tworzyć żel z pałki " +" powrotem, by nauczyć się jak tworzyć żel z pałki " "wodnej. Podnieś umiejętność przetrwania do co " "najmniej 1 przez zbieranie pałki wodnej. Przynieś " "też z powrotem daną ci torbę." @@ -184030,14 +189779,14 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Wow, you failed? How…" -msgstr "Wow, zawiodłeś? Niby jak..." +msgstr "Wow, zawiodłeś? Niby jak…" #: lang/json/mission_def_from_json.py msgid "" "Brigitte LaCroix asked you to collect clean, untainted bones in order to " "better understand her beliefs. 8 bones should be sufficient." msgstr "" -"Brigitte LaCroix poprosiła Cię o zebranie czystych, nieskażonych kości, aby " +"Brigitte LaCroix poprosiła cię o zebranie czystych, nieskażonych kości, aby " "lepiej zrozumieć jej wierzenia. 8 kości powinno wystarczyć." #: lang/json/mission_def_from_json.py @@ -184100,7 +189849,7 @@ msgstr "A więc spróbujesz ponownie, aż usłyszysz." msgid "Protect fisherman's daughter" msgstr "Chroń córkę rybaka" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "Wygląda na miłą dziewczynę. Może nie powinieneś pozwolić jej umrzeć?" @@ -184112,9 +189861,9 @@ msgstr "-" #: lang/json/mission_def_from_json.py msgid "Lighthouse" -msgstr "Latarnia Morska" +msgstr "Latarnia morska" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "Zaprowadź Michaiła do latarni morskiej." @@ -184160,7 +189909,7 @@ msgstr "Wygląda nieźle, . Teraz muszę jakoś oczyścić ją z with Mikhail." msgstr "Oczyść latarnię z z Michaiłem." @@ -184202,7 +189951,7 @@ msgstr "Świetnie, dobrze. Pozostaje tylko umyć podłogi." msgid "Fisherman's family" msgstr "Rodzina rybaka" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "Mikhail poprosił cię o sprowadzenie jego rodziny." @@ -184241,7 +189990,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "Łódź rybaka" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "Pomóż Michaiłowi zbudować łódź. Przynieś 250 gwoździ." @@ -184295,7 +190044,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "Naprawa latarni" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -184349,16 +190098,53 @@ msgstr "Znamienicie, ! Teraz już tylko pozostaje czekać..." msgid "Protect fisherman's wife" msgstr "Chroń żonę rybaka" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "Wygląda na miłą kobietę. Może nie powinieneś pozwolić jej umrzeć?" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "Przynieś 6L anestetyku do Rubika" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" +"Jeźli przidōmy dlŏ wŏs metal i plastik, bydymy potrzebowali dwōch krauz z " +"tymi nie-czulyniami, jedyn na wasze miynso do myślyniŏ, a drugi na nasze " +"foranty." + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "Szczęście króla!" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "To je ôbiōr i możesz go dokōnać. Wrōć do tego, jeźli chcesz." + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "Wybadejcie zale ôperacyjne i take tam, jŏ bych to zrobiōł." + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "Czekōmy zetrwale na te zestŏwy." + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "Szumnie i szumle. Mogymy jy przekŏzać, kedy zechcesz." + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "Świetnie i pięknie. Wróć do tego, jeśli chcesz spróbować jeszcze raz." + #: lang/json/mission_def_from_json.py msgid "Picky Meals" -msgstr "Wybredne Posiłki" +msgstr "Wybredne posiłki" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "Znajdź 100 soli." @@ -184410,9 +190196,9 @@ msgstr "Nie martw się o to, nie jest aż tak ważna." #: lang/json/mission_def_from_json.py msgid "Pickled Meals" -msgstr "Peklowane Posiłki" +msgstr "Peklowane posiłki" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "Znajdź 5 szklanych słoi." @@ -184470,9 +190256,9 @@ msgstr "To nic wielkiego, to nie jest aż tak pilne." #: lang/json/mission_def_from_json.py msgid "Prickled Meals" -msgstr "Ostre Posiłki" +msgstr "Ostre posiłki" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "Znajdź nóż rzeźniczy." @@ -184517,9 +190303,9 @@ msgstr "Jestem wdzięczny za pomoc, którą mi okazałeś." #: lang/json/mission_def_from_json.py msgid "Busy While Work" -msgstr "Zajęty Podczas Pracy" +msgstr "Zajęty podczas pracy" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "Znajdź 3 powieści detektywistyczne." @@ -184573,7 +190359,7 @@ msgstr "Dobra. Mogę poczytać coś innego." msgid "Timber!" msgstr "Uwaga, drzewo!" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "Przynieś pięć kłód." @@ -184602,7 +190388,7 @@ msgstr "Jak tam poszukiwania? Masz je?" msgid "Sweets" msgstr "Słodycze" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "Znajdź 25 jeżyn." @@ -184637,9 +190423,9 @@ msgstr "Dzięki za pomoc. Oto twoja nagroda." #: lang/json/mission_def_from_json.py msgid "Visit the Isherwoods" -msgstr "Wizyta u Isherwood'ów" +msgstr "Wizyta u Isherwoodów" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -184666,11 +190452,11 @@ msgstr "Przynajmniej uszedłeś z życiem." #: lang/json/mission_def_from_json.py msgid "Obtain a Remington 870 express shotgun" -msgstr "Zdobądź strzelbę Remington 870 express" +msgstr "Zdobądź strzelbę Remington 870 Express" #: lang/json/mission_def_from_json.py msgid "Well, now that you mention it…" -msgstr "Skoro już o tym wspomniałeś..." +msgstr "Skoro już o tym wspominasz…" #: lang/json/mission_def_from_json.py msgid "" @@ -184744,7 +190530,7 @@ msgstr "Dziękuję, myślałem, że już po mnie." #: lang/json/mission_def_from_json.py msgid "Please god no!" -msgstr "\"Boże proszę, nie.\"" +msgstr "Boże proszę, nie!" #: lang/json/mission_def_from_json.py msgid "We shouldn't stay here too long, more might show up." @@ -184904,8 +190690,8 @@ msgid "" "and ready for you to move in if you want to stay." msgstr "" "Jest wyższa niż zapamiętałem, powinniśmy poszukać więźniów. Zostawiłem notkę" -" dla mojej rodziny, zanim wyruszyliśmy. Jeśli przeżyjemy, chata powinna być " -"już naprawiona i gotowa do zamieszkania, jeśli chcesz zostać." +" dla mojej rodziny, zanim wyruszyliśmy. Jeśli przeżyjemy, domek powinien być" +" już naprawiony i gotowy do zamieszkania, jeśli chcesz zostać." #: lang/json/mission_def_from_json.py msgid "Well it was here…" @@ -185171,7 +190957,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Thank you. It's important to preserve foods while we can." -msgstr "Dziękuję. To ważne żebyśmy mogli zakonserwować żywność puki możemy." +msgstr "Dziękuję. To ważne żebyśmy mogli zakonserwować żywność póki możemy." #: lang/json/mission_def_from_json.py msgid "Oh well. I'll see if I can find another way, thanks." @@ -185188,7 +190974,7 @@ msgstr "Wow, doskonale. Dzięki. Oto twoja nagroda." #: lang/json/mission_def_from_json.py msgid "I wonder where all the jars went…" -msgstr "Ciekawe gdzie się podziały wszystkie słoiki..." +msgstr "Ciekawe gdzie się podziały wszystkie słoiki…" #: lang/json/mission_def_from_json.py msgid "Find 100 wheat seeds" @@ -185209,7 +190995,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Thank you. It's important to preserve healthy foods while we can." msgstr "" -"Dziękuję. To ważne żebyśmy mogli zabezpieczyć zdrową żywność puki możemy." +"Dziękuję. To ważne żebyśmy mogli zabezpieczyć zdrową żywność póki możemy." #: lang/json/mission_def_from_json.py msgid "Oh well. I'll see if I can find another supplier, thanks." @@ -185297,7 +191083,7 @@ msgstr "Steve" #: lang/json/mission_def_from_json.py msgid "Find The Art of Glassblowing book" -msgstr "Znajdź książkę Sztuka Dmuchania Szkła" +msgstr "Znajdź książkę „Sztuka dmuchania szkła”" #: lang/json/mission_def_from_json.py msgid "I need more knowledge to get the glass blowing started." @@ -185333,7 +191119,7 @@ msgstr "Doceniam to, to bardzo ułatwi mi życie." #: lang/json/mission_def_from_json.py msgid "I don't see a book…?" -msgstr "Nie widzę książki...?" +msgstr "Nie widzę książki…?" #: lang/json/mission_def_from_json.py msgid "At least you escaped with your life…" @@ -185341,7 +191127,7 @@ msgstr "Przynajmniej uszedłeś z życiem." #: lang/json/mission_def_from_json.py msgid "Find a copy of DIY Compendium" -msgstr "Znajdź kopię Kompendium Zrób To Sam" +msgstr "Znajdź kopię „Kompendium zrób to sam”" #: lang/json/mission_def_from_json.py msgid "I need more knowledge to get better pottery." @@ -185363,11 +191149,11 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Get The Thing from the chief's office" -msgstr "Zabierz \"Rzecz\" z biura szefa." +msgstr "Zabierz „rzecz” z biura szefa." #: lang/json/mission_def_from_json.py msgid "Here's the job…" -msgstr "Jest taka robota..." +msgstr "Jest taka robota…" #: lang/json/mission_def_from_json.py msgid "" @@ -185425,7 +191211,7 @@ msgstr "Jesteś bezużyteczny. Powinienem był cię zabić, kiedy cię poznałem #: lang/json/mission_def_from_json.py msgid "Locate Commo Team" -msgstr "Zlokalizuj Zespół Komunikacyjny" +msgstr "Zlokalizuj zespół komunikacyjny" #: lang/json/mission_def_from_json.py msgid "We need help…" @@ -185470,7 +191256,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Cull Nightmares" -msgstr "Odstrzał Koszmarów" +msgstr "Odstrzał koszmarów" #: lang/json/mission_def_from_json.py msgid "" @@ -185502,7 +191288,7 @@ msgstr "Jak łowy?" #: lang/json/mission_def_from_json.py msgid "Fabricate Repeater Mod" -msgstr "Wytwórz Mod Powtarzacz" +msgstr "Wytwórz mod wzmacniaka" #: lang/json/mission_def_from_json.py msgid "" @@ -185634,7 +191420,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "I'll be standing by." -msgstr "Będę gotowy." +msgstr "Będę w gotowości." #: lang/json/mission_def_from_json.py msgid "" @@ -185655,7 +191441,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "Gniewny mistrz pizzy" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -185681,11 +191467,11 @@ msgid "" msgstr "" "Dobrze. Chodźmy do jego restauracji spalmy ją! A tak przy okazji, " ", czy mógłbyś wziąć ze sobą benzynę? Byłem tak zły, że zapomniałem " -"jej wziąć ze sobą..." +"jej wziąć ze sobą…" #: lang/json/mission_def_from_json.py msgid "What?! Why do you… ah, forget it." -msgstr "Co?! Dlaczego ty... ah, zapomnij o tym." +msgstr "Co?! Dlaczego ty… ach, zapomnij o tym." #: lang/json/mission_def_from_json.py msgid "" @@ -185700,7 +191486,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "Znajdź TrueFoodperson" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "Pomóż mistrzowi pizzy znaleźć TrueFoodperson i skopać mu tyłek." @@ -185746,7 +191532,7 @@ msgstr "Kolejny gryzie piach! Dobrze nam poszło, ." msgid "Pizza parlor" msgstr "Pizzeria" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "Pomóż mistrzowi pizzy odzyskać jego restaurację." @@ -185793,7 +191579,7 @@ msgstr "" msgid "Family house" msgstr "Dom rodzinny" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -185829,7 +191615,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "Znajdź złom dla meteorologa" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "Meteorolog poprosił o przyniesienie mu 50 kawałków złomu." @@ -185892,7 +191678,7 @@ msgstr "Czemu tak mówisz?" msgid "Find batteries for the meteorologist" msgstr "Znajdź baterie dla meteorologa" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "Meteorolog poprosił o przyniesienie mu 6 średnich baterii." @@ -185927,7 +191713,7 @@ msgstr "Świetnie, no to kontynuuję nad nim pracę..." msgid "Find lens_small 5" msgstr "Znajdź małe soczewki wysokiej jakości" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -185961,7 +191747,7 @@ msgstr "Świetnie, no to kontynuuję nad nim pracę..." msgid "Find radiocontrol" msgstr "Znajdź sterowanie radiowe" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "Meteorolog poprosił o przyniesienie mu radiowy sterownik." @@ -185998,7 +191784,7 @@ msgstr "" msgid "Find crashed drone" msgstr "Znajdź rozbitego drona" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "Meteorolog poprosił o przyniesienie mu jego rozbitego drona." @@ -186017,8 +191803,8 @@ msgid "" msgstr "" "Cieszę się, że żyjesz i że o mnie nie zapomniałeś. Dron okazał się świetny, " "udało mu się wystartować i nawet był w stanie przelecieć kilkaset metrów! " -"Niestety, potem straciłem nad nim kontrolę... Nie wiem jednak, co się z nim " -"stało. Może mógłbyś sprawdzić? Trochę się boję tam wychodzić..." +"Niestety, potem straciłem nad nim kontrolę… Nie wiem jednak, co się z nim " +"stało. Może mógłbyś sprawdzić? Trochę się boję tam wychodzić…" #: lang/json/mission_def_from_json.py msgid "" @@ -186037,14 +191823,14 @@ msgid "" "s are everywhere…" msgstr "" "Hmm, widzę, że drona nie ma z tobą. Może chociaż moduł pamięci pozostał? " -"Dobrze, pokaż mi go... hmm, sytuacja jest gorsza niż się spodziewałem, dużo," -" dużo gorsza... Nie czuję się dobrze. Nie czuję się już bezpiecznie w tym " +"Dobrze, pokaż mi go… hmm, sytuacja jest gorsza niż się spodziewałem, dużo, " +"dużo gorsza… Nie czuję się dobrze. Nie czuję się już bezpiecznie w tym " "miejscu. Muszę uciekać, uciekać gdzieś. Ale gdzie uciekać, skoro te " -" są wszędzie..." +" są wszędzie…" #: lang/json/mission_def_from_json.py msgid "Reach Refugee Center" -msgstr "Idź do Centrum Uchodźców" +msgstr "Idź do centrum uchodźców" #: lang/json/mission_def_from_json.py msgid "Bring 40 small cardboard boxes" @@ -186329,8 +192115,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "Znajdź kogoś, kto posprząta tylne zaplecze." -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -186763,9 +192548,9 @@ msgid "" "good one together." msgstr "" "To musi być dobry, solidny zbiornik, jak duża butla z propanem lub coś w tym" -" stylu... możesz rozejrzeć się za zbiornikami na paliwo, itp., o ile są dość" -" wytrzymałe. Kurczę, jak weźmiesz trochę blachy to może sam zespawasz z niej" -" coś przyzwoitego." +" stylu… możesz rozejrzeć się za zbiornikami na paliwo, itp., o ile są dość " +"wytrzymałe. Kurczę, jak weźmiesz trochę blachy to może sam zespawasz z niej " +"coś przyzwoitego." #: lang/json/mission_def_from_json.py msgid "Any sign of a tank I can use?" @@ -186838,7 +192623,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "Znajdź 50 dawek antyseptyków" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -186892,7 +192677,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "Znajdź 30 bandaży" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -186928,20 +192713,20 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Find 6 bottles of Prozac" -msgstr "Znajdź 6 butelek Prozac'u" +msgstr "Znajdź 6 butelek Prozacu" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " "for Merch." msgstr "" -"Znajdź 6 butelek Prozac'u dla Uyen Trana w ośrodku dla uchodźców, w zamian " -"za kuponów." +"Znajdź 6 butelek Prozacu dla Uyen Trana w ośrodku dla uchodźców, w zamian za" +" kuponów." #: lang/json/mission_def_from_json.py msgid "We could still use your help…" -msgstr "Nadal przydałaby się nam twa pomoc..." +msgstr "Nadal przydałaby się nam twa pomoc…" #: lang/json/mission_def_from_json.py msgid "" @@ -187036,9 +192821,9 @@ msgstr "Serio? Nie znalazłeś *nożyczek*? Jak ty wiążesz buty z rana?" #: lang/json/mission_def_from_json.py msgid "In a Pickle Pt. 2" -msgstr "Kiszeniaki, Rozdział 2" +msgstr "Kiszeniaki, rozdział 2" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -187088,7 +192873,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "Fajki, no dalej." -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -187137,9 +192922,9 @@ msgstr "Dziękuję! Nie zapomnę szepnąć kilku miłych słów o tobie w centru #: lang/json/mission_def_from_json.py msgid "Clear Back Bay" -msgstr "Oczyść Boczną Zatokę" +msgstr "Oczyść boczną zatokę" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -187202,9 +192987,9 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Missing Caravan" -msgstr "Zaginiona Karawana" +msgstr "Zaginiona karawana" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -187262,9 +193047,9 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Retrieve Prospectus" -msgstr "Odzyskaj Prospekt" +msgstr "Odzyskaj prospekt" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -187317,9 +193102,9 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Solar Power" -msgstr "Zasilanie Słoneczne" +msgstr "Zasilanie słoneczne" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -187370,7 +193155,7 @@ msgstr "" msgid "In a Pickle" msgstr "Kiszeniaki" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -187433,9 +193218,9 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Unknown Recipient" -msgstr "Adresat Nieznany" +msgstr "Adresat nieznany" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -187448,6 +193233,71 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "Czy dostawa już doszła do skutku?" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "Sprawdź tę farmę" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" +"Wpadłem na grupę farmerów. Nie chcą mieć wiele wspólnego z naszymi " +"karawanami, ale kogoś takiego jak ty mogą tolerować." + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "Nieźle." + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "Brzmi rozsądnie." + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "Uważaj. Tam nie ma lekko." + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "Hę, bądź tu mądry." + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "Jest jak jest." + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" +"Krążyły plotki. Ludzie gadali o jakimś tajnym laboratorium na odludziu, w " +"którym są ocalali." + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "Sprawdźcie ten zamek ze złomu" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" +"Kilka z moich karawan wróciło opowiadając o tym gigantycznym metalowym zamku" +" na szczycie skały, w środku pustkowia. Nie byli na tyle szaleni, żeby to " +"sprawdzić, ale ty możesz, jeśli chcesz." + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "To twój pogrzeb." + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "Bądź ostrożny. Wygląda mi to na niebezpieczne miejsce." + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -187468,7 +193318,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Download Workstation Data" -msgstr "Pobierz Dane Stacji Roboczej" +msgstr "Pobierz dane stacji roboczej" #: lang/json/mission_def_from_json.py msgid "" @@ -187516,7 +193366,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Download Encryption Codes" -msgstr "Ściągnij Klucze Szyfrujące" +msgstr "Ściągnij klucze szyfrujące" #: lang/json/mission_def_from_json.py msgid "" @@ -187557,7 +193407,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Download Research Archives" -msgstr "Ściągnij Archiwa Badań" +msgstr "Ściągnij archiwa badań" #: lang/json/mission_def_from_json.py msgid "" @@ -187598,7 +193448,7 @@ msgstr "Dzięki! To masa danych do przejrzenia." #: lang/json/mission_def_from_json.py msgid "Find Lab Tunnels" -msgstr "Znajdź Tunele Laboratoryjne" +msgstr "Znajdź tunele laboratoryjne" #: lang/json/mission_def_from_json.py msgid "" @@ -187640,7 +193490,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "Zaopatrzenie dla podpalacza." -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "Przynieś podpalaczowi 42 kg komercyjnego nawozu." @@ -187702,9 +193552,9 @@ msgstr "Cholera. Może nie tylko ja o tym pomyślałem." #: lang/json/mission_def_from_json.py msgid "Kill Bandits" -msgstr "Zabij Bandytów" +msgstr "Zabij bandytów" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -187754,7 +193604,7 @@ msgstr "" msgid "Deal with Informant" msgstr "Rozpraw się z Informatorem" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -187791,8 +193641,8 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "If they draw first blood their friends are less likely to blame you…" msgstr "" -"Jeżeli zrani cię pierwszy jego przyjaciele będą mieli mniej powodów by cię " -"oskarżać..." +"Jeżeli zrani cię pierwszy jego przyjaciele będą mieli mniej powodów, by cię " +"oskarżać…" #: lang/json/mission_def_from_json.py msgid "You deal with the rat?" @@ -187802,11 +193652,80 @@ msgstr "Pozbyłeś się szczura?" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "Dziękuję. Wyjaśnię sprawę gdyby ktoś dopytywał." +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "Znajdź źródło robotów" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" +"Z reguły dowództwo rzadko się odzywa, ale ostatnio dostaliśmy wiadomość " +"przez radio. Może będziesz odpowiednim kandydatem, by to sprawdzić. Pojawiły" +" się doniesienia o dziwnych robotach i innych rzeczach błąkających się po " +"okolicy, odkąd sprawy poszły z dymem. Nie wiem jak, ale najwyraźniej " +"dowództwo namierzyło coś, co ich zdaniem jest źródłem. Chcą, żeby ktoś " +"sprawdził, kto je produkuje i czy możemy uzyskać od nich jakąś technologię " +"lub pomoc. To tylko zwiad, rozumiesz: to może być wroga jednostka, więc nie " +"angażuj się bezpośrednio." + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "Tym razem mam dla ciebie coś dziwnego…" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" +"Dzięki, jak już będziesz wiedział kto to jest, zgłoś się do mnie, a ja " +"przekażę to dalej." + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" +"Wróć, kiedy będziesz miał okazję, jeśli jest jakaś szansa, że te rzeczy są " +"po naszej stronie, potrzebujemy każdej pomocy, jaką możemy uzyskać." + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" +"Jeśli zobaczysz w pobliżu jakieś dziwne maszyny, nie angażuj się. Raczej się" +" wymknij. Wygląda na to, że są wrogo nastawione do zombie, ale to nie " +"znaczy, że potrafią rozpoznać, że nie jesteś jednym z nich." + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "Dobra robota, nie wiedziałem czego każę ci szukać." + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" +"Szkoda, cholerna szkoda. Żałuję, że nie mogłeś się więcej dowiedzieć. " +"Dzięki, że próbowałeś." + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "Cholera… Miejmy nadzieję, że jeszcze kiedyś spróbujemy." + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" -msgstr "Zabezpiecz Szlak Handlowy" +msgstr "Zabezpiecz szlak handlowy" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -187841,15 +193760,11 @@ msgstr "" "Przeszukaj krzaki w poszukiwaniu śladów. Traperem nie jestem, ale może tobie" " się poszczęści." -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "Dobra robota, nie wiedziałem czego każę ci szukać." - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" -msgstr "Zabij Przywódcę Bandytów" +msgstr "Zabij przywódcę bandytów" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -187933,7 +193848,7 @@ msgstr "" msgid "Return Field Data" msgstr "Zwróć dane polowe." -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -187996,7 +193911,7 @@ msgstr "Po prostu bezużyteczny..." msgid "Steal a dead man's mind" msgstr "Ukradnij umysł martwego człowieka" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -188053,7 +193968,7 @@ msgstr "Masz naszą wdzięczność i zapłatę." msgid "Light retrieval" msgstr "Odzyskać światło" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -188104,16 +194019,19 @@ msgstr "Odzyskałeś schematy?" #: lang/json/mission_def_from_json.py msgid "Iron Safari" -msgstr "Żelazne Safari" +msgstr "Żelazne safari" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" "Unieszkodliw i odzyskaj obcego robota. Możesz przechwycić robota wskazanego " -"przez Hub 01, lub znaleźć nieaktywnego robota gdzie indziej." +"przez Hub 01 lub znaleźć nieaktywnego robota gdzie indziej. Będziesz " +"potrzebować trochę doświadczenia w elektronice lub mechanice, aby go " +"wyłączyć." #: lang/json/mission_def_from_json.py msgid "" @@ -188167,7 +194085,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "Odzyskaj kawałki złota" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "Znajdź 200 jednostek złota." @@ -188215,9 +194133,9 @@ msgstr "No i teraz musze szukać złota sam, dzięki za nic." #: lang/json/mission_def_from_json.py msgid "Active Noise Control" -msgstr "Aktywuj Kontrolę Szumów" +msgstr "Aktywuj kontrolę szumów" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -188268,7 +194186,7 @@ msgstr "Jasne, dzięki za nic." msgid "Return to Hub 01" msgstr "Wróć do Hub 01" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "Wróć do Hub 01." @@ -188279,7 +194197,7 @@ msgstr "Wracajmy do Hub." #: lang/json/mission_def_from_json.py msgid "Well…" -msgstr "Cóż..." +msgstr "Cóż…" #: lang/json/mission_def_from_json.py msgid "You keep a map around don't you? I do, and you probably should too." @@ -188303,7 +194221,7 @@ msgstr "Nie wierzę, że się zgubiliśmy..." #: lang/json/mission_def_from_json.py msgid "Make 2 Stills" -msgstr "Zbuduj 2 Destylarnie" +msgstr "Zbuduj 2 destylarnie" #: lang/json/mission_def_from_json.py msgid "" @@ -188391,7 +194309,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Farms or supply stores might have a few seeds…" msgstr "" -"Gospodarstwa rolnicze i sklepy z zaopatrzeniem mogą mieć trochę ziarna..." +"Gospodarstwa rolnicze i sklepy z zaopatrzeniem mogą mieć trochę ziarna…" #: lang/json/mission_def_from_json.py msgid "Do you have the sugar beet seeds?" @@ -188399,7 +194317,7 @@ msgstr "Udało ci się zdobyć nasiona buraków cukrowych?" #: lang/json/mission_def_from_json.py msgid "Find 12 Metal Tanks" -msgstr "Znajdź 12 Metalowych Zbiorników" +msgstr "Znajdź 12 metalowych zbiorników" #: lang/json/mission_def_from_json.py msgid "" @@ -188426,7 +194344,7 @@ msgstr "Zebrałeś te metalowe zbiorniki?" #: lang/json/mission_def_from_json.py msgid "Find 2 200-Liter Drums" -msgstr "Znajdź Dwie 200-litrowe Baryłki" +msgstr "Znajdź dwie 200-litrowe baryłki" #: lang/json/mission_def_from_json.py msgid "" @@ -188496,7 +194414,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Find 25 Blankets" -msgstr "Znajdź 25 Kocy" +msgstr "Znajdź 25 koców" #: lang/json/mission_def_from_json.py msgid "" @@ -188529,7 +194447,7 @@ msgstr "Twoja pomoc jest zawsze w cenie." #: lang/json/mission_def_from_json.py msgid "Gather 2500 Nails" -msgstr "Zgromadź 2500 Gwoździ" +msgstr "Zgromadź 2500 gwoździ" #: lang/json/mission_def_from_json.py msgid "" @@ -188554,7 +194472,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Gather 300 Salt" -msgstr "Zbierz 300 porcji Soli" +msgstr "Zgromadź 300 porcji soli" #: lang/json/mission_def_from_json.py msgid "" @@ -188582,9 +194500,9 @@ msgid "" "food it wouldn't do us much good now but I imagine we'll need to send you " "out to get more in the future." msgstr "" -"Sól jest kluczowa w konserwacji mięsa i innych psujących się produktów... " -"ale bez zapasów żywności na ten moment nam się nie przyda, choć wyobrażam " -"sobie że jeszcze cię po nią wyślemy w przyszłości." +"Sól jest kluczowa w konserwacji mięsa i innych psujących się produktów… ale " +"bez zapasów żywności na ten moment nam się nie przyda, choć wyobrażam sobie " +"że jeszcze cię po nią wyślemy w przyszłości." #: lang/json/mission_def_from_json.py msgid "" @@ -188603,7 +194521,7 @@ msgstr "Bezzwłocznie rozpoczynamy przygotowanie naszych pól uprawnych." #: lang/json/mission_def_from_json.py msgid "30 Liquid Fertilizer" -msgstr "Zdobyć 30 porcji Płynnego Nawozu" +msgstr "Zdobyć 30 porcji płynnego nawozu" #: lang/json/mission_def_from_json.py msgid "" @@ -188642,7 +194560,7 @@ msgstr "To naprawdę powinno pozwolić nam przetrwać pirwszą zimę." #: lang/json/mission_def_from_json.py msgid "Gather 75 Rocks" -msgstr "Zgromadź 75 Kamieni" +msgstr "Zgromadź 75 kamieni" #: lang/json/mission_def_from_json.py msgid "" @@ -188679,7 +194597,7 @@ msgstr "Jestem wdzięczny za wykonaną pracę." #: lang/json/mission_def_from_json.py msgid "Gather 50 Pipes" -msgstr "Zdobądź 50 Rur" +msgstr "Zgromadź 50 rur" #: lang/json/mission_def_from_json.py msgid "" @@ -188716,7 +194634,7 @@ msgstr "Jak się ma sprawa rur?" #: lang/json/mission_def_from_json.py msgid "Gather 2 Electric Motors" -msgstr "Dostarcz 2 Silniki Elektryczne" +msgstr "Dostarcz 2 silniki elektryczne" #: lang/json/mission_def_from_json.py msgid "" @@ -188746,7 +194664,7 @@ msgstr "Zdobyłeś te silniki?" #: lang/json/mission_def_from_json.py msgid "Gather 150 Bleach" -msgstr "Przynieś 150 jednostek Wybielacza" +msgstr "Przynieś 150 jednostek wybielacza" #: lang/json/mission_def_from_json.py msgid "" @@ -188845,7 +194763,7 @@ msgstr "Czy masz może antyseptyki?" #: lang/json/mission_def_from_json.py msgid "Find 2 Arc Welders" -msgstr "Znajdź 2 Spawarki Łukowe" +msgstr "Znajdź 2 spawarki łukowe" #: lang/json/mission_def_from_json.py msgid "" @@ -188879,7 +194797,7 @@ msgstr "Zdobyłeś może te spawarki?" #: lang/json/mission_def_from_json.py msgid "Find 12 Car Batteries" -msgstr "Znajdź 12 Akumulatorów Samochodowych" +msgstr "Znajdź 12 akumulatorów samochodowych" #: lang/json/mission_def_from_json.py msgid "" @@ -188917,7 +194835,7 @@ msgstr "Imponują mi twoje umiejętnosci." #: lang/json/mission_def_from_json.py msgid "Find 2 Two-Way Radios" -msgstr "Znajdź Dwa Radia 2-stronnej Komunikacji" +msgstr "Znajdź dwa radia dwustronnej komunikacji" #: lang/json/mission_def_from_json.py msgid "" @@ -188929,12 +194847,12 @@ msgid "" " that. Communication is the biggest obstacle for the teams… could you bring" " in a pair of two-way radios?" msgstr "" -"Odwiedź siostrę jak będziesz mógł, wiem że potrzebuje twojej pomocy w " +"Odwiedź siostrę jak będziesz mógł, wiem, że potrzebuje twojej pomocy w " "stworzeniu kliniki. Na froncie budowlanym potrzeba nam doświadczonych " "zespołów złomiarzy do zebrania różności, których używamy w skromnych " -"ilościach. Zaczniemy budowę złomowiska na północnym krańcu placówki, i " +"ilościach. Zaczniemy budowę złomowiska na północnym krańcu placówki i " "potrzebowalibyśmy twojej pomocy. Wzajemna komunikacja to największy problem " -"zespołów... czy nie znalazłbyś parę dwukierunkowych nadajników radiowych?" +"zespołów… czy nie znalazłbyś parę dwukierunkowych nadajników radiowych?" #: lang/json/mission_def_from_json.py msgid "" @@ -188960,7 +194878,7 @@ msgstr "Jestem pewien że złomiarze będą z nich zadowoleni." #: lang/json/mission_def_from_json.py msgid "Gather 5 Backpacks" -msgstr "Zgromadź 5 Plecaków" +msgstr "Zgromadź 5 plecaków" #: lang/json/mission_def_from_json.py msgid "" @@ -188993,7 +194911,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Find Homebrewer's Bible" -msgstr "Znajdź Biblię Domowego Piwowara" +msgstr "Znajdź „Biblię domowego piwowara”" #: lang/json/mission_def_from_json.py msgid "" @@ -189011,10 +194929,10 @@ msgstr "" "ciężkiej pracy w strachu o przetrwanie biorą nogi za pas. Popytaliśmy tu i " "ówdzie i zdecydowaliśmy, mimo innych pilnych potrzeb, że otworzymy bar, " "który przyciągnie niezdecydowanych do placówki. W przeciwieństwie do innych " -"osad, im więcej rąk do pracy mamy tym więcej żywności wyprodukujemy... " +"osad, im więcej rąk do pracy mamy tym więcej żywności wyprodukujemy… " "przynajmniej w dłuższej perspektywie. Niestety nikt tutaj nie ważył " -"alkoholu, więc musiałbyś znaleźć nam biblię domowego gorzelnictwa czy jak " -"się ta książka nazywała." +"alkoholu, więc musiałbyś znaleźć nam Biblię domowego piwowara, czy jak się " +"ta książka nazywała." #: lang/json/mission_def_from_json.py msgid "I guess you should search homes or libraries?" @@ -189027,7 +194945,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Gather 80 Sugar" -msgstr "Zgromadź 80 porcji Cukru" +msgstr "Zgromadź 80 porcji cukru" #: lang/json/mission_def_from_json.py msgid "" @@ -189065,7 +194983,7 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Collect 30 Glass Sheets" -msgstr "Zbierz 30 Szklanych Tafli" +msgstr "Zbierz 30 szklanych tafli" #: lang/json/mission_def_from_json.py msgid "" @@ -189102,7 +195020,7 @@ msgstr "Rozpoczynamy siew jak tylko je zainstalujemy." #: lang/json/mission_def_from_json.py msgid "Collect 100 Aspirin" -msgstr "Zdobądź 100 Aspiryn" +msgstr "Zdobądź 100 aspiryn" #: lang/json/mission_def_from_json.py msgid "" @@ -189136,7 +195054,7 @@ msgstr "Ten zapas szybko zejdzie, ale jest bardzo pomocny." #: lang/json/mission_def_from_json.py msgid "Collect 3 Hotplates" -msgstr "Zdobądź 3 Płyty Grzewcze" +msgstr "Zdobądź 3 płyty grzewcze" #: lang/json/mission_def_from_json.py msgid "" @@ -189212,7 +195130,7 @@ msgstr "Czy zrobiłeś te filtry węglowe, o które prosiłem?" #: lang/json/mission_def_from_json.py msgid "Find a Chemistry Set" -msgstr "Znajdź Zestaw Chemiczny" +msgstr "Znajdź zestaw chemiczny" #: lang/json/mission_def_from_json.py msgid "" @@ -189258,7 +195176,7 @@ msgstr "Pamiętasz o maskach z filtrem?" #: lang/json/mission_def_from_json.py msgid "Find 4 Pairs of Rubber Gloves" -msgstr "Znajdź 4 Pary Gumowych Rękawiczek" +msgstr "Znajdź 4 pary gumowych rękawiczek" #: lang/json/mission_def_from_json.py msgid "" @@ -189282,7 +195200,7 @@ msgstr "Masz już dla mnie gumowe rękawice?" #: lang/json/mission_def_from_json.py msgid "Find 2 Scalpels" -msgstr "Przynieś 2 Skalpele" +msgstr "Przynieś 2 skalpele" #: lang/json/mission_def_from_json.py msgid "" @@ -189315,9 +195233,10 @@ msgid "" "really need a copy. The doctor is requesting a lot of supplies that I'm not" " familiar with but I believe I could make if I could get a copy of the book." msgstr "" -"Czy słyszałeś może o książce Wprowadzenie do Zaawansowanej Opieki Medycznej?" -" Bardzo potrzebuję jej kopii. Lekarz potrzebuje mnóstwa sprzętu którego nie " -"znam, ale który mógłbym spróbować wyprodukować gdybym miał tę książkę." +"Czy słyszałeś może o książce ”Wprowadzenie do zaawansowanej opieki " +"medycznej”? Bardzo potrzebuję jej kopii. Lekarz potrzebuje mnóstwa sprzętu " +"którego nie znam, ale który mógłbym spróbować wyprodukować gdybym miał tę " +"książkę." #: lang/json/mission_def_from_json.py msgid "Libraries are the only place I'd think to look." @@ -189329,7 +195248,7 @@ msgstr "Zdobyłeś ten przewodnik medyczny?" #: lang/json/mission_def_from_json.py msgid "Find 10 Syringes" -msgstr "Znajdź 10 Strzykawek" +msgstr "Znajdź 10 strzykawek" #: lang/json/mission_def_from_json.py msgid "" @@ -189378,7 +195297,7 @@ msgstr "Gotowy z tymi możowłóczniami?" #: lang/json/mission_def_from_json.py msgid "Make 5 Wearable Flashlights" -msgstr "Zrób 5 Noszonych Latarek" +msgstr "Zrób 5 noszonych latarek" #: lang/json/mission_def_from_json.py msgid "" @@ -189397,7 +195316,7 @@ msgstr "Zmonotowałeś te latarki?" #: lang/json/mission_def_from_json.py msgid "Make 3 Leather Body Armor" -msgstr "Zrób 3 Skórzane Zbroje." +msgstr "Zrób 3 skórzane zbroje." #: lang/json/mission_def_from_json.py msgid "" @@ -189427,7 +195346,7 @@ msgstr "Jakieś postępy w produkcji tych skórzanych zbroi?" #: lang/json/mission_def_from_json.py msgid "Make 12 Molotov Cocktails" -msgstr "Zrób 12 Koktajli Mołotowa" +msgstr "Zrób 12 koktajli Mołotowa" #: lang/json/mission_def_from_json.py msgid "" @@ -189502,7 +195421,7 @@ msgstr "Zatamować śmierć? Nie, nigdy tego nie zrobisz." #: lang/json/mission_def_from_json.py msgid "Making Connections" -msgstr "Nawiązywanie Więzi" +msgstr "Nawiązywanie więzi" #. ~ Description for mission 'Making Connections' #: lang/json/mission_def_from_json.py @@ -189557,7 +195476,7 @@ msgstr "Masz jakąś cybernetykę głowy? Mógłbym wyciąć jeden z twojej czas #: lang/json/mission_def_from_json.py msgid "Alpha Mutagen" -msgstr "Alfa Mutagen" +msgstr "Alfa mutagen" #. ~ Description for mission 'Alpha Mutagen' #: lang/json/mission_def_from_json.py @@ -189610,7 +195529,7 @@ msgstr "Odsuwasz mnie od moich eksperymentów. Czy chciałbyś się nim stać?" #: lang/json/mission_def_from_json.py msgid "Broken Cyborg" -msgstr "Popsuta Cyborg" +msgstr "Popsuty cyborg" #. ~ Description for mission 'Broken Cyborg' #: lang/json/mission_def_from_json.py @@ -189712,7 +195631,7 @@ msgstr "Nie mogę być doktorem Frankensteinem, jeśli mi tego nie dasz." #: lang/json/mission_def_from_json.py msgid "Migo biology" -msgstr "Biologia Mi-go" +msgstr "Biologia mi-go" #. ~ Description for mission 'Migo biology' #: lang/json/mission_def_from_json.py @@ -189856,7 +195775,7 @@ msgstr "Mutagen? Dlaczego stoisz przede mną, jeśli nie?" #: lang/json/mission_def_from_json.py msgid "Humming Hearts" -msgstr "Buczące Serca" +msgstr "Buczące serca" #. ~ Description for mission 'Humming Hearts' #: lang/json/mission_def_from_json.py @@ -189926,8 +195845,8 @@ msgid "" "Of course you said yes, you want to know what he's found just as much as I " "do!" msgstr "" -"Oczywiście, że powiedziałeś \"tak\", chcesz wiedzieć, co znalazł tak samo " -"jak ja!" +"Oczywiście, że powiedziałeś „tak”, chcesz wiedzieć, co znalazł tak samo jak " +"ja!" #: lang/json/mission_def_from_json.py msgid "" @@ -189959,7 +195878,7 @@ msgstr "Mam nadzieję, że nie spotkał go los Leandrus'a..." #: lang/json/mission_def_from_json.py msgid "Big Game Hunting" -msgstr "Łowy na Grubego Zwierza" +msgstr "Łowy na grubego zwierza" #. ~ Description for mission 'Big Game Hunting' #: lang/json/mission_def_from_json.py @@ -189976,7 +195895,7 @@ msgid "" "clothes. Could you find about… 50 fur pelts for me?" msgstr "" "Muszę zajmować się sadem, ale nocami pracuję nad przygotowaniem zimowych " -"ubrań. Czy mógłbyś znaleźć dla mnie około... 50 futer?" +"ubrań. Czy możesz znaleźć dla mnie około… 50 futer?" #: lang/json/mission_def_from_json.py msgid "" @@ -190025,7 +195944,7 @@ msgstr "Znalazłeś mąkę?" #: lang/json/mission_def_from_json.py msgid "Gallon Jugs" -msgstr "Galonowe Butle" +msgstr "Galonowe butle" #. ~ Description for mission 'Gallon Jugs' #: lang/json/mission_def_from_json.py @@ -190075,20 +195994,20 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Burnt Out CBMs" -msgstr "Wypalone KBMy" +msgstr "Wypalone KMB" #. ~ Description for mission 'Burnt Out CBMs' #: lang/json/mission_def_from_json.py msgid "Find 5 burnt out CBMs." -msgstr "Znajdź 5 wypalonych KBMów" +msgstr "Znajdź 5 wypalonych KMB" #: lang/json/mission_def_from_json.py msgid "We have the ability to manufacture CBMs but lack resources." -msgstr "Mamy zdolność do wytwarzania KBM, ale brakuje nam zasobów." +msgstr "Mamy zdolność do wytwarzania KMB, ale brakuje nam zasobów." #: lang/json/mission_def_from_json.py msgid "If you can bring me burnt out CBMs we can recycle them into new ones." -msgstr "Jeśli przyniesiesz mi wypalone KBM-y, możemy je przerobić na nowe." +msgstr "Jeśli przyniesiesz mi wypalone KMB, możemy je przerobić na nowe." #: lang/json/mission_def_from_json.py msgid "" @@ -190111,7 +196030,7 @@ msgstr "Naukowcy zombie, technicy, porażające zombie. Nie traktuj ich lekko." #: lang/json/mission_def_from_json.py msgid "Do you have those CBMs now?" -msgstr "Masz już te KBMy?" +msgstr "Masz już te KBM?" #: lang/json/mission_def_from_json.py msgid "" @@ -190180,7 +196099,7 @@ msgstr "" "żadnym innym dobrym w pobliżu. Może najpierw poćwicz na znajomych i " "sąsiadach, naprawdę chcesz być pewny i mieć to dobrze. Jeśli zepsujesz serce" " Billy'ego, mogę użyć serca od kogoś z tego samego rodzaju jak Billy, ale " -"nie mogę użyć zwykłych serc, i nie wiem, gdzie znaleźć więcej typów " +"nie mogę użyć zwykłych serc i nie wiem, gdzie znaleźć więcej typów " "Billy'ego." #: lang/json/mission_def_from_json.py @@ -190283,13 +196202,13 @@ msgstr "" #. ~ Nickname for creature 'mon_eoraptor' #: lang/json/mission_def_from_json.py msgid "Bamm-Bamm" -msgstr "Bamm-Bamm" +msgstr "Bam-bam" #: lang/json/mission_def_from_json.py msgid "Secure Area" -msgstr "Zabezpiecz Obszar" +msgstr "Zabezpiecz obszar" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -190312,9 +196231,9 @@ msgstr "" #: lang/json/mission_def_from_json.py msgid "Lost in the Woods" -msgstr "Zgubiony w Lesie" +msgstr "Zgubiony w lesie" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -190351,7 +196270,7 @@ msgstr "" msgid "Protect the cattle" msgstr "Chroń trzodę" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "Ktoś lub coś na bagnach kradnie bydło. Powstrzymaj to." @@ -190397,7 +196316,7 @@ msgstr "" msgid "Betty" msgstr "Betty" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "Zabij 50 dinozaurów" @@ -190456,10 +196375,10 @@ msgstr "" msgid "Stromer" msgstr "Sztromer" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" -msgstr "Zabij mi T Rexa" +msgstr "Zabij mi T-reksa" #: lang/json/mission_def_from_json.py msgid "" @@ -190551,7 +196470,7 @@ msgstr "Konsultant Kiernan" #: lang/json/mission_def_from_json.py msgid "I need some expert advice…" -msgstr "Potrzebuję porady eksperta..." +msgstr "Potrzebuję porady eksperta…" #: lang/json/mission_def_from_json.py msgid "" @@ -190593,7 +196512,7 @@ msgstr "Bardzo przekonujące. Potrzebuję jednak informacji do pracy." #: lang/json/mission_def_from_json.py msgid "Retrieve The Tome of The Battle Mage" -msgstr "Odzyskaj Księgę Maga Bitewnego" +msgstr "Odzyskaj ”Księgę maga bitewnego”" #: lang/json/mission_def_from_json.py msgid "Where did I put that blasted…" @@ -190604,7 +196523,7 @@ 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 "" -"Zdaje się, że zgubiłem moją \"Księgę Maga Bitewnego\". Ten bezwartościowy " +"Zdaje się, że zgubiłem moją „Księgę maga bitewnego”. Ten bezwartościowy " "uczeń pewnie ją ukradł. Przynieś ją do mnie." #: lang/json/mission_def_from_json.py @@ -190624,7 +196543,7 @@ msgid "" msgstr "" "Chcesz, żebym wykonał za ciebie twoją pracę? Bah. Ten uczeń mówił coś o " "chęci rozejrzenia się po mieście, możesz zacząć od tego. Aha, i nazywa się " -"to Księga Maga Bitewnego, potrafisz przeczytać przynajmniej tytuł, prawda?" +"to „Księga maga bitewnego”, potrafisz przeczytać przynajmniej tytuł, prawda?" #: lang/json/mission_def_from_json.py msgid "Where's my book?" @@ -190644,7 +196563,7 @@ msgstr "Ugh, dlaczego zostałem przeklęty bezużytecznymi ludźmi?" #: lang/json/mission_def_from_json.py msgid "Find Power Storage CBM" -msgstr "Znajdź Magazyn Mocy KBM" +msgstr "Znajdź KMB Magazyn Mocy " #: lang/json/mission_def_from_json.py msgid "More power… moar power… MOAR POWAA!" @@ -190691,7 +196610,7 @@ msgstr "Muszę znaleźć więcej mocy, to niepowodzenie jest uciążliwe." #: lang/json/mission_def_from_json.py msgid "Kill 50 Zombies" -msgstr "Zabij 50 Zombie" +msgstr "Zabij 50 zombie" #: lang/json/mission_def_from_json.py msgid "Will you answer the call?" @@ -190748,7 +196667,7 @@ msgstr "Czy klątwa była dla ciebie zbyt silna?" #: lang/json/mission_def_from_json.py msgid "Kill 150 Zombies" -msgstr "Zabij 150 Zombie" +msgstr "Zabij 150 zombie" #: lang/json/mission_def_from_json.py msgid "" @@ -191290,6 +197209,32 @@ msgstr "" "%1$s próbuje miażdżyć %2$s swoją wielką maczugą, ale huśta się " "szeroko i potyka się." +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "%1$s biczuje cię swoim ognistym biczem!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "%1$s biczuje swoim ognistym biczem!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" +"%1$s biczuje cię swoim ognistym biczem, ale nie udaje mu się przebić twojej " +"zbroi!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "%1$s biczuje swoim ognistym biczem, ale nie przebija zbroi!" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -191982,14 +197927,14 @@ msgstr "Twoje serce kołacze gdy zastrzyk wypełnia twe żyły." #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." -msgstr "Wchłaniasz naturę bestii." +msgid "Embraced their bestial nature." +msgstr "Objęty przez swoją zwierzęcą naturę." #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." -msgstr "Wchłaniasz naturę bestii." +msgid "Embraced their bestial nature." +msgstr "Objęta przez swoją zwierzęcą naturę." #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py @@ -192739,6 +198684,33 @@ msgstr "" "Jesteś wychowankiem Jadowitego Klanu. Zaczynasz z jednym z pięciu zabójczych" " jadów: stonogi, żmii, skorpiona, jaszczura lub ropuchy." +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "Standardowy interfejs neurobioniczny" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" +"W twoim centralnym układzie nerwowym znajduje się matryca, która działa jako" +" uniwersalna magistrala sterująca i instalacyjna dla kompaktowych modułów " +"bionicznych." + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "Rama cyborga Exodii - styl 1a" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" +"Twój mózg i niektóre organy są osłonięte ładną, wytrzymałą, dwunożną ramą " +"chodzika." + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "Włosy: czarne, na jeża" @@ -193700,7 +199672,6 @@ msgid "Tunnel Fighter" msgstr "Tunelowy wojownik" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -193713,6 +199684,15 @@ msgstr "" msgid "Night Raider" msgstr "Nocny łupieżca" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" +"Twoje ciało jest jednością z nocą. Robisz mniej hałasu, gdy księżyc jest na " +"niebie, nawet jeśli go nie widzisz." + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -193857,10 +199837,10 @@ msgstr "Bycza masa" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" -"Przybrałeś sporo na wadze, w tym większość to mięśnie! Otrzymujesz 10% " -"bonusu do wszystkich punktów trafień. Od teraz pływanie będzie trudniejsze." +"Przybrano sporo na wadze, w tym większość to mięśnie! Otrzymujesz 10% bonusu" +" do wszystkich punktów trafień. Od teraz pływanie będzie trudniejsze." #: lang/json/mutation_from_json.py msgid "Bull Roids" @@ -194148,11 +200128,11 @@ msgstr "Przeraża" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" -"Jest w tobie coś, co ludzie i postludzie uważają za przerażające i są " -"bardziej skłonni do prób ucieczki." +"Jest w tobie coś co stworzenia napawa lękiem i będą częściej przed tobą " +"uciekać." #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -195186,7 +201166,7 @@ msgid "" "and you heal slightly slower. Stacks with Glass Jaw." msgstr "" "Twoje ciało nie jest w stanie znieść złego traktowania. Twoja żywotność jest" -" o 25% niższa i zdrowiejesz nieco wolniej. Dodaje się ze szklaną szczęką." +" o 25% niższa i zdrowiejesz nieco wolniej. Kumuluje się ze szklaną szczęką." #: lang/json/mutation_from_json.py msgid "Frail" @@ -195200,7 +201180,7 @@ msgid "" "you heal slower. Stacks with Glass Jaw." msgstr "" "Twoje ciało łatwo złamać. Twoja żywotność jest o 50% niższa i wolniej się " -"leczysz. Dodaje się ze szklaną szczęką." +"leczysz. Kumuluje się ze szklaną szczęką." #: lang/json/mutation_from_json.py msgid "Fragile" @@ -195214,8 +201194,8 @@ msgid "" " you heal much slower. Stacks with Glass Jaw." msgstr "" "Twoje ciało jest niezwykle wrażliwe i słabe. Twoja żywotność jest o 75% " -"niższa niż zwykle i dużo wolniej odzyskujesz zdrowie. Dodaje się ze szklaną " -"szczęką." +"niższa niż zwykle i dużo wolniej odzyskujesz zdrowie. Kumuluje się ze " +"szklaną szczęką." #: lang/json/mutation_from_json.py msgid "Genetic Downward Spiral" @@ -196605,7 +202585,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Muscle Consolidation" -msgstr "" +msgstr "Konsolidacja mięśni" #. ~ Description for {'str': 'Muscle Consolidation'} #: lang/json/mutation_from_json.py @@ -196613,10 +202593,12 @@ msgid "" "Your extremities have gained strength but lost fine motor skills. -1 " "Dexterity +2 Strength." msgstr "" +"Twoje kończyny zyskały na sile, ale straciły zdolności motoryczne. -1 " +"zręczności, +2 siły." #: lang/json/mutation_from_json.py msgid "Rasping Tongue" -msgstr "" +msgstr "Skrobiący język" #. ~ Description for {'str': 'Rasping Tongue'} #: lang/json/mutation_from_json.py @@ -196624,35 +202606,37 @@ msgid "" "You've developed an extremely long and mobile tongue capped with teeth. You" " may use it to attack your enemies." msgstr "" +"Masz rozwinięty niezwykle długi i ruchliwy język zakończony zębami. Możesz " +"go używać do atakowania swoich wrogów." #: lang/json/mutation_from_json.py #, no-python-format msgid "You tear into %s with your rasping tongue." -msgstr "" +msgstr "Rozszarpujesz %s swoim skrobiącym językiem." #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s tears into %2$s with their rasping tongue." -msgstr "" +msgstr "%1$s rozszarpuje %2$s swoim skrobiącym językiem." #: lang/json/mutation_from_json.py msgid "Harpoon Tongue" -msgstr "" +msgstr "Harpunowy język" #. ~ Description for {'str': 'Harpoon Tongue'} #: lang/json/mutation_from_json.py msgid "Your tongue has increased its length and mobility." -msgstr "" +msgstr "Twój język zwiększył swoją długość i mobilność." #: lang/json/mutation_from_json.py #, no-python-format msgid "You stab into %s with your harpoon tongue." -msgstr "" +msgstr "Wbijasz się w %s twoim harpunowym językiem." #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s stabs into %2$s with their harpoon tongue." -msgstr "" +msgstr "%1$s wbija się w %2$s harpunowym językiem." #: lang/json/mutation_from_json.py msgid "Compound Eyes" @@ -196684,21 +202668,23 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Strong Legs" -msgstr "" +msgstr "Silne nogi" #. ~ Description for {'str': 'Strong Legs'} #: lang/json/mutation_from_json.py msgid "Your legs have gained muscle mass to propel you across any terrain." msgstr "" +"Twoje nogi nabrały masy mięśniowej, która pozwoli ci poruszać się po każdym " +"terenie." #: lang/json/mutation_from_json.py msgid "Leaping Legs" -msgstr "" +msgstr "Skaczące nogi" #. ~ Description for {'str': 'Leaping Legs'} #: lang/json/mutation_from_json.py msgid "You've gained a strong ability to leap from a standing position." -msgstr "" +msgstr "Zyskałeś silną umiejętność wyskakiwania z pozycji stojącej." #. ~ Description for {'str': 'Crushing Leap'} #: lang/json/mutation_from_json.py @@ -196706,6 +202692,8 @@ msgid "" "You've gained a strong ability to leap a significant distance from a " "standing position and crush whatever you land on." msgstr "" +"Zyskałeś silną zdolność do przeskakiwania na znaczną odległość z pozycji " +"stojącej i miażdżenia wszystkiego, na czym wylądujesz." #: lang/json/mutation_from_json.py msgid "Toe Talons" @@ -197297,7 +203285,7 @@ msgid "" " to all hit points. Stacks with Tough, etc." msgstr "" "Możesz przeżyć zadane rany, które położyłyby człowieka: otrzymujesz 20% " -"bonus do wszystkich punktów zdrowia. Łączy się z twardość, itp." +"bonus do wszystkich punktów zdrowia. Kumuluje się z twardością, itp." #: lang/json/mutation_from_json.py msgid "Solidly Built" @@ -197312,7 +203300,7 @@ msgid "" "Tough, etc." msgstr "" "Niewiele cię przeraża. Otrzymujesz 20% bonus do wszystkich punktów zdrowia. " -"Łączy się z twardość, itp." +"Kumuluje się z twardością, itp." #: lang/json/mutation_from_json.py msgid "TAAANK" @@ -197327,7 +203315,7 @@ msgid "" "get a 40% bonus to all hit points. Stacks with Tough, etc." msgstr "" "Możesz dostać lanie od poślednich istot i iść dalej. Otrzymujesz 40% bonus " -"do wszystkich punktów zdrowia. Łączy się z twardość, itp." +"do wszystkich punktów zdrowia. Kumuluje się z twardością, itp." #: lang/json/mutation_from_json.py msgid "Pain Recovery" @@ -197622,7 +203610,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Gastropod Foot" -msgstr "" +msgstr "Stopa brzuchonoga" #. ~ Description for {'str': 'Gastropod Foot'} #: lang/json/mutation_from_json.py @@ -197633,10 +203621,15 @@ msgid "" "noise. In addition to being harder to knock down, you can move through " "sludge-covered surfaces easily." msgstr "" +"Twoje nogi skonsolidowały się w pojedynczą muskularną „stopę”, która wchodzi" +" w brzuch. Poruszasz się około jednej czwartej swojej poprzedniej prędkości " +"i nie możesz już nosić spodni ani butów, z drugiej strony robisz znacznie " +"mniej hałasu. Oprócz tego, że trudniej cię przewrócić, możesz z łatwością " +"poruszać się po powierzchniach pokrytych szlamem." #: lang/json/mutation_from_json.py msgid "Gastropod Balance" -msgstr "" +msgstr "Balans gastropoda" #. ~ Description for {'str': 'Gastropod Balance'} #: lang/json/mutation_from_json.py @@ -197644,10 +203637,12 @@ msgid "" "By pushing your whole 'foot' against the ground you are able to move across " "rough terrain without losing your 'footing'." msgstr "" +"Dociskając całą „stopę” do podłoża, możesz poruszać się po nierównym " +"terenie, nie tracąc równowagi." #: lang/json/mutation_from_json.py msgid "Mucus Secretion" -msgstr "" +msgstr "Wydzielanie śluzu" #. ~ Description for {'str': 'Mucus Secretion'} #: lang/json/mutation_from_json.py @@ -197656,31 +203651,36 @@ msgid "" " covers evrerything you come into contact with but now you can move through " "slime you didn't create with ease." msgstr "" +"Twój partner kiedyś nazwał cię oślizgłym, teraz jesteś tego przykładem. " +"Dotyczy to wszystkiego, z czym się stykasz, ale teraz możesz z łatwością " +"poruszać się po szlamie, którego nie stworzyłeś." #: lang/json/mutation_from_json.py msgid "Acidic Secretion" -msgstr "" +msgstr "Wydzielanie kwasu" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" +"W twoim śluzie pojawił się kwaśny składnik, który wydaje się zmiękczać twoją" +" ofiarę." #: lang/json/mutation_from_json.py #, no-python-format msgid "You smear slime on %s" -msgstr "" +msgstr "Rozsmarowujesz śluz na %s" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s smears slime on %2$s" -msgstr "" +msgstr "%1$s rozsmarowuje śluz na %2$s" #: lang/json/mutation_from_json.py msgid "Snail Trail" -msgstr "" +msgstr "Ślad śluzu" #. ~ Description for {'str': 'Snail Trail'} #: lang/json/mutation_from_json.py @@ -197688,6 +203688,8 @@ msgid "" "You've developed some ability to control your slime emissions. As a result " "of this you can leave trails of slime anywhere you walk." msgstr "" +"Masz rozwiniętą pewną zdolność do kontrolowania emisji śluzu. Dzięki temu " +"możesz zostawiać ślady szlamu gdziekolwiek się udasz." #: lang/json/mutation_from_json.py msgid "Canine Ears" @@ -197946,8 +203948,8 @@ msgstr "Siła" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" -msgstr "Twoje mięśnie są nieco silniejsze. Siła +1." +msgid "Your muscles are a little stronger. +1 Strength." +msgstr "Twoje mięśnie są nieco silniejsze. +1 siły." #: lang/json/mutation_from_json.py msgid "Very Strong" @@ -197955,8 +203957,8 @@ msgstr "Duża siła" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" -msgstr "Twoje mięśnie są silniejsze. Siła +2." +msgid "Your muscles are stronger. +2 Strength." +msgstr "Twoje mięśnie są silniejsze. +2 siły." #: lang/json/mutation_from_json.py msgid "Extremely Strong" @@ -197964,8 +203966,8 @@ msgstr "Niezwykła siła" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" -msgstr "Twoje mięśnie są znacznie silniejsze. Siła +4." +msgid "Your muscles are much stronger. +4 Strength." +msgstr "Twoje mięśnie są znacznie silniejsze. +4 siły." #: lang/json/mutation_from_json.py msgid "Insanely Strong" @@ -197973,8 +203975,8 @@ msgstr "Obłędna siła" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" -msgstr "Twoje mięśnie są jak bochny chleba. Siła +7." +msgid "Your muscles are noticeably bulging. +7 Strength." +msgstr "Twoje mięśnie są jak bochny chleba. +7 siły." #: lang/json/mutation_from_json.py msgid "Prime Strength" @@ -197991,8 +203993,8 @@ msgstr "Zręczność" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" -msgstr "Jesteś nieco zwinniejszy. Zręczność +1.." +msgid "You are a little nimbler. +1 Dexterity." +msgstr "Jesteś nieco zwinniejszy. +1 zręczności." #: lang/json/mutation_from_json.py msgid "Very Dextrous" @@ -198000,8 +204002,8 @@ msgstr "Duża zręczność" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" -msgstr "Jesteś zwinniejszy. Zręczność +1." +msgid "You are nimbler. +2 Dexterity." +msgstr "Jesteś zwinniejszy. +2 zręczności." #: lang/json/mutation_from_json.py msgid "Extremely Dextrous" @@ -198009,8 +204011,8 @@ msgstr "Wyjątkowa zręczność" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" -msgstr "Jesteś zwinny i szybki. Zręczność +4." +msgid "You are nimble and quick. +4 Dexterity." +msgstr "Jesteś zwinny i szybki. +4 zręczności." #: lang/json/mutation_from_json.py msgid "Insanely Dextrous" @@ -198018,8 +204020,8 @@ msgstr "Obłędna zręczność" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" -msgstr "Jesteś zwinny jak nikt dotąd. Zręczność +7." +msgid "You are much nimbler than before. +7 Dexterity." +msgstr "Jesteś zwinny jak nikt dotąd. +7 zręczności." #: lang/json/mutation_from_json.py msgid "Prime Dexterity" @@ -198036,8 +204038,8 @@ msgstr "Bystrość" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" -msgstr "Jesteś nieco mądrzejszy. Inteligencja +1." +msgid "You are a little smarter. +1 Intelligence." +msgstr "Jesteś nieco mądrzejszy. +1 inteligencji." #: lang/json/mutation_from_json.py msgid "Very Smart" @@ -198045,8 +204047,8 @@ msgstr "Duża bystrość" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" -msgstr "Jesteś mądrzejszy. Inteligencja +2." +msgid "You are smarter. +2 Intelligence." +msgstr "Jesteś mądrzejszy. +2 inteligencji." #: lang/json/mutation_from_json.py msgid "Extremely Smart" @@ -198055,10 +204057,10 @@ msgstr "Niezwykła bystrość" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" -"Jesteś znacznie mądrzejszy, a twoja czaszka jest nieco bardziej wypukła. " -"Inteligencja +4." +"Jesteś znacznie mądrzejszy, a twoja czaszka jest nieco bardziej wypukła. +4 " +"inteligencji." #: lang/json/mutation_from_json.py msgid "Insanely Smart" @@ -198067,10 +204069,10 @@ msgstr "Obłędna bystrość" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" "Twoja czaszka wybrzusza się zauważalnie pod wpływam twojego imponującego " -"mózgu. Inteligencja +7." +"mózgu. +7 inteligencji." #: lang/json/mutation_from_json.py msgid "Prime Intelligence" @@ -198101,8 +204103,8 @@ msgstr "Spostrzegawczość" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" -msgstr "Twoje zmysły są nieco wyostrzone. Percepcja +1." +msgid "Your senses are a little keener. +1 Perception." +msgstr "Twoje zmysły są nieco wyostrzone. +1 percepcji." #: lang/json/mutation_from_json.py msgid "Very Perceptive" @@ -198110,8 +204112,8 @@ msgstr "Duża spostrzegawczość" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" -msgstr "Twoje zmysły są wyostrzone. Percepcja +2." +msgid "Your senses are keener. +2 Perception." +msgstr "Twoje zmysły są wyostrzone. +2 percepcji." #: lang/json/mutation_from_json.py msgid "Extremely Perceptive" @@ -198119,8 +204121,8 @@ msgstr "Wyjątkowa spostrzegawczość" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" -msgstr "Twoje zmysły są bardzo wyostrzone. Percepcja +4." +msgid "Your senses are much keener. +4 Perception." +msgstr "Twoje zmysły są bardzo wyostrzone. +4 percepcji." #: lang/json/mutation_from_json.py msgid "Insanely Perceptive" @@ -198128,9 +204130,9 @@ msgstr "Obłędna spostrzegawczość" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" -"Wyczuwasz rzeczy o których nigdy nawet sobie nie wyobrażałeś. Percepcja +7." +"Wyczuwasz rzeczy o których nigdy nawet sobie nie wyobrażałeś. +7 percepcji." #: lang/json/mutation_from_json.py msgid "Prime Perception" @@ -198280,7 +204282,7 @@ msgstr "Twój język jest rozwidlony, jak u gada. Nie ma to żadnego efektu." #: lang/json/mutation_from_json.py msgid "Lolling Tongue" -msgstr "" +msgstr "Wytaczający się język" #. ~ Description for {'str': 'Lolling Tongue'} #: lang/json/mutation_from_json.py @@ -198288,10 +204290,12 @@ msgid "" "Your tongue has lengthened and often extends far beyond your mouth. This " "has no effect." msgstr "" +"Twój język wydłużył się i często wystaje daleko poza usta. Nie ma to " +"znaczenia." #: lang/json/mutation_from_json.py msgid "Whipping Tongue" -msgstr "" +msgstr "Biczujący język" #. ~ Description for {'str': 'Whipping Tongue'} #: lang/json/mutation_from_json.py @@ -198299,16 +204303,18 @@ msgid "" "You've developed an extremely long and mobile tongue. You may use it to " "attack your enemies." msgstr "" +"Masz rozwinięty niezwykle długi i ruchliwy język. Możesz go używać do " +"atakowania swoich wrogów." #: lang/json/mutation_from_json.py #, no-python-format msgid "You bash %s with your tongue." -msgstr "" +msgstr "Uderzasz %s swoim językiem." #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s smacks into %2$s with their tongue." -msgstr "" +msgstr "%1$s uderza %2$s językiem." #: lang/json/mutation_from_json.py msgid "Bulging Eyes" @@ -198325,7 +204331,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Intermediate Eyestalks" -msgstr "" +msgstr "Pośrednie łodygi oczne" #. ~ Description for {'str': 'Intermediate Eyestalks'} #: lang/json/mutation_from_json.py @@ -198335,10 +204341,14 @@ msgid "" "but sometimes your vision goes wonky as your brain tries to process the new " "angles. Perception +1" msgstr "" +"Twoje oczy ledwo wystają z głowy na mackach, co uniemożliwia używanie " +"jakichkolwiek sztywnych okularów. Plusem jest to, że możesz mieć dodatkową " +"świadomość otoczenia, ale czasami twoje widzenie jest dziwne, gdy twój mózg " +"próbuje przetworzyć nowe kąty. Percepcja +1" #: lang/json/mutation_from_json.py msgid "Eyestalks" -msgstr "" +msgstr "Łodygi oczne" #. ~ Description for {'str': 'Eyestalks'} #: lang/json/mutation_from_json.py @@ -198347,6 +204357,10 @@ msgid "" "of any eyewear. On the plus side, you can see in two directions at once, " "and they automatically retract to reduce damage. Perception +2" msgstr "" +"Twoje oczy wystają z głowy na elastycznych mackach, uniemożliwiając " +"korzystanie z jakichkolwiek okularów. Na plus należy zaliczyć to, że możesz " +"widzieć w dwóch kierunkach jednocześnie i automatycznie się chowają, aby " +"zmniejszyć obrażenia. Percepcja +2" #: lang/json/mutation_from_json.py msgid "Mouth Flaps" @@ -198623,7 +204637,7 @@ msgstr "%1$s odgryza kawałek ciała %2$s" #: lang/json/mutation_from_json.py msgid "Wide Mouth" -msgstr "" +msgstr "Szerokie usta" #. ~ Description for {'str': 'Wide Mouth'} #: lang/json/mutation_from_json.py @@ -198631,6 +204645,8 @@ msgid "" "Your face and jaws have widened like a frogs. It looks hideous but it " "allows you to eat food whole." msgstr "" +"Twoja twarz i szczęki rozszerzyły się jak u żaby. Wygląda to ohydnie, ale " +"pozwala ci jeść jedzenie w całości." #: lang/json/mutation_from_json.py msgid "Proboscis" @@ -198699,7 +204715,7 @@ msgstr "Wytrwałość łowcy" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" "Możesz ścigać ofiarę kilometrami w różnym tempie, aż zatrzyma się z " "wyczerpania." @@ -198838,7 +204854,7 @@ msgstr "Duża senność" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" "Często odczuwasz potrzebę snu. Spędzasz połowę czasu w lub w pobliżu łóżka." @@ -199452,7 +205468,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Croaking Voice" -msgstr "" +msgstr "Przeraźliwy głos" #. ~ Description for {'str': 'Croaking Voice'} #: lang/json/mutation_from_json.py @@ -199460,6 +205476,8 @@ msgid "" "You have a low, croaking voice, like an aged grandparent. Persuading NPCs " "will be easier, but threatening them will be more difficult." msgstr "" +"Masz niski, skrzeczący głos, jak stary dziadek. Przekonywanie NPC będzie " +"łatwiejsze, ale grożenie im będzie trudniejsze." #: lang/json/mutation_from_json.py msgid "Snarling Voice" @@ -199680,7 +205698,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Nacreous Shell" -msgstr "" +msgstr "Perłowa skorupa" #. ~ Description for {'str': 'Nacreous Shell'} #: lang/json/mutation_from_json.py @@ -199688,6 +205706,8 @@ msgid "" "Your protective shell has developed increased strength and hardness and a " "mother of pearl sheen." msgstr "" +"Twoja ochronna powłoka rozwinęła zwiększoną wytrzymałość i twardość oraz " +"perłowy połysk." #: lang/json/mutation_from_json.py msgid "Leg Tentacles" @@ -199733,6 +205753,7 @@ msgid "" "You feel bad for all the creatures that don't carry their home on their " "backs." msgstr "" +"Szkoda ci wszystkich stworzeń, które nie noszą swojego domu na plecach." #. ~ Description for {'str': 'Bird'} #: lang/json/mutation_from_json.py @@ -199927,7 +205948,7 @@ msgstr "" #. ~ Description for {'str': 'Batrachian'} #: lang/json/mutation_from_json.py msgid "A perfect ambush predator, if only there were less competition." -msgstr "" +msgstr "Idealny drapieżnik z zasadzki, gdyby tylko było mniej konkurencji." #: lang/json/mutation_from_json.py msgid "Diminutive" @@ -200467,13 +206488,15 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Debug Stamina" -msgstr "" +msgstr "Debug stamina" #. ~ Description for {'str': 'Debug Stamina'} #: lang/json/mutation_from_json.py msgid "" "You can't run from the bugs, but you have enough stamina to at least try to." msgstr "" +"Nie możesz uciec od bugów, ale przynajmniej masz wystarczającą ilość " +"staminy, by próbować." #: lang/json/mutation_from_json.py msgid "Debug Deodorizer" @@ -201689,14 +207712,14 @@ msgstr "Możesz teraz wdychać gazy, z których korzystają mi-go." #: lang/json/mutation_from_json.py msgid "Uplifted" -msgstr "Uniesienie" +msgstr "Wzniesienie" #. ~ Description for Uplifted #: lang/json/mutation_from_json.py msgid "" "You come from uplifted animal stock. This decreases morale penalties for " "being wet." -msgstr "Pochodzisz z uniesionego bydła. Redukuje to kary za przemoczenie." +msgstr "Pochodzisz z wzniesionego bydła. Redukuje to kary za przemoczenie." #: lang/json/mutation_from_json.py msgid "Hauler" @@ -203798,7 +209821,7 @@ msgstr "Znikoma wrażliwość many" #: lang/json/mutation_from_json.py msgid "Slime Breath" -msgstr "" +msgstr "Śluzowy oddech" #. ~ Description for {'str': 'Slime Breath'} #: lang/json/mutation_from_json.py @@ -203806,10 +209829,12 @@ msgid "" "Your breath is sticky and slimy somehow. This won't damage your " "interactions with people but it's definitely noticeable." msgstr "" +"Twój oddech jest jakoś lepki i śliski. Nie zaszkodzi to twoim interakcjom z " +"ludźmi, ale na pewno jest to zauważalne." #: lang/json/mutation_from_json.py msgid "Chimeric Breath" -msgstr "" +msgstr "Chimeryczny oddech" #. ~ Description for {'str': 'Chimeric Breath'} #: lang/json/mutation_from_json.py @@ -203817,6 +209842,8 @@ msgid "" "Your breath could metaphorically melt lead. It's horrible. It's so bad " "that it can actually distract from your attempts to intimidate someone." msgstr "" +"Twój oddech może metaforycznie stopić ołów. Jest okropny. Jest tak zły, że " +"może odwrócić uwagę od twoich prób zastraszenia kogoś." #: lang/json/mutation_from_json.py msgid "Debug Spell Mutation" @@ -204102,6 +210129,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "JESTEM FOODPERSON. PRZYNOSZĘ JEDZENIE!" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "Cyborg" @@ -204137,6 +210165,14 @@ msgstr "Muszę zebrać więcej kości." msgid "Fisherman" msgstr "Rybak" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "Cyborg, typ 1" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "Jestem cyborgiem." + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "Członek" @@ -204745,6 +210781,14 @@ msgstr "Szukam tyrano mutagenu… Zamierzam zostać królem." msgid "Operator" msgstr "Operator" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "Bibliotekarz kuźni" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "Dbam o książki i zwoje." + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "Królowa piratów" @@ -204884,6 +210928,10 @@ msgstr "Mikhail Frolov" msgid "Heather Frolova" msgstr "Heather Frolova" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "Rubik" + #: lang/json/npc_from_json.py msgid "member" msgstr "Członek" @@ -205052,6 +211100,10 @@ msgstr "Broker" msgid "Guard" msgstr "Strażnik" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "Woźnica" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "Makayla Sanchez" @@ -205090,7 +211142,7 @@ msgstr "Andrea Dzvonko" #: lang/json/npc_from_json.py msgid "building maintenance" -msgstr "konserwator budynku" +msgstr "Konserwator budynku" #: lang/json/npc_from_json.py msgid "Darla Novak" @@ -205220,6 +211272,10 @@ msgstr "Yoshimi" msgid "Forge Lord" msgstr "Lord kuźni" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "Bibliotekarz" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "Helen Tavrel, dawna piratka" @@ -205604,7 +211660,7 @@ msgid "" "green spaces like town commons." msgstr "" "Grunty obejmujące szkoły, kościoły, uczelnie, szpitale, muzea, więzienia, " -"ratusze, sądy, posterunki policji i straży pożarnej, w tym parkingi, " +"ratusze, sądy, posterunki policji i remizy strażackie, w tym parkingi, " "akademiki i budynki uniwersyteckie. Może również obejmować otwarte publiczne" " tereny zielone, takie jak miejskie tereny wspólne." @@ -205731,7 +211787,7 @@ msgstr "wypożyczalnia łodzi" #: lang/json/overmap_terrain_from_json.py msgid "lighthouse" -msgstr "latarnia" +msgstr "latarnia morska" #: lang/json/overmap_terrain_from_json.py lang/json/snippet_from_json.py msgid "island" @@ -205846,11 +211902,11 @@ msgstr "trzęsawisko" #: lang/json/overmap_terrain_from_json.py msgid "swamp shack" -msgstr "bagienna szopa" +msgstr "chatka na bagnach" #: lang/json/overmap_terrain_from_json.py msgid "swamp shack roof" -msgstr "dach bagiennej szopy" +msgstr "dach chaty na bagnach" #: lang/json/overmap_terrain_from_json.py msgid "campground" @@ -206062,7 +212118,7 @@ msgstr "dach kabiny cukrowej" #: lang/json/overmap_terrain_from_json.py msgid "potters cottage" -msgstr "chata garncarza" +msgstr "domek garncarzy" #: lang/json/overmap_terrain_from_json.py msgid "farm field" @@ -206248,6 +212304,10 @@ msgstr "dół śluzu" msgid "rocky butte" msgstr "skalista iglica" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "wejście z poziomu gruntu" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "obozowisko złomu" @@ -206798,7 +212858,7 @@ msgstr "dach salonu samochodowego" #: lang/json/overmap_terrain_from_json.py msgid "car dealership" -msgstr "diler samochodów" +msgstr "dealer samochodów" #: lang/json/overmap_terrain_from_json.py msgid "tire shop" @@ -206935,7 +212995,11 @@ msgstr "okopy z palami" #: lang/json/overmap_terrain_from_json.py msgid "fabrication workshop survey" -msgstr "zarys warsztat wytwarzania" +msgstr "zarys warsztatu wytwarzania" + +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "zarys warsztatu wytwarzania 2" #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" @@ -206945,25 +213009,41 @@ msgstr "zarys kuźni" msgid "blacksmith shop" msgstr "kuźnia z warsztatem" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" -msgstr "zarys trzody" +msgstr "zarys zagrody hodowlanej" + +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "zarys zagrody hodowlanej 2" #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "zarys magazynu" +#: lang/json/overmap_terrain_from_json.py +msgid "store house survey 2" +msgstr "zarys magazynu 2" + #: lang/json/overmap_terrain_from_json.py msgid "saltworks survey" msgstr "zarys warzelni soli" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" -msgstr "zarys kantyny" +msgstr "zarys stołówki" + +#: lang/json/overmap_terrain_from_json.py +msgid "canteen survey 2" +msgstr "zarys stołówki 2" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" -msgstr "farm survey_2" +msgid "farm survey 2" +msgstr "zarys farmy 2" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" +msgstr "zarys garażu 2" #: lang/json/overmap_terrain_from_json.py msgid "military helipad garage" @@ -207329,6 +213409,10 @@ msgstr "wieża zwiadowcza mi-go" msgid "subway station?" msgstr "stacja metra?" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "korytarz laboratorium" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "reaktor laboratorium naukowego" @@ -207640,11 +213724,11 @@ msgstr "dach kostnicy" #: lang/json/overmap_terrain_from_json.py msgid "fire station" -msgstr "posterunek straży pożarnej" +msgstr "remiza strażacka" #: lang/json/overmap_terrain_from_json.py msgid "fire station roof" -msgstr "dach posterunku straży pożarnej" +msgstr "dach remizy strażackiej" #: lang/json/overmap_terrain_from_json.py msgid "homeless shelter" @@ -208619,7 +214703,7 @@ msgstr "pustynia" #. ~ Sign #: lang/json/palette_from_json.py msgid "Subway Map: stop" -msgstr "" +msgstr "Mapa metra: przystanek " #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -208819,6 +214903,70 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "Znalazłaś ukojenie na dnie butelki. Cholera, napiłabyś się." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "Uzależniony od pigułek nasennych" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" +"Miałeś trudności z zasypianiem, więc zacząłeś brać tabletki nasenne. Problem" +" w tym, że teraz nie możesz już bez nich zasnąć, a Kataklizm komplikuje " +"sprawę." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "Uzależniona od pigułek nasennych" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" +"Miałaś trudności z zasypianiem, więc zaczęłaś brać tabletki nasenne. Problem" +" w tym, że teraz nie możesz już bez nich zasnąć, a Kataklizm komplikuje " +"sprawę." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "Uzależniony od kofeiny" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" +"Kawa była twoim codziennym towarzyszem w przetrwaniu w pracy, ale teraz " +"dostarczenie kofeiny do organizmu będzie o wiele trudniejsze." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "Uzależniona od kofeiny" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" +"Kawa była twoim codziennym towarzyszem w przetrwaniu w pracy, ale teraz " +"dostarczenie kofeiny do organizmu będzie o wiele trudniejsze." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -208949,6 +215097,40 @@ msgstr "" "życia. Dzicz nie jest zatłoczona ludźmi, więc musi być bezpieczna. Racja? " "Tak musi być." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "Bushcraft" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" +"Wynosisz biwakowanie na zupełnie nowy poziom. Spędziłeś noce i weekendy, aby" +" przetrwać w dziczy, mając do pomocy tylko nóż. Może dzięki temu będziesz " +"bezpieczny z dala od ludzi." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "Bushcraft" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" +"Wynosisz biwakowanie na zupełnie nowy poziom. Spędziłaś noce i weekendy, aby" +" przetrwać w dziczy, mając do pomocy tylko nóż. Może dzięki temu będziesz " +"bezpieczna z dala od ludzi." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -208989,10 +215171,10 @@ msgstr "Kocha książki" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" "Uwielbiasz czytać, po prostu nigdy nie masz wystarczająco dużo czasu. Może " -"kataklizm to szczęście w nieszczęściu." +"Kataklizm to szczęście w nieszczęściu." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -209004,10 +215186,10 @@ msgstr "Kocha książki" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" "Uwielbiasz czytać, po prostu nigdy nie masz wystarczająco dużo czasu. Może " -"kataklizm to szczęście w nieszczęściu." +"Kataklizm to szczęście w nieszczęściu." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -209659,6 +215841,36 @@ msgstr "" "Naprawdę lubisz jeść i możesz jeść szybciej oraz jeść i pić więcej niż " "ktokolwiek inny!" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "Maratończyk" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" +"Co roku startowałeś w maratonie bostońskim. Ten trening przydał się, by " +"uniknąć śmierci." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "Maratonka" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" +"Co roku startowałaś w maratonie bostońskim. Ten trening przydał się, by " +"uniknąć śmierci." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -209969,6 +216181,70 @@ msgstr "" "kary za uniki i jest mniej prawdopodobne, że upadniesz, jeśli zostaniesz " "uderzona w walce wręcz, gdy masz na sobie wrotki lub rolki." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "Sztuka i rzemiosło" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" +"Uwielbiałeś wykonywać rzemiosło w domu. Miejmy nadzieję, że pomoże ci to " +"przetrwać teraz, gdy świat poszedł w diabły." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "Sztuka i rzemiosło" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" +"Uwielbiałaś wykonywać rzemiosło w domu. Miejmy nadzieję, że pomoże ci to " +"przetrwać teraz, gdy świat poszedł w diabły." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "Przebudowa samochodu" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" +"Spędzanie czasu w każdy weekend w garażu, pracując nad starym klasycznym " +"samochodem, było twoją ulubioną rozrywką. Nigdy nie ukończyłeś samochodu, " +"ale przynajmniej nauczyłeś się trochę przez lata." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "Przebudowa samochodu" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" +"Spędzanie czasu w każdy weekend w garażu, pracując nad starym klasycznym " +"samochodem, było twoją ulubioną rozrywką. Nigdy nie ukończyłaś samochodu, " +"ale przynajmniej nauczyłaś się trochę przez lata." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -210109,6 +216385,40 @@ msgstr "" "Prowadziłaś graczy przez swoje lochy i twierdze. Teraz jesteś ostatnim " "członkiem swojej drużyny." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "Operator lokalnej radiostacji" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" +"Spędzałeś noce używając, budując i naprawiając stare lokalne radiostacje. " +"Teraz nie masz z kim porozmawiać. Ale nie tracisz nadziei i być może twoja " +"wiedza z zakresu elektroniki może ci jakoś pomóc." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "Operatorka lokalnej radiostacji" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" +"Spędzałaś noce używając, budując i naprawiając stare lokalne radiostacje. " +"Teraz nie masz z kim porozmawiać. Ale nie tracisz nadziei i być może twoja " +"wiedza z zakresu elektroniki może ci jakoś pomóc." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -210159,6 +216469,40 @@ msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" "Twoja umiejętność gry w koszykówkę pozwoli pokonać nieumarłych w dogrywce." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "Strzelec na strzelnicy" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" +"Lubiłeś chodzić do lokalnego sklepu z bronią i strzelać do celu. Czasami " +"nawet do puszek na słupkach ogrodzeniowych. Może gdybyś po prostu wyobraził " +"sobie cele na tych martwych rzeczach, mogłoby to pomóc." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "Strzelczyni na strzelnicy" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" +"Lubiłaś chodzić do lokalnego sklepu z bronią i strzelać do celu. Czasami " +"nawet do puszek na słupkach ogrodzeniowych. Może gdybyś po prostu wyobraziła" +" sobie cele na tych martwych rzeczach, mogłoby to pomóc." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -210183,6 +216527,68 @@ msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" "Profesjonalna załoga medyczna nie przyjdzie, ale ty i tak będziesz żyła." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "Trap" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" +"Nie ma to jak zapach dymu z broni palnej i rozwalanie ceramicznych " +"pomarańczowych dysków na niebie. Czas postrzelać do rzeczy trochę bardziej " +"mięsistych niż gliniane gołębie." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "Trap" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" +"Nie ma to jak zapach dymu z broni palnej i rozwalanie ceramicznych " +"pomarańczowych dysków na niebie. Czas postrzelać do rzeczy trochę bardziej " +"mięsistych niż gliniane gołębie." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "Grillowanie na podwórku" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" +"Lubiłeś zapraszać sąsiedztwo na wspólne podwórko w większość weekendów. Ty, " +"oczywiście, byłeś mistrzem grilla." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "Grillowanie na podwórku" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" +"Lubiłaś zapraszać sąsiedztwo na wspólne podwórko w większość weekendów. Ty, " +"oczywiście, byłaś mistrzynią grilla." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -210616,7 +217022,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Meditation" -msgstr "" +msgstr "Medytacja" #. ~ Profession (male Meditation) description #: lang/json/professions_from_json.py @@ -210631,7 +217037,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Meditation" -msgstr "" +msgstr "Medytacja" #. ~ Profession (female Meditation) description #: lang/json/professions_from_json.py @@ -211105,6 +217511,8 @@ msgid "" "You played with the local team. You're the only one left, but now you can " "use your trusty bat for another purpose. Home run!" msgstr "" +"Grałeś w lokalnej drużynie. Tylko ty zostałeś, ale teraz możesz wykorzystać " +"swój niezawodny kij do innego celu. Biegiem do celu!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -211118,6 +217526,8 @@ msgid "" "You played with the local team. You're the only one left, but now you can " "use your trusty bat for another purpose. Home run!" msgstr "" +"Grałaś w lokalnej drużynie. Tylko ty zostałaś, ale teraz możesz wykorzystać " +"swój niezawodny kij do innego celu. Biegiem do celu!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -211203,6 +217613,9 @@ msgid "" "tours now, but as the saying goes, life is like riding a bicycle: you've got" " to keep moving." msgstr "" +"Byłeś obiecującym kolarzem z błyskotliwą karierą przed tobą zanim to " +"wszystko się stało. Pewnie już nie weźmiesz udziału w Grand Tour, ale jak to" +" mówią, życie jest jak jazda na rowerze, trzeba pedałować dalej." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -211218,6 +217631,9 @@ msgid "" "tours now, but as the saying goes, life is like riding a bicycle: you've got" " to keep moving." msgstr "" +"Byłaś obiecującą kolarką z błyskotliwą karierą przed tobą zanim to wszystko " +"się stało. Pewnie już nie weźmiesz udziału w Grand Tour, ale jak to mówią: " +"życie jest jak jazda na rowerze, trzeba pedałować dalej." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -211233,6 +217649,10 @@ msgid "" " duty have left your shooting skills rusty, and all the medals in the world " "won't protect you now." msgstr "" +"Przeszedłeś przez szczeble kariery od nic nie znaczącego szeregowca do " +"poważanego generała dywizji, szanowanego i odznaczonego. Z drugiej strony, " +"lata pracy za biurkiem sprawiły, że twoje umiejętności strzeleckie " +"zardzewiały, a wszystkie medale świata nie są w stanie cię teraz obronić." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -211248,6 +217668,10 @@ msgid "" " duty have left your shooting skills rusty, and all the medals in the world " "won't protect you now." msgstr "" +"Przeszłaś przez szczeble kariery od nic nie znaczącego szeregowca do " +"poważanej generał dywizji, szanowanej i odznaczonej. Z drugiej strony, lata " +"pracy za biurkiem sprawiły, że twoje umiejętności strzeleckie zardzewiały, a" +" wszystkie medale świata nie są w stanie cię teraz obronić." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -211300,6 +217724,9 @@ msgid "" "the mechanic's trade, keeping the armor running. It's been years since you " "last touched a rifle, and the dead men are marching again…" msgstr "" +"Na początku swojej kariery wojskowej, zostałeś wybrany na dodatkowe " +"szkolenie w zawodzie mechanika, aby utrzymać czołgi w ruchu. Minęły lata, " +"odkąd ostatnio dotykałeś karabinu, a umarlaki znów maszerują..." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -211314,6 +217741,9 @@ msgid "" "the mechanic's trade, keeping the armor running. It's been years since you " "last touched a rifle, and the dead men are marching again…" msgstr "" +"Na początku swojej kariery wojskowej, zostałaś wybrana na dodatkowe " +"szkolenie w zawodzie mechanika, aby utrzymać czołgi w ruchu. Minęły lata, " +"odkąd ostatnio dotykałaś karabinu, a umarlaki znów maszerują..." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -211329,6 +217759,10 @@ msgid "" "years since you last handled a rifle in basic training; now might be the " "time to dust off those skills." msgstr "" +"Twoja praca była prosta: Utrzymuj armię w ruchu. Budowałeś mosty, budowałeś " +"drogi, niszczyłeś umocnienia, usuwałeś miny. Minęły lata od odkąd ostatni " +"raz trzymałeś karabin w podstawowym szkoleniu, teraz może być dobry moment " +"na odświeżenie dawnych umiejętności." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -211344,6 +217778,10 @@ msgid "" "years since you last handled a rifle in basic training; now might be the " "time to dust off those skills." msgstr "" +"Twoja praca była prosta: Utrzymuj armię w ruchu. Budowałaś mosty, budowałaś " +"drogi, niszczyłaś umocnienia, usuwałaś miny. Minęły lata odkąd ostatni raz " +"trzymałaś karabin w podstawowym szkoleniu, teraz może być dobry moment na " +"odświeżenie dawnych umiejętności." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -211358,6 +217796,9 @@ msgid "" "sort of parental figure, and they relied on you to give orders and keep them" " alive. You failed them. And now you're alone." msgstr "" +"Jesteś weteranem kilku misji pokojowych. Prowadziłeś swój oddział jak " +"rodzic, a żołnierze polegali na tobie w wydawaniu rozkazów i utrzymywaniu " +"ich przy życiu. Zawiodłeś ich. A teraz jesteś sam." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -211372,6 +217813,9 @@ msgid "" "sort of parental figure, and they relied on you to give orders and keep them" " alive. You failed them. And now you're alone." msgstr "" +"Jesteś weteranką kilku misji pokojowych. Prowadziłaś swój oddział jak " +"rodzic, a żołnierze polegali na tobie w wydawaniu rozkazów i utrzymywaniu " +"ich przy życiu. Zawiodłaś ich. A teraz jesteś sam." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -211774,6 +218218,9 @@ msgid "" "friends. But for all the crap thrown your way, you're still breathing. For" " now." msgstr "" +"Społeczeństwo zepchnęło cię na margines i zostawiło bez domu, bez rodziny, " +"bez przyjaciół. Ale mimo tego całego gówna rzuconego w twoją stronę, wciąż " +"oddychasz. Na razie." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -211788,6 +218235,9 @@ msgid "" "friends. But for all the crap thrown your way, you're still breathing. For" " now." msgstr "" +"Społeczeństwo zepchnęło cię na margines i zostawiło bez domu, bez rodziny, " +"bez przyjaciół. Ale mimo tego całego gówna rzuconego w twoją stronę, wciąż " +"oddychasz. Na razie." #. ~ Profession (male Helicopter Pilot) description #: lang/json/professions_from_json.py @@ -212115,6 +218565,10 @@ msgid "" "motorcycle to escape. Who's going to respect your authority when the " "government this badge represents doesn't exist anymore?" msgstr "" +"Jako małomiasteczkowy policjant, otrzymałeś wezwanie i byłeś gotów ruszyć na" +" ratunek. Wkrótce to ty potrzebowałeś ratunku i musiałeś porzucić swój " +"motocykl, aby uciec. Kto będzie szanował twój autorytet, gdy rząd, który " +"reprezentuje ta odznaka, już nie istnieje?" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212130,6 +218584,10 @@ msgid "" "motorcycle to escape. Who's going to respect your authority when the " "government this badge represents doesn't exist anymore?" msgstr "" +"Jako małomiasteczkowa policjantka, otrzymałaś wezwanie i byłaś gotowa ruszyć" +" na ratunek. Wkrótce to ty potrzebowałaś ratunku i musiałaś porzucić swój " +"motocykl, aby uciec. Kto będzie szanował twój autorytet, gdy rząd, który " +"reprezentuje ta odznaka, już nie istnieje?" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -212399,6 +218857,10 @@ msgid "" "way to pick up a customer, a riot broke out around you. You took a long " "detour to safety, only to find yourself somewhere unfamiliar." msgstr "" +"Uwielbiasz prowadzić i postanowiłeś zacząć zarabiać na tym pieniądze. W " +"drodze po klienta, wokół Ciebie wybuchły zamieszki. Wyruszyłeś w długi " +"objazd, aby zapewnić sobie bezpieczeństwo, tylko po to, aby znaleźć się w " +"nieznanym miejscu." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212413,6 +218875,10 @@ msgid "" "way to pick up a customer, a riot broke out around you. You took a long " "detour to safety, only to find yourself somewhere unfamiliar." msgstr "" +"Uwielbiasz prowadzić i postanowiłaś zacząć zarabiać na tym pieniądze. W " +"drodze po klienta, wokół Ciebie wybuchły zamieszki. Wyruszyłaś w długi " +"objazd, aby zapewnić sobie bezpieczeństwo, tylko po to, aby znaleźć się w " +"nieznanym miejscu." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -212428,6 +218894,10 @@ msgid "" " took a long detour only to find yourself lost. That call will have to wait" " - you're in an emergency of your own now." msgstr "" +"Jadąc na wezwanie, prawie wjechałeś w zamieszki w mieście. Zbaczając z " +"płonących, zasypanych gruzem ulic, wybrałeś długi objazd, by w końcu się " +"zgubić. To wezwanie będzie musiało poczekać - teraz masz własny nagły " +"wypadek." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212443,6 +218913,10 @@ msgid "" " took a long detour only to find yourself lost. That call will have to wait" " - you're in an emergency of your own now." msgstr "" +"Jadąc na wezwanie, prawie wjechałaś w zamieszki w mieście. Zbaczając z " +"płonących, zasypanych gruzem ulic, wybrałaś długi objazd, by w końcu się " +"zgubić. To wezwanie będzie musiało poczekać - teraz masz własny nagły " +"wypadek." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -212459,6 +218933,11 @@ msgid "" "You veered off onto an old, neglected side road to escape, only to find " "yourself lost and low on gas." msgstr "" +"Zatrudniony przez dużą firmę, wykonywałeś usługi instalacyjne i usuwania " +"usterek w domach niewdzięcznych luddystów. Kiedy wracałeś z ostatniej " +"rozmowy, nagle zostałeś zaatakowany przez coś, co uważałeś za wściekłych " +"buntowników. Żeby uciec, skręciłeś w starą, zaniedbaną boczną drogę, ale " +"okazało się, że się zgubiłeś i zabrakło ci benzyny." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212475,6 +218954,11 @@ msgid "" "You veered off onto an old, neglected side road to escape, only to find " "yourself lost and low on gas." msgstr "" +"Zatrudniona przez dużą firmę, wykonywałaś usługi instalacyjne i usuwania " +"usterek w domach niewdzięcznych luddystów. Kiedy wracałaś z ostatniej " +"rozmowy, nagle zostałaś zaatakowana przez coś, co uważałaś za wściekłych " +"buntowników. Żeby uciec, skręciłaś w starą, zaniedbaną boczną drogę, ale " +"okazało się, że się zgubiłaś i zabrakło ci benzyny." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -212491,6 +218975,11 @@ msgid "" " but now you've gotten lost. At least you're getting a break from the " "hellish screams of children, though you're starting to hear new ones…" msgstr "" +"Zarabiałeś na życie wożąc dzieci do i ze szkoły, a wyboru kariery żałowałeś " +"niemal każdego dnia. Żaden z bachorów nie był na swoim typowym przystanku, a" +" hałas twojego autobusu szybko przyciągnął hordy zombie. Uciekłeś, ale teraz" +" się zgubiłeś. Przynajmniej odpoczniesz od piekielnych wrzasków dzieci, choć" +" zaczynasz już słyszeć nowe..." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212507,6 +218996,11 @@ msgid "" " but now you've gotten lost. At least you're getting a break from the " "hellish screams of children, though you're starting to hear new ones…" msgstr "" +"Zarabiałaś na życie wożąc dzieci do i ze szkoły, a wyboru kariery żałowałaś " +"niemal każdego dnia. Żaden z bachorów nie był na swoim typowym przystanku, a" +" hałas twojego autobusu szybko przyciągnął hordy zombie. Uciekłaś, ale teraz" +" się zgubiłaś. Przynajmniej odpoczniesz od piekielnych wrzasków dzieci, choć" +" zaczynasz już słyszeć nowe..." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -212521,6 +219015,9 @@ msgid "" "robbery. It all went to shit, your backup got eaten, and you were lucky to " "escape with your life and patrol car." msgstr "" +"Jako oficer dyżurny, otrzymałeś wezwanie i byłeś gotowy do reakcji na napad." +" Wszystko poszło w diabły, twoje wsparcie zostało zjedzone, a ty miałeś " +"szczęście, że udało ci się ujść z życiem i samochodem patrolowym." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212535,6 +219032,9 @@ msgid "" "robbery. It all went to shit, your backup got eaten, and you were lucky to " "escape with your life and patrol car." msgstr "" +"Jako oficer dyżurny, otrzymałaś wezwanie i byłaś gotowy do reakcji na napad." +" Wszystko poszło w diabły, twoje wsparcie zostało zjedzone, a ty miałaś " +"szczęście, że udało ci się ujść z życiem i samochodem patrolowym." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -212551,6 +219051,11 @@ msgid "" "act of rebellion against the cruelty of this doomed world. Do not let that " "flame of hope perish inside you." msgstr "" +"Wraz z grupą podobnych sobie osób zbudowałeś w lesie kryjówkę, z której " +"wyruszasz na plądrowanie w przerobionym pickupie. Ostatni wypad nie udał się" +" i teraz wszyscy twoi towarzysze nie żyją. Każdy twój oddech jest aktem " +"buntu przeciwko okrucieństwu tego skazanego na zagładę świata. Nie pozwól, " +"by ten płomień nadziei w tobie zgasł." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212567,6 +219072,11 @@ msgid "" "act of rebellion against the cruelty of this doomed world. Do not let that " "flame of hope perish inside you." msgstr "" +"Wraz z grupą podobnych sobie osób zbudowałaś w lesie kryjówkę, z której " +"wyruszasz na plądrowanie w przerobionym pickupie. Ostatni wypad nie udał się" +" i teraz wszyscy twoi towarzysze nie żyją. Każdy twój oddech jest aktem " +"buntu przeciwko okrucieństwu tego skazanego na zagładę świata. Nie pozwól, " +"by ten płomień nadziei w tobie zgasł." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -212583,6 +219093,11 @@ msgid "" "stockpiled as many supplies as possible and set out in your pickup looking " "for answers." msgstr "" +"Dni spędzone na patrolowaniu rezerwatu i chronieniu ludzi i dzikich zwierząt" +" nauczyły cię wielu przydatnych umiejętności. Po znalezieniu makabrycznej " +"sceny na kempingu i braku odpowiedzi, gdy wezwałeś pomoc przez radio, " +"zgromadziłeś jak najwięcej zapasów i wyruszyłeś swoim pickupem w " +"poszukiwaniu odpowiedzi." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212599,6 +219114,11 @@ msgid "" "stockpiled as many supplies as possible and set out in your pickup looking " "for answers." msgstr "" +"Dni spędzone na patrolowaniu rezerwatu i chronieniu ludzi i dzikich zwierząt" +" nauczyły cię wielu przydatnych umiejętności. Po znalezieniu makabrycznej " +"sceny na kempingu i braku odpowiedzi, gdy wezwałaś pomoc przez radio, " +"zgromadziłaś jak najwięcej zapasów i wyruszyłaś swoim pickupem w " +"poszukiwaniu odpowiedzi." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -212612,6 +219132,8 @@ msgid "" "You're a lumberjack, and you're okay. You felled trees before the world " "ended, and you suspect the undead aren't nearly as tough." msgstr "" +"Jesteś drwalem i dobrze ci z tym. Kładłeś drzewa pokotem zanim skończył się " +"świat i nie sądzisz, żeby nieumarli byli choć w połowie tak twardzi jak one." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212625,6 +219147,8 @@ msgid "" "You're a lumberjack, and you're okay. You felled trees before the world " "ended, and you suspect the undead aren't nearly as tough." msgstr "" +"Jesteś drwalem i dobrze ci z tym. Kładłaś drzewa pokotem zanim skończył się " +"świat, i nie sądzisz żeby nieumarli byli choć w połowie tak twardzi jak one." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -212639,6 +219163,9 @@ msgid "" "irritable and unreasonable than usual today. You showed them the meaning of" " fast food… by running for your life!" msgstr "" +"Klienci eleganckiego baru z burgerami, w którym pracowałeś, byli dziś " +"jeszcze bardziej drażliwi i niedorzeczni niż zwykle. Pokazałeś im, co to " +"znaczy szybkie żarcie... uciekając w popłochu!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212653,6 +219180,9 @@ msgid "" "irritable and unreasonable than usual today. You showed them the meaning of" " fast food… by running for your life!" msgstr "" +"Klienci eleganckiego baru z burgerami, w którym pracowałaś, byli dziś " +"jeszcze bardziej drażliwi i niedorzeczni niż zwykle. Pokazałaś im, co to " +"znaczy szybkie żarcie... uciekając w popłochu!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -212699,6 +219229,11 @@ msgid "" " no one stopping you from your dream of breaking into a military mainframe " "now." msgstr "" +"Pigułki kofeinowe i całonocne przesiadywanie przed ekranem komputera " +"uczyniły z Ciebie eksperta w pisaniu i łamaniu kodu. Niestety, wysiadło " +"zasilanie i nagle twoje elitarne umiejętności wydają się znacznie mniej " +"przydatne. Przynajmniej teraz nikt nie powstrzymuje cię przed spełnieniem " +"twojego marzenia o włamaniu się do wojskowego serwera." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212715,6 +219250,11 @@ msgid "" " no one stopping you from your dream of breaking into a military mainframe " "now." msgstr "" +"Pigułki kofeinowe i całonocne przesiadywanie przed ekranem komputera " +"uczyniły z Ciebie ekspertkę w pisaniu i łamaniu kodu. Niestety, wysiadło " +"zasilanie i nagle twoje elitarne umiejętności wydają się znacznie mniej " +"przydatne. Przynajmniej teraz nikt nie powstrzymuje cię przed spełnieniem " +"twojego marzenia o włamaniu się do wojskowego serwera." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -212834,6 +219374,8 @@ msgid "" "You spent most of your life on a motorcycle, out on the open road with your " "club. Now they're all dead. Time to ride or die." msgstr "" +"Spędziłeś większość życia na motocyklu, na szerokiej drodze wraz z członkami" +" klubu. Teraz wszyscy nie żyją, więc jedź albo giń." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212847,6 +219389,8 @@ msgid "" "You spent most of your life on a motorcycle, out on the open road with your " "club. Now they're all dead. Time to ride or die." msgstr "" +"Spędziłaś większość życia na motocyklu, na szerokiej drodze wraz z członkami" +" klubu. Teraz wszyscy nie żyją, więc jedź albo giń." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -213364,6 +219908,8 @@ msgid "" "Neither snow nor rain nor heat nor gloom of night stays you from the swift " "completion of your appointed rounds, but nobody said anything about zombies." msgstr "" +"Ani śnieg, ani deszcz, ani upał, ani mrok nocy nie powstrzymuje cię przed " +"szybkim wykonaniem wyznaczonych obchodów, ale nikt nie mówił nic o zombie." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -213377,6 +219923,8 @@ msgid "" "Neither snow nor rain nor heat nor gloom of night stays you from the swift " "completion of your appointed rounds, but nobody said anything about zombies." msgstr "" +"Ani śnieg, ani deszcz, ani upał, ani mrok nocy nie powstrzymuje cię przed " +"szybkim wykonaniem wyznaczonych obchodów, ale nikt nie mówił nic o zombie." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -213391,6 +219939,8 @@ msgid "" "The Cataclysm has offered you a chance to escape, but freedom may come with " "a steep price." msgstr "" +"Twój proces był kontrowersyjny, ale ostatecznie znalazłeś się za kratkami. " +"Kataklizm zaoferował ci szansę ucieczki, ale cena wolności może być wysoka." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -213405,6 +219955,8 @@ msgid "" "The Cataclysm has offered you a chance to escape, but freedom may come with " "a steep price." msgstr "" +"Twój proces był kontrowersyjny, ale ostatecznie znalazłaś się za kratkami. " +"Kataklizm zaoferował ci szansę ucieczki, ale cena wolności może być wysoka." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -213489,6 +220041,9 @@ msgid "" "they had the nerve to put you in jail for it. Too bad you can't sell drugs " "to zombies." msgstr "" +"Wydarłeś sobie drogę ze slumsów sprzedając produkt, którego każdy pożądał, a" +" oni mieli czelność wrzucić cię do paki! Szkoda tylko, że zombie nie kupują " +"żadnych narkotyków." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -213503,6 +220058,9 @@ msgid "" "they had the nerve to put you in jail for it. Too bad you can't sell drugs " "to zombies." msgstr "" +"Wydarłaś sobie drogę ze slumsów sprzedając produkt, którego każdy pożądał, a" +" oni mieli czelność wrzucić cię do paki! Szkoda tylko, że zombie nie kupują " +"żadnych narkotyków." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -214781,6 +221339,9 @@ msgid "" " It wouldn't be a lie to say that running is your life. Which is good, " "because now that the end has come, you're running FOR your life." msgstr "" +"Praktykowałeś parkour całe życie i uczyniłeś ze świata swój plac zabaw. Nie " +"byłoby kłamstwem powiedzieć, że bieganie to twoje życie. Co dobrze się " +"składa, bo po końcu świata to bieg PO życie." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -214795,6 +221356,9 @@ msgid "" " It wouldn't be a lie to say that running is your life. Which is good, " "because now that the end has come, you're running FOR your life." msgstr "" +"Praktykowałaś parkour całe życie i uczyniłaś ze świata swój plac zabaw. Nie " +"byłoby kłamstwem powiedzieć, że bieganie to twoje życie. Co dobrze się " +"składa, bo po końcu świata to bieg PO życie." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -214809,6 +221373,9 @@ msgid "" " ever leaving home. You came here to get a taste of New England, but New " "England keeps trying to get a taste of you!" msgstr "" +"To wydawało się wymarzone miejsce na wakacje, ale zaczynasz żałować, że " +"opuściłeś dom. Przybyłeś tu poznać smak Nowej Anglii, a tym czasem Nowa " +"Anglia próbuje poznać jak ty smakujesz!." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -214823,6 +221390,9 @@ msgid "" " ever leaving home. You came here to get a taste of New England, but New " "England keeps trying to get a taste of you!" msgstr "" +"To wydawało się wymarzone miejsce na wakacje, ale zaczynasz żałować, że " +"opuściłaś dom. Przybyłaś tu poznać smak Nowej Anglii, a tym czasem Nowa " +"Anglia próbuje poznać jak ty smakujesz!." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -215493,6 +222063,9 @@ msgid "" "tried to bite you. To top it off, it seems that this wasn't some sort of " "bad high, as the whole town tried going for your throat too." msgstr "" +"Miałeś zamiar ubić największego jak dotąd targu, ale kiedy spotkałeś kupca, " +"próbował cię ugryźć. Na domiar złego wygląda na to, że nie był to jakiś zły " +"haj gościa, ponieważ całe miasto też próbowało dobrać ci się do gardła." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -215507,11 +222080,14 @@ msgid "" "tried to bite you. To top it off, it seems that this wasn't some sort of " "bad high, as the whole town tried going for your throat too." msgstr "" +"Miałaś zamiar ubić największego jak dotąd targu, ale kiedy spotkałaś kupca, " +"próbował cię ugryźć. Na domiar złego wygląda na to, że nie był to jakiś zły " +"haj gościa, ponieważ całe miasto też próbowało dobrać ci się do gardła." #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Mafia Boss" -msgstr "" +msgstr "Szef mafii" #. ~ Profession (male Mafia Boss) description #: lang/json/professions_from_json.py @@ -215532,7 +222108,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Mafia Boss" -msgstr "" +msgstr "Szefowa mafii" #. ~ Profession (female Mafia Boss) description #: lang/json/professions_from_json.py @@ -215550,6 +222126,80 @@ msgstr "" " nadszedł pierwszy. Twoja ekipa odeszła, ale twoje poprzednie życie " "przygotowało cię do świata, w którym przemoc jest powszechną walutą." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "Badacz zjawisk paranormalnych" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" +"Zostałeś zwolniony z posady profesora parapsychologii na lokalnym " +"uniwersytecie i rozpocząłeś własną działalność jako badacz zjawisk " +"paranormalnych. Twoi dawni koledzy nie pochwalali twoich badań, ale wygląda " +"na to, że teraz ci się to opłaciło." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "Badaczka zjawisk paranormalnych" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" +"Zostałaś zwolniona z posady profesora parapsychologii na lokalnym " +"uniwersytecie i rozpoczęłaś własną działalność jako badaczka zjawisk " +"paranormalnych. Twoi dawni koledzy nie pochwalali twoich badań, ale wygląda " +"na to, że teraz ci się to opłaciło." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "Obserwator ptaków" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" +"Byłeś w swoim ulubionym parku i przyglądałeś się drozdom, kiedy nastąpił " +"Kataklizm. Teraz wszystko co masz to lornetka i mnóstwo ciekawostek o " +"lokalnych ptakach, którymi możesz się podzielić z ocalałymi, których " +"znajdziesz." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "Obserwatorka ptaków" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" +"Byłaś w swoim ulubionym parku i przyglądałaś się drozdom, kiedy nastąpił " +"Kataklizm. Teraz wszystko co masz to lornetka i mnóstwo ciekawostek o " +"lokalnych ptakach, którymi możesz się podzielić z ocalałymi, których " +"znajdziesz." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -216074,7 +222724,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Uplifted Enforcer" -msgstr "Uniesiony egzekutor" +msgstr "Wzniesiony egzekutor" #. ~ Profession (male Uplifted Enforcer) description #: lang/json/professions_from_json.py @@ -216098,7 +222748,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Uplifted Enforcer" -msgstr "Uniesiony egzekutor" +msgstr "Wzniesiony egzekutor" #. ~ Profession (female Uplifted Enforcer) description #: lang/json/professions_from_json.py @@ -216520,7 +223170,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "CRIT Enforcer" -msgstr "Funkcjonariusz CRIT" +msgstr "Egzekutor CRIT" #. ~ Profession (male CRIT Enforcer) description #: lang/json/professions_from_json.py @@ -216546,7 +223196,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "CRIT Enforcer" -msgstr "Funkcjonariuszka CRIT" +msgstr "Egzekutorka CRIT" #. ~ Profession (female CRIT Enforcer) description #: lang/json/professions_from_json.py @@ -216681,7 +223331,7 @@ msgstr "" "musiałeś przetrwać nie mając nic poza kamieniami, patykami i roślinami. " "Jednakże, po zbyt wielu drinkach (20) w lokalnym barze i wdaniu się w bójkę " "(nokaut) z jednym z twoich dowódców podczas pijackiej bójki, zostałeś " -"pozbawiony rangi i wysłany do lasu z twoim obecnym ekwipunkiem by " +"pozbawiony rangi i wysłany do lasu z twoim obecnym ekwipunkiem, by " "przeprowadzić próbę przetrwania. Po godzinie rozglądania się po lesie w " "poszukiwaniu dobrego schronienia, zadzwoniło twoje radio i zostałeś " "poinformowany o tym, że świat nagle się kończy. Oczywiście nikt nie ma " @@ -216715,7 +223365,7 @@ msgstr "" "wroga i musiałaś przetrwać nie mając nic poza kamieniami, patykami i " "roślinami. Jednakże, po zbyt wielu drinkach (20) w lokalnym barze i wdaniu " "się w bójkę (nokaut) z jednym z twoich dowódców podczas pijackiej bójki, " -"zostałaś pozbawiony rangi i wysłana do lasu z twoim obecnym ekwipunkiem by " +"zostałaś pozbawiony rangi i wysłana do lasu z twoim obecnym ekwipunkiem, by " "przeprowadzić próbę przetrwania. Po godzinie rozglądania się po lesie w " "poszukiwaniu dobrego schronienia, zadzwoniło twoje radio i zostałaś " "poinformowana o tym, że świat nagle się kończy. Oczywiście nikt nie ma " @@ -220651,7 +227301,7 @@ msgstr "" #: lang/json/proficiency_from_json.py msgid "Carving" -msgstr "Rzeźbienie" +msgstr "Struganie" #. ~ Description for Carving #: lang/json/proficiency_from_json.py @@ -220982,6 +227632,32 @@ msgstr "" "Potrafisz dostrzegać wyróżniające się rzeczy, takie jak pułapki czy " "zasadzki." +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "Debug słabe punkty" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" +"Podstawowe ulepszenie szansy trafienia słabych punktów potworów ze słabymi " +"punktami." + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "Expert debug słabych punków" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" +"Eksperckie ulepszenie szansy trafienia słabych punktów potworów ze słabymi " +"punktami." + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "Skręcanie włókien" @@ -221390,7 +228066,7 @@ msgstr "BAZY" #. ~ Crafting recipes subcategory of 'BUILDING' category #: lang/json/recipe_category_from_json.py msgid "EXPANSIONS" -msgstr "ROZBUDOWY" +msgstr "ROZSZERZENIA" #. ~ Crafting recipes category name #: lang/json/recipe_category_from_json.py @@ -221484,193 +228160,224 @@ msgstr "RUNY" #: lang/json/recipe_from_json.py msgid "Stuff THE MAN doesn't want you to know" -msgstr "Rzeczy o których FACET nie chce żebyś wiedziała" +msgstr "Rzeczy o których FACET nie chce, żebyś wiedziała" #: lang/json/recipe_from_json.py msgid "Sticky Rice Hedgerows" -msgstr "" +msgstr "żywopłot z lepkiego ryżu" #: lang/json/recipe_from_json.py msgid "Low-Carb Sashimi Donburi" -msgstr "" +msgstr "sashimi donburi o niskiej zawartości węglowodanów" #: lang/json/recipe_from_json.py msgid "Royal Penny Tea" -msgstr "" +msgstr "herbatka królewiego pensa" #: lang/json/recipe_from_json.py msgid "Sir Tenderloin the Toothsome" -msgstr "" +msgstr "Sir Tenderloin Wyborny" #: lang/json/recipe_from_json.py msgid "Shagbark Nut Ambrosia" -msgstr "" +msgstr "ambrozja orzesznika" #: lang/json/recipe_from_json.py msgid "Natural Beet Sugar" -msgstr "" +msgstr "naturalny cukier buraczany" #: lang/json/recipe_from_json.py msgid "Leprechaun Sausage" -msgstr "" +msgstr "kiełbasa skrzata" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the southern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"południowej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in S shack" -msgstr "" +msgstr "para łóżek z materacami w południowej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the southeastern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"południowo-wschodniej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in SE shack" -msgstr "" +msgstr "para łóżek z materacami w południowo-wschodniej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the eastern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych we " +"wschodniej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in E shack" -msgstr "" +msgstr "para łóżek z materacami we wschodniej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the northeastern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"północno-wschodniej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in NE shack" -msgstr "" +msgstr "para łóżek z materacami w północno-wschodniej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the northern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"północnej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in N shack" -msgstr "" +msgstr "para łóżek z materacami w północnej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the northwestern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"północno-zachodniej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in NW shack" -msgstr "" +msgstr "para łóżek z materacami w północno-zachodniej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the western shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"zachodniej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in W shack" -msgstr "" +msgstr "para łóżek z materacami w zachodniej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the southwestern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"południowo-zachodniej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in SW shack" -msgstr "" +msgstr "para łóżek z materacami w południowo-zachodniej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the southern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w południowej " +"chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in S shack" -msgstr "" +msgstr "para sienników w południowej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the southeastern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w południowo-" +"wschodniej chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in SE shack" -msgstr "" +msgstr "para sienników w południowo-wschodniej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the eastern shack for our survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych we wschodniej " +"chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in E shack" -msgstr "" +msgstr "para sienników we wschodniej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the northeastern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w północno-" +"wschodniej chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in NE shack" -msgstr "" +msgstr "para sienników w północno-wschodniej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the northern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w północnej chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in N shack" -msgstr "" +msgstr "para sienników w północnej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the northwestern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w północno-" +"zachodniej chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in NW shack" -msgstr "" +msgstr "para sienników w północno-zachodniej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the western shack for our survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w zachodniej " +"chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in W shack" -msgstr "" +msgstr "para sienników w zachodniej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the southwestern shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w południowo-" +"zachodniej chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in SW shack" -msgstr "" +msgstr "para sienników w południowo-zachodniej chacie" #: lang/json/recipe_from_json.py msgid "We should survey the base site and set up a bulletin board." @@ -221680,12 +228387,14 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "basic survey" -msgstr "badanie miejsca na obóz" +msgstr "podstawowy zarys" #: lang/json/recipe_from_json.py msgid "" "Digging a root cellar will allow us trapping small game and preserving it." msgstr "" +"Wykopanie ziemianki pozwoli nam na odławianie drobnej zwierzyny i jej " +"konserwację." #: lang/json/recipe_from_json.py lang/json/terrain_from_json.py msgid "root cellar" @@ -221696,132 +228405,143 @@ msgid "" "Digging a well will give us easy access to water and allow us to send out " "combat patrols or scouts." msgstr "" +"Wykopanie studni zapewni nam łatwy dostęp do wody i umożliwi wysyłanie " +"patroli bojowych lub zwiadowców." #: lang/json/recipe_from_json.py msgid "water well" -msgstr "" +msgstr "studnia" #: lang/json/recipe_from_json.py msgid "Let's set up a radio tower to improve our recruitment efforts." -msgstr "" +msgstr "Postawmy wieżę radiową, aby usprawnić nasze działania rekrutacyjne." #: lang/json/recipe_from_json.py msgid "" "We should dig some pits for palisade segments to block entrances to camp." msgstr "" +"Powinniśmy wykopać kilka dołów pod segmenty palisady, aby zablokować wejścia" +" do obozu." #: lang/json/recipe_from_json.py msgid "dig pits" -msgstr "" +msgstr "wykop doły" #: lang/json/recipe_from_json.py msgid "We should build palisade segments to block entrances to camp." msgstr "" +"Powinniśmy zbudować segmenty palisady, aby zablokować wejścia do obozu." #: lang/json/recipe_from_json.py msgid "build palisade segments" -msgstr "" +msgstr "zbuduj segmenty palisady" #: lang/json/recipe_from_json.py msgid "We should build a pair of reinforced doors to secure camp's entrance." msgstr "" +"Powinniśmy zbudować parę wzmocnionych drzwi, aby zabezpieczyć wejście do " +"obozu." #: lang/json/recipe_from_json.py msgid "build reinforced doors" -msgstr "" +msgstr "zbuduj wzmocnione drzwi" #: lang/json/recipe_from_json.py msgid "We should build a pair of metal doors to secure camp's entrance." msgstr "" +"Powinniśmy zbudować parę metalowych drzwi, aby zabezpieczyć wejście do " +"obozu." #: lang/json/recipe_from_json.py msgid "build metal doors" -msgstr "" +msgstr "zbuduj metalowe drzwi" #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a log shack with a wooden roof in the " "southern part of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z kłód z drewnianym dachem w " +"południowej części obozu." #: lang/json/recipe_from_json.py msgid "log shack" -msgstr "" +msgstr "chata z kłód" #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a log shack with a wooden roof in the " "southeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z drewnianych bali i drewnianym " -"dachem w południowo-wschodniej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z kłód z drewnianym dachem w " +"południowo-wschodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a log shack with a wooden roof in the eastern" " part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z drewnianych bali i drewnianym " -"dachem we wschodniej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z kłód z drewnianym dachem we " +"wschodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a log shack with a wooden roof in the " "northeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z drewnianych bali i drewnianym " -"dachem w północno-wschodniej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z kłód z drewnianym dachem w " +"północno-wschodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a log shack with a wooden roof in the " "northern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z drewnianych bali i drewnianym " -"dachem w północnej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z kłód z drewnianym dachem w " +"północnej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a log shack with a wooden roof in the " "northwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z drewnianych bali i drewnianym " -"dachem w północno-zachodniej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z kłód z drewnianym dachem w " +"północno-zachodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a log shack with a wooden roof in the western" " part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z drewnianych bali i drewnianym " -"dachem w zachodniej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z kłód z drewnianym dachem w " +"zachodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a log shack with a wooden roof in the " "southwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z drewnianych bali i drewnianym " -"dachem w południowo-zachodniej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z kłód z drewnianym dachem w " +"południowo-zachodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a metal shack with a metal roof in the " "southern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj metalową szopę z metalowym dachem w " +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " "południowej części obozu." #: lang/json/recipe_from_json.py msgid "metal shack" -msgstr "metalowa szopa" +msgstr "metalowa chata" #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a metal shack with a metal roof in the " "southeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj metalową szopę z metalowym dachem w " +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " "południowo-wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -221829,7 +228549,7 @@ msgid "" "We need some shelter, so build a metal shack with a metal roof in the " "eastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj metalową szopę z metalowym dachem we " +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem we " "wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -221837,7 +228557,7 @@ msgid "" "We need some shelter, so build a metal shack with a metal roof in the " "northeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj metalową szopę z metalowym dachem w " +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " "północno-wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -221845,7 +228565,7 @@ msgid "" "We need some shelter, so build a metal shack with a metal roof in the " "northern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj metalową szopę z metalowym dachem w " +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " "północnej części obozu." #: lang/json/recipe_from_json.py @@ -221853,7 +228573,7 @@ msgid "" "We need some shelter, so build a metal shack with a metal roof in the " "northwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj metalową szopę z metalowym dachem w " +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " "północno-zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -221861,7 +228581,7 @@ msgid "" "We need some shelter, so build a metal shack with a metal roof in the " "western part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj metalową szopę z metalowym dachem w " +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " "zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -221869,7 +228589,7 @@ msgid "" "We need some shelter, so build a metal shack with a metal roof in the " "southwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj metalową szopę z metalowym dachem w " +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " "południowo-zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -221877,87 +228597,87 @@ msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "in the southern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj żywiczną szopę z dachem z żywicy mi-go" +"Potrzebujemy schronienia, więc zbuduj żywiczną chatę z dachem z żywicy mi-go" " w południowej części obozu." #: lang/json/recipe_from_json.py msgid "mi-go resin shack" -msgstr "szopa z żywicy mi-go" +msgstr "chata z żywicy mi-go" #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "in the southeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj żywiczną szopę z dachem z żywicy mi-go" -" w południowo-wschodniej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w południowo-wschodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "in the eastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj żywiczną szopę z dachem z żywicy mi-go" -" we wschodniej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go we wschodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "in the northeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj żywiczną szopę z dachem z żywicy mi-go" -" w północno-wschodniej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w północno-wschodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "in the northern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj żywiczną szopę z dachem z żywicy mi-go" -" w północnej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w północnej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "in the northwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj żywiczną szopę z dachem z żywicy mi-go" -" w północno-zachodniej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w północno-zachodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "in the western part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj żywiczną szopę z dachem z żywicy mi-go" -" w zachodniej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w zachodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "in the southwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj żywiczną szopę z dachem z żywicy mi-go" -" w południowo-zachodniej części obozu." +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w południowo-zachodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a rammed earth shack with a sod roof in the " "southern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z ubitej ziemi z dachem z darni " +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " "w południowej części obozu." #: lang/json/recipe_from_json.py msgid "rammed earth shack" -msgstr "szopa z ubitej ziemi" +msgstr "chata z ubitej ziemi" #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a rammed earth shack with a sod roof in the " "southeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z ubitej ziemi z dachem z darni " +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " "w południowo-wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -221965,7 +228685,7 @@ msgid "" "We need some shelter, so build a rammed earth shack with a sod roof in the " "eastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z ubitej ziemi z dachem z darni " +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " "we wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -221973,7 +228693,7 @@ msgid "" "We need some shelter, so build a rammed earth shack with a sod roof in the " "northeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z ubitej ziemi z dachem z darni " +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " "w północno-wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -221981,7 +228701,7 @@ msgid "" "We need some shelter, so build a rammed earth shack with a sod roof in the " "northern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z ubitej ziemi z dachem z darni " +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " "w północnej części obozu." #: lang/json/recipe_from_json.py @@ -221989,7 +228709,7 @@ msgid "" "We need some shelter, so build a rammed earth shack with a sod roof in the " "northwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z ubitej ziemi z dachem z darni " +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " "w północno-zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -221997,7 +228717,7 @@ msgid "" "We need some shelter, so build a rammed earth shack with a sod roof in the " "western part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z ubitej ziemi z dachem z darni " +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " "we zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -222005,7 +228725,7 @@ msgid "" "We need some shelter, so build a rammed earth shack with a sod roof in the " "southwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj szopę z ubitej ziemi z dachem z darni " +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " "w południowo-zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -222013,19 +228733,19 @@ msgid "" "We need some shelter, so build a stone shack with a wooden roof in the " "southern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj kamienną szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " "południowej części obozu." #: lang/json/recipe_from_json.py msgid "stone shack" -msgstr "kamienna szopa" +msgstr "kamienna chata" #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a stone shack with a wooden roof in the " "southeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj kamienną szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " "południowo-wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -222033,7 +228753,7 @@ msgid "" "We need some shelter, so build a stone shack with a wooden roof in the " "eastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj kamienną szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " "wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -222041,7 +228761,7 @@ msgid "" "We need some shelter, so build a stone shack with a wooden roof in the " "northeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj kamienną szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " "północno-wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -222049,7 +228769,7 @@ msgid "" "We need some shelter, so build a stone shack with a wooden roof in the " "northern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj kamienną szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " "północnej części obozu." #: lang/json/recipe_from_json.py @@ -222057,7 +228777,7 @@ msgid "" "We need some shelter, so build a stone shack with a wooden roof in the " "northwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj kamienną szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " "północno-zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -222065,7 +228785,7 @@ msgid "" "We need some shelter, so build a stone shack with a wooden roof in the " "western part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj kamienną szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " "zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -222073,7 +228793,7 @@ msgid "" "We need some shelter, so build a stone shack with a wooden roof in the " "southwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj kamienną szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " "południowo-zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -222081,19 +228801,19 @@ msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof in " "the southern part of the camp." msgstr "" -"Potrzebujemy schronienia, zbuduj więc szopę z szachulca z dachem z darni w " +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni w " "południowej części obozu." #: lang/json/recipe_from_json.py msgid "wattle and daub shack" -msgstr "szachulcowa szopa" +msgstr "szachulcowa chata" #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof in " "the southeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, zbuduj więc szopę z szachulca z dachem z darni w " +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni w " "południowej części obozu." #: lang/json/recipe_from_json.py @@ -222101,7 +228821,7 @@ msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof in " "the eastern part of the camp." msgstr "" -"Potrzebujemy schronienia, zbuduj więc szopę z szachulca z dachem z darni we " +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni we " "wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -222109,7 +228829,7 @@ msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof in " "the northeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, zbuduj więc szopę z szachulca z dachem z darni w " +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni w " "północno-wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -222117,7 +228837,7 @@ msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof in " "the northern part of the camp." msgstr "" -"Potrzebujemy schronienia, zbuduj więc szopę z szachulca z dachem z darni w " +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni w " "północnej części obozu." #: lang/json/recipe_from_json.py @@ -222125,7 +228845,7 @@ msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof in " "the northwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, zbuduj więc szopę z szachulca z dachem z darni w " +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni w " "północno-zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -222133,7 +228853,7 @@ msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof in " "the western part of the camp." msgstr "" -"Potrzebujemy schronienia, zbuduj więc szopę z szachulca z dachem z darni we " +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni we " "zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -222141,7 +228861,7 @@ msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof in " "the southwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, zbuduj więc szopę z szachulca z dachem z darni w " +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni w " "południowo-zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -222149,19 +228869,19 @@ msgid "" "We need some shelter, so build a wooden shack with a wooden roof in the " "southern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj drewnianą szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " "południowej części obozu." #: lang/json/recipe_from_json.py msgid "wooden shack" -msgstr "drewniana szopa" +msgstr "drewniana chata" #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wooden shack with a wooden roof in the " "southeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj drewnianą szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " "południowo-wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -222169,7 +228889,7 @@ msgid "" "We need some shelter, so build a wooden shack with a wooden roof in the " "eastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj drewnianą szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " "wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -222177,7 +228897,7 @@ msgid "" "We need some shelter, so build a wooden shack with a wooden roof in the " "northeastern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj drewnianą szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " "północno-wschodniej części obozu." #: lang/json/recipe_from_json.py @@ -222185,7 +228905,7 @@ msgid "" "We need some shelter, so build a wooden shack with a wooden roof in the " "northern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj drewnianą szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " "północnej części obozu." #: lang/json/recipe_from_json.py @@ -222193,7 +228913,7 @@ msgid "" "We need some shelter, so build a wooden shack with a wooden roof in the " "northwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj drewnianą szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " "północno-zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -222201,7 +228921,7 @@ msgid "" "We need some shelter, so build a wooden shack with a wooden roof in the " "western part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj drewnianą szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " "zachodniej części obozu." #: lang/json/recipe_from_json.py @@ -222209,178 +228929,188 @@ msgid "" "We need some shelter, so build a wooden shack with a wooden roof in the " "southwestern part of the camp." msgstr "" -"Potrzebujemy schronienia, więc zbuduj drewnianą szopę z drewnianym dachem w " +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " "południowo-zachodniej części obozu." #: lang/json/recipe_from_json.py msgid "" "We need to barricade front windows, let's build wooden walls over them." msgstr "" +"Musimy zabarykadować okna frontowe, zbudujmy nad nimi drewniane ściany." #: lang/json/recipe_from_json.py msgid "wooden barricades" -msgstr "" +msgstr "drewniane barykady" #: lang/json/recipe_from_json.py msgid "" "We need to barricade front windows, let's build mi-go resin walls over them." msgstr "" +"Musimy zabarykadować okna frontowe, zbudujmy nad nimi ściany z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "mi-go resin barricades" -msgstr "" +msgstr "barykady z żywicy mi-go" #: lang/json/recipe_from_json.py msgid "We could build butchery rack to start hunting larger animals." msgstr "" +"Możemy zbudować stojak rzeźniczy, aby zacząć polować na większe zwierzęta." #: lang/json/recipe_from_json.py msgid "butchery rack" -msgstr "" +msgstr "stojak rzeźniczy" #: lang/json/recipe_from_json.py msgid "We should reinforce front doors to make this base safer." msgstr "" +"Powinniśmy wzmocnić drzwi wejściowe, aby uczynić tę bazę bezpieczniejszą." #: lang/json/recipe_from_json.py msgid "reinforce doors" -msgstr "" +msgstr "wzmocnij drzwi" #: lang/json/recipe_from_json.py msgid "Survey military helipad garage." -msgstr "" +msgstr "Wymierz teren na garaż wojskowego lądowiska śmigłowca." #: lang/json/recipe_from_json.py msgid "military helipad garage survey" -msgstr "" +msgstr "zarys garażu wojskowego lądowiska śmigłowca" #: lang/json/recipe_from_json.py msgid "Digging a root cellar will help us preserving fish and other food." msgstr "" +"Wykopanie ziemianki pomoże nam w przechowywaniu ryb i innych produktów " +"spożywczych." #: lang/json/recipe_from_json.py msgid "We must barricade windows, let's use wooden walls." -msgstr "" +msgstr "Musimy zabarykadować okna, użyjmy drewnianych ścian." #: lang/json/recipe_from_json.py msgid "We must barricade windows, let's use resin walls." -msgstr "" +msgstr "Musimy zabarykadować okna, użyjmy ścian z żywicy." #: lang/json/recipe_from_json.py msgid "resin barricades" -msgstr "" +msgstr "barykady z żywicy" #: lang/json/recipe_from_json.py msgid "Building a butchery rack will allow us hunting bigger animals." msgstr "" +"Zbudowanie stojaka rzeźniczego pozwoli nam na polowanie na większe " +"zwierzęta." #: lang/json/recipe_from_json.py msgid "We should reinforce doors to further secure our base." msgstr "" +"Powinniśmy wzmocnić drzwi, aby jeszcze bardziej zabezpieczyć naszą bazę." #: lang/json/recipe_from_json.py msgid "Let's build 1. pair of mattress beds in place of desks." -msgstr "" +msgstr "Zbudujmy 1. parę łóżek z materacami w miejsce biurek." #: lang/json/recipe_from_json.py msgid "build 1. pair of mattress beds" -msgstr "" +msgstr "zbuduj 1. parę łóżek z materacami" #: lang/json/recipe_from_json.py msgid "Let's build 2. pair of mattress beds in place of desks." -msgstr "" +msgstr "Zbudujmy 2. parę łóżek z materacami w miejsce biurek." #: lang/json/recipe_from_json.py msgid "build 2. pair of mattress beds" -msgstr "" +msgstr "zbuduj 2. parę łóżek z materacami" #: lang/json/recipe_from_json.py msgid "Let's build 3. pair of mattress beds in place of desks." -msgstr "" +msgstr "Zbudujmy 3. parę łóżek z materacami w miejsce biurek." #: lang/json/recipe_from_json.py msgid "build 3. pair of mattress beds" -msgstr "" +msgstr "zbuduj 3. parę łóżek z materacami" #: lang/json/recipe_from_json.py msgid "Let's build 4. pair of mattress beds in place of desks." -msgstr "" +msgstr "Zbudujmy 4. parę łóżek z materacami w miejsce biurek." #: lang/json/recipe_from_json.py msgid "build 4. pair of mattress beds" -msgstr "" +msgstr "zbuduj 4. parę łóżek z materacami" #: lang/json/recipe_from_json.py msgid "Let's build 5. pair of mattress beds in place of desks." -msgstr "" +msgstr "Zbudujmy 5. parę łóżek z materacami w miejsce biurek." #: lang/json/recipe_from_json.py msgid "build 5. pair of mattress beds" -msgstr "" +msgstr "zbuduj 5. parę łóżek z materacami" #: lang/json/recipe_from_json.py msgid "Let's build 1. pair of straw beds in place of desks." -msgstr "" +msgstr "Zbudujmy 1. parę sienników w miejsce biurek." #: lang/json/recipe_from_json.py msgid "build 1. pair of straw beds" -msgstr "" +msgstr "zbuduj 1. parę sienników" #: lang/json/recipe_from_json.py msgid "Let's build 2. pair of straw beds in place of desks." -msgstr "" +msgstr "Zbudujmy 2. parę sienników w miejsce biurek." #: lang/json/recipe_from_json.py msgid "build 2. pair of straw beds" -msgstr "" +msgstr "zbuduj 2. parę sienników" #: lang/json/recipe_from_json.py msgid "Let's build 3. pair of straw beds in place of desks." -msgstr "" +msgstr "Zbudujmy 3. parę sienników w miejsce biurek." #: lang/json/recipe_from_json.py msgid "build 3. pair of straw beds" -msgstr "" +msgstr "zbuduj 3. parę sienników" #: lang/json/recipe_from_json.py msgid "Let's build 4. pair of straw beds in place of desks." -msgstr "" +msgstr "Zbudujmy 4. parę sienników w miejsce biurek." #: lang/json/recipe_from_json.py msgid "build 4. pair of straw beds" -msgstr "" +msgstr "zbuduj 4. parę sienników" #: lang/json/recipe_from_json.py msgid "Let's build 5. pair of straw beds in place of desks." -msgstr "" +msgstr "Zbudujmy 5. parę sienników w miejsce biurek." #: lang/json/recipe_from_json.py msgid "build 5. pair of straw beds" -msgstr "" +msgstr "zbuduj 5. parę sienników" #: lang/json/recipe_from_json.py msgid "Survey Light Industry Workshop." -msgstr "" +msgstr "Wymierz teren na warsztat przemysłu lekkiego" #: lang/json/recipe_from_json.py msgid "expansion survey" -msgstr "" +msgstr "zarys rozszerzenia" #: lang/json/recipe_from_json.py msgid "Let's add a drop hammer for even more crafting possibilities." msgstr "" +"Dodajmy młot kafarowy, aby uzyskać jeszcze więcej możliwości wytwarzania." #: lang/json/recipe_from_json.py msgid "drop hammer" -msgstr "" +msgstr "młot kafarowy" #: lang/json/recipe_from_json.py msgid "Let's remove plants from garden and plow a few plots." -msgstr "" +msgstr "Usuńmy rośliny z ogrodu i zaorajmy kilka działek." #: lang/json/recipe_from_json.py msgid "prepare garden" -msgstr "" +msgstr "przygotuj ogród" #: lang/json/recipe_from_json.py msgid "build a radio tower and console" @@ -222388,363 +229118,416 @@ msgstr "zbuduj wieżę radiową i konsolę komunikacyjną" #: lang/json/recipe_from_json.py msgid "Survey mansion's entrance." -msgstr "" +msgstr "Wymierz teren na wejście rezydencji." #: lang/json/recipe_from_json.py msgid "entrance survey" -msgstr "" +msgstr "zarys wejścia" #: lang/json/recipe_from_json.py msgid "Survey mansion's swimming pool." -msgstr "" +msgstr "Wymierz basen rezydencji." #: lang/json/recipe_from_json.py msgid "swimming pool survey" -msgstr "" +msgstr "zarys basenu" #: lang/json/recipe_from_json.py msgid "Survey mansion's bedrooms." -msgstr "" +msgstr "Wymierz sypialnie rezydencji." #: lang/json/recipe_from_json.py msgid "bedrooms survey" -msgstr "" +msgstr "zarys sypialni" #: lang/json/recipe_from_json.py msgid "Survey mansion's???." -msgstr "" +msgstr "Wymierz ??? rezydencji." #: lang/json/recipe_from_json.py msgid "??? survey" -msgstr "" +msgstr "zarys ???" #: lang/json/recipe_from_json.py msgid "Survey mansion's kitchen." -msgstr "" +msgstr "Wymierz kuchnię rezydencji." #: lang/json/recipe_from_json.py msgid "Survey mansion's library." -msgstr "" +msgstr "Wymierz bibliotekę rezydencji." #: lang/json/recipe_from_json.py msgid "library survey" -msgstr "" +msgstr "zarys biblioteki" #: lang/json/recipe_from_json.py msgid "Survey mansion's bedroom." -msgstr "" +msgstr "Wymierz sypialnię rezydencji." #: lang/json/recipe_from_json.py msgid "bedroom survey" -msgstr "" +msgstr "zarys sypialni" #: lang/json/recipe_from_json.py msgid "Survey mansion's living rooms." -msgstr "" +msgstr "Wymierz salony rezydencji" #: lang/json/recipe_from_json.py msgid "living rooms survey" -msgstr "" +msgstr "zarys salonów" #: lang/json/recipe_from_json.py msgid "swimming survey" -msgstr "" +msgstr "zarys pływalni" #: lang/json/recipe_from_json.py msgid "Survey mansion's bar." -msgstr "" +msgstr "Wymierz bar rezydencji." #: lang/json/recipe_from_json.py msgid "bar survey" -msgstr "" +msgstr "zarys baru" #: lang/json/recipe_from_json.py msgid "Let's build a bunk bed." -msgstr "" +msgstr "Zbudujmy łóżko piętrowe." #: lang/json/recipe_from_json.py msgid "Let's build another bunk bed." -msgstr "" +msgstr "Zbudujmy kolejne łóżko piętrowe." #: lang/json/recipe_from_json.py msgid "another bunk bed" -msgstr "" +msgstr "kolejne łóżko piętrowe" #: lang/json/recipe_from_json.py msgid "" "Digging a well will give us easy access to water and allow us to start small" " farm." msgstr "" +"Wykopanie studni zapewni nam łatwy dostęp do wody i pozwoli na założenie " +"małej farmy." #: lang/json/recipe_from_json.py msgid "Let's plow some plots." -msgstr "" +msgstr "Zaorajmy kilka poletek." #: lang/json/recipe_from_json.py msgid "small farm" -msgstr "" +msgstr "mała farma" #: lang/json/recipe_from_json.py msgid "" "We could try to fix reactor's controller to power lights, it would really " "help us in planning missions." msgstr "" +"Moglibyśmy spróbować naprawić sterownik reaktora, aby zasilał światła, to " +"bardzo pomogłoby nam w planowaniu misji." #: lang/json/recipe_from_json.py msgid "fix reactor's controller" -msgstr "" +msgstr "napraw sterownik reaktora" #: lang/json/recipe_from_json.py msgid "" "Let's set up a radio tower to improve our recruitment efforts, we will " "redirect some power into it from nuclear reactor." msgstr "" +"Postawmy wieżę radiową, aby usprawnić nasze działania rekrutacyjne, " +"przekierujemy do niej część energii z reaktora jądrowego." #: lang/json/recipe_from_json.py msgid "" "Let's build a log shack with a wooden roof for our blacksmith's workshop." msgstr "" +"Zbudujmy chatę z kłód z drewnianym dachem dla naszego warsztatu kowalskiego." #: lang/json/recipe_from_json.py msgid "log blacksmith workshop" -msgstr "" +msgstr "warsztat kowalski z kłód" #: lang/json/recipe_from_json.py msgid "" "Let's build a metal shack with a metal roof for our blacksmith's workshop." msgstr "" +"Zbudujmy metalową chatę z metalowym dachem dla naszego warsztatu " +"kowalskiego." #: lang/json/recipe_from_json.py msgid "metal blacksmith workshop" -msgstr "" +msgstr "metalowy warsztat kowalski" #: lang/json/recipe_from_json.py msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." msgstr "" +"Zbudujmy chatę mi-go z dachem mi-go dla naszego warsztatu kowalskiego." #: lang/json/recipe_from_json.py msgid "mi-go blacksmith workshop" -msgstr "" +msgstr "warsztat kowalski mi-go" #: lang/json/recipe_from_json.py msgid "" "Let's build a rammed earth shack with a sod roof for our blacksmith's " "workshop." msgstr "" +"Zbudujmy chatę z ubitej ziemi z dachem z siana dla naszego warsztatu " +"kowalskiego." #: lang/json/recipe_from_json.py msgid "rammed earth blacksmith workshop" -msgstr "" +msgstr "warsztat kowalski z ubitej ziemi" #: lang/json/recipe_from_json.py msgid "" "Let's build a stone shack with a wooden roof for our blacksmith's workshop." msgstr "" +"Zbudujmy kamienną chatę z drewnianym dachem dla naszego warsztatu " +"kowalskiego." #: lang/json/recipe_from_json.py msgid "stone blacksmith workshop" -msgstr "" +msgstr "kamienny warsztat kowalski" #: lang/json/recipe_from_json.py msgid "" "Let's build a wattle and daub shack with a sod roof for our blacksmith's " "workshop." msgstr "" +"Zbudujmy szachulcową chatę z darniowym dachem dla naszego warsztatu " +"kowalskiego." #: lang/json/recipe_from_json.py msgid "wattle and daub blacksmith workshop" -msgstr "" +msgstr "szachulcowy warsztat kowalski" #: lang/json/recipe_from_json.py msgid "" "Let's build a wooden shack with a wooden roof for our blacksmith's workshop." msgstr "" +"Zbudujmy drewnianą chatę z drewnianym dachem dla naszego warsztatu " +"kowalskiego." #: lang/json/recipe_from_json.py msgid "wooden blacksmith workshop" -msgstr "" +msgstr "drewniany warsztat kowalski" #: lang/json/recipe_from_json.py msgid "Let's build a rock forge and a workbench to start smithing." -msgstr "" +msgstr "Zbudujmy kamienną kuźnię i stół warsztatowy, aby zacząć kowalstwo." #: lang/json/recipe_from_json.py msgid "workbench and forge" -msgstr "" +msgstr "stół warsztatowy i kuźnia" #: lang/json/recipe_from_json.py msgid "" "Let's build a second workbench and a drop hammer for more productive " "smithing." msgstr "" +"Zbudujmy drugi stół warsztatowy i młot kafarowy dla bardziej produktywnego " +"kowalstwa." #: lang/json/recipe_from_json.py msgid "workbench and drop hammer" -msgstr "" +msgstr "stół warsztatowy i młot kafarowy" #: lang/json/recipe_from_json.py msgid "Let's build a butchery rack, so we can start hunting large animals." msgstr "" +"Zbudujmy stojak rzeźniczy, abyśmy mogli zacząć polować na duże zwierzęta." #: lang/json/recipe_from_json.py msgid "" "We should remove some of display racks and counters, then build a pair of " "mattress beds inside radio control's room for our survivors." msgstr "" +"Powinniśmy usunąć część gablot i lad, a następnie zbudować parę łóżek z " +"materacami dla naszych ocalałych w pokoju sterowania radiowego." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in radio control's room" -msgstr "" +msgstr "para łóżek z materacami w pokoju sterowania radiowego" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds inside radio tower shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych wewnątrz " +"wieży radiowej." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in radio tower" -msgstr "" +msgstr "para łóżek z materacami w wieży radiowej" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the northeast side shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"północno-wschodniej bocznej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in NE side shack" -msgstr "" +msgstr "para łóżek z materacami w północno-wschodniej bocznej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the southwest corner shack for " "our survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"południowo-zachodniej narożnej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in SW corner shack" -msgstr "" +msgstr "para łóżek z materacami w południowo-zachodniej narożnej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the southwest side shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"północno-zachodniej bocznej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in SW side shack" -msgstr "" +msgstr "para łóżek z materacami w południowo-zachodniej bocznej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the southeast side shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"południowo-wschodniej bocznej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in SE side shack" -msgstr "" +msgstr "para łóżek z materacami w południowo-wschodniej bocznej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the southeast corner shack for " "our survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"południowo-wschodniej narożnej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in SE corner shack" -msgstr "" +msgstr "para łóżek z materacami w południowo-wschodniej narożnej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of mattress beds in the south side shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę łóżek z materacami dla naszych ocalałych w " +"południowej bocznej chacie." #: lang/json/recipe_from_json.py msgid "pair of mattress beds in S side shack" -msgstr "" +msgstr "para łóżek z materacami w południowej bocznej chacie" #: lang/json/recipe_from_json.py msgid "" "We should remove some of display racks and counters, then build a pair of " "straw beds inside radio control's room for our survivors." msgstr "" +"Powinniśmy usunąć część gablot i lad, a następnie zbudować parę sienników " +"dla naszych ocalałych w pokoju sterowania radiowego." #: lang/json/recipe_from_json.py msgid "pair of straw beds in radio control's room" -msgstr "" +msgstr "para sienników w pokoju sterowania radiowego" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds inside radio tower shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych wewnątrz wieży " +"radiowej." #: lang/json/recipe_from_json.py msgid "pair of straw beds in radio tower" -msgstr "" +msgstr "para sienników w wieży radiowej" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the northeast side shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w północno-" +"wschodniej bocznej chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in NE side shack" -msgstr "" +msgstr "para sienników w północno-wschodniej bocznej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the southwest corner shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w południowo-" +"zachodniej narożnej chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in SW corner shack" -msgstr "" +msgstr "para sienników w południowo-zachodniej narożnej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the southwest side shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w południowo-" +"zachodniej bocznej chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in SW side shack" -msgstr "" +msgstr "para sienników w południowo-zachodniej bocznej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the southeast side shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w południowo-" +"wschodniej bocznej chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in SE side shack" -msgstr "" +msgstr "para sienników w południowo-wschodniej bocznej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the southeast corner shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w południowo-" +"wschodniej narożnej chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in SE corner shack" -msgstr "" +msgstr "para sienników w południowo-wschodniej narożnej chacie" #: lang/json/recipe_from_json.py msgid "" "We should build a pair of straw beds in the south side shack for our " "survivors." msgstr "" +"Powinniśmy zbudować parę sienników dla naszych ocalałych w południowej " +"bocznej chacie." #: lang/json/recipe_from_json.py msgid "pair of straw beds in S side shack" -msgstr "" +msgstr "para sienników w południowej bocznej chacie" #: lang/json/recipe_from_json.py msgid "Digging a root cellar will give us a way to preserve food." @@ -222752,28 +229535,30 @@ msgstr "Jeśli wykopiemy piwnicę, to nasze jedzenie będzie się wolniej psuć. #: lang/json/recipe_from_json.py msgid "Digging a well will give us easy access to water." -msgstr "Jeśli wykopiemy studnię to zyskamy łatwy dostęp do świeżej wody." +msgstr "Jeśli wykopiemy studnię, to zyskamy łatwy dostęp do świeżej wody." #: lang/json/recipe_from_json.py msgid "" "Let's fix up radio tower and controls to improve our recruitment efforts." msgstr "" +"Naprawmy wieżę radiową i urządzenia sterujące, aby usprawnić nasze działania" +" rekrutacyjne." #: lang/json/recipe_from_json.py msgid "fix radio tower and controls" -msgstr "" +msgstr "napraw wieżę radiową i urządzenia sterujące" #: lang/json/recipe_from_json.py msgid "We should dig pits for palisade around camp." -msgstr "" +msgstr "Powinniśmy wykopać doły pod palisadę wokół obozu." #: lang/json/recipe_from_json.py msgid "We should build palisade around camp." -msgstr "" +msgstr "Powinniśmy zbudować palisadę wokół obozu." #: lang/json/recipe_from_json.py msgid "build palisade" -msgstr "" +msgstr "zbuduj palisadę" #: lang/json/recipe_from_json.py msgid "" @@ -222781,284 +229566,377 @@ msgid "" " give us remote access to computer systems connected to backbone network or " "communication satellites." msgstr "" +"Można by spróbować naprawić całą wieżę i dostarczyć do niej odpowiednią " +"ilość prądu, co dałoby nam zdalny dostęp do systemów komputerowych " +"podłączonych do sieci szkieletowej lub satelitów komunikacyjnych." #: lang/json/recipe_from_json.py msgid "fix whole radio tower" -msgstr "" +msgstr "napraw całą wieżę radiową" #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a log shack with a wooden roof on the " "northeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z kłód z drewnianym dachem w " +"północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a log shack with a wooden roof on the " "southeast corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę kłód z drewnianym dachem w " +"południowo-wschodnim narożniku obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a log shack with a wooden roof on the " "southwest corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z kłód z drewnianym dachem w " +"południowo-zachodnim narożniku obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a log shack with a wooden roof on the south " "side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z kłód z drewnianym dachem w " +"południowej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a metal shack with a metal roof on the " "northeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " +"północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a metal shack with a metal roof on the " "southwest corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " +"południowo-zachodnim narożniku obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a metal shack with a metal roof on the " "southwest side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " +"południowo-zachodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a metal shack with a metal roof on the " "southeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " +"południowo-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a metal shack with a metal roof on the " "southeast corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " +"południowo-wschodnim narożniku obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a metal shack with a metal roof on the south " "side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj metalową chatę z metalowym dachem w " +"południowej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build migo resin walls over windows in radio " "control's room." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w pokoju sterowania radiowego." #: lang/json/recipe_from_json.py msgid "barricade radio control's room" -msgstr "" +msgstr "zabarykaduj pokój sterowania radiowego" #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "inside radio tower." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go wewnątrz wieży radiowej." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "on the northeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "on the southwest corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w południowo-zachodnim narożniku obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "on the southwest side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w południowo-zachodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "on the southeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w południowo-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "on the southeast corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w południowo-wschodnim narożniku obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a mi-go resin shack with a mi-go resin roof " "on the south side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z żywicy mi-go z dachem z żywicy" +" mi-go w południowej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a rammed earth shack with a sod roof on the " "northeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " +"w północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a rammed earth shack with a sod roof on the " "southwest corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " +"w południowo-zachodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a rammed earth shack with a sod roof on the " "southwest side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " +"w południowo-zachodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a rammed earth shack with a sod roof on the " "southeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " +"w południowo-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a rammed earth shack with a sod roof on the " "southeast corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " +"w południowo-wschodnim rogu obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a rammed earth shack with a sod roof on the " "south side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z ubitej ziemi z dachem z darni " +"w południowej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a stone shack with a wooden roof on the " "northeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " +"północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a stone shack with a wooden roof on the " "southwest corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " +"południowo-zachodnim rogu obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a stone shack with a wooden roof on the " "southwest side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " +"południowo-zachodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a stone shack with a wooden roof on the " "southeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " +"południowo-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a stone shack with a wooden roof on the " "southeast corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " +"południowo-wschodnim rogu obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a stone shack with a wooden roof on the south" " side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj kamienną chatę z drewnianym dachem w " +"południowej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof on " "the northeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni w " +"północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof on " "the southwest corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni w " +"południowo-zachodnim rogu obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof on " "the southwest side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni w " +"południowo-zachodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof on " "the southeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni w " +"południowo-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof on " "the southeast corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni w " +"południowo-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wattle and daub shack with a sod roof on " "the south side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj chatę z szachulca z dachem z darni w " +"południowej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build wooden walls over windows in radio control's " "room." msgstr "" +"Potrzebujemy schronienia, więc zbuduj drewniane ściany nad oknami w pokoju " +"sterowania radiowego." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wooden shack with a wooden roof inside " "radio tower." msgstr "" +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem " +"wewnątrz wieży radiowej." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wooden shack with a wooden roof on the " "northeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " +"północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wooden shack with a wooden roof on the " "southwest corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " +"południowo-zachodnim rogu obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wooden shack with a wooden roof on the " "southwest side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " +"południowo-zachodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wooden shack with a wooden roof on the " "southeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " +"południowo-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wooden shack with a wooden roof on the " "southeast corner of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " +"południowo-wschodnim rogu obozu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build a wooden shack with a wooden roof on the " "south side of the camp." msgstr "" +"Potrzebujemy schronienia, więc zbuduj drewnianą chatę z drewnianym dachem w " +"południowej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "Now that we have some cover, we should reorganize that dining area into our " "kitchen." msgstr "" +"Teraz, gdy mamy już jakieś schronienie, powinniśmy zmienić tę jadalnię na " +"kuchnię." #: lang/json/recipe_from_json.py msgid "prepare the kitchen area" @@ -223069,6 +229947,8 @@ msgid "" "We should build a well, put it near that winch. This will make our future " "here more secure." msgstr "" +"Powinniśmy zbudować studnię, umieścić ją w pobliżu wyciągarki. Dzięki temu " +"nasza przyszłość tutaj będzie bezpieczniejsza." #: lang/json/recipe_from_json.py msgid "build a well" @@ -223079,38 +229959,44 @@ msgid "" "Let's set up a radio tower to improve our recruitment efforts, we'll " "repurpose that terminal for it." msgstr "" +"Postawmy wieżę radiową, aby usprawnić nasze działania rekrutacyjne, " +"przeznaczymy na to ten terminal." #: lang/json/recipe_from_json.py msgid "" "Now that we have some cover, we should add some storage and a root cellar in" " our kitchen area." msgstr "" +"Teraz, gdy mamy już jakieś schronienie, powinniśmy dodać trochę miejsca do " +"przechowywania i ziemiankę w naszej kuchni." #: lang/json/recipe_from_json.py msgid "add storage and root cellar" -msgstr "" +msgstr "dodaj magazyn i ziemiankę" #: lang/json/recipe_from_json.py msgid "Let's break up some pavement so we can farm." -msgstr "" +msgstr "Rozwalmy trochę chodnika, żebyśmy mogli uprawiać ziemię." #: lang/json/recipe_from_json.py msgid "break up driveway" -msgstr "" +msgstr "rozwal podjazd" #: lang/json/recipe_from_json.py msgid "Let's build a privacy fence around the garden." -msgstr "" +msgstr "Zbudujmy ogrodzenie zapewniające prywatność wokół ogrodu." #: lang/json/recipe_from_json.py msgid "build a privacy fence" -msgstr "zbuduj ogrodzenie" +msgstr "zbuduj ogrodzenie zapewniające prywatność" #: lang/json/recipe_from_json.py msgid "" "Now that we have some cover, we should build a fireplace for cooking and " "grab a pot. Let's put it in that dining area." msgstr "" +"Teraz, gdy mamy już jakieś schronienie, powinniśmy zbudować palenisko do " +"gotowania i wziąć garnek. Połóżmy to w tej jadalni." #: lang/json/recipe_from_json.py msgid "build a fireplace" @@ -223121,20 +230007,24 @@ msgid "" "Now that we have some cover, we should set up a brazier for cooking, and " "grab a pot. Let's put it in that dining area." msgstr "" +"Teraz, gdy mamy już jakieś schronienie, powinniśmy ustawić koksownik do " +"gotowania i wziąć garnek. Połóżmy to w tej jadalni. " #: lang/json/recipe_from_json.py msgid "build a brazier" -msgstr "zbuduj kotlarz" +msgstr "zbuduj koksownik" #: lang/json/recipe_from_json.py msgid "" "Now that we have some cover, we should build a stove for cooking and grab a " "pot. Let's put it in that dining area." msgstr "" +"Teraz, gdy mamy już jakieś schronienie, powinniśmy zbudować piecyk do " +"gotowania i wziąć garnek. Połóżmy to w tej jadalni." #: lang/json/recipe_from_json.py msgid "build a wood stove" -msgstr "zbuduj drewniane palenisko" +msgstr "zbuduj drewniany piecyk" #: lang/json/recipe_from_json.py msgid "Let's build some smokers and a charcoal kiln for food preservation." @@ -223144,7 +230034,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "build smoking racks and charcoal kiln" -msgstr "" +msgstr "zbuduj ruszt wędzarniczy i piec do węgla drzewnego" #: lang/json/recipe_from_json.py msgid "Let's make a butchery area." @@ -223177,7 +230067,7 @@ msgstr "Pora wyposażyć południowo-zachodnią sypialnię." #: lang/json/recipe_from_json.py msgid "furnish the SW bedroom" -msgstr "Wyposaż południowo-zachodnią sypialnię" +msgstr "wyposaż południowo-zachodnią sypialnię" #: lang/json/recipe_from_json.py msgid "Let's furnish the northwest bedroom." @@ -223185,7 +230075,7 @@ msgstr "Pora wyposażyć północno-zachodnią sypialnię." #: lang/json/recipe_from_json.py msgid "furnish the NW bedroom" -msgstr "Wyposaż północno-zachodnią sypialnię" +msgstr "wyposaż północno-zachodnią sypialnię" #: lang/json/recipe_from_json.py msgid "Let's furnish the southeast bedroom." @@ -223193,7 +230083,7 @@ msgstr "Pora wyposażyć południowo-wschodnią sypialnię." #: lang/json/recipe_from_json.py msgid "furnish the SE bedroom" -msgstr "Wyposaż południowo-wschodnią sypialnię" +msgstr "wyposaż południowo-wschodnią sypialnię" #: lang/json/recipe_from_json.py msgid "Let's furnish the northeast bedroom." @@ -223201,7 +230091,7 @@ msgstr "Pora wyposażyć północno-wschodnią sypialnię." #: lang/json/recipe_from_json.py msgid "furnish the NE bedroom" -msgstr "Wyposaż północno-wschodnią sypialnię" +msgstr "wyposaż północno-wschodnią sypialnię" #: lang/json/recipe_from_json.py msgid "Let's furnish the common area." @@ -223213,144 +230103,166 @@ msgstr "wyposaż pomieszczenie socjalne" #: lang/json/recipe_from_json.py msgid "Let's build a fabrication workshop." -msgstr "" +msgstr "Zbudujmy warsztat wytwórczy." #: lang/json/recipe_from_json.py msgid "build a metalworking forge" -msgstr "" +msgstr "zbuduj kuźnię metalurgiczną" #: lang/json/recipe_from_json.py msgid "Let's build an anvil and crucible to increase our crafting options." msgstr "" +"Zbudujmy kowadło i tygiel, aby zwiększyć nasze możliwości rzemieślnicze." #: lang/json/recipe_from_json.py msgid "add an anvil and crucible" -msgstr "" +msgstr "dodaj kowadło i tygiel" #: lang/json/recipe_from_json.py msgid "" "Let's build pottery kiln and get the tools we'll need for glassworking." msgstr "" +"Zbudujmy piec garncarski i zdobądźmy narzędzia potrzebne do obróbki szkła." #: lang/json/recipe_from_json.py msgid "build a pottery kiln" -msgstr "" +msgstr "zbuduj piec garncarski" #: lang/json/recipe_from_json.py msgid "We need some tools for metal working." -msgstr "" +msgstr "Potrzebujemy kilku narzędzi do obróbki metalu." #: lang/json/recipe_from_json.py msgid "place advanced tools" -msgstr "" +msgstr "umieść zaawansowane narzędzia" #: lang/json/recipe_from_json.py msgid "" "Let's get a nice workbench built to improve our work. Place it next to the " "anvil." msgstr "" +"Zbudujmy ładny stół warsztatowy, aby usprawnić naszą pracę. Umieść go obok " +"kowadła." #: lang/json/recipe_from_json.py msgid "build a workbench" -msgstr "" +msgstr "zbuduj stół warsztatowy" #: lang/json/recipe_from_json.py msgid "" "Let's add a bellows and barrel for quenching the steel, we'll need more " "tools too." msgstr "" +"Dodajmy miech i beczkę do hartowania stali, będziemy też potrzebować więcej " +"narzędzi." #: lang/json/recipe_from_json.py msgid "build a bellows and barrel" -msgstr "" +msgstr "zbuduj miechy i beczkę" #: lang/json/recipe_from_json.py msgid "Let's build a drop hammer for some mass production." -msgstr "" +msgstr "Zbudujmy młot kafarowy do masowej produkcji." #: lang/json/recipe_from_json.py msgid "build a drop hammer." -msgstr "" +msgstr "zbudujmy młot kafarowy" #: lang/json/recipe_from_json.py msgid "" "Let's expand our living areas with standard walls, we'll use that far " "vehicle bay." msgstr "" +"Rozbudujmy nasze pomieszczenia mieszkalne standardowymi ścianami, " +"wykorzystamy do tego tę odległą zatokę samochodową." #: lang/json/recipe_from_json.py msgid "build the standard white living quarters walls" -msgstr "" +msgstr "zbuduj standardowe białe ściany mieszkalne" #: lang/json/recipe_from_json.py msgid "" "Let's expand our living areas with wood panel walls, we'll use that far " "vehicle bay." msgstr "" +"Rozbudujmy nasze pomieszczenia mieszkalne ścianami z paneli drewnianych, " +"wykorzystamy do tego tę odległą zatoczkę samochodową." #: lang/json/recipe_from_json.py msgid "build the wood panel living quarters walls" -msgstr "" +msgstr "zbuduj ściany mieszkalne z drewnianych paneli" #: lang/json/recipe_from_json.py msgid "" "Let's expand our living areas with log walls, we'll use that far vehicle " "bay." msgstr "" +"Rozbudujmy nasze pomieszczenia mieszkalne ścianami z kłód, wykorzystamy do " +"tego tę odległą zatoczkę samochodową." #: lang/json/recipe_from_json.py msgid "build the log living quarters walls" -msgstr "" +msgstr "zbuduj ściany mieszkalne z kłód" #: lang/json/recipe_from_json.py msgid "" "Let's expand our living areas with metal walls, we'll use that far vehicle " "bay." msgstr "" +"Rozbudujmy nasze pomieszczenia mieszkalne metalowymi ścianami, wykorzystamy " +"do tego tę odległą zatoczkę samochodową." #: lang/json/recipe_from_json.py msgid "build the metal living quarters walls" -msgstr "" +msgstr "zbuduj metalowe ściany mieszkalne" #: lang/json/recipe_from_json.py msgid "" "Let's expand our living areas with mi-go resin walls, we'll use that far " "vehicle bay." msgstr "" +"Rozbudujmy nasze pomieszczenia mieszkalne ścianami z żywicy mi-go, " +"wykorzystamy do tego tę odległą zatoczkę samochodową." #: lang/json/recipe_from_json.py msgid "build the mi-go resin living quarters walls" -msgstr "" +msgstr "zbuduj ściany mieszkalne z żywicy mi-go" #: lang/json/recipe_from_json.py msgid "" "Let's expand our living areas with rammed earth walls, we'll use that far " "vehicle bay." msgstr "" +"Rozbudujmy nasze pomieszczenia mieszkalne ścianami z ubitej ziemi, " +"wykorzystamy do tego tę odległą zatoczkę samochodową." #: lang/json/recipe_from_json.py msgid "build the rammed earth living quarters walls" -msgstr "" +msgstr "zbuduj ściany mieszkalne z ubitej ziemi" #: lang/json/recipe_from_json.py msgid "" "Let's expand our living areas with rock walls, we'll use that far vehicle " "bay." msgstr "" +"Rozbudujmy nasze pomieszczenia mieszkalne kamiennymi ścianami, wykorzystamy " +"do tego tę odległą zatoczkę samochodową." #: lang/json/recipe_from_json.py msgid "build the rock earth living quarters walls" -msgstr "" +msgstr "zbuduj kamienne ściany mieszkalne" #: lang/json/recipe_from_json.py msgid "" "Let's expand our living areas with wattle and daub walls, we'll use that far" " vehicle bay." msgstr "" +"Rozbudujmy nasze pomieszczenia mieszkalne szachulcowymi ścianami, " +"wykorzystamy do tego tę odległą zatokę samochodową." #: lang/json/recipe_from_json.py msgid "build the wattle and daub living quarters walls" -msgstr "" +msgstr "zbuduj szachulcowe ściany mieszkalne" #: lang/json/recipe_from_json.py msgid "We should survey the roof top and set up a bulletin board." @@ -223361,140 +230273,141 @@ msgid "" "Now that we have some cover, we should build a fireplace in the northeast " "shack." msgstr "" -"Teraz, kiedy mamy już jakiś dach nad głową, powinniśmy wyznaczyć palenisko w" -" szopie na północnym-wschodzie." +"Teraz, gdy mamy już jakieś schronienie, powinniśmy wyznaczyć palenisko w " +"chacie na północnym-wschodzie." #: lang/json/recipe_from_json.py msgid "northeast fireplace" -msgstr "ognisko, północny-wschód" +msgstr "północno-wschodnie ognisko" #: lang/json/recipe_from_json.py msgid "" "Now that we have some cover, we should set up a brazier in the northeast " "shack." msgstr "" -"Teraz, kiedy mamy już jakiś dach nad głową, powinniśmy ustawić koksownik w " -"szopie na północnym-wschodzie." +"Teraz, gdy mamy już jakieś schronienie, powinniśmy ustawić koksownik w " +"chacie na północnym-wschodzie." #: lang/json/recipe_from_json.py msgid "northeast brazier" -msgstr "koksownik, północny-wschód" +msgstr "północno-wschodni koksownik" #: lang/json/recipe_from_json.py msgid "" "Now that we have some cover, we should build a stove in the northeast shack." msgstr "" -"Teraz, kiedy mamy już jakiś dach nad głową, powinniśmy zbudować piec w " -"szopie na północnym-wschodzie." +"Teraz, gdy mamy już jakieś schronienie, powinniśmy zbudować piec w chacie na" +" północnym-wschodzie." #: lang/json/recipe_from_json.py msgid "northeast stove" -msgstr "piec, północny wschód" +msgstr "północno-wschodni piec" #: lang/json/recipe_from_json.py msgid "A straw bed in the northeast shack will make sleeping easier." msgstr "" "Powinniśmy przygotować jakieś miejsce do spania. Pora ustawić słomiane łóżko" -" w szopie na północnym wschodzie." +" w chacie na północnym wschodzie." #: lang/json/recipe_from_json.py msgid "northeast straw bed" -msgstr "słomiane łóżko, północny wschód" +msgstr "północno-wschodnie słomiane łóżko" #: lang/json/recipe_from_json.py msgid "" "A proper bed in the northeast shack will give one of us a place to sleep " "soundly." msgstr "" -"Porządne, prawdziwe łóżko w szopie na północnym wschodzie obozu pozwoli na " -"lepsze zażycie snu." +"Odpowiednie łóżko w północno-wschodniej chacie da jednemu z nas miejsce do " +"spania." #: lang/json/recipe_from_json.py msgid "northeast bed" -msgstr "łóżko, północny wschód" +msgstr "północno-wschodnie łóżko" #: lang/json/recipe_from_json.py msgid "Another straw bed in the northeast shack will make sleeping easier." -msgstr "Może to pora aby dodać kolejne słomiane łóżko?" +msgstr "Kolejny siennik w północno-wschodniej chacie ułatwi spanie." #: lang/json/recipe_from_json.py msgid "" "Another proper bed in the northeast shack will give one of us a place to " "sleep soundly." msgstr "" -"Najwyższy czas ustawić kolejne łóżko w szopie na północnym wschodzie obozu." +"Kolejne łóżko w północno-wschodniej chacie da jednemu z nas miejsce na " +"spokojny sen." #: lang/json/recipe_from_json.py msgid "" "A pair of straw beds in the east tent will allow us to house two more people" " and expand the camp." msgstr "" -"Ustawienie pary słomianych łóżek w namiocie we wschodniej części obozu " -"pozwoli nam dać dach nad głową dwójce kolonistów." +"Ustawienie pary sienników w namiocie we wschodniej części obozu pozwoli nam " +"dać dach nad głową dwójce kolonistów." #: lang/json/recipe_from_json.py msgid "east straw beds" -msgstr "słomiane łóżka, wschód" +msgstr "wschodnie sienniki" #: lang/json/recipe_from_json.py msgid "" "A pair of proper beds in the east tent will allow us to house two more " "people and expand the camp." msgstr "" -"Ustawienie pary łóżek w namiocie we wschodniej części obozu pozwoli nam dać " -"dach nad głową dwójce kolonistów." +"Ustawienie pary łóżek w namiocie we wschodniej części obozu pozwoli nam " +"pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "east beds" -msgstr "łożka, wschód" +msgstr "wschodnie łóżka" #: lang/json/recipe_from_json.py msgid "" "A pair of straw beds in the east room will allow us to house two more people" " and expand the camp." msgstr "" -"Ustawienie pary słomianych łóżek w pokoju we wschodniej części obozu pozwoli" -" nam dać dach nad głową dwójce kolonistów." +"Ustawienie pary sienników w pokoju we wschodniej części obozu pozwoli nam " +"pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "" "A pair of proper beds in the east room will allow us to house two more " "people and expand the camp." msgstr "" -"Ustawienie pary łóżek w pokoju we wschodniej części obozu pozwoli nam dać " -"dach nad głową dwójce kolonistów." +"Ustawienie pary łóżek w pokoju we wschodniej części obozu pozwoli nam " +"pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "" "A pair of straw beds in the southeast tent will allow us to house two more " "people and expand the camp." msgstr "" -"Ustawienie pary słomianych łóżek w namiocie w południowo-wschodniej części " -"obozu pozwoli nam dać dach nad głową dwójce kolonistów." +"Ustawienie pary sienników w namiocie w południowo-wschodniej części obozu " +"pozwoli nam pomieścić jeszcze dwie osoby i rozbudować obóz.." #: lang/json/recipe_from_json.py msgid "southeast straw beds" -msgstr "słomiane łóżka, południowy wschód" +msgstr "południowo-wschodnie sienniki" #: lang/json/recipe_from_json.py msgid "" "A pair of proper beds in the southeast tent will allow us to house two more " "people and expand the camp." msgstr "" -"Ustawienie pary łóżek w namiocie we wschodniej części obozu pozwoli nam dać " -"dach nad głową dwójce kolonistów." +"Ustawienie pary łóżek w namiocie we wschodniej części obozu pozwoli nam " +"pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "southeast beds" -msgstr "łóżka, południowy wschód" +msgstr "południowo-wschodnie łóżka" #: lang/json/recipe_from_json.py msgid "" "A pair of straw beds in the southeast room will allow us to house two more " "people and expand the camp." msgstr "" -"Ustawienie pary słomianych łóżek w pokoju w południowo-wschodniej części " -"obozu pozwoli nam dać dach nad głową dwójce kolonistów." +"Ustawienie pary sienników w pokoju w południowo-wschodniej części obozu " +"pozwoli nam pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "" @@ -223502,19 +230415,19 @@ msgid "" "people and expand the camp." msgstr "" "Ustawienie pary łóżek w pokoju w południowo-wschodniej części obozu pozwoli " -"nam dać dach nad głową dwójce kolonistów." +"nam pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "" "A pair of straw beds in the northwest building will allow us to house two " "more people and expand the camp." msgstr "" -"Ustawienie pary słomianych łóżek w budynku w południowo-zachodniej części " -"obozu pozwoli nam dać dach nad głową dwójce kolonistów." +"Ustawienie pary sienników w budynku w południowo-zachodniej części obozu " +"pozwoli nam pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "northwest straw beds" -msgstr "słomiane łóżka, północny zachód" +msgstr "północno-zachodnie sienniki" #: lang/json/recipe_from_json.py msgid "" @@ -223522,63 +230435,63 @@ msgid "" "more people and expand the camp." msgstr "" "Ustawienie pary łóżek w budynku w południowo-zachodniej części obozu pozwoli" -" nam dać dach nad głową dwójce kolonistów." +" nam pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "northwest beds" -msgstr "łóżka, południowy zachód" +msgstr "południowo-zachodnie łóżka" #: lang/json/recipe_from_json.py msgid "" "A pair of straw beds in the west tent will allow us to house two more people" " and expand the camp." msgstr "" -"Ustawienie pary słomianych łóżek w namiocie w zachodniej części obozu " -"pozwoli nam dać dach nad głową dwójce kolonistów." +"Ustawienie pary sienników w namiocie w zachodniej części obozu pozwoli nam " +"pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "west straw beds" -msgstr "zachód, słomiane łóżka" +msgstr "zachodnie sienniki" #: lang/json/recipe_from_json.py msgid "" "A pair of proper beds in the west tent will allow us to house two more " "people and expand the camp." msgstr "" -"Ustawienie pary łóżek w namiocie w zachodniej części obozu pozwoli nam dać " -"dach nad głową dwójce kolonistów." +"Ustawienie pary łóżek w namiocie w zachodniej części obozu pozwoli nam " +"pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "west beds" -msgstr "zachód, łóżka" +msgstr "zachodnie łóżka" #: lang/json/recipe_from_json.py msgid "" "A pair of straw beds in the west room will allow us to house two more people" " and expand the camp." msgstr "" -"Ustawienie pary słomianych łóżek w pokoju w zachodniej części obozu pozwoli " -"nam dać dach nad głową dwójce kolonistów." +"Ustawienie pary sienników w pokoju w zachodniej części obozu pozwoli nam " +"pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "" "A pair of proper beds in the west room will allow us to house two more " "people and expand the camp." msgstr "" -"Ustawienie pary łóżek w pokoju w zachodniej części obozu pozwoli nam dać " -"dach nad głową dwójce kolonistów." +"Ustawienie pary łóżek w pokoju w zachodniej części obozu pozwoli nam " +"pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "" "A pair of straw beds in the southwest tent will allow us to house two more " "people and expand the camp." msgstr "" -"Ustawienie pary słomianych łóżek w namiocie w południowo-zachodniej części " -"obozu pozwoli nam dać dach nad głową dwójce kolonistów." +"Ustawienie pary sienników w namiocie w południowo-zachodniej części obozu " +"pozwoli nam pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "southwest straw beds" -msgstr "słomiane łóżka, południowy zachód" +msgstr "południowo-zachodnie sienniki" #: lang/json/recipe_from_json.py msgid "" @@ -223586,19 +230499,19 @@ msgid "" "people and expand the camp." msgstr "" "Ustawienie pary łóżek w namiocie w południowo-zachodniej części obozu " -"pozwoli nam dać dach nad głową dwójce kolonistów." +"pozwoli nam pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "southwest beds" -msgstr "łóżka, południowy zachó" +msgstr "południowo-zachodnie łóżka" #: lang/json/recipe_from_json.py msgid "" "A pair of straw beds in the southwest room will allow us to house two more " "people and expand the camp." msgstr "" -"Ustawienie pary słomianych łóżek w pokoju w południowo-zachodniej części " -"obozu pozwoli nam dać dach nad głową dwójce kolonistów." +"Ustawienie pary sienników w pokoju w południowo-zachodniej części obozu " +"pozwoli nam pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "" @@ -223606,7 +230519,7 @@ msgid "" "people and expand the camp." msgstr "" "Ustawienie pary łóżek w pokoju w południowo-zachodniej części obozu pozwoli " -"nam dać dach nad głową dwójce kolonistów." +"nam pomieścić jeszcze dwie osoby i rozbudować obóz." #: lang/json/recipe_from_json.py msgid "" @@ -223619,44 +230532,46 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "central fireplace" -msgstr "palenisko, centrum" +msgstr "centralne palenisko" #: lang/json/recipe_from_json.py msgid "" "We need a butchery rack to maximize the harvest from our hunting and " "trapping efforts." msgstr "" -"Dla sprawniejszej obróbki zwierząt powinniśmy ustawić wieszak rzeźniczy." +"Dla sprawniejszej obróbki zwierząt powinniśmy ustawić stojak rzeźniczy." #: lang/json/recipe_from_json.py msgid "central butchery rack" -msgstr "wieszak rzeźniczy, centrum" +msgstr "centralny stojak rzeźniczy" #: lang/json/recipe_from_json.py msgid "" "A tool rack in the central building will give us a place to store tools." -msgstr "Półka na narzędzia umożliwi nam sprawne zorganizowanie miejsca pracy." +msgstr "" +"Półka na narzędzia w budynku głównym umożliwi nam sprawne zorganizowanie " +"miejsca pracy." #: lang/json/recipe_from_json.py msgid "central tool rack" -msgstr "półka na narzędzia, centrum" +msgstr "centralna półka na narzędzia" #: lang/json/recipe_from_json.py msgid "" "Setting up some tables and chairs will make the central building into a " "dining area, and we can also use them as a workspace to organize the camp." msgstr "" -"Ludzie mają dość jedzenia na ziemi. Powinniśmy ustawić stoły i krzesła w " -"centrum naszego obozu, i wyznaczyć tam jadalnię. Przy okazji posłuży to jako" -" dobre miejsce do zbiórek i organizacji pracy." +"Ustawienie kilku stołów i krzeseł sprawi, że budynek główny stanie się " +"jadalnią, a my będziemy mogli wykorzystać je jako przestrzeń roboczą przy " +"organizacji obozu." #: lang/json/recipe_from_json.py msgid "central dining hall" -msgstr "hala jadalna, środek" +msgstr "centralna jadalnia" #: lang/json/recipe_from_json.py msgid "south dining hall" -msgstr "hala jadalna, południe" +msgstr "południowa jadalnia" #: lang/json/recipe_from_json.py msgid "" @@ -223671,15 +230586,15 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "south wood stove" -msgstr "palenisko, południe" +msgstr "południowy piec" #: lang/json/recipe_from_json.py msgid "north water well" -msgstr "studnia, północ" +msgstr "północna studnia" #: lang/json/recipe_from_json.py msgid "north root cellar" -msgstr "piwnica, północ" +msgstr "północna ziemianka" #: lang/json/recipe_from_json.py msgid "We could build a radio tower to improve the range of our radios." @@ -223687,43 +230602,43 @@ msgstr "Możemy zbudować wieżę radiową żeby wzmocnić nasz sygnał." #: lang/json/recipe_from_json.py msgid "north radio tower" -msgstr "wieża radiowa, północ" +msgstr "północna wieża radiowa" #: lang/json/recipe_from_json.py msgid "" "Adding a console to control the radio tower will help with recruiting more " "survivors." msgstr "" -"Jeśli dodamy konsolę komunikacyjną do naszej wieży radiowej, to będziemy " +"Jeśli dodamy konsolę wieży radiowej do naszej wieży radiowej, to będziemy " "mieli szansę zrekrutować więcej osób." #: lang/json/recipe_from_json.py msgid "north radio console" -msgstr "konsola komunikacyjna, północ" +msgstr "północna konsola wieży radiowej" #: lang/json/recipe_from_json.py msgid "" "Digging a trench along the north edge of the camp would provide some defense" " and generate building materials." msgstr "" -"Wykopanie fosy wzdłuż północnej granicy naszego obozu zapewni nam lepszą " +"Wykopanie okopów wzdłuż północnej granicy naszego obozu zapewni nam lepszą " "obronność i trochę materiałów budowlanych." #: lang/json/recipe_from_json.py msgid "north trench" -msgstr "fosa, północ" +msgstr "północne okopy" #: lang/json/recipe_from_json.py msgid "" "Digging a trench along the south edge of the camp would provide some defense" " and generate building materials." msgstr "" -"Wykopanie fosy wzdłuż południowej granicy naszego obozu zapewni nam lepszą " -"obronność i trochę materiałów budowlanych." +"Wykopanie okopów wzdłuż południowej granicy naszego obozu zapewni nam lepszą" +" obronność i trochę materiałów budowlanych." #: lang/json/recipe_from_json.py msgid "south trench" -msgstr "fosa, południe" +msgstr "południowe okopy" #: lang/json/recipe_from_json.py msgid "" @@ -223732,12 +230647,12 @@ msgid "" "along the east side of the camp, we would only need to dig the trench long " "enough to reach the buildings." msgstr "" -"Wykopanie fosy wzdłuż północno-wschodniej granicy naszego obozu zapewni nam " -"lepszą obronność i trochę materiałów budowlanych." +"Wykopanie okopów wzdłuż północno-wschodniej granicy naszego obozu zapewni " +"nam lepszą obronność i trochę materiałów budowlanych." #: lang/json/recipe_from_json.py msgid "northeast trench" -msgstr "fosa, północny wschód" +msgstr "północno-wschodnie okopy" #: lang/json/recipe_from_json.py msgid "" @@ -223746,12 +230661,12 @@ msgid "" "along the west side of the camp, we would only need to dig the trench long " "enough to reach the buildings." msgstr "" -"Wykopanie fosy wzdłuż północno-zachodniej granicy naszego obozu zapewni nam " -"lepszą obronność i trochę materiałów budowlanych." +"Wykopanie okopów wzdłuż północno-zachodniej granicy naszego obozu zapewni " +"nam lepszą obronność i trochę materiałów budowlanych." #: lang/json/recipe_from_json.py msgid "northwest trench" -msgstr "fosa, północny zachód" +msgstr "północno-zachodnie okopy" #: lang/json/recipe_from_json.py msgid "" @@ -223760,12 +230675,12 @@ msgid "" "along the east side of the camp, we would only need to dig the trench long " "enough to reach the buildings." msgstr "" -"Wykopanie fosy wzdłuż południowo-wschodniej granicy naszego obozu zapewni " +"Wykopanie okopów wzdłuż południowo-wschodniej granicy naszego obozu zapewni " "nam lepszą obronność i trochę materiałów budowlanych." #: lang/json/recipe_from_json.py msgid "southeast trench" -msgstr "fosa, południowy wschód" +msgstr "południowo-wschodnie okopy" #: lang/json/recipe_from_json.py msgid "" @@ -223774,12 +230689,12 @@ msgid "" "along the west side of the camp, we would only need to dig the trench long " "enough to reach the buildings." msgstr "" -"Wykopanie fosy wzdłuż południowo-zachodniej granicy naszego obozu zapewni " +"Wykopanie okopów wzdłuż południowo-zachodniej granicy naszego obozu zapewni " "nam lepszą obronność i trochę materiałów budowlanych." #: lang/json/recipe_from_json.py msgid "southwest trench" -msgstr "fosa, południowy zachód" +msgstr "południowo-zachodnie okopy" #: lang/json/recipe_from_json.py msgid "" @@ -223787,12 +230702,12 @@ msgid "" "and generate building materials. We'll need to run the trench the length of" " the camp if we don't have solid buildings all along the east side." msgstr "" -"Wykopanie fosy wzdłuż wschodniej granicy naszego obozu zapewni nam lepszą " +"Wykopanie okopów wzdłuż wschodniej granicy naszego obozu zapewni nam lepszą " "obronność i trochę materiałów budowlanych." #: lang/json/recipe_from_json.py msgid "east trench" -msgstr "fosa, zachód" +msgstr "wschodnie okopy" #: lang/json/recipe_from_json.py msgid "" @@ -223800,105 +230715,123 @@ msgid "" "and generate building materials. We'll need to run the trench the length of" " the camp if we don't have solid buildings all along the west side." msgstr "" -"Wykopanie fosy wzdłuż południowo-zachodniej granicy naszego obozu zapewni " -"nam lepszą obronność i trochę materiałów budowlanych." +"Wykopanie okopów wzdłuż zachodniej granicy naszego obozu zapewni nam lepszą " +"obronność i trochę materiałów budowlanych." #: lang/json/recipe_from_json.py msgid "west trench" -msgstr "fosa, zachód" +msgstr "zachodnie okopy" #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build half of a log shack with a wooden roof on the" " northeast side of the camp" msgstr "" +"Potrzebujemy schronienia, więc zbuduj pół chaty z kłód z drewnianym dachem w" +" północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "northeast shack" -msgstr "szopa, północny wschód" +msgstr "północno-wschodnia chata" #: lang/json/recipe_from_json.py msgid "" "We should use logs to expand the shelter so we have space for another bed." msgstr "" +"Powinniśmy użyć kłód do rozbudowy schronienia, dzięki czemu mielibyśmy " +"miejsce na kolejne łóżko." #: lang/json/recipe_from_json.py msgid "expand northeast shack" -msgstr "poszerz szopę na północnym wschodnie" +msgstr "poszerz północno-wschodnią chatę" #: lang/json/recipe_from_json.py msgid "We should use logs to finish the northeast shack." -msgstr "" +msgstr "Powinniśmy użyć kłód do ukończenia północno-wschodniej chaty." #: lang/json/recipe_from_json.py msgid "finish northeast shack" -msgstr "dokończ szopę na północnym-wschodzie" +msgstr "ukończ północno-wschodnią chatę" #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a log building on the east side, " "which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, stawiając po wschodniej stronie " +"budynek z kłód, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "east shack" -msgstr "szopa, wschód" +msgstr "wschodnia chata" #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a log room on the east side, which we" " can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po wschodniej stronie pokój " +"z kłód, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "east room" -msgstr "pokój, wschód" +msgstr "wschodni pokój" #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a log building on the southeast " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, stawiając od południowo-wschodniej " +"strony budynek z kłód, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "southeast shack" -msgstr "szopa, południowy-wschód" +msgstr "południowo-wschodnia chata" #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a log room on the southeast side, " "which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-wschodniej " +"stronie pokój z kłód, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "southeast room" -msgstr "pokój, południowy-wschód" +msgstr "południowo-wschodni pokój" #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a log building on the northwest " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, stawiając od północno-zachodniej " +"strony budynek z kłód, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "northwest shack" -msgstr "szopa, północny-zachód" +msgstr "północno-zachodnia chata" #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a log building on the west side, " "which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, stawiając po zachodniej stronie " +"budynek z kłód, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "west shack" -msgstr "szopa, zachód" +msgstr "zachodnia chata" #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a log room on the west side, which we" " can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po zachodniej stronie pokój " +"z kłód, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "west room" @@ -223909,26 +230842,32 @@ msgid "" "We should expand our housing by putting up a log building on the southwest " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, stawiając od południowo-zachodniej " +"strony budynek z kłód, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "southwest shack" -msgstr "szopa, południowy-zachód" +msgstr "południowo-zachodnia chata" #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a log room on the southwest side, " "which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-zachodniej " +"stronie pokój z kłód, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "southwest room" -msgstr "pokój, południowy-zachód" +msgstr "południowo-zachodni pokój" #: lang/json/recipe_from_json.py msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from logs." msgstr "" +"Budynek główny może służyć nam za kuchnię i jadalnię. Powinniśmy zbudować " +"północno-wschodnią kwaterę z kłód." #: lang/json/recipe_from_json.py msgid "central building NE corner" @@ -223939,12 +230878,16 @@ msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with logs." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od wschodu pokój z kłód." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from logs." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować północno-zachodnią kwaterę z kłód." #: lang/json/recipe_from_json.py msgid "central building NW corner" @@ -223955,12 +230898,16 @@ msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with logs." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od zachodu pokój z kłód." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with logs." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować między wschodem a zachodem pokoje z kłód." #: lang/json/recipe_from_json.py msgid "central building north half" @@ -223971,6 +230918,8 @@ msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from logs." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować południowo-wschodnią kwaterę z kłód." #: lang/json/recipe_from_json.py msgid "central building SE corner" @@ -223981,12 +230930,16 @@ msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with logs." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od południowego wschodu pokój z kłód." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from logs." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować południowo-zachodnią kwaterę z kłód." #: lang/json/recipe_from_json.py msgid "central building SW corner" @@ -223997,12 +230950,17 @@ msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with logs." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od południowego zachodu pokój z kłód." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with logs." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować między południowym wschodem a południowym zachodem " +"pokoje z kłód." #: lang/json/recipe_from_json.py msgid "central building south half" @@ -224013,104 +230971,104 @@ msgid "" "We need some shelter, so build half of a metal shack with a metal roof on " "the northeast side of the camp" msgstr "" -"Potrzebujemy schronienia. Zbudujmy przynajmniej połowę szopy z metalu w " -"północno-wschodniej części obozu" +"Potrzebujemy schronienia, więc zbuduj pół metalowej chaty z metalowym dachem" +" w północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We should use metal to expand the shelter so we have space for another bed." msgstr "" -"Powinniśmy dalej pracować nad powiększeniem naszego schronienia. " -"Potrzebujemy więcej metalu." +"Powinniśmy użyć metalu do rozbudowy schronienia, dzięki czemu mielibyśmy " +"miejsce na kolejne łóżko." #: lang/json/recipe_from_json.py msgid "We should use metal to finish the northeast shack." -msgstr "Powinniśmy dokończyć budowę szopy w północno-wschodniej części obozu." +msgstr "Powinniśmy użyć metalu do ukończenia północno-wschodniej chaty." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a metal building on the east " "side, which we can also use as part of the central building." msgstr "" -"Potrzebujemy więcej dachu nad głową. Zbudujmy kolejną metalową szopę we " -"wschodniej części obozu. Jednocześnie może nam ona posłużyć za budynek " -"główny." +"Powinniśmy rozbudować nasze mieszkanie, stawiając po wschodniej stronie " +"metalowy budynek, który możemy wykorzystać również jako część budynku " +"głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a metal room on the east side, which " "we can also use as part of the central building." msgstr "" -"Możemy zapewnić większą ilość łóżek przez dobudowanie metalowego pokoju we " -"wschodniej części obozu. W planach mamy traktować to jako część konstrukcji " -"budynku głównego." +"Powinniśmy rozbudować nasze mieszkania, dodając po wschodniej stronie " +"metalowy pokój, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a metal building on the southeast" " side, which we can also use as part of the central building." msgstr "" -"Jeżeli postawimy budynek w południowo-wschodniej części obozu to zyskamy " -"parę kolejnych łóżek." +"Powinniśmy rozbudować nasze mieszkanie, stawiając po południowo-wschodniej " +"stronie metalowy budynek, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a metal room on the southeast side, " "which we can also use as part of the central building." msgstr "" -"Możemy zapewnić większą ilość łóżek przez dobudowanie metalowego pokoju w " -"południowo-wschodniej części obozu. W planach mamy traktować to jako część " -"konstrukcji budynku głównego." +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-wschodniej " +"stronie metalowy pokój, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a metal building on the northwest" " side, which we can also use as part of the central building." msgstr "" -"Jeżeli postawimy budynek w północno-zachodniej części obozu to zyskamy parę " -"kolejnych łóżek." +"Powinniśmy rozbudować nasze mieszkanie, stawiając po północno-zachodniej " +"stronie metalowy budynek, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a metal building on the west " "side, which we can also use as part of the central building." msgstr "" -"Jeżeli postawimy budynek w zachodniej części obozu to zyskamy parę kolejnych" -" łóżek." +"Powinniśmy rozbudować nasze mieszkanie, stawiając po zachodniej stronie " +"metalowy budynek, który możemy wykorzystać również jako część budynku " +"głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a metal room on the west side, which " "we can also use as part of the central building." msgstr "" -"Możemy zapewnić większą ilość łóżek przez dobudowanie metalowego pokoju w " -"zachodniej części obozu. W planach mamy traktować to jako część konstrukcji " -"budynku głównego." +"Powinniśmy rozbudować nasze mieszkania, dodając po zachodniej stronie " +"metalowy pokój, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a metal building on the southwest" " side, which we can also use as part of the central building." msgstr "" -"Jeżeli postawimy budynek w południowo-zachodniej części obozu to zyskamy " -"parę kolejnych łóżek." +"Powinniśmy rozbudować nasze mieszkanie, stawiając po południowo-zachodniej " +"stronie metalowy budynek, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a metal room on the southwest side, " "which we can also use as part of the central building." msgstr "" -"Możemy zapewnić większą ilość łóżek przez dobudowanie metalowego pokoju w " -"południowo-zachodniej części obozu. W planach mamy traktować to jako część " -"konstrukcji budynku głównego." +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-zachodniej " +"stronie metalowy pokój, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from metal." msgstr "" -"Budynek główny może służyć nam za kuchnię i jadalnię. Potrzebujemy metalu do" -" zbudowania północno-wschodniej ćwierci." +"Budynek główny może służyć nam za kuchnię i jadalnię. Powinniśmy zbudować " +"północno-wschodnią kwaterę z metalu." #: lang/json/recipe_from_json.py msgid "" @@ -224118,7 +231076,7 @@ msgid "" "from the east room with metal." msgstr "" "Budynek główny może służyć za centrum naszej działalności i jadalnię. " -"Przebudujmy pomieszczenie na wschodzie do tego celu." +"Powinniśmy zbudować od wschodu pokój z metalu." #: lang/json/recipe_from_json.py msgid "" @@ -224126,7 +231084,7 @@ msgid "" "northwest quarter of one from metal." msgstr "" "Budynek główny może służyć za centrum naszej działalności i jadalnię. " -"Potrzebujemy metalu do zbudowania północno-zachodniej ćwierci." +"Powinniśmy zbudować północno-zachodnią kwaterę z metalu." #: lang/json/recipe_from_json.py msgid "" @@ -224134,7 +231092,7 @@ msgid "" "from the west room with metal." msgstr "" "Budynek główny może służyć nam za centrum działalności i jadalnię. " -"Przebudujmy pomieszczenie na zachodzie do tego celu." +"Powinniśmy zbudować od zachodu pokój z metalu." #: lang/json/recipe_from_json.py msgid "" @@ -224142,7 +231100,7 @@ msgid "" "between the east and west rooms with metal." msgstr "" "Budynek główny może służyć nam za centrum działalności i jadalnię. " -"Potrzebujemy metalu do połączenia wschodniego pomieszczenia z zachodnim." +"Powinniśmy zbudować między wschodem a zachodem pokoje z metalu." #: lang/json/recipe_from_json.py msgid "" @@ -224150,7 +231108,7 @@ msgid "" "southeast quarter of one from metal." msgstr "" "Budynek główny może służyć za centrum naszej działalności i jadalnię. " -"Potrzebujemy metalu do zbudowania południowo-wschodniej ćwierci." +"Powinniśmy zbudować południowo-wschodnią kwaterę z metalu." #: lang/json/recipe_from_json.py msgid "" @@ -224158,7 +231116,7 @@ msgid "" "from the southeast room with metal." msgstr "" "Budynek główny może służyć nam za centrum działalności i jadalnię. " -"Przebudujmy pomieszczenie na południowym wschodzie do tego celu." +"Powinniśmy zbudować od południowego wschodu pokój z metalu." #: lang/json/recipe_from_json.py msgid "" @@ -224166,7 +231124,7 @@ msgid "" "southwest quarter of one from metal." msgstr "" "Budynek główny może służyć za centrum naszej działalności i jadalnię. " -"Potrzebujemy metalu do zbudowania południowo-zachodniej ćwierci." +"Powinniśmy zbudować południowo-zachodnią kwaterę z metalu." #: lang/json/recipe_from_json.py msgid "" @@ -224174,7 +231132,7 @@ msgid "" "from the southwest room with metal." msgstr "" "Budynek główny może służyć nam za centrum działalności i jadalnię. " -"Przebudujmy pomieszczenie na południowym zachodzie do tego celu." +"Powinniśmy zbudować od południowego-zachodu pokój z metalu." #: lang/json/recipe_from_json.py msgid "" @@ -224182,416 +231140,560 @@ msgid "" "between the southeast and southwest rooms with metal." msgstr "" "Budynek główny może służyć nam za centrum działalności i jadalnię. " -"Potrzebujemy metalu do połączenia południowo-wschodniego pomieszczenia z " -"południowo-zachodnim." +"Powinniśmy zbudować między południowym wschodem a południowym zachodem " +"pokoje z metalu." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build half of a mi-go resin shack with a sod roof " "on the northeast side of the camp" msgstr "" +"Potrzebujemy schronienia, więc zbuduj pół chaty z żywicy mi-go z dachem z " +"darni w północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We should use mi-go resin to expand the shelter so we have space for another" " bed." msgstr "" +"Powinniśmy użyć żywicy mi-go do rozbudowy schronienia, dzięki czemu " +"mielibyśmy miejsce na kolejne łóżko." #: lang/json/recipe_from_json.py msgid "We should use mi-go resin to finish the northeast shack." -msgstr "" +msgstr "Powinniśmy użyć żywicy mi-go do ukończenia północno-wschodniej chaty." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a mi-go resin building on the " "east side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po wschodniej stronie " +"budynek z żywicy mi-go, który możemy wykorzystać również jako część budynku " +"głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a mi-go resin room on the east side, " "which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po wschodniej stronie pokój " +"z żywicy mi-go, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a mi-go resin building on the " "southeast side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po południowo-wschodniej " +"stronie budynek z żywicy mi-go, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a mi-go resin room on the southeast " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-wschodniej " +"stronie pokój z żywicy mi-go, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a mi-go resin building on the " "northwest side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po północno-zachodniej " +"stronie budynek z żywicy mi-go, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a mi-go resin building on the " "west side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po zachodniej stronie " +"budynek z żywicy mi-go, który możemy wykorzystać również jako część budynku " +"głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a mi-go resin room on the west side, " "which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po zachodniej stronie pokój " +"z żywicy mi-go, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a mi-go resin building on the " "southwest side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po południowo-zachodniej " +"stronie budynek z żywicy mi-go, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a mi-go resin room on the southwest " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-zachodniej " +"stronie pokój z żywicy mi-go, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from mi-go resin." msgstr "" +"Budynek główny może służyć nam za kuchnię i jadalnię. Powinniśmy zbudować " +"północno-wschodnią kwaterę z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with mi-go resin." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od wschodu pokój z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from mi-go resin." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować północno-zachodnią kwaterę z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with mi-go resin." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od zachód pokój z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with mi-go resin." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować między wschodem a zachodem pokoje z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from mi-go resin." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować południowo-wschodnią kwaterę z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with mi-go resin." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od południowego wschodu pokój z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from mi-go resin." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować południowo-zachodnią kwaterę z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with mi-go resin." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od południowego zachodu pokój z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with mi-go resin." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować między południowym wschodem a południowym zachodem " +"pokoje z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build half of a rammed earth shack with a sod roof " "on the northeast side of the camp" msgstr "" +"Potrzebujemy schronienia, więc zbuduj pół chaty z ubitej ziemi z dachem z " +"darni w północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We should use rammed earth to expand the shelter so we have space for " "another bed." msgstr "" +"Powinniśmy użyć ubitej ziemi do rozbudowy schronienia, dzięki czemu " +"mielibyśmy miejsce na kolejne łóżko." #: lang/json/recipe_from_json.py msgid "We should use rammed earth to finish the northeast shack." -msgstr "" +msgstr "Powinniśmy użyć ubitej ziemi do ukończenia północno-wschodniej chaty." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a rammed earth building on the " "east side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po wschodniej stronie " +"budynek z ubitej ziemi, który możemy wykorzystać również jako część budynku " +"głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a rammed earth room on the east side," " which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po wschodniej stronie pokój " +"z ubitej ziemi, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a rammed earth building on the " "southeast side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po południowo-wschodniej " +"stronie budynek z ubitej ziemi, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a rammed earth room on the southeast " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-wschodniej " +"stronie pokój z ubitej ziemi, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a rammed earth building on the " "northwest side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po północno-zachodniej " +"stronie budynek z ubitej ziemi, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a rammed earth building on the " "west side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po zachodniej stronie " +"budynek z ubitej ziemi, który możemy wykorzystać również jako część budynku " +"głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a rammed earth room on the west side," " which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po zachodniej stronie pokój " +"z ubitej ziemi, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a rammed earth building on the " "southwest side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po południowo-zachodniej " +"stronie budynek z ubitej ziemi, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a rammed earth room on the southwest " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-zachodniej " +"stronie pokój z ubitej ziemi, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from rammed earth." msgstr "" +"Budynek główny może służyć nam za kuchnię i jadalnię. Powinniśmy zbudować " +"północno-wschodnią kwaterę z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with rammed earth." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od wschodu pokój z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from rammed earth." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować północno-zachodnią kwaterę z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with rammed earth." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od zachodu pokój z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with rammed earth." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować między wschodem a zachodem pokoje z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from rammed earth." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować południowo-wschodnią kwaterę z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with rammed earth." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od południowego wschodu pokój z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from rammed earth." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować południowo-zachodnią kwaterę z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with rammed earth." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od południowego zachodu pokój z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with rammed earth." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować między południowym wschodem a południowym zachodem " +"pokoje z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build half of a stone shack with a wooden roof on " "the northeast side of the camp" msgstr "" +"Potrzebujemy schronienia, więc zbuduj pół kamiennej chaty z drewnianym " +"dachem w północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We should use rocks to expand the shelter so we have space for another bed." msgstr "" +"Powinniśmy użyć kamieni do rozbudowy schronienia, dzięki czemu mielibyśmy " +"miejsce na kolejne łóżko." #: lang/json/recipe_from_json.py msgid "We should use rocks to finish the northeast shack." -msgstr "" +msgstr "Powinniśmy użyć kamieni do ukończenia północno-wschodniej chaty." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a rock building on the east side," " which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, stawiając po wschodniej stronie " +"kamienny budynek, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a rock room on the east side, which " "we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po wschodniej stronie " +"kamienny pokój, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a rock building on the southeast " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, stawiając od południowo-wschodniej " +"strony kamienny budynek, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a rock room on the southeast side, " "which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-wschodniej " +"stronie kamienny pokój, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a rock building on the northwest " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, stawiając od północno-zachodniej " +"strony kamienny budynek, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a rock building on the west side," " which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, stawiając po zachodniej stronie " +"kamienny budynek, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a rock room on the west side, which " "we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po zachodniej stronie " +"kamienny pokój, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a rock building on the southwest " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, stawiając od południowo-zachodniej " +"strony kamienny budynek, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a rock room on the southwest side, " "which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-zachodniej " +"stronie kamienny pokój, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from rocks." msgstr "" +"Budynek główny może służyć nam za kuchnię i jadalnię. Powinniśmy zbudować " +"północno-wschodnią kamienną kwaterę." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with rocks." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od wschodu kamienny pokój." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from rocks." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować północno-zachodnią kamienną kwaterę." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with rocks." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od zachodu kamienny pokój." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with rocks." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować między wschodem a zachodem kamienne pokoje." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from rocks." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować południowo-wschodnią kamienną kwaterę." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with rocks." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od południowego wschodu kamienny pokój." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from rocks." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować południowo-zachodnią kamienną kwaterę." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with rocks." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od południowego zachodu kamienny pokój." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with rocks." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować między południowym wschodem a południowym zachodem " +"kamienne pokoje." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so set up a tent on the northeast side of the camp." msgstr "" +"Potrzebujemy schronienia, więc ustaw namiot w północno-wschodniej stronie " +"obozu." #: lang/json/recipe_from_json.py msgid "northeast tent" -msgstr "" +msgstr "północno-wschodni namiot" #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a tent on the east side, though " "doing so will mean we need more materials to build the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania rozbijając namiot po wschodniej " +"stronie, ale będzie to oznaczało, że będziemy potrzebować więcej materiałów " +"do budowy budynku głównego." #: lang/json/recipe_from_json.py msgid "east tent" -msgstr "namiot, wschód" +msgstr "wschodni namiot" #: lang/json/recipe_from_json.py msgid "" @@ -224599,10 +231701,13 @@ msgid "" "though doing so will mean we need more materials to build the central " "building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania rozbijając namiot po południowo-" +"wschodniej stronie, ale będzie to oznaczało, że będziemy potrzebować więcej " +"materiałów do budowy budynku głównego." #: lang/json/recipe_from_json.py msgid "southeast tent" -msgstr "namiot, południowy wschód" +msgstr "południowo-wschodni namiot" #: lang/json/recipe_from_json.py msgid "" @@ -224610,20 +231715,26 @@ msgid "" "though doing so will mean we need more materials to build the central " "building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania rozbijając namiot po północno-" +"zachodniej stronie, ale będzie to oznaczało, że będziemy potrzebować więcej " +"materiałów do budowy budynku głównego." #: lang/json/recipe_from_json.py msgid "northwest tent" -msgstr "namiot, północny zachód" +msgstr "północno-zachodni namiot" #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a tent on the west side, though " "doing so will mean we need more materials to build the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania rozbijając namiot po zachodniej " +"stronie, ale będzie to oznaczało, że będziemy potrzebować więcej materiałów " +"do budowy budynku głównego." #: lang/json/recipe_from_json.py msgid "west tent" -msgstr "namiot, zachód" +msgstr "zachodni namiot" #: lang/json/recipe_from_json.py msgid "" @@ -224631,286 +231742,388 @@ msgid "" "though doing so will mean we need more materials to build the central " "building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania rozbijając namiot po południowo-" +"zachodniej stronie, ale będzie to oznaczało, że będziemy potrzebować więcej " +"materiałów do budowy budynku głównego." #: lang/json/recipe_from_json.py msgid "southwest tent" -msgstr "namiot, południowy zachód" +msgstr "południowo-zachodni namiot" #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build half of a wattle-and-daub shack with a sod " "roof on the northeast side of the camp" msgstr "" +"Potrzebujemy schronienia, więc zbuduj pół szachulcowej chaty z dachem z " +"darni w północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We should use wattle-and-daub to expand the shelter so we have space for " "another bed." msgstr "" +"Powinniśmy użyć szachulca do rozbudowy schronienia, dzięki czemu mielibyśmy " +"miejsce na kolejne łóżko." #: lang/json/recipe_from_json.py msgid "We should use wattle-and-daub to finish the northeast shack." -msgstr "" +msgstr "Powinniśmy użyć szachulca do ukończenia północno-wschodniej chaty." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a wattle-and-daub building on the" " east side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po wschodniej stronie " +"szachulcowy budynek, który możemy wykorzystać również jako część budynku " +"głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a wattle-and-daub room on the east " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po wschodniej stronie " +"szachulcowy pokój, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a wattle-and-daub building on the" " southeast side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po zachodniej stronie " +"szachulcowy budynek, który możemy wykorzystać również jako część budynku " +"głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a wattle-and-daub room on the " "southeast side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-wschodniej " +"stronie szachulcowy pokój, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a wattle-and-daub building on the" " northwest side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po północno-zachodniej " +"stronie szachulcowy budynek, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a wattle-and-daub building on the" " west side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po zachodniej stronie " +"szachulcowy budynek, który możemy wykorzystać również jako część budynku " +"głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a wattle-and-daub room on the west " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po zachodniej stronie " +"szachulcowy pokój, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a wattle-and-daub building on the" " southwest side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po południowo-zachodniej " +"stronie szachulcowy budynek, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a wattle-and-daub room on the " "southwest side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-zachodniej " +"stronie szachulcowy pokój, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from wattle-and-daub." msgstr "" +"Budynek główny może służyć nam za kuchnię i jadalnię. Powinniśmy zbudować " +"północno-wschodnią szachulcową kwaterę." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with wattle-and-daub." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od wschodu szachulcowy pokój." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from wattle-and-daub." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować północno-zachodnią szachulcową kwaterę." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with wattle-and-daub." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od zachodu szachulcowy pokój." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with wattle-and-daub." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować między wschodem a zachodem szachulcowe pokoje." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from wattle-and-daub." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować południowo-wschodnią szachulcową kwaterę." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with wattle-and-daub." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od wschodu szachulcowy pokój." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from wattle-and-daub." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować południowo-zachodnią szachulcową kwaterę." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with wattle-and-daub." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od południowego zachodu szachulcowy pokój." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with wattle-and-daub." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować między południowym wschodem a południowym zachodem " +"szachulcowe pokoje." #: lang/json/recipe_from_json.py msgid "" "We need some shelter, so build half of a wood panel shack with a wooden roof" " on the northeast side of the camp" msgstr "" +"Potrzebujemy schronienia, więc zbuduj pół chaty z drewnianych paneli z " +"drewnianym dachem w północno-wschodniej stronie obozu." #: lang/json/recipe_from_json.py msgid "" "We should use wood panel to expand the shelter so we have space for another " "bed." msgstr "" +"Powinniśmy użyć drewnianych paneli do rozbudowy schronienia, dzięki czemu " +"mielibyśmy miejsce na kolejne łóżko." #: lang/json/recipe_from_json.py msgid "We should use wood panel to finish the northeast shack." msgstr "" +"Powinniśmy użyć drewnianych paneli do ukończenia północno-wschodniej chaty." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a wood panel building on the east" " side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po wschodniej stronie " +"budynek z drewnianych paneli, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a wood panel room on the east side, " "which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po wschodniej stronie pokój " +"z drewnianych paneli, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a wood panel building on the " "southeast side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po południowo-wschodniej " +"stronie budynek z drewnianych paneli, który możemy wykorzystać również jako " +"część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a wood panel room on the southeast " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-wschodniej " +"stronie pokój z drewnianych paneli, który możemy użyć jako część budynku " +"głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a wood panel building on the " "northwest side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po północno-zachodniej " +"stronie budynek z drewnianych paneli, który możemy wykorzystać również jako " +"część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a wood panel building on the west" " side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po zachodniej stronie " +"budynek z drewnianych paneli, który możemy wykorzystać również jako część " +"budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a wood panel room on the west side, " "which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po zachodniej stronie pokój " +"z drewnianych paneli, który możemy użyć jako część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by putting up a wood panel building on the " "southwest side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkanie, stawiając po południowo-zachodniej " +"stronie budynek z drewnianych paneli, który możemy wykorzystać również jako " +"część budynku głównego." #: lang/json/recipe_from_json.py msgid "" "We should expand our housing by adding a wood panel room on the southwest " "side, which we can also use as part of the central building." msgstr "" +"Powinniśmy rozbudować nasze mieszkania, dodając po południowo-zachodniej " +"stronie pokój z drewnianych paneli, który możemy użyć jako część budynku " +"głównego." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a kitchen and dining hall. We should build " "the northeast quarter of one from wood panel." msgstr "" +"Budynek główny może służyć nam za kuchnię i jadalnię. Powinniśmy zbudować " +"północno-wschodnią kwaterę z drewnianych paneli." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the east room with wood panel." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od wschodu pokój z drewnianych paneli." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "northwest quarter of one from wood panel." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować północno-zachodnią kwaterę z drewnianych paneli." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the west room with wood panel." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować od zachodu pokój z drewnianych paneli." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the east and west rooms with wood panel." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować między wschodem a zachodem pokoje z drewnianych paneli." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southeast quarter of one from wood panel." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować południowo-wschodnią kwaterę z drewnianych paneli." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southeast room with wood panel." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować od południowego wschodu pokój z drewnianych paneli." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build the " "southwest quarter of one from wood panel." msgstr "" +"Budynek główny może służyć za centrum naszej działalności i jadalnię. " +"Powinniśmy zbudować południowo-zachodnią kwaterę z drewnianych paneli." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build out " "from the southwest room with wood panel." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować od południowego-zachodu pokój z drewnianych paneli." #: lang/json/recipe_from_json.py msgid "" "A central building can act as a core and dining hall. We should build " "between the southeast and southwest rooms with wood panel." msgstr "" +"Budynek główny może służyć nam za centrum działalności i jadalnię. " +"Powinniśmy zbudować między południowym wschodem a południowym zachodem " +"pokoje z drewnianych paneli." #: lang/json/recipe_from_json.py msgid "We need to survey the base site first." -msgstr "" +msgstr "Najpierw musimy zbadać miejsce bazy." #: lang/json/recipe_from_json.py msgid "" "The first thing we are going to need is a command tent to manage and task " "workers from." msgstr "" -"Pierwszą rzeczą którą będziemy potrzebować jest namiot dowodzenia, z którego" -" można zarządzać i wydawać polecenia pracownikom." +"Pierwszą rzeczą, którą będziemy potrzebować, jest namiot dowodzenia, z " +"którego można zarządzać i wydawać polecenia pracownikom." #: lang/json/recipe_from_json.py msgid "basic northeast tent" -msgstr "" +msgstr "podstawowy północno-wschodni namiot" #: lang/json/recipe_from_json.py msgid "" @@ -224921,31 +232134,31 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "basic firepit" -msgstr "" +msgstr "podstawowe palenisko" #: lang/json/recipe_from_json.py msgid "" "To make this outpost functional we are going to need storage containers to " "organize our supplies." msgstr "" -"By uczynić tą placówkę funkcjonalną będziemy potrzebować kontenerów do " +"By uczynić tą placówkę funkcjonalną, będziemy potrzebować kontenerów do " "składowania i sortowania naszych zapasów." #: lang/json/recipe_from_json.py msgid "basic storage" -msgstr "" +msgstr "podstawowy magazyn" #: lang/json/recipe_from_json.py msgid "" "Next we should expand the camp to comfortably support two people " "indefinitely." msgstr "" -"Następnie powinniśmy rozszerzyć obóz by zapewnił komfortowe i stałe wsparcie" -" dla dwojga ludzi." +"Następnie powinniśmy rozszerzyć obóz, by zapewnił komfortowe i stałe " +"wsparcie dla dwojga ludzi." #: lang/json/recipe_from_json.py msgid "basic northeast bed" -msgstr "" +msgstr "podstawowe północno-wschodnie łóżko" #: lang/json/recipe_from_json.py msgid "" @@ -224957,7 +232170,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "basic northwest tent" -msgstr "" +msgstr "podstawowy północno-zachodni namiot" #: lang/json/recipe_from_json.py msgid "" @@ -224969,7 +232182,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "basic central building" -msgstr "" +msgstr "podstawowy budynek główny" #: lang/json/recipe_from_json.py msgid "" @@ -224981,7 +232194,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "basic west tent" -msgstr "" +msgstr "podstawowy zachodni namiot" #: lang/json/recipe_from_json.py msgid "We need to expand our base to include basic dining facilities." @@ -224991,7 +232204,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "basic central kitchen" -msgstr "" +msgstr "podstawowa główna kuchnia" #: lang/json/recipe_from_json.py msgid "More housing means that we can support additional specialists." @@ -225000,7 +232213,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "basic southeast tent" -msgstr "" +msgstr "podstawowy południowo-wschodni namiot" #: lang/json/recipe_from_json.py msgid "An expanded kitchen is needed to support our growing settlement." @@ -225008,7 +232221,7 @@ msgstr "Rozbudowa kuchni jest niezbędna dla utrzymania naszej rosnącej osady." #: lang/json/recipe_from_json.py msgid "basic expanded kitchen" -msgstr "" +msgstr "podstawowa rozszerzona kuchnia" #: lang/json/recipe_from_json.py msgid "" @@ -225020,7 +232233,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "basic completed central building" -msgstr "" +msgstr "podstawowy ukończony budynek główny " #: lang/json/recipe_from_json.py msgid "" @@ -225032,7 +232245,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "basic water well" -msgstr "" +msgstr "podstawowa studnia" #: lang/json/recipe_from_json.py msgid "" @@ -225044,7 +232257,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "basic partial wall" -msgstr "" +msgstr "podstawowa częściowa ściana" #: lang/json/recipe_from_json.py msgid "We need to finish our half built fortifications." @@ -225052,7 +232265,7 @@ msgstr "Musimy ukończyć nasze nieukończone fortyfikacje." #: lang/json/recipe_from_json.py msgid "basic complete wall" -msgstr "" +msgstr "podstawowa ukończona ściana" #: lang/json/recipe_from_json.py msgid "We're running out of room and need another living quarters." @@ -225060,7 +232273,7 @@ msgstr "Zaczyna brakować miejsca, i potrzebne są nowe kwatery." #: lang/json/recipe_from_json.py msgid "basic east tent" -msgstr "" +msgstr "podstawowy wschodni namiot" #: lang/json/recipe_from_json.py msgid "Our kitchen isn't able to keep up with demand, we need to expand it." @@ -225070,7 +232283,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "basic dining hall" -msgstr "" +msgstr "podstawowa jadalnia" #: lang/json/recipe_from_json.py msgid "We should build stronger doors to secure our compound." @@ -225079,33 +232292,35 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "basic reinforced gates" -msgstr "" +msgstr "podstawowe wzmocnione bramy" #: lang/json/recipe_from_json.py msgid "One more tent and our living space will be full." -msgstr "" +msgstr "Jeszcze jeden namiot i nasza przestrzeń mieszkalna będzie pełna." #: lang/json/recipe_from_json.py msgid "basic southwest tent" -msgstr "" +msgstr "podstawowy południowo-zachodni namiot" #: lang/json/recipe_from_json.py msgid "" "We could construct a radio tower to improve communication range, first step " "is the tower structure." msgstr "" +"Możemy zbudować wieżę radiową, aby poprawić zasięg komunikacji, pierwszym " +"krokiem jest struktura wieży." #: lang/json/recipe_from_json.py msgid "basic radio tower" -msgstr "" +msgstr "podstawowa wieża radiowa" #: lang/json/recipe_from_json.py msgid "We need to build a console to control the radio tower." -msgstr "" +msgstr "Potrzebujemy zbudować konsolę do sterowania wieżą radiową." #: lang/json/recipe_from_json.py msgid "basic radio console" -msgstr "" +msgstr "podstawowa konsola wieży radiowej" #: lang/json/recipe_from_json.py msgid "Survey land for a kitchen." @@ -225113,34 +232328,34 @@ msgstr "Wymierz teren na kuchnię." #: lang/json/recipe_from_json.py msgid "Kitchen survey" -msgstr "" +msgstr "zarys kuchni" #: lang/json/recipe_from_json.py msgid "Building a cook-shack is our first task." -msgstr "Zbudowanie szopy do gotowania to nasze pierwsze zadanie." +msgstr "Zbudowanie chaty do gotowania to nasze pierwsze zadanie." #: lang/json/recipe_from_json.py msgid "Kitchen fireplace shack" -msgstr "" +msgstr "chata z paleniskiem kuchni" #: lang/json/recipe_from_json.py msgid "We need to finish framing the walls for the cook-shack." -msgstr "Musimy dokończyć obramowanie ścian szopy do gotowania." +msgstr "Musimy ukończyć obramowanie ścian chaty do gotowania." #: lang/json/recipe_from_json.py msgid "Kitchen finished shack" -msgstr "" +msgstr "ukończona chata kuchni" #: lang/json/recipe_from_json.py msgid "" "Expanding the shack by including a smoker will increase our versatility." msgstr "" -"Rozszerzenie szopy przez zaopatrzenie jej w wędzarnię zwiększy naszą " +"Rozszerzenie chaty przez zaopatrzenie jej w wędzarnię zwiększy naszą " "wszechstronność." #: lang/json/recipe_from_json.py msgid "Kitchen charcoal smoker" -msgstr "" +msgstr "wędzarnia na węgiel drzewny kuchni" #: lang/json/recipe_from_json.py msgid "A pantry will allow our cooks to store more non-perishables." @@ -225150,7 +232365,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "Kitchen pantry expansion" -msgstr "" +msgstr "rozszerzenie spiżarni kuchni" #: lang/json/recipe_from_json.py msgid "" @@ -225161,7 +232376,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "Kitchen more smoking racks" -msgstr "" +msgstr "więcej wędzarni kuchni" #: lang/json/recipe_from_json.py msgid "A well is needed so our cooks don't have to haul in water." @@ -225170,7 +232385,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "Kitchen water well" -msgstr "" +msgstr "studnia kuchni" #: lang/json/recipe_from_json.py msgid "" @@ -225182,7 +232397,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "Kitchen wood stoves" -msgstr "" +msgstr "piecyk na drewno kuchni" #: lang/json/recipe_from_json.py msgid "" @@ -225194,7 +232409,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "Kitchen expanded pantry" -msgstr "" +msgstr "rozszerzona spiżarnia kuchni" #: lang/json/recipe_from_json.py msgid "" @@ -225202,15 +232417,15 @@ msgid "" "picket or palisade. Requirements are for 1/2 an over map tile." msgstr "" "Okop, który może spowolnić ruch ale jest przeznaczony jako podbudowa pali " -"lub palisady. Wymagania są dla 1/2 pola mapy zasadniczej." +"lub palisady. Wymagania są dla 1/2 pola mapy głównej." #: lang/json/recipe_from_json.py msgid "" "A deep trench filled with spikes, requires a trench. Requirements are for " "1/2 an over map tile." msgstr "" -"Głęboki okop wypełniony kolcami, wymaga okopu. Wymagania są dla 1/2 pola " -"mapy zasadniczej." +"Głęboki okop wypełniony kolcami, wymaga okopu. Wymagania są dla 1/2 pola " +"mapy głównej." #: lang/json/recipe_from_json.py msgid "Survey land for a blacksmith shop." @@ -225218,7 +232433,7 @@ msgstr "Wymierz teren na kuźnię." #: lang/json/recipe_from_json.py msgid "Blacksmithy survey" -msgstr "" +msgstr "zarys kowalski" #: lang/json/recipe_from_json.py msgid "Building a forge and kiln is our first task." @@ -225226,7 +232441,7 @@ msgstr "Zbudowanie kuźni i pieca to nasze pierwsze zadanie." #: lang/json/recipe_from_json.py msgid "Blacksmithy forge and kiln" -msgstr "" +msgstr "kowalska kuźnia i piec" #: lang/json/recipe_from_json.py msgid "Building a proper roof for the shop is the next step." @@ -225234,7 +232449,7 @@ msgstr "Zbudowanie porządnego dachu jest następnym krokiem." #: lang/json/recipe_from_json.py msgid "Blacksmithy roof" -msgstr "" +msgstr "dach kowalski" #: lang/json/recipe_from_json.py msgid "Building a working table and placing an anvil are next." @@ -225244,7 +232459,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "Blacksmithy anvil and workbench" -msgstr "" +msgstr "kowalskie kowadło i stół warsztatowy" #: lang/json/recipe_from_json.py msgid "" @@ -225255,7 +232470,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "Blacksmithy expanded shop" -msgstr "" +msgstr "rozszerzony warsztat kowalski" #: lang/json/recipe_from_json.py msgid "We need some basic tools to make more advanced crafts." @@ -225265,7 +232480,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "Blacksmithy forging tools" -msgstr "" +msgstr "kowalskie narzędzia kuźni" #: lang/json/recipe_from_json.py msgid "An expanded forge will allow us to work on bigger projects." @@ -225273,7 +232488,7 @@ msgstr "Rozbudowana kuźnia zapewni możliwość pracy nad większymi projektami #: lang/json/recipe_from_json.py msgid "Blacksmithy expanded forge" -msgstr "" +msgstr "rozszerzona kuźnia kowalska" #: lang/json/recipe_from_json.py msgid "Proper steel work requires a bellows and quenching setup." @@ -225281,7 +232496,7 @@ msgstr "Właściwa obróbka stali wymaga miechów i koryt do zanurzania." #: lang/json/recipe_from_json.py msgid "Blacksmithy bellows and quenching barrels" -msgstr "" +msgstr "kowalskie miechy i beczki hartownicze" #: lang/json/recipe_from_json.py msgid "A separate workshop will allow us to do the most basic of machining." @@ -225289,15 +232504,15 @@ msgstr "Osobny warsztat pozwoli nam na podstawowa obróbkę maszynową." #: lang/json/recipe_from_json.py msgid "Blacksmithy machine shop" -msgstr "" +msgstr "kowalski warsztat maszyn" #: lang/json/recipe_from_json.py msgid "Next we need to add some basic tools and vises to the workshop." -msgstr "" +msgstr "Potrzebujemy wyposażyć warsztat w podstawowe narzędzia i imadła." #: lang/json/recipe_from_json.py msgid "Blacksmithy machine shop tools" -msgstr "" +msgstr "kowalskie narzędzia warsztatu maszyn" #: lang/json/recipe_from_json.py msgid "Advanced forging processes require more room to work." @@ -225305,7 +232520,7 @@ msgstr "Zaawansowane procesy kowalskie wymagają więcej miejsca do pracy." #: lang/json/recipe_from_json.py msgid "Blacksmithy machine shop expansion" -msgstr "" +msgstr "kowalskie rozszerzenie warsztatu maszyn" #: lang/json/recipe_from_json.py msgid "An on-site well will allow us to fill boilers as needed." @@ -225315,7 +232530,7 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "Blacksmithy well" -msgstr "" +msgstr "kowalska studnia" #: lang/json/recipe_from_json.py msgid "" @@ -225327,2318 +232542,5455 @@ msgstr "" #: lang/json/recipe_from_json.py msgid "Blacksmithy drop hammer" -msgstr "" +msgstr "kowalski młot kafarowy" #: lang/json/recipe_from_json.py msgid "" "We should build a fireplace for cooking and grab a pot. Let's set up near " "the working terminal." msgstr "" +"Powinniśmy zbudować palenisko do gotowania i zdobyć garnek. Ulokujemy je w " +"pobliżu terminala roboczego." #: lang/json/recipe_from_json.py msgid "" "We should build a brazier for cooking and grab a pot. Let's set up near the" " working terminal." msgstr "" +"Powinniśmy zbudować koksownik do gotowania i zdobyć garnek. Ulokujemy go w " +"pobliżu terminala roboczego." #: lang/json/recipe_from_json.py msgid "" "We should build a wood stove for cooking and grab a pot. Let's set up near " "the working terminal." msgstr "" +"Powinniśmy piecyk na drewno do gotowania i zdobyć garnek. Ulokujemy je w " +"pobliżu terminala roboczego." #: lang/json/recipe_from_json.py msgid "" "We should build a well, put it near the terminal. This will make our future" " here more secure." msgstr "" +"Powinniśmy zbudować studnię, umieścić ją w pobliżu terminala. Dzięki temu " +"nasza przyszłość tutaj będzie bezpieczniejsza." #: lang/json/recipe_from_json.py msgid "Let's furnish the southeast bedroom with regular beds." -msgstr "" +msgstr "Pora wyposażyć południowo-wschodnią sypialnię w standardowe łóżka." #: lang/json/recipe_from_json.py msgid "Let's furnish the east bedroom with regular beds." -msgstr "" +msgstr "Pora wyposażyć wschodnią sypialnię w standardowe łóżka." #: lang/json/recipe_from_json.py msgid "furnish the E bedroom" -msgstr "" +msgstr "wyposaż wschodnią sypialnię" #: lang/json/recipe_from_json.py msgid "Let's furnish the southeast bedroom with straw beds." -msgstr "" +msgstr "Pora wyposażyć południowo-wschodnią sypialnię w słomiane łóżka." #: lang/json/recipe_from_json.py msgid "Let's furnish the east bedroom with straw beds." -msgstr "" +msgstr "Pora wyposażyć wschodnią sypialnię w słomiane łóżka." #: lang/json/recipe_from_json.py msgid "Let's furnish the southeast bedroom with makeshift beds." -msgstr "" +msgstr "Pora wyposażyć południowo-wschodnią sypialnię w prowizoryczne łóżka." #: lang/json/recipe_from_json.py msgid "Let's furnish the east bedroom with makeshift beds." -msgstr "" +msgstr "Pora wyposażyć wschodnią sypialnię w prowizoryczne łóżka." #: lang/json/recipe_from_json.py msgid "Let's furnish the southwest bedroom with regular beds." -msgstr "" +msgstr "Pora wyposażyć południowo-zachodnią sypialnię w standardowe łóżka." #: lang/json/recipe_from_json.py msgid "Let's furnish the west bedroom with regular beds." -msgstr "" +msgstr "Pora wyposażyć zachodnią sypialnię w standardowe łóżka." #: lang/json/recipe_from_json.py msgid "furnish the W bedroom" -msgstr "" +msgstr "wyposaż zachodnią sypialnię" #: lang/json/recipe_from_json.py msgid "Let's furnish the northwest bedroom with regular beds." -msgstr "" +msgstr "Pora wyposażyć północno-zachodnią sypialnię w standardowe łóżka." #: lang/json/recipe_from_json.py msgid "Let's furnish the southwest bedroom with straw beds." -msgstr "" +msgstr "Pora wyposażyć południowo-zachodnią sypialnię w słomiane łóżka." #: lang/json/recipe_from_json.py msgid "Let's furnish the west bedroom with straw beds." -msgstr "" +msgstr "Pora wyposażyć zachodnią sypialnię w słomiane łóżka." #: lang/json/recipe_from_json.py msgid "Let's furnish the northwest bedroom with straw beds." -msgstr "" +msgstr "Pora wyposażyć północno-zachodnią sypialnię w słomiane łóżka." #: lang/json/recipe_from_json.py msgid "Let's furnish the southwest bedroom with makeshift beds." -msgstr "" +msgstr "Pora wyposażyć południowo-zachodnią sypialnię w prowizoryczne łóżka." #: lang/json/recipe_from_json.py msgid "Let's furnish the west bedroom with makeshift beds." -msgstr "" +msgstr "Pora wyposażyć zachodnią sypialnię w prowizoryczne łóżka." #: lang/json/recipe_from_json.py msgid "Let's furnish the northwest bedroom with makeshift beds." -msgstr "" +msgstr "Pora wyposażyć północno-zachodnią sypialnię w prowizoryczne łóżka." #: lang/json/recipe_from_json.py msgid "Let's make a dining area." -msgstr "" +msgstr "Zróbmy jadalnię." #: lang/json/recipe_from_json.py msgid "furnish the dining room" -msgstr "" +msgstr "wyposaż jadalnię" #: lang/json/recipe_from_json.py msgid "Let's make a living room area." -msgstr "" +msgstr "Zróbmy miejsce na salon." #: lang/json/recipe_from_json.py msgid "furnish the living room" -msgstr "" +msgstr "wyposaż salon" #: lang/json/recipe_from_json.py msgid "Let's build some pantry storage." -msgstr "" +msgstr "Zbudujmy jakąś spiżarnię." #: lang/json/recipe_from_json.py msgid "build some wooden racks" -msgstr "" +msgstr "zbuduj parę drewnianych stojaków" #: lang/json/recipe_from_json.py msgid "Let's build a work bench." -msgstr "" +msgstr "Zbudujmy stół warsztatowy." #: lang/json/recipe_from_json.py msgid "build a work bench" -msgstr "" +msgstr "zbuduj stół warsztatowy" #: lang/json/recipe_from_json.py msgid "" "Let's build some living quarters so we can expand. We will start in the " "southeast corner." msgstr "" +"Zbudujmy jakieś pomieszczenia mieszkalne, żebyśmy mogli się rozwijać. " +"Zaczniemy od południowo-wschodniego narożnika." #: lang/json/recipe_from_json.py msgid "build SE log bedroom walls" -msgstr "" +msgstr "zbuduj południowo-wschodnie ściany sypialni z kłód" #: lang/json/recipe_from_json.py msgid "" "Let's build some living quarters so we can expand. We will continue along " "the same wall." msgstr "" +"Zbudujmy jakieś pomieszczenia mieszkalne, żebyśmy mogli się rozwijać. " +"Będziemy kontynuować wzdłuż tej samej ściany." #: lang/json/recipe_from_json.py msgid "build E log bedroom walls" -msgstr "" +msgstr "zbuduj wschodnie ściany sypialni z kłód" #: lang/json/recipe_from_json.py msgid "" "Let's build some living quarters so we can expand. We will continue along " "the other wall." msgstr "" +"Zbudujmy jakieś pomieszczenia mieszkalne, żebyśmy mogli się rozwijać. " +"Będziemy kontynuować wzdłuż drugiej ściany." #: lang/json/recipe_from_json.py msgid "build SW log bedroom walls" -msgstr "" +msgstr "zbuduj południowo-zachodnie ściany sypialni z kłód" #: lang/json/recipe_from_json.py msgid "build W log bedroom walls" -msgstr "" +msgstr "zbuduj zachodnie ściany sypialni z kłód" #: lang/json/recipe_from_json.py msgid "build NW log bedroom walls" -msgstr "" +msgstr "zbuduj północno-zachodnie ściany sypialni z kłód" #: lang/json/recipe_from_json.py msgid "build SE rock bedroom walls" -msgstr "" +msgstr "zbuduj południowo-wschodnie kamienne ściany sypialni" #: lang/json/recipe_from_json.py msgid "build E rock bedroom walls" -msgstr "" +msgstr "zbuduj wschodnie kamienne ściany sypialni" #: lang/json/recipe_from_json.py msgid "build SW rock bedroom walls" -msgstr "" +msgstr "zbuduj południowo-zachodnie kamienne ściany sypialni" #: lang/json/recipe_from_json.py msgid "build W rock bedroom walls" -msgstr "" +msgstr "zbuduj zachodnie kamienne ściany sypialni" #: lang/json/recipe_from_json.py msgid "build NW rock bedroom walls" -msgstr "" +msgstr "zbuduj północno-zachodnie kamienne ściany sypialni" #: lang/json/recipe_from_json.py msgid "build SE standard bedroom walls" -msgstr "" +msgstr "zbuduj południowo-wschodnie standardowe ściany sypialni" #: lang/json/recipe_from_json.py msgid "build E standard bedroom walls" +msgstr "zbuduj wschodnie standardowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build SW standard bedroom walls" +msgstr "zbuduj południowo-zachodnie standardowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build W standard bedroom walls" +msgstr "zbuduj zachodnie standardowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build NW standard bedroom walls" +msgstr "zbuduj północno-zachodnie standardowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build SE wattle and daub bedroom walls" +msgstr "zbuduj południowo-wschodnie szachulcowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build E wattle and daub bedroom walls" +msgstr "zbuduj wschodnie szachulcowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build SW wattle and daub bedroom walls" +msgstr "zbuduj południowo-zachodnie szachulcowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build W wattle and daub bedroom walls" +msgstr "zbuduj zachodnie szachulcowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build NW wattle and daub bedroom walls" +msgstr "zbuduj północno-zachodnie szachulcowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build SE wood panel bedroom walls" +msgstr "zbuduj południowo-wschodnie ściany sypialni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "build E wood panel bedroom walls" +msgstr "zbuduj wschodnie ściany sypialni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "build SW wood panel bedroom walls" +msgstr "zbuduj południowo-zachodnie ściany sypialni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "build W wood panel bedroom walls" +msgstr "zbuduj zachodnie ściany sypialni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "build NW wood panel bedroom walls" +msgstr "zbuduj północno-zachodnie ściany sypialni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southeast bedroom with a regular bed." +msgstr "Pora wyposażyć południowo-wschodnią sypialnię w standardowe łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southeast bedroom with a straw bed." +msgstr "Pora wyposażyć południowo-wschodnią sypialnię w słomiane łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the west bedroom with a straw bed." +msgstr "Pora wyposażyć zachodnią sypialnię w słomiane łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southeast bedroom with a makeshift bed." +msgstr "Pora wyposażyć południowo-wschodnią sypialnię w prowizoryczne łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the west bedroom with a makeshift bed." +msgstr "Pora wyposażyć zachodnią sypialnię w prowizoryczne łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southwest bedroom with a regular bed." +msgstr "Pora wyposażyć południowo-zachodnią sypialnię w standardowe łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southwest bedroom with a straw bed." +msgstr "Pora wyposażyć południowo-zachodnią sypialnię w słomiane łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southwest bedroom with a makeshift bed." +msgstr "Pora wyposażyć południowo-zachodnią sypialnię w prowizoryczne łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southern bedroom with regular beds." +msgstr "Pora wyposażyć południową sypialnię w standardowe łóżka." + +#: lang/json/recipe_from_json.py +msgid "furnish the S bedroom" +msgstr "wyposaż południową sypialnię" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southern bedroom with straw beds." +msgstr "Pora wyposażyć południową sypialnię w słomiane łóżka." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southern bedroom with makeshift beds." +msgstr "Pora wyposażyć południową sypialnię w prowizoryczne łóżka." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some living quarters so we can expand. We will start in the " +"northwest corner." +msgstr "" +"Zbudujmy jakieś pomieszczenia mieszkalne, żebyśmy mogli się rozwijać. " +"Zaczniemy od północno-zachodniego narożnika." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some living quarters so we can expand. We will continue along " +"the west wall." +msgstr "" +"Zbudujmy jakieś pomieszczenia mieszkalne, żebyśmy mogli się rozwijać. " +"Będziemy kontynuować wzdłuż zachodniej ściany." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some living quarters so we can expand. We will continue along " +"the southwest corner." +msgstr "" +"Zbudujmy jakieś pomieszczenia mieszkalne, żebyśmy mogli się rozwijać. " +"Będziemy kontynuować wzdłuż południowo-zachodniej ściany." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some living quarters so we can expand. We will continue along " +"the south wall." +msgstr "" +"Zbudujmy jakieś pomieszczenia mieszkalne, żebyśmy mogli się rozwijać. " +"Będziemy kontynuować wzdłuż południowej ściany." + +#: lang/json/recipe_from_json.py +msgid "build S log bedroom walls" +msgstr "zbuduj południowe ściany sypialni z kłód" + +#: lang/json/recipe_from_json.py +msgid "build S rock bedroom walls" +msgstr "zbuduj południowe kamienne ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build S standard bedroom walls" +msgstr "zbuduj południowe standardowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build S wattle and daub bedroom walls" +msgstr "zbuduj południowe szachulcowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build NW wood bedroom walls" +msgstr "zbuduj północno-zachodnie drewniane ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build W wood bedroom walls" +msgstr "zbuduj zachodnie drewniane ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build SW wood bedroom walls" +msgstr "zbuduj południowo-zachodnie drewniane ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build S wood bedroom walls" +msgstr "zbuduj południowe drewniane ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well, across from the terminal. This will make our future" +" here more secure." +msgstr "" +"Powinniśmy zbudować studnię, umieścić ją w naprzeciwko terminala. Dzięki " +"temu nasza przyszłość tutaj będzie bezpieczniejsza." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the northwest bedroom with a regular bed." +msgstr "Pora wyposażyć północno-zachodnią sypialnię w standardowe łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the west bedroom with a regular bed." +msgstr "Pora wyposażyć zachodnią sypialnię w standardowe łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the west bedroom with regular a bed." +msgstr "Pora wyposażyć zachodnią sypialnię w standardowe łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southern bedroom with a regular bed." +msgstr "Pora wyposażyć południową sypialnię w standardowe łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southern bedroom with a straw bed." +msgstr "Pora wyposażyć południową sypialnię w słomiane łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southern bedroom with a makeshift bed." +msgstr "Pora wyposażyć południową sypialnię w prowizoryczne łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the eastern bedroom with a regular bed." +msgstr "Pora wyposażyć wschodnią sypialnię w standardowe łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the eastern bedroom with a straw bed." +msgstr "Pora wyposażyć wschodnią sypialnię w słomiane łóżko." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the eastern bedroom with a makeshift bed." +msgstr "Pora wyposażyć wschodnią sypialnię w prowizoryczne łóżko." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some living quarters so we can expand. We will enclose the west" +" side of the stairs." +msgstr "" +"Zbudujmy jakieś pomieszczenia mieszkalne, żebyśmy mogli się rozwijać. " +"Zabudujemy zachodnią stronę schodów." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build two living quarters so we can expand. We will continue along " +"the south wall." +msgstr "" +"Zbudujmy dwa pomieszczenia mieszkalne, abyśmy mogli się rozwijać. Będziemy " +"kontynuować wzdłuż południowej ściany." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build another bedroom so we can expand. We will continue to enclose " +"the stairwell and add new doors." +msgstr "" +"Zbudujmy kolejną sypialnię, abyśmy mogli się powiększyć. Nadal będziemy " +"zabudowywać klatkę schodową i dodawać nowe drzwi." + +#: lang/json/recipe_from_json.py +msgid "build central E bedroom log walls" +msgstr "zbuduj centralne wschodnie ściany sypialni z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's build another bedroom on the east wall." +msgstr "Zbudujmy kolejną sypialnię na wschodniej ścianie." + +#: lang/json/recipe_from_json.py +msgid "build E bedroom log walls" +msgstr "zbuduj wschodnie ściany sypialni z kłód" + +#: lang/json/recipe_from_json.py +msgid "build central E bedroom rock walls" +msgstr "zbuduj centralne wschodnie kamienne ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build E bedroom rock walls" +msgstr "zbuduj wschodnie kamienne ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build central E bedroom standard walls" +msgstr "zbuduj centralne wschodnie standardowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build E bedroom standard walls" +msgstr "zbuduj wschodnie standardowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build central E bedroom wattle and daub" +msgstr "zbuduj centralne wschodnie szachulcowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build E bedroom wattle and daub" +msgstr "zbuduj wschodnie szachulcowe ściany sypialni" + +#: lang/json/recipe_from_json.py +msgid "build S wood panel bedroom walls" +msgstr "zbuduj południowe ściany sypialni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "build central E bedroom wood panel bedroom walls" +msgstr "zbuduj centralne wschodnie ściany sypialni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "build E bedroom wood panel bedroom walls" +msgstr "zbuduj wschodnie ściany sypialni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Survey land for a kitchen and dining area." +msgstr "Wymierz teren na kuchnię i jadalnię." + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build 2 fireplaces for cooking and " +"grab a pot." +msgstr "" +"Teraz, gdy mamy już jakieś schronienie, powinniśmy zbudować 2 paleniska i " +"zdobyć garnek." + +#: lang/json/recipe_from_json.py +msgid "build 2 fireplaces" +msgstr "zbuduj 2 paleniska" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build 2 stoves for cooking and grab a" +" pot." +msgstr "" +"Teraz, gdy mamy już jakieś schronienie, powinniśmy zbudować 2 piecyki do " +"gotowania i zdobyć garnek." + +#: lang/json/recipe_from_json.py +msgid "build 2 wood stoves" +msgstr "zbuduj 2 drewniane piecyki" + +#: lang/json/recipe_from_json.py +msgid "We should build a well. This will make cooking more convenient." +msgstr "" +"Powinniśmy zbudować studnię. To sprawi, że gotowanie będzie wygodniejsze." + +#: lang/json/recipe_from_json.py +msgid "Let's build some counters and shelves." +msgstr "Zbudujmy kilka lad i półek." + +#: lang/json/recipe_from_json.py +msgid "build kitchen counters" +msgstr "zbuduj lady kuchenne" + +#: lang/json/recipe_from_json.py +msgid "build 3 smoking racks and a charcoal kiln" +msgstr "zbuduj 3 ruszty wędzarnicze i piec do węgla drzewnego" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry and build 2 root cellars." +msgstr "Umeblujmy spiżarnię i zbudujmy 2 ziemianki." + +#: lang/json/recipe_from_json.py +msgid "furnish the pantry" +msgstr "wyposaż spiżarnię" + +#: lang/json/recipe_from_json.py +msgid "Let's make some furniture for the dining hall." +msgstr "Zróbmy kilka mebli do jadalni." + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters to the north for a chef's garden." +msgstr "Na północy zbudujmy kilka donic na ogród szefa kuchni." + +#: lang/json/recipe_from_json.py +msgid "build some planters" +msgstr "zbuduj klilka donic" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the central kitchen log walls." +msgstr "Zacznijmy budować ściany centralnej kuchni z kłód." + +#: lang/json/recipe_from_json.py +msgid "build the log wall central kitchen room" +msgstr "zbuduj centralny pokój kuchenny ze ścian z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the central kitchen log walls." +msgstr "Zakończmy budować ściany centralnej kuchni z kłód." + +#: lang/json/recipe_from_json.py +msgid "finish the log wall central kitchen room" +msgstr "ukończ ściany centralnego pokoju kuchennego z kłód" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log wall smoking area covered to protect the workers from the" +" weather." +msgstr "" +"Zadbajmy o zadaszenie tego miejsca na palenisko przy ścianie z kłód, aby " +"ochronić pracowników przed warunkami atmosferycznymi." + +#: lang/json/recipe_from_json.py +msgid "build a log wall roofed area for smoking racks" +msgstr "zbuduj zadaszony obszar na ruszty wędzarnicze ze ścian z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry west of the kitchen." +msgstr "Na zachód od kuchni zbudujmy spiżarnię ze ścian z kłód." + +#: lang/json/recipe_from_json.py +msgid "build a log wall pantry" +msgstr "zbuduj spiżarnię ze ścian z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's build the west log wall of the dining hall." +msgstr "Zbudujmy zachodnią ścianę jadalni z kłód." + +#: lang/json/recipe_from_json.py +msgid "build W log wall" +msgstr "zbuduj zachodnią ścianę z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's build the east log wall of the dining hall." +msgstr "Zbudujmy wschodnią ścianę jadalni z kłód." + +#: lang/json/recipe_from_json.py +msgid "build E log wall" +msgstr "zbuduj wschodnią ścianę z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's build the center of the log wall dining hall." +msgstr "Zbudujmy centralną ścianę jadalni z kłód." + +#: lang/json/recipe_from_json.py +msgid "build center of the log wall dining hall" +msgstr "zbuduj centralną ścianę jadalni z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the central kitchen metal walls." +msgstr "Zacznijmy budować metalowe ściany centralnej kuchni." + +#: lang/json/recipe_from_json.py +msgid "build the metal wall central kitchen room" +msgstr "zbuduj metalowe ściany centralnego pokoju kuchennego" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the central kitchen metal walls." +msgstr "Zakończmy budować metalowe ściany centralnej kuchni." + +#: lang/json/recipe_from_json.py +msgid "finish the metal wall central kitchen room" +msgstr "ukończ metalowe ściany centralnego pokoju kuchennego" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal wall smoking area covered to protect the workers from " +"the weather." +msgstr "" +"Zadbajmy o zadaszenie tego miejsca na palenisko przy metalowej ścianie, aby " +"ochronić pracowników przed warunkami atmosferycznymi." + +#: lang/json/recipe_from_json.py +msgid "build a metal wall roofed area for smoking racks" +msgstr "zbuduj zadaszony obszar na ruszty wędzarnicze z metalowych ścian" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry west of the kitchen." +msgstr "Na zachód od kuchni zbudujmy spiżarnię z metalowych ścianek." + +#: lang/json/recipe_from_json.py +msgid "build a metal wall pantry" +msgstr "zbuduj spiżarnię z metalowych ścian" + +#: lang/json/recipe_from_json.py +msgid "Let's build the west metal wall of the dining hall." +msgstr "Zbudujmy zachodnią ścianę jadalni z metalowych ścianek." + +#: lang/json/recipe_from_json.py +msgid "build W metal wall" +msgstr "zbuduj zachodnią metalową ścianę" + +#: lang/json/recipe_from_json.py +msgid "Let's build the east metal wall of the dining hall." +msgstr "Zbudujmy wschodnią ścianę jadalni z metalowych ścianek." + +#: lang/json/recipe_from_json.py +msgid "build E metal wall" +msgstr "zbuduj wschodnią metalową ścianę" + +#: lang/json/recipe_from_json.py +msgid "Let's build the center of the metal wall dining hall." +msgstr "Zbudujmy centralną część metalowych ścianek jadalni." + +#: lang/json/recipe_from_json.py +msgid "build center of the metal wall dining hall" +msgstr "zbuduj centralną metalową ścianę jadalni" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the central kitchen mi-go resin walls." +msgstr "Zacznijmy budować ściany centralnej kuchni z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin central kitchen room" +msgstr "zbuduj centralny pokój kuchenny z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the central kitchen mi-go resin walls." +msgstr "Zakończmy budować ściany centralnej kuchni z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin central kitchen room" +msgstr "ukończ centralny pokój kuchenny z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this mi-go resin smoking area covered to protect the workers from " +"the weather." +msgstr "" +"Zadbajmy o zadaszenie tego miejsca na palenisko przy ścianie z żywicy mi-" +"go., aby ochronić pracowników przed warunkami atmosferycznymi." + +#: lang/json/recipe_from_json.py +msgid "build a mi-go resin roofed area for smoking racks" +msgstr "zbuduj zadaszony obszar na ruszty wędzarnicze ze ścian z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry west of the kitchen." +msgstr "Na zachód od kuchni zbudujmy spiżarnię z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "build a mi-go resin pantry" +msgstr "zbuduj spiżarnię z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build the west mi-go resin wall of the dining hall." +msgstr "Zbudujmy zachodnią ścianę jadalni z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "build W mi-go resin wall" +msgstr "zbuduj zachodnią ścianę z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build the east mi-go resin wall of the dining hall." +msgstr "Zbudujmy wschodnią ścianę jadalni z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "build E mi-go resin wall" +msgstr "zbuduj wschodnią ścianę z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build the center of the mi-go resin dining hall." +msgstr "Zbudujmy centralną część ścianek jadalni z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "build center of the mi-go resin dining hall" +msgstr "zbuduj centralną ścianę jadalni z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the central kitchen rammed earth walls." +msgstr "Zacznijmy budować ściany centralnej kuchni z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth central kitchen room" +msgstr "zbuduj centralny pokój kuchenny z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the central kitchen rammed earth walls." +msgstr "Zakończmy budować ściany centralnej kuchni z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth central kitchen room" +msgstr "ukończ centralny pokój kuchenny z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rammed earth smoking area covered to protect the workers from" +" the weather." +msgstr "" +"Zadbajmy o zadaszenie tego miejsca na palenisko przy ścianie z ubitej ziemi," +" aby ochronić pracowników przed warunkami atmosferycznymi." + +#: lang/json/recipe_from_json.py +msgid "build a rammed earth roofed area for smoking racks" +msgstr "zbuduj zadaszony obszar na ruszty wędzarnicze z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry west of the kitchen." +msgstr "Na zachód od kuchni zbudujmy spiżarnię z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "build a rammed earth pantry" +msgstr "zbuduj spiżarnię z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's build the west rammed earth wall of the dining hall." +msgstr "Zbudujmy zachodnią ścianę jadalni z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "build W rammed earth wall" +msgstr "zbuduj zachodnią ścianę z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's build the east rammed earth wall of the dining hall." +msgstr "Zbudujmy wschodnią ścianę jadalni z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "build E rammed earth wall" +msgstr "zbuduj wschodnią ścianę z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's build the center of the rammed earth dining hall." +msgstr "Zbudujmy centralną część ściany jadalni z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "build center of the rammed earth dining hall" +msgstr "zbuduj centralną ścianę jadalni z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the central kitchen rock walls." +msgstr "Zacznijmy budować kamienne ściany centralnej kuchni." + +#: lang/json/recipe_from_json.py +msgid "build the central kitchen room" +msgstr "zbuduj centralny pokój kuchenny" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the central kitchen rock walls." +msgstr "Zakończmy budować kamienne ściany centralnej kuchni." + +#: lang/json/recipe_from_json.py +msgid "finish the rock wall central kitchen room" +msgstr "ukończ kamienne ściany centralnego pokoju kuchennego" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock wall smoking area covered to protect the workers from " +"the weather." +msgstr "" +"Zadbajmy o zadaszenie tego miejsca na palenisko przy kamiennej ścianie, aby " +"ochronić pracowników przed warunkami atmosferycznymi." + +#: lang/json/recipe_from_json.py +msgid "build a rock wall roofed area for smoking racks" +msgstr "zbuduj zadaszony obszar na ruszty wędzarnicze z kamiennych ścian" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry west of the kitchen." +msgstr "Na zachód od kuchni zbudujmy spiżarnię z kamiennych ścian." + +#: lang/json/recipe_from_json.py +msgid "build a rock wall pantry" +msgstr "zbuduj spiżarnię z kamiennych ścian" + +#: lang/json/recipe_from_json.py +msgid "Let's build the west rock wall of the rock wall dining hall." +msgstr "Zbudujmy zachodnią kamienną ścianę jadalni." + +#: lang/json/recipe_from_json.py +msgid "build W rock wall" +msgstr "zbuduj zachodnią kamienną ścianę" + +#: lang/json/recipe_from_json.py +msgid "Let's build the east rock wall of the rock wall dining hall." +msgstr "Zbudujmy wschodnią kamienną ścianę jadalni." + +#: lang/json/recipe_from_json.py +msgid "build E rock wall" +msgstr "zbuduj wschodnią kamienną ścianę" + +#: lang/json/recipe_from_json.py +msgid "Let's build the center of the rock wall dining hall." +msgstr "Zbudujmy centralną część kamiennej ściany jadalni." + +#: lang/json/recipe_from_json.py +msgid "build center of the rock dining hall" +msgstr "zbuduj centralną kamienną ścianę jadalni" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the central kitchen wattle and daub walls." +msgstr "Zacznijmy budować szachulcowe ściany centralnej kuchni." + +#: lang/json/recipe_from_json.py +msgid "build the wattle and daub central kitchen room" +msgstr "zbuduj szachulcowe ściany centralnego pokoju kuchennego" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the central kitchen wattle and daub walls." +msgstr "Zakończmy budować szachulcowe ściany centralnej kuchni." + +#: lang/json/recipe_from_json.py +msgid "finish the wattle and daub central kitchen room" +msgstr "ukończ szachulcowe ściany centralnego pokoju kuchennego" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle and daub smoking area covered to protect the workers " +"from the weather." +msgstr "" +"Zadbajmy o zadaszenie tego miejsca na palenisko przy ścianie z wikliny i " +"gliny, aby ochronić pracowników przed warunkami atmosferycznymi." + +#: lang/json/recipe_from_json.py +msgid "build a wattle and daub roofed area for smoking racks" +msgstr "zbuduj szachulcowy zadaszony obszar na ruszty wędzarnicze" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle and daub wall pantry west of the kitchen." +msgstr "Na zachód od kuchni zbudujmy spiżarnię z wikliny i gliny." + +#: lang/json/recipe_from_json.py +msgid "build a wattle and daub pantry" +msgstr "zbuduj szachulcową spiżarnię" + +#: lang/json/recipe_from_json.py +msgid "Let's build the west wattle and daub wall of the dining hall." +msgstr "Zbudujmy zachodnią ścianę jadalni z wikliny i gliny." + +#: lang/json/recipe_from_json.py +msgid "build W wattle and daub wall" +msgstr "zbuduj zachodnią szachulcową ścianę" + +#: lang/json/recipe_from_json.py +msgid "Let's build the east wattle and daub wall of the dining hall." +msgstr "Zbudujmy wschodnią ścianę jadalni z wikliny i gliny." + +#: lang/json/recipe_from_json.py +msgid "build E wattle and daub wall" +msgstr "zbuduj wschodnią szachulcową ścianę" + +#: lang/json/recipe_from_json.py +msgid "Let's build the center of the wattle and daub dining hall." +msgstr "Zbudujmy centralną część ściany jadalni z wikliny i gliny." + +#: lang/json/recipe_from_json.py +msgid "build center of the wattle and daub dining hall" +msgstr "zbuduj centralną szachulcową ścianę jadalni" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the central kitchen wood panel walls." +msgstr "Zacznijmy budować ściany centralnej kuchni z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "build the wood panel central kitchen room" +msgstr "zbuduj ściany centralnego pokoju kuchennego z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the central kitchen wood panel walls." +msgstr "Zakończmy budować ściany centralnej kuchni z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel central kitchen room" +msgstr "ukończ ściany centralnego pokoju kuchennego z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wood panel smoking area covered to protect the workers from " +"the weather." +msgstr "" +"Zadbajmy o zadaszenie tego miejsca na palenisko przy ścianie z drewnianych " +"paneli, aby ochronić pracowników przed warunkami atmosferycznymi." + +#: lang/json/recipe_from_json.py +msgid "build a wood panel roofed area for smoking racks" +msgstr "zbuduj zadaszony obszar na ruszty wędzarnicze z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel pantry west of the kitchen." +msgstr "Na zachód od kuchni zbudujmy spiżarnię z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "build a wood panel pantry" +msgstr "zbuduj spiżarnię z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's build the west wood panel wall of the dining hall." +msgstr "Zbudujmy zachodnią ścianę jadalni z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "build W wood wall" +msgstr "zbuduj zachodnią ścianę z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's build the east wood panel wall of the dining hall." +msgstr "Zbudujmy wschodnią ścianę jadalni z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "build E wood wall" +msgstr "zbuduj wschodnią ścianę z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's build the center of the wood panel dining hall." +msgstr "Zbudujmy centralną część ściany jadalni z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "build center of the dining hall" +msgstr "zbuduj centralną ścianę jadalni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "Wymierz teren na stołówkę." + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" +"Teraz, gdy mamy już jakieś schronienie, powinniśmy zbudować palenisko i " +"zdobyć garnek." + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" +"Teraz, gdy mamy już jakieś schronienie, powinniśmy zbudować piecyk do " +"gotowania i zdobyć garnek." + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" +"Powinniśmy wybudować studnię. Ułatwi to gotowanie i zapewni wodę do " +"utrzymania ogrodu kucharza." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" +"Zbudujmy kilka wędzarni i piec na węgiel drzewny do celu konserwacji " +"żywności i zapewnienia dodatkowych opcji gotowania." + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "Zbudujmy 2 ziemianki w kuchni." + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "zbuduj ziemiankę" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "Pora wyposażyć spiżarnię." + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "Zbudujmy kilka donic na ogród szefa kuchni." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" +"Rozbudujmy ogród szefa kuchni w „wolnym” obszarze (przerwij rozbudowę, jeśli" +" chcesz wykorzystać ten obszar do czegoś innego)." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" +"Zainstalujmy parę zbiorników na słoną wodę, aby umożliwić produkcję soli i " +"ułatwić prace garbarskie." + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "zbuduj zbiorniki słonej wody" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "Zainstalujmy w browarze kilka kadzi." + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "zainstaluj kilka kadzi browarniczych" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "Zainstalujmy w browarze kilka regałów do przechowywania." + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "zainstaluj kilka regałów browarniczych" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "Zainstalujmy w browarze destylarnię." + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "zainstaluj w browarze destylarnię" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "Zbudujmy wiatrak, który pozwoli nam efektywnie mielić mąkę." + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "zbuduj młyn wiatrowy" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "Zbudujmy ławkę i poidło dla ptaków za kuchnią dla relaksu." + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "zbuduj ławkę i poidło dla ptaków" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "Zacznijmy budować betonowe ściany centralnej kuchni." + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "zbuduj betonową kuchnię" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "Zakończmy budować betonowe ściany centralnej kuchni." + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "ukończ betonową kuchnię" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" +"Zadbajmy o zadaszenie tego miejsca na palenisko przy betonowej ścianie, aby " +"ochronić pracowników przed warunkami atmosferycznymi." + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "zbuduj betonowy zadaszony obszar na ruszty wędzarnicze" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "Obok kuchni zbudujmy betonową spiżarnię." + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "zbuduj betonową spiżarnię" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "Zbudujmy pierwszą betonową część jadalni." + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "zbuduj pierwszą betonową sekcję jadalni" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "Zbudujmy drugą betonową część jadalni" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "zbuduj drugą betonową sekcję jadalni" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "Zbudujmy betonowy browar." + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "zbuduj betonowy browar" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "Zacznijmy budować ściany kuchni z kłód." + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "zbuduj kuchnię z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "Zakończmy budować ściany kuchni z drewnianych bali." + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "ukończ kuchnię z kłód" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" +"Zadbajmy o zadaszenie tego miejsca na palenisko z kłód, aby ochronić " +"pracowników przed warunkami atmosferycznymi." + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "zbuduj zadaszony obszar na ruszty wędzarnicze z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "Obok kuchni zbudujmy spiżarnię ze ścian z kłód." + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "zbuduj spiżarnię z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "Zbudujmy pierwszą ścianę jadalni z kłód." + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "zbuduj pierwszą sekcję jadalni z kłód." + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "Zbudujmy drugą ścianę jadalni z kłód." + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "zbuduj drugą sekcję jadalni z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "Zbudujmy browar z kłód." + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "zbuduj browar z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "Zacznijmy budować metalowe ściany kuchni." + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "zbuduj metalową kuchnię" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "Zakończmy budować metalowe ściany kuchni." + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "ukończ metalową kuchnię" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" +"Zadbajmy o zadaszenie tego miejsca na metalowe palenisko, aby ochronić " +"pracowników przed warunkami atmosferycznymi." + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "zbuduj zadaszony obszar na metalowe ruszty wędzarnicze" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "Obok kuchni zbudujmy spiżarnię z metalowych ścian." + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "zbuduj metalową spiżarnię" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "Zbudujmy pierwszą metalową ścianę jadalni." + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "zbuduj pierwszą metalową sekcję jadalni" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "Zbudujmy drugą metalową ścianę jadalni" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "zbuduj drugą metalową sekcję jadalni" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "Zbudujmy metalowy browar." + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "zbuduj metalowy browar" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "Zacznijmy budować ściany kuchni z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "zbuduj kuchnię z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "Zakończmy budować ściany kuchni z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "ukończ kuchnię z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "Obok kuchni zbudujmy spiżarnię ze ścian z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "Zbudujmy pierwszą ścianę jadalni z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "zbuduj pierwszą sekcję jadalni z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "Zbudujmy drugą ścianę jadalni z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "zbuduj drugą sekcję jadalni z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "Zbudujmy browar z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "zbuduj browar z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "Zacznijmy budować ściany kuchni z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "zbuduj kuchnię z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "Zakończmy budować ściany kuchni z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "ukończ kuchnię z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "Obok kuchni zbudujmy spiżarnię ze ścian z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "Zbudujmy pierwszą ścianę jadalni z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "zbuduj pierwszą sekcję jadalni z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "Zbudujmy drugą ścianę jadalni z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "zbuduj drugą sekcję jadalni z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "Zbudujmy browar z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "zbuduj browar z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "Zacznijmy budować kamienne ściany kuchni." + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "zbuduj kamienną kuchnię" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "Zakończmy budować kamienne ściany kuchni." + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "ukończ kamienną kuchnię" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" +"Zadbajmy o zadaszenie tego miejsca na kamienne palenisko, aby ochronić " +"pracowników przed warunkami atmosferycznymi." + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "zbuduj zadaszony kamienny obszar na ruszty wędzarnicze" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "Obok kuchni zbudujmy spiżarnię z kamiennych ścian." + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "zbuduj kamienną spiżarnię." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "Zbudujmy pierwszą ścianę jadalni z kamienia." + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "zbuduj pierwszą sekcję jadalni z kamienia." + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "Zbudujmy drugą ścianę jadalni z kamienia." + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "zbuduj drugą kamienną sekcję jadalni." + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "Zbudujmy kamienny browar." + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "zbuduj kamienny browar." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "Zacznijmy budować szachulcowe ściany kuchni." + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "zbuduj szachulcową kuchnię" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "Zakończmy budować szachulcowe ściany kuchni." + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "ukończ szachulcową kuchnię" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" +"Zadbajmy o zadaszenie tego miejsca na szachulcowe palenisko, aby ochronić " +"pracowników przed warunkami atmosferycznymi." + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "zbuduj zadaszony obszar na szachulcowe ruszty wędzarnicze" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "Obok kuchni zbudujmy spiżarnię z szachulcowych ścian." + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "zbuduj szachulcową spiżarnię" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "Zbudujmy pierwszą szachulcową ścianę jadalni." + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "zbuduj pierwszą szachulcową sekcję jadalni" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "Zbudujmy drugą szachulcową ścianę jadalni." + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "zbuduj drugą sekcję szachulcowej jadalni" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "Zbudujmy szachulcowy browar." + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "zbuduj szachulcowy browar" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "Zacznijmy budować ściany kuchni z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "zbuduj kuchnię z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "Zakończmy budować ściany kuchni z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "ukończ kuchnię z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "Obok kuchni zbudujmy spiżarnię ze ścian z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "Zbudujmy pierwszą część jadalni z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "zbuduj pierwszą sekcję jadalni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "Zbudujmy drugą część jadalni z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "zbuduj drugą sekcję jadalni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "Zbudujmy browar z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "zbuduj browar z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Survey land for a farming area." +msgstr "Wymierz teren na obszar farmerski." + +#: lang/json/recipe_from_json.py +msgid "farm area survey" +msgstr "zarys obszaru farmerskiego" + +#: lang/json/recipe_from_json.py +msgid "Plowing a few plots should get us started." +msgstr "Zaoranie kilku poletek zapewni nam dobry start." + +#: lang/json/recipe_from_json.py +msgid "Farm basic plots" +msgstr "podstawowa działka farmy" + +#: lang/json/recipe_from_json.py +msgid "We could use a farming shed to store resources where we'll be working." +msgstr "" +"Potrzebna nam szopa rolnicza do przechowywania zasobów gdzie będziemy " +"pracować." + +#: lang/json/recipe_from_json.py +msgid "Farm basic shed" +msgstr "podstawowa szopa farmy" + +#: lang/json/recipe_from_json.py +msgid "" +"Our farm could be expanded by finishing the shed and adding additional " +"plots." +msgstr "" +"Naszą farmę można rozbudować dokańczając szopę i dodając kolejne poletka." + +#: lang/json/recipe_from_json.py +msgid "Farm upgraded shed" +msgstr "ulepszona szopa farmy" + +#: lang/json/recipe_from_json.py +msgid "" +"Building a processing shack should allow us to reclaim additional seeds from" +" our byproducts." msgstr "" +"Budowa chaty do przetwarzania plonów pozwoli nam odzyskać więcej ziarna z " +"produktów ubocznych." + +#: lang/json/recipe_from_json.py +msgid "Farm processing shack" +msgstr "chata do przetwarzania plonów farmy" + +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "Przygotuj rząd działek ziemi." + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "przygotuj działki ziemi" #: lang/json/recipe_from_json.py -msgid "build SW standard bedroom walls" -msgstr "" +msgid "Prepare a second row of farm plots." +msgstr "Przygotuj drugi rząd działek ziemi." #: lang/json/recipe_from_json.py -msgid "build W standard bedroom walls" -msgstr "" +msgid "Prepare another pair of rows of farm plots." +msgstr "Przygotuj kolejną parę rzędów działek ziemi." #: lang/json/recipe_from_json.py -msgid "build NW standard bedroom walls" +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." msgstr "" +"Wznieś ogrodzenie wzdłuż dłuższej krawędzi zewnętrznej, aby utrzymać jelenie" +" z dala od upraw." #: lang/json/recipe_from_json.py -msgid "build SE wattle and daub bedroom walls" -msgstr "" +msgid "erect a fence" +msgstr "wznieś ogrodzenie" #: lang/json/recipe_from_json.py -msgid "build E wattle and daub bedroom walls" +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." msgstr "" +"Wznieść ogrodzenie wzdłuż krótszej krawędzi zewnętrznej, aby utrzymać " +"jelenie z dala od upraw." #: lang/json/recipe_from_json.py -msgid "build SW wattle and daub bedroom walls" +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." msgstr "" +"Wznieś ogrodzenie wzdłuż krótszej krawędzi wewnętrznej, aby utrzymać jelenie" +" z dala od upraw." #: lang/json/recipe_from_json.py -msgid "build W wattle and daub bedroom walls" +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." msgstr "" +"Wznieś ogrodzenie wzdłuż zewnętrznej części dłuższej krawędzi wewnętrznej, " +"aby utrzymać jelenie z dala od upraw." #: lang/json/recipe_from_json.py -msgid "build NW wattle and daub bedroom walls" +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." msgstr "" +"Nie planujemy ponownego zaorania pola ciągnikiem, dlatego wzdłuż wewnętrznej" +" części dłuższej krawędzi wewnętrznej stawiamy płot." #: lang/json/recipe_from_json.py -msgid "build SE wood panel bedroom walls" +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." msgstr "" +"Zbuduj bramę z palisady, abyśmy mogli dojechać do pól i ponownie zaorać je " +"traktorem w przyszłym roku." #: lang/json/recipe_from_json.py -msgid "build E wood panel bedroom walls" -msgstr "" +msgid "build a palisade gate" +msgstr "zbuduj bramę palisady" #: lang/json/recipe_from_json.py -msgid "build SW wood panel bedroom walls" -msgstr "" +msgid "Survey land for a garage." +msgstr "Wymierz teren na garaż." #: lang/json/recipe_from_json.py -msgid "build W wood panel bedroom walls" -msgstr "" +msgid "Building a tool rack should be the first priority." +msgstr "Zbudowanie półki na narzędzia to pierwszy priorytet." #: lang/json/recipe_from_json.py -msgid "build NW wood panel bedroom walls" -msgstr "" +msgid "Garage tool rack" +msgstr "półka na narzędzia garażu" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a regular bed." -msgstr "" +msgid "We should start construction of a roof for the garage." +msgstr "Powinniśmy rozpocząć konstrukcję dachu garażu." #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a straw bed." -msgstr "" +msgid "Garage partial roof" +msgstr "częściowy dach garażu" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a straw bed." +msgid "Finishing out the roof will let our mechanics work rain or shine." msgstr "" +"Ukończenie dachu pozwoli naszym mechanikom pracować czy słońce czy deszcz." #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a makeshift bed." -msgstr "" +msgid "Garage completed roof" +msgstr "ukończony dach garażu" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a makeshift bed." +msgid "" +"Our garage isn't big enough to work on larger vehicles. Let's start " +"expanding it." msgstr "" +"Nasz garaż nie jest wystarczająco duży by pracować nad większymi pojazdami. " +"Rozpocznijmy jego rozbudowę." #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a regular bed." -msgstr "" +msgid "Garage partial expansion" +msgstr "częściowe rozszerzenie garażu" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a straw bed." -msgstr "" +msgid "Finishing the roof will let us park RVs and buses in the garage." +msgstr "Ukończenie dachu pozwoli nam parkować w nim kampery i autobusy." #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a makeshift bed." -msgstr "" +msgid "Garage expanded roof" +msgstr "rozszerzony dach garażu" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with regular beds." +msgid "" +"Attaching quarters will let our mechanics work longer hours when needed." msgstr "" +"Dołączenie kwater pozwoli naszym mechanikom pracować dłużej, gdy zajdzie " +"taka potrzeba" #: lang/json/recipe_from_json.py -msgid "furnish the S bedroom" -msgstr "" +msgid "Garage mechanics quarters" +msgstr "kwatery mechaników garażu" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with straw beds." -msgstr "" +msgid "Let's connect the two walls with the missing roof piece." +msgstr "Połączmy dwie ściany z brakującym kawałkiem dachu." #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with makeshift beds." -msgstr "" +msgid "build the missing roof section" +msgstr "zbuduj brakującą sekcję dachu" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"northwest corner." +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." msgstr "" +"Teraz, gdy mamy już jakieś schronienie, zbudujmy kilka lad i regałów na " +"narzędzia i części, co pozwoli nam na korzystanie z warsztatu." #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the west wall." -msgstr "" +msgid "build some furniture" +msgstr "zbuduj kilka mebli" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the southwest corner." +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." msgstr "" +"Garaż jest wystarczająco duży. Zbudujmy bramę palisady, która pozwoli nam " +"zamknąć jego zewnętrzny koniec." + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "zbuduj zewnętrzną bramę palisady" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the south wall." +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." msgstr "" +"Zakończmy garaż budując bramę palisady, która pozwoli nam zamknąć jego " +"zewnętrzny koniec." #: lang/json/recipe_from_json.py -msgid "build S log bedroom walls" -msgstr "" +msgid "Let's start building the first garage concrete wall section." +msgstr "Zacznijmy budować pierwszą sekcję ścian betonowego garażu." #: lang/json/recipe_from_json.py -msgid "build S rock bedroom walls" -msgstr "" +msgid "build the first concrete garage section" +msgstr "zbuduj pierwszą sekcję betonowego garażu" #: lang/json/recipe_from_json.py -msgid "build S standard bedroom walls" +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" +"Zbudujmy drugą sekcję betonowej ściany garażu, aby zablokować wiatr z " +"drugiego kierunku, dzięki czemu garaż będzie wystarczająco szeroki, aby " +"pomieścić dwa normalne pojazdy lub jeden superwymiarowy." #: lang/json/recipe_from_json.py -msgid "build S wattle and daub bedroom walls" -msgstr "" +msgid "build the second concrete garage section" +msgstr "zbuduj drugą sekcję betonowego garażu" #: lang/json/recipe_from_json.py -msgid "build NW wood bedroom walls" +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." msgstr "" +"Zbudujmy betonową ścianę, która zablokuje wiatr wiejący wprost przez garaż." #: lang/json/recipe_from_json.py -msgid "build W wood bedroom walls" -msgstr "" +msgid "build an inner concrete wall" +msgstr "zbuduj wewnętrzną betonową ścianę" #: lang/json/recipe_from_json.py -msgid "build SW wood bedroom walls" +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na krótkich pojazdach, rozszerzmy " +"garaż na pomieszczenie długich, używając betonu." #: lang/json/recipe_from_json.py -msgid "build S wood bedroom walls" -msgstr "" +msgid "extend the first wall using concrete" +msgstr "rozszerz pierwszą ścianę używając betonu" #: lang/json/recipe_from_json.py -msgid "" -"We should build a well, across from the terminal. This will make our future" -" here more secure." -msgstr "" +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "Wydłużmy drugą ścianę tak, by pasowała do pierwszej, używając betonu." #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with a regular bed." -msgstr "" +msgid "extend the second wall using concrete" +msgstr "rozszerz drugą ścianę używając betonu" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a regular bed." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na długich pojazdach, rozszerzmy garaż" +" na pomieszczenie bardzo długich, albo kilku, używając betonu." #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular a bed." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." msgstr "" +"Rozszerzmy garaż do rozmiaru hangaru, pozwalając nam pracować nad " +"monstrualnymi pojazdami, albo dużej ilości zwykłych, używając betonu." #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a regular bed." -msgstr "" +msgid "Let's start building the first garage log wall section." +msgstr "Zacznijmy budować pierwszą sekcję ścian garażu z kłód." #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a straw bed." -msgstr "" +msgid "build the first log garage section" +msgstr "zbuduj pierwszą sekcję garażu z kłód" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a makeshift bed." +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" +"Zbudujmy drugą sekcję ściany garażu z kłód, aby zablokować wiatr z drugiego " +"kierunku, dzięki czemu garaż będzie wystarczająco szeroki, aby pomieścić dwa" +" normalne pojazdy lub jeden superwymiarowy." #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a regular bed." -msgstr "" +msgid "build the second log garage section" +msgstr "zbuduj drugą sekcję garażu z kłód" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a straw bed." +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." msgstr "" +"Zbudujmy ścianę z kłód, która zablokuje wiatr wiejący wprost przez garaż." #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a makeshift bed." -msgstr "" +msgid "build an inner log wall" +msgstr "zbuduj wewnętrzną ścianę z kłód" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will enclose the west" -" side of the stairs." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na krótkich pojazdach, rozszerzmy " +"garaż na pomieszczenie długich, używając kłód." #: lang/json/recipe_from_json.py -msgid "" -"Let's build two living quarters so we can expand. We will continue along " -"the south wall." -msgstr "" +msgid "extend the first wall using logs" +msgstr "rozszerz pierwszą ścianę używając kłód" #: lang/json/recipe_from_json.py -msgid "" -"Let's build another bedroom so we can expand. We will continue to enclose " -"the stairwell and add new doors." -msgstr "" +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "Wydłużmy drugą ścianę tak, by pasowała do pierwszej, używając kłód." #: lang/json/recipe_from_json.py -msgid "build central E bedroom log walls" -msgstr "" +msgid "extend the second wall using log" +msgstr "rozszerz drugą ścianę używając kłody" #: lang/json/recipe_from_json.py -msgid "Let's build another bedroom on the east wall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na długich pojazdach, rozszerzmy garaż" +" na pomieszczenie bardzo długich, albo kilku, używając kłód." #: lang/json/recipe_from_json.py -msgid "build E bedroom log walls" -msgstr "" +msgid "extend the second wall using logs" +msgstr "rozszerz drugą ścianę używając kłód" #: lang/json/recipe_from_json.py -msgid "build central E bedroom rock walls" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." msgstr "" +"Rozszerzmy garaż do rozmiaru hangaru, pozwalając nam pracować nad " +"monstrualnymi pojazdami, albo dużej ilości zwykłych, używając kłód." #: lang/json/recipe_from_json.py -msgid "build E bedroom rock walls" -msgstr "" +msgid "Let's start building the first garage metal wall section." +msgstr "Zacznijmy budować pierwszą sekcję metalowych ścian garażu." #: lang/json/recipe_from_json.py -msgid "build central E bedroom standard walls" -msgstr "" +msgid "build the first metal garage section" +msgstr "zbuduj pierwszą sekcję metalowego garażu" #: lang/json/recipe_from_json.py -msgid "build E bedroom standard walls" +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" +"Zbudujmy drugą sekcję metalowej ściany garażu, aby zablokować wiatr z " +"drugiego kierunku, dzięki czemu garaż będzie wystarczająco szeroki, aby " +"pomieścić dwa normalne pojazdy lub jeden superwymiarowy." #: lang/json/recipe_from_json.py -msgid "build central E bedroom wattle and daub" -msgstr "" +msgid "build the second metal garage section" +msgstr "zbuduj drugą sekcję metalowego garażu" #: lang/json/recipe_from_json.py -msgid "build E bedroom wattle and daub" +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." msgstr "" +"Zbudujmy metalową ścianę, która zablokuje wiatr wiejący wprost przez garaż." #: lang/json/recipe_from_json.py -msgid "build S wood panel bedroom walls" -msgstr "" +msgid "build an inner metal wall" +msgstr "zbuduj wewnętrzną metalową ścianę" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wood panel bedroom walls" +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na krótkich pojazdach, rozszerzmy " +"garaż na pomieszczenie długich, używając metalu." #: lang/json/recipe_from_json.py -msgid "build E bedroom wood panel bedroom walls" -msgstr "" +msgid "extend the first wall using metal" +msgstr "rozszerz pierwszą ścianę używając metalu" #: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen and dining area." -msgstr "" +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "Wydłużmy drugą ścianę tak, by pasowała do pierwszej, używając metalu." #: lang/json/recipe_from_json.py -msgid "" -"Now that we have some cover, we should build 2 fireplaces for cooking and " -"grab a pot." -msgstr "" +msgid "extend the second wall using metal" +msgstr "rozszerz drugą ścianę używając metalu" #: lang/json/recipe_from_json.py -msgid "build 2 fireplaces" +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na długich pojazdach, rozszerzmy garaż" +" na pomieszczenie bardzo długich, albo kilku, używając metalu." #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build 2 stoves for cooking and grab a" -" pot." +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." msgstr "" +"Rozszerzmy garaż do rozmiaru hangaru, pozwalając nam pracować nad " +"monstrualnymi pojazdami, albo dużej ilości zwykłych, używając metalu." #: lang/json/recipe_from_json.py -msgid "build 2 wood stoves" -msgstr "" +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "Zacznijmy budować pierwszą sekcję ścian garażu z żywicy mi-go." #: lang/json/recipe_from_json.py -msgid "We should build a well. This will make cooking more convenient." -msgstr "" +msgid "build the first mi-go resin garage section" +msgstr "zbuduj pierwszą sekcję garażu z żywicy mi-go" #: lang/json/recipe_from_json.py -msgid "Let's build some counters and shelves." +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" +"Zbudujmy drugą sekcję ściany garażu z żywicy mi-go, aby zablokować wiatr z " +"drugiego kierunku, dzięki czemu garaż będzie wystarczająco szeroki, aby " +"pomieścić dwa normalne pojazdy lub jeden superwymiarowy." #: lang/json/recipe_from_json.py -msgid "build kitchen counters" -msgstr "" +msgid "build the second mi-go resin garage section" +msgstr "zbuduj drugą sekcję garażu z żywicy mi-go" #: lang/json/recipe_from_json.py -msgid "build 3 smoking racks and a charcoal kiln" +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." msgstr "" +"Zbudujmy ścianę z żywicy mi-go, która zablokuje wiatr wiejący wprost przez " +"garaż." #: lang/json/recipe_from_json.py -msgid "Lets furnish the pantry and build 2 root cellars." -msgstr "" +msgid "build an inner mi-go resin wall" +msgstr "zbuduj wewnętrzną ścianę z żywicy mi-go" #: lang/json/recipe_from_json.py -msgid "furnish the pantry" +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na krótkich pojazdach, rozszerzmy " +"garaż na pomieszczenie długich, używając żywicy mi-go." #: lang/json/recipe_from_json.py -msgid "Let's make some furniture for the dining hall." -msgstr "" +msgid "extend the first wall using mi-go resin" +msgstr "rozszerz pierwszą ścianę używając żywicy mi-go" #: lang/json/recipe_from_json.py -msgid "Let's build some planters to the north for a chef's garden." +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." msgstr "" +"Wydłużmy drugą ścianę tak, by pasowała do pierwszej, używając żywicy mi-go." #: lang/json/recipe_from_json.py -msgid "build some planters" -msgstr "" +msgid "extend the second wall using mi-go resin" +msgstr "rozszerz drugą ścianę używając żywicy mi-go" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen log walls." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na długich pojazdach, rozszerzmy garaż" +" na pomieszczenie bardzo długich, albo kilku, używając żywicy mi-go." #: lang/json/recipe_from_json.py -msgid "build the log wall central kitchen room" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." msgstr "" +"Rozszerzmy garaż do rozmiaru hangaru, pozwalając nam pracować nad " +"monstrualnymi pojazdami, albo dużej ilości zwykłych, używając żywicy mi-go." #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen log walls." -msgstr "" +msgid "Let's start building the first garage rammed earth wall section." +msgstr "Zacznijmy budować pierwszą sekcję ścian garażu z ubitej ziemi." #: lang/json/recipe_from_json.py -msgid "finish the log wall central kitchen room" -msgstr "" +msgid "build the first rammed earth garage section" +msgstr "zbuduj pierwszą sekcję garażu z ubitej ziemi" #: lang/json/recipe_from_json.py msgid "" -"Let's get this log wall smoking area covered to protect the workers from the" -" weather." +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" +"Zbudujmy drugą sekcję ściany garażu z ubitej ziemi, aby zablokować wiatr z " +"drugiego kierunku, dzięki czemu garaż będzie wystarczająco szeroki, aby " +"pomieścić dwa normalne pojazdy lub jeden superwymiarowy." #: lang/json/recipe_from_json.py -msgid "build a log wall roofed area for smoking racks" -msgstr "" +msgid "build the second rammed earth garage section" +msgstr "zbuduj drugą sekcję garażu z ubitej ziemi" #: lang/json/recipe_from_json.py -msgid "Let's build a log wall pantry west of the kitchen." +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." msgstr "" +"Zbudujmy ścianę z ubitej ziemi, która zablokuje wiatr wiejący wprost przez " +"garaż." #: lang/json/recipe_from_json.py -msgid "build a log wall pantry" -msgstr "" +msgid "build an inner rammed earth wall" +msgstr "zbuduj wewnętrzną ścianę z ubitej ziemi" #: lang/json/recipe_from_json.py -msgid "Let's build the west log wall of the dining hall." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na krótkich pojazdach, rozszerzmy " +"garaż na pomieszczenie długich, używając ubitej ziemi." #: lang/json/recipe_from_json.py -msgid "build W log wall" -msgstr "" +msgid "extend the first wall using rammed earth" +msgstr "rozszerz pierwszą ścianę używając ubitej ziemi" #: lang/json/recipe_from_json.py -msgid "Let's build the east log wall of the dining hall." +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." msgstr "" +"Wydłużmy drugą ścianę tak, by pasowała do pierwszej, używając ubitej ziemi." #: lang/json/recipe_from_json.py -msgid "build E log wall" -msgstr "" +msgid "extend the second wall using rammed earth" +msgstr "rozszerz drugą ścianę używając ubitej ziemi" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the log wall dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na długich pojazdach, rozszerzmy garaż" +" na pomieszczenie bardzo długich, albo kilku, używając ubitej ziemi." #: lang/json/recipe_from_json.py -msgid "build center of the log wall dining hall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." msgstr "" +"Rozszerzmy garaż do rozmiaru hangaru, pozwalając nam pracować nad " +"monstrualnymi pojazdami, albo dużej ilości zwykłych, używając ubitej ziemi." #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen metal walls." -msgstr "" +msgid "Let's start building the first garage rock wall section." +msgstr "Zacznijmy budować pierwszą sekcję kamiennych ścian garażu." #: lang/json/recipe_from_json.py -msgid "build the metal wall central kitchen room" -msgstr "" +msgid "build the first rock garage section" +msgstr "zbuduj pierwszą sekcję kamiennego garażu" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen metal walls." +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" +"Zbudujmy drugą sekcję kamiennej ściany garażu, aby zablokować wiatr z " +"drugiego kierunku, dzięki czemu garaż będzie wystarczająco szeroki, aby " +"pomieścić dwa normalne pojazdy lub jeden superwymiarowy." #: lang/json/recipe_from_json.py -msgid "finish the metal wall central kitchen room" -msgstr "" +msgid "build the second rock garage section" +msgstr "zbuduj drugą sekcję kamiennego garażu" #: lang/json/recipe_from_json.py msgid "" -"Let's get this metal wall smoking area covered to protect the workers from " -"the weather." +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." msgstr "" +"Zbudujmy kamienną ścianę, która zablokuje wiatr wiejący wprost przez garaż." #: lang/json/recipe_from_json.py -msgid "build a metal wall roofed area for smoking racks" -msgstr "" +msgid "build an inner rock wall" +msgstr "zbuduj wewnętrzną kamienną ścianę" #: lang/json/recipe_from_json.py -msgid "Let's build a metal wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na krótkich pojazdach, rozszerzmy " +"garaż na pomieszczenie długich, używając kamienia." #: lang/json/recipe_from_json.py -msgid "build a metal wall pantry" -msgstr "" +msgid "extend the first wall using rock" +msgstr "rozszerz pierwszą ścianę używając kamienia" #: lang/json/recipe_from_json.py -msgid "Let's build the west metal wall of the dining hall." +msgid "Let's extend the second wall to match the first one, using rock." msgstr "" +"Wydłużmy drugą ścianę tak, by pasowała do pierwszej, używając kamieni." #: lang/json/recipe_from_json.py -msgid "build W metal wall" -msgstr "" +msgid "extend the second wall using rock" +msgstr "rozszerz drugą ścianę używając kamienia" #: lang/json/recipe_from_json.py -msgid "Let's build the east metal wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na długich pojazdach, rozszerzmy garaż" +" na pomieszczenie bardzo długich, albo kilku, używając kamienia." #: lang/json/recipe_from_json.py -msgid "build E metal wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." msgstr "" +"Rozszerzmy garaż do rozmiaru hangaru, pozwalając nam pracować nad " +"monstrualnymi pojazdami, albo dużej ilości zwykłych, używając kamienia." #: lang/json/recipe_from_json.py -msgid "Let's build the center of the metal wall dining hall." -msgstr "" +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "Zacznijmy budować pierwszą sekcję ścian szachulcowego garażu." #: lang/json/recipe_from_json.py -msgid "build center of the metal wall dining hall" -msgstr "" +msgid "build the first wattle-and-daub garage section" +msgstr "zbuduj pierwszą sekcję szachulcowego garażu" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen mi-go resin walls." +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" +"Zbudujmy drugą sekcję szachulcowej ściany garażu, aby zablokować wiatr z " +"drugiego kierunku, dzięki czemu garaż będzie wystarczająco szeroki, aby " +"pomieścić dwa normalne pojazdy lub jeden superwymiarowy." #: lang/json/recipe_from_json.py -msgid "build the mi-go resin central kitchen room" -msgstr "" +msgid "build the second wattle-and-daub garage section" +msgstr "zbuduj drugą sekcję szachulcowego garażu" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen mi-go resin walls." +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." msgstr "" +"Zbudujmy szachulcową ścianę, która zablokuje wiatr wiejący wprost przez " +"garaż." #: lang/json/recipe_from_json.py -msgid "finish the mi-go resin central kitchen room" -msgstr "" +msgid "build an inner wattle-and-daub wall" +msgstr "zbuduj wewnętrzną szachulcową ścianę" #: lang/json/recipe_from_json.py msgid "" -"Let's get this mi-go resin smoking area covered to protect the workers from " -"the weather." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na krótkich pojazdach, rozszerzmy " +"garaż na pomieszczenie długich, używając szachulca." #: lang/json/recipe_from_json.py -msgid "build a mi-go resin roofed area for smoking racks" -msgstr "" +msgid "extend the first wall using wattle-and-daub" +msgstr "rozszerz pierwszą ścianę używając szachulca" #: lang/json/recipe_from_json.py -msgid "Let's build a mi-go resin wall pantry west of the kitchen." +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." msgstr "" +"Wydłużmy drugą ścianę tak, by pasowała do pierwszej, używając szachulca." #: lang/json/recipe_from_json.py -msgid "build a mi-go resin pantry" -msgstr "" +msgid "extend the second wall using wattle-and-daub" +msgstr "rozszerz drugą ścianę używając szachulca" #: lang/json/recipe_from_json.py -msgid "Let's build the west mi-go resin wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na długich pojazdach, rozszerzmy garaż" +" na pomieszczenie bardzo długich, albo kilku, używając szachulca." #: lang/json/recipe_from_json.py -msgid "build W mi-go resin wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." msgstr "" +"Rozszerzmy garaż do rozmiaru hangaru, pozwalając nam pracować nad " +"monstrualnymi pojazdami, albo dużej ilości zwykłych, używając szachulca." #: lang/json/recipe_from_json.py -msgid "Let's build the east mi-go resin wall of the dining hall." -msgstr "" +msgid "Let's start building the first garage wood wall section." +msgstr "Zacznijmy budować pierwszą sekcję drewnianych ścian garażu." #: lang/json/recipe_from_json.py -msgid "build E mi-go resin wall" -msgstr "" +msgid "build the first wood garage section" +msgstr "zbuduj pierwszą sekcję drewnianego garażu" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the mi-go resin dining hall." +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" +"Zbudujmy drugą sekcję drewnianej ściany garażu, aby zablokować wiatr z " +"drugiego kierunku, dzięki czemu garaż będzie wystarczająco szeroki, aby " +"pomieścić dwa normalne pojazdy lub jeden superwymiarowy." #: lang/json/recipe_from_json.py -msgid "build center of the mi-go resin dining hall" -msgstr "" +msgid "build the second wood garage section" +msgstr "zbuduj drugą sekcję drewnianego garażu" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rammed earth walls." +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." msgstr "" +"Zbudujmy drewnianą ścianę, która zablokuje wiatr wiejący wprost przez garaż." #: lang/json/recipe_from_json.py -msgid "build the rammed earth central kitchen room" -msgstr "" +msgid "build an inner wood wall" +msgstr "zbuduj wewnętrzną drewnianą ścianę" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rammed earth walls." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na krótkich pojazdach, rozszerzmy " +"garaż na pomieszczenie długich, używając drewnianych paneli." #: lang/json/recipe_from_json.py -msgid "finish the rammed earth central kitchen room" -msgstr "" +msgid "extend the first wall using wood panels" +msgstr "rozszerz pierwszą ścianę używając drewnianych paneli" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rammed earth smoking area covered to protect the workers from" -" the weather." +"Let's extend the second wall to match the first one, using wood panels." msgstr "" +"Wydłużmy drugą ścianę tak, by pasowała do pierwszej, używając drewnianych " +"paneli." #: lang/json/recipe_from_json.py -msgid "build a rammed earth roofed area for smoking racks" -msgstr "" +msgid "extend the second wall using wood" +msgstr "rozszerz drugą ścianę używając drewna" #: lang/json/recipe_from_json.py -msgid "Let's build a rammed earth wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." msgstr "" +"Teraz, gdy jesteśmy w stanie pracować na długich pojazdach, rozszerzmy garaż" +" na pomieszczenie bardzo długich, albo kilku, używając drewnianych paneli." #: lang/json/recipe_from_json.py -msgid "build a rammed earth pantry" -msgstr "" +msgid "extend the second wall using wood panels" +msgstr "rozszerz drugą ścianę używając drewnianych paneli" #: lang/json/recipe_from_json.py -msgid "Let's build the west rammed earth wall of the dining hall." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." msgstr "" +"Rozszerzmy garaż do rozmiaru hangaru, pozwalając nam pracować nad " +"monstrualnymi pojazdami, albo dużej ilości zwykłych, używając drewnianych " +"paneli." #: lang/json/recipe_from_json.py -msgid "build W rammed earth wall" -msgstr "" +msgid "Survey land for a livestock area." +msgstr "Wymierz teren na zagrodę hodowlaną." #: lang/json/recipe_from_json.py -msgid "Let's build the east rammed earth wall of the dining hall." -msgstr "" +msgid "Livestock survey" +msgstr "zarys zagrody hodowlanej" #: lang/json/recipe_from_json.py -msgid "build E rammed earth wall" +msgid "" +"We could use a fence to contain our chickens and other birds, so build a " +"chickenwire fence on the east side of the livestock field." msgstr "" +"Przydałoby się nam ogrodzenie do pomieszczenia naszych kur i innych ptaków, " +"więc zbuduj ogrodzenie z siatki po wschodniej stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rammed earth dining hall." -msgstr "" +msgid "east coop yard" +msgstr "wschodnie podwórko" #: lang/json/recipe_from_json.py -msgid "build center of the rammed earth dining hall" +msgid "" +"We could use paddock for the stable, so build a split-rail fence on the " +"north side of the livestock field." msgstr "" +"Przydałby się nam padok do stajni, więc zbuduj płot na północnej stronie " +"zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rock walls." -msgstr "" +msgid "north paddock" +msgstr "północny padok" #: lang/json/recipe_from_json.py -msgid "build the central kitchen room" +msgid "" +"We could use paddock for the stable, so build a split-rail fence in the " +"center of the livestock field." msgstr "" +"Przydałby się nam padok do stajni, więc zbuduj płot w centrum zagrody " +"hodowlanej." #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rock walls." -msgstr "" +msgid "center paddock" +msgstr "środkowy padok" #: lang/json/recipe_from_json.py -msgid "finish the rock wall central kitchen room" +msgid "" +"We could use paddock for the stable, so build a split-rail fence to close " +"off the south end of the livestock field." msgstr "" +"Przydałby się nam padok do stajni, więc zbuduj płot by zamknąć południowy " +"koniec zagrody hodowlanej." #: lang/json/recipe_from_json.py msgid "" -"Let's get this rock wall smoking area covered to protect the workers from " -"the weather." +"We could use a coop to contain our chickens and other birds, so build a log " +"shack with a roof on the northeast side of the livestock field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj chatę z kłód z dachem po północno-wschodniej stronie zagrody " +"hodowlanej" #: lang/json/recipe_from_json.py -msgid "build a rock wall roofed area for smoking racks" -msgstr "" +msgid "northeast coop" +msgstr "północno-wschodni padok" #: lang/json/recipe_from_json.py -msgid "Let's build a rock wall pantry west of the kitchen." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the southeast side of the livestock field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj chatę z kłód z dachem po południowo-wschodniej stronie" +" zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "build a rock wall pantry" -msgstr "" +msgid "southeast storage room" +msgstr "południowo-wschodni magazyn" #: lang/json/recipe_from_json.py -msgid "Let's build the west rock wall of the rock wall dining hall." +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the southwest side of the livestock field." msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj chatę " +"z kłód z dachem po południowo-zachodniej stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "build W rock wall" -msgstr "" +msgid "southwest stable" +msgstr "południowo-zachodnia stajnia" #: lang/json/recipe_from_json.py -msgid "Let's build the east rock wall of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the west" +" side of the livestock field." msgstr "" +"Przydałoby się nam rozszerzenie do stajni, więc zbuduj jeszcze 2 boksy po " +"zachodniej stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "build E rock wall" -msgstr "" +msgid "west stable" +msgstr "zachodnia stajnia" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the " +"northwest side of the livestock field." msgstr "" +"Przydałoby się nam rozszerzenie do stajni, więc zbuduj jeszcze 2 boksy po " +"północno-wschodniej stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "build center of the rock dining hall" -msgstr "" +msgid "northwest stable" +msgstr "północno-zachodnia stajnia" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wattle and daub walls." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"metal sheet shack with a roof on the northeast side of the livestock field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj chatę z blachy z dachem po północno-wschodniej stronie zagrody " +"hodowlanej" #: lang/json/recipe_from_json.py -msgid "build the wattle and daub central kitchen room" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal sheet shack with a roof on the southeast side of the livestock field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj chatę z blachy z dachem po południowo-wschodniej " +"stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wattle and daub walls." +msgid "" +"We could use a stable for larger livestock, so build a metal sheet shack " +"with a roof on the southwest side of the livestock field." msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj " +"metalową chatę z dachem po południowo-zachodniej stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "finish the wattle and daub central kitchen room" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a mi-" +"go resin shack with a roof on the northeast side of the livestock field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj chatę z żywicy mi-go z dachem po północno-wschodniej stronie zagrody " +"hodowlanej" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wattle and daub smoking area covered to protect the workers " -"from the weather." +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the southeast side of the livestock field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj chatę z żywicy mi-go z dachem po południowo-wschodniej" +" stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "build a wattle and daub roofed area for smoking racks" +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the southwest side of the livestock field." msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj chatę " +"z żywicy mi-go z dachem po południowo-zachodniej stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "Let's build a wattle and daub wall pantry west of the kitchen." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"rammed earth shack with a roof on the northeast side of the livestock field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj chatę z ubitej ziemi z dachem po północno-wschodniej stronie zagrody " +"hodowlanej" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub pantry" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the southeast side of the livestock field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj chatę z ubitej ziemi z dachem po południowo-wschodniej" +" stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "Let's build the west wattle and daub wall of the dining hall." +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the southwest side of the livestock field." msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj chatę " +"z ubitej ziemi z dachem po południowo-zachodniej stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "build W wattle and daub wall" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"stone shack with a roof on the northeast side of the livestock field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj kamienną chatę z dachem po północno-wschodniej stronie zagrody " +"hodowlanej" #: lang/json/recipe_from_json.py -msgid "Let's build the east wattle and daub wall of the dining hall." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"stone shack with a roof on the southeast side of the livestock field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj kamienną chatę z dachem po południowo-wschodniej " +"stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "build E wattle and daub wall" +msgid "" +"We could use a stable for larger livestock, so build a stone shack with a " +"roof on the southwest side of the livestock field." msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj " +"kamienną chatę z dachem po południowo-zachodniej stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wattle and daub dining hall." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"wattle and daub shack with a roof on the northeast side of the livestock " +"field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj szachulcową chatę z dachem po północno-wschodniej stronie zagrody " +"hodowlanej" #: lang/json/recipe_from_json.py -msgid "build center of the wattle and daub dining hall" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle and daub shack with a roof on the southeast side of the livestock " +"field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj szachulcową chatę z dachem po południowo-wschodniej " +"stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wood panel walls." +msgid "" +"We could use a stable for larger livestock, so build a wattle and daub shack" +" with a roof on the southwest side of the livestock field." msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj " +"szachulcową chatę z dachem po południowo-zachodniej stronie zagrody " +"hodowlanej." #: lang/json/recipe_from_json.py -msgid "build the wood panel central kitchen room" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a wood" +" panel shack with a roof on the northeast side of the livestock field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj kamienną chatę z drewnianych paneli po północno-wschodniej stronie " +"zagrody hodowlanej" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wood panel walls." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the southeast side of the livestock field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj chatę z drewnianych paneli z dachem po południowo-" +"wschodniej stronie zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "finish the wood panel central kitchen room" +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the southwest side of the livestock field." msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj chatę " +"z drewnianych paneli z dachem po południowo-zachodniej stronie zagrody " +"hodowlanej." #: lang/json/recipe_from_json.py msgid "" -"Let's get this wood panel smoking area covered to protect the workers from " -"the weather." +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." msgstr "" +"Przydałoby się nam ogrodzenie do pomieszczenia naszych kur i innych ptaków, " +"więc zbuduj ogrodzenie z siatki by dokończyć obszar kurnika." #: lang/json/recipe_from_json.py -msgid "build a wood panel roofed area for smoking racks" -msgstr "" +msgid "chicken coop yard" +msgstr "podwórko kurnika" #: lang/json/recipe_from_json.py -msgid "Let's build a wood panel pantry west of the kitchen." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." msgstr "" +"Przydałby się nam padok do stajni, więc zbuduj płot po odległym boku zagrody" +" hodowlanej." #: lang/json/recipe_from_json.py -msgid "build a wood panel pantry" -msgstr "" +msgid "remote paddock fence" +msgstr "odległe ogrodzenie padoku" #: lang/json/recipe_from_json.py -msgid "Let's build the west wood panel wall of the dining hall." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." msgstr "" +"Przydałby się nam padok do stajni, więc zbuduj płot po boku zagrody " +"hodowlanej." #: lang/json/recipe_from_json.py -msgid "build W wood wall" -msgstr "" +msgid "side paddock fence" +msgstr "boczne ogrodzenie padoku" #: lang/json/recipe_from_json.py -msgid "Let's build the east wood panel wall of the dining hall." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." msgstr "" +"Przydałby się nam padok do stajni, więc zbuduj płot po bliskim boku zagrody " +"hodowlanej." #: lang/json/recipe_from_json.py -msgid "build E wood wall" -msgstr "" +msgid "near paddock fence" +msgstr "bliskie ogrodzenie padoku" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wood panel dining hall." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj cementową chatę z dachem po odległej stronie zagrody hodowlanej" #: lang/json/recipe_from_json.py -msgid "build center of the dining hall" -msgstr "" +msgid "concrete chicken coop" +msgstr "betonowy kurnik" #: lang/json/recipe_from_json.py -msgid "Survey land for a farming area." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj betonową chatę z dachem niedaleko boku zagrody " +"hodowlanej." #: lang/json/recipe_from_json.py -msgid "farm area survey" -msgstr "" +msgid "concrete storage shack" +msgstr "betonowa wiata magazynowa" #: lang/json/recipe_from_json.py -msgid "Plowing a few plots should get us started." -msgstr "Zaoranie kilku poletek zapewni nam dobry start." +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj " +"betonową chatę z dachem niedaleko boku zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "Farm basic plots" -msgstr "" +msgid "concrete stable" +msgstr "betonowa stajnia" #: lang/json/recipe_from_json.py -msgid "We could use a farming shed to store resources where we'll be working." +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." msgstr "" -"Potrzebna nam szopa rolnicza do przechowywania zasobów gdzie będziemy " -"pracować." +"Przydałaby się nam większa stajnia, więc rozbuduj ją o kolejny boks z " +"betonową ścianą." #: lang/json/recipe_from_json.py -msgid "Farm basic shed" +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." msgstr "" +"Przydałaby się nam większa stajnia, więc ukończ stajnię dwoma mniejszymi " +"boksami z betonową ścianą." #: lang/json/recipe_from_json.py msgid "" -"Our farm could be expanded by finishing the shed and adding additional " -"plots." +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." msgstr "" -"Naszą farmę można rozbudować dokańczając szopę i dodając kolejne poletka." +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj chatę z kłód z dachem po odległej stronie zagrody hodowlanej" #: lang/json/recipe_from_json.py -msgid "Farm upgraded shed" -msgstr "" +msgid "log chicken coop" +msgstr "kurnik z kłód" #: lang/json/recipe_from_json.py msgid "" -"Building a processing shack should allow us to reclaim additional seeds from" -" our byproducts." +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." msgstr "" -"Budowa szopy do przetwarzania plonów pozwoli nam odzyskać więcej ziarna z " -"produktów ubocznych." +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj chatę z kłód z dachem niedaleko boku zagrody " +"hodowlanej." #: lang/json/recipe_from_json.py -msgid "Farm processing shack" -msgstr "" +msgid "log storage shack" +msgstr "wiata magazynowa z kłód" #: lang/json/recipe_from_json.py -msgid "Survey land for a garage." -msgstr "Wymierz teren na garaż." +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj chatę " +"z kłód z dachem niedaleko boku zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "Building a tool rack should be the first priority." -msgstr "Zbudowanie stelażu na narzędzia to pierwszy priorytet." +msgid "log stable" +msgstr "stajnia z kłód" #: lang/json/recipe_from_json.py -msgid "Garage tool rack" +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." msgstr "" +"Przydałaby się nam większa stajnia, więc rozbuduj ją o kolejny boks ze " +"ścianą z kłód." #: lang/json/recipe_from_json.py -msgid "We should start construction of a roof for the garage." -msgstr "Powinniśmy rozpocząć konstrukcję dachu garażu." - -#: lang/json/recipe_from_json.py -msgid "Garage partial roof" +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." msgstr "" +"Przydałaby się nam większa stajnia, więc ukończ stajnię dwoma mniejszymi " +"boksami ze ścianą z kłód." #: lang/json/recipe_from_json.py -msgid "Finishing out the roof will let our mechanics work rain or shine." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." msgstr "" -"Ukończenie dachu pozwoli naszym mechanikom pracować czy słońce czy deszcz." +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj metalową chatę z dachem po odległej stronie zagrody hodowlanej" #: lang/json/recipe_from_json.py -msgid "Garage completed roof" -msgstr "" +msgid "metal chicken coop" +msgstr "metalowy kurnik" #: lang/json/recipe_from_json.py msgid "" -"Our garage isn't big enough to work on larger vehicles. Let's start " -"expanding it." +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." msgstr "" -"Nasz garaż nie jest wystarczająco duży by pracować nad większymi pojazdami. " -"Rozpocznijmy jego rozbudowę." +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj metalową chatę z dachem niedaleko boku zagrody " +"hodowlanej." #: lang/json/recipe_from_json.py -msgid "Garage partial expansion" -msgstr "" +msgid "metal storage shack" +msgstr "metalowa wiata magazynowa" #: lang/json/recipe_from_json.py -msgid "Finishing the roof will let us park RVs and buses in the garage." -msgstr "Ukończenie dachu pozwoli nam parkować w nim kampery i autobusy." +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj " +"metalową chatę z dachem niedaleko boku zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "Garage expanded roof" -msgstr "" +msgid "metal stable" +msgstr "metalowa stajnia" #: lang/json/recipe_from_json.py msgid "" -"Attaching quarters will let our mechanics work longer hours when needed." +"We could use a larger stable, so extend the stable with another metal walled" +" stall." msgstr "" +"Przydałaby się nam większa stajnia, więc rozbuduj ją o kolejny boks z " +"metalową ścianą." #: lang/json/recipe_from_json.py -msgid "Garage mechanics quarters" +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." msgstr "" +"Przydałaby się nam większa stajnia, więc ukończ stajnię dwoma mniejszymi " +"boksami z metalową ścianą." #: lang/json/recipe_from_json.py -msgid "Survey land for a livestock area." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj chatę z żywicy mi-go z dachem po odległej stronie zagrody hodowlanej" #: lang/json/recipe_from_json.py -msgid "Livestock survey" -msgstr "" +msgid "mi-go resin chicken coop" +msgstr "kurnik z żywicy mi-go" #: lang/json/recipe_from_json.py msgid "" -"We could use a fence to contain our chickens and other birds, so build a " -"chickenwire fence on the east side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj chatę z żywicy mi-go z dachem niedaleko boku zagrody " +"hodowlanej." #: lang/json/recipe_from_json.py -msgid "east coop yard" -msgstr "" +msgid "mi-go resin storage shack" +msgstr "wiata magazynowa z żywicy mi-go" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence on the " -"north side of the livestock field." +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj chatę " +"z żywicy mi-go z dachem niedaleko boku zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "north paddock" -msgstr "" +msgid "mi-go resin stable" +msgstr "stajnia z żywicy mi-go" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence in the " -"center of the livestock field." -msgstr "" - -#: lang/json/recipe_from_json.py -msgid "center paddock" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." msgstr "" +"Przydałaby się nam większa stajnia, więc rozbuduj ją o kolejny boks ze " +"ścianą z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence to close " -"off the south end of the livestock field." +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." msgstr "" +"Przydałaby się nam większa stajnia, więc ukończ stajnię dwoma mniejszymi " +"boksami ze ścianą z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a log " -"shack with a roof on the northeast side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj chatę z ubitej ziemi z dachem po odległej stronie zagrody hodowlanej" #: lang/json/recipe_from_json.py -msgid "northeast coop" -msgstr "" +msgid "rammed earth chicken coop" +msgstr "kurnik z ubitej ziemi" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a log " -"shack with a roof on the southeast side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj chatę z ubitej ziemi z dachem niedaleko boku zagrody " +"hodowlanej." #: lang/json/recipe_from_json.py -msgid "southeast storage room" -msgstr "" +msgid "rammed earth storage shack" +msgstr "wiata magazynowa z ubitej ziemi" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a log shack with a roof" -" on the southwest side of the livestock field." +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj chatę " +"z ubitej ziemi z dachem niedaleko boku zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "southwest stable" -msgstr "" +msgid "rammed earth stable" +msgstr "stajnia z ubitej ziemi" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the west" -" side of the livestock field." +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." msgstr "" +"Przydałaby się nam większa stajnia, więc rozbuduj ją o kolejny boks ze " +"ścianą z ubitej ziemi." #: lang/json/recipe_from_json.py -msgid "west stable" +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." msgstr "" +"Przydałaby się nam większa stajnia, więc ukończ stajnię dwoma mniejszymi " +"boksami ze ścianą z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the " -"northwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj kamienną chatę z dachem po odległej stronie zagrody hodowlanej" #: lang/json/recipe_from_json.py -msgid "northwest stable" -msgstr "" +msgid "rock chicken coop" +msgstr "kamienny kurnik" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"metal sheet shack with a roof on the northeast side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj kamienną chatę z dachem niedaleko boku zagrody " +"hodowlanej." #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"metal sheet shack with a roof on the southeast side of the livestock field." -msgstr "" +msgid "rock storage shack" +msgstr "kamienna wiata magazynowa" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a metal sheet shack " -"with a roof on the southwest side of the livestock field." +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj " +"kamienną chatę z dachem niedaleko boku zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a mi-" -"go resin shack with a roof on the northeast side of the livestock field." -msgstr "" +msgid "rock stable" +msgstr "kamienna stajnia" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a mi-" -"go resin shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rock walled " +"stall." msgstr "" +"Przydałaby się nam większa stajnia, więc rozbuduj ją o kolejny boks z " +"kamienną ścianą." #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a mi-go resin shack " -"with a roof on the southwest side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." msgstr "" +"Przydałaby się nam większa stajnia, więc ukończ stajnię dwoma mniejszymi " +"boksami z kamienną ścianą." #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"rammed earth shack with a roof on the northeast side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj szachulcową chatę z dachem po odległej stronie zagrody hodowlanej" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "szachulcowy kurnik" #: lang/json/recipe_from_json.py msgid "" "We could use a storage room for feed, animal gear and tools, so build a " -"rammed earth shack with a roof on the southeast side of the livestock field." +"wattle-and-daub shack with a roof on the near side of the livestock field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj szachulcową chatę z dachem niedaleko boku zagrody " +"hodowlanej." #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a rammed earth shack " -"with a roof on the southwest side of the livestock field." -msgstr "" +msgid "wattle-and-daub storage shack" +msgstr "szachulcowa wiata magazynowa" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"stone shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj " +"szachulcową chatę z dachem niedaleko boku zagrody hodowlanej." #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"stone shack with a roof on the southeast side of the livestock field." -msgstr "" +msgid "wattle-and-daub stable" +msgstr "szachulcowa stajnia" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a stone shack with a " -"roof on the southwest side of the livestock field." +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." msgstr "" +"Przydałaby się nam większa stajnia, więc rozbuduj ją o kolejny boks z " +"szachulcową ścianą." #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"wattle and daub shack with a roof on the northeast side of the livestock " -"field." +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." msgstr "" +"Przydałaby się nam większa stajnia, więc ukończ stajnię dwoma mniejszymi " +"boksami z szachulcową ścianą." #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"wattle and daub shack with a roof on the southeast side of the livestock " -"field." +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." msgstr "" +"Przydałby się nam kurnik do pomieszczenia naszych kur i innych ptaków, więc " +"zbuduj chatę z drewnianych paneli z dachem po odległej stronie zagrody " +"hodowlanej" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "kurnik z drewnianych paneli" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wattle and daub shack" -" with a roof on the southwest side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." msgstr "" +"Przydałby się nam magazyn do przechowywania paszy, sprzętu dla zwierząt i " +"narzędzi, więc zbuduj chatę z drewnianych paneli z dachem niedaleko boku " +"zagrody hodowlanej." + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "wiata magazynowa z drewnianych paneli" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a wood" -" panel shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." msgstr "" +"Przydałby się nam stajnia na większe zwierzęta hodowlane, więc zbuduj chatę " +"z drewnianych paneli z dachem niedaleko boku zagrody hodowlanej." + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "stajnia z drewnianych paneli" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a wood" -" panel shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." msgstr "" +"Przydałaby się nam większa stajnia, więc rozbuduj ją o kolejny boks ze " +"ścianą z drewnianych paneli." #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wood panel shack with" -" a roof on the southwest side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." msgstr "" +"Przydałaby się nam większa stajnia, więc ukończ stajnię dwoma mniejszymi " +"boksami ze ścianą z drewnianych paneli." #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." -msgstr "" +msgstr "Wymierz teren na obszar warzeni soli." #: lang/json/recipe_from_json.py msgid "Saltworks survey" -msgstr "" +msgstr "zarys warzelni soli" #: lang/json/recipe_from_json.py msgid "" "We could upgrade the workspace in the brewery to add a still, wood stove and" " work table." msgstr "" +"Mogliśmy ulepszyć przestrzeń roboczą w browarze, dodając destylator, piec na" +" drewno i stół roboczy." #: lang/json/recipe_from_json.py msgid "SW brewery still" -msgstr "" +msgstr "południowo-zachodnia warzelnia browaru" #: lang/json/recipe_from_json.py msgid "We could use fill out the space with extra kegs and storage racks." msgstr "" +"Przydałoby się uzupełnić przestrzeń dodatkowymi beczkami i regałami do " +"przechowywania." #: lang/json/recipe_from_json.py msgid "SW brewery kegs" -msgstr "" +msgstr "południowo-zachodnie kegi browaru" #: lang/json/recipe_from_json.py msgid "" "We could divert saltwater from the swamp nearby to create a steady supply of" " salt for our needs in a log building." msgstr "" +"Moglibyśmy przekierować słoną wodę z pobliskiego bagna, aby stworzyć stały " +"zapas soli na nasze potrzeby w budynku z bali." #: lang/json/recipe_from_json.py msgid "NE log wall saltpan" -msgstr "" +msgstr "północno-wschodnie solnisko ze ściany z kłód" #: lang/json/recipe_from_json.py msgid "" "We could use a storage room for chemicals and tools, so build a log shack " "with a roof on the southeast side of the saltworks field." msgstr "" +"Przydałby się nam magazyn do przechowywania chemikaliów i narzędzi, więc " +"zbuduj chatę z kłód z dachem po południowo-wschodniej stronie warzelni soli." #: lang/json/recipe_from_json.py msgid "SE log wall storage room" -msgstr "" +msgstr "południowo-wschodni magazyn ze ściany z kłód" #: lang/json/recipe_from_json.py msgid "" "We could take advantage of the designation of this area to build a log " "brewery." msgstr "" +"Moglibyśmy skorzystać z możliwości przeznaczenia tego terenu na budowę " +"browaru z bali." #: lang/json/recipe_from_json.py msgid "SW log wall brewery" -msgstr "" +msgstr "południowo-zachodni browar ze ściany z kłód" #: lang/json/recipe_from_json.py msgid "" "We could divert saltwater from the swamp nearby to create a steady supply of" " salt for our needs in a metal shed." msgstr "" +"Moglibyśmy przekierować słoną wodę z pobliskiego bagna, aby stworzyć stały " +"zapas soli na nasze potrzeby w metalowej szopie." #: lang/json/recipe_from_json.py msgid "NE metal wall saltpan" -msgstr "" +msgstr "północno-wschodnie solnisko z metalowych ścian" #: lang/json/recipe_from_json.py msgid "" "We could use a storage room for chemicals and tools, so build a metal shack " "with a roof on the southeast side of the saltworks field." msgstr "" +"Przydałby się nam magazyn do przechowywania chemikaliów i narzędzi, więc " +"zbuduj metalową chatę z dachem po południowo-wschodniej stronie warzelni " +"soli." #: lang/json/recipe_from_json.py msgid "SE metal wall storage room" -msgstr "" +msgstr "południowo-wschodni magazyn z metalowych ścian" #: lang/json/recipe_from_json.py msgid "" "We could take advantage of the designation of this area to build a metal " "wall brewery." msgstr "" +"Moglibyśmy skorzystać z możliwości przeznaczenia tego terenu na budowę " +"browaru z metalowych ścian." #: lang/json/recipe_from_json.py msgid "SW metal wall brewery" -msgstr "" +msgstr "południowo-zachodni browar z metalowych ścian" #: lang/json/recipe_from_json.py msgid "" "We could divert saltwater from the swamp nearby to create a steady supply of" " salt for our needs in an adobe hut." msgstr "" +"Moglibyśmy przekierować słoną wodę z pobliskiego bagna, aby stworzyć stały " +"zapas soli na nasze potrzeby w ceglanej chacie." #: lang/json/recipe_from_json.py msgid "NE migo resin saltpan" -msgstr "" +msgstr "północno-wschodnie solnisko z żywicy mi-go" #: lang/json/recipe_from_json.py msgid "" "We could use a storage room for chemicals and tools, so build an adobe shack" " with a roof on the southeast side of the saltworks field." msgstr "" +"Przydałby się nam magazyn do przechowywania chemikaliów i narzędzi, więc " +"zbuduj chatę z cegły suszonej na słońcu z dachem po południowo-wschodniej " +"stronie warzelni soli." #: lang/json/recipe_from_json.py msgid "SE migo resin storage room" -msgstr "" +msgstr "południowo-schodni magazyn z żywicy mi-go" #: lang/json/recipe_from_json.py msgid "" "We could take advantage of the designation of this area to build an migo " "resin brewery." msgstr "" +"Moglibyśmy skorzystać z możliwości przeznaczenia tego terenu na budowę " +"browaru z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "SW migo resin brewery" -msgstr "" +msgstr "południowo-zachodni browar z żywicy mi-go" #: lang/json/recipe_from_json.py msgid "NE rammed earth saltpan" -msgstr "" +msgstr "północno-wschodnie solnisko z ubitej ziemi" #: lang/json/recipe_from_json.py msgid "SE rammed earth storage room" -msgstr "" +msgstr "południowo-wschodni magazyn z ubitej ziemi" #: lang/json/recipe_from_json.py msgid "" "We could take advantage of the designation of this area to build an rammed " "earth brewery." msgstr "" +"Moglibyśmy skorzystać z możliwości przeznaczenia tego terenu na budowę " +"browaru z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "SW rammed earth brewery" -msgstr "" +msgstr "południowo-zachodni browar z ubitej ziemi" #: lang/json/recipe_from_json.py msgid "" "We could divert saltwater from the swamp nearby to create a steady supply of" " salt for our needs in a stone building." msgstr "" +"Moglibyśmy przekierować słoną wodę z pobliskiego bagna, aby stworzyć stały " +"zapas soli na nasze potrzeby w budynku z kamienia." #: lang/json/recipe_from_json.py msgid "NE stone wall saltpan" -msgstr "" +msgstr "północno-wschodnie kamienne solnisko" #: lang/json/recipe_from_json.py msgid "" "We could use a storage room for chemicals and tools, so build a stone wall " "shack with a roof on the southeast side of the saltworks field." msgstr "" +"Przydałby się nam magazyn do przechowywania chemikaliów i narzędzi, więc " +"zbuduj chatę z kamiennej ściany z dachem po południowo-wschodniej stronie " +"warzelni soli." #: lang/json/recipe_from_json.py msgid "SE stone wall storage room" -msgstr "" +msgstr "południowo-zachodni magazyn z kamiennej ściany" #: lang/json/recipe_from_json.py msgid "" "We could take advantage of the designation of this area to build a stone " "brewery." msgstr "" +"Moglibyśmy skorzystać z możliwości przeznaczenia tego terenu na budowę " +"browaru z kamienia." #: lang/json/recipe_from_json.py msgid "SW stone wall brewery" -msgstr "" +msgstr "południowo-zachodni browar z kamiennej ściany" #: lang/json/recipe_from_json.py msgid "NE wattle and daub saltpan" -msgstr "" +msgstr "północno-wschodnie szachulcowe solnisko" #: lang/json/recipe_from_json.py msgid "SE wattle and daub storage room" -msgstr "" +msgstr "południowo-wschodni szachulcowy magazyn" #: lang/json/recipe_from_json.py msgid "" "We could take advantage of the designation of this area to build an wattle " "and daub brewery." msgstr "" +"Moglibyśmy skorzystać z możliwości przeznaczenia tego terenu na budowę " +"szachulcowego browaru." #: lang/json/recipe_from_json.py msgid "SW wattle and daub brewery" -msgstr "" +msgstr "południowo-zachodni szachulcowy browar" #: lang/json/recipe_from_json.py msgid "" "We could divert saltwater from the swamp nearby to create a steady supply of" " salt for our needs in a wooden shed." msgstr "" +"Moglibyśmy przekierować słoną wodę z pobliskiego bagna, aby stworzyć stały " +"zapas soli na nasze potrzeby w drewnianej szopie." #: lang/json/recipe_from_json.py msgid "NE wood panel saltpan" -msgstr "" +msgstr "północno-wschodnie solnisko z drewnianych paneli" #: lang/json/recipe_from_json.py msgid "" "We could use a storage room for chemicals and tools, so build a wood panel " "shack with a roof on the southeast side of the saltworks field." msgstr "" +"Przydałby się nam magazyn do przechowywania chemikaliów i narzędzi, więc " +"zbuduj chatę z drewnianych paneli z dachem po południowo-wschodniej stronie " +"warzelni soli." #: lang/json/recipe_from_json.py msgid "SE wood panel storage room" -msgstr "" +msgstr "południowo-wschodni magazyn z drewnianych paneli" #: lang/json/recipe_from_json.py msgid "" "We could take advantage of the designation of this area to build a wooden " "brewery." msgstr "" +"Moglibyśmy skorzystać z możliwości przeznaczenia tego terenu na budowę " +"browaru z drewna." #: lang/json/recipe_from_json.py msgid "SW wood panel brewery" -msgstr "" +msgstr "południowo-zachodni browar z drewnianych paneli" #: lang/json/recipe_from_json.py msgid "Survey land for a storehouse area." -msgstr "" +msgstr "Wymierz teren na magazyn." #: lang/json/recipe_from_json.py msgid "Storehouse survey" -msgstr "" +msgstr "zarys magazynu" #: lang/json/recipe_from_json.py msgid "" "We could use a large log central storage building. Begin by building the " "east wing." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z kłód. Zacznij od " +"budowy wschodniego skrzydła." #: lang/json/recipe_from_json.py msgid "east storage wing" -msgstr "" +msgstr "wschodnie skrzydło magazynu" #: lang/json/recipe_from_json.py msgid "" "We could use a large log central storage building. Continue by building the" " west wing." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z kłód. Kontynuuj " +"budując zachodnie skrzydło." #: lang/json/recipe_from_json.py msgid "west storage wing" -msgstr "" +msgstr "zachodnie skrzydło magazynu" #: lang/json/recipe_from_json.py msgid "" "We could use a large log central storage building. Continue by building the" " northwest corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z kłód. Kontynuuj " +"budując północno-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "northwest storeroom corner" -msgstr "" +msgstr "północno-wschodni róg magazynu" #: lang/json/recipe_from_json.py msgid "" "We could use a large log central storage building. Continue by building the" " southwest corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z kłód. Kontynuuj " +"budując południowo-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "southwest storeroom corner" -msgstr "" +msgstr "południowo-zachodni róg magazynu" #: lang/json/recipe_from_json.py msgid "" "We could use a large log central storage building. Continue by building the" " northeast corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z kłód. Kontynuuj " +"budując północno-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "northeast storeroom corner" -msgstr "" +msgstr "północno-wschodni róg magazynu" #: lang/json/recipe_from_json.py msgid "" "We could use a large log central storage building. Continue by building the" " southeast corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z kłód. Kontynuuj " +"budując południowo-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "southeast storeroom corner" -msgstr "" +msgstr "południowo-wschodni róg magazynu" #: lang/json/recipe_from_json.py msgid "" "We could use a large log central storage building. Continue by building the" " southern entrance." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z kłód. Kontynuuj " +"budując południowe wejście." #: lang/json/recipe_from_json.py msgid "south storeroom entrance" -msgstr "" +msgstr "południowe wejście do magaznu" #: lang/json/recipe_from_json.py msgid "" "We could use a large log central storage building. Continue by building the" " northern entrance." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z kłód. Kontynuuj " +"budując północne wejście." #: lang/json/recipe_from_json.py msgid "north storeroom entrance" -msgstr "" +msgstr "północne wejście do magazynu" #: lang/json/recipe_from_json.py msgid "" "We could use a large log central storage building. Continue by filling in " "the floor." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z kłód. Kontynuuj " +"wypełniając podłogę." #: lang/json/recipe_from_json.py msgid "" "We could use a large scrap metal central storage building. Begin by " "building the east wing." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu ze złomu. Zacznij od " +"budowy wschodniego skrzydła." #: lang/json/recipe_from_json.py msgid "" "We could use a large scrap metal central storage building. Continue by " "building the west wing." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu ze złomu. Kontynuuj " +"budując zachodnie skrzydło." #: lang/json/recipe_from_json.py msgid "" "We could use a large scrap metal central storage building. Continue by " "building the northwest corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu ze złomu. Kontynuuj " +"budując północno-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large scrap metal central storage building. Continue by " "building the southwest corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu ze złomu. Kontynuuj " +"budując południowo-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large scrap metal central storage building. Continue by " "building the northeast corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu ze złomu. Kontynuuj " +"budując północno-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large scrap metal central storage building. Continue by " "building the southeast corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu ze złomu. Kontynuuj " +"budując południowo-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large scrap metal central storage building. Continue by " "building the southern entrance." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu ze złomu. Kontynuuj " +"budując południowe wejście." #: lang/json/recipe_from_json.py msgid "" "We could use a large scrap metal central storage building. Continue by " "building the northern entrance." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu ze złomu. Kontynuuj " +"budując północne wejście." #: lang/json/recipe_from_json.py msgid "" "We could use a large scrap metal central storage building. Continue by " "filling in the floor." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu ze złomu. Kontynuuj " +"wypełniając podłogę." #: lang/json/recipe_from_json.py msgid "" "We could use a large mi-go resin central storage building. Begin by " "building the east wing." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z żywicy mi-go. Zacznij " +"od budowy wschodniego skrzydła." #: lang/json/recipe_from_json.py msgid "" "We could use a large mi-go resin central storage building. Continue by " "building the west wing." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z żywicy mi-go. " +"Kontynuuj budując zachodnie skrzydło." #: lang/json/recipe_from_json.py msgid "" "We could use a large mi-go resin central storage building. Continue by " "building the northwest corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z żywicy mi-go. " +"Kontynuuj budując północno-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large mi-go resin central storage building. Continue by " "building the southwest corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z żywicy mi-go. " +"Kontynuuj budując południowo-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large mi-go resin central storage building. Continue by " "building the northeast corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z żywicy mi-go. " +"Kontynuuj budując północno-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large mi-go resin central storage building. Continue by " "building the southeast corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z żywicy mi-go Kontynuuj" +" budując południowo-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large mi-go resin central storage building. Continue by " "building the southern entrance." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z żywicy mi-go. " +"Kontynuuj budując południowe wejście." #: lang/json/recipe_from_json.py msgid "" "We could use a large mi-go resin central storage building. Continue by " "building the northern entrance." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z żywicy mi-go. " +"Kontynuuj budując północne wejście." #: lang/json/recipe_from_json.py msgid "" "We could use a large mi-go resin central storage building. Continue by " "filling in the floor." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z żywicy mi-go. " +"Kontynuuj wypełniając podłogę." #: lang/json/recipe_from_json.py msgid "" "We could use a large rammed earth central storage building. Begin by " "building the east wing." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z ubitej ziemi. Zacznij " +"od budowy wschodniego skrzydła." #: lang/json/recipe_from_json.py msgid "" "We could use a large rammed earth central storage building. Continue by " "building the west wing." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z ubitej ziemi. " +"Kontynuuj budując zachodnie skrzydło." #: lang/json/recipe_from_json.py msgid "" "We could use a large rammed earth central storage building. Continue by " "building the northwest corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z ubitej ziemi. " +"Kontynuuj budując północno-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large rammed earth central storage building. Continue by " "building the southwest corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z ubitej ziemi. " +"Kontynuuj budując południowo-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large rammed earth central storage building. Continue by " "building the northeast corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z ubitej ziemi. " +"Kontynuuj budując północno-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large rammed earth central storage building. Continue by " "building the southeast corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z ubitej ziemi. " +"Kontynuuj budując południowo-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large rammed earth central storage building. Continue by " "building the southern entrance." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z ubitej ziemi. " +"Kontynuuj budując południowe wejście." #: lang/json/recipe_from_json.py msgid "" "We could use a large rammed earth central storage building. Continue by " "building the northern entrance." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z ubitej ziemi. " +"Kontynuuj budując północne wejście." #: lang/json/recipe_from_json.py msgid "" "We could use a large rammed earth central storage building. Continue by " "filling in the floor." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z ubitej ziemi. " +"Kontynuuj wypełniając podłogę." #: lang/json/recipe_from_json.py msgid "" "We could use a large stone central storage building. Begin by building the " "east wing." msgstr "" +"Przydałby się nam duży kamienny budynek centralnego magazynu. Zacznij od " +"budowy wschodniego skrzydła." #: lang/json/recipe_from_json.py msgid "" "We could use a large stone central storage building. Continue by building " "the west wing." msgstr "" +"Przydałby się nam duży kamienny budynek centralnego magazynu. Kontynuuj " +"budując zachodnie skrzydło." #: lang/json/recipe_from_json.py msgid "" "We could use a large stone central storage building. Continue by building " "the northwest corner." msgstr "" +"Przydałby się nam duży kamienny budynek centralnego magazynu. Kontynuuj " +"budując północno-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large stone central storage building. Continue by building " "the southwest corner." msgstr "" +"Przydałby się nam duży kamienny budynek centralnego magazynu. Kontynuuj " +"budując południowo-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large stone central storage building. Continue by building " "the northeast corner." msgstr "" +"Przydałby się nam duży kamienny budynek centralnego magazynu. Kontynuuj " +"budując północno-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large stone central storage building. Continue by building " "the southeast corner." msgstr "" +"Przydałby się nam duży kamienny budynek centralnego magazynu. Kontynuuj " +"budując południowo-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large stone central storage building. Continue by building " "the southern entrance." msgstr "" +"Przydałby się nam duży kamienny budynek centralnego magazynu. Kontynuuj " +"budując południowe wejście." #: lang/json/recipe_from_json.py msgid "" "We could use a large stone central storage building. Continue by building " "the northern entrance." msgstr "" +"Przydałby się nam duży kamienny budynek centralnego magazynu. Kontynuuj " +"budując północne wejście." #: lang/json/recipe_from_json.py msgid "" "We could use a large stone central storage building. Continue by filling in" " the floor." msgstr "" +"Przydałby się nam duży kamienny budynek centralnego magazynu. Kontynuuj " +"wypełniając podłogę." #: lang/json/recipe_from_json.py msgid "" "We could use a large wattle and daub central storage building. Begin by " "building the east wing." msgstr "" +"Przydałby się nam duży szachulcowy budynek centralnego magazynu. Zacznij od " +"budowy wschodniego skrzydła." #: lang/json/recipe_from_json.py msgid "" "We could use a large wattle and daub central storage building. Continue by " "building the west wing." msgstr "" +"Przydałby się nam duży szachulcowy budynek centralnego magazynu. Kontynuuj " +"budując zachodnie skrzydło." #: lang/json/recipe_from_json.py msgid "" "We could use a large wattle and daub central storage building. Continue by " "building the northwest corner." msgstr "" +"Przydałby się nam duży szachulcowy budynek centralnego magazynu. Kontynuuj " +"budując północno-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large wattle and daub central storage building. Continue by " "building the southwest corner." msgstr "" +"Przydałby się nam duży szachulcowy budynek centralnego magazynu. Kontynuuj " +"budując południowo-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large wattle and daub central storage building. Continue by " "building the northeast corner." msgstr "" +"Przydałby się nam duży szachulcowy budynek centralnego magazynu. Kontynuuj " +"budując północno-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large wattle and daub central storage building. Continue by " "building the southeast corner." msgstr "" +"Przydałby się nam duży szachulcowy budynek centralnego magazynu. Kontynuuj " +"budując południowo-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large wattle and daub central storage building. Continue by " "building the southern entrance." msgstr "" +"Przydałby się nam duży szachulcowy budynek centralnego magazynu. Kontynuuj " +"budując południowe wejście." #: lang/json/recipe_from_json.py msgid "" "We could use a large wattle and daub central storage building. Continue by " "building the northern entrance." msgstr "" +"Przydałby się nam duży szachulcowy budynek centralnego magazynu. Kontynuuj " +"budując północne wejście." #: lang/json/recipe_from_json.py msgid "" "We could use a large wattle and daub central storage building. Continue by " "filling in the floor." msgstr "" +"Przydałby się nam duży szachulcowy budynek centralnego magazynu. Kontynuuj " +"wypełniając podłogę." #: lang/json/recipe_from_json.py msgid "" "We could use a large wood panel central storage building. Begin by building" " the east wing." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z drewnianych paneli. " +"Zacznij od budowy wschodniego skrzydła." #: lang/json/recipe_from_json.py msgid "" "We could use a large wood panel central storage building. Continue by " "building the west wing." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z drewnianych paneli. " +"Kontynuuj budując zachodnie skrzydło." #: lang/json/recipe_from_json.py msgid "" "We could use a large wood panel central storage building. Continue by " "building the northwest corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z drewnianych paneli. " +"Kontynuuj budując północno-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large wood panel central storage building. Continue by " "building the southwest corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z drewnianych paneli. " +"Kontynuuj budując południowo-zachodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large wood panel central storage building. Continue by " "building the northeast corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z drewnianych paneli. " +"Kontynuuj budując północno-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large wood panel central storage building. Continue by " "building the southeast corner." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z drewnianych paneli. " +"Kontynuuj budując południowo-wschodni narożnik." #: lang/json/recipe_from_json.py msgid "" "We could use a large wood panel central storage building. Continue by " "building the southern entrance." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z drewnianych paneli. " +"Kontynuuj budując południowe wejście." #: lang/json/recipe_from_json.py msgid "" "We could use a large wood panel central storage building. Continue by " "building the northern entrance." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z drewnianych paneli. " +"Kontynuuj budując północne wejście." #: lang/json/recipe_from_json.py msgid "" "We could use a large wood panel central storage building. Continue by " "filling in the floor." msgstr "" +"Przydałby się nam duży budynek centralnego magazynu z drewnianych paneli. " +"Kontynuuj wypełniając podłogę." #: lang/json/recipe_from_json.py msgid "" "We could use some storage containers. Let's build some book cases to in the" " western alcove." msgstr "" +"Przydałyby się nam jakieś pojemniki do przechowywania. W zachodniej wnęce " +"zbudujmy kilka regałów na książki." #: lang/json/recipe_from_json.py msgid "bookcases, west" -msgstr "" +msgstr "zachodnie biblioteczki" #: lang/json/recipe_from_json.py msgid "" "We could use some storage containers. Let's build some lockers in the " "eastern alcove." msgstr "" +"Przydałyby się nam jakieś pojemniki do przechowywania. Zbudujmy kilka " +"schowków we wschodniej wnęce." #: lang/json/recipe_from_json.py msgid "lockers, east" -msgstr "" +msgstr "zachodnie szafki" #: lang/json/recipe_from_json.py msgid "We could use some storage containers. Let's build some tables." msgstr "" +"Przydałyby się nam jakiś pojemniki do przechowywania. Zbudujmy kilka stołów." #: lang/json/recipe_from_json.py msgid "tables, center" -msgstr "" +msgstr "centralne stoły" #: lang/json/recipe_from_json.py msgid "" "Some benches around the outside would be nice. Build some to the northwest." msgstr "" +"Przydałoby się kilka ławek na zewnątrz. Zbuduj kilka w kierunku północno-" +"zachodnim." #: lang/json/recipe_from_json.py msgid "benches, northwest" -msgstr "" +msgstr "północno-zachodnie ławki" #: lang/json/recipe_from_json.py msgid "" "Some benches around the outside would be nice. Build some to the northeast." msgstr "" +"Przydałoby się kilka ławek na zewnątrz. Zbuduj kilka w kierunku północno-" +"wschodnim." #: lang/json/recipe_from_json.py msgid "benches, northeast" -msgstr "" +msgstr "północno-wschodnie ławki" #: lang/json/recipe_from_json.py msgid "" "Some benches around the outside would be nice. Build some to the southeast." msgstr "" +"Przydałoby się kilka ławek na zewnątrz. Zbuduj kilka w kierunku południowo-" +"wschodnim." #: lang/json/recipe_from_json.py msgid "benches, southeast" -msgstr "" +msgstr "południowo-wschodnie ławki" #: lang/json/recipe_from_json.py msgid "" "Some benches around the outside would be nice. Build some to the southwest." msgstr "" +"Przydałoby się kilka ławek na zewnątrz. Zbuduj kilka w kierunku południowo-" +"zachodnim." #: lang/json/recipe_from_json.py msgid "benches, southwest" +msgstr "południowo-zachodnie ławki" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" msgstr "" +"Umieść 12 biblioteczek tworzących 1 ½ korytarza do przechowywania (2000 l " +"magazynu, zawartość widoczna z daleka, blokuje linię wzroku)." #: lang/json/recipe_from_json.py -msgid "Survey land for a workshop." +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "umieść 1 ½ rzędów biblioteczek w sekcji P" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "zarys magazynu" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." msgstr "" +"Przydałby się nam duży budynek magazynowy. Zacznijmy od betonowej sekcji." #: lang/json/recipe_from_json.py -msgid "workshop survey" +msgid "concrete storage section" +msgstr "betonowa sekcja magazynowa" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "Rozbudujmy nasz budynek magazynowy o kolejną betonową sekcję." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" +"Zakończmy nasz budynek magazynowy z betonową sekcją. Jeśli naprawdę chcemy, " +"możemy podwoić objętość, ale czy nie będzie to zbyt radykalne, skoro możemy " +"wykorzystać tę przestrzeń do rozładunku łupów?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" +"Chcemy pomieścić WSZYSTKO! Podwójmy wielkość budynku magazynowego, " +"zaczynając od betonowej sekcji." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" +"Umieść 12 komód tworzących 1 ½ korytarza do przechowywania (2000 l magazynu," +" zawartość niewidoczna z daleka, nie blokuje linii wzroku)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "umieść 1 ½ rzędów komód w sekcji A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "umieść 1 ½ rzędów komód w sekcji B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "umieść 1 ½ rzędów komód w sekcji C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "umieść 1 ½ rzędów komód w sekcji D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "umieść 1 ½ rzędów komód w sekcji E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "umieść 1 ½ rzędów komód w sekcji F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "umieść 1 ½ rzędów komód w sekcji G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "umieść 1 ½ rzędów komód w sekcji H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "umieść 1 ½ rzędów komód w sekcji I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "umieść 1 ½ rzędów komód w sekcji J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "umieść 1 ½ rzędów komód w sekcji K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "umieść 1 ½ rzędów komód w sekcji L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "umieść 1 ½ rzędów komód w sekcji M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "umieść 1 ½ rzędów komód w sekcji N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "umieść 1 ½ rzędów komód w sekcji O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "umieść 1 ½ rzędów komód w sekcji P" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" +"Umieść 12 schowków tworzących 1 ½ korytarza do przechowywania (2000 l " +"magazynu, zawartość niewidoczna z daleka, blokuje linię wzroku). Zastanów " +"się, czy biblioteczki lub komody nie będą lepsze." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "umieść 1 ½ rzędów schowków w sekcji A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "umieść 1 ½ rzędów schowków w sekcji B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "umieść 1 ½ rzędów schowków w sekcji C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "umieść 1 ½ rzędów schowków w sekcji D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "umieść 1 ½ rzędów schowków w sekcji E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "umieść 1 ½ rzędów schowków w sekcji F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "umieść 1 ½ rzędów schowków w sekcji G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "umieść 1 ½ rzędów schowków w sekcji H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "umieść 1 ½ rzędów schowków w sekcji I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "umieść 1 ½ rzędów schowków w sekcji J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "umieść 1 ½ rzędów schowków w sekcji K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "umieść 1 ½ rzędów schowków w sekcji L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "umieść 1 ½ rzędów schowków w sekcji M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "umieść 1 ½ rzędów schowków w sekcji N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "umieść 1 ½ rzędów schowków w sekcji O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "umieść 1 ½ rzędów schowków w sekcji P" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" +"Przydałby się nam duży budynek magazynowy. Zacznijmy od sekcji z kłód." + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "sekcja magazynowa z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "Rozbudujmy nasz budynek magazynowy o kolejną sekcję z kłód." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" +"Zakończmy nasz budynek magazynowy z sekcją z kłód. Jeśli naprawdę chcemy, " +"możemy podwoić objętość, ale czy nie będzie to zbyt radykalne, skoro możemy " +"wykorzystać tę przestrzeń do rozładunku łupów?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" +"Chcemy pomieścić WSZYSTKO! Podwójmy wielkość budynku magazynowego, " +"zaczynając od sekcji z kłód." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" +"Przydałby się nam duży budynek magazynowy. Zacznijmy od metalowej sekcji." + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "metalowa sekcja magazynowa" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "Rozbudujmy nasz budynek magazynowy o kolejną metalową sekcję." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" +"Zakończmy nasz budynek magazynowy z metalową sekcją. Jeśli naprawdę chcemy, " +"możemy podwoić objętość, ale czy nie będzie to zbyt radykalne, skoro możemy " +"wykorzystać tę przestrzeń do rozładunku łupów?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" +"Chcemy pomieścić WSZYSTKO! Podwójmy wielkość budynku magazynowego, " +"zaczynając od metalowej sekcji." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" +"Przydałby się nam duży budynek magazynowy. Zacznijmy od sekcji z żywicy mi-" +"go." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "sekcja magazynowa z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "Rozbudujmy nasz budynek magazynowy o kolejną sekcję z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" +"Zakończmy nasz budynek magazynowy z sekcją z żywicy mi-go. Jeśli naprawdę " +"chcemy, możemy podwoić objętość, ale czy nie będzie to zbyt radykalne, skoro" +" możemy wykorzystać tę przestrzeń do rozładunku łupów?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" +"Chcemy pomieścić WSZYSTKO! Podwójmy wielkość budynku magazynowego, " +"zaczynając od sekcji z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" +"Umieść 12 gablot tworzących 1 ½ korytarza do przechowywania (1750 l " +"magazynu, zawartość widoczna z daleka, nie blokuje linii wzroku)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "umieść 1 ½ rzędów gablot w sekcji A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "umieść 1 ½ rzędów gablot w sekcji B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "umieść 1 ½ rzędów gablot w sekcji C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "umieść 1 ½ rzędów gablot w sekcji D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "umieść 1 ½ rzędów gablot w sekcji E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "umieść 1 ½ rzędów gablot w sekcji F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "umieść 1 ½ rzędów gablot w sekcji G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "umieść 1 ½ rzędów gablot w sekcji H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "umieść 1 ½ rzędów gablot w sekcji I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "umieść 1 ½ rzędów gablot w sekcji J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "umieść 1 ½ rzędów gablot w sekcji K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "umieść 1 ½ rzędów gablot w sekcji L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "umieść 1 ½ rzędów gablot w sekcji M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "umieść 1 ½ rzędów gablot w sekcji N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "umieść 1 ½ rzędów gablot w sekcji O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "umieść 1 ½ rzędów gablot w sekcji P" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" +"Przydałby się nam duży budynek magazynowy. Zacznijmy od sekcji z ubitej " +"ziemi." + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "sekcja magazynowa z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "Rozbudujmy nasz budynek magazynowy o kolejną sekcję z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" +"Zakończmy nasz budynek magazynowy z sekcją z ubitej ziemi. Jeśli naprawdę " +"chcemy, możemy podwoić objętość, ale czy nie będzie to zbyt radykalne, skoro" +" możemy wykorzystać tę przestrzeń do rozładunku łupów?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" +"Chcemy pomieścić WSZYSTKO! Podwójmy wielkość budynku magazynowego, " +"zaczynając od sekcji z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" +"Przydałby się nam duży budynek magazynowy. Zacznijmy od kamiennej sekcji." + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "kamienna sekcja magazynowa" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "Rozbudujmy nasz budynek magazynowy o kolejną kamienną sekcję." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" +"Zakończmy nasz budynek magazynowy z kamienną sekcją. Jeśli naprawdę chcemy, " +"możemy podwoić objętość, ale czy nie będzie to zbyt radykalne, skoro możemy " +"wykorzystać tę przestrzeń do rozładunku łupów?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" +"Chcemy pomieścić WSZYSTKO! Podwójmy wielkość budynku magazynowego, " +"zaczynając od kamiennej sekcji." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" +"Przydałby się nam duży budynek magazynowy. Zacznijmy od szachulcowej sekcji." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "szachulcowa sekcja magazynowa" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "Rozbudujmy nasz budynek magazynowy o kolejną szachulcową sekcję." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" +"Zakończmy nasz budynek magazynowy z szachulcową sekcją. Jeśli naprawdę " +"chcemy, możemy podwoić objętość, ale czy nie będzie to zbyt radykalne, skoro" +" możemy wykorzystać tę przestrzeń do rozładunku łupów?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" +"Chcemy pomieścić WSZYSTKO! Podwójmy wielkość budynku magazynowego, " +"zaczynając od szachulcowej sekcji." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" +"Umieść 12 szafek magazynowych tworzących 1 ½ korytarza do przechowywania " +"(3500 l magazynu, zawartość widoczna z daleka, blokuje linię wzroku). Król " +"przestrzeni magazynowej z królewską ceną." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "umieść 1 ½ rzędów szafek magazynowych w sekcji P" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" +"Przydałby się nam duży budynek magazynowy. Zacznijmy od sekcji z drewnianych" +" paneli." + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "sekcja magazynu z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" +"Rozbudujmy nasz budynek magazynowy o kolejną sekcję z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" +"Zakończmy nasz budynek magazynowy z sekcją z drewnianych paneli ziemi. Jeśli" +" naprawdę chcemy, możemy podwoić objętość, ale czy nie będzie to zbyt " +"radykalne, skoro możemy wykorzystać tę przestrzeń do rozładunku łupów?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" +"Chcemy pomieścić WSZYSTKO! Podwójmy wielkość budynku magazynowego, " +"zaczynając od sekcji z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." msgstr "" +"Umieść 12 drewnianych stojaków tworzących 1 ½ korytarza do przechowywania " +"(1500 l magazynu, zawartość widoczna z daleka, nie blokuje linii wzroku)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji A" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "umieść 1 ½ rzędów drewnianych regałów w sekcji P" + +#: lang/json/recipe_from_json.py +msgid "Survey land for a workshop." +msgstr "Wymierz teren na warsztat." + +#: lang/json/recipe_from_json.py +msgid "workshop survey" +msgstr "zarys warsztatu" #: lang/json/recipe_from_json.py msgid "" "Let's install a metal working forge and a charcoal kiln. We'll need a few " "tools too, so we'll include some storage space." msgstr "" +"Zainstalujmy kuźnię do obróbki metalu i piec do wypalania węgla drzewnego. " +"Będziemy też potrzebować kilku narzędzi, więc uwzględnimy trochę miejsca na " +"przechowywanie." #: lang/json/recipe_from_json.py msgid "forge and kiln" -msgstr "" +msgstr "kuźnia i piec" #: lang/json/recipe_from_json.py msgid "Let's install an anvil, some quenching containers and a workbench." msgstr "" +"Zainstalujmy kowadło, kilka pojemników do hartowania i stół warsztatowy." #: lang/json/recipe_from_json.py msgid "anvil and workbench" -msgstr "" +msgstr "kowadło i stół warsztatowy" #: lang/json/recipe_from_json.py msgid "Let's install a bellows for our forge and add some more tools." msgstr "" +"Zainstalujmy miech do naszej kuźni i dodajmy kilka dodatkowych narzędzi." #: lang/json/recipe_from_json.py msgid "bellows" -msgstr "" +msgstr "miechy" #: lang/json/recipe_from_json.py msgid "" "We can use a log workshop. Let's start by building a spot to protect the " "workers from the rain." msgstr "" +"Przyda się nam warsztat z kłód. Zacznijmy od zbudowania miejsca, aby " +"ochronić pracowników przed deszczem." #: lang/json/recipe_from_json.py msgid "northeast wall" -msgstr "" +msgstr "północno-wschodnia ściana" #: lang/json/recipe_from_json.py msgid "" "Let's extend the north log wall to the west and add some storage space." msgstr "" +"Przedłużmy północną ścianę z kłód na zachód i dodajmy trochę miejsca do " +"przechowywania." #: lang/json/recipe_from_json.py msgid "north wall" -msgstr "" +msgstr "północna ściana" #: lang/json/recipe_from_json.py msgid "Let's expand our production by adding another charcoal kiln." -msgstr "" +msgstr "Rozszerzmy naszą produkcję dodając kolejny piec do węgla drzewnego." #: lang/json/recipe_from_json.py msgid "east forge wall" -msgstr "" +msgstr "wschodnia ściana kuźni" #: lang/json/recipe_from_json.py msgid "" "Let's expand work area with a log wall, and add a bookshelf for our " "reference books." msgstr "" +"Rozszerzmy obszar roboczy o ścianę z kłód i dodajmy półkę na książki na " +"nasze podręczniki." #: lang/json/recipe_from_json.py msgid "west forge wall" -msgstr "" +msgstr "zachodnia ściana kuźni" #: lang/json/recipe_from_json.py msgid "Let's expand our production by adding a log walled pottery kiln area." msgstr "" +"Rozszerzmy naszą produkcję o obszar pieca garncarskiego ze ścian z kłód." #: lang/json/recipe_from_json.py msgid "north pottery wall" -msgstr "" +msgstr "północna ściana garncarstwa" #: lang/json/recipe_from_json.py msgid "" "Let's enclose this pottery with log walls and get some more storage set up." msgstr "" +"Otoczmy tę garncarnię ścianami z kłód i przygotujmy więcej miejsca do " +"przechowywania." #: lang/json/recipe_from_json.py msgid "northwest and south pottery wall" -msgstr "" +msgstr "północno-zachodnia i południowa ściana garncarstwa" #: lang/json/recipe_from_json.py msgid "" "Let's expand the workspace for larger projects and add a drop hammer for " "productivity." msgstr "" +"Rozszerzmy przestrzeń roboczą dla większych projektów i dodajmy młot " +"kafarowy, aby zwiększyć produktywność." #: lang/json/recipe_from_json.py msgid "openair, covered work space" -msgstr "" +msgstr "plenerowa, zadaszona przestrzeń do pracy" #: lang/json/recipe_from_json.py msgid "" "We can use a metal workshop. Let's start by building a spot to protect the " "workers from the rain." msgstr "" +"Przyda się nam metalowy warsztat. Zacznijmy od zbudowania miejsca, aby " +"ochronić pracowników przed deszczem." #: lang/json/recipe_from_json.py msgid "" "Let's extend the north metal wall to the west and add some storage space." msgstr "" +"Przedłużmy północną metalową ścianę na zachód i dodajmy trochę miejsca do " +"przechowywania." #: lang/json/recipe_from_json.py msgid "" "Let's expand work area with a metal wall, and add a bookshelf for our " "reference books." msgstr "" +"Rozszerzmy obszar roboczy o metalową ścianę i dodajmy półkę na książki na " +"nasze podręczniki." #: lang/json/recipe_from_json.py msgid "" "Let's expand our production by adding a metal walled pottery kiln area." msgstr "" +"Rozszerzmy naszą produkcję o obszar pieca garncarskiego z metalowych ścian." #: lang/json/recipe_from_json.py msgid "" "Let's enclose this pottery with metal walls and get some more storage set " "up." msgstr "" +"Otoczmy tę garncarnię metalowymi ścianami i przygotujmy więcej miejsca do " +"przechowywania." #: lang/json/recipe_from_json.py msgid "" "We can use a mi-go resin workshop. Let's start by building a spot to " "protect the workers from the rain." msgstr "" +"Przyda się nam warsztat z żywicy mi-go. Zacznijmy od zbudowania miejsca, aby" +" ochronić pracowników przed deszczem." #: lang/json/recipe_from_json.py msgid "" "Let's extend the north mi-go resin wall to the west and add some storage " "space." msgstr "" +"Przedłużmy północną ścianę z żywicy mi-go na zachód i dodajmy trochę miejsca" +" do przechowywania." #: lang/json/recipe_from_json.py msgid "" "Let's expand work area with a mi-go resin wall, and add a bookshelf for our " "reference books." msgstr "" +"Rozszerzmy obszar roboczy o ścianę z żywicy mi-go i dodajmy półkę na książki" +" na nasze podręczniki." #: lang/json/recipe_from_json.py msgid "" "Let's expand our production by adding a mi-go resin walled pottery kiln " "area." msgstr "" +"Rozszerzmy naszą produkcję o obszar pieca garncarskiego z żywicy mi-go." #: lang/json/recipe_from_json.py msgid "" "Let's enclose this pottery with mi-go resin walls and get some more storage " "set up." msgstr "" +"Otoczmy tę garncarnię ścianami z żywicy mi-go i przygotujmy więcej miejsca " +"do przechowywania." #: lang/json/recipe_from_json.py msgid "" "We can use a rammed earth workshop. Let's start by building a spot to " "protect the workers from the rain." msgstr "" +"Przyda się nam warsztat z ubitej ziemi. Zacznijmy od zbudowania miejsca, aby" +" ochronić pracowników przed deszczem." #: lang/json/recipe_from_json.py msgid "" "Let's extend the north rammed earth wall to the west and add some storage " "space." msgstr "" +"Przedłużmy północną ścianę z ubitej ziemi na zachód i dodajmy trochę miejsca" +" do przechowywania." #: lang/json/recipe_from_json.py msgid "" "Let's expand work area with a rammed earth wall, and add a bookshelf for our" " reference books." msgstr "" +"Rozszerzmy obszar roboczy o ścianę z ubitej ziemi i dodajmy półkę na książki" +" na nasze podręczniki." #: lang/json/recipe_from_json.py msgid "" "Let's expand our production by adding a rammed earth walled pottery kiln " "area." msgstr "" +"Rozszerzmy naszą produkcję o obszar pieca garncarskiego z ubitej ziemi." #: lang/json/recipe_from_json.py msgid "" "Let's enclose this pottery with rammed earth walls and get some more storage" " set up." msgstr "" +"Otoczmy tę garncarnię ścianami z ubitej ziemi i przygotujmy więcej miejsca " +"do przechowywania." #: lang/json/recipe_from_json.py msgid "" "We can use a rock workshop. Let's start by building a spot to protect the " "workers from the rain." msgstr "" +"Przyda się nam kamienny warsztat. Zacznijmy od zbudowania miejsca, aby " +"ochronić pracowników przed deszczem." #: lang/json/recipe_from_json.py msgid "" "Let's extend the north rock wall to the west and add some storage space." msgstr "" +"Przedłużmy północną kamienną ścianę na zachód i dodajmy trochę miejsca do " +"przechowywania." #: lang/json/recipe_from_json.py msgid "" "Let's expand work area with a rock wall, and add a bookshelf for our " "reference books." msgstr "" +"Rozszerzmy obszar roboczy o kamienną ścianę i dodajmy półkę na książki na " +"nasze podręczniki." #: lang/json/recipe_from_json.py msgid "Let's expand our production by adding a rock walled pottery kiln area." msgstr "" +"Rozszerzmy naszą produkcję o obszar pieca garncarskiego z kamiennych ścian." #: lang/json/recipe_from_json.py msgid "" "Let's enclose this pottery with rock walls and get some more storage set up." msgstr "" +"Otoczmy tę garncarnię kamiennymi ścianami i przygotujmy więcej miejsca do " +"przechowywania." #: lang/json/recipe_from_json.py msgid "" "We can use a wattle and daub workshop. Let's start by building a spot to " "protect the workers from the rain." msgstr "" +"Przyda się nam szachulcowy warsztat. Zacznijmy od zbudowania miejsca, aby " +"ochronić pracowników przed deszczem." #: lang/json/recipe_from_json.py msgid "" "Let's extend the north wattle and daub wall to the west and add some storage" " space." msgstr "" +"Przedłużmy północną szachulcową ścianę na zachód i dodajmy trochę miejsca do" +" przechowywania." #: lang/json/recipe_from_json.py msgid "" "Let's expand work area with a wattle and daub wall, and add a bookshelf for " "our reference books." msgstr "" +"Rozszerzmy obszar roboczy o szachulcową ścianę i dodajmy półkę na książki na" +" nasze podręczniki." #: lang/json/recipe_from_json.py msgid "" "Let's expand our production by adding a wattle and daub walled pottery kiln " "area." msgstr "" +"Rozszerzmy naszą produkcję o obszar pieca garncarskiego z szachulcowych " +"ścian." #: lang/json/recipe_from_json.py msgid "" "Let's enclose this pottery with wattle and daub walls and get some more " "storage set up." msgstr "" +"Otoczmy tę garncarnię szachulcowymi ścianami i przygotujmy więcej miejsca do" +" przechowywania." #: lang/json/recipe_from_json.py msgid "" "We can use a wood panel workshop. Let's start by building a spot to protect" " the workers from the rain." msgstr "" +"Przyda się nam warsztat z drewnianych paneli. Zacznijmy od zbudowania " +"miejsca, aby ochronić pracowników przed deszczem." #: lang/json/recipe_from_json.py msgid "Let's extend the north wall to the west and add some storage space." msgstr "" +"Przedłużmy północną ścianę na zachód i dodajmy trochę miejsca do " +"przechowywania." #: lang/json/recipe_from_json.py msgid "Let's expand work area, and add a bookshelf for our reference books." msgstr "" +"Rozszerzmy obszar roboczy o ścianę i dodajmy półkę na książki na nasze " +"podręczniki." #: lang/json/recipe_from_json.py msgid "Let's expand our production by adding a pottery kiln area." -msgstr "" +msgstr "Rozszerzmy naszą produkcję o obszar pieca garncarskiego." #: lang/json/recipe_from_json.py msgid "Let's enclose this pottery and get some more storage set up." +msgstr "Otoczmy tę garncarnię i przygotujmy więcej miejsca do przechowywania." + +#: lang/json/recipe_from_json.py +msgid "Survey land for a workshop area." +msgstr "Wymierz teren na teren warsztatu." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" +"Zainstalujmy w kuźni piec do obróbki metalu. Będziemy też potrzebować kilku " +"narzędzi, więc uwzględnimy trochę miejsca na przechowywanie. To zapewni nam " +"kilka pierwszych prymitywnych przepisów rzemieślniczych." #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" +"Na zewnątrz kuźni zainstalujmy kilka pieców na węgiel drzewny. Dodamy też " +"tygiel. Pozwoli nam to na produkcję kilku dodatkowych rzeczy." #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" +"Zainstalujmy w kuźni kowadło, kilka pojemników do hartowania i stół " +"warsztatowy. Pozwoli nam to na produkcję kilku dodatkowych rzeczy." #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" +"Dodajmy do kuźni meble i kilka dodatkowych narzędzi. Pozwoli nam to na " +"produkcję kilku dodatkowych rzeczy." #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "smithing tools" +msgstr "narzędzia kowalskie" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" +"Zainstalujmy miechy do naszej kuźni i dodajmy kilka dodatkowych narzędzi. To" +" rozszerzy nasz repertuar przepisów." #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." msgstr "" +"Dodajmy do kuźni młot spadowy dla zwiększenia wydajności oraz dodajmy kilka " +"dodatkowych narzędzi. Pozwoli nam to osiągnąć nasz potencjał kowalski." #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "Let's furnish the pottery." +msgstr "Umeblujmy garncarnię." + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "meble garncarskie" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "Umeblujmy chatę szklarza." + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" +msgstr "meble szklarza" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's add a bench and a fire barrel outside the pottery for recreation." msgstr "" +"Dodajmy ławkę i beczkę na ognisko na zewnątrz garncarni dla zapewnienia " +"rozrywki." + +#: lang/json/recipe_from_json.py +msgid "recreation area" +msgstr "teren rekreacyjny" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." msgstr "" +"Przyda się nam betonowa kuźnia. Zacznijmy od zbudowania miejsca, aby " +"ochronić pracowników przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" +msgstr "betonowa ściana kuźni" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." +msgstr "" +"Zbudujmy dach z betonowych słupków, aby chronić przyszłe piece do węgla " +"drzewnego przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "concrete kiln protection" +msgstr "betonowa ochrona pieca" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "Zbudujmy ostatnią betonową sekcję kuźni." + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "ostatnia betonowa sekcja kuźni" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "Zacznijmy budować betonową sekcję garncarni." + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "garncarnia z betonowymi ścianami" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." msgstr "" +"Przyda się nam kuźnia z kłód. Zacznijmy od zbudowania miejsca, aby ochronić " +"pracowników przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "ściana z kłód kuźni" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." msgstr "" +"Zbudujmy dach ze słupków z kłód, aby chronić przyszłe piece do węgla " +"drzewnego przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "ochrona pieca z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "Zbudujmy ostatnią sekcję kuźni z kłód." + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "ostatnia sekcja kuźni z kłód" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "Zacznijmy budować sekcję garncarni z kłód." + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "garncarnia ze ścianami z kłód" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." msgstr "" +"Przyda się nam metalowa kuźnia. Zacznijmy od zbudowania miejsca, aby " +"ochronić pracowników przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "metalowa ściana kuźni" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." msgstr "" +"Zbudujmy dach z metalowych słupków, aby chronić przyszłe piece do węgla " +"drzewnego przed deszczem." #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "metal kiln protection" +msgstr "metalowa ochrona pieca" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "Zbudujmy ostatnią metalową sekcję kuźni." + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "ostatnia metalowa sekcja kuźni" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "Zacznijmy budować metalową sekcję garncarni." + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "garncarnia z metalowymi ścianami" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" +"Przyda się nam kuźnia z żywicy mi-go. Zacznijmy od zbudowania miejsca, aby " +"ochronić pracowników przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "ściana kuźni z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" +"Zbudujmy dach ze słupków z żywicy mi-go, aby chronić przyszłe piece do węgla" +" drzewnego przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "ochrona pieca z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "Zbudujmy ostatnią sekcję kuźni z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "ostatnia sekcja kuźni z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "Zacznijmy budować sekcję garncarni z żywicy mi-go." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "garncarnia ze ścianami z żywicy mi-go" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" +"Przyda się nam kuźnia z ubitej ziemi. Zacznijmy od zbudowania miejsca, aby " +"ochronić pracowników przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "ściana kuźni z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" +"Zbudujmy dach ze słupków z ubitej ziemi, aby chronić przyszłe piece do węgla" +" drzewnego przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "ochrona pieca z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "Zbudujmy ostatnią sekcję kuźni z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "ostatnia sekcja kuźni z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "Zacznijmy budować sekcję garncarni z ubitej ziemi." + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "garncarnia ze ścianami z ubitej ziemi" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" +"Przyda się nam kamienna kuźnia. Zacznijmy od zbudowania miejsca, aby " +"ochronić pracowników przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "kamienna ściana kuźni" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" +"Zbudujmy dach z kamiennych słupków, aby chronić przyszłe piece do węgla " +"drzewnego przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "kamienna ochrona pieca" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "Zbudujmy ostatnią kamienną sekcję kuźni." + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "ostatnia kamienna sekcja kuźni" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "Zacznijmy budować kamienną sekcję garncarni." + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "garncarnia z kamiennymi ścianami" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" +"Przyda się nam szachulcowa kuźnia. Zacznijmy od zbudowania miejsca, aby " +"ochronić pracowników przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "szachulcowa ściana kuźni" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." msgstr "" +"Zbudujmy dach z szachulcowych słupków, aby chronić przyszłe piece do węgla " +"drzewnego przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "szachulcowa ochrona pieca" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "Zbudujmy ostatnią szachulcową sekcję kuźni." + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "ostatnia szachulcowa sekcja kuźni" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "Zacznijmy budować szachulcową sekcję garncarni." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "garncarnia z szachulcowymi ścianami" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" +"Przyda się nam kuźnia z drewnianych paneli. Zacznijmy od zbudowania miejsca," +" aby ochronić pracowników przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "ściana kuźni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" +"Zbudujmy dach ze słupków z drewnianych paneli, aby chronić przyszłe piece do" +" węgla drzewnego przed deszczem." + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "ochrona pieca z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "Zbudujmy ostatnią sekcję kuźni z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "ostatnia sekcja kuźni z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "Zacznijmy budować sekcję garncarni z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "garncarnia ze ścianami z drewnianych paneli" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "Zacznijmy budować domek szklarza z drewnianych paneli." + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" +msgstr "chata szklarza ze ścianami z drewnianych paneli" #: lang/json/recipe_from_json.py msgid "Buttery Duck Bites" -msgstr "Kacze Kęski w Maśle" +msgstr "kacze kęski w maśle" #: lang/json/recipe_from_json.py msgid "Candied Onions and Giblets" -msgstr "Kandyzowana Cebulka z Podrobami" +msgstr "kandyzowana cebulka z podrobami" #: lang/json/recipe_from_json.py msgid "Spaghetti Luchetto" -msgstr "Spaghetti Luchetto" +msgstr "spaghetti Luchetto" #: lang/json/recipe_from_json.py msgid "athletics (beginner)" -msgstr "" +msgstr "atletyka (początkujący)" #: lang/json/recipe_from_json.py msgid "" "Practice some basic calisthenics like pushups, squats, dips and crunches." msgstr "" +"Ćwicz kilka podstawowych ćwiczeń z zakresu kalisteniki, takich jak pompki, " +"przysiady, wykroki i brzuszki." #: lang/json/recipe_from_json.py msgid "athletics (intermediate)" -msgstr "" +msgstr "atletyka (średniozaawansowany)" #: lang/json/recipe_from_json.py msgid "Practice calisthenics using specialized equipment." -msgstr "" +msgstr "Ćwicz kalistenikę z wykorzystaniem specjalistycznego sprzętu." #: lang/json/recipe_from_json.py msgid "computer (beginner)" -msgstr "" +msgstr "komputery (początkujący)" #: lang/json/recipe_from_json.py msgid "Practice the basics of using a computing device." -msgstr "" +msgstr "Ćwicz podstawy posługiwania się urządzeniem komputerowym." #: lang/json/recipe_from_json.py msgid "computer (intermediate)" -msgstr "" +msgstr "komputery (średniozaawansowany)" #: lang/json/recipe_from_json.py msgid "" "Practice using the command line, writing and running scripts making use of " "common algorithms and data structures." msgstr "" +"Ćwicz posługiwanie się wierszem poleceń, pisanie i uruchamianie skryptów " +"wykorzystujących powszechnie stosowane algorytmy i struktury danych." #: lang/json/recipe_from_json.py msgid "computer (advanced)" -msgstr "" +msgstr "komputery (zaawansowany)" #: lang/json/recipe_from_json.py msgid "" "Practice the use of software exploits to gain elevated privileges on " "computer systems." msgstr "" +"Ćwicz wykorzystanie luk w oprogramowaniu w celu uzyskania podwyższonych " +"uprawnień w systemach komputerowych." #: lang/json/recipe_from_json.py msgid "lockpicking (improvised)" -msgstr "" +msgstr "otwieranie zamków (improwizowane)" #: lang/json/recipe_from_json.py msgid "Practice picking simple locks." -msgstr "" +msgstr "Ćwicz otwieranie wytrychem prostych zamków." #: lang/json/recipe_from_json.py lang/json/tool_quality_from_json.py msgid "lockpicking" @@ -227646,15 +237998,16 @@ msgstr "otwieranie zamków" #: lang/json/recipe_from_json.py msgid "electronics soldering" -msgstr "" +msgstr "lutowanie elektroniki" #: lang/json/recipe_from_json.py msgid "Practice soldering and de-soldering wires and electronic components." msgstr "" +"Ćwicz lutowanie i odlutowywanie przewodów i elementów elektronicznych." #: lang/json/recipe_from_json.py msgid "electrical circuit design" -msgstr "" +msgstr "teoria obwodów elektrycznych" #: lang/json/recipe_from_json.py msgid "" @@ -227662,78 +238015,93 @@ msgid "" "battery-powered motor or light bulb, and measuring their properties to " "understand the flow of current." msgstr "" +"Ćwicz projektowanie i budowanie prostych obwodów elektrycznych, takich jak " +"silnik zasilany baterią lub żarówka, oraz mierzenie ich właściwości, aby " +"zrozumieć przepływ prądu." #: lang/json/recipe_from_json.py msgid "semiconductor circuits" -msgstr "" +msgstr "obwody półprzewodnikowe" #: lang/json/recipe_from_json.py msgid "" "Practice prototyping circuits using transistors for switching or amplifying " "electrical signals." msgstr "" +"Ćwicz prototypowanie obwodów wykorzystujących tranzystory do przełączania " +"lub wzmacniania sygnałów elektrycznych." #: lang/json/recipe_from_json.py msgid "integrated circuits" -msgstr "" +msgstr "układy scalone" #: lang/json/recipe_from_json.py msgid "" "Practice building electronic circuits using standard IC chips for voltage " "regulation, timing, logic, and simple processing." msgstr "" +"Ćwicz budowanie obwodów elektronicznych z wykorzystaniem standardowych " +"układów scalonych do regulacji napięcia, odmierzania czasu, logiki i " +"prostego przetwarzania." #: lang/json/recipe_from_json.py msgid "fletching" -msgstr "lotka do strzał" +msgstr "wyrabianie strzał" #: lang/json/recipe_from_json.py msgid "" "Practice fletching by modifying, studying and testing the aerodynamics of " "some arrows or bolts." msgstr "" +"Ćwiczy wykonywanie strzał modyfikując, badając i testując aerodynamikę " +"niektórych strzał lub bełtów." #: lang/json/recipe_from_json.py msgid "carving" -msgstr "" +msgstr "struganie" #: lang/json/recipe_from_json.py msgid "Practice carving different forms and shapes in a piece of wood." -msgstr "" +msgstr "Ćwicz struganie różnych form i kształtów w kawałku drewna." #: lang/json/recipe_from_json.py msgid "basic carpentry" -msgstr "" +msgstr "podstawowe stolarstwo" #: lang/json/recipe_from_json.py msgid "" "Practice basic carpentry by cutting, shaping and uniting some planks or " "sticks with nails." msgstr "" +"Ćwicz podstawowe prace stolarskie, tnąc, kształtując i łącząc gwoździami " +"deski lub patyki." #: lang/json/recipe_from_json.py msgid "melee (beginner)" -msgstr "" +msgstr "walka wręcz (początkujący)" #: lang/json/recipe_from_json.py msgid "" "Practice close quarters combat with and without weapons against an imaginary" " opponent." msgstr "" +"Ćwicz walkę wręcz z bronią i bez broni z wyimaginowanym przeciwnikiem." #: lang/json/recipe_from_json.py msgid "cutting (beginner)" -msgstr "" +msgstr "cięcie (początkujący)" #: lang/json/recipe_from_json.py msgid "" "Practice the use of the sword and similar weapons against a training dummy." " You will need to make repairs to the dummy while you train." msgstr "" +"Ćwicz użycie miecza i podobnych broni przeciwko manekinowi treningowemu. " +"Będziesz musiał dokonać napraw manekina podczas treningu." #: lang/json/recipe_from_json.py msgid "cutting (intermediate)" -msgstr "" +msgstr "cięcie (średniozaawansowany)" #: lang/json/recipe_from_json.py msgid "" @@ -227741,711 +238109,771 @@ msgid "" "armored training dummy. You will need to make repairs to the dummy while " "you train." msgstr "" +"Ćwicz zaawansowaną obsługę miecza i podobnych broni przeciwko opancerzonemu " +"manekinowi treningowemu. Podczas treningu będziesz musiał dokonywać napraw " +"manekina." #: lang/json/recipe_from_json.py msgid "bashing (beginner)" -msgstr "" +msgstr "miażdżenie (początkujący)" #: lang/json/recipe_from_json.py msgid "" "Practice the use of batons and similar weapons against a training dummy. " "You will need to make repairs to the dummy while you train." msgstr "" +"Ćwicz użycie pałek i podobnych broni przeciwko manekinowi treningowemu. " +"Podczas treningu będziesz musiał dokonywać napraw manekina." #: lang/json/recipe_from_json.py msgid "bashing (intermediate)" -msgstr "" +msgstr "miażdżenie (średniozaawansowany)" #: lang/json/recipe_from_json.py msgid "" "Practice advanced handling of bashing weapons against an armored training " "dummy. You will need to make repairs to the dummy while you train." msgstr "" +"Ćwicz zaawansowaną obsługę broni miażdżących przeciwko opancerzonemu " +"manekinowi treningowemu. Podczas treningu będziesz musiał dokonywać napraw " +"manekina." #: lang/json/recipe_from_json.py msgid "stabbing (beginner)" -msgstr "" +msgstr "kłucie (początkujący)" #: lang/json/recipe_from_json.py msgid "" "Practice the use of spears and similar stabbing weapons against a training " "dummy. You will need to make repairs to the dummy while you train." msgstr "" +"Poćwicz używanie włóczni i podobnych broni kłujących przeciwko manekinowi " +"treningowemu. Podczas treningu będziesz musiał dokonywać napraw manekina." #: lang/json/recipe_from_json.py msgid "stabbing (intermediate)" -msgstr "" +msgstr "kłucie (średniozaawansowany)" #: lang/json/recipe_from_json.py msgid "" "Practice advanced handling of stabbing weapons against an armored training " "dummy. You will need to make repairs to the dummy while you train." msgstr "" +"Ćwicz zaawansowaną obsługę broni kłutej przeciwko opancerzonemu manekinowi " +"treningowemu. Podczas treningu będziesz musiał dokonywać napraw manekina." #: lang/json/recipe_from_json.py msgid "unarmed (beginner)" -msgstr "" +msgstr "walka bez broni (początkujący)" #: lang/json/recipe_from_json.py msgid "Practice some unarmed moves against a training dummy or punching bag." msgstr "" +"Ćwicz kilka ruchów bez broni przeciwko manekinowi treningowemu lub workowi " +"treningowemu." #: lang/json/recipe_from_json.py msgid "dancing" -msgstr "" +msgstr "taniec" #: lang/json/recipe_from_json.py msgid "Practice some dancing moves with your imaginary partner." -msgstr "" +msgstr "Ćwicz kilka ruchów tanecznych z wyimaginowanym partnerem." #: lang/json/recipe_from_json.py msgid "dodge (beginner)" -msgstr "" +msgstr "uniki (początkujący)" #: lang/json/recipe_from_json.py msgid "" "Practice your dodging by throwing a ball at a wall and dodging it when it " "bounces off." msgstr "" +"Ćwicz uniki, rzucając piłką w ścianę i unikając jej, gdy się od niej odbije." #: lang/json/recipe_from_json.py msgid "social (beginner)" -msgstr "" +msgstr "towarzyskość (początkujący)" #: lang/json/recipe_from_json.py msgid "" "Practice speaking in front of a mirror to improve your poise and eloquence " "and project confidence." msgstr "" +"Ćwicz przemawianie przed lustrem, aby poprawić swoje opanowanie, elokwencję " +"i pewność siebie." #: lang/json/recipe_from_json.py msgid "social (intermediate)" -msgstr "" +msgstr "towarzyskość (średniozaawansowany)" #: lang/json/recipe_from_json.py msgid "" "Practice advanced persuasion and negotiation techniques while acting out " "both sides of a dialogue in front of a mirror." msgstr "" +"Ćwicz zaawansowane techniki perswazji i negocjacji, odgrywając przed lustrem" +" obie strony dialogu." #: lang/json/recipe_from_json.py msgid "leatherworking (beginner)" -msgstr "" +msgstr "kaletnictwo (początkujący)" #: lang/json/recipe_from_json.py msgid "" "Practice basic leatherworking skills by cutting and punching holes in " "leather, and stitching together leather patches." msgstr "" +"Ćwiczenie podstawowych umiejętności kuśnierskich poprzez wycinanie i " +"wybijanie dziur w skórze oraz zszywanie skórzanych łat." #: lang/json/recipe_group_from_json.py msgid " Craft: Tinder" -msgstr " Wytwórz: Rozpałka" +msgstr " Wytwórz: rozpałka" #: lang/json/recipe_group_from_json.py msgid " Cook: Meat, Cooked" -msgstr "Gotuj: Mięso, Gotowane" +msgstr " Gotuj: mięso, gotowane" #: lang/json/recipe_group_from_json.py msgid " Cook: Fish, Cooked" -msgstr "Gotuj: Ryba: Gotowana" +msgstr " Gotuj: ryba, gotowana" #: lang/json/recipe_group_from_json.py msgid " Cook: Veggy, Cooked" -msgstr "Gotuj: Warzywa, Gotowane" +msgstr " Gotuj: warzywa, gotowane" #: lang/json/recipe_group_from_json.py msgid " Cook: Egg, Boiled" -msgstr "Gotuj: Jajko, Gotowane" +msgstr " Gotuj: jajko, gotowane" #: lang/json/recipe_group_from_json.py msgid " Cook: Starch" -msgstr "Gotuj: Skrobia" +msgstr " Gotuj: skrobia" #: lang/json/recipe_group_from_json.py msgid " Cook: Cattail Starch" -msgstr " Gotuj: Skrobia z Pałki wodnej" +msgstr " Gotuj: skrobia z pałki wodnej" #: lang/json/recipe_group_from_json.py msgid " Cook: Flatbread" -msgstr "Gotuj: Podpłomyk" +msgstr " Gotuj: podpłomyk" #: lang/json/recipe_group_from_json.py msgid " Cook: Veggy, Cooked Wild" -msgstr "Gotuj: Warzywa, Gotowane Dzikie" +msgstr " Gotuj: warzywa, gotowane dzikie" #: lang/json/recipe_group_from_json.py msgid " Cook: Flour" -msgstr "Gotuj: Mąka" +msgstr " Gotuj: mąka" #: lang/json/recipe_group_from_json.py msgid " Cook: Salt" -msgstr "Gotuj: Sól" +msgstr " Gotuj: sól" #: lang/json/recipe_group_from_json.py msgid " Cook: Bread" -msgstr "Gotuj: Chleb" +msgstr " Gotuj: chleb" #: lang/json/recipe_group_from_json.py msgid " Cook: Fruit Leather" -msgstr "Gotuj: Bakalie" +msgstr " Gotuj: skórki owoców" #: lang/json/recipe_group_from_json.py msgid " Cook: Meat Jerky" -msgstr "Gotuj: Suszone Mięso" +msgstr " Gotuj: suszone mięso" #: lang/json/recipe_group_from_json.py msgid " Cook: Mushroom, Cooked" -msgstr "Gotuj: Grzyby, Gotowane" +msgstr " Gotuj: grzyby, gotowane" #: lang/json/recipe_group_from_json.py msgid " Cook: Lard" -msgstr "Gotuj: Smalec" +msgstr " Gotuj: smalec" #: lang/json/recipe_group_from_json.py msgid " Cook: Cornmeal" -msgstr "Gotuj: Mąka Kukurydziana" +msgstr " Gotuj: mąka kukurydziana" #: lang/json/recipe_group_from_json.py msgid " Cook: Meat, Smoked" -msgstr "Gotuj: Mięso, Wędzone" +msgstr " Gotuj: mięso, wędzone" #: lang/json/recipe_group_from_json.py msgid " Cook: Fish, Smoked" -msgstr "Gotuj: Ryba, Wędzona" +msgstr " Gotuj: ryba, wędzona" #: lang/json/recipe_group_from_json.py msgid " Cook: Mushroom, Dried" -msgstr "Gotuj: Grzyby, Suszone" +msgstr " Gotuj: grzyby, suszone" #: lang/json/recipe_group_from_json.py msgid " Cook: Fruit, Dehydrated" -msgstr "Gotuj: Owoce, Odwodnione" +msgstr " Gotuj: owoce, odwodnione" #: lang/json/recipe_group_from_json.py msgid " Cook: Sausage" -msgstr "Gotuj: Kiełbasa" +msgstr " Gotuj: kiełbasa" #: lang/json/recipe_group_from_json.py msgid " Cook: Sausage, Wasteland" -msgstr "Gotuj: Kiełbasa z Pustkowi" +msgstr " Gotuj: kiełbasa, pustkowia" #: lang/json/recipe_group_from_json.py msgid " Cook: Meat Pie" -msgstr "Gotuj: Mięsny Placek" +msgstr " Gotuj: mięsny placek" #: lang/json/recipe_group_from_json.py msgid " Cook: Veggy Pie" -msgstr "Gotuj: Warzywny Placek" +msgstr " Gotuj: warzywny placek" #: lang/json/recipe_group_from_json.py msgid " Cook: Sugar" -msgstr "Gotuj: Cukier" +msgstr " Gotuj: cukier" #: lang/json/recipe_group_from_json.py msgid " Cook: Hardtack" -msgstr "Gotuj: Suchary" +msgstr " Gotuj: suchary" #: lang/json/recipe_group_from_json.py msgid " Cook: Veggy, Pickled" -msgstr "Gotuj: Warzywa, Peklowane" +msgstr " Gotuj: warzywa, peklowane" #: lang/json/recipe_group_from_json.py msgid " Cook: Cheese, Hard" -msgstr "Gotuj: Ser, Twardy" +msgstr " Gotuj: ser, twardy" #: lang/json/recipe_group_from_json.py msgid " Cook: Pemmican" -msgstr "Gotuj: Pemikan" +msgstr " Gotuj: pemikan" #: lang/json/recipe_group_from_json.py msgid " Cook: Veggy Aspic" -msgstr "Gotuj: Warzywna Galareta" +msgstr " Gotuj: warzywna galareta" #: lang/json/recipe_group_from_json.py msgid " Cook: Meat, Canned" -msgstr "Gotuj: Mięso, Puszkowane" +msgstr " Gotuj: mięso, puszkowane" #: lang/json/recipe_group_from_json.py msgid " Cook: Meat Aspic" -msgstr "Gotuj: Mięsna Galareta" +msgstr " Gotuj: mięsna galareta" #: lang/json/recipe_group_from_json.py msgid " Cook: Kompot" -msgstr " Gotuj: Kompot" +msgstr " Gotuj: kompot" #: lang/json/recipe_group_from_json.py msgid " Craft: Salt from salt water" -msgstr " Wytwórz: Sól ze słonej wody" +msgstr " Wytwórz: sól ze słonej wody" #: lang/json/recipe_group_from_json.py msgid " Cook: Fish, Salted" -msgstr "Gotuj: Ryba, Solona" +msgstr " Gotuj: ryba, solona" #: lang/json/recipe_group_from_json.py msgid " Brew: Fruit Wine Must" -msgstr " Warz: Moszcz Wina Owocowego" +msgstr " Warz: moszcz wina owocowego" #: lang/json/recipe_group_from_json.py msgid " Brew: Spiced Wine Must" -msgstr " Warz: Moszcz Wina Korzennego" +msgstr " Warz: moszcz wina korzennego" #: lang/json/recipe_group_from_json.py msgid " Brew: Dandelion Wine Must" -msgstr " Warz: Moszcz Wina z Mleczy" +msgstr " Warz: moszcz wina z mleczy" #: lang/json/recipe_group_from_json.py msgid " Brew: Burdock Wine Must" -msgstr " Warz: Moszcz Wina z Łopianu" +msgstr " Warz: moszcz wina z łopianu" #: lang/json/recipe_group_from_json.py msgid " Brew: Pine Wine Must" -msgstr " Warz: Moszcz Wina Sosnowego" +msgstr " Warz: moszcz wina sosnowego" #: lang/json/recipe_group_from_json.py msgid " Brew: Beer" -msgstr " Warz: Piwo" +msgstr " Warz: piwo" #: lang/json/recipe_group_from_json.py msgid " Distill: Brandy" -msgstr " Destyluj: Brandy" +msgstr " Destyluj: brandy" #: lang/json/recipe_group_from_json.py msgid " Distill: Gin" -msgstr " Destyluj: Gin" +msgstr " Destyluj: gin" #: lang/json/recipe_group_from_json.py msgid " Distill: Vodka" -msgstr " Destyluj: Wódkę" +msgstr " Destyluj: wódka" #: lang/json/recipe_group_from_json.py msgid " Distill: Rum" -msgstr " Destyluj: Rum" +msgstr " Destyluj: rum" #: lang/json/recipe_group_from_json.py msgid " Craft: Pointy Sticks" -msgstr "Wytwórz: Naostrzone Kije" +msgstr " Wytwórz: zaostrzone kije" #: lang/json/recipe_group_from_json.py msgid " Craft: Wooden Panel, Nailed Planks" -msgstr " Wytwórz: Drewniany Panel, Deski z Gwoźdźmi" +msgstr " Wytwórz: drewniany panel, deski z gwoźdźmi" #: lang/json/recipe_group_from_json.py msgid " Craft: Wooden Panel, Wooden Beams" -msgstr " Wytwórz: Drewniany Panel, Drewniane Dźwigary" +msgstr " Wytwórz: drewniany panel, drewniane dźwigary" #: lang/json/recipe_group_from_json.py msgid " Craft: Wooden Beam" -msgstr " Wytwórz: Drewniany Dźwigar" +msgstr " Wytwórz: drewniany dźwigar" #: lang/json/recipe_group_from_json.py msgid " Craft: Wild Veggy Stems" -msgstr "Wytwórz: Sadzonki Dzikich Warzyw" +msgstr " Wytwórz: sadzonki dzikich warzyw" #: lang/json/recipe_group_from_json.py msgid " Craft: Dandelion Seeds" -msgstr "Wytwórz: Nasiona Mleczy" +msgstr " Wytwórz: nasiona mleczy" #: lang/json/recipe_group_from_json.py msgid " Craft: Potato, Starter" -msgstr "Wytwórz: Ziemniak, Sadzonka" +msgstr " Wytwórz: ziemniak, sadzonka" #: lang/json/recipe_group_from_json.py msgid " Craft: Buckwheat Seeds" -msgstr "Wytwórz: Nasiona Gryki" +msgstr " Wytwórz: nasiona gryki" #: lang/json/recipe_group_from_json.py msgid " Craft: Copper, Scrap" -msgstr "Wytwórz: Miedź, Złom" +msgstr " Wytwórz: miedź, złom" #: lang/json/recipe_group_from_json.py msgid " Craft: Charcoal" -msgstr "Wytwórz: Węgiel Drzewny" +msgstr " Wytwórz: węgiel drzewny" #: lang/json/recipe_group_from_json.py msgid " Craft: Spike" -msgstr "Wytwórz: Ostrze" +msgstr " Wytwórz: kolec" #: lang/json/recipe_group_from_json.py msgid " Craft: Glass Caltrops" -msgstr " Wytwórz: Szklana Kolczatka" +msgstr " Wytwórz: szklana kolczatka" #: lang/json/recipe_group_from_json.py msgid " Craft: Steel, Chunk" -msgstr "Wytwórz: Żelazo, Kawał" +msgstr " Wytwórz: żelazo, kawał" #: lang/json/recipe_group_from_json.py msgid " Craft: Anvil" -msgstr "Wytwórz: Kowadło" +msgstr " Wytwórz: kowadło" #: lang/json/recipe_group_from_json.py msgid " Craft: Steel, Lump" -msgstr "Wytwórz: Stal, Kawał" +msgstr " Wytwórz: stal, kawał" #: lang/json/recipe_group_from_json.py msgid " Craft: Knife, Copper" -msgstr "Wytwórz: Nóż, Miedziany" +msgstr " Wytwórz: nóż, miedziany" #: lang/json/recipe_group_from_json.py msgid " Craft: Sword, Crude" -msgstr "Wytwórz: Miecz, Toporny" +msgstr " Wytwórz: miecz, toporny" #: lang/json/recipe_group_from_json.py msgid " Craft: Pot, Copper" -msgstr "Wytwórz: Garnek, Miedziany" +msgstr " Wytwórz: garnek, miedziany" #: lang/json/recipe_group_from_json.py msgid " Craft: Crossbow Bolt, Steel" -msgstr "Wytwórz: Bełt, Stalowy" +msgstr " Wytwórz: bełt, stalowy" #: lang/json/recipe_group_from_json.py msgid " Craft: Armor, Scrap Suit" -msgstr "Wytwórz: Zbroja, Strój ze Złomu" +msgstr " Wytwórz: zbroja, strój ze złomu" #: lang/json/recipe_group_from_json.py msgid " Craft: Armor, Scrap Helmet" -msgstr " Wytwórz: Zbroja, Hełm ze Złomu" +msgstr " Wytwórz: zbroja, hełm ze złomu" #: lang/json/recipe_group_from_json.py msgid " Craft: Armor, Scrap Cuirass" -msgstr " Wytwórz: Zbroja, Kirys ze Złomu" +msgstr " Wytwórz: zbroja, kirys ze złomu" #: lang/json/recipe_group_from_json.py msgid " Craft: Armor, Scrap Arm Guards" -msgstr " Wytwórz: Zbroja, Ochraniacze Rąk ze Złomu" +msgstr " Wytwórz: zbroja, ochraniacze rąk ze złomu" #: lang/json/recipe_group_from_json.py msgid " Craft: Armor, Scrap Leg Guards" -msgstr " Wytwórz: Zbroja, Ochraniacze Nóg ze Złomu" +msgstr " Wytwórz: zbroja, ochraniacze nóg ze złomu" #: lang/json/recipe_group_from_json.py msgid " Craft: Armor, Scrap Boots" -msgstr " Wytwórz: Zbroja, Buty ze Złomu" +msgstr " Wytwórz: zbroja, buty ze złomu" #: lang/json/recipe_group_from_json.py msgid " Craft: Axe, Copper" -msgstr "Wytwórz: Siekiera, Miedziana" +msgstr " Wytwórz: siekiera, miedziana" #: lang/json/recipe_group_from_json.py msgid " Craft: Spear, Copper" -msgstr "Wytwórz: Włócznia, Miedziana" +msgstr " Wytwórz: włócznia, miedziana" #: lang/json/recipe_group_from_json.py msgid " Craft: Metalworking Chisel" -msgstr "Wytwórz: Dłuto do Metalu" +msgstr " Wytwórz: dłuto do metalu" #: lang/json/recipe_group_from_json.py msgid " Craft: Hammer" -msgstr "Wytwórz: Młotek" +msgstr " Wytwórz: młotek" #: lang/json/recipe_group_from_json.py msgid " Craft: Metal Tongs" -msgstr "Wytwórz: Metalowe Obcęgi" +msgstr " Wytwórz: metalowe obcęgi" #: lang/json/recipe_group_from_json.py msgid " Craft: Nail" -msgstr "Wytwórz: Gwóźdź" +msgstr " Wytwórz: gwóźdź" #: lang/json/recipe_group_from_json.py msgid " Craft: Wire" -msgstr "Wytwórz: Drut" +msgstr " Wytwórz: drut" #: lang/json/recipe_group_from_json.py msgid " Craft: Swage and Die Set" -msgstr "Wytwórz: Foremnik Kowalski i Matryce" +msgstr " Wytwórz: foremnik kowalski i matryce" #: lang/json/recipe_group_from_json.py msgid " Craft: Blade" -msgstr "Wytwórz: Ostrze, Długie" +msgstr " Wytwórz: ostrze" #: lang/json/recipe_group_from_json.py msgid " Craft: Bearings" -msgstr "Wytwórz: Łożyska" +msgstr " Wytwórz: łożyska" #: lang/json/recipe_group_from_json.py msgid " Craft: Caltrops" -msgstr "Wytwórz: Kolczatka" +msgstr " Wytwórz: kolczatki" #: lang/json/recipe_group_from_json.py msgid " Craft: Hand Drill" -msgstr "Wytwórz: Wiertło, Ręczne" +msgstr " Wytwórz: wiertło, ręczne" #: lang/json/recipe_group_from_json.py msgid " Craft: Sheet Metal" -msgstr "Wytwórz: Blacha Metalowa" +msgstr " Wytwórz: blacha" #: lang/json/recipe_group_from_json.py msgid " Craft: Chain" -msgstr "Wytwórz: Łańcuch" +msgstr " Wytwórz: łańcuch" #: lang/json/recipe_group_from_json.py msgid " Craft: Shovel" -msgstr "Wytwórz: Szpadel" +msgstr " Wytwórz: szpadel" #: lang/json/recipe_group_from_json.py msgid " Craft: Rebar" -msgstr "Wytwórz: Pręt Zbrojeniowy" +msgstr " Wytwórz: pręt zbrojeniowy" #: lang/json/recipe_group_from_json.py msgid " Craft: Gold Ring" -msgstr " Wytwórz: Złoty Pierścień" +msgstr " Wytwórz: złoty pierścień" #: lang/json/recipe_group_from_json.py msgid " Craft: Hammer, Sledge" -msgstr "Wytwórz: Młot, Dwuręczny" +msgstr " Wytwórz: młot, dwuręczny" #: lang/json/recipe_group_from_json.py msgid " Craft: Knife, Combat" -msgstr "Wytwórz: Nóż, Bojowy" +msgstr " Wytwórz: nóż, bojowy" #: lang/json/recipe_group_from_json.py msgid " Craft: Spear, Steel" -msgstr "Wytwórz: Włócznia, Stalowa" +msgstr " Wytwórz: włócznia, stalowa" #: lang/json/recipe_group_from_json.py msgid " Craft: Machete" -msgstr "Wytwórz: Maczeta" +msgstr " Wytwórz: maczeta" #: lang/json/recipe_group_from_json.py msgid " Craft: Pipe" -msgstr "Wytwórz: Rura" +msgstr " Wytwórz: rura" #: lang/json/recipe_group_from_json.py msgid " Craft: Screwdriver" -msgstr " Wytwórz: Śrubokręt" +msgstr " Wytwórz: śrubokręt" #: lang/json/recipe_group_from_json.py msgid " Craft: Axe, Throwing" -msgstr "Wytwórz: Siekiera do Rzucania" +msgstr " Wytwórz: siekiera do rzucania" #: lang/json/recipe_group_from_json.py msgid " Craft: Wrench" -msgstr "Wytwórz: Klucz Nastawny" +msgstr " Wytwórz: klucz nastawny" #: lang/json/recipe_group_from_json.py msgid " Craft: Hatchet" -msgstr "Wytwórz: Toporek" +msgstr " Wytwórz: toporek" #: lang/json/recipe_group_from_json.py msgid " Craft: Knife, Throwing" -msgstr "Wytwórz: Nóż do Rzucania" +msgstr " Wytwórz: nóż do rzucania" #: lang/json/recipe_group_from_json.py msgid " Craft: Crowbar" -msgstr "Wytwórz: Łom" +msgstr " Wytwórz: łom" #: lang/json/recipe_group_from_json.py msgid " Craft: Pot" -msgstr "Wytwórz: Garnek" +msgstr " Wytwórz: garnek" #: lang/json/recipe_group_from_json.py msgid " Craft: Hoe" -msgstr "Wytwórz: Motyka" +msgstr " Wytwórz: motyka" #: lang/json/recipe_group_from_json.py msgid " Craft: Pliers" -msgstr "Wytwórz: Obcęgi" +msgstr " Wytwórz: szczypce" #: lang/json/recipe_group_from_json.py msgid " Craft: Halberd" -msgstr "Wytwórz: Halabarda" +msgstr " Wytwórz: halabarda" #: lang/json/recipe_group_from_json.py msgid " Craft: Armor, Cuirass" -msgstr "Wytwórz: Zbroja, Kirys" +msgstr " Wytwórz: zbroja, kirys" #: lang/json/recipe_group_from_json.py msgid " Craft: Knife, Pocket" -msgstr "Wytwórz: Nóż, Kieszonkowy" +msgstr " Wytwórz: nóż, kieszonkowy" #: lang/json/recipe_group_from_json.py msgid " Craft: Hammer, War" -msgstr "Wytwórz: Młot Bojowy" +msgstr " Wytwórz: młot, bojowy" #: lang/json/recipe_group_from_json.py msgid " Craft: Helm, Great" -msgstr "Wytwórz: Hełm, Wielki" +msgstr " Wytwórz: hełm, wielki" #: lang/json/recipe_group_from_json.py msgid " Craft: Armor, Plate" -msgstr "Wytwórz: Zbroja, Płytowa" +msgstr " Wytwórz: zbroja, płytowa" #: lang/json/recipe_group_from_json.py msgid " Craft: Sword, Broadsword" -msgstr "Wytwórz: Miecz, Szeroki" +msgstr " Wytwórz: miecz, szeroki" #: lang/json/recipe_group_from_json.py msgid " Craft: Sword, Scimitar" -msgstr "Wytwórz: Miecz, Bułat" +msgstr " Wytwórz: miecz, bułat" #: lang/json/recipe_group_from_json.py msgid " Craft: Axe, Fire" -msgstr "Wytwórz: Siekiera, Strażacka" +msgstr " Wytwórz: siekiera, strażacka" #: lang/json/recipe_group_from_json.py msgid " Craft: Hacksaw" -msgstr "Wytwórz: Piła do Metalu" +msgstr " Wytwórz: piła do metalu" #: lang/json/recipe_group_from_json.py msgid " Craft: Woodsaw" -msgstr "Wytwórz: Piła do Drewna" +msgstr " Wytwórz: piła do drewna" #: lang/json/recipe_group_from_json.py msgid " Craft: Spear, Awl Pike" -msgstr "Wytwórz: Włócznia, Pika Szydło" +msgstr " Wytwórz: włócznia, szydło" #: lang/json/recipe_group_from_json.py msgid " Craft: Sword, Rapier" -msgstr "Wytwórz: Miecz, Rapier" +msgstr " Wytwórz: miecz, rapier" #: lang/json/recipe_group_from_json.py msgid " Craft: Halligan Bar" -msgstr "Wytwórz: Strażackie Narzędzie Ratownicze" +msgstr " Wytwórz: strażackie narzędzie ratownicze" #: lang/json/recipe_group_from_json.py msgid " Craft: Sword, Zweihander" -msgstr "Wytwórz: Miecz, Dwuręczny" +msgstr " Wytwórz: miecz, dwuręczny" #: lang/json/recipe_group_from_json.py msgid " Craft: Pickaxe" -msgstr "Wytwórz: Kilof" +msgstr " Wytwórz: kilof" #: lang/json/recipe_group_from_json.py msgid " Craft: Sheet Metal, Drop Hammer" -msgstr "Wytwórz: Blacha Metalowa, Młot Parowy" +msgstr " Wytwórz: blacha, młot kafarowy" #: lang/json/recipe_group_from_json.py msgid " Craft: Chain, Drop Hammer" -msgstr "Wytwórz: Łańcuch, Młot Parowy" +msgstr " Wytwórz: łańcuch, młot kafarowy" #: lang/json/recipe_group_from_json.py msgid " Craft: Nail, Drop Hammer" -msgstr "Wytwórz: Gwóźdź, Młot Parowy" +msgstr " Wytwórz: gwóźdź, młot kafarowy" #: lang/json/recipe_group_from_json.py msgid " Craft: Wire, Drop Hammer" -msgstr "Wytwórz: Drut, Młot Parowy" +msgstr " Wytwórz: drut, młot kafarowy" #: lang/json/recipe_group_from_json.py msgid " Craft: Pipe, Drop Hammer" -msgstr "Wytwórz: Rura, Młot Parowy" +msgstr " Wytwórz: rura, młot kafarowy" #: lang/json/recipe_group_from_json.py msgid " Craft: Rebar, Drop Hammer" -msgstr "Wytwórz: Pręt Zbrojeniowy, Młot Parowy" +msgstr " Wytwórz: pręt zbrojeniowy, młot kafarowy" #: lang/json/recipe_group_from_json.py msgid "Modular Field Camp version 1" -msgstr "" +msgstr "Modułowy obóz polowy wersja 1" #: lang/json/recipe_group_from_json.py msgid "Firestation Base" -msgstr "Baza w Budynku Straży Pożarnej" +msgstr "Baza w remizie strażackiej" #: lang/json/recipe_group_from_json.py msgid "Evac Shelter Base" -msgstr "Baza w Schronie Ewakuacyjnym" +msgstr "Baza w schronie ewakuacyjnym" #: lang/json/recipe_group_from_json.py msgid "Freshwater Research Station Base" -msgstr "Baza w Słodkowodnej Stacji Badawczej" +msgstr "Baza w stacji badawczej słodkiej wody" #: lang/json/recipe_group_from_json.py msgid "Light Industry Office Base" -msgstr "Baza w Biurze Fabryki Przemysłu Lekkiego" +msgstr "Baza w biurze fabryki przemysłu lekkiego" #: lang/json/recipe_group_from_json.py msgid "Light Industry Office With Glass Walls Base" -msgstr "Baza w Przeszklonym Biurze Fabryki Przemysłu Lekkiego" +msgstr "Baza w przeszklonym biurze fabryki przemysłu lekkiego" #: lang/json/recipe_group_from_json.py msgid "Military Helipad Base" -msgstr "Baza na Wojskowym Lądowisku Śmigłowca" +msgstr "Baza na wojskowym lądowisku śmigłowca" #: lang/json/recipe_group_from_json.py msgid "Normal Military Outpost Base" -msgstr "Baza w Normalnym Posterunku Wojskowym" +msgstr "Baza w normalnej placówce wojskowej" #: lang/json/recipe_group_from_json.py msgid "Cross Military Outpost Base" -msgstr "Baza w Krzyżowym Posterunku Wojskowym" +msgstr "Baza w krzyżowej placówce wojskowej" #: lang/json/recipe_group_from_json.py msgid "Lighthouse Base" -msgstr "Baza w Latarni Morskiej" +msgstr "Baza w latarni morskiej" #: lang/json/recipe_group_from_json.py msgid "Pottery Cottage Camp" -msgstr "Obóz w Chacie Garncarskiej" +msgstr "Obóz w domku garncarskim" #: lang/json/recipe_group_from_json.py msgid "Radio Tower Without Building Base" -msgstr "Baza w Wieży Radiowej Bez Budynku" +msgstr "Baza w wieży radiowej bez budynku" #: lang/json/recipe_group_from_json.py msgid "Radio Tower With Building Base" -msgstr "Baza w Wieży Radiowej z Budynkiem" +msgstr "Baza w wieży radiowej z budynkiem" #: lang/json/recipe_group_from_json.py msgid "Fire Lookout Tower Base" -msgstr "Baza w Przeciwpożarowej Wieży Obserwacyjnej" +msgstr "Baza w przeciwpożarowej wieży obserwacyjnej" #: lang/json/recipe_group_from_json.py msgid "Mansion Fountain Garden Base" -msgstr "Baza w rezydencji - ogród z fontanną" +msgstr "Baza ogrodu z fontanną w rezydencji" #: lang/json/recipe_group_from_json.py msgid "Mansion Dance Floor Room Base" -msgstr "Baza w rezydencji - parkiet do tańca" +msgstr "Baza parkietu do tańca w rezydencji" #: lang/json/recipe_group_from_json.py msgid "Mansion Basketball Room Base" -msgstr "Baza w rezydencji - pokój do gry w kosza" +msgstr "Baza pokoju do gry w kosza w rezydencji" #: lang/json/recipe_group_from_json.py msgid "Mansion Garden With Columns Base" -msgstr "Baza w rezydencji - ogród z kolumnami" +msgstr "Baza ogrodu z kolumnami w rezydencji" #: lang/json/recipe_group_from_json.py -msgid "Canteen" -msgstr "Kantyna" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" +"Stołówka wersja 1. Zapewnia przepisy kulinarne, piece, studnię, piwnicę" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" +msgstr "Stołówka wersja 2. Wersja 1 plus destylator, wiatrak i więcej donic." #: lang/json/recipe_group_from_json.py msgid "Farm version 1. Shed, plots, some farming recipes" -msgstr "" +msgstr "Farma wersja 1. Szopa, działki, niektóre przepisy rolnicze" #: lang/json/recipe_group_from_json.py msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" +"Farma wersja 2. Tylko działki, płot (opcjonalnie brama dla traktora), bez " +"przepisów" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "Garaż" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "" +"Garaż w wersji 1. Mieści rozsądnej wielkości pojazdy, wokół niego jest wolna" +" przestrzeń " + +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" +"Wersja garażowa 2. Maksymalna szerokość, rozmiar dwóch pasów, trzy różne " +"długości" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" -msgstr "Obszar Zwierząt Gospodarskich" +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" +"Obszar zagrody hodowlanej wersja 1. Układ z dużą ilością wolnej przestrzeni" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" +msgstr "" +"Obszar zagrody hodowlanej wersja 2. Więcej boksów niż w wersji 1, mniej " +"wolnej przestrzeni" #: lang/json/recipe_group_from_json.py msgid "Saltworks Area" -msgstr "Obszar Warzelni Soli" +msgstr "Obszar warzelni soli" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" -msgstr "Budynek Centralnego Magazynu" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" +"Główny budynek magazynowy wersja 1. Ładny budynek z dużą ilością wolnej " +"przestrzeni." #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" -msgstr "Warsztat Wytwórczy" +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" +"Główny budynek magazynowy wersja 2. Nacisk na pojemność. Postaw tylko na " +"północy, wschodzie, południu lub zachodzie." + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" +msgstr "Warsztat wytwarzania wersja 1. Ładny domek warsztatowy." + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 2. More detailed recipe progression" +msgstr "" +"Warsztat wytwarzania wersja 2. Bardziej szczegółowa progresja przepisów." #: lang/json/recipe_group_from_json.py msgid "Light Industry Workshop" -msgstr "Warsztat Przemysłu Lekkiego" +msgstr "Warsztat przemysłu lekkiego" #: lang/json/recipe_group_from_json.py msgid "Military Helipad Garage" -msgstr "Wojskowe Lądowisko Śmigłowca - Garaż" +msgstr "Garaż wojskowego lądowiska śmigłowca" #: lang/json/recipe_group_from_json.py msgid "Mansion's Entrance" @@ -228485,59 +238913,59 @@ msgstr "Bar rezydencji" #: lang/json/recipe_group_from_json.py msgid " WIP Brew: Fruit Wine Must" -msgstr "" +msgstr " Warz w trakcie przygotowań: moszcz wina owocowego" #: lang/json/recipe_group_from_json.py msgid " WIP Brew: Spiced Wine Must" -msgstr "" +msgstr " Warz w trakcie przygotowań: moszcz wina korzennego" #: lang/json/recipe_group_from_json.py msgid " WIP Brew: Dandelion Wine Must" -msgstr "" +msgstr " Warz w trakcie przygotowań: moszcz wina z mleczy" #: lang/json/recipe_group_from_json.py msgid " WIP Brew: Burdock Wine Must" -msgstr "" +msgstr " Warz w trakcie przygotowań: moszcz wina z łopianu" #: lang/json/recipe_group_from_json.py msgid " WIP Brew: Pine Wine Must" -msgstr "" +msgstr " Warz w trakcie przygotowań: moszcz wina sosnowego" #: lang/json/recipe_group_from_json.py msgid " WIP Brew: Beer" -msgstr "" +msgstr " Warz w trakcie przygotowań: piwo" #: lang/json/recipe_group_from_json.py msgid " WIP Distill: Brandy" -msgstr "" +msgstr " Destyluj w trakcie przygotowań: brandy" #: lang/json/recipe_group_from_json.py msgid " WIP Distill: Gin" -msgstr "" +msgstr " Destyluj w trakcie przygotowań: gin" #: lang/json/recipe_group_from_json.py msgid " WIP Distill: Vodka" -msgstr "" +msgstr " Destyluj w trakcie przygotowań: wódka" #: lang/json/recipe_group_from_json.py msgid " WIP Distill: Rum" -msgstr "" +msgstr " Destyluj w trakcie przygotowań: rum" #: lang/json/recipe_group_from_json.py msgid " Craft: Water Wheel, Power Saw" -msgstr " Wytwórz: Koło Wodne, Piła Mechaniczna" +msgstr " Wytwórz: koło wodne, piła mechaniczna" #: lang/json/recipe_group_from_json.py msgid " Craft: Large Water Wheel, Power Saw" -msgstr " Wytwórz: Duże Koło Wodne, Piła Mechaniczna" +msgstr " Wytwórz: duże koło wodne, piła mechaniczna" #: lang/json/recipe_group_from_json.py msgid " Craft: Wooden Beam, Planer" -msgstr " Wytwórz: Drewniany Dźwigar, Heblarka" +msgstr " Wytwórz: drewniany dźwigar, heblarka" #: lang/json/recipe_group_from_json.py msgid " Craft: Planks, Power Saw" -msgstr " Wytwórz: Deski, Piła Mechaniczna" +msgstr " Wytwórz: deski, piła mechaniczna" #: lang/json/recipe_group_from_json.py msgid " Fishing: fish, plastic fish trap" @@ -228553,15 +238981,15 @@ msgstr " Wędkarstwo: ryby, profesjonalna wędka" #: lang/json/recipe_group_from_json.py msgid " Hack & Download: random data, SD-Memory card" -msgstr " Hakuj i Pobieraj: różne dane, Karta pamięci SD" +msgstr " Hakuj i pobieraj: różne dane, karta pamięci SD" #: lang/json/recipe_group_from_json.py msgid " Hack & Download: misc software, USB drive" -msgstr " Hakuj i Pobieraj: różne oprogramowanie, nośnik USB" +msgstr " Hakuj i pobieraj: różne oprogramowanie, pendrive USB" #: lang/json/recipe_group_from_json.py msgid " Hack & Download: MatheMAX, USB drive" -msgstr " Hakuj i Pobieraj: MatheMAX, nośnik USB" +msgstr " Hakuj i pobieraj: MatheMAX, pendrive USB" #: lang/json/recipe_group_from_json.py msgid " Craft: Brick" @@ -228573,35 +239001,91 @@ msgstr " Wytwórz: wypalana cegła" #: lang/json/recipe_group_from_json.py msgid " Craft: Clay Pellet" -msgstr " Wytwórz: Gliniany Śrut" +msgstr " Wytwórz: gliniany śrut" #: lang/json/recipe_group_from_json.py msgid " Craft: Clay Canister" -msgstr " Wytwórz: Gliniany Kanister" +msgstr " Wytwórz: gliniany kanister" #: lang/json/recipe_group_from_json.py msgid " Craft: Clay Hydria" -msgstr " Wytwórz: Gliniana Hydria" +msgstr " Wytwórz: gliniana hydria" #: lang/json/recipe_group_from_json.py msgid " Hack & Download: science data, SD-Memory card" -msgstr " Hakuj i Pobieraj: dane naukowe, Karta pamięci SD" +msgstr " Hakuj i pobieraj: dane naukowe, karta pamięci SD" #: lang/json/recipe_group_from_json.py msgid " Hack & Download: MediSoft, USB drive" -msgstr " Hakuj i Pobieraj: MediSoft, nośnik USB" +msgstr " Hakuj i pobieraj: MediSoft, pendrive USB" #: lang/json/recipe_group_from_json.py msgid " Hack & Download: IC datasheet archives, USB drive" -msgstr " Hakuj i Pobieraj: archiwalne arkusze danych IC, nośnik USB" +msgstr " Hakuj i pobieraj: archiwalne arkusze danych IC, pendrive USB" #: lang/json/recipe_group_from_json.py msgid " Hack & Download: Satellite Map, sketch" -msgstr " Hakuj i Pobieraj: Mapa Satelitarna, szkic" +msgstr " Hakuj i pobieraj: mapa satelitarna, szkic" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr " Wytwórz: kanister, gliniany" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr " Wytwórz: tygiel, glinaiany" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr " Wytwórz: cegła, wypalana" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr " Wytwórz: pellet, gliniany" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr " Wytwórz: para szczypiec płaskich" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr " Wytwórz: przecinak (dłuto do obróbki metalu)" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr " Wytwórz: nóż, do polowania" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr " Wytwórz: wybijak" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr " Wytwórz: butelka, szklana" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr " Wytwórz: kolba, szklana" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr " Wytwórz: tafla, szklana" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr " Wytwórz: 3 l słój, szklany" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr " Wytwórz: słój, szklany" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr " Wytwórz: hartowana tafla, szklana" #: lang/json/recipe_group_from_json.py msgid "Field Camp" -msgstr "Obóz Polowy" +msgstr "Obóz polowy" #. ~ Name for scenario 'Evacuee' for a male character #: lang/json/scenario_from_json.py @@ -231046,6 +241530,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "Zacznij jako mutantka po progu roślinnym." +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "Mutant - próg zajęczaka" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "Mutantka - próg zajęczaka" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "Zacznij jako mutant po progu zajęczaka." + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "Zacznij jako mutantka po progu zajęczaka." + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -231394,7 +241904,7 @@ msgstr "" "nich przydatnych przedmiotów i obiektów. Pełni ważną rolę przy konstruowaniu" " wielu rzeczy." -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "obróbka żywności" @@ -231550,7 +242060,7 @@ msgstr "" #: lang/json/skill_from_json.py msgid "submachine guns" -msgstr "pistolety maszynowe" +msgstr "pist. maszynowe" #. ~ Description for submachine guns #: lang/json/skill_from_json.py @@ -231780,7 +242290,7 @@ msgstr "To że miejsce jest niebezpieczne nie oznacza że jest warte złupienia. #: lang/json/snippet_from_json.py msgid "If you're breaking in, be sure you also know how to get back out." -msgstr "Jak się włamujesz bądź pewien, że wiesz którędy wyjdziesz." +msgstr "Jeśli się włamujesz, upewnij się, że wiesz również, jak się wydostać." #: lang/json/snippet_from_json.py msgid "" @@ -231807,8 +242317,8 @@ msgid "" "Scared of melee? Throw some things at enemies and use reach weapons like " "spears." msgstr "" -"Boisz się wali w zwarciu? Rzuć czymś we wroga i użyj broni zasięgowych jak " -"włócznia." +"Boisz się wali w zwarciu? Rzuć czymś we wroga i użyj broni zasięgowych, " +"takich jak włócznie." #: lang/json/snippet_from_json.py msgid "" @@ -231875,7 +242385,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "Why walk when you can use a car? Or a tank?" -msgstr "Po iść pieszo jak można jechać samochodem? Albo czołgiem?" +msgstr "Po co iść pieszo jak można jechać samochodem? Albo czołgiem?" #: lang/json/snippet_from_json.py msgid "Food from before the Cataclysm won't last forever. Keep that in mind." @@ -231919,7 +242429,9 @@ msgstr "Lubisz hazard? Użyj mutagenów! Bądź dziś zwycięzcą!" #: lang/json/snippet_from_json.py msgid "Smoking and napping is asking for more than a hole in your shirt." -msgstr "Papieros i sen to prośba o coś więcej niż wypalona dziura w koszuli." +msgstr "" +"Zaśnięcie z papierosem to proszenie się o coś więcej niż tylko wypalona " +"dziura w koszuli." #: lang/json/snippet_from_json.py msgid "You're on fire? Stop and wait to put it out." @@ -231927,7 +242439,7 @@ msgstr "Palisz się? Zatrzymaj się i czekaj by się ugasić." #: lang/json/snippet_from_json.py msgid "Routine kills. Stay alert! Don't let your guard down." -msgstr "Rutyna zabija. Bądź uważny! Nie opuszczaj gardy." +msgstr "Rutyna zabija. Zachowaj czujność! Miej się na baczności." #: lang/json/snippet_from_json.py msgid "" @@ -232087,7 +242599,7 @@ msgid "" "The number of zombies in a city is large but finite. You can (eventually) " "kill them all." msgstr "" -"Liczba zombie w mieście jest wielka ale skończona. Możesz je (kiedyś) " +"Liczba zombie w mieście jest duża, ale skończona. Możesz je (kiedyś) " "wszystkie zabić." #: lang/json/snippet_from_json.py @@ -232288,8 +242800,8 @@ msgstr "Kiedy widzisz zbliżający się tłum zombie, pora uciekać." #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" "Jak cię ściga horda zombie, spróbuj wskoczyć do metra i wyjdź na " "powierzchnię dwie przecznice dalej." @@ -233338,22 +243850,23 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" -"Nie wiem czy Mike ma wciąż równo pod sufitem. Miał to nieszczęście być " -"zmuszonym do przeprawy przez szkołę pewnego razu. To doświadczenie złamało " -"mu więcej niż te kilka żeber." +"Znałem nauczyciela z podstawówki, który musiał walczyć o wyjście ze szkoły. " +"Musiał zabić tuzin oszalałych dzieci. Nie mogę sobie wyobrazić, co to robi z" +" człowiekiem." #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" -"Taka myśl o materiałach wybuchowych. Jak dasz radę jeszcze biec i było " -"jeszcze bum, to biegnij dalej. Nie ma czegoś takiego ja nadmiar przestrzeni " -"pomiędzy tobą a laską dynamitu." +"Jedna uwaga na temat materiałów wybuchowych: Jeśli wciąż możesz biec, a " +"materiał wybuchowy jeszcze nie zdetonował, biegnij dalej. Nadmiar " +"ostrożności przy obchodzeniu się z granatem nie jest przesadą." #: lang/json/snippet_from_json.py msgid "Avoid using launchers in narrow hallways, you might miss." @@ -238806,6 +249319,347 @@ msgstr "" "Gdy patrzysz w gwiazdy zauważasz, że szerokie ich pasmo pochłania mrok, po " "czym powracają do życia w nierównym tempie." +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "Przez sekundę widzisz coś, co wygląda jak wyspa na niebie." + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" +"Przez sekundę słońce staje się krwistoczerwone i wydaje się, że coś z niego " +"kapie." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" +"Przez chwilę widzisz w oddali budynki, które wydają się być wielkości gór." + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" +"Przez chwilę znajdujesz się w tłumie częściowo przezroczystych ludzi. Nie " +"zwracają na ciebie uwagi." + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" +"Widzisz mały samolot lecący nisko na niebie, ale leci tyłem i ma na sobie " +"flagę, której nie znasz." + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" +"Wszystkie cienie, które widzisz obracają się tak, jakby słońce się " +"poruszało." + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "Przez sekundę widzisz coś, co wygląda jak łańcuch wysp na niebie." + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" +"Na sekundę słońce staje się ciemne, prawie jakby to było gigantyczne " +"mrugające oko." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" +"Przez chwilę widać w oddali owady, które wydają się być wielkości gór." + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" +"Przez chwilę znajdujesz się w tłumie częściowo przezroczystych ludzi. " +"Wszyscy patrzą na ciebie." + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" +"Widzisz duży samolot lecący nisko na niebie, ale lecący tyłem i mający na " +"sobie kolorową odwróconą wersję twojej flagi." + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" +"Wszystkie widoczne cienie zmieniają kształt i kolor, zaczynając przypominać " +"ludzkie postacie." + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "Przez sekundę widzisz coś, co wygląda jak miasto na niebie." + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "Przez sekundę słońce zmienia kurs na północny i przyspiesza." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" +"Przez chwilę widać w oddali ludzi, którzy wydają się być wielkości gór." + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" +"Przez chwilę znajdujesz się w tłumie częściowo przezroczystych ludzi. " +"Wszyscy oni wskazują na ciebie i krzyczą w języku, którego ludzkie struny " +"głosowe nie powinny być w stanie wypowiedzieć." + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" +"Widzisz duży samolot nisko na niebie, ale lecący do tyłu. W jego pobliżu " +"pojawia się spadochroniarz i pozornie spada w górę do samolotu, podczas gdy " +"postać szarpie się." + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" +"Wszystkie cienie, które widzisz, zmieniają kształt i kolor, zaczynając " +"przypominać postacie ze zbyt wieloma kończynami, które wołają, byś do nich " +"podszedł." + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "Czujesz ostry chemiczny zapach, którego nie potrafisz zlokalizować." + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "Włosy stają ci dęba, gdy ogarnia cię słabe elektryczne mrowienie." + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "Na niebie otwiera się gigantyczna dziura i znika w niej kilka chmur." + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" +"Na niebie otwiera się gigantyczna dziura, z której wyłania się kilka " +"ciemnych chmur." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" +"Przez ułamek sekundy świat staje się zamglony, jakby na wierzchu leżały inne" +" kształty." + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" +"Na chwilę otwiera się dziura w rzeczywistości i można zobaczyć własne plecy." + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "Na chwilę wszystkie kolory stają się matowe." + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "Przez chwilę wszystkie odległości zdają się zmniejszać." + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" +"Niska postać błyskawicznie pojawia się i znika, zbyt szybko, by dostrzec jej" +" rysy." + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" +"Czujesz zupełnie nowy zapach, podobny do niczego, co czułeś wcześniej. Nie " +"możesz zdecydować, czy jest dobry, czy zły." + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "Włosy stają ci dęba, gdy ogarnia cię elektryczne mrowienie." + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" +"Na niebie otwiera się gigantyczna dziura, z której wyłania się kilka " +"neonowych chmur." + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" +"Olbrzymia dziura, która wygląda jak oko, otwiera się na niebie, po czym " +"zamyka się, jakby mrugała." + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" +"Przez ułamek sekundy świat przeplata się z bezkresną i pustą otchłanią." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" +"Przez ułamek sekundy świat przeplata się z niedużym, okrągłym pomieszczeniem" +" bez szczególnych cech." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" +"Przez ułamek sekundy świat przeplata się z rozległym, obcym krajobrazem z " +"kształtami przypominającymi rośliny o rozmiarach budynków wszędzie dookoła." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" +"Na ułamek sekundy świat przeplata się z pustym i zrujnowanym miastem, choć " +"zbudowanym w zupełnie innej skali niż te na Ziemi." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" +"Na chwilę otwiera się dziura w rzeczywistości i można zobaczyć niemal " +"idealną kopię samego siebie." + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "Na chwilę wszystkie kolory się odwróciły." + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "Przez chwilę wszystkie odległości jakby się podwoiły." + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" +"Wysoka postać błyskawicznie pojawia się i znika, pozostawiając po sobie " +"niejasne wrażenie złośliwości." + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" +"Czujesz zupełnie nowy zapach, nie przypominający niczego, co czułeś " +"wcześniej. Sprawia, że się krztusisz." + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" +"Włosy stają ci dęba, gdy przepływa przez ciebie ostry impuls elektryczny." + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" +"W niebie otwiera się poszarpana dziura i wyłania się z niej ogromna chmura w" +" kształcie asymetrycznego człowieka." + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" +"Poszarpana dziura przypominająca oko otwiera się na niebie i wpatruje się w " +"ciebie." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" +"Przez ułamek sekundy świat znika pozostawiając cię w bezkresnej i pustej " +"otchłani." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" +"Przez ułamek sekundy świat znika pozostawiając cię w niedużym, okrągłym " +"pomieszczeniu bez szczególnych cech." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" +"Przez ułamek sekundy świat znika pozostawiając cię wśród rozległego, obcego " +"krajobrazu z kształtami przypominającymi rośliny o rozmiarach budynków " +"wszędzie dookoła." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" +"Na ułamek sekundy świat znika pozostawiając cię w pustym i zrujnowanym " +"mieście, choć zbudowanym w zupełnie innej skali niż te na Ziemi." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" +"Na chwilę otwiera się dziura w rzeczywistości i można zobaczyć napastliwą " +"wyidealizowaną kopię samego siebie." + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" +"Przez chwilę wszystkie kolory rozpływają się tworząc poszarpane kształty." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" +"Na chwilę wszystkie odległości zdają się znikać, jakby wszystko było jednym." +" To jest klaustrofobiczne." + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" +"Wysoka postać błyskawicznie pojawia się i znika, przez cały czas gapiąc się " +"i wskazując na ciebie." + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -238816,7 +249670,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" "Tory w tym miejscu są śliskie od szarej drżącej mazi, która sączy się spod " "spodu." @@ -238967,7 +249821,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" "Ścianę ścieli dywan zielonoszarych grzybów, których kapelusze chylą się ku " @@ -240659,10 +251513,10 @@ msgid "" msgstr "" "Jest to plakat propagandowy przedstawiający wojskowy wariant Northrop " "Dispatch. Przedstawia ikoniczny ciemnozielony, pająkopodobny model " -"Dyspozytora, stojący przed ogrodzeniem i odwrócony od kamery, podczas gdy z " +"„Posłańca”, stojący przed ogrodzeniem i odwrócony od kamery, podczas gdy z " "jego grzbietu pędzą przed siebie rozmazane maszyny w kierunku czarnych " -"sylwetek majaczących na horyzoncie. Czytamy: \"JESTEŚMY TU, BY WAS " -"CHRONIĆ\"." +"sylwetek majaczących na horyzoncie. Jest na nim: „JESTEŚMY TU, BY WAS " +"CHRONIĆ”." #: lang/json/snippet_from_json.py msgid "" @@ -241247,9 +252101,9 @@ msgid "" "birdhouse design, and compare with the often confused Scandinavian Birdhouse" " design. Our article on sheet metal birdhouses will have you riveted!" msgstr "" -"MIESIĘCZNIK PTASI DOM.... w tym miesiącu recenzujemy Duńskie innowacje w " -"projektowaniu ptasich domków, i porównujemy je z często mylonymi projektami " -"Skandynawskich Budek! Nasz artykuł o budkach z blachy całkowicie cię " +"MIESIĘCZNIK PTASI DOM… w tym miesiącu recenzujemy duńskie innowacje w " +"projektowaniu ptasich domków i porównujemy je z często mylonymi projektami " +"skandynawskich budek! Nasz artykuł o budkach z blachy całkowicie cię " "zafascynuje!" #: lang/json/snippet_from_json.py @@ -245336,7 +256190,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" "Ugotowany kawałek płuca zmutowanego zwierzęcia. Z mozołem można przeciąć " "stwardniałą skorupę półprzezroczystego śluzu, ale jedyną nagrodą jest " @@ -245426,7 +256280,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" "Kawałek wątroby zmutowanego zwierzęcia. Powierzchnia jest sczerniała i " "twarda, ale popękana, co odsłania kilka pasków świeżej, różowej tkanki pod " @@ -245447,7 +256301,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -245457,7 +256311,7 @@ msgstr "" "szarobrązowego koloru normalnej wątroby, ta po podgrzaniu zrobiła się " "niepokojąco pomarańczowa, a płatki wielkości palca odrywają się od niej przy" " najmniejszym dotknięciu. Smak przypomina lekko przejrzałe awokado, ale to i" -" tak lepiej niż się spodziewałeś." +" tak lepiej niż twoje oczekiwania." #: lang/json/snippet_from_json.py msgid "" @@ -245474,7 +256328,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" @@ -245485,10 +256339,10 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" "Kawałek nerki ze zmutowanego zwierzęcia. Wbijając się w nią, twój nóż " "ześlizguje się, otwierając na jej boku dużą szparę, z której wysuwają się " @@ -245609,7 +256463,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -245759,8 +256613,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" "Na całym ciele znajdują się równomiernie rozmieszczone małe woreczki z " "jajami w różnych stadiach rozwoju." @@ -246304,7 +257158,7 @@ msgstr "" " jadem, z których każdy zasila zbiornik u podstawy żądła." #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "Otwierasz żołądek, wypuszczając z niego słodko pachnący szary płyn." #: lang/json/snippet_from_json.py @@ -246316,12 +257170,12 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" "Twój nóż dosięga wyciągniętego żądła i ślizga się po jego gładkiej " -"powierzchni, otwierając przy okazji pół tuzina gruczołów jadowych. Nie " -"skaleczyłeś się, prawda?" +"powierzchni, otwierając przy okazji pół tuzina gruczołów jadowych. Masz " +"szczerą nadzieję, że się nie masz skaleczenia." #: lang/json/snippet_from_json.py msgid "" @@ -247169,9 +258023,9 @@ msgid "" "\n" "We spoke online to Dr. Jose García, known for his medical blog \"The Artificial Truth\", about the seizure. \"The party line doesn't make sense on this,\" Dr. García writes. \"If these are illegally obtained bionics, why are they weapons? And not military weapons either. Finger blades, sharpened teeth? They aren't making these in dirty basements, these are coming out of factories. I see these here in Mexico, used by gangs. There is a market, and the manufacturers of CBMs are cashing in.\" Representatives from Uncanny, the largest manufacturer of CBMs in North America, could not be reached for comment." msgstr "" -"ROZBICIE DZIUPLI. [Fot.: Kapitan Soula Anagnos pozuje z przechwyconymi bionikami z przemytu] Bostońska policja skonfiskowała ponad dziesięć milionów dolarów w nielegalnie zdobytych modułach bionicznych w ramach skoordynowanej akcji rozprawienia się z ponad dziesięcioma nielegalnymi gabinetami instalacyjnymi. \"Ci ludzie to kryminaliści\" - powiedział na konferencji prasowej kapitan Anagnos. \"Nie wierzcie w to, co mówi internet: oni nie są Robin Hoodami. Kradną te urządzenia ludziom, którzy ich potrzebują, i instalują je w sposób nieetyczny, często powodując poważne uszkodzenia u swoich 'pacjentów'.\"\n" +"ROZBICIE DZIUPLI. [fot.: Kapitan Soula Anagnos pozuje z przechwyconymi bionikami z przemytu] Bostońska policja skonfiskowała ponad dziesięć milionów dolarów w nielegalnie zdobytych modułach bionicznych w ramach skoordynowanej akcji rozprawienia się z ponad dziesięcioma nielegalnymi gabinetami instalacyjnymi. „Ci ludzie to kryminaliści” - powiedział na konferencji prasowej kapitan Anagnos. „Nie wierzcie w to, co mówi internet: oni nie są Robin Hoodami. Kradną te urządzenia ludziom, którzy ich potrzebują, i instalują je w sposób nieetyczny, często powodując poważne uszkodzenia u swoich «pacjentów».”.\n" "\n" -"Rozmawialiśmy online z dr Jose García, znanym ze swojego medycznego bloga \"Sztuczna Prawda\", na temat nalotu. \"Linia partyjna nie ma sensu w tej sprawie\" - pisze dr García. \"Jeśli to są nielegalnie zdobyte bioniki, to dlaczego są bronią? I to nie broń wojskowa. Ostrza do palców, zaostrzone zęby? Nie robią tego w brudnych piwnicach, to wychodzi z fabryk. Widzę je tutaj w Meksyku, używane przez gangi. Jest rynek, a producenci KBM czerpią z niego zyski\". Przedstawiciele Uncanny, największego producenta KBM w Ameryce Północnej, nie byli osiągalni w celu uzyskania komentarza." +"Rozmawialiśmy online z dr Jose García, znanym ze swojego medycznego bloga „Sztuczna Prawda”, na temat nalotu. „Linia partyjna nie ma sensu w tej sprawie” - pisze dr García. „Jeśli to są nielegalnie zdobyte bioniki, to dlaczego są bronią? I to nie broń wojskowa. Ostrza do palców, zaostrzone zęby? Nie robią tego w brudnych piwnicach, to wychodzi z fabryk. Widzę je tutaj w Meksyku, używane przez gangi. Jest rynek, a producenci KMB czerpią z niego zyski”. Przedstawiciele Uncanny, największego producenta KMB w Ameryce Północnej, nie byli osiągalni w celu uzyskania komentarza." #: lang/json/snippet_from_json.py msgid "" @@ -247801,13 +258655,13 @@ msgstr "" "rozpoczęła się od sporu o szczegóły podobnych zamieszek w Carlhaven, w " "stanie Nebraska. W ciągu godziny walka rozszerzyła się i objęła całe centrum" " miasta. Danielle Louiston, pracownica obsługi, która uciekła z miejsca " -"zdarzenia, była dostępna dla wywiadu telefonicznego. \"To nie przypominało " -"niczego, co kiedykolwiek widziałam\", opisuje Danielle. \"W jednej chwili to" -" normalny piątkowy poranek, a w następnej bójka w barze. Zanim stamtąd " +"zdarzenia, była dostępna dla wywiadu telefonicznego. „To nie przypominało " +"niczego, co kiedykolwiek widziałam”, opisuje Danielle. „W jednej chwili to " +"normalny piątkowy poranek, a w następnej bójka w barze. Zanim stamtąd " "wyszłam, większość restauracji była już zaangażowana. Wsiadłam do samochodu " "i uciekłam do domu, a potem zadzwoniłam na policję. Okazało się, że wszyscy " "brali udział w bójce! Razem z sekretarką skontaktowaliśmy się z wojskiem, " -"które w końcu przyjechało i załatwiło sprawę\". Ustabilizowanie zamieszek " +"które w końcu przyjechało i załatwiło sprawę”. Ustabilizowanie zamieszek " "wymagało wysłania trzech jednostek Gwardii Narodowej. Raporty o ofiarach są " "jak na razie niedostępne." @@ -248288,10 +259142,10 @@ msgstr "" "zaostrza niebezpieczeństwa, na które narażona jest policja na służbie. W " "niektórych przypadkach funkcjonariusze odmawiają odpowiedzi na wezwania w " "obszarach o wysokim poziomie przemocy. Rzecznik prasowy biura szeryfa " -"hrabstwa Worcester potwierdził: \"W niektórych okolicznościach nie jest już " +"hrabstwa Worcester potwierdził: „W niektórych okolicznościach nie jest już " "możliwe narażanie życia funkcjonariuszy. Zamiast tego możemy nadal polegać " "na naszych najnowocześniejszych jednostkach robotycznych zasilanych przez " -"SI.\"" +"SI”." #: lang/json/snippet_from_json.py msgid "" @@ -248465,7 +259319,7 @@ msgid "" "knife until unrecognizable! These aren't rioters, they're *undead*. The " "government has been lying to us all along. This will be our last issue." msgstr "" -"REDAKTOR MÓWI \"ZNISZCZYĆ ZMARŁYCH\". Rozpoznawalni martwi pozostawieni na " +"REDAKTOR MÓWI „ZNISZCZYĆ ZMARŁYCH”. Rozpoznawalni martwi pozostawieni na " "ulicy mogą być niebezpieczni! Jeśli zabijesz wroga, zmiażdż go lub " "poćwiartuj nożem, aż będzie nie do poznania! To nie są buntownicy, to " "*nieumarli*. Rząd okłamywał nas przez cały czas. To będzie nasz ostatni " @@ -248619,6 +259473,76 @@ msgstr "" "Budzisz się z koszmaru o tym, że Kataklizm się nie wydarzył i utknąłeś w " "pracy biurowej." +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "Więc lubisz koty czy psy?" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "Miło wiedzieć, że zombie nie czują bólu." + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "Gdziekolwiek byśmy nie wylądowali, przynajmniej nadal żyjemy, prawda?" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" +"Jakoś nie wydaje mi się, żebym w najbliższym czasie wrócił do starej pracy…" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "Rany, to nie przypomina tych hollywoodzkich filmów o zombie!" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" +"Czy kiedykolwiek zastanawiałeś się nad etyczną stroną zabijania zombie?" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" +"Więc moczysz szczoteczkę po nałożeniu pasty do zębów? To takie dziwne." + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "Jak myślisz, co teraz porabia prezydent?" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" +"Czego lubisz słuchać? Osobiście jestem fanem basowej, ciężkiej post-glamowej" +" speed polki." + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" +"Nie mów nikomu, ale czasami lubię spać trzymając mojego pluszowego misia." + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "Czasami w nocy widzę dziwne zjawiska na niebie." + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "Miałam kiedyś kota. Naprawdę brakuje mi pana Kudłacza..." + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" +"Razem z kumplami bawiliśmy się w policjantów i złodziei, tyle że z zombie. " +"Nigdy nie sądziłem, że będę w tym uczestniczył na poważnie…" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "Czy kiedykolwiek myślałeś, że jesteśmy w jakimś rodzaju symulacji?" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -249737,7 +260661,8 @@ msgstr "To zdumiewający meta-obiekt." msgid "" "Ed McMahon stands here, lost in thought. Seeing you, he bellows, \"YES " "SIR!\"" -msgstr "Ed McMahon stoi tu zamyślony. Gdy cię spostrzega wrzeszczy \"TAK SIR!\"" +msgstr "" +"Ed McMahon stoi tu zamyślony. Gdy cię spostrzega wrzeszczy „TAK SIR!”." #: lang/json/snippet_from_json.py msgid "…thingy???" @@ -250481,7 +261406,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "The rothe hits! The rothe hits!" -msgstr "" +msgstr "Rothe trafia! Rothe trafia!" #: lang/json/snippet_from_json.py msgid "The score for a Czech composer's \"Kitten-Finding Symphony in C\"." @@ -251102,7 +262027,7 @@ msgstr "Pozwól mi coś w końcu zabić!" msgid "I'm your best friend, right?" msgstr "Będę twoim najlepszym przyjacielem, prawda?" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "Kocham cię!" @@ -251840,6 +262765,118 @@ msgstr "Na prawdę mnie wkurzasz…" msgid "You hate this loud sound." msgstr "Nie nawidzisz tego głośnego dźwięku." +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "Miałeś kiedyś takiego psa…" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "Ha ha! Zabawne zdjęcie kota." + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "Wyśmienite zdjęcia przyrody." + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "Zdjęcia jedzenia… burczy ci w brzuchu!" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "Nieco ciekawych zdjęć podróżniczych." + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "Zdjęcia z koncertu popularnej grupy muzycznej." + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "Zdjęcia czyjegoś luksusowego domostwa." + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "Czujesz nostalgię gdy patrzysz na zdjęcie." + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "To pewne." + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "Zdecydowanie." + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "Bez wątpienia." + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "Tak - zdecydowanie." + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "Możesz na to liczyć." + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "Tak to widzę, tak." + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "Najprawdopodobniej." + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "Na oko w porządku." + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "Tak." + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "Znaki wskazują na tak." + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "Odpowiedź mglista, spróbuj ponownie." + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "Zapytaj później." + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "Lepiej nie mówić tego tobie teraz." + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "Nie da się teraz przewidzieć." + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "Skoncentruj się i zapytaj ponownie." + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "Nie licz na to." + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "Moja odpowiedź brzmi nie." + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "Moje źródła mówią nie." + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "Na oko nie za dobrze." + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "Bardzo wątpliwe." + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -251858,6 +262895,21 @@ msgstr "\"przejdziemy przez to!\"" msgid "\"i'm here for you!\"" msgstr "\"jestem tu dla ciebie!\"" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "„łał! wyglądasz tak jak ja! powinniśmy zadbać o siebie nawzajem!”." + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "„chodź, duży ja, ruszajmy!”." + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "„jesteśmy drużyną, ogarniemy to!”." + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "\"MIELIŚMY RACJĘ ŻE TO WINA RZĄDU\"" @@ -252574,8 +263626,8 @@ msgid "" "\"got into a prison with a halligan bar. makes me wonder how they kept " "prisoners inside\"" msgstr "" -"\"dostałem się do więzienia używając strażackiego narzędzia ratowniczego. aż" -" się zastanawiam jak oni utrzymywali tych więźniów w środku\"" +"„dostałem się do więzienia używając strażackiego narzędzia ratowniczego. aż " +"się zastanawiam jak oni utrzymywali tych więźniów w środku”" #: lang/json/snippet_from_json.py msgid "" @@ -253335,6 +264387,115 @@ msgstr "" "\"⋯bioluminescencyjny, 5' średnicy⋯ wydaje się być ogromną bezcielesną gałką" " oczną, zdolną do lotu i [nieczytelne] myślenia\"." +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" +"„O co chodzi z wrzącą wodą? Woda deszczowa jest naturalnie destylowana! Jest" +" całkowicie bezpieczna, mógłbyś zaoszczędzić tyle czasu, gdybyś jej nie " +"gotował. Wypiłem trochę wody z rzeki i nic mi nie jest!”." + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" +"„Poszedłem do schroniska, jakiś facet wszedł, wyszedł, chwycił kamień, " +"rozwalił ławkę na kawałki, wystrugał z niej deskę i znowu wyszedł. Nie " +"widziałem go od 3 dni… ciekawe, co z nim się stało”." + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" +"Ta notatka jest pokryta szarą mazią, fuj… „Wiem, że to mój fetysz, ale TO " +"JUŻ ZA WIELE. Moje ręce są zrobione ze szlamu. Moje włosy to szlam. Moje " +"ciało jest pokryte szlamem. Nie mogę nawet użyć łomu z powodu szlamu. " +"Gdziekolwiek pójdę, zostawiam ślady szlamu. Wszystko jest szlamem. Moja " +"torba spada mi z pleców w szlam”." + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" +"Strona z notatnika, z odniesieniem do alfabetu morse'a i następującą " +"rozkodowaną wiadomością: „Whiskey echo whiskey - Lima alpha delta”." + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" +"„Zobacz, jeśli chcesz być, dodatkowe irytujące można, skinąć do, wysypisko i" +" iść, pomoc, Erin wykopać, ostatni, kwałek”" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" +"„Widziałem jednego z tych pracowników Foodplace na ulicy. Szczerze mówiąc, " +"żywi nie różnią się od martwych”." + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" +"„Nie jedź do zakładów napromieniowywania! Moja ciężarówka wygląda jak ser " +"szwajcarski po tym, jak wieżyczki się ze mną rozprawiły. Utknę na poboczu na" +" wiele godzin, kiedy będę naprawiał ten bałagan”." + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" +"„Mogę sobie wyobrazić, że ludzie wysyłają swoją 'miłość i modlitwy' w " +"mediach społecznościowych. Miłość nie zabija zombie, modlitwa nie włoży " +"jedzenia do mojego brzucha”." + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" +"„Kiedyś brałem wszystko na logikę. Jeśli nie mogłeś tego zmierzyć, wyjaśnić," +" opisać liczbami, to nie było prawdziwe. Potem to gówno się wydarzyło. " +"Naprawdę zabawne”." + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "Ta notatka jest pokryta szarą mazią, fuj… „Blorble”." + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" +"„Widziałem jakąś laskę w lesie. Jej ciało było całe zielone i takie tam, a " +"ona była pokryta liśćmi i pnączami”." + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" +"„Dobre wieści: Moi nauczyciele nie próbują odrywać mi kończyn z powodu pracy" +" domowej. Zła wiadomość: Moi nauczyciele próbują urwać mi kończyny bez " +"względu na to”." + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -253458,11 +264619,11 @@ msgid "" "\n" "To continue the tutorial, please wield the spear and move to the counters west of you." msgstr "" -"Obok Ciebie znajduje się regał wystawowy, na którym leży również stalowa włócznia. Możesz nacisnąć 'w', aby bezpośrednio władać przedmiotem, bez potrzeby podnoszenia go. Wciskając 'w' otworzysz menu Władania przedmiotami. Wybierz przedmiot, którym chcesz władać i potwierdź wciskając Enter.\n" +"Obok ciebie znajduje się gablota, na której leży również stalowa włócznia. Możesz nacisnąć „w”, aby bezpośrednio władać przedmiotem, bez potrzeby podnoszenia go. Wciskając „w” otworzysz menu trzymania przedmiów. Wybierz przedmiot, który chcesz trzymać i potwierdź wciskając Enter.\n" "Ponieważ nie masz wolnego miejsca w ekwipunku, aby władać włócznią, musisz upuścić kij na ziemię.\n" -"Jeśli chcesz uwolnić swoje ręce (tzn. nie władać niczym), wciśnij 'w' i wybierz aktualnie trzymany przedmiot. Alternatywnie, możesz upuścić trzymany przedmiot wciskając 'd' i wybierając aktualnie trzymany przedmiot.\n" +"Jeśli chcesz uwolnić swoje ręce (tzn. nie trzymać nic), wciśnij „w” i wybierz aktualnie trzymany przedmiot. Alternatywnie, możesz upuścić trzymany przedmiot wciskając „d” i wybierając aktualnie trzymany przedmiot.\n" "\n" -"Aby kontynuować samouczek, trzymaj włócznię i przejdź do lady na zachód od Ciebie." +"Aby kontynuować samouczek, trzymaj włócznię i przejdź do lady na zachód od ciebie." #: lang/json/snippet_from_json.py msgid "" @@ -253998,13 +265159,13 @@ msgid "" "\n" "You can continue exploring the tutorial rooms, or you can exit the tutorial by pressing 'S'. This will save your game and exit to main menu." msgstr "" -"Gratulacje! Ukończyłeś samouczek. Oto kilka rad na ostatnią chwilę.\n" +"Gratulacje! Udało ci się ukończyć samouczek. Oto kilka rad na ostatnią chwilę.\n" "\n" -"Możesz nacisnąć Enter, aby otworzyć menu Akcji. Zapewnia ono wygodny sposób na wykonanie licznego szeregu akcji.\n" +"Możesz nacisnąć Enter, by otworzyć menu akcji. Zapewnia ono wygodny sposób na wykonanie licznego szeregu akcji.\n" "\n" -"W każdym menu (a także w grze) możesz wcisnąć '?' (znak zapytania), aby otworzyć menu Przypisania klawiszy. Pozwala ono na zmianę domyślnego przypisania klawiszy według własnych upodobań. Zauważ również, że niektóre akcje nie mają domyślnie ustawionego przypisania klawiszy, więc możesz je tam włączyć.\n" +"W każdym menu (a także w grze) możesz wcisnąć „?” (znak zapytania), by otworzyć menu przypisania klawiszy. Pozwala ono na zmianę domyślnego przypisania klawiszy według własnych upodobań. Zauważ również, że niektóre akcje nie mają domyślnie ustawionego przypisania klawiszy, więc możesz je tam włączyć.\n" "\n" -"Możesz kontynuować eksplorację pomieszczeń samouczka, lub opuścić go wciskając 'S'. Spowoduje to zapisanie Twojej gry i wyjście do głównego menu." +"Możesz kontynuować eksplorację pomieszczeń samouczka, lub opuścić go wciskając 'S'. Spowoduje to zapisanie twojej gry i wyjście do głównego menu." #: lang/json/snippet_from_json.py msgid "" @@ -254549,9 +265710,9 @@ msgid "" "Police and military forces have been dispatched to your area and will help " "escort you to safety.\"" msgstr "" -"To rządowy, zrzucony z powietrza alert. \" NATYCHMIASTOWA EWAKUACJA. Policja" -" i wojsko zostały wysłane do waszej okolicy i pomogą eskortować was w " -"bezpieczne miejsce.\"" +"To rządowy, zrzucony z powietrza alert. „NATYCHMIASTOWA EWAKUACJA. Policja i" +" wojsko zostały wysłane do waszej okolicy i pomogą eskortować was w " +"bezpieczne miejsce”." #: lang/json/snippet_from_json.py msgid "" @@ -255525,7 +266686,7 @@ msgstr "" "był gibki, ale teraz albo bierze za to pieniądze, albo wysyłają mu fale " "psioniczne do głowy. Wiem, że to brzmi szalenie, ale co mogłoby skłonić " "człowieka do zwrócenia się przeciwko własnemu krajowi w taki sposób? Ani " -"przez chwilę nie kupuję tej rzekomej linii o \"kosmitach\", którą nam " +"przez chwilę nie kupuję tej rzekomej linii o „kosmitach”, którą nam " "sprzedaje. Głosuj na usunięcie go z urzędu TERAZ!" #: lang/json/snippet_from_json.py @@ -255565,10 +266726,10 @@ msgstr "" "MOST ZA DALEKO. W poniedziałkowym oświadczeniu Departament Obrony " "szczegółowo przedstawił plany rozmieszczenia strategicznych pól minowych na " "kluczowych przeprawach mostowych, aby spowolnić inwazję sił lądowych. " -"\"Personel wojskowy będzie na miejscu, aby pomóc wszystkim uchodźcom " +"„Personel wojskowy będzie na miejscu, aby pomóc wszystkim uchodźcom " "uciekającym z gorących stref. Wzywamy obywateli, aby zastosowali się do " "wszystkich dyrektyw wojskowych i udali się bezpośrednio do centrów " -"ewakuacyjnych w celu relokacji.\"" +"ewakuacyjnych w celu relokacji”." #: lang/json/snippet_from_json.py msgid "" @@ -255772,9 +266933,8 @@ msgid "" "\"Hey. Everyone reading this. Life isn't so bad with them. People just " "need to read up on their capitals if you catch my drift.\"" msgstr "" -"\"Hej. Wszyscy, którzy to czytają. Życie z nimi nie jest takie złe. Ludzie " -"po prostu muszą poczytać o swoich stolicach, jeśli rozumiecie o co mi " -"chodzi.\"" +"„Hej. Wszyscy, którzy to czytają. Życie z nimi nie jest takie złe. Ludzie po" +" prostu muszą poczytać o swoich stolicach, jeśli rozumiecie o co mi chodzi”." #: lang/json/snippet_from_json.py msgid "\"goddamn piece of shit gun doesnt fucking work\"" @@ -256083,8 +267243,8 @@ msgid "" "\"god help you if you get caught by one of those nasty blade things that " "have been carving up wood. my arm…\"" msgstr "" -"\"niech bóg ci dopomoże, jeśli dopadnie cię jedno z tych paskudnych ostrzy, " -"które rzeźbiły w drewnie. moje ramię...\"" +"„niech bóg ci dopomoże, jeśli dopadnie cię jedno z tych paskudnych ostrzy, " +"które strugały w drewnie. moje ramię…”" #: lang/json/snippet_from_json.py msgid "" @@ -256615,6 +267775,16 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "\"Widziałem dziś najpiękniejszego dinozaura. Muszę ją ubrać.\"" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" +"„Widziałem tego dinozaura i byłem jak gorg. I później widziałem innego " +"dinozaura i byłem jak goooorg! A potem widziałem jeszcze jednego dinozaura i" +" byłem jak gorgozaur! Naprawdę.”" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -256764,6 +267934,34 @@ msgstr "" "odpowiedni pochówek. Alonso będzie pamiętał tego dinozaura jeszcze przez " "jakiś czas." +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" +"Właśnie dostałem wiadomość od naszego głównego łącznika z czarodziejami, " +"Jacoba. Jest całkiem nieprzytomny i bełkocze od kilku godzin, ale wygląda na" +" to, że wszystkie centralne laboratoria zostały opanowane. Czy nekromanci w " +"końcu zebrali się, by nas pokonać? Jaki jest ich plan?" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" +"Wczoraj Gregory Hamilton, miejscowy egzekutor czarodziejów, wpadł w szał w " +"lokalnej dzielnicy handlowej. Zdołał zamienić całą dzielnicę w dymiący " +"krater i nie jest to zaskakujące, ponieważ był sławnym najpotężniejszym " +"magiem w Syracuse w stanie Nowy Jork. Gwardia Narodowa zlikwidowała go przy " +"pomocy oddziału snajperów i 5 helikopterów. Liczba ofiar nie jest znana, ale" +" szacuje się ją na 15 000 i stale rośnie." + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -256802,6 +268000,16 @@ msgstr "" "\n" "Orichalcum jest stopem opartym głównie na miedzi, ale jego tworzenie różni się w zależności od osoby, jeśli chodzi o pozostałe metale i dokładną procedurę. Choć nie jest znacząco mocniejsze od stali, jest o wiele bardziej odporne na korozję i ogólne zużycie (niektórzy twierdzą, że ma wolę pozostania w swoim kształcie). Chociaż istnieją konwencjonalne starożytne magiczne miecze mocy, wiele z powszechnego zrozumienia opiera się na tym, że ludzie przedprzemysłowi znajdowali orichalcum w grobowcach i tym podobnych miejscach w dobrym stanie. Dlaczego więc orichalcum nie jest używane w kontekście przemysłowym? Problem polega na tym, że magia może zacząć się psuć, jeśli nie jest wykuwana z odpowiednią wprawą. W przypadku większości niepowodzeń, magia powróci w ciągu kilku minut (nigdy nie była orichalcum w praktyce), ale istnieje spore ryzyko niepowodzenia do 30 lat, co oznacza, że przedmioty muszą być \"starzone\" jak wino, aby mogły być uznane za prawdziwe orichalcum. Przerabianie istniejącego orichalcum, choć nieco łatwiejsze niż wykuwanie go od podstaw, wiąże się z tymi samymi problemami, przez co blokuje produkcję przemysłową i ogranicza ją do użytku rzemieślniczego. Można je znaleźć w starych zbrojach i broni, ale także w drogich sztućcach i tym podobnych. Wciąż istnieje aktywna społeczność hobbystów i ekspertów rzemieślniczych, ale orichalcum, jak wiele innych magicznych zjawisk, nie nadaje się dla współczesnego społeczeństwa.\"" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" +"W tutejszym centrum handlowym były zamieszki. Jedyne wytłumaczenie, jakie " +"mam, to że jakiś idiota eksperymentował z zaklęciem masowego szału. Nie bez " +"powodu takie zaklęcia są objęte tajemnicą wojskową…" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -257038,9 +268246,9 @@ msgid "" "human candy! Are you a real monster? Will you be able to devour it all?\"" msgstr "" "Ulotka jakiegoś rodzaju słodyczy. Widać na niej zdjęcie błyszczącego " -"człowieka wykonanego z gładkiego cukierka, który patrzy na Ciebie z " -"przerażeniem. \"SugarKin pierwszy naturalnej wielkości ludzki cukierek! Czy " -"jesteś prawdziwym potworem? Czy będziesz w stanie pożreć wszystko?\"" +"człowieka wykonanego z gładkiego cukierka, który patrzy na ciebie z " +"przerażeniem. „SugarKin: pierwszy naturalnej wielkości ludzki cukierek! Czy " +"jesteś prawdziwym potworem? Czy będziesz w stanie pożreć wszystko?”." #: lang/json/speech_from_json.py msgid "\"Hello?\"" @@ -258340,11 +269548,11 @@ msgstr "radosny głos mówiący \"Kliencie? Będziemy przyjaciółmi na zawsze, #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" -"neutralny głos mówiący \"Kliencie, muszę cię poinformować, że przydzielony " -"mi czas dla ciebie wkrótce się skończy.\"" +"neutralny głos mówiący „Kliencie, muszę cię poinformować, że przydzielony mi" +" czas dla ciebie wkrótce się skończy”." #: lang/json/speech_from_json.py msgid "" @@ -258526,20 +269734,20 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "„Policja w drodze. Zostań tam, gdzie jesteś!”" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" -msgstr "\"ekspresywne ćwierkanie.\"" +msgid "visceral chittering." +msgstr "ekspresywne ćwierkanie." #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" -msgstr "\"czyste wysokie buczenie.\"" +msgid "a clear, high-pitched hum." +msgstr "czyste wysokie buczenie." #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" -msgstr "\"buczenie elektryczności statycznej.\"" +msgid "the hum of static electricity." +msgstr "buczenie elektryczności statycznej." #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" -msgstr "\"niski buczący dźwięk.\"" +msgid "a low buzzing sound." +msgstr "niski buczący dźwięk." #: lang/json/speech_from_json.py msgid "\"I AM FOODPERSON. AND I BRING SUSTENANCE!\"" @@ -258614,128 +269822,133 @@ msgid "" msgstr "\"Foodplace to jedyny wybór drogi do zdrowego i silnego cyklu życia!!\"" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "Chcesz się ze mną pobawić?" +msgid "\"Wanna play with me?\"" +msgstr "„Chcesz się ze mną pobawić?”." + +#: lang/json/speech_from_json.py +msgid "\"Sing with me!\"" +msgstr "„Zaśpiewaj ze mną!”." #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "Zaśpiewaj ze mną!" +msgid "\"I love you!\"" +msgstr "„Kocham cię!”." #: lang/json/speech_from_json.py -msgid "Please take me with you!" -msgstr "Proszę weź mnie ze sobą!" +msgid "\"Please take me with you!\"" +msgstr "„Proszę, weź mnie ze sobą!”." #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "Mogę ciasteczko?" +msgid "\"May I have a cookie?\"" +msgstr "„Mogę ciasteczko?”." #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "Zagrajmy razem!" +msgid "\"Let's play together!\"" +msgstr "„Zagrajmy razem!”." #: lang/json/speech_from_json.py -msgid "Time to play!" -msgstr "Czas na zabawę!" +msgid "\"Time to play!\"" +msgstr "„Czas na zabawę!”." #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" -msgstr "Mniam, mniam! Pychota!" +msgid "\"Om nom nom! Delicious!\"" +msgstr "„Mniam, mniam! Pychota!”." #: lang/json/speech_from_json.py -msgid "Are you my mommy?" -msgstr "Jesteś moją mamusią?" +msgid "\"Are you my mommy?\"" +msgstr "„Jesteś moją mamusią?”." #: lang/json/speech_from_json.py -msgid "Oh, how fun!" -msgstr "O, jak fajnie!" +msgid "\"Oh, how fun!\"" +msgstr "„O, jak fajnie!”." #: lang/json/speech_from_json.py -msgid "You're my best friend!" -msgstr "Jesteś moim najlepszym przyjacielem!" +msgid "\"You're my best friend!\"" +msgstr "„Jesteś moim najlepszym przyjacielem!”." #: lang/json/speech_from_json.py -msgid "Heehee!" -msgstr "Heehee!" +msgid "\"Heehee!\"" +msgstr "„Hihi!”." #: lang/json/speech_from_json.py -msgid "Let's have fun!" -msgstr "Pobawmy się!" +msgid "\"Let's have fun!\"" +msgstr "„Pobawmy się!”." #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" -msgstr "Zróbmy przyjęcie herbaciane!" +msgid "\"Let's have a tea party!\"" +msgstr "„Zróbmy przyjęcie herbaciane!”." #: lang/json/speech_from_json.py -msgid "You're the best!" -msgstr "Jesteś najlepszy!" +msgid "\"You're the best!\"" +msgstr "„Jesteś najlepszy!”." #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." -msgstr "Nie powinieneś był tego robić." +msgid "\"You shouldn't have done that.\"" +msgstr "„Nie powinieneś był tego robić”." #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." -msgstr "Zagrajmy... w rosyjską ruletkę." +msgid "\"Let's play… Russian roulette.\"" +msgstr "„Zagrajmy… w rosyjską ruletkę”." #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "Nienawidzę cię." +msgid "\"I hate you.\"" +msgstr "„Nienawidzę cię”." #: lang/json/speech_from_json.py -msgid "Go kill yourself!" -msgstr "Idź się zabij!" +msgid "\"Go kill yourself!\"" +msgstr "„Idź się zabij!”." #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" -msgstr "Wielki Brat patrzy..." +msgid "\"Big Brother is watching you…\"" +msgstr "„Wielki Brat patrzy…”." #: lang/json/speech_from_json.py -msgid "Die for me!" -msgstr "Umrzyj dla mnie!" +msgid "\"Die for me!\"" +msgstr "„Umrzyj dla mnie!”." #: lang/json/speech_from_json.py -msgid "Why won't you die?" -msgstr "Czemu nie umierasz?" +msgid "\"Why won't you die?\"" +msgstr "„Czemu nie umrzesz?”." #: lang/json/speech_from_json.py -msgid "Blood… Delicious." -msgstr "Krew... pyszna." +msgid "\"Blood… Delicious.\"" +msgstr "„Krew… Pyszna”." #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" -msgstr "Do zobaczenia... W PIEKLE!" +msgid "\"See you… IN HELL!\"" +msgstr "„Do zobaczenia… W PIEKLE!”." #: lang/json/speech_from_json.py msgid "AAAIEEEEEEE!" msgstr "AAAIEEEEEEE!" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" -msgstr "PIEPRZ SIĘ!" +msgid "\"FUCK YOU!\"" +msgstr "„PIERDOL SIĘ!”." #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" -msgstr "Co zrobiłeś z moją mamusią?" +msgid "\"What did you do with my Mommy?\"" +msgstr "„Co zrobiłeś z moją mamusią?”." #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" -msgstr "Zostań ze mną... na zawsze!" +msgid "\"Stay with me… forever!\"" +msgstr "„Zostań ze mną… na zawsze!”." #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "Hej dzieciaki. Chcecie cukierki?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "„Hej dzieciaki. Chcecie cukierki?”." #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" -msgstr "Tu w dole, oni WSZYSCY płyną!" +msgid "\"Down here, they ALL float!\"" +msgstr "„Tu w dole, oni WSZYSCY płyną!”." #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" -msgstr "Czy naprawdę potrzebujesz aż tylu pieniędzy?" +msgid "\"Do you really need that much honey?\"" +msgstr "„Czy naprawdę potrzebujesz aż tylu pieniędzy?”." #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" -msgstr "Mój poprzedni właścicielka kwiczała jak świnia, gdy ją oprawiłem." +msgid "\"My previous owner squealed like a pig when I gutted her!\"" +msgstr "" +"„Moja poprzednia właścicielka kwiczała jak świnia, gdy ją oprawiłem!”." #: lang/json/speech_from_json.py msgid "BARK!" @@ -258750,20 +269963,16 @@ msgid "WOOF!" msgstr "ŁUF!" #: lang/json/speech_from_json.py -msgid "heavy breathing" -msgstr "ciężki oddech" - -#: lang/json/speech_from_json.py -msgid "labored breathing" -msgstr "utrudzony oddech" +msgid "labored breathing." +msgstr "utrudzony oddech." #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "skomlenie" +msgid "a whimper." +msgstr "skomlenie." #: lang/json/speech_from_json.py -msgid "a rasping growl" -msgstr "chrypiący warkot" +msgid "a rasping growl." +msgstr "chrypiący warkot." #: lang/json/speech_from_json.py msgid "\"I have no mouth and yet I scream!\"" @@ -259851,7 +271060,7 @@ msgstr "Schron - centralny słup (zdewastowany)" #: lang/json/start_location_from_json.py msgid "Refugee Center" -msgstr "Centrum dla uchodźców" +msgstr "Centrum uchodźców" #: lang/json/start_location_from_json.py msgid "House (boarded up)" @@ -259873,6 +271082,10 @@ msgstr "Sklep spożywczy" msgid "Gun Store" msgstr "Sklep z bronią" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "Garaż" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "Lombard" @@ -259899,7 +271112,7 @@ msgstr "Księgarnia" #: lang/json/start_location_from_json.py msgid "Cabin" -msgstr "Chata" +msgstr "Domek" #: lang/json/start_location_from_json.py src/gamemode_defense.cpp msgid "Hospital" @@ -259947,7 +271160,7 @@ msgstr "Głęboko zamarznięte laboratorium naukowe" #: lang/json/start_location_from_json.py msgid "Cargo area Trans-Coast Logistics" -msgstr "" +msgstr "Obszar ładunkowy Trans-Coast Logistics" #: lang/json/start_location_from_json.py msgid "Mall (loading area)" @@ -259959,7 +271172,7 @@ msgstr "Mall (strefa gastronomiczna)" #: lang/json/start_location_from_json.py msgid "Fire Station" -msgstr "Posterunek straży pożarnej" +msgstr "Remiza strażacka" #: lang/json/start_location_from_json.py msgid "Police Station" @@ -260736,7 +271949,7 @@ msgstr "Chciałem tylko przez chwilę pogadać." #: lang/json/talk_topic_from_json.py msgid "Can you help me understand something? (HELP/TUTORIAL)" -msgstr "Czy możesz mi pomóc coś zrozumieć? ( POMOC/TUTORIAL)" +msgstr "Czy możesz mi pomóc coś zrozumieć? (POMOC/SAMOUCZEK)" #: lang/json/talk_topic_from_json.py msgid "I'm going to go my own way for a while." @@ -261423,6 +272636,10 @@ msgstr "Proszę zajmij się pracami budowlanymi jakie jesteś w stanie wykonać. msgid "Please do any mining work that you can." msgstr "Proszę zajmij się pracami wydobywczymi jakie jesteś w stanie wykonać." +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "Proszę idź umyj mopem okolicę." + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "Proszę ucz się z książki." @@ -261441,7 +272658,7 @@ msgstr "Proszę potnij kłody na deski." #: lang/json/talk_topic_from_json.py msgid "Please butcher any corpses that you can." -msgstr "Proszę zajmij się rzeźnictwem." +msgstr "Zajmij się proszę cięciem dowolnych zwłok jakie możesz." #: lang/json/talk_topic_from_json.py msgid "Please chop any trees in the designated areas." @@ -262468,7 +273685,7 @@ msgstr "" " Jeśli zarówno ty, jak i twój towarzysz macie radia dwukierunkowe, możesz zdalnie przydzielać misje towarzyszowi, rozmawiając przez radio.\n" " Kiedy poprosisz towarzysza o założenie obozu, zbuduje on tablicę ogłoszeń w aktualnym miejscu, a to spowoduje założenie obozu frakcji na tym kafelku mapy. Obóz frakcji ma centralny kafel, na którym znajduje się tablica ogłoszeń, i ewentualnie jedno lub więcej rozszerzeń, które znajdują się na sąsiednich kaflach.\n" " Wszystkie obozy frakcji mogą być zaopatrzone w jedzenie, a twoi towarzysze będą spożywać je podczas wykonywania misji obozowych, a nawet gdy będą po prostu głodni w pobliżu obozu.\n" -" Obecnie obozy frakcji mogą być tworzone na polach, w jednym typie straży pożarnej i we wszystkich schronach ewakuacyjnych. Możesz założyć obóz frakcji poprzez rozmowę z przyjaznym NPC, który stoi na odpowiednim terenie, zapytać o obozy frakcji, a następnie powiedzieć NPC, aby zbudował obóz frakcji. Natychmiast stworzy on tablicę ogłoszeń. Jeśli nie masz możliwości poproszenia NPC o zbudowanie obozu frakcji, to znaczy, że nie stoisz na odpowiednim terenie. Zamiast tego, będziesz mógł poprosić NPC o listę odpowiednich miejsc startowych." +" Obecnie obozy frakcji mogą być tworzone na polach, w jednym typie remizy strażackiej i we wszystkich schronach ewakuacyjnych. Możesz założyć obóz frakcji poprzez rozmowę z przyjaznym NPC, który stoi na odpowiednim terenie, zapytać o obozy frakcji, a następnie powiedzieć NPC, aby zbudował obóz frakcji. Natychmiast stworzy on tablicę ogłoszeń. Jeśli nie masz możliwości poproszenia NPC o zbudowanie obozu frakcji, to znaczy, że nie stoisz na odpowiednim terenie. Zamiast tego, będziesz mógł poprosić NPC o listę odpowiednich miejsc startowych." #: lang/json/talk_topic_from_json.py msgid "Wait, we can talk with radios?" @@ -262518,7 +273735,7 @@ msgstr "" "Obecnie istnieją trzy rodzaje obozów, które możesz zacząć budować: modułowe obozy polowe, obozy w remizie strażackiej i obozy w schronie ewakuacyjnym. Kiedyś istniał czwarty, zwany prymitywnym obozem polowym, ale nie możesz go już założyć, możesz go tylko ulepszyć.\n" " Modułowe obozy polowe są najbardziej elastycznym rodzajem obozu, ponieważ można je budować prawie wszędzie i można je zlokalizować tak, aby mieć dużo miejsca na rozbudowę, ale zaczynasz z niczym na polu i musisz zbudować każdy budynek, więc mogą wymagać dużo zasobów. Obozy remiz i schronów ewakuacyjnych są szybsze do zbudowania, ponieważ zaczynasz w istniejącym budynku, ale musisz je założyć w istniejącym budynku i może nie być miejsca na rozbudowę.\n" " Każda lokalizacja obozu będzie miała różne misje ulepszeń. Poszczególne misje mają swoje opisy. Ogólnie rzecz biorąc, jeśli chcesz rozbudować obóz, musisz założyć w nim kwaterę mieszkalną, a niektóre misje, takie jak polowanie czy rekrutacja, wymagają posiadania jakiejś kuchni lub biura, które możesz wykorzystać do planowania działań.\n" -" Niezależnie od tego, jaki rodzaj obozu stworzysz, musisz go założyć, prosząc NPC o zbudowanie obozu. Opcję założenia obozu otrzymasz tylko wtedy, gdy będziesz stał w odpowiednim miejscu." +" Niezależnie od tego, jaki rodzaj obozu stworzysz, musisz go założyć, prosząc NPC o zbudowanie obozu. Opcję założenia obozu otrzymasz tylko wtedy, gdy będziesz stać w odpowiednim miejscu." #: lang/json/talk_topic_from_json.py msgid "Tell me about modular field camps." @@ -262526,7 +273743,7 @@ msgstr "Powiedz mi o modułowych obozach polowych." #: lang/json/talk_topic_from_json.py msgid "Tell me about fire station camps." -msgstr "Powiedz mi o obozach w straży pożarnej." +msgstr "Powiedz mi o obozach w remizie strażackiej." #: lang/json/talk_topic_from_json.py msgid "Tell me about evac shelter camps." @@ -262548,10 +273765,10 @@ msgid "" msgstr "" "Modułowe obozy polowe są najbardziej elastycznym rodzajem obozu, ale ich budowa wymaga dużo czasu i środków. Zaczynasz od pustego pola - i to musi być prawdziwe puste pole, a nie pole na ranczu czy farmie - i budujesz od zera. Możesz budować z szachulca, jeśli lubisz prymitywizm, z paneli drewnianych, jeśli masz dużo gwoździ, z blachy, jeśli jesteś spawaczem lub z namiotów, jeśli się spieszysz.\n" " Zaczynasz od zbudowania szałasu i łóżka w północno-wschodnim rogu obozu centralnego, a następnie dodajesz miejsce na ognisko i rozbudowujesz, aż powstanie małe schronienie dla dwóch osób. Kiedy to się skończy, możesz rozbudować obóz na różne sposoby:\n" -" 1. Możesz zbudować do 5 dodatkowych pokoi lub szop, po 3 z każdej strony obozu.\n" -" 2. Możesz wybudować centralny budynek w południowej połowie obozu, pomiędzy pokojami. Centralny budynek będzie działał jako centrum dowodzenia, pozwalając twojemu obozowi wykonywać misje polowania, rekrutacji i patroli bojowych.\n" +" 1. Możesz zbudować do 5 dodatkowych pokoi lub chat, po 3 z każdej strony obozu.\n" +" 2. Możesz wybudować budynek główny w południowej połowie obozu, pomiędzy pokojami. Budynek główny będzie działał jako centrum dowodzenia, pozwalając twojemu obozowi wykonywać misje polowania, rekrutacji i patroli bojowych.\n" " 3. Możesz wykopać okopy po wszystkich stronach obozu, które mogą ewentualnie łączyć się z pokojami po bokach, aby zminimalizować ilość wykopów, które musisz wykonać.\n" -" 4. Możesz zbudować różne małe elementy, takie jak ziemianki, aby przechowywać żywność lub wieżę radiową, aby łatwiej było rekrutować więcej towarzyszy. Każda nowa konstrukcja w modułowym obozie może być wykonana z innego materiału, więc nie jesteś ograniczony tym, z czym zaczynasz. Namioty są szybkie do rozstawienia, ale kruche i mogą zostać zniszczone przez zombie. Centralny budynek musi być wykonany z szachulca, drewna lub metalu, a wymaga więcej materiałów, jeśli boczne pomieszczenia są wykonane z namiotów." +" 4. Możesz zbudować różne małe elementy, takie jak ziemianki, aby przechowywać żywność lub wieżę radiową, aby łatwiej było rekrutować więcej towarzyszy. Każda nowa konstrukcja w modułowym obozie może być wykonana z innego materiału, więc nie ogranicza cię to, z czym zaczynasz. Namioty są szybkie do rozstawienia, ale kruche i mogą zostać zniszczone przez zombie. Budynek główny musi być wykonany z szachulca, drewna lub metalu, a wymaga więcej materiałów, jeśli boczne pomieszczenia są wykonane z namiotów." #: lang/json/talk_topic_from_json.py msgid "Got it. Tell me about expansions." @@ -262590,16 +273807,16 @@ msgid "" " Fabrication Workshop: This is a large expansion for doing all kinds of crafts. Companions can use some of the furniture in this expansion to craft some items much faster than you can do by yourself by hand.\n" " Central Storage Building: This is a large building for storing goods." msgstr "" -"Każdy obóz może mieć do 6 rozszerzeń, po jednym dla każdej sypialni, z każdym rozszerzeniem na sąsiadującym kafelku mapy. Rozszerzenia zwiększają możliwości obozu, np. dodając pole uprawne lub manufakturę, w której można wytwarzać różne rzeczy.\n" +"Każdy obóz może mieć do 6 rozszerzeń, po jednym dla każdej sypialni, z każdym rozszerzeniem na sąsiadującym kafelku mapy głównej. Rozszerzenia zwiększają możliwości obozu, np. dodając pole uprawne lub manufakturę, w której można wytwarzać różne rzeczy.\n" " Do każdego rozszerzenia potrzebne są dwa łóżka w pokoju w centralnym obozie, a obecnie rozszerzenia mogą być budowane tylko na polach i muszą być budowane od podstaw.\n" -"Misje ekspansji pojawiają się w osobnych zakładkach na tablicy ogłoszeń, jeden zestaw misji na lokację, i musisz nacisnąć 'tab', aby je zobaczyć. Obecnie dostępne są następujące rozszerzenia:\n" -"-- Farma: Jest to cały kafelek zaoranych pól, które możesz utrzymywać lub wysyłać towarzyszy na misje, aby je utrzymywali. Normalnie rosną tu rośliny.\n" -"-- Garaż: Jest to duży budynek. Towarzysze mogą być wysyłani tutaj na misje, aby rozmontować pojazdy. Oczywiście, możesz również przydzielić towarzyszy do demontażu pojazdów bez garażu, więc to rozszerzenie nie jest zbyt użyteczne.\n" -"-- Kantyna: Jest to rozbudowana kuchnia, jadalnia i spiżarnia.\n" -"-- Zagroda hodowlana: Jest to modułowy zestaw budynków do hodowli zwierząt gospodarskich, takich jak krowy, konie czy kurczaki. Zwierzęta nie są wliczone w cenę!\n" -"-- Warzelnia soli: Jest to mała rozbudowa do przetwarzania soli.\n" -"-- Warsztat rzemieślniczy: Jest to duże rozszerzenie do wykonywania wszelkiego rodzaju rzemiosł. Towarzysze mogą użyć niektórych mebli w tym rozszerzeniu, aby wykonać niektóre przedmioty znacznie szybciej niż ty sam możesz to zrobić ręcznie.\n" -"-- Centralny budynek magazynowy: Jest to duży budynek do przechowywania towarów." +"Misje ekspansji pojawiają się w osobnych zakładkach na tablicy ogłoszeń, jeden zestaw misji na lokację i musisz nacisnąć „tab”, aby je zobaczyć. Obecnie dostępne są następujące rozszerzenia:\n" +"-- Farma: jest to cały kafelek zaoranych pól, które możesz utrzymywać lub wysyłać towarzyszy na misje, aby je utrzymywali. Normalnie rosną tu rośliny.\n" +"-- Garaż: jest to duży budynek. Towarzysze mogą być wysyłani tutaj na misje, aby rozmontować pojazdy. Oczywiście, możesz również przydzielić towarzyszy do demontażu pojazdów bez garażu, więc to rozszerzenie nie jest zbyt użyteczne.\n" +"-- Stołówka: jest to rozbudowana kuchnia, jadalnia i spiżarnia.\n" +"-- Zagroda hodowlana: jest to modułowy zestaw budynków do hodowli zwierząt gospodarskich, takich jak krowy, konie czy kurczaki. Zwierzęta nie są wliczone w cenę!\n" +"-- Warzelnia soli: jest to mała rozbudowa do przetwarzania soli.\n" +"-- Warsztat rzemieślniczy: jest to duże rozszerzenie do wykonywania wszelkiego rodzaju rzemiosł. Towarzysze mogą użyć niektórych mebli w tym rozszerzeniu, aby wykonać niektóre przedmioty znacznie szybciej niż ty sam możesz to zrobić ręcznie.\n" +"-- Główny budynek magazynowy: jest to duży budynek do przechowywania towarów." #: lang/json/talk_topic_from_json.py msgid "Got it. Give me some advice on building a camp." @@ -262616,7 +273833,7 @@ msgstr "" "Założenie obozu nie zajmuje dużo czasu, a możesz użyć obozu frakcji, aby utrzymać swoich towarzyszy bez potrzeby regularnego dawania im jedzenia, więc dobrym pomysłem jest założenie minimalnego obozu gdziekolwiek zamierzasz być przez jakiś czas.\n" "Jak bardzo chcesz rozbudować swoje obozy, zależy od ciebie. Modułowy obóz polowy może być bardzo zasobożerny, ale zbudowanie go pozwoli ci wysyłać towarzyszy na polowania i farmy, więc jest to całkiem opłacalne. Jeśli nic więcej, powinieneś rozważyć ulepszenie namiotu na północnym wschodzie do stanu, w którym będziesz mógł zbudować studnię z wodą, lub jeśli zacząłeś z remizą lub schronem ewakuacyjnym, powinieneś zbudować studnię z wodą tak szybko, jak to możliwe.\n" "Jeśli masz dostęp do remizy strażackiej lub schronu ewakuacyjnego, możesz zbudować w nich swój obóz. Oba te obozy są bardzo kompaktowe, ale mają wiele z tych samych funkcji, co ulepszony obóz polowy, nie wymagając przy tym tak wielu zasobów.\n" -"Jeśli rozbudowujesz swój obóz, rozważ rozpoczęcie od farmy lub warsztatu. Farma ułatwi Ci uprawę żywności, podczas gdy warsztat pozwoli Ci na wytworzenie niektórych zasobów potrzebnych do rozbudowy obozu.\n" +"Jeśli rozbudowujesz swój obóz, rozważ rozpoczęcie od farmy lub warsztatu. Farma ułatwi ci uprawę żywności, podczas gdy warsztat pozwoli ci na wytworzenie niektórych zasobów potrzebnych do rozbudowy obozu.\n" "Stołówka, warzelnia soli, zagroda dla zwierząt i magazyn prawdopodobnie nie powinny być pierwszymi rozszerzeniami, ale wszystkie mają swoje zastosowanie." #: lang/json/talk_topic_from_json.py @@ -263355,7 +274572,7 @@ msgstr "To odpowiedź testowa - u_buy_item - butelka piwa" #: lang/json/talk_topic_from_json.py msgid "This is a u_spawn_item plastic bottle response" -msgstr "" +msgstr "To odpowiedź testowa - u_spawn_item - plastikowa butelka" #: lang/json/talk_topic_from_json.py msgid "This is a u_spend_cash response" @@ -263379,7 +274596,7 @@ msgstr "To odpowiedź testowa - npc_consume_item - piwo" #: lang/json/talk_topic_from_json.py msgid "This is a u_spawn_item beer response" -msgstr "" +msgstr "To odpowiedź testowa - u_spawn_item - piwo" #: lang/json/talk_topic_from_json.py msgid "This is a u_consume_item beer response" @@ -264570,9 +275787,9 @@ msgid "" "bag o' potatoes, but a real big bag iff'n y'catch m'drift." msgstr "" "Cholerny łoś! Urządził się w strażnicy leśnej! Niemal wziął Rdzawego na " -"rogi, ale ten wypalił z 18tki i zrobił wielka dziurę w futrze zwierza. Stara" -" 18-tka pobiegła na wzgórza ale ją wytropiliśmy. Łoś poturlał się jak wór " -"kartofli, ale taki wielki wór, jeśli wiesz co mam na myśli." +"rogi, ale ten wypalił z osiemnastki i zrobił wielka dziurę w futrze zwierza." +" Stara osiemnastka pobiegła na wzgórza ale ją wytropiliśmy. Łoś poturlał się" +" jak wór kartofli, ale taki wielki wór, jeśli wiesz co mam na myśli." #: lang/json/talk_topic_from_json.py msgid "I catch your drift." @@ -265558,7 +276775,7 @@ msgid "" "rumours they were even bombing some of the urban centers to try to control " "it - which, I have to admit, is maybe a bit too hard-core." msgstr "" -"Co to jest, jakiś Powrót do Przyszłości? Jak mogłeś nie wiedzieć, co się " +"Co to jest, jakiś „Powrót do przyszłości”? Jak mogłeś nie wiedzieć, co się " "stało? Świat się cholernie skończył, ot co. I nie zaczęło się to od " "trzęsienia ziemi, ptaków, węży czy samolotów. Zaczęło się od zamieszek i " "musieli wysłać policję, a potem wojsko, żeby zajęło się przestępcami. Rząd " @@ -269042,9 +280259,9 @@ msgstr "" "Kiedy to się stało, kataklizm, coś… zmieniło się. Możesz to zobaczyć we " "wszystkich stworzeniach, ale przede wszystkim w ich kościach. Łamią się, " "przekształcają, powstają ponownie, w nieskończonym cyklu. Martwi znów " -"kroczą, potwory rozrywają się i drą wzajemnie na kawałki. A w każdym z " -"nich... cichy szum czystej siły. I tylko zabranie kości kończy cykl - ich " -"historia, pieśń, ich siła, stają się twoje, by z nich korzystać." +"kroczą, potwory rozrywają się i drą wzajemnie na kawałki. A w każdym z nich…" +" cichy szum czystej siły. I tylko zabranie kości kończy cykl - ich historia," +" pieśń, ich siła, stają się twoje, by z nich korzystać." #: lang/json/talk_topic_from_json.py msgid "So what do you actually do with the bones?" @@ -269148,8 +280365,8 @@ msgid "" " of the world, but I don't think Cooper realises it. To him, the end " "justifies any means." msgstr "" -"Zaczął zabijać innych, by mieć ich kości jak najświeższe. Później... zaczął " -"rzeźbić kości żywych. Myślał, że sama udręka wzmocni pieśń. Celem jest " +"Zaczął zabijać innych, by mieć ich kości jak najświeższe. Później… zaczął " +"strugać kości żywych. Myślał, że sama udręka wzmocni pieśń. Celem jest " "wypędzenie cienia Kataklizmu, a nie jego wywołanie. Takie haniebne czyny " "prawdopodobnie spaczą pieśń świata, ale nie sądzę, by Cooper zdawał sobie z " "tego sprawę. Dla niego cel uświęca środki." @@ -269228,7 +280445,7 @@ msgstr "" #: lang/json/talk_topic_from_json.py msgid "I… thank you." -msgstr "Ja... dziękuję ci." +msgstr "Ja… dziękuję ci." #: lang/json/talk_topic_from_json.py msgid "" @@ -270403,7 +281620,7 @@ msgid "" "brought me straight to the shore of this little island. I still don't " "understand by what miracle I managed to survive, ." msgstr "" -" Niestety, podczas mojej \"podróży\" do tej latarni szczęście się ode mnie " +" Niestety, podczas mojej „podróży” do tej latarni szczęście się ode mnie " "odwróciło. Zostałem zaatakowany przez jakiegoś z podwodnych " "głębin. Nie zdołałem go odeprzeć i pociągnął mój statek na dno. Fale " "przyniosły mnie prosto do brzegu tej małej wysepki. Do dziś nie rozumiem " @@ -270435,6 +281652,966 @@ msgstr "" msgid "I'm glad you are OK." msgstr "Czeszę się że jesteś cały." +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "Co masz na handel?" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "Nie rozumiem ani słowa z tego co mówisz." + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "Jesteś jakimś robotem?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" +"[int 9] Jesteście nazywani exodii? Czy to znaczy, że zostaliście wypędzeni " +"ze swojego domu?" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "Co to za miejsce?" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "[per 6] Niektóre z tych technologii wyglądają... dziwnie." + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" +"Chciałeś wcześniej zadać mi kilka pytań i chyba byłem niegrzeczny w tej " +"kwestii. O co chciałeś zapytać?" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "Czy możemy kontynuować naszą rozmowę o twoim przybyciu na ten świat?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" +"Możesz mnie zamienić w cyborga TU I TERAZ? Jestem deweloperem tej gry, " +"wiesz." + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "Chyba jestem gotów spróbować zostać cyborgiem." + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" +"Czy jest szansa, że pomożesz mi zdobyć kilka z tych cudownych bionicznych " +"ulepszeń?" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "Czy możesz mi pomóc z operacją KMB?" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "Nawrōt w mrugniyńcie ôka, co?" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "Zapōmniołś czegoś?" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "Ije, wrōciōłś sie, to miarkujã." + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "I piykny nawrōt, kamracie." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "Dobrze i durch niy umrziłś. Co cie przikludzŏ do Rubikowej ôkolice?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" +"Jasny i szpaśny, wrōciōłś! Mam dlŏ ciebie tŏwŏr, jeźli ty mŏsz tŏwŏr dlŏ " +"mie." + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "Oj, niy je żeś umrzity. Mŏsz szkrabkã na handel?" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "Kim jesteś? Co to za miejsce?" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "Przyniosłem dla ciebie te zestawy anestezjologiczne. Możesz mi pomóc?" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "Właściwie to chciałem porozmawiać." + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "Nie, do diabła, wynoszę się stąd." + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "Wpadłem tylko się przywitać. Do zobaczyska." + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" +"Nazywōmy sie exodii, co? I inksze rzeczy, ale to dobrze. To je nasz dōm, " +"taki, jaki je. Nazywōm sie Rubik i ôstołch przidzielōny do handlu z wami. " +"Chcecie handlować? Dycki szukōmy złoma, metalu i niy ino." + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "Pora na mnie. Do zobaczenia!" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "Dobrze tōż." + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "Jak sie przekōnŏsz, tak bydzie." + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "Za szkartã i mrugniyńcie ôkym, co?" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "O czym to mówiłeś wcześniej?" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" +"Na pewnikym możesz sprōbować. Niy je żech nojlepszym gŏdŏczym, a niy bydã " +"rōntym gŏdać za darmo, wiysz." + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "Te, mogã cie nojprzōd ô coś spytać?" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "Na przykład, zadać mi pytanie? Pewnie, że tak." + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" +"Nie. Jestem zbyt zajęty, by odpowiadać na twoje pytania, ty masz odpowiadać " +"na moje. Chyba już pójdę." + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "Wiela czasu minōńć ôd tego bajzlu?" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "[Powiedz im]" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" +"Dziynkujã ci. Kedy ty i Rubik trefiyliście sie po rŏz piyrszy, wiela czasu " +"minōńć ôd zaczōntku tego bajzlu?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" +"Szumle! Benzete bydzie pŏrōm, to je szlak! To znaczy, iże bydōm w sōm rŏz " +"szczyńśliwi. To je jejich piyrszy hib, a to je żymła z masłym." + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "Co sprawia, że to taki dobry skok?" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "Kto to jest Benzete?" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "Czy możemy porozmawiać o czymś innym?" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "Muszę lecieć. Na razie, Rubik." + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" +"I tak ôto, jak sie spōminōm, gŏdōmy o Benzete i jeji piyrszy wielgi hib." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" +"Muszymy ôpuścić stary świat, zatym bydzie spotrzebowany aże do dziōnzn, " +"miarkujesz, i znojść miyły, dyrgajōncy świat po drugij zajcie. Twoja umrzitŏ" +" ziymia bydzie wyglancowanŏ." + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "Chyba nie nadążam za tym co mówisz." + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" +"[int 9] To znaczy, że mamy dla was ładny, świeżo umarły świat, który możecie" +" odwiedzić?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" +"Zrozumiołch. Tak tōż, wrōg je nowy tukej, a my mōmy pŏrã dobrych godzin w " +"klarze przed dalszym hibu." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" +"Och, to znaczy, że dotarłeś tu na początku kataklizmu. Dlaczego to jest " +"takie dobre?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" +"To była tajla i pōmiana, ale to było miyłe dlŏ wszyjskich, bez ôstatni hib " +"bez gowy. Na inkszych ziymiach, kaj sōm fusilli i mobbingi, my mōmy na tym " +"niyzłõ pōmianã." + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "Nie wiem co to są te fusilli i mobbingi." + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" +"Prawie chytŏsz! To i to je miyłe dlŏ wszyjskich, ô niebo lepsze ôd ôstatnigo" +" hibu. W inkszych ziymiach z fusilli i mobbingami, my dostŏwōmy na tym " +"niyzłõ pōmianã." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" +"To była tajla i pōmiana, ale to było miyłe dlŏ wszyjskich, bez ôstatni hib " +"bez gowy. Na inkszych ziymiach, kaj sōm fusilli i mobbingi, my mōmy na tym " +"niyzłõ pōmianã." + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" +"[int 7] Brzmi jakbyś miał na myśli, że fusilly to pistolet, a mobbing to " +"samochód?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" +"Tak dyrekt, napiszymy to w ksiyndze słōw. Proszã, blyszczōncy grosz z " +"mesingu za przejŏzd bez krŏj." + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "Kto to benzete?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" +"To auslynder ôd trzech hibōw i pōmian, szyroki jak niebo. Ôni majōm " +"szczyńśliwie na coś do śledzyniŏ, miarkujesz?" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "Ja... nie bardzo nadążam." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "Hmm. Ôni... zaplanowali ôstatni hib? Jak uczyń starego marynŏrza." + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "Oh, jak nawigator?" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "Prŏwda, to trŏfne słowo, wiym ô tym." + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "Powiedziałeś, że to był szczególnie dobry skok?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" +"Tak, możesz nŏs tak nazywać. Sōm z inkszych krajin, jak nojbarzij. Ale niy z" +" inkszych światōw. Za wiela ryzykowne, by przikludzić do nŏs tych miynkich." + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "Nie znam różnicy między innymi krainami a innymi światami." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" +"Pewnie, iże tak i to srogi kłopeć. Inksze światy sōm placym, skōnd sie " +"wziōnły te żadne stworzyniŏ, kere mŏcie tukej, co? Chodzōnce rośliny, " +"gŏdajōnce grziby i take tam. Inksze krajiny to barzij przŏcielstwo. Jŏ je " +"żech z Ziymie, ale moja Ziymia je inkszŏ. Tōż niy winniście pytać, co exodii" +" robiōm na Ziymi, bo niykerzi czujōm sie z nami dobrze i dobrze w dōma, a jŏ" +" to miarkujã. Wy winniście sie pytać, co exodii robi z waszymi zielōnymi i " +"brōnnymi." + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "W takim razie, co robisz, \"z nasze zielone i brązowe\"." + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "Opowiedz mi o swoim własnym świecie." + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" +"*staje się na chwilę nieobecny. \"Ah. Dōm. To dŏwne czasy, miarkujesz. Twōj " +"niyma za wiela daleko. Jŏ... niy sōndzã, cobych chcioł ô tym ôsprŏwiać. Za " +"dużo metalu na pōmianã terŏz i potym." + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "To przykre, może porozmawiajmy o czymś innym." + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "Co robisz, \"z nasze zielone i brązowe\"." + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "Jak to się stało, że jesteś zbudowany z metalu w taki sposób?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" +"Kebychmy widzieli, iże to drōga dlŏ gołymbi, poszołbych do ziymiōm. Wiym, " +"iże je ino jedna drōga, jeźli niy mam prziwstŏć do glidu." + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" +"Chyba wiem, co masz na myśli. Jedynym sposobem na przetrwanie jest... " +"\"ulepszenie\". Możesz mi w tym pomóc?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" +"Robot? Co to za prawiynie?\" Rubik zatrzymuje się na chwilę, jakby się " +"zastanawiając. \"Doczkej... Ije, autōmat? Niy, to je ciało i krew jak wy, " +"zawrzite we szupie z metalu i drōtu. Niy tak dużo ciała jak było. Drōt je " +"zmiynszać z ciałym i pływŏ w nim, wszyjsko za jedno, jasne." + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" +"[int 9] Więc jesteś pewnego rodzaju cyborgiem? To jest niesamowite. Jak mogę" +" stać się cyborgiem?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" +"Nie mam pojęcia, co masz na myśli. Jesteś czymś w rodzaju robota, ale jesteś" +" też z krwi i kości?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" +"Tak, to bez mokre wykazowi, miarkujã. Po trochã jedno i druge, ale Rubik bōł" +" kejś tak samo spokrewniōny, jak ty." + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "Czy możemy porozmawiać o czymś innym? To jest pogmatwane." + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" +"Baza żelazła, prŏwda? Kupa gōwna. Hned sie *spakujemy i bydymy śpiywać " +"razym." + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "Spakować to? Jak można spakować coś takiego?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" +"Bo jak inakszyj, musisz myśleć z tymi jedynŏstōma richtōngami, prŏwda? " +"Ôtworzimy bramã i bydymy dyrgać. Tak jak prziszlimy." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" +"Pewnie, iże możecie, aby trochã. My bydymy sie starać, jak mogymy, coby " +"ugŏdać sie po angelsku, ale wiycie, iże my sōm z inkszych krŏjōw i w " +"cołkości, to niyma take ajnfachowe." + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" +"[int lub per 7] Jak to się stało, że mówisz po angielsku, lub, uh, 'angliku'" +" w ten sposób?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" +"Ô tak, racyjŏ i tak. Kożdy i kożdŏ. Wandrujymy, radzymy sie. To je życie." + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "Co was wypędziło?" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "Tak jak ty ôstaniesz, miarkujesz. Wrōg. Umrzici." + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" +"Za iże sōm fechciŏrzami z Wiyrchnigo Lōndu, tak bydymy gŏdać. Wszyjscy z " +"naszego zielōnego i brōnnego świata gŏdajōm w tyn knif." + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "Opowiedz mi o \"starym Górnym Lądzie\". Jak wyglądał twój dom?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" +"Starōm sie, starōm sie, tak samo jak ty, miarkujesz. Ôstatni dōm stoł sie " +"trochã za wiela umrzity i popsuty na rantach. Trefiŏ sie nojlepszym. " +"Chyciōłch jakigoś bŏzna, dziynki kerymu przewiedzielimy sie ô twojim placu " +"tukej, ruszōłch stare dyrgōwki i bum! Terŏz to już ino tik-tak na zimmerze, " +"ôto sōm. Tym razym dobrze wyczułch czas, bo niy żōłś ôd pŏru dni, kedy sam " +"przibylimy. Nojbarzij świyży umarlŏk, jakigo widziano było w kuchynim " +"zlewie." + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "…co?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" +"[int lub per 9] Skąd się więc wzięliście? Jesteście kosmitami czy coś w tym " +"stylu?" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "Czy jest coś jeszcze, czego chcecie od tego miejsca?" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" +"Sōm sam, by żyć i dychać, prŏwda? Po tym jak naszŏ piyrwyjszŏ krajina stała " +"sie trochã za wiela umrzitŏ i w cołkości. Tōż my przibylimy do nowego placu." +" Tukej. I wiym, iże niyma sam jeszcze tak dugo umrzity." + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" +"[int lub per 9] Innych krain? Jesteście kosmitami czy coś w tym stylu?" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" +"Ôkrōm tego, coby miyszkać w takim miyłym placowi? Sōm grubiŏrzami, wiycie. " +"Zbiyrōmy resztōwki, wybadujymy, eli w waszyj cudzyj krajinie je jakŏś " +"technologijŏ wacha ôdwrōcyniŏ do gōry nogami. Niy mŏ synsu przizwolić, by " +"dobry szłom sie marniōł. Jeźli bydymy mieli szczyńście, znojdymy pŏrã nowych" +" exodii, zatym sie wyniesymy. Sebierymy kōncki naszych słodkich, " +"roztrzaśniyntych marzeń, i tym podane." + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" +"Co masz na myśli mówiąc \"zmarnuje się\"? Zombie nie używają złomu, a jest " +"go pod dostatkiem." + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" +"To je umrzitŏ krajina, miarkujesz. Jak mŏsz doległość autowõ, to niy " +"bydziesz śpiywoł. Niy mŏ medycyny na te szczury i błechy." + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "Co to do cholery znaczy?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" +"[int 8] Chcesz powiedzieć, że myślisz, że jesteśmy skazani na zagładę? Po co" +" byś tu przyszedł, gdyby nie było sposobu na przetrwanie?" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" +"Je tak jak je. Twoja ziymia je umrzitŏ, ale durch jeszcze kopije, to " +"wszyjsko." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" +"Chcesz powiedzieć, że myślisz, że jesteśmy skazani na zagładę? Po co byś tu " +"przyszedł, gdyby nie było sposobu na przetrwanie?" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" +"Oh, mogymy bujać sie jak trza. Ôdesyłōmy szłom, przinoszymy jedzynie i " +"sciepujymy z siebie złego abo trzech, miarkujesz. Nic dobrego dlŏ ciebie, " +"niy weznymy za wiela mocka miynsa i kostyry." + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "Cóż... możesz mi pomóc to zmienić?" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "Czekaj. Myślałem, że nadal jesteś ciałem i kością, pod tym metalem." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" +"Haha, niy z wiynksza, kamracie. Niy wacho ryzykować zgnitych, prŏwda? " +"Trzimiã to, co je Rubikiem, ale ôstatek je sztajfny." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" +"Dlŏ mie niy. Ale niy sōm z tyj ôkolice. Wyglōndŏ dobrze i dobrze dlŏ ciebie " +"jak sōndzã." + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "[int lub per 7] Nie stąd? Jesteście kosmitami czy coś w tym stylu?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" +"Jeźli je żeś połny i ôbfity, tyn chutnie wykōnŏ ôbsztalowanie, za " +"blyszczōncõ mōnetã." + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "Mam kilka rzeczy, które chciałbym zainstalować." + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "Czy byłbyś w stanie wyjąć jeden z moich implantów?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" +"Jasne i mogã zrobić z ciebie cyborga, sam i terŏz, jeźli je żeś deweloperem." + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "Do dzieła." + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "Zmieniłem zdanie. Co mówiłeś wcześniej?" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "Zmieniłem zdanie. Lepiej już pójdę. Do widzenia." + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" +"Oh HO! No, no. Terŏz gŏdŏsz po naszymu. Tak, my mogymy ci pōmōc, jeźli " +"bydziesz chcioł ôddać przisługã. Wypowiymy to tak klarownie, jak ino tyn " +"*Rubik potrefi. Jeźli użyjecie go do wciepniyńciŏ umartych nazŏd do ziymie, " +"to my mogymy wōm sprawić taki tŏwŏr. Wbite w ciało i w kostyra, podłōnczōne " +"do mōzgu. Miarkujecie? Jeźli niy, poôsprawiōmy z Wielgim Siwym ô kufie " +"starego, trzyźwego napŏwku." + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" +"Ije, no cōż. Wrażymy to do klucza i zamka, jeźli przizwolisz. Może możesz " +"prziniyść nōm trochã na umianã, a my zobŏczymy, eli uda nōm sie wartko i " +"dobrze cie urzōndzić. Niych żŏdyn exodii niy ôdciepuje chyntliwego " +"Benny'ego, i tak je." + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" +"Jeśli będę dalej zabijał zombie, pomożesz mi zmienić się w cyborga? Dlaczego" +" więc nadal gadamy? Zapisz mnie na listę do cholery." + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" +"Po namyśle, nie jestem pewien, czy chciałbym pozwolić, aby banda " +"nieznajomych obcych robotów przeprowadzała na mnie operację mózgu." + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "Może sprōbuj tego snŏżōncego napŏwku?" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "Dobra, mam kilka rzeczy, które mógłbym teraz wymienić." + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "OK, może wrócę, jak już trochę pohandluję." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" +"Hmm.\n" +"\n" +"*Głos Rubika staje się na chwilę mechaniczny i odległy, jakby komputer przejął mówienie.\n" +"\n" +"W zamian za gwarancję, że wykorzystacie te dary do walki z Wielkim Wrogiem, ten Węzeł Exodii jest gotów dostarczyć wam moduł bioniczny splotu sterującego, zasilacz i całą infrastrukturę niezbędną do uzyskania dalszych ulepszeń za pomocą standaryzowanych KBM - kompaktowych bionicznych modułów. Wymagamy jedynie symbolicznej opłaty za tę usługę. Dalsze ulepszenia zapewnimy w miarę zakupu. Wasze osobiste udoskonalenie służy naszej obopólnej korzyści.\n" +"\n" +"*Głos Rubika znów przejmuje kontrolę.*\n" +"\n" +"Snŏżny jak klara?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" +"Dlaczego nie możesz mówić tak wyraźnie przez cały czas? Nie masz pojęcia, " +"jak trudno jest zrozumieć twój akcent, a co dopiero twoje słowa." + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" +"*Mōj* akcynt? Nikej niy słyszołś włŏsnego gŏdaniŏ, a to niyzłe hośle. Wielgŏ" +" Siwŏ mŏ nad nim trochã roboty, miarkujesz? To my muszymy być przidajni, a " +"Wielgŏ Siwŏ musi robić to, do czego je powołanŏ. A ôkrōm tego, gŏdanie sie " +"do tukejszych brylantōw utrzimuje nŏs w modości i glancuje nasze chrōmy, " +"zrozumiano było?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" +"Dobra, nieważne. To bez znaczenia, jeśli chcesz mnie zmienić w przerażającą " +"fuzję maszyny i człowieka, zapisz mnie do diaska." + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" +"Im więcej z tobą rozmawiam, tym bardziej nie jestem pewien, czy chcę " +"pozwolić, by banda nieznanych mi robotów z kosmosu przeprowadzała na mnie " +"operacje mózgu." + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "OK, OK. Co powiedziałeś? Rozproszyła mnie zmiana głosu." + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" +"Szumle, szumle, szumle!! Ha! Sztartnymy starõ maszinã do miynsa. Twojim " +"auftragym je prziniyść nōm trochã dobrego tyju. Niy dosłownie \"tyju\", toć." +" To mōj angelskŏ mŏwa ulicznŏ. Chodzi mi ô to, co uspŏwŏ na czas ôperacyje. " +"Wielgi Siwy gŏdŏ, iże twoje słowo na to to \"nie czulynie\". Prziniyś nōm " +"dwa zestŏwy do \"nie-czulyniŏ\", a my wstawiymy ci drōty i w cołkości." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" +"Dwa zestawy do znieczulenia, już nadchodzą. Możemy porozmawiać o czymś " +"innym?" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "Dwa zestawy do znieczulenia, wkrótce przybędą. Lepiej zacznę szukać." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" +"Coś dziwnego, nie powinienem był w ogóle dotrzeć do tej opcji dialogowej. " +"Lepiej pójdę zgłosić błąd." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" +"Szumle i szumle, szumle i szumle! Ha! Jeźli mōmy już dobry tyj, to terŏz " +"zajmnymy sie młynkym. Ty ajnfach ruszej z Rubikiem." + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "W porządku. Do dzieła!" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "Poczekaj. Muszę to jeszcze raz przemyśleć." + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" +"I to je dobry ôbiōr, pedziołbych. Jeźli zmiynicie zdanie, stary Rubik je sam" +" na stałe. Ty poznŏsz nŏs lepij, my poznōmy ciebie lepij, a to je dobre." + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ije, i zasik je żeś postrzōd gwiŏzdōw i światył, co wiym. To szumle. Te małe KBM styknōm wōm na małowiela, ale to zaczōntek. Terŏz my mogymy przedać ci wszyjsko, co zechcesz, i pōmōc w instalacyji, jeźli ino zechcesz.\"" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "Więc jestem teraz cyborgiem? Nie czuję się jakoś specjalnie inaczej." + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "Cóż, lepiej już pójdę. Dzięki za implanty mózgu. Do widzenia." + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" +"To je to, co idzie nazwać \"paketym sztartowym\", miarkujesz. Na dobry " +"zaczōntek, ale dlŏ prawych cytrōnowych tort bydziesz potrzebowoł tego, co ta" +" fyrma mŏ na przedej. W miarã jak bydymy sie z tobōm trefiać, bydymy mogli " +"bitować corŏz wiyncyj." + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" +"Więc możesz mi sprzedać więcej bioniki, a jak cię lepiej poznam, będziesz " +"miał więcej? Możesz mi pokazać, co masz w tej chwili?" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "Jaka jest twoja historia?" @@ -270449,11 +282626,11 @@ msgstr "Kto tu się tobą opiekuje?" #: lang/json/talk_topic_from_json.py msgid "Aw hey, it's you again." -msgstr "" +msgstr "A, hej, to znowu ty." #: lang/json/talk_topic_from_json.py msgid "Oh… hi. I don't know you. My name's Chloe." -msgstr "" +msgstr "Oh... hi. Nie znam cię. Mam na imię Chloe." #: lang/json/talk_topic_from_json.py msgid "Nice to meet you, kid. What's up?" @@ -270461,17 +282638,19 @@ msgstr "Miło mi cię poznać, dzieciaku. Co tam?" #: lang/json/talk_topic_from_json.py msgid "Hello, Chloe. What's up?" -msgstr "" +msgstr "Witaj, Chloe. Co słychać?" #: lang/json/talk_topic_from_json.py msgid "Hi, Chloe. I can't stay to talk." -msgstr "" +msgstr "Cześć, Chloe. Nie mogę zostać, żeby pogadać." #: lang/json/talk_topic_from_json.py msgid "" "Things suck right now, but you know that anyway. I don't even know why you " "bother asking these stupid questions." msgstr "" +"Wszystko jest teraz do dupy, ale i tak o tym wiesz. Nie wiem nawet, dlaczego" +" zadajesz te głupie pytania." #: lang/json/talk_topic_from_json.py msgid "I'd better get going." @@ -270485,6 +282664,11 @@ msgid "" "and they're looking for me. I miss them. Is that enough personal stuff for" " you?" msgstr "" +"Jesteś straszny. Przykro mi z powodu braku przyjaciół, ale jestem dosłownie " +"dzieckiem. Wszyscy na Ziemi zamienili się w zombie, kończy nam się papier " +"toaletowy i w ogóle, a moi rodzice zniknęli. Wiem, że jeszcze żyją i mnie " +"szukają. Tęsknię za nimi. Czy to wystarczająca ilość osobistych spraw dla " +"ciebie?" #: lang/json/talk_topic_from_json.py msgid "I'm sorry for your loss. What were you saying before?" @@ -270496,7 +282680,7 @@ msgstr "Przykro mi z powodu śmierci twoich bliskich. Lepiej już pójdę." #: lang/json/talk_topic_from_json.py msgid "They are not dead." -msgstr "" +msgstr "Oni nie są martwi." #: lang/json/talk_topic_from_json.py msgid "" @@ -270504,6 +282688,9 @@ msgid "" "Sonia's songs are getting repetitive, and turns out, the boogeyman is " "friggin' real. We can hear it screaming every night." msgstr "" +"Już mówiłem: jest do bani. Nikt nie jest tu szczęśliwy, wszyscy są głodni, " +"piosenki Soni stają się powtarzalne, a do tego okazuje się, że chochlik jest" +" cholernie prawdziwy. Słyszymy jego krzyki każdej nocy." #: lang/json/talk_topic_from_json.py msgid "" @@ -270512,16 +282699,22 @@ msgid "" "lessons and she even signed me an autograph. I know she's only nice to me " "because I saved her, but that's okay; we're equal now." msgstr "" +"Nie jestem dzieckiem, wiesz? Nie potrzebuję niańki. Ale Sonia się o mnie " +"troszczy. Nie jest taka dziwna, chyba. Obiecała, że będzie mi dawać lekcje " +"gry na gitarze i nawet podpisała mi autograf. Wiem, że jest dla mnie miła " +"tylko dlatego, że ją uratowałem, ale to nic; jesteśmy teraz równi." #: lang/json/talk_topic_from_json.py msgid "" "Saving Sonia sounds like an interesting story; can you tell me what " "happened?" msgstr "" +"Saving Sonia brzmi jak interesująca historia; możesz mi powiedzieć, co się " +"stało?" #: lang/json/talk_topic_from_json.py msgid "Aren't you a bit too young to be carrying a knife?" -msgstr "" +msgstr "Nie jesteś trochę za młoda, żeby nosić nóż?" #: lang/json/talk_topic_from_json.py msgid "" @@ -270538,14 +282731,27 @@ msgid "" "because it was really disgusting. We got here soon after that. My parents " "weren't here, obviously. Oh man, they must worry about me so much…" msgstr "" +"Byłam sama w domu podczas trwających zamieszek. Moi rodzice wybrali " +"najgorszy możliwy czas na ponowne spotkanie, co jest do bani, ale jestem też" +" z tego powodu szczęśliwa. W każdym razie, byli częścią ludzi z NECC, więc " +"wiedzieli o tym miejscu, ich planach i w ogóle. Rzecz w tym, że to było " +"naprawdę daleko. Nie chciałam iść sama, ale nie chciałam też, żeby mnie " +"zjedli, więc poprosiłam Sonię - moją sąsiadkę - żeby ewakuowała się ze mną. " +"Więc to była frajda; ucieczka z mojego rodzinnego miasta, chodzenie wiejską " +"drogą, czekanie na horror, który nas zaatakuje. Uwaga spoiler: zostaliśmy " +"zaatakowani. Więc ten zombie szamocze się przed nami, a Sonia uderza go " +"naprawdę mocno swoją gitarą! Jego mózg rozpryskuje się po całym chodniku, i " +"to było super fajne, ale też zwymiotowałam, bo to było naprawdę obrzydliwe. " +"Dotarliśmy tutaj niedługo po tym. Moich rodziców oczywiście tu nie było. O " +"rany, muszą się tak o mnie martwić..." #: lang/json/talk_topic_from_json.py msgid "Thanks for telling me that. What were you saying before?" -msgstr "" +msgstr "Dzięki, że mi to powiedziałaś. Co mówiłaś wcześniej?" #: lang/json/talk_topic_from_json.py msgid "Thanks for telling me that. I'd better get going." -msgstr "" +msgstr "Dzięki, że mi to powiedziałaś. Lepiej już pójdę." #: lang/json/talk_topic_from_json.py msgid "" @@ -270553,10 +282759,14 @@ msgid "" " like me? I know how to handle one without hurting myself! My dad taught " "me everything, he's a real pro." msgstr "" +"Czy nie jesteś za stary, żeby nie zdawać sobie sprawy, jak niebezpieczny " +"jest świat dla takiego dzieciaka jak ja? Wiem, jak sobie poradzić bez " +"zrobienia sobie krzywdy! Mój tata nauczył mnie wszystkiego, jest prawdziwym " +"profesjonalistą." #: lang/json/talk_topic_from_json.py msgid "So, how did you get here?" -msgstr "" +msgstr "Więc, jak się tu dostałaś?" #: lang/json/talk_topic_from_json.py msgid "How are things, living here?" @@ -270564,39 +282774,43 @@ msgstr "Jak się sprawy mają, żyjecie tutaj?" #: lang/json/talk_topic_from_json.py msgid "Are the non-joinees treating you fairly?" -msgstr "" +msgstr "Niezrzeszeni traktują cię sprawiedliwie?" #: lang/json/talk_topic_from_json.py msgid "That's a nice guitar you have." -msgstr "" +msgstr "Fajną masz gitarę." #: lang/json/talk_topic_from_json.py msgid "Well now, good to see you again, friend." -msgstr "" +msgstr "Cóż, dobrze cię znowu widzieć, przyjacielu." #: lang/json/talk_topic_from_json.py msgid "" "Good to see people like you in the world. I'm Sonia, Sonia Greene. I " "entertain the people." msgstr "" +"Dobrze widzieć na świecie takich ludzi jak ty. Jestem Sonia, Sonia Greene. " +"Zabawiam ludzi." #: lang/json/talk_topic_from_json.py msgid "Sonia, hey? Nice to meet you. How are things here?" -msgstr "" +msgstr "Sonia, hej? Miło mi cię widzieć. Jak tam sprawy?" #: lang/json/talk_topic_from_json.py msgid "Hey, Sonia. What's up?" -msgstr "" +msgstr "Cześć Sonia. Co tam?" #: lang/json/talk_topic_from_json.py msgid "Hey, Sonia. I can't stay to talk." -msgstr "" +msgstr "Cześć Sonia. Nie mogę zostać, by porozmawiać." #: lang/json/talk_topic_from_json.py msgid "" "Just playing some good ol' tunes. There's so much negativity around here, " "someone's gotta cheer the people up, you know?" msgstr "" +"Po prostu gramy kilka dobrych starych kawałków. Jest tu tyle negatywnej " +"energii, że ktoś musi rozweselić ludzi, wiesz?" #: lang/json/talk_topic_from_json.py msgid "" @@ -270607,12 +282821,20 @@ msgid "" " right, thank you very much. Just a bit rusted from all that blood and " "gore." msgstr "" +"Masz cholerną rację. Podobają mi się jej blizny, sprawiają, że wygląda, " +"jakby miała jakąś historię, wiesz? Wiele przeszliśmy, on i ja. Te paskudy " +" zmusiły mnie do wyrządzenia krzywdy mojej słodkiej, słodkiej " +"gitarze. Ale wzięłam odwet i rozwaliłam im łeb! Straciłam część siebie " +"tamtego dnia, tak. Gitara jest w porządku, dziękuję bardzo. Tylko trochę " +"zardzewiała od tej całej krwi i posoki." #: lang/json/talk_topic_from_json.py msgid "" "Now that's a wild, wild story. I owe my life to this kid, Chloe, really. " "I'll let her tell the tale." msgstr "" +"To jest dzika, szalona historia. Zawdzięczam swoje życie temu dzieciakowi, " +"Chloe, naprawdę. Pozwolę jej to opowiedzieć." #: lang/json/talk_topic_from_json.py msgid "What did you do before ?" @@ -270627,6 +282849,12 @@ msgid "" "generations to come. That's also a synonym for not having all that much " "going on in my life, yeah." msgstr "" +"Przed tym wszystkim grałam w undergroundowym zespole - Tauryści - to była " +"nasza nazwa. Występy w lokalnych lokalach, koncertowanie z przyjaciółmi - to" +" wszystko, czym żyłam. Teraz jestem solistką ze zniszczoną gitarą, " +"śpiewaczką starego świata, która zachowuje cuda muzyki i dziedzictwo " +"Taurystów dla przyszłych pokoleń. To także synonim tego, że w moim życiu nie" +" dzieje się zbyt wiele, tak." #: lang/json/talk_topic_from_json.py msgid "" @@ -270635,6 +282863,10 @@ msgid "" "little world a bit more tolerable, though. Takes my mind off stuff, muffles" " the screams of the boogeyman, you know?" msgstr "" +"No wiesz, w porządku. Trochę niedożywiona i w ogóle, ale nie mogę narzekać, " +"skoro to najgorsze, prawda? Moja gitara sprawia, że nasz pokręcony, mały " +"świat jest trochę bardziej znośny. Odciąga mnie od tych spraw, tłumi krzyki " +"chochlika, wiesz?" #: lang/json/talk_topic_from_json.py msgid "" @@ -270643,10 +282875,14 @@ msgid "" "friends here, ones that appreciate what I do. I make music. That's all I " "have left, and it means everything to me." msgstr "" +"Sprawiedliwie? Na świecie nie ma czegoś takiego jak sprawiedliwość. NECC " +"miałoby w nosie, gdybym umarła z głodu na tej ławce. Przynajmniej mam tu " +"przyjaciół, którzy doceniają to, co robię. Tworzę muzykę. To wszystko, co mi" +" pozostało, i to znaczy dla mnie wszystko." #: lang/json/talk_topic_from_json.py msgid "I got my rights to be here, chum. Squatter's rights!" -msgstr "" +msgstr "Mam swoje prawa do bycia tutaj, chłopie. Prawa dzikiego lokatora!" #: lang/json/talk_topic_from_json.py msgid "Don't worry, I'm not going to hurt you." @@ -270654,27 +282890,31 @@ msgstr "Nie martw się, nie zrobię ci krzywdy." #: lang/json/talk_topic_from_json.py msgid "Hey, good to see you're still around." -msgstr "" +msgstr "Hej, dobrze widzieć, że nadal tu jesteś." #: lang/json/talk_topic_from_json.py msgid "" "I got here first, therefore this place belongs to me. Them's the rules in " "the Cataclysm." msgstr "" +"Ja dotarłem tu pierwszy, więc to miejsce należy do mnie. Takie są zasady w " +"Kataklizmie." #: lang/json/talk_topic_from_json.py msgid "Now that's an archaic belief. I'll see you around." -msgstr "" +msgstr "No to już jest archaiczne przekonanie. Do zobaczenia." #: lang/json/talk_topic_from_json.py msgid "" "I ain't leaving, bruv. Not until that eldritch screechin' nightmare is dead" " 'n buried." msgstr "" +"Nie odejdę, bracie. Nie, dopóki ten upiorny koszmar nie będzie martwy i " +"pogrzebany." #: lang/json/talk_topic_from_json.py msgid "I'll see you around then." -msgstr "" +msgstr "Do zobaczenia w takim razie." #: lang/json/talk_topic_from_json.py msgid "" @@ -270682,6 +282922,9 @@ msgid "" "but they took it away from me. Now they think of us as nothin' but a " "goddamn nuisance." msgstr "" +"To nie o to chodzi, kolego. Nie rozumiesz tego? To było MOJE terytorium, ale" +" oni mi je zabrali. Teraz uważają nas za nic innego, jak tylko za cholerne " +"utrapienie." #: lang/json/talk_topic_from_json.py msgid "" @@ -270689,6 +282932,9 @@ msgid "" "of my friends. Ever since then, I've felt nothing but disgust for myself. " "Let's not fuckin' reminisce." msgstr "" +"To, kim byłem, odeszło, umarło... umarło, gdy powaliłem potwory noszące " +"twarze moich przyjaciół. Od tamtej pory czuję do siebie tylko obrzydzenie. " +"Nie wspominajmy, kurwa, o tym." #: lang/json/talk_topic_from_json.py msgid "" @@ -270696,6 +282942,9 @@ msgid "" " may not be members but we belong here. We'll fight together if they ever " "try to kick us out." msgstr "" +"To mili ludzie, pozwalają nam się tu zadomowić i w ogóle. Mam tu przyjaciół." +" Może nie jesteśmy zrzeszeni, ale należymy do tego miejsca. Będziemy walczyć" +" razem, jeśli kiedykolwiek spróbują nas wyrzucić." #: lang/json/talk_topic_from_json.py msgid "" @@ -270703,29 +282952,36 @@ msgid "" " shuffles its way here. If I want to eat then I'll be doin' " "construction work from dusk till dawn." msgstr "" +"Nie jest tak źle. Mam schronienie, ciepło i ludzi, którzy będą mnie bronić, " +"jeśli jakiś się tu zapuści. Jeśli będę chciał jeść, to będę " +"pracował na budowie od zmierzchu do świtu." #: lang/json/talk_topic_from_json.py msgid "How have things changed after that deal with Helena?" -msgstr "" +msgstr "Jak zmieniły się sprawy po tej transakcji z Heleną?" #: lang/json/talk_topic_from_json.py msgid "" "Food is the only thing a starving man needs. Thanks for the help, bruv." msgstr "" +"Jedzenie jest jedyną rzeczą, której potrzebuje głodujący człowiek. Dzięki za" +" pomoc, bracie." #: lang/json/talk_topic_from_json.py msgid "" "Ha ha ha! Think before you speak, chum. Eight icons for an honest day's " "work. The system's broken!" msgstr "" +"Ha ha ha! Pomyśl, zanim się odezwiesz, kolego. Osiem ikon za uczciwą pracę. " +"System jest zepsuty!" #: lang/json/talk_topic_from_json.py msgid "Sorry to hear that. What were you saying before?" -msgstr "" +msgstr "Przykro mi to słyszeć. Co mówiłeś wcześniej?" #: lang/json/talk_topic_from_json.py msgid "No rest for the weary…" -msgstr "" +msgstr "Nie ma odpoczynku dla utrudzonych..." #: lang/json/talk_topic_from_json.py msgid "Hey there." @@ -271145,6 +283401,10 @@ msgstr "W czymś mogę pomóc?" msgid "Do you need any resources?" msgstr "Potrzebujesz jakichś materiałów?" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "Skąd masz to gigantyczne terrarium z ognikami?" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "Na razie wystarczy, że sobie poradzimy." @@ -271222,6 +283482,19 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "To najbardziej budząca nadzieję rzecz jaką do tej pory słyszałem." +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" +"Podróżnik przyniósł mi to w zamian za kilka królików. Powiedział, że dostał " +"to od naukowca z bagien, ale zajmowało za dużo miejsca w jego samochodzie." + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "To dość unikalne!" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "Założę się, że tak samo jak ty masz swoje." @@ -274143,10 +286416,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "Słyszałem coś o tym, że masz doktorat?" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "O czym to mówiłeś wcześniej?" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -274391,7 +286660,7 @@ msgstr "" #: lang/json/talk_topic_from_json.py msgid "You seem awfully happy considering the situation." -msgstr "Wydajesz się niezmiernie zadowolony zważając na sytuację." +msgstr "Czujesz niezmierne zadowolenie zważając na sytuację." #: lang/json/talk_topic_from_json.py msgid "" @@ -274595,7 +286864,7 @@ msgid "" "suspect they'll find an excuse to kick me out eventually." msgstr "" "To bezpieczniejsze niż zorganizowanie własnego miejsca. Wybywam na " -"poszukiwania jak potrzebuję. Puki dbamy o porządek i robimy swoje jak " +"poszukiwania jak potrzebuję. Póki dbamy o porządek i robimy swoje jak " "nadchodzą zombie, pozwalają nam tu pomieszkiwać, jako dodatkowa ochrona. Nie" " podoba im się natomiast, że przynoszę żywność dla pozostałych lokatorów... " "Myślę że chcieliby nas powoli zagłodzić, i choć nie napełnię wszystkim " @@ -276968,7 +289237,7 @@ msgstr "" " większą wiatrówkę, której można używać bez zdawania się na ograniczone " "zapasy prochu strzelniczego, i to znacznie ciszej. Nadal jestem na etapie " "rysowania projektu, mam w głowie kilka pomysłów na jej cechy które " -"chciałabym osiągnąć. Zapytaj mnie za pare tygodni a wdrożę cię bardziej w " +"chciałabym osiągnąć. Zapytaj mnie za parę tygodni, a wdrożę cię bardziej w " "temat." #: lang/json/talk_topic_from_json.py @@ -277778,11 +290047,11 @@ msgid "" msgstr "" "Mój zespół to Gitxsan, pochodzimy z północno-zachodniej Kolumbii " "Brytyjskiej, z okolic rzeki Skeena. Ja sam pochodzę z Hazelton. To piękne " -"miejsce. Wysokie góry, umiarkowane lasy deszczowe... Po części przybyłem " +"miejsce. Wysokie góry, umiarkowane lasy deszczowe… Po części przybyłem " "tutaj, ponieważ kocham te wilgotne lasy przybrzeżne i uwielbiam je odkrywać " "w innych krajach. Z tego samego powodu byłem w Korei i na Słowacji. Chyba " "jestem trochę leśnym turystą? Nie wiem, czy jeszcze kiedykolwiek zobaczę " -"swój własny las, i ta myśl łamie mi serce." +"swój własny las i ta myśl łamie mi serce." #: lang/json/talk_topic_from_json.py msgid "" @@ -278374,7 +290643,7 @@ msgid "" "goods, but we've been using them with suppliers we regularly trade with as " "well, those that have faith in us." msgstr "" -"Nazywamy je \"Certyfikowanymi Notami Wolnego Kupca\". Zaczęliśmy emitować " +"Nazywamy je „Certyfikowanymi Notami Wolnego Kupca”. Zaczęliśmy emitować " "pieniądze prawie od razu po przybyciu tutaj, aby pokazać, że reprezentują " "one rzeczywiste towary i usługi, którymi handlujemy. W ciągu kilku dni " "zorganizowaliśmy ten system i teraz ewoluuje on w formę gotówki. Wewnętrznie" @@ -278949,10 +291218,6 @@ msgstr "Wydawało mi się, że możesz szukać pomocy…" msgid "What's with these 'free merchant certified notes'?" msgstr "O co chodzi z tymi \"certyfikowanymi notami wolnych kupców\"?" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "Pora na mnie. Do zobaczenia!" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "Witaj panie marszałku…" @@ -279019,8 +291284,8 @@ msgid "" "[INT 10] Wait, six buses and refugees… how many people do you still have " "crammed in here?" msgstr "" -"[INT 10] Chwila moment, sześć autobusów i uchodźcy... ilu ludzi masz nadal " -"tu upchanych?" +"[INT 10] Chwila moment, sześć autobusów i uchodźcy… ilu ludzi masz nadal tu " +"upchanych?" #: lang/json/talk_topic_from_json.py msgid "" @@ -279400,6 +291665,132 @@ msgstr "" "też przyjdę pomóc w swoim wolnym czasie. Szanuję kogoś, kto robi tak jak " "mówi." +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "Czy wasze karawany widziały coś ciekawego na pustkowiach?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" +"Chciałem wam opowiedzieć o potencjalnym nowym partnerze handlowym, którego " +"niedawno poznałem." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" +"Cóż, teraz nowa twarz. Miło cię poznać. Jestem tym, który wysyła te karawany" +" wszędzie dookoła. Co mogę dla ciebie zrobić?" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "Czy mogę zadać ci kilka pytań?" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "Muszę lecieć, miło się z tobą rozmawiało." + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "Jasne, nie mam teraz nic do załadunku." + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" +"Nie, przykro mi. Obecnie nie ma tam nic wartego uwagi, tylko dziwni " +"rozproszeni ocalali, a oni zazwyczaj nie chcą przypadkowych gości." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" +"W gruncie rzeczy, tak. Wpadłem na grupę farmerów. Nie chcą mieć wiele " +"wspólnego z naszymi karawanami, ale kogoś takiego jak ty mogą tolerować." + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" +"Krążyły plotki. Ludzie gadali o jakimś tajnym laboratorium na odludziu, w " +"którym są ocalali. Ale sam go nie widziałem, więc wiesz." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" +"Cóż, kilka z moich karawan wróciło opowiadając o tym gigantycznym metalowym " +"zamku na szczycie skały, w środku pustkowia. Nie byli na tyle szaleni, żeby " +"to sprawdzić, ale ty możesz, jeśli chcesz." + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "BŁĄD: przekroczenie granic dla randomizuj_kierunki." + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "Jak dostać się na tę farmę?" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "Jak dostać się do tego laboratorium?" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "Jak dostać się do tego zamku?" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "Ah, to nic nowego dla mnie. Ale i tak dzięki." + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "Chwila, co mówiłeś wcześniej?" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "Właściwie, to muszę iść. Może później." + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" +"*pokazuje na mapie lokalizację\" To powinno cię tam zaprowadzić. Szczęścia " +"życzę, myślę, że będziesz go potrzebował." + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "Dzięki za wskazówki. Sprawdzę to." + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "Zawsze szukam nowych miejsc do handlu. Co masz dla mnie?" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "[ Opowiedz im o Rubiku i Exodii ]" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" +"Niezła historia. Pewnego dnia zobaczę, czy uda nam się tam dotrzeć i " +"przyjrzeć się temu. Brzmi jakby to był naprawdę ciekawy interes." + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "Czy mogę cię o coś jeszcze zapytać?" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "Marszalu..." @@ -279753,6 +292144,15 @@ msgstr "Pilnuj się tam." msgid "Is there any way I can join the 'Old Guard'?" msgstr "Jest jakiś sposób bym dołączył do 'Starej Gwardii'?" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "Mam do ciebie kilka pytań na temat tych dziwnych robotów." + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "Myślę, że mogę ci już powiedzieć, co chcesz wiedzieć o tych \"robotach\"." + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "Czy Stara Gwardia czegoś potrzebuje?" @@ -279878,6 +292278,71 @@ msgstr "" " droga do wyrobienie sobie imienia wśród najbardziej wpływowych ludzi jacy " "pozostają przy życiu." +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" +"Jeśli chcesz wiedzieć, jakie są nasze następne kroki, nie jestem " +"upoważniony, aby ci powiedzieć. Prawdę mówiąc, nawet sam nie wiem. Nie " +"dzielą się ze mną tego typu informacjami." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" +"Właściwie, to już ich spotkałem. Wydają się otwarci na handel i inne rzeczy." +" Pomyślałem, że możesz chcieć wiedzieć." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" +"Cóż, to ciekawe. Nie jestem w stanie nic z tym zrobić, ale może zechciałbyś " +"przekazać tę informację jednemu z drużynników Wolnych Kupców. Może w ten " +"sposób moglibyśmy nawiązać bardziej przyjazne stosunki." + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "Dobry pomysł. Tak zrobię." + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "Huh, może. Możemy porozmawiać o czymś innym?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" +"Och, no cóż. W takim razie chciałbym usłyszeć, co o nich wiesz. Mogę to " +"przekazać do dowództwa. Zobaczmy, co mam na wymianę... może antybiotyki z " +"naszych magazynów? Ich nigdy nie jest za wiele." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" +"Tak, spotkałem ich. Wydają się otwarci na handel i inne rzeczy. Nie są wrogo" +" nastawieni, przynajmniej nie do mnie." + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "Muszę się nad tym zastanowić. Na razie porozmawiajmy o czymś innym." + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "Po namyśle, powinienem iść." + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -283178,6 +295643,28 @@ msgstr "Nie w tej chwili, ale zapytaj o to później." msgid "Sure…" msgstr "Pewnie..." +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" +"Trzymam książki Valzaina. W jego kieszonkowym wymiarze jest wiele pięter " +"półek z książkami. To są te, które według mnie najprawdopodobniej wkrótce " +"przeczyta. Mogę sprzedać niektóre z nich, których mamy kopie." + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" +"Porządkuję książki, sprzedaję nadwyżki, a kiedyś, kiedy jeszcze pożyczaliśmy" +" książki, polowałam na tych, którzy spóźnili się z książkami do zwrotu." + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "Porozmawiajmy zatem o interesach." + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "Chciałbyś spróbować mnie złapać?" @@ -283378,20 +295865,6 @@ msgstr "Trzymaj się mocno, . Muszę oczyścić przejście." msgid "Pack your bags, . We're going on a trip." msgstr "Pakuj torby, . Idziemy na wycieczkę." -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "Kontra biojutsu" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "Blokujesz i kontratakujesz w %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr " blokuje i kontratakuje w %s" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "Rozbrojenie" @@ -284000,20 +296473,6 @@ msgstr "Rozbrajasz %s używając bicza" msgid " disarms %s using their whip" msgstr " rozbraja %s używając bicza" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "Kontratak" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "Kontratakujesz %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr " kontratakuje %s" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "Zmyłka" @@ -284049,55 +296508,45 @@ msgid " jabs deftly at %s" msgstr " dźgasz zwinnie w %s" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" -msgstr "Kontra blokująca rozbrojenia" +msgid "Counter Throw (block)" +msgstr "Kontra rzutu (blok)" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" -msgstr "Blokujesz i płynnie rozbrajasz %s" +msgid "You smoothly throw %s" +msgstr "Gładko rzucasz %s" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr " blokuje i płynnie rozbraja %s" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" -msgstr "Kontra blokująca rzucania" +msgid " blocks and smoothly throws %s" +msgstr " blokuje i płynnie rzuca %s" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" -msgstr "Blokujesz i płynnie rzucasz %s" +msgid "Counter Throw (dodge)" +msgstr "Kontra rzutu (unik)" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr " blokuje i płynnie rzuca %s" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" -msgstr "Kontra uniku rzucania" +msgid "Disarming Throw (block)" +msgstr "Rozbrajający rzut (blok)" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" -msgstr "Unikasz i płynnie rzucasz %s" +msgid "You smoothly disarm %s" +msgstr "Gładko rozbrajasz %s" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr " blokuje i płynnie rzuca %s" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" -msgstr "Kontra uniku rozbrojenia" +msgid " blocks and smoothly disarms %s" +msgstr " blokuje i płynnie rozbraja %s" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" -msgstr "Unikasz i płynnie rozbrajasz %s" +msgid "Disarming Throw (dodge)" +msgstr "Rozbrajający rzut (unik)" #: lang/json/technique_from_json.py #, python-format @@ -284180,20 +296629,6 @@ msgstr "%s próbuje cię schwytać, ale oswobadzasz się!" msgid "The %s tries to grab , but they break free!" msgstr "%s próbuje schywtać , ale oswobadza się!" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "Uderz ich z powrotem" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "Przechwytujesz atak %s i oddajesz cios" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr " przechwytuje %s i kontruje" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -284312,34 +296747,6 @@ msgstr "Podnosisz swoje ręce zastraszająco do %s." msgid " performs the Crane Wing at %s." msgstr " wykonuje skrzydło żurawia do %s." -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "Machnięcie żurawia" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "%s próbuje cię schywytać, ale ruszasz rękami i oswobadzasz się!" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "%s próbuje schwytać , ale się wymyka!" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "Uderzenie żurawia" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "Dziobiesz rękami i walisz w %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr " dziobie rękami i wali w %s" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "Kopniak żurawia" @@ -284355,46 +296762,46 @@ msgid " leaps and kicks %s" msgstr " skacze i kopie %s" #: lang/json/technique_from_json.py -msgid "Dragon Claw" -msgstr "Pazur smoka" +msgid "Crane Flap" +msgstr "Machnięcie żurawia" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" -msgstr "Skaczesz na %s z pazurem smoka" +msgid "The %s tries to grab you, but you swing your arms and break free!" +msgstr "%s próbuje cię schywytać, ale ruszasz rękami i oswobadzasz się!" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" -msgstr " skacze na %s z pazurem smoka" +msgid "The %s tries to grab , but they flap free!" +msgstr "%s próbuje schwytać , ale się wymyka!" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" -msgstr "Blok wirowy smoka" +msgid "Crane Strike" +msgstr "Uderzenie żurawia" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" -msgstr "Blokujesz atak i sprawiasz, że %s się kręci" +msgid "You hand-peck and strike %s" +msgstr "Dźgasz ręką i uderzasz %s" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" -msgstr " blokuje i sprawia, że %s się kręci" +msgid " hand-pecks and strikes %s" +msgstr " dziobie rękami i uderza %s" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" -msgstr "Unik skrzydła smoka" +msgid "Dragon Claw" +msgstr "Pazur smoka" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" -msgstr "Unikasz ataku i wyprowadzasz %s z równowagi" +msgid "You lash out at %s with a Dragon Claw" +msgstr "Skaczesz na %s z pazurem smoka" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" -msgstr " unika i wyprowadza %s z równowagi" +msgid " lashes out at %s with a Dragon Claw" +msgstr " skacze na %s z pazurem smoka" #: lang/json/technique_from_json.py #, python-format @@ -284477,18 +296884,18 @@ msgid " combination strikes %s" msgstr " zadaje kombinacyjny cios %s" #: lang/json/technique_from_json.py -msgid "Puño Strike" -msgstr "Uderzenie puño" +msgid "Stunning Strike" +msgstr "Oszałamiające uderzenie" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" -msgstr "Wyprowadzasz uderzenie puño w %s" +msgid "You deliver a stunning strike to %s" +msgstr "Wyprowadzasz oszałamiające uderzenie w %s" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" -msgstr " uderza rękojeścią %s" +msgid " delivers a stunning strike to %s" +msgstr " wyprowadza oszałamiające uderzenie w %s" #: lang/json/technique_from_json.py msgid "Low Strike" @@ -284529,8 +296936,8 @@ msgid " lunges at %s" msgstr " robi wypad na %s" #: lang/json/technique_from_json.py -msgid "Compound Attack" -msgstr "Złożony atak" +msgid "Compound Attack (Remise)" +msgstr "Łączony atak (ponowny)" #: lang/json/technique_from_json.py #, python-format @@ -284542,6 +296949,10 @@ msgstr "Twoja zmyłka doprowadza do łączonego ataku na %s" msgid "'s feint leads to a compound attack against %s" msgstr "Zmyłka doprowadza do łączonego ataku na %s" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "Łączony atak (kontra)" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "Szermiercza riposta" @@ -284689,20 +297100,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "%s próbuje schwytać , ale wyswobadza się ze słabego chwytu!" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "Kontra rzutu" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "Unikasz i rzucasz %s o ziemię" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr " unika i rzuca %s o ziemię" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "Kontra karate" @@ -284807,20 +297204,6 @@ msgstr "%s próbuje cię schwytać, ale odpychasz się!" msgid "The %s tries to grab , but they wrestle free!" msgstr "%s próbuje schwytać , ale odpycha się!" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "Kontra" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "Blokujesz i kontrujesz %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr " blokuje i kontruje %s" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "Pazur lamparta" @@ -284925,20 +297308,6 @@ msgstr "" "Dzięki wyćwiczonym ruchom przechodzi od nieudanego ciosu do " "kolejnego ciosu" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "Mistrzowskie cięcie" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "Parujesz i uderzasz %s jednym ruchem" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr " paruje i uderza %s jednym ruchem" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "Uderzenie łokciem" @@ -285262,20 +297631,6 @@ msgstr "Rzucasz się na %s z wściekłym uderzeniem węża" msgid " lashes out at %s with a vicious Snake Strike" msgstr " rzuca się na %s ze wściekłym uderzeniem węża" -#: lang/json/technique_from_json.py -msgid "Push" -msgstr "Pchnięcie" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You push %s away" -msgstr "Odpychasz %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " pushes %s away" -msgstr " odpycha %s" - #: lang/json/technique_from_json.py msgid "Shove" msgstr "Odepchnięcie" @@ -285300,6 +297655,16 @@ msgstr "Zgrabnie podcinasz %s" msgid " deftly trips %s" msgstr " zgrabnie podcina %s" +#: lang/json/technique_from_json.py +#, python-format +msgid "You fake a thrust at %s" +msgstr "Udajesz pchnięcie na %s" + +#: lang/json/technique_from_json.py +#, python-format +msgid " fakes a thrust at %s" +msgstr " udaje pchnięcie na %s" + #: lang/json/technique_from_json.py msgid "Snatch Weapon" msgstr "Wyrwij broń" @@ -285467,12 +297832,12 @@ msgstr "L-hak" #: lang/json/technique_from_json.py #, python-format msgid "You deliver a solid L-hook to %s" -msgstr "Zadajesz porzadny l-hak w %s" +msgstr "Zadajesz solidny l-hak w %s" #: lang/json/technique_from_json.py #, python-format msgid " delivers a solid L-hook to %s" -msgstr " zadaje porzadny l-hak w %s" +msgstr " zadaje solidny l-hak w %s" #: lang/json/technique_from_json.py msgid "L-hook (Knockback)" @@ -285498,20 +297863,6 @@ msgstr "Twój atak nie trafia w %s ale nie poddajesz się" msgid "'s attack misses %s but they don't let up" msgstr "Atak nie trafia w %s ale nie poddaje się" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "Otrzymaj i kontra" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "Otrzymujesz prezent przemocy %s i odwdzięczasz się" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr " otrzymuje atak %s i kontruje" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "Pijana zmyłka" @@ -285580,181 +297931,183 @@ msgstr " uderza fazowo %s" #: lang/json/technique_from_json.py msgid "Pressure Crunch" -msgstr "" +msgstr "Nacisk ciśnienia" #. ~ Description for Pressure Crunch #: lang/json/technique_from_json.py msgid "Heavy stun and knockback, 1.5x bash damage, crit only" -msgstr "" +msgstr "Silne ogłuszenie i odrzut, 1,5x obrażenia od uderzenia, tylko krytyk" #: lang/json/technique_from_json.py #, python-format msgid "You smash %s with a pressurized slam" -msgstr "" +msgstr "Trafiasz %s uderzeniem pod ciśnieniem." #: lang/json/technique_from_json.py #, python-format msgid " smashes %s with a pressurized slam" -msgstr "" +msgstr " trafia %s uderzeniem pod ciśnieniem." #: lang/json/technique_from_json.py msgid "Tipped Intent" -msgstr "" +msgstr "Ostry zamiar" #: lang/json/technique_from_json.py #, python-format msgid "You quickly jab your weapon at %s" -msgstr "" +msgstr "Szybko dźgasz swoją bronią w %s" #: lang/json/technique_from_json.py #, python-format msgid " quickly jabs their weapon at %s" -msgstr "" +msgstr " szybko dźga bronią w %s" #: lang/json/technique_from_json.py msgid "Shimmer Flurry" -msgstr "" +msgstr "Migotliwe uderzenie" #: lang/json/technique_from_json.py #, python-format msgid "You release a debilitating slash at %s and topple them off balance" -msgstr "" +msgstr "Zadajesz obezwładniające cięcie, które wytrąca %s z równowagi." #: lang/json/technique_from_json.py #, python-format msgid " slashes at %s and shoves them down" -msgstr "" +msgstr " sieka i powala %s na ziemię" #: lang/json/technique_from_json.py msgid "Mirage Slash" -msgstr "" +msgstr "Złudne cięcie" #: lang/json/technique_from_json.py #, python-format msgid "" "You hold your blade taut, and then launch a piercing slash on %s's top half" msgstr "" +"Trzymasz ostrze mocno, a następnie wykonujesz przeszywające cięcie na górnej" +" połowie ciała %s." #: lang/json/technique_from_json.py #, python-format msgid " lands a piercing blow on %s's face" -msgstr "" +msgstr " zadaje przeszywający cios w twarz %s." #: lang/json/technique_from_json.py msgid "The Point" -msgstr "" +msgstr "W punkt" #: lang/json/technique_from_json.py #, python-format msgid "You drive your weapon down into %s's vulnerable center mass" -msgstr "" +msgstr "Wbijasz swoją broń w bezbronny środek ciężkości %s." #: lang/json/technique_from_json.py #, python-format msgid " lands a deadly blow on %s's unguarded center mass" -msgstr "" +msgstr " zadaje zabójczy cios w niechroniony środek ciężkości %s." #: lang/json/technique_from_json.py msgid "Reprimand" -msgstr "" +msgstr "Reprymenda" #: lang/json/technique_from_json.py #, python-format msgid "You clock %s's in a weak spot to knock em down" -msgstr "" +msgstr "Łupiesz %s w słabe miejsce, żeby go powalić." #: lang/json/technique_from_json.py #, python-format msgid " smashes in %s's face" -msgstr "" +msgstr " miażdży twarz %s" #: lang/json/technique_from_json.py msgid "Forced Compliance" -msgstr "" +msgstr "Wymuszona zgodność" #: lang/json/technique_from_json.py #, python-format msgid "You swiftly swipe your weapon's tip at %s" -msgstr "" +msgstr "Szybko wymachujesz czubkiem swojej broni w kierunku %s" #: lang/json/technique_from_json.py #, python-format msgid " swiftly jabs their weapon into %s" -msgstr "" +msgstr " szybko dźga %s swoją bronią" #: lang/json/technique_from_json.py msgid "Roomsweeper" -msgstr "" +msgstr "Wymiatacz" #: lang/json/technique_from_json.py #, python-format msgid "You steady your arm and release a crushing blow at %s" -msgstr "" +msgstr "Stabilizujesz ramię i wyprowadzasz miażdżący cios w %s" #: lang/json/technique_from_json.py #, python-format msgid " releases a crushing blow at %s" -msgstr "" +msgstr " zadaje miażdżący cios %s" #: lang/json/technique_from_json.py msgid "Measured Footwork" -msgstr "" +msgstr "Miarowa praca stóp" #: lang/json/technique_from_json.py #, python-format msgid "You quickly dig your fingers into %s" -msgstr "" +msgstr "Wbijasz szybko swoje palce w %s" #: lang/json/technique_from_json.py #, python-format msgid " digs their fingers into %s" -msgstr "" +msgstr " wbija swoje palce w %s" #: lang/json/technique_from_json.py msgid "Rapid Burst" -msgstr "" +msgstr "Gwałtowna seria" #: lang/json/technique_from_json.py #, python-format msgid "You swiftly impale your fingers into %s joints" -msgstr "" +msgstr "Wbijasz płynnie swoje palce w stawy %s" #: lang/json/technique_from_json.py #, python-format msgid " swiftly impales their fingers into %s" -msgstr "" +msgstr " wbija płynnie swoje palce w %s" #: lang/json/technique_from_json.py msgid "Shifting Feint" -msgstr "" +msgstr "Zmienna zmyłka" #: lang/json/technique_from_json.py #, python-format msgid "You fake a quick strike toward %s" -msgstr "" +msgstr "Udajesz szybkie uderzenie w kierunku %s" #: lang/json/technique_from_json.py #, python-format msgid " fakes a quick strike toward %s" -msgstr "" +msgstr " udaje szybkie uderzenie w kierunku %s" #: lang/json/technique_from_json.py msgid "Rapid Jab" -msgstr "" +msgstr "Szybkie dźgnięcie" #: lang/json/technique_from_json.py #, python-format msgid "You steady your hand and release a piercing jab at %s" -msgstr "" +msgstr "Stabilizujesz ramię i wyprowadzasz przeszywające dźgnięcie w %s" #: lang/json/technique_from_json.py #, python-format msgid " releases a piercing jab at %s" -msgstr "" +msgstr " zadaje przeszywające dźgnięcie %s" #: lang/json/technique_from_json.py msgid "Calculated Pierce" -msgstr "" +msgstr "Wymierzone dźgnięcie" #: lang/json/technique_from_json.py #, python-format @@ -285762,10 +298115,12 @@ msgid "" "You envision a gathering tempest and then release it's energy on %s's top " "half" msgstr "" +"Wyobrażasz sobie zbierającą się burzę, a następnie uwalniasz jej energię na " +"górnej połowie ciała %s." #: lang/json/technique_from_json.py msgid "HOOK" -msgstr "" +msgstr "HAK" #. ~ Description for HOOK #: lang/json/technique_from_json.py @@ -285773,20 +298128,22 @@ msgid "" "95% moves, 88% Bash, 66% Cut, 66% Stab, Down two turns, STR (C) greatly " "reduces action cost" msgstr "" +"95% ruchów, 88% uderzenia, 66% cięcia, 66% dźgnięcia, dwie tury powalenia, " +"SIŁ znacznie zmniejsza koszt akcji" #: lang/json/technique_from_json.py #, python-format msgid "Your pistol whip sends %s careening" -msgstr "" +msgstr "Twoje uderzenie pistoletem wysyła %s na deski" #: lang/json/technique_from_json.py #, python-format msgid " smacks %s" -msgstr "" +msgstr " grzmoci %s" #: lang/json/technique_from_json.py msgid "Crowd Control" -msgstr "" +msgstr "Kontrola tłumu" #. ~ Description for Crowd Control #: lang/json/technique_from_json.py @@ -285794,20 +298151,22 @@ msgid "" "60% moves, 50% damage, wide arc, STR (S) dramatically reduces action cost, " "and adds a (C) damage bonus, min 4 melee" msgstr "" +"60% ruchów, 50% obrażeń, szeroki łuk, SIŁ drastycznie zmniejsza koszt akcji " +"i dodaje premię do obrażeń, min. 4 walki wręcz" #: lang/json/technique_from_json.py #, python-format msgid "Your swing the stock of your weapon at %s" -msgstr "" +msgstr "Zamachasz się kolbą swojej broni na %s" #: lang/json/technique_from_json.py #, python-format msgid " strikes at %s" -msgstr "" +msgstr " uderza %s" #: lang/json/technique_from_json.py msgid "BERSERK" -msgstr "" +msgstr "SZAŁ" #. ~ Description for BERSERK #: lang/json/technique_from_json.py @@ -285815,20 +298174,22 @@ msgid "" "50% AP cost, 77% DMG, Down (2), STR (SS) greatly reduces AP cost and adds " "(S) DMG" msgstr "" +"50% koszt PA, 77% OBR, powalenie, SIŁ znacznie zmniejsza koszt PA i dodaje " +"OBR" #: lang/json/technique_from_json.py #, python-format msgid "Your swing makes %s stagger and fall" -msgstr "" +msgstr "Twój zamach sprawia, że %s chwieje się na nogach i upada" #: lang/json/technique_from_json.py #, python-format msgid " hooks %s" -msgstr "" +msgstr " zahacza %s" #: lang/json/technique_from_json.py msgid "SWEEPER" -msgstr "" +msgstr "WYMIATACZ" #. ~ Description for SWEEPER #: lang/json/technique_from_json.py @@ -285836,20 +298197,22 @@ msgid "" "15% AP cost, 35% DMG, wide arc, STR (SS) reduces AP cost, and adds (A) DMG, " "melee (4)" msgstr "" +"15% koszt PA, 35% OBR, szeroki łuk, SIŁ zmniejsza koszt PA i dodaje OBR, " +"walka wręcz" #: lang/json/technique_from_json.py #, python-format msgid "Your momentum causes your weapon to strike %s" -msgstr "" +msgstr "Twój impet powoduje, że twoja broń uderza %s" #: lang/json/technique_from_json.py #, python-format msgid " inertially strikes %s" -msgstr "" +msgstr " w pędzie uderza %s" #: lang/json/technique_from_json.py msgid "BISECTION" -msgstr "" +msgstr "ROZPOŁOWIENIE" #. ~ Description for BISECTION #: lang/json/technique_from_json.py @@ -285857,11 +298220,13 @@ msgid "" "Crit!, 35% AP cost, 115% DMG, STR (SS) and DEX (SS) reduces AP cost and PER " "(B) adds DMG, melee (2)" msgstr "" +"Krytyk!, 35% koszt PA, 115% OBR, SIŁ i ZRĘ zmniejszają koszt PA, a PER " +"dodaje OBR, walka wręcz" #: lang/json/technique_from_json.py #, python-format msgid "You wind up the sword and release a well placed swing at %s" -msgstr "" +msgstr "Wymachujesz mieczem i wykonujesz celny zamach na %s" #: lang/json/technique_from_json.py src/melee.cpp #, c-format, python-format @@ -285871,16 +298236,16 @@ msgstr " rąbie %s" #. ~ Description for HOOK #: lang/json/technique_from_json.py msgid "85% AP, 88% DMG, Down (2), STR (C) reduces AP cost" -msgstr "" +msgstr "85% PA, 88% OBR, powalenie, SIŁ zmniejsza koszt PA" #: lang/json/technique_from_json.py #, python-format msgid "Your hooking attack makes %s stagger and fall" -msgstr "" +msgstr "Twój atak haku sprawia, że %s chwieje się na nogach i upada" #: lang/json/technique_from_json.py msgid "INERTIAL SWING" -msgstr "" +msgstr "WYMACH Z IMPETU" #. ~ Description for INERTIAL SWING #: lang/json/technique_from_json.py @@ -285888,15 +298253,17 @@ msgid "" "75% AP, 60% DMG, WIDE AOE, STR (S) reduces AP cost, and adds a (C) DMG, " "melee (4)" msgstr "" +"75% PA, 60% OBR, szerokie pole rażenia, SIŁ zmniejsza koszt PA i dodaje OBR," +" walka wręcz" #: lang/json/technique_from_json.py #, python-format msgid "Your momentum causes your weapon to glance off of %s" -msgstr "" +msgstr "Twój pęd powoduje, że broń odbija się od %s" #: lang/json/technique_from_json.py msgid "CHOP" -msgstr "" +msgstr "SIEKNIĘCIE" #. ~ Description for CHOP #: lang/json/technique_from_json.py @@ -285904,15 +298271,17 @@ msgid "" "CRIT!, 118% AP, 125% Cut/Stab, DEX (D) and PER (E) reduces AP cost and adds " "(B) DMG, melee (2)" msgstr "" +"KRYTYK!, 118% PA, 125% cięte/kłute, ZRĘ i PER zmniejsza koszt PA i dodaje " +"OBR, walka wręcz" #: lang/json/technique_from_json.py #, python-format msgid "You draw back your arm and release a well placed chop %s" -msgstr "" +msgstr "Odsuwasz rękę i zadajesz dobrze wymierzone rąbnięcie w %s" #: lang/json/technique_from_json.py msgid "SMASH" -msgstr "" +msgstr "UDERZENIE" #. ~ Description for SMASH #: lang/json/technique_from_json.py @@ -285920,40 +298289,46 @@ msgid "" "CRIT!, 110% AP, 120% Bash, DEX (C) and STR (D) reduces AP cost and adds (C) " "Arpen, melee (2)" msgstr "" +"KRYRYK!, 110% PA, 120% miażdżonych, ZRĘ i SIŁ zmniejsza koszt PA i dodaje " +"PenPanc, walka wręcz" #: lang/json/technique_from_json.py #, python-format msgid "You grip your weapon with two hands and slam it into %s" -msgstr "" +msgstr "Chwytasz broń oburącz i walisz nią w %s" #: lang/json/technique_from_json.py #, python-format msgid " smashes their weapon onto %s" -msgstr "" +msgstr " uderza bronią %s" #: lang/json/technique_from_json.py msgid "UNDERHAND" -msgstr "" +msgstr "PODSTĘPNY CIOS" #. ~ Description for UNDERHAND #: lang/json/technique_from_json.py msgid "" "Crit!, 120% AP, 125% damage, Stun (1), STR (A) reduces AP cost, melee (1)" msgstr "" +"Krytyk!, 120% PA, 125% obrażeń, ogłuszenie SIŁ zmniejsza koszt PA, walka " +"wręcz" #: lang/json/technique_from_json.py #, python-format msgid "You lunge forward with all your weight and swing upwards at %s" msgstr "" +"Wykonujesz wykrok do przodu całym ciężarem ciała i wykonujesz wymach w górę " +"w %s" #: lang/json/technique_from_json.py #, python-format msgid " swings upwards with all their weight at %s" -msgstr "" +msgstr " wymierza cios w górę w %s całym ciężarem ciała" #: lang/json/technique_from_json.py msgid "SHOVE" -msgstr "" +msgstr "PCHNIĘCIE" #. ~ Description for SHOVE #: lang/json/technique_from_json.py @@ -285961,20 +298336,22 @@ msgid "" "65% AP, REDUCED DMG, knockback (2), stun (1), STR (D) and DEX (E) reduce AP " "cost" msgstr "" +"65% PA, ZREDUKOWANE OBR, powalenie, ogłuszenie, SIŁ i ZRĘ zmniejszają koszt " +"PA" #: lang/json/technique_from_json.py #, python-format msgid "You quickly shove %s out of the way" -msgstr "" +msgstr "Szybko odpychasz %s z drogi" #: lang/json/technique_from_json.py #, python-format msgid " quickly shoves %s" -msgstr "" +msgstr " szybko odpycha %s" #: lang/json/technique_from_json.py msgid "SHIELDED SHOVE" -msgstr "" +msgstr "PCHNIĘCIE OCHRONNE" #. ~ Description for SHIELDED SHOVE #: lang/json/technique_from_json.py @@ -285982,573 +298359,536 @@ msgid "" "75% AP, 110% DMG, knockback (3), STR (B) and DEX (C) reduce AP cost, melee " "(1)" msgstr "" +"75% PA, 110% OBR, odrzucenie, SIŁ i ZRĘ zmniejszają koszt PA, walka wręcz" #: lang/json/technique_from_json.py #, python-format msgid "You quickly shove %s out of the way with your weapon" -msgstr "" +msgstr "Szybko odpychasz %s z drogi swoją bronią" #: lang/json/technique_from_json.py msgid "TEAR" -msgstr "" +msgstr "ROZDARCIE" #. ~ Description for TEAR #: lang/json/technique_from_json.py msgid "CRIT!, 115% Cut/Stab, melee (2)" -msgstr "" +msgstr "KRYTYK!, 115% cięte/kłute, walka wręcz" #: lang/json/technique_from_json.py #, python-format msgid "You stab into %s and rake your blade out" -msgstr "" +msgstr "Wbijasz się w %s i wyrywasz ostrze." #: lang/json/technique_from_json.py #, python-format msgid " tears into %s flesh" -msgstr "" +msgstr " rozrywa ciało %s." #: lang/json/technique_from_json.py msgid "THRUST" -msgstr "" +msgstr "WBICIE" #. ~ Description for THRUST #: lang/json/technique_from_json.py msgid "110% Stab DMG, STR (E) and PER (D) adds DMG, melee (1)" -msgstr "" +msgstr "110% kłutych OBR, SIŁ i PER dodaje OBR, walka wręcz" #: lang/json/technique_from_json.py #, python-format msgid "You step forward and stab at %s" -msgstr "" +msgstr "Robisz krok do przodu i dźgasz %s" #: lang/json/technique_from_json.py #, python-format msgid " stabs into %s flesh" -msgstr "" +msgstr " dźga ciało %s." #: lang/json/technique_from_json.py msgid "LUNGE" -msgstr "" +msgstr "WYMACH" #. ~ Description for LUNGE #: lang/json/technique_from_json.py msgid "" "CRIT!, 115% Stab DMG, Strength (D) and Perception (D) adds DMG, melee (2)" msgstr "" +"KRYTYK!, 115% dźgających OBR, siła i percepcja dodaje OBR, walka wręcz" #: lang/json/technique_from_json.py #, python-format msgid "You explosively jab at %s" -msgstr "" +msgstr "Wybuchowo uderzasz w %s" #: lang/json/technique_from_json.py #, python-format msgid " violently jabs at %s" -msgstr "" +msgstr " wybuchowo dźga %s" #: lang/json/technique_from_json.py msgid "PROD" -msgstr "" +msgstr "SZTURCHNIĘCIE" #. ~ Description for PROD #: lang/json/technique_from_json.py msgid "" "66% AP, 70% Stab DMG, PER (C) adds Arpen, DEX (B) reduces AP cost, melee (3)" msgstr "" +"66% PA, 70% dźgających OBR, PER dodaje PenPanc, ZRĘ zmniejsza koszt PA, " +"walka wręcz" #: lang/json/technique_from_json.py #, python-format msgid "You prod at %s defensively" -msgstr "" +msgstr "Defensywnie szturchasz %s" #: lang/json/technique_from_json.py #, python-format msgid " prods at %s " -msgstr "" +msgstr " szturcha %s" #: lang/json/technique_from_json.py msgid "PROBE" -msgstr "" +msgstr "SONDA" #. ~ Description for PROBE #: lang/json/technique_from_json.py msgid "80% AP, PER (C) adds DMG and Arpen (E), melee (3)" -msgstr "" +msgstr "80% PA, PER dodaje OBR i PenPanc, walka wręcz" #: lang/json/technique_from_json.py #, python-format msgid "You probe at %s's openings with your weapon" -msgstr "" +msgstr "Sondujesz luki %s swoją bronią." #: lang/json/technique_from_json.py #, python-format msgid " probes their weapon at %s " -msgstr "" +msgstr " sonduje %s swoją bronią." #: lang/json/technique_from_json.py msgid "Burning Blade" -msgstr "" +msgstr "Płonące ostrze" #: lang/json/technique_from_json.py #, python-format msgid "You unleash a fiery attack against %s" -msgstr "" +msgstr "Wykonujesz ognisty atak przeciwko %s" #: lang/json/technique_from_json.py #, python-format msgid " unleash a fiery attack against %s" -msgstr "" +msgstr " wykonuje ognisty atak przeciwko %s" #: lang/json/technique_from_json.py msgid "Inferno Blade" -msgstr "" +msgstr "Piekielne ostrze" #: lang/json/technique_from_json.py #, python-format msgid "You strike %s with powerful inferno" -msgstr "" +msgstr "Uderzasz %s potężnym ogniem piekielnym." #: lang/json/technique_from_json.py #, python-format msgid " strikes %s with powerful inferno" -msgstr "" +msgstr " uderza %s potężnym ogniem piekielnym." #: lang/json/technique_from_json.py msgid "Firesnake" -msgstr "" +msgstr "Ognisty wąż" #: lang/json/technique_from_json.py #, python-format msgid "You strike through %s with a snaking flame" -msgstr "" +msgstr "Uderzasz poprzez %s wężowym płomieniem" #: lang/json/technique_from_json.py #, python-format msgid " strikes through %s with a snaking flame" -msgstr "" +msgstr " uderza poprzez %s wężowym płomieniem" #: lang/json/technique_from_json.py msgid "Ring of Fire" -msgstr "" +msgstr "Pierścień ognia" #: lang/json/technique_from_json.py #, python-format msgid "You become a flaming blur as you strike %s and those around you" -msgstr "" +msgstr "Stajesz się ognistą plamą, gdy uderzasz w %s i innych wokół siebie" #: lang/json/technique_from_json.py #, python-format msgid "" " becomes a flaming blur as they strike %s and those around them" msgstr "" +" staje się ognistą plamą, gdy uderza w %s i innych wokół siebie" #: lang/json/technique_from_json.py msgid "Flashing Sun" -msgstr "" +msgstr "Błysk słońca" #: lang/json/technique_from_json.py #, python-format msgid "You carve an arc through %s and those nearby" -msgstr "" +msgstr "Wycinasz łuk przez %s i innych w pobliżu" #: lang/json/technique_from_json.py #, python-format msgid " carve an arc through %s and those nearby" -msgstr "" +msgstr " wycina łuk przez %s i innych w pobliżu" #: lang/json/technique_from_json.py msgid "Insightful Strike" -msgstr "" +msgstr "Wnikliwe uderzenie" #: lang/json/technique_from_json.py #, python-format msgid "You spot %s's weakpoint and strike" -msgstr "" +msgstr "Zauważasz słaby punkt %s i uderzasz" #: lang/json/technique_from_json.py #, python-format msgid " spot %s's weakpoint and strike" -msgstr "" +msgstr " zauważa słaby punkt %s i uderza" #: lang/json/technique_from_json.py msgid "Greater Insightful Strike" -msgstr "" +msgstr "Większe wnikliwe uderzenie" #: lang/json/technique_from_json.py msgid "Spin Attack" -msgstr "" +msgstr "Atak z obrotu" #: lang/json/technique_from_json.py #, python-format msgid "You unleash a spin attack against %s and those nearby" -msgstr "" +msgstr "Wykonujesz obrotowy atak na %s i innych w pobliżu." #: lang/json/technique_from_json.py #, python-format msgid " unleashes a spin attack against %s and those nearby" -msgstr "" +msgstr " wykonuje obrotowy atak na %s i innych w pobliżu." #: lang/json/technique_from_json.py msgid "Disarming Strike" -msgstr "" +msgstr "Rozbrajający cios" #: lang/json/technique_from_json.py #, python-format msgid "You skillfully disarm %s" -msgstr "" +msgstr "Umiejętnie rozbrajasz %s" #: lang/json/technique_from_json.py #, python-format msgid " skillfully disarms %s" -msgstr "" +msgstr " umiejętnie rozbraja %s" #: lang/json/technique_from_json.py msgid "Lightning Recovery" -msgstr "" +msgstr "Błyskawiczna stabilność" #: lang/json/technique_from_json.py #, python-format msgid "You miss %s but recover in the blink of an eye" -msgstr "" +msgstr "Nie trafiasz w %s, ale odzyskujesz równowagę w mgnieniu oka" #: lang/json/technique_from_json.py #, python-format msgid " misses %s but recovers in the blink of an eye" -msgstr "" +msgstr " nie trafia w %s, ale odzyskuje równowagę w mgnieniu oka" #: lang/json/technique_from_json.py msgid "Finishing Move" -msgstr "" +msgstr "Cios kończący" #: lang/json/technique_from_json.py #, python-format msgid "You finish off %s with a powerful slash" -msgstr "" +msgstr "Wykańczasz %s silnym cięciem." #: lang/json/technique_from_json.py #, python-format msgid " finishes off %s with a powerful slash" -msgstr "" +msgstr " wykańcza %s silnym cięciem." #: lang/json/technique_from_json.py msgid "Dazing Strike" -msgstr "" +msgstr "Oszałamiające uderzenie" #: lang/json/technique_from_json.py #, python-format msgid "You harshly stun %s" -msgstr "" +msgstr "Srogo ogłuszasz %s" #: lang/json/technique_from_json.py #, python-format msgid " harshly stuns %s" -msgstr "" +msgstr " srogo ogłusza %s" #: lang/json/technique_from_json.py msgid "Steel Wind" -msgstr "" +msgstr "Stalowy wiatr" #: lang/json/technique_from_json.py #, python-format msgid "You cleave through %s and those nearby like a steel wind" -msgstr "" +msgstr "Przecinasz %s i innych w pobliżu jak stalowy wiatr" #: lang/json/technique_from_json.py #, python-format msgid " cleaves through %s and those nearby like a steel wind" -msgstr "" +msgstr " przecina %s i innych w pobliżu jak stalowy wiatr" #: lang/json/technique_from_json.py msgid "Scything Blade" -msgstr "" +msgstr "Koszące ostrze" #: lang/json/technique_from_json.py #, python-format msgid "You cleanly reap through %s and those nearby" -msgstr "" +msgstr "Czysto sieczesz przez %s i tych w pobliżu" #: lang/json/technique_from_json.py #, python-format msgid " cleanly reap throug %s and those nearby" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" +msgstr " czysto siecze przez %s i tych w pobliżu" #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" -msgstr "" +msgstr "Kumai sharinraku" #: lang/json/technique_from_json.py #, python-format msgid "You jump and somersault kick %s" -msgstr "" +msgstr "Skaczesz i robisz salto kopiąc %s" #: lang/json/technique_from_json.py #, python-format msgid " jump and somersault kick %s" -msgstr "" +msgstr " skacze i robi salto kopiąc %s" #: lang/json/technique_from_json.py msgid "Herzschlag" -msgstr "" +msgstr "Herzschlag" #: lang/json/technique_from_json.py #, python-format msgid "You hit %s with a powerful vibro-punch" -msgstr "" +msgstr "Uderzasz %s potężnym wibracyjnym ciosem" #: lang/json/technique_from_json.py #, python-format msgid " hits %s with a powerful vibro-punch" -msgstr "" +msgstr " uderza %s potężnym wibracyjnym ciosem" #: lang/json/technique_from_json.py msgid "Geschoss Schlag" -msgstr "" +msgstr "Geschoss schlag" #: lang/json/technique_from_json.py #, python-format msgid "You launch a supersonic punch at %s" -msgstr "" +msgstr "Wysyłasz naddźwiękowy cios w kierunku %s" #: lang/json/technique_from_json.py #, python-format msgid " launches a supersonic punch at %s" -msgstr "" +msgstr " wysyła naddźwiękowy cios w kierunku %s" #: lang/json/technique_from_json.py msgid "Mega Kick" -msgstr "" +msgstr "Mega kopniak" #: lang/json/technique_from_json.py #, python-format msgid "You use Mega Kick on %s" -msgstr "" +msgstr "Używasz mega kopniaka na %s" #: lang/json/technique_from_json.py #, python-format msgid " uses Mega Kick on %s" -msgstr "" +msgstr " używa mega kopniaka na %s" #: lang/json/technique_from_json.py msgid "Darkest Lariat" -msgstr "" +msgstr "Najmroczniejszy lariat" #: lang/json/technique_from_json.py #, python-format msgid "You use Darkest Lariat on %s" -msgstr "" +msgstr "Wykonujesz najmroczniejszy lariat na %s" #: lang/json/technique_from_json.py #, python-format msgid " uses Darkest Lariat on %s" -msgstr "" +msgstr " wykonuje najmroczniejszy lariat na %s" #: lang/json/technique_from_json.py msgid "Smart Strike" -msgstr "" +msgstr "Sprytne uderzenie" #: lang/json/technique_from_json.py #, python-format msgid "You use Smart Strike on %s" -msgstr "" +msgstr "Wykonujesz sprytne uderzenie na %s" #: lang/json/technique_from_json.py #, python-format msgid " uses Smart Strike on %s" -msgstr "" +msgstr " wykonuje sprytne uderzenie na %s" #: lang/json/technique_from_json.py msgid "Low Sweep" -msgstr "" +msgstr "Niski zamach" #: lang/json/technique_from_json.py #, python-format msgid "You use Low Sweep on %s" -msgstr "" +msgstr "Wykonujesz niski zamach na %s" #: lang/json/technique_from_json.py #, python-format msgid " uses Low Sweep on %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" +msgstr " wykonuje niski zamach na %s" #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" -msgstr "" +msgstr "Zabójcze uderzenie hydry" #: lang/json/technique_from_json.py #, python-format msgid "You interrupt %s with a perfectly aimed strike" -msgstr "" +msgstr "Przerywasz %s perfekcyjnie wymierzonym ciosem" #: lang/json/technique_from_json.py #, python-format msgid " interrupt %s with a perfectly aimed strike" -msgstr "" +msgstr " przerywa %s perfekcyjnie wymierzonym ciosem" #: lang/json/technique_from_json.py msgid "Mighty Throw" -msgstr "" +msgstr "Potężny rzut" #: lang/json/technique_from_json.py #, python-format msgid "You toss %s aside with a Mighty Throw" -msgstr "" +msgstr "Odrzucasz %s na bok za pomocą potężnego rzutu" #: lang/json/technique_from_json.py #, python-format msgid " tosses %s with a Mighty Throw" -msgstr "" +msgstr " odrzuca %s za pomocą potężnego rzutu" #: lang/json/technique_from_json.py msgid "Ballista Throw" -msgstr "" +msgstr "Rzut balisty" #: lang/json/technique_from_json.py #, python-format msgid "You spin and hurl %s away with a Ballista Throw" -msgstr "" +msgstr "Obracasz się i rzucasz %s rzutem balisty." #: lang/json/technique_from_json.py #, python-format msgid " spins and hurls %s away with a Ballista Throw" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" +msgstr " obraca się i rzuca %s rzutem balisty" #: lang/json/technique_from_json.py msgid "Disarming Slash" -msgstr "" +msgstr "Rozbrajające cięcie" #: lang/json/technique_from_json.py #, python-format msgid "You disarm %s with a quick flick of your weapon" -msgstr "" +msgstr "Rozbrajasz %s szybkim ruchem swojej broni" #: lang/json/technique_from_json.py #, python-format msgid " disarms %s with a quick flick of their weapon" -msgstr "" +msgstr " rozbraja %s szybkim ruchem swojej broni" #: lang/json/technique_from_json.py msgid "Sarlacc Sweep" -msgstr "" +msgstr "Zamach sarlaka" #: lang/json/technique_from_json.py #, python-format msgid "You quickly sweep through %s and those nearby" -msgstr "" +msgstr "Z szybkością zamachujesz przez %s i tych w pobliżu" #: lang/json/technique_from_json.py #, python-format msgid " quickly sweeps through %s and those nearby" -msgstr "" +msgstr " z szybkością zamachuje przez %s i tych w pobliżu" #: lang/json/technique_from_json.py msgid "Mountain Hammer" -msgstr "" +msgstr "Górski młot" #: lang/json/technique_from_json.py #, python-format msgid "You crush %s with the weight of your Mountain Hammer" -msgstr "" +msgstr "Miażdżysz %s ciężarem swojego górskiego młota" #: lang/json/technique_from_json.py #, python-format msgid " crushes %s with the weight of their Mountain Hammer" -msgstr "" +msgstr "Miażdżysz %s ciężarem swojego górskiego młota" #: lang/json/technique_from_json.py msgid "Irrestistible Mountain Strike" -msgstr "" +msgstr "Nieodparte górskie uderzenie" #: lang/json/technique_from_json.py #, python-format msgid "You smash down on %s with a Mountain Strike" -msgstr "" +msgstr "Walisz w %s górskim uderzeniem" #: lang/json/technique_from_json.py #, python-format msgid " smashes down on %s with a Mountain Strike" -msgstr "" +msgstr " wali w %s górskim uderzeniem" #: lang/json/technique_from_json.py msgid "Colossus Strike" -msgstr "" +msgstr "Cios kolosa" #: lang/json/technique_from_json.py #, python-format msgid "You completely shatter %s with a Colossus Strike" -msgstr "" +msgstr "Całkowicie roztrzaskujesz %s za pomocą ciosu kolosa" #: lang/json/technique_from_json.py #, python-format msgid " completely shatters %s with a Colossus Strike" -msgstr "" +msgstr " całkowicie roztrzaskuje %s za pomocą ciosu kolosa" #: lang/json/technique_from_json.py msgid "Wolverine Stance" -msgstr "" +msgstr "Postawa rosomaka" #: lang/json/technique_from_json.py #, python-format msgid "The %s tries to grab you, but you thrash your way to freedom!" -msgstr "" +msgstr "%s próbuje cię złapać, ale ty wyrywasz się na wolność!" #: lang/json/technique_from_json.py #, python-format msgid "The %s tries to grab , but they thrash their way to freedom!" -msgstr "" +msgstr "%s próbuje złapać , ale on wyrywa się na wolność!" #: lang/json/ter_furn_transform_messages_from_json.py msgid "The earth is scorched clean!" -msgstr "" +msgstr "Ziemia jest wypalona do czysta!" #: lang/json/ter_furn_transform_messages_from_json.py msgid "The earth is upheaved!" -msgstr "" +msgstr "Ziemia jest wzburzona!" #: lang/json/ter_furn_transform_messages_from_json.py msgid "The earth here does not listen to your command to move." -msgstr "" +msgstr "Ziemia tutaj nie słucha twoich rozkazów, aby się poruszyć." #: lang/json/ter_furn_transform_messages_from_json.py msgid "The pit has deepened further." @@ -286556,44 +298896,46 @@ msgstr "Dół pogłębił się bardziej." #: lang/json/ter_furn_transform_messages_from_json.py msgid "More debris shifts out of the pit." -msgstr "" +msgstr "Z dołu wydobywa się więcej gruzu." #: lang/json/ter_furn_transform_messages_from_json.py msgid "The earth moves out of the way for you." -msgstr "" +msgstr "Ziemia usuwa się z drogi dla ciebie." #: lang/json/ter_furn_transform_messages_from_json.py msgid "The rocks here are ground into sand." -msgstr "" +msgstr "Tutejsze skały są zmielone na piasek." #: lang/json/ter_furn_transform_messages_from_json.py msgid "The rock crumbles to dust." -msgstr "" +msgstr "Skała rozpada się w pył." #: lang/json/ter_furn_transform_messages_from_json.py msgid "All the dust in the air here falls to the ground." -msgstr "" +msgstr "Cały pył znajdujący się w powietrzu tutaj opada na ziemię." #: lang/json/ter_furn_transform_messages_from_json.py msgid "The fungus here dies back." -msgstr "" +msgstr "Grzyb w tym miejscu obumiera." #: lang/json/ter_furn_transform_messages_from_json.py msgid "" "The ground shakes, a section of unnaturally smooth stone wall rising up." msgstr "" +"Ziemia się zatrzęsła, a fragment nienaturalnie gładkiego kamiennego muru " +"wzniósł się w górę." #: lang/json/ter_furn_transform_messages_from_json.py msgid "The dead tree regrows." -msgstr "" +msgstr "Martwe drzewo odrasta." #: lang/json/ter_furn_transform_messages_from_json.py msgid "Life springs anew from the dead grass." -msgstr "" +msgstr "Z martwej trawy na nowo rodzi się życie." #: lang/json/ter_furn_transform_messages_from_json.py msgid "The door opens forcefully!" -msgstr "" +msgstr "Drzwi otwierają się z impetem!" #. ~ Description for centrifuge #: lang/json/terrain_from_json.py @@ -287491,7 +299833,7 @@ msgstr "otwarte drzwi grodziowe" #: lang/json/terrain_from_json.py msgid "palisade gate" -msgstr "brama palisadowa" +msgstr "brama palisady" #. ~ Description for palisade gate #: lang/json/terrain_from_json.py @@ -287506,7 +299848,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "open palisade gate" -msgstr "otwarta brama palisadowa" +msgstr "otwarta brama palisady" #. ~ Description for open palisade gate #: lang/json/terrain_from_json.py @@ -287514,8 +299856,8 @@ msgid "" "A hanging palisade gate, hoisted by a nearby pulley system. Probably " "shouldn't be underneath when it comes down." msgstr "" -"Wisząca brama palisadowa, utrzymywana przez pobliski system lin i bloczków. " -"Prawdopodobnie wolałbyś nie stać pod nią gdy zostanie opuszczona w dół." +"Wisząca brama palisady, utrzymywana przez pobliski system lin i bloczków. " +"Raczej lepiej nie stać pod nią gdy zostanie opuszczona w dół." #: lang/json/terrain_from_json.py msgid "makeshift portcullis" @@ -287849,12 +300191,12 @@ msgstr "otwarta drewniana brama z belek" #: lang/json/terrain_from_json.py msgid "metal fence" -msgstr "metalowy płot" +msgstr "metalowe ogrodzenie" #. ~ Description for metal fence #: lang/json/terrain_from_json.py msgid "A simple metal fence." -msgstr "Prosty metalowy płot." +msgstr "Proste metalowe ogrodzenie." #: lang/json/terrain_from_json.py msgid "closed metal gate" @@ -287876,7 +300218,7 @@ msgstr "Otwarta metalowa brama." #: lang/json/terrain_from_json.py msgid "wooden privacy fence" -msgstr "wysokie ogrodzenie drewniane" +msgstr "drewniane ogrodzenie zapewniające prywatność" #. ~ Description for wooden privacy fence #: lang/json/terrain_from_json.py @@ -289059,6 +301401,21 @@ msgstr "" "Stosunkowo młoda sadzonka drzewa nieidentyfikowalnego gatunku. Wzrost do " "dorosłości może potrwać dekady, więc nie ma na co czekać." +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "mega paproć" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" +"Gigantyczna paproć, jakiej jeszcze nie dane było ci widzieć. Liście mają " +"jaskrawy szkarłatny kolor z siatką jak struktura zielonych żyłek. " +"Wielokanciaste pnie wydają się mieć konsystencję drewna balsy." + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "jabłoń" @@ -290529,7 +302886,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "high gauge pipe" -msgstr "" +msgstr "rura wysokiej średnicy" #. ~ Description for high gauge pipe #: lang/json/terrain_from_json.py @@ -292302,7 +304659,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "half-built log wall" -msgstr "nieukończona ściana z bali" +msgstr "nieukończona ściana z kłód" #. ~ Description for half-built log wall #: lang/json/terrain_from_json.py @@ -292976,9 +305333,9 @@ msgid "" "laboriously placed metal sheeting to further strengthen the wooden " "reinforcements underneath." msgstr "" -"To kiedyś zwykłe szklane okno straszy teraz kolcami na brzegach, i z mozołem" -" umieszczonym metalowym pokryciem, które dodatkowo wzmacnia spodnią " -"drewnianą warstwę ochronną." +"To kiedyś zwykłe szklane okno straszy teraz kolcami na brzegach i z mozołem " +"umieszczonym metalowym pokryciem, które dodatkowo wzmacnia spodnią drewnianą" +" warstwę ochronną." #. ~ Description for armored boarded up window #: lang/json/terrain_from_json.py @@ -292987,7 +305344,7 @@ msgid "" "laboriously placed metal sheeting to further strengthen the wooden " "reinforcements underneath." msgstr "" -"Ta kiedyś zwykła framuga okienna straszy teraz kolcami na brzegach, i z " +"Ta kiedyś zwykła framuga okienna straszy teraz kolcami na brzegach i z " "mozołem umieszczonym metalowym pokryciem, które dodatkowo wzmacnia spodnią " "drewnianą warstwę ochronną." @@ -293104,10 +305461,10 @@ msgstr "" "kunsztowne witraże przedstawiające kuszącą lazurową otchłań oceanu." #: lang/json/terrain_from_json.py -msgid "Window with metal grate" -msgstr "okno z kratą metalową" +msgid "window with metal grate" +msgstr "okno z metalową kratą" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " @@ -293116,7 +305473,7 @@ msgstr "" "Metalowe pręty uformowane w kratę do okna, o wysokiej wytrzymałości, " "sprostają każdemu wrogowi." -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " @@ -293125,7 +305482,7 @@ msgstr "" "Metalowe pręty uformowane w kratę do okna, o wysokiej wytrzymałości, " "sprostają każdemu wrogowi. Z zaciągniętą zasłoną." -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -293135,256 +305492,261 @@ msgstr "" "sprostają każdemu wrogowi. Z uchyloną zasłoną." #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "pojedynczo przeszklone okno" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." -msgstr "" +msgstr "Gigantyczna tafla szkła wstawiona w ramę okna." #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" -msgstr "" +msgid "open single glazed glass window" +msgstr "otwarte pojedynczo przeszklone okno" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" -msgstr "" +msgid "single glazed glass window with a curtain" +msgstr "pojedynczo przeszklone okno z zasłoną" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" +"Przeszklone okno z fantazyjnymi zasłonami od wewnątrz które są zasłonięte, " +"aby zablokować widoczność i odciąć dopływ światła." -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " "to block visibility and shut out any light." msgstr "" +"Przeszklone okno z fantazyjnymi zasłonami od wewnątrz które mogą być " +"zasłonięte, aby zablokować widoczność i odciąć dopływ światła." #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" -msgstr "" +msgid "reinforced single glazed glass window" +msgstr "wzmocnione pojedynczo przeszklone okno" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." -msgstr "" +msgstr "Gigantyczna tafla wzmocnionego szkła wstawiona w oszkloną ramę okna." #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" -msgstr "" +msgid "open reinforced single glazed glass window" +msgstr "otwarte wzmocnione pojedynczo przeszklone okno" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" -msgstr "" +msgid "reinforced single glazed glass window with a curtain" +msgstr "wzmocnione pojedynczo przeszklone okno z zasłoną" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" - -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" +"Okno z fantazyjnymi zasłonami od wewnątrz które są zasłonięte, aby " +"zablokować widoczność i odciąć dopływ światła." #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " "closed to block visibility and shut out any light." msgstr "" +"Wzmocnione okno z fantazyjnymi zasłonami od wewnątrz które można zasłonić, " +"aby zablokować widoczność i odciąć dopływ światła." #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" -msgstr "" +msgid "double glazed glass window" +msgstr "podwójnie przeszklone okno" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." -msgstr "" +msgstr "Dwie gigantyczne tafle szkła wstawione w ramę okna." #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" -msgstr "" +msgid "open double glazed glass window" +msgstr "otwarte podwójnie przeszklone okno" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" -msgstr "" +msgid "double glazed glass window with a curtain" +msgstr "podwójnie przeszklone okno z zasłoną" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" +"Podwójnie przeszklone okno z fantazyjnymi zasłonami od wewnątrz które są " +"zasłonięte, aby zablokować widoczność i odciąć dopływ światła." -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " "closed to block visibility and shut out any light." msgstr "" +"Podwójnie przeszklone okno z fantazyjnymi zasłonami od wewnątrz które można " +"zasłonić, aby zablokować widoczność i odciąć dopływ światła." #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" -msgstr "" +msgid "reinforced double glazed glass window" +msgstr "wzmocnione podwójnie przeszklone okno" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " "security, the outer layer is reinforced glass." msgstr "" +"Wzmocnione, podwójnie przeszklone okno wstawione w ramę. Dla dodatkowego " +"bezpieczeństwa zewnętrzna warstwa jest wzmocniona szkłem." #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" -msgstr "" +msgid "open reinforced double glazed glass window" +msgstr "otwarte wzmocnione podwójnie przeszklone okno" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " "a window frame." msgstr "" +"Podwójnie przeszklone okno z gigantyczną taflą wzmocnionego szkła " +"umieszczoną w ramie okiennej." #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" -msgstr "" +msgid "reinforced double glazed glass window with a curtain" +msgstr "wzmocnione podwójnie przeszklone okno z zasłoną" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" -msgstr "" +msgid "triple glazed glass window" +msgstr "potrójnie przeszklone okno" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." -msgstr "" +msgstr "Trzy gigantyczne tafle szkła wstawione w ramę okna." -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." -msgstr "" +msgstr "Potrójnie przeszklona gigantyczna tafla szkła wstawiona w ramę okna." #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" -msgstr "" +msgid "triple glazed glass window with a curtain" +msgstr "potrójnie przeszklone okno z zasłoną" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" +"Potrójnie przeszklone okno z fantazyjnymi zasłonami od wewnątrz które są " +"zasłonięte, aby zablokować widoczność i odciąć dopływ światła." -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " "closed to block visibility and shut out any light." msgstr "" +"Potrójnie przeszklone okno z fantazyjnymi zasłonami od wewnątrz które można " +"zasłonić, aby zablokować widoczność i odciąć dopływ światła." #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "" +msgid "reinforced triple glazed glass window" +msgstr "wzmocnione potrójnie przeszklone okno" -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" -msgstr "" - -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" +"Trzy tafle szkła włożone jak również jedna wzmocniona tafla szkła włożona do" +" ramy okna." -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " "sheet inserted into a window frame." msgstr "" +"Trzy tafle szkła włożone jak również jeden olbrzymi arkusz wzmocnionej tafli" +" szkła włożony w ramę okna." #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" +msgid "reinforced triple glazed glass window with a curtain" +msgstr "wzmocnione potrójnie przeszklone okno z zasłoną" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" +msgid "quadruple glazed glass window" +msgstr "poczwórnie przeszklone okno" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." -msgstr "" +msgstr "Cztery gigantyczne tafle szkła wstawione w ramę okna." -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." -msgstr "" +msgstr "Otwarte poczwórnie przeszklone okno." #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" -msgstr "" +msgid "quadruple glazed glass window with a curtain" +msgstr "poczwórnie przeszklone okno z zasłoną" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" +"Poczwórnie przeszklone okno z fantazyjnymi zasłonami od wewnątrz które są " +"zasłonięte, aby zablokować widoczność i odciąć dopływ światła." -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " "drawn closed to block visibility and shut out any light." msgstr "" +"Czterokrotnie przeszklone okno z fantazyjnymi zasłonami od wewnątrz które " +"można zasłonić, aby zablokować widoczność i odciąć dopływ światła." #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" +msgid "reinforced quadruple glazed glass window" +msgstr "wzmocnione poczwórnie przeszklone okno" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " "window frame." msgstr "" +"Trzy duże tafle szkła i jedna wzmocniona tafla szkła włożona w ramę okna." #: lang/json/terrain_from_json.py msgid "reinforced quadruple glazed glass window with a curtain" -msgstr "" +msgstr "wzmocnione poczwórnie przeszklone okno z zasłoną" #. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py @@ -293392,153 +305754,176 @@ msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " "is closed to block visibility and shut out any light." msgstr "" +"Wzmocnione, poczwórnie przeszklone okno z fantazyjnymi zasłonami od wewnątrz" +" które są zasłonięte, aby zablokować widoczność i odciąć dopływ światła." -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " "can be drawn closed to block visibility and shut out any light." msgstr "" +"Wzmocnione, poczwórnie przeszklone okno z fantazyjnymi zasłonami od wewnątrz" +" które można zasłonić, aby zablokować widoczność i odciąć dopływ światła." #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "" +msgid "plastic window" +msgstr "plastikowe okno" -#: lang/json/terrain_from_json.py -msgid "Plastic window" -msgstr "" - -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" +"Prowizoryczne okno składające się z półprzezroczystego, sztywnego tworzywa " +"sztucznego zamocowanego w drewnianej ramie. W podbramkowej sytuacji " +"wystarczy." -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" +"Otwarte prowizoryczne okno składające się z półprzezroczystego, sztywnego " +"tworzywa sztucznego zamocowanego w drewnianej ramie. W podbramkowej sytuacji" +" wystarczy." #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" -msgstr "" +msgid "plastic window with a curtain" +msgstr "plastikowe okno z zasłoną" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " "rigid plastic secured in a wooden frame. There are sheets drawn across it " "to block the light. It'll do in a pinch." msgstr "" +"Prowizoryczne okno z zasuniętą zasłoną. To arkusz półprzezroczystego, " +"sztywnego plastiku zamocowany w drewnianej ramie. W poprzek są " +"prześcieradła, które blokują światło. W podbramkowej sytuacji wystarczy." -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " "rigid plastic secured in a wooden frame, with sheets strung about it to " "block the light as required. It'll do in a pinch." msgstr "" +"Prowizoryczne okno z otwartą zasłoną. To arkusz półprzezroczystego, " +"sztywnego plastiku zamocowany w drewnianej ramie. W poprzek są " +"prześcieradła, które blokują światło. W podbramkowej sytuacji wystarczy." #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" -msgstr "" +msgid "plastic window with open curtains" +msgstr "plastikowe okno z otwartymi zasłonami" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " "rigid plastic secured in a wooden frame, with sheets strung about it to " "block the light as required. It'll do in a pinch." msgstr "" +"Otwarte prowizoryczne okno z otwartą zasłoną. To arkusz półprzezroczystego, " +"sztywnego plastiku zamocowany w drewnianej ramie. W poprzek są " +"prześcieradła, które blokują światło. W podbramkowej sytuacji wystarczy." #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" -msgstr "" +msgid "reinforced plastic window" +msgstr "wzmocnione plastikowe okno" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" +"Prowizoryczne okno składające się z trzech arkuszy półprzezroczystego, " +"sztywnego plastiku umocowanego w drewnianej ramie. W podbramkowej sytuacji " +"wystarczy." -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " "plastic secured in a wooden frame. It'll do in a pinch." msgstr "" +"Otwarte prowizoryczne okno składające się z trzech arkuszy " +"półprzezroczystego, sztywnego plastiku umocowanego w drewnianej ramie. W " +"podbramkowej sytuacji wystarczy." #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" -msgstr "" +msgid "reinforced plastic window with a curtain" +msgstr "wzmocnione plastikowe okno z zasłoną" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " "translucent, rigid plastic secured in a wooden frame. There are sheets " "drawn across it to block the light. It'll do in a pinch." msgstr "" +"Prowizoryczne okno z zasuniętą zasłoną. To trzy arkusze półprzezroczystego, " +"sztywnego plastiku zamocowane w drewnianej ramie. W poprzek są " +"prześcieradła, które blokują światło. W podbramkowej sytuacji wystarczy." #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" -msgstr "" +msgid "reinforced plastic window with an open curtain" +msgstr "wzmocnione plastikowe okno z otwartą zasłoną" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " "translucent, rigid plastic secured in a wooden frame, with sheets strung " "about it to block the light as required. It'll do in a pinch." msgstr "" +"Prowizoryczne wzmocnione okno z otwartą zasłoną. To trzy arkusze " +"półprzezroczystego, sztywnego plastiku zamocowane w drewnianej ramie. W " +"poprzek są prześcieradła, które blokują światło. W podbramkowej sytuacji " +"wystarczy." -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " "sheets of translucent, rigid plastic secured in a wooden frame, with sheets " "strung about it to block the light as required. It'll do in a pinch." msgstr "" +"Otwarte prowizoryczne wzmocnione okno z otwartą zasłoną. To trzy arkusze " +"półprzezroczystego, sztywnego plastiku zamocowane w drewnianej ramie. W " +"poprzek są prześcieradła, które blokują światło. W podbramkowej sytuacji " +"wystarczy." #: lang/json/terrain_from_json.py -msgid "Skylight frame" -msgstr "" +msgid "skylight frame" +msgstr "rama świetlika" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." -msgstr "" +msgstr "Drewniana rama świetlika." #: lang/json/terrain_from_json.py -msgid "Tempered glass window" -msgstr "" +msgid "tempered glass window" +msgstr "okno ze szkła hartowanego" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." -msgstr "" +msgstr "Gigantyczna tafla hartowanego szkła wstawiona w ramę okna." #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" -msgstr "" +msgid "open tempered glass window" +msgstr "otwarte okno ze szkła hartowanego" #: lang/json/terrain_from_json.py msgid "tempered glass window with a curtain" -msgstr "" +msgstr "okno ze szkła hartowanego z zasłoną" #. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py @@ -293546,21 +305931,21 @@ msgid "" "A tempered window with fancy curtains on the inside that are closed to block" " visibility and shut out any light." msgstr "" +"Hartowane okno z fantazyjnymi zasłonami od wewnątrz które są zasłonięte, aby" +" zablokować widoczność i odciąć dopływ światła." -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" " to block visibility and shut out any light." msgstr "" +"Okno ze szkła hartowanego z fantazyjnymi zasłonami od wewnątrz które mogą " +"być zasłonięte, aby zablokować widoczność i odciąć dopływ światła." #: lang/json/terrain_from_json.py msgid "porthole" -msgstr "iluminator" +msgstr "bulaj" #. ~ Description for porthole #: lang/json/terrain_from_json.py @@ -293602,8 +305987,8 @@ msgid "" "fall apart. It's going to need quite a bit of work to repair this " "staircase." msgstr "" -"Wielu desek brakuje a struktura chyli się ku upadkowi. Będzie tu potrzeba " -"sporo pracy by te schody naprawić." +"Wielu desek brakuje, a struktura chyli się ku upadkowi. Będzie tu potrzeba " +"sporo pracy, by te schody naprawić." #. ~ Description for wooden stairs #: lang/json/terrain_from_json.py @@ -293703,75 +306088,75 @@ msgstr "Dolny koniec asfaltowej rampy prowadzącej w górę." #: lang/json/terrain_from_json.py msgid "earth ramp down (high end)" -msgstr "" +msgstr "rampa ziemna w dół (górna granica)" #. ~ Description for earth ramp down (high end) #: lang/json/terrain_from_json.py msgid "The upper end of an earth ramp leading down." -msgstr "" +msgstr "Górny koniec ziemnej rampy prowadzącej w dół." #: lang/json/terrain_from_json.py msgid "earth ramp down (low end)" -msgstr "" +msgstr "rampa ziemna w dół (dolna granica)" #. ~ Description for earth ramp down (low end) #: lang/json/terrain_from_json.py msgid "The lower end of an earth ramp leading down." -msgstr "" +msgstr "Dolny koniec ziemnej rampy prowadzącej w dół." #: lang/json/terrain_from_json.py msgid "earth ramp up (high end)" -msgstr "" +msgstr "rampa ziemna w górę (górna granica)" #. ~ Description for earth ramp up (high end) #: lang/json/terrain_from_json.py msgid "The upper end of an earth ramp leading up." -msgstr "" +msgstr "Górny koniec ziemnej rampy prowadzącej w górę." #: lang/json/terrain_from_json.py msgid "earth ramp up (low end)" -msgstr "" +msgstr "rampa ziemna w górę (dolna granica)" #. ~ Description for earth ramp up (low end) #: lang/json/terrain_from_json.py msgid "The lower end of an earth ramp leading up." -msgstr "" +msgstr "Dolny koniec ziemnej rampy prowadzącej w górę." #: lang/json/terrain_from_json.py msgid "sidewalk ramp down (high end)" -msgstr "" +msgstr "rampa chodnika w dół (górna granica)" #. ~ Description for sidewalk ramp down (high end) #: lang/json/terrain_from_json.py msgid "The upper end of a sidewalk ramp leading down." -msgstr "" +msgstr "Górny koniec chodnikowej rampy prowadzącej w dół." #: lang/json/terrain_from_json.py msgid "sidewalk ramp down (low end)" -msgstr "" +msgstr "rampa chodnikowa w dół (dolna granica)" #. ~ Description for sidewalk ramp down (low end) #: lang/json/terrain_from_json.py msgid "The lower end of a sidewalk ramp leading down." -msgstr "" +msgstr "Dolny koniec chodnikowej rampy prowadzącej w dół." #: lang/json/terrain_from_json.py msgid "sidewalk ramp up (high end)" -msgstr "" +msgstr "rampa chodnika w górę (górna granica)" #. ~ Description for sidewalk ramp up (high end) #: lang/json/terrain_from_json.py msgid "The upper end of a sidewalk ramp leading up." -msgstr "" +msgstr "Górny koniec asfaltowej rampy prowadzącej w górę." #: lang/json/terrain_from_json.py msgid "sidewalk ramp up (low end)" -msgstr "" +msgstr "rampa chodnikowa w górę (dolna granica)" #. ~ Description for sidewalk ramp up (low end) #: lang/json/terrain_from_json.py msgid "The lower end of a sidewalk ramp leading up." -msgstr "" +msgstr "Dolny koniec chodnikowej rampy prowadzącej w górę." #: lang/json/terrain_from_json.py msgid "downward slope" @@ -293806,39 +306191,39 @@ msgstr "niskie schody (końcowa sekcja)" #: lang/json/terrain_from_json.py msgid "railroad ramp down (high end)" -msgstr "" +msgstr "rampa szynowa w dół (górna granica)" #. ~ Description for railroad ramp down (high end) #: lang/json/terrain_from_json.py msgid "The upper end of a railroad ramp leading down." -msgstr "" +msgstr "Górny koniec szynowej rampy prowadzącej w dół." #: lang/json/terrain_from_json.py msgid "railroad ramp down (low end)" -msgstr "" +msgstr "rampa szynowa w dół (dolna granica)" #. ~ Description for railroad ramp down (low end) #: lang/json/terrain_from_json.py msgid "The lower end of a railroad ramp leading down." -msgstr "" +msgstr "Dolny koniec szynowej rampy prowadzącej w dół." #: lang/json/terrain_from_json.py msgid "railroad ramp up (high end)" -msgstr "" +msgstr "rampa szynowa w górę (górna granica)" #. ~ Description for railroad ramp up (high end) #: lang/json/terrain_from_json.py msgid "The upper end of a railroad ramp leading up." -msgstr "" +msgstr "Górny koniec szynowej rampy prowadzącej w górę." #: lang/json/terrain_from_json.py msgid "railroad ramp up (low end)" -msgstr "" +msgstr "rampa szynowa w górę (dolna granica)" #. ~ Description for railroad ramp up (low end) #: lang/json/terrain_from_json.py msgid "The lower end of a railroad ramp leading up." -msgstr "" +msgstr "Dolny koniec szynowej rampy prowadzącej w górę." #: lang/json/terrain_from_json.py msgid "nuclear reactor core" @@ -293870,7 +306255,7 @@ msgstr "Stosunkowo płaska płyta z niezbrojonego pianobetonu." #: lang/json/terrain_from_json.py msgid "clearcrete wall" -msgstr "" +msgstr "ściana z czystokrystu" #. ~ Description for clearcrete wall #: lang/json/terrain_from_json.py @@ -293879,14 +306264,17 @@ msgid "" "fragile. It is most definitely not fragile, and it's probably alarmed in " "the event of a breach." msgstr "" +"Bariera z przezrobetonu, idealna do szklarni, ale wygląda na bardzo kruchą. " +"Zdecydowanie nie jest krucha, a w razie naruszenia prawdopodobnie będzie " +"zaalarmowana." #: lang/json/terrain_from_json.py msgid "a cross between steel bending and stone shattering!" -msgstr "" +msgstr "skrzyżowanie giętej stali z kruszonym kamieniem!" #: lang/json/terrain_from_json.py msgid "leviathan annelids" -msgstr "" +msgstr "pierścienice lewiatany" #. ~ Description for leviathan annelids #: lang/json/terrain_from_json.py @@ -293894,10 +306282,12 @@ msgid "" "Several massive protrusions emerge from the ground, coiled together into a " "tower. At the top, blue and purple tentacles sway in the wind." msgstr "" +"Z ziemi wyłania się kilka masywnych wypustek, zwiniętych razem w wieżę. Na " +"szczycie niebieskie i fioletowe macki kołyszą się na wietrze." #: lang/json/terrain_from_json.py msgid "lichen tree" -msgstr "" +msgstr "porost drzewiasty" #. ~ Description for lichen tree #: lang/json/terrain_from_json.py @@ -293905,14 +306295,16 @@ msgid "" "A massive corrugated body sprouts from the lichen here, branching out into " "mushroom-like limbs, dust filling the air as the wind meets it." msgstr "" +"Z porostów wyrasta tu masywna, pofałdowana bryła, która rozgałęzia się na " +"grzybopodobne kończyny, a pyłek wypełnia powietrze, gdy porusza je wiatr." #: lang/json/terrain_from_json.py msgid "squish!" -msgstr "squish!" +msgstr "gniot!" #: lang/json/terrain_from_json.py msgid "fossilized conifer" -msgstr "" +msgstr "skamieniałe drzewo iglaste" #. ~ Description for fossilized conifer #: lang/json/terrain_from_json.py @@ -293920,10 +306312,12 @@ msgid "" "A long dead tree standing on spindly legs similar to a Cypress which tapers " "into a point until spreading out in a hollow dodecahedron." msgstr "" +"Martwe od dawna drzewo stojące na wrzecionowatych nogach, podobne do " +"cyprysa, które zwęża się w szpic, aż do rozpostarcia się w pusty dodekaedr." #: lang/json/terrain_from_json.py msgid "infested fossilized conifer" -msgstr "" +msgstr "porażony skamieniały iglak" #. ~ Description for infested fossilized conifer #: lang/json/terrain_from_json.py @@ -293933,10 +306327,14 @@ msgid "" "to be splitting as tendrils of mold dig into it, clinging onto the tree like" " a frame." msgstr "" +"Martwe od dawna drzewo, stojące na wrzecionowatych nogach, podobne do " +"cyprysu, które zwęża się w szpic, a następnie rozpościera się w pusty " +"dodekaedr. Pień wydaje się rozszczepiać, a zwoje pleśni wbijają się w niego," +" trzymając się drzewa jak ramy." #: lang/json/terrain_from_json.py msgid "lichen shrub" -msgstr "" +msgstr "porost krzaczasty" #. ~ Description for lichen shrub #: lang/json/terrain_from_json.py @@ -293944,6 +306342,8 @@ msgid "" "A small mound of lichen grows here, noticeably bigger than the lichen and " "moss around it." msgstr "" +"Rośnie tu niewielki kopiec porostów, wyraźnie większy od porostów i mchów " +"wokół niego." #. ~ Description for lichen shrub #: lang/json/terrain_from_json.py @@ -293951,10 +306351,12 @@ msgid "" "A small mound of lichen grows here, noticeably bigger than the lichen and " "moss around it. A few clumps have been removed." msgstr "" +"Rośnie tu niewielki kopiec porostów, wyraźnie większy od porostów i mchów " +"wokół niego. Kilka kępek zostało usuniętych." #: lang/json/terrain_from_json.py msgid "lichen" -msgstr "" +msgstr "porosty" #. ~ Description for lichen #: lang/json/terrain_from_json.py @@ -293963,14 +306365,17 @@ msgid "" "fertile segment of ice. Either endemic, or surviving genecraft from an " "aborted terraforming project." msgstr "" +"Wiele kolorowych gatunków lodowych porostów, rozwijających się nad nietypowo" +" żyznym fragmentem lodu. Albo endemiczne, albo ocalałe genetyki z " +"przerwanego projektu terraformowania." #: lang/json/terrain_from_json.py msgid "splosh." -msgstr "" +msgstr "plusk." #: lang/json/terrain_from_json.py msgid "lichen bed" -msgstr "" +msgstr "warstwa porostów" #. ~ Description for lichen bed #: lang/json/terrain_from_json.py @@ -293978,10 +306383,12 @@ msgid "" "Familiar, yet unfamiliar. Lichens and moss cling to rocks and lifeless dirt" " here, providing a squishy but colorful grass." msgstr "" +"Znajome, a jednak nieznane. Porosty i mchy czepiają się tu skał i " +"pozbawionego życia brudu, tworząc gąbczastą, ale kolorową trawę." #: lang/json/terrain_from_json.py msgid "glacial ice" -msgstr "" +msgstr "lód lodowcowy" #. ~ Description for glacial ice #: lang/json/terrain_from_json.py @@ -293989,10 +306396,12 @@ msgid "" "A small segment from the near planet-wide glacier of Salus IV. Gets called " "'ground' around these parts." msgstr "" +"Mały fragment lodowca Salus IV, obejmującego niemal całą planetę. W tych " +"okolicach nazywany jest \"ziemią\"." #: lang/json/terrain_from_json.py msgid "fweet!" -msgstr "" +msgstr "łiiii!" #. ~ Description for dirt #: lang/json/terrain_from_json.py @@ -294000,19 +306409,21 @@ msgid "" "A relatively flat area of black dirt with no observable growth on it, caked " "with shards of rock. The only real ground besides the glacial ice." msgstr "" +"Stosunkowo płaski obszar czarnego brudu, nie porośnięty żadną roślinnością, " +"upstrzony odłamkami skał. Jedyny prawdziwy grunt poza lodem lodowcowym." #: lang/json/terrain_from_json.py msgid "basalt floor" -msgstr "" +msgstr "bazaltowa podłoga" #. ~ Description for basalt floor #: lang/json/terrain_from_json.py msgid "A relatively flat area of gray stone, warm to the touch." -msgstr "" +msgstr "Stosunkowo płaska powierzchnia szarego kamienia, ciepła w dotyku." #: lang/json/terrain_from_json.py msgid "fumarolic ice tower" -msgstr "" +msgstr "fumaroliczna wieża lodowa" #. ~ Description for fumarolic ice tower #: lang/json/terrain_from_json.py @@ -294020,6 +306431,9 @@ msgid "" "A solid cloud-like structure, formed when water vapor escapes from the crust" " and meets the freezing air. It is still emitting some gases." msgstr "" +"Stała struktura podobna do chmury, powstała, gdy para wodna wydostaje się ze" +" skorupy ziemskiej i spotyka się z mroźnym powietrzem. Wciąż wydziela jakieś" +" gazy." #. ~ Description for fumarolic ice tower #: lang/json/terrain_from_json.py @@ -294027,6 +306441,8 @@ msgid "" "A solid cloud-like structure, formed when water vapor escapes from the crust" " and meets the freezing air." msgstr "" +"Stała struktura podobna do chmury, która powstaje, gdy para wodna wydostaje " +"się ze skorupy ziemskiej i spotyka się z mroźnym" #: lang/json/terrain_from_json.py msgid "fumarole" @@ -294071,70 +306487,70 @@ msgstr "Solidna ściana z lodu lodowcowego." #: lang/json/terrain_from_json.py msgid "snow wall" -msgstr "" +msgstr "ściana śniegu" #. ~ Description for snow wall #: lang/json/terrain_from_json.py msgid "A solid mass of piled snow." -msgstr "" +msgstr "Solidna masa ubitego śniegu." #: lang/json/terrain_from_json.py msgid "downward snow slope" -msgstr "" +msgstr "pochyłość w dół ze śniegu" #. ~ Description for downward snow slope #: lang/json/terrain_from_json.py msgid "A downward-facing slope of snow." -msgstr "" +msgstr "Skierowany w dół stok ze śniegu." #: lang/json/terrain_from_json.py msgid "upward snow slope" -msgstr "" +msgstr "pochyłość w górę ze śniegu" #. ~ Description for upward snow slope #: lang/json/terrain_from_json.py msgid "An upward-facing slope of snow." -msgstr "" +msgstr "Skierowany w górę stok ze śniegu." #: lang/json/terrain_from_json.py msgid "downward glacial ice slope" -msgstr "" +msgstr "pochyłość w dół z lodu lodowcowego" #. ~ Description for downward glacial ice slope #: lang/json/terrain_from_json.py msgid "A downward-facing glacial slope." -msgstr "" +msgstr "Skierowany w dół stok z lodu lodowcowego." #: lang/json/terrain_from_json.py msgid "upward glacial ice slope" -msgstr "" +msgstr "pochyłość w górę z lodu lodowcowego" #. ~ Description for upward glacial ice slope #: lang/json/terrain_from_json.py msgid "An upward-facing glacial slope." -msgstr "" +msgstr "Skierowany w górę stok z lodu lodowcowego." #: lang/json/terrain_from_json.py msgid "downward basalt slope" -msgstr "" +msgstr "pochyłość w dół z bazaltu" #. ~ Description for downward basalt slope #: lang/json/terrain_from_json.py msgid "A downward-facing slope of basalt." -msgstr "" +msgstr "Skierowany w dół stok z bazaltu." #: lang/json/terrain_from_json.py msgid "upward basalt slope" -msgstr "" +msgstr "pochyłość w górę z bazaltu" #. ~ Description for upward basalt slope #: lang/json/terrain_from_json.py msgid "An upward-facing slope of basalt." -msgstr "" +msgstr "Skierowany w górę stok z bazaltu." #: lang/json/terrain_from_json.py msgid "bleached coral floor" -msgstr "" +msgstr "wybielone podłoże koralowe" #. ~ Description for bleached coral floor #: lang/json/terrain_from_json.py @@ -294142,10 +306558,12 @@ msgid "" "Small outgrowths of white coral spring from an underlying lattice of black, " "pulsating veins." msgstr "" +"Małe wyrostki białego korala wyrastają z ukrytej pod spodem siatki czarnych," +" pulsujących żyłek." #: lang/json/terrain_from_json.py msgid "habitat wall" -msgstr "" +msgstr "ściana habitatu" #. ~ Description for habitat wall #: lang/json/terrain_from_json.py @@ -294154,10 +306572,13 @@ msgid "" "insulated cover sheets, used to quickly assemble standardized colonial " "infrastructure. Capable of resisting the merciless cold and not much else." msgstr "" +"Wytwarzany przemysłowo zespół lekkich metalowych szkieletów i izolowanych " +"blach osłonowych, używany do szybkiego montażu standardowej infrastruktury " +"kolonialnej. Zdolny oprzeć się bezlitosnemu zimnu i niewiele ponadto." #: lang/json/terrain_from_json.py msgid "habitat window" -msgstr "" +msgstr "okno habitatu" #. ~ Description for habitat window #: lang/json/terrain_from_json.py @@ -294166,10 +306587,13 @@ msgid "" "both protection and privacy purposes. It cannot be opened, but with its " "shutters are retracted, it could be smashed with no particular difficulty." msgstr "" +"Prefabrykowane okno w stylu iluminatora, wyposażone w metalowe okiennice, " +"służące zarówno do ochrony, jak i zachowania prywatności. Nie da się go " +"otworzyć, ale z odsuniętymi okiennicami można je bez problemu rozbić." #: lang/json/terrain_from_json.py msgid "habitat window (shutters)" -msgstr "" +msgstr "okno habitatu (okiennice)" #. ~ Description for habitat window (shutters) #: lang/json/terrain_from_json.py @@ -294177,10 +306601,12 @@ msgid "" "A porthole style window of standard design, completely covered by sturdy " "metallic shutters." msgstr "" +"Okno typu iluminator o standardowej konstrukcji, całkowicie zasłonięte " +"solidnymi metalowymi okiennicami." #: lang/json/terrain_from_json.py msgid "broken habitat window (shutters)" -msgstr "" +msgstr "zniszczone okno habitatu (okiennice)" #. ~ Description for broken habitat window (shutters) #: lang/json/terrain_from_json.py @@ -294188,10 +306614,12 @@ msgid "" "The shutters of this porthole are deployed, but the lack of a window between" " them allows the frozen air to leak into the room." msgstr "" +"Okiennice tego iluminatora są rozłożone, ale brak okna między nimi pozwala " +"zamarzniętemu powietrzu przedostawać się do pomieszczenia." #: lang/json/terrain_from_json.py msgid "broken habitat window" -msgstr "" +msgstr "zniszczone okno habitatu" #. ~ Description for broken habitat window #: lang/json/terrain_from_json.py @@ -294199,10 +306627,12 @@ msgid "" "The glass panel that would have covered this porthole has been broken, " "allowing unfettered access to the rooms within." msgstr "" +"Szklana tafla, która zakrywała ten iluminator, została rozbita, umożliwiając" +" swobodny dostęp do znajdujących się za nim pomieszczeń." #: lang/json/terrain_from_json.py msgid "broken habitat segment" -msgstr "" +msgstr "zniszczony segment habitatu" #. ~ Description for broken habitat segment #: lang/json/terrain_from_json.py @@ -294210,10 +306640,12 @@ msgid "" "Exposed structural ribs and battered plate metal are all what remains of " "this habitat segment." msgstr "" +"Odsłonięte żebra konstrukcyjne i poobijana blacha to wszystko, co pozostało " +"z tego segmentu habitatu." #: lang/json/terrain_from_json.py msgid "spaceship hull" -msgstr "" +msgstr "poszycie statku kosmicznego" #. ~ Description for spaceship hull #: lang/json/terrain_from_json.py @@ -294222,10 +306654,13 @@ msgid "" "defend against the vacuum and radiation of space, the only dangers you'd " "expect to find on the other side." msgstr "" +"Segment kadłuba z cywilnego statku kosmicznego. Opancerzony w stopniu " +"wystarczającym do ochrony przed próżnią i promieniowaniem kosmicznym, " +"jedynymi zagrożeniami, których można się spodziewać po drugiej stronie." #: lang/json/terrain_from_json.py msgid "escape pod guidance system" -msgstr "" +msgstr "system naprowadzania kapsuły ratunkowej" #. ~ Description for escape pod guidance system #: lang/json/terrain_from_json.py @@ -294233,10 +306668,12 @@ msgid "" "The rudimentary descent guidance system and easy-use control console of an " "escape pod. It apparently broke during the descent." msgstr "" +"Szczątkowy system kierowania opadaniem i łatwa w użyciu konsola sterująca " +"kapsuły ratunkowej. Najwyraźniej pękła podczas schodzenia." #: lang/json/terrain_from_json.py msgid "closed spaceship hatch" -msgstr "" +msgstr "zamknięty właz statku kosmicznego" #. ~ Description for closed spaceship hatch #. ~ Description for open spaceship hatch @@ -294245,14 +306682,16 @@ msgid "" "An armored and airtight spaceship hatch. A side mounted lever allows for " "its manual operation." msgstr "" +"Opancerzony i hermetyczny właz statku kosmicznego. Zamontowana z boku " +"dźwignia pozwala na jego ręczną obsługę." #: lang/json/terrain_from_json.py msgid "open spaceship hatch" -msgstr "" +msgstr "otwarty właz statku kosmicznego" #: lang/json/terrain_from_json.py msgid "stick wall" -msgstr "" +msgstr "ściana z kijów" #. ~ Description for stick wall #: lang/json/terrain_from_json.py @@ -294261,14 +306700,17 @@ msgid "" "together. It is capable of supporting an upper level or roof. Dirt and " "stones make the wall secure. Somewhat flammable." msgstr "" +"Tani misz-masz desek i patyków z filarem z bali, który trzyma go razem. Jest" +" w stanie podtrzymać górny poziom lub dach. Ziemia i kamienie sprawiają, że " +"ściana jest bezpieczna. Nieco łatwopalna." #: lang/json/terrain_from_json.py msgid "krick!" -msgstr "" +msgstr "krik!" #: lang/json/terrain_from_json.py msgid "Edison generator" -msgstr "" +msgstr "generator Edisona" #. ~ Description for Edison generator #: lang/json/terrain_from_json.py @@ -294279,6 +306721,12 @@ msgid "" "due to their potential to generate near limitless power. It's not doing " "much good here though. Perhaps it could be salvaged for other purposes." msgstr "" +"Ta imponująca aparatura wykorzystuje \"ładunki atmosferyczne\", a " +"przynajmniej tak głosiły wiadomości, kiedy te urządzenia pojawiły się na " +"rynku. Pionierski projekt Eltona Moosek'a i jego zespołu Bluebox został " +"natychmiast podchwycony przez rząd ze względu na jego potencjał do " +"generowania niemal nieograniczonej mocy. Tutaj za bardzo się to nie przyda. " +"Może dałoby się go wykorzystać do innych celów." #: lang/json/terrain_from_json.py msgid "burnt tree" @@ -294304,7 +306752,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "webbing wall" -msgstr "" +msgstr "ściana z pajęczyny" #. ~ Description for webbing wall #: lang/json/terrain_from_json.py @@ -294312,10 +306760,12 @@ msgid "" "This wall seems to be made up of a combination of webbing, wood splinters, " "detritus, and some kind of dark-colored resin." msgstr "" +"Ta ściana wydaje się być zbudowana z połączenia pajęczyny, drzazg " +"drewnianych, odpadków i jakiegoś rodzaju ciemno zabarwionej żywicy." #: lang/json/terrain_from_json.py msgid "barren dirt" -msgstr "" +msgstr "jałowy grunt" #. ~ Description for barren dirt #: lang/json/terrain_from_json.py @@ -294323,10 +306773,12 @@ msgid "" "It's dirt. The ground here is infertile. Could also be dug out for " "construction projects." msgstr "" +"To jest brud. Tutejsza ziemia jest nieurodzajna. Może być również wykopana " +"pod budowę." #: lang/json/terrain_from_json.py msgid "glassteel vault wall" -msgstr "" +msgstr "ściana skarbca ze staloszkła" #. ~ Description for glassteel vault wall #: lang/json/terrain_from_json.py @@ -294335,14 +306787,17 @@ msgid "" "fragile. It is most definitely not fragile and it's probably alarmed in the" " event that someone does break through it." msgstr "" +"Bariera wykonana z staloszkła, nie jest niczym skomplikowanym i wygląda " +"niezwykle krucho. Z całą pewnością nie jest jednak krucha a w razie, gdyby " +"ktoś się przez nią przebił, prawdopodobnie włączy się alarm." #: lang/json/terrain_from_json.py msgid "a cross between steel bending and glass shattering!" -msgstr "" +msgstr "skrzyżowanie giętej stali z kruszonym szkłem!" #: lang/json/terrain_from_json.py msgid "concrete floor, everburning chandelier" -msgstr "" +msgstr "betonowa podłoga, wiecznie płonący żyrandol" #. ~ Description for concrete floor, everburning chandelier #: lang/json/terrain_from_json.py @@ -294350,10 +306805,12 @@ msgid "" "A bare and cold concrete floor with an elaborate chandelier above it filled " "with everburning candles." msgstr "" +"Goła i zimna betonowa podłoga, a nad nią misterny żyrandol wypełniony " +"wiecznie palącymi się świecami." #: lang/json/terrain_from_json.py msgid "magically reinforced concrete wall" -msgstr "" +msgstr "magicznie wzmocniona ściana betonowa" #. ~ Description for magically reinforced concrete wall #: lang/json/terrain_from_json.py @@ -294362,10 +306819,14 @@ msgid "" "ingredients. Best suited for supporting multi-level buildings, only serious" " explosives and high-speed impacts would be capable of damaging this wall." msgstr "" +"Niezwykle odporna ściana, wypełniona betonem, prętami zbrojeniowymi i " +"ezoterycznymi składnikami. Najlepiej nadaje się do podtrzymywania " +"wielopoziomowych budynków, tylko silne materiały wybuchowe i uderzenia o " +"wielkiej prędkości byłyby w stanie uszkodzić tę ścianę." #: lang/json/terrain_from_json.py msgid "magically reinforced concrete floor" -msgstr "" +msgstr "magicznie wzmocniona betonowa podłoga" #. ~ Description for magically reinforced concrete floor #: lang/json/terrain_from_json.py @@ -294375,16 +306836,22 @@ msgid "" "for the matching roof, it still requires supporting walls, otherwise it may " "very well cave in." msgstr "" +"Ekstremalnie wytrzymała podłoga z alchemicznego żelbetu, zdolna zapewnić " +"ochronę przed warunkami zewnętrznymi. Jeśli chodzi o odpowiadający jej dach," +" to nadal potrzebuje podtrzymujących go ścian, w przeciwnym wypadku może " +"równie dobrze się zapaść." #: lang/json/terrain_from_json.py msgid "vault vent" -msgstr "" +msgstr "otwór wentylacyjny skarbca" #. ~ Description for vault vent #: lang/json/terrain_from_json.py msgid "" "This concrete flooring has a vent pouring fresh, clean air into the vault." msgstr "" +"Betonowa podłoga posiada otwór wentylacyjny, przez który do skarbca wpływa " +"świeże, czyste powietrze." #: lang/json/terrain_from_json.py msgid "electro furnace" @@ -294444,7 +306911,7 @@ msgstr "kontrola mostu" #: lang/json/terrain_from_json.py msgid "shallow chocolate" -msgstr "" +msgstr "płytka czekolada" #. ~ Description for shallow chocolate #: lang/json/terrain_from_json.py @@ -294452,10 +306919,12 @@ msgid "" "The chocolate isn't too deep here. With a watertight container, you could " "gather what looks to be pure melted cacao. This will not be tasty." msgstr "" +"Czekolada nie jest tu zbyt głęboka. W wodoszczelnym pojemniku można by " +"zebrać coś, co wygląda na czyste, roztopione kakao. To nie będzie smaczne." #: lang/json/terrain_from_json.py msgid "deep chocolate" -msgstr "" +msgstr "głęboka czekolada" #. ~ Description for deep chocolate #: lang/json/terrain_from_json.py @@ -294464,6 +306933,9 @@ msgid "" " you could gather what looks to be pure melted cacao. This will not be " "tasty." msgstr "" +"Czekolada tutaj jest na tyle głęboka, że można się w niej utopić. W " +"wodoszczelnym pojemniku można zebrać to, co wygląda na czyste, roztopione " +"kakao. To nie będzie smaczne." #. ~ Description for caramel #: lang/json/terrain_from_json.py @@ -294471,6 +306943,8 @@ msgid "" "An extremely hot, glowing liquid, composed of molten caramel. In some " "places, caramel coated fruit is a delicacy." msgstr "" +"Niezwykle gorąca, świecąca ciecz, składająca się z roztopionego karmelu. W " +"niektórych miejscach owoce pokryte karmelem są przysmakiem." #. ~ Description for wall #: lang/json/terrain_from_json.py @@ -294479,10 +306953,14 @@ msgid "" "and drywalled. Paint job is the all too common and neutral off-white or " "cream color, it could use more vibrant paint." msgstr "" +"Stereotypowa ściana z drewnianą konstrukcją wspornikową wypełnioną izolacją " +"i obudowaną płytami gipsowo-kartonowymi. Pomalowana na aż nazbyt powszechny " +"i neutralny beżowy lub kremowy kolor - przydałaby się jej bardziej wyrazista" +" farba." #: lang/json/terrain_from_json.py msgid "singing sand" -msgstr "" +msgstr "śpiewający piasek" #. ~ Description for singing sand #: lang/json/terrain_from_json.py @@ -294490,10 +306968,12 @@ msgid "" "A formation of sand containing special minerals to produce whistling noises " "when stepped on and from the wind." msgstr "" +"Formacja piasku zawierająca specjalne minerały, które po nadepnięciu i pod " +"wpływem wiatru wydają odgłosy gwizdania." #: lang/json/terrain_from_json.py msgid "outcrop" -msgstr "" +msgstr "formacja skalna" #. ~ Description for outcrop #: lang/json/terrain_from_json.py @@ -294502,10 +306982,13 @@ msgid "" "surrounding terrain. Could be as a surface for a number of things or " "climbed on if worn with proper footwear." msgstr "" +"Zestaw różnych dużych, ostrych skał, które wystają z otaczającego terenu. " +"Mogą służyć jako powierzchnia do wielu rzeczy lub do wspinaczki, jeśli " +"nosisz odpowiednie obuwie." #: lang/json/terrain_from_json.py msgid "dune" -msgstr "" +msgstr "wydma" #. ~ Description for dune #: lang/json/terrain_from_json.py @@ -294513,10 +306996,12 @@ msgid "" "A huge sand dune that is continually reshaped by the wind. Climbing it will" " be troublesome." msgstr "" +"Ogromna wydma piaskowa, która jest nieustannie kształtowana przez wiatr. " +"Wspinaczka na nią będzie uciążliwa." #: lang/json/terrain_from_json.py msgid "desert pavement" -msgstr "" +msgstr "chodnik pustyni" #. ~ Description for desert pavement #: lang/json/terrain_from_json.py @@ -294525,6 +307010,9 @@ msgid "" "rock fragments that is easier to traverse than sand, with the right " "footwear." msgstr "" +"Nie taki chodnik! Naturalnie występujące skupiska gęsto upakowanych odłamków" +" skalnych, które przy odpowiednim obuwiu są łatwiejsze do pokonania niż " +"piasek." #. ~ Description for scorched earth #: lang/json/terrain_from_json.py @@ -294532,6 +307020,8 @@ msgid "" "Cracked and dry soil that doesn't look like it will be capable of supporting" " anything in your lifetime." msgstr "" +"Spękana i sucha ziemia, która nie wygląda na taką, w której cokolwiek będzie" +" się w stanie utrzymać za twojego życia." #. ~ Description for cactus #: lang/json/terrain_from_json.py @@ -294649,7 +307139,7 @@ msgstr "podważanie" #: lang/json/tool_quality_from_json.py msgid "nail prying" -msgstr "" +msgstr "podważanie gwoździ" #: lang/json/tool_quality_from_json.py msgid "punch" @@ -295324,7 +307814,7 @@ msgstr "żniwiarka" #: lang/json/vehicle_from_json.py msgid "Planter Tractor" -msgstr "sadzarka" +msgstr "ciągnik sadzarka" #: lang/json/vehicle_from_json.py msgid "Wagon" @@ -296083,12 +308573,16 @@ msgid "" "A combustion engine for use on aircraft. Burns gasoline or avgas fuel from " "a tank in the vehicle." msgstr "" +"Silnik spalinowy do stosowania w samolotach. Spala benzynę lub paliwo " +"lotnicze ze zbiornika znajdującego się w pojeździe." #: lang/json/vehicle_part_from_json.py msgid "" "A combustion engine. Burns diesel fuel from a tank in the vehicle. Can " "also burn biodiesel or lamp oil, though somewhat less efficiently." msgstr "" +"Silnik spalinowy. Spala diesel ze zbiornika w pojeździe. Może też spalać " +"biodiesel i naftę, choć nieco mniej efektywnie." #: lang/json/vehicle_part_from_json.py msgid "A combustion engine. Burns gasoline fuel from a tank in the vehicle." @@ -296101,6 +308595,101 @@ msgid "" "efficiently. Better power-to-weight ratio than a traditional engine, but " "consumes more fuel." msgstr "" +"Zaawansowany silnik spalinowy. Spala benzynę, olej napędowy lub paliwo " +"lotnicze ze zbiornika w pojeździe. Może również spalać naftę, choć nieco " +"mniej wydajnie. Lepszy stosunek mocy do masy niż w przypadku tradycyjnego " +"silnika, ale zużywa więcej paliwa." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" +"Rzędowy, 6-cylindrowy silnik wysokoprężny. Nieco mocniejszy niż V6, taki " +"silnik można spotkać w walcach drogowych lub koparkach." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" +"Mocny, 6-cylindrowy silnik wysokoprężny, typowy dla autobusu, kampera, dużej" +" furgonetki lub transportera opancerzonego." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" +"Duży, 8-cylindrowy silnik wysokoprężny, wystarczająco mocny dla tira, " +"pojazdu opancerzonego lub Humvee." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" +"Mały 1-cylindrowy silnik benzynowy o mocy około 10 koni mechanicznych, " +"wystarczający do skutera lub roweru z napędem silnikowym." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" +"Mocny, jednocylindrowy silnik benzynowy o mocy około 55 koni mechanicznych, " +"zwykle spotykany w motocyklach motocrossowych lub terenowych." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" +"Mały, 1-cylindrowy silnik benzynowy o mocy zaledwie kilku koni " +"mechanicznych, odpowiedni do kosiarki ręcznej." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" +"Czterocylindrowy silnik benzynowy, powszechnie spotykany w małych " +"samochodach osobowych i lekkich ciężarówkach." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" +"Masywny, 12-cylindrowy silnik benzynowy o mocy, jakiej można potrzebować w " +"samochodzie sportowym." + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" +"Masywny 12-cylindrowy silnik wysokoprężny, typowy dla ciężkich samochodów " +"ciężarowych." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" +"Mocny, 6-cylindrowy silnik benzynowy, wystarczająco mocny dla pickupa, SUV-a" +" lub pełnowymiarowego vana." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" +"Mocny, 8-cylindrowy silnik benzynowy, typowy dla wozu strażackiego, karetki " +"pogotowia lub samochodu holowniczego." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "2-cylindrowy silnik benzynowy odpowiedni dla motocykla lub quada." #: lang/json/vehicle_part_from_json.py msgid "" @@ -296110,12 +308699,60 @@ msgstr "" "Silnik parowy, zamkniętego obiegu, zewnętrznego spalania. Spala węgiel lub " "węgiel drzewny z komórki w pojeździe by produkować parę." +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" +"Mały, ale mocny silnik turbiny gazowej, odpowiedni do napędzania małego " +"jedno- lub dwumiejscowego śmigłowca." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" +"Mocny, gazowy silnik turbinowy, taki jak te zazwyczaj spotykane w " +"helikopterach Medevac, Apache lub Blackhawk." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" +"Ogromny gazowy silnik turbinowy, używany do unoszenia dużych śmigłowców " +"wojskowych, takich jak V-22 Osprey." + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "Drzwi. Mają okno, więc widać przez nie nawet gdy są zamknięte." +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "drzwi klapa z tkaniny" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" +"Płachta materiału, która może być przymocowana w pozycji zamkniętej, aby " +"działać jak drzwi." + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "drzwi kurtyna z tkaniny" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" +"Płachta materiału, którą można przesunąć do pozycji zamkniętej, aby działała" +" jak drzwi." + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "matowe drzwi" @@ -296216,6 +308853,11 @@ msgid "" " have line of sight to where it is going and it must be within four tiles of" " it." msgstr "" +"Toporny stalowy żuraw. Jeśli masz go w zasięgu wzroku i w odległości dwóch " +"pól od innego pojazdu, możesz automatycznie użyć go jako podnośnika gdy " +"chcesz wymienić koła w pojeździe. Jeśli chcesz unieść ciężką część, np, " +"silnik, którą instalujesz lub usuwasz, żuraw musi być w polu widzenia do " +"miejsca docelowego i musi być w odległości czterech pół od niego." #: lang/json/vehicle_part_from_json.py msgid "internal boom crane" @@ -296235,6 +308877,11 @@ msgid "" " have line of sight to where it is going and it must be within four tiles of" " it." msgstr "" +"Wysuwany żuraw na wsporniku. Jeśli masz go w zasięgu wzroku i w odległości " +"dwóch pól od innego pojazdu, możesz automatycznie użyć go jako podnośnika " +"gdy chcesz wymienić koła w pojeździe. Jeśli chcesz unieść ciężką część, np, " +"silnik, którą instalujesz lub usuwasz, żuraw musi być w polu widzenia do " +"miejsca docelowego i musi być w odległości czterech pół od niego." #. ~ Description for pallet lifter #: lang/json/vehicle_part_from_json.py @@ -296245,6 +308892,11 @@ msgid "" " like an engine that you are installing or removing, the crane must have " "line of sight to where it is going and it must be within four tiles of it." msgstr "" +"Mały podnośnik do palet. Jeśli masz go w zasięgu wzroku i w odległości dwóch" +" pól od innego pojazdu, możesz automatycznie użyć go jako podnośnika gdy " +"chcesz wymienić koła w pojeździe. Jeśli chcesz unieść ciężką część, np, " +"silnik, którą instalujesz lub usuwasz, żuraw musi być w polu widzenia do " +"miejsca docelowego i musi być w odległości czterech pół od niego." #: lang/json/vehicle_part_from_json.py msgid "forklift arm" @@ -296260,6 +308912,11 @@ msgid "" " have line of sight to where it is going and it must be within four tiles of" " it." msgstr "" +"Para ramion podnośnika palet. Jeśli masz go w zasięgu wzroku i w odległości " +"dwóch pól od innego pojazdu, możesz automatycznie użyć go jako podnośnika " +"gdy chcesz wymienić koła w pojeździe. Jeśli chcesz unieść ciężką część, np, " +"silnik, którą instalujesz lub usuwasz, żuraw musi być w polu widzenia do " +"miejsca docelowego i musi być w odległości czterech pół od niego." #. ~ Description for rockwheel #: lang/json/vehicle_part_from_json.py @@ -296383,7 +309040,7 @@ msgstr "" #: lang/json/vehicle_part_from_json.py msgid "atomic nightlight" -msgstr "" +msgstr "atomowa lampka nocna" #. ~ Description for atomic nightlight #: lang/json/vehicle_part_from_json.py @@ -296412,6 +309069,8 @@ msgid "" "the vehicle when turned on. During installation, you can choose what " "direction to point the light." msgstr "" +"Jasne światło, które oświetla półokrągły stożek na zewnątrz pojazdu gdy jest" +" włączone. Podczas instalacji możesz wybrać kierunek padania światła." #: lang/json/vehicle_part_from_json.py msgid "headlight" @@ -296437,6 +309096,9 @@ msgid "" "direction to point the light, so multiple headlights can illuminate the " "sides or rear, as well as the front." msgstr "" +"Małe, lekkie, jasne światło, które oświetla wąski stożek na zewnątrz pojazdu" +" gdy jest włączone. Podczas instalacji możesz wybrać kierunek padania " +"światła, zatem kilka świateł może oświetlać tył, boki i przód." #: lang/json/vehicle_part_from_json.py msgid "wide angle headlight" @@ -296533,6 +309195,76 @@ msgstr "" msgid "An electric motor." msgstr "Silnik elektryczny." +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" +"Silnik elektryczny zbyt mały dla większości pojazdów, ale w sam raz do " +"napędzania roweru." + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" +"Silnik elektryczny o niewielkiej mocy, wystarczający do roweru elektrycznego" +" lub skutera, ale prawdopodobnie niepraktyczny dla cięższych pojazdów." + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" +"Silnik elektryczny średniej mocy, odpowiedni do napędzania ultralekkich " +"pojazdów lub jako część hybrydowego, benzynowo-elektrycznego układu " +"napędowego." + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" +"Silnik elektryczny o dużej mocy, zdolny do napędzania pełnowymiarowego " +"samochodu lub SUV-a za pomocą samej energii elektrycznej, pod warunkiem, że " +"masz odpowiednią pojemność akumulatora." + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" +"Potężny silnik elektryczny o wysokiej wydajności, taki jak w tych " +"konsumenckich elektrycznych samochodach sportowych z absurdalnymi, " +"niedorzecznymi lub podobnie hiperbolicznymi opcjami przyspieszenia. " +"Potrzebuje on mnóstwo energii z akumulatora." + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" +"Masywny i niezwykle mocny silnik elektryczny, zapewniający wysoki moment " +"obrotowy kosztem znacznego spadku mocy, doskonale nadawałby się do " +"elektrycznych samochodów wyścigowych." + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" +"Ogromny i ciężki elektryczny silnik trakcyjny, wystarczająco mocny, aby " +"uciągnąć pociąg." + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -296573,7 +309305,7 @@ msgstr "chitynowy taran" #: lang/json/vehicle_part_from_json.py msgid "biosilicified chitin ram" -msgstr "" +msgstr "biosilifikowany chitynowy taran" #: lang/json/vehicle_part_from_json.py msgid "tied mattress" @@ -296602,6 +309334,8 @@ msgid "" "A set of aerofoil helicopter rotors, when spun at high speed, they generate " "thrust via lift." msgstr "" +"Zestaw aerodynamicznych wirników helikoptera, które obracając się z dużą " +"prędkością wytwarzają siłę ciągu poprzez unoszenie." #. ~ Description for heavy-duty military rotors #. ~ Description for small helicopter rotors @@ -296611,18 +309345,20 @@ msgid "" "A set of four military-grade helicopter rotor blades, used to provide lift " "by rotation." msgstr "" +"Zestaw czterech łopat wirnika śmigłowca klasy wojskowej, wykorzystywany do " +"zapewnienia unoszenia przez obrót." #: lang/json/vehicle_part_from_json.py msgid "small helicopter rotors" -msgstr "" +msgstr "wirniki do małych śmigłowców" #: lang/json/vehicle_part_from_json.py msgid "heavy-duty military Blackhawk rotors" -msgstr "" +msgstr "wysokowydajne wojskowe wirniki Blackhawk" #: lang/json/vehicle_part_from_json.py msgid "heavy-duty military Osprey rotors" -msgstr "" +msgstr "wysokowydajne wojskowe wirniki Osprey" #. ~ Description for heavy-duty military Osprey rotors #: lang/json/vehicle_part_from_json.py @@ -296630,6 +309366,8 @@ msgid "" "A set of three military-grade helicopter rotor blades, used to provide lift " "by rotation." msgstr "" +"Zestaw trzech łopat wirnika śmigłowca klasy wojskowej, wykorzystywany do " +"zapewnienia unoszenia przez obrót." #. ~ Description for seat #: lang/json/vehicle_part_from_json.py @@ -296665,7 +309403,7 @@ msgstr "" #: lang/json/vehicle_part_from_json.py msgid "leather back seat" -msgstr "" +msgstr "skórzane tylne siedzenie" #. ~ Description for saddle #: lang/json/vehicle_part_from_json.py @@ -296730,7 +309468,7 @@ msgstr "bak (60L)" #: lang/json/vehicle_part_from_json.py msgid "refrigerated tank (60L)" -msgstr "" +msgstr "chłodzony zbiornik (60L)" #. ~ Description for refrigerated tank (60L) #: lang/json/vehicle_part_from_json.py @@ -296738,6 +309476,8 @@ msgid "" "A 60L refrigerated tank. When turned on, it will cool the liquid inside, " "extending the time until the food spoils." msgstr "" +"Zbiornik chłodniczy o pojemności 60 litrów. Po włączeniu schłodzi płyn " +"znajdujący się w środku, wydłużając czas do zepsucia się żywności." #: lang/json/vehicle_part_from_json.py msgid "external tank (100L)" @@ -296761,7 +309501,7 @@ msgstr "" #: lang/json/vehicle_part_from_json.py msgid "roof-mounted external tank (100L)" -msgstr "" +msgstr "dachowy zewnętrzny zbiornik (100L)" #: lang/json/vehicle_part_from_json.py msgid "external tank (200L)" @@ -296769,11 +309509,11 @@ msgstr "zewnętrzny zbiornik (200L)" #: lang/json/vehicle_part_from_json.py msgid "roof-mounted external tank (200L)" -msgstr "" +msgstr "dachowy zewnętrzny zbiornik (200L)" #: lang/json/vehicle_part_from_json.py msgid "wooden barrel (100L)" -msgstr "" +msgstr "drewniana beczka (100L)" #. ~ Description for wooden barrel (100L) #. ~ Description for steel drum (100L) @@ -296786,6 +309526,12 @@ msgid "" "installed in the vehicle. You can also use a rubber hose to siphon liquids " "out of a tank." msgstr "" +"Miejsce do przechowywania płynów, montowane wewnątrz przestrzeni ładunkowej " +"lub pasażerskiej. Jeśli jest wypełniony paliwem odpowiednim dla silnika " +"pojazdu, silnik będzie automatycznie pobierał paliwo ze zbiornika, gdy " +"silnik jest włączony. W przypadku napełnienia wodą, dostęp do wody można " +"uzyskać z kranu, jeżeli jest on zainstalowany w pojeździe. Można również " +"użyć gumowego węża do odessania płynu ze zbiornika." #. ~ Description for fuel bunker #: lang/json/vehicle_part_from_json.py @@ -296800,15 +309546,15 @@ msgstr "" #: lang/json/vehicle_part_from_json.py msgid "mounted makeshift chemical thrower" -msgstr "" +msgstr "zamontowany prowizoryczny miotacz chemikaliów" #: lang/json/vehicle_part_from_json.py msgid "mounted XM34 EMP projector" -msgstr "" +msgstr "zamontowany generator EMP XM34" #: lang/json/vehicle_part_from_json.py msgid "mounted H&K G80 Railgun" -msgstr "" +msgstr "zamontowane dział elektromagnetyczne H&K G80" #: lang/json/vehicle_part_from_json.py msgid "mounted flamethrower" @@ -296816,7 +309562,7 @@ msgstr "zamontowany miotacz ognia" #: lang/json/vehicle_part_from_json.py msgid "mounted PPA-5 plasma gun" -msgstr "" +msgstr "zamontowane działo plazmowe PPA-5" #: lang/json/vehicle_part_from_json.py msgid "mounted A7 laser rifle" @@ -296828,11 +309574,11 @@ msgstr "zamontowany M249" #: lang/json/vehicle_part_from_json.py msgid "mounted M249S" -msgstr "" +msgstr "zamontowany M249S" #: lang/json/vehicle_part_from_json.py msgid "mounted gatling shotgun" -msgstr "" +msgstr "zamontowana strzelba gatling" #: lang/json/vehicle_part_from_json.py msgid "mounted M2 Browning" @@ -296848,7 +309594,7 @@ msgstr "zamontowany Karabin Maszynowy Browninga" #: lang/json/vehicle_part_from_json.py msgid "mounted M231 PFW" -msgstr "" +msgstr "zamontowany M231 PFW" #: lang/json/vehicle_part_from_json.py msgid "mounted M240" @@ -296860,7 +309606,7 @@ msgstr "zamontowany M60" #: lang/json/vehicle_part_from_json.py msgid "mounted M60 Semi Auto" -msgstr "" +msgstr "zamontowany półautomatyczny M60" #: lang/json/vehicle_part_from_json.py msgid "mounted Mark 19 grenade launcher" @@ -296868,7 +309614,7 @@ msgstr "zamontowana wyrzutnia granatów Mark 19" #: lang/json/vehicle_part_from_json.py msgid "mounted BGM-71F TOW" -msgstr "" +msgstr "zamontowany BGM-71F TOW" #: lang/json/vehicle_part_from_json.py msgid "mounted RM298 HMG" @@ -296880,15 +309626,15 @@ msgstr "zamontowany RKM RM614" #: lang/json/vehicle_part_from_json.py msgid "mounted Boeing XM-P plasma rifle" -msgstr "" +msgstr "zamontowany karabin plazmowy Boeing XM-P" #: lang/json/vehicle_part_from_json.py msgid "mounted coilgun" -msgstr "" +msgstr "zamontowane działko Gaussa" #: lang/json/vehicle_part_from_json.py msgid "plugged 3-inch ordnance rifle" -msgstr "" +msgstr "podłączony 3-calowy karabin maszynowy" #. ~ Description for plugged 3-inch ordnance rifle #: lang/json/vehicle_part_from_json.py @@ -296896,6 +309642,8 @@ msgid "" "Unfortunately, some responsible killjoy poured concrete in the barrel of " "this historic cannon to make it safe for display." msgstr "" +"Niestety, jakiś odpowiedzialny malkontent zalał lufę tej historycznej armaty" +" betonem, aby uczynić ją bezpieczną do ekspozycji." #: lang/json/vehicle_part_from_json.py msgid "kitchen unit" @@ -296937,6 +309685,13 @@ msgid "" "your inventory. If you attempt to craft an item that needs one of the " "kitchen buddy's functions, it will automatically be selected as a tool." msgstr "" +"Wielofunkcyjna stacja wytwórcza z oczyszczaczem wody, suszarką do żywności, " +"zamykaczem próżniowym, i prasą ręczną do produkcji amunicji. Czerpie prąd z " +"akumulatorów pojazdu. Zbadaj ('e') pole z pomocnikiem kuchennym by uzyskać " +"dostęp do kranu z wodą lub by oczyścić wodę w zbiorniku pojazdu lub " +"pojemniku w twoim ekwipunku. Jeśli spróbujesz wytworzyć przedmiot który " +"potrzebuje jednej z funkcji kuchennego pomocnika, zostanie on automatycznie " +"wybrany jako narzędzie." #. ~ Description for onboard chemistry lab #: lang/json/vehicle_part_from_json.py @@ -296947,6 +309702,11 @@ msgid "" " attempt to craft an item that needs one of the chemistry lab's functions, " "it will automatically be selected as a tool." msgstr "" +"Mała stacja chemiczna zawierający płytę grzewczą i zestaw do elektrolizy " +"zasilane akumulatorami pojazdu. Zbadaj ('e') pole z laboratorium chemicznym " +"by uzyskać dostęp do kranu z wodą lub podgrzać jedzenie na płycie grzewczej." +" Jeśli spróbujesz wytworzyć przedmiot który potrzebuje jednej z funkcji " +"laboratorium chemicznego, zostanie ono automatycznie wybrane jako narzędzie." #: lang/json/vehicle_part_from_json.py msgid "mounted electric forge" @@ -296960,6 +309720,10 @@ msgid "" "attempt to craft an item that needs a forge, you will be given the option of" " selecting it as a tool." msgstr "" +"Elektryczna kuźnia do prac metalurgicznych, zasilana prądem z zasobów " +"pojazdu. Mając młotek i inne narzędzia możesz jej użyć do prac z metalem. " +"Jeśli zamierzasz stworzyć przedmiot wymagający kuźni, będziesz miał " +"możliwość wybrania jej jako narzędzia." #: lang/json/vehicle_part_from_json.py msgid "mounted electric kiln" @@ -296973,6 +309737,10 @@ msgid "" "craft an item that needs a kiln, you will be given the option of selecting " "it as a tool." msgstr "" +"Elektryczny piec do wypalania cegieł i ceramiki, zasilany prądem z zasobów " +"pojazdu. Można go użyć do utwardzania gliny lub cegieł… Jeśli zamierzasz " +"stworzyć przedmiot wymagający pieca, będziesz miał możliwość wybrania go " +"jako narzędzia." #: lang/json/vehicle_part_from_json.py msgid "null part" @@ -296983,15 +309751,18 @@ msgstr "pusta część" msgid "" "Attach this part to a beast of burden to allow it to pull your vehicle." msgstr "" +"Zamocuj tę część do zwierzęcia pociągowego, aby umożliwić mu ciągnięcie " +"twojego pojazdu." #: lang/json/vehicle_part_from_json.py msgid "cart handle" -msgstr "" +msgstr "uchwyt wozu" #. ~ Description for cart handle #: lang/json/vehicle_part_from_json.py msgid "A metal handle, a creature with hands could use it to push a vehicle." msgstr "" +"Metalowy uchwyt, istota posiadająca ręce mogłaby go użyć do pchania pojazdu." #: lang/json/vehicle_part_from_json.py msgid "tracking device" @@ -297040,6 +309811,15 @@ msgstr "Przejście." msgid "wooden aisle" msgstr "drewniane przejście" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "składane drewniane przejście" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "Składane przejście." + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -297093,6 +309873,8 @@ msgid "" "A computer system hooked up to the steering and engine of the vehicle to " "allow it to follow simple paths." msgstr "" +"System komputerowy podłączony do układu kierowniczego i silnika pojazdu, " +"umożliwiający mu poruszanie się po prostych ścieżkach." #: lang/json/vehicle_part_from_json.py msgid "swappable storage battery case" @@ -297113,6 +309895,9 @@ msgid "" "A mount for batteries usually used in handheld tools. Allows quick removal " "or addition of such batteries into vehicular power grid." msgstr "" +"Stelaż do akumulatorów używanych zazwyczaj w narzędziach ręcznych. Umożliwia" +" szybkie wyjęcie lub dodanie takich akumulatorów do sieci zasilającej " +"pojazdu." #. ~ Description for military black box #: lang/json/vehicle_part_from_json.py @@ -297148,6 +309933,8 @@ msgid "" "you could clean a lot of clothes. 'e'xamine the tile with the washing " "machine to use it." msgstr "" +"Mała pralka. Używając detergentu, wody i nieco prądu elektrycznego, możesz w" +" niej wyprać wiele ubrań. Zbadaj ('e') pole z pralką by jej użyć." #. ~ Description for dishwasher #: lang/json/vehicle_part_from_json.py @@ -297156,6 +309943,9 @@ msgid "" "could clean your dishes… Or something more useful like a CBM dripping with " "zombie gore. 'e'xamine the tile with the dishwasher to use it." msgstr "" +"Mała zmywarka do naczyń. Z detergentem, wodą i odrobiną energii elektrycznej" +" mógłbyś umyć naczynia... Albo coś bardziej użytecznego, jak KBM ociekające " +"posoką zombie. Zbadaj ('e') pole ze zmywarką, aby jej użyć." #. ~ Description for autoclave #: lang/json/vehicle_part_from_json.py @@ -297163,6 +309953,8 @@ msgid "" "This is an autoclave. It's useful for sterilizing things like CBMs. " "'e'xamine the tile with the autoclave to use it." msgstr "" +"To jest autoklaw. Przydaje się do sterylizacji takich rzeczy jak KBM. Zbadaj" +" ('e') pole z autoklawem, aby go użyć." #: lang/json/vehicle_part_from_json.py msgid "trunk" @@ -297184,6 +309976,10 @@ msgstr "składane drewniane pudło" msgid "wood table" msgstr "drewniany stół" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "składany stół" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "drewniany kadłub łodzi" @@ -297197,6 +309993,7 @@ msgstr "Drewniany kadłub zapobiega dostaniu się wody do środka łodzi." #: lang/json/vehicle_part_from_json.py msgid "Logs tied together that will keep your boat out of the water." msgstr "" +"Związane ze sobą kłody, które utrzymają Twoją łódź na powierzchni wody." #. ~ Description for plastic boat hull #: lang/json/vehicle_part_from_json.py @@ -297211,7 +310008,7 @@ msgstr "metalowy kadłub łodzi" #. ~ Description for metal boat hull #: lang/json/vehicle_part_from_json.py msgid "A metal sheet that keeps the water out of your boat." -msgstr "Metalowy kadłub zapobiega dostaniu się wody do środka łodzi." +msgstr "Blaszany kadłub zapobiega dostaniu się wody do środka łodzi." #. ~ Description for carbon fiber boat hull #: lang/json/vehicle_part_from_json.py @@ -297228,7 +310025,7 @@ msgstr "wiosła ręczne" #: lang/json/vehicle_part_from_json.py msgid "reins and tackle" -msgstr "" +msgstr "lejce i wędzidło" #. ~ Description for reins and tackle #: lang/json/vehicle_part_from_json.py @@ -297236,6 +310033,8 @@ msgid "" "A set of leather bindings to control a creature pulling a vehicle, such as a" " cart." msgstr "" +"Zestaw skórzanych wiązań do sterowania stworzeniem ciągnącym pojazd, np. " +"wóz." #: lang/json/vehicle_part_from_json.py msgid "controls" @@ -297253,11 +310052,15 @@ msgstr "Ramka zawierająca kilka światełek i sterowanie." #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted heater" -msgstr "" +msgstr "grzejnik samochodowy" + +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "mały grzejnik samochodowy" #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" -msgstr "" +msgstr "klimatyzator samochodowy" #. ~ Description for electronics control unit #: lang/json/vehicle_part_from_json.py @@ -297268,7 +310071,7 @@ msgstr "" #. ~ Description for muffler #: lang/json/vehicle_part_from_json.py msgid "A metal pipe that somewhat reduces engine noise." -msgstr "" +msgstr "Metalowa rura, która nieco redukuje hałas silnika." #: lang/json/vehicle_part_from_json.py msgid "seatbelt" @@ -297295,7 +310098,7 @@ msgstr "" #: lang/json/vehicle_part_from_json.py msgid "smart engine controller" -msgstr "" +msgstr "smart kontroler silnika" #. ~ Description for smart engine controller #: lang/json/vehicle_part_from_json.py @@ -297374,6 +310177,14 @@ msgstr "" "Duża turbina wiatrowa z nogami stabilizującymi. Powoduje dodatkowy opór dla " "pojazdu." +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" +"Mała macierz paneli słonecznych zaprojektowana tak, aby można ją było złożyć" +" jeden w drugi." + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -297682,6 +310493,10 @@ msgid "" "the tile to access the controls, or use the vehicle control key (default " "'^')." msgstr "" +"Zaawansowany zestaw elektronicznych elementów sterujących, które umożliwiają" +" sterowanie pojazdem za pomocą pilota, gdy nie ma Cię w pojeździe. Aby " +"uzyskać dostęp do elementów sterujących, można zbadać ('e') pole lub użyć " +"klawisza sterowania pojazdem (domyślnie '^')." #: lang/json/vehicle_part_from_json.py msgid "camera control system" @@ -297695,6 +310510,10 @@ msgid "" "'e'xamine the tile to access the controls, or use the vehicle control key " "(default '^')." msgstr "" +"Wyświetlacz LCD podłączony do jednej lub więcej kamer. Gdy jest włączony, " +"umożliwia podgląd z kamer, ale pobiera energię z akumulatorów pojazdu. " +"Możesz zbadać pole, aby uzyskać dostęp do elementów sterujących, lub użyć " +"klawisza sterującego pojazdu (domyślnie \"^\")." #. ~ Description for security camera #: lang/json/vehicle_part_from_json.py @@ -297832,6 +310651,8 @@ msgid "" "A rotating, universal mount for a weapon. If your hands are empty, you can " "stand on the same tile as a turret mount and 'f'ire the weapon." msgstr "" +"Obrotowy, uniwersalny uchwyt na broń. Jeśli masz puste ręce, możesz stanąć " +"na tym samym polu, na którym stoi wieżyczka i strzelać ('f') z niej." #. ~ Description for turret control unit #: lang/json/vehicle_part_from_json.py @@ -297841,23 +310662,29 @@ msgid "" "automatic mode. When installed over the turret, it will enable auto " "targeting mode for said turret." msgstr "" +"Zestaw silnika, kamery i jednostki SI, który pozwala na śledzenie celów, " +"identyfikację przyjaciół i wrogów oraz strzelanie z podłączonej wieżyczki w " +"trybie pełnej automatyki. Po zainstalowaniu na wieżyczce, włącza tryb " +"automatycznego celowania dla tejże wieżyczki." #. ~ Description for wooden wheel mount #: lang/json/vehicle_part_from_json.py msgid "A piece of wood with holes suitable for a bike or motorbike wheel." msgstr "" +"Kawałek drewna z dziurami odpowiednimi dla koła rowerowego lub " +"motocyklowego." #: lang/json/vehicle_part_from_json.py msgid "wooden wheel mount (steerable)" -msgstr "" +msgstr "mocowanie koła drewnianego (sterowanego)" #: lang/json/vehicle_part_from_json.py msgid "light wheel mount (steerable)" -msgstr "" +msgstr "mocowanie lekkiego koła (sterowanego)" #: lang/json/vehicle_part_from_json.py msgid "wheel hub assembly" -msgstr "" +msgstr "zespół piasty koła" #. ~ Description for wheel hub assembly #: lang/json/vehicle_part_from_json.py @@ -297865,10 +310692,12 @@ msgid "" "Connection where wheels can be connected on. This particular one is fit for" " normal car wheels." msgstr "" +"Przyłącze, do którego można przykręcić koła. Ten konkretny jest dopasowany " +"do normalnych kół samochodowych." #: lang/json/vehicle_part_from_json.py msgid "wheel hub assembly (steerable)" -msgstr "" +msgstr "zespół piasty koła (sterowanego)" #. ~ Description for heavy wheel hub assembly #: lang/json/vehicle_part_from_json.py @@ -297876,10 +310705,12 @@ msgid "" "Connection where wheels can be connected on. This particular one is fit for" " large car wheels." msgstr "" +"Przyłącze, do którego można przykręcić koła. Ten konkretny jest dopasowany " +"do dużych kół samochodowych." #: lang/json/vehicle_part_from_json.py msgid "heavy wheel hub assembly (steerable)" -msgstr "" +msgstr "zespół piasty dużego koła (sterowanego)" #. ~ Description for rail wheel #: lang/json/vehicle_part_from_json.py @@ -297887,10 +310718,12 @@ msgid "" "A strong metal wheel. A flange helps keep it on a rail, but makes it " "perform terribly when not on a rail." msgstr "" +"Mocne metalowe koło. Kołnierz pomaga utrzymać je na szynie, ale sprawia, że " +"zachowuje się fatalnie, gdy nie jest na szynie." #: lang/json/vehicle_part_from_json.py msgid "rail wheel (steerable)" -msgstr "" +msgstr "koło kolejowe (sterowalne)" #. ~ Description for pair of small rail wheels #: lang/json/vehicle_part_from_json.py @@ -297899,6 +310732,9 @@ msgid "" "small rails. It performs terribly when not on a rail. Moreover, you can't " "steer it." msgstr "" +"Para małych kół kolejowych. Dobrze się spisują, gdy jeżdżą na dwóch małych " +"szynach. Działają fatalnie, gdy nie są na szynach. Co więcej, nie można nimi" +" sterować." #: lang/json/vehicle_part_from_json.py msgid "roller drum" @@ -297955,7 +310791,7 @@ msgstr "koła" #. ~ Description for wheels #: lang/json/vehicle_part_from_json.py msgid "A set of 10\" wheels with tough rubber tires." -msgstr "" +msgstr "Zestaw 10-calowych kół z wytrzymałymi gumowymi oponami." #. ~ Description for motorbike wheel #: lang/json/vehicle_part_from_json.py @@ -297964,7 +310800,7 @@ msgstr "Małe koło od motocykla." #: lang/json/vehicle_part_from_json.py msgid "tricycle wheels" -msgstr "" +msgstr "koła trójkołowca" #. ~ Description for tricycle wheels #: lang/json/vehicle_part_from_json.py @@ -298058,7 +310894,7 @@ msgid "" msgstr "" "Stanowisko do spawania i obróbki metalu, zasilane z akumulatora pojazdu. " "Zbadaj („e”) kuźnię, by wykorzystać jej spawarkę lub lutownicę; będziesz " -"potrzebował ochrony przed oślepiającym światłem." +"potrzebować ochrony przed oślepiającym światłem." #. ~ Description for cooking rig #: lang/json/vehicle_part_from_json.py @@ -298096,15 +310932,15 @@ msgstr "" #: lang/json/vehicle_part_from_json.py msgid "mounted Gibson S86" -msgstr "" +msgstr "zamontowany Gibson S86" #: lang/json/vehicle_part_from_json.py msgid "mounted Accipiter Hawk-00" -msgstr "" +msgstr "zamontowany Accipiter Hawk-00" #: lang/json/vehicle_part_from_json.py msgid "crude plating" -msgstr "" +msgstr "surowe poszycie" #. ~ Description for crude plating #: lang/json/vehicle_part_from_json.py @@ -298127,7 +310963,7 @@ msgstr "" #: lang/json/vehicle_part_from_json.py msgid "mounted external tank (200L)" -msgstr "" +msgstr "montowany zewnętrzny zbiornik (200L)" #. ~ Description for ultralight frame #: lang/json/vehicle_part_from_json.py @@ -298185,7 +311021,7 @@ msgstr "" #: lang/json/vehicle_part_from_json.py msgid "cargo shelving" -msgstr "" +msgstr "półki towarowe" #: lang/json/vehicle_part_from_json.py msgid "wiring" @@ -298206,7 +311042,7 @@ msgstr "zamontowany TDI Vector" #: lang/json/vehicle_part_from_json.py msgid "mounted m4 carbine" -msgstr "" +msgstr "zamontowany karabin m4" #: lang/json/vehicle_part_from_json.py msgid "mounted AK47" @@ -298294,7 +311130,7 @@ msgstr "zamontowana wyrzutnia 40mm" #: lang/json/vehicle_part_from_json.py msgid "mounted Mossberg 930 shotgun" -msgstr "" +msgstr "zamontowana strzelba Mossberg 930" #: lang/json/vehicle_part_from_json.py msgid "mounted Barrett M107A1" @@ -298330,7 +311166,7 @@ msgstr "zamontowany MAC-10" #: lang/json/vehicle_part_from_json.py msgid "mounted Marlin 9A" -msgstr "" +msgstr "zamontowany Marlin 9A" #: lang/json/vehicle_part_from_json.py msgid "mounted Milkor MGL" @@ -298466,7 +311302,7 @@ msgstr "zamontowana automatyczna wyrzutnia granatów" #: lang/json/vehicle_part_from_json.py msgid "bulette plating" -msgstr "" +msgstr "poszycie z buletty" #. ~ Description for light orichalcum frame #: lang/json/vehicle_part_from_json.py @@ -298475,6 +311311,9 @@ msgid "" "on it, and it can be attached to other frames to increase the vehicle's " "size." msgstr "" +"Wyszczuplona magiczna metalowa rama. Można na niej zamontować inne elementy " +"pojazdu, a także przymocować ją do innych ram, aby zwiększyć rozmiar " +"pojazdu." #. ~ Description for orichalcum frame #: lang/json/vehicle_part_from_json.py @@ -298483,6 +311322,9 @@ msgid "" "mounted on it, and it can be attached to other frames to increase the " "vehicle's size." msgstr "" +"Kosztowna magiczna metalowa rama. Można na niej zamontować inne elementy " +"pojazdu, a także przymocować ją do innych ram, aby zwiększyć rozmiar " +"pojazdu." #: lang/json/vehicle_part_from_json.py msgid "" @@ -298490,15 +311332,20 @@ msgid "" " mana rather than normal fuel, it otherwise functions exactly as a " "conventional internal combustion engine. Somehow." msgstr "" +"Magicznie zamanifestowany silnik spalinowy. Pomimo tego, że działa " +"całkowicie na bazie many, a nie normalnego paliwa, funkcjonuje dokładnie " +"tak, jak konwencjonalny silnik spalinowy. Jakimś cudem." #: lang/json/vehicle_part_from_json.py msgid "mana frame" -msgstr "" +msgstr "rama z many" #. ~ Description for mana frame #: lang/json/vehicle_part_from_json.py msgid "A shape of pure mana that can float and carry items." msgstr "" +"Kształt z czystej many, który może unosić się w powietrzu i przenosić " +"przedmioty." #: lang/json/vitamin_from_json.py msgid "Calcium" @@ -298586,75 +311433,75 @@ msgstr "Zamieć śnieżna" #: lang/json/widget_from_json.py msgid "w:H" -msgstr "" +msgstr "c:G" #: lang/json/widget_from_json.py msgid "w:T" -msgstr "" +msgstr "c:T" #: lang/json/widget_from_json.py msgid "w:LA" -msgstr "" +msgstr "c:LR" #: lang/json/widget_from_json.py msgid "w:RA" -msgstr "" +msgstr "c:PR" #: lang/json/widget_from_json.py msgid "w:LL" -msgstr "" +msgstr "c:LN" #: lang/json/widget_from_json.py msgid "w:RL" -msgstr "" +msgstr "c:PN" #: lang/json/widget_from_json.py msgid "wet:HE" -msgstr "" +msgstr "m:G" #: lang/json/widget_from_json.py msgid "wet:TO" -msgstr "" +msgstr "m:T" #: lang/json/widget_from_json.py msgid "wet:LA" -msgstr "" +msgstr "m:LR" #: lang/json/widget_from_json.py msgid "wet:RA" -msgstr "" +msgstr "m:PR" #: lang/json/widget_from_json.py msgid "wet:LL" -msgstr "" +msgstr "m:LN" #: lang/json/widget_from_json.py msgid "wet:RL" -msgstr "" +msgstr "m:PN" #: lang/json/widget_from_json.py msgid "e:H" -msgstr "" +msgstr "s:G" #: lang/json/widget_from_json.py msgid "e:T" -msgstr "" +msgstr "s:T" #: lang/json/widget_from_json.py msgid "e:LA" -msgstr "" +msgstr "s:LR" #: lang/json/widget_from_json.py msgid "e:RA" -msgstr "" +msgstr "s:PR" #: lang/json/widget_from_json.py msgid "e:LL" -msgstr "" +msgstr "s:LN" #: lang/json/widget_from_json.py msgid "e:RL" -msgstr "" +msgstr "s:PN" #: lang/json/widget_from_json.py msgid "Stam" @@ -298662,7 +311509,7 @@ msgstr "Stam" #: lang/json/widget_from_json.py src/panels.cpp msgid "Focus" -msgstr "Skupienie" +msgstr "Skup." #: lang/json/widget_from_json.py src/bonuses.cpp src/panels.cpp msgid "Speed" @@ -298676,8 +311523,8 @@ msgstr "Zmęczenie" msgid "Fatig" msgstr "Zmęcz" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "Strudzenie" @@ -299630,7 +312477,7 @@ msgstr "Zabawa z twoim %s nieco podniosła cię na duchu." #: src/activity_actor.cpp #, c-format msgid "You can't use your %1$s to pry up the nails." -msgstr "" +msgstr "Nie możesz użyć swojego %1$s do podważania gwoździ." #: src/activity_actor.cpp msgid "You open up your kit and shave." @@ -301375,12 +314222,13 @@ msgstr "To jest zbyt ciężkie!" #: src/advanced_inv.cpp #, c-format msgid "How many do you want to move? [Have %d] (0 to cancel)" -msgstr "Ile chcesz przenieść? [Masz %d] (\"0\" by anulować)" +msgstr "Ile chcesz przenieść? [Masz %d] (0, by anulować)" #: src/advanced_inv.cpp #, c-format msgid "Destination can only hold %d! Move how many? [Have %d] (0 to cancel)" -msgstr "Cel może pomieścić tylko %d! Ile przesunąć? [Masz %d] (\"0\" by anulować)" +msgstr "" +"Cel może pomieścić tylko %d! Ile przesunąć? [Masz %d] (0, by anulować)" #: src/advanced_inv.cpp msgid "The destination is already full!" @@ -301553,6 +314401,18 @@ msgstr "Właściwości" msgid "Coverage:" msgstr "Pokrycie:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "Pokrycie (wręcz):" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "Pokrycie (dystansowe):" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "Pokrycie (życiowe):" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "Skrępowanie:" @@ -301644,10 +314504,12 @@ msgstr "Sortuj ubiór" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" -"Wciśnij [%s], by uzyskać pomoc. Wciśnij " +"[%s] Ukryj grafikę. [%s] Zmień " +"stronę. Wciśnij [%s] do pomocy. Wciśnij " "[%s], by zmienić przypisania klawiszy." #: src/armor_layers.cpp @@ -301659,6 +314521,12 @@ msgstr "(Wewnętrzna warstwa)" msgid "Storage (%s)" msgstr "Pojemność (%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr " U" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(Zewnętrzna warstwa)" @@ -301824,7 +314692,7 @@ msgstr "tak" #: src/auto_note.cpp msgid "Enter a map extra custom symbol (empty to unset):" -msgstr "Wprowadź własny sumbol dodatków mapt (puste by usunąć):" +msgstr "Wprowadź własny symbol dodatków mapy (puste, by usunąć):" #: src/auto_note.cpp msgid "Pick a color:" @@ -303416,7 +316284,7 @@ msgstr "%s nie ma zainstalowanej tej bioniki." #: src/bionics.cpp #, c-format msgid "%s must remove the %s bionic to remove the %s." -msgstr "%s musi usunąć %s bionikę żeby usunąć %s." +msgstr "%s musi usunąć %s bionikę, żeby usunąć %s." #: src/bionics.cpp msgid "Are you sure you wish to uninstall the selected bionic?" @@ -305597,7 +318465,7 @@ msgstr "| Obra. | Przebicie " #: src/character_ammo.cpp #, c-format msgid "You need a compatible magazine to reload the %s!" -msgstr "Potrzebujesz pasującego magazynka, żeby przeładować %s!" +msgstr "Potrzebujesz pasującego magazynku, by przeładować %s!" #: src/character_ammo.cpp msgid "You can't reload anything with the ammo you have on hand." @@ -305606,7 +318474,7 @@ msgstr "Nie możesz przeładować niczego z amunicją, którą masz pod ręką." #: src/character_ammo.cpp #, c-format msgid "You don't have any %s to reload your %s!" -msgstr "Nie masz więcej %s żeby przeładować %s!" +msgstr "Nie masz więcej %s, by przeładować %s!" #. ~ %s is armor name #: src/character_armor.cpp @@ -306049,11 +318917,6 @@ msgstr "Nie spodziewasz się żadnego efektu z użycia tego." msgid "No limb would benefit from it." msgstr "Żadna kończyna nie skorzysta z tego." -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "Anuluj" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "Wstajesz z wysiłkiem." @@ -306302,7 +319165,7 @@ msgstr "" #: src/character_martial_arts.cpp #, c-format msgid "%s to select martial arts style." -msgstr "%s by wybrać styl walki wręcz." +msgstr "%s, by wybrać styl walki wręcz." #: src/character_martial_arts.cpp src/color.cpp src/options.cpp src/panels.cpp msgid "Normal" @@ -306372,6 +319235,14 @@ msgstr "Teren kopania" msgid "Designate an area to mine." msgstr "Wyznacz obszar do kopania." +#: src/clzones.cpp +msgid "Mop tile" +msgstr "Mopuj kafelek" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "Wyznacz obszar do mopowania." + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "Strefa dekonstrukcji pojazdu" @@ -307274,7 +320145,7 @@ msgstr "" #, c-format msgctxt "query_ynq" msgid "%s %s, %s, %s (Case sensitive)" -msgstr "%s %s, %s, %s (wielkość liter ma znaczenie)" +msgstr "%s %s, %s, %s (Wielkość liter ma znaczenie)" #. ~ 1st: query string, 2nd-4th: keybinding descriptions #: src/computer_session.cpp @@ -307980,7 +320851,7 @@ msgid "" "workbench or a smaller batch size" msgstr "" "%s jest zbyt duże i/lub ciężkie, by nad tym pracować. Możesz chcieć użyć " -"warsztatu lub mniejszej ilości hurtowej." +"stołu warsztatowego lub mniejszej ilości hurtowej." #: src/crafting.cpp msgid "Your morale is too low to continue crafting." @@ -308681,10 +321552,6 @@ msgstr "podstawowa umiejętność używana w produkcji" msgid "any skill used to craft" msgstr "dowolna umiejętność używana w produkcji" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "gotowanie" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "jakość wymagana do produkcji" @@ -309073,14 +321940,14 @@ msgstr "Wystąpił błąd! Poniżej raport z błędu:" #: src/debug.cpp msgid "Press space bar to continue the game." -msgstr "Wciśnij spację by kontynuować grę." +msgstr "Wciśnij spację, by kontynuować grę." #: src/debug.cpp msgid "" "Press I (or i) to also ignore this" " particular message in the future." msgstr "" -"Wciśnij I (lub i) by ponadto " +"Wciśnij I (lub i), by ponadto " "zignorować tę konkretną wiadomość w przyszłości." #: src/debug.cpp @@ -309088,8 +321955,8 @@ msgid "" "Press C (or c) to copy this " "message to the clipboard." msgstr "" -"Wciśnij C (lub c) by skopiować tę " -"wiadomość do schowka." +"Wciśnij C (lub c), by skopiować tę" +" wiadomość do schowka." #: src/debug_menu.cpp msgid "Mutate" @@ -309243,6 +322110,14 @@ msgstr "Wypisz informację o magii NPC do konsoli" msgid "Test weather" msgstr "Testuj pogodę" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "Zapisz globalne effect_on_condition do eocs.output" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "Zapisz globalną/-e zmienną/-e do var_list.output" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "Testuj listę dodatków mapy" @@ -309261,7 +322136,7 @@ msgstr "Włącz osiągnięcia" #: src/debug_menu.cpp msgid "Show debug message" -msgstr "Pokaż wiadomość debug" +msgstr "Pokaż wiadomość błędu" #: src/debug_menu.cpp msgid "Crash game (test crash handling)" @@ -309676,6 +322551,11 @@ msgstr "Pragnienie: %d %s" msgid "Fatigue: %d %s" msgstr "Zmęczenie: %d %s" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "Strudzenie: %d %s" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "Przechowywanych kcal: " @@ -309764,6 +322644,11 @@ msgstr "Ustaw zmęczenie na? Obecnie: %d" msgid "Set sleep deprivation to? Currently: %d" msgstr "Ustaw deprywację snu na? Obecnie: %d" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "Zresetować strudzenie? Obecnie: %d" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -310473,7 +323358,7 @@ msgstr "Debug przepisu." #: src/debug_menu.cpp msgid "You know how to craft that now." -msgstr "Teraz wiesz jak to wytworzyć." +msgstr "Teraz wiesz, jak to wytworzyć." #: src/debug_menu.cpp msgid "Select new weather pattern:" @@ -310529,7 +323414,7 @@ msgstr "Jak bardzo chcesz się uszkodzić? hp: %s" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "Dodaj czas krwawienia w minutach, równy intensywności:" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "Ten plik nie został skompilowany ze wsparciem kafelków." @@ -310553,15 +323438,6 @@ msgstr "" "Wyjść bez zapisu? Może to spowodować błędy takie jak zduplikowane lub " "brakujące przedmiotu i pojazdy!" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "Poprawnie zapisano twój zrzut ekranu do: %s" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "Pojawił się błąd poczas próby zapisania zrzutu ekranu." - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "Raport zapisany do debug.log" @@ -311072,7 +323948,7 @@ msgstr "Zmień mapę główną (nie stosuje się)" #, c-format msgctxt "keybinding descriptions" msgid "[%s,%s] prev/next oter type, [%s,%s] select, %s, %s" -msgstr "[%s,%s] poprz/nast oter typ, [%s,%s] wybierz, %s, %s" +msgstr "[%s,%s] poprz./nast. typ oter, [%s,%s] wybierz, %s, %s" #: src/editmap.cpp #, c-format @@ -311083,7 +323959,7 @@ msgstr "Genmapy: %s" #: src/editmap.cpp #, c-format msgid "Changed oter_id from '%s' (%s) to '%s' (%s)" -msgstr "Zmieniono oter_id z '%s' (%s) na '%s' (%s)" +msgstr "Zmieniono oter_id z „%s” (%s) na „%s” (%s)" #: src/editmap.cpp msgid "Your mechanic could not find a vehicle at the garage." @@ -311743,7 +324619,7 @@ msgstr "Nastawienie do ciebie: %s" #: src/faction.cpp msgid "Press enter to talk to this follower " -msgstr "Wciśnij enter by rozmawiać z tym towarzyszem" +msgstr "Wciśnij enter, by rozmawiać z tym towarzyszem" #: src/faction.cpp msgid "traveling to: " @@ -311793,7 +324669,7 @@ msgstr "W zasięgu interakcji" #: src/faction.cpp msgid "Press enter to recall from their mission." -msgstr "Wciśnij enter by odwołać ich z misji." +msgstr "Wciśnij enter, by odwołać ich z misji." #: src/faction.cpp msgid "Status: " @@ -311833,7 +324709,7 @@ msgstr "Czeka w obozie" #: src/faction.cpp msgid "Condition: " -msgstr "Warunek: " +msgstr "Stan: " #: src/faction.cpp msgctxt "needs" @@ -311892,7 +324768,7 @@ msgstr "%s wraca ze swojej misji" #: src/faction_camp.cpp msgid "Upgrade camp" -msgstr "Ulepsz obóz" +msgstr "Ulepsz obóz:" #: src/faction_camp.cpp msgid "Working to expand your camp!\n" @@ -312310,9 +325186,10 @@ msgid "" "Time: 3 Hours, Repeated\n" "Positions: %d/3\n" msgstr "" -"Notatki: Wyślij kompana, by zbierał lekkie krzaki i grube konary.\n" +"Notatki:\n" +"Wyślij towarzysza, by zebrał lekkie zarośla i grube gałęzie.\n" "\n" -"Umiejętność używana: surwiwal\n" +"Używana umiejętność: surwiwal\n" "Trudność: nd.\n" "Możliwości zbierackie:\n" "> grube konary\n" @@ -312339,9 +325216,9 @@ msgid "" "Positions: %d/1\n" msgstr "" "Notatki:\n" -"Wyślij kompana do zwykłych prac codziennych i sortowania zapasów.\n" +"Wyślij towarzysza do zwykłych prac codziennych i sortowania zapasów.\n" "\n" -"Umiejętność używana: wytwarzanie\n" +"Używana umiejętność: wytwarzanie\n" "Trudność: nd.\n" "Efekty:\n" "> Materiały pozostawione na zewnątrz na ziemi zostaną posortowane do strefy łupów.\n" @@ -312368,9 +325245,9 @@ msgid "" "Positions: %d/1\n" msgstr "" "Notatki:\n" -"Wyślij kompana, by ścinał drzewa w lesie.\n" +"Wyślij towarzysza, by ścinał drzewa w lesie.\n" "\n" -"Umiejętność używana: wytwarzanie\n" +"Używana umiejętność: wytwarzanie\n" "Trudność: 2\n" "Efekty:\n" "> 50%% drzew/kłód w lesie zostanie ściętych.\n" @@ -312400,14 +325277,14 @@ msgid "" "Positions: %d/1\n" msgstr "" "Notatki:\n" -"Wyślij kompana, by oczyścił pobliski las.\n" +"Wyślij towarzysza, by oczyścił pobliski las.\n" "\n" -"Umiejętność używana: wytwarzanie\n" +"Używana umiejętność: wytwarzanie\n" "Trudność: 1\n" "Efekty:\n" "> 95%% drzew/kłód w lesie zostanie ścięta.\n" "> 0%% materiału łącznie zostanie przyniesione do obozu.\n" -"> Last powinien stać się polem.\n" +"> Las powinien stać się polem.\n" "> Użyteczne do oczyszczenia terenu dla kolejnego obozu.\n" "\n" "Ryzyko: brak\n" @@ -312432,9 +325309,9 @@ msgid "" "Positions: %d/1\n" msgstr "" "Notatki:\n" -"Wyślij kompana, by zbudował improwizowane schronienie i zaopatrzył je w sprzęt w odległej lokalizacji na mapie.\n" +"Wyślij towarzysza, by zbudował improwizowane schronienie i zaopatrzył je w sprzęt w odległej lokalizacji na mapie.\n" "\n" -"Umiejętność używana: surwiwal\n" +"Używana umiejętność: surwiwal\n" "Trudność: 3\n" "Efekty:\n" "> Dobre do ustawienia punktów z zapasami lub odskoczni w sytuacji kryzysowej.\n" @@ -312465,7 +325342,7 @@ msgstr "" "Notatki:\n" "Zanieść sprzęt do kryjówki lub przynieść go stamtąd.\n" "\n" -"Umiejętność używana: surwiwal\n" +"Używana umiejętność: surwiwal\n" "Trudność: 1\n" "Efekty:\n" "> Dobre do przyniesienie pozostawionego sprzętu z ukrycia.\n" @@ -312493,7 +325370,7 @@ msgid "" "Positions: %d/3\n" msgstr "" "Notatki:\n" -"Wyślij kompana, by zbierał jadalne rośliny.\n" +"Wyślij towarzysza, by zbierał jadalne rośliny.\n" "\n" "Używana umiejętność: surwiwal\n" "Trudność: nd.\n" @@ -312521,7 +325398,7 @@ msgid "" "Positions: %d/2\n" msgstr "" "Notatki:\n" -"Wyślij kompana, by ustawiał pułapki na małą zwierzynę.\n" +"Wyślij towarzysza, by ustawiał pułapki na małą zwierzynę.\n" "\n" "Używana umiejętność: urządzenia\n" "Trudność: nd.\n" @@ -312548,9 +325425,9 @@ msgid "" "Positions: %d/1\n" msgstr "" "Notatki:\n" -"Wyślij kompana na polowanie na grubego zwierza.\n" +"Wyślij towarzysza na polowanie na grubego zwierza.\n" "\n" -"Umiejętność używana: strzelectwo\n" +"Używana umiejętność: strzelectwo\n" "Trudność: nd.\n" "Możliwości łowieckie:\n" "> małe, średnie lub duże ciała zwierząt\n" @@ -312581,9 +325458,9 @@ msgid "" "Positions: %d/3\n" msgstr "" "Notatki:\n" -"Wyślij kompana w nieznane. Wysoka umiejętność przetrwania jest potrzebna, by uniknąć walki, ale trzeba się liczyć z jednym lub kilkoma spotkaniami.\n" +"Wyślij towarzysza w nieznane. Wysoka umiejętność przetrwania jest potrzebna, by uniknąć walki, ale trzeba się liczyć z jednym lub kilkoma spotkaniami.\n" "\n" -"Umiejętność używana: surwiwal\n" +"Używana umiejętność: surwiwal\n" "Trudność: 3\n" "Efekty:\n" "> Wybierz punkty docelowe by wyznaczyć trasę.\n" @@ -312612,9 +325489,9 @@ msgid "" "Positions: %d/3\n" msgstr "" "Notatki:\n" -"Wyślij kompana, by oczyścił pustkowia. Celem jest zabicie wszelkich napotkanych wrogich stworzeń i powrót, gdy rany będą zbyt poważne lub liczba wrogów zbyt wielka.\n" +"Wyślij towarzysza, by oczyścił pustkowia. Celem jest zabicie wszelkich napotkanych wrogich stworzeń i powrót, gdy rany będą zbyt poważne lub liczba wrogów zbyt wielka.\n" "\n" -"Umiejętność używana: surwiwal\n" +"Używana umiejętność: surwiwal\n" "Trudność: 4\n" "Efekty:\n" "> Wciąga spotkane w stworzenia w walkę zamiast ucieczki.\n" @@ -312640,7 +325517,7 @@ msgid "" "Time: 5 days\n" msgstr "" "Notatki:\n" -"Wyznacz kompana do próby rozłożenia pojazdu na części.\n" +"Wyznacz towarzysza do próby rozłożenia pojazdu na części.\n" "\n" "Używana umiejętność: mechanika\n" "Trudność: 2\n" @@ -312780,7 +325657,7 @@ msgstr "" "\n" "Używana umiejętność: nd.\n" "Efekty:\n" -"> Wybierz dowolne dostępne rozszerzenie. Rozpoczęcie od farmy jest zawsze dobrym pomysłem, gdyż żywność jest potrzebna, by wysyłać kompanów na misje i nieco potrzeba do utrzymania. Z minimalną inwestycją, mechanik może rozłożyć na części duże pojazdy, a kuźnia zapewnia zasoby do wytwarzania węgla drzewnego.\n" +"> Wybierz dowolne dostępne rozszerzenie. Rozpoczęcie od farmy jest zawsze dobrym pomysłem, gdyż żywność jest potrzebna, by wysyłać towarzyszy na misje i nieco potrzeba do utrzymania. Z minimalną inwestycją, mechanik może rozłożyć na części duże pojazdy, a kuźnia zapewnia zasoby do wytwarzania węgla drzewnego.\n" "\n" "UWAGA: Akcje dostępne w rozszerzeniach są w odrębnych zakładkach okna zarządzania obozem.\n" "\n" @@ -312806,7 +325683,7 @@ msgid "" "or %d day's rations" msgstr "" "Notatki:\n" -"Rozdaj żywność towarzyszom i wypełnij spichlerze. Umieść żywność do rozdania w polu sortowania żywności kompanów. Domyślnie, jest to naprzeciw drzwi namiotu między menadżerem, a ścianą.\n" +"Rozdaj żywność towarzyszom i wypełnij spichlerze. Umieść żywność do rozdania w polu sortowania żywności towarzyszy. Domyślnie, jest to naprzeciw drzwi namiotu między menadżerem, a ścianą.\n" "\n" "Efekty:\n" "> Zwiększa zasoby żywności twojej frakcji, co w konsekwencji pozwala płacić robotnikom za ich czas pracy.\n" @@ -312866,7 +325743,7 @@ msgid "" "Abandon this camp" msgstr "" "Notatki:\n" -"Porzuć ten obóz" +"Porzuć ten obóz." #: src/faction_camp.cpp msgid "Abandon Camp" @@ -312882,11 +325759,11 @@ msgid "" "Companions must be on missions for at least 24 hours before emergency recall becomes available." msgstr "" "Notatki:\n" -"Przerwij obecną misję i wymuś natychmiastowy powrót kompana. Żadna praca nie zostanie wykonana na misji i wszystkie zasoby użyte do misji będą stracone.\n" +"Przerwij obecną misję i wymuś natychmiastowy powrót towarzysza. Żadna praca nie zostanie wykonana na misji i wszystkie zasoby użyte do misji będą stracone.\n" "\n" -"UWAGA: Wszystkie zasoby użyte do misji będą stracone i żadna praca nie zostanie wykonana. Używaj tej misji tylko do odzyskania kompana który normalnie nie mógłby być odzyskany.\n" +"UWAGA: Wszystkie zasoby użyte do misji będą stracone i żadna praca nie zostanie wykonana. Używaj tej misji tylko do odzyskania towarzysza który normalnie nie mógłby być odzyskany.\n" "\n" -"Kompani muszą być na misjach przez co najmniej 24 godziny zanim awaryjne przyzwanie będzie dostępne." +"Towarzysze muszą być na misjach przez co najmniej 24 godziny zanim awaryjne przyzwanie będzie dostępne." #: src/faction_camp.cpp msgid "departs to survey land…" @@ -313494,7 +326371,7 @@ msgid "" "%s\n" "Time: %s\n" msgstr "" -"Umiejętność używana:%s\n" +"Używana umiejętność: %s\n" "Trudność: %d\n" "%s\n" "Czas: %s\n" @@ -313975,7 +326852,7 @@ msgstr "Twoja lokalna pozycja: %s" #: src/game.cpp #, c-format msgid "Total NPCs within %d OMTs: %d. %d are static NPCs." -msgstr "Łącznie NPC w zasięgu %d p. m. g.: %d. %d to statyczne NPC." +msgstr "Łącznie NPC w zasięgu %d pól mapy gł.: %d. %d to statyczne NPC." #: src/game.cpp #, c-format @@ -314239,6 +327116,10 @@ msgstr "Handel" msgid "You swap places with %s." msgstr "Zamieniasz się miejscami z %s." +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "Nie możesz zamienić się miejscami podczas chwytania czegoś." + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -314351,7 +327232,7 @@ msgstr "Nie możesz użyć konsoli w czasie jazdy wierzchowcem." #: src/game.cpp #, c-format msgid "The %s is too unstable to remove anything." -msgstr "Ten %s jest zbyt niestabilny by móc cokolwiek usunąć." +msgstr "Ten %s jest zbyt niestabilny, by móc cokolwiek usunąć." #: src/game.cpp #, c-format @@ -314534,6 +327415,15 @@ msgstr "Nie możesz tam podróżować." msgid "Nickname:" msgstr "Pseudonim:" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "Poprawnie zapisano twój zrzut ekranu do: %s" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "Pojawił się błąd poczas próby zapisania zrzutu ekranu." + #: src/game.cpp src/init.cpp msgid "Items" msgstr "Przedmioty" @@ -314815,7 +327705,7 @@ msgstr "Nie masz narzędzia rzeźnickiego." #: src/game.cpp msgid "There are no corpses here to butcher." -msgstr "Nie ma tu ciał do wypatroszenia." +msgstr "Nie ma tu ciał do cięcia." #: src/game.cpp msgid "You can't access the items here." @@ -314829,15 +327719,15 @@ msgstr "" #: src/game.cpp #, c-format msgid "You see %s nearby! Start butchering anyway?" -msgstr "Widzisz w pobliżu %s! Rozpocząć patroszenie mimo to?" +msgstr "Widzisz w pobliżu %s! Rozpocząć cięcie mimo to?" #: src/game.cpp msgid "Choose corpse to butcher / item to disassemble" -msgstr "Wybierz ciało do wypatroszenia/przedmiot do rozmontowania" +msgstr "Wybierz ciało do cięcia/przedmiot do rozmontowania" #: src/game.cpp msgid "Butcher everything" -msgstr "Wypatrosz wszystko" +msgstr "Tnij wszystko" #: src/game.cpp msgid "Disassemble everything once" @@ -316952,10 +329842,6 @@ msgstr "Nie możesz spać podczas jazdy wierzchowcem." msgid "Are you sure you want to sleep?" msgstr "Czy na pewno chcesz spać?" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "Tak." - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "Tak, i zapisz grę przed snem." @@ -317097,7 +329983,7 @@ msgstr "Tnij ciała" #: src/handle_action.cpp msgid "Auto-butcher anything in corpse loot zones - auto-fetch tools." msgstr "" -"Automatycznie tnij wszystko w strefach \"Łup: zwłoki\" - automatycznie " +"Automatycznie tnij wszystko w strefach „Łup: zwłoki” - automatycznie " "pobieraj narzędzia." #: src/handle_action.cpp @@ -317116,6 +330002,14 @@ msgstr "" "Automatycznie demontuj wszystko w strefie demontażu - automatycznie pobieraj" " narzędzia." +#: src/handle_action.cpp +msgid "Mop area" +msgstr "Mopuj obszar" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "Mopuj teren do czysta." + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -317477,10 +330371,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "Co zrobić z %s?" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "Zasil tym bionikę" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "Skonsumuj" @@ -317714,7 +330604,7 @@ msgstr[3] "Ile zdeponować? Maks: %d centa. (0 by anulować) " #: src/iexamine.cpp msgid "You do not have a cash card to withdraw money!" -msgstr "Nie masz karty płatniczej by wybrać pieniądze!" +msgstr "Nie masz karty płatniczej, by wybrać pieniądze!" #: src/iexamine.cpp #, c-format @@ -318029,16 +330919,6 @@ msgstr "Próbujesz złamać zamek %1$s używając swoich %2$s…" msgid "This bulletin board is not inside a camp" msgstr "Ta tablica ogłoszeń nie jest wewnątrz obozu" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" -"Ta ściana jest idealnie pionowa. Są w niej dziwne, zwinięte dziury,\n" -"prowadzące tak głęboko w litą skałę jak sięga twój wzrok. Otwory są\n" -"humainodalnych kształtów, ale z długimi, pokręconymi spuchniętymi kończynami." - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "Zabrać skamieniałe oko z piedestału?" @@ -318307,7 +331187,7 @@ msgstr "Piec jest gotowy do rozpalenia, ale nie masz źródła ognia." #: src/iexamine.cpp #, c-format msgid "This kiln contains %s %s of material, and is ready to be fired." -msgstr "Ten piec zawiera %s %s materiału, i jest gotowy do rozpalenia." +msgstr "Ten piec zawiera %s %s materiału i jest gotowy do rozpalenia." #: src/iexamine.cpp msgid "Fire the kiln?" @@ -319000,7 +331880,7 @@ msgstr "" #: src/iexamine.cpp #, c-format msgid "How many liters of %s to buy? Max: %d L. (0 to cancel)" -msgstr "Ile litrów kupić: %s? Maks: %d L. (0 by anulować)" +msgstr "Ile litrów kupić: %s? Maks: %d L. (0, by anulować)" #: src/iexamine.cpp msgid "Glug Glug Glug" @@ -319915,7 +332795,7 @@ msgstr "Teren" #: src/init.cpp msgid "Overmap land use codes" -msgstr "Kody użycia lądu mapy głównej" +msgstr "Kody użycia gruntu mapy głównej" #: src/init.cpp msgid "Overmap terrain" @@ -320591,9 +333471,9 @@ msgid "" "Press + to add local keybinding\n" "Press = to add global keybinding\n" msgstr "" -"Wciśnij - by usunąć przypisanie\n" -"Wciśnij + by dodać lokalne przypisanie\n" -"Wciśnij = by dodać globalne przypisanie\n" +"Wciśnij -, by usunąć przypisanie\n" +"Wciśnij +, by dodać lokalne przypisanie\n" +"Wciśnij =, by dodać globalne przypisanie\n" #: src/input.cpp msgid "Press . to execute action\n" @@ -321509,6 +334389,21 @@ msgstr "Gdy pełne:" msgid "%s:" msgstr "%s:" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "(w):" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "(d):" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "(ż):" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "Tułów:" @@ -324298,6 +337193,7 @@ msgstr "Nie możesz tego podważyć." #, c-format msgid "You can't get sufficient leverage to open that with your %1$s." msgstr "" +"Nie można uzyskać wystarczającej dźwigni, aby otworzyć to z twoim %1$s." #: src/iuse.cpp msgid "Till soil where?" @@ -324715,13 +337611,17 @@ msgid "BEES!" msgstr "PSZCZOŁY!" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "Ustaw licznik czasu na (0 by anulować)?" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "Ustaw licznik na ile sekund (0, by anulować)?" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "Licznik ustawiony na %d." +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "Ustawiasz licznik na %d sekundę." +msgstr[1] "Ustawiasz licznik na %d sekundy." +msgstr[2] "Ustawiasz licznik na %d sekund." +msgstr[3] "Ustawiasz licznik na %d sekundy." #: src/iuse.cpp msgid "Tick!" @@ -325482,9 +338382,8 @@ msgid "Your vision is fine already." msgstr "Twój wzrok jest w porządku i bez tego." #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" -msgstr "Słyszysz \"%s\"" +msgid "You press a button on the doll to make it talk." +msgstr "Naciskasz przycisk na lalce, aby zaczęła mówić." #: src/iuse.cpp msgid "You need a mechanics skill of 2 to use this repair kit." @@ -325711,38 +338610,6 @@ msgstr "Odszyfruj kartę pamięci (słabe umiejętności)" msgid "Wasted time. These pictures do not provoke your senses." msgstr "Tracisz czas. Te zdjęcia nie pobudzają twoich zmysłów." -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "Miałeś kiedyś takiego psa…" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "Ha ha! Zabawne zdjęcie kota." - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "Wyśmienite zdjęcia przyrody." - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "Zdjęcia jedzenia… burczy ci w brzuchu!" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "Nieco ciekawych zdjęć podróżniczych." - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "Zdjęcia z koncertu popularnej grupy muzycznej." - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "Zdjęcia czyjegoś luksusowego domostwa." - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "Czujesz nostalgię gdy patrzysz na zdjęcie." - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -327022,88 +339889,31 @@ msgstr "Orzeł!" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "Zagrać grę z %s?" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "Zaczynasz grać." - -#: src/iuse.cpp -msgid "It is certain." -msgstr "To pewne." - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "Zdecydowanie." - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "Bez wątpienia." +msgid "Play the %s with your friends?" +msgstr "Zagrać w %s z twoimi przyjaciółmi?" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "Tak - zdecydowanie." - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "Możesz na to liczyć." - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "Tak to widzę, tak." - -#: src/iuse.cpp -msgid "Most likely." -msgstr "Najprawdopodobniej." - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "Na oko w porządku." - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "Znaki wskazują na tak." - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "Odpowiedź mglista, spróbuj ponownie." - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "Zapytaj później." - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "Lepiej nie mówić tego tobie teraz." - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "Nie da się teraz przewidzieć." - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "Skoncentruj się i zapytaj ponownie." - -#: src/iuse.cpp -msgid "Don't count on it." -msgstr "Nie licz na to." +#, c-format +msgid "Play the %s with your friend?" +msgstr "Zagrać w %s z twoim przyjacielem?" #: src/iuse.cpp -msgid "My reply is no." -msgstr "Moja odpowiedź brzmi nie." +#, c-format +msgid "You and your %d friends start playing." +msgstr "Ty i %d twoich przyjaciół zaczynacie grać." #: src/iuse.cpp -msgid "My sources say no." -msgstr "Moje źródła mówią nie." +msgid "You and your friend start playing." +msgstr "Ty i twój przyjaciel zaczynacie grać." #: src/iuse.cpp -msgid "Outlook not so good." -msgstr "Na oko nie za dobrze." +msgid "You start playing." +msgstr "Zaczynasz grać." #: src/iuse.cpp -msgid "Very doubtful." -msgstr "Bardzo wątpliwe." +#, c-format +msgid "Play a game with the %s?" +msgstr "Zagrać grę z %s?" #: src/iuse.cpp #, c-format @@ -327150,7 +339960,7 @@ msgstr "Nie masz niczego czym mógłbyś pisać." #: src/iuse.cpp msgid "You do not have any recipes you can copy." -msgstr "Nie masz żadnych przepisów, które mógłbyś skopiować." +msgstr "Nie masz żadnych przepisów, które można skopiować." #: src/iuse.cpp msgid "Choose recipe to copy" @@ -327158,7 +339968,9 @@ msgstr "Wybierz przepis do skopiowania" #: src/iuse.cpp msgid "You do not have enough paper to copy this recipe." -msgstr "Nie masz wystarczająco papieru by skopiować ten przepis." +msgstr "" +"Wciśnij C (lub c), by skopiować tę" +" wiadomość do schowka." #: src/iuse.cpp msgid "Your recipe book can not fit this recipe." @@ -327321,14 +340133,14 @@ msgstr "stacja wytwarzania" #: src/iuse_actor.cpp msgid "a place to hang corpses for butchering" -msgstr "miejsce w którym można trzymać ciała do rozbioru" +msgstr "miejsce w którym można trzymać ciała do pocięcia" #: src/iuse_actor.cpp msgid "" "a flat surface to butcher onto or eat meals from" msgstr "" -"płaska powierzchnia na której można coś rozebrać lub jeść" -" posiłki" +"płaska powierzchnia na której można coś ciąć lub jeść " +"posiłki" #: src/iuse_actor.cpp msgid "a place to sit" @@ -328022,7 +340834,7 @@ msgstr "Ta noga jest złamana. Wymaga interwencji chirurgicznej lub szyn." #: src/iuse_actor.cpp msgid "'s biology is not compatible with that item." -msgstr "Bilogia nie jest kompatybilna z tym przedmiotem." +msgstr "Biologia nie jest kompatybilna z tym przedmiotem." #: src/iuse_actor.cpp msgid "Select a body part for: " @@ -329469,7 +342281,7 @@ msgstr "Nie znaleziono wzorców!" #: src/main_menu.cpp msgid "Press [d] to delete a preset." -msgstr "Wciśnij [d] by usunąć preset." +msgstr "Wciśnij [d], by usunąć preset." #: src/main_menu.cpp #, c-format @@ -329997,8 +342809,20 @@ msgid "%s: %d" msgstr "%s: %d" #: src/martialarts.cpp -msgid "Requires: " -msgstr "Wymaga: " +msgid "Requires (all): " +msgstr "Wymaga (wszystkie): " + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "Wymaga (dowolne): " + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "Zabronione (wszystkie): " + +#: src/martialarts.cpp +msgid "Forbidden (any): " +msgstr "Zabronione (dowolne): " #: src/martialarts.cpp msgid "activate" @@ -330647,7 +343471,7 @@ msgstr "Próbujesz kontratakować, ale jesteś zbyt wycieńczony!" #: src/melee.cpp msgid "The item you are wielding is too fragile to counterattack with!" msgstr "" -"Przedmiot który trzymasz jest zbyt delikatny aby przeprowadzić kontratak!" +"Przedmiot który trzymasz jest zbyt delikatny, aby przeprowadzić kontratak!" #: src/melee.cpp #, c-format @@ -332455,7 +345279,7 @@ msgid "" "Foraging for food involves dispatching a companion to search the surrounding wilderness for wild edibles. Combat will be avoided but encounters with wild animals are to be expected. The low pay is supplemented with the odd item as a reward for particularly large hauls." msgstr "" "Profit: $10/godzinę\n" -"Ryzyko: Małe\n" +"Ryzyko: małe\n" "Czas: 4 godziny minimum\n" "\n" "Zbieractwo w poszukiwaniu żywności wymaga oddelegowania towarzysza do poszukiwań dziko rosnącej żywności w otaczającej dziczy. Walki można uniknąć, ale należy spodziewać się natknięcia na dziką zwierzynę. Niska płaca jest uzupełniana znalezionym tu i ówdzie przedmiotem za wysoki urobek." @@ -333083,11 +345907,11 @@ msgstr "Nie masz aktywnych misji!" #: src/mission_ui.cpp msgid "You haven't completed any missions!" -msgstr "Nie ukończyłeś żadnych misji!" +msgstr "Nie ukończono żadnych misji!" #: src/mission_ui.cpp msgid "You haven't failed any missions!" -msgstr "Nie zawiodłeś w żadnej misji!" +msgstr "Nie zawiedziono żadnych misji!" #: src/mission_util.cpp #, c-format @@ -335159,6 +347983,11 @@ msgstr "Usuń siodło z %s" msgid "Manage your friendship with %s" msgstr "Zarządzaj swoją przyjaźnią z %s" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "Rozmawiaj z %s" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -336042,21 +348871,6 @@ msgid "" msgstr "" "Skupiasz się, i z przyjaznym plującym uczuciem rodzisz nowego śluzomiota!" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "łał! wyglądasz tak jak ja! powinniśmy zadbać o siebie nawzajem!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "chodź, duży ja, ruszajmy!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "jesteśmy drużyną, ogarniemy to!" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "Możesz to zrobić tylko w terenie zalesionym." @@ -336330,11 +349144,20 @@ msgstr "Badanie" msgid "%s to activate mutation, " msgstr "%s by aktywować mutację, " +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "Ukrywanie" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "%s by przypisać inną literę " +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "%s, by przełączyć widoczność grafik, " + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -336607,10 +349430,10 @@ msgid "" "Press %s to increase stat or %s to decrease stat.\n" "Press %s to go to the next tab or %s to return to the previous tab." msgstr "" -"Wciśnij %s by zobaczyć i zmienić przypisania klawiszy.\n" -"Wciśnij %s / %s by wybrać statystykę.\n" -"Wciśnij %s by zwiększyć statystykę lub %s by ją zmniejszyć.\n" -"Wciśnij %s by iść do kolejnej zakładki lub %s by wrócić do poprzedniej." +"Wciśnij %s, by zobaczyć i zmienić przypisania klawiszy.\n" +"Wciśnij %s / %s, by wybrać statystykę.\n" +"Wciśnij %s, by zwiększyć statystykę lub %s by ją zmniejszyć.\n" +"Wciśnij %s, by iść do kolejnej zakładki lub %s by wrócić do poprzedniej." #: src/newcharacter.cpp src/newcharacter.cpp src/player_display.cpp msgid "Strength:" @@ -337062,10 +349885,10 @@ msgid "" "Press %s to increase skill or %s to decrease skill.\n" "Press %s to go to the next tab or %s to return to the previous tab." msgstr "" -"Wciśnij %s by zobaczyć i zmienić przypisania klawiszy.\n" -"Wciśnij %s / %s by wybrać umiejętność.\n" -"Wciśnij %s by zwiększyć umiejętność lub %s by ją zmniejszyć.\n" -"Wciśnij %s by iść do kolejnej zakładki lub %s by wrócić do poprzedniej." +"Wciśnij %s, by zobaczyć i zmienić przypisania klawiszy.\n" +"Wciśnij %s / %s, by wybrać umiejętność.\n" +"Wciśnij %s, by zwiększyć umiejętność lub %s, by ją zmniejszyć.\n" +"Wciśnij %s, by iść do kolejnej zakładki lub %s, by wrócić do poprzedniej." #. ~ levels here are skill levels at character creation time #: src/newcharacter.cpp @@ -337324,10 +350147,10 @@ msgid "" "%s to randomize all but scenario or " "%s to randomize everything." msgstr "" -"Wciśnij %s by wybrać losowe imię, " -"%s by wylosować wszystkie wartości opsisowe, " -"%s by wylosować wszystko oprócz scenariusza lub " -"%s by wylosować wszystko." +"Wciśnij %s, by wybrać losowe imię, " +"%s, by wylosować wszystkie wartości opsisowe, " +"%s, by wylosować wszystko oprócz scenariusza lub " +"%s, by wylosować wszystko." #: src/newcharacter.cpp #, c-format @@ -337335,8 +350158,8 @@ msgid "" "Press %s to pick a random name, " "%s to randomize all description values." msgstr "" -"Wciśnij %s by wybrać losowe imię, " -"%s by wylosować wszystkie wartości opisowe." +"Wciśnij %s, by wybrać losowe imię, " +"%s, by wylosować wszystkie wartości opisowe." #: src/newcharacter.cpp #, c-format @@ -337348,7 +350171,7 @@ msgstr "Wciśnij %s by zmienić płeć." msgid "" "Press %s to select a specific starting location." msgstr "" -"Wciśnij %s by wybrać konkretną startową lokację." +"Wciśnij %s, by wybrać konkretną startową lokację." #: src/newcharacter.cpp #, c-format @@ -337548,7 +350371,7 @@ msgstr " Adios, skurwysynu!" #: src/npc.cpp #, c-format msgid "%1$s saying \"%2$s\"" -msgstr "%1$s mówiący \"%2$s\"" +msgstr "%1$s mówiący „%2$s”" #: src/npc.cpp #, c-format @@ -337728,7 +350551,7 @@ msgstr "Czeka, aż odejdziesz" #: src/npc.cpp msgid "Attacking to kill" -msgstr "Atakuje by zabić" +msgstr "Atakuje, by zabić" #: src/npc.cpp msgid "Fleeing" @@ -337784,11 +350607,11 @@ msgstr "Jest nadal niewinny i zabicie go będzie uznawane za morderstwo." #: src/npc.cpp msgid "He " -msgstr "On" +msgstr "On " #: src/npc.cpp msgid "She " -msgstr "Ona" +msgstr "Ona " #: src/npc.cpp msgid "is uninjured." @@ -338123,11 +350946,6 @@ msgstr "Nie możesz mówić bez swojej twarzy!" msgid "What do you want to do?" msgstr "Co chcesz zrobić?" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "Rozmawiaj z %s" - #: src/npctalk.cpp msgid "Talk to…" msgstr "Rozmawiaj z…" @@ -338903,9 +351721,9 @@ msgid "" "corpses you stand on. - Pulp Adjacent: Also pulp corpses adjacent from you." " - Butcher: Butcher corpses you stand on." msgstr "" -"Akcja wykonywana gdy włączona jest opcja \"Automatyczne miażdżenie lub " -"cięcie zwłok\". Miażdż: miażdży ciała na których staniesz. Miażdż bliskie: " -"miażdży też zwłoki bliskie tobie. Tnij: tnie ciała na których staniesz." +"Akcja wykonywana gdy włączona jest opcja „Automatyczne miażdżenie lub cięcie" +" zwłok”. Miażdż: miażdży ciała na których staniesz. Miażdż bliskie: miażdży " +"też zwłoki bliskie tobie. Tnij: tnie ciała na których staniesz." #: src/options.cpp msgctxt "options" @@ -338941,6 +351759,17 @@ msgstr "" "pneumatycznych za każdym razem gdy będziesz próbować wejść na teren w którym" " można kopać." +#: src/options.cpp +msgid "Auto mopping" +msgstr "Automatyczne mopowanie" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" +"Jeśli prawda, umożliwia automatyczne użycie mopa do czyszczenia pobliskiej " +"okolicy." + #: src/options.cpp msgid "Auto foraging" msgstr "Automatyczne zbieractwo" @@ -338948,18 +351777,23 @@ msgstr "Automatyczne zbieractwo" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" -"Akcja wykonywana gdy włączona jest opcja \"Automatyczne zbieractwo\". " -"Krzaki: zbiera tylko z krzaków. Drzewa: zbiera tylko z drzew. Wszystko: " -"zbiera z krzaków, drzew i wszystko inne łącznie z kwiatami, pałkami wodnymi " -"itp." +"Akcja wykonywana gdy włączona jest opcja „Automatyczne zbieractwo”. Krzaki: " +"zbiera tylko z krzaków. Drzewa: zbiera tylko z drzew. Uprawy: zbiera tylko " +"uprawy. Wszystko: zbiera z krzaków, drzew i wszystko inne łącznie z " +"kwiatami, pałkami wodnymi itp." #: src/options.cpp msgid "Bushes" msgstr "Krzaki" +#: src/options.cpp +msgid "Crops" +msgstr "Uprawy" + #: src/options.cpp msgid "Everything" msgstr "Wszystko" @@ -339031,7 +351865,7 @@ msgid "" "Mode Manager instead of this value." msgstr "" "Jeśli tryb bezpieczny jest włączony, odległość do wrogów w której tryb " -"bezpieczny powinien pokazać ostrzeżenie. \"0\" = maksymalny zasięg widzenia " +"bezpieczny powinien pokazać ostrzeżenie. „0” = maksymalny zasięg widzenia " "gracza. Ta opcja działa tylko, kiedy zasady trybu bezpiecznego nie są " "określone. W innym wypadku, zmień domyślną zasadę w menedżerze trybu " "bezpiecznego zamiast tej wartości." @@ -339096,7 +351930,7 @@ msgid "" msgstr "" "Jeśli włączone, tury w grze będą upływały w czasie rzeczywistym. Wartość ta " "określa opóźnienie pomiędzy każdą turą w sekundach. Działa najlepiej, jeśli " -"tryb bezpieczny jest wyłączony. \"0\" = wyłączone." +"tryb bezpieczny jest wyłączony. „0” = wyłączone." #: src/options.cpp msgid "Autosave" @@ -339435,13 +352269,12 @@ msgstr "" #: src/options.cpp msgid "Query on disassembly while butchering" -msgstr "Pytaj przy demontażu podczas rzeźnictwa" +msgstr "Pytaj przy demontażu podczas cięcia" #: src/options.cpp msgid "If true, will query before disassembling items while butchering." msgstr "" -"Jeśli prawda, gra zapyta przed rozmontowaniem przedmiotów podczas " -"rzeźnictwa." +"Jeśli prawda, gra zapyta przed rozmontowaniem przedmiotów podczas cięcia." #: src/options.cpp msgid "Query on keybinding removal" @@ -339652,8 +352485,7 @@ msgid "" "Number of turns after which a message will be removed from the sidebar log." " '0' disables this option." msgstr "" -"Liczba tur, po której wiadomość zniknie z paska logu. \"0\" wyłącza tę " -"opcję." +"Liczba tur, po której wiadomość zniknie z paska logu. „0” wyłącza tę opcję." #: src/options.cpp msgid "Message cooldown" @@ -341362,7 +354194,7 @@ msgstr "opcje" #, c-format msgctxt "query_yn" msgid "%s (Case Sensitive)" -msgstr "%s (wielkość liter ma znaczenie)" +msgstr "%s (Wielkość liter ma znaczenie)" #: src/output.cpp #, c-format @@ -341563,20 +354395,6 @@ msgstr "Strefa:" msgid "# Unexplored" msgstr "# Niezbadane" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "oter: %s" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "oter_type: %s" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "argumenty jeszcze nie ustawione" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "Odległość do aktywnej misji:" @@ -341630,11 +354448,11 @@ msgstr "Kody kolorów: " #: src/overmap_ui.cpp msgid "Type GLYPH:TEXT to set a custom glyph." -msgstr "Wpisz GLIF:TEKST by ustawić własny glif." +msgstr "Wpisz GLIF:TEKST, by ustawić własny glif." #: src/overmap_ui.cpp msgid "Type COLOR;TEXT to set a custom color." -msgstr "Wpisz KOLOR;TEKST by ustawić własny kolor." +msgstr "Wpisz KOLOR;TEKST, by ustawić własny kolor." #: src/overmap_ui.cpp msgid "Examples: B:Base | g;Loot | !:R;Minefield" @@ -341924,6 +354742,11 @@ msgstr "Około zmierzchu" msgid "Night" msgstr "Noc" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s, dz. %d" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "???" @@ -341972,6 +354795,10 @@ msgstr "Bardzo zimno!" msgid "Freezing!" msgstr "Mróz!" +#: src/panels.cpp +msgid "SAFE" +msgstr "BEZP" + #: src/panels.cpp msgid "On" msgstr "Wł." @@ -342341,7 +355168,7 @@ msgstr "Moc :" #: src/panels.cpp msgid "Safe :" -msgstr "Bezp :" +msgstr "Bezp.:" #: src/panels.cpp msgid "Weary:" @@ -342433,7 +355260,7 @@ msgstr "Stm" #: src/panels.cpp msgid "Spd " -msgstr "Prę" +msgstr "Prę " #: src/panels.cpp msgid "POWER" @@ -342500,7 +355327,7 @@ msgstr "Cel : %s" #: src/panels.cpp msgid "Weather :" -msgstr "Pogoda :" +msgstr "Pogoda:" #: src/panels.cpp msgid "Moon :" @@ -342512,7 +355339,7 @@ msgstr "Światło:" #: src/panels.cpp msgid "Weapon :" -msgstr "Broń :" +msgstr "Broń:" #: src/panels.cpp msgid "Temp : " @@ -342528,15 +355355,15 @@ msgstr "Zmiana strudz.:" #: src/panels.cpp msgid "Transition:" -msgstr "Zmiana :" +msgstr "Zmiana:" #: src/panels.cpp msgid "Weary Malus: " -msgstr "Kara strudz.:" +msgstr "Kara strudz.: " #: src/panels.cpp msgid "Malus: " -msgstr "Kara : " +msgstr "Kara: " #: src/panels.cpp msgid "Weariness:" @@ -342544,7 +355371,7 @@ msgstr "Strudzenie:" #: src/panels.cpp msgid "Activity:" -msgstr "Aktywność" +msgstr "Aktywność:" #. ~ translation should not exceed 9 console cells #: src/panels.cpp @@ -344452,6 +357279,16 @@ msgstr "[%s] Ukryj linie strzału" msgid "[%s] Show lines of fire" msgstr "[%s] Pokaż linie strzału" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "Zasięg: %d" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "Zasięg: %d/%d" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -344812,7 +357649,7 @@ msgstr "Domyślne reguły są używane. Dodaj regułę by aktywować." #: src/safemode_ui.cpp msgid "Press ~ to add a default ruleset to get started." -msgstr "Wciśnij ~ by dodać domyślny zestaw reguł na początek." +msgstr "Wciśnij ~, by dodać domyślny zestaw reguł na początek." #: src/safemode_ui.cpp msgid "Whitelist" @@ -345007,11 +357844,11 @@ msgid "" "Use [%s or %s] to switch between sliders.\n" "Use [%s and %s] to move sliders.Use [%s] to apply changes and quit." msgstr "" -"Użyj [%s i %s] by wybrać opcję.\n" -"Użyj [%s] by zmienić wartość.\n" -"Użyj [%s lub %s] by przełączyć się między suwakami.\n" -"Użyj [%s i %s] by zmienić suwaki.\n" -"Użyj [%s] by zaaplikować zmiany i wyjść." +"Użyj [%s i %s], by wybrać opcję.\n" +"Użyj [%s], by zmienić wartość.\n" +"Użyj [%s lub %s], by przełączyć się między suwakami.\n" +"Użyj [%s i %s], by zmienić suwaki.\n" +"Użyj [%s], by zaaplikować zmiany i wyjść." #: src/smart_controller_ui.cpp msgid "Smart Engine Controller ® User Manual" @@ -347776,7 +360613,7 @@ msgstr "Z twojego silnika słychać głośny odgłos tarcia." #: src/vehicle.cpp #, c-format msgid "The %s's planter turns off due to low temperature." -msgstr "Sadzarka w %s wyłącza się z uwagi na niską temperaturę." +msgstr "%s sadzarki wyłącza się z uwagi na niską temperaturę." #: src/vehicle.cpp #, c-format @@ -348621,7 +361458,7 @@ msgstr "Trąbisz klaksonem, ale nic się nie dzieje." #: src/vehicle_use.cpp #, c-format msgid "Move how many? [Have %d] (0 to cancel)" -msgstr "Przenieść ile? [Masz %d] (0 by anulować)" +msgstr "Przenieść ile? [Masz %d] (0, by anulować)" #: src/vehicle_use.cpp msgid "a simple melody blaring from the loudspeakers." @@ -348694,7 +361531,7 @@ msgid "" "You need to remove all filthy items from the autoclave to start the " "sterilizing cycle." msgstr "" -"Musisz usunąć wszystkie brudne przedmioty z autoklawu by zacząć cykl " +"Musisz usunąć wszystkie brudne przedmioty z autoklawu, by zacząć cykl " "sterylizacji." #: src/vehicle_use.cpp @@ -348936,6 +361773,10 @@ msgstr "Niewystarczająca moc do oczyszczenia zawartości %1$s %2$s" msgid "You purify the contents of the %1$s's %2$s" msgstr "Oczyszczasz zawartość %1$s %2$s" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "Ostrożnie zapamiętujesz słabe punkty stworzenia." + #: src/weather.cpp msgid "Monday" msgstr "Poniedziałek" @@ -349259,7 +362100,7 @@ msgstr "[%s] znajdź, [%s] pojemnik, [%s] flaga, [%s] wszystko, [%s] wyjdź" #: src/wish.cpp msgid "How many?" -msgstr "Jak wiele?" +msgstr "Ile?" #: src/wish.cpp #, c-format @@ -349447,7 +362288,7 @@ msgstr "Nazwa świata:" #, c-format msgid "Press [%s] to pick a random name for your world." msgstr "" -"Wciśnij [%s] by wybrać losową nazwę dla twojego " +"Wciśnij [%s], by wybrać losową nazwę dla twojego " "świata." #: src/worldfactory.cpp @@ -349457,9 +362298,9 @@ msgid "" " is and are ready to continue, or [%s] to go back and " "review your world." msgstr "" -"Wciśnij [%s] gdy jesteś zadowolony ze światem tak jak " -"jest i jesteś gotów kontynuować lub [%s], by wrócić i " -"zweryfikować swój świat." +"Wciśnij [%s], gdy wszystko jest w porządku ze światem " +"tak jak jest i chcesz kontynuować lub [%s], by wrócić " +"i zweryfikować swój świat." #: src/worldfactory.cpp msgid "________NO NAME ENTERED!________" diff --git a/lang/po/pt_BR.po b/lang/po/pt_BR.po index 330229afe5c85..2fc1e6a7dcbe0 100644 --- a/lang/po/pt_BR.po +++ b/lang/po/pt_BR.po @@ -21,8 +21,8 @@ # Paulo Tozzo , 2021 # Wellington Leite , 2021 # meribbaal , 2021 -# Yuri Laskowski , 2021 # Renato Machado , 2021 +# Yuri Laskowski , 2021 # Douglas Onofre Rosas dos Santos , 2021 # C. J. , 2021 # @@ -30,7 +30,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: C. J. , 2021\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/cataclysm-dda-translators/teams/2217/pt_BR/)\n" @@ -46,7 +46,7 @@ msgid_plural "battery" msgstr[0] "bateria" msgstr[1] "bateria" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -61,7 +61,7 @@ msgid_plural "butane" msgstr[0] "butano" msgstr[1] "butano" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Um líquido inflamável comumente usado em isqueiros." @@ -72,7 +72,7 @@ msgid_plural "aerosol paint" msgstr[0] "tinta spray" msgstr[1] "tinta spray" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -87,7 +87,7 @@ msgid_plural "permanent ink" msgstr[0] "tinta permanente" msgstr[1] "tinta permanente" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -102,7 +102,7 @@ msgid_plural "candle wax" msgstr[0] "cera de vela" msgstr[1] "cera de vela" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "Uma substância inflamável sólida, usada para fazer velas." @@ -113,7 +113,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "pirotécnico de sinalizador" msgstr[1] "pirotécnico de sinalizador" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "Um produto químico pirotécnico usado em sinalizadores." @@ -139,7 +139,7 @@ msgid_plural "oxygen" msgstr[0] "oxigênio" msgstr[1] "oxigênio" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Oxigênio comprimido de uso médico." @@ -150,7 +150,7 @@ msgid_plural "aluminum foil" msgstr[0] "papel alumínio" msgstr[1] "papel alumínio" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -176,7 +176,7 @@ msgid_plural "thread" msgstr[0] "linha" msgstr[1] "linha" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -214,7 +214,7 @@ msgid_plural "yarn" msgstr[0] "novelo" msgstr[1] "novelos" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Novelo de lã, pode ser usado para tricotar roupas de lã." @@ -236,7 +236,7 @@ msgid_plural "duct tape" msgstr[0] "fita adesiva" msgstr[1] "fita adesiva" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -304,8 +304,8 @@ msgid_plural "plutonium slurry" msgstr[0] "pasta de plutônio" msgstr[1] "pasta de plutônio" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -374,7 +374,7 @@ msgid_plural "bearings" msgstr[0] "rolamento" msgstr[1] "rolamentos" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -424,7 +424,7 @@ msgid_plural "120mm HEAT" msgstr[0] "120mm HEAT" msgstr[1] "120mm HEAT" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -451,7 +451,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "pólvora mista sem combustão" msgstr[1] "pólvora mista sem combustão" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -469,7 +469,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "pólvora de espingarda sem combustão" msgstr[1] "pólvora de espingarda sem combustão" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "Pólvora padrão bélico, projetada para uso em cartuchos de escopeta." @@ -480,7 +480,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "pólvora de pistola sem combustão" msgstr[1] "pólvora de pistola sem combustão" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "Pólvora de padrão bélico, projetada para uso em munições de pistola." @@ -491,7 +491,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "pólvora de magnum sem combustão" msgstr[1] "pólvora de magnum sem combustão" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -504,7 +504,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "pólvora de rifle sem combustão" msgstr[1] "pólvora de rifle sem combustão" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "Pólvora de padrão bélico, projetada para uso em munições de rifle." @@ -515,7 +515,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "pólvora sem fumaça para rifle" msgstr[1] "pólvora sem fumaça para rifle" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -528,7 +528,7 @@ msgid_plural "artillery propellant" msgstr[0] "propelente de artilharia" msgstr[1] "propelente de artilharia" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -543,7 +543,7 @@ msgid_plural "oxidizer powder" msgstr[0] "pó oxidante" msgstr[1] "pó oxidante" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Oxidante volátil químico em pó." @@ -554,7 +554,7 @@ msgid_plural "lye powder" msgstr[0] "soda cáustica em pó" msgstr[1] "soda cáustica em pó" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Soda cáustica em pó." @@ -646,7 +646,7 @@ msgid_plural "copper" msgstr[0] "cobre" msgstr[1] "cobre" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -661,7 +661,7 @@ msgid_plural "medical tape" msgstr[0] "fita médica" msgstr[1] "fita médica" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Um rolo de fita médica, parecido com fita adesiva." @@ -673,7 +673,7 @@ msgstr[0] "placeholder de munição" msgstr[1] "placeholder de munição" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "SE VOCÊ ESTIVER VENDO ISSO, É UM BUG." @@ -684,7 +684,7 @@ msgid_plural "charcoal" msgstr[0] "carvão vegetal" msgstr[1] "carvão vegetal" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -701,7 +701,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "pré-mistura de carbeto de cálcio" msgstr[1] "pré-mistura de carbeto de cálcio" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -731,7 +731,7 @@ msgid_plural "albuterol" msgstr[0] "albuterol" msgstr[1] "albuterol" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -834,7 +834,7 @@ msgid_plural "nicotine liquid" msgstr[0] "líquido de nicotina" msgstr[1] "líquido de nicotina" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -849,7 +849,7 @@ msgid_plural "fish bait" msgstr[0] "isca de peixe" msgstr[1] "isca de peixe" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Uma isca feita para atrair peixes." @@ -912,7 +912,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "carvão vegetal incompleto" msgstr[1] "carvão vegetal incompleto" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -927,7 +927,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "carbeto de cálcio incompleto" msgstr[1] "carbeto de cálcio incompleto" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -954,7 +954,7 @@ msgid_plural "nitrox" msgstr[0] "nitrox" msgstr[1] "nitrox" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -966,7 +966,7 @@ msgid_plural "extinguishing agent" msgstr[0] "agente extintor" msgstr[1] "agente extintor" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Solução química seca, útil para extinguir fogos." @@ -977,7 +977,7 @@ msgid_plural "tinder" msgstr[0] "acendalha" msgstr[1] "acendalhas" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -1011,7 +1011,7 @@ msgid_plural "bronze" msgstr[0] "bronze" msgstr[1] "bronze" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -1024,7 +1024,7 @@ msgid_plural "glowstick juice" msgstr[0] "líquido de bastões de luz" msgstr[1] "líquido de bastões de luz" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -1038,7 +1038,7 @@ msgid_plural "graphite" msgstr[0] "grafite" msgstr[1] "grafites" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1055,7 +1055,7 @@ msgid_plural "black pen ink" msgstr[0] "tinta de caneta preta" msgstr[1] "tintas de caneta preta" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1070,7 +1070,7 @@ msgid_plural "blue pen ink" msgstr[0] "tinta de caneta azul" msgstr[1] "tintas de caneta azul" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1086,7 +1086,7 @@ msgid_plural "green pen ink" msgstr[0] "tinta de caneta verde" msgstr[1] "tintas de caneta verde" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1101,7 +1101,7 @@ msgid_plural "red pen ink" msgstr[0] "tinta de caneta vermelha" msgstr[1] "tintas de caneta vermelhas" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1133,7 +1133,7 @@ msgid_plural "sulfur" msgstr[0] "enxofre" msgstr[1] "enxofre" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1163,7 +1163,7 @@ msgid_plural "cement" msgstr[0] "cimento" msgstr[1] "cimento" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1180,7 +1180,7 @@ msgid_plural "gravel" msgstr[0] "cascalho" msgstr[1] "cascalhos" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "Um punhado de cascalho, menor que seixos, mas maior que areia." @@ -1191,7 +1191,7 @@ msgid_plural "limestone" msgstr[0] "calcário" msgstr[1] "calcário" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1208,7 +1208,7 @@ msgid_plural "quicklime" msgstr[0] "cal viva" msgstr[1] "cal viva" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1228,7 +1228,7 @@ msgid_plural "sand" msgstr[0] "areia" msgstr[1] "areia" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1244,7 +1244,7 @@ msgid_plural "soil" msgstr[0] "terra" msgstr[1] "terra" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1259,7 +1259,7 @@ msgid_plural "aluminum powder" msgstr[0] "pó de alumínio" msgstr[1] "pó de alumínio" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1278,7 +1278,7 @@ msgid_plural "zinc powder" msgstr[0] "pó de zinco" msgstr[1] "pó de zinco" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1297,7 +1297,7 @@ msgid_plural "zinc oxide" msgstr[0] "óxido de zinco" msgstr[1] "óxido de zinco" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1312,7 +1312,7 @@ msgid_plural "manganese dioxide" msgstr[0] "dióxido de manganês" msgstr[1] "dióxido de manganês" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1329,7 +1329,7 @@ msgid_plural "potassium chloride" msgstr[0] "cloreto de potássio" msgstr[1] "cloreto de potássio" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1348,7 +1348,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "hidróxido de potássio" msgstr[1] "hidróxido de potássio" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1366,7 +1366,7 @@ msgid_plural "acetone" msgstr[0] "acetona" msgstr[1] "acetona" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1384,7 +1384,7 @@ msgid_plural "chromium oxide" msgstr[0] "óxido de cromo" msgstr[1] "óxido de cromo" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1406,7 +1406,7 @@ msgid_plural "calcium carbide" msgstr[0] "carbeto de cálcio" msgstr[1] "carbeto de cálcio" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1427,7 +1427,7 @@ msgid_plural "hexamine" msgstr[0] "hexamina" msgstr[1] "hexamina" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1448,7 +1448,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "peróxido de hidrogênio (concentrado)" msgstr[1] "peróxido de hidrogênio (concentrado)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1468,7 +1468,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "nitrato de amônio" msgstr[1] "nitrato de amônio" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1487,7 +1487,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "pelotas de nitrato de amônio" msgstr[1] "pelotas de nitrato de amônio" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1506,7 +1506,7 @@ msgid_plural "saltpeter" msgstr[0] "salitre" msgstr[1] "salitre" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1523,7 +1523,7 @@ msgid_plural "niter" msgstr[0] "nitro" msgstr[1] "nitro" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1538,7 +1538,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "sulfato de alumínio" msgstr[1] "sulfato de alumínio" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1561,7 +1561,7 @@ msgid_plural "acetic acid" msgstr[0] "ácido acético" msgstr[1] "ácido acético" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1580,7 +1580,7 @@ msgid_plural "formaldehyde" msgstr[0] "formaldeído" msgstr[1] "formaldeído" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1599,7 +1599,7 @@ msgid_plural "thermite" msgstr[0] "termite" msgstr[1] "termite" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1618,7 +1618,7 @@ msgid_plural "ANFO" msgstr[0] "ANFO" msgstr[1] "ANFO" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1638,7 +1638,7 @@ msgid_plural "black gunpowder" msgstr[0] "pólvora negra" msgstr[1] "pólvora negra" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1657,7 +1657,7 @@ msgid_plural "match head powder" msgstr[0] "pó de cabeças de fósforos" msgstr[1] "pó de cabeças de fósforos" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1674,7 +1674,7 @@ msgid_plural "RDX" msgstr[0] "RDX" msgstr[1] "RDX" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1692,7 +1692,7 @@ msgid_plural "composition b" msgstr[0] "composição b" msgstr[1] "composições b" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1710,7 +1710,7 @@ msgid_plural "HMTD" msgstr[0] "HMTD" msgstr[1] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1727,7 +1727,7 @@ msgid_plural "APEX" msgstr[0] "APEX" msgstr[1] "APEX" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1745,7 +1745,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "combustível de foguete improvisado" msgstr[1] "combustível de foguete improvisado" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1760,7 +1760,7 @@ msgid_plural "detergent" msgstr[0] "detergente" msgstr[1] "detergente" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "Um pó de lavagem popular no pré-Cataclismo." @@ -1771,7 +1771,7 @@ msgid_plural "soap flakes" msgstr[0] "flocos de sabão" msgstr[1] "flocos de sabão" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1840,7 +1840,7 @@ msgid_plural "concentrated venom" msgstr[0] "veneno concentrado" msgstr[1] "veneno concentrado" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1859,7 +1859,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "paralítico concentrado" msgstr[1] "paralítico concentrado" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1879,7 +1879,7 @@ msgid_plural "rocuronium" msgstr[0] "rocurônio" msgstr[1] "rocurônio" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1897,7 +1897,7 @@ msgid_plural "red phosphorous" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1910,7 +1910,7 @@ msgid_plural "iodine crystal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1923,7 +1923,7 @@ msgid_plural "ethanol" msgstr[0] "etanol" msgstr[1] "etanol" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1957,7 +1957,7 @@ msgid_plural "methanol" msgstr[0] "metanol" msgstr[1] "metanol" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1973,7 +1973,7 @@ msgid_plural "diesel" msgstr[0] "diesel" msgstr[1] "diesel" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1987,7 +1987,7 @@ msgid_plural "JP8 fuel" msgstr[0] "combustível JP8" msgstr[1] "combustível JP8" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -2003,7 +2003,7 @@ msgid_plural "avgas fuel" msgstr[0] "gasolina de aviação" msgstr[1] "gasolina de aviação" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -2016,7 +2016,7 @@ msgid_plural "biodiesel" msgstr[0] "biodisel" msgstr[1] "biodiesel" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -2032,7 +2032,7 @@ msgid_plural "gasoline" msgstr[0] "gasolina" msgstr[1] "gasolina" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -2047,7 +2047,7 @@ msgid_plural "lamp oil" msgstr[0] "óleo de lamparina" msgstr[1] "óleo de lamparina" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "Um óleo fino e de queima limpa, feito para uso em lâmpadas a óleo." @@ -2058,7 +2058,7 @@ msgid_plural "motor oil" msgstr[0] "óleo de motor" msgstr[1] "óleo de motor" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "Um óleo criado para uso em motores de carro." @@ -2069,7 +2069,7 @@ msgid_plural "napalm" msgstr[0] "napalm" msgstr[1] "napalm" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2085,7 +2085,7 @@ msgid_plural "gelled gasoline" msgstr[0] "gasolina em gel" msgstr[1] "gasolina em gel" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2101,7 +2101,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "combustível de lança-chamas" msgstr[1] "combustível de lança-chamas" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2146,7 +2146,7 @@ msgid_plural "shrapnel" msgstr[0] "estilhaços" msgstr[1] "estilhaços" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "Um pedaço retorcido de metal danificado." @@ -2206,7 +2206,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "10mm Auto FMJ" msgstr[1] "10mm Auto FMJ" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2232,7 +2232,7 @@ msgid_plural "H&K 12mm" msgstr[0] "H&K 12mm" msgstr[1] "H&K 12mm" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2280,7 +2280,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "20x66mm buckshot, artesanal" msgstr[1] "20x66mm buckshot, artesanais" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2311,7 +2311,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "20x66mm explosiva" msgstr[1] "20x66mm explosivas" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2362,7 +2362,7 @@ msgid_plural "20x66mm frag" msgstr[0] "20x66mm frag" msgstr[1] "20x66mm frag" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2379,7 +2379,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "20x66mm incendiária" msgstr[1] "20x66mm incendiárias" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2396,7 +2396,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "20x66mm buckshot" msgstr[1] "20x66mm buckshot" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2430,7 +2430,7 @@ msgid_plural ".22 CB" msgstr[0] ".22 CB" msgstr[1] ".22 CB" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2447,7 +2447,7 @@ msgid_plural ".22 FMJ" msgstr[0] ".22 FMJ" msgstr[1] ".22 FMJ" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2465,7 +2465,7 @@ msgid_plural ".22 LR" msgstr[0] ".22 LR" msgstr[1] ".22 LR" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2483,7 +2483,7 @@ msgid_plural ".22 rat-shot" msgstr[0] ".22 rat-shot" msgstr[1] ".22 rat-shot" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2525,7 +2525,7 @@ msgid_plural ".223 Remington" msgstr[0] ".223 Remington" msgstr[1] ".223 Remington" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2542,7 +2542,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2558,7 +2558,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2575,7 +2575,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2593,7 +2593,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "5.56 NATO M855A1" msgstr[1] "5.56 NATO M855A1" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2611,7 +2611,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "5.56 NATO traçante" msgstr[1] "5.56 NATO traçantes" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2662,7 +2662,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] ".270 Winchester JSP" msgstr[1] ".270 Winchester JSP" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2718,7 +2718,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] ".300 Winchester Magnum, recarregada" msgstr[1] ".300 Winchester Magnum, recarregadas" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2735,7 +2735,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] ".30-06 Springfield" msgstr[1] ".30-06 Springfield" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2753,7 +2753,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] ".30-06 M14A1 traçante" msgstr[1] ".30-06 M14A1 traçantes" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2771,7 +2771,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] ".30-06 M2 AP" msgstr[1] ".30-06 M2 AP" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2890,7 +2890,7 @@ msgid_plural ".308 Winchester" msgstr[0] ".308 Winchester" msgstr[1] ".308 winchester" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2906,7 +2906,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "7.62X51mm M80" msgstr[1] "7.62x51mm M80" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2923,7 +2923,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "7.62x51mm NATO traçante" msgstr[1] "7.62x51mm NATO traçantes" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2974,7 +2974,7 @@ msgid_plural ".32 ACP" msgstr[0] ".32 ACP" msgstr[1] ".32 ACP" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -3001,7 +3001,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -3015,7 +3015,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -3053,7 +3053,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] ".357 SIG FMJ" msgstr[1] ".357 SIG FMJ" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -3069,7 +3069,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] ".357 SIG JHP" msgstr[1] ".357 SIG JHP" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3125,7 +3125,7 @@ msgid_plural ".38 FMJ" msgstr[0] ".38 FMJ" msgstr[1] ".38 FMJ" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3155,7 +3155,7 @@ msgid_plural ".38 Super" msgstr[0] ".38 Super" msgstr[1] ".38 Super" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3200,7 +3200,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] ".380 ACP FMJ" msgstr[1] ".380 ACP FMJ" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3219,7 +3219,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] ".380 ACP JHP" msgstr[1] ".380 ACP JHP" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3238,7 +3238,7 @@ msgid_plural ".380 ACP +P" msgstr[0] ".380 ACP+P" msgstr[1] ".380 ACP +P" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3287,7 +3287,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] ".38 Super FMJ" msgstr[1] ".38 Super FMJ" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3310,7 +3310,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] ".40 S&W FMJ" msgstr[1] ".40 S&W FMJ" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3327,7 +3327,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] ".40 S&W JHP" msgstr[1] ".40 S&W JHP" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3374,7 +3374,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "40x46 M1006 esponja" msgstr[1] "40x46mm M1006 esponja" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3391,7 +3391,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "40x46mm M433 HEDP" msgstr[1] "40x46mm M433 HEDP" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3408,7 +3408,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "40x46mm M576 buckshot" msgstr[1] "40x46mm M576 buckshot" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3426,7 +3426,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "40x46mm M651 gás lacrimogênio" msgstr[1] "40x46mm M651 gás lacrimogênio" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3443,8 +3443,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "40x46mm-M118 buckshot, recarregada" msgstr[1] "40x46mm-M118 buckshot, recarregadas" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3462,8 +3462,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "40x46mm-M199 buckshot, recarregada" msgstr[1] "40x46mm-M199 buckshot, recarregadas" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3518,8 +3518,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "40x46mm-M118 flechette, recarregada" msgstr[1] "40x46mm-M118 flechettes, recarregadas" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3537,8 +3537,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "40x46mm-M199 flechette, recarregada" msgstr[1] "40x46mm-M199 flechettes, recarregadas" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3604,7 +3604,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3619,7 +3619,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3651,7 +3651,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "40x53mm M430A1 HEDP" msgstr[1] "40x53mm M430A1 HEDP" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3668,8 +3668,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "40x53mm buckshot, recarregada" msgstr[1] "40x53mm buckshot, recarregadas" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "Uma carga improvisada 40x53mm buckshot lembrando um pouco M576." @@ -3694,8 +3694,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "40x53mm flechette, recarregada" msgstr[1] "40x53mm flechettes, recarregadas" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3728,7 +3728,7 @@ msgid_plural ".410 000 shot" msgstr[0] ".410 000 bago" msgstr[1] ".410 000 bagos" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3747,7 +3747,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] ".44 Magnum FMJ" msgstr[1] ".44 Magnum FMJ" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3820,7 +3820,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] ".44 ACP FMJ" msgstr[1] ".44 ACP FMJ" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3835,7 +3835,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] ".45 ACP JHP" msgstr[1] ".45 ACP JHP" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3852,7 +3852,7 @@ msgid_plural ".45 ACP +P" msgstr[0] ".45 ACP +P" msgstr[1] ".45 ACP +P" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3899,7 +3899,7 @@ msgid_plural ".454 Casull" msgstr[0] ".454 Casull" msgstr[1] ".454 Casull" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3932,7 +3932,7 @@ msgid_plural ".45-70 SP" msgstr[0] ".45-70 SP" msgstr[1] ".45-70 SP" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3966,7 +3966,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] ".45-70 LFN cowboy" msgstr[1] ".45-70 LFN cowboy" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3983,7 +3983,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] ".45-70 SP, recarregada" msgstr[1] ".45-70 SP, recarregadas" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4019,7 +4019,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] ".45-70 LFN cowboy, recarregada" msgstr[1] ".45-70 LFN cowboy, recarregadas" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4038,7 +4038,7 @@ msgid_plural ".45-70, black powder" msgstr[0] ".45-70, pólvora negra" msgstr[1] ".45-70, pólvora negra" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4057,7 +4057,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] ".45 Colt JHP" msgstr[1] ".45 Colt JHP" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -4088,7 +4088,7 @@ msgid_plural "4.6x30mm" msgstr[0] "4.6x30mm" msgstr[1] "4.6x30mm" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -4106,8 +4106,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "4.6x30mm, pólvora negra" msgstr[1] "4.6x30mm, pólvora negra" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -4133,7 +4133,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] ".460 Rowland HCFN" msgstr[1] ".460 Rowland HCFN" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -4149,7 +4149,7 @@ msgid_plural ".460 Rowland" msgstr[0] ".460 Rowland" msgstr[1] ".460 Rowland" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4182,7 +4182,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] ".460 Rowland FMJ, recarregada" msgstr[1] ".460 Rowland FMJ, recarregadas" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4203,7 +4203,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] ".50 BMG M17 traçante" msgstr[1] ".50 BMG M17 traçantes" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4220,7 +4220,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] ".50 BMG M33 Ball" msgstr[1] ".50 BMG M33 Ball" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4242,7 +4242,7 @@ msgid_plural ".50 BMG Match" msgstr[0] ".50 BMG Match" msgstr[1] ".50 BMG Match" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4258,7 +4258,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] ".50 BMG M2 AP" msgstr[1] ".50 BMG M2 AP" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4273,7 +4273,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] ".50 BMG Raufoss Mk 211" msgstr[1] ".50 BMG Raufoss Mk 211" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -4301,7 +4301,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] ".50 BMG traçante, recarregada" msgstr[1] ".50 BMG traçantes, recarregadas" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4318,7 +4318,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] ".50 BMG Match, recarregada" msgstr[1] ".50 BMG Match, recarregadas" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -4340,7 +4340,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] ".50 BMG AP, recarregada" msgstr[1] ".50 BMG AP, recarregadas" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -4402,7 +4402,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "5.45x39mm 7N10" msgstr[1] "5.45x39mm 7N10" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -4421,7 +4421,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "5.45x39mm 7N22" msgstr[1] "5.45x39mm 7N22" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -4436,7 +4436,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "5.45x39mm, recarregada" msgstr[1] "5.45x39mm, recarregadas" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -4453,7 +4453,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "5.45x39mm AP, recarregada" msgstr[1] "5.45x39mm AP, recarregadas" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -4481,7 +4481,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "5.7x28mm SS190" msgstr[1] "5.7x28mm SS190" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4504,8 +4504,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "5.7x28mm, pólvora negra" msgstr[1] "5.7x28mm, pólvora negra" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4603,7 +4603,7 @@ msgid_plural "66mm HEAT" msgstr[0] "66mm HEAT" msgstr[1] "66mm HEAT" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -4618,7 +4618,7 @@ msgid_plural ".700 NX" msgstr[0] ".700 NX" msgstr[1] ".700 NX" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4649,7 +4649,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "7.62x39mm 57-N-231" msgstr[1] "7.62x39mm 57-N-231" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4669,7 +4669,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "7.62x39mm M67" msgstr[1] "7.62x39mm M67" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4688,7 +4688,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "7.62x39mm M43, recarregada" msgstr[1] "7.62x39mm M43, recarregadas" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4726,7 +4726,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "7.62x54mmR" msgstr[1] "7.62x54mmR" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4759,7 +4759,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "7.62x25mm JHP" msgstr[1] "7.62x25mm JHP" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4791,7 +4791,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "7.62x25mm Tipo P" msgstr[1] "7.62x25mm Tipo P" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4870,7 +4870,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "8x40mm JHP falsificada" msgstr[1] "8x40mm JHP falsificada" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4885,7 +4885,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "8x40mm caseless" msgstr[1] "8x40mm caseless" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4900,7 +4900,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "8x40mm esportiva" msgstr[1] "8x40mm esportivas" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4917,7 +4917,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "8x40mm FMJ" msgstr[1] "8x40mm FMJ" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4934,7 +4934,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "8x40mm HVP" msgstr[1] "8x40mm HVP" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4953,7 +4953,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "8x40mm traçante" msgstr[1] "8x40mm traçantes" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4973,7 +4973,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "8x40mm JHP" msgstr[1] "8x40mm JHP" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4990,7 +4990,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "9x19mm JHP" msgstr[1] "9x19mm JHP" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -5009,7 +5009,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "9x19mm FMJ" msgstr[1] "9x19mm FMJ" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -5024,7 +5024,7 @@ msgid_plural "9x19mm +P" msgstr[0] "9x19mm +P" msgstr[1] "9x19mm +P" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -5039,7 +5039,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "9x19mm +P+" msgstr[1] "9x19mm +P+" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -5091,7 +5091,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "9x18mm 57-N-181S" msgstr[1] "9x18mm 57-N-181S" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -5108,7 +5108,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "9x18mm SP-7" msgstr[1] "9x18mm SP-7" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -5125,7 +5125,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "9x18mm RG028" msgstr[1] "9x18mm RG028" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -5152,7 +5152,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "9x18mm, recarregada" msgstr[1] "9x18mm, recarregadas" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5170,7 +5170,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "9x18mm +P+, recarregada" msgstr[1] "9x18mm +P+, recarregadas" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5188,7 +5188,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "9x18mm FMJ, recarregada" msgstr[1] "9x18mm FMJ, recarregadas" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5206,7 +5206,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "152mm ATGM HEAT" msgstr[1] "152mm ATGM HEAT" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -5236,7 +5236,7 @@ msgid_plural "cannon round shot" msgstr[0] "bala de canhão" msgstr[1] "balas de canhão" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -5251,7 +5251,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "Gás tóxico borrifável" msgstr[1] "Gás tóxico borrifável" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -5267,7 +5267,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "fungicida borrifável" msgstr[1] "fungicida borrifável" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -5283,7 +5283,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "inseticida borrifável" msgstr[1] "inseticida borrifável" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -5417,7 +5417,7 @@ msgid_plural "paintball" msgstr[0] "paintball" msgstr[1] "paintball" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -5536,7 +5536,7 @@ msgid_plural "00 shot" msgstr[0] "00 shot" msgstr[1] "00 shot" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -5552,7 +5552,7 @@ msgstr[0] "bago para espingarda" msgstr[1] "bagos para espingarda" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -5565,7 +5565,7 @@ msgid_plural "birdshot" msgstr[0] "chumbinho" msgstr[1] "chumbinho" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -5632,8 +5632,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "00 shot, carregada de entulho" msgstr[1] "00 shot, carregadas de entulho" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5802,7 +5802,7 @@ msgid_plural "oxyacetylene" msgstr[0] "oxiacetileno" msgstr[1] "oxiacetileno" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5817,7 +5817,7 @@ msgid_plural "fungal seeds" msgstr[0] "sementes fungais" msgstr[1] "sementes fungais" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Algumas sementes de fungos." @@ -6721,7 +6721,7 @@ msgid_plural "red paint" msgstr[0] "tinta vermelha" msgstr[1] "tinta vermelha" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Uma lata de tinta vermelha." @@ -6732,7 +6732,7 @@ msgid_plural "blue paint" msgstr[0] "tinta azul" msgstr[1] "tinta azul" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Uma lata de tinta azul." @@ -6743,7 +6743,7 @@ msgid_plural "white paint" msgstr[0] "tinta branca" msgstr[1] "tinta branca" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Uma lata de tinta branca." @@ -6754,7 +6754,7 @@ msgid_plural "green paint" msgstr[0] "tinta verde" msgstr[1] "tinta verde" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Uma lata de tinta verde." @@ -6765,7 +6765,7 @@ msgid_plural "purple paint" msgstr[0] "tinta roxa" msgstr[1] "tinta roxa" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Uma lata de tinta roxa." @@ -6776,7 +6776,7 @@ msgid_plural "yellow paint" msgstr[0] "tinta amarela" msgstr[1] "tinta amarela" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Uma lata de tinta amarela." @@ -6846,7 +6846,7 @@ msgid_plural "bismuth" msgstr[0] "bismuto" msgstr[1] "bismuto" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -6859,8 +6859,8 @@ msgid_plural "gold" msgstr[0] "ouro" msgstr[1] "ouro" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -6881,7 +6881,7 @@ msgid_plural "zinc" msgstr[0] "zinco" msgstr[1] "zinco" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6900,7 +6900,7 @@ msgid_plural "lead" msgstr[0] "chumbo" msgstr[1] "chumbo" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6916,7 +6916,7 @@ msgid_plural "magnesium powder" msgstr[0] "pó de magnésio" msgstr[1] "pó de magnésio" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6931,7 +6931,7 @@ msgid_plural "silver" msgstr[0] "prata" msgstr[1] "prata" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -6999,7 +6999,7 @@ msgid_plural "tin powder" msgstr[0] "pó de estanho" msgstr[1] "pó de estanho" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -7014,7 +7014,7 @@ msgid_plural "solder" msgstr[0] "solda" msgstr[1] "soldas" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -7053,7 +7053,7 @@ msgid_plural "fuse" msgstr[0] "pavio" msgstr[1] "pavios" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -7110,7 +7110,7 @@ msgid_plural "cotton scraps" msgstr[0] "retalhos de algodão" msgstr[1] "retalhos de algodão" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -7127,7 +7127,7 @@ msgid_plural "faux fur scraps" msgstr[0] "pedaço de pele artificial" msgstr[1] "pedaços de pele artificiais" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -7143,7 +7143,7 @@ msgid_plural "felt scraps" msgstr[0] "pedaço de feltro" msgstr[1] "pedaços de feltro" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -7160,7 +7160,7 @@ msgid_plural "fur scraps" msgstr[0] "pedaço de pele" msgstr[1] "pedaços de pele" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -7175,7 +7175,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "pedaço de Kevlar" msgstr[1] "pedaços de Kevlar" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -7194,7 +7194,7 @@ msgid_plural "leather scraps" msgstr[0] "pedaço de couro" msgstr[1] "pedaços de couro" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -7209,7 +7209,7 @@ msgid_plural "Lycra scraps" msgstr[0] "pedaço de Licra" msgstr[1] "pedaços de Licra" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -7224,7 +7224,7 @@ msgid_plural "neoprene scraps" msgstr[0] "pedaço de neoprene" msgstr[1] "pedaços de neoprene" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -7240,7 +7240,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "pedaço de tecido sintético" msgstr[1] "pedaços de tecido sintético" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -7255,7 +7255,7 @@ msgid_plural "Nomex scraps" msgstr[0] "pedaço de Nomex" msgstr[1] "pedaços de Nomex" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -7285,7 +7285,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -7316,7 +7316,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "partes de roupa de retalho de pele artificial" msgstr[1] "partes de roupa de retalho de pele artificial" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -7345,7 +7345,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "partes de roupa de retalhos de feltro" msgstr[1] "partes de roupa de retalhos de feltro" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -7394,7 +7394,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "partes de roupa de retalhos de Licra" msgstr[1] "partes de roupa de retalhos de Licra" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -7426,7 +7426,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "partes de roupa de retalho de neoprene" msgstr[1] "partes de roupa de retalhos de neoprene" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -7460,7 +7460,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "partes de roupas de retalhos de Nomex" msgstr[1] "partes de roupas de retalhos de Nomex" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -7490,7 +7490,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "parte de roupas de retalho de tecido sintético" msgstr[1] "partes de roupas de retalho de tecido sintético" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -7603,7 +7603,7 @@ msgid_plural "titanium" msgstr[0] "titânio" msgstr[1] "titânio" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -7638,7 +7638,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -7657,7 +7657,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -7676,7 +7676,7 @@ msgid_plural "25mm canister shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -7698,7 +7698,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -7717,7 +7717,7 @@ msgid_plural "7.50mm RP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -7740,7 +7740,7 @@ msgid_plural "electric charge" msgstr[0] "cargas eléctricas" msgstr[1] "carga elétrica" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -7755,7 +7755,7 @@ msgid_plural "foamcrete" msgstr[0] "concreto celular" msgstr[1] "concreto celular" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -7776,7 +7776,7 @@ msgid_plural "solid hydrogen" msgstr[0] "hidrogênio sólido" msgstr[1] "hidrogênio sólido" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -7791,7 +7791,7 @@ msgid_plural "lead pellets" msgstr[0] "pelota de chumbo" msgstr[1] "pelotas de chumbo" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -7807,7 +7807,7 @@ msgid_plural "domed HP pellets" msgstr[0] "pelota HP em cúpula" msgstr[1] "pelotas HP em cúpulas" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -7824,7 +7824,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "pelota HP pontiaguda" msgstr[1] "pelotas HP pontiagudas" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -7840,7 +7840,7 @@ msgid_plural "alloy pellets" msgstr[0] "pelota de liga" msgstr[1] "pelotas de liga" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -8010,7 +8010,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "munição de pistola, bola" msgstr[1] "munições de pistola, bola" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -8030,7 +8030,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "munição de pistola, JHP" msgstr[1] "munições de pistola, JHP" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -8074,7 +8074,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "munição de magnum, bola" msgstr[1] "munições de magnum, bola" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -8095,7 +8095,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "munição magnum, JHP" msgstr[1] "munições magnum, JHP" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -8140,7 +8140,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "munição de pistola pequenina, bola" msgstr[1] "munições de pistola pequeninas, bola" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8161,7 +8161,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "munição de pistola pequenina, JHP" msgstr[1] "munições de pistola pequeninas, JHP" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8206,7 +8206,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "munição de pistola pequenina, bola" msgstr[1] "munições de pistola pequeninas, bola" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8227,7 +8227,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "munição de rifle, AP" msgstr[1] "munições de rifle, AP" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8272,7 +8272,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "munição de rifle estrangeira, bola" msgstr[1] "munições de rifle estrangeiras, bola" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -8285,7 +8285,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "munição de canhão elétrico" msgstr[1] "munições de canhão elétrico" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -8300,7 +8300,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "munição de rifle enorme, bola" msgstr[1] "munições de rifle enormes, bola" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8322,7 +8322,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "munição de rifle enorme, AP" msgstr[1] "munições de rifle enormes, AP" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8354,7 +8354,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "foguete, antipessoal" msgstr[1] "foguetes, antipessoais" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -8369,7 +8369,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "foguete, multipropósito" msgstr[1] "foguetes, multipropósito" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -8386,7 +8386,7 @@ msgid_plural "rocket, smoke" msgstr[0] "foguete, fumaça" msgstr[1] "foguetes, fumaça" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -8415,7 +8415,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "cartucho de caçadeira, birdshot" msgstr[1] "cartuchos de caçadeira, birdshot" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -8431,7 +8431,7 @@ msgid_plural "shotshell, slug" msgstr[0] "cartucho de caçadeira, slug" msgstr[1] "cartuchos de caçadeira, slug" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -8449,7 +8449,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "cartucho de caçadeira, pirotécnico" msgstr[1] "cartuchos de caçadeira, pirotécnicos" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -8502,7 +8502,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "cartucho de caçadeira, flechette (recarregado)" msgstr[1] "cartuchos de caçadeira, flechette (recarregados)" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -8557,7 +8557,7 @@ msgid_plural "alumentum" msgstr[0] "alumentum" msgstr[1] "alumentum" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -8617,7 +8617,7 @@ msgid_plural "dragon blood" msgstr[0] "sangue de dragão" msgstr[1] "sangue de dragão" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -8648,7 +8648,7 @@ msgid_plural "parabolan yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -8659,7 +8659,7 @@ msgid_plural "crystallized mana" msgstr[0] "mana cristalizada" msgstr[1] "mana cristalizada" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -8703,7 +8703,7 @@ msgid_plural "liquid mercury" msgstr[0] "mercúrio líquido" msgstr[1] "mercúrio líquido" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "Mercúrio líquido elemental. Conhecido por seu uso em termômetros." @@ -8722,7 +8722,7 @@ msgstr "" "Um caroço de minério de mithril. Precisa ser reformada em um lingote para " "ser útil." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -9274,7 +9274,7 @@ msgstr[1] "sacolas de munição" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -9290,7 +9290,7 @@ msgstr "Você estoca seu %s" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -9330,7 +9330,7 @@ msgid_plural "chest rig" msgstr[0] "colete tático" msgstr[1] "coletes táticos" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -10333,38 +10333,19 @@ msgstr "" "suporte para cacetete." #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "cinto do sobrevivente" -msgstr[1] "cintos do sobrevivente" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "cinto de ferramentas" +msgstr[1] "cintos de ferramentas" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "Você põe seu %1$sem seu %2$s." -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "cinto de ferramentas" -msgstr[1] "cintos de ferramentas" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -10525,25 +10506,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "par de bota de fogo de sobreviventes" -msgstr[1] "pares de botas de fogo de sobreviventes " - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "par de XL de bota de fogo de sobreviventes" -msgstr[1] "pares XL de bota de fogo de sobreviventes" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -10561,45 +10523,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "par de bota de pele XL" msgstr[1] "pares de botas de pele XL" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "par de bota de sobrevivência de inverno em pele sintética" -msgstr[1] "pares de botas de sobrevivência de inverno em pele sintética" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -10611,26 +10534,6 @@ msgstr[1] "" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -10649,26 +10552,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -10742,20 +10625,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -10787,39 +10656,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -11781,28 +11617,6 @@ msgid_plural "XL leather dusters" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" -" Sobrevivente DusterA Kevlar blindado espanador personalizado " -"decomprimentototal, coberto com bolsas e bolsos. Confortável, durável " -"eexcelente paraarmazenamento." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -11853,7 +11667,7 @@ msgid_plural "army jacket" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -12038,7 +11852,7 @@ msgid_plural "kimono" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -12213,22 +12027,6 @@ msgstr "" "deixandoosbraços livres. Tem muito espaço de armazenamento devido aos " "seusmuitosbolsos." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" -" sleeveless survivor dusterUm espanador de corpo inteiro " -"blindadoKevlarpersonalizado sem mangas, coberto com bolsas e bolsos. " -"Confortável, durávele excelente para armazenamento." - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -12291,22 +12089,6 @@ msgstr "" "deixando seus braços desimpedidos. Tem muito espaço de " "armazenamentodevidoaos seus muitos bolsos." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" -" sleeveless survivor trenchcoatUm trenchcoat blindado Kevlarpersonalizadosem" -" mangas, coberto com bolsas e bolsos. Confortável, durávele excelentepara " -"armazenamento." - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -12326,7 +12108,7 @@ msgid_plural "thawb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -12386,22 +12168,6 @@ msgstr "" " trenchcoat de couroUm trenchcoat de couro grosso, forrado com " "bolsos.Ótimopara armazenamento." -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" -" trenchcoat survivor Um trenchcoat personalizado Kevlar blindado, " -"cobertocombolsas e bolsos. Confortável, durável e excelente para " -"armazenamento." - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -12683,22 +12449,6 @@ msgstr "" " par de óculos de solUm par de óculos de sol, bom para manter o " "brilhodosolhos." -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "par de óculos do sobrevivente" -msgstr[1] "pares de óculos do sobrevivente" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" -" óculos de sobrevivênciaUm par de óculos blindados feitos sob " -"medidacomlentes coloridas. Confortável e construído para durar, " -"elesfornecemexcelente proteção contra os perigos ambientais." - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -13074,25 +12824,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -13110,50 +12841,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -13219,63 +12906,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -13322,19 +12952,6 @@ msgstr "" " par de luvas de borrachaUm par de luvas de borracha, " "usadofrequentementedurante a limpeza com materiais cáusticos." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -13470,37 +13087,6 @@ msgstr "" "paraseremenrolados em torno de suas mãos. Forneça pequenas quantidades " "deproteçãoao perfurar e realizar outros danos gerais." -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -14322,7 +13908,7 @@ msgid_plural "kabuto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -14445,34 +14031,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" -" capuz nômade Capuz provisório com proteção para os olhos da chuva e dosol, " -"projetado para longas viagens." - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -14528,35 +14086,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" -" gaiola de proteção resistente que se estende até o pescoço, equipada " -"comumrespirador e proteção para os olhos. Para empreendimentos " -"perigososdeeliminação." - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -14779,40 +14308,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" -" Arnês de SobrevivênciaUm feixe de luz personalizado coberto com " -"bolsaseincluindo uma funda tática integral para um pequeno rifle ou " -"outraarmasemelhante. Durável e cuidadosamente trabalhada para ser " -"confortáveldeusar. Ative o coldre / sacar sua arma." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -14868,77 +14363,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -14950,56 +14374,6 @@ msgstr[1] "capas de chuva" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -15417,9 +14791,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -15430,9 +14804,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -15443,9 +14817,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -15456,9 +14830,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -15469,9 +14843,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -15482,9 +14856,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -15495,9 +14869,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -15508,9 +14882,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -15521,9 +14895,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -15534,9 +14908,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -15547,9 +14921,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -15560,9 +14934,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -15573,9 +14947,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -15586,9 +14960,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -19222,7 +18596,7 @@ msgid_plural "turnout trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -19262,7 +18636,7 @@ msgid_plural "leather chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -19277,7 +18651,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -19292,7 +18666,7 @@ msgid_plural "fencing pants" msgstr[0] "calças de esgrima" msgstr[1] "calças de esgrima" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -19474,34 +18848,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "calças de carga leves do sobrevivente" -msgstr[1] "calças de carga leves do sobrevivente" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" -"Calças leve de carga de Kevlar, projetadas para acomodar o máximo possível. " -"Forte e razoavelmente à prova d'água." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -19513,39 +18859,13 @@ msgstr[1] "pares de calças para motocicletas" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "Um par de calças projetadas para motociclistas." -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "calça de carga do sobrevivente" -msgstr[1] "calças de carga do sobrevivente" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -19558,7 +18878,7 @@ msgid_plural "light EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -19585,7 +18905,7 @@ msgid_plural "basketball shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "short de basquete Um par de shorts de basquete. Confortável e leve." @@ -19596,7 +18916,7 @@ msgid_plural "breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -19624,7 +18944,7 @@ msgid_plural "hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "calças quentes Um par simples de shorts curtos." @@ -19635,7 +18955,7 @@ msgid_plural "fur hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "calças quentes de peleUm simples par de shorts curtos de peles." @@ -19646,7 +18966,7 @@ msgid_plural "leather hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "calça de couro quenteUm simples par de shorts curtos de couro." @@ -19657,7 +18977,7 @@ msgid_plural "jeans" msgstr[0] "jeans" msgstr[1] "jeans" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "jeansUm par de calças de ganga com dois bolsos profundos." @@ -19690,7 +19010,7 @@ msgid_plural "red jeans" msgstr[0] "jeans vermelho" msgstr[1] "jeans vermelhos" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -19721,7 +19041,7 @@ msgid_plural "leggings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -19807,7 +19127,7 @@ msgid_plural "pants" msgstr[0] "calça" msgstr[1] "calças" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "Um par de calças cáqui. Um pouco mais quentes que jeans." @@ -19818,7 +19138,7 @@ msgid_plural "army pants" msgstr[0] "calça de exército" msgstr[1] "calças de exército" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" @@ -19826,8 +19146,8 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -19860,7 +19180,7 @@ msgid_plural "cargo pants" msgstr[0] "calça de carga" msgstr[1] "calças de carga" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -19873,7 +19193,7 @@ msgid_plural "checkered pants" msgstr[0] "calça xadrez" msgstr[1] "calças xadrez" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -19886,7 +19206,7 @@ msgid_plural "fur pants" msgstr[0] "calça de pele" msgstr[1] "calças de pele" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "Um par robusto de calças forradas com pele." @@ -19897,7 +19217,7 @@ msgid_plural "faux fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -19909,7 +19229,7 @@ msgid_plural "leather pants" msgstr[0] "calça de couro" msgstr[1] "calças de couro" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -19924,7 +19244,7 @@ msgid_plural "ski pants" msgstr[0] "calça de esqui" msgstr[1] "calças de esqui" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "Um par de calças para esqui alpino." @@ -19935,7 +19255,7 @@ msgid_plural "police breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -19948,7 +19268,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -19961,7 +19281,7 @@ msgid_plural "shorts" msgstr[0] "shorts" msgstr[1] "shorts" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "calções Um par de calções cáqui." @@ -19972,7 +19292,7 @@ msgid_plural "cargo shorts" msgstr[0] "shorts de carga" msgstr[1] "shorts de carga" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -19985,7 +19305,7 @@ msgid_plural "denim shorts" msgstr[0] "bermuda jeans" msgstr[1] "bermudas jeans" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -20050,7 +19370,7 @@ msgid_plural "striped pants" msgstr[0] "calça listrada" msgstr[1] "calças listradas" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "Um par de calças com listras horizontais em preto e branco." @@ -20081,7 +19401,7 @@ msgid_plural "army winter pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -21312,69 +20632,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -" saco de lona do sobrevivente Uma mochila pesada custom-built. " -"Durávelecuidadosamente trabalhada para armazenar o máximo de material " -"possível." - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" -" Sobrevivente backpackA mochila personalizada. Durável " -"ecuidadosamentetrabalhada para armazenar o máximo de material possível." - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -" Mochila de sobreviventeUma mochila pesada personalizada. " -"Durávelecuidadosamente trabalhada para armazenar o máximo de material " -"possível." - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" -" pack runner sobreviventeUm pack runner leve e personalizado. " -"Durávelecuidadosamente trabalhada para armazenar o máximo de material " -"possível." - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -21834,33 +21091,6 @@ msgid_plural "XL plate armors" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -21908,8 +21138,8 @@ msgstr[1] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -21923,19 +21153,6 @@ msgstr[1] "O-yorois" msgid "An ornamental suit of Japanese samurai armor." msgstr "O-yoroi Um traje ornamental de armadura de samurai japonesa." -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -22077,75 +21294,44 @@ msgstr[0] "" msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" -" Fato de combate para sobreviventesPlaca combinada pesada e feita à " -"mãofeitade um colete à prova de balas e um macacão Nomex reforçado " -"resistenteachamas. Protege o usuário contra o fogo e os elementos." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for winter survivor suit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" +" gambesonA grossa jaqueta de tecido acolchoado, projetado para ser " +"usadoporbaixo do correio ou outra armadura. Ou usado sozinho, se você " +"nãopuderpagar uma armadura adequada." #: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" -" gambesonA grossa jaqueta de tecido acolchoado, projetado para ser " -"usadoporbaixo do correio ou outra armadura. Ou usado sozinho, se você " -"nãopuderpagar uma armadura adequada." - -#: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" @@ -22164,45 +21350,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" -" Fato de sobrevivente pesadoUma pesada armadura combinada feita à mãofeitade" -" um colete à prova de bala reforçado e um macacão de couro banhadoametal. " -"Protege dos elementos, bem como do dano." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "roupa leve do sobrevivente" -msgstr[1] "roupas leves do sobrevivente" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" -"Uma combinação de armadura leve, feita à mão com um colete à prova de bala e" -" um macacão de tecido reforçado. Protege dos elementos, bem como do dano." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -22270,22 +21417,6 @@ msgstr "" " ternoUm terno de algodão de corpo inteiro. Torna o apocalipseumaexperiência" " verdadeiramente cavalheiresca." -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" -" Fato de sobreviventeUma combinação de armadura feita à mão feita deumcolete" -" à prova de balas e um macacão de couro reforçado. Protegedoselementos, bem " -"como do dano." - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -22295,11 +21426,9 @@ msgstr[1] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" -" SWAT armorA armadura preta à prova de balas com muitos bolsos. ApalavraSWAT" -" é estampada nas costas." #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -22316,45 +21445,6 @@ msgstr "" " terno de couro de passeioUm terno de couro grosso feito para " "proteçãoaoandar de motocicletas. Leve e muito confortável." -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -" Fato de sobrevivente de invernoUma combinação de armadura quente " -"epesadafeita à mão feita de um colete à prova de balas reforçado e ummacacão" -" decouro isolado. Protege dos elementos, bem como do dano." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -22427,53 +21517,6 @@ msgid "A neoprene hood, commonly worn by divers." msgstr "" " capuz de neoprene Um capuz de neoprene, comumente usado por mergulhadores." -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" -" capa de wetsuit survivorUm neoprene blindado personalizado e capuzKevlar, " -"muito forte e durável." - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" -" roupa de mergulho para sobreviventesUma combinação de armadura leve, " -"feitaàmão, feita de um colete à prova de balas e um fato de " -"neoprenereforçado. Protege dos elementos, bem como do dano." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" -" um par de luvas de neoprene para sobreviventesUm par de luvas " -"deneopreneKevlar blindadas personalizadas, modificadas para serem fáceis " -"deusar, proporcionando proteção máxima sob condições extremas." - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -22592,7 +21635,7 @@ msgid_plural "lorica segmentata" msgstr[0] "lorica segmentata" msgstr[1] "loricas segmentatas" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -22766,7 +21809,7 @@ msgid_plural "tire leather armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -22826,25 +21869,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "Um colete leve e resistente a balas. Adequado para usar sob a roupa." -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "armadura corporal leve do sobrevivente" -msgstr[1] "armaduras corporais leves do sobrevivente" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -23121,7 +22145,7 @@ msgid_plural "leotard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -23223,7 +22247,7 @@ msgid_plural "French maid clothes" msgstr[0] "roupas de camareira francesa" msgstr[1] "roupas de camareira francesa" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -23535,7 +22559,7 @@ msgid_plural "boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "A antiga questão, cuecas boxer ou slip? Sua resposta? Sim." @@ -23546,7 +22570,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -23557,7 +22581,7 @@ msgid_plural "boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -23571,7 +22595,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -23584,7 +22608,7 @@ msgid_plural "boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -23598,7 +22622,7 @@ msgid_plural "XL boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -23625,7 +22649,7 @@ msgid_plural "briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "Um par de cuecas slip. Uma roupa de baixo masculina confortável." @@ -23803,7 +22827,7 @@ msgid_plural "panties" msgstr[0] "calcinha" msgstr[1] "calcinhas" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -23872,7 +22896,7 @@ msgid_plural "tights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -23901,7 +22925,7 @@ msgid_plural "compression shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -23940,2080 +22964,3063 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sheet" -msgid_plural "sheets" +msgid "nomad gear" +msgid_plural "nomad gears" msgstr[0] "" msgstr[1] "" -#. ~ Description for sheet +#. ~ Description for nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" -" a bunch of rags." +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." msgstr "" -" sheetA grande folha de tecido, pode ser usada como cortina ou " -"lençol;oucortar um monte de trapos." #: lang/json/ARMOR_from_json.py -msgid "blanket" -msgid_plural "blankets" +msgid "light nomad gear" +msgid_plural "light nomad gears" msgstr[0] "" msgstr[1] "" -#. ~ Description for blanket -#: lang/json/ARMOR_from_json.py -msgid "Hiding under here will not protect you from the monsters." -msgstr "Se esconder em baixo dos cobertores não vai te proteger dos monstros." - -#: lang/json/ARMOR_from_json.py -msgid "down-filled blanket" -msgid_plural "down-filled blankets" -msgstr[0] "cobertor de penas" -msgstr[1] "cobertores de penas" - -#. ~ Description for down-filled blanket +#. ~ Description for light nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"Hiding under here will not protect you from the monsters, but it'll keep you" -" warm." -msgstr "" -" Cobertores cheios de baixoEsconder-se aqui não o protegerá dos monstros, " -"masvai mantê-lo aquecido." - -#: lang/json/ARMOR_from_json.py -msgid "fur blanket" -msgid_plural "fur blankets" -msgstr[0] "cobertor de pele" -msgstr[1] "cobertores de pele" - -#. ~ Description for fur blanket -#: lang/json/ARMOR_from_json.py -msgid "A heavy fur blanket that covers most of your body." +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." msgstr "" -" Cobertor de pelesUm cobertor de peles pesadas que cobre a maior parte " -"doseucorpo." #: lang/json/ARMOR_from_json.py -msgid "quilt" -msgid_plural "quilts" +msgid "scavenger gear" +msgid_plural "scavenger gears" msgstr[0] "" msgstr[1] "" -#. ~ Description for quilt +#. ~ Description for scavenger gear #: lang/json/ARMOR_from_json.py msgid "" -"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " -"cozy!" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "patchwork quilt" -msgid_plural "patchwork quilts" -msgstr[0] "" -msgstr[1] "" +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "roupa leve do sobrevivente" +msgstr[1] "roupas leves do sobrevivente" -#. ~ Description for patchwork quilt +#. ~ Description for light survivor suit #: lang/json/ARMOR_from_json.py -msgid "A huge, patchwork wool quilt. Very, very warm." +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." msgstr "" +"Uma combinação de armadura leve, feita à mão com um colete à prova de bala e" +" um macacão de tecido reforçado. Protege dos elementos, bem como do dano." #: lang/json/ARMOR_from_json.py -msgid "sleeping bag" -msgid_plural "sleeping bags" -msgstr[0] "saco de dormir" -msgstr[1] "sacos de dormir" - -#. ~ Use action msg for sleeping bag. -#: lang/json/ARMOR_from_json.py -msgid "You roll up the sleeping bag, preparing it for transport." -msgstr "Você enrola o saco de dormir, preparando-o para o transporte." - -#. ~ Description for sleeping bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A large sleeping bag that covers you head to toe. This one is medium " -"weight." -msgstr "" +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" +msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "cestus" -msgid_plural "cestuses" -msgstr[0] "cestus" -msgstr[1] "cestus" +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for cestus +#. ~ Description for survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A leather hand and arm wrap incorporating metal plates over the knuckles to " -"improve punching power and defence." +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." msgstr "" -"Uma luva de couro e faixas para o antebraço, incorporando placas de metal " -"sobre os dedos para aprimorar a força de um soco e a defesa." +" Fato de sobreviventeUma combinação de armadura feita à mão feita deumcolete" +" à prova de balas e um macacão de couro reforçado. Protegedoselementos, bem " +"como do dano." #: lang/json/ARMOR_from_json.py -msgid "pair of studded gloves" -msgid_plural "pairs of studded gloves" +msgid "XL survivor suit" +msgid_plural "XL survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of studded gloves +#. ~ Description for XL survivor suit #: lang/json/ARMOR_from_json.py -msgid "A pair of gloves with studded metal knuckles." +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "impact knuckles" -msgid_plural "impact knuckles" +msgid "winter survivor suit" +msgid_plural "winter survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of thick steel plates covering your proximal phalange. They are " -"strapped to your hands with metal braces." +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" +" Fato de sobrevivente de invernoUma combinação de armadura quente " +"epesadafeita à mão feita de um colete à prova de balas reforçado e ummacacão" +" decouro isolado. Protege dos elementos, bem como do dano." #: lang/json/ARMOR_from_json.py -msgid "skewer knuckles" -msgid_plural "skewer knuckles" +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A single sturdy spike protrudes 5cm from the back of your hand. They are " -"strapped to your hands with metal braces." +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "telescoping umbrella" -msgid_plural "telescoping umbrellas" -msgstr[0] "guarda-chuva telescópico" -msgstr[1] "guarda-chuvas telescópicos" - -#. ~ Description for telescoping umbrella +#. ~ Description for XL winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A telescoping umbrella which collapses down for easy storage, useful for " -"keeping dry when wielded." +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." msgstr "" -"Um guarda-chuva telescópico que se retrai para fácil armazenamento, útil " -"para se manter seco quando empunhado." #: lang/json/ARMOR_from_json.py -msgid "bag of holding" -msgid_plural "bags of holding" +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" msgstr[0] "" msgstr[1] "" -#. ~ Description for bag of holding +#. ~ Description for survivor wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A sleek, unfathomably-complicated machine covered in dozens of blinking " -"lights, worn on the back by sturdy faux-leather straps. An electrode " -"dangles from the back, attaching to your forehead. How it operates without " -"annihilating spacetime isn't quite clear, but a localized portal allows " -"things to be stored in an extradimensional space." +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." msgstr "" +" roupa de mergulho para sobreviventesUma combinação de armadura leve, " +"feitaàmão, feita de um colete à prova de balas e um fato de " +"neoprenereforçado. Protege dos elementos, bem como do dano." #: lang/json/ARMOR_from_json.py -msgid "titanium vest" -msgid_plural "titanium vests" +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for titanium vest +#. ~ Description for pair of light survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight armor vest made of pieces of titanium sewn together, with " -"cloth padding for comfort. Brittle against blunt force, but highly " -"resistant to cuts and corrosion." +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sentinel-lx cloak" -msgid_plural "sentinel-lx cloaks" +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for sentinel-lx cloak -#: lang/json/ARMOR_from_json.py -msgid "" -"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " -"unnatural shadow. Made from woven graphene, its lightweight and resistant, " -"but cannot be repaired" -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL jeans" -msgid_plural "pairs of XL jeans" +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL jeans +#. ~ Description for pair of survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue jeans with two deep pockets." +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work pants" -msgid_plural "pairs of XL work pants" +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" msgstr[0] "" msgstr[1] "" +#. ~ Description for pair of XL survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue work pants." +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "A pair of XL gray work pants." -msgstr "" +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "par de bota de sobrevivência de inverno em pele sintética" +msgstr[1] "pares de botas de sobrevivência de inverno em pele sintética" +#. ~ Description for pair of faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL light-blue work pants." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work t-shirt" -msgid_plural "XL work t-shirts" +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL work t-shirt +#. ~ Description for pair of XL faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A gray XL work t-shirt with a small front pocket." +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "An XL blue work t-shirt with a small front pocket." -msgstr "" +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "" +msgstr[1] "" +#. ~ Description for pair of winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "An XL gray work t-shirt with a small front pocket." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "An XL light-blue work t-shirt with a small front pocket." -msgstr "" +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "" +msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "Uplifted SWAT armor" -msgid_plural "Uplifted SWAT armors" +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for Uplifted SWAT armor +#. ~ Description for pair of survivor wetsuit boots #: lang/json/ARMOR_from_json.py msgid "" -"An extra large suit of black bulletproof armor with lots of pockets. The " -"word SWAT is emblazoned across the back. Specifically designed for Uplifted" -" officers such as Mastodons." +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "empty XL ballistic vest" -msgid_plural "empty XL ballistic vests" +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for empty XL ballistic vest +#. ~ Description for pair of light survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"Oversized ballistic armor without any armor inserts. The soft armor plate " -"carrier is still protective but it won't stop high energy projectiles." +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL ESAPI ballistic vest" -msgid_plural "XL ESAPI ballistic vests" +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL ESAPI ballistic vest -#: lang/json/ARMOR_from_json.py -msgid "Oversized ballistic armor with ESAPI ceramic armor plates." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of XL combat boots" -msgid_plural "pair of XL combat boots" +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of fingerless light survivor gloves #: lang/json/ARMOR_from_json.py -msgid "Modern oversized reinforced tactical combat boots. Very durable." +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL tactical gloves" -msgid_plural "pair of XL tactical gloves" +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " -"police and military units." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of Killophant gloves" -msgid_plural "pair of Killophant gloves" +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of fingerless survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of reinforced Kevlar tactical gloves, specifically designed to " -"accommodate three-fingered Killophants. Thinner than regular oversized " -"tactical gloves." +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leather belt" -msgid_plural "XL leather belts" +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL leather belt -#: lang/json/ARMOR_from_json.py -msgid "" -"An XL leather belt. Useful for making your pair of pants fit if you need " -"really big pants." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL police duty belt" -msgid_plural "XL police duty belts" +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL police duty belt +#. ~ Description for pair of survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL black leather belt used by extremely large uplifted police officers. " -"It has several pouches and a holder for a baton." +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." msgstr "" -"Um cinto preto de couro GG utilizado por policiais extremamente grandes. Tem" -" diversas bolsas e um suporte para cacetete. " #: lang/json/ARMOR_from_json.py -msgid "XL tactical full helmet" -msgid_plural "XL tactical full helmets" +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL tactical full helmet +#. ~ Description for pair of XL survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing massive black helmet that covers your entire face and " -"neck, providing excellent protection from all sorts of damage." +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leg ammo pouch" -msgid_plural "XL leg ammo pouches" +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL leg ammo pouch +#. ~ Description for pair of winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" -" two magazines close at hand." +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "crew jumpsuit" -msgid_plural "crew jumpsuits" +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for crew jumpsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " -"some freight hauling association or another. This one is a standard design " -"favored by spacers, with ample, easy access pockets." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "communications cap" -msgid_plural "communications caps" +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for communications cap +#. ~ Description for pair of faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A padded cotton cap built around an augmented reality headset. During " -"normal operation it would provide visual information about a ship subsystems" -" and a communications link with the rest of the crew, but severed from a " -"spaceship, only their hearing protection function retains any utility." +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "HERC rig" -msgid_plural "HERC rigs" +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for HERC rig +#. ~ Description for pair of XL faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " -"about in zero-g, Mars, the bottom of the Pacific, or other generally " -"inhospitable environments. It has several deep pockets, and two mounting " -"points for pressurized canisters or other large magazines." +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cecalia wetsuit" -msgid_plural "cecalia wetsuits" +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for cecalia wetsuit +#. ~ Description for pair of survivor wetsuit gloves #: lang/json/ARMOR_from_json.py msgid "" -"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " -"explorer suit with no head or tentacle protection." +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." msgstr "" +" um par de luvas de neoprene para sobreviventesUm par de luvas " +"deneopreneKevlar blindadas personalizadas, modificadas para serem fáceis " +"deusar, proporcionando proteção máxima sob condições extremas." #: lang/json/ARMOR_from_json.py -msgid "combat wetsuit" -msgid_plural "combat wetsuits" +msgid "nomad cowl" +msgid_plural "nomad cowls" msgstr[0] "" msgstr[1] "" -#. ~ Description for combat wetsuit +#. ~ Description for nomad cowl #: lang/json/ARMOR_from_json.py msgid "" -"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " -"will provide some level of protection for deep dwellers." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." msgstr "" +" capuz nômade Capuz provisório com proteção para os olhos da chuva e dosol, " +"projetado para longas viagens." #: lang/json/ARMOR_from_json.py -msgid "nanomesh vest" -msgid_plural "nanomesh vests" +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" msgstr[0] "" msgstr[1] "" -#. ~ Description for nanomesh vest +#. ~ Description for nomad cowl XL #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight nanomesh vest designed to face down many of the perils of " -"space travel. These vests are mass produced and often stacked in starship " -"lockers." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "vacuum cast cuirass" -msgid_plural "vacuum cast cuirasses" +msgid "survivor hood" +msgid_plural "survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for vacuum cast cuirass +#. ~ Description for survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"This piece of armor harkens back to renaissance designs. It differs in that" -" it is cast as a single piece in deep space installations where conditions " -"can be controlled absolutely." +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "carbide raider's helmet" -msgid_plural "carbide raider's helmets" +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for carbide raider's helmet +#. ~ Description for winter survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"This helmet is designed for the individual that is worried about catching " -"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " -"environmental protection features, but it just might stop even the largest " -"of ballistic rounds." +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "UICAS Point of Impact helmet" -msgid_plural "UICAS Point of Impact helmets" +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for UICAS Point of Impact helmet +#. ~ Description for XL winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight black helmet that provides excellent protection from all sorts" -" of damage, unless it's airborne. UICAS makes the point of designing all " -"headgear whenever possible with clear faceplates, in order to provide a " -"human touch to all interactions." +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cold resistance cream" -msgid_plural "cold resistance creams" +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for cold resistance cream +#. ~ Description for XL survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick layer of something that smells worse than walrus fat. But it keeps " -"you warm." +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "heat retention xtreme cream" -msgid_plural "heat retention xtreme creams" +msgid "light survivor hood" +msgid_plural "light survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for heat retention xtreme cream +#. ~ Description for light survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"The last word in cold snap protection designed to give short term protection" -" in the event of a suit breach in vacuum." +msgid "A customized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium watch" -msgid_plural "titanium watches" +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for titanium watch +#. ~ Description for XL light survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine watch made out of titanium. It is durable, light-weight " -"and water-resistant, an excellent watch to have in a hostile environment." +"A customized and oversized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium ring" -msgid_plural "titanium rings" +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for titanium ring +#. ~ Description for winter faux fur survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"A thick, masculine ring made out of titanium. Made in a variety of styles " -"and finishes, they're valued for their durability." +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "hazardous environment suit" -msgid_plural "hazardous environment suits" +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for hazardous environment suit +#. ~ Description for XL faux fur winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"Developed for the exploration of alien planes, the lightweight, orange-black" -" HEV suit covers everything below the neck. While it possesses only modest " -"physical protection, it provides excellent protection from most " -"environmental hazards. A hatch in the front opens to provide a small amount" -" of storage." +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "psychrophile handling gloves" -msgid_plural "psychrophile handling gloves" +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for survivor wetsuit hood #: lang/json/ARMOR_from_json.py msgid "" -"These gloves are designed for handling organisms that live in extremely cold" -" temperatures. They can also be used to freeze your foes to death." +"A customized armored neoprene and Kevlar hood, very strong and durable." msgstr "" +" capa de wetsuit survivorUm neoprene blindado personalizado e capuzKevlar, " +"muito forte e durável." #: lang/json/ARMOR_from_json.py -msgid "CRIT Engineering Suit" -msgid_plural "CRIT Engineering Suits" +msgid "scavenger cowl" +msgid_plural "scavenger cowls" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Engineering Suit +#. ~ Description for scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"An airtight, flexible suit of woven composite fibers complete with segmented" -" plates of armor. A complex system digitizes items in an individual pocket " -"universe for storage while built in joint-torsion ratchets generate the " -"necessary energy required to power the interface." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." msgstr "" +" gaiola de proteção resistente que se estende até o pescoço, equipada " +"comumrespirador e proteção para os olhos. Para empreendimentos " +"perigososdeeliminação." #: lang/json/ARMOR_from_json.py -msgid "CRIT face mask" -msgid_plural "CRIT face masks" +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT face mask +#. ~ Description for XL scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"A standard issue face mask, lined with Kevlar for extra protection. A few " -"filters provide decent environmental safety, but it was not intended for " -"extended use. It has a basic integrated HUD." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT boots" -msgid_plural "pairs of CRIT boots" -msgstr[0] "" -msgstr[1] "" +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "calças de carga leves do sobrevivente" +msgstr[1] "calças de carga leves do sobrevivente" -#. ~ Description for pair of CRIT boots +#. ~ Description for light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " -"hygienic during long-term missions while absorbing shock and heat from " -"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " -"protection as well. Decently heavy though" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." msgstr "" +"Calças leve de carga de Kevlar, projetadas para acomodar o máximo possível. " +"Forte e razoavelmente à prova d'água." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT LA boots" -msgid_plural "pairs of CRIT LA boots" +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT LA boots +#. ~ Description for XL light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " -"variant was created for missions in warmer climates. The LA boots keep most" -" of the old features of the standard issue boots but trade in protection for" -" easier movement." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less gloves" -msgid_plural "pairs of CRIT fingertip-less gloves" -msgstr[0] "" -msgstr[1] "" +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "calça de carga do sobrevivente" +msgstr[1] "calças de carga do sobrevivente" -#. ~ Description for pair of CRIT fingertip-less gloves +#. ~ Description for survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue gloves. Made with superalloy mesh for those with " -"gene-modding and/or mutations while still allowing greater manipulation of " -"items and moderate protection." +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less liners" -msgid_plural "pairs of CRIT fingertip-less liners" +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT fingertip-less liners +#. ~ Description for XL survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " -"for warmth and fingertip-less for those with gene-modding and/or mutations " -"while still allowing greater manipulation of items and moderate protection." +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT backpack" -msgid_plural "CRIT backpacks" +msgid "survivor duster" +msgid_plural "survivor dusters" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT backpack +#. ~ Description for survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " -"pack strikes a fine balance between storage space and encumbrance and allows" -" a larger weapon to be holstered, drawing and holstering is still rather " -"awkward even with the magnetized clips, but practice helps." +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." msgstr "" +" Sobrevivente DusterA Kevlar blindado espanador personalizado " +"decomprimentototal, coberto com bolsas e bolsos. Confortável, durável " +"eexcelente paraarmazenamento." #: lang/json/ARMOR_from_json.py -msgid "CRIT chestrig" -msgid_plural "CRIT chestrigs" +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT chestrig -#: lang/json/ARMOR_from_json.py -msgid "" -"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " -"with light-armor padding." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT leg guards" -msgid_plural "pairs of CRIT leg guards" +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT leg guards +#. ~ Description for sleeveless survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"Leg armor for those who fight. Simple design and durable material allows " -"for easy movement and the padding keeps the legs safe and warm in colder " -"conditions." +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." msgstr "" +" sleeveless survivor dusterUm espanador de corpo inteiro " +"blindadoKevlarpersonalizado sem mangas, coberto com bolsas e bolsos. " +"Confortável, durávele excelente para armazenamento." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT arm guards" -msgid_plural "pairs of CRIT arm guards" +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT arm guards +#. ~ Description for survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A pair of arm guards made from superalloy molded upon neoprene, and then " -"insulated with rubber. They are sturdy and will block attacks, but they are" -" ridiculously heavy." +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." msgstr "" +" trenchcoat survivor Um trenchcoat personalizado Kevlar blindado, " +"cobertocombolsas e bolsos. Confortável, durável e excelente para " +"armazenamento." #: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT web belt +#. ~ Description for sleeveless survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." msgstr "" +" sleeveless survivor trenchcoatUm trenchcoat blindado Kevlarpersonalizadosem" +" mangas, coberto com bolsas e bolsos. Confortável, durávele excelentepara " +"armazenamento." #: lang/json/ARMOR_from_json.py -msgid "CRIT infantry duster" -msgid_plural "CRIT infantry dusters" +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT infantry duster +#. ~ Description for survivor duffel bag #: lang/json/ARMOR_from_json.py msgid "" -"A thick full-length duster coat with rubber insulation. More than mildly " -"encumbering, but rather protective against any anti-infantry electrical " -"discharges from the robots. Has several pockets for storage." +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" +" saco de lona do sobrevivente Uma mochila pesada custom-built. " +"Durávelecuidadosamente trabalhada para armazenar o máximo de material " +"possível." #: lang/json/ARMOR_from_json.py -msgid "CRIT Armored Anomaly Suit" -msgid_plural "CRIT Armored Anomaly Suits" +msgid "survivor backpack" +msgid_plural "survivor backpacks" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Armored Anomaly Suit +#. ~ Description for survivor backpack #: lang/json/ARMOR_from_json.py msgid "" -"A relatively simple suit of armor. A suit of woven composite fibers " -"combined with a cleansuit core and strategically placed segmented Kevlar " -"plates keep the suit light-weight and the one wearing it alive while " -"offering superb resistance to the elements and ambient radiation." +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." msgstr "" +" Sobrevivente backpackA mochila personalizada. Durável " +"ecuidadosamentetrabalhada para armazenar o máximo de material possível." #: lang/json/ARMOR_from_json.py -msgid "CRIT drop leg pouch" -msgid_plural "CRIT drop leg pouches" +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT drop leg pouch +#. ~ Description for survivor rucksack #: lang/json/ARMOR_from_json.py msgid "" -"A set of pouches that can be worn on the thighs using buckled straps. This " -"variety is more compact and is favored by the C.R.I.T for its ease of use." +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" +" Mochila de sobreviventeUma mochila pesada personalizada. " +"Durávelecuidadosamente trabalhada para armazenar o máximo de material " +"possível." #: lang/json/ARMOR_from_json.py -msgid "CRIT Enforcer armor assembly" -msgid_plural "CRIT Enforcer armor assemblies" +msgid "survivor runner pack" +msgid_plural "survivor runner packs" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Enforcer armor assembly +#. ~ Description for survivor runner pack #: lang/json/ARMOR_from_json.py msgid "" -"A series of plates, guards and buckles which assemble into a suit of sturdy " -"body-armor which usually goes over other armor. Overlapping steel plates on" -" top of Kevlar plates cover vast expanses as the armor juts off in places so" -" it can deflect attacks. Built with the idea that comfort is less important" -" than safety, this heavy suit is difficult to move about in but highly " -"protective. Various adjustable connectors such as straps and clips hold it " -"together." +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." msgstr "" +" pack runner sobreviventeUm pack runner leve e personalizado. " +"Durávelecuidadosamente trabalhada para armazenar o máximo de material " +"possível." #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT Enforcer docks" -msgid_plural "pairs of CRIT Enforcer docks" -msgstr[0] "" -msgstr[1] "" +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "par de bota de fogo de sobreviventes" +msgstr[1] "pares de botas de fogo de sobreviventes " -#. ~ Description for pair of CRIT Enforcer docks +#. ~ Description for pair of survivor fireboots #: lang/json/ARMOR_from_json.py msgid "" -"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " -"oversized feet which clamp down onto your own footwear keep your feet out of" -" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " -"designs, but they do seem to be worth using if you were to be in the middle " -"of a war zone." +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Soldier Suit" -msgid_plural "CRIT Soldier Suits" +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "par de XL de bota de fogo de sobreviventes" +msgstr[1] "pares XL de bota de fogo de sobreviventes" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Soldier Suit +#. ~ Description for pair of heavy survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A suit of modern body-armor. Strategically placed superalloy plates keep " -"the suit's weight minimal while Kevlar plates other areas and a lining of " -"soft neoprene pads areas for extra comfort. Most importantly, this can be " -"worn comfortably under other armor." +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Lone Wolf Series Armor" -msgid_plural "CRIT Lone Wolf Series Armors" +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT Lone Wolf Series Armor -#: lang/json/ARMOR_from_json.py -msgid "" -"A matte black suit of outdated and bulky looking plate armor fitted onto a " -"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " -"armor will definitely protect you from practically anything. Just make sure" -" you can actually walk with it on though." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT blouse" -msgid_plural "CRIT blouses" +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT blouse +#. ~ Description for pair of heavy survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue military jacket. Durable, lightweight, and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather " -"while a sleek design keeps it from being too flashy. A zipper at the back " -"and front allows for quick donning and doffing." +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT trousers" -msgid_plural "CRIT trousers" +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of standard-issue cargo pants. Durable, lightweight and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT pants" -msgid_plural "CRIT pants" +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for pair of survivor firegloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of dress pants. A minimalist sleek design makes the pants " -"lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" -" moderately cold weather." +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT helmet liner" -msgid_plural "CRIT helmet liners" +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT helmet liner -#: lang/json/ARMOR_from_json.py -msgid "A standard-issue helmet liner. Keeps the noggin warm." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT shoes" -msgid_plural "pairs of CRIT dress shoes" +msgid "survivor firehood" +msgid_plural "survivor firehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT shoes +#. ~ Description for survivor firehood #: lang/json/ARMOR_from_json.py -msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." +msgid "A customized armored Nomex and Kevlar hood, strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT rec gloves" -msgid_plural "pairs of CRIT rec gloves" +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of CRIT rec gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " -"are made with cotton with a neoprene lining for grip-pads and warmth." -msgstr "" - -#. ~ Description for CRIT web belt +#. ~ Description for XL survivor firehood #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue belt. Keeps your trousers up and your tools on your hip." +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT rec duster" -msgid_plural "CRIT rec dusters" +msgid "survivor firesuit" +msgid_plural "survivor firesuits" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT rec duster +#. ~ Description for survivor firesuit #: lang/json/ARMOR_from_json.py msgid "" -"A waterproofed full-length duster coat. Made with neoprene, comfort and " -"functionality meet together to form a fancy but sleek contemporary design. " -"It has several pockets for storage." +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." msgstr "" +" Fato de combate para sobreviventesPlaca combinada pesada e feita à " +"mãofeitade um colete à prova de balas e um macacão Nomex reforçado " +"resistenteachamas. Protege o usuário contra o fogo e os elementos." #: lang/json/ARMOR_from_json.py -msgid "CRIT rec hat" -msgid_plural "CRIT rec hats" +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" msgstr[0] "" msgstr[1] "" -#. ~ Description for CRIT rec hat -#: lang/json/ARMOR_from_json.py -msgid "" -"Functionality meets fashion in this waterproofed CRIT standard issue rec " -"cover. Thick enough to provide warmth in colder weather, this hat shares " -"the same sleek design of most of C.R.I.T's gear." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "plant fiber tunic" -msgid_plural "plant fiber tunics" +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for plant fiber tunic +#. ~ Description for heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A loose garment cobbled together from a collection of plant bundles and " -"wound together by makeshift cordage" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." msgstr "" +" Fato de sobrevivente pesadoUma pesada armadura combinada feita à mãofeitade" +" um colete à prova de bala reforçado e um macacão de couro banhadoametal. " +"Protege dos elementos, bem como do dano." #: lang/json/ARMOR_from_json.py -msgid "plant fiber bracelet" -msgid_plural "plant fiber bracelets" +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for plant fiber bracelet +#. ~ Description for XL heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A bracelet wound together by makeshift cordage. Has some cool looking " -"pebbles." +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT canteen" -msgid_plural "CRIT canteens" -msgstr[0] "" -msgstr[1] "" +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "armadura corporal leve do sobrevivente" +msgstr[1] "armaduras corporais leves do sobrevivente" -#. ~ Description for CRIT canteen +#. ~ Description for light survivor body armor #: lang/json/ARMOR_from_json.py msgid "" -"A durable steel canteen that can heat up food with built in atomic heating " -"elements." +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "salvaged new order armor" -msgid_plural "salvaged new order armors" +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" msgstr[0] "" msgstr[1] "" -#. ~ Description for salvaged new order armor #: lang/json/ARMOR_from_json.py -msgid "" -"A suit of armor belonging to a human-sized soldier of the New Order. Its " -"terribly damaged from some combination of the combat its seen, the process " -"needed to pry it off its wearer, and some sort of dead man's switch on the " -"elements that actually power the thing and make it easy to wear." -msgstr "" +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "cinto do sobrevivente" +msgstr[1] "cintos do sobrevivente" +#. ~ Use action holster_prompt for survivor belt. #: lang/json/ARMOR_from_json.py -msgid "new order shield" -msgid_plural "new order shields" -msgstr[0] "escudo da nova ordem" -msgstr[1] "escudos da nova ordem" +msgid "Store item" +msgstr "" -#. ~ Description for new order shield +#. ~ Description for survivor belt #: lang/json/ARMOR_from_json.py msgid "" -"A simple shield made of some sort of polycarbonates, used extensively by the" -" Vigilants, the gendarmerie of the New Order. Alongside their infamous " -"shock batons, this is an essential tool in 'keeping the peace'." +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "new order battle shield" -msgid_plural "new order battle shields" -msgstr[0] "escudo de batalha da nova ordem" -msgstr[1] "escudos de batalha da nova ordem" +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "par de óculos do sobrevivente" +msgstr[1] "pares de óculos do sobrevivente" -#. ~ Description for new order battle shield +#. ~ Description for survivor goggles #: lang/json/ARMOR_from_json.py msgid "" -"A well forged shield made of steel, emblazoned with what appears to be a " -"highly stylized depiction of a sword piercing a star." +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." msgstr "" +" óculos de sobrevivênciaUm par de óculos blindados feitos sob " +"medidacomlentes coloridas. Confortável e construído para durar, " +"elesfornecemexcelente proteção contra os perigos ambientais." -#. ~ Description for large quiver #: lang/json/ARMOR_from_json.py -msgid "" -"A large leather quiver trimmed with metal, worn on the back, that can hold " -"60 arrows. Historically used by horse archers, rather than foot archers, " -"but sometimes horses are a little hard to come by in this day and age. " -"Activate to store arrows." -msgstr "" +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for bra +#. ~ Description for survivor harness #: lang/json/ARMOR_from_json.py msgid "" -"A simple bra. For protecting those bits you don't want creatures to look " -"at." +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." msgstr "" +" Arnês de SobrevivênciaUm feixe de luz personalizado coberto com " +"bolsaseincluindo uma funda tática integral para um pequeno rifle ou " +"outraarmasemelhante. Durável e cuidadosamente trabalhada para ser " +"confortáveldeusar. Ative o coldre / sacar sua arma." #: lang/json/ARMOR_from_json.py -msgid "Ixythyug the Destroyer's soul" -msgid_plural "Ixythyug the Destroyer's souls" +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" msgstr[0] "" msgstr[1] "" -#. ~ Description for Ixythyug the Destroyer's soul +#. ~ Description for XL survivor harness #: lang/json/ARMOR_from_json.py -msgid "RIP AND TEAR" +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Force Shield" -msgid_plural "Force Shield" +#: lang/json/ARMOR_from_json.py +msgid "sheet" +msgid_plural "sheets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for sheet #: lang/json/ARMOR_from_json.py msgid "" -"A shield of pure force that protects you from most types of physical damage." +"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" +" a bunch of rags." msgstr "" +" sheetA grande folha de tecido, pode ser usada como cortina ou " +"lençol;oucortar um monte de trapos." -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Soul Burn" -msgid_plural "Soul Burns" +#: lang/json/ARMOR_from_json.py +msgid "blanket" +msgid_plural "blankets" msgstr[0] "" msgstr[1] "" -#. ~ Description for Soul Burn +#. ~ Description for blanket #: lang/json/ARMOR_from_json.py -msgid "" -"A little of your soul has been burned away, leaving you in a weakened state." -" The soul heals quickly, so rest for now." -msgstr "" +msgid "Hiding under here will not protect you from the monsters." +msgstr "Se esconder em baixo dos cobertores não vai te proteger dos monstros." #: lang/json/ARMOR_from_json.py -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" -msgstr[0] "" -msgstr[1] "" +msgid "down-filled blanket" +msgid_plural "down-filled blankets" +msgstr[0] "cobertor de penas" +msgstr[1] "cobertores de penas" -#. ~ Description for copper infusion bracelet -#. ~ Description for silver infusion bracelet +#. ~ Description for down-filled blanket #: lang/json/ARMOR_from_json.py 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." +"Hiding under here will not protect you from the monsters, but it'll keep you" +" warm." msgstr "" +" Cobertores cheios de baixoEsconder-se aqui não o protegerá dos monstros, " +"masvai mantê-lo aquecido." #: lang/json/ARMOR_from_json.py -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" -msgstr[0] "" -msgstr[1] "" +msgid "fur blanket" +msgid_plural "fur blankets" +msgstr[0] "cobertor de pele" +msgstr[1] "cobertores de pele" + +#. ~ Description for fur blanket +#: lang/json/ARMOR_from_json.py +msgid "A heavy fur blanket that covers most of your body." +msgstr "" +" Cobertor de pelesUm cobertor de peles pesadas que cobre a maior parte " +"doseucorpo." #: lang/json/ARMOR_from_json.py -msgid "copper circlet" -msgid_plural "copper circlets" +msgid "quilt" +msgid_plural "quilts" msgstr[0] "" msgstr[1] "" -#. ~ Description for copper circlet +#. ~ Description for quilt #: lang/json/ARMOR_from_json.py msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." +"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " +"cozy!" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin arm guards" -msgid_plural "pairs of demon chitin arm guards" +msgid "patchwork quilt" +msgid_plural "patchwork quilts" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of demon chitin arm guards +#. ~ Description for patchwork quilt #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of arm guards crafted from the carefully cleaned and pruned red " -"exoskeletons of demon spiders. Fire-resistant and very durable." +msgid "A huge, patchwork wool quilt. Very, very warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "demon chitin armor" -msgid_plural "demon chitin armors" -msgstr[0] "" -msgstr[1] "" +msgid "sleeping bag" +msgid_plural "sleeping bags" +msgstr[0] "saco de dormir" +msgstr[1] "sacos de dormir" -#. ~ Description for demon chitin armor +#. ~ Use action msg for sleeping bag. +#: lang/json/ARMOR_from_json.py +msgid "You roll up the sleeping bag, preparing it for transport." +msgstr "Você enrola o saco de dormir, preparando-o para o transporte." + +#. ~ Description for sleeping bag #: lang/json/ARMOR_from_json.py msgid "" -"Leg and body armor crafted from the carefully cleaned and pruned red " -"exoskeletons of demon spiders. Fire-resistant and very durable." +"A large sleeping bag that covers you head to toe. This one is medium " +"weight." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "demon chitin helmet" -msgid_plural "demon chitin helmets" -msgstr[0] "" -msgstr[1] "" +msgid "cestus" +msgid_plural "cestuses" +msgstr[0] "cestus" +msgstr[1] "cestus" -#. ~ Description for demon chitin helmet +#. ~ Description for cestus #: lang/json/ARMOR_from_json.py msgid "" -"A helmet crafted from the carefully cleaned and pruned red exoskeletons of " -"demon spiders. Covers the entire head; fire-resistant and very durable." +"A leather hand and arm wrap incorporating metal plates over the knuckles to " +"improve punching power and defence." msgstr "" +"Uma luva de couro e faixas para o antebraço, incorporando placas de metal " +"sobre os dedos para aprimorar a força de um soco e a defesa." #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin gauntlets" -msgid_plural "pairs of demon chitin gauntlets" +msgid "pair of studded gloves" +msgid_plural "pairs of studded gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of demon chitin gauntlets +#. ~ Description for pair of studded gloves #: lang/json/ARMOR_from_json.py -msgid "" -"Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " -"demon spiders. Fire-resistant and very durable." +msgid "A pair of gloves with studded metal knuckles." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin boots" -msgid_plural "pairs of demon chitin boots" +msgid "impact knuckles" +msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of demon chitin boots +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" -"Boots crafted from carefully cleaned and pruned red exoskeletons of demon " -"spiders. Fire-resistant and very durable." +"A pair of thick steel plates covering your proximal phalange. They are " +"strapped to your hands with metal braces." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonscale boots" -msgid_plural "pairs of black dragonscale boots" +msgid "skewer knuckles" +msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of black dragonscale boots +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" -"Boots made of black incredibly durable dragonscale. Very protective, and " -"surprisingly light." +"A single sturdy spike protrudes 5cm from the back of your hand. They are " +"strapped to your hands with metal braces." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonhide boots" -msgid_plural "pairs of black dragonhide boots" -msgstr[0] "par de botas de couro de dragão negro" -msgstr[1] "pares de botas de couro de dragão negro" +msgid "telescoping umbrella" +msgid_plural "telescoping umbrellas" +msgstr[0] "guarda-chuva telescópico" +msgstr[1] "guarda-chuvas telescópicos" -#. ~ Description for pair of black dragonhide boots +#. ~ Description for telescoping umbrella #: lang/json/ARMOR_from_json.py msgid "" -"Boots made of very durable black dragonhide. Very protective, and " -"surprisingly light." +"A telescoping umbrella which collapses down for easy storage, useful for " +"keeping dry when wielded." msgstr "" +"Um guarda-chuva telescópico que se retrai para fácil armazenamento, útil " +"para se manter seco quando empunhado." #: lang/json/ARMOR_from_json.py -msgid "black dragonscale helmet" -msgid_plural "black dragonscale helmets" +msgid "bag of holding" +msgid_plural "bags of holding" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for black dragonscale helmet. -#. ~ Use action msg for XL black dragonscale helmet. -#. ~ Use action msg for riot helmet. -#. ~ Use action msg for motorcycle helmet. -#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py -msgid "You raise your visor." -msgstr "Você levanta sua viseira." - -#. ~ Description for black dragonscale helmet +#. ~ Description for bag of holding #: lang/json/ARMOR_from_json.py msgid "" -"A helmet made from black incredibly durable dragonscale, held together with " -"black dragonhide. It comes equipped with a full face visor with only a thin" -" slit to see out of. Activate to raise the visor." +"A sleek, unfathomably-complicated machine covered in dozens of blinking " +"lights, worn on the back by sturdy faux-leather straps. An electrode " +"dangles from the back, attaching to your forehead. How it operates without " +"annihilating spacetime isn't quite clear, but a localized portal allows " +"things to be stored in an extradimensional space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale helmet (raised visor)" -msgid_plural "black dragonscale helmets (raised visor)" +msgid "titanium vest" +msgid_plural "titanium vests" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for black dragonscale helmet (raised visor). -#. ~ Use action msg for XL black dragonscale helmet (raised visor). -#. ~ Use action msg for riot helmet (raised visor). -#. ~ Use action msg for motorcycle helmet (raised visor). -#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py -msgid "You put down your visor." -msgstr "Você abaixa sua viseira." - -#. ~ Description for black dragonscale helmet (raised visor) +#. ~ Description for titanium vest #: lang/json/ARMOR_from_json.py msgid "" -"A helmet made from incredibly durable black dragonscale, held together with " -"black dragonhide. The visor is raised." +"A lightweight armor vest made of pieces of titanium sewn together, with " +"cloth padding for comfort. Brittle against blunt force, but highly " +"resistant to cuts and corrosion." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonhide helmet" -msgid_plural "black dragonhide helmets" +msgid "sentinel-lx cloak" +msgid_plural "sentinel-lx cloaks" msgstr[0] "" msgstr[1] "" -#. ~ Description for black dragonhide helmet +#. ~ Description for sentinel-lx cloak #: lang/json/ARMOR_from_json.py msgid "" -"A helmet made from very durable black dragonhide. It protects your head " -"well, but doesn't cover your face." +"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " +"unnatural shadow. Made from woven graphene, its lightweight and resistant, " +"but cannot be repaired" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale armor" -msgid_plural "black dragonscale armors" +msgid "XL jeans" +msgid_plural "pairs of XL jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for black dragonscale armor +#. ~ Description for XL jeans #: lang/json/ARMOR_from_json.py -msgid "" -"A full suit of incredibly durable 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." +msgid "A pair of XL blue jeans with two deep pockets." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonhide armor" -msgid_plural "black dragonhide armors" +msgid "XL work pants" +msgid_plural "pairs of XL work pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for black dragonhide armor #: lang/json/ARMOR_from_json.py -msgid "" -"A full suit of very durable 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." +msgid "A pair of XL blue work pants." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonscale gauntlets" -msgid_plural "pairs of black dragonscale gauntlets" +msgid "A pair of XL gray work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL light-blue work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL work t-shirt" +msgid_plural "XL work t-shirts" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of black dragonscale gauntlets +#. ~ Description for XL work t-shirt #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " -"that covers your hands." +msgid "A gray XL work t-shirt with a small front pocket." msgstr "" #: lang/json/ARMOR_from_json.py -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" +msgid "An XL blue work t-shirt with a small front pocket." +msgstr "" -#. ~ Description for pair of black dragonhide gloves #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of gloves made of very durable black dragonhide, modified to be easy " -"to wear while providing maximum protection under extreme conditions." +msgid "An XL gray work t-shirt with a small front pocket." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonscale boots" -msgid_plural "pairs of XL black dragonscale boots" +msgid "An XL light-blue work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Uplifted SWAT armor" +msgid_plural "Uplifted SWAT armors" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of XL black dragonscale boots +#. ~ Description for Uplifted SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"Massive boots made of incredibly durable black dragonscale, modified to fit " -"even the strangest of bodies. Very protective, and surprisingly light." +"An extra large suit of black bulletproof armor with lots of pockets. The " +"word SWAT is emblazoned across the back. Specifically designed for Uplifted" +" officers such as Mastodons." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonhide boots" -msgid_plural "pairs of XL black dragonhide boots" +msgid "empty XL ballistic vest" +msgid_plural "empty XL ballistic vests" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of XL black dragonhide boots +#. ~ Description for empty XL ballistic vest #: lang/json/ARMOR_from_json.py msgid "" -"Massive boots made of very durable black dragonhide, modified to fit even " -"the strangest of bodies. Very protective, and surprisingly light." +"Oversized ballistic armor without any armor inserts. The soft armor plate " +"carrier is still protective but it won't stop high energy projectiles." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonscale gauntlets" -msgid_plural "pairs of XL black dragonscale gauntlets" +msgid "XL ESAPI ballistic vest" +msgid_plural "XL ESAPI ballistic vests" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of XL black dragonscale gauntlets +#. ~ Description for XL ESAPI ballistic vest #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " -"that covers your hands, or whatever you use as hands." +msgid "Oversized ballistic armor with ESAPI ceramic armor plates." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonhide gloves" -msgid_plural "pairs of XL black dragonhide gloves" +msgid "pair of XL combat boots" +msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of XL black dragonhide gloves +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of gloves made of very durable black dragonhide, modified to be easy " -"to wear while providing maximum protection under extreme conditions. Sized " -"to fit even the strangest of anatomy." +msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale helmet" -msgid_plural "XL black dragonscale helmets" +msgid "pair of XL tactical gloves" +msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL black dragonscale helmet +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from incredibly durable black dragonscale, held " -"together with black dragonhide. It comes equipped with a full face visor " -"you can raise and is large enough to fit even the strangest of heads." +"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " +"police and military units." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale helmet (raised visor)" -msgid_plural "XL black dragonscale helmets (raised visor)" +msgid "pair of Killophant gloves" +msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL black dragonscale helmet (raised visor) +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from incredibly durable black dragonscale, held " -"together with black dragonhide. It is large enough to fit even the " -"strangest of heads. The visor is raised" +"A pair of reinforced Kevlar tactical gloves, specifically designed to " +"accommodate three-fingered Killophants. Thinner than regular oversized " +"tactical gloves." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonhide helmet" -msgid_plural "XL black dragonhide helmets" +msgid "XL leather belt" +msgid_plural "XL leather belts" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL black dragonhide helmet +#. ~ Description for XL leather belt #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from very durable black dragonhide. It protects your " -"head well, and doesn't cover your face, but is large enough to fit even the " -"strangest of heads." +"An XL leather belt. Useful for making your pair of pants fit if you need " +"really big pants." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale armor" -msgid_plural "XL black dragonscale armors" +msgid "XL police duty belt" +msgid_plural "XL police duty belts" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL black dragonscale armor +#. ~ Description for XL police duty belt #: lang/json/ARMOR_from_json.py msgid "" -"A massive full suit of incredibly durable 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." +"An XL black leather belt used by extremely large uplifted police officers. " +"It has several pouches and a holder for a baton." msgstr "" +"Um cinto preto de couro GG utilizado por policiais extremamente grandes. Tem" +" diversas bolsas e um suporte para cacetete. " #: lang/json/ARMOR_from_json.py -msgid "XL black dragonhide armor" -msgid_plural "XL black dragonhide armors" +msgid "XL tactical full helmet" +msgid_plural "XL tactical full helmets" msgstr[0] "" msgstr[1] "" -#. ~ Description for XL black dragonhide armor +#. ~ Description for XL tactical full helmet #: lang/json/ARMOR_from_json.py msgid "" -"A massive full suit of very durable black dragonhide armor. It comes with " -"all the accoutrements that cover your torso, legs, and arms; sized to fit " -"even the strangest of bodies." +"An all-encompassing massive black helmet that covers your entire face and " +"neck, providing excellent protection from all sorts of damage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "dragonhide backpack" -msgid_plural "dragonhide backpacks" +msgid "XL leg ammo pouch" +msgid_plural "XL leg ammo pouches" msgstr[0] "" msgstr[1] "" -#. ~ Description for dragonhide backpack +#. ~ Description for XL leg ammo pouch #: lang/json/ARMOR_from_json.py msgid "" -"A custom-built backpack. Made of very durable dragon leather and carefully " -"crafted to hold as much stuff as possible." +"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" +" two magazines close at hand." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL dragonhide backpack" -msgid_plural "XL dragonhide backpacks" +msgid "crew jumpsuit" +msgid_plural "crew jumpsuits" msgstr[0] "" msgstr[1] "" +#. ~ Description for crew jumpsuit #: lang/json/ARMOR_from_json.py -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" +msgid "" +"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " +"some freight hauling association or another. This one is a standard design " +"favored by spacers, with ample, easy access pockets." +msgstr "" #: lang/json/ARMOR_from_json.py -msgid "belt of haste" -msgid_plural "belts of haste" +msgid "communications cap" +msgid_plural "communications caps" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "wizard hat" -msgid_plural "wizard hats" -msgstr[0] "chapéu de mago" -msgstr[1] "chapéus de mago" - -#. ~ Description for wizard hat +#. ~ Description for communications cap #: lang/json/ARMOR_from_json.py msgid "" -"A blue pointed hat with stars stitched into it. Wearing it increases your " -"maximum mana." +"A padded cotton cap built around an augmented reality headset. During " +"normal operation it would provide visual information about a ship subsystems" +" and a communications link with the rest of the crew, but severed from a " +"spaceship, only their hearing protection function retains any utility." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Cloak of Morthylla the Lamia" -msgid_plural "Cloaks of Morthylla the Lamia" +msgid "HERC rig" +msgid_plural "HERC rigs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Cloak of Morthylla the Lamia +#. ~ Description for HERC rig #: lang/json/ARMOR_from_json.py msgid "" -"This cloak seems to absorb light except for the pinpricks of stars that move" -" across its surface." +"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " +"about in zero-g, Mars, the bottom of the Pacific, or other generally " +"inhospitable environments. It has several deep pockets, and two mounting " +"points for pressurized canisters or other large magazines." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of wolfshead cufflinks" -msgid_plural "pairs of wolfshead cufflinks" +msgid "cecalia wetsuit" +msgid_plural "cecalia wetsuits" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of wolfshead cufflinks +#. ~ Description for cecalia wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of silver cufflinks with a wolf's head engraved into them. Each " -"cufflink has a bright ruby eye and pearl teeth. They appear to be growling." -" There is an inscription, 'When the moon shines. I become alive.'" +"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " +"explorer suit with no head or tentacle protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" -msgstr[0] "cinto de ferramentas do Tecnomante" -msgstr[1] "cintos de ferramentas do Tecnomante" +msgid "combat wetsuit" +msgid_plural "combat wetsuits" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for technomancer's toolbelt +#. ~ Description for combat wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " +"will provide some level of protection for deep dwellers." msgstr "" -"Um cinto de utilidades customizado, feito de couro, que instantaneamente " -"cria qualquer ferramenta que você requisite. Ative para sacar ou guardar uma" -" arma." #: lang/json/ARMOR_from_json.py -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" +msgid "nanomesh vest" +msgid_plural "nanomesh vests" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for seven league boots -#. ~ Description for boots of haste +#. ~ Description for nanomesh vest #: lang/json/ARMOR_from_json.py 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 lightweight nanomesh vest designed to face down many of the perils of " +"space travel. These vests are mass produced and often stacked in starship " +"lockers." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "boots of haste" -msgid_plural "pairs of boots of haste" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "freerunner's boots" -msgid_plural "freerunner's boots" +msgid "vacuum cast cuirass" +msgid_plural "vacuum cast cuirasses" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for vacuum cast cuirass #: lang/json/ARMOR_from_json.py msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, seeming a bit more flexible and breathable than typical for their " -"materials. The enchantment they bear helps guide their wearer in their " -"motions, to make movement around and over obstacles much more fluid and " -"efficient." +"This piece of armor harkens back to renaissance designs. It differs in that" +" it is cast as a single piece in deep space installations where conditions " +"can be controlled absolutely." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +msgid "carbide raider's helmet" +msgid_plural "carbide raider's helmets" msgstr[0] "" msgstr[1] "" -#. ~ Description for boots of grounding +#. ~ Description for carbide raider's helmet #: lang/json/ARMOR_from_json.py 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." +"This helmet is designed for the individual that is worried about catching " +"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " +"environmental protection features, but it just might stop even the largest " +"of ballistic rounds." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Fish" -msgid_plural "Wildshape Cloaks: Fish" +msgid "UICAS Point of Impact helmet" +msgid_plural "UICAS Point of Impact helmets" msgstr[0] "" msgstr[1] "" -#. ~ Description for Wildshape Cloak: Fish +#. ~ Description for UICAS Point of Impact helmet #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that shimmers like fresh water under a warm sun. It can be " -"worn to morph your body to a form that is excellent for swimming, but ill-" -"suited for combat." +"A lightweight black helmet that provides excellent protection from all sorts" +" of damage, unless it's airborne. UICAS makes the point of designing all " +"headgear whenever possible with clear faceplates, in order to provide a " +"human touch to all interactions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Bear" -msgid_plural "Wildshape Cloak: Bears" +msgid "cold resistance cream" +msgid_plural "cold resistance creams" msgstr[0] "" msgstr[1] "" -#. ~ Description for Wildshape Cloak: Bear +#. ~ Description for cold resistance cream #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that smells of the forest. It can be worn to morph your " -"body to a form that is strong and resilient in melee combat. However, you " -"feel as if you would lose a part of yourself." +"A thick layer of something that smells worse than walrus fat. But it keeps " +"you warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Deer" -msgid_plural "Wildshape Cloak: Deers" +msgid "heat retention xtreme cream" +msgid_plural "heat retention xtreme creams" msgstr[0] "" msgstr[1] "" -#. ~ Description for Wildshape Cloak: Deer +#. ~ Description for heat retention xtreme cream #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that feels soft to the touch. It can be worn to morph your " -"body to a form well-suited to escaping difficult situations. However, it " -"places a great strain on your body." +"The last word in cold snap protection designed to give short term protection" +" in the event of a suit breach in vacuum." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "enchanted parabolan wool blouse" -msgid_plural "enchanted parabolan wool blouse" +msgid "titanium watch" +msgid_plural "titanium watches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for titanium watch #: lang/json/ARMOR_from_json.py msgid "" -"A loose iridescent blouse in a style most often associated with pirates and " -"renfaires. It shimmers as you look at it. Made of parabolan wool, it " -"sometimes dimly shows reflections of things here and not. This particular " -"one has piratical flairs and glitters with enchantment." +"A thick, masculine watch made out of titanium. It is durable, light-weight " +"and water-resistant, an excellent watch to have in a hostile environment." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "enchanted parabolan wool breeches" -msgid_plural "enchanted parabolan wool breeches" +msgid "titanium ring" +msgid_plural "titanium rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for titanium ring #: lang/json/ARMOR_from_json.py msgid "" -"A well-made pair of old-fashioned pants, made of iridescent material. " -"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " -"parabolan wool, it sometimes dimly shows reflections of things here and not." -" This particular one has piratical flairs and gliters with enchantment." +"A thick, masculine ring made out of titanium. Made in a variety of styles " +"and finishes, they're valued for their durability." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "parabolan wool blouse" -msgid_plural "parabolan wool blouses" +msgid "hazardous environment suit" +msgid_plural "hazardous environment suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for parabolan wool blouse +#. ~ Description for hazardous environment suit #: lang/json/ARMOR_from_json.py msgid "" -"A loose iridescent blouse in a style most often associated with pirates and " -"renfaires. It shimmers as you look at it. Made of parabolan wool, it " -"sometimes dimly shows reflections of things here and not." +"Developed for the exploration of alien planes, the lightweight, orange-black" +" HEV suit covers everything below the neck. While it possesses only modest " +"physical protection, it provides excellent protection from most " +"environmental hazards. A hatch in the front opens to provide a small amount" +" of storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "parabolan wool breeches" -msgid_plural "parabolan wool breeches" +msgid "psychrophile handling gloves" +msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" -"A well-made pair of old-fashioned pants, made of iridescent material. " -"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " -"parabolan wool, it sometimes dimly shows reflections of things here and not." +"These gloves are designed for handling organisms that live in extremely cold" +" temperatures. They can also be used to freeze your foes to death." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: lang/json/ARMOR_from_json.py +msgid "CRIT Engineering Suit" +msgid_plural "CRIT Engineering Suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for pair of magical armored stone gauntlets -#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for CRIT Engineering Suit +#: lang/json/ARMOR_from_json.py +msgid "" +"An airtight, flexible suit of woven composite fibers complete with segmented" +" plates of armor. A complex system digitizes items in an individual pocket " +"universe for storage while built in joint-torsion ratchets generate the " +"necessary energy required to power the interface." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "magic lamp" -msgid_plural "magic lamps" -msgstr[0] "lâmpada mágica" -msgstr[1] "lâmpadas mágicas" +msgid "CRIT face mask" +msgid_plural "CRIT face masks" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for magic lamp +#. ~ Description for CRIT face mask #: lang/json/ARMOR_from_json.py -msgid "A magical light source that will light up a small area." +msgid "" +"A standard issue face mask, lined with Kevlar for extra protection. A few " +"filters provide decent environmental safety, but it was not intended for " +"extended use. It has a basic integrated HUD." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "magic light" -msgid_plural "magic lights" -msgstr[0] "luz mágica" -msgstr[1] "luzes mágicas" +msgid "pair of CRIT boots" +msgid_plural "pairs of CRIT boots" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for magic light +#. ~ Description for pair of CRIT boots #: lang/json/ARMOR_from_json.py -msgid "A small magical light that you can read by." +msgid "" +"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " +"hygienic during long-term missions while absorbing shock and heat from " +"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " +"protection as well. Decently heavy though" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +msgid "pair of CRIT LA boots" +msgid_plural "pairs of CRIT LA boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for large shield of magical ice +#. ~ Description for pair of CRIT LA boots #: lang/json/ARMOR_from_json.py -msgid "A lightweight but tough shield crafted entirely of magical ice." +msgid "" +"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " +"variant was created for missions in warmer climates. The LA boots keep most" +" of the old features of the standard issue boots but trade in protection for" +" easier movement." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +msgid "pair of CRIT fingertip-less gloves" +msgid_plural "pairs of CRIT fingertip-less gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for pair of CRIT fingertip-less gloves #: lang/json/ARMOR_from_json.py 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 pair of standard-issue gloves. Made with superalloy mesh for those with " +"gene-modding and/or mutations while still allowing greater manipulation of " +"items and moderate protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "flesh pouch" -msgid_plural "flesh pouches" +msgid "pair of CRIT fingertip-less liners" +msgid_plural "pairs of CRIT fingertip-less liners" msgstr[0] "" msgstr[1] "" -#. ~ Description for flesh pouch +#. ~ Description for pair of CRIT fingertip-less liners #: lang/json/ARMOR_from_json.py 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 pair of standard-issue glove liners. Made with neoprene and rubber mesh " +"for warmth and fingertip-less for those with gene-modding and/or mutations " +"while still allowing greater manipulation of items and moderate protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +msgid "CRIT backpack" +msgid_plural "CRIT backpacks" msgstr[0] "" msgstr[1] "" -#. ~ Description for obfuscating aura +#. ~ Description for CRIT backpack #: lang/json/ARMOR_from_json.py 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 standard-issue pack. Based on the MOLLE backpack's design, this smaller " +"pack strikes a fine balance between storage space and encumbrance and allows" +" a larger weapon to be holstered, drawing and holstering is still rather " +"awkward even with the magnetized clips, but practice helps." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +msgid "CRIT chestrig" +msgid_plural "CRIT chestrigs" msgstr[0] "" msgstr[1] "" -#. ~ Description for acid resistance aura -#. ~ Description for greater acid resistance aura +#. ~ Description for CRIT chestrig #: lang/json/ARMOR_from_json.py -msgid "An all-encompassing, invisible layer of protection against acid." +msgid "" +"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " +"with light-armor padding." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +msgid "pair of CRIT leg guards" +msgid_plural "pairs of CRIT leg guards" msgstr[0] "" msgstr[1] "" +#. ~ Description for pair of CRIT leg guards #: lang/json/ARMOR_from_json.py -msgid "frost armor" -msgid_plural "frost armor" +msgid "" +"Leg armor for those who fight. Simple design and durable material allows " +"for easy movement and the padding keeps the legs safe and warm in colder " +"conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT arm guards" +msgid_plural "pairs of CRIT arm guards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for pair of CRIT arm guards #: lang/json/ARMOR_from_json.py -msgid "A thin layer of magical ice, covering the entire body." +msgid "" +"A pair of arm guards made from superalloy molded upon neoprene, and then " +"insulated with rubber. They are sturdy and will block attacks, but they are" +" ridiculously heavy." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +msgid "CRIT infantry duster" +msgid_plural "CRIT infantry dusters" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for CRIT infantry duster #: lang/json/ARMOR_from_json.py msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A thick full-length duster coat with rubber insulation. More than mildly " +"encumbering, but rather protective against any anti-infantry electrical " +"discharges from the robots. Has several pockets for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "overcharge burn" -msgid_plural "overcharge burns" +msgid "CRIT Armored Anomaly Suit" +msgid_plural "CRIT Armored Anomaly Suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for overcharge burn +#. ~ Description for CRIT Armored Anomaly Suit #: lang/json/ARMOR_from_json.py -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgid "" +"A relatively simple suit of armor. A suit of woven composite fibers " +"combined with a cleansuit core and strategically placed segmented Kevlar " +"plates keep the suit light-weight and the one wearing it alive while " +"offering superb resistance to the elements and ambient radiation." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "aura of protection" -msgid_plural "auras of protection" +msgid "CRIT drop leg pouch" +msgid_plural "CRIT drop leg pouches" msgstr[0] "" msgstr[1] "" -#. ~ Description for aura of protection +#. ~ Description for CRIT drop leg pouch #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"A set of pouches that can be worn on the thighs using buckled straps. This " +"variety is more compact and is favored by the C.R.I.T for its ease of use." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "aura of repelling arc" -msgid_plural "auras of repelling arc" +msgid "CRIT Enforcer armor assembly" +msgid_plural "CRIT Enforcer armor assemblies" msgstr[0] "" msgstr[1] "" -#. ~ Description for aura of repelling arc +#. ~ Description for CRIT Enforcer armor assembly #: lang/json/ARMOR_from_json.py msgid "" -"An invisible aura that strikes melee attackers with arcs of electricity." +"A series of plates, guards and buckles which assemble into a suit of sturdy " +"body-armor which usually goes over other armor. Overlapping steel plates on" +" top of Kevlar plates cover vast expanses as the armor juts off in places so" +" it can deflect attacks. Built with the idea that comfort is less important" +" than safety, this heavy suit is difficult to move about in but highly " +"protective. Various adjustable connectors such as straps and clips hold it " +"together." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "feral aura" -msgid_plural "feral auras" +msgid "pair of CRIT Enforcer docks" +msgid_plural "pairs of CRIT Enforcer docks" msgstr[0] "" msgstr[1] "" -#. ~ Description for feral aura +#. ~ Description for pair of CRIT Enforcer docks #: lang/json/ARMOR_from_json.py msgid "" -"The manifestation of your rage. It won't disappear until you calm down." +"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " +"oversized feet which clamp down onto your own footwear keep your feet out of" +" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " +"designs, but they do seem to be worth using if you were to be in the middle " +"of a war zone." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "acid aura" -msgid_plural "acid auras" +msgid "CRIT Soldier Suit" +msgid_plural "CRIT Soldier Suits" msgstr[0] "" msgstr[1] "" -#. ~ Description for acid aura +#. ~ Description for CRIT Soldier Suit #: lang/json/ARMOR_from_json.py msgid "" -"An aura of thin acid, swirling around your body ready to corrode when struck" -" or while striking." +"A suit of modern body-armor. Strategically placed superalloy plates keep " +"the suit's weight minimal while Kevlar plates other areas and a lining of " +"soft neoprene pads areas for extra comfort. Most importantly, this can be " +"worn comfortably under other armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "werewolf aura" -msgid_plural "werewolf auras" -msgstr[0] "aura de lobisomem" -msgstr[1] "auras de lobisomem " +msgid "CRIT Lone Wolf Series Armor" +msgid_plural "CRIT Lone Wolf Series Armors" +msgstr[0] "" +msgstr[1] "" -#. ~ Description for werewolf aura +#. ~ Description for CRIT Lone Wolf Series Armor #: lang/json/ARMOR_from_json.py -msgid "You have become the werewolf. Boys becoming men, men becoming wolves." +msgid "" +"A matte black suit of outdated and bulky looking plate armor fitted onto a " +"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " +"armor will definitely protect you from practically anything. Just make sure" +" you can actually walk with it on though." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Black Dragon Shell" -msgid_plural "Black Dragon Shells" +#: lang/json/ARMOR_from_json.py +msgid "CRIT blouse" +msgid_plural "CRIT blouses" msgstr[0] "" msgstr[1] "" -#. ~ Description for Black Dragon Shell +#. ~ Description for CRIT blouse #: lang/json/ARMOR_from_json.py msgid "" -"An aura of black and green draconic energy, swirling around your body " -"protecting you and punishing those who strike you." +"A standard-issue military jacket. Durable, lightweight, and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather " +"while a sleek design keeps it from being too flashy. A zipper at the back " +"and front allows for quick donning and doffing." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "spiritual armor" -msgid_plural "spiritual armor" +msgid "CRIT trousers" +msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py -msgid "A summoned medieval armor. It glows softly and looks sturdy." +msgid "" +"A pair of standard-issue cargo pants. Durable, lightweight and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "auroral shell" -msgid_plural "auroral shell" +msgid "CRIT pants" +msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py -msgid "A sturdy shell that wraps your body, gaining a sturdy defense." -msgstr "" - -#: lang/json/BATTERY_from_json.py -msgid "test battery" -msgid_plural "test batteries" -msgstr[0] "bateria de teste" -msgstr[1] "baterias de teste" - -#. ~ Description for test battery -#: lang/json/BATTERY_from_json.py msgid "" -"This is a testing item for the BATTERY item type. If you found one in game," -" it's a bug." +"A pair of dress pants. A minimalist sleek design makes the pants " +"lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" +" moderately cold weather." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract bionic module" -msgid_plural "abstract bionic modules" +#: lang/json/ARMOR_from_json.py +msgid "CRIT helmet liner" +msgid_plural "CRIT helmet liners" msgstr[0] "" msgstr[1] "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract bionic module (npc usable)" -msgid_plural "abstract bionic modules (npc usable)" -msgstr[0] "" -msgstr[1] "" +#. ~ Description for CRIT helmet liner +#: lang/json/ARMOR_from_json.py +msgid "A standard-issue helmet liner. Keeps the noggin warm." +msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract faulty bionic module" -msgid_plural "abstract faulty bionic modules" +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT shoes" +msgid_plural "pairs of CRIT dress shoes" msgstr[0] "" msgstr[1] "" -#. ~ Description for abstract faulty bionic module -#: lang/json/BIONIC_ITEM_from_json.py -msgid "This CBM is broken beyond repair, you can't do anything with it." +#. ~ Description for pair of CRIT shoes +#: lang/json/ARMOR_from_json.py +msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Adrenaline Pump CBM" -msgid_plural "Adrenaline Pump CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT rec gloves" +msgid_plural "pairs of CRIT rec gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for Adrenaline Pump CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of CRIT rec gloves +#: lang/json/ARMOR_from_json.py msgid "" -"A stimulator system that is implanted alongside the adrenal glands, allowing" -" the user to trigger their body's adrenaline response at the cost of some " -"bionic power." +"A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " +"are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Active Defense System CBM" -msgid_plural "Active Defense System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" msgstr[0] "" msgstr[1] "" -#. ~ Description for Active Defense System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for CRIT web belt +#: lang/json/ARMOR_from_json.py msgid "" -"This bionic projects a thin forcefield around the user's body. Anything " -"attempting to penetrate this field has a chance of being deflected at the " -"cost of energy, reducing their ability to deal damage. Bullets will be " -"deflected more than swords and those in turn more than massive objects." +"A standard-issue belt. Keeps your trousers up and your tools on your hip." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Alarm System CBM" -msgid_plural "Alarm System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "CRIT rec duster" +msgid_plural "CRIT rec dusters" msgstr[0] "" msgstr[1] "" -#. ~ Description for Alarm System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for CRIT rec duster +#: lang/json/ARMOR_from_json.py msgid "" -"A motion-detecting alarm system will notice almost all movement within a " -"fifteen-foot radius, and will silently alert the user. This is very useful " -"during sleep, or if the user suspects a cloaked pursuer." +"A waterproofed full-length duster coat. Made with neoprene, comfort and " +"functionality meet together to form a fancy but sleek contemporary design. " +"It has several pockets for storage." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "CRIT rec hat" +msgid_plural "CRIT rec hats" msgstr[0] "" msgstr[1] "" -#. ~ Description for Arms Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for CRIT rec hat +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"Functionality meets fashion in this waterproofed CRIT standard issue rec " +"cover. Thick enough to provide warmth in colder weather, this hat shares " +"the same sleek design of most of C.R.I.T's gear." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Protective Lenses CBM" -msgid_plural "Protective Lenses CBMs" +#: lang/json/ARMOR_from_json.py +msgid "plant fiber tunic" +msgid_plural "plant fiber tunics" msgstr[0] "" msgstr[1] "" -#. ~ Description for Protective Lenses CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for plant fiber tunic +#: lang/json/ARMOR_from_json.py msgid "" -"A bionic package that seals the user's eye sockets with highly protective " -"mirrored lenses and re-routes their tear ducts to their mouth. When the " -"user cries, they must spit out or swallow their tears." +"A loose garment cobbled together from a collection of plant bundles and " +"wound together by makeshift cordage" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "plant fiber bracelet" +msgid_plural "plant fiber bracelets" msgstr[0] "" msgstr[1] "" -#. ~ Description for Head Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for plant fiber bracelet +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"A bracelet wound together by makeshift cordage. Has some cool looking " +"pebbles." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "CRIT canteen" +msgid_plural "CRIT canteens" msgstr[0] "" msgstr[1] "" -#. ~ Description for Legs Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for CRIT canteen +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"A durable steel canteen that can heat up food with built in atomic heating " +"elements." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "salvaged new order armor" +msgid_plural "salvaged new order armors" msgstr[0] "" msgstr[1] "" -#. ~ Description for Torso Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for salvaged new order armor +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"A suit of armor belonging to a human-sized soldier of the New Order. Its " +"terribly damaged from some combination of the combat its seen, the process " +"needed to pry it off its wearer, and some sort of dead man's switch on the " +"elements that actually power the thing and make it easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "new order shield" +msgid_plural "new order shields" +msgstr[0] "escudo da nova ordem" +msgstr[1] "escudos da nova ordem" + +#. ~ Description for new order shield +#: lang/json/ARMOR_from_json.py +msgid "" +"A simple shield made of some sort of polycarbonates, used extensively by the" +" Vigilants, the gendarmerie of the New Order. Alongside their infamous " +"shock batons, this is an essential tool in 'keeping the peace'." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "new order battle shield" +msgid_plural "new order battle shields" +msgstr[0] "escudo de batalha da nova ordem" +msgstr[1] "escudos de batalha da nova ordem" + +#. ~ Description for new order battle shield +#: lang/json/ARMOR_from_json.py +msgid "" +"A well forged shield made of steel, emblazoned with what appears to be a " +"highly stylized depiction of a sword piercing a star." +msgstr "" + +#. ~ Description for large quiver +#: lang/json/ARMOR_from_json.py +msgid "" +"A large leather quiver trimmed with metal, worn on the back, that can hold " +"60 arrows. Historically used by horse archers, rather than foot archers, " +"but sometimes horses are a little hard to come by in this day and age. " +"Activate to store arrows." +msgstr "" + +#. ~ Description for bra +#: lang/json/ARMOR_from_json.py +msgid "" +"A simple bra. For protecting those bits you don't want creatures to look " +"at." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Ixythyug the Destroyer's soul" +msgid_plural "Ixythyug the Destroyer's souls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Ixythyug the Destroyer's soul +#: lang/json/ARMOR_from_json.py +msgid "RIP AND TEAR" +msgstr "" + +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Force Shield" +msgid_plural "Force Shield" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Force Shield +#: lang/json/ARMOR_from_json.py +msgid "" +"A shield of pure force that protects you from most types of physical damage." +msgstr "" + +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Soul Burn" +msgid_plural "Soul Burns" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Soul Burn +#: lang/json/ARMOR_from_json.py +msgid "" +"A little of your soul has been burned away, leaving you in a weakened state." +" The soul heals quickly, so rest for now." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for copper infusion bracelet +#. ~ Description for silver infusion bracelet +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "copper circlet" +msgid_plural "copper circlets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for copper circlet +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin arm guards" +msgid_plural "pairs of demon chitin arm guards" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of demon chitin arm guards +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of arm guards crafted from the carefully cleaned and pruned red " +"exoskeletons of demon spiders. Fire-resistant and very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "demon chitin armor" +msgid_plural "demon chitin armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for demon chitin armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Leg and body armor crafted from the carefully cleaned and pruned red " +"exoskeletons of demon spiders. Fire-resistant and very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "demon chitin helmet" +msgid_plural "demon chitin helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for demon chitin helmet +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin gauntlets" +msgid_plural "pairs of demon chitin gauntlets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of demon chitin gauntlets +#: lang/json/ARMOR_from_json.py +msgid "" +"Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " +"demon spiders. Fire-resistant and very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin boots" +msgid_plural "pairs of demon chitin boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of demon chitin boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Boots crafted from carefully cleaned and pruned red exoskeletons of demon " +"spiders. Fire-resistant and very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonscale boots" +msgid_plural "pairs of black dragonscale boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of black dragonscale boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Boots made of black incredibly durable dragonscale. Very protective, and " +"surprisingly light." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonhide boots" +msgid_plural "pairs of black dragonhide boots" +msgstr[0] "par de botas de couro de dragão negro" +msgstr[1] "pares de botas de couro de dragão negro" + +#. ~ Description for pair of black dragonhide boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Boots made of very durable black dragonhide. Very protective, and " +"surprisingly light." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale helmet" +msgid_plural "black dragonscale helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action msg for black dragonscale helmet. +#. ~ Use action msg for XL black dragonscale helmet. +#. ~ Use action msg for riot helmet. +#. ~ Use action msg for motorcycle helmet. +#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py +msgid "You raise your visor." +msgstr "Você levanta sua viseira." + +#. ~ Description for black dragonscale helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A helmet made from black incredibly durable dragonscale, held together with " +"black dragonhide. It comes equipped with a full face visor with only a thin" +" slit to see out of. Activate to raise the visor." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale helmet (raised visor)" +msgid_plural "black dragonscale helmets (raised visor)" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action msg for black dragonscale helmet (raised visor). +#. ~ Use action msg for XL black dragonscale helmet (raised visor). +#. ~ Use action msg for riot helmet (raised visor). +#. ~ Use action msg for motorcycle helmet (raised visor). +#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py +msgid "You put down your visor." +msgstr "Você abaixa sua viseira." + +#. ~ Description for black dragonscale helmet (raised visor) +#: lang/json/ARMOR_from_json.py +msgid "" +"A helmet made from incredibly durable black dragonscale, held together with " +"black dragonhide. The visor is raised." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonhide helmet" +msgid_plural "black dragonhide helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for black dragonhide helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A helmet made from very durable black dragonhide. It protects your head " +"well, but doesn't cover your face." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale armor" +msgid_plural "black dragonscale armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for black dragonscale armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A full suit of incredibly durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonhide armor" +msgid_plural "black dragonhide armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for black dragonhide armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A full suit of very durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonscale gauntlets" +msgid_plural "pairs of black dragonscale gauntlets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of black dragonscale gauntlets +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " +"that covers your hands." +msgstr "" + +#: lang/json/ARMOR_from_json.py +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" + +#. ~ Description for pair of black dragonhide gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of gloves made of very durable black dragonhide, modified to be easy " +"to wear while providing maximum protection under extreme conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonscale boots" +msgid_plural "pairs of XL black dragonscale boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL black dragonscale boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Massive boots made of incredibly durable black dragonscale, modified to fit " +"even the strangest of bodies. Very protective, and surprisingly light." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonhide boots" +msgid_plural "pairs of XL black dragonhide boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL black dragonhide boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Massive boots made of very durable black dragonhide, modified to fit even " +"the strangest of bodies. Very protective, and surprisingly light." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonscale gauntlets" +msgid_plural "pairs of XL black dragonscale gauntlets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL black dragonscale gauntlets +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " +"that covers your hands, or whatever you use as hands." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonhide gloves" +msgid_plural "pairs of XL black dragonhide gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL black dragonhide gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of gloves made of very durable black dragonhide, modified to be easy " +"to wear while providing maximum protection under extreme conditions. Sized " +"to fit even the strangest of anatomy." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale helmet" +msgid_plural "XL black dragonscale helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL black dragonscale helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive helmet made from incredibly durable black dragonscale, held " +"together with black dragonhide. It comes equipped with a full face visor " +"you can raise and is large enough to fit even the strangest of heads." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale helmet (raised visor)" +msgid_plural "XL black dragonscale helmets (raised visor)" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL black dragonscale helmet (raised visor) +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive helmet made from incredibly durable black dragonscale, held " +"together with black dragonhide. It is large enough to fit even the " +"strangest of heads. The visor is raised" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonhide helmet" +msgid_plural "XL black dragonhide helmets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL black dragonhide helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive helmet made from very durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale armor" +msgid_plural "XL black dragonscale armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL black dragonscale armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive full suit of incredibly durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonhide armor" +msgid_plural "XL black dragonhide armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL black dragonhide armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive full suit of very durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "dragonhide backpack" +msgid_plural "dragonhide backpacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for dragonhide backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Made of very durable dragon leather and carefully " +"crafted to hold as much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL dragonhide backpack" +msgid_plural "XL dragonhide backpacks" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +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" + +#: lang/json/ARMOR_from_json.py +msgid "belt of haste" +msgid_plural "belts of haste" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "chapéu de mago" +msgstr[1] "chapéus de mago" + +#. ~ Description for wizard hat +#: lang/json/ARMOR_from_json.py +msgid "" +"A blue pointed hat with stars stitched into it. Wearing it increases your " +"maximum mana." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Cloak of Morthylla the Lamia" +msgid_plural "Cloaks of Morthylla the Lamia" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Cloak of Morthylla the Lamia +#: lang/json/ARMOR_from_json.py +msgid "" +"This cloak seems to absorb light except for the pinpricks of stars that move" +" across its surface." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of wolfshead cufflinks" +msgid_plural "pairs of wolfshead cufflinks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of wolfshead cufflinks +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of silver cufflinks with a wolf's head engraved into them. Each " +"cufflink has a bright ruby eye and pearl teeth. They appear to be growling." +" There is an inscription, 'When the moon shines. I become alive.'" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "cinto de ferramentas do Tecnomante" +msgstr[1] "cintos de ferramentas do Tecnomante" + +#. ~ Description for technomancer's toolbelt +#: lang/json/ARMOR_from_json.py +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." + +#: lang/json/ARMOR_from_json.py +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" + +#. ~ Description for seven league boots +#. ~ Description for boots of haste +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "boots of haste" +msgid_plural "pairs of boots of haste" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "freerunner's boots" +msgid_plural "freerunner's boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for freerunner's boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, seeming a bit more flexible and breathable than typical for their " +"materials. The enchantment they bear helps guide their wearer in their " +"motions, to make movement around and over obstacles much more fluid and " +"efficient." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for boots of grounding +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Fish" +msgid_plural "Wildshape Cloaks: Fish" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Wildshape Cloak: Fish +#: lang/json/ARMOR_from_json.py +msgid "" +"A magical cloak that shimmers like fresh water under a warm sun. It can be " +"worn to morph your body to a form that is excellent for swimming, but ill-" +"suited for combat." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Bear" +msgid_plural "Wildshape Cloak: Bears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Wildshape Cloak: Bear +#: lang/json/ARMOR_from_json.py +msgid "" +"A magical cloak that smells of the forest. It can be worn to morph your " +"body to a form that is strong and resilient in melee combat. However, you " +"feel as if you would lose a part of yourself." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Deer" +msgid_plural "Wildshape Cloak: Deers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Wildshape Cloak: Deer +#: lang/json/ARMOR_from_json.py +msgid "" +"A magical cloak that feels soft to the touch. It can be worn to morph your " +"body to a form well-suited to escaping difficult situations. However, it " +"places a great strain on your body." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "enchanted parabolan wool blouse" +msgid_plural "enchanted parabolan wool blouse" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for enchanted parabolan wool blouse +#: lang/json/ARMOR_from_json.py +msgid "" +"A loose iridescent blouse in a style most often associated with pirates and " +"renfaires. It shimmers as you look at it. Made of parabolan wool, it " +"sometimes dimly shows reflections of things here and not. This particular " +"one has piratical flairs and glitters with enchantment." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "enchanted parabolan wool breeches" +msgid_plural "enchanted parabolan wool breeches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for enchanted parabolan wool breeches +#: lang/json/ARMOR_from_json.py +msgid "" +"A well-made pair of old-fashioned pants, made of iridescent material. " +"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " +"parabolan wool, it sometimes dimly shows reflections of things here and not." +" This particular one has piratical flairs and gliters with enchantment." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "parabolan wool blouse" +msgid_plural "parabolan wool blouses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for parabolan wool blouse +#: lang/json/ARMOR_from_json.py +msgid "" +"A loose iridescent blouse in a style most often associated with pirates and " +"renfaires. It shimmers as you look at it. Made of parabolan wool, it " +"sometimes dimly shows reflections of things here and not." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "parabolan wool breeches" +msgid_plural "parabolan wool breeches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for parabolan wool breeches +#: lang/json/ARMOR_from_json.py +msgid "" +"A well-made pair of old-fashioned pants, made of iridescent material. " +"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " +"parabolan wool, it sometimes dimly shows reflections of things here and not." +msgstr "" + +#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of magical armored stone gauntlets +#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "magic lamp" +msgid_plural "magic lamps" +msgstr[0] "lâmpada mágica" +msgstr[1] "lâmpadas mágicas" + +#. ~ Description for magic lamp +#: lang/json/ARMOR_from_json.py +msgid "A magical light source that will light up a small area." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "magic light" +msgid_plural "magic lights" +msgstr[0] "luz mágica" +msgstr[1] "luzes mágicas" + +#. ~ Description for magic light +#: lang/json/ARMOR_from_json.py +msgid "A small magical light that you can read by." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large shield of magical ice +#: lang/json/ARMOR_from_json.py +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "slick icy coatings" +msgid_plural "slick icy coatings" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for slick icy coatings +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "flesh pouch" +msgid_plural "flesh pouches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for flesh pouch +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "obfuscating aura" +msgid_plural "obfuscating auras" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for obfuscating aura +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "acid resistance aura" +msgid_plural "acid resistance auras" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for acid resistance aura +#. ~ Description for greater acid resistance aura +#: lang/json/ARMOR_from_json.py +msgid "An all-encompassing, invisible layer of protection against acid." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for frost armor +#: lang/json/ARMOR_from_json.py +msgid "A thin layer of magical ice, covering the entire body." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "stoneskin coating" +msgid_plural "stoneskin coating" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for stoneskin coating +#: lang/json/ARMOR_from_json.py +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "overcharge burn" +msgid_plural "overcharge burns" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for overcharge burn +#: lang/json/ARMOR_from_json.py +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "aura of protection" +msgid_plural "auras of protection" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for aura of protection +#: lang/json/ARMOR_from_json.py +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "aura of repelling arc" +msgid_plural "auras of repelling arc" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for aura of repelling arc +#: lang/json/ARMOR_from_json.py +msgid "" +"An invisible aura that strikes melee attackers with arcs of electricity." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "feral aura" +msgid_plural "feral auras" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feral aura +#: lang/json/ARMOR_from_json.py +msgid "" +"The manifestation of your rage. It won't disappear until you calm down." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "acid aura" +msgid_plural "acid auras" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for acid aura +#: lang/json/ARMOR_from_json.py +msgid "" +"An aura of thin acid, swirling around your body ready to corrode when struck" +" or while striking." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "werewolf aura" +msgid_plural "werewolf auras" +msgstr[0] "aura de lobisomem" +msgstr[1] "auras de lobisomem " + +#. ~ Description for werewolf aura +#: lang/json/ARMOR_from_json.py +msgid "You have become the werewolf. Boys becoming men, men becoming wolves." +msgstr "" + +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Black Dragon Shell" +msgid_plural "Black Dragon Shells" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Black Dragon Shell +#: lang/json/ARMOR_from_json.py +msgid "" +"An aura of black and green draconic energy, swirling around your body " +"protecting you and punishing those who strike you." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "spiritual armor" +msgid_plural "spiritual armor" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spiritual armor +#: lang/json/ARMOR_from_json.py +msgid "A summoned medieval armor. It glows softly and looks sturdy." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "auroral shell" +msgid_plural "auroral shell" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for auroral shell +#: lang/json/ARMOR_from_json.py +msgid "A sturdy shell that wraps your body, gaining a sturdy defense." +msgstr "" + +#: lang/json/BATTERY_from_json.py +msgid "test battery" +msgid_plural "test batteries" +msgstr[0] "bateria de teste" +msgstr[1] "baterias de teste" + +#. ~ Description for test battery +#: lang/json/BATTERY_from_json.py +msgid "" +"This is a testing item for the BATTERY item type. If you found one in game," +" it's a bug." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "abstract bionic module" +msgid_plural "abstract bionic modules" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "abstract bionic module (npc usable)" +msgid_plural "abstract bionic modules (npc usable)" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "abstract faulty bionic module" +msgid_plural "abstract faulty bionic modules" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for abstract faulty bionic module +#: lang/json/BIONIC_ITEM_from_json.py +msgid "This CBM is broken beyond repair, you can't do anything with it." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Adrenaline Pump CBM" +msgid_plural "Adrenaline Pump CBMs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Adrenaline Pump CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A stimulator system that is implanted alongside the adrenal glands, allowing" +" the user to trigger their body's adrenaline response at the cost of some " +"bionic power." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Active Defense System CBM" +msgid_plural "Active Defense System CBMs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Active Defense System CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"This bionic projects a thin forcefield around the user's body. Anything " +"attempting to penetrate this field has a chance of being deflected at the " +"cost of energy, reducing their ability to deal damage. Bullets will be " +"deflected more than swords and those in turn more than massive objects." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Alarm System CBM" +msgid_plural "Alarm System CBMs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Alarm System CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A motion-detecting alarm system will notice almost all movement within a " +"fifteen-foot radius, and will silently alert the user. This is very useful " +"during sleep, or if the user suspects a cloaked pursuer." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Protective Lenses CBM" +msgid_plural "Protective Lenses CBMs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Protective Lenses CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A bionic package that seals the user's eye sockets with highly protective " +"mirrored lenses and re-routes their tear ducts to their mouth. When the " +"user cries, they must spit out or swallow their tears." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Head Intradermal Alloy CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Torso Intradermal Alloy CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -26741,7 +26748,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -27172,7 +27179,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -27385,7 +27392,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -28770,7 +28777,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -29051,7 +29058,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -29096,7 +29103,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -29111,7 +29118,7 @@ msgid_plural "schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -29119,9 +29126,9 @@ msgstr[1] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -29137,7 +29144,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -29152,7 +29159,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -29167,7 +29174,7 @@ msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -29181,7 +29188,7 @@ msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -29195,7 +29202,7 @@ msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -29209,7 +29216,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -29223,7 +29230,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -29237,7 +29244,7 @@ msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -29251,7 +29258,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -29265,7 +29272,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -29279,7 +29286,7 @@ msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -29294,7 +29301,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -29309,7 +29316,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -29323,7 +29330,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -30007,7 +30014,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "O Espírito do Aikido" msgstr[1] "O Espírito do Aikido" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "Um guia completo para o Aikido." @@ -30018,7 +30025,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "Pugilismo Prático" msgstr[1] "Pugilismo Prático" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -30032,7 +30039,7 @@ msgid_plural "Capoeira 100" msgstr[0] "Capoeira 100" msgstr[1] "Capoeira 100" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "Um guia completo para Capoeira." @@ -30043,7 +30050,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "A Centopéia Lu Feng" msgstr[1] "A Centopéia Lu Feng" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "Um guia completo para Kung Fu estilo Centopéia." @@ -30054,7 +30061,7 @@ msgid_plural "The Red Crane" msgstr[0] "A Garça Vermelha" msgstr[1] "A Garça Vermelha" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "Um guia completo para Kung Fu estilo Garça." @@ -30065,7 +30072,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "O Dragão de Jade" msgstr[1] "O Dragão de Jade" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "Um guia completo para Kung Fu estilo Dragão." @@ -30076,7 +30083,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "Eskrima Prática" msgstr[1] "Eskrima Prática" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "Um guia completo para Eskrima." @@ -30087,7 +30094,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "O Espadachim Moderno" msgstr[1] "O Espadachim Moderno" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "The Modern SwordsmanUm guia completo para esgrima." @@ -30098,7 +30105,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "Kodokan Judo Um guia completo para o judô." @@ -30109,7 +30116,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "O Shotokan Karate HandbookUm guia completo para o Karate Shotokan." @@ -30120,7 +30127,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "Krav Maga Completo" msgstr[1] "Krav Maga Completo" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "Complete Krav MagaA guia completo para Krav Maga." @@ -30131,7 +30138,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "O Leopardo Surdo" msgstr[1] "O Leopardo Surdo" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "The Leopard DeafUm guia completo para o Leopard Kung Fu." @@ -30142,7 +30149,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "O Lagarto Kuo ChuiA guia completo para o Lagarto Kung Fu." @@ -30153,7 +30160,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "Ultimate Muay ThaiUm guia completo para Muay Thai." @@ -30164,7 +30171,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "Essence of NinjutsuUm guia completo para o Ninjutsu." @@ -30175,7 +30182,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -30190,7 +30197,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "The Modern PankratiastUm guia completo para o Pankration." @@ -30201,7 +30208,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "The Scorpion Sun Chien Um guia completo para o Escorpião Kung Fu." @@ -30212,7 +30219,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "The Indonesian WarriorA guia completo para Pentjak Silat." @@ -30223,7 +30230,7 @@ msgid_plural "The Black Snake" msgstr[0] "A Serpente Negra" msgstr[1] "A Serpente Negra" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "The Black SnakeUm guia completo para o Snake Kung Fu." @@ -30234,7 +30241,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -30246,7 +30253,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" @@ -30258,7 +30265,7 @@ msgid_plural "The White Tiger" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "The White TigerUm guia completo para o Tiger Kung Fu." @@ -30269,7 +30276,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "O Toad Lo MangA guia completo para Sapo Kung Fu." @@ -30280,7 +30287,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "The Viper Wei PaiA guia completo para o Viper Kung Fu." @@ -30291,7 +30298,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "Zui Quan e YouA guia completo para Zui Quan." @@ -30302,7 +30309,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "O Caminho da Lança Um guia completo para Sōjutsu." @@ -30313,7 +30320,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -30325,7 +30332,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -30339,7 +30346,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -30512,7 +30519,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -31433,7 +31440,7 @@ msgid_plural "patient treatment records" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -31446,7 +31453,7 @@ msgid_plural "national weather transcripts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "Registros antigos do clima são tão interessantes quanto uma rocha." @@ -35027,7 +35034,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -35042,7 +35049,7 @@ msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -35057,7 +35064,7 @@ msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -35072,7 +35079,7 @@ msgid_plural "tank drone schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -35087,7 +35094,7 @@ msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -35321,7 +35328,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -35332,7 +35339,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -35343,7 +35350,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -35356,7 +35363,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -35367,7 +35374,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -35380,7 +35387,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -35394,7 +35401,7 @@ msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -35405,7 +35412,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -35418,7 +35425,7 @@ msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -35429,7 +35436,7 @@ msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -35456,6 +35463,21 @@ msgstr[1] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -37536,7 +37558,7 @@ msgid_plural "bird litter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -37594,14 +37616,14 @@ msgid_plural "bleach" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -37616,7 +37638,7 @@ msgid_plural "ammonia" msgstr[0] "amônia" msgstr[1] "amônia" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -37631,7 +37653,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "fertilizante líquidod" msgstr[1] "fertilizante líquido" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -37642,7 +37664,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "fertilizante comercial" msgstr[1] "fertilizante comercial" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -37653,7 +37675,7 @@ msgid_plural "fungicide" msgstr[0] "fungicida" msgstr[1] "fungicida" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -37666,7 +37688,7 @@ msgid_plural "insecticide" msgstr[0] "inseticida" msgstr[1] "inseticida" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -37681,7 +37703,7 @@ msgid_plural "salt water" msgstr[0] "água salgada" msgstr[1] "água salgada" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "Água com sal adicionado. Não é bom para beber." @@ -37692,7 +37714,7 @@ msgid_plural "soapy water" msgstr[0] "água com sabão" msgstr[1] "água com sabão" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "Água com sabão adicionado. Não é boa para beber." @@ -37714,7 +37736,7 @@ msgid_plural "sulfuric acid" msgstr[0] "ácido sulfúrico" msgstr[1] "ácido sulfúrico" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -37733,7 +37755,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "ácido hidroclórico" msgstr[1] "ácido hidroclórico" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -37750,7 +37772,7 @@ msgid_plural "nitric acid" msgstr[0] "ácido nítrico" msgstr[1] "ácido nítrico" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -37790,7 +37812,7 @@ msgid_plural "sewage water" msgstr[0] "água de esgoto" msgstr[1] "água de esgoto" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -37801,7 +37823,7 @@ msgid_plural "lye" msgstr[0] "lixívia" msgstr[1] "lixívia" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -37814,7 +37836,7 @@ msgid_plural "ether" msgstr[0] "éter" msgstr[1] "éter" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -37829,7 +37851,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "dimetilsulfóxido" msgstr[1] "dimetilsulfóxido" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -37844,7 +37866,7 @@ msgid_plural "chloroform" msgstr[0] "clorofórmio" msgstr[1] "clorofórmio" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -37858,7 +37880,7 @@ msgid_plural "phenol" msgstr[0] "fenol" msgstr[1] "fenol" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -37878,7 +37900,7 @@ msgid_plural "glycerol" msgstr[0] "glicerol" msgstr[1] "glicerol" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -37891,7 +37913,7 @@ msgid_plural "peptone broth powder" msgstr[0] "pó de caldo de peptona" msgstr[1] "pó de caldo de peptona" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -37905,7 +37927,7 @@ msgid_plural "agar" msgstr[0] "ágar-ágar" msgstr[1] "ágar-ágar" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -37924,7 +37946,7 @@ msgid_plural "acrylamide" msgstr[0] "acrilamida" msgstr[1] "acrilamida" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -37939,7 +37961,7 @@ msgid_plural "acetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -37954,7 +37976,7 @@ msgid_plural "formic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -37967,7 +37989,7 @@ msgid_plural "latex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -37978,7 +38000,7 @@ msgid_plural "citric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -38055,13 +38077,24 @@ msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -38106,7 +38139,7 @@ msgid_plural "marloss wine" msgstr[0] "vinho de marloss" msgstr[1] "vinhos de marloss" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "Vinho branco pegajoso, feito com frutos de marloss." @@ -38117,7 +38150,7 @@ msgid_plural "Riesling" msgstr[0] "Riesling" msgstr[1] "Riesling" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "RieslingVinho branco espumante, feito da mais nobre uva do mundo." @@ -38128,7 +38161,7 @@ msgid_plural "Chardonnay" msgstr[0] "Chardonnay" msgstr[1] "Chardonnay" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "O vinho mais popular da ChardonnayAmerica e por boas razões." @@ -38139,7 +38172,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "Cabernet Sauvignon" msgstr[1] "Cabernet Sauvignon" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -38154,7 +38187,7 @@ msgid_plural "pinot noir" msgstr[0] "pinot noir" msgstr[1] "pinot noir" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -38169,7 +38202,7 @@ msgid_plural "marsala" msgstr[0] "marsala" msgstr[1] "marsala" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -38182,7 +38215,7 @@ msgid_plural "vermouth" msgstr[0] "vermute" msgstr[1] "vermutes" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -38195,7 +38228,7 @@ msgid_plural "barley wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -38206,7 +38239,7 @@ msgid_plural "whiskey" msgstr[0] "uísque" msgstr[1] "uísques" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -38220,7 +38253,7 @@ msgid_plural "vodka" msgstr[0] "vodka" msgstr[1] "vodkas" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -38235,7 +38268,7 @@ msgid_plural "gin" msgstr[0] "gin" msgstr[1] "gin" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -38250,7 +38283,7 @@ msgid_plural "rum" msgstr[0] "rum" msgstr[1] "rum" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -38263,7 +38296,7 @@ msgid_plural "tequila" msgstr[0] "tequila" msgstr[1] "tequila" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -38279,7 +38312,7 @@ msgid_plural "triple sec" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "triple sec Um licor de sabor laranja usado em muitas bebidas mistas." @@ -38290,7 +38323,7 @@ msgid_plural "cheap wine" msgstr[0] "vinho barato" msgstr[1] "vinhos baratos" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "Vinho baratoRealmente barato vinho fortificado." @@ -38301,7 +38334,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "álcool misturado forte" msgstr[1] "álcool misturado forte" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -38314,7 +38347,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "álcool misturado fraco" msgstr[1] "álcool misturado fraco" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "Bebidas alcoólicas fracas, misturadas sem consideração pelo sabor." @@ -38325,7 +38358,7 @@ msgid_plural "fruit wine" msgstr[0] "vinho de frutas" msgstr[1] "vinhos de frutas" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -38339,7 +38372,7 @@ msgid_plural "brandy" msgstr[0] "conhaque" msgstr[1] "conhaques" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -38354,7 +38387,7 @@ msgid_plural "Irish coffee" msgstr[0] "café irlandês" msgstr[1] "cafés irlandeses" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -38369,7 +38402,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "chá gelado de Long Island" msgstr[1] "chá gelado de Long Island" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -38401,7 +38434,7 @@ msgid_plural "wild apple" msgstr[0] "wild apple" msgstr[1] "wild apple" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "Como cidra de maçã, mas com vodka." @@ -38412,7 +38445,7 @@ msgid_plural "rum & cola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "Adequado para retiros tropicais e artistas canadenses." @@ -38423,7 +38456,7 @@ msgid_plural "beer" msgstr[0] "cerveja" msgstr[1] "cervejas" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -38438,7 +38471,7 @@ msgid_plural "spiced mead" msgstr[0] "hidromel com especiarias" msgstr[1] "hidromel com especiarias" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -38452,7 +38485,7 @@ msgid_plural "dandelion wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -38467,7 +38500,7 @@ msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -38478,7 +38511,7 @@ msgid_plural "pine wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -38493,7 +38526,7 @@ msgid_plural "homebrew beer" msgstr[0] "cerveja caseira" msgstr[1] "cervejas caseiras" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -38506,7 +38539,7 @@ msgid_plural "moonshine" msgstr[0] "moonshine" msgstr[1] "moonshines" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -38520,7 +38553,7 @@ msgid_plural "European pilsner" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -38535,7 +38568,7 @@ msgid_plural "American pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -38550,7 +38583,7 @@ msgid_plural "India pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -38565,7 +38598,7 @@ msgid_plural "stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -38577,7 +38610,7 @@ msgid_plural "Belgian ale" msgstr[0] "cerveja belga" msgstr[1] "cervejas belgas" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -38592,7 +38625,7 @@ msgid_plural "imperial stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -38642,7 +38675,7 @@ msgid_plural "single malt whiskey" msgstr[0] "uísque de malte único" msgstr[1] "uísques de malte único" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "uísque de malte ÚnicoO melhor uísque direto do batoque." @@ -38653,7 +38686,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -38664,7 +38697,7 @@ msgid_plural "cheap whiskey" msgstr[0] "uísque barato" msgstr[1] "uísque barato" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -38675,7 +38708,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -38686,7 +38719,7 @@ msgid_plural "sherry" msgstr[0] "xerez" msgstr[1] "xerez" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -38700,7 +38733,7 @@ msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -38713,7 +38746,7 @@ msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -38724,7 +38757,7 @@ msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "Isto definitivamente tem gosto de uma bebida de vagabundo." @@ -38735,7 +38768,7 @@ msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -38751,7 +38784,7 @@ msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -38856,7 +38889,7 @@ msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -38867,7 +38900,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -38878,7 +38911,7 @@ msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -38891,7 +38924,7 @@ msgid_plural "sourdough bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -38906,7 +38939,7 @@ msgid_plural "flatbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "Pão ázimo simples." @@ -38917,7 +38950,7 @@ msgid_plural "bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "Saudável e saboroso." @@ -38928,7 +38961,7 @@ msgid_plural "toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -38941,7 +38974,7 @@ msgid_plural "buttered toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -38952,7 +38985,7 @@ msgid_plural "jam toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -38965,7 +38998,7 @@ msgid_plural "peanut butter toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -38977,7 +39010,7 @@ msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -38988,7 +39021,7 @@ msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -39001,7 +39034,7 @@ msgid_plural "cornbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "Pão de milho saudável e saboroso." @@ -39036,7 +39069,7 @@ msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -39062,7 +39095,7 @@ msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -39079,7 +39112,7 @@ msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -39090,7 +39123,7 @@ msgid_plural "hallula" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -39371,18 +39404,18 @@ msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -39393,8 +39426,8 @@ msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -39409,14 +39442,14 @@ msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -39427,7 +39460,7 @@ msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -39455,7 +39488,7 @@ msgid_plural "cooked fish" msgstr[0] "peixe cozido" msgstr[1] "peixes cozidos" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "Peixe cozido fresquinho. Muito nutritivo." @@ -39559,7 +39592,7 @@ msgstr "" " pedaço de carneFreshly matou carne. Você pode comê-lo cru, mas " "cozinharémelhor." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -39664,7 +39697,7 @@ msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -39703,7 +39736,7 @@ msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -39750,7 +39783,7 @@ msgid_plural "butchery refuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -39844,7 +39877,7 @@ msgid_plural "cooked offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -39861,7 +39894,7 @@ msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -39872,7 +39905,7 @@ msgid_plural "pickled offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -39889,7 +39922,7 @@ msgid_plural "canned offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -39927,31 +39960,28 @@ msgid_plural "meat jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -39964,7 +39994,7 @@ msgid_plural "salted fish" msgstr[0] "peixe salgado" msgstr[1] "peixes salgados" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -39977,33 +40007,27 @@ msgid_plural "smoked meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -40026,7 +40050,7 @@ msgid_plural "smoked fish" msgstr[0] "peixe defumado" msgstr[1] "peixes defumados" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -40081,7 +40105,7 @@ msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -40135,7 +40159,7 @@ msgid_plural "raw brains" msgstr[0] "cérebro cru" msgstr[1] "cérebros crus" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "Um cérebro de animal. Você não gostaria de comer isso cru..." @@ -40146,7 +40170,7 @@ msgid_plural "cooked brains" msgstr[0] "cérebro cozido" msgstr[1] "cérebros cozidos" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -40231,7 +40255,7 @@ msgstr[1] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "Sangue, possivelmente de um humano. Repugnante!" @@ -40395,7 +40419,7 @@ msgstr "" " pedaço de carne contaminada, carne que é obviamente insalubre. " "Vocêpodecomê-lo, mas vai envenená-lo." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -40670,7 +40694,7 @@ msgid_plural "alien fronds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -40775,7 +40799,7 @@ msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -40786,7 +40810,7 @@ msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -40824,13 +40848,38 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -40844,7 +40893,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -40857,7 +40906,7 @@ msgid_plural "cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -40868,7 +40917,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -40880,7 +40929,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -40893,7 +40942,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -40906,7 +40955,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -40919,7 +40968,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -40932,7 +40981,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -40958,7 +41007,7 @@ msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -40984,7 +41033,7 @@ msgid_plural "wheat cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -41010,7 +41059,7 @@ msgid_plural "milk" msgstr[0] "leite" msgstr[1] "leite" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -41023,7 +41072,7 @@ msgid_plural "chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -41034,7 +41083,7 @@ msgid_plural "reconstituted milk" msgstr[0] "leite reconstituído" msgstr[1] "leite reconstituído" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -41047,7 +41096,7 @@ msgid_plural "raw milk" msgstr[0] "leite cru" msgstr[1] "leite cru" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -41066,7 +41115,7 @@ msgid_plural "shelf stable milk" msgstr[0] "leite estabilizado" msgstr[1] "leite estabilizado" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -41080,7 +41129,7 @@ msgid_plural "evaporated milk" msgstr[0] "leite evaporado" msgstr[1] "leite evaporado" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -41092,7 +41141,7 @@ msgid_plural "buttermilk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -41116,7 +41165,7 @@ msgid_plural "butter" msgstr[0] "manteiga" msgstr[1] "manteigas" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -41129,7 +41178,7 @@ msgid_plural "raw butter" msgstr[0] "manteiga crua" msgstr[1] "manteiga crua" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -41143,7 +41192,7 @@ msgid_plural "ghee" msgstr[0] "ghee" msgstr[1] "ghee" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -41184,7 +41233,7 @@ msgid_plural "hard cheese" msgstr[0] "queijo duro" msgstr[1] "queijos duros" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -41199,7 +41248,7 @@ msgid_plural "cheese" msgstr[0] "queijo" msgstr[1] "queijos" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "Um bloco de queijo processado amarelo." @@ -41221,7 +41270,7 @@ msgid_plural "powdered milk" msgstr[0] "leite em pó" msgstr[1] "leite em pó" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "Leite em pó desidratado. Misture com água para fazer leite bebível." @@ -41232,7 +41281,7 @@ msgid_plural "condensed milk" msgstr[0] "leite condensado" msgstr[1] "leite condensado" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -41247,7 +41296,7 @@ msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -41260,7 +41309,7 @@ msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -41271,7 +41320,7 @@ msgid_plural "apple cider" msgstr[0] "cidra de maçã" msgstr[1] "cidra de maçã" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "Pressionado a partir de maçãs frescas. Saborosa e nutritiva." @@ -41308,7 +41357,7 @@ msgid_plural "atomic coffee" msgstr[0] "café atômico" msgstr[1] "cafés atômicos" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -41325,7 +41374,7 @@ msgid_plural "bee balm tea" msgstr[0] "chá de bálsamo de abelha" msgstr[1] "chás de bálsamo de abelha" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -41352,7 +41401,7 @@ msgid_plural "chai tea" msgstr[0] "masala chai" msgstr[1] "masala chai" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "Um chá de especiarias com leite, tradicional do sul da Ásia." @@ -41363,7 +41412,7 @@ msgid_plural "chamomile tea" msgstr[0] "chá de camomila" msgstr[1] "chás de camomila" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -41393,7 +41442,7 @@ msgid_plural "coffee" msgstr[0] "café" msgstr[1] "café" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -41411,7 +41460,7 @@ msgid_plural "coffee substitute" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -41425,7 +41474,7 @@ msgid_plural "chicory brew" msgstr[0] "infusão de chicória" msgstr[1] "infusões de chicória" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -41499,7 +41548,7 @@ msgid_plural "dandelion tea" msgstr[0] "chá de dente-de-leão" msgstr[1] "chás de dente-de-leão" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -41512,7 +41561,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -41576,7 +41625,7 @@ msgid_plural "herbal tea" msgstr[0] "chá de ervas" msgstr[1] "chás de ervas" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "Uma bebida saudável feita de ervas mergulhadas em água fervente." @@ -41587,7 +41636,7 @@ msgid_plural "hot chocolate" msgstr[0] "chocolate quente" msgstr[1] "chocolates quentes" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -41637,7 +41686,7 @@ msgid_plural "lemonade" msgstr[0] "limonada" msgstr[1] "limonadas" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -41667,7 +41716,7 @@ msgid_plural "lotus tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -41678,7 +41727,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "chocolate quente Mexicano" msgstr[1] "chocolates quentes Mexicanos" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -41745,7 +41794,7 @@ msgid_plural "pine needle tea" msgstr[0] "chá de folhas de pinheiro" msgstr[1] "chás de folhas de pinheiro" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -41787,7 +41836,7 @@ msgid_plural "root beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "Como refrigerante de cola, mas sem cafeína. Ainda não é saudável." @@ -41826,13 +41875,13 @@ msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -41858,7 +41907,7 @@ msgid_plural "sweet water" msgstr[0] "água doce" msgstr[1] "água doce" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "água doce Água com açúcar ou mel adicionado. Está tudo bem." @@ -41882,7 +41931,7 @@ msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -41922,7 +41971,7 @@ msgid_plural "water" msgstr[0] "água" msgstr[1] "água" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -41937,7 +41986,7 @@ msgid_plural "clean water" msgstr[0] "água purificada" msgstr[1] "água purificada" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -41950,7 +41999,7 @@ msgid_plural "mineral water" msgstr[0] "água mineral" msgstr[1] "água mineral" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -42081,7 +42130,7 @@ msgid_plural "maple sap" msgstr[0] "seiva de bordo" msgstr[1] "seiva de bordo" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -42093,7 +42142,7 @@ msgid_plural "mayonnaise" msgstr[0] "maionese" msgstr[1] "maioneses" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -42120,7 +42169,7 @@ msgid_plural "mustard" msgstr[0] "mostarda" msgstr[1] "mostardas" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -42135,7 +42184,7 @@ msgid_plural "forest honey" msgstr[0] "mel silvestre" msgstr[1] "mel silvestre" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -42151,7 +42200,7 @@ msgid_plural "vinegar" msgstr[0] "vinagre" msgstr[1] "vinagres" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -42166,7 +42215,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "óleo vegetal de cozinha" msgstr[1] "óleos vegetais de cozinha" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "óleo vegetal amarelo óleo vegetal usado para cozinhar." @@ -42177,7 +42226,7 @@ msgid_plural "animal cooking oil" msgstr[0] "óleo de cozinha animal" msgstr[1] "óleo de cozinha animal" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "Um óleo fino e amarelado de origem animal, usado para cozinhar." @@ -42188,7 +42237,7 @@ msgid_plural "molasses" msgstr[0] "melado" msgstr[1] "melado" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -42204,7 +42253,7 @@ msgid_plural "horseradish" msgstr[0] "rábano" msgstr[1] "rábanos" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "rábano picante vegetal de raiz ralado embalado em salmoura vinagreed." @@ -42215,7 +42264,7 @@ msgid_plural "coffee syrup" msgstr[0] "xarope de café" msgstr[1] "xarope de café" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -42563,7 +42612,7 @@ msgid_plural "scrambled eggs" msgstr[0] "ovo mexido" msgstr[1] "ovos mexidos" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "ovos mexidos, ovos mexidos, deliciosos e deliciosos." @@ -42585,7 +42634,7 @@ msgid_plural "fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -42598,7 +42647,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -42611,7 +42660,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -42624,7 +42673,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -42834,7 +42883,7 @@ msgid_plural "frozen yogurt" msgstr[0] "iogurte congelado" msgstr[1] "iogurte congelado" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -42910,7 +42959,7 @@ msgid_plural "peaches in syrup" msgstr[0] "pêssegos em calda" msgstr[1] "pêssegos em calda" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -42934,7 +42983,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "bebida mix de limonada" msgstr[1] "bebida mix de limonada" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -42971,7 +43020,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "fruta desidratada" msgstr[1] "frutas desidratadas" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -42988,7 +43037,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "fruta reidratada" msgstr[1] "frutas reidratadas" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -43017,7 +43066,7 @@ msgid_plural "canned fruit" msgstr[0] "frutas enlatadas" msgstr[1] "frutas enlatadas" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -43032,7 +43081,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -43056,7 +43105,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -43508,7 +43557,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -43568,7 +43617,7 @@ msgid_plural "irradiated corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -43628,7 +43677,7 @@ msgid_plural "irradiated celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -43643,7 +43692,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -43762,12 +43811,12 @@ msgid_plural "potato chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "Batatas chips simples e salgadas." -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "Oh cara, você ama esses chips! Ponto!" @@ -43778,7 +43827,7 @@ msgid_plural "popcorn kernels" msgstr[0] "milhos de pipoca" msgstr[1] "milhos de pipoca" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -43793,7 +43842,7 @@ msgid_plural "popcorn" msgstr[0] "pipoca" msgstr[1] "pipoca" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -43808,7 +43857,7 @@ msgid_plural "salted popcorn" msgstr[0] "pipoca salgada" msgstr[1] "pipoca salgada" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "Pipoca com sal adicionado para dar um sabor extra." @@ -43819,7 +43868,7 @@ msgid_plural "buttered popcorn" msgstr[0] "pipoca amanteigada" msgstr[1] "pipoca amanteigada" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "Pipoca com uma cobertura leve de manteiga para dar um sabor extra." @@ -43830,7 +43879,7 @@ msgid_plural "pretzels" msgstr[0] "pretzels" msgstr[1] "pretzels" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "Um lanche salgado delicioso." @@ -43863,7 +43912,7 @@ msgid_plural "marshmallows" msgstr[0] "marshmallows" msgstr[1] "marshmallows" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -43876,7 +43925,7 @@ msgid_plural "s'mores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -43913,7 +43962,7 @@ msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "chewy candyA punhado de doces chewy coloridos com sabor de frutas." @@ -43924,12 +43973,12 @@ msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -43977,7 +44026,7 @@ msgid_plural "powder candy sticks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -44056,7 +44105,7 @@ msgid_plural "maple syrup" msgstr[0] "xarope de bordo" msgstr[1] "xarope de bordo" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -44071,7 +44120,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "xarope de beterraba-sacarina" msgstr[1] "xarope de beterraba-sacarina" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -44127,7 +44176,7 @@ msgid_plural "fast-food French fries" msgstr[0] "batatas fritas de fast-food" msgstr[1] "batatas fritas de fast-food" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -44140,7 +44189,7 @@ msgid_plural "French fries" msgstr[0] "batatas fritas" msgstr[1] "batatas fritas" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -44162,7 +44211,7 @@ msgid_plural "Necco wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -44192,8 +44241,8 @@ msgid_plural "caramel" msgstr[0] "caramelo" msgstr[1] "caramelo" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "carameloAlgum caramelo. Ainda é ruim para sua saúde." @@ -44204,7 +44253,7 @@ msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "Betcha não pode comer apenas um." @@ -44215,7 +44264,7 @@ msgid_plural "tortilla chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -44230,7 +44279,7 @@ msgid_plural "cheese nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -44245,31 +44294,28 @@ msgid_plural "meat nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -44284,31 +44330,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -44323,7 +44369,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -44336,7 +44382,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -44414,7 +44460,7 @@ msgid_plural "chili dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "Cachorro quente, servido com chili con carne como cobertura. Yum!" @@ -44425,7 +44471,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -44505,7 +44551,7 @@ msgid_plural "cheese fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "Batatas fritas com queijo delicioso sufocada por cima." @@ -44597,8 +44643,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -44741,32 +44786,26 @@ msgid_plural "raw sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -44785,15 +44824,14 @@ msgid_plural "smoked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -44813,15 +44851,14 @@ msgid_plural "cooked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -44851,23 +44888,21 @@ msgid_plural "bratwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -44890,7 +44925,7 @@ msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -44949,7 +44984,7 @@ msgid_plural "cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -44965,8 +45000,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -44974,7 +45008,7 @@ msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -44991,7 +45025,7 @@ msgid_plural "currywursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -44999,8 +45033,7 @@ msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -45008,8 +45041,7 @@ msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -45032,9 +45064,8 @@ msgid_plural "aspics" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -45042,9 +45073,8 @@ msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -45052,9 +45082,8 @@ msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -45078,7 +45107,7 @@ msgid_plural "dehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -45093,7 +45122,7 @@ msgid_plural "rehydrated fish" msgstr[0] "peixe reidratado" msgstr[1] "peixes reidratados" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -45108,7 +45137,7 @@ msgid_plural "pickled fish" msgstr[0] "peixe em conserva" msgstr[1] "peixes em conserva" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -45120,7 +45149,7 @@ msgid_plural "canned fish" msgstr[0] "peixe enlatado" msgstr[1] "peixe enlatado" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -45135,7 +45164,7 @@ msgid_plural "batter fried fish" msgstr[0] "peixe à milanesa" msgstr[1] "peixe à milanesa" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "Uma deliciosa porção marrom-dourada de peixe frito crocante." @@ -45168,8 +45197,7 @@ msgid_plural "lunch meats" msgstr[0] "carne de almoço" msgstr[1] "carnes de almoço" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -45192,7 +45220,7 @@ msgid_plural "bologna" msgstr[0] "Bolonha" msgstr[1] "Bolonha" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -45200,8 +45228,7 @@ msgid_plural "brat %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -45209,8 +45236,7 @@ msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -45218,7 +45244,7 @@ msgid_plural "bleak %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -45252,7 +45278,7 @@ msgid_plural "SPAM" msgstr[0] "SPAM" msgstr[1] "SPAM" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -45293,24 +45319,22 @@ msgid_plural "sausage gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -45333,7 +45357,7 @@ msgid_plural "pemmican" msgstr[0] "pemmican" msgstr[1] "pemmican" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -45341,8 +45365,7 @@ msgid_plural "prepper %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -45350,8 +45373,7 @@ msgid_plural "Orley %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -45359,7 +45381,7 @@ msgid_plural "pernicious %s" msgstr[0] "%s asqueroso" msgstr[1] "%s asqueroso" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -45376,15 +45398,14 @@ msgid_plural "hamburger helpers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -45392,8 +45413,7 @@ msgid_plural "halfling helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -45428,24 +45448,22 @@ msgid_plural "chilis con carne" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -45464,7 +45482,7 @@ msgid_plural "pork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -45479,7 +45497,7 @@ msgid_plural "canned tuna fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "Atum com 95% menos golfinhos!" @@ -45490,7 +45508,7 @@ msgid_plural "canned salmon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "Peixe-pasta cor-de-rosa brilhante em uma lata!" @@ -45512,7 +45530,7 @@ msgid_plural "pickled herring" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "Filetes de peixe em conserva em algum tipo de molho branco picante." @@ -45534,16 +45552,14 @@ msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -45563,15 +45579,14 @@ msgid_plural "baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "feijão cozidoFeijão cozido com carne. Saboroso e muito recheio." @@ -45582,15 +45597,14 @@ msgid_plural "meat fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" @@ -45603,15 +45617,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -45626,22 +45640,21 @@ msgid_plural "meat pies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -45660,23 +45673,21 @@ msgid_plural "meat pizzas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -45708,31 +45719,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -45747,15 +45757,14 @@ msgid_plural "canned meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -45777,15 +45786,14 @@ msgid_plural "salted meat slices" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -45805,15 +45813,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -45821,8 +45828,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -45830,7 +45836,7 @@ msgid_plural "gnarly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -45842,7 +45848,7 @@ msgid_plural "lasagnes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -45850,8 +45856,7 @@ msgid_plural "Luigi %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -45859,7 +45864,7 @@ msgid_plural "Lab %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -45882,7 +45887,7 @@ msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "Tendo sido frito, este SPAM é realmente muito saboroso." @@ -45893,8 +45898,7 @@ msgid_plural "cheeseburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -45902,7 +45906,7 @@ msgid_plural "chump %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -45911,8 +45915,7 @@ msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -45946,23 +45949,21 @@ msgid_plural "hamburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -45981,23 +45982,21 @@ msgid_plural "sloppy joes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -46020,7 +46019,7 @@ msgid_plural "tacos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -46028,8 +46027,7 @@ msgid_plural "tio %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -46037,7 +46035,7 @@ msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -46060,15 +46058,14 @@ msgid_plural "pickled meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -46089,10 +46086,8 @@ msgid_plural "dehydrated meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -46100,12 +46095,11 @@ msgid_plural "%s, human" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -46143,9 +46137,8 @@ msgid_plural "haggises" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -46172,7 +46165,7 @@ msgid_plural "fish makizushi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -46187,8 +46180,7 @@ msgid_plural "meat temaki" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -46196,7 +46188,7 @@ msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -46211,7 +46203,7 @@ msgid_plural "sashimi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -46238,7 +46230,7 @@ msgid_plural "pelmenis" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -46261,8 +46253,7 @@ msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -46283,15 +46274,14 @@ msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -46310,15 +46300,14 @@ msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -46355,12 +46344,12 @@ msgid_plural "prescription stimulant" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -46410,7 +46399,7 @@ msgid_plural "antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -46437,7 +46426,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -46522,7 +46511,7 @@ msgid_plural "antiseptic powder" msgstr[0] "pó antisséptico" msgstr[1] "pó antisséptico" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -46583,7 +46572,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "peróxido de hidrogênio" msgstr[1] "peróxido de hidrogênio" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -46642,12 +46631,12 @@ msgid_plural "codeine" msgstr[0] "codeína" msgstr[1] "codeína" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "Você pega um pouco de codeína." -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -46664,7 +46653,7 @@ msgid_plural "cocaine" msgstr[0] "cocaína" msgstr[1] "cocaína" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -46716,7 +46705,7 @@ msgid_plural "cotton balls" msgstr[0] "bolas de algodão" msgstr[1] "bolas de algodão" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -46732,12 +46721,12 @@ msgid_plural "crack" msgstr[0] "crack" msgstr[1] "crack" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "Você fuma suas pedras de crack. Sua mãe ficaria orgulhosa." -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -46752,7 +46741,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "xarope de tosse anti-sono" msgstr[1] "xarope de tosse anti-sono" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -46769,7 +46758,7 @@ msgid_plural "antiseptic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -46792,7 +46781,7 @@ msgid_plural "prescription sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -46807,12 +46796,12 @@ msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -46829,12 +46818,12 @@ msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -46850,12 +46839,12 @@ msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -46869,16 +46858,14 @@ msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -46892,7 +46879,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -46906,7 +46893,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -46920,7 +46907,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -46934,7 +46921,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -46948,7 +46935,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -46963,7 +46950,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -46978,7 +46965,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -46992,7 +46979,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -47006,12 +46993,12 @@ msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -47096,7 +47083,7 @@ msgid_plural "chewing gum" msgstr[0] "goma de mascar" msgstr[1] "goma de mascar" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -47124,13 +47111,13 @@ msgid_plural "heroin" msgstr[0] "heroína" msgstr[1] "heroína" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "Você injeta." -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -47217,7 +47204,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "metanfetamina de baixo grau" msgstr[1] "metanfetamina de baixo grau" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -47234,7 +47221,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -47289,7 +47276,7 @@ msgid_plural "cough syrup" msgstr[0] "xarope para tosse" msgstr[1] "xarope para tosse" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -47324,7 +47311,7 @@ msgid_plural "sleeping pill" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -47374,7 +47361,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "xarope para tosse de papoula" msgstr[1] "xarope para tosse de papoula" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "Xarope de tosse feito de papoula mutada. Vai deixar você com sono." @@ -47385,15 +47372,14 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -47408,7 +47394,7 @@ msgid_plural "antidepressant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -47442,7 +47428,7 @@ msgid_plural "hemostatic powder" msgstr[0] "pó hemostático" msgstr[1] "pó hemostático" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -47472,7 +47458,7 @@ msgid_plural "antipsychotic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -47747,12 +47733,12 @@ msgid_plural "marijuana" msgstr[0] "maconha" msgstr[1] "maconha" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "Você fuma um pouco da erva. É da boa, cara!" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -47769,7 +47755,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -47796,7 +47782,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "bolas de algodão embebidas em antisséptico" msgstr[1] "bolas de algodão embebidas em antisséptico" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -47811,7 +47797,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -47880,7 +47866,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -47895,7 +47881,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -48426,7 +48412,7 @@ msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -48676,9 +48662,8 @@ msgstr[1] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -48745,7 +48730,7 @@ msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -48864,7 +48849,8 @@ msgstr[1] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -49013,7 +48999,7 @@ msgid_plural "pine nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -49024,7 +49010,7 @@ msgid_plural "junipers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -49037,7 +49023,7 @@ msgid_plural "shelled pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -49051,7 +49037,7 @@ msgid_plural "roasted pistachios" msgstr[0] "pistaches tostados" msgstr[1] "pistaches tostados" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -49062,7 +49048,7 @@ msgid_plural "shelled almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -49075,7 +49061,7 @@ msgid_plural "almond pulp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -49087,7 +49073,7 @@ msgid_plural "roasted almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -49099,7 +49085,7 @@ msgid_plural "cashews" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "castanha de caju Um punhado de cajus salgados." @@ -49110,7 +49096,7 @@ msgid_plural "shelled pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -49125,7 +49111,7 @@ msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -49137,7 +49123,7 @@ msgid_plural "shelled peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -49148,7 +49134,7 @@ msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -49159,7 +49145,7 @@ msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -49174,7 +49160,7 @@ msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -49186,7 +49172,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -49201,7 +49187,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -49213,7 +49199,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -49228,7 +49214,7 @@ msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -49239,7 +49225,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -49250,7 +49236,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -49263,7 +49249,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -49278,7 +49264,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -49339,7 +49325,7 @@ msgid_plural "acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -49352,7 +49338,7 @@ msgid_plural "roasted acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "Um punhado de nozes assadas de um carvalho." @@ -49363,7 +49349,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -49379,7 +49365,7 @@ msgid_plural "foie gras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -49391,7 +49377,7 @@ msgid_plural "liver & onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "fígado e cebolaUma maneira clássica de servir fígado." @@ -49448,7 +49434,7 @@ msgid_plural "leverpostej" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -49670,7 +49656,7 @@ msgid_plural "marloss gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -49701,7 +49687,7 @@ msgid_plural "yeast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -49714,7 +49700,7 @@ msgid_plural "bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -49727,7 +49713,7 @@ msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -49739,7 +49725,7 @@ msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -49750,7 +49736,7 @@ msgid_plural "tainted bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -49762,7 +49748,7 @@ msgid_plural "chitin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -49813,7 +49799,7 @@ msgid_plural "dried beans" msgstr[0] "feijões secos" msgstr[1] "feijões secos" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -49828,7 +49814,7 @@ msgid_plural "cooked beans" msgstr[0] "feijões cozidos" msgstr[1] "feijões cozidos" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "beans cozidosUm serviço saudável de grandes grãos cozidos do norte." @@ -49839,8 +49825,8 @@ msgid_plural "tofu" msgstr[0] "tofu" msgstr[1] "tofu" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -49859,7 +49845,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "tofu desidratado" msgstr[1] "tofu desidratado" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -49870,7 +49856,7 @@ msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -49896,7 +49882,7 @@ msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -49908,7 +49894,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -49922,7 +49908,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -49933,7 +49919,7 @@ msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -49944,7 +49930,7 @@ msgid_plural "coffee powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -49960,7 +49946,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -49973,7 +49959,7 @@ msgid_plural "candied honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -50019,7 +50005,7 @@ msgid_plural "cattle fodder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -50034,7 +50020,7 @@ msgid_plural "bird food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -50049,7 +50035,7 @@ msgid_plural "wet dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -50062,7 +50048,7 @@ msgid_plural "dry dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -50075,7 +50061,7 @@ msgid_plural "wet cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -50088,7 +50074,7 @@ msgid_plural "dry cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -50215,7 +50201,7 @@ msgid_plural "instant coffee mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -50254,15 +50240,14 @@ msgid_plural "protein drinks" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -50270,14 +50255,11 @@ msgid_plural "sapient green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -50300,15 +50282,14 @@ msgid_plural "protein powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -50316,7 +50297,7 @@ msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -50347,15 +50328,14 @@ msgid_plural "protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -50378,7 +50358,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -50386,7 +50366,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -50457,7 +50437,7 @@ msgid_plural "blueberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -50470,7 +50450,7 @@ msgid_plural "strawberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" @@ -50483,7 +50463,7 @@ msgid_plural "cranberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "punhado de cranberries. Sour bagas vermelhas. Bom para a sua saúde." @@ -50494,7 +50474,7 @@ msgid_plural "raspberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "punhado de framboesas Uma baga vermelha doce." @@ -50505,7 +50485,7 @@ msgid_plural "huckleberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -50518,7 +50498,7 @@ msgid_plural "mulberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -50534,7 +50514,7 @@ msgid_plural "elderberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -50547,7 +50527,7 @@ msgid_plural "rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "punhado de rosa mosquetaO fruto de uma flor rosa polinizada." @@ -50595,7 +50575,7 @@ msgid_plural "cherries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "" @@ -50620,7 +50600,7 @@ msgid_plural "grapes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "punhado de uvasUm cacho de uvas suculentas." @@ -50687,7 +50667,7 @@ msgid_plural "blackberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "Um punhado de amoras Um primo mais escuro de framboesa." @@ -50745,7 +50725,7 @@ msgid_plural "apricots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "punhado de damascosUm fruto de casca mole, relacionado ao pêssego." @@ -50786,7 +50766,7 @@ msgid_plural "bee balm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -50800,7 +50780,7 @@ msgid_plural "broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "brócolisÉ um pouco difícil, mas bem delicioso." @@ -50811,7 +50791,7 @@ msgid_plural "buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -50838,7 +50818,7 @@ msgid_plural "spinach" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -50892,7 +50872,7 @@ msgid_plural "celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "Nem saborosa nem muito nutritiva, mas vai bem com salada." @@ -50916,7 +50896,7 @@ msgid_plural "corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "caroços de ouro cornDelicious." @@ -50927,7 +50907,7 @@ msgid_plural "empty corn cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -50991,7 +50971,7 @@ msgid_plural "salsify" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -51005,7 +50985,7 @@ msgid_plural "chicory" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -51135,7 +51115,7 @@ msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -51176,7 +51156,7 @@ msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -51189,7 +51169,7 @@ msgid_plural "dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -51204,7 +51184,7 @@ msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -51313,7 +51293,7 @@ msgid_plural "wild vegetables" msgstr[0] "vegetais silvestres" msgstr[1] "vegetais silvestres" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -51350,7 +51330,7 @@ msgid_plural "raw beans" msgstr[0] "feijões crus" msgstr[1] "feijões crus" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -51363,7 +51343,7 @@ msgid_plural "raw lentils" msgstr[0] "lentilhas cruas" msgstr[1] "lentilhas cruas" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -51374,7 +51354,7 @@ msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -51413,8 +51393,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -51430,6 +51409,27 @@ msgstr "" " sanduíche deluxeUm sanduíche de carne, legumes e queijo comcondimentos. " "Saborosa e nutritiva!" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -51493,7 +51493,7 @@ msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -51543,26 +51543,23 @@ msgid_plural "meat sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -51687,7 +51684,7 @@ msgid_plural "mushroom spores" msgstr[0] "esporos de cogumelo" msgstr[1] "esporos de cogumelo" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "Alguns esporos de cogumelo." @@ -51698,7 +51695,7 @@ msgid_plural "hop rhizomes" msgstr[0] "rizoma de lúpulo" msgstr[1] "rizomas de lúpulo" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "Raízes de uma planta de lúpulo, para cultivar a sua própria." @@ -51713,7 +51710,7 @@ msgid_plural "blackberry seeds" msgstr[0] "sementes de amora-preta" msgstr[1] "sementes de amora-preta" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "Algumas sementes de amora-preta." @@ -51728,7 +51725,7 @@ msgid_plural "blueberry seeds" msgstr[0] "sementes de mirtilo" msgstr[1] "sementes de mirtilo" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "Algumas sementes de mirtilo." @@ -51743,7 +51740,7 @@ msgid_plural "cranberry seeds" msgstr[0] "sementes de oxicoco" msgstr[1] "sementes de oxicoco" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "Algumas sementes de oxicoco." @@ -51758,7 +51755,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "semente de huckleberry" msgstr[1] "sementes de huckleberry" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "Algumas sementes de huckleberry." @@ -51773,7 +51770,7 @@ msgid_plural "mulberry seeds" msgstr[0] "semente de amora-silvestre" msgstr[1] "sementes de amora-silvestre" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "Algumas sementes de amoreira." @@ -51788,7 +51785,7 @@ msgid_plural "elderberry seeds" msgstr[0] "sementes de sabugueiro" msgstr[1] "sementes de sabugueiro" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "Algumas sementes de sabugueiro." @@ -51803,7 +51800,7 @@ msgid_plural "raspberry seeds" msgstr[0] "sementes de framboesa" msgstr[1] "sementes de framboesa" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "Algumas sementes de framboesa." @@ -51818,7 +51815,7 @@ msgid_plural "strawberry seeds" msgstr[0] "semente de morango" msgstr[1] "sementes de morango" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "Algumas sementes de morango." @@ -51833,7 +51830,7 @@ msgid_plural "grape seeds" msgstr[0] "semente de uva" msgstr[1] "sementes de uva" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "Algumas sementes de uva." @@ -51848,7 +51845,7 @@ msgid_plural "rose seeds" msgstr[0] "semente de rosa" msgstr[1] "sementes de rosa" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "Algumas sementes de roseira." @@ -51863,7 +51860,7 @@ msgid_plural "tobacco seeds" msgstr[0] "sementes de tabaco" msgstr[1] "sementes de tabaco" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "Algumas sementes de tabaco." @@ -51878,7 +51875,7 @@ msgid_plural "barley seeds" msgstr[0] "sementes de cevada" msgstr[1] "sementes de cevada" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "Algumas sementes de cevada." @@ -51889,7 +51886,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "sementes de beterraba-sacarina" msgstr[1] "sementes de beterraba-sacarina" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "Algumas sementes de beterraba-sacarina." @@ -51900,7 +51897,7 @@ msgid_plural "lettuce seeds" msgstr[0] "sementes de alface" msgstr[1] "sementes de alface" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "Algumas sementes de alface." @@ -51911,7 +51908,7 @@ msgid_plural "cabbage seeds" msgstr[0] "sementes de repolho" msgstr[1] "sementes de repolho" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "Algumas sementes de repolho-liso." @@ -51922,7 +51919,7 @@ msgid_plural "tomato seeds" msgstr[0] "sementes de tomate" msgstr[1] "sementes de tomate" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "Algumas sementes de tomate." @@ -51933,7 +51930,7 @@ msgid_plural "cotton seeds" msgstr[0] " sementes de algodão" msgstr[1] " sementes de algodão" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -51950,7 +51947,7 @@ msgid_plural "broccoli seeds" msgstr[0] "sementes de brócolis" msgstr[1] "sementes de brócolis" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "Algumas sementes de brócolis." @@ -51961,7 +51958,7 @@ msgid_plural "zucchini seeds" msgstr[0] "sementes de abobrinha" msgstr[1] "sementes de abobrinha" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "Algumas sementes de abobrinha." @@ -51972,7 +51969,7 @@ msgid_plural "onion seeds" msgstr[0] "sementes de cebola" msgstr[1] "sementes de cebola" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "Algumas sementes de cebola." @@ -51983,7 +51980,7 @@ msgid_plural "garlic seeds" msgstr[0] "sementes de alho" msgstr[1] "sementes de alho" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "Algumas sementes de alho." @@ -51998,7 +51995,7 @@ msgid_plural "cattail seeds" msgstr[0] "sementes de taboa" msgstr[1] "sementes de taboa" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "Algumas sementes de taboa." @@ -52013,7 +52010,7 @@ msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -52028,7 +52025,7 @@ msgid_plural "salsify seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -52039,7 +52036,7 @@ msgid_plural "chicory seeds" msgstr[0] "sementes de chicória" msgstr[1] "sementes de chicória" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "Algumas sementes de chicória." @@ -52050,7 +52047,7 @@ msgid_plural "wild root seeds" msgstr[0] "sementes de raiz silvestre" msgstr[1] "sementes de raiz silvestre" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "Algumas sementes de uma flor branca." @@ -52061,7 +52058,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "sementes de planta decorativa" msgstr[1] "sementes de planta decorativa" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -52081,7 +52078,7 @@ msgid_plural "cactus seeds" msgstr[0] "sementes de cacto" msgstr[1] "sementes de cacto" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "Algumas sementes de cacto." @@ -52107,7 +52104,7 @@ msgid_plural "carrot seeds" msgstr[0] "sementes de cenoura" msgstr[1] "sementes de cenoura" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "Algumas sementes de cenoura." @@ -52118,7 +52115,7 @@ msgid_plural "corn seeds" msgstr[0] "sementes de milho" msgstr[1] "sementes de milho" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "Algumas sementes de milho." @@ -52133,7 +52130,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "sementes de pimenta" msgstr[1] "sementes de pimenta" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "Algumas sementes de pimenta." @@ -52144,7 +52141,7 @@ msgid_plural "cucumber seeds" msgstr[0] "sementes de pepino" msgstr[1] "sementes de pepino" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "Algumas sementes de pepino." @@ -52171,7 +52168,7 @@ msgid_plural "cannabis seeds" msgstr[0] "sementes de cannabis" msgstr[1] "sementes de cannabis" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -52207,7 +52204,7 @@ msgid_plural "bean seeds" msgstr[0] "sementes de feijão" msgstr[1] "sementes de feijão" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "Feijões crus, prontos para o plantio." @@ -52222,7 +52219,7 @@ msgid_plural "soybean seeds" msgstr[0] "sementes de soja" msgstr[1] "sementes de soja" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "Algumas sementes de soja." @@ -52231,7 +52228,7 @@ msgstr "Algumas sementes de soja." msgid "soybean" msgstr "soja" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "Lentilhas cruas, prontas para o plantio." @@ -52246,7 +52243,7 @@ msgid_plural "thyme seeds" msgstr[0] "sementes de tomilho" msgstr[1] "sementes de tomilho" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "Algumas sementes de tomilho." @@ -52263,7 +52260,7 @@ msgid_plural "canola seeds" msgstr[0] "sementes de canola" msgstr[1] "sementes de canola" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "Algumas sementes de canola. Você poderia prensá-las para obter óleo." @@ -52274,7 +52271,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "sementes de abóbora" msgstr[1] "sementes de abóbora" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "Algumas sementes cruas de abóbora. Poderiam ser torradas e comidas." @@ -52285,7 +52282,7 @@ msgid_plural "sunflower seeds" msgstr[0] "sementes de girassol" msgstr[1] "sementes de girassol" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -52305,7 +52302,7 @@ msgid_plural "dogbane seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -52316,7 +52313,7 @@ msgid_plural "bee balm seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -52327,7 +52324,7 @@ msgid_plural "mugwort seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -52338,7 +52335,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -52349,7 +52346,7 @@ msgid_plural "wild herb seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -52364,7 +52361,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "caules de vegetal silvestre" msgstr[1] "caules de vegetal silvestre" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "Alguns caules de vegetais silvestres." @@ -52379,7 +52376,7 @@ msgid_plural "dandelion seeds" msgstr[0] "sementes de dente de leão" msgstr[1] "sementes de dente de leão" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "Algumas sementes de dente de leão." @@ -52394,7 +52391,7 @@ msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -52409,7 +52406,7 @@ msgid_plural "rhubarb stems" msgstr[0] "caules de ruibarbo" msgstr[1] "caules de ruibarbo" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "Alguns caules de ruibarbo." @@ -52420,7 +52417,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -52431,7 +52428,7 @@ msgid_plural "datura seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -52449,7 +52446,7 @@ msgid_plural "celery seeds" msgstr[0] "sementes de aipo" msgstr[1] "sementes de aipo" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "Algumas sementes de aipo." @@ -52460,7 +52457,7 @@ msgid_plural "oat seeds" msgstr[0] "sementes de aveia" msgstr[1] "sementes de aveia" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "Algumas sementes de aveia." @@ -52477,7 +52474,7 @@ msgid_plural "wheat seeds" msgstr[0] "sementes de trigo" msgstr[1] "sementes de trigo" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "Algumas sementes de trigo." @@ -52494,7 +52491,7 @@ msgid_plural "fried seeds" msgstr[0] "sementes fritas" msgstr[1] "sementes fritas" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -52525,7 +52522,7 @@ msgid_plural "coffee beans" msgstr[0] "grãos de café" msgstr[1] "grãos de café" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "Alguns grãos de café. Podem ser torrados." @@ -52536,7 +52533,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "grãos de café torrados" msgstr[1] "grãos de café torrados" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "Alguns grãos de café torrados, podem ser moídos em pó." @@ -52547,7 +52544,7 @@ msgid_plural "chamomile seeds" msgstr[0] "sementes de camomila" msgstr[1] "sementes de camomila" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "Algumas sementes de camomila." @@ -52562,7 +52559,7 @@ msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -52577,7 +52574,7 @@ msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -52588,7 +52585,7 @@ msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -52599,7 +52596,7 @@ msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -52610,7 +52607,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -52632,8 +52629,7 @@ msgid_plural "bone broths" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -52663,15 +52659,14 @@ msgid_plural "meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -52711,8 +52706,7 @@ msgid_plural "curries with meat" msgstr[0] "curry com carne" msgstr[1] "curry com carne" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -52730,10 +52724,8 @@ msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -52797,7 +52789,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "canja com massa" msgstr[1] "canja com massa" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "Uma sopa com pedaços de frango e bolas de massa. Nada mal." @@ -52823,7 +52815,7 @@ msgid_plural "chili powder" msgstr[0] "pimenta em pó" msgstr[1] "pimenta em pó" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -52838,7 +52830,7 @@ msgid_plural "hot sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -52851,7 +52843,7 @@ msgid_plural "cinnamon" msgstr[0] "canela em pó" msgstr[1] "canela em pó" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "Casca de canela em pó com um aroma doce mas ligeiramente picante." @@ -52862,7 +52854,7 @@ msgid_plural "curry powder" msgstr[0] "pó de caril" msgstr[1] "pó de caril" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -52877,7 +52869,7 @@ msgid_plural "black pepper" msgstr[0] "pimenta preta" msgstr[1] "pimenta preta" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "Grãos moídos de pimenta preta com um aroma forte." @@ -52888,7 +52880,7 @@ msgid_plural "salt" msgstr[0] "sal" msgstr[1] "sal" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -52903,7 +52895,7 @@ msgid_plural "Italian seasoning" msgstr[0] "tempero italiano" msgstr[1] "tempero italiano" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -52916,7 +52908,7 @@ msgid_plural "seasoned salt" msgstr[0] "sal temperado" msgstr[1] "sal temperado" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -52929,7 +52921,7 @@ msgid_plural "sugar" msgstr[0] "açúcar" msgstr[1] "açúcar" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -52944,7 +52936,7 @@ msgid_plural "sprinkles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -52959,7 +52951,7 @@ msgid_plural "wild herbs" msgstr[0] "ervas silvestres" msgstr[1] "ervas silvestres" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -52972,7 +52964,7 @@ msgid_plural "soy sauce" msgstr[0] "molho de soja" msgstr[1] "molho de soja" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "Molho salgado e fermentado de soja." @@ -52988,7 +52980,7 @@ msgid_plural "mustard powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -53040,7 +53032,7 @@ msgid_plural "starch" msgstr[0] "amido" msgstr[1] "amido" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -53055,7 +53047,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "folhas de dente-de-leão cozidas" msgstr[1] "folhas de dente-de-leão cozidas" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "Folhas cozidas de dente-de-leão selvagem. Saborosas e nutritivas." @@ -53066,7 +53058,7 @@ msgid_plural "fried dandelions" msgstr[0] "dentes-de-leão frito" msgstr[1] "dentes-de-leão frito" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -53078,7 +53070,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -53089,7 +53081,7 @@ msgid_plural "fried burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -53126,7 +53118,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "vegetais silvestres cozidos" msgstr[1] "vegetais silvestres cozidos" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -53152,7 +53144,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "trigo sarraceno cozido" msgstr[1] "trigo sarraceno cozido" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -53166,7 +53158,7 @@ msgid_plural "canned corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "Milho enlatado na água. Coma!" @@ -53177,7 +53169,7 @@ msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -53188,7 +53180,7 @@ msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -53199,7 +53191,7 @@ msgid_plural "hominy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -53212,7 +53204,7 @@ msgid_plural "cornmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "Este fubá amarelo é útil para assar." @@ -53223,7 +53215,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "feijões cozidos vegetarianos" msgstr[1] "feijões cozidos vegetarianos" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "Feijões cozidos lentamente com vegetais. Saboroso e muito nutritivo." @@ -53234,7 +53226,7 @@ msgid_plural "dried rice" msgstr[0] "arroz seco" msgstr[1] "arroz seco" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -53249,7 +53241,7 @@ msgid_plural "cooked rice" msgstr[0] "arroz cozido" msgstr[1] "arroz cozido" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "Uma porção saudável de arroz branco cozido." @@ -53260,7 +53252,7 @@ msgid_plural "fried rice" msgstr[0] "arroz frito" msgstr[1] "arroz frito" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "Um delicioso arroz frito com legumes. Saboroso e muito satisfatório." @@ -53271,7 +53263,7 @@ msgid_plural "beans and rice" msgstr[0] "feijão com arroz" msgstr[1] "feijão com arroz" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -53285,7 +53277,7 @@ msgid_plural "tofu fried rice" msgstr[0] "arroz e tofu fritos" msgstr[1] "arroz e tofu fritos" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -53297,7 +53289,7 @@ msgid_plural "tofu stirfry" msgstr[0] "stir fry de tofu" msgstr[1] "stir fries de tofu" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -53312,7 +53304,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "feijões e arroz vegetariano de primeira" msgstr[1] "feijões e arroz vegetarianos de primeira" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -53389,7 +53381,7 @@ msgid_plural "pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "Azeite, manjericão, alho, pinhões. Simples e delicioso." @@ -53430,7 +53422,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "espaguete al pesto" msgstr[1] "espaguete al pesto" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "Espaguete, com uma porção generosa de pesto no topo. Eba!" @@ -53454,7 +53446,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "chucrute com cebolas sauté" msgstr[1] "chucrute com cebolas sauté" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -53498,7 +53490,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -53524,7 +53516,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -53607,7 +53599,7 @@ msgid_plural "sushi rice" msgstr[0] "arroz de sushi" msgstr[1] "arroz de sushi" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "Uma porção de arroz pegajoso no vinagre, comumente usado em sushi." @@ -53618,7 +53610,7 @@ msgid_plural "onigiri" msgstr[0] "onigiri" msgstr[1] "onigiri" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -53633,7 +53625,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "hosomaki vegetal" msgstr[1] "hosomaki vegetal" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -53661,7 +53653,7 @@ msgid_plural "sauerkraut" msgstr[0] "chucrute" msgstr[1] "chucrute" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -53688,7 +53680,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -53699,7 +53691,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -53719,7 +53711,7 @@ msgstr "" "Um pimentão cozido com o miolo removido. É muito mais apreciável agora que " "as sementes foram removidas." -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "Trigo cru, não muito saboroso." @@ -53730,7 +53722,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "espaguete cru" msgstr[1] "espaguete cru" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -53743,7 +53735,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -53756,7 +53748,7 @@ msgid_plural "boiled noodles" msgstr[0] "macarrão fervido" msgstr[1] "macarrão fervido" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "Macarrão cozido, ainda molhado. Bastante brando, mas te enche." @@ -53767,7 +53759,7 @@ msgid_plural "raw macaroni" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -53780,7 +53772,7 @@ msgid_plural "mac & cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "Quando o queijo começa a fluir, a Kraft prepara seu macarrão." @@ -53791,7 +53783,7 @@ msgid_plural "flour" msgstr[0] "farinha" msgstr[1] "farinha" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "Esta farinha branca enriquecida é útil para receitas de panificação." @@ -53802,7 +53794,7 @@ msgid_plural "bread flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -53815,7 +53807,7 @@ msgid_plural "oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " @@ -53824,7 +53816,7 @@ msgstr "" "Flocos secos de grãos achatados. Saborosa e nutritiva quando cozida, também " "serve como alimento para cavalos quando seca." -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "Aveia crua." @@ -53835,7 +53827,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -53850,7 +53842,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -53945,7 +53937,7 @@ msgid_plural "oyster crackers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -53980,7 +53972,7 @@ msgid_plural "granola" msgstr[0] "granola" msgstr[1] "granola" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -54006,7 +53998,7 @@ msgid_plural "fast noodles" msgstr[0] "miojo" msgstr[1] "miojo" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "O chamado \"macarrão instantâneo\". Pode ser comido cru." @@ -54203,7 +54195,7 @@ msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -54214,7 +54206,7 @@ msgid_plural "melon seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -54225,7 +54217,7 @@ msgid_plural "banana saplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -54236,7 +54228,7 @@ msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -54247,7 +54239,7 @@ msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -54258,7 +54250,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -54307,7 +54299,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -54353,7 +54345,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -54366,7 +54358,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -54407,7 +54399,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -54517,7 +54509,7 @@ msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -54531,7 +54523,7 @@ msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -54621,7 +54613,7 @@ msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -54635,7 +54627,7 @@ msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -54649,7 +54641,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -54661,7 +54653,7 @@ msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -54674,7 +54666,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -54729,7 +54721,7 @@ msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -54745,7 +54737,7 @@ msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -54759,7 +54751,7 @@ msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -54773,7 +54765,7 @@ msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -54834,7 +54826,7 @@ msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -54848,7 +54840,7 @@ msgid_plural "food cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -54860,7 +54852,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -54884,7 +54876,7 @@ msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -54910,7 +54902,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -54924,7 +54916,7 @@ msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -54940,7 +54932,7 @@ msgid_plural "caffex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -54981,7 +54973,7 @@ msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -55043,7 +55035,7 @@ msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -55064,7 +55056,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -55347,8 +55339,8 @@ msgstr[0] "" msgstr[1] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" @@ -55358,6 +55350,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -55400,6 +55404,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -55520,6 +55530,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -55556,24 +55572,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "" msgstr[1] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -55872,7 +55870,7 @@ msgid_plural "dragon meat" msgstr[0] "carne de dragão" msgstr[1] "carnes de dragão" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -55938,7 +55936,7 @@ msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -55998,14 +55996,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -56088,7 +56086,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -56097,7 +56095,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -56109,7 +56107,7 @@ msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -56120,7 +56118,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -56133,7 +56131,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -56152,7 +56150,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -56166,7 +56164,7 @@ msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -56789,7 +56787,7 @@ msgid_plural "rock salt" msgstr[0] "sal de rocha" msgstr[1] "sal de rocha" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -56801,7 +56799,7 @@ msgid_plural "rhodonite" msgstr[0] "rodonita" msgstr[1] "rodonita" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -56814,7 +56812,7 @@ msgid_plural "zincite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -56851,7 +56849,7 @@ msgid_plural "hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -56864,7 +56862,7 @@ msgid_plural "pecans" msgstr[0] "pecãs" msgstr[1] "pecãs" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "Um punhado de nozes duras de uma nogueira-pecã, ainda em sua casca." @@ -56875,7 +56873,7 @@ msgid_plural "pistachios" msgstr[0] "pistaches" msgstr[1] "pistaches" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -56887,7 +56885,7 @@ msgid_plural "almonds" msgstr[0] "amêndoas" msgstr[1] "amêndoas" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "Um punhado de nozes duras de uma amendoeira, ainda dentro da casca." @@ -56898,7 +56896,7 @@ msgid_plural "peanuts" msgstr[0] "amendoins" msgstr[1] "amendoins" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -56910,7 +56908,7 @@ msgid_plural "hazelnuts" msgstr[0] "avelãs" msgstr[1] "avelãs" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "Um punhado de nozes duras de uma aveleira, ainda em sua casca." @@ -56921,7 +56919,7 @@ msgid_plural "chestnuts" msgstr[0] "castanhas" msgstr[1] "castanhas" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "Um punhado de nozes duras de uma castanheira, ainda em sua casca." @@ -56932,7 +56930,7 @@ msgid_plural "walnuts" msgstr[0] "nozes" msgstr[1] "nozes" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "Um punhado de nozes duras de uma nogueira, ainda em sua casca." @@ -57230,6 +57228,18 @@ msgstr "" " packSURGEON GENERAL'S AVISO: Fumar causa câncer de pulmão, " "doençacardíaca, enfisema e pode complicar a gravidez." +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -57243,6 +57253,19 @@ msgstr "" " caixa de papelãoUma pequena caixa de papelão. Não maior que um " "péemdimensão." +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -58083,7 +58106,7 @@ msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -58094,7 +58117,7 @@ msgid_plural "smoldering embers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -58327,6 +58350,29 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -58540,7 +58586,7 @@ msgid_plural "superglue" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Um tubo de cola forte. Usado em muitas receitas de artesanato." @@ -58847,7 +58893,7 @@ msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -59002,7 +59048,7 @@ msgid_plural "concrete" msgstr[0] "concreto" msgstr[1] "concreto" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "Um pouco de concreto, pronto para ser usado em alguma construção." @@ -59924,7 +59970,7 @@ msgid_plural "clockworks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -60070,7 +60116,7 @@ msgid_plural "chamomile flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -60096,7 +60142,7 @@ msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -60132,7 +60178,7 @@ msgid_plural "mortar" msgstr[0] "argamassa" msgstr[1] "argamassa" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "Argamassa, pronta para ser usada em projetos de construção." @@ -60179,7 +60225,7 @@ msgid_plural "adobe mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -60192,7 +60238,7 @@ msgid_plural "tanbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "Uma folha de casca de árvore rica em tanino, útil para curtir couro." @@ -60216,7 +60262,7 @@ msgid_plural "willowbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -60670,7 +60716,7 @@ msgid_plural "raw tobacco" msgstr[0] "tabaco cru" msgstr[1] "tabaco cru" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -61000,7 +61046,7 @@ msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -61023,7 +61069,7 @@ msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -61402,6 +61448,98 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -62215,7 +62353,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -62352,7 +62490,7 @@ msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -62365,7 +62503,7 @@ msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -62395,7 +62533,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62411,7 +62549,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62427,7 +62565,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62443,7 +62581,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62459,7 +62597,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62475,7 +62613,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62491,7 +62629,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62507,7 +62645,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62523,7 +62661,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62539,7 +62677,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62555,7 +62693,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62571,7 +62709,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62587,7 +62725,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62603,7 +62741,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "dados de instalação para MBC de Espingarda de Braço" msgstr[1] "dados de instalação para MBC de Espingarda de Braço" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62624,7 +62762,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62640,8 +62778,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62657,7 +62794,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62673,7 +62810,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62689,7 +62826,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62705,7 +62842,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62721,7 +62858,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62737,8 +62874,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -62760,7 +62896,7 @@ msgid_plural "misc software" msgstr[0] "software sortido" msgstr[1] "softwares sortidos" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -62773,7 +62909,7 @@ msgid_plural "hackPRO" msgstr[0] "hackPRO" msgstr[1] "hackPRO" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "hackPROA pedaço de software de hackers." @@ -62784,7 +62920,7 @@ msgid_plural "MediSoft" msgstr[0] "MediSoft" msgstr[1] "MediSoft" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "MediSoftUma peça de software médico." @@ -62795,7 +62931,7 @@ msgid_plural "MatheMAX" msgstr[0] "MateMAX" msgstr[1] "MateMAX" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "Um programa de computador para operações matemáticas." @@ -62806,7 +62942,7 @@ msgid_plural "infection data" msgstr[0] "dados sobre infecção" msgstr[1] "dados sobre infecção" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "Dados médicos sobre sangue zumbi." @@ -62817,7 +62953,7 @@ msgid_plural "lab data" msgstr[0] "dados de laboratório" msgstr[1] "dados de laboratório" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "Arquivos de pesquisa de um laboratório do governo." @@ -62828,7 +62964,7 @@ msgid_plural "train data" msgstr[0] "dados ferroviários" msgstr[1] "dados ferroviários" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "Dados logísticos sobre rotas e horários dos trens subterrâneos." @@ -62839,7 +62975,7 @@ msgid_plural "neural data" msgstr[0] "dados neurais" msgstr[1] "dados neurais" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -63156,22 +63292,34 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "corpo" msgstr[1] "corpos" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "carcaça" msgstr[1] "carcaças" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -63179,7 +63327,7 @@ msgid_plural "skinned %s" msgstr[0] "%s esfolado" msgstr[1] "%s esfolado" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -63418,7 +63566,7 @@ msgid_plural "trifacet remains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -63759,6 +63907,100 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -65551,7 +65793,7 @@ msgid_plural "headphones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -65631,7 +65873,7 @@ msgid_plural "spare parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -66272,7 +66514,7 @@ msgid_plural "bokken" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -66283,7 +66525,7 @@ msgstr "" "elaborada para imitar o peso e o equilíbrio da coisa real. Apesar dafaltade " "uma ponta afiada de metal, ainda é capaz de infligir ferimentosmortais." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " @@ -66292,7 +66534,7 @@ msgstr "" " Esta é uma katana de 'madeira' de madeira sólida, mas " "parecelevedemais para fazer uma arma eficaz." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -66903,7 +67145,7 @@ msgid_plural "bionic claws" msgstr[0] "garras biônicas" msgstr[1] "garras biônicas" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -67135,7 +67377,7 @@ msgid_plural "qiang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -67185,7 +67427,7 @@ msgid_plural "naginata" msgstr[0] "naginata" msgstr[1] "naginata" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -67196,7 +67438,7 @@ msgstr "" "mesmamaneiraque a katana e outras lâminas japonesas. Ocasionalmente usado " "porsamuraisem períodos precoces, ou por suas esposas em defesa do lar." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -67204,7 +67446,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -67218,7 +67460,7 @@ msgid_plural "survivor naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -67351,7 +67593,7 @@ msgid_plural "ji" msgstr[0] "ji" msgstr[1] "ji" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -67429,6 +67671,20 @@ msgstr "" "umalâminasob uma espada de madeira. O peso adicionado é desbalanceado, mas " "alâminadenteada dá um bom poder de corte." +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -67436,7 +67692,7 @@ msgid_plural "jian" msgstr[0] "jian" msgstr[1] "jian" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -67523,14 +67779,14 @@ msgid_plural "tanto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -67544,14 +67800,14 @@ msgid_plural "nodachi" msgstr[0] "nodachi" msgstr[1] "nodachi" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -67695,7 +67951,7 @@ msgid_plural "katana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -67763,7 +68019,7 @@ msgid_plural "wakizashi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -67835,7 +68091,7 @@ msgid_plural "tiger claws" msgstr[0] "garra de tigre" msgstr[1] "garras de tigre" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -68086,13 +68342,27 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -68108,7 +68378,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -68152,7 +68422,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -68448,7 +68718,7 @@ msgid_plural "scrap copper" msgstr[0] "sucata de cobre" msgstr[1] "sucata de cobre" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -68722,7 +68992,7 @@ msgid_plural "splintered wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -68950,17 +69220,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "Você abre o frasco e colhe a cultura." -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "O fermento não é feito ainda em cultura." -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -70223,7 +70493,7 @@ msgid_plural "oars" msgstr[0] "remos" msgstr[1] "remos" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "Caso contrário, para um barco." @@ -70245,7 +70515,7 @@ msgid_plural "inflatable section" msgstr[0] "seção inflável" msgstr[1] "seções infláveis" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "seção inflávelUma seção inflável do barco." @@ -70256,7 +70526,7 @@ msgid_plural "inflatable airbag" msgstr[0] "airbag inflável" msgstr[1] "airbags infláveis" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "airbag inflávelUma bolsa a ar inflável." @@ -71226,7 +71496,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -71244,7 +71514,7 @@ msgid_plural "sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "folha de metalUma folha fina de metal." @@ -71255,7 +71525,7 @@ msgid_plural "wired sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -71277,7 +71547,7 @@ msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "chapeamento de açoUma peça de blindagem feita de aço." @@ -71288,7 +71558,7 @@ msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -71312,7 +71582,7 @@ msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -71574,6 +71844,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " @@ -71582,6 +71853,12 @@ msgstr "" " painel solarDispositivo eletrônico que pode converter radiação " "solaremenergia elétrica. Útil para um veículo." +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -71727,6 +72004,17 @@ msgstr[1] "aquecedores de veículo" msgid "A vehicle-mounted area heater." msgstr "Um aquecedor para instalar em veículos." +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -72171,7 +72459,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -72230,7 +72518,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -72530,7 +72818,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -72543,7 +72831,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -72670,7 +72958,7 @@ msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -72681,7 +72969,7 @@ msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -72878,7 +73166,7 @@ msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72891,7 +73179,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72904,7 +73192,7 @@ msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72917,7 +73205,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72930,7 +73218,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72943,7 +73231,7 @@ msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -72956,7 +73244,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72969,7 +73257,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72982,7 +73270,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72995,7 +73283,7 @@ msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73008,7 +73296,7 @@ msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73021,7 +73309,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -73134,7 +73422,7 @@ msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -73160,7 +73448,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -73173,7 +73461,7 @@ msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -73199,7 +73487,7 @@ msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -73232,7 +73520,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -73579,7 +73867,7 @@ msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -74302,7 +74590,7 @@ msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -75753,7 +76041,7 @@ msgid_plural "subzero talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -75967,7 +76255,7 @@ msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -76088,7 +76376,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -76101,7 +76389,7 @@ msgid_plural "Beagle chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -76927,6 +77215,17 @@ msgid "" msgstr "" " Remove todos os monstros do jogo, exceto aqueles na categoria WILDLIFE." +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -77073,8 +77372,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -77434,6 +77733,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "um chk!" @@ -77846,7 +78150,7 @@ msgid_plural "tiny fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -77857,7 +78161,7 @@ msgid_plural "small fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -77868,7 +78172,7 @@ msgid_plural "medium fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -77879,7 +78183,7 @@ msgid_plural "large fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -77890,7 +78194,7 @@ msgid_plural "huge fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -78026,7 +78330,7 @@ msgid_plural "whitefish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -78041,7 +78345,7 @@ msgid_plural "largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -78054,7 +78358,7 @@ msgid_plural "smallmouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -78067,7 +78371,7 @@ msgid_plural "striped bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -78082,7 +78386,7 @@ msgid_plural "white bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -78119,7 +78423,7 @@ msgid_plural "sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -78130,7 +78434,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -78155,7 +78459,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -78166,7 +78470,7 @@ msgid_plural "green sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -78177,7 +78481,7 @@ msgid_plural "longear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -78188,7 +78492,7 @@ msgid_plural "redear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -78199,7 +78503,7 @@ msgid_plural "rock bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -78212,7 +78516,7 @@ msgid_plural "calico bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -78247,7 +78551,7 @@ msgid_plural "channel catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -78258,7 +78562,7 @@ msgid_plural "white catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -78355,7 +78659,7 @@ msgid_plural "fallfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -78382,7 +78686,7 @@ msgid_plural "crayfish" msgstr[0] "lagostim" msgstr[1] "lagostins" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -78416,7 +78720,7 @@ msgstr "" "queasrepresas fossem construídas. Acho que eles terão uma segunda " "chanceagoraque não estão correndo." -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -78429,7 +78733,7 @@ msgid_plural "giant crayfish" msgstr[0] "lagostim gigante" msgstr[1] "lagostins gigantes" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -78444,7 +78748,7 @@ msgid_plural "colossal crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -79148,7 +79452,7 @@ msgid_plural "fused dragonflies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -79343,7 +79647,7 @@ msgstr[1] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -81072,7 +81376,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -81287,7 +81591,7 @@ msgid_plural "moose" msgstr[0] "alce" msgstr[1] "alces" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -81461,7 +81765,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -81767,10 +82071,11 @@ msgstr[1] "monstros de debug" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -81781,6 +82086,17 @@ msgstr "%s derrete." msgid "This monster exists only for testing purposes." msgstr "Este monstro existe apenas para fins de teste." +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -84154,7 +84470,7 @@ msgid_plural "sawbones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -84169,7 +84485,7 @@ msgid_plural "doctor burns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -84347,7 +84663,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -84475,17 +84791,18 @@ msgstr[1] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -84960,7 +85277,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -85004,7 +85321,7 @@ msgid_plural "scissorlimbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -85018,7 +85335,7 @@ msgid_plural "hanging innards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -85520,7 +85837,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "Shia LaBeouf" msgstr[1] "Shia LaBeouf" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -87424,7 +87741,7 @@ msgid_plural "wisp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -87968,7 +88285,7 @@ msgid_plural "coelophysis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -87981,7 +88298,7 @@ msgid_plural "dilophosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -87994,7 +88311,7 @@ msgid_plural "ceratosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -88008,7 +88325,7 @@ msgid_plural "spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -88022,7 +88339,7 @@ msgid_plural "allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -88037,7 +88354,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -88051,20 +88368,33 @@ msgid_plural "siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -88077,7 +88407,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -88090,7 +88420,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -88103,7 +88433,7 @@ msgid_plural "compsognathus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -88116,7 +88446,7 @@ msgid_plural "gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -88146,7 +88476,7 @@ msgid_plural "nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -88159,7 +88489,7 @@ msgid_plural "deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -88202,7 +88532,7 @@ msgid_plural "amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -88215,7 +88545,7 @@ msgid_plural "apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -88228,7 +88558,7 @@ msgid_plural "brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -88241,7 +88571,7 @@ msgid_plural "diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -88252,7 +88582,7 @@ msgid_plural "camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -88265,7 +88595,7 @@ msgid_plural "brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -88278,7 +88608,7 @@ msgid_plural "alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -88291,7 +88621,7 @@ msgid_plural "scutellosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -88304,7 +88634,7 @@ msgid_plural "stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -88316,7 +88646,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -88329,7 +88659,7 @@ msgid_plural "ankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -88342,7 +88672,7 @@ msgid_plural "nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -88354,7 +88684,7 @@ msgid_plural "edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -88367,7 +88697,7 @@ msgid_plural "camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -88380,7 +88710,7 @@ msgid_plural "parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -88391,7 +88721,7 @@ msgid_plural "maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -88404,7 +88734,7 @@ msgid_plural "corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -88417,7 +88747,7 @@ msgid_plural "edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -88428,7 +88758,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -88441,7 +88771,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -88454,7 +88784,7 @@ msgid_plural "pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -88467,7 +88797,7 @@ msgid_plural "kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -88481,7 +88811,7 @@ msgid_plural "torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -88494,7 +88824,7 @@ msgid_plural "triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -88509,7 +88839,7 @@ msgid_plural "dimorphodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -88522,7 +88852,7 @@ msgid_plural "pteranodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -88535,7 +88865,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -88548,7 +88878,7 @@ msgid_plural "mosasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -88561,7 +88891,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -88574,7 +88904,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -88587,7 +88917,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -88600,7 +88930,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -88613,7 +88943,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -88626,7 +88956,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -88639,7 +88969,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -88742,6 +89072,20 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -89255,20 +89599,20 @@ msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" @@ -89328,7 +89672,6 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -89349,25 +89692,88 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -89590,6 +89996,19 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -89700,7 +90119,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -90160,6 +90579,7 @@ msgstr[1] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -90209,6 +90629,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "" msgstr[1] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -90613,6 +91039,19 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -90645,7 +91084,7 @@ msgid_plural "Rage Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -90658,7 +91097,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -90672,7 +91111,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -90730,7 +91169,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -90793,7 +91232,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -91037,12 +91476,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -91051,66 +91503,67 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -91118,12 +91571,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -91132,12 +91585,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -91146,16 +91599,16 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -91185,7 +91638,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -91198,7 +91651,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -91211,7 +91665,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -91224,20 +91678,26 @@ msgid_plural "skeletal siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -91250,7 +91710,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -91276,7 +91736,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -91288,7 +91748,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -91301,8 +91761,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -91321,7 +91781,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -91335,7 +91795,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -91348,7 +91808,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -91361,7 +91821,7 @@ msgid_plural "armored diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -91374,7 +91834,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -91387,7 +91847,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -91400,7 +91860,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -91413,7 +91873,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -91426,7 +91886,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -91440,7 +91900,7 @@ msgid_plural "Bone Fortress" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -91454,7 +91914,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -91467,7 +91927,7 @@ msgid_plural "armored edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -91480,7 +91940,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -91493,7 +91953,7 @@ msgid_plural "armored maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -91506,7 +91966,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -91519,7 +91979,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -91532,7 +91992,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -91545,7 +92005,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -91558,7 +92018,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -91571,7 +92031,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -91584,7 +92044,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -91597,7 +92057,7 @@ msgid_plural "armored torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -91610,7 +92070,7 @@ msgid_plural "armored triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -91623,7 +92083,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -91637,7 +92097,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -91651,7 +92111,7 @@ msgid_plural "Goliath Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -91664,7 +92124,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -91677,7 +92137,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -91718,7 +92178,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -91734,7 +92194,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -92047,7 +92507,7 @@ msgid_plural "forge hounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -92353,7 +92813,7 @@ msgid_plural "hunllef rams" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -92486,6 +92946,22 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -92763,7 +93239,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -93064,7 +93540,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -98141,7 +98617,7 @@ msgstr[1] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -98185,7 +98661,7 @@ msgstr "capacete de mineração (ligado) Desligue" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -99200,7 +99676,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -99880,17 +100356,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "earmuffs do atiradorVocê vira os protetores de ouvido." -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "As baterias do protetor de ouvido estão mortas." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -99899,7 +100375,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -100131,7 +100607,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -100145,6 +100620,14 @@ msgid_plural "military flight helmets (on)" msgstr[0] "" msgstr[1] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -100505,7 +100988,7 @@ msgid_plural "bagpipes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -101149,7 +101632,7 @@ msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -101224,7 +101707,7 @@ msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -101977,7 +102460,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -103879,7 +104362,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -103891,7 +104374,7 @@ msgstr "" "principaisarmas dofolclore, ao lado do sabre dao, da lança do qiang e do " "cajado daarma." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -103995,7 +104478,7 @@ msgid_plural "dao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -104054,7 +104537,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -104065,7 +104548,7 @@ msgstr "" "reservadosamurai, antes do advento do wakizashi maior. Ainda é uma " "lâminamortal, mesmo que seja menor do que seus parentes mais famosos." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -104102,7 +104585,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -104199,7 +104682,7 @@ msgstr "" "aarmapreferida dos cavalheiros e fanfarrões. Leve e rápido, " "tornaqualquerbatalha uma batalha elegante." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " @@ -104208,7 +104691,7 @@ msgstr "" " Esta é uma espada rara do Japão. Mortal contra alvos não blindados " "eaindamuito eficaz contra armaduras." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -104226,7 +104709,7 @@ msgstr "" " Esta é uma enorme espada de duas mãos da Alemanha. Você não tem " "certezadeque deveria ser tão flexível." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -104397,7 +104880,7 @@ msgid_plural "synthetic fabric" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -105235,7 +105718,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -107764,13 +108247,9 @@ msgstr "As baterias da lanterna pesada estão mortas." #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" -" Esta é uma lanterna LED de alumínio tubular para serviço pesado, " -"comofrequentemente usada por guardas de segurança. Faz uma arma corpo a " -"corpopassável. Usando esta lanterna irá ligá-lo e fornecer luz, assumindo " -"queele está carregado com baterias." #: lang/json/TOOL_from_json.py msgid "heavy duty flashlight (on)" @@ -108518,6 +108997,39 @@ msgstr[1] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -109275,7 +109787,7 @@ msgid_plural "shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -109286,7 +109798,7 @@ msgid_plural "electric shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -109333,6 +109845,32 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -109924,7 +110462,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -109938,7 +110476,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -110449,8 +110987,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -110458,8 +110996,8 @@ msgid_plural "%s (happy)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -110467,8 +111005,8 @@ msgid_plural "%s (focus)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -110476,8 +111014,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -110485,7 +111023,7 @@ msgid_plural "%s (wake up)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -110970,7 +111508,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "partes de roupa de retalho de algodão" msgstr[1] "partes de roupa de retalho de algodão" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -111226,13 +111764,13 @@ msgid_plural "loose caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -111247,13 +111785,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -111754,6 +112292,21 @@ msgstr "" " broca sem fioEsta é uma broca sem fio alimentada por bateria com " "umaseleçãode brocas." +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -112068,7 +112621,7 @@ msgid_plural "pliers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " @@ -112078,6 +112631,21 @@ msgstr "" "lidarcomtrabalhos mecânicos básicos. Qualquer coisa muito complexa " "exigiráumachave." +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -112139,6 +112707,33 @@ msgstr "" "emdiversostamanhos e tipos de lâminas. Garantido ter as ferramentas " "certaspara umtrabalho mais preciso." +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -112281,12 +112876,26 @@ msgstr "" "paraaçougueiro com cadáveres." #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" msgstr[0] "" msgstr[1] "" -#. ~ Description for wrench +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " @@ -112295,6 +112904,20 @@ msgstr "" " chave inglesa Esta é uma chave inglesa ajustável. Poderia ser uma armacorpo" " a corpo decente, e é usado em muitas receitas de artesanato demecânica." +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -112600,36 +113223,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -112660,6 +113253,12 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -112895,8 +113494,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -113349,7 +113948,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -113797,7 +114396,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -113844,7 +114443,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -113862,7 +114461,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -114870,6 +115469,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -114921,6 +115529,30 @@ msgstr[1] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -115843,7 +116475,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -116320,6 +116952,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -117199,15 +117835,14 @@ msgstr "" "avocê um par de biônicas inúteis que fazem ruídos quando você anda." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "Blindagem de Liga Metálica - Braços" +msgid "Intradermal Alloy - Arms" +msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -117226,42 +117861,36 @@ msgstr "" " sua boca. Quando você chora, você deve cuspir ou engolir suas lágrimas." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" -msgstr "Blindagem de Liga Metálica - Cabeça" +msgid "Intradermal Alloy - head" +msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" -"A carne em sua cabeça foi cirurgicamente substituída por uma blindagem de " -"liga metálica, protegendo sua cabeça e mandíbula." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "Blindagem de Liga Metálica - Pernas" +msgid "Intradermal Alloy - Legs" +msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" -"A carne em suas pernas foi cirurgicamente substituída por uma blindagem de " -"liga metálica. Melhora a proteção passivamente, e pode ser usada em conjunto" -" com artes marciais biônicas." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" -msgstr "Blindagem de Liga Metálica - Tronco" +msgid "Intradermal Alloy - torso" +msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -117272,8 +117901,8 @@ msgstr "Sistema de Baterias" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -123140,8 +123769,8 @@ msgstr "Você tem uma ferida infectada." #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." -msgstr "Sua mordida está infectada." +msgid "Your wound feels infected." +msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus #. Filled'. @@ -127955,8 +128584,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "pancada!" @@ -127972,9 +128600,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "esmagar!" @@ -128653,7 +129280,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "crunch!" @@ -130943,7 +131570,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "forja" @@ -131075,6 +131703,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -133724,14 +134366,14 @@ msgstr "" "mas você pode achar essa pequena arma ainda útil." #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -133882,16 +134524,16 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -134938,20 +135580,17 @@ msgstr "" " da série AK com o cartucho de 5.45x39mm leve e de altavelocidade." #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" -msgstr[0] "FN Five-Seven" -msgstr[1] "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" +msgstr[0] "" +msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" -" FN Five-Seven Projetado para funcionar com a rodada proprietária de5.7x28mm" -" da FN, o Five-Seven é uma pistola leve com uma capacidade muitoalta, melhor" -" usada contra oponentes blindados." #: lang/json/gun_from_json.py msgid "FN P90" @@ -137411,6 +138050,19 @@ msgid_plural "acid dart guns" msgstr[0] "arma de dardos ácidos" msgstr[1] "armas de dardos ácidos" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -140047,13 +140699,10 @@ msgstr[1] "bipés" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" -"Bipés são comumente usados em rifles e metralhadoras para fornecer um " -"descanso frontal e reduzir o movimento. Embora eles melhorem muito o " -"manuseio do recuo, eles são utilizáveis apenas em certas superfícies e são " -"lentos para se equipar." #: lang/json/gunmod_from_json.py msgid "modified bipod" @@ -140064,16 +140713,11 @@ msgstr[1] "bipés modificados" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" -"Bipés são comumente usados em rifles e metralhadoras para fornecer um " -"descanso frontal e reduzir o movimento. Embora eles melhorem muito o " -"manuseio do recuo, eles são utilizáveis apenas em certas superfícies e são " -"lentos para se equipar. Este foi modificado para ser montado em quase " -"qualquer tipo de arma, caso deseje." #: lang/json/gunmod_from_json.py msgid "combination gun shotgun" @@ -140602,20 +141246,22 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" -msgstr "Você estripa e filtra o peixe" +msgid "You gut and fillet the fish." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" -msgstr "Você cuidadosamente abre seu exoesqueleto para pegar a carne abaixo" +msgid "You crack open its hard shell to get at the flesh beneath." +msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" -" Você procura por qualquer hardware biônico aproveitável no que sobrou " -"desteexperimento falido" #: lang/json/harvest_from_json.py msgid "" @@ -142999,6 +143645,11 @@ msgstr "" "Como arma, este item é bem feito e vai suportar a " "punição do combate ." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -143925,6 +144576,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "Rolar para cima" @@ -144093,6 +144751,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "Mudar lado de uso da armadura" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "Atribuir invlets a armadura" @@ -145205,6 +145867,10 @@ msgstr "Mover cursor para cima" msgid "Move cursor down" msgstr "Mover cursor para baixo" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "Sair desta tela de atalhos de teclas" @@ -145405,6 +146071,20 @@ msgstr "Sim" msgid "No" msgstr "Não" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "Cancelar" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "Sair" @@ -146811,13 +147491,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "Uma revista padrão de 20 rounds para o Skorpion Vz. 61, em .32 ACP." #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -146879,13 +147559,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -147513,14 +148193,14 @@ msgstr "" "74M,emboraoriginalmente projetado para a metralhadora leve RPK-74." #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." -msgstr "Um magazine de capacidade padrão para uso com o FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." +msgstr "" #: lang/json/magazine_from_json.py msgid "P90 50-round magazine" @@ -151012,6 +151692,16 @@ msgstr "Trilha " msgid "PLEASE No fish cleaning or dish washing." msgstr "POR FAVOR Não limpar peixes nem lavar louça." +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -151436,8 +152126,8 @@ msgstr "Aikido" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -151461,7 +152151,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -151475,7 +152166,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -151488,9 +152179,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "Boxe" @@ -151650,7 +152370,7 @@ msgstr "Capoeira Tempo" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -151665,7 +152385,8 @@ msgstr "Guindaste kung fu" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -151695,17 +152416,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" -msgstr "Voo do Guindaste" +msgid "Crane's Stance" +msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -151716,10 +152436,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "Voo do Guindaste" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -151730,9 +152464,10 @@ msgstr "Dragão kung fu" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -151747,35 +152482,56 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" -msgstr "Vôo do Dragão" +msgid "Dragon's Knowledge" +msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+10% bash damage.\n" +"Lasts 3 turns." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" +"\n" +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" +msgstr "Vórtice do Dragão" + #: lang/json/martial_art_from_json.py msgid "Eskrima" msgstr "Esgrima" @@ -151867,6 +152623,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "Parry" @@ -151924,7 +152694,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -151938,8 +152708,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -151953,6 +152724,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -152004,6 +152776,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "Karatê" @@ -152097,6 +152882,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "Leopardo Kung Fu" @@ -152243,6 +153043,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "Muay Thai" @@ -152582,16 +153397,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -152694,7 +153510,7 @@ msgstr "Postura de Sōjutsu" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -152801,33 +153617,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -152951,7 +153767,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -153152,6 +153968,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -153212,10 +154043,11 @@ msgstr "Veneno da Centopéia" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -153316,10 +154148,11 @@ msgstr "Veneno do Escorpião" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -153963,7 +154796,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -153973,11 +154821,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -154071,6 +154920,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -154083,21 +154946,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -154175,6 +155039,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -155914,7 +156792,7 @@ msgstr "Eu não acho que nós temos ainda." msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -156125,7 +157003,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -156345,7 +157223,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -156399,8 +157277,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -156560,7 +157437,7 @@ msgstr "Então você tentará de novo, até escutar." msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -156574,7 +157451,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -156613,7 +157490,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -156648,7 +157525,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -156679,7 +157556,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -156721,7 +157598,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -156763,16 +157640,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -156821,7 +157732,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -156871,7 +157782,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -156913,7 +157824,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -156962,7 +157873,7 @@ msgstr "" msgid "Timber!" msgstr "Madeira!" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "Traga 5 toras." @@ -156991,7 +157902,7 @@ msgstr "Como vai a busca? Encontrou elas?" msgid "Sweets" msgstr "Doces" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -157026,7 +157937,7 @@ msgstr "Valeu pela ajuda. Aqui está sua recompensa." msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -157935,7 +158846,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -157970,7 +158881,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -158007,7 +158918,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -158042,7 +158953,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -158070,7 +158981,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -158122,7 +159033,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -158153,7 +159064,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -158182,7 +159093,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -158212,7 +159123,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -158481,8 +159392,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -158893,7 +159803,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -158934,7 +159844,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -158961,7 +159871,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -159043,7 +159953,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -159080,7 +159990,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -159124,7 +160034,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "Clear Back Bay" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -159175,7 +160085,7 @@ msgstr "" msgid "Missing Caravan" msgstr "Caravana perdida" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -159217,7 +160127,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "Recuperar Prospecto" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -159260,7 +160170,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -159299,7 +160209,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -159344,7 +160254,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -159355,6 +160265,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -159544,7 +160512,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -159599,7 +160567,7 @@ msgstr "" msgid "Kill Bandits" msgstr "Matar bandidos" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -159642,7 +160610,7 @@ msgstr "" msgid "Deal with Informant" msgstr "Lidar com o Informante" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -159684,11 +160652,63 @@ msgstr "Você lida com o rato?" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "Obrigado, eu farei a explicação se alguém perguntar sobre isso." +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "Ótimo trabalho, não tinha certeza do que eu estava enviando depois." + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -159716,15 +160736,11 @@ msgstr "" " Procurar nos arbustos por algum traço? Eu não sou um " "rastreadorespecialista, mas você deve ser capaz de encontrar alguma coisa." -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "Ótimo trabalho, não tinha certeza do que eu estava enviando depois." - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -159790,7 +160806,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -159840,7 +160856,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -159885,7 +160901,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -159926,11 +160942,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -159973,7 +160990,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -160021,7 +161038,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -160065,7 +161082,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -161901,7 +162918,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -161920,7 +162937,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -161947,7 +162964,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -161981,7 +162998,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -162028,7 +163045,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -162804,6 +163821,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -163496,14 +164537,14 @@ msgstr "Seu coração dispara loucamente enquanto a injeção toma conta." #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." -msgstr "Abraçou sua natureza bestial." +msgid "Embraced their bestial nature." +msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." -msgstr "Abraçou sua natureza bestial." +msgid "Embraced their bestial nature." +msgstr "" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py @@ -164243,6 +165284,28 @@ msgstr "" "Você é um pupilo do Clã Veneno. Você começa com um dos cinco venenos " "mortais: Centopeia, Víbora, Escorpião, Lagarto ou Rã." +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -165159,7 +166222,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -165170,6 +166232,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -165315,7 +166384,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -165592,9 +166661,11 @@ msgstr "Aterrorizante" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" +"Tem algo em você que as criaturas acham amedrontador, e elas tem chances " +"maiores de tentar fugir." #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -168937,8 +170008,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -169212,8 +170283,8 @@ msgstr "Forte" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" -msgstr "Seus músculos são um pouco mais fortes. Força + 1" +msgid "Your muscles are a little stronger. +1 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Strong" @@ -169221,8 +170292,8 @@ msgstr "Muito forte" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" -msgstr "Seus músculos são mais fortes. Força + 2" +msgid "Your muscles are stronger. +2 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Strong" @@ -169230,8 +170301,8 @@ msgstr "Extremamente forte" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" -msgstr "Seus músculos são muito mais fortes. Força + 4" +msgid "Your muscles are much stronger. +4 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Strong" @@ -169239,8 +170310,8 @@ msgstr "Insanamente forte" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" -msgstr "Seus músculos estão visivelmente abaulados. Força + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Strength" @@ -169257,8 +170328,8 @@ msgstr "Dextrous" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" -msgstr "Você é um pouco mais ágil. Destreza + 1" +msgid "You are a little nimbler. +1 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Dextrous" @@ -169266,8 +170337,8 @@ msgstr "Muito Dextrous" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" -msgstr "Você é mais ágil. Destreza + 2" +msgid "You are nimbler. +2 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Dextrous" @@ -169275,8 +170346,8 @@ msgstr "Extremamente Dextrous" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" -msgstr "Você é ágil e rápido. Destreza + 4" +msgid "You are nimble and quick. +4 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Dextrous" @@ -169284,8 +170355,8 @@ msgstr "Insanamente Dextrous" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" -msgstr "Você é muito mais ágil do que antes. Destreza + 7" +msgid "You are much nimbler than before. +7 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Dexterity" @@ -169302,8 +170373,8 @@ msgstr "Inteligente" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" -msgstr "Você é um pouco mais esperto. Inteligência + 1" +msgid "You are a little smarter. +1 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Smart" @@ -169311,8 +170382,8 @@ msgstr "Muito esperto" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" -msgstr "Você é mais esperto. Inteligência + 2" +msgid "You are smarter. +2 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Smart" @@ -169321,10 +170392,8 @@ msgstr "Extremamente Inteligente" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" -" Você é muito mais esperto e seu crânio está um pouco saliente. " -"Inteligência+ 4" #: lang/json/mutation_from_json.py msgid "Insanely Smart" @@ -169333,10 +170402,8 @@ msgstr "Insanamente inteligente" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" -" Seu crânio se eleva visivelmente devido ao seu cérebro impressionante. " -"Inteligência + 7" #: lang/json/mutation_from_json.py msgid "Prime Intelligence" @@ -169367,8 +170434,8 @@ msgstr "Perceptivo" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" -msgstr "Seus sentidos são um pouco mais aguçados. Percepção + 1" +msgid "Your senses are a little keener. +1 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Perceptive" @@ -169376,8 +170443,8 @@ msgstr "Muito perspicaz" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" -msgstr "Seus sentidos são mais aguçados. Percepção + 2" +msgid "Your senses are keener. +2 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Perceptive" @@ -169385,8 +170452,8 @@ msgstr "Extremamente Perceptivo" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" -msgstr "Seus sentidos são muito mais espertos. Percepção + 4" +msgid "Your senses are much keener. +4 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Perceptive" @@ -169394,8 +170461,8 @@ msgstr "Insanamente Perceptivo" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" -msgstr "Você pode sentir coisas que você nunca imaginou. Percepção + 7" +msgid "You can sense things you never imagined. +7 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Perception" @@ -169960,7 +171027,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -170089,10 +171156,8 @@ msgstr "Muito sonolento" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" -" Você se encontra precisando dormir com bastante frequência. Você vai " -"gastarcerca de metade do seu tempo em ou ao redor da cama." #: lang/json/mutation_from_json.py msgid "Weakening" @@ -174845,6 +175910,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "Ciborgue" @@ -174880,6 +175946,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -175438,6 +176512,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -175573,6 +176655,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -175741,6 +176827,10 @@ msgstr "Corretor" msgid "Guard" msgstr "Guarda" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "Makayla Sanchez" @@ -175909,6 +176999,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -176854,6 +177948,10 @@ msgstr "buraco de gosma" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -177543,6 +178641,10 @@ msgstr "trincheira cravada" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "levantamento de ferreiro" @@ -177551,24 +178653,40 @@ msgstr "levantamento de ferreiro" msgid "blacksmith shop" msgstr "loja de ferreiro" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -177935,6 +179053,10 @@ msgstr "torre de vigia mi-go" msgid "subway station?" msgstr "estação de metrô?" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -179391,6 +180513,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -179507,6 +180683,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -179543,7 +180747,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -179556,7 +180760,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -180159,6 +181363,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -180427,6 +181657,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -180553,6 +181837,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -180601,6 +181913,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -180623,6 +181963,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -185229,6 +186621,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -189611,6 +191061,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -190003,4931 +191475,6404 @@ msgstr "EXPANSÕES" msgid "PRACTICE" msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "SCIENCE" +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "SCIENCE" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "FABRICATION" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "SURVIVAL" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "TAILORING" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "ATHLETICS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "COMPUTERS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "DEVICES" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py src/game_inventory.cpp +msgid "HEALTH" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "MECHANICS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "SOCIAL" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "COMBAT" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#: lang/json/recipe_category_from_json.py +msgid "CBMS" +msgstr "MBCS" + +#. ~ Crafting recipes subcategory of 'ANIMALS' category +#: lang/json/recipe_category_from_json.py +msgid "ELEPHANT ARMOR" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ANIMALS' category +#: lang/json/recipe_category_from_json.py +msgid "OSTRICH ARMOR" +msgstr "" + +#. ~ Crafting recipes category name +#: lang/json/recipe_category_from_json.py +msgid "ENCHANTED" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: lang/json/recipe_category_from_json.py +msgid "POTIONS" +msgstr "POÇÕES" + +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: lang/json/recipe_category_from_json.py +msgid "RUNES" +msgstr "RUNAS" + +#: lang/json/recipe_from_json.py +msgid "Stuff THE MAN doesn't want you to know" +msgstr "Coisas que O HOMEM não quer que você saiba" + +#: lang/json/recipe_from_json.py +msgid "Sticky Rice Hedgerows" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Low-Carb Sashimi Donburi" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Royal Penny Tea" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Sir Tenderloin the Toothsome" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Shagbark Nut Ambrosia" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Natural Beet Sugar" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Leprechaun Sausage" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in S shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southeastern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the eastern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in E shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the northeastern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in NE shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the northern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in N shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the northwestern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in NW shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the western shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in W shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southwestern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in S shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southeastern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the eastern shack for our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in E shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the northeastern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in NE shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the northern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in N shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the northwestern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in NW shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the western shack for our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in W shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southwestern shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should survey the base site and set up a bulletin board." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "basic survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a root cellar will allow us trapping small game and preserving it." +msgstr "" + +#: lang/json/recipe_from_json.py lang/json/terrain_from_json.py +msgid "root cellar" +msgstr "adega de raiz" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a well will give us easy access to water and allow us to send out " +"combat patrols or scouts." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "water well" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's set up a radio tower to improve our recruitment efforts." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should dig some pits for palisade segments to block entrances to camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "dig pits" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should build palisade segments to block entrances to camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build palisade segments" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should build a pair of reinforced doors to secure camp's entrance." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build reinforced doors" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should build a pair of metal doors to secure camp's entrance." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal doors" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof in the eastern" +" part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof in the western" +" part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "stone shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle and daub shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need to barricade front windows, let's build wooden walls over them." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden barricades" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need to barricade front windows, let's build mi-go resin walls over them." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin barricades" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We could build butchery rack to start hunting larger animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "butchery rack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should reinforce front doors to make this base safer." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "reinforce doors" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey military helipad garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "military helipad garage survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a root cellar will help us preserving fish and other food." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We must barricade windows, let's use wooden walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We must barricade windows, let's use resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "resin barricades" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Building a butchery rack will allow us hunting bigger animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should reinforce doors to further secure our base." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 1. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 1. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 2. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 2. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 3. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 3. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 4. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 4. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 5. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 5. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 1. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 1. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 2. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 2. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 3. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 3. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 4. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 4. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 5. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 5. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey Light Industry Workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "expansion survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's add a drop hammer for even more crafting possibilities." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "drop hammer" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's remove plants from garden and plow a few plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare garden" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a radio tower and console" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's entrance." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "entrance survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's swimming pool." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "swimming pool survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bedrooms." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bedrooms survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's???." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "??? survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's library." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "library survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bedroom survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's living rooms." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "living rooms survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "swimming survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bar." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bar survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bunk bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build another bunk bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "another bunk bed" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a well will give us easy access to water and allow us to start small" +" farm." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's plow some plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "small farm" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could try to fix reactor's controller to power lights, it would really " +"help us in planning missions." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix reactor's controller" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's set up a radio tower to improve our recruitment efforts, we will " +"redirect some power into it from nuclear reactor." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal shack with a metal roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth shack with a sod roof for our blacksmith's " +"workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a stone shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "stone blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle and daub shack with a sod roof for our blacksmith's " +"workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle and daub blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wooden shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock forge and a workbench to start smithing." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "workbench and forge" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second workbench and a drop hammer for more productive " +"smithing." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "workbench and drop hammer" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a butchery rack, so we can start hunting large animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should remove some of display racks and counters, then build a pair of " +"mattress beds inside radio control's room for our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds inside radio tower shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the northeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in NE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southwest corner shack for " +"our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southwest side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southeast corner shack for " +"our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the south side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in S side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should remove some of display racks and counters, then build a pair of " +"straw beds inside radio control's room for our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds inside radio tower shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the northeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in NE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southwest corner shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southwest side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southeast corner shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the south side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in S side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a root cellar will give us a way to preserve food." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a well will give us easy access to water." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's fix up radio tower and controls to improve our recruitment efforts." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix radio tower and controls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should dig pits for palisade around camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should build palisade around camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build palisade" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could try to fix whole tower and supply it with enough power, which could" +" give us remote access to computer systems connected to backbone network or " +"communication satellites." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix whole radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the south " +"side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the south " +"side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build migo resin walls over windows in radio " +"control's room." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "barricade radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"inside radio tower." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"south side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "FABRICATION" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"northeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "SURVIVAL" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southwest corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "TAILORING" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southwest side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "ATHLETICS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "COMPUTERS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southeast corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "DEVICES" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the south" +" side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py src/game_inventory.cpp -msgid "HEALTH" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the northeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "MECHANICS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southwest corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "SOCIAL" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southwest side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "COMBAT" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#: lang/json/recipe_category_from_json.py -msgid "CBMS" -msgstr "MBCS" - -#. ~ Crafting recipes subcategory of 'ANIMALS' category -#: lang/json/recipe_category_from_json.py -msgid "ELEPHANT ARMOR" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southeast corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'ANIMALS' category -#: lang/json/recipe_category_from_json.py -msgid "OSTRICH ARMOR" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the south side of the camp." msgstr "" -#. ~ Crafting recipes category name -#: lang/json/recipe_category_from_json.py -msgid "ENCHANTED" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build wooden walls over windows in radio control's " +"room." msgstr "" -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: lang/json/recipe_category_from_json.py -msgid "POTIONS" -msgstr "POÇÕES" - -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: lang/json/recipe_category_from_json.py -msgid "RUNES" -msgstr "RUNAS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof inside " +"radio tower." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Stuff THE MAN doesn't want you to know" -msgstr "Coisas que O HOMEM não quer que você saiba" +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Sticky Rice Hedgerows" +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southwest corner of the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "Low-Carb Sashimi Donburi" +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southwest side of the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "Royal Penny Tea" +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southeast side of the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "Sir Tenderloin the Toothsome" +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southeast corner of the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "Shagbark Nut Ambrosia" +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"south side of the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "Natural Beet Sugar" +msgid "" +"Now that we have some cover, we should reorganize that dining area into our " +"kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Leprechaun Sausage" +msgid "prepare the kitchen area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southern shack for our " -"survivors." +"We should build a well, put it near that winch. This will make our future " +"here more secure." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in S shack" +msgid "build a well" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southeastern shack for our " -"survivors." +"Let's set up a radio tower to improve our recruitment efforts, we'll " +"repurpose that terminal for it." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE shack" +msgid "" +"Now that we have some cover, we should add some storage and a root cellar in" +" our kitchen area." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of mattress beds in the eastern shack for our " -"survivors." +msgid "add storage and root cellar" msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in E shack" +msgid "Let's break up some pavement so we can farm." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of mattress beds in the northeastern shack for our " -"survivors." +msgid "break up driveway" msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in NE shack" +msgid "Let's build a privacy fence around the garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a privacy fence" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the northern shack for our " -"survivors." +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot. Let's put it in that dining area." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in N shack" +msgid "build a fireplace" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the northwestern shack for our " -"survivors." +"Now that we have some cover, we should set up a brazier for cooking, and " +"grab a pot. Let's put it in that dining area." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in NW shack" +msgid "build a brazier" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the western shack for our " -"survivors." +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot. Let's put it in that dining area." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in W shack" +msgid "build a wood stove" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of mattress beds in the southwestern shack for our " -"survivors." +msgid "Let's build some smokers and a charcoal kiln for food preservation." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW shack" +msgid "build smoking racks and charcoal kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of straw beds in the southern shack for our " -"survivors." +msgid "Let's make a butchery area." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in S shack" +msgid "build butchery area" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of straw beds in the southeastern shack for our " -"survivors." +msgid "Let's add a vat for fermenting." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE shack" +msgid "build fermenting vats" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of straw beds in the eastern shack for our survivors." +msgid "Let's gather some tools so we can work on cars." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in E shack" +msgid "add tools for garage" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of straw beds in the northeastern shack for our " -"survivors." +msgid "Let's furnish the southwest bedroom." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in NE shack" +msgid "furnish the SW bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of straw beds in the northern shack for our " -"survivors." +msgid "Let's furnish the northwest bedroom." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in N shack" +msgid "furnish the NW bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of straw beds in the northwestern shack for our " -"survivors." +msgid "Let's furnish the southeast bedroom." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in NW shack" +msgid "furnish the SE bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of straw beds in the western shack for our survivors." +msgid "Let's furnish the northeast bedroom." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in W shack" +msgid "furnish the NE bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of straw beds in the southwestern shack for our " -"survivors." +msgid "Let's furnish the common area." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW shack" +msgid "furnish the common area furniture" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should survey the base site and set up a bulletin board." +msgid "Let's build a fabrication workshop." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic survey" +msgid "build a metalworking forge" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a root cellar will allow us trapping small game and preserving it." +msgid "Let's build an anvil and crucible to increase our crafting options." msgstr "" -#: lang/json/recipe_from_json.py lang/json/terrain_from_json.py -msgid "root cellar" -msgstr "adega de raiz" +#: lang/json/recipe_from_json.py +msgid "add an anvil and crucible" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a well will give us easy access to water and allow us to send out " -"combat patrols or scouts." +"Let's build pottery kiln and get the tools we'll need for glassworking." msgstr "" #: lang/json/recipe_from_json.py -msgid "water well" +msgid "build a pottery kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's set up a radio tower to improve our recruitment efforts." +msgid "We need some tools for metal working." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place advanced tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should dig some pits for palisade segments to block entrances to camp." +"Let's get a nice workbench built to improve our work. Place it next to the " +"anvil." msgstr "" #: lang/json/recipe_from_json.py -msgid "dig pits" +msgid "build a workbench" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build palisade segments to block entrances to camp." +msgid "" +"Let's add a bellows and barrel for quenching the steel, we'll need more " +"tools too." msgstr "" #: lang/json/recipe_from_json.py -msgid "build palisade segments" +msgid "build a bellows and barrel" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build a pair of reinforced doors to secure camp's entrance." +msgid "Let's build a drop hammer for some mass production." msgstr "" #: lang/json/recipe_from_json.py -msgid "build reinforced doors" +msgid "build a drop hammer." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build a pair of metal doors to secure camp's entrance." +msgid "" +"Let's expand our living areas with standard walls, we'll use that far " +"vehicle bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "build metal doors" +msgid "build the standard white living quarters walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof in the " -"southern part of the camp." +"Let's expand our living areas with wood panel walls, we'll use that far " +"vehicle bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "log shack" +msgid "build the wood panel living quarters walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof in the " -"southeastern part of the camp." +"Let's expand our living areas with log walls, we'll use that far vehicle " +"bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof in the eastern" -" part of the camp." +msgid "build the log living quarters walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof in the " -"northeastern part of the camp." +"Let's expand our living areas with metal walls, we'll use that far vehicle " +"bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof in the " -"northern part of the camp." +msgid "build the metal living quarters walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof in the " -"northwestern part of the camp." +"Let's expand our living areas with mi-go resin walls, we'll use that far " +"vehicle bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof in the western" -" part of the camp." +msgid "build the mi-go resin living quarters walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof in the " -"southwestern part of the camp." +"Let's expand our living areas with rammed earth walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth living quarters walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"southern part of the camp." +"Let's expand our living areas with rock walls, we'll use that far vehicle " +"bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "metal shack" +msgid "build the rock earth living quarters walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"southeastern part of the camp." +"Let's expand our living areas with wattle and daub walls, we'll use that far" +" vehicle bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"eastern part of the camp." +msgid "build the wattle and daub living quarters walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"northeastern part of the camp." +msgid "We should survey the roof top and set up a bulletin board." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"northern part of the camp." +"Now that we have some cover, we should build a fireplace in the northeast " +"shack." msgstr "" +#: lang/json/recipe_from_json.py +msgid "northeast fireplace" +msgstr "lareira nordeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"northwestern part of the camp." +"Now that we have some cover, we should set up a brazier in the northeast " +"shack." msgstr "" +#: lang/json/recipe_from_json.py +msgid "northeast brazier" +msgstr "braseiro nordeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"western part of the camp." +"Now that we have some cover, we should build a stove in the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"southwestern part of the camp." +msgid "northeast stove" +msgstr "forno nordeste" + +#: lang/json/recipe_from_json.py +msgid "A straw bed in the northeast shack will make sleeping easier." msgstr "" +#: lang/json/recipe_from_json.py +msgid "northeast straw bed" +msgstr "camas de palha nordeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the southern part of the camp." +"A proper bed in the northeast shack will give one of us a place to sleep " +"soundly." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go resin shack" +msgid "northeast bed" +msgstr "camas nordeste" + +#: lang/json/recipe_from_json.py +msgid "Another straw bed in the northeast shack will make sleeping easier." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the southeastern part of the camp." +"Another proper bed in the northeast shack will give one of us a place to " +"sleep soundly." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the eastern part of the camp." +"A pair of straw beds in the east tent will allow us to house two more people" +" and expand the camp." msgstr "" +#: lang/json/recipe_from_json.py +msgid "east straw beds" +msgstr "camas de palha leste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the northeastern part of the camp." +"A pair of proper beds in the east tent will allow us to house two more " +"people and expand the camp." msgstr "" +#: lang/json/recipe_from_json.py +msgid "east beds" +msgstr "camas leste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the northern part of the camp." +"A pair of straw beds in the east room will allow us to house two more people" +" and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the northwestern part of the camp." +"A pair of proper beds in the east room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the western part of the camp." +"A pair of straw beds in the southeast tent will allow us to house two more " +"people and expand the camp." msgstr "" +#: lang/json/recipe_from_json.py +msgid "southeast straw beds" +msgstr "camas de palha sudeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the southwestern part of the camp." +"A pair of proper beds in the southeast tent will allow us to house two more " +"people and expand the camp." msgstr "" +#: lang/json/recipe_from_json.py +msgid "southeast beds" +msgstr "camas sudeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southern part of the camp." +"A pair of straw beds in the southeast room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "rammed earth shack" +msgid "" +"A pair of proper beds in the southeast room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southeastern part of the camp." +"A pair of straw beds in the northwest building will allow us to house two " +"more people and expand the camp." msgstr "" +#: lang/json/recipe_from_json.py +msgid "northwest straw beds" +msgstr "camas de palha noroeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"eastern part of the camp." +"A pair of proper beds in the northwest building will allow us to house two " +"more people and expand the camp." msgstr "" +#: lang/json/recipe_from_json.py +msgid "northwest beds" +msgstr "camas noroeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northeastern part of the camp." +"A pair of straw beds in the west tent will allow us to house two more people" +" and expand the camp." msgstr "" +#: lang/json/recipe_from_json.py +msgid "west straw beds" +msgstr "camas de palha oeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northern part of the camp." +"A pair of proper beds in the west tent will allow us to house two more " +"people and expand the camp." msgstr "" +#: lang/json/recipe_from_json.py +msgid "west beds" +msgstr "camas oeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northwestern part of the camp." +"A pair of straw beds in the west room will allow us to house two more people" +" and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"western part of the camp." +"A pair of proper beds in the west room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southwestern part of the camp." +"A pair of straw beds in the southwest tent will allow us to house two more " +"people and expand the camp." msgstr "" +#: lang/json/recipe_from_json.py +msgid "southwest straw beds" +msgstr "camas de palha sudoeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southern part of the camp." +"A pair of proper beds in the southwest tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "stone shack" -msgstr "" +msgid "southwest beds" +msgstr "camas sudoeste" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southeastern part of the camp." +"A pair of straw beds in the southwest room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"eastern part of the camp." +"A pair of proper beds in the southwest room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northeastern part of the camp." +"A fireplace, counter, and some pots and pans in the central building will " +"allow us to cook simple recipes and organize hunting expeditions." msgstr "" +#: lang/json/recipe_from_json.py +msgid "central fireplace" +msgstr "lareira central" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northern part of the camp." +"We need a butchery rack to maximize the harvest from our hunting and " +"trapping efforts." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northwestern part of the camp." +msgid "central butchery rack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"western part of the camp." +"A tool rack in the central building will give us a place to store tools." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southwestern part of the camp." +msgid "central tool rack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southern part of the camp." +"Setting up some tables and chairs will make the central building into a " +"dining area, and we can also use them as a workspace to organize the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "wattle and daub shack" +msgid "central dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southeastern part of the camp." +msgid "south dining hall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the eastern part of the camp." +"A wood stove, counter, and some pots and pans in the south half of the " +"central building will allow us to cook simple recipes and organize hunting " +"expeditions. The stove will be more efficient than a fireplace." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northeastern part of the camp." +msgid "south wood stove" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northern part of the camp." -msgstr "" +msgid "north water well" +msgstr "poço de água norte" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northwestern part of the camp." +msgid "north root cellar" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the western part of the camp." +msgid "We could build a radio tower to improve the range of our radios." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southwestern part of the camp." +msgid "north radio tower" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southern part of the camp." +"Adding a console to control the radio tower will help with recruiting more " +"survivors." msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden shack" +msgid "north radio console" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southeastern part of the camp." +"Digging a trench along the north edge of the camp would provide some defense" +" and generate building materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"eastern part of the camp." -msgstr "" +msgid "north trench" +msgstr "trincheira norte" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northeastern part of the camp." +"Digging a trench along the south edge of the camp would provide some defense" +" and generate building materials." msgstr "" +#: lang/json/recipe_from_json.py +msgid "south trench" +msgstr "trincheira sul" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northern part of the camp." +"Digging a trench along the northeast corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the east side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" +#: lang/json/recipe_from_json.py +msgid "northeast trench" +msgstr "trincheira nordeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northwestern part of the camp." +"Digging a trench along the northwest corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the west side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" +#: lang/json/recipe_from_json.py +msgid "northwest trench" +msgstr "trincheira noroeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"western part of the camp." +"Digging a trench along the southeast corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the east side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" +#: lang/json/recipe_from_json.py +msgid "southeast trench" +msgstr "trincheira sudeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southwestern part of the camp." +"Digging a trench along the southwest corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the west side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" +#: lang/json/recipe_from_json.py +msgid "southwest trench" +msgstr "trincheira sudoeste" + #: lang/json/recipe_from_json.py msgid "" -"We need to barricade front windows, let's build wooden walls over them." +"Digging a trench along the east edge of the camp would provide some defense " +"and generate building materials. We'll need to run the trench the length of" +" the camp if we don't have solid buildings all along the east side." msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden barricades" -msgstr "" +msgid "east trench" +msgstr "trincheira leste" #: lang/json/recipe_from_json.py msgid "" -"We need to barricade front windows, let's build mi-go resin walls over them." +"Digging a trench along the west edge of the camp would provide some defense " +"and generate building materials. We'll need to run the trench the length of" +" the camp if we don't have solid buildings all along the west side." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go resin barricades" -msgstr "" +msgid "west trench" +msgstr "trincheira oeste" #: lang/json/recipe_from_json.py -msgid "We could build butchery rack to start hunting larger animals." +msgid "" +"We need some shelter, so build half of a log shack with a wooden roof on the" +" northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py -msgid "butchery rack" +msgid "northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should reinforce front doors to make this base safer." +msgid "" +"We should use logs to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "reinforce doors" +msgid "expand northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey military helipad garage." +msgid "We should use logs to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "military helipad garage survey" +msgid "finish northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a root cellar will help us preserving fish and other food." +msgid "" +"We should expand our housing by putting up a log building on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "We must barricade windows, let's use wooden walls." +msgid "east shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "We must barricade windows, let's use resin walls." +msgid "" +"We should expand our housing by adding a log room on the east side, which we" +" can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "resin barricades" -msgstr "" +msgid "east room" +msgstr "sala leste" #: lang/json/recipe_from_json.py -msgid "Building a butchery rack will allow us hunting bigger animals." +msgid "" +"We should expand our housing by putting up a log building on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should reinforce doors to further secure our base." +msgid "southeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 1. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 1. pair of mattress beds" -msgstr "" +msgid "southeast room" +msgstr "sala sudeste" #: lang/json/recipe_from_json.py -msgid "Let's build 2. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the northwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2. pair of mattress beds" +msgid "northwest shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 3. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3. pair of mattress beds" +msgid "west shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 4. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the west side, which we" +" can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 4. pair of mattress beds" +msgid "west room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 5. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 5. pair of mattress beds" +msgid "southwest shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 1. pair of straw beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 1. pair of straw beds" +msgid "southwest room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 2. pair of straw beds in place of desks." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2. pair of straw beds" +msgid "central building NE corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 3. pair of straw beds in place of desks." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3. pair of straw beds" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 4. pair of straw beds in place of desks." +msgid "central building NW corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "build 4. pair of straw beds" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 5. pair of straw beds in place of desks." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 5. pair of straw beds" +msgid "central building north half" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey Light Industry Workshop." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "expansion survey" +msgid "central building SE corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's add a drop hammer for even more crafting possibilities." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "drop hammer" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's remove plants from garden and plow a few plots." +msgid "central building SW corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare garden" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a radio tower and console" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's entrance." +msgid "central building south half" msgstr "" #: lang/json/recipe_from_json.py -msgid "entrance survey" +msgid "" +"We need some shelter, so build half of a metal shack with a metal roof on " +"the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's swimming pool." +msgid "" +"We should use metal to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "swimming pool survey" +msgid "We should use metal to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bedrooms." +msgid "" +"We should expand our housing by putting up a metal building on the east " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "bedrooms survey" +msgid "" +"We should expand our housing by adding a metal room on the east side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's???." +msgid "" +"We should expand our housing by putting up a metal building on the southeast" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "??? survey" +msgid "" +"We should expand our housing by adding a metal room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's kitchen." +msgid "" +"We should expand our housing by putting up a metal building on the northwest" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's library." +msgid "" +"We should expand our housing by putting up a metal building on the west " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "library survey" +msgid "" +"We should expand our housing by adding a metal room on the west side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bedroom." +msgid "" +"We should expand our housing by putting up a metal building on the southwest" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "bedroom survey" +msgid "" +"We should expand our housing by adding a metal room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's living rooms." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "living rooms survey" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "swimming survey" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bar." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "bar survey" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a bunk bed." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build another bunk bed." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "another bunk bed" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a well will give us easy access to water and allow us to start small" -" farm." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's plow some plots." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "small farm" +msgid "" +"We need some shelter, so build half of a mi-go resin shack with a sod roof " +"on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could try to fix reactor's controller to power lights, it would really " -"help us in planning missions." +"We should use mi-go resin to expand the shelter so we have space for another" +" bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix reactor's controller" +msgid "We should use mi-go resin to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's set up a radio tower to improve our recruitment efforts, we will " -"redirect some power into it from nuclear reactor." +"We should expand our housing by putting up a mi-go resin building on the " +"east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a log shack with a wooden roof for our blacksmith's workshop." +"We should expand our housing by adding a mi-go resin room on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "log blacksmith workshop" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a metal shack with a metal roof for our blacksmith's workshop." +"We should expand our housing by adding a mi-go resin room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "metal blacksmith workshop" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go blacksmith workshop" +msgid "" +"We should expand our housing by adding a mi-go resin room on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a rammed earth shack with a sod roof for our blacksmith's " -"workshop." +"We should expand our housing by putting up a mi-go resin building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "rammed earth blacksmith workshop" +msgid "" +"We should expand our housing by adding a mi-go resin room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a stone shack with a wooden roof for our blacksmith's workshop." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "stone blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a wattle and daub shack with a sod roof for our blacksmith's " -"workshop." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "wattle and daub blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a wooden shack with a wooden roof for our blacksmith's workshop." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rock forge and a workbench to start smithing." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "workbench and forge" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a second workbench and a drop hammer for more productive " -"smithing." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "workbench and drop hammer" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a butchery rack, so we can start hunting large animals." +msgid "" +"We need some shelter, so build half of a rammed earth shack with a sod roof " +"on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should remove some of display racks and counters, then build a pair of " -"mattress beds inside radio control's room for our survivors." +"We should use rammed earth to expand the shelter so we have space for " +"another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in radio control's room" +msgid "We should use rammed earth to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds inside radio tower shack for our " -"survivors." +"We should expand our housing by putting up a rammed earth building on the " +"east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in radio tower" +msgid "" +"We should expand our housing by adding a rammed earth room on the east side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the northeast side shack for our " -"survivors." +"We should expand our housing by putting up a rammed earth building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in NE side shack" +msgid "" +"We should expand our housing by adding a rammed earth room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southwest corner shack for " -"our survivors." +"We should expand our housing by putting up a rammed earth building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW corner shack" +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southwest side shack for our " -"survivors." +"We should expand our housing by adding a rammed earth room on the west side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW side shack" +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southeast side shack for our " -"survivors." +"We should expand our housing by adding a rammed earth room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE side shack" +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southeast corner shack for " -"our survivors." +"A central building can act as a core and dining hall. We should build out " +"from the east room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE corner shack" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the south side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build out " +"from the west room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in S side shack" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should remove some of display racks and counters, then build a pair of " -"straw beds inside radio control's room for our survivors." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in radio control's room" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds inside radio tower shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in radio tower" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the northeast side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in NE side shack" +msgid "" +"We need some shelter, so build half of a stone shack with a wooden roof on " +"the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwest corner shack for our " -"survivors." +"We should use rocks to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW corner shack" +msgid "We should use rocks to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwest side shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the east side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW side shack" +msgid "" +"We should expand our housing by adding a rock room on the east side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southeast side shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE side shack" +msgid "" +"We should expand our housing by adding a rock room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southeast corner shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the northwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE corner shack" +msgid "" +"We should expand our housing by putting up a rock building on the west side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the south side shack for our " -"survivors." +"We should expand our housing by adding a rock room on the west side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in S side shack" +msgid "" +"We should expand our housing by putting up a rock building on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a root cellar will give us a way to preserve food." +msgid "" +"We should expand our housing by adding a rock room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a well will give us easy access to water." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's fix up radio tower and controls to improve our recruitment efforts." +"A central building can act as a core and dining hall. We should build out " +"from the east room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix radio tower and controls" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should dig pits for palisade around camp." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build palisade around camp." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "build palisade" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could try to fix whole tower and supply it with enough power, which could" -" give us remote access to computer systems connected to backbone network or " -"communication satellites." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix whole radio tower" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"northeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"southwest corner of the camp." +"We need some shelter, so set up a tent on the northeast side of the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof on the south " -"side of the camp." -msgstr "" +msgid "northeast tent" +msgstr "tenda nordeste" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"northeast side of the camp." +"We should expand our housing by putting up a tent on the east side, though " +"doing so will mean we need more materials to build the central building." msgstr "" +#: lang/json/recipe_from_json.py +msgid "east tent" +msgstr "tenda leste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southwest corner of the camp." +"We should expand our housing by putting up a tent on the southeast side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" +#: lang/json/recipe_from_json.py +msgid "southeast tent" +msgstr "tenda sudeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southwest side of the camp." +"We should expand our housing by putting up a tent on the northwest side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" +#: lang/json/recipe_from_json.py +msgid "northwest tent" +msgstr "tenda noroeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southeast side of the camp." +"We should expand our housing by putting up a tent on the west side, though " +"doing so will mean we need more materials to build the central building." msgstr "" +#: lang/json/recipe_from_json.py +msgid "west tent" +msgstr "tenda oeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southeast corner of the camp." +"We should expand our housing by putting up a tent on the southwest side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" +#: lang/json/recipe_from_json.py +msgid "southwest tent" +msgstr "tenda sudoeste" + #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the south " -"side of the camp." +"We need some shelter, so build half of a wattle-and-daub shack with a sod " +"roof on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build migo resin walls over windows in radio " -"control's room." +"We should use wattle-and-daub to expand the shelter so we have space for " +"another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "barricade radio control's room" +msgid "We should use wattle-and-daub to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"inside radio tower." +"We should expand our housing by putting up a wattle-and-daub building on the" +" east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the northeast side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the east " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southwest corner of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southwest side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southeast side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southeast corner of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the south side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the west " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"northeast side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southwest corner of the camp." +"We should expand our housing by adding a wattle-and-daub room on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southwest side of the camp." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the east room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"south side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the west room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"northeast side of the camp." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southwest corner of the camp." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southwest side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southeast side of the camp." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the south" -" side of the camp." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the northeast side of the camp." +"We need some shelter, so build half of a wood panel shack with a wooden roof" +" on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southwest corner of the camp." +"We should use wood panel to expand the shelter so we have space for another " +"bed." msgstr "" +"Deveríamos usar painéis de madeira para expandir o abrigo para que tenhamos " +"espaço para mais uma cama." #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southwest side of the camp." -msgstr "" +msgid "We should use wood panel to finish the northeast shack." +msgstr "Deveríamos usar painéis de madeira para terminar a cabana nordeste." #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southeast side of the camp." +"We should expand our housing by putting up a wood panel building on the east" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southeast corner of the camp." +"We should expand our housing by adding a wood panel room on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the south side of the camp." +"We should expand our housing by putting up a wood panel building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build wooden walls over windows in radio control's " -"room." +"We should expand our housing by adding a wood panel room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof inside " -"radio tower." +"We should expand our housing by putting up a wood panel building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"northeast side of the camp." +"We should expand our housing by putting up a wood panel building on the west" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southwest corner of the camp." +"We should expand our housing by adding a wood panel room on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southwest side of the camp." +"We should expand our housing by putting up a wood panel building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southeast side of the camp." +"We should expand our housing by adding a wood panel room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southeast corner of the camp." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"south side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the east room with wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should reorganize that dining area into our " -"kitchen." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare the kitchen area" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a well, put it near that winch. This will make our future " -"here more secure." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a well" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's set up a radio tower to improve our recruitment efforts, we'll " -"repurpose that terminal for it." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should add some storage and a root cellar in" -" our kitchen area." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "add storage and root cellar" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's break up some pavement so we can farm." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "break up driveway" +msgid "We need to survey the base site first." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a privacy fence around the garden." +msgid "" +"The first thing we are going to need is a command tent to manage and task " +"workers from." msgstr "" +" A primeira coisa que vamos precisar é de uma tenda de comando para " +"gerenciar e encarregar os trabalhadores." #: lang/json/recipe_from_json.py -msgid "build a privacy fence" +msgid "basic northeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a fireplace for cooking and " -"grab a pot. Let's put it in that dining area." +"We're going to need a fire pit and a bed if we want to stay here " +"permanently." msgstr "" +" Nós vamos precisar de uma fogueira e uma cama se quisermos ficar aqui " +"permanentemente." #: lang/json/recipe_from_json.py -msgid "build a fireplace" +msgid "basic firepit" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should set up a brazier for cooking, and " -"grab a pot. Let's put it in that dining area." +"To make this outpost functional we are going to need storage containers to " +"organize our supplies." msgstr "" +" Para tornar esse posto avançado funcional, precisaremos de recipientes de " +"armazenamento para organizar nossos suprimentos." #: lang/json/recipe_from_json.py -msgid "build a brazier" +msgid "basic storage" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a stove for cooking and grab a " -"pot. Let's put it in that dining area." +"Next we should expand the camp to comfortably support two people " +"indefinitely." msgstr "" +" Em seguida, devemos expandir o acampamento para apoiar confortavelmente " +"duas pessoas indefinidamente." #: lang/json/recipe_from_json.py -msgid "build a wood stove" +msgid "basic northeast bed" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some smokers and a charcoal kiln for food preservation." +msgid "" +"Additional housing and storage will allow our camp to expand into " +"specialized industries." msgstr "" +" Habitação e armazenamento adicionais permitirão que nosso acampamento se " +"expanda em indústrias especializadas." #: lang/json/recipe_from_json.py -msgid "build smoking racks and charcoal kiln" +msgid "basic northwest tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a butchery area." +msgid "" +"Constructing a hard command post will transform our little camp into a true " +"base." msgstr "" +" Construir um posto de comando rígido transformará nosso pequeno acampamento" +" em uma base verdadeira." #: lang/json/recipe_from_json.py -msgid "build butchery area" +msgid "basic central building" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's add a vat for fermenting." +msgid "" +"Building additional housing will allow us to send companions out to find " +"recruits." msgstr "" +" Construir habitação adicional nos permitirá enviar companheiros para " +"encontrar recrutas." #: lang/json/recipe_from_json.py -msgid "build fermenting vats" +msgid "basic west tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's gather some tools so we can work on cars." +msgid "We need to expand our base to include basic dining facilities." msgstr "" +" Precisamos expandir nossa base para incluir instalações básicas de " +"refeições." #: lang/json/recipe_from_json.py -msgid "add tools for garage" +msgid "basic central kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom." -msgstr "" +msgid "More housing means that we can support additional specialists." +msgstr "Mais habitação significa que podemos apoiar especialistas adicionais." #: lang/json/recipe_from_json.py -msgid "furnish the SW bedroom" +msgid "basic southeast tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom." +msgid "An expanded kitchen is needed to support our growing settlement." msgstr "" +" Uma cozinha expandida é necessária para apoiar nosso assentamento " +"crescente." #: lang/json/recipe_from_json.py -msgid "furnish the NW bedroom" +msgid "basic expanded kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom." +msgid "" +"Finishing the hard structure will give us a more secure place to retreat to " +"if we come under attack." msgstr "" +" Terminar a estrutura dura nos dará um lugar mais seguro para nos retirarmos" +" se formos atacados." #: lang/json/recipe_from_json.py -msgid "furnish the SE bedroom" +msgid "basic completed central building" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northeast bedroom." +msgid "" +"I'm surprised we've made it this long without securing a clean water source," +" we need a well." msgstr "" +" Estou surpreso por termos conseguido tanto tempo sem garantir uma fonte de " +"água limpa, precisamos de um poço." #: lang/json/recipe_from_json.py -msgid "furnish the NE bedroom" +msgid "basic water well" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the common area." +msgid "" +"Building a strong wall will keep the base secure even if a small horde " +"attacks." msgstr "" +" Construir um muro forte manterá a base segura mesmo que uma pequena horda " +"atente." #: lang/json/recipe_from_json.py -msgid "furnish the common area furniture" +msgid "basic partial wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a fabrication workshop." -msgstr "" +msgid "We need to finish our half built fortifications." +msgstr "Precisamos terminar nossas fortificações meio construídas." #: lang/json/recipe_from_json.py -msgid "build a metalworking forge" +msgid "basic complete wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build an anvil and crucible to increase our crafting options." -msgstr "" +msgid "We're running out of room and need another living quarters." +msgstr "Estamos ficando sem espaço e precisamos de outro alojamento." #: lang/json/recipe_from_json.py -msgid "add an anvil and crucible" +msgid "basic east tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build pottery kiln and get the tools we'll need for glassworking." +msgid "Our kitchen isn't able to keep up with demand, we need to expand it." msgstr "" +" Nossa cozinha não é capaz de acompanhar a demanda, precisamos expandi-la." #: lang/json/recipe_from_json.py -msgid "build a pottery kiln" +msgid "basic dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need some tools for metal working." -msgstr "" +msgid "We should build stronger doors to secure our compound." +msgstr "Devemos construir portas mais fortes para proteger nosso composto." #: lang/json/recipe_from_json.py -msgid "place advanced tools" +msgid "basic reinforced gates" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's get a nice workbench built to improve our work. Place it next to the " -"anvil." +msgid "One more tent and our living space will be full." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a workbench" +msgid "basic southwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's add a bellows and barrel for quenching the steel, we'll need more " -"tools too." +"We could construct a radio tower to improve communication range, first step " +"is the tower structure." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a bellows and barrel" +msgid "basic radio tower" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a drop hammer for some mass production." +msgid "We need to build a console to control the radio tower." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a drop hammer." +msgid "basic radio console" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with standard walls, we'll use that far " -"vehicle bay." -msgstr "" +msgid "Survey land for a kitchen." +msgstr "Pesquisa terra para uma cozinha." #: lang/json/recipe_from_json.py -msgid "build the standard white living quarters walls" +msgid "Kitchen survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with wood panel walls, we'll use that far " -"vehicle bay." -msgstr "" +msgid "Building a cook-shack is our first task." +msgstr "Construir um barraco de cozinha é a nossa primeira tarefa." #: lang/json/recipe_from_json.py -msgid "build the wood panel living quarters walls" +msgid "Kitchen fireplace shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with log walls, we'll use that far vehicle " -"bay." +msgid "We need to finish framing the walls for the cook-shack." msgstr "" +"Precisamos terminar de enquadrar as paredes para o barraco de cozinha." #: lang/json/recipe_from_json.py -msgid "build the log living quarters walls" +msgid "Kitchen finished shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with metal walls, we'll use that far vehicle " -"bay." +"Expanding the shack by including a smoker will increase our versatility." msgstr "" +" Expandir o barraco, incluindo um fumante, aumentará nossa versatilidade." #: lang/json/recipe_from_json.py -msgid "build the metal living quarters walls" +msgid "Kitchen charcoal smoker" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with mi-go resin walls, we'll use that far " -"vehicle bay." +msgid "A pantry will allow our cooks to store more non-perishables." msgstr "" +" Uma despensa permitirá que nossos cozinheiros armazenem mais não- " +"perecíveis." #: lang/json/recipe_from_json.py -msgid "build the mi-go resin living quarters walls" +msgid "Kitchen pantry expansion" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with rammed earth walls, we'll use that far " -"vehicle bay." +"Increasing our number of smoking racks will let us craft larger batches." msgstr "" +" Aumentar nosso número de prateleiras de fumantes nos permitirá fabricar " +"lotes maiores." #: lang/json/recipe_from_json.py -msgid "build the rammed earth living quarters walls" +msgid "Kitchen more smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with rock walls, we'll use that far vehicle " -"bay." +msgid "A well is needed so our cooks don't have to haul in water." msgstr "" +" Um poço é necessário para que nossos cozinheiros não precisem puxar água." #: lang/json/recipe_from_json.py -msgid "build the rock earth living quarters walls" +msgid "Kitchen water well" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with wattle and daub walls, we'll use that far" -" vehicle bay." -msgstr "" - -#: lang/json/recipe_from_json.py -msgid "build the wattle and daub living quarters walls" +"Wood stoves will give us greater control of temperatures and let us craft " +"more difficult recipes." msgstr "" +" Os fogões a lenha nos darão um controle maior das temperaturas e nos " +"permitirão criar receitas mais difíceis." #: lang/json/recipe_from_json.py -msgid "We should survey the roof top and set up a bulletin board." +msgid "Kitchen wood stoves" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a fireplace in the northeast " -"shack." +"Finally, expanding the pantry further will let us store additional " +"materials." msgstr "" +" Finalmente, a expansão da despensa nos permitirá armazenar materiais " +"adicionais." #: lang/json/recipe_from_json.py -msgid "northeast fireplace" -msgstr "lareira nordeste" +msgid "Kitchen expanded pantry" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should set up a brazier in the northeast " -"shack." +"A trench that may deter movement but is meant to be the foundation of a " +"picket or palisade. Requirements are for 1/2 an over map tile." msgstr "" - -#: lang/json/recipe_from_json.py -msgid "northeast brazier" -msgstr "braseiro nordeste" +" Uma trincheira que pode impedir o movimento, mas deve ser a base de um " +"piquete ou paliçada. Os requisitos são para 1/2 um over map tile." #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a stove in the northeast shack." +"A deep trench filled with spikes, requires a trench. Requirements are for " +"1/2 an over map tile." msgstr "" +" Uma vala profunda cheia de pontas requer uma trincheira. Os requisitos são " +"para 1/2 um over map tile." #: lang/json/recipe_from_json.py -msgid "northeast stove" -msgstr "forno nordeste" +msgid "Survey land for a blacksmith shop." +msgstr "Terra de pesquisa para uma oficina de ferreiro." #: lang/json/recipe_from_json.py -msgid "A straw bed in the northeast shack will make sleeping easier." +msgid "Blacksmithy survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast straw bed" -msgstr "camas de palha nordeste" +msgid "Building a forge and kiln is our first task." +msgstr "Construir uma forja e forno é a nossa primeira tarefa." #: lang/json/recipe_from_json.py -msgid "" -"A proper bed in the northeast shack will give one of us a place to sleep " -"soundly." +msgid "Blacksmithy forge and kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast bed" -msgstr "camas nordeste" +msgid "Building a proper roof for the shop is the next step." +msgstr "Construir um telhado adequado para a loja é o próximo passo." #: lang/json/recipe_from_json.py -msgid "Another straw bed in the northeast shack will make sleeping easier." +msgid "Blacksmithy roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Another proper bed in the northeast shack will give one of us a place to " -"sleep soundly." +msgid "Building a working table and placing an anvil are next." msgstr "" +" Construindo uma mesa de trabalho e colocando uma bigorna são os próximos." #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the east tent will allow us to house two more people" -" and expand the camp." +msgid "Blacksmithy anvil and workbench" msgstr "" -#: lang/json/recipe_from_json.py -msgid "east straw beds" -msgstr "camas de palha leste" - #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the east tent will allow us to house two more " -"people and expand the camp." +"If we're going to do more than simple metal casting we need a bigger shop." msgstr "" +" Se vamos fazer mais do que simples fundição de metal, precisamos de uma " +"loja maior." #: lang/json/recipe_from_json.py -msgid "east beds" -msgstr "camas leste" - -#: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the east room will allow us to house two more people" -" and expand the camp." +msgid "Blacksmithy expanded shop" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the east room will allow us to house two more " -"people and expand the camp." +msgid "We need some basic tools to make more advanced crafts." msgstr "" +" Precisamos de algumas ferramentas básicas para fazer artesanato mais " +"avançado." #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southeast tent will allow us to house two more " -"people and expand the camp." +msgid "Blacksmithy forging tools" msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast straw beds" -msgstr "camas de palha sudeste" +msgid "An expanded forge will allow us to work on bigger projects." +msgstr "Uma forja expandida nos permitirá trabalhar em projetos maiores." #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southeast tent will allow us to house two more " -"people and expand the camp." +msgid "Blacksmithy expanded forge" msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast beds" -msgstr "camas sudeste" +msgid "Proper steel work requires a bellows and quenching setup." +msgstr "Trabalho de aço adequado requer uma configuração de fole e têmpera." #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southeast room will allow us to house two more " -"people and expand the camp." +msgid "Blacksmithy bellows and quenching barrels" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southeast room will allow us to house two more " -"people and expand the camp." -msgstr "" +msgid "A separate workshop will allow us to do the most basic of machining." +msgstr "Uma oficina separada nos permitirá fazer o mais básico de usinagem." #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the northwest building will allow us to house two " -"more people and expand the camp." +msgid "Blacksmithy machine shop" msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest straw beds" -msgstr "camas de palha noroeste" +msgid "Next we need to add some basic tools and vises to the workshop." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the northwest building will allow us to house two " -"more people and expand the camp." +msgid "Blacksmithy machine shop tools" msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest beds" -msgstr "camas noroeste" +msgid "Advanced forging processes require more room to work." +msgstr "Processos avançados de forjamento exigem mais espaço para trabalhar." #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the west tent will allow us to house two more people" -" and expand the camp." +msgid "Blacksmithy machine shop expansion" msgstr "" #: lang/json/recipe_from_json.py -msgid "west straw beds" -msgstr "camas de palha oeste" - -#: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the west tent will allow us to house two more " -"people and expand the camp." +msgid "An on-site well will allow us to fill boilers as needed." msgstr "" +" Um poço no local nos permitirá encher as caldeiras conforme necessário." #: lang/json/recipe_from_json.py -msgid "west beds" -msgstr "camas oeste" +msgid "Blacksmithy well" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the west room will allow us to house two more people" -" and expand the camp." +"A steam-powered drop hammer will greatly increase production speed in " +"exchange for charcoal." msgstr "" +" Um martelo drop movido a vapor aumentará muito a velocidade de produção em " +"troca de carvão." #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the west room will allow us to house two more " -"people and expand the camp." +msgid "Blacksmithy drop hammer" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the southwest tent will allow us to house two more " -"people and expand the camp." +"We should build a fireplace for cooking and grab a pot. Let's set up near " +"the working terminal." msgstr "" -#: lang/json/recipe_from_json.py -msgid "southwest straw beds" -msgstr "camas de palha sudoeste" - #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the southwest tent will allow us to house two more " -"people and expand the camp." +"We should build a brazier for cooking and grab a pot. Let's set up near the" +" working terminal." msgstr "" -#: lang/json/recipe_from_json.py -msgid "southwest beds" -msgstr "camas sudoeste" - #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the southwest room will allow us to house two more " -"people and expand the camp." +"We should build a wood stove for cooking and grab a pot. Let's set up near " +"the working terminal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the southwest room will allow us to house two more " -"people and expand the camp." +"We should build a well, put it near the terminal. This will make our future" +" here more secure." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A fireplace, counter, and some pots and pans in the central building will " -"allow us to cook simple recipes and organize hunting expeditions." +msgid "Let's furnish the southeast bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central fireplace" -msgstr "lareira central" +msgid "Let's furnish the east bedroom with regular beds." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need a butchery rack to maximize the harvest from our hunting and " -"trapping efforts." +msgid "furnish the E bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "central butchery rack" +msgid "Let's furnish the southeast bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A tool rack in the central building will give us a place to store tools." +msgid "Let's furnish the east bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central tool rack" +msgid "Let's furnish the southeast bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Setting up some tables and chairs will make the central building into a " -"dining area, and we can also use them as a workspace to organize the camp." +msgid "Let's furnish the east bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central dining hall" +msgid "Let's furnish the southwest bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "south dining hall" +msgid "Let's furnish the west bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A wood stove, counter, and some pots and pans in the south half of the " -"central building will allow us to cook simple recipes and organize hunting " -"expeditions. The stove will be more efficient than a fireplace." +msgid "furnish the W bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "south wood stove" +msgid "Let's furnish the northwest bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "north water well" -msgstr "poço de água norte" +msgid "Let's furnish the southwest bedroom with straw beds." +msgstr "" #: lang/json/recipe_from_json.py -msgid "north root cellar" +msgid "Let's furnish the west bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "We could build a radio tower to improve the range of our radios." +msgid "Let's furnish the northwest bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "north radio tower" +msgid "Let's furnish the southwest bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Adding a console to control the radio tower will help with recruiting more " -"survivors." +msgid "Let's furnish the west bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "north radio console" +msgid "Let's furnish the northwest bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the north edge of the camp would provide some defense" -" and generate building materials." +msgid "Let's make a dining area." msgstr "" #: lang/json/recipe_from_json.py -msgid "north trench" -msgstr "trincheira norte" +msgid "furnish the dining room" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the south edge of the camp would provide some defense" -" and generate building materials." +msgid "Let's make a living room area." msgstr "" #: lang/json/recipe_from_json.py -msgid "south trench" -msgstr "trincheira sul" +msgid "furnish the living room" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the northeast corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the east side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +msgid "Let's build some pantry storage." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast trench" -msgstr "trincheira nordeste" +msgid "build some wooden racks" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the northwest corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the west side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +msgid "Let's build a work bench." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest trench" -msgstr "trincheira noroeste" +msgid "build a work bench" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the southeast corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the east side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +"Let's build some living quarters so we can expand. We will start in the " +"southeast corner." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast trench" -msgstr "trincheira sudeste" +msgid "build SE log bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the southwest corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the west side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +"Let's build some living quarters so we can expand. We will continue along " +"the same wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest trench" -msgstr "trincheira sudoeste" +msgid "build E log bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the east edge of the camp would provide some defense " -"and generate building materials. We'll need to run the trench the length of" -" the camp if we don't have solid buildings all along the east side." +"Let's build some living quarters so we can expand. We will continue along " +"the other wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "east trench" -msgstr "trincheira leste" - -#: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the west edge of the camp would provide some defense " -"and generate building materials. We'll need to run the trench the length of" -" the camp if we don't have solid buildings all along the west side." +msgid "build SW log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "west trench" -msgstr "trincheira oeste" +msgid "build W log bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a log shack with a wooden roof on the" -" northeast side of the camp" +msgid "build NW log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast shack" +msgid "build SE rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use logs to expand the shelter so we have space for another bed." +msgid "build E rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "expand northeast shack" +msgid "build SW rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use logs to finish the northeast shack." +msgid "build W rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "finish northeast shack" +msgid "build NW rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the east side, " -"which we can also use as part of the central building." +msgid "build SE standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east shack" +msgid "build E standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the east side, which we" -" can also use as part of the central building." +msgid "build SW standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east room" -msgstr "sala leste" +msgid "build W standard bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the southeast " -"side, which we can also use as part of the central building." +msgid "build NW standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast shack" +msgid "build SE wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the southeast side, " -"which we can also use as part of the central building." +msgid "build E wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast room" -msgstr "sala sudeste" +msgid "build SW wattle and daub bedroom walls" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the northwest " -"side, which we can also use as part of the central building." +msgid "build W wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest shack" +msgid "build NW wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the west side, " -"which we can also use as part of the central building." +msgid "build SE wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "west shack" +msgid "build E wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the west side, which we" -" can also use as part of the central building." +msgid "build SW wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "west room" +msgid "build W wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the southwest " -"side, which we can also use as part of the central building." +msgid "build NW wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest shack" -msgstr "" +msgid "Let's furnish the southeast bedroom with a regular bed." +msgstr "Vamos mobiliar o quarto sudeste com uma cama comum." #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the southwest side, " -"which we can also use as part of the central building." -msgstr "" +msgid "Let's furnish the southeast bedroom with a straw bed." +msgstr "Vamos mobiliar o quarto sudeste com uma cama de palha." #: lang/json/recipe_from_json.py -msgid "southwest room" -msgstr "" +msgid "Let's furnish the west bedroom with a straw bed." +msgstr "Vamos mobiliar o quarto oeste com uma cama de palha." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from logs." -msgstr "" +msgid "Let's furnish the southeast bedroom with a makeshift bed." +msgstr "Vamos mobiliar o quarto sudeste com uma cama improvisada." #: lang/json/recipe_from_json.py -msgid "central building NE corner" -msgstr "" +msgid "Let's furnish the west bedroom with a makeshift bed." +msgstr "Vamos mobiliar o quarto oeste com uma cama improvisada." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with logs." -msgstr "" +msgid "Let's furnish the southwest bedroom with a regular bed." +msgstr "Vamos mobiliar o quarto sudoeste com uma cama comum." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from logs." -msgstr "" +msgid "Let's furnish the southwest bedroom with a straw bed." +msgstr "Vamos mobiliar o quarto sudoeste com uma cama de palha." #: lang/json/recipe_from_json.py -msgid "central building NW corner" -msgstr "" +msgid "Let's furnish the southwest bedroom with a makeshift bed." +msgstr "Vamos mobiliar o quarto sudoeste com uma cama improvisada." #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with logs." +msgid "Let's furnish the southern bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with logs." -msgstr "" +msgid "furnish the S bedroom" +msgstr "mobiliar o quarto sul" #: lang/json/recipe_from_json.py -msgid "central building north half" +msgid "Let's furnish the southern bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from logs." +msgid "Let's furnish the southern bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building SE corner" +msgid "" +"Let's build some living quarters so we can expand. We will start in the " +"northwest corner." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with logs." +"Let's build some living quarters so we can expand. We will continue along " +"the west wall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from logs." +"Let's build some living quarters so we can expand. We will continue along " +"the southwest corner." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building SW corner" +msgid "" +"Let's build some living quarters so we can expand. We will continue along " +"the south wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with logs." +msgid "build S log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with logs." +msgid "build S rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "central building south half" +msgid "build S standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a metal shack with a metal roof on " -"the northeast side of the camp" +msgid "build S wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use metal to expand the shelter so we have space for another bed." +msgid "build NW wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use metal to finish the northeast shack." +msgid "build W wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the east " -"side, which we can also use as part of the central building." +msgid "build SW wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the east side, which " -"we can also use as part of the central building." +msgid "build S wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a metal building on the southeast" -" side, which we can also use as part of the central building." +"We should build a well, across from the terminal. This will make our future" +" here more secure." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the southeast side, " -"which we can also use as part of the central building." +msgid "Let's furnish the northwest bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the northwest" -" side, which we can also use as part of the central building." +msgid "Let's furnish the west bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the west " -"side, which we can also use as part of the central building." +msgid "Let's furnish the west bedroom with regular a bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the west side, which " -"we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the southwest" -" side, which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the southwest side, " -"which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from metal." +msgid "Let's furnish the eastern bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with metal." +msgid "Let's furnish the eastern bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from metal." +msgid "Let's furnish the eastern bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with metal." +"Let's build some living quarters so we can expand. We will enclose the west" +" side of the stairs." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with metal." +"Let's build two living quarters so we can expand. We will continue along " +"the south wall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from metal." +"Let's build another bedroom so we can expand. We will continue to enclose " +"the stairwell and add new doors." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with metal." +msgid "build central E bedroom log walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from metal." +msgid "Let's build another bedroom on the east wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with metal." +msgid "build E bedroom log walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with metal." +msgid "build central E bedroom rock walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a mi-go resin shack with a sod roof " -"on the northeast side of the camp" +msgid "build E bedroom rock walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use mi-go resin to expand the shelter so we have space for another" -" bed." +msgid "build central E bedroom standard walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use mi-go resin to finish the northeast shack." +msgid "build E bedroom standard walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"east side, which we can also use as part of the central building." +msgid "build central E bedroom wattle and daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the east side, " -"which we can also use as part of the central building." +msgid "build E bedroom wattle and daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"southeast side, which we can also use as part of the central building." +msgid "build S wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the southeast " -"side, which we can also use as part of the central building." +msgid "build central E bedroom wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"northwest side, which we can also use as part of the central building." +msgid "build E bedroom wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"west side, which we can also use as part of the central building." +msgid "Survey land for a kitchen and dining area." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a mi-go resin room on the west side, " -"which we can also use as part of the central building." +"Now that we have some cover, we should build 2 fireplaces for cooking and " +"grab a pot." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"southwest side, which we can also use as part of the central building." +msgid "build 2 fireplaces" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a mi-go resin room on the southwest " -"side, which we can also use as part of the central building." +"Now that we have some cover, we should build 2 stoves for cooking and grab a" +" pot." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from mi-go resin." +msgid "build 2 wood stoves" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with mi-go resin." +msgid "We should build a well. This will make cooking more convenient." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from mi-go resin." +msgid "Let's build some counters and shelves." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with mi-go resin." +msgid "build kitchen counters" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with mi-go resin." +msgid "build 3 smoking racks and a charcoal kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from mi-go resin." +msgid "Lets furnish the pantry and build 2 root cellars." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with mi-go resin." +msgid "furnish the pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from mi-go resin." +msgid "Let's make some furniture for the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with mi-go resin." +msgid "Let's build some planters to the north for a chef's garden." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with mi-go resin." +msgid "build some planters" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a rammed earth shack with a sod roof " -"on the northeast side of the camp" +msgid "Let's start building the central kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use rammed earth to expand the shelter so we have space for " -"another bed." +msgid "build the log wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use rammed earth to finish the northeast shack." +msgid "Let's finish the central kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"east side, which we can also use as part of the central building." +msgid "finish the log wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a rammed earth room on the east side," -" which we can also use as part of the central building." +"Let's get this log wall smoking area covered to protect the workers from the" +" weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"southeast side, which we can also use as part of the central building." +msgid "build a log wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the southeast " -"side, which we can also use as part of the central building." +msgid "Let's build a log wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"northwest side, which we can also use as part of the central building." +msgid "build a log wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"west side, which we can also use as part of the central building." +msgid "Let's build the west log wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the west side," -" which we can also use as part of the central building." +msgid "build W log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's build the east log wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the southwest " -"side, which we can also use as part of the central building." +msgid "build E log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from rammed earth." +msgid "Let's build the center of the log wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with rammed earth." +msgid "build center of the log wall dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from rammed earth." +msgid "Let's start building the central kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with rammed earth." +msgid "build the metal wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with rammed earth." +msgid "Let's finish the central kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from rammed earth." +msgid "finish the metal wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with rammed earth." +"Let's get this metal wall smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from rammed earth." +msgid "build a metal wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with rammed earth." +msgid "Let's build a metal wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with rammed earth." +msgid "build a metal wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a stone shack with a wooden roof on " -"the northeast side of the camp" +msgid "Let's build the west metal wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use rocks to expand the shelter so we have space for another bed." +msgid "build W metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use rocks to finish the northeast shack." +msgid "Let's build the east metal wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the east side," -" which we can also use as part of the central building." +msgid "build E metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the east side, which " -"we can also use as part of the central building." +msgid "Let's build the center of the metal wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the southeast " -"side, which we can also use as part of the central building." +msgid "build center of the metal wall dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the southeast side, " -"which we can also use as part of the central building." +msgid "Let's start building the central kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the northwest " -"side, which we can also use as part of the central building." +msgid "build the mi-go resin central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the west side," -" which we can also use as part of the central building." +msgid "Let's finish the central kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the west side, which " -"we can also use as part of the central building." +msgid "finish the mi-go resin central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a rock building on the southwest " -"side, which we can also use as part of the central building." +"Let's get this mi-go resin smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the southwest side, " -"which we can also use as part of the central building." +msgid "build a mi-go resin roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from rocks." +msgid "Let's build a mi-go resin wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with rocks." +msgid "build a mi-go resin pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from rocks." +msgid "Let's build the west mi-go resin wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with rocks." +msgid "build W mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with rocks." +msgid "Let's build the east mi-go resin wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from rocks." +msgid "build E mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with rocks." +msgid "Let's build the center of the mi-go resin dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from rocks." +msgid "build center of the mi-go resin dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with rocks." +msgid "Let's start building the central kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with rocks." +msgid "build the rammed earth central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so set up a tent on the northeast side of the camp." +msgid "Let's finish the central kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast tent" -msgstr "tenda nordeste" +msgid "finish the rammed earth central kitchen room" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a tent on the east side, though " -"doing so will mean we need more materials to build the central building." +"Let's get this rammed earth smoking area covered to protect the workers from" +" the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "east tent" -msgstr "tenda leste" +msgid "build a rammed earth roofed area for smoking racks" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the southeast side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's build a rammed earth wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast tent" -msgstr "tenda sudeste" +msgid "build a rammed earth pantry" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the northwest side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's build the west rammed earth wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest tent" -msgstr "tenda noroeste" +msgid "build W rammed earth wall" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the west side, though " -"doing so will mean we need more materials to build the central building." +msgid "Let's build the east rammed earth wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "west tent" -msgstr "tenda oeste" +msgid "build E rammed earth wall" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the southwest side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's build the center of the rammed earth dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest tent" -msgstr "tenda sudoeste" +msgid "build center of the rammed earth dining hall" +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a wattle-and-daub shack with a sod " -"roof on the northeast side of the camp" +msgid "Let's start building the central kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use wattle-and-daub to expand the shelter so we have space for " -"another bed." +msgid "build the central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use wattle-and-daub to finish the northeast shack." +msgid "Let's finish the central kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" east side, which we can also use as part of the central building." +msgid "finish the rock wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a wattle-and-daub room on the east " -"side, which we can also use as part of the central building." +"Let's get this rock wall smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" southeast side, which we can also use as part of the central building." +msgid "build a rock wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the " -"southeast side, which we can also use as part of the central building." +msgid "Let's build a rock wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" northwest side, which we can also use as part of the central building." +msgid "build a rock wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" west side, which we can also use as part of the central building." +msgid "Let's build the west rock wall of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the west " -"side, which we can also use as part of the central building." +msgid "build W rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" southwest side, which we can also use as part of the central building." +msgid "Let's build the east rock wall of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the " -"southwest side, which we can also use as part of the central building." +msgid "build E rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from wattle-and-daub." +msgid "Let's build the center of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with wattle-and-daub." +msgid "build center of the rock dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from wattle-and-daub." +msgid "Let's start building the central kitchen wattle and daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with wattle-and-daub." +msgid "build the wattle and daub central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with wattle-and-daub." +msgid "Let's finish the central kitchen wattle and daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from wattle-and-daub." +msgid "finish the wattle and daub central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with wattle-and-daub." +"Let's get this wattle and daub smoking area covered to protect the workers " +"from the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from wattle-and-daub." +msgid "build a wattle and daub roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with wattle-and-daub." +msgid "Let's build a wattle and daub wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with wattle-and-daub." +msgid "build a wattle and daub pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a wood panel shack with a wooden roof" -" on the northeast side of the camp" +msgid "Let's build the west wattle and daub wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use wood panel to expand the shelter so we have space for another " -"bed." +msgid "build W wattle and daub wall" msgstr "" -"Deveríamos usar painéis de madeira para expandir o abrigo para que tenhamos " -"espaço para mais uma cama." #: lang/json/recipe_from_json.py -msgid "We should use wood panel to finish the northeast shack." -msgstr "Deveríamos usar painéis de madeira para terminar a cabana nordeste." +msgid "Let's build the east wattle and daub wall of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the east" -" side, which we can also use as part of the central building." +msgid "build E wattle and daub wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the east side, " -"which we can also use as part of the central building." +msgid "Let's build the center of the wattle and daub dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"southeast side, which we can also use as part of the central building." +msgid "build center of the wattle and daub dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the southeast " -"side, which we can also use as part of the central building." +msgid "Let's start building the central kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"northwest side, which we can also use as part of the central building." +msgid "build the wood panel central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the west" -" side, which we can also use as part of the central building." +msgid "Let's finish the central kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the west side, " -"which we can also use as part of the central building." +msgid "finish the wood panel central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a wood panel building on the " -"southwest side, which we can also use as part of the central building." +"Let's get this wood panel smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the southwest " -"side, which we can also use as part of the central building." +msgid "build a wood panel roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from wood panel." +msgid "Let's build a wood panel pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with wood panel." +msgid "build a wood panel pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from wood panel." +msgid "Let's build the west wood panel wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with wood panel." +msgid "build W wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with wood panel." +msgid "Let's build the east wood panel wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from wood panel." +msgid "build E wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with wood panel." +msgid "Let's build the center of the wood panel dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from wood panel." +msgid "build center of the dining hall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with wood panel." +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with wood panel." +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to survey the base site first." +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"The first thing we are going to need is a command tent to manage and task " -"workers from." +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." msgstr "" -" A primeira coisa que vamos precisar é de uma tenda de comando para " -"gerenciar e encarregar os trabalhadores." #: lang/json/recipe_from_json.py -msgid "basic northeast tent" +msgid "Lets build 2 root cellars in the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We're going to need a fire pit and a bed if we want to stay here " -"permanently." +msgid "build root cellars" msgstr "" -" Nós vamos precisar de uma fogueira e uma cama se quisermos ficar aqui " -"permanentemente." #: lang/json/recipe_from_json.py -msgid "basic firepit" +msgid "Lets furnish the pantry." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"To make this outpost functional we are going to need storage containers to " -"organize our supplies." +msgid "Let's build some planters for a chef's garden." msgstr "" -" Para tornar esse posto avançado funcional, precisaremos de recipientes de " -"armazenamento para organizar nossos suprimentos." #: lang/json/recipe_from_json.py -msgid "basic storage" +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Next we should expand the camp to comfortably support two people " -"indefinitely." +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." msgstr "" -" Em seguida, devemos expandir o acampamento para apoiar confortavelmente " -"duas pessoas indefinidamente." #: lang/json/recipe_from_json.py -msgid "basic northeast bed" +msgid "build salt water tanks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Additional housing and storage will allow our camp to expand into " -"specialized industries." +msgid "Let's install some vats in the brewery" msgstr "" -" Habitação e armazenamento adicionais permitirão que nosso acampamento se " -"expanda em indústrias especializadas." #: lang/json/recipe_from_json.py -msgid "basic northwest tent" +msgid "install some brewery vats" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Constructing a hard command post will transform our little camp into a true " -"base." +msgid "Let's install some racks for storage in the brewery" msgstr "" -" Construir um posto de comando rígido transformará nosso pequeno acampamento" -" em uma base verdadeira." #: lang/json/recipe_from_json.py -msgid "basic central building" +msgid "install some brewery racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Building additional housing will allow us to send companions out to find " -"recruits." +msgid "Let's install a still in the brewery" msgstr "" -" Construir habitação adicional nos permitirá enviar companheiros para " -"encontrar recrutas." #: lang/json/recipe_from_json.py -msgid "basic west tent" +msgid "install a still in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to expand our base to include basic dining facilities." +msgid "Let's build a windmill to allow us to grid flour efficiently" msgstr "" -" Precisamos expandir nossa base para incluir instalações básicas de " -"refeições." #: lang/json/recipe_from_json.py -msgid "basic central kitchen" +msgid "build a windmill" msgstr "" #: lang/json/recipe_from_json.py -msgid "More housing means that we can support additional specialists." -msgstr "Mais habitação significa que podemos apoiar especialistas adicionais." +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" #: lang/json/recipe_from_json.py -msgid "basic southeast tent" +msgid "build a bench and a bird bath" msgstr "" #: lang/json/recipe_from_json.py -msgid "An expanded kitchen is needed to support our growing settlement." +msgid "Let's start building the kitchen concrete walls." msgstr "" -" Uma cozinha expandida é necessária para apoiar nosso assentamento " -"crescente." #: lang/json/recipe_from_json.py -msgid "basic expanded kitchen" +msgid "build the concrete kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Finishing the hard structure will give us a more secure place to retreat to " -"if we come under attack." +msgid "Let's finish the kitchen concrete walls." msgstr "" -" Terminar a estrutura dura nos dará um lugar mais seguro para nos retirarmos" -" se formos atacados." #: lang/json/recipe_from_json.py -msgid "basic completed central building" +msgid "finish the concrete kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"I'm surprised we've made it this long without securing a clean water source," -" we need a well." +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." msgstr "" -" Estou surpreso por termos conseguido tanto tempo sem garantir uma fonte de " -"água limpa, precisamos de um poço." #: lang/json/recipe_from_json.py -msgid "basic water well" +msgid "build a concrete roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Building a strong wall will keep the base secure even if a small horde " -"attacks." +msgid "Let's build a concrete wall pantry beside of the kitchen." msgstr "" -" Construir um muro forte manterá a base segura mesmo que uma pequena horda " -"atente." #: lang/json/recipe_from_json.py -msgid "basic partial wall" +msgid "build a concrete pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to finish our half built fortifications." -msgstr "Precisamos terminar nossas fortificações meio construídas." +msgid "Let's build the first concrete part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "basic complete wall" +msgid "build first dining concrete section" msgstr "" #: lang/json/recipe_from_json.py -msgid "We're running out of room and need another living quarters." -msgstr "Estamos ficando sem espaço e precisamos de outro alojamento." +msgid "Let's build the second concrete part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "basic east tent" +msgid "build second dining concrete section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Our kitchen isn't able to keep up with demand, we need to expand it." +msgid "Let's build a the concrete brewery." msgstr "" -" Nossa cozinha não é capaz de acompanhar a demanda, precisamos expandi-la." #: lang/json/recipe_from_json.py -msgid "basic dining hall" +msgid "build concrete brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build stronger doors to secure our compound." -msgstr "Devemos construir portas mais fortes para proteger nosso composto." +msgid "Let's start building the kitchen log walls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "basic reinforced gates" +msgid "build the log kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "One more tent and our living space will be full." +msgid "Let's finish the kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic southwest tent" +msgid "finish the log kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could construct a radio tower to improve communication range, first step " -"is the tower structure." +"Let's get this log smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic radio tower" +msgid "build a log roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to build a console to control the radio tower." +msgid "Let's build a log wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic radio console" +msgid "build a log pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen." -msgstr "Pesquisa terra para uma cozinha." +msgid "Let's build the first log part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen survey" +msgid "build first dining log section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a cook-shack is our first task." -msgstr "Construir um barraco de cozinha é a nossa primeira tarefa." +msgid "Let's build the second log part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen fireplace shack" +msgid "build second dining log section" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to finish framing the walls for the cook-shack." +msgid "Let's build a the log brewery." msgstr "" -"Precisamos terminar de enquadrar as paredes para o barraco de cozinha." #: lang/json/recipe_from_json.py -msgid "Kitchen finished shack" +msgid "build log brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Expanding the shack by including a smoker will increase our versatility." +msgid "Let's start building the kitchen metal walls." msgstr "" -" Expandir o barraco, incluindo um fumante, aumentará nossa versatilidade." #: lang/json/recipe_from_json.py -msgid "Kitchen charcoal smoker" +msgid "build the metal kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "A pantry will allow our cooks to store more non-perishables." +msgid "Let's finish the kitchen metal walls." msgstr "" -" Uma despensa permitirá que nossos cozinheiros armazenem mais não- " -"perecíveis." #: lang/json/recipe_from_json.py -msgid "Kitchen pantry expansion" +msgid "finish the metal kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Increasing our number of smoking racks will let us craft larger batches." +"Let's get this metal smoking area covered to protect the workers from the " +"weather." msgstr "" -" Aumentar nosso número de prateleiras de fumantes nos permitirá fabricar " -"lotes maiores." #: lang/json/recipe_from_json.py -msgid "Kitchen more smoking racks" +msgid "build a metal roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "A well is needed so our cooks don't have to haul in water." +msgid "Let's build a metal wall pantry beside of the kitchen." msgstr "" -" Um poço é necessário para que nossos cozinheiros não precisem puxar água." #: lang/json/recipe_from_json.py -msgid "Kitchen water well" +msgid "build a metal pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Wood stoves will give us greater control of temperatures and let us craft " -"more difficult recipes." +msgid "Let's build the first metal part of the dining hall." msgstr "" -" Os fogões a lenha nos darão um controle maior das temperaturas e nos " -"permitirão criar receitas mais difíceis." #: lang/json/recipe_from_json.py -msgid "Kitchen wood stoves" +msgid "build first dining metal section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Finally, expanding the pantry further will let us store additional " -"materials." +msgid "Let's build the second metal part of the dining hall." msgstr "" -" Finalmente, a expansão da despensa nos permitirá armazenar materiais " -"adicionais." #: lang/json/recipe_from_json.py -msgid "Kitchen expanded pantry" +msgid "build second dining metal section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A trench that may deter movement but is meant to be the foundation of a " -"picket or palisade. Requirements are for 1/2 an over map tile." +msgid "Let's build a the metal brewery." msgstr "" -" Uma trincheira que pode impedir o movimento, mas deve ser a base de um " -"piquete ou paliçada. Os requisitos são para 1/2 um over map tile." #: lang/json/recipe_from_json.py -msgid "" -"A deep trench filled with spikes, requires a trench. Requirements are for " -"1/2 an over map tile." +msgid "build metal brewery" msgstr "" -" Uma vala profunda cheia de pontas requer uma trincheira. Os requisitos são " -"para 1/2 um over map tile." #: lang/json/recipe_from_json.py -msgid "Survey land for a blacksmith shop." -msgstr "Terra de pesquisa para uma oficina de ferreiro." +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy survey" +msgid "build the mi-go resin kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a forge and kiln is our first task." -msgstr "Construir uma forja e forno é a nossa primeira tarefa." +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy forge and kiln" +msgid "finish the mi-go resin kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a proper roof for the shop is the next step." -msgstr "Construir um telhado adequado para a loja é o próximo passo." +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy roof" +msgid "Let's build the first mi-go resin part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a working table and placing an anvil are next." +msgid "build first dining mi-go resin section" msgstr "" -" Construindo uma mesa de trabalho e colocando uma bigorna são os próximos." #: lang/json/recipe_from_json.py -msgid "Blacksmithy anvil and workbench" +msgid "Let's build the second mi-go resin part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"If we're going to do more than simple metal casting we need a bigger shop." +msgid "build second dining mi-go resin section" msgstr "" -" Se vamos fazer mais do que simples fundição de metal, precisamos de uma " -"loja maior." #: lang/json/recipe_from_json.py -msgid "Blacksmithy expanded shop" +msgid "Let's build a the mi-go resin brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "We need some basic tools to make more advanced crafts." +msgid "build mi-go resin brewery" msgstr "" -" Precisamos de algumas ferramentas básicas para fazer artesanato mais " -"avançado." #: lang/json/recipe_from_json.py -msgid "Blacksmithy forging tools" +msgid "Let's start building the kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "An expanded forge will allow us to work on bigger projects." -msgstr "Uma forja expandida nos permitirá trabalhar em projetos maiores." +msgid "build the rammed earth kitchen" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy expanded forge" +msgid "Let's finish the kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Proper steel work requires a bellows and quenching setup." -msgstr "Trabalho de aço adequado requer uma configuração de fole e têmpera." +msgid "finish the rammed earth kitchen" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy bellows and quenching barrels" +msgid "Let's build a rammed earth wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "A separate workshop will allow us to do the most basic of machining." -msgstr "Uma oficina separada nos permitirá fazer o mais básico de usinagem." +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop" +msgid "build first dining rammed earth section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Next we need to add some basic tools and vises to the workshop." +msgid "Let's build the second rammed earth part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop tools" +msgid "build second dining rammed earth section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Advanced forging processes require more room to work." -msgstr "Processos avançados de forjamento exigem mais espaço para trabalhar." +msgid "Let's build a the rammed earth brewery." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop expansion" +msgid "build rammed earth brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "An on-site well will allow us to fill boilers as needed." +msgid "Let's start building the kitchen rock walls." msgstr "" -" Um poço no local nos permitirá encher as caldeiras conforme necessário." #: lang/json/recipe_from_json.py -msgid "Blacksmithy well" +msgid "build the rock kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A steam-powered drop hammer will greatly increase production speed in " -"exchange for charcoal." +msgid "Let's finish the kitchen rock walls." msgstr "" -" Um martelo drop movido a vapor aumentará muito a velocidade de produção em " -"troca de carvão." #: lang/json/recipe_from_json.py -msgid "Blacksmithy drop hammer" +msgid "finish the rock kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a fireplace for cooking and grab a pot. Let's set up near " -"the working terminal." +"Let's get this rock smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a brazier for cooking and grab a pot. Let's set up near the" -" working terminal." +msgid "build a rock roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a wood stove for cooking and grab a pot. Let's set up near " -"the working terminal." +msgid "Let's build a rock wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a well, put it near the terminal. This will make our future" -" here more secure." +msgid "build a rock pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with regular beds." +msgid "Let's build the first rock part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with regular beds." +msgid "build first dining rock section" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the E bedroom" +msgid "Let's build the second rock part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with straw beds." +msgid "build second dining rock section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with straw beds." +msgid "Let's build a the rock brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with makeshift beds." +msgid "build rock brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with makeshift beds." +msgid "Let's start building the kitchen wattle-and-daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with regular beds." +msgid "build the wattle-and-daub kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular beds." +msgid "Let's finish the kitchen wattle-and-daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the W bedroom" +msgid "finish the wattle-and-daub kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with regular beds." +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with straw beds." +msgid "build a wattle-and-daub roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with straw beds." +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with straw beds." +msgid "build a wattle-and-daub pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with makeshift beds." +msgid "Let's build the first wattle-and-daub part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with makeshift beds." +msgid "build first dining wattle-and-daub section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with makeshift beds." +msgid "Let's build the second wattle-and-daub part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a dining area." +msgid "build second dining wattle-and-daub section" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the dining room" +msgid "Let's build a the wattle-and-daub brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a living room area." +msgid "build wattle-and-daub brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the living room" +msgid "Let's start building the kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some pantry storage." +msgid "build the wood panel kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "build some wooden racks" +msgid "Let's finish the kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a work bench." +msgid "finish the wood panel kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "build a work bench" +msgid "Let's build a wood panel wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"southeast corner." +msgid "Let's build the first wood panel part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE log bedroom walls" +msgid "build first dining wood panel section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the same wall." +msgid "Let's build the second wood panel part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E log bedroom walls" +msgid "build second dining wood panel section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the other wall." +msgid "Let's build a the wood panel brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW log bedroom walls" +msgid "build wood panel brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W log bedroom walls" +msgid "Survey land for a farming area." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW log bedroom walls" +msgid "farm area survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE rock bedroom walls" -msgstr "" +msgid "Plowing a few plots should get us started." +msgstr "Arar alguns lotes deve nos ajudar a começar." #: lang/json/recipe_from_json.py -msgid "build E rock bedroom walls" +msgid "Farm basic plots" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW rock bedroom walls" +msgid "We could use a farming shed to store resources where we'll be working." msgstr "" +" Poderíamos usar um galpão agrícola para armazenar recursos onde estaremos " +"trabalhando." #: lang/json/recipe_from_json.py -msgid "build W rock bedroom walls" +msgid "Farm basic shed" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW rock bedroom walls" +msgid "" +"Our farm could be expanded by finishing the shed and adding additional " +"plots." msgstr "" +" Nossa fazenda poderia ser expandida, terminando o galpão e adicionando " +"parcelas adicionais." #: lang/json/recipe_from_json.py -msgid "build SE standard bedroom walls" +msgid "Farm upgraded shed" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E standard bedroom walls" +msgid "" +"Building a processing shack should allow us to reclaim additional seeds from" +" our byproducts." msgstr "" +" Construir uma barraca de processamento deve nos permitir recuperar sementes" +" adicionais de nossos subprodutos." #: lang/json/recipe_from_json.py -msgid "build SW standard bedroom walls" +msgid "Farm processing shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W standard bedroom walls" +msgid "Prepare a row of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW standard bedroom walls" +msgid "prepare farm plots" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE wattle and daub bedroom walls" +msgid "Prepare a second row of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wattle and daub bedroom walls" +msgid "Prepare another pair of rows of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wattle and daub bedroom walls" +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wattle and daub bedroom walls" +msgid "erect a fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wattle and daub bedroom walls" +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE wood panel bedroom walls" +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wood panel bedroom walls" +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wood panel bedroom walls" +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood panel bedroom walls" +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wood panel bedroom walls" +msgid "build a palisade gate" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a regular bed." -msgstr "Vamos mobiliar o quarto sudeste com uma cama comum." +msgid "Survey land for a garage." +msgstr "Pesquisa terra para uma garagem." #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a straw bed." -msgstr "Vamos mobiliar o quarto sudeste com uma cama de palha." +msgid "Building a tool rack should be the first priority." +msgstr "Construir um rack de ferramentas deve ser a primeira prioridade." #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a straw bed." -msgstr "Vamos mobiliar o quarto oeste com uma cama de palha." +msgid "Garage tool rack" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a makeshift bed." -msgstr "Vamos mobiliar o quarto sudeste com uma cama improvisada." +msgid "We should start construction of a roof for the garage." +msgstr "Devemos começar a construção de um telhado para a garagem." #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a makeshift bed." -msgstr "Vamos mobiliar o quarto oeste com uma cama improvisada." +msgid "Garage partial roof" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a regular bed." -msgstr "Vamos mobiliar o quarto sudoeste com uma cama comum." +msgid "Finishing out the roof will let our mechanics work rain or shine." +msgstr "" +" Terminar o telhado permitirá que nossos mecânicos trabalhem com chuva ou " +"faça sol." #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a straw bed." -msgstr "Vamos mobiliar o quarto sudoeste com uma cama de palha." +msgid "Garage completed roof" +msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a makeshift bed." -msgstr "Vamos mobiliar o quarto sudoeste com uma cama improvisada." +msgid "" +"Our garage isn't big enough to work on larger vehicles. Let's start " +"expanding it." +msgstr "" +" Nossa garagem não é grande o suficiente para funcionar em veículos maiores." +" Vamos começar a expandi-lo." #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with regular beds." +msgid "Garage partial expansion" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the S bedroom" -msgstr "mobiliar o quarto sul" +msgid "Finishing the roof will let us park RVs and buses in the garage." +msgstr "" +" Terminar o telhado nos permitirá estacionar trailers e ônibus na garagem." #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with straw beds." +msgid "Garage expanded roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with makeshift beds." +msgid "" +"Attaching quarters will let our mechanics work longer hours when needed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"northwest corner." +msgid "Garage mechanics quarters" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the west wall." +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the southwest corner." +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the south wall." +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S log bedroom walls" +msgid "build an outer palisade gate" msgstr "" #: lang/json/recipe_from_json.py -msgid "build S rock bedroom walls" +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S standard bedroom walls" +msgid "Let's start building the first garage concrete wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wattle and daub bedroom walls" +msgid "build the first concrete garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wood bedroom walls" +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood bedroom walls" +msgid "build the second concrete garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wood bedroom walls" +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wood bedroom walls" +msgid "build an inner concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a well, across from the terminal. This will make our future" -" here more secure." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with a regular bed." +msgid "extend the first wall using concrete" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a regular bed." +msgid "Let's extend the second wall to match the first one, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular a bed." +msgid "extend the second wall using concrete" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a regular bed." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a straw bed." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a makeshift bed." +msgid "Let's start building the first garage log wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a regular bed." +msgid "build the first log garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a straw bed." +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a makeshift bed." +msgid "build the second log garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will enclose the west" -" side of the stairs." +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build two living quarters so we can expand. We will continue along " -"the south wall." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build another bedroom so we can expand. We will continue to enclose " -"the stairwell and add new doors." +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom log walls" +msgid "extend the second wall using logs" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build another bedroom on the east wall." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom log walls" +msgid "Let's start building the first garage metal wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom rock walls" +msgid "build the first metal garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom rock walls" +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom standard walls" +msgid "build the second metal garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom standard walls" +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wattle and daub" +msgid "build an inner metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom wattle and daub" +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wood panel bedroom walls" +msgid "extend the first wall using metal" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wood panel bedroom walls" +msgid "Let's extend the second wall to match the first one, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom wood panel bedroom walls" +msgid "extend the second wall using metal" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen and dining area." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build 2 fireplaces for cooking and " -"grab a pot." +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2 fireplaces" +msgid "Let's start building the first garage mi-go resin wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Now that we have some cover, we should build 2 stoves for cooking and grab a" -" pot." +msgid "build the first mi-go resin garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2 wood stoves" +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build a well. This will make cooking more convenient." +msgid "build the second mi-go resin garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some counters and shelves." +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build kitchen counters" +msgid "build an inner mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3 smoking racks and a charcoal kiln" +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Lets furnish the pantry and build 2 root cellars." +msgid "extend the first wall using mi-go resin" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the pantry" +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make some furniture for the dining hall." +msgid "extend the second wall using mi-go resin" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some planters to the north for a chef's garden." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "build some planters" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen log walls." +msgid "Let's start building the first garage rammed earth wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the log wall central kitchen room" +msgid "build the first rammed earth garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen log walls." +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the log wall central kitchen room" +msgid "build the second rammed earth garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this log wall smoking area covered to protect the workers from the" -" weather." +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a log wall roofed area for smoking racks" +msgid "build an inner rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a log wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a log wall pantry" +msgid "extend the first wall using rammed earth" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west log wall of the dining hall." +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W log wall" +msgid "extend the second wall using rammed earth" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east log wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E log wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the log wall dining hall." +msgid "Let's start building the first garage rock wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the log wall dining hall" +msgid "build the first rock garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen metal walls." +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the metal wall central kitchen room" +msgid "build the second rock garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen metal walls." +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the metal wall central kitchen room" +msgid "build an inner rock wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this metal wall smoking area covered to protect the workers from " -"the weather." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metal wall roofed area for smoking racks" +msgid "extend the first wall using rock" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a metal wall pantry west of the kitchen." +msgid "Let's extend the second wall to match the first one, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metal wall pantry" +msgid "extend the second wall using rock" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west metal wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W metal wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east metal wall of the dining hall." +msgid "Let's start building the first garage wattle-and-daub wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E metal wall" +msgid "build the first wattle-and-daub garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the metal wall dining hall." +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the metal wall dining hall" +msgid "build the second wattle-and-daub garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen mi-go resin walls." +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the mi-go resin central kitchen room" +msgid "build an inner wattle-and-daub wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen mi-go resin walls." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the mi-go resin central kitchen room" +msgid "extend the first wall using wattle-and-daub" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this mi-go resin smoking area covered to protect the workers from " -"the weather." +"Let's extend the second wall to match the first one, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a mi-go resin roofed area for smoking racks" +msgid "extend the second wall using wattle-and-daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a mi-go resin wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a mi-go resin pantry" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west mi-go resin wall of the dining hall." +msgid "Let's start building the first garage wood wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W mi-go resin wall" +msgid "build the first wood garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east mi-go resin wall of the dining hall." +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E mi-go resin wall" +msgid "build the second wood garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the mi-go resin dining hall." +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the mi-go resin dining hall" +msgid "build an inner wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rammed earth walls." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rammed earth central kitchen room" +msgid "extend the first wall using wood panels" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rammed earth walls." +msgid "" +"Let's extend the second wall to match the first one, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the rammed earth central kitchen room" +msgid "extend the second wall using wood" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rammed earth smoking area covered to protect the workers from" -" the weather." +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rammed earth roofed area for smoking racks" +msgid "extend the second wall using wood panels" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rammed earth wall pantry west of the kitchen." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rammed earth pantry" +msgid "Survey land for a livestock area." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west rammed earth wall of the dining hall." +msgid "Livestock survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rammed earth wall" +msgid "" +"We could use a fence to contain our chickens and other birds, so build a " +"chickenwire fence on the east side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east rammed earth wall of the dining hall." +msgid "east coop yard" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rammed earth wall" +msgid "" +"We could use paddock for the stable, so build a split-rail fence on the " +"north side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rammed earth dining hall." +msgid "north paddock" msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the rammed earth dining hall" +msgid "" +"We could use paddock for the stable, so build a split-rail fence in the " +"center of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rock walls." +msgid "center paddock" msgstr "" #: lang/json/recipe_from_json.py -msgid "build the central kitchen room" +msgid "" +"We could use paddock for the stable, so build a split-rail fence to close " +"off the south end of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rock walls." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a log " +"shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the rock wall central kitchen room" -msgstr "" +msgid "northeast coop" +msgstr "viveiro nordeste" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rock wall smoking area covered to protect the workers from " -"the weather." +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rock wall roofed area for smoking racks" -msgstr "" +msgid "southeast storage room" +msgstr "depósito sudeste" #: lang/json/recipe_from_json.py -msgid "Let's build a rock wall pantry west of the kitchen." +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rock wall pantry" -msgstr "" +msgid "southwest stable" +msgstr "estábulo sudoeste" #: lang/json/recipe_from_json.py -msgid "Let's build the west rock wall of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the west" +" side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rock wall" -msgstr "" +msgid "west stable" +msgstr "estábulo oeste" #: lang/json/recipe_from_json.py -msgid "Let's build the east rock wall of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the " +"northwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rock wall" +msgid "northwest stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rock wall dining hall." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"metal sheet shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the rock dining hall" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal sheet shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wattle and daub walls." +msgid "" +"We could use a stable for larger livestock, so build a metal sheet shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wattle and daub central kitchen room" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a mi-" +"go resin shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wattle and daub walls." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the wattle and daub central kitchen room" +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wattle and daub smoking area covered to protect the workers " -"from the weather." +"We could use a coop to contain our chickens and other birds, so build a " +"rammed earth shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub roofed area for smoking racks" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a wattle and daub wall pantry west of the kitchen." +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub pantry" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"stone shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west wattle and daub wall of the dining hall." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"stone shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wattle and daub wall" +msgid "" +"We could use a stable for larger livestock, so build a stone shack with a " +"roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east wattle and daub wall of the dining hall." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"wattle and daub shack with a roof on the northeast side of the livestock " +"field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wattle and daub wall" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle and daub shack with a roof on the southeast side of the livestock " +"field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wattle and daub dining hall." +msgid "" +"We could use a stable for larger livestock, so build a wattle and daub shack" +" with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the wattle and daub dining hall" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a wood" +" panel shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wood panel walls." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wood panel central kitchen room" +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wood panel walls." +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the wood panel central kitchen room" +msgid "chicken coop yard" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wood panel smoking area covered to protect the workers from " -"the weather." +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood panel roofed area for smoking racks" +msgid "remote paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a wood panel pantry west of the kitchen." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood panel pantry" +msgid "side paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west wood panel wall of the dining hall." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood wall" +msgid "near paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east wood panel wall of the dining hall." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wood wall" +msgid "concrete chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wood panel dining hall." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the dining hall" +msgid "concrete storage shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a farming area." +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "farm area survey" +msgid "concrete stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Plowing a few plots should get us started." -msgstr "Arar alguns lotes deve nos ajudar a começar." +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm basic plots" +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." msgstr "" #: lang/json/recipe_from_json.py -msgid "We could use a farming shed to store resources where we'll be working." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." msgstr "" -" Poderíamos usar um galpão agrícola para armazenar recursos onde estaremos " -"trabalhando." #: lang/json/recipe_from_json.py -msgid "Farm basic shed" +msgid "log chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Our farm could be expanded by finishing the shed and adding additional " -"plots." +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." msgstr "" -" Nossa fazenda poderia ser expandida, terminando o galpão e adicionando " -"parcelas adicionais." #: lang/json/recipe_from_json.py -msgid "Farm upgraded shed" +msgid "log storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Building a processing shack should allow us to reclaim additional seeds from" -" our byproducts." +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." msgstr "" -" Construir uma barraca de processamento deve nos permitir recuperar sementes" -" adicionais de nossos subprodutos." #: lang/json/recipe_from_json.py -msgid "Farm processing shack" +msgid "log stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a garage." -msgstr "Pesquisa terra para uma garagem." - -#: lang/json/recipe_from_json.py -msgid "Building a tool rack should be the first priority." -msgstr "Construir um rack de ferramentas deve ser a primeira prioridade." +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage tool rack" +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should start construction of a roof for the garage." -msgstr "Devemos começar a construção de um telhado para a garagem." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage partial roof" +msgid "metal chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Finishing out the roof will let our mechanics work rain or shine." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." msgstr "" -" Terminar o telhado permitirá que nossos mecânicos trabalhem com chuva ou " -"faça sol." #: lang/json/recipe_from_json.py -msgid "Garage completed roof" +msgid "metal storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Our garage isn't big enough to work on larger vehicles. Let's start " -"expanding it." +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." msgstr "" -" Nossa garagem não é grande o suficiente para funcionar em veículos maiores." -" Vamos começar a expandi-lo." #: lang/json/recipe_from_json.py -msgid "Garage partial expansion" +msgid "metal stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Finishing the roof will let us park RVs and buses in the garage." +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." msgstr "" -" Terminar o telhado nos permitirá estacionar trailers e ônibus na garagem." #: lang/json/recipe_from_json.py -msgid "Garage expanded roof" +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Attaching quarters will let our mechanics work longer hours when needed." +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage mechanics quarters" +msgid "mi-go resin chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a livestock area." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Livestock survey" +msgid "mi-go resin storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a fence to contain our chickens and other birds, so build a " -"chickenwire fence on the east side of the livestock field." +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "east coop yard" +msgid "mi-go resin stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence on the " -"north side of the livestock field." +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "north paddock" +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence in the " -"center of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "center paddock" +msgid "rammed earth chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence to close " -"off the south end of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a log " -"shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast coop" -msgstr "viveiro nordeste" +msgid "rammed earth stable" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a log " -"shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast storage room" -msgstr "depósito sudeste" +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a log shack with a roof" -" on the southwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest stable" -msgstr "estábulo sudoeste" +msgid "rock chicken coop" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the west" -" side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "west stable" -msgstr "estábulo oeste" +msgid "rock storage shack" +msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the " -"northwest side of the livestock field." +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest stable" +msgid "rock stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"metal sheet shack with a roof on the northeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rock walled " +"stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"metal sheet shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a metal sheet shack " -"with a roof on the southwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a mi-" -"go resin shack with a roof on the northeast side of the livestock field." +msgid "wattle-and-daub chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a mi-" -"go resin shack with a roof on the southeast side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a mi-go resin shack " -"with a roof on the southwest side of the livestock field." +msgid "wattle-and-daub storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"rammed earth shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"rammed earth shack with a roof on the southeast side of the livestock field." +msgid "wattle-and-daub stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a rammed earth shack " -"with a roof on the southwest side of the livestock field." +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"stone shack with a roof on the northeast side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"stone shack with a roof on the southeast side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a stone shack with a " -"roof on the southwest side of the livestock field." +msgid "wood panel chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"wattle and daub shack with a roof on the northeast side of the livestock " -"field." +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"wattle and daub shack with a roof on the southeast side of the livestock " -"field." +msgid "wood panel storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wattle and daub shack" -" with a roof on the southwest side of the livestock field." +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a wood" -" panel shack with a roof on the northeast side of the livestock field." +msgid "wood panel stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a wood" -" panel shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wood panel shack with" -" a roof on the southwest side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." msgstr "" #: lang/json/recipe_from_json.py @@ -195626,6 +198571,645 @@ msgstr "Seria bom ter alguns bancos ao ar livre. Construa alguns no sudoeste." msgid "benches, southwest" msgstr "bancos, sudoeste" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -195891,60 +199475,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -196779,7 +200672,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -196791,12 +200688,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "Garagem" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -196804,11 +200711,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -196971,6 +200888,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -199160,6 +203133,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -199481,7 +203480,7 @@ msgstr "" "úteis. Esta habilidade desempenha um papel importante na elaboração de " "muitos objetos." -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -200371,11 +204370,9 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" -"Se você está sendo perseguido por uma horda de zumbis, tente entrar no metrô" -" e viajar um ou dois quarteirões, depois voltando para a superfície." #: lang/json/snippet_from_json.py msgid "" @@ -201312,22 +205309,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" -" Não tenho certeza se Mike é mais são. Ele teve a infelicidade de ser levado" -" a uma escola uma vez. Esta experiência quebrou mais do que suas costelas " -"então." #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" -" Um pensamento sobre explosivos. Se você ainda pode correr e não foi boom " -"ainda, corra mais um pouco. Não existe excesso de espaço entre você e um " -"dinamite." #: lang/json/snippet_from_json.py msgid "Avoid using launchers in narrow hallways, you might miss." @@ -206379,6 +210371,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -206387,7 +210645,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -206504,7 +210762,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -211553,7 +215811,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -211612,7 +215870,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -211625,7 +215883,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -211643,17 +215901,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -211732,7 +215990,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -211842,8 +216100,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -212251,7 +216509,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -212261,8 +216519,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -213700,6 +217958,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -216008,7 +220328,7 @@ msgstr "Deixe-me matar alguma coisa já!" msgid "I'm your best friend, right?" msgstr "Eu sou sua melhor amiga, certo?" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "Eu te amo!" @@ -216688,6 +221008,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "Ha-ha! Uma divertida foto de gato." + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "Excelentes fotos da natureza." + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "Algumas fotos de viagem muito interessantes." + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "Fotos de um concerto de banda popular." + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "Fotos da casa luxuosa de alguém." + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "Você se sente nostálgico enquanto olha para a foto." + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "É certo." + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "É decididamente assim." + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "Sem dúvida." + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "Sim definitivamente." + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "Você pode contar com ele." + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "Como eu vejo, sim." + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "Provavelmente." + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "Outlook bom." + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "Sim." + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "Sinais apontam que sim." + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "Resposta nebulosa, tente novamente." + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "Pergunte novamente mais tarde." + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "Melhor não te dizer agora." + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "Concentre-se e pergunte novamente." + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "Não conte com isso." + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "Minha resposta é não." + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "Minhas fontes dizem não." + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "O Outlook não é tão bom." + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "Muito duvidoso." + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -216706,6 +221138,21 @@ msgstr "'vamos superar isso!" msgid "\"i'm here for you!\"" msgstr "\\'Estou aqui por você!\"" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "\\ 'Nós estávamos bem o governo fez isso \"" @@ -218089,6 +222536,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -220517,6 +225042,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -220626,6 +225158,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -220649,6 +225199,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -222172,7 +226729,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -222342,19 +226899,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "\"Polícia a caminho. Permaneça onde está!\"" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -222427,95 +226984,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "Quer brincar comigo?" +msgid "\"Wanna play with me?\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"Sing with me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "Cante comigo!" +msgid "\"I love you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" -msgstr "Por favor, me leve com você!" +msgid "\"Please take me with you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "Posso ter um cookie?" +msgid "\"May I have a cookie?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "Vamos jogar juntos!" +msgid "\"Let's play together!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" -msgstr "Hora de brincar!" +msgid "\"Time to play!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" -msgstr "Om nome do nome! Delicioso!" +msgid "\"Om nom nom! Delicious!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" -msgstr "Você é minha mamãe?" +msgid "\"Are you my mommy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" -msgstr "Oh, que divertido!" +msgid "\"Oh, how fun!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" -msgstr "Você é meu melhor amigo!" +msgid "\"You're my best friend!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" -msgstr "Heehee!" +msgid "\"Heehee!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" -msgstr "Vamos nos divertir!" +msgid "\"Let's have fun!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" -msgstr "Vamos fazer uma festa de chá!" +msgid "\"Let's have a tea party!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" -msgstr "Você é o melhor!" +msgid "\"You're the best!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." -msgstr "Você não deveria ter feito isso." +msgid "\"You shouldn't have done that.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." -msgstr "Vamos jogar... Roleta russa." +msgid "\"Let's play… Russian roulette.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "Te odeio." +msgid "\"I hate you.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" -msgstr "Vá se matar!" +msgid "\"Go kill yourself!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" -msgstr "Morra por mim!" +msgid "\"Die for me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" -msgstr "Por que você não morre?" +msgid "\"Why won't you die?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Blood… Delicious.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -222523,32 +227084,32 @@ msgid "AAAIEEEEEEE!" msgstr "AAAIEEEEEEE!" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" -msgstr "Foda-se!" +msgid "\"FUCK YOU!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" -msgstr "O que você fez com a minha mãe?" +msgid "\"What did you do with my Mommy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "Ei crianças. Quer um pouco de doce?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" -msgstr "Aqui embaixo, todos flutuam!" +msgid "\"Down here, they ALL float!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" -msgstr "Você realmente precisa de tanto mel?" +msgid "\"Do you really need that much honey?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" -msgstr "Meu dono anterior gritou como um porco quando eu a destruí!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" +msgstr "" #: lang/json/speech_from_json.py msgid "BARK!" @@ -222563,19 +227124,15 @@ msgid "WOOF!" msgstr "AU!" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -223675,6 +228232,10 @@ msgstr "Bomboneria" msgid "Gun Store" msgstr "Loja de armas" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "Garagem" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "Loja de penhores" @@ -225108,6 +229669,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -233001,6 +237566,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -233647,6 +238990,10 @@ msgstr "Qualquer coisa que eu possa ajudar?" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -233716,6 +239063,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -236206,10 +241564,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -240118,10 +245472,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -240468,6 +245818,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -240796,6 +246255,15 @@ msgstr "Cuide das suas costas lá fora." msgid "Is there any way I can join the 'Old Guard'?" msgstr "Existe alguma maneira de eu possa me juntar à 'Velha Guarda'?" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "A Velha Guarda precisa de alguma coisa?" @@ -240909,6 +246377,58 @@ msgstr "" "de fazer um nome para si mesmo entre os homens mais poderosos que restam no " "mundo." +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -243769,6 +249289,23 @@ msgstr "Não no momento, volte talvez mais tarde." msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -243954,20 +249491,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "Arrume suas malas, . Nós estamos indo em uma viagem." -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "Desarmar" @@ -244575,20 +250098,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "Contra ataque" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "Feint" @@ -244624,54 +250133,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -244755,20 +250254,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "Acerte-os de volta" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -244887,34 +250372,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "Guindaste" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "Greve de guindaste" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -244930,45 +250387,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" -msgstr "" +msgid "Crane Flap" +msgstr "Guindaste" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" -msgstr "" +msgid "Crane Strike" +msgstr "Greve de guindaste" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -245052,17 +250509,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -245104,7 +250561,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -245117,6 +250574,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -245263,20 +250724,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -245381,20 +250828,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -245495,20 +250928,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -245833,41 +251252,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" -msgstr "Empurrar" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You push %s away" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py -msgid "Shove" +#, python-format +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -246068,20 +251483,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -246842,20 +252243,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -246954,20 +252341,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -247010,20 +252383,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -249469,6 +254828,18 @@ msgstr "" " Uma muda relativamente nova de uma espécie indeterminada. Pode levar " "décadas até atingir a maturidade, então não adianta esperar por aí." +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "árvore de maçã" @@ -253105,24 +258476,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -253130,32 +258501,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -253163,35 +258534,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -253199,33 +258565,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -253233,10 +258599,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -253244,10 +258610,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -253255,40 +258621,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -253296,21 +258660,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" +msgid "reinforced triple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" -msgstr "" - -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -253318,44 +258678,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -253363,14 +258714,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -253388,12 +258735,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -253401,21 +258743,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" +msgid "plastic window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Plastic window" -msgstr "" - -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -253423,10 +258761,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -253434,7 +258772,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -253443,10 +258781,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -253455,21 +258793,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -253477,10 +258811,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -253489,10 +258823,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -253500,7 +258834,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -253509,26 +258843,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -253542,11 +258876,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -256088,6 +261418,75 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " @@ -256096,6 +261495,24 @@ msgstr "" " Um ciclo fechado, motor a vapor de combustão externa. Queima carvão ou " "carvão de um bunker no veículo para produzir vapor." +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py @@ -256104,6 +261521,26 @@ msgstr "" " Uma porta. Tem uma janela para que você possa ver fora dela, mesmo quando " "fechado." +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "opaco por" @@ -256533,6 +261970,57 @@ msgstr "" msgid "An electric motor." msgstr "Um motor elétrico." +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -257041,6 +262529,15 @@ msgstr "Um corredor." msgid "wooden aisle" msgstr "corredor de madeira" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -257188,6 +262685,10 @@ msgstr "caixa de madeira dobrável" msgid "wood table" msgstr "mesa de madeira" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "casco de barco de madeira" @@ -257258,6 +262759,10 @@ msgstr "Uma estrutura contendo algumas luzes e controles." msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -257371,6 +262876,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -258631,8 +264142,8 @@ msgstr "Fadiga" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -261407,6 +266918,18 @@ msgstr "Propriedades" msgid "Coverage:" msgstr "Cobertura:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "Sobrecarga:" @@ -261498,11 +267021,10 @@ msgstr "Ordenar Armadura" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" -"Pressione [%s] para ajuda. Pressione " -"[%s] para mudar as teclas de atalho." #: src/armor_layers.cpp msgid "(Innermost)" @@ -261513,6 +267035,12 @@ msgstr "(Mais Interior)" msgid "Storage (%s)" msgstr "Armazenamento (%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(Mais Exterior)" @@ -265722,11 +271250,6 @@ msgstr "Você não espera nenhum efeito de usar isso." msgid "No limb would benefit from it." msgstr "Nenhum membro se beneficiaria disso." -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "Cancelar" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "Você luta para ficar de pé." @@ -266040,6 +271563,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -268225,10 +273756,6 @@ msgstr " habilidade primária usado para craft" msgid "any skill used to craft" msgstr " qualquer habilidade usado para craft" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "culinária" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr " qualidade necessário para craft" @@ -268774,6 +274301,14 @@ msgstr "Exibir informação de magia do NPC no console" msgid "Test weather" msgstr "Testar clima" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "Testar lista de extras do mapa" @@ -269200,6 +274735,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -269288,6 +274828,11 @@ msgstr "Definir fadiga para? Atual: %d" msgid "Set sleep deprivation to? Currently: %d" msgstr "Definir privação de sono para? Atual: %d" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -270046,7 +275591,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "Este binário não foi compilado com suporte a tiles." @@ -270070,15 +275615,6 @@ msgstr "" "Sair sem salvar? Isso pode causar problemas como itens e veículos duplicados" " ou sumidos!" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "Captura de tela salva com sucesso em: %s" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "Um erro ocorreu ao tentar salvar a captura de tela." - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "Relatório escrito em debug.log" @@ -273424,6 +278960,10 @@ msgstr "Troca" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -273711,6 +279251,15 @@ msgstr "Você não pode viajar para lá." msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "Captura de tela salva com sucesso em: %s" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "Um erro ocorreu ao tentar salvar a captura de tela." + #: src/game.cpp src/init.cpp msgid "Items" msgstr "Itens" @@ -276056,10 +281605,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "Sim." - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "Sim, e salve o jogo antes de dormir." @@ -276200,6 +281745,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -276562,10 +282115,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "Consumir" @@ -277094,15 +282643,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" -" Esta parede é perfeitamente vertical. Buracos estranhos e distorcidos são colocados nele, levando \n" -" as para trás na rocha sólida como você pode ver. Os buracos são humanóides em forma, mas com membros longos, torcidos e distendidos." - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -280459,6 +285999,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -283503,13 +289058,15 @@ msgid "BEES!" msgstr "ABELHAS!" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "Definir o temporizador para (0 para cancelar)?" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -284248,8 +289805,7 @@ msgid "Your vision is fine already." msgstr "Sua visão está bem já." #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -284472,38 +290028,6 @@ msgstr "Descriptografar cartão de memória (baixa habilidade)" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "Ha-ha! Uma divertida foto de gato." - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "Excelentes fotos da natureza." - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "Algumas fotos de viagem muito interessantes." - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "Fotos de um concerto de banda popular." - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "Fotos da casa luxuosa de alguém." - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "Você se sente nostálgico enquanto olha para a foto." - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -285739,88 +291263,31 @@ msgstr "Caudas!" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "You start playing." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "It is certain." -msgstr "É certo." - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "É decididamente assim." - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "Sem dúvida." - -#: src/iuse.cpp -msgid "Yes - definitely." -msgstr "Sim definitivamente." - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "Você pode contar com ele." - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "Como eu vejo, sim." - -#: src/iuse.cpp -msgid "Most likely." -msgstr "Provavelmente." - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "Outlook bom." - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "Sinais apontam que sim." - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "Resposta nebulosa, tente novamente." - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "Pergunte novamente mais tarde." - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "Melhor não te dizer agora." - -#: src/iuse.cpp -msgid "Can't predict now." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "Concentre-se e pergunte novamente." - -#: src/iuse.cpp -msgid "Don't count on it." -msgstr "Não conte com isso." - -#: src/iuse.cpp -msgid "My reply is no." -msgstr "Minha resposta é não." - -#: src/iuse.cpp -msgid "My sources say no." -msgstr "Minhas fontes dizem não." +msgid "You and your friend start playing." +msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." -msgstr "O Outlook não é tão bom." +msgid "You start playing." +msgstr "" #: src/iuse.cpp -msgid "Very doubtful." -msgstr "Muito duvidoso." +#, c-format +msgid "Play a game with the %s?" +msgstr "" #: src/iuse.cpp #, c-format @@ -288651,8 +294118,20 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " -msgstr "Habilidade Requer: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " +msgstr "" #: src/martialarts.cpp msgid "activate" @@ -293606,6 +299085,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -294478,21 +299962,6 @@ msgstr "" " Você se concentra e, com uma sensação agradável de rachar, dá à luz um novo" " slimespring!" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "vamos lá, grande eu, vamos lá!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "nós somos uma equipe, nós temos isso!" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -294760,11 +300229,20 @@ msgstr "Examinando" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -296458,11 +301936,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -297251,6 +302724,15 @@ msgstr "" "Se verdadeiro, habilita o uso automático de picaretas e britadeiras " "empunhadas sempre que estiver tentando se mover dentro de terreno minerável." +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "Forrageamento automático" @@ -297258,14 +302740,19 @@ msgstr "Forrageamento automático" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "Arbustos" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -299770,20 +305257,6 @@ msgstr "Zona:" msgid "# Unexplored" msgstr "# Inexplorado" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -300124,6 +305597,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s, %d" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -300172,6 +305650,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -302596,6 +308078,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -306952,6 +312444,10 @@ msgstr "Energia insuficiente para purificar os conteúdos do %1$s %2$s" msgid "You purify the contents of the %1$s's %2$s" msgstr "Você purifica os conteúdos do %1$s %2$s" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "Segunda-Feira" diff --git a/lang/po/ru.po b/lang/po/ru.po index 3864086066858..7d6984467c847 100644 --- a/lang/po/ru.po +++ b/lang/po/ru.po @@ -51,7 +51,6 @@ # Zhar the Mad , 2020 # AndyProhor , 2020 # Макс , 2020 -# leemuar , 2020 # GostBug , 2020 # Alexey Shashaev , 2021 # Darkon Rabbit, 2021 @@ -60,25 +59,27 @@ # Сашенька 0 , 2021 # Brett Dong , 2021 # Momoiro Shinobinomono , 2021 -# 8street, 2021 -# korick3 korick3 , 2021 # WX , 2021 # akirashirosawa, 2021 -# Anton Simakov , 2021 # Aquilo, 2021 # Антон Бурмистров <22.valiant@gmail.com>, 2021 -# Vlasov Vitaly , 2021 # Midas , 2021 -# CountAlex, 2021 # Arex , 2021 +# Wanna Cry, 2021 +# Anton Simakov , 2021 +# leemuar , 2021 +# 8street, 2021 +# Vlasov Vitaly , 2021 +# korick3 korick3 , 2021 +# CountAlex, 2021 # msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" -"Last-Translator: Arex , 2021\n" +"Last-Translator: CountAlex, 2021\n" "Language-Team: Russian (https://www.transifex.com/cataclysm-dda-translators/teams/2217/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -94,7 +95,7 @@ msgstr[1] "батарейки" msgstr[2] "батареек" msgstr[3] "батарейки" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -111,7 +112,7 @@ msgstr[1] "бутан" msgstr[2] "бутан" msgstr[3] "бутан" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Горючая жидкость, обычно использующаяся в зажигалках." @@ -124,7 +125,7 @@ msgstr[1] "аэрозольная краска" msgstr[2] "аэрозольная краска" msgstr[3] "аэрозольная краска" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -141,7 +142,7 @@ msgstr[1] "несмываемые чернила" msgstr[2] "несмываемые чернила" msgstr[3] "несмываемые чернила" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -158,7 +159,7 @@ msgstr[1] "свечной воск" msgstr[2] "свечной воск" msgstr[3] "свечной воск" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "" @@ -173,7 +174,7 @@ msgstr[1] "пиротехническая смесь" msgstr[2] "пиротехническая смесь" msgstr[3] "пиротехническая смесь" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "Пиротехническая смесь, используемая в сигнальных зарядах." @@ -203,7 +204,7 @@ msgstr[1] "кислород" msgstr[2] "кислород" msgstr[3] "кислород" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Медицинский кислород под давлением." @@ -216,7 +217,7 @@ msgstr[1] "алюминиевая фольга" msgstr[2] "алюминиевая фольга" msgstr[3] "алюминиевая фольга" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -246,7 +247,7 @@ msgstr[1] "нитки" msgstr[2] "нитки" msgstr[3] "нитки" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "Несколько катушек ниток. Подойдут, чтобы пополнить швейный набор." @@ -288,7 +289,7 @@ msgstr[1] "пряжа" msgstr[2] "пряжа" msgstr[3] "пряжа" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Шерстяная пряжа, используемая для вязания шерстяной одежды." @@ -314,7 +315,7 @@ msgstr[1] "монтажный скотч" msgstr[2] "монтажный скотч" msgstr[3] "монтажный скотч" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "" @@ -393,8 +394,8 @@ msgstr[1] "плутониевая суспензия" msgstr[2] "плутониевая суспензия" msgstr[3] "плутониевая суспензия" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -476,7 +477,7 @@ msgstr[1] "подшипника" msgstr[2] "подшипников" msgstr[3] "подшипники" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -535,7 +536,7 @@ msgstr[1] "снаряд 120 мм (кумулятивный)" msgstr[2] "снаряд 120 мм (кумулятивный)" msgstr[3] "снаряд 120 мм (кумулятивный)" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -568,7 +569,7 @@ msgstr[1] "смешанный бездымный порох" msgstr[2] "смешанный бездымный порох" msgstr[3] "смешанный бездымный порох" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -588,7 +589,7 @@ msgstr[1] "бездымный порох для дробовика" msgstr[2] "бездымный порох для дробовика" msgstr[3] "бездымный порох для дробовика" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -603,7 +604,7 @@ msgstr[1] "бездымный пистолетный порох" msgstr[2] "бездымный пистолетный порох" msgstr[3] "бездымный пистолетный порох" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -618,7 +619,7 @@ msgstr[1] "бездымный порох магнум" msgstr[2] "бездымный порох магнум" msgstr[3] "бездымный порох магнум" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -634,7 +635,7 @@ msgstr[1] "бездымный винтовочный порох" msgstr[2] "бездымный винтовочный порох" msgstr[3] "бездымный винтовочный порох" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -649,7 +650,7 @@ msgstr[1] "бездымный крупнокалиберный винтовоч msgstr[2] "бездымный крупнокалиберный винтовочный порох" msgstr[3] "бездымный крупнокалиберный винтовочный порох" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -664,7 +665,7 @@ msgstr[1] "артиллерийское топливо" msgstr[2] "артиллерийское топливо" msgstr[3] "артиллерийское топливо" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -681,7 +682,7 @@ msgstr[1] "окислитель" msgstr[2] "окислитель" msgstr[3] "окислитель" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Окислитель для химических реакций в виде порошка." @@ -694,7 +695,7 @@ msgstr[1] "щелочной порошок" msgstr[2] "щелочной порошок" msgstr[3] "щелочной порошок" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Порошковый едкий натр." @@ -803,7 +804,7 @@ msgstr[1] "медь" msgstr[2] "медь" msgstr[3] "медь" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -820,7 +821,7 @@ msgstr[1] "лейкопластырь" msgstr[2] "лейкопластырь" msgstr[3] "лейкопластырь" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Рулон пластыря, похожий на монтажную ленту." @@ -834,7 +835,7 @@ msgstr[2] "абстрактных боеприпасов" msgstr[3] "абстрактные боеприпасы" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "ЕСЛИ ВЫ ВИДИТЕ ЭТО, ЗНАЧИТ ЭТО БАГ." @@ -847,7 +848,7 @@ msgstr[1] "древесный уголь" msgstr[2] "древесный уголь" msgstr[3] "древесный уголь" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -867,7 +868,7 @@ msgstr[1] "премикс карбида кальция" msgstr[2] "премикс карбида кальция" msgstr[3] "премикс карбида кальция" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -901,7 +902,7 @@ msgstr[1] "сальбутамол" msgstr[2] "сальбутамол" msgstr[3] "сальбутамол" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -1015,7 +1016,7 @@ msgstr[1] "никотиновая жидкость" msgstr[2] "никотиновая жидкость" msgstr[3] "никотиновая жидкость" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -1032,7 +1033,7 @@ msgstr[1] "наживка" msgstr[2] "наживка" msgstr[3] "наживка" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Приманка, используется в ловушках для рыбы." @@ -1102,7 +1103,7 @@ msgstr[1] "недоделанный древесный уголь" msgstr[2] "недоделанный древесный уголь" msgstr[3] "недоделанный древесный уголь" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -1119,7 +1120,7 @@ msgstr[1] "незаконченный карбид кальция " msgstr[2] "незаконченный карбид кальция " msgstr[3] "незаконченный карбид кальция " -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -1149,7 +1150,7 @@ msgstr[1] "нитрокса" msgstr[2] "нитрокса" msgstr[3] "нитрокс" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "Смесь кислорода и азота в подходящих для дайвинга пропорциях." @@ -1162,7 +1163,7 @@ msgstr[1] "огнетушащий агент" msgstr[2] "огнетушащий агент" msgstr[3] "огнетушащий агент" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Сухое химическое вещество, эффективное при тушении пожаров." @@ -1175,7 +1176,7 @@ msgstr[1] "трут" msgstr[2] "трут" msgstr[3] "трут" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "Горючий материал, измельченный для лёгкого поджигания." @@ -1214,7 +1215,7 @@ msgstr[1] "бронза" msgstr[2] "бронза" msgstr[3] "бронза" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "Солидные куски бронзы для создания предметов старой закалки." @@ -1227,7 +1228,7 @@ msgstr[1] "химический источник света" msgstr[2] "химический источник света" msgstr[3] "химический источник света" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -1243,7 +1244,7 @@ msgstr[1] "графит" msgstr[2] "графит" msgstr[3] "графит" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1262,7 +1263,7 @@ msgstr[1] "черные чернила" msgstr[2] "черные чернила" msgstr[3] "черные чернила" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1279,7 +1280,7 @@ msgstr[1] "синие чернила" msgstr[2] "синие чернила" msgstr[3] "синие чернила" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1297,7 +1298,7 @@ msgstr[1] "зелёные чернила" msgstr[2] "зелёные чернила" msgstr[3] "зелёные чернила" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1314,7 +1315,7 @@ msgstr[1] "красные чернила" msgstr[2] "красные чернила" msgstr[3] "красные чернила" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1350,7 +1351,7 @@ msgstr[1] "сера" msgstr[2] "сера" msgstr[3] "сера" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1384,7 +1385,7 @@ msgstr[1] "цемент" msgstr[2] "цемент" msgstr[3] "цемент" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1403,7 +1404,7 @@ msgstr[1] "гравий" msgstr[2] "гравий" msgstr[3] "гравий" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "Горсть гравия, маленьких камешков, но крупнее песка." @@ -1416,7 +1417,7 @@ msgstr[1] "известняк" msgstr[2] "известняк" msgstr[3] "известняк" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1435,7 +1436,7 @@ msgstr[1] "негашёная известь" msgstr[2] "негашёная известь" msgstr[3] "негашёная известь" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1457,7 +1458,7 @@ msgstr[1] "песка" msgstr[2] "песка" msgstr[3] "песок" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1475,7 +1476,7 @@ msgstr[1] "грунт" msgstr[2] "грунт" msgstr[3] "грунт" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1492,7 +1493,7 @@ msgstr[1] "алюминиевый порошок" msgstr[2] "алюминиевый порошок" msgstr[3] "алюминиевый порошок" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1514,7 +1515,7 @@ msgstr[1] "цинковый порошок" msgstr[2] "цинковый порошок" msgstr[3] "цинковый порошок" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1535,7 +1536,7 @@ msgstr[1] "оксид цинка" msgstr[2] "оксид цинка" msgstr[3] "оксид цинка" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1552,7 +1553,7 @@ msgstr[1] "диоксид марганца" msgstr[2] "диоксид марганца" msgstr[3] "диоксид марганца" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1571,7 +1572,7 @@ msgstr[1] "хлористый калий" msgstr[2] "хлористый калий" msgstr[3] "хлористый калий" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1592,7 +1593,7 @@ msgstr[1] "гидроксид калия" msgstr[2] "гидроксид калия" msgstr[3] "гидроксид калия" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1611,7 +1612,7 @@ msgstr[1] "ацетон" msgstr[2] "ацетон" msgstr[3] "ацетон" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1630,7 +1631,7 @@ msgstr[1] "оксид хрома" msgstr[2] "оксид хрома" msgstr[3] "оксид хрома" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1654,7 +1655,7 @@ msgstr[1] "карбид кальция" msgstr[2] "карбид кальция" msgstr[3] "карбид кальция" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1676,7 +1677,7 @@ msgstr[1] "уротропин" msgstr[2] "уротропин" msgstr[3] "уротропин" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1700,7 +1701,7 @@ msgstr[1] "перекись водорода (конц.)" msgstr[2] "перекись водорода (конц.)" msgstr[3] "перекись водорода (конц.)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1721,7 +1722,7 @@ msgstr[1] "аммиачная селитра" msgstr[2] "аммиачная селитра" msgstr[3] "аммиачная селитра" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1742,7 +1743,7 @@ msgstr[1] "гранулы аммиачной селитры" msgstr[2] "гранулы аммиачной селитры" msgstr[3] "гранулы аммиачной селитры" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1763,7 +1764,7 @@ msgstr[1] "селитра" msgstr[2] "селитра" msgstr[3] "селитра" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1782,7 +1783,7 @@ msgstr[1] "кристалла селитры" msgstr[2] "кристаллов селитры" msgstr[3] "кристаллы селитры" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1799,7 +1800,7 @@ msgstr[1] "сульфат алюминия" msgstr[2] "сульфат алюминия" msgstr[3] "сульфат алюминия" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1825,7 +1826,7 @@ msgstr[1] "уксусная кислота" msgstr[2] "уксусная кислота" msgstr[3] "уксусная кислота" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1847,7 +1848,7 @@ msgstr[1] "формальдегид" msgstr[2] "формальдегид" msgstr[3] "формальдегид" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1868,7 +1869,7 @@ msgstr[1] "термит" msgstr[2] "термит" msgstr[3] "термит" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1889,7 +1890,7 @@ msgstr[1] "АСНТ" msgstr[2] "АСНТ" msgstr[3] "АСНТ" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1911,7 +1912,7 @@ msgstr[1] "чёрный порох" msgstr[2] "чёрный порох" msgstr[3] "чёрный порох" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1931,7 +1932,7 @@ msgstr[1] "спичечный порошок" msgstr[2] "спичечный порошок" msgstr[3] "спичечный порошок" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1949,7 +1950,7 @@ msgstr[1] "гексоген" msgstr[2] "гексоген" msgstr[3] "гексоген" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1969,7 +1970,7 @@ msgstr[1] "Композиция B" msgstr[2] "Композиция B" msgstr[3] "Композиция B" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1989,7 +1990,7 @@ msgstr[1] "ГМТД" msgstr[2] "ГМТД" msgstr[3] "ГМТД" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -2009,7 +2010,7 @@ msgstr[1] "перекись ацетона" msgstr[2] "перекись ацетона" msgstr[3] "перекись ацетона" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -2028,7 +2029,7 @@ msgstr[1] "самодельное ракетное топливо" msgstr[2] "самодельное ракетное топливо" msgstr[3] "самодельное ракетное топливо" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -2045,7 +2046,7 @@ msgstr[1] "моющее средство" msgstr[2] "моющее средство" msgstr[3] "моющее средство" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "Популярный до конца света стиральный порошок." @@ -2058,7 +2059,7 @@ msgstr[1] "мыльная стружка" msgstr[2] "мыльная стружка" msgstr[3] "мыльная стружка" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -2137,7 +2138,7 @@ msgstr[1] "концентрированных яда" msgstr[2] "концентрированных ядов" msgstr[3] "концентрированный яд" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -2158,7 +2159,7 @@ msgstr[1] "концентрированная парализующая жидк msgstr[2] "концентрированная парализующая жидкость" msgstr[3] "концентрированная парализующая жидкость" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -2180,7 +2181,7 @@ msgstr[1] "рокуроний" msgstr[2] "рокуроний" msgstr[3] "рокуроний" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -2199,7 +2200,7 @@ msgstr[1] "красный фосфор" msgstr[2] "красный фосфор" msgstr[3] "красный фосфор" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -2216,7 +2217,7 @@ msgstr[1] "кристаллический йод" msgstr[2] "кристаллический йод" msgstr[3] "кристаллический йод" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -2233,7 +2234,7 @@ msgstr[1] "этанол" msgstr[2] "этанол" msgstr[3] "этанол" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -2271,7 +2272,7 @@ msgstr[1] "метанол" msgstr[2] "метанол" msgstr[3] "метанол" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -2289,7 +2290,7 @@ msgstr[1] "дизель" msgstr[2] "дизель" msgstr[3] "дизель" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -2305,7 +2306,7 @@ msgstr[1] "топливо JP8" msgstr[2] "топливо JP8" msgstr[3] "топливо JP8" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -2322,7 +2323,7 @@ msgstr[1] "авиатопливо" msgstr[2] "авиатопливо" msgstr[3] "авиатопливо" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "Специализированное высокооктановое топливо для применения в авиации." @@ -2335,7 +2336,7 @@ msgstr[1] "биодизель" msgstr[2] "биодизель" msgstr[3] "биодизель" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -2354,7 +2355,7 @@ msgstr[1] "бензин" msgstr[2] "бензин" msgstr[3] "бензин" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -2371,7 +2372,7 @@ msgstr[1] "ламповое масло" msgstr[2] "ламповое масло" msgstr[3] "ламповое масло" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "Масло для масляных ламп, горящее без копоти." @@ -2384,7 +2385,7 @@ msgstr[1] "моторное масло" msgstr[2] "моторное масло" msgstr[3] "моторное масло" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "Масло, применяемое в автомобильных двигателях." @@ -2397,7 +2398,7 @@ msgstr[1] "напалм" msgstr[2] "напалм" msgstr[3] "напалм" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2415,7 +2416,7 @@ msgstr[1] "сгущенный бензин" msgstr[2] "сгущенный бензин" msgstr[3] "сгущенный бензин" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2433,7 +2434,7 @@ msgstr[1] "огнемётное топливо" msgstr[2] "огнемётное топливо" msgstr[3] "огнемётное топливо" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2484,7 +2485,7 @@ msgstr[1] "шрапнель" msgstr[2] "шрапнель" msgstr[3] "шрапнель" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "Перекрученный и зазубренный осколок металла." @@ -2551,7 +2552,7 @@ msgstr[1] "10 мм Auto ОП" msgstr[2] "10 мм Auto ОП" msgstr[3] "10 мм Auto ОП" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2585,7 +2586,7 @@ msgstr[1] "H&K 12 мм" msgstr[2] "H&K 12 мм" msgstr[3] "H&K 12 мм" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2637,7 +2638,7 @@ msgstr[1] "20х66 мм (картечь, самодельный)" msgstr[2] "20х66 мм (картечь, самодельный)" msgstr[3] "20х66 мм (картечь, самодельный)" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2671,7 +2672,7 @@ msgstr[1] "20х66 мм (разрывной)" msgstr[2] "20х66 мм (разрывной)" msgstr[3] "20х66 мм (разрывной)" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2725,7 +2726,7 @@ msgstr[1] "20х66 мм (осколочный)" msgstr[2] "20х66 мм (осколочный)" msgstr[3] "20х66 мм (осколочный)" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2744,7 +2745,7 @@ msgstr[1] "20х66 мм (зажигательный)" msgstr[2] "20х66 мм (зажигательный)" msgstr[3] "20х66 мм (зажигательный)" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2762,7 +2763,7 @@ msgstr[1] "20х66 мм (картечь)" msgstr[2] "20х66 мм (картечь)" msgstr[3] "20х66 мм (картечь)" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2798,7 +2799,7 @@ msgstr[1] ".22 КП" msgstr[2] ".22 КП" msgstr[3] ".22 КП" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2818,7 +2819,7 @@ msgstr[1] ".22 ОП" msgstr[2] ".22 ОП" msgstr[3] ".22 ОП" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2838,7 +2839,7 @@ msgstr[1] ".22 LR" msgstr[2] ".22 LR" msgstr[3] ".22 LR" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2858,7 +2859,7 @@ msgstr[1] ".22 (мелкашка)" msgstr[2] ".22 (мелкашка)" msgstr[3] ".22 (мелкашка)" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2909,7 +2910,7 @@ msgstr[1] ".223 Ремингтон" msgstr[2] ".223 Ремингтон" msgstr[3] ".223 Ремингтон" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2933,7 +2934,7 @@ msgstr[1] "5.56 NATO Mk 262" msgstr[2] "5.56 NATO Mk 262" msgstr[3] "5.56 NATO Mk 262" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2956,7 +2957,7 @@ msgstr[1] "5.56 NATO Mk 318" msgstr[2] "5.56 NATO Mk 318" msgstr[3] "5.56 NATO Mk 318" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2981,7 +2982,7 @@ msgstr[1] "5.56 NATO M855" msgstr[2] "5.56 NATO M855" msgstr[3] "5.56 NATO M855" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -3008,7 +3009,7 @@ msgstr[1] "5.56 мм НАТО M855A1" msgstr[2] "5.56 мм НАТО M855A1" msgstr[3] "5.56 мм НАТО M855A1" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -3034,7 +3035,7 @@ msgstr[1] "5,56 мм НАТО (трассирующий)" msgstr[2] "5,56 мм НАТО (трассирующий)" msgstr[3] "5,56 мм НАТО (трассирующий)" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -3099,7 +3100,7 @@ msgstr[1] ".270 Winchester ПОП" msgstr[2] ".270 Winchester ПОП" msgstr[3] ".270 Winchester ПОП" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -3165,7 +3166,7 @@ msgstr[1] ".300 Винчестер Магнум (переснаряжённый) msgstr[2] ".300 Винчестер Магнум (переснаряжённый)" msgstr[3] ".300 Винчестер Магнум (переснаряжённый)" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -3185,7 +3186,7 @@ msgstr[1] ".30-06 Спрингфилд" msgstr[2] ".30-06 Спрингфилд" msgstr[3] ".30-06 Спрингфилд" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -3205,7 +3206,7 @@ msgstr[1] ".30-06 M14A1 (трассирующий)" msgstr[2] ".30-06 M14A1 (трассирующий)" msgstr[3] ".30-06 M14A1 (трассирующий)" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -3224,7 +3225,7 @@ msgstr[1] ".30-06 M2 ББ" msgstr[2] ".30-06 M2 ББ" msgstr[3] ".30-06 M2 ББ" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -3364,7 +3365,7 @@ msgstr[1] ".308 Винчестер" msgstr[2] ".308 Винчестер" msgstr[3] ".308 Винчестер" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -3383,7 +3384,7 @@ msgstr[1] "7,62х51 мм M80" msgstr[2] "7,62х51 мм M80" msgstr[3] "7,62х51 мм M80" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -3402,7 +3403,7 @@ msgstr[1] "7,62х51 мм НАТО (трассирующий)" msgstr[2] "7,62х51 мм НАТО (трассирующий)" msgstr[3] "7,62х51 мм НАТО (трассирующий)" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -3467,7 +3468,7 @@ msgstr[1] ".32 ACP" msgstr[2] ".32 ACP" msgstr[3] ".32 ACP" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -3500,7 +3501,7 @@ msgstr[1] ".357 Магнум ОП" msgstr[2] ".357 Магнум ОП" msgstr[3] ".357 Магнум ОП" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -3519,7 +3520,7 @@ msgstr[1] ".357 Магнум ЭП" msgstr[2] ".357 Магнум ЭП" msgstr[3] ".357 Магнум ЭП" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -3570,7 +3571,7 @@ msgstr[1] ".357 SIG ОП" msgstr[2] ".357 SIG ОП" msgstr[3] ".357 SIG ОП" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -3588,7 +3589,7 @@ msgstr[1] ".357 SIG ЭП" msgstr[2] ".357 SIG ЭП" msgstr[3] ".357 SIG ЭП" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3656,7 +3657,7 @@ msgstr[1] ".38 ОП" msgstr[2] ".38 ОП" msgstr[3] ".38 ОП" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3692,7 +3693,7 @@ msgstr[1] ".38 Super" msgstr[2] ".38 Super" msgstr[3] ".38 Super" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3750,7 +3751,7 @@ msgstr[1] ".380 ACP ОП" msgstr[2] ".380 ACP ОП" msgstr[3] ".380 ACP ОП" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3771,7 +3772,7 @@ msgstr[1] ".380 ACP ЭП" msgstr[2] ".380 ACP ЭП" msgstr[3] ".380 ACP ЭП" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3792,7 +3793,7 @@ msgstr[1] ".380 ACP +P" msgstr[2] ".380 ACP +P" msgstr[3] ".380 ACP +P" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3853,7 +3854,7 @@ msgstr[1] ".38 Super ОП" msgstr[2] ".38 Super ОП" msgstr[3] ".38 Super ОП" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3880,7 +3881,7 @@ msgstr[1] ".40 S&W ОП" msgstr[2] ".40 S&W ОП" msgstr[3] ".40 S&W ОП" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3899,7 +3900,7 @@ msgstr[1] ".40 S&W ЭП" msgstr[2] ".40 S&W ЭП" msgstr[3] ".40 S&W ЭП" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3958,7 +3959,7 @@ msgstr[1] "40х46 мм M1006 (губка)" msgstr[2] "40х46 мм M1006 (губка)" msgstr[3] "40х46 мм M1006 (губка)" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3977,7 +3978,7 @@ msgstr[1] "40х46 мм M433 (ФСДН)" msgstr[2] "40х46 мм M433 (ФСДН)" msgstr[3] "40х46 мм M433 (ФСДН)" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3996,7 +3997,7 @@ msgstr[1] "40х46 мм M576 (картечь)" msgstr[2] "40х46 мм M576 (картечь)" msgstr[3] "40х46 мм M576 (картечь)" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -4015,7 +4016,7 @@ msgstr[1] "40х46 мм M651 (слез. газ)" msgstr[2] "40х46 мм M651 (слез. газ)" msgstr[3] "40х46 мм M651 (слез. газ)" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -4034,8 +4035,8 @@ msgstr[1] "40х46 мм-М118 (картечь, переснаряжённая)" msgstr[2] "40х46 мм-М118 (картечь, переснаряжённая)" msgstr[3] "40х46 мм-М118 (картечь, переснаряжённая)" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -4055,8 +4056,8 @@ msgstr[1] "40х46 мм-М199 (картечь, переснаряжённая)" msgstr[2] "40х46 мм-М199 (картечь, переснаряжённая)" msgstr[3] "40х46 мм-М199 (картечь, переснаряжённая)" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -4117,8 +4118,8 @@ msgstr[1] "40х46 мм-М118 (флешетты, переснаряжённая)" msgstr[2] "40х46 мм-М118 (флешетты, переснаряжённая)" msgstr[3] "40х46 мм-М118 (флешетты, переснаряжённая)" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -4138,8 +4139,8 @@ msgstr[1] "40х46 мм-М199 (флешетты, переснаряжённая)" msgstr[2] "40х46 мм-М199 (флешетты, переснаряжённая)" msgstr[3] "40х46 мм-М199 (флешетты, переснаряжённая)" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -4219,7 +4220,7 @@ msgstr[1] "40х46 мм .22 LR «Гнездо шерней»" msgstr[2] "40х46 мм .22 LR «Гнездо шерней»" msgstr[3] "40х46 мм .22 LR «Гнездо шерней»" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -4236,7 +4237,7 @@ msgstr[1] "40х46 мм .410 «Гнездо шерней»" msgstr[2] "40х46 мм .410 «Гнездо шерней»" msgstr[3] "40х46 мм .410 «Гнездо шерней»" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -4276,7 +4277,7 @@ msgstr[1] "40х53 мм M430A1 (ФСДН)" msgstr[2] "40х53 мм M430A1 (ФСДН)" msgstr[3] "40х53 мм M430A1 (ФСДН)" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -4295,8 +4296,8 @@ msgstr[1] "40х53 мм (картечь, переснаряжённая)" msgstr[2] "40х53 мм (картечь, переснаряжённая)" msgstr[3] "40х53 мм (картечь, переснаряжённая)" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "Самодельная граната 40х53 мм с картечью, чем-то напоминающая M576." @@ -4325,8 +4326,8 @@ msgstr[1] "40х53 мм (флешетты, переснаряжённая)" msgstr[2] "40х53 мм (флешетты, переснаряжённая)" msgstr[3] "40х53 мм (флешетты, переснаряжённая)" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -4366,7 +4367,7 @@ msgstr[1] ".410 (000 дробь)" msgstr[2] ".410 (000 дробь)" msgstr[3] ".410 (000 дробь)" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -4389,7 +4390,7 @@ msgstr[1] "44 Магнум ОП" msgstr[2] "44 Магнум ОП" msgstr[3] "44 Магнум ОП" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -4474,7 +4475,7 @@ msgstr[1] ".45 ACP ОП" msgstr[2] ".45 ACP ОП" msgstr[3] ".45 ACP ОП" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -4492,7 +4493,7 @@ msgstr[1] "патрона .45 ACP ЭП" msgstr[2] "патронов .45 ACP ЭП" msgstr[3] "патроны .45 ACP ЭП" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -4511,7 +4512,7 @@ msgstr[1] "патрона .45 ACP +P" msgstr[2] "патронов .45 ACP +P" msgstr[3] "патроны .45 ACP +P" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -4570,7 +4571,7 @@ msgstr[1] "патрона .454 Casull" msgstr[2] "патронов .454 Casull" msgstr[3] "патроны .454 Casull" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -4609,7 +4610,7 @@ msgstr[1] "патрона .45-70 SP" msgstr[2] "патронов .45-70 SP" msgstr[3] "патроны .45-70 SP" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4648,7 +4649,7 @@ msgstr[1] "патрона .45-70 LFN (ковбойский)" msgstr[2] "патронов .45-70 LFN (ковбойский)" msgstr[3] "патроны .45-70 LFN (ковбойский)" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4668,7 +4669,7 @@ msgstr[1] "патрона .45-70 SP (переснаряжённый)" msgstr[2] "патронов .45-70 SP (переснаряжённый)" msgstr[3] "патроны .45-70 SP (переснаряжённый)" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4709,7 +4710,7 @@ msgstr[1] "патрона .45-70 LFN (ковбойский, переснаряж msgstr[2] "патронов .45-70 LFN (ковбойский, переснаряжённый)" msgstr[3] "патроны .45-70 LFN (ковбойский, переснаряжённый)" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4730,7 +4731,7 @@ msgstr[1] "патрона .45-70 (чёрный порох)" msgstr[2] "патронов .45-70 (чёрный порох)" msgstr[3] "патроны .45-70 (чёрный порох)" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4751,7 +4752,7 @@ msgstr[1] "патрона .45 Кольт ЭП" msgstr[2] "патронов .45 Кольт ЭП" msgstr[3] "патроны .45 Кольт ЭП" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -4788,7 +4789,7 @@ msgstr[1] "патрона 4,6x30 мм" msgstr[2] "патронов 4,6x30 мм" msgstr[3] "патроны 4,6x30 мм" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -4808,8 +4809,8 @@ msgstr[1] "патрона 4,6x30 мм (чёрный порох)" msgstr[2] "патронов 4,6x30 мм (чёрный порох)" msgstr[3] "патроны 4,6x30 мм (чёрный порох)" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -4839,7 +4840,7 @@ msgstr[1] "патрона .460 Rowland HCFN" msgstr[2] "патронов .460 Rowland HCFN" msgstr[3] "патроны .460 Rowland HCFN" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -4857,7 +4858,7 @@ msgstr[1] "патрона .460 Rowland" msgstr[2] "патронов .460 Rowland" msgstr[3] "патроны .460 Rowland" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4896,7 +4897,7 @@ msgstr[1] "патрона .460 Rowland ОП (переснаряжённый)" msgstr[2] "патронов .460 Rowland ОП (переснаряжённый)" msgstr[3] "патроны .460 Rowland ОП (переснаряжённый)" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4921,7 +4922,7 @@ msgstr[1] "патрона .50 BMG M17 (трассирующий)" msgstr[2] "патронов .50 BMG M17 (трассирующий)" msgstr[3] "патроны .50 BMG M17 (трассирующий)" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4940,7 +4941,7 @@ msgstr[1] "патрона .50 BMG M33 Ball" msgstr[2] "патронов .50 BMG M33 Ball" msgstr[3] "патроны .50 BMG M33 Ball" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4964,7 +4965,7 @@ msgstr[1] ".50 BMG Match" msgstr[2] ".50 BMG Match" msgstr[3] ".50 BMG Match" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4982,7 +4983,7 @@ msgstr[1] "патрона .50 BMG M2 AP" msgstr[2] "патронов .50 BMG M2 AP" msgstr[3] "патроны .50 BMG M2 AP" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -5000,7 +5001,7 @@ msgstr[1] "патрона .50 BMG Raufoss Mk 211" msgstr[2] "патронов .50 BMG Raufoss Mk 211" msgstr[3] "патроны .50 BMG Raufoss Mk 211" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -5030,7 +5031,7 @@ msgstr[1] "патрона .50 BMG (трассирующий, переснаря msgstr[2] "патронов .50 BMG (трассирующий, переснаряжённый)" msgstr[3] "патроны .50 BMG (трассирующий, переснаряжённый)" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -5049,7 +5050,7 @@ msgstr[1] "патрона .50 BMG Match (переснаряжённый)" msgstr[2] "патронов .50 BMG Match (переснаряжённый)" msgstr[3] "патроны .50 BMG Match (переснаряжённый)" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -5073,7 +5074,7 @@ msgstr[1] "патрона .50 BMG AP (переснаряжённый)" msgstr[2] "патронов .50 BMG AP (переснаряжённый)" msgstr[3] "патроны .50 BMG AP (переснаряжённый)" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -5150,7 +5151,7 @@ msgstr[1] "патрона 5,45х39 мм 7Н10" msgstr[2] "патронов 5,45х39 мм 7Н10" msgstr[3] "патроны 5,45х39 мм 7Н10" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -5171,7 +5172,7 @@ msgstr[1] "патрона 5,45х39 мм 7Н22" msgstr[2] "патронов 5,45х39 мм 7Н22" msgstr[3] "патроны 5,45х39 мм 7Н22" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -5188,7 +5189,7 @@ msgstr[1] "патрона 5,45х39 мм (переснаряжённый)" msgstr[2] "патронов 5,45х39 мм (переснаряжённый)" msgstr[3] "патроны 5,45х39 мм (переснаряжённый)" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -5207,7 +5208,7 @@ msgstr[1] "патрона 5,45х39 мм ББ (переснаряжённый)" msgstr[2] "патронов 5,45х39 мм ББ (переснаряжённый)" msgstr[3] "патроны 5,45х39 мм ББ (переснаряжённый)" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -5240,7 +5241,7 @@ msgstr[1] "патрона 5,7х28 мм SS190" msgstr[2] "патронов 5,7х28 мм SS190" msgstr[3] "патроны 5,7х28 мм SS190" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -5264,8 +5265,8 @@ msgstr[1] "патрона 5,7х28 мм (чёрный порох)" msgstr[2] "патронов 5,7х28 мм (чёрный порох)" msgstr[3] "патроны 5,7х28 мм (чёрный порох)" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -5374,7 +5375,7 @@ msgstr[1] "снаряда 66 мм (кумулятивный)" msgstr[2] "снарядов 66 мм (кумулятивный)" msgstr[3] "снаряды 66 мм (кумулятивный)" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -5391,7 +5392,7 @@ msgstr[1] "патрона .700 NX" msgstr[2] "патронов .700 NX" msgstr[3] "патроны .700 NX" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -5428,7 +5429,7 @@ msgstr[1] "патрона 7,62х39 мм 57-Н-231" msgstr[2] "патронов 7,62х39 мм 57-Н-231" msgstr[3] "патроны 7,62х39 мм 57-Н-231" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -5450,7 +5451,7 @@ msgstr[1] "патрона 7,62х39 мм M67" msgstr[2] "патронов 7,62х39 мм M67" msgstr[3] "патроны 7,62х39 мм M67" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -5471,7 +5472,7 @@ msgstr[1] "патрона 7,62х39 мм M43 (переснаряжённый)" msgstr[2] "патронов 7,62х39 мм M43 (переснаряжённый)" msgstr[3] "патроны 7,62х39 мм M43 (переснаряжённый)" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -5516,7 +5517,7 @@ msgstr[1] "патрона 7,62х54 мм R" msgstr[2] "патронов 7,62х54 мм R" msgstr[3] "патроны 7,62х54 мм R" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -5556,7 +5557,7 @@ msgstr[1] "патрона 7,62х25 мм ЭП" msgstr[2] "патронов 7,62х25 мм ЭП" msgstr[3] "патроны 7,62х25 мм ЭП" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -5591,7 +5592,7 @@ msgstr[1] "патрона 7,62х25 мм Type P" msgstr[2] "патронов 7,62х25 мм Type P" msgstr[3] "патроны 7,62х25 мм Type P" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -5682,7 +5683,7 @@ msgstr[1] "патрона 8х40 мм ЭП (самопальный)" msgstr[2] "патронов 8х40 мм ЭП (самопальный)" msgstr[3] "патроны 8х40 мм ЭП (самопальный)" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -5699,7 +5700,7 @@ msgstr[1] "патрона 8х40 мм (безгильзовый)" msgstr[2] "патронов 8х40 мм (безгильзовый)" msgstr[3] "патроны 8х40 мм (безгильзовый)" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -5716,7 +5717,7 @@ msgstr[1] "патрона 8х40 мм (спортивный)" msgstr[2] "патронов 8х40 мм (спортивный)" msgstr[3] "патроны 8х40 мм (спортивный)" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -5735,7 +5736,7 @@ msgstr[1] "патрона 8х40 мм ОП" msgstr[2] "патронов 8х40 мм ОП" msgstr[3] "патроны 8х40 мм ОП" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -5754,7 +5755,7 @@ msgstr[1] "патрона 8х40 мм HVP" msgstr[2] "патронов 8х40 мм HVP" msgstr[3] "патроны 8х40 мм HVP" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -5775,7 +5776,7 @@ msgstr[1] "патрона 8х40 мм (трассирующий)" msgstr[2] "патронов 8х40 мм (трассирующий)" msgstr[3] "патроны 8х40 мм (трассирующий)" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -5796,7 +5797,7 @@ msgstr[1] "патрона 8х40 мм ЭП" msgstr[2] "патронов 8х40 мм ЭП" msgstr[3] "патроны 8х40 мм ЭП" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -5815,7 +5816,7 @@ msgstr[1] "патрона 9х19 мм ЭП" msgstr[2] "патронов 9х19 мм ЭП" msgstr[3] "патроны 9х19 мм ЭП" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -5836,7 +5837,7 @@ msgstr[1] "патрона 9х19 мм ОП" msgstr[2] "патронов 9х19 мм ОП" msgstr[3] "патроны 9х19 мм ОП" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -5853,7 +5854,7 @@ msgstr[1] "патрона 9х19 мм +P" msgstr[2] "патронов 9х19 мм +P" msgstr[3] "патроны 9х19 мм +P" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -5871,7 +5872,7 @@ msgstr[1] "патрона 9х19 мм +P+" msgstr[2] "патронов 9х19 мм +P+" msgstr[3] "патроны 9х19 мм +P+" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -5937,7 +5938,7 @@ msgstr[1] "патрона 9х18 мм 57-Н-181С" msgstr[2] "патронов 9х18 мм 57-Н-181С" msgstr[3] "патроны 9х18 мм 57-Н-181С" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -5957,7 +5958,7 @@ msgstr[1] "патрона 9x18 мм СП-7" msgstr[2] "патронов 9x18 мм СП-7" msgstr[3] "патроны 9x18 мм СП-7" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -5976,7 +5977,7 @@ msgstr[1] "патрона 9x18 мм РГ028" msgstr[2] "патронов 9x18 мм РГ028" msgstr[3] "патроны 9x18 мм РГ028" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -6009,7 +6010,7 @@ msgstr[1] "патрона 9x18 мм (переснаряжённый)" msgstr[2] "патронов 9x18 мм (переснаряжённый)" msgstr[3] "патроны 9x18 мм (переснаряжённый)" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -6028,7 +6029,7 @@ msgstr[1] "патрона 9х18 мм +P+ (переснаряжённый)" msgstr[2] "патронов 9х18 мм +P+ (переснаряжённый)" msgstr[3] "патроны 9х18 мм +P+ (переснаряжённый)" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -6048,7 +6049,7 @@ msgstr[1] "патрона 9x18 мм ОП (переснаряжённый)" msgstr[2] "патронов 9x18 мм ОП (переснаряжённый)" msgstr[3] "патроны 9x18 мм ОП (переснаряжённый)" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -6068,7 +6069,7 @@ msgstr[1] "152-мм кумулятивные ПТУР" msgstr[2] "152-мм кумулятивных ПТУР" msgstr[3] "152-мм кумулятивные ПТУР" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -6102,7 +6103,7 @@ msgstr[1] "заряда для пушки" msgstr[2] "зарядов для пушки" msgstr[3] "заряды для пушки" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -6118,7 +6119,7 @@ msgstr[1] "распыляемый токсичный газ" msgstr[2] "распыляемый токсичный газ" msgstr[3] "распыляемый токсичный газ" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -6136,7 +6137,7 @@ msgstr[1] "распыляемый фунгицид" msgstr[2] "распыляемый фунгицид" msgstr[3] "распыляемый фунгицид" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -6154,7 +6155,7 @@ msgstr[1] "распыляемый инсектицид" msgstr[2] "распыляемый инсектицид" msgstr[3] "распыляемый инсектицид" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -6303,7 +6304,7 @@ msgstr[1] "шарика для пейнтбола" msgstr[2] "шариков для пейнтбола" msgstr[3] "шарики для пейнтбола" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -6451,7 +6452,7 @@ msgstr[1] "патрона 12 калибра (00 дробь)" msgstr[2] "патронов 12 калибра (00 дробь)" msgstr[3] "патроны 12 калибра (00 дробь)" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -6470,7 +6471,7 @@ msgstr[2] "патронов 12 калибра (травматический)" msgstr[3] "патроны 12 калибра (травматический)" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -6484,7 +6485,7 @@ msgstr[1] "12 калибр (мелкая дробь)" msgstr[2] "12 калибр (мелкая дробь)" msgstr[3] "12 калибр (мелкая дробь)" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -6559,8 +6560,8 @@ msgstr[1] "12 калибр (00 дробь, металлолом)" msgstr[2] "12 калибр (00 дробь, металлолом)" msgstr[3] "12 калибр (00 дробь, металлолом)" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -6754,7 +6755,7 @@ msgstr[1] "ацетилен-кислород" msgstr[2] "ацетилен-кислород" msgstr[3] "ацетилен-кислород" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -6771,7 +6772,7 @@ msgstr[1] "споры грибов" msgstr[2] "спор грибов" msgstr[3] "споры грибов" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Немного грибных спор." @@ -7817,7 +7818,7 @@ msgstr[1] "банки красной краски" msgstr[2] "банок красной краски" msgstr[3] "банки красной краски" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Банка красной краски." @@ -7830,7 +7831,7 @@ msgstr[1] "банки синей краски" msgstr[2] "банок синей краски" msgstr[3] "банки синей краски" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Банка синей краски." @@ -7843,7 +7844,7 @@ msgstr[1] "банки белой краски" msgstr[2] "банок белой краски" msgstr[3] "банки белой краски" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Банка белой краски." @@ -7856,7 +7857,7 @@ msgstr[1] "банки зелёной краски" msgstr[2] "банок зелёной краски" msgstr[3] "банки зелёной краски" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Банка зелёной краски." @@ -7869,7 +7870,7 @@ msgstr[1] "банки пурпурной краски" msgstr[2] "банок пурпурной краски" msgstr[3] "банки пурпурной краски" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Банка пурпурной краски." @@ -7882,7 +7883,7 @@ msgstr[1] "банки жёлтой краски" msgstr[2] "банок жёлтой краски" msgstr[3] "банки жёлтой краски" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Банка жёлтой краски." @@ -7964,7 +7965,7 @@ msgstr[1] "висмута" msgstr[2] "висмута" msgstr[3] "висмут" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -7978,8 +7979,8 @@ msgstr[1] "золота" msgstr[2] "золота" msgstr[3] "золото" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -8004,7 +8005,7 @@ msgstr[1] "цинк" msgstr[2] "цинк" msgstr[3] "цинк" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -8025,7 +8026,7 @@ msgstr[1] "свинца" msgstr[2] "свинца" msgstr[3] "свинец" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -8042,7 +8043,7 @@ msgstr[1] "магниевых порошка" msgstr[2] "магниевых порошков" msgstr[3] "магниевый порошок" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -8060,7 +8061,7 @@ msgstr[1] "серебра" msgstr[2] "серебра" msgstr[3] "серебро" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -8138,7 +8139,7 @@ msgstr[1] "оловянный порошок" msgstr[2] "оловянный порошок" msgstr[3] "оловянный порошок" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -8155,7 +8156,7 @@ msgstr[1] "припой" msgstr[2] "припой" msgstr[3] "припой" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -8201,7 +8202,7 @@ msgstr[1] "запала" msgstr[2] "запалов" msgstr[3] "запалы" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -8271,7 +8272,7 @@ msgstr[1] "обрезка хлопчатобумажной ткани" msgstr[2] "обрезков хлопчатобумажной ткани" msgstr[3] "обрезки хлопчатобумажной ткани" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -8290,7 +8291,7 @@ msgstr[1] "обрезка искусственного меха" msgstr[2] "обрезков искусственного меха" msgstr[3] "обрезки искусственного меха" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -8307,7 +8308,7 @@ msgstr[1] "войлочных обрезка" msgstr[2] "войлочных обрезков" msgstr[3] "войлочные обрезки" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -8326,7 +8327,7 @@ msgstr[1] "меховых обрезка" msgstr[2] "меховых обрезков" msgstr[3] "меховые обрезки" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -8343,7 +8344,7 @@ msgstr[1] "кевларовых кусочка" msgstr[2] "кевларовых кусочков" msgstr[3] "кевларовые кусочки" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -8364,7 +8365,7 @@ msgstr[1] "кожаных обрезка" msgstr[2] "кожаных обрезков" msgstr[3] "кожаные обрезки" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -8381,7 +8382,7 @@ msgstr[1] "обрезка лайкры" msgstr[2] "обрезков лайкры" msgstr[3] "обрезки лайкры" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -8398,7 +8399,7 @@ msgstr[1] "неопреновых обрезка" msgstr[2] "неопреновых обрезков" msgstr[3] "неопреновые обрезки" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -8415,7 +8416,7 @@ msgstr[1] "обрезка синтетики" msgstr[2] "обрезков синтетики" msgstr[3] "обрезки синтетики" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -8432,7 +8433,7 @@ msgstr[1] "обрезка номекса" msgstr[2] "обрезков номекса" msgstr[3] "обрезки номекса" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -8465,7 +8466,7 @@ msgstr[1] "лоскутная хлопчатобумажная ткань" msgstr[2] "лоскутная хлопчатобумажная ткань" msgstr[3] "лоскутная хлопчатобумажная ткань" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -8497,7 +8498,7 @@ msgstr[1] "сшитых лоскута искусственного меха" msgstr[2] "сшитых лоскутов искусственного меха" msgstr[3] "сшитые лоскуты искусственного меха" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -8529,7 +8530,7 @@ msgstr[1] "сшитых лоскута войлока" msgstr[2] "сшитых лоскутов войлока" msgstr[3] "сшитые лоскуты войлока" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -8583,7 +8584,7 @@ msgstr[1] "сшитых лоскута лайкры" msgstr[2] "сшитых лоскутов лайкры" msgstr[3] "сшитые лоскуты лайкры" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -8619,7 +8620,7 @@ msgstr[1] "сшитых лоскута неопрена" msgstr[2] "сшитых лоскутов неопрена" msgstr[3] "сшитые лоскуты неопрена" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -8656,7 +8657,7 @@ msgstr[1] "сшитых лоскута номекса" msgstr[2] "сшитых лоскутов номекса" msgstr[3] "сшитые лоскуты номекса" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -8688,7 +8689,7 @@ msgstr[1] "сшитых лоскута синтетической ткани" msgstr[2] "сшитых лоскутов синтетической ткани" msgstr[3] "сшитые лоскуты синтетической ткани" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -8813,7 +8814,7 @@ msgstr[1] "титан" msgstr[2] "титан" msgstr[3] "титан" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -8851,7 +8852,7 @@ msgstr[1] "10 мм ОП безгильзовый" msgstr[2] "10 мм ОП безгильзовый" msgstr[3] "10 мм ОП безгильзовый" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -8872,7 +8873,7 @@ msgstr[1] " 10 мм ЭП безгильзовый" msgstr[2] " 10 мм ЭП безгильзовый" msgstr[3] " 10 мм ЭП безгильзовый" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -8895,7 +8896,7 @@ msgstr[1] "25 мм, картечь" msgstr[2] "25 мм, картечь" msgstr[3] "25 мм, картечь" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -8918,7 +8919,7 @@ msgstr[1] "7.50 мм безгильзовый" msgstr[2] "7.50 мм безгильзовый" msgstr[3] "7.50 мм безгильзовый" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -8939,7 +8940,7 @@ msgstr[1] "7.50 мм ОЗ" msgstr[2] "7.50 мм ОЗ" msgstr[3] "7.50 мм ОЗ" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -8964,7 +8965,7 @@ msgstr[1] "электрический заряд" msgstr[2] "электрический заряд" msgstr[3] "электрический заряд" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -8982,7 +8983,7 @@ msgstr[1] "пенобетон" msgstr[2] "пенобетон" msgstr[3] "пенобетон" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -9005,7 +9006,7 @@ msgstr[1] "твёрдый водород" msgstr[2] "твёрдый водород" msgstr[3] "твёрдый водород" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -9022,7 +9023,7 @@ msgstr[1] "свинцовые пульки" msgstr[2] "свинцовых пулек" msgstr[3] "свинцовые пульки" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -9041,7 +9042,7 @@ msgstr[1] "округлые экспансивные пульки" msgstr[2] "округлых экспансивных пулек" msgstr[3] "округлые экспансивные пульки" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -9059,7 +9060,7 @@ msgstr[1] "заострённые экспансивные пульки" msgstr[2] "заострённых экспансивных пулек" msgstr[3] "заострённые экспансивные пульки" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -9076,7 +9077,7 @@ msgstr[1] "композитные пульки" msgstr[2] "композитных пулек" msgstr[3] "композитные пульки" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -9269,7 +9270,7 @@ msgstr[1] "пистолетных патрона" msgstr[2] "пистолетных патронов" msgstr[3] "пистолетные патроны" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -9291,7 +9292,7 @@ msgstr[1] "экспансивных пистолетных патрона" msgstr[2] "экспансивных пистолетных патронов" msgstr[3] "экспансивные пистолетные патроны" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -9344,7 +9345,7 @@ msgstr[1] "патрона Магнум" msgstr[2] "патронов Магнум" msgstr[3] "патроны Магнум" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -9368,7 +9369,7 @@ msgstr[1] "экспансивных патрона Магнум" msgstr[2] "экспансивных патронов Магнум" msgstr[3] "экспансивные патроны Магнум" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -9423,7 +9424,7 @@ msgstr[1] "малокалиберных пистолетных патрона" msgstr[2] "малокалиберных пистолетных патронов" msgstr[3] "малокалиберные пистолетные патроны" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -9447,7 +9448,7 @@ msgstr[1] "экспансивных малокалиберных пистоле msgstr[2] "экспансивных малокалиберных пистолетных патронов" msgstr[3] "экспансивные малокалиберные пистолетные патроны" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -9510,7 +9511,7 @@ msgstr[1] "винтовочных патрона" msgstr[2] "винтовочных патронов" msgstr[3] "винтовочные патроны" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -9533,7 +9534,7 @@ msgstr[1] "бронебойных винтовочных патрона" msgstr[2] "бронебойных винтовочных патронов" msgstr[3] "бронебойные винтовочные патроны" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -9589,7 +9590,7 @@ msgstr[1] "импортных винтовочных патрона" msgstr[2] "импортных винтовочных патронов" msgstr[3] "импортные винтовочные патроны" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -9605,7 +9606,7 @@ msgstr[1] "снаряда рельсовой пушки" msgstr[2] "снарядов рельсовой пушки" msgstr[3] "снаряды рельсовой пушки" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -9622,7 +9623,7 @@ msgstr[1] "крупнокалиберных винтовочных патрон msgstr[2] "крупнокалиберных винтовочных патронов" msgstr[3] "крупнокалиберные винтовочные патроны" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -9646,7 +9647,7 @@ msgstr[1] "бронебойных крупнокалиберных винтов msgstr[2] "бронебойных крупнокалиберных винтовочных патронов" msgstr[3] "бронебойные крупнокалиберные винтовочные патроны" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -9684,7 +9685,7 @@ msgstr[1] "осколочные ракеты" msgstr[2] "осколочных ракет" msgstr[3] "осколочные ракеты" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -9701,7 +9702,7 @@ msgstr[1] "многоцелевые ракеты" msgstr[2] "многоцелевых ракет" msgstr[3] "многоцелевые ракеты" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -9720,7 +9721,7 @@ msgstr[1] "дымовые ракеты" msgstr[2] "дымовых ракет" msgstr[3] "дымовые ракеты" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -9754,7 +9755,7 @@ msgstr[1] "патрона с мелкой дробью" msgstr[2] "патронов с мелкой дробью" msgstr[3] "патроны с мелкой дробью" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -9772,7 +9773,7 @@ msgstr[1] "жакана для дробовика" msgstr[2] "жаканов для дробовика" msgstr[3] "жаканы для дробовика" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -9792,7 +9793,7 @@ msgstr[1] "пиротехнических патрона для дробовик msgstr[2] "пиротехнических патронов для дробовика" msgstr[3] "пиротехнические патроны для дробовика" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -9859,7 +9860,7 @@ msgstr[1] "переснаряжённых флешеттных патрона д msgstr[2] "переснаряжённых флешеттных патронов для дробовика" msgstr[3] "переснаряжённые флешеттные патроны для дробовика" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -9932,7 +9933,7 @@ msgstr[1] "алюментум" msgstr[2] "алюментум" msgstr[3] "алюментум" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -10003,7 +10004,7 @@ msgstr[1] "драконьей крови" msgstr[2] "драконьей крови" msgstr[3] "драконья кровь" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -10039,7 +10040,7 @@ msgstr[1] "параболановая пряжа" msgstr[2] "параболановая пряжа" msgstr[3] "параболановая пряжа" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -10054,7 +10055,7 @@ msgstr[1] "кристаллизованной маны" msgstr[2] "кристаллизованной маны" msgstr[3] "кристаллизованная мана" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -10104,7 +10105,7 @@ msgstr[1] "жидкая ртуть" msgstr[2] "жидкая ртуть" msgstr[3] "жидкая ртуть" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "Обыкновенная жидкая ртуть. Обычно используется в термометрах." @@ -10125,7 +10126,7 @@ msgstr "" "Кусок необработанного мифрила. Для использования его необходимо переработать" " в слиток." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -10238,10 +10239,10 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "tourniquet (arm)" msgid_plural "tourniquets (arm)" -msgstr[0] "артериальный турникет (рука)" -msgstr[1] "артериальных турникета (рука)" -msgstr[2] "артериальных турникетов (рука)" -msgstr[3] "артериальные турникеты (рука)" +msgstr[0] "жгут-турникет (рука)" +msgstr[1] "жгута-турникета (рука)" +msgstr[2] "жгутов-турникетов (рука)" +msgstr[3] "жгуты-турникеты (рука)" #. ~ Use action menu_text for tourniquet (arm). #. ~ Use action menu_text for tourniquet (arm XL). @@ -10255,7 +10256,7 @@ msgstr "Подтянуть" #. ~ Use action msg for tourniquet (leg). #: lang/json/ARMOR_from_json.py msgid "You adjust the tourniquet." -msgstr "Вы подтягиваете турникет." +msgstr "Вы подтягиваете жгут-турникет." #. ~ Description for tourniquet (arm) #. ~ Description for tourniquet (arm XL) @@ -10275,18 +10276,18 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "tourniquet (arm XL)" msgid_plural "tourniquets (arm XL)" -msgstr[0] "артериальный турникет (рука XL)" -msgstr[1] "артериальных турникета (рука XL)" -msgstr[2] "артериальных турникетов (рука XL)" -msgstr[3] "артериальные турникеты (рука XL)" +msgstr[0] "жгут-турникет (рука XL)" +msgstr[1] "жгута-турникета (рука XL)" +msgstr[2] "жгутов-турникетов (рука XL)" +msgstr[3] "жгуты-турникеты (рука XL)" #: lang/json/ARMOR_from_json.py msgid "tourniquet (leg)" msgid_plural "tourniquets (leg)" -msgstr[0] "артериальный турникет (нога)" -msgstr[1] "артериальных турникета (нога)" -msgstr[2] "артериальных турникетов (нога)" -msgstr[3] "артериальные турникеты (нога)" +msgstr[0] "жгут-турникет (нога)" +msgstr[1] "жгута-турникета (нога)" +msgstr[2] "жгутов-турникетов (нога)" +msgstr[3] "жгуты-турникеты (нога)" #: lang/json/ARMOR_from_json.py msgid "makeshift blindfold" @@ -10742,7 +10743,7 @@ msgstr[3] "патронные сумки" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -10758,7 +10759,7 @@ msgstr "Вы убираете %s." #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -10802,7 +10803,7 @@ msgstr[1] "нагрудника" msgstr[2] "нагрудников" msgstr[3] "нагрудники" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -11928,46 +11929,21 @@ msgstr "" "и держатель для полицейской дубинки." #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "пояс выживальщика" -msgstr[1] "пояса выживальщика" -msgstr[2] "поясов выживальщика" -msgstr[3] "пояса выживальщика" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "пояс для инструментов" +msgstr[1] "пояса для инструментов" +msgstr[2] "поясов для инструментов" +msgstr[3] "пояса для инструментов" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "Вы убираете %1$s в ваш %2$s." -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "Положить предмет" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" -"Специально спроектированный кожаный пояс со множеством кармашков, ножнами " -"для небольшого клинка, а также пистолетной кобурой. Прочный и тщательно " -"подогнанный для удобства ношения. Активируйте, чтобы вложить/обнажить " -"оружие." - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "пояс для инструментов" -msgstr[1] "пояса для инструментов" -msgstr[2] "поясов для инструментов" -msgstr[3] "пояса для инструментов" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -12156,31 +12132,6 @@ msgid "" "toes." msgstr "Резиновые боты для защиты ног со стальными набойками, прямо по ГОСТу." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "пожарные сапоги выживальщика" -msgstr[1] "пары пожарных сапог выживальщика" -msgstr[2] "пар пожарных сапог выживальщика" -msgstr[3] "пары пожарных сапог выживальщика" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" -"Пара подогнанных под себя и укреплённых кевларом ботинок из номекса. Помогут" -" выжить даже в огне." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "пожарные сапоги выживальщика XL" -msgstr[1] "пары пожарных сапог выживальщика XL" -msgstr[2] "пар пожарных сапог выживальщика XL" -msgstr[3] "пары пожарных сапог выживальщика XL" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -12202,59 +12153,6 @@ msgstr[1] "пары унтов XL" msgstr[2] "пар унтов XL" msgstr[3] "пары унтов XL" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "пара зимних ботинок выживальщика из искуственного меха" -msgstr[1] "пары зимних ботинок выживальщика из искуственного меха" -msgstr[2] "пар зимних ботинок выживальщика из искуственного меха" -msgstr[3] "пары зимних ботинок выживальщика из искуственного меха" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" -"Пара подогнанных под себя и укреплённых кевларом ботинок из номекса. " -"Утеплены искусственным мехом. Помогут выжить даже по колено в живых " -"мертвецах." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "пара зимних ботинок выживальщика из искуственного меха XL" -msgstr[1] "пары зимних ботинок выживальщика из искуственного меха XL" -msgstr[2] "пар зимних ботинок выживальщика из искуственного меха XL" -msgstr[3] "пары зимних ботинок выживальщика из искуственного меха XL" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" -"Пара подогнанных под себя и укреплённых кевларом ботинок из номекса большого" -" размера. Утеплены искусственным мехом. Помогут выжить даже по колено в " -"живых мертвецах." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "водолазные сапоги выживальщика" -msgstr[1] "пары водолазных сапог выживальщика" -msgstr[2] "пар водолазных сапог выживальщика" -msgstr[3] "пары водолазных сапог выживальщика" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" -"Пара подогнанных под себя и укреплённых кевларом ботинок из неопрена. " -"Помогут выжить, в огне или в полымя." - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -12268,33 +12166,6 @@ msgstr[3] "пары походных ботинок" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "Жёсткие и лёгкие кожаные ботинки для активного отдыха." -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "тяжёлые ботинки выживальщика" -msgstr[1] "пары тяжёлых ботинок выживальщика" -msgstr[2] "пар тяжёлых ботинок выживальщика" -msgstr[3] "пары тяжёлых ботинок выживальщика" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" -"Пара подогнанных под себя и укреплённых сталью кевларовых ботинок. " -"Обеспечивают защиту за счёт удобства, особенно когда вы по колено в " -"мертвецах." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "тяжёлые ботинка выживальщика XL" -msgstr[1] "пары тяжёлых ботинок выживальщика XL" -msgstr[2] "пар тяжёлых ботинок выживальщика XL" -msgstr[3] "пары тяжёлых ботинок выживальщика XL" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -12317,33 +12188,6 @@ msgstr[1] "пары кожаных бронеботинок XL" msgstr[2] "пар кожаных бронеботинок XL" msgstr[3] "пары кожаных бронеботинок XL" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "лёгкие ботинки выживальщика" -msgstr[1] "пары лёгких ботинок выживальщика" -msgstr[2] "пар лёгких ботинок выживальщика" -msgstr[3] "пары лёгких ботинок выживальщика" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" -"Пара подогнанных под себя и укреплённых кевларом ботинок из ткани. Более " -"комфортные за счёт слабой защиты, они помогут вам сохранить подвижность и " -"скорость, даже по колено в живых мертвецах." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "лёгкие ботинки выживальщика XL" -msgstr[1] "пары лёгких ботинок выживальщика XL" -msgstr[2] "пар лёгких ботинок выживальщика XL" -msgstr[3] "пары лёгких ботинок выживальщика XL" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -12433,25 +12277,6 @@ msgstr "" "десятилетий такая обувь стала популярной среди представителей рабочего " "класса." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "ботинки выживальщика" -msgstr[1] "пары ботинок выживальщика" -msgstr[2] "пар ботинок выживальщика" -msgstr[3] "пары ботинок выживальщика" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" -"Пара подогнанных под себя и укреплённых кевларом кожаных ботинок. " -"Сбалансированы между создаваемой защитой и удобством, они помогут вам выжить" -" даже по колено в живых мертвецах." - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -12492,50 +12317,6 @@ msgstr[1] "пары зимних ботинок XL" msgstr[2] "пар зимних ботинок XL" msgstr[3] "пары зимних ботинок XL" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "зимние ботинки выживальщика" -msgstr[1] "пары зимних ботинок выживальщика" -msgstr[2] "пар зимних ботинок выживальщика" -msgstr[3] "пары зимних ботинок выживальщика" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" -"Пара подогнанных под себя и укреплённых кевларом ботинок из номекса. " -"Утеплены мехом. Помогут выжить даже по колено в живых мертвецах." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "зимние ботинки выживальщика XL" -msgstr[1] "пары зимних ботинок выживальщика XL" -msgstr[2] "пар зимних ботинок выживальщика XL" -msgstr[3] "пары зимних ботинок выживальщика XL" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "ботинки выживальщика XL" -msgstr[1] "пары ботинок выживальщика XL" -msgstr[2] "пар ботинок выживальщика XL" -msgstr[3] "пары ботинок выживальщика XL" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" -"Пара подогнанных под себя и укреплённых кевларом кожаных ботинок большого " -"размера. Сбалансированы между создаваемой защитой и удобством, они помогут " -"вам выжить даже по колено в живых мертвецах." - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -13644,31 +13425,6 @@ msgstr[1] "кожаных пыльника XL" msgstr[2] "кожаных пыльников XL" msgstr[3] "кожаные пыльники XL" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "пыльник выживальщика" -msgstr[1] "пыльника выживальщика" -msgstr[2] "пыльников выживальщика" -msgstr[3] "пыльники выживальщика" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" -"Подогнанный под себя и укреплённый кевларом плащ-пыльник в полный рост со " -"множеством карманов и отделений. Удобный, прочный, вместительный." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "пыльник выживальщика XL" -msgstr[1] "пыльника выживальщика XL" -msgstr[2] "пыльников выживальщика XL" -msgstr[3] "пыльники выживальщика XL" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -13730,7 +13486,7 @@ msgstr[1] "армейские куртки" msgstr[2] "армейских курток" msgstr[3] "армейские куртки" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "Прочная куртка со множеством карманов. Популярна среди военных." @@ -13948,7 +13704,7 @@ msgstr[1] "кимоно" msgstr[2] "кимоно" msgstr[3] "кимоно" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -14155,24 +13911,6 @@ msgstr "" "Плотный кожаный плащ-пыльник в полный рост, без рукавов, сковывающих ваши " "руки. Вместительный благодаря множеству карманов." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "пыльник выживальщика без рукавов" -msgstr[1] "пыльника выживальщика без рукавов" -msgstr[2] "пыльников выживальщика без рукавов" -msgstr[3] "пыльники выживальщика без рукавов" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" -"Подогнанный под себя и укреплённый кевларом плащ-пыльник в полный рост, без " -"рукавов и со множеством карманов и отделений. Удобный, прочный, " -"вместительный." - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -14241,23 +13979,6 @@ msgstr "" "Толстый кожаный плащ без рукавов, не обременяющий ваши руки. В нём много " "свободного места для хранения вещей благодаря большому количеству карманов." -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "тренчкот выживальщика без рукавов" -msgstr[1] "тренчкота выживальщика без рукавов" -msgstr[2] "тренчкотов выживальщика без рукавов" -msgstr[3] "тренчкоты выживальщика без рукавов" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" -"Подогнанный под себя и укреплённый кевларом плащ без рукавов со множеством " -"карманов и отделений. Удобный, прочный, вместительный." - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -14279,7 +14000,7 @@ msgstr[1] "тобы" msgstr[2] "тоб" msgstr[3] "тобы" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -14344,23 +14065,6 @@ msgstr[3] "кожаные тренчкоты" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "Толстый кожаный плащ со множеством карманов. Влезет куча вещей." -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "тренчкот выживальщика" -msgstr[1] "тренчкота выживальщика" -msgstr[2] "тренчкотов выживальщика" -msgstr[3] "тренчкоты выживальщика" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" -"Подогнанный под себя и укреплённый кевларом плащ со множеством карманов и " -"отделений. Удобный, прочный, вместительный." - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -14678,24 +14382,6 @@ msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "" "Солнцезащитные очки, хороши для защиты ваших глаз от ослепляющего блеска." -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "очки выживальщика" -msgstr[1] "очков выживальщика" -msgstr[2] "очков выживальщика" -msgstr[3] "очки выживальщика" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" -"Специально спроектированные бронированные очки с затемнёнными линзами. " -"Удобные и долговечные, они обеспечивают отличную защиту от опасностей " -"окружающей среды." - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -15182,31 +14868,6 @@ msgid "" msgstr "" "Кожаные перчатки без пальцев, усиленные металлом с тыльной стороны ладоней." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "пожарные перчатки выживальщика" -msgstr[1] "пары пожарных перчаток выживальщика" -msgstr[2] "пар пожарных перчаток выживальщика" -msgstr[3] "пары пожарных перчаток выживальщика" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" -"Подогнанные под себя перчатки из номекса, укреплённые кевларом. Пост-" -"апокалиптическое обновление пожарных перчаток, используемых до Катаклизма." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "пожарные перчатки выживальщика XL" -msgstr[1] "пары пожарных перчаток выживальщика XL" -msgstr[2] "пар пожарных перчаток выживальщика XL" -msgstr[3] "пары пожарных перчаток выживальщика XL" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -15228,64 +14889,6 @@ msgstr[1] "пары меховых перчаток XL" msgstr[2] "пар меховых перчаток XL" msgstr[3] "пары меховых перчаток XL" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "пара зимних перчаток выживальщика из искуственного меха" -msgstr[1] "пары зимних перчаток выживальщика из искуственного меха" -msgstr[2] "пар зимних перчаток выживальщика из искуственного меха" -msgstr[3] "пары зимних перчаток выживальщика из искуственного меха" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" -"Подогнанные под себя перчатки, укреплённые кевларом и утеплённые " -"искусственным мехом." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "пара зимних перчаток выживальщика из искуственного меха XL" -msgstr[1] "пары зимних перчаток выживальщика из искуственного меха XL" -msgstr[2] "пар зимних перчаток выживальщика из искуственного меха XL" -msgstr[3] "пары зимних перчаток выживальщика из искуственного меха XL" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" -"Подогнанные под себя перчатки большого размера, укреплённые кевларом и " -"утеплённые искусственным мехом." - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "тяжёлые перчатки выживальщика" -msgstr[1] "пары тяжёлых перчаток выживальщика" -msgstr[2] "пар тяжёлых перчаток выживальщика" -msgstr[3] "пары тяжёлых перчаток выживальщика" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" -"Подогнанные под себя перчатки из кевлара, укреплённые сталью. Созданы прежде" -" всего для защиты." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "тяжёлые перчатки выживальщика XL" -msgstr[1] "пары тяжёлых перчаток выживальщика XL" -msgstr[2] "пар тяжёлых перчаток выживальщика XL" -msgstr[3] "пары тяжёлых перчаток выживальщика XL" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -15365,81 +14968,6 @@ msgstr[1] "пары перчаток-подкладок XL" msgstr[2] "пар перчаток-подкладок XL" msgstr[3] "пары перчаток-подкладок XL" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "лёгкие перчатки выживальщика" -msgstr[1] "пары лёгких перчаток выживальщика" -msgstr[2] "пар лёгких перчаток выживальщика" -msgstr[3] "пары лёгких перчаток выживальщика" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" -"Подогнанные под себя тканые перчатки, укреплённые кевларом. Созданы для " -"комфортного ношения." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "лёгкие перчатки выживальщика XL" -msgstr[1] "пары лёгких перчаток выживальщика XL" -msgstr[2] "пар лёгких перчаток выживальщика XL" -msgstr[3] "пары лёгких перчаток выживальщика XL" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "лёгкие перчатки выживальщика без пальцев" -msgstr[1] "пары лёгких перчаток выживальщика без пальцев" -msgstr[2] "пар лёгких перчаток выживальщика без пальцев" -msgstr[3] "пары лёгких перчаток выживальщика без пальцев" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" -"Подогнанные под себя тканые перчатки без пальцев, укреплённые кевларом. " -"Созданы для комфортного ношения." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "лёгкие перчатки выживальщика без пальцев XL" -msgstr[1] "пары лёгких перчаток выживальщика без пальцев XL" -msgstr[2] "пар лёгких перчаток выживальщика без пальцев XL" -msgstr[3] "пары лёгких перчаток выживальщика без пальцев XL" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "перчатки выживальщика без пальцев" -msgstr[1] "пары перчаток выживальщика без пальцев" -msgstr[2] "пар перчаток выживальщика без пальцев" -msgstr[3] "пары перчаток выживальщика без пальцев" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" -"Подогнанные под себя тканые перчатки без пальцев, укреплённые кевларом. " -"Балансируют между удобством и предоставляемой защитой." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "перчатка выживальщика без пальцев XL" -msgstr[1] "пары перчаток выживальщика без пальцев XL" -msgstr[2] "пар перчаток выживальщика без пальцев XL" -msgstr[3] "пары перчаток выживальщика без пальцев XL" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -15490,23 +15018,6 @@ msgstr "" "Пара резиновых перчаток, какими пользуются во время работы с чистящими " "жидкостями." -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "перчатки выживальщика" -msgstr[1] "пары перчаток выживальщика" -msgstr[2] "пар перчаток выживальщика" -msgstr[3] "пары перчаток выживальщика" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" -"Подогнанные под себя тканые перчатки, укреплённые кевларом. Балансируют " -"между удобством и предоставляемой защитой." - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -15660,46 +15171,6 @@ msgstr "" "Длинные полосы шерсти, которыми обматываются руки для того, чтобы " "предотвратить их травмирование при нанесении ударов." -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "зимние перчатки выживальщика" -msgstr[1] "пары зимних перчаток выживальщика" -msgstr[2] "пар зимних перчаток выживальщика" -msgstr[3] "пары зимних перчаток выживальщика" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" -"Подогнанные под себя перчатки, укреплённые кевларом и утеплённые мехом." - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "зимние перчатки выживальщика XL" -msgstr[1] "пары зимних перчаток выживальщика XL" -msgstr[2] "пар зимних перчаток выживальщика XL" -msgstr[3] "пары зимних перчаток выживальщика XL" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "перчатки выживальщика XL" -msgstr[1] "пары перчаток выживальщика XL" -msgstr[2] "пар перчаток выживальщика XL" -msgstr[3] "пары перчаток выживальщика XL" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" -"Подогнанные под себя тканые перчатки большого размера, укреплённые кевларом." -" Балансируют между удобством и предоставляемой защитой." - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -16636,7 +16107,7 @@ msgstr[1] "кабуто" msgstr[2] "кабуто" msgstr[3] "кабуто" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -16777,40 +16248,6 @@ msgstr "" "лица без помех обзору. Элемент доспехов для настоящего Йотуна, в отличие от " "стереотипного рогатого шлема." -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "капюшон кочевника" -msgstr[1] "капюшона кочевника" -msgstr[2] "капюшонов кочевника" -msgstr[3] "капюшоны кочевника" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" -"Самодельный капюшон с защитой для глаз от дождя и солнца. Предназначен для " -"дальних походов." - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "капюшон кочевника XL" -msgstr[1] "капюшона кочевника XL" -msgstr[2] "капюшонов кочевника XL" -msgstr[3] "капюшоны кочевника XL" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" -"Самодельный капюшон с защитой для глаз от дождя и солнца. Предназначен для " -"дальних походов и гигантских странников." - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -16880,40 +16317,6 @@ msgstr "" "К сожалению, поля не помогут защитить глаза от солнца. Этот шлем размером " "куда больше среднего." -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "капюшон добытчика" -msgstr[1] "капюшона добытчика" -msgstr[2] "капюшонов добытчика" -msgstr[3] "капюшоны добытчика" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" -"Крепкий доходящий до шеи защитный капюшон, дополненный респиратором и " -"защитой для глаз. Для опасных походов за добычей." - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "капюшон добытчика XL" -msgstr[1] "капюшона добытчика XL" -msgstr[2] "капюшонов добытчика XL" -msgstr[3] "капюшоны добытчика XL" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" -"Крепкий доходящий до шеи защитный капюшон большого размера, дополненный " -"респиратором и защитой для глаз. Для опасных походов за добычей." - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -17177,48 +16580,6 @@ msgstr "" "пистолета близко к телу. Неудобно использовать без подготовки. Активируйте, " "чтобы вложить/достать пистолет." -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "разгрузка выживальщика" -msgstr[1] "разгрузки выживальщика" -msgstr[2] "разгрузок выживальщика" -msgstr[3] "разгрузки выживальщика" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" -"Специально спроектированная разгрузка со множеством отделений, а также " -"встроенный тактический ремень для небольшой винтовки или подобного оружия. " -"Прочная и изготовлена для комфортного ношения. Активируйте, чтобы " -"вложить/достать оружие." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "разгрузка выживальщика XL" -msgstr[1] "разгрузки выживальщика XL" -msgstr[2] "разгрузок выживальщика XL" -msgstr[3] "разгрузки выживальщика XL" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" -"Специально спроектированная разгрузка со множеством отделений, а также " -"встроенный тактический ремень для небольшой винтовки или подобного оружия. " -"Прочная и изготовлена для комфортного ношения самыми большими " -"выживальщиками. Активируйте, чтобы вложить/достать оружие." - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -17286,100 +16647,6 @@ msgstr "" "Переделанный под себя кольчужный капюшон. Можно с удобством носить под " "шлемами. Большого размера" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "пожарный капюшон выживальщика" -msgstr[1] "пожарных капюшона выживальщика" -msgstr[2] "пожарных капюшонов выживальщика" -msgstr[3] "пожарные капюшоны выживальщика" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" -"Подогнанный под себя укреплённый капюшон из номекса и кевлара. Крепкий и " -"прочный." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "пожарный капюшон выживальщика XL" -msgstr[1] "пожарных капюшона выживальщика XL" -msgstr[2] "пожарных капюшонов выживальщика XL" -msgstr[3] "пожарные капюшоны выживальщика XL" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" -"Подогнанный под себя укреплённый капюшон из номекса и кевлара. Очень крепкий" -" и прочный. Очень большой и сделан словно в Муспельхейме." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "лёгкий капюшон выживальщика" -msgstr[1] "лёгких капюшона выживальщика" -msgstr[2] "лёгких капюшонов выживальщика" -msgstr[3] "лёгкие капюшоны выживальщика" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" -"Подогнанный под себя укреплённый капюшон из ткани и кевлара. Лёгкий и " -"прочный." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "лёгкий капюшон выживальщика XL" -msgstr[1] "лёгких капюшона выживальщика XL" -msgstr[2] "лёгких капюшонов выживальщика XL" -msgstr[3] "лёгкие капюшоны выживальщика XL" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" -"Подогнанный под себя укреплённый капюшон большого размера из ткани и " -"кевлара. Лёгкий и прочный." - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "зимний капюшон выживальщика из искуственного меха" -msgstr[1] "зимних капюшона выживальщика из искуственного меха" -msgstr[2] "зимних капюшонов выживальщика из искуственного меха" -msgstr[3] "зимние капюшоны выживальщика из искуственного меха" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" -"Подогнанный под себя укреплённый капюшон, утеплённый искусственным мехом." - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "зимний капюшон выживальщика из искуственного меха XL" -msgstr[1] "зимних капюшона выживальщика из искуственного меха XL" -msgstr[2] "зимних капюшонов выживальщика из искуственного меха XL" -msgstr[3] "зимние капюшоны выживальщика из искуственного меха XL" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" -"Подогнанный под себя укреплённый капюшон большого размера, утеплённый " -"искусственным мехом." - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -17393,72 +16660,6 @@ msgstr[3] "капюшоны от дождя" msgid "A waterproof hood made to be worn in bad weather." msgstr "Водонепроницаемый капюшон для непогоды." -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "капюшон выживальщика" -msgstr[1] "капюшона выживальщика" -msgstr[2] "капюшонов выживальщика" -msgstr[3] "капюшоны выживальщика" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" -"Подогнанный под себя бронированный капюшон из кожи и кевлара. Удобный и " -"обеспечивает защиту от повреждений." - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "зимний капюшон выживальщика" -msgstr[1] "зимних капюшона выживальщика" -msgstr[2] "зимних капюшонов выживальщика" -msgstr[3] "зимние капюшоны выживальщика" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" -"Подогнанный под себя укреплённый капюшон из кевлара, утеплённый " -"искусственным мехом." - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "зимний капюшон выживальщика XL" -msgstr[1] "зимних капюшона выживальщика XL" -msgstr[2] "зимних капюшонов выживальщика XL" -msgstr[3] "зимние капюшоны выживальщика XL" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" -"Подогнанный под себя укреплённый капюшон большого размера, утеплённый " -"настоящим мехом." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "капюшон выживальщика XL" -msgstr[1] "капюшона выживальщика XL" -msgstr[2] "капюшонов выживальщика XL" -msgstr[3] "капюшоны выживальщика XL" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" -"Подогнанный под себя бронированный капюшон большого размера из кожи и " -"кевлара. Удобный и обеспечивает защиту от повреждений." - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -17999,9 +17200,9 @@ msgstr[1] "золотые запонки с гранатом" msgstr[2] "золотые запонки с гранатом" msgstr[3] "золотые запонки с гранатом" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "Пара запонок с гранатами в оправе." @@ -18014,9 +17215,9 @@ msgstr[1] "золотые запонки с бриллиантами" msgstr[2] "золотые запонки с бриллиантами" msgstr[3] "золотые запонки с бриллиантами" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "Пара запонок с бриллиантами." @@ -18029,9 +17230,9 @@ msgstr[1] "золотые запонки с аметистом" msgstr[2] "золотые запонки с аметистом" msgstr[3] "золотые запонки с аметистом" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "Пара запонок с аметистами в оправе." @@ -18044,9 +17245,9 @@ msgstr[1] "золотые запонки с аквамарином" msgstr[2] "золотые запонки с аквамарином" msgstr[3] "золотые запонки с аквамарином" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "Пара запонок с аквамаринами в оправе." @@ -18059,9 +17260,9 @@ msgstr[1] "золотые запонки с изумрудом" msgstr[2] "золотые запонки с изумрудом" msgstr[3] "золотые запонки с изумрудом" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "Пара запонок с изумрудами в оправе." @@ -18074,9 +17275,9 @@ msgstr[1] "золотые запонки с александритом" msgstr[2] "золотые запонки с александритом" msgstr[3] "золотые запонки с александритом" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "Пара запонок с александритами в оправе." @@ -18089,9 +17290,9 @@ msgstr[1] "золотые запонки с рубином" msgstr[2] "золотые запонки с рубином" msgstr[3] "золотые запонки с рубином" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "Пара запонок с рубинами в оправе." @@ -18104,9 +17305,9 @@ msgstr[1] "золотые запонки с хризолитом" msgstr[2] "золотые запонки с хризолитом" msgstr[3] "золотые запонки с хризолитом" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "Пара запонок с хризолитами в оправе." @@ -18119,9 +17320,9 @@ msgstr[1] "золотые запонки с сапфиром" msgstr[2] "золотые запонки с сапфиром" msgstr[3] "золотые запонки с сапфиром" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "Пара запонок с сапфирами в оправе." @@ -18134,9 +17335,9 @@ msgstr[1] "золотые запонки с турмалином" msgstr[2] "золотые запонки с турмалином" msgstr[3] "золотые запонки с турмалином" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "Пара запонок с турмалинами в оправе." @@ -18149,9 +17350,9 @@ msgstr[1] "золотые запонки с цитрином" msgstr[2] "золотые запонки с цитрином" msgstr[3] "золотые запонки с цитрином" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "Пара запонок с цитринами в оправе." @@ -18164,9 +17365,9 @@ msgstr[1] "золотые запонки с голубым топазом" msgstr[2] "золотые запонки с голубым топазом" msgstr[3] "золотые запонки с голубым топазом" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "Пара запонок с с голубыми топазами в оправе." @@ -18179,9 +17380,9 @@ msgstr[1] "золотые запонки с опалом" msgstr[2] "золотые запонки с опалом" msgstr[3] "золотые запонки с опалом" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "Пара запонок с опалами в оправе." @@ -18194,9 +17395,9 @@ msgstr[1] "золотые запонки с жемчугом" msgstr[2] "золотые запонки с жемчугом" msgstr[3] "золотые запонки с жемчугом" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "Пара запонок с жемчугом в оправе." @@ -22815,7 +22016,7 @@ msgstr[1] "пожарных штанов" msgstr[2] "пожарных штанов" msgstr[3] "пожарные штаны" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -22865,7 +22066,7 @@ msgstr[1] "кожаных чапсов" msgstr[2] "кожаных чапсов" msgstr[3] "кожаные чапсы" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -22882,7 +22083,7 @@ msgstr[1] "пары чапсов для бензопилы" msgstr[2] "пар чапсов для бензопилы" msgstr[3] "пары чапсов для бензопилы" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -22903,7 +22104,7 @@ msgstr[1] "фехтовальных брюк" msgstr[2] "фехтовальных брюк" msgstr[3] "фехтовальные брюки " -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -23118,41 +22319,6 @@ msgstr "" "металлических пластинок — неплохая, но не самая удобная защита. Вы выглядите" " как мусорный великан." -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "лёгкие штаны выживальщика с карманами" -msgstr[1] "лёгких штанов выживальщика с карманами" -msgstr[2] "лёгких штанов выживальщика с карманами" -msgstr[3] "лёгкие штаны выживальщика с карманами" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" -"Лёгкие, укреплённые кевларом штаны со множеством карманов и отделений, чтобы" -" унести как можно больше. Крепкие и практически водонепроницаемы." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "лёгкие штаны выживальщика с карманами XL" -msgstr[1] "пары лёгких штанов выживальщика с карманами XL" -msgstr[2] "пар лёгких штанов выживальщика с карманами XL" -msgstr[3] "лёгкие штаны выживальщика с карманами XL" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" -"Лёгкие, укреплённые кевларом штаны со множеством карманов и отделений, чтобы" -" унести как можно больше. Крепкие и практически водонепроницаемы, большого " -"размера." - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -23166,40 +22332,6 @@ msgstr[3] "мотоциклетные штаны" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "Штаны, предназначенные для мотокроссменов и мотоциклистов." -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "штаны выживальщика с карманами" -msgstr[1] "штанов выживальщика с карманами" -msgstr[2] "штанов выживальщика с карманами" -msgstr[3] "штаны выживальщика с карманами" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" -"Укреплённые кевларом штаны со множеством карманов и отделений. Сделаны очень" -" прочными и удобными для ношения." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "штаны выживальщика с карманами XL" -msgstr[1] "пары штанов выживальщика с карманами XL" -msgstr[2] "пар штанов выживальщика с карманами XL" -msgstr[3] "штаны выживальщика с карманами XL" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" -"Укреплённые кевларом штаны большого размера со множеством карманов и " -"отделений. Сделаны очень прочными и удобными для ношения." - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" @@ -23208,7 +22340,7 @@ msgstr[1] "пары штанов для разминирования" msgstr[2] "пар штанов для разминирования" msgstr[3] "пары штанов для разминирования" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -23224,7 +22356,7 @@ msgstr[1] "пары легких штанов для разминировани msgstr[2] "пар легких штанов для разминирования" msgstr[3] "пары легких штанов для разминирования" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -23259,7 +22391,7 @@ msgstr[1] "баскетбольных шорт" msgstr[2] "баскетбольных шорт" msgstr[3] "баскетбольные шорты" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "Баскетбольные шорты. Удобные и лёгкие." @@ -23272,7 +22404,7 @@ msgstr[1] "бриджей" msgstr[2] "бриджей" msgstr[3] "бриджи" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -23304,7 +22436,7 @@ msgstr[1] "шортиков" msgstr[2] "шортиков" msgstr[3] "шортики" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "Очень короткие шорты." @@ -23317,7 +22449,7 @@ msgstr[1] "меховых шортиков" msgstr[2] "меховых шортиков" msgstr[3] "меховые шортики" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "Очень короткие меховые шортики." @@ -23330,7 +22462,7 @@ msgstr[1] "кожаных шортиков" msgstr[2] "кожаных шортиков" msgstr[3] "кожаные шортики" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "Очень короткие кожаные шортики." @@ -23343,7 +22475,7 @@ msgstr[1] "джинсов" msgstr[2] "джинсов" msgstr[3] "джинсы" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "Синие джинсы с двумя глубокими карманами." @@ -23380,7 +22512,7 @@ msgstr[1] "пары красных джинсов" msgstr[2] "пар красных джинсов" msgstr[3] "красные джинсы" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "Облегающие ярко-красные джинсы с двумя глубокими карманами." @@ -23415,7 +22547,7 @@ msgstr[1] "леггинсов" msgstr[2] "леггинсов" msgstr[3] "леггинсы" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -23514,7 +22646,7 @@ msgstr[1] "штанов" msgstr[2] "штанов" msgstr[3] "штаны" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "Штаны цвета хаки. Немного теплее, чем джинсы." @@ -23527,15 +22659,15 @@ msgstr[1] "армейских штанов" msgstr[2] "армейских штанов" msgstr[3] "армейские штаны" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "Прочные штаны со множеством карманов. Выбор военных." #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" "Прочные армейские штаны с камуфляжем серо-зелёно-бурого цвета. В камуфляжной" " расцветке отсутствует чёрный цвет." @@ -23578,7 +22710,7 @@ msgstr[1] "штанов с карманами" msgstr[2] "штанов с карманами" msgstr[3] "штаны с карманами" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "Штаны с карманами. Неплохо увеличивают объём инвентаря." @@ -23591,7 +22723,7 @@ msgstr[1] "клетчатых штанов" msgstr[2] "клетчатых штанов" msgstr[3] "клетчатые штаны" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "В крайнем случае, на них можно поиграть в шашки." @@ -23604,7 +22736,7 @@ msgstr[1] "меховых штанов" msgstr[2] "меховых штанов" msgstr[3] "меховые штаны" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "Здоровенные штаны из меха." @@ -23617,7 +22749,7 @@ msgstr[1] "штанов из искусственного меха" msgstr[2] "штанов из искусственного меха" msgstr[3] "штаны из искусственного меха" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "Пара длинных хлопчатобумажных штанов с теплым искусственным мехом." @@ -23630,7 +22762,7 @@ msgstr[1] "кожаных штанов" msgstr[2] "кожаных штанов" msgstr[3] "кожаные штаны" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -23645,7 +22777,7 @@ msgstr[1] "горнолыжных штанов" msgstr[2] "горнолыжных штанов" msgstr[3] "горнолыжные штаны" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "Штаны, предназначенные для горнолыжного спорта." @@ -23658,7 +22790,7 @@ msgstr[1] "пары полицейских бриджей" msgstr[2] "пар полицейских бриджей" msgstr[3] "пары полицейских бриджей" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -23675,7 +22807,7 @@ msgstr[1] "шорт почтальона" msgstr[2] "шорт почтальона" msgstr[3] "шорты почтальона" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "Тёмно-синие шорты, которые используют работники почтовой службы." @@ -23688,7 +22820,7 @@ msgstr[1] "шорт" msgstr[2] "шорт" msgstr[3] "шорты" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "Шорты цвета хаки." @@ -23701,7 +22833,7 @@ msgstr[1] "шорт с карманами" msgstr[2] "шорт с карманами" msgstr[3] "шорты с карманами" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "Шорты с большими карманами." @@ -23714,7 +22846,7 @@ msgstr[1] "джинсовых шорт" msgstr[2] "джинсовых шорт" msgstr[3] "джинсовые шорты" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "Пара джинсовых шорт." @@ -23787,7 +22919,7 @@ msgstr[1] "штанов в полоску" msgstr[2] "штанов в полоску" msgstr[3] "штаны в полоску" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "Штаны с горизонтальными чёрно-белыми полосками." @@ -23822,7 +22954,7 @@ msgstr[1] "армейских зимних штанов" msgstr[2] "армейских зимних штанов" msgstr[3] "армейские зимние штаны" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -25248,74 +24380,6 @@ msgstr "" "транспортировки одежды и других вещей во время поездок, предоставляет " "приличную вместительность, но таскать его с собой не совсем комфортно." -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "вещмешок выживальщика" -msgstr[1] "вещмешка выживальщика" -msgstr[2] "вещмешков выживальщика" -msgstr[3] "вещмешки выживальщика" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Специально спроектированный тяжёлый вещевой мешок. Сделан, чтобы носить как " -"можно больше вещей, прочный." - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "ранец выживальщика" -msgstr[1] "ранца выживальщика" -msgstr[2] "ранцев выживальщика" -msgstr[3] "ранцы выживальщика" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" -"Специально спроектированный рюкзак. Сделан, чтобы носить как можно больше " -"вещей, прочный." - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "рюкзак выживальщика" -msgstr[1] "рюкзака выживальщика" -msgstr[2] "рюкзаков выживальщика" -msgstr[3] "рюкзаки выживальщика" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" -"Специально спроектированный тяжёлый рюкзак. Сделан, чтобы носить как можно " -"больше вещей, прочный." - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "беговой рюкзак выживальщика" -msgstr[1] "беговых рюкзака выживальщика" -msgstr[2] "беговых рюкзаков выживальщика" -msgstr[3] "беговые рюкзаки выживальщика" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" -"Специально спроектированный лёгкий рюкзак для бега. Сделан, чтобы носить как" -" можно больше вещей, прочный." - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -25882,42 +24946,6 @@ msgstr[1] "пластинчатых брони XL" msgstr[2] "пластинчатой брони XL" msgstr[3] "пластинчатая броня XL" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "костюм кочевника" -msgstr[1] "костюма кочевника" -msgstr[2] "костюмов кочевника" -msgstr[3] "костюмы кочевника" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" -"Самодельный костюм, сделанный из докатаклизменной одежды. Предназначен для " -"дальних походов. В нём уйма места для хранения вещей." - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "лёгкий костюм кочевника" -msgstr[1] "лёгких костюма кочевника" -msgstr[2] "лёгких костюмов кочевника" -msgstr[3] "лёгкие костюмы кочевника" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" -"Лёгкий самодельный костюм из докатаклизменной одежды, предназначенный для " -"дальних летних походов. По сравнению с обычным костюмом кочевника в нём " -"меньше места для хранения и легче броня." - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -25974,11 +25002,12 @@ msgstr[3] "бронекостюмы спецназа" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" -"Черные бронежилеты спецназа для подавления беспорядков ещё тогда, когда они " -"были просто беспорядками. Спереди красуется слово «ПОЛИЦИЯ»." +"Черные пластиковые жёсткие бронежилеты спецназа для подавления беспорядков " +"ещё тогда, когда они были просто беспорядками. Спереди красуется слово " +"«ПОЛИЦИЯ»." #: lang/json/ARMOR_from_json.py msgid "O-yoroi" @@ -25993,23 +25022,6 @@ msgstr[3] "о-ёрой" msgid "An ornamental suit of Japanese samurai armor." msgstr "Парадные доспехи японских самураев." -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "костюм добытчика" -msgstr[1] "костюма добытчика" -msgstr[2] "костюмов добытчика" -msgstr[3] "костюмы добытчика" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" -"Крепкий костюм добытчика, сделанный из доведённого до ума докатаклизменного " -"защитного снаряжения. В нём уйма места для хранения вещей." - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -26187,71 +25199,6 @@ msgstr[1] "костюма пожарного XL" msgstr[2] "костюмов пожарного XL" msgstr[3] "костюмы пожарного XL" -#: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "пожарный костюм выживальщика" -msgstr[1] "пожарных костюма выживальщика" -msgstr[2] "пожарных костюмов выживальщика" -msgstr[3] "пожарные костюмы выживальщика" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" -"Тяжёлая самодельная броня, представляет собой комбинацию бронежилета и " -"укреплённого огнеупорного комбинезона из номекса. Защищает от огня и " -"повреждений." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "пожарный костюм выживальщика XL" -msgstr[1] "пожарных костюма выживальщика XL" -msgstr[2] "пожарных костюмов выживальщика XL" -msgstr[3] "пожарные костюмы выживальщика XL" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "зимний костюм выживальщика" -msgstr[1] "зимних костюма выживальщика" -msgstr[2] "зимних костюмов выживальщика" -msgstr[3] "зимние костюмы выживальщика" - -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" -"Утеплённая самодельная тяжёлая броня, сделанная из усиленного бронежилета и " -"кожаного комбинезона, утеплённого искусственным мехом. Защищает от " -"воздействий окружающей среды и повреждений." - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "зимний костюм выживальщика XL" -msgstr[1] "зимних костюма выживальщика XL" -msgstr[2] "зимних костюмов выживальщика XL" -msgstr[3] "зимние костюмы выживальщика XL" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." -msgstr "" -"Утеплённая самодельная тяжёлая броня большого размера, сделанная из " -"усиленного бронежилета и кожаного комбинезона, утеплённого искусственным " -"мехом. Защищает от воздействий окружающей среды и повреждений." - #: lang/json/ARMOR_from_json.py msgid "gambeson" msgid_plural "gambesons" @@ -26270,6 +25217,24 @@ msgstr "" "или другой бронёй. Можно носить и просто так, если вы не можете позволить " "себе нормальную броню." +#: lang/json/ARMOR_from_json.py +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" +msgstr[0] "кевларовый гамбезон" +msgstr[1] "кевларовых гамбезона" +msgstr[2] "кевларовых гамбезонов" +msgstr[3] "кевларовые гамбезоны" + +#. ~ Description for kevlar gambeson +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." +msgstr "" +"Плотная куртка из стёганой ткани. Предназначена для ношения под кольчугой " +"или другой бронёй. В неё включены слои кевлара для дополнительной защиты." + #: lang/json/ARMOR_from_json.py msgid "XL gambeson" msgid_plural "XL gambesons" @@ -26278,6 +25243,14 @@ msgstr[1] "гамбезона XL" msgstr[2] "гамбезонов XL" msgstr[3] "гамбезоны XL" +#: lang/json/ARMOR_from_json.py +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" +msgstr[0] "кевларовый гамбезон XL" +msgstr[1] "кевларовых гамбезона XL" +msgstr[2] "кевларовых гамбезонов XL" +msgstr[3] "кевларовые гамбезоны XL" + #: lang/json/ARMOR_from_json.py msgid "hazmat suit" msgid_plural "hazmat suits" @@ -26298,51 +25271,6 @@ msgstr "" "опасными материалами. Хрупкая и неудобная, однако обеспечивает полную защиту" " от радиационного излучения. Для полной защиты требуется противогаз." -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "тяжёлый костюм выживальщика" -msgstr[1] "тяжёлых костюма выживальщика" -msgstr[2] "тяжёлых костюмов выживальщика" -msgstr[3] "тяжёлые костюмы выживальщика" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" -"Тяжёлая самодельная броня, представляет собой комбинацию бронежилета и " -"укреплённого металлическими пластинами кожаного комбинезона. Защищает от " -"вредной среды и повреждений." - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "лёгкий костюм выживальщика" -msgstr[1] "лёгких костюма выживальщика" -msgstr[2] "лёгких костюмов выживальщика" -msgstr[3] "лёгкие костюмы выживальщика" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" -"Самодельная лёгкая броня, сделанная из бронежилета и усиленного комбинезона " -"из ткани. Защищает от вредной среды и повреждений." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "лёгкий костюм выживальщика XL" -msgstr[1] "лёгких костюма выживальщика XL" -msgstr[2] "лёгких костюмов выживальщика XL" -msgstr[3] "лёгкие костюмы выживальщика XL" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -26427,23 +25355,6 @@ msgid "" "experience." msgstr "Хлопковый костюм-тройка. Конец света с налётом джентльменства." -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "костюм выживальщика" -msgstr[1] "костюма выживальщика" -msgstr[2] "костюмов выживальщика" -msgstr[3] "костюмы выживальщика" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" -"Самодельная броня, сделанная из бронежилета и усиленного кожаного " -"комбинезона. Защищает от вредной среды и повреждений." - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -26455,10 +25366,11 @@ msgstr[3] "бронекостюмы спецназа" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" -"Чёрный бронекостюм с набором карманов. На спине большая надпись «СПЕЦНАЗ»." +"Костюм из черной брони, покрывающей жизненно важные части груди, рук и ног. " +"На спине красуется слово СПЕЦНАЗ." #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -26477,53 +25389,6 @@ msgstr "" "Толстый кожаный костюм для защиты при езде на мотоцикле. Лёгкий и очень " "удобный." -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"Утеплённая самодельная тяжёлая броня, сделанная из бронежилета и кожаного " -"комбинезона с теплозащитным покрытием. Защищает от вредной среды и " -"повреждений." - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "костюм выживальщика XL" -msgstr[1] "костюмы выживальщика XL" -msgstr[2] "костюмы выживальщика XL" -msgstr[3] "костюмы выживальщика XL" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" -"Большая самодельная броня, сделанная из бронежилета и усиленного кожаного " -"комбинезона. Защищает от вредной среды и повреждений." - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "тяжёлый костюм выживальщика XL" -msgstr[1] "тяжёлый костюм выживальщика XL" -msgstr[2] "тяжёлый костюм выживальщика XL" -msgstr[3] "тяжёлые костюмы выживальщика XL" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" -"Большая, тяжелая, самодельная броня, сделанная из бронежилета и покрытого " -"металлом кожаного комбинезона. Защищает от вредной среды и повреждений." - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -26544,10 +25409,10 @@ msgstr "" #: lang/json/ARMOR_from_json.py msgid "dress uniform" msgid_plural "dress uniforms" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "униформа" +msgstr[1] "униформы" +msgstr[2] "униформ" +msgstr[3] "униформы" #. ~ Description for dress uniform #: lang/json/ARMOR_from_json.py @@ -26556,6 +25421,9 @@ msgid "" "rank and ribbons. Just looking at it gives you an air of authority. " "Perhaps not the most practical military wear, but a very stylish option." msgstr "" +"Парадная форма армейского офицера времен до Катаклизма с погонами и лентами." +" Просто глядя на неё, вы чувствуете силу её авторитета. Пожалуй, не самая " +"практичная военная одежда, но очень стильный вариант." #: lang/json/ARMOR_from_json.py msgid "bikini bottom" @@ -26609,58 +25477,6 @@ msgstr[3] "капюшоны гидрокостюма" msgid "A neoprene hood, commonly worn by divers." msgstr "Неопреновый капюшон. Обычно используется водолазами." -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "укреплённый капюшон гидрокостюма" -msgstr[1] "укреплённых капюшона гидрокостюма" -msgstr[2] "укреплённых капюшонов гидрокостюма" -msgstr[3] "укреплённые капюшоны гидрокостюма" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" -"Подогнанный под себя укреплённый капюшон из неопрена и кевлара. Очень " -"крепкий и прочный." - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "укреплённый гидрокостюм" -msgstr[1] "укреплённых гидрокостюма" -msgstr[2] "укреплённых гидрокостюмов" -msgstr[3] "укреплённые гидрокостюмы" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" -"Самодельная лёгкая броня, сделанная из бронежилета и усиленного комбинезона " -"из неопрена. Защищает от вредной среды и повреждений." - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "водолазные перчатки выживальщика" -msgstr[1] "пары водолазных перчаток выживальщика" -msgstr[2] "пар водолазных перчаток выживальщика" -msgstr[3] "пары водолазных перчаток выживальщика" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" -"Пара подогнанных под себя и укреплённых кевларом неопреновых перчаток. " -"Удобны для ношения и обеспечивают максимальную защиту при экстремальных " -"условиях." - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -26800,7 +25616,7 @@ msgstr[1] "лорики сегментаты" msgstr[2] "лорик сегментат" msgstr[3] "лорики сегментаты" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -27018,7 +25834,7 @@ msgstr[1] "брони из кожи и шин" msgstr[2] "брони из кожи и шин" msgstr[3] "броня из кожи и шин" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -27098,31 +25914,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "Лёгкий бронежилет. Подходит для ношения под одеждой." -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "лёгкий бронежилет выживальщика" -msgstr[1] "лёгких бронежилета выживальщика" -msgstr[2] "лёгких бронежилетов выживальщика" -msgstr[3] "лёгкие бронежилеты выживальщика" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" -"Облегчённый, специально спроектированный бронежилет из кевлара и жёсткой " -"ткани. Практически водонепроницаем." - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "лёгкий бронежилет выживальщика XL" -msgstr[1] "лёгких бронежилета выживальщика XL" -msgstr[2] "лёгких бронежилетов выживальщика XL" -msgstr[3] "лёгкие бронежилеты выживальщика XL" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -27444,7 +26235,7 @@ msgstr[1] "трико" msgstr[2] "трико" msgstr[3] "трико" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -27556,7 +26347,7 @@ msgstr[1] "платья французских горничных" msgstr[2] "платьев французских горничных" msgstr[3] "платья французских горничных" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "Платья французских горничных. Синее с вычурным белым передником." @@ -27926,7 +26717,7 @@ msgstr[1] "боксёрских брифов" msgstr[2] "боксёрских брифов" msgstr[3] "боксёрские брифы" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "Извечный вопрос: боксёры или брифы? Твой ответ — да." @@ -27939,7 +26730,7 @@ msgstr[1] "боксёрских брифов XL" msgstr[2] "боксёрских брифов XL" msgstr[3] "боксёрские брифы XL" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "Извечный вопрос: боксёры или брифы? Твой ответ — да, и побольше!" @@ -27952,7 +26743,7 @@ msgstr[1] "трусов-боксеров" msgstr[2] "трусов-боксеров" msgstr[3] "трусы-боксеры" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -27966,7 +26757,7 @@ msgstr[1] "трусов-боксеров XL" msgstr[2] "трусов-боксеров XL" msgstr[3] "трусы-боксеры XL" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -27983,7 +26774,7 @@ msgstr[1] "трусов-шорт" msgstr[2] "трусов-шорт" msgstr[3] "трусы-шорты" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -27999,7 +26790,7 @@ msgstr[1] "трусов-шорт XL" msgstr[2] "трусов-шорт XL" msgstr[3] "трусы-шорты XL" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -28031,7 +26822,7 @@ msgstr[1] "брифов" msgstr[2] "брифов" msgstr[3] "брифы" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "Трусы-плавки. Удобное мужское нижнее бельё." @@ -28233,7 +27024,7 @@ msgstr[1] "женских трусиков" msgstr[2] "женских трусиков" msgstr[3] "женские трусики" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -28316,7 +27107,7 @@ msgstr[1] "колготок" msgstr[2] "колготок" msgstr[3] "колготки" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -28349,7 +27140,7 @@ msgstr[1] "компрессионных термошорт" msgstr[2] "компрессионных термошорт" msgstr[3] "компрессионные термошорты" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -28393,6 +27184,1248 @@ msgstr "" "танцорами и конными прыгунами, обеспечивает общее покрытие с отличной " "гибкостью." +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "костюм кочевника" +msgstr[1] "костюма кочевника" +msgstr[2] "костюмов кочевника" +msgstr[3] "костюмы кочевника" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "" +"Самодельный костюм, сделанный из докатаклизменной одежды. Предназначен для " +"дальних походов. В нём уйма места для хранения вещей." + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "лёгкий костюм кочевника" +msgstr[1] "лёгких костюма кочевника" +msgstr[2] "лёгких костюмов кочевника" +msgstr[3] "лёгкие костюмы кочевника" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" +"Лёгкий самодельный костюм из докатаклизменной одежды, предназначенный для " +"дальних летних походов. По сравнению с обычным костюмом кочевника в нём " +"меньше места для хранения и легче броня." + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "костюм добытчика" +msgstr[1] "костюма добытчика" +msgstr[2] "костюмов добытчика" +msgstr[3] "костюмы добытчика" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" +"Крепкий костюм добытчика, сделанный из доведённого до ума докатаклизменного " +"защитного снаряжения. В нём уйма места для хранения вещей." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "лёгкий костюм выживальщика" +msgstr[1] "лёгких костюма выживальщика" +msgstr[2] "лёгких костюмов выживальщика" +msgstr[3] "лёгкие костюмы выживальщика" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "" +"Самодельная лёгкая броня, сделанная из бронежилета и усиленного комбинезона " +"из ткани. Защищает от вредной среды и повреждений." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "лёгкий костюм выживальщика XL" +msgstr[1] "лёгких костюма выживальщика XL" +msgstr[2] "лёгких костюмов выживальщика XL" +msgstr[3] "лёгкие костюмы выживальщика XL" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "костюм выживальщика" +msgstr[1] "костюма выживальщика" +msgstr[2] "костюмов выживальщика" +msgstr[3] "костюмы выживальщика" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" +"Самодельная броня, сделанная из бронежилета и усиленного кожаного " +"комбинезона. Защищает от вредной среды и повреждений." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "костюм выживальщика XL" +msgstr[1] "костюмы выживальщика XL" +msgstr[2] "костюмы выживальщика XL" +msgstr[3] "костюмы выживальщика XL" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" +"Большая самодельная броня, сделанная из бронежилета и усиленного кожаного " +"комбинезона. Защищает от вредной среды и повреждений." + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "зимний костюм выживальщика" +msgstr[1] "зимних костюма выживальщика" +msgstr[2] "зимних костюмов выживальщика" +msgstr[3] "зимние костюмы выживальщика" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" +"Утеплённая самодельная тяжёлая броня, сделанная из бронежилета и кожаного " +"комбинезона с теплозащитным покрытием. Защищает от вредной среды и " +"повреждений." + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "зимний костюм выживальщика XL" +msgstr[1] "зимних костюма выживальщика XL" +msgstr[2] "зимних костюмов выживальщика XL" +msgstr[3] "зимние костюмы выживальщика XL" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" +"Утеплённая самодельная тяжёлая броня, сделанная из усиленного бронежилета и " +"кожаного комбинезона, утеплённого искусственным мехом. Защищает от " +"воздействий окружающей среды и повреждений." + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" +"Утеплённая самодельная тяжёлая броня большого размера, сделанная из " +"усиленного бронежилета и кожаного комбинезона, утеплённого искусственным " +"мехом. Защищает от воздействий окружающей среды и повреждений." + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "укреплённый гидрокостюм" +msgstr[1] "укреплённых гидрокостюма" +msgstr[2] "укреплённых гидрокостюмов" +msgstr[3] "укреплённые гидрокостюмы" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "" +"Самодельная лёгкая броня, сделанная из бронежилета и усиленного комбинезона " +"из неопрена. Защищает от вредной среды и повреждений." + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "лёгкие ботинки выживальщика" +msgstr[1] "пары лёгких ботинок выживальщика" +msgstr[2] "пар лёгких ботинок выживальщика" +msgstr[3] "пары лёгких ботинок выживальщика" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" +"Пара подогнанных под себя и укреплённых кевларом ботинок из ткани. Более " +"комфортные за счёт слабой защиты, они помогут вам сохранить подвижность и " +"скорость, даже по колено в живых мертвецах." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "лёгкие ботинки выживальщика XL" +msgstr[1] "пары лёгких ботинок выживальщика XL" +msgstr[2] "пар лёгких ботинок выживальщика XL" +msgstr[3] "пары лёгких ботинок выживальщика XL" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "ботинки выживальщика" +msgstr[1] "пары ботинок выживальщика" +msgstr[2] "пар ботинок выживальщика" +msgstr[3] "пары ботинок выживальщика" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" +"Пара подогнанных под себя и укреплённых кевларом кожаных ботинок. " +"Сбалансированы между создаваемой защитой и удобством, они помогут вам выжить" +" даже по колено в живых мертвецах." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "ботинки выживальщика XL" +msgstr[1] "пары ботинок выживальщика XL" +msgstr[2] "пар ботинок выживальщика XL" +msgstr[3] "пары ботинок выживальщика XL" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" +"Пара подогнанных под себя и укреплённых кевларом кожаных ботинок большого " +"размера. Сбалансированы между создаваемой защитой и удобством, они помогут " +"вам выжить даже по колено в живых мертвецах." + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "пара зимних ботинок выживальщика из искуственного меха" +msgstr[1] "пары зимних ботинок выживальщика из искуственного меха" +msgstr[2] "пар зимних ботинок выживальщика из искуственного меха" +msgstr[3] "пары зимних ботинок выживальщика из искуственного меха" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" +"Пара подогнанных под себя и укреплённых кевларом ботинок из номекса. " +"Утеплены искусственным мехом. Помогут выжить даже по колено в живых " +"мертвецах." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "пара зимних ботинок выживальщика из искуственного меха XL" +msgstr[1] "пары зимних ботинок выживальщика из искуственного меха XL" +msgstr[2] "пар зимних ботинок выживальщика из искуственного меха XL" +msgstr[3] "пары зимних ботинок выживальщика из искуственного меха XL" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" +"Пара подогнанных под себя и укреплённых кевларом ботинок из номекса большого" +" размера. Утеплены искусственным мехом. Помогут выжить даже по колено в " +"живых мертвецах." + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "зимние ботинки выживальщика" +msgstr[1] "пары зимних ботинок выживальщика" +msgstr[2] "пар зимних ботинок выживальщика" +msgstr[3] "пары зимних ботинок выживальщика" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" +"Пара подогнанных под себя и укреплённых кевларом ботинок из номекса. " +"Утеплены мехом. Помогут выжить даже по колено в живых мертвецах." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "зимние ботинки выживальщика XL" +msgstr[1] "пары зимних ботинок выживальщика XL" +msgstr[2] "пар зимних ботинок выживальщика XL" +msgstr[3] "пары зимних ботинок выживальщика XL" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "водолазные сапоги выживальщика" +msgstr[1] "пары водолазных сапог выживальщика" +msgstr[2] "пар водолазных сапог выживальщика" +msgstr[3] "пары водолазных сапог выживальщика" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" +"Пара подогнанных под себя и укреплённых кевларом ботинок из неопрена. " +"Помогут выжить, в огне или в полымя." + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "лёгкие перчатки выживальщика" +msgstr[1] "пары лёгких перчаток выживальщика" +msgstr[2] "пар лёгких перчаток выживальщика" +msgstr[3] "пары лёгких перчаток выживальщика" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" +"Подогнанные под себя тканые перчатки, укреплённые кевларом. Созданы для " +"комфортного ношения." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "лёгкие перчатки выживальщика XL" +msgstr[1] "пары лёгких перчаток выживальщика XL" +msgstr[2] "пар лёгких перчаток выживальщика XL" +msgstr[3] "пары лёгких перчаток выживальщика XL" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "лёгкие перчатки выживальщика без пальцев" +msgstr[1] "пары лёгких перчаток выживальщика без пальцев" +msgstr[2] "пар лёгких перчаток выживальщика без пальцев" +msgstr[3] "пары лёгких перчаток выживальщика без пальцев" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" +"Подогнанные под себя тканые перчатки без пальцев, укреплённые кевларом. " +"Созданы для комфортного ношения." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "лёгкие перчатки выживальщика без пальцев XL" +msgstr[1] "пары лёгких перчаток выживальщика без пальцев XL" +msgstr[2] "пар лёгких перчаток выживальщика без пальцев XL" +msgstr[3] "пары лёгких перчаток выживальщика без пальцев XL" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "перчатки выживальщика без пальцев" +msgstr[1] "пары перчаток выживальщика без пальцев" +msgstr[2] "пар перчаток выживальщика без пальцев" +msgstr[3] "пары перчаток выживальщика без пальцев" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" +"Подогнанные под себя тканые перчатки без пальцев, укреплённые кевларом. " +"Балансируют между удобством и предоставляемой защитой." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "перчатка выживальщика без пальцев XL" +msgstr[1] "пары перчаток выживальщика без пальцев XL" +msgstr[2] "пар перчаток выживальщика без пальцев XL" +msgstr[3] "пары перчаток выживальщика без пальцев XL" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "перчатки выживальщика" +msgstr[1] "пары перчаток выживальщика" +msgstr[2] "пар перчаток выживальщика" +msgstr[3] "пары перчаток выживальщика" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" +"Подогнанные под себя тканые перчатки, укреплённые кевларом. Балансируют " +"между удобством и предоставляемой защитой." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "перчатки выживальщика XL" +msgstr[1] "пары перчаток выживальщика XL" +msgstr[2] "пар перчаток выживальщика XL" +msgstr[3] "пары перчаток выживальщика XL" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" +"Подогнанные под себя тканые перчатки большого размера, укреплённые кевларом." +" Балансируют между удобством и предоставляемой защитой." + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "зимние перчатки выживальщика" +msgstr[1] "пары зимних перчаток выживальщика" +msgstr[2] "пар зимних перчаток выживальщика" +msgstr[3] "пары зимних перчаток выживальщика" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" +"Подогнанные под себя перчатки, укреплённые кевларом и утеплённые мехом." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "зимние перчатки выживальщика XL" +msgstr[1] "пары зимних перчаток выживальщика XL" +msgstr[2] "пар зимних перчаток выживальщика XL" +msgstr[3] "пары зимних перчаток выживальщика XL" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "пара зимних перчаток выживальщика из искуственного меха" +msgstr[1] "пары зимних перчаток выживальщика из искуственного меха" +msgstr[2] "пар зимних перчаток выживальщика из искуственного меха" +msgstr[3] "пары зимних перчаток выживальщика из искуственного меха" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" +"Подогнанные под себя перчатки, укреплённые кевларом и утеплённые " +"искусственным мехом." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "пара зимних перчаток выживальщика из искуственного меха XL" +msgstr[1] "пары зимних перчаток выживальщика из искуственного меха XL" +msgstr[2] "пар зимних перчаток выживальщика из искуственного меха XL" +msgstr[3] "пары зимних перчаток выживальщика из искуственного меха XL" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" +"Подогнанные под себя перчатки большого размера, укреплённые кевларом и " +"утеплённые искусственным мехом." + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "водолазные перчатки выживальщика" +msgstr[1] "пары водолазных перчаток выживальщика" +msgstr[2] "пар водолазных перчаток выживальщика" +msgstr[3] "пары водолазных перчаток выживальщика" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "" +"Пара подогнанных под себя и укреплённых кевларом неопреновых перчаток. " +"Удобны для ношения и обеспечивают максимальную защиту при экстремальных " +"условиях." + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "капюшон кочевника" +msgstr[1] "капюшона кочевника" +msgstr[2] "капюшонов кочевника" +msgstr[3] "капюшоны кочевника" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "" +"Самодельный капюшон с защитой для глаз от дождя и солнца. Предназначен для " +"дальних походов." + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "капюшон кочевника XL" +msgstr[1] "капюшона кочевника XL" +msgstr[2] "капюшонов кочевника XL" +msgstr[3] "капюшоны кочевника XL" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" +"Самодельный капюшон с защитой для глаз от дождя и солнца. Предназначен для " +"дальних походов и гигантских странников." + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "капюшон выживальщика" +msgstr[1] "капюшона выживальщика" +msgstr[2] "капюшонов выживальщика" +msgstr[3] "капюшоны выживальщика" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" +"Подогнанный под себя бронированный капюшон из кожи и кевлара. Удобный и " +"обеспечивает защиту от повреждений." + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "зимний капюшон выживальщика" +msgstr[1] "зимних капюшона выживальщика" +msgstr[2] "зимних капюшонов выживальщика" +msgstr[3] "зимние капюшоны выживальщика" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" +"Подогнанный под себя укреплённый капюшон из кевлара, утеплённый " +"искусственным мехом." + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "зимний капюшон выживальщика XL" +msgstr[1] "зимних капюшона выживальщика XL" +msgstr[2] "зимних капюшонов выживальщика XL" +msgstr[3] "зимние капюшоны выживальщика XL" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" +"Подогнанный под себя укреплённый капюшон большого размера, утеплённый " +"настоящим мехом." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "капюшон выживальщика XL" +msgstr[1] "капюшона выживальщика XL" +msgstr[2] "капюшонов выживальщика XL" +msgstr[3] "капюшоны выживальщика XL" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" +"Подогнанный под себя бронированный капюшон большого размера из кожи и " +"кевлара. Удобный и обеспечивает защиту от повреждений." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "лёгкий капюшон выживальщика" +msgstr[1] "лёгких капюшона выживальщика" +msgstr[2] "лёгких капюшонов выживальщика" +msgstr[3] "лёгкие капюшоны выживальщика" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" +"Подогнанный под себя укреплённый капюшон из ткани и кевлара. Лёгкий и " +"прочный." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "лёгкий капюшон выживальщика XL" +msgstr[1] "лёгких капюшона выживальщика XL" +msgstr[2] "лёгких капюшонов выживальщика XL" +msgstr[3] "лёгкие капюшоны выживальщика XL" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" +"Подогнанный под себя укреплённый капюшон большого размера из ткани и " +"кевлара. Лёгкий и прочный." + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "зимний капюшон выживальщика из искуственного меха" +msgstr[1] "зимних капюшона выживальщика из искуственного меха" +msgstr[2] "зимних капюшонов выживальщика из искуственного меха" +msgstr[3] "зимние капюшоны выживальщика из искуственного меха" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" +"Подогнанный под себя укреплённый капюшон, утеплённый искусственным мехом." + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "зимний капюшон выживальщика из искуственного меха XL" +msgstr[1] "зимних капюшона выживальщика из искуственного меха XL" +msgstr[2] "зимних капюшонов выживальщика из искуственного меха XL" +msgstr[3] "зимние капюшоны выживальщика из искуственного меха XL" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" +"Подогнанный под себя укреплённый капюшон большого размера, утеплённый " +"искусственным мехом." + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "укреплённый капюшон гидрокостюма" +msgstr[1] "укреплённых капюшона гидрокостюма" +msgstr[2] "укреплённых капюшонов гидрокостюма" +msgstr[3] "укреплённые капюшоны гидрокостюма" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "" +"Подогнанный под себя укреплённый капюшон из неопрена и кевлара. Очень " +"крепкий и прочный." + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "капюшон добытчика" +msgstr[1] "капюшона добытчика" +msgstr[2] "капюшонов добытчика" +msgstr[3] "капюшоны добытчика" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "" +"Крепкий доходящий до шеи защитный капюшон, дополненный респиратором и " +"защитой для глаз. Для опасных походов за добычей." + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "капюшон добытчика XL" +msgstr[1] "капюшона добытчика XL" +msgstr[2] "капюшонов добытчика XL" +msgstr[3] "капюшоны добытчика XL" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" +"Крепкий доходящий до шеи защитный капюшон большого размера, дополненный " +"респиратором и защитой для глаз. Для опасных походов за добычей." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "лёгкие штаны выживальщика с карманами" +msgstr[1] "лёгких штанов выживальщика с карманами" +msgstr[2] "лёгких штанов выживальщика с карманами" +msgstr[3] "лёгкие штаны выживальщика с карманами" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "" +"Лёгкие, укреплённые кевларом штаны со множеством карманов и отделений, чтобы" +" унести как можно больше. Крепкие и практически водонепроницаемы." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "лёгкие штаны выживальщика с карманами XL" +msgstr[1] "пары лёгких штанов выживальщика с карманами XL" +msgstr[2] "пар лёгких штанов выживальщика с карманами XL" +msgstr[3] "лёгкие штаны выживальщика с карманами XL" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" +"Лёгкие, укреплённые кевларом штаны со множеством карманов и отделений, чтобы" +" унести как можно больше. Крепкие и практически водонепроницаемы, большого " +"размера." + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "штаны выживальщика с карманами" +msgstr[1] "штанов выживальщика с карманами" +msgstr[2] "штанов выживальщика с карманами" +msgstr[3] "штаны выживальщика с карманами" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" +"Укреплённые кевларом штаны со множеством карманов и отделений. Сделаны очень" +" прочными и удобными для ношения." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "штаны выживальщика с карманами XL" +msgstr[1] "пары штанов выживальщика с карманами XL" +msgstr[2] "пар штанов выживальщика с карманами XL" +msgstr[3] "штаны выживальщика с карманами XL" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" +"Укреплённые кевларом штаны большого размера со множеством карманов и " +"отделений. Сделаны очень прочными и удобными для ношения." + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "пыльник выживальщика" +msgstr[1] "пыльника выживальщика" +msgstr[2] "пыльников выживальщика" +msgstr[3] "пыльники выживальщика" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "" +"Подогнанный под себя и укреплённый кевларом плащ-пыльник в полный рост со " +"множеством карманов и отделений. Удобный, прочный, вместительный." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "пыльник выживальщика XL" +msgstr[1] "пыльника выживальщика XL" +msgstr[2] "пыльников выживальщика XL" +msgstr[3] "пыльники выживальщика XL" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "пыльник выживальщика без рукавов" +msgstr[1] "пыльника выживальщика без рукавов" +msgstr[2] "пыльников выживальщика без рукавов" +msgstr[3] "пыльники выживальщика без рукавов" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" +"Подогнанный под себя и укреплённый кевларом плащ-пыльник в полный рост, без " +"рукавов и со множеством карманов и отделений. Удобный, прочный, " +"вместительный." + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "тренчкот выживальщика" +msgstr[1] "тренчкота выживальщика" +msgstr[2] "тренчкотов выживальщика" +msgstr[3] "тренчкоты выживальщика" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "" +"Подогнанный под себя и укреплённый кевларом плащ со множеством карманов и " +"отделений. Удобный, прочный, вместительный." + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "тренчкот выживальщика без рукавов" +msgstr[1] "тренчкота выживальщика без рукавов" +msgstr[2] "тренчкотов выживальщика без рукавов" +msgstr[3] "тренчкоты выживальщика без рукавов" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" +"Подогнанный под себя и укреплённый кевларом плащ без рукавов со множеством " +"карманов и отделений. Удобный, прочный, вместительный." + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "вещмешок выживальщика" +msgstr[1] "вещмешка выживальщика" +msgstr[2] "вещмешков выживальщика" +msgstr[3] "вещмешки выживальщика" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" +"Специально спроектированный тяжёлый вещевой мешок. Сделан, чтобы носить как " +"можно больше вещей, прочный." + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "ранец выживальщика" +msgstr[1] "ранца выживальщика" +msgstr[2] "ранцев выживальщика" +msgstr[3] "ранцы выживальщика" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "" +"Специально спроектированный рюкзак. Сделан, чтобы носить как можно больше " +"вещей, прочный." + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "рюкзак выживальщика" +msgstr[1] "рюкзака выживальщика" +msgstr[2] "рюкзаков выживальщика" +msgstr[3] "рюкзаки выживальщика" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" +"Специально спроектированный тяжёлый рюкзак. Сделан, чтобы носить как можно " +"больше вещей, прочный." + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "беговой рюкзак выживальщика" +msgstr[1] "беговых рюкзака выживальщика" +msgstr[2] "беговых рюкзаков выживальщика" +msgstr[3] "беговые рюкзаки выживальщика" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "" +"Специально спроектированный лёгкий рюкзак для бега. Сделан, чтобы носить как" +" можно больше вещей, прочный." + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "пожарные сапоги выживальщика" +msgstr[1] "пары пожарных сапог выживальщика" +msgstr[2] "пар пожарных сапог выживальщика" +msgstr[3] "пары пожарных сапог выживальщика" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" +"Пара подогнанных под себя и укреплённых кевларом ботинок из номекса. Помогут" +" выжить даже в огне." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "пожарные сапоги выживальщика XL" +msgstr[1] "пары пожарных сапог выживальщика XL" +msgstr[2] "пар пожарных сапог выживальщика XL" +msgstr[3] "пары пожарных сапог выживальщика XL" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "тяжёлые ботинки выживальщика" +msgstr[1] "пары тяжёлых ботинок выживальщика" +msgstr[2] "пар тяжёлых ботинок выживальщика" +msgstr[3] "пары тяжёлых ботинок выживальщика" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" +"Пара подогнанных под себя и укреплённых сталью кевларовых ботинок. " +"Обеспечивают защиту за счёт удобства, особенно когда вы по колено в " +"мертвецах." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "тяжёлые ботинка выживальщика XL" +msgstr[1] "пары тяжёлых ботинок выживальщика XL" +msgstr[2] "пар тяжёлых ботинок выживальщика XL" +msgstr[3] "пары тяжёлых ботинок выживальщика XL" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "тяжёлые перчатки выживальщика" +msgstr[1] "пары тяжёлых перчаток выживальщика" +msgstr[2] "пар тяжёлых перчаток выживальщика" +msgstr[3] "пары тяжёлых перчаток выживальщика" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" +"Подогнанные под себя перчатки из кевлара, укреплённые сталью. Созданы прежде" +" всего для защиты." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "тяжёлые перчатки выживальщика XL" +msgstr[1] "пары тяжёлых перчаток выживальщика XL" +msgstr[2] "пар тяжёлых перчаток выживальщика XL" +msgstr[3] "пары тяжёлых перчаток выживальщика XL" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "пожарные перчатки выживальщика" +msgstr[1] "пары пожарных перчаток выживальщика" +msgstr[2] "пар пожарных перчаток выживальщика" +msgstr[3] "пары пожарных перчаток выживальщика" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" +"Подогнанные под себя перчатки из номекса, укреплённые кевларом. Пост-" +"апокалиптическое обновление пожарных перчаток, используемых до Катаклизма." + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "пожарные перчатки выживальщика XL" +msgstr[1] "пары пожарных перчаток выживальщика XL" +msgstr[2] "пар пожарных перчаток выживальщика XL" +msgstr[3] "пары пожарных перчаток выживальщика XL" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "пожарный капюшон выживальщика" +msgstr[1] "пожарных капюшона выживальщика" +msgstr[2] "пожарных капюшонов выживальщика" +msgstr[3] "пожарные капюшоны выживальщика" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" +"Подогнанный под себя укреплённый капюшон из номекса и кевлара. Крепкий и " +"прочный." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "пожарный капюшон выживальщика XL" +msgstr[1] "пожарных капюшона выживальщика XL" +msgstr[2] "пожарных капюшонов выживальщика XL" +msgstr[3] "пожарные капюшоны выживальщика XL" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" +"Подогнанный под себя укреплённый капюшон из номекса и кевлара. Очень крепкий" +" и прочный. Очень большой и сделан словно в Муспельхейме." + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "пожарный костюм выживальщика" +msgstr[1] "пожарных костюма выживальщика" +msgstr[2] "пожарных костюмов выживальщика" +msgstr[3] "пожарные костюмы выживальщика" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" +"Тяжёлая самодельная броня, представляет собой комбинацию бронежилета и " +"укреплённого огнеупорного комбинезона из номекса. Защищает от огня и " +"повреждений." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "пожарный костюм выживальщика XL" +msgstr[1] "пожарных костюма выживальщика XL" +msgstr[2] "пожарных костюмов выживальщика XL" +msgstr[3] "пожарные костюмы выживальщика XL" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "тяжёлый костюм выживальщика" +msgstr[1] "тяжёлых костюма выживальщика" +msgstr[2] "тяжёлых костюмов выживальщика" +msgstr[3] "тяжёлые костюмы выживальщика" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" +"Тяжёлая самодельная броня, представляет собой комбинацию бронежилета и " +"укреплённого металлическими пластинами кожаного комбинезона. Защищает от " +"вредной среды и повреждений." + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "тяжёлый костюм выживальщика XL" +msgstr[1] "тяжёлый костюм выживальщика XL" +msgstr[2] "тяжёлый костюм выживальщика XL" +msgstr[3] "тяжёлые костюмы выживальщика XL" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" +"Большая, тяжелая, самодельная броня, сделанная из бронежилета и покрытого " +"металлом кожаного комбинезона. Защищает от вредной среды и повреждений." + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "лёгкий бронежилет выживальщика" +msgstr[1] "лёгких бронежилета выживальщика" +msgstr[2] "лёгких бронежилетов выживальщика" +msgstr[3] "лёгкие бронежилеты выживальщика" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" +"Облегчённый, специально спроектированный бронежилет из кевлара и жёсткой " +"ткани. Практически водонепроницаем." + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "лёгкий бронежилет выживальщика XL" +msgstr[1] "лёгких бронежилета выживальщика XL" +msgstr[2] "лёгких бронежилетов выживальщика XL" +msgstr[3] "лёгкие бронежилеты выживальщика XL" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "пояс выживальщика" +msgstr[1] "пояса выживальщика" +msgstr[2] "поясов выживальщика" +msgstr[3] "пояса выживальщика" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "Положить предмет" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" +"Специально спроектированный кожаный пояс со множеством кармашков, ножнами " +"для небольшого клинка, а также пистолетной кобурой и петлёй для " +"инструментов. Прочный и тщательно подогнанный для удобства ношения. " +"Активируйте, чтобы вложить/обнажить оружие." + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "очки выживальщика" +msgstr[1] "очков выживальщика" +msgstr[2] "очков выживальщика" +msgstr[3] "очки выживальщика" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" +"Специально спроектированные бронированные очки с затемнёнными линзами. " +"Удобные и долговечные, они обеспечивают отличную защиту от опасностей " +"окружающей среды." + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "разгрузка выживальщика" +msgstr[1] "разгрузки выживальщика" +msgstr[2] "разгрузок выживальщика" +msgstr[3] "разгрузки выживальщика" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" +"Специально спроектированная разгрузка со множеством отделений, а также " +"встроенный тактический ремень для небольшой винтовки или подобного оружия. " +"Прочная и изготовлена для комфортного ношения. Активируйте, чтобы " +"вложить/достать оружие." + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "разгрузка выживальщика XL" +msgstr[1] "разгрузки выживальщика XL" +msgstr[2] "разгрузок выживальщика XL" +msgstr[3] "разгрузки выживальщика XL" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" +"Специально спроектированная разгрузка со множеством отделений, а также " +"встроенный тактический ремень для небольшой винтовки или подобного оружия. " +"Прочная и изготовлена для комфортного ношения самыми большими " +"выживальщиками. Активируйте, чтобы вложить/достать оружие." + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -28543,7 +28576,7 @@ msgstr[1] "ударных кастета" msgstr[2] "ударных кастетов" msgstr[3] "ударные кастеты" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -28560,7 +28593,7 @@ msgstr[1] "пронзающих кастета" msgstr[2] "пронзающих кастетов" msgstr[3] "пронзающие кастеты" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -28764,7 +28797,7 @@ msgstr[1] "пары армейских ботинок XL" msgstr[2] "пар армейских ботинок XL" msgstr[3] "пары армейских ботинок XL" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -28779,7 +28812,7 @@ msgstr[1] "пары тактических перчаток XL" msgstr[2] "пар тактических перчаток XL" msgstr[3] "пары тактических перчаток XL" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -28796,7 +28829,7 @@ msgstr[1] "пары перчаток для Смертедонта" msgstr[2] "пар перчаток для Смертедонта" msgstr[3] "пары перчаток для Смертедонта" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -29149,7 +29182,7 @@ msgstr[1] "пары перчаток для работы с психрофила msgstr[2] "пар перчаток для работы с психрофилами" msgstr[3] "пары перчаток для работы с психрофилами" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -29352,21 +29385,6 @@ msgstr "" "Пара наручей из суперсплава с неопреновой подкладкой и резиновой изоляцией. " "Очень прочные и защищают от повреждений, но удивительно тяжёлые." -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "пояс К.Р.И.Т" -msgstr[1] "пояса К.Р.И.Т" -msgstr[2] "поясов К.Р.И.Т" -msgstr[3] "пояса К.Р.И.Т" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "Стандартный пояс К.Р.И.Т., чтобы придерживать штаны и хранить оружие." - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -29542,7 +29560,7 @@ msgstr[1] "пар штанов К.Р.И.Т." msgstr[2] "пар штанов К.Р.И.Т." msgstr[3] "штаны К.Р.И.Т." -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -29559,7 +29577,7 @@ msgstr[1] "пар брюк К.Р.И.Т." msgstr[2] "пар брюк К.Р.И.Т." msgstr[3] "брюки К.Р.И.Т." -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -29613,6 +29631,14 @@ msgstr "" "Пара стандартных перчаток разведчика. Эти облегающие обтекаемые перчатки " "сделаны из хлопка с неопреновой подкладкой для теплоты и удобства." +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "пояс К.Р.И.Т" +msgstr[1] "пояса К.Р.И.Т" +msgstr[2] "поясов К.Р.И.Т" +msgstr[3] "пояса К.Р.И.Т" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -29806,7 +29832,7 @@ msgstr[1] "Силовых щита" msgstr[2] "Силовых щитов" msgstr[3] "Силовые щиты" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -30444,7 +30470,7 @@ msgstr[1] "пары ботинок фрираннера" msgstr[2] "пар ботинок фрираннера" msgstr[3] "пары ботинок фрираннера" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -30542,7 +30568,7 @@ msgstr[1] "зачарованные блузы из параболановой msgstr[2] "зачарованных блуз из параболановой шерсти" msgstr[3] "зачарованные блузы из параболановой шерсти" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -30563,7 +30589,7 @@ msgstr[1] "зачарованных бриджей из параболаново msgstr[2] "зачарованных бриджей из параболановой шерсти" msgstr[3] "зачарованные бриджи из параболановой шерсти" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -30603,7 +30629,7 @@ msgstr[1] "бриджей из параболановой шерсти" msgstr[2] "бриджей из параболановой шерсти" msgstr[3] "бриджи из параболановой шерсти" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -30674,7 +30700,7 @@ msgstr[1] "пары ледяных подошв" msgstr[2] "пар ледяных подошв" msgstr[3] "ледяные подошвы" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -30750,7 +30776,7 @@ msgstr[1] "ледяная броня" msgstr[2] "ледяная броня" msgstr[3] "ледяная броня" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "Тонкий слой магического льда, покрывающий все тело." @@ -30763,7 +30789,7 @@ msgstr[1] "каменная кожа" msgstr[2] "каменная кожа" msgstr[3] "каменная кожа" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -30883,7 +30909,7 @@ msgstr[1] "духовная броня" msgstr[2] "духовная броня" msgstr[3] "духовная броня" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "Призванная средневековая броня. Она мягко светится и выглядит прочно." @@ -30896,7 +30922,7 @@ msgstr[1] "рассветные оболочки" msgstr[2] "рассветных оболочек" msgstr[3] "Полярный оберег" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -31006,21 +31032,23 @@ msgstr "" "насчёт невидимых преследователей." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "КБМ: Металлическое покрытие — Руки" -msgstr[1] "КБМ: Металлическое покрытие — Руки" -msgstr[2] "КБМ: Металлическое покрытие — Руки" -msgstr[3] "КБМ: Металлическое покрытие — Руки" - -#. ~ Description for Arms Alloy Plating CBM +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "Руки - подкожный сплав КБМ" +msgstr[1] "Руки - подкожный сплав КБМ" +msgstr[2] "Руки - подкожный сплав КБМ" +msgstr[3] "Руки - подкожный сплав КБМ" + +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" -"Пластины из суперсплава для замены плоти на руках. Предоставляют пассивную " -"защиту и сочетаются с бионическим рукопашным боем." +"Высокотехнологичная защитная сетка, вплетающаяся в плоть пользователя. " +"Предоставляет пассивную защиту и сочетается с бионическим рукопашным боем." #: lang/json/BIONIC_ITEM_from_json.py msgid "Protective Lenses CBM" @@ -31042,55 +31070,46 @@ msgstr "" "выплюнуть или проглотить слёзы." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" -msgstr[0] "КБМ: Металлическое покрытие — Голова" -msgstr[1] "КБМ: Металлическое покрытие — Голова" -msgstr[2] "КБМ: Металлическое покрытие — Голова" -msgstr[3] "КБМ: Металлическое покрытие — Голова" - -#. ~ Description for Head Alloy Plating CBM +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "Голова - подкожный сплав КБМ" +msgstr[1] "Голова - подкожный сплав КБМ" +msgstr[2] "Голова - подкожный сплав КБМ" +msgstr[3] "Голова - подкожный сплав КБМ" + +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" -"Пластины из суперсплава для замены плоти на голове и защиты головы и нижней " -"челюсти." +"Высокотехнологичная защитная сетка, вплетающаяся в плоть пользователя. " +"Защищает голову и челюсть за счёт скованности." #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" -msgstr[0] "КБМ: Металлическое покрытие — Ноги" -msgstr[1] "КБМ: Металлическое покрытие — Ноги" -msgstr[2] "КБМ: Металлическое покрытие — Ноги" -msgstr[3] "КБМ: Металлическое покрытие — Ноги" - -#. ~ Description for Legs Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" -"Пластины из суперсплава для замены плоти на ногах. Предоставляют пассивную " -"защиту и сочетаются с бионическим рукопашным боем." +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "Ноги - подкожный сплав КБМ" +msgstr[1] "Ноги - подкожный сплав КБМ" +msgstr[2] "Ноги - подкожный сплав КБМ" +msgstr[3] "Ноги - подкожный сплав КБМ" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" -msgstr[0] "КБМ: Металлическое покрытие — Торс" -msgstr[1] "КБМ: Металлическое покрытие — Торс" -msgstr[2] "КБМ: Металлическое покрытие — Торс" -msgstr[3] "КБМ: Металлическое покрытие — Торс" - -#. ~ Description for Torso Alloy Plating CBM +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "Торс - подкожный сплав КБМ" +msgstr[1] "Торс - подкожный сплав КБМ" +msgstr[2] "Торс - подкожный сплав КБМ" +msgstr[3] "Торс - подкожный сплав КБМ" + +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" -"Пластины из суперсплава для замены плоти на туловище и защиты от физических " -"повреждений." +"Высокотехнологичная защитная сетка, вплетающаяся в плоть пользователя. " +"Защищает от травм за счёт скованности." #: lang/json/BIONIC_ITEM_from_json.py msgid "Battery System CBM" @@ -32059,7 +32078,7 @@ msgstr[1] "КБМ: Бионический аккумулятор Мк. II" msgstr[2] "КБМ: Бионический аккумулятор Мк. II" msgstr[3] "КБМ: Бионический аккумулятор Мк. II" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -32635,7 +32654,7 @@ msgstr[1] "Скрипучих лодыжек" msgstr[2] "Скрипучих лодыжек" msgstr[3] "Скрипучие лодыжки" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "Пара сломанных скрипучих модулей." @@ -32902,7 +32921,7 @@ msgstr[1] "Самофиксирующихся больших пальцев" msgstr[2] "Самофиксирующихся больших пальцев" msgstr[3] "Самофиксирующиеся большие пальцы" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "Пара сломанных самозащёлкивающихся имплантов в больших пальцах." @@ -34680,7 +34699,7 @@ msgstr[1] "копии заметок о бое на ножах" msgstr[2] "копий заметок о бое на ножах" msgstr[3] "копии заметок о бое на ножах" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -35000,7 +35019,7 @@ msgstr[1] "планов для переделки в радиоретрансл msgstr[2] "планов для переделки в радиоретранслятор" msgstr[3] "планы для переделки в радиоретранслятор" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -35048,7 +35067,7 @@ msgstr[1] "копии процедур работы с трёхграннико msgstr[2] "копий процедур работы с трёхгранником" msgstr[3] "копии процедур работы с трёхгранником" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -35070,7 +35089,7 @@ msgstr[1] "чертежа" msgstr[2] "чертежей" msgstr[3] "чертежи" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -35078,9 +35097,9 @@ msgstr[3] "чертежи" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -35100,7 +35119,7 @@ msgstr[1] "чертежа робота-медсестры" msgstr[2] "чертежей робота-медсестры" msgstr[3] "чертежи робота-медсестры" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -35120,7 +35139,7 @@ msgstr[1] "чертежа бакалейного робота" msgstr[2] "чертежей бакалейного робота" msgstr[3] "чертежи бакалейного робота" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -35140,7 +35159,7 @@ msgstr[1] "чертежа робота-полицейского" msgstr[2] "чертежей робота-полицейского" msgstr[3] "чертежи робота-полицейского" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -35158,7 +35177,7 @@ msgstr[1] "чертежа глазобота" msgstr[2] "чертежей глазобота" msgstr[3] "чертежи глазобота" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -35176,7 +35195,7 @@ msgstr[1] "чертежа охранного бота" msgstr[2] "чертежей охранного бота" msgstr[3] "чертежи охранного бота" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -35194,7 +35213,7 @@ msgstr[1] "чертежа робота-жука" msgstr[2] "чертежей робота-жука" msgstr[3] "чертежи робота-жука" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -35213,7 +35232,7 @@ msgstr[1] "чертежа робота-уборщика" msgstr[2] "чертежей робота-уборщика" msgstr[3] "чертежи робота-уборщика" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -35231,7 +35250,7 @@ msgstr[1] "чертежа робота-шахтёра" msgstr[2] "чертежей робота-шахтёра" msgstr[3] "чертежи робота-шахтёра" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -35249,7 +35268,7 @@ msgstr[1] "чертежа робота подавления беспорядко msgstr[2] "чертежей робота подавления беспорядков" msgstr[3] "чертежи робота подавления беспорядков" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -35268,7 +35287,7 @@ msgstr[1] "чертежа лабораторного оборонного роб msgstr[2] "чертежей лабораторного оборонного робота" msgstr[3] "чертежи лабораторного оборонного робота" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -35287,7 +35306,7 @@ msgstr[1] "чертежа робота-носителя" msgstr[2] "чертежей робота-носителя" msgstr[3] "чертежи робота-носителя" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -35307,7 +35326,7 @@ msgstr[1] "чертежа военного робота-носителя" msgstr[2] "чертежей военного робота-носителя" msgstr[3] "чертежи военного робота-носителя" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -35327,7 +35346,7 @@ msgstr[1] "чертежа крупнокалиберной турели" msgstr[2] "чертежей крупнокалиберной турели" msgstr[3] "чертежи крупнокалиберной турели" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -35345,7 +35364,7 @@ msgstr[1] "чертежа военного прожектора" msgstr[2] "чертежей военного прожектора" msgstr[3] "чертежи военного прожектора" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -36144,7 +36163,7 @@ msgstr[1] "«Дух айкидо»" msgstr[2] "«Дух айкидо»" msgstr[3] "«Дух айкидо»" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "Подробное руководство по айкидо." @@ -36157,7 +36176,7 @@ msgstr[1] "«Кулачный бой на практике»" msgstr[2] "«Кулачный бой на практике»" msgstr[3] "«Кулачный бой на практике»" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -36171,7 +36190,7 @@ msgstr[1] "«Капоэйра 100»" msgstr[2] "«Капоэйра 100»" msgstr[3] "«Капоэйра 100»" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "Полное руководство по капоэйре." @@ -36184,7 +36203,7 @@ msgstr[1] "«Многоножка Лу Фэн»" msgstr[2] "«Многоножка Лу Фэн»" msgstr[3] "«Многоножка Лу Фэн»" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "Подробное руководство по кунг-фу многоножки." @@ -36197,7 +36216,7 @@ msgstr[1] "«Красный журавль»" msgstr[2] "«Красный журавль»" msgstr[3] "«Красный журавль»" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "Подробное руководство по кунг-фу журавля." @@ -36210,7 +36229,7 @@ msgstr[1] "«Нефритовый дракон»" msgstr[2] "«Нефритовый дракон»" msgstr[3] "«Нефритовый дракон»" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "Подробное руководство по кунг-фу дракона." @@ -36223,7 +36242,7 @@ msgstr[1] "«Эскрима на практике»" msgstr[2] "«Эскрима на практике»" msgstr[3] "«Эскрима на практике»" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "Подробное руководство по эскриме." @@ -36236,7 +36255,7 @@ msgstr[1] "«Современный мечник»" msgstr[2] "«Современный мечник»" msgstr[3] "«Современный мечник»" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "Подробное руководство по фехтованию." @@ -36249,7 +36268,7 @@ msgstr[1] "«Кодокан дзюдо»" msgstr[2] "«Кодокан дзюдо»" msgstr[3] "«Кодокан дзюдо»" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "Подробное руководство по дзюдо." @@ -36262,7 +36281,7 @@ msgstr[1] "руководства по Сётокан карате" msgstr[2] "руководств по Сётокан карате" msgstr[3] "руководство по Сётокан карате" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "Подробное руководство по Сётокан карате." @@ -36275,7 +36294,7 @@ msgstr[1] "«Всё о крав-мага»" msgstr[2] "«Всё о крав-мага»" msgstr[3] "«Всё о крав-мага»" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "Подробное руководство по крав-мага." @@ -36288,7 +36307,7 @@ msgstr[1] "«Глухой леопард»" msgstr[2] "«Глухой леопард»" msgstr[3] "«Глухой леопард»" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "Подробное руководство по кунг-фу леопарда." @@ -36301,7 +36320,7 @@ msgstr[1] "«Ящерица Куо Чуй»" msgstr[2] "«Ящерица Куо Чуй»" msgstr[3] "«Ящерица Куо Чуй»" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "Подробное руководство по кунг-фу ящерицы." @@ -36314,7 +36333,7 @@ msgstr[1] "«Всё о тайском боксе»" msgstr[2] "«Всё о тайском боксе»" msgstr[3] "«Всё о тайском боксе»" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "Подробное руководство по тайскому боксу." @@ -36327,7 +36346,7 @@ msgstr[1] "«Суть ниндзюцу»" msgstr[2] "«Суть ниндзюцу»" msgstr[3] "«Суть ниндзюцу»" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "Подробное руководство по ниндзюцу." @@ -36340,7 +36359,7 @@ msgstr[1] "Книги Пяти Колец" msgstr[2] "Книг Пяти Колец" msgstr[3] "Книги Пяти Колец" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -36357,7 +36376,7 @@ msgstr[1] "«Современный панкратист»" msgstr[2] "«Современный панкратист»" msgstr[3] "«Современный панкратист»" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "Подробное руководство по панкратиону." @@ -36370,7 +36389,7 @@ msgstr[1] "«Скорпион Сунь Цзянь»" msgstr[2] "«Скорпион Сунь Цзянь»" msgstr[3] "«Скорпион Сунь Цзянь»" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "Подробное руководство по кунг-фу скорпиона." @@ -36383,7 +36402,7 @@ msgstr[1] "«Воин Индонезии»" msgstr[2] "«Воин Индонезии»" msgstr[3] "«Воин Индонезии»" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "Подробное руководство по пентьяк-силат." @@ -36396,7 +36415,7 @@ msgstr[1] "«Чёрная змея»" msgstr[2] "«Чёрная змея»" msgstr[3] "«Чёрная змея»" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "Подробное руководство по кунг-фу змеи." @@ -36409,7 +36428,7 @@ msgstr[1] "копии Официального руководства по тх msgstr[2] "копий Официального руководства по тхэквондо" msgstr[3] "копии Официального руководства по тхэквондо" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "Полное руководство по тхэквондо." @@ -36422,7 +36441,7 @@ msgstr[1] "«Единение с Тао»" msgstr[2] "«Единение с Тао»" msgstr[3] "«Единение с Тао»" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "Полное руководство по тайцзи-цюань." @@ -36435,7 +36454,7 @@ msgstr[1] "«Белый тигр»" msgstr[2] "«Белый тигр»" msgstr[3] "«Белый тигр»" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "Подробное руководство по кунг-фу тигра." @@ -36448,7 +36467,7 @@ msgstr[1] "«Жаба Ло Манг»" msgstr[2] "«Жаба Ло Манг»" msgstr[3] "«Жаба Ло Манг»" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "Подробное руководство по кунг-фу жабы." @@ -36461,7 +36480,7 @@ msgstr[1] "«Гадюка Вэй Пай»" msgstr[2] "«Гадюка Вэй Пай»" msgstr[3] "«Гадюка Вэй Пай»" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "Подробное руководство по кунг-фу гадюки." @@ -36474,7 +36493,7 @@ msgstr[1] "«Вы и цзуй-цюань»" msgstr[2] "«Вы и цзуй-цюань»" msgstr[3] "«Вы и цзуй-цюань»" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "Подробное руководство по цзуй-цюань." @@ -36487,7 +36506,7 @@ msgstr[1] "«Путь Копья»" msgstr[2] "«Путь Копья»" msgstr[3] "«Путь Копья»" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "Полное руководство по Сёдзюцу." @@ -36500,7 +36519,7 @@ msgstr[1] "«Прекрасная Весна»" msgstr[2] "«Прекрасная Весна»" msgstr[3] "«Прекрасная Весна»" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "Подробное руководство по вин-чун кунг-фу." @@ -36514,7 +36533,7 @@ msgstr[1] "«Цветок Битвы»" msgstr[2] "«Цветок Битвы»" msgstr[3] "«Цветок Битвы»" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -36533,7 +36552,7 @@ msgstr[1] "книги «Историческое европейское фехт msgstr[2] "книг «Историческое европейское фехтование»" msgstr[3] "книги «Историческое европейское фехтование»" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -36739,7 +36758,7 @@ msgstr[1] "проекта ранчо" msgstr[2] "проектов ранчо" msgstr[3] "проекты ранчо" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -37876,7 +37895,7 @@ msgstr[1] "больничных карт" msgstr[2] "больничных карт" msgstr[3] "больничные карты" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "Большая пачка медицинских записей с жуткими подробностями болезней." @@ -37889,7 +37908,7 @@ msgstr[1] "национальных сводки погоды" msgstr[2] "национальных сводок погоды" msgstr[3] "национальные сводки погоды" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -42345,7 +42364,7 @@ msgstr[1] "чертежи шагохода" msgstr[2] "чертежей шагохода" msgstr[3] "чертежи шагохода" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -42365,7 +42384,7 @@ msgstr[1] "чертежа алмазного пресса" msgstr[2] "чертежей алмазного пресса" msgstr[3] "чертежи алмазного пресса" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -42385,7 +42404,7 @@ msgstr[1] "чертежа нанокузни" msgstr[2] "чертежей нанокузни" msgstr[3] "чертежи нанокузни" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -42405,7 +42424,7 @@ msgstr[1] "чертежи танкобота" msgstr[2] "чертежей танкобота" msgstr[3] "чертежи танкобота" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -42425,7 +42444,7 @@ msgstr[1] "чертежей трибота" msgstr[2] "чертежей трибота" msgstr[3] "чертежи трибота" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -42743,7 +42762,7 @@ msgstr[1] "книги «Обжигающий Сирокко»" msgstr[2] "книг «Обжигающий Сирокко»" msgstr[3] "книги «Обжигающий Сирокко»" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "Книга, содержащая учение дисциплины Пустынного Ветра." @@ -42756,7 +42775,7 @@ msgstr[1] "книги «Совершенная ясность разума и т msgstr[2] "книг «Совершенная ясность разума и тела»" msgstr[3] "книги «Совершенная ясность разума и тела»" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "Книга, содержащая учение дисциплины Алмазного Разума" @@ -42769,7 +42788,7 @@ msgstr[1] "Книги Мудоры" msgstr[2] "Книг Мудоры" msgstr[3] "Книги Мудоры" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -42786,7 +42805,7 @@ msgstr[1] "книги «Штормовой страж»" msgstr[2] "книг «Штормовой страж»" msgstr[3] "книги «Штормовой страж»" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "Книга, содержащая учение дисциплины Железного Сердца." @@ -42799,7 +42818,7 @@ msgstr[1] "книги «Жизнь и работа Тигра Сауэра»" msgstr[2] "книг «Жизнь и работа Тигра Сауэра»" msgstr[3] "книги «Жизнь и работа Тигра Сауэра»" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -42816,7 +42835,7 @@ msgstr[1] "копии «Энциклопедии карманных монстр msgstr[2] "копий «Энциклопедии карманных монстров»" msgstr[3] "копии «Энциклопедии карманных монстров»" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -42834,7 +42853,7 @@ msgstr[1] "книги «Дальний горизонт»" msgstr[2] "книг «Дальний горизонт»" msgstr[3] "книги «Дальний горизонт»" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "Книга, содержащая учение дисциплины Заходящего Солнца." @@ -42847,7 +42866,7 @@ msgstr[1] "Голокроны джедаев: Первая форма" msgstr[2] "Голокрон джедаев: Первая форма" msgstr[3] "Голокроны джедаев: Первая форма" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -42864,7 +42883,7 @@ msgstr[1] "копии «Осколки гранита»" msgstr[2] "копий «Осколки гранита»" msgstr[3] "копии «Осколки гранита»" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "Книга, содержащая учение дисциплины Каменного Дракона." @@ -42877,7 +42896,7 @@ msgstr[1] "копии «Когти Пожинателя»" msgstr[2] "копий «Когти Пожинателя»" msgstr[3] "копии «Когти Пожинателя»" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "Книга, содержащая учение дисциплины Тигриного Когтя." @@ -42908,6 +42927,26 @@ msgstr[3] "книги «Базовая теория заклинаний»" msgid "A beginner textbook on magical theories." msgstr "Учебник для начинающих по магическим теориям." +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[1] "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[2] "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[3] "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" +"Эта книга написана на незнакомом вам руническом языке. К счастью в ней есть " +"несколько очень подробных картинок, изображающих ковку меча из слитка " +"серебристого металла. Похоже это что-то вроде книги для кузнецов" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -45567,7 +45606,7 @@ msgstr[1] "птичий помёт" msgstr[2] "птичий помёт" msgstr[3] "птичий помёт" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "Птичьи фекалии, перья и другой мусор." @@ -45637,7 +45676,7 @@ msgstr[1] "отбеливателя" msgstr[2] "отбеливателей" msgstr[3] "отбеливатель" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" @@ -45646,7 +45685,7 @@ msgstr[1] "лужи хлорки" msgstr[2] "луж хлорки" msgstr[3] "лужи хлорки" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -45663,7 +45702,7 @@ msgstr[1] "аммиака" msgstr[2] "аммиака" msgstr[3] "аммиак" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -45680,7 +45719,7 @@ msgstr[1] "жидких удобрения" msgstr[2] "жидких удобрений" msgstr[3] "жидкое удобрение" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "Богатый питательными веществами эликсир для растений." @@ -45693,7 +45732,7 @@ msgstr[1] "химических удобрения" msgstr[2] "химических удобрений" msgstr[3] "химическое удобрение" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "Богатые питательными веществами гранулы для растений." @@ -45706,7 +45745,7 @@ msgstr[1] "фунгицида" msgstr[2] "фунгицидов" msgstr[3] "фунгицид" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -45723,7 +45762,7 @@ msgstr[1] "инсектицида" msgstr[2] "инсектицида" msgstr[3] "инсектицид" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -45740,7 +45779,7 @@ msgstr[1] "солёной воды" msgstr[2] "солёной воды" msgstr[3] "солёная вода" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "Вода с солью. Непригодна для питья." @@ -45753,7 +45792,7 @@ msgstr[1] "мыльная вода" msgstr[2] "мыльная вода" msgstr[3] "мыльная вода" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "Вода с добавлением мыла. Непригодна для питья." @@ -45779,7 +45818,7 @@ msgstr[1] "серная кислота" msgstr[2] "серная кислота" msgstr[3] "серная кислота" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -45800,7 +45839,7 @@ msgstr[1] "соляная кислота" msgstr[2] "соляная кислота" msgstr[3] "соляная кислота" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -45819,7 +45858,7 @@ msgstr[1] "азотная кислота" msgstr[2] "азотная кислота" msgstr[3] "азотная кислота" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -45864,7 +45903,7 @@ msgstr[1] "сточных вод" msgstr[2] "сточных вод" msgstr[3] "сточные воды" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "Мутная жидкость из канализации с отвратительным запахом." @@ -45877,7 +45916,7 @@ msgstr[1] "щёлока" msgstr[2] "щёлоков" msgstr[3] "щёлок" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -45894,7 +45933,7 @@ msgstr[1] "эфир" msgstr[2] "эфир" msgstr[3] "эфир" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -45916,7 +45955,7 @@ msgstr[1] "диметилсульфоксида" msgstr[2] "диметилсульфоксида" msgstr[3] "диметилсульфоксид" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -45937,7 +45976,7 @@ msgstr[1] "хлороформа" msgstr[2] "хлороформа" msgstr[3] "хлороформ" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -45955,7 +45994,7 @@ msgstr[1] "фенола" msgstr[2] "фенола" msgstr[3] "фенол" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -45978,7 +46017,7 @@ msgstr[1] "глицерина" msgstr[2] "глицерина" msgstr[3] "глицерин" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -45996,7 +46035,7 @@ msgstr[1] "пептонового порошка" msgstr[2] "пептонового порошка" msgstr[3] "пептоновый порошок" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -46015,7 +46054,7 @@ msgstr[1] "агара" msgstr[2] "агара" msgstr[3] "агар" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -46036,7 +46075,7 @@ msgstr[1] "акриламид" msgstr[2] "акриламид" msgstr[3] "акриламид" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -46053,7 +46092,7 @@ msgstr[1] "ацетилен" msgstr[2] "ацетилен" msgstr[3] "ацетилен" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -46070,7 +46109,7 @@ msgstr[1] "муравьиная кислота" msgstr[2] "муравьиная кислота" msgstr[3] "муравьиная кислота" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -46087,7 +46126,7 @@ msgstr[1] "латекс" msgstr[2] "латекс" msgstr[3] "латекс" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "Жидкий предшественник каучука, содержащийся в некоторых растениях." @@ -46100,7 +46139,7 @@ msgstr[1] "лимонная кислота" msgstr[2] "лимонная кислота" msgstr[3] "лимонная кислота" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -46205,7 +46244,7 @@ msgstr[1] "уксусный ангидрид " msgstr[2] "уксусный ангидрид " msgstr[3] "уксусный ангидрид " -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," @@ -46214,6 +46253,19 @@ msgstr "" "Уксусный ангидрид, с нужными знаниями в химии его легко использовать для " "превращения морфина в героин." +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "жидкое мыло" +msgstr[1] "жидкое мыло" +msgstr[2] "жидкое мыло" +msgstr[3] "жидкое мыло" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "Жидкое мыло." + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -46264,7 +46316,7 @@ msgstr[1] "вина марло" msgstr[2] "вина марло" msgstr[3] "вино марло" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "Вязкое белое вино из ягод марло." @@ -46277,7 +46329,7 @@ msgstr[1] "Рислинга" msgstr[2] "Рислингов" msgstr[3] "Рислинг" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" @@ -46291,7 +46343,7 @@ msgstr[1] "Шардоне" msgstr[2] "Шардоне" msgstr[3] "Шардоне" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "Заслуженно самое популярное вино Америки." @@ -46304,7 +46356,7 @@ msgstr[1] "Каберне-совиньона" msgstr[2] "Каберне-совиньонов" msgstr[3] "Каберне-совиньон" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -46321,7 +46373,7 @@ msgstr[1] "пино-нуар" msgstr[2] "пино-нуар" msgstr[3] "пино-нуар" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -46338,7 +46390,7 @@ msgstr[1] "марсала" msgstr[2] "марсала" msgstr[3] "марсала" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "Вино, обычно добавляемое в блюда в итальянских ресторанах." @@ -46351,7 +46403,7 @@ msgstr[1] "вермута" msgstr[2] "вермута" msgstr[3] "вермут" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -46368,7 +46420,7 @@ msgstr[1] "ячменного вина" msgstr[2] "ячменного вина" msgstr[3] "ячменное вино" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "Крепкий эль." @@ -46381,7 +46433,7 @@ msgstr[1] "виски" msgstr[2] "виски" msgstr[3] "виски" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -46396,7 +46448,7 @@ msgstr[1] "водки" msgstr[2] "водки" msgstr[3] "водка" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -46413,7 +46465,7 @@ msgstr[1] "джина" msgstr[2] "джина" msgstr[3] "джин" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -46430,7 +46482,7 @@ msgstr[1] "рома" msgstr[2] "рома" msgstr[3] "ром" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -46447,7 +46499,7 @@ msgstr[1] "текилы" msgstr[2] "текилы" msgstr[3] "текила" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -46465,7 +46517,7 @@ msgstr[1] "трипл-сека" msgstr[2] "трипл-сека" msgstr[3] "трипл-сек" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -46480,7 +46532,7 @@ msgstr[1] "дешёвого вина" msgstr[2] "дешёвого вина" msgstr[3] "дешёвое вино" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "Очень дешёвое креплёное вино." @@ -46493,7 +46545,7 @@ msgstr[1] "крепких алкогольных микса" msgstr[2] "крепких алкогольных миксов" msgstr[3] "крепкий алкогольный микс" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "Смесь из крепких алкогольных напитков с неважно каким вкусом." @@ -46506,7 +46558,7 @@ msgstr[1] "слабых алкогольных микса" msgstr[2] "слабых алкогольных миксов" msgstr[3] "слабый алкогольный микс" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "Смесь из слабоалкогольных напитков с неважно каким вкусом." @@ -46519,7 +46571,7 @@ msgstr[1] "фруктового вина" msgstr[2] "фруктового вина" msgstr[3] "фруктовое вино" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -46535,7 +46587,7 @@ msgstr[1] "бренди" msgstr[2] "бренди" msgstr[3] "бренди" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -46552,7 +46604,7 @@ msgstr[1] "кофе по-ирландски" msgstr[2] "кофе по-ирландски" msgstr[3] "кофе по-ирландски" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -46569,7 +46621,7 @@ msgstr[1] "«Лонг-Айленд айс ти»" msgstr[2] "«Лонг-Айленд айс ти»" msgstr[3] "«Лонг-Айленд айс ти»" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -46603,7 +46655,7 @@ msgstr[1] "«дикого яблока»" msgstr[2] "«дикого яблока»" msgstr[3] "«дикое яблоко»" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "Как яблочный сидр, только с водкой." @@ -46616,7 +46668,7 @@ msgstr[1] "ром с колой" msgstr[2] "ром с колой" msgstr[3] "ром с колой" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -46630,7 +46682,7 @@ msgstr[1] "пиво" msgstr[2] "пиво" msgstr[3] "пиво" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -46648,7 +46700,7 @@ msgstr[1] "пряной медовухи" msgstr[2] "пряной медовухи" msgstr[3] "пряная медовуха" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -46662,7 +46714,7 @@ msgstr[1] "вина из одуванчиков" msgstr[2] "вина из одуванчиков" msgstr[3] "вино из одуванчиков" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -46679,7 +46731,7 @@ msgstr[1] "вино из лопуха" msgstr[2] "вино из лопуха" msgstr[3] "вино из лопуха" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -46693,7 +46745,7 @@ msgstr[1] "соснового вина" msgstr[2] "соснового вина" msgstr[3] "сосновое вино" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -46710,7 +46762,7 @@ msgstr[1] "домашнего пива" msgstr[2] "домашнего пива" msgstr[3] "домашнее пиво" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -46724,7 +46776,7 @@ msgstr[1] "самогона" msgstr[2] "самогона" msgstr[3] "самогон" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -46743,7 +46795,7 @@ msgstr[1] "европейского пильзера" msgstr[2] "европейского пильзера" msgstr[3] "европейский пильзнер" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -46760,7 +46812,7 @@ msgstr[1] "американского светлого эля" msgstr[2] "американского светлого эля" msgstr[3] "американский светлый эль" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -46777,7 +46829,7 @@ msgstr[1] "индийского светлого эля" msgstr[2] "индийского светлого эля" msgstr[3] "индийский светлый эль" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -46794,7 +46846,7 @@ msgstr[1] "стаута" msgstr[2] "стаутов" msgstr[3] "стаут" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "Вкусное крепкое пиво. Тёмное, как и грядущие дни." @@ -46807,7 +46859,7 @@ msgstr[1] "бельгийского эля" msgstr[2] "бельгийского эля" msgstr[3] "бельгийский эль" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -46824,7 +46876,7 @@ msgstr[1] "имперского стаута" msgstr[2] "имперских стаутов" msgstr[3] "имперский стаут" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -46880,7 +46932,7 @@ msgstr[1] "односолодовых виски" msgstr[2] "односолодовых виски" msgstr[3] "односолодовый виски" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "Только лучший виски прямо из под пробки." @@ -46893,7 +46945,7 @@ msgstr[1] "чистых виски из перегонного куба" msgstr[2] "чистых виски из перегонного куба" msgstr[3] "чистый виски из перегонного куба" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -46907,7 +46959,7 @@ msgstr[1] "дешёвого виски" msgstr[2] "дешёвого виски" msgstr[3] "дешёвого виски" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "Очень дешёвое смешанное виски." @@ -46920,7 +46972,7 @@ msgstr[1] "Канадский виски" msgstr[2] "Канадский виски" msgstr[3] "Канадский виски" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "Алкоголь, перегнанный из смеси на основе кукурузы и ржи." @@ -46933,7 +46985,7 @@ msgstr[1] "херес" msgstr[2] "херес" msgstr[3] "херес" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -46949,7 +47001,7 @@ msgstr[1] "Бристоль Крим" msgstr[2] "Бристоль Крим" msgstr[3] "Бристоль Крим" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -46966,7 +47018,7 @@ msgstr[1] "вино «Мадейра»" msgstr[2] "вино «Мадейра»" msgstr[3] "вино «Мадейра»" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "Крепленое вино из Мадейры. Истинный напиток Флота Её Величества." @@ -46979,7 +47031,7 @@ msgstr[1] "коктейль бродяги" msgstr[2] "коктейль бродяги" msgstr[3] "коктейль бродяги" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "На вкус это определённо напиток для бомжа." @@ -46992,7 +47044,7 @@ msgstr[1] "калимочо" msgstr[2] "калимочо" msgstr[3] "калимочо" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -47010,7 +47062,7 @@ msgstr[1] "«Высший сорт»" msgstr[2] "«Высший сорт»" msgstr[3] "«Высший сорт»" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -47128,7 +47180,7 @@ msgstr[1] "хард-зельтер" msgstr[2] "хард-зельтер" msgstr[3] "хард-зельтер" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "Газированная вода с алкоголем. Идеальна для жаркого летнего дня." @@ -47141,7 +47193,7 @@ msgstr[1] "тыквенных маффина" msgstr[2] "тыквенных маффинов" msgstr[3] "тыквенные маффины" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "Печёные кексики с тыквой. Идеально для осенних праздников." @@ -47154,7 +47206,7 @@ msgstr[1] "пончиков" msgstr[2] "пончиков" msgstr[3] "пончики" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -47171,7 +47223,7 @@ msgstr[1] "хлеб на закваске" msgstr[2] "хлеб на закваске" msgstr[3] "хлеб на закваске" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -47188,7 +47240,7 @@ msgstr[1] "лепёшка" msgstr[2] "лепёшка" msgstr[3] "лепёшка" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "Простой пресный хлеб." @@ -47201,7 +47253,7 @@ msgstr[1] "хлеб" msgstr[2] "хлеб" msgstr[3] "хлеб" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "Сытно и полезно." @@ -47214,7 +47266,7 @@ msgstr[1] "тоста" msgstr[2] "тостов" msgstr[3] "тосты" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -47231,7 +47283,7 @@ msgstr[1] "тоста с маслом" msgstr[2] "тостов с маслом" msgstr[3] "тосты с маслом" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "Тост с намазанным для вкуса маслом." @@ -47244,7 +47296,7 @@ msgstr[1] "тоста с джемом" msgstr[2] "тостов с джемом" msgstr[3] "тосты с джемом" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -47259,7 +47311,7 @@ msgstr[1] "тоста с арахисовым маслом" msgstr[2] "тостов с арахисовым маслом" msgstr[3] "тосты с арахисовым маслом" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -47273,7 +47325,7 @@ msgstr[1] "жабы в норке" msgstr[2] "жаб в норке" msgstr[3] "жабы в норке" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "Готовое яйцо в тосте." @@ -47286,7 +47338,7 @@ msgstr[1] "тоста с арахисовым маслом и джемом" msgstr[2] "тостов с арахисовым маслом и джемом" msgstr[3] "тосты с арахисовым маслом и джемом" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -47301,7 +47353,7 @@ msgstr[1] "кукурузный хлеб " msgstr[2] "кукурузный хлеб " msgstr[3] "кукурузный хлеб " -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "Вкусный и питательный кукурузный хлеб." @@ -47340,7 +47392,7 @@ msgstr[1] "галеты" msgstr[2] "галет" msgstr[3] "галеты" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -47370,7 +47422,7 @@ msgstr[1] "хлеб из отходов" msgstr[2] "хлеб из отходов" msgstr[3] "хлеб из отходов" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -47389,7 +47441,7 @@ msgstr[1] "коричневый хлеб" msgstr[2] "коричневый хлеб" msgstr[3] "коричневый хлеб" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "Сладкий хлеб, похожий на торт." @@ -47402,7 +47454,7 @@ msgstr[1] "халлула" msgstr[2] "халлула" msgstr[3] "халлула" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -47742,18 +47794,18 @@ msgstr[1] "вымачиваемое зерно" msgstr[2] "вымачиваемое зерно" msgstr[3] "вымачиваемое зерно" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "После замачивания зерна и ожидания оно закончило соложение." -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "Солодовое зерно еще не готово." -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "Соложение зерна можно использовать для изготовления алкоголя." @@ -47766,8 +47818,8 @@ msgstr[1] "солодовое зерно" msgstr[2] "солодовое зерно" msgstr[3] "солодовое зерно" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -47784,7 +47836,7 @@ msgstr[1] "вымачиваемый одуванчик" msgstr[2] "вымачиваемый одуванчик" msgstr[3] "вымачиваемый одуванчик" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " @@ -47793,7 +47845,7 @@ msgstr "" "Замочив одуванчики в кипящей воде, сок можно использовать для приготовления " "вина." -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "Одуванчикам нужно больше времени в воде." @@ -47806,7 +47858,7 @@ msgstr[1] "вымоченный одуванчик" msgstr[2] "вымоченный одуванчик" msgstr[3] "вымоченный одуванчик" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -47842,7 +47894,7 @@ msgstr[1] "приготовленных рыбы" msgstr[2] "приготовленных рыб" msgstr[3] "приготовленная рыба" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "Только что приготовленная рыба. Очень сытная." @@ -47965,7 +48017,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "Свежее мясо. Можно съесть в сыром виде, но лучше приготовить." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "Свежая кровь, добытая из живого существа." @@ -48096,7 +48148,7 @@ msgstr[1] "кровь мутанта" msgstr[2] "кровь мутанта" msgstr[3] "кровь мутанта" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "Свежая кровь, добытая из сильно мутировавшего существа." @@ -48147,7 +48199,7 @@ msgstr[1] "кровь мутировавшего человека" msgstr[2] "кровь мутировавшего человека" msgstr[3] "кровь мутировавшего человека" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "Свежая кровь, добытая из сильно мутировавшего человека." @@ -48207,7 +48259,7 @@ msgstr[1] "отхода от разделки" msgstr[2] "отходов от разделки" msgstr[3] "отходы от разделки" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -48319,7 +48371,7 @@ msgstr[1] "приготовленных потрохов" msgstr[2] "приготовленных потрохов" msgstr[3] "приготовленные потроха" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -48338,7 +48390,7 @@ msgstr[1] "мутировавшие органы" msgstr[2] "мутировавшие органы" msgstr[3] "мутировавшие органы" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "Органы огромного мутировавшего насекомого." @@ -48351,7 +48403,7 @@ msgstr[1] "маринованных потрохов" msgstr[2] "маринованных потрохов" msgstr[3] "маринованные потроха" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -48370,7 +48422,7 @@ msgstr[1] "консервированных потрохов" msgstr[2] "консервированных потрохов" msgstr[3] "консервированные потроха" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -48413,8 +48465,7 @@ msgstr[1] "вяленого мяса" msgstr[2] "вяленого мяса" msgstr[3] "вяленое мясо" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" @@ -48423,8 +48474,7 @@ msgstr[1] "вяленой человечины" msgstr[2] "вяленой человечины" msgstr[3] "вяленая человечина" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" @@ -48433,8 +48483,7 @@ msgstr[1] "болтливое вяленое мясо" msgstr[2] "болтливое вяленое мясо" msgstr[3] "болтливое вяленое мясо" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" @@ -48443,7 +48492,7 @@ msgstr[1] "куска вяленого мясо монстра" msgstr[2] "кусков вяленого мясо монстра" msgstr[3] "куски вяленого мясо монстра" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -48459,7 +48508,7 @@ msgstr[1] "засолённых рыбы" msgstr[2] "засолённых рыб" msgstr[3] "засолённая рыба" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -48475,7 +48524,7 @@ msgstr[1] "копчёное мясо" msgstr[2] "копчёное мясо" msgstr[3] "копчёное мясо" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" @@ -48484,8 +48533,7 @@ msgstr[1] "копчёных лоха" msgstr[2] "копчёных лохов" msgstr[3] "копчёные лохи" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" @@ -48494,18 +48542,13 @@ msgstr[1] "копченое мясо получеловека" msgstr[2] "копченое мясо получеловека" msgstr[3] "копченое мясо получеловека" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -48532,7 +48575,7 @@ msgstr[1] "копчёных рыбы" msgstr[2] "копчёных рыб" msgstr[3] "копчёная рыба" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -48603,7 +48646,7 @@ msgstr[1] "мутировавшие лёгкие" msgstr[2] "мутировавшие лёгкие" msgstr[3] "мутировавшие лёгкие" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "Без сомнений это ткань легкого" @@ -48671,7 +48714,7 @@ msgstr[1] "сырых мозгов" msgstr[2] "сырых мозгов" msgstr[3] "сырые мозги" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "Мозг животного. Вы бы не хотели есть это сырым…" @@ -48684,7 +48727,7 @@ msgstr[1] "приготовленных мозгов" msgstr[2] "приготовленных мозгов" msgstr[3] "приготовленные мозги" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -48786,7 +48829,7 @@ msgstr[3] "приготовленные поджелудочные железы" msgid "Normally a delicacy, it needs a little… something." msgstr "Вообще это считается деликатесом, только не хватает… Чего-то." -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "Кровь, возможно человеческая. Отвратительно!" @@ -48986,7 +49029,7 @@ msgstr "" "Очевидно опасное для здоровья мясо. Можно съесть, но это гарантированное " "отравление." -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -49307,7 +49350,7 @@ msgstr[1] "ветвей неземного растения" msgstr[2] "ветвей неземного растения" msgstr[3] "ветви неземного растения" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -49444,7 +49487,7 @@ msgstr[1] "плоть получеловека" msgstr[2] "плоть получеловека" msgstr[3] "плоть получеловека" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "Свежий кусок плоти, вырезанной из тела получеловека." @@ -49457,7 +49500,7 @@ msgstr[1] "кровь получеловека" msgstr[2] "кровь получеловека" msgstr[3] "кровь полулюдей" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "Свежая кровь, добытая из получеловека." @@ -49504,6 +49547,37 @@ msgstr "" "Маленький варёный желудок получеловека, ничего больше. Выглядит как угодно, " "но только не аппетитно." +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "жареное мясо" +msgstr[1] "жареное мясо" +msgstr[2] "жареное мясо" +msgstr[3] "жареное мясо" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "жареный дурачок" +msgstr[1] "жареный дурачок" +msgstr[2] "жареный дурачок" +msgstr[3] "жареный дурачок" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "жареный фамильяр" +msgstr[1] "жареный фамильяр" +msgstr[2] "жареный фамильяр" +msgstr[3] "жареный фамильяр" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "Вкусное мясо, пожаренное с маслом." + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" @@ -49512,7 +49586,7 @@ msgstr[1] "кукурузная запеканка" msgstr[2] "кукурузная запеканка" msgstr[3] "кукурузная запеканка" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -49530,7 +49604,7 @@ msgstr[1] "запеканка из рыбы с лапшой" msgstr[2] "запеканка из рыбы с лапшой" msgstr[3] "запеканка из рыбы с лапшой" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -49548,7 +49622,7 @@ msgstr[1] "хлопья" msgstr[2] "хлопья" msgstr[3] "хлопья" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "Абстрактная коробка хлопьев, вы не должны видеть ее." @@ -49561,7 +49635,7 @@ msgstr[1] "хлопья от Сядь-и-поешь" msgstr[2] "хлопья от Сядь-и-поешь" msgstr[3] "хлопья от Сядь-и-поешь" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -49575,7 +49649,7 @@ msgstr[1] "хлопья Хрум-Чавк" msgstr[2] "хлопья Хрум-Чавк" msgstr[3] "хлопья Хрум-Чавк" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -49592,7 +49666,7 @@ msgstr[1] "хлопья Хруст Плотника" msgstr[2] "хлопья Хруст Плотника" msgstr[3] "хлопья Хруст Плотника" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -49609,7 +49683,7 @@ msgstr[1] "Отрубические хлопья" msgstr[2] "Отрубические хлопья" msgstr[3] "Отрубические хлопья" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -49626,7 +49700,7 @@ msgstr[1] "хлопья Сахарный Хруст" msgstr[2] "хлопья Сахарный Хруст" msgstr[3] "хлопья Сахарный Хруст" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -49643,7 +49717,7 @@ msgstr[1] "хлопья Медовые Шарики" msgstr[2] "хлопья Медовые Шарики" msgstr[3] "хлопья Медовые Шарики" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -49677,7 +49751,7 @@ msgstr[1] "хлопья Сытик" msgstr[2] "хлопья Сытик" msgstr[3] "хлопья Сытик" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -49706,7 +49780,7 @@ msgstr[1] "пшеничные хлопья" msgstr[2] "пшеничные хлопья" msgstr[3] "пшеничные хлопья" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -49736,7 +49810,7 @@ msgstr[1] "молоко" msgstr[2] "молоко" msgstr[3] "молоко" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "Пища телят, приготовленная для взрослых людей. Быстро портится." @@ -49749,7 +49823,7 @@ msgstr[1] "шоколадное молоко" msgstr[2] "шоколадное молоко" msgstr[3] "шоколадное молоко" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "Пища телят, с шоколадом для взрослых людей. Быстро портится." @@ -49762,7 +49836,7 @@ msgstr[1] "восстановленного молока" msgstr[2] "восстановленного молока" msgstr[3] "восстановленное молоко" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -49779,7 +49853,7 @@ msgstr[1] "сырого молока" msgstr[2] "сырого молока" msgstr[3] "сырое молоко" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -49800,7 +49874,7 @@ msgstr[1] "молока длительного хранения" msgstr[2] "молока длительного хранения" msgstr[3] "молоко длительного хранения" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -49819,7 +49893,7 @@ msgstr[1] "концентрированного молока" msgstr[2] "концентрированного молока" msgstr[3] "концентрированное молоко" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -49833,7 +49907,7 @@ msgstr[1] "пахты" msgstr[2] "пахты" msgstr[3] "пахта" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -49863,7 +49937,7 @@ msgstr[1] "сливочного масла" msgstr[2] "сливочного масла" msgstr[3] "сливочное масло" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -49879,7 +49953,7 @@ msgstr[1] "сырых масла" msgstr[2] "сырых масел" msgstr[3] "сырое масло" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -49895,7 +49969,7 @@ msgstr[1] "топлёного масла" msgstr[2] "топлёного масла" msgstr[3] "топлёное масло" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -49941,7 +50015,7 @@ msgstr[1] "твёрдого сыра" msgstr[2] "твёрдых сыров" msgstr[3] "твёрдый сыр" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -49958,7 +50032,7 @@ msgstr[1] "сыра" msgstr[2] "сыров" msgstr[3] "сыр" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "Кусок жёлтого сыра." @@ -49984,7 +50058,7 @@ msgstr[1] "сухого молока" msgstr[2] "сухого молока" msgstr[3] "сухое молоко" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -49999,7 +50073,7 @@ msgstr[1] "сгущённого молока" msgstr[2] "сгущённого молока" msgstr[3] "сгущённое молоко" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -50016,7 +50090,7 @@ msgstr[1] "взбитые сливки" msgstr[2] "взбитые сливки" msgstr[3] "взбитые сливки" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -50033,7 +50107,7 @@ msgstr[1] "жирные сливки" msgstr[2] "жирные сливки" msgstr[3] "жирные сливки" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "Сливки, снятые с верхней части отстоявшегося свежего молока." @@ -50046,7 +50120,7 @@ msgstr[1] "яблочный сидр" msgstr[2] "яблочный сидр" msgstr[3] "яблочный сидр" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "Выжат из свежих яблок. Вкусно и питательно." @@ -50093,7 +50167,7 @@ msgstr[1] "атомного кофе" msgstr[2] "атомного кофе" msgstr[3] "атомный кофе" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -50113,7 +50187,7 @@ msgstr[1] "чая из монарды" msgstr[2] "чаёв из монарды" msgstr[3] "чай из монарды" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -50145,7 +50219,7 @@ msgstr[1] "чая с молоком и специями" msgstr[2] "чая с молоком и специями" msgstr[3] "чай с молоком и специями" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "Традиционный чай со специями и молоком из Южной Азии." @@ -50158,7 +50232,7 @@ msgstr[1] "ромашкового чая" msgstr[2] "ромашкового чая" msgstr[3] "ромашковый чай" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -50193,7 +50267,7 @@ msgstr[1] "кофе" msgstr[2] "кофе" msgstr[3] "кофе" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -50212,7 +50286,7 @@ msgstr[1] "кофезаменителя" msgstr[2] "кофезаменителя" msgstr[3] "кофезаменитель" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -50231,7 +50305,7 @@ msgstr[1] "заваренного цикория" msgstr[2] "заваренного цикория" msgstr[3] "заваренный цикорий" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -50319,7 +50393,7 @@ msgstr[1] "чая из одуванчиков" msgstr[2] "чая из одуванчиков" msgstr[3] "чай из одуванчиков" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "Полезный напиток из заваренных в кипящей воде корней одуванчика." @@ -50332,7 +50406,7 @@ msgstr[1] "чай из одуванчиков и лопуха" msgstr[2] "чай из одуванчиков и лопуха" msgstr[3] "чай из одуванчиков и лопуха" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -50406,7 +50480,7 @@ msgstr[1] "травяного чая" msgstr[2] "травяного чая" msgstr[3] "травяной чай" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "Полезный напиток, полученный путём заваривания трав в кипящей воде." @@ -50419,7 +50493,7 @@ msgstr[1] "горячего шоколада" msgstr[2] "горячего шоколада" msgstr[3] "горячий шоколад" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -50479,7 +50553,7 @@ msgstr[1] "лимонад" msgstr[2] "лимонад" msgstr[3] "лимонад" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -50513,7 +50587,7 @@ msgstr[1] "чай из лотоса" msgstr[2] "чай из лотоса" msgstr[3] "чай из лотоса" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -50527,7 +50601,7 @@ msgstr[1] "мексиканского горячего шоколада" msgstr[2] "мексиканского горячего шоколада" msgstr[3] "мексиканский горячий шоколад" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -50605,7 +50679,7 @@ msgstr[1] "хвойного чая" msgstr[2] "хвойного чая" msgstr[3] "хвойный чай" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -50653,7 +50727,7 @@ msgstr[1] "корневого пива" msgstr[2] "корневого пива" msgstr[3] "корневое пиво" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "Как кола, но без кофеина. Всё равно не самый здоровый напиток." @@ -50701,13 +50775,13 @@ msgstr[1] "чай из молочая" msgstr[2] "чай из молочая" msgstr[3] "чай из молочая" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "Вы больше не нужно беспокоиться о приступе астмы. Хотя бы на время." -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -50741,7 +50815,7 @@ msgstr[1] "сладкой воды" msgstr[2] "сладкой воды" msgstr[3] "сладкая вода" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "Вода с добавлением сахара или мёда. На вкус нормально." @@ -50771,7 +50845,7 @@ msgstr[1] "чай из ивовой коры" msgstr[2] "чай из ивовой коры" msgstr[3] "чай из ивовой коры" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -50818,7 +50892,7 @@ msgstr[1] "воды" msgstr[2] "воды" msgstr[3] "вода" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -50835,7 +50909,7 @@ msgstr[1] "чистой воды" msgstr[2] "чистой воды" msgstr[3] "чистая вода" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "Свежая, чистая вода. Лучшее, что способно утолить жажду." @@ -50848,7 +50922,7 @@ msgstr[1] "минеральной воды" msgstr[2] "минеральной воды" msgstr[3] "минеральная вода" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -51018,7 +51092,7 @@ msgstr[1] "кленового сока" msgstr[2] "кленового сока" msgstr[3] "кленовый сок" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "Раствор сахара в воде, добытый из клёна." @@ -51031,7 +51105,7 @@ msgstr[1] "майонеза" msgstr[2] "майонезов" msgstr[3] "майонез" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -51060,7 +51134,7 @@ msgstr[1] "горчицы" msgstr[2] "горчиц" msgstr[3] "горчица" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -51077,7 +51151,7 @@ msgstr[1] "жидкого мёда" msgstr[2] "жидкого мёда" msgstr[3] "жидкий мёд" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -51094,7 +51168,7 @@ msgstr[1] "уксуса" msgstr[2] "уксусов" msgstr[3] "уксус" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -51111,7 +51185,7 @@ msgstr[1] "растительного масла" msgstr[2] "растительного масла" msgstr[3] "растительное масло" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "" @@ -51125,7 +51199,7 @@ msgstr[1] "животного масла" msgstr[2] "животного масла" msgstr[3] "животное масло" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -51139,7 +51213,7 @@ msgstr[1] "патока" msgstr[2] "патока" msgstr[3] "патока" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -51156,7 +51230,7 @@ msgstr[1] "хрена" msgstr[2] "хрена" msgstr[3] "хрен" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "Жгучий тёртый корнеплод, законсервированный в уксусном рассоле." @@ -51169,7 +51243,7 @@ msgstr[1] "кофейных сиропа" msgstr[2] "кофейных сиропов" msgstr[3] "кофейный сироп" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -51604,7 +51678,7 @@ msgstr[1] "омлета" msgstr[2] "омлетов" msgstr[3] "омлет" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "Приготовленные взбитые яйца." @@ -51630,7 +51704,7 @@ msgstr[1] "яичницы" msgstr[2] "яичниц" msgstr[3] "яичницы" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -51646,7 +51720,7 @@ msgstr[1] "шикарный омлет" msgstr[2] "шикарный омлет" msgstr[3] "шикарный омлет" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -51663,7 +51737,7 @@ msgstr[1] "яичных сендвича" msgstr[2] "яичных сендвичей" msgstr[3] "яичные сендвичи" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -51680,7 +51754,7 @@ msgstr[1] "шикарных яичных сендвича" msgstr[2] "шикарных яичных сендвичей" msgstr[3] "шикарные яичные сендвичи" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -51933,7 +52007,7 @@ msgstr[1] "замороженного йогурта" msgstr[2] "замороженных йогуртов" msgstr[3] "замороженный йогурт" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -52021,7 +52095,7 @@ msgstr[1] "персиков в сиропе" msgstr[2] "персиков в сиропе" msgstr[3] "персики в сиропе" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "Жёлтые ломтики персиков в лёгком сиропе." @@ -52047,7 +52121,7 @@ msgstr[1] "лимонадная смесь" msgstr[2] "лимонадная смесь" msgstr[3] "лимонадная смесь" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -52090,7 +52164,7 @@ msgstr[1] "сушёных фруктов" msgstr[2] "сушёных фруктов" msgstr[3] "сушёные фрукты" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -52109,7 +52183,7 @@ msgstr[1] "регидрированных фруктов" msgstr[2] "регидрированных фруктов" msgstr[3] "регидрированные фрукты" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -52142,7 +52216,7 @@ msgstr[1] "консервированных фруктов" msgstr[2] "консервированных фруктов" msgstr[3] "консервированные фрукты" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -52159,7 +52233,7 @@ msgstr[1] "тыквенный дрожжевой хлеб" msgstr[2] "тыквенный дрожжевой хлеб" msgstr[3] "тыквенный дрожжевой хлеб" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -52188,7 +52262,7 @@ msgstr[1] "облучённых шиповника" msgstr[2] "облучённых шиповников" msgstr[3] "облучённый шиповник" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -52698,7 +52772,7 @@ msgstr[1] "облучённой брокколи" msgstr[2] "облучённой брокколи" msgstr[3] "облучённая брокколи" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -52766,7 +52840,7 @@ msgstr[1] "облучённых кукурузы" msgstr[2] "облучённых кукуруз" msgstr[3] "облучённая кукуруза" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -52834,7 +52908,7 @@ msgstr[1] "облучённый сельдерей" msgstr[2] "облучённый сельдерей" msgstr[3] "облучённый сельдерей" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -52851,7 +52925,7 @@ msgstr[1] "облучённый ревень" msgstr[2] "облучённый ревень" msgstr[3] "облучённый ревень" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -52992,12 +53066,12 @@ msgstr[1] "картофельных чипсов" msgstr[2] "картофельных чипсов" msgstr[3] "картофельные чипсы" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "Обычные подсоленные картофельные чипсы." -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "Парень, ты просто обожаешь эти чипсы! Повезло!" @@ -53010,7 +53084,7 @@ msgstr[1] "кукурузных зёрен" msgstr[2] "кукурузных зёрен" msgstr[3] "кукурузные зёрна" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -53027,7 +53101,7 @@ msgstr[1] "попкорна" msgstr[2] "попкорнов" msgstr[3] "попкорн" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -53044,7 +53118,7 @@ msgstr[1] "солёных попкорна" msgstr[2] "солёных попкорнов" msgstr[3] "солёный попкорн" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "Подсоленный для вкуса попкорн." @@ -53057,7 +53131,7 @@ msgstr[1] "попкорна с маслом" msgstr[2] "попкорнов с маслом" msgstr[3] "попкорн с маслом" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "Попкорн, покрытый небольшим количеством масла для вкуса." @@ -53070,7 +53144,7 @@ msgstr[1] "крендельков" msgstr[2] "крендельков" msgstr[3] "крендельки" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "Вкусная соленая закуска." @@ -53109,7 +53183,7 @@ msgstr[1] "зефира" msgstr[2] "зефира" msgstr[3] "зефир" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "Горстка нежного, воздушного, пышного и вкусного зефира." @@ -53122,7 +53196,7 @@ msgstr[1] "с'мор" msgstr[2] "с'мор" msgstr[3] "с'мор" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -53163,7 +53237,7 @@ msgstr[1] "жевательные конфеты" msgstr[2] "жевательных конфет" msgstr[3] "жевательные конфеты" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "Горстка разноцветных конфет с начинкой из фруктовой жвачки." @@ -53176,12 +53250,12 @@ msgstr[1] "мармеладные конфеты" msgstr[2] "мармеладных конфет" msgstr[3] "мармеладные конфеты" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "Горстка разноцветных конфет со вкусом фруктов и газировки." -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -53241,7 +53315,7 @@ msgstr[1] "трубочки с конфетным порошком" msgstr[2] "трубочек с конфетным порошком" msgstr[3] "трубочки с конфетным порошком" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -53337,7 +53411,7 @@ msgstr[1] "кленовых сиропа" msgstr[2] "кленовых сиропов" msgstr[3] "кленовый сироп" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -53354,7 +53428,7 @@ msgstr[1] "сиропа из сахарной свёклы" msgstr[2] "сиропов из сахарной свёклы" msgstr[3] "сироп из сахарной свёклы" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -53418,7 +53492,7 @@ msgstr[1] "картофеля фри быстрого приготовления msgstr[2] "картофеля фри быстрого приготовления" msgstr[3] "картофель фри быстрого приготовления" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -53432,7 +53506,7 @@ msgstr[1] "картофеля фри" msgstr[2] "картофеля фри" msgstr[3] "картофель фри" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "Хорошо прожаренный картофель, посыпанный солью. Вкусный и хрустящий." @@ -53458,7 +53532,7 @@ msgstr[1] "вафель Necco" msgstr[2] "вафель Necco" msgstr[3] "вафли Necco" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -53490,8 +53564,8 @@ msgstr[1] "карамели" msgstr[2] "карамели" msgstr[3] "карамель" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "Карамель. Всё так же вредна для ваших зубов." @@ -53504,7 +53578,7 @@ msgstr[1] "яблока в карамели" msgstr[2] "яблок в карамели" msgstr[3] "яблоки в карамели" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "Спорю, не сможешь остановиться на одной." @@ -53517,7 +53591,7 @@ msgstr[1] "чипсов из тортильи" msgstr[2] "чипсов из тортильи" msgstr[3] "чипсы из тортильи" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -53534,7 +53608,7 @@ msgstr[1] "сырных начос" msgstr[2] "сырных начос" msgstr[3] "сырные начос" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -53551,8 +53625,7 @@ msgstr[1] "начос с мясом" msgstr[2] "начос с мясом" msgstr[3] "начос с мясом" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" @@ -53561,8 +53634,7 @@ msgstr[1] "начос Нино" msgstr[2] "начос Нино" msgstr[3] "начос Нино" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" @@ -53571,8 +53643,7 @@ msgstr[1] "начос из нибелунга" msgstr[2] "начос из нибелунга" msgstr[3] "начос из нибелунга" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" @@ -53581,7 +53652,7 @@ msgstr[1] "начос из чупакабры" msgstr[2] "начос из чупакабры" msgstr[3] "начос из чупакабры" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -53598,8 +53669,8 @@ msgstr[1] "мясных начос с сыром" msgstr[2] "мясных начос с сыром" msgstr[3] "мясные начос с сыром" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" @@ -53608,8 +53679,8 @@ msgstr[1] "начос Нино с сыром" msgstr[2] "начос Нино с сыром" msgstr[3] "начос Нино с сыром" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" @@ -53618,8 +53689,8 @@ msgstr[1] "начос из нибелунга с сыром" msgstr[2] "начос из нибелунга с сыром" msgstr[3] "начос из нибелунга с сыром" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" @@ -53628,7 +53699,7 @@ msgstr[1] "начос из чупакабры с сыром" msgstr[2] "начос из чупакабры с сыром" msgstr[3] "начос из чупакабры с сыром" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -53643,7 +53714,7 @@ msgstr[1] "вегетарианские начос" msgstr[2] "вегетарианские начос" msgstr[3] "вегетарианские начос" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -53660,7 +53731,7 @@ msgstr[1] "вегетарианские начос с сыром" msgstr[2] "вегетарианские начос с сыром" msgstr[3] "вегетарианские начос с сыром" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -53755,7 +53826,7 @@ msgstr[1] "чили-дога" msgstr[2] "чили-догов" msgstr[3] "чили-доги" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "Хот-дог, подаваемый с соусом «Чили Кон Карне». Ням!" @@ -53768,7 +53839,7 @@ msgstr[1] "неготовых корн-дога" msgstr[2] "неготовых корн-догов" msgstr[3] "неготовые корн-доги" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -53868,7 +53939,7 @@ msgstr[1] "картошки-фри с сыром" msgstr[2] "картошек-фри с сыром" msgstr[3] "картошка-фри с сыром" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "Картошка-фри с вкуснейшим сыром." @@ -53978,8 +54049,7 @@ msgstr[1] "арахис в глазури" msgstr[2] "арахис в глазури" msgstr[3] "арахис в глазури" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -54165,7 +54235,7 @@ msgstr[1] "сырые колбасы" msgstr[2] "сырых колбас" msgstr[3] "сырые колбасы" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" @@ -54174,8 +54244,7 @@ msgstr[1] "сырые копчиты вурст" msgstr[2] "сырых копчит вурст" msgstr[3] "сырые копчиты вурст" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" @@ -54184,17 +54253,12 @@ msgstr[1] "сырые колбасы из беса" msgstr[2] "сырых колбас из беса" msgstr[3] "сырые колбасы из беса" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -54217,8 +54281,7 @@ msgstr[1] "копченые колбасы" msgstr[2] "копченых колбас" msgstr[3] "копченые колбасы" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" @@ -54227,7 +54290,7 @@ msgstr[1] "копченные копчиты вурст" msgstr[2] "копченных копчиты вурст" msgstr[3] "копченные копчиты вурст" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -54250,8 +54313,7 @@ msgstr[1] "приготовленные колбасы" msgstr[2] "приготовленных колбас" msgstr[3] "приготовленные колбасы" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" @@ -54260,7 +54322,7 @@ msgstr[1] "приготовленные копчиты вурст" msgstr[2] "приготовленных копчит вурст" msgstr[3] "приготовленные копчиты вурст" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -54296,7 +54358,7 @@ msgstr[1] "братвурста" msgstr[2] "братвурстов" msgstr[3] "братвурсты" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" @@ -54305,8 +54367,7 @@ msgstr[1] "человекобратвурста" msgstr[2] "человекобратвурстов" msgstr[3] "человекобратвурсты" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" @@ -54315,8 +54376,7 @@ msgstr[1] "братвурста из получеловека" msgstr[2] "братвурстов из получеловека" msgstr[3] "братвурсты из получеловека" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -54343,7 +54403,7 @@ msgstr[1] "королевские отбивные" msgstr[2] "королевских отбивных" msgstr[3] "королевские отбивные" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -54409,7 +54469,7 @@ msgstr[1] "шкварки" msgstr[2] "шкварки" msgstr[3] "шкварки" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -54426,8 +54486,7 @@ msgstr[1] "вырезка в глазури" msgstr[2] "вырезка в глазури" msgstr[3] "вырезка в глазури" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -54437,7 +54496,7 @@ msgstr[1] "скверные %s" msgstr[2] "скверных %s" msgstr[3] "скверные %s" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -54455,7 +54514,7 @@ msgstr[1] "колбасы в соусе карри" msgstr[2] "колбас в соусе карри" msgstr[3] "колбасы в соусе карри" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -54465,8 +54524,7 @@ msgstr[1] "%s с соусом из жадины" msgstr[2] "%s с соусом из жадины" msgstr[3] "%s с соусом из жадины" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -54476,8 +54534,7 @@ msgstr[1] "%s из получеловека" msgstr[2] "%s из получеловека" msgstr[3] "%s из получеловека" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -54503,9 +54560,8 @@ msgstr[1] "заливное" msgstr[2] "заливное" msgstr[3] "заливное" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -54515,9 +54571,8 @@ msgstr[1] "мерзостное %s" msgstr[2] "мерзостное %s" msgstr[3] "мерзостное %s" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -54527,9 +54582,8 @@ msgstr[1] "аморальное %s" msgstr[2] "аморальное %s" msgstr[3] "аморальное %s" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -54557,7 +54611,7 @@ msgstr[1] "сушёная рыба" msgstr[2] "сушёная рыба" msgstr[3] "сушёная рыба" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -54574,7 +54628,7 @@ msgstr[1] "регидрированных рыбы" msgstr[2] "регидрированных рыб" msgstr[3] "регидрированная рыба" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -54591,7 +54645,7 @@ msgstr[1] "маринованных рыбы" msgstr[2] "маринованных рыб" msgstr[3] "маринованная рыба" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -54605,7 +54659,7 @@ msgstr[1] "консервированных рыбы" msgstr[2] "консервированных рыб" msgstr[3] "консервированная рыба" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -54622,7 +54676,7 @@ msgstr[1] "рыбы в панировке" msgstr[2] "рыб в панировке" msgstr[3] "рыба в панировке" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "Вкусная порция хрустящей жареной рыбы золотисто-коричневого цвета." @@ -54662,8 +54716,7 @@ msgstr[1] "мясная нарезка" msgstr[2] "мясная нарезка" msgstr[3] "мясная нарезка" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -54690,7 +54743,7 @@ msgstr[1] "болонские колбасы" msgstr[2] "болонских колбасы" msgstr[3] "болонские колбасы" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -54700,8 +54753,7 @@ msgstr[1] "ублюдочные %s" msgstr[2] "ублюдочных %s" msgstr[3] "ублюдочные %s" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -54711,8 +54763,7 @@ msgstr[1] "%s из получеловека" msgstr[2] "%s из получеловека" msgstr[3] "%s из получеловека" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -54722,7 +54773,7 @@ msgstr[1] "бледных %s" msgstr[2] "бледных %s" msgstr[3] "бледные %s" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -54760,7 +54811,7 @@ msgstr[1] "тушёнки" msgstr[2] "тушёнок" msgstr[3] "тушёнки" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -54809,8 +54860,7 @@ msgstr[1] "сосиски с соусом" msgstr[2] "сосисок с соусом" msgstr[3] "сосиска с соусом" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" @@ -54819,8 +54869,8 @@ msgstr[1] "колбасы с подливкой" msgstr[2] "колбасы с подливкой" msgstr[3] "колбаса с подливкой" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" @@ -54829,8 +54879,7 @@ msgstr[1] "подливка с бесом" msgstr[2] "подливка с бесом" msgstr[3] "подливка с бесом" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -54857,7 +54906,7 @@ msgstr[1] "пеммикан" msgstr[2] "пеммикан" msgstr[3] "пеммикан" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -54867,8 +54916,7 @@ msgstr[1] "%s из товарища" msgstr[2] "%s из товарища" msgstr[3] "%s из товарища" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -54878,8 +54926,7 @@ msgstr[1] "%s из получеловека" msgstr[2] "%s из получеловека" msgstr[3] "%s из получеловека" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -54889,7 +54936,7 @@ msgstr[1] "пагубный %s" msgstr[2] "пагубный %s" msgstr[3] "пагубный %s" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -54908,8 +54955,7 @@ msgstr[1] "макароны по-флотски" msgstr[2] "макароны по-флотски" msgstr[3] "макароны по-флотски" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" @@ -54918,7 +54964,7 @@ msgstr[1] "макароны с человечиной" msgstr[2] "макароны с человечиной" msgstr[3] "макароны с человечиной" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -54928,8 +54974,7 @@ msgstr[1] "макароны из хоббита" msgstr[2] "макароны из хоббита" msgstr[3] "макароны из хоббита" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -54969,8 +55014,7 @@ msgstr[1] "соуса чили с мясом" msgstr[2] "соусов чили с мясом" msgstr[3] "соус чили с мясом" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" @@ -54979,8 +55023,8 @@ msgstr[1] "чили кон каброн" msgstr[2] "чили кон каброн" msgstr[3] "чили кон каброн" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" @@ -54989,8 +55033,7 @@ msgstr[1] "соус чили с эльфом" msgstr[2] "соус чили с эльфом" msgstr[3] "соус чили с эльфом" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -55012,7 +55055,7 @@ msgstr[1] "свинины с бобами" msgstr[2] "свинины с бобами" msgstr[3] "свинина с бобами" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -55027,7 +55070,7 @@ msgstr[1] "консервированных тунца" msgstr[2] "консервированных тунцов" msgstr[3] "консервированный тунец" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "Теперь в нём на 95 процентов меньше дельфинов!" @@ -55040,7 +55083,7 @@ msgstr[1] "консервированный лосось" msgstr[2] "консервированный лосось" msgstr[3] "консервированный лосось" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "Ярко-розовая рыбная масса в банке!" @@ -55066,7 +55109,7 @@ msgstr[1] "маринованная сельдь" msgstr[2] "маринованная сельдь" msgstr[3] "маринованная сельдь" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "Филе рыбы, маринованное в остром белом соусе." @@ -55092,8 +55135,7 @@ msgstr[1] "клэм-чаудер" msgstr[2] "клэм-чаудер" msgstr[3] "клэм-чаудер" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" @@ -55102,8 +55144,7 @@ msgstr[1] "мясной суп" msgstr[2] "мясной суп" msgstr[3] "мясной суп" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -55129,8 +55170,7 @@ msgstr[1] "тушёных фасоли" msgstr[2] "тушёных фасоли" msgstr[3] "тушёная фасоль" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" @@ -55139,7 +55179,7 @@ msgstr[1] "орка с бобами" msgstr[2] "орков с бобами" msgstr[3] "орки с бобами" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "Приготовленная на медленном огне фасоль с мясом. Вкусно и сытно." @@ -55152,8 +55192,7 @@ msgstr[1] "риса с мясом" msgstr[2] "риса с мясом" msgstr[3] "рис с мясом" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" @@ -55162,7 +55201,7 @@ msgstr[1] "рис с жареным мутантом" msgstr[2] "рис с жареным мутантом" msgstr[3] "рис с жареным мутантом" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "Вкусный жареный рис с мясом. Аппетитный и сытный." @@ -55175,8 +55214,8 @@ msgstr[1] "шикарного риса с бобами" msgstr[2] "шикарного риса с бобами" msgstr[3] "шикарный рис с бобами" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" @@ -55185,7 +55224,7 @@ msgstr[1] "«шикарный» рис с бобами" msgstr[2] "«шикарный» рис с бобами" msgstr[3] "«шикарный» рис с бобами" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -55202,7 +55241,7 @@ msgstr[1] "мясной пирог" msgstr[2] "мясной пирог" msgstr[3] "мясные пироги" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" @@ -55211,8 +55250,7 @@ msgstr[1] "пирога с человечиной" msgstr[2] "пирогов с человечиной" msgstr[3] "пироги с человечиной" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" @@ -55221,7 +55259,7 @@ msgstr[1] "пирога из говорливого животного" msgstr[2] "пирогов из говорливого животного" msgstr[3] "пироги из говорливого животного" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -55244,7 +55282,7 @@ msgstr[1] "мясная пицца" msgstr[2] "мясная пицца" msgstr[3] "мясные пиццы" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" @@ -55253,8 +55291,7 @@ msgstr[1] "пиццы с позёром" msgstr[2] "пицц с позёром" msgstr[3] "пиццы с позёром" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" @@ -55263,8 +55300,7 @@ msgstr[1] "пиццы из спорщика" msgstr[2] "пицц из спорщика" msgstr[3] "пиццы из спорщика" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -55303,8 +55339,7 @@ msgstr[1] "шикарных омлета" msgstr[2] "шикарных омлетов" msgstr[3] "шикарный омлет" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" @@ -55313,8 +55348,8 @@ msgstr[1] "шикарный каннибальский омлет" msgstr[2] "шикарный каннибальский омлет" msgstr[3] "шикарный каннибальский омлет" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" @@ -55323,8 +55358,8 @@ msgstr[1] "омлет из полуптицы" msgstr[2] "омлет из полуптицы" msgstr[3] "омлет из полуптицы" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" @@ -55333,7 +55368,7 @@ msgstr[1] "«шикарный» омлет" msgstr[2] "«шикарный» омлет" msgstr[3] "«шикарный» омлет" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -55348,7 +55383,7 @@ msgstr[1] "мясные консервы" msgstr[2] "мясные консервы" msgstr[3] "мясные консервы" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" @@ -55357,8 +55392,7 @@ msgstr[1] "ломтика сойлента" msgstr[2] "ломтиков сойлента" msgstr[3] "ломтики сойлента" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -55384,8 +55418,7 @@ msgstr[1] "солонина из мяса" msgstr[2] "солонина из мяса" msgstr[3] "солонина из мяса" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" @@ -55394,7 +55427,7 @@ msgstr[1] "солёных ломтика простака" msgstr[2] "солёных ломтиков простака" msgstr[3] "солёные ломтики простака" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -55419,8 +55452,7 @@ msgstr[1] "спагетти с соусом болоньезе" msgstr[2] "спагетти с соусом болоньезе" msgstr[3] "спагетти с соусом болоньезе" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" @@ -55429,7 +55461,7 @@ msgstr[1] "спагетти из подлеца" msgstr[2] "спагетти из подлеца" msgstr[3] "спагетти из подлеца" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -55439,8 +55471,7 @@ msgstr[1] "спагетти из болтуна" msgstr[2] "спагетти из болтуна" msgstr[3] "спагетти из болтуна" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -55450,7 +55481,7 @@ msgstr[1] "жуткое %s" msgstr[2] "жуткое %s" msgstr[3] "жуткое %s" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "Спагетти, залитые густым мясным соусом. Ням!" @@ -55463,7 +55494,7 @@ msgstr[1] "лазаньи" msgstr[2] "лазаньи" msgstr[3] "лазаньи" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -55473,8 +55504,7 @@ msgstr[1] "%s с Луиджи" msgstr[2] "%s с Луиджи" msgstr[3] "%s с Луиджи" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -55484,7 +55514,7 @@ msgstr[1] "%s из получеловека" msgstr[2] "%s из получеловека" msgstr[3] "%s из получеловека" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -55511,7 +55541,7 @@ msgstr[1] "поджаренная ветчина" msgstr[2] "поджаренная ветчина" msgstr[3] "поджаренная ветчина" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "Ветчина очень вкусная, если хорошо прожарена." @@ -55524,8 +55554,7 @@ msgstr[1] "чизбургера" msgstr[2] "чизбургеров" msgstr[3] "чизбургеры" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -55535,7 +55564,7 @@ msgstr[1] "%s из головы" msgstr[2] "%s из головы" msgstr[3] "%s из головы" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -55546,8 +55575,7 @@ msgstr[1] "эльфийских %s" msgstr[2] "эльфийских %s" msgstr[3] "эльфийские %s" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -55591,7 +55619,7 @@ msgstr[1] "гамбургера" msgstr[2] "гамбургеров" msgstr[3] "гамбургеры" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" @@ -55600,8 +55628,7 @@ msgstr[1] "бургера из Боба" msgstr[2] "бургеров из Боба" msgstr[3] "бургеры из Боба" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" @@ -55610,8 +55637,7 @@ msgstr[1] "бургера а-ля доктор Моро" msgstr[2] "бургеров а-ля доктор Моро" msgstr[3] "бургеры а-ля доктор Моро" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -55634,7 +55660,7 @@ msgstr[1] "ленивых Джо" msgstr[2] "ленивых Джо" msgstr[3] "ленивые Джо" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" @@ -55643,8 +55669,7 @@ msgstr[1] "манвича" msgstr[2] "манвичей" msgstr[3] "манвич" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" @@ -55653,8 +55678,7 @@ msgstr[1] "ленивых Фродо" msgstr[2] "ленивых Фродо" msgstr[3] "ленивые Фродо" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -55680,7 +55704,7 @@ msgstr[1] "тако" msgstr[2] "тако" msgstr[3] "тако" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -55690,8 +55714,7 @@ msgstr[1] "тио %s" msgstr[2] "тио %s" msgstr[3] "тио %s" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -55701,7 +55724,7 @@ msgstr[1] "болтливый %s" msgstr[2] "болтливый %s" msgstr[3] "болтливый %s" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -55728,8 +55751,7 @@ msgstr[1] "маринованное мясо" msgstr[2] "маринованное мясо" msgstr[3] "маринованное мясо" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" @@ -55738,7 +55760,7 @@ msgstr[1] "маринованая человечина" msgstr[2] "маринованая человечина" msgstr[3] "маринованая человечина" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -55762,10 +55784,8 @@ msgstr[1] "сушёное мясо" msgstr[2] "сушёное мясо" msgstr[3] "сушёное мясо" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -55775,12 +55795,11 @@ msgstr[1] "%s, человеческое" msgstr[2] "%s, человеческое" msgstr[3] "%s, человеческое" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -55824,9 +55843,8 @@ msgstr[1] "хаггис" msgstr[2] "хаггис" msgstr[3] "хаггис" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -55856,7 +55874,7 @@ msgstr[1] "тэмакидзуси c рыбой" msgstr[2] "тэмакидзуси c рыбой" msgstr[3] "тэмакидзуси c рыбой" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -55873,8 +55891,7 @@ msgstr[1] "темаки с мясом" msgstr[2] "темаки с мясом" msgstr[3] "темаки с мясом" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -55884,7 +55901,7 @@ msgstr[1] "проблемных %s" msgstr[2] "проблемных %s" msgstr[3] "проблемные %s" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -55901,7 +55918,7 @@ msgstr[1] "сашими" msgstr[2] "сашими" msgstr[3] "сашими" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "Восхитительные кусочки тонко нарезанной сырой рыбы и вкусные овощи." @@ -55931,7 +55948,7 @@ msgstr[1] "пельмени" msgstr[2] "пельмени" msgstr[3] "пельмени" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -55958,8 +55975,7 @@ msgstr[1] "домашних буррито" msgstr[2] "домашних буррито" msgstr[3] "домашние буррито" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -55987,8 +56003,7 @@ msgstr[1] "сырые фрикадельки" msgstr[2] "сырых фрикаделек" msgstr[3] "сырые фрикадельки" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" @@ -55997,7 +56012,7 @@ msgstr[1] "сырые фрикадельки из человечины" msgstr[2] "сырых фрикаделек из человечины" msgstr[3] "сырые фрикадельки из человечины" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -56020,7 +56035,7 @@ msgstr[1] "фрикадельки" msgstr[2] "фрикаделек" msgstr[3] "фрикадельки" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" @@ -56029,8 +56044,7 @@ msgstr[1] "фрикадельки из человечины" msgstr[2] "фрикаделек из человечины" msgstr[3] "фрикадельки из человечины" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -56076,12 +56090,12 @@ msgstr[1] "рецептурный стимулятор" msgstr[2] "рецептурный стимулятор" msgstr[3] "рецептурный стимулятор" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "Вы принимаете немного стимуляторов." -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -56143,7 +56157,7 @@ msgstr[1] "антибиотиков" msgstr[2] "антибиотиков" msgstr[3] "антибиотики" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -56179,7 +56193,7 @@ msgstr[1] "противопаразитный препарат" msgstr[2] "противопаразитный препарат" msgstr[3] "противопаразитный препарат" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -56277,7 +56291,7 @@ msgstr[1] "антисептических порошка" msgstr[2] "антисептических порошков" msgstr[3] "антисептический порошок" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -56349,7 +56363,7 @@ msgstr[1] "перекиси водорода" msgstr[2] "перекиси водорода" msgstr[3] "перекись водорода" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -56417,12 +56431,12 @@ msgstr[1] "кодеина" msgstr[2] "кодеина" msgstr[3] "кодеин" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "Вы приняли кодеин." -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -56441,7 +56455,7 @@ msgstr[1] "кокаина" msgstr[2] "кокаина" msgstr[3] "кокаин" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -56497,7 +56511,7 @@ msgstr[1] "ватных шариков" msgstr[2] "ватных шариков" msgstr[3] "ватные шарики" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -56515,12 +56529,12 @@ msgstr[1] "крэка" msgstr[2] "крэка" msgstr[3] "крэк" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "Вы покурили крэк. Мама будет гордиться." -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -56537,7 +56551,7 @@ msgstr[1] "сиропа от кашля (без снотворного)" msgstr[2] "сиропа от кашля (без снотворного)" msgstr[3] "сироп от кашля (без снотворного)" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -56556,7 +56570,7 @@ msgstr[1] "антисептик" msgstr[2] "антисептик" msgstr[3] "антисептик" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -56585,7 +56599,7 @@ msgstr[1] "рецептурное успокоительное" msgstr[2] "рецептурное успокоительное" msgstr[3] "рецептурное успокоительное" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -56602,12 +56616,12 @@ msgstr[1] "кристаллика концентрата ТГК" msgstr[2] "кристалликов концентрата ТГК" msgstr[3] "кристаллики концентрата ТГК" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "Вы делаете затяжку. Ого, неслабо в голову дает!" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -56631,12 +56645,12 @@ msgstr[1] "качественный воск ТГК" msgstr[2] "качественный воск ТГК" msgstr[3] "качественный воск ТГК" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "Вы делаете затяжку. *кашель* Хорошо пошло!" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -56657,12 +56671,12 @@ msgstr[1] "качественное неочищенное масло ТГК" msgstr[2] "качественное неочищенное масло ТГК" msgstr[3] "качественное неочищенное масло ТГК" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "Вы делаете затяжку неочищенного масла. Плохая идея." -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -56682,16 +56696,14 @@ msgstr[1] "низкокачественное неочищенное масло msgstr[2] "низкокачественное неочищенное масло ТГК" msgstr[3] "низкокачественное неочищенное масло ТГК" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "Вы делаете затяжку некачественного неочищенного масла. Плохая идея." -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -56711,7 +56723,7 @@ msgstr[1] "низкокачественное неочищенное масло msgstr[2] "низкокачественное неочищенное масло ТГК (этанол)" msgstr[3] "низкокачественное неочищенное масло ТГК (этанол)" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -56730,7 +56742,7 @@ msgstr[1] "качественное неочищенное масло ТГК (э msgstr[2] "качественное неочищенное масло ТГК (этанол)" msgstr[3] "качественное неочищенное масло ТГК (этанол)" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -56749,7 +56761,7 @@ msgstr[1] "низкокачественное фильтрованное мас msgstr[2] "низкокачественное фильтрованное масло ТГК (этанол)" msgstr[3] "низкокачественное фильтрованное масло ТГК (этанол)" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -56768,7 +56780,7 @@ msgstr[1] "качественное фильтрованное масло ТГК msgstr[2] "качественное фильтрованное масло ТГК (этанол)" msgstr[3] "качественное фильтрованное масло ТГК (этанол)" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -56787,7 +56799,7 @@ msgstr[1] "низкокачественное фильтрованное мас msgstr[2] "низкокачественное фильтрованное масло ТГК" msgstr[3] "низкокачественное фильтрованное масло ТГК" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -56807,7 +56819,7 @@ msgstr[1] "качественное фильтрованное масло ТГК msgstr[2] "качественное фильтрованное масло ТГК" msgstr[3] "качественное фильтрованное масло ТГК" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -56827,7 +56839,7 @@ msgstr[1] "качественный дистиллят ТГК (головы)" msgstr[2] "качественный дистиллят ТГК (головы)" msgstr[3] "качественный дистиллят ТГК (головы)" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -56846,7 +56858,7 @@ msgstr[1] "качественный дистиллят ТГК (хвосты)" msgstr[2] "качественный дистиллят ТГК (хвосты)" msgstr[3] "качественный дистиллят ТГК (хвосты)" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -56864,12 +56876,12 @@ msgstr[1] "качественный дистиллят ТГК" msgstr[2] "качественный дистиллят ТГК" msgstr[3] "качественный дистиллят ТГК" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "Вы затягиваетесь дистиллятом. Ох как гладенькооо…" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -56977,7 +56989,7 @@ msgstr[1] "жевательной резинки" msgstr[2] "жевательной резинки" msgstr[3] "жевательная резинка" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "Ярко-розовая жевательная резинка без сахара." @@ -57009,13 +57021,13 @@ msgstr[1] "героина" msgstr[2] "героина" msgstr[3] "героин" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "Вы делаете укол." -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -57111,7 +57123,7 @@ msgstr[1] "низкосортного метамфетамина" msgstr[2] "низкосортного метамфетамина" msgstr[3] "низкосортный метамфетамин" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -57130,7 +57142,7 @@ msgstr[1] "качественный метамфетамин" msgstr[2] "качественный метамфетамин" msgstr[3] "качественный метамфетамин" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -57201,7 +57213,7 @@ msgstr[1] "сиропа от кашля" msgstr[2] "сиропа от кашля" msgstr[3] "сироп от кашля" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -57240,7 +57252,7 @@ msgstr[1] "снотворное" msgstr[2] "снотворное" msgstr[3] "снотворное" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -57297,7 +57309,7 @@ msgstr[1] "макового сиропа от кашля" msgstr[2] "макового сиропа от кашля" msgstr[3] "маковый сироп от кашля" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -57311,8 +57323,7 @@ msgstr[1] "инъекционное профилактическое проти msgstr[2] "инъекционное профилактическое противоядие" msgstr[3] "инъекционное профилактическое противоядие" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " @@ -57321,7 +57332,7 @@ msgstr "" "Вы вводите в руку флакон профилактического противоядия. Вас немного " "подташнивает." -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -57342,7 +57353,7 @@ msgstr[1] "антидепрессант" msgstr[2] "антидепрессант" msgstr[3] "антидепрессант" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -57384,7 +57395,7 @@ msgstr[1] "кровоостанавливающих порошка" msgstr[2] "кровоостанавливающих порошков" msgstr[3] "кровоостанавливающий порошок" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -57418,7 +57429,7 @@ msgstr[1] "антипсихотик" msgstr[2] "антипсихотик" msgstr[3] "антипсихотик" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -57748,12 +57759,12 @@ msgstr[1] "марихуаны" msgstr[2] "марихуаны" msgstr[3] "марихуана" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "Вы курнули травки. Хорошая дурь, гы-гы!" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -57772,7 +57783,7 @@ msgstr[1] "быстродействующее успокоительное" msgstr[2] "быстродействующее успокоительное" msgstr[3] "быстродействующее успокоительное" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -57808,7 +57819,7 @@ msgstr[1] "ватных шарика с антисептиком" msgstr[2] "ватных шариков с антисептиком" msgstr[3] "ватные шарики с антисептиком" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -57825,7 +57836,7 @@ msgstr[1] "антибиотик узкого действия" msgstr[2] "антибиотик узкого действия" msgstr[3] "антибиотик узкого действия" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -57913,7 +57924,7 @@ msgstr[1] "антибиотик широкого действия" msgstr[2] "антибиотик широкого действия" msgstr[3] "антибиотик широкого действия" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -57934,7 +57945,7 @@ msgstr[1] "кокаиновый крем" msgstr[2] "кокаиновый крем" msgstr[3] "кокаиновый крем" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -58554,7 +58565,7 @@ msgstr[1] "сыворотка альфа" msgstr[2] "сыворотка альфа" msgstr[3] "сыворотка альфа" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -58856,10 +58867,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "snail serum" msgid_plural "snail serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "сыворотка улитки" +msgstr[1] "сыворотка улитки" +msgstr[2] "сыворотка улитки" +msgstr[3] "сыворотка улитки" #. ~ Description for snail serum #: lang/json/COMESTIBLE_from_json.py @@ -58867,22 +58878,25 @@ msgid "" "A super-concentrated mutagen with the consistency of snot. You need a " "syringe to inject it… if you really want to?" msgstr "" +"Высококонцентрированный мутаген консистенцией как сопли. Требуется шприц для" +" инъекции… Если вы, конечно, решитесь на это." #: lang/json/COMESTIBLE_from_json.py msgid "batrachian serum" msgid_plural "batrachian serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "сыворотка батрахии" +msgstr[1] "сыворотка батрахии" +msgstr[2] "сыворотка батрахии" +msgstr[3] "сыворотка батрахии" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" +"Высококонцентрированный мутаген, похожий на воду в пруду… в которой движутся" +" тени? Требуется шприц для инъекции… Если вы, конечно, решитесь на это." #: lang/json/COMESTIBLE_from_json.py msgid "troglobite serum" @@ -58968,7 +58982,7 @@ msgstr[1] "мутаген альфа" msgstr[2] "мутаген альфа" msgstr[3] "мутаген альфа" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -59115,30 +59129,31 @@ msgstr[3] "мутаген паука" #: lang/json/COMESTIBLE_from_json.py msgid "batrachian mutagen" msgid_plural "batrachian mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "мутаген батрахии" +msgstr[1] "мутаген батрахии" +msgstr[2] "мутаген батрахии" +msgstr[3] "мутаген батрахии" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." -msgstr "" +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." +msgstr "Тёмный мутаген, словно полный крошечных плавающих головастиков." #: lang/json/COMESTIBLE_from_json.py msgid "snail mutagen" msgid_plural "snail mutagens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "мутаген улитки" +msgstr[1] "мутаген улитки" +msgstr[2] "мутаген улитки" +msgstr[3] "мутаген улитки" #. ~ Description for snail mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" "A mutagen that looks awfully like the slime from an old children's network." -msgstr "" +msgstr "Мутаген, ужасно похожий на слизь из старого детского мультфильма." #: lang/json/COMESTIBLE_from_json.py msgid "troglobite mutagen" @@ -59307,7 +59322,7 @@ msgstr[1] "сосновые орехи" msgstr[2] "сосновые орехи" msgstr[3] "сосновые орехи" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "Горсть вкусных хрустящих орехов из сосновой шишки." @@ -59320,7 +59335,7 @@ msgstr[1] "можжевельник" msgstr[2] "можжевельник" msgstr[3] "можжевельник" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -59337,7 +59352,7 @@ msgstr[1] "очищенные фисташки" msgstr[2] "очищенные фисташки" msgstr[3] "очищенные фисташки" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -59351,7 +59366,7 @@ msgstr[1] "жареные фисташки" msgstr[2] "жареные фисташки" msgstr[3] "жареные фисташки" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "Горсть жареных орехов фисташкового дерева." @@ -59364,7 +59379,7 @@ msgstr[1] "очищенный миндаль" msgstr[2] "очищенный миндаль" msgstr[3] "очищенный миндаль" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "Горсть орехов миндального дерева, очищенных от скорлупы." @@ -59377,7 +59392,7 @@ msgstr[1] "миндальная мякоть" msgstr[2] "миндальная мякоть" msgstr[3] "миндальная мякоть" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -59393,7 +59408,7 @@ msgstr[1] "жареный миндаль" msgstr[2] "жареный миндаль" msgstr[3] "жареный миндаль" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "Горсть жареных орехов миндального дерева." @@ -59406,7 +59421,7 @@ msgstr[1] "кешью" msgstr[2] "кешью" msgstr[3] "кешью" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "Горстка солёных кешью." @@ -59419,7 +59434,7 @@ msgstr[1] "очищенных ореха пекан" msgstr[2] "очищенных орехов пекан" msgstr[3] "очищенные орехи пекан" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -59436,7 +59451,7 @@ msgstr[1] "жареных ореха пекан" msgstr[2] "жареных орехов пекан" msgstr[3] "жареные орехи пекан" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "Горсть жареных орехов дерева пекан." @@ -59449,7 +59464,7 @@ msgstr[1] "очищенный арахис" msgstr[2] "очищенный арахис" msgstr[3] "очищенный арахис" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "Солёный арахис без скорлупы." @@ -59462,7 +59477,7 @@ msgstr[1] "буковых ореха" msgstr[2] "буковых орехов" msgstr[3] "буковые орехи" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "Горсть твёрдых заострённых орехов букового дерева." @@ -59475,7 +59490,7 @@ msgstr[1] "очищенных грецких ореха" msgstr[2] "очищенных грецких орехов" msgstr[3] "очищенные грецкие орехи" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -59490,7 +59505,7 @@ msgstr[1] "жареных грецких ореха" msgstr[2] "жареных грецких орехов" msgstr[3] "жареные грецкие орехи" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "Горсть жареных орехов грецкого дерева." @@ -59503,7 +59518,7 @@ msgstr[1] "очищенных каштана" msgstr[2] "очищенных каштанов" msgstr[3] "очищенные каштаны" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -59519,7 +59534,7 @@ msgstr[1] "жареные каштаны" msgstr[2] "жареные каштаны" msgstr[3] "жареные каштаны" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "Горсть жареных орехов каштанового дерева." @@ -59532,7 +59547,7 @@ msgstr[1] "очищенный фундук" msgstr[2] "очищенный фундук" msgstr[3] "очищенный фундук" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -59547,7 +59562,7 @@ msgstr[1] "жареные эдамамэ" msgstr[2] "жареные эдамамэ" msgstr[3] "жареные эдамамэ" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "Жареные эдамамэ, полезная закуска." @@ -59560,7 +59575,7 @@ msgstr[1] "жареные соевые бобы" msgstr[2] "жареные соевые бобы" msgstr[3] "жареные соевые бобы" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "Жареные соевые бобы, иногда называемые соевыми орехами." @@ -59573,7 +59588,7 @@ msgstr[1] "жаренный фундук" msgstr[2] "жаренный фундук" msgstr[3] "жаренный фундук" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "Горсть жареных орехов лещины." @@ -59586,7 +59601,7 @@ msgstr[1] "очищенные орехи гикори" msgstr[2] "очищенные орехи гикори" msgstr[3] "очищенные орехи гикори" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -59601,7 +59616,7 @@ msgstr[1] "жареных ореха гикори" msgstr[2] "жареных орехов гикори" msgstr[3] "жареные орехи гикори" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "Горсть жареных орехов дерева гикори." @@ -59670,12 +59685,14 @@ msgstr[1] "жёлудя" msgstr[2] "жёлудей" msgstr[3] "жёлуди" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " "taste terribly bitter and can upset your stomach." msgstr "" +"Горстка жёлудей, ещё в скорлупе. Белки их любят, но они ужасно горькие на " +"вкус и могут вызвать несварение." #: lang/json/COMESTIBLE_from_json.py msgid "roasted acorns" @@ -59685,7 +59702,7 @@ msgstr[1] "жареных жёлудя" msgstr[2] "жареных жёлудя" msgstr[3] "жареные жёлуди" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "Горсть жареных орехов дуба." @@ -59698,7 +59715,7 @@ msgstr[1] "желудевая мука" msgstr[2] "желудевая мука" msgstr[3] "желудевая мука" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -59715,7 +59732,7 @@ msgstr[1] "фуа-гра" msgstr[2] "фуа-гра" msgstr[3] "фуа-гра" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -59729,7 +59746,7 @@ msgstr[1] "печень с луком" msgstr[2] "печень с луком" msgstr[3] "печень с луком" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "Традиционное блюдо из печени." @@ -59798,7 +59815,7 @@ msgstr[1] "паштет из печени" msgstr[2] "паштет из печени" msgstr[3] "паштет из печени" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -59919,10 +59936,10 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "artifical sausage casing" msgid_plural "artifical sausage casings" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "искусственная оболочка для сосиски" +msgstr[1] "искусственные оболочки для сосиски" +msgstr[2] "искусственных оболочек для сосиски" +msgstr[3] "искусственные оболочки для сосиски" #. ~ Description for artifical sausage casing #: lang/json/COMESTIBLE_from_json.py @@ -59930,6 +59947,8 @@ msgid "" "Sausage casings made from plastic bags. Ready to be used for forming meat " "products." msgstr "" +"Оболочки для сосисок из пластиковых пакетов. Готовы для приготовления " +"мясного продукта." #: lang/json/COMESTIBLE_from_json.py msgid "homemade hot dog" @@ -60068,7 +60087,7 @@ msgstr[1] "желе марло" msgstr[2] "желе марло" msgstr[3] "желе марло" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -60106,7 +60125,7 @@ msgstr[1] "дрожжи" msgstr[2] "дрожжи" msgstr[3] "дрожжи" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -60122,7 +60141,7 @@ msgstr[1] "костная мука" msgstr[2] "костная мука" msgstr[3] "костная мука" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -60137,7 +60156,7 @@ msgstr[1] "порошковый желатин" msgstr[2] "порошковый желатин " msgstr[3] "порошковый желатин" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -60153,7 +60172,7 @@ msgstr[1] "свежий желатин" msgstr[2] "свежий желатин" msgstr[3] "свежий желатин" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "Свежий" @@ -60166,7 +60185,7 @@ msgstr[1] "заражённые костные муки" msgstr[2] "заражённой костной муки" msgstr[3] "заражённая костная мука" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "Сероватая костная мука, полученная из сгнивших костей." @@ -60179,7 +60198,7 @@ msgstr[1] "хитиновых порошка" msgstr[2] "хитиновых порошков" msgstr[3] "хитиновый порошок" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -60238,7 +60257,7 @@ msgstr[1] "сушёных бобов" msgstr[2] "сушёных бобов" msgstr[3] "сушёные бобы" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -60255,7 +60274,7 @@ msgstr[1] "приготовленных бобов" msgstr[2] "приготовленных бобов" msgstr[3] "приготовленные бобы" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "Плотная порция приготовленных бобов с севера." @@ -60268,8 +60287,8 @@ msgstr[1] "тофу" msgstr[2] "тофу" msgstr[3] "тофу" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -60294,7 +60313,7 @@ msgstr[1] "сушёного тофу" msgstr[2] "сушёного тофу" msgstr[3] "сушёный тофу" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -60309,7 +60328,7 @@ msgstr[1] "соевых бобов" msgstr[2] "соевых бобов" msgstr[3] "соевые бобы" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -60343,7 +60362,7 @@ msgstr[1] "сушёной чечевицы" msgstr[2] "сушёной чечевицы" msgstr[3] "сушёная чечевица" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -60359,7 +60378,7 @@ msgstr[1] "Сядь-и-поешь - Вкусная Еда™" msgstr[2] "Сядь-и-поешь - Вкусная Еда™" msgstr[3] "Сядь-и-поешь - Вкусная Еда™" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -60377,7 +60396,7 @@ msgstr[1] "Правильная закуска от Сядь-и-поешь™" msgstr[2] "Правильная закуска от Сядь-и-поешь™" msgstr[3] "Правильная закуска от Сядь-и-поешь™" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "Настоящая пища, которую можно носить в кармане!" @@ -60390,7 +60409,7 @@ msgstr[1] "приготовленной чечевицы" msgstr[2] "приготовленной чечевицы" msgstr[3] "приготовленная чечевица" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "Аппетитная приготовленная чечевица. Пресноватая, но питательная." @@ -60403,7 +60422,7 @@ msgstr[1] "молотого кофе" msgstr[2] "молотого кофе" msgstr[3] "молотый кофе" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -60420,7 +60439,7 @@ msgstr[1] "молотых кофейных стручка" msgstr[2] "молотых кофейных стручков" msgstr[3] "молотые кофейные стручки" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -60437,7 +60456,7 @@ msgstr[1] "засахаренного мёда" msgstr[2] "засахаренного мёда" msgstr[3] "засахаренный мёд" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -60488,7 +60507,7 @@ msgstr[1] "корма для скота" msgstr[2] "кормов для скота" msgstr[3] "корм для скота" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -60505,7 +60524,7 @@ msgstr[1] "птичьего корма" msgstr[2] "птичьего корма" msgstr[3] "птичий корм" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -60522,7 +60541,7 @@ msgstr[1] "влажный собачий корм" msgstr[2] "влажный собачий корм" msgstr[3] "влажный собачий корм" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -60539,7 +60558,7 @@ msgstr[1] "сухой собачий корм" msgstr[2] "сухой собачий корм" msgstr[3] "сухой собачий корм" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -60556,7 +60575,7 @@ msgstr[1] "влажный кошачий корм" msgstr[2] "влажный кошачий корм" msgstr[3] "влажный кошачий корм" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -60573,7 +60592,7 @@ msgstr[1] "сухой кошачий корм" msgstr[2] "сухой кошачий корм" msgstr[3] "сухой кошачий корм" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -60737,7 +60756,7 @@ msgstr[1] "растворимый кофе" msgstr[2] "растворимый кофе" msgstr[3] "растворимый кофе" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -60788,8 +60807,7 @@ msgstr[1] "протеиновый напиток" msgstr[2] "протеиновый напиток" msgstr[3] "протеиновый напиток" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" @@ -60798,7 +60816,7 @@ msgstr[1] "напиток из зелёного сойлента" msgstr[2] "напиток из зелёного сойлента" msgstr[3] "напиток из зелёного сойлента" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -60808,14 +60826,11 @@ msgstr[1] "напиток из зеленоватого сойлента" msgstr[2] "напиток из зеленоватого сойлента" msgstr[3] "напиток из зеленоватого сойлента" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -60842,8 +60857,7 @@ msgstr[1] "протеиновых порошока" msgstr[2] "протеиновых порошков" msgstr[3] "протеиновый порошок" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" @@ -60852,7 +60866,7 @@ msgstr[1] "сойлентовый зеленый порошок" msgstr[2] "сойлентовый зеленый порошок" msgstr[3] "сойлентовый зеленый порошок" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -60862,7 +60876,7 @@ msgstr[1] "зеленый сойлент" msgstr[2] "зеленый сойлент" msgstr[3] "зеленый сойлент" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -60902,8 +60916,7 @@ msgstr[1] "протеиновый коктейль" msgstr[2] "протеиновый коктейль" msgstr[3] "протеиновый коктейль" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" @@ -60912,7 +60925,7 @@ msgstr[1] "коктейль из зелёного сойлента" msgstr[2] "коктейль из зелёного сойлента" msgstr[3] "коктейль из зелёного сойлента" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -60939,7 +60952,7 @@ msgstr[1] "обогащённый протеиновый коктейль" msgstr[2] "обогащённый протеиновый коктейль" msgstr[3] "обогащённый протеиновый коктейль" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -60949,7 +60962,7 @@ msgstr[1] "обогащённый коктейль из зелёного сой msgstr[2] "обогащённый коктейль из зелёного сойлента" msgstr[3] "обогащённый коктейль из зелёного сойлента" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -61032,7 +61045,7 @@ msgstr[1] "черника" msgstr[2] "черника" msgstr[3] "черника" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -61047,7 +61060,7 @@ msgstr[1] "клубника" msgstr[2] "клубника" msgstr[3] "клубника" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "Сладкая сочная ягода, часто встречается на диких полях." @@ -61060,7 +61073,7 @@ msgstr[1] "клюква" msgstr[2] "клюква" msgstr[3] "клюква" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "Кислые красные ягоды. Полезны для здоровья." @@ -61073,7 +61086,7 @@ msgstr[1] "малина" msgstr[2] "малина" msgstr[3] "малина" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "Сладкая красная ягода." @@ -61086,7 +61099,7 @@ msgstr[1] "голубика" msgstr[2] "голубика" msgstr[3] "голубика" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "Голубику часто путают с черникой." @@ -61099,7 +61112,7 @@ msgstr[1] "шелковица" msgstr[2] "шелковица" msgstr[3] "шелковица" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -61117,7 +61130,7 @@ msgstr[1] "бузина" msgstr[2] "бузина" msgstr[3] "бузина" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -61132,7 +61145,7 @@ msgstr[1] "шиповника" msgstr[2] "шиповника" msgstr[3] "шиповник" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "Плод опылённого цветка шиповника." @@ -61188,7 +61201,7 @@ msgstr[1] "вишня" msgstr[2] "вишня" msgstr[3] "вишня" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "Красный сладкий плод, растущий на деревьях." @@ -61215,7 +61228,7 @@ msgstr[1] "виноград" msgstr[2] "виноград" msgstr[3] "виноград" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "Гроздь сочного винограда." @@ -61293,7 +61306,7 @@ msgstr[1] "ежевики" msgstr[2] "ежевики" msgstr[3] "ежевика" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "Тёмная родственница малины." @@ -61361,7 +61374,7 @@ msgstr[1] "абрикоса" msgstr[2] "абрикосов" msgstr[3] "абрикосы" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "Гладкокожий фрукт, похожий на персик." @@ -61412,7 +61425,7 @@ msgstr[1] "монарда" msgstr[2] "монарда" msgstr[3] "монарда" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -61427,7 +61440,7 @@ msgstr[1] "брокколи" msgstr[2] "брокколи" msgstr[3] "брокколи" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "Слегка жёсткая, но очень вкусная." @@ -61440,7 +61453,7 @@ msgstr[1] "гречки" msgstr[2] "гречки" msgstr[3] "гречка" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -61470,7 +61483,7 @@ msgstr[1] "шпината" msgstr[2] "шпината" msgstr[3] "шпинат" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "Пучок листьев шпината." @@ -61532,7 +61545,7 @@ msgstr[1] "сельдерей" msgstr[2] "сельдерей" msgstr[3] "сельдерей" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "Ни вкусный, ни очень питательный, но он хорошо сочетается в салате." @@ -61562,7 +61575,7 @@ msgstr[1] "кукурузные ядра" msgstr[2] "кукурузные ядра" msgstr[3] "кукурузные ядра" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "Восхитительные золотые ядрышки." @@ -61575,7 +61588,7 @@ msgstr[1] "очищенных початка" msgstr[2] "очищенных початков" msgstr[3] "очищенные початки" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -61653,7 +61666,7 @@ msgstr[1] "козлобородника" msgstr[2] "козлобородников" msgstr[3] "козлобородники" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -61671,7 +61684,7 @@ msgstr[1] "цикорий" msgstr[2] "цикорий" msgstr[3] "цикорий" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -61825,7 +61838,7 @@ msgstr[1] "сырые кукурузы для попкорна" msgstr[2] "сырой кукурузы для попкорна" msgstr[3] "сырые кукурузы для попкорна" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -61874,7 +61887,7 @@ msgstr[1] "пучка хрена" msgstr[2] "пучков хрена" msgstr[3] "пучки хрена" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -61891,7 +61904,7 @@ msgstr[1] "одуванчика" msgstr[2] "одуванчиков" msgstr[3] "одуванчики" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -61908,7 +61921,7 @@ msgstr[1] "лопухи" msgstr[2] "лопухи" msgstr[3] "лопухи" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -62037,7 +62050,7 @@ msgstr[1] "диких овощей" msgstr[2] "диких овощей" msgstr[3] "дикие овощи" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -62080,7 +62093,7 @@ msgstr[1] "сырых бобов" msgstr[2] "сырых бобов" msgstr[3] "сырые бобы" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -62097,7 +62110,7 @@ msgstr[1] "сырой чечевицы" msgstr[2] "сырой чечевицы" msgstr[3] "сырая чечевица" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "Сырая неприготовленная чечевица. Её можно приготовить." @@ -62110,7 +62123,7 @@ msgstr[1] "побега папоротника" msgstr[2] "побегов папоротника" msgstr[3] "побеги папоротника" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -62157,8 +62170,7 @@ msgstr[1] "шикарных сэндвича" msgstr[2] "шикарных сэндвичей" msgstr[3] "шикарные сэндвичи" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -62174,6 +62186,34 @@ msgid "" "nutritious!" msgstr "Сэндвич из мяса, овощей и сыра с приправами. Вкусно и сытно!" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "сэндвич «рубен»" +msgstr[1] "сэндвича «рубен»" +msgstr[2] "сэндвичей «рубен»" +msgstr[3] "сэндвичи «рубен»" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "сэндвич «хрюбен»" +msgstr[1] "сэндвича «хрюбен»" +msgstr[2] "сэндвичей «хрюбен»" +msgstr[3] "сэндвичи «хрюбен»" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" +"Классика до катаклизма, вероятно, сделанная со значительными заменами. " +"Ключевые компоненты - фирменный соус и квашеная капуста с хлебом, мясом и " +"сыром, обжаренными на сковороде." + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -62248,7 +62288,7 @@ msgstr[1] "волшебного хлеба" msgstr[2] "волшебного хлеба" msgstr[3] "волшебный хлеб" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -62308,8 +62348,7 @@ msgstr[1] "мясных сэндвича" msgstr[2] "мясных сэндвичей" msgstr[3] "мясные сэндвичи" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" @@ -62318,8 +62357,8 @@ msgstr[1] "«ленивых» сэндвича" msgstr[2] "«ленивых» сэндвичей" msgstr[3] "«ленивые» сэндвичи" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" @@ -62328,10 +62367,8 @@ msgstr[1] "сэндвича из сатира" msgstr[2] "сэндвичей из сатира" msgstr[3] "сэндвичи из сатира" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -62478,7 +62515,7 @@ msgstr[1] "грибных спор" msgstr[2] "грибных спор" msgstr[3] "грибные споры" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "Немного грибных спор." @@ -62491,7 +62528,7 @@ msgstr[1] "корневища хмеля" msgstr[2] "корневищ хмеля" msgstr[3] "корневища хмеля" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "Корни хмеля для выращивания." @@ -62508,7 +62545,7 @@ msgstr[1] "семян ежевики" msgstr[2] "семян ежевики" msgstr[3] "семена ежевики" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "Несколько семян ежевики." @@ -62525,7 +62562,7 @@ msgstr[1] "семян черники" msgstr[2] "семян черники" msgstr[3] "семена черники" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "Несколько семян черники." @@ -62542,7 +62579,7 @@ msgstr[1] "семян клюквы" msgstr[2] "семян клюквы" msgstr[3] "семена клюквы" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "Несколько семян клюквы." @@ -62559,7 +62596,7 @@ msgstr[1] "семена голубики" msgstr[2] "семян голубики" msgstr[3] "семена голубики" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "Несколько семян голубики." @@ -62576,7 +62613,7 @@ msgstr[1] "семян шелковицы" msgstr[2] "семян шелковицы" msgstr[3] "семена шелковицы" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "Несколько семян шелковицы." @@ -62593,7 +62630,7 @@ msgstr[1] "семян бузины" msgstr[2] "семян бузины" msgstr[3] "семена бузины" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "Несколько семян бузины." @@ -62610,7 +62647,7 @@ msgstr[1] "семян малины" msgstr[2] "семян малины" msgstr[3] "семена малины" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "Несколько семян малины." @@ -62627,7 +62664,7 @@ msgstr[1] "семян клубники" msgstr[2] "семян клубники" msgstr[3] "семена клубники" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "Несколько семян клубники." @@ -62644,7 +62681,7 @@ msgstr[1] "семян винограда" msgstr[2] "семян винограда" msgstr[3] "семена винограда" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "Несколько семян винограда." @@ -62661,7 +62698,7 @@ msgstr[1] "семян шиповника" msgstr[2] "семян шиповника" msgstr[3] "семена шиповника" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "Несколько семян шиповника." @@ -62678,7 +62715,7 @@ msgstr[1] "семян табака" msgstr[2] "семян табака" msgstr[3] "семена табака" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "Несколько семян табака." @@ -62695,7 +62732,7 @@ msgstr[1] "семян ячменя" msgstr[2] "семян ячменя" msgstr[3] "семена ячменя" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "Несколько семян ячменя." @@ -62708,7 +62745,7 @@ msgstr[1] "семян сахарной свёклы" msgstr[2] "семян сахарной свёклы" msgstr[3] "семена сахарной свёклы" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "Несколько семян сахарной свёклы." @@ -62721,7 +62758,7 @@ msgstr[1] "семян салата" msgstr[2] "семян салата" msgstr[3] "семена салата" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "Несколько семян салата." @@ -62734,7 +62771,7 @@ msgstr[1] "семян капусты" msgstr[2] "семян капусты" msgstr[3] "семена капусты" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "Несколько семян белокочанной капусты." @@ -62747,7 +62784,7 @@ msgstr[1] "семян томата" msgstr[2] "семян томата" msgstr[3] "семена томата" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "Несколько семян томата." @@ -62760,7 +62797,7 @@ msgstr[1] "семян хлопка" msgstr[2] "семян хлопка" msgstr[3] "семена хлопка" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "Несколько семян хлопка. Из них можно выжать пищевое масло." @@ -62777,7 +62814,7 @@ msgstr[1] "семян брокколи" msgstr[2] "семян брокколи" msgstr[3] "семена брокколи" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "Несколько семян брокколи." @@ -62790,7 +62827,7 @@ msgstr[1] "семян цуккини" msgstr[2] "семян цуккини" msgstr[3] "семена цуккини" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "Несколько семян цуккини." @@ -62803,7 +62840,7 @@ msgstr[1] "семян лука" msgstr[2] "семян лука" msgstr[3] "семена лука" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "Несколько семян лука." @@ -62816,7 +62853,7 @@ msgstr[1] "семян чеснока" msgstr[2] "семян чеснока" msgstr[3] "семена чеснока" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "Несколько семян чеснока." @@ -62833,7 +62870,7 @@ msgstr[1] "семян рогоза" msgstr[2] "семян рогоза" msgstr[3] "семена рогоза" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "Немного семян рогоза." @@ -62850,7 +62887,7 @@ msgstr[1] "семян георгина" msgstr[2] "семян георгина" msgstr[3] "семена георгина" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "Немного семян георгина." @@ -62867,7 +62904,7 @@ msgstr[1] "семян козлобородника" msgstr[2] "семян козлобородника" msgstr[3] "семена козлобородника" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "Немного семян козлобородника." @@ -62880,7 +62917,7 @@ msgstr[1] "семян цикория" msgstr[2] "семян цикория" msgstr[3] "семена цикория" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "Немного семян цикория." @@ -62893,7 +62930,7 @@ msgstr[1] "семян диких кореньев" msgstr[2] "семян диких кореньев" msgstr[3] "семена диких кореньев" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "Несколько семян белых цветов." @@ -62906,7 +62943,7 @@ msgstr[1] "семян декоративных растений" msgstr[2] "семян декоративных растений" msgstr[3] "семена декоративных растений" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -62927,7 +62964,7 @@ msgstr[1] "семян кактуса" msgstr[2] "семян кактуса" msgstr[3] "семена кактуса" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "Несколько семян кактуса." @@ -62957,7 +62994,7 @@ msgstr[1] "семян моркови" msgstr[2] "семян моркови" msgstr[3] "семена моркови" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "Несколько семян моркови." @@ -62970,7 +63007,7 @@ msgstr[1] "семян кукурузы" msgstr[2] "семян кукурузы" msgstr[3] "семена кукурузы" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "Немного семян кукурузы." @@ -62987,7 +63024,7 @@ msgstr[1] "семян перца чили" msgstr[2] "семян перца чили" msgstr[3] "семена перца чили" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "Несколько семян перца чили." @@ -63000,7 +63037,7 @@ msgstr[1] "семян огурца" msgstr[2] "семян огурца" msgstr[3] "семена огурца" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "Несколько семян огурца." @@ -63030,7 +63067,7 @@ msgstr[1] "семян конопли" msgstr[2] "семян конопли" msgstr[3] "семена конопли" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -63070,7 +63107,7 @@ msgstr[1] "семян фасоли" msgstr[2] "семян фасоли" msgstr[3] "семена фасоли" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "Сырые неприготовленные бобы, готовые к посадке." @@ -63087,7 +63124,7 @@ msgstr[1] "семян соевых бобов" msgstr[2] "семян соевых бобов" msgstr[3] "семена соевых бобов" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "Несколько семян соевых бобов." @@ -63096,7 +63133,7 @@ msgstr "Несколько семян соевых бобов." msgid "soybean" msgstr "соевый боб" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "Сырая неприготовленная чечевица, готовая к посадке." @@ -63113,7 +63150,7 @@ msgstr[1] "семян тимьяна" msgstr[2] "семян тимьяна" msgstr[3] "семена тимьяна" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "Несколько семян тимьяна." @@ -63134,7 +63171,7 @@ msgstr[1] "семян канолы" msgstr[2] "семян канолы" msgstr[3] "семена канолы" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "Несколько семян канолы. Из них можно выжать масло." @@ -63147,7 +63184,7 @@ msgstr[1] "семян тыквы" msgstr[2] "семян тыквы" msgstr[3] "семена тыквы" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "Сырые тыквенные семечки. Их можно пожарить и съесть." @@ -63160,7 +63197,7 @@ msgstr[1] "семян подсолнечника" msgstr[2] "семян подсолнечника" msgstr[3] "семена подсолнечника" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "Несколько семян подсолнечника. Из них можно выжать масло." @@ -63182,7 +63219,7 @@ msgstr[1] "семян кендыря" msgstr[2] "семян кендыря" msgstr[3] "семена кендыря" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "Несколько семян кендыря." @@ -63195,7 +63232,7 @@ msgstr[1] "семян монарды" msgstr[2] "семян монарды" msgstr[3] "семена монарды" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "Несколько семян монарды." @@ -63208,7 +63245,7 @@ msgstr[1] "семян полыни" msgstr[2] "семян полыни" msgstr[3] "семена полыни" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "Несколько семян полыни." @@ -63221,7 +63258,7 @@ msgstr[1] "семян гречихи" msgstr[2] "семян гречихи" msgstr[3] "семена гречихи" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "Несколько семян гречихи." @@ -63234,7 +63271,7 @@ msgstr[1] "семян дикой травы" msgstr[2] "семян дикой травы" msgstr[3] "семена дикой травы" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "Несколько семян диких трав." @@ -63251,7 +63288,7 @@ msgstr[1] "стеблей диких овощей" msgstr[2] "стеблей диких овощей" msgstr[3] "стебли диких овощей" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "Несколько черешков диких овощей." @@ -63268,7 +63305,7 @@ msgstr[1] "семян одуванчика" msgstr[2] "семян одуванчика" msgstr[3] "семена одуванчика" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "Несколько семян одуванчика." @@ -63285,7 +63322,7 @@ msgstr[1] "семена лопуха" msgstr[2] "семена лопуха" msgstr[3] "семена лопуха" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "Несколько семян лопуха." @@ -63302,7 +63339,7 @@ msgstr[1] "черешка ревеня" msgstr[2] "черешков ревеня" msgstr[3] "черешок ревеня" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "Несколько черешков ревеня." @@ -63315,7 +63352,7 @@ msgstr[1] "споры сморчка" msgstr[2] "спор сморчка" msgstr[3] "спора сморчка" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "Несколько спор сморчка." @@ -63328,7 +63365,7 @@ msgstr[1] "семян дурмана" msgstr[2] "семян дурмана" msgstr[3] "семена дурмана" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -63352,7 +63389,7 @@ msgstr[1] "семян сельдерея" msgstr[2] "семян сельдерея" msgstr[3] "семена сельдерея" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "Несколько семян сельдерея." @@ -63365,7 +63402,7 @@ msgstr[1] "семян овса" msgstr[2] "семян овса" msgstr[3] "семена овса" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "Несколько семян овса." @@ -63386,7 +63423,7 @@ msgstr[1] "семян пшеницы" msgstr[2] "семян пшеницы" msgstr[3] "семена пшеницы" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "Несколько семян пшеницы." @@ -63407,7 +63444,7 @@ msgstr[1] "жареных семечек" msgstr[2] "жареных семечек" msgstr[3] "жареные семечки" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -63442,7 +63479,7 @@ msgstr[1] "кофейных зёрен" msgstr[2] "кофейных зёрен" msgstr[3] "кофейные зёрна" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "Немного кофейных зёрен, можно обжарить." @@ -63455,7 +63492,7 @@ msgstr[1] "обжаренных кофейных зёрен" msgstr[2] "обжаренных кофейных зёрен" msgstr[3] "обжаренные кофейные зёрна" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "Немного кофейных зёрен, можно размолоть в порошок." @@ -63468,7 +63505,7 @@ msgstr[1] "семян ромашки" msgstr[2] "семян ромашки" msgstr[3] "семена ромашки" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "Немного семян ромашки." @@ -63485,7 +63522,7 @@ msgstr[1] "семена молочая" msgstr[2] "семена молочая" msgstr[3] "семена молочая" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "Немного семян молочая." @@ -63502,7 +63539,7 @@ msgstr[1] "зерна кукурузы для попкорна" msgstr[2] "зерна кукурузы для попкорна" msgstr[3] "зерна кукурузы для попкорна" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "Немного семян кукурузы для попкорна." @@ -63515,7 +63552,7 @@ msgstr[1] "семена хрена" msgstr[2] "семена хрена" msgstr[3] "семена хрена" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "Немного семян хрена." @@ -63528,7 +63565,7 @@ msgstr[1] "семена горчицы" msgstr[2] "семена горчицы" msgstr[3] "семена горчицы" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "Немного горчичных зёрен, можно размолоть в горчичный порошок." @@ -63541,7 +63578,7 @@ msgstr[1] "семена болгарского перца" msgstr[2] "семена болгарского перца" msgstr[3] "семена болгарского перца" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "Несколько семян болгарского перца." @@ -63567,8 +63604,7 @@ msgstr[1] "костный бульон" msgstr[2] "костный бульон" msgstr[3] "костный бульон" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -63604,7 +63640,7 @@ msgstr[1] "мясной суп" msgstr[2] "мясной суп" msgstr[3] "мясной суп" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" @@ -63613,8 +63649,7 @@ msgstr[1] "суп из «дурака»" msgstr[2] "суп из «дурака»" msgstr[3] "суп из «дурака»" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -63662,8 +63697,7 @@ msgstr[1] "карри с мясом" msgstr[2] "карри с мясом" msgstr[3] "карри с мясом" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -63685,10 +63719,8 @@ msgstr[1] "мясная солянка" msgstr[2] "мясная солянка" msgstr[3] "мясная солянка" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -63765,7 +63797,7 @@ msgstr[1] "куриных супа с клёцками" msgstr[2] "куриных супов с клёцками" msgstr[3] "куриный суп с клёцками" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "Суп с кусочками курицы и шариками из теста. Неплохо." @@ -63795,7 +63827,7 @@ msgstr[1] "молотого перца чили" msgstr[2] "молотого перца чили" msgstr[3] "молотый перец чили" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -63811,7 +63843,7 @@ msgstr[1] "острый соус" msgstr[2] "острый соус" msgstr[3] "острый соус" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -63828,7 +63860,7 @@ msgstr[1] "корицы" msgstr[2] "корицы" msgstr[3] "корица" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "Молотая кора коричного дерева со сладким и слегка пряным ароматом." @@ -63841,7 +63873,7 @@ msgstr[1] "смеси карри" msgstr[2] "смесей карри" msgstr[3] "смесь карри" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -63859,7 +63891,7 @@ msgstr[1] "чёрного перца" msgstr[2] "чёрного перца" msgstr[3] "чёрный перец" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "Чёрные пряные ягоды с острым вкусом." @@ -63872,7 +63904,7 @@ msgstr[1] "соли" msgstr[2] "соли" msgstr[3] "соль" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -63889,7 +63921,7 @@ msgstr[1] "итальянских приправы" msgstr[2] "итальянских приправ" msgstr[3] "итальянская приправа" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -63903,7 +63935,7 @@ msgstr[1] "приправленной соли" msgstr[2] "приправленной соли" msgstr[3] "приправленная соль" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "Соль вместе с ароматной смесью трав и специй." @@ -63916,7 +63948,7 @@ msgstr[1] "сахара" msgstr[2] "сахара" msgstr[3] "сахар" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -63933,7 +63965,7 @@ msgstr[1] "кондитерской посыпки" msgstr[2] "кондитерской посыпки" msgstr[3] "кондитерская посыпка" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -63953,7 +63985,7 @@ msgstr[1] "диких трав" msgstr[2] "диких трав" msgstr[3] "дикие травы" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -63970,7 +64002,7 @@ msgstr[1] "соевых соуса" msgstr[2] "соевых соусов" msgstr[3] "соевый соус" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "Солёный ферментированный соевой соус." @@ -63988,7 +64020,7 @@ msgstr[1] "горчичный порошок" msgstr[2] "горчичный порошок" msgstr[3] "горчичный порошок" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "Пахучий желтый порошок. В данной форме не съедобен." @@ -64052,7 +64084,7 @@ msgstr[1] "клейстера" msgstr[2] "клейстеров" msgstr[3] "клейстер" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -64069,7 +64101,7 @@ msgstr[1] "тушёной зелени одуванчиков" msgstr[2] "тушёной зелени одуванчиков" msgstr[3] "тушёная зелень одуванчиков" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "Приготовленные листья диких одуванчиков. Вкусно и питательно." @@ -64082,7 +64114,7 @@ msgstr[1] "жареных одуванчиков" msgstr[2] "жареных одуванчиков" msgstr[3] "жареные одуванчики" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -64097,7 +64129,7 @@ msgstr[1] "тушеные листья лопуха" msgstr[2] "тушеные листья лопуха" msgstr[3] "тушеные листья лопуха" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "Приготовленные листья лопуха. Вкусно и питательно." @@ -64110,7 +64142,7 @@ msgstr[1] "жареные листья лопуха" msgstr[2] "жареные листья лопуха" msgstr[3] "жареные листья лопуха" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -64157,7 +64189,7 @@ msgstr[1] "варёных диких овощей" msgstr[2] "варёных диких овощей" msgstr[3] "варёные дикие овощи" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "Сваренные дикие съедобные овощи. Любопытная смесь запахов и вкусов." @@ -64184,7 +64216,7 @@ msgstr[1] "приготовленной гречки" msgstr[2] "приготовленной гречки" msgstr[3] "приготовленная гречка" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -64199,7 +64231,7 @@ msgstr[1] "консервированная кукуруза" msgstr[2] "консервированная кукуруза" msgstr[3] "консервированная кукуруза" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "Консервированная кукуруза в воде. Съешь всё!" @@ -64212,7 +64244,7 @@ msgstr[1] "варёная кукуруза" msgstr[2] "варёная кукуруза" msgstr[3] "варёная кукуруза" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "Кукурузный початок, приготовленный в фольге." @@ -64225,7 +64257,7 @@ msgstr[1] "жареная кукуруза" msgstr[2] "жареная кукуруза" msgstr[3] "жареная кукуруза" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "Кукуруза, обжаренная с травами и специями." @@ -64238,7 +64270,7 @@ msgstr[1] "мамалыга" msgstr[2] "мамалыга" msgstr[3] "мамалыга" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -64255,7 +64287,7 @@ msgstr[1] "кукурузная мука" msgstr[2] "кукурузная мука" msgstr[3] "кукурузная мука" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "Жёлтая кукурузная мука, применяемая при готовке." @@ -64268,7 +64300,7 @@ msgstr[1] "тушёной фасоли с овощами" msgstr[2] "тушёной фасоли с овощами" msgstr[3] "тушёная фасоль с овощами" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "Приготовленная на медленном огне фасоль с овощами. Вкусно и сытно." @@ -64281,7 +64313,7 @@ msgstr[1] "сухого риса" msgstr[2] "сухого риса" msgstr[3] "сухой рис" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -64298,7 +64330,7 @@ msgstr[1] "приготовленного риса" msgstr[2] "приготовленного риса" msgstr[3] "приготовленный рис" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "Сытная порция приготовленного длиннозёрного белого риса." @@ -64311,7 +64343,7 @@ msgstr[1] "жареного риса" msgstr[2] "жареного риса" msgstr[3] "жареный рис" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "Восхитительный жареный рис с овощами. Аппетитный и очень сытный." @@ -64324,7 +64356,7 @@ msgstr[1] "бобов с рисом" msgstr[2] "бобов с рисом" msgstr[3] "бобы с рисом" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -64339,7 +64371,7 @@ msgstr[1] "жареного риса с тофу" msgstr[2] "жареного риса с тофу" msgstr[3] "жареный рис с тофу" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "Восхитительный рис, жареный с тофу и овощами. Вкусный и очень сытный." @@ -64352,7 +64384,7 @@ msgstr[1] "тофу стир-фрай" msgstr[2] "тофу стир-фрай" msgstr[3] "тофу стир-фрай" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -64369,7 +64401,7 @@ msgstr[1] "шикарного риса с овощами и бобами" msgstr[2] "шикарного риса с овощами и бобами" msgstr[3] "шикарный рис с овощами и бобами" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -64458,7 +64490,7 @@ msgstr[1] "соус песто" msgstr[2] "соус песто" msgstr[3] "соус песто" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -64506,7 +64538,7 @@ msgstr[1] "спагетти с соусом песто" msgstr[2] "спагетти с соусом песто" msgstr[3] "спагетти с соусом песто" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "Спагетти, щедро приправленные соусом песто. Ням!" @@ -64534,7 +64566,7 @@ msgstr[1] "обжаренные с луком квашёнки" msgstr[2] "обжаренных с луком квашёнок" msgstr[3] "обжаренная с луком квашёнка" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -64583,7 +64615,7 @@ msgstr[1] "сушёные кукурузные ядра" msgstr[2] "сушёные кукурузные ядра" msgstr[3] "сушёные кукурузные ядра" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "Горсть сушёных кукурузных ядер." @@ -64613,7 +64645,7 @@ msgstr[1] "регидрированные кукурузные ядра" msgstr[2] "регидрированные кукурузные ядра" msgstr[3] "регидрированные кукурузные ядра" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -64711,7 +64743,7 @@ msgstr[1] "риса для суши" msgstr[2] "риса для суши" msgstr[3] "рис для суши" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -64726,7 +64758,7 @@ msgstr[1] "онигири" msgstr[2] "онигири" msgstr[3] "онигири" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -64743,7 +64775,7 @@ msgstr[1] "хосомаки с овощами" msgstr[2] "хосомаки с овощами" msgstr[3] "хосомаки с овощами" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -64777,7 +64809,7 @@ msgstr[1] "квашёнки" msgstr[2] "квашёнок" msgstr[3] "квашёнка" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -64808,7 +64840,7 @@ msgstr[1] "варёных побегов папоротника" msgstr[2] "варёных побегов папоротника" msgstr[3] "варёные побеги папоротника" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -64822,7 +64854,7 @@ msgstr[1] "соте из побегов папоротника" msgstr[2] "соте из побегов папоротника" msgstr[3] "соте из побегов папоротника" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "Побеги папоротника, пассерованные в жире. Нежные и вкусные." @@ -64843,7 +64875,7 @@ msgid "" msgstr "" "Очищенный и приготовленный болгарский перец. Намного вкуснее без семечек." -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "Сырая пшеница, не очень вкусная." @@ -64856,7 +64888,7 @@ msgstr[1] "сырых спагетти" msgstr[2] "сырых спагетти" msgstr[3] "сырые спагетти" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -64873,7 +64905,7 @@ msgstr[1] "сырых листа лазаньи" msgstr[2] "сырых листов лазаньи" msgstr[3] "сырые листы лазаньи" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -64890,7 +64922,7 @@ msgstr[1] "варёной лапши" msgstr[2] "варёной лапши" msgstr[3] "варёная лапша" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "Свежая варёная лапша. Очень пресная, хотя и сытная." @@ -64903,7 +64935,7 @@ msgstr[1] "сырых макарон" msgstr[2] "сырых макарон" msgstr[3] "сырые макароны" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -64918,7 +64950,7 @@ msgstr[1] "макарон с сыром" msgstr[2] "макарон с сыром" msgstr[3] "макароны с сыром" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "Плавишь сыр на макароны, получается съедобно." @@ -64931,7 +64963,7 @@ msgstr[1] "муки" msgstr[2] "муки" msgstr[3] "мука" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "Обогащённая белая мука, применяемая при готовке." @@ -64944,7 +64976,7 @@ msgstr[1] "хлебная мука" msgstr[2] "хлебная мука" msgstr[3] "хлебная мука" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -64961,7 +64993,7 @@ msgstr[1] "овсянки" msgstr[2] "овсянки" msgstr[3] "овсянка" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " @@ -64970,7 +65002,7 @@ msgstr "" "Сухие хлопья из зёрен. В виде каши — вкусно и питательно. В сухом виде " "пригодно для питания лошадей." -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "Сырой овёс." @@ -64983,7 +65015,7 @@ msgstr[1] "приготовленная овсянка" msgstr[2] "приготовленная овсянка" msgstr[3] "приготовленная овсянка" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -65000,7 +65032,7 @@ msgstr[1] "шикарная овсянка" msgstr[2] "шикарная овсянка" msgstr[3] "шикарная овсянка" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -65105,7 +65137,7 @@ msgstr[1] "устричные крекеры" msgstr[2] "устричные крекеры" msgstr[3] "устричные крекеры" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -65146,7 +65178,7 @@ msgstr[1] "гранолы" msgstr[2] "гранол" msgstr[3] "гранолы" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -65176,7 +65208,7 @@ msgstr[1] "лапша быстрого приготовления" msgstr[2] "лапша быстрого приготовления" msgstr[3] "лапша быстрого приготовления" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "Рамен — лапша быстрого приготовления. Можно есть в сыром виде." @@ -65421,7 +65453,7 @@ msgstr[1] "стебля ананаса" msgstr[2] "стеблей ананаса" msgstr[3] "стебли ананаса" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "Корешки ананаса, для выращивания." @@ -65434,7 +65466,7 @@ msgstr[1] "семена дыни" msgstr[2] "семена дыни" msgstr[3] "семена дыни" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "Немного семян дыни" @@ -65447,7 +65479,7 @@ msgstr[1] "ростки банана" msgstr[2] "ростки банана" msgstr[3] "ростки банана" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "Немного ростков бананов" @@ -65460,7 +65492,7 @@ msgstr[1] "лиановидных апельсина" msgstr[2] "лиановидных апельсинов" msgstr[3] "лиановидные апельсины" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "Лиановидный апельсин. Определенно ГМО." @@ -65473,7 +65505,7 @@ msgstr[1] "лиановидных лимона" msgstr[2] "лиановидных лимонов" msgstr[3] "лиановидные лимоны" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "Лиановидный лимон. Определенно ГМО." @@ -65486,7 +65518,7 @@ msgstr[1] "подземных кокоса" msgstr[2] "подземных кокосов" msgstr[3] "подземные кокосы" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -65549,7 +65581,7 @@ msgstr[1] "приготовленное обмороженное человеч msgstr[2] "приготовленное обмороженное человеческое мясо" msgstr[3] "приготовленное обмороженное человеческое мясо" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -65607,7 +65639,7 @@ msgstr[1] "обмороженное человеческое сало" msgstr[2] "обмороженное человеческое сало" msgstr[3] "обмороженное человеческое сало" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -65625,7 +65657,7 @@ msgstr[1] "обмороженный человеческий лярд" msgstr[2] "обмороженный человеческий лярд" msgstr[3] "обмороженный человеческий лярд" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -65680,7 +65712,7 @@ msgstr[1] "приготовленная инопланетная плоть" msgstr[2] "приготовленная инопланетная плоть" msgstr[3] "приготовленная инопланетная плоть" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -65824,7 +65856,7 @@ msgstr[1] "сырых мозга инопланетянина" msgstr[2] "сырых мозгов инопланетянина" msgstr[3] "сырые мозги инопланетянина" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -65843,7 +65875,7 @@ msgstr[1] "приготовленных мозга инопланетянина" msgstr[2] "приготовленных мозгов инопланетянина" msgstr[3] "приготовленные мозги инопланетянина" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -65960,7 +65992,7 @@ msgstr[1] "сало инопланетянина" msgstr[2] "сало инопланетянина" msgstr[3] "сало инопланетянина" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -65979,7 +66011,7 @@ msgstr[1] "инопланетный лярд" msgstr[2] "инопланетный лярд" msgstr[3] "инопланетный лярд" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -65998,7 +66030,7 @@ msgstr[1] "неопознанные инопланетные органы" msgstr[2] "неопознанные инопланетные органы" msgstr[3] "неопознанные инопланетные органы" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -66012,7 +66044,7 @@ msgstr[1] "шкварки из чужого" msgstr[2] "шкварки из чужого" msgstr[3] "шкварки из чужого" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -66029,7 +66061,7 @@ msgstr[1] "обмороженные человеческие шкварки" msgstr[2] "обмороженных человеческих шкварок" msgstr[3] "обмороженные человеческие шкварки" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -66105,7 +66137,7 @@ msgstr[1] "споры мясных червей" msgstr[2] "споры мясных червей" msgstr[3] "споры мясных червей" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -66128,7 +66160,7 @@ msgstr[1] "бульон мясных червей" msgstr[2] "бульон мясных червей" msgstr[3] "бульон мясных червей" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -66148,7 +66180,7 @@ msgstr[1] "живые мясные черви" msgstr[2] "живые мясные черви" msgstr[3] "живые мясные черви" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -66167,7 +66199,7 @@ msgstr[1] "мясные черви" msgstr[2] "мясные черви" msgstr[3] "мясные черви" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -66250,7 +66282,7 @@ msgstr[1] "H₂O™" msgstr[2] "H₂O™" msgstr[3] "H₂O™" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -66269,7 +66301,7 @@ msgstr[1] "пищевые кубики" msgstr[2] "пищевые кубики" msgstr[3] "пищевые кубики" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -66285,7 +66317,7 @@ msgstr[1] "Сядь-и-поешь - Еда-с-собой™" msgstr[2] "Сядь-и-поешь - Еда-с-собой™" msgstr[3] "Сядь-и-поешь - Еда-с-собой™" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -66316,7 +66348,7 @@ msgstr[1] "морские пастилки" msgstr[2] "морские пастилки" msgstr[3] "морские пастилки" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -66350,7 +66382,7 @@ msgstr[1] "суп, вкус 27" msgstr[2] "суп, вкус 27" msgstr[3] "суп, вкус 27" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -66369,7 +66401,7 @@ msgstr[1] "аварийных рациона" msgstr[2] "аварийных рационов" msgstr[3] "аварийные рационы" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -66392,7 +66424,7 @@ msgstr[1] "кофекс" msgstr[2] "кофекс" msgstr[3] "кофекс" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -66448,7 +66480,7 @@ msgstr[1] "сверхкритическая охлаждающая жидкос msgstr[2] "сверхкритическая охлаждающая жидкость" msgstr[3] "сверхкритическая охлаждающая жидкость" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -66532,7 +66564,7 @@ msgstr[1] "СпОрео" msgstr[2] "СпОрео" msgstr[3] "СпОрео" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -66559,7 +66591,7 @@ msgstr "" "Кусочек неземного гидрогеля с небольшими двигающимися пятнышками в нем. " "Полезно в крафтинге. Вы могли бы «выпить» это, но это точно будет неприятно." -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -66944,12 +66976,12 @@ msgstr[2] "яиц сиатса" msgstr[3] "яйца сиатса" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" -msgstr[0] "яйцо тираннозавра" -msgstr[1] "яйца тираннозавра" -msgstr[2] "яиц тираннозавра" -msgstr[3] "яйца тираннозавра" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" +msgstr[0] "яйцо горгозавра" +msgstr[1] "яйца горгозавра" +msgstr[2] "яиц горгозавра" +msgstr[3] "яйца горгозавра" #: lang/json/COMESTIBLE_from_json.py msgid "albertosaurus egg" @@ -66959,6 +66991,22 @@ msgstr[1] "яйца альбертозавра" msgstr[2] "яиц альбертозавра" msgstr[3] "яйца альбертозавра" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "яйцо цяньчжоузавра" +msgstr[1] "яйца цяньчжоузавра" +msgstr[2] "яиц цяньчжоузавра" +msgstr[3] "яйца цяньчжоузавра" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "яйцо тираннозавра" +msgstr[1] "яйца тираннозавра" +msgstr[2] "яиц тираннозавра" +msgstr[3] "яйца тираннозавра" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -67015,6 +67063,14 @@ msgstr[1] "яйца эораптора" msgstr[2] "яиц эораптора" msgstr[3] "яйца эораптора" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "яйцо амаргазавра" +msgstr[1] "яйца амаргазавра" +msgstr[2] "яиц амаргазавра" +msgstr[3] "яйца амаргазавра" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -67175,6 +67231,14 @@ msgstr[1] "яйца пентацератопса" msgstr[2] "яиц пентацератопса" msgstr[3] "яйца пентацератопса" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "яйцо космоцератопса" +msgstr[1] "яйца космоцератопса" +msgstr[2] "яиц космоцератопса" +msgstr[3] "яйца космоцератопса" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -67223,30 +67287,6 @@ msgstr[1] "яйца мозазавра" msgstr[2] "яиц мозазавра" msgstr[3] "яйца мозазавра" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "яйцо цяньчжоузавра" -msgstr[1] "яйца цяньчжоузавра" -msgstr[2] "яиц цяньчжоузавра" -msgstr[3] "яйца цяньчжоузавра" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "яйцо амаргазавра" -msgstr[1] "яйца амаргазавра" -msgstr[2] "яиц амаргазавра" -msgstr[3] "яйца амаргазавра" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "яйцо космоцератопса" -msgstr[1] "яйца космоцератопса" -msgstr[2] "яиц космоцератопса" -msgstr[3] "яйца космоцератопса" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -67634,7 +67674,7 @@ msgstr[1] "драконье мясо" msgstr[2] "драконье мясо" msgstr[3] "драконье мясо" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -67719,7 +67759,7 @@ msgstr[1] "кровь, наполненная маной" msgstr[2] "кровь, наполненная маной" msgstr[3] "кровь, наполненная маной" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -67798,7 +67838,7 @@ msgstr "" "Труп некко, сейчас очень напоминает огромную вафельку Некко. Не помешает " "откусить кусочек, верно?" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " @@ -67807,7 +67847,7 @@ msgstr "" "Горстка нежного, воздушного, пышного и вкусного зефира. Кажется странно " "теплой…" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -67916,7 +67956,7 @@ msgstr[1] "сырое шоколадное молоко" msgstr[2] "сырое шоколадное молоко" msgstr[3] "сырое шоколадное молоко" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -67929,7 +67969,7 @@ msgstr "" "расстроит. В зависимости от ваших предпочтений его хорошо бы " "пропастеризовать или даже прокипятить перед тем, как пить." -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -67943,7 +67983,7 @@ msgstr[1] "жидкое какао" msgstr[2] "жидкое какао" msgstr[3] "жидкое какао" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "Жидкое несладкое какао. Довольно горькое на вкус." @@ -67956,7 +67996,7 @@ msgstr[1] "восстановленное шоколадное молоко" msgstr[2] "восстановленное шоколадное молоко" msgstr[3] "восстановленное шоколадное молоко" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -67973,7 +68013,7 @@ msgstr[1] "сухое шоколадное молоко" msgstr[2] "сухое шоколадное молоко" msgstr[3] "сухое шоколадное молоко" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -67998,7 +68038,7 @@ msgstr[1] "куски обёртки от конфет" msgstr[2] "куски обёртки от конфет" msgstr[3] "куски обёртки от конфет" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -68017,7 +68057,7 @@ msgstr[1] "липкий ил" msgstr[2] "липкий ил" msgstr[3] "липкий ил" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -68787,7 +68827,7 @@ msgstr[1] "каменной соли" msgstr[2] "каменной соли" msgstr[3] "каменная соль" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -68801,7 +68841,7 @@ msgstr[1] "родонита" msgstr[2] "родонита" msgstr[3] "родонит" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -68818,7 +68858,7 @@ msgstr[1] "цинкита" msgstr[2] "цинкита" msgstr[3] "цинкит" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -68865,7 +68905,7 @@ msgstr[1] "ореха гикори" msgstr[2] "орехов гикори" msgstr[3] "орехи гикори" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "Горсть твёрдых орехов дерева гикори, по-прежнему в своей скорлупе." @@ -68878,7 +68918,7 @@ msgstr[1] "ореха пекан" msgstr[2] "орехов пекан" msgstr[3] "орехи пекан" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "Горсть твёрдых орехов дерева пекан, всё ещё в скорлупе." @@ -68891,7 +68931,7 @@ msgstr[1] "фисташки" msgstr[2] "фисташки" msgstr[3] "фисташки" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "Горсть твёрдых орехов фисташкового дерева, всё ещё в скорлупе." @@ -68904,7 +68944,7 @@ msgstr[1] "миндаль" msgstr[2] "миндаль" msgstr[3] "миндаль" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "Горсть твёрдых орехов миндального дерева, всё ещё в скорлупе." @@ -68917,7 +68957,7 @@ msgstr[1] "арахис" msgstr[2] "арахис" msgstr[3] "арахис" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "Горсть твёрдых орехов арахисового кустарника, всё ещё в скорлупе." @@ -68930,7 +68970,7 @@ msgstr[1] "фундук" msgstr[2] "фундук" msgstr[3] "фундук" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "Горсть твёрдых орехов лещины, всё ещё в скорлупе." @@ -68943,7 +68983,7 @@ msgstr[1] "каштана" msgstr[2] "каштанов" msgstr[3] "каштаны" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "Горсть твёрдых орехов каштанового дерева, всё ещё в скорлупе." @@ -68956,7 +68996,7 @@ msgstr[1] "грецких ореха" msgstr[2] "грецких орехов" msgstr[3] "грецкие орехи" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "Горсть твёрдых грецких орехов, всё ещё в скорлупе." @@ -69318,6 +69358,22 @@ msgstr "" "ХИРУРГИ ПРЕДУПРЕЖДАЮТ: курение вызывает рак лёгких, заболевания сердца, " "эмфизему и осложнения беременности." +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "ящичек для сигар" +msgstr[1] "ящичка для сигар" +msgstr[2] "ящичков для сигар" +msgstr[3] "ящички для сигар" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" +"Маленький ящичек ручной работы из дерева и кожи, вмещающий одну или две " +"сигары." + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -69331,6 +69387,23 @@ msgstr[3] "маленькие картонные коробки" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "Маленькая картонная коробка. Размером не больше фута." +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "маленькая деревянная коробка" +msgstr[1] "маленькие деревянные коробки" +msgstr[2] "маленьких деревянных коробок" +msgstr[3] "маленькие деревянные коробки" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" +"Небольшая деревянная коробочка длиной несколько дюймов с каждой стороны, " +"куда можно положить несколько мелких предметов." + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -70328,7 +70401,7 @@ msgstr[1] "недомолотое зерно" msgstr[2] "недомолотое зерно" msgstr[3] "недомолотое зерно" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "Масса из частично перемолотых зерен, все ещё не мука." @@ -70341,7 +70414,7 @@ msgstr[1] "тлеющих угольков" msgstr[2] "тлеющих угольков" msgstr[3] "тлеющие угольки" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -70600,6 +70673,33 @@ msgstr "" "Совершенно обыкновенный североамериканский цилиндрический ключ. Одному Богу " "известно, что он открывает; лучше и не пытаться выяснить." +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "гильотина для сигар" +msgstr[1] "гильотины для сигар" +msgstr[2] "гильотин для сигар" +msgstr[3] "гильотины для сигар" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "Маленькие лезвия, которые можно сжать, чтобы отрезать конец сигары." + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "дырокол для сигар" +msgstr[1] "дырокола для сигар" +msgstr[2] "дыроколов для сигар" +msgstr[3] "дыроколы для сигар" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "Маленькая трубка для проделывания дырки на конце сигары." + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -70864,7 +70964,7 @@ msgstr[1] "суперклея" msgstr[2] "суперклеев" msgstr[3] "суперклей" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "Тюбик сильного клея. Используется во многих рецептах." @@ -71237,7 +71337,7 @@ msgstr[1] "данные МЧС" msgstr[2] "данные МЧС" msgstr[3] "данные МЧС" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -71420,7 +71520,7 @@ msgstr[1] "бетона" msgstr[2] "бетона" msgstr[3] "бетон" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "Бетон, готовый к использованию в строительстве." @@ -72511,7 +72611,7 @@ msgstr[1] "часовых механизма" msgstr[2] "часовых механизмов" msgstr[3] "часовые механизмы" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "Небольшой набор шестерёнок и прочей мелочи от часовых механизмов." @@ -72677,7 +72777,7 @@ msgstr[1] "цветка ромашки" msgstr[2] "цветков ромашки" msgstr[3] "цветки ромашки" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -72710,7 +72810,7 @@ msgstr[1] "цветка молочая" msgstr[2] "цветков молочая" msgstr[3] "цветки молочая" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -72753,7 +72853,7 @@ msgstr[1] "цементных растворов" msgstr[2] "цементных растворов" msgstr[3] "цементный раствор" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "Цементный раствор, готовый к применению в строительстве." @@ -72809,7 +72909,7 @@ msgstr[1] "саманного раствора" msgstr[2] "саманного раствора" msgstr[3] "саманный раствор" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -72826,7 +72926,7 @@ msgstr[1] "дубовой коры" msgstr[2] "дубовой коры" msgstr[3] "дубовая кора" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "Кусок богатой танинами дубовой коры, полезной при дублении кожи." @@ -72852,7 +72952,7 @@ msgstr[1] "ивовой коры" msgstr[2] "ивовой коры" msgstr[3] "ивовая кора" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -73375,7 +73475,7 @@ msgstr[1] "сырых табака" msgstr[2] "сырой табак" msgstr[3] "сырой табак" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -73766,7 +73866,7 @@ msgstr[1] "пластиковые кубики" msgstr[2] "пластиковых кубиков" msgstr[3] "пластиковые кубики" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "Шестигранный пластиковый кубик." @@ -73795,7 +73895,7 @@ msgstr[1] "кора ольхи" msgstr[2] "кора ольхи" msgstr[3] "кора ольхи" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -74243,10 +74343,10 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "snail sample" msgid_plural "snail samples" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "образец улитки" +msgstr[1] "образца улитки" +msgstr[2] "образцов улитки" +msgstr[3] "образцы улитки" #. ~ Description for snail sample #: lang/json/GENERIC_from_json.py @@ -74254,6 +74354,8 @@ msgid "" "A sample of things that make up key parts of being a snail. You will " "probably need to find a very large snail." msgstr "" +"Образцы частей, из которых состоит улитка. Вероятно, вам понадобится очень " +"большая улитка." #: lang/json/GENERIC_from_json.py msgid "rabbit sample" @@ -74272,10 +74374,10 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "frog sample" msgid_plural "frog samples" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "образец лягушки" +msgstr[1] "образца лягушки" +msgstr[2] "образцов лягушки" +msgstr[3] "образцы лягушки" #. ~ Description for frog sample #: lang/json/GENERIC_from_json.py @@ -74283,6 +74385,128 @@ msgid "" "A sample of things that make up key parts of being a frog. You will " "probably need to find a very large frog." msgstr "" +"Образцы частей, из которых состоит лягушка. Вероятно, вам понадобится очень " +"большая лягушка." + +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "образец насекомого" +msgstr[1] "образца насекомого" +msgstr[2] "образцов насекомого" +msgstr[3] "образцы насекомого" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" +"Образцы частей, из которых состоит насекомое. Вероятно, вам понадобится " +"очень большой жук." + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "образец парнокопытного" +msgstr[1] "образца парнокопытного" +msgstr[2] "образцов парнокопытного" +msgstr[3] "образцы парнокопытного" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" +"Образцы частей, из которых состоит парнокопытное. Вероятно, вам понадобится " +"очень живая корова." + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "образец кротокрыса" +msgstr[1] "образца кротокрыса" +msgstr[2] "образцов кротокрыса" +msgstr[3] "образцы кротокрыса" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" +"Образцы частей, из которых состоит обитатель подземелий. Вероятно, вам " +"понадобится очень большое существо, живущее под землёй." + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "образец паука" +msgstr[1] "образца паука" +msgstr[2] "образцов паука" +msgstr[3] "образцы паука" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" +"Образцы частей, из которых состоит паук. Почему вокруг теперь так много " +"больших пауков?" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "образец рептилии" +msgstr[1] "образца рептилии" +msgstr[2] "образцов рептилии" +msgstr[3] "образцы рептилии" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" +"Образцы частей, из которых состоит ящерица. Аллигаторы и гигантские гремучие" +" змеи кажутся вам подходящими вариантами." + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "образец волка" +msgstr[1] "образца волка" +msgstr[2] "образцов волка" +msgstr[3] "образцы волка" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" +"Образцы частей, из которых состоит паук. Что за Серый волк идёт рядом с " +"королевой?" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "образец кошки" +msgstr[1] "образца кошки" +msgstr[2] "образцов кошки" +msgstr[3] "образцы кошки" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" +"Образцы частей, из которых состоит кошка. Рыси и пумы могли всегда тут " +"обитать?" #: lang/json/GENERIC_from_json.py msgid "flyer" @@ -75221,7 +75445,7 @@ msgstr[1] "модуля самонаблюдения" msgstr[2] "модулей самонаблюдения" msgstr[3] "модули самонаблюдения" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -75384,7 +75608,7 @@ msgstr[1] "внутренние шасси турели" msgstr[2] "внутренних шасси турели" msgstr[3] "внутренние шасси турели" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -75401,7 +75625,7 @@ msgstr[1] "шасси робота-полицейского" msgstr[2] "шасси робота-полицейского" msgstr[3] "шасси робота-полицейского" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -75439,7 +75663,7 @@ msgstr[1] "данные установки КБМ: Сигнализация" msgstr[2] "данные установки КБМ: Сигнализация" msgstr[3] "данные установки КБМ: Сигнализация" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75462,7 +75686,7 @@ msgstr[1] "данные установки КБМ: LED-татуировка" msgstr[2] "данные установки КБМ: LED-татуировка" msgstr[3] "данные установки КБМ: LED-татуировка" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75485,7 +75709,7 @@ msgstr[1] "данные установки КБМ: Интерфейс силов msgstr[2] "данные установки КБМ: Интерфейс силовой брони" msgstr[3] "данные установки КБМ: Интерфейс силовой брони" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75509,7 +75733,7 @@ msgstr[1] "данные установки КБМ: Бионический акк msgstr[2] "данные установки КБМ: Бионический аккумулятор" msgstr[3] "данные установки КБМ: Бионический аккумулятор" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75533,7 +75757,7 @@ msgstr[1] "данные установки КБМ: Бионический акк msgstr[2] "данные установки КБМ: Бионический аккумулятор Мк. II" msgstr[3] "данные установки КБМ: Бионический аккумулятор Мк. II" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75557,7 +75781,7 @@ msgstr[1] "данные установки КБМ: Встроенный хрон msgstr[2] "данные установки КБМ: Встроенный хронометр" msgstr[3] "данные установки КБМ: Встроенный хронометр" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75581,7 +75805,7 @@ msgstr[1] "данные установки КБМ: Внутривенная иг msgstr[2] "данные установки КБМ: Внутривенная игла" msgstr[3] "данные установки КБМ: Внутривенная игла" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75604,7 +75828,7 @@ msgstr[1] "данные установки КБМ: Анализатор кров msgstr[2] "данные установки КБМ: Анализатор крови" msgstr[3] "данные установки КБМ: Анализатор крови" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75627,7 +75851,7 @@ msgstr[1] "данные установки КБМ: Налобный фонари msgstr[2] "данные установки КБМ: Налобный фонарик" msgstr[3] "данные установки КБМ: Налобный фонарик" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75650,7 +75874,7 @@ msgstr[1] "данные установки КБМ: Электромагнитн msgstr[2] "данные установки КБМ: Электромагнитный агрегат" msgstr[3] "данные установки КБМ: Электромагнитный агрегат" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75674,7 +75898,7 @@ msgstr[1] "данные установки КБМ: Стимулятор сна" msgstr[2] "данные установки КБМ: Стимулятор сна" msgstr[3] "данные установки КБМ: Стимулятор сна" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75697,7 +75921,7 @@ msgstr[1] "данные установки КБМ: Металлическое п msgstr[2] "данные установки КБМ: Металлическое покрытие — Руки" msgstr[3] "данные установки КБМ: Металлическое покрытие — Руки" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75721,7 +75945,7 @@ msgstr[1] "данные установки КБМ: Металлическое п msgstr[2] "данные установки КБМ: Металлическое покрытие — Ноги" msgstr[3] "данные установки КБМ: Металлическое покрытие — Ноги" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75745,7 +75969,7 @@ msgstr[1] "данные установки КБМ: Рука-дробовик" msgstr[2] "данные установки КБМ: Рука-дробовик" msgstr[3] "данные установки КБМ: Рука-дробовик" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75768,7 +75992,7 @@ msgstr[1] "данные установки КБМ: Фильтр крови" msgstr[2] "данные установки КБМ: Фильтр крови" msgstr[3] "данные установки КБМ: Фильтр крови" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75791,8 +76015,7 @@ msgstr[1] "данные установки КБМ: Внутренний клим msgstr[2] "данные установки КБМ: Внутренний климат-контроль" msgstr[3] "данные установки КБМ: Внутренний климат-контроль" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75816,7 +76039,7 @@ msgstr[1] "данные установки КБМ: Встроенный дози msgstr[2] "данные установки КБМ: Встроенный дозиметр" msgstr[3] "данные установки КБМ: Встроенный дозиметр" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75839,7 +76062,7 @@ msgstr[1] "данные установки КБМ: Тепловыделение" msgstr[2] "данные установки КБМ: Тепловыделение" msgstr[3] "данные установки КБМ: Тепловыделение" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75862,7 +76085,7 @@ msgstr[1] "данные установки КБМ: Считыватель пог msgstr[2] "данные установки КБМ: Считыватель погоды" msgstr[3] "данные установки КБМ: Считыватель погоды" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75885,7 +76108,7 @@ msgstr[1] "данные установки КБМ: Рельсотрон" msgstr[2] "данные установки КБМ: Рельсотрон" msgstr[3] "данные установки КБМ: Рельсотрон" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75908,7 +76131,7 @@ msgstr[1] "данные установки КБМ: Унифицированна msgstr[2] "данные установки КБМ: Унифицированная энергосистема" msgstr[3] "данные установки КБМ: Унифицированная энергосистема" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75932,8 +76155,7 @@ msgstr[1] "данные установки КБМ: Титановые скеле msgstr[2] "данные установки КБМ: Титановые скелетные крепления" msgstr[3] "данные установки КБМ: Титановые скелетные крепления" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -75965,7 +76187,7 @@ msgstr[1] "разнообразное ПО" msgstr[2] "разнообразное ПО" msgstr[3] "разнообразное ПО" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "Разнообразное ПО для разных целей. Наверняка бесполезное." @@ -75978,7 +76200,7 @@ msgstr[1] "ВзломПРО" msgstr[2] "ВзломПРО" msgstr[3] "ВзломПРО" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "Хакерское ПО." @@ -75991,7 +76213,7 @@ msgstr[1] "МедСофт" msgstr[2] "МедСофт" msgstr[3] "МедСофт" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "Медицинское ПО." @@ -76004,7 +76226,7 @@ msgstr[1] "МатеМАКС" msgstr[2] "МатеМАКС" msgstr[3] "МатеМАКС" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "Математическое ПО." @@ -76017,7 +76239,7 @@ msgstr[1] "данные об инфекции" msgstr[2] "данные об инфекции" msgstr[3] "данные об инфекции" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "Медицинские данные о крови зомби." @@ -76030,7 +76252,7 @@ msgstr[1] "данные лабораторных исследований" msgstr[2] "данные лабораторных исследований" msgstr[3] "данные лабораторных исследований" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "Исследовательские архивы из правительственной лаборатории." @@ -76043,7 +76265,7 @@ msgstr[1] "данные о движении поездов" msgstr[2] "данные о движении поездов" msgstr[3] "данные о движении поездов" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -76058,7 +76280,7 @@ msgstr[1] "нейроданных" msgstr[2] "нейроданных" msgstr[3] "нейроданные" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -76425,6 +76647,21 @@ msgstr "" "Кость получеловека. Можно использовать для создания предметов, если вы " "всерьез чувствуете себя упырём." +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "человеческий череп" +msgstr[1] "человеческих черепа" +msgstr[2] "человеческих черепов" +msgstr[3] "человеческие черепа" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "Череп человека. Носить его при себе не поможет вам найти друзей." + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" @@ -76433,9 +76670,8 @@ msgstr[1] "трупа" msgstr[2] "трупов" msgstr[3] "трупы" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" @@ -76444,7 +76680,7 @@ msgstr[1] "туши" msgstr[2] "туш" msgstr[3] "туши" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -76454,7 +76690,7 @@ msgstr[1] "освежёванные %s" msgstr[2] "освежёванных %s" msgstr[3] "освежёванные %s" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -76532,7 +76768,7 @@ msgstr "" msgid "" "The corpse of an infant. A single small-caliber bullet has been put through" " its skull." -msgstr "" +msgstr "Труп младенца. Голова прострелена одной пулей маленького калибра." #. ~ Description for corpse #: lang/json/GENERIC_from_json.py @@ -76572,23 +76808,29 @@ msgid "" "The bloody corpse of a young man. He has been stabbed repeatedly in the " "jugular and throat with a small blade." msgstr "" +"Окровавленный труп молодого мужчины. Его много раз ударили небольшим ножом в" +" ярёмную вену, разорвав горло." #: lang/json/GENERIC_from_json.py msgid "" "The dead body of a person. They look to have been skewered through with a " "large sharp implement." msgstr "" +"Труп человека. Выглядит так, будто его проткнули большим острым орудием." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a tall middle-aged woman. She appears to have many stab " "wounds up her legs and thighs." msgstr "" +"Труп высокой женщины средних лет. Похоже, у неё много колотых ран на ногах и" +" бёдрах." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a small old lady, her face caked in blood and missing an eye." msgstr "" +"Труп невысокой пожилой женщины, лицо в запёкшейся крови, одного глаза нет." #. ~ Description for corpse #: lang/json/GENERIC_from_json.py @@ -76620,30 +76862,40 @@ msgid "" "The corpse of a young blond woman shot several times in the back with a low-" "caliber weapon." msgstr "" +"Труп молодой светловолосой женщины, которой несколько раз выстрели в спину " +"пулями небольшого калибра." #: lang/json/GENERIC_from_json.py msgid "" "An androgynous-looking corpse gored by arms fire chest to thighs, leaving " "the face eerily pristine." msgstr "" +"Труп андрогинного вида, покрытый огнестрельными ранами от груди до бёдер, " +"лицо осталось устрашающе нетронутым." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a seemingly older male. He appears to have been shot in the " "forehead at a very close range leaving you a good view of his brain matter." msgstr "" +"Труп пожилого на вид мужчины. Похоже, он был убит выстрелом в лоб с очень " +"близкого расстояния, поэтому вам хорошо видно его мозг." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a middle-aged woman, her legs and arms covered in blood. She " "appears to have been shot in the thigh." msgstr "" +"Труп женщины средних лет, ее ноги и руки залиты кровью. Похоже, она была " +"ранена в бедро." #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a young man who appears to have been shot to death. His right" " arm is only barely still attached to his shoulder." msgstr "" +"Труп молодого мужчины, который, похоже, был застрелен. Его правая рука " +"только еле-еле соединяется с плечом." #: lang/json/GENERIC_from_json.py msgid "" @@ -76651,6 +76903,9 @@ msgid "" "head, its thick black hair intermixed now with brain, viscera and shotgun " "pellets." msgstr "" +"Труп высокой женщины, почти нетронутый, если не считать кровавой дыры на ее " +"голове, где густые черные волосы смешались с мозгом, внутренностями и дробью" +" от выстрела." #: lang/json/GENERIC_from_json.py msgid "broken exodii worker" @@ -76728,7 +76983,7 @@ msgstr[1] "остатков трёхгранника" msgstr[2] "остатков трёхгранника" msgstr[3] "остатки трёхгранников" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -77157,6 +77412,117 @@ msgstr "" "Зомби нельзя запугать или унизить, поэтому эта жесткая щётка полезна только " "для чистки унитазов." +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "гребень от вшей " +msgstr[1] "гребня от вшей " +msgstr[2] "гребней от вшей " +msgstr[3] "гребни от вшей " + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" +"Расческа из нержавеющей стали со спиральными рифлеными зубьями, " +"предназначенная для удаления с волос надоедливых паразитов. Даже одна мысль " +"об этом вызывает у вас зуд." + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "игрушка для ванной" +msgstr[1] "игрушки для ванной" +msgstr[2] "игрушек для ванной" +msgstr[3] "игрушки для ванной" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "Пластиковая плавающая игрушка для ванны." + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "Жёлтая резиновая уточка. Предназначена для плавания в ванне." + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" +"Чёрная резиновая уточка с большими белыми глазами. Предназначена для " +"плавания в ванне." + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" +"Маленький зелёный динозавр с широкой ухмылкой. Предназначен для игр во время" +" купания." + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "электрическая зубная щётка" +msgstr[1] "электрические зубные щётки" +msgstr[2] "электрических зубных щёток" +msgstr[3] "электрические зубные щётки" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "Пластиковая электрическая зубная щётка." + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "Ёмкость из мягкого пластика для различных видов туалетного мыла" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "Бутылка для специального шампуня для окрашенных волос." + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "Непримечательная белая бутылка для дешёвого шампуня." + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "Бутылка геля для душа. Называется «Afrika»." + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "Бутылка для кондиционера для волос." + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "Красочная бутылка средства для мытья тела и волос для детей." + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "Непримечательная белая бутылка для дешёвого кондиционера для волос." + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "Непримечательная белая бутылка для дешёвого геля для душа." + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "комплект зубных протезов" +msgstr[1] "комплекта зубных протезов" +msgstr[2] "комплектов зубных протезов" +msgstr[3] "комплекты зубных протезов" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" +"Стандартный комплект зубных протезов. Совершенно бесполезен для всех, кроме " +"владельца." + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -79255,7 +79621,7 @@ msgstr[1] "пары наушников" msgstr[2] "пар наушников" msgstr[3] "пары наушников" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -79362,7 +79728,7 @@ msgstr[1] "расходного материала" msgstr[2] "расходных материалов" msgstr[3] "расходные материалы" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -80138,7 +80504,7 @@ msgstr[1] "боккэна" msgstr[2] "боккэнов" msgstr[3] "боккэны" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -80149,7 +80515,7 @@ msgstr "" "имитировать вес и баланс настоящей вещи. Несмотря на отсутствие режущего " "металлического края, она вполне способна нанести смертельные раны." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " @@ -80158,7 +80524,7 @@ msgstr "" "Прочная деревянная «тренировочная» катана, слишком легкая, чтобы быть " "эффективным оружием." -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -80880,7 +81246,7 @@ msgstr[1] "бионических когтей" msgstr[2] "бионических когтей" msgstr[3] "бионические когти" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "Короткие и острые когти сделаны из высокотехнологичного металла." @@ -81163,7 +81529,7 @@ msgstr[1] "цян" msgstr[2] "цян" msgstr[3] "цян" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -81223,7 +81589,7 @@ msgstr[1] "нагинаты" msgstr[2] "нагинат" msgstr[3] "нагинаты" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -81234,7 +81600,7 @@ msgstr "" "катаны и других японских клинков. Изредка использовалось самураями в ранние " "периоды, а также их жёнами для обороны дома." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -81245,7 +81611,7 @@ msgstr "" "катаны и других японских клинков. Лезвие немного болтается, и всё оружие " "сделано довольно небрежно." -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -81263,7 +81629,7 @@ msgstr[1] "нагинаты выживальщика" msgstr[2] "нагинат выживальщика" msgstr[3] "нагинаты выживальщика" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -81429,7 +81795,7 @@ msgstr[1] "цзи" msgstr[2] "цзи" msgstr[3] "цзи" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -81508,6 +81874,25 @@ msgstr "" "поверх деревянной основы. Дополнительный вес нарушает балансировку, но зато " "зазубренные края позволяют хорошо рубить." +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "металлический меч" +msgstr[1] "металлических меча" +msgstr[2] "металлических мечей" +msgstr[3] "металлические мечи" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" +"Имитация настоящего меча, выкованного кем-то, кто хотя бы знает, как " +"выглядят мечи. У него в целом форма меча, и он острый, но качество оставляет" +" желать лучшего, а баланс не совсем верный." + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -81517,7 +81902,7 @@ msgstr[1] "цзяня" msgstr[2] "цзяней" msgstr[3] "цзянь" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -81629,7 +82014,7 @@ msgstr[1] "танто" msgstr[2] "танто" msgstr[3] "танто" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " @@ -81638,7 +82023,7 @@ msgstr "" "Тупая и дешёвая подделка длинного японского ножа, обычно используемого в " "качестве запасного оружия самурая." -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -81657,7 +82042,7 @@ msgstr[1] "нодати" msgstr[2] "нодати" msgstr[3] "нодати" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " @@ -81666,7 +82051,7 @@ msgstr "" "Тупая и дешёвая подделка огромного изогнутого двуручного меча из Японии. " "Удивительно лёгок для своего размера." -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -81849,7 +82234,7 @@ msgstr[1] "катаны" msgstr[2] "катан" msgstr[3] "катаны" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "Эта дешёвая и тупая подделка редкого японского меча." @@ -81936,7 +82321,7 @@ msgstr[1] "вакидзаси" msgstr[2] "вакидзаси" msgstr[3] "вакидзаси" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -82021,7 +82406,7 @@ msgstr[1] "когтей тигра" msgstr[2] "когтей тигра" msgstr[3] "когти тигра" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -82326,6 +82711,25 @@ msgstr "" "морского стекла, матовый и шероховатый с округлыми краями. Немного тёплый на" " ощупь." +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "ветвь инопланетного папоротника" +msgstr[1] "ветви инопланетного папоротника" +msgstr[2] "ветвей инопланетного папоротника" +msgstr[3] "ветви инопланетного папоротника" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" +"Ветвящийся ствол листа огромного папоротника, около двух футов в длину и " +"пару футов в диаметре, считая листья. Может быть, однажды вы придумаете что-" +"нибудь, что можно сделать из гигантского папоротника." + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" @@ -82334,7 +82738,7 @@ msgstr[1] "шасси Экзоди" msgstr[2] "шасси Экзоди" msgstr[3] "шасси Экзоди" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -82357,7 +82761,7 @@ msgstr[1] "шасси дрона Экзоди" msgstr[2] "шасси дрона Экзоди" msgstr[3] "шасси дрона Экзоди" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -82420,7 +82824,7 @@ msgstr[1] "расписанные металлические платы" msgstr[2] "расписанные металлические платы" msgstr[3] "расписанные металлические платы" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -82799,7 +83203,7 @@ msgstr[1] "обрезка меди" msgstr[2] "обрезков меди" msgstr[3] "обрезки меди" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -83146,7 +83550,7 @@ msgstr[1] "щепки" msgstr[2] "щепок" msgstr[3] "щепки" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -83429,17 +83833,17 @@ msgstr[1] "закрытые дрожжевые культуры" msgstr[2] "закрытых дрожжевых культур" msgstr[3] "закрытые дрожжевые культуры" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "Вы открыли флакон и собрали дрожжевую культуру." -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "Дрожжи ещё не готовы." -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -84990,7 +85394,7 @@ msgstr[1] "вёсел" msgstr[2] "вёсел" msgstr[3] "вёсла" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "Вёсла для лодки." @@ -85016,7 +85420,7 @@ msgstr[1] "надувные секции" msgstr[2] "надувных секций" msgstr[3] "надувные секции" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "Надувная секция лодки." @@ -85029,7 +85433,7 @@ msgstr[1] "подушки безопасности" msgstr[2] "подушек безопасности" msgstr[3] "подушки безопасности" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "Подушка безопасности." @@ -86126,7 +86530,7 @@ msgstr[1] "громкоговорителя с колокольчиками" msgstr[2] "громкоговорителей с колокольчиками" msgstr[3] "громкоговорители с колокольчиками" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -86145,7 +86549,7 @@ msgstr[1] "листа металла" msgstr[2] "листов металла" msgstr[3] "листы металла" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "Тонкий лист металла." @@ -86158,7 +86562,7 @@ msgstr[1] "листа металла с проводкой" msgstr[2] "листов металла с проводкой" msgstr[3] "листы металла с проводкой" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "Лист металла с вмонтированными светодиодами." @@ -86184,7 +86588,7 @@ msgstr[1] "стальной брони" msgstr[2] "стальной брони" msgstr[3] "стальная броня" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "Часть сделанной из стали брони." @@ -86197,7 +86601,7 @@ msgstr[1] "брони из суперсплава" msgstr[2] "брони из суперсплава" msgstr[3] "броня из суперсплава" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "Часть брони, изготовленная из крепкого суперсплава." @@ -86226,7 +86630,7 @@ msgstr[1] "шипованной брони" msgstr[2] "шипованной брони" msgstr[3] "шипованная броня" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -86517,6 +86921,7 @@ msgstr[2] "солнечных панелей" msgstr[3] "солнечные панели" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " @@ -86525,6 +86930,14 @@ msgstr "" "Электронный прибор, который преобразует солнечную энергию в электрическую. " "Используется в транспортных средствах." +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "складной массив солнечных панелей" +msgstr[1] "складных массива солнечных панелей" +msgstr[2] "складных массивов солнечных панелей" +msgstr[3] "складные массивы солнечных панелей" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -86690,6 +87103,19 @@ msgstr[3] "автомобильные обогреватели" msgid "A vehicle-mounted area heater." msgstr "Обогреватель воздуха для установки в автомобиль." +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "малый автообогреватель" +msgstr[1] "малых автообогревателя" +msgstr[2] "малых автообогревателей" +msgstr[3] "малые автообогреватели" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "Маленький обогреватель воздуха для установки в автомобиль." + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -87261,7 +87687,7 @@ msgstr[1] "семейная хлебная закваска Даны" msgstr[2] "семейная хлебная закваска Даны" msgstr[3] "семейная хлебная закваска Даны" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -87344,7 +87770,7 @@ msgstr[1] "корпуса биооружия" msgstr[2] "корпусов биооружия" msgstr[3] "корпуса биооружия" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -87725,7 +88151,7 @@ msgstr[1] "сломанные Изогипсы" msgstr[2] "сломанных Изогипс" msgstr[3] "сломанные Изогипсы" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -87742,7 +88168,7 @@ msgstr[1] "сломанные Кабура-я" msgstr[2] "сломанных Кабура-я" msgstr[3] "сломанные Кабура-я" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -87904,7 +88330,7 @@ msgstr[1] "титанового металлолома" msgstr[2] "титанового металлолома" msgstr[3] "титановый металлолом" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -87919,7 +88345,7 @@ msgstr[1] "ядерные отходы" msgstr[2] "ядерные отходы" msgstr[3] "ядерные отходы" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "Маленькая дробинка блестящего металла, всё ещё тёплая на ощупь." @@ -88172,7 +88598,7 @@ msgstr[1] "шасси трибота" msgstr[2] "шасси трибота" msgstr[3] "шасси трибота" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88189,7 +88615,7 @@ msgstr[1] "шасси Следопыта" msgstr[2] "шасси Следопыта" msgstr[3] "шасси Следопыта" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88206,7 +88632,7 @@ msgstr[1] "шасси Регулятора" msgstr[2] "шасси Регулятора" msgstr[3] "шасси Регулятора" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88223,7 +88649,7 @@ msgstr[1] "шасси Сенешаля" msgstr[2] "шасси Сенешаля" msgstr[3] "шасси Сенешаля" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88240,7 +88666,7 @@ msgstr[1] "шасси Ликвидатора" msgstr[2] "шасси Ликвидатора" msgstr[3] "шасси Ликвидатора" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88257,7 +88683,7 @@ msgstr[1] "шасси Фамула" msgstr[2] "шасси Фамула" msgstr[3] "шасси Фамула" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -88275,7 +88701,7 @@ msgstr[1] "шасси Ударника" msgstr[2] "шасси Ударника" msgstr[3] "шасси Ударника" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88292,7 +88718,7 @@ msgstr[1] "шасси Брандспойта" msgstr[2] "шасси Брандспойта" msgstr[3] "шасси Брандспойта" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88309,7 +88735,7 @@ msgstr[1] "шасси хирургического дроида" msgstr[2] "шасси хирургического дроида" msgstr[3] "шасси хирургического дроида" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88326,7 +88752,7 @@ msgstr[1] "корпуса Эгиды" msgstr[2] "корпусов Эгиды" msgstr[3] "корпусы Эгиды" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88343,7 +88769,7 @@ msgstr[1] "корпуса военного робота" msgstr[2] "корпусов военного робота" msgstr[3] "корпусы военного робота" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -88360,7 +88786,7 @@ msgstr[1] "корпуса военного андроида" msgstr[2] "корпусов военного андроида" msgstr[3] "корпусы военного андроида" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -88508,7 +88934,7 @@ msgstr[1] "мономерная слизь" msgstr[2] "мономерная слизь" msgstr[3] "мономерная слизь" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -88542,7 +88968,7 @@ msgstr[1] "искусственные мышечные волокна" msgstr[2] "искусственные мышечные волокна" msgstr[3] "искусственные мышечные волокна" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -88559,7 +88985,7 @@ msgstr[1] "самовосстанавливающиеся полимеры" msgstr[2] "самовосстанавливающиеся полимеры" msgstr[3] "самовосстанавливающиеся полимеры" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -88594,7 +89020,7 @@ msgstr[1] "обломки фотоники" msgstr[2] "обломки фотоники" msgstr[3] "обломки фотоники" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -88635,7 +89061,7 @@ msgstr[1] "гипергеометрические фотоники" msgstr[2] "гипергеометрические фотоники" msgstr[3] "гипергеометрические фотоники" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -89087,7 +89513,7 @@ msgstr[1] "лазерная оптика" msgstr[2] "лазерная оптика" msgstr[3] "лазерная оптика" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -90025,7 +90451,7 @@ msgstr[1] "зачарованное дерево" msgstr[2] "зачарованное дерево" msgstr[3] "зачарованное дерево" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "Дерево, наполненное маной." @@ -91935,7 +92361,7 @@ msgstr[1] "ледяных когтей" msgstr[2] "ледяных когтей" msgstr[3] "ледяные когти" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -91983,10 +92409,10 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "magical throwing knife" msgid_plural "magical throwing knives" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "магический метательный нож" +msgstr[1] "несколько магических метательных ножей" +msgstr[2] "много магических метательныых ножей" +msgstr[3] "магические метательные ножи" #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -91995,6 +92421,9 @@ msgid "" "ineffective cutting edge and odd shape makes it unsuitable for use as a " "tool." msgstr "" +"Тонкий и плоский нож, предназначенный для метания, обёрнутый эфирным " +"пламенем. Из-за неэффективной режущей кромки и особой формы непригоден для " +"использования в качестве инструмента." #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -92002,6 +92431,9 @@ msgid "" "A thin and flat knife made for throwing, emanates cold. Its ineffective " "cutting edge and odd shape makes it unsuitable for use as a tool." msgstr "" +"Тонкий и плоский нож, предназначенный для метания, излучающий холод. Из-за " +"неэффективной режущей кромки и особой формы непригоден для использования в " +"качестве инструмента." #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -92010,6 +92442,9 @@ msgid "" "sharp. Its ineffective cutting edge and odd shape makes it unsuitable for " "use as a tool." msgstr "" +"Тонкий и плоский нож с широким лезвием, предназначенный для метания, он " +"кажется неестественно острым. Его неэффективная режущая кромка и странная " +"форма делают его непригодным для использования в качестве инструмента." #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -92018,6 +92453,9 @@ msgid "" "covered in dark ooze. Its ineffective cutting edge and odd shape makes it " "unsuitable for use as a tool." msgstr "" +"Тонкий и плоский нож, предназначенный для метания, сделанный из пористой " +"субстанции и покрытый тёмной слизью. Из-за неэффективной режущей кромки и " +"особой формы непригоден для использования в качестве инструмента." #. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py @@ -92025,6 +92463,9 @@ msgid "" "A transparent blade seems to radiate intent to be thrown. Its ineffective " "cutting edge and odd shape makes it unsuitable for use as a tool." msgstr "" +"Прозрачный клинок, кажется, излучающий намерение быть брошенным. Из-за " +"неэффективной режущей кромки и особой формы непригоден для использования в " +"качестве инструмента." #: lang/json/GENERIC_from_json.py msgid "parabolan felt patch" @@ -92206,7 +92647,7 @@ msgstr[1] "жаростойкий цемент" msgstr[2] "жаростойкий цемент" msgstr[3] "жаростойкий цемент" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -92361,7 +92802,7 @@ msgstr[1] "шасси шагобота" msgstr[2] "шасси шагобота" msgstr[3] "шасси шагобота" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -92378,7 +92819,7 @@ msgstr[1] "шасси Бигля" msgstr[2] "шасси Бигля" msgstr[3] "шасси Бигля" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -93257,6 +93698,19 @@ msgstr "" "Удаляет из игры всех монстров, кроме тех, которые относятся к категории " "WILDLIFE." +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "Поиск в контейнере" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" +"У некоторых предметов мебели перед поиском вещей внутри необходимо открыть " +"дверцу, чтобы усилить острые ощущения от поиска." + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "Характеристики за навыки" @@ -93423,12 +93877,13 @@ msgstr "иконки видит-игрока, бег, приседание, кр #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" "Добавляет значок индикатора, если существо видит игрока. Добавляет значки " -"состояния для бега, приседания, кровотечения поверх изображения игрока. " -"Предназначен для тайлсета retrodays." +"состояния для бега, приседания, ползания, кровотечения, света поверх " +"изображения игрока. Предназначен для тайлсета retrodays, но работает и с " +"neodays." #: lang/json/MOD_INFO_from_json.py msgid "SpeedyDex" @@ -93875,6 +94330,11 @@ msgstr "" "серьёзный арсенал оружия, Хотя он не выцеливает вас, мудро было бы сохранять" " дистанцию." +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "Шагатель Экзоди выстреливает из своей оружейной капсулы!" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "«щёлк!»" @@ -94413,7 +94873,7 @@ msgstr[1] "рыбёшки" msgstr[2] "рыбёшек" msgstr[3] "рыбёшки" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "Крошечная рыбка." @@ -94426,7 +94886,7 @@ msgstr[1] "рыбки" msgstr[2] "рыбок" msgstr[3] "рыбки" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "Маленькая рыбка." @@ -94439,7 +94899,7 @@ msgstr[1] "рыбы" msgstr[2] "рыб" msgstr[3] "рыбы" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "Средняя рыба." @@ -94452,7 +94912,7 @@ msgstr[1] "рыбины" msgstr[2] "рыбин" msgstr[3] "рыбины" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "Большая рыба." @@ -94465,7 +94925,7 @@ msgstr[1] "огромные рыбины" msgstr[2] "огромных рыбин" msgstr[3] "огромные рыбины" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "Огромная рыбина." @@ -94643,7 +95103,7 @@ msgstr[1] "сиги" msgstr[2] "сиг" msgstr[3] "сиги" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -94660,7 +95120,7 @@ msgstr[1] "большеротых окуня" msgstr[2] "большеротых окуней" msgstr[3] "большеротые окуни" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "Большеротый окунь. Очень популярен среди рыболовов-спортсменов." @@ -94673,7 +95133,7 @@ msgstr[1] "малоротых окуня" msgstr[2] "малоротых окуней" msgstr[3] "малоротые окуни" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -94690,7 +95150,7 @@ msgstr[1] "полосатых окуня" msgstr[2] "полосатых окуней" msgstr[3] "полосатые окуни" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -94707,7 +95167,7 @@ msgstr[1] "белых окуня" msgstr[2] "белых окуней" msgstr[3] "белые окуни" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -94756,7 +95216,7 @@ msgstr[1] "солнечника" msgstr[2] "солнечников" msgstr[3] "солнечники" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "Рыба-луна. Маленькая рыбка, родственная окуню и солнечнику." @@ -94769,7 +95229,7 @@ msgstr[1] "обыкновенных солнечника" msgstr[2] "обыкновенных солнечников" msgstr[3] "обыкновенные солнечники" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "Обыкновенный солнечник. Маленькая рыбка, родственная окуню." @@ -94798,7 +95258,7 @@ msgstr[1] "красногрудых солнечника" msgstr[2] "красногрудых солнечников" msgstr[3] "красногрудые солнечники" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "Красногрудый солнечник. Маленькая рыбка, родственная окуню." @@ -94811,7 +95271,7 @@ msgstr[1] "зелёных солнечника" msgstr[2] "зелёных солнечников" msgstr[3] "зелёные солнечники" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "Зелёный солнечник. Маленькая рыбка, родственная окуню." @@ -94824,7 +95284,7 @@ msgstr[1] "длинноухих солнечника" msgstr[2] "длинноухих солнечников" msgstr[3] "длинноухие солнечники" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "Длинноухий солнечник. Маленькая рыбка, родственная окуню." @@ -94837,7 +95297,7 @@ msgstr[1] "красноухих солнечника" msgstr[2] "красноухих солнечников" msgstr[3] "красноухие солнечники" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "Красноухий солнечник. Маленькая рыбка, родственная окуню." @@ -94850,7 +95310,7 @@ msgstr[1] "каменных окуня" msgstr[2] "каменных окуней" msgstr[3] "каменные окуни" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -94867,7 +95327,7 @@ msgstr[1] "ситцевых окуня" msgstr[2] "ситцевых окуней" msgstr[3] "ситцевые окуни" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -94913,7 +95373,7 @@ msgstr[1] "канальных сомика" msgstr[2] "канальных сомиков" msgstr[3] "канальные сомики" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "Канальный сомик, у этой рыбы раздвоенный хвост и длинные усы." @@ -94926,7 +95386,7 @@ msgstr[1] "белых сомика" msgstr[2] "белых сомиков" msgstr[3] "белые сомики" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "Белый сомик, маленькая усатая рыбка с широкой головой." @@ -95046,7 +95506,7 @@ msgstr[1] "сильных семотилуса" msgstr[2] "сильных семотилусов" msgstr[3] "сильные семотилусы" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -95082,7 +95542,7 @@ msgstr[1] "рака" msgstr[2] "раков" msgstr[3] "раки" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -95122,7 +95582,7 @@ msgstr "" "здесь не были построены дамбы. Возможно, у них появился второй шанс, так как" " дамбы больше не работают." -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -95139,7 +95599,7 @@ msgstr[1] "гигантских рака" msgstr[2] "гигантских раков" msgstr[3] "гигантские раки" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -95156,7 +95616,7 @@ msgstr[1] "рака-колосса" msgstr[2] "раков-колоссов" msgstr[3] "раки-колоссы" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "Огромный серый рак-мутант с клешнями и длинными усиками." @@ -96009,7 +96469,7 @@ msgstr[1] "слившиеся стрекозы" msgstr[2] "слившиеся стрекозы" msgstr[3] "слившиеся стрекозы" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -96257,7 +96717,7 @@ msgstr[3] "ракетные пауки" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -98414,7 +98874,7 @@ msgstr[1] "пиренейских горных" msgstr[2] "пиренейских горных" msgstr[3] "пиренейские горные" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -98673,7 +99133,7 @@ msgstr[1] "лося" msgstr[2] "лосей" msgstr[3] "лоси" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -98885,7 +99345,7 @@ msgstr[2] "ягнят" msgstr[3] "ягнята" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -99281,10 +99741,11 @@ msgstr[3] "отладочные монстры" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -99295,6 +99756,19 @@ msgstr "%s тает!" msgid "This monster exists only for testing purposes." msgstr "Этот монстр существует только для целей тестирования." +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "монстр со слабым местом" +msgstr[1] "монстра со слабым местом" +msgstr[2] "монстров со слабым местом" +msgstr[3] "монстры со слабым местом" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "Этот монстр существует только для тестирования слабых мест." + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -102139,7 +102613,7 @@ msgid "" "wears a battered armor with the SWAT logo emblazoned on the front." msgstr "" "Зомби, когда-то бывший членом специального подразделения полиции. На нем все" -" еще надета побитая броня с надписью SWAT на груди." +" еще надета побитая броня с надписью СПЕЦНАЗ на груди." #: lang/json/MONSTER_from_json.py msgid "tough zombie" @@ -102247,7 +102721,7 @@ msgstr[1] "костепила" msgstr[2] "костепилов" msgstr[3] "костепилы" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -102267,7 +102741,7 @@ msgstr[1] "кислотных доктора" msgstr[2] "кислотных докторов" msgstr[3] "кислотные доктора" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -102505,7 +102979,7 @@ msgstr[1] "нестабильных плотераптора" msgstr[2] "нестабильных плотерапторов" msgstr[3] "нестабильные плотерапторы" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -102661,17 +103135,18 @@ msgstr[3] "зомби-обгорелыши" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -103237,7 +103712,7 @@ msgstr[1] "гангренозные плоти" msgstr[2] "гангренозные плоти" msgstr[3] "гангренозные плоти" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -103295,7 +103770,7 @@ msgstr[1] "ножничника" msgstr[2] "ножничников" msgstr[3] "ножничники" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -103314,7 +103789,7 @@ msgstr[1] "свисающие потроха" msgstr[2] "свисающие потроха" msgstr[3] "свисающие потроха" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -103963,7 +104438,7 @@ msgstr[1] "Шайя Лабафа" msgstr[2] "Шайя Лабафов" msgstr[3] "Шайя Лабафы" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -106482,7 +106957,7 @@ msgstr[1] "блуждающие огни" msgstr[2] "блуждающие огни" msgstr[3] "блуждающие огни" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -107237,7 +107712,7 @@ msgstr[1] "целофиза" msgstr[2] "целофизов" msgstr[3] "целофизы" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -107254,7 +107729,7 @@ msgstr[1] "дилофозавра" msgstr[2] "дилофозавров" msgstr[3] "дилофозавры" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -107271,7 +107746,7 @@ msgstr[1] "цератозавра" msgstr[2] "цератозавров" msgstr[3] "цератозавры" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -107290,7 +107765,7 @@ msgstr[1] "спинозавра" msgstr[2] "спинозавров" msgstr[3] "спинозавры" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -107308,7 +107783,7 @@ msgstr[1] "аллозавра" msgstr[2] "аллозавров" msgstr[3] "аллозавры" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -107324,7 +107799,7 @@ msgstr[1] "акрокантозавра" msgstr[2] "акрокантозавров" msgstr[3] "акрокантозавры" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -107343,7 +107818,7 @@ msgstr[1] "сиатса" msgstr[2] "сиатсов" msgstr[3] "сиатсы" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " @@ -107352,6 +107827,23 @@ msgstr "" "Огромный хищный двуногий динозавр с длинными когтями и сильными хваткими " "лапами." +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "горгозавр" +msgstr[1] "горгозавра" +msgstr[2] "горгозавров" +msgstr[3] "горгозавры" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" +"Огромные зубы, свирепые глаза и мощное тело, чтобы нести их вперёд, с двумя " +"маленькими лапами и хохолком с перьями и хвостом." + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" @@ -107360,7 +107852,7 @@ msgstr[1] "альбертозавра" msgstr[2] "альбертозавров" msgstr[3] "альбертозавры" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -107377,7 +107869,7 @@ msgstr[1] "цяньчжоузавра" msgstr[2] "цяньчжоузавров" msgstr[3] "цяньчжоузавры" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -107394,7 +107886,7 @@ msgstr[1] "тираннозавра" msgstr[2] "тираннозавров" msgstr[3] "тираннозавры" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -107411,7 +107903,7 @@ msgstr[1] "компсогната" msgstr[2] "компсогнатов" msgstr[3] "компсогнаты" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -107428,7 +107920,7 @@ msgstr[1] "галлимима" msgstr[2] "галлимимов" msgstr[3] "галлимимы" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -107462,7 +107954,7 @@ msgstr[1] "нотронихуса" msgstr[2] "нотронихусов" msgstr[3] "нотронихусы" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -107479,7 +107971,7 @@ msgstr[1] "дейнониха" msgstr[2] "дейнонихов" msgstr[3] "дейнонихи" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -107530,7 +108022,7 @@ msgstr[1] "амаргазавра" msgstr[2] "амаргазавров" msgstr[3] "амаргазавры" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -107547,7 +108039,7 @@ msgstr[1] "апатозавра" msgstr[2] "апатозавров" msgstr[3] "апатозавры" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -107565,7 +108057,7 @@ msgstr[1] "бронтозавра" msgstr[2] "бронтозавров" msgstr[3] "бронтозавры" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -107582,7 +108074,7 @@ msgstr[1] "диплодока" msgstr[2] "диплодоков" msgstr[3] "диплодоки" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -107597,7 +108089,7 @@ msgstr[1] "камаразавра" msgstr[2] "камаразавров" msgstr[3] "камаразавры" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -107614,7 +108106,7 @@ msgstr[1] "брахиозавра" msgstr[2] "брахиозавров" msgstr[3] "брахиозавры" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -107631,7 +108123,7 @@ msgstr[1] "аламозавра" msgstr[2] "аламозавров" msgstr[3] "аламозавры" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -107648,7 +108140,7 @@ msgstr[1] "скутеллозавра" msgstr[2] "скутеллозавров" msgstr[3] "скутеллозавры" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -107664,7 +108156,7 @@ msgstr[1] "стегозавра" msgstr[2] "стегозавров" msgstr[3] "стегозавры" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -107680,7 +108172,7 @@ msgstr[1] "диоплозавра" msgstr[2] "диоплозавров" msgstr[3] "диоплозавры" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -107697,7 +108189,7 @@ msgstr[1] "анкилозавра" msgstr[2] "анкилозавров" msgstr[3] "анкилозавры" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -107714,7 +108206,7 @@ msgstr[1] "нодозавра" msgstr[2] "нодозавров" msgstr[3] "нодозавры" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -107730,7 +108222,7 @@ msgstr[1] "эдмонтонии" msgstr[2] "эдмонтоний" msgstr[3] "эдмонтонии" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -107747,7 +108239,7 @@ msgstr[1] "камптозавра" msgstr[2] "камптозавров" msgstr[3] "камптозавры" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -107764,7 +108256,7 @@ msgstr[1] "паразауролофа" msgstr[2] "паразауролофов" msgstr[3] "паразауролофы" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "Огромный пёстрый динозавр с четырьмя ногами и тупым головным гребнем." @@ -107777,7 +108269,7 @@ msgstr[1] "майазавра" msgstr[2] "майазавров" msgstr[3] "майазавры" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -107794,7 +108286,7 @@ msgstr[1] "коритозавра" msgstr[2] "коритозавров" msgstr[3] "коритозавры" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -107811,7 +108303,7 @@ msgstr[1] "эдмонтозавра" msgstr[2] "эдмонтозавров" msgstr[3] "эдмонтозавры" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "Огромный чешуйчатый динозавр с широким беззубым клювом." @@ -107824,7 +108316,7 @@ msgstr[1] "пахицефалозавра" msgstr[2] "пахицефалозавров" msgstr[3] "пахицефалозавры" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -107841,7 +108333,7 @@ msgstr[1] "пахиринозавра" msgstr[2] "пахиринозавров" msgstr[3] "пахиринозавры" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -107858,7 +108350,7 @@ msgstr[1] "пентацератопса" msgstr[2] "пентацератопсов" msgstr[3] "пентацератопсы" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -107875,7 +108367,7 @@ msgstr[1] "космоцератопса" msgstr[2] "космоцератопсов" msgstr[3] "космоцератопсы" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -107893,7 +108385,7 @@ msgstr[1] "торозавра" msgstr[2] "торозавров" msgstr[3] "торозавры" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -107910,7 +108402,7 @@ msgstr[1] "трицератопса" msgstr[2] "трицератопсов" msgstr[3] "трицератопсы" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -107927,7 +108419,7 @@ msgstr[1] "диморфодона" msgstr[2] "диморфодон" msgstr[3] "диморфодоны" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -107944,7 +108436,7 @@ msgstr[1] "птеранодона" msgstr[2] "птеранодонов" msgstr[3] "птеранодоны" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -107961,7 +108453,7 @@ msgstr[1] "кетцалькоатля" msgstr[2] "кетцалькоатлей" msgstr[3] "кетцалькоатли" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -107978,7 +108470,7 @@ msgstr[1] "мозазавра" msgstr[2] "мозазавров" msgstr[3] "мозазавры" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -107995,7 +108487,7 @@ msgstr[1] "галлимима био-оперативника" msgstr[2] "галлимимов био-оперативников" msgstr[3] "галлимимы био-оперативники" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -108012,7 +108504,7 @@ msgstr[1] "пахицефалозавра-биооператора" msgstr[2] "пахицефалозавров-биооператоров" msgstr[3] "пахицефалозавры-биооператоры" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -108029,7 +108521,7 @@ msgstr[1] "трицератопса био-оперативника" msgstr[2] "трицератопсов био-оперативников" msgstr[3] "трицератопсы био-оперативники" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -108046,7 +108538,7 @@ msgstr[1] "велоцираптора био-оперативника" msgstr[2] "велоцирапторов био-оперативников" msgstr[3] "велоцирапторы био-оперативники" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -108063,7 +108555,7 @@ msgstr[1] "дейнониха био-оперативника" msgstr[2] "дейнонихов био-оперативников" msgstr[3] "дейнонихи био-оперативники" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -108080,7 +108572,7 @@ msgstr[1] "диморфодона био-оперативника" msgstr[2] "диморфодонов био-оперативников" msgstr[3] "диморфодоны био-оперативники" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -108097,7 +108589,7 @@ msgstr[1] "спинозавра био-оперативника" msgstr[2] "спинозавров био-оперативников" msgstr[3] "спинозавры био-оперативники" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -108240,6 +108732,25 @@ msgstr "" "отверстий, превращая его в неловко переваливающаяся массу из покрытой " "плесенью плоти." +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "грибной горгозавр-зомби" +msgstr[1] "грибных горгозавра-зомби" +msgstr[2] "грибных горгозавров-зомби" +msgstr[3] "грибные горгозавры-зомби" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" +"Когда-то это было большим хищным динозавром с массивными челюстями. Теперь " +"грибные усики растут из его рта, глаз и других отверстий, превращая его в " +"неловко переваливающаяся массу из покрытой плесенью плоти." + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -108954,6 +109465,14 @@ msgstr[1] "детеныша динозавра серо-желтого цвет msgstr[2] "детенышей динозавра серо-желтого цвета" msgstr[3] "детеныши динозавра серо-желтого цвета" +#: lang/json/MONSTER_from_json.py +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" +msgstr[0] "детеныш динозавра зелено-пурпурного цвета" +msgstr[1] "детеныша динозавра зелено-пурпурного цвета" +msgstr[2] "детенышей динозавра зелено-пурпурного цвета" +msgstr[3] "детеныши динозавра зелено-пурпурного цвета" + #: lang/json/MONSTER_from_json.py msgid "red and green hatchling" msgid_plural "red and green hatchlings" @@ -108970,14 +109489,6 @@ msgstr[1] "детеныша динозавра серо-белого цвета" msgstr[2] "детенышей динозавра серо-белого цвета" msgstr[3] "детеныши динозавра серо-белого цвета" -#: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" -msgstr[0] "детеныш динозавра зелено-пурпурного цвета" -msgstr[1] "детеныша динозавра зелено-пурпурного цвета" -msgstr[2] "детенышей динозавра зелено-пурпурного цвета" -msgstr[3] "детеныши динозавра зелено-пурпурного цвета" - #: lang/json/MONSTER_from_json.py msgid "amargasaurus hatchling" msgid_plural "amargasaurus hatchlings" @@ -109052,7 +109563,6 @@ msgstr[2] "пурпурно-зелёных двуногих динозаврик msgstr[3] "пурпурно-зелёные двуногие динозаврики" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -109077,31 +109587,112 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "Детёныш огромного хищного динозавра с большим веером на спине." #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" -msgstr[0] "бело-бурый четвероногий динозаврик" -msgstr[1] "бело-бурых четвероногих динозаврика" -msgstr[2] "бело-бурых четвероногих динозавриков" -msgstr[3] "бело-бурые четвероногие динозаврики" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" +msgstr[0] "молодой аллозавр" +msgstr[1] "молодых аллозавра" +msgstr[2] "молодых аллозавров" +msgstr[3] "молодые аллозавры" +#. ~ Description for juvenile allosaurus #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" -msgstr[0] "красно-белый двуногий динозаврик" -msgstr[1] "красно-белых двуногих динозаврика" -msgstr[2] "красно-белых двуногих динозавриков" -msgstr[3] "красно-белые двуногие динозаврики" +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "Большой двуногий хищный молодой динозавр." -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" +msgstr[0] "молодой акрокантозавр" +msgstr[1] "молодых акрокантозавра" +msgstr[2] "молодых акрокантозавров" +msgstr[3] "молодые акрокантозавры" + +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." msgstr "" -"Маленький двуногий плотоядный детеныш динозавра с огромными блестящими " -"глазами. Он может принадлежать ко множеству разных видов." +"Большой хищный двуногий молодой динозавр с высоким гребнем, проходящим по " +"всей длине спины, покрытый мощной мускулатурой." + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "детёныш сиатс" +msgstr[1] "детёныша сиатс" +msgstr[2] "детёнышей сиатс" +msgstr[3] "детёныши сиатс" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" +"Большой хищный двуногий молодой динозавр с длинными когтями и сильными " +"хваткими лапами." + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "молодой горгозавр" +msgstr[1] "молодых горгозавра" +msgstr[2] "молодых горгозавров" +msgstr[3] "молодые горгозавры" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" +"Огромные зубы, свирепые глаза и мощное тело молодого динозавра, чтобы нести " +"их вперёд, с двумя маленькими лапами и хохолком с перьями и хвостом." + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "молодой альбертозавр" +msgstr[1] "молодых альбертозавра" +msgstr[2] "молодых альбертозавров" +msgstr[3] "молодые альбертозавры" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" +"Огромные зубы, свирепые глаза и мощное тело молодого динозавра, чтобы нести " +"их вперёд, с двумя длинными мощными лапами и хохолком с перьями и хвостом." + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "молодой цяньчжоузавр" +msgstr[1] "молодых цяньчжоузавра" +msgstr[2] "молодых цяньчжоузавров" +msgstr[3] "молодые цяньчжоузавры" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" +"Большой, двуногий, покрытый перьями молодой динозавр с длинной пастью с " +"острыми зубами, похожей на морду аллигатора." + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "молодой тираннозавр" +msgstr[1] "молодых тираннозавра" +msgstr[2] "молодых тираннозавров" +msgstr[3] "молодые тираннозавры" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "Молодь огромного хищного динозавра с большими острыми зубами." @@ -109392,6 +109983,23 @@ msgstr "" "Большой, покачивающийся труп хищного двуногого динозавра с длинными когтями " "и сильными хваткими лапами." +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "горгозавр-зомби" +msgstr[1] "горгозавра-зомби" +msgstr[2] "горгозавров-зомби" +msgstr[3] "горгозавры-зомби" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" +"Покачивающийся огромный труп динозавра с массивной челюстью, источающей " +"чёрную жидкость." + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -109536,7 +110144,7 @@ msgstr[1] "камаразавра-зомби" msgstr[2] "камаразавров-зомби" msgstr[3] "камаразавры-зомби" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -110144,6 +110752,7 @@ msgstr[3] "дилофозавры-горелые зомби" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -110208,6 +110817,14 @@ msgstr[1] "сиатса-горелых зомби" msgstr[2] "сиатсов-горелых зомби" msgstr[3] "сиатсы-горелые зомби" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "горгозавр-горелый зомби" +msgstr[1] "горгозавра-горелых зомби" +msgstr[2] "горгозавров-горелых зомби" +msgstr[3] "горгозавры-горелые зомби" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -110746,6 +111363,23 @@ msgstr "" "и сильными хватательными руками. Всё его тело покрыто раздутыми мышцами и " "набухшими, гноящимися ранами." +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "горгозавр-голиаф" +msgstr[1] "горгозавра-голиафа" +msgstr[2] "горгозавров-голиафов" +msgstr[3] "горгозавры-голиафы" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" +"Массивные челюсти, несомые вертикальным телом, покрытым бугрящемся раздутыми" +" мышцами и опухшими гнойными ранами." + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -110788,7 +111422,7 @@ msgstr[1] "гневрекса" msgstr[2] "гневрексов" msgstr[3] "гневрексы" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -110805,7 +111439,7 @@ msgstr[1] "отвратных галлимима" msgstr[2] "отвратных галлимимов" msgstr[3] "отвратные галлимимы" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -110824,7 +111458,7 @@ msgstr[1] "гнусных нотронихуса" msgstr[2] "гнусных нотронихусов" msgstr[3] "гнусные нотронихусы" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -110904,7 +111538,7 @@ msgstr[1] "апатозавра на анаболиках" msgstr[2] "апатозавров на анаболиках" msgstr[3] "апатозавры на анаболиках" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -110989,7 +111623,7 @@ msgstr[1] "аламозавра на анаболиках" msgstr[2] "аламозавров на анаболиках" msgstr[3] "аламозавры на анаболиках" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -111318,14 +111952,31 @@ msgstr "" "раздутыми мышцами и набухшими, гноящимися ранами." #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" -msgstr[0] "теневой зомби-спинозавр" -msgstr[1] "теневых зомби-спинозавра" -msgstr[2] "теневых зомби-спинозавров" -msgstr[3] "теневые зомби-спинозавры" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "цератозавр-теневой зомби" +msgstr[1] "цератозавра-теневых зомби" +msgstr[2] "цератозавров-теневых зомби" +msgstr[3] "цератозавры-теневые зомби" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" +"Жутковатая тень охватывает это существо. Вы можете разглядеть силуэт " +"огромного двуногого динозавра с рогами, шипами и большими острыми зубами." + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" +msgstr[0] "спинозавр-теневой зомби" +msgstr[1] "спинозавра-теневых зомби" +msgstr[2] "спинозавров-теневых зомби" +msgstr[3] "спинозавры-теневые зомби" + +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -111337,86 +111988,88 @@ msgstr "" "и V-образная морда." #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" -msgstr[0] "теневой тираннозомби рекс" -msgstr[1] "теневых тираннозомби рекса" -msgstr[2] "теневых тираннозомби рексов" -msgstr[3] "теневые тираннозомби рексы" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" +msgstr[0] "аллозавр-теневой зомби" +msgstr[1] "аллозавра-теневых зомби" +msgstr[2] "аллозавров-теневых зомби" +msgstr[3] "аллозавры-теневые зомби" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" "Жутковатая тень охватывает это существо. Вы можете разглядеть силуэт " -"большого двуногого динозавра с подобием ободранного оперения. У него большая" -" голова с кучей зубов в пасти." +"большого двуногого динозавра с большими острыми зубами." #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" -msgstr[0] "теневой альбертозавр" -msgstr[1] "теневых альбертозавра" -msgstr[2] "теневых альбертозавров" -msgstr[3] "теневые альбертозавры" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" +msgstr[0] "горгозавр-теневой зомби" +msgstr[1] "горгозавра-теневых зомби" +msgstr[2] "горгозавров-теневых зомби" +msgstr[3] "горгозавры-теневые зомби" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" "Жутковатая тень охватывает это существо. Вы можете разглядеть силуэт " "большого двуногого динозавра с подобием ободранного оперения. У него большая" -" голова, а под ней длинные хваткие когти." +" голова, выглядящая так, будто способна вместить кучу огромных острых зубов." #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" -msgstr[0] "теневой анкилозавр" -msgstr[1] "теневых анкилозавра" -msgstr[2] "теневых анкилозавров" -msgstr[3] "теневые анкилозавры" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" +msgstr[0] "альбертозавр-теневой зомби" +msgstr[1] "альбертозавра-теневых зомби" +msgstr[2] "альбертозавров-теневых зомби" +msgstr[3] "альбертозавры-теневые зомби" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" "Жутковатая тень охватывает это существо. Вы можете разглядеть силуэт " -"большого тяжелобронированного четвероногого динозавра с шипастым хвостом." +"большого двуногого динозавра с подобием ободранного оперения. У него большая" +" голова, а под ней длинные хваткие когти." #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" -msgstr[0] "теневой аллозавр" -msgstr[1] "теневых аллозавра" -msgstr[2] "теневых аллозавров" -msgstr[3] "теневые аллозавры" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" +msgstr[0] "теневой тираннозомби рекс" +msgstr[1] "теневых тираннозомби рекса" +msgstr[2] "теневых тираннозомби рексов" +msgstr[3] "теневые тираннозомби рексы" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" "Жутковатая тень охватывает это существо. Вы можете разглядеть силуэт " -"большого двуногого динозавра с большими острыми зубами." +"большого двуногого динозавра с подобием ободранного оперения. У него большая" +" голова с кучей зубов в пасти." #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" -msgstr[0] "теневой нотронихус" -msgstr[1] "теневых нотронихуса" -msgstr[2] "теневых нотронихусов" -msgstr[3] "теневые нотронихусы" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" +msgstr[0] "нотронихус-теневой зомби" +msgstr[1] "нотронихуса-теневых зомби" +msgstr[2] "нотронихусов-теневых зомби" +msgstr[3] "нотронихусы-теневые зомби" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -111427,14 +112080,14 @@ msgstr "" "длинные изогнутые когти." #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" -msgstr[0] "теневой дейноних" -msgstr[1] "теневых дейнониха" -msgstr[2] "теневых дейнонихов" -msgstr[3] "теневые дейнонихи" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" +msgstr[0] "дейноних-теневой зомби" +msgstr[1] "дейнониха-теневых зомби" +msgstr[2] "дейнонихов-теневых зомби" +msgstr[3] "дейнонихи-теневые зомби" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -111446,14 +112099,14 @@ msgstr "" "серповидный коготь." #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" -msgstr[0] "теневой ютараптор" -msgstr[1] "теневых ютараптора" -msgstr[2] "теневых ютараптора" -msgstr[3] "теневые ютарапторы" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" +msgstr[0] "ютараптор-теневой зомби" +msgstr[1] "ютараптора-теневых зомби" +msgstr[2] "ютарапторов-теневых зомби" +msgstr[3] "ютарапторы-теневые зомби" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -111465,21 +112118,21 @@ msgstr "" "серповидный коготь." #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" -msgstr[0] "теневой цератозавр" -msgstr[1] "теневых цератозавра" -msgstr[2] "теневых цератозавров" -msgstr[3] "теневые цератозавры" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" +msgstr[0] "анкилозавр-теневой зомби" +msgstr[1] "анкилозавра-теневых зомби" +msgstr[2] "анкилозавров-теневых зомби" +msgstr[3] "анкилозавры-теневые зомби" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" "Жутковатая тень охватывает это существо. Вы можете разглядеть силуэт " -"огромного двуногого динозавра с рогами, шипами и большими острыми зубами." +"большого тяжелобронированного четвероногого динозавра с шипастым хвостом." #: lang/json/MONSTER_from_json.py msgid "Bone Dragon" @@ -111518,7 +112171,7 @@ msgstr[1] "спинозавра-скелета" msgstr[2] "спинозавров-скелетов" msgstr[3] "спинозавры-скелеты" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -111535,7 +112188,8 @@ msgstr[1] "аллозавра-скелета" msgstr[2] "аллозавров-скелетов" msgstr[3] "аллозавры-скелеты" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -111552,7 +112206,7 @@ msgstr[1] "акрокантозавра-скелета" msgstr[2] "акрокантозавров-скелетов" msgstr[3] "акрокантозавры-скелеты" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -111570,7 +112224,7 @@ msgstr[1] "сиата-скелета" msgstr[2] "сиатов-скелетов" msgstr[3] "сиаты-скелеты" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -111579,6 +112233,14 @@ msgstr "" "Чудовище из плотных костей, щерящееся с высоты бритвенными зубами, с которых" " капает чёрная слизь. У него длинные когти и мощные хватательные лапы." +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "горгозавр-скелет" +msgstr[1] "горгозавра-скелета" +msgstr[2] "горгозавров-скелетов" +msgstr[3] "горгозавры-скелеты" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" @@ -111587,7 +112249,7 @@ msgstr[1] "альбертозавра-скелета" msgstr[2] "альбертозавров-скелетов" msgstr[3] "альбертозавры-скелеты" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -111604,7 +112266,7 @@ msgstr[1] "цяньчжоузавра-скелета" msgstr[2] "цяньчжоузавров-скелетов" msgstr[3] "цяньчжоузавры-скелеты" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -111638,7 +112300,7 @@ msgstr[1] "галлилима-скелета" msgstr[2] "галлилимов-скелетов" msgstr[3] "галлилимы-скелеты" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -111654,7 +112316,7 @@ msgstr[1] "нотронихуса-скелета" msgstr[2] "нотронихусов-скелетов" msgstr[3] "нотронихусы-скелеты" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -111671,8 +112333,8 @@ msgstr[1] "дейнониха-скелета" msgstr[2] "дейнонихов-скелетов" msgstr[3] "дейнонихи-скелеты" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -111697,7 +112359,7 @@ msgstr[1] "бронированных амаргазавра" msgstr[2] "бронированных амаргазавров" msgstr[3] "бронированные амаргазавры" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -111716,7 +112378,7 @@ msgstr[1] "бронированных апатозоавра" msgstr[2] "бронированных апатозоавров" msgstr[3] "бронированные апатозоавры" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -111733,7 +112395,7 @@ msgstr[1] "бронированных бронтозавра" msgstr[2] "бронированных бронтозавров" msgstr[3] "бронированные бронтозавры" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -111750,7 +112412,7 @@ msgstr[1] "бронированных диплодока" msgstr[2] "бронированных диплодоков" msgstr[3] "бронированные диплодоки" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -111767,7 +112429,7 @@ msgstr[1] "бронированных камаразавра" msgstr[2] "бронированных камаразавров" msgstr[3] "бронированные камаразавры" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -111784,7 +112446,7 @@ msgstr[1] "бронированных брахиозавра" msgstr[2] "бронированных брахиозавров" msgstr[3] "бронированные брахиозавры" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -111801,7 +112463,7 @@ msgstr[1] "бронированных аламозавра" msgstr[2] "бронированных аламозавров" msgstr[3] "бронированные аламозавры" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -111818,7 +112480,7 @@ msgstr[1] "стегозавра-скелета" msgstr[2] "стегозавров-скелетов" msgstr[3] "стегозавры-скелеты" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -111836,7 +112498,7 @@ msgstr[1] "диоплозавра-скелета" msgstr[2] "диоплозавров-скелетов" msgstr[3] "диоплозавры-скелеты" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -111855,7 +112517,7 @@ msgstr[1] "костяных оплота" msgstr[2] "костяных оплотов" msgstr[3] "костяные оплоты" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -111874,7 +112536,7 @@ msgstr[1] "бронированных нодозавра" msgstr[2] "бронированных нодозавров" msgstr[3] "бронированные нодозавры" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -111891,7 +112553,7 @@ msgstr[1] "бронированные эдмонтонии" msgstr[2] "бронированных эдмонтоний" msgstr[3] "бронированные эдмонтонии" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -111908,7 +112570,7 @@ msgstr[1] "бронированных камптозавра" msgstr[2] "бронированных камптозавров" msgstr[3] "бронированные камптозавры" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -111925,7 +112587,7 @@ msgstr[1] "бронированных майазавра" msgstr[2] "бронированных майазавров" msgstr[3] "бронированные майазавры" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -111942,7 +112604,7 @@ msgstr[1] "бронированных паразауролофа" msgstr[2] "бронированных паразауролофов" msgstr[3] "бронированные паразауролофы" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -111959,7 +112621,7 @@ msgstr[1] "бронированных коритозавра" msgstr[2] "бронированных коритозавров" msgstr[3] "бронированные коритозавры" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -111976,7 +112638,7 @@ msgstr[1] "бронированных эдмонтозавра" msgstr[2] "бронированных эдмонтозавров" msgstr[3] "бронированные эдмонтозавры" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -111993,7 +112655,7 @@ msgstr[1] "защищённых пахицефалозавра" msgstr[2] "защищённых пахицефалозавров" msgstr[3] "защищённые пахицефалозавры" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -112010,7 +112672,7 @@ msgstr[1] "защищённых пахиринозавра" msgstr[2] "защищённых пахиринозавров" msgstr[3] "защищённые пахиринозавры" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -112028,7 +112690,7 @@ msgstr[1] "защищённых пентацератопса" msgstr[2] "защищённых пентацератопсов" msgstr[3] "защищённые пентацератопсы" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -112045,7 +112707,7 @@ msgstr[1] "бронированных космоцераптопса" msgstr[2] "бронированных космоцераптопсов" msgstr[3] "бронированные космоцераптопсы" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -112062,7 +112724,7 @@ msgstr[1] "бронированных торозавра" msgstr[2] "бронированных торозавров" msgstr[3] "бронированные торозавры" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -112079,7 +112741,7 @@ msgstr[1] "бронированных трицератопса" msgstr[2] "бронированных трицератопсов" msgstr[3] "бронированные трицератопсы" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -112096,7 +112758,7 @@ msgstr[1] "тигромозавр рекса" msgstr[2] "тигромозавр рексов" msgstr[3] "тигромозавр рексы" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -112115,7 +112777,7 @@ msgstr[1] "танкилозавра" msgstr[2] "танкилозавров" msgstr[3] "танкилозавры" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -112134,7 +112796,7 @@ msgstr[1] "голиаф рекса" msgstr[2] "голиаф рексов" msgstr[3] "голиаф рексы" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -112152,7 +112814,7 @@ msgstr[1] "анкилозавра-халка" msgstr[2] "анкилозавров-халков" msgstr[3] "анкилозавры-халки" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -112170,7 +112832,7 @@ msgstr[1] "зомби-диморфодона" msgstr[2] "зомби-диморфодонов" msgstr[3] "зомби-диморфодоны" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -112224,7 +112886,7 @@ msgstr[1] "CROWS II с крупнокалиберным пулемётом" msgstr[2] "CROWS II с крупнокалиберным пулемётом" msgstr[3] "CROWS II с крупнокалиберным пулемётом" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -112247,7 +112909,7 @@ msgstr[1] "CROWS II с ручным пулемётом" msgstr[2] "CROWS II с ручным пулемётом" msgstr[3] "CROWS II с ручным пулемётом" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -112669,7 +113331,7 @@ msgstr[1] "гончие кузни" msgstr[2] "гончие кузни" msgstr[3] "гончие кузни" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -113068,7 +113730,7 @@ msgstr[1] "жуткобарана" msgstr[2] "жуткобаранов" msgstr[3] "жуткобараны" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -113249,6 +113911,29 @@ msgstr "" "когда не занято безумным уничтожением любого присутствия людского рода на " "своей территории." +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "пламенный кошмар" +msgstr[1] "пламенных кошмаров" +msgstr[2] "пламенных кошмаров" +msgstr[3] "пламенные кошмары" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" +"Колоссальная фигура, словно целиком состоящая из теней, охваченных пламенем." +" Её огромные темные крылья простираются от стены до стены. Два глаза, " +"похожие на горящие угли, смотрят на вас с ненавистью. В одной руке она " +"держит огромный меч, в другой - кнут с множеством ремешков, оба пылают " +"раскаленным пламенем." + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -113616,7 +114301,7 @@ msgstr[1] "большеротых окуня-крекера" msgstr[2] "большеротых окуней-крекеров" msgstr[3] "большеротые окуни-крекеры" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -113996,7 +114681,7 @@ msgstr "" " предназначены для военного патрулирования и сопровождения. Передвигается на" " гидравлических протекторах и вооружён M16A4." -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -116397,26 +117082,26 @@ msgstr "Ненадолго ослепляет врагов" #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Slime Spray" -msgstr "" +msgstr "Брызги слизи" #. ~ Description for Slime Spray #: lang/json/SPELL_from_json.py msgid "Spray slime onto an enemy to slow them down." -msgstr "" +msgstr "Обрызгивает противника слизью, замедляя его." #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Bioluminescent Flare" -msgstr "" +msgstr "Биолюминесцентная вспышка" #. ~ Description for Bioluminescent Flare #: lang/json/SPELL_from_json.py msgid "" "Projects a spray of bioluminescent goo that illuminates the area around it." -msgstr "" +msgstr "Создает брызги биолюминесцентной слизи, которые освещают все вокруг." #: lang/json/SPELL_from_json.py msgid "Short Leap" -msgstr "" +msgstr "Короткий прыжок" #. ~ Description for Short Leap #: lang/json/SPELL_from_json.py @@ -116424,10 +117109,12 @@ msgid "" "You squat down, build up tension in your legs and release. Launching " "yourself quite a distance." msgstr "" +"Вы приседаете, накапливаете напряжение в ногах и распрямляете их. Запускает " +"вас на довольно большое расстояние." #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Crushing Leap" -msgstr "" +msgstr "Давящий прыжок" #. ~ Description for Crushing Leap #: lang/json/SPELL_from_json.py @@ -116436,6 +117123,9 @@ msgid "" "ability to target and land in the way to do maximum damage to any target in " "your way. Death from above." msgstr "" +"Вы приседаете, накапливаете напряжение в ногах и распрямляете их. У вас есть" +" возможность прицелиться и приземлиться так, чтобы нанести максимальный урон" +" любой цели на вашем пути. Смерть свыше." #: lang/json/SPELL_from_json.py msgid "Cranial Explosion" @@ -117516,12 +118206,12 @@ msgstr "сколдовать 3 метательных ножа" msgid "" "You activate your ring and three throwing knives appear, ready to throw!" msgstr "" -"Вы активируете свое кольцо и появляются три метательных ножа, готовых к " +"Вы активируете свое кольцо, и появляются три метательных ножа, готовых к " "броску!" #: lang/json/SPELL_from_json.py msgid "Conjure Random Magical Throwing Blade" -msgstr "" +msgstr "Вызов случайного магического метательного клинка" #. ~ Description for Conjure Random Magical Throwing Blade #: lang/json/SPELL_from_json.py @@ -117529,10 +118219,12 @@ msgid "" "conjures a magical throwing knife, one of the spells specified in extra " "effects" msgstr "" +"вызывает волшебный метательный нож, одно из заклинаний, указанных в " +"дополнительных эффектах" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade I" -msgstr "" +msgstr "Вызов магического метательного клинка I" #. ~ Description for Conjure Magical Throwing Blade I #. ~ Description for Conjure Magical Throwing Blade Fire @@ -117542,16 +118234,16 @@ msgstr "" #. ~ Description for Conjure Magical Throwing Blade Pure #: lang/json/SPELL_from_json.py msgid "conjures 1 magical throwing knife" -msgstr "" +msgstr "вызывает 1 магический метательный нож" #. ~ Message for SPELL 'Conjure Magical Throwing Blade I' #: lang/json/SPELL_from_json.py msgid "You activate your bag and a throwing knife appears, ready to throw!" -msgstr "" +msgstr "Вы активируете сумку, и появляется метательный нож, готовый к броску!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Fire" -msgstr "" +msgstr "Вызов магического огненного метательного клинка" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Fire' #: lang/json/SPELL_from_json.py @@ -117559,10 +118251,12 @@ msgid "" "You activate your bag and a throwing knife wrapped in ethereal flames " "appears, ready to throw!" msgstr "" +"Вы активируете сумку, и появляется метательный нож в эфирном пламени, " +"готовый к броску!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Cold" -msgstr "" +msgstr "Вызов магического морозного метательного клинка" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Cold' #: lang/json/SPELL_from_json.py @@ -117570,10 +118264,12 @@ msgid "" "You activate your bag and a throwing knife emanating cold appears, ready to " "throw!" msgstr "" +"Вы активируете сумку, и появляется излучающий холод метательный нож, готовый" +" к броску!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Cut" -msgstr "" +msgstr "Вызов магического сверхострого метательного клинка" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Cut' #: lang/json/SPELL_from_json.py @@ -117581,10 +118277,12 @@ msgid "" "You activate your bag and a throwing knife with unnaturally sharp edges " "appears, ready to throw!" msgstr "" +"Вы активируете сумку, и появляется неестественно острый метательный нож, " +"готовый к броску!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Biological" -msgstr "" +msgstr "Вызов магического биологического метательного клинка" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Biological' #: lang/json/SPELL_from_json.py @@ -117592,10 +118290,12 @@ msgid "" "You activate your bag and a throwing knife covered in dark ooze appears, " "ready to throw!" msgstr "" +"Вы активируете сумку, и появляется покрытый чёрной слизью метательный нож, " +"готовый к броску!" #: lang/json/SPELL_from_json.py msgid "Conjure Magical Throwing Blade Pure" -msgstr "" +msgstr "Вызов чисто магического метательного клинка" #. ~ Message for SPELL 'Conjure Magical Throwing Blade Pure' #: lang/json/SPELL_from_json.py @@ -117604,6 +118304,9 @@ msgid "" "hand into a shape of knife. It seems vastly more powerful than other knives" " that appear from the bag!" msgstr "" +"Вы активируете свою сумку, и со вспышкой магические энергии в вашей руке " +"сливаются в форму ножа. Он кажется намного более мощным, чем другие ножи, " +"которые появляются из сумки!" #: lang/json/SPELL_from_json.py msgid "Recover Mana" @@ -119593,7 +120296,7 @@ msgstr[3] "шахтёрские каски (вкл)" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -119637,7 +120340,7 @@ msgstr "Выключить" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -120810,7 +121513,7 @@ msgstr[1] "системы введения стимуляторов RX11" msgstr[2] "систем введения стимуляторов RX11" msgstr[3] "системы введения стимуляторов RX11" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -121551,17 +122254,17 @@ msgstr[1] "стрелковых наушников" msgstr[2] "стрелковых наушников" msgstr[3] "стрелковые наушники" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "Вы включили наушники." -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "Батареи наушников разряжены." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -121574,7 +122277,7 @@ msgstr "" "будут блокировать звуки громче определённого уровня децибел. Сейчас наушники" " выключены." -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -121856,7 +122559,6 @@ msgid "You turn the flight helmet on." msgstr "Вы включаете лётный шлем." #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -121870,28 +122572,39 @@ msgstr "" #: lang/json/TOOL_ARMOR_from_json.py msgid "military flight helmet (on)" msgid_plural "military flight helmets (on)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "военный лётный шлем (вкл)" +msgstr[1] "военных лётных шлема (вкл)" +msgstr[2] "военных лётных шлемов (вкл)" +msgstr[3] "военные лётные шлемы (вкл)" + +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" +"Военный лётный шлем с несколькими периодически помигивающими светодиодами. " +"Имеет визор, микрофон и систему шумоподавления. Шлем также снабжен " +"пластиковыми направляющими, позволяющими прикреплять дополнительные приборы." #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "фуражка" +msgstr[1] "фуражки" +msgstr[2] "фуражек" +msgstr[3] "фуражки" #. ~ Use action menu_text for Combo cover. #: lang/json/TOOL_ARMOR_from_json.py msgid "Salute" -msgstr "" +msgstr "Отдание чести" #. ~ Use action msg for Combo cover. #: lang/json/TOOL_ARMOR_from_json.py msgid "You bring your hand to your cover and issue a salute." -msgstr "" +msgstr "Вы подносите руку к фуражке и отдаете честь." #. ~ Description for Combo cover #: lang/json/TOOL_ARMOR_from_json.py @@ -121899,6 +122612,8 @@ msgid "" "A military officer's combo cover, or peaked cap. It conveys an air of " "authority, while keeping the sun out of your eyes." msgstr "" +"Фуражка армейского офицера. Она придаёт авторитета, заодно защищая глаза от " +"солнца." #: lang/json/TOOL_ARMOR_from_json.py msgid "FB51 optical cloak" @@ -122341,7 +123056,7 @@ msgstr[1] "волынки" msgstr[2] "волынок" msgstr[3] "волынки" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -123133,10 +123848,10 @@ msgstr "" #: lang/json/TOOL_ARMOR_from_json.py msgid "Bag of Infinite Throwing Knives" msgid_plural "Bags of Infinite Throwing Knives" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Сумка с бесконечными метательными ножами" +msgstr[1] "Несколько сумок с бесконечными метательными ножами" +msgstr[2] "Много сумок с бесконечными метательными ножами" +msgstr[3] "Сумки с бесконечными метательными ножами" #. ~ Description for Bag of Infinite Throwing Knives #: lang/json/TOOL_ARMOR_from_json.py @@ -123144,6 +123859,8 @@ msgid "" "This bag conjures a magical throwing knife on activation. Only refills when" " worn." msgstr "" +"Эта сумка вызывает волшебный метательный нож при активации. Восполняется " +"только при ношении." #: lang/json/TOOL_ARMOR_from_json.py msgid "magic leather belt" @@ -123169,7 +123886,7 @@ msgstr[1] "Мегингьорда" msgstr[2] "Мегингьордов" msgstr[3] "Мегингьорды" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -123270,7 +123987,7 @@ msgstr[1] "ботинка побега" msgstr[2] "ботинок побега" msgstr[3] "ботинки побега" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -123551,6 +124268,8 @@ msgid "" "An ornate silver ring engraved with daggers that conjures three mundane " "throwing knives on activation." msgstr "" +"Изысканное серебряное кольцо с выгравированными кинжалами, при активации " +"вызывает три обыкновенных метательных ножа." #: lang/json/TOOL_ARMOR_from_json.py msgid "eel ring" @@ -124235,7 +124954,7 @@ msgstr[1] "автономные хирургические лезвия" msgstr[2] "автономные хирургические лезвия" msgstr[3] "автономные хирургические лезвия" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -126554,7 +127273,7 @@ msgstr "" "возникшего в Непале. Благодаря тяжёлому лезвие с изогнутым внутрь лезвием, " "он используется и как инструмент, и как оружие." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -126565,7 +127284,7 @@ msgstr "" "кисточкой на навершии. Один из четырёх основных традиционных видов оружия, " "наряду с саблей дао, копьём цян и посохом гунь." -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -126679,7 +127398,7 @@ msgstr[1] "дао" msgstr[2] "дао" msgstr[3] "дао" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -126747,7 +127466,7 @@ msgstr "" "Был модифицирован и допилен для установки практически на любое оружие, по " "желанию, кроме пистолетов и пистолет-пулеметов." -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -126759,7 +127478,7 @@ msgstr "" "по-прежнему смертоносное оружие, даже несмотря на то, что оно короче, чем " "его более известные родственники." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -126799,7 +127518,7 @@ msgstr "" "Церемониальный кинжал, который носят мужчины-сикхи. Этот экземпляр не " "слишком качественный." -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -126920,7 +127639,7 @@ msgstr "" "Меч со штыкообразным клинком и эфесом сложной формы. Любимое оружие " "джентльменов и пиратов. Лёгкая и быстрая, она делает любую битву стильной." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " @@ -126929,7 +127648,7 @@ msgstr "" "Редкий меч из Японии. Смертелен против небронированных целей и очень " "эффективен против брони." -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -126947,7 +127666,7 @@ msgstr "" "Огромный двуручный меч из Германии. Вы не уверены, должен ли он быть таким " "гнутым." -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -127157,7 +127876,7 @@ msgstr[1] "синтетическая ткань" msgstr[2] "синтетическая ткань" msgstr[3] "синтетическая ткань" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -128136,7 +128855,7 @@ msgstr[1] "электронных наручников" msgstr[2] "электронных наручников" msgstr[3] "электронные наручники" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -131071,12 +131790,12 @@ msgstr "Батарейки мощного фонарика полностью р #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" "Это мощный трубчатый светодиодный фонарик, которыми часто пользуются " -"охранники. Довольно приличное оружие ближнего боя. Его можно включить, если " -"в нём есть заряженные батарейки." +"охранники. Его можно включить, даже под водой, если в нём есть заряженные " +"батарейки." #: lang/json/TOOL_from_json.py msgid "heavy duty flashlight (on)" @@ -131939,6 +132658,47 @@ msgstr[3] "песочные формы для литья" msgid "A mold for casting molten metals into different shapes" msgstr "Форма для литья расплавленных металлов." +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "полировальный камень" +msgstr[1] "полировальных камня" +msgstr[2] "полировальных камней" +msgstr[3] "полировальные камни" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "Большой натуральный камень с плоской поверхностью для шлифования." + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "точильный камень с педальным приводом" +msgstr[1] "точильных камня с педальным приводом" +msgstr[2] "точильных камней с педальным приводом" +msgstr[3] "точильные камни с педальным приводом" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" +"Круглый точильный камень с педальным приводом, пригодный для шлифования " +"металла." + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "стальной скребок" +msgstr[1] "стальных скребка" +msgstr[2] "стальных скребков" +msgstr[3] "стальные скребки" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "Инструмент из закаленной стали, похожий на скобель, но по металлу." + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -132804,7 +133564,7 @@ msgstr[1] "пары ножниц стригаля" msgstr[2] "пар ножниц стригаля" msgstr[3] "ножницы стригаля" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "Крупные, тяжелые ножницы, предназначенные для стрижки овечьей шерсти." @@ -132817,7 +133577,7 @@ msgstr[1] "электрические машинки для стрижки ше msgstr[2] "электрических машинок для стрижки шерсти" msgstr[3] "электрические машинки для стрижки шерсти" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -132877,6 +133637,41 @@ msgstr "" "Используйте его на подходящем животном, чтобы поймать его, либо же " "используйте на пустом тайле, чтобы выпустить животное." +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "стеклянный террариум" +msgstr[1] "стеклянных террариума" +msgstr[2] "стеклянных террариумов" +msgstr[3] "стеклянные террариумы" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" +"Стеклянный контейнер, предназначенный для растений и/или насекомых. Они " +"бывают разных размеров." + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "лампа выживальщика с гигантским светлячком" +msgstr[1] "лампы выживальщика с гигантским светлячком" +msgstr[2] "ламп выживальщика с гигантским светлячком" +msgstr[3] "лампы выживальщика с гигантским светлячком" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" +"Какой-то предприимчивый выживший решил превратить этот террариум в источник " +"света, используя то, что выглядит как гигантский светлячок и триффидная " +"растительность." + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -133572,7 +134367,7 @@ msgstr[1] "фильтровальная бумага для качественн msgstr[2] "фильтровальная бумага для качественного анализа" msgstr[3] "фильтровальная бумага для качественного анализа" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -133592,7 +134387,7 @@ msgstr[1] "фильтровальная бумага для количестве msgstr[2] "фильтровальная бумага для количественного анализа" msgstr[3] "фильтровальная бумага для количественного анализа" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -134229,8 +135024,8 @@ msgstr[1] "биотехника ми-го" msgstr[2] "биотехника ми-го" msgstr[3] "биотехника ми-го" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -134240,8 +135035,8 @@ msgstr[1] "%s (счастье)" msgstr[2] "%s (счастье)" msgstr[3] "%s (счастье)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -134251,8 +135046,8 @@ msgstr[1] "%s (концентрация)" msgstr[2] "%s (концентрация)" msgstr[3] "%s (концентрация)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -134262,8 +135057,8 @@ msgstr[1] "%s (уменьшение боли)" msgstr[2] "%s (уменьшение боли)" msgstr[3] "%s (уменьшение боли)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -134273,7 +135068,7 @@ msgstr[1] "%s (пробуждение)" msgstr[2] "%s (пробуждение)" msgstr[3] "%s (пробуждение)" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "Образец биотехнологии ми-го." @@ -134833,7 +135628,7 @@ msgstr[1] "сшитых лоскута хлопчатобумажной ткан msgstr[2] "сшитых лоскутов хлопчатобумажной ткани" msgstr[3] "сшитые лоскуты хлопчатобумажной ткани" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -135115,13 +135910,13 @@ msgstr[1] "разбросанных триболы" msgstr[2] "разбросанных трибол" msgstr[3] "разбросанные триболы" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "Вы рассыпаете колючки по %s." -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -135138,13 +135933,13 @@ msgstr[1] "разбросанных стеклянных триболов" msgstr[2] "разбросанных стеклянных триболов" msgstr[3] "разбросанные стеклянные триболы" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "Вы рассыпаете стеклянные триболы по %s." -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -135738,6 +136533,28 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "Беспроводная аккумуляторная дрель с набором бит." +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "беспроводной гайковёрт" +msgstr[1] "беспроводных гайковёрта" +msgstr[2] "беспроводных гайковёртов" +msgstr[3] "беспроводные гайковёрты" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" +"Аккумуляторный ударный гайковерт с батарейным питанием, предназначенный для " +"передачи высокого крутящего момента за счёт внутреннего вращающегося " +"молотка. Поставляется со стандартным набором розеток и при работе издает " +"громкий щёлкающий звук. Вы можете использовать его для закручивания больших " +"болтов или даже для замены колёс автомобиля." + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -136106,7 +136923,7 @@ msgstr[1] "плоскогубцы" msgstr[2] "плоскогубцы" msgstr[3] "плоскогубцы" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " @@ -136116,6 +136933,26 @@ msgstr "" "простой механической работой. Всё более сложное потребует уже гаечного " "ключа." +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "плоскогубцы для фиксации" +msgstr[1] "плоскогубцев для фиксации" +msgstr[2] "плоскогубцев для фиксации" +msgstr[3] "плоскогубцы для фиксации" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" +"Плоскогубцы с большими губами и механизмом, позволяющим зажать ими любой " +"несчастный предмет, попавшийся между ними. С их помощью можно повернуть " +"довольно большой болт или сжать две детали вместе." + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -136186,6 +137023,43 @@ msgstr "" "Это набор отвёрток различных размеров и типов. Он гарантирует, что у вас " "будут подходящие инструменты для тонкой работы." +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "наборная отвёртка" +msgstr[1] "наборные отвёртки" +msgstr[2] "наборных отвёрток" +msgstr[3] "наборные отвёртки" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" +"Отвёртка с храповым механизмом с набором шестигранных головок для вращения " +"небольших болтов или гаек, включая пару стандартных головок отвёрток." + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "наборный торцевой ключ" +msgstr[1] "наборных торцевых ключа" +msgstr[2] "наборных торцевых ключей" +msgstr[3] "наборные торцевые ключи" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" +"Ключ с храповым механизмом с толстой рукояткой и набором сменных головок с " +"шестигранными болтами типовых размеров. С его помощью можно было ослабить " +"или затянуть довольно большие болты, и храповик издаст приятный щелкающий " +"звук." + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -136354,14 +137228,33 @@ msgstr "" "попасть во врага. Слишком мал для разделки трупов." #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" -msgstr[0] "гаечный ключ" -msgstr[1] "гаечных ключа" -msgstr[2] "гаечных ключей" -msgstr[3] "гаечные ключы" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "маленький разводной ключ" +msgstr[1] "маленьких разводных ключа" +msgstr[2] "маленьких разводных ключей" +msgstr[3] "маленькие разводные ключи" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" +"Разводной ключ - компактный, с короткой ручкой, помещающейся в ладони. Его " +"можно использовать для вращения небольших гаек или болтов с шестигранной " +"головкой." + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "разводной ключ" +msgstr[1] "разводных ключа" +msgstr[2] "разводных ключей" +msgstr[3] "разводные ключи" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " @@ -136370,6 +137263,25 @@ msgstr "" "Разводной гаечный ключ. Неплохое оружие ближнего боя, а также используется " "во многих рецептах механических изделий." +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "большой разводной ключ" +msgstr[1] "больших разводных ключа" +msgstr[2] "больших разводных ключей" +msgstr[3] "большие разводные ключи" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" +"Нетипично большой разводной ключ с длинной ручкой и губами, шириной более " +"двух дюймов. Он может легко вращать большинство болтов и даже работать с " +"гайками колесных болтов." + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -136762,45 +137674,6 @@ msgstr "" "идентифицировать вас как дружественный объект и атаковать всех врагов из " "роторных лазерных пушек." -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "неактивный шагобот" -msgstr[1] "неактивных шагобота" -msgstr[2] "неактивных шагоботов" -msgstr[3] "неактивные шагоботы" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "Шагобот встаёт на ноги, ступает мимо вас и осматривает территорию." - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "Шагобот жужжит и нацеливает оружие прямо на вас. В укрытие!" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" -"Отключённый шагобот. При использования его нужно выложить на землю и " -"зарядить фабричными патронами 5.56 мм НАТО и 40-мм гранатами из инвентаря " -"(выложите часть, если вы НЕ хотите загружать в робота все), а потом " -"включить. Если робот успешно перепрограммирован, то он будет " -"идентифицировать вас как дружественный объект, бродить поблизости или " -"сопровождать вас и атаковать всех врагов из встроенной винтовки и " -"гранатомёта." - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -136841,6 +137714,14 @@ msgstr "" "сопровождать вас и атаковать всех врагов из встроенной винтовки и " "гранатомёта." +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "неактивный шагобот" +msgstr[1] "неактивных шагобота" +msgstr[2] "неактивных шагоботов" +msgstr[3] "неактивные шагоботы" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -137135,8 +138016,8 @@ msgstr[3] "неактивные крысоловы" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" "Небольшой дрон-гексапод, предназначенный для содержания мелких вредителей, " @@ -137728,7 +138609,7 @@ msgstr[1] "377-ОМКАСТА (боевой)" msgstr[2] "377-ОМКАСТА (боевой)" msgstr[3] "377-ОМКАСТА (боевой)" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -138269,7 +139150,7 @@ msgstr "" "Устройство включено и испускает чудовищный треск, щелчки и другие " "радиопомехи. Быстро выбросьте его, пока оно не привлекло к вам врагов!" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -138333,7 +139214,7 @@ msgstr "" "грубо сделанное. Пока не найдёте ничего лучше, удержит врага на расстоянии " "вытянутой руки." -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -138359,7 +139240,7 @@ msgstr[1] "неактивные CROWS II с ручным пулемётом" msgstr[2] "неактивных CROWS II с ручным пулемётом" msgstr[3] "неактивные CROWS II с ручным пулемётом" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -139669,6 +140550,19 @@ msgstr "" "использовать его для пробивания через куда более прочные преграды, и хорошо " "финансируемые пожарные станции предпочитали закупать именно такие." +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" +"Классический средневековый меч, размерами между более легким рыцарским мечом" +" и более поздними двуручными мечами. Благодаря загадочному серебристому " +"металлу, из которого он был выкован, он прочнее закаленной стали при " +"значительно меньшем весе." + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -139735,6 +140629,37 @@ msgstr[3] "куски леденцового сахара" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "Это кусок леденцового сахара. Его можно разложить на сахар." +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "Шагобот встаёт на ноги, ступает мимо вас и осматривает территорию." + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "Шагобот жужжит и нацеливает оружие прямо на вас. В укрытие!" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" +"Отключённый шагобот. При использования его нужно выложить на землю и " +"зарядить фабричными патронами 5.56 мм НАТО и 40-мм гранатами из инвентаря " +"(выложите часть, если вы НЕ хотите загружать в робота все), а потом " +"включить. Если робот успешно перепрограммирован, то он будет " +"идентифицировать вас как дружественный объект, бродить поблизости или " +"сопровождать вас и атаковать всех врагов из встроенной винтовки и " +"гранатомёта." + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -140366,11 +141291,11 @@ msgstr "пересечение порога мутации растения" #: lang/json/achievement_from_json.py msgid "Finally beat the tortoise" -msgstr "" +msgstr "Наконец-то обогнал черепаху" #: lang/json/achievement_from_json.py msgid "crossed rabbit mutation threshold" -msgstr "" +msgstr "пересечение порога мутации кролика" #: lang/json/achievement_from_json.py msgid "Heard of the swarm?" @@ -140487,19 +141412,19 @@ msgstr "пересечение порога мутации троглодита" #: lang/json/achievement_from_json.py msgid "Carrying your home on your back" -msgstr "" +msgstr "Носить свой дом на спине" #: lang/json/achievement_from_json.py msgid "crossed gastropod mutation threshold" -msgstr "" +msgstr "пересечение порога мутации брюхоногого " #: lang/json/achievement_from_json.py msgid "Leaping forward in life" -msgstr "" +msgstr "Прыжок вперёд по жизни" #: lang/json/achievement_from_json.py msgid "crossed batrachian mutation threshold" -msgstr "" +msgstr "пересечение порога мутации батрахии" #: lang/json/achievement_from_json.py msgid "Thus spake zombiethustra" @@ -140716,8 +141641,8 @@ msgid "Fashion Designer" msgstr "Фешн-дизайнер" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." -msgstr "Мода для женщин, мужчин и мутантов." +msgid "From catwalk to cataclysm." +msgstr "С подиума в катаклизм." #: lang/json/achievement_from_json.py msgid "Survivalist" @@ -141219,6 +142144,10 @@ msgstr "строительство" msgid "mining" msgstr "добыча полезных ископаемых" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "мытьё пола" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "наведение порядка" @@ -141489,7 +142418,7 @@ msgstr "перерезание проволоки" #: lang/json/activity_type_from_json.py msgid "prying open" -msgstr "" +msgstr "взламывание" #: lang/json/activity_type_from_json.py msgid "chopping down a tree" @@ -142103,19 +143032,17 @@ msgstr "" "дала вам пару бесполезных бионик, которые скрипят при ходьбе." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "Металлическое покрытие — Руки" +msgid "Intradermal Alloy - Arms" +msgstr "Подкожный сплав - руки" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" -"Хирургически установленные пластины из суперсплава заменяют плоть на ваших " -"руках. Предоставляют пассивную защиту и сочетаются с бионическим рукопашным " -"боем." +"Высокотехнологичная защитная сетка, вплетённая в плоть ваших рук и кистей, " +"защищая их от физических травм." #: lang/json/bionic_from_json.py msgid "Protective Lenses" @@ -142133,45 +143060,43 @@ msgstr "" " должны выплюнуть или проглотить слёзы." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" -msgstr "Металлическое покрытие — Голова" +msgid "Intradermal Alloy - head" +msgstr "Подкожный сплав - голова" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" -"Хирургически установленные пластины из суперсплава заменяют плоть на вашей " -"голове. Защищают голову и нижнюю челюсть." +"Высокотехнологичная защитная сетка, вплетённая в плоть вашей головы и " +"челюсти, защищая череп от физических травм." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "Металлическое покрытие — Ноги" +msgid "Intradermal Alloy - Legs" +msgstr "Подкожный сплав - ноги" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" -"Хирургически установленные пластины из суперсплава заменяют плоть на ваших " -"ногах. Предоставляют пассивную защиту и сочетаются с бионическим рукопашным " -"боем." +"Высокотехнологичная защитная сетка, вплетённая в плоть ваших рук и ступней, " +"защищая их от физических травм." #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" -msgstr "Металлическое покрытие — Торс" +msgid "Intradermal Alloy - torso" +msgstr "Подкожный сплав - торс" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" -"Хирургически установленные пластины из суперсплава заменяют плоть на вашем " -"торсе и защищают от физических повреждений." +"Высокотехнологичная защитная сетка, вплетённая в плоть вашего торса, защищая" +" от физических травм." #: lang/json/bionic_from_json.py msgid "Battery System" @@ -142181,12 +143106,12 @@ msgstr "Система зарядки от батарей" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" "У вас есть особые крепления для батарей, чтобы выкачивать содержащуюся в них" -" энергию. Нажмите «E» для выкачивания заряда батарей. Можно включать и " -"выключать по желанию." +" энергию. Нажмите меню бионики для выкачивания заряда батарей. Можно " +"включать и выключать по желанию." #: lang/json/bionic_from_json.py msgid "Monomolecular Blade" @@ -145649,7 +146574,7 @@ msgstr "Во сне у вас есть странное лекарственно #: lang/json/dream_from_json.py msgid "You have a strange dream about rabbits." -msgstr "" +msgstr "Вам снится странный сон про кроликов." #: lang/json/dream_from_json.py msgid "Your dreams give you a strange furry feeling." @@ -145665,20 +146590,21 @@ msgstr "Во сне у вас появляется странное ощущен #: lang/json/dream_from_json.py msgid "You have a strange dream about snails and slugs in your garden." -msgstr "" +msgstr "Вам снится странный сон об улитках и слизняках в вашем саду." #: lang/json/dream_from_json.py msgid "Your dreams leave you feeling like something is stuck to you." -msgstr "" +msgstr "После сна у вас ощущение, что к вам что-то прилипло." #: lang/json/dream_from_json.py msgid "" "You have a strange dream about frogs in a pond near your childhood home." msgstr "" +"Вам снится странный сон о лягушках в пруду рядом с вашим родным домом." #: lang/json/dream_from_json.py msgid "Your dreams contain a croaking concerto." -msgstr "" +msgstr "Вам снится концерт из кваканья." #: lang/json/dream_from_json.py msgid "You have a strange dream about fish." @@ -145864,32 +146790,36 @@ msgstr "" #: lang/json/dream_from_json.py msgid "You have a disturbing dream about running from dogs." -msgstr "" +msgstr "Вам снится тревожный сон о бегстве от собак." #: lang/json/dream_from_json.py msgid "" "While dreaming, you see a distinctively rabbit-like reflection of yourself." msgstr "" +"Во время сна вы видите своё отражение в характерном кроликоподобном виде." #: lang/json/dream_from_json.py msgid "You have a strange dream of carrying a house on your back." -msgstr "" +msgstr "Вам снится странный сон о переноске дома на вашей спине." #: lang/json/dream_from_json.py msgid "" "While dreaming, you see yourself weighted down under massive backpack/tent " "upon your back, as you pass by a mirrored surface." msgstr "" +"Пока вы спите, вы видите себя придавленным огромным рюкзаком/палаткой на " +"вашей спине, проходя мимо зеркальной поверхности." #: lang/json/dream_from_json.py msgid "You have a disturbing dream of eating insects." -msgstr "" +msgstr "Вам снится тревожный сон про поедание насекомых." #: lang/json/dream_from_json.py msgid "" "While dreaming, you see yourself in a pond, your face has widened and is " "covered in mucus." msgstr "" +"Во сне вы видите себя в пруду, ваше лицо расширилось и покрылось слизью." #: lang/json/dream_from_json.py msgid "You have strange dreams of soaring through the sky." @@ -146086,11 +147016,11 @@ msgstr "Вы видите пугающе реалистичный сон, в к #: lang/json/dream_from_json.py msgid "You have a strange dream about being the Easter Bunny." -msgstr "" +msgstr "Вам снится странный сон, что вы Пасхальный кролик." #: lang/json/dream_from_json.py msgid "You have a comforting and warm dream of living as a rabbit." -msgstr "" +msgstr "Вам снится тёплый и уютный сон о жизни в виде кролика." #: lang/json/dream_from_json.py msgid "" @@ -146130,21 +147060,23 @@ msgstr "После пробуждения вы в панике, что вас в #: lang/json/dream_from_json.py msgid "You dream of leaping from the water to catch your prey." -msgstr "" +msgstr "Вам снится, как вы выпрыгиваете из воды, ловя добычу." #: lang/json/dream_from_json.py msgid "You wake up with your legs pumping as you hop along in your sleep." -msgstr "" +msgstr "Вы просыпаетесь от подергивания ног после прыганья во сне." #: lang/json/dream_from_json.py msgid "" "You dream of crawling along the world when you realize you can see three " "hundred and sixty degrees around yourself." msgstr "" +"Вам снится ползание по миру, когда вы понимаете, что видите вокруг себя на " +"триста шестьдесят градусов." #: lang/json/dream_from_json.py msgid "You dream of curling up inside a shell to sleep." -msgstr "" +msgstr "Вам снится, как вы сворачиваетесь внутри скорлупы, чтобы заснуть." #: lang/json/dream_from_json.py msgid "You vividly dream of running with your pack, hunting a wild animal." @@ -146366,11 +147298,11 @@ msgstr "" #: lang/json/dream_from_json.py msgid "Will your burrow be warm enough for the family in winter?" -msgstr "" +msgstr "Будет ли зимой в вашей норе достаточно тепла для семьи?" #: lang/json/dream_from_json.py msgid "You dream of outrunning the apocalypse." -msgstr "" +msgstr "Вам снится, как бы обгоняете апокалипсис." #: lang/json/dream_from_json.py msgid "You have a comforting dream of swimming with a school of fish." @@ -146613,22 +147545,28 @@ msgid "" "There is so much that you never imagined, the slime, the legs, and eyestalks" " but the shell was worth it." msgstr "" +"Есть так много всего, что вы даже представить себе не могли: слизь, ноги и " +"глаза на стеблях, но панцирь того стоит." #: lang/json/dream_from_json.py msgid "You'll always be home, once you take this last step." -msgstr "" +msgstr "Вы всегда будете дома, стоит вам сделать этот последний шаг." #: lang/json/dream_from_json.py msgid "" "You'd never considered that frogs were generalist predators before this " "point in your life…" msgstr "" +"Вы никогда раньше не задумывались над тем, что лягушки являются хищниками-" +"генералистами." #: lang/json/dream_from_json.py msgid "" "On land and in the water, you control all that you can reach, and your " "tongue has quite the reach." msgstr "" +"На суше и в воде вы контролируете всй, до чего можете дотянуться, и ваш язык" +" весьма далеко дотягивается." #: lang/json/dream_from_json.py msgid "Your body flows slightly faster than you expected… oh, just a dream." @@ -148329,8 +149267,8 @@ msgstr "У вас есть заражённая рана." #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." -msgstr "Похоже, что рана от укуса заражена." +msgid "Your wound feels infected." +msgstr "Похоже, что ваша рана заражена" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus #. Filled'. @@ -152526,15 +153464,15 @@ msgstr "старый мусор" #: lang/json/field_type_from_json.py msgid "glimmer" -msgstr "" +msgstr "блеск" #: lang/json/field_type_from_json.py msgid "glow" -msgstr "" +msgstr "сияние" #: lang/json/field_type_from_json.py msgid "shine" -msgstr "" +msgstr "свечение" #: lang/json/field_type_from_json.py msgid "thin smoke" @@ -153598,8 +154536,7 @@ msgstr "" "для любого выжившего." #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "хрясь!" @@ -153618,9 +154555,8 @@ msgstr "" "закреплена светоотражающая лента, чтобы ее было лучше видно. Несмотря на " "название, вряд ли сможет остановить автомобиль." -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "грохот!" @@ -154400,7 +155336,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "треск!" @@ -157102,7 +158038,8 @@ msgstr "" "выполнения любых позволенных функций. Если хватит навыков, его даже можно " "взломать." -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "кузня" @@ -157251,6 +158188,25 @@ msgstr "" "всевозможных занятиях от промышленного производства до домашней работы по " "дереву, если подключен УБП." +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "террариум со светлячками" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" +"В то время как многие выжившие сосредоточились на попытках вернуть " +"электрическое освещение, все, кто здесь живет, по-видимому, решили " +"воспользоваться изменениями, вызванные Катаклизмом, чтобы обеспечить себе " +"источник света. В этом виварии есть почва, странные растения, которые вы не " +"сразу узнаете, и, что самое поразительное, гигантский светлячок-мутант." + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -160475,20 +161431,20 @@ msgstr "" "пистолет может вам пригодиться." #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" -msgstr[0] "Kel-Tec P32" -msgstr[1] "Kel-Tec P32" -msgstr[2] "Kel-Tec P32" -msgstr[3] "Kel-Tec P32" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" +msgstr[0] "Kel-Tec P-32" +msgstr[1] "Kel-Tec P-32" +msgstr[2] "Kel-Tec P-32" +msgstr[3] "Kel-Tec P-32" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" -"Одна из первых разработок Kel-tec. Р32 — популярный вариант для запасного " +"Одна из первых разработок Kel-Tec. Р-32 — популярный вариант для запасного " "оружия скрытого ношения. Несмотря на очень лёгкий вес и небольшой размер, " "благодаря патрону .32 ACP у него хорошая управляемость и низкая отдача." @@ -160676,21 +161632,21 @@ msgstr "" "выстрелов в минуту." #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" -msgstr[0] "Kel-Tec P3AT" -msgstr[1] "Kel-Tec P3AT" -msgstr[2] "Kel-Tec P3AT" -msgstr[3] "Kel-Tec P3AT" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" +msgstr[0] "Kel-Tec P-3AT" +msgstr[1] "Kel-Tec P-3AT" +msgstr[2] "Kel-Tec P-3AT" +msgstr[3] "Kel-Tec P-3AT" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" -"Фактически немного увеличенный Kel-tec P32 под патрон .380 ACP. У этого " +"Фактически немного увеличенный Kel-Tec P-32 под патрон .380 ACP. У этого " "популярного варианта улучшенная баллистика в маленькой лёгкой форме скрытого" " ношения. Из-за резкой отдачи и посредственной управляемости обращение с ним" " оставляет желать лучшего." @@ -162024,20 +162980,20 @@ msgstr "" "предшественника с высокоскоростным и лёгким боеприпасом калибра 5,45х39 мм." #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" -msgstr[0] "FN Five-Seven" -msgstr[1] "FN Five-Seven" -msgstr[2] "FN Five-Seven" -msgstr[3] "FN Five-Seven" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" +msgstr[0] "FN Five-seveN" +msgstr[1] "FN Five-seveN" +msgstr[2] "FN Five-seveN" +msgstr[3] "FN Five-seveN" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" -"Спроектированный под фирменный патрон FN 5,7х28 мм, Five-Seven представляет " +"Спроектированный под фирменный патрон FN 5,7х28 мм, Five-seveN представляет " "собой лёгкий пистолет с вместительным магазином, эффективный против " "защищённых бронёй противников." @@ -165167,6 +166123,24 @@ msgstr[1] "ружья с кислотными дротиками" msgstr[2] "ружей с кислотными дротиками" msgstr[3] "ружья с кислотными дротиками" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "PA md. 68 Рубика" +msgstr[1] "PA md. 68 Рубика" +msgstr[2] "PA md. 68 Рубика" +msgstr[3] "PA md. 68 Рубика" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" +"Самое популярное оружие под патрон 12.3ln - конечно же PA md. 71. Её предшественник, md.68, многими считалась провалом: хотя она была мощной и надёжной, она была слишком тяжёлой, чтобы стать хорошим пехотным оружием, и при этом она была недостаточно мощной, чтобы использоваться как оружие поддержки. Их было произведено достаточно, чтобы во времена зомби-апокалипсиса вновь обрести популярность в качестве оружия с широко доступными боеприпасами. Она идеально подходила задачам Экзоди, так как их куда меньше беспокоили неудобства её использования.\n" +"\n" +"Эта конкретная винтовка была окрашена в пыльно-розовый цвет, и на ее стволе изображен обвивающий его улыбающийся угорь." + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -168608,13 +169582,14 @@ msgstr[3] "сошки" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" "Сошки обычно используются на винтовках и пулемётах, чтобы улучшить контроль " "над отдачей. Несмотря на то, что они значительно улучшают контроль отдачи, " -"они могут использоваться только на определённых поверхностях и медленно " -"разворачиваются." +"они могут использоваться только на определённых поверхностях (или лёжа) и " +"медленно разворачиваются." #: lang/json/gunmod_from_json.py msgid "modified bipod" @@ -168627,15 +169602,15 @@ msgstr[3] "модифицированные сошки" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" "Сошки обычно используются на винтовках и пулемётах для стабилизации оружия. " "Несмотря на значительное улучшение контроля отдачи, разворачиваются медленно" -" и годятся только для определённых поверхностей. Модифицированы для " -"установки практически на любое оружие." +" и годятся только для определённых поверхностей (или лёжа). Модифицированы " +"для установки практически на любое оружие." #: lang/json/gunmod_from_json.py msgid "combination gun shotgun" @@ -169326,20 +170301,24 @@ msgstr "" "вес." #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." msgstr "Вы разделываете рыбу и снимаете с неё филе." #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." msgstr "Вы осторожно взламываете экзоскелет, чтобы добраться до плоти" +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." +msgstr "Вы ломаете твёрдый панцирь, чтобы добраться до плоти" + #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" "Вы копаетесь во внутренностях того, что осталось от этого неудавшегося " -"эксперимента, пытаясь найти любую уцелевшую бионику." +"эксперимента, пытаясь найти любое уцелевшее оборудование." #: lang/json/harvest_from_json.py msgid "" @@ -171779,7 +172758,7 @@ msgstr "Быстро развести огонь" #: lang/json/item_action_from_json.py msgid "Pry crate, window, door or nails" -msgstr "" +msgstr "Вскрыть ящик, окно, дверь или вытащить гвозди" #: lang/json/item_action_from_json.py msgid "Pick a lock" @@ -172444,6 +173423,11 @@ msgstr "" "Этот качественно изготовленный предмет в качестве оружия " "способен выдерживать серьёзные нагрузки во время боя." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "Вы назначили этому предмету не отображать спрайт при ношении." + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -173459,6 +174443,15 @@ msgstr "Тут есть плоская поверхность. Неплохое msgid "You can craft here." msgstr "Здесь можно изготавливать предметы." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" +"Сжигает дизель или JP8 из бака транспорта. Также может сжигать биодизель или" +" ламповое масло, хотя и с меньшей эффективностью." + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "Прокрутить вверх" @@ -173627,6 +174620,10 @@ msgstr "Выключить панель" msgid "Change side armor is worn on" msgstr "Изменить сторону, с которой надета броня" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "Переключить видимость брони на спрайте персонажа" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "Назначить клавишу на броню" @@ -174739,6 +175736,10 @@ msgstr "Сдвинуть курсор вверх" msgid "Move cursor down" msgstr "Сдвинуть курсор вниз" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "Переключить отображение" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "Выйти из этого окна настроек клавиш" @@ -174939,6 +175940,20 @@ msgstr "Да" msgid "No" msgstr "Нет" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "С друзьями" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "Только я" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "Отмена" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "Выйти" @@ -176690,17 +177705,17 @@ msgstr "" "Skorpion Vz. 61." #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" -msgstr[0] "магазин для P32 на 7 патронов" -msgstr[1] "магазина для P32 на 7 патронов" -msgstr[2] "магазинов для P32 на 7 патронов" -msgstr[3] "магазины для P32 на 7 патронов" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" +msgstr[0] "магазин для P-32 на 7 патронов" +msgstr[1] "магазина для P-32 на 7 патронов" +msgstr[2] "магазинов для P-32 на 7 патронов" +msgstr[3] "магазины для P-32 на 7 патронов" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" -"Стандартный стальной коробчатый магазин на 7 патронов для Kel-Tec P32." +"Стандартный стальной коробчатый магазин на 7 патронов для Kel-Tec P-32." #: lang/json/magazine_from_json.py msgid "P226 .357 SIG 12-round magazine" @@ -176779,17 +177794,17 @@ msgstr "" " быстро перезаряжать барабан револьвера." #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" -msgstr[0] "магазин для P3AT на 6 патронов" -msgstr[1] "магазина для P3AT на 6 патронов" -msgstr[2] "магазинов для P3AT на 6 патронов" -msgstr[3] "магазины для P3AT на 6 патронов" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" +msgstr[0] "магазин для P-3AT на 6 патронов" +msgstr[1] "магазина для P-3AT на 6 патронов" +msgstr[2] "магазинов для P-3AT на 6 патронов" +msgstr[3] "магазины для P-3AT на 6 патронов" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" -"Стандартный стальной коробчатый магазин на 6 патронов для Kel-Tec P3AT." +"Стандартный стальной коробчатый магазин на 6 патронов для Kel-Tec P-3AT." #: lang/json/magazine_from_json.py msgid "FN 1910 6-round magazine" @@ -177578,17 +178593,17 @@ msgstr "" " разработан для лёгкого пулемёта РПК-74." #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" -msgstr[0] "магазин для Five-Seven на 20 патронов" -msgstr[1] "магазина для Five-Seven на 20 патронов" -msgstr[2] "магазинов для Five-Seven на 20 патронов" -msgstr[3] "магазины для Five-Seven на 20 патронов" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" +msgstr[0] "магазин для Five-seveN на 20 патронов" +msgstr[1] "магазина для Five-seveN на 20 патронов" +msgstr[2] "магазинов для Five-seveN на 20 патронов" +msgstr[3] "магазины для Five-seveN на 20 патронов" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" -"Магазин стандартной ёмкости для использования с пистолетом FN Five-Seven." +"Магазин стандартной ёмкости для использования с пистолетом FN Five-seveN." #: lang/json/magazine_from_json.py msgid "P90 50-round magazine" @@ -180428,12 +181443,12 @@ msgstr "Канализационные трубы и насосы." #: lang/json/map_extra_from_json.py msgid "Prison Van" -msgstr "" +msgstr "Тюремный автобус" #. ~ Description for Prison Van #: lang/json/map_extra_from_json.py msgid "A violent escape." -msgstr "" +msgstr "Жесткий побег." #: lang/json/map_extra_from_json.py msgid "Wraitheon Droneswarm" @@ -181610,6 +182625,16 @@ msgstr "Тропинка " msgid "PLEASE No fish cleaning or dish washing." msgstr "ПРОСЬБА Не чистить рыбу и не мыть посуду." +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "Торговцы приходят к успеху" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "Вход со стороны другой" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -182046,12 +183071,12 @@ msgstr "Айкидо" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" "Айкидо — японское искусство рукопашного боя, сфокусированное на самообороне " "и уменьшении травм атакующего. В нём много бросков и обезоруживающих " -"приёмов, но не хватает техник для нападения." +"приёмов, но техникам не хватает наступательной мощи." #. ~ initiate message for martial art '{'str': 'Aikido'}' #: lang/json/martial_art_from_json.py @@ -182074,11 +183099,13 @@ msgstr "Стойка Айкидо" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" "Вы пренебрегаете нападением в пользу самозащиты и лучше защищаетесь. \n" "\n" -"Блокируемый урон снижается на 100% Ловкости." +"Блокируемый урон снижается на 100% Ловкости, +2 Эффективность блока.\n" +"+1 навык Уклонения." #: lang/json/martial_art_from_json.py msgid "Intermediate Aikido" @@ -182091,12 +183118,12 @@ msgstr "Средний боец Айкидо" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" "Средний боец айкидо умеет защищаться от нескольких противников.\n" "\n" -"Заблокированный урон снижается на 100% от Ловкости.\n" +"Заблокированный урон снижается на 100% от Ловкости, +1 Эффективность блока.\n" "+1 попытка Блока, +1 попытка Уклонения." #: lang/json/martial_art_from_json.py @@ -182108,12 +183135,50 @@ msgstr "Мастер Айкидо" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" "Мастер айкидо умеет защищаться от куда большего числа противников, чем обычно.\n" "\n" +"+1 Эффективность блока.\n" "+1 попытка Блока, +1 попытка Уклонения." +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "Плавное уклонение" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" +"После ловкого уклонения вы готовитесь контратаковать врага.\n" +"\n" +"-10% цена движения.\n" +"Длится 1 ход." + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "Плавное блокирование" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" +"После ловкого блока вы готовитесь контратаковать врага.\n" +"\n" +"-10% цена движения.\n" +"Длится 1 ход." + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "Бокс" @@ -182303,12 +183368,12 @@ msgstr "Ритм капоэйры" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." msgstr "" -"Это не промах, а часть танца, а самое лучшее - он только начался!\n" +"Это не промах, а часть танца! А самое лучшее - он только начался!\n" "\n" "+ 15% дробящего урона.\n" "Длится 2 хода. До 3 стеков." @@ -182322,12 +183387,13 @@ msgstr "Стиль журавля" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" "Один из пяти животных стилей Шаолиня. Стиль журавля отличается сложными " "движениями кисти и уворотами в прыжке. Урон определяется ловкостью, а не " -"силой. Также вы получаете бонусное движение уклонения или уклонение от " -"атаки." +"силой. У вас больше шансов уклониться, а уклонение открывает сильные техники" +" на ограниченное время." #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -182360,22 +183426,20 @@ msgstr "" "Дробящий урон повышается на 75% Ловкости, но снижается на 75% Силы." #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" -msgstr "Полёт журавля" +msgid "Crane's Stance" +msgstr "Стойка журавля" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" -"Подобно птице, вы взмываете в воздух от опасности.\n" +"Словно прекрасный журавль, вы очень хороши в избегании опасности.\n" "\n" -"+1 навык Уклонения.\n" -"Длится 2 хода." +"+2 навык Уклонения." #: lang/json/martial_art_from_json.py msgid "Crane's Grace" @@ -182385,15 +183449,33 @@ msgstr "Изящество журавля" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." msgstr "" -"Подобно журавлю, вы проворно избегаете опасности.\n" +"Мастера стиля журавля могут с легкостью уклоняться от нескольких противников.\n" "\n" -"+1 попытка уклонения, +1 навык Уклонения.\n" -"Длится 2 хода." +"+2 попытки Уклонения." + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "Полёт журавля" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." +msgstr "" +"Подобно журавлю, вы быстро избегаете опасности и наносите ответный удар.\n" +"\n" +" +1 к Точности, +1 навык Уклонения.\n" +"Активирует техники «Пинок журавля» и «Удар журавля».\n" +"Длится 3 хода." #: lang/json/martial_art_from_json.py msgid "Dragon Kung Fu" @@ -182403,14 +183485,15 @@ msgstr "Стиль дракона" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" "Один из пяти животных стилей Шаолиня. В стиле дракона применяются плавные " -"движения и жёсткие удары. Точность увеличивается Интеллектом, а не " -"Ловкостью. Ваши атаки переходят в контратаки, которые обезвреживают ваших " -"противников и завершаются мощным ударом." +"движения и жёсткие удары. Точность и урон увеличивается Интеллектом, а не " +"Ловкостью и Силой. Уклонение и блоки увеличивают урон. Паузы усиливают " +"защиту. Вы можете провести мощную атаку по сбитому с ног врагу." #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -182424,43 +183507,67 @@ msgid "%s assumes a dragon-like stance." msgstr "%s встает в стойку дракона." #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" -msgstr "Полёт дракона" +msgid "Dragon's Knowledge" +msgstr "Знания Дракона" + +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. Kung Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" +"\n" +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." +msgstr "" +"Вы продумываете свою атаку на много ходов вперёд и искусно наносите удар, полагаясь на интуицию вместо скорости.\n" +" Интеллект повышает точность вместо Ловкости и урон вместо силы.\n" +"\n" +"Точность возрастает на 25% Интеллекта, но снижается на 25% Ловкости. Дробящий урон увеличивается на 75% Интеллекта, но снижается на 75% силы." + +#: lang/json/martial_art_from_json.py +msgid "Dragon Wing" +msgstr "Крыло дракона" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"+10% bash damage.\n" +"Lasts 3 turns." msgstr "" "Жизнь и бой составляют круг. Атака ведёт за собой блок и ещё одну атаку. Замыкайте этот круг.\n" "\n" -"+1 Точность, +2 Дробящий урон.\n" -"Активирует «Вихревой блок Дракона» и «Уклонение драконьего крыла»\n" -"Длится 1 ход." +"+1+% дробящего урона.\n" +"Длится 3 хода." #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" -msgstr "Знания Дракона" +msgid "Dragon Power" +msgstr "Мощь дракона" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon -#. Kung Fu'}' +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." msgstr "" -"Вы продумываете свою атаку на много ходов вперёд и искусно наносите удар, полагаясь на интуицию вместо скорости.\n" -" Интеллект повышает точность вместо Ловкости.\n" +"Мгновение вы обдумываете прошлые и грядущие битвы. Эти мысли защитят вас от грядущих бед.\n" "\n" -"Точность возрастает на 25% Интеллекта, но снижается на 25% Ловкости." +"+2 Эффективность блока, блокированный урон уменьшается на 100% Интеллекта, +1 навык Уклонения\n" +"Длится 2 хода." + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" +msgstr "Вихрь дракона" #: lang/json/martial_art_from_json.py msgid "Eskrima" @@ -182568,6 +183675,25 @@ msgstr "" "\n" "Блокируемый урон снижается на 50% Ловкости." +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "Время контратаки" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" +"Вы делаете ложный выпад и готовитесь приступить к сложной атаке.\n" +"\n" +"+2 эффективность Блока.\n" +"Активирует приём «Сложная атака».\n" +"Длится 2 хода." + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "Парирование" @@ -182637,11 +183763,11 @@ msgstr "Держать позицию" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" "Вы отважно защищаетесь, и никакой угрозе не сдвинуть вас с места.\n" "\n" -"+2 попытки блока, -1 навык Уклонения, блокируемый урон снижается на 50% Силы." +"+2 эффективность Блока, +1 попытка Блока, -1 навык Уклонения, блокируемый урон снижается на 50% Силы." #: lang/json/martial_art_from_json.py msgid "Tactical Retreat" @@ -182654,13 +183780,15 @@ msgstr "Тактическое Отступление" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" "Вы сдвинулись и потеряли эффекты Удержания позиции!\n" "\n" -"-2 попытки блока, +1 навык Уклонения, блокируемый урон увеличивается на 50% Силы.\n" -"Длится 1 ход." +"-2 эффективность Блока, -1 Попытка блока, +1 навык Уклонения, блокируемый урон увеличивается на 50% Силы.\n" +"Блокирует приём «Высокий круговой удар и хук».\n" +"Длится 2 хода." #: lang/json/martial_art_from_json.py msgid "Defense Break" @@ -182673,11 +183801,13 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" "Каждый удачный блок открывает брешь в обороне противника.\n" "\n" "+1 к Точности.\n" +"Активирует приём «Выворот с подсечкой».\n" "Длится 1 ход. До 3 стеков." #: lang/json/martial_art_from_json.py @@ -182737,6 +183867,22 @@ msgstr "" "Владение техникой захватов позволяет вам мгновенно восстанавливаться после сбивания наземь.\n" "Вдобавок вы можете проводить контрзахваты и контрброски." +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "Идеальная позиция" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" +"Вы встали в идеальную позицию для контратаки!\n" +"\n" +"+ 30% дробящего урона." + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "Карате" @@ -182840,6 +183986,24 @@ msgstr "" "\n" "+1 Точность, +1 попытка Блока." +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "Удар по важным точкам" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" +"Ваш оппонент открывает уязвимые места.\n" +"\n" +"+5% шанса на критический урон." + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "Стиль леопарда" @@ -183019,6 +184183,24 @@ msgstr "" "Блокируемый урон уменьшается на 50% силы, -1 точность,\n" "Позволяет Захват и Смертельный удар" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "Мастерский разрез" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" +"Вы парируете и ещё энергичнее отвечаете на атаку!\n" +"\n" +"+10% урона, -10 цены движения" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "Тайский бокс" @@ -183437,21 +184619,22 @@ msgstr "" "+1 попытка уклонения." #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" -msgstr "Уклонение Силат" +msgid "Silat Ambush" +msgstr "Ловушка Силат" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" -"Вы пригибаетесь в движении, так что противникам непросто вас достать.\n" +"Вы пригибаетесь в движении, так что противникам непросто от вас защититься.\n" "\n" -"+1 попытка Уклонения.\n" -"Длится 2 хода." +" +5% шанса на критический урон.\n" +"Длится 1 ход." #: lang/json/martial_art_from_json.py msgid "Silat Appraisal" @@ -183572,11 +184755,11 @@ msgstr "Стойка содзюцу" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" "Тренировка улучшает вашу защиту при использовании древкового оружия.\n" "\n" -"+1 Попытка блока." +"+1 Попытка блока, +2 Эффективность блока." #: lang/json/martial_art_from_json.py msgid "Superior Positioning" @@ -183704,6 +184887,26 @@ msgstr "" "\n" "+1 попытка блока, блокируемый урон снижается на 100% Восприятия." +#: lang/json/martial_art_from_json.py +msgid "Cross Hands" +msgstr "Скрещенные руки" + +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"\n" +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." +msgstr "" +"Потратив мгновение, чтобы собраться, вы можете использовать всё тело для атаки и защиты.\n" +"\n" +"+2 к эффективности Уклонению, блокированный урон снижается на 50% Восприятия.\n" +"Включает техники «Удар ладонью» и «Двойной удар ладонью».\n" +"Длится 3 хода." + #: lang/json/martial_art_from_json.py msgid "Repulse the Monkey" msgstr "Отражение Обезьяны" @@ -183723,26 +184926,6 @@ msgstr "" "Точность увеличена на 20% от восприятия, дробящее пробивание брони равно 50% от восприятия.\n" "Длится 2 хода." -#: lang/json/martial_art_from_json.py -msgid "Cross Hands" -msgstr "Скрещенные руки" - -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' -#: lang/json/martial_art_from_json.py -#, no-python-format -msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" -"\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." -msgstr "" -"Потратив мгновение, чтобы собраться, вы можете использовать всё тело для атаки и защиты.\n" -"\n" -"+1.0 к Уклонению, блокированный урон снижается на 50% ВОС.\n" -"Включает техники «Удар ладонью» и «Двойной удар ладонью».\n" -"Длится 3 хода." - #: lang/json/martial_art_from_json.py msgid "Tiger Kung Fu" msgstr "Стиль тигра" @@ -183885,11 +185068,11 @@ msgstr "Чутьё Чи-Сао" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" "Вы лучше понимаете баланс и технику. Это дает вам больше шансов избежать атак противника.\n" "\n" -" Навык уклонения увеличен на 15% от восприятия. Урон уменьшен на 50% от восприятия." +" Навык уклонения увеличен на 25% от восприятия. Урон уменьшен на 50% от восприятия." #: lang/json/martial_art_from_json.py msgid "Biu Ji" @@ -184123,6 +185306,26 @@ msgstr "" "\n" "+2 попытки Блока, +1 Точность." +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "Бинарное упрочнение" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 к защите от дробящего, режущего и колющего урона.\n" +"Lasts 3 turns. Stacks 3 times." + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "Оптимизация" @@ -184196,15 +185399,16 @@ msgstr "Яд Многоножки" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" "Ваш яд поражает противника в самый удачный момент.\n" "\n" -"+2 дробящего урона.\n" +"+15% урона.\n" "Длится 2 хода." #: lang/json/martial_art_from_json.py @@ -184325,14 +185529,15 @@ msgstr "Яд скорпиона" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" "Ваш яд — неминуемая угроза, от которой никому не скрыться.\n" "\n" -"+2 дробящего урона." +"+15% дробящего урона." #: lang/json/martial_art_from_json.py msgid "Scorpion's Charge" @@ -185109,12 +186314,31 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." msgstr "" "«Поиск теней»\n" "Вы обучены находиться в слепой зоне вашей цели.\n" "\n" -"+1 попытка Уклонения, навык Уклонения повышается на 12%% Восприятия." +"+1 попытка Уклонения, навык Уклонения повышается на 15%% Восприятия." + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "Seinerweisen" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." +msgstr "" +"«Личная мудрость»\n" +"Благодаря своему мастерству Панцер Кунста вы приобрели способность манипулировать смертоносной плазмой во всех своих атаках!\n" +"\n" +"Бонусный урон электричеством в 50% Восприятия." #: lang/json/martial_art_from_json.py msgid "Einzug Rüstungen" @@ -185123,16 +186347,17 @@ msgstr "Einzug Rüstungen" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" "«Пробивание брони»\n" "Вы входите в ритм со своим противником и можете ударить в самое слабозащищённое место.\n" -"+5 дробящего пробития брони.\n" -"Длится 2 хода." +"+1 к Точности, 50% Восприятия к пробитию брони.\n" +"Длится 3 хода." #: lang/json/martial_art_from_json.py msgid "Pokken" @@ -185245,6 +186470,24 @@ msgstr "Вы сдвигаете свой центр массы и готовит msgid "%s shifts their weight and assumes a new stance." msgstr "%s сдвигается и встаёт в новую стойку." +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "Притворное открытие" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" +"Сымитировав брешь в защите, вы можете вывести оппонента из равновесия и на короткое время действовать быстрее\n" +"\n" +"+20 к Скорости.\n" +"Длится 1 ход." + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "Путающая оборона" @@ -185257,30 +186500,31 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" "Вы готовите к атаке противника, намереваясь отправить его в полет.\n" "\n" "Навык Уклонения увеличивается на 20% ИНТ. Включает техники «Могучий бросок» и «Бросок Баллиста».\n" -"Длится 1 ход." +"Длится 2 хода." #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" -msgstr "Притворное открытие" +msgid "Fool's Strike" +msgstr "Атака глупца" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" -"Сымитировав брешь в защите, вы можете вывести оппонента из равновесия и на короткое время действовать быстрее\n" +"Вы действовали так обманчиво, что направили атаку противника против него самого.\n" "\n" -"+20 к Скорости.\n" -"Длится 1 ход." +"+20% дробящего урона.\n" +"Длится 2 хода." #: lang/json/martial_art_from_json.py msgid "Shii-Cho" @@ -185375,6 +186619,24 @@ msgstr "" "\n" "+1 попытка блока, +1 эффективность блока." +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "Текущая вода" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" +"Вы способны отразить атаку и контратаковать одним движением.\n" +"\n" +"-25% цена движения.\n" +"Длится 1 ход." + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "Каменный Дракон" @@ -187207,7 +188469,7 @@ msgstr "Думаю, мы его ещё не завалили." msgid "Kill your pursuer" msgstr "Убейте вашего преследователя" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -187433,7 +188695,7 @@ msgstr "Добраться до поместья и завершить дост msgid "Refuel your helicopter." msgstr "Заправьте свой вертолёт." -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -187675,7 +188937,7 @@ msgstr "Я так разочарован в тебе, дитя…" msgid "Prove You're A Survivor" msgstr "Докажите, что умеете выживать" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -187745,8 +189007,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "Собрать 80 стеблей рогоза для приготовления желе" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -187940,7 +189201,7 @@ msgstr "Тогда попытайся снова, пока не услышишь msgid "Protect fisherman's daughter" msgstr "Защитить дочь рыбака" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "Она, кажется, славная девчушка. Может не позволите ей умереть?" @@ -187954,7 +189215,7 @@ msgstr "—" msgid "Lighthouse" msgstr "Маяк" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "Отвести Михаила к маяку" @@ -188001,7 +189262,7 @@ msgstr "" msgid "House cleaning" msgstr "Зачистка дома" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "Зачистить маяк от с Михаилом" @@ -188042,7 +189303,7 @@ msgstr "Хорошо, хорошо. Остаётся только вым msgid "Fisherman's family" msgstr "Семья рыбаков" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "Михаил просил вас привести к нему его семью." @@ -188078,7 +189339,7 @@ msgstr "Даже не знаю, как тебя отблагодарить, ! Теперь мы можем толь msgid "Protect fisherman's wife" msgstr "Защитить жену рыбака" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "Она, кажется, славная женщина. Может не позволите ей умереть?" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "Принести 6Л анестетика Рубику" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" +"Если нашим добавлять тебе металл с пластиком, нашим нужно две банки анус-" +"тетика, один для твоей мыслеплоти, один в наши запасы." + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "Королевское везение!" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "Сие выбор что ты можешь метнуть. Вернёмся к нему, коли пожелаешь." + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "Посмотри что с керургией и прочим, прикидываю." + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "Наши ждём терпеливо наборы эти." + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "Добро-добро. Мы можем передать её, когда захочешь." + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "Добро-добро. Возвращайся, если захочешь это опять попробовать." + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "Маринад, ч.1" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "Найти 100 соли." @@ -188248,7 +189545,7 @@ msgstr "Не беспокойся, это не так важно." msgid "Pickled Meals" msgstr "Маринад, ч.2" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "Найти 5 стеклянных банок." @@ -188306,7 +189603,7 @@ msgstr "Да и не важно, мне не срочно." msgid "Prickled Meals" msgstr "Маринад, ч.3" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "Найти разделочный нож." @@ -188351,7 +189648,7 @@ msgstr "Я благодарен за помощь, которую ты оказ msgid "Busy While Work" msgstr "Занят работой" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "Найти 3 мистических романа." @@ -188404,7 +189701,7 @@ msgstr "Ладно. Я могу почитать что-нибудь друго msgid "Timber!" msgstr "Растопка!" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "Принести пять бревен." @@ -188433,7 +189730,7 @@ msgstr "Как продвигаются поиски? Нашёл?" msgid "Sweets" msgstr "Сладости" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "Найти 25 горстей ежевики." @@ -188470,7 +189767,7 @@ msgstr "Спасибо за помощь. Вот твоя награда." msgid "Visit the Isherwoods" msgstr "Навестите Ишервудов" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -189474,7 +190771,7 @@ msgstr "Я постараюсь докладывать капитану о си msgid "Angry pizzaiolo" msgstr "Сердитый пиццаоло" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -189518,7 +190815,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "Найти Истинного Поешку" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "Помочь пиццаоло найти Истинного Поешку и надрать ему зад." @@ -189563,7 +190860,7 @@ msgstr "Ещё один готов! Мы хорошо работаем, msgid "Pizza parlor" msgstr "Пиццерия" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "Помочь пиццаоло вернуть его ресторан" @@ -189609,7 +190906,7 @@ msgstr "" msgid "Family house" msgstr "Родной дом" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -189643,7 +190940,7 @@ msgstr "Если ты слушаешь внимательно, тебе буде msgid "Find scrap for the meteorologist" msgstr "Найти металлолом для метеоролога" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "Метеоролог просит принести ему 50 кусков металлолома." @@ -189706,7 +191003,7 @@ msgstr "С чего ты это говоришь?" msgid "Find batteries for the meteorologist" msgstr "Найти батареи для метеоролога" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "Метеоролог просит принести ему 6 средних батарей." @@ -189739,7 +191036,7 @@ msgstr "Отлично, я продолжу работу…" msgid "Find lens_small 5" msgstr "Принести 5 маленьких качественных линз" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "Метеоролог просит принести ему 5 маленьких качественных линз" @@ -189772,7 +191069,7 @@ msgstr "Отлично, я продолжу работать над этим…" msgid "Find radiocontrol" msgstr "Найти пульт радиоуправления" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "Метеоролог просит принести ему пульт радиоуправления." @@ -189811,7 +191108,7 @@ msgstr "" msgid "Find crashed drone" msgstr "Найти упавший дрон" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "Метеоролог попросил принести его потерпевший аварию дрон." @@ -190138,8 +191435,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "Найти людей для зачистки задней комнаты" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -190637,7 +191933,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "Соберите 50 доз антисептика." -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -190690,7 +191986,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "Найти 30 бинтов" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -190726,7 +192022,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "Найти 6 пузырьков Прозака" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -190831,7 +192127,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "Сбережения в банке, ч. 2" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -190880,7 +192176,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "Пойдём покурим." -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -190928,7 +192224,7 @@ msgstr "Спасибо! Замолвлю за тебя словечко в це msgid "Clear Back Bay" msgstr "Зачистить задние комнаты" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -190993,7 +192289,7 @@ msgstr "" msgid "Missing Caravan" msgstr "Пропавший караван" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -191052,7 +192348,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "Доставить планы проекта" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -191103,7 +192399,7 @@ msgstr "" msgid "Solar Power" msgstr "Солнечная энергетика" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -191150,7 +192446,7 @@ msgstr "" msgid "In a Pickle" msgstr "Сбережения в банке" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -191212,7 +192508,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "Неизвестный получатель" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -191225,6 +192521,71 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "Вы уже совершили доставку?" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "Проверить ферму" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" +"Встретили группу фермеров. Они не особо хотят иметь дела с нашими " +"караванами, но с кем-то вроде тебя вполне могут." + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "Отлично." + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "Звучит разумно." + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "Будь осторожнее. Снаружи опасно." + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "Ха, представь себе." + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "Что есть то есть." + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" +"Были кое-какие слухи. Ребята говорят о какой-то секретной лаборатории, в " +"глуши, и в ней есть выжившие." + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "Проверить замок из металлолома" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" +"Несколько моих караванов вернулись с новостями о гигантском замке из металла" +" на верхушке скалы, вдали от всего остального. Им хватило ума не проверять, " +"что там, но если ты хочешь, можешь попробовать." + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "Ваши похороны." + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "Будь осторожнее. Мне то место кажется опасным." + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -191422,7 +192783,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "Достать припасы для поджигателя." -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "Принести поджигателю 42 кг химического удобрения" @@ -191485,7 +192846,7 @@ msgstr "Черт. Похоже, это не только мне в голову msgid "Kill Bandits" msgstr "Убить бандитов" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -191536,7 +192897,7 @@ msgstr "" msgid "Deal with Informant" msgstr "Разобраться с информатором" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -191582,11 +192943,80 @@ msgstr "Вы разобрались с крысой?" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "Спасибо. Я разъясню всем, кто будет спрашивать об этом." +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "Найти источник роботов" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" +"Обычно я мало что слышу от командования, но недавно мы получили сообщение по" +" радио. Думаю, попросить тебя разобраться будет правильным выбором. С тех " +"пор, как дела вылетели в трубу, стали поступать сообщения о странных роботах" +" и блуждающих там штуках. Не знаю как, но очевидно, что командование " +"отследило то, что, по их мнению, является источником. Они хотят, чтобы кто-" +"нибудь пошел и узнал, кто их делает, и можем ли мы получить от них какие-" +"либо технологии или помощь. Как ты понимаешь, это строго разведывательная " +"миссия: это может быть кто-то враждебный, поэтому не вступай в открытый бой." + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "В этот раз для тебя кое-что странное…" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" +"Спасибо, как будешь знать, кто это, доложи мне, и я передам информацию " +"дальше." + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" +"Возвращайся, когда будет возможность, если есть шанс, что эти штуки на нашей" +" стороне, нам понадобится вся помощь, которую мы можем получить." + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" +"Если тебе попадутся эти странные машины, не вступай с бой. Прячься и уходи, " +"как по мне. Они, кажется, атакуют зомби, но это не значит, что они смогут " +"тебя от них отличить." + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "Отличная работа. Если честно, меня терзали сомнения." + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" +"Жаль, очень жаль, чёрт возьми. Хотелось бы, чтоб тебе удалось узнать " +"побольше. Спасибо за попытку." + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "Чёрт… будем надеяться, что мы сможем попытаться когда-нибудь ещё раз." + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "Обезопасить торговый путь" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -191621,15 +193051,11 @@ msgstr "" "Поискать в кустах какие-либо следы? Я не следопыт, но думаю вы вполне можете" " там что-либо найти." -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "Отличная работа. Если честно, меня терзали сомнения." - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "Убить главаря налётчиков" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -191715,7 +193141,7 @@ msgstr "" msgid "Return Field Data" msgstr "Доставить полевые данные" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -191778,7 +193204,7 @@ msgstr "Просто бесполезно…" msgid "Steal a dead man's mind" msgstr "Украсть мысли мертвеца" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -191835,7 +193261,7 @@ msgstr "Передаём нашу благодарность и оплату." msgid "Light retrieval" msgstr "Вернуть фотонный накопитель" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -191888,14 +193314,17 @@ msgstr "Удалось ли вернуть чертежи?" msgid "Iron Safari" msgstr "Железное сафари" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" "Отключить и принести неактивного робота чужих. Вы можете перехватить робота," -" указанного в Центре 01 или найти другого отключённого и принести." +" указанного в Центре 01 или найти другого отключённого и принести. Чтобы " +"отключить его, вам понадобится некоторый опыт работы с электроникой или " +"механикой." #: lang/json/mission_def_from_json.py msgid "" @@ -191949,7 +193378,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "Принести золото" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "Найти 200 золота." @@ -191999,7 +193428,7 @@ msgstr "Мда, мне придётся лезть за золотом само msgid "Active Noise Control" msgstr "Активное шумоподавление" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -192049,7 +193478,7 @@ msgstr "Ага, спасибо за бездействие." msgid "Return to Hub 01" msgstr "Вернуться в Хаб 01" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "Вернуться в Хаб 01." @@ -194065,7 +195494,7 @@ msgstr "Бамм-Бамм" msgid "Secure Area" msgstr "Обезопасить территорию" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -194089,7 +195518,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "Потерявшийся в лесу" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -194124,7 +195553,7 @@ msgstr "Лучше не шуметь. Видимость в лесу плоха msgid "Protect the cattle" msgstr "Защитить скот" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "Кто-то или что-то с болот крадёт скот. Остановите это." @@ -194169,7 +195598,7 @@ msgstr "" msgid "Betty" msgstr "Бетти" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "Убить 50 динозавров" @@ -194229,7 +195658,7 @@ msgstr "" msgid "Stromer" msgstr "Стромер" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "Убей мне Ти-Рекса" @@ -195083,6 +196512,31 @@ msgstr "" "%1$s пытается раздробить %2$s противника () своей палицей, но " "промахивается и спотыкается!" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "%1$s бьёт вас своим огненным кнутом!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "%1$s бьёт NPC () своим огненным кнутом!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "%1$s бьёт вас своим огненным кнутом, но не может пробить броню." + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" +"%1$s бьёт NPC () своим огненным кнутом, но не может пробить броню." + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -195703,29 +197157,29 @@ msgstr "Ушла на дно." #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py msgid "Gastropod" -msgstr "" +msgstr "Брюхоногий" #. ~ Mutation class: Gastropod mutagen_message #: lang/json/mutation_category_from_json.py msgid "Are you dancing a descending spiral?" -msgstr "" +msgstr "Ты танцуешь по сужающейся спирали?" #. ~ Mutation class: Gastropod iv_message #: lang/json/mutation_category_from_json.py msgid "Your split lower body starts to come back together." -msgstr "" +msgstr "Ваши разделённые нижние части начинают вновь соединяться." #. ~ Mutation class: Gastropod Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" msgid "Left a trail." -msgstr "" +msgstr "Оставил след." #. ~ Mutation class: Gastropod Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" msgid "Left a trail." -msgstr "" +msgstr "Оставила след." #. ~ Mutation class name #: lang/json/mutation_category_from_json.py @@ -195778,13 +197232,13 @@ msgstr "Ваш сердечный ритм дико ускоряется пос #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "Принял свою звериную натуру." #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "Приняла свою звериную натуру." #. ~ Mutation class name @@ -195990,17 +197444,17 @@ msgstr "Сбросила уродливую человеческую кожу." #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py msgid "Batrachian" -msgstr "" +msgstr "Батрахий" #. ~ Mutation class: Batrachian mutagen_message #: lang/json/mutation_category_from_json.py msgid "An involuntary hop and a croak." -msgstr "" +msgstr "Непроизвольный прыжок и кваканье." #. ~ Mutation class: Batrachian iv_message #: lang/json/mutation_category_from_json.py msgid "Like a tadpole you must transform." -msgstr "" +msgstr "Вы, как головастик, должны трансформироваться." #. ~ Mutation class: Batrachian Male memorial messsage #: lang/json/mutation_category_from_json.py @@ -196541,6 +197995,33 @@ msgstr "" "Вы ученик клана Яда. Начинаете с одним из пяти смертельных стилей " "рукопашного боя: Многоножки, Гадюки, Скорпиона, Ящерицы или Жабы." +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "Стандартный нейробионический интерфейс" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" +"В вашей центральной нервной системе есть матрица, которая действует как " +"универсальная шина управления и установки для компактных бионических " +"модулей." + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "Шасси киборга Экзоди - стиль 1а" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" +"Ваш мозг и некоторые ваши органы находятся в защищенном и изящном двуногом " +"шасси-шагателе." + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "Волосы: чёрные, ёжик" @@ -197375,6 +198856,8 @@ msgid "" "You can spit a wad of bioluminescent goo several meters away. There it will" " light up it's surroundings until it dissipates." msgstr "" +"Вы можете выплюнуть комок биолюминесцентной слизи на несколько метров от " +"вас. Там он будет освещать своё окружение, пока не исчезнет." #: lang/json/mutation_from_json.py msgid "Normal Human" @@ -197492,19 +198975,29 @@ msgstr "Вы просто быстрый! Вы получаете 10% бонус #: lang/json/mutation_from_json.py msgid "Tunnel Fighter" -msgstr "" +msgstr "Туннельный боец" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " "bonuses when fighting underground." msgstr "" +"Вы умеете драться в тесных туннелях, грозящих обрушиться. Вы получаете " +"бонусы, сражаясь под землей." #: lang/json/mutation_from_json.py msgid "Night Raider" +msgstr "Ночной налетчик" + +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." msgstr "" +"Ваше тело едино с ночью. Вы издаёте меньше шума, когда луна в небе, даже " +"если вы её не видите." #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py @@ -197569,21 +199062,21 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Earth Sleeper" -msgstr "" +msgstr "Спящий под землёй" #. ~ Description for {'str': 'Earth Sleeper'} #: lang/json/mutation_from_json.py msgid "You always sleep better surrounded by earth." -msgstr "" +msgstr "Вы всегда спите крепче, когда окружены землёй." #: lang/json/mutation_from_json.py msgid "Aquatic Sleeper" -msgstr "" +msgstr "Спящий под водой" #. ~ Description for {'str': 'Aquatic Sleeper'} #: lang/json/mutation_from_json.py msgid "You always sleep better underwater." -msgstr "" +msgstr "Вы всегда спите крепче, когда вы под водой." #: lang/json/mutation_from_json.py msgid "Pain Resistant" @@ -197645,19 +199138,21 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Bovine Bulk" -msgstr "" +msgstr "Бычья масса" #. ~ Description for {'str': 'Bovine Bulk'} #: lang/json/mutation_from_json.py #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" +"Вы прибавили в весе, в основном в мышцах! Вы получаете 10% бонус ко всем " +"очкам здоровья. Теперь будет сложнее плавать." #: lang/json/mutation_from_json.py msgid "Bull Roids" -msgstr "" +msgstr "Бычьи стероиды" #. ~ Description for {'str': 'Bull Roids'} #: lang/json/mutation_from_json.py @@ -197667,6 +199162,9 @@ msgid "" "get a 20% bonus to all hit points. Swimming is no longer recommended for " "someone built like you." msgstr "" +"Вас просто не будет допустили бы до участвия в спортивных состязаниях, " +"существовавших до Катаклизма. Вы получаете 20% бонус ко всем очкам здоровья." +" Для таких, как вы, плавание больше не рекомендуется." #: lang/json/mutation_from_json.py msgid "Tough" @@ -197793,7 +199291,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Stomach Cleanse" -msgstr "" +msgstr "Очистка желудка" #. ~ Description for {'str': 'Stomach Cleanse'} #: lang/json/mutation_from_json.py @@ -197803,6 +199301,10 @@ msgid "" "poisoning, alcohol, etc. If you throw up because of this this, you won't " "suffer any residual nausea." msgstr "" +"Вы приобрели способность выворачивать желудок за пределы тела, чтобы быстро " +"выводить токсины, и у вас больше шансов вырвать из-за пищевого отравления, " +"алкоголя и т. д. Если вас тошнит из-за этого, у вас не будет остаточной " +"тошноты." #: lang/json/mutation_from_json.py msgid "Good Memory" @@ -197941,9 +199443,11 @@ msgstr "Внушающий ужас" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" +"Есть в вас что-то нехорошее, недоброе. И это что-то заставляет существ " +"бежать от вас подальше." #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -197973,7 +199477,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Combat Adaptation" -msgstr "" +msgstr "Боевая адаптация" #. ~ Description for {'str': 'Combat Adaptation'} #: lang/json/mutation_from_json.py @@ -197983,6 +199487,10 @@ msgid "" "process things around you slightly faster. Giving you better reaction times" " that you can pay for later if you survive." msgstr "" +"Когда вы находитесь в большой опасности, вы можете щелкнуть химическим " +"переключателем в своем мозгу, и за счет голода, усталости и жажды ваша " +"нервная система будет обрабатывать вещи вокруг вас немного быстрее. Дает вам" +" лучшее время реакции, за которое вы можете заплатить позже, если выживете." #: lang/json/mutation_from_json.py msgid "Less Sleep" @@ -198309,7 +199817,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Strong Knees" -msgstr "" +msgstr "Сильные колени" #. ~ Description for {'str': 'Strong Knees'} #: lang/json/mutation_from_json.py @@ -198317,6 +199825,9 @@ msgid "" "Your knees are strong and capable of angles that you couldn't imagine " "previously. Moving over rough terrain will slow you down less than normal." msgstr "" +"У вас сильные колени, которые способны изгибаться под углами, которые вы " +"раньше не могли себе представить. Движение по пересеченной местности " +"замедлит вас меньше, чем обычно." #: lang/json/mutation_from_json.py msgid "Languorous" @@ -199182,6 +200693,10 @@ msgid "" "toggle NV-visible areas on or off. Surprisingly, frogs' vision works " "exactly the same." msgstr "" +"Ваше зрение изменилось: вы лучше видите в темноте, но страдаете " +"близорукостью на свету. Возможно, вам помогут очки. Активируйте, чтобы " +"включить и выключить видимые в НЗ зоны. Удивительно, но зрение у лягушек " +"работает точно так же." #: lang/json/mutation_from_json.py msgid "Avian Eyes" @@ -200066,10 +201581,12 @@ msgid "" "You exude slime from your pores. You can spread that slime on an opponent " "in melee range." msgstr "" +"Вы источаете слизь из своих пор. Вы можете размазать эту слизь на противника" +" в ближнем бою." #: lang/json/mutation_from_json.py msgid "Bulging Reservoir" -msgstr "" +msgstr "Вздутый резервуар" #. ~ Description for {'str': 'Bulging Reservoir'} #: lang/json/mutation_from_json.py @@ -200077,10 +201594,12 @@ msgid "" "You develop a reservoir of fluids that bulges out of your abdomen. Your " "body has adapted to containing extra liquids in event of shortfalls." msgstr "" +"У вас образовался резервуар для жидкости на вашем животе. Ваше тело " +"приспособилось к тому, чтобы сохранять лишнюю жидкость в случае её нехватки." #: lang/json/mutation_from_json.py msgid "Bombadier Beetle Blast" -msgstr "" +msgstr "Плевок жука-бомбардира" #. ~ Description for {'str': 'Bombadier Beetle Blast'} #: lang/json/mutation_from_json.py @@ -200089,16 +201608,19 @@ msgid "" "distance. This will drastically increase your thirst. Without an extra " "reservoir you would quickly dehydrate yourself." msgstr "" +"У вас есть способность брызгать кипятком на врагов в ближнем бою. Это резко " +"усилит вашу жажду. Без дополнительного резервуара это быстро вызовет " +"обезвоживание." #: lang/json/mutation_from_json.py #, no-python-format msgid "You spray %s with a boiling chemical mixture" -msgstr "" +msgstr "Вы брызгаете в противника (%s) кипящей химической смесью" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s sprays %2$s with a boiling chemical mixture" -msgstr "" +msgstr "%1$s брызгаете в противника (%2$s) кипящей химической смесью" #: lang/json/mutation_from_json.py msgid "Large Talons" @@ -200210,7 +201732,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Amphibian Pheromones" -msgstr "" +msgstr "Феромоны амфибии" #. ~ Description for {'str': 'Amphibian Pheromones'} #: lang/json/mutation_from_json.py @@ -200218,6 +201740,8 @@ msgid "" "Your body produces low-level pheromones, identifying you as a friend to many" " species of amphibian. Amphibians will attack you much less." msgstr "" +"Ваше тело производит небольшое количество феромонов, выявляя вас как друга " +"для многих видов земноводных. Земноводные атакуют вас гораздо реже." #: lang/json/mutation_from_json.py msgid "Mammal Pheromones" @@ -200380,7 +201904,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Muscle Consolidation" -msgstr "" +msgstr "Консолидация мышц" #. ~ Description for {'str': 'Muscle Consolidation'} #: lang/json/mutation_from_json.py @@ -200388,10 +201912,11 @@ msgid "" "Your extremities have gained strength but lost fine motor skills. -1 " "Dexterity +2 Strength." msgstr "" +"Ваши конечности окрепли, но утратили мелкую моторику. -1 Ловкость +2 Сила." #: lang/json/mutation_from_json.py msgid "Rasping Tongue" -msgstr "" +msgstr "Грубый язык" #. ~ Description for {'str': 'Rasping Tongue'} #: lang/json/mutation_from_json.py @@ -200399,35 +201924,37 @@ msgid "" "You've developed an extremely long and mobile tongue capped with teeth. You" " may use it to attack your enemies." msgstr "" +"У вас очень длинный и подвижный язык, скрытый зубами. Вы можете использовать" +" его, чтобы атаковать своих врагов." #: lang/json/mutation_from_json.py #, no-python-format msgid "You tear into %s with your rasping tongue." -msgstr "" +msgstr "Вы разрываете противника (%s) своим грубым языком" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s tears into %2$s with their rasping tongue." -msgstr "" +msgstr "%1$s разрывает противника (%2$s) своим грубым языком" #: lang/json/mutation_from_json.py msgid "Harpoon Tongue" -msgstr "" +msgstr "Язык-гарпун" #. ~ Description for {'str': 'Harpoon Tongue'} #: lang/json/mutation_from_json.py msgid "Your tongue has increased its length and mobility." -msgstr "" +msgstr "Ваш язык стал длиннее и подвижнее." #: lang/json/mutation_from_json.py #, no-python-format msgid "You stab into %s with your harpoon tongue." -msgstr "" +msgstr "Вы пронзаете противника (%s) своим языком-гарпуном." #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s stabs into %2$s with their harpoon tongue." -msgstr "" +msgstr "%1$s пронзает противника (%2$s) своим языком-гарпуном." #: lang/json/mutation_from_json.py msgid "Compound Eyes" @@ -200459,21 +201986,23 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Strong Legs" -msgstr "" +msgstr "Сильные ноги" #. ~ Description for {'str': 'Strong Legs'} #: lang/json/mutation_from_json.py msgid "Your legs have gained muscle mass to propel you across any terrain." msgstr "" +"Ваши ноги приобрели мышечную массу, чтобы вы могли двигаться по любой " +"местности." #: lang/json/mutation_from_json.py msgid "Leaping Legs" -msgstr "" +msgstr "Ноги прыгуна" #. ~ Description for {'str': 'Leaping Legs'} #: lang/json/mutation_from_json.py msgid "You've gained a strong ability to leap from a standing position." -msgstr "" +msgstr "Вы приобрели способность сильно прыгать из положения стоя." #. ~ Description for {'str': 'Crushing Leap'} #: lang/json/mutation_from_json.py @@ -200481,6 +202010,8 @@ msgid "" "You've gained a strong ability to leap a significant distance from a " "standing position and crush whatever you land on." msgstr "" +"Вы приобрели способность мощно прыгать на значительное расстояние из " +"положения стоя и давить всё, на что вы приземлитесь." #: lang/json/mutation_from_json.py msgid "Toe Talons" @@ -201395,7 +202926,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Gastropod Foot" -msgstr "" +msgstr "Нога брюхоногого" #. ~ Description for {'str': 'Gastropod Foot'} #: lang/json/mutation_from_json.py @@ -201406,10 +202937,15 @@ msgid "" "noise. In addition to being harder to knock down, you can move through " "sludge-covered surfaces easily." msgstr "" +"Ваши ноги превратились в единую мускульную «ступню», которая растёт из " +"вашего живота. Вы двигаетесь примерно на четверть своей предыдущей скорости " +"и больше не можете носить брюки или обувь, с другой стороны, вы издаете " +"значительно меньше шума. Помимо того, что вас труднее сбить с ног, вы можете" +" легко перемещаться по покрытым илом поверхностям." #: lang/json/mutation_from_json.py msgid "Gastropod Balance" -msgstr "" +msgstr "Равновесие брюхоногого" #. ~ Description for {'str': 'Gastropod Balance'} #: lang/json/mutation_from_json.py @@ -201417,10 +202953,12 @@ msgid "" "By pushing your whole 'foot' against the ground you are able to move across " "rough terrain without losing your 'footing'." msgstr "" +"Упираясь всей своей «ногой» в землю, вы можете передвигаться по пересеченной" +" местности, не теряя опоры." #: lang/json/mutation_from_json.py msgid "Mucus Secretion" -msgstr "" +msgstr "Секреция слизи" #. ~ Description for {'str': 'Mucus Secretion'} #: lang/json/mutation_from_json.py @@ -201429,31 +202967,36 @@ msgid "" " covers evrerything you come into contact with but now you can move through " "slime you didn't create with ease." msgstr "" +"Когда-то у ваш партнёр назвал вас склизким, теперь вы тому воплощение этого " +"слова. Слизь покрывает всё, с чем вы соприкасаетесь, но теперь вы можете " +"легко перемещаться через слизь, которую не создавали." #: lang/json/mutation_from_json.py msgid "Acidic Secretion" -msgstr "" +msgstr "Секреция кислоты" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" +"В вашей слизи образовался кислотный компонент, который, кажется, размягчает " +"ваших жертв." #: lang/json/mutation_from_json.py #, no-python-format msgid "You smear slime on %s" -msgstr "" +msgstr "Вы размазываете слизь по цели (%s)" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s smears slime on %2$s" -msgstr "" +msgstr "%1$s размазывает слизь по цели (%2$s)" #: lang/json/mutation_from_json.py msgid "Snail Trail" -msgstr "" +msgstr "След улитки" #. ~ Description for {'str': 'Snail Trail'} #: lang/json/mutation_from_json.py @@ -201461,6 +203004,8 @@ msgid "" "You've developed some ability to control your slime emissions. As a result " "of this you can leave trails of slime anywhere you walk." msgstr "" +"Вы развили способность контролировать выбросы слизи. В результате вы можете " +"оставлять следы слизи везде, где бы вы ни пошли." #: lang/json/mutation_from_json.py msgid "Canine Ears" @@ -201719,8 +203264,8 @@ msgstr "Сильный" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" -msgstr "Ваши мышцы стали немного сильнее. Сила + 1" +msgid "Your muscles are a little stronger. +1 Strength." +msgstr "Ваши мышцы стали немного сильнее. Сила + 1." #: lang/json/mutation_from_json.py msgid "Very Strong" @@ -201728,8 +203273,8 @@ msgstr "Очень сильный" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" -msgstr "Ваши мышцы стали ещё сильнее. Сила + 2" +msgid "Your muscles are stronger. +2 Strength." +msgstr "Ваши мышцы стали ещё сильнее. Сила + 2." #: lang/json/mutation_from_json.py msgid "Extremely Strong" @@ -201737,8 +203282,8 @@ msgstr "Невероятно сильный" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" -msgstr "Ваши мышцы стали гораздо сильнее. Сила + 4" +msgid "Your muscles are much stronger. +4 Strength." +msgstr "Ваши мышцы стали намного сильнее. Сила + 4." #: lang/json/mutation_from_json.py msgid "Insanely Strong" @@ -201746,8 +203291,8 @@ msgstr "Безумно сильный" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" -msgstr "Ваши мышцы огромны, как Альпы. Сила +7" +msgid "Your muscles are noticeably bulging. +7 Strength." +msgstr "Ваши мышцы огромны, как Альпы. Сила +7." #: lang/json/mutation_from_json.py msgid "Prime Strength" @@ -201764,8 +203309,8 @@ msgstr "Ловкий" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" -msgstr "Вы стали слегка проворнее. Ловкость +1" +msgid "You are a little nimbler. +1 Dexterity." +msgstr "Вы стали слегка проворнее. Ловкость +1." #: lang/json/mutation_from_json.py msgid "Very Dextrous" @@ -201773,8 +203318,8 @@ msgstr "Очень ловкий" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" -msgstr "Вы стали более ловким. Ловкость + 2" +msgid "You are nimbler. +2 Dexterity." +msgstr "Вы стали более ловким. Ловкость + 2." #: lang/json/mutation_from_json.py msgid "Extremely Dextrous" @@ -201782,8 +203327,8 @@ msgstr "Невероятно ловкий" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" -msgstr "Вы ловки и быстры. Ловкость + 4" +msgid "You are nimble and quick. +4 Dexterity." +msgstr "Вы ловки и быстры. Ловкость + 4." #: lang/json/mutation_from_json.py msgid "Insanely Dextrous" @@ -201791,8 +203336,8 @@ msgstr "Безумно ловкий" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" -msgstr "Вы стали невообразимо ловким. Ловкость + 7" +msgid "You are much nimbler than before. +7 Dexterity." +msgstr "Вы стали невообразимо ловким. Ловкость + 7." #: lang/json/mutation_from_json.py msgid "Prime Dexterity" @@ -201809,8 +203354,8 @@ msgstr "Умный" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" -msgstr "Вы стали немного умнее. Интеллект + 1" +msgid "You are a little smarter. +1 Intelligence." +msgstr "Вы стали немного умнее. Интеллект + 1." #: lang/json/mutation_from_json.py msgid "Very Smart" @@ -201818,8 +203363,8 @@ msgstr "Очень умный" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" -msgstr "Вы стали умнее. Интеллект + 2" +msgid "You are smarter. +2 Intelligence." +msgstr "Вы стали умнее. Интеллект + 2." #: lang/json/mutation_from_json.py msgid "Extremely Smart" @@ -201828,8 +203373,8 @@ msgstr "Невероятно умный" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" -msgstr "Вы гораздо умнее, и ваш череп стал немного выпуклым. Интеллект + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." +msgstr "Вы гораздо умнее, и ваш череп стал немного выпуклым. Интеллект + 4." #: lang/json/mutation_from_json.py msgid "Insanely Smart" @@ -201838,8 +203383,8 @@ msgstr "Безумно умный" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" -msgstr "Ваш череп заметно выпирает из-за внушительного мозга. Интеллект + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." +msgstr "Ваш череп заметно выпирает из-за внушительного мозга. Интеллект + 7." #: lang/json/mutation_from_json.py msgid "Prime Intelligence" @@ -201870,8 +203415,8 @@ msgstr "Восприимчивый" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" -msgstr "Ваши чувства немного обострены. Восприятие + 1" +msgid "Your senses are a little keener. +1 Perception." +msgstr "Ваши чувства немного обострены. Восприятие + 1." #: lang/json/mutation_from_json.py msgid "Very Perceptive" @@ -201879,8 +203424,8 @@ msgstr "Очень восприимчивый" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" -msgstr "Ваши чувства обострены. Восприятие + 2" +msgid "Your senses are keener. +2 Perception." +msgstr "Ваши чувства обострены. Восприятие + 2." #: lang/json/mutation_from_json.py msgid "Extremely Perceptive" @@ -201888,8 +203433,8 @@ msgstr "Невероятно восприимчивый" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" -msgstr "Ваши чувства стали гораздо острее. Восприятие + 4" +msgid "Your senses are much keener. +4 Perception." +msgstr "Ваши чувства стали гораздо острее. Восприятие + 4." #: lang/json/mutation_from_json.py msgid "Insanely Perceptive" @@ -201897,10 +203442,10 @@ msgstr "Безумно восприимчивый" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" "Вы можете ощущать вещи, о которых даже никогда не задумывались. Восприятие " -"+7" +"+7." #: lang/json/mutation_from_json.py msgid "Prime Perception" @@ -202049,7 +203594,7 @@ msgstr "Ваш язык раздвоен, как у рептилий. Не им #: lang/json/mutation_from_json.py msgid "Lolling Tongue" -msgstr "" +msgstr "Обвисший язык" #. ~ Description for {'str': 'Lolling Tongue'} #: lang/json/mutation_from_json.py @@ -202057,10 +203602,12 @@ msgid "" "Your tongue has lengthened and often extends far beyond your mouth. This " "has no effect." msgstr "" +"Ваш язык удлинился и часто выходит выдвигается за пределы вашего рта. Это не" +" оказывает никакого эффекта." #: lang/json/mutation_from_json.py msgid "Whipping Tongue" -msgstr "" +msgstr "Хлёсткий язык" #. ~ Description for {'str': 'Whipping Tongue'} #: lang/json/mutation_from_json.py @@ -202068,16 +203615,18 @@ msgid "" "You've developed an extremely long and mobile tongue. You may use it to " "attack your enemies." msgstr "" +"Вы развили чрезвычайно длинный и подвижный язык. Вы можете использовать его," +" чтобы атаковать своих врагов." #: lang/json/mutation_from_json.py #, no-python-format msgid "You bash %s with your tongue." -msgstr "" +msgstr "Вы бьёте противника (%s) своим языком." #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s smacks into %2$s with their tongue." -msgstr "" +msgstr "%1$s лупит противника (%2$s) своим языком." #: lang/json/mutation_from_json.py msgid "Bulging Eyes" @@ -202093,7 +203642,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Intermediate Eyestalks" -msgstr "" +msgstr "Промежуточные стебельчатые глаза" #. ~ Description for {'str': 'Intermediate Eyestalks'} #: lang/json/mutation_from_json.py @@ -202103,10 +203652,14 @@ msgid "" "but sometimes your vision goes wonky as your brain tries to process the new " "angles. Perception +1" msgstr "" +"Ваши глаза слегка выступают из головы на щупальцах, что не позволяет " +"использовать какие-либо жёсткие очки. С другой стороны, вы больше видите " +"вокруг, но иногда ваше зрение становится нестабильным, когда ваш мозг " +"пытается обработать новые углы. Восприятие +1" #: lang/json/mutation_from_json.py msgid "Eyestalks" -msgstr "" +msgstr "Стебельчатые глаза" #. ~ Description for {'str': 'Eyestalks'} #: lang/json/mutation_from_json.py @@ -202115,6 +203668,10 @@ msgid "" "of any eyewear. On the plus side, you can see in two directions at once, " "and they automatically retract to reduce damage. Perception +2" msgstr "" +"Ваши глаза выступают из головы на гибких щупальцах, что не позволяет " +"использовать какие-либо очки. С другой стороны, вы можете видеть сразу в " +"двух направлениях, и они рефлекторно убираются, чтобы уменьшить урон. " +"Восприятие +2" #: lang/json/mutation_from_json.py msgid "Mouth Flaps" @@ -202388,7 +203945,7 @@ msgstr "%1$s откусывает от противника (%2$s) кусок" #: lang/json/mutation_from_json.py msgid "Wide Mouth" -msgstr "" +msgstr "Широкий рот" #. ~ Description for {'str': 'Wide Mouth'} #: lang/json/mutation_from_json.py @@ -202396,6 +203953,8 @@ msgid "" "Your face and jaws have widened like a frogs. It looks hideous but it " "allows you to eat food whole." msgstr "" +"Ваше лицо и челюсти расширились, как у лягушек. Это выглядит отвратительно, " +"но позволяет есть пищу целиком." #: lang/json/mutation_from_json.py msgid "Proboscis" @@ -202464,7 +204023,7 @@ msgstr "Охота настойчивостью" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" "Вы можете многие километры преследовать добычу в разном ритме, пока она не " "упадёт от изнеможения." @@ -202603,7 +204162,7 @@ msgstr "Очень сонный" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" "Вам необходимо спать довольно часто. Вы будете тратить примерно половину " "своей жизни в или около кровати." @@ -203212,7 +204771,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Croaking Voice" -msgstr "" +msgstr "Хриплый голос" #. ~ Description for {'str': 'Croaking Voice'} #: lang/json/mutation_from_json.py @@ -203220,6 +204779,8 @@ msgid "" "You have a low, croaking voice, like an aged grandparent. Persuading NPCs " "will be easier, but threatening them will be more difficult." msgstr "" +"У вас низкий хриплый голос, как у пожилых бабушек и дедушек. Уговорить NPC " +"будет легче, но сложнее будет им угрожать." #: lang/json/mutation_from_json.py msgid "Snarling Voice" @@ -203441,7 +205002,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Nacreous Shell" -msgstr "" +msgstr "Перламутровая раковина" #. ~ Description for {'str': 'Nacreous Shell'} #: lang/json/mutation_from_json.py @@ -203449,6 +205010,8 @@ msgid "" "Your protective shell has developed increased strength and hardness and a " "mother of pearl sheen." msgstr "" +"Ваша раковина приобрела повышенную прочность, твердость и перламутровый " +"блеск." #: lang/json/mutation_from_json.py msgid "Leg Tentacles" @@ -203493,7 +205056,7 @@ msgstr "" msgid "" "You feel bad for all the creatures that don't carry their home on their " "backs." -msgstr "" +msgstr "Вам жаль всех тех, кто не носит свой дом на спине." #. ~ Description for {'str': 'Bird'} #: lang/json/mutation_from_json.py @@ -203685,7 +205248,7 @@ msgstr "" #. ~ Description for {'str': 'Batrachian'} #: lang/json/mutation_from_json.py msgid "A perfect ambush predator, if only there were less competition." -msgstr "" +msgstr "Идеальный засадный хищник, если бы только конкуренция была поменьше." #: lang/json/mutation_from_json.py msgid "Diminutive" @@ -204228,13 +205791,15 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "Debug Stamina" -msgstr "" +msgstr "Отладочная выносливость" #. ~ Description for {'str': 'Debug Stamina'} #: lang/json/mutation_from_json.py msgid "" "You can't run from the bugs, but you have enough stamina to at least try to." msgstr "" +"Вы не можете убежать от багов, но у вас достаточно выносливости, чтобы хотя " +"бы попытаться." #: lang/json/mutation_from_json.py msgid "Debug Deodorizer" @@ -207499,7 +209064,7 @@ msgstr "Ужасная чувствительность к мане" #: lang/json/mutation_from_json.py msgid "Slime Breath" -msgstr "" +msgstr "Слизистое дыхание" #. ~ Description for {'str': 'Slime Breath'} #: lang/json/mutation_from_json.py @@ -207507,10 +209072,12 @@ msgid "" "Your breath is sticky and slimy somehow. This won't damage your " "interactions with people but it's definitely noticeable." msgstr "" +"Ваше дыхание почему-то липкое и слизистое. Это не повредит вашему " +"взаимодействию с людьми, но определенно заметно." #: lang/json/mutation_from_json.py msgid "Chimeric Breath" -msgstr "" +msgstr "Дыхание химеры" #. ~ Description for {'str': 'Chimeric Breath'} #: lang/json/mutation_from_json.py @@ -207518,6 +209085,8 @@ msgid "" "Your breath could metaphorically melt lead. It's horrible. It's so bad " "that it can actually distract from your attempts to intimidate someone." msgstr "" +"Образно говоря, ваше дыхание может расплавить свинец. Это ужасно. Это " +"настолько плохо, что может отвлечь от ваших попыток кого-то запугать." #: lang/json/mutation_from_json.py msgid "Debug Spell Mutation" @@ -207798,6 +209367,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "Я ПОЕШЬ-КА. И Я ПРИНОШУ НАСЫЩЕНИЕ!" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "Киборг" @@ -207833,6 +209403,14 @@ msgstr "Мне нужно собрать больше костей." msgid "Fisherman" msgstr "Рыбак" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "Киборг, тип 1" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "Я киборг." + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "Член" @@ -208438,6 +210016,14 @@ msgstr "Я ищу мутаген стегозавра… Я собираюсь msgid "Operator" msgstr "Оператор" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "Библиотекарь Кузни" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "Я забочусь о книгах и свитках." + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "Королева пиратов" @@ -208575,6 +210161,10 @@ msgstr "Михаил Фролов" msgid "Heather Frolova" msgstr "Хитер Фролова" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "Рубик" + #: lang/json/npc_from_json.py msgid "member" msgstr "член" @@ -208743,6 +210333,10 @@ msgstr "Комиссионер" msgid "Guard" msgstr "Охранник" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "Возница" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "Макайла Санчес" @@ -208911,6 +210505,10 @@ msgstr "Йошими" msgid "Forge Lord" msgstr "Лорд Кузни" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "Библиотекарь, А" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "Хелен Тарвел, бывший пират" @@ -209924,6 +211522,10 @@ msgstr "яма со слизью" msgid "rocky butte" msgstr "каменный останец" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "вход с поверхности" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "лагерь из металлолома" @@ -210613,6 +212215,10 @@ msgstr "шипованная траншея" msgid "fabrication workshop survey" msgstr "место под производственную мастерскую" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "место под производственную мастерскую 2" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "место под кузницу" @@ -210621,25 +212227,41 @@ msgstr "место под кузницу" msgid "blacksmith shop" msgstr "кузница" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "место под загон" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "место под загон 2" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "место под склад" +#: lang/json/overmap_terrain_from_json.py +msgid "store house survey 2" +msgstr "место под склад 2" + #: lang/json/overmap_terrain_from_json.py msgid "saltworks survey" msgstr "место под солеварню" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "место под столовую" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" -msgstr "место под ферму" +msgid "canteen survey 2" +msgstr "место под столовую 2" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "место под ферму 2" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" +msgstr "место под гараж 2" #: lang/json/overmap_terrain_from_json.py msgid "military helipad garage" @@ -211005,6 +212627,10 @@ msgstr "дозорная башня ми-го" msgid "subway station?" msgstr "станция метро?" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "коридор лаборатории" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "реактор научной лаборатории" @@ -212491,6 +214117,70 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "Вы нашли утешение в дне бутылки. Черт побери, вам нужно выпить." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "Зависимость от снотворного" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" +"У вас были трудности со сном, так что вы начали принимать снотворное. " +"Проблема в том, что больше вы не можете уснуть без них, и Катаклизм только " +"усложняет ситуацию." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "Зависимость от снотворного" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" +"У вас были трудности со сном, так что вы начали принимать снотворное. " +"Проблема в том, что больше вы не можете уснуть без них, и Катаклизм только " +"усложняет ситуацию." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "Любитель кофеина" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" +"Кофе каждый день помогал вам выживать на работе, но теперь найти источник " +"кофеина куда сложнее." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "Любитель кофеина" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" +"Кофе каждый день помогал вам выживать на работе, но теперь найти источник " +"кофеина куда сложнее." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -212625,6 +214315,40 @@ msgstr "" "ритма современной жизни. Дикая природа не заполнена людьми, поэтому она " "должна быть безопасной. Правильно? Это должно быть так." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "Бушкрафт" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" +"Вы выводите кемпинг на совершенно новый уровень. Вы проводили ночи и " +"выходные, выживая среди дикой природы, имея в помощь только нож. Может быть," +" это убережет вас от людей." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "Бушкрафт" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" +"Вы выводите кемпинг на совершенно новый уровень. Вы проводили ночи и " +"выходные, выживая среди дикой природы, имея в помощь только нож. Может быть," +" это убережет вас от людей." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -212665,10 +214389,10 @@ msgstr "Любовь к книгам" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" "Вы любите читать, у вас просто никогда не было достаточно времени. Может " -"быть, у катаклизма есть скрытые плюсы." +"быть, у Катаклизма есть скрытые плюсы." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -212680,10 +214404,10 @@ msgstr "Любовь к книгам" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" "Вы любите читать, у вас просто никогда не было достаточно времени. Может " -"быть, у катаклизма есть скрытые плюсы." +"быть, у Катаклизма есть скрытые плюсы." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -213343,6 +215067,36 @@ msgstr "" "Вы действительно любите поесть и можете есть быстрее, можете есть и пить " "больше, чем кто-либо другой!" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "Марафонец" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" +"Вы каждый год участвовали в Бостонском марафоне. Теперь эта тренировка " +"пригодилась, чтобы избегать мертвых." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "Марафонец" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" +"Вы каждый год участвовали в Бостонском марафоне. Теперь эта тренировка " +"пригодилась, чтобы избегать мертвых." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -213655,6 +215409,70 @@ msgstr "" "Вы ловко управляетесь с роликами. Вы лучше уклоняетесь и имеете меньше " "шансов упасть от удара, пока носите роликовые коньки." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "Создание поделок" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" +"Вы любили создавать поделки дома. Можно надеяться, что это поможет вам " +"выжить сейчас, когда мир отправился в ад." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "Создание поделок" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" +"Вы любили создавать поделки дома. Можно надеяться, что это поможет вам " +"выжить сейчас, когда мир отправился в ад." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "Ремонт автомобилей" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" +"Проводить каждые выходные время в гараже над старым классическим автомобилем" +" было вашим любимым занятием. Вы так и не закончили машину, но, по крайней " +"мере, вы кое-чему научились за эти годы." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "Ремонт автомобилей" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" +"Проводить каждые выходные время в гараже над старым классическим автомобилем" +" было вашим любимым занятием. Вы так и не закончили машину, но, по крайней " +"мере, вы кое-чему научились за эти годы." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -213793,6 +215611,40 @@ msgstr "" "Вы помогали игрокам путешествовать по вашим подземельям и крепостям. Теперь " "вы последний член своей группы." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "Радиолюбитель" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" +"Вы коротали ночи напролет, создавая и ремонтируя старые радиоприемники. " +"Теперь вам не с кем связаться. Но вы не откажетесь от надежды, и, возможно, " +"ваши знания в области электроники могут вам чем-то помочь." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "Радиолюбитель" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" +"Вы коротали ночи напролет, создавая и ремонтируя старые радиоприемники. " +"Теперь вам не с кем связаться. Но вы не откажетесь от надежды, и, возможно, " +"ваши знания в области электроники могут вам чем-то помочь." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -213849,6 +215701,40 @@ msgstr "" "Вы хороши в защите и нападении с баскетбольным мечом, и нежити вас не " "обыграть в овертайме." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "Стрелок" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" +"Вам понравилось ходить в местный оружейный магазин и стрелять по мишеням. " +"Иногда даже по банкам на столбах забора. Может быть, если вы просто " +"представите себе цели на этих мертвых тварях, это может помочь." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "Стрелок" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" +"Вам понравилось ходить в местный оружейный магазин и стрелять по мишеням. " +"Иногда даже по банкам на столбах забора. Может быть, если вы просто " +"представите себе цели на этих мертвых тварях, это может помочь." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -213871,6 +215757,68 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "Врачи точно не приедут, но вы всё равно выживете." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "Стендовая стрельба" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" +"Ничего не сравнится с запахом ружейного дыма и разлетающимися в небе " +"керамическими оранжевыми дисками. Пора стрелять во что-то более мясистое, " +"чем глиняные голуби." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "Стендовая стрельба" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" +"Ничего не сравнится с запахом ружейного дыма и разлетающимися в небе " +"керамическими оранжевыми дисками. Пора стрелять во что-то более мясистое, " +"чем глиняные голуби." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "Гриль на заднем дворе" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" +"Вам нравилось собирать соседей на заднем дворе почти каждые выходные. Вы, " +"конечно, были заведовали грилем." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "Гриль на заднем дворе" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" +"Вам нравилось собирать соседей на заднем дворе почти каждые выходные. Вы, " +"конечно, были заведовали грилем." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -214306,7 +216254,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Meditation" -msgstr "" +msgstr "Медитация" #. ~ Profession (male Meditation) description #: lang/json/professions_from_json.py @@ -214321,7 +216269,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Meditation" -msgstr "" +msgstr "Медитация" #. ~ Profession (female Meditation) description #: lang/json/professions_from_json.py @@ -214795,6 +216743,8 @@ msgid "" "You played with the local team. You're the only one left, but now you can " "use your trusty bat for another purpose. Home run!" msgstr "" +"Вы играли с местной командой. Остались только ты, но теперь вы можешь " +"использовать свою верную биту для другой цели. Выбивай!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -214808,6 +216758,8 @@ msgid "" "You played with the local team. You're the only one left, but now you can " "use your trusty bat for another purpose. Home run!" msgstr "" +"Вы играли с местной командой. Остались только ты, но теперь вы можешь " +"использовать свою верную биту для другой цели. Выбивай!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -214891,6 +216843,10 @@ msgid "" "tours now, but as the saying goes, life is like riding a bicycle: you've got" " to keep moving." msgstr "" +"Вы были перспективным велосипедистом с яркой, многообещающей карьерой, " +"прежде чем всё это произошло. Скорее всего вам никогда уже не принять " +"участие в грандиозных турах, но, как говорится, «Жизнь — как езда на " +"велосипеде, нужно просто продолжать двигаться»." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -214906,6 +216862,10 @@ msgid "" "tours now, but as the saying goes, life is like riding a bicycle: you've got" " to keep moving." msgstr "" +"Вы были перспективным велосипедистом с яркой, многообещающей карьерой, " +"прежде чем всё это произошло. Скорее всего вам никогда уже не принять " +"участие в грандиозных турах, но, как говорится, «Жизнь — как езда на " +"велосипеде, нужно просто продолжать двигаться»." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -214921,6 +216881,10 @@ msgid "" " duty have left your shooting skills rusty, and all the medals in the world " "won't protect you now." msgstr "" +"Вы прошли путь по служебной лестнице от безымянного рядового до выдающегося " +"генерал-майора, уважаемого и награждённого. С другой стороны, годы работы за" +" столом заставили вас подзабыть ваши навыки стрельбы, и все медали в мире не" +" защитят вас сейчас." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -214936,6 +216900,10 @@ msgid "" " duty have left your shooting skills rusty, and all the medals in the world " "won't protect you now." msgstr "" +"Вы прошли путь по служебной лестнице от безымянного рядового до выдающегося " +"генерал-майора, уважаемого и награждённого. С другой стороны, годы работы за" +" столом заставили вас подзабыть ваши навыки стрельбы, и все медали в мире не" +" защитят вас сейчас." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -214988,6 +216956,10 @@ msgid "" "the mechanic's trade, keeping the armor running. It's been years since you " "last touched a rifle, and the dead men are marching again…" msgstr "" +"В самом начале вашей армейской карьеры вас выбрали для дополнительного " +"обучения механике, чтобы вы содержали боевые машины в рабочем состоянии. " +"Прошло много лет с тех пор, как вы последний раз прикасались к винтовке, а " +"мертвецы снова маршируют…" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -215002,6 +216974,10 @@ msgid "" "the mechanic's trade, keeping the armor running. It's been years since you " "last touched a rifle, and the dead men are marching again…" msgstr "" +"В самом начале вашей армейской карьеры вас выбрали для дополнительного " +"обучения механике, чтобы вы содержали боевые машины в рабочем состоянии. " +"Прошло много лет с тех пор, как вы последний раз прикасались к винтовке, а " +"мертвецы снова маршируют…" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -215017,6 +216993,10 @@ msgid "" "years since you last handled a rifle in basic training; now might be the " "time to dust off those skills." msgstr "" +"Ваша работа была простой: держите армию в движении. Вы строили мосты, " +"дороги, разрушали укрепления и разминировали их. Прошло много лет с тех пор," +" как вы в последний раз тренировались обращаться с винтовкой во время " +"начальной подготовки, теперь, возможно, самое время освежить эти навыки." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -215032,6 +217012,10 @@ msgid "" "years since you last handled a rifle in basic training; now might be the " "time to dust off those skills." msgstr "" +"Ваша работа была простой: держите армию в движении. Вы строили мосты, " +"дороги, разрушали укрепления и разминировали их. Прошло много лет с тех пор," +" как вы в последний раз тренировались обращаться с винтовкой во время " +"начальной подготовки, теперь, возможно, самое время освежить эти навыки." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -215046,6 +217030,9 @@ msgid "" "sort of parental figure, and they relied on you to give orders and keep them" " alive. You failed them. And now you're alone." msgstr "" +"Вы ветеран нескольких миротворческих миссий. Вы вели свой отряд словно " +"родительская фигура, и они полагались на ваши приказы и заботу об их " +"выживании. Вы подвели их. Теперь вы один." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -215060,6 +217047,9 @@ msgid "" "sort of parental figure, and they relied on you to give orders and keep them" " alive. You failed them. And now you're alone." msgstr "" +"Вы ветеран нескольких миротворческих миссий. Вы вели свой отряд словно " +"родительская фигура, и они полагались на ваши приказы и заботу об их " +"выживании. Вы подвели их. Теперь вы одна." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -215460,6 +217450,9 @@ msgid "" "friends. But for all the crap thrown your way, you're still breathing. For" " now." msgstr "" +"Общество вытолкнуло вас на обочину и оставило без дома, без семьи, без " +"друзей. Но несмотря на всю летящее в вас дерьмо, вы всё ещё дышите. Пока " +"что." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -215474,6 +217467,9 @@ msgid "" "friends. But for all the crap thrown your way, you're still breathing. For" " now." msgstr "" +"Общество вытолкнуло вас на обочину и оставило без дома, без семьи, без " +"друзей. Но несмотря на всю летящее в вас дерьмо, вы всё ещё дышите. Пока " +"что." #. ~ Profession (male Helicopter Pilot) description #: lang/json/professions_from_json.py @@ -215800,6 +217796,10 @@ msgid "" "motorcycle to escape. Who's going to respect your authority when the " "government this badge represents doesn't exist anymore?" msgstr "" +"Приняв звонок, вы, помощник шерифа в маленьком городке, были готовы прийти " +"на выручку. Вот только именно вас в скором времени нужно было спасать — и " +"вам пришлось бросить мотоцикл, чтобы убежать. Но кто признает ваш авторитет," +" если выдавшего вам жетон правительства больше не существует?" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -215815,6 +217815,10 @@ msgid "" "motorcycle to escape. Who's going to respect your authority when the " "government this badge represents doesn't exist anymore?" msgstr "" +"Приняв звонок, вы, помощник шерифа в маленьком городке, были готовы прийти " +"на выручку. Вот только именно вас в скором времени нужно было спасать — и " +"вам пришлось бросить мотоцикл, чтобы убежать. Но кто признает ваш авторитет," +" если выдавшего вам жетон правительства больше не существует?" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -216085,6 +218089,9 @@ msgid "" "way to pick up a customer, a riot broke out around you. You took a long " "detour to safety, only to find yourself somewhere unfamiliar." msgstr "" +"Вы любите водить, и решили зарабатывать этим на жизнь. По дороге за " +"очередным пассажиром вы заметили, что вокруг вас начались беспорядки. Вы " +"поехали окольными путями, только чтобы обнаружить себя в незнакомом месте." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -216099,6 +218106,9 @@ msgid "" "way to pick up a customer, a riot broke out around you. You took a long " "detour to safety, only to find yourself somewhere unfamiliar." msgstr "" +"Вы любите водить, и решили зарабатывать этим на жизнь. По дороге за " +"очередным пассажиром вы заметили, что вокруг вас начались беспорядки. Вы " +"поехали окольными путями, только чтобы обнаружить себя в незнакомом месте." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -216114,6 +218124,10 @@ msgid "" " took a long detour only to find yourself lost. That call will have to wait" " - you're in an emergency of your own now." msgstr "" +"По дороге на вызов службы экстренной помощи вы чуть не попали прямо в " +"городские беспорядки. Свернув с горящих, засыпанных мусором улиц, вы сделали" +" длинный крюк и заблудились. Вызову придётся подождать - теперь в " +"чрезвычайной ситуации находитесь вы." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -216129,6 +218143,10 @@ msgid "" " took a long detour only to find yourself lost. That call will have to wait" " - you're in an emergency of your own now." msgstr "" +"По дороге на вызов службы экстренной помощи вы чуть не попали прямо в " +"городские беспорядки. Свернув с горящих, засыпанных мусором улиц, вы сделали" +" длинный крюк и заблудились. Вызову придётся подождать - теперь в " +"чрезвычайной ситуации находитесь вы." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -216145,6 +218163,11 @@ msgid "" "You veered off onto an old, neglected side road to escape, only to find " "yourself lost and low on gas." msgstr "" +"Работая в крупной компании, вы оказывали услуги по установке и ремонту прямо" +" в домах неблагодарных клиентов. По пути назад с последнего вызова вы " +"внезапно обнаружили, что вас окружают разгневанные бунтовщики. Вы свернули " +"на старую заброшенную дорогу, только чтобы обнаружить, что у вас мало " +"бензина, и вы потерялись." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -216161,6 +218184,11 @@ msgid "" "You veered off onto an old, neglected side road to escape, only to find " "yourself lost and low on gas." msgstr "" +"Работая в крупной компании, вы оказывали услуги по установке и ремонту прямо" +" в домах неблагодарных клиентов. По пути назад с последнего вызова вы " +"внезапно обнаружили, что вас окружают разгневанные бунтовщики. Вы свернули " +"на старую заброшенную дорогу, только чтобы обнаружить, что у вас мало " +"бензина, и вы потерялись." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -216177,6 +218205,11 @@ msgid "" " but now you've gotten lost. At least you're getting a break from the " "hellish screams of children, though you're starting to hear new ones…" msgstr "" +"Вы зарабатывали на жизнь тем, что возили детей в школу и обратно, карьера, о" +" выборе которой вы сожалели почти каждый день. Никого из детей не было на их" +" обычных остановках, и шум вашего автобуса быстро привлек орды зомби. Вы " +"сбежали, но теперь заблудились. По крайней мере, вы отдыхаете от адских " +"криков детей, хотя начинаете слышать новые…" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -216193,6 +218226,11 @@ msgid "" " but now you've gotten lost. At least you're getting a break from the " "hellish screams of children, though you're starting to hear new ones…" msgstr "" +"Вы зарабатывали на жизнь тем, что возили детей в школу и обратно, карьера, о" +" выборе которой вы сожалели почти каждый день. Никого из детей не было на их" +" обычных остановках, и шум вашего автобуса быстро привлек орды зомби. Вы " +"сбежали, но теперь заблудились. По крайней мере, вы отдыхаете от адских " +"криков детей, хотя начинаете слышать новые…" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -216207,6 +218245,9 @@ msgid "" "robbery. It all went to shit, your backup got eaten, and you were lucky to " "escape with your life and patrol car." msgstr "" +"Вас, дежурного офицера, вызывали, и вы были готовы отправиться на место " +"ограбления. Всё полетело к чёрту, вашу подмогу сожрали, и вы были достаточно" +" везучи, чтобы сбежать, сохранив свою жизнь и патрульную машину." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -216221,6 +218262,9 @@ msgid "" "robbery. It all went to shit, your backup got eaten, and you were lucky to " "escape with your life and patrol car." msgstr "" +"Вас, дежурного офицера, вызывали, и вы были готовы отправиться на место " +"ограбления. Всё полетело к чёрту, вашу подмогу сожрали, и вы были достаточно" +" везучи, чтобы сбежать, сохранив свою жизнь и патрульную машину." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -216237,6 +218281,11 @@ msgid "" "act of rebellion against the cruelty of this doomed world. Do not let that " "flame of hope perish inside you." msgstr "" +"Вы и группа единомышленников построили укрытие в лесу, откуда можно было " +"проводить выезды за припасами на кое-как усиленном пикапе. Последняя поездка" +" прошла плохо, и теперь все ваши товарищи мертвы. Каждый вдох, который вы " +"делаете сейчас, - это акт восстания против жестокости этого обреченного " +"мира. Не позволяйте этому пламени надежды погаснуть внутри вас." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -216253,6 +218302,11 @@ msgid "" "act of rebellion against the cruelty of this doomed world. Do not let that " "flame of hope perish inside you." msgstr "" +"Вы и группа единомышленников построили укрытие в лесу, откуда можно было " +"проводить выезды за припасами на кое-как усиленном пикапе. Последняя поездка" +" прошла плохо, и теперь все ваши товарищи мертвы. Каждый вдох, который вы " +"делаете сейчас, - это акт восстания против жестокости этого обреченного " +"мира. Не позволяйте этому пламени надежды погаснуть внутри вас." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -216269,6 +218323,10 @@ msgid "" "stockpiled as many supplies as possible and set out in your pickup looking " "for answers." msgstr "" +"За дни патрулирования парка и защиты людей и дикой природы друг от друга вы " +"научились многим полезным навыкам. Обнаружив ужасную сцену в кемпинге и не " +"получив ответа по рации, вы собрали как можно больше припасов и отправились " +"в своем пикапе искать ответы." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -216285,6 +218343,10 @@ msgid "" "stockpiled as many supplies as possible and set out in your pickup looking " "for answers." msgstr "" +"За дни патрулирования парка и защиты людей и дикой природы друг от друга вы " +"научились многим полезным навыкам. Обнаружив ужасную сцену в кемпинге и не " +"получив ответа по рации, вы собрали как можно больше припасов и отправились " +"в своем пикапе искать ответы." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -216298,6 +218360,8 @@ msgid "" "You're a lumberjack, and you're okay. You felled trees before the world " "ended, and you suspect the undead aren't nearly as tough." msgstr "" +"Ты лесоруб и у тебя всё в порядке. Ты рубил деревья до того, как мир рухнул," +" а зомби точно не такие крепкие." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -216311,6 +218375,8 @@ msgid "" "You're a lumberjack, and you're okay. You felled trees before the world " "ended, and you suspect the undead aren't nearly as tough." msgstr "" +"Ты лесоруб и у тебя всё в порядке. Ты рубила деревья до того, как мир " +"рухнул, а зомби точно не такие крепкие." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -216325,6 +218391,9 @@ msgid "" "irritable and unreasonable than usual today. You showed them the meaning of" " fast food… by running for your life!" msgstr "" +"Посетители в модном заведении с бургерами, где вы работали, сегодня особенно" +" раздражены и недовольны. Вы им покажете, что вы не быстрый перекус… если " +"убежите!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -216339,6 +218408,9 @@ msgid "" "irritable and unreasonable than usual today. You showed them the meaning of" " fast food… by running for your life!" msgstr "" +"Посетители в модном заведении с бургерами, где вы работали, сегодня особенно" +" раздражены и недовольны. Вы им покажете, что вы не быстрый перекус… если " +"убежите!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -216387,6 +218459,10 @@ msgid "" " no one stopping you from your dream of breaking into a military mainframe " "now." msgstr "" +"Кофеиновые таблетки и ночи перед монитором дали сделали вас экспертов в " +"написании и взломе кода. К сожалению, нигде нет электричества, и ваши " +"элитные навыки куда менее полезны. По крайней мере теперь некому остановить " +"вас от исполнения вашей мечты - взлома военного мейнфрейма." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -216403,6 +218479,10 @@ msgid "" " no one stopping you from your dream of breaking into a military mainframe " "now." msgstr "" +"Кофеиновые таблетки и ночи перед монитором дали сделали вас экспертов в " +"написании и взломе кода. К сожалению, нигде нет электричества, и ваши " +"элитные навыки куда менее полезны. По крайней мере теперь некому остановить " +"вас от исполнения вашей мечты - взлома военного мейнфрейма." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -216520,6 +218600,8 @@ msgid "" "You spent most of your life on a motorcycle, out on the open road with your " "club. Now they're all dead. Time to ride or die." msgstr "" +"Большую часть своей жизни ты не слезал с мотоцикла, покоряя дороги с членами" +" твоего клуба. Теперь все они мертвы. Лети вдаль или умри." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -216533,6 +218615,8 @@ msgid "" "You spent most of your life on a motorcycle, out on the open road with your " "club. Now they're all dead. Time to ride or die." msgstr "" +"Большую часть своей жизни ты не слезала с мотоцикла, покоряя дороги с " +"членами твоего клуба. Теперь все они мертвы. Лети вдаль или умри." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -217044,6 +219128,8 @@ msgid "" "Neither snow nor rain nor heat nor gloom of night stays you from the swift " "completion of your appointed rounds, but nobody said anything about zombies." msgstr "" +"Ни снег, ни дождь, ни жара, ни мрак ночи не помешают вам доставить все " +"посылки вовремя… а вот зомби никто не упоминал." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -217057,6 +219143,8 @@ msgid "" "Neither snow nor rain nor heat nor gloom of night stays you from the swift " "completion of your appointed rounds, but nobody said anything about zombies." msgstr "" +"Ни снег, ни дождь, ни жара, ни мрак ночи не помешают вам доставить все " +"посылки вовремя… а вот зомби никто не упоминал." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -217071,6 +219159,8 @@ msgid "" "The Cataclysm has offered you a chance to escape, but freedom may come with " "a steep price." msgstr "" +"Ваше дело в суде было спорным, но в итоге вы не избежали попадания за " +"решётку. Катаклизм дал вам шанс сбежать, но цена свободы непомерно высока." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -217085,6 +219175,8 @@ msgid "" "The Cataclysm has offered you a chance to escape, but freedom may come with " "a steep price." msgstr "" +"Ваше дело в суде было спорным, но в итоге вы не избежали попадания за " +"решётку. Катаклизм дал вам шанс сбежать, но цена свободы непомерно высока." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -217167,6 +219259,9 @@ msgid "" "they had the nerve to put you in jail for it. Too bad you can't sell drugs " "to zombies." msgstr "" +"Вы пробились из нищеты, продавая товар, на который всегда есть спрос, и им " +"хватило наглости посадить вас за это в тюрьму. Плохо, что зомби не покупают " +"наркотиков." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -217181,6 +219276,9 @@ msgid "" "they had the nerve to put you in jail for it. Too bad you can't sell drugs " "to zombies." msgstr "" +"Вы пробились из нищеты, продавая товар, на который всегда есть спрос, и им " +"хватило наглости посадить вас за это в тюрьму. Плохо, что зомби не покупают " +"наркотиков." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -218452,6 +220550,9 @@ msgid "" " It wouldn't be a lie to say that running is your life. Which is good, " "because now that the end has come, you're running FOR your life." msgstr "" +"Вы занимался паркуром много лет и сделали весь мир своей игровой площадкой. " +"Не будет преувеличением сказать, что бег — это ваша жизнь. И это хорошо, так" +" как настал конец света, и теперь вы бежите, чтобы спасти свою жизнь." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -218466,6 +220567,9 @@ msgid "" " It wouldn't be a lie to say that running is your life. Which is good, " "because now that the end has come, you're running FOR your life." msgstr "" +"Вы занимался паркуром много лет и сделали весь мир своей игровой площадкой. " +"Не будет преувеличением сказать, что бег — это ваша жизнь. И это хорошо, так" +" как настал конец света, и теперь вы бежите, чтобы спасти свою жизнь." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -218480,6 +220584,9 @@ msgid "" " ever leaving home. You came here to get a taste of New England, but New " "England keeps trying to get a taste of you!" msgstr "" +"Это место казалось отличным выбором для путешествия, но теперь вы начинаете " +"жалеть, то не остались дома. Вы хотели распробовать на вкус Новую Англию, но" +" теперь Новая Англия хочет распробовать на вкус вас!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -218494,6 +220601,9 @@ msgid "" " ever leaving home. You came here to get a taste of New England, but New " "England keeps trying to get a taste of you!" msgstr "" +"Это место казалось отличным выбором для путешествия, но теперь вы начинаете " +"жалеть, то не остались дома. Вы хотели распробовать на вкус Новую Англию, но" +" теперь Новая Англия хочет распробовать на вкус вас!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -219148,6 +221258,9 @@ msgid "" "tried to bite you. To top it off, it seems that this wasn't some sort of " "bad high, as the whole town tried going for your throat too." msgstr "" +"Вы должны были провести самую большую сделку, но на встрече покупатель " +"попытался вас укусить. И судя по всему, это не побочный эффект дури, так как" +" весь город теперь хочет откусить от вас кусочек." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -219162,11 +221275,14 @@ msgid "" "tried to bite you. To top it off, it seems that this wasn't some sort of " "bad high, as the whole town tried going for your throat too." msgstr "" +"Вы должны были провести самую большую сделку, но на встрече покупатель " +"попытался вас укусить. И судя по всему, это не побочный эффект дури, так как" +" весь город теперь хочет откусить от вас кусочек." #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Mafia Boss" -msgstr "" +msgstr "Босс мафии" #. ~ Profession (male Mafia Boss) description #: lang/json/professions_from_json.py @@ -219187,7 +221303,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Mafia Boss" -msgstr "" +msgstr "Босс мафии" #. ~ Profession (female Mafia Boss) description #: lang/json/professions_from_json.py @@ -219205,6 +221321,80 @@ msgstr "" "день случился раньше. Ваши люди мертвы, но ваша прошлая жизнь подготовила " "вас к миру, где основная валюта - насилие." +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "Исследователь паранормальных явлений" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" +"Вас уволили с должности профессора парапсихологии в местном университете, и " +"вы начали свой собственный бизнес в качестве исследователя паранормальных " +"явлений. Ваши бывшие коллеги не одобряли ваши исследования, но похоже, что " +"теперь оно приносит свои плоды." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "Исследователь паранормальных явлений" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" +"Вас уволили с должности профессора парапсихологии в местном университете, и " +"вы начали свой собственный бизнес в качестве исследователя паранормальных " +"явлений. Ваши бывшие коллеги не одобряли ваши исследования, но похоже, что " +"теперь оно приносит свои плоды." + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "Наблюдатель за птицами" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" +"Когда разразился Катаклизм, вы были в своем любимом парке и смотрели на " +"малиновок. Теперь всё, что у вас есть, - это бинокль и множество интересных " +"фактов о местных птицах, которыми вы можете поделиться с оставшимися в " +"живых." + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "Наблюдатель за птицами" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" +"Когда разразился Катаклизм, вы были в своем любимом парке и смотрели на " +"малиновок. Теперь всё, что у вас есть, - это бинокль и множество интересных " +"фактов о местных птицах, которыми вы можете поделиться с оставшимися в " +"живых." + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -224598,6 +226788,30 @@ msgid "" "ambushes." msgstr "Вы умеете замечать необычные вещи, такие как ловушки или засады." +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "Отладочное слабое место" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" +"Базовое улучшение шанса поразить слабые места монстра со слабым местом." + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "Экспертное отладочное слабое место" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" +"Экспертное улучшение шанса поразить слабые места монстра со слабым местом." + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "Плетение шнуров" @@ -230401,6 +232615,549 @@ msgstr "Давайте построим центральную часть дер msgid "build center of the dining hall" msgstr "построить центр деревянной столовой" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "Обследовать территорию для строительства столовой." + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" +"Теперь у нас есть укрытие, и нам нужно сложить камин для приготовления еды и" +" достать кастрюлю." + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" +"Теперь у нас есть укрытие, и нам нужно построить духовку для приготовления " +"еды и достать кастрюлю." + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" +"Нам нужно построить колодец. Это сделает готовку удобнее и даст воду для " +"сада." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" +"Давайте установим коптильни и угольную печь для сохранения еды и новых " +"вариантов готовки." + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "Давайте построим 2 погреба в кухне." + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "построить погреба" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "Давайте обставим кладовую." + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "Давайте построим несколько садовых ящиков для шеф-повара." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" +"Давайте расширим садик шеф-повара за счёт «свободного» пространства " +"(прекратите расширение, если хотите использовать место для чего-то ещё)" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" +"Давайте установим пару баков с солёной водой для производства соли и " +"обработки шкур." + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "построить баки с солёной водой" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "Давайте установим чаны в винокурне" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "установить чаны в винокурне" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "Давайте установим стеллажи для хранения на винокурне" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "установить стеллажи на винокурне" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "Давайте установим перегонный аппарат в винокурне" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "установить перегонный аппарат в винокурне" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "Давайте построим ветряную мельницу для эффективного помола муки" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "построить ветряную мельницу" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "Давайте построим скамейку и птичью купальню снаружи кухни для отдыха" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "построить скамейку и птичью купальню" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "Давайте заложим бетонные стены кухни." + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "построить бетонную кухню" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "Давайте закончим бетонные стены кухни." + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "достроить бетонную кухню" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" +"Давайте построим укрытие у бетонной коптильни, чтобы защитить рабочих от " +"непогоды." + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "построить бетонную крытую коптильню" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "Давайте построим бетонную кладовку возле кухни." + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "построить бетонную кладовку" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "Давайте построим первую часть бетонной столовой" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "построить первую секцию бетонной столовой" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "Давайте построим вторую часть бетонной столовой" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "построить вторую секцию бетонной столовой" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "Давайте построим бетонную винокурню" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "построить бетонную винокурню" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "Давайте заложим бревенчатые стены кухни." + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "построить бревенчатую кухню" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "Давайте закончим бревенчатые стены кухни." + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "достроить бревенчатую кухню" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" +"Давайте построим укрытие у бревенчатой коптильни, чтобы защитить рабочих от " +"непогоды." + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "построить бревенчатую крытую коптильню" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "Давайте построим бревенчатую кладовку возле кухни." + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "построить бревенчатую кладовку" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "Давайте построим первую часть бревенчатой столовой" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "построить первую секцию бревенчатой столовой" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "Давайте построим вторую часть бревенчатой столовой" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "построить вторую секцию бревенчатой столовой" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "Давайте построим бревенчатую винокурню" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "построить бревенчатую винокурню" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "Давайте заложим металлические стены кухни." + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "построить металлическую кухню" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "Давайте закончим металлические стены кухни." + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "достроить металлическую кухню" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" +"Давайте построим укрытие у металлической коптильни, чтобы защитить рабочих " +"от непогоды." + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "построить металлическую крытую коптильню" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "Давайте построим металлическую кладовку около кухни." + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "построить металлическую кладовку" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "Давайте построим первую часть металлической столовой" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "построить первую секцию металлической столовой" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "Давайте построим вторую часть металлической столовой" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "построить вторую секцию металлической столовой" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "Давайте построим металлическую винокурню" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "построить металлическую винокурню" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "Давайте заложим стены кухни из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "построить кухню из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "Давайте закончим стены кухни смолой ми-го." + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "достроить кухню из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "Давайте построим кладовку со стенами из смолы ми-го к около кухни." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "Давайте построим первую часть столовой из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "построить первую секцию столовой из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "Давайте построим вторую часть столовой из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "построить вторую секцию столовой из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "Давайте построим винокурню из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "построить винокурню из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "Давайте заложим землебитные стены кухни." + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "построить землебитные стены кухни" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "Давайте закончим землебитные стены кухни." + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "достроить землебитные стены кухни" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "Давайте построим землебитную кладовку около кухни." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "Давайте построим начальную землебитную часть столовой." + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "построить первую секцию землебитной столовой" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "Давайте построим вторую землебитную часть столовой." + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "построить вторую секцию землебитной столовой" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "Давайте построим землебитную винокурню" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "построить землебитную винокурню" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "Давайте заложим каменные стены кухни." + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "построить каменную кухню" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "Давайте закончим каменные стены кухни." + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "достроить каменную кухню" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" +"Давайте построим укрытие у коптильни, чтобы защитить рабочих от непогоды." + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "построить каменную крытую коптильню" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "Давайте построим каменную кладовку возле кухни." + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "построить каменную кладовку" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "Давайте построим первую часть каменной столовой" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "построить первую секцию каменной столовой" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "Давайте построим вторую часть каменной столовой" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "построить вторую секцию каменной столовой" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "Давайте построим каменную винокурню" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "построить каменную винокурню" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "Давайте построим стены мазанки под кухню." + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "построить стены мазанки под кухню" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "Давайте закончим стены мазанки под кухню." + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "достроить стены мазанки под кухню" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" +"Давайте построим укрытие у коптильни в мазанке, чтобы защитить рабочих от " +"непогоды." + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "построить крытую мазанку для коптилен" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "Давайте построим мазанку под кладовку около кухни." + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "построить мазанку под кладовку" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "Давайте построим первую часть столовой-мазанки." + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "построить первую секцию столовой-мазанки" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "Давайте построим вторую часть столовой-мазанки." + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "построить вторую секцию столовой-мазанки" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "Давайте построим винокурню-мазанку" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "построить мазанку под винокурню" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "Давайте построим кухню из деревянных панелей." + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "построить стены кухни из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "Давайте закончим кухню из деревянных панелей." + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "достроить стены кухни из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "Давайте построим кладовку из деревянных панелей возле кухни." + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "Давайте построим первую часть столовой из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "построить первую секцию столовой из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "Давайте построим вторую часть столовой из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "построить вторую секцию столовой из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "Давайте построим винокурню из деревянных панелей." + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "построить винокурню из деревянных панелей" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "Обследовать территорию для фермы." @@ -230448,6 +233205,75 @@ msgstr "" msgid "Farm processing shack" msgstr "Хижина для обработки урожая" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "Приготовить грядку" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "подготовить землю" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "Приготовить вторую грядку" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "Приготовить ещё пару грядок." + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" +"Поставить забор по более длинному внешнему краю, чтобы олени не подходили к " +"посевам." + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "поставить ограду" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" +"Поставить забор по более короткому внешнему краю, чтобы олени не подходили к" +" посевам." + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" +"Поставить забор по более короткому внутреннему краю, чтобы олени не " +"подходили к посевам." + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" +"Поставить забор по внешней части более длинного внутреннего края, чтобы " +"олени не подходили к посевам." + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" +"Мы не планируем пахать поля трактором, поэтому поставьте ограду по " +"внутренней части более длинного внутреннего края." + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" +"Постройте ворота ограды из частокола, чтобы мы могли добраться до полей и в " +"следующем году обработать их трактором." + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "строить ворота для частокола" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "Обследовать территорию для строительства гаража." @@ -230508,6 +233334,626 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "Гаражные мастерские" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "Давайте соединим две стены с помощью недостающей крыши." + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "построить недостающую крышу" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" +"Раз у нас теперь есть укрытие, поставим стойки и столы для инструментов и " +"запчастей, это будет автомастерской" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "поставить мебель" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" +"Гараж достаточно большой. Построим ворота частокола, чтобы позволить нам " +"закрывать внешнюю часть." + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "строить внешние ворота частокола" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" +"Давайте достроим гараж, построим ворота частокола, чтобы позволить нам " +"закрывать внешнюю часть." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "Давайте начнём строить первую часть бетонной стены гаража." + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "построить первую секцию бетонного гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Давайте построим вторую секцию бетонной стены гаража, чтобы защититься от " +"ветра, сделав гараж достаточно широким, чтобы вмещать два обычных автомобиля" +" или один огромный." + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "построить вторую секцию бетонного гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "Построим бетонную стену, чтобы ветер не дул прямо через гараж." + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "построить внутреннюю бетонную стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" +"Теперь, когда мы можем работать с короткими транспортными средствами, " +"давайте расширим гараж, чтобы можно было и с длинными, используя бетон." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "удлинить первую бетонную стену" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" +"Давайте продолжим вторую бетонную стену, чтобы она соответствовала первой." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "удлинить вторую бетонную стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" +"Теперь, когда мы можем работать с длинными транспортными средствами, давайте" +" расширим бетонный гараж, чтобы помещались очень длинные или несколько " +"сразу." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" +"Давайте расширим бетонный гараж до размеров ангара, что позволит нам " +"работать с огромными машинами или большим количеством обычных." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "Давайте начнём строить первую часть бревенчатой стены гаража." + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "построить первую секцию бревенчатого гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Давайте построим вторую секцию бревенчатой стены гаража, чтобы защититься от" +" ветра, сделав гараж достаточно широким, чтобы вмещать два обычных " +"автомобиля или один огромный." + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "построить вторую секцию бревенчатого гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "Построим бревенчатую стену, чтобы ветер не дул прямо через гараж." + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "построить внутреннюю бревенчатую стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" +"Теперь, когда мы можем работать с короткими транспортными средствами, " +"давайте расширим гараж, чтобы можно было и с длинными, используя брёвна." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "удлинить первую бревенчатую стену" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" +"Давайте продолжим вторую бревенчатую стену, чтобы она соответствовала " +"первой." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "удлинить вторую бревенчатую стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" +"Теперь, когда мы можем работать с длинными транспортными средствами, давайте" +" расширим бревенчатый гараж, чтобы помещались очень длинные или несколько " +"сразу." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "удлинить вторую бревенчатую стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" +"Давайте расширим бревенчатый гараж до размеров ангара, что позволит нам " +"работать с огромными машинами или большим количеством обычных." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "Давайте начнём строить первую часть металлической стены гаража." + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "построить первую секцию металлического гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Давайте построим вторую секцию металлической стены гаража, чтобы защититься " +"от ветра, сделав гараж достаточно широким, чтобы вмещать два обычных " +"автомобиля или один огромный." + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "построить вторую секцию металлического гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "Построим металлическую стену, чтобы ветер не дул прямо через гараж." + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "построить внутреннюю металлическую стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" +"Теперь, когда мы можем работать с короткими транспортными средствами, " +"давайте расширим гараж, чтобы можно было и с длинными, используя металл." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "удлинить первую металлическую стену" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" +"Давайте продолжим вторую металлическую стену, чтобы она соответствовала " +"первой." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "удлинить вторую металлическую стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" +"Теперь, когда мы можем работать с длинными транспортными средствами, давайте" +" расширим металлический гараж, чтобы помещались очень длинные или несколько " +"сразу." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" +"Давайте расширим металлический гараж до размеров ангара, что позволит нам " +"работать с огромными машинами или большим количеством обычных." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "Давайте начнём строить первую часть стены гаража из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "построить первую секцию гаража из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" +"Давайте построим вторую секцию стены гаража из смолы ми-го, чтобы защититься" +" от ветра, сделав гараж достаточно широким, чтобы вмещать два обычных " +"автомобиля или один огромный." + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "построить вторую секцию гаража из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "Построим стену из смолы ми-го, чтобы ветер не дул прямо через гараж." + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "построить внутреннюю стену из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" +"Теперь, когда мы можем работать с короткими транспортными средствами, " +"давайте расширим гараж, чтобы можно было и с длинными, используя смолу ми-" +"го." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "удлинить первую стену, используя смолу ми-го" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" +"Давайте продолжим вторую стену, чтобы она соответствовала первой, используя " +"смолу ми-го." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "удлинить вторую стену, используя смолу ми-го" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" +"Теперь, когда мы можем работать с длинными транспортными средствами, давайте" +" расширим гараж, используя смолу ми-го, чтобы помещались очень длинные или " +"несколько сразу." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" +"Давайте расширим гараж до размеров ангара, используя смолу ми-го, что " +"позволит нам работать с огромными машинами или большим количеством обычных." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "Давайте начнём строить первую часть землебитной стены гаража." + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "построить первую землебитную секцию гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" +"Давайте построим вторую секцию землебитной стены гаража, чтобы защититься от" +" ветра, сделав гараж достаточно широким, чтобы вмещать два обычных " +"автомобиля или один огромный." + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "построить вторую землебитную секцию гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "Построим землебитную стену, чтобы ветер не дул прямо через гараж." + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "построить внутреннюю землебитную стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" +"Теперь, когда мы можем работать с короткими транспортными средствами, " +"давайте расширим гараж, чтобы можно было и с длинными, используя землебитные" +" стены." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "удлинить первую землебитную стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" +"Давайте продолжим вторую землебитную стену, чтобы она соответствовала " +"первой." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "удлинить вторую землебитную стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" +"Теперь, когда мы можем работать с длинными транспортными средствами, давайте" +" расширим землебитный гараж, чтобы помещались очень длинные или несколько " +"сразу." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" +"Давайте расширим гараж до размеров ангара землебитными стенами, что позволит" +" нам работать с огромными машинами или большим количеством обычных." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "Давайте начнём строить первую часть каменной стены гаража." + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "построить первую секцию каменного гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Давайте построим вторую секцию каменной стены гаража, чтобы защититься от " +"ветра, сделав гараж достаточно широким, чтобы вмещать два обычных автомобиля" +" или один огромный." + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "построить вторую секцию каменного гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "Построим каменную стену, чтобы ветер не дул прямо через гараж." + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "построить внутреннюю каменную стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" +"Теперь, когда мы можем работать с короткими транспортными средствами, " +"давайте расширим гараж, чтобы можно было и с длинными, используя камень." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "удлинить первую каменную стену" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" +"Давайте продолжим вторую каменную стену, чтобы она соответствовала первой." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "удлинить вторую каменную стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" +"Теперь, когда мы можем работать с длинными транспортными средствами, давайте" +" расширим каменный гараж, чтобы помещались очень длинные или несколько " +"сразу." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" +"Давайте расширим каменный гараж до размеров ангара, что позволит нам " +"работать с огромными машинами или большим количеством обычных." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "Давайте начнём строить первую часть стены мазанки гаража." + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "построить первую секцию мазанки гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" +"Давайте построим вторую секцию стены мазанки гаража, чтобы защититься от " +"ветра, сделав гараж достаточно широким, чтобы вмещать два обычных автомобиля" +" или один огромный." + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "построить вторую секцию мазанки гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "Построим стену мазанки, чтобы ветер не дул прямо через гараж." + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "построить внутреннюю стену мазанки" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" +"Теперь, когда мы можем работать с короткими транспортными средствами, " +"давайте расширим гараж, чтобы можно было и с длинными, используя стены " +"мазанки." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "удлинить первую стену мазанки" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" +"Давайте продолжим вторую стену мазанки, чтобы она соответствовала первой." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "удлинить вторую стену мазанки" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" +"Теперь, когда мы можем работать с длинными транспортными средствами, давайте" +" расширим гараж-мазанку, чтобы помещались очень длинные или несколько сразу." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" +"Давайте расширим гараж до размеров ангара стенами мазанки, что позволит нам " +"работать с огромными машинами или большим количеством обычных." + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "Давайте начнём строить первую часть деревянной стены гаража." + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "построить первую секцию деревянного гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" +"Давайте построим вторую секцию деревянной стены гаража, чтобы защититься от " +"ветра, сделав гараж достаточно широким, чтобы вмещать два обычных автомобиля" +" или один огромный." + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "построить вторую секцию деревянного гаража" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "Построим деревянную стену, чтобы ветер не дул прямо через гараж." + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "построить внутреннюю деревянную стену" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" +"Теперь, когда мы можем работать с короткими транспортными средствами, " +"давайте расширим гараж, чтобы можно было и с длинными, используя деревянные " +"панели." + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "удлинить первую стену, используя деревянные панели" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" +"Давайте продолжим вторую стену, чтобы она соответствовала первой, используя " +"деревянные панели." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "удлинить вторую стену, используя дерево" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" +"Теперь, когда мы можем работать с длинными транспортными средствами, давайте" +" расширим гараж, используя деревянные панели, чтобы помещались очень длинные" +" или несколько сразу." + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "удлинить вторую стену, используя деревянные панели" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" +"Давайте расширим гараж до размеров ангара, используя деревянные панели, что " +"позволит нам работать с огромными машинами или большим количеством обычных." + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "Обследовать территорию под пастбище." @@ -230766,6 +234212,470 @@ msgstr "" "Нам нужны стойла для крупного скота, так что постройте крытое здание из " "деревянных панелей в юго-западном углу пастбища." +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" +"Нам нужна ограда, чтобы держать внутри куриц и другую птицу, так что " +"постройте сетчатый забор, чтобы достроить двор курятника." + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "двор курятника" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" +"Нам нужен выгон для конюшни, так что постройте дощатое ограждение в дальней " +"части пастбища." + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "дальний забор выгона" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" +"Нам нужен выгон для конюшни, так что постройте дощатое ограждение сбоку от " +"поля пастбища." + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "боковой забор выгона" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" +"Нам нужен выгон для конюшни, так что постройте дощатое ограждение около поля" +" пастбища." + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "ближний забор выгона" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" +"Нам нужен курятник, чтобы содержать кур и прочую птицу, так что постройте " +"крытый домик из бетона в дальней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "бетонный курятник" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" +"Нам нужно помещение под корм, упряжь и инструменты, так что давайте построим" +" крытое строение из бетона на ближней стороне пастбища." + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "бетонная кладовка" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" +"Нам нужны стойла для крупного скота, так что постройте крытое бетонное " +"здание в ближней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "бетонная конюшня" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" +"Нам пригодится конюшня побольше, поэтому расширите её с помощью ещё одного " +"стойла с бетонными стенами." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" +"Нам пригодится конюшня побольше, поэтому достройте её с помощью ещё двух " +"стойл поменьше с бетонными стенами." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" +"Нам нужен курятник, чтобы содержать кур и прочую птицу, так что постройте " +"крытый домик из брёвен в дальней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "бревенчатый курятник" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" +"Нам нужно помещение под корм, упряжь и инструменты, так что давайте построим" +" крытое строение из брёвен на ближней стороне пастбища." + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "бревенчатая кладовка" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" +"Нам нужны стойла для крупного скота, так что постройте крытое бревенчатое " +"здание в ближней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "бревенчатая конюшня" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" +"Нам пригодится конюшня побольше, поэтому расширите её с помощью ещё одного " +"стойла с бревенчатыми стенами." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" +"Нам пригодится конюшня побольше, поэтому достройте её с помощью ещё двух " +"стойл поменьше с бревенчатыми стенами." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" +"Нам нужен курятник, чтобы содержать кур и прочую птицу, так что постройте " +"крытый металлический домик в дальней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "металлический курятник" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" +"Нам нужно помещение под корм, упряжь и инструменты, так что давайте построим" +" крытое металлическое строение на ближней стороне пастбища." + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "металлическая кладовка" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" +"Нам нужны стойла для крупного скота, так что постройте крытое металлическое " +"здание в ближней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "металлическая конюшня" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" +"Нам пригодится конюшня побольше, поэтому расширите её с помощью ещё одного " +"стойла с металлическими стенами." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" +"Нам пригодится конюшня побольше, поэтому достройте её с помощью ещё двух " +"стойл поменьше с металлическими стенами." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" +"Нам нужен курятник, чтобы содержать кур и прочую птицу, так что постройте " +"крытый домик из смолы ми-го в дальней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "курятник из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" +"Нам нужно помещение под корм, упряжь и инструменты, так что давайте построим" +" крытое строение из смолы ми-го на ближней стороне пастбища." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "кладовка из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" +"Нам нужны стойла для крупного скота, так что постройте крытое здание из " +"смолы ми-го в ближней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "конюшня из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" +"Нам пригодится конюшня побольше, поэтому расширите её с помощью ещё одного " +"стойла со стенами из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" +"Нам пригодится конюшня побольше, поэтому достройте её с помощью ещё двух " +"стойл поменьше со стенами из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" +"Нам нужен курятник, чтобы содержать кур и прочую птицу, так что постройте " +"крытый землебитный домик в дальней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "землебитный курятник" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" +"Нам нужно помещение под корм, упряжь и инструменты, так что давайте построим" +" крытое землебитное строение на ближней стороне пастбища." + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "землебитная кладовка" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" +"Нам нужны стойла для крупного скота, так что постройте крытое землебитное " +"здание в ближнем углу пастбища." + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "землебитная конюшня" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" +"Нам пригодится конюшня побольше, поэтому расширите её с помощью ещё одного " +"стойла с землебитными стенами." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" +"Нам пригодится конюшня побольше, поэтому достройте её с помощью ещё двух " +"стойл поменьше с землебитными стенами." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" +"Нам нужен курятник, чтобы содержать кур и прочую птицу, так что постройте " +"крытый каменный домик в дальней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "каменный курятник" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" +"Нам нужно помещение под корм, упряжь и инструменты, так что давайте построим" +" крытое каменное строение на ближней стороне пастбища." + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "каменная кладовка" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" +"Нам нужны стойла для крупного скота, так что постройте крытое каменное " +"здание в ближней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "каменная конюшня" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" +"Нам пригодится конюшня побольше, поэтому расширите её с помощью ещё одного " +"стойла с каменными стенами." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" +"Нам пригодится конюшня побольше, поэтому достройте её с помощью ещё двух " +"стойл поменьше с каменными стенами." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" +"Нам нужен курятник, чтобы содержать кур и прочую птицу, так что постройте " +"крытую мазанку в дальней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "курятник-мазанка" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" +"Нам нужно помещение под корм, упряжь и инструменты, так что давайте построим" +" крытую мазанку на ближней стороне пастбища." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "кладовка-мазанка" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" +"Нам нужны стойла для крупного скота, так что постройте крытую мазанку в " +"ближнем углу пастбища." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "конюшня-мазанка" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" +"Нам пригодится конюшня побольше, поэтому расширите её с помощью ещё одного " +"стойла со стенами мазанки." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" +"Нам пригодится конюшня побольше, поэтому достройте её с помощью ещё двух " +"стойл поменьше со стенами мазанки." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" +"Нам нужен курятник, чтобы содержать кур и прочую птицу, так что постройте " +"крытый домик из деревянных панелей в дальней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "курятник из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" +"Нам нужно помещение под корм, упряжь и инструменты, так что давайте построим" +" крытое строение из деревянных панелей на ближней стороне пастбища." + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "кладовка из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" +"Нам нужны стойла для крупного скота, так что постройте крытое здание из " +"деревянных панелей в ближней части пастбища." + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "конюшня из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" +"Нам пригодится конюшня побольше, поэтому расширите её с помощью ещё одного " +"стойла со стенами из деревянных панелей." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" +"Нам пригодится конюшня побольше, поэтому достройте её с помощью ещё двух " +"стойл поменьше со стенами из деревянных панелей." + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "Обследовать территорию для строительства солеварни." @@ -230902,7 +234812,7 @@ msgstr "ЮВ винокурня из смолы ми-го" #: lang/json/recipe_from_json.py msgid "NE rammed earth saltpan" -msgstr "СВ солеварня из смолы ми-го" +msgstr "СВ землебитная солеварня" #: lang/json/recipe_from_json.py msgid "SE rammed earth storage room" @@ -231616,6 +235526,710 @@ msgstr "Пара скамей снаружи не помешает. Постро msgid "benches, southwest" msgstr "скамьи, юго-запад" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" +"Установить 12 книжных шкафов, организовав полтора прохода под хранение " +"(2000л объёма, содержимое видно издалека и не блокирует линию обзора)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "поставить 1 ½ прохода шкафов в секции А" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "поставить 1 ½ прохода шкафов в секции B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "поставить 1 ½ прохода шкафов в секции C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "поставить 1 ½ прохода шкафов в секции D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "поставить 1 ½ прохода шкафов в секции E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "поставить 1 ½ прохода шкафов в секции F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "поставить 1 ½ прохода шкафов в секции G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "поставить 1 ½ прохода шкафов в секции H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "поставить 1 ½ прохода шкафов в секции I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "поставить 1 ½ прохода шкафов в секции J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "поставить 1 ½ прохода шкафов в секции K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "поставить 1 ½ прохода шкафов в секции L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "поставить 1 ½ прохода шкафов в секции M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "поставить 1 ½ прохода шкафов в секции N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "поставить 1 ½ прохода шкафов в секции O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "поставить 1 ½ прохода шкафов в секции P" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "место под склад" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "Нам нужно большое здание под склад. Начнем с секции из бетона" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "секция склада из бетона" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "Давайте расширим наш склад, построив еще одну бетонную секцию" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" +"Закончим строительство склада, построив бетонную секцию. Если мы " +"действительно захотим, мы сможем удвоить объём, но разве это не будет " +"чрезмерным, если вместо этого мы сможем использовать пространство для " +"выгрузки добычи?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" +"Мы хотим хранить ВСЁ! Давайте удвоим размер складского здания, начав с " +"бетонной секции." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" +"Установить 12 шкафов для одежды, организовав полтора прохода под хранение " +"(2000 л объёма, содержимое не видно издалека и не блокирует линию обзора)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции А" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "поставить 1 ½ прохода шкафов для одежды в секции P" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" +"Установить 12 шкафчиков, организовав полтора прохода под хранение (2000 л " +"объёма, содержимое не видно издалека и блокирует линию обзора)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "поставить 1 ½ прохода шкафчиков в секции А" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "поставить 1 ½ прохода шкафчиков в секции B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "поставить 1 ½ прохода шкафчиков в секции C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "поставить 1 ½ прохода шкафчиков в секции D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "поставить 1 ½ прохода шкафчиков в секции E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "поставить 1 ½ прохода шкафчиков в секции F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "поставить 1 ½ прохода шкафчиков в секции G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "поставить 1 ½ прохода шкафчиков в секции H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "поставить 1 ½ прохода шкафчиков в секции I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "поставить 1 ½ прохода шкафчиков в секции J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "поставить 1 ½ прохода шкафчиков в секции K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "поставить 1 ½ прохода шкафчиков в секции L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "поставить 1 ½ прохода шкафчиков в секции M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "поставить 1 ½ прохода шкафчиков в секции N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "поставить 1 ½ прохода шкафчиков в секции O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "поставить 1 ½ прохода шкафчиков в секции P" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" +"Нам нужно большое здание под склад. Начнем с секции из деревянных балок" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "секция склада из деревянных балок" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" +"Давайте расширим наш склад, построив еще одну секцию из деревянных балок" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" +"Закончим строительство склада, построив бревенчатую секцию. Если мы " +"действительно захотим, мы сможем удвоить объём, но разве это не будет " +"чрезмерным, если вместо этого мы сможем использовать пространство для " +"выгрузки добычи?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" +"Мы хотим хранить ВСЁ! Давайте удвоим размер складского здания, начав с " +"бревенчатой секции." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "Нам нужно большое здание под склад. Начнем с металлической секции." + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "металлическая секция склада" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "Давайте расширим наш склад, построив еще одну металлическую секцию." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" +"Закончим строительство склада, построив металлическую секцию. Если мы " +"действительно захотим, мы сможем удвоить объём, но разве это не будет " +"чрезмерным, если вместо этого мы сможем использовать пространство для " +"выгрузки добычи?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" +"Мы хотим хранить ВСЁ! Давайте удвоим размер складского здания, начав с " +"металлической секции." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "Нам нужно большое здание под склад. Начнем с секции из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "секция склада из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "Давайте расширим наш склад, построив еще одну секцию из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" +"Закончим строительство склада, построив секцию из смолы ми-го. Если мы " +"действительно захотим, мы сможем удвоить объём, но разве это не будет " +"чрезмерным, если вместо этого мы сможем использовать пространство для " +"выгрузки добычи?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" +"Мы хотим хранить ВСЁ! Давайте удвоим размер складского здания, начав с " +"секции из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" +"Установить 12 витрин, организовав полтора прохода под хранение (1750л " +"объёма, содержимое видно издалека и не блокирует линию обзора)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "поставить 1 ½ прохода витрин в секции А" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "поставить 1 ½ прохода витрин в секции B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "поставить 1 ½ прохода витрин в секции C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "поставить 1 ½ прохода витрин в секции D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "поставить 1 ½ прохода витрин в секции E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "поставить 1 ½ прохода витрин в секции F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "поставить 1 ½ прохода витрин в секции G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "поставить 1 ½ прохода витрин в секции H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "поставить 1 ½ прохода витрин в секции I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "поставить 1 ½ прохода витрин в секции J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "поставить 1 ½ прохода витрин в секции K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "поставить 1 ½ прохода витрин в секции L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "поставить 1 ½ прохода витрин в секции M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "поставить 1 ½ прохода витрин в секции N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "поставить 1 ½ прохода витрин в секции O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "поставить 1 ½ прохода витрин в секции P" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "Нам нужно большое здание под склад. Начнем с землебитной секции." + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "землебитная секция склада" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "Давайте расширим наш склад, построив еще одну землебитную секцию." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" +"Закончим строительство склада, построив землебитную секцию. Если мы " +"действительно захотим, мы сможем удвоить объём, но разве это не будет " +"чрезмерным, если вместо этого мы сможем использовать пространство для " +"выгрузки добычи?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" +"Мы хотим хранить ВСЁ! Давайте удвоим размер складского здания, начав с " +"землебитной секции." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "Нам нужно большое здание под склад. Начнем с каменной секции." + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "каменная секция склада" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "Давайте расширим наш склад, построив еще одну каменную секцию." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" +"Закончим строительство склада, построив каменную секцию. Если мы " +"действительно захотим, мы сможем удвоить объём, но разве это не будет " +"чрезмерным, если вместо этого мы сможем использовать пространство для " +"выгрузки добычи?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" +"Мы хотим хранить ВСЁ! Давайте удвоим размер складского здания, начав с " +"каменной секции." + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "Нам нужно большое здание под склад. Начнем с секции-мазанки." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "мазанка-секция склада" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "Давайте расширим наш склад, построив еще одну секцию-мазанки." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" +"Закончим строительство склада, построив секцию-мазанки. Если мы " +"действительно захотим, мы сможем удвоить объём, но разве это не будет " +"чрезмерным, если вместо этого мы сможем использовать пространство для " +"выгрузки добычи?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" +"Мы хотим хранить ВСЁ! Давайте удвоим размер складского здания, начав с " +"секции-мазанки." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" +"Установить 12 складских стеллажей, организовав полтора прохода под хранение " +"(3500л объёма, содержимое видно издалека и блокирует линию обзора). Хранение" +" вещей по королевски с королевским ценником." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции А" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "поставить 1 ½ прохода складских стеллажей для одежды в секции P" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" +"Нам нужно большое здание под склад. Начнём с секции из деревянных панелей." + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "секция склада из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" +"Давайте расширим склад, построив ещё одну секцию из деревянных панелей." + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" +"Закончим строительство склада, построив секцию из деревянных панелей. Если " +"мы действительно захотим, мы сможем удвоить объём, но разве это не будет " +"чрезмерным, если вместо этого мы сможем использовать пространство для " +"выгрузки добычи?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" +"Мы хотим хранить ВСЁ! Давайте удвоим размер складского здания, начав с " +"секции из деревянных панелей." + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" +"Установить 12 деревянных стоек, организовав полтора прохода под хранение " +"(1500 л объёма, содержимое видно издалека и не блокирует линию обзора)." + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "поставить 1 ½ прохода деревянных стоек в секции А" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "поставить 1 ½ прохода деревянных стоек в секции B" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "поставить 1 ½ прохода деревянных стоек в секции C" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "поставить 1 ½ прохода деревянных стоек в секции D" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "поставить 1 ½ прохода деревянных стоек в секции E" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "поставить 1 ½ прохода деревянных стоек в секции F" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "поставить 1 ½ прохода деревянных стоек в секции G" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "поставить 1 ½ прохода деревянных стоек в секции H" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "поставить 1 ½ прохода деревянных стоек в секции I" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "поставить 1 ½ прохода деревянных стоек в секции J" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "поставить 1 ½ прохода деревянных стоек в секции K" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "поставить 1 ½ прохода деревянных стоек в секции L" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "поставить 1 ½ прохода деревянных стоек в секции M" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "поставить 1 ½ прохода деревянных стоек в секции N" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "поставить 1 ½ прохода деревянных стоек в секции O" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "поставить 1 ½ прохода деревянных стоек в секции P" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "Обследовать территорию для строительства мастерской." @@ -231950,73 +236564,419 @@ msgstr "" "для хранения." #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." -msgstr "Приготовить грядку" +msgid "Survey land for a workshop area." +msgstr "Обследовать территорию для строительства мастерской." #: lang/json/recipe_from_json.py -msgid "prepare farm plots" -msgstr "подготовить землю" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." +msgstr "" +"Установим инструменты по металлу в кузнице. Нам также понадобится несколько " +"инструментов, поэтому мы добавим немного места для хранения. Это позволит " +"нам работать с парой базовых рецептов производства." #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." -msgstr "Приготовить вторую грядку" +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." +msgstr "" +"Давайте установим пару углевыжигательных печей за пределами кузницы. Ещё " +"добавим тигель. Это позволит нам производить ещё несколько вещей." #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." -msgstr "Приготовить ещё пару грядок." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." +msgstr "" +"Установим в кузнице наковальню, закалочные емкости и верстак. Это позволит " +"нам производить ещё несколько вещей." #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" -"Поставить забор по более длинному внешнему краю, чтобы олени не подходили к " -"посевам." +"Добавим в кузницу мебель и ещё несколько инструментов. Это позволит нам " +"производить ещё несколько вещей." #: lang/json/recipe_from_json.py -msgid "erect a fence" -msgstr "поставить ограду" +msgid "smithing tools" +msgstr "кузнечные инструменты" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" -"Поставить забор по более короткому внешнему краю, чтобы олени не подходили к" -" посевам." +"Давайте установим меха и добавим ещё инструментов. Это расширит наш " +"репертуар рецептов." #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" +"Давайте добавим в кузницу паровой молот для повышения производительности, а " +"также добавим ещё несколько инструментов. Это позволит нам раскрыть свой " +"кузнечный потенциал." + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "Давайте обставим гончарную мастерскую." + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "мебель для гончарной мастерской" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" -"Поставить забор по более короткому внутреннему краю, чтобы олени не " -"подходили к посевам." #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." msgstr "" -"Поставить забор по внешней части более длинного внутреннего края, чтобы " -"олени не подходили к посевам." +"Давайте построим скамейку и бочки для разведения огня снаружи гончарной " +"мастерской для отдыха." + +#: lang/json/recipe_from_json.py +msgid "recreation area" +msgstr "зона отдыха" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." msgstr "" -"Мы не планируем пахать поля трактором, поэтому поставьте ограду по " -"внутренней части более длинного внутреннего края." +"Нам не помешает бетонная кузня. Давайте начнем с укрытой точки, чтобы " +"защитить рабочих от непогоды." + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" +msgstr "бетонная стена кузни" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" -"Постройте ворота ограды из частокола, чтобы мы могли добраться до полей и в " -"следующем году обработать их трактором." +"Давайте построим крышу с бетонными опорами, чтобы защитить будущие печи для " +"обжига угля от дождя." #: lang/json/recipe_from_json.py -msgid "build a palisade gate" -msgstr "строить ворота для частокола" +msgid "concrete kiln protection" +msgstr "бетонное укрытие печей" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "Давайте построим последнюю бетонную часть кузни." + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "последняя бетонная часть кузни" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "Давайте начнём строить бетонную часть гончарной мастерской." + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "гончарная мастерская с бетонными стенами" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" +"Нам не помешает бревенчатая кузня. Давайте начнем с укрытой точки, чтобы " +"защитить рабочих от непогоды." + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "бревенчатая стена кузни" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" +"Давайте построим крышу с бревенчатыми опорами, чтобы защитить будущие печи " +"для обжига угля от дождя." + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "бревенчатое укрытие печей" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "Давайте построим последнюю бревенчатую часть кузни." + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "последняя бревенчатая часть кузни" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "Давайте начнём строить бревенчатую часть гончарной мастерской." + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "гончарная мастерская с бревенчатыми стенами" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" +"Нам не помешает металлическая кузня. Давайте начнем с укрытой точки, чтобы " +"защитить рабочих от непогоды." + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "металлическая стена кузни" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" +"Давайте построим крышу с металлическими опорами, чтобы защитить будущие печи" +" для обжига угля от дождя." + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "металлическое укрытие печей" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "Давайте построим последнюю металлическую часть кузни." + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "последняя металлическая часть кузни" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "Давайте начнём строить металлическую часть гончарной мастерской." + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "гончарная мастерская с металлическими стенами" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" +"Нам не помешает кузня из смолы ми-го. Давайте начнем с укрытой точки, чтобы " +"защитить рабочих от непогоды." + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "стена кузни из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" +"Давайте построим крышу с опорами из смолы ми-го, чтобы защитить будущие печи" +" для обжига угля от дождя." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "укрытие печей из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "Давайте построим последнюю часть кузни из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "последняя часть кузни из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "Давайте начнём строить часть гончарной мастерской из смолы ми-го." + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "гончарная мастерская со стенами из смолы ми-го" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" +"Нам не помешает землебитная кузня. Давайте начнем с укрытой точки, чтобы " +"защитить рабочих от непогоды." + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "землебитная стена кузни" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" +"Давайте построим крышу с землебитными опорами, чтобы защитить будущие печи " +"для обжига угля от дождя." + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "землебитное укрытие печей" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "Давайте построим последнюю землебитную часть кузни." + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "последняя землебитная часть кузни" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "Давайте начнём строить землебитную часть гончарной мастерской." + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "землебитная гончарная мастерская" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" +"Нам не помешает каменная кузня. Давайте начнем с укрытой точки, чтобы " +"защитить рабочих от непогоды." + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "каменная стена кузни" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" +"Давайте построим крышу с каменными опорами, чтобы защитить будущие печи для " +"обжига угля от дождя." + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "каменное укрытие печей" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "Давайте построим последнюю каменную часть кузни." + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "последняя каменная часть кузни" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "Давайте начнём строить каменную секцию гончарной мастерской." + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "гончарная мастерская с каменными стенами" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" +"Нам не помешает кузня в мазанке. Давайте начнем с укрытой точки, чтобы " +"защитить рабочих от непогоды." + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "стена-мазанка кузни" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" +"Давайте построим крышу с опорами-мазанкой, чтобы защитить будущие печи для " +"обжига угля от дождя." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "мазаное укрытие печей" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "Давайте построим последнюю мазаную часть кузни." + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "последняя мазаная часть кузни" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "Давайте начнём строить мазаную секцию гончарной мастерской." + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "мазанка-гончарная мастерская" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" +"Нам не помешает кузня из деревянных панелей. Давайте начнем с укрытой точки," +" чтобы защитить рабочих от непогоды." + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "стена кузни из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" +"Давайте построим крышу с опорами из деревянных панелей, чтобы защитить " +"будущие печи для обжига угля от дождя." + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "укрытие печей из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "Давайте построим последнюю часть кузни из деревянных панелей." + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "последняя часть кузни из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" +"Давайте начнём строить часть гончарной мастерской из деревянных панелей." + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "гончарная мастерская из деревянных панелей" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" +msgstr "" #: lang/json/recipe_from_json.py msgid "Buttery Duck Bites" @@ -232896,8 +237856,14 @@ msgid "Mansion Garden With Columns Base" msgstr "Лагерь в саду с колоннами в поместье" #: lang/json/recipe_group_from_json.py -msgid "Canteen" -msgstr "Столовая" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "Столовая версии 1. Даёт рецепты для готовки, печи, колодец, погреб" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" +msgstr "" +"Столовая версии 2. Версия 1 плюс перегонный аппарат, ветряная мельница и " +"больше ящиков для рассады" #: lang/json/recipe_group_from_json.py msgid "Farm version 1. Shed, plots, some farming recipes" @@ -232911,25 +237877,56 @@ msgstr "" "Ферма версии 2. Только участки, ограда (опционально ворота для трактора), " "рецептов нет." -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "Гараж" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "" +"Гараж версии 1. Вмещает транспорт нормальных размеров, вокруг есть свободное" +" место." #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" -msgstr "Животноводческая ферма" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" +"Гараж версии 2. Максимальная ширина, два полосы шириной, три разных длины" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" +"Животноводческая ферма версия 1. Планировка с большим количеством свободного" +" места." + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" +msgstr "" +"Животноводческая ферма версия 2. Больше стойл чем в версии 1, меньше " +"свободного места." #: lang/json/recipe_group_from_json.py msgid "Saltworks Area" msgstr "Зона солеварни" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" -msgstr "Центральный склад" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" +"Центральное хранилище версия 1. Симпатичное здание со свободным местом." + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" +"Центральное хранилище версия 2. Приоритет на хранении. Располагается только " +"на С, В, Ю, З." + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" +msgstr "Производственная мастерская версия 1. Симпатичный коттедж для работы" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" -msgstr "Производственная мастерская" +msgid "Fabrication Workshop version 2. More detailed recipe progression" +msgstr "" +"Производственная мастерская версия 2. Более детальный прогресс по рецептам" #: lang/json/recipe_group_from_json.py msgid "Light Industry Workshop" @@ -233091,6 +238088,62 @@ msgstr "Взлом и скачивание: Архивы интегральны msgid " Hack & Download: Satellite Map, sketch" msgstr "Взлом и скачивание: Спутниковая карта, рисунок" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "Производство: Тигель (глина)" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "Производство: кузнечные клещи" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "Производство: долото для горячей резки" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr " Производство: охотничий нож" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr " Производство: пробойник" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "Полевой лагерь" @@ -235536,6 +240589,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "Начать как мутант за порогом растения" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "Мутант - порог кролика" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "Мутант - порог кролика" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "Начать как мутант за порогом кролика" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "Начать как мутант за порогом кролика" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -235881,7 +240960,7 @@ msgstr "" "Навык работы с различным сырьём для придания ему формы нужных предметов. " "Играет важную роль при изготовлении многих вещей." -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "приготовление пищи" @@ -236788,8 +241867,8 @@ msgstr "Когда увидишь орду зомби, беги что есть #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" "Если преследует толпа зомби, спускайся в метро и пройди по туннелям пару " "кварталов, затем возвращайся снова на поверхность." @@ -237828,21 +242907,23 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" -"Сомневаюсь, что Майк ещё в здравом уме. Ему не повезло как-то раз заехать в " -"школу. Это стоило ему не только сломанных рёбер." +"Мне попался учитель начальной школы, которому пришлось с боем пробиваться из" +" школы. Ему пришлось убить дюжину обезумевших детей. Представить не могу, " +"что это делает с человеком." #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" -"Есть одна мысль насчет взрывчатки. Если ты ещё можешь бежать, а бомба пока " -"не взорвалась, продолжай бежать. Не может быть слишком далеко между тобой и " -"шашкой динамита." +"Мысль о взрывчатке: если вы всё ещё можете бежать, а взрывчатка ещё не " +"взорвалась, бегите ещё. При обращении с гранатой не бывает чрезмерной " +"осторожности." #: lang/json/snippet_from_json.py msgid "Avoid using launchers in narrow hallways, you might miss." @@ -243247,6 +248328,343 @@ msgstr "" "Когда вы смотрите на звёзды, многие из них погружаются во тьму, а затем " "оживают в рваной последовательности." +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "На мгновение вы видите нечто похожее на остров в небе." + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" +"На секунду солнце становится кроваво-красным и кажется, что с него что-то " +"капает." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" +"На мгновение вы видите вдалеке что-то похожее на здания размером с горы." + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" +"На мгновение вы оказываетесь в толпе частично прозрачных людей. Они не " +"обращают на вас внимания." + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" +"Вы видите небольшой самолет, летящий низко в небе, но он летит назад, и на " +"нем виден флаг, которого вы не знаете." + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "Все тени, которые вы видите, вращаются, будто солнце двигается." + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "На мгновение вы видите нечто похожее на цепь островов в небе." + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "На секунду солнце темнеет, как будто это гигантский моргающий глаз." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" +"На мгновение вы видите вдалеке что-то похожее на насекомых размером с горы." + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" +"На мгновение вы оказываетесь в толпе частично прозрачных людей. Они все " +"смотрят на вас." + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" +"Вы видите большой самолет, летящий низко в небе, но он летит назад, и на нем" +" виден флаг из перевёрнутых цветов вашего." + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" +"Все тени, которые вы видите, меняют форму и цвет, становясь похожими на " +"человеческие фигуры." + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "На секунду вы видите нечто, что похоже на город в небе." + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "На секунду солнце меняет курс на север и ускоряется." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" +"На мгновение вы видите вдалеке что-то похожее на людей размером с горы." + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" +"На мгновение вы оказываетесь в толпе частично прозрачных людей. Все они " +"указывают на вас и кричат на языке, который человеческие голосовые связки не" +" должны уметь произносить." + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" +"Вы видите большой самолет, летящий низко в небе, но он летит назад. Около " +"него появляется парашютист и словно падает вверх в самолёт, пока фигура " +"человека барахтается." + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" +"Все тени, которые вы видите, меняют форму и цвет, становясь похожими на " +"фигуры со слишком большим количеством конечностей, манящие вас подойти к " +"ним." + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "Вы чувствуете резкий химический запах, который не можете определить." + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" +"Ваши волосы встают дыбом, и вас охватывает слабое электрическое покалывание." + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" +"В небе открывается гигантская дыра, и в ней исчезают несколько облаков." + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" +"В небе открывается гигантская дыра, и из нее появляются несколько тёмных " +"облаков." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" +"На долю секунды мир становится туманным, словно поверх всего лежат другие " +"формы." + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" +"На мгновение в реальности открывается дыра, и вы можете видеть свою спину." + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "На мгновение все цвета тускнеют." + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "На мгновение кажется, что все расстояния сокращаются." + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" +"Невысокая фигура появляется и исчезает, слишком быстро, чтобы разглядеть её " +"черты." + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" +"Вы чувствуете совершенно новый запах, не похожий ни на что из того, что вы " +"ощущали раньше. Вы не можете решить, хорошо это или плохо." + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "Ваши волосы встают дыбом, и вас охватывает электрическое покалывание." + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" +"В небе открывается гигантская дыра, и из нее появляются несколько светящихся" +" облаков." + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" +"Гигантская дыра, похожая на глаз, открывается в небе, а затем закрывается, " +"как будто моргая." + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "На долю секунды мир покрывается бескрайней пустотой." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" +"На долю секунды мир скрывается за крошечной, невыразительной круглой " +"комнатой." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" +"На долю секунды мир покрывается огромным инопланетным ландшафтом с " +"растениями размером со здание вокруг вас." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" +"На долю секунды мир покрывается пустым и разрушенным городом, хотя и " +"построенным в совершенно ином масштабе, чем на Земле." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" +"На мгновение в реальности открывается дыра, и вы можете увидеть почти " +"идеальную копию себя." + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "На мгновение все цвета меняются местами." + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "На мгновение кажется, что все расстояния удваиваются." + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" +"Высокая фигура быстро появляется и исчезает, оставляя у вас смутное " +"впечатление злого присутствия." + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" +"Вы чувствуете совершенно новый запах, не похожий ни на что из того, что вы " +"ощущали раньше. Он вызывает у вас тошноту." + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" +"Ваши волосы встают дыбом, и вас охватывает сильное электрическое " +"покалывание." + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" +"В небе открывается зазубренная дыра, и из нее появляется огромное облако в " +"форме асимметричного человека." + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" +"Зазубренная дыра, похожая на глаз, открывается в небе, а затем смотрит на " +"вас." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" +"На долю секунды мир исчезает, и вы оказываетесь в огромной бескрайней " +"пустоте." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" +"На долю секунды мир исчезает, и вы оказываетесь в крошечной, невыразительной" +" круглой комнате." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" +"На долю секунды мир исчезает, и вы оказываетесь среди бескрайнего " +"инопланетного ландшафта с растениями размером со здание вокруг вас." + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" +"На долю секунды мир исчезает, и вы оказываетесь среди пустого и разрушенного" +" города, хотя и построенного в совершенно ином масштабе, чем на Земле." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" +"На мгновение в реальности открывается дыра, и вы можете увидеть ухмыляющуюся" +" идеализированную копию самого себя." + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "На мгновение все цвета перетекают, образуя ззазубренные формы." + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" +"На мгновение кажется, что все расстояния исчезают, как если бы все было " +"единым целым. Это вызывает клаустрофобию." + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" +"Высокая фигура быстро появляется и исчезает, глядя и всё время указывая на " +"вас." + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -243255,7 +248673,7 @@ msgstr "Поезда давно замерли, и тишину нарушают #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" "Рельсы здесь скользкие из-за поднимающегося снизу серого подрагивающего ила." @@ -243402,7 +248820,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" "Стена устлана зелено-серыми грибами, шляпки которых с нетерпением " @@ -249747,7 +255165,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" "Приготовленный кусок легкого животного-мутанта. Приложив немало усилий, вы " "можете разрезать затвердевшую оболочку из полупрозрачного мусора, но ваша " @@ -249836,7 +255254,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" "Кусок печени мутировавшего животного. Поверхность почерневшая и твердая, но " "потрескавшаяся, обнажает несколько полос свежей розовой ткани под ней. После" @@ -249857,7 +255275,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -249884,7 +255302,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" @@ -249895,13 +255313,13 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" -"усок почки мутировавшего животного. Врезаясь в него, ваш нож соскальзывает, " -"открывая на его стороне большую щель, из которой выкатываются крошечные " +"Кусок почки мутировавшего животного. Врезаясь в него, ваш нож соскальзывает," +" открывая на его стороне большую щель, из которой выкатываются крошечные " "красивые жемчужины. На ваших глазах они начинают блестеть от влаги и таять, " "не оставляя следов, кроме жгучей вони." @@ -250017,7 +255435,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -250167,8 +255585,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" "Вы находите равномерно расположенные по всему телу небольшие мешочки с " "яйцами на разных стадиях роста" @@ -250707,7 +256125,7 @@ msgstr "" "желез, каждая из которых питает резервуар у основания жала" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "Вы вскрываете желудок, выпуская поток сладко пахнущей серой жидкости" #: lang/json/snippet_from_json.py @@ -250717,11 +256135,12 @@ msgstr "При очевидной тяге к мясу кишечник каже #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" "Ваш нож достигает втянутого жала и скользит по его гладкой поверхности, " -"открывая при этом полдюжины ядовитых желез. Вы ведь не порезались, точно?" +"открывая при этом полдюжины ядовитых желез. Вы очень надеетесь, что не " +"порезались" #: lang/json/snippet_from_json.py msgid "" @@ -252973,6 +258392,76 @@ msgstr "" "Вы просыпаетесь от кошмара, в котором катаклизма не произошло, и вы застряли" " на скучной офисной работе." +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "Ты любишь кошек или собак?" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "Приятно знать, что зомби не чувствуют боли." + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "Куда бы мы ни попали, по крайней мере, мы всё ещё живы, верно?" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" +"Почему-то мне кажется, что я вряд ли вернусь к своей старой работе в " +"ближайшее время…" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "Твою ж, это совсем не как в тех голливудских фильмах про зомби!" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "Приходилось думать об этичности убийства зомби?" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "Так ты мочишь зубную щетку ПОСЛЕ того как намазал пасту? Это странно" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "Как думаешь чем сейчас занят президент?" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" +"Что любишь слушать? Я лично предпочитаю пост-глэм спид польку с хорошими " +"басами." + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" +"Никому не говори про это, но иногда я люблю спать в обнимку с моим плюшевым " +"мишкой." + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "Иногда я вижу странную херню на небе по ночам" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "Когда-то у меня был кот. Очень скучаю по Мистеру Обнимашке." + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" +"Я играл с друзьями в казаков-разбойников, только с зомби. Никогда бы не " +"пришло в голову, что такое случится взаправду…" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "Никогда не приходило в голову, что мы в своего рода симуляции?" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -255445,7 +260934,7 @@ msgstr "Дай мне уже кого-нибудь прибить!" msgid "I'm your best friend, right?" msgstr "Я же твой лучший друг, так?" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "Я тебя люблю!" @@ -256180,6 +261669,118 @@ msgstr "Ты меня серьёзно выводишь из себя…" msgid "You hate this loud sound." msgstr "Вы ненавидите этот громкий звук." +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "Кажется, у вас была похожая собака…" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "Ха-ха! Смешное фото котика." + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "Превосходное изображение природы." + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "Фото еды… Ваш желудок урчит!" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "Несколько очень интересных фото путешествий." + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "Изображения с концерта популярной группы." + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "Изображения чьего-то шикарного дома." + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "Вы чувствуете ностальгию, глядя на это фото." + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "Это точно." + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "Это решительно так." + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "Без сомнений." + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "Да — однозначно." + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "Можете рассчитывать на это." + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "Насколько я вижу, да." + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "Скорее всего." + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "Перспективы хорошие." + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "Да." + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "Знаки говорят что да." + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "Ответ туманный, попробуйте еще раз." + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "Спроси снова чуть позже." + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "Лучше не говорить тебе сейчас." + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "Не могу предугадать сейчас." + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "Сконцентрируйся и спроси снова." + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "Не рассчитывай на это." + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "Мой ответ — нет." + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "Мои источники утверждают, что нет." + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "Перспективы не очень хорошие." + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "Очень сомнительно." + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -256198,6 +261799,22 @@ msgstr "«мы пройдём через это!»" msgid "\"i'm here for you!\"" msgstr "«я здесь для тебя!»" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" +"«ух ты! ты выглядишь прямо как я! мы должны держаться ближе друг к другу!»" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "«давай же, большой я, пойдём!»" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "«мы — команда, мы справимся!»" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "«МЫ БЫЛИ ПРАВЫ ПРАВИТЕЛЬСТВО СДЕЛАЛО ЭТО»" @@ -257658,6 +263275,112 @@ msgstr "" "\"⋯биолюминесцентное, 1,5 метра в диаметре⋯ выглядит, как огромное " "бестелесное глазное яблоко, способное летать и [неразборчиво] думать\"" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" +"«Что за кипяток? Дождевая вода - это естественным образом дистиллированная " +"вода! Она совершенно безопасна, вы могли бы сэкономить столько времени, если" +" бы не кипятили её. Я выпил речной воды, и я в порядке!»" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" +"«Зашел в убежище, вошел какой-то парень, вышел, вернулся с камнем, разломал " +"скамейку в клочья, вырезал из нее доску и снова ушёл. Не видно уже 3 дня… " +"интересно, что за дела с ним.»" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" +"Эта записка покрыта серой слизью, фу… «Я знаю, что у меня есть фетиш, но ЭТО" +" УЖ СЛИШКОМ. Мои руки сделаны из слизи. Мои волосы как слизь. Мое тело " +"покрыто слизью. Я даже лом не могу использовать из-за слизи. Куда бы я ни " +"пошел, я оставляю след слизи. Всё слизь. Моя сумка падает со спины в слизь.»" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" +"Страница из записной книжки со ссылкой на азбуку Морзе и следующим " +"расшифрованным сообщением: «Виски эхо виски - Лима альфа дельта»" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" +"«Видишь если, ты хочешь, быть особенно надоедливым ты, можешь двинуть к, " +"свалке и, помочь Эрин откопать, последний, кусок»" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" +"«Видел одного из работников Сядь-и-поешь на улице. Если честно, они что " +"живые, что мёртвые выглядят одинаково.»" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" +"«НЕ ХОДИТЕ к облучательной установке! Мой грузовик выглядит как швейцарский " +"сыр после того, как турели его обработали как следует. Я застрял на обочине " +"на несколько часов, пока чиню всё это.»" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" +"«Я могу представить, как люди шлют свою «любовь и молитвы» в социальных " +"сетях. Любовь не убивает зедов, молитва не положит еду мне в тарелку.»" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" +"«Раньше я все принимал за чистую монету. Если вы не можете измерить это, не " +"можете объяснить, не можете назначить число, это ненастоящее. Потом " +"случилось вот это всё дерьмо. Очень смешно.»" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "Эта записка покрыта серой слизью, фу… «Блёрб»" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" +"«Видел дамочку в лесу. Всё её тело было зеленым ваще, и она была покрыта " +"листьями и лозами.»" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" +"«Хорошие новости: мои учителя не пытаются оторвать мне голову за несделанную" +" домашку. Плохие новости: мои учителя просто пытаются оторвать мне голову.»" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -260896,6 +266619,16 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "«Сегодня я видел самого красивого динозавра. Я должен её одеть»." +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" +"«Я увидел этого динозавра, и был так горд. А потом я увидел этого другого " +"динозавра, и я был так гооооорд! А потом я увидел ещё одного, и я был как " +"гордозавр! Прям вообще.»" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -261044,6 +266777,34 @@ msgstr "" "Алонсо не знал её, но она была прекрасна, величественна и заслуживала " "надлежащих похорон. Некоторое время Алонсо будет помнить этого динозавра." +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" +"Итак, я только что получил сообщение от нашего главного связного волшебника " +"Джейкоба. Он совершенно не в себе и рыдает уже несколько часов, но похоже, " +"что все центральные лаборатории были захвачены. Неужели некроманты наконец " +"объединились, чтобы уничтожить нас? Какой у них план?" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" +"Вчера Грегори Гамильтон, местный хранитель волшебного правопорядка, устроил " +"беспорядок в местном торговом районе. Он известнен как самый могущественный " +"маг в Сиракузах, штат Нью-Йорк, и неудивительно, что ему удалось превратить " +"весь район в дымящийся кратер. Национальная гвардия вывела его из строя с " +"помощью группы снайперов и 5 вертолетов. Число жертв неизвестно, но текущая " +"оценка составляет 15 000 человек и продолжает расти." + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -261082,6 +266843,17 @@ msgstr "" "\n" "Орихалк - это в первую очередь сплав на основе меди, но его создание варьируется от человека к человеку с точки зрения добавления примесей металлов и точной процедуры. Хотя он не намного прочнее стали, он гораздо более устойчив к коррозии и общему износу (некоторые говорят, что он хочет сохранять свою форму). Несмотря на существование обычных древних магических мечей силы, большая часть общего понимания основана на найденном людьми доиндустриальной эпохи в гробницах и тому подобных местах орихалковом оружии в рабочем состоянии. Так почему же орихалк не используется в промышленных условиях? Проблема в том, что магия может начать деградировать, если его не выковать с должным умением. При большинстве отказов он будет восстановлен через несколько минут (на практике так и не став орихалком), но существует заметный риск отказа до 30 лет, а это означает, что предметы должны быть «выдержаны», как вино, чтобы считаться истинным орихалком. Повторная ковка существующего орихалка, хотя и немного проще, чем ковка с нуля, создает те же проблемы, что блокирует промышленное производство и ограничивает его использование для создания вещей. Вы можете найти его в старых доспехах и оружии, но также и в дорогих старинных столовых приборах и тому подобном. По-прежнему существует активное сообщество любителей и экспертов-ремесленников, но орихалк, как и многие другие магические явления, в целом не подходит для нашего современного общества.»" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" +"В местном торговом центре были беспорядки. Единственное объяснение, которое " +"у меня есть, это то, что какой-то идиот экспериментировал с заклинанием " +"Массовой Ярости. Есть *причина*, почему такие заклинания классифицируются " +"как военная тайна…" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -262615,7 +268387,7 @@ msgstr "весёлый голос «Покупатель? Мы же будем #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" "нейтральный голос «Покупатель, я должен сообщить, что выделенное вам время " @@ -262798,20 +268570,20 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "«Полиция скоро будет. Оставайтесь на месте!»" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" -msgstr "«нутряное посвистывание.»" +msgid "visceral chittering." +msgstr "нутряное посвистывание." #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" -msgstr "«чистый пронзительный гул.»" +msgid "a clear, high-pitched hum." +msgstr "чистый пронзительный гул." #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" -msgstr "«гул статического электричества.»" +msgid "the hum of static electricity." +msgstr "гул статического электричества." #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" -msgstr "«низкий жужжащий звук.»" +msgid "a low buzzing sound." +msgstr "низкий жужжащий звук." #: lang/json/speech_from_json.py msgid "\"I AM FOODPERSON. AND I BRING SUSTENANCE!\"" @@ -262887,128 +268659,132 @@ msgstr "" "«Сядь-и-поешь - единственный способ сделать правильный и здоровый выбор!!»" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "Поиграешь со мной?" +msgid "\"Wanna play with me?\"" +msgstr "«Поиграешь со мной?»" + +#: lang/json/speech_from_json.py +msgid "\"Sing with me!\"" +msgstr "«Спой со мной!»" #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "Спой со мной!" +msgid "\"I love you!\"" +msgstr "«Я тебя люблю!»" #: lang/json/speech_from_json.py -msgid "Please take me with you!" -msgstr "Возьми меня с собой!" +msgid "\"Please take me with you!\"" +msgstr "«Прошу, возьми меня с собой!»" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "Можно мне печенья?" +msgid "\"May I have a cookie?\"" +msgstr "«Можно мне печенья?»" #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "Поиграем вместе!" +msgid "\"Let's play together!\"" +msgstr "«Поиграем вместе!»" #: lang/json/speech_from_json.py -msgid "Time to play!" -msgstr "Время поиграть!" +msgid "\"Time to play!\"" +msgstr "«Время поиграть!»" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" -msgstr "Ням-ням! Вкусно!" +msgid "\"Om nom nom! Delicious!\"" +msgstr "«Ням-ням! Вкусно!»" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" -msgstr "Ты моя мамочка?" +msgid "\"Are you my mommy?\"" +msgstr "«Ты моя мамочка?»" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" -msgstr "Ой, как здорово!" +msgid "\"Oh, how fun!\"" +msgstr "«Ой, как здорово!»" #: lang/json/speech_from_json.py -msgid "You're my best friend!" -msgstr "Ты мой лучший друг!" +msgid "\"You're my best friend!\"" +msgstr "«Ты мой лучший друг!»" #: lang/json/speech_from_json.py -msgid "Heehee!" -msgstr "Хи-хи!" +msgid "\"Heehee!\"" +msgstr "«Хи-хи!»" #: lang/json/speech_from_json.py -msgid "Let's have fun!" -msgstr "Давай повеселимся!" +msgid "\"Let's have fun!\"" +msgstr "«Давай повеселимся!»" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" -msgstr "Попьём чайку!" +msgid "\"Let's have a tea party!\"" +msgstr "«»Попьём чайку!»" #: lang/json/speech_from_json.py -msgid "You're the best!" -msgstr "Ты лучше всех!" +msgid "\"You're the best!\"" +msgstr "«Ты лучше всех!»" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." -msgstr "Ты не должен был так делать." +msgid "\"You shouldn't have done that.\"" +msgstr "«Ты не должен был так делать.»" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." -msgstr "Давай сыграем… В русскую рулетку." +msgid "\"Let's play… Russian roulette.\"" +msgstr "«Давай сыграем… В русскую рулетку.»" #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "Ненавижу тебя." +msgid "\"I hate you.\"" +msgstr "«Ненавижу тебя.»" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" -msgstr "Убей себя!" +msgid "\"Go kill yourself!\"" +msgstr "«Убей себя!»" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" -msgstr "Большой Брат следит за тобой…" +msgid "\"Big Brother is watching you…\"" +msgstr "«Большой Брат следит за тобой…»" #: lang/json/speech_from_json.py -msgid "Die for me!" -msgstr "Умри за меня!" +msgid "\"Die for me!\"" +msgstr "«Умри за меня!»" #: lang/json/speech_from_json.py -msgid "Why won't you die?" -msgstr "Почему ты никак не сдохнешь?" +msgid "\"Why won't you die?\"" +msgstr "«Почему ты никак не сдохнешь?»" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." -msgstr "Кровь… Вкуснятина." +msgid "\"Blood… Delicious.\"" +msgstr "«Кровь… Вкуснятина.»" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" -msgstr "Увидимся… В АДУ!" +msgid "\"See you… IN HELL!\"" +msgstr "«Увидимся… В АДУ!»" #: lang/json/speech_from_json.py msgid "AAAIEEEEEEE!" msgstr "Айяяяяя!" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" -msgstr "ИДИ НА ХЕР!" +msgid "\"FUCK YOU!\"" +msgstr "«ИДИ НА ХЕР!»" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" -msgstr "Что ты сделал с моей мамочкой?" +msgid "\"What did you do with my Mommy?\"" +msgstr "«Что ты сделал с моей мамочкой?»" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" -msgstr "Будь со мной… Всегда!" +msgid "\"Stay with me… forever!\"" +msgstr "«Будь со мной… Всегда!»" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "Эй, ребятки, хотите конфеток?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "«Эй, ребятки, хотите конфеток?»" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" -msgstr "Здесь внизу, они ВСЕ летают!" +msgid "\"Down here, they ALL float!\"" +msgstr "«Здесь внизу, они ВСЕ летают!»" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" -msgstr "Тебе точно нужно столько мёда?" +msgid "\"Do you really need that much honey?\"" +msgstr "«Тебе точно нужно столько мёда?»" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" -msgstr "Моя прежняя хозяйка визжала как свинья, когда я её резал!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" +msgstr "«Моя прежняя хозяйка визжала как свинья, когда я её резал!»" #: lang/json/speech_from_json.py msgid "BARK!" @@ -263023,20 +268799,16 @@ msgid "WOOF!" msgstr "АВ-АВ!" #: lang/json/speech_from_json.py -msgid "heavy breathing" -msgstr "тяжёлое дыхание" - -#: lang/json/speech_from_json.py -msgid "labored breathing" -msgstr "затруднённое дыхание" +msgid "labored breathing." +msgstr "затруднённое дыхание." #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "хныканье" +msgid "a whimper." +msgstr "хныканье." #: lang/json/speech_from_json.py -msgid "a rasping growl" -msgstr "хриплое рычание" +msgid "a rasping growl." +msgstr "хриплое рычание." #: lang/json/speech_from_json.py msgid "\"I have no mouth and yet I scream!\"" @@ -264147,6 +269919,10 @@ msgstr "Продуктовый магазин" msgid "Gun Store" msgstr "Оружейный магазин" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "Гараж" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "Ломбард" @@ -265688,6 +271464,10 @@ msgstr "Пожалуйста, работай над любой строител msgid "Please do any mining work that you can." msgstr "Пожалуйста, выполни любую работу по раскопкам, которую сможешь." +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "Пожалуйста, уберись в этой области." + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "Пожалуйста, учись по книге." @@ -274612,6 +280392,892 @@ msgstr "" msgid "I'm glad you are OK." msgstr "Радует, что ты в порядке." +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "Чем торгуешь?" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "Я не понимаю ни одного твоего слова." + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "Ты что-то вроде робота?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" +"[инт 9] Вы зовётесь Экзоди? Это значит, что вам пришлось покинуть свой дом?" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "Что это за место такое?" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "[всп 6] Кое-что из техники выглядит… странно." + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" +"У тебя были вопросы ко мне, и моя реакция была грубой. О чём ты хотел " +"спросить?" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "Модем мы ещё поговорить о твоём прибытии в этот мир?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" +"Можешь превратить меня в киборга ПРЯМО СЕЙЧАС? Я разработчик этой игры, " +"знаешь ли." + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "Я думаю, что мне пора стать киборгом." + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" +"Есть ли хоть шанс, что ты поможешь мне достать какие-нибудь из этих " +"офигенных бионических улучшений?" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "Можешь помочь мне с операций для КБМ?" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "Позабывши что-либо?" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "Ааа, вернувши, я секу." + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "И вернувши целым, приятель." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "Отлично, ты ещё среди живых. Что тебя привело в Рубикову глушь?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" +"Светясь как солнце, ты снова тут! У меня есть добро для тя, если у тебя есть" +" для меня." + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "О, ты ещё дёргаешься. Хотеши поторговать?" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "Кто ты? Что это за место?" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "Мне удалось найти для тебя наборы для анестезии. Сможешь мне помочь?" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "Вообще-то я хочу поговорить." + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "Ни хрена, я валю отсюда." + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "Просто проведать захожу. Ещё увидимся, приятель." + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" +"Наши Экзоди зовут себя. И прочее, но и это сойдёт. Это наш дом, какой есть. " +"Этого кличе Рубик, и посадили тут торговать. Ты хоче торговать? Нас всегда " +"нужде металл, обломки и всяко прочее." + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "Мне лучше идти. Пока." + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "Ладно-шоколадно." + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "О чём мы там раньше говорили?" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" +"Можеше попробовать. Я-то не очень болтать силён, особо за глаза красивы, " +"сечёшь?" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "Эй, спросиши тебе кое-что сначала?" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "В смысле, задать мне вопрос? Конечно, давай." + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" +"Нет. У меня нет времени отвечать на твои вопросы, это ты должен отвечать на " +"мои. Полагаю, я ухожу." + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "А скок времени было с начала беспорядков?" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "[Рассказать им]" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" +"Спасибо те. Когда ты и Рубик встретились, сколько времени прошло с начала " +"беспорядка?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "Что за Бензет?" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "Поговорим о чём-то ещё?" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "Мне пора. Ещё увидимся, Рубик." + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "Я вообще не понимаю всего этого." + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" +"[инт 9] Так по твоему, у нас есть отличный, только что погибший мир для " +"посещения?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "Бензет это кто?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "Я… не особенно понимаю, о чём речь." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "О, вроде навигатора?" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "Конечно, и это весьма удачное слово, я секу." + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "Ты говорил, это был особо удачный прыжок?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "Расскажи мне о своём мире." + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" +"*на мгновение становится отрешённым. «А. Дом. Он давно исчез, сечёшь. Ваш не" +" так далёк от него. Я… не думаю, что хочу о том говорить. Слишком много " +"металла между сейчас и тогда." + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "Это тяжело, может нам лучше поговорить о чём-нибудь ещё." + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "Как ты оказался сделанным из металла?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" +"«Робот? Что за речь для этг? Пожди…». Рубик на секунду останавлиается, " +"раздумывая. «Ах, автоматик? Не, сей есть кровь-плоть как ты, в оболочке " +"металла и провода. Не так много плоти, как было. Провод замешан с плотью там" +" и тут, сечёшь." + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" +"[инт 9] Так ты что-то типа киборга? Это офигенно. Как мне стать киборгом?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" +"Я понятия не имею, о чём ты говоришь. Ты вроде робота, но с плотью и кровью?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "Поговорим о чём-то ещё? Это меня запутывает." + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "[инт или всп 7] Так откуда ты знаешь английский, или, ээ, «англик»?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "Что вас прогнало?" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "Тоже, что вас ждёт, я секу. Враг. Мёртвые." + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" +"Я не боле чем доковый лазун с Верхнепосадки, так мы там слова молотим. " +"Всякий с нашей зелёно-бурой молотит так же." + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" +"Расскажи мне о «старой доброй Верхнепосадке». На что был похож твой дом?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "…что?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "[инт или всп 9] Так откуда вы пришли? Вы инопланетяне или вроде того?" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "Есть что-то ещё, чего ты хочешь здесь?" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" +"Наши тут чтобы жить и дышать, сечёшь? После прошлого другоземья, то стало " +"малость полным мертвецами и всем таким. Так что, наши пришли в новое место. " +"Вот это вот. И если я секу верно, здесь всё только недавно умерло." + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "[инт или всп 7] Другоземье? Вы инопланетяне или вроде того?" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" +"Кроме того, чтоб просто жити за шкуру не дрожа? Наши тут чтоб добывати, ты " +"сечёшь. Подбирати обломки, глядети если в вашем другоземье есть какая " +"техника чтобы её по болтику изучить. Нет смысла бросати хорошие детали в " +"мусор. Если повезёт, подберём несколько новых Экзоди перед тем как спузырим." +" Подберёти кусочки наших дорогих разбитых мечтаний, каки они бы ни были." + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" +"То есть «нет смысла бросать в мусор»? Зомби не пользуются хламом, его вокруг" +" более чем достаточно." + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" +"Это мёртвые земли, я секу. У вас тяжел случай накрытия хреном, и лучше не " +"станет. Нет лечения для этих крыс и вшей." + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "Какого чёрта ты имеешь в виду?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" +"[инт 8] Значит, ты говоришь, что по твоему, мы обречены? Зачем было " +"приходить сюда, если здесь нет какого-то способа выжить?" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "Что имею, то имею. Ваша земля помирае уже, хоть и дёргае ещё." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" +"Значит, ты говоришь, что по твоему, мы обречены? Зачем было приходить сюда, " +"если здесь нет какого-то способа выжить?" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" +"О, наши могут пузырять когда нужно. Шлёт назад металлолом, приносит еду, " +"стряхивает нескольно плохишей, сечешь. Но не по тебе это, слишком много мяса" +" и костей." + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "Так… ты можешь помочь мне исправить это?" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "Подожди. Я думал, что ты всё ещё плоть и кости под этим металлом." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" +"Хаха, в основном нет, друг. Не стоит рисковати с всякими хренами, от так. Я " +"храню то, что есть Рубик, а остальное давно продано." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" +"Мне нет. Мы не отсюда исходити всё же. Кажись добро-добро для тебя, как по " +"моему." + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "[инт или всп 7] Не отсюда? Вы инопланетяне или вроде того?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "У меня есть кое-что, что я хочу себе установить." + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "У вас получится вытащить из меня один из моих имплантов?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" +"Конечно я могу сделать тебя киборгом тут и сейчас, раз уж ты разработчик и " +"вот это всё." + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "Сделаем это." + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "Моё решение поменось. О чём ты там раньше говорил?" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "Моё решение поменялось. Мне лучше идти. Пока." + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" +"Ох ХО! Так, так. Ныне ты молотишь на Королевском англике. Точно, наши можем " +"поправить тебя как надо, если ты хочешь отплатить так же. Наш будет говорить" +" так ясно, как Рубик может. Если ты пользовать это будешь для того чтоб " +"мёртвых обратно в землю класть, наши могут тебя поправить со всем хорошим, " +"да. Положим в твою плоть до костей, провода до мозга. Сечёшь? Ежели нет, " +"попрошу у Великого Серого пинту Яснопути." + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" +"А. ну что ж. Наши положим это в долгий стол, ежели сечёшь. Может быти ты нам" +" принесёшь мало больше поторговать, и мы тебя поправим скоро-скоро. Экзоди " +"не откажут ни одному Джонни, что хочет в дело." + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" +"Если я и дальше буду убивать зомби, ты поможешь мне превратиться в киборга? " +"О чём мы ещё молотим? Я в деле." + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" +"Если подумать ещё раз, у меня нет уверенности, что я хочу позволить кучке " +"незнакомых инопланетных роботов сделать мне операцию на мозге." + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "Может быть попробовать тот Яснопуть?" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "Хорошо, у меня есть кое-что для обмена прямо сейчас." + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "Хорошо, может быть, я вернусь, когда поторгую еще немного." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" +"Хмм.\n" +"\n" +"*Голос Рубика становится механическим и отрешённым, словно его перехватывает компьютер.*\n" +"\n" +"В обмен на гарантию того, что вы будете использовать эти дары для борьбы с Великим врагом, этот узел Экзоди готов предоставить вам контроллер управления бионическими модулями, источник питания и всю необходимую инфраструктуру для получения дальнейших обновлений со стандартизованными КБМ - компактными бионическими модулями. Нам потребуется только символическая плата за эту услугу. Мы предоставим дальнейшие обновления по мере покупки. Ваше личное совершенствование служит нашей взаимной выгоде\n" +"\n" +"*Голос Рубика возвращется к прежнему.*\n" +"\n" +"Ясен путь?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" +"Почему ты не можешь все время так понятно говорить? Ты даже не " +"представляешь, как сложно понять твой акцент, не говоря уже о словах. " + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" +"*Этый* акцент? Ты не иначе како себя не слыхивать, смеха только. Великий " +"Серый другие дела поважнее имеет. Этот вот должен полезным быть и Великому " +"Серому выполнять что тому надоти. Кроме того, молоть с местными меня молодит" +" и хром мой чешет, секу." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" +"Хорошо, сойдёт. Это неважно, что ты собираешься превратить меня в ужасающий " +"сплав машины и человека, я в деле, черт возьми." + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" +"Чем больше я говорю с тобой, тем меньше у меня уверенности, что я хочу " +"позволить кучке незнакомых инопланетных роботов сделать мне операцию на " +"мозге." + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "Ок, ок. О чём там был разговор? Меня отвлекло изменение голоса." + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" +"Добро-добро-добро! Ха! Наши сейчас запустим старую добрую мясорубку. Тебе " +"треба принести нам понюшку старого доброго чая. Не «чая» конечно. Я брешу на" +" портовом англике. Наши имеют в виду штуку, что тебя отрубит для керургии. " +"Великий Серый говорит, зовётся «анус тезия». Приноси два набора «анус " +"тезии», и мы тебя закоротим и всё что нужно." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" +"Два, эм, набора для анестезии, принято. Можем мы поговорить о чём-нибудь " +"ещё?" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "Два, эм, набора для анестезии, принято. Я лучше начну искать." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" +"Что-то не так, у меня не должно было получиться найти этот вариант ответа. " +"Пойду-ка я напишу баг-репорт." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" +"Добро-добро-добро! Ха! Раз уж тебе удалось достать хороший чай, наши сейчас " +"запустим старую добрую мясорубку. Оставь пока всё со старым добрым Рубиком." + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "Ладно. Сделаем это." + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "Подожди. Мне нужно ещё раз обдумать это." + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" +"*кланяется с прямой спиной и ведет вас из магазина по каменной дорожке к одному из самых больших зданий на территории. Толстая стальная дверь отодвигается, показывая мрачный, покрытый ржавчиной и пылью коридор. В конце коридора - чистый на вид хирургический кабинет, не слишком отличающийся от любого другого хирургического кабинета, если не считать тусклого освещения и самого хирурга. Во главе хирургического стола стоит хитроумное приспособление, напоминающее перевернутого паука, его многочисленные блестящие медицинские конечности мягко изгибаются в нетерпении, ожидая вашего приближения. У вас оказывается мало времени, чтобы подвергнуть сомнению свой выбор, прежде чем вы ощущаете резкую боль в левом плече, и мир улетает прочь.\n" +"\n" +"Вы просыпаетесь на удобной кровати, у вас болит грудь и горло, но в остальном вы чувствуете себя хорошо. По мере того, как пелена от анестезии исчезает, вы замечаете несколько крошечных болезненных ранок на груди и руках. Гуманоидный киборг, не Рубик, замечает, что вы проснулись, и безмолвно жестом показывает вам следовать за ним, отведя вас в магазин Рубика.\n" +"\n" +"«А, и ты свете как звёздочка, я секу. Сие прекрасно. Эти малые КБМы тебе слегка помогут, но то начало. Теперь нам можно торговать тебе всё, что понравится, и установить поможем, если пожелаешь.»" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "Так что, я теперь киборг? Ощущения примерно такие же, как были." + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "Ну, мне пора идти. Спасибо за мозговые импланты. Пока." + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" +"Так ты сможешь продать мне больше бионики, и когда я узнаю тебя поближе, у " +"тебя будет больше? Ты можешь показать мне, что у тебяесть прямо сейчас?" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "Что с тобой приключилось?" @@ -275386,6 +282052,10 @@ msgstr "Я могу чем-то помочь?" msgid "Do you need any resources?" msgstr "Вам нужны какие-либо ресурсы?" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "Откуда у тебя этот террариум с огромными светлячками?" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "Выживание в эти дни уже неплохо." @@ -275464,6 +282134,19 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "Это самое обнадеживающее, что я слышал за последнее время." +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" +"Путник принёс это мне в обмен на кроликов. Сказал, что получил его от " +"ученого на болотах, но он занимал слишком много места в его машине." + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "Это весьма уникально!" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "Так же, как и ты, готов поспорить." @@ -278326,10 +285009,6 @@ msgstr "Что ты вообще делала в университетской msgid "What's this I hear about you having a doctorate?" msgstr "Что же, я слышал, у тебя учёная степень?" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "О чём мы там раньше говорили?" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -283033,10 +289712,6 @@ msgstr "Я подумал, что вам может понадобиться п msgid "What's with these 'free merchant certified notes'?" msgstr "Что это за «сертифицированные купюры свободных торговцев»?" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "Мне лучше идти. Пока." - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "Добро пожаловать, маршал…" @@ -283478,6 +290153,132 @@ msgstr "" "и помочь им, и знаешь что? Если есть у тебя такая уверенность, я тоже приду " "помочь в свободное время. Я уважаю тех, кто силён не словом. но делом." +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "Итак, видели ли ваши караваны что-нибудь интересное на пустошах?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" +"Я хочу рассказать вам о новом потенциальном торговом партнёре, который мне " +"недавно встретился." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" +"Так-так, новое лицо. Приятно познакомиться. Это я высылаю караваны повсюду. " +"Что я могу сделать для тебя?" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "Можно задать тебе несколько вопросов?" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "Мне пора бежать, приятно было поговорить." + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "Конечно, сейчас всё равно заняться нечем." + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" +"Нет, к сожалению. Ничего стоящего внимания сейчас, изредка встречаются " +"ободранные выжившие, и они обычно не любят незваных гостей." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" +"Если на то пошло, да. Встретили группу фермеров. Они не особо хотят иметь " +"дела с нашими караванами, но с кем-то вроде тебя вполне могут." + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" +"Были кое-какие слухи. Ребята говорят о какой-то секретной лаборатории, в " +"глуши, и в ней есть выжившие. Только я её не видел, имей в виду." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" +"Ну, несколько моих караванов вернулись с новостями о гигантском замке из " +"металла на верхушке скалы, вдали от всего остального. Им хватило ума не " +"проверять, что там, но если ты хочешь, можешь попробовать." + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "ERROR: out of bounds on randomize_directions." + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "Как мне добраться до той фермы?" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "Как мне добраться до той лаборатории?" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "Как мне добраться до того замка?" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "А, тут ничего нового для меня. В любом случае спасибо." + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "Подожди, о чём мы там говорили до этого?" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "Вообще-то, мне пора. Может быть позже." + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" +"*показывает на карте, где найти* Так и доберёшься. Удачи, подозреваю, она " +"тебе пригодится." + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "Спасибо за подсказку. Я проверю." + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "Всегда ищу новые места для торговли. Что у тебя найдётся?" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "[ Рассказать им про Рубика и Экзоди ]" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" +"Ну что же, вот так история. Однажды я подумаю, как бы изучить это. Звучит " +"так, будто у нас наклёвывается по настоящему интересная торговля." + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "Можно кое-что спросить?" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "Маршал…" @@ -283824,6 +290625,15 @@ msgstr "Почаще оглядывайся, когда ты выходишь н msgid "Is there any way I can join the 'Old Guard'?" msgstr "Могу ли я присоединиться к «Старой Гвардии»?" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "У меня есть вопросы к тебе об этих странных роботах." + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "Я думаю, я уже знаю, что ты хочешь узнать об этих «роботах»." + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "Что нужно Старой Гвардии?" @@ -283948,6 +290758,72 @@ msgstr "" "отличный способ сделать себе имя среди самых могущественных людей, " "оставшихся в этом мире." +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" +"Если ты хочешть знать, каковы наши следующие шаги, я не вправе теье сказать." +" По правде говоря, это и мне неизвестно. Они не делятся со мной такой " +"информацией." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" +"Собственно, мне доводилось с ними встречаться. Кажется, они открыты для " +"торговли и прочего. Думаю, что вам может быть интересно узнать." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" +"Что ж, это интересно.С этим я не могу что-то сделать, но вы можете передать " +"эту информацию одному из возниц Свободных торговцев. Может, таким образом мы" +" сможем установить более дружеские отношения." + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "Хорошая идея. Так и сделаю." + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "Хах, может быть. Может поговорим о чём-то ещё?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" +"Ох, ладно. Мне было бы интересно услышать, что тебе о них известно. Я смогу " +"передать это командованию. Посмотрим, что у меня есть для продажи… как " +"насчёт антибиотиков из наших запасов? Их никогда не бывает слишком много." + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" +"Да, мне доводилось с ними встречаться. Кажется, они открыты для торговли и " +"прочего. Не враждебны, по крайней мере ко мне." + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" +"Мне нужно подумать об этом. Пока что лучше поговорим о чём-нибудь ещё." + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "Если ещё раз подумать, мне пора." + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -287242,6 +294118,29 @@ msgstr "Не сейчас, зайди попозже, наверное." msgid "Sure…" msgstr "Конечно…" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" +"Я храню книги Вальзайна. В его карманном измерении много этажей с книжными " +"полками. Это как раз те, которые, я думаю, он, скорее всего, скоро прочтет. " +"Я могу продать те копии, что у нас есть." + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" +"Я систематизирую книги, я продаю лишние книги, однажды, когда мы все еще " +"давали книги взаймы, я выслеживал тех, у кто опоздал с возвратом книги, " +"чтобы вернуть." + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "Давай тогда поговорим о деле." + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "Зачем пытаться захватить меня?" @@ -287445,20 +294344,6 @@ msgstr "Пока посиди тут, . Я должен убедиться msgid "Pack your bags, . We're going on a trip." msgstr "Собирай манатки, . Мы валим отсюда." -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "Контрудар био-джитсу" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "Вы блокируете и контратакуете противника (%s)" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr " блокирует и контратакует противника (%s)" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "Разоружение" @@ -288079,20 +294964,6 @@ msgstr "Вы разоружаете противника (%s) с помощью msgid " disarms %s using their whip" msgstr " разоружает противника (%s) с помощью кнута" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "Контратака" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "Вы контратакуете противника (%s)" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr " контратакует противника (%s)" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "Обманный выпад" @@ -288128,55 +294999,45 @@ msgid " jabs deftly at %s" msgstr " ловко наносит прямой удар противнику (%s)" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" -msgstr "Блок и контрразоружение" +msgid "Counter Throw (block)" +msgstr "Контрбросок (блок)" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" -msgstr "Вы блокируете и плавно разоружаете противника (%s)" +msgid "You smoothly throw %s" +msgstr "Вы плавно бросаете %s" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr " блокирует и плавно разоружает противника (%s)" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" -msgstr "Блок и контрбросок" +msgid " blocks and smoothly throws %s" +msgstr " блокирует и плавно бросает противника (%s)" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" -msgstr "Вы блокируете и плавно бросаете противника (%s)" +msgid "Counter Throw (dodge)" +msgstr "Контрбросок (уклонение)" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" -msgstr " блокирует и плавно бросает противника (%s)" +msgid " dodges and smoothly throws %s" +msgstr " уклоняется и плавно бросает противника (%s)" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" -msgstr "Уклонение и контрбросок" +msgid "Disarming Throw (block)" +msgstr "Обезоруживающий бросок (блок)" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" -msgstr "Вы уклоняетесь и плавно бросаете противника (%s)" +msgid "You smoothly disarm %s" +msgstr "Вы ловко разоружаете противника (%s)" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr " уклоняется и плавно бросает противника (%s)" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" -msgstr "Уклонение и контрразоружение" +msgid " blocks and smoothly disarms %s" +msgstr " блокирует и плавно разоружает противника (%s)" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" -msgstr "Вы уклоняетесь и плавно разоружаете противника (%s)" +msgid "Disarming Throw (dodge)" +msgstr "Обезоруживающий бросок (уклонение)" #: lang/json/technique_from_json.py #, python-format @@ -288259,20 +295120,6 @@ msgstr "%s пытается вас схватить, но вы разрывае msgid "The %s tries to grab , but they break free!" msgstr "%s пытается схватить , но тот разрывает захват!" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "Ответный удар" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "Вы перехватываете атаку противника (%s) и наносите ответный удар" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr " перехватывает атаку противника (%s) и наносит ответный удар" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -288391,34 +295238,6 @@ msgstr "Вы угрожающе поднимаете руки на против msgid " performs the Crane Wing at %s." msgstr " выполняет «крыло журавля» на противника (%s)." -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "Взмах Журавля" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "%s пытается вас схватить, но вы взмахиваете руками и высвобождаетесь!" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "%s пытается схватить , но тот высвобождается!" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "Атака Журавля" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "Вы хватаете противника (%s) и хлопаете оземь" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr " хватает противника (%s) и хлопает оземь" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "Пинок Журавля" @@ -288434,47 +295253,46 @@ msgid " leaps and kicks %s" msgstr " подпрыгивает и бьёт противника (%s) ногой" #: lang/json/technique_from_json.py -msgid "Dragon Claw" -msgstr "Коготь Дракона" +msgid "Crane Flap" +msgstr "Взмах Журавля" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" -msgstr "Вы набрасываетесь на противника (%s) Когтем Дракона" +msgid "The %s tries to grab you, but you swing your arms and break free!" +msgstr "%s пытается вас схватить, но вы взмахиваете руками и высвобождаетесь!" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" -msgstr " набрасывается на противника (%s) Когтем Дракона" +msgid "The %s tries to grab , but they flap free!" +msgstr "%s пытается схватить , но тот высвобождается!" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" -msgstr "Вихревой блок Дракона" +msgid "Crane Strike" +msgstr "Атака Журавля" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" -msgstr "Вы блокируете удар и закручиваете противника (%s)" +msgid "You hand-peck and strike %s" +msgstr "Вы хватаете и бьёте противника (%s)" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" -msgstr " блокирует и закручивает противника (%s)" +msgid " hand-pecks and strikes %s" +msgstr " хватает и бьёте противника (%s)" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" -msgstr "Уклонение Драконьего крыла" +msgid "Dragon Claw" +msgstr "Коготь Дракона" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" -msgstr "Вы уворачиваетесь от атаки и выводите противника (%s) из равновесия" +msgid "You lash out at %s with a Dragon Claw" +msgstr "Вы набрасываетесь на противника (%s) Когтем Дракона" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" -msgstr "" -" уворачивается от атаки и выводит противника (%s) из равновесия" +msgid " lashes out at %s with a Dragon Claw" +msgstr " набрасывается на противника (%s) Когтем Дракона" #: lang/json/technique_from_json.py #, python-format @@ -288558,18 +295376,18 @@ msgid " combination strikes %s" msgstr " наносит %s комбинацию ударов" #: lang/json/technique_from_json.py -msgid "Puño Strike" -msgstr "Удар Пуньо" +msgid "Stunning Strike" +msgstr "Оглушающая атака" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" -msgstr "Вы наносите удар пуньо противнику (%s)" +msgid "You deliver a stunning strike to %s" +msgstr "Вы наносите оглушающий удар противнику (%s)" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" -msgstr " бьёт рукояткой противника (%s)" +msgid " delivers a stunning strike to %s" +msgstr " наносит оглушающий удар противнику (%s)" #: lang/json/technique_from_json.py msgid "Low Strike" @@ -288610,8 +295428,8 @@ msgid " lunges at %s" msgstr " делает выпад в сторону противника (%s)" #: lang/json/technique_from_json.py -msgid "Compound Attack" -msgstr "Сложная атака" +msgid "Compound Attack (Remise)" +msgstr "Сложная атака (Ремиз)" #: lang/json/technique_from_json.py #, python-format @@ -288623,6 +295441,10 @@ msgstr "Ваш финт переходит в сложную атаку прот msgid "'s feint leads to a compound attack against %s" msgstr "Финт переходит в сложную атаку против противника (%s)" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "Сложная атака (Контратака)" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "Фехтовальный контрудар" @@ -288774,20 +295596,6 @@ msgstr "" "%s пытается схватить противника (), но тот легко разрывает хилый " "захват!" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "Контрбросок" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "Вы уворачиваетесь от противника (%s) и опрокидываете его наземь" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr " уворачивается от противника (%s) и опрокидывает его наземь" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "Контрудар карате" @@ -288893,20 +295701,6 @@ msgid "The %s tries to grab , but they wrestle free!" msgstr "" "%s пытается схватить противника (), но тот борется и освобождается!" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "Контрудар" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "Вы блокируете и контратакуете противника (%s)" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr " блокирует и контратакует противника (%s)" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "Лапа Леопарда" @@ -289011,21 +295805,6 @@ msgid "" msgstr "" "Отработанным движением переходит от неудачной атаки к новому удару" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "Мастерское рассечение" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "Вы парируете и отвечаете атакой по противнику (%s) одним движением" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" -" парирует и отвечает атакой по противнику (%s) одним движением" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "Удар локтем" @@ -289350,20 +296129,6 @@ msgstr "Вы бросаетесь на противника (%s) коварны msgid " lashes out at %s with a vicious Snake Strike" msgstr " бросается на противника (%s) коварным Змеиным ударом" -#: lang/json/technique_from_json.py -msgid "Push" -msgstr "Толчок" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You push %s away" -msgstr "Вы отталкиваете противника (%s) прочь" - -#: lang/json/technique_from_json.py -#, python-format -msgid " pushes %s away" -msgstr " отталкивает противника (%s) прочь" - #: lang/json/technique_from_json.py msgid "Shove" msgstr "Отталкивание" @@ -289388,6 +296153,16 @@ msgstr "Вы ловко делаете подножку противника (%s msgid " deftly trips %s" msgstr " ловко делает подножку противника (%s)" +#: lang/json/technique_from_json.py +#, python-format +msgid "You fake a thrust at %s" +msgstr "Вы делаете ложный рывок в сторону противника (%s)" + +#: lang/json/technique_from_json.py +#, python-format +msgid " fakes a thrust at %s" +msgstr " делает ложный рывок в сторону противника (%s)" + #: lang/json/technique_from_json.py msgid "Snatch Weapon" msgstr "Вырывание оружие" @@ -289588,21 +296363,6 @@ msgstr "Вы промахнулись по противнику (%s), но вы msgid "'s attack misses %s but they don't let up" msgstr " промазал по противнику (%s), но он не отступает" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "Получи и дай сдачи" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" -"Вы получаете дар жестокости от противника (%s), и возвращаете его сполна" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr " атакован противника (%s) и наносит ответный удар" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "Пьяный финт" @@ -290425,20 +297185,6 @@ msgstr "" " наносит чистый удар по противнику (%s) и стоящим рядом, собирая " "кровавую жатву" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "Ausstoß" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "Вы перенаправляете атаку противника (%s) против его самого" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr " перенаправляет атаку противника (%s) обратно" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "Kumai Sharinraku" @@ -290537,20 +297283,6 @@ msgstr "Вы используете Удар вниз на противнике msgid " uses Low Sweep on %s" msgstr " использует Удар вниз на противнике (%s)" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "Атака глупца" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "Вы обманываете противника (%s) и наносите удар в ответ" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr " обманывает противника (%s) и наносит удар в ответ" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "Убийство гидры" @@ -290593,24 +297325,6 @@ msgstr "Вы крутитесь и бросаете противника (%s) б msgid " spins and hurls %s away with a Ballista Throw" msgstr " крутится и бросает противника (%s) броском «Баллиста»" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "Текущая вода" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" -"Вы отражаете атаку противника (%s) и атакуете в ответ одним плавным " -"движением" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" -" отражает атаку противника (%s) и атакует в ответ одним плавным " -"движением" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "Обезоруживающий порез" @@ -293203,6 +299917,21 @@ msgstr "" "Относительно молодое дерево неопределенной разновидности. Дерево достигает " "зрелости в течение десятилетий, так что ждать рядом бесполезно." +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "мегапапоротник" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" +"Гигантский папоротник, ничего похожего на который вы раньше не видели. " +"Листья ярко-алого цвета с сетчатой структурой из зеленых жилок. " +"Многоствольные стволы имеют консистенцию бальзового дерева." + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "яблоня" @@ -297215,10 +303944,10 @@ msgstr "" "очаровательную лазурную синеву океанской бездны." #: lang/json/terrain_from_json.py -msgid "Window with metal grate" -msgstr "Окно с металлическими решётками" +msgid "window with metal grate" +msgstr "окно с металлической решёткой" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " @@ -297227,7 +303956,7 @@ msgstr "" "Металлическая решетка в оконной раме. Очень прочная, способна остановить " "любого врага." -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " @@ -297236,7 +303965,7 @@ msgstr "" "Металлическая решетка в оконной раме с закрытыми занавесками. Очень прочная," " способна остановить любого врага." -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -297246,25 +303975,25 @@ msgstr "" " способна остановить любого врага." #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" -msgstr "Однослойное окно" +msgid "single glazed glass window" +msgstr "однослойное стеклянное окно" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "Большой вставленный в оконную раму лист стекла." #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" -msgstr "Открытое однослойное окно" +msgid "open single glazed glass window" +msgstr "открытое однослойное стеклянное окно" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" -msgstr "Однослойное окно с занавеской" +msgid "single glazed glass window with a curtain" +msgstr "однослойное стеклянное окно с занавеской" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " @@ -297274,7 +304003,7 @@ msgstr "" "можно задёрнуть, которые блокируют внешний обзор и не впускают солнечный " "свет." -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -297285,23 +304014,23 @@ msgstr "" "свет." #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" -msgstr "Однослойное окно с пуленепробиваемым стеклом" +msgid "reinforced single glazed glass window" +msgstr "однослойное стеклянное окно с пуленепробиваемым стеклом" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "Большой вставленный в оконную раму лист пуленепробиваемого стекла." #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" -msgstr "Открытое усиленное однослойное окно" +msgid "open reinforced single glazed glass window" +msgstr "открытое стеклянное однослойное окно с пуленепробиваемым стеклом" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" -msgstr "Усиленное однослойное окно с занавеской" +msgid "reinforced single glazed glass window with a curtain" +msgstr "Усиленное стеклянное однослойное окно с занавеской" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " @@ -297310,12 +304039,7 @@ msgstr "" "Окно с причудливыми зашторенными занавесками на внутренней части, которые " "блокируют внешний обзор и не впускают солнечный свет." -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "Усиленное застекленное однослойное окно с занавеской" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -297326,25 +304050,25 @@ msgstr "" "впускать солнечный свет." #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" -msgstr "Двухслойное окно" +msgid "double glazed glass window" +msgstr "двухслойное стеклянное окно" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "Два вставленных в оконную раму листа стекла." #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" -msgstr "Открытое двухслойное окно" +msgid "open double glazed glass window" +msgstr "открытое стеклянное двухслойное окно" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" -msgstr "Двухслойное стеклянное окно с занавеской" +msgid "double glazed glass window with a curtain" +msgstr "двухслойное стеклянное окно с занавеской" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " @@ -297354,8 +304078,8 @@ msgstr "" "внутренней части, которые блокируют внешний обзор и не впускают солнечный " "свет." -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -297366,10 +304090,10 @@ msgstr "" "впускать солнечный свет." #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" -msgstr "Двухслойное окно с пуленепробиваемым стеклом" +msgid "reinforced double glazed glass window" +msgstr "двухслойное стеклянное окно с пуленепробиваемым стеклом" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -297379,10 +304103,10 @@ msgstr "" "сделан из пулестойкого стекла." #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" -msgstr "Открытое двухслойное окно с пуленепробиваемым стеклом" +msgid "open reinforced double glazed glass window" +msgstr "открытое стеклянное двухслойное окно с пуленепробиваемым стеклом" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -297390,30 +304114,30 @@ msgid "" msgstr "Два больших листа непробиваемого стекла, вставленных в оконную раму." #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" -msgstr "Усиленное двухслойное окно с занавеской" +msgid "reinforced double glazed glass window with a curtain" +msgstr "усиленное двухслойное стеклянное окно с занавеской" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" -msgstr "Трехслойное окно" +msgid "triple glazed glass window" +msgstr "трехслойное стеклянное окно" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "Три вставленных в оконную раму листа стекла." -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "Три вставленных в оконную раму больших листа стекла." #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" -msgstr "Трехслойное стеклянное окно с занавеской" +msgid "triple glazed glass window with a curtain" +msgstr "трехслойное стеклянное окно с занавеской" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " @@ -297423,10 +304147,8 @@ msgstr "" "внутренней части, которые блокируют внешний обзор и не впускают солнечный " "свет." -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -297437,14 +304159,10 @@ msgstr "" "свет." #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "Трехслойное стеклянное окно с занавеской" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" -msgstr "Усиленное трехслойное окно с пуленепробиваемым стеклом" +msgid "reinforced triple glazed glass window" +msgstr "трёхслойное стеклянное окно с пуленепробиваемым стеклом" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " @@ -297453,7 +304171,7 @@ msgstr "" "Три листа стекла, а также лист пуленепробиваемого стекла, вставленные в " "оконную раму." -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -297463,36 +304181,28 @@ msgstr "" "вставленные в оконную раму." #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" -msgstr "Усиленное трехслойное окно с занавеской" +msgid "reinforced triple glazed glass window with a curtain" +msgstr "усиленное трехслойное стеклянное окно с занавеской" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" -msgstr "Усиленное трехслойное окно с занавеской" +msgid "quadruple glazed glass window" +msgstr "четырехслойное стеклянное окно" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "Усиленное трехслойное окно с занавеской" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "Четырехслойное окно" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "Четыре огромных листа стекла, вставленных в оконную раму." -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "Открытое четырехслойное окно." #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" -msgstr "Четырехслойное окно с занавеской" +msgid "quadruple glazed glass window with a curtain" +msgstr "четырехслойное стеклянное окно с занавеской" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " @@ -297502,8 +304212,7 @@ msgstr "" "на внутренней части, которые блокируют внешний обзор и не впускают солнечный" " свет." -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -297514,14 +304223,10 @@ msgstr "" "свет." #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "Четырехслойное окно с занавеской" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" -msgstr "Четырехслойное окно с пуленепробиваемым стеклом" +msgid "reinforced quadruple glazed glass window" +msgstr "четырёхслойное стеклянное окно с пуленепробиваемым стеклом" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -297544,12 +304249,7 @@ msgstr "" "внутренней части, которые блокируют внешний обзор и не впускают солнечный " "свет." -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "Усиленное четырехслойное окно с занавеской" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -297560,14 +304260,10 @@ msgstr "" "впускать солнечный свет." #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "Усиленное четырехслойное окно с занавеской" +msgid "plastic window" +msgstr "пластиковое окно" -#: lang/json/terrain_from_json.py -msgid "Plastic window" -msgstr "Пластиковое окно" - -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " @@ -297576,7 +304272,7 @@ msgstr "" "Самодельное окно - пластиковый полупрозрачный лист, закрепленный в оконной " "раме. Сойдет на крайний случай." -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -297586,10 +304282,10 @@ msgstr "" "оконной раме. Сойдет на крайний случай." #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" -msgstr "Пластиковое окно с занавеской" +msgid "plastic window with a curtain" +msgstr "пластиковое окно с занавеской" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -297601,7 +304297,7 @@ msgstr "" "можно задёрнуть, чтобы заблокировать внешний обзор и не впускать солнечный " "свет. Сойдёт на крайний случай." -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -297614,10 +304310,10 @@ msgstr "" "свет. Сойдёт на крайний случай." #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" -msgstr "Пластиковое окно с открытой занавеской" +msgid "plastic window with open curtains" +msgstr "пластиковое окно с открытой занавеской" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -297630,10 +304326,10 @@ msgstr "" "впускать солнечный свет. Сойдёт на крайний случай." #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" -msgstr "Усиленное пластиковое окно" +msgid "reinforced plastic window" +msgstr "усиленное пластиковое окно" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " @@ -297642,11 +304338,7 @@ msgstr "" "Самодельное окно - три пластиковых полупрозрачных листа, закрепленных в " "оконной раме. Сойдет на крайний случай." -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "Усиленное пластиковое окно" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -297656,10 +304348,10 @@ msgstr "" "закрепленных в оконной раме. Сойдет на крайний случай." #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" -msgstr "Усиленное пластиковое окно с занавеской" +msgid "reinforced plastic window with a curtain" +msgstr "усиленное пластиковое окно с занавеской" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -297672,10 +304364,10 @@ msgstr "" "впускать солнечный свет. Сойдёт на крайний случай." #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" -msgstr "Усиленное пластиковое окно с открытой занавеской" +msgid "reinforced plastic window with an open curtain" +msgstr "усиленное пластиковое окно с открытой занавеской" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -297687,7 +304379,7 @@ msgstr "" "занавеска, которую можно задёрнуть, чтобы заблокировать внешний обзор и не " "впускать солнечный свет. Сойдёт на крайний случай." -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -297700,27 +304392,27 @@ msgstr "" "обзор и не впускать солнечный свет. Сойдёт на крайний случай." #: lang/json/terrain_from_json.py -msgid "Skylight frame" -msgstr "Рама слухового окна" +msgid "skylight frame" +msgstr "рама слухового окна" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "Деревянная рама слухового окна." #: lang/json/terrain_from_json.py -msgid "Tempered glass window" -msgstr "Окно из закаленного стекла" +msgid "tempered glass window" +msgstr "окно из закаленного стекла" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "Большой вставленный в оконную раму лист закаленного стекла." #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" -msgstr "Открытое закаленное окно" +msgid "open tempered glass window" +msgstr "открытое окно из закаленного стекла" #: lang/json/terrain_from_json.py msgid "tempered glass window with a curtain" @@ -297736,11 +304428,7 @@ msgstr "" "внутренней части, которые блокируют внешний обзор и не впускают солнечный " "свет." -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "Закаленное стекло с занавеской" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -298941,7 +305629,7 @@ msgstr "взламывания" #: lang/json/tool_quality_from_json.py msgid "nail prying" -msgstr "" +msgstr "выдёргивания гвоздей" #: lang/json/tool_quality_from_json.py msgid "punch" @@ -300404,6 +307092,99 @@ msgstr "" "хотя и с меньшей эффективностью. Соотношение мощности к массе лучше, чем у " "обычного двигателя, но потребление топлива выше." +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" +"Рядный 6-цилиндровый дизельный двигатель. Немного более мощный, чем V6, вы " +"можете увидеть такой двигатель на дорожном катке или экскаваторе." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" +"Мощный 6-цилиндровый дизельный двигатель, типичный для автобуса, " +"внедорожника, большого фургона или бронетранспортера." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" +"Большой 8-цилиндровый дизельный двигатель, достаточно мощный для грузовика, " +"броневика или армейского вездехода." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" +"Небольшой 1-цилиндровый бензиновый двигатель мощностью около 10 лошадиных " +"сил, чего достаточно для скутера или моторизованного велосипеда." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" +"Здоровенный 1-цилиндровый бензиновый двигатель мощностью около 55 лошадиных " +"сил, обычно используемый в мотокроссе или внедорожнике." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" +"Небольшой 1-цилиндровый бензиновый двигатель мощностью всего несколько " +"лошадиных сил, подходящий для газонокосилки." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" +"Четырехцилиндровый бензиновый двигатель, обычно используемый в небольших " +"легковых автомобилях и лёгких грузовиках." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" +"Массивный 12-цилиндровый бензиновый двигатель с мощностью, подходящей " +"спортивному автомобилю." + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" +"Массивный 12-цилиндровый дизельный двигатель, типичный для тяжелого " +"грузового автомобиля." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" +"Мощный 6-цилиндровый бензиновый двигатель, достаточно сильный для пикапа, " +"внедорожника или полноразмерного фургона." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" +"Мощный 8-цилиндровый бензиновый двигатель, такой можно найти в пожарной " +"машине, машине скорой помощи или эвакуаторе." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" +"2-цилиндровый бензиновый двигатель, подходящий для мотоцикла или " +"квадроцикла." + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " @@ -300412,6 +307193,30 @@ msgstr "" "Паровой двигатель внешнего сгорания с замкнутым циклом. Сжигает каменный или" " древесный уголь из бункера для получения пара." +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" +"Небольшой, но мощный газотурбинный двигатель, подходящий для небольшого " +"одноместного или двухместного вертолета." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" +"Сверхмощный газотурбинный двигатель, как в медицинских вертолетах, Apache " +"или Blackhawk." + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" +"Огромный газотурбинный двигатель, используемый для больших военных " +"вертолетов, таких как V-22 Osprey." + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py @@ -300420,6 +307225,30 @@ msgstr "" "Дверь. Имеется окно, так что можно смотреть через неё, даже когда она " "закрыта." +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "откидная дверь из ткани" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" +"Лист ткани, который можно закрепить в закрытом положении, чтобы использовать" +" его как дверь." + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "две-занавеска" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" +"Лист ткани, который можно задвинуть в закрытое положение, чтобы использовать" +" его как дверь." + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "непрозрачная дверь" @@ -300878,6 +307707,76 @@ msgstr "" msgid "An electric motor." msgstr "Электромотор." +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" +"Электродвигатель, слишком маленький для большинства автомобилей, но идеально" +" подходящий для привода велосипеда." + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" +"Легкий электродвигатель, достаточно мощный для электрического велосипеда или" +" скутера, но, вероятно, не практичный для более тяжелых транспортных " +"средств." + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" +"Электродвигатель средней мощности, подходящий для привода сверхлегких " +"транспортных средств или в составе гибридной газо-электрической трансмиссии." + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" +"Сверхмощный электродвигатель, способный приводить в движение полноразмерный " +"автомобиль или внедорожник только за счет электроэнергии, при условии, что у" +" вас хватит емкости аккумулятора." + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" +"Мощный высокопроизводительный электродвигатель, который можно найти в " +"потребительских электрических спортивных автомобилях со смехотворными, " +"невероятными или подобными гиперболическими настройками ускорения. " +"Потребляет море энергии из батарей." + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" +"Массивный и чрезвычайно мощный электродвигатель, обеспечивающий высокий " +"крутящий момент за счет значительного расхода энергии, хорошо подойдет для " +"гоночного электромобиля." + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" +"Огромный и тяжелый тяговый электродвигатель, достаточно мощный, чтобы " +"двигать поезд." + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -301426,6 +308325,15 @@ msgstr "Проход." msgid "wooden aisle" msgstr "деревянный проход" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "складной деревянный проход" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "Складной проход." + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -301583,6 +308491,10 @@ msgstr "складывающийся деревянный ящик" msgid "wood table" msgstr "деревянный стол" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "складной стол" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "деревянный лодочный корпус" @@ -301654,6 +308566,10 @@ msgstr "Рамка с набором лампочек и органов упра msgid "vehicle-mounted heater" msgstr "автомобильный обогреватель" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "малый автомобильный обогреватель" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "автомобильный кондиционер" @@ -301774,6 +308690,13 @@ msgstr "" "Большой ветряк со стабилизирующими подпорками. Ухудшает аэродинамику " "транспорта." +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" +"Небольшой массив солнечных панелей, которые можно складывать друг с другом." + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -303109,8 +310032,8 @@ msgstr "Усталость" msgid "Fatig" msgstr "Устал" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "Усталость" @@ -304068,7 +310991,7 @@ msgstr "Игра с питомцем (%s) подняла вам настроен #: src/activity_actor.cpp #, c-format msgid "You can't use your %1$s to pry up the nails." -msgstr "" +msgstr "Нельзя использовать это (%1$s) для извлечения гвоздей." #: src/activity_actor.cpp msgid "You open up your kit and shave." @@ -306032,6 +312955,18 @@ msgstr "Свойства" msgid "Coverage:" msgstr "Покрытие:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "Покрытие (ближ. бой):" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "Покрытие (даль. бой):" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "Покрытие (важн. точки):" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "Сковывание:" @@ -306123,11 +313058,13 @@ msgstr "Сортировка брони" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" -"Нажмите [%s] для помощи. Нажмите " -"[%s] для изменения назначенных клавиш." +"[%s] Скрыть спрайт. [%s] " +"Сменить сторону. Нажмите [%s] для помощи. Нажмите " +"[%s] для изменения привязанных клавиш." #: src/armor_layers.cpp msgid "(Innermost)" @@ -306138,6 +313075,12 @@ msgstr "(Внутри)" msgid "Storage (%s)" msgstr "Вместимость (%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "С" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(Снаружи)" @@ -310190,13 +317133,12 @@ msgstr "У NPC (%s) нет сломанных конечностей, к кот #: src/character_attire.cpp msgid "You don't need a tourniquet to stop the bleeding." -msgstr "Вам не нужен артериальный турникет для остановки кровотечения." +msgstr "Вам не нужен жгут-турникет для остановки кровотечения." #: src/character_attire.cpp #, c-format msgid "%s doesn't need a tourniquet to stop the bleeding." -msgstr "" -"%s может обойтись без артериального турникета для остановки кровотечения." +msgstr "%s может обойтись без жгута-турникета для остановки кровотечения." #: src/character_attire.cpp msgid "You don't have enough arms to wear that." @@ -310559,11 +317501,6 @@ msgstr "Применение этого предмета не принесёт msgid "No limb would benefit from it." msgstr "Это не поможет ни одной конечности." -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "Отмена" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "Вы пытаетесь подняться." @@ -310879,6 +317816,14 @@ msgstr "Место для раскопок" msgid "Designate an area to mine." msgstr "Назначьте зону для раскопок." +#: src/clzones.cpp +msgid "Mop tile" +msgstr "Вымыть пол в клетке" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "Назначьте зону для мытья пола." + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "Область разборки машин" @@ -313189,10 +320134,6 @@ msgstr "основной навык, необходимый msgid "any skill used to craft" msgstr "любой навык, необходимый для изготовления" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "кулинария" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "качество, необходимое для изготовления" @@ -313750,6 +320691,14 @@ msgstr "Вывести магическую информацию НПС в ко msgid "Test weather" msgstr "Тест погоды" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "Записать global effect_on_condition(s) в eocs.output" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "Записать global vars(s) в var_list.output" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "Тест списка дополнительных локаций" @@ -314183,6 +321132,11 @@ msgstr "Жажда: %d %s" msgid "Fatigue: %d %s" msgstr "Усталость: %d %s" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "Усталость: %d %s" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "Запасено ккал:" @@ -314271,6 +321225,11 @@ msgstr "На сколько установить усталость? Текущ msgid "Set sleep deprivation to? Currently: %d" msgstr "На какое значение установить недостаток сна? Сейчас: %d" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "Сбросить усталость? Текущая: %d" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -315039,7 +321998,7 @@ msgstr "Насколько сильно ранить себя? ОЗ: %s" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "Добавить кровотечение, длительность в минутах, совпадает с силой:" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "Этот исполняемый файл был скомпилирован без поддержки тайлов." @@ -315063,15 +322022,6 @@ msgstr "" "Выйти без сохранения? Возможно будут проблемы с исчезновением или " "клонированием предметов и транспорта!" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "Снимок экрана успешно сохранён в: %s" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "Произошла ошибка при сохранении скриншота." - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "Отчет записан в файл debug.log" @@ -318757,6 +325707,10 @@ msgstr "Торговля" msgid "You swap places with %s." msgstr "Вы и %s поменялись местами." +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "Вы не можете меняться местами, когда тащите что-то." + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -319053,6 +326007,15 @@ msgstr "Здесь нельзя пройти." msgid "Nickname:" msgstr "Прозвище:" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "Снимок экрана успешно сохранён в: %s" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "Произошла ошибка при сохранении скриншота." + #: src/game.cpp src/init.cpp msgid "Items" msgstr "Предметы" @@ -321464,10 +328427,6 @@ msgstr "Нельзя спать верхом." msgid "Are you sure you want to sleep?" msgstr "Вы уверены, что хотите лечь спать?" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "Да." - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "Да, и сохранить игру перед сном." @@ -321630,6 +328589,14 @@ msgstr "" "Авто-разборка всего в обозначенной зоне. Инструменты применяются " "автоматически." +#: src/handle_action.cpp +msgid "Mop area" +msgstr "Вымыть пол в зоне" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "Вымыть пол шваброй." + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -321992,10 +328959,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "Что сделать с жидкостью (%s)?" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "Заправить бионику" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "Употребить" @@ -322542,16 +329505,6 @@ msgstr "Вы пытаетесь взломать замок (%1$s) при пом msgid "This bulletin board is not inside a camp" msgstr "Доска объявлений находится не в лагере" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" -"Это строго вертикальная стена. На ней находятся странные отверстия,\n" -"уходящие глубоко внутрь камня. Эти отверстия по форме напоминают\n" -"человека, но с длинными и растянутыми конечностями." - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "Снять окаменелый глаз с пьедестала?" @@ -326041,6 +332994,21 @@ msgstr "Когда заполнено:" msgid "%s:" msgstr "%s:" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "(Б):" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "(Д):" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "(В):" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "Торс :" @@ -328834,6 +335802,8 @@ msgstr "Вы не можете поддеть это." #, c-format msgid "You can't get sufficient leverage to open that with your %1$s." msgstr "" +"Вы не сможете создать достаточное усилие и открыть это с помощью вашего " +"инструмента (%1$s)." #: src/iuse.cpp msgid "Till soil where?" @@ -329250,13 +336220,17 @@ msgid "BEES!" msgstr "ПЧЁЛЫ!" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "Установить таймер (0 для отмены)?" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "Установить таймер на сколько секунд (0 для отмены)?" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "Вы установили таймер на %d." +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "Вы установили таймер на %d секунду." +msgstr[1] "Вы установили таймер на %d секунды." +msgstr[2] "Вы установили таймер на %d секунд." +msgstr[3] "Вы установили таймер на %d секунды." #: src/iuse.cpp msgid "Tick!" @@ -330019,9 +336993,8 @@ msgid "Your vision is fine already." msgstr "Сейчас с вашим зрением всё нормально." #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" -msgstr "Вы слышите «%s»" +msgid "You press a button on the doll to make it talk." +msgstr "Вы жмёте кнопку, чтобы кукла заговорила." #: src/iuse.cpp msgid "You need a mechanics skill of 2 to use this repair kit." @@ -330248,38 +337221,6 @@ msgstr "Раскодировать карту памяти (плохой нав msgid "Wasted time. These pictures do not provoke your senses." msgstr "Пустая трата времени, эти фотографии ничего для вас не значат." -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "Кажется, у вас была похожая собака…" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "Ха-ха! Смешное фото котика." - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "Превосходное изображение природы." - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "Фото еды… Ваш желудок урчит!" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "Несколько очень интересных фото путешествий." - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "Изображения с концерта популярной группы." - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "Изображения чьего-то шикарного дома." - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "Вы чувствуете ностальгию, глядя на это фото." - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -331559,88 +338500,31 @@ msgstr "Решка!" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "Играть в игру: %s?" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "Вы начали играть." - -#: src/iuse.cpp -msgid "It is certain." -msgstr "Это точно." +msgid "Play the %s with your friends?" +msgstr "Поиграть в игру (%s) с вашими друзьями?" #: src/iuse.cpp -msgid "It is decidedly so." -msgstr "Это решительно так." - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "Без сомнений." - -#: src/iuse.cpp -msgid "Yes - definitely." -msgstr "Да — однозначно." - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "Можете рассчитывать на это." - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "Насколько я вижу, да." - -#: src/iuse.cpp -msgid "Most likely." -msgstr "Скорее всего." - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "Перспективы хорошие." - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "Знаки говорят что да." - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "Ответ туманный, попробуйте еще раз." - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "Спроси снова чуть позже." - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "Лучше не говорить тебе сейчас." - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "Не могу предугадать сейчас." - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "Сконцентрируйся и спроси снова." - -#: src/iuse.cpp -msgid "Don't count on it." -msgstr "Не рассчитывай на это." +#, c-format +msgid "Play the %s with your friend?" +msgstr "Поиграть в игру (%s) с вашим другом?" #: src/iuse.cpp -msgid "My reply is no." -msgstr "Мой ответ — нет." +#, c-format +msgid "You and your %d friends start playing." +msgstr "Вы и ваши друзья (%d) начинаете играть." #: src/iuse.cpp -msgid "My sources say no." -msgstr "Мои источники утверждают, что нет." +msgid "You and your friend start playing." +msgstr "Вы и ваш друг начинаете играть." #: src/iuse.cpp -msgid "Outlook not so good." -msgstr "Перспективы не очень хорошие." +msgid "You start playing." +msgstr "Вы начали играть." #: src/iuse.cpp -msgid "Very doubtful." -msgstr "Очень сомнительно." +#, c-format +msgid "Play a game with the %s?" +msgstr "Играть в игру: %s?" #: src/iuse.cpp #, c-format @@ -334544,8 +341428,20 @@ msgid "%s: %d" msgstr "%s: %d" #: src/martialarts.cpp -msgid "Requires: " -msgstr "Требования: " +msgid "Requires (all): " +msgstr "Требует (все): " + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "Требует (любые): " + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "Запрещено (все): " + +#: src/martialarts.cpp +msgid "Forbidden (any): " +msgstr "Запрещено (любые): " #: src/martialarts.cpp msgid "activate" @@ -339746,6 +346642,11 @@ msgstr "%s, снять сбрую" msgid "Manage your friendship with %s" msgstr "Установить дружбу: %s" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "Поговорить с: %s" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -340616,7 +347517,7 @@ msgstr "Вы начали плести паутину из своих паути #: src/mutation.cpp msgid "You start leaving a trail of sludge as you go." -msgstr "" +msgstr "Вы начинаете оставлять за собой след из слизи." #: src/mutation.cpp msgid "You focus, but are too hemmed in to birth a new slimespring!" @@ -340631,22 +347532,6 @@ msgstr "" "Вы концентрируетесь, испытываете приятное ощущение разделения, и на свет " "появляется новый кусочек слизи!" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" -"ух ты! ты выглядишь прямо как я! мы должны держаться ближе друг к другу!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "давай же, большой я, пойдём!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "мы — команда, мы справимся!" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "Вы можете делать это только в лесной зоне." @@ -340922,11 +347807,20 @@ msgstr "Изучение" msgid "%s to activate mutation, " msgstr "%s для активации мутации, " +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "Скрыто" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "%s для переназначения клавиши, " +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "%s для переключения видимости." + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -342716,11 +349610,6 @@ msgstr "Вы не можете говорить без лица!" msgid "What do you want to do?" msgstr "Что вы хотите сделать?" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "Поговорить с: %s" - #: src/npctalk.cpp msgid "Talk to…" msgstr "Поговорить с…" @@ -343527,6 +350416,17 @@ msgstr "" "Если «да», позволяет автоматически использовать снаряжённые кирки и отбойные" " молотки в руках, двигаясь в направлении местности, которую можно рыть." +#: src/options.cpp +msgid "Auto mopping" +msgstr "Авто-мытьё пола" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" +"Если включено, окружающие клетки автоматически моются с помощью швабры в " +"руках." + #: src/options.cpp msgid "Auto foraging" msgstr "Авто-собирательство" @@ -343534,17 +350434,23 @@ msgstr "Авто-собирательство" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" "Действие при включённом «Авто-собирательстве». Кусты: Обыскивать только " -"кусты. — Деревья: Обыскивать только деревья. — Всё: Обыскивать кусты, " -"деревья и всё остальное, включая цветы, рогоз и пр." +"кусты. — Деревья: Обыскивать только деревья. — Урожай: Собирать только " +"урожай. — Всё: Обыскивать кусты, деревья и всё остальное, включая цветы, " +"рогоз и пр." #: src/options.cpp msgid "Bushes" msgstr "Кусты" +#: src/options.cpp +msgid "Crops" +msgstr "Урожай" + #: src/options.cpp msgid "Everything" msgstr "Всё" @@ -346162,20 +353068,6 @@ msgstr "Зона:" msgid "# Unexplored" msgstr "# Неисследованно" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "мест.: %s" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "тип_мест: %s" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "аргументы ещё не выставлены" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "Расстояние до активного задания:" @@ -346530,6 +353422,11 @@ msgstr "Закат" msgid "Night" msgstr "Ночь" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s, день %d" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "???" @@ -346578,6 +353475,10 @@ msgstr "Очень холодно!" msgid "Freezing!" msgstr "Замерзание!" +#: src/panels.cpp +msgid "SAFE" +msgstr "БЕЗОП." + #: src/panels.cpp msgid "On" msgstr "Вкл" @@ -349062,6 +355963,16 @@ msgstr "[%s] скрыть линии огня" msgid "[%s] Show lines of fire" msgstr "[%s] показать линии огня" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "Растояние: %d" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "Дистанция: %d/%d" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -350097,11 +357008,11 @@ msgstr "Вы падаете!" #: src/suffer.cpp msgid "Your tourniquet hurts you." -msgstr "Ваш артериальный турникет причиняет вам урон." +msgstr "Жгут-турникет причиняет вам боль." #: src/suffer.cpp msgid " is hurting from the tourniquet." -msgstr " чувствует урон из-за артериального турникета." +msgstr " чувствует урон из-за жгута-турникета." #: src/suffer.cpp #, c-format @@ -353564,6 +360475,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "Вы очищаете содержимое ёмкости (%2$s) в транспорте (%1$s)" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "Вы подробно записываете слабые места существа." + #: src/weather.cpp msgid "Monday" msgstr "Понедельник" diff --git a/lang/po/sr.po b/lang/po/sr.po index a8ec64866ce9d..ff25cf92e8d2c 100644 --- a/lang/po/sr.po +++ b/lang/po/sr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: D. Vultures , 2020\n" "Language-Team: Serbian (https://www.transifex.com/cataclysm-dda-translators/teams/2217/sr/)\n" @@ -25,7 +25,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -39,7 +39,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "" @@ -51,7 +51,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -65,7 +65,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -79,7 +79,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "" @@ -91,7 +91,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "" @@ -117,7 +117,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "" @@ -129,7 +129,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -155,7 +155,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py 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." @@ -192,7 +192,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "" @@ -217,7 +217,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "Vrlo izdržljiva samolepljiva traka neograničenih metoda upotrebe." @@ -284,8 +284,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -355,7 +355,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "" @@ -405,7 +405,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -432,7 +432,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -447,7 +447,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -459,7 +459,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -471,7 +471,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -484,7 +484,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -496,7 +496,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -508,7 +508,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -522,7 +522,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Abrazivan usitnjeni oksidant." @@ -534,7 +534,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Kaustična soda u prahu." @@ -633,7 +633,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -647,7 +647,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "Medicinska traka; kao hanzaplast, samo bez higijenske hartije." @@ -660,7 +660,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "TEKST ISPISAN USLED GREŠKE." @@ -672,7 +672,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -687,7 +687,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -717,7 +717,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -815,7 +815,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -829,7 +829,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "" @@ -886,7 +886,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -902,7 +902,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -928,7 +928,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -940,7 +940,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "" @@ -952,7 +952,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -988,7 +988,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -1000,7 +1000,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -1013,7 +1013,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1028,7 +1028,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1042,7 +1042,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1056,7 +1056,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1070,7 +1070,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1099,7 +1099,7 @@ msgstr[0] "sumpor" msgstr[1] "sumpora" msgstr[2] "sumpora" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1127,7 +1127,7 @@ msgstr[0] "cement" msgstr[1] "cementa" msgstr[2] "cementa" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1145,7 +1145,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1157,7 +1157,7 @@ msgstr[0] "krečnjak" msgstr[1] "krečnjaka" msgstr[2] "krečnjaka" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1175,7 +1175,7 @@ msgstr[0] "živi kreč" msgstr[1] "živa kreča" msgstr[2] "živih krečeva" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1192,7 +1192,7 @@ msgstr[0] "pesak" msgstr[1] "peska" msgstr[2] "pesaka" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1208,7 +1208,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1222,7 +1222,7 @@ msgstr[0] "prašak aluminijuma" msgstr[1] "praška aluminijuma" msgstr[2] "prašaka aluminijuma" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1238,7 +1238,7 @@ msgstr[0] "prašak cinka" msgstr[1] "praška cinka" msgstr[2] "prašaka cinka" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1254,7 +1254,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1268,7 +1268,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1283,7 +1283,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1299,7 +1299,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1314,7 +1314,7 @@ msgstr[0] "aceton" msgstr[1] "acetona" msgstr[2] "acetona" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1329,7 +1329,7 @@ msgstr[0] "hrom-oksid" msgstr[1] "hrom-oksida" msgstr[2] "hrom-oksida" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1346,7 +1346,7 @@ msgstr[0] "kalcijum karbid" msgstr[1] "kalcijum karbida" msgstr[2] "kalcijum karbida" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1363,7 +1363,7 @@ msgstr[0] "hepo-kocka" msgstr[1] "hepo-kocke" msgstr[2] "hepo-kocki" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1380,7 +1380,7 @@ msgstr[0] "vodonik-peroksid (koncent.)" msgstr[1] "vodonik-peroksida (koncent.)" msgstr[2] "vodonik-peroksida (koncent.)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1400,7 +1400,7 @@ msgstr[0] "amonijum-nitrat" msgstr[1] "amonijum-nitrata" msgstr[2] "amonijum-nitrata" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1416,7 +1416,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1432,7 +1432,7 @@ msgstr[0] "šalitra" msgstr[1] "šalitre" msgstr[2] "šalitri" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1450,7 +1450,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1464,7 +1464,7 @@ msgstr[0] "aluminijum-sulfat" msgstr[1] "aluminijum-sulfata" msgstr[2] "aluminijum-sulfat" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1488,7 +1488,7 @@ msgstr[0] "sirćetna kiselina" msgstr[1] "sirćetne kiseline" msgstr[2] "sirćetnih kiselina" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1504,7 +1504,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1520,7 +1520,7 @@ msgstr[0] "alu-gvožđe" msgstr[1] "alu-gvožđa" msgstr[2] "alu-gvožđa" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1540,7 +1540,7 @@ msgstr[0] "ANFO" msgstr[1] "ANFO" msgstr[2] "ANFO" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1556,7 +1556,7 @@ msgstr[0] "crni barut" msgstr[1] "crna baruta" msgstr[2] "crnih baruta" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1572,7 +1572,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1587,7 +1587,7 @@ msgstr[0] "heksogen" msgstr[1] "heksogena" msgstr[2] "heksogena" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1602,7 +1602,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1617,7 +1617,7 @@ msgstr[0] "HMTD" msgstr[1] "HMTD" msgstr[2] "HMTD" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1632,7 +1632,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1647,7 +1647,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1663,7 +1663,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "" @@ -1675,7 +1675,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1741,7 +1741,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1757,7 +1757,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1773,7 +1773,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1788,7 +1788,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1802,7 +1802,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1816,7 +1816,7 @@ msgstr[0] "etanol" msgstr[1] "etanola" msgstr[2] "etanol" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1846,7 +1846,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1861,7 +1861,7 @@ msgstr[0] "dizel" msgstr[1] "dizela" msgstr[2] "dizela" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1876,7 +1876,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1890,7 +1890,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -1902,7 +1902,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1917,7 +1917,7 @@ msgstr[0] "benzin" msgstr[1] "benzina" msgstr[2] "benzina" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1933,7 +1933,7 @@ msgstr[0] "petrolej" msgstr[1] "petroleja" msgstr[2] "petroleja" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "Manje agresivni derivat nafte, petrolej; služi kao gorivo u lampama." @@ -1945,7 +1945,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "" @@ -1957,7 +1957,7 @@ msgstr[0] "napalm" msgstr[1] "napalma" msgstr[2] "napalma" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -1975,7 +1975,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -1990,7 +1990,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2032,7 +2032,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "" @@ -2094,7 +2094,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2123,7 +2123,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2174,7 +2174,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2208,7 +2208,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2259,7 +2259,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2277,7 +2277,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2294,7 +2294,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2328,7 +2328,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2343,7 +2343,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2358,7 +2358,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2373,7 +2373,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2416,7 +2416,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2434,7 +2434,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2451,7 +2451,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2469,7 +2469,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2488,7 +2488,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2507,7 +2507,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2563,7 +2563,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2620,7 +2620,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2638,7 +2638,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2653,7 +2653,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2668,7 +2668,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2781,7 +2781,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2796,7 +2796,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2811,7 +2811,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2867,7 +2867,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2895,7 +2895,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2910,7 +2910,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2953,7 +2953,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2967,7 +2967,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3026,7 +3026,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3054,7 +3054,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3103,7 +3103,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3119,7 +3119,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3135,7 +3135,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3186,7 +3186,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3208,7 +3208,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3223,7 +3223,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3273,7 +3273,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3288,7 +3288,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3303,7 +3303,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3318,7 +3318,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3333,8 +3333,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3349,8 +3349,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3396,8 +3396,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3412,8 +3412,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3478,7 +3478,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3492,7 +3492,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3525,7 +3525,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3540,8 +3540,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3566,8 +3566,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3602,7 +3602,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3621,7 +3621,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3694,7 +3694,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3708,7 +3708,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3723,7 +3723,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3773,7 +3773,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3804,7 +3804,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3834,7 +3834,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3849,7 +3849,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3880,7 +3880,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3896,7 +3896,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3912,7 +3912,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3942,7 +3942,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3957,8 +3957,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3981,7 +3981,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3995,7 +3995,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4026,7 +4026,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4047,7 +4047,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4062,7 +4062,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4079,7 +4079,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4093,7 +4093,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4109,7 +4109,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -4129,7 +4129,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4144,7 +4144,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -4161,7 +4161,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -4225,7 +4225,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -4245,7 +4245,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -4261,7 +4261,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -4278,7 +4278,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -4308,7 +4308,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4326,8 +4326,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4421,7 +4421,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -4435,7 +4435,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4465,7 +4465,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4481,7 +4481,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4497,7 +4497,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4534,7 +4534,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4565,7 +4565,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4594,7 +4594,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4673,7 +4673,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4687,7 +4687,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4703,7 +4703,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4718,7 +4718,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4735,7 +4735,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4754,7 +4754,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4770,7 +4770,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4788,7 +4788,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4804,7 +4804,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4818,7 +4818,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4832,7 +4832,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4888,7 +4888,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4903,7 +4903,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4918,7 +4918,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4948,7 +4948,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4966,7 +4966,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4985,7 +4985,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5004,7 +5004,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -5032,7 +5032,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -5046,7 +5046,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -5062,7 +5062,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -5078,7 +5078,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -5197,7 +5197,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -5328,7 +5328,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -5343,7 +5343,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -5355,7 +5355,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -5414,8 +5414,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5578,7 +5578,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5592,7 +5592,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "Nekakve fungalne semenke." @@ -6483,7 +6483,7 @@ msgstr[0] "crvena farba" msgstr[1] "crvene farbe" msgstr[2] "crvenih farbi" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Kantica crvene farbe." @@ -6495,7 +6495,7 @@ msgstr[0] "plava farba" msgstr[1] "plave farbe" msgstr[2] "plavih farbi" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Kantica plave farbe." @@ -6507,7 +6507,7 @@ msgstr[0] "bela farba" msgstr[1] "bele farbe" msgstr[2] "belih farbi" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Kantica bele farbe." @@ -6519,7 +6519,7 @@ msgstr[0] "zelena farba" msgstr[1] "zelene farbe" msgstr[2] "zelenih farbi" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Kantica zelene farbe." @@ -6531,7 +6531,7 @@ msgstr[0] "ljubičasta farba" msgstr[1] "ljubičaste farbe" msgstr[2] "ljubičastih farbi" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Kantica ljubičaste farbe." @@ -6543,7 +6543,7 @@ msgstr[0] "žuta farba" msgstr[1] "žute farbe" msgstr[2] "žutih farbi" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Kantica žute farbe." @@ -6617,7 +6617,7 @@ msgstr[0] "bizmut" msgstr[1] "bizmuta" msgstr[2] "bizmuta" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -6629,8 +6629,8 @@ msgstr[0] "zlato" msgstr[1] "zlata" msgstr[2] "zlata" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -6651,7 +6651,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6667,7 +6667,7 @@ msgstr[0] "olovo" msgstr[1] "olova" msgstr[2] "olova" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6681,7 +6681,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6695,7 +6695,7 @@ msgstr[0] "srebro" msgstr[1] "srebra" msgstr[2] "srebra" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -6761,7 +6761,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -6775,7 +6775,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -6815,7 +6815,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -6872,7 +6872,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -6887,7 +6887,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -6901,7 +6901,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -6916,7 +6916,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -6930,7 +6930,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -6946,7 +6946,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -6960,7 +6960,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -6974,7 +6974,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -6988,7 +6988,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -7002,7 +7002,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -7030,7 +7030,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -7057,7 +7057,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -7084,7 +7084,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -7127,7 +7127,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -7156,7 +7156,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -7186,7 +7186,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -7213,7 +7213,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -7314,7 +7314,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -7344,7 +7344,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -7360,7 +7360,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -7376,7 +7376,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -7393,7 +7393,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -7409,7 +7409,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -7427,7 +7427,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -7441,7 +7441,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -7458,7 +7458,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -7472,7 +7472,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -7487,7 +7487,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -7502,7 +7502,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -7516,7 +7516,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -7672,7 +7672,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7688,7 +7688,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7732,7 +7732,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -7749,7 +7749,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -7794,7 +7794,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7811,7 +7811,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7856,7 +7856,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7873,7 +7873,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7918,7 +7918,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -7931,7 +7931,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -7945,7 +7945,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7962,7 +7962,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7992,7 +7992,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -8006,7 +8006,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -8021,7 +8021,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -8050,7 +8050,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -8064,7 +8064,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -8079,7 +8079,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -8136,7 +8136,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -8194,7 +8194,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -8251,7 +8251,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -8282,7 +8282,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -8294,7 +8294,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -8335,7 +8335,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -8353,7 +8353,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -8879,7 +8879,7 @@ msgstr[2] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -8895,7 +8895,7 @@ msgstr "" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -8933,7 +8933,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -9876,40 +9876,20 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" +msgid "tool belt" +msgid_plural "tool belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -10074,27 +10054,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -10114,48 +10073,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -10168,28 +10085,6 @@ msgstr[2] "" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -10210,28 +10105,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -10309,21 +10182,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -10358,42 +10216,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -11361,27 +11183,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -11434,7 +11235,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -11621,7 +11422,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -11794,20 +11595,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -11864,20 +11651,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -11897,7 +11670,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -11953,20 +11726,6 @@ msgstr[2] "" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -12230,20 +11989,6 @@ msgstr[2] "" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -12646,27 +12391,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -12686,54 +12410,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -12804,69 +12480,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -12911,20 +12524,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -13056,40 +12655,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -13890,7 +13455,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -14008,34 +13573,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -14093,34 +13630,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -14335,38 +13844,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -14420,83 +13897,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -14509,60 +13909,6 @@ msgstr[2] "" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -15003,9 +14349,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -15017,9 +14363,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -15031,9 +14377,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -15045,9 +14391,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -15059,9 +14405,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -15073,9 +14419,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -15087,9 +14433,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -15101,9 +14447,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -15115,9 +14461,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -15129,9 +14475,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -15143,9 +14489,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -15157,9 +14503,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -15171,9 +14517,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -15185,9 +14531,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -19062,7 +18408,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -19105,7 +18451,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -19119,7 +18465,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -19135,7 +18481,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -19322,34 +18668,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -19362,34 +18680,6 @@ msgstr[2] "" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" @@ -19397,7 +18687,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -19411,7 +18701,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -19440,7 +18730,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "" @@ -19452,7 +18742,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -19478,7 +18768,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "" @@ -19490,7 +18780,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "" @@ -19502,7 +18792,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "" @@ -19514,7 +18804,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "" @@ -19548,7 +18838,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -19580,7 +18870,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -19662,7 +18952,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "" @@ -19674,15 +18964,15 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -19716,7 +19006,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -19728,7 +19018,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -19740,7 +19030,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "" @@ -19752,7 +19042,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -19764,7 +19054,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -19778,7 +19068,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "" @@ -19790,7 +19080,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -19804,7 +19094,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -19816,7 +19106,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "" @@ -19828,7 +19118,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -19840,7 +19130,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -19905,7 +19195,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -19938,7 +19228,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -21158,62 +20448,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -21685,35 +20919,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -21764,8 +20969,8 @@ msgstr[2] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -21780,20 +20985,6 @@ msgstr[2] "" msgid "An ornamental suit of Japanese samurai armor." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -21939,74 +21130,44 @@ msgstr[1] "" msgstr[2] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for winter survivor suit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -22027,43 +21188,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -22132,20 +21256,6 @@ msgid "" "experience." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -22156,8 +21266,8 @@ msgstr[2] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" #: lang/json/ARMOR_from_json.py @@ -22174,44 +21284,6 @@ msgid "" "Light and very comfortable." msgstr "" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -22289,48 +21361,6 @@ msgstr[2] "" msgid "A neoprene hood, commonly worn by divers." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -22448,7 +21478,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -22633,7 +21663,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -22697,27 +21727,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -23003,7 +22012,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -23092,7 +22101,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -23413,7 +22422,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -23425,7 +22434,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -23437,7 +22446,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -23450,7 +22459,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -23464,7 +22473,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -23477,7 +22486,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -23504,7 +22513,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "" @@ -23674,7 +22683,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -23743,7 +22752,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -23770,7 +22779,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -23807,2225 +22816,3227 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sheet" -msgid_plural "sheets" +msgid "nomad gear" +msgid_plural "nomad gears" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for sheet +#. ~ Description for nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" -" a bunch of rags." +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "blanket" -msgid_plural "blankets" +msgid "light nomad gear" +msgid_plural "light nomad gears" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for blanket +#. ~ Description for light nomad gear #: lang/json/ARMOR_from_json.py -msgid "Hiding under here will not protect you from the monsters." +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "down-filled blanket" -msgid_plural "down-filled blankets" +msgid "scavenger gear" +msgid_plural "scavenger gears" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for down-filled blanket +#. ~ Description for scavenger gear #: lang/json/ARMOR_from_json.py msgid "" -"Hiding under here will not protect you from the monsters, but it'll keep you" -" warm." +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "fur blanket" -msgid_plural "fur blankets" +msgid "light survivor suit" +msgid_plural "light survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for fur blanket +#. ~ Description for light survivor suit #: lang/json/ARMOR_from_json.py -msgid "A heavy fur blanket that covers most of your body." +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "quilt" -msgid_plural "quilts" +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for quilt -#: lang/json/ARMOR_from_json.py -msgid "" -"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " -"cozy!" -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "patchwork quilt" -msgid_plural "patchwork quilts" +msgid "survivor suit" +msgid_plural "survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for patchwork quilt +#. ~ Description for survivor suit #: lang/json/ARMOR_from_json.py -msgid "A huge, patchwork wool quilt. Very, very warm." +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sleeping bag" -msgid_plural "sleeping bags" +msgid "XL survivor suit" +msgid_plural "XL survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for sleeping bag. -#: lang/json/ARMOR_from_json.py -msgid "You roll up the sleeping bag, preparing it for transport." -msgstr "" - -#. ~ Description for sleeping bag +#. ~ Description for XL survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A large sleeping bag that covers you head to toe. This one is medium " -"weight." +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cestus" -msgid_plural "cestuses" +msgid "winter survivor suit" +msgid_plural "winter survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for cestus +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A leather hand and arm wrap incorporating metal plates over the knuckles to " -"improve punching power and defence." +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of studded gloves" -msgid_plural "pairs of studded gloves" +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of studded gloves +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "A pair of gloves with studded metal knuckles." +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." msgstr "" +#. ~ Description for XL winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "impact knuckles" -msgid_plural "impact knuckles" +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for survivor wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of thick steel plates covering your proximal phalange. They are " -"strapped to your hands with metal braces." +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "skewer knuckles" -msgid_plural "skewer knuckles" +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for pair of light survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A single sturdy spike protrudes 5cm from the back of your hand. They are " -"strapped to your hands with metal braces." +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "telescoping umbrella" -msgid_plural "telescoping umbrellas" +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for telescoping umbrella -#: lang/json/ARMOR_from_json.py -msgid "" -"A telescoping umbrella which collapses down for easy storage, useful for " -"keeping dry when wielded." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "bag of holding" -msgid_plural "bags of holding" +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for bag of holding +#. ~ Description for pair of survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A sleek, unfathomably-complicated machine covered in dozens of blinking " -"lights, worn on the back by sturdy faux-leather straps. An electrode " -"dangles from the back, attaching to your forehead. How it operates without " -"annihilating spacetime isn't quite clear, but a localized portal allows " -"things to be stored in an extradimensional space." +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium vest" -msgid_plural "titanium vests" +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for titanium vest +#. ~ Description for pair of XL survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight armor vest made of pieces of titanium sewn together, with " -"cloth padding for comfort. Brittle against blunt force, but highly " -"resistant to cuts and corrosion." +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sentinel-lx cloak" -msgid_plural "sentinel-lx cloaks" +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for sentinel-lx cloak +#. ~ Description for pair of faux fur winter survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " -"unnatural shadow. Made from woven graphene, its lightweight and resistant, " -"but cannot be repaired" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL jeans" -msgid_plural "pairs of XL jeans" +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL jeans +#. ~ Description for pair of XL faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue jeans with two deep pockets." +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work pants" -msgid_plural "pairs of XL work pants" +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. ~ Description for pair of winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue work pants." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "A pair of XL gray work pants." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "A pair of XL light-blue work pants." -msgstr "" +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lang/json/ARMOR_from_json.py -msgid "XL work t-shirt" -msgid_plural "XL work t-shirts" +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL work t-shirt +#. ~ Description for pair of survivor wetsuit boots #: lang/json/ARMOR_from_json.py -msgid "A gray XL work t-shirt with a small front pocket." +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "An XL blue work t-shirt with a small front pocket." -msgstr "" +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +#. ~ Description for pair of light survivor gloves #: lang/json/ARMOR_from_json.py -msgid "An XL gray work t-shirt with a small front pocket." +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "An XL light-blue work t-shirt with a small front pocket." -msgstr "" +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lang/json/ARMOR_from_json.py -msgid "Uplifted SWAT armor" -msgid_plural "Uplifted SWAT armors" +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Uplifted SWAT armor +#. ~ Description for pair of fingerless light survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An extra large suit of black bulletproof armor with lots of pockets. The " -"word SWAT is emblazoned across the back. Specifically designed for Uplifted" -" officers such as Mastodons." +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "empty XL ballistic vest" -msgid_plural "empty XL ballistic vests" +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for empty XL ballistic vest -#: lang/json/ARMOR_from_json.py -msgid "" -"Oversized ballistic armor without any armor inserts. The soft armor plate " -"carrier is still protective but it won't stop high energy projectiles." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL ESAPI ballistic vest" -msgid_plural "XL ESAPI ballistic vests" +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL ESAPI ballistic vest +#. ~ Description for pair of fingerless survivor gloves #: lang/json/ARMOR_from_json.py -msgid "Oversized ballistic armor with ESAPI ceramic armor plates." +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL combat boots" -msgid_plural "pair of XL combat boots" +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} -#: lang/json/ARMOR_from_json.py -msgid "Modern oversized reinforced tactical combat boots. Very durable." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of XL tactical gloves" -msgid_plural "pair of XL tactical gloves" +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " -"police and military units." +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of Killophant gloves" -msgid_plural "pair of Killophant gloves" +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of XL survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of reinforced Kevlar tactical gloves, specifically designed to " -"accommodate three-fingered Killophants. Thinner than regular oversized " -"tactical gloves." +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leather belt" -msgid_plural "XL leather belts" +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL leather belt +#. ~ Description for pair of winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL leather belt. Useful for making your pair of pants fit if you need " -"really big pants." +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL police duty belt" -msgid_plural "XL police duty belts" +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL police duty belt -#: lang/json/ARMOR_from_json.py -msgid "" -"An XL black leather belt used by extremely large uplifted police officers. " -"It has several pouches and a holder for a baton." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL tactical full helmet" -msgid_plural "XL tactical full helmets" +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL tactical full helmet +#. ~ Description for pair of faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing massive black helmet that covers your entire face and " -"neck, providing excellent protection from all sorts of damage." +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leg ammo pouch" -msgid_plural "XL leg ammo pouches" +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL leg ammo pouch +#. ~ Description for pair of XL faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" -" two magazines close at hand." +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "crew jumpsuit" -msgid_plural "crew jumpsuits" +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for crew jumpsuit +#. ~ Description for pair of survivor wetsuit gloves #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " -"some freight hauling association or another. This one is a standard design " -"favored by spacers, with ample, easy access pockets." +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "communications cap" -msgid_plural "communications caps" +msgid "nomad cowl" +msgid_plural "nomad cowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for communications cap +#. ~ Description for nomad cowl #: lang/json/ARMOR_from_json.py msgid "" -"A padded cotton cap built around an augmented reality headset. During " -"normal operation it would provide visual information about a ship subsystems" -" and a communications link with the rest of the crew, but severed from a " -"spaceship, only their hearing protection function retains any utility." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "HERC rig" -msgid_plural "HERC rigs" +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for HERC rig +#. ~ Description for nomad cowl XL #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " -"about in zero-g, Mars, the bottom of the Pacific, or other generally " -"inhospitable environments. It has several deep pockets, and two mounting " -"points for pressurized canisters or other large magazines." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cecalia wetsuit" -msgid_plural "cecalia wetsuits" +msgid "survivor hood" +msgid_plural "survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for cecalia wetsuit +#. ~ Description for survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " -"explorer suit with no head or tentacle protection." +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "combat wetsuit" -msgid_plural "combat wetsuits" +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for combat wetsuit +#. ~ Description for winter survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " -"will provide some level of protection for deep dwellers." +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "nanomesh vest" -msgid_plural "nanomesh vests" +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for nanomesh vest +#. ~ Description for XL winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight nanomesh vest designed to face down many of the perils of " -"space travel. These vests are mass produced and often stacked in starship " -"lockers." +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "vacuum cast cuirass" -msgid_plural "vacuum cast cuirasses" +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for vacuum cast cuirass +#. ~ Description for XL survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"This piece of armor harkens back to renaissance designs. It differs in that" -" it is cast as a single piece in deep space installations where conditions " -"can be controlled absolutely." +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "carbide raider's helmet" -msgid_plural "carbide raider's helmets" +msgid "light survivor hood" +msgid_plural "light survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for carbide raider's helmet +#. ~ Description for light survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"This helmet is designed for the individual that is worried about catching " -"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " -"environmental protection features, but it just might stop even the largest " -"of ballistic rounds." +msgid "A customized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "UICAS Point of Impact helmet" -msgid_plural "UICAS Point of Impact helmets" +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for UICAS Point of Impact helmet +#. ~ Description for XL light survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight black helmet that provides excellent protection from all sorts" -" of damage, unless it's airborne. UICAS makes the point of designing all " -"headgear whenever possible with clear faceplates, in order to provide a " -"human touch to all interactions." +"A customized and oversized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cold resistance cream" -msgid_plural "cold resistance creams" +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for cold resistance cream +#. ~ Description for winter faux fur survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"A thick layer of something that smells worse than walrus fat. But it keeps " -"you warm." +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "heat retention xtreme cream" -msgid_plural "heat retention xtreme creams" +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for heat retention xtreme cream +#. ~ Description for XL faux fur winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"The last word in cold snap protection designed to give short term protection" -" in the event of a suit breach in vacuum." +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium watch" -msgid_plural "titanium watches" +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for titanium watch +#. ~ Description for survivor wetsuit hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine watch made out of titanium. It is durable, light-weight " -"and water-resistant, an excellent watch to have in a hostile environment." +"A customized armored neoprene and Kevlar hood, very strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium ring" -msgid_plural "titanium rings" +msgid "scavenger cowl" +msgid_plural "scavenger cowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for titanium ring +#. ~ Description for scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine ring made out of titanium. Made in a variety of styles " -"and finishes, they're valued for their durability." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "hazardous environment suit" -msgid_plural "hazardous environment suits" +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for hazardous environment suit +#. ~ Description for XL scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"Developed for the exploration of alien planes, the lightweight, orange-black" -" HEV suit covers everything below the neck. While it possesses only modest " -"physical protection, it provides excellent protection from most " -"environmental hazards. A hatch in the front opens to provide a small amount" -" of storage." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "psychrophile handling gloves" -msgid_plural "psychrophile handling gloves" +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"These gloves are designed for handling organisms that live in extremely cold" -" temperatures. They can also be used to freeze your foes to death." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Engineering Suit" -msgid_plural "CRIT Engineering Suits" +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT Engineering Suit +#. ~ Description for XL light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"An airtight, flexible suit of woven composite fibers complete with segmented" -" plates of armor. A complex system digitizes items in an individual pocket " -"universe for storage while built in joint-torsion ratchets generate the " -"necessary energy required to power the interface." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT face mask" -msgid_plural "CRIT face masks" +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT face mask +#. ~ Description for survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A standard issue face mask, lined with Kevlar for extra protection. A few " -"filters provide decent environmental safety, but it was not intended for " -"extended use. It has a basic integrated HUD." +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT boots" -msgid_plural "pairs of CRIT boots" +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of CRIT boots +#. ~ Description for XL survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " -"hygienic during long-term missions while absorbing shock and heat from " -"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " -"protection as well. Decently heavy though" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT LA boots" -msgid_plural "pairs of CRIT LA boots" +msgid "survivor duster" +msgid_plural "survivor dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of CRIT LA boots +#. ~ Description for survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " -"variant was created for missions in warmer climates. The LA boots keep most" -" of the old features of the standard issue boots but trade in protection for" -" easier movement." +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less gloves" -msgid_plural "pairs of CRIT fingertip-less gloves" +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of CRIT fingertip-less gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of standard-issue gloves. Made with superalloy mesh for those with " -"gene-modding and/or mutations while still allowing greater manipulation of " -"items and moderate protection." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less liners" -msgid_plural "pairs of CRIT fingertip-less liners" +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of CRIT fingertip-less liners +#. ~ Description for sleeveless survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " -"for warmth and fingertip-less for those with gene-modding and/or mutations " -"while still allowing greater manipulation of items and moderate protection." +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT backpack" -msgid_plural "CRIT backpacks" +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT backpack +#. ~ Description for survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " -"pack strikes a fine balance between storage space and encumbrance and allows" -" a larger weapon to be holstered, drawing and holstering is still rather " -"awkward even with the magnetized clips, but practice helps." +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT chestrig" -msgid_plural "CRIT chestrigs" +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT chestrig +#. ~ Description for sleeveless survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " -"with light-armor padding." +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT leg guards" -msgid_plural "pairs of CRIT leg guards" +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of CRIT leg guards +#. ~ Description for survivor duffel bag #: lang/json/ARMOR_from_json.py msgid "" -"Leg armor for those who fight. Simple design and durable material allows " -"for easy movement and the padding keeps the legs safe and warm in colder " -"conditions." +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT arm guards" -msgid_plural "pairs of CRIT arm guards" +msgid "survivor backpack" +msgid_plural "survivor backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of CRIT arm guards +#. ~ Description for survivor backpack #: lang/json/ARMOR_from_json.py msgid "" -"A pair of arm guards made from superalloy molded upon neoprene, and then " -"insulated with rubber. They are sturdy and will block attacks, but they are" -" ridiculously heavy." +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT web belt +#. ~ Description for survivor rucksack #: lang/json/ARMOR_from_json.py msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT infantry duster" -msgid_plural "CRIT infantry dusters" +msgid "survivor runner pack" +msgid_plural "survivor runner packs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT infantry duster +#. ~ Description for survivor runner pack #: lang/json/ARMOR_from_json.py msgid "" -"A thick full-length duster coat with rubber insulation. More than mildly " -"encumbering, but rather protective against any anti-infantry electrical " -"discharges from the robots. Has several pockets for storage." +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Armored Anomaly Suit" -msgid_plural "CRIT Armored Anomaly Suits" +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT Armored Anomaly Suit +#. ~ Description for pair of survivor fireboots #: lang/json/ARMOR_from_json.py msgid "" -"A relatively simple suit of armor. A suit of woven composite fibers " -"combined with a cleansuit core and strategically placed segmented Kevlar " -"plates keep the suit light-weight and the one wearing it alive while " -"offering superb resistance to the elements and ambient radiation." +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT drop leg pouch" -msgid_plural "CRIT drop leg pouches" +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT drop leg pouch -#: lang/json/ARMOR_from_json.py -msgid "" -"A set of pouches that can be worn on the thighs using buckled straps. This " -"variety is more compact and is favored by the C.R.I.T for its ease of use." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT Enforcer armor assembly" -msgid_plural "CRIT Enforcer armor assemblies" +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT Enforcer armor assembly +#. ~ Description for pair of heavy survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A series of plates, guards and buckles which assemble into a suit of sturdy " -"body-armor which usually goes over other armor. Overlapping steel plates on" -" top of Kevlar plates cover vast expanses as the armor juts off in places so" -" it can deflect attacks. Built with the idea that comfort is less important" -" than safety, this heavy suit is difficult to move about in but highly " -"protective. Various adjustable connectors such as straps and clips hold it " -"together." +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT Enforcer docks" -msgid_plural "pairs of CRIT Enforcer docks" +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of CRIT Enforcer docks -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " -"oversized feet which clamp down onto your own footwear keep your feet out of" -" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " -"designs, but they do seem to be worth using if you were to be in the middle " -"of a war zone." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT Soldier Suit" -msgid_plural "CRIT Soldier Suits" +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT Soldier Suit +#. ~ Description for pair of heavy survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A suit of modern body-armor. Strategically placed superalloy plates keep " -"the suit's weight minimal while Kevlar plates other areas and a lining of " -"soft neoprene pads areas for extra comfort. Most importantly, this can be " -"worn comfortably under other armor." +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Lone Wolf Series Armor" -msgid_plural "CRIT Lone Wolf Series Armors" +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT Lone Wolf Series Armor -#: lang/json/ARMOR_from_json.py -msgid "" -"A matte black suit of outdated and bulky looking plate armor fitted onto a " -"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " -"armor will definitely protect you from practically anything. Just make sure" -" you can actually walk with it on though." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT blouse" -msgid_plural "CRIT blouses" +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT blouse +#. ~ Description for pair of survivor firegloves #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue military jacket. Durable, lightweight, and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather " -"while a sleek design keeps it from being too flashy. A zipper at the back " -"and front allows for quick donning and doffing." +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT trousers" -msgid_plural "CRIT trousers" +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of standard-issue cargo pants. Durable, lightweight and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT pants" -msgid_plural "CRIT pants" +msgid "survivor firehood" +msgid_plural "survivor firehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for survivor firehood #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of dress pants. A minimalist sleek design makes the pants " -"lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" -" moderately cold weather." +msgid "A customized armored Nomex and Kevlar hood, strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT helmet liner" -msgid_plural "CRIT helmet liners" +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT helmet liner +#. ~ Description for XL survivor firehood #: lang/json/ARMOR_from_json.py -msgid "A standard-issue helmet liner. Keeps the noggin warm." +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT shoes" -msgid_plural "pairs of CRIT dress shoes" +msgid "survivor firesuit" +msgid_plural "survivor firesuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of CRIT shoes +#. ~ Description for survivor firesuit #: lang/json/ARMOR_from_json.py -msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT rec gloves" -msgid_plural "pairs of CRIT rec gloves" +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of CRIT rec gloves #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " -"are made with cotton with a neoprene lining for grip-pads and warmth." -msgstr "" +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for CRIT web belt +#. ~ Description for heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue belt. Keeps your trousers up and your tools on your hip." +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT rec duster" -msgid_plural "CRIT rec dusters" +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT rec duster +#. ~ Description for XL heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A waterproofed full-length duster coat. Made with neoprene, comfort and " -"functionality meet together to form a fancy but sleek contemporary design. " -"It has several pockets for storage." +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT rec hat" -msgid_plural "CRIT rec hats" +msgid "light survivor body armor" +msgid_plural "light survivor body armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT rec hat +#. ~ Description for light survivor body armor #: lang/json/ARMOR_from_json.py msgid "" -"Functionality meets fashion in this waterproofed CRIT standard issue rec " -"cover. Thick enough to provide warmth in colder weather, this hat shares " -"the same sleek design of most of C.R.I.T's gear." +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "plant fiber tunic" -msgid_plural "plant fiber tunics" +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for plant fiber tunic #: lang/json/ARMOR_from_json.py -msgid "" -"A loose garment cobbled together from a collection of plant bundles and " -"wound together by makeshift cordage" +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" msgstr "" +#. ~ Description for survivor belt #: lang/json/ARMOR_from_json.py -msgid "plant fiber bracelet" -msgid_plural "plant fiber bracelets" +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for plant fiber bracelet +#. ~ Description for survivor goggles #: lang/json/ARMOR_from_json.py msgid "" -"A bracelet wound together by makeshift cordage. Has some cool looking " -"pebbles." +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT canteen" -msgid_plural "CRIT canteens" +msgid "survivor harness" +msgid_plural "survivor harnesses" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for CRIT canteen +#. ~ Description for survivor harness #: lang/json/ARMOR_from_json.py msgid "" -"A durable steel canteen that can heat up food with built in atomic heating " -"elements." +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "salvaged new order armor" -msgid_plural "salvaged new order armors" +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for salvaged new order armor +#. ~ Description for XL survivor harness #: lang/json/ARMOR_from_json.py msgid "" -"A suit of armor belonging to a human-sized soldier of the New Order. Its " -"terribly damaged from some combination of the combat its seen, the process " -"needed to pry it off its wearer, and some sort of dead man's switch on the " -"elements that actually power the thing and make it easy to wear." +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "new order shield" -msgid_plural "new order shields" +msgid "sheet" +msgid_plural "sheets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for new order shield +#. ~ Description for sheet #: lang/json/ARMOR_from_json.py msgid "" -"A simple shield made of some sort of polycarbonates, used extensively by the" -" Vigilants, the gendarmerie of the New Order. Alongside their infamous " -"shock batons, this is an essential tool in 'keeping the peace'." +"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" +" a bunch of rags." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "new order battle shield" -msgid_plural "new order battle shields" +msgid "blanket" +msgid_plural "blankets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for new order battle shield +#. ~ Description for blanket #: lang/json/ARMOR_from_json.py -msgid "" -"A well forged shield made of steel, emblazoned with what appears to be a " -"highly stylized depiction of a sword piercing a star." +msgid "Hiding under here will not protect you from the monsters." msgstr "" -#. ~ Description for large quiver #: lang/json/ARMOR_from_json.py -msgid "" -"A large leather quiver trimmed with metal, worn on the back, that can hold " -"60 arrows. Historically used by horse archers, rather than foot archers, " -"but sometimes horses are a little hard to come by in this day and age. " -"Activate to store arrows." -msgstr "" +msgid "down-filled blanket" +msgid_plural "down-filled blankets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. ~ Description for bra +#. ~ Description for down-filled blanket #: lang/json/ARMOR_from_json.py msgid "" -"A simple bra. For protecting those bits you don't want creatures to look " -"at." +"Hiding under here will not protect you from the monsters, but it'll keep you" +" warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Ixythyug the Destroyer's soul" -msgid_plural "Ixythyug the Destroyer's souls" +msgid "fur blanket" +msgid_plural "fur blankets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Ixythyug the Destroyer's soul +#. ~ Description for fur blanket #: lang/json/ARMOR_from_json.py -msgid "RIP AND TEAR" +msgid "A heavy fur blanket that covers most of your body." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Force Shield" -msgid_plural "Force Shield" +#: lang/json/ARMOR_from_json.py +msgid "quilt" +msgid_plural "quilts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for quilt #: lang/json/ARMOR_from_json.py msgid "" -"A shield of pure force that protects you from most types of physical damage." +"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " +"cozy!" msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Soul Burn" -msgid_plural "Soul Burns" +#: lang/json/ARMOR_from_json.py +msgid "patchwork quilt" +msgid_plural "patchwork quilts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Soul Burn +#. ~ Description for patchwork quilt #: lang/json/ARMOR_from_json.py -msgid "" -"A little of your soul has been burned away, leaving you in a weakened state." -" The soul heals quickly, so rest for now." +msgid "A huge, patchwork wool quilt. Very, very warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" +msgid "sleeping bag" +msgid_plural "sleeping bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for copper infusion bracelet -#. ~ Description for silver infusion bracelet +#. ~ Use action msg for sleeping bag. +#: lang/json/ARMOR_from_json.py +msgid "You roll up the sleeping bag, preparing it for transport." +msgstr "" + +#. ~ Description for sleeping bag #: lang/json/ARMOR_from_json.py 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." +"A large sleeping bag that covers you head to toe. This one is medium " +"weight." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" +msgid "cestus" +msgid_plural "cestuses" msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. ~ Description for cestus #: lang/json/ARMOR_from_json.py -msgid "copper circlet" -msgid_plural "copper circlets" +msgid "" +"A leather hand and arm wrap incorporating metal plates over the knuckles to " +"improve punching power and defence." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of studded gloves" +msgid_plural "pairs of studded gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for copper circlet +#. ~ Description for pair of studded gloves #: lang/json/ARMOR_from_json.py -msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." +msgid "A pair of gloves with studded metal knuckles." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin arm guards" -msgid_plural "pairs of demon chitin arm guards" +msgid "impact knuckles" +msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of demon chitin arm guards +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" -"A pair of arm guards crafted from the carefully cleaned and pruned red " -"exoskeletons of demon spiders. Fire-resistant and very durable." +"A pair of thick steel plates covering your proximal phalange. They are " +"strapped to your hands with metal braces." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "demon chitin armor" -msgid_plural "demon chitin armors" +msgid "skewer knuckles" +msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for demon chitin armor +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" -"Leg and body armor crafted from the carefully cleaned and pruned red " -"exoskeletons of demon spiders. Fire-resistant and very durable." +"A single sturdy spike protrudes 5cm from the back of your hand. They are " +"strapped to your hands with metal braces." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "demon chitin helmet" -msgid_plural "demon chitin helmets" +msgid "telescoping umbrella" +msgid_plural "telescoping umbrellas" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for demon chitin helmet +#. ~ Description for telescoping umbrella #: lang/json/ARMOR_from_json.py msgid "" -"A helmet crafted from the carefully cleaned and pruned red exoskeletons of " -"demon spiders. Covers the entire head; fire-resistant and very durable." +"A telescoping umbrella which collapses down for easy storage, useful for " +"keeping dry when wielded." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin gauntlets" -msgid_plural "pairs of demon chitin gauntlets" +msgid "bag of holding" +msgid_plural "bags of holding" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of demon chitin gauntlets +#. ~ Description for bag of holding #: lang/json/ARMOR_from_json.py msgid "" -"Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " -"demon spiders. Fire-resistant and very durable." +"A sleek, unfathomably-complicated machine covered in dozens of blinking " +"lights, worn on the back by sturdy faux-leather straps. An electrode " +"dangles from the back, attaching to your forehead. How it operates without " +"annihilating spacetime isn't quite clear, but a localized portal allows " +"things to be stored in an extradimensional space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin boots" -msgid_plural "pairs of demon chitin boots" +msgid "titanium vest" +msgid_plural "titanium vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of demon chitin boots +#. ~ Description for titanium vest #: lang/json/ARMOR_from_json.py msgid "" -"Boots crafted from carefully cleaned and pruned red exoskeletons of demon " -"spiders. Fire-resistant and very durable." +"A lightweight armor vest made of pieces of titanium sewn together, with " +"cloth padding for comfort. Brittle against blunt force, but highly " +"resistant to cuts and corrosion." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonscale boots" -msgid_plural "pairs of black dragonscale boots" +msgid "sentinel-lx cloak" +msgid_plural "sentinel-lx cloaks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of black dragonscale boots +#. ~ Description for sentinel-lx cloak #: lang/json/ARMOR_from_json.py msgid "" -"Boots made of black incredibly durable dragonscale. Very protective, and " -"surprisingly light." +"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " +"unnatural shadow. Made from woven graphene, its lightweight and resistant, " +"but cannot be repaired" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonhide boots" -msgid_plural "pairs of black dragonhide boots" +msgid "XL jeans" +msgid_plural "pairs of XL jeans" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of black dragonhide boots +#. ~ Description for XL jeans #: lang/json/ARMOR_from_json.py -msgid "" -"Boots made of very durable black dragonhide. Very protective, and " -"surprisingly light." +msgid "A pair of XL blue jeans with two deep pockets." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale helmet" -msgid_plural "black dragonscale helmets" +msgid "XL work pants" +msgid_plural "pairs of XL work pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for black dragonscale helmet. -#. ~ Use action msg for XL black dragonscale helmet. -#. ~ Use action msg for riot helmet. -#. ~ Use action msg for motorcycle helmet. -#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py -msgid "You raise your visor." +#: lang/json/ARMOR_from_json.py +msgid "A pair of XL blue work pants." msgstr "" -#. ~ Description for black dragonscale helmet #: lang/json/ARMOR_from_json.py -msgid "" -"A helmet made from black incredibly durable dragonscale, held together with " -"black dragonhide. It comes equipped with a full face visor with only a thin" -" slit to see out of. Activate to raise the visor." +msgid "A pair of XL gray work pants." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale helmet (raised visor)" -msgid_plural "black dragonscale helmets (raised visor)" +msgid "A pair of XL light-blue work pants." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL work t-shirt" +msgid_plural "XL work t-shirts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for black dragonscale helmet (raised visor). -#. ~ Use action msg for XL black dragonscale helmet (raised visor). -#. ~ Use action msg for riot helmet (raised visor). -#. ~ Use action msg for motorcycle helmet (raised visor). -#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py -msgid "You put down your visor." +#. ~ Description for XL work t-shirt +#: lang/json/ARMOR_from_json.py +msgid "A gray XL work t-shirt with a small front pocket." msgstr "" -#. ~ Description for black dragonscale helmet (raised visor) #: lang/json/ARMOR_from_json.py -msgid "" -"A helmet made from incredibly durable black dragonscale, held together with " -"black dragonhide. The visor is raised." +msgid "An XL blue work t-shirt with a small front pocket." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonhide helmet" -msgid_plural "black dragonhide helmets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "An XL gray work t-shirt with a small front pocket." +msgstr "" -#. ~ Description for black dragonhide helmet #: lang/json/ARMOR_from_json.py -msgid "" -"A helmet made from very durable black dragonhide. It protects your head " -"well, but doesn't cover your face." +msgid "An XL light-blue work t-shirt with a small front pocket." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale armor" -msgid_plural "black dragonscale armors" +msgid "Uplifted SWAT armor" +msgid_plural "Uplifted SWAT armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for black dragonscale armor +#. ~ Description for Uplifted SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A full suit of incredibly durable 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." +"An extra large suit of black bulletproof armor with lots of pockets. The " +"word SWAT is emblazoned across the back. Specifically designed for Uplifted" +" officers such as Mastodons." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonhide armor" -msgid_plural "black dragonhide armors" +msgid "empty XL ballistic vest" +msgid_plural "empty XL ballistic vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for black dragonhide armor +#. ~ Description for empty XL ballistic vest #: lang/json/ARMOR_from_json.py msgid "" -"A full suit of very durable 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." +"Oversized ballistic armor without any armor inserts. The soft armor plate " +"carrier is still protective but it won't stop high energy projectiles." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonscale gauntlets" -msgid_plural "pairs of black dragonscale gauntlets" +msgid "XL ESAPI ballistic vest" +msgid_plural "XL ESAPI ballistic vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of black dragonscale gauntlets +#. ~ Description for XL ESAPI ballistic vest #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " -"that covers your hands." +msgid "Oversized ballistic armor with ESAPI ceramic armor plates." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonhide gloves" -msgid_plural "pairs of black dragonhide gloves" +msgid "pair of XL combat boots" +msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of black dragonhide gloves +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of gloves made of very durable black dragonhide, modified to be easy " -"to wear while providing maximum protection under extreme conditions." +msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonscale boots" -msgid_plural "pairs of XL black dragonscale boots" +msgid "pair of XL tactical gloves" +msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of XL black dragonscale boots +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" -"Massive boots made of incredibly durable black dragonscale, modified to fit " -"even the strangest of bodies. Very protective, and surprisingly light." +"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " +"police and military units." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonhide boots" -msgid_plural "pairs of XL black dragonhide boots" +msgid "pair of Killophant gloves" +msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of XL black dragonhide boots +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" -"Massive boots made of very durable black dragonhide, modified to fit even " -"the strangest of bodies. Very protective, and surprisingly light." +"A pair of reinforced Kevlar tactical gloves, specifically designed to " +"accommodate three-fingered Killophants. Thinner than regular oversized " +"tactical gloves." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonscale gauntlets" -msgid_plural "pairs of XL black dragonscale gauntlets" +msgid "XL leather belt" +msgid_plural "XL leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of XL black dragonscale gauntlets +#. ~ Description for XL leather belt #: lang/json/ARMOR_from_json.py msgid "" -"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " -"that covers your hands, or whatever you use as hands." +"An XL leather belt. Useful for making your pair of pants fit if you need " +"really big pants." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonhide gloves" -msgid_plural "pairs of XL black dragonhide gloves" +msgid "XL police duty belt" +msgid_plural "XL police duty belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of XL black dragonhide gloves +#. ~ Description for XL police duty belt #: lang/json/ARMOR_from_json.py msgid "" -"A pair of gloves made of very durable black dragonhide, modified to be easy " -"to wear while providing maximum protection under extreme conditions. Sized " -"to fit even the strangest of anatomy." +"An XL black leather belt used by extremely large uplifted police officers. " +"It has several pouches and a holder for a baton." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale helmet" -msgid_plural "XL black dragonscale helmets" +msgid "XL tactical full helmet" +msgid_plural "XL tactical full helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL black dragonscale helmet +#. ~ Description for XL tactical full helmet #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from incredibly durable black dragonscale, held " -"together with black dragonhide. It comes equipped with a full face visor " -"you can raise and is large enough to fit even the strangest of heads." +"An all-encompassing massive black helmet that covers your entire face and " +"neck, providing excellent protection from all sorts of damage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale helmet (raised visor)" -msgid_plural "XL black dragonscale helmets (raised visor)" +msgid "XL leg ammo pouch" +msgid_plural "XL leg ammo pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL black dragonscale helmet (raised visor) +#. ~ Description for XL leg ammo pouch #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from incredibly durable black dragonscale, held " -"together with black dragonhide. It is large enough to fit even the " -"strangest of heads. The visor is raised" +"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" +" two magazines close at hand." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonhide helmet" -msgid_plural "XL black dragonhide helmets" +msgid "crew jumpsuit" +msgid_plural "crew jumpsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL black dragonhide helmet +#. ~ Description for crew jumpsuit #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from very durable black dragonhide. It protects your " -"head well, and doesn't cover your face, but is large enough to fit even the " -"strangest of heads." +"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " +"some freight hauling association or another. This one is a standard design " +"favored by spacers, with ample, easy access pockets." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale armor" -msgid_plural "XL black dragonscale armors" +msgid "communications cap" +msgid_plural "communications caps" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL black dragonscale armor +#. ~ Description for communications cap #: lang/json/ARMOR_from_json.py msgid "" -"A massive full suit of incredibly durable 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." +"A padded cotton cap built around an augmented reality headset. During " +"normal operation it would provide visual information about a ship subsystems" +" and a communications link with the rest of the crew, but severed from a " +"spaceship, only their hearing protection function retains any utility." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonhide armor" -msgid_plural "XL black dragonhide armors" +msgid "HERC rig" +msgid_plural "HERC rigs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for XL black dragonhide armor +#. ~ Description for HERC rig #: lang/json/ARMOR_from_json.py msgid "" -"A massive full suit of very durable black dragonhide armor. It comes with " -"all the accoutrements that cover your torso, legs, and arms; sized to fit " -"even the strangest of bodies." +"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " +"about in zero-g, Mars, the bottom of the Pacific, or other generally " +"inhospitable environments. It has several deep pockets, and two mounting " +"points for pressurized canisters or other large magazines." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "dragonhide backpack" -msgid_plural "dragonhide backpacks" +msgid "cecalia wetsuit" +msgid_plural "cecalia wetsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for dragonhide backpack +#. ~ Description for cecalia wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A custom-built backpack. Made of very durable dragon leather and carefully " -"crafted to hold as much stuff as possible." +"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " +"explorer suit with no head or tentacle protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL dragonhide backpack" -msgid_plural "XL dragonhide backpacks" +msgid "combat wetsuit" +msgid_plural "combat wetsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. ~ Description for combat wetsuit #: lang/json/ARMOR_from_json.py -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgid "" +"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " +"will provide some level of protection for deep dwellers." +msgstr "" #: lang/json/ARMOR_from_json.py -msgid "belt of haste" -msgid_plural "belts of haste" +msgid "nanomesh vest" +msgid_plural "nanomesh vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. ~ Description for nanomesh vest #: lang/json/ARMOR_from_json.py -msgid "wizard hat" -msgid_plural "wizard hats" +msgid "" +"A lightweight nanomesh vest designed to face down many of the perils of " +"space travel. These vests are mass produced and often stacked in starship " +"lockers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "vacuum cast cuirass" +msgid_plural "vacuum cast cuirasses" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for wizard hat +#. ~ Description for vacuum cast cuirass #: lang/json/ARMOR_from_json.py msgid "" -"A blue pointed hat with stars stitched into it. Wearing it increases your " -"maximum mana." +"This piece of armor harkens back to renaissance designs. It differs in that" +" it is cast as a single piece in deep space installations where conditions " +"can be controlled absolutely." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Cloak of Morthylla the Lamia" -msgid_plural "Cloaks of Morthylla the Lamia" +msgid "carbide raider's helmet" +msgid_plural "carbide raider's helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Cloak of Morthylla the Lamia +#. ~ Description for carbide raider's helmet #: lang/json/ARMOR_from_json.py msgid "" -"This cloak seems to absorb light except for the pinpricks of stars that move" -" across its surface." +"This helmet is designed for the individual that is worried about catching " +"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " +"environmental protection features, but it just might stop even the largest " +"of ballistic rounds." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of wolfshead cufflinks" -msgid_plural "pairs of wolfshead cufflinks" +msgid "UICAS Point of Impact helmet" +msgid_plural "UICAS Point of Impact helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of wolfshead cufflinks +#. ~ Description for UICAS Point of Impact helmet #: lang/json/ARMOR_from_json.py msgid "" -"A pair of silver cufflinks with a wolf's head engraved into them. Each " -"cufflink has a bright ruby eye and pearl teeth. They appear to be growling." -" There is an inscription, 'When the moon shines. I become alive.'" +"A lightweight black helmet that provides excellent protection from all sorts" +" of damage, unless it's airborne. UICAS makes the point of designing all " +"headgear whenever possible with clear faceplates, in order to provide a " +"human touch to all interactions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" +msgid "cold resistance cream" +msgid_plural "cold resistance creams" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for technomancer's toolbelt +#. ~ Description for cold resistance cream #: lang/json/ARMOR_from_json.py msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A thick layer of something that smells worse than walrus fat. But it keeps " +"you warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +msgid "heat retention xtreme cream" +msgid_plural "heat retention xtreme creams" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for seven league boots -#. ~ Description for boots of haste +#. ~ Description for heat retention xtreme cream #: lang/json/ARMOR_from_json.py 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." +"The last word in cold snap protection designed to give short term protection" +" in the event of a suit breach in vacuum." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +msgid "titanium watch" +msgid_plural "titanium watches" msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. ~ Description for titanium watch #: lang/json/ARMOR_from_json.py -msgid "freerunner's boots" -msgid_plural "freerunner's boots" +msgid "" +"A thick, masculine watch made out of titanium. It is durable, light-weight " +"and water-resistant, an excellent watch to have in a hostile environment." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "titanium ring" +msgid_plural "titanium rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for titanium ring #: lang/json/ARMOR_from_json.py msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, seeming a bit more flexible and breathable than typical for their " -"materials. The enchantment they bear helps guide their wearer in their " -"motions, to make movement around and over obstacles much more fluid and " -"efficient." +"A thick, masculine ring made out of titanium. Made in a variety of styles " +"and finishes, they're valued for their durability." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +msgid "hazardous environment suit" +msgid_plural "hazardous environment suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for boots of grounding +#. ~ Description for hazardous environment suit #: lang/json/ARMOR_from_json.py 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." +"Developed for the exploration of alien planes, the lightweight, orange-black" +" HEV suit covers everything below the neck. While it possesses only modest " +"physical protection, it provides excellent protection from most " +"environmental hazards. A hatch in the front opens to provide a small amount" +" of storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Fish" -msgid_plural "Wildshape Cloaks: Fish" +msgid "psychrophile handling gloves" +msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Wildshape Cloak: Fish +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that shimmers like fresh water under a warm sun. It can be " -"worn to morph your body to a form that is excellent for swimming, but ill-" -"suited for combat." +"These gloves are designed for handling organisms that live in extremely cold" +" temperatures. They can also be used to freeze your foes to death." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Bear" -msgid_plural "Wildshape Cloak: Bears" +msgid "CRIT Engineering Suit" +msgid_plural "CRIT Engineering Suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Wildshape Cloak: Bear +#. ~ Description for CRIT Engineering Suit #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that smells of the forest. It can be worn to morph your " -"body to a form that is strong and resilient in melee combat. However, you " -"feel as if you would lose a part of yourself." +"An airtight, flexible suit of woven composite fibers complete with segmented" +" plates of armor. A complex system digitizes items in an individual pocket " +"universe for storage while built in joint-torsion ratchets generate the " +"necessary energy required to power the interface." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Deer" -msgid_plural "Wildshape Cloak: Deers" +msgid "CRIT face mask" +msgid_plural "CRIT face masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Wildshape Cloak: Deer +#. ~ Description for CRIT face mask #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that feels soft to the touch. It can be worn to morph your " -"body to a form well-suited to escaping difficult situations. However, it " -"places a great strain on your body." +"A standard issue face mask, lined with Kevlar for extra protection. A few " +"filters provide decent environmental safety, but it was not intended for " +"extended use. It has a basic integrated HUD." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "enchanted parabolan wool blouse" -msgid_plural "enchanted parabolan wool blouse" +msgid "pair of CRIT boots" +msgid_plural "pairs of CRIT boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for pair of CRIT boots #: lang/json/ARMOR_from_json.py msgid "" -"A loose iridescent blouse in a style most often associated with pirates and " -"renfaires. It shimmers as you look at it. Made of parabolan wool, it " -"sometimes dimly shows reflections of things here and not. This particular " -"one has piratical flairs and glitters with enchantment." +"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " +"hygienic during long-term missions while absorbing shock and heat from " +"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " +"protection as well. Decently heavy though" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "enchanted parabolan wool breeches" -msgid_plural "enchanted parabolan wool breeches" +msgid "pair of CRIT LA boots" +msgid_plural "pairs of CRIT LA boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for pair of CRIT LA boots #: lang/json/ARMOR_from_json.py msgid "" -"A well-made pair of old-fashioned pants, made of iridescent material. " -"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " -"parabolan wool, it sometimes dimly shows reflections of things here and not." -" This particular one has piratical flairs and gliters with enchantment." +"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " +"variant was created for missions in warmer climates. The LA boots keep most" +" of the old features of the standard issue boots but trade in protection for" +" easier movement." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "parabolan wool blouse" -msgid_plural "parabolan wool blouses" +msgid "pair of CRIT fingertip-less gloves" +msgid_plural "pairs of CRIT fingertip-less gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for parabolan wool blouse +#. ~ Description for pair of CRIT fingertip-less gloves #: lang/json/ARMOR_from_json.py msgid "" -"A loose iridescent blouse in a style most often associated with pirates and " -"renfaires. It shimmers as you look at it. Made of parabolan wool, it " -"sometimes dimly shows reflections of things here and not." +"A pair of standard-issue gloves. Made with superalloy mesh for those with " +"gene-modding and/or mutations while still allowing greater manipulation of " +"items and moderate protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "parabolan wool breeches" -msgid_plural "parabolan wool breeches" +msgid "pair of CRIT fingertip-less liners" +msgid_plural "pairs of CRIT fingertip-less liners" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for pair of CRIT fingertip-less liners #: lang/json/ARMOR_from_json.py msgid "" -"A well-made pair of old-fashioned pants, made of iridescent material. " -"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " -"parabolan wool, it sometimes dimly shows reflections of things here and not." +"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " +"for warmth and fingertip-less for those with gene-modding and/or mutations " +"while still allowing greater manipulation of items and moderate protection." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: lang/json/ARMOR_from_json.py +msgid "CRIT backpack" +msgid_plural "CRIT backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for pair of magical armored stone gauntlets -#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for CRIT backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " +"pack strikes a fine balance between storage space and encumbrance and allows" +" a larger weapon to be holstered, drawing and holstering is still rather " +"awkward even with the magnetized clips, but practice helps." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "magic lamp" -msgid_plural "magic lamps" +msgid "CRIT chestrig" +msgid_plural "CRIT chestrigs" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic lamp +#. ~ Description for CRIT chestrig #: lang/json/ARMOR_from_json.py -msgid "A magical light source that will light up a small area." +msgid "" +"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " +"with light-armor padding." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "magic light" -msgid_plural "magic lights" +msgid "pair of CRIT leg guards" +msgid_plural "pairs of CRIT leg guards" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for magic light +#. ~ Description for pair of CRIT leg guards #: lang/json/ARMOR_from_json.py -msgid "A small magical light that you can read by." +msgid "" +"Leg armor for those who fight. Simple design and durable material allows " +"for easy movement and the padding keeps the legs safe and warm in colder " +"conditions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +msgid "pair of CRIT arm guards" +msgid_plural "pairs of CRIT arm guards" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for large shield of magical ice +#. ~ Description for pair of CRIT arm guards #: lang/json/ARMOR_from_json.py -msgid "A lightweight but tough shield crafted entirely of magical ice." +msgid "" +"A pair of arm guards made from superalloy molded upon neoprene, and then " +"insulated with rubber. They are sturdy and will block attacks, but they are" +" ridiculously heavy." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +msgid "CRIT infantry duster" +msgid_plural "CRIT infantry dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for CRIT infantry duster #: lang/json/ARMOR_from_json.py 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 thick full-length duster coat with rubber insulation. More than mildly " +"encumbering, but rather protective against any anti-infantry electrical " +"discharges from the robots. Has several pockets for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "flesh pouch" -msgid_plural "flesh pouches" +msgid "CRIT Armored Anomaly Suit" +msgid_plural "CRIT Armored Anomaly Suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for flesh pouch +#. ~ Description for CRIT Armored Anomaly Suit #: lang/json/ARMOR_from_json.py 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 relatively simple suit of armor. A suit of woven composite fibers " +"combined with a cleansuit core and strategically placed segmented Kevlar " +"plates keep the suit light-weight and the one wearing it alive while " +"offering superb resistance to the elements and ambient radiation." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +msgid "CRIT drop leg pouch" +msgid_plural "CRIT drop leg pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for obfuscating aura +#. ~ Description for CRIT drop leg pouch #: lang/json/ARMOR_from_json.py 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 set of pouches that can be worn on the thighs using buckled straps. This " +"variety is more compact and is favored by the C.R.I.T for its ease of use." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +msgid "CRIT Enforcer armor assembly" +msgid_plural "CRIT Enforcer armor assemblies" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for acid resistance aura -#. ~ Description for greater acid resistance aura +#. ~ Description for CRIT Enforcer armor assembly #: lang/json/ARMOR_from_json.py -msgid "An all-encompassing, invisible layer of protection against acid." +msgid "" +"A series of plates, guards and buckles which assemble into a suit of sturdy " +"body-armor which usually goes over other armor. Overlapping steel plates on" +" top of Kevlar plates cover vast expanses as the armor juts off in places so" +" it can deflect attacks. Built with the idea that comfort is less important" +" than safety, this heavy suit is difficult to move about in but highly " +"protective. Various adjustable connectors such as straps and clips hold it " +"together." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +msgid "pair of CRIT Enforcer docks" +msgid_plural "pairs of CRIT Enforcer docks" msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. ~ Description for pair of CRIT Enforcer docks #: lang/json/ARMOR_from_json.py -msgid "frost armor" -msgid_plural "frost armor" +msgid "" +"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " +"oversized feet which clamp down onto your own footwear keep your feet out of" +" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " +"designs, but they do seem to be worth using if you were to be in the middle " +"of a war zone." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Soldier Suit" +msgid_plural "CRIT Soldier Suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for CRIT Soldier Suit #: lang/json/ARMOR_from_json.py -msgid "A thin layer of magical ice, covering the entire body." +msgid "" +"A suit of modern body-armor. Strategically placed superalloy plates keep " +"the suit's weight minimal while Kevlar plates other areas and a lining of " +"soft neoprene pads areas for extra comfort. Most importantly, this can be " +"worn comfortably under other armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +msgid "CRIT Lone Wolf Series Armor" +msgid_plural "CRIT Lone Wolf Series Armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for CRIT Lone Wolf Series Armor #: lang/json/ARMOR_from_json.py msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A matte black suit of outdated and bulky looking plate armor fitted onto a " +"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " +"armor will definitely protect you from practically anything. Just make sure" +" you can actually walk with it on though." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "overcharge burn" -msgid_plural "overcharge burns" +msgid "CRIT blouse" +msgid_plural "CRIT blouses" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for overcharge burn +#. ~ Description for CRIT blouse #: lang/json/ARMOR_from_json.py -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgid "" +"A standard-issue military jacket. Durable, lightweight, and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather " +"while a sleek design keeps it from being too flashy. A zipper at the back " +"and front allows for quick donning and doffing." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "aura of protection" -msgid_plural "auras of protection" +msgid "CRIT trousers" +msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for aura of protection +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"A pair of standard-issue cargo pants. Durable, lightweight and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "aura of repelling arc" -msgid_plural "auras of repelling arc" +msgid "CRIT pants" +msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for aura of repelling arc +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" -"An invisible aura that strikes melee attackers with arcs of electricity." +"A pair of dress pants. A minimalist sleek design makes the pants " +"lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" +" moderately cold weather." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "feral aura" -msgid_plural "feral auras" +msgid "CRIT helmet liner" +msgid_plural "CRIT helmet liners" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for feral aura +#. ~ Description for CRIT helmet liner #: lang/json/ARMOR_from_json.py -msgid "" -"The manifestation of your rage. It won't disappear until you calm down." +msgid "A standard-issue helmet liner. Keeps the noggin warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "acid aura" -msgid_plural "acid auras" +msgid "pair of CRIT shoes" +msgid_plural "pairs of CRIT dress shoes" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for acid aura +#. ~ Description for pair of CRIT shoes #: lang/json/ARMOR_from_json.py -msgid "" -"An aura of thin acid, swirling around your body ready to corrode when struck" -" or while striking." +msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "werewolf aura" -msgid_plural "werewolf auras" +msgid "pair of CRIT rec gloves" +msgid_plural "pairs of CRIT rec gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for werewolf aura +#. ~ Description for pair of CRIT rec gloves #: lang/json/ARMOR_from_json.py -msgid "You have become the werewolf. Boys becoming men, men becoming wolves." +msgid "" +"A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " +"are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Black Dragon Shell" -msgid_plural "Black Dragon Shells" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Black Dragon Shell +#. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" -"An aura of black and green draconic energy, swirling around your body " -"protecting you and punishing those who strike you." +"A standard-issue belt. Keeps your trousers up and your tools on your hip." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "spiritual armor" -msgid_plural "spiritual armor" +msgid "CRIT rec duster" +msgid_plural "CRIT rec dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for CRIT rec duster #: lang/json/ARMOR_from_json.py -msgid "A summoned medieval armor. It glows softly and looks sturdy." +msgid "" +"A waterproofed full-length duster coat. Made with neoprene, comfort and " +"functionality meet together to form a fancy but sleek contemporary design. " +"It has several pockets for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "auroral shell" -msgid_plural "auroral shell" +msgid "CRIT rec hat" +msgid_plural "CRIT rec hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for CRIT rec hat #: lang/json/ARMOR_from_json.py -msgid "A sturdy shell that wraps your body, gaining a sturdy defense." +msgid "" +"Functionality meets fashion in this waterproofed CRIT standard issue rec " +"cover. Thick enough to provide warmth in colder weather, this hat shares " +"the same sleek design of most of C.R.I.T's gear." msgstr "" -#: lang/json/BATTERY_from_json.py -msgid "test battery" -msgid_plural "test batteries" +#: lang/json/ARMOR_from_json.py +msgid "plant fiber tunic" +msgid_plural "plant fiber tunics" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for test battery -#: lang/json/BATTERY_from_json.py +#. ~ Description for plant fiber tunic +#: lang/json/ARMOR_from_json.py msgid "" -"This is a testing item for the BATTERY item type. If you found one in game," -" it's a bug." +"A loose garment cobbled together from a collection of plant bundles and " +"wound together by makeshift cordage" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract bionic module" -msgid_plural "abstract bionic modules" +#: lang/json/ARMOR_from_json.py +msgid "plant fiber bracelet" +msgid_plural "plant fiber bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract bionic module (npc usable)" -msgid_plural "abstract bionic modules (npc usable)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for plant fiber bracelet +#: lang/json/ARMOR_from_json.py +msgid "" +"A bracelet wound together by makeshift cordage. Has some cool looking " +"pebbles." +msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract faulty bionic module" -msgid_plural "abstract faulty bionic modules" +#: lang/json/ARMOR_from_json.py +msgid "CRIT canteen" +msgid_plural "CRIT canteens" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for abstract faulty bionic module -#: lang/json/BIONIC_ITEM_from_json.py -msgid "This CBM is broken beyond repair, you can't do anything with it." +#. ~ Description for CRIT canteen +#: lang/json/ARMOR_from_json.py +msgid "" +"A durable steel canteen that can heat up food with built in atomic heating " +"elements." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Adrenaline Pump CBM" -msgid_plural "Adrenaline Pump CBMs" +#: lang/json/ARMOR_from_json.py +msgid "salvaged new order armor" +msgid_plural "salvaged new order armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Adrenaline Pump CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for salvaged new order armor +#: lang/json/ARMOR_from_json.py msgid "" -"A stimulator system that is implanted alongside the adrenal glands, allowing" -" the user to trigger their body's adrenaline response at the cost of some " -"bionic power." +"A suit of armor belonging to a human-sized soldier of the New Order. Its " +"terribly damaged from some combination of the combat its seen, the process " +"needed to pry it off its wearer, and some sort of dead man's switch on the " +"elements that actually power the thing and make it easy to wear." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Active Defense System CBM" -msgid_plural "Active Defense System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "new order shield" +msgid_plural "new order shields" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Active Defense System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for new order shield +#: lang/json/ARMOR_from_json.py msgid "" -"This bionic projects a thin forcefield around the user's body. Anything " -"attempting to penetrate this field has a chance of being deflected at the " -"cost of energy, reducing their ability to deal damage. Bullets will be " -"deflected more than swords and those in turn more than massive objects." +"A simple shield made of some sort of polycarbonates, used extensively by the" +" Vigilants, the gendarmerie of the New Order. Alongside their infamous " +"shock batons, this is an essential tool in 'keeping the peace'." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Alarm System CBM" -msgid_plural "Alarm System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "new order battle shield" +msgid_plural "new order battle shields" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Alarm System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for new order battle shield +#: lang/json/ARMOR_from_json.py msgid "" -"A motion-detecting alarm system will notice almost all movement within a " -"fifteen-foot radius, and will silently alert the user. This is very useful " -"during sleep, or if the user suspects a cloaked pursuer." +"A well forged shield made of steel, emblazoned with what appears to be a " +"highly stylized depiction of a sword piercing a star." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#. ~ Description for large quiver +#: lang/json/ARMOR_from_json.py +msgid "" +"A large leather quiver trimmed with metal, worn on the back, that can hold " +"60 arrows. Historically used by horse archers, rather than foot archers, " +"but sometimes horses are a little hard to come by in this day and age. " +"Activate to store arrows." +msgstr "" -#. ~ Description for Arms Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for bra +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"A simple bra. For protecting those bits you don't want creatures to look " +"at." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Protective Lenses CBM" -msgid_plural "Protective Lenses CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Ixythyug the Destroyer's soul" +msgid_plural "Ixythyug the Destroyer's souls" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Protective Lenses CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A bionic package that seals the user's eye sockets with highly protective " -"mirrored lenses and re-routes their tear ducts to their mouth. When the " -"user cries, they must spit out or swallow their tears." +#. ~ Description for Ixythyug the Destroyer's soul +#: lang/json/ARMOR_from_json.py +msgid "RIP AND TEAR" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Force Shield" +msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Head Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Force Shield +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"A shield of pure force that protects you from most types of physical damage." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Soul Burn" +msgid_plural "Soul Burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Legs Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Soul Burn +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"A little of your soul has been burned away, leaving you in a weakened state." +" The soul heals quickly, so rest for now." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Torso Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for copper infusion bracelet +#. ~ Description for silver infusion bracelet +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Battery System CBM" -msgid_plural "Battery System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lang/json/ARMOR_from_json.py +msgid "copper circlet" +msgid_plural "copper circlets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for copper circlet +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin arm guards" +msgid_plural "pairs of demon chitin arm guards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of demon chitin arm guards +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of arm guards crafted from the carefully cleaned and pruned red " +"exoskeletons of demon spiders. Fire-resistant and very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "demon chitin armor" +msgid_plural "demon chitin armors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for demon chitin armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Leg and body armor crafted from the carefully cleaned and pruned red " +"exoskeletons of demon spiders. Fire-resistant and very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "demon chitin helmet" +msgid_plural "demon chitin helmets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for demon chitin helmet +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin gauntlets" +msgid_plural "pairs of demon chitin gauntlets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of demon chitin gauntlets +#: lang/json/ARMOR_from_json.py +msgid "" +"Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " +"demon spiders. Fire-resistant and very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin boots" +msgid_plural "pairs of demon chitin boots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of demon chitin boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Boots crafted from carefully cleaned and pruned red exoskeletons of demon " +"spiders. Fire-resistant and very durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonscale boots" +msgid_plural "pairs of black dragonscale boots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of black dragonscale boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Boots made of black incredibly durable dragonscale. Very protective, and " +"surprisingly light." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonhide boots" +msgid_plural "pairs of black dragonhide boots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of black dragonhide boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Boots made of very durable black dragonhide. Very protective, and " +"surprisingly light." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale helmet" +msgid_plural "black dragonscale helmets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Use action msg for black dragonscale helmet. +#. ~ Use action msg for XL black dragonscale helmet. +#. ~ Use action msg for riot helmet. +#. ~ Use action msg for motorcycle helmet. +#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py +msgid "You raise your visor." +msgstr "" + +#. ~ Description for black dragonscale helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A helmet made from black incredibly durable dragonscale, held together with " +"black dragonhide. It comes equipped with a full face visor with only a thin" +" slit to see out of. Activate to raise the visor." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale helmet (raised visor)" +msgid_plural "black dragonscale helmets (raised visor)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Use action msg for black dragonscale helmet (raised visor). +#. ~ Use action msg for XL black dragonscale helmet (raised visor). +#. ~ Use action msg for riot helmet (raised visor). +#. ~ Use action msg for motorcycle helmet (raised visor). +#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py +msgid "You put down your visor." +msgstr "" + +#. ~ Description for black dragonscale helmet (raised visor) +#: lang/json/ARMOR_from_json.py +msgid "" +"A helmet made from incredibly durable black dragonscale, held together with " +"black dragonhide. The visor is raised." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonhide helmet" +msgid_plural "black dragonhide helmets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for black dragonhide helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A helmet made from very durable black dragonhide. It protects your head " +"well, but doesn't cover your face." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale armor" +msgid_plural "black dragonscale armors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for black dragonscale armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A full suit of incredibly durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "black dragonhide armor" +msgid_plural "black dragonhide armors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for black dragonhide armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A full suit of very durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonscale gauntlets" +msgid_plural "pairs of black dragonscale gauntlets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of black dragonscale gauntlets +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " +"that covers your hands." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonhide gloves" +msgid_plural "pairs of black dragonhide gloves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of black dragonhide gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of gloves made of very durable black dragonhide, modified to be easy " +"to wear while providing maximum protection under extreme conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonscale boots" +msgid_plural "pairs of XL black dragonscale boots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of XL black dragonscale boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Massive boots made of incredibly durable black dragonscale, modified to fit " +"even the strangest of bodies. Very protective, and surprisingly light." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonhide boots" +msgid_plural "pairs of XL black dragonhide boots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of XL black dragonhide boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Massive boots made of very durable black dragonhide, modified to fit even " +"the strangest of bodies. Very protective, and surprisingly light." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonscale gauntlets" +msgid_plural "pairs of XL black dragonscale gauntlets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of XL black dragonscale gauntlets +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " +"that covers your hands, or whatever you use as hands." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonhide gloves" +msgid_plural "pairs of XL black dragonhide gloves" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of XL black dragonhide gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of gloves made of very durable black dragonhide, modified to be easy " +"to wear while providing maximum protection under extreme conditions. Sized " +"to fit even the strangest of anatomy." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale helmet" +msgid_plural "XL black dragonscale helmets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for XL black dragonscale helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive helmet made from incredibly durable black dragonscale, held " +"together with black dragonhide. It comes equipped with a full face visor " +"you can raise and is large enough to fit even the strangest of heads." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale helmet (raised visor)" +msgid_plural "XL black dragonscale helmets (raised visor)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for XL black dragonscale helmet (raised visor) +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive helmet made from incredibly durable black dragonscale, held " +"together with black dragonhide. It is large enough to fit even the " +"strangest of heads. The visor is raised" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonhide helmet" +msgid_plural "XL black dragonhide helmets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for XL black dragonhide helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive helmet made from very durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale armor" +msgid_plural "XL black dragonscale armors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for XL black dragonscale armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive full suit of incredibly durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonhide armor" +msgid_plural "XL black dragonhide armors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for XL black dragonhide armor +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive full suit of very durable 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 "" + +#: lang/json/ARMOR_from_json.py +msgid "dragonhide backpack" +msgid_plural "dragonhide backpacks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for dragonhide backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Made of very durable dragon leather and carefully " +"crafted to hold as much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL dragonhide backpack" +msgid_plural "XL dragonhide backpacks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lang/json/ARMOR_from_json.py +msgid "belt of strength +2" +msgid_plural "belts of strength +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lang/json/ARMOR_from_json.py +msgid "belt of haste" +msgid_plural "belts of haste" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lang/json/ARMOR_from_json.py +msgid "wizard hat" +msgid_plural "wizard hats" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for wizard hat +#: lang/json/ARMOR_from_json.py +msgid "" +"A blue pointed hat with stars stitched into it. Wearing it increases your " +"maximum mana." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Cloak of Morthylla the Lamia" +msgid_plural "Cloaks of Morthylla the Lamia" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Cloak of Morthylla the Lamia +#: lang/json/ARMOR_from_json.py +msgid "" +"This cloak seems to absorb light except for the pinpricks of stars that move" +" across its surface." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of wolfshead cufflinks" +msgid_plural "pairs of wolfshead cufflinks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of wolfshead cufflinks +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of silver cufflinks with a wolf's head engraved into them. Each " +"cufflink has a bright ruby eye and pearl teeth. They appear to be growling." +" There is an inscription, 'When the moon shines. I become alive.'" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for technomancer's toolbelt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "seven league boots" +msgid_plural "pairs of seven league boots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for seven league boots +#. ~ Description for boots of haste +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "boots of haste" +msgid_plural "pairs of boots of haste" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lang/json/ARMOR_from_json.py +msgid "freerunner's boots" +msgid_plural "freerunner's boots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for freerunner's boots +#: lang/json/ARMOR_from_json.py +msgid "" +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, seeming a bit more flexible and breathable than typical for their " +"materials. The enchantment they bear helps guide their wearer in their " +"motions, to make movement around and over obstacles much more fluid and " +"efficient." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for boots of grounding +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Fish" +msgid_plural "Wildshape Cloaks: Fish" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Wildshape Cloak: Fish +#: lang/json/ARMOR_from_json.py +msgid "" +"A magical cloak that shimmers like fresh water under a warm sun. It can be " +"worn to morph your body to a form that is excellent for swimming, but ill-" +"suited for combat." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Bear" +msgid_plural "Wildshape Cloak: Bears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Wildshape Cloak: Bear +#: lang/json/ARMOR_from_json.py +msgid "" +"A magical cloak that smells of the forest. It can be worn to morph your " +"body to a form that is strong and resilient in melee combat. However, you " +"feel as if you would lose a part of yourself." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Deer" +msgid_plural "Wildshape Cloak: Deers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Wildshape Cloak: Deer +#: lang/json/ARMOR_from_json.py +msgid "" +"A magical cloak that feels soft to the touch. It can be worn to morph your " +"body to a form well-suited to escaping difficult situations. However, it " +"places a great strain on your body." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "enchanted parabolan wool blouse" +msgid_plural "enchanted parabolan wool blouse" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for enchanted parabolan wool blouse +#: lang/json/ARMOR_from_json.py +msgid "" +"A loose iridescent blouse in a style most often associated with pirates and " +"renfaires. It shimmers as you look at it. Made of parabolan wool, it " +"sometimes dimly shows reflections of things here and not. This particular " +"one has piratical flairs and glitters with enchantment." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "enchanted parabolan wool breeches" +msgid_plural "enchanted parabolan wool breeches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for enchanted parabolan wool breeches +#: lang/json/ARMOR_from_json.py +msgid "" +"A well-made pair of old-fashioned pants, made of iridescent material. " +"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " +"parabolan wool, it sometimes dimly shows reflections of things here and not." +" This particular one has piratical flairs and gliters with enchantment." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "parabolan wool blouse" +msgid_plural "parabolan wool blouses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for parabolan wool blouse +#: lang/json/ARMOR_from_json.py +msgid "" +"A loose iridescent blouse in a style most often associated with pirates and " +"renfaires. It shimmers as you look at it. Made of parabolan wool, it " +"sometimes dimly shows reflections of things here and not." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "parabolan wool breeches" +msgid_plural "parabolan wool breeches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for parabolan wool breeches +#: lang/json/ARMOR_from_json.py +msgid "" +"A well-made pair of old-fashioned pants, made of iridescent material. " +"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " +"parabolan wool, it sometimes dimly shows reflections of things here and not." +msgstr "" + +#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py +msgid "pair of magical armored stone gauntlets" +msgid_plural "pairs of magical armored stone gauntlets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pair of magical armored stone gauntlets +#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py +msgid "A magical flexible stonelike substance for protection and attack." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "magic lamp" +msgid_plural "magic lamps" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for magic lamp +#: lang/json/ARMOR_from_json.py +msgid "A magical light source that will light up a small area." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "magic light" +msgid_plural "magic lights" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for magic light +#: lang/json/ARMOR_from_json.py +msgid "A small magical light that you can read by." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for large shield of magical ice +#: lang/json/ARMOR_from_json.py +msgid "A lightweight but tough shield crafted entirely of magical ice." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "slick icy coatings" +msgid_plural "slick icy coatings" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for slick icy coatings +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "flesh pouch" +msgid_plural "flesh pouches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for flesh pouch +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "obfuscating aura" +msgid_plural "obfuscating auras" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for obfuscating aura +#: lang/json/ARMOR_from_json.py +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 "" + +#: lang/json/ARMOR_from_json.py +msgid "acid resistance aura" +msgid_plural "acid resistance auras" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for acid resistance aura +#. ~ Description for greater acid resistance aura +#: lang/json/ARMOR_from_json.py +msgid "An all-encompassing, invisible layer of protection against acid." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lang/json/ARMOR_from_json.py +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for frost armor +#: lang/json/ARMOR_from_json.py +msgid "A thin layer of magical ice, covering the entire body." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "stoneskin coating" +msgid_plural "stoneskin coating" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for stoneskin coating +#: lang/json/ARMOR_from_json.py +msgid "" +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "overcharge burn" +msgid_plural "overcharge burns" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for overcharge burn +#: lang/json/ARMOR_from_json.py +msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "aura of protection" +msgid_plural "auras of protection" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for aura of protection +#: lang/json/ARMOR_from_json.py +msgid "" +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "aura of repelling arc" +msgid_plural "auras of repelling arc" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for aura of repelling arc +#: lang/json/ARMOR_from_json.py +msgid "" +"An invisible aura that strikes melee attackers with arcs of electricity." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "feral aura" +msgid_plural "feral auras" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for feral aura +#: lang/json/ARMOR_from_json.py +msgid "" +"The manifestation of your rage. It won't disappear until you calm down." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "acid aura" +msgid_plural "acid auras" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for acid aura +#: lang/json/ARMOR_from_json.py +msgid "" +"An aura of thin acid, swirling around your body ready to corrode when struck" +" or while striking." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "werewolf aura" +msgid_plural "werewolf auras" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for werewolf aura +#: lang/json/ARMOR_from_json.py +msgid "You have become the werewolf. Boys becoming men, men becoming wolves." +msgstr "" + +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Black Dragon Shell" +msgid_plural "Black Dragon Shells" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Black Dragon Shell +#: lang/json/ARMOR_from_json.py +msgid "" +"An aura of black and green draconic energy, swirling around your body " +"protecting you and punishing those who strike you." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "spiritual armor" +msgid_plural "spiritual armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for spiritual armor +#: lang/json/ARMOR_from_json.py +msgid "A summoned medieval armor. It glows softly and looks sturdy." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "auroral shell" +msgid_plural "auroral shell" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for auroral shell +#: lang/json/ARMOR_from_json.py +msgid "A sturdy shell that wraps your body, gaining a sturdy defense." +msgstr "" + +#: lang/json/BATTERY_from_json.py +msgid "test battery" +msgid_plural "test batteries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for test battery +#: lang/json/BATTERY_from_json.py +msgid "" +"This is a testing item for the BATTERY item type. If you found one in game," +" it's a bug." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "abstract bionic module" +msgid_plural "abstract bionic modules" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "abstract bionic module (npc usable)" +msgid_plural "abstract bionic modules (npc usable)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "abstract faulty bionic module" +msgid_plural "abstract faulty bionic modules" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for abstract faulty bionic module +#: lang/json/BIONIC_ITEM_from_json.py +msgid "This CBM is broken beyond repair, you can't do anything with it." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Adrenaline Pump CBM" +msgid_plural "Adrenaline Pump CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Adrenaline Pump CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A stimulator system that is implanted alongside the adrenal glands, allowing" +" the user to trigger their body's adrenaline response at the cost of some " +"bionic power." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Active Defense System CBM" +msgid_plural "Active Defense System CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Active Defense System CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"This bionic projects a thin forcefield around the user's body. Anything " +"attempting to penetrate this field has a chance of being deflected at the " +"cost of energy, reducing their ability to deal damage. Bullets will be " +"deflected more than swords and those in turn more than massive objects." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Alarm System CBM" +msgid_plural "Alarm System CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Alarm System CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A motion-detecting alarm system will notice almost all movement within a " +"fifteen-foot radius, and will silently alert the user. This is very useful " +"during sleep, or if the user suspects a cloaked pursuer." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Protective Lenses CBM" +msgid_plural "Protective Lenses CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Protective Lenses CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A bionic package that seals the user's eye sockets with highly protective " +"mirrored lenses and re-routes their tear ducts to their mouth. When the " +"user cries, they must spit out or swallow their tears." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Head Intradermal Alloy CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Torso Intradermal Alloy CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Battery System CBM" +msgid_plural "Battery System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -26799,7 +26810,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -27261,7 +27272,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -27487,7 +27498,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -28885,7 +28896,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -29146,7 +29157,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -29187,7 +29198,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -29203,7 +29214,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -29211,9 +29222,9 @@ msgstr[2] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -29231,7 +29242,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -29247,7 +29258,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -29263,7 +29274,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -29278,7 +29289,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -29293,7 +29304,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -29308,7 +29319,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -29323,7 +29334,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -29338,7 +29349,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -29353,7 +29364,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -29368,7 +29379,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -29383,7 +29394,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -29399,7 +29410,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -29415,7 +29426,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -29430,7 +29441,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -30072,7 +30083,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "" @@ -30084,7 +30095,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -30097,7 +30108,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "" @@ -30109,7 +30120,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "" @@ -30121,7 +30132,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "" @@ -30133,7 +30144,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "" @@ -30145,7 +30156,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "" @@ -30157,7 +30168,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "" @@ -30169,7 +30180,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "" @@ -30181,7 +30192,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "" @@ -30193,7 +30204,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "" @@ -30205,7 +30216,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "" @@ -30217,7 +30228,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "" @@ -30229,7 +30240,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "" @@ -30241,7 +30252,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "" @@ -30253,7 +30264,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -30267,7 +30278,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "" @@ -30279,7 +30290,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "" @@ -30291,7 +30302,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "" @@ -30303,7 +30314,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "" @@ -30315,7 +30326,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -30327,7 +30338,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" @@ -30339,7 +30350,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "" @@ -30351,7 +30362,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "" @@ -30363,7 +30374,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "" @@ -30375,7 +30386,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "" @@ -30387,7 +30398,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "" @@ -30399,7 +30410,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -30412,7 +30423,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -30427,7 +30438,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -30595,7 +30606,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -31529,7 +31540,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -31541,7 +31552,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -35143,7 +35154,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -35159,7 +35170,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -35175,7 +35186,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -35191,7 +35202,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -35207,7 +35218,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -35451,7 +35462,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -35463,7 +35474,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -35475,7 +35486,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -35489,7 +35500,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -35501,7 +35512,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -35515,7 +35526,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -35530,7 +35541,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -35542,7 +35553,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -35556,7 +35567,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -35568,7 +35579,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -35597,6 +35608,22 @@ msgstr[2] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -37834,7 +37861,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -37895,7 +37922,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" @@ -37903,7 +37930,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -37917,7 +37944,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -37931,7 +37958,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -37943,7 +37970,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -37955,7 +37982,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -37969,7 +37996,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -37983,7 +38010,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "" @@ -37995,7 +38022,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -38019,7 +38046,7 @@ msgstr[0] "sumporna kiselina" msgstr[1] "sumporne kiseline" msgstr[2] "sumpornih kiselina" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -38039,7 +38066,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -38054,7 +38081,7 @@ msgstr[0] "azotna kiselina" msgstr[1] "azotne kiseline" msgstr[2] "azotnih kiselina" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -38087,7 +38114,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -38099,7 +38126,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -38113,7 +38140,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -38129,7 +38156,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -38145,7 +38172,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -38160,7 +38187,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -38177,7 +38204,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -38191,7 +38218,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -38206,7 +38233,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -38222,7 +38249,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -38236,7 +38263,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -38250,7 +38277,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -38264,7 +38291,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -38276,7 +38303,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -38359,13 +38386,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -38408,7 +38447,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -38420,7 +38459,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" @@ -38432,7 +38471,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "" @@ -38444,7 +38483,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -38458,7 +38497,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -38472,7 +38511,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -38484,7 +38523,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -38498,7 +38537,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -38510,7 +38549,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -38523,7 +38562,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -38537,7 +38576,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -38551,7 +38590,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -38565,7 +38604,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -38579,7 +38618,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -38591,7 +38630,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "" @@ -38603,7 +38642,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -38615,7 +38654,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -38627,7 +38666,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -38640,7 +38679,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -38654,7 +38693,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -38668,7 +38707,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -38697,7 +38736,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "" @@ -38709,7 +38748,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -38721,7 +38760,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -38735,7 +38774,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -38748,7 +38787,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -38762,7 +38801,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -38774,7 +38813,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -38788,7 +38827,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -38800,7 +38839,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -38815,7 +38854,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -38829,7 +38868,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -38843,7 +38882,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -38857,7 +38896,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -38869,7 +38908,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -38883,7 +38922,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -38927,7 +38966,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "" @@ -38939,7 +38978,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -38951,7 +38990,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -38963,7 +39002,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -38975,7 +39014,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -38988,7 +39027,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -39002,7 +39041,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -39014,7 +39053,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "" @@ -39026,7 +39065,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -39040,7 +39079,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -39138,7 +39177,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -39150,7 +39189,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -39162,7 +39201,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -39176,7 +39215,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -39190,7 +39229,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "" @@ -39202,7 +39241,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "" @@ -39214,7 +39253,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -39228,7 +39267,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -39240,7 +39279,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -39254,7 +39293,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -39267,7 +39306,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -39279,7 +39318,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -39293,7 +39332,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "" @@ -39329,7 +39368,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -39355,7 +39394,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -39370,7 +39409,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -39382,7 +39421,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -39666,18 +39705,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -39689,8 +39728,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -39704,14 +39743,14 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -39723,7 +39762,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -39754,7 +39793,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "" @@ -39863,7 +39902,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -39973,7 +40012,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -40015,7 +40054,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -40067,7 +40106,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -40159,7 +40198,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -40174,7 +40213,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -40186,7 +40225,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -40201,7 +40240,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -40239,8 +40278,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" @@ -40248,8 +40286,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" @@ -40257,8 +40294,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" @@ -40266,7 +40302,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -40279,7 +40315,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -40292,7 +40328,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" @@ -40300,8 +40336,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" @@ -40309,18 +40344,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -40343,7 +40373,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -40401,7 +40431,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -40457,7 +40487,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -40469,7 +40499,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -40556,7 +40586,7 @@ msgstr[2] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -40719,7 +40749,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -40978,7 +41008,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -41091,7 +41121,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -41103,7 +41133,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -41143,6 +41173,34 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" @@ -41150,7 +41208,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -41165,7 +41223,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -41179,7 +41237,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -41191,7 +41249,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -41204,7 +41262,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -41218,7 +41276,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -41232,7 +41290,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -41246,7 +41304,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -41260,7 +41318,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -41288,7 +41346,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -41314,7 +41372,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -41340,7 +41398,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -41352,7 +41410,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -41364,7 +41422,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -41378,7 +41436,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -41394,7 +41452,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -41409,7 +41467,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -41422,7 +41480,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -41448,7 +41506,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -41461,7 +41519,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -41474,7 +41532,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -41514,7 +41572,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -41528,7 +41586,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "" @@ -41552,7 +41610,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -41564,7 +41622,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -41578,7 +41636,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -41592,7 +41650,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -41604,7 +41662,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "" @@ -41644,7 +41702,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -41659,7 +41717,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -41685,7 +41743,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" @@ -41697,7 +41755,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -41725,7 +41783,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -41740,7 +41798,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -41755,7 +41813,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -41831,7 +41889,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -41843,7 +41901,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -41902,7 +41960,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -41914,7 +41972,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -41966,7 +42024,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -41994,7 +42052,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -42006,7 +42064,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -42072,7 +42130,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -42113,7 +42171,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -42153,13 +42211,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -42187,7 +42245,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "" @@ -42213,7 +42271,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -42253,7 +42311,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -42267,7 +42325,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -42279,7 +42337,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -42418,7 +42476,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -42430,7 +42488,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -42457,7 +42515,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -42471,7 +42529,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -42485,7 +42543,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -42499,7 +42557,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "" @@ -42511,7 +42569,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -42523,7 +42581,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -42537,7 +42595,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "" @@ -42549,7 +42607,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -42926,7 +42984,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "" @@ -42950,7 +43008,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -42964,7 +43022,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -42978,7 +43036,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -42992,7 +43050,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -43199,7 +43257,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -43275,7 +43333,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -43299,7 +43357,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -43337,7 +43395,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -43352,7 +43410,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -43379,7 +43437,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -43393,7 +43451,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -43419,7 +43477,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -43839,7 +43897,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -43895,7 +43953,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -43951,7 +44009,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -43965,7 +44023,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -44080,12 +44138,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -44097,7 +44155,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -44111,7 +44169,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -44125,7 +44183,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "" @@ -44137,7 +44195,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -44149,7 +44207,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "" @@ -44185,7 +44243,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -44197,7 +44255,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -44235,7 +44293,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -44247,12 +44305,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -44304,7 +44362,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -44384,7 +44442,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -44398,7 +44456,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -44451,7 +44509,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -44463,7 +44521,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -44487,7 +44545,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -44515,8 +44573,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "" @@ -44528,7 +44586,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "" @@ -44540,7 +44598,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -44554,7 +44612,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -44568,8 +44626,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" @@ -44577,8 +44634,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" @@ -44586,8 +44642,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" @@ -44595,7 +44650,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -44609,8 +44664,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" @@ -44618,8 +44673,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" @@ -44627,8 +44682,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" @@ -44636,7 +44691,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -44650,7 +44705,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -44664,7 +44719,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -44744,7 +44799,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" @@ -44756,7 +44811,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -44838,7 +44893,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "" @@ -44933,8 +44988,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -45088,7 +45142,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" @@ -45096,8 +45150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" @@ -45105,17 +45158,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -45136,8 +45184,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" @@ -45145,7 +45192,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -45166,8 +45213,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" @@ -45175,7 +45221,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -45208,7 +45254,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" @@ -45216,8 +45262,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" @@ -45225,8 +45270,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -45249,7 +45293,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -45304,7 +45348,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -45318,8 +45362,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -45328,7 +45371,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -45343,7 +45386,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -45352,8 +45395,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -45362,8 +45404,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -45386,9 +45427,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -45397,9 +45437,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -45408,9 +45447,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -45434,7 +45472,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -45448,7 +45486,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -45462,7 +45500,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -45475,7 +45513,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -45489,7 +45527,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -45525,8 +45563,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -45549,7 +45586,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -45558,8 +45595,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -45568,8 +45604,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -45578,7 +45613,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -45608,7 +45643,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -45649,8 +45684,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" @@ -45658,8 +45692,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" @@ -45667,8 +45701,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -45691,7 +45724,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -45700,8 +45733,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -45710,8 +45742,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -45720,7 +45751,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -45735,8 +45766,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" @@ -45744,7 +45774,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -45753,8 +45783,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -45789,8 +45818,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" @@ -45798,8 +45826,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" @@ -45807,8 +45835,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -45828,7 +45855,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -45842,7 +45869,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "" @@ -45854,7 +45881,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "" @@ -45878,7 +45905,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -45902,8 +45929,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" @@ -45911,8 +45937,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -45934,8 +45959,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" @@ -45943,7 +45967,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" @@ -45955,8 +45979,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" @@ -45964,7 +45987,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" @@ -45976,8 +45999,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" @@ -45985,7 +46008,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -45999,7 +46022,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" @@ -46007,8 +46030,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" @@ -46016,7 +46038,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -46037,7 +46059,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" @@ -46045,8 +46067,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" @@ -46054,8 +46075,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -46090,8 +46110,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" @@ -46099,8 +46118,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" @@ -46108,8 +46127,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" @@ -46117,7 +46136,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -46131,7 +46150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" @@ -46139,8 +46158,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -46162,8 +46180,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" @@ -46171,7 +46188,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -46192,8 +46209,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" @@ -46201,7 +46217,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -46210,8 +46226,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -46220,7 +46235,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -46232,7 +46247,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -46241,8 +46256,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -46251,7 +46265,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -46274,7 +46288,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" @@ -46286,8 +46300,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -46296,7 +46309,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -46306,8 +46319,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -46344,7 +46356,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" @@ -46352,8 +46364,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" @@ -46361,8 +46372,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -46383,7 +46393,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" @@ -46391,8 +46401,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" @@ -46400,8 +46409,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -46424,7 +46432,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -46433,8 +46441,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -46443,7 +46450,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -46466,8 +46473,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" @@ -46475,7 +46481,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -46497,10 +46503,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -46509,12 +46513,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -46551,9 +46554,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -46578,7 +46580,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -46592,8 +46594,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -46602,7 +46603,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -46616,7 +46617,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -46642,7 +46643,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -46665,8 +46666,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -46689,8 +46689,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" @@ -46698,7 +46697,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -46719,7 +46718,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" @@ -46727,8 +46726,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -46768,12 +46766,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -46823,7 +46821,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -46852,7 +46850,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -46936,7 +46934,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -46996,7 +46994,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -47052,12 +47050,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -47072,7 +47070,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -47117,7 +47115,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -47132,12 +47130,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -47151,7 +47149,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -47166,7 +47164,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -47191,7 +47189,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -47205,12 +47203,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -47228,12 +47226,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -47250,12 +47248,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -47270,16 +47268,14 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -47294,7 +47290,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -47309,7 +47305,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -47324,7 +47320,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -47339,7 +47335,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -47354,7 +47350,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -47370,7 +47366,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -47386,7 +47382,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -47401,7 +47397,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -47416,12 +47412,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -47506,7 +47502,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -47533,13 +47529,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -47620,7 +47616,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -47635,7 +47631,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -47692,7 +47688,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -47725,7 +47721,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -47773,7 +47769,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -47785,15 +47781,14 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -47809,7 +47804,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -47843,7 +47838,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -47871,7 +47866,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -48135,12 +48130,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -48155,7 +48150,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -48184,7 +48179,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -48198,7 +48193,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -48269,7 +48264,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -48285,7 +48280,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -48800,7 +48795,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -49069,9 +49064,8 @@ msgstr[2] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -49144,7 +49138,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -49281,7 +49275,8 @@ msgstr[2] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -49436,7 +49431,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" @@ -49448,7 +49443,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -49462,7 +49457,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -49475,7 +49470,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -49487,7 +49482,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -49499,7 +49494,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -49512,7 +49507,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -49524,7 +49519,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "" @@ -49536,7 +49531,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -49550,7 +49545,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -49562,7 +49557,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -49574,7 +49569,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -49586,7 +49581,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -49600,7 +49595,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -49612,7 +49607,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -49626,7 +49621,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -49638,7 +49633,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -49652,7 +49647,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -49664,7 +49659,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -49676,7 +49671,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -49688,7 +49683,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -49702,7 +49697,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -49764,7 +49759,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -49778,7 +49773,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -49790,7 +49785,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -49804,7 +49799,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -49817,7 +49812,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "" @@ -49877,7 +49872,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -50108,7 +50103,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -50138,7 +50133,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -50151,7 +50146,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -50163,7 +50158,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -50176,7 +50171,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -50188,7 +50183,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -50200,7 +50195,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -50251,7 +50246,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -50265,7 +50260,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "" @@ -50277,8 +50272,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -50299,7 +50294,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -50311,7 +50306,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -50339,7 +50334,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -50352,7 +50347,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -50367,7 +50362,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -50379,7 +50374,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -50391,7 +50386,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -50405,7 +50400,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -50419,7 +50414,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -50461,7 +50456,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -50475,7 +50470,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -50489,7 +50484,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -50503,7 +50498,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -50517,7 +50512,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -50531,7 +50526,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -50668,7 +50663,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -50710,8 +50705,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" @@ -50719,7 +50713,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -50728,14 +50722,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -50758,8 +50749,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" @@ -50767,7 +50757,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -50776,7 +50766,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -50807,8 +50797,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" @@ -50816,7 +50805,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -50839,7 +50828,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -50848,7 +50837,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -50921,7 +50910,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -50933,7 +50922,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" @@ -50945,7 +50934,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "" @@ -50957,7 +50946,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "" @@ -50969,7 +50958,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -50981,7 +50970,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -50995,7 +50984,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -51007,7 +50996,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "" @@ -51057,7 +51046,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "" @@ -51082,7 +51071,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -51154,7 +51143,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "" @@ -51215,7 +51204,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "" @@ -51260,7 +51249,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -51273,7 +51262,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "" @@ -51285,7 +51274,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -51311,7 +51300,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -51364,7 +51353,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -51390,7 +51379,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "" @@ -51402,7 +51391,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -51468,7 +51457,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -51483,7 +51472,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -51616,7 +51605,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -51656,7 +51645,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -51670,7 +51659,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -51684,7 +51673,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -51790,7 +51779,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -51828,7 +51817,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -51842,7 +51831,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -51854,7 +51843,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -51894,8 +51883,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -51910,6 +51898,29 @@ msgid "" "nutritious!" msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -51977,7 +51988,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -52029,8 +52040,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" @@ -52038,8 +52048,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" @@ -52047,10 +52057,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -52177,7 +52185,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -52189,7 +52197,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "" @@ -52205,7 +52213,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "" @@ -52221,7 +52229,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "" @@ -52237,7 +52245,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "" @@ -52253,7 +52261,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -52269,7 +52277,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -52285,7 +52293,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -52301,7 +52309,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "" @@ -52317,7 +52325,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "" @@ -52333,7 +52341,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -52349,7 +52357,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -52365,7 +52373,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -52381,7 +52389,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "" @@ -52393,7 +52401,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "" @@ -52405,7 +52413,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "" @@ -52417,7 +52425,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "" @@ -52429,7 +52437,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "" @@ -52441,7 +52449,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -52457,7 +52465,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "" @@ -52469,7 +52477,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "" @@ -52481,7 +52489,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "" @@ -52493,7 +52501,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "" @@ -52509,7 +52517,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -52525,7 +52533,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -52541,7 +52549,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -52553,7 +52561,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -52565,7 +52573,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -52577,7 +52585,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -52595,7 +52603,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -52623,7 +52631,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "" @@ -52635,7 +52643,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "" @@ -52651,7 +52659,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "" @@ -52663,7 +52671,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "" @@ -52691,7 +52699,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -52724,7 +52732,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -52740,7 +52748,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -52749,7 +52757,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -52765,7 +52773,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -52784,7 +52792,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -52796,7 +52804,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -52808,7 +52816,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -52828,7 +52836,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -52840,7 +52848,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -52852,7 +52860,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -52864,7 +52872,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -52876,7 +52884,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -52892,7 +52900,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -52908,7 +52916,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -52924,7 +52932,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -52940,7 +52948,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -52952,7 +52960,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -52964,7 +52972,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -52983,7 +52991,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "" @@ -52995,7 +53003,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "" @@ -53014,7 +53022,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "" @@ -53033,7 +53041,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -53061,7 +53069,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "" @@ -53073,7 +53081,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -53085,7 +53093,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -53101,7 +53109,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -53117,7 +53125,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -53129,7 +53137,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -53141,7 +53149,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -53153,7 +53161,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -53177,8 +53185,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -53211,7 +53218,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" @@ -53219,8 +53226,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -53264,8 +53270,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -53285,10 +53290,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -53356,7 +53359,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" @@ -53382,7 +53385,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -53396,7 +53399,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -53410,7 +53413,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -53422,7 +53425,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -53436,7 +53439,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "" @@ -53448,7 +53451,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -53462,7 +53465,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -53474,7 +53477,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -53486,7 +53489,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -53500,7 +53503,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -53516,7 +53519,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -53530,7 +53533,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "" @@ -53547,7 +53550,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -53601,7 +53604,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -53615,7 +53618,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" @@ -53627,7 +53630,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -53640,7 +53643,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -53652,7 +53655,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -53692,7 +53695,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -53717,7 +53720,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -53730,7 +53733,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "" @@ -53742,7 +53745,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -53754,7 +53757,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -53766,7 +53769,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -53780,7 +53783,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "" @@ -53792,7 +53795,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" @@ -53804,7 +53807,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -53818,7 +53821,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "" @@ -53830,7 +53833,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "" @@ -53842,7 +53845,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -53856,7 +53859,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -53868,7 +53871,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -53882,7 +53885,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -53959,7 +53962,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" @@ -53999,7 +54002,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "" @@ -54024,7 +54027,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -54066,7 +54069,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -54092,7 +54095,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -54174,7 +54177,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -54186,7 +54189,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -54200,7 +54203,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -54228,7 +54231,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -54254,7 +54257,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -54266,7 +54269,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -54285,7 +54288,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "" @@ -54297,7 +54300,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -54311,7 +54314,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -54325,7 +54328,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "" @@ -54337,7 +54340,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -54349,7 +54352,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -54361,7 +54364,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "" @@ -54373,7 +54376,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -54387,14 +54390,14 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "" @@ -54406,7 +54409,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -54420,7 +54423,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -54513,7 +54516,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -54551,7 +54554,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -54577,7 +54580,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -54786,7 +54789,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -54798,7 +54801,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -54810,7 +54813,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -54822,7 +54825,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -54834,7 +54837,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -54846,7 +54849,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -54899,7 +54902,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -54949,7 +54952,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -54963,7 +54966,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -55007,7 +55010,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -55126,7 +55129,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -55141,7 +55144,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -55238,7 +55241,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -55253,7 +55256,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -55268,7 +55271,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -55281,7 +55284,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -55295,7 +55298,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -55354,7 +55357,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -55371,7 +55374,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -55386,7 +55389,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -55401,7 +55404,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -55466,7 +55469,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -55481,7 +55484,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -55494,7 +55497,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -55520,7 +55523,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -55548,7 +55551,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -55563,7 +55566,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -55580,7 +55583,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -55624,7 +55627,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -55691,7 +55694,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -55713,7 +55716,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -56017,8 +56020,8 @@ msgstr[1] "" msgstr[2] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -56030,6 +56033,20 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -56079,6 +56096,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -56219,6 +56243,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -56261,27 +56292,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -56605,7 +56615,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -56676,7 +56686,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -56740,14 +56750,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -56832,7 +56842,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -56841,7 +56851,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -56854,7 +56864,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -56866,7 +56876,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -56880,7 +56890,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -56900,7 +56910,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -56915,7 +56925,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -57564,7 +57574,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -57576,7 +57586,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -57590,7 +57600,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -57630,7 +57640,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -57642,7 +57652,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -57654,7 +57664,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -57666,7 +57676,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -57678,7 +57688,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -57690,7 +57700,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -57702,7 +57712,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -57714,7 +57724,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -58023,6 +58033,19 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -58035,6 +58058,20 @@ msgstr[2] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -58869,7 +58906,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -58881,7 +58918,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -59102,6 +59139,31 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -59327,7 +59389,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" @@ -59638,7 +59700,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -59791,7 +59853,7 @@ msgstr[0] "beton" msgstr[1] "betona" msgstr[2] "betona" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "Određena količina betona, spremna za upotrebu u građevini." @@ -60699,7 +60761,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -60840,7 +60902,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -60868,7 +60930,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -60906,7 +60968,7 @@ msgstr[0] "malter" msgstr[1] "maltera" msgstr[2] "maltera" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "Određena količina maltera, spremna za upotrebu u građevini." @@ -60956,7 +61018,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -60970,7 +61032,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -60994,7 +61056,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -61452,7 +61514,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -61786,7 +61848,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -61811,7 +61873,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -62213,6 +62275,105 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -62955,7 +63116,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -63104,7 +63265,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63118,7 +63279,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63151,7 +63312,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63168,7 +63329,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63185,7 +63346,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63202,7 +63363,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63219,7 +63380,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63236,7 +63397,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63253,7 +63414,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63270,7 +63431,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63287,7 +63448,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63304,7 +63465,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63321,7 +63482,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63338,7 +63499,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63355,7 +63516,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63372,7 +63533,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63389,7 +63550,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63406,8 +63567,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63424,7 +63584,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63441,7 +63601,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63458,7 +63618,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63475,7 +63635,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63492,7 +63652,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63509,8 +63669,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -63534,7 +63693,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -63546,7 +63705,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "" @@ -63558,7 +63717,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "" @@ -63570,7 +63729,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "" @@ -63582,7 +63741,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "" @@ -63594,7 +63753,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -63606,7 +63765,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -63618,7 +63777,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -63924,6 +64083,20 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" @@ -63931,9 +64104,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" @@ -63941,7 +64113,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -63950,7 +64122,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -64196,7 +64368,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -64552,6 +64724,104 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -66401,7 +66671,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -66487,7 +66757,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -67129,7 +67399,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -67137,14 +67407,14 @@ msgid "" "edge, it's still quite capable of inflicting deadly wounds." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -67727,7 +67997,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -67966,7 +68236,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -68014,7 +68284,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -68022,7 +68292,7 @@ msgid "" "or by their wives in defense of the household." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -68030,7 +68300,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -68045,7 +68315,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -68185,7 +68455,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -68249,6 +68519,21 @@ msgid "" "offers a good bit of slashing power." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -68257,7 +68542,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -68346,14 +68631,14 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -68368,14 +68653,14 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -68523,7 +68808,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -68596,7 +68881,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -68666,7 +68951,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -68918,6 +69203,21 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" @@ -68925,7 +69225,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -68942,7 +69242,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -68989,7 +69289,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -69301,7 +69601,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -69584,7 +69884,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -69817,17 +70117,17 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -71104,7 +71404,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -71128,7 +71428,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -71140,7 +71440,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -72066,7 +72366,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -72081,7 +72381,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "" @@ -72093,7 +72393,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -72117,7 +72417,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "" @@ -72129,7 +72429,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -72154,7 +72454,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -72396,12 +72696,20 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -72540,6 +72848,18 @@ msgstr[2] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -73011,7 +73331,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -73074,7 +73394,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -73390,7 +73710,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -73404,7 +73724,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -73535,7 +73855,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -73547,7 +73867,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -73752,7 +74072,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73766,7 +74086,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73780,7 +74100,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73794,7 +74114,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73808,7 +74128,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73822,7 +74142,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -73836,7 +74156,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73850,7 +74170,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73864,7 +74184,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73878,7 +74198,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73892,7 +74212,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -73906,7 +74226,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -74023,7 +74343,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -74051,7 +74371,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -74065,7 +74385,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -74093,7 +74413,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -74129,7 +74449,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -74503,7 +74823,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -75272,7 +75592,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -76882,7 +77202,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -77109,7 +77429,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -77238,7 +77558,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -77252,7 +77572,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -78055,6 +78375,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -78199,8 +78530,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -78563,6 +78894,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -78989,7 +79325,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -79001,7 +79337,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -79013,7 +79349,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -79025,7 +79361,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -79037,7 +79373,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -79184,7 +79520,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -79198,7 +79534,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -79210,7 +79546,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -79224,7 +79560,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -79238,7 +79574,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -79278,7 +79614,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -79290,7 +79626,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -79315,7 +79651,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -79327,7 +79663,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -79339,7 +79675,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -79351,7 +79687,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -79363,7 +79699,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -79377,7 +79713,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -79415,7 +79751,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -79427,7 +79763,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -79532,7 +79868,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -79561,7 +79897,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -79594,7 +79930,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -79608,7 +79944,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -79622,7 +79958,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -80322,7 +80658,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -80523,7 +80859,7 @@ msgstr[2] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -82290,7 +82626,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -82499,7 +82835,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -82669,7 +83005,7 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -82974,10 +83310,11 @@ msgstr[2] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -82988,6 +83325,18 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -85359,7 +85708,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -85375,7 +85724,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -85563,7 +85912,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -85690,17 +86039,18 @@ msgstr[2] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -86162,7 +86512,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -86209,7 +86559,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -86224,7 +86574,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -86737,7 +87087,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -88725,7 +89075,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -89305,7 +89655,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -89319,7 +89669,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -89333,7 +89683,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -89348,7 +89698,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -89363,7 +89713,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -89377,7 +89727,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -89392,13 +89742,27 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" @@ -89406,7 +89770,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -89420,7 +89784,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -89434,7 +89798,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -89448,7 +89812,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -89462,7 +89826,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -89490,7 +89854,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -89504,7 +89868,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -89546,7 +89910,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -89560,7 +89924,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -89574,7 +89938,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -89588,7 +89952,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -89600,7 +89964,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -89614,7 +89978,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -89628,7 +89992,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -89642,7 +90006,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -89656,7 +90020,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -89669,7 +90033,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -89683,7 +90047,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -89697,7 +90061,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -89710,7 +90074,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -89724,7 +90088,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -89738,7 +90102,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -89750,7 +90114,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -89764,7 +90128,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -89778,7 +90142,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -89790,7 +90154,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -89804,7 +90168,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -89818,7 +90182,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -89832,7 +90196,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -89847,7 +90211,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -89861,7 +90225,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -89875,7 +90239,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -89889,7 +90253,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -89903,7 +90267,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -89917,7 +90281,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -89931,7 +90295,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -89945,7 +90309,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -89959,7 +90323,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -89973,7 +90337,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -89987,7 +90351,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -90001,7 +90365,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -90015,7 +90379,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -90124,6 +90488,21 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -90677,22 +91056,22 @@ msgstr[1] "" msgstr[2] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -90761,7 +91140,6 @@ msgstr[1] "" msgstr[2] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -90783,27 +91161,95 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -91045,6 +91491,20 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -91164,7 +91624,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -91657,6 +92117,7 @@ msgstr[2] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -91711,6 +92172,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -92154,6 +92622,20 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -92189,7 +92671,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -92203,7 +92685,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -92218,7 +92700,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -92280,7 +92762,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -92348,7 +92830,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -92609,13 +93091,27 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -92624,71 +93120,72 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -92696,13 +93193,13 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -92711,13 +93208,13 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -92726,17 +93223,17 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -92768,7 +93265,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -92782,7 +93279,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -92796,7 +93294,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -92810,13 +93308,20 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" @@ -92824,7 +93329,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -92838,7 +93343,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -92866,7 +93371,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -92879,7 +93384,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -92893,8 +93398,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -92915,7 +93420,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -92930,7 +93435,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -92944,7 +93449,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -92958,7 +93463,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -92972,7 +93477,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -92986,7 +93491,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -93000,7 +93505,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -93014,7 +93519,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -93028,7 +93533,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -93043,7 +93548,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -93058,7 +93563,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -93072,7 +93577,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -93086,7 +93591,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -93100,7 +93605,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -93114,7 +93619,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -93128,7 +93633,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -93142,7 +93647,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -93156,7 +93661,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -93170,7 +93675,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -93184,7 +93689,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -93198,7 +93703,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -93212,7 +93717,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -93226,7 +93731,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -93240,7 +93745,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -93255,7 +93760,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -93270,7 +93775,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -93284,7 +93789,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -93298,7 +93803,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -93342,7 +93847,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -93359,7 +93864,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -93693,7 +94198,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -94020,7 +94525,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -94162,6 +94667,23 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -94460,7 +94982,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -94762,7 +95284,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -99889,7 +100411,7 @@ msgstr[2] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -99933,7 +100455,7 @@ msgstr "" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -100893,7 +101415,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -101518,17 +102040,17 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -101537,7 +102059,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -101775,7 +102297,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -101790,6 +102311,14 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -102159,7 +102688,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -102827,7 +103356,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -102907,7 +103436,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -103710,7 +104239,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -105607,7 +106136,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -105615,7 +106144,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -105703,7 +106232,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -105756,7 +106285,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -105764,7 +106293,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -105797,7 +106326,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -105889,14 +106418,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -105910,7 +106439,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -106081,7 +106610,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -106876,7 +107405,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -109330,8 +109859,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -110058,6 +110587,42 @@ msgstr[2] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -110803,7 +111368,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -110815,7 +111380,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -110862,6 +111427,34 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -111441,7 +112034,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -111456,7 +112049,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -111966,8 +112559,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -111976,8 +112569,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -111986,8 +112579,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -111996,8 +112589,8 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -112006,7 +112599,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -112477,7 +113070,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -112720,13 +113313,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -112740,13 +113333,13 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -113242,6 +113835,22 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -113544,13 +114153,29 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -113608,6 +114233,35 @@ msgid "" "to have the right tools for more precise work." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -113742,19 +114396,49 @@ msgid "" msgstr "" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -114072,37 +114756,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -114134,6 +114787,13 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -114370,8 +115030,8 @@ msgstr[2] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -114842,7 +115502,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -115284,7 +115944,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -115331,7 +115991,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -115350,7 +116010,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -116437,6 +117097,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -116492,6 +117161,30 @@ msgstr[2] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -117420,7 +118113,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -117897,6 +118590,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -118768,15 +119465,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" +msgid "Intradermal Alloy - Arms" msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -118792,37 +119488,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" +msgid "Intradermal Alloy - Legs" msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -118833,8 +119528,8 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -124352,7 +125047,7 @@ msgstr "" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -129208,8 +129903,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "" @@ -129225,9 +129919,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "" @@ -129903,7 +130596,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "" @@ -132178,7 +132871,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "" @@ -132300,6 +132994,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -134929,15 +135637,15 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -135087,17 +135795,17 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -136141,15 +136849,15 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -138586,6 +139294,20 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -141277,8 +141999,9 @@ msgstr[2] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -141291,10 +142014,10 @@ msgstr[2] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -141834,17 +142557,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -144172,6 +144899,11 @@ msgid "" "the punishment of combat." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -145015,6 +145747,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "" @@ -145183,6 +145922,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -146295,6 +147038,10 @@ msgstr "" msgid "Move cursor down" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -146495,6 +147242,20 @@ msgstr "" msgid "No" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -147979,14 +148740,14 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -148053,14 +148814,14 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -148725,14 +149486,14 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -152329,6 +153090,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -152751,8 +153522,8 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -152776,7 +153547,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -152790,7 +153562,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -152803,9 +153575,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "" @@ -152965,7 +153766,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -152980,7 +153781,8 @@ msgstr "" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -153010,17 +153812,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -153031,10 +153832,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -153045,9 +153860,10 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -153062,33 +153878,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"\n" +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -153179,6 +154016,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "" @@ -153236,7 +154087,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -153250,8 +154101,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -153265,6 +154117,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -153316,6 +154169,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "" @@ -153401,6 +154267,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "" @@ -153547,6 +154428,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "" @@ -153883,16 +154779,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -153995,7 +154892,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -154102,33 +154999,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -154249,7 +155146,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -154447,6 +155344,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -154507,10 +155419,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -154611,10 +155524,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -155258,7 +156172,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -155268,11 +156197,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -155366,6 +156296,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -155378,21 +156322,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -155470,6 +156415,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -157102,7 +158061,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -157297,7 +158256,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -157502,7 +158461,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -157556,8 +158515,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -157717,7 +158675,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -157731,7 +158689,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -157770,7 +158728,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -157805,7 +158763,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -157836,7 +158794,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -157878,7 +158836,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -157920,16 +158878,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -157976,7 +158968,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -158026,7 +159018,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -158068,7 +159060,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -158117,7 +159109,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -158144,7 +159136,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -158179,7 +159171,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -159045,7 +160037,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -159080,7 +160072,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -159117,7 +160109,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -159152,7 +160144,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -159180,7 +160172,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -159232,7 +160224,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -159263,7 +160255,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -159292,7 +160284,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -159322,7 +160314,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -159591,8 +160583,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -159993,7 +160984,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -160034,7 +161025,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -160061,7 +161052,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -160143,7 +161134,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -160180,7 +161171,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -160224,7 +161215,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -160273,7 +161264,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -160315,7 +161306,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -160356,7 +161347,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -160391,7 +161382,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -160436,7 +161427,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -160447,6 +161438,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -160593,7 +161642,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -160648,7 +161697,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -160687,7 +161736,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -160724,11 +161773,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -160754,15 +161855,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -160819,7 +161916,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -160869,7 +161966,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -160914,7 +162011,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -160955,11 +162052,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -161002,7 +162100,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -161050,7 +162148,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -161094,7 +162192,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -162753,7 +163851,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -162772,7 +163870,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -162799,7 +163897,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -162833,7 +163931,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -162880,7 +163978,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -163656,6 +164754,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -164348,13 +165470,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -165084,6 +166206,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -165992,7 +167136,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -166003,6 +167146,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -166134,7 +167284,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -166378,8 +167528,8 @@ msgstr "" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" #: lang/json/mutation_from_json.py @@ -169356,8 +170506,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -169597,7 +170747,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -169606,7 +170756,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -169615,7 +170765,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -169624,7 +170774,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -169642,7 +170792,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -169651,7 +170801,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -169660,7 +170810,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -169669,7 +170819,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -169687,7 +170837,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -169696,7 +170846,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -169706,7 +170856,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -169716,7 +170866,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -169746,7 +170896,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -169755,7 +170905,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -169764,7 +170914,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -169773,7 +170923,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -170271,7 +171421,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -170390,7 +171540,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -174899,6 +176049,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -174934,6 +176085,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -175492,6 +176651,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -175627,6 +176794,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -175795,6 +176966,10 @@ msgstr "" msgid "Guard" msgstr "" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "" @@ -175963,6 +177138,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -176898,6 +178077,10 @@ msgstr "" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -177587,6 +178770,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -177595,24 +178782,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -177979,6 +179182,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -179435,6 +180642,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -179545,6 +180806,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -179581,7 +180870,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -179594,7 +180883,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -180187,6 +181476,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -180443,6 +181758,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -180569,6 +181938,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -180617,6 +182014,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -180639,6 +182064,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -185193,6 +186670,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -189543,6 +191078,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -190407,4398 +191964,5871 @@ msgid "" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the northern part of the camp." +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "stone shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle and daub shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"eastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northeastern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"western part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southwestern part of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need to barricade front windows, let's build wooden walls over them." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden barricades" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need to barricade front windows, let's build mi-go resin walls over them." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin barricades" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We could build butchery rack to start hunting larger animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "butchery rack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should reinforce front doors to make this base safer." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "reinforce doors" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey military helipad garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "military helipad garage survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a root cellar will help us preserving fish and other food." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We must barricade windows, let's use wooden walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We must barricade windows, let's use resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "resin barricades" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Building a butchery rack will allow us hunting bigger animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should reinforce doors to further secure our base." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 1. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 1. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 2. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 2. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 3. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 3. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 4. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 4. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 5. pair of mattress beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 5. pair of mattress beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 1. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 1. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 2. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 2. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 3. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 3. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 4. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 4. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build 5. pair of straw beds in place of desks." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build 5. pair of straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey Light Industry Workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "expansion survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's add a drop hammer for even more crafting possibilities." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "drop hammer" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's remove plants from garden and plow a few plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare garden" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a radio tower and console" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's entrance." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "entrance survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's swimming pool." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "swimming pool survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bedrooms." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bedrooms survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's???." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "??? survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's library." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "library survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bedroom survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's living rooms." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "living rooms survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "swimming survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bar." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "bar survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bunk bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build another bunk bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "another bunk bed" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Digging a well will give us easy access to water and allow us to start small" +" farm." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's plow some plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "small farm" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could try to fix reactor's controller to power lights, it would really " +"help us in planning missions." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix reactor's controller" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's set up a radio tower to improve our recruitment efforts, we will " +"redirect some power into it from nuclear reactor." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal shack with a metal roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth shack with a sod roof for our blacksmith's " +"workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a stone shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "stone blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle and daub shack with a sod roof for our blacksmith's " +"workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle and daub blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wooden shack with a wooden roof for our blacksmith's workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden blacksmith workshop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock forge and a workbench to start smithing." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "workbench and forge" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second workbench and a drop hammer for more productive " +"smithing." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "workbench and drop hammer" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a butchery rack, so we can start hunting large animals." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should remove some of display racks and counters, then build a pair of " +"mattress beds inside radio control's room for our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds inside radio tower shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the northeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in NE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southwest corner shack for " +"our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southwest side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southeast corner shack for " +"our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the south side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in S side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should remove some of display racks and counters, then build a pair of " +"straw beds inside radio control's room for our survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds inside radio tower shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the northeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in NE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southwest corner shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southwest side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southeast side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the southeast corner shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of straw beds in the south side shack for our " +"survivors." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in S side shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a root cellar will give us a way to preserve food." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Digging a well will give us easy access to water." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's fix up radio tower and controls to improve our recruitment efforts." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix radio tower and controls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should dig pits for palisade around camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should build palisade around camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build palisade" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could try to fix whole tower and supply it with enough power, which could" +" give us remote access to computer systems connected to backbone network or " +"communication satellites." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "fix whole radio tower" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the south " +"side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the south " +"side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build migo resin walls over windows in radio " +"control's room." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "barricade radio control's room" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"inside radio tower." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the south" +" side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build wooden walls over windows in radio control's " +"room." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof inside " +"radio tower." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"northeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southwest corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southwest side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southeast side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southeast corner of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"south side of the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should reorganize that dining area into our " +"kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare the kitchen area" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well, put it near that winch. This will make our future " +"here more secure." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a well" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's set up a radio tower to improve our recruitment efforts, we'll " +"repurpose that terminal for it." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should add some storage and a root cellar in" +" our kitchen area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "add storage and root cellar" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's break up some pavement so we can farm." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "break up driveway" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a privacy fence around the garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a privacy fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot. Let's put it in that dining area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a fireplace" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should set up a brazier for cooking, and " +"grab a pot. Let's put it in that dining area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a brazier" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot. Let's put it in that dining area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wood stove" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some smokers and a charcoal kiln for food preservation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build smoking racks and charcoal kiln" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's make a butchery area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build butchery area" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's add a vat for fermenting." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build fermenting vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's gather some tools so we can work on cars." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "add tools for garage" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southwest bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the SW bedroom" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the northwest bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the NW bedroom" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the southeast bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the SE bedroom" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the northeast bedroom." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the NE bedroom" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the common area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "furnish the common area furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a fabrication workshop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metalworking forge" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build an anvil and crucible to increase our crafting options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "add an anvil and crucible" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build pottery kiln and get the tools we'll need for glassworking." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a pottery kiln" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We need some tools for metal working." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place advanced tools" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get a nice workbench built to improve our work. Place it next to the " +"anvil." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a workbench" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's add a bellows and barrel for quenching the steel, we'll need more " +"tools too." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bellows and barrel" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a drop hammer for some mass production." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a drop hammer." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with standard walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the standard white living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with wood panel walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with log walls, we'll use that far vehicle " +"bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with metal walls, we'll use that far vehicle " +"bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with mi-go resin walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with rammed earth walls, we'll use that far " +"vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with rock walls, we'll use that far vehicle " +"bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock earth living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand our living areas with wattle and daub walls, we'll use that far" +" vehicle bay." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle and daub living quarters walls" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should survey the roof top and set up a bulletin board." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace in the northeast " +"shack." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast fireplace" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should set up a brazier in the northeast " +"shack." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast brazier" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove in the northeast shack." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast stove" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "A straw bed in the northeast shack will make sleeping easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast straw bed" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A proper bed in the northeast shack will give one of us a place to sleep " +"soundly." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northeast bed" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Another straw bed in the northeast shack will make sleeping easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Another proper bed in the northeast shack will give one of us a place to " +"sleep soundly." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the east tent will allow us to house two more people" +" and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "east straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the east tent will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "east beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the east room will allow us to house two more people" +" and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the east room will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the southeast tent will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "southeast straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the southeast tent will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "southeast beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the southeast room will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the southeast room will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the northwest building will allow us to house two " +"more people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northwest straw beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of proper beds in the northwest building will allow us to house two " +"more people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "northwest beds" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"A pair of straw beds in the west tent will allow us to house two more people" +" and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "west straw beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the northwestern part of the camp." +"A pair of proper beds in the west tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the western part of the camp." +msgid "west beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the southwestern part of the camp." +"A pair of straw beds in the west room will allow us to house two more people" +" and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southern part of the camp." +"A pair of proper beds in the west room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "rammed earth shack" +msgid "" +"A pair of straw beds in the southwest tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southeastern part of the camp." +msgid "southwest straw beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"eastern part of the camp." +"A pair of proper beds in the southwest tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northeastern part of the camp." +msgid "southwest beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northern part of the camp." +"A pair of straw beds in the southwest room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northwestern part of the camp." +"A pair of proper beds in the southwest room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"western part of the camp." +"A fireplace, counter, and some pots and pans in the central building will " +"allow us to cook simple recipes and organize hunting expeditions." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southwestern part of the camp." +msgid "central fireplace" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southern part of the camp." +"We need a butchery rack to maximize the harvest from our hunting and " +"trapping efforts." msgstr "" #: lang/json/recipe_from_json.py -msgid "stone shack" +msgid "central butchery rack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southeastern part of the camp." +"A tool rack in the central building will give us a place to store tools." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"eastern part of the camp." +msgid "central tool rack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northeastern part of the camp." +"Setting up some tables and chairs will make the central building into a " +"dining area, and we can also use them as a workspace to organize the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northern part of the camp." +msgid "central dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northwestern part of the camp." +msgid "south dining hall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"western part of the camp." +"A wood stove, counter, and some pots and pans in the south half of the " +"central building will allow us to cook simple recipes and organize hunting " +"expeditions. The stove will be more efficient than a fireplace." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southwestern part of the camp." +msgid "south wood stove" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southern part of the camp." +msgid "north water well" msgstr "" #: lang/json/recipe_from_json.py -msgid "wattle and daub shack" +msgid "north root cellar" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southeastern part of the camp." +msgid "We could build a radio tower to improve the range of our radios." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the eastern part of the camp." +msgid "north radio tower" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northeastern part of the camp." +"Adding a console to control the radio tower will help with recruiting more " +"survivors." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northern part of the camp." +msgid "north radio console" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northwestern part of the camp." +"Digging a trench along the north edge of the camp would provide some defense" +" and generate building materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the western part of the camp." +msgid "north trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southwestern part of the camp." +"Digging a trench along the south edge of the camp would provide some defense" +" and generate building materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southern part of the camp." +msgid "south trench" msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden shack" +msgid "" +"Digging a trench along the northeast corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the east side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southeastern part of the camp." +msgid "northeast trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"eastern part of the camp." +"Digging a trench along the northwest corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the west side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northeastern part of the camp." +msgid "northwest trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northern part of the camp." +"Digging a trench along the southeast corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the east side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northwestern part of the camp." +msgid "southeast trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"western part of the camp." +"Digging a trench along the southwest corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the west side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southwestern part of the camp." +msgid "southwest trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need to barricade front windows, let's build wooden walls over them." +"Digging a trench along the east edge of the camp would provide some defense " +"and generate building materials. We'll need to run the trench the length of" +" the camp if we don't have solid buildings all along the east side." msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden barricades" +msgid "east trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need to barricade front windows, let's build mi-go resin walls over them." +"Digging a trench along the west edge of the camp would provide some defense " +"and generate building materials. We'll need to run the trench the length of" +" the camp if we don't have solid buildings all along the west side." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go resin barricades" +msgid "west trench" msgstr "" #: lang/json/recipe_from_json.py -msgid "We could build butchery rack to start hunting larger animals." +msgid "" +"We need some shelter, so build half of a log shack with a wooden roof on the" +" northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py -msgid "butchery rack" +msgid "northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should reinforce front doors to make this base safer." +msgid "" +"We should use logs to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "reinforce doors" +msgid "expand northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey military helipad garage." +msgid "We should use logs to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "military helipad garage survey" +msgid "finish northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a root cellar will help us preserving fish and other food." +msgid "" +"We should expand our housing by putting up a log building on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "We must barricade windows, let's use wooden walls." +msgid "east shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "We must barricade windows, let's use resin walls." +msgid "" +"We should expand our housing by adding a log room on the east side, which we" +" can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "resin barricades" +msgid "east room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a butchery rack will allow us hunting bigger animals." +msgid "" +"We should expand our housing by putting up a log building on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should reinforce doors to further secure our base." +msgid "southeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 1. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 1. pair of mattress beds" +msgid "southeast room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 2. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the northwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2. pair of mattress beds" +msgid "northwest shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 3. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3. pair of mattress beds" +msgid "west shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 4. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the west side, which we" +" can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 4. pair of mattress beds" +msgid "west room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 5. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 5. pair of mattress beds" +msgid "southwest shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 1. pair of straw beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 1. pair of straw beds" +msgid "southwest room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 2. pair of straw beds in place of desks." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2. pair of straw beds" +msgid "central building NE corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 3. pair of straw beds in place of desks." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3. pair of straw beds" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 4. pair of straw beds in place of desks." +msgid "central building NW corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "build 4. pair of straw beds" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 5. pair of straw beds in place of desks." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 5. pair of straw beds" +msgid "central building north half" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey Light Industry Workshop." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "expansion survey" +msgid "central building SE corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's add a drop hammer for even more crafting possibilities." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "drop hammer" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's remove plants from garden and plow a few plots." +msgid "central building SW corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare garden" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a radio tower and console" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's entrance." +msgid "central building south half" msgstr "" #: lang/json/recipe_from_json.py -msgid "entrance survey" +msgid "" +"We need some shelter, so build half of a metal shack with a metal roof on " +"the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's swimming pool." +msgid "" +"We should use metal to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "swimming pool survey" +msgid "We should use metal to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bedrooms." +msgid "" +"We should expand our housing by putting up a metal building on the east " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "bedrooms survey" +msgid "" +"We should expand our housing by adding a metal room on the east side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's???." +msgid "" +"We should expand our housing by putting up a metal building on the southeast" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "??? survey" +msgid "" +"We should expand our housing by adding a metal room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's kitchen." +msgid "" +"We should expand our housing by putting up a metal building on the northwest" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's library." +msgid "" +"We should expand our housing by putting up a metal building on the west " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "library survey" +msgid "" +"We should expand our housing by adding a metal room on the west side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bedroom." +msgid "" +"We should expand our housing by putting up a metal building on the southwest" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "bedroom survey" +msgid "" +"We should expand our housing by adding a metal room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's living rooms." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "living rooms survey" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "swimming survey" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bar." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "bar survey" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a bunk bed." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build another bunk bed." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "another bunk bed" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a well will give us easy access to water and allow us to start small" -" farm." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's plow some plots." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "small farm" +msgid "" +"We need some shelter, so build half of a mi-go resin shack with a sod roof " +"on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could try to fix reactor's controller to power lights, it would really " -"help us in planning missions." +"We should use mi-go resin to expand the shelter so we have space for another" +" bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix reactor's controller" +msgid "We should use mi-go resin to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's set up a radio tower to improve our recruitment efforts, we will " -"redirect some power into it from nuclear reactor." +"We should expand our housing by putting up a mi-go resin building on the " +"east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a log shack with a wooden roof for our blacksmith's workshop." +"We should expand our housing by adding a mi-go resin room on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "log blacksmith workshop" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a metal shack with a metal roof for our blacksmith's workshop." +"We should expand our housing by adding a mi-go resin room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "metal blacksmith workshop" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go blacksmith workshop" +msgid "" +"We should expand our housing by adding a mi-go resin room on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a rammed earth shack with a sod roof for our blacksmith's " -"workshop." +"We should expand our housing by putting up a mi-go resin building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "rammed earth blacksmith workshop" +msgid "" +"We should expand our housing by adding a mi-go resin room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a stone shack with a wooden roof for our blacksmith's workshop." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "stone blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a wattle and daub shack with a sod roof for our blacksmith's " -"workshop." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "wattle and daub blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a wooden shack with a wooden roof for our blacksmith's workshop." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rock forge and a workbench to start smithing." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "workbench and forge" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a second workbench and a drop hammer for more productive " -"smithing." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "workbench and drop hammer" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a butchery rack, so we can start hunting large animals." +msgid "" +"We need some shelter, so build half of a rammed earth shack with a sod roof " +"on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should remove some of display racks and counters, then build a pair of " -"mattress beds inside radio control's room for our survivors." +"We should use rammed earth to expand the shelter so we have space for " +"another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in radio control's room" +msgid "We should use rammed earth to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds inside radio tower shack for our " -"survivors." +"We should expand our housing by putting up a rammed earth building on the " +"east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in radio tower" +msgid "" +"We should expand our housing by adding a rammed earth room on the east side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the northeast side shack for our " -"survivors." +"We should expand our housing by putting up a rammed earth building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in NE side shack" +msgid "" +"We should expand our housing by adding a rammed earth room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southwest corner shack for " -"our survivors." +"We should expand our housing by putting up a rammed earth building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW corner shack" +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southwest side shack for our " -"survivors." +"We should expand our housing by adding a rammed earth room on the west side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW side shack" +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southeast side shack for our " -"survivors." +"We should expand our housing by adding a rammed earth room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE side shack" +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southeast corner shack for " -"our survivors." +"A central building can act as a core and dining hall. We should build out " +"from the east room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE corner shack" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the south side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build out " +"from the west room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in S side shack" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should remove some of display racks and counters, then build a pair of " -"straw beds inside radio control's room for our survivors." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in radio control's room" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds inside radio tower shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in radio tower" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the northeast side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in NE side shack" +msgid "" +"We need some shelter, so build half of a stone shack with a wooden roof on " +"the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwest corner shack for our " -"survivors." +"We should use rocks to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW corner shack" +msgid "We should use rocks to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwest side shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the east side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW side shack" +msgid "" +"We should expand our housing by adding a rock room on the east side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southeast side shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE side shack" +msgid "" +"We should expand our housing by adding a rock room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southeast corner shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the northwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE corner shack" +msgid "" +"We should expand our housing by putting up a rock building on the west side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the south side shack for our " -"survivors." +"We should expand our housing by adding a rock room on the west side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in S side shack" +msgid "" +"We should expand our housing by putting up a rock building on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a root cellar will give us a way to preserve food." +msgid "" +"We should expand our housing by adding a rock room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a well will give us easy access to water." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's fix up radio tower and controls to improve our recruitment efforts." +"A central building can act as a core and dining hall. We should build out " +"from the east room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix radio tower and controls" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should dig pits for palisade around camp." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build palisade around camp." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "build palisade" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could try to fix whole tower and supply it with enough power, which could" -" give us remote access to computer systems connected to backbone network or " -"communication satellites." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix whole radio tower" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"northeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"southwest corner of the camp." +"We need some shelter, so set up a tent on the northeast side of the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof on the south " -"side of the camp." +msgid "northeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"northeast side of the camp." +"We should expand our housing by putting up a tent on the east side, though " +"doing so will mean we need more materials to build the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southwest corner of the camp." +msgid "east tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southwest side of the camp." +"We should expand our housing by putting up a tent on the southeast side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southeast side of the camp." +msgid "southeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southeast corner of the camp." +"We should expand our housing by putting up a tent on the northwest side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the south " -"side of the camp." +msgid "northwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build migo resin walls over windows in radio " -"control's room." +"We should expand our housing by putting up a tent on the west side, though " +"doing so will mean we need more materials to build the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "barricade radio control's room" +msgid "west tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"inside radio tower." +"We should expand our housing by putting up a tent on the southwest side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the northeast side of the camp." +msgid "southwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southwest corner of the camp." +"We need some shelter, so build half of a wattle-and-daub shack with a sod " +"roof on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southwest side of the camp." +"We should use wattle-and-daub to expand the shelter so we have space for " +"another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southeast side of the camp." +msgid "We should use wattle-and-daub to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southeast corner of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the south side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the east " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"northeast side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southwest corner of the camp." +"We should expand our housing by adding a wattle-and-daub room on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southwest side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southeast side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southeast corner of the camp." +"We should expand our housing by adding a wattle-and-daub room on the west " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"south side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"northeast side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southwest corner of the camp." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southwest side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the east room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southeast side of the camp." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the west room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the south" -" side of the camp." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the northeast side of the camp." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southwest corner of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southwest side of the camp." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southeast corner of the camp." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the south side of the camp." +"We need some shelter, so build half of a wood panel shack with a wooden roof" +" on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build wooden walls over windows in radio control's " -"room." +"We should use wood panel to expand the shelter so we have space for another " +"bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should use wood panel to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof inside " -"radio tower." +"We should expand our housing by putting up a wood panel building on the east" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"northeast side of the camp." +"We should expand our housing by adding a wood panel room on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southwest corner of the camp." +"We should expand our housing by putting up a wood panel building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southwest side of the camp." +"We should expand our housing by adding a wood panel room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southeast side of the camp." +"We should expand our housing by putting up a wood panel building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southeast corner of the camp." +"We should expand our housing by putting up a wood panel building on the west" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"south side of the camp." +"We should expand our housing by adding a wood panel room on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should reorganize that dining area into our " -"kitchen." +"We should expand our housing by putting up a wood panel building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare the kitchen area" +msgid "" +"We should expand our housing by adding a wood panel room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a well, put it near that winch. This will make our future " -"here more secure." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a well" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's set up a radio tower to improve our recruitment efforts, we'll " -"repurpose that terminal for it." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should add some storage and a root cellar in" -" our kitchen area." +"A central building can act as a core and dining hall. We should build out " +"from the west room with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "add storage and root cellar" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's break up some pavement so we can farm." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "break up driveway" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a privacy fence around the garden." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a privacy fence" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a fireplace for cooking and " -"grab a pot. Let's put it in that dining area." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a fireplace" +msgid "We need to survey the base site first." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should set up a brazier for cooking, and " -"grab a pot. Let's put it in that dining area." +"The first thing we are going to need is a command tent to manage and task " +"workers from." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a brazier" +msgid "basic northeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a stove for cooking and grab a " -"pot. Let's put it in that dining area." +"We're going to need a fire pit and a bed if we want to stay here " +"permanently." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood stove" +msgid "basic firepit" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some smokers and a charcoal kiln for food preservation." +msgid "" +"To make this outpost functional we are going to need storage containers to " +"organize our supplies." msgstr "" #: lang/json/recipe_from_json.py -msgid "build smoking racks and charcoal kiln" +msgid "basic storage" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a butchery area." +msgid "" +"Next we should expand the camp to comfortably support two people " +"indefinitely." msgstr "" #: lang/json/recipe_from_json.py -msgid "build butchery area" +msgid "basic northeast bed" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's add a vat for fermenting." +msgid "" +"Additional housing and storage will allow our camp to expand into " +"specialized industries." msgstr "" #: lang/json/recipe_from_json.py -msgid "build fermenting vats" +msgid "basic northwest tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's gather some tools so we can work on cars." +msgid "" +"Constructing a hard command post will transform our little camp into a true " +"base." msgstr "" #: lang/json/recipe_from_json.py -msgid "add tools for garage" +msgid "basic central building" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom." +msgid "" +"Building additional housing will allow us to send companions out to find " +"recruits." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the SW bedroom" +msgid "basic west tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom." +msgid "We need to expand our base to include basic dining facilities." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the NW bedroom" +msgid "basic central kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom." +msgid "More housing means that we can support additional specialists." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the SE bedroom" +msgid "basic southeast tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northeast bedroom." +msgid "An expanded kitchen is needed to support our growing settlement." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the NE bedroom" +msgid "basic expanded kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the common area." +msgid "" +"Finishing the hard structure will give us a more secure place to retreat to " +"if we come under attack." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the common area furniture" +msgid "basic completed central building" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a fabrication workshop." +msgid "" +"I'm surprised we've made it this long without securing a clean water source," +" we need a well." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metalworking forge" +msgid "basic water well" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build an anvil and crucible to increase our crafting options." +msgid "" +"Building a strong wall will keep the base secure even if a small horde " +"attacks." msgstr "" #: lang/json/recipe_from_json.py -msgid "add an anvil and crucible" +msgid "basic partial wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build pottery kiln and get the tools we'll need for glassworking." +msgid "We need to finish our half built fortifications." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a pottery kiln" +msgid "basic complete wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need some tools for metal working." +msgid "We're running out of room and need another living quarters." msgstr "" #: lang/json/recipe_from_json.py -msgid "place advanced tools" +msgid "basic east tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's get a nice workbench built to improve our work. Place it next to the " -"anvil." +msgid "Our kitchen isn't able to keep up with demand, we need to expand it." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a workbench" +msgid "basic dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's add a bellows and barrel for quenching the steel, we'll need more " -"tools too." +msgid "We should build stronger doors to secure our compound." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a bellows and barrel" +msgid "basic reinforced gates" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a drop hammer for some mass production." +msgid "One more tent and our living space will be full." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a drop hammer." +msgid "basic southwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with standard walls, we'll use that far " -"vehicle bay." +"We could construct a radio tower to improve communication range, first step " +"is the tower structure." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the standard white living quarters walls" +msgid "basic radio tower" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with wood panel walls, we'll use that far " -"vehicle bay." +msgid "We need to build a console to control the radio tower." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wood panel living quarters walls" +msgid "basic radio console" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with log walls, we'll use that far vehicle " -"bay." +msgid "Survey land for a kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the log living quarters walls" +msgid "Kitchen survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with metal walls, we'll use that far vehicle " -"bay." +msgid "Building a cook-shack is our first task." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the metal living quarters walls" +msgid "Kitchen fireplace shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with mi-go resin walls, we'll use that far " -"vehicle bay." +msgid "We need to finish framing the walls for the cook-shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the mi-go resin living quarters walls" +msgid "Kitchen finished shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with rammed earth walls, we'll use that far " -"vehicle bay." +"Expanding the shack by including a smoker will increase our versatility." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rammed earth living quarters walls" +msgid "Kitchen charcoal smoker" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with rock walls, we'll use that far vehicle " -"bay." +msgid "A pantry will allow our cooks to store more non-perishables." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rock earth living quarters walls" +msgid "Kitchen pantry expansion" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with wattle and daub walls, we'll use that far" -" vehicle bay." +"Increasing our number of smoking racks will let us craft larger batches." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wattle and daub living quarters walls" +msgid "Kitchen more smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should survey the roof top and set up a bulletin board." +msgid "A well is needed so our cooks don't have to haul in water." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Kitchen water well" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a fireplace in the northeast " -"shack." +"Wood stoves will give us greater control of temperatures and let us craft " +"more difficult recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast fireplace" +msgid "Kitchen wood stoves" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should set up a brazier in the northeast " -"shack." +"Finally, expanding the pantry further will let us store additional " +"materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast brazier" +msgid "Kitchen expanded pantry" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a stove in the northeast shack." +"A trench that may deter movement but is meant to be the foundation of a " +"picket or palisade. Requirements are for 1/2 an over map tile." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast stove" +msgid "" +"A deep trench filled with spikes, requires a trench. Requirements are for " +"1/2 an over map tile." msgstr "" #: lang/json/recipe_from_json.py -msgid "A straw bed in the northeast shack will make sleeping easier." +msgid "Survey land for a blacksmith shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast straw bed" +msgid "Blacksmithy survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A proper bed in the northeast shack will give one of us a place to sleep " -"soundly." +msgid "Building a forge and kiln is our first task." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast bed" +msgid "Blacksmithy forge and kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "Another straw bed in the northeast shack will make sleeping easier." +msgid "Building a proper roof for the shop is the next step." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Another proper bed in the northeast shack will give one of us a place to " -"sleep soundly." +msgid "Blacksmithy roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the east tent will allow us to house two more people" -" and expand the camp." +msgid "Building a working table and placing an anvil are next." msgstr "" #: lang/json/recipe_from_json.py -msgid "east straw beds" +msgid "Blacksmithy anvil and workbench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the east tent will allow us to house two more " -"people and expand the camp." +"If we're going to do more than simple metal casting we need a bigger shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "east beds" +msgid "Blacksmithy expanded shop" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the east room will allow us to house two more people" -" and expand the camp." +msgid "We need some basic tools to make more advanced crafts." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the east room will allow us to house two more " -"people and expand the camp." +msgid "Blacksmithy forging tools" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southeast tent will allow us to house two more " -"people and expand the camp." +msgid "An expanded forge will allow us to work on bigger projects." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast straw beds" +msgid "Blacksmithy expanded forge" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southeast tent will allow us to house two more " -"people and expand the camp." +msgid "Proper steel work requires a bellows and quenching setup." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast beds" +msgid "Blacksmithy bellows and quenching barrels" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southeast room will allow us to house two more " -"people and expand the camp." +msgid "A separate workshop will allow us to do the most basic of machining." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southeast room will allow us to house two more " -"people and expand the camp." +msgid "Blacksmithy machine shop" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the northwest building will allow us to house two " -"more people and expand the camp." +msgid "Next we need to add some basic tools and vises to the workshop." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest straw beds" +msgid "Blacksmithy machine shop tools" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the northwest building will allow us to house two " -"more people and expand the camp." +msgid "Advanced forging processes require more room to work." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest beds" +msgid "Blacksmithy machine shop expansion" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the west tent will allow us to house two more people" -" and expand the camp." +msgid "An on-site well will allow us to fill boilers as needed." msgstr "" #: lang/json/recipe_from_json.py -msgid "west straw beds" +msgid "Blacksmithy well" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the west tent will allow us to house two more " -"people and expand the camp." +"A steam-powered drop hammer will greatly increase production speed in " +"exchange for charcoal." msgstr "" #: lang/json/recipe_from_json.py -msgid "west beds" +msgid "Blacksmithy drop hammer" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the west room will allow us to house two more people" -" and expand the camp." +"We should build a fireplace for cooking and grab a pot. Let's set up near " +"the working terminal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the west room will allow us to house two more " -"people and expand the camp." +"We should build a brazier for cooking and grab a pot. Let's set up near the" +" working terminal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the southwest tent will allow us to house two more " -"people and expand the camp." +"We should build a wood stove for cooking and grab a pot. Let's set up near " +"the working terminal." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest straw beds" +msgid "" +"We should build a well, put it near the terminal. This will make our future" +" here more secure." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southwest tent will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the southeast bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest beds" +msgid "Let's furnish the east bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southwest room will allow us to house two more " -"people and expand the camp." +msgid "furnish the E bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southwest room will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the southeast bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A fireplace, counter, and some pots and pans in the central building will " -"allow us to cook simple recipes and organize hunting expeditions." +msgid "Let's furnish the east bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central fireplace" +msgid "Let's furnish the southeast bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need a butchery rack to maximize the harvest from our hunting and " -"trapping efforts." +msgid "Let's furnish the east bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central butchery rack" +msgid "Let's furnish the southwest bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A tool rack in the central building will give us a place to store tools." +msgid "Let's furnish the west bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central tool rack" +msgid "furnish the W bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Setting up some tables and chairs will make the central building into a " -"dining area, and we can also use them as a workspace to organize the camp." +msgid "Let's furnish the northwest bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central dining hall" +msgid "Let's furnish the southwest bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "south dining hall" +msgid "Let's furnish the west bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A wood stove, counter, and some pots and pans in the south half of the " -"central building will allow us to cook simple recipes and organize hunting " -"expeditions. The stove will be more efficient than a fireplace." +msgid "Let's furnish the northwest bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "south wood stove" +msgid "Let's furnish the southwest bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "north water well" +msgid "Let's furnish the west bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "north root cellar" +msgid "Let's furnish the northwest bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "We could build a radio tower to improve the range of our radios." +msgid "Let's make a dining area." msgstr "" #: lang/json/recipe_from_json.py -msgid "north radio tower" +msgid "furnish the dining room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Adding a console to control the radio tower will help with recruiting more " -"survivors." +msgid "Let's make a living room area." msgstr "" #: lang/json/recipe_from_json.py -msgid "north radio console" +msgid "furnish the living room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the north edge of the camp would provide some defense" -" and generate building materials." +msgid "Let's build some pantry storage." msgstr "" #: lang/json/recipe_from_json.py -msgid "north trench" +msgid "build some wooden racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the south edge of the camp would provide some defense" -" and generate building materials." +msgid "Let's build a work bench." msgstr "" #: lang/json/recipe_from_json.py -msgid "south trench" +msgid "build a work bench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the northeast corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the east side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +"Let's build some living quarters so we can expand. We will start in the " +"southeast corner." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast trench" +msgid "build SE log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the northwest corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the west side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +"Let's build some living quarters so we can expand. We will continue along " +"the same wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest trench" +msgid "build E log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the southeast corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the east side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." -msgstr "" - -#: lang/json/recipe_from_json.py -msgid "southeast trench" +"Let's build some living quarters so we can expand. We will continue along " +"the other wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the southwest corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the west side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +msgid "build SW log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest trench" +msgid "build W log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the east edge of the camp would provide some defense " -"and generate building materials. We'll need to run the trench the length of" -" the camp if we don't have solid buildings all along the east side." +msgid "build NW log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east trench" +msgid "build SE rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the west edge of the camp would provide some defense " -"and generate building materials. We'll need to run the trench the length of" -" the camp if we don't have solid buildings all along the west side." +msgid "build E rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "west trench" +msgid "build SW rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a log shack with a wooden roof on the" -" northeast side of the camp" +msgid "build W rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast shack" +msgid "build NW rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use logs to expand the shelter so we have space for another bed." +msgid "build SE standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "expand northeast shack" +msgid "build E standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use logs to finish the northeast shack." +msgid "build SW standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "finish northeast shack" +msgid "build W standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the east side, " -"which we can also use as part of the central building." +msgid "build NW standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east shack" +msgid "build SE wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the east side, which we" -" can also use as part of the central building." +msgid "build E wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east room" +msgid "build SW wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the southeast " -"side, which we can also use as part of the central building." +msgid "build W wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast shack" +msgid "build NW wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the southeast side, " -"which we can also use as part of the central building." +msgid "build SE wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast room" +msgid "build E wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the northwest " -"side, which we can also use as part of the central building." +msgid "build SW wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest shack" +msgid "build W wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the west side, " -"which we can also use as part of the central building." +msgid "build NW wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "west shack" +msgid "Let's furnish the southeast bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the west side, which we" -" can also use as part of the central building." +msgid "Let's furnish the southeast bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "west room" +msgid "Let's furnish the west bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the southwest " -"side, which we can also use as part of the central building." +msgid "Let's furnish the southeast bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest shack" +msgid "Let's furnish the west bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the southwest side, " -"which we can also use as part of the central building." +msgid "Let's furnish the southwest bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest room" +msgid "Let's furnish the southwest bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from logs." +msgid "Let's furnish the southwest bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building NE corner" +msgid "Let's furnish the southern bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with logs." +msgid "furnish the S bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from logs." +msgid "Let's furnish the southern bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building NW corner" +msgid "Let's furnish the southern bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with logs." +"Let's build some living quarters so we can expand. We will start in the " +"northwest corner." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with logs." +"Let's build some living quarters so we can expand. We will continue along " +"the west wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building north half" +msgid "" +"Let's build some living quarters so we can expand. We will continue along " +"the southwest corner." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from logs." +"Let's build some living quarters so we can expand. We will continue along " +"the south wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building SE corner" +msgid "build S log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with logs." +msgid "build S rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from logs." +msgid "build S standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "central building SW corner" +msgid "build S wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with logs." +msgid "build NW wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with logs." +msgid "build W wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "central building south half" +msgid "build SW wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a metal shack with a metal roof on " -"the northeast side of the camp" +msgid "build S wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should use metal to expand the shelter so we have space for another bed." +"We should build a well, across from the terminal. This will make our future" +" here more secure." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use metal to finish the northeast shack." +msgid "Let's furnish the northwest bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the east " -"side, which we can also use as part of the central building." +msgid "Let's furnish the west bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the east side, which " -"we can also use as part of the central building." +msgid "Let's furnish the west bedroom with regular a bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the southeast" -" side, which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the southeast side, " -"which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the northwest" -" side, which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the west " -"side, which we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the west side, which " -"we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the southwest" -" side, which we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a metal room on the southwest side, " -"which we can also use as part of the central building." +"Let's build some living quarters so we can expand. We will enclose the west" +" side of the stairs." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from metal." +"Let's build two living quarters so we can expand. We will continue along " +"the south wall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with metal." +"Let's build another bedroom so we can expand. We will continue to enclose " +"the stairwell and add new doors." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from metal." +msgid "build central E bedroom log walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with metal." +msgid "Let's build another bedroom on the east wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with metal." +msgid "build E bedroom log walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from metal." +msgid "build central E bedroom rock walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with metal." +msgid "build E bedroom rock walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from metal." +msgid "build central E bedroom standard walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with metal." +msgid "build E bedroom standard walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with metal." +msgid "build central E bedroom wattle and daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a mi-go resin shack with a sod roof " -"on the northeast side of the camp" +msgid "build E bedroom wattle and daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use mi-go resin to expand the shelter so we have space for another" -" bed." +msgid "build S wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use mi-go resin to finish the northeast shack." +msgid "build central E bedroom wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"east side, which we can also use as part of the central building." +msgid "build E bedroom wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the east side, " -"which we can also use as part of the central building." +msgid "Survey land for a kitchen and dining area." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"southeast side, which we can also use as part of the central building." +"Now that we have some cover, we should build 2 fireplaces for cooking and " +"grab a pot." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the southeast " -"side, which we can also use as part of the central building." +msgid "build 2 fireplaces" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"northwest side, which we can also use as part of the central building." +"Now that we have some cover, we should build 2 stoves for cooking and grab a" +" pot." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"west side, which we can also use as part of the central building." +msgid "build 2 wood stoves" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the west side, " -"which we can also use as part of the central building." +msgid "We should build a well. This will make cooking more convenient." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's build some counters and shelves." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the southwest " -"side, which we can also use as part of the central building." +msgid "build kitchen counters" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from mi-go resin." +msgid "build 3 smoking racks and a charcoal kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with mi-go resin." +msgid "Lets furnish the pantry and build 2 root cellars." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from mi-go resin." +msgid "furnish the pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with mi-go resin." +msgid "Let's make some furniture for the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with mi-go resin." +msgid "Let's build some planters to the north for a chef's garden." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from mi-go resin." +msgid "build some planters" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with mi-go resin." +msgid "Let's start building the central kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from mi-go resin." +msgid "build the log wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with mi-go resin." +msgid "Let's finish the central kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with mi-go resin." +msgid "finish the log wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build half of a rammed earth shack with a sod roof " -"on the northeast side of the camp" +"Let's get this log wall smoking area covered to protect the workers from the" +" weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use rammed earth to expand the shelter so we have space for " -"another bed." +msgid "build a log wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use rammed earth to finish the northeast shack." +msgid "Let's build a log wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"east side, which we can also use as part of the central building." +msgid "build a log wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the east side," -" which we can also use as part of the central building." +msgid "Let's build the west log wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"southeast side, which we can also use as part of the central building." +msgid "build W log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the southeast " -"side, which we can also use as part of the central building." +msgid "Let's build the east log wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"northwest side, which we can also use as part of the central building." +msgid "build E log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"west side, which we can also use as part of the central building." +msgid "Let's build the center of the log wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the west side," -" which we can also use as part of the central building." +msgid "build center of the log wall dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's start building the central kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the southwest " -"side, which we can also use as part of the central building." +msgid "build the metal wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from rammed earth." +msgid "Let's finish the central kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with rammed earth." +msgid "finish the metal wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from rammed earth." +"Let's get this metal wall smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with rammed earth." +msgid "build a metal wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with rammed earth." +msgid "Let's build a metal wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from rammed earth." +msgid "build a metal wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with rammed earth." +msgid "Let's build the west metal wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from rammed earth." +msgid "build W metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with rammed earth." +msgid "Let's build the east metal wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with rammed earth." +msgid "build E metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a stone shack with a wooden roof on " -"the northeast side of the camp" +msgid "Let's build the center of the metal wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use rocks to expand the shelter so we have space for another bed." +msgid "build center of the metal wall dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use rocks to finish the northeast shack." +msgid "Let's start building the central kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the east side," -" which we can also use as part of the central building." +msgid "build the mi-go resin central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the east side, which " -"we can also use as part of the central building." +msgid "Let's finish the central kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the southeast " -"side, which we can also use as part of the central building." +msgid "finish the mi-go resin central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a rock room on the southeast side, " -"which we can also use as part of the central building." +"Let's get this mi-go resin smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the northwest " -"side, which we can also use as part of the central building." +msgid "build a mi-go resin roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the west side," -" which we can also use as part of the central building." +msgid "Let's build a mi-go resin wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the west side, which " -"we can also use as part of the central building." +msgid "build a mi-go resin pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the southwest " -"side, which we can also use as part of the central building." +msgid "Let's build the west mi-go resin wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the southwest side, " -"which we can also use as part of the central building." +msgid "build W mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from rocks." +msgid "Let's build the east mi-go resin wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with rocks." +msgid "build E mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from rocks." +msgid "Let's build the center of the mi-go resin dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with rocks." +msgid "build center of the mi-go resin dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with rocks." +msgid "Let's start building the central kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from rocks." +msgid "build the rammed earth central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with rocks." +msgid "Let's finish the central kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from rocks." +msgid "finish the rammed earth central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with rocks." +"Let's get this rammed earth smoking area covered to protect the workers from" +" the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with rocks." +msgid "build a rammed earth roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so set up a tent on the northeast side of the camp." +msgid "Let's build a rammed earth wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast tent" +msgid "build a rammed earth pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the east side, though " -"doing so will mean we need more materials to build the central building." +msgid "Let's build the west rammed earth wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "east tent" +msgid "build W rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the southeast side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's build the east rammed earth wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast tent" +msgid "build E rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the northwest side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's build the center of the rammed earth dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest tent" +msgid "build center of the rammed earth dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the west side, though " -"doing so will mean we need more materials to build the central building." +msgid "Let's start building the central kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "west tent" +msgid "build the central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the southwest side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's finish the central kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest tent" +msgid "finish the rock wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build half of a wattle-and-daub shack with a sod " -"roof on the northeast side of the camp" +"Let's get this rock wall smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use wattle-and-daub to expand the shelter so we have space for " -"another bed." +msgid "build a rock wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use wattle-and-daub to finish the northeast shack." +msgid "Let's build a rock wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" east side, which we can also use as part of the central building." +msgid "build a rock wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the east " -"side, which we can also use as part of the central building." +msgid "Let's build the west rock wall of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" southeast side, which we can also use as part of the central building." +msgid "build W rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the " -"southeast side, which we can also use as part of the central building." +msgid "Let's build the east rock wall of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" northwest side, which we can also use as part of the central building." +msgid "build E rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" west side, which we can also use as part of the central building." +msgid "Let's build the center of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the west " -"side, which we can also use as part of the central building." +msgid "build center of the rock dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" southwest side, which we can also use as part of the central building." +msgid "Let's start building the central kitchen wattle and daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the " -"southwest side, which we can also use as part of the central building." +msgid "build the wattle and daub central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from wattle-and-daub." +msgid "Let's finish the central kitchen wattle and daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with wattle-and-daub." +msgid "finish the wattle and daub central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from wattle-and-daub." +"Let's get this wattle and daub smoking area covered to protect the workers " +"from the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with wattle-and-daub." +msgid "build a wattle and daub roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with wattle-and-daub." +msgid "Let's build a wattle and daub wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from wattle-and-daub." +msgid "build a wattle and daub pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with wattle-and-daub." +msgid "Let's build the west wattle and daub wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from wattle-and-daub." +msgid "build W wattle and daub wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with wattle-and-daub." +msgid "Let's build the east wattle and daub wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with wattle-and-daub." +msgid "build E wattle and daub wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a wood panel shack with a wooden roof" -" on the northeast side of the camp" +msgid "Let's build the center of the wattle and daub dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use wood panel to expand the shelter so we have space for another " -"bed." +msgid "build center of the wattle and daub dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use wood panel to finish the northeast shack." +msgid "Let's start building the central kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the east" -" side, which we can also use as part of the central building." +msgid "build the wood panel central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the east side, " -"which we can also use as part of the central building." +msgid "Let's finish the central kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"southeast side, which we can also use as part of the central building." +msgid "finish the wood panel central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a wood panel room on the southeast " -"side, which we can also use as part of the central building." +"Let's get this wood panel smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"northwest side, which we can also use as part of the central building." +msgid "build a wood panel roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the west" -" side, which we can also use as part of the central building." +msgid "Let's build a wood panel pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the west side, " -"which we can also use as part of the central building." +msgid "build a wood panel pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's build the west wood panel wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the southwest " -"side, which we can also use as part of the central building." +msgid "build W wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from wood panel." +msgid "Let's build the east wood panel wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with wood panel." +msgid "build E wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from wood panel." +msgid "Let's build the center of the wood panel dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with wood panel." +msgid "build center of the dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with wood panel." +msgid "Survey land for a canteen." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from wood panel." +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with wood panel." +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from wood panel." +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with wood panel." +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with wood panel." +msgid "Lets build 2 root cellars in the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to survey the base site first." +msgid "build root cellars" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"The first thing we are going to need is a command tent to manage and task " -"workers from." +msgid "Lets furnish the pantry." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic northeast tent" +msgid "Let's build some planters for a chef's garden." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We're going to need a fire pit and a bed if we want to stay here " -"permanently." -msgstr "" - -#: lang/json/recipe_from_json.py -msgid "basic firepit" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"To make this outpost functional we are going to need storage containers to " -"organize our supplies." +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic storage" +msgid "build salt water tanks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Next we should expand the camp to comfortably support two people " -"indefinitely." +msgid "Let's install some vats in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic northeast bed" +msgid "install some brewery vats" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Additional housing and storage will allow our camp to expand into " -"specialized industries." +msgid "Let's install some racks for storage in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic northwest tent" +msgid "install some brewery racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Constructing a hard command post will transform our little camp into a true " -"base." +msgid "Let's install a still in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic central building" +msgid "install a still in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Building additional housing will allow us to send companions out to find " -"recruits." +msgid "Let's build a windmill to allow us to grid flour efficiently" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic west tent" +msgid "build a windmill" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to expand our base to include basic dining facilities." +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic central kitchen" +msgid "build a bench and a bird bath" msgstr "" #: lang/json/recipe_from_json.py -msgid "More housing means that we can support additional specialists." +msgid "Let's start building the kitchen concrete walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic southeast tent" +msgid "build the concrete kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "An expanded kitchen is needed to support our growing settlement." +msgid "Let's finish the kitchen concrete walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic expanded kitchen" +msgid "finish the concrete kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Finishing the hard structure will give us a more secure place to retreat to " -"if we come under attack." +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic completed central building" +msgid "build a concrete roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"I'm surprised we've made it this long without securing a clean water source," -" we need a well." +msgid "Let's build a concrete wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic water well" +msgid "build a concrete pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Building a strong wall will keep the base secure even if a small horde " -"attacks." +msgid "Let's build the first concrete part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic partial wall" +msgid "build first dining concrete section" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to finish our half built fortifications." +msgid "Let's build the second concrete part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic complete wall" +msgid "build second dining concrete section" msgstr "" #: lang/json/recipe_from_json.py -msgid "We're running out of room and need another living quarters." +msgid "Let's build a the concrete brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic east tent" +msgid "build concrete brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Our kitchen isn't able to keep up with demand, we need to expand it." +msgid "Let's start building the kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic dining hall" +msgid "build the log kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build stronger doors to secure our compound." +msgid "Let's finish the kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic reinforced gates" +msgid "finish the log kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "One more tent and our living space will be full." +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic southwest tent" +msgid "build a log roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could construct a radio tower to improve communication range, first step " -"is the tower structure." +msgid "Let's build a log wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic radio tower" +msgid "build a log pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to build a console to control the radio tower." +msgid "Let's build the first log part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic radio console" +msgid "build first dining log section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen." +msgid "Let's build the second log part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen survey" +msgid "build second dining log section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a cook-shack is our first task." +msgid "Let's build a the log brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen fireplace shack" +msgid "build log brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to finish framing the walls for the cook-shack." +msgid "Let's start building the kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen finished shack" +msgid "build the metal kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Expanding the shack by including a smoker will increase our versatility." +msgid "Let's finish the kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen charcoal smoker" +msgid "finish the metal kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "A pantry will allow our cooks to store more non-perishables." +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen pantry expansion" +msgid "build a metal roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Increasing our number of smoking racks will let us craft larger batches." +msgid "Let's build a metal wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen more smoking racks" +msgid "build a metal pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "A well is needed so our cooks don't have to haul in water." +msgid "Let's build the first metal part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen water well" +msgid "build first dining metal section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Wood stoves will give us greater control of temperatures and let us craft " -"more difficult recipes." +msgid "Let's build the second metal part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen wood stoves" +msgid "build second dining metal section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Finally, expanding the pantry further will let us store additional " -"materials." +msgid "Let's build a the metal brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen expanded pantry" +msgid "build metal brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A trench that may deter movement but is meant to be the foundation of a " -"picket or palisade. Requirements are for 1/2 an over map tile." +msgid "Let's start building the kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A deep trench filled with spikes, requires a trench. Requirements are for " -"1/2 an over map tile." +msgid "build the mi-go resin kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a blacksmith shop." +msgid "Let's finish the kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy survey" +msgid "finish the mi-go resin kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a forge and kiln is our first task." +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy forge and kiln" +msgid "Let's build the first mi-go resin part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a proper roof for the shop is the next step." +msgid "build first dining mi-go resin section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy roof" +msgid "Let's build the second mi-go resin part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a working table and placing an anvil are next." +msgid "build second dining mi-go resin section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy anvil and workbench" +msgid "Let's build a the mi-go resin brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"If we're going to do more than simple metal casting we need a bigger shop." +msgid "build mi-go resin brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy expanded shop" +msgid "Let's start building the kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "We need some basic tools to make more advanced crafts." +msgid "build the rammed earth kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy forging tools" +msgid "Let's finish the kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "An expanded forge will allow us to work on bigger projects." +msgid "finish the rammed earth kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy expanded forge" +msgid "Let's build a rammed earth wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Proper steel work requires a bellows and quenching setup." +msgid "Let's build the first rammed earth part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy bellows and quenching barrels" +msgid "build first dining rammed earth section" msgstr "" #: lang/json/recipe_from_json.py -msgid "A separate workshop will allow us to do the most basic of machining." +msgid "Let's build the second rammed earth part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop" +msgid "build second dining rammed earth section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Next we need to add some basic tools and vises to the workshop." +msgid "Let's build a the rammed earth brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop tools" +msgid "build rammed earth brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Advanced forging processes require more room to work." +msgid "Let's start building the kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop expansion" +msgid "build the rock kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "An on-site well will allow us to fill boilers as needed." +msgid "Let's finish the kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy well" +msgid "finish the rock kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A steam-powered drop hammer will greatly increase production speed in " -"exchange for charcoal." +"Let's get this rock smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy drop hammer" +msgid "build a rock roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a fireplace for cooking and grab a pot. Let's set up near " -"the working terminal." +msgid "Let's build a rock wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a brazier for cooking and grab a pot. Let's set up near the" -" working terminal." +msgid "build a rock pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a wood stove for cooking and grab a pot. Let's set up near " -"the working terminal." +msgid "Let's build the first rock part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a well, put it near the terminal. This will make our future" -" here more secure." +msgid "build first dining rock section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with regular beds." +msgid "Let's build the second rock part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with regular beds." +msgid "build second dining rock section" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the E bedroom" +msgid "Let's build a the rock brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with straw beds." +msgid "build rock brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with straw beds." +msgid "Let's start building the kitchen wattle-and-daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with makeshift beds." +msgid "build the wattle-and-daub kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with makeshift beds." +msgid "Let's finish the kitchen wattle-and-daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with regular beds." +msgid "finish the wattle-and-daub kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular beds." +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the W bedroom" +msgid "build a wattle-and-daub roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with regular beds." +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with straw beds." +msgid "build a wattle-and-daub pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with straw beds." +msgid "Let's build the first wattle-and-daub part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with straw beds." +msgid "build first dining wattle-and-daub section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with makeshift beds." +msgid "Let's build the second wattle-and-daub part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with makeshift beds." +msgid "build second dining wattle-and-daub section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with makeshift beds." +msgid "Let's build a the wattle-and-daub brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a dining area." +msgid "build wattle-and-daub brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the dining room" +msgid "Let's start building the kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a living room area." +msgid "build the wood panel kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the living room" +msgid "Let's finish the kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some pantry storage." +msgid "finish the wood panel kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "build some wooden racks" +msgid "Let's build a wood panel wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a work bench." +msgid "Let's build the first wood panel part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a work bench" +msgid "build first dining wood panel section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"southeast corner." +msgid "Let's build the second wood panel part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE log bedroom walls" +msgid "build second dining wood panel section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the same wall." +msgid "Let's build a the wood panel brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E log bedroom walls" +msgid "build wood panel brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the other wall." +msgid "Survey land for a farming area." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW log bedroom walls" +msgid "farm area survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W log bedroom walls" +msgid "Plowing a few plots should get us started." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW log bedroom walls" +msgid "Farm basic plots" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE rock bedroom walls" +msgid "We could use a farming shed to store resources where we'll be working." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rock bedroom walls" +msgid "Farm basic shed" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW rock bedroom walls" +msgid "" +"Our farm could be expanded by finishing the shed and adding additional " +"plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rock bedroom walls" +msgid "Farm upgraded shed" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW rock bedroom walls" +msgid "" +"Building a processing shack should allow us to reclaim additional seeds from" +" our byproducts." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE standard bedroom walls" +msgid "Farm processing shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E standard bedroom walls" +msgid "Prepare a row of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW standard bedroom walls" +msgid "prepare farm plots" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W standard bedroom walls" +msgid "Prepare a second row of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW standard bedroom walls" +msgid "Prepare another pair of rows of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE wattle and daub bedroom walls" +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wattle and daub bedroom walls" +msgid "erect a fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wattle and daub bedroom walls" +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wattle and daub bedroom walls" +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wattle and daub bedroom walls" +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE wood panel bedroom walls" +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wood panel bedroom walls" +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wood panel bedroom walls" +msgid "build a palisade gate" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood panel bedroom walls" +msgid "Survey land for a garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wood panel bedroom walls" +msgid "Building a tool rack should be the first priority." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a regular bed." +msgid "Garage tool rack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a straw bed." +msgid "We should start construction of a roof for the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a straw bed." +msgid "Garage partial roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a makeshift bed." +msgid "Finishing out the roof will let our mechanics work rain or shine." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a makeshift bed." +msgid "Garage completed roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a regular bed." +msgid "" +"Our garage isn't big enough to work on larger vehicles. Let's start " +"expanding it." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a straw bed." +msgid "Garage partial expansion" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a makeshift bed." +msgid "Finishing the roof will let us park RVs and buses in the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with regular beds." +msgid "Garage expanded roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the S bedroom" +msgid "" +"Attaching quarters will let our mechanics work longer hours when needed." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with straw beds." +msgid "Garage mechanics quarters" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with makeshift beds." +msgid "Let's connect the two walls with the missing roof piece." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"northwest corner." +msgid "build the missing roof section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the west wall." +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the southwest corner." +msgid "build some furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the south wall." +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S log bedroom walls" +msgid "build an outer palisade gate" msgstr "" #: lang/json/recipe_from_json.py -msgid "build S rock bedroom walls" +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S standard bedroom walls" +msgid "Let's start building the first garage concrete wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wattle and daub bedroom walls" +msgid "build the first concrete garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wood bedroom walls" +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood bedroom walls" +msgid "build the second concrete garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wood bedroom walls" +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wood bedroom walls" +msgid "build an inner concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a well, across from the terminal. This will make our future" -" here more secure." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with a regular bed." +msgid "extend the first wall using concrete" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a regular bed." +msgid "Let's extend the second wall to match the first one, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular a bed." +msgid "extend the second wall using concrete" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a regular bed." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a straw bed." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a makeshift bed." +msgid "Let's start building the first garage log wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a regular bed." +msgid "build the first log garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a straw bed." +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a makeshift bed." +msgid "build the second log garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will enclose the west" -" side of the stairs." +"Let's build a log wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build two living quarters so we can expand. We will continue along " -"the south wall." +msgid "build an inner log wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build another bedroom so we can expand. We will continue to enclose " -"the stairwell and add new doors." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom log walls" +msgid "extend the first wall using logs" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build another bedroom on the east wall." +msgid "Let's extend the second wall to match the first one, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom log walls" +msgid "extend the second wall using log" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom rock walls" +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom rock walls" +msgid "extend the second wall using logs" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom standard walls" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom standard walls" +msgid "Let's start building the first garage metal wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wattle and daub" +msgid "build the first metal garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom wattle and daub" +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wood panel bedroom walls" +msgid "build the second metal garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wood panel bedroom walls" +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom wood panel bedroom walls" +msgid "build an inner metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen and dining area." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Now that we have some cover, we should build 2 fireplaces for cooking and " -"grab a pot." +msgid "extend the first wall using metal" msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2 fireplaces" +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build 2 stoves for cooking and grab a" -" pot." +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2 wood stoves" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build a well. This will make cooking more convenient." +msgid "Let's start building the first garage mi-go resin wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some counters and shelves." +msgid "build the first mi-go resin garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build kitchen counters" +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3 smoking racks and a charcoal kiln" +msgid "build the second mi-go resin garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Lets furnish the pantry and build 2 root cellars." +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the pantry" +msgid "build an inner mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make some furniture for the dining hall." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some planters to the north for a chef's garden." +msgid "extend the first wall using mi-go resin" msgstr "" #: lang/json/recipe_from_json.py -msgid "build some planters" +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen log walls." +msgid "extend the second wall using mi-go resin" msgstr "" #: lang/json/recipe_from_json.py -msgid "build the log wall central kitchen room" +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen log walls." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the log wall central kitchen room" +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this log wall smoking area covered to protect the workers from the" -" weather." +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a log wall roofed area for smoking racks" +msgid "build the second rammed earth garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a log wall pantry west of the kitchen." +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a log wall pantry" +msgid "build an inner rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west log wall of the dining hall." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W log wall" +msgid "extend the first wall using rammed earth" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east log wall of the dining hall." +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E log wall" +msgid "extend the second wall using rammed earth" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the log wall dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the log wall dining hall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen metal walls." +msgid "Let's start building the first garage rock wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the metal wall central kitchen room" +msgid "build the first rock garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen metal walls." +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the metal wall central kitchen room" +msgid "build the second rock garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this metal wall smoking area covered to protect the workers from " -"the weather." +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metal wall roofed area for smoking racks" +msgid "build an inner rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a metal wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metal wall pantry" +msgid "extend the first wall using rock" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west metal wall of the dining hall." +msgid "Let's extend the second wall to match the first one, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W metal wall" +msgid "extend the second wall using rock" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east metal wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E metal wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the metal wall dining hall." +msgid "Let's start building the first garage wattle-and-daub wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the metal wall dining hall" +msgid "build the first wattle-and-daub garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen mi-go resin walls." +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the mi-go resin central kitchen room" +msgid "build the second wattle-and-daub garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen mi-go resin walls." +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the mi-go resin central kitchen room" +msgid "build an inner wattle-and-daub wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this mi-go resin smoking area covered to protect the workers from " -"the weather." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a mi-go resin roofed area for smoking racks" +msgid "extend the first wall using wattle-and-daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a mi-go resin wall pantry west of the kitchen." +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a mi-go resin pantry" +msgid "extend the second wall using wattle-and-daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west mi-go resin wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W mi-go resin wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east mi-go resin wall of the dining hall." +msgid "Let's start building the first garage wood wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E mi-go resin wall" +msgid "build the first wood garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the mi-go resin dining hall." +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the mi-go resin dining hall" +msgid "build the second wood garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rammed earth walls." +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rammed earth central kitchen room" +msgid "build an inner wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rammed earth walls." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the rammed earth central kitchen room" +msgid "extend the first wall using wood panels" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rammed earth smoking area covered to protect the workers from" -" the weather." +"Let's extend the second wall to match the first one, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rammed earth roofed area for smoking racks" +msgid "extend the second wall using wood" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rammed earth wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rammed earth pantry" +msgid "extend the second wall using wood panels" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west rammed earth wall of the dining hall." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rammed earth wall" +msgid "Survey land for a livestock area." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east rammed earth wall of the dining hall." +msgid "Livestock survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rammed earth wall" +msgid "" +"We could use a fence to contain our chickens and other birds, so build a " +"chickenwire fence on the east side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rammed earth dining hall." +msgid "east coop yard" msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the rammed earth dining hall" +msgid "" +"We could use paddock for the stable, so build a split-rail fence on the " +"north side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rock walls." +msgid "north paddock" msgstr "" #: lang/json/recipe_from_json.py -msgid "build the central kitchen room" +msgid "" +"We could use paddock for the stable, so build a split-rail fence in the " +"center of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rock walls." +msgid "center paddock" msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the rock wall central kitchen room" +msgid "" +"We could use paddock for the stable, so build a split-rail fence to close " +"off the south end of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rock wall smoking area covered to protect the workers from " -"the weather." +"We could use a coop to contain our chickens and other birds, so build a log " +"shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rock wall roofed area for smoking racks" +msgid "northeast coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rock wall pantry west of the kitchen." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rock wall pantry" +msgid "southeast storage room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west rock wall of the rock wall dining hall." +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rock wall" +msgid "southwest stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east rock wall of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the west" +" side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rock wall" +msgid "west stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the " +"northwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the rock dining hall" +msgid "northwest stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wattle and daub walls." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"metal sheet shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wattle and daub central kitchen room" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal sheet shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wattle and daub walls." +msgid "" +"We could use a stable for larger livestock, so build a metal sheet shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the wattle and daub central kitchen room" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a mi-" +"go resin shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wattle and daub smoking area covered to protect the workers " -"from the weather." +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub roofed area for smoking racks" +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a wattle and daub wall pantry west of the kitchen." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"rammed earth shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub pantry" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west wattle and daub wall of the dining hall." +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wattle and daub wall" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"stone shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east wattle and daub wall of the dining hall." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"stone shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wattle and daub wall" +msgid "" +"We could use a stable for larger livestock, so build a stone shack with a " +"roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wattle and daub dining hall." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"wattle and daub shack with a roof on the northeast side of the livestock " +"field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the wattle and daub dining hall" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle and daub shack with a roof on the southeast side of the livestock " +"field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wood panel walls." +msgid "" +"We could use a stable for larger livestock, so build a wattle and daub shack" +" with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wood panel central kitchen room" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a wood" +" panel shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wood panel walls." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the wood panel central kitchen room" +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wood panel smoking area covered to protect the workers from " -"the weather." +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood panel roofed area for smoking racks" +msgid "chicken coop yard" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a wood panel pantry west of the kitchen." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood panel pantry" +msgid "remote paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west wood panel wall of the dining hall." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood wall" +msgid "side paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east wood panel wall of the dining hall." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wood wall" +msgid "near paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wood panel dining hall." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the dining hall" +msgid "concrete chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a farming area." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "farm area survey" +msgid "concrete storage shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Plowing a few plots should get us started." +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm basic plots" +msgid "concrete stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "We could use a farming shed to store resources where we'll be working." +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm basic shed" +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Our farm could be expanded by finishing the shed and adding additional " -"plots." +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm upgraded shed" +msgid "log chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Building a processing shack should allow us to reclaim additional seeds from" -" our byproducts." +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm processing shack" +msgid "log storage shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a garage." +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a tool rack should be the first priority." +msgid "log stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage tool rack" +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should start construction of a roof for the garage." +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage partial roof" +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Finishing out the roof will let our mechanics work rain or shine." +msgid "metal chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage completed roof" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Our garage isn't big enough to work on larger vehicles. Let's start " -"expanding it." +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage partial expansion" +msgid "metal stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Finishing the roof will let us park RVs and buses in the garage." +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage expanded roof" +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Attaching quarters will let our mechanics work longer hours when needed." +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage mechanics quarters" +msgid "mi-go resin chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a livestock area." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Livestock survey" +msgid "mi-go resin storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a fence to contain our chickens and other birds, so build a " -"chickenwire fence on the east side of the livestock field." +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "east coop yard" +msgid "mi-go resin stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence on the " -"north side of the livestock field." +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "north paddock" +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence in the " -"center of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "center paddock" +msgid "rammed earth chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence to close " -"off the south end of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a log " -"shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast coop" +msgid "rammed earth stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a log " -"shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast storage room" +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a log shack with a roof" -" on the southwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest stable" +msgid "rock chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the west" -" side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "west stable" +msgid "rock storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the " -"northwest side of the livestock field." +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest stable" +msgid "rock stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"metal sheet shack with a roof on the northeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rock walled " +"stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"metal sheet shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a metal sheet shack " -"with a roof on the southwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a mi-" -"go resin shack with a roof on the northeast side of the livestock field." +msgid "wattle-and-daub chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a mi-" -"go resin shack with a roof on the southeast side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a mi-go resin shack " -"with a roof on the southwest side of the livestock field." +msgid "wattle-and-daub storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"rammed earth shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"rammed earth shack with a roof on the southeast side of the livestock field." +msgid "wattle-and-daub stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a rammed earth shack " -"with a roof on the southwest side of the livestock field." +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"stone shack with a roof on the northeast side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"stone shack with a roof on the southeast side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a stone shack with a " -"roof on the southwest side of the livestock field." +msgid "wood panel chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"wattle and daub shack with a roof on the northeast side of the livestock " -"field." +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"wattle and daub shack with a roof on the southeast side of the livestock " -"field." +msgid "wood panel storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wattle and daub shack" -" with a roof on the southwest side of the livestock field." +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a wood" -" panel shack with a roof on the northeast side of the livestock field." +msgid "wood panel stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a wood" -" panel shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wood panel shack with" -" a roof on the southwest side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." msgstr "" #: lang/json/recipe_from_json.py @@ -195495,6 +198525,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -195760,60 +199429,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -196648,7 +200626,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -196660,12 +200642,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -196673,11 +200665,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -196840,6 +200842,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -198977,6 +203035,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -199289,7 +203373,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -200027,8 +204111,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -200798,15 +204882,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -205853,6 +209938,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -205861,7 +210212,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -205978,7 +210329,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -210563,7 +214914,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -210622,7 +214973,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -210635,7 +214986,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -210653,17 +215004,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -210742,7 +215093,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -210852,8 +215203,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -211261,7 +215612,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -211271,8 +215622,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -212694,6 +217045,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -214991,7 +219404,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "" @@ -215652,6 +220065,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -215670,6 +220195,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -216837,6 +221377,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -219163,6 +223781,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -219272,6 +223897,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -219295,6 +223938,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -220805,7 +225455,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -220975,19 +225625,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -221060,95 +225710,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" +msgid "\"Wanna play with me?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" +msgid "\"Sing with me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" +msgid "\"Please take me with you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" +msgid "\"May I have a cookie?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -221156,31 +225810,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" +msgid "\"Hey kids. Want some candy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -221196,19 +225850,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -222275,6 +226925,10 @@ msgstr "" msgid "Gun Store" msgstr "" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "" @@ -223708,6 +228362,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -230928,6 +235586,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -231574,6 +237010,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -231643,6 +237083,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -234075,10 +239526,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -237871,10 +243318,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -238203,6 +243646,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -238494,6 +244046,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -238584,6 +244145,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -241355,6 +246968,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -241540,20 +247170,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -242161,20 +247777,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "" @@ -242210,54 +247812,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -242341,20 +247933,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -242473,34 +248051,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -242516,45 +248066,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -242638,17 +248188,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -242690,7 +248240,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -242703,6 +248253,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -242849,20 +248403,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -242967,20 +248507,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -243081,20 +248607,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -243419,41 +248931,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -243654,20 +249162,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -244428,20 +249922,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -244540,20 +250020,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -244596,20 +250062,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -246850,6 +252302,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "" @@ -250239,24 +255703,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -250264,32 +255728,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -250297,35 +255761,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -250333,33 +255792,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -250367,10 +255826,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -250378,10 +255837,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -250389,40 +255848,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -250430,21 +255887,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -250452,44 +255905,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -250497,14 +255941,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -250522,12 +255962,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -250535,21 +255970,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -250557,10 +255988,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -250568,7 +255999,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -250577,10 +256008,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -250589,21 +256020,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -250611,10 +256038,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -250623,10 +256050,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -250634,7 +256061,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -250643,26 +256070,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -250676,11 +256103,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -253183,18 +258606,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "" @@ -253557,6 +259087,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -254034,6 +259615,15 @@ msgstr "" msgid "wooden aisle" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -254167,6 +259757,10 @@ msgstr "" msgid "wood table" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -254235,6 +259829,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -254341,6 +259939,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -255524,8 +261128,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -258260,6 +263864,18 @@ msgstr "" msgid "Coverage:" msgstr "" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "" @@ -258351,8 +263967,9 @@ msgstr "" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -258364,6 +263981,12 @@ msgstr "" msgid "Storage (%s)" msgstr "" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "" @@ -262574,11 +268197,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "" @@ -262889,6 +268507,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -265060,10 +270686,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -265604,6 +271226,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -266030,6 +271660,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -266118,6 +271753,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -266873,7 +272513,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -266895,15 +272535,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -270241,6 +275872,10 @@ msgstr "" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -270525,6 +276160,15 @@ msgstr "" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "" @@ -272838,10 +278482,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "" @@ -272982,6 +278622,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -273341,10 +278989,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -273873,13 +279517,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -277191,6 +282828,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -280212,13 +285864,16 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" +msgid "Set the timer to how many seconds (0 to cancel)?" msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: src/iuse.cpp msgid "Tick!" @@ -280955,8 +286610,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -281180,38 +286834,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -282441,87 +288063,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -285345,7 +290910,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -290276,6 +295853,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -291146,21 +296728,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -291424,11 +296991,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -293115,11 +298691,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -293884,6 +299455,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -293891,14 +299471,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -296216,20 +301801,6 @@ msgstr "" msgid "# Unexplored" msgstr "" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -296570,6 +302141,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -296618,6 +302194,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -299009,6 +304589,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -303339,6 +308929,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "" diff --git a/lang/po/tr.po b/lang/po/tr.po index 92bf7232bd415..15e446e100220 100644 --- a/lang/po/tr.po +++ b/lang/po/tr.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Ali Kerem Özfidan , 2021\n" "Language-Team: Turkish (https://www.transifex.com/cataclysm-dda-translators/teams/2217/tr/)\n" @@ -28,7 +28,7 @@ msgid_plural "battery" msgstr[0] "batarya" msgstr[1] "bataryalar" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -43,7 +43,7 @@ msgid_plural "butane" msgstr[0] "bütan" msgstr[1] "bütan" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Çakmaklarda yaygın olarak kullanılan yanıcı sıvı." @@ -54,7 +54,7 @@ msgid_plural "aerosol paint" msgstr[0] "aerosol boya" msgstr[1] "aerosol boyalar" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -69,7 +69,7 @@ msgid_plural "permanent ink" msgstr[0] "tükenmez kalem mürekkebi" msgstr[1] "tükenmez kalem mürekkepleri" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -84,7 +84,7 @@ msgid_plural "candle wax" msgstr[0] "Mum maddesi" msgstr[1] "Mum maddeleri" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "Mum yapmak için kullanılan katı yanıcı madde." @@ -95,7 +95,7 @@ msgid_plural "flare pyrotechnic" msgstr[0] "işaret fişeği mermisi" msgstr[1] "işaret fişeği mermisi" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "İşaret fişkelerinde kullanılan bir kimyasal." @@ -121,7 +121,7 @@ msgid_plural "oxygen" msgstr[0] "oksijen" msgstr[1] "oksijen" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Sıkıştırılmış tıbbi oksijen" @@ -132,7 +132,7 @@ msgid_plural "aluminum foil" msgstr[0] "alüminyum folyo" msgstr[1] "alüminyum folyolar" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -158,7 +158,7 @@ msgid_plural "thread" msgstr[0] "iplik" msgstr[1] "iplikler" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -192,7 +192,7 @@ msgid_plural "yarn" msgstr[0] "yün ipliği" msgstr[1] "yün iplikleri" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "Yün ipliği, yün giyeceklerini örmek için kullanılabilir." @@ -214,7 +214,7 @@ msgid_plural "duct tape" msgstr[0] "bant" msgstr[1] "bantlar" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py 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." @@ -280,8 +280,8 @@ msgid_plural "plutonium slurry" msgstr[0] "plütonyum bulamacı" msgstr[1] "plütonyum bulamaçları" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -350,7 +350,7 @@ msgid_plural "bearings" msgstr[0] "rulman" msgstr[1] "rulman" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "Sapanlar için cephane olarak kullanılmaya elverişli bir kutu rulman." @@ -399,7 +399,7 @@ msgid_plural "120mm HEAT" msgstr[0] "120mm HEAT mermisi" msgstr[1] "120mm HEAT mermisi" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -428,7 +428,7 @@ msgid_plural "mixed smokeless gunpowder" msgstr[0] "karışık dumansız barut" msgstr[1] "karışık dumansız barut" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -445,7 +445,7 @@ msgid_plural "smokeless shotgun powder" msgstr[0] "dumansız çifte barutu" msgstr[1] "dumansız pompalı barutu" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "" @@ -458,7 +458,7 @@ msgid_plural "smokeless pistol powder" msgstr[0] "dumansız tabanca barutu" msgstr[1] "dumansız tabanca barutu" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "" @@ -471,7 +471,7 @@ msgid_plural "smokeless magnum powder" msgstr[0] "dumansız magnum barutu" msgstr[1] "dumansız magnum barutları" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -485,7 +485,7 @@ msgid_plural "smokeless rifle powder" msgstr[0] "dumansız tüfek tozu" msgstr[1] "dumansız tüfek tozları" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "" @@ -498,7 +498,7 @@ msgid_plural "smokeless overbore rifle powder" msgstr[0] "dumansız büyük tüfek barutu" msgstr[1] "dumansız büyük tüfek barutları" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "" @@ -511,7 +511,7 @@ msgid_plural "artillery propellant" msgstr[0] "top sevk barutu" msgstr[1] "top sevk barutları" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -524,7 +524,7 @@ msgid_plural "oxidizer powder" msgstr[0] "oksitleyici toz" msgstr[1] "oksitleyici tozlar" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Uçucu ve oksitleyici toz kimyasal" @@ -535,7 +535,7 @@ msgid_plural "lye powder" msgstr[0] "boya tozu" msgstr[1] "boya tozları" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Toz halindeki kostik soda." @@ -625,7 +625,7 @@ msgid_plural "copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -638,7 +638,7 @@ msgid_plural "medical tape" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "" @@ -650,7 +650,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "Bunu görüyorsanız bir hata oluştu." @@ -661,7 +661,7 @@ msgid_plural "charcoal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -675,7 +675,7 @@ msgid_plural "calcium carbide premix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -701,7 +701,7 @@ msgid_plural "albuterol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -789,7 +789,7 @@ msgid_plural "nicotine liquid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -802,7 +802,7 @@ msgid_plural "fish bait" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "" @@ -855,7 +855,7 @@ msgid_plural "unfinished charcoal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -868,7 +868,7 @@ msgid_plural "unfinished calcium carbide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -892,7 +892,7 @@ msgid_plural "nitrox" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "" @@ -903,7 +903,7 @@ msgid_plural "extinguishing agent" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "" @@ -914,7 +914,7 @@ msgid_plural "tinder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "" @@ -947,7 +947,7 @@ msgid_plural "bronze" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "" @@ -958,7 +958,7 @@ msgid_plural "glowstick juice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -970,7 +970,7 @@ msgid_plural "graphite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -984,7 +984,7 @@ msgid_plural "black pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -997,7 +997,7 @@ msgid_plural "blue pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1010,7 +1010,7 @@ msgid_plural "green pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1023,7 +1023,7 @@ msgid_plural "red pen ink" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1050,7 +1050,7 @@ msgid_plural "sulfur" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1076,7 +1076,7 @@ msgid_plural "cement" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1090,7 +1090,7 @@ msgid_plural "gravel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1101,7 +1101,7 @@ msgid_plural "limestone" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1115,7 +1115,7 @@ msgid_plural "quicklime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1131,7 +1131,7 @@ msgid_plural "sand" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1144,7 +1144,7 @@ msgid_plural "soil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1157,7 +1157,7 @@ msgid_plural "aluminum powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1172,7 +1172,7 @@ msgid_plural "zinc powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1187,7 +1187,7 @@ msgid_plural "zinc oxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1200,7 +1200,7 @@ msgid_plural "manganese dioxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1214,7 +1214,7 @@ msgid_plural "potassium chloride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1229,7 +1229,7 @@ msgid_plural "potassium hydroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1243,7 +1243,7 @@ msgid_plural "acetone" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1257,7 +1257,7 @@ msgid_plural "chromium oxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1273,7 +1273,7 @@ msgid_plural "calcium carbide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1289,7 +1289,7 @@ msgid_plural "hexamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1305,7 +1305,7 @@ msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1320,7 +1320,7 @@ msgid_plural "ammonium nitrate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1335,7 +1335,7 @@ msgid_plural "ammonium nitrate pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1350,7 +1350,7 @@ msgid_plural "saltpeter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1364,7 +1364,7 @@ msgid_plural "niter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1377,7 +1377,7 @@ msgid_plural "aluminum sulfate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1394,7 +1394,7 @@ msgid_plural "acetic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1409,7 +1409,7 @@ msgid_plural "formaldehyde" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1424,7 +1424,7 @@ msgid_plural "thermite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1439,7 +1439,7 @@ msgid_plural "ANFO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1454,7 +1454,7 @@ msgid_plural "black gunpowder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1469,7 +1469,7 @@ msgid_plural "match head powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1483,7 +1483,7 @@ msgid_plural "RDX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1497,7 +1497,7 @@ msgid_plural "composition b" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1511,7 +1511,7 @@ msgid_plural "HMTD" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1525,7 +1525,7 @@ msgid_plural "APEX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1539,7 +1539,7 @@ msgid_plural "improvised rocket fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1552,7 +1552,7 @@ msgid_plural "detergent" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "" @@ -1563,7 +1563,7 @@ msgid_plural "soap flakes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -1624,7 +1624,7 @@ msgid_plural "concentrated venom" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1639,7 +1639,7 @@ msgid_plural "concentrated paralytic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1654,7 +1654,7 @@ msgid_plural "rocuronium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1668,7 +1668,7 @@ msgid_plural "red phosphorous" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1681,7 +1681,7 @@ msgid_plural "iodine crystal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1694,7 +1694,7 @@ msgid_plural "ethanol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1722,7 +1722,7 @@ msgid_plural "methanol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1736,7 +1736,7 @@ msgid_plural "diesel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1748,7 +1748,7 @@ msgid_plural "JP8 fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1761,7 +1761,7 @@ msgid_plural "avgas fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -1772,7 +1772,7 @@ msgid_plural "biodiesel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1786,7 +1786,7 @@ msgid_plural "gasoline" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1799,7 +1799,7 @@ msgid_plural "lamp oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "" @@ -1810,7 +1810,7 @@ msgid_plural "motor oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "" @@ -1821,7 +1821,7 @@ msgid_plural "napalm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -1835,7 +1835,7 @@ msgid_plural "gelled gasoline" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -1849,7 +1849,7 @@ msgid_plural "flamethrower fuel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -1888,7 +1888,7 @@ msgid_plural "shrapnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "" @@ -1944,7 +1944,7 @@ msgid_plural "10mm Auto FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -1970,7 +1970,7 @@ msgid_plural "H&K 12mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2010,7 +2010,7 @@ msgid_plural "20x66mm buckshot, handmade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2036,7 +2036,7 @@ msgid_plural "20x66mm explosive" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2078,7 +2078,7 @@ msgid_plural "20x66mm frag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2092,7 +2092,7 @@ msgid_plural "20x66mm incendiary" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2106,7 +2106,7 @@ msgid_plural "20x66mm buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2134,7 +2134,7 @@ msgid_plural ".22 CB" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2148,7 +2148,7 @@ msgid_plural ".22 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2162,7 +2162,7 @@ msgid_plural ".22 LR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2176,7 +2176,7 @@ msgid_plural ".22 rat-shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2214,7 +2214,7 @@ msgid_plural ".223 Remington" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2231,7 +2231,7 @@ msgid_plural "5.56 NATO Mk 262" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2247,7 +2247,7 @@ msgid_plural "5.56 NATO Mk 318" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2264,7 +2264,7 @@ msgid_plural "5.56 NATO M855" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2282,7 +2282,7 @@ msgid_plural "5.56 NATO M855A1" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2300,7 +2300,7 @@ msgid_plural "5.56 NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2349,7 +2349,7 @@ msgid_plural ".270 Winchester JSP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2397,7 +2397,7 @@ msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2411,7 +2411,7 @@ msgid_plural ".30-06 Springfield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2425,7 +2425,7 @@ msgid_plural ".30-06 M14A1 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2439,7 +2439,7 @@ msgid_plural ".30-06 M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2541,7 +2541,7 @@ msgid_plural ".308 Winchester" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2555,7 +2555,7 @@ msgid_plural "7.62x51mm M80" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2569,7 +2569,7 @@ msgid_plural "7.62x51mm NATO tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2618,7 +2618,7 @@ msgid_plural ".32 ACP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2643,7 +2643,7 @@ msgid_plural ".357 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2657,7 +2657,7 @@ msgid_plural ".357 Magnum JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2695,7 +2695,7 @@ msgid_plural ".357 SIG FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2708,7 +2708,7 @@ msgid_plural ".357 SIG JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -2759,7 +2759,7 @@ msgid_plural ".38 FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -2785,7 +2785,7 @@ msgid_plural ".38 Super" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -2828,7 +2828,7 @@ msgid_plural ".380 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -2843,7 +2843,7 @@ msgid_plural ".380 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -2858,7 +2858,7 @@ msgid_plural ".380 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -2903,7 +2903,7 @@ msgid_plural ".38 Super FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -2923,7 +2923,7 @@ msgid_plural ".40 S&W FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -2937,7 +2937,7 @@ msgid_plural ".40 S&W JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -2981,7 +2981,7 @@ msgid_plural "40x46mm M1006 sponge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -2995,7 +2995,7 @@ msgid_plural "40x46mm M433 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3009,7 +3009,7 @@ msgid_plural "40x46mm M576 buckshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3023,7 +3023,7 @@ msgid_plural "40x46mm M651 tear gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3037,8 +3037,8 @@ msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3052,8 +3052,8 @@ msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3096,8 +3096,8 @@ msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3111,8 +3111,8 @@ msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3170,7 +3170,7 @@ msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3183,7 +3183,7 @@ msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3213,7 +3213,7 @@ msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3227,8 +3227,8 @@ msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3251,8 +3251,8 @@ msgid_plural "40x53mm flechette, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3283,7 +3283,7 @@ msgid_plural ".410 000 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -3300,7 +3300,7 @@ msgid_plural ".44 Magnum FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3364,7 +3364,7 @@ msgid_plural ".45 ACP FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3377,7 +3377,7 @@ msgid_plural ".45 ACP JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3391,7 +3391,7 @@ msgid_plural ".45 ACP +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3435,7 +3435,7 @@ msgid_plural ".454 Casull" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3463,7 +3463,7 @@ msgid_plural ".45-70 SP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3491,7 +3491,7 @@ msgid_plural ".45-70 LFN cowboy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3505,7 +3505,7 @@ msgid_plural ".45-70 SP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3534,7 +3534,7 @@ msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3549,7 +3549,7 @@ msgid_plural ".45-70, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3564,7 +3564,7 @@ msgid_plural ".45 Colt JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3591,7 +3591,7 @@ msgid_plural "4.6x30mm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3605,8 +3605,8 @@ msgid_plural "4.6x30mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3627,7 +3627,7 @@ msgid_plural ".460 Rowland HCFN" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3640,7 +3640,7 @@ msgid_plural ".460 Rowland" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -3668,7 +3668,7 @@ msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -3687,7 +3687,7 @@ msgid_plural ".50 BMG M17 tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3701,7 +3701,7 @@ msgid_plural ".50 BMG M33 Ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -3717,7 +3717,7 @@ msgid_plural ".50 BMG Match" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -3730,7 +3730,7 @@ msgid_plural ".50 BMG M2 AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -3743,7 +3743,7 @@ msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -3762,7 +3762,7 @@ msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3776,7 +3776,7 @@ msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -3792,7 +3792,7 @@ msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -3849,7 +3849,7 @@ msgid_plural "5.45x39mm 7N10" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -3864,7 +3864,7 @@ msgid_plural "5.45x39mm 7N22" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -3877,7 +3877,7 @@ msgid_plural "5.45x39mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -3891,7 +3891,7 @@ msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -3916,7 +3916,7 @@ msgid_plural "5.7x28mm SS190" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3933,8 +3933,8 @@ msgid_plural "5.7x28mm, black powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4013,7 +4013,7 @@ msgid_plural "66mm HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -4026,7 +4026,7 @@ msgid_plural ".700 NX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4053,7 +4053,7 @@ msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4068,7 +4068,7 @@ msgid_plural "7.62x39mm M67" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4083,7 +4083,7 @@ msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4116,7 +4116,7 @@ msgid_plural "7.62x54mmR" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -4144,7 +4144,7 @@ msgid_plural "7.62x25mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -4171,7 +4171,7 @@ msgid_plural "7.62x25mm Type P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4238,7 +4238,7 @@ msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4251,7 +4251,7 @@ msgid_plural "8x40mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4264,7 +4264,7 @@ msgid_plural "8x40mm sporting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4278,7 +4278,7 @@ msgid_plural "8x40mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4292,7 +4292,7 @@ msgid_plural "8x40mm HVP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4307,7 +4307,7 @@ msgid_plural "8x40mm tracer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4322,7 +4322,7 @@ msgid_plural "8x40mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4336,7 +4336,7 @@ msgid_plural "9x19mm JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4351,7 +4351,7 @@ msgid_plural "9x19mm FMJ" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4364,7 +4364,7 @@ msgid_plural "9x19mm +P" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4377,7 +4377,7 @@ msgid_plural "9x19mm +P+" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4426,7 +4426,7 @@ msgid_plural "9x18mm 57-N-181S" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4440,7 +4440,7 @@ msgid_plural "9x18mm SP-7" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4454,7 +4454,7 @@ msgid_plural "9x18mm RG028" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4479,7 +4479,7 @@ msgid_plural "9x18mm, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4493,7 +4493,7 @@ msgid_plural "9x18mm +P+, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4507,7 +4507,7 @@ msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4521,7 +4521,7 @@ msgid_plural "152mm ATGM HEAT" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -4547,7 +4547,7 @@ msgid_plural "cannon round shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -4560,7 +4560,7 @@ msgid_plural "sprayable toxic gas" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -4573,7 +4573,7 @@ msgid_plural "sprayable fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -4586,7 +4586,7 @@ msgid_plural "sprayable insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -4697,7 +4697,7 @@ msgid_plural "paintball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -4813,7 +4813,7 @@ msgid_plural "00 shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -4827,7 +4827,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -4838,7 +4838,7 @@ msgid_plural "birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -4895,8 +4895,8 @@ msgid_plural "00 shot, scrap loaded" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -5047,7 +5047,7 @@ msgid_plural "oxyacetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -5060,7 +5060,7 @@ msgid_plural "fungal seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "" @@ -5881,7 +5881,7 @@ msgid_plural "red paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "" @@ -5892,7 +5892,7 @@ msgid_plural "blue paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "" @@ -5903,7 +5903,7 @@ msgid_plural "white paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "" @@ -5914,7 +5914,7 @@ msgid_plural "green paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "" @@ -5925,7 +5925,7 @@ msgid_plural "purple paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "" @@ -5936,7 +5936,7 @@ msgid_plural "yellow paint" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "" @@ -6004,7 +6004,7 @@ msgid_plural "bismuth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -6015,8 +6015,8 @@ msgid_plural "gold" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -6035,7 +6035,7 @@ msgid_plural "zinc" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -6050,7 +6050,7 @@ msgid_plural "lead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -6063,7 +6063,7 @@ msgid_plural "magnesium powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -6076,7 +6076,7 @@ msgid_plural "silver" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -6137,7 +6137,7 @@ msgid_plural "tin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -6150,7 +6150,7 @@ msgid_plural "solder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -6186,7 +6186,7 @@ msgid_plural "fuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -6239,7 +6239,7 @@ msgid_plural "cotton scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -6253,7 +6253,7 @@ msgid_plural "faux fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -6266,7 +6266,7 @@ msgid_plural "felt scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -6280,7 +6280,7 @@ msgid_plural "fur scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -6293,7 +6293,7 @@ msgid_plural "Kevlar scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -6308,7 +6308,7 @@ msgid_plural "leather scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -6321,7 +6321,7 @@ msgid_plural "Lycra scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -6334,7 +6334,7 @@ msgid_plural "neoprene scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -6347,7 +6347,7 @@ msgid_plural "synthetic fabric scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -6360,7 +6360,7 @@ msgid_plural "Nomex scraps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -6386,7 +6386,7 @@ msgid_plural "patchwork cotton sheet" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -6411,7 +6411,7 @@ msgid_plural "patchwork faux fur clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -6436,7 +6436,7 @@ msgid_plural "patchwork felt clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -6476,7 +6476,7 @@ msgid_plural "patchwork Lycra clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -6503,7 +6503,7 @@ msgid_plural "patchwork neoprene clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -6531,7 +6531,7 @@ msgid_plural "patchwork Nomex clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -6556,7 +6556,7 @@ msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -6650,7 +6650,7 @@ msgid_plural "titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -6678,7 +6678,7 @@ msgid_plural "10mm FMJ caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -6693,7 +6693,7 @@ msgid_plural "10mm JHP caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -6708,7 +6708,7 @@ msgid_plural "25mm canister shot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -6724,7 +6724,7 @@ msgid_plural "7.50mm caseless" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -6739,7 +6739,7 @@ msgid_plural "7.50mm RP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -6756,7 +6756,7 @@ msgid_plural "electric charge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -6769,7 +6769,7 @@ msgid_plural "foamcrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -6785,7 +6785,7 @@ msgid_plural "solid hydrogen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -6798,7 +6798,7 @@ msgid_plural "lead pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -6812,7 +6812,7 @@ msgid_plural "domed HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -6826,7 +6826,7 @@ msgid_plural "tipped HP pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -6839,7 +6839,7 @@ msgid_plural "alloy pellets" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -6984,7 +6984,7 @@ msgid_plural "pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6999,7 +6999,7 @@ msgid_plural "pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -7038,7 +7038,7 @@ msgid_plural "magnum ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -7054,7 +7054,7 @@ msgid_plural "magnum ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -7094,7 +7094,7 @@ msgid_plural "tiny pistol ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7110,7 +7110,7 @@ msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -7150,7 +7150,7 @@ msgid_plural "rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7166,7 +7166,7 @@ msgid_plural "rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -7206,7 +7206,7 @@ msgid_plural "foreign rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -7218,7 +7218,7 @@ msgid_plural "railgun rifle ammo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -7231,7 +7231,7 @@ msgid_plural "huge rifle ammo, ball" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7247,7 +7247,7 @@ msgid_plural "huge rifle ammo, AP" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -7274,7 +7274,7 @@ msgid_plural "rocket, antipersonnel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -7287,7 +7287,7 @@ msgid_plural "rocket, multipurpose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -7301,7 +7301,7 @@ msgid_plural "rocket, smoke" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -7327,7 +7327,7 @@ msgid_plural "shotshell, birdshot" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -7340,7 +7340,7 @@ msgid_plural "shotshell, slug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -7354,7 +7354,7 @@ msgid_plural "shotshell, pyrotechnical" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -7404,7 +7404,7 @@ msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -7455,7 +7455,7 @@ msgid_plural "alumentum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -7508,7 +7508,7 @@ msgid_plural "dragon blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -7536,7 +7536,7 @@ msgid_plural "parabolan yarn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -7547,7 +7547,7 @@ msgid_plural "crystallized mana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -7585,7 +7585,7 @@ msgid_plural "liquid mercury" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -7602,7 +7602,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -8095,7 +8095,7 @@ msgstr[1] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -8111,7 +8111,7 @@ msgstr "" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -8147,7 +8147,7 @@ msgid_plural "chest rig" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -9026,38 +9026,19 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" +msgid "tool belt" +msgid_plural "tool belts" msgstr[0] "" msgstr[1] "" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "" -msgstr[1] "" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -9209,25 +9190,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -9245,45 +9207,6 @@ msgid_plural "pairs of XL fur boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -9295,26 +9218,6 @@ msgstr[1] "" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -9333,26 +9236,6 @@ msgid_plural "pairs of XL leather armor boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -9423,20 +9306,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -9468,39 +9337,6 @@ msgid_plural "pairs of XL winter boots" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -10391,25 +10227,6 @@ msgid_plural "XL leather dusters" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -10458,7 +10275,7 @@ msgid_plural "army jacket" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -10631,7 +10448,7 @@ msgid_plural "kimono" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -10792,19 +10609,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -10857,19 +10661,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -10887,7 +10678,7 @@ msgid_plural "thawb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -10939,19 +10730,6 @@ msgstr[1] "" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -11196,19 +10974,6 @@ msgstr[1] "" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -11580,25 +11345,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -11616,50 +11362,6 @@ msgid_plural "pairs of XL fur gloves" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -11723,63 +11425,6 @@ msgid_plural "pairs of XL glove liners" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -11820,19 +11465,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -11954,37 +11586,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -12725,7 +12326,7 @@ msgid_plural "kabuto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -12835,32 +12436,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -12914,32 +12489,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -13139,36 +12688,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -13218,77 +12737,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -13300,56 +12748,6 @@ msgstr[1] "" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -13758,9 +13156,9 @@ msgid_plural "garnet and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -13771,9 +13169,9 @@ msgid_plural "diamond and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -13784,9 +13182,9 @@ msgid_plural "amethyst and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -13797,9 +13195,9 @@ msgid_plural "aquamarine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -13810,9 +13208,9 @@ msgid_plural "emerald and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -13823,9 +13221,9 @@ msgid_plural "alexandrite and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -13836,9 +13234,9 @@ msgid_plural "ruby and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -13849,9 +13247,9 @@ msgid_plural "peridot and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -13862,9 +13260,9 @@ msgid_plural "sapphire and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -13875,9 +13273,9 @@ msgid_plural "tourmaline and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -13888,9 +13286,9 @@ msgid_plural "citrine and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -13901,9 +13299,9 @@ msgid_plural "blue topaz and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -13914,9 +13312,9 @@ msgid_plural "opal and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -13927,9 +13325,9 @@ msgid_plural "pearl and gold cufflinks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -17507,7 +16905,7 @@ msgid_plural "turnout trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -17547,7 +16945,7 @@ msgid_plural "leather chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -17560,7 +16958,7 @@ msgid_plural "chainsaw chaps" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -17575,7 +16973,7 @@ msgid_plural "fencing pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -17748,32 +17146,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -17785,39 +17157,13 @@ msgstr[1] "" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -17830,7 +17176,7 @@ msgid_plural "light EOD trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -17857,7 +17203,7 @@ msgid_plural "basketball shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "" @@ -17868,7 +17214,7 @@ msgid_plural "breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -17892,7 +17238,7 @@ msgid_plural "hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "" @@ -17903,7 +17249,7 @@ msgid_plural "fur hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "" @@ -17914,7 +17260,7 @@ msgid_plural "leather hot pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "" @@ -17925,7 +17271,7 @@ msgid_plural "jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "" @@ -17958,7 +17304,7 @@ msgid_plural "red jeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -17987,7 +17333,7 @@ msgid_plural "leggings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -18063,7 +17409,7 @@ msgid_plural "pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "" @@ -18074,15 +17420,15 @@ msgid_plural "army pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -18115,7 +17461,7 @@ msgid_plural "cargo pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -18126,7 +17472,7 @@ msgid_plural "checkered pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -18137,7 +17483,7 @@ msgid_plural "fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "" @@ -18148,7 +17494,7 @@ msgid_plural "faux fur pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -18159,7 +17505,7 @@ msgid_plural "leather pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -18172,7 +17518,7 @@ msgid_plural "ski pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "" @@ -18183,7 +17529,7 @@ msgid_plural "police breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -18196,7 +17542,7 @@ msgid_plural "mail carrier shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -18207,7 +17553,7 @@ msgid_plural "shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "" @@ -18218,7 +17564,7 @@ msgid_plural "cargo shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -18229,7 +17575,7 @@ msgid_plural "denim shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -18290,7 +17636,7 @@ msgid_plural "striped pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -18321,7 +17667,7 @@ msgid_plural "army winter pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -19461,58 +18807,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -19947,33 +19241,6 @@ msgid_plural "XL plate armors" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -20019,8 +19286,8 @@ msgstr[1] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -20034,19 +19301,6 @@ msgstr[1] "" msgid "An ornamental suit of Japanese samurai armor." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -20181,69 +19435,41 @@ msgstr[0] "" msgstr[1] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for survivor firesuit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" @@ -20262,40 +19488,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -20359,19 +19551,6 @@ msgid "" "experience." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -20381,8 +19560,8 @@ msgstr[1] "" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" #: lang/json/ARMOR_from_json.py @@ -20398,42 +19577,6 @@ msgid "" "Light and very comfortable." msgstr "" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -20505,45 +19648,6 @@ msgstr[1] "" msgid "A neoprene hood, commonly worn by divers." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -20651,7 +19755,7 @@ msgid_plural "lorica segmentata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -20820,7 +19924,7 @@ msgid_plural "tire leather armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -20880,25 +19984,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -21166,7 +20251,7 @@ msgid_plural "leotard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -21252,7 +20337,7 @@ msgid_plural "French maid clothes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -21552,7 +20637,7 @@ msgid_plural "boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "" @@ -21563,7 +20648,7 @@ msgid_plural "XL boxer briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -21574,7 +20659,7 @@ msgid_plural "boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -21586,7 +20671,7 @@ msgid_plural "XL boxer shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -21599,7 +20684,7 @@ msgid_plural "boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21611,7 +20696,7 @@ msgid_plural "XL boy shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -21636,7 +20721,7 @@ msgid_plural "briefs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "" @@ -21793,7 +20878,7 @@ msgid_plural "panties" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -21857,7 +20942,7 @@ msgid_plural "tights" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -21882,7 +20967,7 @@ msgid_plural "compression shorts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -21916,6 +21001,942 @@ msgid "" "unitard provides overall coverage with great flexibility." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "" +msgstr[1] "" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -22036,7 +22057,7 @@ msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -22049,7 +22070,7 @@ msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -22209,7 +22230,7 @@ msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -22220,7 +22241,7 @@ msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -22233,7 +22254,7 @@ msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -22495,7 +22516,7 @@ msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -22645,19 +22666,6 @@ msgid "" " ridiculously heavy." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -22785,7 +22793,7 @@ msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -22798,7 +22806,7 @@ msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -22841,6 +22849,12 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -22989,7 +23003,7 @@ msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -23476,7 +23490,7 @@ msgid_plural "freerunner's boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -23548,7 +23562,7 @@ msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -23563,7 +23577,7 @@ msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23592,7 +23606,7 @@ msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -23650,7 +23664,7 @@ msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -23708,7 +23722,7 @@ msgid_plural "frost armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -23719,7 +23733,7 @@ msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -23817,7 +23831,7 @@ msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -23828,7 +23842,7 @@ msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -23913,16 +23927,18 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -23940,42 +23956,35 @@ msgid "" msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py @@ -24701,7 +24710,7 @@ msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -25132,7 +25141,7 @@ msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -25341,7 +25350,7 @@ msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -26645,7 +26654,7 @@ msgid_plural "knife fighter's notes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -26888,7 +26897,7 @@ msgid_plural "plans for a radio repeater mod" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -26926,7 +26935,7 @@ msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -26941,7 +26950,7 @@ msgid_plural "schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -26949,9 +26958,9 @@ msgstr[1] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -26967,7 +26976,7 @@ msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -26982,7 +26991,7 @@ msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -26997,7 +27006,7 @@ msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -27011,7 +27020,7 @@ msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -27025,7 +27034,7 @@ msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -27039,7 +27048,7 @@ msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -27053,7 +27062,7 @@ msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -27067,7 +27076,7 @@ msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -27081,7 +27090,7 @@ msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -27095,7 +27104,7 @@ msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -27109,7 +27118,7 @@ msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27124,7 +27133,7 @@ msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -27139,7 +27148,7 @@ msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -27153,7 +27162,7 @@ msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -27751,7 +27760,7 @@ msgid_plural "The Spirit of Aikido" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "" @@ -27762,7 +27771,7 @@ msgid_plural "Practical Pugilism" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -27774,7 +27783,7 @@ msgid_plural "Capoeira 100" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "" @@ -27785,7 +27794,7 @@ msgid_plural "The Centipede Lu Feng" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "" @@ -27796,7 +27805,7 @@ msgid_plural "The Red Crane" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "" @@ -27807,7 +27816,7 @@ msgid_plural "The Jade Dragon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "" @@ -27818,7 +27827,7 @@ msgid_plural "Practical Eskrima" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "" @@ -27829,7 +27838,7 @@ msgid_plural "The Modern Swordsman" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "" @@ -27840,7 +27849,7 @@ msgid_plural "Kodokan Judo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "" @@ -27851,7 +27860,7 @@ msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "" @@ -27862,7 +27871,7 @@ msgid_plural "Complete Krav Maga" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "" @@ -27873,7 +27882,7 @@ msgid_plural "The Deaf Leopard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "" @@ -27884,7 +27893,7 @@ msgid_plural "The Lizard Kuo Chui" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "" @@ -27895,7 +27904,7 @@ msgid_plural "Ultimate Muay Thai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "" @@ -27906,7 +27915,7 @@ msgid_plural "Essence of Ninjutsu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "" @@ -27917,7 +27926,7 @@ msgid_plural "The Book of Five Rings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -27930,7 +27939,7 @@ msgid_plural "The Modern Pankratiast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "" @@ -27941,7 +27950,7 @@ msgid_plural "The Scorpion Sun Chien" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "" @@ -27952,7 +27961,7 @@ msgid_plural "The Indonesian Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "" @@ -27963,7 +27972,7 @@ msgid_plural "The Black Snake" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "" @@ -27974,7 +27983,7 @@ msgid_plural "Official Taekwondo Training Manual" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "" @@ -27985,7 +27994,7 @@ msgid_plural "Becoming One with the Tao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" @@ -27996,7 +28005,7 @@ msgid_plural "The White Tiger" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "" @@ -28007,7 +28016,7 @@ msgid_plural "The Toad Lo Mang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "" @@ -28018,7 +28027,7 @@ msgid_plural "The Viper Wei Pai" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "" @@ -28029,7 +28038,7 @@ msgid_plural "Zui Quan and You" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "" @@ -28040,7 +28049,7 @@ msgid_plural "The Way of the Spear" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "" @@ -28051,7 +28060,7 @@ msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "" @@ -28063,7 +28072,7 @@ msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -28077,7 +28086,7 @@ msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -28233,7 +28242,7 @@ msgid_plural "Ranch Prospectus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -29102,7 +29111,7 @@ msgid_plural "patient treatment records" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "" @@ -29113,7 +29122,7 @@ msgid_plural "national weather transcripts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -32545,7 +32554,7 @@ msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32560,7 +32569,7 @@ msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32575,7 +32584,7 @@ msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -32590,7 +32599,7 @@ msgid_plural "tank drone schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -32605,7 +32614,7 @@ msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -32835,7 +32844,7 @@ msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -32846,7 +32855,7 @@ msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -32857,7 +32866,7 @@ msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -32870,7 +32879,7 @@ msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -32881,7 +32890,7 @@ msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -32894,7 +32903,7 @@ msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -32908,7 +32917,7 @@ msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -32919,7 +32928,7 @@ msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -32932,7 +32941,7 @@ msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -32943,7 +32952,7 @@ msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -32970,6 +32979,21 @@ msgstr[1] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -35050,7 +35074,7 @@ msgid_plural "bird litter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" @@ -35106,14 +35130,14 @@ msgid_plural "bleach" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -35126,7 +35150,7 @@ msgid_plural "ammonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -35139,7 +35163,7 @@ msgid_plural "liquid fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "" @@ -35150,7 +35174,7 @@ msgid_plural "commercial fertilizer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "" @@ -35161,7 +35185,7 @@ msgid_plural "fungicide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -35174,7 +35198,7 @@ msgid_plural "insecticide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -35187,7 +35211,7 @@ msgid_plural "salt water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "" @@ -35198,7 +35222,7 @@ msgid_plural "soapy water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "" @@ -35220,7 +35244,7 @@ msgid_plural "sulfuric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -35235,7 +35259,7 @@ msgid_plural "hydrochloric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -35249,7 +35273,7 @@ msgid_plural "nitric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -35280,7 +35304,7 @@ msgid_plural "sewage water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "" @@ -35291,7 +35315,7 @@ msgid_plural "lye" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -35304,7 +35328,7 @@ msgid_plural "ether" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -35319,7 +35343,7 @@ msgid_plural "dimethyl sulfoxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -35334,7 +35358,7 @@ msgid_plural "chloroform" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -35348,7 +35372,7 @@ msgid_plural "phenol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -35364,7 +35388,7 @@ msgid_plural "glycerol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -35377,7 +35401,7 @@ msgid_plural "peptone broth powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -35391,7 +35415,7 @@ msgid_plural "agar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -35406,7 +35430,7 @@ msgid_plural "acrylamide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -35419,7 +35443,7 @@ msgid_plural "acetylene" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -35432,7 +35456,7 @@ msgid_plural "formic acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -35445,7 +35469,7 @@ msgid_plural "latex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "" @@ -35456,7 +35480,7 @@ msgid_plural "citric acid" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -35533,13 +35557,24 @@ msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -35578,7 +35613,7 @@ msgid_plural "marloss wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" @@ -35589,7 +35624,7 @@ msgid_plural "Riesling" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" @@ -35600,7 +35635,7 @@ msgid_plural "Chardonnay" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "" @@ -35611,7 +35646,7 @@ msgid_plural "Cabernet Sauvignon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -35624,7 +35659,7 @@ msgid_plural "pinot noir" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -35637,7 +35672,7 @@ msgid_plural "marsala" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" @@ -35648,7 +35683,7 @@ msgid_plural "vermouth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -35661,7 +35696,7 @@ msgid_plural "barley wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "" @@ -35672,7 +35707,7 @@ msgid_plural "whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -35684,7 +35719,7 @@ msgid_plural "vodka" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -35697,7 +35732,7 @@ msgid_plural "gin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -35710,7 +35745,7 @@ msgid_plural "rum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -35723,7 +35758,7 @@ msgid_plural "tequila" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -35736,7 +35771,7 @@ msgid_plural "triple sec" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "" @@ -35747,7 +35782,7 @@ msgid_plural "cheap wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "" @@ -35758,7 +35793,7 @@ msgid_plural "strong mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -35769,7 +35804,7 @@ msgid_plural "weak mixed alcohol" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" @@ -35780,7 +35815,7 @@ msgid_plural "fruit wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -35792,7 +35827,7 @@ msgid_plural "brandy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -35805,7 +35840,7 @@ msgid_plural "Irish coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -35818,7 +35853,7 @@ msgid_plural "Long Island iced tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -35845,7 +35880,7 @@ msgid_plural "wild apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "" @@ -35856,7 +35891,7 @@ msgid_plural "rum & cola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" @@ -35867,7 +35902,7 @@ msgid_plural "beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -35880,7 +35915,7 @@ msgid_plural "spiced mead" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -35892,7 +35927,7 @@ msgid_plural "dandelion wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -35905,7 +35940,7 @@ msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" @@ -35913,15 +35948,17 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pine wine" msgid_plural "pine wine" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "çam şarabı" +msgstr[1] "çam şarapları" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " "and strong aroma takes some getting used to." msgstr "" +"Çam reçinesi ile tatlandırılmış güçlü bir şarap. Yoğun ve sert, keskin tadı " +"ve güçlü aromasına alışmak biraz zaman alıyor." #: lang/json/COMESTIBLE_from_json.py msgid "homebrew beer" @@ -35929,7 +35966,7 @@ msgid_plural "homebrew beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "" @@ -35940,7 +35977,7 @@ msgid_plural "moonshine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -35954,7 +35991,7 @@ msgid_plural "European pilsner" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -35967,7 +36004,7 @@ msgid_plural "American pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -35980,7 +36017,7 @@ msgid_plural "India pale ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -35993,7 +36030,7 @@ msgid_plural "stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -36004,7 +36041,7 @@ msgid_plural "Belgian ale" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -36017,7 +36054,7 @@ msgid_plural "imperial stout" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -36058,7 +36095,7 @@ msgid_plural "single malt whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "" @@ -36069,7 +36106,7 @@ msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "" @@ -36080,7 +36117,7 @@ msgid_plural "cheap whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "" @@ -36091,7 +36128,7 @@ msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" @@ -36102,7 +36139,7 @@ msgid_plural "sherry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -36114,7 +36151,7 @@ msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -36127,7 +36164,7 @@ msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" @@ -36138,7 +36175,7 @@ msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "" @@ -36149,7 +36186,7 @@ msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -36162,7 +36199,7 @@ msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -36253,7 +36290,7 @@ msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" @@ -36264,7 +36301,7 @@ msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" @@ -36275,7 +36312,7 @@ msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -36288,7 +36325,7 @@ msgid_plural "sourdough bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -36301,7 +36338,7 @@ msgid_plural "flatbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "" @@ -36312,7 +36349,7 @@ msgid_plural "bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "" @@ -36323,7 +36360,7 @@ msgid_plural "toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -36336,7 +36373,7 @@ msgid_plural "buttered toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -36347,7 +36384,7 @@ msgid_plural "jam toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -36360,7 +36397,7 @@ msgid_plural "peanut butter toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -36372,7 +36409,7 @@ msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -36383,7 +36420,7 @@ msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -36396,7 +36433,7 @@ msgid_plural "cornbread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "" @@ -36429,7 +36466,7 @@ msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -36453,7 +36490,7 @@ msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -36467,7 +36504,7 @@ msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "" @@ -36478,7 +36515,7 @@ msgid_plural "hallula" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -36647,8 +36684,8 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pine wine must" msgid_plural "pine wine musts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "çam şarabı şırası" +msgstr[1] "çam şarabı şıraları" #. ~ Description for pine wine must #: lang/json/COMESTIBLE_from_json.py @@ -36656,6 +36693,8 @@ msgid "" "Unfermented pine wine. A sticky mixture of water, sugar, yeast, and pine " "resins." msgstr "" +"Fermente olmamış çam şarabı. Su, şeker, maya ve çamdan oluşan yapışkan bir " +"karışım." #: lang/json/COMESTIBLE_from_json.py msgid "beer wort" @@ -36741,18 +36780,18 @@ msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -36763,8 +36802,8 @@ msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -36777,14 +36816,14 @@ msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -36795,7 +36834,7 @@ msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -36823,7 +36862,7 @@ msgid_plural "cooked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "" @@ -36924,7 +36963,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "" @@ -37027,7 +37066,7 @@ msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" @@ -37066,7 +37105,7 @@ msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "" @@ -37113,7 +37152,7 @@ msgid_plural "butchery refuse" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -37198,7 +37237,7 @@ msgid_plural "cooked offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -37212,7 +37251,7 @@ msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "" @@ -37223,7 +37262,7 @@ msgid_plural "pickled offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -37237,7 +37276,7 @@ msgid_plural "canned offal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -37272,31 +37311,28 @@ msgid_plural "meat jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -37308,7 +37344,7 @@ msgid_plural "salted fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -37320,33 +37356,27 @@ msgid_plural "smoked meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -37367,7 +37397,7 @@ msgid_plural "smoked fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -37420,7 +37450,7 @@ msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "" @@ -37471,7 +37501,7 @@ msgid_plural "raw brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" @@ -37482,7 +37512,7 @@ msgid_plural "cooked brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -37561,7 +37591,7 @@ msgstr[1] "" msgid "Normally a delicacy, it needs a little… something." msgstr "" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "" @@ -37713,7 +37743,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -37954,7 +37984,7 @@ msgid_plural "alien fronds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -38059,7 +38089,7 @@ msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "" @@ -38070,7 +38100,7 @@ msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "" @@ -38108,13 +38138,38 @@ msgid "" "appetizing." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -38128,7 +38183,7 @@ msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -38141,7 +38196,7 @@ msgid_plural "cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "" @@ -38152,7 +38207,7 @@ msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -38164,7 +38219,7 @@ msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -38177,7 +38232,7 @@ msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -38190,7 +38245,7 @@ msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -38203,7 +38258,7 @@ msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -38216,7 +38271,7 @@ msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -38242,7 +38297,7 @@ msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" @@ -38266,7 +38321,7 @@ msgid_plural "wheat cereal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -38290,7 +38345,7 @@ msgid_plural "milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" @@ -38301,7 +38356,7 @@ msgid_plural "chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" @@ -38312,7 +38367,7 @@ msgid_plural "reconstituted milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -38325,7 +38380,7 @@ msgid_plural "raw milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -38340,7 +38395,7 @@ msgid_plural "shelf stable milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -38354,7 +38409,7 @@ msgid_plural "evaporated milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -38366,7 +38421,7 @@ msgid_plural "buttermilk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -38390,7 +38445,7 @@ msgid_plural "butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -38402,7 +38457,7 @@ msgid_plural "raw butter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -38414,7 +38469,7 @@ msgid_plural "ghee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -38451,7 +38506,7 @@ msgid_plural "hard cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -38464,7 +38519,7 @@ msgid_plural "cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "" @@ -38486,7 +38541,7 @@ msgid_plural "powdered milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" @@ -38497,7 +38552,7 @@ msgid_plural "condensed milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -38510,7 +38565,7 @@ msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -38523,7 +38578,7 @@ msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" @@ -38534,7 +38589,7 @@ msgid_plural "apple cider" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "" @@ -38571,7 +38626,7 @@ msgid_plural "atomic coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -38585,7 +38640,7 @@ msgid_plural "bee balm tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -38609,7 +38664,7 @@ msgid_plural "chai tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" @@ -38620,7 +38675,7 @@ msgid_plural "chamomile tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -38646,7 +38701,7 @@ msgid_plural "coffee" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -38660,7 +38715,7 @@ msgid_plural "coffee substitute" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -38674,7 +38729,7 @@ msgid_plural "chicory brew" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -38744,7 +38799,7 @@ msgid_plural "dandelion tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" @@ -38755,7 +38810,7 @@ msgid_plural "dandelion and burdock tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -38810,7 +38865,7 @@ msgid_plural "herbal tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" @@ -38821,7 +38876,7 @@ msgid_plural "hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -38869,7 +38924,7 @@ msgid_plural "lemonade" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -38895,7 +38950,7 @@ msgid_plural "lotus tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" @@ -38906,7 +38961,7 @@ msgid_plural "Mexican hot chocolate" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -38964,15 +39019,17 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pine needle tea" msgid_plural "pine needle tea" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "çam iğnesi çayı" +msgstr[1] "çam iğnesi çayları" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " "water." msgstr "" +"Kaynayan suda demlenmiş çam iğneleri ile hazırlanan kokulu ve sağlıklı bir " +"içecek." #: lang/json/COMESTIBLE_from_json.py msgid "grape drink" @@ -39005,7 +39062,7 @@ msgid_plural "root beer" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" @@ -39042,13 +39099,13 @@ msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -39074,7 +39131,7 @@ msgid_plural "sweet water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "" @@ -39098,7 +39155,7 @@ msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -39135,7 +39192,7 @@ msgid_plural "water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -39148,7 +39205,7 @@ msgid_plural "clean water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" @@ -39159,7 +39216,7 @@ msgid_plural "mineral water" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" @@ -39288,7 +39345,7 @@ msgid_plural "maple sap" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" @@ -39299,7 +39356,7 @@ msgid_plural "mayonnaise" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -39324,7 +39381,7 @@ msgid_plural "mustard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -39337,7 +39394,7 @@ msgid_plural "forest honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -39350,7 +39407,7 @@ msgid_plural "vinegar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -39363,7 +39420,7 @@ msgid_plural "vegetable cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "" @@ -39374,7 +39431,7 @@ msgid_plural "animal cooking oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "" @@ -39385,7 +39442,7 @@ msgid_plural "molasses" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -39398,7 +39455,7 @@ msgid_plural "horseradish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "" @@ -39409,7 +39466,7 @@ msgid_plural "coffee syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -39751,7 +39808,7 @@ msgid_plural "scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "" @@ -39773,7 +39830,7 @@ msgid_plural "fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -39786,7 +39843,7 @@ msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -39799,7 +39856,7 @@ msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -39812,7 +39869,7 @@ msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -40004,7 +40061,7 @@ msgid_plural "frozen yogurt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -40075,7 +40132,7 @@ msgid_plural "peaches in syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -40097,7 +40154,7 @@ msgid_plural "lemonade drink mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -40132,7 +40189,7 @@ msgid_plural "dehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -40146,7 +40203,7 @@ msgid_plural "rehydrated fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -40171,7 +40228,7 @@ msgid_plural "canned fruit" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -40184,7 +40241,7 @@ msgid_plural "pumpkin yeast bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -40208,7 +40265,7 @@ msgid_plural "irradiated rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -40598,7 +40655,7 @@ msgid_plural "irradiated broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -40650,7 +40707,7 @@ msgid_plural "irradiated corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -40702,7 +40759,7 @@ msgid_plural "irradiated celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -40715,7 +40772,7 @@ msgid_plural "irradiated rhubarb" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -40823,12 +40880,12 @@ msgid_plural "potato chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -40839,7 +40896,7 @@ msgid_plural "popcorn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -40852,7 +40909,7 @@ msgid_plural "popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -40865,7 +40922,7 @@ msgid_plural "salted popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "" @@ -40876,7 +40933,7 @@ msgid_plural "buttered popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -40887,7 +40944,7 @@ msgid_plural "pretzels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "" @@ -40920,7 +40977,7 @@ msgid_plural "marshmallows" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "" @@ -40931,7 +40988,7 @@ msgid_plural "s'mores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -40966,7 +41023,7 @@ msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "" @@ -40977,12 +41034,12 @@ msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -41030,7 +41087,7 @@ msgid_plural "powder candy sticks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -41104,7 +41161,7 @@ msgid_plural "maple syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -41117,7 +41174,7 @@ msgid_plural "sugar beet syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -41167,7 +41224,7 @@ msgid_plural "fast-food French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" @@ -41178,7 +41235,7 @@ msgid_plural "French fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -41200,7 +41257,7 @@ msgid_plural "Necco wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -41226,8 +41283,8 @@ msgid_plural "caramel" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "" @@ -41238,7 +41295,7 @@ msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "" @@ -41249,7 +41306,7 @@ msgid_plural "tortilla chips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -41262,7 +41319,7 @@ msgid_plural "cheese nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -41275,31 +41332,28 @@ msgid_plural "meat nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -41312,31 +41366,31 @@ msgid_plural "meat nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -41349,7 +41403,7 @@ msgid_plural "vegetarian nachos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -41362,7 +41416,7 @@ msgid_plural "vegetarian nachos with cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -41436,7 +41490,7 @@ msgid_plural "chili dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" @@ -41447,7 +41501,7 @@ msgid_plural "uncooked corn dogs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -41523,7 +41577,7 @@ msgid_plural "cheese fries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "" @@ -41611,8 +41665,7 @@ msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -41755,32 +41808,26 @@ msgid_plural "raw sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -41799,15 +41846,14 @@ msgid_plural "smoked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -41826,15 +41872,14 @@ msgid_plural "cooked sausages" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -41864,23 +41909,21 @@ msgid_plural "bratwursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -41901,7 +41944,7 @@ msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -41952,7 +41995,7 @@ msgid_plural "cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -41965,8 +42008,7 @@ msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" @@ -41974,7 +42016,7 @@ msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -41988,7 +42030,7 @@ msgid_plural "currywursts" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" @@ -41996,8 +42038,7 @@ msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" @@ -42005,8 +42046,7 @@ msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -42027,9 +42067,8 @@ msgid_plural "aspics" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" @@ -42037,9 +42076,8 @@ msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" @@ -42047,9 +42085,8 @@ msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -42071,7 +42108,7 @@ msgid_plural "dehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -42084,7 +42121,7 @@ msgid_plural "rehydrated fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -42097,7 +42134,7 @@ msgid_plural "pickled fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -42109,7 +42146,7 @@ msgid_plural "canned fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -42122,7 +42159,7 @@ msgid_plural "batter fried fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "" @@ -42155,8 +42192,7 @@ msgid_plural "lunch meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -42177,7 +42213,7 @@ msgid_plural "bologna" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" @@ -42185,8 +42221,7 @@ msgid_plural "brat %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" @@ -42194,8 +42229,7 @@ msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" @@ -42203,7 +42237,7 @@ msgid_plural "bleak %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -42231,7 +42265,7 @@ msgid_plural "SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -42269,24 +42303,22 @@ msgid_plural "sausage gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -42307,7 +42339,7 @@ msgid_plural "pemmican" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" @@ -42315,8 +42347,7 @@ msgid_plural "prepper %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" @@ -42324,8 +42355,7 @@ msgid_plural "Orley %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" @@ -42333,7 +42363,7 @@ msgid_plural "pernicious %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -42347,15 +42377,14 @@ msgid_plural "hamburger helpers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" @@ -42363,8 +42392,7 @@ msgid_plural "halfling helper" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -42396,24 +42424,22 @@ msgid_plural "chilis con carne" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -42431,7 +42457,7 @@ msgid_plural "pork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -42444,7 +42470,7 @@ msgid_plural "canned tuna fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "" @@ -42455,7 +42481,7 @@ msgid_plural "canned salmon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "" @@ -42477,7 +42503,7 @@ msgid_plural "pickled herring" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" @@ -42499,16 +42525,14 @@ msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -42528,15 +42552,14 @@ msgid_plural "baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" @@ -42547,15 +42570,14 @@ msgid_plural "meat fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" @@ -42566,15 +42588,15 @@ msgid_plural "deluxe beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -42587,22 +42609,21 @@ msgid_plural "meat pies" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -42621,23 +42642,21 @@ msgid_plural "meat pizzas" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -42669,31 +42688,30 @@ msgid_plural "deluxe scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -42706,15 +42724,14 @@ msgid_plural "canned meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -42734,15 +42751,14 @@ msgid_plural "salted meat slices" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -42761,15 +42777,14 @@ msgid_plural "spaghetti bolognese" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" @@ -42777,8 +42792,7 @@ msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" @@ -42786,7 +42800,7 @@ msgid_plural "gnarly %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" @@ -42797,7 +42811,7 @@ msgid_plural "lasagnes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" @@ -42805,8 +42819,7 @@ msgid_plural "Luigi %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" @@ -42814,7 +42827,7 @@ msgid_plural "Lab %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -42835,7 +42848,7 @@ msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" @@ -42846,8 +42859,7 @@ msgid_plural "cheeseburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" @@ -42855,7 +42867,7 @@ msgid_plural "chump %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -42864,8 +42876,7 @@ msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -42899,23 +42910,21 @@ msgid_plural "hamburgers" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -42934,23 +42943,21 @@ msgid_plural "sloppy joes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -42971,7 +42978,7 @@ msgid_plural "tacos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" @@ -42979,8 +42986,7 @@ msgid_plural "tio %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" @@ -42988,7 +42994,7 @@ msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -43009,15 +43015,14 @@ msgid_plural "pickled meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -43037,10 +43042,8 @@ msgid_plural "dehydrated meats" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" @@ -43048,12 +43051,11 @@ msgid_plural "%s, human" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -43087,9 +43089,8 @@ msgid_plural "haggises" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -43112,7 +43113,7 @@ msgid_plural "fish makizushi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -43125,8 +43126,7 @@ msgid_plural "meat temaki" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" @@ -43134,7 +43134,7 @@ msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -43147,7 +43147,7 @@ msgid_plural "sashimi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" @@ -43171,7 +43171,7 @@ msgid_plural "pelmenis" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -43192,8 +43192,7 @@ msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -43214,15 +43213,14 @@ msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -43241,15 +43239,14 @@ msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -43286,12 +43283,12 @@ msgid_plural "prescription stimulant" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -43338,7 +43335,7 @@ msgid_plural "antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -43365,7 +43362,7 @@ msgid_plural "antiparasitic drug" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -43443,7 +43440,7 @@ msgid_plural "antiseptic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -43499,7 +43496,7 @@ msgid_plural "hydrogen peroxide" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -43551,12 +43548,12 @@ msgid_plural "codeine" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -43570,7 +43567,7 @@ msgid_plural "cocaine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -43612,7 +43609,7 @@ msgid_plural "cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -43626,12 +43623,12 @@ msgid_plural "crack" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -43644,7 +43641,7 @@ msgid_plural "non-drowsy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -43658,7 +43655,7 @@ msgid_plural "antiseptic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "" @@ -43681,7 +43678,7 @@ msgid_plural "prescription sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -43694,12 +43691,12 @@ msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43721,12 +43718,12 @@ msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43747,12 +43744,12 @@ msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -43766,16 +43763,14 @@ msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -43789,7 +43784,7 @@ msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43803,7 +43798,7 @@ msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43817,7 +43812,7 @@ msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43831,7 +43826,7 @@ msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43845,7 +43840,7 @@ msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -43860,7 +43855,7 @@ msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -43875,7 +43870,7 @@ msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -43889,7 +43884,7 @@ msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -43903,12 +43898,12 @@ msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43988,7 +43983,7 @@ msgid_plural "chewing gum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -44013,13 +44008,13 @@ msgid_plural "heroin" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -44096,7 +44091,7 @@ msgid_plural "low-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44110,7 +44105,7 @@ msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -44163,7 +44158,7 @@ msgid_plural "cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -44194,7 +44189,7 @@ msgid_plural "sleeping pill" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -44239,7 +44234,7 @@ msgid_plural "poppy cough syrup" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "" @@ -44250,15 +44245,14 @@ msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -44273,7 +44267,7 @@ msgid_plural "antidepressant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -44305,7 +44299,7 @@ msgid_plural "hemostatic powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -44331,7 +44325,7 @@ msgid_plural "antipsychotic" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -44582,12 +44576,12 @@ msgid_plural "marijuana" msgstr[0] "" msgstr[1] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -44601,7 +44595,7 @@ msgid_plural "fast-acting sedative" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -44628,7 +44622,7 @@ msgid_plural "antiseptic soaked cotton balls" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -44641,7 +44635,7 @@ msgid_plural "narrow-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -44708,7 +44702,7 @@ msgid_plural "broad-spectrum antibiotics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -44723,7 +44717,7 @@ msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -45200,7 +45194,7 @@ msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -45450,9 +45444,8 @@ msgstr[1] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -45519,7 +45512,7 @@ msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -45638,7 +45631,8 @@ msgstr[1] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -45777,13 +45771,14 @@ msgstr "" #: lang/json/COMESTIBLE_from_json.py msgid "pine nuts" msgid_plural "pine nuts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "çam fıstığı" +msgstr[1] "çam fıstıkları" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" +"Bir kozalaktan toplanmış bir avuç dolusu çıtır ve lezzetli çam fıstıkları" #: lang/json/COMESTIBLE_from_json.py msgid "junipers" @@ -45791,7 +45786,7 @@ msgid_plural "junipers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -45804,7 +45799,7 @@ msgid_plural "shelled pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -45816,7 +45811,7 @@ msgid_plural "roasted pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -45827,7 +45822,7 @@ msgid_plural "shelled almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "" @@ -45838,7 +45833,7 @@ msgid_plural "almond pulp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -45850,7 +45845,7 @@ msgid_plural "roasted almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "" @@ -45861,7 +45856,7 @@ msgid_plural "cashews" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "" @@ -45872,7 +45867,7 @@ msgid_plural "shelled pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -45885,7 +45880,7 @@ msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "" @@ -45896,7 +45891,7 @@ msgid_plural "shelled peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -45907,7 +45902,7 @@ msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "" @@ -45918,7 +45913,7 @@ msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -45931,7 +45926,7 @@ msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "" @@ -45942,7 +45937,7 @@ msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -45955,7 +45950,7 @@ msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "" @@ -45966,7 +45961,7 @@ msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -45979,7 +45974,7 @@ msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -45990,7 +45985,7 @@ msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "" @@ -46001,7 +45996,7 @@ msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "" @@ -46012,7 +46007,7 @@ msgid_plural "shelled hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -46025,7 +46020,7 @@ msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "" @@ -46082,7 +46077,7 @@ msgid_plural "acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -46095,7 +46090,7 @@ msgid_plural "roasted acorns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "" @@ -46106,7 +46101,7 @@ msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -46119,7 +46114,7 @@ msgid_plural "foie gras" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -46131,7 +46126,7 @@ msgid_plural "liver & onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "" @@ -46186,7 +46181,7 @@ msgid_plural "leverpostej" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -46399,7 +46394,7 @@ msgid_plural "marloss gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -46427,7 +46422,7 @@ msgid_plural "yeast" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -46439,7 +46434,7 @@ msgid_plural "bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" @@ -46450,7 +46445,7 @@ msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -46462,7 +46457,7 @@ msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -46473,7 +46468,7 @@ msgid_plural "tainted bone meal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "" @@ -46484,7 +46479,7 @@ msgid_plural "chitin powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -46531,7 +46526,7 @@ msgid_plural "dried beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -46544,7 +46539,7 @@ msgid_plural "cooked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "" @@ -46555,8 +46550,8 @@ msgid_plural "tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -46575,7 +46570,7 @@ msgid_plural "dehydrated tofu" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" @@ -46586,7 +46581,7 @@ msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -46612,7 +46607,7 @@ msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -46624,7 +46619,7 @@ msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -46638,7 +46633,7 @@ msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -46649,7 +46644,7 @@ msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" @@ -46660,7 +46655,7 @@ msgid_plural "coffee powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -46673,7 +46668,7 @@ msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -46686,7 +46681,7 @@ msgid_plural "candied honey" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -46725,7 +46720,7 @@ msgid_plural "cattle fodder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -46738,7 +46733,7 @@ msgid_plural "bird food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -46751,7 +46746,7 @@ msgid_plural "wet dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -46764,7 +46759,7 @@ msgid_plural "dry dog food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -46777,7 +46772,7 @@ msgid_plural "wet cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -46790,7 +46785,7 @@ msgid_plural "dry cat food" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -46917,7 +46912,7 @@ msgid_plural "instant coffee mix" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -46956,15 +46951,14 @@ msgid_plural "protein drinks" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" @@ -46972,14 +46966,11 @@ msgid_plural "sapient green drink" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -47000,15 +46991,14 @@ msgid_plural "protein powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" @@ -47016,7 +47006,7 @@ msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -47047,15 +47037,14 @@ msgid_plural "protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -47076,7 +47065,7 @@ msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" @@ -47084,7 +47073,7 @@ msgid_plural "fortified soylent green shake" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -47151,7 +47140,7 @@ msgid_plural "blueberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "Maviler ancak bu üzgün oldukları anlamına gelmiyor" @@ -47162,7 +47151,7 @@ msgid_plural "strawberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "Tatlı, sulu böğürtlen, çoğunlukla yabani arsalarda bulunur." @@ -47173,7 +47162,7 @@ msgid_plural "cranberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "" @@ -47184,7 +47173,7 @@ msgid_plural "raspberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "" @@ -47195,7 +47184,7 @@ msgid_plural "huckleberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "" @@ -47206,7 +47195,7 @@ msgid_plural "mulberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -47219,7 +47208,7 @@ msgid_plural "elderberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" @@ -47230,7 +47219,7 @@ msgid_plural "rose hips" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "" @@ -47276,7 +47265,7 @@ msgid_plural "cherries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "Ağaçta büyüyen kırmızı tatlı meyveler" @@ -47299,7 +47288,7 @@ msgid_plural "grapes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -47365,7 +47354,7 @@ msgid_plural "blackberries" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "" @@ -47421,7 +47410,7 @@ msgid_plural "apricots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "" @@ -47462,7 +47451,7 @@ msgid_plural "bee balm" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -47474,7 +47463,7 @@ msgid_plural "broccoli" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "" @@ -47485,7 +47474,7 @@ msgid_plural "buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -47509,7 +47498,7 @@ msgid_plural "spinach" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "" @@ -47558,7 +47547,7 @@ msgid_plural "celery" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" @@ -47582,7 +47571,7 @@ msgid_plural "corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "" @@ -47593,7 +47582,7 @@ msgid_plural "empty corn cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -47654,7 +47643,7 @@ msgid_plural "salsify" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -47668,7 +47657,7 @@ msgid_plural "chicory" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -47791,7 +47780,7 @@ msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -47828,7 +47817,7 @@ msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -47841,7 +47830,7 @@ msgid_plural "dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -47854,7 +47843,7 @@ msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" @@ -47952,7 +47941,7 @@ msgid_plural "wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -47987,7 +47976,7 @@ msgid_plural "raw beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -48000,7 +47989,7 @@ msgid_plural "raw lentils" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "" @@ -48011,7 +48000,7 @@ msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -48048,8 +48037,7 @@ msgid_plural "deluxe sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -48063,6 +48051,27 @@ msgid "" "nutritious!" msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -48124,7 +48133,7 @@ msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -48172,26 +48181,23 @@ msgid_plural "meat sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -48307,7 +48313,7 @@ msgid_plural "mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "" @@ -48318,7 +48324,7 @@ msgid_plural "hop rhizomes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "" @@ -48333,7 +48339,7 @@ msgid_plural "blackberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "" @@ -48348,7 +48354,7 @@ msgid_plural "blueberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "" @@ -48363,7 +48369,7 @@ msgid_plural "cranberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "" @@ -48378,7 +48384,7 @@ msgid_plural "huckleberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "" @@ -48393,7 +48399,7 @@ msgid_plural "mulberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "" @@ -48408,7 +48414,7 @@ msgid_plural "elderberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "" @@ -48423,7 +48429,7 @@ msgid_plural "raspberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "" @@ -48438,7 +48444,7 @@ msgid_plural "strawberry seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "" @@ -48453,7 +48459,7 @@ msgid_plural "grape seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "" @@ -48468,7 +48474,7 @@ msgid_plural "rose seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "" @@ -48483,7 +48489,7 @@ msgid_plural "tobacco seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "" @@ -48498,7 +48504,7 @@ msgid_plural "barley seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "" @@ -48509,7 +48515,7 @@ msgid_plural "sugar beet seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "" @@ -48520,7 +48526,7 @@ msgid_plural "lettuce seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "" @@ -48531,7 +48537,7 @@ msgid_plural "cabbage seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "" @@ -48542,7 +48548,7 @@ msgid_plural "tomato seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "" @@ -48553,7 +48559,7 @@ msgid_plural "cotton seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" @@ -48568,7 +48574,7 @@ msgid_plural "broccoli seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "" @@ -48579,7 +48585,7 @@ msgid_plural "zucchini seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "" @@ -48590,7 +48596,7 @@ msgid_plural "onion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "" @@ -48601,7 +48607,7 @@ msgid_plural "garlic seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "" @@ -48616,7 +48622,7 @@ msgid_plural "cattail seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "" @@ -48631,7 +48637,7 @@ msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "" @@ -48646,7 +48652,7 @@ msgid_plural "salsify seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "" @@ -48657,7 +48663,7 @@ msgid_plural "chicory seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "" @@ -48668,7 +48674,7 @@ msgid_plural "wild root seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "" @@ -48679,7 +48685,7 @@ msgid_plural "decorative plant seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -48696,7 +48702,7 @@ msgid_plural "cactus seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "" @@ -48722,7 +48728,7 @@ msgid_plural "carrot seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "" @@ -48733,7 +48739,7 @@ msgid_plural "corn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "" @@ -48748,7 +48754,7 @@ msgid_plural "chili pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "" @@ -48759,7 +48765,7 @@ msgid_plural "cucumber seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "" @@ -48785,7 +48791,7 @@ msgid_plural "cannabis seeds" msgstr[0] "kenevir tohumu" msgstr[1] "kenevir tohumları" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -48818,7 +48824,7 @@ msgid_plural "bean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "" @@ -48833,7 +48839,7 @@ msgid_plural "soybean seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "" @@ -48842,7 +48848,7 @@ msgstr "" msgid "soybean" msgstr "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "" @@ -48857,7 +48863,7 @@ msgid_plural "thyme seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "" @@ -48874,7 +48880,7 @@ msgid_plural "canola seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "" @@ -48885,7 +48891,7 @@ msgid_plural "pumpkin seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" @@ -48896,7 +48902,7 @@ msgid_plural "sunflower seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" @@ -48914,7 +48920,7 @@ msgid_plural "dogbane seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "" @@ -48925,7 +48931,7 @@ msgid_plural "bee balm seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "" @@ -48936,7 +48942,7 @@ msgid_plural "mugwort seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "" @@ -48947,7 +48953,7 @@ msgid_plural "buckwheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "" @@ -48958,7 +48964,7 @@ msgid_plural "wild herb seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "" @@ -48973,7 +48979,7 @@ msgid_plural "wild vegetable stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "" @@ -48988,7 +48994,7 @@ msgid_plural "dandelion seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "" @@ -49003,7 +49009,7 @@ msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "" @@ -49018,7 +49024,7 @@ msgid_plural "rhubarb stems" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "" @@ -49029,7 +49035,7 @@ msgid_plural "morel mushroom spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "" @@ -49040,7 +49046,7 @@ msgid_plural "datura seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -49058,7 +49064,7 @@ msgid_plural "celery seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "" @@ -49069,7 +49075,7 @@ msgid_plural "oat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "" @@ -49086,7 +49092,7 @@ msgid_plural "wheat seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "" @@ -49103,7 +49109,7 @@ msgid_plural "fried seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -49129,7 +49135,7 @@ msgid_plural "coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "" @@ -49140,7 +49146,7 @@ msgid_plural "roasted coffee beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "" @@ -49151,7 +49157,7 @@ msgid_plural "chamomile seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "" @@ -49166,7 +49172,7 @@ msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "" @@ -49181,7 +49187,7 @@ msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "" @@ -49192,7 +49198,7 @@ msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "" @@ -49203,7 +49209,7 @@ msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" @@ -49214,7 +49220,7 @@ msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "" @@ -49236,8 +49242,7 @@ msgid_plural "bone broths" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -49267,15 +49272,14 @@ msgid_plural "meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -49315,8 +49319,7 @@ msgid_plural "curries with meat" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -49334,10 +49337,8 @@ msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -49399,7 +49400,7 @@ msgid_plural "chicken and dumplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" @@ -49423,7 +49424,7 @@ msgid_plural "chili powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -49436,7 +49437,7 @@ msgid_plural "hot sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -49449,7 +49450,7 @@ msgid_plural "cinnamon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" @@ -49460,7 +49461,7 @@ msgid_plural "curry powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -49473,7 +49474,7 @@ msgid_plural "black pepper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "" @@ -49484,7 +49485,7 @@ msgid_plural "salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -49497,7 +49498,7 @@ msgid_plural "Italian seasoning" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" @@ -49508,7 +49509,7 @@ msgid_plural "seasoned salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" @@ -49519,7 +49520,7 @@ msgid_plural "sugar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -49532,7 +49533,7 @@ msgid_plural "sprinkles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -49547,7 +49548,7 @@ msgid_plural "wild herbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -49560,7 +49561,7 @@ msgid_plural "soy sauce" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "" @@ -49576,7 +49577,7 @@ msgid_plural "mustard powder" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "" @@ -49626,7 +49627,7 @@ msgid_plural "starch" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -49639,7 +49640,7 @@ msgid_plural "cooked dandelion greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" @@ -49650,7 +49651,7 @@ msgid_plural "fried dandelions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -49662,7 +49663,7 @@ msgid_plural "cooked burdock greens" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" @@ -49673,7 +49674,7 @@ msgid_plural "fried burdocks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -49710,7 +49711,7 @@ msgid_plural "cooked wild vegetables" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" @@ -49733,7 +49734,7 @@ msgid_plural "cooked buckwheat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -49745,7 +49746,7 @@ msgid_plural "canned corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "" @@ -49756,7 +49757,7 @@ msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -49767,7 +49768,7 @@ msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -49778,7 +49779,7 @@ msgid_plural "hominy" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -49791,7 +49792,7 @@ msgid_plural "cornmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "" @@ -49802,7 +49803,7 @@ msgid_plural "vegetarian baked beans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" @@ -49813,7 +49814,7 @@ msgid_plural "dried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -49826,7 +49827,7 @@ msgid_plural "cooked rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "" @@ -49837,7 +49838,7 @@ msgid_plural "fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "" @@ -49848,7 +49849,7 @@ msgid_plural "beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -49861,7 +49862,7 @@ msgid_plural "tofu fried rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "" @@ -49872,7 +49873,7 @@ msgid_plural "tofu stirfry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -49885,7 +49886,7 @@ msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -49956,10 +49957,10 @@ msgid_plural "pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." -msgstr "" +msgstr "Zeytin yağı,reyhan,sarımsak, çam fıstığı. Basit ve leziz." #: lang/json/COMESTIBLE_from_json.py msgid "canned veggy" @@ -49993,7 +49994,7 @@ msgid_plural "spaghetti al pesto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "" @@ -50016,7 +50017,7 @@ msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -50055,7 +50056,7 @@ msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -50079,7 +50080,7 @@ msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -50155,7 +50156,7 @@ msgid_plural "sushi rice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" @@ -50166,7 +50167,7 @@ msgid_plural "onigiri" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -50179,7 +50180,7 @@ msgid_plural "vegetable hosomaki" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -50205,7 +50206,7 @@ msgid_plural "sauerkraut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -50229,7 +50230,7 @@ msgid_plural "boiled fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" @@ -50240,7 +50241,7 @@ msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" @@ -50258,7 +50259,7 @@ msgid "" " are removed." msgstr "" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "" @@ -50269,7 +50270,7 @@ msgid_plural "raw spaghetti pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -50282,7 +50283,7 @@ msgid_plural "raw lasagne pasta" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -50295,7 +50296,7 @@ msgid_plural "boiled noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "" @@ -50306,7 +50307,7 @@ msgid_plural "raw macaroni" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" @@ -50317,7 +50318,7 @@ msgid_plural "mac & cheese" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" @@ -50328,7 +50329,7 @@ msgid_plural "flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "" @@ -50339,7 +50340,7 @@ msgid_plural "bread flour" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -50352,14 +50353,14 @@ msgid_plural "oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "" @@ -50370,7 +50371,7 @@ msgid_plural "cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -50383,7 +50384,7 @@ msgid_plural "deluxe cooked oatmeal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -50469,7 +50470,7 @@ msgid_plural "oyster crackers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -50504,7 +50505,7 @@ msgid_plural "granola" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -50528,7 +50529,7 @@ msgid_plural "fast noodles" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "" @@ -50722,7 +50723,7 @@ msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "" @@ -50733,7 +50734,7 @@ msgid_plural "melon seeds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "" @@ -50744,7 +50745,7 @@ msgid_plural "banana saplings" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "" @@ -50755,7 +50756,7 @@ msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "" @@ -50766,7 +50767,7 @@ msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "" @@ -50777,7 +50778,7 @@ msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -50826,7 +50827,7 @@ msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "" @@ -50872,7 +50873,7 @@ msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -50885,7 +50886,7 @@ msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -50926,7 +50927,7 @@ msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -51036,7 +51037,7 @@ msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -51050,7 +51051,7 @@ msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -51140,7 +51141,7 @@ msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -51154,7 +51155,7 @@ msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -51168,7 +51169,7 @@ msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -51180,7 +51181,7 @@ msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -51193,7 +51194,7 @@ msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -51248,7 +51249,7 @@ msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -51264,7 +51265,7 @@ msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -51278,7 +51279,7 @@ msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -51292,7 +51293,7 @@ msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -51353,7 +51354,7 @@ msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -51367,7 +51368,7 @@ msgid_plural "food cubes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -51379,7 +51380,7 @@ msgid_plural "Foodplace's Food-to-go™" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -51403,7 +51404,7 @@ msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -51429,7 +51430,7 @@ msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -51443,7 +51444,7 @@ msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -51459,7 +51460,7 @@ msgid_plural "caffex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -51500,7 +51501,7 @@ msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -51562,7 +51563,7 @@ msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -51583,7 +51584,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -51866,8 +51867,8 @@ msgstr[0] "" msgstr[1] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" @@ -51877,6 +51878,18 @@ msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -51919,6 +51932,12 @@ msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -52039,6 +52058,12 @@ msgid_plural "pentaceratops eggs" msgstr[0] "" msgstr[1] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" +msgstr[1] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -52075,24 +52100,6 @@ msgid_plural "mosasaurus eggs" msgstr[0] "" msgstr[1] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" -msgstr[1] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -52391,7 +52398,7 @@ msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -52457,7 +52464,7 @@ msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -52517,14 +52524,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -52607,7 +52614,7 @@ msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -52616,7 +52623,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -52628,7 +52635,7 @@ msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -52639,7 +52646,7 @@ msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -52652,7 +52659,7 @@ msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -52671,7 +52678,7 @@ msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -52685,7 +52692,7 @@ msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -53278,7 +53285,7 @@ msgid_plural "rock salt" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "" @@ -53289,7 +53296,7 @@ msgid_plural "rhodonite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -53302,7 +53309,7 @@ msgid_plural "zincite" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -53339,7 +53346,7 @@ msgid_plural "hickory nuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" @@ -53350,7 +53357,7 @@ msgid_plural "pecans" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" @@ -53361,7 +53368,7 @@ msgid_plural "pistachios" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" @@ -53372,7 +53379,7 @@ msgid_plural "almonds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -53383,7 +53390,7 @@ msgid_plural "peanuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" @@ -53394,7 +53401,7 @@ msgid_plural "hazelnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" @@ -53405,7 +53412,7 @@ msgid_plural "chestnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" @@ -53416,7 +53423,7 @@ msgid_plural "walnuts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" @@ -53702,6 +53709,18 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -53713,6 +53732,19 @@ msgstr[1] "" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -54485,7 +54517,7 @@ msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "" @@ -54496,7 +54528,7 @@ msgid_plural "smoldering embers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -54701,6 +54733,29 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -54903,7 +54958,7 @@ msgid_plural "superglue" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" @@ -55191,7 +55246,7 @@ msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -55333,7 +55388,7 @@ msgid_plural "concrete" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "" @@ -56175,7 +56230,7 @@ msgid_plural "clockworks" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "" @@ -56257,8 +56312,8 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "pine bough" msgid_plural "pine boughs" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "çam dalı" +msgstr[1] "çam dalları" #. ~ Description for pine bough #: lang/json/GENERIC_from_json.py @@ -56266,12 +56321,13 @@ msgid "" "A branch from a pine tree, oozing sticky sap and bristling with prickly " "needles." msgstr "" +"Bir çam ağacından alınmış dal,yapışkan öz suyu ve dikenli iğneleri var." #: lang/json/GENERIC_from_json.py msgid "pinecone" msgid_plural "pinecones" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "kozalak" +msgstr[1] "kozalaklar" #. ~ Description for pinecone #: lang/json/GENERIC_from_json.py @@ -56279,6 +56335,7 @@ msgid "" "A spiny pod from a pine tree. Dry seeds rattle around inside when you shake" " it." msgstr "" +"Çam ağacının tohum zarfı,Kuru tohumları sen onu salladığında takırdıyor." #: lang/json/GENERIC_from_json.py msgid "poppy bud" @@ -56306,7 +56363,7 @@ msgid_plural "chamomile flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -56332,7 +56389,7 @@ msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -56367,7 +56424,7 @@ msgid_plural "mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "" @@ -56414,7 +56471,7 @@ msgid_plural "adobe mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -56427,7 +56484,7 @@ msgid_plural "tanbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" @@ -56449,7 +56506,7 @@ msgid_plural "willowbark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -56876,7 +56933,7 @@ msgid_plural "raw tobacco" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -57183,7 +57240,7 @@ msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -57206,7 +57263,7 @@ msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -57579,6 +57636,98 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -58271,7 +58420,7 @@ msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -58408,7 +58557,7 @@ msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58421,7 +58570,7 @@ msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -58451,7 +58600,7 @@ msgid_plural "Alarm System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58467,7 +58616,7 @@ msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58483,7 +58632,7 @@ msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58499,7 +58648,7 @@ msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58515,7 +58664,7 @@ msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58531,7 +58680,7 @@ msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58547,7 +58696,7 @@ msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58563,7 +58712,7 @@ msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58579,7 +58728,7 @@ msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58595,7 +58744,7 @@ msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58611,7 +58760,7 @@ msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58627,7 +58776,7 @@ msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58643,7 +58792,7 @@ msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58659,7 +58808,7 @@ msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58675,7 +58824,7 @@ msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58691,8 +58840,7 @@ msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58708,7 +58856,7 @@ msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58724,7 +58872,7 @@ msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58740,7 +58888,7 @@ msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58756,7 +58904,7 @@ msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58772,7 +58920,7 @@ msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58788,8 +58936,7 @@ msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -58811,7 +58958,7 @@ msgid_plural "misc software" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" @@ -58822,7 +58969,7 @@ msgid_plural "hackPRO" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "" @@ -58833,7 +58980,7 @@ msgid_plural "MediSoft" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "" @@ -58844,7 +58991,7 @@ msgid_plural "MatheMAX" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "" @@ -58855,7 +59002,7 @@ msgid_plural "infection data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "" @@ -58866,7 +59013,7 @@ msgid_plural "lab data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "" @@ -58877,7 +59024,7 @@ msgid_plural "train data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "" @@ -58888,7 +59035,7 @@ msgid_plural "neural data" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -59178,22 +59325,34 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" @@ -59201,7 +59360,7 @@ msgid_plural "skinned %s" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -59440,7 +59599,7 @@ msgid_plural "trifacet remains" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -59776,6 +59935,100 @@ msgid "" "useful for scouring toilet bowls." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -61495,7 +61748,7 @@ msgid_plural "headphones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -61575,7 +61828,7 @@ msgid_plural "spare parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -62173,7 +62426,7 @@ msgid_plural "bokken" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -62181,14 +62434,14 @@ msgid "" "edge, it's still quite capable of inflicting deadly wounds." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -62734,7 +62987,7 @@ msgid_plural "bionic claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "" @@ -62955,7 +63208,7 @@ msgid_plural "qiang" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -63000,7 +63253,7 @@ msgid_plural "naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -63008,7 +63261,7 @@ msgid "" "or by their wives in defense of the household." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -63016,7 +63269,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -63030,7 +63283,7 @@ msgid_plural "survivor naginata" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -63161,7 +63414,7 @@ msgid_plural "ji" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -63221,6 +63474,20 @@ msgid "" "offers a good bit of slashing power." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" @@ -63228,7 +63495,7 @@ msgid_plural "jian" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -63312,14 +63579,14 @@ msgid_plural "tanto" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -63333,14 +63600,14 @@ msgid_plural "nodachi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -63478,7 +63745,7 @@ msgid_plural "katana" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -63546,7 +63813,7 @@ msgid_plural "wakizashi" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -63611,7 +63878,7 @@ msgid_plural "tiger claws" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -63842,13 +64109,27 @@ msgid "" "somewhat warm to the touch." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -63864,7 +64145,7 @@ msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -63908,7 +64189,7 @@ msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -64198,7 +64479,7 @@ msgid_plural "scrap copper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" @@ -64460,7 +64741,7 @@ msgid_plural "splintered wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" @@ -64677,17 +64958,17 @@ msgid_plural "sealed yeast culture" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -65881,7 +66162,7 @@ msgid_plural "oars" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "" @@ -65903,7 +66184,7 @@ msgid_plural "inflatable section" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "" @@ -65914,7 +66195,7 @@ msgid_plural "inflatable airbag" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "" @@ -66770,7 +67051,7 @@ msgid_plural "chime loudspeakers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -66784,7 +67065,7 @@ msgid_plural "sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "" @@ -66795,7 +67076,7 @@ msgid_plural "wired sheet metal" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "" @@ -66817,7 +67098,7 @@ msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "" @@ -66828,7 +67109,7 @@ msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "" @@ -66851,7 +67132,7 @@ msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -67075,12 +67356,19 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" +msgstr[1] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -67209,6 +67497,17 @@ msgstr[1] "" msgid "A vehicle-mounted area heater." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -67644,7 +67943,7 @@ msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -67703,7 +68002,7 @@ msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -67995,7 +68294,7 @@ msgid_plural "broken Isohypsa" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -68008,7 +68307,7 @@ msgid_plural "broken Kabura-ya" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -68130,7 +68429,7 @@ msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "" @@ -68141,7 +68440,7 @@ msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "" @@ -68332,7 +68631,7 @@ msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68345,7 +68644,7 @@ msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68358,7 +68657,7 @@ msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68371,7 +68670,7 @@ msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68384,7 +68683,7 @@ msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68397,7 +68696,7 @@ msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -68410,7 +68709,7 @@ msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68423,7 +68722,7 @@ msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68436,7 +68735,7 @@ msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68449,7 +68748,7 @@ msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68462,7 +68761,7 @@ msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -68475,7 +68774,7 @@ msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -68584,7 +68883,7 @@ msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -68610,7 +68909,7 @@ msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -68623,7 +68922,7 @@ msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -68649,7 +68948,7 @@ msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -68682,7 +68981,7 @@ msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -69029,7 +69328,7 @@ msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -69743,7 +70042,7 @@ msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "" @@ -71194,7 +71493,7 @@ msgid_plural "subzero talons" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -71408,7 +71707,7 @@ msgid_plural "fireproof mortar" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -71529,7 +71828,7 @@ msgid_plural "chicken walker chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -71542,7 +71841,7 @@ msgid_plural "Beagle chassis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -72345,6 +72644,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -72489,8 +72799,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -72829,6 +73139,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -73229,7 +73544,7 @@ msgid_plural "tiny fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -73240,7 +73555,7 @@ msgid_plural "small fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -73251,7 +73566,7 @@ msgid_plural "medium fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -73262,7 +73577,7 @@ msgid_plural "large fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -73273,7 +73588,7 @@ msgid_plural "huge fish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -73409,7 +73724,7 @@ msgid_plural "whitefish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -73422,7 +73737,7 @@ msgid_plural "largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -73433,7 +73748,7 @@ msgid_plural "smallmouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -73446,7 +73761,7 @@ msgid_plural "striped bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -73459,7 +73774,7 @@ msgid_plural "white bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -73496,7 +73811,7 @@ msgid_plural "sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73507,7 +73822,7 @@ msgid_plural "pumpkinseed sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73530,7 +73845,7 @@ msgid_plural "redbreast sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73541,7 +73856,7 @@ msgid_plural "green sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73552,7 +73867,7 @@ msgid_plural "longear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73563,7 +73878,7 @@ msgid_plural "redear sunfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -73574,7 +73889,7 @@ msgid_plural "rock bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -73587,7 +73902,7 @@ msgid_plural "calico bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -73622,7 +73937,7 @@ msgid_plural "channel catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -73633,7 +73948,7 @@ msgid_plural "white catfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -73730,7 +74045,7 @@ msgid_plural "fallfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -73757,7 +74072,7 @@ msgid_plural "crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -73788,7 +74103,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -73801,7 +74116,7 @@ msgid_plural "giant crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -73814,7 +74129,7 @@ msgid_plural "colossal crayfish" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -74467,7 +74782,7 @@ msgid_plural "fused dragonflies" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -74654,7 +74969,7 @@ msgstr[1] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -76298,7 +76613,7 @@ msgid_plural "Great Pyrenees" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -76493,7 +76808,7 @@ msgid_plural "moose" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -76652,7 +76967,7 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -76669,8 +76984,8 @@ msgstr[1] "" #: lang/json/MONSTER_from_json.py msgid "squirrel" msgid_plural "squirrels" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "sincap" +msgstr[1] "sincaplar" #. ~ Description for squirrel #: lang/json/MONSTER_from_json.py @@ -76679,6 +76994,9 @@ msgid "" "the branches of trees. A skittish varmint with an expression of unwavering " "austerity, it is the mortal enemy of cat and dog alike." msgstr "" +"Uzun, gür bir kuyruğu olan, genellikle ağaçların dalları arasında fırlayan " +"küçük, etçil bir kemirgen. Sarsılmaz bir kemer sıkma ifadesi olan ürkek bir " +"haşere, hem kedinin hem de köpeğin ölümcül düşmanıdır. " #. ~ Description for squirrel #: lang/json/MONSTER_from_json.py @@ -76687,6 +77005,9 @@ msgid "" "clever and cute, and hunted by nearly everything in the woods with a taste " "for meat." msgstr "" +"Fırça gibi bir kuyruğa sahip fırsatçı bir kemirgen.Çam sincabı akıllı ve " +"sevimlidir,ve ormandaki neredyse herşey tarafından etinin tadı yüzünden " +"avlanır." #: lang/json/MONSTER_from_json.py msgid "weasel" @@ -76940,10 +77261,11 @@ msgstr[1] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -76954,6 +77276,17 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -79173,7 +79506,7 @@ msgid_plural "sawbones" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -79188,7 +79521,7 @@ msgid_plural "doctor burns" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -79366,7 +79699,7 @@ msgid_plural "unstable flesh-raptor" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -79485,17 +79818,18 @@ msgstr[1] "" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -79929,7 +80263,7 @@ msgid_plural "gangrenous flesh" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -79973,7 +80307,7 @@ msgid_plural "scissorlimbs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -79987,7 +80321,7 @@ msgid_plural "hanging innards" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -80468,7 +80802,7 @@ msgid_plural "Shia LaBeouf" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -82333,7 +82667,7 @@ msgid_plural "wisp" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -82877,7 +83211,7 @@ msgid_plural "coelophysis" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -82890,7 +83224,7 @@ msgid_plural "dilophosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -82903,7 +83237,7 @@ msgid_plural "ceratosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -82917,7 +83251,7 @@ msgid_plural "spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -82931,7 +83265,7 @@ msgid_plural "allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -82944,7 +83278,7 @@ msgid_plural "acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -82958,20 +83292,33 @@ msgid_plural "siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -82984,7 +83331,7 @@ msgid_plural "qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -82997,7 +83344,7 @@ msgid_plural "tyrannosaurus rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -83010,7 +83357,7 @@ msgid_plural "compsognathus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -83023,7 +83370,7 @@ msgid_plural "gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -83049,7 +83396,7 @@ msgid_plural "nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -83062,7 +83409,7 @@ msgid_plural "deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -83101,7 +83448,7 @@ msgid_plural "amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -83114,7 +83461,7 @@ msgid_plural "apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -83127,7 +83474,7 @@ msgid_plural "brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -83140,7 +83487,7 @@ msgid_plural "diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -83151,7 +83498,7 @@ msgid_plural "camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -83164,7 +83511,7 @@ msgid_plural "brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -83177,7 +83524,7 @@ msgid_plural "alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -83190,7 +83537,7 @@ msgid_plural "scutellosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -83203,7 +83550,7 @@ msgid_plural "stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -83215,7 +83562,7 @@ msgid_plural "dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83228,7 +83575,7 @@ msgid_plural "ankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -83241,7 +83588,7 @@ msgid_plural "nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -83253,7 +83600,7 @@ msgid_plural "edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -83266,7 +83613,7 @@ msgid_plural "camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -83279,7 +83626,7 @@ msgid_plural "parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -83290,7 +83637,7 @@ msgid_plural "maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -83303,7 +83650,7 @@ msgid_plural "corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -83316,7 +83663,7 @@ msgid_plural "edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -83327,7 +83674,7 @@ msgid_plural "pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -83340,7 +83687,7 @@ msgid_plural "pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -83353,7 +83700,7 @@ msgid_plural "pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -83366,7 +83713,7 @@ msgid_plural "kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -83380,7 +83727,7 @@ msgid_plural "torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -83393,7 +83740,7 @@ msgid_plural "triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -83406,7 +83753,7 @@ msgid_plural "dimorphodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -83419,7 +83766,7 @@ msgid_plural "pteranodon" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -83432,7 +83779,7 @@ msgid_plural "quetzalcoatlus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -83445,7 +83792,7 @@ msgid_plural "mosasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -83458,7 +83805,7 @@ msgid_plural "Gallimimus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -83471,7 +83818,7 @@ msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -83484,7 +83831,7 @@ msgid_plural "Triceratops bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -83497,7 +83844,7 @@ msgid_plural "Velociraptor bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -83510,7 +83857,7 @@ msgid_plural "Deinonychus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -83523,7 +83870,7 @@ msgid_plural "Dimorphodon bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -83536,7 +83883,7 @@ msgid_plural "Spinosaurus bio-operator" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -83639,6 +83986,20 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -84152,20 +84513,20 @@ msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" @@ -84225,7 +84586,6 @@ msgstr[0] "" msgstr[1] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -84246,25 +84606,88 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -84487,6 +84910,19 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -84597,7 +85033,7 @@ msgid_plural "amargasaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -85057,6 +85493,7 @@ msgstr[1] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -85106,6 +85543,12 @@ msgid_plural "scorched siats zombies" msgstr[0] "" msgstr[1] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -85510,6 +85953,19 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -85542,7 +85998,7 @@ msgid_plural "Rage Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -85555,7 +86011,7 @@ msgid_plural "Gruesome Gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -85569,7 +86025,7 @@ msgid_plural "Nefarious Nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -85627,7 +86083,7 @@ msgid_plural "Anabolic Apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -85690,7 +86146,7 @@ msgid_plural "Anabolic Alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -85934,12 +86390,25 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" msgstr[1] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -85948,66 +86417,67 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -86015,12 +86485,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -86029,12 +86499,12 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -86043,16 +86513,16 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -86082,7 +86552,7 @@ msgid_plural "skeletal spinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -86095,7 +86565,8 @@ msgid_plural "skeletal allosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86108,7 +86579,7 @@ msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -86121,20 +86592,26 @@ msgid_plural "skeletal siats" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86147,7 +86624,7 @@ msgid_plural "skeletal qianzhousaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -86173,7 +86650,7 @@ msgid_plural "skeletal gallimimus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -86185,7 +86662,7 @@ msgid_plural "skeletal nothronychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86198,8 +86675,8 @@ msgid_plural "skeletal deinonychus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -86218,7 +86695,7 @@ msgid_plural "armored amargasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -86232,7 +86709,7 @@ msgid_plural "armored apatosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -86245,7 +86722,7 @@ msgid_plural "armored brontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -86258,7 +86735,7 @@ msgid_plural "armored diplodocus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -86271,7 +86748,7 @@ msgid_plural "armored camarasaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -86284,7 +86761,7 @@ msgid_plural "armored brachiosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -86297,7 +86774,7 @@ msgid_plural "armored alamosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -86310,7 +86787,7 @@ msgid_plural "skeletal stegosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -86323,7 +86800,7 @@ msgid_plural "skeletal dyoplosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -86337,7 +86814,7 @@ msgid_plural "Bone Fortress" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -86351,7 +86828,7 @@ msgid_plural "armored nodosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86364,7 +86841,7 @@ msgid_plural "armored edmontonia" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -86377,7 +86854,7 @@ msgid_plural "armored camptosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -86390,7 +86867,7 @@ msgid_plural "armored maiasaura" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -86403,7 +86880,7 @@ msgid_plural "armored parasaurolophus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -86416,7 +86893,7 @@ msgid_plural "armored corythosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -86429,7 +86906,7 @@ msgid_plural "armored Edmontosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -86442,7 +86919,7 @@ msgid_plural "protected pachycephalosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -86455,7 +86932,7 @@ msgid_plural "protected pachyrhinosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -86468,7 +86945,7 @@ msgid_plural "protected pentaceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -86481,7 +86958,7 @@ msgid_plural "armored kosmoceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -86494,7 +86971,7 @@ msgid_plural "armored torosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -86507,7 +86984,7 @@ msgid_plural "armored triceratops" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -86520,7 +86997,7 @@ msgid_plural "Tyruckusaurus Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -86534,7 +87011,7 @@ msgid_plural "Tankylosaurus" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -86548,7 +87025,7 @@ msgid_plural "Goliath Rex" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -86561,7 +87038,7 @@ msgid_plural "Ankylosaurus hulk" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -86574,7 +87051,7 @@ msgid_plural "Dimorphodon zombie" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -86615,7 +87092,7 @@ msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -86631,7 +87108,7 @@ msgid_plural "CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -86944,7 +87421,7 @@ msgid_plural "forge hounds" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -87250,7 +87727,7 @@ msgid_plural "hunllef rams" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -87383,6 +87860,22 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -87660,7 +88153,7 @@ msgid_plural "animal cracker largemouth bass" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -87942,7 +88435,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -93014,7 +93507,7 @@ msgstr[1] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -93058,7 +93551,7 @@ msgstr "" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -93966,7 +94459,7 @@ msgid_plural "RX11 stimulant delivery system" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -94554,17 +95047,17 @@ msgid_plural "shooter's earmuffs" msgstr[0] "" msgstr[1] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -94573,7 +95066,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -94796,7 +95289,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -94810,6 +95302,14 @@ msgid_plural "military flight helmets (on)" msgstr[0] "" msgstr[1] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -95160,7 +95660,7 @@ msgid_plural "bagpipes" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -95787,7 +96287,7 @@ msgid_plural "Megingjörð" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -95862,7 +96362,7 @@ msgid_plural "escape boots" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -96604,7 +97104,7 @@ msgid_plural "autonomous surgical scalpels" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -98389,7 +98889,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -98397,7 +98897,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -98482,7 +98982,7 @@ msgid_plural "dao" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -98532,7 +99032,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -98540,7 +99040,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -98572,7 +99072,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -98661,14 +99161,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -98682,7 +99182,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -98842,7 +99342,7 @@ msgid_plural "synthetic fabric" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -99583,7 +100083,7 @@ msgid_plural "electronic handcuffs" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -101900,8 +102400,8 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -102582,6 +103082,39 @@ msgstr[1] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -103282,7 +103815,7 @@ msgid_plural "shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -103293,7 +103826,7 @@ msgid_plural "electric shears" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -103337,6 +103870,32 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -103882,7 +104441,7 @@ msgid_plural "qualitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -103896,7 +104455,7 @@ msgid_plural "quantitative filter paper" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -104373,8 +104932,8 @@ msgid_plural "Mi-go Biotech" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -104382,8 +104941,8 @@ msgid_plural "%s (happy)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -104391,8 +104950,8 @@ msgid_plural "%s (focus)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -104400,8 +104959,8 @@ msgid_plural "%s (pain relief)" msgstr[0] "" msgstr[1] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -104409,7 +104968,7 @@ msgid_plural "%s (wake up)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -104850,7 +105409,7 @@ msgid_plural "patchwork cotton clothing parts" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -105081,13 +105640,13 @@ msgid_plural "loose caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -105100,13 +105659,13 @@ msgid_plural "loose glass caltrops" msgstr[0] "" msgstr[1] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -105570,6 +106129,21 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -105850,13 +106424,28 @@ msgid_plural "pliers" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -105910,6 +106499,33 @@ msgid "" "to have the right tools for more precise work." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -106035,18 +106651,46 @@ msgid "" msgstr "" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" msgstr[0] "" msgstr[1] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -106343,36 +106987,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -106403,6 +107017,12 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -106625,8 +107245,8 @@ msgstr[1] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -107067,7 +107687,7 @@ msgid_plural "377-UASTA (weaponized)" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -107489,7 +108109,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -107536,7 +108156,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -107554,7 +108174,7 @@ msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" msgstr[1] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -108559,6 +109179,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -108610,6 +109239,30 @@ msgstr[1] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -109514,7 +110167,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -109991,6 +110644,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -110861,15 +111518,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" +msgid "Intradermal Alloy - Arms" msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -110885,37 +111541,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" +msgid "Intradermal Alloy - Legs" msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -110926,8 +111581,8 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -113314,7 +113969,7 @@ msgstr "" #: lang/json/construction_group_from_json.py msgid "Build Pine Lean-To" -msgstr "" +msgstr "Çama yaslı sığınak inşa et." #: lang/json/construction_group_from_json.py msgid "Build Planter" @@ -114787,6 +115442,8 @@ msgid "" "You dream of communing with an ancient pine. Trees are the true survivors " "of this world, it tells you." msgstr "" +"Rüyanda antik bir çamla iletişim kuruyordun.O sana ağaçların bu dünyadaki " +"gerçek hayatta kalanları olduğunu anlatıyor." #: lang/json/dream_from_json.py msgid "" @@ -116442,7 +117099,7 @@ msgstr "" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -121188,8 +121845,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "" @@ -121205,9 +121861,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "" @@ -121421,12 +122076,12 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "pine wreath" -msgstr "" +msgstr "çam çelengi" #. ~ Description for pine wreath #: lang/json/furniture_from_json.py msgid "A decorative wreath for the winter holidays." -msgstr "" +msgstr "Kış tatilleri için dekoratif bir çelenk." #: lang/json/furniture_from_json.py msgid "sand castle" @@ -121441,7 +122096,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "decorative tree" -msgstr "" +msgstr "dekoratif ağaç" #. ~ Description for decorative tree #: lang/json/furniture_from_json.py @@ -121451,7 +122106,7 @@ msgstr "" #: lang/json/furniture_from_json.py msgid "indoor plant" -msgstr "" +msgstr "Kış tatilleri için süslerle çevrilmiş dekoratif bir çam ağacı." #. ~ Description for indoor plant #: lang/json/furniture_from_json.py @@ -121883,7 +122538,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "" @@ -124158,7 +124813,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "" @@ -124280,6 +124936,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -126798,14 +127468,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -126944,16 +127614,16 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -127924,14 +128594,14 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -130192,6 +130862,19 @@ msgid_plural "acid dart guns" msgstr[0] "" msgstr[1] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -132707,8 +133390,9 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -132720,10 +133404,10 @@ msgstr[1] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -133225,17 +133909,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -135563,6 +136251,11 @@ msgid "" "the punishment of combat." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -136402,6 +137095,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "" @@ -136570,6 +137270,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -137682,6 +138386,10 @@ msgstr "" msgid "Move cursor down" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -137882,6 +138590,20 @@ msgstr "" msgid "No" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -139268,13 +139990,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -139336,13 +140058,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -139951,13 +140673,13 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -142461,7 +143183,7 @@ msgstr "" #. ~ Sign #: lang/json/mapgen_from_json.py msgid "PINE" -msgstr "Çam" +msgstr "ÇAM" #. ~ Sign #: lang/json/mapgen_from_json.py @@ -143392,6 +144114,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -143814,8 +144546,8 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -143839,7 +144571,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -143853,7 +144586,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -143866,9 +144599,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "" @@ -144028,7 +144790,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -144043,7 +144805,8 @@ msgstr "" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -144073,17 +144836,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -144094,10 +144856,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144108,9 +144884,10 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -144125,33 +144902,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" +"\n" +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -144242,6 +145040,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "" @@ -144299,7 +145111,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -144313,8 +145125,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -144328,6 +145141,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -144379,6 +145193,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "" @@ -144464,6 +145291,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "" @@ -144610,6 +145452,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "" @@ -144946,16 +145803,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -145058,7 +145916,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -145165,33 +146023,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -145312,7 +146170,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -145510,6 +146368,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -145570,10 +146443,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -145674,10 +146548,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -146321,7 +147196,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -146331,11 +147221,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146429,6 +147320,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -146441,21 +147346,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -146533,6 +147439,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -148165,7 +149085,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -148360,7 +149280,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -148565,7 +149485,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -148619,8 +149539,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -148780,7 +149699,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -148794,7 +149713,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -148833,7 +149752,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -148868,7 +149787,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -148899,7 +149818,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -148941,7 +149860,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -148983,16 +149902,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -149039,7 +149992,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -149089,7 +150042,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -149131,7 +150084,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -149180,7 +150133,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -149207,7 +150160,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -149242,7 +150195,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -150108,7 +151061,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -150143,7 +151096,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -150180,7 +151133,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -150215,7 +151168,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -150243,7 +151196,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -150295,7 +151248,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -150326,7 +151279,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -150355,7 +151308,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -150385,7 +151338,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -150654,8 +151607,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -151056,7 +152008,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -151097,7 +152049,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -151124,7 +152076,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -151206,7 +152158,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -151243,7 +152195,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -151287,7 +152239,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -151336,7 +152288,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -151378,7 +152330,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -151419,7 +152371,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -151454,7 +152406,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -151499,7 +152451,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -151510,6 +152462,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -151656,7 +152666,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -151711,7 +152721,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -151750,7 +152760,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -151787,11 +152797,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -151817,15 +152879,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -151882,7 +152940,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -151932,7 +152990,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -151977,7 +153035,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -152018,11 +153076,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -152065,7 +153124,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -152113,7 +153172,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -152157,7 +153216,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -153823,7 +154882,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -153842,7 +154901,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -153869,7 +154928,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -153903,7 +154962,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -153950,7 +155009,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -154726,6 +155785,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -155418,13 +156501,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -156154,6 +157237,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -157062,7 +158167,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -157073,6 +158177,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -157204,7 +158315,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -157448,8 +158559,8 @@ msgstr "" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" #: lang/json/mutation_from_json.py @@ -160426,8 +161537,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -160667,7 +161778,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160676,7 +161787,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160685,7 +161796,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160694,7 +161805,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -160712,7 +161823,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160721,7 +161832,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160730,7 +161841,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160739,7 +161850,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -160757,7 +161868,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160766,7 +161877,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160776,7 +161887,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160786,7 +161897,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -160816,7 +161927,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160825,7 +161936,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160834,7 +161945,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -160843,7 +161954,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -161341,7 +162452,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -161460,7 +162571,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -165969,6 +167080,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -166004,6 +167116,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -166562,6 +167682,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -166697,6 +167825,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -166865,6 +167997,10 @@ msgstr "" msgid "Guard" msgstr "" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "" @@ -167033,6 +168169,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -167968,6 +169108,10 @@ msgstr "" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -168657,6 +169801,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -168665,24 +169813,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -169049,6 +170213,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -170505,6 +171673,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -170615,6 +171837,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -170651,7 +171901,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -170664,7 +171914,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -171257,6 +172507,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -171513,6 +172789,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -171639,6 +172969,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -171687,6 +173045,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -171709,6 +173095,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -176263,6 +177701,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -180615,6 +182111,28 @@ msgid "" "ambushes." msgstr "" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "" @@ -185570,6 +187088,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -185614,6 +187654,63 @@ msgstr "" msgid "Farm processing shack" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "" @@ -185669,6 +187766,524 @@ msgstr "" msgid "Garage mechanics quarters" msgstr "" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "" @@ -185873,6 +188488,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -186567,6 +189558,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -186832,60 +190462,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -187313,7 +191252,7 @@ msgstr "" #: lang/json/recipe_group_from_json.py msgid " Brew: Pine Wine Must" -msgstr "" +msgstr "Demle:Çam Şarabı Şırası" #: lang/json/recipe_group_from_json.py msgid " Brew: Beer" @@ -187720,7 +191659,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187732,12 +191675,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187745,11 +191698,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -187912,6 +191875,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -190049,6 +194068,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -190361,7 +194406,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -191099,8 +195144,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -191873,15 +195918,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -196928,6 +200974,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -196936,7 +201248,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -197053,7 +201365,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -201638,7 +205950,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -201697,7 +206009,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -201710,7 +206022,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -201728,17 +206040,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -201817,7 +206129,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -201927,8 +206239,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -202336,7 +206648,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -202346,8 +206658,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -203769,6 +208081,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -205637,7 +210011,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "It's a half-drunk 200-liter tank of pine needle tea." -msgstr "" +msgstr "Yarısı içilmiş 200 litrelik bir çam iğnesi çayı varili." #: lang/json/snippet_from_json.py msgid "Here is a cargo space containing a six-month supply of pemmican." @@ -206065,7 +210439,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "" @@ -206726,6 +211100,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -206744,6 +211230,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -207911,6 +212412,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -207927,6 +212506,10 @@ msgid "" "\n" "To continue the tutorial, please move to the door to the east." msgstr "" +"Ekranın ortasındaki karakter seni temsil ediyor. Hareket etmek için numpad'i,vi tuşlarını (hjklyubn), ya da ok tuşlarını kullanabilirsin. Ayrıca sol fare tuşuna basarak gitmek istediğin yeri seçip,tekrar tıklayarak hareketi onaylayabilirsin.\n" +"Karakterinin yerinde beklemesini istiyorsan '.' (nokta) ya da 5 tuşuna bas.\n" +"\n" +"Öğreticiye devam etmek için,lütfen doğudaki kapıya doğru hareket edin." #: lang/json/snippet_from_json.py msgid "" @@ -207940,6 +212523,15 @@ msgid "" "\n" "To continue the tutorial, please move to the end of the corridor." msgstr "" +"Çoğu zaman karakterin yürüme modunda hareket edecektir. Fakat bazen hareket modunu değiştirmek kullanışlı olabilir. Dört tane hareket modu vardır:\n" +"Yürümek,varsayılan moddur,ortalama hareket hızı,stamina tüketme hızı ve gürültü.\n" +"Koşmak,karakterini daha hızlı hareket ettirir fakat stamnasını daha çabuk tüketir.\n" +"Eğilmek,nesnelerin arkasına saklanmayı mümkün kılarak karakterini daha az görünür hale getirir,ayrıca hareket hızını ve gürültüyü düşürür.\n" +"Yüzükoyun yatmak,daha da az görünürlük,daha da az hareket hzı ve gürültü sağlar.\n" +"\n" +"Hareket modları arasında geçiş yapmak için \" (tırnak işareti) tuşuna basabilirsin.\n" +"\n" +"Öğreticiye devam etmek için,lütfen koridorun sonuna doğru yürüyün." #: lang/json/snippet_from_json.py msgid "" @@ -207950,6 +212542,11 @@ msgid "" "'x' to open the Look Around " "window." msgstr "" +"Fareni kullanarak etrafındaki şeyleri görebilirsin. Fare " +"görüşü penceresi yanda gözükecektir,ve etrafındaki dünyadaki " +"arazi,canavarlar ve eşyalar hakkında bilgi verir.Ayrıca,';' " +"(noktalı virgül) ya da x tuşlarına basarak " +"Etrafa Bakma penceresini açabilirsin." #: lang/json/snippet_from_json.py msgid "" @@ -207958,6 +212555,10 @@ msgid "" "you can open not only doors, but also windows, gates, fences, safes and so " "on." msgstr "" +"Kapalı bir kapını yakınında duruyorsun. Açmak için ya basitçe üstüne doğru " +"yürüyün ya da 'o' tuşuna basın ve gerekirse yönünü " +"seçmek için bir hareket tuşuna basın.Bu yolla sadece kapıları değil,ayrıca " +"pencereleri,geçitleri,çitleri,kasaları ve daha nicelerini de açabilirsin." #: lang/json/snippet_from_json.py msgid "" @@ -207965,6 +212566,9 @@ msgid "" "a movement key. Closing doors behind you can often slow down throngs of " "monsters greatly." msgstr "" +"Açık bir kapıyı 'c' tuşuna basarak ve gerekirse bir de" +" hareket tuşuna basarak kapatabilirsin.Arkandan kapıları kapatmak çoğu " +"canavarı oldukça yavaşlatır." #: lang/json/snippet_from_json.py msgid "" @@ -207972,6 +212576,9 @@ msgid "" " is locked or stuck, you can smash it by pressing 's' " "and then a movement key." msgstr "" +"Çoğu canavar kapalı bir kapıdan geçmek için onu parçalar,eğer bir kapı " +"kilitliyse yada takılmışsa 's' tuşuna,sonra da bir " +"hareket tuşuna basarak parçalayabilirsin" #: lang/json/snippet_from_json.py msgid "" @@ -207980,6 +212587,10 @@ msgid "" "it's possible to hurt yourself on the broken glass, but it's a good last-" "ditch escape route. You can smash through other things, too." msgstr "" +"Pencereden geçmek için 's' tuşuna basıp sonra da bir " +"hareket tuşuna basarak pencereyi kırabilirsin. Kırık camlar,tırmanması " +"güçtür ve keskin camlarıyla sana zarar verebilir,ama acil durumlarda " +"kullanılabilir. Başka şeyleri de parçalayabilirsin." #: lang/json/snippet_from_json.py msgid "" @@ -207988,6 +212599,10 @@ msgid "" "\n" "To continue the tutorial, please pick up the baseball bat you're standing on and move to the door to the south." msgstr "" +"Bir veya birden fazla eşyanın olduğu bir yere bastın. Eğer onları almak istiyorsan,',' (virgül) ya da 'g' tuşuna basabilirsin.Hemen dibindeki eşyaları almak için '.' (nokta) ya da '5' tuşuna basabilirsin.Toplama menüsü'nde almak istediğin eşyaları seçmek için 'l' yada sağ ok tuşuna basabilir, 'h' ya da sol ok tuşuna basarak ise seçimi kaldırabilirsin;ve sonra Enter tuluna basarak seçimini onaylayabilirsin.\n" +"Eşyaları almak için tamamen dibinde olmana gerek olmadığını unutma,biraz yakınında olsan bile onları yerden alabilirsin.\n" +"\n" +"Öğreticiye devam etmek için, lütfen beyzbol sopasını yerden alın ve güneye doğru yürüyün." #: lang/json/snippet_from_json.py msgid "" @@ -210239,6 +214854,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -210348,6 +214970,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -210371,6 +215011,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -211881,7 +216528,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -212051,19 +216698,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -212136,95 +216783,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" +msgid "\"Wanna play with me?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" +msgid "\"Sing with me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" +msgid "\"Please take me with you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" +msgid "\"May I have a cookie?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -212232,31 +216883,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" +msgid "\"Hey kids. Want some candy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -212272,19 +216923,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -213351,6 +217998,10 @@ msgstr "" msgid "Gun Store" msgstr "" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "" @@ -214784,6 +219435,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -222004,6 +226659,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -222650,6 +228083,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -222719,6 +228156,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -225049,6 +230497,9 @@ msgid "" "managed to stay fifty pounds overweight on a diet of pine nuts and wilted " "rhubarb, and I scream and shake uncontrollably at the sight of blood." msgstr "" +"Korkunç görünüyorsun ama bana bak. Yolculuk insanı değilim,çam fıstığı ve " +"solmuş raventten oluşan bir diyet ile fazladan 22 kilo alabildim,ve ne zaman" +" kan görsem çığlık atar ve kontrolsüzce titrerim." #: lang/json/talk_topic_from_json.py msgid "" @@ -225151,10 +230602,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -228947,10 +234394,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -229279,6 +234722,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -229570,6 +235122,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -229660,6 +235221,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -232431,6 +238044,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -232616,20 +238246,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -233237,20 +238853,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "" @@ -233286,54 +238888,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -233417,20 +239009,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -233549,34 +239127,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -233592,45 +239142,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -233714,17 +239264,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -233766,7 +239316,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -233779,6 +239329,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -233925,20 +239479,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -234043,20 +239583,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -234157,20 +239683,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -234495,41 +240007,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -234730,20 +240238,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -235504,20 +240998,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -235616,20 +241096,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -235672,20 +241138,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -237926,6 +243378,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "" @@ -238140,7 +243604,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "pine tree" -msgstr "" +msgstr "çam ağacı" #. ~ Description for pine tree #: lang/json/terrain_from_json.py @@ -238151,6 +243615,10 @@ msgid "" "and unharvested pinecones. Also, you could cut it down with the right " "tools." msgstr "" +"Pinus cinsine ait iğne yapraklı bir ağaç,New England'da bulunan çeşitli " +"türleri 'P. strobus','P. resinosa' ve 'P.rigida' dır.Eğer daha dikkatli " +"incelersen bazı kullanışlı kıvrımlı yapraklar vetoplanmamış kozalaklar " +"bulabilirsin.Ayrıca doğru alete sahipsen kesebilirsin de." #. ~ Description for pine tree #: lang/json/terrain_from_json.py @@ -238161,10 +243629,14 @@ msgid "" "aren't developed fully yet, but given a season, it could be harvestable " "again. Also, you could cut it down with the right tools." msgstr "" +"Pinus cinsine ait iğne yapraklı bir ağaç,New England'da bulunan çeşitli " +"türleri 'P. strobus','P. resinosa' ve 'P.rigida' dır.Bazı dalları alınmış ve" +" kozalakları henüz tam gelişememiş,fakat bir mevsim sonratekrar hasat " +"edilebilir. Ayrıca doğru alete sahipsen kesebilirsin de." #: lang/json/terrain_from_json.py msgid "dead pine tree" -msgstr "" +msgstr "ölü çam ağacı" #. ~ Description for dead pine tree #: lang/json/terrain_from_json.py @@ -238174,6 +243646,9 @@ msgid "" "This trees branches are bare, and it appears to be dead. You could cut it " "down with the right tools." msgstr "" +"Pinus cinsine ait iğne yapraklı bir ağaç,New England'da bulunan çeşitli " +"türleri 'P. strobus','P. resinosa' ve 'P.rigida' dır.Bu ağaç dalları yalın " +"ve ağaç görünüşe göre ölü.Doğru alete sahipsen kesebilirsin." #: lang/json/terrain_from_json.py msgid "birch tree" @@ -239408,7 +244883,7 @@ msgstr "" #: lang/json/terrain_from_json.py msgid "pine lean-to" -msgstr "" +msgstr "çama yaslı sığınak" #. ~ Description for pine lean-to #: lang/json/terrain_from_json.py @@ -239416,6 +244891,8 @@ msgid "" "A small shelter roofed with pine leaves, that can be used to take refuge " "from the elements or to protect a campfire from the rain." msgstr "" +"Çam yapraklarıyla örtülü küçük bir sığınak,dış unsurlardan sığınmak ya da " +"bir kamp ateşini yağmurdan korumak için kullanılabilir." #: lang/json/terrain_from_json.py msgid "tarp lean-to" @@ -241315,24 +246792,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -241340,32 +246817,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -241373,35 +246850,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -241409,33 +246881,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -241443,10 +246915,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -241454,10 +246926,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -241465,40 +246937,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -241506,21 +246976,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -241528,44 +246994,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" +msgid "quadruple glazed glass window" msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -241573,14 +247030,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" +msgid "reinforced quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -241598,12 +247051,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -241611,21 +247059,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -241633,10 +247077,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -241644,7 +247088,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -241653,10 +247097,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -241665,21 +247109,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -241687,10 +247127,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -241699,10 +247139,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -241710,7 +247150,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -241719,26 +247159,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -241752,11 +247192,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -244259,18 +249695,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "" @@ -244633,6 +250176,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -245110,6 +250704,15 @@ msgstr "" msgid "wooden aisle" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -245243,6 +250846,10 @@ msgstr "" msgid "wood table" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -245311,6 +250918,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -245417,6 +251028,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -246600,8 +252217,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -249314,6 +254931,18 @@ msgstr "" msgid "Coverage:" msgstr "" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "" @@ -249405,8 +255034,9 @@ msgstr "" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -249418,6 +255048,12 @@ msgstr "" msgid "Storage (%s)" msgstr "" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "" @@ -253603,11 +259239,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "" @@ -253918,6 +259549,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -256084,10 +261723,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -256628,6 +262263,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -257054,6 +262697,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -257142,6 +262790,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -257895,7 +263548,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -257917,15 +263570,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -261257,6 +266901,10 @@ msgstr "" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -261541,6 +267189,15 @@ msgstr "" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "" @@ -263850,10 +269507,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "" @@ -263994,6 +269647,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -264353,10 +270014,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -264883,13 +270540,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -268197,6 +273847,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "" @@ -271200,13 +276865,15 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" +msgid "Set the timer to how many seconds (0 to cancel)?" msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" #: src/iuse.cpp msgid "Tick!" @@ -271943,8 +277610,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -272166,38 +277832,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -273422,87 +279056,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "" - -#: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -276320,7 +281897,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -281242,6 +286831,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -282111,21 +287705,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -282389,11 +287968,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -284063,11 +289651,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -284832,6 +290415,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -284839,14 +290431,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -287162,20 +292759,6 @@ msgstr "" msgid "# Unexplored" msgstr "" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -287516,6 +293099,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -287564,6 +293152,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -289955,6 +295547,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -294267,6 +299869,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "" @@ -294466,21 +300072,21 @@ msgstr "" #: src/wish.cpp msgid "Becomes:" -msgstr "" +msgstr "Olur:" #: src/wish.cpp msgid "Add-ons:" -msgstr "" +msgstr "Eklentiler:" #: src/wish.cpp msgid "Category:" -msgstr "" +msgstr "Kategory:" #. ~ pts: points, vis: visibility, ugly: ugliness #: src/wish.cpp #, c-format msgid "pts: %d vis: %d ugly: %d" -msgstr "" +msgstr "puan: %d görünürlük: %d çirkinlik: %d" #: src/wish.cpp #, c-format @@ -294508,40 +300114,40 @@ msgstr "%s Mutasyon şansı: %d" #: src/wish.cpp #, c-format msgid "Debug Effects Menu: %s" -msgstr "" +msgstr "Hata ayıklama etkileri menüsü: %s" #: src/wish.cpp msgid "Show only active" -msgstr "" +msgstr "Sadece aktif olanları göster" #: src/wish.cpp msgid "Change body part" -msgstr "" +msgstr "Uzuv değiştir" #: src/wish.cpp msgid "Choose bodypart" -msgstr "" +msgstr "Uzuv seç" #: src/wish.cpp #, c-format msgid "Set duration (current %1$d): " -msgstr "" +msgstr "Süreyi ayarla (şimdiki %1$d): " #: src/wish.cpp msgid "Permanent?" -msgstr "" +msgstr "Kalıcı mı olsun?" #: src/wish.cpp msgid "INVALID ON THIS LIMB" -msgstr "" +msgstr "BU UZUVDA GEÇERSİZ" #: src/wish.cpp msgid "This effect can not be applied on this limb" -msgstr "" +msgstr "Bu etki bu uzva uygulanamaz" #: src/wish.cpp msgid " PERMANENT" -msgstr "" +msgstr " KALICI" #: src/wish.cpp msgid " (hallucination)" diff --git a/lang/po/uk_UA.po b/lang/po/uk_UA.po index 82fec5fe99523..e3241a1989962 100644 --- a/lang/po/uk_UA.po +++ b/lang/po/uk_UA.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: Victor_U , 2021\n" "Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/cataclysm-dda-translators/teams/2217/uk_UA/)\n" @@ -33,7 +33,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -50,7 +50,7 @@ msgstr[1] "бутану" msgstr[2] "бутану" msgstr[3] "бутан" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "Звичайна горюча рідина, яка використовується у запальничках." @@ -63,7 +63,7 @@ msgstr[1] "аерозольних фарб" msgstr[2] "аерозольних фарб" msgstr[3] "аерозольна фарба" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -80,7 +80,7 @@ msgstr[1] "стійких чорнил" msgstr[2] "стійких чорнил" msgstr[3] "стійке чорнило" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -97,7 +97,7 @@ msgstr[1] "свічкового віск" msgstr[2] "свічкового віск" msgstr[3] "свічковий віск" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "" @@ -111,7 +111,7 @@ msgstr[1] "факелів піротехнічних" msgstr[2] "факелів піротехнічних" msgstr[3] "факельна піротехніка" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "Піротехнічна хімічна речовина, що використовується у факелах." @@ -140,7 +140,7 @@ msgstr[1] "кисню" msgstr[2] "кисню" msgstr[3] "кисень" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "Стиснений медичний кисень." @@ -153,7 +153,7 @@ msgstr[1] "алюмінієвої фольги" msgstr[2] "алюмінієвої фольги" msgstr[3] "алюмінієва фольга" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -183,7 +183,7 @@ msgstr[1] "нитки" msgstr[2] "нитки" msgstr[3] "нитки" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "" @@ -224,7 +224,7 @@ msgstr[1] "вовняної пряжі" msgstr[2] "вовняної пряжі" msgstr[3] "вовняна пряжа" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "" @@ -252,7 +252,7 @@ msgstr[1] "клейкої стрічки" msgstr[2] "клейкої стрічки" msgstr[3] "клейка стрічка" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "Моток армованої клейкої стрічки. Має безліч використань." @@ -330,8 +330,8 @@ msgstr[1] "плутонієвого шламу" msgstr[2] "плутонієвого шламу" msgstr[3] "плутонієвий шлам" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -414,7 +414,7 @@ msgstr[1] "металеві кульки" msgstr[2] "металевих кульок" msgstr[3] "металева кулька" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "Коробка кульок від підшипника, згодяться як набої для рогачки." @@ -472,7 +472,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -504,7 +504,7 @@ msgstr[1] "змішаного бездимного пороху" msgstr[2] "змішаного бездимного пороху" msgstr[3] "змішаний бездимний порох" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -523,7 +523,7 @@ msgstr[1] "бездимного пороху для рушниці" msgstr[2] "бездимного пороху для рушниці" msgstr[3] "бездимний порох для рушниці" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "Вогнепальний порох для використання в гільзах." @@ -536,7 +536,7 @@ msgstr[1] "бездимного пороху для пістолета" msgstr[2] "бездимного пороху для пістолета" msgstr[3] "бездимний порох для пістолета" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "Вогнепальний порох, призначений для пістольних набоїв." @@ -549,7 +549,7 @@ msgstr[1] "бездимного пороху для магнума " msgstr[2] "бездимного пороху для магнума " msgstr[3] "бездимний порох для магнума " -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -563,7 +563,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "Вогнепальний порох призначений для набоїв рушниці." @@ -576,7 +576,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "Вогнепальний порох для набоїв великого калібру" @@ -589,7 +589,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -606,7 +606,7 @@ msgstr[1] "порошку-окислювача" msgstr[2] "порошку-окислювача" msgstr[3] "порошок-окислювач" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "Леткий порошковий хімічний окислювач" @@ -619,7 +619,7 @@ msgstr[1] "лужного порошку" msgstr[2] "лужного порошку" msgstr[3] "лужний порошок" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "Порошкова каустична сода (вона ж їдкий натрій)." @@ -727,7 +727,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -744,7 +744,7 @@ msgstr[1] "медичної клейкої стрічки" msgstr[2] "медичної клейкої стрічки" msgstr[3] "медична клейка стрічка" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "" @@ -759,7 +759,7 @@ msgstr[2] "заглушка замість набоїв" msgstr[3] "заглушка замість набоїв" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "ЯКЩО ВИ ЦЕ БАЧИТЕ, ТО ЦЕ ПРОГРАМНА ПОМИЛКА." @@ -772,7 +772,7 @@ msgstr[1] "деревного вугілля" msgstr[2] "деревного вугілля" msgstr[3] "деревне вугілля" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -792,7 +792,7 @@ msgstr[1] "премікс карбіду кальцію" msgstr[2] "премікс карбіду кальцію" msgstr[3] "премікс карбіду кальцію" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -826,7 +826,7 @@ msgstr[1] "альбутеролу" msgstr[2] "альбутеролу" msgstr[3] "альбутерол" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -936,7 +936,7 @@ msgstr[1] "нікотинової рідини" msgstr[2] "нікотинової рідини" msgstr[3] "нікотинова рідина" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -953,7 +953,7 @@ msgstr[1] "рибальської наживки" msgstr[2] "рибальської наживки" msgstr[3] "рибальська наживка" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "Наживка, для використання у ловушках для приманювання риби." @@ -1023,7 +1023,7 @@ msgstr[1] "недовипаленого деревного вугілля" msgstr[2] "недовипаленого деревного вугілля" msgstr[3] "недовипалене деревне вугілля" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -1040,7 +1040,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -1070,7 +1070,7 @@ msgstr[1] "нітроксу" msgstr[2] "нітроксу" msgstr[3] "нітрокс" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "Суміш кисню та азоту у певній пропорції, для дайвінгу. " @@ -1083,7 +1083,7 @@ msgstr[1] "вогнегасного реагента" msgstr[2] "вогнегасного реагента" msgstr[3] "вогнегасний реагент" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "Сухий хімічний розчин, ефективний при гасінні пожеж." @@ -1096,7 +1096,7 @@ msgstr[1] "трута" msgstr[2] "трута" msgstr[3] "трут" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "Легкозаймистий матеріал дрібно розділений для легкого розпалювання." @@ -1135,7 +1135,7 @@ msgstr[1] "бронзи" msgstr[2] "бронзи" msgstr[3] "бронза" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "Нічогенький шмат бронзи для виготовлення старомодних предметів." @@ -1148,7 +1148,7 @@ msgstr[1] "рідини для палички-ліхтарика" msgstr[2] "рідини для палички-ліхтарика" msgstr[3] "рідина для палички-ліхтарика" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -1162,7 +1162,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -1178,7 +1178,7 @@ msgstr[1] "чорного чорнила" msgstr[2] "чорного чорнила" msgstr[3] "чорне чорнило" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -1193,7 +1193,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -1208,7 +1208,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -1223,7 +1223,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1257,7 +1257,7 @@ msgstr[1] "сірка" msgstr[2] "сірка" msgstr[3] "сірка" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1292,7 +1292,7 @@ msgstr[1] "цементу" msgstr[2] "цементу" msgstr[3] "цемент" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1311,7 +1311,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -1324,7 +1324,7 @@ msgstr[1] "вапняку" msgstr[2] "вапняку" msgstr[3] "вапняк" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1342,7 +1342,7 @@ msgstr[1] "негашеного вапна" msgstr[2] "негашеного вапна" msgstr[3] "негашене вапно" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1363,7 +1363,7 @@ msgstr[1] "піску" msgstr[2] "піску" msgstr[3] "пісок" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1381,7 +1381,7 @@ msgstr[1] "ґрунту" msgstr[2] "ґрунту" msgstr[3] "ґрунт" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1398,7 +1398,7 @@ msgstr[1] "алюмінієвого порошку" msgstr[2] "алюмінієвого порошку" msgstr[3] "алюмінієвий порошок" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1420,7 +1420,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1441,7 +1441,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1458,7 +1458,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1477,7 +1477,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1498,7 +1498,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1517,7 +1517,7 @@ msgstr[1] "ацетону" msgstr[2] "ацетону" msgstr[3] "ацетон" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1536,7 +1536,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1559,7 +1559,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1582,7 +1582,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1605,7 +1605,7 @@ msgstr[1] "перекису водню (концентрованого)" msgstr[2] "перекису водню (концентрованого)" msgstr[3] "перекис водню (концентрований)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1626,7 +1626,7 @@ msgstr[1] "Нітрату амонію" msgstr[2] "Нітрату амонію" msgstr[3] "Нітрат амонію" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1647,7 +1647,7 @@ msgstr[1] "гранул нітрату амонію" msgstr[2] "гранул нітрату амонію" msgstr[3] "гранули нітрату амонію" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1664,7 +1664,7 @@ msgstr[1] "селітри" msgstr[2] "селітри" msgstr[3] "селітра" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1683,7 +1683,7 @@ msgstr[1] "кам'яної калійної селітри" msgstr[2] "кам'яної калійної селітри" msgstr[3] "кам'яна калійна селітра" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1700,7 +1700,7 @@ msgstr[1] "сульфату алюмінію" msgstr[2] "сульфату алюмінію" msgstr[3] "сульфат алюмінію" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1726,7 +1726,7 @@ msgstr[1] "оцтової кислоти" msgstr[2] "оцтової кислоти" msgstr[3] "оцтова кислота" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1747,7 +1747,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1768,7 +1768,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1789,7 +1789,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1806,7 +1806,7 @@ msgstr[1] "чорний зброярський порох" msgstr[2] "чорний зброярський порох" msgstr[3] "чорний зброярський порох" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1823,7 +1823,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1839,7 +1839,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1855,7 +1855,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1871,7 +1871,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1891,7 +1891,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1907,7 +1907,7 @@ msgstr[1] "імпровізованого ракетного палива" msgstr[2] "імпровізованого ракетного палива" msgstr[3] "імпровізоване ракетне паливо" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1924,7 +1924,7 @@ msgstr[1] "прального порошку" msgstr[2] "прального порошку" msgstr[3] "пральний порошок" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "Популярний пральний порошок перед-катаклізмової доби." @@ -1937,7 +1937,7 @@ msgstr[1] "мильних пластівців" msgstr[2] "мильних пластівців" msgstr[3] "мильні пластівці" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "" @@ -2013,7 +2013,7 @@ msgstr[1] "концентрованої отрути" msgstr[2] "концентрованої отрути" msgstr[3] "концентрована отрута" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -2030,7 +2030,7 @@ msgstr[1] "концентрованого паралітика" msgstr[2] "концентрованого паралітика" msgstr[3] "концентрований паралітик" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -2047,7 +2047,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -2063,7 +2063,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -2078,7 +2078,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -2093,7 +2093,7 @@ msgstr[1] "етанолу" msgstr[2] "етанолу" msgstr[3] "етанол" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -2125,7 +2125,7 @@ msgstr[1] "метанолу" msgstr[2] "метанолу" msgstr[3] "метанол" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -2141,7 +2141,7 @@ msgstr[1] "дизель" msgstr[2] "дизель" msgstr[3] "дизель" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -2157,7 +2157,7 @@ msgstr[1] "пального JP8" msgstr[2] "пального JP8" msgstr[3] "пальне JP8" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -2172,7 +2172,7 @@ msgstr[1] "авіаційного пального" msgstr[2] "авіаційного пального" msgstr[3] "авіаційне пальне" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "" @@ -2185,7 +2185,7 @@ msgstr[1] "біодизель" msgstr[2] "біодизель" msgstr[3] "біодизель" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -2204,7 +2204,7 @@ msgstr[1] "бензин" msgstr[2] "бензин" msgstr[3] "бензин" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -2221,7 +2221,7 @@ msgstr[1] "лампової олія" msgstr[2] "лампова олія" msgstr[3] "лампова олія" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "" @@ -2234,7 +2234,7 @@ msgstr[1] "моторного масла" msgstr[2] "моторного масла" msgstr[3] "моторне масло" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "" @@ -2247,7 +2247,7 @@ msgstr[1] "напалму" msgstr[2] "напалму" msgstr[3] "напалм" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -2266,7 +2266,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -2282,7 +2282,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -2327,7 +2327,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "" @@ -2393,7 +2393,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -2425,7 +2425,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -2471,7 +2471,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -2501,7 +2501,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -2549,7 +2549,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -2565,7 +2565,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2581,7 +2581,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2613,7 +2613,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2629,7 +2629,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2645,7 +2645,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2661,7 +2661,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2709,7 +2709,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2728,7 +2728,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2746,7 +2746,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2765,7 +2765,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2785,7 +2785,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2805,7 +2805,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2868,7 +2868,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2926,7 +2926,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2942,7 +2942,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2958,7 +2958,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2974,7 +2974,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -3098,7 +3098,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -3114,7 +3114,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -3130,7 +3130,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -3193,7 +3193,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -3224,7 +3224,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -3240,7 +3240,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -3288,7 +3288,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -3303,7 +3303,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -3366,7 +3366,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -3396,7 +3396,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -3451,7 +3451,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -3468,7 +3468,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -3485,7 +3485,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -3542,7 +3542,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -3566,7 +3566,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -3582,7 +3582,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -3638,7 +3638,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -3654,7 +3654,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -3670,7 +3670,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -3686,7 +3686,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -3702,8 +3702,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3719,8 +3719,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -3769,8 +3769,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3786,8 +3786,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3859,7 +3859,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3874,7 +3874,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3910,7 +3910,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3926,8 +3926,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "" @@ -3954,8 +3954,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3994,7 +3994,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "" @@ -4015,7 +4015,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -4093,7 +4093,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -4108,7 +4108,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -4124,7 +4124,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -4180,7 +4180,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -4214,7 +4214,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4246,7 +4246,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4262,7 +4262,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -4295,7 +4295,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4312,7 +4312,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -4329,7 +4329,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -4362,7 +4362,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -4378,8 +4378,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -4404,7 +4404,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -4419,7 +4419,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -4453,7 +4453,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -4476,7 +4476,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4492,7 +4492,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -4510,7 +4510,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -4525,7 +4525,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -4540,7 +4540,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -4561,7 +4561,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -4577,7 +4577,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -4595,7 +4595,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -4666,7 +4666,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -4683,7 +4683,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -4698,7 +4698,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -4714,7 +4714,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -4745,7 +4745,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4764,8 +4764,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -4859,7 +4859,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -4874,7 +4874,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -4907,7 +4907,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -4924,7 +4924,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -4941,7 +4941,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -4982,7 +4982,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -5016,7 +5016,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -5047,7 +5047,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -5126,7 +5126,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -5141,7 +5141,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -5156,7 +5156,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -5172,7 +5172,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -5188,7 +5188,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -5205,7 +5205,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -5222,7 +5222,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -5238,7 +5238,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -5255,7 +5255,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -5270,7 +5270,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -5285,7 +5285,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -5348,7 +5348,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -5364,7 +5364,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -5380,7 +5380,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -5411,7 +5411,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5427,7 +5427,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5443,7 +5443,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -5459,7 +5459,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -5489,7 +5489,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -5504,7 +5504,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -5519,7 +5519,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -5534,7 +5534,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -5663,7 +5663,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "" @@ -5809,7 +5809,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -5825,7 +5825,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "" @@ -5838,7 +5838,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -5905,8 +5905,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -6077,7 +6077,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -6092,7 +6092,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "" @@ -7043,7 +7043,7 @@ msgstr[1] "червона фарба" msgstr[2] "червона фарба" msgstr[3] "червона фарба" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "Бляшанка червоної фарби." @@ -7056,7 +7056,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "Бляшанка синої фарби." @@ -7069,7 +7069,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "Бляшанка білої фарби." @@ -7082,7 +7082,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "Бляшанка зеленої фарби." @@ -7095,7 +7095,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "Бляшанка фіолетової фарби." @@ -7108,7 +7108,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "Бляшанка жовтої фарби." @@ -7188,7 +7188,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "" @@ -7201,8 +7201,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -7225,7 +7225,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -7242,7 +7242,7 @@ msgstr[1] "свинець" msgstr[2] "свинець" msgstr[3] "свинець" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -7259,7 +7259,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -7274,7 +7274,7 @@ msgstr[1] "срібло" msgstr[2] "срібло" msgstr[3] "срібло" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -7345,7 +7345,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -7360,7 +7360,7 @@ msgstr[1] "припою" msgstr[2] "припою" msgstr[3] "припій" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -7404,7 +7404,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -7465,7 +7465,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -7481,7 +7481,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -7496,7 +7496,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -7512,7 +7512,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -7527,7 +7527,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -7544,7 +7544,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -7559,7 +7559,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -7574,7 +7574,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -7589,7 +7589,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -7604,7 +7604,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -7634,7 +7634,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -7663,7 +7663,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -7692,7 +7692,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -7738,7 +7738,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -7769,7 +7769,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -7801,7 +7801,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -7830,7 +7830,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -7938,7 +7938,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -7970,7 +7970,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -7987,7 +7987,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -8004,7 +8004,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -8022,7 +8022,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -8039,7 +8039,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -8058,7 +8058,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -8073,7 +8073,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -8091,7 +8091,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -8106,7 +8106,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -8122,7 +8122,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -8138,7 +8138,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -8153,7 +8153,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -8320,7 +8320,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -8337,7 +8337,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -8386,7 +8386,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -8404,7 +8404,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -8454,7 +8454,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8472,7 +8472,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -8522,7 +8522,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8540,7 +8540,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -8590,7 +8590,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -8604,7 +8604,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -8619,7 +8619,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8637,7 +8637,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -8670,7 +8670,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -8685,7 +8685,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -8701,7 +8701,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -8733,7 +8733,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -8748,7 +8748,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -8764,7 +8764,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -8828,7 +8828,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -8893,7 +8893,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -8954,7 +8954,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -8988,7 +8988,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -9001,7 +9001,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -9045,7 +9045,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "" @@ -9064,7 +9064,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -9623,7 +9623,7 @@ msgstr[3] "" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -9639,7 +9639,7 @@ msgstr "Ви вкладаєте ваше %s." #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -9679,7 +9679,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -10688,42 +10688,21 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "пояс для інструментів" +msgstr[1] "пояси для інструментів" +msgstr[2] "поясів для інструментів" +msgstr[3] "пояс для інструментів" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "Ви прибираєте %1$s до вашого %2$s" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "пояс для інструментів" -msgstr[1] "пояси для інструментів" -msgstr[2] "поясів для інструментів" -msgstr[3] "пояс для інструментів" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -10901,29 +10880,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -10945,51 +10901,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -11003,30 +10914,6 @@ msgstr[3] "пара похідних черевиків" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -11049,30 +10936,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -11157,22 +11020,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -11210,45 +11057,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -12301,29 +12109,6 @@ msgstr[1] "шкіряні плащі-пильники XL" msgstr[2] "шкіряних плащів-пильників XL" msgstr[3] "шкіряні плащі-пильники XL" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "плащ-пильник виживальника" -msgstr[1] "плащі-пильники виживальника" -msgstr[2] "плащів-пильників виживальника" -msgstr[3] "плащі-пильники виживальника" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "плащ-пильник виживальника XL" -msgstr[1] "плащі-пильники виживальника XL" -msgstr[2] "плащів-пильників виживальника XL" -msgstr[3] "плащі-пильники виживальника XL" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -12380,7 +12165,7 @@ msgstr[1] "армійські куртки" msgstr[2] "армійських курток" msgstr[3] "армійська куртка" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "" @@ -12581,7 +12366,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -12766,21 +12551,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "плащ-пильник виживальника без рукавів" -msgstr[1] "плащі-пильники виживальника без рукавів" -msgstr[2] "плащів-пильників виживальника без рукавів" -msgstr[3] "плащі-пильники виживальника без рукавів" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -12841,21 +12611,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -12877,7 +12632,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -12937,21 +12692,6 @@ msgstr[3] "" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -13234,21 +12974,6 @@ msgstr[3] "сонячні окуляри" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -13682,29 +13407,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -13726,58 +13428,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -13855,75 +13505,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -13972,21 +13553,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -14128,43 +13694,6 @@ msgid "" "mischief." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -15027,7 +14556,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -15153,36 +14682,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -15244,36 +14743,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -15503,40 +14972,6 @@ msgid "" "holster/draw a gun." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "обв'язка виживальника" -msgstr[1] "обв'язки виживальника" -msgstr[2] "обв'язок виживальника" -msgstr[3] "обв'язка виживальника" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -15594,89 +15029,6 @@ msgid "" "in size XL." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -15690,64 +15042,6 @@ msgstr[3] "капюшон від дощу" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -16222,9 +15516,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "" @@ -16237,9 +15531,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "" @@ -16252,9 +15546,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "" @@ -16267,9 +15561,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "" @@ -16282,9 +15576,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "" @@ -16297,9 +15591,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "" @@ -16312,9 +15606,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "" @@ -16327,9 +15621,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "" @@ -16342,9 +15636,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "" @@ -16357,9 +15651,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "" @@ -16372,9 +15666,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "" @@ -16387,9 +15681,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "" @@ -16402,9 +15696,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "" @@ -16417,9 +15711,9 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "" @@ -20593,7 +19887,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -20639,7 +19933,7 @@ msgstr[1] "шкіряних чапсів" msgstr[2] "шкіряних чапсів" msgstr[3] "шкіряні чапси" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -20654,7 +19948,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -20671,7 +19965,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "" @@ -20872,36 +20166,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -20915,36 +20179,6 @@ msgstr[3] "мотоциклетні штани" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" @@ -20953,7 +20187,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -20968,7 +20202,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -20999,7 +20233,7 @@ msgstr[1] "баскетбольні шорти" msgstr[2] "баскетбольні шорти" msgstr[3] "баскетбольні шорти" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "Баскетбольні шорти. Зручні та легкі." @@ -21012,7 +20246,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -21040,7 +20274,7 @@ msgstr[1] "шортиків" msgstr[2] "шортиків" msgstr[3] "шортики" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "" @@ -21053,7 +20287,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "" @@ -21066,7 +20300,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "" @@ -21079,7 +20313,7 @@ msgstr[1] "джинсів" msgstr[2] "джинсів" msgstr[3] "джинси" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "" @@ -21114,7 +20348,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "" @@ -21149,7 +20383,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -21237,7 +20471,7 @@ msgstr[1] "штанів" msgstr[2] "штанів" msgstr[3] "штани" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "" @@ -21250,15 +20484,15 @@ msgstr[1] "армійських штанів" msgstr[2] "армійських штанів" msgstr[3] "армійські штани" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -21293,7 +20527,7 @@ msgstr[1] "штани із великими карманами" msgstr[2] "штанів із великими карманами" msgstr[3] "штани із великими карманами" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -21308,7 +20542,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "" @@ -21321,7 +20555,7 @@ msgstr[1] "хутряних штанів" msgstr[2] "хутряних штанів" msgstr[3] "хутряні штани" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "" @@ -21334,7 +20568,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "" @@ -21347,7 +20581,7 @@ msgstr[1] "шкіряних штанів" msgstr[2] "шкіряних штанів" msgstr[3] "шкіряні штани" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -21362,7 +20596,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "" @@ -21375,7 +20609,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -21390,7 +20624,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "" @@ -21403,7 +20637,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "" @@ -21416,7 +20650,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -21429,7 +20663,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -21500,7 +20734,7 @@ msgstr[1] "штанів у смужку" msgstr[2] "штанів у смужку" msgstr[3] "штани у смужку" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "" @@ -21535,7 +20769,7 @@ msgstr[1] "армійських зимових штанів" msgstr[2] "армійських зимових штанів" msgstr[3] "армійські зимові штани" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -22836,66 +22070,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "речовий мішок виживальника" -msgstr[1] "речових мішка виживальника" -msgstr[2] "речових мішків виживальника" -msgstr[3] "речовий мішок виживальника" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "рюкзак виживальника" -msgstr[1] "рюкзак виживальника" -msgstr[2] "рюкзак виживальника" -msgstr[3] "рюкзаки виживальника" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -23404,37 +22578,6 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -23490,8 +22633,8 @@ msgstr[3] "" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -23507,21 +22650,6 @@ msgstr[3] "О-йорой" msgid "An ornamental suit of Japanese samurai armor." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -23678,79 +22806,47 @@ msgstr[2] "" msgstr[3] "" #: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" +msgid "gambeson" +msgid_plural "gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for winter survivor suit +#. ~ Description for gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. Or worn on its own, if you can't afford proper armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL winter survivor suit +#. ~ Description for kevlar gambeson #: lang/json/ARMOR_from_json.py msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "gambeson" -msgid_plural "gambesons" +msgid "XL gambeson" +msgid_plural "XL gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for gambeson -#: lang/json/ARMOR_from_json.py -msgid "" -"A thick jacket of quilted fabric, designed to be worn underneath mail or " -"other armor. Or worn on its own, if you can't afford proper armor." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL gambeson" -msgid_plural "XL gambesons" +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -23773,46 +22869,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -23886,21 +22942,6 @@ msgid "" "experience." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -23912,8 +22953,8 @@ msgstr[3] "бронекостюм спецназу" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." msgstr "" #: lang/json/ARMOR_from_json.py @@ -23931,46 +22972,6 @@ msgid "" "Light and very comfortable." msgstr "" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -24054,51 +23055,6 @@ msgstr[3] "" msgid "A neoprene hood, commonly worn by divers." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -24226,7 +23182,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -24427,7 +23383,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -24495,29 +23451,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -24821,7 +23754,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -24913,7 +23846,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "" @@ -25255,7 +24188,7 @@ msgstr[1] "боксерки-брифи" msgstr[2] "боксерки-брифи" msgstr[3] "боксерки-брифи" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "Споконвічне питання: боксерки чи труси-брифи? Твоя відповідь — так." @@ -25268,7 +24201,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "" @@ -25281,7 +24214,7 @@ msgstr[1] "шорти-боксерки" msgstr[2] "шорти-боксерки" msgstr[3] "шорти-боксерки" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -25296,7 +24229,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -25311,7 +24244,7 @@ msgstr[1] "труси-шортики" msgstr[2] "труси-шортики" msgstr[3] "труси-шортики" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -25327,7 +24260,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -25356,7 +24289,7 @@ msgstr[1] "труси-брифи" msgstr[2] "труси-брифи" msgstr[3] "труси-брифи" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "Труси-брифи. Комфортна спідня білизна для чоловіків." @@ -25539,7 +24472,7 @@ msgstr[1] "жіночих трусиків" msgstr[2] "жіночих трусиків" msgstr[3] "жіночі трусики" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -25613,7 +24546,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -25642,7 +24575,7 @@ msgstr[1] "компресійних термошортів" msgstr[2] "компресійних термошортів" msgstr[3] "компресійні термошорти" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -25681,57447 +24614,58864 @@ msgid "" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sheet" -msgid_plural "sheets" -msgstr[0] "штора" -msgstr[1] "штори" -msgstr[2] "штор" -msgstr[3] "штора" +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for sheet +#. ~ Description for nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" -" a bunch of rags." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "blanket" -msgid_plural "blankets" -msgstr[0] "ковдра" -msgstr[1] "ковдри" -msgstr[2] "ковдр" -msgstr[3] "ковдра" - -#. ~ Description for blanket -#: lang/json/ARMOR_from_json.py -msgid "Hiding under here will not protect you from the monsters." +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "down-filled blanket" -msgid_plural "down-filled blankets" +msgid "light nomad gear" +msgid_plural "light nomad gears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for down-filled blanket +#. ~ Description for light nomad gear #: lang/json/ARMOR_from_json.py msgid "" -"Hiding under here will not protect you from the monsters, but it'll keep you" -" warm." +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "fur blanket" -msgid_plural "fur blankets" +msgid "scavenger gear" +msgid_plural "scavenger gears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fur blanket +#. ~ Description for scavenger gear #: lang/json/ARMOR_from_json.py -msgid "A heavy fur blanket that covers most of your body." +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "quilt" -msgid_plural "quilts" +msgid "light survivor suit" +msgid_plural "light survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for quilt +#. ~ Description for light survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " -"cozy!" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "patchwork quilt" -msgid_plural "patchwork quilts" +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for patchwork quilt -#: lang/json/ARMOR_from_json.py -msgid "A huge, patchwork wool quilt. Very, very warm." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "sleeping bag" -msgid_plural "sleeping bags" +msgid "survivor suit" +msgid_plural "survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for sleeping bag. -#: lang/json/ARMOR_from_json.py -msgid "You roll up the sleeping bag, preparing it for transport." -msgstr "" - -#. ~ Description for sleeping bag +#. ~ Description for survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A large sleeping bag that covers you head to toe. This one is medium " -"weight." +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cestus" -msgid_plural "cestuses" +msgid "XL survivor suit" +msgid_plural "XL survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cestus +#. ~ Description for XL survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A leather hand and arm wrap incorporating metal plates over the knuckles to " -"improve punching power and defence." +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of studded gloves" -msgid_plural "pairs of studded gloves" +msgid "winter survivor suit" +msgid_plural "winter survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of studded gloves +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "A pair of gloves with studded metal knuckles." +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "impact knuckles" -msgid_plural "impact knuckles" +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for winter survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of thick steel plates covering your proximal phalange. They are " -"strapped to your hands with metal braces." +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." msgstr "" +#. ~ Description for XL winter survivor suit #: lang/json/ARMOR_from_json.py -msgid "skewer knuckles" -msgid_plural "skewer knuckles" +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for survivor wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A single sturdy spike protrudes 5cm from the back of your hand. They are " -"strapped to your hands with metal braces." +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "telescoping umbrella" -msgid_plural "telescoping umbrellas" +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for telescoping umbrella +#. ~ Description for pair of light survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A telescoping umbrella which collapses down for easy storage, useful for " -"keeping dry when wielded." +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "bag of holding" -msgid_plural "bags of holding" +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bag of holding -#: lang/json/ARMOR_from_json.py -msgid "" -"A sleek, unfathomably-complicated machine covered in dozens of blinking " -"lights, worn on the back by sturdy faux-leather straps. An electrode " -"dangles from the back, attaching to your forehead. How it operates without " -"annihilating spacetime isn't quite clear, but a localized portal allows " -"things to be stored in an extradimensional space." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "titanium vest" -msgid_plural "titanium vests" +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for titanium vest +#. ~ Description for pair of survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight armor vest made of pieces of titanium sewn together, with " -"cloth padding for comfort. Brittle against blunt force, but highly " -"resistant to cuts and corrosion." +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "sentinel-lx cloak" -msgid_plural "sentinel-lx cloaks" +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sentinel-lx cloak +#. ~ Description for pair of XL survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " -"unnatural shadow. Made from woven graphene, its lightweight and resistant, " -"but cannot be repaired" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL jeans" -msgid_plural "pairs of XL jeans" +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL jeans +#. ~ Description for pair of faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue jeans with two deep pockets." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work pants" -msgid_plural "pairs of XL work pants" +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for pair of XL faux fur winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "A pair of XL blue work pants." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "A pair of XL gray work pants." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "A pair of XL light-blue work pants." +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL work t-shirt" -msgid_plural "XL work t-shirts" +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL work t-shirt -#: lang/json/ARMOR_from_json.py -msgid "A gray XL work t-shirt with a small front pocket." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "An XL blue work t-shirt with a small front pocket." -msgstr "" - +#. ~ Description for pair of winter survivor boots #: lang/json/ARMOR_from_json.py -msgid "An XL gray work t-shirt with a small front pocket." +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "An XL light-blue work t-shirt with a small front pocket." -msgstr "" +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/ARMOR_from_json.py -msgid "Uplifted SWAT armor" -msgid_plural "Uplifted SWAT armors" +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Uplifted SWAT armor +#. ~ Description for pair of survivor wetsuit boots #: lang/json/ARMOR_from_json.py msgid "" -"An extra large suit of black bulletproof armor with lots of pockets. The " -"word SWAT is emblazoned across the back. Specifically designed for Uplifted" -" officers such as Mastodons." +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "empty XL ballistic vest" -msgid_plural "empty XL ballistic vests" +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for empty XL ballistic vest +#. ~ Description for pair of light survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"Oversized ballistic armor without any armor inserts. The soft armor plate " -"carrier is still protective but it won't stop high energy projectiles." +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL ESAPI ballistic vest" -msgid_plural "XL ESAPI ballistic vests" +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL ESAPI ballistic vest -#: lang/json/ARMOR_from_json.py -msgid "Oversized ballistic armor with ESAPI ceramic armor plates." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of XL combat boots" -msgid_plural "pair of XL combat boots" +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of fingerless light survivor gloves #: lang/json/ARMOR_from_json.py -msgid "Modern oversized reinforced tactical combat boots. Very durable." +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL tactical gloves" -msgid_plural "pair of XL tactical gloves" +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " -"police and military units." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of Killophant gloves" -msgid_plural "pair of Killophant gloves" +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of fingerless survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of reinforced Kevlar tactical gloves, specifically designed to " -"accommodate three-fingered Killophants. Thinner than regular oversized " -"tactical gloves." +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leather belt" -msgid_plural "XL leather belts" +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL leather belt -#: lang/json/ARMOR_from_json.py -msgid "" -"An XL leather belt. Useful for making your pair of pants fit if you need " -"really big pants." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "XL police duty belt" -msgid_plural "XL police duty belts" +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL police duty belt +#. ~ Description for pair of survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL black leather belt used by extremely large uplifted police officers. " -"It has several pouches and a holder for a baton." +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL tactical full helmet" -msgid_plural "XL tactical full helmets" +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL tactical full helmet +#. ~ Description for pair of XL survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing massive black helmet that covers your entire face and " -"neck, providing excellent protection from all sorts of damage." +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL leg ammo pouch" -msgid_plural "XL leg ammo pouches" +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL leg ammo pouch +#. ~ Description for pair of winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" -" two magazines close at hand." +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "crew jumpsuit" -msgid_plural "crew jumpsuits" +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for crew jumpsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " -"some freight hauling association or another. This one is a standard design " -"favored by spacers, with ample, easy access pockets." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "communications cap" -msgid_plural "communications caps" +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for communications cap +#. ~ Description for pair of faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A padded cotton cap built around an augmented reality headset. During " -"normal operation it would provide visual information about a ship subsystems" -" and a communications link with the rest of the crew, but severed from a " -"spaceship, only their hearing protection function retains any utility." +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "HERC rig" -msgid_plural "HERC rigs" +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for HERC rig +#. ~ Description for pair of XL faux fur winter survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " -"about in zero-g, Mars, the bottom of the Pacific, or other generally " -"inhospitable environments. It has several deep pockets, and two mounting " -"points for pressurized canisters or other large magazines." +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cecalia wetsuit" -msgid_plural "cecalia wetsuits" +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cecalia wetsuit +#. ~ Description for pair of survivor wetsuit gloves #: lang/json/ARMOR_from_json.py msgid "" -"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " -"explorer suit with no head or tentacle protection." +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "combat wetsuit" -msgid_plural "combat wetsuits" +msgid "nomad cowl" +msgid_plural "nomad cowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for combat wetsuit +#. ~ Description for nomad cowl #: lang/json/ARMOR_from_json.py msgid "" -"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " -"will provide some level of protection for deep dwellers." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "nanomesh vest" -msgid_plural "nanomesh vests" +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nanomesh vest +#. ~ Description for nomad cowl XL #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight nanomesh vest designed to face down many of the perils of " -"space travel. These vests are mass produced and often stacked in starship " -"lockers." +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "vacuum cast cuirass" -msgid_plural "vacuum cast cuirasses" +msgid "survivor hood" +msgid_plural "survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vacuum cast cuirass +#. ~ Description for survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"This piece of armor harkens back to renaissance designs. It differs in that" -" it is cast as a single piece in deep space installations where conditions " -"can be controlled absolutely." +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "carbide raider's helmet" -msgid_plural "carbide raider's helmets" +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for carbide raider's helmet +#. ~ Description for winter survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"This helmet is designed for the individual that is worried about catching " -"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " -"environmental protection features, but it just might stop even the largest " -"of ballistic rounds." +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "UICAS Point of Impact helmet" -msgid_plural "UICAS Point of Impact helmets" +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for UICAS Point of Impact helmet +#. ~ Description for XL winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A lightweight black helmet that provides excellent protection from all sorts" -" of damage, unless it's airborne. UICAS makes the point of designing all " -"headgear whenever possible with clear faceplates, in order to provide a " -"human touch to all interactions." +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "cold resistance cream" -msgid_plural "cold resistance creams" +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cold resistance cream +#. ~ Description for XL survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick layer of something that smells worse than walrus fat. But it keeps " -"you warm." +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "heat retention xtreme cream" -msgid_plural "heat retention xtreme creams" +msgid "light survivor hood" +msgid_plural "light survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for heat retention xtreme cream +#. ~ Description for light survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"The last word in cold snap protection designed to give short term protection" -" in the event of a suit breach in vacuum." +msgid "A customized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium watch" -msgid_plural "titanium watches" +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for titanium watch +#. ~ Description for XL light survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"A thick, masculine watch made out of titanium. It is durable, light-weight " -"and water-resistant, an excellent watch to have in a hostile environment." +"A customized and oversized armored cloth and Kevlar hood, light yet durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "titanium ring" -msgid_plural "titanium rings" +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for titanium ring +#. ~ Description for winter faux fur survivor hood #: lang/json/ARMOR_from_json.py -msgid "" -"A thick, masculine ring made out of titanium. Made in a variety of styles " -"and finishes, they're valued for their durability." +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "hazardous environment suit" -msgid_plural "hazardous environment suits" +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hazardous environment suit +#. ~ Description for XL faux fur winter survivor hood #: lang/json/ARMOR_from_json.py msgid "" -"Developed for the exploration of alien planes, the lightweight, orange-black" -" HEV suit covers everything below the neck. While it possesses only modest " -"physical protection, it provides excellent protection from most " -"environmental hazards. A hatch in the front opens to provide a small amount" -" of storage." +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "psychrophile handling gloves" -msgid_plural "psychrophile handling gloves" +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for survivor wetsuit hood #: lang/json/ARMOR_from_json.py msgid "" -"These gloves are designed for handling organisms that live in extremely cold" -" temperatures. They can also be used to freeze your foes to death." +"A customized armored neoprene and Kevlar hood, very strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Engineering Suit" -msgid_plural "CRIT Engineering Suits" +msgid "scavenger cowl" +msgid_plural "scavenger cowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT Engineering Suit +#. ~ Description for scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"An airtight, flexible suit of woven composite fibers complete with segmented" -" plates of armor. A complex system digitizes items in an individual pocket " -"universe for storage while built in joint-torsion ratchets generate the " -"necessary energy required to power the interface." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT face mask" -msgid_plural "CRIT face masks" +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT face mask +#. ~ Description for XL scavenger cowl #: lang/json/ARMOR_from_json.py msgid "" -"A standard issue face mask, lined with Kevlar for extra protection. A few " -"filters provide decent environmental safety, but it was not intended for " -"extended use. It has a basic integrated HUD." +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT boots" -msgid_plural "pairs of CRIT boots" +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT boots +#. ~ Description for light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " -"hygienic during long-term missions while absorbing shock and heat from " -"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " -"protection as well. Decently heavy though" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT LA boots" -msgid_plural "pairs of CRIT LA boots" +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT LA boots +#. ~ Description for XL light survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " -"variant was created for missions in warmer climates. The LA boots keep most" -" of the old features of the standard issue boots but trade in protection for" -" easier movement." +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less gloves" -msgid_plural "pairs of CRIT fingertip-less gloves" +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT fingertip-less gloves +#. ~ Description for survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue gloves. Made with superalloy mesh for those with " -"gene-modding and/or mutations while still allowing greater manipulation of " -"items and moderate protection." +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT fingertip-less liners" -msgid_plural "pairs of CRIT fingertip-less liners" +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT fingertip-less liners +#. ~ Description for XL survivor cargo pants #: lang/json/ARMOR_from_json.py msgid "" -"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " -"for warmth and fingertip-less for those with gene-modding and/or mutations " -"while still allowing greater manipulation of items and moderate protection." +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT backpack" -msgid_plural "CRIT backpacks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "плащ-пильник виживальника" +msgstr[1] "плащі-пильники виживальника" +msgstr[2] "плащів-пильників виживальника" +msgstr[3] "плащі-пильники виживальника" -#. ~ Description for CRIT backpack +#. ~ Description for survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue pack. Based on the MOLLE backpack's design, this smaller " -"pack strikes a fine balance between storage space and encumbrance and allows" -" a larger weapon to be holstered, drawing and holstering is still rather " -"awkward even with the magnetized clips, but practice helps." +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT chestrig" -msgid_plural "CRIT chestrigs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "плащ-пильник виживальника XL" +msgstr[1] "плащі-пильники виживальника XL" +msgstr[2] "плащів-пильників виживальника XL" +msgstr[3] "плащі-пильники виживальника XL" -#. ~ Description for CRIT chestrig +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "плащ-пильник виживальника без рукавів" +msgstr[1] "плащі-пильники виживальника без рукавів" +msgstr[2] "плащів-пильників виживальника без рукавів" +msgstr[3] "плащі-пильники виживальника без рукавів" + +#. ~ Description for sleeveless survivor duster #: lang/json/ARMOR_from_json.py msgid "" -"A slightly modified chestrig, has mesh and MOLLE loops for gear and slots " -"with light-armor padding." +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT leg guards" -msgid_plural "pairs of CRIT leg guards" +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT leg guards +#. ~ Description for survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"Leg armor for those who fight. Simple design and durable material allows " -"for easy movement and the padding keeps the legs safe and warm in colder " -"conditions." +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT arm guards" -msgid_plural "pairs of CRIT arm guards" +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT arm guards +#. ~ Description for sleeveless survivor trenchcoat #: lang/json/ARMOR_from_json.py msgid "" -"A pair of arm guards made from superalloy molded upon neoprene, and then " -"insulated with rubber. They are sturdy and will block attacks, but they are" -" ridiculously heavy." +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "речовий мішок виживальника" +msgstr[1] "речових мішка виживальника" +msgstr[2] "речових мішків виживальника" +msgstr[3] "речовий мішок виживальника" -#. ~ Description for CRIT web belt +#. ~ Description for survivor duffel bag #: lang/json/ARMOR_from_json.py msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT infantry duster" -msgid_plural "CRIT infantry dusters" +msgid "survivor backpack" +msgid_plural "survivor backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT infantry duster +#. ~ Description for survivor backpack #: lang/json/ARMOR_from_json.py msgid "" -"A thick full-length duster coat with rubber insulation. More than mildly " -"encumbering, but rather protective against any anti-infantry electrical " -"discharges from the robots. Has several pockets for storage." +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Armored Anomaly Suit" -msgid_plural "CRIT Armored Anomaly Suits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "рюкзак виживальника" +msgstr[1] "рюкзак виживальника" +msgstr[2] "рюкзак виживальника" +msgstr[3] "рюкзаки виживальника" -#. ~ Description for CRIT Armored Anomaly Suit +#. ~ Description for survivor rucksack #: lang/json/ARMOR_from_json.py msgid "" -"A relatively simple suit of armor. A suit of woven composite fibers " -"combined with a cleansuit core and strategically placed segmented Kevlar " -"plates keep the suit light-weight and the one wearing it alive while " -"offering superb resistance to the elements and ambient radiation." +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT drop leg pouch" -msgid_plural "CRIT drop leg pouches" +msgid "survivor runner pack" +msgid_plural "survivor runner packs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT drop leg pouch +#. ~ Description for survivor runner pack #: lang/json/ARMOR_from_json.py msgid "" -"A set of pouches that can be worn on the thighs using buckled straps. This " -"variety is more compact and is favored by the C.R.I.T for its ease of use." +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Enforcer armor assembly" -msgid_plural "CRIT Enforcer armor assemblies" +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT Enforcer armor assembly +#. ~ Description for pair of survivor fireboots #: lang/json/ARMOR_from_json.py msgid "" -"A series of plates, guards and buckles which assemble into a suit of sturdy " -"body-armor which usually goes over other armor. Overlapping steel plates on" -" top of Kevlar plates cover vast expanses as the armor juts off in places so" -" it can deflect attacks. Built with the idea that comfort is less important" -" than safety, this heavy suit is difficult to move about in but highly " -"protective. Various adjustable connectors such as straps and clips hold it " -"together." +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT Enforcer docks" -msgid_plural "pairs of CRIT Enforcer docks" +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT Enforcer docks -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " -"oversized feet which clamp down onto your own footwear keep your feet out of" -" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " -"designs, but they do seem to be worth using if you were to be in the middle " -"of a war zone." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT Soldier Suit" -msgid_plural "CRIT Soldier Suits" +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT Soldier Suit +#. ~ Description for pair of heavy survivor boots #: lang/json/ARMOR_from_json.py msgid "" -"A suit of modern body-armor. Strategically placed superalloy plates keep " -"the suit's weight minimal while Kevlar plates other areas and a lining of " -"soft neoprene pads areas for extra comfort. Most importantly, this can be " -"worn comfortably under other armor." +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT Lone Wolf Series Armor" -msgid_plural "CRIT Lone Wolf Series Armors" +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT Lone Wolf Series Armor -#: lang/json/ARMOR_from_json.py -msgid "" -"A matte black suit of outdated and bulky looking plate armor fitted onto a " -"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " -"armor will definitely protect you from practically anything. Just make sure" -" you can actually walk with it on though." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "CRIT blouse" -msgid_plural "CRIT blouses" +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT blouse +#. ~ Description for pair of heavy survivor gloves #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue military jacket. Durable, lightweight, and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather " -"while a sleek design keeps it from being too flashy. A zipper at the back " -"and front allows for quick donning and doffing." +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT trousers" -msgid_plural "CRIT trousers" +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of standard-issue cargo pants. Durable, lightweight and has ample " -"storage. Super-flex neoprene keeps one warm in moderately cold weather." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "CRIT pants" -msgid_plural "CRIT pants" +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for pair of survivor firegloves #: lang/json/ARMOR_from_json.py msgid "" -"A pair of dress pants. A minimalist sleek design makes the pants " -"lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" -" moderately cold weather." +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT helmet liner" -msgid_plural "CRIT helmet liners" +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT helmet liner -#: lang/json/ARMOR_from_json.py -msgid "A standard-issue helmet liner. Keeps the noggin warm." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT shoes" -msgid_plural "pairs of CRIT dress shoes" +msgid "survivor firehood" +msgid_plural "survivor firehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT shoes +#. ~ Description for survivor firehood #: lang/json/ARMOR_from_json.py -msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." +msgid "A customized armored Nomex and Kevlar hood, strong and durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of CRIT rec gloves" -msgid_plural "pairs of CRIT rec gloves" +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of CRIT rec gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " -"are made with cotton with a neoprene lining for grip-pads and warmth." -msgstr "" - -#. ~ Description for CRIT web belt +#. ~ Description for XL survivor firehood #: lang/json/ARMOR_from_json.py msgid "" -"A standard-issue belt. Keeps your trousers up and your tools on your hip." +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT rec duster" -msgid_plural "CRIT rec dusters" +msgid "survivor firesuit" +msgid_plural "survivor firesuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT rec duster +#. ~ Description for survivor firesuit #: lang/json/ARMOR_from_json.py msgid "" -"A waterproofed full-length duster coat. Made with neoprene, comfort and " -"functionality meet together to form a fancy but sleek contemporary design. " -"It has several pockets for storage." +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT rec hat" -msgid_plural "CRIT rec hats" +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT rec hat -#: lang/json/ARMOR_from_json.py -msgid "" -"Functionality meets fashion in this waterproofed CRIT standard issue rec " -"cover. Thick enough to provide warmth in colder weather, this hat shares " -"the same sleek design of most of C.R.I.T's gear." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "plant fiber tunic" -msgid_plural "plant fiber tunics" +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plant fiber tunic +#. ~ Description for heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A loose garment cobbled together from a collection of plant bundles and " -"wound together by makeshift cordage" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "plant fiber bracelet" -msgid_plural "plant fiber bracelets" +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plant fiber bracelet +#. ~ Description for XL heavy survivor suit #: lang/json/ARMOR_from_json.py msgid "" -"A bracelet wound together by makeshift cordage. Has some cool looking " -"pebbles." +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "CRIT canteen" -msgid_plural "CRIT canteens" +msgid "light survivor body armor" +msgid_plural "light survivor body armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT canteen +#. ~ Description for light survivor body armor #: lang/json/ARMOR_from_json.py msgid "" -"A durable steel canteen that can heat up food with built in atomic heating " -"elements." +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "salvaged new order armor" -msgid_plural "salvaged new order armors" +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for salvaged new order armor -#: lang/json/ARMOR_from_json.py -msgid "" -"A suit of armor belonging to a human-sized soldier of the New Order. Its " -"terribly damaged from some combination of the combat its seen, the process " -"needed to pry it off its wearer, and some sort of dead man's switch on the " -"elements that actually power the thing and make it easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py -msgid "new order shield" -msgid_plural "new order shields" +msgid "survivor belt" +msgid_plural "survivor belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for new order shield +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt #: lang/json/ARMOR_from_json.py msgid "" -"A simple shield made of some sort of polycarbonates, used extensively by the" -" Vigilants, the gendarmerie of the New Order. Alongside their infamous " -"shock batons, this is an essential tool in 'keeping the peace'." +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "new order battle shield" -msgid_plural "new order battle shields" +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for new order battle shield +#. ~ Description for survivor goggles #: lang/json/ARMOR_from_json.py msgid "" -"A well forged shield made of steel, emblazoned with what appears to be a " -"highly stylized depiction of a sword piercing a star." +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." msgstr "" -#. ~ Description for large quiver #: lang/json/ARMOR_from_json.py -msgid "" -"A large leather quiver trimmed with metal, worn on the back, that can hold " -"60 arrows. Historically used by horse archers, rather than foot archers, " -"but sometimes horses are a little hard to come by in this day and age. " -"Activate to store arrows." -msgstr "" +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "обв'язка виживальника" +msgstr[1] "обв'язки виживальника" +msgstr[2] "обв'язок виживальника" +msgstr[3] "обв'язка виживальника" -#. ~ Description for bra +#. ~ Description for survivor harness #: lang/json/ARMOR_from_json.py msgid "" -"A simple bra. For protecting those bits you don't want creatures to look " -"at." +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Ixythyug the Destroyer's soul" -msgid_plural "Ixythyug the Destroyer's souls" +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ixythyug the Destroyer's soul +#. ~ Description for XL survivor harness #: lang/json/ARMOR_from_json.py -msgid "RIP AND TEAR" +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Force Shield" -msgid_plural "Force Shield" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/ARMOR_from_json.py +msgid "sheet" +msgid_plural "sheets" +msgstr[0] "штора" +msgstr[1] "штори" +msgstr[2] "штор" +msgstr[3] "штора" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for sheet #: lang/json/ARMOR_from_json.py msgid "" -"A shield of pure force that protects you from most types of physical damage." +"A large fabric sheet, could be used as a curtain or bedsheets; or cut up for" +" a bunch of rags." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Soul Burn" -msgid_plural "Soul Burns" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/ARMOR_from_json.py +msgid "blanket" +msgid_plural "blankets" +msgstr[0] "ковдра" +msgstr[1] "ковдри" +msgstr[2] "ковдр" +msgstr[3] "ковдра" -#. ~ Description for Soul Burn +#. ~ Description for blanket #: lang/json/ARMOR_from_json.py -msgid "" -"A little of your soul has been burned away, leaving you in a weakened state." -" The soul heals quickly, so rest for now." +msgid "Hiding under here will not protect you from the monsters." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "copper infusion bracelet" -msgid_plural "copper infusion bracelets" +msgid "down-filled blanket" +msgid_plural "down-filled blankets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for copper infusion bracelet -#. ~ Description for silver infusion bracelet +#. ~ Description for down-filled blanket #: lang/json/ARMOR_from_json.py 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." +"Hiding under here will not protect you from the monsters, but it'll keep you" +" warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "silver infusion bracelet" -msgid_plural "silver infusion bracelets" +msgid "fur blanket" +msgid_plural "fur blankets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for fur blanket #: lang/json/ARMOR_from_json.py -msgid "copper circlet" -msgid_plural "copper circlets" +msgid "A heavy fur blanket that covers most of your body." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "quilt" +msgid_plural "quilts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for copper circlet +#. ~ Description for quilt #: lang/json/ARMOR_from_json.py msgid "" -"A wooden band with copper trimmings to be worn on the head. Touching your " -"temples with it on makes you feel very calm." +"A big, comfy quilt made of thick wool in a triangle pattern. Extremely " +"cozy!" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin arm guards" -msgid_plural "pairs of demon chitin arm guards" +msgid "patchwork quilt" +msgid_plural "patchwork quilts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of demon chitin arm guards +#. ~ Description for patchwork quilt #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of arm guards crafted from the carefully cleaned and pruned red " -"exoskeletons of demon spiders. Fire-resistant and very durable." +msgid "A huge, patchwork wool quilt. Very, very warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "demon chitin armor" -msgid_plural "demon chitin armors" +msgid "sleeping bag" +msgid_plural "sleeping bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for demon chitin armor +#. ~ Use action msg for sleeping bag. #: lang/json/ARMOR_from_json.py -msgid "" -"Leg and body armor crafted from the carefully cleaned and pruned red " -"exoskeletons of demon spiders. Fire-resistant and very durable." +msgid "You roll up the sleeping bag, preparing it for transport." msgstr "" +#. ~ Description for sleeping bag #: lang/json/ARMOR_from_json.py -msgid "demon chitin helmet" -msgid_plural "demon chitin helmets" +msgid "" +"A large sleeping bag that covers you head to toe. This one is medium " +"weight." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "cestus" +msgid_plural "cestuses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for demon chitin helmet +#. ~ Description for cestus #: lang/json/ARMOR_from_json.py msgid "" -"A helmet crafted from the carefully cleaned and pruned red exoskeletons of " -"demon spiders. Covers the entire head; fire-resistant and very durable." +"A leather hand and arm wrap incorporating metal plates over the knuckles to " +"improve punching power and defence." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin gauntlets" -msgid_plural "pairs of demon chitin gauntlets" +msgid "pair of studded gloves" +msgid_plural "pairs of studded gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of demon chitin gauntlets +#. ~ Description for pair of studded gloves #: lang/json/ARMOR_from_json.py -msgid "" -"Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " -"demon spiders. Fire-resistant and very durable." +msgid "A pair of gloves with studded metal knuckles." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of demon chitin boots" -msgid_plural "pairs of demon chitin boots" +msgid "impact knuckles" +msgid_plural "impact knuckles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of demon chitin boots +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" -"Boots crafted from carefully cleaned and pruned red exoskeletons of demon " -"spiders. Fire-resistant and very durable." +"A pair of thick steel plates covering your proximal phalange. They are " +"strapped to your hands with metal braces." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonscale boots" -msgid_plural "pairs of black dragonscale boots" +msgid "skewer knuckles" +msgid_plural "skewer knuckles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of black dragonscale boots +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" -"Boots made of black incredibly durable dragonscale. Very protective, and " -"surprisingly light." +"A single sturdy spike protrudes 5cm from the back of your hand. They are " +"strapped to your hands with metal braces." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonhide boots" -msgid_plural "pairs of black dragonhide boots" +msgid "telescoping umbrella" +msgid_plural "telescoping umbrellas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of black dragonhide boots +#. ~ Description for telescoping umbrella #: lang/json/ARMOR_from_json.py msgid "" -"Boots made of very durable black dragonhide. Very protective, and " -"surprisingly light." +"A telescoping umbrella which collapses down for easy storage, useful for " +"keeping dry when wielded." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale helmet" -msgid_plural "black dragonscale helmets" +msgid "bag of holding" +msgid_plural "bags of holding" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for black dragonscale helmet. -#. ~ Use action msg for XL black dragonscale helmet. -#. ~ Use action msg for riot helmet. -#. ~ Use action msg for motorcycle helmet. -#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py -msgid "You raise your visor." -msgstr "" - -#. ~ Description for black dragonscale helmet +#. ~ Description for bag of holding #: lang/json/ARMOR_from_json.py msgid "" -"A helmet made from black incredibly durable dragonscale, held together with " -"black dragonhide. It comes equipped with a full face visor with only a thin" -" slit to see out of. Activate to raise the visor." +"A sleek, unfathomably-complicated machine covered in dozens of blinking " +"lights, worn on the back by sturdy faux-leather straps. An electrode " +"dangles from the back, attaching to your forehead. How it operates without " +"annihilating spacetime isn't quite clear, but a localized portal allows " +"things to be stored in an extradimensional space." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale helmet (raised visor)" -msgid_plural "black dragonscale helmets (raised visor)" +msgid "titanium vest" +msgid_plural "titanium vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for black dragonscale helmet (raised visor). -#. ~ Use action msg for XL black dragonscale helmet (raised visor). -#. ~ Use action msg for riot helmet (raised visor). -#. ~ Use action msg for motorcycle helmet (raised visor). -#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py -msgid "You put down your visor." -msgstr "" - -#. ~ Description for black dragonscale helmet (raised visor) +#. ~ Description for titanium vest #: lang/json/ARMOR_from_json.py msgid "" -"A helmet made from incredibly durable black dragonscale, held together with " -"black dragonhide. The visor is raised." +"A lightweight armor vest made of pieces of titanium sewn together, with " +"cloth padding for comfort. Brittle against blunt force, but highly " +"resistant to cuts and corrosion." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonhide helmet" -msgid_plural "black dragonhide helmets" +msgid "sentinel-lx cloak" +msgid_plural "sentinel-lx cloaks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black dragonhide helmet +#. ~ Description for sentinel-lx cloak #: lang/json/ARMOR_from_json.py msgid "" -"A helmet made from very durable black dragonhide. It protects your head " -"well, but doesn't cover your face." +"The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, " +"unnatural shadow. Made from woven graphene, its lightweight and resistant, " +"but cannot be repaired" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonscale armor" -msgid_plural "black dragonscale armors" +msgid "XL jeans" +msgid_plural "pairs of XL jeans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black dragonscale armor +#. ~ Description for XL jeans #: lang/json/ARMOR_from_json.py -msgid "" -"A full suit of incredibly durable 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." +msgid "A pair of XL blue jeans with two deep pockets." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "black dragonhide armor" -msgid_plural "black dragonhide armors" +msgid "XL work pants" +msgid_plural "pairs of XL work pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black dragonhide armor #: lang/json/ARMOR_from_json.py -msgid "" -"A full suit of very durable 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." +msgid "A pair of XL blue work pants." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonscale gauntlets" -msgid_plural "pairs of black dragonscale gauntlets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A pair of XL gray work pants." +msgstr "" -#. ~ Description for pair of black dragonscale gauntlets #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " -"that covers your hands." +msgid "A pair of XL light-blue work pants." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of black dragonhide gloves" -msgid_plural "pairs of black dragonhide gloves" +msgid "XL work t-shirt" +msgid_plural "XL work t-shirts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of black dragonhide gloves +#. ~ Description for XL work t-shirt #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of gloves made of very durable black dragonhide, modified to be easy " -"to wear while providing maximum protection under extreme conditions." +msgid "A gray XL work t-shirt with a small front pocket." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonscale boots" -msgid_plural "pairs of XL black dragonscale boots" +msgid "An XL blue work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL gray work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "An XL light-blue work t-shirt with a small front pocket." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "Uplifted SWAT armor" +msgid_plural "Uplifted SWAT armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of XL black dragonscale boots +#. ~ Description for Uplifted SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"Massive boots made of incredibly durable black dragonscale, modified to fit " -"even the strangest of bodies. Very protective, and surprisingly light." +"An extra large suit of black bulletproof armor with lots of pockets. The " +"word SWAT is emblazoned across the back. Specifically designed for Uplifted" +" officers such as Mastodons." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonhide boots" -msgid_plural "pairs of XL black dragonhide boots" +msgid "empty XL ballistic vest" +msgid_plural "empty XL ballistic vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of XL black dragonhide boots +#. ~ Description for empty XL ballistic vest #: lang/json/ARMOR_from_json.py msgid "" -"Massive boots made of very durable black dragonhide, modified to fit even " -"the strangest of bodies. Very protective, and surprisingly light." +"Oversized ballistic armor without any armor inserts. The soft armor plate " +"carrier is still protective but it won't stop high energy projectiles." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonscale gauntlets" -msgid_plural "pairs of XL black dragonscale gauntlets" +msgid "XL ESAPI ballistic vest" +msgid_plural "XL ESAPI ballistic vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of XL black dragonscale gauntlets +#. ~ Description for XL ESAPI ballistic vest #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " -"that covers your hands, or whatever you use as hands." +msgid "Oversized ballistic armor with ESAPI ceramic armor plates." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of XL black dragonhide gloves" -msgid_plural "pairs of XL black dragonhide gloves" +msgid "pair of XL combat boots" +msgid_plural "pair of XL combat boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of XL black dragonhide gloves +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py -msgid "" -"A pair of gloves made of very durable black dragonhide, modified to be easy " -"to wear while providing maximum protection under extreme conditions. Sized " -"to fit even the strangest of anatomy." +msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale helmet" -msgid_plural "XL black dragonscale helmets" +msgid "pair of XL tactical gloves" +msgid_plural "pair of XL tactical gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL black dragonscale helmet +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from incredibly durable black dragonscale, held " -"together with black dragonhide. It comes equipped with a full face visor " -"you can raise and is large enough to fit even the strangest of heads." +"A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " +"police and military units." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale helmet (raised visor)" -msgid_plural "XL black dragonscale helmets (raised visor)" +msgid "pair of Killophant gloves" +msgid_plural "pair of Killophant gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL black dragonscale helmet (raised visor) +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from incredibly durable black dragonscale, held " -"together with black dragonhide. It is large enough to fit even the " -"strangest of heads. The visor is raised" +"A pair of reinforced Kevlar tactical gloves, specifically designed to " +"accommodate three-fingered Killophants. Thinner than regular oversized " +"tactical gloves." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonhide helmet" -msgid_plural "XL black dragonhide helmets" +msgid "XL leather belt" +msgid_plural "XL leather belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL black dragonhide helmet +#. ~ Description for XL leather belt #: lang/json/ARMOR_from_json.py msgid "" -"A massive helmet made from very durable black dragonhide. It protects your " -"head well, and doesn't cover your face, but is large enough to fit even the " -"strangest of heads." +"An XL leather belt. Useful for making your pair of pants fit if you need " +"really big pants." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonscale armor" -msgid_plural "XL black dragonscale armors" +msgid "XL police duty belt" +msgid_plural "XL police duty belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL black dragonscale armor +#. ~ Description for XL police duty belt #: lang/json/ARMOR_from_json.py msgid "" -"A massive full suit of incredibly durable 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." +"An XL black leather belt used by extremely large uplifted police officers. " +"It has several pouches and a holder for a baton." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL black dragonhide armor" -msgid_plural "XL black dragonhide armors" +msgid "XL tactical full helmet" +msgid_plural "XL tactical full helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XL black dragonhide armor +#. ~ Description for XL tactical full helmet #: lang/json/ARMOR_from_json.py msgid "" -"A massive full suit of very durable black dragonhide armor. It comes with " -"all the accoutrements that cover your torso, legs, and arms; sized to fit " -"even the strangest of bodies." +"An all-encompassing massive black helmet that covers your entire face and " +"neck, providing excellent protection from all sorts of damage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "dragonhide backpack" -msgid_plural "dragonhide backpacks" +msgid "XL leg ammo pouch" +msgid_plural "XL leg ammo pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dragonhide backpack +#. ~ Description for XL leg ammo pouch #: lang/json/ARMOR_from_json.py msgid "" -"A custom-built backpack. Made of very durable dragon leather and carefully " -"crafted to hold as much stuff as possible." +"An XL fabric ammo pouch that can be strapped to your leg; capable of holding" +" two magazines close at hand." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "XL dragonhide backpack" -msgid_plural "XL dragonhide backpacks" +msgid "crew jumpsuit" +msgid_plural "crew jumpsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for crew jumpsuit #: lang/json/ARMOR_from_json.py -msgid "belt of strength +2" -msgid_plural "belts of strength +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A lightweight cloth jumpsuit adorned with the faded corporate regalia of " +"some freight hauling association or another. This one is a standard design " +"favored by spacers, with ample, easy access pockets." +msgstr "" #: lang/json/ARMOR_from_json.py -msgid "belt of haste" -msgid_plural "belts of haste" +msgid "communications cap" +msgid_plural "communications caps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for communications cap #: lang/json/ARMOR_from_json.py -msgid "wizard hat" -msgid_plural "wizard hats" +msgid "" +"A padded cotton cap built around an augmented reality headset. During " +"normal operation it would provide visual information about a ship subsystems" +" and a communications link with the rest of the crew, but severed from a " +"spaceship, only their hearing protection function retains any utility." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "HERC rig" +msgid_plural "HERC rigs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wizard hat +#. ~ Description for HERC rig #: lang/json/ARMOR_from_json.py msgid "" -"A blue pointed hat with stars stitched into it. Wearing it increases your " -"maximum mana." +"A lightweight steel-reinforced tool carrier. Keeps your tools safe and " +"about in zero-g, Mars, the bottom of the Pacific, or other generally " +"inhospitable environments. It has several deep pockets, and two mounting " +"points for pressurized canisters or other large magazines." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Cloak of Morthylla the Lamia" -msgid_plural "Cloaks of Morthylla the Lamia" +msgid "cecalia wetsuit" +msgid_plural "cecalia wetsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cloak of Morthylla the Lamia +#. ~ Description for cecalia wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"This cloak seems to absorb light except for the pinpricks of stars that move" -" across its surface." +"A wetsuit designed for the Octopus Uplifts known as Cecalia. This is the " +"explorer suit with no head or tentacle protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "pair of wolfshead cufflinks" -msgid_plural "pairs of wolfshead cufflinks" +msgid "combat wetsuit" +msgid_plural "combat wetsuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of wolfshead cufflinks +#. ~ Description for combat wetsuit #: lang/json/ARMOR_from_json.py msgid "" -"A pair of silver cufflinks with a wolf's head engraved into them. Each " -"cufflink has a bright ruby eye and pearl teeth. They appear to be growling." -" There is an inscription, 'When the moon shines. I become alive.'" +"The combat version of the Cecalia wetsuit; made of neoprene and Kevlar, it " +"will provide some level of protection for deep dwellers." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "technomancer's toolbelt" -msgid_plural "technomancer's toolbelts" +msgid "nanomesh vest" +msgid_plural "nanomesh vests" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for technomancer's toolbelt +#. ~ Description for nanomesh vest #: lang/json/ARMOR_from_json.py msgid "" -"A custom-built leather utility belt that instantly creates any tool that you" -" reach for. Activate to sheathe/draw a weapon." +"A lightweight nanomesh vest designed to face down many of the perils of " +"space travel. These vests are mass produced and often stacked in starship " +"lockers." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "seven league boots" -msgid_plural "pairs of seven league boots" +msgid "vacuum cast cuirass" +msgid_plural "vacuum cast cuirasses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for seven league boots -#. ~ Description for boots of haste +#. ~ Description for vacuum cast cuirass #: lang/json/ARMOR_from_json.py 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." +"This piece of armor harkens back to renaissance designs. It differs in that" +" it is cast as a single piece in deep space installations where conditions " +"can be controlled absolutely." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "boots of haste" -msgid_plural "pairs of boots of haste" +msgid "carbide raider's helmet" +msgid_plural "carbide raider's helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for carbide raider's helmet #: lang/json/ARMOR_from_json.py -msgid "freerunner's boots" -msgid_plural "freerunner's boots" +msgid "" +"This helmet is designed for the individual that is worried about catching " +"heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic " +"environmental protection features, but it just might stop even the largest " +"of ballistic rounds." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "UICAS Point of Impact helmet" +msgid_plural "UICAS Point of Impact helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for UICAS Point of Impact helmet #: lang/json/ARMOR_from_json.py msgid "" -"Rugged yet extremely comfortable and well fitting boots of worn leather and " -"steel, seeming a bit more flexible and breathable than typical for their " -"materials. The enchantment they bear helps guide their wearer in their " -"motions, to make movement around and over obstacles much more fluid and " -"efficient." +"A lightweight black helmet that provides excellent protection from all sorts" +" of damage, unless it's airborne. UICAS makes the point of designing all " +"headgear whenever possible with clear faceplates, in order to provide a " +"human touch to all interactions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "boots of grounding" -msgid_plural "pairs of boots of grounding" +msgid "cold resistance cream" +msgid_plural "cold resistance creams" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for boots of grounding +#. ~ Description for cold resistance cream #: lang/json/ARMOR_from_json.py 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 thick layer of something that smells worse than walrus fat. But it keeps " +"you warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Fish" -msgid_plural "Wildshape Cloaks: Fish" +msgid "heat retention xtreme cream" +msgid_plural "heat retention xtreme creams" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wildshape Cloak: Fish +#. ~ Description for heat retention xtreme cream #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that shimmers like fresh water under a warm sun. It can be " -"worn to morph your body to a form that is excellent for swimming, but ill-" -"suited for combat." +"The last word in cold snap protection designed to give short term protection" +" in the event of a suit breach in vacuum." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Bear" -msgid_plural "Wildshape Cloak: Bears" +msgid "titanium watch" +msgid_plural "titanium watches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wildshape Cloak: Bear +#. ~ Description for titanium watch #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that smells of the forest. It can be worn to morph your " -"body to a form that is strong and resilient in melee combat. However, you " -"feel as if you would lose a part of yourself." +"A thick, masculine watch made out of titanium. It is durable, light-weight " +"and water-resistant, an excellent watch to have in a hostile environment." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "Wildshape Cloak: Deer" -msgid_plural "Wildshape Cloak: Deers" +msgid "titanium ring" +msgid_plural "titanium rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wildshape Cloak: Deer +#. ~ Description for titanium ring #: lang/json/ARMOR_from_json.py msgid "" -"A magical cloak that feels soft to the touch. It can be worn to morph your " -"body to a form well-suited to escaping difficult situations. However, it " -"places a great strain on your body." +"A thick, masculine ring made out of titanium. Made in a variety of styles " +"and finishes, they're valued for their durability." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "enchanted parabolan wool blouse" -msgid_plural "enchanted parabolan wool blouse" +msgid "hazardous environment suit" +msgid_plural "hazardous environment suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for hazardous environment suit #: lang/json/ARMOR_from_json.py msgid "" -"A loose iridescent blouse in a style most often associated with pirates and " -"renfaires. It shimmers as you look at it. Made of parabolan wool, it " -"sometimes dimly shows reflections of things here and not. This particular " -"one has piratical flairs and glitters with enchantment." +"Developed for the exploration of alien planes, the lightweight, orange-black" +" HEV suit covers everything below the neck. While it possesses only modest " +"physical protection, it provides excellent protection from most " +"environmental hazards. A hatch in the front opens to provide a small amount" +" of storage." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "enchanted parabolan wool breeches" -msgid_plural "enchanted parabolan wool breeches" +msgid "psychrophile handling gloves" +msgid_plural "psychrophile handling gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" -"A well-made pair of old-fashioned pants, made of iridescent material. " -"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " -"parabolan wool, it sometimes dimly shows reflections of things here and not." -" This particular one has piratical flairs and gliters with enchantment." +"These gloves are designed for handling organisms that live in extremely cold" +" temperatures. They can also be used to freeze your foes to death." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "parabolan wool blouse" -msgid_plural "parabolan wool blouses" +msgid "CRIT Engineering Suit" +msgid_plural "CRIT Engineering Suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for parabolan wool blouse +#. ~ Description for CRIT Engineering Suit #: lang/json/ARMOR_from_json.py msgid "" -"A loose iridescent blouse in a style most often associated with pirates and " -"renfaires. It shimmers as you look at it. Made of parabolan wool, it " -"sometimes dimly shows reflections of things here and not." +"An airtight, flexible suit of woven composite fibers complete with segmented" +" plates of armor. A complex system digitizes items in an individual pocket " +"universe for storage while built in joint-torsion ratchets generate the " +"necessary energy required to power the interface." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "parabolan wool breeches" -msgid_plural "parabolan wool breeches" +msgid "CRIT face mask" +msgid_plural "CRIT face masks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for CRIT face mask #: lang/json/ARMOR_from_json.py msgid "" -"A well-made pair of old-fashioned pants, made of iridescent material. " -"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " -"parabolan wool, it sometimes dimly shows reflections of things here and not." +"A standard issue face mask, lined with Kevlar for extra protection. A few " +"filters provide decent environmental safety, but it was not intended for " +"extended use. It has a basic integrated HUD." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py -msgid "pair of magical armored stone gauntlets" -msgid_plural "pairs of magical armored stone gauntlets" +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT boots" +msgid_plural "pairs of CRIT boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of magical armored stone gauntlets -#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py -msgid "A magical flexible stonelike substance for protection and attack." +#. ~ Description for pair of CRIT boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of standard-issue boots. Next-gen gels keep feet comfortable and " +"hygienic during long-term missions while absorbing shock and heat from " +"outside-sources. Superalloy mesh and rubber offer quite a bit of chemical " +"protection as well. Decently heavy though" msgstr "" #: lang/json/ARMOR_from_json.py -msgid "magic lamp" -msgid_plural "magic lamps" +msgid "pair of CRIT LA boots" +msgid_plural "pairs of CRIT LA boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic lamp +#. ~ Description for pair of CRIT LA boots #: lang/json/ARMOR_from_json.py -msgid "A magical light source that will light up a small area." +msgid "" +"A pair of skeletonized boots. Based off of C.R.I.T boots, the light-armor " +"variant was created for missions in warmer climates. The LA boots keep most" +" of the old features of the standard issue boots but trade in protection for" +" easier movement." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "magic light" -msgid_plural "magic lights" +msgid "pair of CRIT fingertip-less gloves" +msgid_plural "pairs of CRIT fingertip-less gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic light +#. ~ Description for pair of CRIT fingertip-less gloves #: lang/json/ARMOR_from_json.py -msgid "A small magical light that you can read by." +msgid "" +"A pair of standard-issue gloves. Made with superalloy mesh for those with " +"gene-modding and/or mutations while still allowing greater manipulation of " +"items and moderate protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "large shield of magical ice" -msgid_plural "large shields of magical ice" +msgid "pair of CRIT fingertip-less liners" +msgid_plural "pairs of CRIT fingertip-less liners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large shield of magical ice +#. ~ Description for pair of CRIT fingertip-less liners #: lang/json/ARMOR_from_json.py -msgid "A lightweight but tough shield crafted entirely of magical ice." +msgid "" +"A pair of standard-issue glove liners. Made with neoprene and rubber mesh " +"for warmth and fingertip-less for those with gene-modding and/or mutations " +"while still allowing greater manipulation of items and moderate protection." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "slick icy coatings" -msgid_plural "slick icy coatings" +msgid "CRIT backpack" +msgid_plural "CRIT backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for CRIT backpack #: lang/json/ARMOR_from_json.py 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 standard-issue pack. Based on the MOLLE backpack's design, this smaller " +"pack strikes a fine balance between storage space and encumbrance and allows" +" a larger weapon to be holstered, drawing and holstering is still rather " +"awkward even with the magnetized clips, but practice helps." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "flesh pouch" -msgid_plural "flesh pouches" +msgid "CRIT chestrig" +msgid_plural "CRIT chestrigs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for flesh pouch +#. ~ Description for CRIT chestrig #: lang/json/ARMOR_from_json.py 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 slightly modified chestrig, has mesh and MOLLE loops for gear and slots " +"with light-armor padding." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "obfuscating aura" -msgid_plural "obfuscating auras" +msgid "pair of CRIT leg guards" +msgid_plural "pairs of CRIT leg guards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for obfuscating aura +#. ~ Description for pair of CRIT leg guards #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing, invisible layer of magic distorts light around your " -"body. Allows you to dodge two extra attacks in a given turn." +"Leg armor for those who fight. Simple design and durable material allows " +"for easy movement and the padding keeps the legs safe and warm in colder " +"conditions." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "acid resistance aura" -msgid_plural "acid resistance auras" +msgid "pair of CRIT arm guards" +msgid_plural "pairs of CRIT arm guards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for acid resistance aura -#. ~ Description for greater acid resistance aura +#. ~ Description for pair of CRIT arm guards #: lang/json/ARMOR_from_json.py -msgid "An all-encompassing, invisible layer of protection against acid." +msgid "" +"A pair of arm guards made from superalloy molded upon neoprene, and then " +"insulated with rubber. They are sturdy and will block attacks, but they are" +" ridiculously heavy." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "greater acid resistance aura" -msgid_plural "greater acid resistance auras" +msgid "CRIT infantry duster" +msgid_plural "CRIT infantry dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for CRIT infantry duster #: lang/json/ARMOR_from_json.py -msgid "frost armor" -msgid_plural "frost armor" +msgid "" +"A thick full-length duster coat with rubber insulation. More than mildly " +"encumbering, but rather protective against any anti-infantry electrical " +"discharges from the robots. Has several pockets for storage." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "CRIT Armored Anomaly Suit" +msgid_plural "CRIT Armored Anomaly Suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for CRIT Armored Anomaly Suit #: lang/json/ARMOR_from_json.py -msgid "A thin layer of magical ice, covering the entire body." +msgid "" +"A relatively simple suit of armor. A suit of woven composite fibers " +"combined with a cleansuit core and strategically placed segmented Kevlar " +"plates keep the suit light-weight and the one wearing it alive while " +"offering superb resistance to the elements and ambient radiation." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "stoneskin coating" -msgid_plural "stoneskin coating" +msgid "CRIT drop leg pouch" +msgid_plural "CRIT drop leg pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for CRIT drop leg pouch #: lang/json/ARMOR_from_json.py msgid "" -"A thin layer of shifting, almost fluid living rock, covering the entire " -"body." +"A set of pouches that can be worn on the thighs using buckled straps. This " +"variety is more compact and is favored by the C.R.I.T for its ease of use." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "overcharge burn" -msgid_plural "overcharge burns" +msgid "CRIT Enforcer armor assembly" +msgid_plural "CRIT Enforcer armor assemblies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for overcharge burn +#. ~ Description for CRIT Enforcer armor assembly #: lang/json/ARMOR_from_json.py -msgid "Ouch, this really smarts! It'll go away soon, maybe?" +msgid "" +"A series of plates, guards and buckles which assemble into a suit of sturdy " +"body-armor which usually goes over other armor. Overlapping steel plates on" +" top of Kevlar plates cover vast expanses as the armor juts off in places so" +" it can deflect attacks. Built with the idea that comfort is less important" +" than safety, this heavy suit is difficult to move about in but highly " +"protective. Various adjustable connectors such as straps and clips hold it " +"together." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "aura of protection" -msgid_plural "auras of protection" +msgid "pair of CRIT Enforcer docks" +msgid_plural "pairs of CRIT Enforcer docks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for aura of protection +#. ~ Description for pair of CRIT Enforcer docks #: lang/json/ARMOR_from_json.py msgid "" -"An all-encompassing, invisible layer of magical aura that protects you from " -"the environment." +"CRIT Enforcer docks. Metal plates vaguely molded into the shape of " +"oversized feet which clamp down onto your own footwear keep your feet out of" +" harms way. It looks terrible and feels clunky unlike most of C.R.I.T's " +"designs, but they do seem to be worth using if you were to be in the middle " +"of a war zone." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "aura of repelling arc" -msgid_plural "auras of repelling arc" +msgid "CRIT Soldier Suit" +msgid_plural "CRIT Soldier Suits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for aura of repelling arc +#. ~ Description for CRIT Soldier Suit #: lang/json/ARMOR_from_json.py msgid "" -"An invisible aura that strikes melee attackers with arcs of electricity." +"A suit of modern body-armor. Strategically placed superalloy plates keep " +"the suit's weight minimal while Kevlar plates other areas and a lining of " +"soft neoprene pads areas for extra comfort. Most importantly, this can be " +"worn comfortably under other armor." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "feral aura" -msgid_plural "feral auras" +msgid "CRIT Lone Wolf Series Armor" +msgid_plural "CRIT Lone Wolf Series Armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for feral aura +#. ~ Description for CRIT Lone Wolf Series Armor #: lang/json/ARMOR_from_json.py msgid "" -"The manifestation of your rage. It won't disappear until you calm down." +"A matte black suit of outdated and bulky looking plate armor fitted onto a " +"soft Kevlar body-suit. Retrofitted with new armor improvements, this heavy " +"armor will definitely protect you from practically anything. Just make sure" +" you can actually walk with it on though." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "acid aura" -msgid_plural "acid auras" +msgid "CRIT blouse" +msgid_plural "CRIT blouses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for acid aura +#. ~ Description for CRIT blouse #: lang/json/ARMOR_from_json.py msgid "" -"An aura of thin acid, swirling around your body ready to corrode when struck" -" or while striking." +"A standard-issue military jacket. Durable, lightweight, and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather " +"while a sleek design keeps it from being too flashy. A zipper at the back " +"and front allows for quick donning and doffing." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "werewolf aura" -msgid_plural "werewolf auras" +msgid "CRIT trousers" +msgid_plural "CRIT trousers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for werewolf aura +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py -msgid "You have become the werewolf. Boys becoming men, men becoming wolves." +msgid "" +"A pair of standard-issue cargo pants. Durable, lightweight and has ample " +"storage. Super-flex neoprene keeps one warm in moderately cold weather." msgstr "" -#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py -msgid "Black Dragon Shell" -msgid_plural "Black Dragon Shells" +#: lang/json/ARMOR_from_json.py +msgid "CRIT pants" +msgid_plural "CRIT pants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Black Dragon Shell +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" -"An aura of black and green draconic energy, swirling around your body " -"protecting you and punishing those who strike you." +"A pair of dress pants. A minimalist sleek design makes the pants " +"lightweight and it offers ok pockets. Super-flex neoprene keeps one warm in" +" moderately cold weather." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "spiritual armor" -msgid_plural "spiritual armor" +msgid "CRIT helmet liner" +msgid_plural "CRIT helmet liners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for CRIT helmet liner #: lang/json/ARMOR_from_json.py -msgid "A summoned medieval armor. It glows softly and looks sturdy." +msgid "A standard-issue helmet liner. Keeps the noggin warm." msgstr "" #: lang/json/ARMOR_from_json.py -msgid "auroral shell" -msgid_plural "auroral shell" +msgid "pair of CRIT shoes" +msgid_plural "pairs of CRIT dress shoes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for pair of CRIT shoes #: lang/json/ARMOR_from_json.py -msgid "A sturdy shell that wraps your body, gaining a sturdy defense." +msgid "A sleek pair of dress shoes. Fancy but easy on the eyes." msgstr "" -#: lang/json/BATTERY_from_json.py -msgid "test battery" -msgid_plural "test batteries" +#: lang/json/ARMOR_from_json.py +msgid "pair of CRIT rec gloves" +msgid_plural "pairs of CRIT rec gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for test battery -#: lang/json/BATTERY_from_json.py +#. ~ Description for pair of CRIT rec gloves +#: lang/json/ARMOR_from_json.py msgid "" -"This is a testing item for the BATTERY item type. If you found one in game," -" it's a bug." +"A pair of standard-issue rec gloves. Skin-hugging and sleek, these gloves " +"are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract bionic module" -msgid_plural "abstract bionic modules" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract bionic module (npc usable)" -msgid_plural "abstract bionic modules (npc usable)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#. ~ Description for CRIT web belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A standard-issue belt. Keeps your trousers up and your tools on your hip." +msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "abstract faulty bionic module" -msgid_plural "abstract faulty bionic modules" +#: lang/json/ARMOR_from_json.py +msgid "CRIT rec duster" +msgid_plural "CRIT rec dusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for abstract faulty bionic module -#: lang/json/BIONIC_ITEM_from_json.py -msgid "This CBM is broken beyond repair, you can't do anything with it." +#. ~ Description for CRIT rec duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A waterproofed full-length duster coat. Made with neoprene, comfort and " +"functionality meet together to form a fancy but sleek contemporary design. " +"It has several pockets for storage." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Adrenaline Pump CBM" -msgid_plural "Adrenaline Pump CBMs" +#: lang/json/ARMOR_from_json.py +msgid "CRIT rec hat" +msgid_plural "CRIT rec hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Adrenaline Pump CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for CRIT rec hat +#: lang/json/ARMOR_from_json.py msgid "" -"A stimulator system that is implanted alongside the adrenal glands, allowing" -" the user to trigger their body's adrenaline response at the cost of some " -"bionic power." +"Functionality meets fashion in this waterproofed CRIT standard issue rec " +"cover. Thick enough to provide warmth in colder weather, this hat shares " +"the same sleek design of most of C.R.I.T's gear." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Active Defense System CBM" -msgid_plural "Active Defense System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "plant fiber tunic" +msgid_plural "plant fiber tunics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Active Defense System CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"This bionic projects a thin forcefield around the user's body. Anything " -"attempting to penetrate this field has a chance of being deflected at the " -"cost of energy, reducing their ability to deal damage. Bullets will be " -"deflected more than swords and those in turn more than massive objects." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Alarm System CBM" -msgid_plural "Alarm System CBMs" -msgstr[0] "КБМ: сигналізація" -msgstr[1] "КБМ: сигналізація" -msgstr[2] "КБМ: сигналізація" -msgstr[3] "КБМ: сигналізація" - -#. ~ Description for Alarm System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for plant fiber tunic +#: lang/json/ARMOR_from_json.py msgid "" -"A motion-detecting alarm system will notice almost all movement within a " -"fifteen-foot radius, and will silently alert the user. This is very useful " -"during sleep, or if the user suspects a cloaked pursuer." +"A loose garment cobbled together from a collection of plant bundles and " +"wound together by makeshift cordage" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "plant fiber bracelet" +msgid_plural "plant fiber bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Arms Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for plant fiber bracelet +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"A bracelet wound together by makeshift cordage. Has some cool looking " +"pebbles." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Protective Lenses CBM" -msgid_plural "Protective Lenses CBMs" +#: lang/json/ARMOR_from_json.py +msgid "CRIT canteen" +msgid_plural "CRIT canteens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Protective Lenses CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for CRIT canteen +#: lang/json/ARMOR_from_json.py msgid "" -"A bionic package that seals the user's eye sockets with highly protective " -"mirrored lenses and re-routes their tear ducts to their mouth. When the " -"user cries, they must spit out or swallow their tears." +"A durable steel canteen that can heat up food with built in atomic heating " +"elements." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "salvaged new order armor" +msgid_plural "salvaged new order armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Head Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for salvaged new order armor +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." +"A suit of armor belonging to a human-sized soldier of the New Order. Its " +"terribly damaged from some combination of the combat its seen, the process " +"needed to pry it off its wearer, and some sort of dead man's switch on the " +"elements that actually power the thing and make it easy to wear." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "new order shield" +msgid_plural "new order shields" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Legs Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for new order shield +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." +"A simple shield made of some sort of polycarbonates, used extensively by the" +" Vigilants, the gendarmerie of the New Order. Alongside their infamous " +"shock batons, this is an essential tool in 'keeping the peace'." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" +#: lang/json/ARMOR_from_json.py +msgid "new order battle shield" +msgid_plural "new order battle shields" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Torso Alloy Plating CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for new order battle shield +#: lang/json/ARMOR_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." +"A well forged shield made of steel, emblazoned with what appears to be a " +"highly stylized depiction of a sword piercing a star." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Battery System CBM" -msgid_plural "Battery System CBMs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#. ~ Description for large quiver +#: lang/json/ARMOR_from_json.py +msgid "" +"A large leather quiver trimmed with metal, worn on the back, that can hold " +"60 arrows. Historically used by horse archers, rather than foot archers, " +"but sometimes horses are a little hard to come by in this day and age. " +"Activate to store arrows." +msgstr "" -#. ~ Description for Battery System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for bra +#: lang/json/ARMOR_from_json.py msgid "" -"A battery draining attachment to make use of the energy contained in normal," -" everyday batteries." +"A simple bra. For protecting those bits you don't want creatures to look " +"at." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Monomolecular Blade CBM" -msgid_plural "Monomolecular Blade CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Ixythyug the Destroyer's soul" +msgid_plural "Ixythyug the Destroyer's souls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Monomolecular Blade CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A deadly foot-long blade made of advanced material that is installed inside " -"the forearm, capable of being extended through the back of the user's wrist " -"at the cost of a small amount of power. Though exceptionally sharp, it will" -" prevent the user from holding anything else while extended." +#. ~ Description for Ixythyug the Destroyer's soul +#: lang/json/ARMOR_from_json.py +msgid "RIP AND TEAR" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Shotgun Arm CBM" -msgid_plural "Shotgun Arm CBMs" +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Force Shield" +msgid_plural "Force Shield" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Shotgun Arm CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Force Shield +#: lang/json/ARMOR_from_json.py msgid "" -"A concealed, single shot 12 gauge shotgun that is implanted inside the left " -"forearm. Perfect in a pinch." +"A shield of pure force that protects you from most types of physical damage." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Blood Analysis CBM" -msgid_plural "Blood Analysis CBMs" +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Soul Burn" +msgid_plural "Soul Burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Blood Analysis CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Soul Burn +#: lang/json/ARMOR_from_json.py msgid "" -"Small sensors that are implanted in the user's heart, allowing them to " -"analyze their blood. This will detect many illnesses, drugs, and other " -"conditions." +"A little of your soul has been burned away, leaving you in a weakened state." +" The soul heals quickly, so rest for now." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Blood Filter CBM" -msgid_plural "Blood Filter CBMs" +#: lang/json/ARMOR_from_json.py +msgid "copper infusion bracelet" +msgid_plural "copper infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Blood Filter CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for copper infusion bracelet +#. ~ Description for silver infusion bracelet +#: lang/json/ARMOR_from_json.py msgid "" -"A filtration system that is installed in the heart and can actively filter " -"out chemical impurities, primarily drugs, with limited impact on viruses. " -"Note that it is not a targeted filter; ALL drugs in the system will be " -"affected." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Cable Charger System CBM" -msgid_plural "Cable Charger System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "silver infusion bracelet" +msgid_plural "silver infusion bracelets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cable Charger System CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A complex port that is mounted above the hip. While active, it will " -"recharge bionic power when connected to a battery via jumper cable." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Subdermal Carbon Filament CBM" -msgid_plural "Subdermal Carbon Filament CBMs" +#: lang/json/ARMOR_from_json.py +msgid "copper circlet" +msgid_plural "copper circlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Subdermal Carbon Filament CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for copper circlet +#: lang/json/ARMOR_from_json.py msgid "" -"A thin armor made of carbon nanotubes, implanted just beneath the skin. " -"This reduces bashing damage by 2 and cutting damage by 4." +"A wooden band with copper trimmings to be worn on the head. Touching your " +"temples with it on makes you feel very calm." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Chain Lightning CBM" -msgid_plural "Chain Lightning CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin arm guards" +msgid_plural "pairs of demon chitin arm guards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Chain Lightning CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of demon chitin arm guards +#: lang/json/ARMOR_from_json.py msgid "" -"A chain lightning generator that emits a blast of lightning at a target, " -"leaving a trail of lightning in its wake and jumping to additional targets " -"within 4 tiles of the previous target." +"A pair of arm guards crafted from the carefully cleaned and pruned red " +"exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Bionic Claws CBM" -msgid_plural "Bionic Claws CBMs" +#: lang/json/ARMOR_from_json.py +msgid "demon chitin armor" +msgid_plural "demon chitin armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Bionic Claws CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for demon chitin armor +#: lang/json/ARMOR_from_json.py msgid "" -"Vicious, retractable claws that are implanted inside the user's fingers. " -"These do considerable cutting damage, but prevent the user from holding " -"anything else while extended." +"Leg and body armor crafted from the carefully cleaned and pruned red " +"exoskeletons of demon spiders. Fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Internal Climate Control CBM" -msgid_plural "Internal Climate Control CBMs" +#: lang/json/ARMOR_from_json.py +msgid "demon chitin helmet" +msgid_plural "demon chitin helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Internal Climate Control CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for demon chitin helmet +#: lang/json/ARMOR_from_json.py msgid "" -"A network of thermal piping which eases the effects of high and low ambient " -"temperatures once activated." +"A helmet crafted from the carefully cleaned and pruned red exoskeletons of " +"demon spiders. Covers the entire head; fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Cloaking System CBM" -msgid_plural "Cloaking System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin gauntlets" +msgid_plural "pairs of demon chitin gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cloaking System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of demon chitin gauntlets +#: lang/json/ARMOR_from_json.py msgid "" -"This high-power system uses a set of cameras and LEDs to make the user blend" -" into their surroundings, rendering them fully invisible to eyes and optical" -" sensors. However, this doesn't prevent detection from other means such as " -"infrared, sonar, etc." +"Gauntlets crafted from the carefully cleaned and pruned red exoskeletons of " +"demon spiders. Fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Close Quarters Battle CBM" -msgid_plural "Close Quarters Battle CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of demon chitin boots" +msgid_plural "pairs of demon chitin boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Close Quarters Battle CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of demon chitin boots +#: lang/json/ARMOR_from_json.py msgid "" -"A set of bionic processors and databanks, loaded with martial arts combat " -"programs. Whilst active, the CQB module will improve the user's hand-to-" -"hand combat skills, but prevents them from improving them through combat " -"experience." +"Boots crafted from carefully cleaned and pruned red exoskeletons of demon " +"spiders. Fire-resistant and very durable." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Wired Reflexes CBM" -msgid_plural "Wired Reflexes CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonscale boots" +msgid_plural "pairs of black dragonscale boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wired Reflexes CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of black dragonscale boots +#: lang/json/ARMOR_from_json.py msgid "" -"Bionic nerve stimulators that greatly enhance reaction times, granting a +2 " -"bonus to dexterity." +"Boots made of black incredibly durable dragonscale. Very protective, and " +"surprisingly light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Expanded Digestive System CBM" -msgid_plural "Expanded Digestive System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonhide boots" +msgid_plural "pairs of black dragonhide boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Expanded Digestive System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of black dragonhide boots +#: lang/json/ARMOR_from_json.py msgid "" -"This module contains three synthetic stomachs and industrial-grade " -"intestines. Not only will these extract much more nutrition from food, but " -"also increase the user's resistance to foodborne illness, and occasionally " -"allow the digestion of rotten food." +"Boots made of very durable black dragonhide. Very protective, and " +"surprisingly light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Enhanced Hearing CBM" -msgid_plural "Enhanced Hearing CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale helmet" +msgid_plural "black dragonscale helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Enhanced Hearing CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Use action msg for black dragonscale helmet. +#. ~ Use action msg for XL black dragonscale helmet. +#. ~ Use action msg for riot helmet. +#. ~ Use action msg for motorcycle helmet. +#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py +msgid "You raise your visor." +msgstr "" + +#. ~ Description for black dragonscale helmet +#: lang/json/ARMOR_from_json.py msgid "" -"While this bionic is active, the user's hearing will be drastically " -"improved, allowing them to hear ten times better than the average person. " -"Additionally, high-intensity sounds will be automatically dampened before " -"they can damage their hearing." +"A helmet made from black incredibly durable dragonscale, held together with " +"black dragonhide. It comes equipped with a full face visor with only a thin" +" slit to see out of. Activate to raise the visor." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Directional EMP CBM" -msgid_plural "Directional EMP CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale helmet (raised visor)" +msgid_plural "black dragonscale helmets (raised visor)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Directional EMP CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Use action msg for black dragonscale helmet (raised visor). +#. ~ Use action msg for XL black dragonscale helmet (raised visor). +#. ~ Use action msg for riot helmet (raised visor). +#. ~ Use action msg for motorcycle helmet (raised visor). +#: lang/json/ARMOR_from_json.py lang/json/TOOL_ARMOR_from_json.py +msgid "You put down your visor." +msgstr "" + +#. ~ Description for black dragonscale helmet (raised visor) +#: lang/json/ARMOR_from_json.py msgid "" -"Small parabolic EMP field generators that are mounted in the palm of the " -"user's right hand. These can be used to instantly fire a wide, but short-" -"ranged blast which will disable electronics and robots." +"A helmet made from incredibly durable black dragonscale, held together with " +"black dragonhide. The visor is raised." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "EMP Projector CBM" -msgid_plural "EMP Projector CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonhide helmet" +msgid_plural "black dragonhide helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for EMP Projector CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for black dragonhide helmet +#: lang/json/ARMOR_from_json.py msgid "" -"A ranged EMP generator system that is implanted in the user's right arm and " -"hand. The system fires precise, single-target pulses that require time to " -"aim. Extremely effective against electronic targets but mostly useless " -"otherwise." +"A helmet made from very durable black dragonhide. It protects your head " +"well, but doesn't cover your face." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Ethanol Burner CBM" -msgid_plural "Ethanol Burner CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonscale armor" +msgid_plural "black dragonscale armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ethanol Burner CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for black dragonscale armor +#: lang/json/ARMOR_from_json.py msgid "" -"A reactor that burns alcohol as fuel in an extremely efficient reaction. It" -" can store up to 500ml and accepts ethanol, methanol and denatured alcohol " -"as fuel." +"A full suit of incredibly durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Aero-Evaporator CBM" -msgid_plural "Aero-Evaporator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "black dragonhide armor" +msgid_plural "black dragonhide armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Aero-Evaporator CBM -#. ~ Description for Aero-Evaporator -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for black dragonhide armor +#: lang/json/ARMOR_from_json.py msgid "" -"This unit draws moisture from the surrounding air, which slowly trickles " -"directly into your blood stream. It may fail in very dry environments." +"A full suit of very durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Diamond Cornea CBM" -msgid_plural "Diamond Cornea CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonscale gauntlets" +msgid_plural "pairs of black dragonscale gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Diamond Cornea CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of black dragonscale gauntlets +#: lang/json/ARMOR_from_json.py msgid "" -"A set of diamond corneas which greatly enhance the user's vision, granting a" -" +2 bonus to perception." +"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " +"that covers your hands." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Telescopic Eyes CBM" -msgid_plural "Telescopic Eyes CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of black dragonhide gloves" +msgid_plural "pairs of black dragonhide gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Telescopic Eyes CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of black dragonhide gloves +#: lang/json/ARMOR_from_json.py msgid "" -"An array of high-powered, auto-focusing lenses that replaces much of the " -"material in the inner eye. This fixes any vision problems and allows for an" -" increased vision range akin to binoculars." +"A pair of gloves made of very durable black dragonhide, modified to be easy " +"to wear while providing maximum protection under extreme conditions." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Facial Distortion CBM" -msgid_plural "Facial Distortion CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonscale boots" +msgid_plural "pairs of XL black dragonscale boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Facial Distortion CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of XL black dragonscale boots +#: lang/json/ARMOR_from_json.py msgid "" -"Through controlled application of electrochemical impulses, this bionic " -"module lets the user alter their facial structure so as to subtly affect the" -" reactions of others. This grants a bonus to all social interactions." +"Massive boots made of incredibly durable black dragonscale, modified to fit " +"even the strangest of bodies. Very protective, and surprisingly light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Dielectric Capacitance System CBM" -msgid_plural "Dielectric Capacitance System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonhide boots" +msgid_plural "pairs of XL black dragonhide boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dielectric Capacitance System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of XL black dragonhide boots +#: lang/json/ARMOR_from_json.py msgid "" -"A network of miniature piezoelectric capacitors, implanted throughout the " -"body to protect from external electrical discharge." +"Massive boots made of very durable black dragonhide, modified to fit even " +"the strangest of bodies. Very protective, and surprisingly light." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Fingerhack CBM" -msgid_plural "Fingerhack CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonscale gauntlets" +msgid_plural "pairs of XL black dragonscale gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Fingerhack CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of XL black dragonscale gauntlets +#: lang/json/ARMOR_from_json.py msgid "" -"A miniature electrohack, surgically embedded in a finger of the right hand." -" This is an all-purpose hacking unit used to override control panels and " -"the like, but not computers. Computer proficiency is important, and a " -"failed use may cause damage." +"A pair of heavy-duty gauntlets made of incredibly durable black dragonscale " +"that covers your hands, or whatever you use as hands." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Flashbang Generator CBM" -msgid_plural "Flashbang Generator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of XL black dragonhide gloves" +msgid_plural "pairs of XL black dragonhide gloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Flashbang Generator CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of XL black dragonhide gloves +#: lang/json/ARMOR_from_json.py msgid "" -"A combination of LEDs and speakers that create a flash and sound comparable " -"to a flashbang grenade, deafening and blinding nearby enemies." +"A pair of gloves made of very durable black dragonhide, modified to be easy " +"to wear while providing maximum protection under extreme conditions. Sized " +"to fit even the strangest of anatomy." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Cranial Flashlight CBM" -msgid_plural "Cranial Flashlight CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale helmet" +msgid_plural "XL black dragonscale helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cranial Flashlight CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "A small, but powerful LED flashlight that is mounted between the eyes." +#. ~ Description for XL black dragonscale helmet +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive helmet made from incredibly durable black dragonscale, held " +"together with black dragonhide. It comes equipped with a full face visor " +"you can raise and is large enough to fit even the strangest of heads." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "LED Tattoo" -msgid_plural "LED Tattoos" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale helmet (raised visor)" +msgid_plural "XL black dragonscale helmets (raised visor)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for LED Tattoo -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for XL black dragonscale helmet (raised visor) +#: lang/json/ARMOR_from_json.py msgid "" -"An LED display implanted beneath the epidermis that can display patterns or " -"pictures through the skin. When active it glows dimly, providing a very " -"small amount of light." +"A massive helmet made from incredibly durable black dragonscale, held " +"together with black dragonhide. It is large enough to fit even the " +"strangest of heads. The visor is raised" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Integrated Dosimeter CBM" -msgid_plural "Integrated Dosimeter CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonhide helmet" +msgid_plural "XL black dragonhide helmets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Integrated Dosimeter CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for XL black dragonhide helmet +#: lang/json/ARMOR_from_json.py msgid "" -"Small radiation sensors that are implanted throughout the body, allowing the" -" user to analyze their level of absorbed radiation. They will also alert " -"the user whenever exposed to environmental radiation." +"A massive helmet made from very durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Respirator CBM" -msgid_plural "Respirator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonscale armor" +msgid_plural "XL black dragonscale armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Respirator CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for XL black dragonscale armor +#: lang/json/ARMOR_from_json.py msgid "" -"A complex respiration augmentation system that increases the user's maximal " -"oxygen uptake and allows for underwater breathing akin to gills. Will " -"automatically activate if the user is drowning." +"A massive full suit of incredibly durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Terranian Sonar CBM" -msgid_plural "Terranian Sonar CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL black dragonhide armor" +msgid_plural "XL black dragonhide armors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Terranian Sonar CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for XL black dragonhide armor +#: lang/json/ARMOR_from_json.py msgid "" -"Precision sonar equipment, implanted in the feet to allow the detection of " -"below-ground movement, buried traps, and unstable terrain." +"A massive full suit of very durable 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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Heat Drain CBM" -msgid_plural "Heat Drain CBMs" +#: lang/json/ARMOR_from_json.py +msgid "dragonhide backpack" +msgid_plural "dragonhide backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Heat Drain CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for dragonhide backpack +#: lang/json/ARMOR_from_json.py msgid "" -"While fighting unarmed against a warm-blooded opponent, there is a chance " -"that a successful hit will drain body heat, inflicting a small amount of " -"extra damage, and recharging the user's bionic power reserves slightly." +"A custom-built backpack. Made of very durable dragon leather and carefully " +"crafted to hold as much stuff as possible." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Thermal Dissipation CBM" -msgid_plural "Thermal Dissipation CBMs" +#: lang/json/ARMOR_from_json.py +msgid "XL dragonhide backpack" +msgid_plural "XL dragonhide backpacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Thermal Dissipation CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Powerful heatsinks and supermaterials are woven into the user's flesh. " -"While powered, this system will prevent external heat damage up to 2000 " -"degrees Fahrenheit. Note that this does not affect the internal body " -"temperature." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Hydraulic Muscles CBM" -msgid_plural "Hydraulic Muscles CBMs" +#: lang/json/ARMOR_from_json.py +msgid "belt of strength +2" +msgid_plural "belts of strength +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Hydraulic Muscles CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A hydraulic muscle support system that when active, increases strength by " -"20." -msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "belt of haste" +msgid_plural "belts of haste" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Infrared Vision CBM" -msgid_plural "Infrared Vision CBMs" +#: lang/json/ARMOR_from_json.py +msgid "wizard hat" +msgid_plural "wizard hats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Infrared Vision CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for wizard hat +#: lang/json/ARMOR_from_json.py msgid "" -"A bionic module that extends the range of vision into the infrared, allowing" -" the user to see warm-blooded creatures in the dark and through smoke." +"A blue pointed hat with stars stitched into it. Wearing it increases your " +"maximum mana." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Cerebral Booster CBM" -msgid_plural "Cerebral Booster CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Cloak of Morthylla the Lamia" +msgid_plural "Cloaks of Morthylla the Lamia" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cerebral Booster CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Cloak of Morthylla the Lamia +#: lang/json/ARMOR_from_json.py msgid "" -"Bionic coprocessors that are implanted in the brain, granting a +2 bonus to " -"intelligence." +"This cloak seems to absorb light except for the pinpricks of stars that move" +" across its surface." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Finger-Mounted Laser CBM" -msgid_plural "Finger-Mounted Laser CBMs" +#: lang/json/ARMOR_from_json.py +msgid "pair of wolfshead cufflinks" +msgid_plural "pairs of wolfshead cufflinks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Finger-Mounted Laser CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for pair of wolfshead cufflinks +#: lang/json/ARMOR_from_json.py msgid "" -"A small, high-powered laser that is embedded in the fingertip. This long " -"range weapon is not incredibly damaging, but is very accurate, and has the " -"potential to start fires." +"A pair of silver cufflinks with a wolf's head engraved into them. Each " +"cufflink has a bright ruby eye and pearl teeth. They appear to be growling." +" There is an inscription, 'When the moon shines. I become alive.'" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Leukocyte Breeder System CBM" -msgid_plural "Leukocyte Breeder System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "technomancer's toolbelt" +msgid_plural "technomancer's toolbelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Leukocyte Breeder System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for technomancer's toolbelt +#: lang/json/ARMOR_from_json.py msgid "" -"Bionic stimulators which augment the user's haematopoiesis system, allowing " -"them to accelerate white blood cell production using bionic power. It is " -"designed for continuous use and may cause unpleasant side effects when " -"turned off." +"A custom-built leather utility belt that instantly creates any tool that you" +" reach for. Activate to sheathe/draw a weapon." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Finger Lighter CBM" -msgid_plural "Finger Lighter CBMs" +#: lang/json/ARMOR_from_json.py +msgid "seven league boots" +msgid_plural "pairs of seven league boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Finger Lighter CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for seven league boots +#. ~ Description for boots of haste +#: lang/json/ARMOR_from_json.py msgid "" -"Powerful fire starters which extend from the tip of both hands' index " -"fingers." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Fingerpick CBM" -msgid_plural "Fingerpick CBMs" +#: lang/json/ARMOR_from_json.py +msgid "boots of haste" +msgid_plural "pairs of boots of haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Fingerpick CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"An electronic lockpick that is embedded in a fingertip. This automatic " -"system will quickly unlock all but the most advanced key locks without any " -"skill required on the part of the user." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Electromagnetic Unit CBM" -msgid_plural "Electromagnetic Unit CBMs" +#: lang/json/ARMOR_from_json.py +msgid "freerunner's boots" +msgid_plural "freerunner's boots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Electromagnetic Unit CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for freerunner's boots +#: lang/json/ARMOR_from_json.py msgid "" -"A powerful electromagnet that is implanted into the user's right hand, " -"allowing them to indiscriminately pull all nearby magnetic objects towards " -"them. Unlucky bystanders might be injured or killed by flying objects." +"Rugged yet extremely comfortable and well fitting boots of worn leather and " +"steel, seeming a bit more flexible and breathable than typical for their " +"materials. The enchantment they bear helps guide their wearer in their " +"motions, to make movement around and over obstacles much more fluid and " +"efficient." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Nictating Membrane CBM" -msgid_plural "Nictating Membrane CBMs" +#: lang/json/ARMOR_from_json.py +msgid "boots of grounding" +msgid_plural "pairs of boots of grounding" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Nictating Membrane CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for boots of grounding +#: lang/json/ARMOR_from_json.py msgid "" -"A thin membrane that closes over the eyes while underwater, negating any " -"vision penalties." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Enhanced Memory Banks CBM" -msgid_plural "Enhanced Memory Banks CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Fish" +msgid_plural "Wildshape Cloaks: Fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Enhanced Memory Banks CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Wildshape Cloak: Fish +#: lang/json/ARMOR_from_json.py msgid "" -"A set of highly-advanced quantum storage drives used to enhance memory. " -"While active, they increase the rate that the user learns skills, and give " -"them near-perfect memory of skills and terrain." +"A magical cloak that shimmers like fresh water under a warm sun. It can be " +"worn to morph your body to a form that is excellent for swimming, but ill-" +"suited for combat." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Metabolic Interchange CBM" -msgid_plural "Metabolic Interchange CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Bear" +msgid_plural "Wildshape Cloak: Bears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Metabolic Interchange CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Wildshape Cloak: Bear +#: lang/json/ARMOR_from_json.py msgid "" -"This module interconnects the user's digestive system and power supply, " -"letting them replenish bionic energy by burning calories." +"A magical cloak that smells of the forest. It can be worn to morph your " +"body to a form that is strong and resilient in melee combat. However, you " +"feel as if you would lose a part of yourself." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Weather Reader CBM" -msgid_plural "Weather Reader CBMs" +#: lang/json/ARMOR_from_json.py +msgid "Wildshape Cloak: Deer" +msgid_plural "Wildshape Cloak: Deers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Weather Reader CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Wildshape Cloak: Deer +#: lang/json/ARMOR_from_json.py msgid "" -"A multitude of scientific instruments and sensors collect environmental " -"data. The data is compiled and presented as a simple readout of the current" -" weather. It also passively tells the user their external temperature." +"A magical cloak that feels soft to the touch. It can be worn to morph your " +"body to a form well-suited to escaping difficult situations. However, it " +"places a great strain on your body." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Repair Nanobots CBM" -msgid_plural "Repair Nanobots CBMs" +#: lang/json/ARMOR_from_json.py +msgid "enchanted parabolan wool blouse" +msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Repair Nanobots CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for enchanted parabolan wool blouse +#: lang/json/ARMOR_from_json.py msgid "" -"A fleet of tiny dormant robots. While activated they will flit about the " -"user's body, repairing damage and stopping bleeding at the cost of power." +"A loose iridescent blouse in a style most often associated with pirates and " +"renfaires. It shimmers as you look at it. Made of parabolan wool, it " +"sometimes dimly shows reflections of things here and not. This particular " +"one has piratical flairs and glitters with enchantment." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Artificial Night Generator CBM" -msgid_plural "Artificial Night Generator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "enchanted parabolan wool breeches" +msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Artificial Night Generator CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for enchanted parabolan wool breeches +#: lang/json/ARMOR_from_json.py msgid "" -"When active, this bionic eliminates all light within a 15 tile radius " -"through destructive interference." +"A well-made pair of old-fashioned pants, made of iridescent material. " +"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " +"parabolan wool, it sometimes dimly shows reflections of things here and not." +" This particular one has piratical flairs and gliters with enchantment." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Implanted Night Vision CBM" -msgid_plural "Implanted Night Vision CBMs" +#: lang/json/ARMOR_from_json.py +msgid "parabolan wool blouse" +msgid_plural "parabolan wool blouses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Implanted Night Vision CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for parabolan wool blouse +#: lang/json/ARMOR_from_json.py msgid "" -"This bionic module modifies the user's eyes to amplify existing light, " -"allowing them to see in the dark." +"A loose iridescent blouse in a style most often associated with pirates and " +"renfaires. It shimmers as you look at it. Made of parabolan wool, it " +"sometimes dimly shows reflections of things here and not." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Offensive Defense System CBM" -msgid_plural "Offensive Defense System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "parabolan wool breeches" +msgid_plural "parabolan wool breeches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Offensive Defense System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for parabolan wool breeches +#: lang/json/ARMOR_from_json.py msgid "" -"A thin forcefield gets projected around the user's body, continually " -"draining power. This field does not deflect attacks, but rather delivers a " -"strong shock, damaging unarmed attackers and those with a conductive weapon." +"A well-made pair of old-fashioned pants, made of iridescent material. " +"Comfortable, but lacks pockets. It shimmers as you look at it. Made of " +"parabolan wool, it sometimes dimly shows reflections of things here and not." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Sensory Dulling CBM" -msgid_plural "Sensory Dulling CBMs" +#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py +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 Sensory Dulling CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"This module lets the user's nervous system inhibit pain signals, allowing " -"them to dull their senses at will. However, the use of this system may " -"cause delayed reaction times and drowsiness." +#. ~ Description for pair of magical armored stone gauntlets +#: lang/json/ARMOR_from_json.py lang/json/GENERIC_from_json.py +msgid "A magical flexible stonelike substance for protection and attack." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Power Armor Interface CBM" -msgid_plural "Power Armor Interface CBMs" +#: lang/json/ARMOR_from_json.py +msgid "magic lamp" +msgid_plural "magic lamps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Power Armor Interface CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Interfaces the user's bionic power system with the internal charging port on" -" suits of power armor, allowing them to draw from the user's bionic power " -"banks." +#. ~ Description for magic lamp +#: lang/json/ARMOR_from_json.py +msgid "A magical light source that will light up a small area." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Power Armor Mk. II Interface CBM" -msgid_plural "Power Armor Mk. II Interface CBMs" +#: lang/json/ARMOR_from_json.py +msgid "magic light" +msgid_plural "magic lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Power Armor Mk. II Interface CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Interfaces the user's bionic power system with the internal charging port on" -" suits of power armor, allowing them to draw from the user's bionic power " -"banks. Twice as efficient as the Mk. I model. The Mk. II was designed by " -"DoubleTech Inc., to meet the popularity of the Mk. II power armor series." +#. ~ Description for magic light +#: lang/json/ARMOR_from_json.py +msgid "A small magical light that you can read by." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Power Storage CBM" -msgid_plural "Power Storage CBMs" +#: lang/json/ARMOR_from_json.py +msgid "large shield of magical ice" +msgid_plural "large shields of magical ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Power Storage CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A Compact Bionics Module that upgrades the user's power capacity by 100 " -"units. Having at least one of these is a prerequisite to using powered " -"bionics. The user will also need a power supply, found in various CBMs." +#. ~ Description for large shield of magical ice +#: lang/json/ARMOR_from_json.py +msgid "A lightweight but tough shield crafted entirely of magical ice." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Power Storage CBM Mk. II" -msgid_plural "Power Storage CBM Mk. II" +#: lang/json/ARMOR_from_json.py +msgid "slick icy coatings" +msgid_plural "slick icy coatings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for slick icy coatings +#: lang/json/ARMOR_from_json.py msgid "" -"A Compact Bionics Module developed at DoubleTech Industries as a replacement" -" for the highly successful Power Storage CBM. Increases the user's power " -"capacity by 250 units." +"A magical slick icy coating on your feet. While quite fast on flat floors, " +"they make it difficult to move on rough terrain." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Probability Travel CBM" -msgid_plural "Probability Travel CBMs" +#: lang/json/ARMOR_from_json.py +msgid "flesh pouch" +msgid_plural "flesh pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Probability Travel CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for flesh pouch +#: lang/json/ARMOR_from_json.py msgid "" -"Increases the body's wavelength, allowing the user to quantum tunnel through" -" walls, reappearing on the other side. Power drain in standby is minimal, " -"but each tile tunneled through costs 250 bionic power." +"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 "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Air Filtration System CBM" -msgid_plural "Air Filtration System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "obfuscating aura" +msgid_plural "obfuscating auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Air Filtration System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for obfuscating aura +#: lang/json/ARMOR_from_json.py msgid "" -"An advanced filtration system that is implanted in the trachea. If toxins, " -"or airborne diseases find their way into the windpipe, the filter will " -"attempt to remove them." +"An all-encompassing, invisible layer of magic distorts light around your " +"body. Allows you to dodge two extra attacks in a given turn." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Radiation Scrubber System CBM" -msgid_plural "Radiation Scrubber System CBMs" +#: lang/json/ARMOR_from_json.py +msgid "acid resistance aura" +msgid_plural "acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Radiation Scrubber System CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A system of advanced piezomechanical blood filters that are implanted " -"throughout your body, allowing the user to purge themself of absorbed " -"radiation at the cost of some bionic power." +#. ~ Description for acid resistance aura +#. ~ Description for greater acid resistance aura +#: lang/json/ARMOR_from_json.py +msgid "An all-encompassing, invisible layer of protection against acid." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Railgun CBM" -msgid_plural "Railgun CBMs" +#: lang/json/ARMOR_from_json.py +msgid "greater acid resistance aura" +msgid_plural "greater acid resistance auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Railgun CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"EM field generators in the user's arms increase the range and damage of " -"thrown magnetic objects at a cost of 1 bionic power per throw. They will " -"create a trail of electricity that can cause additional damage." +#: lang/json/ARMOR_from_json.py +msgid "frost armor" +msgid_plural "frost armor" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for frost armor +#: lang/json/ARMOR_from_json.py +msgid "A thin layer of magical ice, covering the entire body." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Fingertip Razors CBM" -msgid_plural "Fingertip Razors CBMs" +#: lang/json/ARMOR_from_json.py +msgid "stoneskin coating" +msgid_plural "stoneskin coating" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Fingertip Razors CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for stoneskin coating +#: lang/json/ARMOR_from_json.py msgid "" -"A set of ten double-edged, four centimeter long razor-sharp claws that are " -"implanted underneath the fingernails. These will deal a small amount of " -"unarmed slashing damage whenever the user's fingertips are uncovered." +"A thin layer of shifting, almost fluid living rock, covering the entire " +"body." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Gasoline Fuel Cell CBM" -msgid_plural "Gasoline Fuel Cell CBMs" +#: lang/json/ARMOR_from_json.py +msgid "overcharge burn" +msgid_plural "overcharge burns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Gasoline Fuel Cell CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A small gasoline fuel cell able to convert gasoline to bionic power. It's " -"connected to a diffuse network of bio-plastic bladders able to hold up to " -"500 ml of gasoline." +#. ~ Description for overcharge burn +#: lang/json/ARMOR_from_json.py +msgid "Ouch, this really smarts! It'll go away soon, maybe?" msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Recycler Unit CBM" -msgid_plural "Recycler Unit CBMs" +#: lang/json/ARMOR_from_json.py +msgid "aura of protection" +msgid_plural "auras of protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Recycler Unit CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for aura of protection +#: lang/json/ARMOR_from_json.py msgid "" -"A series of filters and processors that is implanted in the user's digestive" -" system, allowing them to reclaim waste liquid and, to a lesser degree, " -"nutrients. The net effect is a greatly reduced need to eat and drink." +"An all-encompassing, invisible layer of magical aura that protects you from " +"the environment." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Remote Controller CBM" -msgid_plural "Remote Controller CBMs" +#: lang/json/ARMOR_from_json.py +msgid "aura of repelling arc" +msgid_plural "auras of repelling arc" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Remote Controller CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for aura of repelling arc +#: lang/json/ARMOR_from_json.py msgid "" -"A small module that connects to the user's brain and allows them to " -"interface with nearby devices with wireless capabilities." +"An invisible aura that strikes melee attackers with arcs of electricity." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Sonic Resonator CBM" -msgid_plural "Sonic Resonator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "feral aura" +msgid_plural "feral auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Sonic Resonator CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for feral aura +#: lang/json/ARMOR_from_json.py msgid "" -"This bionic module allows the user's entire body to resonate at very high " -"power, creating a short-range shockwave. While it will not do much damage " -"to creatures, solid objects such as walls and doors will be damaged." +"The manifestation of your rage. It won't disappear until you calm down." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Olfactory Mask CBM" -msgid_plural "Olfactory Mask CBMs" +#: lang/json/ARMOR_from_json.py +msgid "acid aura" +msgid_plural "acid auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Olfactory Mask CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for acid aura +#: lang/json/ARMOR_from_json.py msgid "" -"While this system is powered, the user's body will produce very little odor," -" making it nearly impossible for creatures to track them by scent." +"An aura of thin acid, swirling around your body ready to corrode when struck" +" or while striking." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Electroshock Unit CBM" -msgid_plural "Electroshock Unit CBMs" +#: lang/json/ARMOR_from_json.py +msgid "werewolf aura" +msgid_plural "werewolf auras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Electroshock Unit CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"While fighting unarmed, or with a weapon that conducts electricity, there is" -" a chance that a successful hit will shock the user's opponent, inflicting " -"extra damage and disabling them temporarily at the cost of some energy." +#. ~ Description for werewolf aura +#: lang/json/ARMOR_from_json.py +msgid "You have become the werewolf. Boys becoming men, men becoming wolves." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Shockwave Generator CBM" -msgid_plural "Shockwave Generator CBMs" +#: lang/json/ARMOR_from_json.py lang/json/SPELL_from_json.py +msgid "Black Dragon Shell" +msgid_plural "Black Dragon Shells" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Shockwave Generator CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Black Dragon Shell +#: lang/json/ARMOR_from_json.py msgid "" -"This bionic module generates a powerful shockwave, knocking back all nearby " -"creatures. Targets are stunned briefly, take damage and additional stun " -"upon impact with impassable terrain, and knock back any creatures they " -"collide with." +"An aura of black and green draconic energy, swirling around your body " +"protecting you and punishing those who strike you." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Synaptic Accelerator CBM" -msgid_plural "Synaptic Accelerator CBMs" +#: lang/json/ARMOR_from_json.py +msgid "spiritual armor" +msgid_plural "spiritual armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Synaptic Accelerator CBM -#: lang/json/BIONIC_ITEM_from_json.py -#, no-python-format -msgid "" -"Bionic stimulators that enhance the nervous system, granting a 10% boost to " -"your speed." +#. ~ Description for spiritual armor +#: lang/json/ARMOR_from_json.py +msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Muscle Augmentation CBM" -msgid_plural "Muscle Augmentation CBMs" +#: lang/json/ARMOR_from_json.py +msgid "auroral shell" +msgid_plural "auroral shell" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Muscle Augmentation CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Myomer fibers that enhance the muscular system, granting a +2 bonus to " -"strength." +#. ~ Description for auroral shell +#: lang/json/ARMOR_from_json.py +msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Autonomous Surgical Scalpels CBM" -msgid_plural "Autonomous Surgical Scalpels CBMs" +#: lang/json/BATTERY_from_json.py +msgid "test battery" +msgid_plural "test batteries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Autonomous Surgical Scalpels CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for test battery +#: lang/json/BATTERY_from_json.py msgid "" -"A system of surgical grade scalpels that is implanted in the user's fingers." -" They allow for automated precise cuts and can be used as a high-quality " -"butchering tool." +"This is a testing item for the BATTERY item type. If you found one in game," +" it's a bug." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Anti-Glare Compensators CBM" -msgid_plural "Anti-Glare Compensators CBMs" +msgid "abstract bionic module" +msgid_plural "abstract bionic modules" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Anti-Glare Compensators CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A set of quick-reacting transition lenses that are installed over the user's" -" eyes. They negate glare penalties, partially protect from bright flashes, " -"and protect the eyes when welding." -msgstr "" +msgid "abstract bionic module (npc usable)" +msgid_plural "abstract bionic modules (npc usable)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Targeting System CBM" -msgid_plural "Targeting System CBMs" +msgid "abstract faulty bionic module" +msgid_plural "abstract faulty bionic modules" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Targeting System CBM +#. ~ Description for abstract faulty bionic module #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"This bionic module contains range finders and synchronizes the movement of " -"the user's eyes with their arms, to a degree. Shots they fire will be much " -"more accurate, particularly at long ranges." +msgid "This CBM is broken beyond repair, you can't do anything with it." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Teleportation Unit CBM" -msgid_plural "Teleportation Unit CBMs" +msgid "Adrenaline Pump CBM" +msgid_plural "Adrenaline Pump CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Teleportation Unit CBM +#. ~ Description for Adrenaline Pump CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This highly experimental unit folds space over short distances, instantly " -"transporting the user's body up to 25 feet in a random duration at the cost " -"of much power. Note that prolonged or frequent use may have dangerous side " -"effects." +"A stimulator system that is implanted alongside the adrenal glands, allowing" +" the user to trigger their body's adrenaline response at the cost of some " +"bionic power." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Time Dilation CBM" -msgid_plural "Time Dilation CBMs" +msgid "Active Defense System CBM" +msgid_plural "Active Defense System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Time Dilation CBM +#. ~ Description for Active Defense System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"At the cost of all stored bionic power, the user may increase their body " -"speed and reactions dramatically, essentially freezing time. Violent or " -"rapid movements may cause damage due to friction." +"This bionic projects a thin forcefield around the user's body. Anything " +"attempting to penetrate this field has a chance of being deflected at the " +"cost of energy, reducing their ability to deal damage. Bullets will be " +"deflected more than swords and those in turn more than massive objects." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Integrated Toolset CBM" -msgid_plural "Integrated Toolset CBMs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Alarm System CBM" +msgid_plural "Alarm System CBMs" +msgstr[0] "КБМ: сигналізація" +msgstr[1] "КБМ: сигналізація" +msgstr[2] "КБМ: сигналізація" +msgstr[3] "КБМ: сигналізація" -#. ~ Description for Integrated Toolset CBM +#. ~ Description for Alarm System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A surgically implanted set of tools - screwdriver, hammer, wrench, hacksaw, " -"drill, welder and heating elements. These can be used in place of many " -"tools when crafting." +"A motion-detecting alarm system will notice almost all movement within a " +"fifteen-foot radius, and will silently alert the user. This is very useful " +"during sleep, or if the user suspects a cloaked pursuer." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Joint Torsion Ratchet CBM" -msgid_plural "Joint Torsion Ratchet CBMs" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Joint Torsion Ratchet CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Torsion ratchets that replace the user's joints to slowly generate power " -"when they move. These can be toggled to generate more power, but movement " -"will require more effort." +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Joint Servo CBM" -msgid_plural "Joint Servo CBMs" +msgid "Protective Lenses CBM" +msgid_plural "Protective Lenses CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Joint Servo CBM +#. ~ Description for Protective Lenses CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of servomotors that get installed on leg joints to provide power-" -"assisted movement. They are optimized for running, but walking also " -"requires less effort while this bionic is active. However, when it's " -"offline it will hamper the user's movement." +"A bionic package that seals the user's eye sockets with highly protective " +"mirrored lenses and re-routes their tear ducts to their mouth. When the " +"user cries, they must spit out or swallow their tears." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Uncanny Dodge CBM" -msgid_plural "Uncanny Dodge CBMs" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Uncanny Dodge CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Bionic processors that augment the user's nervous system, allowing them to " -"dodge attacks beyond normal human capability, including bullets." +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Unified Power System CBM" -msgid_plural "Unified Power System CBMs" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Unified Power System CBM -#: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A Unified Power System that is wired into the user's bionic power banks. " -"Objects that run on a UPS can now directly draw power from the bionic power " -"supply." -msgstr "" - #: lang/json/BIONIC_ITEM_from_json.py -msgid "Internal Chronometer CBM" -msgid_plural "Internal Chronometer CBMs" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Internal Chronometer CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This bionic module contains an atomic clock, complete with silent alarm " -"clock function." +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Water Extraction Unit CBM" -msgid_plural "Water Extraction Unit CBMs" +msgid "Battery System CBM" +msgid_plural "Battery System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Water Extraction Unit CBM +#. ~ Description for Battery System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This module contains nanotubes that are embedded in the palm of the hand to " -"pump any available fluid out of a dead body, cleanse it of impurities and " -"convert it into potable water. Water container not included." +"A battery draining attachment to make use of the energy contained in normal," +" everyday batteries." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Intravenous Needletip CBM" -msgid_plural "Intravenous Needletip CBMs" +msgid "Monomolecular Blade CBM" +msgid_plural "Monomolecular Blade CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Intravenous Needletip CBM +#. ~ Description for Monomolecular Blade CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A small tube with a retractable needle that terminates in a net of tiny " -"hoses instead of a plunger. Installed, it allows the user to draw " -"substances directly into their bloodstream akin to a regular syringe." +"A deadly foot-long blade made of advanced material that is installed inside " +"the forearm, capable of being extended through the back of the user's wrist " +"at the cost of a small amount of power. Though exceptionally sharp, it will" +" prevent the user from holding anything else while extended." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Titanium Skeletal Bracing CBM" -msgid_plural "Titanium Skeletal Bracing CBMs" +msgid "Shotgun Arm CBM" +msgid_plural "Shotgun Arm CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Titanium Skeletal Bracing CBM +#. ~ Description for Shotgun Arm CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of hinges, springs, and other synthetic augments for the skeletal " -"structure. These artificial enhancers strengthen the knees and elbows, " -"allowing the user to carry more weight." +"A concealed, single shot 12 gauge shotgun that is implanted inside the left " +"forearm. Perfect in a pinch." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Taste Modifier CBM" -msgid_plural "Taste Modifier CBMs" +msgid "Blood Analysis CBM" +msgid_plural "Blood Analysis CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Taste Modifier CBM +#. ~ Description for Blood Analysis CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of highly sensitive sensors implanted in the user's mouth, combined " -"with a sophisticated analyzer. While active, it will block all unpleasant " -"taste and texture at the cost of bionic energy." +"Small sensors that are implanted in the user's heart, allowing them to " +"analyze their blood. This will detect many illnesses, drugs, and other " +"conditions." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Soporific Induction CBM" -msgid_plural "Soporific Induction CBMs" +msgid "Blood Filter CBM" +msgid_plural "Blood Filter CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Soporific Induction CBM +#. ~ Description for Blood Filter CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A microscopic electrode designed to gently stimulate a particular cluster of" -" neurons in the hypothalamus, helping the user to fall asleep." +"A filtration system that is installed in the heart and can actively filter " +"out chemical impurities, primarily drugs, with limited impact on viruses. " +"Note that it is not a targeted filter; ALL drugs in the system will be " +"affected." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Squeaky Ankles" -msgid_plural "Squeaky Ankles" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Cable Charger System CBM" +msgid_plural "Cable Charger System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Cable Charger System CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "A pair of defective bionics that make squeaking noises." +msgid "" +"A complex port that is mounted above the hip. While active, it will " +"recharge bionic power when connected to a battery via jumper cable." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Pieces Of Junk" -msgid_plural "Pieces of Junk" +msgid "Subdermal Carbon Filament CBM" +msgid_plural "Subdermal Carbon Filament CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pieces Of Junk +#. ~ Description for Subdermal Carbon Filament CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A jumble of broken metal pieces that were removed during reconstructive " -"surgery." +"A thin armor made of carbon nanotubes, implanted just beneath the skin. " +"This reduces bashing damage by 2 and cutting damage by 4." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Acidic Leaking CBM" -msgid_plural "Acidic Leaking CBMs" +msgid "Chain Lightning CBM" +msgid_plural "Chain Lightning CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Acidic Leaking CBM +#. ~ Description for Chain Lightning CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This CBM has been breached in several places and some acid is leaking from " -"it." +"A chain lightning generator that emits a blast of lightning at a target, " +"leaving a trail of lightning in its wake and jumping to additional targets " +"within 4 tiles of the previous target." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Faulty Electric System" -msgid_plural "Faulty Electric Systems" +msgid "Bionic Claws CBM" +msgid_plural "Bionic Claws CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Faulty Electric System +#. ~ Description for Bionic Claws CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "This CBM is a mess of naked wire and burnt resistors." +msgid "" +"Vicious, retractable claws that are implanted inside the user's fingers. " +"These do considerable cutting damage, but prevent the user from holding " +"anything else while extended." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Electrical Drain" -msgid_plural "Electrical Drains" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Internal Climate Control CBM" +msgid_plural "Internal Climate Control CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Electrical Drain +#. ~ Description for Internal Climate Control CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This CBM was wired incorrectly and would drain power from any system " -"connected to it." +"A network of thermal piping which eases the effects of high and low ambient " +"temperatures once activated." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Itchy Metal Thing" -msgid_plural "Itchy Metal Things" -msgstr[0] "Щось металеве що свербить" -msgstr[1] "Щось металеве що свербить" -msgstr[2] "Щось металеве що свербить" -msgstr[3] "Щось металеве що свербить" - -#. ~ Description for Itchy Metal Thing #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"You can't recognize what this is supposed to be, but it's a very awkward " -"thing to have in one's body." -msgstr "" - -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Glowy Thing" -msgid_plural "Glowy Things" +msgid "Cloaking System CBM" +msgid_plural "Cloaking System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Glowy Thing +#. ~ Description for Cloaking System CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "It's a… thing? And it glows, at least it did when it was plugged in." +msgid "" +"This high-power system uses a set of cameras and LEDs to make the user blend" +" into their surroundings, rendering them fully invisible to eyes and optical" +" sensors. However, this doesn't prevent detection from other means such as " +"infrared, sonar, etc." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Leaky Bionic" -msgid_plural "Leaky Bionics" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Close Quarters Battle CBM" +msgid_plural "Close Quarters Battle CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Leaky Bionic +#. ~ Description for Close Quarters Battle CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A mess of pierced pipes and broken seals, something unpleasant is leaking " -"from it." +"A set of bionic processors and databanks, loaded with martial arts combat " +"programs. Whilst active, the CQB module will improve the user's hand-to-" +"hand combat skills, but prevents them from improving them through combat " +"experience." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Noisemaker" -msgid_plural "Noisemakers" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Wired Reflexes CBM" +msgid_plural "Wired Reflexes CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Noisemaker +#. ~ Description for Wired Reflexes CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A malfunctioning bionic. When powered, it occasionally emits a loud burst " -"of noise." +"Bionic nerve stimulators that greatly enhance reaction times, granting a +2 " +"bonus to dexterity." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Bionic Nostril" -msgid_plural "Bionic Nostrils" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Expanded Digestive System CBM" +msgid_plural "Expanded Digestive System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Bionic Nostril +#. ~ Description for Expanded Digestive System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This thing was up someone's nose, they're probably glad to be rid of it." +"This module contains three synthetic stomachs and industrial-grade " +"intestines. Not only will these extract much more nutrition from food, but " +"also increase the user's resistance to foodborne illness, and occasionally " +"allow the digestion of rotten food." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Bionic Visual Impairment" -msgid_plural "Bionic Visual Impairments" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Enhanced Hearing CBM" +msgid_plural "Enhanced Hearing CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Bionic Visual Impairment +#. ~ Description for Enhanced Hearing CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "A defective bionic that impairs vision." +msgid "" +"While this bionic is active, the user's hearing will be drastically " +"improved, allowing them to hear ten times better than the average person. " +"Additionally, high-intensity sounds will be automatically dampened before " +"they can damage their hearing." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Power Overload" -msgid_plural "Power Overloads" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Directional EMP CBM" +msgid_plural "Directional EMP CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Power Overload +#. ~ Description for Directional EMP CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A bunch of defective power circuits that are prone to short-circuiting." +"Small parabolic EMP field generators that are mounted in the palm of the " +"user's right hand. These can be used to instantly fire a wide, but short-" +"ranged blast which will disable electronics and robots." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Bionic Short Circuit" -msgid_plural "Bionic Short Circuits" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "EMP Projector CBM" +msgid_plural "EMP Projector CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Bionic Short Circuit +#. ~ Description for EMP Projector CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "This bionic is poorly wired and occasionally short-circuits." +msgid "" +"A ranged EMP generator system that is implanted in the user's right arm and " +"hand. The system fires precise, single-target pulses that require time to " +"aim. Extremely effective against electronic targets but mostly useless " +"otherwise." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Endocrine Enervator" -msgid_plural "Endocrine Enervators" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Ethanol Burner CBM" +msgid_plural "Ethanol Burner CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Endocrine Enervator +#. ~ Description for Ethanol Burner CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This malfunctioning bionic causes fatigue by altering the unfortunate user's" -" brain chemistry." +"A reactor that burns alcohol as fuel in an extremely efficient reaction. It" +" can store up to 500ml and accepts ethanol, methanol and denatured alcohol " +"as fuel." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Synaptic Regeneration System CBM" -msgid_plural "Synaptic Regeneration System CBMs" +msgid "Aero-Evaporator CBM" +msgid_plural "Aero-Evaporator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Synaptic Regeneration System CBM -#: lang/json/BIONIC_ITEM_from_json.py +#. ~ Description for Aero-Evaporator CBM +#. ~ Description for Aero-Evaporator +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"An electromagnetic stimulator has been surgically implanted on the back of " -"your head and along your spine, continually draining power. As long as it's" -" active, you won't become sleep deprived; and if you're sleep deprived " -"already, it will boost the rate of recovery." +"This unit draws moisture from the surrounding air, which slowly trickles " +"directly into your blood stream. It may fail in very dry environments." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Motor Control Overstimulator" -msgid_plural "Motor Control Overstimulators" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Diamond Cornea CBM" +msgid_plural "Diamond Cornea CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Motor Control Overstimulator +#. ~ Description for Diamond Cornea CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"The result of poor configuration, this bionic module frequently causes " -"debilitating muscle spasms." +"A set of diamond corneas which greatly enhance the user's vision, granting a" +" +2 bonus to perception." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Wire-Induced Stiffness" -msgid_plural "Wire-Induced Stiffnesses" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Telescopic Eyes CBM" +msgid_plural "Telescopic Eyes CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wire-Induced Stiffness +#. ~ Description for Telescopic Eyes CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "A length of poorly installed wiring that would cause stiffness." +msgid "" +"An array of high-powered, auto-focusing lenses that replaces much of the " +"material in the inner eye. This fixes any vision problems and allows for an" +" increased vision range akin to binoculars." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Self-Locking Thumbs" -msgid_plural "Self-Locking Thumbs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Facial Distortion CBM" +msgid_plural "Facial Distortion CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Facial Distortion CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "A pair of faulty, self-locking thumb bionics." +msgid "" +"Through controlled application of electrochemical impulses, this bionic " +"module lets the user alter their facial structure so as to subtly affect the" +" reactions of others. This grants a bonus to all social interactions." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Visual Disruptor" -msgid_plural "Visual Disruptors" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Dielectric Capacitance System CBM" +msgid_plural "Dielectric Capacitance System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Visual Disruptor +#. ~ Description for Dielectric Capacitance System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A pair of defective ocular bionics that cause visual distortion and " -"pixelation." +"A network of miniature piezoelectric capacitors, implanted throughout the " +"body to protect from external electrical discharge." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Voice Remodulator" -msgid_plural "Voice Remodulators" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Fingerhack CBM" +msgid_plural "Fingerhack CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Voice Remodulator +#. ~ Description for Fingerhack CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Part of the autodoc's 'Cyborg Identity Package', this bionic gives the user " -"a creepy robot voice." +"A miniature electrohack, surgically embedded in a finger of the right hand." +" This is an all-purpose hacking unit used to override control panels and " +"the like, but not computers. Computer proficiency is important, and a " +"failed use may cause damage." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Solar Panels CBM" -msgid_plural "Solar Panels CBMs" +msgid "Flashbang Generator CBM" +msgid_plural "Flashbang Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Solar Panels CBM +#. ~ Description for Flashbang Generator CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Installed on your back is a set of retractable solar panels. When in direct" -" sunlight, they will automatically deploy and slowly recharge your power " -"level." +"A combination of LEDs and speakers that create a flash and sound comparable " +"to a flashbang grenade, deafening and blinding nearby enemies." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Deployable Grenade Launcher CBM" -msgid_plural "Deployable Grenade Launcher CBMs" +msgid "Cranial Flashlight CBM" +msgid_plural "Cranial Flashlight CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Deployable Grenade Launcher CBM +#. ~ Description for Cranial Flashlight CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"A small, folding tube that attaches to your right arm. Once implanted, it " -"can serve as a portable, integrated tool for firing 40mm grenades and " -"canisters." +msgid "A small, but powerful LED flashlight that is mounted between the eyes." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Linguistic Coprocessor CBM" -msgid_plural "Linguistic Coprocessor CBMs" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "LED Tattoo" +msgid_plural "LED Tattoos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Linguistic Coprocessor CBM +#. ~ Description for LED Tattoo #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A microcomputer installed into the left hemisphere of your brain to increase" -" the speed that it processes language. When installed, it provides a " -"passive boost to reading speed." +"An LED display implanted beneath the epidermis that can display patterns or " +"pictures through the skin. When active it glows dimly, providing a very " +"small amount of light." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Dopamine Stimulators CBM" -msgid_plural "Dopamine Stimulators CBMs" +msgid "Integrated Dosimeter CBM" +msgid_plural "Integrated Dosimeter CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dopamine Stimulators CBM +#. ~ Description for Integrated Dosimeter CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of tiny bionic nerve stimulators that install into the reward center " -"of your brain. When run with bionic power, it periodically releases a hit " -"of dopamine and other reward chemicals, inducing a state of euphoria and " -"suppressing fear." +"Small radiation sensors that are implanted throughout the body, allowing the" +" user to analyze their level of absorbed radiation. They will also alert " +"the user whenever exposed to environmental radiation." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Counteractive Reflexes CBM" -msgid_plural "Counteractive Reflexes CBMs" +msgid "Respirator CBM" +msgid_plural "Respirator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Counteractive Reflexes CBM -#. ~ Description for Counteractive Reflexes -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Respirator CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Cybernetic stimulators installed across your nervous system boost your " -"reflexes whenever you are hit in melee, granting you an extra action. This " -"bionic must be active to function." +"A complex respiration augmentation system that increases the user's maximal " +"oxygen uptake and allows for underwater breathing akin to gills. Will " +"automatically activate if the user is drowning." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Melee Optimization Unit CBM" -msgid_plural "Melee Optimization Unit CBMs" +msgid "Terranian Sonar CBM" +msgid_plural "Terranian Sonar CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Melee Optimization Unit CBM +#. ~ Description for Terranian Sonar CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An implanted AI executes the optimal followup for each of your melee " -"strikes, allowing you to chain them with unnatural speed and grace. This " -"bionic must be active to function." +"Precision sonar equipment, implanted in the feet to allow the detection of " +"below-ground movement, buried traps, and unstable terrain." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Neurosoft: Aeronautics CBM" -msgid_plural "Neurosoft: Aeronautics CBMs" +msgid "Heat Drain CBM" +msgid_plural "Heat Drain CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Neurosoft: Aeronautics CBM -#. ~ Description for Neurosoft: Aeronautics -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Heat Drain CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A brain implant that grants instinctual knowledge about the operation of " -"flying machines." +"While fighting unarmed against a warm-blooded opponent, there is a chance " +"that a successful hit will drain body heat, inflicting a small amount of " +"extra damage, and recharging the user's bionic power reserves slightly." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Cranium Bomb" -msgid_plural "Cranium Bombs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Thermal Dissipation CBM" +msgid_plural "Thermal Dissipation CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cranium Bomb +#. ~ Description for Thermal Dissipation CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A bomb installed where your spine meets your brain stem. It's on a timer " -"from installation and you don't have the codes to reset the timer." +"Powerful heatsinks and supermaterials are woven into the user's flesh. " +"While powered, this system will prevent external heat damage up to 2000 " +"degrees Fahrenheit. Note that this does not affect the internal body " +"temperature." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Skullgun CBM" -msgid_plural "Skullgun CBMs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Hydraulic Muscles CBM" +msgid_plural "Hydraulic Muscles CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Skullgun CBM -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Hydraulic Muscles CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Concealed in your head is a single shot .40 pistol. Activate the bionic to " -"fire and reload the skullgun." +"A hydraulic muscle support system that when active, increases strength by " +"20." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Implanted translocator CBM" -msgid_plural "Implanted translocator CBMs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Infrared Vision CBM" +msgid_plural "Infrared Vision CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Implanted translocator CBM +#. ~ Description for Infrared Vision CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An experimental teleportation system carefully weaved into bone marrow and " -"coiled alongside the skeletal system. It allows its user to safely and " -"readily teleport towards a previously activated telepad." +"A bionic module that extends the range of vision into the infrared, allowing" +" the user to see warm-blooded creatures in the dark and through smoke." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Emergency Insulation" -msgid_plural "Emergency Insulations" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Cerebral Booster CBM" +msgid_plural "Cerebral Booster CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Emergency Insulation +#. ~ Description for Cerebral Booster CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A system designed to prevent instantaneous frostbite in workers exposed to " -"things like hard vacuum and liquid nitrogen." +"Bionic coprocessors that are implanted in the brain, granting a +2 bonus to " +"intelligence." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Weak Energy Field CBM" -msgid_plural "Weak Energy Field CBMs" +msgid "Finger-Mounted Laser CBM" +msgid_plural "Finger-Mounted Laser CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Weak Energy Field CBM +#. ~ Description for Finger-Mounted Laser CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Imagine a computer inside your body playing pong against the universe. The " -"paddles are made of energy fields and how it causes this to happen are trade" -" secrets. -From the owners manual of HawkingCorps EnergyField Mark I. This" -" field is rated to reduce bashing and cut damage as viewed in your HUD by 5 " -"points." +"A small, high-powered laser that is embedded in the fingertip. This long " +"range weapon is not incredibly damaging, but is very accurate, and has the " +"potential to start fires." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Combat Rated Energy Field CBM" -msgid_plural "Combat Rated Energy Field CBMs" +msgid "Leukocyte Breeder System CBM" +msgid_plural "Leukocyte Breeder System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Combat Rated Energy Field CBM +#. ~ Description for Leukocyte Breeder System CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"The HawkingCorps EnergyField Mark 2 was designed for police actions during " -"food riots and other civilian uprisings. It has proven cabaple of " -"protecting against most improvised weapons. This field is rated to reduce " -"bashing and cut damage as viewed in your HUD by 15 points." +"Bionic stimulators which augment the user's haematopoiesis system, allowing " +"them to accelerate white blood cell production using bionic power. It is " +"designed for continuous use and may cause unpleasant side effects when " +"turned off." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Debt Collection Agent Personal EnergyField CBM" -msgid_plural "Debt Collection Agent Personal EnergyField CBMs" +msgid "Finger Lighter CBM" +msgid_plural "Finger Lighter CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Debt Collection Agent Personal EnergyField CBM +#. ~ Description for Finger Lighter CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This class of personal energy field often sees action on both sides of the " -"vicious ship-to-ship boarding fights that are common with both repossession " -"and piracy. It remains practically impenetrable to melee weapons that lack " -"sharp piercing points. This field is rated to reduce bashing and cut damage" -" as viewed in your HUD by 25 points." +"Powerful fire starters which extend from the tip of both hands' index " +"fingers." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Kinetic Attenuation Field CBM" -msgid_plural "Kinetic Attenuation Field CBMs" +msgid "Fingerpick CBM" +msgid_plural "Fingerpick CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Kinetic Attenuation Field CBM +#. ~ Description for Fingerpick CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A personal kinetic attenuation field that slows incoming projectiles by " -"converting their kinetic energy into bursts of visible light. Although this" -" version is not powerful enough to defeat most pistol or rifle cartridges by" -" itself, it greatly increases survival odds when combined with traditional " -"ballistic armor. This field is rated to reduce ballistic and piercing " -"damage as viewed in your HUD by 10 points." +"An electronic lockpick that is embedded in a fingertip. This automatic " +"system will quickly unlock all but the most advanced key locks without any " +"skill required on the part of the user." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Pattern-U15 Attenuation Field CBM" -msgid_plural "Pattern-U15 Attenuation Field CBMs" +msgid "Electromagnetic Unit CBM" +msgid_plural "Electromagnetic Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pattern-U15 Attenuation Field CBM +#. ~ Description for Electromagnetic Unit CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A military grade kinetic attenuation system developed for use within UICA's " -"special service branches. Although much more effective than anything that " -"could be conceived with current technology, it remains a pale imitation of " -"the Hyperspace Age systems it was reverse engineered from. A side effect " -"modern engineering seems unable to address is the tendency for this unit to " -"release electrical fields when hit. This field is rated to reduce ballistic" -" and piercing damage as viewed in your HUD by 20 points" +"A powerful electromagnet that is implanted into the user's right hand, " +"allowing them to indiscriminately pull all nearby magnetic objects towards " +"them. Unlucky bystanders might be injured or killed by flying objects." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Kinetic annulment system CBM" -msgid_plural "Kinetic annulment system CBMs" +msgid "Nictating Membrane CBM" +msgid_plural "Nictating Membrane CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Kinetic annulment system CBM +#. ~ Description for Nictating Membrane CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A kinetic attenuation system salvaged from a pre-discontinuity robotic " -"warframe, crudely adapted for compatibility with biological hosts. Powerful" -" enough to completely stop most rifle cartridges. This field is rated to " -"reduce ballistic and piercing damage as viewed in your HUD by 40 points" +"A thin membrane that closes over the eyes while underwater, negating any " +"vision penalties." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Precision Solderers CBM" -msgid_plural "Precision Solderers CBMs" +msgid "Enhanced Memory Banks CBM" +msgid_plural "Enhanced Memory Banks CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Precision Solderers CBM +#. ~ Description for Enhanced Memory Banks CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A set of tiny electronics tools, including soldering irons and wire cutters." -" They serve no purpose on their own, but are required for crafting bionics." +"A set of highly-advanced quantum storage drives used to enhance memory. " +"While active, they increase the rate that the user learns skills, and give " +"them near-perfect memory of skills and terrain." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Wind Turbine CBM" -msgid_plural "Wind Turbine CBMs" +msgid "Metabolic Interchange CBM" +msgid_plural "Metabolic Interchange CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wind Turbine CBM -#. ~ Description for Wind Turbines -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Metabolic Interchange CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Installed on your body is a set of small retractable wind turbines. When " -"activated, they will deploy and slowly harvest wind power to recharge your " -"power level." +"This module interconnects the user's digestive system and power supply, " +"letting them replenish bionic energy by burning calories." msgstr "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Ionic Overload Generator CBM" -msgid_plural "Ionic Overload Generator CBMs" +msgid "Weather Reader CBM" +msgid_plural "Weather Reader CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ionic Overload Generator CBM -#. ~ Description for Ionic Overload Generator -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Weather Reader CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A powerful ion energy generator is implanted on your chest. Fires a " -"powerful, ever-expanding energy blast. The resulting blast ignites oxygen " -"creating fires as it moves and an explosion on impact. Close range use is " -"highly discouraged." +"A multitude of scientific instruments and sensors collect environmental " +"data. The data is compiled and presented as a simple readout of the current" +" weather. It also passively tells the user their external temperature." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Blood Power Generator CBM" -msgid_plural "Blood Power Generator CBMs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Repair Nanobots CBM" +msgid_plural "Repair Nanobots CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Blood Power Generator CBM +#. ~ Description for Repair Nanobots CBM #: lang/json/BIONIC_ITEM_from_json.py 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." +"A fleet of tiny dormant robots. While activated they will flit about the " +"user's body, repairing damage and stopping bleeding at the cost of power." msgstr "" -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py -msgid "Crystallized Mana Nose Replacement" -msgid_plural "Crystallized Mana Nose Replacements" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Artificial Night Generator CBM" +msgid_plural "Artificial Night Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Crystallized Mana Nose Replacement -#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +#. ~ Description for Artificial Night Generator CBM +#: lang/json/BIONIC_ITEM_from_json.py 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." +"When active, this bionic eliminates all light within a 15 tile radius " +"through destructive interference." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Museum of All Things Awesome and That Go Boom" -msgid_plural "copies of The Museum of All Things Awesome and That Go Boom" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Implanted Night Vision CBM" +msgid_plural "Implanted Night Vision CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Museum of All Things Awesome and That Go Boom -#: lang/json/BOOK_from_json.py +#. ~ Description for Implanted Night Vision CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"The Museum of All Things Awesome and That Go Boom is an anthology of science" -" fiction featuring blunt force trauma, explosions, adventure, derring-do, " -"tigers, Martians, zombies, fanged monsters, dinosaurs (alien and domestic), " -"ray guns, rocket ships, and anthropomorphized marshmallows. Published by " -"Upper Rubber Boot Books." +"This bionic module modifies the user's eyes to amplify existing light, " +"allowing them to see in the dark." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Sunvault: Stories of Solarpunk & Eco-Speculation" -msgid_plural "copies of Sunvault" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Offensive Defense System CBM" +msgid_plural "Offensive Defense System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Sunvault: Stories of Solarpunk & Eco-Speculation -#: lang/json/BOOK_from_json.py +#. ~ Description for Offensive Defense System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Sunvault is the first English-language anthology to broadly collect " -"solarpunk short fiction, artwork, and poetry. A new genre for the 21st " -"Century, solarpunk is a revolution against despair. Focusing on solutions " -"to environmental disasters, solarpunk envisions a future of green, " -"sustainable energy used by societies that value inclusiveness, cooperation, " -"and personal freedom. Published by Upper Rubber Boot Books." +"A thin forcefield gets projected around the user's body, continually " +"draining power. This field does not deflect attacks, but rather delivers a " +"strong shock, damaging unarmed attackers and those with a conductive weapon." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Sharp & Sugar Tooth" -msgid_plural "copies of Sharp & Sugar Tooth" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Sensory Dulling CBM" +msgid_plural "Sensory Dulling CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Sharp & Sugar Tooth -#: lang/json/BOOK_from_json.py +#. ~ Description for Sensory Dulling CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Sharp & Sugar Tooth: Women Up To No Good is a horror anthology of dark " -"fiction and darker appetites, edited by Octavia Cade. Containing 22 stories" -" of “bad” women, and “good” women who just haven’t been caught yet, it " -"features 22 fearless writers who identify as female, non-binary, or a " -"marginalized sex or gender identity. Published by Upper Rubber Boot Books." +"This module lets the user's nervous system inhibit pain signals, allowing " +"them to dull their senses at will. However, the use of this system may " +"cause delayed reaction times and drowsiness." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Broad Knowledge" -msgid_plural "copies of Broad Knowledge" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Power Armor Interface CBM" +msgid_plural "Power Armor Interface CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Broad Knowledge -#: lang/json/BOOK_from_json.py +#. ~ Description for Power Armor Interface CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Broad Knowledge: 35 Women Up To No Good is a feminist anthology of dark " -"fiction and darker knowledge, edited by Joanne Merriam. Containing 35 " -"stories of “bad” women, and “good” women who just haven’t been caught yet. " -"Published by Upper Rubber Boot Books." +"Interfaces the user's bionic power system with the internal charging port on" +" suits of power armor, allowing them to draw from the user's bionic power " +"banks." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Choose Wisely" -msgid_plural "copies of Choose Wisely" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Power Armor Mk. II Interface CBM" +msgid_plural "Power Armor Mk. II Interface CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Choose Wisely -#: lang/json/BOOK_from_json.py +#. ~ Description for Power Armor Mk. II Interface CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Choose Wisely: 35 Women Up To No Good is a feminist anthology of dark " -"fiction, co-edited by H. L. Nelson and Joanne Merriam. Containing 35 " -"stories of “bad” women, and “good” women who just haven’t been caught yet, " -"it features Joyce Carol Oates, Aimee Bender, Diane Cook, and 33 other " -"fearless women writers. Published by Upper Rubber Boot Books." +"Interfaces the user's bionic power system with the internal charging port on" +" suits of power armor, allowing them to draw from the user's bionic power " +"banks. Twice as efficient as the Mk. I model. The Mk. II was designed by " +"DoubleTech Inc., to meet the popularity of the Mk. II power armor series." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Apocalypse Now" -msgid_plural "copies of Apocalypse Now" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Power Storage CBM" +msgid_plural "Power Storage CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Apocalypse Now -#: lang/json/BOOK_from_json.py +#. ~ Description for Power Storage CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Every society and every generation has its version of the apocalypse: swine " -"flu, genetic mutation, global warming, nuclear fallout, the second coming, " -"peak oil, mass extinction, giant irradiated ants, zombies… Apocalypse Now: " -"Poems and Prose from the End of Days is the first anthology of its kind to " -"bring together the poetry and prose of some of America’s finest (though not " -"always most well-known) literary voices with an eye for the literary and the" -" popular, for story and lyric, for the past and the future, for the " -"psychological and the physical, for the real and the fantastic. Published " -"by Upper Rubber Boot Books." +"A Compact Bionics Module that upgrades the user's power capacity by 100 " +"units. Having at least one of these is a prerequisite to using powered " +"bionics. The user will also need a power supply, found in various CBMs." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "How to Live on Other Planets: A Handbook for Aspiring Aliens" -msgid_plural "copies of How to Live on Other Planets" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Power Storage CBM Mk. II" +msgid_plural "Power Storage CBM Mk. II" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for How to Live on Other Planets: A Handbook for Aspiring -#. Aliens -#: lang/json/BOOK_from_json.py +#. ~ Description for Power Storage CBM Mk. II +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"How to Live on Other Planets: A Handbook for Aspiring Aliens explores the " -"immigrant experience in a science fiction setting, with exciting fiction and" -" poetry from some of the genre’s best writers. Published by Upper Rubber " -"Boot Books." +"A Compact Bionics Module developed at DoubleTech Industries as a replacement" +" for the highly successful Power Storage CBM. Increases the user's power " +"capacity by 250 units." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "archery skill training abstract" -msgid_plural "archery skill training abstracts" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Probability Travel CBM" +msgid_plural "Probability Travel CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for archery skill training abstract -#: lang/json/BOOK_from_json.py -msgid "template for heavy books that confer archery skill training" +#. ~ Description for Probability Travel CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"Increases the body's wavelength, allowing the user to quantum tunnel through" +" walls, reappearing on the other side. Power drain in standby is minimal, " +"but each tile tunneled through costs 250 bionic power." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Lessons for the Novice Bowhunter" -msgid_plural "copies of Lessons for the Novice Bowhunter" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Air Filtration System CBM" +msgid_plural "Air Filtration System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Lessons for the Novice Bowhunter -#: lang/json/BOOK_from_json.py +#. ~ Description for Air Filtration System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This hefty paperback book contains all the information needed for novice " -"archers to get started hunting with a variety of bows and crossbows." +"An advanced filtration system that is implanted in the trachea. If toxins, " +"or airborne diseases find their way into the windpipe, the filter will " +"attempt to remove them." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Zen and the Art of Archery" -msgid_plural "copies of Zen and the Art of Archery" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Radiation Scrubber System CBM" +msgid_plural "Radiation Scrubber System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Zen and the Art of Archery -#: lang/json/BOOK_from_json.py +#. ~ Description for Radiation Scrubber System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This massive book contains a wealth of vital information for the novice " -"archer." +"A system of advanced piezomechanical blood filters that are implanted " +"throughout your body, allowing the user to purge themself of absorbed " +"radiation at the cost of some bionic power." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Archery for Kids" -msgid_plural "issues of Archery for Kids" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Railgun CBM" +msgid_plural "Railgun CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Archery for Kids -#: lang/json/BOOK_from_json.py +#. ~ Description for Railgun CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Will you be able to place the arrow right into the bullseye? It is not that" -" easy, but once you know how it's done, you will have a lot of fun with " -"archery." +"EM field generators in the user's arms increase the range and damage of " +"thrown magnetic objects at a cost of 1 bionic power per throw. They will " +"create a trail of electricity that can cause additional damage." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "car buyer's guide" -msgid_plural "car buyer's guides" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Fingertip Razors CBM" +msgid_plural "Fingertip Razors CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for car buyer's guide -#: lang/json/BOOK_from_json.py +#. ~ Description for Fingertip Razors CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Normally this glossy, ad-filled magazine about cars would be pointless, but " -"it has a series of articles on haggling techniques." +"A set of ten double-edged, four centimeter long razor-sharp claws that are " +"implanted underneath the fingernails. These will deal a small amount of " +"unarmed slashing damage whenever the user's fingertips are uncovered." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "How to Succeed in Business" -msgid_plural "copies of How to Succeed in Business" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Gasoline Fuel Cell CBM" +msgid_plural "Gasoline Fuel Cell CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for How to Succeed in Business -#: lang/json/BOOK_from_json.py -msgid "Useful if you want to get a good deal when purchasing goods." +#. ~ Description for Gasoline Fuel Cell CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A small gasoline fuel cell able to convert gasoline to bionic power. It's " +"connected to a diffuse network of bio-plastic bladders able to hold up to " +"500 ml of gasoline." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Advanced Economics" -msgid_plural "copies of Advanced Economics" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Recycler Unit CBM" +msgid_plural "Recycler Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Advanced Economics -#: lang/json/BOOK_from_json.py -msgid "A college textbook on economics." +#. ~ Description for Recycler Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A series of filters and processors that is implanted in the user's digestive" +" system, allowing them to reclaim waste liquid and, to a lesser degree, " +"nutrients. The net effect is a greatly reduced need to eat and drink." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Batter Up!" -msgid_plural "issues of Batter Up!" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Remote Controller CBM" +msgid_plural "Remote Controller CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Batter Up! -#: lang/json/BOOK_from_json.py +#. ~ Description for Remote Controller CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A baseball magazine that focuses on batting tips. There are lots of " -"colorful, full-page photos of skilled athletes demonstrating proper form and" -" technique." +"A small module that connects to the user's brain and allows them to " +"interface with nearby devices with wireless capabilities." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "tactical baton defense manual" -msgid_plural "tactical baton defense manuals" -msgstr[0] "«Тактика самозахисту за допомогою кийка»" -msgstr[1] "«Тактика самозахисту за допомогою кийка»" -msgstr[2] "«Тактика самозахисту за допомогою кийка»" -msgstr[3] "«Тактика самозахисту за допомогою кийка»" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Sonic Resonator CBM" +msgid_plural "Sonic Resonator CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for tactical baton defense manual -#: lang/json/BOOK_from_json.py +#. ~ Description for Sonic Resonator CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An informative guide to self-defense using clubs and batons. Aimed at the " -"law enforcement and military market, it is packed with time tested, no-" -"nonsense information and written to be understandable for beginners." +"This bionic module allows the user's entire body to resonate at very high " +"power, creating a short-range shockwave. While it will not do much damage " +"to creatures, solid objects such as walls and doors will be damaged." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Advanced Physical Chemistry" -msgid_plural "copies of Advanced Physical Chemistry" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Olfactory Mask CBM" +msgid_plural "Olfactory Mask CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Advanced Physical Chemistry -#: lang/json/BOOK_from_json.py +#. ~ Description for Olfactory Mask CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A university-level textbook on advanced principles of physical chemistry and" -" all its branches: thermochemistry, electrochemistry, solid-state chemistry," -" photochemistry, quantum chemistry et cetera." +"While this system is powered, the user's body will produce very little odor," +" making it nearly impossible for creatures to track them by scent." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Modern Tanner" -msgid_plural "copies of The Modern Tanner" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Electroshock Unit CBM" +msgid_plural "Electroshock Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Modern Tanner -#: lang/json/BOOK_from_json.py +#. ~ Description for Electroshock Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An in-depth and easy to read guide that details a very modern take on the " -"ancient art of leather tanning." +"While fighting unarmed, or with a weapon that conducts electricity, there is" +" a chance that a successful hit will shock the user's opponent, inflicting " +"extra damage and disabling them temporarily at the cost of some energy." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "PE050 \"Alpha\": Preliminary Report" -msgid_plural "copies of PE050 \"Alpha\": Preliminary Report" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Shockwave Generator CBM" +msgid_plural "Shockwave Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for PE050 "Alpha": Preliminary Report -#: lang/json/BOOK_from_json.py +#. ~ Description for Shockwave Generator CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This sheaf of papers--dated two weeks before all this started--describes " -"some new chemical formula, and its effects on human subjects. It's stamped " -"\"APPROVED\"…" +"This bionic module generates a powerful shockwave, knocking back all nearby " +"creatures. Targets are stunned briefly, take damage and additional stun " +"upon impact with impassable terrain, and knock back any creatures they " +"collide with." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "lab journal-Dionne" -msgid_plural "lab journals-Dionne" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Synaptic Accelerator CBM" +msgid_plural "Synaptic Accelerator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lab journal-Dionne -#: lang/json/BOOK_from_json.py +#. ~ Description for Synaptic Accelerator CBM +#: lang/json/BIONIC_ITEM_from_json.py +#, no-python-format msgid "" -"This team logbook details several varieties of mutagenic experiments, " -"focusing on those derived from various Earth fauna. The team seems quite " -"enthusiastic--if not eager--about their results." +"Bionic stimulators that enhance the nervous system, granting a 10% boost to " +"your speed." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "PE065 \"Chimera\": Best Practices" -msgid_plural "copies of PE065 \"Chimera\": Best Practices" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Muscle Augmentation CBM" +msgid_plural "Muscle Augmentation CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for PE065 "Chimera": Best Practices -#: lang/json/BOOK_from_json.py +#. ~ Description for Muscle Augmentation CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This sheaf of papers describes a new chemical formula in detail and supplies" -" instructions for its use as some sort of… crowd-control catalyst? That " -"can't be right…" +"Myomer fibers that enhance the muscular system, granting a +2 bonus to " +"strength." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "lab journal-Smythe" -msgid_plural "lab journals-Smythe" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Autonomous Surgical Scalpels CBM" +msgid_plural "Autonomous Surgical Scalpels CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lab journal-Smythe -#: lang/json/BOOK_from_json.py +#. ~ Description for Autonomous Surgical Scalpels CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This team logbook details several varieties of mutagenic experiments, " -"focusing on those derived from flesh contaminated with XE037. The results " -"look promising but the procurement methods seem awfully vague…" +"A system of surgical grade scalpels that is implanted in the user's fingers." +" They allow for automated precise cuts and can be used as a high-quality " +"butchering tool." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "standpipe maintenance log" -msgid_plural "standpipe maintenance logs" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Anti-Glare Compensators CBM" +msgid_plural "Anti-Glare Compensators CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for standpipe maintenance log -#: lang/json/BOOK_from_json.py +#. ~ Description for Anti-Glare Compensators CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This binder details the scheduled maintenance for several plumbing systems " -"throughout the facility. However, some of the log sheets seem to be filled " -"with… a chemical formula?" +"A set of quick-reacting transition lenses that are installed over the user's" +" eyes. They negate glare penalties, partially protect from bright flashes, " +"and protect the eyes when welding." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "chemical reference-CLASSIFIED" -msgid_plural "chemical references-CLASSIFIED" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Targeting System CBM" +msgid_plural "Targeting System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chemical reference-CLASSIFIED -#: lang/json/BOOK_from_json.py +#. ~ Description for Targeting System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This somewhat technical binder has several intimidating security warnings on" -" the cover, yet guarantees unauthorized readers \"permanent employment, for " -"life\". It contains useful information on \"basic\" chemical projects like " -"methamphetamine and heroin, along with briefing on things called \"XE037\" " -"and \"PE012\"." +"This bionic module contains range finders and synchronizes the movement of " +"the user's eyes with their arms, to a degree. Shots they fire will be much " +"more accurate, particularly at long ranges." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "lab journal-x-|xp" -msgid_plural "lab journals-x-|xp" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Teleportation Unit CBM" +msgid_plural "Teleportation Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lab journal-x-|xp -#: lang/json/BOOK_from_json.py +#. ~ Description for Teleportation Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This damaged team logbook lacks (deliberately?) any identifying information," -" but still contains useful information on several types of mutagen and their" -" development." +"This highly experimental unit folds space over short distances, instantly " +"transporting the user's body up to 25 feet in a random duration at the cost " +"of much power. Note that prolonged or frequent use may have dangerous side " +"effects." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "PE023 \"Medical\": Application and Findings" -msgid_plural "copies of PE023 \"Medical\": Application and Findings" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Time Dilation CBM" +msgid_plural "Time Dilation CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for PE023 "Medical": Application and Findings -#: lang/json/BOOK_from_json.py +#. ~ Description for Time Dilation CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This binder of highly technical papers describes some new chemical formula, " -"and its effects on human subjects. It's stamped \"APPROVED\"…" +"At the cost of all stored bionic power, the user may increase their body " +"speed and reactions dramatically, essentially freezing time. Violent or " +"rapid movements may cause damage due to friction." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "PE070 \"Raptor\": Proposal" -msgid_plural "copies of PE070 \"Raptor\": Proposal" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Integrated Toolset CBM" +msgid_plural "Integrated Toolset CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for PE070 "Raptor": Proposal -#: lang/json/BOOK_from_json.py +#. ~ Description for Integrated Toolset CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This sheaf of papers is a highly speculative proposal for focusing " -"\"PE065\". Scribbled notes throughout seem to think that it might work, but" -" that there's no time." +"A surgically implanted set of tools - screwdriver, hammer, wrench, hacksaw, " +"drill, welder and heating elements. These can be used in place of many " +"tools when crafting." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Best Practices for Compound Delivery" -msgid_plural "copies of Best Practices for Compound Delivery" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Joint Torsion Ratchet CBM" +msgid_plural "Joint Torsion Ratchet CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Best Practices for Compound Delivery -#: lang/json/BOOK_from_json.py +#. ~ Description for Joint Torsion Ratchet CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This internal manual details several varieties of mutagenic experiments, as " -"well as describing the protocols used to concentrate mutagens for quicker " -"results. The authors recommend that researchers ensure that their subjects " -"are well-fed and in good health, as the concentrated serums draw heavily on " -"subjects' bodies." +"Torsion ratchets that replace the user's joints to slowly generate power " +"when they move. These can be toggled to generate more power, but movement " +"will require more effort." msgstr "" -"Це посібник для внутрішнього користування з проведення экспериментів із " -"застосуванням мутагенів, що описує різноманітні способи посилення " -"концентрації мутагенів для прискорення результатів. Автори рекомендують " -"дослідникам впевнитися, що поддослідні здорові і не виснажені, так як " -"концентровані сироватки наносять суттєву шкоду здоров'ю піддослідних." -#: lang/json/BOOK_from_json.py -msgid "CRC-Merck Handbook, 4th edition" -msgid_plural "copies of CRC-Merck Handbook, 4th edition" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Joint Servo CBM" +msgid_plural "Joint Servo CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRC-Merck Handbook, 4th edition -#: lang/json/BOOK_from_json.py +#. ~ Description for Joint Servo CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This huge hardbound book is a collection of reference data and formulae " -"pertinent to many technical disciplines. If poring over tables of chemical " -"and physical data is your thing, this is the book for you." +"A set of servomotors that get installed on leg joints to provide power-" +"assisted movement. They are optimized for running, but walking also " +"requires less effort while this bionic is active. However, when it's " +"offline it will hamper the user's movement." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "chemistry textbook" -msgid_plural "chemistry textbooks" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Uncanny Dodge CBM" +msgid_plural "Uncanny Dodge CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chemistry textbook -#: lang/json/BOOK_from_json.py -msgid "A college textbook on chemistry." +#. ~ Description for Uncanny Dodge CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"Bionic processors that augment the user's nervous system, allowing them to " +"dodge attacks beyond normal human capability, including bullets." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Essential Oil Enthusiasts Handbook" -msgid_plural "copies of The Essential Oil Enthusiasts Handbook" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Unified Power System CBM" +msgid_plural "Unified Power System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Essential Oil Enthusiasts Handbook -#: lang/json/BOOK_from_json.py +#. ~ Description for Unified Power System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A heavy hardback book explaining the process of essential oil making, with " -"schematics for the equipment to do it. Good luck, and don't blow yourself " -"up!" +"A Unified Power System that is wired into the user's bionic power banks. " +"Objects that run on a UPS can now directly draw power from the bionic power " +"supply." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Art and Science of Chemical Warfare" -msgid_plural "copies of Art and Science of Chemical Warfare" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Internal Chronometer CBM" +msgid_plural "Internal Chronometer CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Art and Science of Chemical Warfare -#: lang/json/BOOK_from_json.py +#. ~ Description for Internal Chronometer CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This in-depth and technical text covers the design, development, " -"dissemination of, and defenses against various chemical weapons throughout " -"the centuries. The photographs the author chose make it a difficult read at" -" times, though the information is top-notch." +"This bionic module contains an atomic clock, complete with silent alarm " +"clock function." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Chemistry for Kids: Awesome Science Experiments that Really Work" -msgid_plural "" -"copies of Chemistry for Kids: Awesome Science Experiments that Really Work" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Water Extraction Unit CBM" +msgid_plural "Water Extraction Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Chemistry for Kids: Awesome Science Experiments that -#. Really Work -#: lang/json/BOOK_from_json.py +#. ~ Description for Water Extraction Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A book with comprehensive and accurate step-by-step illustrated instructions" -" for many scientific experiments for young researchers and anyone else who " -"want to delve into an amazing world of chemistry." +"This module contains nanotubes that are embedded in the palm of the hand to " +"pump any available fluid out of a dead body, cleanse it of impurities and " +"convert it into potable water. Water container not included." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Biodiesel: Renewable Fuel Resource" -msgid_plural "copies of Biodiesel: Renewable Fuel Resource" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Intravenous Needletip CBM" +msgid_plural "Intravenous Needletip CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Biodiesel: Renewable Fuel Resource -#: lang/json/BOOK_from_json.py -msgid "A large textbook for college students about biodiesel." -msgstr "Великий підручник по біодизелю для студентів коледжів." +#. ~ Description for Intravenous Needletip CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A small tube with a retractable needle that terminates in a net of tiny " +"hoses instead of a plunger. Installed, it allows the user to draw " +"substances directly into their bloodstream akin to a regular syringe." +msgstr "" -#: lang/json/BOOK_from_json.py -msgid "SICP" -msgid_plural "copies of SICP" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Titanium Skeletal Bracing CBM" +msgid_plural "Titanium Skeletal Bracing CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for SICP -#: lang/json/BOOK_from_json.py +#. ~ Description for Titanium Skeletal Bracing CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A classic text, \"The Structure and Interpretation of Computer Programs.\" " -"Written with examples in LISP, but applicable to any language." +"A set of hinges, springs, and other synthetic augments for the skeletal " +"structure. These artificial enhancers strengthen the knees and elbows, " +"allowing the user to carry more weight." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Computer Science 301" -msgid_plural "copies of Computer Science 301" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Taste Modifier CBM" +msgid_plural "Taste Modifier CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Computer Science 301 -#: lang/json/BOOK_from_json.py -msgid "A college textbook on computer science." +#. ~ Description for Taste Modifier CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A set of highly sensitive sensors implanted in the user's mouth, combined " +"with a sophisticated analyzer. While active, it will block all unpleasant " +"taste and texture at the cost of bionic energy." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "How to Browse the Web" -msgid_plural "copies of How to Browse the Web" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Soporific Induction CBM" +msgid_plural "Soporific Induction CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for How to Browse the Web -#: lang/json/BOOK_from_json.py -msgid "Very beginner-level information about computers." +#. ~ Description for Soporific Induction CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A microscopic electrode designed to gently stimulate a particular cluster of" +" neurons in the hypothalamus, helping the user to fall asleep." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Computer World" -msgid_plural "issues of Computer World" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Squeaky Ankles" +msgid_plural "Squeaky Ankles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Computer World -#: lang/json/BOOK_from_json.py -msgid "" -"An informative magazine all about computers, both hardware and software." +#. ~ Description for Squeaky Ankles +#: lang/json/BIONIC_ITEM_from_json.py +msgid "A pair of defective bionics that make squeaking noises." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Computer Science 101" -msgid_plural "copies of Computer Science 101" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Pieces Of Junk" +msgid_plural "Pieces of Junk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Computer Science 101 -#: lang/json/BOOK_from_json.py -msgid "An entry-level textbook about computers." +#. ~ Description for Pieces Of Junk +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A jumble of broken metal pieces that were removed during reconstructive " +"surgery." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Principles of Advanced Programming" -msgid_plural "copies of Principles of Advanced Programming" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Acidic Leaking CBM" +msgid_plural "Acidic Leaking CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Principles of Advanced Programming -#: lang/json/BOOK_from_json.py +#. ~ Description for Acidic Leaking CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A heavy textbook dedicated to advanced-level software design, written for " -"several different programming languages." +"This CBM has been breached in several places and some acid is leaking from " +"it." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Web Design Basics" -msgid_plural "copies of Web Design Basics" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Faulty Electric System" +msgid_plural "Faulty Electric Systems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Web Design Basics -#: lang/json/BOOK_from_json.py -msgid "" -"A thick glossy paperback instructional manual for aspiring web designers " -"that includes a teaching guide for young students." +#. ~ Description for Faulty Electric System +#: lang/json/BIONIC_ITEM_from_json.py +msgid "This CBM is a mess of naked wire and burnt resistors." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Pro Hacker Secrets" -msgid_plural "copies of Pro Hacker Secrets" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Electrical Drain" +msgid_plural "Electrical Drains" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pro Hacker Secrets -#: lang/json/BOOK_from_json.py +#. ~ Description for Electrical Drain +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A thinly veiled attempt at teaching kids coding skills. Not nearly as " -"exciting as the authors might have hoped, but there's some real knowledge in" -" here." +"This CBM was wired incorrectly and would drain power from any system " +"connected to it." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Homebrewer's Bible" -msgid_plural "copies of The Homebrewer's Bible" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Itchy Metal Thing" +msgid_plural "Itchy Metal Things" +msgstr[0] "Щось металеве що свербить" +msgstr[1] "Щось металеве що свербить" +msgstr[2] "Щось металеве що свербить" +msgstr[3] "Щось металеве що свербить" + +#. ~ Description for Itchy Metal Thing +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"You can't recognize what this is supposed to be, but it's a very awkward " +"thing to have in one's body." +msgstr "" + +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Glowy Thing" +msgid_plural "Glowy Things" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Homebrewer's Bible -#: lang/json/BOOK_from_json.py -msgid "" -"A book full of easy-to-follow recipes and useful advice on homebrewing, " -"malting, and fermenting. It even smells faintly of booze." +#. ~ Description for Glowy Thing +#: lang/json/BIONIC_ITEM_from_json.py +msgid "It's a… thing? And it glows, at least it did when it was plugged in." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Cooking on a Budget" -msgid_plural "copies of Cooking on a Budget" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Leaky Bionic" +msgid_plural "Leaky Bionics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cooking on a Budget -#: lang/json/BOOK_from_json.py +#. ~ Description for Leaky Bionic +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A nice cook book that goes beyond recipes and into the chemistry of food." +"A mess of pierced pipes and broken seals, something unpleasant is leaking " +"from it." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "To Serve Man" -msgid_plural "copies of To Serve Man" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Noisemaker" +msgid_plural "Noisemakers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for To Serve Man -#: lang/json/BOOK_from_json.py -msgid "It's… it's a cookbook!" +#. ~ Description for Noisemaker +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A malfunctioning bionic. When powered, it occasionally emits a loud burst " +"of noise." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Cucina Italiana" -msgid_plural "copies of Cucina Italiana" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Bionic Nostril" +msgid_plural "Bionic Nostrils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cucina Italiana -#: lang/json/BOOK_from_json.py +#. ~ Description for Bionic Nostril +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This cookbook is written in Italian, but handily illustrated with step by " -"step photo instructions." +"This thing was up someone's nose, they're probably glad to be rid of it." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Sushi Made Easy" -msgid_plural "copies of Sushi Made Easy" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Bionic Visual Impairment" +msgid_plural "Bionic Visual Impairments" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Sushi Made Easy -#: lang/json/BOOK_from_json.py -msgid "" -"A simple text for the aspiring sushi lover, this easy to read guide is " -"filled with lots of helpful illustrations for everything from basic rice " -"preparation to setting a proper Japanese table." +#. ~ Description for Bionic Visual Impairment +#: lang/json/BIONIC_ITEM_from_json.py +msgid "A defective bionic that impairs vision." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "family cookbook" -msgid_plural "family cookbooks" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Power Overload" +msgid_plural "Power Overloads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for family cookbook -#: lang/json/BOOK_from_json.py +#. ~ Description for Power Overload +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A big binder full of somebody's family recipes. The well-turned pages and " -"creased corners speak volumes of the culinary knowledge contained within. " -"You could probably learn a lot about cooking from studying this domestic " -"artifact." +"A bunch of defective power circuits that are prone to short-circuiting." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Bon Appetit" -msgid_plural "issues of Bon Appetit" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Bionic Short Circuit" +msgid_plural "Bionic Short Circuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Bon Appetit -#: lang/json/BOOK_from_json.py -msgid "" -"Exciting recipes and restaurant reviews. Full of handy tips about cooking." +#. ~ Description for Bionic Short Circuit +#: lang/json/BIONIC_ITEM_from_json.py +msgid "This bionic is poorly wired and occasionally short-circuits." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Glamopolitan" -msgid_plural "issues of Glamopolitan" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Endocrine Enervator" +msgid_plural "Endocrine Enervators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Glamopolitan -#: lang/json/BOOK_from_json.py +#. ~ Description for Endocrine Enervator +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This is a full-size glossy women's magazine. There are a few unoriginal " -"recipes and some simple cooking tips somewhere in between the fashion photos" -" and the sex advice columns." +"This malfunctioning bionic causes fatigue by altering the unfortunate user's" +" brain chemistry." msgstr "" -#. ~ That would translate out to The Scottish Book of Cookery, or The Scottish -#. Cookbook. -#: lang/json/BOOK_from_json.py -msgid "Ye Scots Beuk o Cuikery" -msgid_plural "copies of Ye Scots Beuk o Cuikery" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Synaptic Regeneration System CBM" +msgid_plural "Synaptic Regeneration System CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ye Scots Beuk o Cuikery -#: lang/json/BOOK_from_json.py +#. ~ Description for Synaptic Regeneration System CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A semi-translated Gaelic cookbook from sixteenth century Scotland. While a " -"bit difficult to read, as there are a disquieting number of illustrations of" -" people stabbing each other mixed with rants about 'True Scotsman', it " -"provides insights into medieval Scottish cuisine and culture." +"An electromagnetic stimulator has been surgically implanted on the back of " +"your head and along your spine, continually draining power. As long as it's" +" active, you won't become sleep deprived; and if you're sleep deprived " +"already, it will boost the rate of recovery." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Vinegar Maker's Handbook" -msgid_plural "copies of Vinegar Maker's Handbook" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Motor Control Overstimulator" +msgid_plural "Motor Control Overstimulators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Vinegar Maker's Handbook -#: lang/json/BOOK_from_json.py +#. ~ Description for Motor Control Overstimulator +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This book describes in detail all the ways that one can make vinegar. You " -"would have thought that there wasn't much to making vinegar, but the girth " -"of this book tells you otherwise." +"The result of poor configuration, this bionic module frequently causes " +"debilitating muscle spasms." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Drink the Harvest" -msgid_plural "copies of Drink the Harvest" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Wire-Induced Stiffness" +msgid_plural "Wire-Induced Stiffnesses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Drink the Harvest -#: lang/json/BOOK_from_json.py -msgid "" -"Canning foods doesn't have to stop with jam and pickles. This book provides" -" a plethora of juices that can be preserved." +#. ~ Description for Wire-Induced Stiffness +#: lang/json/BIONIC_ITEM_from_json.py +msgid "A length of poorly installed wiring that would cause stiffness." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Offal Holiday Cooking" -msgid_plural "copies of Offal Holiday Cooking" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Self-Locking Thumbs" +msgid_plural "Self-Locking Thumbs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Offal Holiday Cooking -#: lang/json/BOOK_from_json.py -msgid "" -"Offal Holiday Cooking, by Evelyn Turncoat, is a book of holiday recipes that" -" utilize organ meats from various animals. For the true nose-to-tail cook." +#. ~ Description for Self-Locking Thumbs +#: lang/json/BIONIC_ITEM_from_json.py +msgid "A pair of faulty, self-locking thumb bionics." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Things to do with Milk" -msgid_plural "copies of Things to do with Milk" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Visual Disruptor" +msgid_plural "Visual Disruptors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Things to do with Milk -#: lang/json/BOOK_from_json.py +#. ~ Description for Visual Disruptor +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Whatever you want to do with milk, you will probably find it in this book." +"A pair of defective ocular bionics that cause visual distortion and " +"pixelation." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Liver-Licious Recipes Your Kids Will Love" -msgid_plural "copies of Liver-Licious Recipes" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Voice Remodulator" +msgid_plural "Voice Remodulators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Liver-Licious Recipes Your Kids Will Love -#: lang/json/BOOK_from_json.py +#. ~ Description for Voice Remodulator +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This cookbook is written by liver enthusiast Tamsyn Beckerleg. Inside " -"you'll find a great deal of anecdotes about the near-certain ruination of " -"children who refuse to eat their liver." +"Part of the autodoc's 'Cyborg Identity Package', this bionic gives the user " +"a creepy robot voice." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Dainty Dishes Fit for a King" -msgid_plural "copies of Dainty Dishes" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Solar Panels CBM" +msgid_plural "Solar Panels CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dainty Dishes Fit for a King -#: lang/json/BOOK_from_json.py +#. ~ Description for Solar Panels CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This cookbook contains many fanciful recipes. Some of them are even worth " -"the trouble to actually prepare. Lovely pen and ink illustrations of " -"overweight knights and gluttonous monks line the pages." +"Installed on your back is a set of retractable solar panels. When in direct" +" sunlight, they will automatically deploy and slowly recharge your power " +"level." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Eat Your Way to a Fit Physique" -msgid_plural "copies of Eat Your Way" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Deployable Grenade Launcher CBM" +msgid_plural "Deployable Grenade Launcher CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Eat Your Way to a Fit Physique -#: lang/json/BOOK_from_json.py +#. ~ Description for Deployable Grenade Launcher CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This self-help book, by \"acclaimed nutrition and health guru Amar de " -"Freitas,\" is as dubious as its title. Worse, it is boring. It does, " -"however, contain a few basic cooking instructions." +"A small, folding tube that attaches to your right arm. Once implanted, it " +"can serve as a portable, integrated tool for firing 40mm grenades and " +"canisters." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Food Fashions for Young Moderns" -msgid_plural "copies of Food Fashions" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Linguistic Coprocessor CBM" +msgid_plural "Linguistic Coprocessor CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Food Fashions for Young Moderns -#: lang/json/BOOK_from_json.py +#. ~ Description for Linguistic Coprocessor CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A cookbook professing itself to be for those seeking \"daring and " -"sophisticated flavors.\" The book exhorts the reader to defy convention and" -" break the rules, and then presents a number of useful rules and conventions" -" for preparing food." +"A microcomputer installed into the left hemisphere of your brain to increase" +" the speed that it processes language. When installed, it provides a " +"passive boost to reading speed." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Winemaking for Beginners" -msgid_plural "copies of Winemaking for Beginners" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Dopamine Stimulators CBM" +msgid_plural "Dopamine Stimulators CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Winemaking for Beginners -#: lang/json/BOOK_from_json.py +#. ~ Description for Dopamine Stimulators CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Winemaking, is an art form. This book teaches you how to crayon within the " -"lines." +"A set of tiny bionic nerve stimulators that install into the reward center " +"of your brain. When run with bionic power, it periodically releases a hit " +"of dopamine and other reward chemicals, inducing a state of euphoria and " +"suppressing fear." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "You Can Can at Home" -msgid_plural "copies of You Can Can at Home" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Counteractive Reflexes CBM" +msgid_plural "Counteractive Reflexes CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for You Can Can at Home -#: lang/json/BOOK_from_json.py +#. ~ Description for Counteractive Reflexes CBM +#. ~ Description for Counteractive Reflexes +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"This entry-level guide to home canning talks about the importance of acidity" -" and food contents in preservation, and how to avoid contaminants in your " -"canning batches." +"Cybernetic stimulators installed across your nervous system boost your " +"reflexes whenever you are hit in melee, granting you an extra action. This " +"bionic must be active to function." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Can Sealer Instructions" -msgid_plural "copies of Can Sealer Instructions" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Melee Optimization Unit CBM" +msgid_plural "Melee Optimization Unit CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Can Sealer Instructions -#: lang/json/BOOK_from_json.py +#. ~ Description for Melee Optimization Unit CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This dry guide to a home-use tin can sealer goes into clear detail on " -"everything you can seal with the device and how to do it safely, and " -"includes some basic recipes." +"An implanted AI executes the optimal followup for each of your melee " +"strikes, allowing you to chain them with unnatural speed and grace. This " +"bionic must be active to function." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Baker's Companion" -msgid_plural "copies of The Baker's Companion" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Neurosoft: Aeronautics CBM" +msgid_plural "Neurosoft: Aeronautics CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Baker's Companion -#: lang/json/BOOK_from_json.py +#. ~ Description for Neurosoft: Aeronautics CBM +#. ~ Description for Neurosoft: Aeronautics +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"This book promises to teach you the ways of baking, from cakes to souffles." +"A brain implant that grants instinctual knowledge about the operation of " +"flying machines." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Fermenting Culture" -msgid_plural "copies of Fermenting Culture" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Cranium Bomb" +msgid_plural "Cranium Bombs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Fermenting Culture -#: lang/json/BOOK_from_json.py +#. ~ Description for Cranium Bomb +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Fermenting as a cooking practice only recently came back into vogue before " -"the Cataclysm. Here is a book with dozens of recipes, many of which you are" -" unlikely to ever see the ingredients for again." +"A bomb installed where your spine meets your brain stem. It's on a timer " +"from installation and you don't have the codes to reset the timer." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Out of the Holler and into the Home: A guide to home distillation" -msgid_plural "copies of Out of the Holler" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Skullgun CBM" +msgid_plural "Skullgun CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Out of the Holler and into the Home: A guide to home -#. distillation -#: lang/json/BOOK_from_json.py +#. ~ Description for Skullgun CBM +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"A book describing the history of at home distillation by liquor. Each " -"chapter contains a complete recipe for its namesake." +"Concealed in your head is a single shot .40 pistol. Activate the bionic to " +"fire and reload the skullgun." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Sweets for your Sweet Child" -msgid_plural "copies of Sweets for Sweet" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Implanted translocator CBM" +msgid_plural "Implanted translocator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Sweets for your Sweet Child -#: lang/json/BOOK_from_json.py +#. ~ Description for Implanted translocator CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Sweets for your Sweet Child is the best selling cooking book to the parents " -"of young children. Every recipe uses oversized text, easy words and diagram" -" instructions for children learning to cook with their parents." +"An experimental teleportation system carefully weaved into bone marrow and " +"coiled alongside the skeletal system. It allows its user to safely and " +"readily teleport towards a previously activated telepad." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Pocket Survival Cookbook" -msgid_plural "copies of Pocket Survival Cookbook" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Emergency Insulation" +msgid_plural "Emergency Insulations" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pocket Survival Cookbook -#: lang/json/BOOK_from_json.py +#. ~ Description for Emergency Insulation +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"The smallest cookbook on the market, marketed exclusively to the " -"outdoorsman. Packs a surprising number of recipes for its tiny size." +"A system designed to prevent instantaneous frostbite in workers exposed to " +"things like hard vacuum and liquid nitrogen." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Tasting India" -msgid_plural "copies of Tasting India" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Weak Energy Field CBM" +msgid_plural "Weak Energy Field CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Tasting India -#: lang/json/BOOK_from_json.py +#. ~ Description for Weak Energy Field CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"A thick hardcover book as much about Indian culture as it is a cookbook, " -"clearly written with adoration." +"Imagine a computer inside your body playing pong against the universe. The " +"paddles are made of energy fields and how it causes this to happen are trade" +" secrets. -From the owners manual of HawkingCorps EnergyField Mark I. This" +" field is rated to reduce bashing and cut damage as viewed in your HUD by 5 " +"points." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "All About Swords" -msgid_plural "issues of All About Swords" -msgstr[0] "«Все про мечі» " -msgstr[1] "примірника «Все про мечі» " -msgstr[2] "примірників «Все про мечі» " -msgstr[3] "примірники «Все про мечі» " +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Combat Rated Energy Field CBM" +msgid_plural "Combat Rated Energy Field CBMs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for All About Swords -#: lang/json/BOOK_from_json.py +#. ~ Description for Combat Rated Energy Field CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"An interesting magazine that contains information about swords and sword " -"fighting techniques from all across the world." +"The HawkingCorps EnergyField Mark 2 was designed for police actions during " +"food riots and other civilian uprisings. It has proven cabaple of " +"protecting against most improvised weapons. This field is rated to reduce " +"bashing and cut damage as viewed in your HUD by 15 points." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "knife fighter's notes" -msgid_plural "knife fighter's notes" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Debt Collection Agent Personal EnergyField CBM" +msgid_plural "Debt Collection Agent Personal EnergyField CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "knife fighter's notes"} -#: lang/json/BOOK_from_json.py +#. ~ Description for Debt Collection Agent Personal EnergyField CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"It seems to be a guide to edged weapon combat, poorly photocopied and " -"released on spiral- bound paper. Still, there are lots of useful tips for " -"beginners." +"This class of personal energy field often sees action on both sides of the " +"vicious ship-to-ship boarding fights that are common with both repossession " +"and piracy. It remains practically impenetrable to melee weapons that lack " +"sharp piercing points. This field is rated to reduce bashing and cut damage" +" as viewed in your HUD by 25 points." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "USMC Sword Manual Procedure" -msgid_plural "copies of USMC Sword Manual Procedures" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Kinetic Attenuation Field CBM" +msgid_plural "Kinetic Attenuation Field CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for USMC Sword Manual Procedure -#: lang/json/BOOK_from_json.py -msgid "A text on stationary sword drills in US Marine Corps." +#. ~ Description for Kinetic Attenuation Field CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A personal kinetic attenuation field that slows incoming projectiles by " +"converting their kinetic energy into bursts of visible light. Although this" +" version is not powerful enough to defeat most pistol or rifle cartridges by" +" itself, it greatly increases survival odds when combined with traditional " +"ballistic armor. This field is rated to reduce ballistic and piercing " +"damage as viewed in your HUD by 10 points." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Dance Dance Dance!" -msgid_plural "issues of Dance Dance Dance!" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Pattern-U15 Attenuation Field CBM" +msgid_plural "Pattern-U15 Attenuation Field CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dance Dance Dance! -#: lang/json/BOOK_from_json.py -msgid "Learn the moves of the trendiest dances right now." +#. ~ Description for Pattern-U15 Attenuation Field CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A military grade kinetic attenuation system developed for use within UICA's " +"special service branches. Although much more effective than anything that " +"could be conceived with current technology, it remains a pale imitation of " +"the Hyperspace Age systems it was reverse engineered from. A side effect " +"modern engineering seems unable to address is the tendency for this unit to " +"release electrical fields when hit. This field is rated to reduce ballistic" +" and piercing damage as viewed in your HUD by 20 points" msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Book of Dances" -msgid_plural "copies of The Book of Dances" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Kinetic annulment system CBM" +msgid_plural "Kinetic annulment system CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Book of Dances -#: lang/json/BOOK_from_json.py +#. ~ Description for Kinetic annulment system CBM +#: lang/json/BIONIC_ITEM_from_json.py msgid "" -"This massive antique book documents dances from all around the world in " -"great detail. A perceptive reader could learn a lot about defensive " -"footwork from some of the war dances." +"A kinetic attenuation system salvaged from a pre-discontinuity robotic " +"warframe, crudely adapted for compatibility with biological hosts. Powerful" +" enough to completely stop most rifle cartridges. This field is rated to " +"reduce ballistic and piercing damage as viewed in your HUD by 40 points" msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Break a Leg!" -msgid_plural "copies of Break a Leg!" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Precision Solderers CBM" +msgid_plural "Precision Solderers CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Break a Leg! -#: lang/json/BOOK_from_json.py -msgid "The Kids' Guide to Acting and Stagecraft." +#. ~ Description for Precision Solderers CBM +#: lang/json/BIONIC_ITEM_from_json.py +msgid "" +"A set of tiny electronics tools, including soldering irons and wire cutters." +" They serve no purpose on their own, but are required for crafting bionics." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Treasury of Legends about Western Dancing" -msgid_plural "copies of Western Dancing" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Wind Turbine CBM" +msgid_plural "Wind Turbine CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Treasury of Legends about Western Dancing -#: lang/json/BOOK_from_json.py +#. ~ Description for Wind Turbine CBM +#. ~ Description for Wind Turbines +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"Written by Emanuel Nogueira, a constabulario and historian of Nuevo Laredo, " -"this massive book details the movements and cultural legacies of a variety " -"of North American folk dances." +"Installed on your body is a set of small retractable wind turbines. When " +"activated, they will deploy and slowly harvest wind power to recharge your " +"power level." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "AAA Guide" -msgid_plural "copies of AAA Guide" +#: lang/json/BIONIC_ITEM_from_json.py +msgid "Ionic Overload Generator CBM" +msgid_plural "Ionic Overload Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for AAA Guide -#: lang/json/BOOK_from_json.py +#. ~ Description for Ionic Overload Generator CBM +#. ~ Description for Ionic Overload Generator +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"A tourist-centric guide to points of interest throughout the country. " -"Though it focuses on the north-central US, the driving sections contain some" -" practical tips on proper driving techniques." +"A powerful ion energy generator is implanted on your chest. Fires a " +"powerful, ever-expanding energy blast. The resulting blast ignites oxygen " +"creating fires as it moves and an explosion on impact. Close range use is " +"highly discouraged." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Top Gear magazine" -msgid_plural "Top Gear magazines" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Blood Power Generator CBM" +msgid_plural "Blood Power Generator CBMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Top Gear magazine -#: lang/json/BOOK_from_json.py -msgid "Lots of articles about cars and driving techniques." +#. ~ Description for Blood Power Generator CBM +#: lang/json/BIONIC_ITEM_from_json.py +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 "" -#: lang/json/BOOK_from_json.py -msgid "The Rules of the Road" -msgid_plural "copies of The Rules of the Road" +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py +msgid "Crystallized Mana Nose Replacement" +msgid_plural "Crystallized Mana Nose Replacements" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Rules of the Road -#: lang/json/BOOK_from_json.py -msgid "" -"A thick textbook for beginning drivers. It contains chapters on laws, safe " -"vehicle operation, and defensive driving concepts." -msgstr "" - -#. ~ Description for AAA Guide -#: lang/json/BOOK_from_json.py +#. ~ Description for Crystallized Mana Nose Replacement +#: lang/json/BIONIC_ITEM_from_json.py lang/json/bionic_from_json.py msgid "" -"A tourist-centric guide to points of interest throughout the country. This " -"particular copy is apparently the Anonymous Anarchist's Annual: the cover " -"conceals a wealth of ways to help stick it to The Man, along with plenty of " -"advice for avoiding police." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Advanced Electronics" -msgid_plural "copies of Advanced Electronics" +msgid "The Museum of All Things Awesome and That Go Boom" +msgid_plural "copies of The Museum of All Things Awesome and That Go Boom" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Advanced Electronics +#. ~ Description for The Museum of All Things Awesome and That Go Boom #: lang/json/BOOK_from_json.py -msgid "A college textbook on circuit design." +msgid "" +"The Museum of All Things Awesome and That Go Boom is an anthology of science" +" fiction featuring blunt force trauma, explosions, adventure, derring-do, " +"tigers, Martians, zombies, fanged monsters, dinosaurs (alien and domestic), " +"ray guns, rocket ships, and anthropomorphized marshmallows. Published by " +"Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ham Radio Illustrated" -msgid_plural "issues of Ham Radio Illustrated" +msgid "Sunvault: Stories of Solarpunk & Eco-Speculation" +msgid_plural "copies of Sunvault" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ham Radio Illustrated +#. ~ Description for Sunvault: Stories of Solarpunk & Eco-Speculation #: lang/json/BOOK_from_json.py msgid "" -"An amusing magazine about ham radio, with lots of diagrams and illustrations" -" for making your own electronic devices." +"Sunvault is the first English-language anthology to broadly collect " +"solarpunk short fiction, artwork, and poetry. A new genre for the 21st " +"Century, solarpunk is a revolution against despair. Focusing on solutions " +"to environmental disasters, solarpunk envisions a future of green, " +"sustainable energy used by societies that value inclusiveness, cooperation, " +"and personal freedom. Published by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "What's a Transistor?" -msgid_plural "copies of What's a Transistor?" +msgid "Sharp & Sugar Tooth" +msgid_plural "copies of Sharp & Sugar Tooth" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for What's a Transistor? +#. ~ Description for Sharp & Sugar Tooth #: lang/json/BOOK_from_json.py -msgid "A basic manual of electronics and circuit design." -msgstr "Базовий посібник з електроніки й схемотехніки." +msgid "" +"Sharp & Sugar Tooth: Women Up To No Good is a horror anthology of dark " +"fiction and darker appetites, edited by Octavia Cade. Containing 22 stories" +" of “bad” women, and “good” women who just haven’t been caught yet, it " +"features 22 fearless writers who identify as female, non-binary, or a " +"marginalized sex or gender identity. Published by Upper Rubber Boot Books." +msgstr "" #: lang/json/BOOK_from_json.py -msgid "101 Important Integrated Circuits" -msgid_plural "copies of 101 Important Integrated Circuits" +msgid "Broad Knowledge" +msgid_plural "copies of Broad Knowledge" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 101 Important Integrated Circuits +#. ~ Description for Broad Knowledge #: lang/json/BOOK_from_json.py msgid "" -"This reference manual contains datasheets and pinout diagrams for 101 of the" -" most popular IC chips, including the 555 timer, LM358 op-amp, and LM317 " -"voltage regulator, along with logic chips from the 74xx family, and even the" -" 6502 8-bit processor. If you want to do anything useful with integrated " -"circuits, a reference like this would be indispensable." +"Broad Knowledge: 35 Women Up To No Good is a feminist anthology of dark " +"fiction and darker knowledge, edited by Joanne Merriam. Containing 35 " +"stories of “bad” women, and “good” women who just haven’t been caught yet. " +"Published by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Amateur Home Radio for Enthusiasts" -msgid_plural "copies of Amateur Home Radio for Enthusiasts" +msgid "Choose Wisely" +msgid_plural "copies of Choose Wisely" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Amateur Home Radio for Enthusiasts +#. ~ Description for Choose Wisely #: lang/json/BOOK_from_json.py msgid "" -"A book about ham radio and citizen's band radio. It contains numerous " -"diagrams and illustrations explaining the science behind the electronics." +"Choose Wisely: 35 Women Up To No Good is a feminist anthology of dark " +"fiction, co-edited by H. L. Nelson and Joanne Merriam. Containing 35 " +"stories of “bad” women, and “good” women who just haven’t been caught yet, " +"it features Joyce Carol Oates, Aimee Bender, Diane Cook, and 33 other " +"fearless women writers. Published by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "computer printout" -msgid_plural "computer printouts" +msgid "Apocalypse Now" +msgid_plural "copies of Apocalypse Now" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for computer printout +#. ~ Description for Apocalypse Now #: lang/json/BOOK_from_json.py msgid "" -"One side of this sheet is printed with a meaningless jumble of characters, " -"but the other side shows a complicated, hand-drawn circuit diagram." +"Every society and every generation has its version of the apocalypse: swine " +"flu, genetic mutation, global warming, nuclear fallout, the second coming, " +"peak oil, mass extinction, giant irradiated ants, zombies… Apocalypse Now: " +"Poems and Prose from the End of Days is the first anthology of its kind to " +"bring together the poetry and prose of some of America’s finest (though not " +"always most well-known) literary voices with an eye for the literary and the" +" popular, for story and lyric, for the past and the future, for the " +"psychological and the physical, for the real and the fantastic. Published " +"by Upper Rubber Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Augmentative Tech Review" -msgid_plural "issues of Augmentative Tech Review" +msgid "How to Live on Other Planets: A Handbook for Aspiring Aliens" +msgid_plural "copies of How to Live on Other Planets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Augmentative Tech Review +#. ~ Description for How to Live on Other Planets: A Handbook for Aspiring +#. Aliens #: lang/json/BOOK_from_json.py msgid "" -"This annual publication covers the various ways in which people use " -"technology to improve their bodies. There are a few in-depth and thoroughly" -" illustrated articles on bionic systems, though they tend to use too much " -"jargon." +"How to Live on Other Planets: A Handbook for Aspiring Aliens explores the " +"immigrant experience in a science fiction setting, with exciting fiction and" +" poetry from some of the genre’s best writers. Published by Upper Rubber " +"Boot Books." msgstr "" #: lang/json/BOOK_from_json.py -msgid "lab journal-Herrera" -msgid_plural "lab journals-Herrera" +msgid "archery skill training abstract" +msgid_plural "archery skill training abstracts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lab journal-Herrera +#. ~ Description for archery skill training abstract #: lang/json/BOOK_from_json.py -msgid "" -"This hefty binder contains a multitude of diagrams and technical " -"specifications for various electronic materials. Some of the diagrams use " -"symbols you've not seen before…" +msgid "template for heavy books that confer archery skill training" msgstr "" #: lang/json/BOOK_from_json.py -msgid "2XI design binder-CLASSIFIED" -msgid_plural "2XI design binders-CLASSIFIED" +msgid "Lessons for the Novice Bowhunter" +msgid_plural "copies of Lessons for the Novice Bowhunter" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 2XI design binder-CLASSIFIED +#. ~ Description for Lessons for the Novice Bowhunter #: lang/json/BOOK_from_json.py msgid "" -"This Doubletech Industries binder has several intimidating security warnings" -" on the cover. Probably because it contains complete design specs, " -"technical drawings, and test results for their military-grade bionic " -"implants." +"This hefty paperback book contains all the information needed for novice " +"archers to get started hunting with a variety of bows and crossbows." msgstr "" #: lang/json/BOOK_from_json.py -msgid "plans for a radio repeater mod" -msgid_plural "plans for a radio repeater mod" +msgid "Zen and the Art of Archery" +msgid_plural "copies of Zen and the Art of Archery" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for Zen and the Art of Archery #: lang/json/BOOK_from_json.py msgid "" -"Instructions on how to create a mod for a radio station terminal which " -"converts the entire system into a repeater." +"This massive book contains a wealth of vital information for the novice " +"archer." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Electronic Circuit Theory" -msgid_plural "copies of Electronic Circuit Theory" +msgid "Archery for Kids" +msgid_plural "issues of Archery for Kids" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Electronic Circuit Theory +#. ~ Description for Archery for Kids #: lang/json/BOOK_from_json.py msgid "" -"An advanced college textbook on circuit theory, design, and organization." +"Will you be able to place the arrow right into the bullseye? It is not that" +" easy, but once you know how it's done, you will have a lot of fun with " +"archery." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Robots for Fun & Profit" -msgid_plural "copies of Robots for Fun & Profit" +msgid "car buyer's guide" +msgid_plural "car buyer's guides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Robots for Fun & Profit +#. ~ Description for car buyer's guide #: lang/json/BOOK_from_json.py msgid "" -"A rare book on the design of robots, with lots of helpful step-by-step " -"guides." +"Normally this glossy, ad-filled magazine about cars would be pointless, but " +"it has a series of articles on haggling techniques." msgstr "" #: lang/json/BOOK_from_json.py -msgid "trifacet handling procedures" -msgid_plural "trifacet handling procedures" +msgid "How to Succeed in Business" +msgid_plural "copies of How to Succeed in Business" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for How to Succeed in Business #: lang/json/BOOK_from_json.py -msgid "" -"A heavy and disparate binder detailing the deactivation, storage and " -"transport procedures for a so called \"Trifacet\" UVG. The pages and " -"schematics within have been compiled from the internal reports of a vast " -"array of governmental agencies, many of which you had never heard of before." +msgid "Useful if you want to get a good deal when purchasing goods." msgstr "" #: lang/json/BOOK_from_json.py -msgid "schematics" -msgid_plural "schematics" +msgid "Advanced Economics" +msgid_plural "copies of Advanced Economics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'schematics'} -#. ~ Description for animal -#. ~ Description for nearby fire -#. ~ Description for muscle -#. ~ Description for wind -#. ~ Description for sun light -#. ~ Description for metabolism -#. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} -#. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} -#. ~ Description for weapon -#: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/furniture_from_json.py lang/json/skill_from_json.py -msgid "seeing this is a bug" -msgid_plural "seeing this is a bug" +#. ~ Description for Advanced Economics +#: lang/json/BOOK_from_json.py +msgid "A college textbook on economics." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Batter Up!" +msgid_plural "issues of Batter Up!" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/BOOK_from_json.py -msgid "nurse bot schematics" -msgid_plural "nurse bot schematics" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for Batter Up! #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Uncanny, these are assembly plans, design specs, and " -"technical drawings for the nurse bot. Most of this is useless to you, but " -"you could use the assembly plans to re-assemble the robot from salvaged " -"parts." +"A baseball magazine that focuses on batting tips. There are lots of " +"colorful, full-page photos of skilled athletes demonstrating proper form and" +" technique." msgstr "" #: lang/json/BOOK_from_json.py -msgid "grocery bot schematics" -msgid_plural "grocery bot schematics" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "tactical baton defense manual" +msgid_plural "tactical baton defense manuals" +msgstr[0] "«Тактика самозахисту за допомогою кийка»" +msgstr[1] "«Тактика самозахисту за допомогою кийка»" +msgstr[2] "«Тактика самозахисту за допомогою кийка»" +msgstr[3] "«Тактика самозахисту за допомогою кийка»" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for tactical baton defense manual #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Uncanny, these are assembly plans, design specs, and " -"technical drawings for the grocery bot. Most of this is useless to you, but" -" you could use the assembly plans to re-assemble the robot from salvaged " -"parts." +"An informative guide to self-defense using clubs and batons. Aimed at the " +"law enforcement and military market, it is packed with time tested, no-" +"nonsense information and written to be understandable for beginners." msgstr "" #: lang/json/BOOK_from_json.py -msgid "police bot schematics" -msgid_plural "police bot schematics" +msgid "Advanced Physical Chemistry" +msgid_plural "copies of Advanced Physical Chemistry" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for Advanced Physical Chemistry #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the police bot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"A university-level textbook on advanced principles of physical chemistry and" +" all its branches: thermochemistry, electrochemistry, solid-state chemistry," +" photochemistry, quantum chemistry et cetera." msgstr "" #: lang/json/BOOK_from_json.py -msgid "eyebot schematics" -msgid_plural "eyebot schematics" +msgid "The Modern Tanner" +msgid_plural "copies of The Modern Tanner" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for The Modern Tanner #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the eyebot. Most " -"of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"An in-depth and easy to read guide that details a very modern take on the " +"ancient art of leather tanning." msgstr "" #: lang/json/BOOK_from_json.py -msgid "security bot schematics" -msgid_plural "security bot schematics" +msgid "PE050 \"Alpha\": Preliminary Report" +msgid_plural "copies of PE050 \"Alpha\": Preliminary Report" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for PE050 "Alpha": Preliminary Report #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the security bot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This sheaf of papers--dated two weeks before all this started--describes " +"some new chemical formula, and its effects on human subjects. It's stamped " +"\"APPROVED\"…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "skitterbot schematics" -msgid_plural "skitterbot schematics" +msgid "lab journal-Dionne" +msgid_plural "lab journals-Dionne" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for lab journal-Dionne #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the skitterbot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This team logbook details several varieties of mutagenic experiments, " +"focusing on those derived from various Earth fauna. The team seems quite " +"enthusiastic--if not eager--about their results." msgstr "" #: lang/json/BOOK_from_json.py -msgid "cleaner bot schematics" -msgid_plural "cleaner bot schematics" +msgid "PE065 \"Chimera\": Best Practices" +msgid_plural "copies of PE065 \"Chimera\": Best Practices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for PE065 "Chimera": Best Practices #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the cleaner bot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This sheaf of papers describes a new chemical formula in detail and supplies" +" instructions for its use as some sort of… crowd-control catalyst? That " +"can't be right…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "miner bot schematics" -msgid_plural "miner bot schematics" +msgid "lab journal-Smythe" +msgid_plural "lab journals-Smythe" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for lab journal-Smythe #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the miner bot. " -"Most of this is useless to you, but you could use the assembly plans to re-" -"assemble the robot from salvaged parts." +"This team logbook details several varieties of mutagenic experiments, " +"focusing on those derived from flesh contaminated with XE037. The results " +"look promising but the procurement methods seem awfully vague…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "riot control bot schematics" -msgid_plural "riot control bot schematics" +msgid "standpipe maintenance log" +msgid_plural "standpipe maintenance logs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for standpipe maintenance log #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the riot control " -"bot. Most of this is useless to you, but you could use the assembly plans " -"to re-assemble the robot from salvaged parts." +"This binder details the scheduled maintenance for several plumbing systems " +"throughout the facility. However, some of the log sheets seem to be filled " +"with… a chemical formula?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "lab defense bot schematics" -msgid_plural "lab defense bot schematics" +msgid "chemical reference-CLASSIFIED" +msgid_plural "chemical references-CLASSIFIED" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for chemical reference-CLASSIFIED #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the lab defense " -"bot. Most of this is useless to you, but you could use the assembly plans " -"to re-assemble the robot from salvaged parts." +"This somewhat technical binder has several intimidating security warnings on" +" the cover, yet guarantees unauthorized readers \"permanent employment, for " +"life\". It contains useful information on \"basic\" chemical projects like " +"methamphetamine and heroin, along with briefing on things called \"XE037\" " +"and \"PE012\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "dispatch schematics" -msgid_plural "dispatch schematics" +msgid "lab journal-x-|xp" +msgid_plural "lab journals-x-|xp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for lab journal-x-|xp #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Northrop, these are assembly plans, design specs, and " -"technical drawings for the dispatch. Most of this is useless to you, but " -"you could use the assembly plans to re-assemble the robot from salvaged " -"parts." +"This damaged team logbook lacks (deliberately?) any identifying information," +" but still contains useful information on several types of mutagen and their" +" development." msgstr "" #: lang/json/BOOK_from_json.py -msgid "military dispatch schematics" -msgid_plural "military dispatch schematics" +msgid "PE023 \"Medical\": Application and Findings" +msgid_plural "copies of PE023 \"Medical\": Application and Findings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for PE023 "Medical": Application and Findings #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Northrop, these are assembly plans, design specs, and " -"technical drawings for the military dispatch. Most of this is useless to " -"you, but you could use the assembly plans to re-assemble the robot from " -"salvaged parts." +"This binder of highly technical papers describes some new chemical formula, " +"and its effects on human subjects. It's stamped \"APPROVED\"…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "anti-materiel turret schematics" -msgid_plural "anti-materiel turret schematics" +msgid "PE070 \"Raptor\": Proposal" +msgid_plural "copies of PE070 \"Raptor\": Proposal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for PE070 "Raptor": Proposal #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the anti-materiel " -"turret. Most of this is useless to you, but you could use the assembly " -"plans to re-assemble the robot from salvaged parts." +"This sheaf of papers is a highly speculative proposal for focusing " +"\"PE065\". Scribbled notes throughout seem to think that it might work, but" +" that there's no time." msgstr "" #: lang/json/BOOK_from_json.py -msgid "milspec searchlight schematics" -msgid_plural "milspec searchlight schematics" +msgid "Best Practices for Compound Delivery" +msgid_plural "copies of Best Practices for Compound Delivery" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for Best Practices for Compound Delivery #: lang/json/BOOK_from_json.py msgid "" -"Assembly plans, design specs, and technical drawings for the milspec " -"searchlight. Most of this is useless to you, but you could use the assembly" -" plans to re-assemble the robot from salvaged parts." +"This internal manual details several varieties of mutagenic experiments, as " +"well as describing the protocols used to concentrate mutagens for quicker " +"results. The authors recommend that researchers ensure that their subjects " +"are well-fed and in good health, as the concentrated serums draw heavily on " +"subjects' bodies." msgstr "" +"Це посібник для внутрішнього користування з проведення экспериментів із " +"застосуванням мутагенів, що описує різноманітні способи посилення " +"концентрації мутагенів для прискорення результатів. Автори рекомендують " +"дослідникам впевнитися, що поддослідні здорові і не виснажені, так як " +"концентровані сироватки наносять суттєву шкоду здоров'ю піддослідних." #: lang/json/BOOK_from_json.py -msgid "The Art of Glassblowing" -msgid_plural "copies of The Art of Glassblowing" +msgid "CRC-Merck Handbook, 4th edition" +msgid_plural "copies of CRC-Merck Handbook, 4th edition" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Art of Glassblowing +#. ~ Description for CRC-Merck Handbook, 4th edition #: lang/json/BOOK_from_json.py msgid "" -"A textbook that illustrates the science and technique of the ancient art of " -"glassblowing." +"This huge hardbound book is a collection of reference data and formulae " +"pertinent to many technical disciplines. If poring over tables of chemical " +"and physical data is your thing, this is the book for you." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Plastics & Polymers: Projects for the Classroom" -msgid_plural "copies of Plastics & Polymers: Projects for the Classroom" +msgid "chemistry textbook" +msgid_plural "chemistry textbooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Plastics & Polymers: Projects for the Classroom +#. ~ Description for chemistry textbook #: lang/json/BOOK_from_json.py -msgid "" -"A textbook that goes through types and material properties of various common" -" plastics, and how to use them in several common projects." +msgid "A college textbook on chemistry." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Prop Builder's Molding and Casting Handbook" -msgid_plural "copies of The Prop Builder's Molding and Casting Handbook" +msgid "The Essential Oil Enthusiasts Handbook" +msgid_plural "copies of The Essential Oil Enthusiasts Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Prop Builder's Molding and Casting Handbook +#. ~ Description for The Essential Oil Enthusiasts Handbook #: lang/json/BOOK_from_json.py msgid "" -"The first book to contain, in one comprehensive volume, every molding and " -"casting procedure of use to the theater props builder of any skill level. " -"The author demonstrates the techniques involved in over thirty materials " -"from papier-mache to breakaway glass." +"A heavy hardback book explaining the process of essential oil making, with " +"schematics for the equipment to do it. Good luck, and don't blow yourself " +"up!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Antique Adornments" -msgid_plural "copies of Antique Adornments" +msgid "Art and Science of Chemical Warfare" +msgid_plural "copies of Art and Science of Chemical Warfare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Antique Adornments +#. ~ Description for Art and Science of Chemical Warfare #: lang/json/BOOK_from_json.py msgid "" -"A comprehensive and illustrated history of crown, bracelet, necklace and " -"others." +"This in-depth and technical text covers the design, development, " +"dissemination of, and defenses against various chemical weapons throughout " +"the centuries. The photographs the author chose make it a difficult read at" +" times, though the information is top-notch." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Crafty Crafter's Quarterly" -msgid_plural "Crafty Crafter's Quarterlies" +msgid "Chemistry for Kids: Awesome Science Experiments that Really Work" +msgid_plural "" +"copies of Chemistry for Kids: Awesome Science Experiments that Really Work" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Crafty Crafter's Quarterly +#. ~ Description for Chemistry for Kids: Awesome Science Experiments that +#. Really Work #: lang/json/BOOK_from_json.py msgid "" -"A fun quarterly magazine all about macaroni art and things you can make by " -"supergluing found objects together." +"A book with comprehensive and accurate step-by-step illustrated instructions" +" for many scientific experiments for young researchers and anyone else who " +"want to delve into an amazing world of chemistry." msgstr "" #: lang/json/BOOK_from_json.py -msgid "101 Crafts for Beginners" -msgid_plural "copies of 101 Crafts for Beginners" +msgid "Biodiesel: Renewable Fuel Resource" +msgid_plural "copies of Biodiesel: Renewable Fuel Resource" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 101 Crafts for Beginners +#. ~ Description for Biodiesel: Renewable Fuel Resource #: lang/json/BOOK_from_json.py -msgid "" -"A large, paperback book detailing a hundred and one beginner's projects in " -"fabrication." -msgstr "" +msgid "A large textbook for college students about biodiesel." +msgstr "Великий підручник по біодизелю для студентів коледжів." #: lang/json/BOOK_from_json.py -msgid "The Fletcher's Friend" -msgid_plural "copies of The Fletcher's Friend" +msgid "SICP" +msgid_plural "copies of SICP" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Fletcher's Friend +#. ~ Description for SICP #: lang/json/BOOK_from_json.py msgid "" -"This hefty book is devoted to folks looking to handcraft their own arrows. " -"It starts with a hip and snappy disclaimer about the risks, both physical " -"and legal, of using explosives and flammable materials. Look for its " -"companion, \"The Bowyer's Buddy\"!" +"A classic text, \"The Structure and Interpretation of Computer Programs.\" " +"Written with examples in LISP, but applicable to any language." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Bowyer's Buddy" -msgid_plural "copies of The Bowyer's Buddy" +msgid "Computer Science 301" +msgid_plural "copies of Computer Science 301" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Bowyer's Buddy +#. ~ Description for Computer Science 301 #: lang/json/BOOK_from_json.py -msgid "" -"This hefty book is dedicated to craftsfolk and outdoors-y types looking to " -"make their own bows. It recommends its companion volume \"The Fletcher's " -"Friend\" for instructions on producing their ammunition." +msgid "A college textbook on computer science." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Handloader's Helper" -msgid_plural "copies of The Handloader's Helper" +msgid "How to Browse the Web" +msgid_plural "copies of How to Browse the Web" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Handloader's Helper +#. ~ Description for How to Browse the Web #: lang/json/BOOK_from_json.py -msgid "" -"Everything you could ever want to know about handloading ammunition, sealed " -"with a… childproof cover. Apparently a liability thing, because the chapter" -" on explosive rounds covers them in excellent detail too." +msgid "Very beginner-level information about computers." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Rivtech design binder" -msgid_plural "Rivtech design binders" +msgid "Computer World" +msgid_plural "issues of Computer World" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Rivtech design binder +#. ~ Description for Computer World #: lang/json/BOOK_from_json.py msgid "" -"This Rivtech binder warns that \"Unauthorized readers are our best test " -"subjects.\" With good reason: it contains complete design specs and " -"technical drawings for their entire line of products." +"An informative magazine all about computers, both hardware and software." msgstr "" #: lang/json/BOOK_from_json.py -msgid "lab journal-Gustav" -msgid_plural "lab journals-Gustav" +msgid "Computer Science 101" +msgid_plural "copies of Computer Science 101" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lab journal-Gustav +#. ~ Description for Computer Science 101 #: lang/json/BOOK_from_json.py -msgid "" -"This paper notebook is mostly full of boring logs, experimental observations" -" and notes. Mixed in, however, are musings on how to use the lab's vapor " -"deposition machine to deposit amorphous carbon in a diamond-like form onto " -"common metals. The author's intended goal was a better non-stick frying " -"pan, but you can think of a couple of better uses for it." +msgid "An entry-level textbook about computers." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Streetfighter's Sidekick" -msgid_plural "copies of The Streetfighter's Sidekick" +msgid "Principles of Advanced Programming" +msgid_plural "copies of Principles of Advanced Programming" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Streetfighter's Sidekick +#. ~ Description for Principles of Advanced Programming #: lang/json/BOOK_from_json.py msgid "" -"A sizable how-to guide for making hand-to-hand combat weapons. Though the " -"processes are thoroughly detailed and several illustrations are provided, " -"they rely heavily on technical jargon. More for machinists-turned-" -"weaponsmiths than streetfighters, really." +"A heavy textbook dedicated to advanced-level software design, written for " +"several different programming languages." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Art of Japanese Armormaking" -msgid_plural "copies of The Art of Japanese Armormaking" +msgid "Web Design Basics" +msgid_plural "copies of Web Design Basics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Art of Japanese Armormaking +#. ~ Description for Web Design Basics #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details various forms of ancient Japanese " -"armor crafting, and is well illustrated with lots of photos." +"A thick glossy paperback instructional manual for aspiring web designers " +"that includes a teaching guide for young students." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Arms and Armor of Imperial China" -msgid_plural "copies of Arms and Armor of Imperial China" +msgid "Pro Hacker Secrets" +msgid_plural "copies of Pro Hacker Secrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Arms and Armor of Imperial China +#. ~ Description for Pro Hacker Secrets #: lang/json/BOOK_from_json.py msgid "" -"This textbook details the military history of ancient China, with a " -"particular focus on the nature of historical arms and armor. It also " -"details some of the equipment used by other cultures that came into conflict" -" with the empire over various dynasties." +"A thinly veiled attempt at teaching kids coding skills. Not nearly as " +"exciting as the authors might have hoped, but there's some real knowledge in" +" here." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Studies in Historic Armorsmithing" -msgid_plural "copies of Studies in Historic Armorsmithing" +msgid "The Homebrewer's Bible" +msgid_plural "copies of The Homebrewer's Bible" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Studies in Historic Armorsmithing +#. ~ Description for The Homebrewer's Bible #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details various forms of ancient European " -"armor crafting, and is well illustrated with lots of photos." +"A book full of easy-to-follow recipes and useful advice on homebrewing, " +"malting, and fermenting. It even smells faintly of booze." msgstr "" #: lang/json/BOOK_from_json.py -msgid "DIY Compendium" -msgid_plural "copies of DIY Compendium" +msgid "Cooking on a Budget" +msgid_plural "copies of Cooking on a Budget" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for DIY Compendium +#. ~ Description for Cooking on a Budget #: lang/json/BOOK_from_json.py msgid "" -"A thick, hardbound book detailing countless projects for inventions that " -"claim to improve all aspects of life." +"A nice cook book that goes beyond recipes and into the chemistry of food." msgstr "" #: lang/json/BOOK_from_json.py -msgid "A History of Firefighting" -msgid_plural "copies of A History of Firefighting" +msgid "To Serve Man" +msgid_plural "copies of To Serve Man" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for A History of Firefighting +#. ~ Description for To Serve Man #: lang/json/BOOK_from_json.py -msgid "" -"This in-depth and technical text details the history of firefighting from " -"ancient times into the modern era, with a focus on the technology used to " -"save lives." +msgid "It's… it's a cookbook!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Swords of the Samurai" -msgid_plural "copies of The Swords of the Samurai" +msgid "Cucina Italiana" +msgid_plural "copies of Cucina Italiana" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Swords of the Samurai +#. ~ Description for Cucina Italiana #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details various forms of ancient Japanese " -"sword smithing, and is well illustrated with step by step photo " -"instructions." +"This cookbook is written in Italian, but handily illustrated with step by " +"step photo instructions." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Historic Weaponsmith" -msgid_plural "copies of The Historic Weaponsmith" +msgid "Sushi Made Easy" +msgid_plural "copies of Sushi Made Easy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Historic Weaponsmith +#. ~ Description for Sushi Made Easy #: lang/json/BOOK_from_json.py msgid "" -"This in-depth and technical text details various forms of ancient European " -"weapon smithing, and is well illustrated with step by step photo " -"instructions." +"A simple text for the aspiring sushi lover, this easy to read guide is " +"filled with lots of helpful illustrations for everything from basic rice " +"preparation to setting a proper Japanese table." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Welding and Metallurgy" -msgid_plural "copies of Welding and Metallurgy" +msgid "family cookbook" +msgid_plural "family cookbooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Welding and Metallurgy +#. ~ Description for family cookbook #: lang/json/BOOK_from_json.py msgid "" -"A rather technical textbook that illustrates the science and technique of " -"becoming a better welder." +"A big binder full of somebody's family recipes. The well-turned pages and " +"creased corners speak volumes of the culinary knowledge contained within. " +"You could probably learn a lot about cooking from studying this domestic " +"artifact." msgstr "" #: lang/json/BOOK_from_json.py -msgid "101 Home Repairs" -msgid_plural "copies of 101 Home Repairs" +msgid "Bon Appetit" +msgid_plural "issues of Bon Appetit" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 101 Home Repairs +#. ~ Description for Bon Appetit #: lang/json/BOOK_from_json.py msgid "" -"A paperback book detailing 101 home repair projects for the novice " -"carpenter." +"Exciting recipes and restaurant reviews. Full of handy tips about cooking." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Complete Home Repair Guide" -msgid_plural "copies of The Complete Home Repair Guide" +msgid "Glamopolitan" +msgid_plural "issues of Glamopolitan" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Complete Home Repair Guide +#. ~ Description for Glamopolitan #: lang/json/BOOK_from_json.py msgid "" -"A massive book that details virtually every aspect of remodeling and " -"repairing a home, with concise terminology aimed at experienced carpenters." +"This is a full-size glossy women's magazine. There are a few unoriginal " +"recipes and some simple cooking tips somewhere in between the fashion photos" +" and the sex advice columns." msgstr "" +#. ~ That would translate out to The Scottish Book of Cookery, or The Scottish +#. Cookbook. #: lang/json/BOOK_from_json.py -msgid "Birdhouse Monthly" -msgid_plural "Birdhouse Monthlies" +msgid "Ye Scots Beuk o Cuikery" +msgid_plural "copies of Ye Scots Beuk o Cuikery" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Birdhouse Monthly +#. ~ Description for Ye Scots Beuk o Cuikery #: lang/json/BOOK_from_json.py -msgid "A riveting periodical all about birdhouses and their construction." +msgid "" +"A semi-translated Gaelic cookbook from sixteenth century Scotland. While a " +"bit difficult to read, as there are a disquieting number of illustrations of" +" people stabbing each other mixed with rants about 'True Scotsman', it " +"provides insights into medieval Scottish cuisine and culture." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Building for Beginners" -msgid_plural "copies of Building for Beginners" +msgid "The Vinegar Maker's Handbook" +msgid_plural "copies of Vinegar Maker's Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Building for Beginners +#. ~ Description for The Vinegar Maker's Handbook #: lang/json/BOOK_from_json.py msgid "" -"A large, paperback book detailing several beginner's projects in " -"construction." +"This book describes in detail all the ways that one can make vinegar. You " +"would have thought that there wasn't much to making vinegar, but the girth " +"of this book tells you otherwise." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Engineering 301" -msgid_plural "copies of Engineering 301" +msgid "Drink the Harvest" +msgid_plural "copies of Drink the Harvest" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Engineering 301 +#. ~ Description for Drink the Harvest #: lang/json/BOOK_from_json.py -msgid "A textbook on civil engineering and construction." +msgid "" +"Canning foods doesn't have to stop with jam and pickles. This book provides" +" a plethora of juices that can be preserved." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Machinery's Handbook" -msgid_plural "copies of Machinery's Handbook" +msgid "Offal Holiday Cooking" +msgid_plural "copies of Offal Holiday Cooking" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Machinery's Handbook +#. ~ Description for Offal Holiday Cooking #: lang/json/BOOK_from_json.py msgid "" -"This classic reference work contains extensive, dense chapters and tables on" -" materials, metrology, toolmaking, gears, threading and more. This recent " -"edition includes extensive data on what were the latest techniques in " -"additive manufacturing. If you need to know how best complete a certain " -"machining operation, the answer lies somewhere in these pages." +"Offal Holiday Cooking, by Evelyn Turncoat, is a book of holiday recipes that" +" utilize organ meats from various animals. For the true nose-to-tail cook." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Concrete Constructions" -msgid_plural "copies of Concrete Constructions" +msgid "Things to do with Milk" +msgid_plural "copies of Things to do with Milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Concrete Constructions +#. ~ Description for Things to do with Milk #: lang/json/BOOK_from_json.py msgid "" -"A collection of notable uses of concrete. Contains detailed directions on " -"how to mix and use cement to form useful aggregates." +"Whatever you want to do with milk, you will probably find it in this book." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Guide to Advanced Emergency Care" -msgid_plural "copies of Guide to Advanced Emergency Care" +msgid "Liver-Licious Recipes Your Kids Will Love" +msgid_plural "copies of Liver-Licious Recipes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Guide to Advanced Emergency Care +#. ~ Description for Liver-Licious Recipes Your Kids Will Love #: lang/json/BOOK_from_json.py msgid "" -"A thick textbook for paramedics describing advanced lifesaving procedures " -"and field-expedient care methods." +"This cookbook is written by liver enthusiast Tamsyn Beckerleg. Inside " +"you'll find a great deal of anecdotes about the near-certain ruination of " +"children who refuse to eat their liver." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Paramedics" -msgid_plural "issues of Paramedics" +msgid "Dainty Dishes Fit for a King" +msgid_plural "copies of Dainty Dishes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Paramedics +#. ~ Description for Dainty Dishes Fit for a King #: lang/json/BOOK_from_json.py -msgid "An educational magazine for EMTs." +msgid "" +"This cookbook contains many fanciful recipes. Some of them are even worth " +"the trouble to actually prepare. Lovely pen and ink illustrations of " +"overweight knights and gluttonous monks line the pages." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Big Book of First Aid" -msgid_plural "copies of The Big Book of First Aid" +msgid "Eat Your Way to a Fit Physique" +msgid_plural "copies of Eat Your Way" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Big Book of First Aid +#. ~ Description for Eat Your Way to a Fit Physique #: lang/json/BOOK_from_json.py -msgid "It's big and heavy, but full of great information about first aid." +msgid "" +"This self-help book, by \"acclaimed nutrition and health guru Amar de " +"Freitas,\" is as dubious as its title. Worse, it is boring. It does, " +"however, contain a few basic cooking instructions." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pocket Guide to First Aid" -msgid_plural "copies of Pocket Guide to First Aid" +msgid "Food Fashions for Young Moderns" +msgid_plural "copies of Food Fashions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pocket Guide to First Aid +#. ~ Description for Food Fashions for Young Moderns #: lang/json/BOOK_from_json.py msgid "" -"This pocket-sized leather-bound guide to first aid combines a wealth of " -"concise information with simple to follow instructions and easy to read " -"illustrations." +"A cookbook professing itself to be for those seeking \"daring and " +"sophisticated flavors.\" The book exhorts the reader to defy convention and" +" break the rules, and then presents a number of useful rules and conventions" +" for preparing food." msgstr "" #: lang/json/BOOK_from_json.py -msgid "First Responder Handbook" -msgid_plural "copies of First Responder Handbook" +msgid "Winemaking for Beginners" +msgid_plural "copies of Winemaking for Beginners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for First Responder Handbook +#. ~ Description for Winemaking for Beginners #: lang/json/BOOK_from_json.py msgid "" -"A hardbound book detailing advanced first aid techniques and field-expedient" -" medical care." +"Winemaking, is an art form. This book teaches you how to crayon within the " +"lines." msgstr "" #: lang/json/BOOK_from_json.py -msgid "First Aid Kit Instruction Booklet" -msgid_plural "copies of First Aid Kit Instruction Booklet" +msgid "You Can Can at Home" +msgid_plural "copies of You Can Can at Home" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for First Aid Kit Instruction Booklet +#. ~ Description for You Can Can at Home #: lang/json/BOOK_from_json.py -msgid "Illustrated how-to guide for your first aid kit." +msgid "" +"This entry-level guide to home canning talks about the importance of acidity" +" and food contents in preservation, and how to avoid contaminants in your " +"canning batches." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Physicians' Desk Reference" -msgid_plural "copies of Physicians' Desk Reference" +msgid "Can Sealer Instructions" +msgid_plural "copies of Can Sealer Instructions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Physicians' Desk Reference +#. ~ Description for Can Sealer Instructions #: lang/json/BOOK_from_json.py msgid "" -"This hefty volume contains all the legally mandated information relevant to " -"physicians for writing prescriptions, generously supported by the efforts " -"and contributions of major pharmaceutical companies. For the most part, it " -"provides information identical to what is available on that of medication " -"packaging inserts, and cannot match the completeness of digital " -"pharmaceutical references like Medisoft. At least it doesn't need power to " -"be used." +"This dry guide to a home-use tin can sealer goes into clear detail on " +"everything you can seal with the device and how to do it safely, and " +"includes some basic recipes." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Merck Veterinary Manual" -msgid_plural "copies of Merck Veterinary Manual" +msgid "The Baker's Companion" +msgid_plural "copies of The Baker's Companion" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Merck Veterinary Manual +#. ~ Description for The Baker's Companion #: lang/json/BOOK_from_json.py msgid "" -"This expansive text covers 'all domestic species and diseases in veterinary " -"medicine worldwide'. Should you need information regarding zoonotic " -"diseases, off-label use of medication for animals, common dysfunctions and " -"diseases of animals, or any other veterinary reference info, this is your " -"book. There are some interesting new chapters on animal cloning in this " -"edition." +"This book promises to teach you the ways of baking, from cakes to souffles." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Textbook of Advanced Toxicology" -msgid_plural "copies of Textbook of Advanced Toxicology" +msgid "Fermenting Culture" +msgid_plural "copies of Fermenting Culture" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Textbook of Advanced Toxicology +#. ~ Description for Fermenting Culture #: lang/json/BOOK_from_json.py msgid "" -"This unassuming volume details the broad spectrum of chemical and biological" -" toxins known to modern medicine. While the obvious focus of the book is " -"the therapy of such poisonings, there are lengthy sections describing the " -"structure and synthesis of some compounds of interest." +"Fermenting as a cooking practice only recently came back into vogue before " +"the Cataclysm. Here is a book with dozens of recipes, many of which you are" +" unlikely to ever see the ingredients for again." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Guns n Ammo" -msgid_plural "issues of Guns n Ammo" +msgid "Out of the Holler and into the Home: A guide to home distillation" +msgid_plural "copies of Out of the Holler" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Guns n Ammo +#. ~ Description for Out of the Holler and into the Home: A guide to home +#. distillation #: lang/json/BOOK_from_json.py -msgid "Reviews of firearms, and various useful tips about their use." +msgid "" +"A book describing the history of at home distillation by liquor. Each " +"chapter contains a complete recipe for its namesake." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Gun Owner's Handbook" -msgid_plural "copies of The Gun Owner's Handbook" +msgid "Sweets for your Sweet Child" +msgid_plural "copies of Sweets for Sweet" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Gun Owner's Handbook +#. ~ Description for Sweets for your Sweet Child #: lang/json/BOOK_from_json.py msgid "" -"A thick soft-cover book that claims to be a complete guide to safely " -"operating, maintaining, and repairing firearms." +"Sweets for your Sweet Child is the best selling cooking book to the parents " +"of young children. Every recipe uses oversized text, easy words and diagram" +" instructions for children learning to cook with their parents." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pocket Guide to Firearm Safety" -msgid_plural "copies of Pocket Guide to Firearm Safety" +msgid "Pocket Survival Cookbook" +msgid_plural "copies of Pocket Survival Cookbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pocket Guide to Firearm Safety +#. ~ Description for Pocket Survival Cookbook #: lang/json/BOOK_from_json.py msgid "" -"This pocket-sized leather-bound guide to firearm safety combines a wealth of" -" concise information with simple to follow instructions and easy to read " -"illustrations." +"The smallest cookbook on the market, marketed exclusively to the " +"outdoorsman. Packs a surprising number of recipes for its tiny size." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ballistics: Theory, Design, and Application" -msgid_plural "copies of Ballistics: Theory, Design, and Application" +msgid "Tasting India" +msgid_plural "copies of Tasting India" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ballistics: Theory, Design, and Application +#. ~ Description for Tasting India #: lang/json/BOOK_from_json.py msgid "" -"This hefty, hardbound textbook is written in obtuse, complex language. If " -"you already knew a bit about engineering and fabrication, it might be a " -"useful reference on gunsmithing and design, but without that knowledge it'd " -"be better used to prop up a table." +"A thick hardcover book as much about Indian culture as it is a cookbook, " +"clearly written with adoration." msgstr "" #: lang/json/BOOK_from_json.py -msgid "High Explosives Quarterly" -msgid_plural "High Explosives Quarterlies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "All About Swords" +msgid_plural "issues of All About Swords" +msgstr[0] "«Все про мечі» " +msgstr[1] "примірника «Все про мечі» " +msgstr[2] "примірників «Все про мечі» " +msgstr[3] "примірники «Все про мечі» " -#. ~ Description for High Explosives Quarterly +#. ~ Description for All About Swords #: lang/json/BOOK_from_json.py msgid "" -"An interesting quarterly report about rocket launchers and recoilless " -"rifles. There are lots of large, exciting photos of explosions and " -"weaponry." +"An interesting magazine that contains information about swords and sword " +"fighting techniques from all across the world." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Jane's Mortars and Rocket Launchers" -msgid_plural "copies of Jane's Mortars and Rocket Launchers" +msgid "knife fighter's notes" +msgid_plural "knife fighter's notes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Jane's Mortars and Rocket Launchers +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" -"An incredibly detailed guide to modern rockets, mortars, grenade launchers, " -"and recoilless weaponry. Lavishly illustrated with color photographs, it " -"contains a wealth of information." +"It seems to be a guide to edged weapon combat, poorly photocopied and " +"released on spiral- bound paper. Still, there are lots of useful tips for " +"beginners." msgstr "" #: lang/json/BOOK_from_json.py -msgid "MIT Guide to Lock Picking" -msgid_plural "copies of MIT Guide to Lock Picking" +msgid "USMC Sword Manual Procedure" +msgid_plural "copies of USMC Sword Manual Procedures" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MIT Guide to Lock Picking +#. ~ Description for USMC Sword Manual Procedure #: lang/json/BOOK_from_json.py -msgid "" -"A home-made booklet with large black-and-white pictures of several types of " -"modern locks and general information on how to crack them open." +msgid "A text on stationary sword drills in US Marine Corps." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Spirit of Aikido" -msgid_plural "The Spirit of Aikido" +msgid "Dance Dance Dance!" +msgid_plural "issues of Dance Dance Dance!" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for Dance Dance Dance! #: lang/json/BOOK_from_json.py -msgid "A complete guide to Aikido." +msgid "Learn the moves of the trendiest dances right now." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Practical Pugilism" -msgid_plural "Practical Pugilism" +msgid "The Book of Dances" +msgid_plural "copies of The Book of Dances" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for The Book of Dances #: lang/json/BOOK_from_json.py msgid "" -"A complete guide to boxing. Let's get ready to rough-up some ruffians!" +"This massive antique book documents dances from all around the world in " +"great detail. A perceptive reader could learn a lot about defensive " +"footwork from some of the war dances." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Capoeira 100" -msgid_plural "Capoeira 100" +msgid "Break a Leg!" +msgid_plural "copies of Break a Leg!" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Break a Leg! #: lang/json/BOOK_from_json.py -msgid "A complete guide to Capoeira." +msgid "The Kids' Guide to Acting and Stagecraft." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Centipede Lu Feng" -msgid_plural "The Centipede Lu Feng" +msgid "Treasury of Legends about Western Dancing" +msgid_plural "copies of Western Dancing" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for Treasury of Legends about Western Dancing #: lang/json/BOOK_from_json.py -msgid "A complete guide to Centipede Kung Fu." +msgid "" +"Written by Emanuel Nogueira, a constabulario and historian of Nuevo Laredo, " +"this massive book details the movements and cultural legacies of a variety " +"of North American folk dances." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Red Crane" -msgid_plural "The Red Crane" +msgid "AAA Guide" +msgid_plural "copies of AAA Guide" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for AAA Guide #: lang/json/BOOK_from_json.py -msgid "A complete guide to Crane Kung Fu." +msgid "" +"A tourist-centric guide to points of interest throughout the country. " +"Though it focuses on the north-central US, the driving sections contain some" +" practical tips on proper driving techniques." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Jade Dragon" -msgid_plural "The Jade Dragon" +msgid "Top Gear magazine" +msgid_plural "Top Gear magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for Top Gear magazine #: lang/json/BOOK_from_json.py -msgid "A complete guide to Dragon Kung Fu." +msgid "Lots of articles about cars and driving techniques." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Practical Eskrima" -msgid_plural "Practical Eskrima" +msgid "The Rules of the Road" +msgid_plural "copies of The Rules of the Road" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for The Rules of the Road #: lang/json/BOOK_from_json.py -msgid "A complete guide to Eskrima." +msgid "" +"A thick textbook for beginning drivers. It contains chapters on laws, safe " +"vehicle operation, and defensive driving concepts." msgstr "" +#. ~ Description for AAA Guide #: lang/json/BOOK_from_json.py -msgid "The Modern Swordsman" -msgid_plural "The Modern Swordsman" +msgid "" +"A tourist-centric guide to points of interest throughout the country. This " +"particular copy is apparently the Anonymous Anarchist's Annual: the cover " +"conceals a wealth of ways to help stick it to The Man, along with plenty of " +"advice for avoiding police." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Advanced Electronics" +msgid_plural "copies of Advanced Electronics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for Advanced Electronics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Fencing." +msgid "A college textbook on circuit design." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Kodokan Judo" -msgid_plural "Kodokan Judo" +msgid "Ham Radio Illustrated" +msgid_plural "issues of Ham Radio Illustrated" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Ham Radio Illustrated #: lang/json/BOOK_from_json.py -msgid "A complete guide to Judo." +msgid "" +"An amusing magazine about ham radio, with lots of diagrams and illustrations" +" for making your own electronic devices." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Shotokan Karate Handbook" -msgid_plural "The Shotokan Karate Handbook" +msgid "What's a Transistor?" +msgid_plural "copies of What's a Transistor?" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for What's a Transistor? #: lang/json/BOOK_from_json.py -msgid "A complete guide to Shotokan Karate." -msgstr "" +msgid "A basic manual of electronics and circuit design." +msgstr "Базовий посібник з електроніки й схемотехніки." #: lang/json/BOOK_from_json.py -msgid "Complete Krav Maga" -msgid_plural "Complete Krav Maga" +msgid "101 Important Integrated Circuits" +msgid_plural "copies of 101 Important Integrated Circuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for 101 Important Integrated Circuits #: lang/json/BOOK_from_json.py -msgid "A complete guide to Krav Maga." +msgid "" +"This reference manual contains datasheets and pinout diagrams for 101 of the" +" most popular IC chips, including the 555 timer, LM358 op-amp, and LM317 " +"voltage regulator, along with logic chips from the 74xx family, and even the" +" 6502 8-bit processor. If you want to do anything useful with integrated " +"circuits, a reference like this would be indispensable." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Deaf Leopard" -msgid_plural "The Deaf Leopard" +msgid "Amateur Home Radio for Enthusiasts" +msgid_plural "copies of Amateur Home Radio for Enthusiasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for Amateur Home Radio for Enthusiasts #: lang/json/BOOK_from_json.py -msgid "A complete guide to Leopard Kung Fu." +msgid "" +"A book about ham radio and citizen's band radio. It contains numerous " +"diagrams and illustrations explaining the science behind the electronics." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Lizard Kuo Chui" -msgid_plural "The Lizard Kuo Chui" +msgid "computer printout" +msgid_plural "computer printouts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for computer printout #: lang/json/BOOK_from_json.py -msgid "A complete guide to Lizard Kung Fu." +msgid "" +"One side of this sheet is printed with a meaningless jumble of characters, " +"but the other side shows a complicated, hand-drawn circuit diagram." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ultimate Muay Thai" -msgid_plural "Ultimate Muay Thai" +msgid "Augmentative Tech Review" +msgid_plural "issues of Augmentative Tech Review" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Augmentative Tech Review #: lang/json/BOOK_from_json.py -msgid "A complete guide to Muay Thai." +msgid "" +"This annual publication covers the various ways in which people use " +"technology to improve their bodies. There are a few in-depth and thoroughly" +" illustrated articles on bionic systems, though they tend to use too much " +"jargon." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Essence of Ninjutsu" -msgid_plural "Essence of Ninjutsu" +msgid "lab journal-Herrera" +msgid_plural "lab journals-Herrera" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for lab journal-Herrera #: lang/json/BOOK_from_json.py -msgid "A complete guide to Ninjutsu." +msgid "" +"This hefty binder contains a multitude of diagrams and technical " +"specifications for various electronic materials. Some of the diagrams use " +"symbols you've not seen before…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Book of Five Rings" -msgid_plural "The Book of Five Rings" +msgid "2XI design binder-CLASSIFIED" +msgid_plural "2XI design binders-CLASSIFIED" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for 2XI design binder-CLASSIFIED #: lang/json/BOOK_from_json.py msgid "" -"A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" -"Ryu." +"This Doubletech Industries binder has several intimidating security warnings" +" on the cover. Probably because it contains complete design specs, " +"technical drawings, and test results for their military-grade bionic " +"implants." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Modern Pankratiast" -msgid_plural "The Modern Pankratiast" +msgid "plans for a radio repeater mod" +msgid_plural "plans for a radio repeater mod" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py -msgid "A complete guide to Pankration." +msgid "" +"Instructions on how to create a mod for a radio station terminal which " +"converts the entire system into a repeater." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Scorpion Sun Chien" -msgid_plural "The Scorpion Sun Chien" +msgid "Electronic Circuit Theory" +msgid_plural "copies of Electronic Circuit Theory" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for Electronic Circuit Theory #: lang/json/BOOK_from_json.py -msgid "A complete guide to Scorpion Kung Fu." +msgid "" +"An advanced college textbook on circuit theory, design, and organization." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Indonesian Warrior" -msgid_plural "The Indonesian Warrior" +msgid "Robots for Fun & Profit" +msgid_plural "copies of Robots for Fun & Profit" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for Robots for Fun & Profit #: lang/json/BOOK_from_json.py -msgid "A complete guide to Pentjak Silat." +msgid "" +"A rare book on the design of robots, with lots of helpful step-by-step " +"guides." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Black Snake" -msgid_plural "The Black Snake" +msgid "trifacet handling procedures" +msgid_plural "trifacet handling procedures" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Black Snake'} -#: lang/json/BOOK_from_json.py -msgid "A complete guide to Snake Kung Fu." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "Official Taekwondo Training Manual" -msgid_plural "Official Taekwondo Training Manual" -msgstr[0] "Офіційний посібник з тхеквондо " -msgstr[1] "Офіційний посібник з тхеквондо " -msgstr[2] "Офіційний посібник з тхеквондо " -msgstr[3] "Офіційний посібник з тхеквондо " - -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py -msgid "A complete guide to Taekwondo." +msgid "" +"A heavy and disparate binder detailing the deactivation, storage and " +"transport procedures for a so called \"Trifacet\" UVG. The pages and " +"schematics within have been compiled from the internal reports of a vast " +"array of governmental agencies, many of which you had never heard of before." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Becoming One with the Tao" -msgid_plural "Becoming One with the Tao" +msgid "schematics" +msgid_plural "schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} -#: lang/json/BOOK_from_json.py -msgid "A complete guide to T'ai Chi Ch'uan." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "The White Tiger" -msgid_plural "The White Tiger" +#. ~ Description for schematics +#. ~ Description for animal +#. ~ Description for nearby fire +#. ~ Description for muscle +#. ~ Description for wind +#. ~ Description for sun light +#. ~ Description for metabolism +#. ~ Description for a smoking device and a source of flame +#. ~ Description for none +#. ~ Description for abstract map +#. ~ Description for seeing this is a bug +#. ~ Description for weapon +#: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/furniture_from_json.py lang/json/skill_from_json.py +msgid "seeing this is a bug" +msgid_plural "seeing this is a bug" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The White Tiger'} -#: lang/json/BOOK_from_json.py -msgid "A complete guide to Tiger Kung Fu." -msgstr "" - #: lang/json/BOOK_from_json.py -msgid "The Toad Lo Mang" -msgid_plural "The Toad Lo Mang" +msgid "nurse bot schematics" +msgid_plural "nurse bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Toad Kung Fu." +msgid "" +"Bearing the logo of Uncanny, these are assembly plans, design specs, and " +"technical drawings for the nurse bot. Most of this is useless to you, but " +"you could use the assembly plans to re-assemble the robot from salvaged " +"parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Viper Wei Pai" -msgid_plural "The Viper Wei Pai" +msgid "grocery bot schematics" +msgid_plural "grocery bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Viper Kung Fu." +msgid "" +"Bearing the logo of Uncanny, these are assembly plans, design specs, and " +"technical drawings for the grocery bot. Most of this is useless to you, but" +" you could use the assembly plans to re-assemble the robot from salvaged " +"parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Zui Quan and You" -msgid_plural "Zui Quan and You" +msgid "police bot schematics" +msgid_plural "police bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Zui Quan." +msgid "" +"Assembly plans, design specs, and technical drawings for the police bot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Way of the Spear" -msgid_plural "The Way of the Spear" +msgid "eyebot schematics" +msgid_plural "eyebot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Sōjutsu." +msgid "" +"Assembly plans, design specs, and technical drawings for the eyebot. Most " +"of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Beautiful Springtime" -msgid_plural "Beautiful Springtime" +msgid "security bot schematics" +msgid_plural "security bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py -msgid "A complete guide to Wing Chun Kung-fu." +msgid "" +"Assembly plans, design specs, and technical drawings for the security bot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" -#: lang/json/BOOK_from_json.py lang/json/martial_art_from_json.py -#: lang/json/martial_art_from_json.py -msgid "Fior Di Battaglia" -msgid_plural "Fior Di Battaglia" +#: lang/json/BOOK_from_json.py +msgid "skitterbot schematics" +msgid_plural "skitterbot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" -"A completely translated medieval guide teaching various techniques with " -"polearms, there is a chapter about the many variations of common polearms… " -"there are even pictures!" +"Assembly plans, design specs, and technical drawings for the skitterbot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Historic European Swordfighting" -msgid_plural "Historic European Swordfighting" +msgid "cleaner bot schematics" +msgid_plural "cleaner bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" -"A complete guide to medieval swordsmanship. Compares the German and Italian" -" traditions for a multitude of swords, in and out of armor, with and without" -" shield." +"Assembly plans, design specs, and technical drawings for the cleaner bot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Internal Combustion Fundamentals" -msgid_plural "copies of Internal Combustion Fundamentals" +msgid "miner bot schematics" +msgid_plural "miner bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Internal Combustion Fundamentals +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" -"A college-level textbook that details the operation, maintenance, and repair" -" of internal combustion engines." +"Assembly plans, design specs, and technical drawings for the miner bot. " +"Most of this is useless to you, but you could use the assembly plans to re-" +"assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "army improvised field repairs manual" -msgid_plural "army improvised field repairs manuals" +msgid "riot control bot schematics" +msgid_plural "riot control bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for army improvised field repairs manual +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" -"A compact manual with faded print detailing a number of improvised field " -"repairs that can be made to vehicles." +"Assembly plans, design specs, and technical drawings for the riot control " +"bot. Most of this is useless to you, but you could use the assembly plans " +"to re-assemble the robot from salvaged parts." msgstr "" -"Компактний посібник зі зблідлими сторінками, що описує можливості " -"імпровізованого ремонту транспорту у польових умовах." #: lang/json/BOOK_from_json.py -msgid "Popular Mechanics" -msgid_plural "issues of Popular Mechanics" +msgid "lab defense bot schematics" +msgid_plural "lab defense bot schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Popular Mechanics +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" -"A magazine about mechanical innovations. Full of entertaining articles and " -"advertisements for esoteric gadgets." +"Assembly plans, design specs, and technical drawings for the lab defense " +"bot. Most of this is useless to you, but you could use the assembly plans " +"to re-assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Under the Hood" -msgid_plural "copies of Under the Hood" +msgid "dispatch schematics" +msgid_plural "dispatch schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Under the Hood +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py -msgid "An advanced mechanics manual, covering all sorts of topics." +msgid "" +"Bearing the logo of Northrop, these are assembly plans, design specs, and " +"technical drawings for the dispatch. Most of this is useless to you, but " +"you could use the assembly plans to re-assemble the robot from salvaged " +"parts." msgstr "" -"Розширене видання посібника з механіки, що охоплює найрізноманітніші теми." #: lang/json/BOOK_from_json.py -msgid "lab journal-Curie" -msgid_plural "lab journals-Curie" +msgid "military dispatch schematics" +msgid_plural "military dispatch schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lab journal-Curie +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" -"This lab notebook is filled with the collective discoveries and refinements " -"of a research team dedicated to nuclear energy. You don't think you're " -"ready to start a second Cataclysm, but the general information provided " -"might be useful…" +"Bearing the logo of Northrop, these are assembly plans, design specs, and " +"technical drawings for the military dispatch. Most of this is useless to " +"you, but you could use the assembly plans to re-assemble the robot from " +"salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Hot Rod Chassis & Suspension Handbook" -msgid_plural "copies of Hot Rod Handbook" +msgid "anti-materiel turret schematics" +msgid_plural "anti-materiel turret schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Hot Rod Chassis & Suspension Handbook +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" -"By learning the fundamentals of chassis building and suspension design you " -"will gain the critical knowledge needed to hot rod properly." +"Assembly plans, design specs, and technical drawings for the anti-materiel " +"turret. Most of this is useless to you, but you could use the assembly " +"plans to re-assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Mechanical Mastery" -msgid_plural "copies of Mechanical Mastery" +msgid "milspec searchlight schematics" +msgid_plural "milspec searchlight schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Mechanical Mastery +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" -"An advanced guide on mechanics and welding, covering topics like \"Grinding " -"off rust\" and \"Making cursive E's\"." +"Assembly plans, design specs, and technical drawings for the milspec " +"searchlight. Most of this is useless to you, but you could use the assembly" +" plans to re-assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "CQB Monthly" -msgid_plural "CQB Monthlies" +msgid "The Art of Glassblowing" +msgid_plural "copies of The Art of Glassblowing" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CQB Monthly +#. ~ Description for The Art of Glassblowing #: lang/json/BOOK_from_json.py msgid "" -"An in-depth look at various styles of close quarters fighting. There's an " -"amusing essay about dirty tricks in the front section." +"A textbook that illustrates the science and technique of the ancient art of " +"glassblowing." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Close Quarter Fighting Manual" -msgid_plural "copies of Close Quarter Fighting Manual" +msgid "Plastics & Polymers: Projects for the Classroom" +msgid_plural "copies of Plastics & Polymers: Projects for the Classroom" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Close Quarter Fighting Manual +#. ~ Description for Plastics & Polymers: Projects for the Classroom #: lang/json/BOOK_from_json.py msgid "" -"A well-thumbed hardbound book which illustrates simple strategies and " -"techniques for close quarters combat encounters." +"A textbook that goes through types and material properties of various common" +" plastics, and how to use them in several common projects." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Zombie Survival Guide" -msgid_plural "copies of Zombie Survival Guide" +msgid "The Prop Builder's Molding and Casting Handbook" +msgid_plural "copies of The Prop Builder's Molding and Casting Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Zombie Survival Guide +#. ~ Description for The Prop Builder's Molding and Casting Handbook #: lang/json/BOOK_from_json.py msgid "" -"While this seems like it would be very useful in this situation, the sheer " -"amount of misinformation present makes it practically useless." +"The first book to contain, in one comprehensive volume, every molding and " +"casting procedure of use to the theater props builder of any skill level. " +"The author demonstrates the techniques involved in over thirty materials " +"from papier-mache to breakaway glass." msgstr "" #: lang/json/BOOK_from_json.py -msgid "black box transcript" -msgid_plural "black box transcripts" +msgid "Antique Adornments" +msgid_plural "copies of Antique Adornments" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black box transcript +#. ~ Description for Antique Adornments #: lang/json/BOOK_from_json.py msgid "" -"A full flight log for a military aircraft. Nothing of interest stands out." +"A comprehensive and illustrated history of crown, bracelet, necklace and " +"others." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ranch Prospectus" -msgid_plural "Ranch Prospectus" +msgid "Crafty Crafter's Quarterly" +msgid_plural "Crafty Crafter's Quarterlies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Crafty Crafter's Quarterly #: lang/json/BOOK_from_json.py msgid "" -"A short paper of the economic viability of constructing an agricultural " -"outpost." +"A fun quarterly magazine all about macaroni art and things you can make by " +"supergluing found objects together." msgstr "" -#. ~ Description for standpipe maintenance log +#: lang/json/BOOK_from_json.py +msgid "101 Crafts for Beginners" +msgid_plural "copies of 101 Crafts for Beginners" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for 101 Crafts for Beginners #: lang/json/BOOK_from_json.py msgid "" -"This binder details the scheduled maintenance for several plumbing systems " -"throughout the facility." +"A large, paperback book detailing a hundred and one beginner's projects in " +"fabrication." msgstr "" #: lang/json/BOOK_from_json.py -msgid "book of essays" -msgid_plural "books of essays" +msgid "The Fletcher's Friend" +msgid_plural "copies of The Fletcher's Friend" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for book of essays +#. ~ Description for The Fletcher's Friend #: lang/json/BOOK_from_json.py msgid "" -"A collection of essays by various authors from around the world, including " -"works by Churchill, Mailer, Eco, and Voltaire." +"This hefty book is devoted to folks looking to handcraft their own arrows. " +"It starts with a hip and snappy disclaimer about the risks, both physical " +"and legal, of using explosives and flammable materials. Look for its " +"companion, \"The Bowyer's Buddy\"!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Hitchhiker's Guide to the Cataclysm" -msgid_plural "copies of The Hitchhiker's Guide to the Cataclysm" +msgid "The Bowyer's Buddy" +msgid_plural "copies of The Bowyer's Buddy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Hitchhiker's Guide to the Cataclysm +#. ~ Description for The Bowyer's Buddy #: lang/json/BOOK_from_json.py msgid "" -"Inscribed on the cover in large, friendly letters, is the message \"Don't " -"Panic\"." +"This hefty book is dedicated to craftsfolk and outdoors-y types looking to " +"make their own bows. It recommends its companion volume \"The Fletcher's " +"Friend\" for instructions on producing their ammunition." msgstr "" #: lang/json/BOOK_from_json.py -msgid "comic book" -msgid_plural "comic books" -msgstr[0] "комікс" -msgstr[1] "комікси" -msgstr[2] "коміксів" -msgstr[3] "комікс" +msgid "The Handloader's Helper" +msgid_plural "copies of The Handloader's Helper" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for comic book +#. ~ Description for The Handloader's Helper #: lang/json/BOOK_from_json.py -msgid "A super-hero comic." +msgid "" +"Everything you could ever want to know about handloading ammunition, sealed " +"with a… childproof cover. Apparently a liability thing, because the chapter" +" on explosive rounds covers them in excellent detail too." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Computer Gaming" -msgid_plural "issues of Computer Gaming" +msgid "Rivtech design binder" +msgid_plural "Rivtech design binders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Computer Gaming +#. ~ Description for Rivtech design binder #: lang/json/BOOK_from_json.py msgid "" -"Reviews of recently released computer games and previews of upcoming titles." +"This Rivtech binder warns that \"Unauthorized readers are our best test " +"subjects.\" With good reason: it contains complete design specs and " +"technical drawings for their entire line of products." msgstr "" #: lang/json/BOOK_from_json.py -msgid "TIME magazine" -msgid_plural "TIME magazines" +msgid "lab journal-Gustav" +msgid_plural "lab journals-Gustav" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for TIME magazine +#. ~ Description for lab journal-Gustav #: lang/json/BOOK_from_json.py -msgid "Current events concerning a bunch of people who're all (un)dead now." +msgid "" +"This paper notebook is mostly full of boring logs, experimental observations" +" and notes. Mixed in, however, are musings on how to use the lab's vapor " +"deposition machine to deposit amorphous carbon in a diamond-like form onto " +"common metals. The author's intended goal was a better non-stick frying " +"pan, but you can think of a couple of better uses for it." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Analyst" -msgid_plural "issues of The Analyst" +msgid "The Streetfighter's Sidekick" +msgid_plural "copies of The Streetfighter's Sidekick" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Analyst +#. ~ Description for The Streetfighter's Sidekick #: lang/json/BOOK_from_json.py msgid "" -"This news magazine has been described as \"a kind of Reader's Digest for " -"America's corporate elite.\" These concerns are, of course, behind us now." +"A sizable how-to guide for making hand-to-hand combat weapons. Though the " +"processes are thoroughly detailed and several illustrations are provided, " +"they rely heavily on technical jargon. More for machinists-turned-" +"weaponsmiths than streetfighters, really." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Playboy" -msgid_plural "issues of Playboy" +msgid "The Art of Japanese Armormaking" +msgid_plural "copies of The Art of Japanese Armormaking" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Playboy +#. ~ Description for The Art of Japanese Armormaking #: lang/json/BOOK_from_json.py -msgid "You can read it for the articles. Or not." +msgid "" +"This in-depth and technical text details various forms of ancient Japanese " +"armor crafting, and is well illustrated with lots of photos." msgstr "" #: lang/json/BOOK_from_json.py -msgid "frequency list" -msgid_plural "frequency lists" +msgid "Arms and Armor of Imperial China" +msgid_plural "copies of Arms and Armor of Imperial China" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for frequency list +#. ~ Description for Arms and Armor of Imperial China #: lang/json/BOOK_from_json.py -msgid "A notepad with a number of frequencies scribbled on it." +msgid "" +"This textbook details the military history of ancient China, with a " +"particular focus on the nature of historical arms and armor. It also " +"details some of the equipment used by other cultures that came into conflict" +" with the empire over various dynasties." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Rural Digest-Examiner" -msgid_plural "issues of Rural Digest-Examiner" +msgid "Studies in Historic Armorsmithing" +msgid_plural "copies of Studies in Historic Armorsmithing" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Rural Digest-Examiner +#. ~ Description for Studies in Historic Armorsmithing #: lang/json/BOOK_from_json.py msgid "" -"A newsweekly covering regional events. There is an article on the winter's " -"snowstorms and several letters to the editor concerning the community " -"response." +"This in-depth and technical text details various forms of ancient European " +"armor crafting, and is well illustrated with lots of photos." msgstr "" #: lang/json/BOOK_from_json.py -msgid "adventure novel" -msgid_plural "adventure novels" +msgid "DIY Compendium" +msgid_plural "copies of DIY Compendium" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for adventure novel +#. ~ Description for DIY Compendium #: lang/json/BOOK_from_json.py msgid "" -"The stirring tale of a race against time, in search of a lost city located " -"in the heart of the African continent." +"A thick, hardbound book detailing countless projects for inventions that " +"claim to improve all aspects of life." msgstr "" #: lang/json/BOOK_from_json.py -msgid "buddy novel" -msgid_plural "buddy novels" +msgid "A History of Firefighting" +msgid_plural "copies of A History of Firefighting" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for buddy novel +#. ~ Description for A History of Firefighting #: lang/json/BOOK_from_json.py msgid "" -"A gripping tale of two friends struggling to survive on the streets of New " -"York City." +"This in-depth and technical text details the history of firefighting from " +"ancient times into the modern era, with a focus on the technology used to " +"save lives." msgstr "" #: lang/json/BOOK_from_json.py -msgid "crime novel" -msgid_plural "crime novels" +msgid "The Swords of the Samurai" +msgid_plural "copies of The Swords of the Samurai" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for crime novel +#. ~ Description for The Swords of the Samurai #: lang/json/BOOK_from_json.py msgid "" -"After their diamond heist goes wrong, the surviving criminals begin to " -"suspect that one of them is a police informant." +"This in-depth and technical text details various forms of ancient Japanese " +"sword smithing, and is well illustrated with step by step photo " +"instructions." msgstr "" -#. ~ Description for crime novel +#: lang/json/BOOK_from_json.py +msgid "The Historic Weaponsmith" +msgid_plural "copies of The Historic Weaponsmith" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Historic Weaponsmith #: lang/json/BOOK_from_json.py msgid "" -"A story about three people in the fictional city of Los Santos, a gangster, " -"an upper-class man, and a psychopath, eventually banding together to pull-" -"off the biggest heist in the city's history" +"This in-depth and technical text details various forms of ancient European " +"weapon smithing, and is well illustrated with step by step photo " +"instructions." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Murdered by the Grapevine" -msgid_plural "copies of Murdered by the Grapevine" +msgid "Welding and Metallurgy" +msgid_plural "copies of Welding and Metallurgy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Murdered by the Grapevine +#. ~ Description for Welding and Metallurgy #: lang/json/BOOK_from_json.py msgid "" -"This cheap paperback tells the story of a mob boss done in by mere " -"suspicion. She never breaks a confidence, never rats out an accomplice, and" -" never turns her back on a friend. Nonetheless her grip on the reigns of " -"the underworld is eroded by rumor and paranoia." +"A rather technical textbook that illustrates the science and technique of " +"becoming a better welder." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Midnight Cop" -msgid_plural "copies of Midnight Cop" +msgid "101 Home Repairs" +msgid_plural "copies of 101 Home Repairs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Midnight Cop +#. ~ Description for 101 Home Repairs #: lang/json/BOOK_from_json.py msgid "" -"In this bare-knuckled potboiler, a ruthless police detective schemes to shut" -" down local crime lords by pitting them against each other. When long-" -"simmering resentments finally flare the city learns why they call it \"the " -"dead of night.\"" +"A paperback book detailing 101 home repair projects for the novice " +"carpenter." msgstr "" #: lang/json/BOOK_from_json.py -msgid "drama novel" -msgid_plural "drama novels" +msgid "The Complete Home Repair Guide" +msgid_plural "copies of The Complete Home Repair Guide" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for drama novel +#. ~ Description for The Complete Home Repair Guide #: lang/json/BOOK_from_json.py -msgid "A real book for real adults." +msgid "" +"A massive book that details virtually every aspect of remodeling and " +"repairing a home, with concise terminology aimed at experienced carpenters." msgstr "" #: lang/json/BOOK_from_json.py -msgid "erotic novel" -msgid_plural "erotic novels" +msgid "Birdhouse Monthly" +msgid_plural "Birdhouse Monthlies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for erotic novel +#. ~ Description for Birdhouse Monthly #: lang/json/BOOK_from_json.py -msgid "A hackneyed fictional narrative concealing low-grade literary smut." +msgid "A riveting periodical all about birdhouses and their construction." msgstr "" #: lang/json/BOOK_from_json.py -msgid "experimental novel" -msgid_plural "experimental novels" +msgid "Building for Beginners" +msgid_plural "copies of Building for Beginners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for experimental novel +#. ~ Description for Building for Beginners #: lang/json/BOOK_from_json.py msgid "" -"A bizarre play about the philosophy of existential absurdity. Or maybe it's" -" about two guys waiting for their friend to show up. It's confusing." +"A large, paperback book detailing several beginner's projects in " +"construction." msgstr "" #: lang/json/BOOK_from_json.py -msgid "fantasy novel" -msgid_plural "fantasy novels" +msgid "Engineering 301" +msgid_plural "copies of Engineering 301" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fantasy novel +#. ~ Description for Engineering 301 #: lang/json/BOOK_from_json.py -msgid "Basic sword & sorcery." +msgid "A textbook on civil engineering and construction." msgstr "" #: lang/json/BOOK_from_json.py -msgid "horror novel" -msgid_plural "horror novels" +msgid "Machinery's Handbook" +msgid_plural "copies of Machinery's Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for horror novel +#. ~ Description for Machinery's Handbook #: lang/json/BOOK_from_json.py -msgid "Maybe not the best reading material considering the situation." +msgid "" +"This classic reference work contains extensive, dense chapters and tables on" +" materials, metrology, toolmaking, gears, threading and more. This recent " +"edition includes extensive data on what were the latest techniques in " +"additive manufacturing. If you need to know how best complete a certain " +"machining operation, the answer lies somewhere in these pages." msgstr "" #: lang/json/BOOK_from_json.py -msgid "mystery novel" -msgid_plural "mystery novels" +msgid "Concrete Constructions" +msgid_plural "copies of Concrete Constructions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mystery novel +#. ~ Description for Concrete Constructions #: lang/json/BOOK_from_json.py -msgid "A detective investigates an unusual murder in a secluded location." +msgid "" +"A collection of notable uses of concrete. Contains detailed directions on " +"how to mix and use cement to form useful aggregates." msgstr "" #: lang/json/BOOK_from_json.py -msgid "road novel" -msgid_plural "road novels" +msgid "Guide to Advanced Emergency Care" +msgid_plural "copies of Guide to Advanced Emergency Care" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for road novel +#. ~ Description for Guide to Advanced Emergency Care #: lang/json/BOOK_from_json.py msgid "" -"A tale about a group of friends who wander the USA in the 1960s against a " -"backdrop of jazz, poetry and drug use." +"A thick textbook for paramedics describing advanced lifesaving procedures " +"and field-expedient care methods." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Gore Longtitude" -msgid_plural "copies of Gore Longitude" +msgid "Paramedics" +msgid_plural "issues of Paramedics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Gore Longtitude +#. ~ Description for Paramedics #: lang/json/BOOK_from_json.py -msgid "" -"Award-winning author Cornac McCaffordy weaves a chilling tale of horror and " -"strife, following the compellingly lucrative, seductively dangerous bounty " -"hunting and scalping trade across the western frontier." +msgid "An educational magazine for EMTs." msgstr "" #: lang/json/BOOK_from_json.py -msgid "romance novel" -msgid_plural "romance novels" +msgid "The Big Book of First Aid" +msgid_plural "copies of The Big Book of First Aid" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for romance novel +#. ~ Description for The Big Book of First Aid #: lang/json/BOOK_from_json.py -msgid "Drama and mild smut." +msgid "It's big and heavy, but full of great information about first aid." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Love and Circuses" -msgid_plural "copies of Love and Circuses" +msgid "Pocket Guide to First Aid" +msgid_plural "copies of Pocket Guide to First Aid" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Love and Circuses +#. ~ Description for Pocket Guide to First Aid #: lang/json/BOOK_from_json.py msgid "" -"The passionate saga of two Boston politicians fiercely battling each other " -"for the mayor's office, and for Lydia's hand in marriage." +"This pocket-sized leather-bound guide to first aid combines a wealth of " +"concise information with simple to follow instructions and easy to read " +"illustrations." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Cloven Kisses" -msgid_plural "copies of Cloven Kisses" +msgid "First Responder Handbook" +msgid_plural "copies of First Responder Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cloven Kisses +#. ~ Description for First Responder Handbook #: lang/json/BOOK_from_json.py msgid "" -"When the devil falls in love with a warlock, his proposal must be infernally" -" wicked. Will hooves, horns, and the scent of sulphur condemn love's flames" -" to hellfire?" +"A hardbound book detailing advanced first aid techniques and field-expedient" +" medical care." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Conquer Me Sweetly" -msgid_plural "copies of Conquer Me Sweetly" +msgid "First Aid Kit Instruction Booklet" +msgid_plural "copies of First Aid Kit Instruction Booklet" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Conquer Me Sweetly +#. ~ Description for First Aid Kit Instruction Booklet #: lang/json/BOOK_from_json.py -msgid "" -"Sweet Providence Books is delighted to offer you this romantic tale of " -"delicious dalliances and daring delights." +msgid "Illustrated how-to guide for your first aid kit." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Dubliner's Debutante" -msgid_plural "copies of Dubliner's Debutante" +msgid "Physicians' Desk Reference" +msgid_plural "copies of Physicians' Desk Reference" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dubliner's Debutante +#. ~ Description for Physicians' Desk Reference #: lang/json/BOOK_from_json.py msgid "" -"His love songs were only for me, but I preferred the banjo over bagpipes. " -"How could I ever love a kilted yankee of foreign breeding?" +"This hefty volume contains all the legally mandated information relevant to " +"physicians for writing prescriptions, generously supported by the efforts " +"and contributions of major pharmaceutical companies. For the most part, it " +"provides information identical to what is available on that of medication " +"packaging inserts, and cannot match the completeness of digital " +"pharmaceutical references like Medisoft. At least it doesn't need power to " +"be used." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Blood Diodes" -msgid_plural "copies of Blood Diodes" +msgid "Merck Veterinary Manual" +msgid_plural "copies of Merck Veterinary Manual" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Blood Diodes +#. ~ Description for Merck Veterinary Manual #: lang/json/BOOK_from_json.py msgid "" -"He is an automaton, she is a reformed vampire, can love find a way? In this" -" edgy romance by acclaimed author Kea Dekker, heartbreak is just the " -"beginning." +"This expansive text covers 'all domestic species and diseases in veterinary " +"medicine worldwide'. Should you need information regarding zoonotic " +"diseases, off-label use of medication for animals, common dysfunctions and " +"diseases of animals, or any other veterinary reference info, this is your " +"book. There are some interesting new chapters on animal cloning in this " +"edition." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Envying Heaven" -msgid_plural "copies of Envying Heaven" +msgid "Textbook of Advanced Toxicology" +msgid_plural "copies of Textbook of Advanced Toxicology" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Envying Heaven +#. ~ Description for Textbook of Advanced Toxicology #: lang/json/BOOK_from_json.py msgid "" -"When her fiancee names a star for her Wanda begins to wonder if an " -"astronomer's wife can ever compete with the allure of the cosmos." +"This unassuming volume details the broad spectrum of chemical and biological" +" toxins known to modern medicine. While the obvious focus of the book is " +"the therapy of such poisonings, there are lengthy sections describing the " +"structure and synthesis of some compounds of interest." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Tall, Dark, and Gruesome" -msgid_plural "copies of Tall, Dark, and Gruesome" +msgid "Guns n Ammo" +msgid_plural "issues of Guns n Ammo" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Tall, Dark, and Gruesome +#. ~ Description for Guns n Ammo #: lang/json/BOOK_from_json.py -msgid "" -"Fatima's obsession with the dead threatens to consume her when she falls in " -"love with a restless ghost. In this provocative romp celebrated author Kea " -"Dekker gently lifts the thin veil separating cold bodies from warm." +msgid "Reviews of firearms, and various useful tips about their use." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Along Came a Rider" -msgid_plural "copies of Along Came a Rider" +msgid "The Gun Owner's Handbook" +msgid_plural "copies of The Gun Owner's Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Along Came a Rider +#. ~ Description for The Gun Owner's Handbook #: lang/json/BOOK_from_json.py msgid "" -"When Beth's career as a pro steeplechase jockey threatens to divide her from" -" her lover, Beth has to act fast. Will she ever find a man that can keep up" -" with her racing heart?" +"A thick soft-cover book that claims to be a complete guide to safely " +"operating, maintaining, and repairing firearms." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Rogue's Virtue" -msgid_plural "copies of Rogue's Virtue" +msgid "Pocket Guide to Firearm Safety" +msgid_plural "copies of Pocket Guide to Firearm Safety" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Rogue's Virtue +#. ~ Description for Pocket Guide to Firearm Safety #: lang/json/BOOK_from_json.py msgid "" -"Can Victoria reform the fugitive from justice who wooed her with false " -"pretenses and true passion?" +"This pocket-sized leather-bound guide to firearm safety combines a wealth of" +" concise information with simple to follow instructions and easy to read " +"illustrations." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Death of My Secret Life" -msgid_plural "copies of The Death of My Secret Life" +msgid "Ballistics: Theory, Design, and Application" +msgid_plural "copies of Ballistics: Theory, Design, and Application" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Death of My Secret Life +#. ~ Description for Ballistics: Theory, Design, and Application #: lang/json/BOOK_from_json.py msgid "" -"Makeda comes out to her family, but she's still got plenty of skeletons in " -"her closet. Best selling authoress Kea Dekker breaks all the rules in this " -"macabre story of love and lies." +"This hefty, hardbound textbook is written in obtuse, complex language. If " +"you already knew a bit about engineering and fabrication, it might be a " +"useful reference on gunsmithing and design, but without that knowledge it'd " +"be better used to prop up a table." msgstr "" #: lang/json/BOOK_from_json.py -msgid "samurai novel" -msgid_plural "samurai novels" +msgid "High Explosives Quarterly" +msgid_plural "High Explosives Quarterlies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for samurai novel +#. ~ Description for High Explosives Quarterly #: lang/json/BOOK_from_json.py msgid "" -"The classic tale of a wandering swordsman who comes to a small settlement " -"and is hired to help the townsfolk defend themselves from a band of " -"marauding outlaws. This hardback is quite hefty." +"An interesting quarterly report about rocket launchers and recoilless " +"rifles. There are lots of large, exciting photos of explosions and " +"weaponry." msgstr "" #: lang/json/BOOK_from_json.py -msgid "satire novel" -msgid_plural "satire novels" +msgid "Jane's Mortars and Rocket Launchers" +msgid_plural "copies of Jane's Mortars and Rocket Launchers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for satire novel +#. ~ Description for Jane's Mortars and Rocket Launchers #: lang/json/BOOK_from_json.py msgid "" -"A political satire of the pre-apocalypse world. Looking back on it from " -"this side of Armageddon makes it seem all the more ridiculous." +"An incredibly detailed guide to modern rockets, mortars, grenade launchers, " +"and recoilless weaponry. Lavishly illustrated with color photographs, it " +"contains a wealth of information." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The House of God" -msgid_plural "copies of The House of God" +msgid "MIT Guide to Lock Picking" +msgid_plural "copies of MIT Guide to Lock Picking" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The House of God +#. ~ Description for MIT Guide to Lock Picking #: lang/json/BOOK_from_json.py msgid "" -"Set in a lightly disguised Boston hospital of high repute, Samuel Shem’s " -"novel dives deep into the agony of absurdity." +"A home-made booklet with large black-and-white pictures of several types of " +"modern locks and general information on how to crack them open." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Catch-22" -msgid_plural "copies of Catch-22" +msgid "The Spirit of Aikido" +msgid_plural "The Spirit of Aikido" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Catch-22 +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py -msgid "" -"There is a short informational forward in this paperback edition of " -"Catch-22. Apparently the original title for Joseph Heller’s excruciatingly " -"brilliant war satire was \"Catch-11.\"" +msgid "A complete guide to Aikido." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Master and Margarita" -msgid_plural "copies of Master and Margarita" +msgid "Practical Pugilism" +msgid_plural "Practical Pugilism" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Master and Margarita +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" -"Featuring a cast that includes Satan, Pontius Pilate, Jesus Christ, " -"vampires, a talking cat, and the literary elite of Moscow, this novel by " -"Mikhail Bulgakov explores philosophical issues on the nature of good and " -"evil." +"A complete guide to boxing. Let's get ready to rough-up some ruffians!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "A Handful of Dust" -msgid_plural "copies of A Handful of Dust" +msgid "Capoeira 100" +msgid_plural "Capoeira 100" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for A Handful of Dust +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py -msgid "" -"Laced with cynicism, Evelyn Waugh's \"A Handful of Dust\" satirizes a " -"stratum of characters who have wealth, but lack any other credentials." +msgid "A complete guide to Capoeira." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Cat’s Cradle" -msgid_plural "copies of Cat’s Cradle" +msgid "The Centipede Lu Feng" +msgid_plural "The Centipede Lu Feng" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cat’s Cradle +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py -msgid "" -"A paperback edition of Kurt Vonnegut's fourth novel, in which the threat of " -"nuclear destruction isn't much of an influence on human nature." +msgid "A complete guide to Centipede Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "spy novel" -msgid_plural "spy novels" +msgid "The Red Crane" +msgid_plural "The Red Crane" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for spy novel +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py -msgid "" -"A tale of intrigue and espionage amongst Nazis, no, Commies, no, Iraqis!" +msgid "A complete guide to Crane Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Come Fly the Treacherous Skies" -msgid_plural "copies of Come Fly the Treacherous Skies" +msgid "The Jade Dragon" +msgid_plural "The Jade Dragon" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Come Fly the Treacherous Skies +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py -msgid "" -"This tale of intrigue betrays the story of a debonair mechanic driven by a " -"lust for revenge. As she uncovers a sophisticated network of amateur pilots" -" turned smugglers, the good guys and the bad guys begin to all look the " -"same." +msgid "A complete guide to Dragon Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Lies, Damn Lies, and Rocket Science" -msgid_plural "copies of Lies, Damn Lies, and Rocket Science" +msgid "Practical Eskrima" +msgid_plural "Practical Eskrima" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Lies, Damn Lies, and Rocket Science +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py -msgid "" -"This spy novel tells the story of a jaded rocket scientist looking for " -"redemption in all the wrong places. As selling state secrets becomes her " -"career, she learns there isn't much of difference between a double-agent and" -" a triple-agent." +msgid "A complete guide to Eskrima." msgstr "" #: lang/json/BOOK_from_json.py -msgid "swashbuckling novel" -msgid_plural "swashbuckling novels" +msgid "The Modern Swordsman" +msgid_plural "The Modern Swordsman" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for swashbuckling novel +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py -msgid "" -"An exciting seventeenth century tale of how an enslaved Irish doctor and his" -" comrades-in-chains escape and become heroic pirates of the Robin Hood " -"variety." +msgid "A complete guide to Fencing." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Black Freighter" -msgid_plural "copies of The Black Freighter" +msgid "Kodokan Judo" +msgid_plural "Kodokan Judo" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Black Freighter +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py -msgid "" -"Who watches the watchmen? Pirate Jenny, that's who! This swashbuckling " -"adventure novel will make you feel swell." +msgid "A complete guide to Judo." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Captain Gosgold and the Sea Rovers of Buzzards Bay" -msgid_plural "copies of The Sea Rovers" +msgid "The Shotokan Karate Handbook" +msgid_plural "The Shotokan Karate Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Captain Gosgold and the Sea Rovers of Buzzards Bay +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py -msgid "" -"This lengthy paperback novel describes the ocean exploits of Captain " -"Gosgold. The British consider him an outlaw, but in America he is a " -"patriot." +msgid "A complete guide to Shotokan Karate." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Code of the Buccaneer" -msgid_plural "copies of The Buccaneer" +msgid "Complete Krav Maga" +msgid_plural "Complete Krav Maga" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Code of the Buccaneer +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py -msgid "" -"The cover of this paperback pirate story shows a shirtless man and a near " -"shirtless woman. Clearly it is not a dress code." +msgid "A complete guide to Krav Maga." msgstr "" #: lang/json/BOOK_from_json.py -msgid "thriller novel" -msgid_plural "thriller novels" +msgid "The Deaf Leopard" +msgid_plural "The Deaf Leopard" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for thriller novel +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py -msgid "A suspenseful tale of betrayal and revenge." +msgid "A complete guide to Leopard Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "tragedy novel" -msgid_plural "tragedy novels" +msgid "The Lizard Kuo Chui" +msgid_plural "The Lizard Kuo Chui" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tragedy novel +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py -msgid "" -"The story of two young lovers whose feuding families threaten to keep them " -"apart." +msgid "A complete guide to Lizard Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "war novel" -msgid_plural "war novels" +msgid "Ultimate Muay Thai" +msgid_plural "Ultimate Muay Thai" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for war novel -#: lang/json/BOOK_from_json.py -msgid "" -"A thrilling narrative of survival in a prisoner of war camp during the " -"Second World War, filled with riveting subplots about rat farming and " -"dysentery." -msgstr "" - -#. ~ Description for war novel +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py -msgid "" -"A story about a Bosnian citizen who goes through many hardships and near " -"death during the breakup of Yugoslavia." +msgid "A complete guide to Muay Thai." msgstr "" #: lang/json/BOOK_from_json.py -msgid "western novel" -msgid_plural "western novels" +msgid "Essence of Ninjutsu" +msgid_plural "Essence of Ninjutsu" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for western novel +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py -msgid "" -"The classic tale of a gunfighting stranger who comes to a small settlement " -"and is hired to help the townsfolk defend themselves from a band of " -"marauding outlaws." +msgid "A complete guide to Ninjutsu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Atwixt a Brace of Cacti" -msgid_plural "copies of Atwixt a Brace of Cacti" +msgid "The Book of Five Rings" +msgid_plural "The Book of Five Rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Atwixt a Brace of Cacti +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" -"A grizzled clodhopper interviews a mess of rangehands, flummoxing longhorns " -"and tenderfoot alike in a flusteration of jawing." +"A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" +"Ryu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Stinky Bart Puts on Starch" -msgid_plural "copies of Stinky Bart Puts on Starch" +msgid "The Modern Pankratiast" +msgid_plural "The Modern Pankratiast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Stinky Bart Puts on Starch +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py -msgid "" -"A local bandit, driven by sadistic impulses, begins offering unlicensed " -"dentistry to brave frontiersmen with few options and fewer teeth." +msgid "A complete guide to Pankration." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Six Beans in the Wheel" -msgid_plural "copies of Six Beans in the Wheel" +msgid "The Scorpion Sun Chien" +msgid_plural "The Scorpion Sun Chien" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Six Beans in the Wheel +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py -msgid "" -"The safety is off in this gun slinging tale of revenge and redemption by " -"acclaimed author El Amor." +msgid "A complete guide to Scorpion Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Irons at Calico Queen Annex" -msgid_plural "copies of Irons at Calico Queen Annex" +msgid "The Indonesian Warrior" +msgid_plural "The Indonesian Warrior" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Irons at Calico Queen Annex +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py -msgid "" -"The establishment of a telegraph line into the recently named town of Calico" -" Queen threatens to bring with it the long arm of the law. A trio of " -"enterprising gunfighters hatches a plan to keep Calico Queen wild by looting" -" the supply wagons." +msgid "A complete guide to Pentjak Silat." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Riot on the Range" -msgid_plural "copies of Riot on the Range" +msgid "The Black Snake" +msgid_plural "The Black Snake" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Riot on the Range +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py -msgid "" -"Best selling author El Amor paints a visceral study in red with his latest " -"western saga: Riot on the Range." +msgid "A complete guide to Snake Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Vaquero Sun" -msgid_plural "copies of Vaquero Sun" +msgid "Official Taekwondo Training Manual" +msgid_plural "Official Taekwondo Training Manual" +msgstr[0] "Офіційний посібник з тхеквондо " +msgstr[1] "Офіційний посібник з тхеквондо " +msgstr[2] "Офіційний посібник з тхеквондо " +msgstr[3] "Офіційний посібник з тхеквондо " + +#. ~ Description for Official Taekwondo Training Manual +#: lang/json/BOOK_from_json.py +msgid "A complete guide to Taekwondo." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Becoming One with the Tao" +msgid_plural "Becoming One with the Tao" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Vaquero Sun +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py -msgid "" -"Western author El Amor relates the story of a dispossessed young man " -"inspired by a heat stroke delusion to pursue justice against an evil land " -"baron." +msgid "A complete guide to T'ai Chi Ch'uan." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Vendetta Riders" -msgid_plural "copies of The Vendetta Riders" +msgid "The White Tiger" +msgid_plural "The White Tiger" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Vendetta Riders +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py -msgid "" -"A wild young man, fast on the draw, who thinks he has nothing to lose, falls" -" in with a group of gun runners." +msgid "A complete guide to Tiger Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "phone book" -msgid_plural "phone books" +msgid "The Toad Lo Mang" +msgid_plural "The Toad Lo Mang" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for phone book +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py -msgid "" -"This hefty volume contains the telephone numbers of individuals, businesses," -" and utilities in the nearby area, pretty useless during the apocalypse and " -"all." +msgid "A complete guide to Toad Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "photo album" -msgid_plural "photo albums" +msgid "The Viper Wei Pai" +msgid_plural "The Viper Wei Pai" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for photo album +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py -msgid "" -"A leather album full of photos of somebody's family. You don't know any of " -"the people in them, but seeing these pictures still makes you think of " -"happier times." +msgid "A complete guide to Viper Kung Fu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "book of plays" -msgid_plural "books of plays" +msgid "Zui Quan and You" +msgid_plural "Zui Quan and You" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for book of plays +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py -msgid "" -"A collection of plays by various authors from around the world, including " -"scripts by Wilde, Beckett, Checkov, and Shakespeare." +msgid "A complete guide to Zui Quan." msgstr "" #: lang/json/BOOK_from_json.py -msgid "book of poetry" -msgid_plural "books of poetry" +msgid "The Way of the Spear" +msgid_plural "The Way of the Spear" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for book of poetry +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py -msgid "" -"A collection of poetry by various authors from around the world, including " -"writings by Dickinson, Goethe, Thoreau, and Yeats." +msgid "A complete guide to Sōjutsu." msgstr "" #: lang/json/BOOK_from_json.py -msgid "priest's diary" -msgid_plural "priests' diaries" +msgid "Beautiful Springtime" +msgid_plural "Beautiful Springtime" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for priest's diary +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py -msgid "" -"A small book filled with journal entries in Latin. You can read Latin, " -"right?" +msgid "A complete guide to Wing Chun Kung-fu." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "corporate accounting ledger" -msgid_plural "corporate accounting ledgers" +#: lang/json/BOOK_from_json.py lang/json/martial_art_from_json.py +#: lang/json/martial_art_from_json.py +msgid "Fior Di Battaglia" +msgid_plural "Fior Di Battaglia" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for corporate accounting ledger +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py -msgid "If you knew what to look for something might stand out…" +msgid "" +"A completely translated medieval guide teaching various techniques with " +"polearms, there is a chapter about the many variations of common polearms… " +"there are even pictures!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "patient treatment records" -msgid_plural "patient treatment records" +msgid "Historic European Swordfighting" +msgid_plural "Historic European Swordfighting" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py -msgid "A massive stack of medical records that contain every gory detail." +msgid "" +"A complete guide to medieval swordsmanship. Compares the German and Italian" +" traditions for a multitude of swords, in and out of armor, with and without" +" shield." msgstr "" #: lang/json/BOOK_from_json.py -msgid "national weather transcripts" -msgid_plural "national weather transcripts" +msgid "Internal Combustion Fundamentals" +msgid_plural "copies of Internal Combustion Fundamentals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for Internal Combustion Fundamentals #: lang/json/BOOK_from_json.py -msgid "Old weather records are about as interesting as a rock." +msgid "" +"A college-level textbook that details the operation, maintenance, and repair" +" of internal combustion engines." msgstr "" #: lang/json/BOOK_from_json.py -msgid "big book of short stories" -msgid_plural "big books of short stories" +msgid "army improvised field repairs manual" +msgid_plural "army improvised field repairs manuals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for big book of short stories +#. ~ Description for army improvised field repairs manual #: lang/json/BOOK_from_json.py msgid "" -"This humongous volume contains a vast collection of short stories by " -"different authors, spanning a wide variety of topics and genres." +"A compact manual with faded print detailing a number of improvised field " +"repairs that can be made to vehicles." msgstr "" +"Компактний посібник зі зблідлими сторінками, що описує можливості " +"імпровізованого ремонту транспорту у польових умовах." #: lang/json/BOOK_from_json.py -msgid "book of tall tales" -msgid_plural "books of tall tales" +msgid "Popular Mechanics" +msgid_plural "issues of Popular Mechanics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for book of tall tales +#. ~ Description for Popular Mechanics #: lang/json/BOOK_from_json.py msgid "" -"An entertaining collection of early American folklore, featuring tales of " -"larger than life individuals and their amazing adventures." +"A magazine about mechanical innovations. Full of entertaining articles and " +"advertisements for esoteric gadgets." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Visions in Solitude" -msgid_plural "copies of Visions in Solitude" +msgid "Under the Hood" +msgid_plural "copies of Under the Hood" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Visions in Solitude +#. ~ Description for Under the Hood #: lang/json/BOOK_from_json.py -msgid "A small book detailing 'visions' a prisoner had on death row." +msgid "An advanced mechanics manual, covering all sorts of topics." msgstr "" +"Розширене видання посібника з механіки, що охоплює найрізноманітніші теми." #: lang/json/BOOK_from_json.py -msgid "book of classic literature" -msgid_plural "books of classic literature" +msgid "lab journal-Curie" +msgid_plural "lab journals-Curie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for book of classic literature +#. ~ Description for lab journal-Curie #: lang/json/BOOK_from_json.py msgid "" -"A book of classic literature, timeless and enjoyable but a bit dense to " -"read." +"This lab notebook is filled with the collective discoveries and refinements " +"of a research team dedicated to nuclear energy. You don't think you're " +"ready to start a second Cataclysm, but the general information provided " +"might be useful…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Dickens' \"Bleak House\"." -msgstr "" +msgid "Hot Rod Chassis & Suspension Handbook" +msgid_plural "copies of Hot Rod Handbook" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Hot Rod Chassis & Suspension Handbook #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Great Expectations\" by Charles Dickens." +msgid "" +"By learning the fundamentals of chassis building and suspension design you " +"will gain the critical knowledge needed to hot rod properly." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of William Shinderling's \"Under the Beech Trees\"." -msgstr "" +msgid "Mechanical Mastery" +msgid_plural "copies of Mechanical Mastery" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Mechanical Mastery #: lang/json/BOOK_from_json.py msgid "" -"This is a collection of three Jane Austen novels: \"Pride and Prejudice\", " -"\"Sense and Sensibility\", and \"Emma\"." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a well-worn paperback copy of \"Lord of the Flies\"." +"An advanced guide on mechanics and welding, covering topics like \"Grinding " +"off rust\" and \"Making cursive E's\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"To Kill a Mockingbird\" by Harper Lee." -msgstr "" +msgid "CQB Monthly" +msgid_plural "CQB Monthlies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for CQB Monthly #: lang/json/BOOK_from_json.py -msgid "This is a copy of F. Scott Fitzgerald's \"The Great Gatsby.\"" +msgid "" +"An in-depth look at various styles of close quarters fighting. There's an " +"amusing essay about dirty tricks in the front section." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is copy of Michael Abanaderly's lesser-known work, \"He Walks\"." -msgstr "" +msgid "Close Quarter Fighting Manual" +msgid_plural "copies of Close Quarter Fighting Manual" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Close Quarter Fighting Manual #: lang/json/BOOK_from_json.py msgid "" -"This is a collection of several vintage science fiction stories by Ray " -"Bradbury." +"A well-thumbed hardbound book which illustrates simple strategies and " +"techniques for close quarters combat encounters." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Adventures of Tom Sawyer\" by Mark Twain." -msgstr "" +msgid "Zombie Survival Guide" +msgid_plural "copies of Zombie Survival Guide" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Zombie Survival Guide #: lang/json/BOOK_from_json.py -msgid "This is an illustrated copy of \"Innocents Abroad\" by Mark Twain." +msgid "" +"While this seems like it would be very useful in this situation, the sheer " +"amount of misinformation present makes it practically useless." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Bram Stoker's \"Dracula\", with scholarly commentary in " -"the margins." -msgstr "" +msgid "black box transcript" +msgid_plural "black box transcripts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for black box transcript #: lang/json/BOOK_from_json.py msgid "" -"This is a large print copy of Tolstoy's \"War and Peace\". It might make a " -"decent improvised weapon." +"A full flight log for a military aircraft. Nothing of interest stands out." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a paperback copy of the well-known classic \"Dark Days Ahead\", by " -"K. G. Ranade. There are scrawled margin notes all over it, apparently the " -"workings of a confused and feverish mind." -msgstr "" +msgid "Ranch Prospectus" +msgid_plural "Ranch Prospectus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Jane Eyre\". The cover art is quite out of place, " -"making it look more like a dime-store romance novel." +"A short paper of the economic viability of constructing an agricultural " +"outpost." msgstr "" +#. ~ Description for standpipe maintenance log #: lang/json/BOOK_from_json.py msgid "" -"This is a perfectly preserved hardcover copy of \"The Gunslinger\" by " -"Stephen King, autographed by the author. It contains a certificate of " -"authenticity pronouncing it to be a first edition." +"This binder details the scheduled maintenance for several plumbing systems " +"throughout the facility." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This paperback copy of \"Wuthering Heights\" has a large coffee stain on the" -" first page." -msgstr "" +msgid "book of essays" +msgid_plural "books of essays" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for book of essays #: lang/json/BOOK_from_json.py msgid "" -"This is a hardbound copy of \"Lady Chatterly's Lover\", by D. H. Lawrence. " -"It has some very explicit illustrations." +"A collection of essays by various authors from around the world, including " +"works by Churchill, Mailer, Eco, and Voltaire." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a hardbound copy of \"The Catcher in the Rye.\". It has some very " -"nicely done illustrations." -msgstr "" +msgid "The Hitchhiker's Guide to the Cataclysm" +msgid_plural "copies of The Hitchhiker's Guide to the Cataclysm" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for The Hitchhiker's Guide to the Cataclysm #: lang/json/BOOK_from_json.py msgid "" -"This is a collection of classic renaissance era stories, headlined by \"Don " -"Quixote\"." +"Inscribed on the cover in large, friendly letters, is the message \"Don't " +"Panic\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a paperback copy of \"The Fellowship of the Ring\" by Tolkien." -msgstr "" +msgid "comic book" +msgid_plural "comic books" +msgstr[0] "комікс" +msgstr[1] "комікси" +msgstr[2] "коміксів" +msgstr[3] "комікс" +#. ~ Description for comic book #: lang/json/BOOK_from_json.py -msgid "This is a paperback copy of \"The Two Towers\" by Tolkien." +msgid "A super-hero comic." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a paperback copy of \"The Return of the King\" by Tolkien." -msgstr "" +msgid "Computer Gaming" +msgid_plural "issues of Computer Gaming" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Computer Gaming #: lang/json/BOOK_from_json.py msgid "" -"This is a hardbound collection of George Orwell's works, including \"1984\" " -"and \"Animal Farm\" as well as many of his less infamous titles." +"Reviews of recently released computer games and previews of upcoming titles." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a paperback copy of \"Little Women\" by Louisa May Alcott. It " -"appears to have been read a great many times." -msgstr "" +msgid "TIME magazine" +msgid_plural "TIME magazines" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for TIME magazine #: lang/json/BOOK_from_json.py -msgid "This is a paperback copy of \"Of Mice and Men\" by Steinbeck." +msgid "Current events concerning a bunch of people who're all (un)dead now." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a hefty hardcover copy of \"Run and Run Again\" by Finn Calpay. " -"There is a lengthy forward about the controversy around the book's release." -msgstr "" +msgid "The Analyst" +msgid_plural "issues of The Analyst" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for The Analyst #: lang/json/BOOK_from_json.py msgid "" -"This is a hardcover copy of \"The Gates Have Opened\" by Arianna Methusalah." -" You feel like you've read this before, but can't remember where. " -"Something about the book fills you with unease." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Count of Monte Cristo\" by Dumas." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Secret Garden\" by Frances Burnett." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Lieutenant Hornblower\" by C.S. Forester." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Master and Commander\" by Patrick O'Brian." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Warden\" by Anthony Trollope." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Far Side of the World\" by Patrick O'Brian." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"HMS Surprise\" by Patrick O'Brian." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Barchester Towers\" by Anthony Trollope." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Land Ironclads\" by H.G. Wells." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Great Boer War\" by Arthur Conan Doyle." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Crime of the Congo\" by Arthur Conan Doyle." +"This news magazine has been described as \"a kind of Reader's Digest for " +"America's corporate elite.\" These concerns are, of course, behind us now." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Parasite\" by Arthur Conan Doyle." -msgstr "" +msgid "Playboy" +msgid_plural "issues of Playboy" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Playboy #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"By Stroke of Sword\" by Andrew Balfour." +msgid "You can read it for the articles. Or not." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Secret Agent\" by Joseph Conrad." -msgstr "" +msgid "frequency list" +msgid_plural "frequency lists" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for frequency list #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Lord Jim\" by Joseph Conrad." +msgid "A notepad with a number of frequencies scribbled on it." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Vanity Fair\" by William Makepeace Thackeray." -msgstr "" +msgid "Rural Digest-Examiner" +msgid_plural "issues of Rural Digest-Examiner" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Rural Digest-Examiner #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Luck of Barry Lyndon\" by William Makepeace " -"Thackeray." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"North and South\" by Elizabeth Gaskell." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Mayor of Casterbridge\" by Thomas Hardy." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Wessex Tales\" by Thomas Hardy." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Far from the Madding Crowd\" by Thomas Hardy." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Captains Courageous\" by Rudyard Kipling." +"A newsweekly covering regional events. There is an article on the winter's " +"snowstorms and several letters to the editor concerning the community " +"response." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Canterbury Tales\" by Geoffrey Chaucer." -msgstr "" +msgid "adventure novel" +msgid_plural "adventure novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for adventure novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Harold, the Last of the Saxons\" by Edward Bulwer-" -"Lytton." +"The stirring tale of a race against time, in search of a lost city located " +"in the heart of the African continent." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Mr Midshipman Easy\" by Frederick Marryat." -msgstr "" +msgid "buddy novel" +msgid_plural "buddy novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for buddy novel #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Peter Simple\" by Frederick Marryat." +msgid "" +"A gripping tale of two friends struggling to survive on the streets of New " +"York City." msgstr "" #: lang/json/BOOK_from_json.py -msgid "collector's edition book" -msgid_plural "collector's edition books" +msgid "crime novel" +msgid_plural "crime novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for collector's edition book -#: lang/json/BOOK_from_json.py -msgid "A unique, valuable book that has been kept as a collector's item." -msgstr "" - +#. ~ Description for crime novel #: lang/json/BOOK_from_json.py msgid "" -"This is a high-quality leather bound copy of Charles Dickens' \"A Tale of " -"Two Cities\"." +"After their diamond heist goes wrong, the surviving criminals begin to " +"suspect that one of them is a police informant." msgstr "" +#. ~ Description for crime novel #: lang/json/BOOK_from_json.py msgid "" -"This is a very old but well-preserved copy of Charles Dickens' \"Oliver " -"Twist\"." +"A story about three people in the fictional city of Los Santos, a gangster, " +"an upper-class man, and a psychopath, eventually banding together to pull-" +"off the biggest heist in the city's history" msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This high-quality copy of Jane Austen's \"Pride and Prejudice\" is dog-eared" -" and looks to have been read many times." -msgstr "" +msgid "Murdered by the Grapevine" +msgid_plural "copies of Murdered by the Grapevine" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Murdered by the Grapevine #: lang/json/BOOK_from_json.py msgid "" -"This is a hefty, hardcover print of William Shinderling's \"Vanity before " -"Justice\" with beautiful illustrations." +"This cheap paperback tells the story of a mob boss done in by mere " +"suspicion. She never breaks a confidence, never rats out an accomplice, and" +" never turns her back on a friend. Nonetheless her grip on the reigns of " +"the underworld is eroded by rumor and paranoia." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This copy of Jane Austen's \"Sense and Sensibility\" has a certificate of " -"authenticity declaring it to be an early edition. It would have been worth " -"an enormous amount of money, not long ago." -msgstr "" +msgid "Midnight Cop" +msgid_plural "copies of Midnight Cop" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Midnight Cop #: lang/json/BOOK_from_json.py msgid "" -"This is an excellent quality copy of \"To Kill a Mockingbird\" by Harper " -"Lee." +"In this bare-knuckled potboiler, a ruthless police detective schemes to shut" +" down local crime lords by pitting them against each other. When long-" +"simmering resentments finally flare the city learns why they call it \"the " +"dead of night.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a high-quality leather bound copy of F. Scott Fitzgerald's \"The " -"Great Gatsby.\"" -msgstr "" +msgid "drama novel" +msgid_plural "drama novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for drama novel #: lang/json/BOOK_from_json.py -msgid "" -"This is a hefty, hardcover print of Michael Abanaderly's opus, \"Lady " -"Wanderlust\". It is over a hundred years old, but doesn't look it." +msgid "A real book for real adults." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This copy of Ray Bradbury's \"Fahrenheit 451\" has a certificate of " -"authenticity declaring it to be an early edition. It would have been worth " -"an enormous amount of money, not long ago." -msgstr "" +msgid "erotic novel" +msgid_plural "erotic novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for erotic novel #: lang/json/BOOK_from_json.py -msgid "" -"This high-quality copy of \"Pride and Prejudice and Zombies\" has been " -"autographed by the author." +msgid "A hackneyed fictional narrative concealing low-grade literary smut." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a high-quality leather bound copy of \"The Adventures of Huckleberry" -" Finn\" by Mark Twain. It contains some margin notes which themselves are " -"quite old, and look to have been done by a scholar of some sort." -msgstr "" +msgid "experimental novel" +msgid_plural "experimental novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for experimental novel #: lang/json/BOOK_from_json.py msgid "" -"This is a very nice print of Bram Stoker's \"Dracula\". It has a " -"certificate of authenticity with it that declares it a genuine early " -"edition." +"A bizarre play about the philosophy of existential absurdity. Or maybe it's" +" about two guys waiting for their friend to show up. It's confusing." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This copy of Douglas Adams' \"The Hitchhiker's Guide to the Galaxy\" has a " -"certificate of authenticity declaring it to be a first edition, and is " -"autographed by the author himself." -msgstr "" +msgid "fantasy novel" +msgid_plural "fantasy novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for fantasy novel #: lang/json/BOOK_from_json.py -msgid "" -"This is a high-quality leather bound copy of the well-known classic \"Dark " -"Days Ahead\", by K. G. Ranade." +msgid "Basic sword & sorcery." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a well-kept leather bound copy of \"Oryx and Crake\" by Margaret " -"Atwood. Inscribed in the inner cover is a faded note wishing the owner a " -"happy birthday." -msgstr "" +msgid "horror novel" +msgid_plural "horror novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for horror novel #: lang/json/BOOK_from_json.py -msgid "" -"This bright orange hardcover copy of \"1984\" by George Orwell has been " -"carefully preserved, and appears to be a first or second edition judging " -"from the publisher's information." +msgid "Maybe not the best reading material considering the situation." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a very nice copy of \"Lady Chatterly's Lover\", probably quite " -"expensive in the days before the apocalypse." -msgstr "" +msgid "mystery novel" +msgid_plural "mystery novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for mystery novel #: lang/json/BOOK_from_json.py -msgid "" -"This is a high quality early edition hardcover copy of \"The Handmaid's " -"Tale\" by Margaret Atwood, signed by the author." +msgid "A detective investigates an unusual murder in a secluded location." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This ancient and worn book looks to be an 18th or early 19th century " -"handwritten copy of \"Don Quixote\". In the days of book traders it would " -"have been worth an absolute fortune. Now it's either a priceless piece of " -"history, some light reading before bed, or excellent kindling." -msgstr "" +msgid "road novel" +msgid_plural "road novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for road novel #: lang/json/BOOK_from_json.py msgid "" -"This is a first edition copy of Terry Pratchett's \"The Colour of Magic\". " -"In the inner cover is a handwritten note that reads \"To Chris, thanks for " -"believing I could do it. Best regards, Terry.\"" +"A tale about a group of friends who wander the USA in the 1960s against a " +"backdrop of jazz, poetry and drug use." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Economicon of Dobbs" -msgid_plural "copies of The Economicon" +msgid "Gore Longtitude" +msgid_plural "copies of Gore Longitude" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Economicon of Dobbs +#. ~ Description for Gore Longtitude #: lang/json/BOOK_from_json.py msgid "" -"These are the prescriptures Pile 18 Disk sg30 File 14. \"Look, small brain " -"of pink earth inside my null-grasping, and she/he receives Logos; and it lay" -" with the Wor.\"" +"Award-winning author Cornac McCaffordy weaves a chilling tale of horror and " +"strife, following the compellingly lucrative, seductively dangerous bounty " +"hunting and scalping trade across the western frontier." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Bobliographon" -msgid_plural "copies of The Bobliographon" +msgid "romance novel" +msgid_plural "romance novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Bobliographon +#. ~ Description for romance novel #: lang/json/BOOK_from_json.py -msgid "" -"The back cover of this cheaply published paperback reads: \"These newly-" -"released SubGenius revelations will SHOCK those who think they know Bob! " -"Unpredictables are not alone and possess amazing hidden powers of their own!" -" In a world without slack, a yeti lust revival saunters about. WARNING: Do" -" not fail to pay full price for this book; JHVH-1's wrath knows some " -"bounds.\"" +msgid "Drama and mild smut." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Glimpses of Solomon in Yellow" -msgid_plural "copies of Solomon in Yellow" +msgid "Love and Circuses" +msgid_plural "copies of Love and Circuses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Glimpses of Solomon in Yellow +#. ~ Description for Love and Circuses #: lang/json/BOOK_from_json.py msgid "" -"This paperback is titled \"Glimpses of Solomon in Yellow; The Initiation " -"Rites of the Starry Wisdom Covenant, by Dr. Enoch Craven.\" It describes " -"not just the investiture of new adherents, but the history and beliefs of " -"the Church of Starry Wisdom. Someone has defaced the sparse citations " -"section by scrawling \"PUPPETS OF ROME!\" over its few pages. The book does" -" not provide any biography for Dr. Craven, let alone academic credentials." +"The passionate saga of two Boston politicians fiercely battling each other " +"for the mayor's office, and for Lydia's hand in marriage." msgstr "" #: lang/json/BOOK_from_json.py -msgid "new-age book" -msgid_plural "new-age books" +msgid "Cloven Kisses" +msgid_plural "copies of Cloven Kisses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for new-age book +#. ~ Description for Cloven Kisses #: lang/json/BOOK_from_json.py msgid "" -"A mishmash of self-contradictory advice on spirits, auras, chakras, " -"crystals, and psychic powers." +"When the devil falls in love with a warlock, his proposal must be infernally" +" wicked. Will hooves, horns, and the scent of sulphur condemn love's flames" +" to hellfire?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Your Inner Psychic" -msgid_plural "copies of Your Inner Psychic" +msgid "Conquer Me Sweetly" +msgid_plural "copies of Conquer Me Sweetly" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Your Inner Psychic +#. ~ Description for Conquer Me Sweetly #: lang/json/BOOK_from_json.py msgid "" -"Could you secretly have psychic powers? Learn to see auras, attune to your " -"chakras, and get down and dirty with your astral self." +"Sweet Providence Books is delighted to offer you this romantic tale of " +"delicious dalliances and daring delights." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Healing Power of Crystals" -msgid_plural "copies of The Healing Power of Crystals" +msgid "Dubliner's Debutante" +msgid_plural "copies of Dubliner's Debutante" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Healing Power of Crystals +#. ~ Description for Dubliner's Debutante #: lang/json/BOOK_from_json.py msgid "" -"Why waste time with 'doctors' or 'medicine'? This guide will teach you to " -"harness the innate healing power of crystals and nurture your soul." +"His love songs were only for me, but I preferred the banjo over bagpipes. " +"How could I ever love a kilted yankee of foreign breeding?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Essential Secrets" -msgid_plural "copies of Essential Secrets" +msgid "Blood Diodes" +msgid_plural "copies of Blood Diodes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Essential Secrets +#. ~ Description for Blood Diodes #: lang/json/BOOK_from_json.py msgid "" -"The secret to happiness is simple: aromatherapy. Surround yourself with " -"products from our line of essential oils, using the discount code HAPPY for " -"10 percent off your first purchase, and you too can have it all." +"He is an automaton, she is a reformed vampire, can love find a way? In this" +" edgy romance by acclaimed author Kea Dekker, heartbreak is just the " +"beginning." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Witchcraft for Beginners" -msgid_plural "copies of Witchcraft for Beginners" +msgid "Envying Heaven" +msgid_plural "copies of Envying Heaven" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Witchcraft for Beginners +#. ~ Description for Envying Heaven #: lang/json/BOOK_from_json.py msgid "" -"This book starts with a spell for self-confidence (hang some lavender above " -"your bathroom mirror), and works its way up to a hex for an ex (slash their " -"tires)." +"When her fiancee names a star for her Wanda begins to wonder if an " +"astronomer's wife can ever compete with the allure of the cosmos." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Advanced Witchcraft" -msgid_plural "copies of Advanced Witchcraft" +msgid "Tall, Dark, and Gruesome" +msgid_plural "copies of Tall, Dark, and Gruesome" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Advanced Witchcraft +#. ~ Description for Tall, Dark, and Gruesome #: lang/json/BOOK_from_json.py msgid "" -"This book apparently contains instructions for summoning and battling " -"powerful spirits from other realms. It doesn't say anything about zombies, " -"though." +"Fatima's obsession with the dead threatens to consume her when she falls in " +"love with a restless ghost. In this provocative romp celebrated author Kea " +"Dekker gently lifts the thin veil separating cold bodies from warm." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Beyond The Veil" -msgid_plural "copies of Beyond The Veil" +msgid "Along Came a Rider" +msgid_plural "copies of Along Came a Rider" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Beyond The Veil +#. ~ Description for Along Came a Rider #: lang/json/BOOK_from_json.py msgid "" -"What happens beyond death might be a mystery to the unlearned, but with " -"careful use of a crystal ball, available for purchase on our website, you " -"too can see beyond the veil." +"When Beth's career as a pro steeplechase jockey threatens to divide her from" +" her lover, Beth has to act fast. Will she ever find a man that can keep up" +" with her racing heart?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Weaponizing Crystals" -msgid_plural "copies of Weaponizing Crystals" +msgid "Rogue's Virtue" +msgid_plural "copies of Rogue's Virtue" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Weaponizing Crystals +#. ~ Description for Rogue's Virtue #: lang/json/BOOK_from_json.py msgid "" -"While this book claims crystals can be used to cast offensive spells, you " -"suspect it might be more effective to just throw them." +"Can Victoria reform the fugitive from justice who wooed her with false " +"pretenses and true passion?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ancient Alien Secrets" -msgid_plural "copies of Ancient Alien Secrets" +msgid "The Death of My Secret Life" +msgid_plural "copies of The Death of My Secret Life" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ancient Alien Secrets +#. ~ Description for The Death of My Secret Life #: lang/json/BOOK_from_json.py msgid "" -"Who made the Bermuda Triangle? How did they build Stonehenge? What did the" -" alien king whisper in Cleopatra's ear that passionate night in the dunes? " -"These answers and more in the Alien Theorists' latest exposé." +"Makeda comes out to her family, but she's still got plenty of skeletons in " +"her closet. Best selling authoress Kea Dekker breaks all the rules in this " +"macabre story of love and lies." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Your Year in Horoscopes" -msgid_plural "copies of Your Year in Horoscopes" +msgid "samurai novel" +msgid_plural "samurai novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Your Year in Horoscopes +#. ~ Description for samurai novel #: lang/json/BOOK_from_json.py msgid "" -"A long, thorough list of horoscopes, sorted by date and by zodiac sign. " -"Today, you should \"take a minute to relax - It's not the end of the " -"world.\"" +"The classic tale of a wandering swordsman who comes to a small settlement " +"and is hired to help the townsfolk defend themselves from a band of " +"marauding outlaws. This hardback is quite hefty." msgstr "" #: lang/json/BOOK_from_json.py -msgid "book of philosophy" -msgid_plural "books of philosophy" +msgid "satire novel" +msgid_plural "satire novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for book of philosophy +#. ~ Description for satire novel #: lang/json/BOOK_from_json.py msgid "" -"A deep discussion of morality with an emphasis on epistemology and logic." +"A political satire of the pre-apocalypse world. Looking back on it from " +"this side of Armageddon makes it seem all the more ridiculous." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Nietzsche's \"Beyond Good and Evil\". Its cover is dog-" -"eared and creased." -msgstr "" +msgid "The House of God" +msgid_plural "copies of The House of God" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for The House of God #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Unique and Its Property\" by Max Stirner. A modern " -"translation by Wolfi Landstreicher." +"Set in a lightly disguised Boston hospital of high repute, Samuel Shem’s " +"novel dives deep into the agony of absurdity." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"A large, extended version of \"Madness and Civilisation\" by Michel " -"Foucault. The cover features a striking image of a Panopticonic Prison." -msgstr "" +msgid "Catch-22" +msgid_plural "copies of Catch-22" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Catch-22 #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Postmodern Condition: A Report on Knowledge\" by " -"Lyotard." +"There is a short informational forward in this paperback edition of " +"Catch-22. Apparently the original title for Joseph Heller’s excruciatingly " +"brilliant war satire was \"Catch-11.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"A collection of texts and essays by Jacques Derrida. Its pages are loose " -"and yellowed - you should probably handle it with care." -msgstr "" +msgid "The Master and Margarita" +msgid_plural "copies of Master and Margarita" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for The Master and Margarita #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Society of the Spectacle\" by Guy Debord. Its cover " -"shows rows of adults staring placidly into a screen." +"Featuring a cast that includes Satan, Pontius Pilate, Jesus Christ, " +"vampires, a talking cat, and the literary elite of Moscow, this novel by " +"Mikhail Bulgakov explores philosophical issues on the nature of good and " +"evil." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a split copy of both \"An Ethic of Sexual Difference\" and \"This " -"Sex Which Is Not One\" by Luce Irigaray." -msgstr "" +msgid "A Handful of Dust" +msgid_plural "copies of A Handful of Dust" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for A Handful of Dust #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of Baudrillard's \"Simulation and Simulacra\". The cover " -"contains an image of a man holding a colored pill in each hand, with the " -"caption \"Welcome to the Desert of the Real.\". You think you've seen this " -"movie." +"Laced with cynicism, Evelyn Waugh's \"A Handful of Dust\" satirizes a " +"stratum of characters who have wealth, but lack any other credentials." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a small, pocket version of Sartre's \"Existentialism and Humanism\"." -" It looks to have been used as a coaster in a past life." -msgstr "" +msgid "Cat’s Cradle" +msgid_plural "copies of Cat’s Cradle" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Cat’s Cradle #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Practical Ethics\" by Peter Singer. From the local " -"university press." +"A paperback edition of Kurt Vonnegut's fourth novel, in which the threat of " +"nuclear destruction isn't much of an influence on human nature." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a photocopied spiral-bound copy of \"Industrial Society and Its " -"Future\" by 'Freedom Club'. The original looks to have been written on a " -"typewriter before being copied." -msgstr "" +msgid "spy novel" +msgid_plural "spy novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for spy novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Industrial Society and Its Future\" by Ted Kaczynski. " -"Its cover is an image of a hand-crafted wooden box filled with wiring and an" -" ominous looking metal tube. Provocative." +"A tale of intrigue and espionage amongst Nazis, no, Commies, no, Iraqis!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a small reader on Hegel's Dialectics." -msgstr "" +msgid "Come Fly the Treacherous Skies" +msgid_plural "copies of Come Fly the Treacherous Skies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Come Fly the Treacherous Skies #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The State and Revolution\" by Vladimir Lenin. In " -"English, thankfully." +"This tale of intrigue betrays the story of a debonair mechanic driven by a " +"lust for revenge. As she uncovers a sophisticated network of amateur pilots" +" turned smugglers, the good guys and the bad guys begin to all look the " +"same." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"In Defense of Marxism\" by Leon Trotsky." -msgstr "" +msgid "Lies, Damn Lies, and Rocket Science" +msgid_plural "copies of Lies, Damn Lies, and Rocket Science" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Lies, Damn Lies, and Rocket Science #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Steal This Book\" by Abbie Hoffman. There is a security" -" tag on the back cover. It appears to still be active." +"This spy novel tells the story of a jaded rocket scientist looking for " +"redemption in all the wrong places. As selling state secrets becomes her " +"career, she learns there isn't much of difference between a double-agent and" +" a triple-agent." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"Walden: Or Life In The Woods\" by Henry David Thoreau. " -"It contains a dried and pressed leaf as a bookmark." -msgstr "" +msgid "swashbuckling novel" +msgid_plural "swashbuckling novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for swashbuckling novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Female Eunuch\" by Germaine Greer. A child has " -"scribbled over the contents page in red crayon." +"An exciting seventeenth century tale of how an enslaved Irish doctor and his" +" comrades-in-chains escape and become heroic pirates of the Robin Hood " +"variety." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"An Introduction to Metaphysics\" by Bergson." -msgstr "" +msgid "The Black Freighter" +msgid_plural "copies of The Black Freighter" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for The Black Freighter #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Four Fundamental Concepts of Psychoanalysis\" by " -"Jacques Lacan." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of Machiavelli's \"The Prince\". With intro by Q. Skinner." +"Who watches the watchmen? Pirate Jenny, that's who! This swashbuckling " +"adventure novel will make you feel swell." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"On The Revolution of Everyday Life\" by Raul Vangeigem." -msgstr "" +msgid "Captain Gosgold and the Sea Rovers of Buzzards Bay" +msgid_plural "copies of The Sea Rovers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Captain Gosgold and the Sea Rovers of Buzzards Bay #: lang/json/BOOK_from_json.py msgid "" -"This is a pocket copy of \"An Essay on Liberation\" by Herbert Marcuse. The" -" cover contains an image of a pelican." +"This lengthy paperback novel describes the ocean exploits of Captain " +"Gosgold. The British consider him an outlaw, but in America he is a " +"patriot." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Either-Or\" by Søren Kierkegaard." -msgstr "" +msgid "The Code of the Buccaneer" +msgid_plural "copies of The Buccaneer" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for The Code of the Buccaneer #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Allegory of the Cave\" by Plato." +msgid "" +"The cover of this paperback pirate story shows a shirtless man and a near " +"shirtless woman. Clearly it is not a dress code." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Leviathan\" by Thomas Hobbes." -msgstr "" +msgid "thriller novel" +msgid_plural "thriller novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for thriller novel #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Critique Of Pure Reason\" by Immanuel Kant." +msgid "A suspenseful tale of betrayal and revenge." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Principles of Philosophy\" by Descartes." -msgstr "" +msgid "tragedy novel" +msgid_plural "tragedy novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for tragedy novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of both \"On The Genealogy of Morals\" and \"The Gay " -"Science\" by Friederich Nietzsche." +"The story of two young lovers whose feuding families threaten to keep them " +"apart." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"The Myth of Sisyphus\", and other essays, by Albert " -"Camus. The cover depicts a bare-chested man and a large boulder." -msgstr "" +msgid "war novel" +msgid_plural "war novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for war novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Sickness Unto Death\" by Søren Kierkegaard. The " -"pages are dotted with post-it notes." +"A thrilling narrative of survival in a prisoner of war camp during the " +"Second World War, filled with riveting subplots about rat farming and " +"dysentery." msgstr "" +#. ~ Description for war novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Defence of Terrorism\" by Leon Trotsky. Despite the" -" title, it does not actually appear to be defending terrorism." +"A story about a Bosnian citizen who goes through many hardships and near " +"death during the breakup of Yugoslavia." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"Enquiry Concerning Political Justice\" by William " -"Godwin. This thick book is filled with antiquated phrases." -msgstr "" +msgid "western novel" +msgid_plural "western novels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for western novel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Abolition of Work and Other Essays\" by Bob Black. " -"It is likely that \"The Abolition of Work\" is the most famous essay in this" -" book." +"The classic tale of a gunfighting stranger who comes to a small settlement " +"and is hired to help the townsfolk defend themselves from a band of " +"marauding outlaws." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"What is Property?\" by Pierre-Joseph Proudhon. It looks" -" like this book has a surprisingly long track record of owners." -msgstr "" +msgid "Atwixt a Brace of Cacti" +msgid_plural "copies of Atwixt a Brace of Cacti" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Atwixt a Brace of Cacti #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Conquest of Bread\" by Peter Kropotkin. There is a " -"picture of an old philosopher with magnificent beard, instead of bread, on " -"the cover." +"A grizzled clodhopper interviews a mess of rangehands, flummoxing longhorns " +"and tenderfoot alike in a flusteration of jawing." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"The Trouble with Being Born\" by Emil Cioran. This book" -" might have been printed decades before the Cataclysm since the cover is " -"quite weathered." -msgstr "" +msgid "Stinky Bart Puts on Starch" +msgid_plural "copies of Stinky Bart Puts on Starch" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Stinky Bart Puts on Starch #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The World as Will and Representation\" by Arthur " -"Schopenhauer. It contains a few undecipherable notes and scribbles." +"A local bandit, driven by sadistic impulses, begins offering unlicensed " +"dentistry to brave frontiersmen with few options and fewer teeth." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"Up-Wingers: A Futurist Manifesto\" by FM-2030. It seems" -" that the author's real name is Fereidoun M. Esfandiary." -msgstr "" +msgid "Six Beans in the Wheel" +msgid_plural "copies of Six Beans in the Wheel" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Six Beans in the Wheel #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Bastiat Collection\", a large collection of essays " -"by Frederic Bastiat." +"The safety is off in this gun slinging tale of revenge and redemption by " +"acclaimed author El Amor." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"Anarchy, State, and Utopia\" by Robert Nozick, one of " -"the most influential books of modern libertarianism." -msgstr "" +msgid "Irons at Calico Queen Annex" +msgid_plural "copies of Irons at Calico Queen Annex" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Irons at Calico Queen Annex #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Socialism\" by Ludwig von Mises, a critical examination " -"of socialism." +"The establishment of a telegraph line into the recently named town of Calico" +" Queen threatens to bring with it the long arm of the law. A trio of " +"enterprising gunfighters hatches a plan to keep Calico Queen wild by looting" +" the supply wagons." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"The ABC of Communism\" by Nikolai Bukharin, one of the " -"most influential books of early Marxism-Leninism." -msgstr "" +msgid "Riot on the Range" +msgid_plural "copies of Riot on the Range" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Riot on the Range #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Anti-Capitalist Mentality\" by Ludwig von Mises." +msgid "" +"Best selling author El Amor paints a visceral study in red with his latest " +"western saga: Riot on the Range." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Modal Logic as Metaphysics" -msgid_plural "copies of Modal Logic" +msgid "Vaquero Sun" +msgid_plural "copies of Vaquero Sun" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Modal Logic as Metaphysics +#. ~ Description for Vaquero Sun #: lang/json/BOOK_from_json.py msgid "" -"A treatise on applying logical tools to questions about that nature of " -"reality, this book contains detailed discussion of metaphysical issues." +"Western author El Amor relates the story of a dispossessed young man " +"inspired by a heat stroke delusion to pursue justice against an evil land " +"baron." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Aesthetics: A Critical Anthology" -msgid_plural "copies of Aesthetics" +msgid "The Vendetta Riders" +msgid_plural "copies of The Vendetta Riders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Aesthetics: A Critical Anthology +#. ~ Description for The Vendetta Riders #: lang/json/BOOK_from_json.py msgid "" -"This hardbound anthology presents a collection of readings, scholarly works," -" and critical analyses on the subject of beauty." +"A wild young man, fast on the draw, who thinks he has nothing to lose, falls" +" in with a group of gun runners." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Philosophy of Information" -msgid_plural "copies of The Philosophy of Information" +msgid "phone book" +msgid_plural "phone books" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Philosophy of Information +#. ~ Description for phone book #: lang/json/BOOK_from_json.py msgid "" -"This university text details a critical investigation of the conceptual " -"nature and basic principles of information. The student will gain a " -"thorough appreciation of the conceptual frameworks commonly used to describe" -" and advance semantic investigations." +"This hefty volume contains the telephone numbers of individuals, businesses," +" and utilities in the nearby area, pretty useless during the apocalypse and " +"all." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Being and Nothingness" -msgid_plural "copies of Being and Nothingness" +msgid "photo album" +msgid_plural "photo albums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Being and Nothingness +#. ~ Description for photo album #: lang/json/BOOK_from_json.py msgid "" -"This paperback is a copy of Jean-Paul Sartre's \"Being and Nothingness\". A" -" key work in the existentialist tradition." +"A leather album full of photos of somebody's family. You don't know any of " +"the people in them, but seeing these pictures still makes you think of " +"happier times." msgstr "" #: lang/json/BOOK_from_json.py -msgid "pulp novel" -msgid_plural "pulp novels" +msgid "book of plays" +msgid_plural "books of plays" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pulp novel +#. ~ Description for book of plays #: lang/json/BOOK_from_json.py msgid "" -"A hardboiled detective tale filled with hard hitting action and intrigue." +"A collection of plays by various authors from around the world, including " +"scripts by Wilde, Beckett, Checkov, and Shakespeare." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Black Valkyries From Venus" -msgid_plural "copies of Black Valkyries" +msgid "book of poetry" +msgid_plural "books of poetry" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Black Valkyries From Venus +#. ~ Description for book of poetry #: lang/json/BOOK_from_json.py msgid "" -"You hold in your hands a weather-beaten novel written by someone named \"Lee" -" Racket.\"" +"A collection of poetry by various authors from around the world, including " +"writings by Dickinson, Goethe, Thoreau, and Yeats." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Wrong Tomorrow" -msgid_plural "copies of Wrong Tomorrow" +msgid "priest's diary" +msgid_plural "priests' diaries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Wrong Tomorrow +#. ~ Description for priest's diary #: lang/json/BOOK_from_json.py msgid "" -"You hold in your hands a cheap drugstore paperback written by someone named " -"\"Lee Racket.\"" +"A small book filled with journal entries in Latin. You can read Latin, " +"right?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "No God From a Corpse" -msgid_plural "copies of No God" +msgid "corporate accounting ledger" +msgid_plural "corporate accounting ledgers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for No God From a Corpse -#. ~ 'Hard-boiled enough to break a spoon' means melodramatic, exaggerated, -#. emotional but simple, and possessing a general lack of literary pretense. -#. Weatherworn means damaged by age. Skirt means woman. +#. ~ Description for corporate accounting ledger #: lang/json/BOOK_from_json.py -msgid "" -"This is a weatherworn paperback written by some skirt named \"Lee Racket.\"" -" It tells how rage and jealousy can turn a man, or a woman, into a monster." -" This story is hard-boiled enough to break a spoon." +msgid "If you knew what to look for something might stand out…" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Deep Dive" -msgid_plural "copies of Deep Dive" +msgid "patient treatment records" +msgid_plural "patient treatment records" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Deep Dive -#. ~ Broad is a dismissive and outdated term that simply means "woman." The -#. term is used because it evokes the (decidedly misogynistic) era in which -#. the pulp genre gained popularity within the United States. +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py -msgid "" -"This dimestore short story about space travel is written by a broad named " -"\"Lee Racket.\"" +msgid "A massive stack of medical records that contain every gory detail." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Planet of the Murderous Squids that Time Forgot!" -msgid_plural "copies of Planet of the Murderous Squids that Time Forgot!" +msgid "national weather transcripts" +msgid_plural "national weather transcripts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Planet of the Murderous Squids that Time Forgot! +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py -msgid "" -"In this psychedelic adventure novel of cosmic exploration, an elderly " -"assassin discovers a planet too good to be true. Only once it is too late " -"does she discover the harrowing truth at the center of \"The Planet of the " -"Murderous Squids that Time Forgot!\"" +msgid "Old weather records are about as interesting as a rock." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Great Capes of Metropolis" -msgid_plural "copies of The Great Capes of Metropolis" +msgid "big book of short stories" +msgid_plural "big books of short stories" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Great Capes of Metropolis +#. ~ Description for big book of short stories #: lang/json/BOOK_from_json.py msgid "" -"In this classic pulp paperback of superheroic exploits, a group of masked " -"vigilantes with diverse superpowers learn to work together to defeat the " -"ultimate villain." +"This humongous volume contains a vast collection of short stories by " +"different authors, spanning a wide variety of topics and genres." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Yesterday's Murdered" -msgid_plural "copies of Yesterday's Murdered" +msgid "book of tall tales" +msgid_plural "books of tall tales" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Yesterday's Murdered +#. ~ Description for book of tall tales #: lang/json/BOOK_from_json.py msgid "" -"In this fast paced pulp noir, a hard-drinking detective with nerves of steel" -" has one last shot at vengeance." +"An entertaining collection of early American folklore, featuring tales of " +"larger than life individuals and their amazing adventures." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Flashgun Condor and the Crimson Criminal" -msgid_plural "copies of Flashgun Condor and the Crimson Criminal" +msgid "Visions in Solitude" +msgid_plural "copies of Visions in Solitude" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Flashgun Condor and the Crimson Criminal +#. ~ Description for Visions in Solitude #: lang/json/BOOK_from_json.py -msgid "" -"A hot-blooded photographer who fights crime with film, footage, and fists, " -"Condor is more than a mere shutterbug on the crime beat. But will she be " -"able to unravel a devious deception and bring the \"Crimson Criminal\" to " -"justice?" +msgid "A small book detailing 'visions' a prisoner had on death row." msgstr "" #: lang/json/BOOK_from_json.py -msgid "scifi novel" -msgid_plural "scifi novels" +msgid "book of classic literature" +msgid_plural "books of classic literature" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for scifi novel +#. ~ Description for book of classic literature #: lang/json/BOOK_from_json.py -msgid "Aliens, ray guns, and space ships." +msgid "" +"A book of classic literature, timeless and enjoyable but a bit dense to " +"read." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Gibson's \"Neuromancer\". Written in the eighties, it was" -" surprisingly accurate in predicting much of modern society… Until " -"recently." +msgid "This is a copy of Dickens' \"Bleak House\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"The Stars My Destination\" by Alfred Bester.\n" -"\n" -"Tyger, Tyger, Burning bright,\n" -"In the forests of the night:\n" -"What immortal hand or eye,\n" -"Dare frame thy fearful symmetry?" +msgid "This is a copy of \"Great Expectations\" by Charles Dickens." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"The Lathe of Heaven\" by Ursula Le Guin. Dirty finger-" -"stains have smudged the occasional word." +msgid "This is a copy of William Shinderling's \"Under the Beech Trees\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Dispossessed\" by Ursula Le Guin." +msgid "" +"This is a collection of three Jane Austen novels: \"Pride and Prejudice\", " +"\"Sense and Sensibility\", and \"Emma\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Hyperion\" by Dan Simmons." +msgid "This is a well-worn paperback copy of \"Lord of the Flies\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"Endymion\" by Dan Simmons. It opens with a poem by D.H. Lawrence:\n" -"\n" -"Give us gods. Oh give them us!\n" -"Give us gods.\n" -"We are so tired of men\n" -"And motor-power." +msgid "This is a copy of \"To Kill a Mockingbird\" by Harper Lee." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Philip K. Dick's \"Do Androids Dream of Electric Sheep?\"." +msgid "This is a copy of F. Scott Fitzgerald's \"The Great Gatsby.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a dog-eared copy of \"Nova Express\" by William Burroughs." +msgid "This is copy of Michael Abanaderly's lesser-known work, \"He Walks\"." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Foundation\" by Isaac Asimov. The back cover has been " -"ripped off." +"This is a collection of several vintage science fiction stories by Ray " +"Bradbury." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Trial\" by Franz Kafka. This book is rather worn." +msgid "This is a copy of \"The Adventures of Tom Sawyer\" by Mark Twain." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Handmaid's Tale\" by Margaret Atwood." +msgid "This is an illustrated copy of \"Innocents Abroad\" by Mark Twain." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Windup Girl\" by Paolo Bacigalupi. The blurb makes " -"you wonder how Thailand fared the end of the world." +"This is a copy of Bram Stoker's \"Dracula\", with scholarly commentary in " +"the margins." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Islands in the Net\" by Bruce Sterling." +msgid "" +"This is a large print copy of Tolstoy's \"War and Peace\". It might make a " +"decent improvised weapon." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Foundation and Empire\" by Isaac Asimov. The back page " -"contains a hand-written grocery list." +"This is a paperback copy of the well-known classic \"Dark Days Ahead\", by " +"K. G. Ranade. There are scrawled margin notes all over it, apparently the " +"workings of a confused and feverish mind." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is an almost new copy of \"A Scanner Darkly\" by Philip K. Dick. It " -"still has the smell of new books within its pages." +"This is a copy of \"Jane Eyre\". The cover art is quite out of place, " +"making it look more like a dime-store romance novel." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Mirrorshades: A Cyberpunk Anthology\" compiled by Bruce " -"Sterling. The cover has rings of coffee stains over it." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of \"The World of Null-A\" by A. E. van Vogt. This copy " -"looks to have been used to press flowers." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Altered Carbon\" by Richard Morgan." +"This is a perfectly preserved hardcover copy of \"The Gunslinger\" by " +"Stephen King, autographed by the author. It contains a certificate of " +"authenticity pronouncing it to be a first edition." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of Mary Shelly's \"Frankenstein\". Wasn't that the name of " -"the monster?" +"This paperback copy of \"Wuthering Heights\" has a large coffee stain on the" +" first page." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Wasp\" by Eric Frank Russel. The futuristic terrorist's" -" handbook." +"This is a hardbound copy of \"Lady Chatterly's Lover\", by D. H. Lawrence. " +"It has some very explicit illustrations." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"I Am Legend\" by Richard Matheson. The sleeve is " -"covered in dried blood." +"This is a hardbound copy of \"The Catcher in the Rye.\". It has some very " +"nicely done illustrations." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Forever War\" by Joe Haldeman. This copy looks as " -"if it's been slightly chewed by a dog or other large animal." +"This is a collection of classic renaissance era stories, headlined by \"Don " +"Quixote\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Moon Is a Harsh Mistress\" by Robert A. Heinlein." +msgid "This is a paperback copy of \"The Fellowship of the Ring\" by Tolkien." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Samuel R. Delany's \"Nova\". The cover reads \"Review " -"Copy. Not for re-sale.\"" +msgid "This is a paperback copy of \"The Two Towers\" by Tolkien." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Vonnegut's \"The Sirens of Titan\"." +msgid "This is a paperback copy of \"The Return of the King\" by Tolkien." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Grass\" by Sheri S. Tepper. A child has scribbled over " -"the first pages in crayon." +"This is a hardbound collection of George Orwell's works, including \"1984\" " +"and \"Animal Farm\" as well as many of his less infamous titles." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of William Gibson's \"Count Zero\". The spine is stamped " -"with 'Library Copy'. And a sticker reading 'Science Fiction'." +"This is a paperback copy of \"Little Women\" by Louisa May Alcott. It " +"appears to have been read a great many times." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Weapon Makers\" by A. E. van Vogt." +msgid "This is a paperback copy of \"Of Mice and Men\" by Steinbeck." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Record of a Spaceborn Few\" by Becky Chambers. It looks" -" almost brand new." +"This is a hefty hardcover copy of \"Run and Run Again\" by Finn Calpay. " +"There is a lengthy forward about the controversy around the book's release." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"Use of Weapons\" by Ian M. Banks. The spine is cracked " -"and worn, some pages appear to be loose." +"This is a hardcover copy of \"The Gates Have Opened\" by Arianna Methusalah." +" You feel like you've read this before, but can't remember where. " +"Something about the book fills you with unease." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Jean-Baptiste Cousin de Grainville's \"Le Dernier Homme\"." +msgid "This is a copy of \"The Count of Monte Cristo\" by Dumas." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Orwell's \"Nineteen Eighty-Four\". The pages are loose " -"and thin. You should probably be careful with this copy." +msgid "This is a copy of \"The Secret Garden\" by Frances Burnett." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a copy of Heinlein's \"Stranger in a Strange Land\". The cover is " -"dog-eared and worn." +msgid "This is a copy of \"Lieutenant Hornblower\" by C.S. Forester." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Orson Scott Card's \"Ender's Game\"." +msgid "This is a copy of \"Master and Commander\" by Patrick O'Brian." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Lost World\" by Arthur Conan Doyle." +msgid "This is a copy of \"The Warden\" by Anthony Trollope." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Islands in the Sky\" by Arthur C. Clarke." +msgid "This is a copy of \"The Far Side of the World\" by Patrick O'Brian." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of H. G. Wells' \"The Island of Doctor Moreau\"." +msgid "This is a copy of \"HMS Surprise\" by Patrick O'Brian." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Stanislaw Lem's \"His Masters Voice\"." +msgid "This is a copy of \"Barchester Towers\" by Anthony Trollope." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Fred Hoyle's \"The Black Cloud\"." +msgid "This is a copy of \"The Land Ironclads\" by H.G. Wells." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Last and First Men\" by Olaf Stapeldon." +msgid "This is a copy of \"The Great Boer War\" by Arthur Conan Doyle." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Stanislaw Lem's \"Solaris\"." +msgid "This is a copy of \"The Crime of the Congo\" by Arthur Conan Doyle." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of Theodore Sturgeon's \"More Than Human\"." +msgid "This is a copy of \"The Parasite\" by Arthur Conan Doyle." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Vurt\" by Jeff Noon." +msgid "This is a copy of \"By Stroke of Sword\" by Andrew Balfour." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"A Canticle for Leibowitz\" by Walter M. Miller Jr." +msgid "This is a copy of \"The Secret Agent\" by Joseph Conrad." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The War of The Worlds\" by H.G Wells." +msgid "This is a copy of \"Lord Jim\" by Joseph Conrad." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Iron Sunrise\" by Charles Stross." +msgid "This is a copy of \"Vanity Fair\" by William Makepeace Thackeray." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of \"The Hunger Games\" by Suzanne Collins. Reading the " -"blurb reminds you of a Japanese movie you think you once caught on the " -"television late at night." +"This is a copy of \"The Luck of Barry Lyndon\" by William Makepeace " +"Thackeray." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Day of the Triffids\" by John Wyndham." +msgid "This is a copy of \"North and South\" by Elizabeth Gaskell." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"A Clockwork Orange\" by Anthony Burges." +msgid "This is a copy of \"The Mayor of Casterbridge\" by Thomas Hardy." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Man Who Fell to Earth\" by Walter Tevis." +msgid "This is a copy of \"Wessex Tales\" by Thomas Hardy." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Simulacron-3\" by Daniel F. Galouye." +msgid "This is a copy of \"Far from the Madding Crowd\" by Thomas Hardy." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"The Glass Bees\" by Ernst Jünger." +msgid "This is a copy of \"Captains Courageous\" by Rudyard Kipling." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This is a copy of \"Journey to The Center of the Earth\" by Jules Verne." +msgid "This is a copy of \"The Canterbury Tales\" by Geoffrey Chaucer." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This is a copy of Larry Niven's \"Ringworld\". There are a couple of pages " -"missing from the end of the book. Luckily only mail-order advertisements." +"This is a copy of \"Harold, the Last of the Saxons\" by Edward Bulwer-" +"Lytton." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a well-worn copy of \"The Hitchhikers Guide to the Galaxy\" by " -"Douglas Adams." +msgid "This is a copy of \"Mr Midshipman Easy\" by Frederick Marryat." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Dune" -msgid_plural "copies of Dune" +msgid "This is a copy of \"Peter Simple\" by Frederick Marryat." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "collector's edition book" +msgid_plural "collector's edition books" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dune +#. ~ Description for collector's edition book #: lang/json/BOOK_from_json.py -msgid "" -"This is a dog-eared copy of \"Dune\" by Frank Herbert. It has sand between " -"some of its pages. Weird." +msgid "A unique, valuable book that has been kept as a collector's item." msgstr "" -#. ~ Description for Dune #: lang/json/BOOK_from_json.py msgid "" -"This is a sturdy copy of \"Dune\" by Frank Herbert. It is a fairly new " -"reprint with the words \"SOON TO BE A MAJOR MOTION PICTURE\" splashed across" -" its dust jacket." +"This is a high-quality leather bound copy of Charles Dickens' \"A Tale of " +"Two Cities\"." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Parable of the Talents" -msgid_plural "copies of Parable of the Talents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Parable of the Talents #: lang/json/BOOK_from_json.py msgid "" -"This is a sturdy copy of \"Parable of the Talents.\". It is Octavia " -"Butler's sequel to her book \"Parable of the Sower.\"" +"This is a very old but well-preserved copy of Charles Dickens' \"Oliver " +"Twist\"." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Fifth Season" -msgid_plural "signed copies of Fifth Season" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for The Fifth Season #: lang/json/BOOK_from_json.py msgid "" -"This is a signed hardcover copy of the Hugo award winning \"The Fifth " -"Season\" by N.K. Jemisin. It smells faintly of dirt." +"This high-quality copy of Jane Austen's \"Pride and Prejudice\" is dog-eared" +" and looks to have been read many times." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "We" -msgid_plural "copies of We" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for We #: lang/json/BOOK_from_json.py msgid "" -"This hardback book is titled \"The Annotated We: A New Translation of Evgeny Zamiatin's Novel.\"\n" -"\n" -"It is Vladimir Wozniuk's 2015 translation of \"We,\" originally published in 1924 and generally seen as the first modern dystopian novel. The commentary examines the profusive allusions and highlights the poetic nature of Zamiatin's language." +"This is a hefty, hardcover print of William Shinderling's \"Vanity before " +"Justice\" with beautiful illustrations." msgstr "" -#. ~ Description for We #: lang/json/BOOK_from_json.py msgid "" -"A seminal work of dystopian fiction, Evgeny Zamiatin's \"We\" was first published in 1924 but suppresed by the Soviet Union until 1988.\n" -"\n" -"This mass-market 1993 edition you've found was translated from the Russian by Clarence Brown and includes a short introduction. The slightly worn cover features a surrealist photo of a person gazing backward suspiciouly." +"This copy of Jane Austen's \"Sense and Sensibility\" has a certificate of " +"authenticity declaring it to be an early edition. It would have been worth " +"an enormous amount of money, not long ago." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Cyberiad" -msgid_plural "copies of The Cyberiad" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for The Cyberiad #: lang/json/BOOK_from_json.py msgid "" -"This 350 page paperback presents the exploits and robotic rivalries of Trurl" -" and Klapaucius. Originally written in Polish by Stanislaw Lem, it has been" -" masterfully translated into English by Michael Kandel." +"This is an excellent quality copy of \"To Kill a Mockingbird\" by Harper " +"Lee." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Brave New World" -msgid_plural "copies of Brave New World" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Brave New World #: lang/json/BOOK_from_json.py msgid "" -"This is weather worn copy of \"Brave New World\" by Aldous Huxley looks like" -" it has been left out in rain. The novel begins in a bleak building where " -"fetuses are grown in bottles on an assembly line." +"This is a high-quality leather bound copy of F. Scott Fitzgerald's \"The " +"Great Gatsby.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Roadside Picnic" -msgid_plural "copies of Roadside Picnic" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a hefty, hardcover print of Michael Abanaderly's opus, \"Lady " +"Wanderlust\". It is over a hundred years old, but doesn't look it." +msgstr "" -#. ~ Description for Roadside Picnic #: lang/json/BOOK_from_json.py msgid "" -"This is a paperback copy of \"Roadside Picnic\" by Arkady and Boris " -"Strugatsky. It has been translated into over 20 languages, occasionally " -"under the name \"Stalker.\" This copy, fortunately for you, just happens to" -" be in your native tongue." +"This copy of Ray Bradbury's \"Fahrenheit 451\" has a certificate of " +"authenticity declaring it to be an early edition. It would have been worth " +"an enormous amount of money, not long ago." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Fahrenheit 451" -msgid_plural "copies of Fahrenheit 451" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This high-quality copy of \"Pride and Prejudice and Zombies\" has been " +"autographed by the author." +msgstr "" -#. ~ Description for Fahrenheit 451 #: lang/json/BOOK_from_json.py -msgid "This is a copy of Ray Bradbury's \"Fahrenheit 451.\"" +msgid "" +"This is a high-quality leather bound copy of \"The Adventures of Huckleberry" +" Finn\" by Mark Twain. It contains some margin notes which themselves are " +"quite old, and look to have been done by a scholar of some sort." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"Some joker has gently burnt the exterior edge of this paperback dystopia. " -"It's still perfectly readable." +"This is a very nice print of Bram Stoker's \"Dracula\". It has a " +"certificate of authenticity with it that declares it a genuine early " +"edition." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"\"It was a pleasure to burn. It was a special pleasure to see things eaten," -" to see things blackened and changed.\"" +"This copy of Douglas Adams' \"The Hitchhiker's Guide to the Galaxy\" has a " +"certificate of authenticity declaring it to be a first edition, and is " +"autographed by the author himself." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This 1979 softcover edition of Ray Bradbury's \"Fahrenheit 451\" was once a " -"library book. It still has a light blue checkout card pocketed on the torn " -"back cover. One \"Suzanne Collins\" borrowed it in 1981." +"This is a high-quality leather bound copy of the well-known classic \"Dark " +"Days Ahead\", by K. G. Ranade." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"The red and black paperback novel you hold in your hands is a modern reprint" -" of Ray Bradbury's \"Fahrenheit 451.\"" +"This is a well-kept leather bound copy of \"Oryx and Crake\" by Margaret " +"Atwood. Inscribed in the inner cover is a faded note wishing the owner a " +"happy birthday." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"This scifi novel is divided into three parts: \"The Hearth and the " -"Salamander,\" \"The Sieve and the Sand,\", and \"Burning Bright.\"" +"This bright orange hardcover copy of \"1984\" by George Orwell has been " +"carefully preserved, and appears to be a first or second edition judging " +"from the publisher's information." msgstr "" #: lang/json/BOOK_from_json.py -msgid "sports novel" -msgid_plural "sports novels" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a very nice copy of \"Lady Chatterly's Lover\", probably quite " +"expensive in the days before the apocalypse." +msgstr "" -#. ~ Description for sports novel #: lang/json/BOOK_from_json.py msgid "" -"The dramatic tale of a small-time boxer who gets a rare chance to fight the " -"heavy-weight champion, and seize his one chance to make a better life for " -"himself while impressing the cute girl who works in the pet store." +"This is a high quality early edition hardcover copy of \"The Handmaid's " +"Tale\" by Margaret Atwood, signed by the author." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Art of Bunting" -msgid_plural "copies of The Art of Bunting" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This ancient and worn book looks to be an 18th or early 19th century " +"handwritten copy of \"Don Quixote\". In the days of book traders it would " +"have been worth an absolute fortune. Now it's either a priceless piece of " +"history, some light reading before bed, or excellent kindling." +msgstr "" -#. ~ Description for The Art of Bunting #: lang/json/BOOK_from_json.py msgid "" -"While you might be forgiven for expecting instructions for party decorating," -" it is in fact a novel about baseball. In the final climactic game a young " -"star proves to himself that he is ready for the big leagues." +"This is a first edition copy of Terry Pratchett's \"The Colour of Magic\". " +"In the inner cover is a handwritten note that reads \"To Chris, thanks for " +"believing I could do it. Best regards, Terry.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Touchdown Special" -msgid_plural "copies of The Touchdown Special" +msgid "The Economicon of Dobbs" +msgid_plural "copies of The Economicon" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Touchdown Special +#. ~ Description for The Economicon of Dobbs #: lang/json/BOOK_from_json.py msgid "" -"In this absorbing novel of football fandom, a pizza delivery driver makes a " -"desperate gamble on the monday night game." +"These are the prescriptures Pile 18 Disk sg30 File 14. \"Look, small brain " +"of pink earth inside my null-grasping, and she/he receives Logos; and it lay" +" with the Wor.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Trophy Envy" -msgid_plural "copies of Trophy Envy" +msgid "The Bobliographon" +msgid_plural "copies of The Bobliographon" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Trophy Envy +#. ~ Description for The Bobliographon #: lang/json/BOOK_from_json.py msgid "" -"This paperback tells the story of a tennis prodigy who begins to regret her " -"own success." +"The back cover of this cheaply published paperback reads: \"These newly-" +"released SubGenius revelations will SHOCK those who think they know Bob! " +"Unpredictables are not alone and possess amazing hidden powers of their own!" +" In a world without slack, a yeti lust revival saunters about. WARNING: Do" +" not fail to pay full price for this book; JHVH-1's wrath knows some " +"bounds.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Semi-Rough" -msgid_plural "copies of Semi-Rough" +msgid "Glimpses of Solomon in Yellow" +msgid_plural "copies of Solomon in Yellow" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Semi-Rough +#. ~ Description for Glimpses of Solomon in Yellow #: lang/json/BOOK_from_json.py msgid "" -"This novel follows the humorous adventures of a professional athlete turned " -"amateur reporter." +"This paperback is titled \"Glimpses of Solomon in Yellow; The Initiation " +"Rites of the Starry Wisdom Covenant, by Dr. Enoch Craven.\" It describes " +"not just the investiture of new adherents, but the history and beliefs of " +"the Church of Starry Wisdom. Someone has defaced the sparse citations " +"section by scrawling \"PUPPETS OF ROME!\" over its few pages. The book does" +" not provide any biography for Dr. Craven, let alone academic credentials." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Golf Omnivore" -msgid_plural "copies of The Golf Omnivore" +msgid "new-age book" +msgid_plural "new-age books" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Golf Omnivore +#. ~ Description for new-age book #: lang/json/BOOK_from_json.py msgid "" -"This hardback book is a collection of short stories in which love and golf " -"are the only two constants." +"A mishmash of self-contradictory advice on spirits, auras, chakras, " +"crystals, and psychic powers." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Uniform Boy" -msgid_plural "copies of Uniform Boy" +msgid "Your Inner Psychic" +msgid_plural "copies of Your Inner Psychic" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Uniform Boy +#. ~ Description for Your Inner Psychic #: lang/json/BOOK_from_json.py msgid "" -"This hardback book about an equipment manager for a minor league team " -"explores themes of loyalty and resentment." +"Could you secretly have psychic powers? Learn to see auras, attune to your " +"chakras, and get down and dirty with your astral self." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Budgetball: Winning a Rigged Game" -msgid_plural "copies of Budgetball" +msgid "The Healing Power of Crystals" +msgid_plural "copies of The Healing Power of Crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Budgetball: Winning a Rigged Game +#. ~ Description for The Healing Power of Crystals #: lang/json/BOOK_from_json.py msgid "" -"Budgetball tells the true story of the curious case of Benny Bobbin and his " -"quixotic quest to defeat the deep-pocketed Orlando O's." +"Why waste time with 'doctors' or 'medicine'? This guide will teach you to " +"harness the innate healing power of crystals and nurture your soul." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Lads of Summer" -msgid_plural "copies of The Lads of Summer" +msgid "Essential Secrets" +msgid_plural "copies of Essential Secrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Lads of Summer +#. ~ Description for Essential Secrets #: lang/json/BOOK_from_json.py msgid "" -"This well worn paperback details the early baseball careers of one of the " -"greatest teams professional sports has ever known." +"The secret to happiness is simple: aromatherapy. Surround yourself with " +"products from our line of essential oils, using the discount code HAPPY for " +"10 percent off your first purchase, and you too can have it all." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Volleyball: Get Ready to Get Ready" -msgid_plural "copies of Volleyball" +msgid "Witchcraft for Beginners" +msgid_plural "copies of Witchcraft for Beginners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Volleyball: Get Ready to Get Ready +#. ~ Description for Witchcraft for Beginners #: lang/json/BOOK_from_json.py msgid "" -"\"Volleyball: Get Ready to Get Ready\" is YOUR illustrated guide to level up" -" your game. With full-color photos and diagrams, you will learn the drills " -"and techniques you need to dominate the competition." +"This book starts with a spell for self-confidence (hang some lavender above " +"your bathroom mirror), and works its way up to a hex for an ex (slash their " +"tires)." msgstr "" #: lang/json/BOOK_from_json.py -msgid "William G. Morgan, the Godfather of Volleyball" -msgid_plural "copies of The Godfather of Volleyball" +msgid "Advanced Witchcraft" +msgid_plural "copies of Advanced Witchcraft" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for William G. Morgan, the Godfather of Volleyball +#. ~ Description for Advanced Witchcraft #: lang/json/BOOK_from_json.py msgid "" -"This odd little hardbound book is only 98 pages long, and a dozen of those " -"are comprised of grainy black and white photos. If you read this book, you " -"learn that volleyball was originally called \"Mintonette\" and also some " -"biographic details about its inventor." +"This book apparently contains instructions for summoning and battling " +"powerful spirits from other realms. It doesn't say anything about zombies, " +"though." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Legendary Bike Rides" -msgid_plural "copies of Bike Rides" +msgid "Beyond The Veil" +msgid_plural "copies of Beyond The Veil" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Legendary Bike Rides +#. ~ Description for Beyond The Veil #: lang/json/BOOK_from_json.py msgid "" -"This unwieldy coffeetable book is titled \"LEGENDARY Bike Rides Around the " -"WORLD.\" It provides a wealth of detail about paved bike trails in every " -"part of the globe except New England. But if you make it to Patagonia on " -"bike, you're all set." +"What happens beyond death might be a mystery to the unlearned, but with " +"careful use of a crystal ball, available for purchase on our website, you " +"too can see beyond the veil." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Natare Ergo Sum" -msgid_plural "copies of Natare Ergo Sum" +msgid "Weaponizing Crystals" +msgid_plural "copies of Weaponizing Crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Natare Ergo Sum +#. ~ Description for Weaponizing Crystals #: lang/json/BOOK_from_json.py msgid "" -"The poorly translated title is supposed to be Latin for \"I Swim, Therefore " -"I Am.\" This short hardback presents \"A Philosophy of Swimming\" and then " -"playfully attributes a variety of famous philosophical expressions into " -"edorsements for the sport of swimming. It's not a bad book, just a bit odd." +"While this book claims crystals can be used to cast offensive spells, you " +"suspect it might be more effective to just throw them." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Stratosphere: The Rise of Hoops" -msgid_plural "copies of Stratosphere" +msgid "Ancient Alien Secrets" +msgid_plural "copies of Ancient Alien Secrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Stratosphere: The Rise of Hoops +#. ~ Description for Ancient Alien Secrets #: lang/json/BOOK_from_json.py msgid "" -"\"Stratosphere: The Rise of Hoops\" chronicles four decades of professional " -"basketball against a backdrop of sustained social change." +"Who made the Bermuda Triangle? How did they build Stonehenge? What did the" +" alien king whisper in Cleopatra's ear that passionate night in the dunes? " +"These answers and more in the Alien Theorists' latest exposé." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Anything Can Be Beautiful" -msgid_plural "copies of Anything Can Be Beautiful" +msgid "Your Year in Horoscopes" +msgid_plural "copies of Your Year in Horoscopes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Anything Can Be Beautiful +#. ~ Description for Your Year in Horoscopes #: lang/json/BOOK_from_json.py msgid "" -"Stylist, designer, and glitter goddess, Tiffynie Blust looks at the world " -"one mantra in mind: anything can be beautiful." +"A long, thorough list of horoscopes, sorted by date and by zodiac sign. " +"Today, you should \"take a minute to relax - It's not the end of the " +"world.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Greatest Rooms of the Century" -msgid_plural "copies of The Greatest Rooms of the Century" +msgid "book of philosophy" +msgid_plural "books of philosophy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Greatest Rooms of the Century +#. ~ Description for book of philosophy #: lang/json/BOOK_from_json.py msgid "" -"A stunning collection of the best living spaces created and commissioned by " -"the most influential people in interior design." +"A deep discussion of morality with an emphasis on epistemology and logic." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Hands-On Home" -msgid_plural "copies of The Hands-On Home" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of Nietzsche's \"Beyond Good and Evil\". Its cover is dog-" +"eared and creased." +msgstr "" -#. ~ Description for The Hands-On Home #: lang/json/BOOK_from_json.py msgid "" -"An ecologically-minded take on modern homemaking, this is a practical guide " -"to maximising your time in the kitchen and beyond." +"This is a copy of \"The Unique and Its Property\" by Max Stirner. A modern " +"translation by Wolfi Landstreicher." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Rooms We Love" -msgid_plural "copies of Rooms We Love" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A large, extended version of \"Madness and Civilisation\" by Michel " +"Foucault. The cover features a striking image of a Panopticonic Prison." +msgstr "" -#. ~ Description for Rooms We Love #: lang/json/BOOK_from_json.py msgid "" -"This is a guide on how to affordably decorate rooms to suit your " -"personality. In the book, we visit rooms inspired by the needs of each " -"homeowner and will see how they transformed their rooms." +"This is a copy of \"The Postmodern Condition: A Report on Knowledge\" by " +"Lyotard." msgstr "" #: lang/json/BOOK_from_json.py -msgid "New York Parties" -msgid_plural "copies of New York Parties" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A collection of texts and essays by Jacques Derrida. Its pages are loose " +"and yellowed - you should probably handle it with care." +msgstr "" -#. ~ Description for New York Parties #: lang/json/BOOK_from_json.py msgid "" -"Visit the homes of savvy tastemakers from the worlds of fashion, finance, " -"and design, with this book of lavish photography." +"This is a copy of \"Society of the Spectacle\" by Guy Debord. Its cover " +"shows rows of adults staring placidly into a screen." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Best Signature Outdoor Kitchens" -msgid_plural "copies of Best Signature Outdoor Kitchens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a split copy of both \"An Ethic of Sexual Difference\" and \"This " +"Sex Which Is Not One\" by Luce Irigaray." +msgstr "" -#. ~ Description for Best Signature Outdoor Kitchens #: lang/json/BOOK_from_json.py msgid "" -"Outdoor space is one of the hottest amenities being considered by new and " -"existing homeowners. This book will show you how to turn any deck, patio, " -"or other outside area into a great place to cook." +"This is a copy of Baudrillard's \"Simulation and Simulacra\". The cover " +"contains an image of a man holding a colored pill in each hand, with the " +"caption \"Welcome to the Desert of the Real.\". You think you've seen this " +"movie." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Art of Using Plants to Transform Your Home" -msgid_plural "copies of The Art of Using Plants to Transform Your Home" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a small, pocket version of Sartre's \"Existentialism and Humanism\"." +" It looks to have been used as a coaster in a past life." +msgstr "" -#. ~ Description for The Art of Using Plants to Transform Your Home #: lang/json/BOOK_from_json.py msgid "" -"Bring gorgeous greenery into your life with this delightful guide to " -"decorating your living space with a wide variety of plants. Illustrated " -"examples enable you to easily transform every corner of your interior space." +"This is a copy of \"Practical Ethics\" by Peter Singer. From the local " +"university press." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Woman of Color" -msgid_plural "copies of Woman of Color" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a photocopied spiral-bound copy of \"Industrial Society and Its " +"Future\" by 'Freedom Club'. The original looks to have been written on a " +"typewriter before being copied." +msgstr "" -#. ~ Description for Woman of Color #: lang/json/BOOK_from_json.py msgid "" -"This is a collection of essays and advice on style, beauty, and motherhood." -" Part memoir, part lifestyle guide, this book reflects the author's " -"experience growing up as a woman of color in Brooklyn." +"This is a copy of \"Industrial Society and Its Future\" by Ted Kaczynski. " +"Its cover is an image of a hand-crafted wooden box filled with wiring and an" +" ominous looking metal tube. Provocative." msgstr "" #: lang/json/BOOK_from_json.py -msgid "10 Cool Things About Being A Ring Bearer" -msgid_plural "copies of 10 Cool Things About Being A Ring Bearer" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a small reader on Hegel's Dialectics." +msgstr "" -#. ~ Description for 10 Cool Things About Being A Ring Bearer #: lang/json/BOOK_from_json.py msgid "" -"This book is for the delightful little ring bearer in your wedding. The " -"author depicts the responsibility and honor in being a ring bearer. Your " -"little angel will cherish this book as he or she learns how to behave on " -"your perfect day." +"This is a copy of \"The State and Revolution\" by Vladimir Lenin. In " +"English, thankfully." msgstr "" #: lang/json/BOOK_from_json.py -msgid "How to Raise a Gentleman: A Civilized Guide to Parenting" -msgid_plural "" -"copies of How to Raise a Gentleman: A Civilized Guide to Parenting" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"In Defense of Marxism\" by Leon Trotsky." +msgstr "" -#. ~ Description for How to Raise a Gentleman: A Civilized Guide to Parenting #: lang/json/BOOK_from_json.py msgid "" -"A revised edition for parents who hope their little boy children will grow " -"up to be the kind of men who know which fork to use, how to treat others, " -"and generally make their parents proud." +"This is a copy of \"Steal This Book\" by Abbie Hoffman. There is a security" +" tag on the back cover. It appears to still be active." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"International Approaches to Securing Radioactive Sources Against Terrorism" -msgid_plural "" -"copies of International Approaches to Securing Radioactive Sources Against " -"Terrorism" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +"This is a copy of \"Walden: Or Life In The Woods\" by Henry David Thoreau. " +"It contains a dried and pressed leaf as a bookmark." +msgstr "" -#. ~ Description for International Approaches to Securing Radioactive Sources -#. Against Terrorism #: lang/json/BOOK_from_json.py msgid "" -"This book presents how to enhance cooperation and assistance between " -"countries in support of International Atomic Energy Agency efforts to secure" -" radioactive sources against the threat of terrorism." +"This is a copy of \"The Female Eunuch\" by Germaine Greer. A child has " +"scribbled over the contents page in red crayon." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Principles of Forensic Psychiatry" -msgid_plural "copies of Principles of Forensic Psychiatry" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"An Introduction to Metaphysics\" by Bergson." +msgstr "" -#. ~ Description for Principles of Forensic Psychiatry #: lang/json/BOOK_from_json.py msgid "" -"This text addresses standards in the assessment and treatment of aggression " -"and violence as well as psychological and neuroimaging assessments." +"This is a copy of \"The Four Fundamental Concepts of Psychoanalysis\" by " +"Jacques Lacan." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Guide to Reflective Conflict Resolution" -msgid_plural "copies of The Guide to Reflective Conflict Resolution" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of Machiavelli's \"The Prince\". With intro by Q. Skinner." +msgstr "" -#. ~ Description for The Guide to Reflective Conflict Resolution #: lang/json/BOOK_from_json.py msgid "" -"The back cover of this hardbound book reads: \"Why should professionals care" -" about reflective practice? How do its principles and methods increase " -"competence? What characteristics distinguish reflective practitioners?\"" +"This is a copy of \"On The Revolution of Everyday Life\" by Raul Vangeigem." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Oxbridge Handbook of Mood Ailments" -msgid_plural "copies of The Oxbridge Handbook of Mood Ailments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for The Oxbridge Handbook of Mood Ailments #: lang/json/BOOK_from_json.py msgid "" -"The Oxbridge Handbook of Mood Ailments provides detailed coverage of the " -"characterization, understanding, and treatment of affective disorders. It " -"provides coverage of unipolar depression, bipolar disorder, and known " -"variants of these illnesses." +"This is a pocket copy of \"An Essay on Liberation\" by Herbert Marcuse. The" +" cover contains an image of a pelican." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Phonological Acquisition and Disorders" -msgid_plural "copies of Phonological Acquisition and Disorders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"Either-Or\" by Søren Kierkegaard." +msgstr "" -#. ~ Description for Phonological Acquisition and Disorders #: lang/json/BOOK_from_json.py -msgid "" -"Studying the phonologies of children with non-organic speech disorders, this" -" volume details the latest findings in optimality theory, phonological " -"acquisition and disorders. It is intended for linguists and psychologists." +msgid "This is a copy of \"Allegory of the Cave\" by Plato." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Therapeutic Gardens and Healing Spaces" -msgid_plural "copies of Therapeutic Gardens and Healing Spaces" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"Leviathan\" by Thomas Hobbes." +msgstr "" -#. ~ Description for Therapeutic Gardens and Healing Spaces #: lang/json/BOOK_from_json.py -msgid "" -"This book addresses how to design therapeutic gardens. It illustrates a " -"variety of landscape designs appropriate for public spaces that promote " -"mental health." +msgid "This is a copy of \"Critique Of Pure Reason\" by Immanuel Kant." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Advances in Drug Delivery Systems" -msgid_plural "copies of Advances in Drug Delivery Systems" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"Principles of Philosophy\" by Descartes." +msgstr "" -#. ~ Description for Advances in Drug Delivery Systems #: lang/json/BOOK_from_json.py msgid "" -"This softcover reprint covers an array of topics in pharmacology. The " -"physicochemical concepts of the refinement of bioresponsive drug delivery " -"are presented in detail alongside a variety of current approaches employed " -"in the development of zero order release systems." +"This is a copy of both \"On The Genealogy of Morals\" and \"The Gay " +"Science\" by Friederich Nietzsche." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Using Art to Treat Eating Disorders" -msgid_plural "copies of Using Art to Treat Eating Disorders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Using Art to Treat Eating Disorders #: lang/json/BOOK_from_json.py msgid "" -"This is an introductory guide for those wanting to explore the use of art to" -" address eating disorders. Art therapy is a particularly effective " -"therapeutic intervention, as it allows people to express uncomfortable " -"thoughts and feelings nonverbally." +"This is a copy of \"The Myth of Sisyphus\", and other essays, by Albert " +"Camus. The cover depicts a bare-chested man and a large boulder." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "A Clinical Guide to Video Gamers" -msgid_plural "copies of A Clinical Guide to Video Gamers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for A Clinical Guide to Video Gamers #: lang/json/BOOK_from_json.py msgid "" -"This scholarly work considers the role that games play in psychological " -"experiences and mental health. Chapters examine the factors that compel " -"individual gamers to select and identify with particular games and " -"characters, as well as the different play styles, genres, and archetypes " -"common in video games." +"This is a copy of \"The Sickness Unto Death\" by Søren Kierkegaard. The " +"pages are dotted with post-it notes." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Paranoia and the History of Madness" -msgid_plural "copies of Paranoia and the History of Madness" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Paranoia and the History of Madness #: lang/json/BOOK_from_json.py msgid "" -"This book is an analysis of the use and misuse of paranoia throughout " -"history and in contemporary society. The impact of paranoia on societies is" -" explored in detail." +"This is a copy of \"The Defence of Terrorism\" by Leon Trotsky. Despite the" +" title, it does not actually appear to be defending terrorism." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "Psychoanalysis and Colonialism" -msgid_plural "copies of Psychoanalysis and Colonialism" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Psychoanalysis and Colonialism #: lang/json/BOOK_from_json.py msgid "" -"Freud referred to women's sexuality as a \"dark continent\" for " -"psychoanalysis, drawing on colonial use of the same phrase to refer to " -"Africa. This book details how the problematic universalism of " -"psychoanalysis led theorists to reject its relevance for postcolonial " -"critique." +"This is a copy of \"Enquiry Concerning Political Justice\" by William " +"Godwin. This thick book is filled with antiquated phrases." msgstr "" -#: lang/json/BOOK_from_json.py -msgid "The Psychology of Stalking" -msgid_plural "copies of The Psychology of Stalking" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for The Psychology of Stalking #: lang/json/BOOK_from_json.py msgid "" -"This book explores stalking from social, psychiatric, psychological and " -"behavioral perspectives. Topics include psychiatric diagnoses, offender-" -"victim typologies, cyberstalking, false victimization syndrome, erotomania, " -"domestic violence, the stalking of public figures, and many other aspects of" -" stalking." +"This is a copy of \"The Abolition of Work and Other Essays\" by Bob Black. " +"It is likely that \"The Abolition of Work\" is the most famous essay in this" +" book." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Tactical Handgun Digest" -msgid_plural "issues of Tactical Handgun Digest" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of \"What is Property?\" by Pierre-Joseph Proudhon. It looks" +" like this book has a surprisingly long track record of owners." +msgstr "" -#. ~ Description for Tactical Handgun Digest #: lang/json/BOOK_from_json.py msgid "" -"A glossy magazine all about handguns and shooting. There is a good article " -"about proper sighting near the middle." +"This is a copy of \"The Conquest of Bread\" by Peter Kropotkin. There is a " +"picture of an old philosopher with magnificent beard, instead of bread, on " +"the cover." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Tao of the Handgun" -msgid_plural "copies of The Tao of the Handgun" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of \"The Trouble with Being Born\" by Emil Cioran. This book" +" might have been printed decades before the Cataclysm since the cover is " +"quite weathered." +msgstr "" -#. ~ Description for The Tao of the Handgun #: lang/json/BOOK_from_json.py msgid "" -"This introspective volume covers proper usage of handguns, from safety and " -"stance, to maintenance and proper sighting technique." +"This is a copy of \"The World as Will and Representation\" by Arthur " +"Schopenhauer. It contains a few undecipherable notes and scribbles." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Modern Rifleman" -msgid_plural "issues of Modern Rifleman" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of \"Up-Wingers: A Futurist Manifesto\" by FM-2030. It seems" +" that the author's real name is Fereidoun M. Esfandiary." +msgstr "" -#. ~ Description for Modern Rifleman #: lang/json/BOOK_from_json.py msgid "" -"An informative magazine all about rifles and shooting. There is an " -"excellent article about proper maintenance in this issue." +"This is a copy of \"The Bastiat Collection\", a large collection of essays " +"by Frederic Bastiat." msgstr "" #: lang/json/BOOK_from_json.py -msgid "FM 23-16 Army marksmanship manual" -msgid_plural "FM 23-16 Army marksmanship manuals" -msgstr[0] "«Армійський стрілковий посібник FM 23-16»" -msgstr[1] "«Армійський стрілковий посібник FM 23-16»" -msgstr[2] "«Армійський стрілковий посібник FM 23-16»" -msgstr[3] "«Армійський стрілковий посібник FM 23-16»" +msgid "" +"This is a copy of \"Anarchy, State, and Utopia\" by Robert Nozick, one of " +"the most influential books of modern libertarianism." +msgstr "" -#. ~ Description for FM 23-16 Army marksmanship manual #: lang/json/BOOK_from_json.py msgid "" -"A hefty military field manual about automatic rifle usage and techniques " -"which improve marksmanship and proper weapons-handling." +"This is a copy of \"Socialism\" by Ludwig von Mises, a critical examination " +"of socialism." msgstr "" -"Здоровезний військовий польовий посібник з автоматичних гвинтівок та методів" -" вдосконалення навичок стрільби й належного поводження зі зброєю." #: lang/json/BOOK_from_json.py -msgid "Trap and Field" -msgid_plural "issues of Trap and Field" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of \"The ABC of Communism\" by Nikolai Bukharin, one of the " +"most influential books of early Marxism-Leninism." +msgstr "" -#. ~ Description for Trap and Field #: lang/json/BOOK_from_json.py -msgid "" -"An in-depth magazine all about shotguns and shooting. There is an " -"informative article about proper shooting stance in the back pages." +msgid "This is a copy of \"Anti-Capitalist Mentality\" by Ludwig von Mises." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Shotguns: The Art and Science" -msgid_plural "copies of Shotguns: The Art and Science" +msgid "Modal Logic as Metaphysics" +msgid_plural "copies of Modal Logic" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Shotguns: The Art and Science +#. ~ Description for Modal Logic as Metaphysics #: lang/json/BOOK_from_json.py msgid "" -"This book claims to address every problem the shotgunner is likely to face, " -"and offers solutions to ensure that shooters can make every shot count." +"A treatise on applying logical tools to questions about that nature of " +"reality, this book contains detailed discussion of metaphysical issues." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Submachine Gun Enthusiast" -msgid_plural "issues of Submachine Gun Enthusiast" +msgid "Aesthetics: A Critical Anthology" +msgid_plural "copies of Aesthetics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Submachine Gun Enthusiast +#. ~ Description for Aesthetics: A Critical Anthology #: lang/json/BOOK_from_json.py msgid "" -"An in-depth magazine about submachine guns and shooting. There is an " -"exhaustive article about close quarter combat techniques in the front." +"This hardbound anthology presents a collection of readings, scholarly works," +" and critical analyses on the subject of beauty." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Submachine Gun Handbook" -msgid_plural "copies of The Submachine Gun Handbook" +msgid "The Philosophy of Information" +msgid_plural "copies of The Philosophy of Information" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Submachine Gun Handbook +#. ~ Description for The Philosophy of Information #: lang/json/BOOK_from_json.py msgid "" -"This concise guide details the proper care and operation of most forms of " -"machine pistols and submachine guns currently used by regular armed and " -"reserve forces, as well as several obsolete weapons." +"This university text details a critical investigation of the conceptual " +"nature and basic principles of information. The student will gain a " +"thorough appreciation of the conceptual frameworks commonly used to describe" +" and advance semantic investigations." msgstr "" #: lang/json/BOOK_from_json.py -msgid "US Weekly" -msgid_plural "US Weeklies" +msgid "Being and Nothingness" +msgid_plural "copies of Being and Nothingness" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for US Weekly +#. ~ Description for Being and Nothingness #: lang/json/BOOK_from_json.py -msgid "Weekly news about a bunch of famous people who're all (un)dead now." +msgid "" +"This paperback is a copy of Jean-Paul Sartre's \"Being and Nothingness\". A" +" key work in the existentialist tradition." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Self-Esteem for Dummies" -msgid_plural "copies of Self-Esteem for Dummies" +msgid "pulp novel" +msgid_plural "pulp novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Self-Esteem for Dummies +#. ~ Description for pulp novel #: lang/json/BOOK_from_json.py -msgid "Full of useful tips for showing confidence in your speech." +msgid "" +"A hardboiled detective tale filled with hard hitting action and intrigue." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Principles of Effective Communication" -msgid_plural "copies of Principles of Effective Communication" +msgid "Black Valkyries From Venus" +msgid_plural "copies of Black Valkyries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Principles of Effective Communication +#. ~ Description for Black Valkyries From Venus #: lang/json/BOOK_from_json.py -msgid "A hardbound book devoted to being an effective and persuasive speaker." +msgid "" +"You hold in your hands a weather-beaten novel written by someone named \"Lee" +" Racket.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Dungeon Master's Guide: 6th Edition" -msgid_plural "copies of Dungeon Master's Guide: 6th Edition" +msgid "The Wrong Tomorrow" +msgid_plural "copies of Wrong Tomorrow" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dungeon Master's Guide: 6th Edition +#. ~ Description for The Wrong Tomorrow #: lang/json/BOOK_from_json.py msgid "" -"A thick, hardcover volume with everything needed to weave legendary stories." -" It's full of information, but finding the things you're looking for can be" -" a chore." +"You hold in your hands a cheap drugstore paperback written by someone named " +"\"Lee Racket.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Nail Your Law Firm Interview" -msgid_plural "copies of Nail Your Law Firm Interview" +msgid "No God From a Corpse" +msgid_plural "copies of No God" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Nail Your Law Firm Interview +#. ~ Description for No God From a Corpse +#. ~ 'Hard-boiled enough to break a spoon' means melodramatic, exaggerated, +#. emotional but simple, and possessing a general lack of literary pretense. +#. Weatherworn means damaged by age. Skirt means woman. #: lang/json/BOOK_from_json.py msgid "" -"This lightweight book proclaims itself to be \"the ONLY gold star interview " -"guide for lawyers interviewing in any type of a job interview.\" It was " -"supposed to help new lawyers find work." +"This is a weatherworn paperback written by some skirt named \"Lee Racket.\"" +" It tells how rage and jealousy can turn a man, or a woman, into a monster." +" This story is hard-boiled enough to break a spoon." msgstr "" #: lang/json/BOOK_from_json.py -msgid "holybook abstract" -msgid_plural "holybook abstracts" +msgid "The Deep Dive" +msgid_plural "copies of Deep Dive" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for holybook abstract +#. ~ Description for The Deep Dive +#. ~ Broad is a dismissive and outdated term that simply means "woman." The +#. term is used because it evokes the (decidedly misogynistic) era in which +#. the pulp genre gained popularity within the United States. #: lang/json/BOOK_from_json.py -msgid "theoretically this isn't a book at all" +msgid "" +"This dimestore short story about space travel is written by a broad named " +"\"Lee Racket.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Mycenacean Hymns" -msgid_plural "copies of Mycenacean Hymns" +msgid "Planet of the Murderous Squids that Time Forgot!" +msgid_plural "copies of Planet of the Murderous Squids that Time Forgot!" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Mycenacean Hymns +#. ~ Description for Planet of the Murderous Squids that Time Forgot! #: lang/json/BOOK_from_json.py msgid "" -"A vellum book containing the hymns central to Marloss faith. As the verses " -"lead to each other, the text sings of unity and promised paradise." +"In this psychedelic adventure novel of cosmic exploration, an elderly " +"assassin discovers a planet too good to be true. Only once it is too late " +"does she discover the harrowing truth at the center of \"The Planet of the " +"Murderous Squids that Time Forgot!\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "King James Bible" -msgid_plural "copies of King James Bible" +msgid "The Great Capes of Metropolis" +msgid_plural "copies of The Great Capes of Metropolis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for King James Bible +#. ~ Description for The Great Capes of Metropolis #: lang/json/BOOK_from_json.py msgid "" -"An English translation of the Christian Bible, which originated in England " -"in the early 1600s." +"In this classic pulp paperback of superheroic exploits, a group of masked " +"vigilantes with diverse superpowers learn to work together to defeat the " +"ultimate villain." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Eastern Orthodox Bible" -msgid_plural "copies of Eastern Orthodox Bible" +msgid "Yesterday's Murdered" +msgid_plural "copies of Yesterday's Murdered" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Eastern Orthodox Bible +#. ~ Description for Yesterday's Murdered #: lang/json/BOOK_from_json.py -msgid "An English copy of the Eastern Orthodox translation of The Holy Bible." +msgid "" +"In this fast paced pulp noir, a hard-drinking detective with nerves of steel" +" has one last shot at vengeance." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Gideon Bible" -msgid_plural "copies of Gideon Bible" +msgid "Flashgun Condor and the Crimson Criminal" +msgid_plural "copies of Flashgun Condor and the Crimson Criminal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Gideon Bible +#. ~ Description for Flashgun Condor and the Crimson Criminal #: lang/json/BOOK_from_json.py msgid "" -"An English translation of the Christian Bible, distributed free of charge by" -" Gideons International." +"A hot-blooded photographer who fights crime with film, footage, and fists, " +"Condor is more than a mere shutterbug on the crime beat. But will she be " +"able to unravel a devious deception and bring the \"Crimson Criminal\" to " +"justice?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Guru Granth Sahib" -msgid_plural "copies of The Guru Granth Sahib" +msgid "scifi novel" +msgid_plural "scifi novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Guru Granth Sahib +#. ~ Description for scifi novel #: lang/json/BOOK_from_json.py -msgid "A single-volume copy of the central religious texts of Sikhism." +msgid "Aliens, ray guns, and space ships." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Hadith" -msgid_plural "copies of Hadith" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of Gibson's \"Neuromancer\". Written in the eighties, it was" +" surprisingly accurate in predicting much of modern society… Until " +"recently." +msgstr "" -#. ~ Description for Hadith #: lang/json/BOOK_from_json.py msgid "" -"A Muslim religious text containing an account of the sayings and actions of " -"the prophet Muhammad." +"This is a copy of \"The Stars My Destination\" by Alfred Bester.\n" +"\n" +"Tyger, Tyger, Burning bright,\n" +"In the forests of the night:\n" +"What immortal hand or eye,\n" +"Dare frame thy fearful symmetry?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Principia Discordia" -msgid_plural "copies of Principia Discordia" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of \"The Lathe of Heaven\" by Ursula Le Guin. Dirty finger-" +"stains have smudged the occasional word." +msgstr "" -#. ~ Description for Principia Discordia #: lang/json/BOOK_from_json.py -msgid "" -"A book that embodies the main beliefs of Discordianism. It seems to " -"primarily concern chaos, and features a card in the back which informs you " -"that you are now a 'genuine and authorized Pope of Discordia'." +msgid "This is a copy of \"The Dispossessed\" by Ursula Le Guin." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Kojiki" -msgid_plural "copies of The Kojiki" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"Hyperion\" by Dan Simmons." +msgstr "" -#. ~ Description for The Kojiki #: lang/json/BOOK_from_json.py msgid "" -"The oldest extant chronicle of Japan's myths and history, the stories " -"contained in the Kojiki are part of the inspiration behind Shinto practices." +"This is a copy of \"Endymion\" by Dan Simmons. It opens with a poem by D.H. Lawrence:\n" +"\n" +"Give us gods. Oh give them us!\n" +"Give us gods.\n" +"We are so tired of men\n" +"And motor-power." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Book of Mormon" -msgid_plural "copies of The Book of Mormon" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of Philip K. Dick's \"Do Androids Dream of Electric Sheep?\"." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a dog-eared copy of \"Nova Express\" by William Burroughs." +msgstr "" -#. ~ Description for The Book of Mormon #: lang/json/BOOK_from_json.py msgid "" -"The sacred text of the Latter Day Saint movement of Christianity, originally" -" published in 1830 by Joseph Smith." +"This is a copy of \"Foundation\" by Isaac Asimov. The back cover has been " +"ripped off." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Gospel of the Flying Spaghetti Monster" -msgid_plural "copies of The Gospel of the Flying Spaghetti Monster" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"The Trial\" by Franz Kafka. This book is rather worn." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"The Handmaid's Tale\" by Margaret Atwood." +msgstr "" -#. ~ Description for The Gospel of the Flying Spaghetti Monster #: lang/json/BOOK_from_json.py msgid "" -"A book that embodies the main beliefs of the Church of the Flying Spaghetti " -"Monster. It seems to involve a lot of pirates and some sort of invisible " -"drunken monster made of pasta." +"This is a copy of \"The Windup Girl\" by Paolo Bacigalupi. The blurb makes " +"you wonder how Thailand fared the end of the world." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Quran" -msgid_plural "copies of Quran" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"Islands in the Net\" by Bruce Sterling." +msgstr "" -#. ~ Description for Quran #: lang/json/BOOK_from_json.py msgid "" -"An English translation of the Muslim book of holy scriptures, with " -"explanatory notes and commentaries to aid in understanding." +"This is a copy of \"Foundation and Empire\" by Isaac Asimov. The back page " +"contains a hand-written grocery list." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Satanic Bible" -msgid_plural "copies of The Satanic Bible" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is an almost new copy of \"A Scanner Darkly\" by Philip K. Dick. It " +"still has the smell of new books within its pages." +msgstr "" -#. ~ Description for The Satanic Bible #: lang/json/BOOK_from_json.py msgid "" -"A collection of essays, observations, and rituals published by Anton LaVey " -"in 1969." +"This is a copy of \"Mirrorshades: A Cyberpunk Anthology\" compiled by Bruce " +"Sterling. The cover has rings of coffee stains over it." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Dianetics" -msgid_plural "copies of Dianetics" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of \"The World of Null-A\" by A. E. van Vogt. This copy " +"looks to have been used to press flowers." +msgstr "" -#. ~ Description for Dianetics #: lang/json/BOOK_from_json.py -msgid "" -"This book is the canonical text of Scientology. Written by a science " -"fiction author, it contains self-improvement techniques and musings on " -"psychology called Dianetics." +msgid "This is a copy of \"Altered Carbon\" by Richard Morgan." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Book of the SubGenius" -msgid_plural "copies of The Book of the SubGenius" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of Mary Shelly's \"Frankenstein\". Wasn't that the name of " +"the monster?" +msgstr "" -#. ~ Description for The Book of the SubGenius #: lang/json/BOOK_from_json.py msgid "" -"A book about the Church of the SubGenius. It seems to involve a salesman " -"named J. R. \"Bob\" Dobbs and a concept called 'slack'." +"This is a copy of \"Wasp\" by Eric Frank Russel. The futuristic terrorist's" +" handbook." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Sutras of the Buddha" -msgid_plural "copies of The Sutras of the Buddha" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of \"I Am Legend\" by Richard Matheson. The sleeve is " +"covered in dried blood." +msgstr "" -#. ~ Description for The Sutras of the Buddha #: lang/json/BOOK_from_json.py msgid "" -"A collection of discourses attributed to the Buddha and his close disciples." +"This is a copy of \"The Forever War\" by Joe Haldeman. This copy looks as " +"if it's been slightly chewed by a dog or other large animal." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Talmud" -msgid_plural "copies of the Talmud" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"The Moon Is a Harsh Mistress\" by Robert A. Heinlein." +msgstr "" -#. ~ Description for Talmud #: lang/json/BOOK_from_json.py msgid "" -"One of the central texts of Rabbinic Judaism, the Talmud expounds upon the " -"Hebrew Bible with teachings and opinions of thousands of rabbis." +"This is a copy of Samuel R. Delany's \"Nova\". The cover reads \"Review " +"Copy. Not for re-sale.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Tanakh" -msgid_plural "copies of Tanakh" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of Vonnegut's \"The Sirens of Titan\"." +msgstr "" -#. ~ Description for Tanakh #: lang/json/BOOK_from_json.py msgid "" -"A single-volume book containing the complete canon of the Jewish Bible." +"This is a copy of \"Grass\" by Sheri S. Tepper. A child has scribbled over " +"the first pages in crayon." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Tripitaka" -msgid_plural "copies of The Tripitaka" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of William Gibson's \"Count Zero\". The spine is stamped " +"with 'Library Copy'. And a sticker reading 'Science Fiction'." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "This is a copy of \"The Weapon Makers\" by A. E. van Vogt." +msgstr "" -#. ~ Description for The Tripitaka #: lang/json/BOOK_from_json.py msgid "" -"A collection of sacred Buddhist writings describing their canons of " -"scriptures." +"This is a copy of \"Record of a Spaceborn Few\" by Becky Chambers. It looks" +" almost brand new." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Upanishads" -msgid_plural "copies of The Upanishads" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of \"Use of Weapons\" by Ian M. Banks. The spine is cracked " +"and worn, some pages appear to be loose." +msgstr "" -#. ~ Description for The Upanishads #: lang/json/BOOK_from_json.py msgid "" -"A collection of sacred Hindu writings regarding the nature of reality and " -"describing the character and form of human salvation." +"This is a copy of Jean-Baptiste Cousin de Grainville's \"Le Dernier Homme\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Four Vedas" -msgid_plural "copies of The Four Vedas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of Orwell's \"Nineteen Eighty-Four\". The pages are loose " +"and thin. You should probably be careful with this copy." +msgstr "" -#. ~ Description for The Four Vedas #: lang/json/BOOK_from_json.py msgid "" -"A single volume containing all four Vedas, which are the oldest scriptures " -"of Hinduism." +"This is a copy of Heinlein's \"Stranger in a Strange Land\". The cover is " +"dog-eared and worn." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Hávamál" -msgid_plural "copies of Hávamál" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of Orson Scott Card's \"Ender's Game\"." +msgstr "" -#. ~ Description for Hávamál #: lang/json/BOOK_from_json.py -msgid "" -"An English translation of several Old Norse poems. The poems contain " -"proverbs and stories attributed to the god Odin, many transcribed from oral " -"history." +msgid "This is a copy of \"The Lost World\" by Arthur Conan Doyle." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Duelist's Annual" -msgid_plural "Duelist's Annuals" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"Islands in the Sky\" by Arthur C. Clarke." +msgstr "" -#. ~ Description for Duelist's Annual #: lang/json/BOOK_from_json.py -msgid "" -"An annual publication about fencing and dueling. There are many good " -"illustrations which describe proper technique and form." +msgid "This is a copy of H. G. Wells' \"The Island of Doctor Moreau\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "FM 23-25 Army bayonet manual" -msgid_plural "FM 23-25 Army bayonet manuals" -msgstr[0] "«Армійський посібник з багнетного бою FM 23-25»" -msgstr[1] "«Армійський посібник з багнетного бою FM 23-25»" -msgstr[2] "«Армійський посібник з багнетного бою FM 23-25»" -msgstr[3] "«Армійський посібник з багнетного бою FM 23-25»" +msgid "This is a copy of Stanislaw Lem's \"His Masters Voice\"." +msgstr "" -#. ~ Description for FM 23-25 Army bayonet manual #: lang/json/BOOK_from_json.py -msgid "A hefty military field manual about bayonet usage and combat theory." +msgid "This is a copy of Fred Hoyle's \"The Black Cloud\"." msgstr "" -"Здоровезний військовий польовий посібник з використання багнета та теорії " -"бою." #: lang/json/BOOK_from_json.py -msgid "Spetsnaz Knife Techniques" -msgid_plural "copies of Spetsnaz Knife Techniques" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"Last and First Men\" by Olaf Stapeldon." +msgstr "" -#. ~ Description for Spetsnaz Knife Techniques #: lang/json/BOOK_from_json.py -msgid "A classic Soviet text on the art of attacking with a blade." +msgid "This is a copy of Stanislaw Lem's \"Solaris\"." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Survival Under Atomic Attack" -msgid_plural "copies of Survival Under Atomic Attack" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of Theodore Sturgeon's \"More Than Human\"." +msgstr "" -#. ~ Description for Survival Under Atomic Attack #: lang/json/BOOK_from_json.py -msgid "" -"A wordy and intricate guide to wilderness and urban survival in a worst-case" -" scenario. While filled with loads of useful information, the madman who " -"wrote this was a terrible writer, and gleaning knowledge from the rants is a" -" chore." +msgid "This is a copy of \"Vurt\" by Jeff Noon." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Through the Lens" -msgid_plural "copies of Through the Lens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"A Canticle for Leibowitz\" by Walter M. Miller Jr." +msgstr "" -#. ~ Description for Through the Lens #: lang/json/BOOK_from_json.py -msgid "" -"A colorful digest devoted to backpacking and wilderness photography. The " -"photos are beautiful, though the terminology in the sections on " -"survivalcraft assume some proficiency." +msgid "This is a copy of \"The War of The Worlds\" by H.G Wells." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Alpha Male Quarterly" -msgid_plural "Alpha Male Quarterlies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"Iron Sunrise\" by Charles Stross." +msgstr "" -#. ~ Description for Alpha Male Quarterly #: lang/json/BOOK_from_json.py msgid "" -"This is a full-size glossy men's magazine. There's a brief article about " -"hiking and a list of simple wilderness survival tips somewhere in between " -"the photos of bikini-clad women and the gadget advertisements." +"This is a copy of \"The Hunger Games\" by Suzanne Collins. Reading the " +"blurb reminds you of a Japanese movie you think you once caught on the " +"television late at night." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Outdoor Adventures" -msgid_plural "issues of Outdoor Adventures" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"The Day of the Triffids\" by John Wyndham." +msgstr "" -#. ~ Description for Outdoor Adventures #: lang/json/BOOK_from_json.py -msgid "" -"A glossy magazine about surviving and hunting in the wilderness. There's an" -" exciting article about a bear attack in the back pages." +msgid "This is a copy of \"A Clockwork Orange\" by Anthony Burges." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pitching a Tent" -msgid_plural "copies of Pitching a Tent" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"The Man Who Fell to Earth\" by Walter Tevis." +msgstr "" -#. ~ Description for Pitching a Tent #: lang/json/BOOK_from_json.py -msgid "A guide detailing the basics of woodsmanship and outdoor survival." +msgid "This is a copy of \"Simulacron-3\" by Daniel F. Galouye." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pocket Survival Guide" -msgid_plural "copies of Pocket Survival Guide" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a copy of \"The Glass Bees\" by Ernst Jünger." +msgstr "" -#. ~ Description for Pocket Survival Guide #: lang/json/BOOK_from_json.py -msgid "" -"This pocket-sized leather-bound survival guide combines a wealth of concise " -"information with simple to follow instructions and easy to read " -"illustrations." +msgid "This is a copy of \"Journey to The Center of the Earth\" by Jules Verne." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Autobiography of a Mountain Man" -msgid_plural "copies of Autobiography of a Mountain Man" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a copy of Larry Niven's \"Ringworld\". There are a couple of pages " +"missing from the end of the book. Luckily only mail-order advertisements." +msgstr "" -#. ~ Description for Autobiography of a Mountain Man #: lang/json/BOOK_from_json.py msgid "" -"An amusing historical novel filled with detailed descriptions of surviving " -"in the wild, potentially containing great insights for an experienced " -"outdoorsman." +"This is a well-worn copy of \"The Hitchhikers Guide to the Galaxy\" by " +"Douglas Adams." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Outdoor Survival Guide" -msgid_plural "copies of Outdoor Survival Guide" +msgid "Dune" +msgid_plural "copies of Dune" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Outdoor Survival Guide +#. ~ Description for Dune #: lang/json/BOOK_from_json.py msgid "" -"A thick soft-cover book filled with vital information about surviving in the" -" wild, aimed at the experienced backpacker." +"This is a dog-eared copy of \"Dune\" by Frank Herbert. It has sand between " +"some of its pages. Weird." msgstr "" +#. ~ Description for Dune #: lang/json/BOOK_from_json.py -msgid "Introduction to Plant Biology" -msgid_plural "copies of Introduction to Plant Biology" +msgid "" +"This is a sturdy copy of \"Dune\" by Frank Herbert. It is a fairly new " +"reprint with the words \"SOON TO BE A MAJOR MOTION PICTURE\" splashed across" +" its dust jacket." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Parable of the Talents" +msgid_plural "copies of Parable of the Talents" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Introduction to Plant Biology +#. ~ Description for Parable of the Talents #: lang/json/BOOK_from_json.py msgid "" -"A college-level textbook about plants of all shapes and sizes. Covers a " -"wide range of subjects, from horticulture to the identification of tropical" -" plants. As such, it is of limited practical use in your current situation." +"This is a sturdy copy of \"Parable of the Talents.\". It is Octavia " +"Butler's sequel to her book \"Parable of the Sower.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Wonderful World of Arthropodology" -msgid_plural "copies of The Wonderful World of Arthropodology" +msgid "The Fifth Season" +msgid_plural "signed copies of Fifth Season" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Wonderful World of Arthropodology +#. ~ Description for The Fifth Season #: lang/json/BOOK_from_json.py msgid "" -"A three-volume doorstopper introducing the whole breadth of modern " -"arthropodology, beginning with a lengthy section on the comparative anatomy " -"of the described taxa. The authors somehow manage to maintain a gushingly " -"enthusiastic tone, even as they describe the grisly effects of arthropod " -"venoms or the mating habits of horseshoe crabs. Given the curious lack of " -"man-sized wasps in the illustrations, you have to wonder how much of the " -"contents is still applicable." +"This is a signed hardcover copy of the Hugo award winning \"The Fifth " +"Season\" by N.K. Jemisin. It smells faintly of dirt." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Natural Remedies of New England" -msgid_plural "copies of Natural Remedies of New England" +msgid "We" +msgid_plural "copies of We" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Natural Remedies of New England +#. ~ Description for We #: lang/json/BOOK_from_json.py msgid "" -"A leather bound manuscript, it features native herbal remedies with hand " -"colored illustrations of each plant." +"This hardback book is titled \"The Annotated We: A New Translation of Evgeny Zamiatin's Novel.\"\n" +"\n" +"It is Vladimir Wozniuk's 2015 translation of \"We,\" originally published in 1924 and generally seen as the first modern dystopian novel. The commentary examines the profusive allusions and highlights the poetic nature of Zamiatin's language." msgstr "" +#. ~ Description for We #: lang/json/BOOK_from_json.py -msgid "Swim Planet" -msgid_plural "issues of Swim Planet" +msgid "" +"A seminal work of dystopian fiction, Evgeny Zamiatin's \"We\" was first published in 1924 but suppresed by the Soviet Union until 1988.\n" +"\n" +"This mass-market 1993 edition you've found was translated from the Russian by Clarence Brown and includes a short introduction. The slightly worn cover features a surrealist photo of a person gazing backward suspiciouly." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Cyberiad" +msgid_plural "copies of The Cyberiad" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Swim Planet +#. ~ Description for The Cyberiad #: lang/json/BOOK_from_json.py -msgid "The world's leading resource about aquatic sports." +msgid "" +"This 350 page paperback presents the exploits and robotic rivalries of Trurl" +" and Klapaucius. Originally written in Polish by Stanislaw Lem, it has been" +" masterfully translated into English by Michael Kandel." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Water Survival Training Field Manual" -msgid_plural "copies of Water Survival Training Field Manual" +msgid "Brave New World" +msgid_plural "copies of Brave New World" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Water Survival Training Field Manual +#. ~ Description for Brave New World #: lang/json/BOOK_from_json.py msgid "" -"A commercially produced survival guide that details swimming and deep water " -"survival techniques tailored to emergency scenarios." +"This is weather worn copy of \"Brave New World\" by Aldous Huxley looks like" +" it has been left out in rain. The novel begins in a bleak building where " +"fetuses are grown in bottles on an assembly line." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Boston AnimeCon magazine" -msgid_plural "Boston AnimeCon magazines" +msgid "Roadside Picnic" +msgid_plural "copies of Roadside Picnic" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Boston AnimeCon magazine +#. ~ Description for Roadside Picnic #: lang/json/BOOK_from_json.py msgid "" -"A short magazine printed as an advertisement for the now canceled Boston " -"AnimeCon. A few costume ideas are intermixed with miscellaneous information" -" about the event." +"This is a paperback copy of \"Roadside Picnic\" by Arkady and Boris " +"Strugatsky. It has been translated into over 20 languages, occasionally " +"under the name \"Stalker.\" This copy, fortunately for you, just happens to" +" be in your native tongue." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Beauty Magazine" -msgid_plural "Beauty Magazines" +msgid "Fahrenheit 451" +msgid_plural "copies of Fahrenheit 451" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Beauty Magazine +#. ~ Description for Fahrenheit 451 +#: lang/json/BOOK_from_json.py +msgid "This is a copy of Ray Bradbury's \"Fahrenheit 451.\"" +msgstr "" + #: lang/json/BOOK_from_json.py msgid "" -"This is a full-size glossy women's magazine. There are a few simple " -"patterns and basic sewing tips somewhere in between the fashion photos and " -"the makeup advertisements." +"Some joker has gently burnt the exterior edge of this paperback dystopia. " +"It's still perfectly readable." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Sew Awesome Monthly" -msgid_plural "Sew Awesome Monthlies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"\"It was a pleasure to burn. It was a special pleasure to see things eaten," +" to see things blackened and changed.\"" +msgstr "" -#. ~ Description for Sew Awesome Monthly #: lang/json/BOOK_from_json.py msgid "" -"A well presented monthly magazine all about knitting, crocheting, and " -"needlepoint. Filled with ideas and project patterns." +"This 1979 softcover edition of Ray Bradbury's \"Fahrenheit 451\" was once a " +"library book. It still has a light blue checkout card pocketed on the torn " +"back cover. One \"Suzanne Collins\" borrowed it in 1981." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Sew What? Clothing!" -msgid_plural "copies of Sew What? Clothing!" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"The red and black paperback novel you hold in your hands is a modern reprint" +" of Ray Bradbury's \"Fahrenheit 451.\"" +msgstr "" -#. ~ Description for Sew What? Clothing! #: lang/json/BOOK_from_json.py -msgid "A colorful book about tailoring." +msgid "" +"This scifi novel is divided into three parts: \"The Hearth and the " +"Salamander,\" \"The Sieve and the Sand,\", and \"Burning Bright.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "clothing designer's portfolio" -msgid_plural "clothing designer's portfolios" +msgid "sports novel" +msgid_plural "sports novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for clothing designer's portfolio +#. ~ Description for sports novel #: lang/json/BOOK_from_json.py msgid "" -"A leather bound portfolio that once belonged to a clothing designer. Filled" -" with sketches and notes, a skilled tailor could learn a lot from this " -"volume." +"The dramatic tale of a small-time boxer who gets a rare chance to fight the " +"heavy-weight champion, and seize his one chance to make a better life for " +"himself while impressing the cute girl who works in the pet store." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Traditional Japanese Kimono" -msgid_plural "copies of Traditional Japanese Kimono" +msgid "The Art of Bunting" +msgid_plural "copies of The Art of Bunting" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Traditional Japanese Kimono +#. ~ Description for The Art of Bunting #: lang/json/BOOK_from_json.py -msgid "An illustrated textbook on the crafting of Japanese traditional garb." +msgid "" +"While you might be forgiven for expecting instructions for party decorating," +" it is in fact a novel about baseball. In the final climactic game a young " +"star proves to himself that he is ready for the big leagues." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Friendly, Humane Fashion" -msgid_plural "copies of Friendly, Humane Fashion" +msgid "The Touchdown Special" +msgid_plural "copies of The Touchdown Special" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Friendly, Humane Fashion +#. ~ Description for The Touchdown Special #: lang/json/BOOK_from_json.py msgid "" -"An educational book detailing the uses of fake fur, as well as its benefits " -"and disadvantages. The prose is rather passionate, and a disclaimer on the " -"cover proudly states that the book is printed and distributed by the Gryphon" -" Animal Rights Organization." +"In this absorbing novel of football fandom, a pizza delivery driver makes a " +"desperate gamble on the monday night game." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Sewing Techniques for Designers" -msgid_plural "copies of Sewing Techniques for Designers" +msgid "Trophy Envy" +msgid_plural "copies of Trophy Envy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Sewing Techniques for Designers +#. ~ Description for Trophy Envy #: lang/json/BOOK_from_json.py msgid "" -"A massive, hardbound book full of a wealth of information for the " -"professional clothing designer." +"This paperback tells the story of a tennis prodigy who begins to regret her " +"own success." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ye Scots Beuk o Tailorin'" -msgid_plural "copies of Ye Scots Beuk o Tailorin'" +msgid "Semi-Rough" +msgid_plural "copies of Semi-Rough" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ye Scots Beuk o Tailorin' +#. ~ Description for Semi-Rough #: lang/json/BOOK_from_json.py msgid "" -"A translated Gaelic book from Scotland. While boring to read due to its " -"technical tone, it provides insights into Scottish culture and information " -"about tailoring." +"This novel follows the humorous adventures of a professional athlete turned " +"amateur reporter." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Dieselpunk Designs" -msgid_plural "copies of Dieselpunk Designs" +msgid "The Golf Omnivore" +msgid_plural "copies of The Golf Omnivore" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dieselpunk Designs +#. ~ Description for The Golf Omnivore #: lang/json/BOOK_from_json.py msgid "" -"A large, leatherbound book containing a number of leather and rubber pieces " -"for the fashionable dieselpunk." +"This hardback book is a collection of short stories in which love and golf " +"are the only two constants." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Diskobolus" -msgid_plural "issues of Diskobolus" +msgid "Uniform Boy" +msgid_plural "copies of Uniform Boy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Diskobolus +#. ~ Description for Uniform Boy #: lang/json/BOOK_from_json.py -msgid "A biannual magazine devoted to the art and science of discus-throwing." +msgid "" +"This hardback book about an equipment manager for a minor league team " +"explores themes of loyalty and resentment." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Complete Guide to Pitching" -msgid_plural "copies of The Complete Guide to Pitching" +msgid "Budgetball: Winning a Rigged Game" +msgid_plural "copies of Budgetball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Complete Guide to Pitching +#. ~ Description for Budgetball: Winning a Rigged Game #: lang/json/BOOK_from_json.py msgid "" -"A detailed guide for baseball pitchers that combines time-tested techniques " -"and information mixed with a common sense approach to pitching." +"Budgetball tells the true story of the curious case of Benny Bobbin and his " +"quixotic quest to defeat the deep-pocketed Orlando O's." msgstr "" #: lang/json/BOOK_from_json.py -msgid "How to Trap Anything" -msgid_plural "copies of How to Trap Anything" +msgid "The Lads of Summer" +msgid_plural "copies of The Lads of Summer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for How to Trap Anything +#. ~ Description for The Lads of Summer #: lang/json/BOOK_from_json.py msgid "" -"A worn manual that describes how to set and disarm a wide variety of traps." +"This well worn paperback details the early baseball careers of one of the " +"greatest teams professional sports has ever known." msgstr "" -"Замизганий посібник, що описує як встановлювати і знешкоджувати різноманітні" -" пастки." #: lang/json/BOOK_from_json.py -msgid "Trapper's Life" -msgid_plural "issues of Trapper's Life" +msgid "Volleyball: Get Ready to Get Ready" +msgid_plural "copies of Volleyball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Trapper's Life +#. ~ Description for Volleyball: Get Ready to Get Ready #: lang/json/BOOK_from_json.py msgid "" -"An in-depth magazine about trapping game. There are lots of articles and " -"diagrams that explain simple trap designs." +"\"Volleyball: Get Ready to Get Ready\" is YOUR illustrated guide to level up" +" your game. With full-color photos and diagrams, you will learn the drills " +"and techniques you need to dominate the competition." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Modern Trapper" -msgid_plural "copies of The Modern Trapper" +msgid "William G. Morgan, the Godfather of Volleyball" +msgid_plural "copies of The Godfather of Volleyball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Modern Trapper +#. ~ Description for William G. Morgan, the Godfather of Volleyball #: lang/json/BOOK_from_json.py -msgid "An extensive volume that details numerous methods of trapping game." +msgid "" +"This odd little hardbound book is only 98 pages long, and a dozen of those " +"are comprised of grainy black and white photos. If you read this book, you " +"learn that volleyball was originally called \"Mintonette\" and also some " +"biographic details about its inventor." msgstr "" #: lang/json/BOOK_from_json.py -msgid "FM 20-32 Mine/Countermine Operations manual" -msgid_plural "copies of FM 20-32 Mine/Countermine Operations manual" +msgid "Legendary Bike Rides" +msgid_plural "copies of Bike Rides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for FM 20-32 Mine/Countermine Operations manual +#. ~ Description for Legendary Bike Rides #: lang/json/BOOK_from_json.py msgid "" -"A hefty military field manual about mine-warfare principles, the mechanics " -"of different types of mines/IED's, and countermine operations." +"This unwieldy coffeetable book is titled \"LEGENDARY Bike Rides Around the " +"WORLD.\" It provides a wealth of detail about paved bike trails in every " +"part of the globe except New England. But if you make it to Patagonia on " +"bike, you're all set." msgstr "" -#. ~ The spelling is intentionally archaic, as this form is commonly used in -#. the titles of books. #: lang/json/BOOK_from_json.py -msgid "The Compleat Trapper" -msgid_plural "copies of The Compleat Trapper" +msgid "Natare Ergo Sum" +msgid_plural "copies of Natare Ergo Sum" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Compleat Trapper +#. ~ Description for Natare Ergo Sum #: lang/json/BOOK_from_json.py msgid "" -"An in-depth book about trapping game animals, covering methods both modern " -"and ancient." +"The poorly translated title is supposed to be Latin for \"I Swim, Therefore " +"I Am.\" This short hardback presents \"A Philosophy of Swimming\" and then " +"playfully attributes a variety of famous philosophical expressions into " +"edorsements for the sport of swimming. It's not a bad book, just a bit odd." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Trapper's Companion" -msgid_plural "copies of The Trapper's Companion" +msgid "Stratosphere: The Rise of Hoops" +msgid_plural "copies of Stratosphere" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Trapper's Companion +#. ~ Description for Stratosphere: The Rise of Hoops #: lang/json/BOOK_from_json.py msgid "" -"A folksy guide to trapping wild game using time-tested methods. A bit in-" -"depth for the beginner, it can provide a wealth of information to a " -"knowledgeable trapper." +"\"Stratosphere: The Rise of Hoops\" chronicles four decades of professional " +"basketball against a backdrop of sustained social change." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Boxing Monthly" -msgid_plural "Boxing Monthlies" +msgid "Anything Can Be Beautiful" +msgid_plural "copies of Anything Can Be Beautiful" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Boxing Monthly +#. ~ Description for Anything Can Be Beautiful #: lang/json/BOOK_from_json.py msgid "" -"An exciting monthly magazine about boxing. There are lots of large, " -"colorful photos of pugilistic exploits." +"Stylist, designer, and glitter goddess, Tiffynie Blust looks at the world " +"one mantra in mind: anything can be beautiful." msgstr "" #: lang/json/BOOK_from_json.py -msgid "101 Wrestling Moves" -msgid_plural "copies of 101 Wrestling Moves" +msgid "The Greatest Rooms of the Century" +msgid_plural "copies of The Greatest Rooms of the Century" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 101 Wrestling Moves +#. ~ Description for The Greatest Rooms of the Century #: lang/json/BOOK_from_json.py msgid "" -"It seems to be a wrestling manual, poorly photocopied and released on " -"spiral-bound paper. Still, there are lots of useful tips for unarmed " -"combat." +"A stunning collection of the best living spaces created and commissioned by " +"the most influential people in interior design." msgstr "" #: lang/json/BOOK_from_json.py -msgid "children's book" -msgid_plural "children's books" -msgstr[0] "дитяча книжка" -msgstr[1] "дитячих книжки" -msgstr[2] "дитячих книжок" -msgstr[3] "дитяча книжка" +msgid "The Hands-On Home" +msgid_plural "copies of The Hands-On Home" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for children's book +#. ~ Description for The Hands-On Home #: lang/json/BOOK_from_json.py msgid "" -"A little book for little readers. The colorful cartoon characters and sweet" -" stories contained herein belong to a different time, before the dead walked" -" and the world moved on." +"An ecologically-minded take on modern homemaking, this is a practical guide " +"to maximising your time in the kitchen and beyond." msgstr "" #: lang/json/BOOK_from_json.py -msgid "book of fairy tales" -msgid_plural "books of fairy tales" +msgid "Rooms We Love" +msgid_plural "copies of Rooms We Love" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for book of fairy tales +#. ~ Description for Rooms We Love #: lang/json/BOOK_from_json.py msgid "" -"An amusing collection of folklore featuring the usual cast of fairies, " -"goblins, and trolls." +"This is a guide on how to affordably decorate rooms to suit your " +"personality. In the book, we visit rooms inspired by the needs of each " +"homeowner and will see how they transformed their rooms." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This fairy tale is about a wolf who eats so much salted meat she becomes " -"trapped in the butcher's cellar." -msgstr "" +msgid "New York Parties" +msgid_plural "copies of New York Parties" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for New York Parties #: lang/json/BOOK_from_json.py msgid "" -"In this traditional story of beastly intrigue a clever fox convinces an " -"elderly lion to kill a derogatory wolf." +"Visit the homes of savvy tastemakers from the worlds of fashion, finance, " +"and design, with this book of lavish photography." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is an illustrated fairy tale book about a conversation between a mouse " -"and a cat." -msgstr "" +msgid "Best Signature Outdoor Kitchens" +msgid_plural "copies of Best Signature Outdoor Kitchens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Best Signature Outdoor Kitchens #: lang/json/BOOK_from_json.py msgid "" -"This illustrated fairy tale relates how a city mouse did visit his cousin in" -" the country, and how each regarded the other's quality of life." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "A fable in which the jackal wins the day via clever foolishness." +"Outdoor space is one of the hottest amenities being considered by new and " +"existing homeowners. This book will show you how to turn any deck, patio, " +"or other outside area into a great place to cook." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"A slave mistakenly wanders into a lion's den - thus begins a fable which " -"demonstrates mutual dependence regardless of size or status." -msgstr "" +msgid "The Art of Using Plants to Transform Your Home" +msgid_plural "copies of The Art of Using Plants to Transform Your Home" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for The Art of Using Plants to Transform Your Home #: lang/json/BOOK_from_json.py msgid "" -"An amusing collection of stories featuring \"Goldilocks and The Three " -"Bears\" on the cover." +"Bring gorgeous greenery into your life with this delightful guide to " +"decorating your living space with a wide variety of plants. Illustrated " +"examples enable you to easily transform every corner of your interior space." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a well illustrated fairy tale about a war between the birds and the " -"beasts, with particulars on the wartime conduct and eventual fate of the " -"bat." -msgstr "" +msgid "Woman of Color" +msgid_plural "copies of Woman of Color" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Woman of Color #: lang/json/BOOK_from_json.py msgid "" -"This book, titled \"The Rattlesnake's Vengeance\" is a collection of " -"Cherokee myths and legends. \"285D\" is hand-written in pencil on the title" -" page." +"This is a collection of essays and advice on style, beauty, and motherhood." +" Part memoir, part lifestyle guide, this book reflects the author's " +"experience growing up as a woman of color in Brooklyn." msgstr "" #: lang/json/BOOK_from_json.py -msgid "This fairy tale book is a regional variant of \"Jack and the Beanstalk.\"" -msgstr "" +msgid "10 Cool Things About Being A Ring Bearer" +msgid_plural "copies of 10 Cool Things About Being A Ring Bearer" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for 10 Cool Things About Being A Ring Bearer #: lang/json/BOOK_from_json.py msgid "" -"This fairy tale book is entitled \"Little Red Cap\". It details a red-" -"cloaked child's various encounters with talking wolves." +"This book is for the delightful little ring bearer in your wedding. The " +"author depicts the responsibility and honor in being a ring bearer. Your " +"little angel will cherish this book as he or she learns how to behave on " +"your perfect day." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"A collection of ghost stories warning about the dangers of stealing from the" -" dead." -msgstr "" +msgid "How to Raise a Gentleman: A Civilized Guide to Parenting" +msgid_plural "" +"copies of How to Raise a Gentleman: A Civilized Guide to Parenting" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for How to Raise a Gentleman: A Civilized Guide to Parenting #: lang/json/BOOK_from_json.py msgid "" -"An Irish fairy tale in which a Celtic poet marries a princess who has been " -"cursed with the head of a pig." +"A revised edition for parents who hope their little boy children will grow " +"up to be the kind of men who know which fork to use, how to treat others, " +"and generally make their parents proud." msgstr "" #: lang/json/BOOK_from_json.py msgid "" -"A book of Italian fairy tales translated into English. The cover features " -"an orange fairy juggling a lemon, a lime, and a tangerine." -msgstr "" +"International Approaches to Securing Radioactive Sources Against Terrorism" +msgid_plural "" +"copies of International Approaches to Securing Radioactive Sources Against " +"Terrorism" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for International Approaches to Securing Radioactive Sources +#. Against Terrorism #: lang/json/BOOK_from_json.py -msgid "A book of fables about people who change into birds." +msgid "" +"This book presents how to enhance cooperation and assistance between " +"countries in support of International Atomic Energy Agency efforts to secure" +" radioactive sources against the threat of terrorism." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This compendium of amusing folk tales about the devil is titled \"Hell's " -"Kettle: Legends of the Devil.\"" -msgstr "" +msgid "Principles of Forensic Psychiatry" +msgid_plural "copies of Principles of Forensic Psychiatry" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Principles of Forensic Psychiatry #: lang/json/BOOK_from_json.py msgid "" -"This charming book of Swedish fables is titled, \"The Glass Mountain and the" -" Princess.\"" +"This text addresses standards in the assessment and treatment of aggression " +"and violence as well as psychological and neuroimaging assessments." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This is a collection of fairy tale stories warning against the consequences " -"of extreme greed." -msgstr "" +msgid "The Guide to Reflective Conflict Resolution" +msgid_plural "copies of The Guide to Reflective Conflict Resolution" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for The Guide to Reflective Conflict Resolution #: lang/json/BOOK_from_json.py msgid "" -"This fable book is entitled, \"The Rabbit Herd.\" Inside are woodcut " -"illustrations of a peasant boy playing his flute for a mob of mischievous " -"hares." +"The back cover of this hardbound book reads: \"Why should professionals care" +" about reflective practice? How do its principles and methods increase " +"competence? What characteristics distinguish reflective practitioners?\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "This book is titled, \"The Thieving Pot: Folktales of the Arab World.\"" -msgstr "" +msgid "The Oxbridge Handbook of Mood Ailments" +msgid_plural "copies of The Oxbridge Handbook of Mood Ailments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for The Oxbridge Handbook of Mood Ailments #: lang/json/BOOK_from_json.py msgid "" -"This is a book of legends collected by Traveller Johnny Cassidy in the " -"1960s." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "A book by the Brothers Grimm titled, \"Eve's Unequal Children.\"" +"The Oxbridge Handbook of Mood Ailments provides detailed coverage of the " +"characterization, understanding, and treatment of affective disorders. It " +"provides coverage of unipolar depression, bipolar disorder, and known " +"variants of these illnesses." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This book of fables expands upon the legend of the Seven Sleepers of " -"Ephesus." -msgstr "" +msgid "Phonological Acquisition and Disorders" +msgid_plural "copies of Phonological Acquisition and Disorders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Phonological Acquisition and Disorders #: lang/json/BOOK_from_json.py msgid "" -"In this fairy tale a strong man frightens an ogre by squeezing water out of " -"a stone." +"Studying the phonologies of children with non-organic speech disorders, this" +" volume details the latest findings in optimality theory, phonological " +"acquisition and disorders. It is intended for linguists and psychologists." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This book of rustic folk tales bears the title: \"How to Shout Down the " -"Devil.\"" -msgstr "" +msgid "Therapeutic Gardens and Healing Spaces" +msgid_plural "copies of Therapeutic Gardens and Healing Spaces" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Therapeutic Gardens and Healing Spaces #: lang/json/BOOK_from_json.py msgid "" -"The title of this book is \"Village Folk-tales of Ceylon.\" It includes " -"fables about logical errors and foolish misjudgements of the Kadambawa men." +"This book addresses how to design therapeutic gardens. It illustrates a " +"variety of landscape designs appropriate for public spaces that promote " +"mental health." msgstr "" #: lang/json/BOOK_from_json.py -msgid "" -"This book of folk tales is titled, \"The Girl with the Ugly Name, and Other " -"Stories.\"" -msgstr "" +msgid "Advances in Drug Delivery Systems" +msgid_plural "copies of Advances in Drug Delivery Systems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for Advances in Drug Delivery Systems #: lang/json/BOOK_from_json.py msgid "" -"Titled \"The Fleeing Pancake\", this collection of silly folk tales is " -"suitable for small children." +"This softcover reprint covers an array of topics in pharmacology. The " +"physicochemical concepts of the refinement of bioresponsive drug delivery " +"are presented in detail alongside a variety of current approaches employed " +"in the development of zero order release systems." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Adorkable Girl" -msgid_plural "copies of Adorkable" +msgid "Using Art to Treat Eating Disorders" +msgid_plural "copies of Using Art to Treat Eating Disorders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Adorkable Girl +#. ~ Description for Using Art to Treat Eating Disorders #: lang/json/BOOK_from_json.py msgid "" -"When a therapist's daughter transfers to a new school, she decides to change" -" her personality type. As her social life begins to blossom, can she " -"maintain a healthy boundary between her home life and her public persona?" +"This is an introductory guide for those wanting to explore the use of art to" +" address eating disorders. Art therapy is a particularly effective " +"therapeutic intervention, as it allows people to express uncomfortable " +"thoughts and feelings nonverbally." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Becoming Jackson" -msgid_plural "copies of Becoming Jackson" +msgid "A Clinical Guide to Video Gamers" +msgid_plural "copies of A Clinical Guide to Video Gamers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Becoming Jackson +#. ~ Description for A Clinical Guide to Video Gamers #: lang/json/BOOK_from_json.py msgid "" -"When Jackson gains the mystical talent to alter his appearance on command, " -"will he be able to recognize himself in his own mirror?" +"This scholarly work considers the role that games play in psychological " +"experiences and mental health. Chapters examine the factors that compel " +"individual gamers to select and identify with particular games and " +"characters, as well as the different play styles, genres, and archetypes " +"common in video games." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Nothing Burned" -msgid_plural "copies of Nothing Burned" +msgid "Paranoia and the History of Madness" +msgid_plural "copies of Paranoia and the History of Madness" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Nothing Burned +#. ~ Description for Paranoia and the History of Madness #: lang/json/BOOK_from_json.py msgid "" -"A teenage influencer becomes fast friends with someone who may or may not be" -" an actual demon." +"This book is an analysis of the use and misuse of paranoia throughout " +"history and in contemporary society. The impact of paranoia on societies is" +" explored in detail." msgstr "" #: lang/json/BOOK_from_json.py -msgid "High and Low" -msgid_plural "copies of High and Low" +msgid "Psychoanalysis and Colonialism" +msgid_plural "copies of Psychoanalysis and Colonialism" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for High and Low +#. ~ Description for Psychoanalysis and Colonialism #: lang/json/BOOK_from_json.py msgid "" -"In this work of adolescent fiction, a young gemini discovers that the " -"astrology section of his small town newspaper is eerily preminiscent. His " -"efforts to uncover the oracle reveal more than the stars could have " -"predicted." +"Freud referred to women's sexuality as a \"dark continent\" for " +"psychoanalysis, drawing on colonial use of the same phrase to refer to " +"Africa. This book details how the problematic universalism of " +"psychoanalysis led theorists to reject its relevance for postcolonial " +"critique." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Fire When You See My Eyes" -msgid_plural "copies of Fire When" +msgid "The Psychology of Stalking" +msgid_plural "copies of The Psychology of Stalking" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Fire When You See My Eyes +#. ~ Description for The Psychology of Stalking #: lang/json/BOOK_from_json.py msgid "" -"In a cataclysmic future, advanced technology gives parents access to video " -"footage of every moment of their teenage children's lives." +"This book explores stalking from social, psychiatric, psychological and " +"behavioral perspectives. Topics include psychiatric diagnoses, offender-" +"victim typologies, cyberstalking, false victimization syndrome, erotomania, " +"domestic violence, the stalking of public figures, and many other aspects of" +" stalking." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Peanut Butter Bruised" -msgid_plural "copies of Peanut Butter Bruised" +msgid "Tactical Handgun Digest" +msgid_plural "issues of Tactical Handgun Digest" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Peanut Butter Bruised +#. ~ Description for Tactical Handgun Digest #: lang/json/BOOK_from_json.py msgid "" -"In this work of young adult fiction, a woman raised on food stamps falls in " -"love with a young cook. More importantly, she falls in love with the idea " -"of becoming a professional chef." +"A glossy magazine all about handguns and shooting. There is a good article " +"about proper sighting near the middle." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Ready When You Are" -msgid_plural "copies of Ready When" +msgid "The Tao of the Handgun" +msgid_plural "copies of The Tao of the Handgun" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Ready When You Are +#. ~ Description for The Tao of the Handgun #: lang/json/BOOK_from_json.py msgid "" -"When three teenage girls ditch class to drive cross country together they " -"get a strong dose of life lessons on the road. This work of young adult " -"fiction explores how friendships evolve in early adulthood." +"This introspective volume covers proper usage of handguns, from safety and " +"stance, to maintenance and proper sighting technique." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Study of a Boy" -msgid_plural "copies of \"Study of a Boy\"" +msgid "Modern Rifleman" +msgid_plural "issues of Modern Rifleman" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Study of a Boy +#. ~ Description for Modern Rifleman #: lang/json/BOOK_from_json.py msgid "" -"A high school sophomore's personal journal is stolen and then leaked on " -"social media. When it goes viral he is forced simultaneously to contend " -"with both fame and betrayal." +"An informative magazine all about rifles and shooting. There is an " +"excellent article about proper maintenance in this issue." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Summer Variables" -msgid_plural "copies of Summer Variables" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "FM 23-16 Army marksmanship manual" +msgid_plural "FM 23-16 Army marksmanship manuals" +msgstr[0] "«Армійський стрілковий посібник FM 23-16»" +msgstr[1] "«Армійський стрілковий посібник FM 23-16»" +msgstr[2] "«Армійський стрілковий посібник FM 23-16»" +msgstr[3] "«Армійський стрілковий посібник FM 23-16»" -#. ~ Description for Summer Variables +#. ~ Description for FM 23-16 Army marksmanship manual #: lang/json/BOOK_from_json.py msgid "" -"In this book written primarily for young adults, a woman's modest summer " -"internship results in an incredible discovery that attracts the attention of" -" unsavory elements." +"A hefty military field manual about automatic rifle usage and techniques " +"which improve marksmanship and proper weapons-handling." msgstr "" +"Здоровезний військовий польовий посібник з автоматичних гвинтівок та методів" +" вдосконалення навичок стрільби й належного поводження зі зброєю." #: lang/json/BOOK_from_json.py -msgid "In a Dark Place" -msgid_plural "copies of Dark Place" +msgid "Trap and Field" +msgid_plural "issues of Trap and Field" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for In a Dark Place +#. ~ Description for Trap and Field #: lang/json/BOOK_from_json.py msgid "" -"Markia dreams about the future. Theo longs for the past. Together can they" -" find a way to live in the now?" +"An in-depth magazine all about shotguns and shooting. There is an " +"informative article about proper shooting stance in the back pages." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Betrayal Takes Two" -msgid_plural "copies of Betrayal" +msgid "Shotguns: The Art and Science" +msgid_plural "copies of Shotguns: The Art and Science" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Betrayal Takes Two +#. ~ Description for Shotguns: The Art and Science #: lang/json/BOOK_from_json.py msgid "" -"This is a hard cover book for older teens. The two main characters pull a " -"cruel prank on their classmates, and are brought together both by their " -"frantic efforts to avoid being caught and their shared sense of guilt." +"This book claims to address every problem the shotgunner is likely to face, " +"and offers solutions to ensure that shooters can make every shot count." msgstr "" #: lang/json/BOOK_from_json.py -msgid "coming of age novel" -msgid_plural "coming of age novels" +msgid "Submachine Gun Enthusiast" +msgid_plural "issues of Submachine Gun Enthusiast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for coming of age novel +#. ~ Description for Submachine Gun Enthusiast #: lang/json/BOOK_from_json.py msgid "" -"A classic tale about growing up, portraying one young man's funny and " -"poignant experiences with life, love, and sex." +"An in-depth magazine about submachine guns and shooting. There is an " +"exhaustive article about close quarter combat techniques in the front." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pantheon: The Story of an Iranian Youth" -msgid_plural "copies of Pantheon" +msgid "The Submachine Gun Handbook" +msgid_plural "copies of The Submachine Gun Handbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pantheon: The Story of an Iranian Youth +#. ~ Description for The Submachine Gun Handbook #: lang/json/BOOK_from_json.py msgid "" -"A hard cover graphic novel about a young girl living in Iran during the " -"1980's, seeing the world change around her as Iraq invaded her country." +"This concise guide details the proper care and operation of most forms of " +"machine pistols and submachine guns currently used by regular armed and " +"reserve forces, as well as several obsolete weapons." msgstr "" #: lang/json/BOOK_from_json.py -msgid "original copy of Housefly" -msgid_plural "original copies of Housefly" +msgid "US Weekly" +msgid_plural "US Weeklies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for original copy of Housefly +#. ~ Description for US Weekly #: lang/json/BOOK_from_json.py -msgid "" -"The only copy of Housefly in existence - a long book about three individuals" -" drawn together by fate in the early 1800s to save their English town of " -"Victoria from a mysterious threat. You never got to publish it, but reading" -" it lets you forget the horrors of the Cataclysm, if only for a moment." +msgid "Weekly news about a bunch of famous people who're all (un)dead now." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Unofficial History of Salus IV Vol. 1" -msgid_plural "copies of Unofficial History of Salus IV Vol. 1" +msgid "Self-Esteem for Dummies" +msgid_plural "copies of Self-Esteem for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Unofficial History of Salus IV Vol. 1 +#. ~ Description for Self-Esteem for Dummies #: lang/json/BOOK_from_json.py -msgid "" -"Welcome to Frozen Hell, an unofficial history of Salus IV by Bette Lapin. " -"Salus IV was founded in the early days of the Hyperspace Era as a joint " -"venture between Mercurial Genomics and a Soviet Design Bureau. At its " -"height several hundred years ago Salus IV had just over 110 million citizens" -" (including both uplifts and humans). However, that population had begun to " -"decline even before the Discontinuity as people migrated to planets that, " -"while more hostile to life during the earliest colonization phases than " -"Salus IV, were much simpler to terraform into a place more enjoyable by " -"human and uplift citizens." +msgid "Full of useful tips for showing confidence in your speech." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Unofficial History of Salus IV Vol. 2" -msgid_plural "copies of Unofficial History of Salus IV Vol. 2" +msgid "Principles of Effective Communication" +msgid_plural "copies of Principles of Effective Communication" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Unofficial History of Salus IV Vol. 2 +#. ~ Description for Principles of Effective Communication #: lang/json/BOOK_from_json.py -msgid "" -"Even during the Discontinuity Salus IV's population continued to drop as " -"there were easier places to live even in the Salus system - from honeycombed" -" asteroid habitats to domed cities with gorgeous views. Mercurial Genomics " -"was an early member of the nascent post-Discontinuity government efforts. " -"As a result of this membership, they have successfully reclaimed Salus IV in" -" the court system set up by ESCA. The Whately family, which runs Mercurial " -"Genomics, began leasing development and exploitation permits and allows the " -"establishment of minor UICA outposts within Salus IV. There is an official " -"citizen count of less than twenty thousand sentient beings, albeit mostly in" -" orbit. It is believed, however, that there are at least that many non-" -"citizen sentients spread amongst squatter, smuggler, pirate, and feral " -"uplift communities." +msgid "A hardbound book devoted to being an effective and persuasive speaker." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Unofficial History of Salus IV Vol. 3" -msgid_plural "copies of Unofficial History of Salus IV Vol. 3" +msgid "Dungeon Master's Guide: 6th Edition" +msgid_plural "copies of Dungeon Master's Guide: 6th Edition" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Unofficial History of Salus IV Vol. 3 +#. ~ Description for Dungeon Master's Guide: 6th Edition #: lang/json/BOOK_from_json.py msgid "" -"The Salus system is what is called a hinge system for the new FTL travels. " -"This system contains a number of easy exit points to star systems that have " -"no other easy way to travel to each other than through a series of systems " -"with low to zero civilization in them. Salus at minimum has several " -"interstellar refueling points. These stations are often blind to each other" -" as the planets and other objects rotate around the sun. Mercurial seems to" -" have no interest in managing or protecting the traffic that flows through " -"the Salus system or in neighboring systems beyond the bare minimum effort " -"required by UICA. As a result of this neglect; victims of pirate attacks, " -"engine failure and other critical issues regularly limp to whatever safety " -"they can find in the Salus system. Unfortunately for many of them they will" -" crash land on Salus IV where there are few regular shuttles between its " -"scattered ports and the outside universe. As the locals are fond of saying " -"'Getting to Salus IV is hard, getting off may be impossible'." +"A thick, hardcover volume with everything needed to weave legendary stories." +" It's full of information, but finding the things you're looking for can be" +" a chore." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Nuclear Physics Made Easy" -msgid_plural "copies of Nuclear Physics Made Easy" +msgid "Nail Your Law Firm Interview" +msgid_plural "copies of Nail Your Law Firm Interview" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Nuclear Physics Made Easy +#. ~ Description for Nail Your Law Firm Interview #: lang/json/BOOK_from_json.py msgid "" -"A book detailing the workings of state of the art atomic technology, and the" -" physics behind it." +"This lightweight book proclaims itself to be \"the ONLY gold star interview " +"guide for lawyers interviewing in any type of a job interview.\" It was " +"supposed to help new lawyers find work." msgstr "" #: lang/json/BOOK_from_json.py -msgid "mealworm farm logbook" -msgid_plural "mealworm farm logbooks" +msgid "holybook abstract" +msgid_plural "holybook abstracts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mealworm farm logbook +#. ~ Description for holybook abstract #: lang/json/BOOK_from_json.py -msgid "" -"A binder containing detailed production logs from an industrial mealworm " -"farm. You could use its recordings to start your own farming operations." +msgid "theoretically this isn't a book at all" msgstr "" #: lang/json/BOOK_from_json.py -msgid "chicken walker schematics" -msgid_plural "chicken walker schematics" +msgid "Mycenacean Hymns" +msgid_plural "copies of Mycenacean Hymns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for Mycenacean Hymns #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Northrop, those are assembly plans, design specs, and " -"technical drawings for the chicken walker. Most of this is useless to you, " -"but you could use the assembly plans to re-assemble the robot from salvaged " -"parts." +"A vellum book containing the hymns central to Marloss faith. As the verses " +"lead to each other, the text sings of unity and promised paradise." msgstr "" #: lang/json/BOOK_from_json.py -msgid "diamond press schematics" -msgid_plural "diamond press schematics" +msgid "King James Bible" +msgid_plural "copies of King James Bible" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for King James Bible #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " -"design specs, and technical drawings for the diamond press. Most of this is" -" useless to you, but you could use the assembly plans to re-assemble the " -"robot from salvaged parts." +"An English translation of the Christian Bible, which originated in England " +"in the early 1600s." msgstr "" #: lang/json/BOOK_from_json.py -msgid "nano forge schematics" -msgid_plural "nano forge schematics" +msgid "Eastern Orthodox Bible" +msgid_plural "copies of Eastern Orthodox Bible" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for Eastern Orthodox Bible #: lang/json/BOOK_from_json.py -msgid "" -"Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " -"design specs, and technical drawings for the nano forge. Most of this is " -"useless to you, but you could use the assembly plans to re-assemble the " -"robot from salvaged parts." +msgid "An English copy of the Eastern Orthodox translation of The Holy Bible." msgstr "" #: lang/json/BOOK_from_json.py -msgid "tank drone schematics" -msgid_plural "tank drone schematics" +msgid "Gideon Bible" +msgid_plural "copies of Gideon Bible" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for Gideon Bible #: lang/json/BOOK_from_json.py msgid "" -"Bearing the logo of Northrop, those are assembly plans, design specs, and " -"technical drawings for the tank drone. Most of this is useless to you, but " -"you could use the assembly plans to re-assemble the robot from salvaged " -"parts." +"An English translation of the Christian Bible, distributed free of charge by" +" Gideons International." msgstr "" #: lang/json/BOOK_from_json.py -msgid "tripod schematics" -msgid_plural "tripod schematics" +msgid "The Guru Granth Sahib" +msgid_plural "copies of The Guru Granth Sahib" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for The Guru Granth Sahib #: lang/json/BOOK_from_json.py -msgid "" -"Bearing the logo of Honda, those are assembly plans, design specs, and " -"technical drawings for the tripod. Most of this is useless to you, but you " -"could use the assembly plans to re-assemble the robot from salvaged parts." +msgid "A single-volume copy of the central religious texts of Sikhism." msgstr "" #: lang/json/BOOK_from_json.py -msgid "landfall survival manual" -msgid_plural "landfall survival manuals" +msgid "Hadith" +msgid_plural "copies of Hadith" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for landfall survival manual +#. ~ Description for Hadith #: lang/json/BOOK_from_json.py msgid "" -"A small folio indicating how to best utilize the equipment of your landfall " -"survival kit during an emergency. Its first page urges you to remain calm, " -"and to consult your escape pod's control console for further instructions." +"A Muslim religious text containing an account of the sayings and actions of " +"the prophet Muhammad." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Cyrus Whateley's Notes on Repurposing mi-go victims" -msgid_plural "copies of Cyrus Whateley's Notes" +msgid "Principia Discordia" +msgid_plural "copies of Principia Discordia" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cyrus Whateley's Notes on Repurposing mi-go victims +#. ~ Description for Principia Discordia #: lang/json/BOOK_from_json.py msgid "" -"A folio of notes written by a madman. They seem to suggest ways to re-" -"animate the dead and create various affronts to the natural order." +"A book that embodies the main beliefs of Discordianism. It seems to " +"primarily concern chaos, and features a card in the back which informs you " +"that you are now a 'genuine and authorized Pope of Discordia'." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Dr Moreau and You" -msgid_plural "copies of Dr Moreau and You" +msgid "The Kojiki" +msgid_plural "copies of The Kojiki" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Dr Moreau and You +#. ~ Description for The Kojiki #: lang/json/BOOK_from_json.py msgid "" -"In what many considered a stunning example of poor taste and others " -"considered overt speciesism this text on the creation of Uplifted Animals " -"references a story about sapient animals killing their creator. Otherwise a" -" dry text about genetic modification." +"The oldest extant chronicle of Japan's myths and history, the stories " +"contained in the Kojiki are part of the inspiration behind Shinto practices." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Millyficent's Diary" -msgid_plural "copies of Millyficent's Diary" +msgid "The Book of Mormon" +msgid_plural "copies of The Book of Mormon" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Millyficent's Diary +#. ~ Description for The Book of Mormon #: lang/json/BOOK_from_json.py msgid "" -"A pocket-sized book filled to the margins with cramped handwriting and notes" -" on the biology of Mi-Go and other musings. It's hard to understand and " -"quite gruesome in some places and written in a shorthand or cipher in " -"others." +"The sacred text of the Latter Day Saint movement of Christianity, originally" +" published in 1830 by Joseph Smith." msgstr "" #: lang/json/BOOK_from_json.py -msgid "useful recipes for resistance" -msgid_plural "copies of useful recipes for resistance" +msgid "The Gospel of the Flying Spaghetti Monster" +msgid_plural "copies of The Gospel of the Flying Spaghetti Monster" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for useful recipes for resistance +#. ~ Description for The Gospel of the Flying Spaghetti Monster #: lang/json/BOOK_from_json.py msgid "" -"Recipes for Resistance is a collection of tales, strategies and recipes for " -"working against corporate rule. Very simple language is used in the recipes" -" but it drags out the explanations." +"A book that embodies the main beliefs of the Church of the Flying Spaghetti " +"Monster. It seems to involve a lot of pirates and some sort of invisible " +"drunken monster made of pasta." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Working in Boreal Conditions and beyond" -msgid_plural "copies of Working in Boreal Conditions and beyond" +msgid "Quran" +msgid_plural "copies of Quran" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Working in Boreal Conditions and beyond +#. ~ Description for Quran #: lang/json/BOOK_from_json.py msgid "" -"A corporate manual for conditions of inhospitable cold. It includes " -"instructions for building devices and substances that will aid in survival " -"in extreme weather or even the lack thereof." +"An English translation of the Muslim book of holy scriptures, with " +"explanatory notes and commentaries to aid in understanding." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Unusual Ammunitions of the Corporations" -msgid_plural "copies of Unusual Ammunitions of the Corporations" +msgid "The Satanic Bible" +msgid_plural "copies of The Satanic Bible" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Unusual Ammunitions of the Corporations +#. ~ Description for The Satanic Bible #: lang/json/BOOK_from_json.py msgid "" -"A lab book dedicated to reverse engineering various ammunitions found " -"throughout the solar system. Written in a format to allow barely trained " -"technicians to *safely* replicate these rounds." +"A collection of essays, observations, and rituals published by Anton LaVey " +"in 1969." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Applications of Salus IV Lichen" -msgid_plural "copies of Applications of Salus IV Lichen" +msgid "Dianetics" +msgid_plural "copies of Dianetics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Applications of Salus IV Lichen -#: lang/json/BOOK_from_json.py -msgid "" -"A sheaf of notes detailing some species of lichen. Most of the information " -"is useless to you except for the fact that the majority of Salus IV " -"lifeform's metabolism rely on a macronutrient that acts like a neurotoxin " -"for humans. One useful note is a detailed procedure to neutralize said " -"neurotoxin." -msgstr "" - -#: lang/json/BOOK_from_json.py -msgid "USMC M1014 technical manual" -msgid_plural "USMC M1014 technical manuals" -msgstr[0] "технічний посібник КМПС М1014" -msgstr[1] "технічний посібник КМПС М1014" -msgstr[2] "технічні посібники КМПС М1014" -msgstr[3] "технічні посібники КМПС М1014" - -#. ~ Description for USMC M1014 technical manual +#. ~ Description for Dianetics #: lang/json/BOOK_from_json.py msgid "" -"A pocket-sized book printed in 2000 by the United States Marine Corps for " -"official use. It describes the operation, repair, and cleaning of the " -"Benilli M1014 shotgun. Though specific to the M4, it can provide a wealth " -"of information to the trained eye." +"This book is the canonical text of Scientology. Written by a science " +"fiction author, it contains self-improvement techniques and musings on " +"psychology called Dianetics." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Black Powder to Berettas" -msgid_plural "copies of Black Powder to Berettas" +msgid "The Book of the SubGenius" +msgid_plural "copies of The Book of the SubGenius" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Black Powder to Berettas +#. ~ Description for The Book of the SubGenius #: lang/json/BOOK_from_json.py msgid "" -"This hardcover book, aimed at the gun nut, provides an illustrated, concise " -"history of the handgun throughout history, including technical " -"specifications and use techniques. It's difficult to follow without a " -"passing knowledge in pistols, but an experienced handgun user could glean " -"much from it." +"A book about the Church of the SubGenius. It seems to involve a salesman " +"named J. R. \"Bob\" Dobbs and a concept called 'slack'." msgstr "" #: lang/json/BOOK_from_json.py -msgid "America's Rifle" -msgid_plural "copies of America's Rifle" +msgid "The Sutras of the Buddha" +msgid_plural "copies of The Sutras of the Buddha" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for America's Rifle +#. ~ Description for The Sutras of the Buddha #: lang/json/BOOK_from_json.py msgid "" -"A history book penned by an anonymous author. Starting from its design by " -"John Garand and ending with the Vietnam War, it provides a detailed run-down" -" of the M1 Garand rifle's use throughout history as well as its design and " -"quirks with the weapon." +"A collection of discourses attributed to the Buddha and his close disciples." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Jane's Flamethrowers and Firestarters" -msgid_plural "copies of Jane's Flamethrowers and Firestarters" +msgid "Talmud" +msgid_plural "copies of the Talmud" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Jane's Flamethrowers and Firestarters -#: lang/json/BOOK_from_json.py -msgid "" -"A detailed, full-colored guide to flamethrowers, incendiary weapons, and " -"napalm. It builds off of information provided in its sister book, Jane's " -"Mortars and Rocket Launchers, and so it's mostly incomprehensible to anyone " -"without prior knowledge." -msgstr "" - -#. ~ Description for children's book -#: lang/json/BOOK_from_json.py -msgid "" -"A little book for little readers. The colorful cartoon characters and sweet" -" stories contained herein belong to a different time, before the sky grew " -"dark and the aliens arrived." -msgstr "" - -#. ~ Description for TIME magazine -#. ~ Description for US Weekly -#: lang/json/BOOK_from_json.py -msgid "" -"Current events concerning a bunch of people who're all dead now - or working" -" for them." -msgstr "" - -#. ~ Description for Zombie Survival Guide +#. ~ Description for Talmud #: lang/json/BOOK_from_json.py msgid "" -"While this seems like it would be at least partially useful in this " -"situation, the sheer amount of speculative fiction present makes it " -"practically useless. What the hell is a mi-go? Aren't triffids from some " -"ancient movie?" +"One of the central texts of Rabbinic Judaism, the Talmud expounds upon the " +"Hebrew Bible with teachings and opinions of thousands of rabbis." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Kiernan's notes" -msgid_plural "copies of Kiernan's notes" +msgid "Tanakh" +msgid_plural "copies of Tanakh" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Kiernan's notes +#. ~ Description for Tanakh #: lang/json/BOOK_from_json.py msgid "" -"The voluminous notes of an obviously talented paleontologist, dedicated " -"biologist, and amateur author. These notes jump from such topics as fossil " -"digs, science fiction stories, also strangely enough notes on dinosaur " -"biology and potential hybridization efforts." +"A single-volume book containing the complete canon of the Jewish Bible." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scorching Sirocco" -msgid_plural "Scorching Sirocco" +msgid "The Tripitaka" +msgid_plural "copies of The Tripitaka" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for The Tripitaka #: lang/json/BOOK_from_json.py -msgid "This book contains the teaching of the Desert Wind discipline." +msgid "" +"A collection of sacred Buddhist writings describing their canons of " +"scriptures." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Perfect Clarity of Mind and Body" -msgid_plural "Perfect Clarity of Mind and Body" +msgid "The Upanishads" +msgid_plural "copies of The Upanishads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for The Upanishads #: lang/json/BOOK_from_json.py -msgid "This book contains the teaching of the Diamond Mind discipline." +msgid "" +"A collection of sacred Hindu writings regarding the nature of reality and " +"describing the character and form of human salvation." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Book of Mudora" -msgid_plural "The Book of Mudora" +msgid "The Four Vedas" +msgid_plural "copies of The Four Vedas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Four Vedas #: lang/json/BOOK_from_json.py msgid "" -"A collection of ancient Hylian lore and stories. A section on historic " -"battles is bookmarked." +"A single volume containing all four Vedas, which are the oldest scriptures " +"of Hinduism." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Stormguard Warrior" -msgid_plural "Stormguard Warrior" +msgid "Hávamál" +msgid_plural "copies of Hávamál" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Hávamál #: lang/json/BOOK_from_json.py -msgid "This book contains the teaching of the Iron Heart discipline." +msgid "" +"An English translation of several Old Norse poems. The poems contain " +"proverbs and stories attributed to the god Odin, many transcribed from oral " +"history." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Life and Work of Tiger Sauer" -msgid_plural "The Life and Work of Tiger Sauer" +msgid "Duelist's Annual" +msgid_plural "Duelist's Annuals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for Duelist's Annual #: lang/json/BOOK_from_json.py msgid "" -"A biography of a combat cyborg agent detailing his philosophy and martial " -"art." +"An annual publication about fencing and dueling. There are many good " +"illustrations which describe proper technique and form." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pocket Monster Encyclopedia" -msgid_plural "Pocket Monster Encyclopedia" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "FM 23-25 Army bayonet manual" +msgid_plural "FM 23-25 Army bayonet manuals" +msgstr[0] "«Армійський посібник з багнетного бою FM 23-25»" +msgstr[1] "«Армійський посібник з багнетного бою FM 23-25»" +msgstr[2] "«Армійський посібник з багнетного бою FM 23-25»" +msgstr[3] "«Армійський посібник з багнетного бою FM 23-25»" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for FM 23-25 Army bayonet manual #: lang/json/BOOK_from_json.py -msgid "" -"This encyclopedia contains a detailed listing of the strengths and " -"techniques of various fictional monsters and how to apply them the in a real" -" fight." +msgid "A hefty military field manual about bayonet usage and combat theory." msgstr "" +"Здоровезний військовий польовий посібник з використання багнета та теорії " +"бою." #: lang/json/BOOK_from_json.py -msgid "Distant Horizon" -msgid_plural "Distant Horizon" +msgid "Spetsnaz Knife Techniques" +msgid_plural "copies of Spetsnaz Knife Techniques" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Spetsnaz Knife Techniques #: lang/json/BOOK_from_json.py -msgid "This book contains the teaching of the Setting Sun discipline." +msgid "A classic Soviet text on the art of attacking with a blade." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Jedi Holocrons: Form I" -msgid_plural "Jedi Holocrons: Form I" +msgid "Survival Under Atomic Attack" +msgid_plural "copies of Survival Under Atomic Attack" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Survival Under Atomic Attack #: lang/json/BOOK_from_json.py msgid "" -"This device contains the teachings of the first form of Jedi lightsaber " -"combat: Shii-Cho." +"A wordy and intricate guide to wilderness and urban survival in a worst-case" +" scenario. While filled with loads of useful information, the madman who " +"wrote this was a terrible writer, and gleaning knowledge from the rants is a" +" chore." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Shards of Granite" -msgid_plural "Shards of Granite" +msgid "Through the Lens" +msgid_plural "copies of Through the Lens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Through the Lens #: lang/json/BOOK_from_json.py -msgid "This book contains the teaching of the Stone Dragon discipline." +msgid "" +"A colorful digest devoted to backpacking and wilderness photography. The " +"photos are beautiful, though the terminology in the sections on " +"survivalcraft assume some proficiency." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Reaping Talons" -msgid_plural "Reaping Talons" +msgid "Alpha Male Quarterly" +msgid_plural "Alpha Male Quarterlies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Alpha Male Quarterly #: lang/json/BOOK_from_json.py -msgid "This book contains the teaching of the Tiger Claw discipline." +msgid "" +"This is a full-size glossy men's magazine. There's a brief article about " +"hiking and a list of simple wilderness survival tips somewhere in between " +"the photos of bikini-clad women and the gadget advertisements." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Spellcraft Theory" -msgid_plural "copies of Spellcraft Theory" +msgid "Outdoor Adventures" +msgid_plural "issues of Outdoor Adventures" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Spellcraft Theory +#. ~ Description for Outdoor Adventures #: lang/json/BOOK_from_json.py -msgid "A intermediate textbook on magical theories." +msgid "" +"A glossy magazine about surviving and hunting in the wilderness. There's an" +" exciting article about a bear attack in the back pages." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Basic Spellcraft Theory" -msgid_plural "copies of Basic Spellcraft Theory" +msgid "Pitching a Tent" +msgid_plural "copies of Pitching a Tent" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Basic Spellcraft Theory +#. ~ Description for Pitching a Tent #: lang/json/BOOK_from_json.py -msgid "A beginner textbook on magical theories." +msgid "A guide detailing the basics of woodsmanship and outdoor survival." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Black Dragons: Swamp Ruins" -msgid_plural "copies of Black Dragons: Swamp Ruins" +msgid "Pocket Survival Guide" +msgid_plural "copies of Pocket Survival Guide" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Black Dragons: Swamp Ruins +#. ~ Description for Pocket Survival Guide #: lang/json/BOOK_from_json.py 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 pocket-sized leather-bound survival guide combines a wealth of concise " +"information with simple to follow instructions and easy to read " +"illustrations." msgstr "" #: lang/json/BOOK_from_json.py -msgid "A Comprehensive Analysis on Black Dragons" -msgid_plural "copies of A Comprehensive Analysis on Black Dragons" +msgid "Autobiography of a Mountain Man" +msgid_plural "copies of Autobiography of a Mountain Man" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for A Comprehensive Analysis on Black Dragons +#. ~ Description for Autobiography of a Mountain Man #: lang/json/BOOK_from_json.py msgid "" -"This book painstakingly delves into the history of black dragons, gruesomely" -" detailing their acts, the cults that worship them, and those that oppose " -"them. In its pages are some alchemical formulae that can be concocted using" -" the remains of dead black dragons." +"An amusing historical novel filled with detailed descriptions of surviving " +"in the wild, potentially containing great insights for an experienced " +"outdoorsman." msgstr "" #: lang/json/BOOK_from_json.py -msgid "A Beginner's Guide to Alchemy" -msgid_plural "copies of A Beginner's Guide to Alchemy" +msgid "Outdoor Survival Guide" +msgid_plural "copies of Outdoor Survival Guide" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for A Beginner's Guide to Alchemy +#. ~ Description for Outdoor Survival Guide #: lang/json/BOOK_from_json.py -msgid "A paperback tome for the art of liquid magic, alcohol not included." +msgid "" +"A thick soft-cover book filled with vital information about surviving in the" +" wild, aimed at the experienced backpacker." msgstr "" #: lang/json/BOOK_from_json.py -msgid "A Soulbinder's Guide to Necromancy" -msgid_plural "copies of A Soulbinder's Guide to Necromancy" +msgid "Introduction to Plant Biology" +msgid_plural "copies of Introduction to Plant Biology" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for A Soulbinder's Guide to Necromancy +#. ~ Description for Introduction to Plant Biology #: lang/json/BOOK_from_json.py msgid "" -"A paperback tome for the art of binding undead creatures' souls to dolls, " -"along with emulating their healing factor." +"A college-level textbook about plants of all shapes and sizes. Covers a " +"wide range of subjects, from horticulture to the identification of tropical" +" plants. As such, it is of limited practical use in your current situation." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Magitek Illustrated" -msgid_plural "copies of Magitek Illustrated" +msgid "The Wonderful World of Arthropodology" +msgid_plural "copies of The Wonderful World of Arthropodology" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Magitek Illustrated +#. ~ Description for The Wonderful World of Arthropodology #: lang/json/BOOK_from_json.py 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 three-volume doorstopper introducing the whole breadth of modern " +"arthropodology, beginning with a lengthy section on the comparative anatomy " +"of the described taxa. The authors somehow manage to maintain a gushingly " +"enthusiastic tone, even as they describe the grisly effects of arthropod " +"venoms or the mating habits of horseshoe crabs. Given the curious lack of " +"man-sized wasps in the illustrations, you have to wonder how much of the " +"contents is still applicable." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Weapons of Asgard and Beyond" -msgid_plural "copies of The Weapons of Asgard and Beyond" +msgid "Natural Remedies of New England" +msgid_plural "copies of Natural Remedies of New England" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Weapons of Asgard and Beyond +#. ~ Description for Natural Remedies of New England #: lang/json/BOOK_from_json.py 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." +"A leather bound manuscript, it features native herbal remedies with hand " +"colored illustrations of each plant." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Cooking with Poison" -msgid_plural "copies of Cooking with Poison" +msgid "Swim Planet" +msgid_plural "issues of Swim Planet" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Cooking with Poison +#. ~ Description for Swim Planet #: lang/json/BOOK_from_json.py -msgid "" -"A leatherbound book with an embossed cauldron on the cover. Inside it " -"describes ways to purify food magically." +msgid "The world's leading resource about aquatic sports." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Metals of Legend" -msgid_plural "copies of Metals of Legend" +msgid "Water Survival Training Field Manual" +msgid_plural "copies of Water Survival Training Field Manual" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Metals of Legend +#. ~ Description for Water Survival Training Field Manual #: lang/json/BOOK_from_json.py 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 commercially produced survival guide that details swimming and deep water " +"survival techniques tailored to emergency scenarios." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Protection from Magical Beasts" -msgid_plural "copies of Protection from Magical Beasts" +msgid "Boston AnimeCon magazine" +msgid_plural "Boston AnimeCon magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Protection from Magical Beasts +#. ~ Description for Boston AnimeCon magazine #: lang/json/BOOK_from_json.py 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 short magazine printed as an advertisement for the now canceled Boston " +"AnimeCon. A few costume ideas are intermixed with miscellaneous information" +" about the event." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The art of Enchantment" -msgid_plural "copies of The art of Enchantment" +msgid "Beauty Magazine" +msgid_plural "Beauty Magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The art of Enchantment +#. ~ Description for Beauty Magazine #: lang/json/BOOK_from_json.py -msgid "A paperback tome on the art of imbuing items with magic properties." +msgid "" +"This is a full-size glossy women's magazine. There are a few simple " +"patterns and basic sewing tips somewhere in between the fashion photos and " +"the makeup advertisements." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Spell Scroll" -msgid_plural "Spell Scrolls" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/BOOK_from_json.py -msgid "Scroll of Crystallize Mana" -msgid_plural "Scrolls of Crystallize Mana" +msgid "Sew Awesome Monthly" +msgid_plural "Sew Awesome Monthlies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Crystallize Mana +#. ~ Description for Sew Awesome Monthly #: lang/json/BOOK_from_json.py msgid "" -"A proper wizard is always prepared, crystallize your mana for the future!" +"A well presented monthly magazine all about knitting, crocheting, and " +"needlepoint. Filled with ideas and project patterns." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Dark Sight" -msgid_plural "Scrolls of Dark Sight" +msgid "Sew What? Clothing!" +msgid_plural "copies of Sew What? Clothing!" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Dark Sight +#. ~ Description for Sew What? Clothing! #: lang/json/BOOK_from_json.py -msgid "" -"The darkness holds no secrets for the arcane. Adjust your sight to see in " -"perfect darkness!" +msgid "A colorful book about tailoring." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Invisibility" -msgid_plural "Scrolls of Invisibility" +msgid "clothing designer's portfolio" +msgid_plural "clothing designer's portfolios" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Invisibility +#. ~ Description for clothing designer's portfolio #: lang/json/BOOK_from_json.py msgid "" -"The light can not interact with you unless you want it to. Become " -"invisible!" +"A leather bound portfolio that once belonged to a clothing designer. Filled" +" with sketches and notes, a skilled tailor could learn a lot from this " +"volume." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Obfuscated Body" -msgid_plural "Scrolls of Obfuscated Body" +msgid "Traditional Japanese Kimono" +msgid_plural "copies of Traditional Japanese Kimono" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Obfuscated Body +#. ~ Description for Traditional Japanese Kimono #: lang/json/BOOK_from_json.py -msgid "" -"A magical aura distorts light around your body, making it easier to dodge " -"enemy attacks." +msgid "An illustrated textbook on the crafting of Japanese traditional garb." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Holographic Transposition" -msgid_plural "Scrolls of Holographic Transposition" +msgid "Friendly, Humane Fashion" +msgid_plural "copies of Friendly, Humane Fashion" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Holographic Transposition -#. ~ Description for Holographic Transposition -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -#: lang/json/SPELL_from_json.py +#. ~ Description for Friendly, Humane Fashion +#: lang/json/BOOK_from_json.py 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?" +"An educational book detailing the uses of fake fur, as well as its benefits " +"and disadvantages. The prose is rather passionate, and a disclaimer on the " +"cover proudly states that the book is printed and distributed by the Gryphon" +" Animal Rights Organization." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Smite" -msgid_plural "Scrolls of Smite" +msgid "Sewing Techniques for Designers" +msgid_plural "copies of Sewing Techniques for Designers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Smite -#. ~ Description for Smite -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Sewing Techniques for Designers +#: lang/json/BOOK_from_json.py msgid "" -"Evil has become pervasive throughout the world. Let your power be the light" -" that shines in the darkness!" +"A massive, hardbound book full of a wealth of information for the " +"professional clothing designer." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Life Conversion" -msgid_plural "Scrolls of Life Conversion" +msgid "Ye Scots Beuk o Tailorin'" +msgid_plural "copies of Ye Scots Beuk o Tailorin'" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Life Conversion -#. ~ Description for Life Conversion -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Ye Scots Beuk o Tailorin' +#: lang/json/BOOK_from_json.py msgid "" -"You channel your life force itself into your spiritual energy. You spend hp" -" to regain mana." +"A translated Gaelic book from Scotland. While boring to read due to its " +"technical tone, it provides insights into Scottish culture and information " +"about tailoring." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Mind Over Pain" -msgid_plural "Scrolls of Mind Over Pain" +msgid "Dieselpunk Designs" +msgid_plural "copies of Dieselpunk Designs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Mind Over Pain -#. ~ Description for Mind over Pain -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Dieselpunk Designs +#: lang/json/BOOK_from_json.py msgid "" -"With an intense ritual that resembles crossfit, you manage to put some of " -"your pain at bay." +"A large, leatherbound book containing a number of leather and rubber pieces " +"for the fashionable dieselpunk." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Baleful Polymorph" -msgid_plural "Scrolls of Baleful Polymorph" +msgid "Diskobolus" +msgid_plural "issues of Diskobolus" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Baleful Polymorph -#. ~ Description for Baleful Polymorph -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Transform your enemies into frogs." +#. ~ Description for Diskobolus +#: lang/json/BOOK_from_json.py +msgid "A biannual magazine devoted to the art and science of discus-throwing." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Summon Zombie" -msgid_plural "Scrolls of Summon Zombie" +msgid "The Complete Guide to Pitching" +msgid_plural "copies of The Complete Guide to Pitching" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Summon Zombie -#. ~ Description for Summon Zombie -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for The Complete Guide to Pitching +#: lang/json/BOOK_from_json.py 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." +"A detailed guide for baseball pitchers that combines time-tested techniques " +"and information mixed with a common sense approach to pitching." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Summon Skeleton" -msgid_plural "Scrolls of Summon Skeleton" +msgid "How to Trap Anything" +msgid_plural "copies of How to Trap Anything" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Summon Skeleton -#. ~ Description for Summon Skeleton -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for How to Trap Anything +#: lang/json/BOOK_from_json.py 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." +"A worn manual that describes how to set and disarm a wide variety of traps." msgstr "" +"Замизганий посібник, що описує як встановлювати і знешкоджувати різноманітні" +" пастки." #: lang/json/BOOK_from_json.py -msgid "Scroll of Summon Floating Disk" -msgid_plural "Scrolls of Summon Floating Disk" +msgid "Trapper's Life" +msgid_plural "issues of Trapper's Life" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Summon Floating Disk -#. ~ Description for Summon floating disk -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Summons a floating disk that is sworn to carry your burdens." -msgstr "" - +#. ~ Description for Trapper's Life #: lang/json/BOOK_from_json.py -msgid "Scroll of Summon Decayed Pouncer" -msgid_plural "Scrolls of Summon Decayed Pouncer" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Scroll of Summon Decayed Pouncer -#. ~ Description for Summon Decayed Pouncer -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py 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." +"An in-depth magazine about trapping game. There are lots of articles and " +"diagrams that explain simple trap designs." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Cure Light Wounds" -msgid_plural "Scrolls of Cure Light Wounds" +msgid "The Modern Trapper" +msgid_plural "copies of The Modern Trapper" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Cure Light Wounds -#. ~ Description for Cure Light Wounds -#. ~ Description for Jury Rig -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -#: lang/json/SPELL_from_json.py -msgid "Heals a little bit of damage on the target." +#. ~ Description for The Modern Trapper +#: lang/json/BOOK_from_json.py +msgid "An extensive volume that details numerous methods of trapping game." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Pain Split" -msgid_plural "Scrolls of Pain Split" +msgid "FM 20-32 Mine/Countermine Operations manual" +msgid_plural "copies of FM 20-32 Mine/Countermine Operations manual" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Pain Split -#. ~ Description for Pain Split -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Evens out damage among your limbs." +#. ~ Description for FM 20-32 Mine/Countermine Operations manual +#: lang/json/BOOK_from_json.py +msgid "" +"A hefty military field manual about mine-warfare principles, the mechanics " +"of different types of mines/IED's, and countermine operations." msgstr "" +#. ~ The spelling is intentionally archaic, as this form is commonly used in +#. the titles of books. #: lang/json/BOOK_from_json.py -msgid "Scroll of Vicious Tentacle" -msgid_plural "Scrolls of Vicious Tentacle" +msgid "The Compleat Trapper" +msgid_plural "copies of The Compleat Trapper" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Vicious Tentacle -#. ~ Description for Vicious Tentacle -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for The Compleat Trapper +#: lang/json/BOOK_from_json.py 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." +"An in-depth book about trapping game animals, covering methods both modern " +"and ancient." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Grotesque Enhancement" -msgid_plural "Scrolls of Grotesque Enhancement" +msgid "The Trapper's Companion" +msgid_plural "copies of The Trapper's Companion" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Grotesque Enhancement -#. ~ Description for Grotesque Enhancement -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for The Trapper's Companion +#: lang/json/BOOK_from_json.py msgid "" -"A spell that warps your body in alien ways to increase your physical " -"abilities and strength." +"A folksy guide to trapping wild game using time-tested methods. A bit in-" +"depth for the beginner, it can provide a wealth of information to a " +"knowledgeable trapper." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Acidic Spray" -msgid_plural "Scrolls of Acidic Spray" +msgid "Boxing Monthly" +msgid_plural "Boxing Monthlies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Acidic Spray -#. ~ Description for Acidic Spray -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Boxing Monthly +#: lang/json/BOOK_from_json.py 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." +"An exciting monthly magazine about boxing. There are lots of large, " +"colorful photos of pugilistic exploits." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Flesh Pouch" -msgid_plural "Scrolls of Flesh Pouch" +msgid "101 Wrestling Moves" +msgid_plural "copies of 101 Wrestling Moves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Flesh Pouch -#. ~ Description for Flesh Pouch -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for 101 Wrestling Moves +#: lang/json/BOOK_from_json.py msgid "" -"This spell grows a large pouch out of your skin on your back, allowing you " -"to store your gear in it." +"It seems to be a wrestling manual, poorly photocopied and released on " +"spiral-bound paper. Still, there are lots of useful tips for unarmed " +"combat." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Conjure Bonespear" -msgid_plural "Scrolls of Conjure Bonespear" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "children's book" +msgid_plural "children's books" +msgstr[0] "дитяча книжка" +msgstr[1] "дитячих книжки" +msgstr[2] "дитячих книжок" +msgstr[3] "дитяча книжка" -#. ~ Description for Scroll of Conjure Bonespear -#. ~ Description for Conjure Bonespear -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for children's book +#: lang/json/BOOK_from_json.py msgid "" -"This spell creates a long shaft of bone with a wicked point and blades along" -" its length." +"A little book for little readers. The colorful cartoon characters and sweet" +" stories contained herein belong to a different time, before the dead walked" +" and the world moved on." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Megablast" -msgid_plural "Scrolls of Megablast" +msgid "book of fairy tales" +msgid_plural "books of fairy tales" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Megablast -#. ~ Description for Megablast -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for book of fairy tales +#: lang/json/BOOK_from_json.py msgid "" -"You always wanted to fire energy beams like in the animes you watched as a " -"kid. Now you can!" +"An amusing collection of folklore featuring the usual cast of fairies, " +"goblins, and trolls." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Magical Light" -msgid_plural "Scrolls of Magical Light" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Scroll of Magical Light -#. ~ Description for Magical Light -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Creates a magical light." +msgid "" +"This fairy tale is about a wolf who eats so much salted meat she becomes " +"trapped in the butcher's cellar." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Blinding Flash" -msgid_plural "Scrolls of Blinding Flash" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Scroll of Blinding Flash -#. ~ Description for Blinding Flash -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Blind enemies for a short time with a sudden, dazzling light. Higher levels" -" deal slightly higher damage." +"In this traditional story of beastly intrigue a clever fox convinces an " +"elderly lion to kill a derogatory wolf." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Ethereal Grasp" -msgid_plural "Scrolls of Ethereal Grasp" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Scroll of Ethereal Grasp -#. ~ Description for Ethereal Grasp -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A mass of spectral hands emerge from the ground, slowing everything in " -"range. Higher levels allow a bigger AoE, and longer effect." +"This is an illustrated fairy tale book about a conversation between a mouse " +"and a cat." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Aura of Protection" -msgid_plural "Scrolls of Aura of Protection" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Scroll of Aura of Protection -#. ~ Description for Aura of Protection -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Encases your whole body in a magical aura that protects you from the " -"environment." +"This illustrated fairy tale relates how a city mouse did visit his cousin in" +" the country, and how each regarded the other's quality of life." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Vegetative Grasp" -msgid_plural "Scrolls of Vegetative Grasp" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A fable in which the jackal wins the day via clever foolishness." +msgstr "" -#. ~ Description for Scroll of Vegetative Grasp -#. ~ Description for Vegetative Grasp -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#: lang/json/BOOK_from_json.py 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." +"A slave mistakenly wanders into a lion's den - thus begins a fable which " +"demonstrates mutual dependence regardless of size or status." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Root Strike" -msgid_plural "Scrolls of Root Strike" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Scroll of Root Strike -#. ~ Description for Root Strike -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This spell causes roots to spear out the ground and stab into your foes in " -"an arc, impaling them." +"An amusing collection of stories featuring \"Goldilocks and The Three " +"Bears\" on the cover." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Wooden Shaft" -msgid_plural "Scrolls of Wooden Shaft" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a well illustrated fairy tale about a war between the birds and the " +"beasts, with particulars on the wartime conduct and eventual fate of the " +"bat." +msgstr "" -#. ~ Description for Scroll of Wooden Shaft -#. ~ Description for Wooden Shaft -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#: lang/json/BOOK_from_json.py msgid "" -"This spell creates a projectile of hardwood that shoots forth from the " -"caster's hand at high speed to stab into an enemy." +"This book, titled \"The Rattlesnake's Vengeance\" is a collection of " +"Cherokee myths and legends. \"285D\" is hand-written in pencil on the title" +" page." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Nature's Bow" -msgid_plural "Scrolls of Nature's Bow" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This fairy tale book is a regional variant of \"Jack and the Beanstalk.\"" +msgstr "" -#. ~ Description for Scroll of Nature's Bow -#. ~ Description for Nature's Bow -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#: lang/json/BOOK_from_json.py msgid "" -"This spell conjures a magical wooden recurve bow that fires endless arrows " -"for as long as it lasts." +"This fairy tale book is entitled \"Little Red Cap\". It details a red-" +"cloaked child's various encounters with talking wolves." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Nature's Trance" -msgid_plural "Scrolls of Nature's Trance" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A collection of ghost stories warning about the dangers of stealing from the" +" dead." +msgstr "" -#. ~ Description for Scroll of Nature's Trance -#. ~ Description for Nature's Trance -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#: lang/json/BOOK_from_json.py msgid "" -"Your connection to living things allows you to go into a magical trance. " -"This allows you to recover fatigue quickly in exchange for mana." +"An Irish fairy tale in which a Celtic poet marries a princess who has been " +"cursed with the head of a pig." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Bag of Cats" -msgid_plural "Scrolls of Bag of Cats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A book of Italian fairy tales translated into English. The cover features " +"an orange fairy juggling a lemon, a lime, and a tangerine." +msgstr "" -#. ~ Description for Scroll of Bag of Cats -#. ~ Description for Bag of Cats -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Are you the crazy cat lady?" +#: lang/json/BOOK_from_json.py +msgid "A book of fables about people who change into birds." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Summon Wolf" -msgid_plural "Scrolls of Summon Wolf" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This compendium of amusing folk tales about the devil is titled \"Hell's " +"Kettle: Legends of the Devil.\"" +msgstr "" -#. ~ Description for Scroll of Summon Wolf #: lang/json/BOOK_from_json.py -msgid "Call to the wild for aid from some wolves." +msgid "" +"This charming book of Swedish fables is titled, \"The Glass Mountain and the" +" Princess.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Stonefist" -msgid_plural "Scrolls of Stonefist" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This is a collection of fairy tale stories warning against the consequences " +"of extreme greed." +msgstr "" -#. ~ Description for Scroll of Stonefist -#. ~ Description for Stonefist -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#: lang/json/BOOK_from_json.py msgid "" -"Encases your arms and hands in a sheath of magical stone, you can punch and " -"defend yourself with it in melee combat." +"This fable book is entitled, \"The Rabbit Herd.\" Inside are woodcut " +"illustrations of a peasant boy playing his flute for a mob of mischievous " +"hares." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Seismic Stomp" -msgid_plural "Scrolls of Seismic Stomp" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This book is titled, \"The Thieving Pot: Folktales of the Arab World.\"" +msgstr "" -#. ~ Description for Scroll of Seismic Stomp -#. ~ Description for Seismic Stomp -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#: lang/json/BOOK_from_json.py msgid "" -"Focusing mana into your leg, you stomp your foot and send out a shockwave, " -"knocking enemies around you onto the ground." +"This is a book of legends collected by Traveller Johnny Cassidy in the " +"1960s." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Stone's Endurance" -msgid_plural "Scrolls of Stone's Endurance" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A book by the Brothers Grimm titled, \"Eve's Unequal Children.\"" +msgstr "" -#. ~ Description for Scroll of Stone's Endurance -#. ~ Description for Stone's Endurance -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#: lang/json/BOOK_from_json.py msgid "" -"You focus on the stones beneath you and draw from their agelessness. Your " -"mana is converted to stamina." +"This book of fables expands upon the legend of the Seven Sleepers of " +"Ephesus." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Shardspray" -msgid_plural "Scrolls of Shardspray" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"In this fairy tale a strong man frightens an ogre by squeezing water out of " +"a stone." +msgstr "" -#. ~ Description for Scroll of Shardspray -#. ~ Description for Shardspray -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#: lang/json/BOOK_from_json.py msgid "" -"This spell projects a wide spray of sharp metal shards, cutting into your " -"foes and friends alike." +"This book of rustic folk tales bears the title: \"How to Shout Down the " +"Devil.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Piercing Bolt" -msgid_plural "Scrolls of Piercing Bolt" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"The title of this book is \"Village Folk-tales of Ceylon.\" It includes " +"fables about logical errors and foolish misjudgements of the Kadambawa men." +msgstr "" -#. ~ Description for Scroll of Piercing Bolt -#. ~ Description for Piercing Bolt -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#: lang/json/BOOK_from_json.py msgid "" -"This spell projects a piercing rod of conjured iron at those that dare " -"oppose you." +"This book of folk tales is titled, \"The Girl with the Ugly Name, and Other " +"Stories.\"" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Shardstorm" -msgid_plural "Scrolls of Shardstorm" +msgid "" +"Titled \"The Fleeing Pancake\", this collection of silly folk tales is " +"suitable for small children." +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "The Adorkable Girl" +msgid_plural "copies of Adorkable" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Shardstorm -#. ~ Description for Shardstorm -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for The Adorkable Girl +#: lang/json/BOOK_from_json.py msgid "" -"Creates an omnidirectional spray of razor sharp metal shards all around you." +"When a therapist's daughter transfers to a new school, she decides to change" +" her personality type. As her social life begins to blossom, can she " +"maintain a healthy boundary between her home life and her public persona?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Rockbolt" -msgid_plural "Scrolls of Rockbolt" +msgid "Becoming Jackson" +msgid_plural "copies of Becoming Jackson" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Rockbolt -#. ~ Description for Rockbolt -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Fires a conjured stone projectile at high velocity." +#. ~ Description for Becoming Jackson +#: lang/json/BOOK_from_json.py +msgid "" +"When Jackson gains the mystical talent to alter his appearance on command, " +"will he be able to recognize himself in his own mirror?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Point Flare" -msgid_plural "Scrolls of Point Flare" +msgid "Nothing Burned" +msgid_plural "copies of Nothing Burned" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Point Flare -#. ~ Description for Point Flare -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Causes an intense heat at the location, damaging the target." +#. ~ Description for Nothing Burned +#: lang/json/BOOK_from_json.py +msgid "" +"A teenage influencer becomes fast friends with someone who may or may not be" +" an actual demon." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Finger Firelighter" -msgid_plural "Scrolls of Finger Firelighter" +msgid "High and Low" +msgid_plural "copies of High and Low" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Finger Firelighter -#. ~ Description for Finger Firelighter -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for High and Low +#: lang/json/BOOK_from_json.py 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." +"In this work of adolescent fiction, a young gemini discovers that the " +"astrology section of his small town newspaper is eerily preminiscent. His " +"efforts to uncover the oracle reveal more than the stars could have " +"predicted." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Ice Spike" -msgid_plural "Scrolls of Ice Spike" +msgid "Fire When You See My Eyes" +msgid_plural "copies of Fire When" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Ice Spike -#. ~ Description for Ice Spike -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Fire When You See My Eyes +#: lang/json/BOOK_from_json.py msgid "" -"Causes jagged icicles to form in the air above the target, falling and " -"damaging it." +"In a cataclysmic future, advanced technology gives parents access to video " +"footage of every moment of their teenage children's lives." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Fireball" -msgid_plural "Scrolls of Fireball" +msgid "Peanut Butter Bruised" +msgid_plural "copies of Peanut Butter Bruised" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Fireball -#. ~ Description for Fireball -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Peanut Butter Bruised +#: lang/json/BOOK_from_json.py msgid "" -"You hurl a pea-sized glowing orb that when reaches its target or an obstacle" -" produces a pressure-less blast of searing heat." +"In this work of young adult fiction, a woman raised on food stamps falls in " +"love with a young cook. More importantly, she falls in love with the idea " +"of becoming a professional chef." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Cone of Cold" -msgid_plural "Scrolls of Cone of Cold" +msgid "Ready When You Are" +msgid_plural "copies of Ready When" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Cone of Cold -#. ~ Description for Cryokinetic blast -#. ~ Description for Cone of Cold -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -#: lang/json/SPELL_from_json.py -msgid "You blast a cone of frigid air toward the target." +#. ~ Description for Ready When You Are +#: lang/json/BOOK_from_json.py +msgid "" +"When three teenage girls ditch class to drive cross country together they " +"get a strong dose of life lessons on the road. This work of young adult " +"fiction explores how friendships evolve in early adulthood." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Burning Hands" -msgid_plural "Scrolls of Burning Hands" +msgid "Study of a Boy" +msgid_plural "copies of \"Study of a Boy\"" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Burning Hands -#. ~ Description for Burning Hands -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Study of a Boy +#: lang/json/BOOK_from_json.py msgid "" -"You're pretty sure you saw this in a game somewhere. You fire a short-range" -" cone of fire." +"A high school sophomore's personal journal is stolen and then leaked on " +"social media. When it goes viral he is forced simultaneously to contend " +"with both fame and betrayal." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Frost Spray" -msgid_plural "Scrolls of Frost Spray" +msgid "Summer Variables" +msgid_plural "copies of Summer Variables" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Frost Spray -#. ~ Description for Frost Spray -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Summer Variables +#: lang/json/BOOK_from_json.py msgid "" -"You're pretty sure you saw this in a game somewhere. You fire a short-range" -" cone of ice and cold." +"In this book written primarily for young adults, a woman's modest summer " +"internship results in an incredible discovery that attracts the attention of" +" unsavory elements." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Chilling Touch" -msgid_plural "Scrolls of Chilling Touch" +msgid "In a Dark Place" +msgid_plural "copies of Dark Place" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Chilling Touch -#. ~ Description for Chilling Touch -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Freezes the touched target with intense cold." +#. ~ Description for In a Dark Place +#: lang/json/BOOK_from_json.py +msgid "" +"Markia dreams about the future. Theo longs for the past. Together can they" +" find a way to live in the now?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Glide on Ice" -msgid_plural "Scrolls of Glide on Ice" +msgid "Betrayal Takes Two" +msgid_plural "copies of Betrayal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Glide on Ice -#. ~ Description for Glide on Ice -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Betrayal Takes Two +#: lang/json/BOOK_from_json.py msgid "" -"Encases your feet in a magical coating of ice, allowing you to glide along " -"smooth surfaces faster." +"This is a hard cover book for older teens. The two main characters pull a " +"cruel prank on their classmates, and are brought together both by their " +"frantic efforts to avoid being caught and their shared sense of guilt." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Hoary Blast" -msgid_plural "Scrolls of Hoary Blast" +msgid "coming of age novel" +msgid_plural "coming of age novels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Hoary Blast -#. ~ Description for Hoary Blast -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for coming of age novel +#: lang/json/BOOK_from_json.py msgid "" -"You project a glowing white crystal of ice and it explodes on impact into a " -"blossom of shattering cold." +"A classic tale about growing up, portraying one young man's funny and " +"poignant experiences with life, love, and sex." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Ice Shield" -msgid_plural "Scrolls of Ice Shield" +msgid "Pantheon: The Story of an Iranian Youth" +msgid_plural "copies of Pantheon" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Ice Shield -#. ~ Description for Ice Shield -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Pantheon: The Story of an Iranian Youth +#: lang/json/BOOK_from_json.py msgid "" -"Creates a magical shield of ice on your arm, you can defend yourself with it" -" in melee combat and use it to bash." +"A hard cover graphic novel about a young girl living in Iran during the " +"1980's, seeing the world change around her as Iraq invaded her country." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Frost Armor" -msgid_plural "Scrolls of Frost Armor" +msgid "original copy of Housefly" +msgid_plural "original copies of Housefly" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Frost Armor -#. ~ Description for Frost Armor -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Covers you in a thin layer of magical ice to protect you from harm." +#. ~ Description for original copy of Housefly +#: lang/json/BOOK_from_json.py +msgid "" +"The only copy of Housefly in existence - a long book about three individuals" +" drawn together by fate in the early 1800s to save their English town of " +"Victoria from a mysterious threat. You never got to publish it, but reading" +" it lets you forget the horrors of the Cataclysm, if only for a moment." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Shadow Field" -msgid_plural "Scrolls of Shadow Field" +msgid "Unofficial History of Salus IV Vol. 1" +msgid_plural "copies of Unofficial History of Salus IV Vol. 1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Shadow Field +#. ~ Description for Unofficial History of Salus IV Vol. 1 #: lang/json/BOOK_from_json.py -msgid "Cast a field of shadows." +msgid "" +"Welcome to Frozen Hell, an unofficial history of Salus IV by Bette Lapin. " +"Salus IV was founded in the early days of the Hyperspace Era as a joint " +"venture between Mercurial Genomics and a Soviet Design Bureau. At its " +"height several hundred years ago Salus IV had just over 110 million citizens" +" (including both uplifts and humans). However, that population had begun to " +"decline even before the Discontinuity as people migrated to planets that, " +"while more hostile to life during the earliest colonization phases than " +"Salus IV, were much simpler to terraform into a place more enjoyable by " +"human and uplift citizens." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Magic Missile" -msgid_plural "Scrolls of Magic Missile" +msgid "Unofficial History of Salus IV Vol. 2" +msgid_plural "copies of Unofficial History of Salus IV Vol. 2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Magic Missile -#. ~ Description for Magic Missile -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "I cast Magic Missile at the darkness!" +#. ~ Description for Unofficial History of Salus IV Vol. 2 +#: lang/json/BOOK_from_json.py +msgid "" +"Even during the Discontinuity Salus IV's population continued to drop as " +"there were easier places to live even in the Salus system - from honeycombed" +" asteroid habitats to domed cities with gorgeous views. Mercurial Genomics " +"was an early member of the nascent post-Discontinuity government efforts. " +"As a result of this membership, they have successfully reclaimed Salus IV in" +" the court system set up by ESCA. The Whately family, which runs Mercurial " +"Genomics, began leasing development and exploitation permits and allows the " +"establishment of minor UICA outposts within Salus IV. There is an official " +"citizen count of less than twenty thousand sentient beings, albeit mostly in" +" orbit. It is believed, however, that there are at least that many non-" +"citizen sentients spread amongst squatter, smuggler, pirate, and feral " +"uplift communities." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Phase Door" -msgid_plural "Scrolls of Phase Door" +msgid "Unofficial History of Salus IV Vol. 3" +msgid_plural "copies of Unofficial History of Salus IV Vol. 3" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Phase Door -#. ~ Description for Phase Door -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Teleports you in a random direction a short distance." +#. ~ Description for Unofficial History of Salus IV Vol. 3 +#: lang/json/BOOK_from_json.py +msgid "" +"The Salus system is what is called a hinge system for the new FTL travels. " +"This system contains a number of easy exit points to star systems that have " +"no other easy way to travel to each other than through a series of systems " +"with low to zero civilization in them. Salus at minimum has several " +"interstellar refueling points. These stations are often blind to each other" +" as the planets and other objects rotate around the sun. Mercurial seems to" +" have no interest in managing or protecting the traffic that flows through " +"the Salus system or in neighboring systems beyond the bare minimum effort " +"required by UICA. As a result of this neglect; victims of pirate attacks, " +"engine failure and other critical issues regularly limp to whatever safety " +"they can find in the Salus system. Unfortunately for many of them they will" +" crash land on Salus IV where there are few regular shuttles between its " +"scattered ports and the outside universe. As the locals are fond of saying " +"'Getting to Salus IV is hard, getting off may be impossible'." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Gravity Well" -msgid_plural "Scrolls of Gravity Well" +msgid "Nuclear Physics Made Easy" +msgid_plural "copies of Nuclear Physics Made Easy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Gravity Well -#. ~ Description for Gravity Well -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Nuclear Physics Made Easy +#: lang/json/BOOK_from_json.py msgid "" -"Summons a well of gravity with the epicenter at the location. Deals bashing" -" damage to all creatures in the affected area." +"A book detailing the workings of state of the art atomic technology, and the" +" physics behind it." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Mana Blast" -msgid_plural "Scrolls of Mana Blast" +msgid "mealworm farm logbook" +msgid_plural "mealworm farm logbooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Mana Blast -#. ~ Description for Mana Blast -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "A blast of concentrated magical power that obliterates a large area." +#. ~ Description for mealworm farm logbook +#: lang/json/BOOK_from_json.py +msgid "" +"A binder containing detailed production logs from an industrial mealworm " +"farm. You could use its recordings to start your own farming operations." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Mana Bolt" -msgid_plural "Scrolls of Mana Bolt" +msgid "chicken walker schematics" +msgid_plural "chicken walker schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Mana Bolt -#. ~ Description for Mana Bolt -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "A bolt of magical power that only damages your foes." +#. ~ Description for chicken walker schematics +#: lang/json/BOOK_from_json.py +msgid "" +"Bearing the logo of Northrop, those are assembly plans, design specs, and " +"technical drawings for the chicken walker. Most of this is useless to you, " +"but you could use the assembly plans to re-assemble the robot from salvaged " +"parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Haste" -msgid_plural "Scrolls of Haste" +msgid "diamond press schematics" +msgid_plural "diamond press schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Haste -#. ~ Description for Haste -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for diamond press schematics +#: lang/json/BOOK_from_json.py msgid "" -"This spell gives you an enormous boost of speed lasting a short period of " -"time." +"Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " +"design specs, and technical drawings for the diamond press. Most of this is" +" useless to you, but you could use the assembly plans to re-assemble the " +"robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Mana Beam" -msgid_plural "Scrolls of Mana Beam" +msgid "nano forge schematics" +msgid_plural "nano forge schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Mana Beam -#. ~ Description for Mana Beam -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "A beam of focused magical power that damages any foes in its path." +#. ~ Description for nano forge schematics +#: lang/json/BOOK_from_json.py +msgid "" +"Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " +"design specs, and technical drawings for the nano forge. Most of this is " +"useless to you, but you could use the assembly plans to re-assemble the " +"robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Escape" -msgid_plural "Scrolls of Escape" +msgid "tank drone schematics" +msgid_plural "tank drone schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Escape -#. ~ Description for Escape -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for tank drone schematics +#: lang/json/BOOK_from_json.py msgid "" -"Teleports you in a random direction a medium distance, to help escape your " -"foes in dangerous situations." +"Bearing the logo of Northrop, those are assembly plans, design specs, and " +"technical drawings for the tank drone. Most of this is useless to you, but " +"you could use the assembly plans to re-assemble the robot from salvaged " +"parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Cat's Grace" -msgid_plural "Scrolls of Cat's Grace" +msgid "tripod schematics" +msgid_plural "tripod schematics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Cat's Grace -#. ~ Description for Cat's Grace -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "You become more graceful, agile, and coordinated." +#. ~ Description for tripod schematics +#: lang/json/BOOK_from_json.py +msgid "" +"Bearing the logo of Honda, those are assembly plans, design specs, and " +"technical drawings for the tripod. Most of this is useless to you, but you " +"could use the assembly plans to re-assemble the robot from salvaged parts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Eagle's Sight" -msgid_plural "Scrolls of Eagle's Sight" +msgid "landfall survival manual" +msgid_plural "landfall survival manuals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Eagle's Sight -#. ~ Description for Eagle's Sight -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "You gain the perception of an eagle." +#. ~ Description for landfall survival manual +#: lang/json/BOOK_from_json.py +msgid "" +"A small folio indicating how to best utilize the equipment of your landfall " +"survival kit during an emergency. Its first page urges you to remain calm, " +"and to consult your escape pod's control console for further instructions." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Ogre's Strength" -msgid_plural "Scrolls of Ogre's Strength" +msgid "Cyrus Whateley's Notes on Repurposing mi-go victims" +msgid_plural "copies of Cyrus Whateley's Notes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Ogre's Strength -#. ~ Description for Ogre's Strength -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "You gain the strength of an ogre." +#. ~ Description for Cyrus Whateley's Notes on Repurposing mi-go victims +#: lang/json/BOOK_from_json.py +msgid "" +"A folio of notes written by a madman. They seem to suggest ways to re-" +"animate the dead and create various affronts to the natural order." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Fox's Cunning" -msgid_plural "Scrolls of Fox's Cunning" +msgid "Dr Moreau and You" +msgid_plural "copies of Dr Moreau and You" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Fox's Cunning -#. ~ Description for Fox's Cunning -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "You become wily like a fox." +#. ~ Description for Dr Moreau and You +#: lang/json/BOOK_from_json.py +msgid "" +"In what many considered a stunning example of poor taste and others " +"considered overt speciesism this text on the creation of Uplifted Animals " +"references a story about sapient animals killing their creator. Otherwise a" +" dry text about genetic modification." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Shocking Lash" -msgid_plural "Scrolls of Shocking Lash" +msgid "Millyficent's Diary" +msgid_plural "copies of Millyficent's Diary" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Shocking Lash -#. ~ Description for Shocking Lash -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Millyficent's Diary +#: lang/json/BOOK_from_json.py msgid "" -"A quick burst of electricity strikes a target and possibly one other nearby." +"A pocket-sized book filled to the margins with cramped handwriting and notes" +" on the biology of Mi-Go and other musings. It's hard to understand and " +"quite gruesome in some places and written in a shorthand or cipher in " +"others." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Jolt" -msgid_plural "Scrolls of Jolt" +msgid "useful recipes for resistance" +msgid_plural "copies of useful recipes for resistance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Jolt -#. ~ Description for Jolt -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "A short-ranged fan of electricity shoots from your fingers." +#. ~ Description for useful recipes for resistance +#: lang/json/BOOK_from_json.py +msgid "" +"Recipes for Resistance is a collection of tales, strategies and recipes for " +"working against corporate rule. Very simple language is used in the recipes" +" but it drags out the explanations." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Lightning Bolt" -msgid_plural "Scrolls of Lightning Bolt" +msgid "Working in Boreal Conditions and beyond" +msgid_plural "copies of Working in Boreal Conditions and beyond" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Lightning Bolt -#. ~ Description for Lightning Bolt -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Working in Boreal Conditions and beyond +#: lang/json/BOOK_from_json.py msgid "" -"The goto spell for many Stormshapers, this iconic spell does just what you " -"expect: you shoot lightning from your fingertips. However, this lightning " -"is more directed than most lightning, and travels in a line through most " -"non-solid targets." +"A corporate manual for conditions of inhospitable cold. It includes " +"instructions for building devices and substances that will aid in survival " +"in extreme weather or even the lack thereof." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Windstrike" -msgid_plural "Scrolls of Windstrike" +msgid "Unusual Ammunitions of the Corporations" +msgid_plural "copies of Unusual Ammunitions of the Corporations" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Windstrike -#. ~ Description for Windstrike -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Unusual Ammunitions of the Corporations +#: lang/json/BOOK_from_json.py msgid "" -"A powerful blast of wind slams into anything in front of your outstretched " -"hand." +"A lab book dedicated to reverse engineering various ammunitions found " +"throughout the solar system. Written in a format to allow barely trained " +"technicians to *safely* replicate these rounds." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Windrunning" -msgid_plural "Scrolls of Windrunning" +msgid "Applications of Salus IV Lichen" +msgid_plural "copies of Applications of Salus IV Lichen" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Windrunning -#. ~ Description for Windrunning -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Applications of Salus IV Lichen +#: lang/json/BOOK_from_json.py msgid "" -"A magical wind pushes you forward as you move, easing your movements and " -"increasing speed." +"A sheaf of notes detailing some species of lichen. Most of the information " +"is useless to you except for the fact that the majority of Salus IV " +"lifeform's metabolism rely on a macronutrient that acts like a neurotoxin " +"for humans. One useful note is a detailed procedure to neutralize said " +"neurotoxin." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Call Stormhammer" -msgid_plural "Scrolls of Call Stormhammer" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "USMC M1014 technical manual" +msgid_plural "USMC M1014 technical manuals" +msgstr[0] "технічний посібник КМПС М1014" +msgstr[1] "технічний посібник КМПС М1014" +msgstr[2] "технічні посібники КМПС М1014" +msgstr[3] "технічні посібники КМПС М1014" -#. ~ Description for Scroll of Call Stormhammer -#. ~ Description for Call Stormhammer -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for USMC M1014 technical manual +#: lang/json/BOOK_from_json.py msgid "" -"Creates a crackling magical warhammer full of lightning to smite your foes " -"with, and of course, smash things to bits!" +"A pocket-sized book printed in 2000 by the United States Marine Corps for " +"official use. It describes the operation, repair, and cleaning of the " +"Benilli M1014 shotgun. Though specific to the M4, it can provide a wealth " +"of information to the trained eye." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Bless" -msgid_plural "Scrolls of Bless" +msgid "Black Powder to Berettas" +msgid_plural "copies of Black Powder to Berettas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Bless -#. ~ Description for Bless -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "A spell of blessing that gives you energy and boosts your abilities." +#. ~ Description for Black Powder to Berettas +#: lang/json/BOOK_from_json.py +msgid "" +"This hardcover book, aimed at the gun nut, provides an illustrated, concise " +"history of the handgun throughout history, including technical " +"specifications and use techniques. It's difficult to follow without a " +"passing knowledge in pistols, but an experienced handgun user could glean " +"much from it." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Holy Blade" -msgid_plural "Scrolls of Holy Blade" +msgid "America's Rifle" +msgid_plural "copies of America's Rifle" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Holy Blade -#. ~ Description for Holy Blade -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "This blade of light will cut through any evil it makes contact with!" +#. ~ Description for America's Rifle +#: lang/json/BOOK_from_json.py +msgid "" +"A history book penned by an anonymous author. Starting from its design by " +"John Garand and ending with the Vietnam War, it provides a detailed run-down" +" of the M1 Garand rifle's use throughout history as well as its design and " +"quirks with the weapon." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Spiritual Armor" -msgid_plural "Scrolls of Spiritual Armor" +msgid "Jane's Flamethrowers and Firestarters" +msgid_plural "copies of Jane's Flamethrowers and Firestarters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Spiritual Armor -#. ~ Description for Spiritual Armor -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Jane's Flamethrowers and Firestarters +#: lang/json/BOOK_from_json.py msgid "" -"Evil will not make it through your defenses if your faith is strong enough!" +"A detailed, full-colored guide to flamethrowers, incendiary weapons, and " +"napalm. It builds off of information provided in its sister book, Jane's " +"Mortars and Rocket Launchers, and so it's mostly incomprehensible to anyone " +"without prior knowledge." msgstr "" +#. ~ Description for children's book #: lang/json/BOOK_from_json.py -msgid "Scroll of Lamp" -msgid_plural "Scrolls of Lamp" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A little book for little readers. The colorful cartoon characters and sweet" +" stories contained herein belong to a different time, before the sky grew " +"dark and the aliens arrived." +msgstr "" -#. ~ Description for Scroll of Lamp -#. ~ Description for Lamp -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Creates a magical lamp." +#. ~ Description for TIME magazine +#. ~ Description for US Weekly +#: lang/json/BOOK_from_json.py +msgid "" +"Current events concerning a bunch of people who're all dead now - or working" +" for them." msgstr "" +#. ~ Description for Zombie Survival Guide #: lang/json/BOOK_from_json.py -msgid "Scroll of Manatricity" -msgid_plural "Scrolls of Manatricity" +msgid "" +"While this seems like it would be at least partially useful in this " +"situation, the sheer amount of speculative fiction present makes it " +"practically useless. What the hell is a mi-go? Aren't triffids from some " +"ancient movie?" +msgstr "" + +#: lang/json/BOOK_from_json.py +msgid "Kiernan's notes" +msgid_plural "copies of Kiernan's notes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Manatricity -#. ~ Description for Manatricity -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Kiernan's notes +#: lang/json/BOOK_from_json.py msgid "" -"You have found a way to convert your spiritual energy into power you can use" -" for your bionics." +"The voluminous notes of an obviously talented paleontologist, dedicated " +"biologist, and amateur author. These notes jump from such topics as fossil " +"digs, science fiction stories, also strangely enough notes on dinosaur " +"biology and potential hybridization efforts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Taze" -msgid_plural "Scrolls of Taze" +msgid "Scorching Sirocco" +msgid_plural "Scorching Sirocco" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Taze -#. ~ Description for Taze -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "" -"This spell creates a very short range bolt of electricity to shock your " -"foes." +#. ~ Description for Scorching Sirocco +#: lang/json/BOOK_from_json.py +msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Lesser Quantum Tunnel" -msgid_plural "Scrolls of Lesser Quantum Tunnel" +msgid "Perfect Clarity of Mind and Body" +msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Lesser Quantum Tunnel -#. ~ Description for Lesser Quantum Tunnel -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -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 " -"whole uncertainty thing as to where you come out. It leaves you a little " -"dazed on the other side as you reorient yourself." +#. ~ Description for Perfect Clarity of Mind and Body +#: lang/json/BOOK_from_json.py +msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Synaptic Stimulation" -msgid_plural "Scrolls of Synaptic Stimulation" +msgid "The Book of Mudora" +msgid_plural "The Book of Mudora" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Synaptic Stimulation -#. ~ Description for Synaptic Stimulation -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for The Book of Mudora +#: lang/json/BOOK_from_json.py msgid "" -"This spell stimulates the synapses in your brain beyond normal processing " -"speeds, giving you a large boost in mental processing capability, including " -"enhancing your reflexes, speed, and raw intellectual power. Use " -"responsibly!" +"A collection of ancient Hylian lore and stories. A section on historic " +"battles is bookmarked." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Laze" -msgid_plural "Scrolls of Laze" +msgid "Stormguard Warrior" +msgid_plural "Stormguard Warrior" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Laze -#. ~ Description for Laze -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "" -"You concentrate and release a focused beam of photons at a target, also " -"known as a laser." +#. ~ Description for Stormguard Warrior +#: lang/json/BOOK_from_json.py +msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Animated Blade" -msgid_plural "Scrolls of Animated Blade" +msgid "The Life and Work of Tiger Sauer" +msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Animated Blade -#. ~ Description for Animated Blade -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for The Life and Work of Tiger Sauer +#: lang/json/BOOK_from_json.py msgid "" -"This spell conjures flying animated blades that will cut your enemies down " -"to size. Into small pieces that is." +"A biography of a combat cyborg agent detailing his philosophy and martial " +"art." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Mirror Image" -msgid_plural "Scrolls of Mirror Image" +msgid "Pocket Monster Encyclopedia" +msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Mirror Image -#. ~ Description for Mirror Image -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Pocket Monster Encyclopedia +#: lang/json/BOOK_from_json.py msgid "" -"This spell manipulates light into barely tangible duplicates of a living " -"being, a magical hologram in short." +"This encyclopedia contains a detailed listing of the strengths and " +"techniques of various fictional monsters and how to apply them the in a real" +" fight." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Lightning Blast" -msgid_plural "Scrolls of Lightning Blast" +msgid "Distant Horizon" +msgid_plural "Distant Horizon" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Lightning Blast -#. ~ Description for Lightning Blast -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -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 " -"to fire off several quick ones in a row." +#. ~ Description for Distant Horizon +#: lang/json/BOOK_from_json.py +msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Necrotic Gaze" -msgid_plural "Scrolls of Necrotic Gaze" +msgid "Jedi Holocrons: Form I" +msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Necrotic Gaze -#. ~ Description for Necrotic Gaze -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Jedi Holocrons: Form I +#: lang/json/BOOK_from_json.py msgid "" -"You use the power of your own blood to imbue necrotic energy into your gaze," -" damaging the target you look at." +"This device contains the teachings of the first form of Jedi lightsaber " +"combat: Shii-Cho." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Purification Seed" -msgid_plural "Scrolls of Purification Seed" +msgid "Shards of Granite" +msgid_plural "Shards of Granite" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Purification Seed +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py -msgid "" -"You summon a gift of the earth which will purify water. Greater levels " -"yield greater numbers of seeds." +msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of X-ray Vision" -msgid_plural "Scrolls of X-ray Vision" +msgid "Reaping Talons" +msgid_plural "Reaping Talons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of X-ray Vision -#. ~ Description for X-ray Vision -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "" -"You fire a cone of X-rays that magically allow you to see that area for a " -"short time." +#. ~ Description for Reaping Talons +#: lang/json/BOOK_from_json.py +msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Optical Sneeze Beam" -msgid_plural "Scrolls of Optical Sneeze Beam" +msgid "Spellcraft Theory" +msgid_plural "copies of Spellcraft Theory" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Optical Sneeze Beam +#. ~ Description for Spellcraft Theory #: lang/json/BOOK_from_json.py -msgid "" -"You overcharge your internal batteries to send a semi-directed beam from " -"your face." +msgid "A intermediate textbook on magical theories." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Clairvoyance" -msgid_plural "Scrolls of Clairvoyance" +msgid "Basic Spellcraft Theory" +msgid_plural "copies of Basic Spellcraft Theory" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Clairvoyance -#. ~ Description for Clairvoyance -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "You close your eyes and the earth surrenders its secrets to you." +#. ~ Description for Basic Spellcraft Theory +#: lang/json/BOOK_from_json.py +msgid "A beginner textbook on magical theories." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Bleed" -msgid_plural "Scrolls of Bleed" +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Bleed -#. ~ Description for Bleed -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py msgid "" -"With a shout and a gesture, the target starts bleeding from old wounds." +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Lesser Banishment" -msgid_plural "Scrolls of Lesser Banishment" +msgid "Black Dragons: Swamp Ruins" +msgid_plural "copies of Black Dragons: Swamp Ruins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Lesser Banishment -#. ~ Description for Lesser Banishment -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Black Dragons: Swamp Ruins +#: lang/json/BOOK_from_json.py msgid "" -"Banish a monster to the lesser-known nether dimension. If a monster is more" -" powerful than you can handle, the spell drains your life force to make up " -"the difference." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Acid Resistance" -msgid_plural "Scrolls of Acid Resistance" +msgid "A Comprehensive Analysis on Black Dragons" +msgid_plural "copies of A Comprehensive Analysis on Black Dragons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Acid Resistance +#. ~ Description for A Comprehensive Analysis on Black Dragons #: lang/json/BOOK_from_json.py -msgid "This spell creates an invisible aura to protect you from acid." +msgid "" +"This book painstakingly delves into the history of black dragons, gruesomely" +" detailing their acts, the cults that worship them, and those that oppose " +"them. In its pages are some alchemical formulae that can be concocted using" +" the remains of dead black dragons." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Lightning Storm" -msgid_plural "Scrolls of Lightning Storm" +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] "" -#. ~ Description for Scroll of Lightning Storm +#. ~ Description for A Beginner's Guide to Alchemy #: lang/json/BOOK_from_json.py -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." +msgid "A paperback tome for the art of liquid magic, alcohol not included." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Sacrificial Regrowth" -msgid_plural "Scrolls of Sacrificial Regrowth" +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 Scroll of Sacrificial Regrowth -#. ~ Description for Sacrificial Regrowth -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for A Soulbinder's Guide to Necromancy +#: lang/json/BOOK_from_json.py 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." +"A paperback tome for the art of binding undead creatures' souls to dolls, " +"along with emulating their healing factor." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Sacrificial Healing" -msgid_plural "Scrolls of Sacrificial Healing" +msgid "Magitek Illustrated" +msgid_plural "copies of Magitek Illustrated" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Sacrificial Healing -#. ~ Description for Sacrificial Healing -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Magitek Illustrated +#: lang/json/BOOK_from_json.py msgid "" -"Channels some of the user's own life force into healing energy, for the sake" -" of ones allies." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Stoneskin" -msgid_plural "Scrolls of Stoneskin" +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 Scroll of Stoneskin -#. ~ Description for Stoneskin -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for The Weapons of Asgard and Beyond +#: lang/json/BOOK_from_json.py msgid "" -"Envelops your entire body in armor formed from living rock, encumbering yet " -"protective." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Pillar of Stone" -msgid_plural "Scrolls of Pillar of Stone" +msgid "Cooking with Poison" +msgid_plural "copies of Cooking with Poison" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Pillar of Stone -#. ~ Description for Pillar of Stone -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Cooking with Poison +#: lang/json/BOOK_from_json.py 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." +"A leatherbound book with an embossed cauldron on the cover. Inside it " +"describes ways to purify food magically." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Paralytic Dart" -msgid_plural "Scrolls of Paralytic Dart" +msgid "Metals of Legend" +msgid_plural "copies of Metals of Legend" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Paralytic Dart -#. ~ Description for Paralytic Dart -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Metals of Legend +#: lang/json/BOOK_from_json.py msgid "" -"Spits a warped needle of sinew and bone, carrying with it a sting that slows" -" your victim." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Visceral Projection" -msgid_plural "Scrolls of Visceral Projection" +msgid "Protection from Magical Beasts" +msgid_plural "copies of Protection from Magical Beasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Visceral Projection -#. ~ Description for Visceral Projection -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -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 "" - +#. ~ Description for Protection from Magical Beasts #: lang/json/BOOK_from_json.py -msgid "Scroll of Coagulant Weave" -msgid_plural "Scrolls of Coagulant Weave" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Scroll of Coagulant Weave -#. ~ Description for Coagulant Weave -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py 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." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Ionization" -msgid_plural "Scrolls of Ionization" +msgid "The art of Enchantment" +msgid_plural "copies of The art of Enchantment" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Ionization -#. ~ Description for Ionization -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -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 " -"from natural lightning, the light and thunderclap produced will leave your " -"foes reeling." +#. ~ Description for The art of Enchantment +#: lang/json/BOOK_from_json.py +msgid "A paperback tome on the art of imbuing items with magic properties." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Ignus Fatuus" -msgid_plural "Scrolls of Ignus Fatuus" +msgid "Spell Scroll" +msgid_plural "Spell Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Ignus Fatuus -#. ~ Description for Ignus Fatuus -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -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 "" - #: lang/json/BOOK_from_json.py -msgid "Scroll of Wall of Fog" -msgid_plural "Scrolls of Wall of Fog" +msgid "Scroll of Crystallize Mana" +msgid_plural "Scrolls of Crystallize Mana" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Wall of Fog -#. ~ Description for Wall of Fog -#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#. ~ Description for Scroll of Crystallize Mana +#: lang/json/BOOK_from_json.py 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." +"A proper wizard is always prepared, crystallize your mana for the future!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Knock" -msgid_plural "Scrolls of Knock" +msgid "Scroll of Dark Sight" +msgid_plural "Scrolls of Dark Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Knock +#. ~ Description for Scroll of Dark Sight #: lang/json/BOOK_from_json.py msgid "" -"You can channel magical energy to open locked wooden doors from a short " -"range away." +"The darkness holds no secrets for the arcane. Adjust your sight to see in " +"perfect darkness!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Improved Knock" -msgid_plural "Scrolls of Improved Knock" +msgid "Scroll of Invisibility" +msgid_plural "Scrolls of Invisibility" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Improved Knock +#. ~ Description for Scroll of Invisibility #: lang/json/BOOK_from_json.py msgid "" -"You can channel magical energy to open any locked door from a short range " -"away." +"The light can not interact with you unless you want it to. Become " +"invisible!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Repelling Arc" -msgid_plural "Scrolls of Repelling Arc" +msgid "Scroll of Obfuscated Body" +msgid_plural "Scrolls of Obfuscated Body" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Repelling Arc +#. ~ Description for Scroll of Obfuscated Body #: lang/json/BOOK_from_json.py msgid "" -"You manifest an aura of crackling electricity around you to strike attackers" -" with baleful lightning." +"A magical aura distorts light around your body, making it easier to dodge " +"enemy attacks." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Sappy Scroll" -msgid_plural "Sappy Scrolls" +msgid "Scroll of Holographic Transposition" +msgid_plural "Scrolls of Holographic Transposition" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Sappy Scroll -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Holographic Transposition +#. ~ Description for Holographic Transposition +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#: lang/json/SPELL_from_json.py msgid "" -"This scroll is covered in sap and rose thorns. You can still make out some " -"of the writings, but it probably won't work the same." +"Allows you to swap places with a previously existing holographic image of " +"yourself. If the universe itself can't tell you apart, who could?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Feral Form" -msgid_plural "Scrolls of Feral Form" +msgid "Scroll of Smite" +msgid_plural "Scrolls of Smite" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Feral Form -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Smite +#. ~ Description for Smite +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Unleash your inner beast by snapping a fur-covered bone, becoming beastly." +"Evil has become pervasive throughout the world. Let your power be the light" +" that shines in the darkness!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Flamesword" -msgid_plural "Scrolls of Flamesword" +msgid "Scroll of Life Conversion" +msgid_plural "Scrolls of Life Conversion" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Flamesword -#: lang/json/BOOK_from_json.py -msgid "Ignite a wooden sword to create a flaming saber." +#. ~ Description for Scroll of Life Conversion +#. ~ Description for Life Conversion +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "" +"You channel your life force itself into your spiritual energy. You spend hp" +" to regain mana." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Flamebreath" -msgid_plural "Scrolls of Flamebreath" +msgid "Scroll of Mind Over Pain" +msgid_plural "Scrolls of Mind Over Pain" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Flamebreath -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Mind Over Pain +#. ~ Description for Mind over Pain +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A pocketful of combustible powder is ignited, creating a cone of flame with " -"ashes that stick to those in its path." +"With an intense ritual that resembles crossfit, you manage to put some of " +"your pain at bay." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Caustic Aura" -msgid_plural "Scrolls of Caustic Aura" +msgid "Scroll of Baleful Polymorph" +msgid_plural "Scrolls of Baleful Polymorph" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Caustic Aura -#: lang/json/BOOK_from_json.py -msgid "" -"Animate a layer of acid around you, burning attackers and increasing your " -"melee damage." +#. ~ Description for Scroll of Baleful Polymorph +#. ~ Description for Baleful Polymorph +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Transform your enemies into frogs." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Decaying Boneclub" -msgid_plural "Scrolls of Decaying Boneclub" +msgid "Scroll of Summon Zombie" +msgid_plural "Scrolls of Summon Zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Decaying Boneclub -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Summon Zombie +#. ~ Description for Summon Zombie +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Link your live blood to dead blood and bones, creating a club eager to " -"harvest the living." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Impact Sling" -msgid_plural "Scrolls of Impact Sling" +msgid "Scroll of Summon Skeleton" +msgid_plural "Scrolls of Summon Skeleton" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Impact Sling -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Summon Skeleton +#. ~ Description for Summon Skeleton +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Infuse a sling with excess energy, delivering devastating throws before it " -"tears itself apart." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Knifeshot" -msgid_plural "Scrolls of Knifeshot" +msgid "Scroll of Summon Floating Disk" +msgid_plural "Scrolls of Summon Floating Disk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Knifeshot -#: lang/json/BOOK_from_json.py -msgid "Emulate a railgun, launching a knife at high speed." +#. ~ Description for Scroll of Summon Floating Disk +#. ~ Description for Summon floating disk +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Summons a floating disk that is sworn to carry your burdens." msgstr "" #: lang/json/BOOK_from_json.py -msgid "MICE(R) blueprint" -msgid_plural "MICE(R) blueprints" +msgid "Scroll of Summon Decayed Pouncer" +msgid_plural "Scrolls of Summon Decayed Pouncer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MICE(R) blueprint -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Summon Decayed Pouncer +#. ~ Description for Summon Decayed Pouncer +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Manafied Infernal Combustion Engine (Rideable)\n" -"Detailed schematics for a motorcycle, that are somehow simultaneously obviously impossible and yet intriguingly intuitive.\n" -"In one margin, the word 'Mojocycle' has been scrawled in a flowing hand." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Nova Flare" -msgid_plural "Scrolls of Nova Flare" +msgid "Scroll of Cure Light Wounds" +msgid_plural "Scrolls of Cure Light Wounds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Nova Flare -#. ~ Description for Nova Flare +#. ~ Description for Scroll of Cure Light Wounds +#. ~ Description for Cure Light Wounds +#. ~ Description for Jury Rig #: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Causes an intense heat at the location, greatly damaging the target." +#: lang/json/SPELL_from_json.py +msgid "Heals a little bit of damage on the target." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Jar of Force" -msgid_plural "Scrolls of Jar of Force" +msgid "Scroll of Pain Split" +msgid_plural "Scrolls of Pain Split" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Jar of Force -#: lang/json/BOOK_from_json.py -msgid "Summon a jar of force you can use to store liquids in." +#. ~ Description for Scroll of Pain Split +#. ~ Description for Pain Split +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Evens out damage among your limbs." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of freezing touch" -msgid_plural "Scrolls of freezing touch" +msgid "Scroll of Vicious Tentacle" +msgid_plural "Scrolls of Vicious Tentacle" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of freezing touch -#. ~ Description for Freezing Touch +#. ~ Description for Scroll of Vicious Tentacle +#. ~ Description for Vicious Tentacle #: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Your hands freeze anything they touch at temperatures so cold it slows down " -"your foes." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Scroll of Nature's Commune" -msgid_plural "Scrolls of Nature's Commune" +msgid "Scroll of Grotesque Enhancement" +msgid_plural "Scrolls of Grotesque Enhancement" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of Nature's Commune -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Grotesque Enhancement +#. ~ Description for Grotesque Enhancement +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Your connection with nature allows you to become one with it; you revitalize" -" your body while in communion with the flora and fauna around you." +"A spell that warps your body in alien ways to increase your physical " +"abilities and strength." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Scroll of seed of growth" -msgid_plural "Scrolls of seed of growth" +msgid "Scroll of Acidic Spray" +msgid_plural "Scrolls of Acidic Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Scroll of seed of growth -#. ~ Description for Seed of Growth +#. ~ Description for Scroll of Acidic Spray +#. ~ Description for Acidic Spray #: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py -msgid "Offer some of your life in a ritual to get tokens of growth in return." +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 "" #: lang/json/BOOK_from_json.py -msgid "A Technomancer's Guide to Debugging C:DDA" -msgid_plural "copies of A Technomancer's Guide to Debugging C:DDA" +msgid "Scroll of Flesh Pouch" +msgid_plural "Scrolls of Flesh Pouch" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for A Technomancer's Guide to Debugging C:DDA -#: lang/json/BOOK_from_json.py -msgid "static std::string description( spell sp ) const;" +#. ~ Description for Scroll of Flesh Pouch +#. ~ Description for Flesh Pouch +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "" +"This spell grows a large pouch out of your skin on your back, allowing you " +"to store your gear in it." msgstr "" #: lang/json/BOOK_from_json.py -msgid "A Beginner's Guide to Magic" -msgid_plural "copies of A Beginner's Guide to Magic" +msgid "Scroll of Conjure Bonespear" +msgid_plural "Scrolls of Conjure Bonespear" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for A Beginner's Guide to Magic -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Conjure Bonespear +#. ~ Description for Conjure Bonespear +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py 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." +"This spell creates a long shaft of bone with a wicked point and blades along" +" its length." msgstr "" #: lang/json/BOOK_from_json.py -msgid "An Introduction to Applied Meteorology" -msgid_plural "copies of An Introduction to Applied Meteorology" +msgid "Scroll of Megablast" +msgid_plural "Scrolls of Megablast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for An Introduction to Applied Meteorology -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Megablast +#. ~ Description for Megablast +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A professional-looking book on stormshaping, structured after many college " -"textbooks. It has less to apply than one might expect from its size." +"You always wanted to fire energy beams like in the animes you watched as a " +"kid. Now you can!" msgstr "" #: lang/json/BOOK_from_json.py -msgid "Wizarding Guide to Backpacking" -msgid_plural "copies of Wizarding Guide to Backpacking" +msgid "Scroll of Magical Light" +msgid_plural "Scrolls of Magical Light" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wizarding Guide to Backpacking -#: lang/json/BOOK_from_json.py -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." +#. ~ Description for Scroll of Magical Light +#. ~ Description for Magical Light +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Creates a magical light." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Pyromancy for Heretics" -msgid_plural "copies of Pyromancy for Heretics" +msgid "Scroll of Blinding Flash" +msgid_plural "Scrolls of Blinding Flash" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Pyromancy for Heretics -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Blinding Flash +#. ~ Description for Blinding Flash +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This charred husk of a book still contains many ways to light things aflame." +"Blind enemies for a short time with a sudden, dazzling light. Higher levels" +" deal slightly higher damage." msgstr "" #: lang/json/BOOK_from_json.py -msgid "A Treatise on Magical Elements" -msgid_plural "copies of A Treatise on Magical Elements" +msgid "Scroll of Ethereal Grasp" +msgid_plural "Scrolls of Ethereal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for A Treatise on Magical Elements -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Ethereal Grasp +#. ~ Description for Ethereal Grasp +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This details complex diagrams, rituals, and choreography that describes " -"various spells." +"A mass of spectral hands emerge from the ground, slowing everything in " +"range. Higher levels allow a bigger AoE, and longer effect." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Introduction to the Divine" -msgid_plural "copies of Introduction to the Divine" +msgid "Scroll of Aura of Protection" +msgid_plural "Scrolls of Aura of Protection" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Introduction to the Divine -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Aura of Protection +#. ~ Description for Aura of Protection +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This appears to mostly be a religious text, but it does have some notes on " -"healing." +"Encases your whole body in a magical aura that protects you from the " +"environment." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Paladin's Guide to Modern Spellcasting" -msgid_plural "copies of The Paladin's Guide to Modern Spellcasting" +msgid "Scroll of Vegetative Grasp" +msgid_plural "Scrolls of Vegetative Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Paladin's Guide to Modern Spellcasting -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Vegetative Grasp +#. ~ Description for Vegetative Grasp +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py 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." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Winter's Eternal Grasp" -msgid_plural "copies of Winter's Eternal Grasp" +msgid "Scroll of Root Strike" +msgid_plural "Scrolls of Root Strike" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Winter's Eternal Grasp -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Root Strike +#. ~ Description for Root Strike +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This slim book almost seems to be made from ice, it's cold to the touch." +"This spell causes roots to spear out the ground and stab into your foes in " +"an arc, impaling them." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Tome of The Oncoming Storm" -msgid_plural "copies of The Tome of The Oncoming Storm" +msgid "Scroll of Wooden Shaft" +msgid_plural "Scrolls of Wooden Shaft" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Tome of The Oncoming Storm -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Wooden Shaft +#. ~ Description for Wooden Shaft +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A large book embossed with crossed lightning bolts and storm clouds, it " -"tingles to the touch." +"This spell creates a projectile of hardwood that shoots forth from the " +"caster's hand at high speed to stab into an enemy." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Nondescript Spellbook" -msgid_plural "copies of Nondescript Spellbook" +msgid "Scroll of Nature's Bow" +msgid_plural "Scrolls of Nature's Bow" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Nondescript Spellbook -#: lang/json/BOOK_from_json.py -msgid "A small book, containing spells created by a novice magician." +#. ~ Description for Scroll of Nature's Bow +#. ~ Description for Nature's Bow +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "" +"This spell conjures a magical wooden recurve bow that fires endless arrows " +"for as long as it lasts." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Of Light and Falsehoods" -msgid_plural "copies of Of Light and Falsehoods" +msgid "Scroll of Nature's Trance" +msgid_plural "Scrolls of Nature's Trance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Of Light and Falsehoods -#: lang/json/BOOK_from_json.py -msgid "A small white book, it subtly amplifies the ambient light around it." +#. ~ Description for Scroll of Nature's Trance +#. ~ Description for Nature's Trance +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "" +"Your connection to living things allows you to go into a magical trance. " +"This allows you to recover fatigue quickly in exchange for mana." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Tome of Flesh" -msgid_plural "copies of The Tome of Flesh" +msgid "Scroll of Bag of Cats" +msgid_plural "Scrolls of Bag of Cats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Tome of Flesh -#: lang/json/BOOK_from_json.py -msgid "A small tome, seemingly covered in tanned human skin." +#. ~ Description for Scroll of Bag of Cats +#. ~ Description for Bag of Cats +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Are you the crazy cat lady?" msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Book of Trees" -msgid_plural "copies of The Book of Trees" +msgid "Scroll of Summon Wolf" +msgid_plural "Scrolls of Summon Wolf" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Book of Trees +#. ~ Description for Scroll of Summon Wolf #: lang/json/BOOK_from_json.py -msgid "A bark covered book." +msgid "Call to the wild for aid from some wolves." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Utility of Mana as an Energy Source" -msgid_plural "copies of The Utility of Mana as an Energy Source" +msgid "Scroll of Stonefist" +msgid_plural "Scrolls of Stonefist" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Utility of Mana as an Energy Source -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Stonefist +#. ~ Description for Stonefist +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This book details spells that use your mana to recover various physiological" -" effects." +"Encases your arms and hands in a sheath of magical stone, you can punch and " +"defend yourself with it in melee combat." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Tome of The Battle Mage" -msgid_plural "copies of The Tome of The Battle Mage" +msgid "Scroll of Seismic Stomp" +msgid_plural "Scrolls of Seismic Stomp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Tome of The Battle Mage -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Seismic Stomp +#. ~ Description for Seismic Stomp +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Your standard wizardy looking spellbook, filled with Magus combat spells. " -"You sure lucked out!" +"Focusing mana into your leg, you stomp your foot and send out a shockwave, " +"knocking enemies around you onto the ground." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Tome of the Hollow Earth" -msgid_plural "copies of The Tome of the Hollow Earth" +msgid "Scroll of Stone's Endurance" +msgid_plural "Scrolls of Stone's Endurance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Tome of the Hollow Earth -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Stone's Endurance +#. ~ Description for Stone's Endurance +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This large dusty spellbook seems perpetually, well, dusty. It contains the " -"power of the earth." +"You focus on the stones beneath you and draw from their agelessness. Your " +"mana is converted to stamina." msgstr "" #: lang/json/BOOK_from_json.py -msgid "The Tome of Magical Movement" -msgid_plural "copies of The Tome of Magical Movement" +msgid "Scroll of Shardspray" +msgid_plural "Scrolls of Shardspray" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Tome of Magical Movement -#: lang/json/BOOK_from_json.py -#, no-python-format +#. ~ Description for Scroll of Shardspray +#. ~ Description for Shardspray +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This small lightweight book seems to almost not entirely exist, let's say it" -" 97% does. It contains Magus spells focused on movement." +"This spell projects a wide spray of sharp metal shards, cutting into your " +"foes and friends alike." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Smudged Scroll" -msgid_plural "Smudged Scrolls" +msgid "Scroll of Piercing Bolt" +msgid_plural "Scrolls of Piercing Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Smudged Scroll -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Piercing Bolt +#. ~ Description for Piercing Bolt +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py 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." +"This spell projects a piercing rod of conjured iron at those that dare " +"oppose you." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Necromantic Minions for Dummies" -msgid_plural "copies of Necromantic Minions for Dummies" +msgid "Scroll of Shardstorm" +msgid_plural "Scrolls of Shardstorm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Necromantic Minions for Dummies -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Shardstorm +#. ~ Description for Shardstorm +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py 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." +"Creates an omnidirectional spray of razor sharp metal shards all around you." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Fundamentals of Technomancy" -msgid_plural "copies of Fundamentals of Technomancy" +msgid "Scroll of Rockbolt" +msgid_plural "Scrolls of Rockbolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Fundamentals of Technomancy -#: lang/json/BOOK_from_json.py -msgid "" -"This thick manual instructs the spellcaster on manipulating and empowering " -"various forms of matter and energy." +#. ~ Description for Scroll of Rockbolt +#. ~ Description for Rockbolt +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Fires a conjured stone projectile at high velocity." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Complete Idiot's Guide to Technomancy" -msgid_plural "copies of Complete Idiot's Guide to Technomancy" +msgid "Scroll of Point Flare" +msgid_plural "Scrolls of Point Flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Complete Idiot's Guide to Technomancy -#: lang/json/BOOK_from_json.py -msgid "" -"This colorful guide, full of diagrams and cartoons, teaches a couple of very" -" basic Technomancy spells for the not-so-bright pupils." +#. ~ Description for Scroll of Point Flare +#. ~ Description for Point Flare +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Causes an intense heat at the location, damaging the target." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Technomancy and the Electromagnetic Spectrum" -msgid_plural "copies of Technomancy and the Electromagnetic Spectrum" +msgid "Scroll of Finger Firelighter" +msgid_plural "Scrolls of Finger Firelighter" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Technomancy and the Electromagnetic Spectrum -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Finger Firelighter +#. ~ Description for Finger Firelighter +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This lab reference material book is thick and overflowing with information " -"on combining magic with EM radiation." +"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 "" #: lang/json/BOOK_from_json.py -msgid "Runic Tablet shard" -msgid_plural "Runic Tablet shards" +msgid "Scroll of Ice Spike" +msgid_plural "Scrolls of Ice Spike" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Runic Tablet shard -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Ice Spike +#. ~ Description for Ice Spike +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A small tablet of blackened stone, apparently cut from a much larger slab. " -"Golden runes glow over its surface, and slowly shift into intelligible " -"sentences when you stare at them." +"Causes jagged icicles to form in the air above the target, falling and " +"damaging it." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Geospatial Systems: The Lie Of Linearity" -msgid_plural "copies of Geospatial Systems: The Lie Of Linearity" +msgid "Scroll of Fireball" +msgid_plural "Scrolls of Fireball" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Geospatial Systems: The Lie Of Linearity -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Fireball +#. ~ Description for Fireball +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py 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." +"You hurl a pea-sized glowing orb that when reaches its target or an obstacle" +" produces a pressure-less blast of searing heat." msgstr "" #: lang/json/BOOK_from_json.py -msgid "Transcendence of the Human Condition" -msgid_plural "copies of Transcendence of the Human Condition" +msgid "Scroll of Cone of Cold" +msgid_plural "Scrolls of Cone of Cold" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Transcendence of the Human Condition -#: lang/json/BOOK_from_json.py -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." +#. ~ Description for Scroll of Cone of Cold +#. ~ Description for Cryokinetic blast +#. ~ Description for Cone of Cold +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +#: lang/json/SPELL_from_json.py +msgid "You blast a cone of frigid air toward the target." msgstr "" #: lang/json/BOOK_from_json.py -msgid "SugarKin flyer" -msgid_plural "SugarKin flyers" +msgid "Scroll of Burning Hands" +msgid_plural "Scrolls of Burning Hands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for SugarKin flyer -#: lang/json/BOOK_from_json.py +#. ~ Description for Scroll of Burning Hands +#. ~ Description for Burning Hands +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A flyer for some kind of candy. It shows a picture of a gleaming human made of smooth candy looking at you in terror. \"SugarKin the first life-size human candy! Are you a real monster? Will you be able to devour it?\"\n" -" On the back of the flyer you can see some hastily scribbled words:\n" -" \"Hello, my child, welcome to this world. A world where you'll be able to thrive if you follow a few rules:\n" -"1) Never ever get into contact with water, it would melt you!\n" -"2) Avoid humans with clear eyes they are very dangerous! (You can ignore the ones with black eyes they are harmless to you.)\n" -"3) Learn how to make caramel ointment, it's the only way to fix your body if you get hurt.\n" -" There are many more things I'd like to tell you but I must leave before it's too late. I've made you a friend to keep you company, be kind to it.\n" -" I love you,\n" -" - F. \"." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "bird litter" -msgid_plural "bird litter" -msgstr[0] "пташиний послід" -msgstr[1] "пташиний послід" -msgstr[2] "пташиний послід" -msgstr[3] "пташиний послід" - -#. ~ Description for {'str_sp': 'bird litter'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Bird droppings, feathers, and soiled bits of rubbish." +"You're pretty sure you saw this in a game somewhere. You fire a short-range" +" cone of fire." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "cow pie" -msgid_plural "cow pies" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Frost Spray" +msgid_plural "Scrolls of Frost Spray" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cow pie -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Frost Spray +#. ~ Description for Frost Spray +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A fresh cow pie; this could probably be used to make some great fertilizer." +"You're pretty sure you saw this in a game somewhere. You fire a short-range" +" cone of ice and cold." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "dog dung" -msgid_plural "dog dungs" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Chilling Touch" +msgid_plural "Scrolls of Chilling Touch" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dog dung -#: lang/json/COMESTIBLE_from_json.py -msgid "Droppings from a canine." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "manure" -msgid_plural "manures" -msgstr[0] "Кізяк" -msgstr[1] "Кізяки" -msgstr[2] "Кізяків" -msgstr[3] "Кізяки" - -#. ~ Description for manure -#: lang/json/COMESTIBLE_from_json.py -msgid "Common manure, could probably be used to make some great fertilizer." +#. ~ Description for Scroll of Chilling Touch +#. ~ Description for Chilling Touch +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Freezes the touched target with intense cold." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "roach dirt" -msgid_plural "roach dirts" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Glide on Ice" +msgid_plural "Scrolls of Glide on Ice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for roach dirt -#: lang/json/COMESTIBLE_from_json.py -msgid "Large black pellets of rotting material." +#. ~ Description for Scroll of Glide on Ice +#. ~ Description for Glide on Ice +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "" +"Encases your feet in a magical coating of ice, allowing you to glide along " +"smooth surfaces faster." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "bleach" -msgid_plural "bleach" -msgstr[0] "хлорка" -msgstr[1] "хлорки" -msgstr[2] "хлорки" -msgstr[3] "хлорка" - -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY -#: lang/json/COMESTIBLE_from_json.py -msgid "bleach spill" -msgid_plural "bleach spills" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Hoary Blast" +msgid_plural "Scrolls of Hoary Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bleach'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Hoary Blast +#. ~ Description for Hoary Blast +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This is sodium hypochlorite, a common household cleaning agent. It is " -"highly unsafe to drink." +"You project a glowing white crystal of ice and it explodes on impact into a " +"blossom of shattering cold." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "ammonia" -msgid_plural "ammonia" -msgstr[0] "нашатирний спирт" -msgstr[1] "нашатирного спирту" -msgstr[2] "нашатирного спирту" -msgstr[3] "нашатирний спирт" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Ice Shield" +msgid_plural "Scrolls of Ice Shield" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'ammonia'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Ice Shield +#. ~ Description for Ice Shield +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This is ammonium hydroxide, a common household cleaning agent. It is highly" -" unsafe to drink." -msgstr "" -"Нашатирний спирт, або аміачна вода - водний розчин гідроксиду амонію, " -"звичайний побутовий засіб для чищення. Пити не варто, небезпечно для вашого " -"здоров'я." - -#: lang/json/COMESTIBLE_from_json.py -msgid "liquid fertilizer" -msgid_plural "liquid fertilizer" -msgstr[0] "рідке добриво" -msgstr[1] "рідкі добрива" -msgstr[2] "рідкі добрива" -msgstr[3] "рідке добриво" - -#. ~ Description for {'str_sp': 'liquid fertilizer'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A nutrient-rich elixir for plants." +"Creates a magical shield of ice on your arm, you can defend yourself with it" +" in melee combat and use it to bash." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "commercial fertilizer" -msgid_plural "commercial fertilizer" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Frost Armor" +msgid_plural "Scrolls of Frost Armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'commercial fertilizer'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Nutrient-rich granules for plants." +#. ~ Description for Scroll of Frost Armor +#. ~ Description for Frost Armor +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Covers you in a thin layer of magical ice to protect you from harm." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "fungicide" -msgid_plural "fungicide" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Shadow Field" +msgid_plural "Scrolls of Shadow Field" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fungicide'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Agricultural-grade chemical anti-fungal powder designed to destroy " -"infections in plants." +#. ~ Description for Scroll of Shadow Field +#: lang/json/BOOK_from_json.py +msgid "Cast a field of shadows." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "insecticide" -msgid_plural "insecticide" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Magic Missile" +msgid_plural "Scrolls of Magic Missile" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'insecticide'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Agricultural-grade chemical insecticide powder designed to eradicate insect " -"pests." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "salt water" -msgid_plural "salt water" -msgstr[0] "солона вода" -msgstr[1] "солоної води" -msgstr[2] "солоної води" -msgstr[3] "солона вода" - -#. ~ Description for {'str_sp': 'salt water'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Water with salt added. Not good for drinking." +#. ~ Description for Scroll of Magic Missile +#. ~ Description for Magic Missile +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "I cast Magic Missile at the darkness!" msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "soapy water" -msgid_plural "soapy water" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Phase Door" +msgid_plural "Scrolls of Phase Door" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soapy water'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Water with soap added. Not good for drinking." +#. ~ Description for Scroll of Phase Door +#. ~ Description for Phase Door +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Teleports you in a random direction a short distance." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "sewage sample" -msgid_plural "sewage samples" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Gravity Well" +msgid_plural "Scrolls of Gravity Well" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sewage sample -#: lang/json/COMESTIBLE_from_json.py -msgid "A sample of sewage from a treatment plant. Gross." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "sulfuric acid" -msgid_plural "sulfuric acid" -msgstr[0] "сірчана кислота" -msgstr[1] "сірчана кислота" -msgstr[2] "сірчана кислота" -msgstr[3] "сірчана кислота" - -#. ~ Description for {'str_sp': 'sulfuric acid'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " -"to organic matter and evil clowns. Although used to prepare a number of " -"chemicals, it is mostly known as battery acid, due to its widest commercial " -"application." -msgstr "" -"Сірчана кислота: в'язка, із неприємним запахом, надзвичайно їдка, особливо " -"по відношенню до органічних матеріалів та злобних клоунів. Хоча " -"використовується при створенні великої кількості різноманітних хімікатів, " -"вона найбільш відома як кислота для акумуляторів, бо це її найбільш широке " -"комерційне застосування." - -#: lang/json/COMESTIBLE_from_json.py -msgid "hydrochloric acid" -msgid_plural "hydrochloric acid" -msgstr[0] "соляна кислота" -msgstr[1] "соляної кислоти" -msgstr[2] "соляної кислоти" -msgstr[3] "соляна кислота" - -#. ~ Description for {'str_sp': 'hydrochloric acid'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Hydrochloric acid, also known as muriatic acid. It is a strong acid that " -"has a distinctive smell, important and frequently used ever since its " -"discovery. It still has a vast multitude of uses." -msgstr "" -"Соляна кислота, також відома як муріатова кислота. Це сильна кислота з " -"характерним запахом, важлива і часто застосовувана з часу її відкриття. Віна" -" все ще має безліч застосувань." - -#: lang/json/COMESTIBLE_from_json.py -msgid "nitric acid" -msgid_plural "nitric acid" -msgstr[0] "азотна кислота" -msgstr[1] "азотної кислоти" -msgstr[2] "азотної кислоти" -msgstr[3] "азотна кислота" - -#. ~ Description for {'str_sp': 'nitric acid'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Gravity Well +#. ~ Description for Gravity Well +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " -"used in the production of synthetic fertilizers, for etching of circuit " -"boards and in woodworking. Remains quite useful both for making a vast " -"array of pyrotechnic and explosive agents and as a direct weapon: not many " -"beings enjoy being doused in nitric acid." +"Summons a well of gravity with the epicenter at the location. Deals bashing" +" damage to all creatures in the affected area." msgstr "" -"Азотна кислота, сильний окислювач та надзвичайно їдкий матеріал. В основному" -" використовується у виробництві синтетичних добрив, для травлення друкованих" -" плат і в деревообробці. Залишається цілком корисною як для виготовлення " -"величезного набору піротехнічних та вибухових речовин, так і як зброя: не " -"багато істот із задоволенням обливаються азотною кислотою." -#: lang/json/COMESTIBLE_from_json.py -msgid "water purification tablet" -msgid_plural "water purification tablets" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Mana Blast" +msgid_plural "Scrolls of Mana Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for water purification tablet -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Intended for the clarification and disinfection of unsafe drinking water, " -"these halazone-based purification tablets remove dangerous contaminants " -"using powerful chemicals. The label says to use one tablet per unit of " -"water." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "sewage water" -msgid_plural "sewage water" -msgstr[0] "стічні води" -msgstr[1] "стічних вод" -msgstr[2] "стічних вод" -msgstr[3] "стічні води" - -#. ~ Description for {'str_sp': 'sewage water'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Turbid liquid from the sewers with an awful stench." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "lye" -msgid_plural "lye" -msgstr[0] "луг" -msgstr[1] "лугу" -msgstr[2] "лугу" -msgstr[3] "луг" - -#. ~ Description for {'str_sp': 'lye'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is a liquid form of sodium hydroxide. It is highly corrosive; handle " -"with care." +#. ~ Description for Scroll of Mana Blast +#. ~ Description for Mana Blast +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "A blast of concentrated magical power that obliterates a large area." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "ether" -msgid_plural "ether" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Mana Bolt" +msgid_plural "Scrolls of Mana Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ether'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A useful industrial solvent, and the first inhalative anesthetic in " -"widespread use. Its uncomfortable side effects and tendency to explode " -"caused it to fall out of favor decades ago in the developed world. If you " -"can't get the good stuff, however, it might make a passable substitute." +#. ~ Description for Scroll of Mana Bolt +#. ~ Description for Mana Bolt +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "A bolt of magical power that only damages your foes." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "dimethyl sulfoxide" -msgid_plural "dimethyl sulfoxide" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Haste" +msgid_plural "Scrolls of Haste" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Haste +#. ~ Description for Haste +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " -"capable of dissolving a huge range of things. It has the weird property " -"that it absorbs very quickly through the skin, causing a garlic flavor in " -"the mouth, even if it touched your arm." +"This spell gives you an enormous boost of speed lasting a short period of " +"time." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "chloroform" -msgid_plural "chloroform" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Mana Beam" +msgid_plural "Scrolls of Mana Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chloroform'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Famous for its properties as an illicit sedative, this substance is also a " -"very good solvent. In particular, it's used a lot in nuclear magnetic " -"resonance spectroscopy." +#. ~ Description for Scroll of Mana Beam +#. ~ Description for Mana Beam +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "A beam of focused magical power that damages any foes in its path." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "phenol" -msgid_plural "phenol" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Escape" +msgid_plural "Scrolls of Escape" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'phenol'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Escape +#. ~ Description for Escape +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This useful stuff is a potent solvent and has a wide range of reactive " -"applications. It can be used to make a huge number of plastics and " -"polymers, it can be an antiseptic, it can strip paint and break down epoxy, " -"and it can burn your skin away like tissue paper under a heat gun. Wear " -"gloves." +"Teleports you in a random direction a medium distance, to help escape your " +"foes in dangerous situations." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "glycerol" -msgid_plural "glycerol" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Cat's Grace" +msgid_plural "Scrolls of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'glycerol'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Also called glycerin, this clear, odorless liquid is both a handy skin " -"moisteurizer and an ingredient necessary to make dynamite." +#. ~ Description for Scroll of Cat's Grace +#. ~ Description for Cat's Grace +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "You become more graceful, agile, and coordinated." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "peptone broth powder" -msgid_plural "peptone broth powder" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Eagle's Sight" +msgid_plural "Scrolls of Eagle's Sight" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'peptone broth powder'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is a pre-mixed salty solution of protein and sugar. It's meant for " -"bacteria to eat, but if you were desperate, you could eat it too; it's not " -"much different from cup noodle stock." +#. ~ Description for Scroll of Eagle's Sight +#. ~ Description for Eagle's Sight +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "You gain the perception of an eagle." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "agar" -msgid_plural "agar" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Ogre's Strength" +msgid_plural "Scrolls of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'agar'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"These clear flakes of processed seaweed can be dissolved in boiling water to" -" create a very sturdy, temperature resistant gel. Not only is it good for " -"making gels to separate molecules by size, but it's a great cheat ingredient" -" to make sure your jellies set properly." +#. ~ Description for Scroll of Ogre's Strength +#. ~ Description for Ogre's Strength +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "You gain the strength of an ogre." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "acrylamide" -msgid_plural "acrylamide" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Fox's Cunning" +msgid_plural "Scrolls of Fox's Cunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'acrylamide'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"This highly carcinogenic white powder can be readily polymerized into a " -"whole bunch of useful water-soluble gels." +#. ~ Description for Scroll of Fox's Cunning +#. ~ Description for Fox's Cunning +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "You become wily like a fox." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "acetylene" -msgid_plural "acetylene" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Shocking Lash" +msgid_plural "Scrolls of Shocking Lash" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'acetylene'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Shocking Lash +#. ~ Description for Shocking Lash +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A flammable gas that explodes under pressure. Combined with oxygen, " -"acetylene makes a great welding gas." +"A quick burst of electricity strikes a target and possibly one other nearby." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "formic acid" -msgid_plural "formic acid" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Jolt" +msgid_plural "Scrolls of Jolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'formic acid'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Common in nature as an insect venom, this substance has a number of " -"industrial uses such as preservation and manufacturing." +#. ~ Description for Scroll of Jolt +#. ~ Description for Jolt +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "A short-ranged fan of electricity shoots from your fingers." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "latex" -msgid_plural "latex" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Lightning Bolt" +msgid_plural "Scrolls of Lightning Bolt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'latex'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A liquid precursor to rubber found in some plants." +#. ~ Description for Scroll of Lightning Bolt +#. ~ Description for Lightning Bolt +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "" +"The goto spell for many Stormshapers, this iconic spell does just what you " +"expect: you shoot lightning from your fingertips. However, this lightning " +"is more directed than most lightning, and travels in a line through most " +"non-solid targets." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "citric acid" -msgid_plural "citric acid" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Windstrike" +msgid_plural "Scrolls of Windstrike" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'citric acid'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Windstrike +#. ~ Description for Windstrike +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A manufactured form of citric acid that is commonly used as an additive in " -"food, cleaning agents, and nutritional supplements.." +"A powerful blast of wind slams into anything in front of your outstretched " +"hand." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "venom gland" -msgid_plural "venom glands" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "wasp venom gland" -msgid_plural "wasp venom glands" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Windrunning" +msgid_plural "Scrolls of Windrunning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wasp venom gland -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Windrunning +#. ~ Description for Windrunning +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A fragile, slightly quivering organ for the production and storage of wasp " -"venom. You could extract some very useful chemicals from it with the right " -"know-how, but only if you hurry." +"A magical wind pushes you forward as you move, easing your movements and " +"increasing speed." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "bee venom gland" -msgid_plural "bee venom glands" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Call Stormhammer" +msgid_plural "Scrolls of Call Stormhammer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bee venom gland -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Call Stormhammer +#. ~ Description for Call Stormhammer +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A fragile, slightly quivering organ for the production and storage of " -"honeybee venom. You could extract some very useful chemicals from it with " -"the right know-how, but only if you hurry." +"Creates a crackling magical warhammer full of lightning to smite your foes " +"with, and of course, smash things to bits!" msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "sac of paralytic venom" -msgid_plural "sacs of paralytic venom" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Bless" +msgid_plural "Scrolls of Bless" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sac of paralytic venom -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"This greyish, flexible vesicle is filled to the brim with the potent " -"paralytic agent the triffids use to subdue still-moving fertilizer such as " -"yourself. If you know your way around poisons you might be able to find a " -"use for it." +#. ~ Description for Scroll of Bless +#. ~ Description for Bless +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "A spell of blessing that gives you energy and boosts your abilities." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "sac of triffid fungicide" -msgid_plural "sacs of triffid fungicide" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Holy Blade" +msgid_plural "Scrolls of Holy Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sac of triffid fungicide -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"This triffid sack is filled with what appears to be a triffid-produced " -"antifungal agent. It will likely already work as an antifungal compound for" -" more offensive applications, but requires further refining before it can be" -" used as a medical drug." +#. ~ Description for Scroll of Holy Blade +#. ~ Description for Holy Blade +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "This blade of light will cut through any evil it makes contact with!" msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "acetic anhydride" -msgid_plural "acetic anhydride" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Spiritual Armor" +msgid_plural "Scrolls of Spiritual Armor" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Spiritual Armor +#. ~ Description for Spiritual Armor +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"This is a bottle of acetic anhydride, if you have enough chemical knowledge," -" you could use it to easily convert morphine into heroin." +"Evil will not make it through your defenses if your faith is strong enough!" msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "hide bag" -msgid_plural "hide bags" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Lamp" +msgid_plural "Scrolls of Lamp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hide bag -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"The raw skin of an animal, quickly turned into a makeshift bag for storage." -" It will still rot, and needs to be cured and tanned." +#. ~ Description for Scroll of Lamp +#. ~ Description for Lamp +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Creates a magical lamp." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "tainted hide bag" -msgid_plural "tainted hide bags" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Manatricity" +msgid_plural "Scrolls of Manatricity" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tainted hide bag -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Manatricity +#. ~ Description for Manatricity +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"The raw skin of a monster, quickly turned into a makeshift bag for storage." -" It will still rot, and needs to be cured and tanned." +"You have found a way to convert your spiritual energy into power you can use" +" for your bionics." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "Spice" -msgid_plural "Spices" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "marloss wine" -msgid_plural "marloss wine" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Taze" +msgid_plural "Scrolls of Taze" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'marloss wine'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Goopy white wine, made from the fruit of the marloss." +#. ~ Description for Scroll of Taze +#. ~ Description for Taze +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "" +"This spell creates a very short range bolt of electricity to shock your " +"foes." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "Riesling" -msgid_plural "Riesling" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Lesser Quantum Tunnel" +msgid_plural "Scrolls of Lesser Quantum Tunnel" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Riesling'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Sparkling white wine, made from the world's noblest grape." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "Chardonnay" -msgid_plural "Chardonnay" -msgstr[0] "Шардоне" -msgstr[1] "Шардоне" -msgstr[2] "Шардоне" -msgstr[3] "Шардоне" - -#. ~ Description for {'str_sp': 'Chardonnay'} -#: lang/json/COMESTIBLE_from_json.py -msgid "America's most popular wine, and for good reason." +#. ~ Description for Scroll of Lesser Quantum Tunnel +#. ~ Description for Lesser Quantum Tunnel +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +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 " +"whole uncertainty thing as to where you come out. It leaves you a little " +"dazed on the other side as you reorient yourself." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "Cabernet Sauvignon" -msgid_plural "Cabernet Sauvignon" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Synaptic Stimulation" +msgid_plural "Scrolls of Synaptic Stimulation" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Synaptic Stimulation +#. ~ Description for Synaptic Stimulation +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"The heavily disputed king of red wines. Pairs well with red meats and " -"pasta." +"This spell stimulates the synapses in your brain beyond normal processing " +"speeds, giving you a large boost in mental processing capability, including " +"enhancing your reflexes, speed, and raw intellectual power. Use " +"responsibly!" msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "pinot noir" -msgid_plural "pinot noir" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Laze" +msgid_plural "Scrolls of Laze" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pinot noir'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Laze +#. ~ Description for Laze +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Prized by collectors and adored by critics, it is one of the rarer and more " -"elegant wines." +"You concentrate and release a focused beam of photons at a target, also " +"known as a laser." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "marsala" -msgid_plural "marsala" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Animated Blade" +msgid_plural "Scrolls of Animated Blade" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'marsala'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A wine popularly used in dishes served in Italian restaurants." +#. ~ Description for Scroll of Animated Blade +#. ~ Description for Animated Blade +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "" +"This spell conjures flying animated blades that will cut your enemies down " +"to size. Into small pieces that is." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "vermouth" -msgid_plural "vermouth" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Mirror Image" +msgid_plural "Scrolls of Mirror Image" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'vermouth'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Mirror Image +#. ~ Description for Mirror Image +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A soft wine with a pleasant herbal flavor and aroma. It is a common " -"cocktail ingredient, and can be used as a substitute for white wine." +"This spell manipulates light into barely tangible duplicates of a living " +"being, a magical hologram in short." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "barley wine" -msgid_plural "barley wine" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Lightning Blast" +msgid_plural "Scrolls of Lightning Blast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'barley wine'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A strong ale." +#. ~ Description for Scroll of Lightning Blast +#. ~ Description for Lightning Blast +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +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 " +"to fire off several quick ones in a row." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "whiskey" -msgid_plural "whiskey" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Necrotic Gaze" +msgid_plural "Scrolls of Necrotic Gaze" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'whiskey'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A distilled grain alcohol, made from, by, and for real Southern colonels!" -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "vodka" -msgid_plural "vodka" -msgstr[0] "горілка" -msgstr[1] "горілки" -msgstr[2] "горілки" -msgstr[3] "горілка" - -#. ~ Description for {'str_sp': 'vodka'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Necrotic Gaze +#. ~ Description for Necrotic Gaze +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A beverage of alcohol, water, and not much else. In America, men make " -"vodka, but in Soviet Russia, vodka makes the man." +"You use the power of your own blood to imbue necrotic energy into your gaze," +" damaging the target you look at." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "gin" -msgid_plural "gin" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Purification Seed" +msgid_plural "Scrolls of Purification Seed" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gin'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Purification Seed +#: lang/json/BOOK_from_json.py msgid "" -"An alcoholic beverage flavored with juniper berries. It smells faintly of " -"berries, but mostly booze." +"You summon a gift of the earth which will purify water. Greater levels " +"yield greater numbers of seeds." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "rum" -msgid_plural "rum" +#: lang/json/BOOK_from_json.py +msgid "Scroll of X-ray Vision" +msgid_plural "Scrolls of X-ray Vision" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rum'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of X-ray Vision +#. ~ Description for X-ray Vision +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A distilled alcoholic beverage made from fermenting molasses. Drinking it " -"might make you feel like a pirate. Or not." +"You fire a cone of X-rays that magically allow you to see that area for a " +"short time." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "tequila" -msgid_plural "tequila" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Optical Sneeze Beam" +msgid_plural "Scrolls of Optical Sneeze Beam" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tequila'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Optical Sneeze Beam +#: lang/json/BOOK_from_json.py msgid "" -"A distilled alcoholic beverage made from a succulent plant with spiky " -"leaves. Don't eat the worm! Wait, there's no worm in this bottle." +"You overcharge your internal batteries to send a semi-directed beam from " +"your face." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "triple sec" -msgid_plural "triple sec" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Clairvoyance" +msgid_plural "Scrolls of Clairvoyance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'triple sec'} -#: lang/json/COMESTIBLE_from_json.py -msgid "An orange flavored liquor used in many mixed drinks." +#. ~ Description for Scroll of Clairvoyance +#. ~ Description for Clairvoyance +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "You close your eyes and the earth surrenders its secrets to you." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "cheap wine" -msgid_plural "cheap wine" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Bleed" +msgid_plural "Scrolls of Bleed" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cheap wine'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Really cheap fortified wine." +#. ~ Description for Scroll of Bleed +#. ~ Description for Bleed +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "" +"With a shout and a gesture, the target starts bleeding from old wounds." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "strong mixed alcohol" -msgid_plural "strong mixed alcohol" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Lesser Banishment" +msgid_plural "Scrolls of Lesser Banishment" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Strong alcoholic drinks, mixed with no regard for taste." +#. ~ Description for Scroll of Lesser Banishment +#. ~ Description for Lesser Banishment +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "" +"Banish a monster to the lesser-known nether dimension. If a monster is more" +" powerful than you can handle, the spell drains your life force to make up " +"the difference." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "weak mixed alcohol" -msgid_plural "weak mixed alcohol" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Acid Resistance" +msgid_plural "Scrolls of Acid Resistance" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Weak alcoholic drinks, mixed with no regard for taste." +#. ~ Description for Scroll of Acid Resistance +#: lang/json/BOOK_from_json.py +msgid "This spell creates an invisible aura to protect you from acid." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "fruit wine" -msgid_plural "fruit wine" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Lightning Storm" +msgid_plural "Scrolls of Lightning Storm" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fruit wine'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Lightning Storm +#: lang/json/BOOK_from_json.py msgid "" -"Cheap booze made from fermented fruit juice. Tastes just like it sounds." +"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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "brandy" -msgid_plural "brandy" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Sacrificial Regrowth" +msgid_plural "Scrolls of Sacrificial Regrowth" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'brandy'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Sacrificial Regrowth +#. ~ Description for Sacrificial Regrowth +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Wine that has been distilled to a higher proof. Great as an after-dinner " -"drink, but packs a punch." +"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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "Irish coffee" -msgid_plural "Irish coffee" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Sacrificial Healing" +msgid_plural "Scrolls of Sacrificial Healing" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Irish coffee'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Sacrificial Healing +#. ~ Description for Sacrificial Healing +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Sweetened coffee and whiskey topped with milk. Start your day the closeted " -"alcoholic way!" +"Channels some of the user's own life force into healing energy, for the sake" +" of ones allies." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "Long Island iced tea" -msgid_plural "Long Island iced tea" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Stoneskin" +msgid_plural "Scrolls of Stoneskin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Long Island iced tea'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Stoneskin +#. ~ Description for Stoneskin +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A blend of incredibly strong-flavored liquors that somehow tastes like none " -"of them. It contains no tea, but the inclusion of cola gives it a tea-like " -"color." +"Envelops your entire body in armor formed from living rock, encumbering yet " +"protective." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "screwdriver cocktail" -msgid_plural "screwdriver cocktails" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Pillar of Stone" +msgid_plural "Scrolls of Pillar of Stone" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for screwdriver cocktail -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Pillar of Stone +#. ~ Description for Pillar of Stone +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A mix of orange juice and vodka. It's the surreptitious drunkard mechanic's" -" drink of choice." +"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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "wild apple" -msgid_plural "wild apple" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Paralytic Dart" +msgid_plural "Scrolls of Paralytic Dart" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wild apple'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Like apple cider, only with vodka." +#. ~ Description for Scroll of Paralytic Dart +#. ~ Description for Paralytic Dart +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "" +"Spits a warped needle of sinew and bone, carrying with it a sting that slows" +" your victim." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "rum & cola" -msgid_plural "rum & cola" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Visceral Projection" +msgid_plural "Scrolls of Visceral Projection" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rum & cola'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Suitable for tropical retreats and Canadian artists alike." +#. ~ Description for Scroll of Visceral Projection +#. ~ Description for Visceral Projection +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "beer" -msgid_plural "beer" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Coagulant Weave" +msgid_plural "Scrolls of Coagulant Weave" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'beer'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Coagulant Weave +#. ~ Description for Coagulant Weave +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A grain alcohol flavored with hops. It's best served cold, in a glass, and " -"with a lime - but you're not that lucky." +"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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "spiced mead" -msgid_plural "spiced mead" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Ionization" +msgid_plural "Scrolls of Ionization" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spiced mead'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Ionization +#. ~ Description for Ionization +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." +"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 " +"from natural lightning, the light and thunderclap produced will leave your " +"foes reeling." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "dandelion wine" -msgid_plural "dandelion wine" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Ignus Fatuus" +msgid_plural "Scrolls of Ignus Fatuus" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dandelion wine'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Ignus Fatuus +#. ~ Description for Ignus Fatuus +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"A light and delicious wine made from dandelion flowers. Slightly " -"effervescent, it is smooth and crisp." +"Summons ghostly foxfire worked from living marsh vapor, to lead your enemies" +" astray. With more experience, this spell can conjure multiple ghost " +"lights." msgstr "" -"Легке і смачне вино, виготовлене із квіток кульбаби. Дещо ігристе, воно " -"м'яке і освіжаюче." -#: lang/json/COMESTIBLE_from_json.py -msgid "burdock wine" -msgid_plural "burdock wine" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Wall of Fog" +msgid_plural "Scrolls of Wall of Fog" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'burdock wine'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A light and delicious wine made from burdock roots. Somewhat sweet." +#. ~ Description for Scroll of Wall of Fog +#. ~ Description for Wall of Fog +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "pine wine" -msgid_plural "pine wine" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Knock" +msgid_plural "Scrolls of Knock" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pine wine'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Knock +#: lang/json/BOOK_from_json.py msgid "" -"A potent wine flavored with pine resin. Bold and pungent, its biting taste " -"and strong aroma takes some getting used to." +"You can channel magical energy to open locked wooden doors from a short " +"range away." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "homebrew beer" -msgid_plural "homebrew beer" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Improved Knock" +msgid_plural "Scrolls of Improved Knock" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'homebrew beer'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." +#. ~ Description for Scroll of Improved Knock +#: lang/json/BOOK_from_json.py +msgid "" +"You can channel magical energy to open any locked door from a short range " +"away." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "moonshine" -msgid_plural "moonshine" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Repelling Arc" +msgid_plural "Scrolls of Repelling Arc" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'moonshine'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Repelling Arc +#: lang/json/BOOK_from_json.py msgid "" -"Only the strongest, purest, good ol' fashioned hooch, distilled from corn " -"and sugar. Guaranteed to make you forget about the whole Cataclysm thing, " -"or you get your vision back." +"You manifest an aura of crackling electricity around you to strike attackers" +" with baleful lightning." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "European pilsner" -msgid_plural "European pilsner" +#: lang/json/BOOK_from_json.py +msgid "Sappy Scroll" +msgid_plural "Sappy Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'European pilsner'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Sappy Scroll +#: lang/json/BOOK_from_json.py msgid "" -"A lager beer imported from Europe. Best served cold, in a glass - but " -"you're not that lucky." +"This scroll is covered in sap and rose thorns. You can still make out some " +"of the writings, but it probably won't work the same." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "American pale ale" -msgid_plural "American pale ale" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Feral Form" +msgid_plural "Scrolls of Feral Form" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'American pale ale'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Feral Form +#: lang/json/BOOK_from_json.py msgid "" -"A tasty craft beer. Best served cold, in a glass - but you're not that " -"lucky." +"Unleash your inner beast by snapping a fur-covered bone, becoming beastly." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "India pale ale" -msgid_plural "India pale ale" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Flamesword" +msgid_plural "Scrolls of Flamesword" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'India pale ale'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A very flavorful microbrewed beer. Best served cold, in a glass - but " -"you're not that lucky." +#. ~ Description for Scroll of Flamesword +#: lang/json/BOOK_from_json.py +msgid "Ignite a wooden sword to create a flaming saber." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "stout" -msgid_plural "stout" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Flamebreath" +msgid_plural "Scrolls of Flamebreath" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'stout'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A tasty craft beer, as dark in color as the days ahead." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "Belgian ale" -msgid_plural "Belgian ale" -msgstr[0] "бельгійський ель" -msgstr[1] "бельгійського елю" -msgstr[2] "бельгійського елю" -msgstr[3] "бельгійський ель" - -#. ~ Description for {'str_sp': 'Belgian ale'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Flamebreath +#: lang/json/BOOK_from_json.py msgid "" -"A flavorful and filling beer brewed by monks in Belgium. Best served in a " -"goblet." +"A pocketful of combustible powder is ignited, creating a cone of flame with " +"ashes that stick to those in its path." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "imperial stout" -msgid_plural "imperial stout" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Caustic Aura" +msgid_plural "Scrolls of Caustic Aura" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'imperial stout'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Caustic Aura +#: lang/json/BOOK_from_json.py msgid "" -"A very flavorful beer that has been aged in bourbon barrels. It is as black" -" as midnight on a moonless night and has the viscosity of oil. While very " -"tasty, it also has an alcohol content on the level with wine." +"Animate a layer of acid around you, burning attackers and increasing your " +"melee damage." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "strawberry surprise" -msgid_plural "strawberry surprises" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Decaying Boneclub" +msgid_plural "Scrolls of Decaying Boneclub" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for strawberry surprise -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Decaying Boneclub +#: lang/json/BOOK_from_json.py msgid "" -"Strawberries left to ferment with a few other choice ingredients offer up a " -"surprisingly palatable mixture; you barely even have to force yourself to " -"drink it after the first few gulps." +"Link your live blood to dead blood and bones, creating a club eager to " +"harvest the living." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "boozeberry" -msgid_plural "boozeberries" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Impact Sling" +msgid_plural "Scrolls of Impact Sling" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for boozeberry -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Impact Sling +#: lang/json/BOOK_from_json.py msgid "" -"This fermented blueberry mixture is surprisingly hearty, though the soup-" -"like consistency is slightly unsettling no matter how much you drink." +"Infuse a sling with excess energy, delivering devastating throws before it " +"tears itself apart." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "single malt whiskey" -msgid_plural "single malt whiskey" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Knifeshot" +msgid_plural "Scrolls of Knifeshot" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'single malt whiskey'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Only the finest whiskey straight from the bung." +#. ~ Description for Scroll of Knifeshot +#: lang/json/BOOK_from_json.py +msgid "Emulate a railgun, launching a knife at high speed." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "single pot still Irish whiskey" -msgid_plural "single pot still Irish whiskey" +#: lang/json/BOOK_from_json.py +msgid "MICE(R) blueprint" +msgid_plural "MICE(R) blueprints" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A whiskey made from a mixed mash of malted and unmalted barley." +#. ~ Description for MICE(R) blueprint +#: lang/json/BOOK_from_json.py +msgid "" +"Manafied Infernal Combustion Engine (Rideable)\n" +"Detailed schematics for a motorcycle, that are somehow simultaneously obviously impossible and yet intriguingly intuitive.\n" +"In one margin, the word 'Mojocycle' has been scrawled in a flowing hand." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "cheap whiskey" -msgid_plural "cheap whiskey" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Nova Flare" +msgid_plural "Scrolls of Nova Flare" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cheap whiskey'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Really cheap blended whiskey." +#. ~ Description for Scroll of Nova Flare +#. ~ Description for Nova Flare +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Causes an intense heat at the location, greatly damaging the target." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "Canadian whiskey" -msgid_plural "Canadian whiskey" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Jar of Force" +msgid_plural "Scrolls of Jar of Force" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Canadian whiskey'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A multi-grain liquor made from a mash of corn and rye." +#. ~ Description for Scroll of Jar of Force +#: lang/json/BOOK_from_json.py +msgid "Summon a jar of force you can use to store liquids in." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "sherry" -msgid_plural "sherry" +#: lang/json/BOOK_from_json.py +msgid "Scroll of freezing touch" +msgid_plural "Scrolls of freezing touch" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sherry'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of freezing touch +#. ~ Description for Freezing Touch +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py msgid "" -"East India Solera. A true drink of a British gentleman. Sherry, Niles?" +"Your hands freeze anything they touch at temperatures so cold it slows down " +"your foes." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "Bristol Cream" -msgid_plural "Bristol Cream" +#: lang/json/BOOK_from_json.py +msgid "Scroll of Nature's Commune" +msgid_plural "Scrolls of Nature's Commune" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Bristol Cream'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Scroll of Nature's Commune +#: lang/json/BOOK_from_json.py msgid "" -"A fine sherry that has been aged in American oak casks and bottled in " -"Bristol, England." +"Your connection with nature allows you to become one with it; you revitalize" +" your body while in communion with the flora and fauna around you." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "Madeira wine" -msgid_plural "Madeira wine" +#: lang/json/BOOK_from_json.py +msgid "Scroll of seed of growth" +msgid_plural "Scrolls of seed of growth" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Madeira wine'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Fortified wine from Madeira. A true Royal Navy drink." +#. ~ Description for Scroll of seed of growth +#. ~ Description for Seed of Growth +#: lang/json/BOOK_from_json.py lang/json/SPELL_from_json.py +msgid "Offer some of your life in a ritual to get tokens of growth in return." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "fancy hobo" -msgid_plural "fancy hobo" +#: lang/json/BOOK_from_json.py +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_sp': 'fancy hobo'} -#: lang/json/COMESTIBLE_from_json.py -msgid "This definitely tastes like a hobo drink." +#. ~ Description for A Technomancer's Guide to Debugging C:DDA +#: lang/json/BOOK_from_json.py +msgid "static std::string description( spell sp ) const;" msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "kalimotxo" -msgid_plural "kalimotxo" +#: lang/json/BOOK_from_json.py +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_sp': 'kalimotxo'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for A Beginner's Guide to Magic +#: lang/json/BOOK_from_json.py msgid "" -"A mix of equal parts wine and cola. It's not as bad as some might imagine, " -"and pretty popular among young and/or poor people in some countries." +"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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "bee's knees" -msgid_plural "bee's knees" +#: lang/json/BOOK_from_json.py +msgid "An Introduction to Applied Meteorology" +msgid_plural "copies of An Introduction to Applied Meteorology" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "bee's knees"} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for An Introduction to Applied Meteorology +#: lang/json/BOOK_from_json.py msgid "" -"This cocktail dates from the Prohibition era. Gin, honey and lemon in a " -"delightful mix." +"A professional-looking book on stormshaping, structured after many college " +"textbooks. It has less to apply than one might expect from its size." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "whiskey sour" -msgid_plural "whiskey sours" +#: lang/json/BOOK_from_json.py +msgid "Wizarding Guide to Backpacking" +msgid_plural "copies of Wizarding Guide to Backpacking" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for whiskey sour -#: lang/json/COMESTIBLE_from_json.py -msgid "A mixed drink made of whiskey and lemon juice." +#. ~ Description for Wizarding Guide to Backpacking +#: lang/json/BOOK_from_json.py +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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "honeygold brew" -msgid_plural "honeygold brews" +#: lang/json/BOOK_from_json.py +msgid "Pyromancy for Heretics" +msgid_plural "copies of Pyromancy for Heretics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for honeygold brew -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Pyromancy for Heretics +#: lang/json/BOOK_from_json.py msgid "" -"A mixed drink containing all the advantages of its ingredients and none of " -"their disadvantages. It tastes great and it's a good source of nourishment." +"This charred husk of a book still contains many ways to light things aflame." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "honey ball" -msgid_plural "honey balls" +#: lang/json/BOOK_from_json.py +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 honey ball -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for A Treatise on Magical Elements +#: lang/json/BOOK_from_json.py msgid "" -"Droplet shaped ant food. It's like a thick balloon the size of a baseball, " -"filled with sticky liquid. Unlike bee honey, this has mostly a sour taste, " -"probably because ants feed upon a variety of things." +"This details complex diagrams, rituals, and choreography that describes " +"various spells." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "spiked eggnog" -msgid_plural "spiked eggnogs" +#: lang/json/BOOK_from_json.py +msgid "Introduction to the Divine" +msgid_plural "copies of Introduction to the Divine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for spiked eggnog -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Introduction to the Divine +#: lang/json/BOOK_from_json.py msgid "" -"Smooth and rich, this spoon-coating mixture of milk, cream, eggs, and booze " -"is a popular traditional holiday drink. Having been fortified with alcohol," -" it will keep for a long time." +"This appears to mostly be a religious text, but it does have some notes on " +"healing." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "martini" -msgid_plural "martinis" +#: lang/json/BOOK_from_json.py +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 martini -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for The Paladin's Guide to Modern Spellcasting +#: lang/json/BOOK_from_json.py msgid "" -"This is a popular cocktail made with gin and dry vermouth, dating from the " -"Prohibition era." +"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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "bloody mary cocktail" -msgid_plural "bloody mary cocktails" +#: lang/json/BOOK_from_json.py +msgid "Winter's Eternal Grasp" +msgid_plural "copies of Winter's Eternal Grasp" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bloody mary cocktail -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Winter's Eternal Grasp +#: lang/json/BOOK_from_json.py msgid "" -"Tomato juice mixed with vodka and some spices. Hangover cure of choice for " -"many." +"This slim book almost seems to be made from ice, it's cold to the touch." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "hard seltzer" -msgid_plural "hard seltzer" +#: lang/json/BOOK_from_json.py +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] "" -#. ~ Description for {'str_sp': 'hard seltzer'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Alcoholic sparkling water. Perfect for a hot summer day." +#. ~ Description for The Tome of The Oncoming Storm +#: lang/json/BOOK_from_json.py +msgid "" +"A large book embossed with crossed lightning bolts and storm clouds, it " +"tingles to the touch." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "pumpkin muffin" -msgid_plural "pumpkin muffin" +#: lang/json/BOOK_from_json.py +msgid "Nondescript Spellbook" +msgid_plural "copies of Nondescript Spellbook" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pumpkin muffin'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Baked muffins made of pumpkin. Perfect for your fall feast." +#. ~ Description for Nondescript Spellbook +#: lang/json/BOOK_from_json.py +msgid "A small book, containing spells created by a novice magician." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "donut holes" -msgid_plural "donut holes" +#: lang/json/BOOK_from_json.py +msgid "Of Light and Falsehoods" +msgid_plural "copies of Of Light and Falsehoods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'donut holes'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"These balls of dough have been cut into shape, covered with sugar, and " -"cooked to a crisp. A staple of fairgrounds everywhere." +#. ~ Description for Of Light and Falsehoods +#: lang/json/BOOK_from_json.py +msgid "A small white book, it subtly amplifies the ambient light around it." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "sourdough bread" -msgid_plural "sourdough bread" +#: lang/json/BOOK_from_json.py +msgid "The Tome of Flesh" +msgid_plural "copies of The Tome of Flesh" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sourdough bread'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Healthy and filling, with a sharper taste and thicker crust than yeast-only " -"bread." +#. ~ Description for The Tome of Flesh +#: lang/json/BOOK_from_json.py +msgid "A small tome, seemingly covered in tanned human skin." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "flatbread" -msgid_plural "flatbread" +#: lang/json/BOOK_from_json.py +msgid "The Book of Trees" +msgid_plural "copies of The Book of Trees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'flatbread'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Simple unleavened bread." +#. ~ Description for The Book of Trees +#: lang/json/BOOK_from_json.py +msgid "A bark covered book." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "bread" -msgid_plural "bread" +#: lang/json/BOOK_from_json.py +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_sp': 'bread'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Healthy and filling." +#. ~ Description for The Utility of Mana as an Energy Source +#: lang/json/BOOK_from_json.py +msgid "" +"This book details spells that use your mana to recover various physiological" +" effects." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "toast" -msgid_plural "toast" +#: lang/json/BOOK_from_json.py +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_sp': 'toast'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for The Tome of The Battle Mage +#: lang/json/BOOK_from_json.py msgid "" -"A crispy breakfast treat that's a bit dry and would likely go better with " -"some toppings." +"Your standard wizardy looking spellbook, filled with Magus combat spells. " +"You sure lucked out!" msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "buttered toast" -msgid_plural "buttered toast" +#: lang/json/BOOK_from_json.py +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_sp': 'buttered toast'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Toast with butter spread on top to make it taste better." +#. ~ Description for The Tome of the Hollow Earth +#: lang/json/BOOK_from_json.py +msgid "" +"This large dusty spellbook seems perpetually, well, dusty. It contains the " +"power of the earth." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "jam toast" -msgid_plural "jam toast" +#: lang/json/BOOK_from_json.py +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_sp': 'jam toast'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for The Tome of Magical Movement +#: lang/json/BOOK_from_json.py +#, no-python-format msgid "" -"A bit of jam on toast to make it less dry and to add more flavor to this " -"breakfast staple." +"This small lightweight book seems to almost not entirely exist, let's say it" +" 97% does. It contains Magus spells focused on movement." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "peanut butter toast" -msgid_plural "peanut butter toast" +#: lang/json/BOOK_from_json.py +msgid "Smudged Scroll" +msgid_plural "Smudged Scrolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Smudged Scroll +#: lang/json/BOOK_from_json.py msgid "" -"Peanut butter to give more heartiness and calories to a slice of toast." +"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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "toad in a hole" -msgid_plural "toad in a hole" +#: lang/json/BOOK_from_json.py +msgid "Necromantic Minions for Dummies" +msgid_plural "copies of Necromantic Minions for Dummies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'toad in a hole'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A cooked egg served inside a piece of toast." +#. ~ Description for Necromantic Minions for Dummies +#: lang/json/BOOK_from_json.py +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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "PBJ Toast" -msgid_plural "PBJ Toast" +#: lang/json/BOOK_from_json.py +msgid "Fundamentals of Technomancy" +msgid_plural "copies of Fundamentals of Technomancy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Fundamentals of Technomancy +#: lang/json/BOOK_from_json.py msgid "" -"A slice of toast with peanut butter and jelly on top of it with added butter" -" for flavor." +"This thick manual instructs the spellcaster on manipulating and empowering " +"various forms of matter and energy." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "cornbread" -msgid_plural "cornbread" +#: lang/json/BOOK_from_json.py +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_sp': 'cornbread'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Healthy and filling cornbread." +#. ~ Description for Complete Idiot's Guide to Technomancy +#: lang/json/BOOK_from_json.py +msgid "" +"This colorful guide, full of diagrams and cartoons, teaches a couple of very" +" basic Technomancy spells for the not-so-bright pupils." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "johnnycake" -msgid_plural "johnnycakes" +#: lang/json/BOOK_from_json.py +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 johnnycake -#: lang/json/COMESTIBLE_from_json.py -msgid "A dense and tasty fried bread treat." +#. ~ Description for Technomancy and the Electromagnetic Spectrum +#: lang/json/BOOK_from_json.py +msgid "" +"This lab reference material book is thick and overflowing with information " +"on combining magic with EM radiation." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "corn tortilla" -msgid_plural "corn tortillas" +#: lang/json/BOOK_from_json.py +msgid "Runic Tablet shard" +msgid_plural "Runic Tablet shards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for corn tortilla -#: lang/json/COMESTIBLE_from_json.py -msgid "A round, thin flatbread made from finely ground corn flour." +#. ~ Description for Runic Tablet shard +#: lang/json/BOOK_from_json.py +msgid "" +"A small tablet of blackened stone, apparently cut from a much larger slab. " +"Golden runes glow over its surface, and slowly shift into intelligible " +"sentences when you stare at them." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "hardtack" -msgid_plural "hardtack" +#: lang/json/BOOK_from_json.py +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_sp': 'hardtack'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for Geospatial Systems: The Lie Of Linearity +#: lang/json/BOOK_from_json.py msgid "" -"A dry and virtually tasteless bread product capable of remaining edible " -"without spoilage for vast lengths of time." +"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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "biscuit" -msgid_plural "biscuits" +#: lang/json/BOOK_from_json.py +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 biscuit -#: lang/json/COMESTIBLE_from_json.py -msgid "Wholesome and filling, this home made biscuit is pretty good!" +#. ~ Description for Transcendence of the Human Condition +#: lang/json/BOOK_from_json.py +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 "" -#: lang/json/COMESTIBLE_from_json.py -msgid "wastebread" -msgid_plural "wastebread" +#: lang/json/BOOK_from_json.py +msgid "SugarKin flyer" +msgid_plural "SugarKin flyers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wastebread'} -#: lang/json/COMESTIBLE_from_json.py +#. ~ Description for SugarKin flyer +#: lang/json/BOOK_from_json.py msgid "" -"Flour is a commodity these days and to deal with that, most survivors resort" -" to mix it with leftovers of other ingredients and bake it all into bread. " -"It's filling, and that's what matters." +"A flyer for some kind of candy. It shows a picture of a gleaming human made of smooth candy looking at you in terror. \"SugarKin the first life-size human candy! Are you a real monster? Will you be able to devour it?\"\n" +" On the back of the flyer you can see some hastily scribbled words:\n" +" \"Hello, my child, welcome to this world. A world where you'll be able to thrive if you follow a few rules:\n" +"1) Never ever get into contact with water, it would melt you!\n" +"2) Avoid humans with clear eyes they are very dangerous! (You can ignore the ones with black eyes they are harmless to you.)\n" +"3) Learn how to make caramel ointment, it's the only way to fix your body if you get hurt.\n" +" There are many more things I'd like to tell you but I must leave before it's too late. I've made you a friend to keep you company, be kind to it.\n" +" I love you,\n" +" - F. \"." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "brown bread" -msgid_plural "brown bread" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "bird litter" +msgid_plural "bird litter" +msgstr[0] "пташиний послід" +msgstr[1] "пташиний послід" +msgstr[2] "пташиний послід" +msgstr[3] "пташиний послід" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py -msgid "A sweet bread, like cake." +msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hallula" -msgid_plural "hallula" +msgid "cow pie" +msgid_plural "cow pies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for cow pie #: lang/json/COMESTIBLE_from_json.py msgid "" -"This type of bread is popular in Chile and Bolivia. Prepared using animal " -"lard or oil, it resembles a large, round scone. In the pre-Cataclysm world," -" it would usually be filled with savory ingredients rather than sweet ones." +"A fresh cow pie; this could probably be used to make some great fertilizer." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mycus wine must" -msgid_plural "mycus wine musts" +msgid "dog dung" +msgid_plural "dog dungs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mycus wine must +#. ~ Description for dog dung #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Unfermented mycus wine. A goopy white mess, made from fruit of mycus. It " -"smells sweetly of mushrooms." +msgid "Droppings from a canine." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "whiskey wort" -msgid_plural "whiskey worts" +msgid "manure" +msgid_plural "manures" +msgstr[0] "Кізяк" +msgstr[1] "Кізяки" +msgstr[2] "Кізяків" +msgstr[3] "Кізяки" + +#. ~ Description for manure +#: lang/json/COMESTIBLE_from_json.py +msgid "Common manure, could probably be used to make some great fertilizer." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "roach dirt" +msgid_plural "roach dirts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for whiskey wort +#. ~ Description for roach dirt #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Unfermented whiskey. The base of a fine drink. Not the traditional " -"preparation, but you don't have the time." +msgid "Large black pellets of rotting material." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "whiskey wash" -msgid_plural "whiskey washes" +msgid "bleach" +msgid_plural "bleach" +msgstr[0] "хлорка" +msgstr[1] "хлорки" +msgstr[2] "хлорки" +msgstr[3] "хлорка" + +#. ~ Conditional name for bleach when FLAG matches DIRTY +#: lang/json/COMESTIBLE_from_json.py +msgid "bleach spill" +msgid_plural "bleach spills" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for whiskey wash +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py -msgid "Fermented, but not distilled whiskey. No longer tastes sweet." +msgid "" +"This is sodium hypochlorite, a common household cleaning agent. It is " +"highly unsafe to drink." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "gin mash" -msgid_plural "gin mashes" +msgid "ammonia" +msgid_plural "ammonia" +msgstr[0] "нашатирний спирт" +msgstr[1] "нашатирного спирту" +msgstr[2] "нашатирного спирту" +msgstr[3] "нашатирний спирт" + +#. ~ Description for ammonia +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"This is ammonium hydroxide, a common household cleaning agent. It is highly" +" unsafe to drink." +msgstr "" +"Нашатирний спирт, або аміачна вода - водний розчин гідроксиду амонію, " +"звичайний побутовий засіб для чищення. Пити не варто, небезпечно для вашого " +"здоров'я." + +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid fertilizer" +msgid_plural "liquid fertilizer" +msgstr[0] "рідке добриво" +msgstr[1] "рідкі добрива" +msgstr[2] "рідкі добрива" +msgstr[3] "рідке добриво" + +#. ~ Description for liquid fertilizer +#: lang/json/COMESTIBLE_from_json.py +msgid "A nutrient-rich elixir for plants." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "commercial fertilizer" +msgid_plural "commercial fertilizer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for gin mash +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py -msgid "Unfermented gin mash. Fermenting it will produce gin." +msgid "Nutrient-rich granules for plants." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "gin wash" -msgid_plural "gin washes" +msgid "fungicide" +msgid_plural "fungicide" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for gin wash +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" -"Gin wash, after the junipers have had time to add flavor, ready to be " -"distilled or drunk as is." +"Agricultural-grade chemical anti-fungal powder designed to destroy " +"infections in plants." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vodka wort" -msgid_plural "vodka worts" +msgid "insecticide" +msgid_plural "insecticide" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vodka wort +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" -"Unfermented vodka. Water with sugar from enzymatic breakdown of malted " -"grains or just added in pure form." +"Agricultural-grade chemical insecticide powder designed to eradicate insect " +"pests." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vodka wash" -msgid_plural "vodka washes" +msgid "salt water" +msgid_plural "salt water" +msgstr[0] "солона вода" +msgstr[1] "солоної води" +msgstr[2] "солоної води" +msgstr[3] "солона вода" + +#. ~ Description for salt water +#: lang/json/COMESTIBLE_from_json.py +msgid "Water with salt added. Not good for drinking." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "soapy water" +msgid_plural "soapy water" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vodka wash +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py -msgid "Fermented, but not distilled vodka. No longer tastes sweet." +msgid "Water with soap added. Not good for drinking." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rum wort" -msgid_plural "rum worts" +msgid "sewage sample" +msgid_plural "sewage samples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rum wort +#. ~ Description for sewage sample +#: lang/json/COMESTIBLE_from_json.py +msgid "A sample of sewage from a treatment plant. Gross." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "sulfuric acid" +msgid_plural "sulfuric acid" +msgstr[0] "сірчана кислота" +msgstr[1] "сірчана кислота" +msgstr[2] "сірчана кислота" +msgstr[3] "сірчана кислота" + +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" -"Unfermented rum. Sugar caramel or molasses brewed into sweet water. " -"Basically a saccharine soup." +"Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " +"to organic matter and evil clowns. Although used to prepare a number of " +"chemicals, it is mostly known as battery acid, due to its widest commercial " +"application." msgstr "" +"Сірчана кислота: в'язка, із неприємним запахом, надзвичайно їдка, особливо " +"по відношенню до органічних матеріалів та злобних клоунів. Хоча " +"використовується при створенні великої кількості різноманітних хімікатів, " +"вона найбільш відома як кислота для акумуляторів, бо це її найбільш широке " +"комерційне застосування." #: lang/json/COMESTIBLE_from_json.py -msgid "rum wash" -msgid_plural "rum washes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "hydrochloric acid" +msgid_plural "hydrochloric acid" +msgstr[0] "соляна кислота" +msgstr[1] "соляної кислоти" +msgstr[2] "соляної кислоти" +msgstr[3] "соляна кислота" -#. ~ Description for rum wash +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py -msgid "Fermented, but not distilled rum. No longer tastes sweet." +msgid "" +"Hydrochloric acid, also known as muriatic acid. It is a strong acid that " +"has a distinctive smell, important and frequently used ever since its " +"discovery. It still has a vast multitude of uses." +msgstr "" +"Соляна кислота, також відома як муріатова кислота. Це сильна кислота з " +"характерним запахом, важлива і часто застосовувана з часу її відкриття. Віна" +" все ще має безліч застосувань." + +#: lang/json/COMESTIBLE_from_json.py +msgid "nitric acid" +msgid_plural "nitric acid" +msgstr[0] "азотна кислота" +msgstr[1] "азотної кислоти" +msgstr[2] "азотної кислоти" +msgstr[3] "азотна кислота" + +#. ~ Description for nitric acid +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " +"used in the production of synthetic fertilizers, for etching of circuit " +"boards and in woodworking. Remains quite useful both for making a vast " +"array of pyrotechnic and explosive agents and as a direct weapon: not many " +"beings enjoy being doused in nitric acid." msgstr "" +"Азотна кислота, сильний окислювач та надзвичайно їдкий матеріал. В основному" +" використовується у виробництві синтетичних добрив, для травлення друкованих" +" плат і в деревообробці. Залишається цілком корисною як для виготовлення " +"величезного набору піротехнічних та вибухових речовин, так і як зброя: не " +"багато істот із задоволенням обливаються азотною кислотою." #: lang/json/COMESTIBLE_from_json.py -msgid "fruit wine must" -msgid_plural "fruit wine musts" +msgid "water purification tablet" +msgid_plural "water purification tablets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit wine must +#. ~ Description for water purification tablet #: lang/json/COMESTIBLE_from_json.py msgid "" -"Unfermented fruit wine. A sweet, boiled juice made from berries or fruit." +"Intended for the clarification and disinfection of unsafe drinking water, " +"these halazone-based purification tablets remove dangerous contaminants " +"using powerful chemicals. The label says to use one tablet per unit of " +"water." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "spiced mead must" -msgid_plural "spiced mead musts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "sewage water" +msgid_plural "sewage water" +msgstr[0] "стічні води" +msgstr[1] "стічних вод" +msgstr[2] "стічних вод" +msgstr[3] "стічні води" -#. ~ Description for spiced mead must +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py -msgid "Unfermented spiced mead. Diluted honey and yeast." +msgid "Turbid liquid from the sewers with an awful stench." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dandelion wine must" -msgid_plural "dandelion wine musts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "lye" +msgid_plural "lye" +msgstr[0] "луг" +msgstr[1] "лугу" +msgstr[2] "лугу" +msgstr[3] "луг" -#. ~ Description for dandelion wine must +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" -"Unfermented dandelion wine. A sticky mixture of water, sugar, yeast, and " -"dandelion petals." +"This is a liquid form of sodium hydroxide. It is highly corrosive; handle " +"with care." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "burdock wine must" -msgid_plural "burdock wine musts" +msgid "ether" +msgid_plural "ether" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for burdock wine must +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" -"Unfermented burdock wine. A sticky mixture of water, sugar, yeast, and " -"burdock roots." +"A useful industrial solvent, and the first inhalative anesthetic in " +"widespread use. Its uncomfortable side effects and tendency to explode " +"caused it to fall out of favor decades ago in the developed world. If you " +"can't get the good stuff, however, it might make a passable substitute." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pine wine must" -msgid_plural "pine wine musts" +msgid "dimethyl sulfoxide" +msgid_plural "dimethyl sulfoxide" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pine wine must +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" -"Unfermented pine wine. A sticky mixture of water, sugar, yeast, and pine " -"resins." +"Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " +"capable of dissolving a huge range of things. It has the weird property " +"that it absorbs very quickly through the skin, causing a garlic flavor in " +"the mouth, even if it touched your arm." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "beer wort" -msgid_plural "beer worts" +msgid "chloroform" +msgid_plural "chloroform" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for beer wort +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" -"Unfermented homebrew beer. A boiled and chilled mash of malted barley, " -"spiced with some fine hops." +"Famous for its properties as an illicit sedative, this substance is also a " +"very good solvent. In particular, it's used a lot in nuclear magnetic " +"resonance spectroscopy." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "moonshine mash" -msgid_plural "moonshine mashes" +msgid "phenol" +msgid_plural "phenol" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for moonshine mash +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" -"Unfermented moonshine. Just some water, sugar and corn, like good ol' " -"aunt's recipe." +"This useful stuff is a potent solvent and has a wide range of reactive " +"applications. It can be used to make a huge number of plastics and " +"polymers, it can be an antiseptic, it can strip paint and break down epoxy, " +"and it can burn your skin away like tissue paper under a heat gun. Wear " +"gloves." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "moonshine wash" -msgid_plural "moonshine washes" +msgid "glycerol" +msgid_plural "glycerol" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for moonshine wash +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" -"Fermented, but not distilled moonshine. Contains all the contaminants you " -"don't want in your moonshine." +"Also called glycerin, this clear, odorless liquid is both a handy skin " +"moisteurizer and an ingredient necessary to make dynamite." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "curdling milk" -msgid_plural "curdling milks" +msgid "peptone broth powder" +msgid_plural "peptone broth powder" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for curdling milk +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" -"Milk with vinegar and natural rennet added. Used for making cheese if left " -"in a fermenting vat for some time." +"This is a pre-mixed salty solution of protein and sugar. It's meant for " +"bacteria to eat, but if you were desperate, you could eat it too; it's not " +"much different from cup noodle stock." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "unfermented vinegar" -msgid_plural "unfermented vinegars" +msgid "agar" +msgid_plural "agar" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for unfermented vinegar +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" -"Mixture of water, alcohol and fruit juice that will eventually become " -"vinegar when fermented in a vat." +"These clear flakes of processed seaweed can be dissolved in boiling water to" +" create a very sturdy, temperature resistant gel. Not only is it good for " +"making gels to separate molecules by size, but it's a great cheat ingredient" +" to make sure your jellies set properly." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "growing wild yeast" -msgid_plural "growing wild yeasts" +msgid "acrylamide" +msgid_plural "acrylamide" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for growing wild yeast +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" -"Mixture of water, sugar and fruits with some naturally occurring yeast, that" -" will eventually produce a more sizeable yeast culture." +"This highly carcinogenic white powder can be readily polymerized into a " +"whole bunch of useful water-soluble gels." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "malting grain" -msgid_plural "malting grain" +msgid "acetylene" +msgid_plural "acetylene" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py -msgid "After soaking the grain and waiting, it has finished malting." +msgid "" +"A flammable gas that explodes under pressure. Combined with oxygen, " +"acetylene makes a great welding gas." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. #: lang/json/COMESTIBLE_from_json.py -msgid "The grain has not malted yet." -msgstr "" +msgid "formic acid" +msgid_plural "formic acid" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py -msgid "Malting grain that can be used for brewing." +msgid "" +"Common in nature as an insect venom, this substance has a number of " +"industrial uses such as preservation and manufacturing." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "malted grain" -msgid_plural "malted grain" +msgid "latex" +msgid_plural "latex" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Grainy cereal used for malting. A staple of brewing everywhere. It can " -"also be ground into flour." +msgid "A liquid precursor to rubber found in some plants." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "soaking dandelion" -msgid_plural "soaking dandelion" +msgid "citric acid" +msgid_plural "citric acid" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" -"After soaking the dandelions in boiling water, the juice can be used for " -"making wine." -msgstr "" - -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. -#: lang/json/COMESTIBLE_from_json.py -msgid "The dandelions need more time." +"A manufactured form of citric acid that is commonly used as an additive in " +"food, cleaning agents, and nutritional supplements.." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "soaked dandelion" -msgid_plural "soaked dandelion" +msgid "venom gland" +msgid_plural "venom glands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Dandelions soaked in hot water, used for making dandelion wine." -msgstr "" - #: lang/json/COMESTIBLE_from_json.py -msgid "meat/fish" -msgid_plural "meat/fish" +msgid "wasp venom gland" +msgid_plural "wasp venom glands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for wasp venom gland #: lang/json/COMESTIBLE_from_json.py -msgid "fillet of fish" -msgid_plural "fillets of fish" +msgid "" +"A fragile, slightly quivering organ for the production and storage of wasp " +"venom. You could extract some very useful chemicals from it with the right " +"know-how, but only if you hurry." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "bee venom gland" +msgid_plural "bee venom glands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fillet of fish +#. ~ Description for bee venom gland #: lang/json/COMESTIBLE_from_json.py -msgid "Freshly caught fish. Makes a passable meal raw." +msgid "" +"A fragile, slightly quivering organ for the production and storage of " +"honeybee venom. You could extract some very useful chemicals from it with " +"the right know-how, but only if you hurry." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked fish" -msgid_plural "cooked fish" +msgid "sac of paralytic venom" +msgid_plural "sacs of paralytic venom" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for sac of paralytic venom #: lang/json/COMESTIBLE_from_json.py -msgid "Freshly cooked fish. Very nutritious." +msgid "" +"This greyish, flexible vesicle is filled to the brim with the potent " +"paralytic agent the triffids use to subdue still-moving fertilizer such as " +"yourself. If you know your way around poisons you might be able to find a " +"use for it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "human stomach" -msgid_plural "human stomachs" +msgid "sac of triffid fungicide" +msgid_plural "sacs of triffid fungicide" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for human stomach +#. ~ Description for sac of triffid fungicide #: lang/json/COMESTIBLE_from_json.py -msgid "The stomach of a human. It is surprisingly durable." +msgid "" +"This triffid sack is filled with what appears to be a triffid-produced " +"antifungal agent. It will likely already work as an antifungal compound for" +" more offensive applications, but requires further refining before it can be" +" used as a medical drug." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "large human stomach" -msgid_plural "large human stomachs" +msgid "acetic anhydride" +msgid_plural "acetic anhydride" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large human stomach -#. ~ Description for large demihuman stomach +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py -msgid "The stomach of a large humanoid creature. It is surprisingly durable." +msgid "" +"This is a bottle of acetic anhydride, if you have enough chemical knowledge," +" you could use it to easily convert morphine into heroin." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of human fat" -msgid_plural "chunks of human fat" +msgid "liquid soap" +msgid_plural "liquid soap" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chunk of human fat +#. ~ Description for liquid soap #: lang/json/COMESTIBLE_from_json.py -msgid "Freshly harvested from a human body." +msgid "Liquid soap." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "human tallow" -msgid_plural "human tallows" +msgid "hide bag" +msgid_plural "hide bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for human tallow +#. ~ Description for hide bag #: lang/json/COMESTIBLE_from_json.py msgid "" -"A smooth white block of cleaned and rendered human fat. It will remain " -"edible for a very long time, and can be used as an ingredient in many foods " -"and projects." +"The raw skin of an animal, quickly turned into a makeshift bag for storage." +" It will still rot, and needs to be cured and tanned." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "human lard" -msgid_plural "human lards" +msgid "tainted hide bag" +msgid_plural "tainted hide bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for human lard +#. ~ Description for tainted hide bag #: lang/json/COMESTIBLE_from_json.py msgid "" -"A smooth white block of dry-rendered human fat. It will remain edible for a" -" very long time, and can be used as an ingredient in many foods and " -"projects." +"The raw skin of a monster, quickly turned into a makeshift bag for storage." +" It will still rot, and needs to be cured and tanned." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "human flesh" -msgid_plural "human fleshes" +msgid "Spice" +msgid_plural "Spices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for human flesh -#: lang/json/COMESTIBLE_from_json.py -msgid "Freshly butchered from a human body." -msgstr "Свіжий шматок плоті, що вирізаний з людського тіла." - #: lang/json/COMESTIBLE_from_json.py -msgid "cooked creep" -msgid_plural "cooked creeps" +msgid "marloss wine" +msgid_plural "marloss wine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked creep +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py -msgid "A freshly cooked slice of some unpleasant person. Tastes great." +msgid "Goopy white wine, made from the fruit of the marloss." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of meat" -msgid_plural "chunks of meat" -msgstr[0] "шматок м'яса" -msgstr[1] "шматки м'яса" -msgstr[2] "шматків м'яса" -msgstr[3] "шматок м'яса" +msgid "Riesling" +msgid_plural "Riesling" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for chunk of meat +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Freshly butchered meat. You could eat it raw, but cooking it is better." +msgid "Sparkling white wine, made from the world's noblest grape." msgstr "" -#. ~ Description for {'str_sp': 'blood'} #: lang/json/COMESTIBLE_from_json.py -msgid "Fresh blood extracted from a living creature." +msgid "Chardonnay" +msgid_plural "Chardonnay" +msgstr[0] "Шардоне" +msgstr[1] "Шардоне" +msgstr[2] "Шардоне" +msgstr[3] "Шардоне" + +#. ~ Description for Chardonnay +#: lang/json/COMESTIBLE_from_json.py +msgid "America's most popular wine, and for good reason." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of porkbelly" -msgid_plural "chunks of porkbelly" +msgid "Cabernet Sauvignon" +msgid_plural "Cabernet Sauvignon" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chunk of porkbelly +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" -"Fatty cut of pork from the belly, popular in some cuisine. With proper " -"technique, can be used to create bacon. Not safe to consume in its current " -"raw form." +"The heavily disputed king of red wines. Pairs well with red meats and " +"pasta." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "slab of raw cured porkbelly" -msgid_plural "slabs of raw cured porkbelly" +msgid "pinot noir" +msgid_plural "pinot noir" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for slab of raw cured porkbelly +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" -"Porkbelly that has been preserved and flavored with salt & sugar in order to" -" withdraw the moisture from the first layer. Still raw, it is ready for " -"smoking into bacon." +"Prized by collectors and adored by critics, it is one of the rarer and more " +"elegant wines." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "large slab of uncut bacon" -msgid_plural "large slabs of uncut bacon" +msgid "marsala" +msgid_plural "marsala" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large slab of uncut bacon +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A huge slab of uncut smoked bacon. You can eat as is, but it would be more " -"efficient to cut it into smaller portions with a knife." +msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "slab of raw curing porkbelly" -msgid_plural "slices of raw curing porkbelly" +msgid "vermouth" +msgid_plural "vermouth" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for slab of raw curing porkbelly. +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" -"You pat off a bit of extra brine from the slice; this piece of meat is now " -"fully cured." +"A soft wine with a pleasant herbal flavor and aroma. It is a common " +"cocktail ingredient, and can be used as a substitute for white wine." msgstr "" -#. ~ Use action not_ready_msg for slab of raw curing porkbelly. #: lang/json/COMESTIBLE_from_json.py -msgid "The meat isn't fully cured yet." -msgstr "" +msgid "barley wine" +msgid_plural "barley wine" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for slab of raw curing porkbelly +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Porkbelly in the process of becoming fully cured with salt & sugar, capable " -"of becoming bacon. The flavor is slowly developing at this stage, and is " -"significantly unpleasant with the residue salt. Activate it once completed " -"to make use of the final product." +msgid "A strong ale." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "scrap of meat" -msgid_plural "scraps of meat" +msgid "whiskey" +msgid_plural "whiskey" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for scrap of meat +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a tiny scrap of edible meat. It's not much, but it'll do in a " -"pinch." +"A distilled grain alcohol, made from, by, and for real Southern colonels!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of mutant meat" -msgid_plural "chunks of mutant meat" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "vodka" +msgid_plural "vodka" +msgstr[0] "горілка" +msgstr[1] "горілки" +msgstr[2] "горілки" +msgstr[3] "горілка" -#. ~ Description for chunk of mutant meat +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py -msgid "Meat from a heavily mutated animal." +msgid "" +"A beverage of alcohol, water, and not much else. In America, men make " +"vodka, but in Soviet Russia, vodka makes the man." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutant blood" -msgid_plural "mutant blood" +msgid "gin" +msgid_plural "gin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py -msgid "Fresh blood extracted from a heavily mutated creature." +msgid "" +"An alcoholic beverage flavored with juniper berries. It smells faintly of " +"berries, but mostly booze." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "scrap of mutant meat" -msgid_plural "scraps of mutant meat" +msgid "rum" +msgid_plural "rum" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for scrap of mutant meat +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A tiny scrap of meat from a heavily mutated animal. It smells unappealing, " -"to say the least." +"A distilled alcoholic beverage made from fermenting molasses. Drinking it " +"might make you feel like a pirate. Or not." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutant humanoid meat" -msgid_plural "mutant humanoid meats" +msgid "tequila" +msgid_plural "tequila" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mutant humanoid meat +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" -"Freshly butchered from the body of a heavily mutated creature that was " -"unsettlingly humanoid in appearance. It has odd bits of fur and other " -"tissue lodged in it that clearly don't belong. You'd have to be crazy or " -"starving to eat this." +"A distilled alcoholic beverage made from a succulent plant with spiky " +"leaves. Don't eat the worm! Wait, there's no worm in this bottle." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutant human blood" -msgid_plural "mutant human blood" +msgid "triple sec" +msgid_plural "triple sec" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py -msgid "Fresh blood extracted from a heavily mutated human." +msgid "An orange flavored liquor used in many mixed drinks." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked cretin" -msgid_plural "cooked cretins" +msgid "cheap wine" +msgid_plural "cheap wine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked cretin +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Cooked meat from a heavily mutated humanoid. Now that the worst bits have " -"been picked out, it's probably digestible, if not very appetizing." +msgid "Really cheap fortified wine." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of tainted mutant meat" -msgid_plural "chunks of tainted mutant meat" +msgid "strong mixed alcohol" +msgid_plural "strong mixed alcohol" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py -msgid "cooked tainted mutant meat" -msgid_plural "cooked tainted mutant meats" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Strong alcoholic drinks, mixed with no regard for taste." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "smoked tainted mutant meat" -msgid_plural "smoked tainted mutant meats" +msgid "weak mixed alcohol" +msgid_plural "weak mixed alcohol" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for smoked tainted mutant meat -#: lang/json/COMESTIBLE_from_json.py -msgid "Rotten mutant meat that has been heavily smoked for preservation." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py lang/json/snippet_from_json.py -msgid "butchery refuse" -msgid_plural "butchery refuse" -msgstr[0] "відходи від патрання" -msgstr[1] "відходи від патрання" -msgstr[2] "відходи від патрання" -msgstr[3] "відходи від патрання" - -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " -"matter like hair and claws, leftover from the butchering process. Eating it" -" isn't even worth thinking about, but disposing of it might be a concern as " -"it could attract vermin." +msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked meat" -msgid_plural "cooked meats" +msgid "fruit wine" +msgid_plural "fruit wine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked meat +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a chunk of freshly cooked meat. It's filling and nutritious, but " -"unseasoned and a bit bland." +"Cheap booze made from fermented fruit juice. Tastes just like it sounds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked fatty meat" -msgid_plural "cooked fatty meats" +msgid "brandy" +msgid_plural "brandy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked fatty meat +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a chunk of freshly cooked fatty meat. Although absent of vitamins, " -"it is very filling and delightfully greasy." +"Wine that has been distilled to a higher proof. Great as an after-dinner " +"drink, but packs a punch." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked scrap of meat" -msgid_plural "cooked scraps of meat" +msgid "Irish coffee" +msgid_plural "Irish coffee" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py -msgid "cooked mutant meat" -msgid_plural "cooked mutant meats" +msgid "" +"Sweetened coffee and whiskey topped with milk. Start your day the closeted " +"alcoholic way!" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "Long Island iced tea" +msgid_plural "Long Island iced tea" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked mutant meat +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py -msgid "This is a cooked chunk of meat from a mutated animal." +msgid "" +"A blend of incredibly strong-flavored liquors that somehow tastes like none " +"of them. It contains no tea, but the inclusion of cola gives it a tea-like " +"color." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked scrap of mutant meat" -msgid_plural "cooked scraps of mutant meat" +msgid "screwdriver cocktail" +msgid_plural "screwdriver cocktails" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked scrap of mutant meat +#. ~ Description for screwdriver cocktail #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a tiny scrap of cooked mutant meat. It is small enough that it's " -"hard to tell how disgusting it is." +"A mix of orange juice and vodka. It's the surreptitious drunkard mechanic's" +" drink of choice." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw offal" -msgid_plural "raw offals" +msgid "wild apple" +msgid_plural "wild apple" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw offal +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Offal is uncooked internal organs and entrails. It's filled with essential " -"vitamins, but most people consider it a bit gross unless very carefully " -"prepared." +msgid "Like apple cider, only with vodka." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked offal" -msgid_plural "cooked offal" +msgid "rum & cola" +msgid_plural "rum & cola" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is freshly cooked organ meat and entrails. It's filled with essential " -"vitamins, but most people consider it a bit gross unless very carefully " -"prepared." +msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutant organs" -msgid_plural "mutant organs" +msgid "beer" +msgid_plural "beer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py -msgid "These organs came from a giant mutant bug." +msgid "" +"A grain alcohol flavored with hops. It's best served cold, in a glass, and " +"with a lime - but you're not that lucky." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pickled offal" -msgid_plural "pickled offal" +msgid "spiced mead" +msgid_plural "spiced mead" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a mass of entrails and organ meat, preserved in brine. Packed with " -"essential vitamins, and although it looks like a lab specimen, it actually " -"tastes pretty palatable." +"Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned offal" -msgid_plural "canned offal" +msgid "dandelion wine" +msgid_plural "dandelion wine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" -"Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," -" but filled with essential vitamins." +"A light and delicious wine made from dandelion flowers. Slightly " +"effervescent, it is smooth and crisp." msgstr "" +"Легке і смачне вино, виготовлене із квіток кульбаби. Дещо ігристе, воно " +"м'яке і освіжаюче." #: lang/json/COMESTIBLE_from_json.py -msgid "stomach" -msgid_plural "stomachs" +msgid "burdock wine" +msgid_plural "burdock wine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for stomach +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py -msgid "The stomach of a woodland creature. It is surprisingly durable." +msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "large stomach" -msgid_plural "large stomachs" +msgid "pine wine" +msgid_plural "pine wine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large stomach +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py -msgid "The stomach of a large woodland creature. It is surprisingly durable." +msgid "" +"A potent wine flavored with pine resin. Bold and pungent, its biting taste " +"and strong aroma takes some getting used to." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "meat jerky" -msgid_plural "meat jerky" +msgid "homebrew beer" +msgid_plural "homebrew beer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py -msgid "jerk jerky" -msgid_plural "jerk jerky" +msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "moonshine" +msgid_plural "moonshine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py -msgid "talking animal jerky" -msgid_plural "talking animal jerky" +msgid "" +"Only the strongest, purest, good ol' fashioned hooch, distilled from corn " +"and sugar. Guaranteed to make you forget about the whole Cataclysm thing, " +"or you get your vision back." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "European pilsner" +msgid_plural "European pilsner" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py -msgid "monster jerky" -msgid_plural "monster jerky" +msgid "" +"A lager beer imported from Europe. Best served cold, in a glass - but " +"you're not that lucky." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "American pale ale" +msgid_plural "American pale ale" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" -"Salty dried meat that lasts for a long time, but will make you thirsty." +"A tasty craft beer. Best served cold, in a glass - but you're not that " +"lucky." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "salted fish" -msgid_plural "salted fish" +msgid "India pale ale" +msgid_plural "India pale ale" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" -"Salty dried fish that lasts for a long time, but will make you thirsty." +"A very flavorful microbrewed beer. Best served cold, in a glass - but " +"you're not that lucky." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "smoked meat" -msgid_plural "smoked meats" +msgid "stout" +msgid_plural "stout" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py -msgid "smoked sucker" -msgid_plural "smoked sucker" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A tasty craft beer, as dark in color as the days ahead." +msgstr "" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "smoked Narnian" -msgid_plural "smoked Narnian" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Belgian ale" +msgid_plural "Belgian ale" +msgstr[0] "бельгійський ель" +msgstr[1] "бельгійського елю" +msgstr[2] "бельгійського елю" +msgstr[3] "бельгійський ель" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "%s, mutant" -msgid_plural "%s, mutant" +msgid "" +"A flavorful and filling beer brewed by monks in Belgium. Best served in a " +"goblet." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "imperial stout" +msgid_plural "imperial stout" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for smoked meat +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" -"Tasty meat that has been heavily smoked for preservation. It could be " -"further smoked to dehydrate it completely." +"A very flavorful beer that has been aged in bourbon barrels. It is as black" +" as midnight on a moonless night and has the viscosity of oil. While very " +"tasty, it also has an alcohol content on the level with wine." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "smoked fish" -msgid_plural "smoked fish" +msgid "strawberry surprise" +msgid_plural "strawberry surprises" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for strawberry surprise #: lang/json/COMESTIBLE_from_json.py msgid "" -"Tasty fish that has been heavily smoked for long term preservation. It " -"could be further smoked to dehydrate it completely." +"Strawberries left to ferment with a few other choice ingredients offer up a " +"surprisingly palatable mixture; you barely even have to force yourself to " +"drink it after the first few gulps." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "piece of raw lung" -msgid_plural "pieces of raw lung" +msgid "boozeberry" +msgid_plural "boozeberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for piece of raw lung +#. ~ Description for boozeberry #: lang/json/COMESTIBLE_from_json.py msgid "" -"A portion of lung from an animal. It's spongy and pink, and spoils very " -"quickly. It can be a delicacy if properly prepared - but if improperly " -"prepared, it's a chewy lump of flavorless connective tissue." +"This fermented blueberry mixture is surprisingly hearty, though the soup-" +"like consistency is slightly unsettling no matter how much you drink." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked piece of lung" -msgid_plural "cooked pieces of lung" +msgid "single malt whiskey" +msgid_plural "single malt whiskey" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked piece of lung +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py -msgid "" -" Prepared in this way, it's a chewy grayish lump of flavorless connective " -"tissue. It doesn't look any tastier than it did raw, but the parasites are " -"all cooked out." +msgid "Only the finest whiskey straight from the bung." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "piece of raw mutant lung" -msgid_plural "pieces of raw mutant lung" +msgid "single pot still Irish whiskey" +msgid_plural "single pot still Irish whiskey" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py -msgid "cooked piece of mutant lung" -msgid_plural "cooked pieces of mutant lung" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A whiskey made from a mixed mash of malted and unmalted barley." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutant lungs" -msgid_plural "mutant lungs" +msgid "cheap whiskey" +msgid_plural "cheap whiskey" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py -msgid "You're pretty sure this is lung tissue." +msgid "Really cheap blended whiskey." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw liver" -msgid_plural "raw livers" +msgid "Canadian whiskey" +msgid_plural "Canadian whiskey" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw liver +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py -msgid "" -"The liver from an animal. Although many dislike the texture, it's one of " -"the more vitamin rich parts of the animal. It is very good in sausages, but" -" maybe a little less appetizing when cooked on its own." +msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked liver" -msgid_plural "cooked livers" +msgid "sherry" +msgid_plural "sherry" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked liver +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" -"Chock-full of A- and B-Vitamins! Cooked liver isn't all that bad, depending" -" on how you feel about the texture, but this is probably the least fancy way" -" to do it." +"East India Solera. A true drink of a British gentleman. Sherry, Niles?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutant liver" -msgid_plural "mutant livers" +msgid "Bristol Cream" +msgid_plural "Bristol Cream" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py -msgid "cooked mutant liver" -msgid_plural "cooked mutant livers" +msgid "" +"A fine sherry that has been aged in American oak casks and bottled in " +"Bristol, England." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "Madeira wine" +msgid_plural "Madeira wine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py -msgid "raw brains" -msgid_plural "raw brains" -msgstr[0] "сирі мізки" -msgstr[1] "сирих мізків" -msgstr[2] "сирих мізків" -msgstr[3] "сирі мізки" - -#. ~ Description for {'str_sp': 'raw brains'} -#: lang/json/COMESTIBLE_from_json.py -msgid "The brain from an animal. You wouldn't want to eat this raw…" +msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked brains" -msgid_plural "cooked brains" +msgid "fancy hobo" +msgid_plural "fancy hobo" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Now you can emulate those zombies you love so much! Preparing brain for " -"eating is challenging, and this doesn't seem to be the best way to do it." +msgid "This definitely tastes like a hobo drink." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw mutant brains" -msgid_plural "raw mutant brains" +msgid "kalimotxo" +msgid_plural "kalimotxo" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py -msgid "cooked mutant brains" -msgid_plural "cooked mutant brains" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A mix of equal parts wine and cola. It's not as bad as some might imagine, " +"and pretty popular among young and/or poor people in some countries." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw kidney" -msgid_plural "raw kidneys" +msgid "bee's knees" +msgid_plural "bee's knees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw kidney +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" -"The kidney from an animal. Preparing it for cooking is a challenge unless " -"you want the kitchen to smell strongly of urine." +"This cocktail dates from the Prohibition era. Gin, honey and lemon in a " +"delightful mix." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked kidney" -msgid_plural "cooked kidneys" +msgid "whiskey sour" +msgid_plural "whiskey sours" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked kidney +#. ~ Description for whiskey sour #: lang/json/COMESTIBLE_from_json.py -msgid "No, this is not beans." +msgid "A mixed drink made of whiskey and lemon juice." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw mutant kidney" -msgid_plural "raw mutant kidney" +msgid "honeygold brew" +msgid_plural "honeygold brews" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for honeygold brew #: lang/json/COMESTIBLE_from_json.py -msgid "cooked mutant kidney" -msgid_plural "cooked mutant kidney" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A mixed drink containing all the advantages of its ingredients and none of " +"their disadvantages. It tastes great and it's a good source of nourishment." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw sweetbread" -msgid_plural "raw sweetbreads" +msgid "honey ball" +msgid_plural "honey balls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw sweetbread +#. ~ Description for honey ball #: lang/json/COMESTIBLE_from_json.py msgid "" -"Sweetbreads are the thymus or pancreas of an animal. These are a delicacy, " -"if prepared properly." +"Droplet shaped ant food. It's like a thick balloon the size of a baseball, " +"filled with sticky liquid. Unlike bee honey, this has mostly a sour taste, " +"probably because ants feed upon a variety of things." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked sweetbread" -msgid_plural "cooked sweetbreads" +msgid "spiked eggnog" +msgid_plural "spiked eggnogs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked sweetbread -#: lang/json/COMESTIBLE_from_json.py -msgid "Normally a delicacy, it needs a little… something." -msgstr "" - -#. ~ Description for {'str_sp': 'blood'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Blood, possibly that of a human. Disgusting!" -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "bone" -msgid_plural "bones" -msgstr[0] "кістка" -msgstr[1] "кістки" -msgstr[2] "кісток" -msgstr[3] "кістка" - -#. ~ Description for bone +#. ~ Description for spiked eggnog #: lang/json/COMESTIBLE_from_json.py msgid "" -"A bone from some creature or other. Could be used to make some stuff, like " -"needles." +"Smooth and rich, this spoon-coating mixture of milk, cream, eggs, and booze " +"is a popular traditional holiday drink. Having been fortified with alcohol," +" it will keep for a long time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of fat" -msgid_plural "chunks of fat" -msgstr[0] "шматок жиру" -msgstr[1] "шматки жиру" -msgstr[2] "шматків жиру" -msgstr[3] "шматок жиру" +msgid "martini" +msgid_plural "martinis" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for chunk of fat +#. ~ Description for martini #: lang/json/COMESTIBLE_from_json.py msgid "" -"Freshly butchered fat. You could eat it raw, but it is better used as an " -"ingredient in other foods or projects." +"This is a popular cocktail made with gin and dry vermouth, dating from the " +"Prohibition era." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tallow" -msgid_plural "tallows" +msgid "bloody mary cocktail" +msgid_plural "bloody mary cocktails" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tallow +#. ~ Description for bloody mary cocktail #: lang/json/COMESTIBLE_from_json.py msgid "" -"A smooth white block of cleaned and rendered animal fat. It will remain " -"edible for a very long time, and can be used as an ingredient in many foods " -"and projects." +"Tomato juice mixed with vodka and some spices. Hangover cure of choice for " +"many." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lard" -msgid_plural "lards" +msgid "hard seltzer" +msgid_plural "hard seltzer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lard +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A smooth white block of dry-rendered animal fat. It will remain edible for " -"a very long time, and can be used as an ingredient in many foods and " -"projects." +msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of mutant fat" -msgid_plural "chunks of mutant fat" +msgid "pumpkin muffin" +msgid_plural "pumpkin muffin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chunk of mutant fat +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Freshly butchered fat from a heavily mutated animal. It smells, if " -"anything, even more disgusting than the rest of the mutant. There are " -"little puddles of unidentified oils dripping from it." +msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutant tallow" -msgid_plural "mutant tallows" +msgid "donut holes" +msgid_plural "donut holes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mutant tallow +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" -"A smooth white block of cleaned and rendered fat sourced from a mutant " -"animal. It will remain edible for a very long time, and can be used as an " -"ingredient in many foods and projects." +"These balls of dough have been cut into shape, covered with sugar, and " +"cooked to a crisp. A staple of fairgrounds everywhere." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutant lard" -msgid_plural "mutant lards" +msgid "sourdough bread" +msgid_plural "sourdough bread" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mutant lard +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" -"A smooth white block of dry-rendered fat sourced from a mutant animal. It " -"will remain edible for a very long time, and can be used as an ingredient in" -" many foods and projects." +"Healthy and filling, with a sharper taste and thicker crust than yeast-only " +"bread." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of mutant humanoid fat" -msgid_plural "chunks of mutant humanoid fat" +msgid "flatbread" +msgid_plural "flatbread" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chunk of mutant humanoid fat +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py -msgid "Freshly butchered fat from a heavily mutated humanoid." +msgid "Simple unleavened bread." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutant humanoid tallow" -msgid_plural "mutant humanoid tallows" +msgid "bread" +msgid_plural "bread" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mutant humanoid tallow +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py -msgid "" -"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." +msgid "Healthy and filling." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutant humanoid lard" -msgid_plural "mutant humanoid lards" +msgid "toast" +msgid_plural "toast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mutant humanoid lard -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A smooth white block of dry-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." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "chunk of tainted meat" -msgid_plural "chunks of tainted meat" -msgstr[0] "шматок зараженого м'яса" -msgstr[1] "шматка зараженого м'яса" -msgstr[2] "шматків зараженого м'яса" -msgstr[3] "шматок зараженого м'яса" - -#. ~ Description for chunk of tainted meat -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Meat that's obviously unhealthy. You could eat it, but it will poison you." -msgstr "" - -#. ~ Description for {'str_sp': 'tainted blood'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Blood that's obviously unhealthy. You could eat it, but it will poison you." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "tainted bone" -msgid_plural "tainted bones" -msgstr[0] "заражена кістка" -msgstr[1] "заражені кістки" -msgstr[2] "заражених кісток" -msgstr[3] "заражена кістка" - -#. ~ Description for tainted bone -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A rotten and brittle bone from some unnatural creature or other. Could be " -"used to make some stuff, like charcoal or glue. You could eat it, but it " -"will poison you." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "tainted fat" -msgid_plural "tainted fats" -msgstr[0] "заражений жир" -msgstr[1] "зараженого жиру" -msgstr[2] "зараженого жиру" -msgstr[3] "заражений жир" - -#. ~ Description for tainted fat +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" -"A watery yellow glob of fat from some unnatural creature or other. You " -"could eat it, but it will poison you." +"A crispy breakfast treat that's a bit dry and would likely go better with " +"some toppings." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tainted tallow" -msgid_plural "tainted tallows" -msgstr[0] "заражене сало" -msgstr[1] "зараженого сала" -msgstr[2] "зараженого сала" -msgstr[3] "заражене сало" +msgid "buttered toast" +msgid_plural "buttered toast" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for tainted tallow +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A smooth grayish block of cleaned and rendered monster fat. It will remain " -"'fresh' for a very long time, and can be used as an ingredient in many " -"projects. You could eat it, but it will poison you." +msgid "Toast with butter spread on top to make it taste better." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "large boiled stomach" -msgid_plural "large boiled stomachs" +msgid "jam toast" +msgid_plural "jam toast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large boiled stomach +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" -"A boiled stomach from an animal, nothing else. It looks all but appetizing." +"A bit of jam on toast to make it less dry and to add more flavor to this " +"breakfast staple." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "boiled large human stomach" -msgid_plural "boiled large human stomachs" +msgid "peanut butter toast" +msgid_plural "peanut butter toast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for boiled large human stomach +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" -"A boiled stomach from a large humanoid creature, nothing else. It looks all" -" but appetizing." +"Peanut butter to give more heartiness and calories to a slice of toast." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "boiled stomach" -msgid_plural "boiled stomachs" +msgid "toad in a hole" +msgid_plural "toad in a hole" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for boiled stomach +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A small boiled stomach from an animal, nothing else. It looks all but " -"appetizing." +msgid "A cooked egg served inside a piece of toast." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "boiled human stomach" -msgid_plural "boiled human stomachs" +msgid "PBJ Toast" +msgid_plural "PBJ Toast" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for boiled human stomach +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" -"A small boiled stomach from a human, nothing else. It looks all but " -"appetizing." +"A slice of toast with peanut butter and jelly on top of it with added butter" +" for flavor." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw hide" -msgid_plural "raw hides" +msgid "cornbread" +msgid_plural "cornbread" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw hide +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A carefully folded raw skin harvested from an animal. You can cure it for " -"storage and tanning, or eat it if you're desperate enough." +msgid "Healthy and filling cornbread." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tainted hide" -msgid_plural "tainted hides" +msgid "johnnycake" +msgid_plural "johnnycakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tainted hide +#. ~ Description for johnnycake #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A carefully folded poisonous raw skin harvested from an unnatural creature." -" You can cure it for storage and tanning." +msgid "A dense and tasty fried bread treat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw human skin" -msgid_plural "raw human skins" +msgid "corn tortilla" +msgid_plural "corn tortillas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw human skin +#. ~ Description for corn tortilla #: lang/json/COMESTIBLE_from_json.py -msgid "" -"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." +msgid "A round, thin flatbread made from finely ground corn flour." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw demihuman skin" -msgid_plural "raw demihuman skins" +msgid "hardtack" +msgid_plural "hardtack" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw demihuman skin +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" -"A carefully folded raw skin harvested from a demihuman. You can cure it for" -" storage and tanning, or eat it if you're desperate enough." +"A dry and virtually tasteless bread product capable of remaining edible " +"without spoilage for vast lengths of time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw pelt" -msgid_plural "raw pelts" +msgid "biscuit" +msgid_plural "biscuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw pelt +#. ~ Description for biscuit #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A carefully folded raw skin harvested from a fur-bearing animal. It still " -"has the fur attached. You can cure it for storage and tanning, or eat it if" -" you're desperate enough." +msgid "Wholesome and filling, this home made biscuit is pretty good!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tainted pelt" -msgid_plural "tainted pelts" +msgid "wastebread" +msgid_plural "wastebread" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tainted pelt +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" -"A carefully folded raw skin harvested from a fur-bearing unnatural creature." -" It still has the fur attached and is poisonous. You can cure it for " -"storage and tanning." +"Flour is a commodity these days and to deal with that, most survivors resort" +" to mix it with leftovers of other ingredients and bake it all into bread. " +"It's filling, and that's what matters." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw human pelt" -msgid_plural "raw human pelts" +msgid "brown bread" +msgid_plural "brown bread" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw human pelt +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py -msgid "" -"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." +msgid "A sweet bread, like cake." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "seeping heart" -msgid_plural "seeping hearts" +msgid "hallula" +msgid_plural "hallula" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for seeping heart +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" -"A thick mass of flesh superficially resembling a mammalian heart, covered in" -" dimpled grooves and the size of your fist." +"This type of bread is popular in Chile and Bolivia. Prepared using animal " +"lard or oil, it resembles a large, round scone. In the pre-Cataclysm world," +" it would usually be filled with savory ingredients rather than sweet ones." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "putrid heart" -msgid_plural "putrid hearts" +msgid "mycus wine must" +msgid_plural "mycus wine musts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for putrid heart +#. ~ Description for mycus wine must #: lang/json/COMESTIBLE_from_json.py msgid "" -"A thick, hulking mass of flesh superficially resembling a mammalian heart, " -"covered in ribbed grooves and easily the size of your head. It's still full" -" of, er, whatever passes for blood in jabberwocks, and is heavy in your " -"hands. After everything you've seen lately, you can't help but remember old" -" sayings about eating the hearts of your enemies…" +"Unfermented mycus wine. A goopy white mess, made from fruit of mycus. It " +"smells sweetly of mushrooms." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "desiccated putrid heart" -msgid_plural "desiccated putrid hearts" +msgid "whiskey wort" +msgid_plural "whiskey worts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for desiccated putrid heart +#. ~ Description for whiskey wort #: lang/json/COMESTIBLE_from_json.py msgid "" -"A huge strip of muscle - all that remains of a putrid heart that has been " -"sliced open and drained of blood. It could be eaten if you're hungry, but " -"looks *disgusting*." +"Unfermented whiskey. The base of a fine drink. Not the traditional " +"preparation, but you don't have the time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "alien fronds" -msgid_plural "alien fronds" +msgid "whiskey wash" +msgid_plural "whiskey washes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for whiskey wash #: lang/json/COMESTIBLE_from_json.py -msgid "" -"The fleshy fronds harvested from an alien plant. Eating these membranous " -"leaves and gut-like stems is likely a terrible idea, and yet they have a " -"paradoxically pleasant and inviting sweet smell. Might be non-vegan." +msgid "Fermented, but not distilled whiskey. No longer tastes sweet." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "leech flower" -msgid_plural "leech flowers" +msgid "gin mash" +msgid_plural "gin mashes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for leech flower. -#: lang/json/COMESTIBLE_from_json.py -msgid "Even a close smell of this alien flower feels deeply intoxicating." -msgstr "" - -#. ~ Description for leech flower +#. ~ Description for gin mash #: lang/json/COMESTIBLE_from_json.py -msgid "" -"The alien beauty of this indigo flower is betrayed by its disgustingly " -"fleshy composition. What from afar appear to be petals are but layered " -"membranes of transparent veiny flesh, given color by a covering of blue " -"iridescent ichor. Even if it is certainly poisonous, it has a pleasant " -"medicinal smell to it." +msgid "Unfermented gin mash. Fermenting it will produce gin." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "leech bark" -msgid_plural "scraps of leech bark" +msgid "gin wash" +msgid_plural "gin washes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for leech bark +#. ~ Description for gin wash #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dry and tough bark matter harvested from an alien plant. It is slightly " -"translucent, and if placed against the light you can distinguish glistening " -"blue veins running through it." +"Gin wash, after the junipers have had time to add flavor, ready to be " +"distilled or drunk as is." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "demihuman stomach" -msgid_plural "demihuman stomachs" +msgid "vodka wort" +msgid_plural "vodka worts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for demihuman stomach +#. ~ Description for vodka wort #: lang/json/COMESTIBLE_from_json.py -msgid "The stomach of an intelligent demihuman. It is surprisingly durable." +msgid "" +"Unfermented vodka. Water with sugar from enzymatic breakdown of malted " +"grains or just added in pure form." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "large demihuman stomach" -msgid_plural "large demihuman stomachs" +msgid "vodka wash" +msgid_plural "vodka washes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for vodka wash #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of demihuman fat" -msgid_plural "chunks of demihuman fat" +msgid "Fermented, but not distilled vodka. No longer tastes sweet." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "rum wort" +msgid_plural "rum worts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chunk of demihuman fat +#. ~ Description for rum wort #: lang/json/COMESTIBLE_from_json.py -msgid "Freshly harvested from a demihuman body." +msgid "" +"Unfermented rum. Sugar caramel or molasses brewed into sweet water. " +"Basically a saccharine soup." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "demihuman tallow" -msgid_plural "demihuman tallows" +msgid "rum wash" +msgid_plural "rum washes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for demihuman tallow +#. ~ Description for rum wash #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A smooth white block of cleaned and rendered demihuman fat. It will remain " -"edible for a very long time, and can be used as an ingredient in many foods " -"and projects." +msgid "Fermented, but not distilled rum. No longer tastes sweet." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "demihuman lard" -msgid_plural "demihuman lards" +msgid "fruit wine must" +msgid_plural "fruit wine musts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for demihuman lard +#. ~ Description for fruit wine must #: lang/json/COMESTIBLE_from_json.py msgid "" -"A smooth white block of dry-rendered demihuman fat. It will remain edible " -"for a very long time, and can be used as an ingredient in many foods and " -"projects." +"Unfermented fruit wine. A sweet, boiled juice made from berries or fruit." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "demihuman flesh" -msgid_plural "demihuman flesh" +msgid "spiced mead must" +msgid_plural "spiced mead musts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for spiced mead must #: lang/json/COMESTIBLE_from_json.py -msgid "Freshly butchered from a demihuman body." +msgid "Unfermented spiced mead. Diluted honey and yeast." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "demihuman blood" -msgid_plural "demihuman blood" +msgid "dandelion wine must" +msgid_plural "dandelion wine musts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for dandelion wine must #: lang/json/COMESTIBLE_from_json.py -msgid "Fresh blood extracted from a demihuman." +msgid "" +"Unfermented dandelion wine. A sticky mixture of water, sugar, yeast, and " +"dandelion petals." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked mongrel" -msgid_plural "cooked mongrels" +msgid "burdock wine must" +msgid_plural "burdock wine musts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked mongrel +#. ~ Description for burdock wine must #: lang/json/COMESTIBLE_from_json.py msgid "" -"A freshly cooked slice of something close to being a real person. Tastes " -"like long pig." +"Unfermented burdock wine. A sticky mixture of water, sugar, yeast, and " +"burdock roots." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "boiled demihuman stomach" -msgid_plural "boiled demihuman stomachs" +msgid "pine wine must" +msgid_plural "pine wine musts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for boiled demihuman stomach -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A boiled stomach from a demihuman, nothing else. It looks all but " -"appetizing." -msgstr "" - -#. ~ Description for boiled demihuman stomach +#. ~ Description for pine wine must #: lang/json/COMESTIBLE_from_json.py msgid "" -"A small boiled stomach from a demihuman, nothing else. It looks all but " -"appetizing." +"Unfermented pine wine. A sticky mixture of water, sugar, yeast, and pine " +"resins." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hot corn casserole" -msgid_plural "hot corn casserole" +msgid "beer wort" +msgid_plural "beer worts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for beer wort #: lang/json/COMESTIBLE_from_json.py msgid "" -"It’s cheesy and indulgent, although the mix of tender kernels of corn, " -"veggies, fresh herbs, and a pop of heat keep it in check so it’s not too " -"heavy for the apocalypse." +"Unfermented homebrew beer. A boiled and chilled mash of malted barley, " +"spiced with some fine hops." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fish noodle casserole" -msgid_plural "fish noodle casserole" +msgid "moonshine mash" +msgid_plural "moonshine mashes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for moonshine mash #: lang/json/COMESTIBLE_from_json.py msgid "" -"Fish noodle casserole is a casserole primarily made with pasta and canned " -"tuna, with canned peas and corn sometimes added." +"Unfermented moonshine. Just some water, sugar and corn, like good ol' " +"aunt's recipe." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cereal" -msgid_plural "cereal" +msgid "moonshine wash" +msgid_plural "moonshine washes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for moonshine wash #: lang/json/COMESTIBLE_from_json.py -msgid "A generic box of cereal, you shouldn't see this." +msgid "" +"Fermented, but not distilled moonshine. Contains all the contaminants you " +"don't want in your moonshine." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Foodplace cereal" -msgid_plural "Foodplace cereal" +msgid "curdling milk" +msgid_plural "curdling milks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for curdling milk #: lang/json/COMESTIBLE_from_json.py msgid "" -"A generic box of Foodplace brand sugary cereal, you shouldn't see this." +"Milk with vinegar and natural rennet added. Used for making cheese if left " +"in a fermenting vat for some time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Snicker-Snacks cereal" -msgid_plural "Snicker-Snacks cereal" +msgid "unfermented vinegar" +msgid_plural "unfermented vinegars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for unfermented vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" -"Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" -" like human food!" +"Mixture of water, alcohol and fruit juice that will eventually become " +"vinegar when fermented in a vat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Carpenter Crunch cereal" -msgid_plural "Carpenter Crunch cereal" +msgid "growing wild yeast" +msgid_plural "growing wild yeasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for growing wild yeast #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " -"\"Breakfast Beaver\" mascot on the box. It tastes kind of like nails." +"Mixture of water, sugar and fruits with some naturally occurring yeast, that" +" will eventually produce a more sizeable yeast culture." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Brantastic cereal" -msgid_plural "Brantastic cereal" +msgid "malting grain" +msgid_plural "malting grain" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" -" breakfast." +msgid "After soaking the grain and waiting, it has finished malting." msgstr "" +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py -msgid "Sugar Chomps cereal" -msgid_plural "Sugar Chomps cereal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "The grain has not malted yet." +msgstr "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " -"Chomps: 8 essential vitamins packed into that rich, fudgy taste!\"" +msgid "Malting grain that can be used for brewing." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Honey Pellet cereal" -msgid_plural "Honey Pellet cereal" +msgid "malted grain" +msgid_plural "malted grain" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" -"Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " -"\"Inconceivable sustenance in tiny morsels of yellow honey.\"" +"Grainy cereal used for malting. A staple of brewing everywhere. It can " +"also be ground into flour." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Fructose Flakes cereal" -msgid_plural "Fructose Flakes" +msgid "soaking dandelion" +msgid_plural "soaking dandelion" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Fructose Flakes cereal +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" -"Foodplace brand Fructose Flakes cereal. Fortified with energy enriched " -"FoodSyrup™ that supports life most efficiently." +"After soaking the dandelions in boiling water, the juice can be used for " +"making wine." msgstr "" +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py -msgid "Foodios cereal" -msgid_plural "Foodios cereal" +msgid "The dandelions need more time." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "soaked dandelion" +msgid_plural "soaked dandelion" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py -msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" +msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sugary cereal" -msgid_plural "sugary cereals" +msgid "meat/fish" +msgid_plural "meat/fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sugary cereal -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Sugary breakfast cereal with marshmallows. It takes you back to your " -"childhood." -msgstr "" - #: lang/json/COMESTIBLE_from_json.py -msgid "wheat cereal" -msgid_plural "wheat cereal" +msgid "fillet of fish" +msgid_plural "fillets of fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for fillet of fish #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " -"your heart." +msgid "Freshly caught fish. Makes a passable meal raw." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "corn cereal" -msgid_plural "corn cereals" +msgid "cooked fish" +msgid_plural "cooked fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for corn cereal +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py -msgid "Plain cornflake cereal. They're not that good, but it beats nothing." +msgid "Freshly cooked fish. Very nutritious." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/ammunition_type_from_json.py -msgid "milk" -msgid_plural "milk" +#: lang/json/COMESTIBLE_from_json.py +msgid "human stomach" +msgid_plural "human stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for human stomach #: lang/json/COMESTIBLE_from_json.py -msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." +msgid "The stomach of a human. It is surprisingly durable." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chocolate milk" -msgid_plural "chocolate milk" +msgid "large human stomach" +msgid_plural "large human stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for large human stomach +#. ~ Description for large demihuman stomach #: lang/json/COMESTIBLE_from_json.py -msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." +msgid "The stomach of a large humanoid creature. It is surprisingly durable." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "reconstituted milk" -msgid_plural "reconstituted milk" +msgid "chunk of human fat" +msgid_plural "chunks of human fat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for chunk of human fat #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Baby cow food, appropriated for adult humans. This milk has been " -"reconstituted from a processed milk. Spoils rapidly." +msgid "Freshly harvested from a human body." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/ammunition_type_from_json.py -msgid "raw milk" -msgid_plural "raw milk" +#: lang/json/COMESTIBLE_from_json.py +msgid "human tallow" +msgid_plural "human tallows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " -"be any fresher unless you drank it straight from the cow, which might upset " -"it. Depending on your dietary sensibilities, you might want to pasteurize " -"or even boil this before drinking." +"A smooth white block of cleaned and rendered human fat. It will remain " +"edible for a very long time, and can be used as an ingredient in many foods " +"and projects." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "shelf stable milk" -msgid_plural "shelf stable milk" +msgid "human lard" +msgid_plural "human lards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for human lard #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is milk that has been pasteurized at much higher temperatures than " -"normal. It tastes slightly different, but, unopened, will last far longer " -"than regular milk." +"A smooth white block of dry-rendered human fat. It will remain edible for a" +" very long time, and can be used as an ingredient in many foods and " +"projects." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "evaporated milk" -msgid_plural "evaporated milk" +msgid "human flesh" +msgid_plural "human fleshes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for human flesh #: lang/json/COMESTIBLE_from_json.py -#, no-python-format -msgid "Milk that's had about 60% of its water removed prior to canning." -msgstr "" +msgid "Freshly butchered from a human body." +msgstr "Свіжий шматок плоті, що вирізаний з людського тіла." #: lang/json/COMESTIBLE_from_json.py -msgid "buttermilk" -msgid_plural "buttermilk" +msgid "cooked creep" +msgid_plural "cooked creeps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for cooked creep #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is cultured milk defatted either due to churning or curdling. Spoils " -"quickly." +msgid "A freshly cooked slice of some unpleasant person. Tastes great." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "yogurt" -msgid_plural "yogurts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "chunk of meat" +msgid_plural "chunks of meat" +msgstr[0] "шматок м'яса" +msgstr[1] "шматки м'яса" +msgstr[2] "шматків м'яса" +msgstr[3] "шматок м'яса" -#. ~ Description for yogurt +#. ~ Description for chunk of meat #: lang/json/COMESTIBLE_from_json.py -msgid "Delicious fermented dairy. It tastes of vanilla." +msgid "" +"Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "" +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py -msgid "butter" -msgid_plural "butter" +msgid "Fresh blood extracted from a living creature." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "chunk of porkbelly" +msgid_plural "chunks of porkbelly" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for chunk of porkbelly #: lang/json/COMESTIBLE_from_json.py msgid "" -"A yellow stick of milkfat and milk solids, usually made from cow's milk." +"Fatty cut of pork from the belly, popular in some cuisine. With proper " +"technique, can be used to create bacon. Not safe to consume in its current " +"raw form." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw butter" -msgid_plural "raw butter" +msgid "slab of raw cured porkbelly" +msgid_plural "slabs of raw cured porkbelly" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for slab of raw cured porkbelly #: lang/json/COMESTIBLE_from_json.py msgid "" -"A white stick of raw milkfat and milk solids, made directly from cow's milk." +"Porkbelly that has been preserved and flavored with salt & sugar in order to" +" withdraw the moisture from the first layer. Still raw, it is ready for " +"smoking into bacon." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "ghee" -msgid_plural "ghee" +msgid "large slab of uncut bacon" +msgid_plural "large slabs of uncut bacon" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for large slab of uncut bacon #: lang/json/COMESTIBLE_from_json.py msgid "" -"Clarified butter, free from milk solids and water. Will last a very long " -"time." +"A huge slab of uncut smoked bacon. You can eat as is, but it would be more " +"efficient to cut it into smaller portions with a knife." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pudding" -msgid_plural "puddings" +msgid "slab of raw curing porkbelly" +msgid_plural "slices of raw curing porkbelly" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pudding +#. ~ Use action msg for slab of raw curing porkbelly. #: lang/json/COMESTIBLE_from_json.py -msgid "Sugary, fermented dairy. A wonderful treat." +msgid "" +"You pat off a bit of extra brine from the slice; this piece of meat is now " +"fully cured." msgstr "" +#. ~ Use action not_ready_msg for slab of raw curing porkbelly. #: lang/json/COMESTIBLE_from_json.py -msgid "curdled milk" -msgid_plural "curdled milks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "The meat isn't fully cured yet." +msgstr "" -#. ~ Description for curdled milk +#. ~ Description for slab of raw curing porkbelly #: lang/json/COMESTIBLE_from_json.py msgid "" -"Milk that has been curdled with vinegar and rennet. It still needs to be " -"salted and drained of whey." +"Porkbelly in the process of becoming fully cured with salt & sugar, capable " +"of becoming bacon. The flavor is slowly developing at this stage, and is " +"significantly unpleasant with the residue salt. Activate it once completed " +"to make use of the final product." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hard cheese" -msgid_plural "hard cheese" +msgid "scrap of meat" +msgid_plural "scraps of meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for scrap of meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"Hard, dry cheese made to last, unlike modern processed cheese. Will make " -"you thirsty though." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "cheese" -msgid_plural "cheese" -msgstr[0] "сир" -msgstr[1] "сиру" -msgstr[2] "сиру" -msgstr[3] "сир" - -#. ~ Description for {'str_sp': 'cheese'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A block of yellow processed cheese." +"This is a tiny scrap of edible meat. It's not much, but it'll do in a " +"pinch." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "quesadilla" -msgid_plural "quesadillas" +msgid "chunk of mutant meat" +msgid_plural "chunks of mutant meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for quesadilla +#. ~ Description for chunk of mutant meat #: lang/json/COMESTIBLE_from_json.py -msgid "A tortilla filled with cheese and lightly grilled." +msgid "Meat from a heavily mutated animal." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "powdered milk" -msgid_plural "powdered milk" +msgid "mutant blood" +msgid_plural "mutant blood" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py -msgid "Dehydrated milk powder. Mix with water to make drinkable milk." +msgid "Fresh blood extracted from a heavily mutated creature." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "condensed milk" -msgid_plural "condensed milk" +msgid "scrap of mutant meat" +msgid_plural "scraps of mutant meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for scrap of mutant meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"Cow's milk that has been partly dehydrated to vastly increase its shelf " -"life, and also sweetened." +"A tiny scrap of meat from a heavily mutated animal. It smells unappealing, " +"to say the least." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "whipped cream" -msgid_plural "whipped cream" +msgid "mutant humanoid meat" +msgid_plural "mutant humanoid meats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for mutant humanoid meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"Cream that has been whipped, perfect for frosting cakes and pies. Either " -"store-bought or homemade." +"Freshly butchered from the body of a heavily mutated creature that was " +"unsettlingly humanoid in appearance. It has odd bits of fur and other " +"tissue lodged in it that clearly don't belong. You'd have to be crazy or " +"starving to eat this." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "heavy cream" -msgid_plural "heavy cream" +msgid "mutant human blood" +msgid_plural "mutant human blood" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py -msgid " Cream that has been skimmed from the top of raw milk left to sit." +msgid "Fresh blood extracted from a heavily mutated human." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "apple cider" -msgid_plural "apple cider" +msgid "cooked cretin" +msgid_plural "cooked cretins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for cooked cretin #: lang/json/COMESTIBLE_from_json.py -msgid "Pressed from fresh apples. Tasty and nutritious." +msgid "" +"Cooked meat from a heavily mutated humanoid. Now that the worst bits have " +"been picked out, it's probably digestible, if not very appetizing." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "almond milk" -msgid_plural "almond milks" +msgid "chunk of tainted mutant meat" +msgid_plural "chunks of tainted mutant meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for almond milk #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Milk some almonds? Not quite, but blend them with water, yes! A dairy-free" -" alternative strong in calcium! Rival to soy milk." -msgstr "" +msgid "cooked tainted mutant meat" +msgid_plural "cooked tainted mutant meats" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/COMESTIBLE_from_json.py -msgid "soy milk" -msgid_plural "soy milks" +msgid "smoked tainted mutant meat" +msgid_plural "smoked tainted mutant meats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for soy milk +#. ~ Description for smoked tainted mutant meat #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Milk some soybeans? Not quite, but blend them with water, yes! A dairy-" -"free alternative strong in protein! Rival to almond milk." +msgid "Rotten mutant meat that has been heavily smoked for preservation." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "atomic coffee" -msgid_plural "atomic coffee" -msgstr[0] "атомна кава" -msgstr[1] "атомної кави" -msgstr[2] "атомної кави" -msgstr[3] "атомна кава" +#: lang/json/COMESTIBLE_from_json.py lang/json/snippet_from_json.py +msgid "butchery refuse" +msgid_plural "butchery refuse" +msgstr[0] "відходи від патрання" +msgstr[1] "відходи від патрання" +msgstr[2] "відходи від патрання" +msgstr[3] "відходи від патрання" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" -"This serving of coffee has been created using an atomic coffee pot's FULL " -"NUCLEAR brewing cycle. Every possible microgram of caffeine and flavor has " -"been carefully extracted for your enjoyment, using the power of the atom." +"Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " +"matter like hair and claws, leftover from the butchering process. Eating it" +" isn't even worth thinking about, but disposing of it might be a concern as " +"it could attract vermin." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bee balm tea" -msgid_plural "bee balm tea" -msgstr[0] "чай із монарди" -msgstr[1] "чай із монарди" -msgstr[2] "чай із монарди" -msgstr[3] "чай із монарди" +msgid "cooked meat" +msgid_plural "cooked meats" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for cooked meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"A healthy beverage made from bee balm steeped in boiling water. Can be used" -" to reduce negative effects of common cold or flu." +"This is a chunk of freshly cooked meat. It's filling and nutritious, but " +"unseasoned and a bit bland." msgstr "" -"Корисний для здоров'я напій, отриманий заварюванням листків монарди у " -"окропі. Його можна використовувати для зняття негативних ефектів нежитю чи " -"грипу." #: lang/json/COMESTIBLE_from_json.py -msgid "coconut milk" -msgid_plural "coconut milks" +msgid "cooked fatty meat" +msgid_plural "cooked fatty meats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for coconut milk +#. ~ Description for cooked fatty meat #: lang/json/COMESTIBLE_from_json.py -msgid "A dense, sweet creamy sauce, often used in curries." +msgid "" +"This is a chunk of freshly cooked fatty meat. Although absent of vitamins, " +"it is very filling and delightfully greasy." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chai tea" -msgid_plural "chai tea" +msgid "cooked scrap of meat" +msgid_plural "cooked scraps of meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chai tea'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A traditional south Asian mixed-spice tea with milk." -msgstr "" - #: lang/json/COMESTIBLE_from_json.py -msgid "chamomile tea" -msgid_plural "chamomile tea" +msgid "cooked mutant meat" +msgid_plural "cooked mutant meats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for cooked mutant meat #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A healthy beverage made from chamomile flowers steeped in boiling water. " -"Can be used to treat insomnia." +msgid "This is a cooked chunk of meat from a mutated animal." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chocolate drink" -msgid_plural "chocolate drinks" +msgid "cooked scrap of mutant meat" +msgid_plural "cooked scraps of mutant meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chocolate drink +#. ~ Description for cooked scrap of mutant meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"A chocolate flavored beverage made of artificial flavoring and milk " -"byproducts. Shelf stable and vaguely appetizing even when lukewarm." +"This is a tiny scrap of cooked mutant meat. It is small enough that it's " +"hard to tell how disgusting it is." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "coffee" -msgid_plural "coffee" +msgid "raw offal" +msgid_plural "raw offals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for raw offal #: lang/json/COMESTIBLE_from_json.py msgid "" -"The morning ritual of the pre-apocalyptic world, created from coffee " -"cherries through a complex process of seed removal, roasting, grinding, and " -"brewing. Coffee is substantially richer in caffeine than its rival tea." +"Offal is uncooked internal organs and entrails. It's filled with essential " +"vitamins, but most people consider it a bit gross unless very carefully " +"prepared." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "coffee substitute" -msgid_plural "coffee substitute" +msgid "cooked offal" +msgid_plural "cooked offal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" -"Homemade not-coffee created from the Kentucky coffeetree, just like the " -"Meskwaki tribe! Doesn't actually have any caffeine, and is very bitter, but" -" it'll pass in a pinch." +"This is freshly cooked organ meat and entrails. It's filled with essential " +"vitamins, but most people consider it a bit gross unless very carefully " +"prepared." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chicory brew" -msgid_plural "chicory brew" +msgid "mutant organs" +msgid_plural "mutant organs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Toasted, ground chicory root steeped in boiling water. This bitter brew is " -"used as a coffee substitute, though it tastes nothing like coffee." +msgid "These organs came from a giant mutant bug." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dark cola" -msgid_plural "dark colas" +msgid "pickled offal" +msgid_plural "pickled offal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dark cola +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py -msgid "Things go better with cola. Sugar water with caffeine added." +msgid "" +"This is a mass of entrails and organ meat, preserved in brine. Packed with " +"essential vitamins, and although it looks like a lab specimen, it actually " +"tastes pretty palatable." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "energy cola" -msgid_plural "energy colas" +msgid "canned offal" +msgid_plural "canned offal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for energy cola +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" -"It tastes and looks like windshield wiper fluid, but it's loaded to the brim" -" with sugar and caffeine." +"Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," +" but filled with essential vitamins." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cream soda" -msgid_plural "cream sodas" +msgid "stomach" +msgid_plural "stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cream soda +#. ~ Description for stomach #: lang/json/COMESTIBLE_from_json.py -msgid "A caffeinated, carbonated drink, flavored with vanilla." +msgid "The stomach of a woodland creature. It is surprisingly durable." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cranberry juice" -msgid_plural "cranberry juices" +msgid "large stomach" +msgid_plural "large stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cranberry juice +#. ~ Description for large stomach #: lang/json/COMESTIBLE_from_json.py -msgid "Made from real Massachusetts cranberries. Quite sour, but nutritious." +msgid "The stomach of a large woodland creature. It is surprisingly durable." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "crispy cranberry" -msgid_plural "crispy cranberries" +msgid "meat jerky" +msgid_plural "meat jerky" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for crispy cranberry -#: lang/json/COMESTIBLE_from_json.py -msgid "Mixing cranberry juice and lemon-lime soda works out quite well." -msgstr "" - +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "dandelion tea" -msgid_plural "dandelion tea" +msgid "jerk jerky" +msgid_plural "jerk jerky" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "A healthy beverage made from dandelion roots steeped in boiling water." -msgstr "" +msgid "talking animal jerky" +msgid_plural "talking animal jerky" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "dandelion and burdock tea" -msgid_plural "dandelion and burdock tea" +msgid "monster jerky" +msgid_plural "monster jerky" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" -"A healthy beverage made from dandelion and burdock roots steeped in boiling " -"water. The additional ingredient makes it slightly healthier and fun." +"Salty dried meat that lasts for a long time, but will make you thirsty." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "eggnog" -msgid_plural "eggnogs" +msgid "salted fish" +msgid_plural "salted fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for eggnog +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" -"Smooth and rich, this spoon-coating mix of milk, cream, and eggs is a " -"popular traditional holiday drink. While often spiked, it is still " -"delicious on its own. Meant to be stored cold, it will spoil rapidly." +"Salty dried fish that lasts for a long time, but will make you thirsty." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "energy drink" -msgid_plural "energy drinks" +msgid "smoked meat" +msgid_plural "smoked meats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for energy drink +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A heavily caffeinated soft drink. Energy drinks are popular among those who" -" need to stay up late working." -msgstr "" +msgid "smoked sucker" +msgid_plural "smoked sucker" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "atomic energy drink" -msgid_plural "atomic energy drinks" +msgid "smoked Narnian" +msgid_plural "smoked Narnian" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for atomic energy drink +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +#, python-format +msgid "%s, mutant" +msgid_plural "%s, mutant" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for smoked meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"According to the label, this loathsome-tasting beverage is called ATOMIC " -"POWER THIRST. Alongside the lengthy health warning, it promises to make the" -" consumer UNCOMFORTABLY ENERGETIC using ELECTROLYTES and THE POWER OF THE " -"ATOM." +"Tasty meat that has been heavily smoked for preservation. It could be " +"further smoked to dehydrate it completely." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "herbal tea" -msgid_plural "herbal tea" +msgid "smoked fish" +msgid_plural "smoked fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py -msgid "A healthy beverage made from herbs steeped in boiling water." +msgid "" +"Tasty fish that has been heavily smoked for long term preservation. It " +"could be further smoked to dehydrate it completely." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hot chocolate" -msgid_plural "hot chocolate" +msgid "piece of raw lung" +msgid_plural "pieces of raw lung" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for piece of raw lung #: lang/json/COMESTIBLE_from_json.py msgid "" -"Also known as hot cocoa, this heated chocolate beverage is perfect for a " -"cold winter day." +"A portion of lung from an animal. It's spongy and pink, and spoils very " +"quickly. It can be a delicacy if properly prepared - but if improperly " +"prepared, it's a chewy lump of flavorless connective tissue." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pasteurized fruit juice" -msgid_plural "pasteurized fruit juices" +msgid "cooked piece of lung" +msgid_plural "cooked pieces of lung" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pasteurized fruit juice +#. ~ Description for cooked piece of lung #: lang/json/COMESTIBLE_from_json.py msgid "" -"A sweet liquid with a vaguely fruity taste. Having been pasteurized, it " -"will last for a long time." +" Prepared in this way, it's a chewy grayish lump of flavorless connective " +"tissue. It doesn't look any tastier than it did raw, but the parasites are " +"all cooked out." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fruit juice" -msgid_plural "fruit juices" +msgid "piece of raw mutant lung" +msgid_plural "pieces of raw mutant lung" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit juice #: lang/json/COMESTIBLE_from_json.py -msgid "Freshly-squeezed from real fruit! Tasty and nutritious." -msgstr "" +msgid "cooked piece of mutant lung" +msgid_plural "cooked pieces of mutant lung" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/COMESTIBLE_from_json.py -msgid "kompot" -msgid_plural "kompots" +msgid "mutant lungs" +msgid_plural "mutant lungs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for kompot +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py -msgid "Clear juice obtained by cooking fruit in a large volume of water." +msgid "You're pretty sure this is lung tissue." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lemonade" -msgid_plural "lemonade" +msgid "raw liver" +msgid_plural "raw livers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for raw liver #: lang/json/COMESTIBLE_from_json.py msgid "" -"Lemon juice mixed with water and sugar to dull the sourness. Delicious and " -"refreshing." +"The liver from an animal. Although many dislike the texture, it's one of " +"the more vitamin rich parts of the animal. It is very good in sausages, but" +" maybe a little less appetizing when cooked on its own." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lemon-lime soda" -msgid_plural "lemon-lime sodas" +msgid "cooked liver" +msgid_plural "cooked livers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lemon-lime soda +#. ~ Description for cooked liver #: lang/json/COMESTIBLE_from_json.py msgid "" -"Unlike cola this is caffeine free, however it is still carbonated and has " -"plenty of sugar. Not to mention a lemon-lime taste." +"Chock-full of A- and B-Vitamins! Cooked liver isn't all that bad, depending" +" on how you feel about the texture, but this is probably the least fancy way" +" to do it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lotus tea" -msgid_plural "lotus tea" +msgid "mutant liver" +msgid_plural "mutant livers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lotus tea'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A healthy beverage made from lotus flowers steeped in boiling water." -msgstr "" - #: lang/json/COMESTIBLE_from_json.py -msgid "Mexican hot chocolate" -msgid_plural "Mexican hot chocolate" +msgid "cooked mutant liver" +msgid_plural "cooked mutant livers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " -"traces its history to the Maya and Aztecs. Perfect for a cold winter day." +msgid "raw brains" +msgid_plural "raw brains" +msgstr[0] "сирі мізки" +msgstr[1] "сирих мізків" +msgstr[2] "сирих мізків" +msgstr[3] "сирі мізки" + +#. ~ Description for raw brains +#: lang/json/COMESTIBLE_from_json.py +msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "coffee milk" -msgid_plural "coffee milks" +msgid "cooked brains" +msgid_plural "cooked brains" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for coffee milk +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" -"Coffee syrup mixed into milk. It's been the state drink of Rhode Island " -"since 1993." +"Now you can emulate those zombies you love so much! Preparing brain for " +"eating is challenging, and this doesn't seem to be the best way to do it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "milk tea" -msgid_plural "milk teas" +msgid "raw mutant brains" +msgid_plural "raw mutant brains" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for milk tea #: lang/json/COMESTIBLE_from_json.py -msgid "Hot tea with cold milk." -msgstr "" +msgid "cooked mutant brains" +msgid_plural "cooked mutant brains" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/COMESTIBLE_from_json.py -msgid "orange juice" -msgid_plural "orange juices" +msgid "raw kidney" +msgid_plural "raw kidneys" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for orange juice +#. ~ Description for raw kidney #: lang/json/COMESTIBLE_from_json.py -msgid "Freshly-squeezed from real oranges! Tasty and nutritious." +msgid "" +"The kidney from an animal. Preparing it for cooking is a challenge unless " +"you want the kitchen to smell strongly of urine." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "orange soda" -msgid_plural "orange sodas" +msgid "cooked kidney" +msgid_plural "cooked kidneys" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for orange soda +#. ~ Description for cooked kidney #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Unlike cola this is caffeine free, however it is still carbonated, sweet, " -"and tastes vaguely orange-like." +msgid "No, this is not beans." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pine needle tea" -msgid_plural "pine needle tea" +msgid "raw mutant kidney" +msgid_plural "raw mutant kidney" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pine needle tea'} #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A fragrant and healthy beverage made from pine needles steeped in boiling " -"water." -msgstr "" +msgid "cooked mutant kidney" +msgid_plural "cooked mutant kidney" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/COMESTIBLE_from_json.py -msgid "grape drink" -msgid_plural "grape drinks" +msgid "raw sweetbread" +msgid_plural "raw sweetbreads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for grape drink +#. ~ Description for raw sweetbread #: lang/json/COMESTIBLE_from_json.py msgid "" -"A mass-produced grape flavored beverage of artificial origin. Good for when" -" you want something that tastes like fruit, but still don't care about your " -"health." +"Sweetbreads are the thymus or pancreas of an animal. These are a delicacy, " +"if prepared properly." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mycus juice" -msgid_plural "mycus juices" +msgid "cooked sweetbread" +msgid_plural "cooked sweetbreads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mycus juice +#. ~ Description for cooked sweetbread #: lang/json/COMESTIBLE_from_json.py -msgid "Freshly-squeezed from the fruit of the mycus." +msgid "Normally a delicacy, it needs a little… something." msgstr "" +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py -msgid "root beer" -msgid_plural "root beer" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Blood, possibly that of a human. Disgusting!" +msgstr "" -#. ~ Description for {'str_sp': 'root beer'} #: lang/json/COMESTIBLE_from_json.py -msgid "Like cola, but without caffeine. Still not that healthy." +msgid "bone" +msgid_plural "bones" +msgstr[0] "кістка" +msgstr[1] "кістки" +msgstr[2] "кісток" +msgstr[3] "кістка" + +#. ~ Description for bone +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A bone from some creature or other. Could be used to make some stuff, like " +"needles." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "spezi" -msgid_plural "spezis" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "chunk of fat" +msgid_plural "chunks of fat" +msgstr[0] "шматок жиру" +msgstr[1] "шматки жиру" +msgstr[2] "шматків жиру" +msgstr[3] "шматок жиру" -#. ~ Description for spezi +#. ~ Description for chunk of fat #: lang/json/COMESTIBLE_from_json.py msgid "" -"Originating in Germany almost a century ago, this mix of cola and orange " -"soda tastes great." +"Freshly butchered fat. You could eat it raw, but it is better used as an " +"ingredient in other foods or projects." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sports drink" -msgid_plural "sports drinks" +msgid "tallow" +msgid_plural "tallows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sports drink +#. ~ Description for tallow #: lang/json/COMESTIBLE_from_json.py msgid "" -"A flavoured drink consisting of a special blend of electrolytes and simple " -"sugars. It tastes vaguely like fruit with a slight chemical aftertaste." +"A smooth white block of cleaned and rendered animal fat. It will remain " +"edible for a very long time, and can be used as an ingredient in many foods " +"and projects." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "spurge tea" -msgid_plural "spurge tea" +msgid "lard" +msgid_plural "lards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"You no longer need to worry about asthma attacks, at least for a while." -msgstr "" - -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for lard #: lang/json/COMESTIBLE_from_json.py msgid "" -"A healthy beverage made from spurge flowers steeped in boiling water. Can " -"be used to prevent asthma attacks." +"A smooth white block of dry-rendered animal fat. It will remain edible for " +"a very long time, and can be used as an ingredient in many foods and " +"projects." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rehydration drink" -msgid_plural "rehydration drinks" +msgid "chunk of mutant fat" +msgid_plural "chunks of mutant fat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rehydration drink +#. ~ Description for chunk of mutant fat #: lang/json/COMESTIBLE_from_json.py msgid "" -"A basic oral rehydration therapy drink. It will rehydrate you faster than " -"water, but tastes like bottled sweat." +"Freshly butchered fat from a heavily mutated animal. It smells, if " +"anything, even more disgusting than the rest of the mutant. There are " +"little puddles of unidentified oils dripping from it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sweet water" -msgid_plural "sweet water" -msgstr[0] "солодка вода" -msgstr[1] "солодкої води" -msgstr[2] "солодкої води" -msgstr[3] "солодка вода" +msgid "mutant tallow" +msgid_plural "mutant tallows" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for mutant tallow #: lang/json/COMESTIBLE_from_json.py -msgid "Water with sugar or honey added. Tastes okay." +msgid "" +"A smooth white block of cleaned and rendered fat sourced from a mutant " +"animal. It will remain edible for a very long time, and can be used as an " +"ingredient in many foods and projects." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "black tea" -msgid_plural "black teas" +msgid "mutant lard" +msgid_plural "mutant lards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black tea +#. ~ Description for mutant lard #: lang/json/COMESTIBLE_from_json.py msgid "" -"The beverage of gentlemen everywhere, made from applying hot water to " -"oxidized leaves of the tea plant /Camellia sinensis/." +"A smooth white block of dry-rendered fat sourced from a mutant animal. It " +"will remain edible for a very long time, and can be used as an ingredient in" +" many foods and projects." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "willowbark tea" -msgid_plural "willowbark tea" +msgid "chunk of mutant humanoid fat" +msgid_plural "chunks of mutant humanoid fat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for chunk of mutant humanoid fat #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A bitter tea made by boiling willow bark in water, used since ancient times " -"as a mild painkiller." +msgid "Freshly butchered fat from a heavily mutated humanoid." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bark tea" -msgid_plural "bark teas" +msgid "mutant humanoid tallow" +msgid_plural "mutant humanoid tallows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bark tea +#. ~ Description for mutant humanoid tallow #: lang/json/COMESTIBLE_from_json.py msgid "" -"Often regarded as folk medicine in some countries, bark tea tastes awful and" -" tends to dry you out, but can help flush out stomach or other gut bugs." +"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." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "V8" -msgid_plural "V8s" +msgid "mutant humanoid lard" +msgid_plural "mutant humanoid lards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for V8 +#. ~ Description for mutant humanoid lard #: lang/json/COMESTIBLE_from_json.py -msgid "Contains up to eight vegetables! Nutritious and tasty." +msgid "" +"A smooth white block of dry-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." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/ammunition_type_from_json.py -msgid "water" -msgid_plural "water" -msgstr[0] "вода" -msgstr[1] "води" -msgstr[2] "води" -msgstr[3] "вода" +#: lang/json/COMESTIBLE_from_json.py +msgid "chunk of tainted meat" +msgid_plural "chunks of tainted meat" +msgstr[0] "шматок зараженого м'яса" +msgstr[1] "шматка зараженого м'яса" +msgstr[2] "шматків зараженого м'яса" +msgstr[3] "шматок зараженого м'яса" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for chunk of tainted meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"Water, the stuff of life, the best thirst-quencher available. It would be " -"safer to drink once purified." +"Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "" +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py -msgid "clean water" -msgid_plural "clean water" -msgstr[0] "чиста вода" -msgstr[1] "чистої води" -msgstr[2] "чистої води" -msgstr[3] "чиста вода" +msgid "" +"Blood that's obviously unhealthy. You could eat it, but it will poison you." +msgstr "" -#. ~ Description for {'str_sp': 'clean water'} #: lang/json/COMESTIBLE_from_json.py -msgid "Fresh, clean water. Truly the best thing to quench your thirst." +msgid "tainted bone" +msgid_plural "tainted bones" +msgstr[0] "заражена кістка" +msgstr[1] "заражені кістки" +msgstr[2] "заражених кісток" +msgstr[3] "заражена кістка" + +#. ~ Description for tainted bone +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A rotten and brittle bone from some unnatural creature or other. Could be " +"used to make some stuff, like charcoal or glue. You could eat it, but it " +"will poison you." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mineral water" -msgid_plural "mineral water" -msgstr[0] "мінеральна вода" -msgstr[1] "мінеральної води" -msgstr[2] "мінеральної води" -msgstr[3] "мінеральна вода" +msgid "tainted fat" +msgid_plural "tainted fats" +msgstr[0] "заражений жир" +msgstr[1] "зараженого жиру" +msgstr[2] "зараженого жиру" +msgstr[3] "заражений жир" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for tainted fat #: lang/json/COMESTIBLE_from_json.py -msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." +msgid "" +"A watery yellow glob of fat from some unnatural creature or other. You " +"could eat it, but it will poison you." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "green tea" -msgid_plural "green teas" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "tainted tallow" +msgid_plural "tainted tallows" +msgstr[0] "заражене сало" +msgstr[1] "зараженого сала" +msgstr[2] "зараженого сала" +msgstr[3] "заражене сало" -#. ~ Description for green tea +#. ~ Description for tainted tallow #: lang/json/COMESTIBLE_from_json.py msgid "" -"Made from applying hot water to leaves of the tea plant /Camellia sinensis/." -" Green tea has a lighter, fresher taste than black and is traditionally " -"preferred in Asian cultures." +"A smooth grayish block of cleaned and rendered monster fat. It will remain " +"'fresh' for a very long time, and can be used as an ingredient in many " +"projects. You could eat it, but it will poison you." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fruit tea" -msgid_plural "fruit teas" +msgid "large boiled stomach" +msgid_plural "large boiled stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit tea +#. ~ Description for large boiled stomach #: lang/json/COMESTIBLE_from_json.py msgid "" -"A tasty beverage made with herbs and dried fruit from plants other than the " -"tea plant. While colloquially called 'tea', technically it's an infusion." +"A boiled stomach from an animal, nothing else. It looks all but appetizing." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sweetened coffee" -msgid_plural "sweetened coffees" +msgid "boiled large human stomach" +msgid_plural "boiled large human stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sweetened coffee +#. ~ Description for boiled large human stomach #: lang/json/COMESTIBLE_from_json.py msgid "" -"The morning ritual of the pre-apocalyptic world, created from coffee " -"cherries through a complex process of seed removal, roasting, grinding, and " -"brewing. Coffee is substantially richer in caffeine than its rival tea. " -"With added sweetener for better taste." +"A boiled stomach from a large humanoid creature, nothing else. It looks all" +" but appetizing." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sweetened tea" -msgid_plural "sweetened teas" +msgid "boiled stomach" +msgid_plural "boiled stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sweetened tea +#. ~ Description for boiled stomach #: lang/json/COMESTIBLE_from_json.py msgid "" -"The beverage of gentlemen everywhere, made from applying hot water to leaves" -" of the tea plant /Camellia sinensis/. Added sweetener for a better taste." +"A small boiled stomach from an animal, nothing else. It looks all but " +"appetizing." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sweetened milk tea" -msgid_plural "sweetened milk teas" +msgid "boiled human stomach" +msgid_plural "boiled human stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sweetened milk tea +#. ~ Description for boiled human stomach #: lang/json/COMESTIBLE_from_json.py -msgid "Hot tea with cold milk and added sweetener." +msgid "" +"A small boiled stomach from a human, nothing else. It looks all but " +"appetizing." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sweetened coffee substitute" -msgid_plural "sweetened coffee substitutes" +msgid "raw hide" +msgid_plural "raw hides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sweetened coffee substitute +#. ~ Description for raw hide #: lang/json/COMESTIBLE_from_json.py msgid "" -"Homemade not-coffee created from the Kentucky coffeetree, just like the " -"Meskwaki tribe! Doesn't actually have any caffeine, and is very bitter, but" -" it'll pass in a pinch. The added sweetness neutralize the bitterness " -"somewhat." +"A carefully folded raw skin harvested from an animal. You can cure it for " +"storage and tanning, or eat it if you're desperate enough." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sweetened coffee milk" -msgid_plural "sweetened coffee milks" +msgid "tainted hide" +msgid_plural "tainted hides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sweetened coffee milk +#. ~ Description for tainted hide #: lang/json/COMESTIBLE_from_json.py msgid "" -"Coffee syrup mixed into milk. It's been the state drink of Rhode Island " -"since 1993. Added sweetener for those who like it even sweeter." +"A carefully folded poisonous raw skin harvested from an unnatural creature." +" You can cure it for storage and tanning." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tomato juice" -msgid_plural "tomato juices" +msgid "raw human skin" +msgid_plural "raw human skins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tomato juice +#. ~ Description for raw human skin #: lang/json/COMESTIBLE_from_json.py msgid "" -"A thick red liquid, made from tomatoes. Not to everyone's taste, it is a " -"healthy and refreshing drink when chilled." +"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." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "red sauce" -msgid_plural "red sauces" +msgid "raw demihuman skin" +msgid_plural "raw demihuman skins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for red sauce +#. ~ Description for raw demihuman skin #: lang/json/COMESTIBLE_from_json.py -msgid "A minimally seasoned sauce of cooked tomatoes." +msgid "" +"A carefully folded raw skin harvested from a demihuman. You can cure it for" +" storage and tanning, or eat it if you're desperate enough." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "maple sap" -msgid_plural "maple sap" +msgid "raw pelt" +msgid_plural "raw pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for raw pelt #: lang/json/COMESTIBLE_from_json.py -msgid "A water and sugar solution that has been extracted from a maple tree." +msgid "" +"A carefully folded raw skin harvested from a fur-bearing animal. It still " +"has the fur attached. You can cure it for storage and tanning, or eat it if" +" you're desperate enough." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mayonnaise" -msgid_plural "mayonnaise" +msgid "tainted pelt" +msgid_plural "tainted pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for tainted pelt #: lang/json/COMESTIBLE_from_json.py msgid "" -"A gloppy mix of egg, oil, and salt that is traditionally used to moisten " -"sandwiches." +"A carefully folded raw skin harvested from a fur-bearing unnatural creature." +" It still has the fur attached and is poisonous. You can cure it for " +"storage and tanning." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "ketchup" -msgid_plural "ketchups" -msgstr[0] "кетчуп" -msgstr[1] "кетчупу" -msgstr[2] "кетчупу" -msgstr[3] "кетчуп" - -#. ~ Description for ketchup -#: lang/json/COMESTIBLE_from_json.py -msgid "A viscous paste of tomato, salt, and vinegar." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py lang/json/COMESTIBLE_from_json.py -#: lang/json/furniture_from_json.py -msgid "mustard" -msgid_plural "mustard" -msgstr[0] "гірчиця" -msgstr[1] "гірчиці" -msgstr[2] "гірчиці" -msgstr[3] "гірчиця" +msgid "raw human pelt" +msgid_plural "raw human pelts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for raw human pelt #: lang/json/COMESTIBLE_from_json.py msgid "" -"A condiment made from the seeds of a mustard plant (/Brassica/ or " -"/Sinapis/), vinegar, salt, and spices." +"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." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "forest honey" -msgid_plural "forest honey" -msgstr[0] "лісовий мед" -msgstr[1] "лісового меду" -msgstr[2] "лісового меду" -msgstr[3] "лісовий мед" +msgid "seeping heart" +msgid_plural "seeping hearts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for seeping heart #: lang/json/COMESTIBLE_from_json.py msgid "" -"Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" -" honey. This honey won't spoil and is good for your digestion." +"A thick mass of flesh superficially resembling a mammalian heart, covered in" +" dimpled grooves and the size of your fist." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vinegar" -msgid_plural "vinegar" -msgstr[0] "оцет" -msgstr[1] "оцту" -msgstr[2] "оцту" -msgstr[3] "оцет" +msgid "putrid heart" +msgid_plural "putrid hearts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for putrid heart #: lang/json/COMESTIBLE_from_json.py msgid "" -"Shockingly tart white vinegar. This is what you get when you let your booze" -" ferment too long." +"A thick, hulking mass of flesh superficially resembling a mammalian heart, " +"covered in ribbed grooves and easily the size of your head. It's still full" +" of, er, whatever passes for blood in jabberwocks, and is heavy in your " +"hands. After everything you've seen lately, you can't help but remember old" +" sayings about eating the hearts of your enemies…" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vegetable cooking oil" -msgid_plural "vegetable cooking oil" -msgstr[0] "рослинна олія" -msgstr[1] "рослинна олія" -msgstr[2] "рослинна олія" -msgstr[3] "рослинна олія" +msgid "desiccated putrid heart" +msgid_plural "desiccated putrid hearts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for desiccated putrid heart #: lang/json/COMESTIBLE_from_json.py -msgid "Thin yellow vegetable oil used for cooking." +msgid "" +"A huge strip of muscle - all that remains of a putrid heart that has been " +"sliced open and drained of blood. It could be eaten if you're hungry, but " +"looks *disgusting*." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "animal cooking oil" -msgid_plural "animal cooking oil" -msgstr[0] "рідкий тваринний жир" -msgstr[1] "рідкого тваринного жиру" -msgstr[2] "рідкого тваринного жиру" -msgstr[3] "рідкий тваринний жир" +msgid "alien fronds" +msgid_plural "alien fronds" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py -msgid "Thin yellow animal oil used for cooking." +msgid "" +"The fleshy fronds harvested from an alien plant. Eating these membranous " +"leaves and gut-like stems is likely a terrible idea, and yet they have a " +"paradoxically pleasant and inviting sweet smell. Might be non-vegan." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "molasses" -msgid_plural "molasses" +msgid "leech flower" +msgid_plural "leech flowers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Use action activation_message for leech flower. #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" -" of sugarcane or sugar beets. It has a slightly bitter aftertaste." +msgid "Even a close smell of this alien flower feels deeply intoxicating." msgstr "" +#. ~ Description for leech flower #: lang/json/COMESTIBLE_from_json.py -msgid "horseradish" -msgid_plural "horseradish" -msgstr[0] "хрін" -msgstr[1] "хрону" -msgstr[2] "хрону" -msgstr[3] "хрін" - -#. ~ Description for {'str_sp': 'horseradish'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A spicy grated root vegetable packed in vinegared brine." +msgid "" +"The alien beauty of this indigo flower is betrayed by its disgustingly " +"fleshy composition. What from afar appear to be petals are but layered " +"membranes of transparent veiny flesh, given color by a covering of blue " +"iridescent ichor. Even if it is certainly poisonous, it has a pleasant " +"medicinal smell to it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "coffee syrup" -msgid_plural "coffee syrup" +msgid "leech bark" +msgid_plural "scraps of leech bark" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for leech bark #: lang/json/COMESTIBLE_from_json.py msgid "" -"A thick syrup made of water and sugar strained through coffee grounds. Can " -"be used to flavor many foods and beverages." +"Dry and tough bark matter harvested from an alien plant. It is slightly " +"translucent, and if placed against the light you can distinguish glistening " +"blue veins running through it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bird egg" -msgid_plural "bird eggs" -msgstr[0] "пташине яйце" -msgstr[1] "пташині яйця" -msgstr[2] "пташиних яєць" -msgstr[3] "пташине яйце" +msgid "demihuman stomach" +msgid_plural "demihuman stomachs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for bird egg +#. ~ Description for demihuman stomach #: lang/json/COMESTIBLE_from_json.py -msgid "Nutritious egg laid by a bird." -msgstr "Поживне яйце, відкладене птахом." +msgid "The stomach of an intelligent demihuman. It is surprisingly durable." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chicken egg" -msgid_plural "chicken eggs" -msgstr[0] "куряче яйце" -msgstr[1] "курячих яйця" -msgstr[2] "курячих яєць" -msgstr[3] "куряче яйце" +msgid "large demihuman stomach" +msgid_plural "large demihuman stomachs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/COMESTIBLE_from_json.py -msgid "unfertilized bird egg" -msgid_plural "unfertilized bird eggs" -msgstr[0] "незапліднене пташине яйце" -msgstr[1] "незапліднених пташиних яйця" -msgstr[2] "незапліднених пташиних яєць" -msgstr[3] "незапліднене пташине яйце" +msgid "chunk of demihuman fat" +msgid_plural "chunks of demihuman fat" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for unfertilized bird egg +#. ~ Description for chunk of demihuman fat #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Nutritious egg laid by a bird. This one is unfertilized and is probably " -"from a farm." +msgid "Freshly harvested from a demihuman body." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "grouse egg" -msgid_plural "grouse eggs" -msgstr[0] "яйце глухаря" -msgstr[1] "яйця глухаря" -msgstr[2] "яєць глухаря" -msgstr[3] "яйце глухаря" +msgid "demihuman tallow" +msgid_plural "demihuman tallows" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for demihuman tallow #: lang/json/COMESTIBLE_from_json.py -msgid "crow egg" -msgid_plural "crow eggs" -msgstr[0] "вороняче яйце" -msgstr[1] "воронячих яйця" -msgstr[2] "воронячих яєць" -msgstr[3] "вороняче яйце" +msgid "" +"A smooth white block of cleaned and rendered demihuman fat. It will remain " +"edible for a very long time, and can be used as an ingredient in many foods " +"and projects." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raven egg" -msgid_plural "raven eggs" +msgid "demihuman lard" +msgid_plural "demihuman lards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for demihuman lard #: lang/json/COMESTIBLE_from_json.py -msgid "blue jay egg" -msgid_plural "blue jay eggs" +msgid "" +"A smooth white block of dry-rendered demihuman fat. It will remain edible " +"for a very long time, and can be used as an ingredient in many foods and " +"projects." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "demihuman flesh" +msgid_plural "demihuman flesh" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py -msgid "cardinal egg" -msgid_plural "cardinal eggs" +msgid "Freshly butchered from a demihuman body." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "demihuman blood" +msgid_plural "demihuman blood" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py -msgid "robin egg" -msgid_plural "robin eggs" +msgid "Fresh blood extracted from a demihuman." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "cooked mongrel" +msgid_plural "cooked mongrels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for robin egg +#. ~ Description for cooked mongrel #: lang/json/COMESTIBLE_from_json.py -msgid "Nutritious egg laid by a robin." +msgid "" +"A freshly cooked slice of something close to being a real person. Tastes " +"like long pig." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sparrow egg" -msgid_plural "sparrow eggs" +msgid "boiled demihuman stomach" +msgid_plural "boiled demihuman stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for boiled demihuman stomach #: lang/json/COMESTIBLE_from_json.py -msgid "duck egg" -msgid_plural "duck eggs" -msgstr[0] "качине яйце" -msgstr[1] "качині яйця" -msgstr[2] "качиних яєць" -msgstr[3] "качині яйця" +msgid "" +"A boiled stomach from a demihuman, nothing else. It looks all but " +"appetizing." +msgstr "" +#. ~ Description for boiled demihuman stomach #: lang/json/COMESTIBLE_from_json.py -msgid "goose egg" -msgid_plural "goose eggs" -msgstr[0] "гусяче яйце" -msgstr[1] "гусячі яйця" -msgstr[2] "гусячих яєць" -msgstr[3] "гусячі яйця" +msgid "" +"A small boiled stomach from a demihuman, nothing else. It looks all but " +"appetizing." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "turkey egg" -msgid_plural "turkey eggs" +msgid "fried meat" +msgid_plural "fried meats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "pheasant egg" -msgid_plural "pheasant eggs" +msgid "fried fool" +msgid_plural "fried fool" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "cockatrice egg" -msgid_plural "cockatrice eggs" +msgid "fried familiar" +msgid_plural "fried familiar" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for fried meat #: lang/json/COMESTIBLE_from_json.py -msgid "reptile egg" -msgid_plural "reptile eggs" +msgid "Delicious oil-fried meat." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "hot corn casserole" +msgid_plural "hot corn casserole" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for reptile egg +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py -msgid "An egg belonging to one of reptile species found in New England." +msgid "" +"It’s cheesy and indulgent, although the mix of tender kernels of corn, " +"veggies, fresh herbs, and a pop of heat keep it in check so it’s not too " +"heavy for the apocalypse." msgstr "" -"Яйце рептилії, що належить до одного з видів, що мешкають у Новій Англії." #: lang/json/COMESTIBLE_from_json.py -msgid "Insect Egg" -msgid_plural "Insect Eggs" +msgid "fish noodle casserole" +msgid_plural "fish noodle casserole" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py -msgid "ant egg" -msgid_plural "ant eggs" +msgid "" +"Fish noodle casserole is a casserole primarily made with pasta and canned " +"tuna, with canned peas and corn sometimes added." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "cereal" +msgid_plural "cereal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ant egg +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A large, heavy ant egg, the size of a softball. Extremely nutritious, but " -"incredibly gross." +msgid "A generic box of cereal, you shouldn't see this." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "spider egg" -msgid_plural "spider eggs" +msgid "Foodplace cereal" +msgid_plural "Foodplace cereal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for spider egg +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py -msgid "A fist-sized egg from a giant spider. Incredibly gross." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "roach egg" -msgid_plural "roach eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for roach egg -#: lang/json/COMESTIBLE_from_json.py -msgid "A fist-sized egg from a giant roach. Incredibly gross." +msgid "" +"A generic box of Foodplace brand sugary cereal, you shouldn't see this." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "locust egg" -msgid_plural "locust eggs" +msgid "Snicker-Snacks cereal" +msgid_plural "Snicker-Snacks cereal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for locust egg +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py -msgid "A fist-sized egg from a locust." +msgid "" +"Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" +" like human food!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dragonfly egg" -msgid_plural "dragonfly eggs" +msgid "Carpenter Crunch cereal" +msgid_plural "Carpenter Crunch cereal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dragonfly egg +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" -"The still wet egg of a mutated dragonfly. Serves as a disgusting substitute" -" for the real thing, just don't let it hatch in the water." +"This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " +"\"Breakfast Beaver\" mascot on the box. It tastes kind of like nails." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "firefly egg" -msgid_plural "firefly eggs" +msgid "Brantastic cereal" +msgid_plural "Brantastic cereal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for firefly egg +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py -msgid "The fist-sized egg of a mutant firefly. Glows faintly in the dark." +msgid "" +"Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" +" breakfast." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "centipede egg" -msgid_plural "centipede eggs" +msgid "Sugar Chomps cereal" +msgid_plural "Sugar Chomps cereal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for centipede egg +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" -"A large, soft egg you got from butchering a mutant centipede. Inside, you " -"can already see a bundle of spindly legs, twitching in anticipation." +"Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " +"Chomps: 8 essential vitamins packed into that rich, fudgy taste!\"" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wasp egg" -msgid_plural "wasp eggs" +msgid "Honey Pellet cereal" +msgid_plural "Honey Pellet cereal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wasp egg +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" -"A white, flexible wasp egg. It looks like a pristine grain of rice, grown " -"to the size of your palm." +"Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " +"\"Inconceivable sustenance in tiny morsels of yellow honey.\"" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "antlion egg" -msgid_plural "antlion eggs" +msgid "Fructose Flakes cereal" +msgid_plural "Fructose Flakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for antlion egg +#. ~ Description for Fructose Flakes cereal #: lang/json/COMESTIBLE_from_json.py -msgid "A large white antlion egg. There is something hard inside." +msgid "" +"Foodplace brand Fructose Flakes cereal. Fortified with energy enriched " +"FoodSyrup™ that supports life most efficiently." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "water strider egg" -msgid_plural "water strider eggs" +msgid "Foodios cereal" +msgid_plural "Foodios cereal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for water strider egg +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A large, sticky and wet water strider egg. You should probably put it back " -"in the water." +msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "grasshopper egg" -msgid_plural "grasshopper eggs" +msgid "sugary cereal" +msgid_plural "sugary cereals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for grasshopper egg +#. ~ Description for sugary cereal #: lang/json/COMESTIBLE_from_json.py msgid "" -"A white and long pill-shaped grasshopper egg. Inside you can see two " -"twitching legs." +"Sugary breakfast cereal with marshmallows. It takes you back to your " +"childhood." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lady bug egg" -msgid_plural "lady bug eggs" +msgid "wheat cereal" +msgid_plural "wheat cereal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lady bug egg +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" -"A lady bug egg. It looks like a huge yellow rice grain. Inside there is a " -"hungry translucent lavrae." +"Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " +"your heart." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mole cricket egg" -msgid_plural "mole cricket eggs" +msgid "corn cereal" +msgid_plural "corn cereals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mole cricket egg +#. ~ Description for corn cereal #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A mole cricket egg covered in bits of sand and dirt. It's brown with a few " -"black dots on it." +msgid "Plain cornflake cereal. They're not that good, but it beats nothing." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "praying mantis egg case" -msgid_plural "praying mantis egg cases" +#: lang/json/COMESTIBLE_from_json.py lang/json/ammunition_type_from_json.py +msgid "milk" +msgid_plural "milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for praying mantis egg case +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Praying mantis eggs glued to each other inside a strange-looking case. It " -"resembles a trilobite or woodlouse." +msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "razorclaw roe" -msgid_plural "razorclaw roes" +msgid "chocolate milk" +msgid_plural "chocolate milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for razorclaw roe +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py -msgid "A clump of razorclaw eggs. A post-Cataclysm delicacy." +msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "roe" -msgid_plural "roes" +msgid "reconstituted milk" +msgid_plural "reconstituted milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for roe +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py -msgid "Common roe from an unknown fish." +msgid "" +"Baby cow food, appropriated for adult humans. This milk has been " +"reconstituted from a processed milk. Spoils rapidly." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "powdered egg" -msgid_plural "powdered eggs" +#: lang/json/COMESTIBLE_from_json.py lang/json/ammunition_type_from_json.py +msgid "raw milk" +msgid_plural "raw milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for powdered egg -#: lang/json/COMESTIBLE_from_json.py -msgid "Whole fresh eggs, dehydrated into an easy to store powder." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "scrambled eggs" -msgid_plural "scrambled eggs" -msgstr[0] "омлет" -msgstr[1] "омлету" -msgstr[2] "омлету" -msgstr[3] "омлет" - -#. ~ Description for {'str_sp': 'scrambled eggs'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Fluffy and delicious scrambled eggs." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "boiled egg" -msgid_plural "boiled eggs" -msgstr[0] "варене яйце" -msgstr[1] "варених яйця" -msgstr[2] "варених яєць" -msgstr[3] "варені яйця" - -#. ~ Description for boiled egg +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py -msgid "A hard-boiled egg, still in its shell. Portable and nutritious!" +msgid "" +"This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " +"be any fresher unless you drank it straight from the cow, which might upset " +"it. Depending on your dietary sensibilities, you might want to pasteurize " +"or even boil this before drinking." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fried eggs" -msgid_plural "fried eggs" +msgid "shelf stable milk" +msgid_plural "shelf stable milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" -"Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " -"edges." +"This is milk that has been pasteurized at much higher temperatures than " +"normal. It tastes slightly different, but, unopened, will last far longer " +"than regular milk." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deluxe fried eggs" -msgid_plural "deluxe fried eggs" +msgid "evaporated milk" +msgid_plural "evaporated milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" -" the edges with cheese or a vegetable, garnish and condiment." +#, no-python-format +msgid "Milk that's had about 60% of its water removed prior to canning." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fried egg sandwich" -msgid_plural "fried egg sandwich" +msgid "buttermilk" +msgid_plural "buttermilk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" -"Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " -"edges. Made into a sandwich, just like Sunday morning." +"This is cultured milk defatted either due to churning or curdling. Spoils " +"quickly." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deluxe fried egg sandwich" -msgid_plural "deluxe fried egg sandwich" +msgid "yogurt" +msgid_plural "yogurts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for yogurt #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" -" the edges. Made into a sandwich, just like Sunday morning." +msgid "Delicious fermented dairy. It tastes of vanilla." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pickled egg" -msgid_plural "pickled eggs" +msgid "butter" +msgid_plural "butter" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pickled egg +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" -"A pickled egg. Rather salty, but tastes good and lasts for a long time." +"A yellow stick of milkfat and milk solids, usually made from cow's milk." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "milkshake" -msgid_plural "milkshakes" +msgid "raw butter" +msgid_plural "raw butter" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for milkshake +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" -"An all-natural cold beverage made with milk and sweeteners. Tastes great " -"when frozen." +"A white stick of raw milkfat and milk solids, made directly from cow's milk." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fast food milkshake" -msgid_plural "fast food milkshakes" +msgid "ghee" +msgid_plural "ghee" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fast food milkshake +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" -"A milkshake made by freezing a premade mix. Tastes better due to how much " -"sugar is in it, but is bad for your health." +"Clarified butter, free from milk solids and water. Will last a very long " +"time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chocolate milkshake" -msgid_plural "chocolate milkshakes" +msgid "pudding" +msgid_plural "puddings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chocolate milkshake +#. ~ Description for pudding #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An all-natural cold beverage made with chocolate milk and sweeteners. " -"Tastes great when frozen." +msgid "Sugary, fermented dairy. A wonderful treat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deluxe milkshake" -msgid_plural "deluxe milkshakes" +msgid "curdled milk" +msgid_plural "curdled milks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deluxe milkshake +#. ~ Description for curdled milk #: lang/json/COMESTIBLE_from_json.py msgid "" -"This milkshake has been enhanced with added sweeteners, and even has a " -"cherry on top. Tastes great, but is fairly awful for your health." +"Milk that has been curdled with vinegar and rennet. It still needs to be " +"salted and drained of whey." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deluxe chocolate milkshake" -msgid_plural "deluxe chocolate milkshakes" +msgid "hard cheese" +msgid_plural "hard cheese" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deluxe chocolate milkshake +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" -"This chocolate milkshake has been enhanced with added sweeteners, and even " -"has a cherry on top. Tastes great, but is fairly awful for your health." +"Hard, dry cheese made to last, unlike modern processed cheese. Will make " +"you thirsty though." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "frozen lemonade" -msgid_plural "frozen lemonades" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "cheese" +msgid_plural "cheese" +msgstr[0] "сир" +msgstr[1] "сиру" +msgstr[2] "сиру" +msgstr[3] "сир" -#. ~ Description for frozen lemonade +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An all-natural cold beverage made with lemonade and sweeteners. Tastes " -"great when frozen." +msgid "A block of yellow processed cheese." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "ice cream" -msgid_plural "ice cream scoops" +msgid "quesadilla" +msgid_plural "quesadillas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ice cream +#. ~ Description for quesadilla #: lang/json/COMESTIBLE_from_json.py -msgid "A sweet, frozen food made of milk with liberal amounts of sugar." +msgid "A tortilla filled with cheese and lightly grilled." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dairy dessert" -msgid_plural "dairy dessert scoops" +msgid "powdered milk" +msgid_plural "powdered milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dairy dessert +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Government regulations dictate that since this isn't *technically* ice " -"cream, it can be called a dairy dessert instead. It still tastes good, but " -"your body won't like you." +msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chocolate ice cream" -msgid_plural "chocolate ice cream scoops" +msgid "condensed milk" +msgid_plural "condensed milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chocolate ice cream +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" -"A sweet, frozen food made of chocolate milk with liberal amounts of sugar." +"Cow's milk that has been partly dehydrated to vastly increase its shelf " +"life, and also sweetened." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sundae cup" -msgid_plural "sundae cups" +msgid "whipped cream" +msgid_plural "whipped cream" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sundae cup +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" -"A small cup of frozen dairy dessert that is half chocolate, half vanilla, " -"and all delicious." +"Cream that has been whipped, perfect for frosting cakes and pies. Either " +"store-bought or homemade." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "candy ice cream" -msgid_plural "candy ice cream scoops" +msgid "heavy cream" +msgid_plural "heavy cream" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for candy ice cream +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Ice cream with bits of chocolate, caramel, or other flavoring mixed in." +msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fruity ice cream" -msgid_plural "fruity ice cream scoops" +msgid "apple cider" +msgid_plural "apple cider" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruity ice cream +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Small bits of sweet fruit have been tossed into this ice cream, making it " -"slightly less terrible for you." +msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "frozen custard" -msgid_plural "frozen custard scoops" +msgid "almond milk" +msgid_plural "almond milks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for frozen custard +#. ~ Description for almond milk #: lang/json/COMESTIBLE_from_json.py msgid "" -"Similar to ice cream, this treat made famous in Coney Island is made like " -"ice cream, but with egg yolk added in. Its storing temperature is warmer, " -"and it lasts a little longer than regular ice cream." +"Milk some almonds? Not quite, but blend them with water, yes! A dairy-free" +" alternative strong in calcium! Rival to soy milk." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "frozen yogurt" -msgid_plural "frozen yogurt" +msgid "soy milk" +msgid_plural "soy milks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for soy milk #: lang/json/COMESTIBLE_from_json.py msgid "" -"Tarter than ice cream, this is made with yogurt and other dairy products, " -"and is generally low-fat compared to ice cream itself." +"Milk some soybeans? Not quite, but blend them with water, yes! A dairy-" +"free alternative strong in protein! Rival to almond milk." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sorbet" -msgid_plural "sorbet scoops" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "atomic coffee" +msgid_plural "atomic coffee" +msgstr[0] "атомна кава" +msgstr[1] "атомної кави" +msgstr[2] "атомної кави" +msgstr[3] "атомна кава" -#. ~ Description for sorbet +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py -msgid "A simple frozen dessert food made from water and fruit juice." +msgid "" +"This serving of coffee has been created using an atomic coffee pot's FULL " +"NUCLEAR brewing cycle. Every possible microgram of caffeine and flavor has " +"been carefully extracted for your enjoyment, using the power of the atom." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "gelato" -msgid_plural "gelato scoops" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "bee balm tea" +msgid_plural "bee balm tea" +msgstr[0] "чай із монарди" +msgstr[1] "чай із монарди" +msgstr[2] "чай із монарди" +msgstr[3] "чай із монарди" -#. ~ Description for gelato +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" -"Italian-style ice cream. Less airy, and more dense, giving it a richer " -"flavor and texture." +"A healthy beverage made from bee balm steeped in boiling water. Can be used" +" to reduce negative effects of common cold or flu." msgstr "" +"Корисний для здоров'я напій, отриманий заварюванням листків монарди у " +"окропі. Його можна використовувати для зняття негативних ефектів нежитю чи " +"грипу." #: lang/json/COMESTIBLE_from_json.py -msgid "cooked strawberry" -msgid_plural "cooked strawberries" +msgid "coconut milk" +msgid_plural "coconut milks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked strawberry +#. ~ Description for coconut milk #: lang/json/COMESTIBLE_from_json.py -msgid "It's like strawberry jam, only without sugar." +msgid "A dense, sweet creamy sauce, often used in curries." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fruit leather" -msgid_plural "fruit leathers" +msgid "chai tea" +msgid_plural "chai tea" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit leather +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py -msgid "Dried strips of sugary fruit paste." +msgid "A traditional south Asian mixed-spice tea with milk." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked blueberry" -msgid_plural "cooked blueberries" +msgid "chamomile tea" +msgid_plural "chamomile tea" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked blueberry +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py -msgid "It's like blueberry jam, only without sugar." +msgid "" +"A healthy beverage made from chamomile flowers steeped in boiling water. " +"Can be used to treat insomnia." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "peaches in syrup" -msgid_plural "peaches in syrup" +msgid "chocolate drink" +msgid_plural "chocolate drinks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'peaches in syrup'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Yellow cling peach slices packed in light syrup." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "canned pineapple" -msgid_plural "canned pineapples" -msgstr[0] "консервовані ананаси" -msgstr[1] "консервованих ананасів" -msgstr[2] "консервованих ананасів" -msgstr[3] "консервовані ананаси" - -#. ~ Description for canned pineapple +#. ~ Description for chocolate drink #: lang/json/COMESTIBLE_from_json.py -msgid "Canned pineapple rings in water. Quite tasty." +msgid "" +"A chocolate flavored beverage made of artificial flavoring and milk " +"byproducts. Shelf stable and vaguely appetizing even when lukewarm." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lemonade drink mix" -msgid_plural "lemonade drink mix" +msgid "coffee" +msgid_plural "coffee" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" -"Tangy yellow powder that smells strongly of lemons. Can be mixed with water" -" to make lemonade." +"The morning ritual of the pre-apocalyptic world, created from coffee " +"cherries through a complex process of seed removal, roasting, grinding, and " +"brewing. Coffee is substantially richer in caffeine than its rival tea." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked fruit" -msgid_plural "cooked fruits" +msgid "coffee substitute" +msgid_plural "coffee substitute" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked fruit +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py -msgid "It's like fruit jam, only without sugar." +msgid "" +"Homemade not-coffee created from the Kentucky coffeetree, just like the " +"Meskwaki tribe! Doesn't actually have any caffeine, and is very bitter, but" +" it'll pass in a pinch." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fruit jam" -msgid_plural "fruit jams" +msgid "chicory brew" +msgid_plural "chicory brew" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit jam -#: lang/json/COMESTIBLE_from_json.py -msgid "Fresh fruit, cooked with sugar to make them last longer." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "dehydrated fruit" -msgid_plural "dehydrated fruit" -msgstr[0] "сушений фрукт" -msgstr[1] "сушених фрукти" -msgstr[2] "сушених фруктів" -msgstr[3] "сушений фрукт" - -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dehydrated fruit flakes. With proper storage, this dried food will remain " -"edible for an incredibly long time. They are useful for several cooking " -"recipes." +"Toasted, ground chicory root steeped in boiling water. This bitter brew is " +"used as a coffee substitute, though it tastes nothing like coffee." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rehydrated fruit" -msgid_plural "rehydrated fruit" +msgid "dark cola" +msgid_plural "dark colas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for dark cola #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Reconstituted fruit flakes, which are much more enjoyable to eat now that " -"they have been rehydrated." +msgid "Things go better with cola. Sugar water with caffeine added." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fruit slice" -msgid_plural "fruit slices" +msgid "energy cola" +msgid_plural "energy colas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit slice +#. ~ Description for energy cola #: lang/json/COMESTIBLE_from_json.py msgid "" -"Fruit slices soaked in a sugar syrup, to preserve freshness and appearance." +"It tastes and looks like windshield wiper fluid, but it's loaded to the brim" +" with sugar and caffeine." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned fruit" -msgid_plural "canned fruit" +msgid "cream soda" +msgid_plural "cream sodas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for cream soda #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This sodden mass of preserved fruit was boiled and canned in an earlier " -"life. Bland, mushy and losing color." +msgid "A caffeinated, carbonated drink, flavored with vanilla." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pumpkin yeast bread" -msgid_plural "pumpkin yeast bread" +msgid "cranberry juice" +msgid_plural "cranberry juices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for cranberry juice #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A festive autumnal bread with a golden color in either rolls or sliced " -"loaves of bread." +msgid "Made from real Massachusetts cranberries. Quite sour, but nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "brandied fruit" -msgid_plural "brandied fruits" +msgid "crispy cranberry" +msgid_plural "crispy cranberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for brandied fruit +#. ~ Description for crispy cranberry #: lang/json/COMESTIBLE_from_json.py -msgid "Whole fruits preserved in 40 proof or higher alcohol." +msgid "Mixing cranberry juice and lemon-lime soda works out quite well." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated rose hips" -msgid_plural "irradiated rose hips" +msgid "dandelion tea" +msgid_plural "dandelion tea" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An irradiated rose hips will remain edible nearly forever. Sterilized using" -" radiation, so it's safe to eat." +msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated elderberry" -msgid_plural "irradiated elderberries" +msgid "dandelion and burdock tea" +msgid_plural "dandelion and burdock tea" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated elderberry +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated elderberry will remain edible nearly forever. Sterilized " -"using radiation, so it's safe to eat." +"A healthy beverage made from dandelion and burdock roots steeped in boiling " +"water. The additional ingredient makes it slightly healthier and fun." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated mulberry" -msgid_plural "irradiated mulberries" +msgid "eggnog" +msgid_plural "eggnogs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated mulberry +#. ~ Description for eggnog #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated mulberry will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"Smooth and rich, this spoon-coating mix of milk, cream, and eggs is a " +"popular traditional holiday drink. While often spiked, it is still " +"delicious on its own. Meant to be stored cold, it will spoil rapidly." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated huckleberry" -msgid_plural "irradiated huckleberries" +msgid "energy drink" +msgid_plural "energy drinks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated huckleberry +#. ~ Description for energy drink #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated huckleberry will remain edible nearly forever. Sterilized " -"using radiation, so it's safe to eat." +"A heavily caffeinated soft drink. Energy drinks are popular among those who" +" need to stay up late working." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated raspberry" -msgid_plural "irradiated raspberries" +msgid "atomic energy drink" +msgid_plural "atomic energy drinks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated raspberry +#. ~ Description for atomic energy drink #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated raspberry will remain edible nearly forever. Sterilized using" -" radiation, so it's safe to eat." +"According to the label, this loathsome-tasting beverage is called ATOMIC " +"POWER THIRST. Alongside the lengthy health warning, it promises to make the" +" consumer UNCOMFORTABLY ENERGETIC using ELECTROLYTES and THE POWER OF THE " +"ATOM." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated cranberry" -msgid_plural "irradiated cranberries" +msgid "herbal tea" +msgid_plural "herbal tea" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated cranberry +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An irradiated cranberry will remain edible nearly forever. Sterilized using" -" radiation, so it's safe to eat." +msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated strawberry" -msgid_plural "irradiated strawberries" +msgid "hot chocolate" +msgid_plural "hot chocolate" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated strawberry +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated strawberry will remain edible nearly forever. Sterilized " -"using radiation, so it's safe to eat." +"Also known as hot cocoa, this heated chocolate beverage is perfect for a " +"cold winter day." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated blueberry" -msgid_plural "irradiated blueberries" +msgid "pasteurized fruit juice" +msgid_plural "pasteurized fruit juices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated blueberry +#. ~ Description for pasteurized fruit juice #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated blueberry will remain edible nearly forever. Sterilized using" -" radiation, so it's safe to eat." +"A sweet liquid with a vaguely fruity taste. Having been pasteurized, it " +"will last for a long time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated apple" -msgid_plural "irradiated apples" +msgid "fruit juice" +msgid_plural "fruit juices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated apple +#. ~ Description for fruit juice #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Mmm, irradiated. Will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +msgid "Freshly-squeezed from real fruit! Tasty and nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated banana" -msgid_plural "irradiated bananas" +msgid "kompot" +msgid_plural "kompots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated banana +#. ~ Description for kompot #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An irradiated banana will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +msgid "Clear juice obtained by cooking fruit in a large volume of water." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated orange" -msgid_plural "irradiated oranges" +msgid "lemonade" +msgid_plural "lemonade" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated orange +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated orange will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"Lemon juice mixed with water and sugar to dull the sourness. Delicious and " +"refreshing." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated lemon" -msgid_plural "irradiated lemons" +msgid "lemon-lime soda" +msgid_plural "lemon-lime sodas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated lemon +#. ~ Description for lemon-lime soda #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated lemon will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"Unlike cola this is caffeine free, however it is still carbonated and has " +"plenty of sugar. Not to mention a lemon-lime taste." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated grapefruit" -msgid_plural "irradiated grapefruits" +msgid "lotus tea" +msgid_plural "lotus tea" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated grapefruit +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An irradiated grapefruit will remain edible nearly forever. Sterilized " -"using radiation, so it's safe to eat." +msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated pear" -msgid_plural "irradiated pears" +msgid "Mexican hot chocolate" +msgid_plural "Mexican hot chocolate" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated pear +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated pear will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " +"traces its history to the Maya and Aztecs. Perfect for a cold winter day." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated cherry" -msgid_plural "irradiated cherries" +msgid "coffee milk" +msgid_plural "coffee milks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated cherry +#. ~ Description for coffee milk #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated cherry will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"Coffee syrup mixed into milk. It's been the state drink of Rhode Island " +"since 1993." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated plum" -msgid_plural "irradiated plums" +msgid "milk tea" +msgid_plural "milk teas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated plum +#. ~ Description for milk tea #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A group of irradiated plums will remain edible nearly forever. Sterilized " -"using radiation, so it's safe to eat." +msgid "Hot tea with cold milk." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated grape" -msgid_plural "irradiated grapes" +msgid "orange juice" +msgid_plural "orange juices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated grape +#. ~ Description for orange juice #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An irradiated grape will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +msgid "Freshly-squeezed from real oranges! Tasty and nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated pineapple" -msgid_plural "irradiated pineapples" +msgid "orange soda" +msgid_plural "orange sodas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated pineapple +#. ~ Description for orange soda #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated pineapple will remain edible nearly forever. Sterilized using" -" radiation, so it's safe to eat." +"Unlike cola this is caffeine free, however it is still carbonated, sweet, " +"and tastes vaguely orange-like." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated peach" -msgid_plural "irradiated peaches" +msgid "pine needle tea" +msgid_plural "pine needle tea" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated peach +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated peach will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"A fragrant and healthy beverage made from pine needles steeped in boiling " +"water." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated watermelon" -msgid_plural "irradiated watermelons" +msgid "grape drink" +msgid_plural "grape drinks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated watermelon +#. ~ Description for grape drink #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated watermelon will remain edible nearly forever. Sterilized " -"using radiation, so it's safe to eat." +"A mass-produced grape flavored beverage of artificial origin. Good for when" +" you want something that tastes like fruit, but still don't care about your " +"health." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated melon" -msgid_plural "irradiated melons" +msgid "mycus juice" +msgid_plural "mycus juices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated melon +#. ~ Description for mycus juice #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An irradiated melon will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +msgid "Freshly-squeezed from the fruit of the mycus." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated blackberry" -msgid_plural "irradiated blackberries" +msgid "root beer" +msgid_plural "root beer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated blackberry +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An irradiated blackberry will remain edible nearly forever. Sterilized " -"using radiation, so it's safe to eat." +msgid "Like cola, but without caffeine. Still not that healthy." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated mango" -msgid_plural "irradiated mangos" +msgid "spezi" +msgid_plural "spezis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated mango +#. ~ Description for spezi #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated mango will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"Originating in Germany almost a century ago, this mix of cola and orange " +"soda tastes great." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated pomegranate" -msgid_plural "irradiated pomegranates" +msgid "sports drink" +msgid_plural "sports drinks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated pomegranate +#. ~ Description for sports drink #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated pomegranate will remain edible nearly forever. Sterilized " -"using radiation, so it's safe to eat." +"A flavoured drink consisting of a special blend of electrolytes and simple " +"sugars. It tastes vaguely like fruit with a slight chemical aftertaste." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated papaya" -msgid_plural "irradiated papayas" +msgid "spurge tea" +msgid_plural "spurge tea" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated papaya +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated papaya will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"You no longer need to worry about asthma attacks, at least for a while." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "irradiated kiwi" -msgid_plural "irradiated kiwis" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for irradiated kiwi +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated kiwi will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"A healthy beverage made from spurge flowers steeped in boiling water. Can " +"be used to prevent asthma attacks." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated apricot" -msgid_plural "irradiated apricots" +msgid "rehydration drink" +msgid_plural "rehydration drinks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated apricot +#. ~ Description for rehydration drink #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated apricot will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"A basic oral rehydration therapy drink. It will rehydrate you faster than " +"water, but tastes like bottled sweat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated lettuce" -msgid_plural "irradiated lettuces" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "sweet water" +msgid_plural "sweet water" +msgstr[0] "солодка вода" +msgstr[1] "солодкої води" +msgstr[2] "солодкої води" +msgstr[3] "солодка вода" -#. ~ Description for irradiated lettuce +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An irradiated head of lettuce will remain edible nearly forever. Sterilized" -" using radiation, so it's safe to eat." +msgid "Water with sugar or honey added. Tastes okay." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated cabbage" -msgid_plural "irradiated cabbages" +msgid "black tea" +msgid_plural "black teas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated cabbage +#. ~ Description for black tea #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated head of cabbage will remain edible nearly forever. Sterilized" -" using radiation, so it's safe to eat." +"The beverage of gentlemen everywhere, made from applying hot water to " +"oxidized leaves of the tea plant /Camellia sinensis/." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated tomato" -msgid_plural "irradiated tomatoes" +msgid "willowbark tea" +msgid_plural "willowbark tea" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated tomato +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated tomato will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"A bitter tea made by boiling willow bark in water, used since ancient times " +"as a mild painkiller." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated broccoli" -msgid_plural "irradiated broccoli" +msgid "bark tea" +msgid_plural "bark teas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for bark tea #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated cluster of broccoli will remain edible nearly forever. " -"Sterilized using radiation, so it's safe to eat." +"Often regarded as folk medicine in some countries, bark tea tastes awful and" +" tends to dry you out, but can help flush out stomach or other gut bugs." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated zucchini" -msgid_plural "irradiated zucchinis" +msgid "V8" +msgid_plural "V8s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated zucchini +#. ~ Description for V8 #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An irradiated zucchini will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +msgid "Contains up to eight vegetables! Nutritious and tasty." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "irradiated onion" -msgid_plural "irradiated onions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/COMESTIBLE_from_json.py lang/json/ammunition_type_from_json.py +msgid "water" +msgid_plural "water" +msgstr[0] "вода" +msgstr[1] "води" +msgstr[2] "води" +msgstr[3] "вода" -#. ~ Description for irradiated onion +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated onion will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"Water, the stuff of life, the best thirst-quencher available. It would be " +"safer to drink once purified." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated carrot" -msgid_plural "irradiated carrots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "clean water" +msgid_plural "clean water" +msgstr[0] "чиста вода" +msgstr[1] "чистої води" +msgstr[2] "чистої води" +msgstr[3] "чиста вода" -#. ~ Description for irradiated carrot +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An irradiated bundle of carrots will remain edible nearly forever. " -"Sterilized using radiation, so it's safe to eat." +msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated corn" -msgid_plural "irradiated corn" -msgstr[0] "опромінена кукурудза" -msgstr[1] "опроміненої кукурудзи" -msgstr[2] "опроміненої кукурудзи" -msgstr[3] "опромінена кукурудза" +msgid "mineral water" +msgid_plural "mineral water" +msgstr[0] "мінеральна вода" +msgstr[1] "мінеральної води" +msgstr[2] "мінеральної води" +msgstr[3] "мінеральна вода" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An irradiated ear of corn will remain edible nearly forever. Sterilized " -"using radiation, so it's safe to eat." +msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated pumpkin" -msgid_plural "irradiated pumpkins" +msgid "green tea" +msgid_plural "green teas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated pumpkin +#. ~ Description for green tea #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated pumpkin will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"Made from applying hot water to leaves of the tea plant /Camellia sinensis/." +" Green tea has a lighter, fresher taste than black and is traditionally " +"preferred in Asian cultures." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated potato" -msgid_plural "irradiated potatoes" +msgid "fruit tea" +msgid_plural "fruit teas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated potato +#. ~ Description for fruit tea #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated potato will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"A tasty beverage made with herbs and dried fruit from plants other than the " +"tea plant. While colloquially called 'tea', technically it's an infusion." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated cucumber" -msgid_plural "irradiated cucumbers" +msgid "sweetened coffee" +msgid_plural "sweetened coffees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for irradiated cucumber +#. ~ Description for sweetened coffee #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated cucumber will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +"The morning ritual of the pre-apocalyptic world, created from coffee " +"cherries through a complex process of seed removal, roasting, grinding, and " +"brewing. Coffee is substantially richer in caffeine than its rival tea. " +"With added sweetener for better taste." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated celery" -msgid_plural "irradiated celery" +msgid "sweetened tea" +msgid_plural "sweetened teas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for sweetened tea #: lang/json/COMESTIBLE_from_json.py msgid "" -"An irradiated cluster of celery will remain edible nearly forever. " -"Sterilized using radiation, so it's safe to eat." +"The beverage of gentlemen everywhere, made from applying hot water to leaves" +" of the tea plant /Camellia sinensis/. Added sweetener for a better taste." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "irradiated rhubarb" -msgid_plural "irradiated rhubarb" +msgid "sweetened milk tea" +msgid_plural "sweetened milk teas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for sweetened milk tea #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An irradiated rhubarb will remain edible nearly forever. Sterilized using " -"radiation, so it's safe to eat." +msgid "Hot tea with cold milk and added sweetener." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "toast-em" -msgid_plural "toast-ems" +msgid "sweetened coffee substitute" +msgid_plural "sweetened coffee substitutes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for toast-em -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Dry toaster pastries usually coated with solid frosting and what luck! " -"These are strawberry flavored!" -msgstr "" - -#. ~ Description for toast-em -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Dry toaster pastries, usually coated with solid frosting. These are " -"blueberry flavored!" -msgstr "" - -#. ~ Description for toast-em +#. ~ Description for sweetened coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dry toaster pastries, usually coated with solid frosting. Sadly, these are " -"not." +"Homemade not-coffee created from the Kentucky coffeetree, just like the " +"Meskwaki tribe! Doesn't actually have any caffeine, and is very bitter, but" +" it'll pass in a pinch. The added sweetness neutralize the bitterness " +"somewhat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "homemade toast-em" -msgid_plural "homemade toast-ems" +msgid "sweetened coffee milk" +msgid_plural "sweetened coffee milks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for homemade toast-em +#. ~ Description for sweetened coffee milk #: lang/json/COMESTIBLE_from_json.py -msgid "Homemade toaster pastries, lacking icing but at least fruit filled." +msgid "" +"Coffee syrup mixed into milk. It's been the state drink of Rhode Island " +"since 1993. Added sweetener for those who like it even sweeter." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "toaster pastry (uncooked)" -msgid_plural "toaster pastries (uncooked)" +msgid "tomato juice" +msgid_plural "tomato juices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for toaster pastry (uncooked) +#. ~ Description for tomato juice #: lang/json/COMESTIBLE_from_json.py msgid "" -"A delicious fruit-filled pastry that you can cook in your toaster. It even " -"comes with frosting! Cook it to make it tasty." +"A thick red liquid, made from tomatoes. Not to everyone's taste, it is a " +"healthy and refreshing drink when chilled." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "toaster pastry" -msgid_plural "toaster pastries" +msgid "red sauce" +msgid_plural "red sauces" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for toaster pastry -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A delicious fruit-filled pastry that you've cooked. It even comes with " -"frosting!" -msgstr "" - -#. ~ Description for toaster pastry +#. ~ Description for red sauce #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious homemade fruit-filled pastry that you've cooked." +msgid "A minimally seasoned sauce of cooked tomatoes." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "toaster pastry with buttercream" -msgid_plural "toaster pastries with buttercream" +msgid "maple sap" +msgid_plural "maple sap" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for toaster pastry with buttercream +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A delicious homemade fruit-filled pastry that you've cooked. It even comes " -"with buttercream!" +msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "buttercream icing" -msgid_plural "cups of buttercream icing" +msgid "mayonnaise" +msgid_plural "mayonnaise" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for buttercream icing +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" -"Smooth sugary buttercream icing. Almost good enough to forget the end of " -"everything." +"A gloppy mix of egg, oil, and salt that is traditionally used to moisten " +"sandwiches." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "potato chips" -msgid_plural "potato chips" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "ketchup" +msgid_plural "ketchups" +msgstr[0] "кетчуп" +msgstr[1] "кетчупу" +msgstr[2] "кетчупу" +msgstr[3] "кетчуп" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for ketchup #: lang/json/COMESTIBLE_from_json.py -msgid "Some plain, salted potato chips." +msgid "A viscous paste of tomato, salt, and vinegar." msgstr "" -#. ~ Description for {'str_sp': 'potato chips'} +#: lang/json/COMESTIBLE_from_json.py lang/json/COMESTIBLE_from_json.py +#: lang/json/furniture_from_json.py +msgid "mustard" +msgid_plural "mustard" +msgstr[0] "гірчиця" +msgstr[1] "гірчиці" +msgstr[2] "гірчиці" +msgstr[3] "гірчиця" + +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py -msgid "Oh man, you love these chips! Score!" +msgid "" +"A condiment made from the seeds of a mustard plant (/Brassica/ or " +"/Sinapis/), vinegar, salt, and spices." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "popcorn kernels" -msgid_plural "popcorn kernels" -msgstr[0] "кукурудза під попкорн" -msgstr[1] "кукурудзи під попкорн" -msgstr[2] "кукурудзи під попкорн" -msgstr[3] "кукурудза під попкорн" +msgid "forest honey" +msgid_plural "forest honey" +msgstr[0] "лісовий мед" +msgstr[1] "лісового меду" +msgstr[2] "лісового меду" +msgstr[3] "лісовий мед" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dried kernels from a particular type of corn. Practically inedible raw, " -"they can be cooked to make a tasty snack." +"Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" +" honey. This honey won't spoil and is good for your digestion." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "popcorn" -msgid_plural "popcorn" -msgstr[0] "попкорн" -msgstr[1] "попкорну" -msgstr[2] "попкорну" -msgstr[3] "попкорн" +msgid "vinegar" +msgid_plural "vinegar" +msgstr[0] "оцет" +msgstr[1] "оцту" +msgstr[2] "оцту" +msgstr[3] "оцет" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" -"Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" -" a result." +"Shockingly tart white vinegar. This is what you get when you let your booze" +" ferment too long." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "salted popcorn" -msgid_plural "salted popcorn" -msgstr[0] "солоний попкорн" -msgstr[1] "солоного попкорну" -msgstr[2] "солоного попкорну" -msgstr[3] "солоний попкорн" +msgid "vegetable cooking oil" +msgid_plural "vegetable cooking oil" +msgstr[0] "рослинна олія" +msgstr[1] "рослинна олія" +msgstr[2] "рослинна олія" +msgstr[3] "рослинна олія" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py -msgid "Popcorn with salt added for extra flavor." +msgid "Thin yellow vegetable oil used for cooking." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "buttered popcorn" -msgid_plural "buttered popcorn" -msgstr[0] "попкорн з маслом" -msgstr[1] "попкорну з маслом" -msgstr[2] "попкорну з маслом" -msgstr[3] "попкорн з маслом" +msgid "animal cooking oil" +msgid_plural "animal cooking oil" +msgstr[0] "рідкий тваринний жир" +msgstr[1] "рідкого тваринного жиру" +msgstr[2] "рідкого тваринного жиру" +msgstr[3] "рідкий тваринний жир" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py -msgid "Popcorn with a light covering of butter for extra flavor." +msgid "Thin yellow animal oil used for cooking." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pretzels" -msgid_plural "pretzels" +msgid "molasses" +msgid_plural "molasses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py -msgid "A salty treat of a snack." +msgid "" +"An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" +" of sugarcane or sugar beets. It has a slightly bitter aftertaste." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chocolate-covered pretzel" -msgid_plural "chocolate-covered pretzels" +msgid "horseradish" +msgid_plural "horseradish" +msgstr[0] "хрін" +msgstr[1] "хрону" +msgstr[2] "хрону" +msgstr[3] "хрін" + +#. ~ Description for horseradish +#: lang/json/COMESTIBLE_from_json.py +msgid "A spicy grated root vegetable packed in vinegared brine." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "coffee syrup" +msgid_plural "coffee syrup" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chocolate-covered pretzel +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py -msgid "A salty treat of a snack, covered in chocolate." +msgid "" +"A thick syrup made of water and sugar strained through coffee grounds. Can " +"be used to flavor many foods and beverages." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chocolate bar" -msgid_plural "chocolate bars" -msgstr[0] "плитка шоколаду" -msgstr[1] "плитки шоколаду" -msgstr[2] "плиток шоколаду" -msgstr[3] "плитки шоколаду" +msgid "bird egg" +msgid_plural "bird eggs" +msgstr[0] "пташине яйце" +msgstr[1] "пташині яйця" +msgstr[2] "пташиних яєць" +msgstr[3] "пташине яйце" -#. ~ Description for chocolate bar +#. ~ Description for bird egg #: lang/json/COMESTIBLE_from_json.py -msgid "Chocolate isn't very healthy, but it does make a delicious treat." +msgid "Nutritious egg laid by a bird." +msgstr "Поживне яйце, відкладене птахом." + +#: lang/json/COMESTIBLE_from_json.py +msgid "chicken egg" +msgid_plural "chicken eggs" +msgstr[0] "куряче яйце" +msgstr[1] "курячих яйця" +msgstr[2] "курячих яєць" +msgstr[3] "куряче яйце" + +#: lang/json/COMESTIBLE_from_json.py +msgid "unfertilized bird egg" +msgid_plural "unfertilized bird eggs" +msgstr[0] "незапліднене пташине яйце" +msgstr[1] "незапліднених пташиних яйця" +msgstr[2] "незапліднених пташиних яєць" +msgstr[3] "незапліднене пташине яйце" + +#. ~ Description for unfertilized bird egg +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Nutritious egg laid by a bird. This one is unfertilized and is probably " +"from a farm." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "marshmallows" -msgid_plural "marshmallows" +msgid "grouse egg" +msgid_plural "grouse eggs" +msgstr[0] "яйце глухаря" +msgstr[1] "яйця глухаря" +msgstr[2] "яєць глухаря" +msgstr[3] "яйце глухаря" + +#: lang/json/COMESTIBLE_from_json.py +msgid "crow egg" +msgid_plural "crow eggs" +msgstr[0] "вороняче яйце" +msgstr[1] "воронячих яйця" +msgstr[2] "воронячих яєць" +msgstr[3] "вороняче яйце" + +#: lang/json/COMESTIBLE_from_json.py +msgid "raven egg" +msgid_plural "raven eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'marshmallows'} #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." -msgstr "" +msgid "blue jay egg" +msgid_plural "blue jay eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/COMESTIBLE_from_json.py -msgid "s'mores" -msgid_plural "s'mores" +msgid "cardinal egg" +msgid_plural "cardinal eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "s'mores"} #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A pair of graham crackers with some chocolate and a marshmallow between " -"them." +msgid "robin egg" +msgid_plural "robin eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for robin egg +#: lang/json/COMESTIBLE_from_json.py +msgid "Nutritious egg laid by a robin." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "peanut butter candy" -msgid_plural "peanut butter candies" -msgstr[0] "цукерка із арахісовим маслом" -msgstr[1] "цукерки із арахісовим маслом" -msgstr[2] "цукерок із арахісовим маслом" -msgstr[3] "цукерка із арахісовим маслом" +msgid "sparrow egg" +msgid_plural "sparrow eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for peanut butter candy #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of peanut butter cups… your favorite!" -msgstr "" +msgid "duck egg" +msgid_plural "duck eggs" +msgstr[0] "качине яйце" +msgstr[1] "качині яйця" +msgstr[2] "качиних яєць" +msgstr[3] "качині яйця" #: lang/json/COMESTIBLE_from_json.py -msgid "chocolate candy" -msgid_plural "chocolate candies" -msgstr[0] "шоколадна цукерка" -msgstr[1] "шоколадні цукерки" -msgstr[2] "шоколадних цукерок" -msgstr[3] "шоколадна цукерка" +msgid "goose egg" +msgid_plural "goose eggs" +msgstr[0] "гусяче яйце" +msgstr[1] "гусячі яйця" +msgstr[2] "гусячих яєць" +msgstr[3] "гусячі яйця" -#. ~ Description for chocolate candy #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of colorful chocolate filled candies." -msgstr "" +msgid "turkey egg" +msgid_plural "turkey eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/COMESTIBLE_from_json.py -msgid "chewy candy" -msgid_plural "chewy candy" +msgid "pheasant egg" +msgid_plural "pheasant eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chewy candy'} #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of colorful fruit-flavored chewy candy." -msgstr "" +msgid "cockatrice egg" +msgid_plural "cockatrice eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/COMESTIBLE_from_json.py -msgid "gummy candy" -msgid_plural "gummy candy" +msgid "reptile egg" +msgid_plural "reptile eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for reptile egg #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of colorful fruit and soda pop flavored gummy candies." +msgid "An egg belonging to one of reptile species found in New England." msgstr "" +"Яйце рептилії, що належить до одного з видів, що мешкають у Новій Англії." -#. ~ Description for {'str_sp': 'gummy candy'} #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A handful of colorful fruit and soda pop flavored vegan gummy candies made " -"from agar. They have kind of a strange texture, but they're still tasty." -msgstr "" +msgid "Insect Egg" +msgid_plural "Insect Eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/COMESTIBLE_from_json.py -msgid "chewy reptilian candy" -msgid_plural "chewy reptilian candies" +msgid "ant egg" +msgid_plural "ant eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chewy reptilian candy +#. ~ Description for ant egg #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of colorful fruit-flavored chewy candy shaped in a reptilian " -"fashion. Made by SugarRush." +"A large, heavy ant egg, the size of a softball. Extremely nutritious, but " +"incredibly gross." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "candy cattle" -msgid_plural "candy cattles" +msgid "spider egg" +msgid_plural "spider eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for candy cattle +#. ~ Description for spider egg #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of chocolate candies shaped like cows." +msgid "A fist-sized egg from a giant spider. Incredibly gross." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "licorice" -msgid_plural "licorices" +msgid "roach egg" +msgid_plural "roach eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for licorice +#. ~ Description for roach egg #: lang/json/COMESTIBLE_from_json.py -msgid "A swirly confectionary treat in strings of sweet tasting candy." +msgid "A fist-sized egg from a giant roach. Incredibly gross." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "powder candy sticks" -msgid_plural "powder candy sticks" -msgstr[0] "трубочка із цукерковим порошком" -msgstr[1] "трубочки із цукерковим порошком" -msgstr[2] "трубочок із цукерковим порошком" -msgstr[3] "трубочка із цукерковим порошком" +msgid "locust egg" +msgid_plural "locust eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for locust egg #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" +msgid "A fist-sized egg from a locust." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "maple syrup candy" -msgid_plural "maple syrup candies" -msgstr[0] "цукерка з кленового сиропу" -msgstr[1] "цукерки з кленового сиропу" -msgstr[2] "цукерок з кленового сиропу" -msgstr[3] "цукерка з кленового сиропу" +msgid "dragonfly egg" +msgid_plural "dragonfly eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for maple syrup candy +#. ~ Description for dragonfly egg #: lang/json/COMESTIBLE_from_json.py msgid "" -"This golden, translucent leaf candy is made with pure maple syrup and melt " -"slowly as you savor the taste of real maple." +"The still wet egg of a mutated dragonfly. Serves as a disgusting substitute" +" for the real thing, just don't let it hatch in the water." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "graham cracker" -msgid_plural "graham crackers" +msgid "firefly egg" +msgid_plural "firefly eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for graham cracker +#. ~ Description for firefly egg #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Dry and sugary, these crackers will leave you thirsty, but go good with some" -" chocolate and marshmallows." +msgid "The fist-sized egg of a mutant firefly. Glows faintly in the dark." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "graham cracker chunk" -msgid_plural "graham cracker chunks" +msgid "centipede egg" +msgid_plural "centipede eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for graham cracker chunk +#. ~ Description for centipede egg #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dry and sugary, these cracker pellets will leave you thirsty, but go well " -"with some chocolate and marshmallows. Made by SugarRush!" +"A large, soft egg you got from butchering a mutant centipede. Inside, you " +"can already see a bundle of spindly legs, twitching in anticipation." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/COMESTIBLE_from_json.py -#: lang/json/MONSTER_from_json.py -msgid "cookie" -msgid_plural "cookies" -msgstr[0] "печиво" -msgstr[1] "печива" -msgstr[2] "печива" -msgstr[3] "печиво" +#: lang/json/COMESTIBLE_from_json.py +msgid "wasp egg" +msgid_plural "wasp eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for cookie +#. ~ Description for wasp egg #: lang/json/COMESTIBLE_from_json.py -msgid "Sweet and delicious cookies, just like grandma used to bake." +msgid "" +"A white, flexible wasp egg. It looks like a pristine grain of rice, grown " +"to the size of your palm." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cookie egg" -msgid_plural "cookie eggs" +msgid "antlion egg" +msgid_plural "antlion eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cookie egg +#. ~ Description for antlion egg #: lang/json/COMESTIBLE_from_json.py -msgid "Sweet and delicious cookies, shaped like eggs. Made by SugarRush!" +msgid "A large white antlion egg. There is something hard inside." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "maple syrup" -msgid_plural "maple syrup" -msgstr[0] "кленовий сироп" -msgstr[1] "кленового сиропу" -msgstr[2] "кленового сиропу" -msgstr[3] "кленовий сироп" +msgid "water strider egg" +msgid_plural "water strider eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for water strider egg #: lang/json/COMESTIBLE_from_json.py msgid "" -"Boiling the sap of a maple tree has concentrated it into sweet, delicious " -"maple syrup." +"A large, sticky and wet water strider egg. You should probably put it back " +"in the water." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sugar beet syrup" -msgid_plural "sugar beet syrup" +msgid "grasshopper egg" +msgid_plural "grasshopper eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for grasshopper egg #: lang/json/COMESTIBLE_from_json.py msgid "" -"A thick syrup produced from shredded sugar beets. Useful in cooking as a " -"sweetener." +"A white and long pill-shaped grasshopper egg. Inside you can see two " +"twitching legs." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cake" -msgid_plural "cakes" +msgid "lady bug egg" +msgid_plural "lady bug eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cake +#. ~ Description for lady bug egg #: lang/json/COMESTIBLE_from_json.py msgid "" -"Delicious sponge cake with buttercream icing, it says happy birthday on it." +"A lady bug egg. It looks like a huge yellow rice grain. Inside there is a " +"hungry translucent lavrae." msgstr "" -#. ~ Description for cake #: lang/json/COMESTIBLE_from_json.py -msgid "Delicious chocolate cake. It has all the icing. All of it." -msgstr "" +msgid "mole cricket egg" +msgid_plural "mole cricket eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for cake +#. ~ Description for mole cricket egg #: lang/json/COMESTIBLE_from_json.py msgid "" -"A cake coated in the thickest icing you've ever seen. Someone has written " -"guff in quotation marks on it…" +"A mole cricket egg covered in bits of sand and dirt. It's brown with a few " +"black dots on it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chocolate-covered coffee bean" -msgid_plural "chocolate-covered coffee beans" +msgid "praying mantis egg case" +msgid_plural "praying mantis egg cases" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chocolate-covered coffee bean +#. ~ Description for praying mantis egg case #: lang/json/COMESTIBLE_from_json.py msgid "" -"Roasted coffee beans coated with dark chocolate, natural source of " -"concentrated caffeine." +"Praying mantis eggs glued to each other inside a strange-looking case. It " +"resembles a trilobite or woodlouse." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fast-food French fries" -msgid_plural "fast-food French fries" +msgid "razorclaw roe" +msgid_plural "razorclaw roes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for razorclaw roe #: lang/json/COMESTIBLE_from_json.py -msgid "Fast-food fried potatoes. Somehow, they're still edible." +msgid "A clump of razorclaw eggs. A post-Cataclysm delicacy." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "French fries" -msgid_plural "French fries" +msgid "roe" +msgid_plural "roes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for roe #: lang/json/COMESTIBLE_from_json.py -msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." +msgid "Common roe from an unknown fish." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "peppermint patty" -msgid_plural "peppermint patties" +msgid "powdered egg" +msgid_plural "powdered eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for peppermint patty +#. ~ Description for powdered egg #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of soft chocolate-covered peppermint patties… yum!" +msgid "Whole fresh eggs, dehydrated into an easy to store powder." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Necco wafers" -msgid_plural "Necco wafers" +msgid "scrambled eggs" +msgid_plural "scrambled eggs" +msgstr[0] "омлет" +msgstr[1] "омлету" +msgstr[2] "омлету" +msgstr[3] "омлет" + +#. ~ Description for scrambled eggs +#: lang/json/COMESTIBLE_from_json.py +msgid "Fluffy and delicious scrambled eggs." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "boiled egg" +msgid_plural "boiled eggs" +msgstr[0] "варене яйце" +msgstr[1] "варених яйця" +msgstr[2] "варених яєць" +msgstr[3] "варені яйця" + +#. ~ Description for boiled egg +#: lang/json/COMESTIBLE_from_json.py +msgid "A hard-boiled egg, still in its shell. Portable and nutritious!" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "fried eggs" +msgid_plural "fried eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " -"chocolate, wintergreen, cinnamon, and licorice. Yum!" +"Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " +"edges." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "candy cigarette" -msgid_plural "candy cigarettes" +msgid "deluxe fried eggs" +msgid_plural "deluxe fried eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for candy cigarette +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" -"Candy sticks. Slightly more healthy than tobacco cigarettes, but with no " -"possibility of addiction." +"Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" +" the edges with cheese or a vegetable, garnish and condiment." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/terrain_from_json.py -msgid "caramel" -msgid_plural "caramel" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried egg sandwich" +msgid_plural "fried egg sandwich" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "Some caramel. Still bad for your health." +msgid "" +"Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " +"edges. Made into a sandwich, just like Sunday morning." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "caramel apple" -msgid_plural "caramel apple" +msgid "deluxe fried egg sandwich" +msgid_plural "deluxe fried egg sandwich" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "Betcha can't eat just one." +msgid "" +"Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" +" the edges. Made into a sandwich, just like Sunday morning." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tortilla chips" -msgid_plural "tortilla chips" +msgid "pickled egg" +msgid_plural "pickled eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for pickled egg #: lang/json/COMESTIBLE_from_json.py msgid "" -"Salted chips made from corn tortillas, could really use some cheese, maybe " -"some beef." +"A pickled egg. Rather salty, but tastes good and lasts for a long time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cheese nachos" -msgid_plural "cheese nachos" +msgid "milkshake" +msgid_plural "milkshakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for milkshake #: lang/json/COMESTIBLE_from_json.py msgid "" -"Salted chips made from corn tortillas, now with cheese. Could stand to have" -" some meat." +"An all-natural cold beverage made with milk and sweeteners. Tastes great " +"when frozen." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "meat nachos" -msgid_plural "meat nachos" +msgid "fast food milkshake" +msgid_plural "fast food milkshakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Description for fast food milkshake #: lang/json/COMESTIBLE_from_json.py -msgid "niño nachos" -msgid_plural "niño nachos" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A milkshake made by freezing a premade mix. Tastes better due to how much " +"sugar is in it, but is bad for your health." +msgstr "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "nibelung nachos" -msgid_plural "nibelung nachos" +msgid "chocolate milkshake" +msgid_plural "chocolate milkshakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Description for chocolate milkshake #: lang/json/COMESTIBLE_from_json.py -msgid "nachos con chupacabra" -msgid_plural "nachos con chupacabra" +msgid "" +"An all-natural cold beverage made with chocolate milk and sweeteners. " +"Tastes great when frozen." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "deluxe milkshake" +msgid_plural "deluxe milkshakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for deluxe milkshake #: lang/json/COMESTIBLE_from_json.py msgid "" -"Salted chips made from corn tortillas, now with meat. Could probably use " -"some cheese, though." +"This milkshake has been enhanced with added sweeteners, and even has a " +"cherry on top. Tastes great, but is fairly awful for your health." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "meat nachos with cheese" -msgid_plural "meat nachos with cheese" +msgid "deluxe chocolate milkshake" +msgid_plural "deluxe chocolate milkshakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Description for deluxe chocolate milkshake #: lang/json/COMESTIBLE_from_json.py -msgid "niño nachos with cheese" -msgid_plural "niño nachos with cheese" +msgid "" +"This chocolate milkshake has been enhanced with added sweeteners, and even " +"has a cherry on top. Tastes great, but is fairly awful for your health." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "frozen lemonade" +msgid_plural "frozen lemonades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Description for frozen lemonade #: lang/json/COMESTIBLE_from_json.py -msgid "nibelung nachos with cheese" -msgid_plural "nibelung nachos with cheese" +msgid "" +"An all-natural cold beverage made with lemonade and sweeteners. Tastes " +"great when frozen." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "ice cream" +msgid_plural "ice cream scoops" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Description for ice cream #: lang/json/COMESTIBLE_from_json.py -msgid "cheese and chupacabra nachos" -msgid_plural "cheese and chupacabra nachos" +msgid "A sweet, frozen food made of milk with liberal amounts of sugar." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "dairy dessert" +msgid_plural "dairy dessert scoops" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for dairy dessert #: lang/json/COMESTIBLE_from_json.py msgid "" -"Salted chips made from corn tortillas with ground meat and smothered in " -"cheese. Delicious." +"Government regulations dictate that since this isn't *technically* ice " +"cream, it can be called a dairy dessert instead. It still tastes good, but " +"your body won't like you." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vegetarian nachos" -msgid_plural "vegetarian nachos" +msgid "chocolate ice cream" +msgid_plural "chocolate ice cream scoops" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for chocolate ice cream #: lang/json/COMESTIBLE_from_json.py msgid "" -"Salted chips made from corn tortillas, now with beans. Could probably use " -"some cheese, though." +"A sweet, frozen food made of chocolate milk with liberal amounts of sugar." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vegetarian nachos with cheese" -msgid_plural "vegetarian nachos with cheese" +msgid "sundae cup" +msgid_plural "sundae cups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for sundae cup #: lang/json/COMESTIBLE_from_json.py msgid "" -"Salted chips made from corn tortillas with beans and smothered in cheese. " -"Delicious, even if you're not a vegetarian." +"A small cup of frozen dairy dessert that is half chocolate, half vanilla, " +"and all delicious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pork stick" -msgid_plural "pork sticks" +msgid "candy ice cream" +msgid_plural "candy ice cream scoops" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pork stick +#. ~ Description for candy ice cream #: lang/json/COMESTIBLE_from_json.py -msgid "Salty dried pork. Tastes good, but it will make you thirsty." +msgid "" +"Ice cream with bits of chocolate, caramel, or other flavoring mixed in." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "microwave burrito" -msgid_plural "microwave burritos" +msgid "fruity ice cream" +msgid_plural "fruity ice cream scoops" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for microwave burrito +#. ~ Description for fruity ice cream #: lang/json/COMESTIBLE_from_json.py msgid "" -"A small, microwaveable steak & cheese burrito, like those found at gas " -"stations." +"Small bits of sweet fruit have been tossed into this ice cream, making it " +"slightly less terrible for you." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "uncooked TV dinner" -msgid_plural "uncooked TV dinners" +msgid "frozen custard" +msgid_plural "frozen custard scoops" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for uncooked TV dinner +#. ~ Description for frozen custard #: lang/json/COMESTIBLE_from_json.py msgid "" -"Now with ONE POUND of meat and ONE POUND of carbs! Not as appetizing or " -"nutritious as it would be if heated up." +"Similar to ice cream, this treat made famous in Coney Island is made like " +"ice cream, but with egg yolk added in. Its storing temperature is warmer, " +"and it lasts a little longer than regular ice cream." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked TV dinner" -msgid_plural "cooked TV dinners" +msgid "frozen yogurt" +msgid_plural "frozen yogurt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked TV dinner +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" -"Now with ONE POUND of meat and ONE POUND of carbs! Nice and heated up. " -"It's tastier and more filling, but will also spoil quickly." +"Tarter than ice cream, this is made with yogurt and other dairy products, " +"and is generally low-fat compared to ice cream itself." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deep-fried chicken" -msgid_plural "deep-fried chickens" +msgid "sorbet" +msgid_plural "sorbet scoops" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deep-fried chicken +#. ~ Description for sorbet #: lang/json/COMESTIBLE_from_json.py -msgid "Chicken cooked while submerged in oil. It's greasy and delicious." +msgid "A simple frozen dessert food made from water and fruit juice." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chili dogs" -msgid_plural "chili dogs" +msgid "gelato" +msgid_plural "gelato scoops" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for gelato #: lang/json/COMESTIBLE_from_json.py -msgid "A hot dog, served with chili con carne as a topping. Yum!" +msgid "" +"Italian-style ice cream. Less airy, and more dense, giving it a richer " +"flavor and texture." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "uncooked corn dogs" -msgid_plural "uncooked corn dogs" -msgstr[0] "неприготований корн-дог" -msgstr[1] "неприготованих корн-доги" -msgstr[2] "неприготованих корн-догів" -msgstr[3] "неприготований корн-дог" +msgid "cooked strawberry" +msgid_plural "cooked strawberries" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for cooked strawberry #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A heavily processed sausage, dipped in batter and deep-fried. It would " -"taste much better prepared." +msgid "It's like strawberry jam, only without sugar." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked corn dog" -msgid_plural "cooked corn dogs" +msgid "fruit leather" +msgid_plural "fruit leathers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked corn dog +#. ~ Description for fruit leather #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A heavily processed sausage, dipped in batter and deep-fried. Cooked, this " -"corn dog now tastes much better, but will spoil." +msgid "Dried strips of sugary fruit paste." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "homemade corn dog" -msgid_plural "homemade corn dogs" +msgid "cooked blueberry" +msgid_plural "cooked blueberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for homemade corn dog +#. ~ Description for cooked blueberry #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A homemade sausage, dipped in batter and deep fried. Cooked, this corn dog " -"now tastes much better, but will spoil." +msgid "It's like blueberry jam, only without sugar." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chocolate pancake" -msgid_plural "chocolate pancakes" +msgid "peaches in syrup" +msgid_plural "peaches in syrup" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chocolate pancake +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Fluffy and delicious pancakes with real maple syrup, with delicious " -"chocolate baked right in." +msgid "Yellow cling peach slices packed in light syrup." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chocolate waffle" -msgid_plural "chocolate waffles" +msgid "canned pineapple" +msgid_plural "canned pineapples" +msgstr[0] "консервовані ананаси" +msgstr[1] "консервованих ананасів" +msgstr[2] "консервованих ананасів" +msgstr[3] "консервовані ананаси" + +#. ~ Description for canned pineapple +#: lang/json/COMESTIBLE_from_json.py +msgid "Canned pineapple rings in water. Quite tasty." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "lemonade drink mix" +msgid_plural "lemonade drink mix" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chocolate waffle +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" -"Crunchy and delicious waffles with real maple syrup, with delicious " -"chocolate baked right in." +"Tangy yellow powder that smells strongly of lemons. Can be mixed with water" +" to make lemonade." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cheese spread" -msgid_plural "cheese spreads" +msgid "cooked fruit" +msgid_plural "cooked fruits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cheese spread +#. ~ Description for cooked fruit #: lang/json/COMESTIBLE_from_json.py -msgid "Processed cheese spread." +msgid "It's like fruit jam, only without sugar." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cheese fries" -msgid_plural "cheese fries" +msgid "fruit jam" +msgid_plural "fruit jams" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for fruit jam #: lang/json/COMESTIBLE_from_json.py -msgid "Fried potatoes with delicious cheese smothered on top." +msgid "Fresh fruit, cooked with sugar to make them last longer." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "onion ring" -msgid_plural "onion rings" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "dehydrated fruit" +msgid_plural "dehydrated fruit" +msgstr[0] "сушений фрукт" +msgstr[1] "сушених фрукти" +msgstr[2] "сушених фруктів" +msgstr[3] "сушений фрукт" -#. ~ Description for onion ring +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py -msgid "Battered and fried onions. Crunchy and delicious." +msgid "" +"Dehydrated fruit flakes. With proper storage, this dried food will remain " +"edible for an incredibly long time. They are useful for several cooking " +"recipes." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "uncooked hot dog" -msgid_plural "uncooked hot dogs" +msgid "rehydrated fruit" +msgid_plural "rehydrated fruit" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for uncooked hot dog +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" -"A heavily processed sausage, commonplace at baseball games before the " -"Cataclysm. It would taste much better prepared." +"Reconstituted fruit flakes, which are much more enjoyable to eat now that " +"they have been rehydrated." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "campfire hot dog" -msgid_plural "campfire hot dogs" +msgid "fruit slice" +msgid_plural "fruit slices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for campfire hot dog +#. ~ Description for fruit slice #: lang/json/COMESTIBLE_from_json.py msgid "" -"The simple hot dog, cooked over an open fire. Would be better on a bun, but" -" it's quite an improvement over eating it uncooked" +"Fruit slices soaked in a sugar syrup, to preserve freshness and appearance." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked hot dog" -msgid_plural "cooked hot dogs" +msgid "canned fruit" +msgid_plural "canned fruit" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked hot dog +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" -"Surprisingly, not made from dog. Cooked, this hot dog now tastes much " -"better, but will spoil." +"This sodden mass of preserved fruit was boiled and canned in an earlier " +"life. Bland, mushy and losing color." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "new york wiener" -msgid_plural "new york wieners" +msgid "pumpkin yeast bread" +msgid_plural "pumpkin yeast bread" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for new york wiener +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" -"What's better than a hot dog? A hot dog smothered in ground meat and " -"chopped onions, of course! Tastes better than a normal hot dog." +"A festive autumnal bread with a golden color in either rolls or sliced " +"loaves of bread." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "malted milk ball" -msgid_plural "malted milk balls" +msgid "brandied fruit" +msgid_plural "brandied fruits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for malted milk ball +#. ~ Description for brandied fruit #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Crunchy sugar in chocolate capsules. The malt gives them a distinct, yet " -"delicious flavor." +msgid "Whole fruits preserved in 40 proof or higher alcohol." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgctxt "candy-coated peanuts" -msgid "candy-coated peanuts" -msgid_plural "candy-coated peanuts" +msgid "irradiated rose hips" +msgid_plural "irradiated rose hips" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" -"Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." +"An irradiated rose hips will remain edible nearly forever. Sterilized using" +" radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "freeze-dried meal" -msgid_plural "freeze-dried meals" +msgid "irradiated elderberry" +msgid_plural "irradiated elderberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for freeze-dried meal +#. ~ Description for irradiated elderberry #: lang/json/COMESTIBLE_from_json.py msgid "" -"A sealed plastic bag containing a full dehydrated meal. This one contains a" -" hearty cooked beef and egg breakfast." +"An irradiated elderberry will remain edible nearly forever. Sterilized " +"using radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rehydrated freeze-dried meal" -msgid_plural "rehydrated freeze-dried meals" +msgid "irradiated mulberry" +msgid_plural "irradiated mulberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rehydrated freeze-dried meal +#. ~ Description for irradiated mulberry #: lang/json/COMESTIBLE_from_json.py -msgid "This is a rehydrated meal meant for camping or hiking." +msgid "" +"An irradiated mulberry will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "military chocolate bar" -msgid_plural "military chocolate bars" +msgid "irradiated huckleberry" +msgid_plural "irradiated huckleberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for military chocolate bar +#. ~ Description for irradiated huckleberry #: lang/json/COMESTIBLE_from_json.py msgid "" -"A thick, dense bar of military chocolate. While tough to chew and not very " -"appetizing, it will provide almost a day's worth of calories in portable " -"form." +"An irradiated huckleberry will remain edible nearly forever. Sterilized " +"using radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "gelatin dessert powder" -msgid_plural "gelatin dessert powders" +msgid "irradiated raspberry" +msgid_plural "irradiated raspberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for gelatin dessert powder +#. ~ Description for irradiated raspberry #: lang/json/COMESTIBLE_from_json.py msgid "" -"A small box of gelatin dessert powder. Just add water and set. Comes in a " -"variety of flavors." +"An irradiated raspberry will remain edible nearly forever. Sterilized using" +" radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "unflavored gelatin dessert" -msgid_plural "unflavored gelatin desserts" +msgid "irradiated cranberry" +msgid_plural "irradiated cranberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for unflavored gelatin dessert +#. ~ Description for irradiated cranberry #: lang/json/COMESTIBLE_from_json.py msgid "" -"An unflavored jiggly, sugary treat made from gelatin and sugar. This would " -"taste better with some flavor." +"An irradiated cranberry will remain edible nearly forever. Sterilized using" +" radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "processed gelatin dessert" -msgid_plural "processed gelatin desserts" +msgid "irradiated strawberry" +msgid_plural "irradiated strawberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for processed gelatin dessert +#. ~ Description for irradiated strawberry #: lang/json/COMESTIBLE_from_json.py msgid "" -"A jiggly, sugary treat made from gelatin and sugar. Comes in a variety of " -"flavors. A kid favorite pre-Cataclysm." +"An irradiated strawberry will remain edible nearly forever. Sterilized " +"using radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "homemade gelatin dessert" -msgid_plural "homemade gelatin desserts" +msgid "irradiated blueberry" +msgid_plural "irradiated blueberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for homemade gelatin dessert +#. ~ Description for irradiated blueberry #: lang/json/COMESTIBLE_from_json.py msgid "" -"A homemade jiggly, sugary treat made from gelatin and sugar flavored with " -"fruit juice. A kid favorite pre-Cataclysm." +"An irradiated blueberry will remain edible nearly forever. Sterilized using" +" radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fruit filled gelatin dessert" -msgid_plural "fruit filled gelatin desserts" +msgid "irradiated apple" +msgid_plural "irradiated apples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit filled gelatin dessert +#. ~ Description for irradiated apple #: lang/json/COMESTIBLE_from_json.py msgid "" -"A jiggly, sugary treat made from gelatin and sugar flavored with fruit juice" -" and set with fruit. A kid favorite pre-Cataclysm and a healthy treat" +"Mmm, irradiated. Will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vegan gelatin dessert" -msgid_plural "vegan gelatin desserts" +msgid "irradiated banana" +msgid_plural "irradiated bananas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vegan gelatin dessert +#. ~ Description for irradiated banana #: lang/json/COMESTIBLE_from_json.py msgid "" -"A vegan friendly homemade jiggly, sugary treat made from agar and sugar " -"flavored with fruit juice. A kid favorite pre-Cataclysm. They'll never " -"know the difference." +"An irradiated banana will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fruit filled vegan gelatin dessert" -msgid_plural "fruit filled vegan gelatin desserts" +msgid "irradiated orange" +msgid_plural "irradiated oranges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit filled vegan gelatin dessert +#. ~ Description for irradiated orange #: lang/json/COMESTIBLE_from_json.py msgid "" -"A vegan friendly jiggly, sugary treat made from agar and sugar flavored with" -" fruit juice and set with fruit. A kid favorite pre-Cataclysm and a healthy" -" treat" +"An irradiated orange will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw sausage" -msgid_plural "raw sausages" +msgid "irradiated lemon" +msgid_plural "irradiated lemons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Description for irradiated lemon #: lang/json/COMESTIBLE_from_json.py -msgid "raw Mannwurst" -msgid_plural "raw Mannwursts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"An irradiated lemon will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." +msgstr "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "raw killbasa" -msgid_plural "raw killbasas" +msgid "irradiated grapefruit" +msgid_plural "irradiated grapefruits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Description for irradiated grapefruit #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "sinister %s" -msgid_plural "sinister %s" +msgid "" +"An irradiated grapefruit will remain edible nearly forever. Sterilized " +"using radiation, so it's safe to eat." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "irradiated pear" +msgid_plural "irradiated pears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw sausage +#. ~ Description for irradiated pear #: lang/json/COMESTIBLE_from_json.py -msgid "A hefty raw sausage, prepared for smoking or cooking." +msgid "" +"An irradiated pear will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "smoked sausage" -msgid_plural "smoked sausages" +msgid "irradiated cherry" +msgid_plural "irradiated cherries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Description for irradiated cherry #: lang/json/COMESTIBLE_from_json.py -msgid "smoked Mannwurst" -msgid_plural "smoked Mannwursts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"An irradiated cherry will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." +msgstr "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "smoked killbasa" -msgid_plural "smoked killbasas" +msgid "irradiated plum" +msgid_plural "irradiated plums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for smoked sausage +#. ~ Description for irradiated plum #: lang/json/COMESTIBLE_from_json.py -msgid "A hefty sausage that has been cured and smoked for long term storage." +msgid "" +"A group of irradiated plums will remain edible nearly forever. Sterilized " +"using radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked sausage" -msgid_plural "cooked sausages" +msgid "irradiated grape" +msgid_plural "irradiated grapes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Description for irradiated grape #: lang/json/COMESTIBLE_from_json.py -msgid "cooked Mannwurst" -msgid_plural "cooked Mannwursts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"An irradiated grape will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." +msgstr "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "cooked killbasa" -msgid_plural "cooked killbasas" +msgid "irradiated pineapple" +msgid_plural "irradiated pineapples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked sausage +#. ~ Description for irradiated pineapple #: lang/json/COMESTIBLE_from_json.py -msgid "A hefty sausage that has been cooked." +msgid "" +"An irradiated pineapple will remain edible nearly forever. Sterilized using" +" radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sweet sausage" -msgid_plural "sweet sausages" +msgid "irradiated peach" +msgid_plural "irradiated peaches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sweet sausage +#. ~ Description for irradiated peach #: lang/json/COMESTIBLE_from_json.py -msgid "A sweet and delicious sausage. Better eat it fresh." +msgid "" +"An irradiated peach will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bratwurst" -msgid_plural "bratwursts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM -#: lang/json/COMESTIBLE_from_json.py -msgid "Mannbrat" -msgid_plural "Mannbrats" +msgid "irradiated watermelon" +msgid_plural "irradiated watermelons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Description for irradiated watermelon #: lang/json/COMESTIBLE_from_json.py -msgid "frankenfurter" -msgid_plural "frankenfurters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"An irradiated watermelon will remain edible nearly forever. Sterilized " +"using radiation, so it's safe to eat." +msgstr "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "baleful %s" -msgid_plural "baleful %s" +msgid "irradiated melon" +msgid_plural "irradiated melons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bratwurst +#. ~ Description for irradiated melon #: lang/json/COMESTIBLE_from_json.py msgid "" -"A type of German sausage made of finely chopped meat and meant to be pan " -"fried or roasted. Better eat it hot and fresh." +"An irradiated melon will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "royal beef" -msgid_plural "royal beef" +msgid "irradiated blackberry" +msgid_plural "irradiated blackberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for irradiated blackberry #: lang/json/COMESTIBLE_from_json.py msgid "" -"A chunk of meat with a coat of royal jelly over it. It's a lot like a " -"honey-baked ham." +"An irradiated blackberry will remain edible nearly forever. Sterilized " +"using radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bacon" -msgid_plural "pieces of bacon" +msgid "irradiated mango" +msgid_plural "irradiated mangos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bacon +#. ~ Description for irradiated mango #: lang/json/COMESTIBLE_from_json.py msgid "" -"A thick slab of salty cured bacon. Shelf stable, precooked and ready-to-" -"eat, it tastes better when reheated." +"An irradiated mango will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wasteland sausage" -msgid_plural "wasteland sausages" +msgid "irradiated pomegranate" +msgid_plural "irradiated pomegranates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wasteland sausage +#. ~ Description for irradiated pomegranate #: lang/json/COMESTIBLE_from_json.py msgid "" -"Lean sausage made from heavily salt-cured offal, with natural gut casing. " -"Waste not, want not." +"An irradiated pomegranate will remain edible nearly forever. Sterilized " +"using radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw wasteland sausage" -msgid_plural "raw wasteland sausages" +msgid "irradiated papaya" +msgid_plural "irradiated papayas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw wasteland sausage +#. ~ Description for irradiated papaya #: lang/json/COMESTIBLE_from_json.py msgid "" -"Lean raw sausage made from heavily salt-cured offal, ready to be smoked." +"An irradiated papaya will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cracklins" -msgid_plural "cracklins" -msgstr[0] "шкварки" -msgstr[1] "шкварки" -msgstr[2] "шкварки" -msgstr[3] "шкварки" +msgid "irradiated kiwi" +msgid_plural "irradiated kiwis" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for irradiated kiwi #: lang/json/COMESTIBLE_from_json.py msgid "" -"Also known as pork rinds or chicharrones, these are bits of edible fat and " -"skin that have been fried until they are crispy and delicious." +"An irradiated kiwi will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "glazed tenderloins" -msgid_plural "glazed tenderloins" +msgid "irradiated apricot" +msgid_plural "irradiated apricots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Description for irradiated apricot +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"An irradiated apricot will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "grisly %s" -msgid_plural "grisly %s" +msgid "irradiated lettuce" +msgid_plural "irradiated lettuces" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for irradiated lettuce #: lang/json/COMESTIBLE_from_json.py msgid "" -"A tender piece of meat perfectly seasoned with a thin sweet glaze and its " -"veggie accompaniments. A gourmet dish that is both healthy, sweet and " -"delicious." +"An irradiated head of lettuce will remain edible nearly forever. Sterilized" +" using radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "currywurst" -msgid_plural "currywursts" +msgid "irradiated cabbage" +msgid_plural "irradiated cabbages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Description for irradiated cabbage #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "cheapskate %s" -msgid_plural "cheapskate %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"An irradiated head of cabbage will remain edible nearly forever. Sterilized" +" using radiation, so it's safe to eat." +msgstr "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "confusing %s" -msgid_plural "confusing %s" +msgid "irradiated tomato" +msgid_plural "irradiated tomatoes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Description for irradiated tomato #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "bloodcurdling %s" -msgid_plural "bloodcurdling %s" +msgid "" +"An irradiated tomato will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "irradiated broccoli" +msgid_plural "irradiated broccoli" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for currywurst +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" -"Sausage covered in a curry ketchup sauce. Fairly spicy and impressive at " -"the same time!" +"An irradiated cluster of broccoli will remain edible nearly forever. " +"Sterilized using radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "aspic" -msgid_plural "aspics" +msgid "irradiated zucchini" +msgid_plural "irradiated zucchinis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Description for irradiated zucchini #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "abomination %s" -msgid_plural "abomination %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"An irradiated zucchini will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." +msgstr "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "amoral %s" -msgid_plural "amoral %s" +msgid "irradiated onion" +msgid_plural "irradiated onions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Description for irradiated onion #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "Orwell's %s" -msgid_plural "Orwell's %s" +msgid "" +"An irradiated onion will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "irradiated carrot" +msgid_plural "irradiated carrots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for aspic +#. ~ Description for irradiated carrot #: lang/json/COMESTIBLE_from_json.py msgid "" -"A dish in which meat or fish is set into a gelatin made from a meat or " -"vegetable stock." +"An irradiated bundle of carrots will remain edible nearly forever. " +"Sterilized using radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dehydrated fish" -msgid_plural "dehydrated fish" -msgstr[0] "сушена риба" -msgstr[1] "сушені риби" -msgstr[2] "сушених риб" -msgstr[3] "сушена риба" +msgid "irradiated corn" +msgid_plural "irradiated corn" +msgstr[0] "опромінена кукурудза" +msgstr[1] "опроміненої кукурудзи" +msgstr[2] "опроміненої кукурудзи" +msgstr[3] "опромінена кукурудза" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dehydrated fish flakes. With proper storage, this dried food will remain " -"edible for an incredibly long time." +"An irradiated ear of corn will remain edible nearly forever. Sterilized " +"using radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rehydrated fish" -msgid_plural "rehydrated fish" +msgid "irradiated pumpkin" +msgid_plural "irradiated pumpkins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for irradiated pumpkin #: lang/json/COMESTIBLE_from_json.py msgid "" -"Reconstituted fish flakes, which are much more enjoyable to eat now that " -"they have been rehydrated." +"An irradiated pumpkin will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pickled fish" -msgid_plural "pickled fish" +msgid "irradiated potato" +msgid_plural "irradiated potatoes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for irradiated potato #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a serving of crisply brined and canned fish. Tasty and nutritious." +"An irradiated potato will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned fish" -msgid_plural "canned fish" +msgid "irradiated cucumber" +msgid_plural "irradiated cucumbers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for irradiated cucumber #: lang/json/COMESTIBLE_from_json.py msgid "" -"Low-sodium preserved fish. It was boiled and canned. Contains most of the " -"nutrition, but little of the savor of cooked fish." +"An irradiated cucumber will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "batter fried fish" -msgid_plural "batter fried fish" +msgid "irradiated celery" +msgid_plural "irradiated celery" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious golden brown serving of crispy fried fish." +msgid "" +"An irradiated cluster of celery will remain edible nearly forever. " +"Sterilized using radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "crab cake" -msgid_plural "crab cakes" +msgid "irradiated rhubarb" +msgid_plural "irradiated rhubarb" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for crab cake +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious deep-fried biscuit loaded with crab meat." +msgid "" +"An irradiated rhubarb will remain edible nearly forever. Sterilized using " +"radiation, so it's safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "stuffed clam" -msgid_plural "stuffed clams" +msgid "toast-em" +msgid_plural "toast-ems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for stuffed clam +#. ~ Description for toast-em #: lang/json/COMESTIBLE_from_json.py -msgid "Quahog clams stuffed with bread crumbs and fried." +msgid "" +"Dry toaster pastries usually coated with solid frosting and what luck! " +"These are strawberry flavored!" msgstr "" +#. ~ Description for toast-em #: lang/json/COMESTIBLE_from_json.py -msgid "lunch meat" -msgid_plural "lunch meats" +msgid "" +"Dry toaster pastries, usually coated with solid frosting. These are " +"blueberry flavored!" +msgstr "" + +#. ~ Description for toast-em +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Dry toaster pastries, usually coated with solid frosting. Sadly, these are " +"not." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "homemade toast-em" +msgid_plural "homemade toast-ems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Description for homemade toast-em #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "loathsome %s" -msgid_plural "loathsome %s" +msgid "Homemade toaster pastries, lacking icing but at least fruit filled." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "toaster pastry (uncooked)" +msgid_plural "toaster pastries (uncooked)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lunch meat +#. ~ Description for toaster pastry (uncooked) #: lang/json/COMESTIBLE_from_json.py msgid "" -"Meat that has been cooked, preserved, and cut into thin slices for " -"convenient sandwich construction. It tastes fine cold." +"A delicious fruit-filled pastry that you can cook in your toaster. It even " +"comes with frosting! Cook it to make it tasty." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bologna" -msgid_plural "bologna" +msgid "toaster pastry" +msgid_plural "toaster pastries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Description for toaster pastry #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "brat %s" -msgid_plural "brat %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A delicious fruit-filled pastry that you've cooked. It even comes with " +"frosting!" +msgstr "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Description for toaster pastry #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "Tumnis %s" -msgid_plural "Tumnis %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A delicious homemade fruit-filled pastry that you've cooked." +msgstr "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "bleak %s" -msgid_plural "bleak %s" +msgid "toaster pastry with buttercream" +msgid_plural "toaster pastries with buttercream" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for toaster pastry with buttercream #: lang/json/COMESTIBLE_from_json.py msgid "" -"Formally known as Bologna sausage, this is a finely ground preserved meat " -"that comes in circular slices. Its first name isn't Oscar. You can eat it " -"cold." +"A delicious homemade fruit-filled pastry that you've cooked. It even comes " +"with buttercream!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lutefisk" -msgid_plural "lutefisks" +msgid "buttercream icing" +msgid_plural "cups of buttercream icing" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lutefisk +#. ~ Description for buttercream icing #: lang/json/COMESTIBLE_from_json.py msgid "" -"Lutefisk is preserved fish that has been dried in a lye solution. Vile and " -"soap-like yet highly nutritious, it is reminiscent of the afterbirth of a " -"dog or the world's largest chunk of phlegm." +"Smooth sugary buttercream icing. Almost good enough to forget the end of " +"everything." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "SPAM" -msgid_plural "SPAM" +msgid "potato chips" +msgid_plural "potato chips" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for potato chips +#: lang/json/COMESTIBLE_from_json.py +msgid "Some plain, salted potato chips." +msgstr "" + +#. ~ Description for potato chips +#: lang/json/COMESTIBLE_from_json.py +msgid "Oh man, you love these chips! Score!" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "popcorn kernels" +msgid_plural "popcorn kernels" +msgstr[0] "кукурудза під попкорн" +msgstr[1] "кукурудзи під попкорн" +msgstr[2] "кукурудзи під попкорн" +msgstr[3] "кукурудза під попкорн" + +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" -"A canned pork product that is unnaturally pink, oddly rubbery, and not very " -"tasty, this SPAM remains quite filling. Completely unappetizing, but quite " -"filling." +"Dried kernels from a particular type of corn. Practically inedible raw, " +"they can be cooked to make a tasty snack." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "holy SPAM of debugging" -msgid_plural "holy SPAMs of debugging" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "popcorn" +msgid_plural "popcorn" +msgstr[0] "попкорн" +msgstr[1] "попкорну" +msgstr[2] "попкорну" +msgstr[3] "попкорн" -#. ~ Description for holy SPAM of debugging +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" -"A mysterious lump of SPAM that contains just enough calories and vitamins to" -" feed you for a day. For debug use only." +"Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" +" a result." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned sardine" -msgid_plural "canned sardines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "salted popcorn" +msgid_plural "salted popcorn" +msgstr[0] "солоний попкорн" +msgstr[1] "солоного попкорну" +msgstr[2] "солоного попкорну" +msgstr[3] "солоний попкорн" -#. ~ Description for canned sardine +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py -msgid "Salty little fish. They'll make you thirsty." +msgid "Popcorn with salt added for extra flavor." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sausage gravy" -msgid_plural "sausage gravies" +msgid "buttered popcorn" +msgid_plural "buttered popcorn" +msgstr[0] "попкорн з маслом" +msgstr[1] "попкорну з маслом" +msgstr[2] "попкорну з маслом" +msgstr[3] "попкорн з маслом" + +#. ~ Description for buttered popcorn +#: lang/json/COMESTIBLE_from_json.py +msgid "Popcorn with a light covering of butter for extra flavor." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "pretzels" +msgid_plural "pretzels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py -msgid "Mannwurst gravy" -msgid_plural "Mannwurst gravies" +msgid "A salty treat of a snack." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "chocolate-covered pretzel" +msgid_plural "chocolate-covered pretzels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Description for chocolate-covered pretzel #: lang/json/COMESTIBLE_from_json.py -msgid "killbasa gravy" -msgid_plural "killbasa gravies" +msgid "A salty treat of a snack, covered in chocolate." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "chocolate bar" +msgid_plural "chocolate bars" +msgstr[0] "плитка шоколаду" +msgstr[1] "плитки шоколаду" +msgstr[2] "плиток шоколаду" +msgstr[3] "плитки шоколаду" + +#. ~ Description for chocolate bar +#: lang/json/COMESTIBLE_from_json.py +msgid "Chocolate isn't very healthy, but it does make a delicious treat." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "marshmallows" +msgid_plural "marshmallows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "ghastly %s" -msgid_plural "ghastly %s" +msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "s'mores" +msgid_plural "s'mores" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sausage gravy +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" -"Biscuits, meat, and delicious mushroom soup all crammed together into a " -"wonderfully greasy and tasteful mush." +"A pair of graham crackers with some chocolate and a marshmallow between " +"them." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pemmican" -msgid_plural "pemmican" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "peanut butter candy" +msgid_plural "peanut butter candies" +msgstr[0] "цукерка із арахісовим маслом" +msgstr[1] "цукерки із арахісовим маслом" +msgstr[2] "цукерок із арахісовим маслом" +msgstr[3] "цукерка із арахісовим маслом" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Description for peanut butter candy #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "prepper %s" -msgid_plural "prepper %s" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A handful of peanut butter cups… your favorite!" +msgstr "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "Orley %s" -msgid_plural "Orley %s" +msgid "chocolate candy" +msgid_plural "chocolate candies" +msgstr[0] "шоколадна цукерка" +msgstr[1] "шоколадні цукерки" +msgstr[2] "шоколадних цукерок" +msgstr[3] "шоколадна цукерка" + +#. ~ Description for chocolate candy +#: lang/json/COMESTIBLE_from_json.py +msgid "A handful of colorful chocolate filled candies." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "chewy candy" +msgid_plural "chewy candy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "pernicious %s" -msgid_plural "pernicious %s" +msgid "A handful of colorful fruit-flavored chewy candy." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "gummy candy" +msgid_plural "gummy candy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for gummy candy +#: lang/json/COMESTIBLE_from_json.py +msgid "A handful of colorful fruit and soda pop flavored gummy candies." +msgstr "" + +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" -"A concentrated mixture of fat and protein used as a nutritious high-energy " -"food. Composed of meat, tallow, and edible plants, it provides excellent " -"nutrition in an easy to carry form." +"A handful of colorful fruit and soda pop flavored vegan gummy candies made " +"from agar. They have kind of a strange texture, but they're still tasty." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hamburger helper" -msgid_plural "hamburger helpers" +msgid "chewy reptilian candy" +msgid_plural "chewy reptilian candies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Description for chewy reptilian candy #: lang/json/COMESTIBLE_from_json.py -msgid "hobo helper" -msgid_plural "hobo helper" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A handful of colorful fruit-flavored chewy candy shaped in a reptilian " +"fashion. Made by SugarRush." +msgstr "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "halfling helper" -msgid_plural "halfling helper" +msgid "candy cattle" +msgid_plural "candy cattles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Description for candy cattle #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "heinous %s" -msgid_plural "heinous %s" +msgid "A handful of chocolate candies shaped like cows." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "licorice" +msgid_plural "licorices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hamburger helper +#. ~ Description for licorice +#: lang/json/COMESTIBLE_from_json.py +msgid "A swirly confectionary treat in strings of sweet tasting candy." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "powder candy sticks" +msgid_plural "powder candy sticks" +msgstr[0] "трубочка із цукерковим порошком" +msgstr[1] "трубочки із цукерковим порошком" +msgstr[2] "трубочок із цукерковим порошком" +msgstr[3] "трубочка із цукерковим порошком" + +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" -"Some mac and cheese with ground meat added, enhancing the flavor and the " -"nutritional value." +"Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "ravioli" -msgid_plural "raviolis" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "maple syrup candy" +msgid_plural "maple syrup candies" +msgstr[0] "цукерка з кленового сиропу" +msgstr[1] "цукерки з кленового сиропу" +msgstr[2] "цукерок з кленового сиропу" +msgstr[3] "цукерка з кленового сиропу" -#. ~ Description for ravioli +#. ~ Description for maple syrup candy #: lang/json/COMESTIBLE_from_json.py -msgid "Meat encased in little dough satchels. Tastes fine raw." +msgid "" +"This golden, translucent leaf candy is made with pure maple syrup and melt " +"slowly as you savor the taste of real maple." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chili con carne" -msgid_plural "chilis con carne" +msgid "graham cracker" +msgid_plural "graham crackers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Description for graham cracker #: lang/json/COMESTIBLE_from_json.py -msgid "chili con cabron" -msgid_plural "chilis con cabron" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"Dry and sugary, these crackers will leave you thirsty, but go good with some" +" chocolate and marshmallows." +msgstr "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "chili con Sindar" -msgid_plural "chilis con Sindar" +msgid "graham cracker chunk" +msgid_plural "graham cracker chunks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Description for graham cracker chunk #: lang/json/COMESTIBLE_from_json.py -msgid "chili con chupacabra" -msgid_plural "chilis con chupacabra" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"Dry and sugary, these cracker pellets will leave you thirsty, but go well " +"with some chocolate and marshmallows. Made by SugarRush!" +msgstr "" -#. ~ Description for chili con carne +#: lang/json/COMESTIBLE_from_json.py lang/json/COMESTIBLE_from_json.py +#: lang/json/MONSTER_from_json.py +msgid "cookie" +msgid_plural "cookies" +msgstr[0] "печиво" +msgstr[1] "печива" +msgstr[2] "печива" +msgstr[3] "печиво" + +#. ~ Description for cookie #: lang/json/COMESTIBLE_from_json.py -msgid "A spicy stew containing chili peppers, meat, tomatoes and beans." +msgid "Sweet and delicious cookies, just like grandma used to bake." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pork and beans" -msgid_plural "pork and beans" +msgid "cookie egg" +msgid_plural "cookie eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for cookie egg +#: lang/json/COMESTIBLE_from_json.py +msgid "Sweet and delicious cookies, shaped like eggs. Made by SugarRush!" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "maple syrup" +msgid_plural "maple syrup" +msgstr[0] "кленовий сироп" +msgstr[1] "кленового сиропу" +msgstr[2] "кленового сиропу" +msgstr[3] "кленовий сироп" + +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" -"Greasy Prospector improved pork and beans with hickory smoked pig fat " -"chunks." +"Boiling the sap of a maple tree has concentrated it into sweet, delicious " +"maple syrup." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned tuna fish" -msgid_plural "canned tuna fish" +msgid "sugar beet syrup" +msgid_plural "sugar beet syrup" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py -msgid "Now with 95 percent fewer dolphins!" +msgid "" +"A thick syrup produced from shredded sugar beets. Useful in cooking as a " +"sweetener." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned salmon" -msgid_plural "canned salmon" +msgid "cake" +msgid_plural "cakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for cake #: lang/json/COMESTIBLE_from_json.py -msgid "Bright pink fish-paste in a can!" +msgid "" +"Delicious sponge cake with buttercream icing, it says happy birthday on it." msgstr "" +#. ~ Description for cake #: lang/json/COMESTIBLE_from_json.py -msgid "canned chicken" -msgid_plural "canned chickens" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Delicious chocolate cake. It has all the icing. All of it." +msgstr "" -#. ~ Description for canned chicken +#. ~ Description for cake #: lang/json/COMESTIBLE_from_json.py -msgid "Bright white chicken-paste." +msgid "" +"A cake coated in the thickest icing you've ever seen. Someone has written " +"guff in quotation marks on it…" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pickled herring" -msgid_plural "pickled herring" +msgid "chocolate-covered coffee bean" +msgid_plural "chocolate-covered coffee beans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for chocolate-covered coffee bean #: lang/json/COMESTIBLE_from_json.py -msgid "Fish fillets pickled in some sort of tangy white sauce." +msgid "" +"Roasted coffee beans coated with dark chocolate, natural source of " +"concentrated caffeine." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned clam" -msgid_plural "canned clams" +msgid "fast-food French fries" +msgid_plural "fast-food French fries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for canned clam +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py -msgid "Chopped quahog clams in water." +msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "clam chowder" -msgid_plural "clam chowders" +msgid "French fries" +msgid_plural "French fries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py -msgid "meat chowder" -msgid_plural "meat chowders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." +msgstr "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant #: lang/json/COMESTIBLE_from_json.py -msgid "monster chowder" -msgid_plural "monster chowders" +msgid "peppermint patty" +msgid_plural "peppermint patties" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for clam chowder +#. ~ Description for peppermint patty #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Delicious, lumpy, white soup made of meat (normally clam) and potatoes. A " -"taste of the lost glory of New England." +msgid "A handful of soft chocolate-covered peppermint patties… yum!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "baked beans" -msgid_plural "baked beans" +msgid "Necco wafers" +msgid_plural "Necco wafers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py -msgid "ork and beans" -msgid_plural "ork and beans" +msgid "" +"A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " +"chocolate, wintergreen, cinnamon, and licorice. Yum!" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "candy cigarette" +msgid_plural "candy cigarettes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for candy cigarette #: lang/json/COMESTIBLE_from_json.py -msgid "Slow-cooked beans with meat. Tasty and very filling." +msgid "" +"Candy sticks. Slightly more healthy than tobacco cigarettes, but with no " +"possibility of addiction." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "meat fried rice" -msgid_plural "meat fried rice" +#: lang/json/COMESTIBLE_from_json.py lang/json/terrain_from_json.py +msgid "caramel" +msgid_plural "caramel" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py -msgid "mutant fried rice" -msgid_plural "mutant fried rice" +msgid "Some caramel. Still bad for your health." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "caramel apple" +msgid_plural "caramel apple" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py -msgid "Delicious fried rice with meat. Tasty and very filling." +msgid "Betcha can't eat just one." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deluxe beans and rice" -msgid_plural "deluxe beans and rice" +msgid "tortilla chips" +msgid_plural "tortilla chips" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py -msgid "\"deluxe\" beans and rice" -msgid_plural "\"deluxe\" beans and rice" +msgid "" +"Salted chips made from corn tortillas, could really use some cheese, maybe " +"some beef." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "cheese nachos" +msgid_plural "cheese nachos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" -"Slow-cooked beans and rice with meat and seasonings. Tasty and very " -"filling." +"Salted chips made from corn tortillas, now with cheese. Could stand to have" +" some meat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "meat pie" -msgid_plural "meat pies" +msgid "meat nachos" +msgid_plural "meat nachos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "prick pie" -msgid_plural "prick pie" +msgid "niño nachos" +msgid_plural "niño nachos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "talking animal pie" -msgid_plural "talking animal pie" +msgid "nibelung nachos" +msgid_plural "nibelung nachos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "malignant %s" -msgid_plural "malignant %s" +msgid "nachos con chupacabra" +msgid_plural "nachos con chupacabra" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for meat pie +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious baked pie with a delicious meat filling." +msgid "" +"Salted chips made from corn tortillas, now with meat. Could probably use " +"some cheese, though." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "meat pizza" -msgid_plural "meat pizzas" -msgstr[0] "м'ясна піца" -msgstr[1] "м'ясні піци" -msgstr[2] "м'ясних піц" -msgstr[3] "м'ясна піца" +msgid "meat nachos with cheese" +msgid_plural "meat nachos with cheese" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "poser pizza" -msgid_plural "poser pizza" +msgid "niño nachos with cheese" +msgid_plural "niño nachos with cheese" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches +#. ~ Conditional name for meat nachos with cheese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "protesting pizza" -msgid_plural "protesting pizza" +msgid "nibelung nachos with cheese" +msgid_plural "nibelung nachos with cheese" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches #. mutant #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "miserable %s" -msgid_plural "miserable %s" +msgid "cheese and chupacabra nachos" +msgid_plural "cheese and chupacabra nachos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for meat pizza +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" -"A meat pizza, for all the carnivores out there. Chock-full of minced meat " -"and heavily seasoned." +"Salted chips made from corn tortillas with ground meat and smothered in " +"cheese. Delicious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "supreme pizza" -msgid_plural "supreme pizzas" +msgid "vegetarian nachos" +msgid_plural "vegetarian nachos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for supreme pizza +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py -msgid "A supreme pizza with ALL the toppings." +msgid "" +"Salted chips made from corn tortillas, now with beans. Could probably use " +"some cheese, though." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deluxe scrambled eggs" -msgid_plural "deluxe scrambled eggs" +msgid "vegetarian nachos with cheese" +msgid_plural "vegetarian nachos with cheese" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py -msgid "deluxe scrambled eggheads" -msgid_plural "deluxe scrambled eggheads" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"Salted chips made from corn tortillas with beans and smothered in cheese. " +"Delicious, even if you're not a vegetarian." +msgstr "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "birdman's scrambled eggs" -msgid_plural "birdman's scrambled eggs" +msgid "pork stick" +msgid_plural "pork sticks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Description for pork stick +#: lang/json/COMESTIBLE_from_json.py +msgid "Salty dried pork. Tastes good, but it will make you thirsty." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py -msgid "\"deluxe\" scrambled eggs" -msgid_plural "\"deluxe\" scrambled eggs" +msgid "microwave burrito" +msgid_plural "microwave burritos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for microwave burrito #: lang/json/COMESTIBLE_from_json.py msgid "" -"Fluffy and delicious scrambled eggs made more delicious with the addition of" -" other tasty ingredients." +"A small, microwaveable steak & cheese burrito, like those found at gas " +"stations." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned meat" -msgid_plural "canned meats" +msgid "uncooked TV dinner" +msgid_plural "uncooked TV dinners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Description for uncooked TV dinner #: lang/json/COMESTIBLE_from_json.py -msgid "soylent slice" -msgid_plural "soylent slice" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"Now with ONE POUND of meat and ONE POUND of carbs! Not as appetizing or " +"nutritious as it would be if heated up." +msgstr "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "sapient slice" -msgid_plural "sapient slice" +msgid "cooked TV dinner" +msgid_plural "cooked TV dinners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for canned meat +#. ~ Description for cooked TV dinner #: lang/json/COMESTIBLE_from_json.py msgid "" -"Low-sodium preserved meat. It was boiled and canned. Contains most of the " -"nutrition, but little of the savor of cooked meat." +"Now with ONE POUND of meat and ONE POUND of carbs! Nice and heated up. " +"It's tastier and more filling, but will also spoil quickly." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "salted meat slice" -msgid_plural "salted meat slices" +msgid "deep-fried chicken" +msgid_plural "deep-fried chickens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Description for deep-fried chicken #: lang/json/COMESTIBLE_from_json.py -msgid "salted simpleton slice" -msgid_plural "salted simpleton slice" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Chicken cooked while submerged in oil. It's greasy and delicious." +msgstr "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "salted sapient slice" -msgid_plural "salted sapient slice" +msgid "chili dogs" +msgid_plural "chili dogs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for salted meat slice +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py -msgid "Meat slices cured in brine. Salty but tasty in a pinch." +msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "spaghetti bolognese" -msgid_plural "spaghetti bolognese" +msgid "uncooked corn dogs" +msgid_plural "uncooked corn dogs" +msgstr[0] "неприготований корн-дог" +msgstr[1] "неприготованих корн-доги" +msgstr[2] "неприготованих корн-догів" +msgstr[3] "неприготований корн-дог" + +#. ~ Description for uncooked corn dogs +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A heavily processed sausage, dipped in batter and deep-fried. It would " +"taste much better prepared." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "cooked corn dog" +msgid_plural "cooked corn dogs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Description for cooked corn dog #: lang/json/COMESTIBLE_from_json.py -msgid "scoundrel spaghetti" -msgid_plural "scoundrel spaghetti" +msgid "" +"A heavily processed sausage, dipped in batter and deep-fried. Cooked, this " +"corn dog now tastes much better, but will spoil." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "homemade corn dog" +msgid_plural "homemade corn dogs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Description for homemade corn dog #: lang/json/COMESTIBLE_from_json.py -msgid "speaking spaghetti" -msgid_plural "speaking spaghetti" +msgid "" +"A homemade sausage, dipped in batter and deep fried. Cooked, this corn dog " +"now tastes much better, but will spoil." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "chocolate pancake" +msgid_plural "chocolate pancakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Description for chocolate pancake #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "gnarly %s" -msgid_plural "gnarly %s" +msgid "" +"Fluffy and delicious pancakes with real maple syrup, with delicious " +"chocolate baked right in." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "chocolate waffle" +msgid_plural "chocolate waffles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for chocolate waffle #: lang/json/COMESTIBLE_from_json.py -msgid "Spaghetti covered with a thick meat sauce. Yum!" +msgid "" +"Crunchy and delicious waffles with real maple syrup, with delicious " +"chocolate baked right in." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lasagne" -msgid_plural "lasagnes" +msgid "cheese spread" +msgid_plural "cheese spreads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Description for cheese spread #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "Luigi %s" -msgid_plural "Luigi %s" +msgid "Processed cheese spread." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "cheese fries" +msgid_plural "cheese fries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "Lab %s" -msgid_plural "Lab %s" +msgid "Fried potatoes with delicious cheese smothered on top." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "onion ring" +msgid_plural "onion rings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Description for onion ring #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "monster %s" -msgid_plural "monster %s" +msgid "Battered and fried onions. Crunchy and delicious." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "uncooked hot dog" +msgid_plural "uncooked hot dogs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lasagne +#. ~ Description for uncooked hot dog #: lang/json/COMESTIBLE_from_json.py msgid "" -"A very old type of pasta made with several layers of lasagne sheets " -"alternated with cheese, sauces and meats." +"A heavily processed sausage, commonplace at baseball games before the " +"Cataclysm. It would taste much better prepared." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fried SPAM" -msgid_plural "fried SPAM" +msgid "campfire hot dog" +msgid_plural "campfire hot dogs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for campfire hot dog #: lang/json/COMESTIBLE_from_json.py -msgid "Having been fried, this SPAM is actually pretty tasty." +msgid "" +"The simple hot dog, cooked over an open fire. Would be better on a bun, but" +" it's quite an improvement over eating it uncooked" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cheeseburger" -msgid_plural "cheeseburgers" +msgid "cooked hot dog" +msgid_plural "cooked hot dogs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Description for cooked hot dog #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "chump %s" -msgid_plural "chump %s" +msgid "" +"Surprisingly, not made from dog. Cooked, this hot dog now tastes much " +"better, but will spoil." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "new york wiener" +msgid_plural "new york wieners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Description for new york wiener #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "elf %s" -msgid_plural "elf %s" +msgid "" +"What's better than a hot dog? A hot dog smothered in ground meat and " +"chopped onions, of course! Tastes better than a normal hot dog." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "malted milk ball" +msgid_plural "malted milk balls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Description for malted milk ball #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "chilling %s" -msgid_plural "chilling %s" +msgid "" +"Crunchy sugar in chocolate capsules. The malt gives them a distinct, yet " +"delicious flavor." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgctxt "candy-coated peanuts" +msgid "candy-coated peanuts" +msgid_plural "candy-coated peanuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cheeseburger +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" -"A sandwich of minced meat and cheese with condiments. A simple favorite of " -"the people before the cataclysm." +"Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deluxe cheeseburger" -msgid_plural "deluxe cheeseburgers" +msgid "freeze-dried meal" +msgid_plural "freeze-dried meals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deluxe cheeseburger +#. ~ Description for freeze-dried meal #: lang/json/COMESTIBLE_from_json.py msgid "" -"A cheeseburger with more vegetables and condiments. This is the apex of " -"pre-Cataclysm culinary achievement." +"A sealed plastic bag containing a full dehydrated meal. This one contains a" +" hearty cooked beef and egg breakfast." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hamburger" -msgid_plural "hamburgers" +msgid "rehydrated freeze-dried meal" +msgid_plural "rehydrated freeze-dried meals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Description for rehydrated freeze-dried meal +#: lang/json/COMESTIBLE_from_json.py +msgid "This is a rehydrated meal meant for camping or hiking." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py -msgid "bobburger" -msgid_plural "bobburger" +msgid "military chocolate bar" +msgid_plural "military chocolate bars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Description for military chocolate bar #: lang/json/COMESTIBLE_from_json.py -msgid "Moreauburger" -msgid_plural "Moreauburger" +msgid "" +"A thick, dense bar of military chocolate. While tough to chew and not very " +"appetizing, it will provide almost a day's worth of calories in portable " +"form." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "gelatin dessert powder" +msgid_plural "gelatin dessert powders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Description for gelatin dessert powder #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "horrible %s" -msgid_plural "horrible %s" +msgid "" +"A small box of gelatin dessert powder. Just add water and set. Comes in a " +"variety of flavors." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "unflavored gelatin dessert" +msgid_plural "unflavored gelatin desserts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hamburger +#. ~ Description for unflavored gelatin dessert #: lang/json/COMESTIBLE_from_json.py -msgid "A sandwich of minced meat with condiments." +msgid "" +"An unflavored jiggly, sugary treat made from gelatin and sugar. This would " +"taste better with some flavor." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sloppy joe" -msgid_plural "sloppy joes" +msgid "processed gelatin dessert" +msgid_plural "processed gelatin desserts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Description for processed gelatin dessert #: lang/json/COMESTIBLE_from_json.py -msgid "manwich" -msgid_plural "manwiches" +msgid "" +"A jiggly, sugary treat made from gelatin and sugar. Comes in a variety of " +"flavors. A kid favorite pre-Cataclysm." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "homemade gelatin dessert" +msgid_plural "homemade gelatin desserts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Description for homemade gelatin dessert #: lang/json/COMESTIBLE_from_json.py -msgid "manfriendwich" -msgid_plural "manfriendwiches" +msgid "" +"A homemade jiggly, sugary treat made from gelatin and sugar flavored with " +"fruit juice. A kid favorite pre-Cataclysm." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "fruit filled gelatin dessert" +msgid_plural "fruit filled gelatin desserts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Description for fruit filled gelatin dessert #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "suspicious %s" -msgid_plural "suspicious %s" +msgid "" +"A jiggly, sugary treat made from gelatin and sugar flavored with fruit juice" +" and set with fruit. A kid favorite pre-Cataclysm and a healthy treat" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "vegan gelatin dessert" +msgid_plural "vegan gelatin desserts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sloppy joe +#. ~ Description for vegan gelatin dessert #: lang/json/COMESTIBLE_from_json.py msgid "" -"A sandwich, consisting of ground meat and tomato sauce served on a hamburger" -" bun." +"A vegan friendly homemade jiggly, sugary treat made from agar and sugar " +"flavored with fruit juice. A kid favorite pre-Cataclysm. They'll never " +"know the difference." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "taco" -msgid_plural "tacos" +msgid "fruit filled vegan gelatin dessert" +msgid_plural "fruit filled vegan gelatin desserts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Description for fruit filled vegan gelatin dessert #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "tio %s" -msgid_plural "tio %s" +msgid "" +"A vegan friendly jiggly, sugary treat made from agar and sugar flavored with" +" fruit juice and set with fruit. A kid favorite pre-Cataclysm and a healthy" +" treat" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "raw sausage" +msgid_plural "raw sausages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "talking %s" -msgid_plural "talking %s" +msgid "raw Mannwurst" +msgid_plural "raw Mannwursts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "raw killbasa" +msgid_plural "raw killbasas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format -msgid "terrifying %s" -msgid_plural "terrifying %s" +msgid "sinister %s" +msgid_plural "sinister %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for taco +#. ~ Description for raw sausage #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A traditional Mexican dish composed of a corn tortilla folded or rolled " -"around a meat filling." +msgid "A hefty raw sausage, prepared for smoking or cooking." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pickled meat" -msgid_plural "pickled meats" +msgid "smoked sausage" +msgid_plural "smoked sausages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "pickled punk" -msgid_plural "pickled punk" +msgid "smoked Mannwurst" +msgid_plural "smoked Mannwursts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "pickled anthro" -msgid_plural "pickled anthro" +msgid "smoked killbasa" +msgid_plural "smoked killbasas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pickled meat +#. ~ Description for smoked sausage #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is a serving of crisply brined and canned meat. Tasty and nutritious." +msgid "A hefty sausage that has been cured and smoked for long term storage." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dehydrated meat" -msgid_plural "dehydrated meats" -msgstr[0] "сушене м'ясо" -msgstr[1] "сушеного м'яса" -msgstr[2] "сушеного м'яса" -msgstr[3] "сушене м'ясо" +msgid "cooked sausage" +msgid_plural "cooked sausages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "%s, human" -msgid_plural "%s, human" -msgstr[0] "%s, людське" -msgstr[1] "%s, людські" -msgstr[2] "%s, людські" -msgstr[3] "%s, людські" +msgid "cooked Mannwurst" +msgid_plural "cooked Mannwursts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM -#: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "%s, demihuman" -msgid_plural "%s, demihuman" -msgstr[0] "%s, напівлюдське" -msgstr[1] "%s, напівлюдські" -msgstr[2] "%s, напівлюдські" -msgstr[3] "%s, напівлюдські" - -#. ~ Description for dehydrated meat #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Dehydrated meat flakes. With proper storage, this dried food will remain " -"edible for an incredibly long time." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "rehydrated meat" -msgid_plural "rehydrated meats" -msgstr[0] "регідроване м'ясо" -msgstr[1] "регідрованого м'яса" -msgstr[2] "регідрованого м'яса" -msgstr[3] "регідроване м'ясо" +msgid "cooked killbasa" +msgid_plural "cooked killbasas" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for rehydrated meat +#. ~ Description for cooked sausage #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Reconstituted meat flakes, which are much more enjoyable to eat now that " -"they have been rehydrated." +msgid "A hefty sausage that has been cooked." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "haggis" -msgid_plural "haggises" +msgid "sweet sausage" +msgid_plural "sweet sausages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM -#: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "human %s" -msgid_plural "human %s" -msgstr[0] "людський %s" -msgstr[1] "людські %s" -msgstr[2] "людські %s" -msgstr[3] "людські %s" - -#. ~ Description for haggis +#. ~ Description for sweet sausage #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This traditional Scottish savory pudding is made of meat and offal mixed " -"with oatmeal, which is sewn into an animal's stomach and boiled. " -"Surprisingly tasty and quite filling, it is best served with boiled root " -"vegetables and strong whisky." +msgid "A sweet and delicious sausage. Better eat it fresh." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fish makizushi" -msgid_plural "fish makizushi" +msgid "bratwurst" +msgid_plural "bratwursts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " -"rolled up in a healthy green vegetable." -msgstr "" +msgid "Mannbrat" +msgid_plural "Mannbrats" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "meat temaki" -msgid_plural "meat temaki" +msgid "frankenfurter" +msgid_plural "frankenfurters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format -msgid "troubling %s" -msgid_plural "troubling %s" +msgid "baleful %s" +msgid_plural "baleful %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for bratwurst #: lang/json/COMESTIBLE_from_json.py msgid "" -"Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" -" healthy green vegetable." +"A type of German sausage made of finely chopped meat and meant to be pan " +"fried or roasted. Better eat it hot and fresh." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sashimi" -msgid_plural "sashimi" +msgid "royal beef" +msgid_plural "royal beef" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py -msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." +msgid "" +"A chunk of meat with a coat of royal jelly over it. It's a lot like a " +"honey-baked ham." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dehydrated tainted meat" -msgid_plural "dehydrated tainted meats" -msgstr[0] "сушене заражене м'ясо" -msgstr[1] "сушеного зараженого м'яса" -msgstr[2] "сушеного зараженого м'яса" -msgstr[3] "сушене заражене м'ясо" +msgid "bacon" +msgid_plural "pieces of bacon" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for dehydrated tainted meat +#. ~ Description for bacon #: lang/json/COMESTIBLE_from_json.py msgid "" -"Pieces of poisonous meat that have been dried to prevent them from rotting " -"away. It will still poison you if you eat this." +"A thick slab of salty cured bacon. Shelf stable, precooked and ready-to-" +"eat, it tastes better when reheated." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pelmeni" -msgid_plural "pelmenis" +msgid "wasteland sausage" +msgid_plural "wasteland sausages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Description for wasteland sausage #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "perilous %s" -msgid_plural "perilous %s" +msgid "" +"Lean sausage made from heavily salt-cured offal, with natural gut casing. " +"Waste not, want not." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "raw wasteland sausage" +msgid_plural "raw wasteland sausages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pelmeni +#. ~ Description for raw wasteland sausage #: lang/json/COMESTIBLE_from_json.py msgid "" -"Delicious cooked dumplings consisting of a meat filling wrapped in thin " -"dough." +"Lean raw sausage made from heavily salt-cured offal, ready to be smoked." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "homemade burrito" -msgid_plural "homemade burritos" +msgid "cracklins" +msgid_plural "cracklins" +msgstr[0] "шкварки" +msgstr[1] "шкварки" +msgstr[2] "шкварки" +msgstr[3] "шкварки" + +#. ~ Description for cracklins +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Also known as pork rinds or chicharrones, these are bits of edible fat and " +"skin that have been fried until they are crispy and delicious." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "glazed tenderloins" +msgid_plural "glazed tenderloins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "bone-chilling burrito" -msgid_plural "bone-chilling burritos" +#, python-format +msgid "grisly %s" +msgid_plural "grisly %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for homemade burrito +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" -"A traditional Mexican dish of meat and vegetable stuffing put on a corn " -"tortilla and rolled into a tube shape, like those you find in gas stations " -"but homemade and delicious!" +"A tender piece of meat perfectly seasoned with a thin sweet glaze and its " +"veggie accompaniments. A gourmet dish that is both healthy, sweet and " +"delicious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw meatball" -msgid_plural "raw meatballs" +msgid "currywurst" +msgid_plural "currywursts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "raw manball" -msgid_plural "raw manballs" +#, python-format +msgid "cheapskate %s" +msgid_plural "cheapskate %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "raw murderball" -msgid_plural "raw murderballs" +#, python-format +msgid "confusing %s" +msgid_plural "confusing %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw meatball -#: lang/json/COMESTIBLE_from_json.py -msgid "A round, seasoned lump of meat, ready to fry." -msgstr "" - +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "meatball" -msgid_plural "meatballs" +#, python-format +msgid "bloodcurdling %s" +msgid_plural "bloodcurdling %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Description for currywurst #: lang/json/COMESTIBLE_from_json.py -msgid "manball" -msgid_plural "manballs" +msgid "" +"Sausage covered in a curry ketchup sauce. Fairly spicy and impressive at " +"the same time!" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "aspic" +msgid_plural "aspics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "murderball" -msgid_plural "murderballs" +#, python-format +msgid "abomination %s" +msgid_plural "abomination %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for meatball -#: lang/json/COMESTIBLE_from_json.py -msgid "A seasoned, fried, round lump of meat. Just like mom used to make!" -msgstr "" - +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "melatonin tablet" -msgid_plural "melatonin tablets" +#, python-format +msgid "amoral %s" +msgid_plural "amoral %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for melatonin tablet. -#: lang/json/COMESTIBLE_from_json.py -msgid "You pop a melatonin tablet." -msgstr "" - -#. ~ Description for melatonin tablet -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Over-the-counter melatonin supplements, commonly prescribed to treat sleep " -"deprivation and to mitigate its effects. One tablet a day combined with a " -"good night's sleep will help you recover faster." -msgstr "" - +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "prescription stimulant" -msgid_plural "prescription stimulant" +#, python-format +msgid "Orwell's %s" +msgid_plural "Orwell's %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. -#: lang/json/COMESTIBLE_from_json.py -msgid "You take some stimulants." -msgstr "" - -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for aspic #: lang/json/COMESTIBLE_from_json.py msgid "" -"Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" -" prescribed to treat hyperactive attention deficits. It suppresses the " -"appetite, and is quite addictive." +"A dish in which meat or fish is set into a gelatin made from a meat or " +"vegetable stock." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "adhesive bandage" -msgid_plural "adhesive bandages" -msgstr[0] "лейкопластир" -msgstr[1] "лейкопластири" -msgstr[2] "лейкопластирів" -msgstr[3] "лейкопластири" +msgid "dehydrated fish" +msgid_plural "dehydrated fish" +msgstr[0] "сушена риба" +msgstr[1] "сушені риби" +msgstr[2] "сушених риб" +msgstr[3] "сушена риба" -#. ~ Description for adhesive bandage +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" -"A set of small medical dressings, each made of a piece of sterile cloth and " -"a sticky tape, used for small injuries not serious enough to require a full-" -"size bandage." +"Dehydrated fish flakes. With proper storage, this dried food will remain " +"edible for an incredibly long time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "epinephrine autoinjector" -msgid_plural "epinephrine autoinjectors" +msgid "rehydrated fish" +msgid_plural "rehydrated fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for epinephrine autoinjector. -#: lang/json/COMESTIBLE_from_json.py -msgid "You inject yourself with the injector." -msgstr "" - -#. ~ Description for epinephrine autoinjector +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" -"A syringe filled with a shot of epinephrine, also called adrenalin. It " -"serves as a powerful stimulant when you inject yourself with it. Asthmatics" -" can use it in an emergency to clear their asthma." +"Reconstituted fish flakes, which are much more enjoyable to eat now that " +"they have been rehydrated." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "antibiotics" -msgid_plural "antibiotics" +msgid "pickled fish" +msgid_plural "pickled fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" -"An antibacterial medication designed to prevent or stop the spread of " -"infection. It's the safest way to cure any infections you might have. One " -"dose lasts twelve hours." +"This is a serving of crisply brined and canned fish. Tasty and nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "antifungal drug" -msgid_plural "antifungal drugs" +msgid "canned fish" +msgid_plural "canned fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for antifungal drug +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" -"Powerful chemical tablets designed to eliminate fungal infections in living " -"creatures. One dose lasts four hours." +"Low-sodium preserved fish. It was boiled and canned. Contains most of the " +"nutrition, but little of the savor of cooked fish." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "antiparasitic drug" -msgid_plural "antiparasitic drug" +msgid "batter fried fish" +msgid_plural "batter fried fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'antiparasitic drug'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Broad spectrum chemical tablets designed to eliminate parasitic infestations" -" in living creatures. Though designed for use on pets and livestock, it " -"will likely work on humans as well." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "aspirin" -msgid_plural "aspirins" -msgstr[0] "аспірин" -msgstr[1] "аспірину" -msgstr[2] "аспірину" -msgstr[3] "аспірин" - -#. ~ Use action activation_message for aspirin. -#: lang/json/COMESTIBLE_from_json.py -msgid "You take some aspirin." -msgstr "Ви прийняли аспірин." - -#. ~ Description for aspirin -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Acetylsalicylic acid, a mild anti-inflammatory. Take to relieve pain and " -"swelling." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "bandage" -msgid_plural "bandages" -msgstr[0] "бинт" -msgstr[1] "бинти" -msgstr[2] "бинтів" -msgstr[3] "бинт" - -#. ~ Description for bandage +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Simple cloth bandages. Used for stopping bloodloss and protecting wounds " -"from external factors." +msgid "A delicious golden brown serving of crispy fried fish." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "makeshift bandage" -msgid_plural "makeshift bandages" -msgstr[0] "саморобний бинт" -msgstr[1] "саморобні бинти" -msgstr[2] "саморобних бинтів" -msgstr[3] "саморобні бинти" +msgid "crab cake" +msgid_plural "crab cakes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for makeshift bandage +#. ~ Description for crab cake #: lang/json/COMESTIBLE_from_json.py -msgid "Simple cloth bandages. Better than nothing." +msgid "A delicious deep-fried biscuit loaded with crab meat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bleached makeshift bandage" -msgid_plural "bleached makeshift bandages" -msgstr[0] "промитий хлоркою саморобний бинт" -msgstr[1] "промиті хлоркою саморобні бинти" -msgstr[2] "промитих хлоркою саморобних бинтів" -msgstr[3] "промиті хлоркою саморобні бинти" +msgid "stuffed clam" +msgid_plural "stuffed clams" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for bleached makeshift bandage +#. ~ Description for stuffed clam #: lang/json/COMESTIBLE_from_json.py -msgid "Simple cloth bandages. It is white, as real bandages should be." +msgid "Quahog clams stuffed with bread crumbs and fried." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "boiled makeshift bandage" -msgid_plural "boiled makeshift bandages" -msgstr[0] "прокип'ячений саморобний бинт" -msgstr[1] "прокип'ячені саморобні бинти" -msgstr[2] "прокип'ячених саморобних бинтів" -msgstr[3] "прокип'ячені саморобні бинти" - -#. ~ Description for boiled makeshift bandage -#: lang/json/COMESTIBLE_from_json.py -msgid "Simple cloth bandages. It was boiled to make it more sterile." -msgstr "" +msgid "lunch meat" +msgid_plural "lunch meats" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "antiseptic powder" -msgid_plural "antiseptic powder" -msgstr[0] "антисептичний порошок" -msgstr[1] "антисептичний порошок" -msgstr[2] "антисептичний порошок" -msgstr[3] "антисептичний порошок" +#, python-format +msgid "loathsome %s" +msgid_plural "loathsome %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for lunch meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"A powdered form of chemical antiseptic, this bismuth formic iodide cleans " -"wounds quickly and painlessly." +"Meat that has been cooked, preserved, and cut into thin slices for " +"convenient sandwich construction. It tastes fine cold." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "caffeinated chewing gum" -msgid_plural "caffeinated chewing gums" +msgid "bologna" +msgid_plural "bologna" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for caffeinated chewing gum +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "Sugar-free chewing gum with added caffeine, it's a nice pick-me-up." -msgstr "" +#, python-format +msgid "brat %s" +msgid_plural "brat %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "caffeine pill" -msgid_plural "caffeine pills" +#, python-format +msgid "Tumnis %s" +msgid_plural "Tumnis %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for caffeine pill. +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "You take a caffeine pill." -msgstr "" +#, python-format +msgid "bleak %s" +msgid_plural "bleak %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for caffeine pill +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" -"No-doz brand caffeine pills, maximum strength. Useful in pulling an all-" -"nighter, each pill is equivalent to a strong cup of coffee." +"Formally known as Bologna sausage, this is a finely ground preserved meat " +"that comes in circular slices. Its first name isn't Oscar. You can eat it " +"cold." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chewing tobacco" -msgid_plural "chewing tobaccos" +msgid "lutefisk" +msgid_plural "lutefisks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chewing tobacco +#. ~ Description for lutefisk #: lang/json/COMESTIBLE_from_json.py msgid "" -"Mint flavored chewing tobacco. While still absolutely terrible for your " -"health, it was once a favorite amongst baseball players, cowboys, and other " -"macho types." +"Lutefisk is preserved fish that has been dried in a lye solution. Vile and " +"soap-like yet highly nutritious, it is reminiscent of the afterbirth of a " +"dog or the world's largest chunk of phlegm." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hydrogen peroxide" -msgid_plural "hydrogen peroxide" +msgid "SPAM" +msgid_plural "SPAM" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" -" textiles. Foams a little when in contact with organic matter, but " -"otherwise harmless." +"A canned pork product that is unnaturally pink, oddly rubbery, and not very " +"tasty, this SPAM remains quite filling. Completely unappetizing, but quite " +"filling." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/GENERIC_from_json.py -msgid "cigarette" -msgid_plural "cigarettes" -msgstr[0] "цигарка" -msgstr[1] "цигарки" -msgstr[2] "цигарок" -msgstr[3] "цигарка" - -#. ~ Description for cigarette #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A mixture of dried tobacco leaf, pesticides, and chemical additives, rolled " -"into a filtered paper tube. Stimulates mental acuity and reduces appetite." -" Highly addictive and hazardous to health." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py lang/json/GENERIC_from_json.py -msgid "cigar" -msgid_plural "cigars" +msgid "holy SPAM of debugging" +msgid_plural "holy SPAMs of debugging" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cigar +#. ~ Description for holy SPAM of debugging #: lang/json/COMESTIBLE_from_json.py msgid "" -"Rolled, cured tobacco leaf, addictive and hazardous to health.\n" -"A gentleman's vice, cigars set the civil man apart from the savage." +"A mysterious lump of SPAM that contains just enough calories and vitamins to" +" feed you for a day. For debug use only." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chloroform soaked rag" -msgid_plural "chloroform soaked rags" +msgid "canned sardine" +msgid_plural "canned sardines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chloroform soaked rag +#. ~ Description for canned sardine #: lang/json/COMESTIBLE_from_json.py -msgid "A debug item that lets you put NPCs (or yourself) to sleep." +msgid "Salty little fish. They'll make you thirsty." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "codeine" -msgid_plural "codeine" +msgid "sausage gravy" +msgid_plural "sausage gravies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "You take some codeine." -msgstr "" - -#. ~ Description for {'str_sp': 'codeine'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A mild opiate used in the suppression of pain, cough, and other ailments. " -"While relatively weak for a narcotic, it is still addictive, with a " -"potential for overdose." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py src/addiction.cpp -msgid "cocaine" -msgid_plural "cocaine" +msgid "Mannwurst gravy" +msgid_plural "Mannwurst gravies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cocaine'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Crystalline extract of the coca leaf, or at least, a white powder with some " -"of that in it. A topical analgesic, it is more commonly used for its " -"stimulatory properties. Highly addictive." -msgstr "" - +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "methacola" -msgid_plural "methacolas" +msgid "killbasa gravy" +msgid_plural "killbasa gravies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for methacola -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A potent cocktail of amphetamines, caffeine and corn syrup, this stuff puts " -"a spring in your step, a fire in your eye, and a bad case of tachycardia " -"tremors in your somersaulting heart." -msgstr "" - +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "pair of contact lenses" -msgid_plural "pairs of contact lenses" +#, python-format +msgid "ghastly %s" +msgid_plural "ghastly %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of contact lenses +#. ~ Description for sausage gravy #: lang/json/COMESTIBLE_from_json.py msgid "" -"A pair of extended wear contacts with soft lenses designed to be discarded " -"after a week of use. They are a great replacement to wearing glasses and " -"sit comfortably on the surface of the eye." +"Biscuits, meat, and delicious mushroom soup all crammed together into a " +"wonderfully greasy and tasteful mush." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cotton balls" -msgid_plural "cotton balls" -msgstr[0] "ватні кульки" -msgstr[1] "ватні кульки" -msgstr[2] "ватні кульки" -msgstr[3] "ватні кульки" - -#. ~ Description for {'str_sp': 'cotton balls'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " -"emergency." -msgstr "" - -#. ~ description for the sound of spell 'Cold Snap' -#: lang/json/COMESTIBLE_from_json.py lang/json/SPELL_from_json.py -msgid "crack" -msgid_plural "crack" +msgid "pemmican" +msgid_plural "pemmican" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "You smoke your crack rocks. Mother would be proud." -msgstr "" +#, python-format +msgid "prepper %s" +msgid_plural "prepper %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" -" chemistry." -msgstr "" +#, python-format +msgid "Orley %s" +msgid_plural "Orley %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "non-drowsy cough syrup" -msgid_plural "non-drowsy cough syrup" -msgstr[0] "сироп від кашлю (без присипляння)" -msgstr[1] "сиропу від кашлю (без присипляння)" -msgstr[2] "сиропу від кашлю (без присипляння)" -msgstr[3] "сироп від кашлю (без присипляння)" +#, python-format +msgid "pernicious %s" +msgid_plural "pernicious %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" -"Daytime cold and flu medication. Non-drowsy formula. Will suppress " -"coughing, aching, headaches and runny noses, but you'll still need lots of " -"fluids and rest." +"A concentrated mixture of fat and protein used as a nutritious high-energy " +"food. Composed of meat, tallow, and edible plants, it provides excellent " +"nutrition in an easy to carry form." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "antiseptic" -msgid_plural "antiseptic" -msgstr[0] "антисептик" -msgstr[1] "антисептика" -msgstr[2] "антисептика" -msgstr[3] "антисептик" - -#. ~ Description for {'str_sp': 'antiseptic'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A powerful antiseptic commonly used for contaminated wounds." -msgstr "" +msgid "hamburger helper" +msgid_plural "hamburger helpers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "makeshift antiseptic" -msgid_plural "makeshift antiseptics" -msgstr[0] "саморобний антисептик" -msgstr[1] "саморобного антисептика" -msgstr[2] "саморобного антисептика" -msgstr[3] "саморобний антисептик" +msgid "hobo helper" +msgid_plural "hobo helper" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for makeshift antiseptic +#. ~ Conditional name for hamburger helper when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Makeshift antiseptic made from ethanol. Can be used to disinfect a wound." -msgstr "" +msgid "halfling helper" +msgid_plural "halfling helper" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "prescription sedative" -msgid_plural "prescription sedative" +#, python-format +msgid "heinous %s" +msgid_plural "heinous %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for hamburger helper #: lang/json/COMESTIBLE_from_json.py msgid "" -"A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," -" and panic attacks." +"Some mac and cheese with ground meat added, enhancing the flavor and the " +"nutritional value." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "high quality shatter" -msgid_plural "high quality shatter" +msgid "ravioli" +msgid_plural "raviolis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. -#: lang/json/COMESTIBLE_from_json.py -msgid "You take a dab. Wow that's got some killer terpenes!" -msgstr "" - -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for ravioli #: lang/json/COMESTIBLE_from_json.py -#, no-python-format -msgid "" -"Concentrated cannabis extract, commonly known as dabs. This particular " -"style of concentrate in is a thin sheet and shatters like glass at room " -"temperature. Argueably its one of the better styles of concentrate compared" -" to wax, crumble, or distilate. Normal cannabis contains around 20%THC, " -"this shatter should be around 55%THC." +msgid "Meat encased in little dough satchels. Tastes fine raw." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "high quality wax" -msgid_plural "high quality wax" +msgid "chili con carne" +msgid_plural "chilis con carne" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. -#: lang/json/COMESTIBLE_from_json.py -msgid "You take a dab of some wax. *cough cough* good stuff!" -msgstr "" - -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -#, no-python-format -msgid "" -"Concentrated cannabis extract, commonly known as dabs. This particular " -"style of concentrate has the look and consistency of a yellow waxy substance" -" at room temperature. Normal cannabis contains around 20%THC, this wax " -"should be around 45%THC." -msgstr "" +msgid "chili con cabron" +msgid_plural "chilis con cabron" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "high quality crude oil" -msgid_plural "high quality crude oil" +msgid "chili con Sindar" +msgid_plural "chilis con Sindar" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "You smoke some bad dabs. Not a good idea." -msgstr "" +msgid "chili con chupacabra" +msgid_plural "chilis con chupacabra" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for chili con carne #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is high quality concentrated oil derived from cannabis. It still has " -"some residual solvents in it so it needs to be purged in a vacuum oven, " -"whipped over a heated surface, or distilled before it is safe to consume." +msgid "A spicy stew containing chili peppers, meat, tomatoes and beans." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "low quality crude oil" -msgid_plural "low quality crude oil" +msgid "pork and beans" +msgid_plural "pork and beans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. -#: lang/json/COMESTIBLE_from_json.py -msgid "You smoke some really bad dabs. Not a good idea." -msgstr "" - -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is low quality concentrated oil derived from cannabis. It still has " -"some residual solvents in it so it needs to be purged in a vacuum oven, " -"whipped over a heated surface, or distilled before it is safe to consume." +"Greasy Prospector improved pork and beans with hickory smoked pig fat " +"chunks." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "(ethanol) low quality crude oil" -msgid_plural "(ethanol) low quality crude oil" +msgid "canned tuna fish" +msgid_plural "canned tuna fish" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is low quality concentrated oil derived from cannabis thats been " -"diluted in ethanol and heated over a hotplate. The next step would be to " -"filter it through a buchner flask." +msgid "Now with 95 percent fewer dolphins!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "(ethanol) high quality crude oil" -msgid_plural "(ethanol) high quality crude oil" +msgid "canned salmon" +msgid_plural "canned salmon" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is high quality concentrated oil derived from cannabis thats been " -"diluted in ethanol and heated over a hotplate. The next step would be to " -"filter it through a buchner flask." +msgid "Bright pink fish-paste in a can!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "(ethanol) filtered low quality crude oil" -msgid_plural "(ethanol) filtered low quality crude oil" +msgid "canned chicken" +msgid_plural "canned chickens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for canned chicken #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is low quality concentrated oil derived from cannabis thats been " -"diluted in ethanol, heated over a hotplate, and filtered through a buchner " -"flask. The next step would be to run it through a rotovap." +msgid "Bright white chicken-paste." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "(ethanol) filtered high quality crude oil" -msgid_plural "(ethanol) filtered high quality crude oil" +msgid "pickled herring" +msgid_plural "pickled herring" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is high quality concentrated oil derived from cannabis thats been " -"diluted in ethanol, heated over a hotplate, and filtered through a buchner " -"flask. The next step would be to run it through a rotovap." +msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "filtered low quality crude oil" -msgid_plural "filtered low quality crude oil" +msgid "canned clam" +msgid_plural "canned clams" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for canned clam #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is low quality concentrated oil derived from cannabis thats been " -"diluted in ethanol, heated over a hotplate, filtered through a buchner " -"flask, and all the ethanol recovered using a rotary evaporator. It is ready" -" for the distillation." +msgid "Chopped quahog clams in water." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "filtered high quality crude oil" -msgid_plural "filtered high quality crude oil" +msgid "clam chowder" +msgid_plural "clam chowders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is high quality concentrated oil derived from cannabis thats been " -"diluted in ethanol, heated over a hotplate, filtered through a buchner " -"flask, and all the ethanol recovered using a rotary evaporator. It is ready" -" for the distillation." -msgstr "" - +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py -msgid "high quality distillate (heads)" -msgid_plural "high quality distillate (heads)" +msgid "meat chowder" +msgid_plural "meat chowders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Concentrated cannabis extract. This is the 'heads' portion from a distilled" -" batch of crude oil. It still needs to be ran through a lab grade still one" -" more time before its a finished product." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "high quality distillate (tails)" -msgid_plural "high quality distillate (tails)" +msgid "monster chowder" +msgid_plural "monster chowders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for clam chowder #: lang/json/COMESTIBLE_from_json.py msgid "" -"Concentrated cannabis extract. This material is the 'tails' portion from a " -"distilled batch of crude oil. It needs to be ran through a lab grade still " -"another time." +"Delicious, lumpy, white soup made of meat (normally clam) and potatoes. A " +"taste of the lost glory of New England." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "high quality distillate" -msgid_plural "high quality distillate" +msgid "baked beans" +msgid_plural "baked beans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. -#: lang/json/COMESTIBLE_from_json.py -msgid "You take a dab of some distillate. Sooooo smooth…" -msgstr "" - -#. ~ Description for {'str_sp': 'high quality distillate'} -#: lang/json/COMESTIBLE_from_json.py -#, no-python-format -msgid "" -"Concentrated cannabis extract. This style of extract goes through the most " -"processing, eliminating most if not all harmful ingredients. Normal " -"cannabis contains around 20%THC, this distillate should be around 88%THC. " -"Can be smoked in a bowl, used in a dab pen, or used to make distillate " -"cartridges." -msgstr "" - +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "high quality distillate cartridge" -msgid_plural "high quality distillate cartridges" +msgid "ork and beans" +msgid_plural "ork and beans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for high quality distillate cartridge. +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py -msgid "You hit your dab pen. Sooooo smooth…" +msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "" -#. ~ Description for high quality distillate cartridge #: lang/json/COMESTIBLE_from_json.py -#, no-python-format -msgid "" -"A small cartridge containing concentrated cannabis extract thats used with " -"dab pens. This style of extract goes through the most processing, " -"eliminating most if not all harmful ingredients. Normal cannabis contains " -"around 20%THC, this distillate should be around 70%THC after reintroducing " -"terpenes for flavoring." -msgstr "" +msgid "meat fried rice" +msgid_plural "meat fried rice" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "electronic cigarette" -msgid_plural "electronic cigarettes" +msgid "mutant fried rice" +msgid_plural "mutant fried rice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for electronic cigarette +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This battery-operated device vaporizes a liquid that contains flavorings and" -" nicotine. A less harmful alternative to traditional cigarettes, but it's " -"still addictive. It can't be reused once it's empty." +msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "saline eye drop" -msgid_plural "saline eye drops" -msgstr[0] "очні краплі із фізрозчином" -msgstr[1] "очних крапель із фізрозчином" -msgstr[2] "очних крапель із фізрозчином" -msgstr[3] "очні краплі із фізрозчином" - -#. ~ Description for saline eye drop -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Sterile saline eye drops. Can be used to treat dry eyes, or to wash out " -"contaminants." -msgstr "" +msgid "deluxe beans and rice" +msgid_plural "deluxe beans and rice" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py -msgid "flu shot" -msgid_plural "flu shots" -msgstr[0] "щеплення від грипу" -msgstr[1] "щеплення від грипу" -msgstr[2] "щеплень від грипу" -msgstr[3] "щеплення від грипу" +msgid "\"deluxe\" beans and rice" +msgid_plural "\"deluxe\" beans and rice" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for flu shot +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" -"Pharmaceutical flu shot designed for mass vaccinations, still in the " -"packaging. Purported to provide immunity to influenza, for the flu season " -"for which it was developed." +"Slow-cooked beans and rice with meat and seasonings. Tasty and very " +"filling." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chewing gum" -msgid_plural "chewing gum" -msgstr[0] "жувальна гумка" -msgstr[1] "жувальна гумка" -msgstr[2] "жувальна гумка" -msgstr[3] "жувальні гумки" - -#. ~ Description for {'str_sp': 'chewing gum'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Bright pink sugar-free chewing gum." -msgstr "" +msgid "meat pie" +msgid_plural "meat pies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "hand-rolled cigarette" -msgid_plural "hand-rolled cigarettes" +msgid "prick pie" +msgid_plural "prick pie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hand-rolled cigarette +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A roll-your-own made from tobacco and rolling paper. Stimulates mental " -"acuity and reduces appetite. Despite being hand crafted, it's still highly " -"addictive and hazardous to health." -msgstr "" +msgid "talking animal pie" +msgid_plural "talking animal pie" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "heroin" -msgid_plural "heroin" +#, python-format +msgid "malignant %s" +msgid_plural "malignant %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. -#. ~ Use action activation_message for morphine. +#. ~ Description for meat pie #: lang/json/COMESTIBLE_from_json.py -msgid "You shoot up." +msgid "A delicious baked pie with a delicious meat filling." msgstr "" -#. ~ Description for {'str_sp': 'heroin'} #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An extremely strong opioid narcotic derived from morphine. Incredibly " -"addictive, the risk of overdose is extreme, and the drug is contraindicated " -"for nearly all medical purposes." -msgstr "" +msgid "meat pizza" +msgid_plural "meat pizzas" +msgstr[0] "м'ясна піца" +msgstr[1] "м'ясні піци" +msgstr[2] "м'ясних піц" +msgstr[3] "м'ясна піца" +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "potassium iodide tablet" -msgid_plural "potassium iodide tablets" +msgid "poser pizza" +msgid_plural "poser pizza" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for potassium iodide tablet. +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "You take some potassium iodide." -msgstr "Ви прийняли йодид калію." +msgid "protesting pizza" +msgid_plural "protesting pizza" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for potassium iodide tablet +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Potassium iodide tablets. If taken prior to exposure, they help to mitigate" -" injury caused by radiation absorption." -msgstr "" -"Таблетки йодиду калію. Якщо прийняти їх до опромінення, то вони допоможуть " -"пом'якшити негативні ефекти, що повязані із поглинанням радіації." - -#: lang/json/COMESTIBLE_from_json.py lang/json/GENERIC_from_json.py -msgid "joint" -msgid_plural "joints" -msgstr[0] "косячок" -msgstr[1] "косячки" -msgstr[2] "косячків" -msgstr[3] "косячки" +#, python-format +msgid "miserable %s" +msgid_plural "miserable %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for joint +#. ~ Description for meat pizza #: lang/json/COMESTIBLE_from_json.py msgid "" -"Marijuana, cannabis, pot. Whatever you want to call it, it's rolled up in a" -" piece of paper and ready for smokin'." +"A meat pizza, for all the carnivores out there. Chock-full of minced meat " +"and heavily seasoned." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pink tab" -msgid_plural "pink tabs" +msgid "supreme pizza" +msgid_plural "supreme pizzas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for pink tab. +#. ~ Description for supreme pizza #: lang/json/COMESTIBLE_from_json.py -msgid "You eat the pink tablet." +msgid "A supreme pizza with ALL the toppings." msgstr "" -#. ~ Description for pink tab #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Tiny pink tabs resembling postage stamps, already dosed with some sort of " -"drug. Really only useful for entertainment. Will cause hallucinations." -msgstr "" +msgid "deluxe scrambled eggs" +msgid_plural "deluxe scrambled eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "medical gauze" -msgid_plural "medical gauzes" -msgstr[0] "медична марля" -msgstr[1] "медична марля" -msgstr[2] "медична марля" -msgstr[3] "медична марля" +msgid "deluxe scrambled eggheads" +msgid_plural "deluxe scrambled eggheads" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for medical gauze +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is decent sized piece of cotton, sterilized and sealed. It's designed " -"for medical purposes." -msgstr "" +msgid "birdman's scrambled eggs" +msgid_plural "birdman's scrambled eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py -msgid "low-grade methamphetamine" -msgid_plural "low-grade methamphetamine" +msgid "\"deluxe\" scrambled eggs" +msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" -"A profoundly addictive and powerful stimulant. While extremely effective at" -" enhancing alertness, it is hazardous to health and the risk of an adverse " -"reaction is great." +"Fluffy and delicious scrambled eggs made more delicious with the addition of" +" other tasty ingredients." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "high-grade methamphetamine" -msgid_plural "high-grade methamphetamine" +msgid "canned meat" +msgid_plural "canned meats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A profoundly addictive and powerful stimulant. While extremely effective at" -" enhancing alertness, it is hazardous to health and the risk of an adverse " -"reaction is great. This one could have only been made by a great chemist." -msgstr "" +msgid "soylent slice" +msgid_plural "soylent slice" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "morphine" -msgid_plural "morphines" +msgid "sapient slice" +msgid_plural "sapient slice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for morphine +#. ~ Description for canned meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"A very strong, naturally-occurring narcotic used to treat intense pain in " -"hospital settings. This injectable drug is very addictive." +"Low-sodium preserved meat. It was boiled and canned. Contains most of the " +"nutrition, but little of the savor of cooked meat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mugwort oil" -msgid_plural "mugwort oils" +msgid "salted meat slice" +msgid_plural "salted meat slices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mugwort oil +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Some essential oil made from mugwort, which may kill parasites when " -"ingested. Consume it with water!" -msgstr "" +msgid "salted simpleton slice" +msgid_plural "salted simpleton slice" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for salted meat slice when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "nicotine gum" -msgid_plural "nicotine gums" -msgstr[0] "нікотинова жувальна гумка" -msgstr[1] "нікотинові жувальні гумки" -msgstr[2] "нікотинових жувальних гумок" -msgstr[3] "нікотинова жувальна гумка" +msgid "salted sapient slice" +msgid_plural "salted sapient slice" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for nicotine gum +#. ~ Description for salted meat slice #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Mint flavored sugar-free nicotine chewing gum. For smokers who desire to " -"quit." +msgid "Meat slices cured in brine. Salty but tasty in a pinch." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cough syrup" -msgid_plural "cough syrup" -msgstr[0] "сироп від кашлю" -msgstr[1] "сиропу від кашлю" -msgstr[2] "сиропу від кашлю" -msgstr[3] "сироп від кашлю" +msgid "spaghetti bolognese" +msgid_plural "spaghetti bolognese" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Nighttime cold and flu medication. Useful when trying to sleep with a head " -"full of virions. Will cause drowsiness." -msgstr "" +msgid "scoundrel spaghetti" +msgid_plural "scoundrel spaghetti" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for spaghetti bolognese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "oxycodone" -msgid_plural "oxycodones" +msgid "speaking spaghetti" +msgid_plural "speaking spaghetti" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for oxycodone. +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "You take some oxycodone." -msgstr "" +#, python-format +msgid "gnarly %s" +msgid_plural "gnarly %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for oxycodone +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A strong semi-synthetic narcotic used in the treatment of intense pain. " -"Highly addictive." +msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sleeping pill" -msgid_plural "sleeping pill" -msgstr[0] "снодійна пігулка" -msgstr[1] "снодійні пігулки" -msgstr[2] "снодійних пігулок" -msgstr[3] "снодійні пігулки" +msgid "lasagne" +msgid_plural "lasagnes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A habit-forming tranquilizer with a variety of psychoactive side effects. " -"Used in the treatment of insomnia." -msgstr "" +#, python-format +msgid "Luigi %s" +msgid_plural "Luigi %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "poppy painkiller" -msgid_plural "poppy painkillers" -msgstr[0] "макове знеболююче" -msgstr[1] "макового знеболюючого" -msgstr[2] "макового знеболюючого" -msgstr[3] "макове знеболююче" +#, python-format +msgid "Lab %s" +msgid_plural "Lab %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action activation_message for poppy painkiller. +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "You take some poppy painkiller." -msgstr "Ви прийняли трохи макового знеболюючого." +#, python-format +msgid "monster %s" +msgid_plural "monster %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for poppy painkiller +#. ~ Description for lasagne #: lang/json/COMESTIBLE_from_json.py msgid "" -"Potent opioid palliative produced by the refining of the mutated poppy. " -"Notably devoid of euphoric or sedative effects, as an opiate it may still be" -" addictive." +"A very old type of pasta made with several layers of lasagne sheets " +"alternated with cheese, sauces and meats." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "poppy sleep" -msgid_plural "poppy sleeps" +msgid "fried SPAM" +msgid_plural "fried SPAM" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for poppy sleep +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A potent sleep aid extracted from mutated poppy seeds. Effective, but as an" -" opiate, it may be addictive." +msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "poppy cough syrup" -msgid_plural "poppy cough syrup" -msgstr[0] "маковий сироп від кашлю" -msgstr[1] "макового сиропу від кашлю" -msgstr[2] "макового сиропу від кашлю" -msgstr[3] "маковий сироп від кашлю" +msgid "cheeseburger" +msgid_plural "cheeseburgers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "Cough syrup made from mutated poppy. Will make you sleepy." -msgstr "" +#, python-format +msgid "chump %s" +msgid_plural "chump %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for cheeseburger when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "injectable prophylactic antivenom" -msgid_plural "injectable prophylactic antivenom" +#, python-format +msgid "elf %s" +msgid_plural "elf %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "" -"You inject a vial of prophylactic antivenom into your arm. You feel a bit " -"queasy." -msgstr "" +#, python-format +msgid "chilling %s" +msgid_plural "chilling %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for cheeseburger #: lang/json/COMESTIBLE_from_json.py msgid "" -"An experimental, cutting-edge antivenom in the form of some small amber " -"vials, designed to be injected a few hours before venom exposure. It was " -"developed in top secret by the military in response to increasing " -"biological/chemical warfare." +"A sandwich of minced meat and cheese with condiments. A simple favorite of " +"the people before the cataclysm." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "antidepressant" -msgid_plural "antidepressant" +msgid "deluxe cheeseburger" +msgid_plural "deluxe cheeseburgers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for deluxe cheeseburger #: lang/json/COMESTIBLE_from_json.py msgid "" -"A common and popular antidepressant. It will elevate mood, and can " -"profoundly affect the action of other drugs. It is only rarely habit-" -"forming, though adverse reactions are not uncommon." +"A cheeseburger with more vegetables and condiments. This is the apex of " +"pre-Cataclysm culinary achievement." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Prussian blue tablet" -msgid_plural "Prussian blue tablets" -msgstr[0] "таблетка берлінської лазурі" -msgstr[1] "таблетки берлінської лазурі" -msgstr[2] "таблеток берлінської лазурі" -msgstr[3] "таблетки берлінської лазурі" +msgid "hamburger" +msgid_plural "hamburgers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action activation_message for Prussian blue tablet. +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "You take some Prussian blue." -msgstr "Ви прийняли таблетку берлінської лазурі." +msgid "bobburger" +msgid_plural "bobburger" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for Prussian blue tablet +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Tablets containing oxidized ferrous ferrocyanide salts. Capable of purging " -"nuclear contaminants from the body if taken after radiation exposure." -msgstr "" +msgid "Moreauburger" +msgid_plural "Moreauburger" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "hemostatic powder" -msgid_plural "hemostatic powder" +#, python-format +msgid "horrible %s" +msgid_plural "horrible %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hamburger #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A powdered antihemorrhagic compound that reacts with blood to immediately " -"form a gel-like substance that stops bleeding." +msgid "A sandwich of minced meat with condiments." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "saline solution" -msgid_plural "saline solutions" -msgstr[0] "фізрозчин" -msgstr[1] "фізрозчин" -msgstr[2] "фізрозчин" -msgstr[3] "фізрозчин" +msgid "sloppy joe" +msgid_plural "sloppy joes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for saline solution +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A solution of sterilized water and salt for intravenous infusion or washing " -"contaminants from one's eyes." -msgstr "" +msgid "manwich" +msgid_plural "manwiches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "antipsychotic" -msgid_plural "antipsychotic" +msgid "manfriendwich" +msgid_plural "manfriendwiches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +#, python-format +msgid "suspicious %s" +msgid_plural "suspicious %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for sloppy joe #: lang/json/COMESTIBLE_from_json.py msgid "" -"Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" -" hallucinations and other symptoms of psychosis. Carries a sedative effect." +"A sandwich, consisting of ground meat and tomato sauce served on a hamburger" +" bun." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "thyme oil" -msgid_plural "thyme oils" +msgid "taco" +msgid_plural "tacos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for thyme oil +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Some essential oil made from thyme, which can act as a mildly irritating " -"antiseptic." -msgstr "" +#, python-format +msgid "tio %s" +msgid_plural "tio %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "rolling tobacco" -msgid_plural "rolling tobaccos" +#, python-format +msgid "talking %s" +msgid_plural "talking %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for rolling tobacco. +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "You smoke some tobacco." -msgstr "" +#, python-format +msgid "terrifying %s" +msgid_plural "terrifying %s" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for rolling tobacco +#. ~ Description for taco #: lang/json/COMESTIBLE_from_json.py msgid "" -"Loose, fine-cut tobacco leaves. Popular in Europe and among hipsters. Highly addictive and hazardous to health.\n" -"Can either be rolled into a cigarette with some rolling papers or smoked through a pipe." +"A traditional Mexican dish composed of a corn tortilla folded or rolled " +"around a meat filling." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tramadol" -msgid_plural "tramadols" -msgstr[0] "трамадол" -msgstr[1] "трамадолу" -msgstr[2] "трамадолу" -msgstr[3] "трамадол" - -#. ~ Use action activation_message for tramadol. -#: lang/json/COMESTIBLE_from_json.py -msgid "You take some tramadol." -msgstr "Ви прийняли трамадол." +msgid "pickled meat" +msgid_plural "pickled meats" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for tramadol +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A painkiller used to manage moderate pain. The effects last for several " -"hours, but are relatively subdued for an opioid." -msgstr "" +msgid "pickled punk" +msgid_plural "pickled punk" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for pickled meat when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "gamma globulin shot" -msgid_plural "gamma globulin shots" +msgid "pickled anthro" +msgid_plural "pickled anthro" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for gamma globulin shot +#. ~ Description for pickled meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"This immunoglobulin booster contains concentrated antibodies prepared for " -"intravenous injection to temporarily strengthen the immune system. It is " -"still in its original packaging." +"This is a serving of crisply brined and canned meat. Tasty and nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "multivitamin" -msgid_plural "multivitamins" -msgstr[0] "мультивітаміни" -msgstr[1] "мультивітамінів" -msgstr[2] "мультивітамінів" -msgstr[3] "мультивітамінів" +msgid "dehydrated meat" +msgid_plural "dehydrated meats" +msgstr[0] "сушене м'ясо" +msgstr[1] "сушеного м'яса" +msgstr[2] "сушеного м'яса" +msgstr[3] "сушене м'ясо" -#. ~ Use action activation_message for multivitamin. -#. ~ Use action activation_message for calcium tablet. -#. ~ Use action activation_message for bone meal tablet. -#. ~ Use action activation_message for flavored bone meal tablet. +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -#, no-python-format -msgid "You take the %s." -msgstr "Ви прийняли %s." +#, python-format +msgid "%s, human" +msgid_plural "%s, human" +msgstr[0] "%s, людське" +msgstr[1] "%s, людські" +msgstr[2] "%s, людські" +msgstr[3] "%s, людські" -#. ~ Description for multivitamin +#. ~ Conditional name for dehydrated meat when FLAG matches +#. STRICT_HUMANITARIANISM +#. ~ Conditional name for rehydrated meat when FLAG matches +#. STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +#, python-format +msgid "%s, demihuman" +msgid_plural "%s, demihuman" +msgstr[0] "%s, напівлюдське" +msgstr[1] "%s, напівлюдські" +msgstr[2] "%s, напівлюдські" +msgstr[3] "%s, напівлюдські" + +#. ~ Description for dehydrated meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"Essential dietary nutrients conveniently packaged in pill form. An option " -"of last resort when a balanced diet is not possible. Excess use can cause " -"hypervitaminosis." +"Dehydrated meat flakes. With proper storage, this dried food will remain " +"edible for an incredibly long time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "calcium tablet" -msgid_plural "calcium tablets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "rehydrated meat" +msgid_plural "rehydrated meats" +msgstr[0] "регідроване м'ясо" +msgstr[1] "регідрованого м'яса" +msgstr[2] "регідрованого м'яса" +msgstr[3] "регідроване м'ясо" -#. ~ Description for calcium tablet +#. ~ Description for rehydrated meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"White calcium tablets. Widely used by elderly people with osteoporosis as a" -" method to supplement calcium before the apocalypse." +"Reconstituted meat flakes, which are much more enjoyable to eat now that " +"they have been rehydrated." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bone meal tablet" -msgid_plural "bone meal tablets" +msgid "haggis" +msgid_plural "haggises" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bone meal tablet +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +#, python-format +msgid "human %s" +msgid_plural "human %s" +msgstr[0] "людський %s" +msgstr[1] "людські %s" +msgstr[2] "людські %s" +msgstr[3] "людські %s" + +#. ~ Description for haggis #: lang/json/COMESTIBLE_from_json.py msgid "" -"Homemade calcium supplement made out of bone meal. Tastes horrible and is " -"hard to swallow but it does its job." +"This traditional Scottish savory pudding is made of meat and offal mixed " +"with oatmeal, which is sewn into an animal's stomach and boiled. " +"Surprisingly tasty and quite filling, it is best served with boiled root " +"vegetables and strong whisky." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "flavored bone meal tablet" -msgid_plural "flavored bone meal tablets" +msgid "fish makizushi" +msgid_plural "fish makizushi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for flavored bone meal tablet +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" -"Homemade calcium supplement made out of bone meal. Due to some sweetness " -"mixed in to counteract the powdery texture and the taste of ash, it's almost" -" as palatable as the pre-Cataclysm tablets." +"Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " +"rolled up in a healthy green vegetable." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "gummy vitamin" -msgid_plural "gummy vitamins" +msgid "meat temaki" +msgid_plural "meat temaki" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for gummy vitamin -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Essential dietary nutrients conveniently packaged in a fruit-flavored chewy " -"candy form. An option of last resort when a balanced diet is not possible." -" Excess use can cause hypervitaminosis." -msgstr "" - +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "homeopathic pill" -msgid_plural "homeopathic pills" +#, python-format +msgid "troubling %s" +msgid_plural "troubling %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for homeopathic pill. -#: lang/json/COMESTIBLE_from_json.py -#, no-python-format -msgid "You swallow the %s. You wait in anticipation of its effects." -msgstr "" - -#. ~ Description for homeopathic pill -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Some homeopathic pills, prepared through the repeated dilution of an active " -"ingredient with water. The label purports that these pills are able to " -"maintain general wellness." -msgstr "" - +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" -"Some Oscillococcinum homeopathic pills, prepared through the dilution of one" -" part duck offal with 10^400 parts water. The label purports that these " -"pills are able to treat flu-like symptoms and maintain general wellness." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Some Arsenicum album homeopathic pills, prepared through the dilution of one" -" part arsenic trioxide with 10^24 parts water. These pills are meant to " -"treat anxiety, various digestive disorders, and arsenic poisoning." +"Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" +" healthy green vegetable." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Some Allium cepa homeopathic pills, prepared through the dilution of one " -"part onion with 10^30 parts water. The label states that these pills can " -"ameliorate symptoms of asthma, gastrointestinal disorders, and bronchitis. " -"You briefly wonder if they may cure fungal infections." -msgstr "" +msgid "sashimi" +msgid_plural "sashimi" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Some Arum tryphillum homeopathic pills, prepared through the dilution of the" -" jack-in-the-pulpit plant with 10^30 parts water. The label claims that the" -" pills are able to treat voice loss." +msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Some Aesculus hippocastanum homeopathic pills, prepared through the dilution" -" of horse chestnut with 10^30 parts water. These pills are meant to treat " -"dysentry and hemorrhoids." -msgstr "" +msgid "dehydrated tainted meat" +msgid_plural "dehydrated tainted meats" +msgstr[0] "сушене заражене м'ясо" +msgstr[1] "сушеного зараженого м'яса" +msgstr[2] "сушеного зараженого м'яса" +msgstr[3] "сушене заражене м'ясо" +#. ~ Description for dehydrated tainted meat #: lang/json/COMESTIBLE_from_json.py msgid "" -"Some Lachesis mutus pills, prepared through the dilution of the venom of the" -" bushmaster snake with 10^1000 parts water. These pills are claimed to be " -"an effective treatment for sore throat." +"Pieces of poisonous meat that have been dried to prevent them from rotting " +"away. It will still poison you if you eat this." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "injectable vitamin B" -msgid_plural "injectable vitamin Bs" +msgid "pelmeni" +msgid_plural "pelmenis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for injectable vitamin B. -#: lang/json/COMESTIBLE_from_json.py -msgid "You inject some vitamin B." -msgstr "" - -#. ~ Description for injectable vitamin B -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Small vials of pale yellow liquid containing soluble vitamin B for " -"injection." -msgstr "" - +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "injectable iron" -msgid_plural "injectable irons" +#, python-format +msgid "perilous %s" +msgid_plural "perilous %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for injectable iron. -#: lang/json/COMESTIBLE_from_json.py -msgid "You inject some iron." -msgstr "" - -#. ~ Description for injectable iron +#. ~ Description for pelmeni #: lang/json/COMESTIBLE_from_json.py msgid "" -"Small vials of dark yellow liquid containing soluble iron for injection." +"Delicious cooked dumplings consisting of a meat filling wrapped in thin " +"dough." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "marijuana" -msgid_plural "marijuana" +msgid "homemade burrito" +msgid_plural "homemade burritos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "You smoke some weed. Good stuff, man!" -msgstr "" +msgid "bone-chilling burrito" +msgid_plural "bone-chilling burritos" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for homemade burrito #: lang/json/COMESTIBLE_from_json.py msgid "" -"The dried flower buds and leaves harvested from a psychoactive variety of " -"hemp plant. Used to reduce nausea, stimulate appetite and elevate mood. It" -" can be habit-forming, and adverse reactions are possible." +"A traditional Mexican dish of meat and vegetable stuffing put on a corn " +"tortilla and rolled into a tube shape, like those you find in gas stations " +"but homemade and delicious!" msgstr "" -"Висушені квітки й листя психотропних сортів коноплі. Використовуються для " -"пригнічення нудоти, стимуляції апетиту і підняття настрою. Може вкликати " -"звикання, також можливі побічні реакції." #: lang/json/COMESTIBLE_from_json.py -msgid "fast-acting sedative" -msgid_plural "fast-acting sedative" +msgid "raw meatball" +msgid_plural "raw meatballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Anti-anxiety agent with a powerful sedative effect. May cause dissociation " -"and loss of memory. It is dangerously addictive, and withdrawal from " -"regular use should be gradual." -msgstr "" +msgid "raw manball" +msgid_plural "raw manballs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for raw meatball when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "antiseptic soaked rag" -msgid_plural "antiseptic soaked rags" +msgid "raw murderball" +msgid_plural "raw murderballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for antiseptic soaked rag +#. ~ Description for raw meatball #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A rag soaked in antiseptic. Useful for light wounds, probably won't help " -"with deep bites." +msgid "A round, seasoned lump of meat, ready to fry." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "antiseptic soaked cotton balls" -msgid_plural "antiseptic soaked cotton balls" +msgid "meatball" +msgid_plural "meatballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " -"somewhat useful to disinfect a wound." -msgstr "" +msgid "manball" +msgid_plural "manballs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "narrow-spectrum antibiotics" -msgid_plural "narrow-spectrum antibiotics" -msgstr[0] "антибіотик вузького спектру дії" -msgstr[1] "антибіотику вузького спектру дії" -msgstr[2] "антибіотику вузького спектру дії" -msgstr[3] "антибіотик вузького спектру дії" +msgid "murderball" +msgid_plural "murderballs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for meatball #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A narrow-spectrum antibiotic used to suppress infections and prevent them " -"from spreading. It isn't broad enough to purge most infections outright, " -"but it boosts the body's resistance against them. One dose lasts twelve " -"hours." +msgid "A seasoned, fried, round lump of meat. Just like mom used to make!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "heartburn medicine" -msgid_plural "heartburn medicines" +msgid "melatonin tablet" +msgid_plural "melatonin tablets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for heartburn medicine. +#. ~ Use action activation_message for melatonin tablet. #: lang/json/COMESTIBLE_from_json.py -msgid "You take some heartburn medicine." +msgid "You pop a melatonin tablet." msgstr "" -#. ~ Description for heartburn medicine +#. ~ Description for melatonin tablet #: lang/json/COMESTIBLE_from_json.py msgid "" -"Creamy pink heartburn syrup that soothes upset stomachs and quells vomitous " -"urges." +"Over-the-counter melatonin supplements, commonly prescribed to treat sleep " +"deprivation and to mitigate its effects. One tablet a day combined with a " +"good night's sleep will help you recover faster." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Panaceus" -msgid_plural "Panaceii" +msgid "prescription stimulant" +msgid_plural "prescription stimulant" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for Panaceus. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py -msgid "You feel AMAZING!" +msgid "You take some stimulants." msgstr "" -#. ~ Description for Panaceus +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" -"An apple-red gel capsule the size of your thumbnail, filled with a thick " -"oily liquid that shifts from black to purple at unpredictable intervals, " -"flecked with tiny gray dots. Given the place you got it from, it's either " -"very potent, or highly experimental. Holding it, all the little aches and " -"pains seem to fade, just for a moment…" +"Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" +" prescribed to treat hyperactive attention deficits. It suppresses the " +"appetite, and is quite addictive." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cattail jelly" -msgid_plural "cattail jellies" -msgstr[0] "желе із рогозу" -msgstr[1] "желе із рогозу" -msgstr[2] "желе із рогозу" -msgstr[3] "желе із рогозу" +msgid "adhesive bandage" +msgid_plural "adhesive bandages" +msgstr[0] "лейкопластир" +msgstr[1] "лейкопластири" +msgstr[2] "лейкопластирів" +msgstr[3] "лейкопластири" -#. ~ Description for cattail jelly +#. ~ Description for adhesive bandage #: lang/json/COMESTIBLE_from_json.py msgid "" -"Clear jelly harvested from cattail, has antiseptic properties and works as a" -" painkiller." +"A set of small medical dressings, each made of a piece of sterile cloth and " +"a sticky tape, used for small injuries not serious enough to require a full-" +"size bandage." msgstr "" -"Прозоре желе, отримане із рогозу. Має антисептичні властивості і може бути " -"використане як знеболююче." #: lang/json/COMESTIBLE_from_json.py -msgid "broad-spectrum antibiotics" -msgid_plural "broad-spectrum antibiotics" +msgid "epinephrine autoinjector" +msgid_plural "epinephrine autoinjectors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Use action activation_message for epinephrine autoinjector. +#: lang/json/COMESTIBLE_from_json.py +msgid "You inject yourself with the injector." +msgstr "" + +#. ~ Description for epinephrine autoinjector #: lang/json/COMESTIBLE_from_json.py msgid "" -"A broad-spectrum antibacterial medication designed to prevent or stop the " -"spread of infection. It contains nearly toxic levels of antibiotics, but " -"can treat any bacterial infections you may encounter. One dose lasts twelve" -" hours." +"A syringe filled with a shot of epinephrine, also called adrenalin. It " +"serves as a powerful stimulant when you inject yourself with it. Asthmatics" +" can use it in an emergency to clear their asthma." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cocaine topical cream" -msgid_plural "cocaine topical cream" +msgid "antibiotics" +msgid_plural "antibiotics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" -"A medical cream that provides both vascular restriction and anesthetic " -"properties." +"An antibacterial medication designed to prevent or stop the spread of " +"infection. It's the safest way to cure any infections you might have. One " +"dose lasts twelve hours." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "MRE entree" -msgid_plural "MRE entrees" +msgid "antifungal drug" +msgid_plural "antifungal drugs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE entree +#. ~ Description for antifungal drug #: lang/json/COMESTIBLE_from_json.py -msgid "A generic MRE entree, you shouldn't see this." +msgid "" +"Powerful chemical tablets designed to eliminate fungal infections in living " +"creatures. One dose lasts four hours." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chili & beans entree" -msgid_plural "chili & beans entrees" +msgid "antiparasitic drug" +msgid_plural "antiparasitic drug" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chili & beans entree +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" -"The chili & beans entree from an MRE. Sterilized using radiation, so it's " -"safe to eat. Exposed to the atmosphere, it has started to go bad." +"Broad spectrum chemical tablets designed to eliminate parasitic infestations" +" in living creatures. Though designed for use on pets and livestock, it " +"will likely work on humans as well." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "BBQ beef entree" -msgid_plural "BBQ beef entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "aspirin" +msgid_plural "aspirins" +msgstr[0] "аспірин" +msgstr[1] "аспірину" +msgstr[2] "аспірину" +msgstr[3] "аспірин" -#. ~ Description for BBQ beef entree +#. ~ Use action activation_message for aspirin. +#: lang/json/COMESTIBLE_from_json.py +msgid "You take some aspirin." +msgstr "Ви прийняли аспірин." + +#. ~ Description for aspirin #: lang/json/COMESTIBLE_from_json.py msgid "" -"The BBQ beef entree from an MRE. Sterilized using radiation, so it's safe " -"to eat. Exposed to the atmosphere, it has started to go bad." +"Acetylsalicylic acid, a mild anti-inflammatory. Take to relieve pain and " +"swelling." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chicken noodle entree" -msgid_plural "chicken noodle entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "bandage" +msgid_plural "bandages" +msgstr[0] "бинт" +msgstr[1] "бинти" +msgstr[2] "бинтів" +msgstr[3] "бинт" -#. ~ Description for chicken noodle entree +#. ~ Description for bandage #: lang/json/COMESTIBLE_from_json.py msgid "" -"The chicken noodle entree from an MRE. Sterilized using radiation, so it's " -"safe to eat. Exposed to the atmosphere, it has started to go bad." +"Simple cloth bandages. Used for stopping bloodloss and protecting wounds " +"from external factors." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "spaghetti entree" -msgid_plural "spaghetti entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "makeshift bandage" +msgid_plural "makeshift bandages" +msgstr[0] "саморобний бинт" +msgstr[1] "саморобні бинти" +msgstr[2] "саморобних бинтів" +msgstr[3] "саморобні бинти" + +#. ~ Description for makeshift bandage +#: lang/json/COMESTIBLE_from_json.py +msgid "Simple cloth bandages. Better than nothing." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "bleached makeshift bandage" +msgid_plural "bleached makeshift bandages" +msgstr[0] "промитий хлоркою саморобний бинт" +msgstr[1] "промиті хлоркою саморобні бинти" +msgstr[2] "промитих хлоркою саморобних бинтів" +msgstr[3] "промиті хлоркою саморобні бинти" + +#. ~ Description for bleached makeshift bandage +#: lang/json/COMESTIBLE_from_json.py +msgid "Simple cloth bandages. It is white, as real bandages should be." +msgstr "" -#. ~ Description for spaghetti entree +#: lang/json/COMESTIBLE_from_json.py +msgid "boiled makeshift bandage" +msgid_plural "boiled makeshift bandages" +msgstr[0] "прокип'ячений саморобний бинт" +msgstr[1] "прокип'ячені саморобні бинти" +msgstr[2] "прокип'ячених саморобних бинтів" +msgstr[3] "прокип'ячені саморобні бинти" + +#. ~ Description for boiled makeshift bandage +#: lang/json/COMESTIBLE_from_json.py +msgid "Simple cloth bandages. It was boiled to make it more sterile." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "antiseptic powder" +msgid_plural "antiseptic powder" +msgstr[0] "антисептичний порошок" +msgstr[1] "антисептичний порошок" +msgstr[2] "антисептичний порошок" +msgstr[3] "антисептичний порошок" + +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" -"The spaghetti entree from an MRE. Sterilized using radiation, so it's safe " -"to eat. Exposed to the atmosphere, it has started to go bad." +"A powdered form of chemical antiseptic, this bismuth formic iodide cleans " +"wounds quickly and painlessly." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chicken chunks entree" -msgid_plural "chicken chunks entrees" +msgid "caffeinated chewing gum" +msgid_plural "caffeinated chewing gums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chicken chunks entree +#. ~ Description for caffeinated chewing gum #: lang/json/COMESTIBLE_from_json.py -msgid "" -"The chicken chunks entree from an MRE. Sterilized using radiation, so it's " -"safe to eat. Exposed to the atmosphere, it has started to go bad." +msgid "Sugar-free chewing gum with added caffeine, it's a nice pick-me-up." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "beef taco entree" -msgid_plural "beef taco entrees" +msgid "caffeine pill" +msgid_plural "caffeine pills" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for beef taco entree +#. ~ Use action activation_message for caffeine pill. +#: lang/json/COMESTIBLE_from_json.py +msgid "You take a caffeine pill." +msgstr "" + +#. ~ Description for caffeine pill #: lang/json/COMESTIBLE_from_json.py msgid "" -"The beef taco entree from an MRE. Sterilized using radiation, so it's safe " -"to eat. Exposed to the atmosphere, it has started to go bad." +"No-doz brand caffeine pills, maximum strength. Useful in pulling an all-" +"nighter, each pill is equivalent to a strong cup of coffee." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "beef brisket entree" -msgid_plural "beef brisket entrees" +msgid "chewing tobacco" +msgid_plural "chewing tobaccos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for beef brisket entree +#. ~ Description for chewing tobacco #: lang/json/COMESTIBLE_from_json.py msgid "" -"The beef brisket entree from an MRE. Sterilized using radiation, so it's " -"safe to eat. Exposed to the atmosphere, it has started to go bad." +"Mint flavored chewing tobacco. While still absolutely terrible for your " +"health, it was once a favorite amongst baseball players, cowboys, and other " +"macho types." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "meatballs & marinara entree" -msgid_plural "meatballs & marinara entrees" +msgid "hydrogen peroxide" +msgid_plural "hydrogen peroxide" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for meatballs & marinara entree +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" -"The meatballs & marinara entree from an MRE. Sterilized using radiation, so" -" it's safe to eat. Exposed to the atmosphere, it has started to go bad." +"Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" +" textiles. Foams a little when in contact with organic matter, but " +"otherwise harmless." msgstr "" +#: lang/json/COMESTIBLE_from_json.py lang/json/GENERIC_from_json.py +msgid "cigarette" +msgid_plural "cigarettes" +msgstr[0] "цигарка" +msgstr[1] "цигарки" +msgstr[2] "цигарок" +msgstr[3] "цигарка" + +#. ~ Description for cigarette #: lang/json/COMESTIBLE_from_json.py -msgid "beef stew entree" -msgid_plural "beef stew entrees" +msgid "" +"A mixture of dried tobacco leaf, pesticides, and chemical additives, rolled " +"into a filtered paper tube. Stimulates mental acuity and reduces appetite." +" Highly addictive and hazardous to health." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py lang/json/GENERIC_from_json.py +msgid "cigar" +msgid_plural "cigars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for beef stew entree +#. ~ Description for cigar #: lang/json/COMESTIBLE_from_json.py msgid "" -"The beef stew entree from an MRE. Sterilized using radiation, so it's safe " -"to eat. Exposed to the atmosphere, it has started to go bad." +"Rolled, cured tobacco leaf, addictive and hazardous to health.\n" +"A gentleman's vice, cigars set the civil man apart from the savage." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chili & macaroni entree" -msgid_plural "chili & macaroni entrees" +msgid "chloroform soaked rag" +msgid_plural "chloroform soaked rags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chili & macaroni entree +#. ~ Description for chloroform soaked rag #: lang/json/COMESTIBLE_from_json.py -msgid "" -"The chili & macaroni entree from an MRE. Sterilized using radiation, so " -"it's safe to eat. Exposed to the atmosphere, it has started to go bad." +msgid "A debug item that lets you put NPCs (or yourself) to sleep." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vegetarian taco entree" -msgid_plural "vegetarian taco entrees" +msgid "codeine" +msgid_plural "codeine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vegetarian taco entree +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py -msgid "" -"The vegetarian taco entree from an MRE. Sterilized using radiation, so it's" -" safe to eat. Exposed to the atmosphere, it has started to go bad." +msgid "You take some codeine." msgstr "" +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py -msgid "macaroni & marinara entree" -msgid_plural "macaroni & marinara entrees" +msgid "" +"A mild opiate used in the suppression of pain, cough, and other ailments. " +"While relatively weak for a narcotic, it is still addictive, with a " +"potential for overdose." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py src/addiction.cpp +msgid "cocaine" +msgid_plural "cocaine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for macaroni & marinara entree +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" -"The macaroni & marinara entree from an MRE. Sterilized using radiation, so " -"it's safe to eat. Exposed to the atmosphere, it has started to go bad." +"Crystalline extract of the coca leaf, or at least, a white powder with some " +"of that in it. A topical analgesic, it is more commonly used for its " +"stimulatory properties. Highly addictive." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "spinach fettuccine entree" -msgid_plural "spinach fettuccine entrees" +msgid "methacola" +msgid_plural "methacolas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for spinach fettuccine entree +#. ~ Description for methacola #: lang/json/COMESTIBLE_from_json.py msgid "" -"The creamy spinach fettuccine entree from an MRE. Sterilized using " -"radiation, so it's safe to eat. Exposed to the atmosphere, it has started " -"to go bad." +"A potent cocktail of amphetamines, caffeine and corn syrup, this stuff puts " +"a spring in your step, a fire in your eye, and a bad case of tachycardia " +"tremors in your somersaulting heart." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "ratatouille entree" -msgid_plural "ratatouille entrees" +msgid "pair of contact lenses" +msgid_plural "pairs of contact lenses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ratatouille entree +#. ~ Description for pair of contact lenses #: lang/json/COMESTIBLE_from_json.py msgid "" -"The ratatouille entree from an MRE. Sterilized using radiation, so it's " -"safe to eat. Exposed to the atmosphere, it has started to go bad." +"A pair of extended wear contacts with soft lenses designed to be discarded " +"after a week of use. They are a great replacement to wearing glasses and " +"sit comfortably on the surface of the eye." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cheese tortellini entree" -msgid_plural "cheese tortellini entrees" +msgid "cotton balls" +msgid_plural "cotton balls" +msgstr[0] "ватні кульки" +msgstr[1] "ватні кульки" +msgstr[2] "ватні кульки" +msgstr[3] "ватні кульки" + +#. ~ Description for cotton balls +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " +"emergency." +msgstr "" + +#. ~ description for the sound of spell 'Cold Snap' +#: lang/json/COMESTIBLE_from_json.py lang/json/SPELL_from_json.py +msgid "crack" +msgid_plural "crack" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cheese tortellini entree +#. ~ Use action activation_message for crack. +#: lang/json/COMESTIBLE_from_json.py +msgid "You smoke your crack rocks. Mother would be proud." +msgstr "" + +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" -"The cheese tortellini entree from an MRE. Sterilized using radiation, so " -"it's safe to eat. Exposed to the atmosphere, it has started to go bad." +"Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" +" chemistry." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mushroom fettuccine entree" -msgid_plural "mushroom fettuccine entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "non-drowsy cough syrup" +msgid_plural "non-drowsy cough syrup" +msgstr[0] "сироп від кашлю (без присипляння)" +msgstr[1] "сиропу від кашлю (без присипляння)" +msgstr[2] "сиропу від кашлю (без присипляння)" +msgstr[3] "сироп від кашлю (без присипляння)" -#. ~ Description for mushroom fettuccine entree +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" -"The mushroom fettuccine entree from an MRE. Sterilized using radiation, so " -"it's safe to eat. Exposed to the atmosphere, it has started to go bad." +"Daytime cold and flu medication. Non-drowsy formula. Will suppress " +"coughing, aching, headaches and runny noses, but you'll still need lots of " +"fluids and rest." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Mexican chicken stew entree" -msgid_plural "Mexican chicken stew entrees" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "antiseptic" +msgid_plural "antiseptic" +msgstr[0] "антисептик" +msgstr[1] "антисептика" +msgstr[2] "антисептика" +msgstr[3] "антисептик" -#. ~ Description for Mexican chicken stew entree +#. ~ Description for antiseptic +#: lang/json/COMESTIBLE_from_json.py +msgid "A powerful antiseptic commonly used for contaminated wounds." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "makeshift antiseptic" +msgid_plural "makeshift antiseptics" +msgstr[0] "саморобний антисептик" +msgstr[1] "саморобного антисептика" +msgstr[2] "саморобного антисептика" +msgstr[3] "саморобний антисептик" + +#. ~ Description for makeshift antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "" -"The Mexican chicken stew entree from an MRE. Sterilized using radiation, so" -" it's safe to eat. Exposed to the atmosphere, it has started to go bad." +"Makeshift antiseptic made from ethanol. Can be used to disinfect a wound." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chicken burrito bowl entree" -msgid_plural "chicken burrito bowl entrees" +msgid "prescription sedative" +msgid_plural "prescription sedative" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chicken burrito bowl entree +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" -"The chicken burrito bowl entree from an MRE. Sterilized using radiation, so" -" it's safe to eat. Exposed to the atmosphere, it has started to go bad." +"A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," +" and panic attacks." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "maple sausage entree" -msgid_plural "maple sausage entrees" +msgid "high quality shatter" +msgid_plural "high quality shatter" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for maple sausage entree +#. ~ Use action activation_message for high quality shatter. +#: lang/json/COMESTIBLE_from_json.py +msgid "You take a dab. Wow that's got some killer terpenes!" +msgstr "" + +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py +#, no-python-format msgid "" -"The maple sausage entree from an MRE. Sterilized using radiation, so it's " -"safe to eat. Exposed to the atmosphere, it has started to go bad." +"Concentrated cannabis extract, commonly known as dabs. This particular " +"style of concentrate in is a thin sheet and shatters like glass at room " +"temperature. Argueably its one of the better styles of concentrate compared" +" to wax, crumble, or distilate. Normal cannabis contains around 20%THC, " +"this shatter should be around 55%THC." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "ravioli entree" -msgid_plural "ravioli entrees" +msgid "high quality wax" +msgid_plural "high quality wax" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ravioli entree +#. ~ Use action activation_message for high quality wax. +#: lang/json/COMESTIBLE_from_json.py +msgid "You take a dab of some wax. *cough cough* good stuff!" +msgstr "" + +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py +#, no-python-format msgid "" -"The ravioli entree from an MRE. Sterilized using radiation, so it's safe to" -" eat. Exposed to the atmosphere, it has started to go bad." +"Concentrated cannabis extract, commonly known as dabs. This particular " +"style of concentrate has the look and consistency of a yellow waxy substance" +" at room temperature. Normal cannabis contains around 20%THC, this wax " +"should be around 45%THC." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pepper jack beef entree" -msgid_plural "pepper jack beef entrees" +msgid "high quality crude oil" +msgid_plural "high quality crude oil" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pepper jack beef entree +#. ~ Use action activation_message for high quality crude oil. +#: lang/json/COMESTIBLE_from_json.py +msgid "You smoke some bad dabs. Not a good idea." +msgstr "" + +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" -"The pepper jack beef entree from an MRE. Sterilized using radiation, so " -"it's safe to eat. Exposed to the atmosphere, it has started to go bad." +"This is high quality concentrated oil derived from cannabis. It still has " +"some residual solvents in it so it needs to be purged in a vacuum oven, " +"whipped over a heated surface, or distilled before it is safe to consume." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hash browns & bacon entree" -msgid_plural "hash browns & bacon entrees" +msgid "low quality crude oil" +msgid_plural "low quality crude oil" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hash browns & bacon entree +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. +#: lang/json/COMESTIBLE_from_json.py +msgid "You smoke some really bad dabs. Not a good idea." +msgstr "" + +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" -"The hash browns & bacon entree from an MRE. Sterilized using radiation, so " -"it's safe to eat. Exposed to the atmosphere, it has started to go bad." +"This is low quality concentrated oil derived from cannabis. It still has " +"some residual solvents in it so it needs to be purged in a vacuum oven, " +"whipped over a heated surface, or distilled before it is safe to consume." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lemon pepper tuna entree" -msgid_plural "lemon pepper tuna entrees" +msgid "(ethanol) low quality crude oil" +msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lemon pepper tuna entree +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" -"The lemon pepper tuna entree from an MRE. Sterilized using radiation, so " -"it's safe to eat. Exposed to the atmosphere, it has started to go bad." +"This is low quality concentrated oil derived from cannabis thats been " +"diluted in ethanol and heated over a hotplate. The next step would be to " +"filter it through a buchner flask." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "asian beef & vegetables entree" -msgid_plural "asian beef & vegetables entrees" +msgid "(ethanol) high quality crude oil" +msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for asian beef & vegetables entree +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" -"The Asian beef & vegetables entree from an MRE. Sterilized using radiation," -" so it's safe to eat. Exposed to the atmosphere, it has started to go bad." +"This is high quality concentrated oil derived from cannabis thats been " +"diluted in ethanol and heated over a hotplate. The next step would be to " +"filter it through a buchner flask." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chicken pesto & pasta entree" -msgid_plural "chicken pesto & pasta entrees" +msgid "(ethanol) filtered low quality crude oil" +msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chicken pesto & pasta entree +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" -"The chicken pesto & pasta entree from an MRE. Sterilized using radiation, " -"so it's safe to eat. Exposed to the atmosphere, it has started to go bad." +"This is low quality concentrated oil derived from cannabis thats been " +"diluted in ethanol, heated over a hotplate, and filtered through a buchner " +"flask. The next step would be to run it through a rotovap." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "southwest beef & beans entree" -msgid_plural "southwest beef & beans entrees" +msgid "(ethanol) filtered high quality crude oil" +msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for southwest beef & beans entree +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" -"The southwest beef & beans entree from an MRE. Sterilized using radiation, " -"so it's safe to eat. Exposed to the atmosphere, it has started to go bad." +"This is high quality concentrated oil derived from cannabis thats been " +"diluted in ethanol, heated over a hotplate, and filtered through a buchner " +"flask. The next step would be to run it through a rotovap." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "frankfurters & beans entree" -msgid_plural "frankfurters & beans entrees" +msgid "filtered low quality crude oil" +msgid_plural "filtered low quality crude oil" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for frankfurters & beans entree +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" -"The dreaded four fingers of death. It seems to be several decades old. " -"Sterilized using radiation, so it's safe to eat. Exposed to the atmosphere," -" it has started to go bad." +"This is low quality concentrated oil derived from cannabis thats been " +"diluted in ethanol, heated over a hotplate, filtered through a buchner " +"flask, and all the ethanol recovered using a rotary evaporator. It is ready" +" for the distillation." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked mushroom" -msgid_plural "cooked mushrooms" +msgid "filtered high quality crude oil" +msgid_plural "filtered high quality crude oil" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked mushroom +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py -msgid "A tasty cooked wild mushroom." +msgid "" +"This is high quality concentrated oil derived from cannabis thats been " +"diluted in ethanol, heated over a hotplate, filtered through a buchner " +"flask, and all the ethanol recovered using a rotary evaporator. It is ready" +" for the distillation." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "morel mushroom" -msgid_plural "morel mushrooms" +msgid "high quality distillate (heads)" +msgid_plural "high quality distillate (heads)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for morel mushroom +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" -"Prized by chefs and woodsmen alike, morel mushrooms are delicious but must " -"be cooked before they are safe to eat." +"Concentrated cannabis extract. This is the 'heads' portion from a distilled" +" batch of crude oil. It still needs to be ran through a lab grade still one" +" more time before its a finished product." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked morel mushroom" -msgid_plural "cooked morel mushrooms" +msgid "high quality distillate (tails)" +msgid_plural "high quality distillate (tails)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked morel mushroom +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py -msgid "A tasty cooked morel mushroom." +msgid "" +"Concentrated cannabis extract. This material is the 'tails' portion from a " +"distilled batch of crude oil. It needs to be ran through a lab grade still " +"another time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fried morel mushroom" -msgid_plural "fried morel mushrooms" +msgid "high quality distillate" +msgid_plural "high quality distillate" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fried morel mushroom +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious serving of fried morsels of morel mushroom." +msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "" +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py -msgid "dried mushroom" -msgid_plural "dried mushrooms" +#, no-python-format +msgid "" +"Concentrated cannabis extract. This style of extract goes through the most " +"processing, eliminating most if not all harmful ingredients. Normal " +"cannabis contains around 20%THC, this distillate should be around 88%THC. " +"Can be smoked in a bowl, used in a dab pen, or used to make distillate " +"cartridges." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "high quality distillate cartridge" +msgid_plural "high quality distillate cartridges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dried mushroom +#. ~ Use action activation_message for high quality distillate cartridge. #: lang/json/COMESTIBLE_from_json.py -msgid "Dried mushrooms are a tasty and healthy addition to many meals." +msgid "You hit your dab pen. Sooooo smooth…" msgstr "" +#. ~ Description for high quality distillate cartridge #: lang/json/COMESTIBLE_from_json.py -msgid "mushroom" -msgid_plural "mushrooms" +#, no-python-format +msgid "" +"A small cartridge containing concentrated cannabis extract thats used with " +"dab pens. This style of extract goes through the most processing, " +"eliminating most if not all harmful ingredients. Normal cannabis contains " +"around 20%THC, this distillate should be around 70%THC after reintroducing " +"terpenes for flavoring." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "electronic cigarette" +msgid_plural "electronic cigarettes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mushroom +#. ~ Description for electronic cigarette #: lang/json/COMESTIBLE_from_json.py msgid "" -"Mushrooms are tasty, but be careful. Some can poison you, while others are " -"hallucinogenic." +"This battery-operated device vaporizes a liquid that contains flavorings and" +" nicotine. A less harmful alternative to traditional cigarettes, but it's " +"still addictive. It can't be reused once it's empty." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "abstract mutagen flavor" -msgid_plural "abstract mutagen flavors" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "saline eye drop" +msgid_plural "saline eye drops" +msgstr[0] "очні краплі із фізрозчином" +msgstr[1] "очних крапель із фізрозчином" +msgstr[2] "очних крапель із фізрозчином" +msgstr[3] "очні краплі із фізрозчином" -#. ~ Description for abstract mutagen flavor +#. ~ Description for saline eye drop #: lang/json/COMESTIBLE_from_json.py -msgid "A rare substance of uncertain origins. Causes you to mutate." +msgid "" +"Sterile saline eye drops. Can be used to treat dry eyes, or to wash out " +"contaminants." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "abstract iv mutagen flavor" -msgid_plural "abstract iv mutagen flavors" +msgid "flu shot" +msgid_plural "flu shots" +msgstr[0] "щеплення від грипу" +msgstr[1] "щеплення від грипу" +msgstr[2] "щеплень від грипу" +msgstr[3] "щеплення від грипу" + +#. ~ Description for flu shot +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Pharmaceutical flu shot designed for mass vaccinations, still in the " +"packaging. Purported to provide immunity to influenza, for the flu season " +"for which it was developed." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "chewing gum" +msgid_plural "chewing gum" +msgstr[0] "жувальна гумка" +msgstr[1] "жувальна гумка" +msgstr[2] "жувальна гумка" +msgstr[3] "жувальні гумки" + +#. ~ Description for chewing gum +#: lang/json/COMESTIBLE_from_json.py +msgid "Bright pink sugar-free chewing gum." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "hand-rolled cigarette" +msgid_plural "hand-rolled cigarettes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for abstract iv mutagen flavor +#. ~ Description for hand-rolled cigarette #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen. You need a syringe to inject it… if you " -"really want to?" +"A roll-your-own made from tobacco and rolling paper. Stimulates mental " +"acuity and reduces appetite. Despite being hand crafted, it's still highly " +"addictive and hazardous to health." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutagenic serum" -msgid_plural "mutagenic serums" +msgid "heroin" +msgid_plural "heroin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Use action activation_message for heroin. +#. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py -msgid "alpha serum" -msgid_plural "alpha serum" +msgid "You shoot up." +msgstr "" + +#. ~ Description for heroin +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"An extremely strong opioid narcotic derived from morphine. Incredibly " +"addictive, the risk of overdose is extreme, and the drug is contraindicated " +"for nearly all medical purposes." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "potassium iodide tablet" +msgid_plural "potassium iodide tablets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Use action activation_message for potassium iodide tablet. +#: lang/json/COMESTIBLE_from_json.py +msgid "You take some potassium iodide." +msgstr "Ви прийняли йодид калію." + +#. ~ Description for potassium iodide tablet #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen strongly resembling blood. You need a syringe " -"to inject it… if you really want to?" +"Potassium iodide tablets. If taken prior to exposure, they help to mitigate" +" injury caused by radiation absorption." +msgstr "" +"Таблетки йодиду калію. Якщо прийняти їх до опромінення, то вони допоможуть " +"пом'якшити негативні ефекти, що повязані із поглинанням радіації." + +#: lang/json/COMESTIBLE_from_json.py lang/json/GENERIC_from_json.py +msgid "joint" +msgid_plural "joints" +msgstr[0] "косячок" +msgstr[1] "косячки" +msgstr[2] "косячків" +msgstr[3] "косячки" + +#. ~ Description for joint +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Marijuana, cannabis, pot. Whatever you want to call it, it's rolled up in a" +" piece of paper and ready for smokin'." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "beast serum" -msgid_plural "beast serums" +msgid "pink tab" +msgid_plural "pink tabs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for beast serum +#. ~ Use action activation_message for pink tab. +#: lang/json/COMESTIBLE_from_json.py +msgid "You eat the pink tablet." +msgstr "" + +#. ~ Description for pink tab #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen as red as a matador's cape. You need a syringe" -" to inject it… if you really want to?" +"Tiny pink tabs resembling postage stamps, already dosed with some sort of " +"drug. Really only useful for entertainment. Will cause hallucinations." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bird serum" -msgid_plural "bird serums" -msgstr[0] "сироватка птаха" -msgstr[1] "сироватки птаха" -msgstr[2] "сироватки птаха" -msgstr[3] "сироватка птаха" +msgid "medical gauze" +msgid_plural "medical gauzes" +msgstr[0] "медична марля" +msgstr[1] "медична марля" +msgstr[2] "медична марля" +msgstr[3] "медична марля" -#. ~ Description for bird serum +#. ~ Description for medical gauze #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen the color of the pre-Cataclysmic skies. You " -"need a syringe to inject it… if you really want to?" +"This is decent sized piece of cotton, sterilized and sealed. It's designed " +"for medical purposes." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cattle serum" -msgid_plural "cattle serums" +msgid "low-grade methamphetamine" +msgid_plural "low-grade methamphetamine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cattle serum +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen the color of grass. You need a syringe to " -"inject it… if you really want to?" +"A profoundly addictive and powerful stimulant. While extremely effective at" +" enhancing alertness, it is hazardous to health and the risk of an adverse " +"reaction is great." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cephalopod serum" -msgid_plural "cephalopod serums" +msgid "high-grade methamphetamine" +msgid_plural "high-grade methamphetamine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cephalopod serum +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen as black as ink. You need a syringe to inject " -"it… if you really want to?" +"A profoundly addictive and powerful stimulant. While extremely effective at" +" enhancing alertness, it is hazardous to health and the risk of an adverse " +"reaction is great. This one could have only been made by a great chemist." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chimera serum" -msgid_plural "chimera serums" +msgid "morphine" +msgid_plural "morphines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chimera serum +#. ~ Description for morphine #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen that churns with iridescence. You need a " -"syringe to inject it… if you really want to?" +"A very strong, naturally-occurring narcotic used to treat intense pain in " +"hospital settings. This injectable drug is very addictive." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "elf-a serum" -msgid_plural "elf-a serums" +msgid "mugwort oil" +msgid_plural "mugwort oils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for elf-a serum +#. ~ Description for mugwort oil #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen that's a striking sylvan green. You need a " -"syringe to inject it… if you really want to?" +"Some essential oil made from mugwort, which may kill parasites when " +"ingested. Consume it with water!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "feline serum" -msgid_plural "feline serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "nicotine gum" +msgid_plural "nicotine gums" +msgstr[0] "нікотинова жувальна гумка" +msgstr[1] "нікотинові жувальні гумки" +msgstr[2] "нікотинових жувальних гумок" +msgstr[3] "нікотинова жувальна гумка" -#. ~ Description for feline serum +#. ~ Description for nicotine gum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen, yellow and highly reflective. You need a " -"syringe to inject it… if you really want to?" +"Mint flavored sugar-free nicotine chewing gum. For smokers who desire to " +"quit." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fish serum" -msgid_plural "fish serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "cough syrup" +msgid_plural "cough syrup" +msgstr[0] "сироп від кашлю" +msgstr[1] "сиропу від кашлю" +msgstr[2] "сиропу від кашлю" +msgstr[3] "сироп від кашлю" -#. ~ Description for fish serum +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen the color of the ocean, with white foam at the " -"top. You need a syringe to inject it… if you really want to?" +"Nighttime cold and flu medication. Useful when trying to sleep with a head " +"full of virions. Will cause drowsiness." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "insect serum" -msgid_plural "insect serums" +msgid "oxycodone" +msgid_plural "oxycodones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for insect serum +#. ~ Use action activation_message for oxycodone. +#: lang/json/COMESTIBLE_from_json.py +msgid "You take some oxycodone." +msgstr "" + +#. ~ Description for oxycodone #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen that's a beautiful amber color. You need a " -"syringe to inject it… if you really want to?" +"A strong semi-synthetic narcotic used in the treatment of intense pain. " +"Highly addictive." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lizard serum" -msgid_plural "lizard serums" +msgid "sleeping pill" +msgid_plural "sleeping pill" +msgstr[0] "снодійна пігулка" +msgstr[1] "снодійні пігулки" +msgstr[2] "снодійних пігулок" +msgstr[3] "снодійні пігулки" + +#. ~ Description for sleeping pill +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A habit-forming tranquilizer with a variety of psychoactive side effects. " +"Used in the treatment of insomnia." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "poppy painkiller" +msgid_plural "poppy painkillers" +msgstr[0] "макове знеболююче" +msgstr[1] "макового знеболюючого" +msgstr[2] "макового знеболюючого" +msgstr[3] "макове знеболююче" + +#. ~ Use action activation_message for poppy painkiller. +#: lang/json/COMESTIBLE_from_json.py +msgid "You take some poppy painkiller." +msgstr "Ви прийняли трохи макового знеболюючого." + +#. ~ Description for poppy painkiller +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Potent opioid palliative produced by the refining of the mutated poppy. " +"Notably devoid of euphoric or sedative effects, as an opiate it may still be" +" addictive." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "poppy sleep" +msgid_plural "poppy sleeps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lizard serum +#. ~ Description for poppy sleep #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen that shifts between various shades of green. " -"You need a syringe to inject it… if you really want to?" +"A potent sleep aid extracted from mutated poppy seeds. Effective, but as an" +" opiate, it may be addictive." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lupine serum" -msgid_plural "lupine serums" +msgid "poppy cough syrup" +msgid_plural "poppy cough syrup" +msgstr[0] "маковий сироп від кашлю" +msgstr[1] "макового сиропу від кашлю" +msgstr[2] "макового сиропу від кашлю" +msgstr[3] "маковий сироп від кашлю" + +#. ~ Description for poppy cough syrup +#: lang/json/COMESTIBLE_from_json.py +msgid "Cough syrup made from mutated poppy. Will make you sleepy." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "injectable prophylactic antivenom" +msgid_plural "injectable prophylactic antivenom" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lupine serum +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen as white as a full moon. You need a syringe to" -" inject it… if you really want to?" +"You inject a vial of prophylactic antivenom into your arm. You feel a bit " +"queasy." msgstr "" +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py -msgid "medical serum" -msgid_plural "medical serums" +msgid "" +"An experimental, cutting-edge antivenom in the form of some small amber " +"vials, designed to be injected a few hours before venom exposure. It was " +"developed in top secret by the military in response to increasing " +"biological/chemical warfare." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "antidepressant" +msgid_plural "antidepressant" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for medical serum +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen that looks like a mixture of bodily fluids. " -"You need a syringe to inject it… if you really want to?" +"A common and popular antidepressant. It will elevate mood, and can " +"profoundly affect the action of other drugs. It is only rarely habit-" +"forming, though adverse reactions are not uncommon." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "plant serum" -msgid_plural "plant serums" -msgstr[0] "сироватка рослини" -msgstr[1] "сироватки рослини" -msgstr[2] "сироватки рослини" -msgstr[3] "сироватка рослини" +msgid "Prussian blue tablet" +msgid_plural "Prussian blue tablets" +msgstr[0] "таблетка берлінської лазурі" +msgstr[1] "таблетки берлінської лазурі" +msgstr[2] "таблеток берлінської лазурі" +msgstr[3] "таблетки берлінської лазурі" -#. ~ Description for plant serum +#. ~ Use action activation_message for Prussian blue tablet. +#: lang/json/COMESTIBLE_from_json.py +msgid "You take some Prussian blue." +msgstr "Ви прийняли таблетку берлінської лазурі." + +#. ~ Description for Prussian blue tablet #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen that looks like pureed spinach. You need a " -"syringe to inject it… if you really want to?" +"Tablets containing oxidized ferrous ferrocyanide salts. Capable of purging " +"nuclear contaminants from the body if taken after radiation exposure." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raptor serum" -msgid_plural "raptor serums" +msgid "hemostatic powder" +msgid_plural "hemostatic powder" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raptor serum +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen that seems to shift slightly whenever you look " -"at it. You need a syringe to inject it… if you really want to?" +"A powdered antihemorrhagic compound that reacts with blood to immediately " +"form a gel-like substance that stops bleeding." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rat serum" -msgid_plural "rat serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "saline solution" +msgid_plural "saline solutions" +msgstr[0] "фізрозчин" +msgstr[1] "фізрозчин" +msgstr[2] "фізрозчин" +msgstr[3] "фізрозчин" -#. ~ Description for rat serum +#. ~ Description for saline solution #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen that's a rather unappealing beige. You need a " -"syringe to inject it… if you really want to?" +"A solution of sterilized water and salt for intravenous infusion or washing " +"contaminants from one's eyes." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "slime serum" -msgid_plural "slime serums" +msgid "antipsychotic" +msgid_plural "antipsychotic" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for slime serum +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen that looks very much like the black ooze in the" -" zombies' eyes. You need a syringe to inject it… if you really want to?" +"Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" +" hallucinations and other symptoms of psychosis. Carries a sedative effect." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "spider serum" -msgid_plural "spider serums" +msgid "thyme oil" +msgid_plural "thyme oils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for spider serum +#. ~ Description for thyme oil #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with pale filaments suspended in it. You need " -"a syringe to inject it… if you really want to?" +"Some essential oil made from thyme, which can act as a mildly irritating " +"antiseptic." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "snail serum" -msgid_plural "snail serums" +msgid "rolling tobacco" +msgid_plural "rolling tobaccos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for snail serum +#. ~ Use action activation_message for rolling tobacco. +#: lang/json/COMESTIBLE_from_json.py +msgid "You smoke some tobacco." +msgstr "" + +#. ~ Description for rolling tobacco #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with the consistency of snot. You need a " -"syringe to inject it… if you really want to?" +"Loose, fine-cut tobacco leaves. Popular in Europe and among hipsters. Highly addictive and hazardous to health.\n" +"Can either be rolled into a cigarette with some rolling papers or smoked through a pipe." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "batrachian serum" -msgid_plural "batrachian serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "tramadol" +msgid_plural "tramadols" +msgstr[0] "трамадол" +msgstr[1] "трамадолу" +msgstr[2] "трамадолу" +msgstr[3] "трамадол" -#. ~ Description for batrachian serum +#. ~ Use action activation_message for tramadol. +#: lang/json/COMESTIBLE_from_json.py +msgid "You take some tramadol." +msgstr "Ви прийняли трамадол." + +#. ~ Description for tramadol #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A painkiller used to manage moderate pain. The effects last for several " +"hours, but are relatively subdued for an opioid." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "troglobite serum" -msgid_plural "troglobite serums" +msgid "gamma globulin shot" +msgid_plural "gamma globulin shots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for troglobite serum +#. ~ Description for gamma globulin shot #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen that seems to recoil from the light. You need " -"a syringe to inject it… if you really want to?" +"This immunoglobulin booster contains concentrated antibodies prepared for " +"intravenous injection to temporarily strengthen the immune system. It is " +"still in its original packaging." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "ursine serum" -msgid_plural "ursine serums" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "multivitamin" +msgid_plural "multivitamins" +msgstr[0] "мультивітаміни" +msgstr[1] "мультивітамінів" +msgstr[2] "мультивітамінів" +msgstr[3] "мультивітамінів" -#. ~ Description for ursine serum +#. ~ Use action activation_message for multivitamin. +#. ~ Use action activation_message for calcium tablet. +#. ~ Use action activation_message for bone meal tablet. +#. ~ Use action activation_message for flavored bone meal tablet. +#: lang/json/COMESTIBLE_from_json.py +#, no-python-format +msgid "You take the %s." +msgstr "Ви прийняли %s." + +#. ~ Description for multivitamin #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen that's the color of honey, and is just as " -"thick. You need a syringe to inject it… if you really want to?" +"Essential dietary nutrients conveniently packaged in pill form. An option " +"of last resort when a balanced diet is not possible. Excess use can cause " +"hypervitaminosis." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mouse serum" -msgid_plural "mouse serums" +msgid "calcium tablet" +msgid_plural "calcium tablets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mouse serum +#. ~ Description for calcium tablet #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen resembling liquefied metal. You need a syringe" -" to inject it… if you really want to?" +"White calcium tablets. Widely used by elderly people with osteoporosis as a" +" method to supplement calcium before the apocalypse." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutagen" -msgid_plural "mutagens" +msgid "bone meal tablet" +msgid_plural "bone meal tablets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for bone meal tablet #: lang/json/COMESTIBLE_from_json.py -msgid "congealed blood" -msgid_plural "congealed bloods" +msgid "" +"Homemade calcium supplement made out of bone meal. Tastes horrible and is " +"hard to swallow but it does its job." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "flavored bone meal tablet" +msgid_plural "flavored bone meal tablets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for congealed blood +#. ~ Description for flavored bone meal tablet #: lang/json/COMESTIBLE_from_json.py msgid "" -"A thick, soupy red liquid. It looks and smells disgusting, and seems to " -"bubble with an intelligence of its own…" +"Homemade calcium supplement made out of bone meal. Due to some sweetness " +"mixed in to counteract the powdery texture and the taste of ash, it's almost" +" as palatable as the pre-Cataclysm tablets." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "alpha mutagen" -msgid_plural "alpha mutagen" +msgid "gummy vitamin" +msgid_plural "gummy vitamins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alpha mutagen'} -#. ~ Description for chimera mutagen -#. ~ Description for elf-a mutagen -#. ~ Description for raptor mutagen +#. ~ Description for gummy vitamin #: lang/json/COMESTIBLE_from_json.py -msgid "An extremely rare mutagen cocktail." -msgstr "Надзвичайно рідкісна мутагенна суміш." - -#: lang/json/COMESTIBLE_from_json.py -msgid "beast mutagen" -msgid_plural "beast mutagens" -msgstr[0] "мутаген звірюки" -msgstr[1] "мутагену звірюки" -msgstr[2] "мутагену звірюки" -msgstr[3] "мутаген звірюки" - -#: lang/json/COMESTIBLE_from_json.py -msgid "bird mutagen" -msgid_plural "bird mutagens" -msgstr[0] "мутаген птаха" -msgstr[1] "мутагену птаха" -msgstr[2] "мутагену птаха" -msgstr[3] "мутаген птаха" +msgid "" +"Essential dietary nutrients conveniently packaged in a fruit-flavored chewy " +"candy form. An option of last resort when a balanced diet is not possible." +" Excess use can cause hypervitaminosis." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cattle mutagen" -msgid_plural "cattle mutagens" -msgstr[0] "мутаген бика" -msgstr[1] "мутагену бика" -msgstr[2] "мутагену бика" -msgstr[3] "мутаген бика" +msgid "homeopathic pill" +msgid_plural "homeopathic pills" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Use action activation_message for homeopathic pill. #: lang/json/COMESTIBLE_from_json.py -msgid "cephalopod mutagen" -msgid_plural "cephalopod mutagens" -msgstr[0] "мутаген молюска" -msgstr[1] "мутагену молюска" -msgstr[2] "мутагену молюска" -msgstr[3] "мутаген молюска" +#, no-python-format +msgid "You swallow the %s. You wait in anticipation of its effects." +msgstr "" +#. ~ Description for homeopathic pill #: lang/json/COMESTIBLE_from_json.py -msgid "chimera mutagen" -msgid_plural "chimera mutagens" -msgstr[0] "мутаген химери" -msgstr[1] "мутагену химери" -msgstr[2] "мутагену химери" -msgstr[3] "мутаген химери" +msgid "" +"Some homeopathic pills, prepared through the repeated dilution of an active " +"ingredient with water. The label purports that these pills are able to " +"maintain general wellness." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "elf-a mutagen" -msgid_plural "elf-a mutagens" -msgstr[0] "мутаген эльф-а" -msgstr[1] "мутагену эльф-а" -msgstr[2] "мутагену эльф-а" -msgstr[3] "мутаген эльф-а" +msgid "" +"Some Oscillococcinum homeopathic pills, prepared through the dilution of one" +" part duck offal with 10^400 parts water. The label purports that these " +"pills are able to treat flu-like symptoms and maintain general wellness." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "feline mutagen" -msgid_plural "feline mutagens" -msgstr[0] "мутаген кішки" -msgstr[1] "мутагену кішки" -msgstr[2] "мутагену кішки" -msgstr[3] "мутаген кішки" +msgid "" +"Some Arsenicum album homeopathic pills, prepared through the dilution of one" +" part arsenic trioxide with 10^24 parts water. These pills are meant to " +"treat anxiety, various digestive disorders, and arsenic poisoning." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fish mutagen" -msgid_plural "fish mutagens" -msgstr[0] "мутаген риби" -msgstr[1] "мутагену риби" -msgstr[2] "мутагену риби" -msgstr[3] "мутаген риби" +msgid "" +"Some Allium cepa homeopathic pills, prepared through the dilution of one " +"part onion with 10^30 parts water. The label states that these pills can " +"ameliorate symptoms of asthma, gastrointestinal disorders, and bronchitis. " +"You briefly wonder if they may cure fungal infections." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "insect mutagen" -msgid_plural "insect mutagens" -msgstr[0] "мутаген комахи" -msgstr[1] "мутагену комахи" -msgstr[2] "мутагену комахи" -msgstr[3] "мутаген комахи" +msgid "" +"Some Arum tryphillum homeopathic pills, prepared through the dilution of the" +" jack-in-the-pulpit plant with 10^30 parts water. The label claims that the" +" pills are able to treat voice loss." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lizard mutagen" -msgid_plural "lizard mutagens" -msgstr[0] "мутаген ящірки" -msgstr[1] "мутагену ящірки" -msgstr[2] "мутагену ящірки" -msgstr[3] "мутаген ящірки" +msgid "" +"Some Aesculus hippocastanum homeopathic pills, prepared through the dilution" +" of horse chestnut with 10^30 parts water. These pills are meant to treat " +"dysentry and hemorrhoids." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lupine mutagen" -msgid_plural "lupine mutagens" -msgstr[0] "мутаген вовка" -msgstr[1] "мутагену вовка" -msgstr[2] "мутагену вовка" -msgstr[3] "мутаген вовка" +msgid "" +"Some Lachesis mutus pills, prepared through the dilution of the venom of the" +" bushmaster snake with 10^1000 parts water. These pills are claimed to be " +"an effective treatment for sore throat." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "medical mutagen" -msgid_plural "medical mutagens" -msgstr[0] "мутаген медичний" -msgstr[1] "мутагену медичного" -msgstr[2] "мутагену медичного" -msgstr[3] "мутаген медичний" +msgid "injectable vitamin B" +msgid_plural "injectable vitamin Bs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Use action activation_message for injectable vitamin B. #: lang/json/COMESTIBLE_from_json.py -msgid "plant mutagen" -msgid_plural "plant mutagens" -msgstr[0] "мутаген рослини" -msgstr[1] "мутагену рослини" -msgstr[2] "мутагену рослини" -msgstr[3] "мутаген рослини" +msgid "You inject some vitamin B." +msgstr "" +#. ~ Description for injectable vitamin B #: lang/json/COMESTIBLE_from_json.py -msgid "raptor mutagen" -msgid_plural "raptor mutagens" -msgstr[0] "мутаген раптора" -msgstr[1] "мутагену раптора" -msgstr[2] "мутагену раптора" -msgstr[3] "мутаген раптора" +msgid "" +"Small vials of pale yellow liquid containing soluble vitamin B for " +"injection." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rat mutagen" -msgid_plural "rat mutagens" -msgstr[0] "мутаген щура" -msgstr[1] "мутагену щура" -msgstr[2] "мутагену щура" -msgstr[3] "мутаген щура" +msgid "injectable iron" +msgid_plural "injectable irons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Use action activation_message for injectable iron. #: lang/json/COMESTIBLE_from_json.py -msgid "slime mutagen" -msgid_plural "slime mutagens" -msgstr[0] "мутаген слимака" -msgstr[1] "мутагену слимака" -msgstr[2] "мутагену слимака" -msgstr[3] "мутаген слимака" +msgid "You inject some iron." +msgstr "" +#. ~ Description for injectable iron #: lang/json/COMESTIBLE_from_json.py -msgid "spider mutagen" -msgid_plural "spider mutagens" -msgstr[0] "мутаген павука" -msgstr[1] "мутагену павука" -msgstr[2] "мутагену павука" -msgstr[3] "мутаген павука" +msgid "" +"Small vials of dark yellow liquid containing soluble iron for injection." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "batrachian mutagen" -msgid_plural "batrachian mutagens" +msgid "marijuana" +msgid_plural "marijuana" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for batrachian mutagen +#. ~ Use action activation_message for marijuana. +#: lang/json/COMESTIBLE_from_json.py +msgid "You smoke some weed. Good stuff, man!" +msgstr "" + +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"The dried flower buds and leaves harvested from a psychoactive variety of " +"hemp plant. Used to reduce nausea, stimulate appetite and elevate mood. It" +" can be habit-forming, and adverse reactions are possible." msgstr "" +"Висушені квітки й листя психотропних сортів коноплі. Використовуються для " +"пригнічення нудоти, стимуляції апетиту і підняття настрою. Може вкликати " +"звикання, також можливі побічні реакції." #: lang/json/COMESTIBLE_from_json.py -msgid "snail mutagen" -msgid_plural "snail mutagens" +msgid "fast-acting sedative" +msgid_plural "fast-acting sedative" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for snail mutagen +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" -"A mutagen that looks awfully like the slime from an old children's network." +"Anti-anxiety agent with a powerful sedative effect. May cause dissociation " +"and loss of memory. It is dangerously addictive, and withdrawal from " +"regular use should be gradual." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "troglobite mutagen" -msgid_plural "troglobite mutagens" -msgstr[0] "мутаген троглобіонта" -msgstr[1] "мутагену троглобіонта" -msgstr[2] "мутагену троглобіонта" -msgstr[3] "мутаген троглобіонта" - -#: lang/json/COMESTIBLE_from_json.py -msgid "ursine mutagen" -msgid_plural "ursine mutagens" -msgstr[0] "мутаген ведмедя" -msgstr[1] "мутагену ведмедя" -msgstr[2] "мутагену ведмедя" -msgstr[3] "мутаген ведмедя" - -#: lang/json/COMESTIBLE_from_json.py -msgid "mouse mutagen" -msgid_plural "mouse mutagens" -msgstr[0] "мутаген миші" -msgstr[1] "мутагену миші" -msgstr[2] "мутагену миші" -msgstr[3] "мутаген миші" - -#: lang/json/COMESTIBLE_from_json.py -msgid "rabbit serum" -msgid_plural "rabbit serums" +msgid "antiseptic soaked rag" +msgid_plural "antiseptic soaked rags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rabbit serum +#. ~ Description for antiseptic soaked rag #: lang/json/COMESTIBLE_from_json.py msgid "" -"An orange colored serum. You need a syringe to inject it… if you really " -"want to?" +"A rag soaked in antiseptic. Useful for light wounds, probably won't help " +"with deep bites." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rabbit mutagen" -msgid_plural "rabbit mutagens" +msgid "antiseptic soaked cotton balls" +msgid_plural "antiseptic soaked cotton balls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rabbit mutagen +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" -"A white, clear colored mutagen. You can drink it… if you really want to?" +"Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " +"somewhat useful to disinfect a wound." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "purifier" -msgid_plural "purifiers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "narrow-spectrum antibiotics" +msgid_plural "narrow-spectrum antibiotics" +msgstr[0] "антибіотик вузького спектру дії" +msgstr[1] "антибіотику вузького спектру дії" +msgstr[2] "антибіотику вузького спектру дії" +msgstr[3] "антибіотик вузького спектру дії" -#. ~ Description for purifier +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" -"A rare stem-cell treatment that causes mutations and other genetic defects " -"to fade away." +"A narrow-spectrum antibiotic used to suppress infections and prevent them " +"from spreading. It isn't broad enough to purge most infections outright, " +"but it boosts the body's resistance against them. One dose lasts twelve " +"hours." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "purifier serum" -msgid_plural "purifier serums" +msgid "heartburn medicine" +msgid_plural "heartburn medicines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for purifier serum +#. ~ Use action activation_message for heartburn medicine. +#: lang/json/COMESTIBLE_from_json.py +msgid "You take some heartburn medicine." +msgstr "" + +#. ~ Description for heartburn medicine #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated stem cell treatment. You need a syringe to inject it." +"Creamy pink heartburn syrup that soothes upset stomachs and quells vomitous " +"urges." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "purifier smart shot" -msgid_plural "purifier smart shots" +msgid "Panaceus" +msgid_plural "Panaceii" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for purifier smart shot +#. ~ Use action activation_message for Panaceus. +#: lang/json/COMESTIBLE_from_json.py +msgid "You feel AMAZING!" +msgstr "" + +#. ~ Description for Panaceus #: lang/json/COMESTIBLE_from_json.py msgid "" -"An experimental stem cell treatment, offering limited control over which " -"mutations are purified. The liquid sloshes strangely inside of this " -"syringe." +"An apple-red gel capsule the size of your thumbnail, filled with a thick " +"oily liquid that shifts from black to purple at unpredictable intervals, " +"flecked with tiny gray dots. Given the place you got it from, it's either " +"very potent, or highly experimental. Holding it, all the little aches and " +"pains seem to fade, just for a moment…" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "misshapen fetus" -msgid_plural "misshapen fetuses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "cattail jelly" +msgid_plural "cattail jellies" +msgstr[0] "желе із рогозу" +msgstr[1] "желе із рогозу" +msgstr[2] "желе із рогозу" +msgstr[3] "желе із рогозу" -#. ~ Description for misshapen fetus +#. ~ Description for cattail jelly #: lang/json/COMESTIBLE_from_json.py msgid "" -"A deformed human fetus. Eating this would be the most vile thing you can " -"think of, and just might cause you to mutate." +"Clear jelly harvested from cattail, has antiseptic properties and works as a" +" painkiller." msgstr "" +"Прозоре желе, отримане із рогозу. Має антисептичні властивості і може бути " +"використане як знеболююче." #: lang/json/COMESTIBLE_from_json.py -msgid "mutated arm" -msgid_plural "mutated arms" +msgid "broad-spectrum antibiotics" +msgid_plural "broad-spectrum antibiotics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mutated arm +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" -"A misshapen human arm. Eating this would be incredibly disgusting and " -"probably cause you to mutate." +"A broad-spectrum antibacterial medication designed to prevent or stop the " +"spread of infection. It contains nearly toxic levels of antibiotics, but " +"can treat any bacterial infections you may encounter. One dose lasts twelve" +" hours." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mutated leg" -msgid_plural "mutated legs" +msgid "cocaine topical cream" +msgid_plural "cocaine topical cream" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mutated leg +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" -"A malformed human leg. This would be gross to eat, and probably cause " -"mutations." +"A medical cream that provides both vascular restriction and anesthetic " +"properties." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pine nuts" -msgid_plural "pine nuts" +msgid "MRE entree" +msgid_plural "MRE entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for MRE entree #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of tasty crunchy nuts from a pinecone." +msgid "A generic MRE entree, you shouldn't see this." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "junipers" -msgid_plural "junipers" +msgid "chili & beans entree" +msgid_plural "chili & beans entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for chili & beans entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"Junipers, for making gin and achieving earthy flavors. Spicy, tastes " -"similar to rosemary." +"The chili & beans entree from an MRE. Sterilized using radiation, so it's " +"safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "shelled pistachios" -msgid_plural "shelled pistachios" +msgid "BBQ beef entree" +msgid_plural "BBQ beef entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for BBQ beef entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of nuts from a pistachio tree, their shells have been removed." +"The BBQ beef entree from an MRE. Sterilized using radiation, so it's safe " +"to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "roasted pistachios" -msgid_plural "roasted pistachios" +msgid "chicken noodle entree" +msgid_plural "chicken noodle entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted pistachios'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A handful of roasted nuts from a pistachio tree." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "shelled almonds" -msgid_plural "shelled almonds" -msgstr[0] "очищений мигдаль" -msgstr[1] "очищений мигдаль" -msgstr[2] "очищений мигдаль" -msgstr[3] "очищений мигдаль" - -#. ~ Description for {'str_sp': 'shelled almonds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A handful of nuts from an almond tree, their shells have been removed." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "almond pulp" -msgid_plural "almond pulp" -msgstr[0] "мигдалевий жмих" -msgstr[1] "мигдалевий жмих" -msgstr[2] "мигдалевий жмих" -msgstr[3] "мигдалевий жмих" - -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for chicken noodle entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"Pulp left over after making almond milk. It's gritty and incredibly bland." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "roasted almonds" -msgid_plural "roasted almonds" -msgstr[0] "смажений мигдаль" -msgstr[1] "смажений мигдаль" -msgstr[2] "смажений мигдаль" -msgstr[3] "смажений мигдаль" - -#. ~ Description for {'str_sp': 'roasted almonds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A handful of roasted nuts from an almond tree." +"The chicken noodle entree from an MRE. Sterilized using radiation, so it's " +"safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cashews" -msgid_plural "cashews" +msgid "spaghetti entree" +msgid_plural "spaghetti entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for spaghetti entree #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of salty cashews." +msgid "" +"The spaghetti entree from an MRE. Sterilized using radiation, so it's safe " +"to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "shelled pecans" -msgid_plural "shelled pecans" +msgid "chicken chunks entree" +msgid_plural "chicken chunks entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for chicken chunks entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of pecans which are a sub-species of hickory nuts, their shells " -"have been removed." +"The chicken chunks entree from an MRE. Sterilized using radiation, so it's " +"safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "roasted pecans" -msgid_plural "roasted pecans" +msgid "beef taco entree" +msgid_plural "beef taco entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for beef taco entree #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of roasted nuts from a pecan tree." +msgid "" +"The beef taco entree from an MRE. Sterilized using radiation, so it's safe " +"to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "shelled peanuts" -msgid_plural "shelled peanuts" +msgid "beef brisket entree" +msgid_plural "beef brisket entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for beef brisket entree #: lang/json/COMESTIBLE_from_json.py -msgid "Salty peanuts, their shells have been removed." +msgid "" +"The beef brisket entree from an MRE. Sterilized using radiation, so it's " +"safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "beech nuts" -msgid_plural "beech nuts" +msgid "meatballs & marinara entree" +msgid_plural "meatballs & marinara entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for meatballs & marinara entree #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of hard pointy nuts from a beech tree." +msgid "" +"The meatballs & marinara entree from an MRE. Sterilized using radiation, so" +" it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "shelled walnuts" -msgid_plural "shelled walnuts" +msgid "beef stew entree" +msgid_plural "beef stew entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for beef stew entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of raw hard nuts from a walnut tree, their shells have been " -"removed." +"The beef stew entree from an MRE. Sterilized using radiation, so it's safe " +"to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "roasted walnuts" -msgid_plural "roasted walnuts" +msgid "chili & macaroni entree" +msgid_plural "chili & macaroni entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for chili & macaroni entree #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of roasted nuts from a walnut tree." +msgid "" +"The chili & macaroni entree from an MRE. Sterilized using radiation, so " +"it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "shelled chestnuts" -msgid_plural "shelled chestnuts" +msgid "vegetarian taco entree" +msgid_plural "vegetarian taco entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for vegetarian taco entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of raw hard nuts from a chestnut tree, their shells have been " -"removed." +"The vegetarian taco entree from an MRE. Sterilized using radiation, so it's" +" safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "roasted chestnuts" -msgid_plural "roasted chestnuts" +msgid "macaroni & marinara entree" +msgid_plural "macaroni & marinara entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for macaroni & marinara entree #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of roasted nuts from a chestnut tree." +msgid "" +"The macaroni & marinara entree from an MRE. Sterilized using radiation, so " +"it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "shelled hazelnuts" -msgid_plural "shelled hazelnuts" +msgid "spinach fettuccine entree" +msgid_plural "spinach fettuccine entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for spinach fettuccine entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of raw hard nuts from a hazelnut tree, their shells have been " -"removed." +"The creamy spinach fettuccine entree from an MRE. Sterilized using " +"radiation, so it's safe to eat. Exposed to the atmosphere, it has started " +"to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "roasted edamame" -msgid_plural "roasted edamame" +msgid "ratatouille entree" +msgid_plural "ratatouille entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for ratatouille entree #: lang/json/COMESTIBLE_from_json.py -msgid "Roasted edamame, a hearty and healthy snack." +msgid "" +"The ratatouille entree from an MRE. Sterilized using radiation, so it's " +"safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "roasted soy nuts" -msgid_plural "roasted soy nuts" +msgid "cheese tortellini entree" +msgid_plural "cheese tortellini entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for cheese tortellini entree #: lang/json/COMESTIBLE_from_json.py -msgid "Roasted soybeans, often called soy nuts." +msgid "" +"The cheese tortellini entree from an MRE. Sterilized using radiation, so " +"it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "roasted hazelnuts" -msgid_plural "roasted hazelnuts" +msgid "mushroom fettuccine entree" +msgid_plural "mushroom fettuccine entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for mushroom fettuccine entree #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of roasted nuts from a hazelnut tree." +msgid "" +"The mushroom fettuccine entree from an MRE. Sterilized using radiation, so " +"it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "shelled hickory nuts" -msgid_plural "shelled hickory nuts" +msgid "Mexican chicken stew entree" +msgid_plural "Mexican chicken stew entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for Mexican chicken stew entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of raw hard nuts from a hickory tree, their shells have been " -"removed." +"The Mexican chicken stew entree from an MRE. Sterilized using radiation, so" +" it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "roasted hickory nuts" -msgid_plural "roasted hickory nuts" +msgid "chicken burrito bowl entree" +msgid_plural "chicken burrito bowl entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for chicken burrito bowl entree #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of roasted nuts from a hickory tree." +msgid "" +"The chicken burrito bowl entree from an MRE. Sterilized using radiation, so" +" it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hickory nut ambrosia" -msgid_plural "hickory nut ambrosias" +msgid "maple sausage entree" +msgid_plural "maple sausage entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hickory nut ambrosia -#: lang/json/COMESTIBLE_from_json.py -msgid "Delicious hickory nut ambrosia. A drink worthy of the gods." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "peanut butter" -msgid_plural "peanut butters" -msgstr[0] "арахісове масло" -msgstr[1] "арахісового масла" -msgstr[2] "арахісового масла" -msgstr[3] "арахісове масло" - -#. ~ Description for peanut butter +#. ~ Description for maple sausage entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"A brown goo that tastes very little like its namesake. It's not bad, but " -"it'll stick to the roof of your mouth." +"The maple sausage entree from an MRE. Sterilized using radiation, so it's " +"safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "imitation peanutbutter" -msgid_plural "imitation peanutbutters" +msgid "ravioli entree" +msgid_plural "ravioli entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for imitation peanutbutter +#. ~ Description for ravioli entree #: lang/json/COMESTIBLE_from_json.py -msgid "A thick, nutty brown paste." +msgid "" +"The ravioli entree from an MRE. Sterilized using radiation, so it's safe to" +" eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "peanut butter spread" -msgid_plural "peanut butter spreads" +msgid "pepper jack beef entree" +msgid_plural "pepper jack beef entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for peanut butter spread -#: lang/json/COMESTIBLE_from_json.py -msgid "Processed peanut butter spread." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "acorns" -msgid_plural "acorns" -msgstr[0] "жолуді" -msgstr[1] "жолудів" -msgstr[2] "жолудів" -msgstr[3] "жолуді" - -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for pepper jack beef entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of acorns, still in their shells. Squirrels like them, but they " -"taste terribly bitter and can upset your stomach." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "roasted acorns" -msgid_plural "roasted acorns" -msgstr[0] "смажені жолуді" -msgstr[1] "смажених жолудів" -msgstr[2] "смажених жолудів" -msgstr[3] "смажені жолуді" - -#. ~ Description for {'str_sp': 'roasted acorns'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A handful roasted nuts from an oak tree." +"The pepper jack beef entree from an MRE. Sterilized using radiation, so " +"it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked acorn meal" -msgid_plural "cooked acorn meal" +msgid "hash browns & bacon entree" +msgid_plural "hash browns & bacon entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for hash browns & bacon entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"A serving of acorns that have been hulled, chopped, and boiled in water " -"before being thoroughly toasted until dry. Filling and nutritious." +"The hash browns & bacon entree from an MRE. Sterilized using radiation, so " +"it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "foie gras" -msgid_plural "foie gras" +msgid "lemon pepper tuna entree" +msgid_plural "lemon pepper tuna entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for lemon pepper tuna entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"Though it's not technically foie gras, you don't have to think about that." +"The lemon pepper tuna entree from an MRE. Sterilized using radiation, so " +"it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "liver & onions" -msgid_plural "liver & onions" +msgid "asian beef & vegetables entree" +msgid_plural "asian beef & vegetables entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for asian beef & vegetables entree #: lang/json/COMESTIBLE_from_json.py -msgid "A classic way to serve liver." +msgid "" +"The Asian beef & vegetables entree from an MRE. Sterilized using radiation," +" so it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fried liver" -msgid_plural "fried livers" +msgid "chicken pesto & pasta entree" +msgid_plural "chicken pesto & pasta entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fried liver -#. ~ Description for deep-fried tripe +#. ~ Description for chicken pesto & pasta entree #: lang/json/COMESTIBLE_from_json.py -msgid "Nothing tastier than something that's deep-fried!" +msgid "" +"The chicken pesto & pasta entree from an MRE. Sterilized using radiation, " +"so it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "humble pie" -msgid_plural "humble pies" +msgid "southwest beef & beans entree" +msgid_plural "southwest beef & beans entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for humble pie +#. ~ Description for southwest beef & beans entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"Also known as 'Umble' pie, made with chopped organ meats. Not half bad, and" -" really good for you!" +"The southwest beef & beans entree from an MRE. Sterilized using radiation, " +"so it's safe to eat. Exposed to the atmosphere, it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "stewed tripe" -msgid_plural "stewed tripes" +msgid "frankfurters & beans entree" +msgid_plural "frankfurters & beans entrees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for stewed tripe +#. ~ Description for frankfurters & beans entree #: lang/json/COMESTIBLE_from_json.py msgid "" -"Stomach lining, cut up and stewed for an hour in broth. Better than it " -"sounds." +"The dreaded four fingers of death. It seems to be several decades old. " +"Sterilized using radiation, so it's safe to eat. Exposed to the atmosphere," +" it has started to go bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deep-fried tripe" -msgid_plural "deep-fried tripes" +msgid "cooked mushroom" +msgid_plural "cooked mushrooms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for cooked mushroom #: lang/json/COMESTIBLE_from_json.py -msgid "leverpostej" -msgid_plural "leverpostej" +msgid "A tasty cooked wild mushroom." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "morel mushroom" +msgid_plural "morel mushrooms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for morel mushroom #: lang/json/COMESTIBLE_from_json.py msgid "" -"A traditional Danish pate. Probably better if you spread it on some bread." +"Prized by chefs and woodsmen alike, morel mushrooms are delicious but must " +"be cooked before they are safe to eat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fried brain" -msgid_plural "fried brains" +msgid "cooked morel mushroom" +msgid_plural "cooked morel mushrooms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fried brain +#. ~ Description for cooked morel mushroom #: lang/json/COMESTIBLE_from_json.py -msgid "I don't know what you were expecting. It's deep-fried." +msgid "A tasty cooked morel mushroom." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deviled kidney" -msgid_plural "deviled kidneys" +msgid "fried morel mushroom" +msgid_plural "fried morel mushrooms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deviled kidney +#. ~ Description for fried morel mushroom #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious way to prepare kidneys." +msgid "A delicious serving of fried morsels of morel mushroom." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "grilled sweetbread" -msgid_plural "grilled sweetbreads" +msgid "dried mushroom" +msgid_plural "dried mushrooms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for grilled sweetbread +#. ~ Description for dried mushroom #: lang/json/COMESTIBLE_from_json.py -msgid "Not sweet, like the name would suggest, but delicious all the same!" +msgid "Dried mushrooms are a tasty and healthy addition to many meals." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned liver" -msgid_plural "canned livers" +msgid "mushroom" +msgid_plural "mushrooms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for canned liver +#. ~ Description for mushroom #: lang/json/COMESTIBLE_from_json.py -msgid "Livers preserved in a can. Chock-full of B vitamins!" +msgid "" +"Mushrooms are tasty, but be careful. Some can poison you, while others are " +"hallucinogenic." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lung provence" -msgid_plural "lung provences" +msgid "abstract mutagen flavor" +msgid_plural "abstract mutagen flavors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lung provence +#. ~ Description for abstract mutagen flavor #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious way to prepare lungs." +msgid "A rare substance of uncertain origins. Causes you to mutate." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tÖttchen" -msgid_plural "tÖttchens" +msgid "abstract iv mutagen flavor" +msgid_plural "abstract iv mutagen flavors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tÖttchen +#. ~ Description for abstract iv mutagen flavor #: lang/json/COMESTIBLE_from_json.py -msgid "A German lung dish." +msgid "" +"A super-concentrated mutagen. You need a syringe to inject it… if you " +"really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "scrambled eggs and brain" -msgid_plural "scrambled eggs and brains" +msgid "mutagenic serum" +msgid_plural "mutagenic serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for scrambled eggs and brain -#: lang/json/COMESTIBLE_from_json.py -msgid "Brains and eggs, why didn't you ever think to put these together?" -msgstr "" - #: lang/json/COMESTIBLE_from_json.py -msgid "sausage casing" -msgid_plural "sausage casings" +msgid "alpha serum" +msgid_plural "alpha serum" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sausage casing +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"Sausage casings made from animal intestines. Ready to be used for forming " -"meat products." +"A super-concentrated mutagen strongly resembling blood. You need a syringe " +"to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "artifical sausage casing" -msgid_plural "artifical sausage casings" +msgid "beast serum" +msgid_plural "beast serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for artifical sausage casing +#. ~ Description for beast serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"Sausage casings made from plastic bags. Ready to be used for forming meat " -"products." +"A super-concentrated mutagen as red as a matador's cape. You need a syringe" +" to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "homemade hot dog" -msgid_plural "homemade hot dogs" +msgid "bird serum" +msgid_plural "bird serums" +msgstr[0] "сироватка птаха" +msgstr[1] "сироватки птаха" +msgstr[2] "сироватки птаха" +msgstr[3] "сироватка птаха" + +#. ~ Description for bird serum +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A super-concentrated mutagen the color of the pre-Cataclysmic skies. You " +"need a syringe to inject it… if you really want to?" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "cattle serum" +msgid_plural "cattle serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for cattle serum #: lang/json/COMESTIBLE_from_json.py -msgid "diet pill" -msgid_plural "diet pills" +msgid "" +"A super-concentrated mutagen the color of grass. You need a syringe to " +"inject it… if you really want to?" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "cephalopod serum" +msgid_plural "cephalopod serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for diet pill +#. ~ Description for cephalopod serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"Not very nutritious. Warning: contains calories, unsuitable for " -"breatharians." +"A super-concentrated mutagen as black as ink. You need a syringe to inject " +"it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "slime glob" -msgid_plural "slime globs" +msgid "chimera serum" +msgid_plural "chimera serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for slime glob +#. ~ Description for chimera serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A little hunk of glop that fell off a slime monster. It doesn't seem " -"hostile, but it does wiggle occasionally." +"A super-concentrated mutagen that churns with iridescence. You need a " +"syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "honey comb" -msgid_plural "honey combs" +msgid "elf-a serum" +msgid_plural "elf-a serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for honey comb +#. ~ Description for elf-a serum #: lang/json/COMESTIBLE_from_json.py -msgid "A large chunk of wax filled with honey. Very tasty." +msgid "" +"A super-concentrated mutagen that's a striking sylvan green. You need a " +"syringe to inject it… if you really want to?" msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/ammunition_type_from_json.py -msgid "wax" -msgid_plural "waxes" -msgstr[0] "віск" -msgstr[1] "воску" -msgstr[2] "воску" -msgstr[3] "віск" +#: lang/json/COMESTIBLE_from_json.py +msgid "feline serum" +msgid_plural "feline serums" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for wax +#. ~ Description for feline serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A large chunk of beeswax. Not very tasty or nourishing, but okay in an " -"emergency." +"A super-concentrated mutagen, yellow and highly reflective. You need a " +"syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "royal jelly" -msgid_plural "royal jellies" +msgid "fish serum" +msgid_plural "fish serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for royal jelly +#. ~ Description for fish serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A translucent hexagonal chunk of wax, filled with dense, milky, bitter and " -"acidic-tasting jelly. Though some hold it as a panacea, it doesn't have any" -" medical benefit. Still it is rich with the most beneficial substances the " -"hive can produce." +"A super-concentrated mutagen the color of the ocean, with white foam at the " +"top. You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "honeydew" -msgid_plural "honeydews" +msgid "insect serum" +msgid_plural "insect serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for honeydew +#. ~ Description for insect serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A sugar-rich sticky substance, produced by aphids from plant sap. Ants and " -"bees love it." +"A super-concentrated mutagen that's a beautiful amber color. You need a " +"syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "marloss berry" -msgid_plural "marloss berries" +msgid "lizard serum" +msgid_plural "lizard serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for marloss berry +#. ~ Description for lizard serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"This looks like a blueberry the size of your fist, but pinkish in color. It" -" has a strong but delicious aroma, but is clearly either mutated or of alien" -" origin." +"A super-concentrated mutagen that shifts between various shades of green. " +"You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "marloss gelatin" -msgid_plural "marloss gelatin" -msgstr[0] "марлесний желатин" -msgstr[1] "марлесний желатин" -msgstr[2] "марлесний желатин" -msgstr[3] "марлесний желатин" +msgid "lupine serum" +msgid_plural "lupine serums" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for lupine serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"This looks like a handful of lemon-colored liquid which has taken a set, " -"much like pre-Cataclysm Jello. It has a strong but delicious aroma, but is " -"clearly either mutated or of alien origin." +"A super-concentrated mutagen as white as a full moon. You need a syringe to" +" inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mycus fruit" -msgid_plural "mycus fruits" +msgid "medical serum" +msgid_plural "medical serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mycus fruit +#. ~ Description for medical serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"Humans might call this a Gray Delicious apple: large, gray, and smells even " -"better than the Marloss. If they didn't reject it for its alien origins. " -"But we know better." +"A super-concentrated mutagen that looks like a mixture of bodily fluids. " +"You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "yeast" -msgid_plural "yeast" -msgstr[0] "дріжджі" -msgstr[1] "дріжджів" -msgstr[2] "дріжджів" -msgstr[3] "дріжджі" +msgid "plant serum" +msgid_plural "plant serums" +msgstr[0] "сироватка рослини" +msgstr[1] "сироватки рослини" +msgstr[2] "сироватки рослини" +msgstr[3] "сироватка рослини" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for plant serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A powder-like mix of cultured yeast, good for baking and brewing alike." +"A super-concentrated mutagen that looks like pureed spinach. You need a " +"syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bone meal" -msgid_plural "bone meal" +msgid "raptor serum" +msgid_plural "raptor serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for raptor serum #: lang/json/COMESTIBLE_from_json.py -msgid "This bone meal can be used to craft fertilizer and some other things." +msgid "" +"A super-concentrated mutagen that seems to shift slightly whenever you look " +"at it. You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "powdered gelatin" -msgid_plural "powdered gelatin" +msgid "rat serum" +msgid_plural "rat serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for rat serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dried and powdered gelatin, used as a gelling agent when mixed with water." +"A super-concentrated mutagen that's a rather unappealing beige. You need a " +"syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fresh gelatin" -msgid_plural "fresh gelatin" +msgid "slime serum" +msgid_plural "slime serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for slime serum #: lang/json/COMESTIBLE_from_json.py -msgid "Fresh " -msgstr "Свіжий" +msgid "" +"A super-concentrated mutagen that looks very much like the black ooze in the" +" zombies' eyes. You need a syringe to inject it… if you really want to?" +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tainted bone meal" -msgid_plural "tainted bone meal" +msgid "spider serum" +msgid_plural "spider serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tainted bone meal'} -#: lang/json/COMESTIBLE_from_json.py -msgid "This is a grayish bone meal made from rotten bones." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "chitin powder" -msgid_plural "chitin powder" -msgstr[0] "хітиновний порошок" -msgstr[1] "хітинового порошку" -msgstr[2] "хітинового порошку" -msgstr[3] "хітиновний порошок" - -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for spider serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"This chitin powder can be used to craft fertilizer and some other things." +"A super-concentrated mutagen with pale filaments suspended in it. You need " +"a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "napkin" -msgid_plural "napkins" +msgid "snail serum" +msgid_plural "snail serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for napkin +#. ~ Description for snail serum #: lang/json/COMESTIBLE_from_json.py -msgid "A napkin. Can be used for fires." +msgid "" +"A super-concentrated mutagen with the consistency of snot. You need a " +"syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cardboard" -msgid_plural "cardboards" +msgid "batrachian serum" +msgid_plural "batrachian serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cardboard +#. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py -msgid "A piece of cardboard." +msgid "" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned beans" -msgid_plural "beans" +msgid "troglobite serum" +msgid_plural "troglobite serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for canned beans +#. ~ Description for troglobite serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"Canned beans. A staple among canned goods, these are reputedly good for " -"one's coronary health." +"A super-concentrated mutagen that seems to recoil from the light. You need " +"a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dried beans" -msgid_plural "dried beans" +msgid "ursine serum" +msgid_plural "ursine serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for ursine serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dehydrated great northern beans. Tasty and nutritious when cooked, " -"virtually inedible when dry." +"A super-concentrated mutagen that's the color of honey, and is just as " +"thick. You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked beans" -msgid_plural "cooked beans" +msgid "mouse serum" +msgid_plural "mouse serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for mouse serum #: lang/json/COMESTIBLE_from_json.py -msgid "A hearty serving of cooked great northern beans." +msgid "" +"A super-concentrated mutagen resembling liquefied metal. You need a syringe" +" to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tofu" -msgid_plural "tofu" +msgid "mutagen" +msgid_plural "mutagens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " -"well and can be used as a meat alternative in many dishes." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "fried tofu" -msgid_plural "fried tofu" +msgid "congealed blood" +msgid_plural "congealed bloods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for congealed blood #: lang/json/COMESTIBLE_from_json.py -msgid "dehydrated tofu" -msgid_plural "dehydrated tofu" +msgid "" +"A thick, soupy red liquid. It looks and smells disgusting, and seems to " +"bubble with an intelligence of its own…" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "alpha mutagen" +msgid_plural "alpha mutagen" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for alpha mutagen +#. ~ Description for chimera mutagen +#. ~ Description for elf-a mutagen +#. ~ Description for raptor mutagen #: lang/json/COMESTIBLE_from_json.py -msgid "Dehydrated tofu, sealed and still extra firm to last a long time." -msgstr "" +msgid "An extremely rare mutagen cocktail." +msgstr "Надзвичайно рідкісна мутагенна суміш." #: lang/json/COMESTIBLE_from_json.py -msgid "soybeans" -msgid_plural "soybeans" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "beast mutagen" +msgid_plural "beast mutagens" +msgstr[0] "мутаген звірюки" +msgstr[1] "мутагену звірюки" +msgstr[2] "мутагену звірюки" +msgstr[3] "мутаген звірюки" -#. ~ Description for {'str_sp': 'soybeans'} #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Light brown beans, they have many uses, mildly toxic and not recommended, " -"but you could eat them raw." -msgstr "" +msgid "bird mutagen" +msgid_plural "bird mutagens" +msgstr[0] "мутаген птаха" +msgstr[1] "мутагену птаха" +msgstr[2] "мутагену птаха" +msgstr[3] "мутаген птаха" #: lang/json/COMESTIBLE_from_json.py -msgid "raw edamame" -msgid_plural "raw edamames" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "cattle mutagen" +msgid_plural "cattle mutagens" +msgstr[0] "мутаген бика" +msgstr[1] "мутагену бика" +msgstr[2] "мутагену бика" +msgstr[3] "мутаген бика" -#. ~ Description for raw edamame #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Light green raw edamame still in its pod, you should boil or freeze these, " -"or you could eat them while they are still toxic." -msgstr "" +msgid "cephalopod mutagen" +msgid_plural "cephalopod mutagens" +msgstr[0] "мутаген молюска" +msgstr[1] "мутагену молюска" +msgstr[2] "мутагену молюска" +msgstr[3] "мутаген молюска" #: lang/json/COMESTIBLE_from_json.py -msgid "dried lentils" -msgid_plural "dried lentils" +msgid "chimera mutagen" +msgid_plural "chimera mutagens" +msgstr[0] "мутаген химери" +msgstr[1] "мутагену химери" +msgstr[2] "мутагену химери" +msgstr[3] "мутаген химери" + +#: lang/json/COMESTIBLE_from_json.py +msgid "elf-a mutagen" +msgid_plural "elf-a mutagens" +msgstr[0] "мутаген эльф-а" +msgstr[1] "мутагену эльф-а" +msgstr[2] "мутагену эльф-а" +msgstr[3] "мутаген эльф-а" + +#: lang/json/COMESTIBLE_from_json.py +msgid "feline mutagen" +msgid_plural "feline mutagens" +msgstr[0] "мутаген кішки" +msgstr[1] "мутагену кішки" +msgstr[2] "мутагену кішки" +msgstr[3] "мутаген кішки" + +#: lang/json/COMESTIBLE_from_json.py +msgid "fish mutagen" +msgid_plural "fish mutagens" +msgstr[0] "мутаген риби" +msgstr[1] "мутагену риби" +msgstr[2] "мутагену риби" +msgstr[3] "мутаген риби" + +#: lang/json/COMESTIBLE_from_json.py +msgid "insect mutagen" +msgid_plural "insect mutagens" +msgstr[0] "мутаген комахи" +msgstr[1] "мутагену комахи" +msgstr[2] "мутагену комахи" +msgstr[3] "мутаген комахи" + +#: lang/json/COMESTIBLE_from_json.py +msgid "lizard mutagen" +msgid_plural "lizard mutagens" +msgstr[0] "мутаген ящірки" +msgstr[1] "мутагену ящірки" +msgstr[2] "мутагену ящірки" +msgstr[3] "мутаген ящірки" + +#: lang/json/COMESTIBLE_from_json.py +msgid "lupine mutagen" +msgid_plural "lupine mutagens" +msgstr[0] "мутаген вовка" +msgstr[1] "мутагену вовка" +msgstr[2] "мутагену вовка" +msgstr[3] "мутаген вовка" + +#: lang/json/COMESTIBLE_from_json.py +msgid "medical mutagen" +msgid_plural "medical mutagens" +msgstr[0] "мутаген медичний" +msgstr[1] "мутагену медичного" +msgstr[2] "мутагену медичного" +msgstr[3] "мутаген медичний" + +#: lang/json/COMESTIBLE_from_json.py +msgid "plant mutagen" +msgid_plural "plant mutagens" +msgstr[0] "мутаген рослини" +msgstr[1] "мутагену рослини" +msgstr[2] "мутагену рослини" +msgstr[3] "мутаген рослини" + +#: lang/json/COMESTIBLE_from_json.py +msgid "raptor mutagen" +msgid_plural "raptor mutagens" +msgstr[0] "мутаген раптора" +msgstr[1] "мутагену раптора" +msgstr[2] "мутагену раптора" +msgstr[3] "мутаген раптора" + +#: lang/json/COMESTIBLE_from_json.py +msgid "rat mutagen" +msgid_plural "rat mutagens" +msgstr[0] "мутаген щура" +msgstr[1] "мутагену щура" +msgstr[2] "мутагену щура" +msgstr[3] "мутаген щура" + +#: lang/json/COMESTIBLE_from_json.py +msgid "slime mutagen" +msgid_plural "slime mutagens" +msgstr[0] "мутаген слимака" +msgstr[1] "мутагену слимака" +msgstr[2] "мутагену слимака" +msgstr[3] "мутаген слимака" + +#: lang/json/COMESTIBLE_from_json.py +msgid "spider mutagen" +msgid_plural "spider mutagens" +msgstr[0] "мутаген павука" +msgstr[1] "мутагену павука" +msgstr[2] "мутагену павука" +msgstr[3] "мутаген павука" + +#: lang/json/COMESTIBLE_from_json.py +msgid "batrachian mutagen" +msgid_plural "batrachian mutagens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A humble but nutrient-rich legume. Should be cooked prior to consumption." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Foodplace's delicious food™" -msgid_plural "Foodplace's delicious food™" +msgid "snail mutagen" +msgid_plural "snail mutagens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for snail mutagen #: lang/json/COMESTIBLE_from_json.py -#, no-python-format msgid "" -"The best-seller from Foodplace, delicious food™, is made with real foodstuff" -" and is guaranteed 100% edible!" +"A mutagen that looks awfully like the slime from an old children's network." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Foodplace's appropriate snack™" -msgid_plural "Foodplace's appropriate snack™" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "troglobite mutagen" +msgid_plural "troglobite mutagens" +msgstr[0] "мутаген троглобіонта" +msgstr[1] "мутагену троглобіонта" +msgstr[2] "мутагену троглобіонта" +msgstr[3] "мутаген троглобіонта" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} #: lang/json/COMESTIBLE_from_json.py -msgid "Real foodstuff now in a pocket size format!" -msgstr "" +msgid "ursine mutagen" +msgid_plural "ursine mutagens" +msgstr[0] "мутаген ведмедя" +msgstr[1] "мутагену ведмедя" +msgstr[2] "мутагену ведмедя" +msgstr[3] "мутаген ведмедя" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked lentils" -msgid_plural "cooked lentils" +msgid "mouse mutagen" +msgid_plural "mouse mutagens" +msgstr[0] "мутаген миші" +msgstr[1] "мутагену миші" +msgstr[2] "мутагену миші" +msgstr[3] "мутаген миші" + +#: lang/json/COMESTIBLE_from_json.py +msgid "rabbit serum" +msgid_plural "rabbit serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for rabbit serum #: lang/json/COMESTIBLE_from_json.py -msgid "Some delicious cooked lentils. Humble but nutrient-rich." +msgid "" +"An orange colored serum. You need a syringe to inject it… if you really " +"want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "coffee powder" -msgid_plural "coffee powder" +msgid "rabbit mutagen" +msgid_plural "rabbit mutagens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for rabbit mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"Ground coffee beans. You can boil it into a mediocre stimulant, or " -"something better if you had an atomic coffee pot." +"A white, clear colored mutagen. You can drink it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Kentucky coffee grounds" -msgid_plural "Kentucky coffee grounds" +msgid "purifier" +msgid_plural "purifiers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for purifier #: lang/json/COMESTIBLE_from_json.py msgid "" -"Coffee grounds created through washing, cleaning, and roasting the pods from" -" a Kentucky coffeetree. They can be used to create coffee." +"A rare stem-cell treatment that causes mutations and other genetic defects " +"to fade away." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "candied honey" -msgid_plural "candied honey" +msgid "purifier serum" +msgid_plural "purifier serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for purifier serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"Honey, that stuff the bees make. This variant is \"candied honey\", a " -"variant of very thick consistence. This honey won't spoil and is good for " -"your digestion." +"A super-concentrated stem cell treatment. You need a syringe to inject it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned tomato" -msgid_plural "canned tomatoes" +msgid "purifier smart shot" +msgid_plural "purifier smart shots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for canned tomato +#. ~ Description for purifier smart shot #: lang/json/COMESTIBLE_from_json.py msgid "" -"Canned tomato. A staple in many pantries, and useful for many recipes." +"An experimental stem cell treatment, offering limited control over which " +"mutations are purified. The liquid sloshes strangely inside of this " +"syringe." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "embalmed human brain" -msgid_plural "embalmed human brains" -msgstr[0] "забальзамований людський мозок" -msgstr[1] "забальзамований людський мозок" -msgstr[2] "забальзамований людський мозок" -msgstr[3] "забальзамовані людські мізки" +msgid "misshapen fetus" +msgid_plural "misshapen fetuses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for embalmed human brain +#. ~ Description for misshapen fetus #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a human brain soaked in a solution of highly toxic formaldehyde. " -"Eating this would be a terrible idea." +"A deformed human fetus. Eating this would be the most vile thing you can " +"think of, and just might cause you to mutate." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cattle fodder" -msgid_plural "cattle fodder" +msgid "mutated arm" +msgid_plural "mutated arms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for mutated arm #: lang/json/COMESTIBLE_from_json.py msgid "" -"What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" -" ruminants." +"A misshapen human arm. Eating this would be incredibly disgusting and " +"probably cause you to mutate." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bird food" -msgid_plural "bird food" -msgstr[0] "пташиний корм" -msgstr[1] "пташиного корму" -msgstr[2] "пташиного корму" -msgstr[3] "пташиний корм" +msgid "mutated leg" +msgid_plural "mutated legs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for mutated leg #: lang/json/COMESTIBLE_from_json.py msgid "" -"What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " -"small birds." +"A malformed human leg. This would be gross to eat, and probably cause " +"mutations." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wet dog food" -msgid_plural "wet dog food" +msgid "pine nuts" +msgid_plural "pine nuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is wet food for dogs, made from canned fresh meats. It smells strange," -" but dogs seem to love it." +msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dry dog food" -msgid_plural "dry dog food" +msgid "junipers" +msgid_plural "junipers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dry morsels of dog food with a long shelf life. Made from dried processed " -"meats and grains, and enriched with vitamins and minerals." +"Junipers, for making gin and achieving earthy flavors. Spicy, tastes " +"similar to rosemary." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wet cat food" -msgid_plural "wet cat food" +msgid "shelled pistachios" +msgid_plural "shelled pistachios" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is wet food for cats, made from canned fresh meats. It has a pungent " -"aroma that cats seem to love." +"A handful of nuts from a pistachio tree, their shells have been removed." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dry cat food" -msgid_plural "dry cat food" +msgid "roasted pistachios" +msgid_plural "roasted pistachios" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Dry kibbles of cat food with a long shelf life. Made from dried processed " -"meats and grains, and enriched with vitamins and minerals." +msgid "A handful of roasted nuts from a pistachio tree." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/terrain_from_json.py -msgid "grass" -msgid_plural "grasses" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "shelled almonds" +msgid_plural "shelled almonds" +msgstr[0] "очищений мигдаль" +msgstr[1] "очищений мигдаль" +msgstr[2] "очищений мигдаль" +msgstr[3] "очищений мигдаль" -#. ~ Description for grass +#. ~ Description for shelled almonds +#: lang/json/COMESTIBLE_from_json.py +msgid "A handful of nuts from an almond tree, their shells have been removed." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "almond pulp" +msgid_plural "almond pulp" +msgstr[0] "мигдалевий жмих" +msgstr[1] "мигдалевий жмих" +msgstr[2] "мигдалевий жмих" +msgstr[3] "мигдалевий жмих" + +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" -"Some grass, edible by grazers and ruminants only. Seeing this item is a " -"bug." +"Pulp left over after making almond milk. It's gritty and incredibly bland." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py -msgid "underbrush" -msgid_plural "underbrushes" -msgstr[0] "кущ" -msgstr[1] "кущі" -msgstr[2] "кущів" -msgstr[3] "кущі" +#: lang/json/COMESTIBLE_from_json.py +msgid "roasted almonds" +msgid_plural "roasted almonds" +msgstr[0] "смажений мигдаль" +msgstr[1] "смажений мигдаль" +msgstr[2] "смажений мигдаль" +msgstr[3] "смажений мигдаль" -#. ~ Description for underbrush +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py -msgid "Some underbrush, edible by ruminants only. Seeing this item is a bug." +msgid "A handful of roasted nuts from an almond tree." msgstr "" -"Чагарник, усілякі кущі, що їх можуть їсти лише жуйні тварини. Якщо ви бачите" -" цей текст - це програмна помилка." #: lang/json/COMESTIBLE_from_json.py -msgid "nectar" -msgid_plural "nectars" +msgid "cashews" +msgid_plural "cashews" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nectar +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py -msgid "Some nectar. Seeing this item is a bug." +msgid "A handful of salty cashews." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "black tea bag" -msgid_plural "black tea bags" +msgid "shelled pecans" +msgid_plural "shelled pecans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black tea bag +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" -"A paper sachet with tea leaves inside. Put it into boiling water to make a " -"cup of black tea." +"A handful of pecans which are a sub-species of hickory nuts, their shells " +"have been removed." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "green tea bag" -msgid_plural "green tea bags" +msgid "roasted pecans" +msgid_plural "roasted pecans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for green tea bag +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A paper sachet with tea leaves inside. Put it into boiling water to make a " -"cup of green tea." +msgid "A handful of roasted nuts from a pecan tree." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fruit tea bag" -msgid_plural "fruit tea bags" +msgid "shelled peanuts" +msgid_plural "shelled peanuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit tea bag +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A paper sachet with leaves and fruit parts inside. Put it into boiling " -"water to make a cup of fruit tea." +msgid "Salty peanuts, their shells have been removed." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "herbal tea bag" -msgid_plural "herbal tea bags" +msgid "beech nuts" +msgid_plural "beech nuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for herbal tea bag +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A paper sachet with dried wild herbs inside. Put it into boiling water to " -"make a cup of herbal tea." +msgid "A handful of hard pointy nuts from a beech tree." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dandelion tea bag" -msgid_plural "dandelion tea bags" +msgid "shelled walnuts" +msgid_plural "shelled walnuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dandelion tea bag +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" -"A paper sachet with dried dandelion roots inside. Put it into boiling water" -" to make a cup of dandelion tea." +"A handful of raw hard nuts from a walnut tree, their shells have been " +"removed." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chamomile tea bag" -msgid_plural "chamomile tea bags" +msgid "roasted walnuts" +msgid_plural "roasted walnuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chamomile tea bag +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A paper sachet with dried chamomile inside. Put it into boiling water to " -"make a cup of chamomile tea." +msgid "A handful of roasted nuts from a walnut tree." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "instant coffee mix" -msgid_plural "instant coffee mix" +msgid "shelled chestnuts" +msgid_plural "shelled chestnuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" -"A small packet of commercial instant coffee powder. No creamer or sweetener" -" added." +"A handful of raw hard nuts from a chestnut tree, their shells have been " +"removed." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "acid soaked hide" -msgid_plural "acid soaked hides" +msgid "roasted chestnuts" +msgid_plural "roasted chestnuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for acid soaked hide +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Raw hide soaking in a dilute acid solution to extract collagen. After 24 " -"hours the solution can be strained to extract fresh gelatin." +msgid "A handful of roasted nuts from a chestnut tree." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "extracted gelatin" -msgid_plural "extracted gelatins" +msgid "shelled hazelnuts" +msgid_plural "shelled hazelnuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for extracted gelatin +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" -"Freshly extracted gelatin in a dilute acid solution. It needs to be " -"strained to separate the gelatin from the acid." +"A handful of raw hard nuts from a hazelnut tree, their shells have been " +"removed." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "protein drink" -msgid_plural "protein drinks" +msgid "roasted edamame" +msgid_plural "roasted edamame" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py -msgid "soylent green drink" -msgid_plural "soylent green drink" +msgid "Roasted edamame, a hearty and healthy snack." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "roasted soy nuts" +msgid_plural "roasted soy nuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py -msgid "sapient green drink" -msgid_plural "sapient green drink" +msgid "Roasted soybeans, often called soy nuts." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "roasted hazelnuts" +msgid_plural "roasted hazelnuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "perturbing %s" -msgid_plural "perturbing %s" +msgid "A handful of roasted nuts from a hazelnut tree." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "shelled hickory nuts" +msgid_plural "shelled hickory nuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for protein drink +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" -"A thin slurry of refined protein mixed with water. While quite nutritious, " -"it is not particularly tasty." +"A handful of raw hard nuts from a hickory tree, their shells have been " +"removed." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "protein powder" -msgid_plural "protein powder" -msgstr[0] "протеїновний порошок" -msgstr[1] "протеїновний порошок" -msgstr[2] "протеїновний порошок" -msgstr[3] "протеїновний порошок" - -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM -#: lang/json/COMESTIBLE_from_json.py -msgid "soylent green powder" -msgid_plural "soylent green powder" +msgid "roasted hickory nuts" +msgid_plural "roasted hickory nuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py -msgid "sapient green powder" -msgid_plural "sapient green powder" +msgid "A handful of roasted nuts from a hickory tree." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "hickory nut ambrosia" +msgid_plural "hickory nut ambrosias" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for hickory nut ambrosia #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Raw, refined protein. While quite nutritious, it is impossible to enjoy in " -"its pure form, try adding water." +msgid "Delicious hickory nut ambrosia. A drink worthy of the gods." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "protein ration" -msgid_plural "protein rations" -msgstr[0] "білковий раціон" -msgstr[1] "білкові раціони" -msgstr[2] "білкових раціонів" -msgstr[3] "білкові раціони" +msgid "peanut butter" +msgid_plural "peanut butters" +msgstr[0] "арахісове масло" +msgstr[1] "арахісового масла" +msgstr[2] "арахісового масла" +msgstr[3] "арахісове масло" -#. ~ Description for protein ration +#. ~ Description for peanut butter #: lang/json/COMESTIBLE_from_json.py msgid "" -"SoyPelusa ran a highly successful crowdfunding campaign for their signature protein bar, dubbed \"DaiZoom.\"\n" -"\n" -"A person can live on one of these bars, three times a day, presumably forever. After backers received their product, a single flaw was found: most consumers found starvation preferable to the flavor. Warehouses of the product went unsold as the company went bankrupt, providing the perfect opportunity for FEMA to scoop them up and stock the evac shelters.\n" -"\n" -"Now, you hold a piece of famous crowdfunding history in your hands. How exciting." +"A brown goo that tastes very little like its namesake. It's not bad, but " +"it'll stick to the roof of your mouth." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "protein shake" -msgid_plural "protein shakes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM -#: lang/json/COMESTIBLE_from_json.py -msgid "soylent green shake" -msgid_plural "soylent green shake" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. STRICT_HUMANITARIANISM -#: lang/json/COMESTIBLE_from_json.py -msgid "sapient green shake" -msgid_plural "sapient green shake" +msgid "imitation peanutbutter" +msgid_plural "imitation peanutbutters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for protein shake +#. ~ Description for imitation peanutbutter #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A thick and tasty beverage made from pure refined protein and nutritious " -"fruit." +msgid "A thick, nutty brown paste." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fortified protein shake" -msgid_plural "fortified protein shakes" +msgid "peanut butter spread" +msgid_plural "peanut butter spreads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Description for peanut butter spread #: lang/json/COMESTIBLE_from_json.py -msgid "fortified soylent green shake" -msgid_plural "fortified soylent green shake" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Processed peanut butter spread." +msgstr "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches -#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "fortified sapient green shake" -msgid_plural "fortified sapient green shake" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "acorns" +msgid_plural "acorns" +msgstr[0] "жолуді" +msgstr[1] "жолудів" +msgstr[2] "жолудів" +msgstr[3] "жолуді" -#. ~ Description for fortified protein shake +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" -"A thick and tasty beverage made from pure refined protein and nutritious " -"fruit. It has been supplemented with extra vitamins and minerals" +"A handful of acorns, still in their shells. Squirrels like them, but they " +"taste terribly bitter and can upset your stomach." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "apple" -msgid_plural "apples" -msgstr[0] "яблуко" -msgstr[1] "яблука" -msgstr[2] "яблук" -msgstr[3] "яблука" +msgid "roasted acorns" +msgid_plural "roasted acorns" +msgstr[0] "смажені жолуді" +msgstr[1] "смажених жолудів" +msgstr[2] "смажених жолудів" +msgstr[3] "смажені жолуді" -#. ~ Description for apple +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py -msgid "An apple a day keeps the doctor away." +msgid "A handful roasted nuts from an oak tree." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "banana" -msgid_plural "bananas" +msgid "cooked acorn meal" +msgid_plural "cooked acorn meal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for banana +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" -"A long, curved yellow fruit in a peel. Some people like using them in " -"desserts. Those people are probably dead." +"A serving of acorns that have been hulled, chopped, and boiled in water " +"before being thoroughly toasted until dry. Filling and nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "orange" -msgid_plural "oranges" +msgid "foie gras" +msgid_plural "foie gras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for orange +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py -msgid "Sweet citrus fruit. Also comes in juice form." +msgid "" +"Though it's not technically foie gras, you don't have to think about that." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lemon" -msgid_plural "lemons" +msgid "liver & onions" +msgid_plural "liver & onions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lemon +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py -msgid "Very sour citrus. Can be eaten if you really want." +msgid "A classic way to serve liver." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "blueberries" -msgid_plural "blueberries" +msgid "fried liver" +msgid_plural "fried livers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for fried liver +#. ~ Description for deep-fried tripe #: lang/json/COMESTIBLE_from_json.py -msgid "They're blue, but that doesn't mean they're sad." +msgid "Nothing tastier than something that's deep-fried!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "strawberries" -msgid_plural "strawberries" +msgid "humble pie" +msgid_plural "humble pies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for humble pie #: lang/json/COMESTIBLE_from_json.py -msgid "Tasty, juicy berry. Often found growing wild in fields." +msgid "" +"Also known as 'Umble' pie, made with chopped organ meats. Not half bad, and" +" really good for you!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cranberries" -msgid_plural "cranberries" +msgid "stewed tripe" +msgid_plural "stewed tripes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for stewed tripe #: lang/json/COMESTIBLE_from_json.py -msgid "Sour red berries. Good for your health." +msgid "" +"Stomach lining, cut up and stewed for an hour in broth. Better than it " +"sounds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raspberries" -msgid_plural "raspberries" +msgid "deep-fried tripe" +msgid_plural "deep-fried tripes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raspberries'} -#: lang/json/COMESTIBLE_from_json.py -msgid "A sweet red berry." -msgstr "" - #: lang/json/COMESTIBLE_from_json.py -msgid "huckleberries" -msgid_plural "huckleberries" +msgid "leverpostej" +msgid_plural "leverpostej" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py -msgid "Huckleberries, often times confused for blueberries." +msgid "" +"A traditional Danish pate. Probably better if you spread it on some bread." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mulberries" -msgid_plural "mulberries" +msgid "fried brain" +msgid_plural "fried brains" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for fried brain #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Mulberries, this red variety is unique to east North America and is " -"described to have the strongest flavor of any variety in the world." +msgid "I don't know what you were expecting. It's deep-fried." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "elderberries" -msgid_plural "elderberries" +msgid "deviled kidney" +msgid_plural "deviled kidneys" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for deviled kidney #: lang/json/COMESTIBLE_from_json.py -msgid "Elderberries, toxic when eaten raw but great when cooked." +msgid "A delicious way to prepare kidneys." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rose hips" -msgid_plural "rose hips" +msgid "grilled sweetbread" +msgid_plural "grilled sweetbreads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for grilled sweetbread #: lang/json/COMESTIBLE_from_json.py -msgid "The fruit of a pollinated rose flower." -msgstr "Плод запиленої трояндової квітки шипшини." +msgid "Not sweet, like the name would suggest, but delicious all the same!" +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "juice pulp" -msgid_plural "juice pulps" +msgid "canned liver" +msgid_plural "canned livers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for juice pulp +#. ~ Description for canned liver #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Left-over from juicing the fruit. Not very tasty, but contains a lot of " -"healthy fiber." +msgid "Livers preserved in a can. Chock-full of B vitamins!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pear" -msgid_plural "pears" +msgid "lung provence" +msgid_plural "lung provences" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pear +#. ~ Description for lung provence #: lang/json/COMESTIBLE_from_json.py -msgid "A juicy, bell-shaped pear. Yum!" +msgid "A delicious way to prepare lungs." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "grapefruit" -msgid_plural "grapefruits" +msgid "tÖttchen" +msgid_plural "tÖttchens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for grapefruit +#. ~ Description for tÖttchen #: lang/json/COMESTIBLE_from_json.py -msgid "A citrus fruit, whose taste ranges from sour to semi-sweet." +msgid "A German lung dish." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cherries" -msgid_plural "cherries" +msgid "scrambled eggs and brain" +msgid_plural "scrambled eggs and brains" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for scrambled eggs and brain #: lang/json/COMESTIBLE_from_json.py -msgid "A red, sweet fruit that grows in trees." +msgid "Brains and eggs, why didn't you ever think to put these together?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "plum" -msgid_plural "plums" +msgid "sausage casing" +msgid_plural "sausage casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plum +#. ~ Description for sausage casing #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of large, purple plums. Healthy and good for your digestion." +"Sausage casings made from animal intestines. Ready to be used for forming " +"meat products." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "grapes" -msgid_plural "grapes" +msgid "artifical sausage casing" +msgid_plural "artifical sausage casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for artifical sausage casing #: lang/json/COMESTIBLE_from_json.py -msgid "A cluster of juicy grapes." +msgid "" +"Sausage casings made from plastic bags. Ready to be used for forming meat " +"products." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pineapple" -msgid_plural "pineapples" +msgid "homemade hot dog" +msgid_plural "homemade hot dogs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pineapple -#: lang/json/COMESTIBLE_from_json.py -msgid "A large, spiky pineapple. A bit sour, though." -msgstr "" - #: lang/json/COMESTIBLE_from_json.py -msgid "coconut" -msgid_plural "coconuts" +msgid "diet pill" +msgid_plural "diet pills" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for coconut +#. ~ Description for diet pill #: lang/json/COMESTIBLE_from_json.py -msgid "A fruit with a hard and hairy shell." +msgid "" +"Not very nutritious. Warning: contains calories, unsuitable for " +"breatharians." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "peach" -msgid_plural "peaches" +msgid "slime glob" +msgid_plural "slime globs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for peach +#. ~ Description for slime glob #: lang/json/COMESTIBLE_from_json.py -msgid "This fruit's large pit is surrounded by its tasty flesh." +msgid "" +"A little hunk of glop that fell off a slime monster. It doesn't seem " +"hostile, but it does wiggle occasionally." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "watermelon" -msgid_plural "watermelons" +msgid "honey comb" +msgid_plural "honey combs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for watermelon +#. ~ Description for honey comb #: lang/json/COMESTIBLE_from_json.py -msgid "A fruit, bigger than your head. It is very juicy!" +msgid "A large chunk of wax filled with honey. Very tasty." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py lang/json/ammunition_type_from_json.py +msgid "wax" +msgid_plural "waxes" +msgstr[0] "віск" +msgstr[1] "воску" +msgstr[2] "воску" +msgstr[3] "віск" + +#. ~ Description for wax +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A large chunk of beeswax. Not very tasty or nourishing, but okay in an " +"emergency." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "melon" -msgid_plural "melons" +msgid "royal jelly" +msgid_plural "royal jellies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for melon +#. ~ Description for royal jelly #: lang/json/COMESTIBLE_from_json.py -msgid "A large and very sweet fruit." +msgid "" +"A translucent hexagonal chunk of wax, filled with dense, milky, bitter and " +"acidic-tasting jelly. Though some hold it as a panacea, it doesn't have any" +" medical benefit. Still it is rich with the most beneficial substances the " +"hive can produce." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "blackberries" -msgid_plural "blackberries" +msgid "honeydew" +msgid_plural "honeydews" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for honeydew #: lang/json/COMESTIBLE_from_json.py -msgid "A darker cousin of raspberry." +msgid "" +"A sugar-rich sticky substance, produced by aphids from plant sap. Ants and " +"bees love it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mango" -msgid_plural "mangos" +msgid "marloss berry" +msgid_plural "marloss berries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mango +#. ~ Description for marloss berry #: lang/json/COMESTIBLE_from_json.py -msgid "A fleshy fruit with large pit." +msgid "" +"This looks like a blueberry the size of your fist, but pinkish in color. It" +" has a strong but delicious aroma, but is clearly either mutated or of alien" +" origin." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pomegranate" -msgid_plural "pomegranates" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "marloss gelatin" +msgid_plural "marloss gelatin" +msgstr[0] "марлесний желатин" +msgstr[1] "марлесний желатин" +msgstr[2] "марлесний желатин" +msgstr[3] "марлесний желатин" -#. ~ Description for pomegranate +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py -msgid "Under this pomegranate's spongy skin lies hundreds of fleshy seeds." +msgid "" +"This looks like a handful of lemon-colored liquid which has taken a set, " +"much like pre-Cataclysm Jello. It has a strong but delicious aroma, but is " +"clearly either mutated or of alien origin." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "papaya" -msgid_plural "papayas" +msgid "mycus fruit" +msgid_plural "mycus fruits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for papaya +#. ~ Description for mycus fruit #: lang/json/COMESTIBLE_from_json.py -msgid "A very sweet and soft tropical fruit." +msgid "" +"Humans might call this a Gray Delicious apple: large, gray, and smells even " +"better than the Marloss. If they didn't reject it for its alien origins. " +"But we know better." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "kiwi" -msgid_plural "kiwis" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "yeast" +msgid_plural "yeast" +msgstr[0] "дріжджі" +msgstr[1] "дріжджів" +msgstr[2] "дріжджів" +msgstr[3] "дріжджі" -#. ~ Description for kiwi +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" -"A large, brown and fuzzy-skinned berry. Its delicious insides are green." +"A powder-like mix of cultured yeast, good for baking and brewing alike." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "apricots" -msgid_plural "apricots" +msgid "bone meal" +msgid_plural "bone meal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py -msgid "A smooth-skinned fruit, related to the peach." +msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cholla bud" -msgid_plural "cholla buds" +msgid "powdered gelatin" +msgid_plural "powdered gelatin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cholla bud +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" -"Edible bud of a cholla cactus, with spines removed; the candy of the Mojave " -"indigenous peoples. Tastes similar to asparagus." +"Dried and powdered gelatin, used as a gelling agent when mixed with water." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cactus pad" -msgid_plural "cactus pads" +msgid "fresh gelatin" +msgid_plural "fresh gelatin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cactus pad +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py -msgid "An edible pad of a cactus." -msgstr "" +msgid "Fresh " +msgstr "Свіжий" #: lang/json/COMESTIBLE_from_json.py -msgid "barley" -msgid_plural "barley" +msgid "tainted bone meal" +msgid_plural "tainted bone meal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py -msgid "bee balm" -msgid_plural "bee balm" -msgstr[0] "монарда" -msgstr[1] "монарди" -msgstr[2] "монарди" -msgstr[3] "монарда" +msgid "This is a grayish bone meal made from rotten bones." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "chitin powder" +msgid_plural "chitin powder" +msgstr[0] "хітиновний порошок" +msgstr[1] "хітинового порошку" +msgstr[2] "хітинового порошку" +msgstr[3] "хітиновний порошок" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" -"A snow-white flower also known as wild bergamot. Smells faintly of mint." +"This chitin powder can be used to craft fertilizer and some other things." msgstr "" -"Белосніжна квітка, також відома як дикий бергамот. Злегка пахне м'ятою." #: lang/json/COMESTIBLE_from_json.py -msgid "broccoli" -msgid_plural "broccoli" +msgid "napkin" +msgid_plural "napkins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for napkin #: lang/json/COMESTIBLE_from_json.py -msgid "It's a bit tough, but quite delicious." +msgid "A napkin. Can be used for fires." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "buckwheat" -msgid_plural "buckwheat" +msgid "cardboard" +msgid_plural "cardboards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for cardboard #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Seeds from a wild buckwheat plant. Not particularly good to eat in their " -"raw state, they are commonly cooked or ground into flour." +msgid "A piece of cardboard." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cabbage" -msgid_plural "cabbages" +msgid "canned beans" +msgid_plural "beans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cabbage +#. ~ Description for canned beans #: lang/json/COMESTIBLE_from_json.py -msgid "Crisp white cabbage." +msgid "" +"Canned beans. A staple among canned goods, these are reputedly good for " +"one's coronary health." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "spinach" -msgid_plural "spinach" +msgid "dried beans" +msgid_plural "dried beans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py -msgid "A bunch of spinach leaves." +msgid "" +"Dehydrated great northern beans. Tasty and nutritious when cooked, " +"virtually inedible when dry." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "carrot" -msgid_plural "carrots" +msgid "cooked beans" +msgid_plural "cooked beans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for carrot +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py -msgid "A healthy root vegetable. Rich in vitamin A!" +msgid "A hearty serving of cooked great northern beans." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cattail rhizome" -msgid_plural "cattail rhizomes" +msgid "tofu" +msgid_plural "tofu" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cattail rhizome +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" -"A stout branching rhizome from a cattail plant. Its crisp white flesh is " -"very starchy and fibrous, but you really ought to cook it before you attempt" -" to eat it." +"Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " +"well and can be used as a meat alternative in many dishes." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cattail stalk" -msgid_plural "cattail stalks" +msgid "fried tofu" +msgid_plural "fried tofu" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cattail stalk -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A stiff green stalk from a cattail plant. It is starchy and fibrous, but it" -" would be much better if you cooked it." -msgstr "" - #: lang/json/COMESTIBLE_from_json.py -msgid "celery" -msgid_plural "celery" +msgid "dehydrated tofu" +msgid_plural "dehydrated tofu" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py -msgid "Neither tasty nor very nutritious, but it goes well with salad." +msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "corn cob" -msgid_plural "corn cobs" +msgid "soybeans" +msgid_plural "soybeans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for corn cob +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" -"A corn cob full of delicious golden kernels. You can eat them on the cob or" -" shell it for cooking." +"Light brown beans, they have many uses, mildly toxic and not recommended, " +"but you could eat them raw." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "corn kernels" -msgid_plural "corn kernels" +msgid "raw edamame" +msgid_plural "raw edamames" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for raw edamame #: lang/json/COMESTIBLE_from_json.py -msgid "Delicious golden kernels." +msgid "" +"Light green raw edamame still in its pod, you should boil or freeze these, " +"or you could eat them while they are still toxic." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "empty corn cob" -msgid_plural "empty corn cob" +msgid "dried lentils" +msgid_plural "dried lentils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" -"An empty corn cob. It may seem useless, but it can be used to make stock, a" -" delicious jelly, or as fuel." +"A humble but nutrient-rich legume. Should be cooked prior to consumption." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cotton boll" -msgid_plural "cotton bolls" +msgid "Foodplace's delicious food™" +msgid_plural "Foodplace's delicious food™" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cotton boll +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py +#, no-python-format msgid "" -"A tough protective capsule bulging with densely packed fibers and seeds, " -"this cotton boll can be processed into usable material with the right tools." +"The best-seller from Foodplace, delicious food™, is made with real foodstuff" +" and is guaranteed 100% edible!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chili pepper" -msgid_plural "chili peppers" +msgid "Foodplace's appropriate snack™" +msgid_plural "Foodplace's appropriate snack™" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chili pepper +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py -msgid "Spicy chili pepper." +msgid "Real foodstuff now in a pocket size format!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cucumber" -msgid_plural "cucumbers" +msgid "cooked lentils" +msgid_plural "cooked lentils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cucumber +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py -msgid "Comes from the gourd family. Not tasty but very juicy." +msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dahlia root" -msgid_plural "dahlia roots" +msgid "coffee powder" +msgid_plural "coffee powder" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dahlia root +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" -"The large, tuberous root of a dahlia flower. It smells spicy, but is too " -"starchy to eat without cooking." +"Ground coffee beans. You can boil it into a mediocre stimulant, or " +"something better if you had an atomic coffee pot." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "salsify" -msgid_plural "salsify" +msgid "Kentucky coffee grounds" +msgid_plural "Kentucky coffee grounds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" -"An herb with a small purple flower. The roots are nutritious, but tough and" -" bland until cooked." +"Coffee grounds created through washing, cleaning, and roasting the pods from" +" a Kentucky coffeetree. They can be used to create coffee." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/COMESTIBLE_from_json.py -#: lang/json/furniture_from_json.py -msgid "chicory" -msgid_plural "chicory" +#: lang/json/COMESTIBLE_from_json.py +msgid "candied honey" +msgid_plural "candied honey" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" -"A modest blue flower. The flower's roots are very bitter and not meant to " -"be eaten raw." +"Honey, that stuff the bees make. This variant is \"candied honey\", a " +"variant of very thick consistence. This honey won't spoil and is good for " +"your digestion." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wild root" -msgid_plural "wild roots" +msgid "canned tomato" +msgid_plural "canned tomatoes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wild root +#. ~ Description for canned tomato #: lang/json/COMESTIBLE_from_json.py msgid "" -"A weed with a cluster of tiny white flowers. These are often wild carrots, " -"but beware of poisonous lookalikes." +"Canned tomato. A staple in many pantries, and useful for many recipes." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dogbane" -msgid_plural "dogbanes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "embalmed human brain" +msgid_plural "embalmed human brains" +msgstr[0] "забальзамований людський мозок" +msgstr[1] "забальзамований людський мозок" +msgstr[2] "забальзамований людський мозок" +msgstr[3] "забальзамовані людські мізки" -#. ~ Description for dogbane +#. ~ Description for embalmed human brain #: lang/json/COMESTIBLE_from_json.py msgid "" -"A stalk of dogbane. It has very fibrous stems and is mildly poisonous." +"This is a human brain soaked in a solution of highly toxic formaldehyde. " +"Eating this would be a terrible idea." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "garlic bulb" -msgid_plural "garlic bulbs" +msgid "cattle fodder" +msgid_plural "cattle fodder" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for garlic bulb +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" -"A pungent garlic bulb. Popular as a seasoning for its strong flavor. Can " -"be disassembled to cloves." +"What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" +" ruminants." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hops flower" -msgid_plural "hops flowers" -msgstr[0] "квітка хмелю" -msgstr[1] "квітка хмелю" -msgstr[2] "квітки хмелю" -msgstr[3] "квітки хмелю" +msgid "bird food" +msgid_plural "bird food" +msgstr[0] "пташиний корм" +msgstr[1] "пташиного корму" +msgstr[2] "пташиного корму" +msgstr[3] "пташиний корм" -#. ~ Description for hops flower +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py -msgid "A cluster of small cone-like flowers, indispensable for brewing beer." -msgstr "Гроно невеличких конусоподібних квіток, незамінних для пивоваріння." +msgid "" +"What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " +"small birds." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "horseradish root" -msgid_plural "horseradish roots" +msgid "wet dog food" +msgid_plural "wet dog food" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for horseradish root +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" -"Large white tapered root of a horseradish plant. Way too spicy in this " -"form, but can be used for making condiments." +"This is wet food for dogs, made from canned fresh meats. It smells strange," +" but dogs seem to love it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lettuce" -msgid_plural "lettuces" +msgid "dry dog food" +msgid_plural "dry dog food" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lettuce +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py -msgid "A crisp head of iceberg lettuce." +msgid "" +"Dry morsels of dog food with a long shelf life. Made from dried processed " +"meats and grains, and enriched with vitamins and minerals." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mugwort" -msgid_plural "mugworts" +msgid "wet cat food" +msgid_plural "wet cat food" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mugwort +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py -msgid "A stalk of mugwort. Smells wonderful." +msgid "" +"This is wet food for cats, made from canned fresh meats. It has a pungent " +"aroma that cats seem to love." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "onion" -msgid_plural "onions" +msgid "dry cat food" +msgid_plural "dry cat food" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for onion +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" -"An aromatic onion used in cooking. Cutting these up can make your eyes " -"sting!" +"Dry kibbles of cat food with a long shelf life. Made from dried processed " +"meats and grains, and enriched with vitamins and minerals." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "fungal fluid sac" -msgid_plural "fungal fluid sacs" +#: lang/json/COMESTIBLE_from_json.py lang/json/terrain_from_json.py +msgid "grass" +msgid_plural "grasses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fungal fluid sac +#. ~ Description for grass #: lang/json/COMESTIBLE_from_json.py msgid "" -"A fluid bladder from a fungus based lifeform. Not very nutritious, but fine" -" to eat anyway." +"Some grass, edible by grazers and ruminants only. Seeing this item is a " +"bug." msgstr "" +#: lang/json/COMESTIBLE_from_json.py lang/json/terrain_from_json.py +#: lang/json/terrain_from_json.py +msgid "underbrush" +msgid_plural "underbrushes" +msgstr[0] "кущ" +msgstr[1] "кущі" +msgstr[2] "кущів" +msgstr[3] "кущі" + +#. ~ Description for underbrush #: lang/json/COMESTIBLE_from_json.py -msgid "raw popcorn" -msgid_plural "raw popcorn" +msgid "Some underbrush, edible by ruminants only. Seeing this item is a bug." +msgstr "" +"Чагарник, усілякі кущі, що їх можуть їсти лише жуйні тварини. Якщо ви бачите" +" цей текст - це програмна помилка." + +#: lang/json/COMESTIBLE_from_json.py +msgid "nectar" +msgid_plural "nectars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for nectar #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A special variety of corn which could be used for making popcorn, after it's" -" dried. Unlike normal corn, it's not sweet and is more dry." +msgid "Some nectar. Seeing this item is a bug." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw potato" -msgid_plural "raw potatoes" +msgid "black tea bag" +msgid_plural "black tea bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw potato +#. ~ Description for black tea bag #: lang/json/COMESTIBLE_from_json.py -msgid "Mildly toxic and not very tasty raw. When cooked, it is delicious." +msgid "" +"A paper sachet with tea leaves inside. Put it into boiling water to make a " +"cup of black tea." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pumpkin" -msgid_plural "pumpkins" +msgid "green tea bag" +msgid_plural "green tea bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pumpkin +#. ~ Description for green tea bag #: lang/json/COMESTIBLE_from_json.py msgid "" -"A large vegetable, about the size of your head. Not very tasty raw, but is " -"great for cooking." +"A paper sachet with tea leaves inside. Put it into boiling water to make a " +"cup of green tea." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "horseradish greens" -msgid_plural "horseradish greens" +msgid "fruit tea bag" +msgid_plural "fruit tea bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for fruit tea bag #: lang/json/COMESTIBLE_from_json.py msgid "" -"Leaves of a horseradish plant with a sharp, bitter and peppery taste. " -"They're edible, but not commonly eaten." +"A paper sachet with leaves and fruit parts inside. Put it into boiling " +"water to make a cup of fruit tea." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dandelions" -msgid_plural "dandelions" +msgid "herbal tea bag" +msgid_plural "herbal tea bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for herbal tea bag #: lang/json/COMESTIBLE_from_json.py msgid "" -"A collection of freshly picked yellow dandelions. In their current raw " -"state they are quite bitter." +"A paper sachet with dried wild herbs inside. Put it into boiling water to " +"make a cup of herbal tea." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "burdocks" -msgid_plural "burdocks" +msgid "dandelion tea bag" +msgid_plural "dandelion tea bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for dandelion tea bag #: lang/json/COMESTIBLE_from_json.py -msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." +msgid "" +"A paper sachet with dried dandelion roots inside. Put it into boiling water" +" to make a cup of dandelion tea." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rhubarb" -msgid_plural "rhubarbs" +msgid "chamomile tea bag" +msgid_plural "chamomile tea bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rhubarb +#. ~ Description for chamomile tea bag #: lang/json/COMESTIBLE_from_json.py -msgid "Sour stems of the rhubarb plant, often used in baking pies." +msgid "" +"A paper sachet with dried chamomile inside. Put it into boiling water to " +"make a cup of chamomile tea." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sugar beet" -msgid_plural "sugar beets" -msgstr[0] "цукровий буряк" -msgstr[1] "цукрових буряка" -msgstr[2] "цукрових буряків" -msgstr[3] "цукровий буряк" +msgid "instant coffee mix" +msgid_plural "instant coffee mix" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for sugar beet +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" -"This fleshy root is ripe and flowing with sugars; just takes some processing" -" to extract them." +"A small packet of commercial instant coffee powder. No creamer or sweetener" +" added." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "black tea leaf" -msgid_plural "black tea leaves" +msgid "acid soaked hide" +msgid_plural "acid soaked hides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black tea leaf +#. ~ Description for acid soaked hide #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dried leaves of a tropical plant. You can boil them into tea, or you can " -"just eat them raw. They aren't too filling though." +"Raw hide soaking in a dilute acid solution to extract collagen. After 24 " +"hours the solution can be strained to extract fresh gelatin." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "green tea leaf" -msgid_plural "green tea leaves" +msgid "extracted gelatin" +msgid_plural "extracted gelatins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for green tea leaf +#. ~ Description for extracted gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dried leaves of a tropical plant. You can boil them into green tea, or you " -"can just eat them raw. They aren't too filling though." +"Freshly extracted gelatin in a dilute acid solution. It needs to be " +"strained to separate the gelatin from the acid." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tomato" -msgid_plural "tomatoes" +msgid "protein drink" +msgid_plural "protein drinks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tomato -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Juicy red tomato. It gained popularity in Italy after being brought back " -"from the New World." -msgstr "" - +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "plant marrow" -msgid_plural "plant marrows" +msgid "soylent green drink" +msgid_plural "soylent green drink" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plant marrow +#. ~ Conditional name for protein drink when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "A nutrient rich chunk of plant matter, could be eaten raw or cooked." -msgstr "" +msgid "sapient green drink" +msgid_plural "sapient green drink" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py -msgid "alien fungus chunk" -msgid_plural "alien fungus chunks" +#, python-format +msgid "perturbing %s" +msgid_plural "perturbing %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for alien fungus chunk +#. ~ Description for protein drink #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a chunk of fungal matter from some sort of alien mushroom creature." -" Eating unfamiliar mushrooms is a bad idea." +"A thin slurry of refined protein mixed with water. While quite nutritious, " +"it is not particularly tasty." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wild vegetables" -msgid_plural "wild vegetables" -msgstr[0] "дикі овочі" -msgstr[1] "диких овочей" -msgstr[2] "дикі овочі" -msgstr[3] "дикі овочі" - -#. ~ Description for {'str_sp': 'wild vegetables'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"An assortment of edible-looking wild plants. Most are quite bitter-tasting." -" Some are inedible until cooked." -msgstr "" +msgid "protein powder" +msgid_plural "protein powder" +msgstr[0] "протеїновний порошок" +msgstr[1] "протеїновний порошок" +msgstr[2] "протеїновний порошок" +msgstr[3] "протеїновний порошок" +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "zucchini" -msgid_plural "zucchinis" +msgid "soylent green powder" +msgid_plural "soylent green powder" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for zucchini -#: lang/json/COMESTIBLE_from_json.py -msgid "A tasty summer squash." -msgstr "" - +#. ~ Conditional name for protein powder when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "canola" -msgid_plural "canolas" +msgid "sapient green powder" +msgid_plural "sapient green powder" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for canola +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py -msgid "A pretty stalk of canola. Its seeds can be pressed into oil." +msgid "" +"Raw, refined protein. While quite nutritious, it is impossible to enjoy in " +"its pure form, try adding water." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw beans" -msgid_plural "raw beans" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "protein ration" +msgid_plural "protein rations" +msgstr[0] "білковий раціон" +msgstr[1] "білкові раціони" +msgstr[2] "білкових раціонів" +msgstr[3] "білкові раціони" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for protein ration #: lang/json/COMESTIBLE_from_json.py msgid "" -"Raw, uncooked beans. They are mildly toxic in this form, but you could cook" -" them to make them tasty." +"SoyPelusa ran a highly successful crowdfunding campaign for their signature protein bar, dubbed \"DaiZoom.\"\n" +"\n" +"A person can live on one of these bars, three times a day, presumably forever. After backers received their product, a single flaw was found: most consumers found starvation preferable to the flavor. Warehouses of the product went unsold as the company went bankrupt, providing the perfect opportunity for FEMA to scoop them up and stock the evac shelters.\n" +"\n" +"Now, you hold a piece of famous crowdfunding history in your hands. How exciting." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw lentils" -msgid_plural "raw lentils" +msgid "protein shake" +msgid_plural "protein shakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "Raw, uncooked lentils. They could be cooked." -msgstr "" +msgid "soylent green shake" +msgid_plural "soylent green shake" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for protein shake when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "fiddleheads" -msgid_plural "fiddleheads" +msgid "sapient green shake" +msgid_plural "sapient green shake" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for protein shake #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of immature fern fronds, still curled up like the head of a " -"fiddle. Delicious when cooked, but consuming raw can cause food poisoning." +"A thick and tasty beverage made from pure refined protein and nutritious " +"fruit." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bell pepper" -msgid_plural "bell peppers" +msgid "fortified protein shake" +msgid_plural "fortified protein shakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bell pepper +#. ~ Conditional name for fortified protein shake when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "A green bell pepper. It could be cooked." -msgstr "" +msgid "fortified soylent green shake" +msgid_plural "fortified soylent green shake" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Conditional name for fortified protein shake when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "grilled cheese sandwich" -msgid_plural "grilled cheese sandwiches" +msgid "fortified sapient green shake" +msgid_plural "fortified sapient green shake" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for grilled cheese sandwich +#. ~ Description for fortified protein shake #: lang/json/COMESTIBLE_from_json.py msgid "" -"A delicious grilled cheese sandwich, because everything is better with " -"melted cheese." +"A thick and tasty beverage made from pure refined protein and nutritious " +"fruit. It has been supplemented with extra vitamins and minerals" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deluxe sandwich" -msgid_plural "deluxe sandwiches" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "apple" +msgid_plural "apples" +msgstr[0] "яблуко" +msgstr[1] "яблука" +msgstr[2] "яблук" +msgstr[3] "яблука" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Description for apple #: lang/json/COMESTIBLE_from_json.py -msgid "\"deluxe\" sandwich" -msgid_plural "\"deluxe\" sandwiches" +msgid "An apple a day keeps the doctor away." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "banana" +msgid_plural "bananas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deluxe sandwich +#. ~ Description for banana #: lang/json/COMESTIBLE_from_json.py msgid "" -"A sandwich of meat, vegetables, and cheese with condiments. Tasty and " -"nutritious!" +"A long, curved yellow fruit in a peel. Some people like using them in " +"desserts. Those people are probably dead." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cucumber sandwich" -msgid_plural "cucumber sandwiches" +msgid "orange" +msgid_plural "oranges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cucumber sandwich +#. ~ Description for orange #: lang/json/COMESTIBLE_from_json.py -msgid "A refreshing cucumber sandwich. Not very filling, but quite tasty." +msgid "Sweet citrus fruit. Also comes in juice form." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cheese sandwich" -msgid_plural "cheese sandwiches" +msgid "lemon" +msgid_plural "lemons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cheese sandwich +#. ~ Description for lemon #: lang/json/COMESTIBLE_from_json.py -msgid "A simple cheese sandwich." +msgid "Very sour citrus. Can be eaten if you really want." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "jam sandwich" -msgid_plural "jam sandwiches" +msgid "blueberries" +msgid_plural "blueberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for jam sandwich +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious jam sandwich." +msgid "They're blue, but that doesn't mean they're sad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "jam and cheese sandwich" -msgid_plural "jam and cheese sandwiches" +msgid "strawberries" +msgid_plural "strawberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for jam and cheese sandwich +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious jam and cheese sandwich." +msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "jam and butter sandwich" -msgid_plural "jam and butter sandwiches" +msgid "cranberries" +msgid_plural "cranberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for jam and butter sandwich +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious jam and butter sandwich." +msgid "Sour red berries. Good for your health." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fairy bread" -msgid_plural "fairy bread" +msgid "raspberries" +msgid_plural "raspberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py -msgid "" -"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." +msgid "A sweet red berry." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "honey sandwich" -msgid_plural "honey sandwiches" +msgid "huckleberries" +msgid_plural "huckleberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for honey sandwich +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious honey sandwich." +msgid "Huckleberries, often times confused for blueberries." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "boring sandwich" -msgid_plural "boring sandwiches" +msgid "mulberries" +msgid_plural "mulberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for boring sandwich +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" -"A simple sauce sandwich. Not very filling but beats eating just the bread." +"Mulberries, this red variety is unique to east North America and is " +"described to have the strongest flavor of any variety in the world." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vegetable sandwich" -msgid_plural "vegetable sandwiches" +msgid "elderberries" +msgid_plural "elderberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vegetable sandwich +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py -msgid "Bread and vegetables, that's it." +msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "meat sandwich" -msgid_plural "meat sandwiches" +msgid "rose hips" +msgid_plural "rose hips" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py -msgid "slob sandwich" -msgid_plural "slob sandwiches" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "The fruit of a pollinated rose flower." +msgstr "Плод запиленої трояндової квітки шипшини." -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "satyr sandwich" -msgid_plural "satyr sandwiches" +msgid "juice pulp" +msgid_plural "juice pulps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant -#: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "mutant %s" -msgid_plural "mutant %s" -msgstr[0] "мутантовий %s" -msgstr[1] "мутантові %s" -msgstr[2] "мутантові %s" -msgstr[3] "мутантові %s" - -#. ~ Description for meat sandwich +#. ~ Description for juice pulp #: lang/json/COMESTIBLE_from_json.py -msgid "Bread and meat, that's it." +msgid "" +"Left-over from juicing the fruit. Not very tasty, but contains a lot of " +"healthy fiber." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "peanut butter sandwich" -msgid_plural "peanut butter sandwiches" +msgid "pear" +msgid_plural "pears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for peanut butter sandwich +#. ~ Description for pear #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Some peanut butter smothered between two pieces of bread. Not very filling " -"and will stick to the roof of your mouth like glue." +msgid "A juicy, bell-shaped pear. Yum!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "PB&J sandwich" -msgid_plural "PB&J sandwiches" +msgid "grapefruit" +msgid_plural "grapefruits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for PB&J sandwich +#. ~ Description for grapefruit #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A delicious peanut butter and jelly sandwich. It reminds you of the times " -"your mother would make you lunch." +msgid "A citrus fruit, whose taste ranges from sour to semi-sweet." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "PB&H sandwich" -msgid_plural "PB&H sandwiches" +msgid "cherries" +msgid_plural "cherries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for PB&H sandwich +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Some damned fool put honey on this peanut butter sandwich, who in their " -"right mind- oh wait this is pretty good." +msgid "A red, sweet fruit that grows in trees." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "PB&M sandwich" -msgid_plural "PB&M sandwiches" +msgid "plum" +msgid_plural "plums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for PB&M sandwich +#. ~ Description for plum #: lang/json/COMESTIBLE_from_json.py msgid "" -"Who knew you could mix maple syrup and peanut butter to create yet another " -"different sandwich?" +"A handful of large, purple plums. Healthy and good for your digestion." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fish sandwich" -msgid_plural "fish sandwiches" +msgid "grapes" +msgid_plural "grapes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fish sandwich +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious fish sandwich." +msgid "A cluster of juicy grapes." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fish and spinach bagel" -msgid_plural "fish and spinach bagels" +msgid "pineapple" +msgid_plural "pineapples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fish and spinach bagel +#. ~ Description for pineapple #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious fish bagel with spinach and eggs." +msgid "A large, spiky pineapple. A bit sour, though." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "BLT" -msgid_plural "BLTs" +msgid "coconut" +msgid_plural "coconuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for BLT +#. ~ Description for coconut #: lang/json/COMESTIBLE_from_json.py -msgid "A bacon, lettuce, and tomato sandwich on toasted bread." +msgid "A fruit with a hard and hairy shell." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "seeds" -msgid_plural "seeds" -msgstr[0] "насіння" -msgstr[1] "насіння" -msgstr[2] "насіння" -msgstr[3] "насіння" - -#: lang/json/COMESTIBLE_from_json.py -msgid "fruit seeds" -msgid_plural "fruit seeds" +msgid "peach" +msgid_plural "peaches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for peach #: lang/json/COMESTIBLE_from_json.py -msgid "mushroom spores" -msgid_plural "mushroom spores" +msgid "This fruit's large pit is surrounded by its tasty flesh." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "watermelon" +msgid_plural "watermelons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for watermelon #: lang/json/COMESTIBLE_from_json.py -msgid "Some mushroom spores." +msgid "A fruit, bigger than your head. It is very juicy!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hop rhizomes" -msgid_plural "hop rhizomes" +msgid "melon" +msgid_plural "melons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hop rhizomes'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Roots of a hop plant, for growing your own." -msgstr "" - +#. ~ Description for melon #: lang/json/COMESTIBLE_from_json.py -msgid "hops" +msgid "A large and very sweet fruit." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "blackberry seeds" -msgid_plural "blackberry seeds" +msgid "blackberries" +msgid_plural "blackberries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blackberry seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some blackberry seeds." -msgstr "" - +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py -msgid "blackberry" +msgid "A darker cousin of raspberry." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "blueberry seeds" -msgid_plural "blueberry seeds" +msgid "mango" +msgid_plural "mangos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'blueberry seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some blueberry seeds." -msgstr "" - +#. ~ Description for mango #: lang/json/COMESTIBLE_from_json.py -msgid "blueberry" +msgid "A fleshy fruit with large pit." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cranberry seeds" -msgid_plural "cranberry seeds" +msgid "pomegranate" +msgid_plural "pomegranates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cranberry seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some cranberry seeds." -msgstr "" - +#. ~ Description for pomegranate #: lang/json/COMESTIBLE_from_json.py -msgid "cranberry" +msgid "Under this pomegranate's spongy skin lies hundreds of fleshy seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "huckleberry seeds" -msgid_plural "huckleberry seeds" +msgid "papaya" +msgid_plural "papayas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'huckleberry seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some huckleberry seeds." -msgstr "" - +#. ~ Description for papaya #: lang/json/COMESTIBLE_from_json.py -msgid "huckleberry" +msgid "A very sweet and soft tropical fruit." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mulberry seeds" -msgid_plural "mulberry seeds" +msgid "kiwi" +msgid_plural "kiwis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mulberry seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some mulberry seeds." -msgstr "" - +#. ~ Description for kiwi #: lang/json/COMESTIBLE_from_json.py -msgid "mulberry" +msgid "" +"A large, brown and fuzzy-skinned berry. Its delicious insides are green." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "elderberry seeds" -msgid_plural "elderberry seeds" +msgid "apricots" +msgid_plural "apricots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'elderberry seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some elderberry seeds." -msgstr "" - +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py -msgid "elderberry" +msgid "A smooth-skinned fruit, related to the peach." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raspberry seeds" -msgid_plural "raspberry seeds" +msgid "cholla bud" +msgid_plural "cholla buds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raspberry seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some raspberry seeds." -msgstr "" - +#. ~ Description for cholla bud #: lang/json/COMESTIBLE_from_json.py -msgid "raspberry" +msgid "" +"Edible bud of a cholla cactus, with spines removed; the candy of the Mojave " +"indigenous peoples. Tastes similar to asparagus." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "strawberry seeds" -msgid_plural "strawberry seeds" +msgid "cactus pad" +msgid_plural "cactus pads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'strawberry seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some strawberry seeds." -msgstr "" - +#. ~ Description for cactus pad #: lang/json/COMESTIBLE_from_json.py -msgid "strawberry" +msgid "An edible pad of a cactus." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "grape seeds" -msgid_plural "grape seeds" +msgid "barley" +msgid_plural "barley" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'grape seeds'} #: lang/json/COMESTIBLE_from_json.py -msgid "Some grape seeds." -msgstr "" +msgid "bee balm" +msgid_plural "bee balm" +msgstr[0] "монарда" +msgstr[1] "монарди" +msgstr[2] "монарди" +msgstr[3] "монарда" +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py -msgid "grape" +msgid "" +"A snow-white flower also known as wild bergamot. Smells faintly of mint." msgstr "" +"Белосніжна квітка, також відома як дикий бергамот. Злегка пахне м'ятою." #: lang/json/COMESTIBLE_from_json.py -msgid "rose seeds" -msgid_plural "rose seeds" +msgid "broccoli" +msgid_plural "broccoli" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py -msgid "Some rose seeds." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "rose" +msgid "It's a bit tough, but quite delicious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tobacco seeds" -msgid_plural "tobacco seeds" +msgid "buckwheat" +msgid_plural "buckwheat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tobacco seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some tobacco seeds." -msgstr "" - +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py -msgid "tobacco" +msgid "" +"Seeds from a wild buckwheat plant. Not particularly good to eat in their " +"raw state, they are commonly cooked or ground into flour." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "barley seeds" -msgid_plural "barley seeds" +msgid "cabbage" +msgid_plural "cabbages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for cabbage #: lang/json/COMESTIBLE_from_json.py -msgid "Some barley seeds." +msgid "Crisp white cabbage." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sugar beet seeds" -msgid_plural "sugar beet seeds" -msgstr[0] "наіння цукрового буряка" -msgstr[1] "наіння цукрового буряка" -msgstr[2] "наіння цукрового буряка" -msgstr[3] "наіння цукрового буряка" +msgid "spinach" +msgid_plural "spinach" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py -msgid "Some sugar beet seeds." +msgid "A bunch of spinach leaves." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lettuce seeds" -msgid_plural "lettuce seeds" +msgid "carrot" +msgid_plural "carrots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for carrot #: lang/json/COMESTIBLE_from_json.py -msgid "Some lettuce seeds." +msgid "A healthy root vegetable. Rich in vitamin A!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cabbage seeds" -msgid_plural "cabbage seeds" +msgid "cattail rhizome" +msgid_plural "cattail rhizomes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cattail rhizome #: lang/json/COMESTIBLE_from_json.py -msgid "Some white cabbage seeds." +msgid "" +"A stout branching rhizome from a cattail plant. Its crisp white flesh is " +"very starchy and fibrous, but you really ought to cook it before you attempt" +" to eat it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tomato seeds" -msgid_plural "tomato seeds" +msgid "cattail stalk" +msgid_plural "cattail stalks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for cattail stalk #: lang/json/COMESTIBLE_from_json.py -msgid "Some tomato seeds." +msgid "" +"A stiff green stalk from a cattail plant. It is starchy and fibrous, but it" +" would be much better if you cooked it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cotton seeds" -msgid_plural "cotton seeds" -msgstr[0] "насіння бавовника" -msgstr[1] "насіння бавовника" -msgstr[2] "насіння бавовника" -msgstr[3] "насіння бавовника" +msgid "celery" +msgid_plural "celery" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py -msgid "Some cotton seeds. Can be processed to produce an edible oil." +msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cotton" -msgstr "бавовна" - -#: lang/json/COMESTIBLE_from_json.py -msgid "broccoli seeds" -msgid_plural "broccoli seeds" +msgid "corn cob" +msgid_plural "corn cobs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for corn cob #: lang/json/COMESTIBLE_from_json.py -msgid "Some broccoli seeds." +msgid "" +"A corn cob full of delicious golden kernels. You can eat them on the cob or" +" shell it for cooking." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "zucchini seeds" -msgid_plural "zucchini seeds" +msgid "corn kernels" +msgid_plural "corn kernels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py -msgid "Some zucchini seeds." +msgid "Delicious golden kernels." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "onion seeds" -msgid_plural "onion seeds" +msgid "empty corn cob" +msgid_plural "empty corn cob" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py -msgid "Some onion seeds." +msgid "" +"An empty corn cob. It may seem useless, but it can be used to make stock, a" +" delicious jelly, or as fuel." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "garlic seeds" -msgid_plural "garlic seeds" +msgid "cotton boll" +msgid_plural "cotton bolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'garlic seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some garlic seeds." -msgstr "" - +#. ~ Description for cotton boll #: lang/json/COMESTIBLE_from_json.py -msgid "garlic" +msgid "" +"A tough protective capsule bulging with densely packed fibers and seeds, " +"this cotton boll can be processed into usable material with the right tools." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cattail seeds" -msgid_plural "cattail seeds" -msgstr[0] "насіння рогозу" -msgstr[1] "насіння рогозу" -msgstr[2] "насіння рогозу" -msgstr[3] "насіння рогозу" - -#. ~ Description for {'str_sp': 'cattail seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some cattail seeds." -msgstr "Трохи насіння рогозу." - -#: lang/json/COMESTIBLE_from_json.py -msgid "cattail" -msgstr "рогіз" - -#: lang/json/COMESTIBLE_from_json.py -msgid "dahlia seeds" -msgid_plural "dahlia seeds" +msgid "chili pepper" +msgid_plural "chili peppers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for chili pepper #: lang/json/COMESTIBLE_from_json.py -msgid "Some dahlia seeds." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py lang/json/furniture_from_json.py -msgid "dahlia" +msgid "Spicy chili pepper." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "salsify seeds" -msgid_plural "salsify seeds" +msgid "cucumber" +msgid_plural "cucumbers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for cucumber #: lang/json/COMESTIBLE_from_json.py -msgid "Some salsify seeds." +msgid "Comes from the gourd family. Not tasty but very juicy." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chicory seeds" -msgid_plural "chicory seeds" +msgid "dahlia root" +msgid_plural "dahlia roots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for dahlia root #: lang/json/COMESTIBLE_from_json.py -msgid "Some chicory seeds." +msgid "" +"The large, tuberous root of a dahlia flower. It smells spicy, but is too " +"starchy to eat without cooking." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wild root seeds" -msgid_plural "wild root seeds" +msgid "salsify" +msgid_plural "salsify" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py -msgid "Some seeds from a white flower." +msgid "" +"An herb with a small purple flower. The roots are nutritious, but tough and" +" bland until cooked." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "decorative plant seeds" -msgid_plural "decorative plant seeds" +#: lang/json/COMESTIBLE_from_json.py lang/json/COMESTIBLE_from_json.py +#: lang/json/furniture_from_json.py +msgid "chicory" +msgid_plural "chicory" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" -"Some small decorative plant seeds, likely grass or flower. Don't expect " -"them to be useful for anything other than dry plant material." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "decorative plant" +"A modest blue flower. The flower's roots are very bitter and not meant to " +"be eaten raw." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cactus seeds" -msgid_plural "cactus seeds" +msgid "wild root" +msgid_plural "wild roots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for wild root #: lang/json/COMESTIBLE_from_json.py -msgid "Some cactus seeds." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py lang/json/terrain_from_json.py -msgid "cactus" +msgid "" +"A weed with a cluster of tiny white flowers. These are often wild carrots, " +"but beware of poisonous lookalikes." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "garlic clove" -msgid_plural "garlic cloves" +msgid "dogbane" +msgid_plural "dogbanes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for garlic clove +#. ~ Description for dogbane #: lang/json/COMESTIBLE_from_json.py -msgid "Cloves of garlic. Useful as a seasoning, or for planting." +msgid "" +"A stalk of dogbane. It has very fibrous stems and is mildly poisonous." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "carrot seeds" -msgid_plural "carrot seeds" +msgid "garlic bulb" +msgid_plural "garlic bulbs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for garlic bulb #: lang/json/COMESTIBLE_from_json.py -msgid "Some carrot seeds." +msgid "" +"A pungent garlic bulb. Popular as a seasoning for its strong flavor. Can " +"be disassembled to cloves." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "corn seeds" -msgid_plural "corn seeds" -msgstr[0] "насіння кукурудзи" -msgstr[1] "насіння кукурудзи" -msgstr[2] "насіння кукурудзи" -msgstr[3] "насіння кукурудзи" - -#. ~ Description for {'str_sp': 'corn seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some corn seeds." -msgstr "" +msgid "hops flower" +msgid_plural "hops flowers" +msgstr[0] "квітка хмелю" +msgstr[1] "квітка хмелю" +msgstr[2] "квітки хмелю" +msgstr[3] "квітки хмелю" +#. ~ Description for hops flower #: lang/json/COMESTIBLE_from_json.py -msgid "corn" -msgstr "кукурудза" +msgid "A cluster of small cone-like flowers, indispensable for brewing beer." +msgstr "Гроно невеличких конусоподібних квіток, незамінних для пивоваріння." #: lang/json/COMESTIBLE_from_json.py -msgid "chili pepper seeds" -msgid_plural "chili pepper seeds" +msgid "horseradish root" +msgid_plural "horseradish roots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for horseradish root #: lang/json/COMESTIBLE_from_json.py -msgid "Some chili pepper seeds." +msgid "" +"Large white tapered root of a horseradish plant. Way too spicy in this " +"form, but can be used for making condiments." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cucumber seeds" -msgid_plural "cucumber seeds" +msgid "lettuce" +msgid_plural "lettuces" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for lettuce #: lang/json/COMESTIBLE_from_json.py -msgid "Some cucumber seeds." +msgid "A crisp head of iceberg lettuce." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "seed potato" -msgid_plural "seed potatoes" +msgid "mugwort" +msgid_plural "mugworts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for seed potato -#: lang/json/COMESTIBLE_from_json.py -msgid "A raw potato, cut into pieces, separating each bud for planting." -msgstr "" - +#. ~ Description for mugwort #: lang/json/COMESTIBLE_from_json.py -msgid "potatoes" +msgid "A stalk of mugwort. Smells wonderful." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cannabis seeds" -msgid_plural "cannabis seeds" +msgid "onion" +msgid_plural "onions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for onion #: lang/json/COMESTIBLE_from_json.py msgid "" -"Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " -"eaten raw." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "cannabis" +"An aromatic onion used in cooking. Cutting these up can make your eyes " +"sting!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Marloss seed" -msgid_plural "Marloss seeds" +msgid "fungal fluid sac" +msgid_plural "fungal fluid sacs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Marloss seed +#. ~ Description for fungal fluid sac #: lang/json/COMESTIBLE_from_json.py msgid "" -"This looks like a sunflower seed the size of your palm. It has a strong but" -" delicious aroma, but is clearly either mutated or of alien origin. You " -"could probably plant it." +"A fluid bladder from a fungus based lifeform. Not very nutritious, but fine" +" to eat anyway." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bean seeds" -msgid_plural "bean seeds" +msgid "raw popcorn" +msgid_plural "raw popcorn" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bean seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Raw, uncooked beans, ready for planting." -msgstr "" - +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py -msgid "beans" +msgid "" +"A special variety of corn which could be used for making popcorn, after it's" +" dried. Unlike normal corn, it's not sweet and is more dry." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "soybean seeds" -msgid_plural "soybean seeds" +msgid "raw potato" +msgid_plural "raw potatoes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soybean seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some soybean seeds." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "soybean" -msgstr "" - -#. ~ Description for {'str_sp': 'raw lentils'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Raw, uncooked lentils, ready for planting." -msgstr "" - +#. ~ Description for raw potato #: lang/json/COMESTIBLE_from_json.py -msgid "lentils" +msgid "Mildly toxic and not very tasty raw. When cooked, it is delicious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "thyme seeds" -msgid_plural "thyme seeds" +msgid "pumpkin" +msgid_plural "pumpkins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for pumpkin #: lang/json/COMESTIBLE_from_json.py -msgid "Some thyme seeds." +msgid "" +"A large vegetable, about the size of your head. Not very tasty raw, but is " +"great for cooking." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "thyme" -msgid_plural "thymes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "canola seeds" -msgid_plural "canola seeds" +msgid "horseradish greens" +msgid_plural "horseradish greens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py -msgid "Some canola seeds. You could press them into oil." +msgid "" +"Leaves of a horseradish plant with a sharp, bitter and peppery taste. " +"They're edible, but not commonly eaten." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pumpkin seeds" -msgid_plural "pumpkin seeds" +msgid "dandelions" +msgid_plural "dandelions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py -msgid "Some raw pumpkin seeds. Could be fried and eaten." +msgid "" +"A collection of freshly picked yellow dandelions. In their current raw " +"state they are quite bitter." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sunflower seeds" -msgid_plural "sunflower seeds" +msgid "burdocks" +msgid_plural "burdocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py -msgid "Some raw sunflower seeds. Could be pressed into oil." +msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/GENERIC_from_json.py -#: lang/json/furniture_from_json.py -msgid "sunflower" -msgid_plural "sunflowers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - #: lang/json/COMESTIBLE_from_json.py -msgid "dogbane seeds" -msgid_plural "dogbane seeds" +msgid "rhubarb" +msgid_plural "rhubarbs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for rhubarb #: lang/json/COMESTIBLE_from_json.py -msgid "Some dogbane seeds." +msgid "Sour stems of the rhubarb plant, often used in baking pies." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bee balm seeds" -msgid_plural "bee balm seeds" -msgstr[0] "насіння монарди" -msgstr[1] "насіння монарди" -msgstr[2] "насіння монарди" -msgstr[3] "насіння монарди" +msgid "sugar beet" +msgid_plural "sugar beets" +msgstr[0] "цукровий буряк" +msgstr[1] "цукрових буряка" +msgstr[2] "цукрових буряків" +msgstr[3] "цукровий буряк" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for sugar beet #: lang/json/COMESTIBLE_from_json.py -msgid "Some bee balm seeds." +msgid "" +"This fleshy root is ripe and flowing with sugars; just takes some processing" +" to extract them." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mugwort seeds" -msgid_plural "mugwort seeds" +msgid "black tea leaf" +msgid_plural "black tea leaves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for black tea leaf #: lang/json/COMESTIBLE_from_json.py -msgid "Some mugwort seeds." +msgid "" +"Dried leaves of a tropical plant. You can boil them into tea, or you can " +"just eat them raw. They aren't too filling though." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "buckwheat seeds" -msgid_plural "buckwheat seeds" +msgid "green tea leaf" +msgid_plural "green tea leaves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for green tea leaf #: lang/json/COMESTIBLE_from_json.py -msgid "Some buckwheat seeds." +msgid "" +"Dried leaves of a tropical plant. You can boil them into green tea, or you " +"can just eat them raw. They aren't too filling though." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wild herb seeds" -msgid_plural "wild herb seeds" -msgstr[0] "насіння дикої трави" -msgstr[1] "насіння дикої трави" -msgstr[2] "насіння дикої трави" -msgstr[3] "насіння дикої трави" +msgid "tomato" +msgid_plural "tomatoes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for tomato #: lang/json/COMESTIBLE_from_json.py -msgid "Some seeds harvested from wild herbs." +msgid "" +"Juicy red tomato. It gained popularity in Italy after being brought back " +"from the New World." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wild herb" -msgstr "дика трава" +msgid "plant marrow" +msgid_plural "plant marrows" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for plant marrow #: lang/json/COMESTIBLE_from_json.py -msgid "wild vegetable stems" -msgid_plural "wild vegetable stems" +msgid "A nutrient rich chunk of plant matter, could be eaten raw or cooked." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "alien fungus chunk" +msgid_plural "alien fungus chunks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for alien fungus chunk #: lang/json/COMESTIBLE_from_json.py -msgid "Some wild vegetable stems." +msgid "" +"This is a chunk of fungal matter from some sort of alien mushroom creature." +" Eating unfamiliar mushrooms is a bad idea." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wild vegetable" +msgid "wild vegetables" +msgid_plural "wild vegetables" +msgstr[0] "дикі овочі" +msgstr[1] "диких овочей" +msgstr[2] "дикі овочі" +msgstr[3] "дикі овочі" + +#. ~ Description for wild vegetables +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"An assortment of edible-looking wild plants. Most are quite bitter-tasting." +" Some are inedible until cooked." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dandelion seeds" -msgid_plural "dandelion seeds" +msgid "zucchini" +msgid_plural "zucchinis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for zucchini #: lang/json/COMESTIBLE_from_json.py -msgid "Some dandelion seeds." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py lang/json/furniture_from_json.py -msgid "dandelion" +msgid "A tasty summer squash." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "burdock seeds" -msgid_plural "burdock seeds" +msgid "canola" +msgid_plural "canolas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for canola #: lang/json/COMESTIBLE_from_json.py -msgid "Some burdock seeds." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py lang/json/furniture_from_json.py -msgid "burdock" +msgid "A pretty stalk of canola. Its seeds can be pressed into oil." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rhubarb stems" -msgid_plural "rhubarb stems" +msgid "raw beans" +msgid_plural "raw beans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py -msgid "Some rhubarb stems." +msgid "" +"Raw, uncooked beans. They are mildly toxic in this form, but you could cook" +" them to make them tasty." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "morel mushroom spores" -msgid_plural "morel mushroom spores" +msgid "raw lentils" +msgid_plural "raw lentils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py -msgid "Some morel mushroom spores." +msgid "Raw, uncooked lentils. They could be cooked." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "datura seeds" -msgid_plural "datura seeds" +msgid "fiddleheads" +msgid_plural "fiddleheads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" -"Small, dark seeds from the spiny pods of a datura plant. Full of powerful " -"psychoactive chemicals, these tiny seeds are a potent analgesic and " -"deliriant, and can be deadly in cases of overdose." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py lang/json/furniture_from_json.py -msgid "datura" +"A handful of immature fern fronds, still curled up like the head of a " +"fiddle. Delicious when cooked, but consuming raw can cause food poisoning." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "celery seeds" -msgid_plural "celery seeds" +msgid "bell pepper" +msgid_plural "bell peppers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for bell pepper #: lang/json/COMESTIBLE_from_json.py -msgid "Some celery seeds." +msgid "A green bell pepper. It could be cooked." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "oat seeds" -msgid_plural "oat seeds" +msgid "grilled cheese sandwich" +msgid_plural "grilled cheese sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for grilled cheese sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "Some oat seeds." +msgid "" +"A delicious grilled cheese sandwich, because everything is better with " +"melted cheese." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "oats" -msgid_plural "oats" +msgid "deluxe sandwich" +msgid_plural "deluxe sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "wheat seeds" -msgid_plural "wheat seeds" +msgid "\"deluxe\" sandwich" +msgid_plural "\"deluxe\" sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for deluxe sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "Some wheat seeds." +msgid "" +"A sandwich of meat, vegetables, and cheese with condiments. Tasty and " +"nutritious!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wheat" -msgid_plural "wheat" +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "fried seeds" -msgid_plural "fried seeds" +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for reuben sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" -"Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " -"and tasty." +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Kentucky coffee pod" -msgid_plural "Kentucky coffee pods" +msgid "cucumber sandwich" +msgid_plural "cucumber sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Kentucky coffee pod +#. ~ Description for cucumber sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Coffee pods taken from a Kentucky coffeetree. If washed thoroughly and " -"roasted, you could use them to make a dark and bitter brew much like coffee." +msgid "A refreshing cucumber sandwich. Not very filling, but quite tasty." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "coffee beans" -msgid_plural "coffee beans" +msgid "cheese sandwich" +msgid_plural "cheese sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for cheese sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "Some coffee beans, can be roasted." +msgid "A simple cheese sandwich." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "roasted coffee beans" -msgid_plural "roasted coffee beans" +msgid "jam sandwich" +msgid_plural "jam sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for jam sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "Some roasted coffee beans, can be ground into powder." +msgid "A delicious jam sandwich." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chamomile seeds" -msgid_plural "chamomile seeds" +msgid "jam and cheese sandwich" +msgid_plural "jam and cheese sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for jam and cheese sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "Some chamomile seeds." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py lang/json/furniture_from_json.py -msgid "chamomile" +msgid "A delicious jam and cheese sandwich." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "spurge seeds" -msgid_plural "spurge seeds" +msgid "jam and butter sandwich" +msgid_plural "jam and butter sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spurge seeds'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Some spurge seeds." -msgstr "" - +#. ~ Description for jam and butter sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "spurge" +msgid "A delicious jam and butter sandwich." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "popcorn seeds" -msgid_plural "popcorn seeds" +msgid "fairy bread" +msgid_plural "fairy bread" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py -msgid "Some popcorn seeds." +msgid "" +"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." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "horseradish seeds" -msgid_plural "horseradish seeds" +msgid "honey sandwich" +msgid_plural "honey sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for honey sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "Some horseradish seeds." +msgid "A delicious honey sandwich." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mustard seeds" -msgid_plural "mustard seeds" +msgid "boring sandwich" +msgid_plural "boring sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for boring sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "Some mustard seeds. Could be ground into mustard powder." +msgid "" +"A simple sauce sandwich. Not very filling but beats eating just the bread." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "bell pepper seeds" -msgid_plural "bell pepper seeds" +msgid "vegetable sandwich" +msgid_plural "vegetable sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for vegetable sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "Some bell pepper seeds." +msgid "Bread and vegetables, that's it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "broth" -msgid_plural "broths" +msgid "meat sandwich" +msgid_plural "meat sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broth -#: lang/json/COMESTIBLE_from_json.py -msgid "Vegetable stock. Tasty and fairly nutritious." -msgstr "" - +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "bone broth" -msgid_plural "bone broths" +msgid "slob sandwich" +msgid_plural "slob sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches +#. ~ Conditional name for meat sandwich when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -#, python-format -msgid "demihuman %s" -msgid_plural "demihuman %s" +msgid "satyr sandwich" +msgid_plural "satyr sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bone broth +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "A tasty and nutritious broth made from bones." +#, python-format +msgid "mutant %s" +msgid_plural "mutant %s" +msgstr[0] "мутантовий %s" +msgstr[1] "мутантові %s" +msgstr[2] "мутантові %s" +msgstr[3] "мутантові %s" + +#. ~ Description for meat sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "Bread and meat, that's it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vegetable soup" -msgid_plural "vegetable soups" +msgid "peanut butter sandwich" +msgid_plural "peanut butter sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vegetable soup +#. ~ Description for peanut butter sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "A nutritious and delicious hearty vegetable soup." +msgid "" +"Some peanut butter smothered between two pieces of bread. Not very filling " +"and will stick to the roof of your mouth like glue." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "meat soup" -msgid_plural "meat soups" +msgid "PB&J sandwich" +msgid_plural "PB&J sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Description for PB&J sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "sap soup" -msgid_plural "sap soup" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A delicious peanut butter and jelly sandwich. It reminds you of the times " +"your mother would make you lunch." +msgstr "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "goblin soup" -msgid_plural "goblin soup" +msgid "PB&H sandwich" +msgid_plural "PB&H sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for meat soup +#. ~ Description for PB&H sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "A nutritious and delicious hearty meat soup." +msgid "" +"Some damned fool put honey on this peanut butter sandwich, who in their " +"right mind- oh wait this is pretty good." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fish soup" -msgid_plural "fish soups" +msgid "PB&M sandwich" +msgid_plural "PB&M sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fish soup +#. ~ Description for PB&M sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "A nutritious and delicious hearty fish soup." +msgid "" +"Who knew you could mix maple syrup and peanut butter to create yet another " +"different sandwich?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "curry" -msgid_plural "curries" +msgid "fish sandwich" +msgid_plural "fish sandwiches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for curry +#. ~ Description for fish sandwich #: lang/json/COMESTIBLE_from_json.py -msgid "Spicy, and filled with bits of peppers. It's pretty good." +msgid "A delicious fish sandwich." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "curry with meat" -msgid_plural "curries with meat" +msgid "fish and spinach bagel" +msgid_plural "fish and spinach bagels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Description for fish and spinach bagel #: lang/json/COMESTIBLE_from_json.py -msgid "creature curry" -msgid_plural "creature curries" +msgid "A delicious fish bagel with spinach and eggs." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "BLT" +msgid_plural "BLTs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for curry with meat +#. ~ Description for BLT #: lang/json/COMESTIBLE_from_json.py -msgid "Spicy, and filled with bits of peppers and meat! It's pretty good." +msgid "A bacon, lettuce, and tomato sandwich on toasted bread." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "woods meat soup" -msgid_plural "woods meat soups" +msgid "seeds" +msgid_plural "seeds" +msgstr[0] "насіння" +msgstr[1] "насіння" +msgstr[2] "насіння" +msgstr[3] "насіння" + +#: lang/json/COMESTIBLE_from_json.py +msgid "fruit seeds" +msgid_plural "fruit seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant #: lang/json/COMESTIBLE_from_json.py -msgid "Mirkwood soup" -msgid_plural "Mirkwood soups" +msgid "mushroom spores" +msgid_plural "mushroom spores" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for woods meat soup -#. ~ Description for woods egg soup +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py -msgid "A nutritious and delicious soup, made of gifts of nature." +msgid "Some mushroom spores." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "woods egg soup" -msgid_plural "woods egg soups" +msgid "hop rhizomes" +msgid_plural "hop rhizomes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py -msgid "chicken noodle soup" -msgid_plural "chicken noodle soups" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Roots of a hop plant, for growing your own." +msgstr "" -#. ~ Description for chicken noodle soup #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Chicken chunks and noodles swimming in a salty broth. Rumored to help cure " -"colds." +msgid "hops" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mushroom soup" -msgid_plural "mushroom soups" +msgid "blackberry seeds" +msgid_plural "blackberry seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mushroom soup +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py -msgid "A mushy, gray semi-liquid soup made from mushrooms." +msgid "Some blackberry seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tomato soup" -msgid_plural "tomato soups" +msgid "blackberry" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "blueberry seeds" +msgid_plural "blueberry seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tomato soup +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"It smells of tomatoes. Not very filling, but it goes well with grilled " -"cheese." +msgid "Some blueberry seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chicken and dumplings" -msgid_plural "chicken and dumplings" +msgid "blueberry" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "cranberry seeds" +msgid_plural "cranberry seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py -msgid "A soup with chicken chunks and balls of dough. Not bad." +msgid "Some cranberry seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cullen skink" -msgid_plural "cullen skinks" +msgid "cranberry" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "huckleberry seeds" +msgid_plural "huckleberry seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cullen skink +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A rich and tasty fish chowder from Scotland, made with preserved fish and " -"creamy milk." +msgid "Some huckleberry seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chili powder" -msgid_plural "chili powder" +msgid "huckleberry" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "mulberry seeds" +msgid_plural "mulberry seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Chilly P, Yo! Not edible on its own, but it could be used to make " -"seasoning." +msgid "Some mulberry seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hot sauce" -msgid_plural "hot sauce" +msgid "mulberry" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "elderberry seeds" +msgid_plural "elderberry seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " -"your hands after handling." +msgid "Some elderberry seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cinnamon" -msgid_plural "cinnamon" +msgid "elderberry" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "raspberry seeds" +msgid_plural "raspberry seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py -msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." +msgid "Some raspberry seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "curry powder" -msgid_plural "curry powder" +msgid "raspberry" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "strawberry seeds" +msgid_plural "strawberry seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A blend of spices meant to be used in some South Asian dishes. Can't be " -"eaten raw, why would you even try that?" +msgid "Some strawberry seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "black pepper" -msgid_plural "black pepper" +msgid "strawberry" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "grape seeds" +msgid_plural "grape seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py -msgid "Ground black spice berries with a pungent aroma." +msgid "Some grape seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "salt" -msgid_plural "salt" +msgid "grape" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "rose seeds" +msgid_plural "rose seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Yuck! You surely wouldn't want to eat this. It's good for preserving meat " -"and cooking, though." +msgid "Some rose seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Italian seasoning" -msgid_plural "Italian seasoning" +msgid "rose" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tobacco seeds" +msgid_plural "tobacco seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py -msgid "A fragrant mix of dried oregano, basil, thyme and other spices." +msgid "Some tobacco seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "seasoned salt" -msgid_plural "seasoned salt" +msgid "tobacco" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "barley seeds" +msgid_plural "barley seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py -msgid "Salt mixed with a fragrant blend of secret herbs and spices." +msgid "Some barley seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sugar" -msgid_plural "sugar" -msgstr[0] "цукор" -msgstr[1] "цукру" -msgstr[2] "цукру" -msgstr[3] "цукор" +msgid "sugar beet seeds" +msgid_plural "sugar beet seeds" +msgstr[0] "наіння цукрового буряка" +msgstr[1] "наіння цукрового буряка" +msgstr[2] "наіння цукрового буряка" +msgstr[3] "наіння цукрового буряка" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " -"its own." +msgid "Some sugar beet seeds." msgstr "" -"Солодкий, солоденький цукор. Поганий для ваших зубів, і, на подив, не дуже " -"смакує сам по собі." #: lang/json/COMESTIBLE_from_json.py -msgid "sprinkles" -msgid_plural "sprinkles" +msgid "lettuce seeds" +msgid_plural "lettuce seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" -"thousands', these colorful balls, rods or flakes of sugar and starch are " -"intended for use decorating soft surfaces of sweets. Like sugar, they are " -"bad for your teeth and surprisingly not very tasty on their own." +msgid "Some lettuce seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wild herbs" -msgid_plural "wild herbs" -msgstr[0] "дикі трави" -msgstr[1] "дикі трави" -msgstr[2] "дикі трави" -msgstr[3] "дикі трави" +msgid "cabbage seeds" +msgid_plural "cabbage seeds" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A tasty collection of wild herbs including violet, sassafras, mint, clover, " -"purslane, and fireweed." +msgid "Some white cabbage seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "soy sauce" -msgid_plural "soy sauce" +msgid "tomato seeds" +msgid_plural "tomato seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py -msgid "Salty fermented soybean sauce." +msgid "Some tomato seeds." msgstr "" -#. ~ Description for thyme #: lang/json/COMESTIBLE_from_json.py -msgid "A stalk of thyme. Smells delicious." +msgid "cotton seeds" +msgid_plural "cotton seeds" +msgstr[0] "насіння бавовника" +msgstr[1] "насіння бавовника" +msgstr[2] "насіння бавовника" +msgstr[3] "насіння бавовника" + +#. ~ Description for cotton seeds +#: lang/json/COMESTIBLE_from_json.py +msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mustard powder" -msgid_plural "mustard powder" +msgid "cotton" +msgstr "бавовна" + +#: lang/json/COMESTIBLE_from_json.py +msgid "broccoli seeds" +msgid_plural "broccoli seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py -msgid "A fragnant yellow powder. Not edible in this form." +msgid "Some broccoli seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "artificial sweetener" -msgid_plural "artificial sweeteners" +msgid "zucchini seeds" +msgid_plural "zucchini seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for artificial sweetener +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Sweet, sweet sugar? No, it is bitter-sweet artificial sweetener. No " -"calories, no worries." +msgid "Some zucchini seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked cattail stalk" -msgid_plural "cooked cattail stalks" +msgid "onion seeds" +msgid_plural "onion seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked cattail stalk +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A cooked stalk from a cattail plant. Its fibrous outer leaves have been " -"stripped away and now it is quite delicious." +msgid "Some onion seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "roasted cattail rhizome" -msgid_plural "roasted cattail rhizomes" +msgid "garlic seeds" +msgid_plural "garlic seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for roasted cattail rhizome +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A roasted root from a cattail plant. Its fibrous outer core is charred " -"black, you can remove it and chew on the dry inside." +msgid "Some garlic seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "starch" -msgid_plural "starch" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "garlic" +msgstr "" -#. ~ Description for {'str_sp': 'starch'} #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " -"quickly if not prepared for storage." -msgstr "" +msgid "cattail seeds" +msgid_plural "cattail seeds" +msgstr[0] "насіння рогозу" +msgstr[1] "насіння рогозу" +msgstr[2] "насіння рогозу" +msgstr[3] "насіння рогозу" +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py -msgid "cooked dandelion greens" -msgid_plural "cooked dandelion greens" +msgid "Some cattail seeds." +msgstr "Трохи насіння рогозу." + +#: lang/json/COMESTIBLE_from_json.py +msgid "cattail" +msgstr "рогіз" + +#: lang/json/COMESTIBLE_from_json.py +msgid "dahlia seeds" +msgid_plural "dahlia seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py -msgid "Cooked leaves from wild dandelions. Tasty and nutritious." +msgid "Some dahlia seeds." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py lang/json/furniture_from_json.py +msgid "dahlia" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fried dandelions" -msgid_plural "fried dandelions" +msgid "salsify seeds" +msgid_plural "salsify seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Wild dandelion flowers that have been pan fried. Very tasty and nutritious." +msgid "Some salsify seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked burdock greens" -msgid_plural "cooked burdock greens" +msgid "chicory seeds" +msgid_plural "chicory seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py -msgid "Cooked burdock leaves. Tasty and nutritious." +msgid "Some chicory seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fried burdocks" -msgid_plural "fried burdocks" +msgid "wild root seeds" +msgid_plural "wild root seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Wild burdocks that have been battered and deep-fried. Very tasty and " -"nutritious." +msgid "Some seeds from a white flower." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fried dandelions and burdocks" -msgid_plural "fried dandelions burdocks" +msgid "decorative plant seeds" +msgid_plural "decorative plant seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fried dandelions and burdocks +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" -"Wild dandelions and burdocks that have been battered and deep-fried. Very " -"tasty and nutritious." +"Some small decorative plant seeds, likely grass or flower. Don't expect " +"them to be useful for anything other than dry plant material." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked plant marrow" -msgid_plural "cooked plant marrows" +msgid "decorative plant" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "cactus seeds" +msgid_plural "cactus seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked plant marrow +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py -msgid "A freshly cooked chunk of plant matter, tasty and nutritious." +msgid "Some cactus seeds." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py lang/json/terrain_from_json.py +msgid "cactus" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked wild vegetables" -msgid_plural "cooked wild vegetables" +msgid "garlic clove" +msgid_plural "garlic cloves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for garlic clove #: lang/json/COMESTIBLE_from_json.py -msgid "Cooked wild edible plants. An interesting mix of flavors." +msgid "Cloves of garlic. Useful as a seasoning, or for planting." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vegetable aspic" -msgid_plural "vegetable aspics" +msgid "carrot seeds" +msgid_plural "carrot seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vegetable aspic +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A dish in which vegetables are set into a gelatin made from a plant stock." +msgid "Some carrot seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked buckwheat" -msgid_plural "cooked buckwheat" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "corn seeds" +msgid_plural "corn seeds" +msgstr[0] "насіння кукурудзи" +msgstr[1] "насіння кукурудзи" +msgstr[2] "насіння кукурудзи" +msgstr[3] "насіння кукурудзи" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A serving of cooked buckwheat groats. Healthy and nutritious but bland." +msgid "Some corn seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned corn" -msgid_plural "canned corn" +msgid "corn" +msgstr "кукурудза" + +#: lang/json/COMESTIBLE_from_json.py +msgid "chili pepper seeds" +msgid_plural "chili pepper seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py -msgid "Canned corn in water. Eat up!" +msgid "Some chili pepper seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "corn on the cob" -msgid_plural "corn on the cob" +msgid "cucumber seeds" +msgid_plural "cucumber seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py -msgid "An ear of corn cooked in foil." +msgid "Some cucumber seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pan roasted corn" -msgid_plural "pan roasted corn" +msgid "seed potato" +msgid_plural "seed potatoes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for seed potato #: lang/json/COMESTIBLE_from_json.py -msgid "Corn roasted in a frying pan with herbs and spices." +msgid "A raw potato, cut into pieces, separating each bud for planting." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hominy" -msgid_plural "hominy" +msgid "potatoes" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "cannabis seeds" +msgid_plural "cannabis seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" -"Corn kernels which have been cooked in an alkaline solution and then rinsed," -" making them better suited for eating or cooking." +"Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " +"eaten raw." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cornmeal" -msgid_plural "cornmeal" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for {'str_sp': 'cornmeal'} -#: lang/json/COMESTIBLE_from_json.py -msgid "This yellow cornmeal is useful for baking." +msgid "cannabis" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vegetarian baked beans" -msgid_plural "vegetarian baked beans" +msgid "Marloss seed" +msgid_plural "Marloss seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for Marloss seed #: lang/json/COMESTIBLE_from_json.py -msgid "Slow-cooked beans with vegetables. Tasty and very filling." +msgid "" +"This looks like a sunflower seed the size of your palm. It has a strong but" +" delicious aroma, but is clearly either mutated or of alien origin. You " +"could probably plant it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dried rice" -msgid_plural "dried rice" +msgid "bean seeds" +msgid_plural "bean seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " -"inedible when dry." +msgid "Raw, uncooked beans, ready for planting." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked rice" -msgid_plural "cooked rice" +msgid "beans" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "soybean seeds" +msgid_plural "soybean seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py -msgid "A hearty serving of cooked long-grain white rice." +msgid "Some soybean seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fried rice" -msgid_plural "fried rice" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "soybean" +msgstr "" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py -msgid "Delicious fried rice with vegetables. Tasty and very filling." +msgid "Raw, uncooked lentils, ready for planting." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "beans and rice" -msgid_plural "beans and rice" +msgid "lentils" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "thyme seeds" +msgid_plural "thyme seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A serving of beans and rice that has been cooked together. Delicious and " -"healthy!" +msgid "Some thyme seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tofu fried rice" -msgid_plural "tofu fried rice" +msgid "thyme" +msgid_plural "thymes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tofu fried rice'} -#: lang/json/COMESTIBLE_from_json.py -msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." -msgstr "" - #: lang/json/COMESTIBLE_from_json.py -msgid "tofu stirfry" -msgid_plural "tofu stirfry" +msgid "canola seeds" +msgid_plural "canola seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " -"through these dark days." +msgid "Some canola seeds. You could press them into oil." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deluxe vegetarian beans and rice" -msgid_plural "deluxe vegetarian beans and rice" +msgid "pumpkin seeds" +msgid_plural "pumpkin seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " -"filling." +msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "baked potato" -msgid_plural "baked potatoes" +msgid "sunflower seeds" +msgid_plural "sunflower seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for baked potato +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious baked potato. Got any sour cream?" +msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "roasted carrot" -msgid_plural "roasted carrots" +#: lang/json/COMESTIBLE_from_json.py lang/json/GENERIC_from_json.py +#: lang/json/furniture_from_json.py +msgid "sunflower" +msgid_plural "sunflowers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for roasted carrot -#: lang/json/COMESTIBLE_from_json.py -msgid "A simple, tasty roasted carrot." -msgstr "" - #: lang/json/COMESTIBLE_from_json.py -msgid "mashed pumpkin" -msgid_plural "mashed pumpkins" +msgid "dogbane seeds" +msgid_plural "dogbane seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mashed pumpkin +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is a simple dish made by cooking the pumpkin pulp and then mashing." +msgid "Some dogbane seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vegetable pie" -msgid_plural "vegetable pies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "bee balm seeds" +msgid_plural "bee balm seeds" +msgstr[0] "насіння монарди" +msgstr[1] "насіння монарди" +msgstr[2] "насіння монарди" +msgstr[3] "насіння монарди" -#. ~ Description for vegetable pie +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious baked pie with a delicious vegetable filling." +msgid "Some bee balm seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vegetable pizza" -msgid_plural "vegetable pizzas" +msgid "mugwort seeds" +msgid_plural "mugwort seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vegetable pizza +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A vegetarian pizza, with delicious tomato sauce and a fluffy crust. Its " -"smell brings back great memories." +msgid "Some mugwort seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pesto" -msgid_plural "pesto" +msgid "buckwheat seeds" +msgid_plural "buckwheat seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py -msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." +msgid "Some buckwheat seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "canned veggy" -msgid_plural "canned veggies" +msgid "wild herb seeds" +msgid_plural "wild herb seeds" +msgstr[0] "насіння дикої трави" +msgstr[1] "насіння дикої трави" +msgstr[2] "насіння дикої трави" +msgstr[3] "насіння дикої трави" + +#. ~ Description for wild herb seeds +#: lang/json/COMESTIBLE_from_json.py +msgid "Some seeds harvested from wild herbs." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "wild herb" +msgstr "дика трава" + +#: lang/json/COMESTIBLE_from_json.py +msgid "wild vegetable stems" +msgid_plural "wild vegetable stems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for canned veggy +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This mushy pile of vegetable matter was boiled and canned in an earlier " -"life. Better eat it before it oozes through your fingers." +msgid "Some wild vegetable stems." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "salted veggy chunk" -msgid_plural "salted veggy chunks" +msgid "wild vegetable" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "dandelion seeds" +msgid_plural "dandelion seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for salted veggy chunk +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Vegetable chunks pickled in a salt bath. Goes well with burgers, if only " -"you can find one." +msgid "Some dandelion seeds." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py lang/json/furniture_from_json.py +msgid "dandelion" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "spaghetti al pesto" -msgid_plural "spaghetti al pesto" +msgid "burdock seeds" +msgid_plural "burdock seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py -msgid "Spaghetti, with a generous helping of pesto on top. Yum!" +msgid "Some burdock seeds." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py lang/json/furniture_from_json.py +msgid "burdock" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pickle" -msgid_plural "pickles" +msgid "rhubarb stems" +msgid_plural "rhubarb stems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pickle +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A pickled cucumber. Rather sour, but tastes good and lasts for a long time." +msgid "Some rhubarb stems." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sauerkraut w/ sautee'd onions" -msgid_plural "sauerkraut w/ sautee'd onions" +msgid "morel mushroom spores" +msgid_plural "morel mushroom spores" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is a delicious sautee of lovely diced onions and sauerkraut. The smell" -" alone is enough to make your mouth water." +msgid "Some morel mushroom spores." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pickled veggy" -msgid_plural "pickled veggies" +msgid "datura seeds" +msgid_plural "datura seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pickled veggy +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a serving of crisply brined and canned vegetable matter. Tasty and " -"nutritious." +"Small, dark seeds from the spiny pods of a datura plant. Full of powerful " +"psychoactive chemicals, these tiny seeds are a potent analgesic and " +"deliriant, and can be deadly in cases of overdose." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "dehydrated vegetable" -msgid_plural "dehydrated vegetables" -msgstr[0] "сушений овоч" -msgstr[1] "сушених овоча" -msgstr[2] "сушених овочів" -msgstr[3] "сушені овочі" - -#. ~ Description for dehydrated vegetable -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Dehydrated vegetable flakes. With proper storage, this dried food will " -"remain edible for an incredibly long time." +#: lang/json/COMESTIBLE_from_json.py lang/json/furniture_from_json.py +msgid "datura" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dehydrated corn kernels" -msgid_plural "dehydrated corn kernels" +msgid "celery seeds" +msgid_plural "celery seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py -msgid "A handful of dried corn kernels." +msgid "Some celery seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rehydrated vegetable" -msgid_plural "rehydrated vegetables" +msgid "oat seeds" +msgid_plural "oat seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rehydrated vegetable +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Reconstituted vegetable flakes, which are much more enjoyable to eat now " -"that they have been rehydrated." +msgid "Some oat seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "rehydrated corn kernels" -msgid_plural "rehydrated corn kernels" +msgid "oats" +msgid_plural "oats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Reconstituted corn kernels; much more enjoyable to eat now that they have " -"been rehydrated." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "vegetable salad" -msgid_plural "vegetable salads" +msgid "wheat seeds" +msgid_plural "wheat seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vegetable salad +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py -msgid "Salad with all kind of vegetables." +msgid "Some wheat seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dried salad" -msgid_plural "dried salads" +msgid "wheat" +msgid_plural "wheat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dried salad -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Dried salad packed in a box with mayonnaise and ketchup. Add water to " -"enjoy." -msgstr "" - #: lang/json/COMESTIBLE_from_json.py -msgid "insta-salad" -msgid_plural "insta-salads" +msgid "fried seeds" +msgid_plural "fried seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for insta-salad +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dried salad with water added, not very tasty but still a decent substitution" -" for real salad." +"Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " +"and tasty." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "baked dahlia root" -msgid_plural "baked dahlia roots" +msgid "Kentucky coffee pod" +msgid_plural "Kentucky coffee pods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for baked dahlia root +#. ~ Description for Kentucky coffee pod #: lang/json/COMESTIBLE_from_json.py msgid "" -"Baking this dahlia root has broken down the starch, making it softer and " -"sweeter." +"Coffee pods taken from a Kentucky coffeetree. If washed thoroughly and " +"roasted, you could use them to make a dark and bitter brew much like coffee." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "roasted salsify" -msgid_plural "roasted salsifies" +msgid "coffee beans" +msgid_plural "coffee beans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for roasted salsify +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py -msgid "" -"When properly cooked, salsify tastes vaguely like oysters. Makes a great " -"side dish." +msgid "Some coffee beans, can be roasted." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sushi rice" -msgid_plural "sushi rice" +msgid "roasted coffee beans" +msgid_plural "roasted coffee beans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py -msgid "A serving of sticky vinegared rice commonly used in sushi." +msgid "Some roasted coffee beans, can be ground into powder." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "onigiri" -msgid_plural "onigiri" +msgid "chamomile seeds" +msgid_plural "chamomile seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A triangular block of tasty sushi rice with a healthy green vegetable folded" -" around it." +msgid "Some chamomile seeds." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py lang/json/furniture_from_json.py +msgid "chamomile" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vegetable hosomaki" -msgid_plural "vegetable hosomaki" +msgid "spurge seeds" +msgid_plural "spurge seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " -"healthy green vegetable." +msgid "Some spurge seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dehydrated alien fungus chunk" -msgid_plural "dehydrated alien fungus chunks" -msgstr[0] "сушений шматок позаземного гриба" -msgstr[1] "сушених шматка позаземного гриба" -msgstr[2] "сушених шматків позаземного гриба" -msgstr[3] "сушений шматок позаземного гриба" - -#. ~ Description for dehydrated alien fungus chunk -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Pieces of alien mushroom that have been dried to prevent them from rotting " -"away. It will still poison you if you eat this." +msgid "spurge" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sauerkraut" -msgid_plural "sauerkraut" +msgid "popcorn seeds" +msgid_plural "popcorn seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This crunchy, sour topping made from lettuce or cabbage is perfect for your " -"hot dogs and hamburgers, or, if you're desperate, straight to your stomach." +msgid "Some popcorn seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "nopalito" -msgid_plural "nopalitos" +msgid "horseradish seeds" +msgid_plural "horseradish seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nopalito +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py -msgid "A less prickly version of cactus pads." +msgid "Some horseradish seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "boiled fiddleheads" -msgid_plural "boiled fiddleheads" +msgid "mustard seeds" +msgid_plural "mustard seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py -msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." +msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sauteed fiddleheads" -msgid_plural "sauteed fiddleheads" +msgid "bell pepper seeds" +msgid_plural "bell pepper seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py -msgid "Fiddleheads sauteed in fat. Tender and delicious." +msgid "Some bell pepper seeds." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked bell pepper" -msgid_plural "cooked bell peppers" +msgid "broth" +msgid_plural "broths" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked bell pepper -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A cored and cooked bell pepper. It is far more enjoyable now that the seeds" -" are removed." -msgstr "" - -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for broth #: lang/json/COMESTIBLE_from_json.py -msgid "Raw wheat, not very tasty." +msgid "Vegetable stock. Tasty and fairly nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw spaghetti pasta" -msgid_plural "raw spaghetti pasta" +msgid "bone broth" +msgid_plural "bone broths" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A type of pasta usually used when preparing spaghetti. It could be eaten " -"raw if you're desperate, but is much better cooked." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "raw lasagne pasta" -msgid_plural "raw lasagne pasta" +#, python-format +msgid "demihuman %s" +msgid_plural "demihuman %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for bone broth #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A pasta sheet used in making lasagne. It could be eaten raw if you're " -"desperate, but is much better cooked." +msgid "A tasty and nutritious broth made from bones." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "boiled noodles" -msgid_plural "boiled noodles" +msgid "vegetable soup" +msgid_plural "vegetable soups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for vegetable soup #: lang/json/COMESTIBLE_from_json.py -msgid "Fresh wet noodles. Fairly bland, but fills you up." +msgid "A nutritious and delicious hearty vegetable soup." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw macaroni" -msgid_plural "raw macaroni" +msgid "meat soup" +msgid_plural "meat soups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw macaroni'} -#: lang/json/COMESTIBLE_from_json.py -msgid "It could be eaten raw if you're desperate, but is much better cooked." -msgstr "" - +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py -msgid "mac & cheese" -msgid_plural "mac & cheese" +msgid "sap soup" +msgid_plural "sap soup" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mac & cheese'} -#: lang/json/COMESTIBLE_from_json.py -msgid "When the cheese starts flowing, Kraft gets your noodle going." -msgstr "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "flour" -msgid_plural "flour" -msgstr[0] "борошно" -msgstr[1] "борошна" -msgstr[2] "борошна" -msgstr[3] "борошно" - -#. ~ Description for {'str_sp': 'flour'} -#: lang/json/COMESTIBLE_from_json.py -msgid "This enriched white flour is useful for baking." -msgstr "" - +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py -msgid "bread flour" -msgid_plural "bread flour" +msgid "goblin soup" +msgid_plural "goblin soup" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for meat soup #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This white flour is useful for adding more stretch and chew to bread while " -"baking." +msgid "A nutritious and delicious hearty meat soup." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "oatmeal" -msgid_plural "oatmeal" +msgid "fish soup" +msgid_plural "fish soups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'oatmeal'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " -"doubles as food for horses while dry." -msgstr "" - -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for fish soup #: lang/json/COMESTIBLE_from_json.py -msgid "Raw oats." +msgid "A nutritious and delicious hearty fish soup." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked oatmeal" -msgid_plural "cooked oatmeal" +msgid "curry" +msgid_plural "curries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for curry #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A filling and nutritious New England classic that has sustained pioneers and" -" captains of industry alike." +msgid "Spicy, and filled with bits of peppers. It's pretty good." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "deluxe cooked oatmeal" -msgid_plural "deluxe cooked oatmeal" +msgid "curry with meat" +msgid_plural "curries with meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A filling and nutritious New England classic that has been improved with the" -" addition of extra wholesome ingredients." -msgstr "" - +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "pancake" -msgid_plural "pancakes" +msgid "creature curry" +msgid_plural "creature curries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pancake +#. ~ Description for curry with meat #: lang/json/COMESTIBLE_from_json.py -msgid "Fluffy and delicious pancakes with real maple syrup." +msgid "Spicy, and filled with bits of peppers and meat! It's pretty good." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fruit pancake" -msgid_plural "fruit pancakes" +msgid "woods meat soup" +msgid_plural "woods meat soups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit pancake -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Fluffy and delicious pancakes with real maple syrup, made sweeter and " -"healthier with the addition of wholesome fruit." -msgstr "" - +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py -msgid "French toast" -msgid_plural "French toasts" +msgid "Mirkwood soup" +msgid_plural "Mirkwood soups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for French toast +#. ~ Description for woods meat soup +#. ~ Description for woods egg soup #: lang/json/COMESTIBLE_from_json.py -msgid "Slices of bread dipped in a milk and egg mixture then fried." +msgid "A nutritious and delicious soup, made of gifts of nature." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "waffle" -msgid_plural "waffles" +msgid "woods egg soup" +msgid_plural "woods egg soups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for waffle -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Hey it's waffle time, it's waffle time. Won't you have some waffles of " -"mine?" -msgstr "" - #: lang/json/COMESTIBLE_from_json.py -msgid "fruit waffle" -msgid_plural "fruit waffles" +msgid "chicken noodle soup" +msgid_plural "chicken noodle soups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit waffle +#. ~ Description for chicken noodle soup #: lang/json/COMESTIBLE_from_json.py msgid "" -"Crunchy and delicious waffles with real maple syrup, made sweeter and " -"healthier with the addition of wholesome fruit." +"Chicken chunks and noodles swimming in a salty broth. Rumored to help cure " +"colds." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/MONSTER_from_json.py -msgid "cracker" -msgid_plural "crackers" +#: lang/json/COMESTIBLE_from_json.py +msgid "mushroom soup" +msgid_plural "mushroom soups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cracker +#. ~ Description for mushroom soup #: lang/json/COMESTIBLE_from_json.py -msgid "Dry and salty, these crackers will leave you quite thirsty." +msgid "A mushy, gray semi-liquid soup made from mushrooms." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgctxt "oyster crackers" -msgid "oyster crackers" -msgid_plural "oyster crackers" +msgid "tomato soup" +msgid_plural "tomato soups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for tomato soup #: lang/json/COMESTIBLE_from_json.py msgid "" -"These bite-sized crackers go well with soups, but will make you thirsty on " -"their own." +"It smells of tomatoes. Not very filling, but it goes well with grilled " +"cheese." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fruit pie" -msgid_plural "fruit pies" +msgid "chicken and dumplings" +msgid_plural "chicken and dumplings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit pie +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious baked pie with a sweet fruit filling." +msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cheese pizza" -msgid_plural "cheese pizzas" +msgid "cullen skink" +msgid_plural "cullen skinks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cheese pizza +#. ~ Description for cullen skink #: lang/json/COMESTIBLE_from_json.py -msgid "A delicious pizza with molten cheese on top." +msgid "" +"A rich and tasty fish chowder from Scotland, made with preserved fish and " +"creamy milk." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "granola" -msgid_plural "granola" +msgid "chili powder" +msgid_plural "chili powder" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" -"A tasty and nutritious mixture of oats, honey, and other ingredients that " -"has been baked until crisp." +"Chilly P, Yo! Not edible on its own, but it could be used to make " +"seasoning." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "maple pie" -msgid_plural "maple pies" +msgid "hot sauce" +msgid_plural "hot sauce" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for maple pie +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py -msgid "A sweet and delicious baked pie with pure maple syrup." +msgid "" +"Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " +"your hands after handling." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fast noodles" -msgid_plural "fast noodles" +msgid "cinnamon" +msgid_plural "cinnamon" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py -msgid "So-called ramen noodles. Can be eaten raw." +msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cloutie dumpling" -msgid_plural "cloutie dumplings" +msgid "curry powder" +msgid_plural "curry powder" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cloutie dumpling +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" -"This traditional Scottish treat is a sweet and filling little boiled cake " -"studded with dried fruit." +"A blend of spices meant to be used in some South Asian dishes. Can't be " +"eaten raw, why would you even try that?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "brioche" -msgid_plural "brioches" +msgid "black pepper" +msgid_plural "black pepper" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for brioche +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py -msgid "Filling bread buns, taste good with tea on a Sunday morning breakfast." +msgid "Ground black spice berries with a pungent aroma." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sponge cake" -msgid_plural "sponge cakes" +msgid "salt" +msgid_plural "salt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sponge cake +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py -msgid "Plain, fluffy cake for the proletariat." +msgid "" +"Yuck! You surely wouldn't want to eat this. It's good for preserving meat " +"and cooking, though." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "space cake" -msgid_plural "space cakes" +msgid "Italian seasoning" +msgid_plural "Italian seasoning" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for space cake +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py -msgid "This cake's destiny is to take you on a gnarly trip." +msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "brownie" -msgid_plural "brownies" +msgid "seasoned salt" +msgid_plural "seasoned salt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for brownie +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py -msgid "A rich chocolate brownie, just like how grandma used to bake them." +msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "'special' brownie" -msgid_plural "'special' brownies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "sugar" +msgid_plural "sugar" +msgstr[0] "цукор" +msgstr[1] "цукру" +msgstr[2] "цукру" +msgstr[3] "цукор" -#. ~ Description for 'special' brownie +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py -msgid "This is definitely not how grandma used to bake them." +msgid "" +"Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " +"its own." msgstr "" +"Солодкий, солоденький цукор. Поганий для ваших зубів, і, на подив, не дуже " +"смакує сам по собі." #: lang/json/COMESTIBLE_from_json.py -msgid "fibrous stalk" -msgid_plural "fibrous stalks" +msgid "sprinkles" +msgid_plural "sprinkles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fibrous stalk +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py -msgid "A rather green stick. Very fibrous." +msgid "" +"Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" +"thousands', these colorful balls, rods or flakes of sugar and starch are " +"intended for use decorating soft surfaces of sweets. Like sugar, they are " +"bad for your teeth and surprisingly not very tasty on their own." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Dana's sourdough bread" -msgid_plural "Dana's sourdough breads" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "wild herbs" +msgid_plural "wild herbs" +msgstr[0] "дикі трави" +msgstr[1] "дикі трави" +msgstr[2] "дикі трави" +msgstr[3] "дикі трави" -#. ~ Description for Dana's sourdough bread +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" -"This round loaf of bread has a thick, dark crust, and smells very enticing." +"A tasty collection of wild herbs including violet, sassafras, mint, clover, " +"purslane, and fireweed." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mi-go serum" -msgid_plural "mi-go serums" +msgid "soy sauce" +msgid_plural "soy sauce" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mi-go serum +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A super-concentrated mutagen strongly resembling a lava lamp. You need a " -"syringe to inject it… if you really want to?" +msgid "Salty fermented soybean sauce." +msgstr "" + +#. ~ Description for thyme +#: lang/json/COMESTIBLE_from_json.py +msgid "A stalk of thyme. Smells delicious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mi-go mutagen" -msgid_plural "mi-go mutagens" +msgid "mustard powder" +msgid_plural "mustard powder" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mi-go mutagen +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py -msgid "" -"An extremely rare mutagen cocktail, it smells of sulphur and glows orange." +msgid "A fragnant yellow powder. Not edible in this form." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mastodon serum" -msgid_plural "mastodon serums" +msgid "artificial sweetener" +msgid_plural "artificial sweeteners" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mastodon serum -#. ~ Description for stego serum +#. ~ Description for artificial sweetener #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen not for those frightened of this thing they " -"have become. You need a syringe to inject it… if you really want to?" +"Sweet, sweet sugar? No, it is bitter-sweet artificial sweetener. No " +"calories, no worries." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mastodon mutagen" -msgid_plural "mastodon mutagens" +msgid "cooked cattail stalk" +msgid_plural "cooked cattail stalks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mastodon mutagen -#. ~ Description for stego mutagen +#. ~ Description for cooked cattail stalk #: lang/json/COMESTIBLE_from_json.py msgid "" -"An extremely rare mutagen cocktail, it seeks to cure what's deep inside." +"A cooked stalk from a cattail plant. Its fibrous outer leaves have been " +"stripped away and now it is quite delicious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sungel" -msgid_plural "sungels" +msgid "roasted cattail rhizome" +msgid_plural "roasted cattail rhizomes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for sungel. -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Your vision sharpens and your eyes widen as the sungel slams your senses." -msgstr "" - -#. ~ Description for sungel +#. ~ Description for roasted cattail rhizome #: lang/json/COMESTIBLE_from_json.py msgid "" -"Mixed with morphine, this sundew has congealed, and has an immense " -"stimulative and pain-numbing effect. With sufficient tools, it could be " -"used to create anesthesia." +"A roasted root from a cattail plant. Its fibrous outer core is charred " +"black, you can remove it and chew on the dry inside." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sunesthesia" -msgid_plural "sunesthesias" +msgid "starch" +msgid_plural "starch" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for sunesthesia. -#: lang/json/COMESTIBLE_from_json.py -msgid "You go limp and collapse as the sunesthesia knocks you senseless." -msgstr "" - -#. ~ Description for sunesthesia +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" -"This sungel has been mixed with several drugs and yet inherits none of their" -" effects. Its painkilling effect hasn't changed, but its stimulative " -"properties have been reversed, and it could be used as anesthesia for " -"installation of bionics." +"Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " +"quickly if not prepared for storage." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pineapple stem" -msgid_plural "pineapple stem" +msgid "cooked dandelion greens" +msgid_plural "cooked dandelion greens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py -msgid "Roots of a pineapple plant, for growing your own." +msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "melon seeds" -msgid_plural "melon seeds" +msgid "fried dandelions" +msgid_plural "fried dandelions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py -msgid "Some melon seeds." +msgid "" +"Wild dandelion flowers that have been pan fried. Very tasty and nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "banana saplings" -msgid_plural "banana saplings" +msgid "cooked burdock greens" +msgid_plural "cooked burdock greens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py -msgid "Some banana saplings." +msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "orange vine" -msgid_plural "orange vine" +msgid "fried burdocks" +msgid_plural "fried burdocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py -msgid "Some orange vine. Definitely GMO." +msgid "" +"Wild burdocks that have been battered and deep-fried. Very tasty and " +"nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lemon vine" -msgid_plural "lemon vine" +msgid "fried dandelions and burdocks" +msgid_plural "fried dandelions burdocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for fried dandelions and burdocks #: lang/json/COMESTIBLE_from_json.py -msgid "Some lemon vines. Definitely GMO." +msgid "" +"Wild dandelions and burdocks that have been battered and deep-fried. Very " +"tasty and nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "subterraenean coconut" -msgid_plural "subterraenean coconut" +msgid "cooked plant marrow" +msgid_plural "cooked plant marrows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for cooked plant marrow #: lang/json/COMESTIBLE_from_json.py -msgid "Proof that man went too far before the Cataclysm." +msgid "A freshly cooked chunk of plant matter, tasty and nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "clump of lichen" -msgid_plural "clumps of lichen" +msgid "cooked wild vegetables" +msgid_plural "cooked wild vegetables" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for clump of lichen +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A clump of moist squishy lichen. You get the impression that it might not " -"be the safest thing to eat considering how it makes your hand tingle." +msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "clump of processed lichen" -msgid_plural "clumps of processed lichen" +msgid "vegetable aspic" +msgid_plural "vegetable aspics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for clump of processed lichen +#. ~ Description for vegetable aspic #: lang/json/COMESTIBLE_from_json.py msgid "" -"A clump of squishy lichen, while it isn't as wet as it used to be, your " -"hands no longer tingle holding it." +"A dish in which vegetables are set into a gelatin made from a plant stock." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of frostbitten human meat" -msgid_plural "chunks of frostbitten human meat" +msgid "cooked buckwheat" +msgid_plural "cooked buckwheat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chunk of frostbitten human meat +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" -"Freshly butchered meat from a frozen human carcass, not the most appetizing." +"A serving of cooked buckwheat groats. Healthy and nutritious but bland." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked freezerburned human meat" -msgid_plural "cooked freezerburned human meat" +msgid "canned corn" +msgid_plural "canned corn" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py -msgid "A freshly cooked slice of human meat, it has severe frostburn." +msgid "Canned corn in water. Eat up!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "frostbitten human stomach" -msgid_plural "frostbitten human stomachs" +msgid "corn on the cob" +msgid_plural "corn on the cob" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for frostbitten human stomach +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py -msgid "A shriveled grey stomach, it hasn't seen use in a very long time." +msgid "An ear of corn cooked in foil." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "frostbitten human bone" -msgid_plural "frostbitten human bones" +msgid "pan roasted corn" +msgid_plural "pan roasted corn" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for frostbitten human bone +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py -msgid "A stretched bumpy piece of bone, unpleasant to hold." +msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of frostbitten human fat" -msgid_plural "chunks of frostbitten human fat" +msgid "hominy" +msgid_plural "hominy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chunk of frostbitten human fat +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" -"Light green fat, smelling absolutely rancid. You could eat it, but it " -"wouldn't be worth it." +"Corn kernels which have been cooked in an alkaline solution and then rinsed," +" making them better suited for eating or cooking." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "freezerburned human tallow" -msgid_plural "freezerburned human tallow" +msgid "cornmeal" +msgid_plural "cornmeal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A smooth light green block of cleaned and rendered human fat. While it'll " -"remain edible for a very long time, it won't be the most appetizing" +msgid "This yellow cornmeal is useful for baking." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "freezerburned human lard" -msgid_plural "freezerburned human lard" +msgid "vegetarian baked beans" +msgid_plural "vegetarian baked beans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A smooth light green block of dry-rendered human fat. It's very frostburnt," -" and while it will remain edible for a very long time, it's not the most " -"appetizing." +msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw frostbitten human skin" -msgid_plural "raw frostbitten human skins" +msgid "dried rice" +msgid_plural "dried rice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw frostbitten human skin +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" -"A carefully folded raw skin harvested from a human corpse. It is stained " -"blue from frostbite. You can cure it for storage and tanning, or eat it if " -"you're desperate enough." +"Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " +"inedible when dry." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of alien flesh" -msgid_plural "chunks of alien flesh" +msgid "cooked rice" +msgid_plural "cooked rice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chunk of alien flesh +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Freshly butchered meat from an alien corpse. You could eat it raw or " -"cooked, but this is a completely alien biosphere." +msgid "A hearty serving of cooked long-grain white rice." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked alien flesh" -msgid_plural "cooked alien flesh" +msgid "fried rice" +msgid_plural "fried rice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is a chunk of freshly cooked alien meat. It could be either filling " -"and nutritious, or poisonous and lethal." +msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "scrap of alien flesh" -msgid_plural "scraps of alien flesh" +msgid "beans and rice" +msgid_plural "beans and rice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for scrap of alien flesh +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a tiny scrap of dubiously edible alien meat. It's not much, but it " -"might be better than starving." +"A serving of beans and rice that has been cooked together. Delicious and " +"healthy!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked scrap of alien flesh" -msgid_plural "cooked scraps of alien flesh" +msgid "tofu fried rice" +msgid_plural "tofu fried rice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py -msgid "alien stomach" -msgid_plural "alien stomachs" +msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tofu stirfry" +msgid_plural "tofu stirfry" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for alien stomach +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" -"A balloon-like organ you can only guess is a stomach. It is surprisingly " -"durable." +"A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " +"through these dark days." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "large alien stomach" -msgid_plural "large alien stomachs" +msgid "deluxe vegetarian beans and rice" +msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large alien stomach +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" -"A balloon-like organ of a large alien you can only guess is a stomach. It " -"is surprisingly durable." +"Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " +"filling." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "piece of raw alien lung" -msgid_plural "pieces of raw alien lung" +msgid "baked potato" +msgid_plural "baked potatoes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for piece of raw alien lung +#. ~ Description for baked potato #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A red sponge-like organ rests in your hands. It leaks out a strange liquid," -" and spoils very quickly. You hazard a guess this is a lung." +msgid "A delicious baked potato. Got any sour cream?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked piece of alien lung" -msgid_plural "cooked pieces of alien lung" +msgid "roasted carrot" +msgid_plural "roasted carrots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked piece of alien lung +#. ~ Description for roasted carrot #: lang/json/COMESTIBLE_from_json.py -msgid "" -"The organ no longer leaks out a strange liquid, and has faded to a light " -"blue color. It looks chewy, and has an unpleasant smell." +msgid "A simple, tasty roasted carrot." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw alien liver" -msgid_plural "raw alien livers" +msgid "mashed pumpkin" +msgid_plural "mashed pumpkins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw alien liver +#. ~ Description for mashed pumpkin #: lang/json/COMESTIBLE_from_json.py msgid "" -"A porous hard organ. Hazarding a guess from all the large blood vessels " -"going in and out, this is the liver. It smells rancid." +"This is a simple dish made by cooking the pumpkin pulp and then mashing." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked alien liver" -msgid_plural "cooked alien livers" +msgid "vegetable pie" +msgid_plural "vegetable pies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked alien liver +#. ~ Description for vegetable pie #: lang/json/COMESTIBLE_from_json.py -msgid "" -"After some time cooking, the pores of the organ have shrunk, and it's much, " -"much softer - almost yogurt-like in its consistency. It still smells awful." +msgid "A delicious baked pie with a delicious vegetable filling." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw alien brains" -msgid_plural "raw alien brains" +msgid "vegetable pizza" +msgid_plural "vegetable pizzas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for vegetable pizza #: lang/json/COMESTIBLE_from_json.py msgid "" -"A brain butchered from an alien organism. It looks somewhat similar to its " -"earthly analogues, barring its light-blue coloration and gland riddled " -"frontal lobe." +"A vegetarian pizza, with delicious tomato sauce and a fluffy crust. Its " +"smell brings back great memories." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked alien brains" -msgid_plural "cooked alien brains" +msgid "pesto" +msgid_plural "pesto" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Fried and scrambled, this doesn't look the most appetizing, but it's edible " -"(you hope)." +msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw alien kidney" -msgid_plural "raw alien kidneys" +msgid "canned veggy" +msgid_plural "canned veggies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw alien kidney +#. ~ Description for canned veggy #: lang/json/COMESTIBLE_from_json.py msgid "" -"You are guessing here, but this is likely the kidney of the animal. The " -"ammonia smell was the biggest hint." +"This mushy pile of vegetable matter was boiled and canned in an earlier " +"life. Better eat it before it oozes through your fingers." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked alien kidney" -msgid_plural "cooked alien kidneys" +msgid "salted veggy chunk" +msgid_plural "salted veggy chunks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked alien kidney +#. ~ Description for salted veggy chunk #: lang/json/COMESTIBLE_from_json.py msgid "" -"Thoroughly cooked and prepared, this alien organ has acquired the filthy " -"ammonia smell of a poorly mopped spaceship deck. Even if it were safe to " -"eat, you are not sure you'd want to." +"Vegetable chunks pickled in a salt bath. Goes well with burgers, if only " +"you can find one." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw alien sweetbread" -msgid_plural "raw alien sweetbreads" +msgid "spaghetti al pesto" +msgid_plural "spaghetti al pesto" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw alien sweetbread +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py -msgid "" -"You got this chunk of meat from the throat of the animal; it looks " -"different?" +msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked alien sweetbread" -msgid_plural "cooked alien sweetbreads" +msgid "pickle" +msgid_plural "pickles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked alien sweetbread +#. ~ Description for pickle #: lang/json/COMESTIBLE_from_json.py msgid "" -"Well, it's definitely not muscle, you can tell now. It oozes a purple " -"liquid out onto your hand as you hold it." +"A pickled cucumber. Rather sour, but tastes good and lasts for a long time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "alien bone" -msgid_plural "alien bones" +msgid "sauerkraut w/ sautee'd onions" +msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for alien bone +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py -msgid "Obviously bones. Could be used to make some stuff, like needles." +msgid "" +"This is a delicious sautee of lovely diced onions and sauerkraut. The smell" +" alone is enough to make your mouth water." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of alien fat" -msgid_plural "chunks of alien fat" +msgid "pickled veggy" +msgid_plural "pickled veggies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chunk of alien fat +#. ~ Description for pickled veggy #: lang/json/COMESTIBLE_from_json.py msgid "" -"Freshly butchered fat from an alien. You could eat it cooked or raw, but it" -" is more safely used for crafting non edible-products." +"This is a serving of crisply brined and canned vegetable matter. Tasty and " +"nutritious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "alien tallow" -msgid_plural "alien tallow" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "dehydrated vegetable" +msgid_plural "dehydrated vegetables" +msgstr[0] "сушений овоч" +msgstr[1] "сушених овоча" +msgstr[2] "сушених овочів" +msgstr[3] "сушені овочі" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for dehydrated vegetable #: lang/json/COMESTIBLE_from_json.py msgid "" -"A smooth white block of cleaned and rendered alien animal fat. It'll last " -"for a very long time, but you are unsure of its edibility. Can be used as " -"an ingredient in many foods and projects." +"Dehydrated vegetable flakes. With proper storage, this dried food will " +"remain edible for an incredibly long time." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "alien lard" -msgid_plural "alien lard" +msgid "dehydrated corn kernels" +msgid_plural "dehydrated corn kernels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A smooth white block of dry-rendered animal fat. It'll last for a very long" -" time, but you are unsure of its edibility. Can be used as an ingredient in" -" many foods and projects." +msgid "A handful of dried corn kernels." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "unidentifiable alien organs" -msgid_plural "unidentifiable alien organs" +msgid "rehydrated vegetable" +msgid_plural "rehydrated vegetables" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for rehydrated vegetable #: lang/json/COMESTIBLE_from_json.py msgid "" -"An unidentifiable pile of organs; you have no idea how you'd prepare them." +"Reconstituted vegetable flakes, which are much more enjoyable to eat now " +"that they have been rehydrated." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "alien cracklins" -msgid_plural "alien cracklins" +msgid "rehydrated corn kernels" +msgid_plural "rehydrated corn kernels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" -"Bits of alien fat and skin that have been fried until they are crispy and " -"delicious (at least, you hope they are)." +"Reconstituted corn kernels; much more enjoyable to eat now that they have " +"been rehydrated." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "freezerburned human cracklins" -msgid_plural "freezerburned human cracklins" +msgid "vegetable salad" +msgid_plural "vegetable salads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for vegetable salad #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Green scraps of rancid fat and skin, and while they have been fried to a " -"crisp, they still don't smell any better." +msgid "Salad with all kind of vegetables." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw alien hide" -msgid_plural "raw alien hides" +msgid "dried salad" +msgid_plural "dried salads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw alien hide +#. ~ Description for dried salad #: lang/json/COMESTIBLE_from_json.py msgid "" -"A carefully folded raw skin harvested from an alien animal. You can cure it" -" for storage and tanning, or eat it if you're desperate enough." +"Dried salad packed in a box with mayonnaise and ketchup. Add water to " +"enjoy." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw alien pelt" -msgid_plural "raw alien pelts" +msgid "insta-salad" +msgid_plural "insta-salads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw alien pelt +#. ~ Description for insta-salad #: lang/json/COMESTIBLE_from_json.py msgid "" -"A carefully folded raw skin harvested from a fur-bearing alien animal. It " -"still has the fur attached. You can cure it for storage and tanning, or eat" -" it if you're desperate enough." +"Dried salad with water added, not very tasty but still a decent substitution" +" for real salad." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mealgrub growth medium" -msgid_plural "mealgrub growth mediums" +msgid "baked dahlia root" +msgid_plural "baked dahlia roots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mealgrub growth medium +#. ~ Description for baked dahlia root #: lang/json/COMESTIBLE_from_json.py msgid "" -"All sorts of organic substances rendered into a nutritious goop that can be " -"used as a growth medium in grub aquaculture. Urban myth claims that its " -"original formula was just bottled industrial runoff. Whatever the case, " -"mealgrubs thrive within it." +"Baking this dahlia root has broken down the starch, making it softer and " +"sweeter." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mealgrub spores" -msgid_plural "mealgrub spores" +msgid "roasted salsify" +msgid_plural "roasted salsifies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for roasted salsify #: lang/json/COMESTIBLE_from_json.py msgid "" -"Mealgrubs are a staple aquacultural product, treasured for their ability to " -"process nearly any organic substance into safe for consumption animal " -"protein. As the result of very heavy-handed gene-modding these are " -"proprietary organisms, and strictly speaking, it's illegal to grow them " -"without a license." +"When properly cooked, salsify tastes vaguely like oysters. Makes a great " +"side dish." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mealgrub broth" -msgid_plural "mealgrub broth" +msgid "sushi rice" +msgid_plural "sushi rice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" -" should be ready for harvesting in around 76 hours. The immature grub's " -"metabolism can produce toxic by-products so caution is advisable." +msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "live mealgrubs" -msgid_plural "live mealgrubs" +msgid "onigiri" +msgid_plural "onigiri" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" -"Thousands of mature mealworms, squirming in the viscous remains of their " -"growth medium. They are ready for harvest, and in fact require speedy " -"cleaning and processing, as the harvest can quickly rot in this stage." +"A triangular block of tasty sushi rice with a healthy green vegetable folded" +" around it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mealgrubs" -msgid_plural "mealgrubs" +msgid "vegetable hosomaki" +msgid_plural "vegetable hosomaki" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" -"\n" -"Removed from their growth solution they'll quickly die and desiccate, as these already have. They could be safely eaten with no further processing, for a nutritious if somewhat striking meal." -msgstr "" +"Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " +"healthy green vegetable." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "nutriment" -msgid_plural "nutriments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "dehydrated alien fungus chunk" +msgid_plural "dehydrated alien fungus chunks" +msgstr[0] "сушений шматок позаземного гриба" +msgstr[1] "сушених шматка позаземного гриба" +msgstr[2] "сушених шматків позаземного гриба" +msgstr[3] "сушений шматок позаземного гриба" -#. ~ Description for nutriment +#. ~ Description for dehydrated alien fungus chunk #: lang/json/COMESTIBLE_from_json.py msgid "" -"A crumbly white biscuit half the size of your thumb, packed with vitamins " -"and calories. Provides a whole meal's nutrition in portable form, but it's " -"a little hard to keep down, thanks to the rancid taste and chalky texture." +"Pieces of alien mushroom that have been dried to prevent them from rotting " +"away. It will still poison you if you eat this." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "nutriment water" -msgid_plural "nutriment waters" +msgid "sauerkraut" +msgid_plural "sauerkraut" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nutriment water +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" -"Nutriment that has been dissolved in water to dilute its taste. Unnervingly" -" resembles spoiled milk." +"This crunchy, sour topping made from lettuce or cabbage is perfect for your " +"hot dogs and hamburgers, or, if you're desperate, straight to your stomach." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Spite Soda" -msgid_plural "Spite Sodas" +msgid "nopalito" +msgid_plural "nopalitos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action activation_message for Spite Soda. -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"You take a swig, it tastes like it was distilled in a hyperspace engine." -msgstr "" - -#. ~ Description for Spite Soda +#. ~ Description for nopalito #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Spite Soda, the only soda native to the Salus system. 'Stay Frosty, Drink " -"Spite'. Visitors to the Salus system who have drank Spite Soda have " -"described it as the taste of transhumanist dialectical materialism." +msgid "A less prickly version of cactus pads." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "H₂O™" -msgid_plural "H₂O™" +msgid "boiled fiddleheads" +msgid_plural "boiled fiddleheads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py -msgid "" -"When Thistle Industries successfully trademarked the chemical formula of " -"water, you thought the world had gone irreparably insane, but things have " -"only gotten worse since." +msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "food cubes" -msgid_plural "food cubes" +msgid "sauteed fiddleheads" +msgid_plural "sauteed fiddleheads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." +msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "Foodplace's Food-to-go™" -msgid_plural "Foodplace's Food-to-go™" +msgid "cooked bell pepper" +msgid_plural "cooked bell peppers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for cooked bell pepper #: lang/json/COMESTIBLE_from_json.py msgid "" -"Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " -"Foodman™." +"A cored and cooked bell pepper. It is far more enjoyable now that the seeds" +" are removed." msgstr "" +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py -msgid "loop 'fruit'" -msgid_plural "loop 'fruits'" +msgid "Raw wheat, not very tasty." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "raw spaghetti pasta" +msgid_plural "raw spaghetti pasta" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for loop 'fruit' +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py -msgid "Rings of caramelized yellow colorant, tasting not exactly like apple." +msgid "" +"A type of pasta usually used when preparing spaghetti. It could be eaten " +"raw if you're desperate, but is much better cooked." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cee wafers" -msgid_plural "cee wafers" +msgid "raw lasagne pasta" +msgid_plural "raw lasagne pasta" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" -"Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," -" or so the wrapper claims." +"A pasta sheet used in making lasagne. It could be eaten raw if you're " +"desperate, but is much better cooked." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "beefsim" -msgid_plural "beefsims" +msgid "boiled noodles" +msgid_plural "boiled noodles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for beefsim +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Soy or pureed rat? Better not to know.\n" -"(But its probably both.) " +msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "soup, flavor 27" -msgid_plural "soup, flavor 27" +msgid "raw macaroni" +msgid_plural "raw macaroni" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." -" Branding implies at least 26 other flavors, but you have neither seen or " -"heard about any of them." +msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "landfall survival rations" -msgid_plural "landfall survival rations" +msgid "mac & cheese" +msgid_plural "mac & cheese" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Sealed emergency rations invariably found within an escape pod's inventory." -" This particular pack should provide around a day's worth of nutrition. " -"Required by regulation but rarely ever used, the design of these \"meals\" " -"prioritizes a long shelf life and a very low bulk-cost. Which lends them " -"their disgusting taste of greased sawdust." +msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "caffex" -msgid_plural "caffex" +msgid "flour" +msgid_plural "flour" +msgstr[0] "борошно" +msgstr[1] "борошна" +msgstr[2] "борошна" +msgstr[3] "борошно" + +#. ~ Description for flour +#: lang/json/COMESTIBLE_from_json.py +msgid "This enriched white flour is useful for baking." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "bread flour" +msgid_plural "bread flour" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" -"A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." +"This white flour is useful for adding more stretch and chew to bread while " +"baking." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/SPELL_from_json.py -msgid "heat retention cream" -msgid_plural "heat retention creams" +#: lang/json/COMESTIBLE_from_json.py +msgid "oatmeal" +msgid_plural "oatmeal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for heat retention cream +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" -"Rub this on your skin when you are expecting exposure to extreme cold " -"temperatures. Cannot protect from instant frostbite. Smells like the " -"inside of a sheep." +"Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " +"doubles as food for horses while dry." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/SPELL_from_json.py -msgid "heat retention cream xtreme" -msgid_plural "heat retention cream xtremes" +#. ~ Description for oats +#: lang/json/COMESTIBLE_from_json.py +msgid "Raw oats." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "cooked oatmeal" +msgid_plural "cooked oatmeal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for heat retention cream xtreme +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" -"This product was advertised before the Cataclysm for extreme cold " -"environment protection. You remember a demonstration involving a woman " -"coating her hand in this and plunging it in liquid nitrogen for a second. " -"You're pretty sure that was staged." +"A filling and nutritious New England classic that has sustained pioneers and" +" captains of industry alike." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "supercritical coolant" -msgid_plural "supercritical coolant" +msgid "deluxe cooked oatmeal" +msgid_plural "deluxe cooked oatmeal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" -"Capable of withstanding extreme temperature gradients, fulleroclathrate " -"supercritical coolants are the lifeblood of high-energy systems, from " -"cutting-edge aerospace engines to experimental small arms tech. Liquid at " -"room conditions, it has to be used in a pressurized closed-loop system at " -"450 psi or greater." +"A filling and nutritious New England classic that has been improved with the" +" addition of extra wholesome ingredients." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vampire mutagen" -msgid_plural "vampire mutagens" +msgid "pancake" +msgid_plural "pancakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vampire mutagen -#. ~ Description for wendigo mutagen +#. ~ Description for pancake #: lang/json/COMESTIBLE_from_json.py -msgid "Mutagen cocktail simply labeled 'C.R.I.T R&D.'" +msgid "Fluffy and delicious pancakes with real maple syrup." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "vampire serum" -msgid_plural "vampire serums" +msgid "fruit pancake" +msgid_plural "fruit pancakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vampire serum +#. ~ Description for fruit pancake #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated pitch-black substance with silvery flecks that reminds " -"you of a starry-night sky. You need a syringe to inject it… if you really " -"want to?" +"Fluffy and delicious pancakes with real maple syrup, made sweeter and " +"healthier with the addition of wholesome fruit." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "wendigo mutagen" -msgid_plural "wendigo mutagens" +msgid "French toast" +msgid_plural "French toasts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for French toast #: lang/json/COMESTIBLE_from_json.py -msgid "wendigo serum" -msgid_plural "wendigo serums" +msgid "Slices of bread dipped in a milk and egg mixture then fried." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "waffle" +msgid_plural "waffles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wendigo serum +#. ~ Description for waffle #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated peat-brown substance with glittering green flecks that " -"reminds you of a tree. You need a syringe to inject it… if you really want " -"to?" +"Hey it's waffle time, it's waffle time. Won't you have some waffles of " +"mine?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "SpOreos" -msgid_plural "SpOreos" +msgid "fruit waffle" +msgid_plural "fruit waffles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for fruit waffle #: lang/json/COMESTIBLE_from_json.py msgid "" -"The hit cookie from Mycus Industries! Now comes in addicting flavors such " -"as Marloss, Chanterelle, and The Encroaching, Unavoidable Death of Human " -"Civilization." +"Crunchy and delicious waffles with real maple syrup, made sweeter and " +"healthier with the addition of wholesome fruit." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "alien hydrogel" -msgid_plural "alien hydrogels" +#: lang/json/COMESTIBLE_from_json.py lang/json/MONSTER_from_json.py +msgid "cracker" +msgid_plural "crackers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for alien hydrogel -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A lump of alien hydrogel with small writhing specks in it. Useful in " -"crafting. You could 'drink' it, but there's no way it would be pleasant." -msgstr "" - -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cracker #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Now you can emulate a zombie! Preparing brain for eating is challenging, " -"and this doesn't seem to be the best way to do it." +msgid "Dry and salty, these crackers will leave you quite thirsty." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of alien meat" -msgid_plural "chunks of alien meat" +msgctxt "oyster crackers" +msgid "oyster crackers" +msgid_plural "oyster crackers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chunk of alien meat +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" -"This dense, stringy substance smells strongly like burnt oil, or some sort " -"of industrial chemical. For all intents and purposes, it seems like the " -"'meat' of the creature, but its bizarre texture and faintly red-purple tint " -"is unlike anything you've ever experienced before. You could eat it, but no" -" doubt it would not only taste heinous but also make you sick, being made of" -" material your body was never supposed to ingest." +"These bite-sized crackers go well with soups, but will make you thirsty on " +"their own." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dehydrated alien meat" -msgid_plural "dehydrated alien meats" +msgid "fruit pie" +msgid_plural "fruit pies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dehydrated alien meat -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Pieces of alien meat that have been dried to prevent them from rotting away." -" It will still poison you if you eat this." -msgstr "" - -#. ~ Description for alien bone +#. ~ Description for fruit pie #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A piece of a hard material with many crests and protrusions, made of a hard " -"material that occasionally leaves a bit of moisture on your hand when you " -"touch it. It seems basically like a bone, though not one you'd see in any " -"anatomy textbook. You could eat it, but no doubt it would not only taste " -"henious but also make you sick, being made of material your body was never " -"supposed to injest. It might at least be able to be used for something, if " -"not as well as the earthly variant due to its fiddly size and shape." +msgid "A delicious baked pie with a sweet fruit filling." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "alien fat" -msgid_plural "alien fats" +msgid "cheese pizza" +msgid_plural "cheese pizzas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for alien fat -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A chunk of dense fat that is tough and rubbery. It smells simply heinous, " -"like open sewer and pungent chemicals, and is doubtless full of strange " -"material that your body was never supposed to injest. It might at least be " -"able to be used for something, if not quite as well as its earthly variant " -"due to its relative impurities." -msgstr "" - -#. ~ Description for alien tallow +#. ~ Description for cheese pizza #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A smooth grayish block of cleaned and rendered alien fat. Processing it " -"seems to have at least removed some of the smell. It won't spoil for a very" -" long time, and can be used as an ingredient in many projects. It is no " -"safer than its source material to consume." +msgid "A delicious pizza with molten cheese on top." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "chunk of unusual meat" -msgid_plural "chunks of unusual meat" +msgid "granola" +msgid_plural "granola" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chunk of unusual meat +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" -"Meat from the aliens is typically quite foul, full of toxins and substances " -"not meant to be digested by humans. However, this piece almost looks edible" -" - if not for a few sections that still have strange hues and disgusting, " -"spongy texture. Still, with a bit of preparation, it might even be somewhat" -" palatable." +"A tasty and nutritious mixture of oats, honey, and other ingredients that " +"has been baked until crisp." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "scrap of unusual meat" -msgid_plural "scraps of unusual meat" +msgid "maple pie" +msgid_plural "maple pies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for scrap of unusual meat +#. ~ Description for maple pie #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A tiny scrap of meat from an unusual creature. It smells a bit odd and has " -"a variety of discolorations that indicate that it is still going to be rough" -" on your digestive system. Still, seems digestible at least, if you cook it" -" and remove the worst parts." +msgid "A sweet and delicious baked pie with pure maple syrup." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "unusual humanoid meat" -msgid_plural "unusual humanoid meats" +msgid "fast noodles" +msgid_plural "fast noodles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for unusual humanoid meat -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Freshly butchered from the body of an alien creature that was unsettlingly " -"humanoid in appearance. It smells faintly of chemicals and is colored odd " -"hues that indicate that it is still going to be rough on your digestive " -"system. You'd have to be crazy or starving to eat this." -msgstr "" - -#. ~ Description for cooked cretin +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Cooked meat from an alien humanoid. Now that the worst bits have been " -"processed, it's probably digestible, if not very appetizing." +msgid "So-called ramen noodles. Can be eaten raw." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked unusual meat" -msgid_plural "cooked unusual meats" +msgid "cloutie dumpling" +msgid_plural "cloutie dumplings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooked unusual meat +#. ~ Description for cloutie dumpling #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a cooked chunk of meat from an unusual critter. It has strange " -"colors, smells a bit funny, and has a mushy texture but it tastes… mostly " -"normal. Hopefully you cut away the worst bits well enough." +"This traditional Scottish treat is a sweet and filling little boiled cake " +"studded with dried fruit." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cooked scrap of unusual meat" -msgid_plural "cooked scraps of unusual meat" +msgid "brioche" +msgid_plural "brioches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for brioche #: lang/json/COMESTIBLE_from_json.py -msgid "unusual tallow" -msgid_plural "unusual tallows" +msgid "Filling bread buns, taste good with tea on a Sunday morning breakfast." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "sponge cake" +msgid_plural "sponge cakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for unusual tallow +#. ~ Description for sponge cake #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A smooth white block of cleaned and rendered fat sourced from an unusual " -"creature. It will remain edible for a very long time, and can be used as an" -" ingredient in many foods and projects." +msgid "Plain, fluffy cake for the proletariat." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "unusual lard" -msgid_plural "unusual lards" +msgid "space cake" +msgid_plural "space cakes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for unusual lard -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A smooth white block of dry-rendered fat sourced from an alien. It will " -"remain edible for a very long time, and can be used as an ingredient in many" -" foods and projects." -msgstr "" - -#. ~ Description for chunk of mutant humanoid fat +#. ~ Description for space cake #: lang/json/COMESTIBLE_from_json.py -msgid "Freshly butchered fat from an alien humanoid." +msgid "This cake's destiny is to take you on a gnarly trip." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "unusual humanoid tallow" -msgid_plural "unusual humanoid tallows" +msgid "brownie" +msgid_plural "brownies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for unusual humanoid tallow +#. ~ Description for brownie #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A smooth white block of cleaned and rendered fat sourced from an alien " -"humanoid. It won't rot for a very long time, and can be used as an " -"ingredient in many foods and projects." +msgid "A rich chocolate brownie, just like how grandma used to bake them." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "unusual humanoid lard" -msgid_plural "unusual humanoid lards" +msgid "'special' brownie" +msgid_plural "'special' brownies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for unusual humanoid lard -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A smooth white block of dry-rendered fat sourced from an alien humanoid. It" -" won't rot for a very long time, and can be used as an ingredient in many " -"foods and projects." -msgstr "" - -#. ~ Description for raw human skin +#. ~ Description for 'special' brownie #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A carefully folded raw skin harvested from a humanoid. You can cure it for " -"storage and tanning, or eat it if you're desperate enough." +msgid "This is definitely not how grandma used to bake them." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw humanoid pelt" -msgid_plural "raw humanoid pelts" +msgid "fibrous stalk" +msgid_plural "fibrous stalks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw humanoid pelt +#. ~ Description for fibrous stalk #: lang/json/COMESTIBLE_from_json.py -msgid "" -"A carefully folded raw skin harvested from a fur-bearing creature that was " -"disturbingly humanoid. It still has the fur attached. You can cure it for " -"storage and tanning, or eat it if you're desperate enough." +msgid "A rather green stick. Very fibrous." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dinosaur egg" -msgid_plural "dinosaur eggs" +msgid "Dana's sourdough bread" +msgid_plural "Dana's sourdough breads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dinosaur egg +#. ~ Description for Dana's sourdough bread #: lang/json/COMESTIBLE_from_json.py -msgid "Pale, football-shaped egg laid by a dinosaur." +msgid "" +"This round loaf of bread has a thick, dark crust, and smells very enticing." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "coelophysis egg" -msgid_plural "coelophysis eggs" +msgid "mi-go serum" +msgid_plural "mi-go serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for mi-go serum #: lang/json/COMESTIBLE_from_json.py -msgid "dilophosaurus egg" -msgid_plural "dilophosaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A super-concentrated mutagen strongly resembling a lava lamp. You need a " +"syringe to inject it… if you really want to?" +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "ceratosaurus egg" -msgid_plural "ceratosaurus eggs" +msgid "mi-go mutagen" +msgid_plural "mi-go mutagens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for mi-go mutagen #: lang/json/COMESTIBLE_from_json.py -msgid "spinosaurus egg" -msgid_plural "spinosaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"An extremely rare mutagen cocktail, it smells of sulphur and glows orange." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "allosaurus egg" -msgid_plural "allosaurus eggs" +msgid "mastodon serum" +msgid_plural "mastodon serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for mastodon serum +#. ~ Description for stego serum #: lang/json/COMESTIBLE_from_json.py -msgid "acrocanthosaurus egg" -msgid_plural "acrocanthosaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A super-concentrated mutagen not for those frightened of this thing they " +"have become. You need a syringe to inject it… if you really want to?" +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "siats egg" -msgid_plural "siats eggs" +msgid "mastodon mutagen" +msgid_plural "mastodon mutagens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for mastodon mutagen +#. ~ Description for stego mutagen #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"An extremely rare mutagen cocktail, it seeks to cure what's deep inside." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "albertosaurus egg" -msgid_plural "albertosaurus eggs" +msgid "sungel" +msgid_plural "sungels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Use action activation_message for sungel. #: lang/json/COMESTIBLE_from_json.py -msgid "compsognathus egg" -msgid_plural "compsognathus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"Your vision sharpens and your eyes widen as the sungel slams your senses." +msgstr "" +#. ~ Description for sungel #: lang/json/COMESTIBLE_from_json.py -msgid "gallimimus egg" -msgid_plural "gallimimus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"Mixed with morphine, this sundew has congealed, and has an immense " +"stimulative and pain-numbing effect. With sufficient tools, it could be " +"used to create anesthesia." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "velociraptor egg" -msgid_plural "velociraptor eggs" +msgid "sunesthesia" +msgid_plural "sunesthesias" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Use action activation_message for sunesthesia. #: lang/json/COMESTIBLE_from_json.py -msgid "nothronychus egg" -msgid_plural "nothronychus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "You go limp and collapse as the sunesthesia knocks you senseless." +msgstr "" +#. ~ Description for sunesthesia #: lang/json/COMESTIBLE_from_json.py -msgid "deinonychus egg" -msgid_plural "deinonychus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This sungel has been mixed with several drugs and yet inherits none of their" +" effects. Its painkilling effect hasn't changed, but its stimulative " +"properties have been reversed, and it could be used as anesthesia for " +"installation of bionics." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "utahraptor egg" -msgid_plural "utahraptor eggs" +msgid "pineapple stem" +msgid_plural "pineapple stem" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py -msgid "eoraptor egg" -msgid_plural "eoraptor eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Roots of a pineapple plant, for growing your own." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "apatosaurus egg" -msgid_plural "apatosaurus eggs" +msgid "melon seeds" +msgid_plural "melon seeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py -msgid "brontosaurus egg" -msgid_plural "brontosaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Some melon seeds." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "diplodocus egg" -msgid_plural "diplodocus eggs" +msgid "banana saplings" +msgid_plural "banana saplings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py -msgid "camarasaurus egg" -msgid_plural "camarasaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Some banana saplings." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "brachiosaurus egg" -msgid_plural "brachiosaurus eggs" +msgid "orange vine" +msgid_plural "orange vine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py -msgid "alamosaurus egg" -msgid_plural "alamosaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Some orange vine. Definitely GMO." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "scutellosaurus egg" -msgid_plural "scutellosaurus eggs" +msgid "lemon vine" +msgid_plural "lemon vine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py -msgid "stegosaurus egg" -msgid_plural "stegosaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Some lemon vines. Definitely GMO." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dyoplosaurus egg" -msgid_plural "dyoplosaurus eggs" +msgid "subterraenean coconut" +msgid_plural "subterraenean coconut" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py -msgid "ankylosaurus egg" -msgid_plural "ankylosaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Proof that man went too far before the Cataclysm." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "nodosaurus egg" -msgid_plural "nodosaurus eggs" +msgid "clump of lichen" +msgid_plural "clumps of lichen" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for clump of lichen #: lang/json/COMESTIBLE_from_json.py -msgid "edmontonia egg" -msgid_plural "edmontonia eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A clump of moist squishy lichen. You get the impression that it might not " +"be the safest thing to eat considering how it makes your hand tingle." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "camptosaurus egg" -msgid_plural "camptosaurus eggs" +msgid "clump of processed lichen" +msgid_plural "clumps of processed lichen" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for clump of processed lichen #: lang/json/COMESTIBLE_from_json.py -msgid "maiasaura egg" -msgid_plural "maiasaura eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A clump of squishy lichen, while it isn't as wet as it used to be, your " +"hands no longer tingle holding it." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "parasaurolophus egg" -msgid_plural "parasaurolophus eggs" +msgid "chunk of frostbitten human meat" +msgid_plural "chunks of frostbitten human meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for chunk of frostbitten human meat #: lang/json/COMESTIBLE_from_json.py -msgid "corythosaurus egg" -msgid_plural "corythosaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"Freshly butchered meat from a frozen human carcass, not the most appetizing." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "edmontosaurus egg" -msgid_plural "edmontosaurus eggs" +msgid "cooked freezerburned human meat" +msgid_plural "cooked freezerburned human meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py -msgid "pachycephalosaurus egg" -msgid_plural "pachycephalosaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A freshly cooked slice of human meat, it has severe frostburn." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pachyrhinosaurus egg" -msgid_plural "pachyrhinosaurus eggs" +msgid "frostbitten human stomach" +msgid_plural "frostbitten human stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for frostbitten human stomach #: lang/json/COMESTIBLE_from_json.py -msgid "pentaceratops egg" -msgid_plural "pentaceratops eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A shriveled grey stomach, it hasn't seen use in a very long time." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "torosaurus egg" -msgid_plural "torosaurus eggs" +msgid "frostbitten human bone" +msgid_plural "frostbitten human bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for frostbitten human bone #: lang/json/COMESTIBLE_from_json.py -msgid "triceratops egg" -msgid_plural "triceratops eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A stretched bumpy piece of bone, unpleasant to hold." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dimorphodon egg" -msgid_plural "dimorphodon eggs" +msgid "chunk of frostbitten human fat" +msgid_plural "chunks of frostbitten human fat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for chunk of frostbitten human fat #: lang/json/COMESTIBLE_from_json.py -msgid "pteranodon egg" -msgid_plural "pteranodon eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"Light green fat, smelling absolutely rancid. You could eat it, but it " +"wouldn't be worth it." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "quetzalcoatlus egg" -msgid_plural "quetzalcoatlus eggs" +msgid "freezerburned human tallow" +msgid_plural "freezerburned human tallow" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py -msgid "mosasaurus egg" -msgid_plural "mosasaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A smooth light green block of cleaned and rendered human fat. While it'll " +"remain edible for a very long time, it won't be the most appetizing" +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" +msgid "freezerburned human lard" +msgid_plural "freezerburned human lard" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A smooth light green block of dry-rendered human fat. It's very frostburnt," +" and while it will remain edible for a very long time, it's not the most " +"appetizing." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" +msgid "raw frostbitten human skin" +msgid_plural "raw frostbitten human skins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for raw frostbitten human skin #: lang/json/COMESTIBLE_from_json.py -msgid "tyrant serum" -msgid_plural "tyrant serums" +msgid "" +"A carefully folded raw skin harvested from a human corpse. It is stained " +"blue from frostbite. You can cure it for storage and tanning, or eat it if " +"you're desperate enough." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "chunk of alien flesh" +msgid_plural "chunks of alien flesh" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tyrant serum +#. ~ Description for chunk of alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen strongly resembling children's toy slime. You " -"need a syringe to inject it… if you really want to?" +"Freshly butchered meat from an alien corpse. You could eat it raw or " +"cooked, but this is a completely alien biosphere." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrant mutagen" -msgid_plural "tyrant mutagens" +msgid "cooked alien flesh" +msgid_plural "cooked alien flesh" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tyrant mutagen +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" -"An extremely rare mutagen cocktail, it smells like blood and is a green goop" -" with blood-red streaks" +"This is a chunk of freshly cooked alien meat. It could be either filling " +"and nutritious, or poisonous and lethal." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "stego serum" -msgid_plural "stego serums" +msgid "scrap of alien flesh" +msgid_plural "scraps of alien flesh" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for scrap of alien flesh +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"This is a tiny scrap of dubiously edible alien meat. It's not much, but it " +"might be better than starving." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py -msgid "stego mutagen" -msgid_plural "stego mutagens" +msgid "cooked scrap of alien flesh" +msgid_plural "cooked scraps of alien flesh" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/COMESTIBLE_from_json.py -msgid "potion starter" -msgid_plural "potion starters" +msgid "alien stomach" +msgid_plural "alien stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for potion starter +#. ~ Description for alien stomach #: lang/json/COMESTIBLE_from_json.py 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." +"A balloon-like organ you can only guess is a stomach. It is surprisingly " +"durable." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "superior potion starter" -msgid_plural "superior potion starters" +msgid "large alien stomach" +msgid_plural "large alien stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for superior potion starter +#. ~ Description for large alien stomach #: lang/json/COMESTIBLE_from_json.py msgid "" -"Pure ethanol saturated with magical energy. The sheer power concentrated " -"within causes the surface of the potion to ripple continuously." +"A balloon-like organ of a large alien you can only guess is a stomach. It " +"is surprisingly durable." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "large adrenal gland" -msgid_plural "large adrenal glands" +msgid "piece of raw alien lung" +msgid_plural "pieces of raw alien lung" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large adrenal gland +#. ~ Description for piece of raw alien lung #: lang/json/COMESTIBLE_from_json.py msgid "" -"An organ located above the kidneys responsible for secretion of adrenaline, " -"cortisol, and aldosterone. This one is huge, whether by nature or mutation." +"A red sponge-like organ rests in your hands. It leaks out a strange liquid," +" and spoils very quickly. You hazard a guess this is a lung." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dragon essence" -msgid_plural "dragon essences" +msgid "cooked piece of alien lung" +msgid_plural "cooked pieces of alien lung" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dragon essence +#. ~ Description for cooked piece of alien lung #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is the magical essence from a dragon, distilled into a concentrated " -"form." +"The organ no longer leaks out a strange liquid, and has faded to a light " +"blue color. It looks chewy, and has an unpleasant smell." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw black dragon hide" -msgid_plural "raw black dragon hides" +msgid "raw alien liver" +msgid_plural "raw alien livers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raw black dragon hide +#. ~ Description for raw alien liver #: lang/json/COMESTIBLE_from_json.py 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." +"A porous hard organ. Hazarding a guess from all the large blood vessels " +"going in and out, this is the liver. It smells rancid." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "lesser mana potion" -msgid_plural "lesser mana potions" +msgid "cooked alien liver" +msgid_plural "cooked alien livers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lesser mana potion +#. ~ Description for cooked alien liver #: lang/json/COMESTIBLE_from_json.py msgid "" -"You can't buy these, so you need to save them until the last boss! " -"Actually, don't even use them there!" +"After some time cooking, the pores of the organ have shrunk, and it's much, " +"much softer - almost yogurt-like in its consistency. It still smells awful." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "mana potion" -msgid_plural "mana potions" +msgid "raw alien brains" +msgid_plural "raw alien brains" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py -msgid "greater mana potion" -msgid_plural "greater mana potions" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A brain butchered from an alien organism. It looks somewhat similar to its " +"earthly analogues, barring its light-blue coloration and gland riddled " +"frontal lobe." +msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "potion of Cat's Grace" -msgid_plural "potions of Cat's Grace" +msgid "cooked alien brains" +msgid_plural "cooked alien brains" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for potion of Cat's Grace +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a potion of Cat's Grace. It will increase your dexterity for 10 " -"minutes." +"Fried and scrambled, this doesn't look the most appetizing, but it's edible " +"(you hope)." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "potion of Ogre's Strength" -msgid_plural "potions of Ogre's Strength" +msgid "raw alien kidney" +msgid_plural "raw alien kidneys" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for potion of Ogre's Strength +#. ~ Description for raw alien kidney #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a potion of Ogre's Strength. It will increase your strength for 10 " -"minutes." +"You are guessing here, but this is likely the kidney of the animal. The " +"ammonia smell was the biggest hint." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "potion of Eagle's Sight" -msgid_plural "potions of Eagle's Sight" +msgid "cooked alien kidney" +msgid_plural "cooked alien kidneys" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for potion of Eagle's Sight +#. ~ Description for cooked alien kidney #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a potion of Eagle's Sight. It will increase your perception for 10 " -"minutes." +"Thoroughly cooked and prepared, this alien organ has acquired the filthy " +"ammonia smell of a poorly mopped spaceship deck. Even if it were safe to " +"eat, you are not sure you'd want to." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "potion of Fox's Cunning" -msgid_plural "potions of Fox's Cunning" +msgid "raw alien sweetbread" +msgid_plural "raw alien sweetbreads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for potion of Fox's Cunning +#. ~ Description for raw alien sweetbread #: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a potion of Fox's Cunning. It will increase your intelligence for " -"10 minutes." +"You got this chunk of meat from the throat of the animal; it looks " +"different?" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "zombie voodoo doll" -msgid_plural "zombie voodoo dolls" +msgid "cooked alien sweetbread" +msgid_plural "cooked alien sweetbreads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for zombie voodoo doll +#. ~ Description for cooked alien sweetbread #: lang/json/COMESTIBLE_from_json.py 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." +"Well, it's definitely not muscle, you can tell now. It oozes a purple " +"liquid out onto your hand as you hold it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "ossified voodoo doll" -msgid_plural "ossified voodoo dolls" +msgid "alien bone" +msgid_plural "alien bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ossified voodoo doll +#. ~ Description for alien bone #: lang/json/COMESTIBLE_from_json.py -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." +msgid "Obviously bones. Could be used to make some stuff, like needles." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "cougar voodoo doll" -msgid_plural "cougar voodoo dolls" +msgid "chunk of alien fat" +msgid_plural "chunks of alien fat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cougar voodoo doll +#. ~ Description for chunk of alien fat #: lang/json/COMESTIBLE_from_json.py 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." +"Freshly butchered fat from an alien. You could eat it cooked or raw, but it" +" is more safely used for crafting non edible-products." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "potion of Twisted Restoration" -msgid_plural "potions of Twisted Restoration" +msgid "alien tallow" +msgid_plural "alien tallow" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for potion of Twisted Restoration +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py 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." +"A smooth white block of cleaned and rendered alien animal fat. It'll last " +"for a very long time, but you are unsure of its edibility. Can be used as " +"an ingredient in many foods and projects." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "potion of Improved Twisted Restoration" -msgid_plural "potions of Improved Twisted Restoration" +msgid "alien lard" +msgid_plural "alien lard" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for potion of Improved Twisted Restoration +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py 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." +"A smooth white block of dry-rendered animal fat. It'll last for a very long" +" time, but you are unsure of its edibility. Can be used as an ingredient in" +" many foods and projects." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "owlbear egg" -msgid_plural "owlbear eggs" +msgid "unidentifiable alien organs" +msgid_plural "unidentifiable alien organs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for owlbear egg +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py 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" -" within. It's hard to believe that an owlbear could grow so quickly from " -"something so small. Perhaps you could carefully crack it open to get at the" -" liquid golden goodness inside." +"An unidentifiable pile of organs; you have no idea how you'd prepare them." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "owlbear egg yolk" -msgid_plural "owlbear egg yolks" +msgid "alien cracklins" +msgid_plural "alien cracklins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for owlbear egg yolk +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py -msgid "The liquid innards of an owlbear egg. Good eating." +msgid "" +"Bits of alien fat and skin that have been fried until they are crispy and " +"delicious (at least, you hope they are)." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "hairball" -msgid_plural "hairballs" +msgid "freezerburned human cracklins" +msgid_plural "freezerburned human cracklins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hairball +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" -"A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." +"Green scraps of rancid fat and skin, and while they have been fried to a " +"crisp, they still don't smell any better." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "dragon meat" -msgid_plural "dragon meat" +msgid "raw alien hide" +msgid_plural "raw alien hides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for raw alien hide #: lang/json/COMESTIBLE_from_json.py 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." +"A carefully folded raw skin harvested from an alien animal. You can cure it" +" for storage and tanning, or eat it if you're desperate enough." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "scream mushroom" -msgid_plural "scream mushrooms" +msgid "raw alien pelt" +msgid_plural "raw alien pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for scream mushroom +#. ~ Description for raw alien pelt #: lang/json/COMESTIBLE_from_json.py msgid "" -"The mushrooms harvested from a dead shrieker. Could be used in potions." +"A carefully folded raw skin harvested from a fur-bearing alien animal. It " +"still has the fur attached. You can cure it for storage and tanning, or eat" +" it if you're desperate enough." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "purified meat" -msgid_plural "purified meats" +msgid "mealgrub growth medium" +msgid_plural "mealgrub growth mediums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for purified meat +#. ~ Description for mealgrub growth medium #: lang/json/COMESTIBLE_from_json.py msgid "" -"Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" -" but somehow it's just edible." +"All sorts of organic substances rendered into a nutritious goop that can be " +"used as a growth medium in grub aquaculture. Urban myth claims that its " +"original formula was just bottled industrial runoff. Whatever the case, " +"mealgrubs thrive within it." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "impure meat" -msgid_plural "impure meats" +msgid "mealgrub spores" +msgid_plural "mealgrub spores" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for impure meat +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py 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." +"Mealgrubs are a staple aquacultural product, treasured for their ability to " +"process nearly any organic substance into safe for consumption animal " +"protein. As the result of very heavy-handed gene-modding these are " +"proprietary organisms, and strictly speaking, it's illegal to grow them " +"without a license." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "seed of growth" -msgid_plural "seeds of growth" +msgid "mealgrub broth" +msgid_plural "mealgrub broth" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for seed of growth +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" -"A magical powder that can be scattered on growing crops and make them grow " -"faster." +"Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" +" should be ready for harvesting in around 76 hours. The immature grub's " +"metabolism can produce toxic by-products so caution is advisable." msgstr "" -#: lang/json/COMESTIBLE_from_json.py lang/json/ammunition_type_from_json.py -msgid "mana infused blood" -msgid_plural "mana infused blood" +#: lang/json/COMESTIBLE_from_json.py +msgid "live mealgrubs" +msgid_plural "live mealgrubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" -"Blood that is filled to the brim with arcane energy. It releases a faint " -"blue glow." +"Thousands of mature mealworms, squirming in the viscous remains of their " +"growth medium. They are ready for harvest, and in fact require speedy " +"cleaning and processing, as the harvest can quickly rot in this stage." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "concentrated mana serum" -msgid_plural "concentrated mana serums" +msgid "mealgrubs" +msgid_plural "mealgrubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for concentrated mana serum +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" -"A very concentrated form of mana potion. You aren't quite sure of the " -"effects this will have…" +"A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" +"\n" +"Removed from their growth solution they'll quickly die and desiccate, as these already have. They could be safely eaten with no further processing, for a nutritious if somewhat striking meal." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "black dragon mutagen" -msgid_plural "black dragon mutagens" +msgid "nutriment" +msgid_plural "nutriments" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black dragon mutagen +#. ~ Description for nutriment #: lang/json/COMESTIBLE_from_json.py msgid "" -"An alchemic concoction made from the remains of a slain black dragon and a " -"bit of potion base. Ancient and Academic texts talk of profound changes " -"from consuming this." +"A crumbly white biscuit half the size of your thumb, packed with vitamins " +"and calories. Provides a whole meal's nutrition in portable form, but it's " +"a little hard to keep down, thanks to the rancid taste and chalky texture." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "black dragon serum" -msgid_plural "black dragon serums" +msgid "nutriment water" +msgid_plural "nutriment waters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black dragon serum +#. ~ Description for nutriment water #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen that seems swirl with the anger of a black " -"dragon. Do you dare leave you humanity behind and inject it?" +"Nutriment that has been dissolved in water to dilute its taste. Unnervingly" +" resembles spoiled milk." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "necco corpse" -msgid_plural "necco corpses" +msgid "Spite Soda" +msgid_plural "Spite Sodas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for necco corpse -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"The corpse of a necco. Now it really looks like a giant necco wafer. " -"Surely a bite wouldn't hurt, right?" -msgstr "" - -#. ~ Description for {'str_sp': 'marshmallows'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " -"oddly warm…" -msgstr "" - -#. ~ Description for {'str_sp': "s'mores"} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A pair of graham crackers with some chocolate and a marshmallow between " -"them. Warmth radiates from it as if it is… alive?" -msgstr "" - -#. ~ Description for chewy candy -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"A handful of colorful fruit-flavored chewy candy. They feel warm to the " -"touch and you can almost feel a slow beat coming from them. How odd…" -msgstr "" - -#. ~ Description for chewy reptilian candy +#. ~ Use action activation_message for Spite Soda. #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of colorful fruit-flavored chewy candy shaped in a reptilian " -"fashion. They're warm to the touch and you can feel a slow beat coming from" -" them. How odd…" +"You take a swig, it tastes like it was distilled in a hyperspace engine." msgstr "" -#. ~ Description for graham cracker +#. ~ Description for Spite Soda #: lang/json/COMESTIBLE_from_json.py msgid "" -"Dry and sugary, these crackers will leave you thirsty, but go good with some" -" chocolate and marshmallows. They shiver under your touch. Weird!" +"Spite Soda, the only soda native to the Salus system. 'Stay Frosty, Drink " +"Spite'. Visitors to the Salus system who have drank Spite Soda have " +"described it as the taste of transhumanist dialectical materialism." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "graham cracker roe" -msgid_plural "graham cracker roes" +msgid "H₂O™" +msgid_plural "H₂O™" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for graham cracker roe -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Dry and sugary, these cracker pellets will leave you thirsty, but go good " -"with some chocolate and marshmallows. They shiver under your touch. Weird!" -msgstr "" - -#. ~ Description for cookie +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" -"Sweet and delicious cookies, just like grandma used to bake. They shiver " -"under your touch. Weird!" +"When Thistle Industries successfully trademarked the chemical formula of " +"water, you thought the world had gone irreparably insane, but things have " +"only gotten worse since." msgstr "" -#. ~ Description for cookie egg #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Sweet and delicious cookies, shaped like eggs. They shiver under your touch" -" as if something is inside. Weird!" -msgstr "" +msgid "food cubes" +msgid_plural "food cubes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for chewing gum +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" -"Bright pink chewing gum. Sugary, sweet, and bad for your teeth. It's oddly" -" warm to the touch…" +"Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." msgstr "" -#. ~ Description for caffeinated chewing gum #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Chewing gum with added caffeine. Sugary and bad for your teeth, but it's a " -"nice pick-me-up. It's oddly warm to the touch…" -msgstr "" +msgid "Foodplace's Food-to-go™" +msgid_plural "Foodplace's Food-to-go™" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for candy cattle +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" -"A handful of chocolate candies shaped like cows. They're really warm, " -"enough to make you wonder how they haven't melted." +"Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " +"Foodman™." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "raw chocolate milk" -msgid_plural "raw chocolate milk" +msgid "loop 'fruit'" +msgid_plural "loop 'fruits'" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" -" cow. It couldn't be any fresher unless you drank it straight from the cow," -" which might upset it. Depending on your dietary sensibilities, you might " -"want to pasteurize or even boil this before drinking." -msgstr "" - -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for loop 'fruit' #: lang/json/COMESTIBLE_from_json.py -msgid "" -"Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." +msgid "Rings of caramelized yellow colorant, tasting not exactly like apple." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "liquid cacao" -msgid_plural "liquid cacao" +msgid "cee wafers" +msgid_plural "cee wafers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py -msgid "Liquid unsweetened cacao. Quite bitter to taste." +msgid "" +"Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," +" or so the wrapper claims." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "reconstituted chocolate milk" -msgid_plural "reconstituted chocolate milk" +msgid "beefsim" +msgid_plural "beefsims" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for beefsim #: lang/json/COMESTIBLE_from_json.py msgid "" -"Baby chocolate cow food, appropriated for adult humans. This milk has been " -"reconstituted from a processed milk. Spoils rapidly." +"Soy or pureed rat? Better not to know.\n" +"(But its probably both.) " msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "powdered chocolate milk" -msgid_plural "powdered chocolate milk" +msgid "soup, flavor 27" +msgid_plural "soup, flavor 27" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} -#: lang/json/COMESTIBLE_from_json.py -msgid "" -"Dehydrated chocolate milk powder. Mix with water to make drinkable milk." -msgstr "" - -#. ~ Description for licorice +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" -"A swirly confectionary treat in strings of sweet tasting candy. You think " -"you've seen them wriggle a bit. How strange…" +"Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." +" Branding implies at least 26 other flavors, but you have neither seen or " +"heard about any of them." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "pieces of candy wrapper" -msgid_plural "pieces of candy wrapper" +msgid "landfall survival rations" +msgid_plural "landfall survival rations" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" -"Bits and pieces of plastic entangled in sticky candy goop. They spot some " -"bright colors and might have been part of a candy wrapper at some point. " -"Maybe you could suck the sugar from them, if you're really desperate." +"Sealed emergency rations invariably found within an escape pod's inventory." +" This particular pack should provide around a day's worth of nutrition. " +"Required by regulation but rarely ever used, the design of these \"meals\" " +"prioritizes a long shelf life and a very low bulk-cost. Which lends them " +"their disgusting taste of greased sawdust." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "sticky sludge" -msgid_plural "sticky sludge" +msgid "caffex" +msgid_plural "caffex" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" -"A pile of weird sticky sludge. It looks absolutly disgusting but smells " -"kind of sweet." +"A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "caramel ointment" -msgid_plural "caramel ointments" +#: lang/json/COMESTIBLE_from_json.py lang/json/SPELL_from_json.py +msgid "heat retention cream" +msgid_plural "heat retention creams" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for caramel ointment +#. ~ Description for heat retention cream #: lang/json/COMESTIBLE_from_json.py msgid "" -"An ointment made of caramel. You could use it to heal your wounds, if you " -"were made of sugar." +"Rub this on your skin when you are expecting exposure to extreme cold " +"temperatures. Cannot protect from instant frostbite. Smells like the " +"inside of a sheep." msgstr "" -#: lang/json/COMESTIBLE_from_json.py -msgid "berry-shaped anomaly" -msgid_plural "berry-shaped anomalies" +#: lang/json/COMESTIBLE_from_json.py lang/json/SPELL_from_json.py +msgid "heat retention cream xtreme" +msgid_plural "heat retention cream xtremes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for berry-shaped anomaly +#. ~ Description for heat retention cream xtreme #: lang/json/COMESTIBLE_from_json.py msgid "" -"If we left this as it should be, one could just walk into the Bloom " -"uncontested and partake of the Fruit. We can't have that, can we?" +"This product was advertised before the Cataclysm for extreme cold " +"environment protection. You remember a demonstration involving a woman " +"coating her hand in this and plunging it in liquid nitrogen for a second. " +"You're pretty sure that was staged." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "seed-shaped anomaly" -msgid_plural "seed-shaped anomalies" +msgid "supercritical coolant" +msgid_plural "supercritical coolant" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for seed-shaped anomaly +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" -"If we left this as it should be, one could just walk into the Garden " -"uncontested and partake of the Seed. We can't have that, can we?" +"Capable of withstanding extreme temperature gradients, fulleroclathrate " +"supercritical coolants are the lifeblood of high-energy systems, from " +"cutting-edge aerospace engines to experimental small arms tech. Liquid at " +"room conditions, it has to be used in a pressurized closed-loop system at " +"450 psi or greater." msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "gelatin" -msgid_plural "marloss gelatin" +msgid "vampire mutagen" +msgid_plural "vampire mutagens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for gelatin +#. ~ Description for vampire mutagen +#. ~ Description for wendigo mutagen #: lang/json/COMESTIBLE_from_json.py -msgid "" -"If we left this as it should be, one could just walk into the Spire " -"uncontested and partake of the Sap. Wait, how did you even GET this anyway?" +msgid "Mutagen cocktail simply labeled 'C.R.I.T R&D.'" msgstr "" #: lang/json/COMESTIBLE_from_json.py -msgid "fruit-shaped anomaly" -msgid_plural "fruit-shaped anomalies" +msgid "vampire serum" +msgid_plural "vampire serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fruit-shaped anomaly +#. ~ Description for vampire serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"We do not exist at the moment. Clever little human, no doubt debugging to " -"see this? We will not permit you to join us while we are modded out." +"A super-concentrated pitch-black substance with silvery flecks that reminds " +"you of a starry-night sky. You need a syringe to inject it… if you really " +"want to?" msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "internal combustion engine" -msgid_plural "internal combustion engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "wendigo mutagen" +msgid_plural "wendigo mutagens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ENGINE_from_json.py -msgid "base diesel engine" -msgid_plural "base diesel engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "wendigo serum" +msgid_plural "wendigo serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ENGINE_from_json.py -msgid "base gasoline engine" -msgid_plural "base gasoline engines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#. ~ Description for wendigo serum +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A super-concentrated peat-brown substance with glittering green flecks that " +"reminds you of a tree. You need a syringe to inject it… if you really want " +"to?" +msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "base steam engine" -msgid_plural "base steam engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "SpOreos" +msgid_plural "SpOreos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/ENGINE_from_json.py -msgid "1-cylinder engine" -msgid_plural "1-cylinder engines" +#. ~ Description for SpOreos +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"The hit cookie from Mycus Industries! Now comes in addicting flavors such " +"as Marloss, Chanterelle, and The Encroaching, Unavoidable Death of Human " +"Civilization." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "alien hydrogel" +msgid_plural "alien hydrogels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 1-cylinder engine -#: lang/json/ENGINE_from_json.py -msgid "A single-cylinder 4-stroke combustion engine." +#. ~ Description for alien hydrogel +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A lump of alien hydrogel with small writhing specks in it. Useful in " +"crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "large 1-cylinder engine" -msgid_plural "large 1-cylinder engines" +#. ~ Description for cooked brains +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Now you can emulate a zombie! Preparing brain for eating is challenging, " +"and this doesn't seem to be the best way to do it." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "chunk of alien meat" +msgid_plural "chunks of alien meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large 1-cylinder engine -#: lang/json/ENGINE_from_json.py +#. ~ Description for chunk of alien meat +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A powerful high-compression single-cylinder 4-stroke combustion engine." +"This dense, stringy substance smells strongly like burnt oil, or some sort " +"of industrial chemical. For all intents and purposes, it seems like the " +"'meat' of the creature, but its bizarre texture and faintly red-purple tint " +"is unlike anything you've ever experienced before. You could eat it, but no" +" doubt it would not only taste heinous but also make you sick, being made of" +" material your body was never supposed to ingest." msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "small 1-cylinder engine" -msgid_plural "small 1-cylinder engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "dehydrated alien meat" +msgid_plural "dehydrated alien meats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small 1-cylinder engine -#: lang/json/ENGINE_from_json.py -msgid "A small single-cylinder 2-stroke combustion engine." +#. ~ Description for dehydrated alien meat +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Pieces of alien meat that have been dried to prevent them from rotting away." +" It will still poison you if you eat this." msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "light aero-engine" -msgid_plural "light aero-engines" +#. ~ Description for alien bone +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A piece of a hard material with many crests and protrusions, made of a hard " +"material that occasionally leaves a bit of moisture on your hand when you " +"touch it. It seems basically like a bone, though not one you'd see in any " +"anatomy textbook. You could eat it, but no doubt it would not only taste " +"henious but also make you sick, being made of material your body was never " +"supposed to injest. It might at least be able to be used for something, if " +"not as well as the earthly variant due to its fiddly size and shape." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "alien fat" +msgid_plural "alien fats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for light aero-engine -#: lang/json/ENGINE_from_json.py +#. ~ Description for alien fat +#: lang/json/COMESTIBLE_from_json.py msgid "" -"An air-cooled, four-cylinder, horizontally opposed internal combustion " -"engine, rated for 150 horsepower. Commonly used on light aircraft." +"A chunk of dense fat that is tough and rubbery. It smells simply heinous, " +"like open sewer and pungent chemicals, and is doubtless full of strange " +"material that your body was never supposed to injest. It might at least be " +"able to be used for something, if not quite as well as its earthly variant " +"due to its relative impurities." msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "Inline-4 engine" -msgid_plural "Inline-4 engines" +#. ~ Description for alien tallow +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A smooth grayish block of cleaned and rendered alien fat. Processing it " +"seems to have at least removed some of the smell. It won't spoil for a very" +" long time, and can be used as an ingredient in many projects. It is no " +"safer than its source material to consume." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "chunk of unusual meat" +msgid_plural "chunks of unusual meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Inline-4 engine -#: lang/json/ENGINE_from_json.py -msgid "A small, yet powerful 4-cylinder combustion engine." +#. ~ Description for chunk of unusual meat +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Meat from the aliens is typically quite foul, full of toxins and substances " +"not meant to be digested by humans. However, this piece almost looks edible" +" - if not for a few sections that still have strange hues and disgusting, " +"spongy texture. Still, with a bit of preparation, it might even be somewhat" +" palatable." msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "I6 diesel engine" -msgid_plural "I6 diesel engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "scrap of unusual meat" +msgid_plural "scraps of unusual meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for I6 diesel engine -#: lang/json/ENGINE_from_json.py -msgid "A powerful straight-6 diesel engine." -msgstr "Потужний 6Ц дизельний двигун" +#. ~ Description for scrap of unusual meat +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A tiny scrap of meat from an unusual creature. It smells a bit odd and has " +"a variety of discolorations that indicate that it is still going to be rough" +" on your digestive system. Still, seems digestible at least, if you cook it" +" and remove the worst parts." +msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "V-twin engine" -msgid_plural "V-twin engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "unusual humanoid meat" +msgid_plural "unusual humanoid meats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for V-twin engine -#: lang/json/ENGINE_from_json.py -msgid "A 2-cylinder 4-stroke combustion engine." +#. ~ Description for unusual humanoid meat +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Freshly butchered from the body of an alien creature that was unsettlingly " +"humanoid in appearance. It smells faintly of chemicals and is colored odd " +"hues that indicate that it is still going to be rough on your digestive " +"system. You'd have to be crazy or starving to eat this." msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "V6 engine" -msgid_plural "V6 engines" +#. ~ Description for cooked cretin +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Cooked meat from an alien humanoid. Now that the worst bits have been " +"processed, it's probably digestible, if not very appetizing." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "cooked unusual meat" +msgid_plural "cooked unusual meats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for V6 engine -#: lang/json/ENGINE_from_json.py -msgid "A powerful 6-cylinder combustion engine." +#. ~ Description for cooked unusual meat +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"This is a cooked chunk of meat from an unusual critter. It has strange " +"colors, smells a bit funny, and has a mushy texture but it tastes… mostly " +"normal. Hopefully you cut away the worst bits well enough." msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "V6 diesel engine" -msgid_plural "V6 diesel engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "cooked scrap of unusual meat" +msgid_plural "cooked scraps of unusual meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for V6 diesel engine -#: lang/json/ENGINE_from_json.py -msgid "A powerful 6-cylinder diesel engine." -msgstr "Потужний V-подібний 6Ц дизельний двигун" - -#: lang/json/ENGINE_from_json.py -msgid "V8 engine" -msgid_plural "V8 engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "unusual tallow" +msgid_plural "unusual tallows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for V8 engine -#: lang/json/ENGINE_from_json.py -msgid "A large and very powerful 8-cylinder combustion engine." +#. ~ Description for unusual tallow +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A smooth white block of cleaned and rendered fat sourced from an unusual " +"creature. It will remain edible for a very long time, and can be used as an" +" ingredient in many foods and projects." msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "V8 diesel engine" -msgid_plural "V8 diesel engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "unusual lard" +msgid_plural "unusual lards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for V8 diesel engine -#: lang/json/ENGINE_from_json.py -msgid "A powerful 8-cylinder diesel engine." -msgstr "Потужний V-подібний 8Ц дизельний двигун" +#. ~ Description for unusual lard +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A smooth white block of dry-rendered fat sourced from an alien. It will " +"remain edible for a very long time, and can be used as an ingredient in many" +" foods and projects." +msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "V12 engine" -msgid_plural "V12 engines" +#. ~ Description for chunk of mutant humanoid fat +#: lang/json/COMESTIBLE_from_json.py +msgid "Freshly butchered fat from an alien humanoid." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "unusual humanoid tallow" +msgid_plural "unusual humanoid tallows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for V12 engine -#: lang/json/ENGINE_from_json.py +#. ~ Description for unusual humanoid tallow +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A massive and extremely powerful V12 engine, usually built into high end " -"sports cars." +"A smooth white block of cleaned and rendered fat sourced from an alien " +"humanoid. It won't rot for a very long time, and can be used as an " +"ingredient in many foods and projects." msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "V12 diesel engine" -msgid_plural "V12 diesel engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "unusual humanoid lard" +msgid_plural "unusual humanoid lards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for V12 diesel engine -#: lang/json/ENGINE_from_json.py +#. ~ Description for unusual humanoid lard +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A massive and extremely powerful V12 engine, usually built into heavy " -"trucks." +"A smooth white block of dry-rendered fat sourced from an alien humanoid. It" +" won't rot for a very long time, and can be used as an ingredient in many " +"foods and projects." msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "makeshift steam engine" -msgid_plural "makeshift steam engines" +#. ~ Description for raw human skin +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A carefully folded raw skin harvested from a humanoid. You can cure it for " +"storage and tanning, or eat it if you're desperate enough." +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "raw humanoid pelt" +msgid_plural "raw humanoid pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift steam engine -#: lang/json/ENGINE_from_json.py +#. ~ Description for raw humanoid pelt +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A small, primitive, steam engine. An integrated boiler burns coal to heat " -"water into steam, driving a reciprocating shaft. A condenser recaptures the" -" water, making this a closed cycle system." +"A carefully folded raw skin harvested from a fur-bearing creature that was " +"disturbingly humanoid. It still has the fur attached. You can cure it for " +"storage and tanning, or eat it if you're desperate enough." msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "small steam engine" -msgid_plural "small steam engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "dinosaur egg" +msgid_plural "dinosaur eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small steam engine -#: lang/json/ENGINE_from_json.py -msgid "" -"A small steam engine. An integrated boiler burns coal to heat water into " -"steam, driving a reciprocating shaft. A condenser recaptures the water, " -"making this a closed cycle system." +#. ~ Description for dinosaur egg +#: lang/json/COMESTIBLE_from_json.py +msgid "Pale, football-shaped egg laid by a dinosaur." msgstr "" -#: lang/json/ENGINE_from_json.py -msgid "medium steam engine" -msgid_plural "medium steam engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "coelophysis egg" +msgid_plural "coelophysis eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for medium steam engine -#: lang/json/ENGINE_from_json.py -msgid "" -"A medium-sized steam engine. An integrated boiler burns coal to heat water " -"into steam, driving a reciprocating shaft. A condenser recaptures the " -"water, making this a closed cycle system." -msgstr "" - -#: lang/json/ENGINE_from_json.py -msgid "1350 hp gas turbine engine" -msgid_plural "1350 hp gas turbine engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "dilophosaurus egg" +msgid_plural "dilophosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 1350 hp gas turbine engine -#: lang/json/ENGINE_from_json.py -msgid "" -"A gas turbine engine, usually used for military vehicles. Known for its " -"high rate of fuel consumption." -msgstr "" - -#: lang/json/ENGINE_from_json.py -msgid "1900 hp gas turbine engine" -msgid_plural "1900 hp gas turbine engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "ceratosaurus egg" +msgid_plural "ceratosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 1900 hp gas turbine engine -#: lang/json/ENGINE_from_json.py -msgid "" -"A large gas turbine engine, usually used for military helicopters. Known " -"for its high rate of fuel consumption." -msgstr "" - -#: lang/json/ENGINE_from_json.py -msgid "6000 hp gas turbine engine" -msgid_plural "6000 hp gas turbine engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "spinosaurus egg" +msgid_plural "spinosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 6000 hp gas turbine engine -#: lang/json/ENGINE_from_json.py -msgid "" -"A massive gas turbine engine, used to power the V-22 Osprey. Known for its " -"high rate of fuel consumption." -msgstr "" - -#: lang/json/ENGINE_from_json.py -msgid "large steam engine" -msgid_plural "large steam engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "allosaurus egg" +msgid_plural "allosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large steam engine -#: lang/json/ENGINE_from_json.py -msgid "" -"A large steam engine. An integrated boiler burns coal to heat water into " -"steam, driving a reciprocating shaft. A condensor recaptures the water, " -"making this a closed cycle system." -msgstr "" - -#: lang/json/ENGINE_from_json.py -msgid "huge steam engine" -msgid_plural "huge steam engines" +#: lang/json/COMESTIBLE_from_json.py +msgid "acrocanthosaurus egg" +msgid_plural "acrocanthosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for huge steam engine -#: lang/json/ENGINE_from_json.py -msgid "" -"A huge steam engine. An integrated boiler burns coal to heat water into " -"steam, driving a reciprocating shaft. A condensor recaptures the water, " -"making this a closed cycle system." -msgstr "" - -#: lang/json/ENGINE_from_json.py -msgid "small steam turbine" -msgid_plural "small steam turbines" +#: lang/json/COMESTIBLE_from_json.py +msgid "siats egg" +msgid_plural "siats eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small steam turbine -#: lang/json/ENGINE_from_json.py -msgid "" -"A small steam turbine. An integrated boiler burns coal to heat water into " -"steam, driving a spinning turbine. A condensor recaptures the water, making" -" this a closed cycle system." -msgstr "" - -#: lang/json/ENGINE_from_json.py -msgid "medium steam turbine" -msgid_plural "medium steam turbines" +#: lang/json/COMESTIBLE_from_json.py +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for medium steam turbine -#: lang/json/ENGINE_from_json.py -msgid "" -"A medium sized steam turbine. An integrated boiler burns coal to heat water" -" into steam, driving a spinning turbine. A condensor recaptures the water, " -"making this a closed cycle system." -msgstr "" - -#: lang/json/ENGINE_from_json.py -msgid "large steam turbine" -msgid_plural "large steam turbines" +#: lang/json/COMESTIBLE_from_json.py +msgid "albertosaurus egg" +msgid_plural "albertosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large steam turbine -#: lang/json/ENGINE_from_json.py -msgid "" -"A large steam turbine. An integrated boiler burns coal to heat water into " -"steam, driving a spinning turbine. A condensor recaptures the water, making" -" this a closed cycle system." -msgstr "" - -#: lang/json/ENGINE_from_json.py -msgid "huge steam turbine" -msgid_plural "huge steam turbines" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for huge steam turbine -#: lang/json/ENGINE_from_json.py -msgid "" -"A huge steam turbine. An integrated boiler burns coal to heat water into " -"steam, driving a spinning turbine. A condensor recaptures the water, making" -" this a closed cycle system." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "first aid kit" -msgid_plural "first aid kits" +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for first aid kit -#: lang/json/GENERIC_from_json.py -msgid "" -"A typical universal first aid kit, one you'd see in a car or in a household." -" It contains a variety of common medical items stored in case of accidents " -"and injuries. Disassemble to get its content." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "money bundle" -msgid_plural "money bundles" +#: lang/json/COMESTIBLE_from_json.py +msgid "compsognathus egg" +msgid_plural "compsognathus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for money bundle -#: lang/json/GENERIC_from_json.py -msgid "A bundle holding many 20 dollar bills, pretty useless now though." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "smooth sphere" -msgid_plural "smooth spheres" +#: lang/json/COMESTIBLE_from_json.py +msgid "gallimimus egg" +msgid_plural "gallimimus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for smooth sphere -#. ~ Description for slim rod -#. ~ Description for teardrop-shaped stone -#. ~ Description for hollow, transparent cube -#. ~ Description for winding, flexible rod -#. ~ Description for smooth disc -#. ~ Description for string of beads -#. ~ Description for very thin sheet -#. ~ Description for spiked sphere -#. ~ Description for malleable blob -#. ~ Description for spiraling rod -#. ~ Description for small pin -#. ~ Description for hollow tube -#. ~ Description for regular tetrahedron -#. ~ Description for transluscent crystal -#. ~ Description for twisted, knotted cord -#. ~ Description for crescent-shaped stone -#: lang/json/GENERIC_from_json.py -msgid "" -"It is the only one of its kind.\n" -"It may have unknown powers; try activating them." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "slim rod" -msgid_plural "slim rods" +#: lang/json/COMESTIBLE_from_json.py +msgid "velociraptor egg" +msgid_plural "velociraptor eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "teardrop-shaped stone" -msgid_plural "teardrop-shaped stones" +#: lang/json/COMESTIBLE_from_json.py +msgid "nothronychus egg" +msgid_plural "nothronychus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "hollow, transparent cube" -msgid_plural "hollow, transparent cubes" +#: lang/json/COMESTIBLE_from_json.py +msgid "deinonychus egg" +msgid_plural "deinonychus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "winding, flexible rod" -msgid_plural "winding, flexible rods" +#: lang/json/COMESTIBLE_from_json.py +msgid "utahraptor egg" +msgid_plural "utahraptor eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "smooth disc" -msgid_plural "smooth discs" +#: lang/json/COMESTIBLE_from_json.py +msgid "eoraptor egg" +msgid_plural "eoraptor eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "string of beads" -msgid_plural "strings of beads" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "very thin sheet" -msgid_plural "very thin sheets" +#: lang/json/COMESTIBLE_from_json.py +msgid "apatosaurus egg" +msgid_plural "apatosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "spiked sphere" -msgid_plural "spiked spheres" +#: lang/json/COMESTIBLE_from_json.py +msgid "brontosaurus egg" +msgid_plural "brontosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "malleable blob" -msgid_plural "malleable blobs" +#: lang/json/COMESTIBLE_from_json.py +msgid "diplodocus egg" +msgid_plural "diplodocus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "spiraling rod" -msgid_plural "spiraling rods" +#: lang/json/COMESTIBLE_from_json.py +msgid "camarasaurus egg" +msgid_plural "camarasaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "small pin" -msgid_plural "small pins" +#: lang/json/COMESTIBLE_from_json.py +msgid "brachiosaurus egg" +msgid_plural "brachiosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "hollow tube" -msgid_plural "hollow tubes" +#: lang/json/COMESTIBLE_from_json.py +msgid "alamosaurus egg" +msgid_plural "alamosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "regular tetrahedron" -msgid_plural "regular tetrahedrons" +#: lang/json/COMESTIBLE_from_json.py +msgid "scutellosaurus egg" +msgid_plural "scutellosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "transluscent crystal" -msgid_plural "transluscent crystals" +#: lang/json/COMESTIBLE_from_json.py +msgid "stegosaurus egg" +msgid_plural "stegosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "twisted, knotted cord" -msgid_plural "twisted, knotted cords" +#: lang/json/COMESTIBLE_from_json.py +msgid "dyoplosaurus egg" +msgid_plural "dyoplosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "crescent-shaped stone" -msgid_plural "crescent-shaped stones" +#: lang/json/COMESTIBLE_from_json.py +msgid "ankylosaurus egg" +msgid_plural "ankylosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "fetid goop" -msgid_plural "fetid goops" +#: lang/json/COMESTIBLE_from_json.py +msgid "nodosaurus egg" +msgid_plural "nodosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fetid goop -#: lang/json/GENERIC_from_json.py -msgid "" -"A foul-smelling goop. It has a disgusting texture and a powerful smell that" -" overwhelms every other smell around it." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "limestone shard" -msgid_plural "limestone shards" +#: lang/json/COMESTIBLE_from_json.py +msgid "edmontonia egg" +msgid_plural "edmontonia eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for limestone shard -#: lang/json/GENERIC_from_json.py -msgid "" -"A small shard of limestone. Pretty flimsy and not much of a weapon, but its" -" alkaline properties may yet find some use." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "rock salt" -msgid_plural "rock salt" -msgstr[0] "кам'яна сіль" -msgstr[1] "кам'яна сіль" -msgstr[2] "кам'яна сіль" -msgstr[3] "кам'яна сіль" - -#. ~ Description for {'str_sp': 'rock salt'} -#: lang/json/GENERIC_from_json.py -msgid "A handful of rock salt crystals. Could be refined into table salt." -msgstr "Пригоршня кристалів кам'яної соли. Можна очистити до кухонної солі." - -#: lang/json/GENERIC_from_json.py -msgid "rhodonite" -msgid_plural "rhodonite" +#: lang/json/COMESTIBLE_from_json.py +msgid "camptosaurus egg" +msgid_plural "camptosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rhodonite'} -#: lang/json/GENERIC_from_json.py -msgid "" -"A chunk of rhodonite. It has manganese dioxide covering and going through " -"it in veins, which can be obtained using a chisel." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "zincite" -msgid_plural "zincite" +#: lang/json/COMESTIBLE_from_json.py +msgid "maiasaura egg" +msgid_plural "maiasaura eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'zincite'} -#: lang/json/GENERIC_from_json.py -msgid "" -"A chunk of zincite. Could be refined into zinc oxide, then into zinc by " -"reduction with a source of carbon." -msgstr "" - -#: lang/json/GENERIC_from_json.py lang/json/ammunition_type_from_json.py -msgid "plutonium" -msgid_plural "plutoniums" +#: lang/json/COMESTIBLE_from_json.py +msgid "parasaurolophus egg" +msgid_plural "parasaurolophus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plutonium -#: lang/json/GENERIC_from_json.py -msgid "" -"Some plutonium. You should probably get very far away from this, if you " -"enjoy not being irradiated." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "hickory root" -msgid_plural "hickory roots" +#: lang/json/COMESTIBLE_from_json.py +msgid "corythosaurus egg" +msgid_plural "corythosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hickory root -#: lang/json/GENERIC_from_json.py -msgid "A root from a hickory tree. It has an earthy smell." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "hickory nuts" -msgid_plural "hickory nuts" +#: lang/json/COMESTIBLE_from_json.py +msgid "edmontosaurus egg" +msgid_plural "edmontosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hickory nuts'} -#: lang/json/GENERIC_from_json.py -msgid "A handful of hard nuts from a hickory tree, still in their shell." -msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "pachycephalosaurus egg" +msgid_plural "pachycephalosaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "pecans" -msgid_plural "pecans" +#: lang/json/COMESTIBLE_from_json.py +msgid "pachyrhinosaurus egg" +msgid_plural "pachyrhinosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pecans'} -#: lang/json/GENERIC_from_json.py -msgid "A handful of hard nuts from a pecan tree, still in their shell." -msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "pentaceratops egg" +msgid_plural "pentaceratops eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "pistachios" -msgid_plural "pistachios" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pistachios'} -#: lang/json/GENERIC_from_json.py -msgid "A handful of hard nuts from a pistachio tree, still in their shell." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "almonds" -msgid_plural "almonds" -msgstr[0] "мигдаль" -msgstr[1] "мигдаль" -msgstr[2] "мигдаль" -msgstr[3] "мигдаль" - -#. ~ Description for {'str_sp': 'almonds'} -#: lang/json/GENERIC_from_json.py -msgid "A handful of hard nuts from an almond tree, still in their shell." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "peanuts" -msgid_plural "peanuts" +#: lang/json/COMESTIBLE_from_json.py +msgid "torosaurus egg" +msgid_plural "torosaurus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'peanuts'} -#: lang/json/GENERIC_from_json.py -msgid "A handful of hard nuts from a peanut bush, still in their shell." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "hazelnuts" -msgid_plural "hazelnuts" +#: lang/json/COMESTIBLE_from_json.py +msgid "triceratops egg" +msgid_plural "triceratops eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hazelnuts'} -#: lang/json/GENERIC_from_json.py -msgid "A handful of hard nuts from a hazelnut tree, still in their shell." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "chestnuts" -msgid_plural "chestnuts" +#: lang/json/COMESTIBLE_from_json.py +msgid "dimorphodon egg" +msgid_plural "dimorphodon eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chestnuts'} -#: lang/json/GENERIC_from_json.py -msgid "A handful of hard nuts from a chestnut tree, still in their shell." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "walnuts" -msgid_plural "walnuts" +#: lang/json/COMESTIBLE_from_json.py +msgid "pteranodon egg" +msgid_plural "pteranodon eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'walnuts'} -#: lang/json/GENERIC_from_json.py -msgid "A handful of hard nuts from a walnut tree, still in their shell." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "steel grille" -msgid_plural "steel grilles" +#: lang/json/COMESTIBLE_from_json.py +msgid "quetzalcoatlus egg" +msgid_plural "quetzalcoatlus eggs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for steel grille -#: lang/json/GENERIC_from_json.py -msgid "" -"This is a metal grille. It can be used as a framework for making a chemical" -" catalyst." -msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "mosasaurus egg" +msgid_plural "mosasaurus eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "cobalt-60 pellet" -msgid_plural "cobalt-60 pellets" +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrant serum" +msgid_plural "tyrant serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cobalt-60 pellet -#: lang/json/GENERIC_from_json.py +#. ~ Description for tyrant serum +#: lang/json/COMESTIBLE_from_json.py msgid "" -"Radioactive material that used to be a part of some nuclear industry " -"equipment. You have yet to find some use for it." +"A super-concentrated mutagen strongly resembling children's toy slime. You " +"need a syringe to inject it… if you really want to?" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "sandbag" -msgid_plural "sandbags" +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrant mutagen" +msgid_plural "tyrant mutagens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sandbag -#: lang/json/GENERIC_from_json.py +#. ~ Description for tyrant mutagen +#: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a canvas sack filled with sand. It can be used to construct simple " -"barricades." +"An extremely rare mutagen cocktail, it smells like blood and is a green goop" +" with blood-red streaks" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "gravelbag" -msgid_plural "gravelbags" +#: lang/json/COMESTIBLE_from_json.py +msgid "stego serum" +msgid_plural "stego serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for gravelbag -#: lang/json/GENERIC_from_json.py -msgid "" -"This is a canvas sack filled with gravel. It can be used to construct " -"simple barricades." -msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "stego mutagen" +msgid_plural "stego mutagens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "earthbag" -msgid_plural "earthbags" +#: lang/json/COMESTIBLE_from_json.py +msgid "potion starter" +msgid_plural "potion starters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for earthbag -#: lang/json/GENERIC_from_json.py +#. ~ Description for potion starter +#: lang/json/COMESTIBLE_from_json.py msgid "" -"This is a canvas sack filled with soil. It can be used to construct simple " -"barricades." +"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 "" -#: lang/json/GENERIC_from_json.py -msgid "2.5L canteen" -msgid_plural "2.5L canteens" +#: lang/json/COMESTIBLE_from_json.py +msgid "superior potion starter" +msgid_plural "superior potion starters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 2.5L canteen -#: lang/json/GENERIC_from_json.py +#. ~ Description for superior potion starter +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A large plastic water canteen, with a 2.5 liter capacity and carrying strap." +"Pure ethanol saturated with magical energy. The sheer power concentrated " +"within causes the surface of the potion to ripple continuously." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "30 gallon barrel" -msgid_plural "30 gallon barrels" +#: lang/json/COMESTIBLE_from_json.py +msgid "large adrenal gland" +msgid_plural "large adrenal glands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 30 gallon barrel -#: lang/json/GENERIC_from_json.py -msgid "A huge plastic barrel with a watertight lid." -msgstr "" - -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "steel drum (100L)" -msgid_plural "steel drums (100L)" -msgstr[0] "сталева діжка (100 л)" -msgstr[1] "сталеві діжки (100 л)" -msgstr[2] "сталевих діжок (100 л)" -msgstr[3] "сталева діжка (100 л)" - -#. ~ Description for steel drum (100L) -#: lang/json/GENERIC_from_json.py -msgid "A huge steel barrel with a watertight lid." -msgstr "" - -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "steel drum (200L)" -msgid_plural "steel drums (200L)" -msgstr[0] "сталева діжка (200 л)" -msgstr[1] "сталеві діжки (200 л)" -msgstr[2] "сталевих діжок (200 л)" -msgstr[3] "сталева діжка (200 л)" - -#. ~ Description for steel drum (200L) -#: lang/json/GENERIC_from_json.py -msgid "A massive steel barrel with a watertight lid." +#. ~ Description for large adrenal gland +#: lang/json/COMESTIBLE_from_json.py +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 "" -#: lang/json/GENERIC_from_json.py -msgid "canvas sack" -msgid_plural "canvas sacks" +#: lang/json/COMESTIBLE_from_json.py +msgid "dragon essence" +msgid_plural "dragon essences" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for canvas sack -#: lang/json/GENERIC_from_json.py +#. ~ Description for dragon essence +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A large and sturdy canvas sack. Smells faintly of earth and hard work." +"This is the magical essence from a dragon, distilled into a concentrated " +"form." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "canvas bag" -msgid_plural "canvas bags" +#: lang/json/COMESTIBLE_from_json.py +msgid "raw black dragon hide" +msgid_plural "raw black dragon hides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for canvas bag -#: lang/json/GENERIC_from_json.py -msgid "Small bag made of canvas. Looks fine to store dried herbs in." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "plastic bag" -msgid_plural "plastic bags" -msgstr[0] "пакетик" -msgstr[1] "пакетик" -msgstr[2] "пакетики" -msgstr[3] "пакетик" - -#. ~ Description for plastic bag -#: lang/json/GENERIC_from_json.py -msgid "A small, open plastic bag. Essentially trash." +#. ~ Description for raw black dragon hide +#: lang/json/COMESTIBLE_from_json.py +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 "" -#: lang/json/GENERIC_from_json.py -msgid "small powder paper bag" -msgid_plural "small powder paper bags" +#: lang/json/COMESTIBLE_from_json.py +msgid "lesser mana potion" +msgid_plural "lesser mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small powder paper bag -#: lang/json/GENERIC_from_json.py +#. ~ Description for lesser mana potion +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A small but sturdy paper bag. Rock solid when packed full with powder." +"You can't buy these, so you need to save them until the last boss! " +"Actually, don't even use them there!" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "zipper bag" -msgid_plural "zipper bags" +#: lang/json/COMESTIBLE_from_json.py +msgid "mana potion" +msgid_plural "mana potions" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for zipper bag -#: lang/json/GENERIC_from_json.py -msgid "" -"An inexpensive flexible rectangular storage bag on its typical small size. " -"Transparent and made of plastic, it can be sealed and opened by a slider " -"which works in a similar way to a zip fastener." -msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "greater mana potion" +msgid_plural "greater mana potions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "body bag" -msgid_plural "body bags" +#: lang/json/COMESTIBLE_from_json.py +msgid "potion of Cat's Grace" +msgid_plural "potions of Cat's Grace" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for body bag -#: lang/json/GENERIC_from_json.py +#. ~ Description for potion of Cat's Grace +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A large, human size, rectangular bag made of strong plastic, with a zipper " -"in the middle. Used to hold a dead body." +"This is a potion of Cat's Grace. It will increase your dexterity for 10 " +"minutes." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "IV bag" -msgid_plural "IV bags" +#: lang/json/COMESTIBLE_from_json.py +msgid "potion of Ogre's Strength" +msgid_plural "potions of Ogre's Strength" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for IV bag -#: lang/json/GENERIC_from_json.py -msgid "A small, sealed plastic bag for liquids used in intravenous therapy." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "glass bottle" -msgid_plural "glass bottles" -msgstr[0] "скляна пляшка" -msgstr[1] "скляна пляшка" -msgstr[2] "скляна пляшка" -msgstr[3] "скляні пляшки" - -#. ~ Description for glass bottle -#: lang/json/GENERIC_from_json.py -msgid "A watertight glass bottle, holds 750 ml of liquid." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "plastic bottle" -msgid_plural "plastic bottles" -msgstr[0] "пластикова пляшка" -msgstr[1] "пластикова пляшка" -msgstr[2] "пластикова пляшка" -msgstr[3] "пластикові пляшки" - -#. ~ Description for plastic bottle -#: lang/json/GENERIC_from_json.py +#. ~ Description for potion of Ogre's Strength +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A watertight plastic bottle, holds 500 ml of liquid. Some may be factory-" -"sealed to increase shelf life." +"This is a potion of Ogre's Strength. It will increase your strength for 10 " +"minutes." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "condiment bottle" -msgid_plural "condiment bottles" -msgstr[0] "пляшечка для соусів" -msgstr[1] "пляшечки для соусів" -msgstr[2] "пляшечок для соусів" -msgstr[3] "пляшечки для соусів" +#: lang/json/COMESTIBLE_from_json.py +msgid "potion of Eagle's Sight" +msgid_plural "potions of Eagle's Sight" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for condiment bottle -#: lang/json/GENERIC_from_json.py +#. ~ Description for potion of Eagle's Sight +#: lang/json/COMESTIBLE_from_json.py msgid "" -"An inverted plastic bottle for condiments. Preserves content from rot until" -" opened." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "small plastic bottle" -msgid_plural "small plastic bottles" -msgstr[0] "мала пластикова пляшка" -msgstr[1] "мала пластикова пляшка" -msgstr[2] "мала пластикова пляшка" -msgstr[3] "малі пластикові пляшки" - -#. ~ Description for small plastic bottle -#: lang/json/GENERIC_from_json.py -msgid "A watertight plastic bottle, holds 250 ml of liquid." +"This is a potion of Eagle's Sight. It will increase your perception for 10 " +"minutes." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "large plastic bottle" -msgid_plural "large plastic bottles" -msgstr[0] "велика пластикова пляшка" -msgstr[1] "велика пластикова пляшка" -msgstr[2] "велика пластикова пляшка" -msgstr[3] "великі пластикові пляшки" +#: lang/json/COMESTIBLE_from_json.py +msgid "potion of Fox's Cunning" +msgid_plural "potions of Fox's Cunning" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for large plastic bottle -#: lang/json/GENERIC_from_json.py +#. ~ Description for potion of Fox's Cunning +#: lang/json/COMESTIBLE_from_json.py msgid "" -"It's a two-liter plastic bottle that can hold a lot of soda, or, nowadays, " -"boiled water." +"This is a potion of Fox's Cunning. It will increase your intelligence for " +"10 minutes." msgstr "" -"Це 2-літрова пластикова пляшка, що може вмістити багато лимонаду, чи, у " -"теперішні часи, кип'яченої води." -#: lang/json/GENERIC_from_json.py -msgid "clay bowl" -msgid_plural "clay bowls" -msgstr[0] "глиняна миска" -msgstr[1] "глиняні миски" -msgstr[2] "глиняних мисок" -msgstr[3] "глиняна миска" +#: lang/json/COMESTIBLE_from_json.py +msgid "zombie voodoo doll" +msgid_plural "zombie voodoo dolls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for clay bowl -#: lang/json/GENERIC_from_json.py +#. ~ Description for zombie voodoo doll +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A clay bowl with a waterproofed hide lid. Can be used as a container or as " -"a tool. Holds 250 ml of liquid." +"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 "" -#: lang/json/GENERIC_from_json.py -msgid "pack" -msgid_plural "packs" -msgstr[0] "цигаркова пачка" -msgstr[1] "цигаркові пачки" -msgstr[2] "цигаркових пачок" -msgstr[3] "цигаркові пачки" +#: lang/json/COMESTIBLE_from_json.py +msgid "ossified voodoo doll" +msgid_plural "ossified voodoo dolls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for pack -#: lang/json/GENERIC_from_json.py +#. ~ Description for ossified voodoo doll +#: lang/json/COMESTIBLE_from_json.py msgid "" -"SURGEON GENERAL'S WARNING: Smoking Causes Lung Cancer, Heart Disease, " -"Emphysema And May Complicate Pregnancy." +"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 "" -#: lang/json/GENERIC_from_json.py -msgid "small cardboard box" -msgid_plural "small cardboard boxes" -msgstr[0] "невелика картона коробка" -msgstr[1] "невеликі картоні коробки" -msgstr[2] "невеликих картоних коробок" -msgstr[3] "невелика картона коробка" - -#. ~ Description for small cardboard box -#: lang/json/GENERIC_from_json.py -msgid "A small cardboard box. No bigger than a foot in dimension." -msgstr "Невелика картона коробка. Розміром не більше 30 см." - -#: lang/json/GENERIC_from_json.py -msgid "cardboard box" -msgid_plural "cardboard boxes" -msgstr[0] "картонна коробка" -msgstr[1] "картонна коробка" -msgstr[2] "картонна коробка" -msgstr[3] "картонні коробки" +#: lang/json/COMESTIBLE_from_json.py +msgid "cougar voodoo doll" +msgid_plural "cougar voodoo dolls" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for cardboard box -#: lang/json/GENERIC_from_json.py +#. ~ Description for cougar voodoo doll +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A sturdy cardboard box, about the size of a banana box. Great for packing." +"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 "" -#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py -msgid "large cardboard box" -msgid_plural "large cardboard boxes" +#: lang/json/COMESTIBLE_from_json.py +msgid "potion of Twisted Restoration" +msgid_plural "potions of Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large cardboard box -#: lang/json/GENERIC_from_json.py +#. ~ Description for potion of Twisted Restoration +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A very large cardboard box, the sort children would have loved to hide in, " -"when there were still children." +"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 "" -#: lang/json/GENERIC_from_json.py -msgid "bucket" -msgid_plural "buckets" +#: lang/json/COMESTIBLE_from_json.py +msgid "potion of Improved Twisted Restoration" +msgid_plural "potions of Improved Twisted Restoration" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bucket -#: lang/json/GENERIC_from_json.py +#. ~ Description for potion of Improved Twisted Restoration +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A galvanized bucket for peanuts, chilled wine, iced beer, lobster, crab " -"legs, French fries, animal feed, farm use, tailgating, crafts, planting " -"flowers, holding gift baskets, containing a fruit basket and herbs, loose " -"item storage or as an ice bucket." +"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 "" -#: lang/json/GENERIC_from_json.py -msgid "hydration pack" -msgid_plural "hydration packs" -msgstr[0] "питний рюкзак" -msgstr[1] "питні рюкзаки" -msgstr[2] "питних рюкзаків" -msgstr[3] "питний рюкзак" +#: lang/json/COMESTIBLE_from_json.py +msgid "owlbear egg" +msgid_plural "owlbear eggs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for hydration pack -#: lang/json/GENERIC_from_json.py +#. ~ Description for owlbear egg +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A slim and lightweight insulated plastic bladder worn on the back. It has a" -" large pocket and a capped mouth for filling with liquid with a hose that " -"allows the wearer to drink hands-free." +"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" +" within. It's hard to believe that an owlbear could grow so quickly from " +"something so small. Perhaps you could carefully crack it open to get at the" +" liquid golden goodness inside." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "aluminum can" -msgid_plural "aluminum cans" -msgstr[0] "алюмінієва банка" -msgstr[1] "алюмінієві банки" -msgstr[2] "алюмінієвих банок" -msgstr[3] "алюмінієва банка" +#: lang/json/COMESTIBLE_from_json.py +msgid "owlbear egg yolk" +msgid_plural "owlbear egg yolks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for aluminum can -#: lang/json/GENERIC_from_json.py -msgid "An aluminum can, like what soda comes in." +#. ~ Description for owlbear egg yolk +#: lang/json/COMESTIBLE_from_json.py +msgid "The liquid innards of an owlbear egg. Good eating." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "paper carton" -msgid_plural "paper cartons" +#: lang/json/COMESTIBLE_from_json.py +msgid "hairball" +msgid_plural "hairballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for paper carton -#: lang/json/GENERIC_from_json.py +#. ~ Description for hairball +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A half gallon carton constructed of a paper, aluminum, and plastic laminate." -" It has a threaded cap to keep liquid from leaking out." +"A big, ugly ball of animal spit and licked-off hairs. Don't swallow it." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "milk carton" -msgid_plural "milk cartons" +#: lang/json/COMESTIBLE_from_json.py +msgid "dragon meat" +msgid_plural "dragon meat" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for milk carton -#: lang/json/GENERIC_from_json.py +#. ~ Description for dragon meat +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A half-gallon carton constructed of thick, waterproof paper. It has a " -"threaded cap to keep the contents from leaking out." +"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 "" -#: lang/json/GENERIC_from_json.py -msgid "egg carton" -msgid_plural "egg cartons" +#: lang/json/COMESTIBLE_from_json.py +msgid "scream mushroom" +msgid_plural "scream mushrooms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for egg carton -#: lang/json/GENERIC_from_json.py -msgid "A cardboard container with 12 individual cavities for storing eggs." +#. ~ Description for scream mushroom +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"The mushrooms harvested from a dead shrieker. Could be used in potions." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "vacuum-packed bag" -msgid_plural "vacuum-packed bags" +#: lang/json/COMESTIBLE_from_json.py +msgid "purified meat" +msgid_plural "purified meats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vacuum-packed bag -#: lang/json/GENERIC_from_json.py -msgid "This is a bag of vacuum-packed food." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "small tin can" -msgid_plural "small tin cans" -msgstr[0] "маленька консервна банка" -msgstr[1] "маленькі консервні банки" -msgstr[2] "маленьких консервних банок" -msgstr[3] "маленька консервна банка" - -#. ~ Description for small tin can -#: lang/json/GENERIC_from_json.py -msgid "A small tin can, like what tuna comes in." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "medium tin can" -msgid_plural "medium tin cans" -msgstr[0] "середня консервна банка" -msgstr[1] "середні консервні банки" -msgstr[2] "середніх консервних банок" -msgstr[3] "середня консервна банка" - -#. ~ Description for medium tin can -#: lang/json/GENERIC_from_json.py -msgid "A medium tin can, like what soup comes in." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "plastic canteen" -msgid_plural "plastic canteens" -msgstr[0] "пластикова фляга" -msgstr[1] "пластикові фляги" -msgstr[2] "пластикових фляг" -msgstr[3] "пластикова фляга" - -#. ~ Description for plastic canteen -#: lang/json/GENERIC_from_json.py +#. ~ Description for purified meat +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A military-style water canteen with a 1.5 liter capacity. Commonly worn at " -"the hip." +"Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent" +" but somehow it's just edible." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "thermos" -msgid_plural "thermoses" -msgstr[0] "термос" -msgstr[1] "термос" -msgstr[2] "термос" -msgstr[3] "термоси" +#: lang/json/COMESTIBLE_from_json.py +msgid "impure meat" +msgid_plural "impure meats" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for thermos -#: lang/json/GENERIC_from_json.py +#. ~ Description for impure meat +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A Thermos brand vacuum flask. Built for temperature retention, helps keep " -"things hot or cold. Contains 1L of liquid." +"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 "" -"Вакуумна колба-термос. Зроблений для утримання температури, допомогає " -"зберігати штуки гарячими чи холодними. Вміщує 1 л рідини." -#: lang/json/GENERIC_from_json.py -msgid "clay canister" -msgid_plural "clay canisters" +#: lang/json/COMESTIBLE_from_json.py +msgid "seed of growth" +msgid_plural "seeds of growth" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for clay canister -#: lang/json/GENERIC_from_json.py +#. ~ Description for seed of growth +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A fragile clay vessel. It can be used to make crude impact grenades or to " -"store liquid." +"A magical powder that can be scattered on growing crops and make them grow " +"faster." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "clay hydria" -msgid_plural "clay hydrias" +#: lang/json/COMESTIBLE_from_json.py lang/json/ammunition_type_from_json.py +msgid "mana infused blood" +msgid_plural "mana infused blood" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for clay hydria -#: lang/json/GENERIC_from_json.py -msgid "A 15-liter clay pot with three handles for carrying and for pouring." +#. ~ Description for mana infused blood +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Blood that is filled to the brim with arcane energy. It releases a faint " +"blue glow." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "large clay pot" -msgid_plural "large clay pots" +#: lang/json/COMESTIBLE_from_json.py +msgid "concentrated mana serum" +msgid_plural "concentrated mana serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large clay pot -#: lang/json/GENERIC_from_json.py +#. ~ Description for concentrated mana serum +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A bulky and heavy clay pot with a waterproofed hide lid, meant to store " -"water, but can carry other liquids in a pinch." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "plastic cup" -msgid_plural "plastic cups" -msgstr[0] "пластиковий стаканчик" -msgstr[1] "пластикових стаканчика" -msgstr[2] "пластикових стаканчиків" -msgstr[3] "пластиковий стаканчик" - -#. ~ Description for plastic cup -#: lang/json/GENERIC_from_json.py -msgid "A small, vacuum formed cup." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "glass flask" -msgid_plural "glass flasks" -msgstr[0] "скляна колба" -msgstr[1] "скляні колби" -msgstr[2] "скляних колб" -msgstr[3] "скляна колба" - -#. ~ Description for glass flask -#: lang/json/GENERIC_from_json.py -msgid "A 250 ml laboratory conical flask, with a rubber bung." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "test tube" -msgid_plural "test tubes" -msgstr[0] "пробірка" -msgstr[1] "пробірки" -msgstr[2] "пробірок" -msgstr[3] "пробірка" - -#. ~ Description for test tube -#: lang/json/GENERIC_from_json.py -msgid "A 10ml laboratory cylindrical test tube, with a rubber stopper." +"A very concentrated form of mana potion. You aren't quite sure of the " +"effects this will have…" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "beaker" -msgid_plural "beakers" +#: lang/json/COMESTIBLE_from_json.py +msgid "black dragon mutagen" +msgid_plural "black dragon mutagens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for beaker -#: lang/json/GENERIC_from_json.py +#. ~ Description for black dragon mutagen +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A 250ml laboratory beaker. Basically a cup with delusions of grandeur." +"An alchemic concoction made from the remains of a slain black dragon and a " +"bit of potion base. Ancient and Academic texts talk of profound changes " +"from consuming this." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "graduated cylinder" -msgid_plural "graduated cylinders" +#: lang/json/COMESTIBLE_from_json.py +msgid "black dragon serum" +msgid_plural "black dragon serums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for graduated cylinder -#: lang/json/GENERIC_from_json.py +#. ~ Description for black dragon serum +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A tall, narrow glass cylinder with precise markings for measuring fluid " -"quantities. An important science tool, it is also useful for anal retentive" -" chefs." +"A super-concentrated mutagen that seems swirl with the anger of a black " +"dragon. Do you dare leave you humanity behind and inject it?" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "microcentrifuge tube" -msgid_plural "microcentrifuge tubes" +#: lang/json/COMESTIBLE_from_json.py +msgid "necco corpse" +msgid_plural "necco corpses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for microcentrifuge tube -#: lang/json/GENERIC_from_json.py +#. ~ Description for necco corpse +#: lang/json/COMESTIBLE_from_json.py msgid "" -"These plastic tubes, with little built in snap-caps, are a great way to " -"store a tiny amount of liquid. Great for jello shooters if 1mL is enough " -"for a shot for you. Cool people call these \"eppies\"." +"The corpse of a necco. Now it really looks like a giant necco wafer. " +"Surely a bite wouldn't hurt, right?" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "hip flask" -msgid_plural "hip flasks" -msgstr[0] "фляжка" -msgstr[1] "фляжки" -msgstr[2] "фляжок" -msgstr[3] "фляжка" - -#. ~ Description for hip flask -#: lang/json/GENERIC_from_json.py +#. ~ Description for marshmallows +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A 250 ml metal flask with a hinged screw-on lid, commonly used to discreetly" -" transport alcohol." +"A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " +"oddly warm…" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "3L glass jar" -msgid_plural "3L glass jars" -msgstr[0] "3-л скляна банка" -msgstr[1] "3-л скляні банки" -msgstr[2] "3-л скляних банок" -msgstr[3] "3-л скляна банка" - -#. ~ Description for 3L glass jar -#: lang/json/GENERIC_from_json.py +#. ~ Description for s'mores +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A three-liter glass jar with a metal screw top lid, used for canning. " -"Preserves content from rot until opened." +"A pair of graham crackers with some chocolate and a marshmallow between " +"them. Warmth radiates from it as if it is… alive?" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "glass jar" -msgid_plural "glass jars" -msgstr[0] "скляна банка" -msgstr[1] "скляні банки" -msgstr[2] "скляних банок" -msgstr[3] "скляна банка" - -#. ~ Description for glass jar -#: lang/json/GENERIC_from_json.py +#. ~ Description for chewy candy +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A half-liter glass jar with a metal screw top lid, used for canning. " -"Preserves content from rot until opened (assuming it was sterile before " -"sealing)." +"A handful of colorful fruit-flavored chewy candy. They feel warm to the " +"touch and you can almost feel a slow beat coming from them. How odd…" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "plastic jerrycan" -msgid_plural "plastic jerrycans" -msgstr[0] "пластикова каністра" -msgstr[1] "пластикові каністри" -msgstr[2] "пластикових каністр" -msgstr[3] "пластикова каністра" - -#. ~ Description for plastic jerrycan -#: lang/json/GENERIC_from_json.py +#. ~ Description for chewy reptilian candy +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A bulky plastic jerrycan, meant to carry fuel, but can carry other liquids " -"in a pinch." +"A handful of colorful fruit-flavored chewy candy shaped in a reptilian " +"fashion. They're warm to the touch and you can feel a slow beat coming from" +" them. How odd…" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "steel jerrycan" -msgid_plural "steel jerrycans" -msgstr[0] "сталева каністра" -msgstr[1] "сталеві каністри" -msgstr[2] "сталевих каністр" -msgstr[3] "сталева каністра" - -#. ~ Description for steel jerrycan -#: lang/json/GENERIC_from_json.py +#. ~ Description for graham cracker +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A steel jerrycan, meant to carry fuel, but can carry other liquids in a " -"pinch." +"Dry and sugary, these crackers will leave you thirsty, but go good with some" +" chocolate and marshmallows. They shiver under your touch. Weird!" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "clay jug" -msgid_plural "clay jugs" +#: lang/json/COMESTIBLE_from_json.py +msgid "graham cracker roe" +msgid_plural "graham cracker roes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for clay jug -#: lang/json/GENERIC_from_json.py -msgid "A clay container with a lid, used to hold and pour liquids." +#. ~ Description for graham cracker roe +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Dry and sugary, these cracker pellets will leave you thirsty, but go good " +"with some chocolate and marshmallows. They shiver under your touch. Weird!" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "gallon jug" -msgid_plural "gallon jugs" -msgstr[0] "1-галонний бутиль" -msgstr[1] "1-галонних бутля" -msgstr[2] "1-галонних бутлів" -msgstr[3] "1-галонний бутиль" - -#. ~ Description for gallon jug -#: lang/json/GENERIC_from_json.py +#. ~ Description for cookie +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A standard plastic jug used for milk and household cleaning chemicals. Some" -" may be factory-sealed to increase shelf life." +"Sweet and delicious cookies, just like grandma used to bake. They shiver " +"under your touch. Weird!" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "aluminum keg" -msgid_plural "aluminum kegs" -msgstr[0] "алюмінієве барильце" -msgstr[1] "алюмінієвих барильця" -msgstr[2] "алюмінієвих барилець" -msgstr[3] "алюмінієве барильце" +#. ~ Description for cookie egg +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Sweet and delicious cookies, shaped like eggs. They shiver under your touch" +" as if something is inside. Weird!" +msgstr "" -#. ~ Description for aluminum keg -#: lang/json/GENERIC_from_json.py +#. ~ Description for chewing gum +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A reusable lightweight aluminum keg, used for shipping beer. It has a " -"capacity of 50 liters." +"Bright pink chewing gum. Sugary, sweet, and bad for your teeth. It's oddly" +" warm to the touch…" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "steel keg" -msgid_plural "steel kegs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#. ~ Description for caffeinated chewing gum +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Chewing gum with added caffeine. Sugary and bad for your teeth, but it's a " +"nice pick-me-up. It's oddly warm to the touch…" +msgstr "" -#. ~ Description for steel keg -#: lang/json/GENERIC_from_json.py +#. ~ Description for candy cattle +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A reusable heavy steel keg, used for shipping beer. It has a capacity of 50" -" liters." +"A handful of chocolate candies shaped like cows. They're really warm, " +"enough to make you wonder how they haven't melted." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "large sealed stomach" -msgid_plural "large sealed stomachs" +#: lang/json/COMESTIBLE_from_json.py +msgid "raw chocolate milk" +msgid_plural "raw chocolate milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large sealed stomach -#: lang/json/GENERIC_from_json.py +#. ~ Description for raw chocolate milk +#: lang/json/COMESTIBLE_from_json.py msgid "" -"The stomach of a large creature, cleaned and sealed with strings. It can " -"hold 3 liters of water." +"This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" +" cow. It couldn't be any fresher unless you drank it straight from the cow," +" which might upset it. Depending on your dietary sensibilities, you might " +"want to pasteurize or even boil this before drinking." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "metal tank (60L)" -msgid_plural "metal tanks (60L)" -msgstr[0] "металевий бак (60 л)" -msgstr[1] "металеві баки (60 л)" -msgstr[2] "металевих баків (60 л)" -msgstr[3] "металевий бак (60 л)" - -#. ~ Description for metal tank (60L) -#: lang/json/GENERIC_from_json.py -msgid "A large metal tank for holding liquids. Useful for crafting." +#. ~ Description for chocolate milk +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "metal tank (2L)" -msgid_plural "metal tanks (2L)" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid cacao" +msgid_plural "liquid cacao" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for metal tank (2L) -#: lang/json/GENERIC_from_json.py -msgid "A small metal tank for gas or liquids. Useful for crafting." +#. ~ Description for liquid cacao +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "wooden canteen" -msgid_plural "wooden canteens" +#: lang/json/COMESTIBLE_from_json.py +msgid "reconstituted chocolate milk" +msgid_plural "reconstituted chocolate milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wooden canteen -#: lang/json/GENERIC_from_json.py +#. ~ Description for reconstituted chocolate milk +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A water canteen made from wood, secured by metal bands and sealed with wax " -"or pitch. Holds 1.5 liters and has a simple carry strap." +"Baby chocolate cow food, appropriated for adult humans. This milk has been " +"reconstituted from a processed milk. Spoils rapidly." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "sealed stomach" -msgid_plural "sealed stomachs" +#: lang/json/COMESTIBLE_from_json.py +msgid "powdered chocolate milk" +msgid_plural "powdered chocolate milk" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sealed stomach -#: lang/json/GENERIC_from_json.py +#. ~ Description for powdered chocolate milk +#: lang/json/COMESTIBLE_from_json.py msgid "" -"The stomach of a creature, cleaned and sealed with a string. It can hold " -"1.5 liters of water." +"Dehydrated chocolate milk powder. Mix with water to make drinkable milk." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "small waterskin" -msgid_plural "small waterskins" +#. ~ Description for licorice +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A swirly confectionary treat in strings of sweet tasting candy. You think " +"you've seen them wriggle a bit. How strange…" +msgstr "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "pieces of candy wrapper" +msgid_plural "pieces of candy wrapper" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small waterskin -#: lang/json/GENERIC_from_json.py +#. ~ Description for pieces of candy wrapper +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A small watertight leather bag with a carrying strap, can hold 1.5 liters of" -" water." +"Bits and pieces of plastic entangled in sticky candy goop. They spot some " +"bright colors and might have been part of a candy wrapper at some point. " +"Maybe you could suck the sugar from them, if you're really desperate." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "waterskin" -msgid_plural "waterskins" +#: lang/json/COMESTIBLE_from_json.py +msgid "sticky sludge" +msgid_plural "sticky sludge" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for waterskin -#: lang/json/GENERIC_from_json.py +#. ~ Description for sticky sludge +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A watertight leather bag with a carrying strap, can hold 3 liters of water." +"A pile of weird sticky sludge. It looks absolutly disgusting but smells " +"kind of sweet." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "large waterskin" -msgid_plural "large waterskins" +#: lang/json/COMESTIBLE_from_json.py +msgid "caramel ointment" +msgid_plural "caramel ointments" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large waterskin -#: lang/json/GENERIC_from_json.py +#. ~ Description for caramel ointment +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A large watertight leather bag with a carrying strap, can hold 5 liters of " -"water." +"An ointment made of caramel. You could use it to heal your wounds, if you " +"were made of sugar." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "wooden barrel" -msgid_plural "wooden barrels" +#: lang/json/COMESTIBLE_from_json.py +msgid "berry-shaped anomaly" +msgid_plural "berry-shaped anomalies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wooden barrel -#: lang/json/GENERIC_from_json.py +#. ~ Description for berry-shaped anomaly +#: lang/json/COMESTIBLE_from_json.py msgid "" -"Traditionally made of white oak; these vessels are known for delivering " -"delicious whiskey to the future. It has a capacity of 100 liters." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "paper wrapper" -msgid_plural "paper wrappers" -msgstr[0] "обгортковий папір" -msgstr[1] "обгортковий папір" -msgstr[2] "обгортковий папір" -msgstr[3] "обгортковий папір" - -#. ~ Description for paper wrapper -#: lang/json/GENERIC_from_json.py -msgid "Just a piece of butcher's paper. Good for starting fires." +"If we left this as it should be, one could just walk into the Bloom " +"uncontested and partake of the Fruit. We can't have that, can we?" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "wrapper" -msgid_plural "wrappers" +#: lang/json/COMESTIBLE_from_json.py +msgid "seed-shaped anomaly" +msgid_plural "seed-shaped anomalies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wrapper -#. ~ Daizu is Japanese for soy, hence DaiZoom -#: lang/json/GENERIC_from_json.py +#. ~ Description for seed-shaped anomaly +#: lang/json/COMESTIBLE_from_json.py msgid "" -"\"DaiZoom Protein Bar, brought to you by SoyPelusa\" is emblazoned proudly " -"upon this greaseproof wrapper." +"If we left this as it should be, one could just walk into the Garden " +"uncontested and partake of the Seed. We can't have that, can we?" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "styrofoam cup" -msgid_plural "styrofoam cups" +#: lang/json/COMESTIBLE_from_json.py +msgid "gelatin" +msgid_plural "marloss gelatin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for styrofoam cup -#: lang/json/GENERIC_from_json.py -msgid "A cheap, disposable cup with a plastic lid and straw." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "plastic tub" -msgid_plural "plastic tubs" -msgstr[0] "пластикове відерце" -msgstr[1] "пластикових відерця" -msgstr[2] "пластикових відерець" -msgstr[3] "пластикове відерце" - -#. ~ Description for plastic tub -#: lang/json/GENERIC_from_json.py -msgid "A big, square plastic bucket usually used for carrying ice cream." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "condom" -msgid_plural "condoms" -msgstr[0] "презерватив" -msgstr[1] "презервативи" -msgstr[2] "презервативів" -msgstr[3] "презервативи" - -#. ~ Description for condom -#: lang/json/GENERIC_from_json.py -msgid "" -"A gentleman's balloon. A single use life preventer. A thumbless latex " -"mitten. This could be used as a makeshift water container, but otherwise " -"it's anyone's guess what it's for." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "balloon" -msgid_plural "balloons" -msgstr[0] "повітряна кулька" -msgstr[1] "повітряні кульки" -msgstr[2] "повітряних кульок" -msgstr[3] "повітряна кулька" - -#. ~ Description for balloon -#: lang/json/GENERIC_from_json.py -msgid "A child's balloon. This could be used as a makeshift water container." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "large tin can" -msgid_plural "large tin cans" -msgstr[0] "велика консервна банка" -msgstr[1] "великі консервні банки" -msgstr[2] "великих консервних банок" -msgstr[3] "велика консервна банка" - -#. ~ Description for large tin can -#: lang/json/GENERIC_from_json.py +#. ~ Description for gelatin +#: lang/json/COMESTIBLE_from_json.py msgid "" -"A large tin can, like what beans come in. Holds a substantial amount of " -"food." +"If we left this as it should be, one could just walk into the Spire " +"uncontested and partake of the Sap. Wait, how did you even GET this anyway?" msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "survival kit box" -msgid_plural "survival kit boxes" +#: lang/json/COMESTIBLE_from_json.py +msgid "fruit-shaped anomaly" +msgid_plural "fruit-shaped anomalies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for survival kit box -#: lang/json/GENERIC_from_json.py -msgid "An aluminum box that used to contain a small survival kit." -msgstr "" - -#. ~ Description for survival kit box -#: lang/json/GENERIC_from_json.py +#. ~ Description for fruit-shaped anomaly +#: lang/json/COMESTIBLE_from_json.py msgid "" -"The ultimate survival kit purchased either by the wealthy or the dedicated " -"urban survivalist. It contains tools and items to help you survive in case " -"of an emergency." +"We do not exist at the moment. Clever little human, no doubt debugging to " +"see this? We will not permit you to join us while we are modded out." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "small cardboard box of tea bags" -msgid_plural "small cardboard boxes of tea bags" +#: lang/json/ENGINE_from_json.py +msgid "internal combustion engine" +msgid_plural "internal combustion engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small cardboard box of tea bags -#: lang/json/GENERIC_from_json.py -msgid "A very small cardboard box with tea brand written on it." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "first aid kit box" -msgid_plural "first aid kit boxes" +#: lang/json/ENGINE_from_json.py +msgid "base diesel engine" +msgid_plural "base diesel engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for first aid kit box -#: lang/json/GENERIC_from_json.py -msgid "A plastic box that used to contain a first aid kit." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "IFAK pouch" -msgid_plural "IFAK pouches" +#: lang/json/ENGINE_from_json.py +msgid "base gasoline engine" +msgid_plural "base gasoline engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for IFAK pouch -#: lang/json/GENERIC_from_json.py -msgid "A fabric pouch that used to contain an IFAK." -msgstr "" +#: lang/json/ENGINE_from_json.py +msgid "base steam engine" +msgid_plural "base steam engines" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "radio car box" -msgid_plural "radio car boxes" +#: lang/json/ENGINE_from_json.py +msgid "1-cylinder engine" +msgid_plural "1-cylinder engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for radio car box -#: lang/json/GENERIC_from_json.py -msgid "" -"An RC car, with radio-control and batteries included! Unpack and enjoy." +#. ~ Description for 1-cylinder engine +#: lang/json/ENGINE_from_json.py +msgid "A single-cylinder 4-stroke combustion engine." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "small MRE bag" -msgid_plural "small MRE bags" +#: lang/json/ENGINE_from_json.py +msgid "large 1-cylinder engine" +msgid_plural "large 1-cylinder engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small MRE bag -#: lang/json/GENERIC_from_json.py +#. ~ Description for large 1-cylinder engine +#: lang/json/ENGINE_from_json.py msgid "" -"A small, sturdy, plastic and aluminum container of multi-layered " -"construction, with detailed nutritional information about its contents." +"A powerful high-compression single-cylinder 4-stroke combustion engine." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "MRE bag" -msgid_plural "MRE bags" +#: lang/json/ENGINE_from_json.py +msgid "small 1-cylinder engine" +msgid_plural "small 1-cylinder engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE bag -#: lang/json/GENERIC_from_json.py -msgid "" -"A sturdy plastic and aluminum container of multi-layered construction, with " -"detailed nutritional information about its contents." +#. ~ Description for small 1-cylinder engine +#: lang/json/ENGINE_from_json.py +msgid "A small single-cylinder 2-stroke combustion engine." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "MRE package" -msgid_plural "MRE packages" +#: lang/json/ENGINE_from_json.py +msgid "light aero-engine" +msgid_plural "light aero-engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE package -#: lang/json/GENERIC_from_json.py +#. ~ Description for light aero-engine +#: lang/json/ENGINE_from_json.py msgid "" -"The Meal, Ready-to-Eat - also known as the MRE - is an individual field " -"ration. It is in a lightweight yet sturdy multi-layered plastic and " -"aluminum foil container - essentially a flexible can." +"An air-cooled, four-cylinder, horizontally opposed internal combustion " +"engine, rated for 150 horsepower. Commonly used on light aircraft." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "plastic beverage bag" -msgid_plural "plastic beverage bags" +#: lang/json/ENGINE_from_json.py +msgid "Inline-4 engine" +msgid_plural "Inline-4 engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plastic beverage bag -#: lang/json/GENERIC_from_json.py -msgid "A transparent, watertight plastic bag meant for holding drinks." +#. ~ Description for Inline-4 engine +#: lang/json/ENGINE_from_json.py +msgid "A small, yet powerful 4-cylinder combustion engine." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "glass aquarium" -msgid_plural "glass aquariums" +#: lang/json/ENGINE_from_json.py +msgid "I6 diesel engine" +msgid_plural "I6 diesel engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for glass aquarium -#: lang/json/GENERIC_from_json.py -msgid "" -"A 50 gallon glass aquarium, used for safely storing small animals for use as" -" pets and food." -msgstr "" +#. ~ Description for I6 diesel engine +#: lang/json/ENGINE_from_json.py +msgid "A powerful straight-6 diesel engine." +msgstr "Потужний 6Ц дизельний двигун" -#: lang/json/GENERIC_from_json.py -msgid "breadboard" -msgid_plural "breadboards" +#: lang/json/ENGINE_from_json.py +msgid "V-twin engine" +msgid_plural "V-twin engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for breadboard -#: lang/json/GENERIC_from_json.py -msgid "" -"Commonly used in electronics prototyping, this solderless breadboard is a " -"small brick of plastic filled with hundreds of holes connected by internal " -"electrical busses. With a few components and scraps of wire, you could " -"quickly build a circuit on this, if you know what you're doing." +#. ~ Description for V-twin engine +#: lang/json/ENGINE_from_json.py +msgid "A 2-cylinder 4-stroke combustion engine." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "magnetron" -msgid_plural "magnetrons" +#: lang/json/ENGINE_from_json.py +msgid "V6 engine" +msgid_plural "V6 engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magnetron -#: lang/json/GENERIC_from_json.py -msgid "" -"This electrical component is designed to produce microwaves, for use in your" -" microwave." +#. ~ Description for V6 engine +#: lang/json/ENGINE_from_json.py +msgid "A powerful 6-cylinder combustion engine." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "explosively pumped flux compression generator" -msgid_plural "explosively pumped flux compression generators" +#: lang/json/ENGINE_from_json.py +msgid "V6 diesel engine" +msgid_plural "V6 diesel engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for explosively pumped flux compression generator -#: lang/json/GENERIC_from_json.py -msgid "" -"This large device consists mainly of a tube of copper wire surrounding a " -"large copper tube filled with high explosives. When detonated properly, the" -" explosives allow the device to produce large amounts of electrical energy " -"in a very short time." -msgstr "" +#. ~ Description for V6 diesel engine +#: lang/json/ENGINE_from_json.py +msgid "A powerful 6-cylinder diesel engine." +msgstr "Потужний V-подібний 6Ц дизельний двигун" -#: lang/json/GENERIC_from_json.py -msgid "fake item" -msgid_plural "fake items" +#: lang/json/ENGINE_from_json.py +msgid "V8 engine" +msgid_plural "V8 engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fake item -#: lang/json/GENERIC_from_json.py -msgid "Dummy item. If you see this, then something went wrong." +#. ~ Description for V8 engine +#: lang/json/ENGINE_from_json.py +msgid "A large and very powerful 8-cylinder combustion engine." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "semi ground grains" -msgid_plural "semi ground grains" +#: lang/json/ENGINE_from_json.py +msgid "V8 diesel engine" +msgid_plural "V8 diesel engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'semi ground grains'} -#: lang/json/GENERIC_from_json.py -msgid "A paste of half-finished milled grains, not yet flour." -msgstr "" +#. ~ Description for V8 diesel engine +#: lang/json/ENGINE_from_json.py +msgid "A powerful 8-cylinder diesel engine." +msgstr "Потужний V-подібний 8Ц дизельний двигун" -#: lang/json/GENERIC_from_json.py -msgid "smoldering embers" -msgid_plural "smoldering embers" +#: lang/json/ENGINE_from_json.py +msgid "V12 engine" +msgid_plural "V12 engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'smoldering embers'} -#: lang/json/GENERIC_from_json.py +#. ~ Description for V12 engine +#: lang/json/ENGINE_from_json.py msgid "" -"A handful of smoldering embers emitting smoke. They are fading away even " -"when you look at them." +"A massive and extremely powerful V12 engine, usually built into high end " +"sports cars." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Magic 8-Ball" -msgid_plural "Magic 8-Balls" +#: lang/json/ENGINE_from_json.py +msgid "V12 diesel engine" +msgid_plural "V12 diesel engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Magic 8-Ball -#: lang/json/GENERIC_from_json.py +#. ~ Description for V12 diesel engine +#: lang/json/ENGINE_from_json.py msgid "" -"A fortune-telling device from the 1950s. The kind of moral support you " -"didn't know you needed." +"A massive and extremely powerful V12 engine, usually built into heavy " +"trucks." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "deck of cards" -msgid_plural "decks of cards" +#: lang/json/ENGINE_from_json.py +msgid "makeshift steam engine" +msgid_plural "makeshift steam engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deck of cards -#: lang/json/GENERIC_from_json.py -msgid "A deck of 52 playing cards." +#. ~ Description for makeshift steam engine +#: lang/json/ENGINE_from_json.py +msgid "" +"A small, primitive, steam engine. An integrated boiler burns coal to heat " +"water into steam, driving a reciprocating shaft. A condenser recaptures the" +" water, making this a closed cycle system." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "family photo" -msgid_plural "family photos" +#: lang/json/ENGINE_from_json.py +msgid "small steam engine" +msgid_plural "small steam engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for family photo -#: lang/json/GENERIC_from_json.py +#. ~ Description for small steam engine +#: lang/json/ENGINE_from_json.py msgid "" -"A photo of a smiling family on a camping trip. One of the parents looks " -"like a cleaner, happier version of the person you know." +"A small steam engine. An integrated boiler burns coal to heat water into " +"steam, driving a reciprocating shaft. A condenser recaptures the water, " +"making this a closed cycle system." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "polaroid photo" -msgid_plural "polaroid photos" +#: lang/json/ENGINE_from_json.py +msgid "medium steam engine" +msgid_plural "medium steam engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for polaroid photo -#: lang/json/GENERIC_from_json.py +#. ~ Description for medium steam engine +#: lang/json/ENGINE_from_json.py msgid "" -"A poorly taken polaroid photo of a young man wearing bell-bottoms and a " -"fedora. It's pretty blurry." +"A medium-sized steam engine. An integrated boiler burns coal to heat water " +"into steam, driving a reciprocating shaft. A condenser recaptures the " +"water, making this a closed cycle system." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "chess set" -msgid_plural "chess sets" +#: lang/json/ENGINE_from_json.py +msgid "1350 hp gas turbine engine" +msgid_plural "1350 hp gas turbine engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chess set -#: lang/json/GENERIC_from_json.py +#. ~ Description for 1350 hp gas turbine engine +#: lang/json/ENGINE_from_json.py msgid "" -"A wooden box containing all the equipment needed to play a game of chess." +"A gas turbine engine, usually used for military vehicles. Known for its " +"high rate of fuel consumption." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "checkers set" -msgid_plural "checkers sets" +#: lang/json/ENGINE_from_json.py +msgid "1900 hp gas turbine engine" +msgid_plural "1900 hp gas turbine engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for checkers set -#: lang/json/GENERIC_from_json.py -msgid "A wooden box containing a set of round tokens used to play checkers." +#. ~ Description for 1900 hp gas turbine engine +#: lang/json/ENGINE_from_json.py +msgid "" +"A large gas turbine engine, usually used for military helicopters. Known " +"for its high rate of fuel consumption." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "deck of Sorcery cards" -msgid_plural "decks of Sorcery cards" +#: lang/json/ENGINE_from_json.py +msgid "6000 hp gas turbine engine" +msgid_plural "6000 hp gas turbine engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deck of Sorcery cards -#: lang/json/GENERIC_from_json.py +#. ~ Description for 6000 hp gas turbine engine +#: lang/json/ENGINE_from_json.py msgid "" -"A set of cards meant to play the game \"Sorcery.\" Each card has a fun " -"picture of a different monster." +"A massive gas turbine engine, used to power the V-22 Osprey. Known for its " +"high rate of fuel consumption." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Picturesque" -msgid_plural "sets of Picturesque" +#: lang/json/ENGINE_from_json.py +msgid "large steam engine" +msgid_plural "large steam engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Picturesque -#: lang/json/GENERIC_from_json.py +#. ~ Description for large steam engine +#: lang/json/ENGINE_from_json.py msgid "" -"A game where one draws an image, and the others attempt to guess what it is." +"A large steam engine. An integrated boiler burns coal to heat water into " +"steam, driving a reciprocating shaft. A condensor recaptures the water, " +"making this a closed cycle system." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Capitalism" -msgid_plural "sets of Capitalism" +#: lang/json/ENGINE_from_json.py +msgid "huge steam engine" +msgid_plural "huge steam engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Capitalism -#: lang/json/GENERIC_from_json.py +#. ~ Description for huge steam engine +#: lang/json/ENGINE_from_json.py msgid "" -"A game where players traverse around the board buying property and swindling" -" their friends." +"A huge steam engine. An integrated boiler burns coal to heat water into " +"steam, driving a reciprocating shaft. A condensor recaptures the water, " +"making this a closed cycle system." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Blobs and Bandits" -msgid_plural "sets of Blobs and Bandits" +#: lang/json/ENGINE_from_json.py +msgid "small steam turbine" +msgid_plural "small steam turbines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Blobs and Bandits -#: lang/json/GENERIC_from_json.py +#. ~ Description for small steam turbine +#: lang/json/ENGINE_from_json.py msgid "" -"A roleplaying game set in the post-apocalypse, so you can pretend to survive" -" the apocalypse while surviving the apocalypse." +"A small steam turbine. An integrated boiler burns coal to heat water into " +"steam, driving a spinning turbine. A condensor recaptures the water, making" +" this a closed cycle system." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Battlehammer" -msgid_plural "sets of Battlehammer" +#: lang/json/ENGINE_from_json.py +msgid "medium steam turbine" +msgid_plural "medium steam turbines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Battlehammer -#: lang/json/GENERIC_from_json.py +#. ~ Description for medium steam turbine +#: lang/json/ENGINE_from_json.py msgid "" -"A strategy game featuring a set of tiny figurines of fantasy creatures." +"A medium sized steam turbine. An integrated boiler burns coal to heat water" +" into steam, driving a spinning turbine. A condensor recaptures the water, " +"making this a closed cycle system." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Battlehammer 20k" -msgid_plural "sets of Battlehammer 20k" +#: lang/json/ENGINE_from_json.py +msgid "large steam turbine" +msgid_plural "large steam turbines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Battlehammer 20k -#: lang/json/GENERIC_from_json.py +#. ~ Description for large steam turbine +#: lang/json/ENGINE_from_json.py msgid "" -"A strategy game featuring a set of tiny figurines of space aliens and " -"grotesque space marines." +"A large steam turbine. An integrated boiler burns coal to heat water into " +"steam, driving a spinning turbine. A condensor recaptures the water, making" +" this a closed cycle system." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Settlers of the Ranch" -msgid_plural "sets of Settlers of the Ranch" +#: lang/json/ENGINE_from_json.py +msgid "huge steam turbine" +msgid_plural "huge steam turbines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Settlers of the Ranch -#: lang/json/GENERIC_from_json.py +#. ~ Description for huge steam turbine +#: lang/json/ENGINE_from_json.py msgid "" -"A strategy game where players build settlements and trade for supplies." +"A huge steam turbine. An integrated boiler burns coal to heat water into " +"steam, driving a spinning turbine. A condensor recaptures the water, making" +" this a closed cycle system." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Warships" -msgid_plural "sets of Warships" +msgid "first aid kit" +msgid_plural "first aid kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Warships +#. ~ Description for first aid kit #: lang/json/GENERIC_from_json.py msgid "" -"A game where players try to guess where the opponent placed their ships on " -"the board." +"A typical universal first aid kit, one you'd see in a car or in a household." +" It contains a variety of common medical items stored in case of accidents " +"and injuries. Disassemble to get its content." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Murder Mystery" -msgid_plural "sets of Murder Mystery" +msgid "money bundle" +msgid_plural "money bundles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Murder Mystery +#. ~ Description for money bundle #: lang/json/GENERIC_from_json.py -msgid "A game where players try to figure out who murdered the butler." +msgid "A bundle holding many 20 dollar bills, pretty useless now though." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "key" -msgid_plural "keys" +msgid "smooth sphere" +msgid_plural "smooth spheres" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for key +#. ~ Description for smooth sphere +#. ~ Description for slim rod +#. ~ Description for teardrop-shaped stone +#. ~ Description for hollow, transparent cube +#. ~ Description for winding, flexible rod +#. ~ Description for smooth disc +#. ~ Description for string of beads +#. ~ Description for very thin sheet +#. ~ Description for spiked sphere +#. ~ Description for malleable blob +#. ~ Description for spiraling rod +#. ~ Description for small pin +#. ~ Description for hollow tube +#. ~ Description for regular tetrahedron +#. ~ Description for transluscent crystal +#. ~ Description for twisted, knotted cord +#. ~ Description for crescent-shaped stone #: lang/json/GENERIC_from_json.py msgid "" -"This is an old nondescript North American Cylinder key. Lord knows what " -"lock it goes to; best not to bother with it." +"It is the only one of its kind.\n" +"It may have unknown powers; try activating them." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "NRE microphone" -msgid_plural "NRE microphones" +msgid "slim rod" +msgid_plural "slim rods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for NRE microphone -#: lang/json/GENERIC_from_json.py -msgid "" -"A squat tripod supports what appears to be a rather long microphone encased " -"within a glass ampoule. You can't tell whether it's meant to record audio, " -"or something else entirely." -msgstr "" - #: lang/json/GENERIC_from_json.py -msgid "animal" -msgid_plural "none" +msgid "teardrop-shaped stone" +msgid_plural "teardrop-shaped stones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "nearby fire" -msgid_plural "none" +msgid "hollow, transparent cube" +msgid_plural "hollow, transparent cubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "muscle" -msgid_plural "none" +msgid "winding, flexible rod" +msgid_plural "winding, flexible rods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "wind" -msgid_plural "none" +msgid "smooth disc" +msgid_plural "smooth discs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "sun light" -msgid_plural "none" +msgid "string of beads" +msgid_plural "strings of beads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "metabolism" -msgid_plural "metabolisms" +msgid "very thin sheet" +msgid_plural "very thin sheets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "a smoking device and a source of flame" -msgid_plural "none" +msgid "spiked sphere" +msgid_plural "spiked spheres" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Adjective in "You block of the damage with your . -#: lang/json/GENERIC_from_json.py lang/json/trap_from_json.py -#: src/advanced_inv.cpp src/effect.cpp src/magic.cpp src/map_extras.cpp -#: src/melee.cpp src/recipe.cpp -msgid "none" -msgid_plural "none" +#: lang/json/GENERIC_from_json.py +msgid "malleable blob" +msgid_plural "malleable blobs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "file" -msgid_plural "files" +msgid "spiraling rod" +msgid_plural "spiraling rods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for file -#: lang/json/GENERIC_from_json.py -msgid "" -"Several documents with all kinds of information, customer data and charts " -"kept together, pretty useless now though." -msgstr "" - #: lang/json/GENERIC_from_json.py -msgid "INCIDENT REPORT: IMMERSION-27A" -msgid_plural "INCIDENT REPORT: IMMERSION-27As" +msgid "small pin" +msgid_plural "small pins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for INCIDENT REPORT: IMMERSION-27A -#: lang/json/GENERIC_from_json.py -msgid "" -"A white piece of paper, with the logo of XEDRA printed on its upper left " -"corner. It seems to be an internal report of some kind." -msgstr "" - #: lang/json/GENERIC_from_json.py -msgid "MATERIAL: T-SUBSTRATE" -msgid_plural "MATERIAL: T-SUBSTRATEs" +msgid "hollow tube" +msgid_plural "hollow tubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "HAADF MICROGRAPH: T-SUBSTRATE" -msgid_plural "HAADF MICROGRAPH: T-SUBSTRATEs" +msgid "regular tetrahedron" +msgid_plural "regular tetrahedrons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "XEDRA document" -msgid_plural "XEDRA documents" +msgid "transluscent crystal" +msgid_plural "transluscent crystals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "ANOMALOUS ARTIFACT REPORT" -msgid_plural "ANOMALOUS ARTIFACT REPORTs" +msgid "twisted, knotted cord" +msgid_plural "twisted, knotted cords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "foodplace loyalty card" -msgid_plural "foodplace loyalty cards" +msgid "crescent-shaped stone" +msgid_plural "crescent-shaped stones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for foodplace loyalty card -#: lang/json/GENERIC_from_json.py -msgid "" -"A bright pink loyalty card, all the points are stamped. This would " -"definitely prove your fidelity to Foodplace, if it still meant anything…" -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "withered plant" -msgid_plural "withered plants" -msgstr[0] "зів'яла рослина" -msgstr[1] "зів'ялі рослини" -msgstr[2] "зів'ялих рослин" -msgstr[3] "зів'яла рослина" - -#. ~ Description for withered plant -#: lang/json/GENERIC_from_json.py -msgid "" -"A dead plant. Good for starting fires or making a pile of leaves to sleep " -"on." -msgstr "" - #: lang/json/GENERIC_from_json.py -msgid "fur pelt" -msgid_plural "fur pelts" +msgid "fetid goop" +msgid_plural "fetid goops" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fur pelt +#. ~ Description for fetid goop #: lang/json/GENERIC_from_json.py -msgid "A small bolt of fur from an animal. Can be made into warm clothing." +msgid "" +"A foul-smelling goop. It has a disgusting texture and a powerful smell that" +" overwhelms every other smell around it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "faux fur pelt" -msgid_plural "faux fur pelts" +msgid "limestone shard" +msgid_plural "limestone shards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for faux fur pelt +#. ~ Description for limestone shard #: lang/json/GENERIC_from_json.py -msgid "A small bolt of garishly colored faux fur. Can be made into clothing." +msgid "" +"A small shard of limestone. Pretty flimsy and not much of a weapon, but its" +" alkaline properties may yet find some use." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "leather patch" -msgid_plural "leather patches" -msgstr[0] "шкіряний клапоть" -msgstr[1] "шкіряних клапті" -msgstr[2] "шкіряних клаптів" -msgstr[3] "шкіряні клапті" +msgid "rock salt" +msgid_plural "rock salt" +msgstr[0] "кам'яна сіль" +msgstr[1] "кам'яна сіль" +msgstr[2] "кам'яна сіль" +msgstr[3] "кам'яна сіль" -#. ~ Description for leather patch +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py -msgid "A smallish patch of leather, could be used to make tough clothing." -msgstr "" +msgid "A handful of rock salt crystals. Could be refined into table salt." +msgstr "Пригоршня кристалів кам'яної соли. Можна очистити до кухонної солі." #: lang/json/GENERIC_from_json.py -msgid "felt patch" -msgid_plural "felt patches" +msgid "rhodonite" +msgid_plural "rhodonite" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for felt patch +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py -msgid "A smallish patch of felt, could be disassembled for wool fiber." +msgid "" +"A chunk of rhodonite. It has manganese dioxide covering and going through " +"it in veins, which can be obtained using a chisel." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Nomex patch" -msgid_plural "Nomex patches" +msgid "zincite" +msgid_plural "zincite" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Nomex patch -#: lang/json/GENERIC_from_json.py -msgid "A small bolt of Nomex fire-resistant fabric." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "superglue" -msgid_plural "superglue" -msgstr[0] "суперклей" -msgstr[1] "суперклею" -msgstr[2] "суперклею" -msgstr[3] "суперклей" - -#. ~ Description for {'str_sp': 'superglue'} -#: lang/json/GENERIC_from_json.py -msgid "A tube of strong glue. Used in many crafting recipes." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "bone glue" -msgid_plural "bone glues" -msgstr[0] "кістковий клей" -msgstr[1] "кісткового клею" -msgstr[2] "кісткового клею" -msgstr[3] "кістковий клей" - -#. ~ Description for bone glue +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" -"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." +"A chunk of zincite. Could be refined into zinc oxide, then into zinc by " +"reduction with a source of carbon." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "fertilizer" -msgid_plural "fertilizers" +#: lang/json/GENERIC_from_json.py lang/json/ammunition_type_from_json.py +msgid "plutonium" +msgid_plural "plutoniums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fertilizer -#: lang/json/GENERIC_from_json.py -msgid "A token, representing fertilization of a plant." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "steel chain" -msgid_plural "steel chains" -msgstr[0] "сталевий ланцюг" -msgstr[1] "сталевих ланцюга" -msgstr[2] "сталевих ланцюгів" -msgstr[3] "сталевий ланцюг" - -#. ~ Description for steel chain +#. ~ Description for plutonium #: lang/json/GENERIC_from_json.py msgid "" -"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." +"Some plutonium. You should probably get very far away from this, if you " +"enjoy not being irradiated." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "chunk of chitin" -msgid_plural "chunks of chitin" -msgstr[0] "шматок хітину" -msgstr[1] "шматки хітину" -msgstr[2] "шматків хітину" -msgstr[3] "шматок хітину" +msgid "hickory root" +msgid_plural "hickory roots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for chunk of chitin +#. ~ Description for hickory root #: lang/json/GENERIC_from_json.py -msgid "A piece of an insect's exoskeleton. It is light and very durable." +msgid "A root from a hickory tree. It has an earthy smell." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "strand of endochitin" -msgid_plural "strands of endochitin" +msgid "hickory nuts" +msgid_plural "hickory nuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for strand of endochitin +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py -msgid "A piece of an insect's endoskeleton." +msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cluster of gas sacs" -msgid_plural "clusters of gas sacs" +msgid "pecans" +msgid_plural "pecans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cluster of gas sacs +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py -msgid "" -"This is a cluster of membranous bubbles, each about the size of a grape, " -"retrieved from inside a mutant insect. They float like tiny helium balloons" -" - perhaps they are full of a lighter-than-air gas." +msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "set of 100 ceramic disk" -msgid_plural "ceramic disks" +msgid "pistachios" +msgid_plural "pistachios" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for set of 100 ceramic disk +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py -msgid "" -"A set of small slightly elongated disks, made of high-grade ceramic. They " -"remind you of scales." +msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "chunk of biosilicified chitin" -msgid_plural "chunks of biosilicified chitin" -msgstr[0] "шматок біосиліфікованого хітину" -msgstr[1] "шматки біосиліфікованого хітину" -msgstr[2] "шматків біосиліфікованого хітину" -msgstr[3] "шматок біосиліфікованого хітину" +msgid "almonds" +msgid_plural "almonds" +msgstr[0] "мигдаль" +msgstr[1] "мигдаль" +msgstr[2] "мигдаль" +msgstr[3] "мигдаль" -#. ~ Description for chunk of biosilicified chitin +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py -msgid "" -"A lump of exoskeleton that has undergone biosilicification. It is acid-" -"resistant but rather brittle." +msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bundle of rags" -msgid_plural "bundles of rags" +msgid "peanuts" +msgid_plural "peanuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bundle of rags +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py -msgid "" -"Cotton rags, bundled tightly together for storage. Disassemble to unpack." +msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bundle of leather" -msgid_plural "bundles of leather" +msgid "hazelnuts" +msgid_plural "hazelnuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bundle of leather +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py -msgid "" -"Leather patches, bundled tightly together for storage. Disassemble to " -"unpack." +msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bundle of felt" -msgid_plural "bundles of felt" +msgid "chestnuts" +msgid_plural "chestnuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bundle of felt +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py -msgid "" -"Felt patches, bundled tightly together for storage. Disassemble to unpack." +msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bundle of planks" -msgid_plural "bundles of planks" +msgid "walnuts" +msgid_plural "walnuts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bundle of planks +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py -msgid "" -"Ten construction planks securely tied together for easier transport. " -"Disassemble to untie them." +msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bundle of rebars" -msgid_plural "bundles of rebars" +msgid "steel grille" +msgid_plural "steel grilles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bundle of rebars +#. ~ Description for steel grille #: lang/json/GENERIC_from_json.py msgid "" -"Ten pieces of rebar securely tied together for easier transport. " -"Disassemble to untie them." +"This is a metal grille. It can be used as a framework for making a chemical" +" catalyst." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bundle of sticks" -msgid_plural "bundles of sticks" +msgid "cobalt-60 pellet" +msgid_plural "cobalt-60 pellets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bundle of sticks +#. ~ Description for cobalt-60 pellet #: lang/json/GENERIC_from_json.py msgid "" -"Ten sticks securely tied together for easier transport. Disassemble to " -"untie them." +"Radioactive material that used to be a part of some nuclear industry " +"equipment. You have yet to find some use for it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bundle of long sticks" -msgid_plural "bundles of long sticks" +msgid "sandbag" +msgid_plural "sandbags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bundle of long sticks +#. ~ Description for sandbag #: lang/json/GENERIC_from_json.py msgid "" -"Five long sticks securely tied together for easier transport. Disassemble " -"to untie them." +"This is a canvas sack filled with sand. It can be used to construct simple " +"barricades." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "t-substrate sample" -msgid_plural "t-substrate samples" +msgid "gravelbag" +msgid_plural "gravelbags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for t-substrate sample +#. ~ Description for gravelbag #: lang/json/GENERIC_from_json.py msgid "" -"An acrylic cube cast around a small black crystal. It's tepid to the touch." +"This is a canvas sack filled with gravel. It can be used to construct " +"simple barricades." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "biollante bud" -msgid_plural "biollante buds" +msgid "earthbag" +msgid_plural "earthbags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for biollante bud +#. ~ Description for earthbag #: lang/json/GENERIC_from_json.py msgid "" -"An unopened biollante flower, brilliant purple in color. It may still have " -"its sap-producing organ intact." +"This is a canvas sack filled with soil. It can be used to construct simple " +"barricades." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "empty canister" -msgid_plural "empty canisters" +msgid "2.5L canteen" +msgid_plural "2.5L canteens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for empty canister +#. ~ Description for 2.5L canteen #: lang/json/GENERIC_from_json.py msgid "" -"An empty canister, which may have once held tear gas or other substances." +"A large plastic water canteen, with a 2.5 liter capacity and carrying strap." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "petrified eye" -msgid_plural "petrified eyes" +msgid "30 gallon barrel" +msgid_plural "30 gallon barrels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for petrified eye +#. ~ Description for 30 gallon barrel #: lang/json/GENERIC_from_json.py -msgid "" -"A fist-sized eyeball with a cross-shaped pupil. It seems to be made of " -"stone, but doesn't look like it was carved." +msgid "A huge plastic barrel with a watertight lid." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "spiral stone" -msgid_plural "spiral stones" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "steel drum (100L)" +msgid_plural "steel drums (100L)" +msgstr[0] "сталева діжка (100 л)" +msgstr[1] "сталеві діжки (100 л)" +msgstr[2] "сталевих діжок (100 л)" +msgstr[3] "сталева діжка (100 л)" -#. ~ Description for spiral stone +#. ~ Description for steel drum (100L) #: lang/json/GENERIC_from_json.py -msgid "" -"A rock the size of your fist. It is covered with intricate spirals; it is " -"impossible to tell whether they are carved, naturally formed, or some kind " -"of fossil." +msgid "A huge steel barrel with a watertight lid." msgstr "" -"Камінь розміром з кулак. Вкритий заплутаними спіралями. Неможливо сказати, " -"їх вирізали на камені, сформувалися вони природнім шляхом чи це якісь " -"викопні рештки." -#: lang/json/GENERIC_from_json.py -msgid "USB drive" -msgid_plural "USB drives" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "steel drum (200L)" +msgid_plural "steel drums (200L)" +msgstr[0] "сталева діжка (200 л)" +msgstr[1] "сталеві діжки (200 л)" +msgstr[2] "сталевих діжок (200 л)" +msgstr[3] "сталева діжка (200 л)" -#. ~ Description for USB drive +#. ~ Description for steel drum (200L) #: lang/json/GENERIC_from_json.py -msgid "A USB thumb drive. Useful for holding software." +msgid "A massive steel barrel with a watertight lid." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "data card" -msgid_plural "data cards" +msgid "canvas sack" +msgid_plural "canvas sacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for data card +#. ~ Description for canvas sack #: lang/json/GENERIC_from_json.py msgid "" -"Some type of advanced data storage device. Useful for storing very large " -"amounts of information." +"A large and sturdy canvas sack. Smells faintly of earth and hard work." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "FEMA data" -msgid_plural "FEMA data" +msgid "canvas bag" +msgid_plural "canvas bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for canvas bag #: lang/json/GENERIC_from_json.py -msgid "" -"Evacuation plans, disaster risk projections, personnel lists and last minute" -" communications from just before the end, all scrubbed from FEMA servers and" -" stored in an external hdd." +msgid "Small bag made of canvas. Looks fine to store dried herbs in." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "candlestick" -msgid_plural "candlesticks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "plastic bag" +msgid_plural "plastic bags" +msgstr[0] "пакетик" +msgstr[1] "пакетик" +msgstr[2] "пакетики" +msgstr[3] "пакетик" -#. ~ Description for candlestick +#. ~ Description for plastic bag #: lang/json/GENERIC_from_json.py -msgid "A gold candlestick." +msgid "A small, open plastic bag. Essentially trash." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "blade" -msgid_plural "blades" +#: lang/json/GENERIC_from_json.py +msgid "small powder paper bag" +msgid_plural "small powder paper bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for blade +#. ~ Description for small powder paper bag #: lang/json/GENERIC_from_json.py msgid "" -"A large, relatively sharp blade. Could be used to make bladed weaponry, or " -"attached to a car." +"A small but sturdy paper bag. Rock solid when packed full with powder." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "scythe blade" -msgid_plural "scythe blades" +msgid "zipper bag" +msgid_plural "zipper bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for scythe blade +#. ~ Description for zipper bag #: lang/json/GENERIC_from_json.py msgid "" -"A large, curved blade. Could be used to assemble a scythe, or make an " -"improvised polearm." +"An inexpensive flexible rectangular storage bag on its typical small size. " +"Transparent and made of plastic, it can be sealed and opened by a slider " +"which works in a similar way to a zip fastener." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "circular sawblade" -msgid_plural "circular sawblades" +msgid "body bag" +msgid_plural "body bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for circular sawblade +#. ~ Description for body bag #: lang/json/GENERIC_from_json.py msgid "" -"An 8\" circular sawblade. You could make a saw with it, or throw it. " -"Wielding it without sturdy gloves is a bad idea." +"A large, human size, rectangular bag made of strong plastic, with a zipper " +"in the middle. Used to hold a dead body." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "tree spile" -msgid_plural "tree spiles" +msgid "IV bag" +msgid_plural "IV bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tree spile +#. ~ Description for IV bag +#: lang/json/GENERIC_from_json.py +msgid "A small, sealed plastic bag for liquids used in intravenous therapy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "glass bottle" +msgid_plural "glass bottles" +msgstr[0] "скляна пляшка" +msgstr[1] "скляна пляшка" +msgstr[2] "скляна пляшка" +msgstr[3] "скляні пляшки" + +#. ~ Description for glass bottle +#: lang/json/GENERIC_from_json.py +msgid "A watertight glass bottle, holds 750 ml of liquid." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "plastic bottle" +msgid_plural "plastic bottles" +msgstr[0] "пластикова пляшка" +msgstr[1] "пластикова пляшка" +msgstr[2] "пластикова пляшка" +msgstr[3] "пластикові пляшки" + +#. ~ Description for plastic bottle #: lang/json/GENERIC_from_json.py msgid "" -"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." +"A watertight plastic bottle, holds 500 ml of liquid. Some may be factory-" +"sealed to increase shelf life." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wire" -msgid_plural "wires" -msgstr[0] "дріт" -msgstr[1] "дроту" -msgstr[2] "дроту" -msgstr[3] "дріт" +msgid "condiment bottle" +msgid_plural "condiment bottles" +msgstr[0] "пляшечка для соусів" +msgstr[1] "пляшечки для соусів" +msgstr[2] "пляшечок для соусів" +msgstr[3] "пляшечки для соусів" -#. ~ Description for wire +#. ~ Description for condiment bottle #: lang/json/GENERIC_from_json.py msgid "" -"A length of thin, relatively stiff, steel wire. Like the sort you find in " -"wire fences." +"An inverted plastic bottle for condiments. Preserves content from rot until" +" opened." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "barbed wire" -msgid_plural "barbed wires" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "small plastic bottle" +msgid_plural "small plastic bottles" +msgstr[0] "мала пластикова пляшка" +msgstr[1] "мала пластикова пляшка" +msgstr[2] "мала пластикова пляшка" +msgstr[3] "малі пластикові пляшки" -#. ~ Description for barbed wire +#. ~ Description for small plastic bottle #: lang/json/GENERIC_from_json.py -msgid "A length of stiff wire, covered in sharp barbs." +msgid "A watertight plastic bottle, holds 250 ml of liquid." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "steel mesh" -msgid_plural "steel meshes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "large plastic bottle" +msgid_plural "large plastic bottles" +msgstr[0] "велика пластикова пляшка" +msgstr[1] "велика пластикова пляшка" +msgstr[2] "велика пластикова пляшка" +msgstr[3] "великі пластикові пляшки" -#. ~ Description for steel mesh +#. ~ Description for large plastic bottle #: lang/json/GENERIC_from_json.py msgid "" -"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." +"It's a two-liter plastic bottle that can hold a lot of soda, or, nowadays, " +"boiled water." msgstr "" +"Це 2-літрова пластикова пляшка, що може вмістити багато лимонаду, чи, у " +"теперішні часи, кип'яченої води." #: lang/json/GENERIC_from_json.py -msgid "rebar" -msgid_plural "rebars" +msgid "clay bowl" +msgid_plural "clay bowls" +msgstr[0] "глиняна миска" +msgstr[1] "глиняні миски" +msgstr[2] "глиняних мисок" +msgstr[3] "глиняна миска" + +#. ~ Description for clay bowl +#: lang/json/GENERIC_from_json.py +msgid "" +"A clay bowl with a waterproofed hide lid. Can be used as a container or as " +"a tool. Holds 250 ml of liquid." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "pack" +msgid_plural "packs" +msgstr[0] "цигаркова пачка" +msgstr[1] "цигаркові пачки" +msgstr[2] "цигаркових пачок" +msgstr[3] "цигаркові пачки" + +#. ~ Description for pack +#: lang/json/GENERIC_from_json.py +msgid "" +"SURGEON GENERAL'S WARNING: Smoking Causes Lung Cancer, Heart Disease, " +"Emphysema And May Complicate Pregnancy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rebar +#. ~ Description for cigar case #: lang/json/GENERIC_from_json.py msgid "" -"A length of rebar, makes a nice melee weapon, and could be handy in " -"constructing tougher walls and such." +"A small handmade wood and leather case meant to hold one or two cigars." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py -msgid "small railroad track" -msgid_plural "small railroad tracks" +#: lang/json/GENERIC_from_json.py +msgid "small cardboard box" +msgid_plural "small cardboard boxes" +msgstr[0] "невелика картона коробка" +msgstr[1] "невеликі картоні коробки" +msgstr[2] "невеликих картоних коробок" +msgstr[3] "невелика картона коробка" + +#. ~ Description for small cardboard box +#: lang/json/GENERIC_from_json.py +msgid "A small cardboard box. No bigger than a foot in dimension." +msgstr "Невелика картона коробка. Розміром не більше 30 см." + +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small railroad track +#. ~ Description for small wooden box #: lang/json/GENERIC_from_json.py -msgid "A length of track, made from some planks and rails." +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py -msgid "concrete" -msgid_plural "concrete" +#: lang/json/GENERIC_from_json.py +msgid "cardboard box" +msgid_plural "cardboard boxes" +msgstr[0] "картонна коробка" +msgstr[1] "картонна коробка" +msgstr[2] "картонна коробка" +msgstr[3] "картонні коробки" + +#. ~ Description for cardboard box +#: lang/json/GENERIC_from_json.py +msgid "" +"A sturdy cardboard box, about the size of a banana box. Great for packing." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py +msgid "large cardboard box" +msgid_plural "large cardboard boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for large cardboard box #: lang/json/GENERIC_from_json.py -msgid "Some concrete, ready to be used in a construction project." +msgid "" +"A very large cardboard box, the sort children would have loved to hide in, " +"when there were still children." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bone skewer" -msgid_plural "bone skewers" +msgid "bucket" +msgid_plural "buckets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bone skewer +#. ~ Description for bucket #: lang/json/GENERIC_from_json.py msgid "" -"A thin skewer carved from bone. Sadly, it won't make squirrel on a stick " -"taste better." +"A galvanized bucket for peanuts, chilled wine, iced beer, lobster, crab " +"legs, French fries, animal feed, farm use, tailgating, crafts, planting " +"flowers, holding gift baskets, containing a fruit basket and herbs, loose " +"item storage or as an ice bucket." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "burnt out torch" -msgid_plural "burnt out torches" -msgstr[0] "згорілий смолоскип" -msgstr[1] "згорілих смолоскипа" -msgstr[2] "згорілих смолоскипів" -msgstr[3] "згорілий смолоскип" +msgid "hydration pack" +msgid_plural "hydration packs" +msgstr[0] "питний рюкзак" +msgstr[1] "питні рюкзаки" +msgstr[2] "питних рюкзаків" +msgstr[3] "питний рюкзак" -#. ~ Description for burnt out torch +#. ~ Description for hydration pack #: lang/json/GENERIC_from_json.py msgid "" -"A torch that has consumed all its fuel; it can be recrafted into another " -"torch." +"A slim and lightweight insulated plastic bladder worn on the back. It has a" +" large pocket and a capped mouth for filling with liquid with a hose that " +"allows the wearer to drink hands-free." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "dead flare" -msgid_plural "dead flares" -msgstr[0] "згасла освітлювальна ракета" -msgstr[1] "згаслі освітлювальні ракети" -msgstr[2] "згаслих освітлювальних ракет" -msgstr[3] "згасла освітлювальна ракета" +msgid "aluminum can" +msgid_plural "aluminum cans" +msgstr[0] "алюмінієва банка" +msgstr[1] "алюмінієві банки" +msgstr[2] "алюмінієвих банок" +msgstr[3] "алюмінієва банка" -#. ~ Description for dead flare +#. ~ Description for aluminum can #: lang/json/GENERIC_from_json.py -msgid "This is a spent magnesium flare. It is essentially trash." +msgid "An aluminum can, like what soda comes in." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "spring" -msgid_plural "springs" -msgstr[0] "пружина" -msgstr[1] "пружини" -msgstr[2] "пружин" -msgstr[3] "пружина" +msgid "paper carton" +msgid_plural "paper cartons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for spring +#. ~ Description for paper carton #: lang/json/GENERIC_from_json.py msgid "" -"A large, heavy-duty spring. Expands with significant force when compressed." +"A half gallon carton constructed of a paper, aluminum, and plastic laminate." +" It has a threaded cap to keep liquid from leaking out." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "lawnmower" -msgid_plural "lawnmowers" -msgstr[0] "газонокосарка" -msgstr[1] "газонокосарки" -msgstr[2] "газонокосарок" -msgstr[3] "газонокосарка" +msgid "milk carton" +msgid_plural "milk cartons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for lawnmower +#. ~ Description for milk carton #: lang/json/GENERIC_from_json.py msgid "" -"A motorized pushmower that seems to be broken. You could take it apart if " -"you had a wrench." +"A half-gallon carton constructed of thick, waterproof paper. It has a " +"threaded cap to keep the contents from leaking out." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "damaged tent" -msgid_plural "damaged tents" +msgid "egg carton" +msgid_plural "egg cartons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for damaged tent +#. ~ Description for egg carton #: lang/json/GENERIC_from_json.py -msgid "" -"A small tent, just big enough to fit a person comfortably. This tent is " -"broken and cannot be deployed." +msgid "A cardboard container with 12 individual cavities for storing eggs." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "large damaged tent" -msgid_plural "large damaged tents" +msgid "vacuum-packed bag" +msgid_plural "vacuum-packed bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large damaged tent +#. ~ Description for vacuum-packed bag +#: lang/json/GENERIC_from_json.py +msgid "This is a bag of vacuum-packed food." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "small tin can" +msgid_plural "small tin cans" +msgstr[0] "маленька консервна банка" +msgstr[1] "маленькі консервні банки" +msgstr[2] "маленьких консервних банок" +msgstr[3] "маленька консервна банка" + +#. ~ Description for small tin can +#: lang/json/GENERIC_from_json.py +msgid "A small tin can, like what tuna comes in." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "medium tin can" +msgid_plural "medium tin cans" +msgstr[0] "середня консервна банка" +msgstr[1] "середні консервні банки" +msgstr[2] "середніх консервних банок" +msgstr[3] "середня консервна банка" + +#. ~ Description for medium tin can +#: lang/json/GENERIC_from_json.py +msgid "A medium tin can, like what soup comes in." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "plastic canteen" +msgid_plural "plastic canteens" +msgstr[0] "пластикова фляга" +msgstr[1] "пластикові фляги" +msgstr[2] "пластикових фляг" +msgstr[3] "пластикова фляга" + +#. ~ Description for plastic canteen #: lang/json/GENERIC_from_json.py msgid "" -"A family sized tent, very bulky but with plenty of space. This tent is " -"broken and can not be deployed." +"A military-style water canteen with a 1.5 liter capacity. Commonly worn at " +"the hip." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "heating element" -msgid_plural "heating elements" -msgstr[0] "нагрівальний елемент" -msgstr[1] "нагрівальних елемента" -msgstr[2] "нагрівальних елементів" -msgstr[3] "нагрівальні елементи" +msgid "thermos" +msgid_plural "thermoses" +msgstr[0] "термос" +msgstr[1] "термос" +msgstr[2] "термос" +msgstr[3] "термоси" -#. ~ Description for heating element +#. ~ Description for thermos #: lang/json/GENERIC_from_json.py msgid "" -"A heating element, like the ones used in hotplates or kettles. Consists of " -"nichrome wire surrounded by electrical insulator and placed inside a steel " -"casing." +"A Thermos brand vacuum flask. Built for temperature retention, helps keep " +"things hot or cold. Contains 1L of liquid." msgstr "" +"Вакуумна колба-термос. Зроблений для утримання температури, допомогає " +"зберігати штуки гарячими чи холодними. Вміщує 1 л рідини." #: lang/json/GENERIC_from_json.py -msgid "crude heating element" -msgid_plural "crude heating elements" +msgid "clay canister" +msgid_plural "clay canisters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for crude heating element +#. ~ Description for clay canister #: lang/json/GENERIC_from_json.py msgid "" -"A primitive heating element made from thin coiled steel wire. It will " -"degrade much quicker with use than normal heating elements, but it'll do for" -" some applications." +"A fragile clay vessel. It can be used to make crude impact grenades or to " +"store liquid." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bimetal thermostat" -msgid_plural "bimetal thermostats" +msgid "clay hydria" +msgid_plural "clay hydrias" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bimetal thermostat +#. ~ Description for clay hydria #: lang/json/GENERIC_from_json.py -msgid "" -"A simple thermostat controlled by thermal expansion of a bimetal strip." +msgid "A 15-liter clay pot with three handles for carrying and for pouring." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "household water heater" -msgid_plural "household water heaters" +msgid "large clay pot" +msgid_plural "large clay pots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for household water heater +#. ~ Description for large clay pot #: lang/json/GENERIC_from_json.py msgid "" -"A large metal tank with a water faucet attached to it, primarily used to " -"store and heat water." +"A bulky and heavy clay pot with a waterproofed hide lid, meant to store " +"water, but can carry other liquids in a pinch." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "television" -msgid_plural "televisions" -msgstr[0] "телевізор" -msgstr[1] "телевізори" -msgstr[2] "телевізорів" -msgstr[3] "телевізор" +msgid "plastic cup" +msgid_plural "plastic cups" +msgstr[0] "пластиковий стаканчик" +msgstr[1] "пластикових стаканчика" +msgstr[2] "пластикових стаканчиків" +msgstr[3] "пластиковий стаканчик" -#. ~ Description for television +#. ~ Description for plastic cup #: lang/json/GENERIC_from_json.py -msgid "A large LCD television, full of delicious electronics." +msgid "A small, vacuum formed cup." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "household washing machine" -msgid_plural "household washing machines" +msgid "glass flask" +msgid_plural "glass flasks" +msgstr[0] "скляна колба" +msgstr[1] "скляні колби" +msgstr[2] "скляних колб" +msgstr[3] "скляна колба" + +#. ~ Description for glass flask +#: lang/json/GENERIC_from_json.py +msgid "A 250 ml laboratory conical flask, with a rubber bung." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "test tube" +msgid_plural "test tubes" +msgstr[0] "пробірка" +msgstr[1] "пробірки" +msgstr[2] "пробірок" +msgstr[3] "пробірка" + +#. ~ Description for test tube +#: lang/json/GENERIC_from_json.py +msgid "A 10ml laboratory cylindrical test tube, with a rubber stopper." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "beaker" +msgid_plural "beakers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for household washing machine +#. ~ Description for beaker #: lang/json/GENERIC_from_json.py msgid "" -"An appliance used to do laundry, not of much use without power and plumbing." -" You could probably scrap it for parts." +"A 250ml laboratory beaker. Basically a cup with delusions of grandeur." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pilot light" -msgid_plural "pilot lights" +msgid "graduated cylinder" +msgid_plural "graduated cylinders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pilot light +#. ~ Description for graduated cylinder #: lang/json/GENERIC_from_json.py msgid "" -"A pilot light from a gas-burning device, this particular one is a simple " -"piezoelectric igniter." +"A tall, narrow glass cylinder with precise markings for measuring fluid " +"quantities. An important science tool, it is also useful for anal retentive" +" chefs." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "delayed fuze" -msgid_plural "delayed fuzes" +msgid "microcentrifuge tube" +msgid_plural "microcentrifuge tubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for delayed fuze +#. ~ Description for microcentrifuge tube #: lang/json/GENERIC_from_json.py msgid "" -"A complex mechanical fuze. It seems it can be used to detonate stable " -"explosives after a short time by triggering it." +"These plastic tubes, with little built in snap-caps, are a great way to " +"store a tiny amount of liquid. Great for jello shooters if 1mL is enough " +"for a shot for you. Cool people call these \"eppies\"." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "impact fuze" -msgid_plural "impact fuzes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "hip flask" +msgid_plural "hip flasks" +msgstr[0] "фляжка" +msgstr[1] "фляжки" +msgstr[2] "фляжок" +msgstr[3] "фляжка" -#. ~ Description for impact fuze +#. ~ Description for hip flask #: lang/json/GENERIC_from_json.py msgid "" -"A complex mechanical fuze. It seems it can be used to detonate stable " -"explosives upon a solid impact." +"A 250 ml metal flask with a hinged screw-on lid, commonly used to discreetly" +" transport alcohol." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "toaster" -msgid_plural "toasters" -msgstr[0] "тостер" -msgstr[1] "тостера" -msgstr[2] "тостерів" -msgstr[3] "тостер" +msgid "3L glass jar" +msgid_plural "3L glass jars" +msgstr[0] "3-л скляна банка" +msgstr[1] "3-л скляні банки" +msgstr[2] "3-л скляних банок" +msgstr[3] "3-л скляна банка" -#. ~ Description for toaster +#. ~ Description for 3L glass jar #: lang/json/GENERIC_from_json.py -msgid "A small two slice toaster, not much use as anything but spare parts." +msgid "" +"A three-liter glass jar with a metal screw top lid, used for canning. " +"Preserves content from rot until opened." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "microwave" -msgid_plural "microwaves" +msgid "glass jar" +msgid_plural "glass jars" +msgstr[0] "скляна банка" +msgstr[1] "скляні банки" +msgstr[2] "скляних банок" +msgstr[3] "скляна банка" + +#. ~ Description for glass jar +#: lang/json/GENERIC_from_json.py +msgid "" +"A half-liter glass jar with a metal screw top lid, used for canning. " +"Preserves content from rot until opened (assuming it was sterile before " +"sealing)." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "plastic jerrycan" +msgid_plural "plastic jerrycans" +msgstr[0] "пластикова каністра" +msgstr[1] "пластикові каністри" +msgstr[2] "пластикових каністр" +msgstr[3] "пластикова каністра" + +#. ~ Description for plastic jerrycan +#: lang/json/GENERIC_from_json.py +msgid "" +"A bulky plastic jerrycan, meant to carry fuel, but can carry other liquids " +"in a pinch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "steel jerrycan" +msgid_plural "steel jerrycans" +msgstr[0] "сталева каністра" +msgstr[1] "сталеві каністри" +msgstr[2] "сталевих каністр" +msgstr[3] "сталева каністра" + +#. ~ Description for steel jerrycan +#: lang/json/GENERIC_from_json.py +msgid "" +"A steel jerrycan, meant to carry fuel, but can carry other liquids in a " +"pinch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "clay jug" +msgid_plural "clay jugs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for microwave +#. ~ Description for clay jug +#: lang/json/GENERIC_from_json.py +msgid "A clay container with a lid, used to hold and pour liquids." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "gallon jug" +msgid_plural "gallon jugs" +msgstr[0] "1-галонний бутиль" +msgstr[1] "1-галонних бутля" +msgstr[2] "1-галонних бутлів" +msgstr[3] "1-галонний бутиль" + +#. ~ Description for gallon jug #: lang/json/GENERIC_from_json.py msgid "" -"A home microwave, has probably seen its share of baked beans. Good for " -"scrap parts." +"A standard plastic jug used for milk and household cleaning chemicals. Some" +" may be factory-sealed to increase shelf life." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken eyebot" -msgid_plural "broken eyebots" +msgid "aluminum keg" +msgid_plural "aluminum kegs" +msgstr[0] "алюмінієве барильце" +msgstr[1] "алюмінієвих барильця" +msgstr[2] "алюмінієвих барилець" +msgstr[3] "алюмінієве барильце" + +#. ~ Description for aluminum keg +#: lang/json/GENERIC_from_json.py +msgid "" +"A reusable lightweight aluminum keg, used for shipping beer. It has a " +"capacity of 50 liters." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "steel keg" +msgid_plural "steel kegs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken eyebot +#. ~ Description for steel keg #: lang/json/GENERIC_from_json.py msgid "" -"A broken eyebot. Much less threatening now that it won't be calling for " -"backup. Could be gutted for parts." +"A reusable heavy steel keg, used for shipping beer. It has a capacity of 50" +" liters." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken camspy" -msgid_plural "broken camspies" +msgid "large sealed stomach" +msgid_plural "large sealed stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken camspy +#. ~ Description for large sealed stomach #: lang/json/GENERIC_from_json.py msgid "" -"A broken camspy. It probably won't spy on anything ever again. Could be " -"gutted for parts." +"The stomach of a large creature, cleaned and sealed with strings. It can " +"hold 3 liters of water." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken skitterbot" -msgid_plural "broken skitterbots" +msgid "metal tank (60L)" +msgid_plural "metal tanks (60L)" +msgstr[0] "металевий бак (60 л)" +msgstr[1] "металеві баки (60 л)" +msgstr[2] "металевих баків (60 л)" +msgstr[3] "металевий бак (60 л)" + +#. ~ Description for metal tank (60L) +#: lang/json/GENERIC_from_json.py +msgid "A large metal tank for holding liquids. Useful for crafting." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "metal tank (2L)" +msgid_plural "metal tanks (2L)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken skitterbot +#. ~ Description for metal tank (2L) #: lang/json/GENERIC_from_json.py -msgid "" -"A broken skitterbot. Much less threatening now that it lies limp on solid " -"ground. Could be gutted for parts." +msgid "A small metal tank for gas or liquids. Useful for crafting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken lab defense bot" -msgid_plural "broken lab defense bots" +msgid "wooden canteen" +msgid_plural "wooden canteens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken lab defense bot +#. ~ Description for wooden canteen #: lang/json/GENERIC_from_json.py msgid "" -"A broken lab defense bot, with its casing broken and fluid drained. Could " -"be gutted for parts." +"A water canteen made from wood, secured by metal bands and sealed with wax " +"or pitch. Holds 1.5 liters and has a simple carry strap." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken police bot" -msgid_plural "broken police bots" +msgid "sealed stomach" +msgid_plural "sealed stomachs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken police bot +#. ~ Description for sealed stomach #: lang/json/GENERIC_from_json.py msgid "" -"A broken police bot. Much less threatening now that it's quiet and still. " -"Could be gutted for parts." +"The stomach of a creature, cleaned and sealed with a string. It can hold " +"1.5 liters of water." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken nurse bot" -msgid_plural "broken nurse bots" +msgid "small waterskin" +msgid_plural "small waterskins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken nurse bot +#. ~ Description for small waterskin #: lang/json/GENERIC_from_json.py msgid "" -"A broken nurse bot. Its smooth face staring vacantly into empty space. " -"Could be gutted for parts." +"A small watertight leather bag with a carrying strap, can hold 1.5 liters of" +" water." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken grocery bot" -msgid_plural "broken grocery bots" +msgid "waterskin" +msgid_plural "waterskins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken grocery bot +#. ~ Description for waterskin #: lang/json/GENERIC_from_json.py msgid "" -"A broken grocery bot. Its smiling face staring vacantly into empty space. " -"Could be gutted for parts." +"A watertight leather bag with a carrying strap, can hold 3 liters of water." msgstr "" -#. ~ Description for broken grocery bot +#: lang/json/GENERIC_from_json.py +msgid "large waterskin" +msgid_plural "large waterskins" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for large waterskin #: lang/json/GENERIC_from_json.py msgid "" -"The body of a busted grocery bot. Its tarnished face is still smiling. " -"Could be gutted for parts." +"A large watertight leather bag with a carrying strap, can hold 5 liters of " +"water." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken riot control bot" -msgid_plural "broken riot control bots" +msgid "wooden barrel" +msgid_plural "wooden barrels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken riot control bot +#. ~ Description for wooden barrel #: lang/json/GENERIC_from_json.py msgid "" -"A broken riot control bot. Much less threatening now that it's out of gas." -" Could be gutted for parts." +"Traditionally made of white oak; these vessels are known for delivering " +"delicious whiskey to the future. It has a capacity of 100 liters." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken prototype robot" -msgid_plural "broken prototype robots" +msgid "paper wrapper" +msgid_plural "paper wrappers" +msgstr[0] "обгортковий папір" +msgstr[1] "обгортковий папір" +msgstr[2] "обгортковий папір" +msgstr[3] "обгортковий папір" + +#. ~ Description for paper wrapper +#: lang/json/GENERIC_from_json.py +msgid "Just a piece of butcher's paper. Good for starting fires." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "wrapper" +msgid_plural "wrappers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken prototype robot +#. ~ Description for wrapper +#. ~ Daizu is Japanese for soy, hence DaiZoom #: lang/json/GENERIC_from_json.py msgid "" -"A broken prototype robot, well more broken than before. Could be gutted for" -" parts." +"\"DaiZoom Protein Bar, brought to you by SoyPelusa\" is emblazoned proudly " +"upon this greaseproof wrapper." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken miner bot" -msgid_plural "broken miner bots" +msgid "styrofoam cup" +msgid_plural "styrofoam cups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken miner bot +#. ~ Description for styrofoam cup +#: lang/json/GENERIC_from_json.py +msgid "A cheap, disposable cup with a plastic lid and straw." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "plastic tub" +msgid_plural "plastic tubs" +msgstr[0] "пластикове відерце" +msgstr[1] "пластикових відерця" +msgstr[2] "пластикових відерець" +msgstr[3] "пластикове відерце" + +#. ~ Description for plastic tub +#: lang/json/GENERIC_from_json.py +msgid "A big, square plastic bucket usually used for carrying ice cream." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "condom" +msgid_plural "condoms" +msgstr[0] "презерватив" +msgstr[1] "презервативи" +msgstr[2] "презервативів" +msgstr[3] "презервативи" + +#. ~ Description for condom #: lang/json/GENERIC_from_json.py msgid "" -"A broken miner bot. Much less threatening now that it's no longer capable " -"of drilling anything. Could be gutted for parts." +"A gentleman's balloon. A single use life preventer. A thumbless latex " +"mitten. This could be used as a makeshift water container, but otherwise " +"it's anyone's guess what it's for." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken recon mech" -msgid_plural "broken recon mechs" +msgid "balloon" +msgid_plural "balloons" +msgstr[0] "повітряна кулька" +msgstr[1] "повітряні кульки" +msgstr[2] "повітряних кульок" +msgstr[3] "повітряна кулька" + +#. ~ Description for balloon +#: lang/json/GENERIC_from_json.py +msgid "A child's balloon. This could be used as a makeshift water container." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "large tin can" +msgid_plural "large tin cans" +msgstr[0] "велика консервна банка" +msgstr[1] "великі консервні банки" +msgstr[2] "великих консервних банок" +msgstr[3] "велика консервна банка" + +#. ~ Description for large tin can +#: lang/json/GENERIC_from_json.py +msgid "" +"A large tin can, like what beans come in. Holds a substantial amount of " +"food." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "survival kit box" +msgid_plural "survival kit boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken recon mech -#. ~ Description for broken mech lifter -#. ~ Description for broken combat mech +#. ~ Description for survival kit box #: lang/json/GENERIC_from_json.py -msgid "This is a broken mech exoskeleton suit, it looks beyond repair." +msgid "An aluminum box that used to contain a small survival kit." msgstr "" +#. ~ Description for survival kit box #: lang/json/GENERIC_from_json.py -msgid "broken mech lifter" -msgid_plural "broken mech lifters" +msgid "" +"The ultimate survival kit purchased either by the wealthy or the dedicated " +"urban survivalist. It contains tools and items to help you survive in case " +"of an emergency." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "small cardboard box of tea bags" +msgid_plural "small cardboard boxes of tea bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for small cardboard box of tea bags #: lang/json/GENERIC_from_json.py -msgid "broken combat mech" -msgid_plural "broken combat mechs" +msgid "A very small cardboard box with tea brand written on it." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "first aid kit box" +msgid_plural "first aid kit boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for first aid kit box #: lang/json/GENERIC_from_json.py -msgid "broken riot dispatch" -msgid_plural "broken riot dispatches" +msgid "A plastic box that used to contain a first aid kit." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "IFAK pouch" +msgid_plural "IFAK pouches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken riot dispatch +#. ~ Description for IFAK pouch #: lang/json/GENERIC_from_json.py -msgid "" -"A broken riot dispatch, with its mesh midsection filled with fried manhacks " -"and its motor limp and still. Could be gutted for parts." +msgid "A fabric pouch that used to contain an IFAK." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken military dispatch" -msgid_plural "broken military dispatches" +msgid "radio car box" +msgid_plural "radio car boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken military dispatch +#. ~ Description for radio car box #: lang/json/GENERIC_from_json.py msgid "" -"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." +"An RC car, with radio-control and batteries included! Unpack and enjoy." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken manhack" -msgid_plural "broken manhacks" +msgid "small MRE bag" +msgid_plural "small MRE bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken manhack +#. ~ Description for small MRE bag #: lang/json/GENERIC_from_json.py msgid "" -"A broken manhack. Much less threatening now that it lies limp on solid " -"ground. Could be gutted for parts." +"A small, sturdy, plastic and aluminum container of multi-layered " +"construction, with detailed nutritional information about its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken grenade hack" -msgid_plural "broken grenade hacks" +msgid "MRE bag" +msgid_plural "MRE bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken grenade hack +#. ~ Description for MRE bag #: lang/json/GENERIC_from_json.py msgid "" -"A broken grenade hack. Much less threatening now that it lies quiet on " -"solid ground. Could be gutted for parts." +"A sturdy plastic and aluminum container of multi-layered construction, with " +"detailed nutritional information about its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken mininuke hack" -msgid_plural "broken mininuke hacks" +msgid "MRE package" +msgid_plural "MRE packages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken mininuke hack +#. ~ Description for MRE package #: lang/json/GENERIC_from_json.py msgid "" -"A broken magenta hack. Just looking at the wreck makes you shiver. Could " -"be gutted for parts." +"The Meal, Ready-to-Eat - also known as the MRE - is an individual field " +"ration. It is in a lightweight yet sturdy multi-layered plastic and " +"aluminum foil container - essentially a flexible can." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken tear gas hack" -msgid_plural "broken tear gas hacks" +msgid "plastic beverage bag" +msgid_plural "plastic beverage bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken tear gas hack +#. ~ Description for plastic beverage bag #: lang/json/GENERIC_from_json.py -msgid "" -"A broken tear gas hack. Much less threatening now that it lies quiet on " -"solid ground. Could be gutted for parts." +msgid "A transparent, watertight plastic bag meant for holding drinks." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken EMP hack" -msgid_plural "broken EMP hacks" +msgid "glass aquarium" +msgid_plural "glass aquariums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken EMP hack +#. ~ Description for glass aquarium #: lang/json/GENERIC_from_json.py msgid "" -"A broken EMP hack. Much less threatening now that it lies quiet on solid " -"ground. Could be gutted for parts." +"A 50 gallon glass aquarium, used for safely storing small animals for use as" +" pets and food." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken flashbang hack" -msgid_plural "broken flashbang hacks" +msgid "breadboard" +msgid_plural "breadboards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken flashbang hack +#. ~ Description for breadboard #: lang/json/GENERIC_from_json.py msgid "" -"A broken flashbang hack. Much less threatening now that it lies quiet on " -"solid ground. Could be gutted for parts." +"Commonly used in electronics prototyping, this solderless breadboard is a " +"small brick of plastic filled with hundreds of holes connected by internal " +"electrical busses. With a few components and scraps of wire, you could " +"quickly build a circuit on this, if you know what you're doing." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken C-4 hack" -msgid_plural "broken C-4 hacks" +msgid "magnetron" +msgid_plural "magnetrons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken C-4 hack +#. ~ Description for magnetron #: lang/json/GENERIC_from_json.py msgid "" -"A broken C-4 hack. Much less threatening now that it lies quiet on solid " -"ground. Could be gutted for parts." +"This electrical component is designed to produce microwaves, for use in your" +" microwave." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken loudspeaker" -msgid_plural "broken loudspeakers" +msgid "explosively pumped flux compression generator" +msgid_plural "explosively pumped flux compression generators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken loudspeaker +#. ~ Description for explosively pumped flux compression generator #: lang/json/GENERIC_from_json.py msgid "" -"A broken loudspeaker. It's so unusually quiet now… Could be gutted for " -"parts." +"This large device consists mainly of a tube of copper wire surrounding a " +"large copper tube filled with high explosives. When detonated properly, the" +" explosives allow the device to produce large amounts of electrical energy " +"in a very short time." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "processor board" -msgid_plural "processor boards" -msgstr[0] "материнська плата" -msgstr[1] "материнські плати" -msgstr[2] "материнських плат" -msgstr[3] "материнські плати" +msgid "fake item" +msgid_plural "fake items" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for processor board +#. ~ Description for fake item #: lang/json/GENERIC_from_json.py -msgid "A central processor unit, useful in advanced electronics crafting." +msgid "Dummy item. If you see this, then something went wrong." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "RAM" -msgid_plural "RAMs" +msgid "semi ground grains" +msgid_plural "semi ground grains" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for RAM +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py -msgid "A stick of memory. Useful in advanced electronics crafting." +msgid "A paste of half-finished milled grains, not yet flour." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "power converter" -msgid_plural "power converters" -msgstr[0] "трансформатор" -msgstr[1] "трансформатора" -msgstr[2] "трансформаторів" -msgstr[3] "трансформатор" +msgid "smoldering embers" +msgid_plural "smoldering embers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for power converter +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py -msgid "A power supply unit. Useful in lots of electronics recipes." +msgid "" +"A handful of smoldering embers emitting smoke. They are fading away even " +"when you look at them." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "amplifier circuit" -msgid_plural "amplifier circuits" +msgid "Magic 8-Ball" +msgid_plural "Magic 8-Balls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for amplifier circuit +#. ~ Description for Magic 8-Ball #: lang/json/GENERIC_from_json.py msgid "" -"A circuit designed to amplify the strength of a signal. Useful in lots of " -"electronics recipes." +"A fortune-telling device from the 1950s. The kind of moral support you " +"didn't know you needed." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "transponder circuit" -msgid_plural "transponder circuits" +msgid "deck of cards" +msgid_plural "decks of cards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for transponder circuit +#. ~ Description for deck of cards #: lang/json/GENERIC_from_json.py -msgid "" -"A circuit designed to repeat a signal. Useful for crafting communications " -"equipment." +msgid "A deck of 52 playing cards." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "signal receiver" -msgid_plural "signal receivers" +msgid "family photo" +msgid_plural "family photos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for signal receiver +#. ~ Description for family photo #: lang/json/GENERIC_from_json.py msgid "" -"A module designed to receive many forms of signals. Useful for crafting " -"communications equipment." +"A photo of a smiling family on a camping trip. One of the parents looks " +"like a cleaner, happier version of the person you know." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "large LCD screen" -msgid_plural "large LCD screens" +msgid "polaroid photo" +msgid_plural "polaroid photos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large LCD screen +#. ~ Description for polaroid photo #: lang/json/GENERIC_from_json.py msgid "" -"A large backlit screen, used for displaying images. Useful in some " -"electronics recipes." +"A poorly taken polaroid photo of a young man wearing bell-bottoms and a " +"fedora. It's pretty blurry." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "small LCD screen" -msgid_plural "small LCD screens" +msgid "chess set" +msgid_plural "chess sets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small LCD screen +#. ~ Description for chess set #: lang/json/GENERIC_from_json.py msgid "" -"A small backlit screen, used for displaying images. Useful in some " -"electronics recipes." +"A wooden box containing all the equipment needed to play a game of chess." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "high-quality lens" -msgid_plural "high-quality lenses" -msgstr[0] "високоякісна лінза" -msgstr[1] "високоякісні лінзи" -msgstr[2] "високоякісних лінз" -msgstr[3] "високоякісні лінзи" +msgid "checkers set" +msgid_plural "checkers sets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for high-quality lens +#. ~ Description for checkers set #: lang/json/GENERIC_from_json.py -msgid "" -"A high-quality lens, useful for focusing or diffusing light. Might be " -"useful for starting a fire." +msgid "A wooden box containing a set of round tokens used to play checkers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "small high-quality lens" -msgid_plural "small high-quality lenses" -msgstr[0] "мала високоякісна лінза" -msgstr[1] "малі високоякісні лінзи" -msgstr[2] "малих високоякісних лінз" -msgstr[3] "малі високоякісні лінзи" +msgid "deck of Sorcery cards" +msgid_plural "decks of Sorcery cards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for small high-quality lens +#. ~ Description for deck of Sorcery cards #: lang/json/GENERIC_from_json.py msgid "" -"A small high-quality lens, useful for focusing or diffusing light. Might be" -" useful for crafting." +"A set of cards meant to play the game \"Sorcery.\" Each card has a fun " +"picture of a different monster." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pair of tinted glass" -msgid_plural "pairs of tinted glass" +msgid "Picturesque" +msgid_plural "sets of Picturesque" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of tinted glass +#. ~ Description for Picturesque #: lang/json/GENERIC_from_json.py msgid "" -"A pair of small darkened glass, like the one that sunglasses are made of." +"A game where one draws an image, and the others attempt to guess what it is." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "burnt out bionic" -msgid_plural "burnt out bionics" -msgstr[0] "перегоріла біоніка" -msgstr[1] "перегорілих біоніки" -msgstr[2] "перегорілих біонік" -msgstr[3] "перегоріла біоніка" +msgid "Capitalism" +msgid_plural "sets of Capitalism" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for burnt out bionic +#. ~ Description for Capitalism #: lang/json/GENERIC_from_json.py msgid "" -"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." +"A game where players traverse around the board buying property and swindling" +" their friends." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "nanofabricator template" -msgid_plural "nanofabricator templates" +msgid "Blobs and Bandits" +msgid_plural "sets of Blobs and Bandits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nanofabricator template -#: lang/json/GENERIC_from_json.py -msgid "" -"A state-of-the-art optical storage system. This small slate of transparent " -"glass holds, inscribed as a miniature pattern, the instructions required to " -"create an item through a nanofabricator." -msgstr "" - -#. ~ Description for nanofabricator template +#. ~ Description for Blobs and Bandits #: lang/json/GENERIC_from_json.py msgid "" -"A state-of-the-art optical storage system, containing the instruction set to" -" replicate itself." +"A roleplaying game set in the post-apocalypse, so you can pretend to survive" +" the apocalypse while surviving the apocalypse." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "nanofabricator template (silicon photonics)" -msgid_plural "nanofabricator templates (silicon photonics)" +msgid "Battlehammer" +msgid_plural "sets of Battlehammer" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nanofabricator template (silicon photonics) +#. ~ Description for Battlehammer #: lang/json/GENERIC_from_json.py msgid "" -"A state-of-the-art optical storage system, containing the instruction set " -"required for the fabrication of complex silicon photonic circuitry. The " -"data within was once clearly worth millions, but now, you are not sure if " -"it's anything more than a fancy, high-tech paperweight." +"A strategy game featuring a set of tiny figurines of fantasy creatures." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "antenna" -msgid_plural "antennas" -msgstr[0] "антена" -msgstr[1] "антени" -msgstr[2] "антен" -msgstr[3] "антена" +msgid "Battlehammer 20k" +msgid_plural "sets of Battlehammer 20k" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for antenna +#. ~ Description for Battlehammer 20k #: lang/json/GENERIC_from_json.py -msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." +msgid "" +"A strategy game featuring a set of tiny figurines of space aliens and " +"grotesque space marines." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "micro motor" -msgid_plural "micro motors" +msgid "Settlers of the Ranch" +msgid_plural "sets of Settlers of the Ranch" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for micro motor +#. ~ Description for Settlers of the Ranch #: lang/json/GENERIC_from_json.py msgid "" -"A very small electric motor like those used in RC cars. Useful in lots of " -"electronics recipes." +"A strategy game where players build settlements and trade for supplies." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "circuit board" -msgid_plural "circuit boards" +msgid "Warships" +msgid_plural "sets of Warships" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for circuit board +#. ~ Description for Warships #: lang/json/GENERIC_from_json.py msgid "" -"A printed card that supports and electrically connects electronic components" -" on a non-conductive substrate." +"A game where players try to guess where the opponent placed their ships on " +"the board." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "electronic scrap" -msgid_plural "electronic scraps" -msgstr[0] "кучка радіодеталей" -msgstr[1] "кучки радіодеталей" -msgstr[2] "кучок радіодеталей" -msgstr[3] "кучки радіодеталей" +msgid "Murder Mystery" +msgid_plural "sets of Murder Mystery" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for electronic scrap +#. ~ Description for Murder Mystery #: lang/json/GENERIC_from_json.py -msgid "" -"A random collection of resistors, capacitors, and diodes which have been " -"stripped from printed circuits." +msgid "A game where players try to figure out who murdered the butler." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "radio repeater mod" -msgid_plural "radio repeater mods" +msgid "key" +msgid_plural "keys" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for radio repeater mod +#. ~ Description for key #: lang/json/GENERIC_from_json.py msgid "" -"A system designed to convert a radio station into an autonomous repeater." +"This is an old nondescript North American Cylinder key. Lord knows what " +"lock it goes to; best not to bother with it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "desk fan" -msgid_plural "desk fans" +msgid "cigar cutter" +msgid_plural "cigar cutters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for desk fan +#. ~ Description for cigar cutter #: lang/json/GENERIC_from_json.py -msgid "A small fan, used to propel air around a room." +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "ceramic armor plate" -msgid_plural "ceramic armor plates" +msgid "cigar punch" +msgid_plural "cigar punches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ceramic armor plate +#. ~ Description for cigar punch #: lang/json/GENERIC_from_json.py -msgid "" -"A ceramic armor plate, specifically engineered for use in a bullet resistant" -" vest." +msgid "A small tube meant to cut a hole in the end of a cigar." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fishbowl" -msgid_plural "fishbowls" +msgid "NRE microphone" +msgid_plural "NRE microphones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fishbowl +#. ~ Description for NRE microphone #: lang/json/GENERIC_from_json.py msgid "" -"A filled fishbowl, the tag says 'to Ed' and the fish's name, 'Hoss'. The " -"fish appears to have tiny antlers." +"A squat tripod supports what appears to be a rather long microphone encased " +"within a glass ampoule. You can't tell whether it's meant to record audio, " +"or something else entirely." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pipe cleaner" -msgid_plural "pipe cleaners" -msgstr[0] "шомпол" -msgstr[1] "шомпола" -msgstr[2] "шомполів" -msgstr[3] "шомполи" +msgid "animal" +msgid_plural "none" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for pipe cleaner #: lang/json/GENERIC_from_json.py -msgid "" -"This is a tool designed to clean interior surface of pipes, bottles, and " -"similar objects. This one is thin enough to be used for cleaning firearm " -"barrels from dirt and fouling." -msgstr "" - -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "clock" -msgid_plural "clocks" +msgid "nearby fire" +msgid_plural "none" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for clock #: lang/json/GENERIC_from_json.py -msgid "A small mechanical clock, it's stopped at 10:10." -msgstr "" +msgid "muscle" +msgid_plural "none" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "clockworks" -msgid_plural "clockworks" +msgid "wind" +msgid_plural "none" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'clockworks'} #: lang/json/GENERIC_from_json.py -msgid "A small assortment of gears and other clockwork gubbins." -msgstr "" +msgid "sun light" +msgid_plural "none" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "SD-Memory card" -msgid_plural "SD-Memory cards" +msgid "metabolism" +msgid_plural "metabolisms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for SD-Memory card #: lang/json/GENERIC_from_json.py -msgid "A memory card, used. Might be worth a look." -msgstr "" +msgid "a smoking device and a source of flame" +msgid_plural "none" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Adjective in "You block of the damage with your . +#: lang/json/GENERIC_from_json.py lang/json/trap_from_json.py +#: src/advanced_inv.cpp src/effect.cpp src/magic.cpp src/map_extras.cpp +#: src/melee.cpp src/recipe.cpp +msgid "none" +msgid_plural "none" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "SD-Memory card (clean)" -msgid_plural "SD-Memory cards (clean)" +msgid "file" +msgid_plural "files" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for SD-Memory card (clean) +#. ~ Description for file #: lang/json/GENERIC_from_json.py msgid "" -"This memory card is either unused or has been wiped clean. You could use it" -" to store your data, though!" +"Several documents with all kinds of information, customer data and charts " +"kept together, pretty useless now though." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "SD-Memory card (encrypted)" -msgid_plural "SD-Memory cards (encrypted)" +msgid "INCIDENT REPORT: IMMERSION-27A" +msgid_plural "INCIDENT REPORT: IMMERSION-27As" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for SD-Memory card (encrypted) +#. ~ Description for INCIDENT REPORT: IMMERSION-27A #: lang/json/GENERIC_from_json.py msgid "" -"This memory card appears to have the firmware encryption set. Hopefully it " -"contains something worth encrypting." +"A white piece of paper, with the logo of XEDRA printed on its upper left " +"corner. It seems to be an internal report of some kind." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Science SD-Memory card" -msgid_plural "Science SD-Memory cards" +msgid "MATERIAL: T-SUBSTRATE" +msgid_plural "MATERIAL: T-SUBSTRATEs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Science SD-Memory card #: lang/json/GENERIC_from_json.py -msgid "" -"This memory card appears to be related to 'XEDRA', and is certainly " -"encrypted. Looks *Interesting*, though…" -msgstr "" +msgid "HAADF MICROGRAPH: T-SUBSTRATE" +msgid_plural "HAADF MICROGRAPH: T-SUBSTRATEs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "hand mirror" -msgid_plural "hand mirrors" +msgid "XEDRA document" +msgid_plural "XEDRA documents" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hand mirror #: lang/json/GENERIC_from_json.py -msgid "A small hand mirror." -msgstr "" +msgid "ANOMALOUS ARTIFACT REPORT" +msgid_plural "ANOMALOUS ARTIFACT REPORTs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/GENERIC_from_json.py lang/json/terrain_from_json.py -msgid "manhole cover" -msgid_plural "manhole covers" +#: lang/json/GENERIC_from_json.py +msgid "foodplace loyalty card" +msgid_plural "foodplace loyalty cards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for manhole cover +#. ~ Description for foodplace loyalty card #: lang/json/GENERIC_from_json.py msgid "" -"A heavy iron disc that typically covers a ladder into the sewers. Lifting " -"it from the manhole is impossible without a crowbar." +"A bright pink loyalty card, all the points are stamped. This would " +"definitely prove your fidelity to Foodplace, if it still meant anything…" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pine bough" -msgid_plural "pine boughs" -msgstr[0] "соснова гілка" -msgstr[1] "соснові гілки" -msgstr[2] "соснових гілок" -msgstr[3] "соснова гілка" +msgid "withered plant" +msgid_plural "withered plants" +msgstr[0] "зів'яла рослина" +msgstr[1] "зів'ялі рослини" +msgstr[2] "зів'ялих рослин" +msgstr[3] "зів'яла рослина" -#. ~ Description for pine bough +#. ~ Description for withered plant #: lang/json/GENERIC_from_json.py msgid "" -"A branch from a pine tree, oozing sticky sap and bristling with prickly " -"needles." +"A dead plant. Good for starting fires or making a pile of leaves to sleep " +"on." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pinecone" -msgid_plural "pinecones" +msgid "fur pelt" +msgid_plural "fur pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pinecone +#. ~ Description for fur pelt #: lang/json/GENERIC_from_json.py -msgid "" -"A spiny pod from a pine tree. Dry seeds rattle around inside when you shake" -" it." +msgid "A small bolt of fur from an animal. Can be made into warm clothing." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "poppy bud" -msgid_plural "poppy buds" +msgid "faux fur pelt" +msgid_plural "faux fur pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for poppy bud -#: lang/json/GENERIC_from_json.py -msgid "" -"A poppy bud. Contains some substances commonly produced by a mutated poppy " -"flower." -msgstr "" - -#. ~ Description for sunflower +#. ~ Description for faux fur pelt #: lang/json/GENERIC_from_json.py -msgid "" -"The top of a sunflower, with yellow pedals and some seeds that have yet to " -"be eaten by animals." +msgid "A small bolt of garishly colored faux fur. Can be made into clothing." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "chamomile flowers" -msgid_plural "chamomile flowers" -msgstr[0] "квітка ромашки" -msgstr[1] "квіти ромашки" -msgstr[2] "квіти ромашки" -msgstr[3] "квіти ромашки" +msgid "leather patch" +msgid_plural "leather patches" +msgstr[0] "шкіряний клапоть" +msgstr[1] "шкіряних клапті" +msgstr[2] "шкіряних клаптів" +msgstr[3] "шкіряні клапті" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for leather patch #: lang/json/GENERIC_from_json.py -msgid "" -"White chamomile flowers, used as a herbal remedy since the ancient times." +msgid "A smallish patch of leather, could be used to make tough clothing." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "lotus flower" -msgid_plural "lotus flowers" +msgid "felt patch" +msgid_plural "felt patches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lotus flower -#. ~ Description for lotus -#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py -msgid "" -"A lovely flower that grows on the surface of bodies of freshwater. " -"Traditionally connected with many Eastern cultures." +#. ~ Description for felt patch +#: lang/json/GENERIC_from_json.py +msgid "A smallish patch of felt, could be disassembled for wool fiber." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "spurge flowers" -msgid_plural "spurge flowers" +msgid "Nomex patch" +msgid_plural "Nomex patches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for Nomex patch #: lang/json/GENERIC_from_json.py -msgid "" -"A handful of yellow-green flowers. Can be brewed into a tea that prevents " -"asthma attacks." +msgid "A small bolt of Nomex fire-resistant fabric." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "lump of clay" -msgid_plural "lumps of clay" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "superglue" +msgid_plural "superglue" +msgstr[0] "суперклей" +msgstr[1] "суперклею" +msgstr[2] "суперклею" +msgstr[3] "суперклей" -#. ~ Description for lump of clay +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py -msgid "A fresh piece of clay. Useful for some crafting recipes." +msgid "A tube of strong glue. Used in many crafting recipes." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "brick" -msgid_plural "bricks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "bone glue" +msgid_plural "bone glues" +msgstr[0] "кістковий клей" +msgstr[1] "кісткового клею" +msgstr[2] "кісткового клею" +msgstr[3] "кістковий клей" -#. ~ Description for brick +#. ~ Description for bone glue #: lang/json/GENERIC_from_json.py -msgid "A fire hardened building block used in masonry construction." +msgid "" +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mortar" -msgid_plural "mortar" +msgid "fertilizer" +msgid_plural "fertilizers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for fertilizer #: lang/json/GENERIC_from_json.py -msgid "Some mortar, ready to be used in building projects." +msgid "A token, representing fertilization of a plant." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "soft adobe brick" -msgid_plural "soft adobe bricks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "steel chain" +msgid_plural "steel chains" +msgstr[0] "сталевий ланцюг" +msgstr[1] "сталевих ланцюга" +msgstr[2] "сталевих ланцюгів" +msgstr[3] "сталевий ланцюг" -#. ~ Use action msg for soft adobe brick. +#. ~ Description for steel chain #: lang/json/GENERIC_from_json.py -msgid "You test the brick, and it seems solid enough to use." +msgid "" +"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." msgstr "" -#. ~ Use action not_ready_msg for soft adobe brick. #: lang/json/GENERIC_from_json.py -msgid "The brick is still too damp to bear weight." -msgstr "" +msgid "chunk of chitin" +msgid_plural "chunks of chitin" +msgstr[0] "шматок хітину" +msgstr[1] "шматки хітину" +msgstr[2] "шматків хітину" +msgstr[3] "шматок хітину" -#. ~ Description for soft adobe brick +#. ~ Description for chunk of chitin #: lang/json/GENERIC_from_json.py -msgid "" -"A compacted mass of soil and natural fibers, still too wet to build with. " -"Load it onto a pallet and leave it to dry." +msgid "A piece of an insect's exoskeleton. It is light and very durable." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "adobe brick" -msgid_plural "adobe bricks" +msgid "strand of endochitin" +msgid_plural "strands of endochitin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for adobe brick +#. ~ Description for strand of endochitin #: lang/json/GENERIC_from_json.py -msgid "" -"A compacted mass of soil and natural fibers, baked dry enough to harden into" -" a brick." +msgid "A piece of an insect's endoskeleton." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "adobe mortar" -msgid_plural "adobe mortar" +msgid "cluster of gas sacs" +msgid_plural "clusters of gas sacs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for cluster of gas sacs #: lang/json/GENERIC_from_json.py msgid "" -"A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " -"to glue larger, heavier pieces of mud and clay together." +"This is a cluster of membranous bubbles, each about the size of a grape, " +"retrieved from inside a mutant insect. They float like tiny helium balloons" +" - perhaps they are full of a lighter-than-air gas." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "tanbark" -msgid_plural "tanbark" +msgid "set of 100 ceramic disk" +msgid_plural "ceramic disks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for set of 100 ceramic disk #: lang/json/GENERIC_from_json.py -msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" +msgid "" +"A set of small slightly elongated disks, made of high-grade ceramic. They " +"remind you of scales." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "birchbark" -msgid_plural "birchbarks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "chunk of biosilicified chitin" +msgid_plural "chunks of biosilicified chitin" +msgstr[0] "шматок біосиліфікованого хітину" +msgstr[1] "шматки біосиліфікованого хітину" +msgstr[2] "шматків біосиліфікованого хітину" +msgstr[3] "шматок біосиліфікованого хітину" -#. ~ Description for birchbark +#. ~ Description for chunk of biosilicified chitin #: lang/json/GENERIC_from_json.py -msgid "A sheet of tough, water-resistant bark taken from a birch tree." +msgid "" +"A lump of exoskeleton that has undergone biosilicification. It is acid-" +"resistant but rather brittle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "willowbark" -msgid_plural "willowbark" +msgid "bundle of rags" +msgid_plural "bundles of rags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for bundle of rags #: lang/json/GENERIC_from_json.py msgid "" -"A sheet of bark taken from a willow tree. Used in the production of " -"aspirin." +"Cotton rags, bundled tightly together for storage. Disassemble to unpack." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "diamond" -msgid_plural "diamonds" +msgid "bundle of leather" +msgid_plural "bundles of leather" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for diamond +#. ~ Description for bundle of leather #: lang/json/GENERIC_from_json.py -msgid "A sparkling diamond." +msgid "" +"Leather patches, bundled tightly together for storage. Disassemble to " +"unpack." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "garnet" -msgid_plural "garnets" +msgid "bundle of felt" +msgid_plural "bundles of felt" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for garnet +#. ~ Description for bundle of felt #: lang/json/GENERIC_from_json.py -msgid "A sparkling garnet." +msgid "" +"Felt patches, bundled tightly together for storage. Disassemble to unpack." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "amethyst" -msgid_plural "amethysts" +msgid "bundle of planks" +msgid_plural "bundles of planks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for amethyst +#. ~ Description for bundle of planks #: lang/json/GENERIC_from_json.py -msgid "A sparkling amethyst." +msgid "" +"Ten construction planks securely tied together for easier transport. " +"Disassemble to untie them." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "aquamarine" -msgid_plural "aquamarines" +msgid "bundle of rebars" +msgid_plural "bundles of rebars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for aquamarine +#. ~ Description for bundle of rebars #: lang/json/GENERIC_from_json.py -msgid "A sparkling aquamarine." +msgid "" +"Ten pieces of rebar securely tied together for easier transport. " +"Disassemble to untie them." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "emerald" -msgid_plural "emeralds" -msgstr[0] "смарагд" -msgstr[1] "смарагди" -msgstr[2] "смарагдів" -msgstr[3] "смарагд" - -#. ~ Description for emerald -#: lang/json/GENERIC_from_json.py -msgid "A sparkling emerald." -msgstr "Смарагд, що виблискує." - -#: lang/json/GENERIC_from_json.py -msgid "alexandrite" -msgid_plural "alexandrites" +msgid "bundle of sticks" +msgid_plural "bundles of sticks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for alexandrite +#. ~ Description for bundle of sticks #: lang/json/GENERIC_from_json.py -msgid "A sparkling alexandrite." +msgid "" +"Ten sticks securely tied together for easier transport. Disassemble to " +"untie them." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pearl" -msgid_plural "pearls" +msgid "bundle of long sticks" +msgid_plural "bundles of long sticks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pearl +#. ~ Description for bundle of long sticks #: lang/json/GENERIC_from_json.py -msgid "A lustrous pearl." +msgid "" +"Five long sticks securely tied together for easier transport. Disassemble " +"to untie them." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "ruby" -msgid_plural "rubies" +msgid "t-substrate sample" +msgid_plural "t-substrate samples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ruby +#. ~ Description for t-substrate sample #: lang/json/GENERIC_from_json.py -msgid "A sparkling ruby." +msgid "" +"An acrylic cube cast around a small black crystal. It's tepid to the touch." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "peridot" -msgid_plural "peridots" +msgid "biollante bud" +msgid_plural "biollante buds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for peridot +#. ~ Description for biollante bud #: lang/json/GENERIC_from_json.py -msgid "A sparkling peridot." +msgid "" +"An unopened biollante flower, brilliant purple in color. It may still have " +"its sap-producing organ intact." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sapphire" -msgid_plural "sapphires" +msgid "empty canister" +msgid_plural "empty canisters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sapphire +#. ~ Description for empty canister #: lang/json/GENERIC_from_json.py -msgid "A sparkling sapphire." +msgid "" +"An empty canister, which may have once held tear gas or other substances." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "opal" -msgid_plural "opals" +msgid "petrified eye" +msgid_plural "petrified eyes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for opal +#. ~ Description for petrified eye #: lang/json/GENERIC_from_json.py -msgid "A lustrous opal." +msgid "" +"A fist-sized eyeball with a cross-shaped pupil. It seems to be made of " +"stone, but doesn't look like it was carved." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "tourmaline" -msgid_plural "tourmalines" +msgid "spiral stone" +msgid_plural "spiral stones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tourmaline +#. ~ Description for spiral stone #: lang/json/GENERIC_from_json.py -msgid "A sparkling tourmaline." +msgid "" +"A rock the size of your fist. It is covered with intricate spirals; it is " +"impossible to tell whether they are carved, naturally formed, or some kind " +"of fossil." msgstr "" +"Камінь розміром з кулак. Вкритий заплутаними спіралями. Неможливо сказати, " +"їх вирізали на камені, сформувалися вони природнім шляхом чи це якісь " +"викопні рештки." #: lang/json/GENERIC_from_json.py -msgid "citrine" -msgid_plural "citrines" +msgid "USB drive" +msgid_plural "USB drives" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for citrine +#. ~ Description for USB drive #: lang/json/GENERIC_from_json.py -msgid "A sparkling citrine." +msgid "A USB thumb drive. Useful for holding software." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "topaz" -msgid_plural "topazes" +msgid "data card" +msgid_plural "data cards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for topaz +#. ~ Description for data card #: lang/json/GENERIC_from_json.py -msgid "A sparkling blue topaz." +msgid "" +"Some type of advanced data storage device. Useful for storing very large " +"amounts of information." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cured hide" -msgid_plural "cured hides" +msgid "FEMA data" +msgid_plural "FEMA data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cured hide +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" -"A rolled up animal hide which has been scraped of extraneous hair and flesh " -"and treated to prevent decay. It still requires tanning to become usable " -"leather." +"Evacuation plans, disaster risk projections, personnel lists and last minute" +" communications from just before the end, all scrubbed from FEMA servers and" +" stored in an external hdd." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "tanned hide" -msgid_plural "tanned hides" +msgid "candlestick" +msgid_plural "candlesticks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tanned hide +#. ~ Description for candlestick #: lang/json/GENERIC_from_json.py -msgid "" -"A folded sheet of leather made from carefully tanned animal hide. Can be " -"cut up or used as is." +msgid "A gold candlestick." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "cured pelt" -msgid_plural "cured pelts" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "blade" +msgid_plural "blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cured pelt +#. ~ Description for blade #: lang/json/GENERIC_from_json.py msgid "" -"A rolled up animal hide which has been scraped of extraneous hair and flesh " -"and treated to prevent decay. It still requires tanning to become usable " -"fur." +"A large, relatively sharp blade. Could be used to make bladed weaponry, or " +"attached to a car." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "tanned pelt" -msgid_plural "tanned pelts" +msgid "scythe blade" +msgid_plural "scythe blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tanned pelt +#. ~ Description for scythe blade #: lang/json/GENERIC_from_json.py msgid "" -"A folded sheet of leather made from carefully tanned animal hide, with the " -"fur still intact. Can be cut up or used as is." +"A large, curved blade. Could be used to assemble a scythe, or make an " +"improvised polearm." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pile of straw" -msgid_plural "piles of straw" +msgid "circular sawblade" +msgid_plural "circular sawblades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pile of straw +#. ~ Description for circular sawblade #: lang/json/GENERIC_from_json.py msgid "" -"A pile of dry grass. Can be used to craft a straw bed if there is nothing " -"else to sleep on." +"An 8\" circular sawblade. You could make a saw with it, or throw it. " +"Wielding it without sturdy gloves is a bad idea." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "straw doll" -msgid_plural "straw dolls" +msgid "tree spile" +msgid_plural "tree spiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for straw doll +#. ~ Description for tree spile #: lang/json/GENERIC_from_json.py -msgid "Old straw doll. Represents a woman in a dress." +msgid "" +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pillow" -msgid_plural "pillows" -msgstr[0] "подушка" -msgstr[1] "подушки" -msgstr[2] "подушок" -msgstr[3] "подушка" +msgid "wire" +msgid_plural "wires" +msgstr[0] "дріт" +msgstr[1] "дроту" +msgstr[2] "дроту" +msgstr[3] "дріт" -#. ~ Description for pillow +#. ~ Description for wire #: lang/json/GENERIC_from_json.py -msgid "A pillow to rest your head on when sleeping." -msgstr "Подушка, на яку можна покласти голову під час сну." +msgid "" +"A length of thin, relatively stiff, steel wire. Like the sort you find in " +"wire fences." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "makeshift pillow" -msgid_plural "makeshift pillows" +msgid "barbed wire" +msgid_plural "barbed wires" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift pillow +#. ~ Description for barbed wire #: lang/json/GENERIC_from_json.py -msgid "" -"A pillowcase with straw and other dead plants as filling. It's better than " -"nothing…" +msgid "A length of stiff wire, covered in sharp barbs." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "body pillow" -msgid_plural "body pillows" +msgid "steel mesh" +msgid_plural "steel meshes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for body pillow +#. ~ Description for steel mesh #: lang/json/GENERIC_from_json.py msgid "" -"A big, body-sized pillow with a print of an anime character on the front and" -" their scantily clad version on the back." +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "makeshift body pillow" -msgid_plural "makeshift body pillows" +msgid "rebar" +msgid_plural "rebars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift body pillow +#. ~ Description for rebar #: lang/json/GENERIC_from_json.py msgid "" -"A big, body-sized pillow. Someone drew a vaguely humanoid figure on it. " -"Its heartwarming smile fills you with joy." +"A length of rebar, makes a nice melee weapon, and could be handy in " +"constructing tougher walls and such." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "down-filled pillow" -msgid_plural "down-filled pillows" +#: lang/json/GENERIC_from_json.py lang/json/terrain_from_json.py +#: lang/json/terrain_from_json.py +msgid "small railroad track" +msgid_plural "small railroad tracks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for down-filled pillow +#. ~ Description for small railroad track #: lang/json/GENERIC_from_json.py -msgid "A fluffy pillow to rest your head on when sleeping." +msgid "A length of track, made from some planks and rails." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "teddy bear" -msgid_plural "teddy bears" +#: lang/json/GENERIC_from_json.py lang/json/terrain_from_json.py +#: lang/json/terrain_from_json.py +msgid "concrete" +msgid_plural "concrete" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for teddy bear -#: lang/json/GENERIC_from_json.py -msgid "" -"An old and half rotten teddy bear. Looks like this one commemorates the " -"grave of the child who once owned it." -msgstr "" - -#. ~ Description for teddy bear -#: lang/json/GENERIC_from_json.py -msgid "" -"A mass-produced plush teddy bear. It is wearing a little red tshirt but no " -"pants." -msgstr "" - -#. ~ Use action menu_text for cigar. -#. ~ Use action menu_text for cigarette. -#. ~ Use action menu_text for joint. -#. ~ Use action menu_text for spooky plastic jack o'lantern. -#. ~ Use action menu_text for lit jack o' lantern. -#. ~ Use action menu_text for refillable lighter. -#. ~ Use action menu_text for ember carrier (lit). -#. ~ Use action menu_text for candle. -#. ~ Use action menu_text for torch. -#. ~ Use action menu_text for Louisville Slaughterer. -#. ~ Use action menu_text for everburning torch. -#: lang/json/GENERIC_from_json.py lang/json/GENERIC_from_json.py -#: lang/json/TOOL_from_json.py lang/json/TOOL_from_json.py -msgid "Extinguish" -msgstr "" - -#. ~ Use action msg for cigar. -#: lang/json/GENERIC_from_json.py -msgid "You extinguish the cigar." -msgstr "" - -#. ~ Description for cigar +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py -msgid "The smoke billowing from this cigar has a sweet, musty odor." +msgid "Some concrete, ready to be used in a construction project." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cigar butt" -msgid_plural "cigar butts" +msgid "bone skewer" +msgid_plural "bone skewers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cigar butt +#. ~ Description for bone skewer #: lang/json/GENERIC_from_json.py -msgid "A true gentleman always finishes his cigars." +msgid "" +"A thin skewer carved from bone. Sadly, it won't make squirrel on a stick " +"taste better." msgstr "" -#. ~ Use action msg for cigarette. #: lang/json/GENERIC_from_json.py -msgid "You extinguish the cigarette." -msgstr "" +msgid "burnt out torch" +msgid_plural "burnt out torches" +msgstr[0] "згорілий смолоскип" +msgstr[1] "згорілих смолоскипа" +msgstr[2] "згорілих смолоскипів" +msgstr[3] "згорілий смолоскип" -#. ~ Description for cigarette +#. ~ Description for burnt out torch #: lang/json/GENERIC_from_json.py msgid "" -"Smoke swirls from the lit end of this cigarette, filling the air with the " -"thrilling smell of burning chemicals." +"A torch that has consumed all its fuel; it can be recrafted into another " +"torch." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cigarette butt" -msgid_plural "cigarette butts" -msgstr[0] "недопалок" -msgstr[1] "недопалки" -msgstr[2] "недопалків" -msgstr[3] "недопалок" +msgid "dead flare" +msgid_plural "dead flares" +msgstr[0] "згасла освітлювальна ракета" +msgstr[1] "згаслі освітлювальні ракети" +msgstr[2] "згаслих освітлювальних ракет" +msgstr[3] "згасла освітлювальна ракета" -#. ~ Description for cigarette butt +#. ~ Description for dead flare #: lang/json/GENERIC_from_json.py -msgid "" -"What was once a wonderfully addictive tube of dried tobacco leaf is now just a smelly piece of trash. What a tragedy!\n" -"The leftover tobacco in a few of these could probably be used to roll another cigarette. If you're willing to go that far…" +msgid "This is a spent magnesium flare. It is essentially trash." msgstr "" -#. ~ Use action msg for joint. #: lang/json/GENERIC_from_json.py -msgid "You extinguish the joint." -msgstr "" +msgid "spring" +msgid_plural "springs" +msgstr[0] "пружина" +msgstr[1] "пружини" +msgstr[2] "пружин" +msgstr[3] "пружина" -#. ~ Description for joint +#. ~ Description for spring #: lang/json/GENERIC_from_json.py msgid "" -"The smell of skunk permeates the air as a thin trail of smoke floats off of " -"this joint." +"A large, heavy-duty spring. Expands with significant force when compressed." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "joint roach" -msgid_plural "joint roaches" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "lawnmower" +msgid_plural "lawnmowers" +msgstr[0] "газонокосарка" +msgstr[1] "газонокосарки" +msgstr[2] "газонокосарок" +msgstr[3] "газонокосарка" -#. ~ Description for joint roach +#. ~ Description for lawnmower #: lang/json/GENERIC_from_json.py msgid "" -"The smoked-down butt of a joint, a reminder of some good times. Pretty much trash now. Bummer, man.\n" -"A few of these could probably be used to roll another joint." +"A motorized pushmower that seems to be broken. You could take it apart if " +"you had a wrench." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cannabis plant" -msgid_plural "cannabis plants" +msgid "damaged tent" +msgid_plural "damaged tents" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cannabis plant +#. ~ Description for damaged tent #: lang/json/GENERIC_from_json.py msgid "" -"A psychoactive plant indigenous to Central Asia and the Indian subcontinent " -"traditionally cultivated for its fiber, oil, for medicinal purposes, and for" -" use as a recreational drug. It requires further processing to be useful." +"A small tent, just big enough to fit a person comfortably. This tent is " +"broken and cannot be deployed." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "raw tobacco" -msgid_plural "raw tobacco" +msgid "large damaged tent" +msgid_plural "large damaged tents" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for large damaged tent #: lang/json/GENERIC_from_json.py msgid "" -"Various parts of tobacco plant, full of nicotine. They need to be dried to " -"become smokable." +"A family sized tent, very bulky but with plenty of space. This tent is " +"broken and can not be deployed." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "drone memory bank" -msgid_plural "drone memory banks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "heating element" +msgid_plural "heating elements" +msgstr[0] "нагрівальний елемент" +msgstr[1] "нагрівальних елемента" +msgstr[2] "нагрівальних елементів" +msgstr[3] "нагрівальні елементи" -#. ~ Description for drone memory bank +#. ~ Description for heating element #: lang/json/GENERIC_from_json.py msgid "" -"Allows for storage and recovery of information. Found in meteorologist " -"drone." +"A heating element, like the ones used in hotplates or kettles. Consists of " +"nichrome wire surrounded by electrical insulator and placed inside a steel " +"casing." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "neoprene patch" -msgid_plural "neoprene patches" +msgid "crude heating element" +msgid_plural "crude heating elements" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for neoprene patch +#. ~ Description for crude heating element #: lang/json/GENERIC_from_json.py msgid "" -"A moderately sized sheet of neoprene. Can be used to craft light and " -"stretchable clothing." +"A primitive heating element made from thin coiled steel wire. It will " +"degrade much quicker with use than normal heating elements, but it'll do for" +" some applications." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "light bulb" -msgid_plural "light bulbs" +msgid "bimetal thermostat" +msgid_plural "bimetal thermostats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for light bulb +#. ~ Description for bimetal thermostat #: lang/json/GENERIC_from_json.py -msgid "A rather outdated light bulb used in all sorts of light equipment." +msgid "" +"A simple thermostat controlled by thermal expansion of a bimetal strip." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "clay flower pot" -msgid_plural "clay flower pots" +msgid "household water heater" +msgid_plural "household water heaters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for clay flower pot +#. ~ Description for household water heater #: lang/json/GENERIC_from_json.py -msgid "A nice looking clay pot used for planting." +msgid "" +"A large metal tank with a water faucet attached to it, primarily used to " +"store and heat water." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "plastic flower pot" -msgid_plural "plastic flower pots" -msgstr[0] "пластиковий квітковий горщик" -msgstr[1] "пластикових квіткових горщика" -msgstr[2] "пластикових квіткових горщиків" -msgstr[3] "пластиковий квітковий горщик" +msgid "television" +msgid_plural "televisions" +msgstr[0] "телевізор" +msgstr[1] "телевізори" +msgstr[2] "телевізорів" +msgstr[3] "телевізор" -#. ~ Description for plastic flower pot +#. ~ Description for television #: lang/json/GENERIC_from_json.py -msgid "A cheap plastic pot used for planting." +msgid "A large LCD television, full of delicious electronics." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fluid preserved brain" -msgid_plural "fluid preserved brains" +msgid "household washing machine" +msgid_plural "household washing machines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fluid preserved brain +#. ~ Description for household washing machine #: lang/json/GENERIC_from_json.py msgid "" -"This 3L jar contains a human brain preserved in a formaldehyde solution." +"An appliance used to do laundry, not of much use without power and plumbing." +" You could probably scrap it for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "evaporator coil" -msgid_plural "evaporator coils" +msgid "pilot light" +msgid_plural "pilot lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for evaporator coil +#. ~ Description for pilot light #: lang/json/GENERIC_from_json.py -msgid "A set of long, snakelike tubes for evaporating refrigerant." -msgstr "" +msgid "" +"A pilot light from a gas-burning device, this particular one is a simple " +"piezoelectric igniter." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "condensor coil" -msgid_plural "condensor coils" +msgid "delayed fuze" +msgid_plural "delayed fuzes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for condensor coil +#. ~ Description for delayed fuze #: lang/json/GENERIC_from_json.py -msgid "A compressor and a fan work together to cool down the refrigerant." +msgid "" +"A complex mechanical fuze. It seems it can be used to detonate stable " +"explosives after a short time by triggering it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "refrigerant tank" -msgid_plural "refrigerant tanks" +msgid "impact fuze" +msgid_plural "impact fuzes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for refrigerant tank +#. ~ Description for impact fuze #: lang/json/GENERIC_from_json.py msgid "" -"A small tank containing some sort of refrigerant often used in devices such " -"as freezers. Hermetically sealed to prevent evaporation - cannot be opened " -"without prior connection to compatible valve." +"A complex mechanical fuze. It seems it can be used to detonate stable " +"explosives upon a solid impact." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "hard steel plate" -msgid_plural "hard steel plates" +msgid "toaster" +msgid_plural "toasters" +msgstr[0] "тостер" +msgstr[1] "тостера" +msgstr[2] "тостерів" +msgstr[3] "тостер" + +#. ~ Description for toaster +#: lang/json/GENERIC_from_json.py +msgid "A small two slice toaster, not much use as anything but spare parts." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "microwave" +msgid_plural "microwaves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hard steel plate +#. ~ Description for microwave #: lang/json/GENERIC_from_json.py msgid "" -"An armor plating made of a very thick steel, specifically engineered for use" -" in a bullet resistant vest." +"A home microwave, has probably seen its share of baked beans. Good for " +"scrap parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "steel plate" -msgid_plural "steel plates" +msgid "broken eyebot" +msgid_plural "broken eyebots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for steel plate +#. ~ Description for broken eyebot #: lang/json/GENERIC_from_json.py msgid "" -"A steel armor plate, specifically engineered for use in a bullet resistant " -"vest." +"A broken eyebot. Much less threatening now that it won't be calling for " +"backup. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "small lock and key" -msgid_plural "small locks and keys" +msgid "broken camspy" +msgid_plural "broken camspies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small lock and key +#. ~ Description for broken camspy #: lang/json/GENERIC_from_json.py -msgid "A small lock, with a set of keys still inserted." +msgid "" +"A broken camspy. It probably won't spy on anything ever again. Could be " +"gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "in progress craft" -msgid_plural "in progress crafts" +msgid "broken skitterbot" +msgid_plural "broken skitterbots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for in progress craft +#. ~ Description for broken skitterbot #: lang/json/GENERIC_from_json.py -msgid "This is an in progress craft." +msgid "" +"A broken skitterbot. Much less threatening now that it lies limp on solid " +"ground. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "in progress disassembly" -msgid_plural "in progress disassemblies" +msgid "broken lab defense bot" +msgid_plural "broken lab defense bots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for in progress disassembly +#. ~ Description for broken lab defense bot #: lang/json/GENERIC_from_json.py -msgid "This is an in progress disassembly." +msgid "" +"A broken lab defense bot, with its casing broken and fluid drained. Could " +"be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "spare tire carrier" -msgid_plural "spare tire carriers" +msgid "broken police bot" +msgid_plural "broken police bots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for spare tire carrier +#. ~ Description for broken police bot #: lang/json/GENERIC_from_json.py msgid "" -"A bumper mounted rig for attaching and storing a spare tire on the back of a" -" vehicle. Combine it with a wheel to get a mountable piece." +"A broken police bot. Much less threatening now that it's quiet and still. " +"Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "welding component kit" -msgid_plural "welding component kits" +msgid "broken nurse bot" +msgid_plural "broken nurse bots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for welding component kit +#. ~ Description for broken nurse bot #: lang/json/GENERIC_from_json.py msgid "" -"A set of components useful for constructing a full-featured welding station," -" complete with soldering capability." +"A broken nurse bot. Its smooth face staring vacantly into empty space. " +"Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "amplifier head" -msgid_plural "amplifier heads" +msgid "broken grocery bot" +msgid_plural "broken grocery bots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for amplifier head +#. ~ Description for broken grocery bot #: lang/json/GENERIC_from_json.py msgid "" -"An amplifier head. Typically paired with a speaker cabinet for amplifying " -"musical instruments. Basically only good for spare parts now." +"A broken grocery bot. Its smiling face staring vacantly into empty space. " +"Could be gutted for parts." msgstr "" +#. ~ Description for broken grocery bot #: lang/json/GENERIC_from_json.py -msgid "broken turret" -msgid_plural "broken turrets" +msgid "" +"The body of a busted grocery bot. Its tarnished face is still smiling. " +"Could be gutted for parts." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "broken riot control bot" +msgid_plural "broken riot control bots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken turret +#. ~ Description for broken riot control bot #: lang/json/GENERIC_from_json.py msgid "" -"A broken turret. Much less threatening now that it's laid limp on solid " -"ground. Could be gutted for parts." +"A broken riot control bot. Much less threatening now that it's out of gas." +" Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken riot control turret" -msgid_plural "broken riot control turrets" +msgid "broken prototype robot" +msgid_plural "broken prototype robots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken riot control turret +#. ~ Description for broken prototype robot #: lang/json/GENERIC_from_json.py msgid "" -"A broken riot control turret. Much less threatening now that it's laid limp" -" on solid ground. Could be gutted for parts." +"A broken prototype robot, well more broken than before. Could be gutted for" +" parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken M249 autonomous CROWS II" -msgid_plural "broken M249 autonomous CROWS II turrets" +msgid "broken miner bot" +msgid_plural "broken miner bots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for broken miner bot #: lang/json/GENERIC_from_json.py -msgid "broken M240 autonomous CROWS II" -msgid_plural "broken M240 autonomous CROWS II turrets" +msgid "" +"A broken miner bot. Much less threatening now that it's no longer capable " +"of drilling anything. Could be gutted for parts." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "broken recon mech" +msgid_plural "broken recon mechs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for broken recon mech +#. ~ Description for broken mech lifter +#. ~ Description for broken combat mech #: lang/json/GENERIC_from_json.py -msgid "broken M2 autonomous CROWS II" -msgid_plural "broken M2 autonomous CROWS II turrets" +msgid "This is a broken mech exoskeleton suit, it looks beyond repair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "broken mech lifter" +msgid_plural "broken mech lifters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "broken secubot" -msgid_plural "broken secubots" +msgid "broken combat mech" +msgid_plural "broken combat mechs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken secubot -#: lang/json/GENERIC_from_json.py -msgid "" -"A broken secubot, with its casing broken and fluid drained. Could be gutted" -" for parts." -msgstr "" - #: lang/json/GENERIC_from_json.py -msgid "broken M202A1 TALON" -msgid_plural "broken M202A1 TALONs" +msgid "broken riot dispatch" +msgid_plural "broken riot dispatches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken M202A1 TALON -#. ~ Description for broken launcher TALON UGV -#. ~ Description for broken rifle TALON UGV +#. ~ Description for broken riot dispatch #: lang/json/GENERIC_from_json.py msgid "" -"A broken TALON UGV, with its casing broken and fluid drained. Could be " -"gutted for parts." +"A broken riot dispatch, with its mesh midsection filled with fried manhacks " +"and its motor limp and still. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken laser turret" -msgid_plural "broken laser turrets" +msgid "broken military dispatch" +msgid_plural "broken military dispatches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for broken military dispatch #: lang/json/GENERIC_from_json.py -msgid "fire brick" -msgid_plural "fire bricks" +msgid "" +"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." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "broken manhack" +msgid_plural "broken manhacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fire brick +#. ~ Description for broken manhack #: lang/json/GENERIC_from_json.py -msgid "A reinforced brick designed to withstand intense heat." +msgid "" +"A broken manhack. Much less threatening now that it lies limp on solid " +"ground. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "plastic dice" -msgid_plural "plastic dice" +msgid "broken grenade hack" +msgid_plural "broken grenade hacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for broken grenade hack #: lang/json/GENERIC_from_json.py -msgid "A six-sided plastic dice." +msgid "" +"A broken grenade hack. Much less threatening now that it lies quiet on " +"solid ground. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "salt lick" -msgid_plural "salt licks" +msgid "broken mininuke hack" +msgid_plural "broken mininuke hacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for salt lick +#. ~ Description for broken mininuke hack #: lang/json/GENERIC_from_json.py msgid "" -"A heavy cube-shaped block of salt for livestock. Don't lick it, it's gross." +"A broken magenta hack. Just looking at the wreck makes you shiver. Could " +"be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "alder bark" -msgid_plural "alder bark" +msgid "broken tear gas hack" +msgid_plural "broken tear gas hacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for broken tear gas hack #: lang/json/GENERIC_from_json.py msgid "" -"A strip of bark pulled from an alder tree. Used in the production of " -"topical hemostatics." +"A broken tear gas hack. Much less threatening now that it lies quiet on " +"solid ground. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wallet" -msgid_plural "wallets" +msgid "broken EMP hack" +msgid_plural "broken EMP hacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wallet +#. ~ Description for broken EMP hack #: lang/json/GENERIC_from_json.py msgid "" -"A small, flat case used to carry items such as currency, identification " -"documents, and laminated cards." +"A broken EMP hack. Much less threatening now that it lies quiet on solid " +"ground. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "duct tape wallet" -msgid_plural "duct tape wallets" +msgid "broken flashbang hack" +msgid_plural "broken flashbang hacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for duct tape wallet +#. ~ Description for broken flashbang hack #: lang/json/GENERIC_from_json.py -msgid "This wallet is made entirely out of duct tape." +msgid "" +"A broken flashbang hack. Much less threatening now that it lies quiet on " +"solid ground. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "leather wallet" -msgid_plural "leather wallets" +msgid "broken C-4 hack" +msgid_plural "broken C-4 hacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for leather wallet +#. ~ Description for broken C-4 hack #: lang/json/GENERIC_from_json.py -msgid "This wallet is made from leather." +msgid "" +"A broken C-4 hack. Much less threatening now that it lies quiet on solid " +"ground. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "large wallet" -msgid_plural "large wallets" +msgid "broken loudspeaker" +msgid_plural "broken loudspeakers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large wallet +#. ~ Description for broken loudspeaker #: lang/json/GENERIC_from_json.py msgid "" -"A flat case used to carry items such as currency, identification documents, " -"laminated cards, and other small items." +"A broken loudspeaker. It's so unusually quiet now… Could be gutted for " +"parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "stylish wallet" -msgid_plural "stylish wallets" +msgid "processor board" +msgid_plural "processor boards" +msgstr[0] "материнська плата" +msgstr[1] "материнські плати" +msgstr[2] "материнських плат" +msgstr[3] "материнські плати" + +#. ~ Description for processor board +#: lang/json/GENERIC_from_json.py +msgid "A central processor unit, useful in advanced electronics crafting." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "RAM" +msgid_plural "RAMs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for stylish wallet +#. ~ Description for RAM #: lang/json/GENERIC_from_json.py -msgid "" -"A stylish flat case used to carry items such as currency, identification " -"documents, laminated cards, and other small items." +msgid "A stick of memory. Useful in advanced electronics crafting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken tazer hack" -msgid_plural "broken tazer hacks" +msgid "power converter" +msgid_plural "power converters" +msgstr[0] "трансформатор" +msgstr[1] "трансформатора" +msgstr[2] "трансформаторів" +msgstr[3] "трансформатор" + +#. ~ Description for power converter +#: lang/json/GENERIC_from_json.py +msgid "A power supply unit. Useful in lots of electronics recipes." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "amplifier circuit" +msgid_plural "amplifier circuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken tazer hack +#. ~ Description for amplifier circuit #: lang/json/GENERIC_from_json.py msgid "" -"A broken tazer hack, with its propellers still and tazer inert. Could be " -"gutted for parts." +"A circuit designed to amplify the strength of a signal. Useful in lots of " +"electronics recipes." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken green maintenance security drone" -msgid_plural "broken green maintenance security drones" +msgid "transponder circuit" +msgid_plural "transponder circuits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken green maintenance security drone -#. ~ Description for broken yellow maintenance security drone -#. ~ Description for broken blue maintenance security drone -#. ~ Description for broken green research security drone -#. ~ Description for broken black security drone +#. ~ Description for transponder circuit #: lang/json/GENERIC_from_json.py msgid "" -"A broken security drone, with its propellers still and camera inert. Could " -"be gutted for parts." +"A circuit designed to repeat a signal. Useful for crafting communications " +"equipment." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken yellow maintenance security drone" -msgid_plural "broken yellow maintenance security drones" +msgid "signal receiver" +msgid_plural "signal receivers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for signal receiver #: lang/json/GENERIC_from_json.py -msgid "broken blue maintenance security drone" -msgid_plural "broken blue maintenance security drones" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A module designed to receive many forms of signals. Useful for crafting " +"communications equipment." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken green research security drone" -msgid_plural "broken green research security drones" +msgid "large LCD screen" +msgid_plural "large LCD screens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for large LCD screen #: lang/json/GENERIC_from_json.py -msgid "broken black security drone" -msgid_plural "broken black security drones" +msgid "" +"A large backlit screen, used for displaying images. Useful in some " +"electronics recipes." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "small LCD screen" +msgid_plural "small LCD screens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "science ID card" -msgid_plural "science ID cards" -msgstr[0] "перепустка вченого" -msgstr[1] "перепустки вченого" -msgstr[2] "перепусток вченого" -msgstr[3] "перепустки вченого" - -#. ~ Description for science ID card +#. ~ Description for small LCD screen #: lang/json/GENERIC_from_json.py msgid "" -"This ID card once belonged to a scientist. The reverse side describes " -"protocol for using it; this could grant access at one control panel, if you " -"can find one." +"A small backlit screen, used for displaying images. Useful in some " +"electronics recipes." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "military ID card" -msgid_plural "military ID cards" -msgstr[0] "перепустка військового" -msgstr[1] "перепустки військового" -msgstr[2] "перепусток військового" -msgstr[3] "перепустки військового" +msgid "high-quality lens" +msgid_plural "high-quality lenses" +msgstr[0] "високоякісна лінза" +msgstr[1] "високоякісні лінзи" +msgstr[2] "високоякісних лінз" +msgstr[3] "високоякісні лінзи" -#. ~ Description for military ID card +#. ~ Description for high-quality lens #: lang/json/GENERIC_from_json.py msgid "" -"This ID card once belonged to a military officer. The reverse side " -"describes protocol for using it; this could grant access at one control " -"panel, if you can find one." +"A high-quality lens, useful for focusing or diffusing light. Might be " +"useful for starting a fire." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "industrial ID card" -msgid_plural "industrial ID cards" -msgstr[0] "перепустка промислового техніка" -msgstr[1] "перепустки промислового техніка" -msgstr[2] "перепусток промислового техніка" -msgstr[3] "перепустки промислового техніка" +msgid "small high-quality lens" +msgid_plural "small high-quality lenses" +msgstr[0] "мала високоякісна лінза" +msgstr[1] "малі високоякісні лінзи" +msgstr[2] "малих високоякісних лінз" +msgstr[3] "малі високоякісні лінзи" -#. ~ Description for industrial ID card +#. ~ Description for small high-quality lens #: lang/json/GENERIC_from_json.py msgid "" -"This ID card once belonged to a high level technician. The reverse side " -"describes protocol for using it; this could grant access at one control " -"panel, if you can find one." +"A small high-quality lens, useful for focusing or diffusing light. Might be" +" useful for crafting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "visitor's pass" -msgid_plural "visitor's passes" +msgid "pair of tinted glass" +msgid_plural "pairs of tinted glass" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action message for visitor's pass. -#. ~ Use action message for transport freight employee badge. +#. ~ Description for pair of tinted glass #: lang/json/GENERIC_from_json.py -msgid "You add the facilities to your map" +msgid "" +"A pair of small darkened glass, like the one that sunglasses are made of." msgstr "" -#. ~ Description for visitor's pass +#: lang/json/GENERIC_from_json.py +msgid "burnt out bionic" +msgid_plural "burnt out bionics" +msgstr[0] "перегоріла біоніка" +msgstr[1] "перегорілих біоніки" +msgstr[2] "перегорілих біонік" +msgstr[3] "перегоріла біоніка" + +#. ~ Description for burnt out bionic #: lang/json/GENERIC_from_json.py msgid "" -"This is a visitor's pass. The reverse side describes protocol for using it;" -" this could grant one-time access to a card reader, if you can find one." +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Maintenance: green zone badge" -msgid_plural "Maintenance: green zone badges" +msgid "nanofabricator template" +msgid_plural "nanofabricator templates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Maintenance: green zone badge +#. ~ Description for nanofabricator template #: lang/json/GENERIC_from_json.py msgid "" -"This is an employee badge for a maintence worker. The reverse side " -"describes protocol for using it; this could grant access to green zone card " -"readers." +"A state-of-the-art optical storage system. This small slate of transparent " +"glass holds, inscribed as a miniature pattern, the instructions required to " +"create an item through a nanofabricator." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Maintenance: yellow zone badge" -msgid_plural "Maintenance: yellow zone badges" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for Maintenance: yellow zone badge +#. ~ Description for nanofabricator template #: lang/json/GENERIC_from_json.py msgid "" -"This is an employee badge for a maintence worker. The reverse side " -"describes protocol for using it; this could grant access to yellow zone card" -" readers." +"A state-of-the-art optical storage system, containing the instruction set to" +" replicate itself." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Maintenance: blue zone badge" -msgid_plural "Maintenance: blue zone badges" +msgid "nanofabricator template (silicon photonics)" +msgid_plural "nanofabricator templates (silicon photonics)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Maintenance: blue zone badge +#. ~ Description for nanofabricator template (silicon photonics) #: lang/json/GENERIC_from_json.py msgid "" -"This is an employee badge for a maintence worker. The reverse side " -"describes protocol for using it; this could grant access to blue zone card " -"readers." +"A state-of-the-art optical storage system, containing the instruction set " +"required for the fabrication of complex silicon photonic circuitry. The " +"data within was once clearly worth millions, but now, you are not sure if " +"it's anything more than a fancy, high-tech paperweight." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "transport freight employee badge" -msgid_plural "transport freight employee badges" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "antenna" +msgid_plural "antennas" +msgstr[0] "антена" +msgstr[1] "антени" +msgstr[2] "антен" +msgstr[3] "антена" -#. ~ Description for transport freight employee badge +#. ~ Description for antenna #: lang/json/GENERIC_from_json.py -msgid "" -"This is an employee badge for a freight hauler. The reverse side describes " -"protocol for using it; this could grant one-time access to a transport " -"freight card reader." +msgid "A simple thin aluminum shaft. Useful in lots of electronics recipes." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Security: yellow zone badge" -msgid_plural "Security: yellow zone badges" +msgid "micro motor" +msgid_plural "micro motors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Security: yellow zone badge +#. ~ Description for micro motor #: lang/json/GENERIC_from_json.py msgid "" -"This is an employee badge for a security professional. The reverse side " -"describes protocol for using it; this could grant access to yellow zone card" -" readers." +"A very small electric motor like those used in RC cars. Useful in lots of " +"electronics recipes." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Security: magenta zone badge" -msgid_plural "Security: magenta zone badges" +msgid "circuit board" +msgid_plural "circuit boards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Security: magenta zone badge +#. ~ Description for circuit board #: lang/json/GENERIC_from_json.py msgid "" -"This is an employee badge for a security professional. The reverse side " -"describes protocol for using it; this could grant access to magenta zone " -"card readers." +"A printed card that supports and electrically connects electronic components" +" on a non-conductive substrate." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Security: black zone badge" -msgid_plural "Security: black zone badges" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "electronic scrap" +msgid_plural "electronic scraps" +msgstr[0] "кучка радіодеталей" +msgstr[1] "кучки радіодеталей" +msgstr[2] "кучок радіодеталей" +msgstr[3] "кучки радіодеталей" -#. ~ Description for Security: black zone badge +#. ~ Description for electronic scrap #: lang/json/GENERIC_from_json.py msgid "" -"This is an employee badge for a security professional. The reverse side " -"describes protocol for using it; this could grant access to black zone card " -"readers." +"A random collection of resistors, capacitors, and diodes which have been " +"stripped from printed circuits." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Researcher: green zone badge" -msgid_plural "Researcher: green zone badges" +msgid "radio repeater mod" +msgid_plural "radio repeater mods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Researcher: green zone badge +#. ~ Description for radio repeater mod #: lang/json/GENERIC_from_json.py msgid "" -"This is an employee badge for a research scientist. The reverse side " -"describes protocol for using it; this could grant access to green zone card " -"readers." +"A system designed to convert a radio station into an autonomous repeater." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Researcher: pink zone badge" -msgid_plural "Researcher: pink zone badges" +msgid "desk fan" +msgid_plural "desk fans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Researcher: pink zone badge +#. ~ Description for desk fan #: lang/json/GENERIC_from_json.py -msgid "" -"This is an employee badge for a research scientist. The reverse side " -"describes protocol for using it; this could grant access to pink zone card " -"readers." +msgid "A small fan, used to propel air around a room." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Researcher: cyan zone badge" -msgid_plural "Researcher: cyan zone badges" +msgid "ceramic armor plate" +msgid_plural "ceramic armor plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Researcher: cyan zone badge +#. ~ Description for ceramic armor plate #: lang/json/GENERIC_from_json.py msgid "" -"This is an employee badge for a research scientist. The reverse side " -"describes protocol for using it; this could grant access to cyan zone card " -"readers." +"A ceramic armor plate, specifically engineered for use in a bullet resistant" +" vest." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Doctor: red zone badge" -msgid_plural "Doctor: red zone badges" +msgid "fishbowl" +msgid_plural "fishbowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Doctor: red zone badge +#. ~ Description for fishbowl #: lang/json/GENERIC_from_json.py msgid "" -"This is an employee badge for a medical doctor. The reverse side describes " -"protocol for using it; this could grant access to red zone card readers." +"A filled fishbowl, the tag says 'to Ed' and the fish's name, 'Hoss'. The " +"fish appears to have tiny antlers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "snail sample" -msgid_plural "snail samples" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "pipe cleaner" +msgid_plural "pipe cleaners" +msgstr[0] "шомпол" +msgstr[1] "шомпола" +msgstr[2] "шомполів" +msgstr[3] "шомполи" -#. ~ Description for snail sample +#. ~ Description for pipe cleaner #: lang/json/GENERIC_from_json.py msgid "" -"A sample of things that make up key parts of being a snail. You will " -"probably need to find a very large snail." +"This is a tool designed to clean interior surface of pipes, bottles, and " +"similar objects. This one is thin enough to be used for cleaning firearm " +"barrels from dirt and fouling." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "rabbit sample" -msgid_plural "rabbit samples" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "clock" +msgid_plural "clocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rabbit sample +#. ~ Description for clock #: lang/json/GENERIC_from_json.py -msgid "A tiny paw that came off of a rabbit. Please, no luck jokes." +msgid "A small mechanical clock, it's stopped at 10:10." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "frog sample" -msgid_plural "frog samples" +msgid "clockworks" +msgid_plural "clockworks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for frog sample +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py -msgid "" -"A sample of things that make up key parts of being a frog. You will " -"probably need to find a very large frog." +msgid "A small assortment of gears and other clockwork gubbins." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "flyer" -msgid_plural "flyers" -msgstr[0] "рекламна листівка" -msgstr[1] "рекламні листівки" -msgstr[2] "рекламних листівок" -msgstr[3] "рекламна листівка" +msgid "SD-Memory card" +msgid_plural "SD-Memory cards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for flyer +#. ~ Description for SD-Memory card #: lang/json/GENERIC_from_json.py -msgid "A scrap of paper." +msgid "A memory card, used. Might be worth a look." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "valentine card" -msgid_plural "valentine cards" +msgid "SD-Memory card (clean)" +msgid_plural "SD-Memory cards (clean)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for valentine card +#. ~ Description for SD-Memory card (clean) #: lang/json/GENERIC_from_json.py msgid "" -"A creased holiday card. It appears to be a Valentine's Day card from before" -" the Cataclysm." +"This memory card is either unused or has been wiped clean. You could use it" +" to store your data, though!" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "survivor's note" -msgid_plural "survivor's notes" +msgid "SD-Memory card (encrypted)" +msgid_plural "SD-Memory cards (encrypted)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for survivor's note -#. ~ Description for note -#. ~ Description for survivor's note +#. ~ Description for SD-Memory card (encrypted) #: lang/json/GENERIC_from_json.py msgid "" -"A scrap of paper. Something's written on it, scrawled in bad handwriting." +"This memory card appears to have the firmware encryption set. Hopefully it " +"contains something worth encrypting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "child's drawing" -msgid_plural "child's drawings" +msgid "Science SD-Memory card" +msgid_plural "Science SD-Memory cards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for child's drawing +#. ~ Description for Science SD-Memory card #: lang/json/GENERIC_from_json.py -msgid "A scrap of paper with a faded drawing on it." +msgid "" +"This memory card appears to be related to 'XEDRA', and is certainly " +"encrypted. Looks *Interesting*, though…" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "character sheet" -msgid_plural "character sheets" +msgid "hand mirror" +msgid_plural "hand mirrors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for character sheet +#. ~ Description for hand mirror #: lang/json/GENERIC_from_json.py -msgid "A Dungeons & Dragons character sheet." +msgid "A small hand mirror." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "score card" -msgid_plural "score cards" +#: lang/json/GENERIC_from_json.py lang/json/terrain_from_json.py +msgid "manhole cover" +msgid_plural "manhole covers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for score card +#. ~ Description for manhole cover #: lang/json/GENERIC_from_json.py -msgid "A colorfully printed score card." +msgid "" +"A heavy iron disc that typically covers a ladder into the sewers. Lifting " +"it from the manhole is impossible without a crowbar." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "newspaper page" -msgid_plural "newspaper pages" -msgstr[0] "сторінка газети" -msgstr[1] "сторінку газети" -msgstr[2] "сторінки газет" -msgstr[3] "сторінки газет" +msgid "pine bough" +msgid_plural "pine boughs" +msgstr[0] "соснова гілка" +msgstr[1] "соснові гілки" +msgstr[2] "соснових гілок" +msgstr[3] "соснова гілка" -#. ~ Description for newspaper page +#. ~ Description for pine bough #: lang/json/GENERIC_from_json.py msgid "" -"A single sheet of newspaper broadsheet. It is possibly one of the last " -"issues printed before New England was overwhelmed. Most of the information " -"on there is terribly trivial, or out of date, but one thing catches your eye" -" briefly." +"A branch from a pine tree, oozing sticky sap and bristling with prickly " +"needles." msgstr "" -"Окрема сторінка широкоформатної газети. Можливо, це один із останніх " -"надрукованих випусків перед занапащенням Нової Англії. Більша частина " -"інформації там до жаху банальна чи застаріла, але одна річ одразу бросається" -" у вічі." -#. ~ Description for newspaper page #: lang/json/GENERIC_from_json.py -msgid "" -"A single sheet of newspaper broadsheet. It seems to date from several years" -" ago, and you've NO idea how it lasted this long. Most of the information " -"on there is terribly trivial, or out of date, but one thing catches your eye" -" briefly." -msgstr "" -"Окрема сторінка широкоформатної газети. Схоже, йому вже багато років, і ви " -"не маєте ЖОДНОЇ уяви як він зберігся так довго. Більша частина інформації " -"там до жаху банальна чи застаріла, але одна річ одразу бросається у вічі." +msgid "pinecone" +msgid_plural "pinecones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for newspaper page +#. ~ Description for pinecone #: lang/json/GENERIC_from_json.py msgid "" -"A single sheet of newspaper broadsheet. It seems to date from a few years " -"ago--amazing it has lasted this long. Most of the information on there is " -"terribly trivial, or out of date, but one thing catches your eye briefly." +"A spiny pod from a pine tree. Dry seeds rattle around inside when you shake" +" it." msgstr "" -"Окрема сторінка широкоформатної газети. Схоже, йому вже декілька років - " -"дивно що він досі зберігся. Більша частина інформації там до жаху банальна " -"чи застаріла, але одна річ одразу бросається у вічі." -#. ~ Description for newspaper page +#: lang/json/GENERIC_from_json.py +msgid "poppy bud" +msgid_plural "poppy buds" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for poppy bud #: lang/json/GENERIC_from_json.py msgid "" -"A single sheet of newspaper broadsheet. It was printed more than a year " -"ago. Most of the information on there is terribly trivial, or out of date, " -"but one thing catches your eye briefly." +"A poppy bud. Contains some substances commonly produced by a mutated poppy " +"flower." msgstr "" -"Окрема сторінка широкоформатної газети. Надрукована більш ніж рік тому. " -"Більша частина інформації там до жаху банальна чи застаріла, але одна річ " -"одразу бросається у вічі." -#. ~ Description for newspaper page +#. ~ Description for sunflower #: lang/json/GENERIC_from_json.py msgid "" -"A single sheet of newspaper broadsheet. It was printed in the months " -"leading up to the Cataclysm. Most of the information on there is terribly " -"trivial, or out of date, but one thing catches your eye briefly." +"The top of a sunflower, with yellow pedals and some seeds that have yet to " +"be eaten by animals." msgstr "" -"Окрема сторінка широкоформатної газети. Надрукована за декілька місяців до " -"Катаклізму. Більша частина інформації там до жаху банальна чи застаріла, але" -" одна річ одразу бросається у вічі." -#. ~ Description for newspaper page +#: lang/json/GENERIC_from_json.py +msgid "chamomile flowers" +msgid_plural "chamomile flowers" +msgstr[0] "квітка ромашки" +msgstr[1] "квіти ромашки" +msgstr[2] "квіти ромашки" +msgstr[3] "квіти ромашки" + +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" -"A single sheet of newspaper broadsheet. It was printed in the weeks leading" -" up to the Cataclysm. Most of the information on there is terribly trivial," -" or out of date, but one thing catches your eye briefly." +"White chamomile flowers, used as a herbal remedy since the ancient times." msgstr "" -"Окрема сторінка широкоформатної газети. Надрукована за лічені тижні перед " -"Катаклізмом. Більша частина інформації там до жаху банальна чи застаріла, " -"але одна річ одразу бросається у вічі." #: lang/json/GENERIC_from_json.py -msgid "vault leaflet" -msgid_plural "vault leaflets" +msgid "lotus flower" +msgid_plural "lotus flowers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vault leaflet -#: lang/json/GENERIC_from_json.py +#. ~ Description for lotus flower +#. ~ Description for lotus +#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py msgid "" -"A folded glossy handout that appears to be an introduction to living in a " -"massive underground complex." +"A lovely flower that grows on the surface of bodies of freshwater. " +"Traditionally connected with many Eastern cultures." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "note" -msgid_plural "notes" +msgid "spurge flowers" +msgid_plural "spurge flowers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "FEMA evacuation pamphlet" -msgid_plural "FEMA evacuation pamphlets" -msgstr[0] "посібник МНС з евакуації" -msgstr[1] "посібника МНС з евакуації" -msgstr[2] "посібників МНС з евакуації" -msgstr[3] "посібники МНС з евакуації" - -#. ~ Description for FEMA evacuation pamphlet +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" -"Welcome to your Emergency Survival Shelter. We hope your stay here will be short and comfortable. Provided are an emergency blanket, high visibility jacket, gas mask, and food and water rations for one day, as well as an emergency lighter and flashlight. There are further supplies in the communal cabinets should the facility be over its intended capacity. These resources are checked and updated by FEMA on a regular basis, but if you find some items missing, please contact a FEMA supervisor at your earliest convenience.\n" -"\n" -"Please wait in the shelter until an official evacuation transport arrives to take you to your homes or, in the event of a major disaster, to the nearest evacuation gathering point.\n" -"\n" -"In the event that you have been evacuated under violent circumstances, FEMA recommends taking cover in the shelter's basement until help arrives. Remember: if you leave the shelter, we cannot find you to take you to safety." +"A handful of yellow-green flowers. Can be brewed into a tea that prevents " +"asthma attacks." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE" -msgid_plural "MREs" -msgstr[0] "сухпайок" -msgstr[1] "сухпайка" -msgstr[2] "сухпайків" -msgstr[3] "сухпайки" +msgid "lump of clay" +msgid_plural "lumps of clay" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE +#. ~ Description for lump of clay #: lang/json/GENERIC_from_json.py -msgid "A generic MRE box, you shouldn't see this." +msgid "A fresh piece of clay. Useful for some crafting recipes." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE small box" -msgid_plural "MRE small boxes" -msgstr[0] "маленька коробка сухпайка" -msgstr[1] "маленькі коробки сухпайка" -msgstr[2] "маленьких коробкок сухпайка" -msgstr[3] "маленькі коробки сухпайків" +msgid "brick" +msgid_plural "bricks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE small box +#. ~ Description for brick #: lang/json/GENERIC_from_json.py -msgid "A generic small MRE box, you shouldn't see this" +msgid "A fire hardened building block used in masonry construction." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Accessory Pack" -msgid_plural "MREs - Accessory Packs" -msgstr[0] "набір аксесуарів сухпайка" -msgstr[1] "набори аксесуарів сухпайка" -msgstr[2] "наборів аксесуарів сухпайка" -msgstr[3] "набори аксесуарів сухпайка" +msgid "mortar" +msgid_plural "mortar" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE - Accessory Pack +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py -msgid "" -"An MRE accessory pack containing a variety of utensils and drinks. Activate" -" or disassemble it to get to its contents." +msgid "Some mortar, ready to be used in building projects." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Dessert Pack" -msgid_plural "MREs - Dessert Packs" -msgstr[0] "десертний набір сухпайка" -msgstr[1] "десертні набори сухпайка" -msgstr[2] "десертних наборів сухпайка" -msgstr[3] "десертні набори сухпайка" +msgid "soft adobe brick" +msgid_plural "soft adobe bricks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE - Dessert Pack +#. ~ Use action msg for soft adobe brick. #: lang/json/GENERIC_from_json.py -msgid "" -"A sealed plastic bag containing an array of desserts. Activate or " -"disassemble it to get to its contents." +msgid "You test the brick, and it seems solid enough to use." msgstr "" +#. ~ Use action not_ready_msg for soft adobe brick. #: lang/json/GENERIC_from_json.py -msgid "MRE - Chili & Beans" -msgid_plural "MREs - Chili & Beans" -msgstr[0] "сухпайок \"Чилі з квасолею\"" -msgstr[1] "сухпайка \"Чилі з квасолею\"" -msgstr[2] "сухпайків \"Чилі з квасолею\"" -msgstr[3] "сухпайки \"Чилі з квасолею\"" +msgid "The brick is still too damp to bear weight." +msgstr "" -#. ~ Description for MRE - Chili & Beans +#. ~ Description for soft adobe brick #: lang/json/GENERIC_from_json.py msgid "" -"A 'Meal Ready to Eat' with a chili & beans entree and everything a " -"vegetarian soldier needs. The contents will begin to rot once they're " -"removed from this sealed bag. Activate or disassemble it to get to its " -"contents." +"A compacted mass of soil and natural fibers, still too wet to build with. " +"Load it onto a pallet and leave it to dry." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - BBQ Beef" -msgid_plural "MREs - BBQ Beef" -msgstr[0] "сухпайок \"Барбекю з яловичини\"" -msgstr[1] "сухпайка \"Барбекю з яловичини\"" -msgstr[2] "сухпайків \"Барбекю з яловичини\"" -msgstr[3] "сухпайки \"Барбекю з яловичини\"" +msgid "adobe brick" +msgid_plural "adobe bricks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE - BBQ Beef +#. ~ Description for adobe brick #: lang/json/GENERIC_from_json.py msgid "" -"A 'Meal Ready to Eat' with a BBQ beef entree and everything a hungry soldier" -" needs. The contents will begin to rot once they're removed from this " -"sealed bag. Activate or disassemble it to get to its contents." +"A compacted mass of soil and natural fibers, baked dry enough to harden into" +" a brick." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Chicken & Noodles" -msgid_plural "MREs - Chicken & Noodles" -msgstr[0] "сухпайок \"Курка з локшиною\"" -msgstr[1] "сухпайка \"Курка з локшиною\"" -msgstr[2] "сухпайків \"Курка з локшиною\"" -msgstr[3] "сухпайки \"Курка з локшиною\"" +msgid "adobe mortar" +msgid_plural "adobe mortar" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE - Chicken & Noodles +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" -"A 'Meal Ready to Eat' with a chicken & noodles entree and everything a " -"hungry soldier needs. The contents will begin to rot once they're removed " -"from this sealed bag. Activate or disassemble it to get to its contents." +"A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " +"to glue larger, heavier pieces of mud and clay together." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Spaghetti" -msgid_plural "MREs - Spaghetti" -msgstr[0] "сухпайок \"Спагеті\"" -msgstr[1] "сухпайка \"Спагеті\"" -msgstr[2] "сухпайків \"Спагеті\"" -msgstr[3] "сухпайки \"Спагеті\"" +msgid "tanbark" +msgid_plural "tanbark" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE - Spaghetti +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a spaghetti entree and everything a hungry " -"soldier needs. The contents will begin to rot once they're removed from " -"this sealed bag. Activate or disassemble it to get to its contents." +msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Chicken Chunks" -msgid_plural "MREs - Chicken Chunks" -msgstr[0] "сухпайок \"Курятина\"" -msgstr[1] "сухпайка \"Курятина\"" -msgstr[2] "сухпайків \"Курятина\"" -msgstr[3] "сухпайки \"Курятина\"" +msgid "birchbark" +msgid_plural "birchbarks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE - Chicken Chunks +#. ~ Description for birchbark #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a chicken chunk entree and everything a hungry " -"soldier needs. The contents will begin to rot once they're removed from " -"this sealed bag. Activate or disassemble it to get to its contents." +msgid "A sheet of tough, water-resistant bark taken from a birch tree." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Beef Taco" -msgid_plural "MREs - Beef Taco" -msgstr[0] "сухпайок \"Яловиче тако\"" -msgstr[1] "сухпайка \"Яловиче тако\"" -msgstr[2] "сухпайків \"Яловиче тако\"" -msgstr[3] "сухпайки \"Яловиче тако\"" +msgid "willowbark" +msgid_plural "willowbark" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE - Beef Taco +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" -"A 'Meal Ready to Eat' with a beef taco entree and everything a hungry " -"soldier needs. The contents will begin to rot once they're removed from " -"this sealed bag. Activate or disassemble it to get to its contents." +"A sheet of bark taken from a willow tree. Used in the production of " +"aspirin." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Beef Brisket" -msgid_plural "MREs - Beef Brisket" -msgstr[0] "сухпайок \"Яловича грудина\"" -msgstr[1] "сухпайка \"Яловича грудина\"" -msgstr[2] "сухпайків \"Яловича грудина\"" -msgstr[3] "сухпайки \"Яловича грудина\"" +msgid "diamond" +msgid_plural "diamonds" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE - Beef Brisket +#. ~ Description for diamond #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a beef brisket entree and everything a hungry " -"soldier needs. The contents will begin to rot once they're removed from " -"this sealed bag. Activate or disassemble it to get to its contents." +msgid "A sparkling diamond." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Meatballs & Marinara" -msgid_plural "MREs - Meatballs & Marinara" -msgstr[0] "сухпайок \"Фрикадельки у соусі\"" -msgstr[1] "сухпайка \"Фрикадельки у соусі\"" -msgstr[2] "сухпайків \"Фрикадельки у соусі\"" -msgstr[3] "сухпайки \"Фрикадельки у соусі\"" +msgid "garnet" +msgid_plural "garnets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE - Meatballs & Marinara +#. ~ Description for garnet #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a meatball entree and everything a hungry soldier" -" needs. The contents will begin to rot once they're removed from this " -"sealed bag. Activate or disassemble it to get to its contents." +msgid "A sparkling garnet." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Beef Stew" -msgid_plural "MREs - Beef Stew" -msgstr[0] "сухпайок \"Рагу з яловичини\"" -msgstr[1] "сухпайка \"Рагу з яловичини\"" -msgstr[2] "сухпайків \"Рагу з яловичини\"" -msgstr[3] "сухпайки \"Рагу з яловичини\"" +msgid "amethyst" +msgid_plural "amethysts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE - Beef Stew +#. ~ Description for amethyst #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a beef stew entree and everything a hungry " -"soldier needs. The contents will begin to rot once they're removed from " -"this sealed bag. Activate or disassemble it to get to its contents." +msgid "A sparkling amethyst." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Chili & Macaroni" -msgid_plural "MREs - Chili & Macaroni" -msgstr[0] "сухпайок \"Макарони з чилі\"" -msgstr[1] "сухпайка \"Макарони з чилі\"" -msgstr[2] "сухпайків \"Макарони з чилі\"" -msgstr[3] "сухпайки \"Макарони з чилі\"" +msgid "aquamarine" +msgid_plural "aquamarines" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for MRE - Chili & Macaroni +#. ~ Description for aquamarine #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a chili & macaroni entree and everything a hungry" -" soldier needs. The contents will begin to rot once they're removed from " -"this sealed bag. Activate or disassemble it to get to its contents." +msgid "A sparkling aquamarine." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Vegetarian Taco" -msgid_plural "MREs - Vegetarian Taco" -msgstr[0] "сухпайок \"Вегетаріанське тако\"" -msgstr[1] "сухпайка \"Вегетаріанське тако\"" -msgstr[2] "сухпайків \"Вегетаріанське тако\"" -msgstr[3] "сухпайки \"Вегетаріанське тако\"" +msgid "emerald" +msgid_plural "emeralds" +msgstr[0] "смарагд" +msgstr[1] "смарагди" +msgstr[2] "смарагдів" +msgstr[3] "смарагд" -#. ~ Description for MRE - Vegetarian Taco +#. ~ Description for emerald #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a vegetarian taco entree and everything a hungry " -"soldier needs. The contents will begin to rot once they're removed from " -"this sealed bag. Activate or disassemble it to get to its contents." -msgstr "" +msgid "A sparkling emerald." +msgstr "Смарагд, що виблискує." #: lang/json/GENERIC_from_json.py -msgid "MRE - Macaroni Marinara" -msgid_plural "MREs - Macaroni Marinara" +msgid "alexandrite" +msgid_plural "alexandrites" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Macaroni Marinara +#. ~ Description for alexandrite #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a macaroni marinara entree and everything a " -"hungry soldier needs. The contents will begin to rot once they're removed " -"from this sealed bag. Activate or disassemble it to get to its contents." +msgid "A sparkling alexandrite." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Spinach Fettuccine" -msgid_plural "MREs - Spinach Fettuccine" +msgid "pearl" +msgid_plural "pearls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Spinach Fettuccine +#. ~ Description for pearl #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a creamy spinach fettuccine entree and everything" -" a vegetarian soldier needs. The contents will begin to rot once they're " -"removed from this sealed bag. Activate or disassemble it to get to its " -"contents." +msgid "A lustrous pearl." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Ratatouille" -msgid_plural "MREs - Ratatouille" +msgid "ruby" +msgid_plural "rubies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Ratatouille +#. ~ Description for ruby #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a ratatouille entree and everything a vegetarian " -"soldier needs. The contents will begin to rot once they're removed from " -"this sealed bag. Activate or disassemble it to get to its contents." +msgid "A sparkling ruby." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Cheese Tortellini" -msgid_plural "MREs - Cheese Tortellini" +msgid "peridot" +msgid_plural "peridots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Cheese Tortellini +#. ~ Description for peridot #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a cheese tortellini entree and everything a " -"hungry soldier needs. The contents will begin to rot once they're removed " -"from this sealed bag. Activate or disassemble it to get to its contents." +msgid "A sparkling peridot." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Mushroom Fettuccine" -msgid_plural "MREs - Mushroom Fettuccine" +msgid "sapphire" +msgid_plural "sapphires" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Mushroom Fettuccine +#. ~ Description for sapphire #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a mushroom fettuccine entree and everything a " -"hungry soldier needs. The contents will begin to rot once they're removed " -"from this sealed bag. Activate or disassemble it to get to its contents." +msgid "A sparkling sapphire." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Mexican Chicken Stew" -msgid_plural "MREs - Mexican Chicken Stew" +msgid "opal" +msgid_plural "opals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Mexican Chicken Stew +#. ~ Description for opal #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a Mexican chicken stew entree and everything a " -"hungry soldier needs. The contents will begin to rot once they're removed " -"from this sealed bag. Activate or disassemble it to get to its contents." +msgid "A lustrous opal." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Chicken Burrito Bowl" -msgid_plural "MREs - Chicken Burrito Bowl" +msgid "tourmaline" +msgid_plural "tourmalines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Chicken Burrito Bowl +#. ~ Description for tourmaline #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a chicken burrito bowl entree and everything a " -"hungry soldier needs. The contents will begin to rot once they're removed " -"from this sealed bag. Activate or disassemble it to get to its contents." +msgid "A sparkling tourmaline." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Maple Sausage" -msgid_plural "MREs - Maple Sausage" +msgid "citrine" +msgid_plural "citrines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Maple Sausage +#. ~ Description for citrine #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a maple sausage entree and everything a hungry " -"soldier needs. The contents will begin to rot once they're removed from " -"this sealed bag. Activate or disassemble it to get to its contents." +msgid "A sparkling citrine." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Ravioli" -msgid_plural "MREs - Ravioli" +msgid "topaz" +msgid_plural "topazes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Ravioli +#. ~ Description for topaz #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a ravioli entree and everything a hungry soldier " -"needs. The contents will begin to rot once they're removed from this sealed" -" bag. Activate or disassemble it to get to its contents." +msgid "A sparkling blue topaz." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Pepper Jack Beef" -msgid_plural "MREs - Pepper Jack Beef" +msgid "cured hide" +msgid_plural "cured hides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Pepper Jack Beef +#. ~ Description for cured hide #: lang/json/GENERIC_from_json.py msgid "" -"A 'Meal Ready to Eat' with a pepper jack beef entree and everything a hungry" -" soldier needs. The contents will begin to rot once they're removed from " -"this sealed bag. Activate or disassemble it to get to its contents." +"A rolled up animal hide which has been scraped of extraneous hair and flesh " +"and treated to prevent decay. It still requires tanning to become usable " +"leather." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Hash Browns & Bacon" -msgid_plural "MREs - Hash Browns & Bacon" +msgid "tanned hide" +msgid_plural "tanned hides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Hash Browns & Bacon +#. ~ Description for tanned hide #: lang/json/GENERIC_from_json.py msgid "" -"A 'Meal Ready to Eat' with a hash browns & bacon entree and everything a " -"hungry soldier needs. The contents will begin to rot once they're removed " -"from this sealed bag. Activate or disassemble it to get to its contents." +"A folded sheet of leather made from carefully tanned animal hide. Can be " +"cut up or used as is." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Lemon Pepper Tuna" -msgid_plural "MREs - Lemon Pepper Tuna" +msgid "cured pelt" +msgid_plural "cured pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Lemon Pepper Tuna +#. ~ Description for cured pelt #: lang/json/GENERIC_from_json.py msgid "" -"A 'Meal Ready to Eat' with a lemon pepper tuna entree and everything a " -"hungry soldier needs. The contents will begin to rot once they're removed " -"from this sealed bag. Activate or disassemble it to get to its contents." +"A rolled up animal hide which has been scraped of extraneous hair and flesh " +"and treated to prevent decay. It still requires tanning to become usable " +"fur." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Asian Beef & Vegetables" -msgid_plural "MREs - Asian Beef & Vegetables" +msgid "tanned pelt" +msgid_plural "tanned pelts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Asian Beef & Vegetables +#. ~ Description for tanned pelt #: lang/json/GENERIC_from_json.py msgid "" -"A 'Meal Ready to Eat' with an Asian beef & vegetables entree and everything " -"a hungry soldier needs. The contents will begin to rot once they're removed" -" from this sealed bag. Activate or disassemble it to get to its contents." +"A folded sheet of leather made from carefully tanned animal hide, with the " +"fur still intact. Can be cut up or used as is." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Chicken Pesto & Pasta" -msgid_plural "MREs - Chicken Pesto & Pasta" +msgid "pile of straw" +msgid_plural "piles of straw" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Chicken Pesto & Pasta +#. ~ Description for pile of straw #: lang/json/GENERIC_from_json.py msgid "" -"A 'Meal Ready to Eat' with a chicken pesto entree and everything a hungry " -"soldier needs. The contents will begin to rot once they're removed from " -"this sealed bag. Activate or disassemble it to get to its contents." +"A pile of dry grass. Can be used to craft a straw bed if there is nothing " +"else to sleep on." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Southwest Beef & Beans" -msgid_plural "MREs - Southwest Beef & Beans" +msgid "straw doll" +msgid_plural "straw dolls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Southwest Beef & Beans +#. ~ Description for straw doll #: lang/json/GENERIC_from_json.py -msgid "" -"A 'Meal Ready to Eat' with a southwest beef & beans entree and everything a " -"hungry soldier needs. The contents will begin to rot once they're removed " -"from this sealed bag. Activate or disassemble it to get to its contents." +msgid "Old straw doll. Represents a woman in a dress." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MRE - Frankfurters & Beans" -msgid_plural "MREs - Frankfurters & Beans" +msgid "pillow" +msgid_plural "pillows" +msgstr[0] "подушка" +msgstr[1] "подушки" +msgstr[2] "подушок" +msgstr[3] "подушка" + +#. ~ Description for pillow +#: lang/json/GENERIC_from_json.py +msgid "A pillow to rest your head on when sleeping." +msgstr "Подушка, на яку можна покласти голову під час сну." + +#: lang/json/GENERIC_from_json.py +msgid "makeshift pillow" +msgid_plural "makeshift pillows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MRE - Frankfurters & Beans +#. ~ Description for makeshift pillow #: lang/json/GENERIC_from_json.py msgid "" -"A vintage MRE, still perfectly preserved and edible. The contents will " -"begin to rot once they're removed from this sealed bag. Activate or " -"disassemble it to get to its contents." +"A pillowcase with straw and other dead plants as filling. It's better than " +"nothing…" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "set of spidery legs" -msgid_plural "sets of spidery legs" +msgid "body pillow" +msgid_plural "body pillows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for set of spidery legs +#. ~ Description for body pillow #: lang/json/GENERIC_from_json.py -msgid "A set of big pointy legs, like the ones found under a tripod." +msgid "" +"A big, body-sized pillow with a print of an anime character on the front and" +" their scantily clad version on the back." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "stone pot" -msgid_plural "stone pots" +msgid "makeshift body pillow" +msgid_plural "makeshift body pillows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for stone pot +#. ~ Description for makeshift body pillow #: lang/json/GENERIC_from_json.py -msgid "A large stone, roughly hollowed out into a pot." +msgid "" +"A big, body-sized pillow. Someone drew a vaguely humanoid figure on it. " +"Its heartwarming smile fills you with joy." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "module template" -msgid_plural "module templates" +msgid "down-filled pillow" +msgid_plural "down-filled pillows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for module template +#. ~ Description for down-filled pillow #: lang/json/GENERIC_from_json.py -msgid "This is a template for robot module. If found in a game it is a bug." +msgid "A fluffy pillow to rest your head on when sleeping." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "targeting module" -msgid_plural "targeting modules" +msgid "teddy bear" +msgid_plural "teddy bears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for targeting module +#. ~ Description for teddy bear #: lang/json/GENERIC_from_json.py msgid "" -"This module integrates visual and proprioceptive information from peripheric" -" sensors and outputs information necessary for accurate aiming." +"An old and half rotten teddy bear. Looks like this one commemorates the " +"grave of the child who once owned it." msgstr "" +#. ~ Description for teddy bear #: lang/json/GENERIC_from_json.py -msgid "identification module" -msgid_plural "identification modules" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A mass-produced plush teddy bear. It is wearing a little red tshirt but no " +"pants." +msgstr "" -#. ~ Description for identification module +#. ~ Use action menu_text for cigar. +#. ~ Use action menu_text for cigarette. +#. ~ Use action menu_text for joint. +#. ~ Use action menu_text for spooky plastic jack o'lantern. +#. ~ Use action menu_text for lit jack o' lantern. +#. ~ Use action menu_text for refillable lighter. +#. ~ Use action menu_text for ember carrier (lit). +#. ~ Use action menu_text for candle. +#. ~ Use action menu_text for torch. +#. ~ Use action menu_text for Louisville Slaughterer. +#. ~ Use action menu_text for everburning torch. +#: lang/json/GENERIC_from_json.py lang/json/GENERIC_from_json.py +#: lang/json/TOOL_from_json.py lang/json/TOOL_from_json.py +msgid "Extinguish" +msgstr "" + +#. ~ Use action msg for cigar. #: lang/json/GENERIC_from_json.py -msgid "" -"This module continuously runs image recognition algorithms to identify " -"friends from foe." +msgid "You extinguish the cigar." msgstr "" +#. ~ Description for cigar #: lang/json/GENERIC_from_json.py -msgid "pathfinding module" -msgid_plural "pathfinding modules" +msgid "The smoke billowing from this cigar has a sweet, musty odor." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar butt" +msgid_plural "cigar butts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pathfinding module +#. ~ Description for cigar butt +#: lang/json/GENERIC_from_json.py +msgid "A true gentleman always finishes his cigars." +msgstr "" + +#. ~ Use action msg for cigarette. +#: lang/json/GENERIC_from_json.py +msgid "You extinguish the cigarette." +msgstr "" + +#. ~ Description for cigarette #: lang/json/GENERIC_from_json.py msgid "" -"This module uses a combination of vector integration and egocentric mapping " -"to find the best path available." +"Smoke swirls from the lit end of this cigarette, filling the air with the " +"thrilling smell of burning chemicals." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "memory banks module" -msgid_plural "memory banks modules" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "cigarette butt" +msgid_plural "cigarette butts" +msgstr[0] "недопалок" +msgstr[1] "недопалки" +msgstr[2] "недопалків" +msgstr[3] "недопалок" -#. ~ Description for memory banks module +#. ~ Description for cigarette butt #: lang/json/GENERIC_from_json.py -msgid "Allows for storage and recovery of information." +msgid "" +"What was once a wonderfully addictive tube of dried tobacco leaf is now just a smelly piece of trash. What a tragedy!\n" +"The leftover tobacco in a few of these could probably be used to roll another cigarette. If you're willing to go that far…" msgstr "" +#. ~ Use action msg for joint. #: lang/json/GENERIC_from_json.py -msgid "sensor array" -msgid_plural "sensor arrays" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "You extinguish the joint." +msgstr "" -#. ~ Description for sensor array +#. ~ Description for joint #: lang/json/GENERIC_from_json.py msgid "" -"A wide range of sensors meant to give the ability to perceive the " -"surrounding world." +"The smell of skunk permeates the air as a thin trail of smoke floats off of " +"this joint." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "self monitoring sensors" -msgid_plural "self monitoring sensors" +msgid "joint roach" +msgid_plural "joint roaches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for joint roach #: lang/json/GENERIC_from_json.py msgid "" -"An array of sensors and diagnostic modules allowing the robot to perceive " -"itself." +"The smoked-down butt of a joint, a reminder of some good times. Pretty much trash now. Bummer, man.\n" +"A few of these could probably be used to roll another joint." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "AI core" -msgid_plural "AI cores" +msgid "cannabis plant" +msgid_plural "cannabis plants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for AI core +#. ~ Description for cannabis plant #: lang/json/GENERIC_from_json.py msgid "" -"This module is responsible for decision-making, it basically runs the AI of " -"the robot." +"A psychoactive plant indigenous to Central Asia and the Indian subcontinent " +"traditionally cultivated for its fiber, oil, for medicinal purposes, and for" +" use as a recreational drug. It requires further processing to be useful." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "basic AI core" -msgid_plural "basic AI cores" +msgid "raw tobacco" +msgid_plural "raw tobacco" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for basic AI core +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py -msgid "A very basic AI core with minimal cognitive abilities." +msgid "" +"Various parts of tobacco plant, full of nicotine. They need to be dried to " +"become smokable." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "advanced AI core" -msgid_plural "advanced AI cores" +msgid "drone memory bank" +msgid_plural "drone memory banks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for advanced AI core +#. ~ Description for drone memory bank #: lang/json/GENERIC_from_json.py -msgid "An advanced AI core with impressive cognitive abilities." +msgid "" +"Allows for storage and recovery of information. Found in meteorologist " +"drone." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "gun operating system" -msgid_plural "gun operating systems" +msgid "neoprene patch" +msgid_plural "neoprene patches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for gun operating system +#. ~ Description for neoprene patch #: lang/json/GENERIC_from_json.py -msgid "This system can operate most conventional weapons." +msgid "" +"A moderately sized sheet of neoprene. Can be used to craft light and " +"stretchable clothing." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "set of tiny spidery legs" -msgid_plural "sets of tiny spidery legs" +msgid "light bulb" +msgid_plural "light bulbs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for set of tiny spidery legs +#. ~ Description for light bulb #: lang/json/GENERIC_from_json.py -msgid "A set of tiny pointy legs, like the ones found under a skitterbot." +msgid "A rather outdated light bulb used in all sorts of light equipment." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "set of reverse-jointed legs" -msgid_plural "sets of reverse-jointed legs" +msgid "clay flower pot" +msgid_plural "clay flower pots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for set of reverse-jointed legs +#. ~ Description for clay flower pot #: lang/json/GENERIC_from_json.py -msgid "" -"A set of reverse-jointed legs, like the ones found under a chicken walker." +msgid "A nice looking clay pot used for planting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "set of omni wheels" -msgid_plural "sets of omni wheels" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "plastic flower pot" +msgid_plural "plastic flower pots" +msgstr[0] "пластиковий квітковий горщик" +msgstr[1] "пластикових квіткових горщика" +msgstr[2] "пластикових квіткових горщиків" +msgstr[3] "пластиковий квітковий горщик" -#. ~ Description for set of omni wheels +#. ~ Description for plastic flower pot #: lang/json/GENERIC_from_json.py -msgid "A set of omni wheels, like the ones found under a police bot." +msgid "A cheap plastic pot used for planting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "set of rotors" -msgid_plural "sets of rotors" +msgid "fluid preserved brain" +msgid_plural "fluid preserved brains" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for set of rotors +#. ~ Description for fluid preserved brain #: lang/json/GENERIC_from_json.py -msgid "A set of rotors able to lift a small drone." +msgid "" +"This 3L jar contains a human brain preserved in a formaldehyde solution." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "set of android legs" -msgid_plural "sets of android legs" +msgid "evaporator coil" +msgid_plural "evaporator coils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for set of android legs +#. ~ Description for evaporator coil #: lang/json/GENERIC_from_json.py -msgid "A set of human-like legs." +msgid "A set of long, snakelike tubes for evaporating refrigerant." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "set of android arms" -msgid_plural "sets of android arms" +msgid "condensor coil" +msgid_plural "condensor coils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for set of android arms +#. ~ Description for condensor coil #: lang/json/GENERIC_from_json.py -msgid "A set of human-like arms." +msgid "A compressor and a fan work together to cool down the refrigerant." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "set of small tank tread" -msgid_plural "sets of small tank tread" +msgid "refrigerant tank" +msgid_plural "refrigerant tanks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for set of small tank tread +#. ~ Description for refrigerant tank #: lang/json/GENERIC_from_json.py -msgid "A set of small tank tread, like the one used by the \"Beagle\" mini-tank." +msgid "" +"A small tank containing some sort of refrigerant often used in devices such " +"as freezers. Hermetically sealed to prevent evaporation - cannot be opened " +"without prior connection to compatible valve." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "turret interior chassis" -msgid_plural "turret interior chassis" +msgid "hard steel plate" +msgid_plural "hard steel plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for hard steel plate #: lang/json/GENERIC_from_json.py msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton of a turret." +"An armor plating made of a very thick steel, specifically engineered for use" +" in a bullet resistant vest." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "police bot chassis" -msgid_plural "police bot chassis" +msgid "steel plate" +msgid_plural "steel plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for steel plate #: lang/json/GENERIC_from_json.py msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the police bot." +"A steel armor plate, specifically engineered for use in a bullet resistant " +"vest." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "android skeleton" -msgid_plural "android skeletons" +msgid "small lock and key" +msgid_plural "small locks and keys" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for android skeleton +#. ~ Description for small lock and key #: lang/json/GENERIC_from_json.py -msgid "What's left when you strip an android body from its components." +msgid "A small lock, with a set of keys still inserted." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "abstract autodoc installation data" -msgid_plural "abstract autodoc installation datas" +msgid "in progress craft" +msgid_plural "in progress crafts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for in progress craft +#: lang/json/GENERIC_from_json.py +msgid "This is an in progress craft." +msgstr "" + #: lang/json/GENERIC_from_json.py -msgid "Alarm System CBM installation data" -msgid_plural "Alarm System CBM installation data" +msgid "in progress disassembly" +msgid_plural "in progress disassemblies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for in progress disassembly #: lang/json/GENERIC_from_json.py -msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Alarm System CBM, stored on a data card of proprietary form-factor, " -"designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +msgid "This is an in progress disassembly." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "LED Tattoo CBM installation data" -msgid_plural "LED Tattoo CBM installation data" +msgid "spare tire carrier" +msgid_plural "spare tire carriers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for spare tire carrier #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of LED Tattoo CBM, stored on a data card of proprietary form-factor, " -"designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"A bumper mounted rig for attaching and storing a spare tire on the back of a" +" vehicle. Combine it with a wheel to get a mountable piece." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Power Armor Interface CBM installation data" -msgid_plural "Power Armor Interface CBM installation data" +msgid "welding component kit" +msgid_plural "welding component kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for welding component kit #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Power Armor Interface CBM, stored on a data card of proprietary form-" -"factor, designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"A set of components useful for constructing a full-featured welding station," +" complete with soldering capability." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Power Storage CBM installation data" -msgid_plural "Power Storage CBM installation data" +msgid "amplifier head" +msgid_plural "amplifier heads" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for amplifier head #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Power Storage CBM, stored on a data card of proprietary form-factor, " -"designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"An amplifier head. Typically paired with a speaker cabinet for amplifying " +"musical instruments. Basically only good for spare parts now." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Power Storage CBM Mk. II installation data" -msgid_plural "Power Storage CBM Mk. II installation data" +msgid "broken turret" +msgid_plural "broken turrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for broken turret #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Power Storage CBM Mk. II, stored on a data card of proprietary form-" -"factor, designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"A broken turret. Much less threatening now that it's laid limp on solid " +"ground. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Internal Chronometer CBM installation data" -msgid_plural "Internal Chronometer CBM installation data" +msgid "broken riot control turret" +msgid_plural "broken riot control turrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for broken riot control turret #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Internal Chronometer CBM, stored on a data card of proprietary form-" -"factor, designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"A broken riot control turret. Much less threatening now that it's laid limp" +" on solid ground. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Intravenous Needletip CBM installation data" -msgid_plural "Intravenous Needletip CBM installation data" +msgid "broken M249 autonomous CROWS II" +msgid_plural "broken M249 autonomous CROWS II turrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} #: lang/json/GENERIC_from_json.py -msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Intravenous Needletip CBM, stored on a data card of proprietary form-" -"factor, designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "Blood Analysis CBM installation data" -msgid_plural "Blood Analysis CBM installation data" +msgid "broken M240 autonomous CROWS II" +msgid_plural "broken M240 autonomous CROWS II turrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} #: lang/json/GENERIC_from_json.py -msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Blood Analysis CBM, stored on a data card of proprietary form-factor, " -"designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." -msgstr "" +msgid "broken M2 autonomous CROWS II" +msgid_plural "broken M2 autonomous CROWS II turrets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "Cranial Flashlight CBM installation data" -msgid_plural "Cranial Flashlight CBM installation data" +msgid "broken secubot" +msgid_plural "broken secubots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for broken secubot #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Cranial Flashlight CBM, stored on a data card of proprietary form-factor," -" designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"A broken secubot, with its casing broken and fluid drained. Could be gutted" +" for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Electromagnetic Unit CBM installation data" -msgid_plural "Electromagnetic Unit CBM installation data" +msgid "broken M202A1 TALON" +msgid_plural "broken M202A1 TALONs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for broken M202A1 TALON +#. ~ Description for broken launcher TALON UGV +#. ~ Description for broken rifle TALON UGV #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Electromagnetic Unit CBM, stored on a data card of proprietary form-" -"factor, designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"A broken TALON UGV, with its casing broken and fluid drained. Could be " +"gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Soporific Induction CBM installation data" -msgid_plural "Soporific Induction CBM installation data" +msgid "broken laser turret" +msgid_plural "broken laser turrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} -#: lang/json/GENERIC_from_json.py -msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Soporific Induction CBM, stored on a data card of proprietary form-" -"factor, designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." -msgstr "" - #: lang/json/GENERIC_from_json.py -msgid "Arms Alloy Plating CBM installation data" -msgid_plural "Arms Alloy Plating CBM installation data" +msgid "fire brick" +msgid_plural "fire bricks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for fire brick #: lang/json/GENERIC_from_json.py -msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Arms Alloy Plating CBM, stored on a data card of proprietary form-factor," -" designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +msgid "A reinforced brick designed to withstand intense heat." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Legs Alloy Plating CBM installation data" -msgid_plural "Legs Alloy Plating CBM installation data" +msgid "plastic dice" +msgid_plural "plastic dice" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py -msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Legs Alloy Plating CBM, stored on a data card of proprietary form-factor," -" designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +msgid "A six-sided plastic dice." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Shotgun Arm CBM installation data" -msgid_plural "Shotgun Arm CBM installation data" +msgid "salt lick" +msgid_plural "salt licks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for salt lick #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Shotgun Arm CBM, stored on a data card of proprietary form-factor, " -"designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"A heavy cube-shaped block of salt for livestock. Don't lick it, it's gross." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Blood Filter CBM installation data" -msgid_plural "Blood Filter CBM installation data" +msgid "alder bark" +msgid_plural "alder bark" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Blood Filter CBM, stored on a data card of proprietary form-factor, " -"designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"A strip of bark pulled from an alder tree. Used in the production of " +"topical hemostatics." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Internal Climate Control CBM installation data" -msgid_plural "Internal Climate Control CBM installation data" +msgid "wallet" +msgid_plural "wallets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for wallet #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Internal Climate Control CBM, stored on a data card of proprietary form-" -"factor, designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"A small, flat case used to carry items such as currency, identification " +"documents, and laminated cards." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Integrated Dosimeter CBM installation data" -msgid_plural "Integrated Dosimeter CBM installation data" +msgid "duct tape wallet" +msgid_plural "duct tape wallets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for duct tape wallet #: lang/json/GENERIC_from_json.py -msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Integrated Dosimeter CBM, stored on a data card of proprietary form-" -"factor, designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +msgid "This wallet is made entirely out of duct tape." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Thermal Dissipation CBM installation data" -msgid_plural "Thermal Dissipation CBM installation data" +msgid "leather wallet" +msgid_plural "leather wallets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for leather wallet #: lang/json/GENERIC_from_json.py -msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Thermal Dissipation CBM, stored on a data card of proprietary form-" -"factor, designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +msgid "This wallet is made from leather." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Weather Reader CBM installation data" -msgid_plural "Weather Reader CBM installation data" +msgid "large wallet" +msgid_plural "large wallets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for large wallet #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Weather Reader CBM, stored on a data card of proprietary form-factor, " -"designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"A flat case used to carry items such as currency, identification documents, " +"laminated cards, and other small items." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Railgun CBM installation data" -msgid_plural "Railgun CBM installation data" +msgid "stylish wallet" +msgid_plural "stylish wallets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for stylish wallet #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Railgun CBM, stored on a data card of proprietary form-factor, designed " -"to be used extensively by an Autodoc, and allowing bionic installation with " -"minimal failure chance. Integrated security subroutine renders it unusable " -"after installation." +"A stylish flat case used to carry items such as currency, identification " +"documents, laminated cards, and other small items." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Unified Power System CBM installation data" -msgid_plural "Unified Power System CBM installation data" +msgid "broken tazer hack" +msgid_plural "broken tazer hacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for broken tazer hack #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Unified Power System CBM, stored on a data card of proprietary form-" -"factor, designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"A broken tazer hack, with its propellers still and tazer inert. Could be " +"gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Titanium Skeletal Bracing CBM installation data" -msgid_plural "Titanium Skeletal Bracing CBM installation data" +msgid "broken green maintenance security drone" +msgid_plural "broken green maintenance security drones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for broken green maintenance security drone +#. ~ Description for broken yellow maintenance security drone +#. ~ Description for broken blue maintenance security drone +#. ~ Description for broken green research security drone +#. ~ Description for broken black security drone #: lang/json/GENERIC_from_json.py msgid "" -"Precise step-by-step instructions and other required data for installation " -"of Titanium Skeletal Bracing CBM, stored on a data card of proprietary form-" -"factor, designed to be used extensively by an Autodoc, and allowing bionic " -"installation with minimal failure chance. Integrated security subroutine " -"renders it unusable after installation." +"A broken security drone, with its propellers still and camera inert. Could " +"be gutted for parts." msgstr "" -#: lang/json/GENERIC_from_json.py src/cata_tiles.cpp src/options.cpp -msgid "software" -msgid_plural "software" +#: lang/json/GENERIC_from_json.py +msgid "broken yellow maintenance security drone" +msgid_plural "broken yellow maintenance security drones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "misc software" -msgid_plural "misc software" +msgid "broken blue maintenance security drone" +msgid_plural "broken blue maintenance security drones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'misc software'} #: lang/json/GENERIC_from_json.py -msgid "A miscellaneous piece of hobby software. Probably useless." -msgstr "" +msgid "broken green research security drone" +msgid_plural "broken green research security drones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "hackPRO" -msgid_plural "hackPRO" +msgid "broken black security drone" +msgid_plural "broken black security drones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hackPRO'} #: lang/json/GENERIC_from_json.py -msgid "A piece of hacking software." +msgid "science ID card" +msgid_plural "science ID cards" +msgstr[0] "перепустка вченого" +msgstr[1] "перепустки вченого" +msgstr[2] "перепусток вченого" +msgstr[3] "перепустки вченого" + +#. ~ Description for science ID card +#: lang/json/GENERIC_from_json.py +msgid "" +"This ID card once belonged to a scientist. The reverse side describes " +"protocol for using it; this could grant access at one control panel, if you " +"can find one." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MediSoft" -msgid_plural "MediSoft" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "military ID card" +msgid_plural "military ID cards" +msgstr[0] "перепустка військового" +msgstr[1] "перепустки військового" +msgstr[2] "перепусток військового" +msgstr[3] "перепустки військового" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for military ID card #: lang/json/GENERIC_from_json.py -msgid "A piece of medical software." +msgid "" +"This ID card once belonged to a military officer. The reverse side " +"describes protocol for using it; this could grant access at one control " +"panel, if you can find one." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "MatheMAX" -msgid_plural "MatheMAX" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "industrial ID card" +msgid_plural "industrial ID cards" +msgstr[0] "перепустка промислового техніка" +msgstr[1] "перепустки промислового техніка" +msgstr[2] "перепусток промислового техніка" +msgstr[3] "перепустки промислового техніка" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for industrial ID card #: lang/json/GENERIC_from_json.py -msgid "A piece of mathematical software." +msgid "" +"This ID card once belonged to a high level technician. The reverse side " +"describes protocol for using it; this could grant access at one control " +"panel, if you can find one." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "infection data" -msgid_plural "infection data" +msgid "visitor's pass" +msgid_plural "visitor's passes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Use action message for visitor's pass. +#. ~ Use action message for transport freight employee badge. #: lang/json/GENERIC_from_json.py -msgid "Medical data on zombie blood." +msgid "You add the facilities to your map" msgstr "" +#. ~ Description for visitor's pass #: lang/json/GENERIC_from_json.py -msgid "lab data" -msgid_plural "lab data" +msgid "" +"This is a visitor's pass. The reverse side describes protocol for using it;" +" this could grant one-time access to a card reader, if you can find one." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "Maintenance: green zone badge" +msgid_plural "Maintenance: green zone badges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for Maintenance: green zone badge #: lang/json/GENERIC_from_json.py -msgid "Research archives from a government laboratory." +msgid "" +"This is an employee badge for a maintence worker. The reverse side " +"describes protocol for using it; this could grant access to green zone card " +"readers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "train data" -msgid_plural "train data" +msgid "Maintenance: yellow zone badge" +msgid_plural "Maintenance: yellow zone badges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for Maintenance: yellow zone badge #: lang/json/GENERIC_from_json.py -msgid "Logistical data on subterranean train routes and schedules." +msgid "" +"This is an employee badge for a maintence worker. The reverse side " +"describes protocol for using it; this could grant access to yellow zone card" +" readers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "neural data" -msgid_plural "neural data" +msgid "Maintenance: blue zone badge" +msgid_plural "Maintenance: blue zone badges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for Maintenance: blue zone badge #: lang/json/GENERIC_from_json.py msgid "" -"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" -"\n" -"Whatever the case, the idea of perpetually keeping a part of you within a metallic pill makes you feel uncomfortable." +"This is an employee badge for a maintence worker. The reverse side " +"describes protocol for using it; this could grant access to blue zone card " +"readers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "integrated circuit datasheet archives" -msgid_plural "misc software" +msgid "transport freight employee badge" +msgid_plural "transport freight employee badges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for integrated circuit datasheet archives +#. ~ Description for transport freight employee badge #: lang/json/GENERIC_from_json.py msgid "" -"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." +"This is an employee badge for a freight hauler. The reverse side describes " +"protocol for using it; this could grant one-time access to a transport " +"freight card reader." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "abstract map" -msgid_plural "abstract maps" +msgid "Security: yellow zone badge" +msgid_plural "Security: yellow zone badges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for Security: yellow zone badge #: lang/json/GENERIC_from_json.py -msgid "handwritten note" -msgid_plural "handwritten notes" +msgid "" +"This is an employee badge for a security professional. The reverse side " +"describes protocol for using it; this could grant access to yellow zone card" +" readers." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "Security: magenta zone badge" +msgid_plural "Security: magenta zone badges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action message for handwritten note. -#: lang/json/GENERIC_from_json.py -msgid "You add the hidden stations to your map" -msgstr "" - -#. ~ Description for handwritten note +#. ~ Description for Security: magenta zone badge #: lang/json/GENERIC_from_json.py msgid "" -"A small, meticulously folded piece of paper, filled with tiny handwriting " -"and some surprisingly precise diagrams of subway tunnels, access codes, " -"ventilation shafts, and…guard shifts? You have the feeling they weren't " -"supposed to write any of this stuff down." +"This is an employee badge for a security professional. The reverse side " +"describes protocol for using it; this could grant access to magenta zone " +"card readers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "military operations map" -msgid_plural "military operations maps" +msgid "Security: black zone badge" +msgid_plural "Security: black zone badges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action message for military operations map. -#: lang/json/GENERIC_from_json.py -msgid "You add roads and facilities to your map." -msgstr "" - -#. ~ Description for military operations map +#. ~ Description for Security: black zone badge #: lang/json/GENERIC_from_json.py msgid "" -"This is a printed topographical map of the local area. Originally of " -"military origin, it details the locations of evacuation centers and military" -" facilities. Using it will add points of interest to your map." +"This is an employee badge for a security professional. The reverse side " +"describes protocol for using it; this could grant access to black zone card " +"readers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "survivor's map" -msgid_plural "survivor's maps" +msgid "Researcher: green zone badge" +msgid_plural "Researcher: green zone badges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action message for survivor's map. -#: lang/json/GENERIC_from_json.py -msgid "You add roads and possible supply points to your map." -msgstr "" - -#. ~ Description for survivor's map +#. ~ Description for Researcher: green zone badge #: lang/json/GENERIC_from_json.py msgid "" -"This is a hand-drawn map of the local area. Whoever created it has marked " -"down the locations of nearby supply sources including gun stores and gas " -"stations. Using it will add points of interest to your map." +"This is an employee badge for a research scientist. The reverse side " +"describes protocol for using it; this could grant access to green zone card " +"readers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "road map" -msgid_plural "road maps" +msgid "Researcher: pink zone badge" +msgid_plural "Researcher: pink zone badges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action message for road map. -#: lang/json/GENERIC_from_json.py -msgid "You add roads and points of interest to your map." -msgstr "" - -#. ~ Description for road map +#. ~ Description for Researcher: pink zone badge #: lang/json/GENERIC_from_json.py msgid "" -"This is a road map for the local area. Listing information on civic sites " -"like hospitals and police stations, it can be used to add points of interest" -" to your map." +"This is an employee badge for a research scientist. The reverse side " +"describes protocol for using it; this could grant access to pink zone card " +"readers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "subway maintenance map" -msgid_plural "subway maintenance maps" +msgid "Researcher: cyan zone badge" +msgid_plural "Researcher: cyan zone badges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action message for subway maintenance map. -#: lang/json/GENERIC_from_json.py -msgid "You add subway lines and underground stations to your map." -msgstr "" - -#. ~ Description for subway maintenance map +#. ~ Description for Researcher: cyan zone badge #: lang/json/GENERIC_from_json.py msgid "" -"This is a map of subway tunnels formerly used by public maintenance workers." -" Using it will add subway lines and underground stations to your map." +"This is an employee badge for a research scientist. The reverse side " +"describes protocol for using it; this could grant access to cyan zone card " +"readers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "trail guide" -msgid_plural "trail guides" +msgid "Doctor: red zone badge" +msgid_plural "Doctor: red zone badges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action message for trail guide. -#: lang/json/GENERIC_from_json.py -msgid "You add trails and trailheads to your map." -msgstr "" - -#. ~ Description for trail guide +#. ~ Description for Doctor: red zone badge #: lang/json/GENERIC_from_json.py msgid "" -"This is a printed guide to the best local trails. It has general details " -"about the trails, trailhead amenities, suggestions for the best thru-hikes, " -"and advice on interacting with local wildlife in a responsible and " -"respectful manner." +"This is an employee badge for a medical doctor. The reverse side describes " +"protocol for using it; this could grant access to red zone card readers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "tourist guide" -msgid_plural "tourist guides" +msgid "snail sample" +msgid_plural "snail samples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action message for tourist guide. -#: lang/json/GENERIC_from_json.py -msgid "You add roads and tourist attractions to your map." -msgstr "" - -#. ~ Description for tourist guide +#. ~ Description for snail sample #: lang/json/GENERIC_from_json.py msgid "" -"This is glossy printed pamphlet for tourists that details local hotels and " -"attractions." +"A sample of things that make up key parts of being a snail. You will " +"probably need to find a very large snail." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "restaurant guide" -msgid_plural "restaurant guides" +msgid "rabbit sample" +msgid_plural "rabbit samples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action message for restaurant guide. -#: lang/json/GENERIC_from_json.py -msgid "You add roads and restaurants to your map." -msgstr "" - -#. ~ Description for restaurant guide +#. ~ Description for rabbit sample #: lang/json/GENERIC_from_json.py -msgid "" -"This is glossy printed pamphlet that details dining establishments in the " -"local area. Printed by the Chamber of Commerce, it lists the addresses of " -"all the best diners and bars. Using it will add points of interest to your " -"map." +msgid "A tiny paw that came off of a rabbit. Please, no luck jokes." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "satellite map" -msgid_plural "satellite maps" +msgid "frog sample" +msgid_plural "frog samples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action message for satellite map. -#: lang/json/GENERIC_from_json.py -msgid "You add terrain and roads to your map." -msgstr "" - -#. ~ Description for satellite map +#. ~ Description for frog sample #: lang/json/GENERIC_from_json.py msgid "" -"This is a printed satellite map of the local area. Due to it's low quality " -"and lack of map legend, you are unable to recognise most buildings. Using " -"it will add terrain and roads to your map." +"A sample of things that make up key parts of being a frog. You will " +"probably need to find a very large frog." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "juvenile sourdough starter" -msgid_plural "juvenile sourdough starters" +msgid "insect sample" +msgid_plural "insect samples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for juvenile sourdough starter. +#. ~ Description for insect sample #: lang/json/GENERIC_from_json.py msgid "" -"After feeding it and caring for it for a week, your sourdough starter is " -"finally ready for the big leagues." +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." msgstr "" -#. ~ Use action not_ready_msg for juvenile sourdough starter. #: lang/json/GENERIC_from_json.py -msgid "" -"You've been caring for your starter for a while, but it's going to need " -"longer before you can do anything tasty with it." -msgstr "" +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for juvenile sourdough starter +#. ~ Description for bovine sample #: lang/json/GENERIC_from_json.py msgid "" -"This jar contains a floury paste that is slowly going bad. Someday it will " -"be sourdough." +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "freshly fed sourdough starter" -msgid_plural "freshly fed sourdough starters" +msgid "molerat sample" +msgid_plural "molerat samples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for freshly fed sourdough starter. +#. ~ Description for molerat sample #: lang/json/GENERIC_from_json.py -msgid "The starter is now stinky and bubbly, and looks ready for cooking." +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." msgstr "" -#. ~ Use action not_ready_msg for freshly fed sourdough starter. #: lang/json/GENERIC_from_json.py -msgid "The starter isn't quite ready to go." -msgstr "" +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for freshly fed sourdough starter +#. ~ Description for spider sample #: lang/json/GENERIC_from_json.py msgid "" -"This jar contains a floury paste with sourdough starter mixed in. It needs " -"a day to recover its strength before it can be used again." +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sourdough starter" -msgid_plural "sourdough starters" +msgid "reptile sample" +msgid_plural "reptile samples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sourdough starter +#. ~ Description for reptile sample #: lang/json/GENERIC_from_json.py msgid "" -"This jar contains a precious mix of flour, water, molds and bacteria from " -"the air. When you add flour and water to it, after a few hours it froths " -"and rises." +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "human bone" -msgid_plural "human bones" +msgid "lupine sample" +msgid_plural "lupine samples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for human bone +#. ~ Description for lupine sample #: lang/json/GENERIC_from_json.py msgid "" -"A bone from a human being. Could be used to make some stuff, if you're " -"feeling sufficiently ghoulish." +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "demihuman bone" -msgid_plural "demihuman bones" +msgid "feline sample" +msgid_plural "feline samples" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for demihuman bone +#. ~ Description for feline sample #: lang/json/GENERIC_from_json.py msgid "" -"A bone from a demihuman being. Could be used to make some stuff, if you're " -"feeling sufficiently ghoulish." +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "corpse" -msgid_plural "corpses" -msgstr[0] "труп" -msgstr[1] "трупи" -msgstr[2] "трупів" -msgstr[3] "труп" +msgid "flyer" +msgid_plural "flyers" +msgstr[0] "рекламна листівка" +msgstr[1] "рекламні листівки" +msgstr[2] "рекламних листівок" +msgstr[3] "рекламна листівка" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Description for flyer #: lang/json/GENERIC_from_json.py -msgid "carcass" -msgid_plural "carcasses" +msgid "A scrap of paper." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "valentine card" +msgid_plural "valentine cards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Description for valentine card +#: lang/json/GENERIC_from_json.py +msgid "" +"A creased holiday card. It appears to be a Valentine's Day card from before" +" the Cataclysm." +msgstr "" + #: lang/json/GENERIC_from_json.py -#, python-format -msgid "skinned %s" -msgid_plural "skinned %s" +msgid "survivor's note" +msgid_plural "survivor's notes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Description for survivor's note +#. ~ Description for note +#. ~ Description for survivor's note #: lang/json/GENERIC_from_json.py -msgid "carcass quarter" -msgid_plural "carcass quarters" +msgid "" +"A scrap of paper. Something's written on it, scrawled in bad handwriting." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "child's drawing" +msgid_plural "child's drawings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for corpse +#. ~ Description for child's drawing #: lang/json/GENERIC_from_json.py -msgid "A dead body." +msgid "A scrap of paper with a faded drawing on it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "desiccated corpse" -msgid_plural "desiccated corpses" +msgid "character sheet" +msgid_plural "character sheets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for desiccated corpse +#. ~ Description for character sheet #: lang/json/GENERIC_from_json.py -msgid "" -"A dead body, badly mangled and desiccated. It seems whatever killed him did" -" so with a gigantic claw." +msgid "A Dungeons & Dragons character sheet." msgstr "" -#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "A dead human body." -msgstr "" +msgid "score card" +msgid_plural "score cards" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for corpse +#. ~ Description for score card #: lang/json/GENERIC_from_json.py -msgid "A dead body of a middle-aged man." +msgid "A colorfully printed score card." msgstr "" -#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "A dead body of a young woman." -msgstr "" +msgid "newspaper page" +msgid_plural "newspaper pages" +msgstr[0] "сторінка газети" +msgstr[1] "сторінку газети" +msgstr[2] "сторінки газет" +msgstr[3] "сторінки газет" -#. ~ Description for corpse +#. ~ Description for newspaper page #: lang/json/GENERIC_from_json.py -msgid "A dead body of a little boy." +msgid "" +"A single sheet of newspaper broadsheet. It is possibly one of the last " +"issues printed before New England was overwhelmed. Most of the information " +"on there is terribly trivial, or out of date, but one thing catches your eye" +" briefly." msgstr "" +"Окрема сторінка широкоформатної газети. Можливо, це один із останніх " +"надрукованих випусків перед занапащенням Нової Англії. Більша частина " +"інформації там до жаху банальна чи застаріла, але одна річ одразу бросається" +" у вічі." -#. ~ Description for corpse +#. ~ Description for newspaper page #: lang/json/GENERIC_from_json.py -msgid "A dead body of a little girl." +msgid "" +"A single sheet of newspaper broadsheet. It seems to date from several years" +" ago, and you've NO idea how it lasted this long. Most of the information " +"on there is terribly trivial, or out of date, but one thing catches your eye" +" briefly." msgstr "" +"Окрема сторінка широкоформатної газети. Схоже, йому вже багато років, і ви " +"не маєте ЖОДНОЇ уяви як він зберігся так довго. Більша частина інформації " +"там до жаху банальна чи застаріла, але одна річ одразу бросається у вічі." -#. ~ Description for corpse +#. ~ Description for newspaper page #: lang/json/GENERIC_from_json.py msgid "" -"The dead body of a small child. Their corpse bears a calm facial " -"expression, as if they died instantly." +"A single sheet of newspaper broadsheet. It seems to date from a few years " +"ago--amazing it has lasted this long. Most of the information on there is " +"terribly trivial, or out of date, but one thing catches your eye briefly." msgstr "" +"Окрема сторінка широкоформатної газети. Схоже, йому вже декілька років - " +"дивно що він досі зберігся. Більша частина інформації там до жаху банальна " +"чи застаріла, але одна річ одразу бросається у вічі." -#. ~ Description for corpse +#. ~ Description for newspaper page #: lang/json/GENERIC_from_json.py msgid "" -"The dead body of a child, riddled by bullets to the extent that you can no " -"longer tell their gender." +"A single sheet of newspaper broadsheet. It was printed more than a year " +"ago. Most of the information on there is terribly trivial, or out of date, " +"but one thing catches your eye briefly." msgstr "" +"Окрема сторінка широкоформатної газети. Надрукована більш ніж рік тому. " +"Більша частина інформації там до жаху банальна чи застаріла, але одна річ " +"одразу бросається у вічі." +#. ~ Description for newspaper page #: lang/json/GENERIC_from_json.py msgid "" -"The corpse of an infant. A single small-caliber bullet has been put through" -" its skull." +"A single sheet of newspaper broadsheet. It was printed in the months " +"leading up to the Cataclysm. Most of the information on there is terribly " +"trivial, or out of date, but one thing catches your eye briefly." msgstr "" +"Окрема сторінка широкоформатної газети. Надрукована за декілька місяців до " +"Катаклізму. Більша частина інформації там до жаху банальна чи застаріла, але" +" одна річ одразу бросається у вічі." -#. ~ Description for corpse +#. ~ Description for newspaper page #: lang/json/GENERIC_from_json.py msgid "" -"A dead body of an old woman. Both of her earlobes are torn, several fingers" -" on her hands have been chopped off, and several teeth have been knocked " -"out." +"A single sheet of newspaper broadsheet. It was printed in the weeks leading" +" up to the Cataclysm. Most of the information on there is terribly trivial," +" or out of date, but one thing catches your eye briefly." msgstr "" +"Окрема сторінка широкоформатної газети. Надрукована за лічені тижні перед " +"Катаклізмом. Більша частина інформації там до жаху банальна чи застаріла, " +"але одна річ одразу бросається у вічі." -#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "A dead body, coated in congealed blood." -msgstr "" +msgid "vault leaflet" +msgid_plural "vault leaflets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for corpse +#. ~ Description for vault leaflet #: lang/json/GENERIC_from_json.py msgid "" -"A dead body with a frightful grimace. He appears to have been horribly " -"mangled prior to his death." +"A folded glossy handout that appears to be an introduction to living in a " +"massive underground complex." msgstr "" -#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "An awful, almost unidentifiable mass of charred flesh." -msgstr "" +msgid "note" +msgid_plural "notes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "A dead body with a gaping stab wound in its back." -msgstr "" +msgid "FEMA evacuation pamphlet" +msgid_plural "FEMA evacuation pamphlets" +msgstr[0] "посібник МНС з евакуації" +msgstr[1] "посібника МНС з евакуації" +msgstr[2] "посібників МНС з евакуації" +msgstr[3] "посібники МНС з евакуації" +#. ~ Description for FEMA evacuation pamphlet #: lang/json/GENERIC_from_json.py msgid "" -"The bloody corpse of a young man. He has been stabbed repeatedly in the " -"jugular and throat with a small blade." +"Welcome to your Emergency Survival Shelter. We hope your stay here will be short and comfortable. Provided are an emergency blanket, high visibility jacket, gas mask, and food and water rations for one day, as well as an emergency lighter and flashlight. There are further supplies in the communal cabinets should the facility be over its intended capacity. These resources are checked and updated by FEMA on a regular basis, but if you find some items missing, please contact a FEMA supervisor at your earliest convenience.\n" +"\n" +"Please wait in the shelter until an official evacuation transport arrives to take you to your homes or, in the event of a major disaster, to the nearest evacuation gathering point.\n" +"\n" +"In the event that you have been evacuated under violent circumstances, FEMA recommends taking cover in the shelter's basement until help arrives. Remember: if you leave the shelter, we cannot find you to take you to safety." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "" -"The dead body of a person. They look to have been skewered through with a " -"large sharp implement." -msgstr "" +msgid "MRE" +msgid_plural "MREs" +msgstr[0] "сухпайок" +msgstr[1] "сухпайка" +msgstr[2] "сухпайків" +msgstr[3] "сухпайки" +#. ~ Description for MRE #: lang/json/GENERIC_from_json.py -msgid "" -"The corpse of a tall middle-aged woman. She appears to have many stab " -"wounds up her legs and thighs." +msgid "A generic MRE box, you shouldn't see this." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "" -"The corpse of a small old lady, her face caked in blood and missing an eye." -msgstr "" +msgid "MRE small box" +msgid_plural "MRE small boxes" +msgstr[0] "маленька коробка сухпайка" +msgstr[1] "маленькі коробки сухпайка" +msgstr[2] "маленьких коробкок сухпайка" +msgstr[3] "маленькі коробки сухпайків" -#. ~ Description for corpse +#. ~ Description for MRE small box #: lang/json/GENERIC_from_json.py -msgid "" -"The dead body of a person. Their forehead bears a large bullet entrance " -"wound. An even larger exit wound is present on the back of their head." +msgid "A generic small MRE box, you shouldn't see this" msgstr "" -#. ~ Description for corpse +#: lang/json/GENERIC_from_json.py +msgid "MRE - Accessory Pack" +msgid_plural "MREs - Accessory Packs" +msgstr[0] "набір аксесуарів сухпайка" +msgstr[1] "набори аксесуарів сухпайка" +msgstr[2] "наборів аксесуарів сухпайка" +msgstr[3] "набори аксесуарів сухпайка" + +#. ~ Description for MRE - Accessory Pack #: lang/json/GENERIC_from_json.py msgid "" -"The upper half of a dead body, as if torn apart with enormous force. Some " -"organs are hanging out." +"An MRE accessory pack containing a variety of utensils and drinks. Activate" +" or disassemble it to get to its contents." msgstr "" -#. ~ Description for corpse +#: lang/json/GENERIC_from_json.py +msgid "MRE - Dessert Pack" +msgid_plural "MREs - Dessert Packs" +msgstr[0] "десертний набір сухпайка" +msgstr[1] "десертні набори сухпайка" +msgstr[2] "десертних наборів сухпайка" +msgstr[3] "десертні набори сухпайка" + +#. ~ Description for MRE - Dessert Pack #: lang/json/GENERIC_from_json.py msgid "" -"A half-decapitated dead body. It is unclear what could have caused such a " -"wound." +"A sealed plastic bag containing an array of desserts. Activate or " +"disassemble it to get to its contents." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "MRE - Chili & Beans" +msgid_plural "MREs - Chili & Beans" +msgstr[0] "сухпайок \"Чилі з квасолею\"" +msgstr[1] "сухпайка \"Чилі з квасолею\"" +msgstr[2] "сухпайків \"Чилі з квасолею\"" +msgstr[3] "сухпайки \"Чилі з квасолею\"" + +#. ~ Description for MRE - Chili & Beans #: lang/json/GENERIC_from_json.py msgid "" -"The corpse of a young blond woman shot several times in the back with a low-" -"caliber weapon." +"A 'Meal Ready to Eat' with a chili & beans entree and everything a " +"vegetarian soldier needs. The contents will begin to rot once they're " +"removed from this sealed bag. Activate or disassemble it to get to its " +"contents." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "MRE - BBQ Beef" +msgid_plural "MREs - BBQ Beef" +msgstr[0] "сухпайок \"Барбекю з яловичини\"" +msgstr[1] "сухпайка \"Барбекю з яловичини\"" +msgstr[2] "сухпайків \"Барбекю з яловичини\"" +msgstr[3] "сухпайки \"Барбекю з яловичини\"" + +#. ~ Description for MRE - BBQ Beef #: lang/json/GENERIC_from_json.py msgid "" -"An androgynous-looking corpse gored by arms fire chest to thighs, leaving " -"the face eerily pristine." +"A 'Meal Ready to Eat' with a BBQ beef entree and everything a hungry soldier" +" needs. The contents will begin to rot once they're removed from this " +"sealed bag. Activate or disassemble it to get to its contents." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "MRE - Chicken & Noodles" +msgid_plural "MREs - Chicken & Noodles" +msgstr[0] "сухпайок \"Курка з локшиною\"" +msgstr[1] "сухпайка \"Курка з локшиною\"" +msgstr[2] "сухпайків \"Курка з локшиною\"" +msgstr[3] "сухпайки \"Курка з локшиною\"" + +#. ~ Description for MRE - Chicken & Noodles #: lang/json/GENERIC_from_json.py msgid "" -"The corpse of a seemingly older male. He appears to have been shot in the " -"forehead at a very close range leaving you a good view of his brain matter." +"A 'Meal Ready to Eat' with a chicken & noodles entree and everything a " +"hungry soldier needs. The contents will begin to rot once they're removed " +"from this sealed bag. Activate or disassemble it to get to its contents." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "MRE - Spaghetti" +msgid_plural "MREs - Spaghetti" +msgstr[0] "сухпайок \"Спагеті\"" +msgstr[1] "сухпайка \"Спагеті\"" +msgstr[2] "сухпайків \"Спагеті\"" +msgstr[3] "сухпайки \"Спагеті\"" + +#. ~ Description for MRE - Spaghetti #: lang/json/GENERIC_from_json.py msgid "" -"The corpse of a middle-aged woman, her legs and arms covered in blood. She " -"appears to have been shot in the thigh." +"A 'Meal Ready to Eat' with a spaghetti entree and everything a hungry " +"soldier needs. The contents will begin to rot once they're removed from " +"this sealed bag. Activate or disassemble it to get to its contents." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "MRE - Chicken Chunks" +msgid_plural "MREs - Chicken Chunks" +msgstr[0] "сухпайок \"Курятина\"" +msgstr[1] "сухпайка \"Курятина\"" +msgstr[2] "сухпайків \"Курятина\"" +msgstr[3] "сухпайки \"Курятина\"" + +#. ~ Description for MRE - Chicken Chunks #: lang/json/GENERIC_from_json.py msgid "" -"The corpse of a young man who appears to have been shot to death. His right" -" arm is only barely still attached to his shoulder." +"A 'Meal Ready to Eat' with a chicken chunk entree and everything a hungry " +"soldier needs. The contents will begin to rot once they're removed from " +"this sealed bag. Activate or disassemble it to get to its contents." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "MRE - Beef Taco" +msgid_plural "MREs - Beef Taco" +msgstr[0] "сухпайок \"Яловиче тако\"" +msgstr[1] "сухпайка \"Яловиче тако\"" +msgstr[2] "сухпайків \"Яловиче тако\"" +msgstr[3] "сухпайки \"Яловиче тако\"" + +#. ~ Description for MRE - Beef Taco #: lang/json/GENERIC_from_json.py msgid "" -"The corpse of a tall woman unblemished but for the bloody hole atop her " -"head, its thick black hair intermixed now with brain, viscera and shotgun " -"pellets." +"A 'Meal Ready to Eat' with a beef taco entree and everything a hungry " +"soldier needs. The contents will begin to rot once they're removed from " +"this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken exodii worker" -msgid_plural "broken exodii workers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "MRE - Beef Brisket" +msgid_plural "MREs - Beef Brisket" +msgstr[0] "сухпайок \"Яловича грудина\"" +msgstr[1] "сухпайка \"Яловича грудина\"" +msgstr[2] "сухпайків \"Яловича грудина\"" +msgstr[3] "сухпайки \"Яловича грудина\"" -#. ~ Description for broken exodii worker +#. ~ Description for MRE - Beef Brisket #: lang/json/GENERIC_from_json.py -msgid "A broken exodii worker. It's possible it could be gutted for parts." +msgid "" +"A 'Meal Ready to Eat' with a beef brisket entree and everything a hungry " +"soldier needs. The contents will begin to rot once they're removed from " +"this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken exodii quadruped" -msgid_plural "broken exodii quadrupeds" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "MRE - Meatballs & Marinara" +msgid_plural "MREs - Meatballs & Marinara" +msgstr[0] "сухпайок \"Фрикадельки у соусі\"" +msgstr[1] "сухпайка \"Фрикадельки у соусі\"" +msgstr[2] "сухпайків \"Фрикадельки у соусі\"" +msgstr[3] "сухпайки \"Фрикадельки у соусі\"" -#. ~ Description for broken exodii quadruped +#. ~ Description for MRE - Meatballs & Marinara #: lang/json/GENERIC_from_json.py msgid "" -"A broken exodii walker. Still looks intimidating despite being permanently " -"inoperative, possibly due to the sheer size and mass. Could be gutted for " -"parts." +"A 'Meal Ready to Eat' with a meatball entree and everything a hungry soldier" +" needs. The contents will begin to rot once they're removed from this " +"sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken exodii turret" -msgid_plural "broken exodii turrets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "MRE - Beef Stew" +msgid_plural "MREs - Beef Stew" +msgstr[0] "сухпайок \"Рагу з яловичини\"" +msgstr[1] "сухпайка \"Рагу з яловичини\"" +msgstr[2] "сухпайків \"Рагу з яловичини\"" +msgstr[3] "сухпайки \"Рагу з яловичини\"" -#. ~ Description for broken exodii turret +#. ~ Description for MRE - Beef Stew #: lang/json/GENERIC_from_json.py msgid "" -"A broken exodii turret. Still looks intimidating despite being permanently " -"inoperative, possibly due to the sheer size and mass. Could be gutted for " -"parts." +"A 'Meal Ready to Eat' with a beef stew entree and everything a hungry " +"soldier needs. The contents will begin to rot once they're removed from " +"this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken exodii balloon-drone" -msgid_plural "broken exodii balloon-drones" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "MRE - Chili & Macaroni" +msgid_plural "MREs - Chili & Macaroni" +msgstr[0] "сухпайок \"Макарони з чилі\"" +msgstr[1] "сухпайка \"Макарони з чилі\"" +msgstr[2] "сухпайків \"Макарони з чилі\"" +msgstr[3] "сухпайки \"Макарони з чилі\"" -#. ~ Description for broken exodii balloon-drone +#. ~ Description for MRE - Chili & Macaroni #: lang/json/GENERIC_from_json.py msgid "" -"A broken balloon drone. The balloon has been shredded, but most of the " -"chassis is still intact. Could be gutted for parts." +"A 'Meal Ready to Eat' with a chili & macaroni entree and everything a hungry" +" soldier needs. The contents will begin to rot once they're removed from " +"this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "trifacet remains" -msgid_plural "trifacet remains" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "MRE - Vegetarian Taco" +msgid_plural "MREs - Vegetarian Taco" +msgstr[0] "сухпайок \"Вегетаріанське тако\"" +msgstr[1] "сухпайка \"Вегетаріанське тако\"" +msgstr[2] "сухпайків \"Вегетаріанське тако\"" +msgstr[3] "сухпайки \"Вегетаріанське тако\"" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for MRE - Vegetarian Taco #: lang/json/GENERIC_from_json.py msgid "" -"A split open facet reveals an interior full of closely fit geometric " -"primitives among chipped strips of milk-white quartz. Lending you no clues " -"as to how this machine ever functioned." +"A 'Meal Ready to Eat' with a vegetarian taco entree and everything a hungry " +"soldier needs. The contents will begin to rot once they're removed from " +"this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "ammo belt linkage" -msgid_plural "ammo belt linkages" +msgid "MRE - Macaroni Marinara" +msgid_plural "MREs - Macaroni Marinara" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ammo belt linkage +#. ~ Description for MRE - Macaroni Marinara #: lang/json/GENERIC_from_json.py -msgid "A small metal linkage from a disintegrating ammo belt." +msgid "" +"A 'Meal Ready to Eat' with a macaroni marinara entree and everything a " +"hungry soldier needs. The contents will begin to rot once they're removed " +"from this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".223 ammo belt linkage" -msgid_plural ".223 ammo belt linkages" +msgid "MRE - Spinach Fettuccine" +msgid_plural "MREs - Spinach Fettuccine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for MRE - Spinach Fettuccine #: lang/json/GENERIC_from_json.py -msgid ".308 ammo belt linkage" -msgid_plural ".308 ammo belt linkages" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A 'Meal Ready to Eat' with a creamy spinach fettuccine entree and everything" +" a vegetarian soldier needs. The contents will begin to rot once they're " +"removed from this sealed bag. Activate or disassemble it to get to its " +"contents." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "40mm grenade belt linkage" -msgid_plural "40mm grenade belt linkages" +msgid "MRE - Ratatouille" +msgid_plural "MREs - Ratatouille" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for MRE - Ratatouille #: lang/json/GENERIC_from_json.py -msgid ".50 ammo belt linkage" -msgid_plural ".50 ammo belt linkages" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A 'Meal Ready to Eat' with a ratatouille entree and everything a vegetarian " +"soldier needs. The contents will begin to rot once they're removed from " +"this sealed bag. Activate or disassemble it to get to its contents." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "generic grooming" -msgid_plural "generic groomings" +msgid "MRE - Cheese Tortellini" +msgid_plural "MREs - Cheese Tortellini" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for generic grooming -#. ~ Description for generic silverware -#. ~ Description for generic utensil -#. ~ Description for generic silverware -#. ~ Description for generic dish -#. ~ Description for generic cook pot -#. ~ Description for generic kitchen knife -#: lang/json/GENERIC_from_json.py lang/json/GENERIC_from_json.py -#: lang/json/TOOL_from_json.py -msgid "generic item template" +#. ~ Description for MRE - Cheese Tortellini +#: lang/json/GENERIC_from_json.py +msgid "" +"A 'Meal Ready to Eat' with a cheese tortellini entree and everything a " +"hungry soldier needs. The contents will begin to rot once they're removed " +"from this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "soap dish" -msgid_plural "soap dishes" +msgid "MRE - Mushroom Fettuccine" +msgid_plural "MREs - Mushroom Fettuccine" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for soap dish +#. ~ Description for MRE - Mushroom Fettuccine #: lang/json/GENERIC_from_json.py msgid "" -"A shallow dish for holding a bar of soap. It has ridges to help drain water" -" away from the dish. Not the most exciting of items." +"A 'Meal Ready to Eat' with a mushroom fettuccine entree and everything a " +"hungry soldier needs. The contents will begin to rot once they're removed " +"from this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "shaving razor" -msgid_plural "shaving razors" +msgid "MRE - Mexican Chicken Stew" +msgid_plural "MREs - Mexican Chicken Stew" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for shaving razor +#. ~ Description for MRE - Mexican Chicken Stew #: lang/json/GENERIC_from_json.py msgid "" -"A razor blade on a comfortable handle. Much easier to shave with than a " -"loose razor." +"A 'Meal Ready to Eat' with a Mexican chicken stew entree and everything a " +"hungry soldier needs. The contents will begin to rot once they're removed " +"from this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "toothbrush" -msgid_plural "toothbrushes" +msgid "MRE - Chicken Burrito Bowl" +msgid_plural "MREs - Chicken Burrito Bowl" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for toothbrush -#: lang/json/GENERIC_from_json.py -msgid "A plastic brush with soft bristles for cleaning your teeth." -msgstr "" - +#. ~ Description for MRE - Chicken Burrito Bowl #: lang/json/GENERIC_from_json.py msgid "" -"A plastic brush with soft bristles for cleaning your teeth. It has a cheap," -" blocky handle and is likely meant to be disposable." +"A 'Meal Ready to Eat' with a chicken burrito bowl entree and everything a " +"hungry soldier needs. The contents will begin to rot once they're removed " +"from this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "" -"A combination toothbrush and gum massager. It has an ergonomic silicone " -"grip. Luxurious!" -msgstr "" +msgid "MRE - Maple Sausage" +msgid_plural "MREs - Maple Sausage" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for MRE - Maple Sausage #: lang/json/GENERIC_from_json.py msgid "" -"A plastic brush with soft bristles for cleaning your teeth. The blue and " -"white pattern on the handle implies cleanliness." +"A 'Meal Ready to Eat' with a maple sausage entree and everything a hungry " +"soldier needs. The contents will begin to rot once they're removed from " +"this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "" -"A short toothbrush designed for children. It has a wide-eyed cartoon pony " -"on the handle." -msgstr "" +msgid "MRE - Ravioli" +msgid_plural "MREs - Ravioli" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for MRE - Ravioli #: lang/json/GENERIC_from_json.py msgid "" -"A short toothbrush designed for children. It has a grinning red racecar on " -"the handle." +"A 'Meal Ready to Eat' with a ravioli entree and everything a hungry soldier " +"needs. The contents will begin to rot once they're removed from this sealed" +" bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "dirty toothbrush" -msgid_plural "dirty toothbrushes" +msgid "MRE - Pepper Jack Beef" +msgid_plural "MREs - Pepper Jack Beef" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dirty toothbrush +#. ~ Description for MRE - Pepper Jack Beef #: lang/json/GENERIC_from_json.py msgid "" -"Someone has been using this plastic toothbrush to clean grease or muck. It " -"is now irrevocably dirty." +"A 'Meal Ready to Eat' with a pepper jack beef entree and everything a hungry" +" soldier needs. The contents will begin to rot once they're removed from " +"this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "hairbrush" -msgid_plural "hairbrushes" +msgid "MRE - Hash Browns & Bacon" +msgid_plural "MREs - Hash Browns & Bacon" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hairbrush -#: lang/json/GENERIC_from_json.py -msgid "An instrument of hair torture." -msgstr "" - +#. ~ Description for MRE - Hash Browns & Bacon #: lang/json/GENERIC_from_json.py msgid "" -"An instrument of hair torture. There are round safety tips on the bristles." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "An old-fashioned hair-straightening device with a faux-wood handle." +"A 'Meal Ready to Eat' with a hash browns & bacon entree and everything a " +"hungry soldier needs. The contents will begin to rot once they're removed " +"from this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "A soft, cushioned hairbrush. The shiny chrome design appears modern." -msgstr "" +msgid "MRE - Lemon Pepper Tuna" +msgid_plural "MREs - Lemon Pepper Tuna" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for MRE - Lemon Pepper Tuna #: lang/json/GENERIC_from_json.py msgid "" -"A tacky kid's hairbrush. The cartoon whale on the handle seems friendly " -"enough." +"A 'Meal Ready to Eat' with a lemon pepper tuna entree and everything a " +"hungry soldier needs. The contents will begin to rot once they're removed " +"from this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "hair curler" -msgid_plural "hair curlers" +msgid "MRE - Asian Beef & Vegetables" +msgid_plural "MREs - Asian Beef & Vegetables" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hair curler +#. ~ Description for MRE - Asian Beef & Vegetables #: lang/json/GENERIC_from_json.py msgid "" -"A soft plastic cylinder you can wrap a lock of your hair around to curl it." +"A 'Meal Ready to Eat' with an Asian beef & vegetables entree and everything " +"a hungry soldier needs. The contents will begin to rot once they're removed" +" from this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "dental floss" -msgid_plural "rolls of dental floss" +msgid "MRE - Chicken Pesto & Pasta" +msgid_plural "MREs - Chicken Pesto & Pasta" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dental floss +#. ~ Description for MRE - Chicken Pesto & Pasta #: lang/json/GENERIC_from_json.py msgid "" -"Twenty-five yards of finely waxed thread wound up inside a plastic " -"container. Perfect for picking bits of smoked meat out of your teeth. " -"Disassemble to use the thread for something else." +"A 'Meal Ready to Eat' with a chicken pesto entree and everything a hungry " +"soldier needs. The contents will begin to rot once they're removed from " +"this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "comb" -msgid_plural "combs" +msgid "MRE - Southwest Beef & Beans" +msgid_plural "MREs - Southwest Beef & Beans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for comb -#: lang/json/GENERIC_from_json.py -msgid "A grooming tool with teeth for straightening your hair." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "" -"Somehow, a few teeth have already broken off the end of this otherwise " -"pristine comb." -msgstr "" - +#. ~ Description for MRE - Southwest Beef & Beans #: lang/json/GENERIC_from_json.py msgid "" -"A grooming tool with teeth for straightening your hair. This one is narrow," -" black and austere." +"A 'Meal Ready to Eat' with a southwest beef & beans entree and everything a " +"hungry soldier needs. The contents will begin to rot once they're removed " +"from this sealed bag. Activate or disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "" -"A comb made of soft plastic. Its tortoiseshell pattern makes it seem " -"antique." -msgstr "" +msgid "MRE - Frankfurters & Beans" +msgid_plural "MREs - Frankfurters & Beans" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for MRE - Frankfurters & Beans #: lang/json/GENERIC_from_json.py msgid "" -"A comb which folds on a hinge, in case you want to look like a greaser." +"A vintage MRE, still perfectly preserved and edible. The contents will " +"begin to rot once they're removed from this sealed bag. Activate or " +"disassemble it to get to its contents." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "toilet plunger" -msgid_plural "toilet plungers" +msgid "set of spidery legs" +msgid_plural "sets of spidery legs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for toilet plunger +#. ~ Description for set of spidery legs #: lang/json/GENERIC_from_json.py -msgid "" -"A rubber-tipped tool for unclogging pipes, or a club for an immature " -"survivor." +msgid "A set of big pointy legs, like the ones found under a tripod." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "professional plunger" -msgid_plural "professional plungers" +msgid "stone pot" +msgid_plural "stone pots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for professional plunger +#. ~ Description for stone pot #: lang/json/GENERIC_from_json.py -msgid "" -"This hollow plastic toilet plunger's bell compresses like an accordion. It " -"is efficient at its intended purpose, and complete rubbish as a weapon." +msgid "A large stone, roughly hollowed out into a pot." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "toilet paper" -msgid_plural "rolls of toilet paper" +msgid "module template" +msgid_plural "module templates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for toilet paper -#: lang/json/GENERIC_from_json.py -msgid "A luxurious remnant of civilization." -msgstr "" - +#. ~ Description for module template #: lang/json/GENERIC_from_json.py -msgid "" -"Imagine the thinnest, most disposable paper you could possibly make. Now " -"imagine something thinner than that." +msgid "This is a template for robot module. If found in a game it is a bug." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "" -"This roll of toilet paper is two-ply and quilted, for vandalizing houses " -"more comfortably than ever." -msgstr "" +msgid "targeting module" +msgid_plural "targeting modules" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for targeting module #: lang/json/GENERIC_from_json.py msgid "" -"This brand of toilet paper is designed to dissolve completely in water!" +"This module integrates visual and proprioceptive information from peripheric" +" sensors and outputs information necessary for accurate aiming." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "" -"Images of your least favorite politician are printed on each individual " -"sheet." -msgstr "" +msgid "identification module" +msgid_plural "identification modules" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for identification module #: lang/json/GENERIC_from_json.py msgid "" -"A luxurious remnant of civilization. The splinters of unprocessed wood " -"visible in this one make it seem less luxurious, though." +"This module continuously runs image recognition algorithms to identify " +"friends from foe." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "hair dryer" -msgid_plural "hair dryers" +msgid "pathfinding module" +msgid_plural "pathfinding modules" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hair dryer +#. ~ Description for pathfinding module #: lang/json/GENERIC_from_json.py msgid "" -"This tool dries your hair by pushing air through a coil of hot wires. " -"Without a functioning power grid, it is a motorized paper weight." +"This module uses a combination of vector integration and egocentric mapping " +"to find the best path available." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "curling iron" -msgid_plural "curling irons" +msgid "memory banks module" +msgid_plural "memory banks modules" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for curling iron +#. ~ Description for memory banks module #: lang/json/GENERIC_from_json.py -msgid "" -"A wand made of heat-resistant ceramics. When plugged into an outlet, it is " -"hot enough to shape your hair into curls. Too bad the power's out." +msgid "Allows for storage and recovery of information." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "toilet brush" -msgid_plural "toilet brushes" +msgid "sensor array" +msgid_plural "sensor arrays" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for toilet brush +#. ~ Description for sensor array #: lang/json/GENERIC_from_json.py msgid "" -"Zombies cannot be intimidated or humiliated, so this stiff brush is only " -"useful for scouring toilet bowls." +"A wide range of sensors meant to give the ability to perceive the " +"surrounding world." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pillowcase" -msgid_plural "pillowcases" +msgid "self monitoring sensors" +msgid_plural "self monitoring sensors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pillowcase +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py -msgid "A simple cotton pillowcase." +msgid "" +"An array of sensors and diagnostic modules allowing the robot to perceive " +"itself." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Casing from ammunition cartridge" -msgid_plural "Casing from ammunition cartridges" +msgid "AI core" +msgid_plural "AI cores" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for AI core #: lang/json/GENERIC_from_json.py -msgid ".223 casing" -msgid_plural ".223 casings" +msgid "" +"This module is responsible for decision-making, it basically runs the AI of " +"the robot." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "basic AI core" +msgid_plural "basic AI cores" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .223 casing +#. ~ Description for basic AI core #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .223 round." +msgid "A very basic AI core with minimal cognitive abilities." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".22 LR casing" -msgid_plural ".22 LR casings" +msgid "advanced AI core" +msgid_plural "advanced AI cores" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .22 LR casing +#. ~ Description for advanced AI core #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .22 LR round. These can't be hand-reloaded." +msgid "An advanced AI core with impressive cognitive abilities." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "unused .22 casing" -msgid_plural "unused .22 casings" +msgid "gun operating system" +msgid_plural "gun operating systems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for unused .22 casing +#. ~ Description for gun operating system #: lang/json/GENERIC_from_json.py -msgid "An unfired, like-new .22 round casing, with the primer still intact." +msgid "This system can operate most conventional weapons." msgstr "" -"Нестріляна гільза калібру .22, з неушкодженим капсулем. Виглядає як нова." #: lang/json/GENERIC_from_json.py -msgid ".30-06 casing" -msgid_plural ".30-06 casings" +msgid "set of tiny spidery legs" +msgid_plural "sets of tiny spidery legs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .30-06 casing +#. ~ Description for set of tiny spidery legs #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .30-06 round." +msgid "A set of tiny pointy legs, like the ones found under a skitterbot." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".270 Winchester casing" -msgid_plural ".270 Winchester casings" +msgid "set of reverse-jointed legs" +msgid_plural "sets of reverse-jointed legs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .270 Winchester casing +#. ~ Description for set of reverse-jointed legs #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .270 Winchester round." +msgid "" +"A set of reverse-jointed legs, like the ones found under a chicken walker." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".300 Win Mag casing" -msgid_plural ".300 Win Mag casings" +msgid "set of omni wheels" +msgid_plural "sets of omni wheels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .300 Win Mag casing +#. ~ Description for set of omni wheels #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .300 Winchester Magnum round." +msgid "A set of omni wheels, like the ones found under a police bot." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".308 casing" -msgid_plural ".308 casings" +msgid "set of rotors" +msgid_plural "sets of rotors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .308 casing +#. ~ Description for set of rotors #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .308 round." +msgid "A set of rotors able to lift a small drone." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "7.62x51mm casing" -msgid_plural "7.62x51mm casings" +msgid "set of android legs" +msgid_plural "sets of android legs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 7.62x51mm casing +#. ~ Description for set of android legs #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a 7.62x51mm M80 round." +msgid "A set of human-like legs." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".32 ACP casing" -msgid_plural ".32 ACP casings" +msgid "set of android arms" +msgid_plural "sets of android arms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .32 ACP casing +#. ~ Description for set of android arms #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .32 ACP round." +msgid "A set of human-like arms." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".38 Special casing" -msgid_plural ".38 Special casings" +msgid "set of small tank tread" +msgid_plural "sets of small tank tread" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .38 Special casing +#. ~ Description for set of small tank tread #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .38 Special round." +msgid "A set of small tank tread, like the one used by the \"Beagle\" mini-tank." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".38 Super casing" -msgid_plural ".38 Super casings" +msgid "turret interior chassis" +msgid_plural "turret interior chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .38 Super casing +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .38 Super round." +msgid "" +"What's left when you remove all moving parts and electronics. It's the " +"skeleton of a turret." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".40 S&W casing" -msgid_plural ".40 S&W casings" +msgid "police bot chassis" +msgid_plural "police bot chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .40 S&W casing +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .40 S&W round." +msgid "" +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the police bot." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "10mm Auto casing" -msgid_plural "10mm Auto casings" +msgid "android skeleton" +msgid_plural "android skeletons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 10mm Auto casing +#. ~ Description for android skeleton #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a 10mm Auto round." +msgid "What's left when you strip an android body from its components." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "40x46mm M212 casing" -msgid_plural "40x46mm M212 casings" +msgid "abstract autodoc installation data" +msgid_plural "abstract autodoc installation datas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 40x46mm M212 casing +#: lang/json/GENERIC_from_json.py +msgid "Alarm System CBM installation data" +msgid_plural "Alarm System CBM installation data" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" -"A large casing from a spent 40x46mm cartridge, which used to hold a less-" -"lethal projectile." +"Precise step-by-step instructions and other required data for installation " +"of Alarm System CBM, stored on a data card of proprietary form-factor, " +"designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "40x46mm M118 casing" -msgid_plural "40x46mm M118 casings" +msgid "LED Tattoo CBM installation data" +msgid_plural "LED Tattoo CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 40x46mm M118 casing +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" -"A large casing from a spent 40x46mm cartridge, which used to hold a HEDP " -"grenade. Suitable for reloading with buckshot, slug or flechette loads." +"Precise step-by-step instructions and other required data for installation " +"of LED Tattoo CBM, stored on a data card of proprietary form-factor, " +"designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "40x46mm M199 casing" -msgid_plural "40x46mm M199 casings" +msgid "Power Armor Interface CBM installation data" +msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 40x46mm M199 casing +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" -"A large casing from a spent 40x46mm cartridge, which used to hold a buckshot" -" load. Suitable for reloading with buckshot, slug or flechette loads." +"Precise step-by-step instructions and other required data for installation " +"of Power Armor Interface CBM, stored on a data card of proprietary form-" +"factor, designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "40x46mm M195 casing" -msgid_plural "40x46mm M195 casings" +msgid "Power Storage CBM installation data" +msgid_plural "Power Storage CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 40x46mm M195 casing +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" -"A large casing from a spent 40x46mm cartridge, which used to hold a tear gas" -" canister." +"Precise step-by-step instructions and other required data for installation " +"of Power Storage CBM, stored on a data card of proprietary form-factor, " +"designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "40x53mm M169 casing" -msgid_plural "40x53mm M169 casings" +msgid "Power Storage CBM Mk. II installation data" +msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 40x53mm M169 casing +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" -"A large casing from a spent 40x53mm cartridge. Suitable for reloading with " -"buckshot, slug or flechette loads." +"Precise step-by-step instructions and other required data for installation " +"of Power Storage CBM Mk. II, stored on a data card of proprietary form-" +"factor, designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".44 Magnum casing" -msgid_plural ".44 Magnum casings" +msgid "Internal Chronometer CBM installation data" +msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .44 Magnum casing +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .44 Magnum round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Internal Chronometer CBM, stored on a data card of proprietary form-" +"factor, designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".454 Casull casing" -msgid_plural ".454 Casull casings" +msgid "Intravenous Needletip CBM installation data" +msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .454 Casull casing +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .454 Casull round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Intravenous Needletip CBM, stored on a data card of proprietary form-" +"factor, designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".45 ACP casing" -msgid_plural ".45 ACP casings" +msgid "Blood Analysis CBM installation data" +msgid_plural "Blood Analysis CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .45 ACP casing +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .45 ACP round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Blood Analysis CBM, stored on a data card of proprietary form-factor, " +"designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".45 Colt casing" -msgid_plural ".45 Colt casings" +msgid "Cranial Flashlight CBM installation data" +msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .45 Colt casing +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .45 Colt round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Cranial Flashlight CBM, stored on a data card of proprietary form-factor," +" designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".45-70 casing" -msgid_plural ".45-70 casings" +msgid "Electromagnetic Unit CBM installation data" +msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .45-70 casing +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .45-70 Government round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Electromagnetic Unit CBM, stored on a data card of proprietary form-" +"factor, designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "4.6x30mm casing" -msgid_plural "4.6x30mm casings" +msgid "Soporific Induction CBM installation data" +msgid_plural "Soporific Induction CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 4.6x30mm casing +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a 4.6x30mm round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Soporific Induction CBM, stored on a data card of proprietary form-" +"factor, designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".460 Rowland casing" -msgid_plural ".460 Rowland casings" +msgid "Arms Alloy Plating CBM installation data" +msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .460 Rowland casing +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" -"An empty casing from a .460 Rowland round. It looks deceptively like a " -".45ACP casing." +"Precise step-by-step instructions and other required data for installation " +"of Arms Alloy Plating CBM, stored on a data card of proprietary form-factor," +" designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "5x50mm hull" -msgid_plural "5x50mm hulls" +msgid "Legs Alloy Plating CBM installation data" +msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 5x50mm hull +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty plastic hull from a 5x50mm flechette round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Legs Alloy Plating CBM, stored on a data card of proprietary form-factor," +" designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".500 S&W Magnum casing" -msgid_plural ".500 S&W Magnum casings" +msgid "Shotgun Arm CBM installation data" +msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .500 S&W Magnum casing +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .500 S&W Magnum round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Shotgun Arm CBM, stored on a data card of proprietary form-factor, " +"designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".50 BMG casing" -msgid_plural ".50 BMG casings" +msgid "Blood Filter CBM installation data" +msgid_plural "Blood Filter CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .50 BMG casing +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" -"An empty casing from a .50 BMG round. These are rare, so you might want to " -"hold onto these." +"Precise step-by-step instructions and other required data for installation " +"of Blood Filter CBM, stored on a data card of proprietary form-factor, " +"designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "5.45x39mm casing" -msgid_plural "5.45x39mm casings" +msgid "Internal Climate Control CBM installation data" +msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 5.45x39mm casing +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a 5.45x39mm round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Internal Climate Control CBM, stored on a data card of proprietary form-" +"factor, designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "5.7x28mm casing" -msgid_plural "5.7x28mm casings" +msgid "Integrated Dosimeter CBM installation data" +msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 5.7x28mm casing +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a 5.7x28mm round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Integrated Dosimeter CBM, stored on a data card of proprietary form-" +"factor, designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".700 NX casing" -msgid_plural ".700 NX casings" +msgid "Thermal Dissipation CBM installation data" +msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .700 NX casing +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" -"An empty casing from a .700 NX round. These are rare, so you might want to " -"hold onto these." +"Precise step-by-step instructions and other required data for installation " +"of Thermal Dissipation CBM, stored on a data card of proprietary form-" +"factor, designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "7.62x54mmR casing" -msgid_plural "7.62x54mmR casings" +msgid "Weather Reader CBM installation data" +msgid_plural "Weather Reader CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 7.62x54mmR casing +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a 7.62x54mmR round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Weather Reader CBM, stored on a data card of proprietary form-factor, " +"designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "7.62x39mm casing" -msgid_plural "7.62x39mm casings" +msgid "Railgun CBM installation data" +msgid_plural "Railgun CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 7.62x39mm casing +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a 7.62x39mm round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Railgun CBM, stored on a data card of proprietary form-factor, designed " +"to be used extensively by an Autodoc, and allowing bionic installation with " +"minimal failure chance. Integrated security subroutine renders it unusable " +"after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "7.62x25mm casing" -msgid_plural "7.62x25mm casings" +msgid "Unified Power System CBM installation data" +msgid_plural "Unified Power System CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 7.62x25mm casing +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a 7.62x25mm round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Unified Power System CBM, stored on a data card of proprietary form-" +"factor, designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "9x19mm casing" -msgid_plural "9x19mm casings" +msgid "Titanium Skeletal Bracing CBM installation data" +msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 9x19mm casing +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a 9x19mm round." +msgid "" +"Precise step-by-step instructions and other required data for installation " +"of Titanium Skeletal Bracing CBM, stored on a data card of proprietary form-" +"factor, designed to be used extensively by an Autodoc, and allowing bionic " +"installation with minimal failure chance. Integrated security subroutine " +"renders it unusable after installation." msgstr "" +#: lang/json/GENERIC_from_json.py src/cata_tiles.cpp src/options.cpp +msgid "software" +msgid_plural "software" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/GENERIC_from_json.py -msgid ".357 SIG casing" -msgid_plural ".357 SIG casings" +msgid "misc software" +msgid_plural "misc software" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .357 SIG casing +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .357 SIG round." +msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".357 magnum casing" -msgid_plural ".357 magnum casings" +msgid "hackPRO" +msgid_plural "hackPRO" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .357 magnum casing +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .357 magnum round." +msgid "A piece of hacking software." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "9x18mm casing" -msgid_plural "9x18mm casings" +msgid "MediSoft" +msgid_plural "MediSoft" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 9x18mm casing +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a 9x18mm round." +msgid "A piece of medical software." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".380 ACP casing" -msgid_plural ".380 ACP casings" +msgid "MatheMAX" +msgid_plural "MatheMAX" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .380 ACP casing +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .380 ACP round." +msgid "A piece of mathematical software." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "152mm ATGM tube" -msgid_plural "152mm ATGM tubes" +msgid "infection data" +msgid_plural "infection data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 152mm ATGM tube +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py -msgid "" -"An empty steel tube which once contained a 152mm ATGM. Now it's essentially" -" just a huge pipe." +msgid "Medical data on zombie blood." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "shotgun hull" -msgid_plural "shotgun hulls" +msgid "lab data" +msgid_plural "lab data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for shotgun hull +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py -msgid "An empty hull from a shotgun shell." +msgid "Research archives from a government laboratory." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".410 hull" -msgid_plural ".410 hulls" +msgid "train data" +msgid_plural "train data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .410 hull +#. ~ Description for train data #: lang/json/GENERIC_from_json.py -msgid "An empty hull from a .410 shotgun shell." +msgid "Logistical data on subterranean train routes and schedules." msgstr "" #: lang/json/GENERIC_from_json.py -msgid ".300BLK casing" -msgid_plural ".300BLK casings" +msgid "neural data" +msgid_plural "neural data" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for .300BLK casing +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a .300 AAC Blackout round." +msgid "" +"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" +"\n" +"Whatever the case, the idea of perpetually keeping a part of you within a metallic pill makes you feel uncomfortable." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "one-dollar currency strap" -msgid_plural "one-dollar currency straps" +msgid "integrated circuit datasheet archives" +msgid_plural "misc software" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for one-dollar currency strap +#. ~ Description for integrated circuit datasheet archives #: lang/json/GENERIC_from_json.py -msgid "A hundred one-dollar bills held together by a blue currency strap." +msgid "" +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "two-dollar currency strap" -msgid_plural "two-dollar currency straps" +msgid "abstract map" +msgid_plural "abstract maps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for two-dollar currency strap -#: lang/json/GENERIC_from_json.py -msgid "A hundred two-dollar bills held together by a green currency strap." -msgstr "" - #: lang/json/GENERIC_from_json.py -msgid "five-dollar currency strap" -msgid_plural "five-dollar currency straps" +msgid "handwritten note" +msgid_plural "handwritten notes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for five-dollar currency strap +#. ~ Use action message for handwritten note. #: lang/json/GENERIC_from_json.py -msgid "A hundred five-dollar bills held together by a red currency strap." +msgid "You add the hidden stations to your map" msgstr "" +#. ~ Description for handwritten note #: lang/json/GENERIC_from_json.py -msgid "ten-dollar currency strap" -msgid_plural "ten-dollar currency straps" +msgid "" +"A small, meticulously folded piece of paper, filled with tiny handwriting " +"and some surprisingly precise diagrams of subway tunnels, access codes, " +"ventilation shafts, and…guard shifts? You have the feeling they weren't " +"supposed to write any of this stuff down." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "military operations map" +msgid_plural "military operations maps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ten-dollar currency strap +#. ~ Use action message for military operations map. #: lang/json/GENERIC_from_json.py -msgid "A hundred ten-dollar bills held together by a yellow currency strap." +msgid "You add roads and facilities to your map." msgstr "" +#. ~ Description for military operations map #: lang/json/GENERIC_from_json.py -msgid "twenty-dollar currency strap" -msgid_plural "twenty-dollar currency straps" +msgid "" +"This is a printed topographical map of the local area. Originally of " +"military origin, it details the locations of evacuation centers and military" +" facilities. Using it will add points of interest to your map." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "survivor's map" +msgid_plural "survivor's maps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for twenty-dollar currency strap +#. ~ Use action message for survivor's map. +#: lang/json/GENERIC_from_json.py +msgid "You add roads and possible supply points to your map." +msgstr "" + +#. ~ Description for survivor's map #: lang/json/GENERIC_from_json.py msgid "" -"A hundred twenty-dollar bills held together by a violet currency strap." +"This is a hand-drawn map of the local area. Whoever created it has marked " +"down the locations of nearby supply sources including gun stores and gas " +"stations. Using it will add points of interest to your map." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fifty-dollar currency strap" -msgid_plural "fifty-dollar currency straps" +msgid "road map" +msgid_plural "road maps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fifty-dollar currency strap +#. ~ Use action message for road map. #: lang/json/GENERIC_from_json.py -msgid "A hundred fifty-dollar bills held together by a brown currency strap." +msgid "You add roads and points of interest to your map." msgstr "" +#. ~ Description for road map #: lang/json/GENERIC_from_json.py -msgid "hundred-dollar currency strap" -msgid_plural "hundred-dollar currency straps" +msgid "" +"This is a road map for the local area. Listing information on civic sites " +"like hospitals and police stations, it can be used to add points of interest" +" to your map." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "subway maintenance map" +msgid_plural "subway maintenance maps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hundred-dollar currency strap +#. ~ Use action message for subway maintenance map. +#: lang/json/GENERIC_from_json.py +msgid "You add subway lines and underground stations to your map." +msgstr "" + +#. ~ Description for subway maintenance map #: lang/json/GENERIC_from_json.py msgid "" -"A hundred hundred-dollar bills held together by a mustard currency strap." +"This is a map of subway tunnels formerly used by public maintenance workers." +" Using it will add subway lines and underground stations to your map." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Merch currency strap" -msgid_plural "Merch currency straps" +msgid "trail guide" +msgid_plural "trail guides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Merch currency strap +#. ~ Use action message for trail guide. +#: lang/json/GENERIC_from_json.py +msgid "You add trails and trailheads to your map." +msgstr "" + +#. ~ Description for trail guide #: lang/json/GENERIC_from_json.py msgid "" -"A hundred Free Merchant Certified Notes held together by an improvised " -"currency strap. This can be exchanged for food, water, and other services " -"through the Free Merchants at the Refugee Center." +"This is a printed guide to the best local trails. It has general details " +"about the trails, trailhead amenities, suggestions for the best thru-hikes, " +"and advice on interacting with local wildlife in a responsible and " +"respectful manner." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "one-dollar currency bundle" -msgid_plural "one-dollar currency bundles" +msgid "tourist guide" +msgid_plural "tourist guides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for one-dollar currency bundle +#. ~ Use action message for tourist guide. +#: lang/json/GENERIC_from_json.py +msgid "You add roads and tourist attractions to your map." +msgstr "" + +#. ~ Description for tourist guide #: lang/json/GENERIC_from_json.py msgid "" -"A thousand one-dollar bills, divided evenly between ten blue currency " -"straps, and bundled together by with rubber bands." +"This is glossy printed pamphlet for tourists that details local hotels and " +"attractions." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "two-dollar currency bundle" -msgid_plural "two-dollar currency bundles" +msgid "restaurant guide" +msgid_plural "restaurant guides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for two-dollar currency bundle +#. ~ Use action message for restaurant guide. +#: lang/json/GENERIC_from_json.py +msgid "You add roads and restaurants to your map." +msgstr "" + +#. ~ Description for restaurant guide #: lang/json/GENERIC_from_json.py msgid "" -"A thousand two-dollar bills, divided evenly between ten green currency " -"straps, and bundled together by with rubber bands." +"This is glossy printed pamphlet that details dining establishments in the " +"local area. Printed by the Chamber of Commerce, it lists the addresses of " +"all the best diners and bars. Using it will add points of interest to your " +"map." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "five-dollar currency bundle" -msgid_plural "five-dollar currency bundles" +msgid "satellite map" +msgid_plural "satellite maps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for five-dollar currency bundle +#. ~ Use action message for satellite map. +#: lang/json/GENERIC_from_json.py +msgid "You add terrain and roads to your map." +msgstr "" + +#. ~ Description for satellite map #: lang/json/GENERIC_from_json.py msgid "" -"A thousand five-dollar bills, divided evenly between ten red currency " -"straps, and bundled together by with rubber bands." +"This is a printed satellite map of the local area. Due to it's low quality " +"and lack of map legend, you are unable to recognise most buildings. Using " +"it will add terrain and roads to your map." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "ten-dollar currency bundle" -msgid_plural "ten-dollar currency bundles" +msgid "juvenile sourdough starter" +msgid_plural "juvenile sourdough starters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ten-dollar currency bundle +#. ~ Use action msg for juvenile sourdough starter. #: lang/json/GENERIC_from_json.py msgid "" -"A thousand ten-dollar bills, divided evenly between ten yellow currency " -"straps, and bundled together by with rubber bands." +"After feeding it and caring for it for a week, your sourdough starter is " +"finally ready for the big leagues." msgstr "" +#. ~ Use action not_ready_msg for juvenile sourdough starter. #: lang/json/GENERIC_from_json.py -msgid "twenty-dollar currency bundle" -msgid_plural "twenty-dollar currency bundles" +msgid "" +"You've been caring for your starter for a while, but it's going to need " +"longer before you can do anything tasty with it." +msgstr "" + +#. ~ Description for juvenile sourdough starter +#: lang/json/GENERIC_from_json.py +msgid "" +"This jar contains a floury paste that is slowly going bad. Someday it will " +"be sourdough." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "freshly fed sourdough starter" +msgid_plural "freshly fed sourdough starters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for twenty-dollar currency bundle +#. ~ Use action msg for freshly fed sourdough starter. +#: lang/json/GENERIC_from_json.py +msgid "The starter is now stinky and bubbly, and looks ready for cooking." +msgstr "" + +#. ~ Use action not_ready_msg for freshly fed sourdough starter. +#: lang/json/GENERIC_from_json.py +msgid "The starter isn't quite ready to go." +msgstr "" + +#. ~ Description for freshly fed sourdough starter #: lang/json/GENERIC_from_json.py msgid "" -"A thousand twenty-dollar bills, divided evenly between ten violet currency " -"straps, and bundled together with two rubber bands." +"This jar contains a floury paste with sourdough starter mixed in. It needs " +"a day to recover its strength before it can be used again." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fifty-dollar currency bundle" -msgid_plural "fifty-dollar currency bundles" +msgid "sourdough starter" +msgid_plural "sourdough starters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fifty-dollar currency bundle +#. ~ Description for sourdough starter #: lang/json/GENERIC_from_json.py msgid "" -"A thousand fifty-dollar bills, divided evenly between ten brown currency " -"straps, and bundled together with two rubber bands." +"This jar contains a precious mix of flour, water, molds and bacteria from " +"the air. When you add flour and water to it, after a few hours it froths " +"and rises." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "hundred-dollar currency bundle" -msgid_plural "hundred-dollar currency bundles" +msgid "human bone" +msgid_plural "human bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hundred-dollar currency bundle +#. ~ Description for human bone #: lang/json/GENERIC_from_json.py msgid "" -"A thousand hundred-dollar bills, divided evenly between ten mustard currency" -" straps, and bundled together with two rubber bands." +"A bone from a human being. Could be used to make some stuff, if you're " +"feeling sufficiently ghoulish." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Merch currency bundle" -msgid_plural "Merch currency bundles" +msgid "demihuman bone" +msgid_plural "demihuman bones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Merch currency bundle +#. ~ Description for demihuman bone #: lang/json/GENERIC_from_json.py msgid "" -"A thousand Free Merchant Certified Notes, divided evenly between ten " -"improvised currency straps, and bundled together with two rubber bands. " -"This can be exchanged for food, water, and other services through the Free " -"Merchants at the Refugee Center." +"A bone from a demihuman being. Could be used to make some stuff, if you're " +"feeling sufficiently ghoulish." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "generic silverware" -msgid_plural "generic silverwares" +msgid "human skull" +msgid_plural "human skulls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for human skull #: lang/json/GENERIC_from_json.py -msgid "generic utensil" -msgid_plural "generic utensils" +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "corpse" +msgid_plural "corpses" +msgstr[0] "труп" +msgstr[1] "трупи" +msgstr[2] "трупів" +msgstr[3] "труп" + +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED +#: lang/json/GENERIC_from_json.py +msgid "carcass" +msgid_plural "carcasses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py -msgid "generic dish" -msgid_plural "generic dishes" +#, python-format +msgid "skinned %s" +msgid_plural "skinned %s" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py -msgid "generic cook pot" -msgid_plural "generic cook pots" -msgstr[0] "звичайна каструля" -msgstr[1] "звичайні каструлі" -msgstr[2] "звичайних каструль" -msgstr[3] "звичайна каструля" - -#: lang/json/GENERIC_from_json.py -msgid "ceramic plate" -msgid_plural "ceramic plates" +msgid "carcass quarter" +msgid_plural "carcass quarters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ceramic plate -#: lang/json/GENERIC_from_json.py -msgid "A ceramic dinner plate, unremarkable in every way." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "ceramic bowl" -msgid_plural "ceramic bowls" -msgstr[0] "керамічна миска" -msgstr[1] "керамічні миски" -msgstr[2] "керамічних мисок" -msgstr[3] "керамічна миска" - -#. ~ Description for ceramic bowl -#: lang/json/GENERIC_from_json.py -msgid "A perfectly ordinary ceramic soup bowl." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "ceramic cup" -msgid_plural "ceramic cups" -msgstr[0] "керамічна чашка" -msgstr[1] "керамічні чашки" -msgstr[2] "керамічних чашок" -msgstr[3] "керамічні чашки" - -#. ~ Description for ceramic cup +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "A light ceramic teacup. Quite classy." +msgid "A dead body." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "coffee mug" -msgid_plural "coffee mugs" +msgid "desiccated corpse" +msgid_plural "desiccated corpses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for coffee mug +#. ~ Description for desiccated corpse #: lang/json/GENERIC_from_json.py -msgid "A ceramic coffee cup with a logo on the side." +msgid "" +"A dead body, badly mangled and desiccated. It seems whatever killed him did" +" so with a gigantic claw." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "The side of the mug reads 'World's Greatest Dad'." +msgid "A dead human body." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "The side of the mug reads 'World's Greatest Mom'." +msgid "A dead body of a middle-aged man." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "" -"The side of the mug has a picture of a happy looking family printed on'." +msgid "A dead body of a young woman." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "" -"The side of the mug has a comical green face on it and says 'I'm a zombie " -"without my coffee!'." +msgid "A dead body of a little boy." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "The side of the mug reads 'I'd rather be playing open source games'." +msgid "A dead body of a little girl." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "The side of the mug reads 'If you think I'm bad, look in a mirror'." +msgid "" +"The dead body of a small child. Their corpse bears a calm facial " +"expression, as if they died instantly." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "The side of the mug has a diagram of a caffeine molecule." +msgid "" +"The dead body of a child, riddled by bullets to the extent that you can no " +"longer tell their gender." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "The side of the mug has a cute picture of a sleeping cat." +msgid "" +"The corpse of an infant. A single small-caliber bullet has been put through" +" its skull." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "The mug is printed in leopard spots." +msgid "" +"A dead body of an old woman. Both of her earlobes are torn, several fingers" +" on her hands have been chopped off, and several teeth have been knocked " +"out." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "The mug is blue and looks like a TARDIS." +msgid "A dead body, coated in congealed blood." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "The side of the mug reads 'STAR WARS' over a picture of a lightsaber." +msgid "" +"A dead body with a frightful grimace. He appears to have been horribly " +"mangled prior to his death." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "The side of the mug reads 'House Stark' and depicts a fictional crest." +msgid "An awful, almost unidentifiable mass of charred flesh." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py -msgid "The side of the mug reads 'My fandom could beat up your fandom'. " +msgid "A dead body with a gaping stab wound in its back." msgstr "" #: lang/json/GENERIC_from_json.py msgid "" -"The side of the mug reads 'Do you even linux, bro?' and has a picture of a " -"muscular penguin." +"The bloody corpse of a young man. He has been stabbed repeatedly in the " +"jugular and throat with a small blade." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "The side of the mug reads 'I wish this was wine!'" +msgid "" +"The dead body of a person. They look to have been skewered through with a " +"large sharp implement." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" +msgid "" +"The corpse of a tall middle-aged woman. She appears to have many stab " +"wounds up her legs and thighs." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "A white ceramic coffee mug. It says \"World's Best Dad!\" on the side." +msgid "" +"The corpse of a small old lady, her face caked in blood and missing an eye." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py msgid "" -"A white ceramic coffee mug. It says \"Great Ideas start with Great " -"Coffee.\" on the side." +"The dead body of a person. Their forehead bears a large bullet entrance " +"wound. An even larger exit wound is present on the back of their head." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py msgid "" -"A white ceramic coffee mug. On the side is a glass of wine and a cup of " -"coffee both saying \"She loves me more!\"" +"The upper half of a dead body, as if torn apart with enormous force. Some " +"organs are hanging out." msgstr "" +#. ~ Description for corpse #: lang/json/GENERIC_from_json.py msgid "" -"A white ceramic coffee mug. It says \"This is a designer mug. It fuels " -"designers.\" on the side." +"A half-decapitated dead body. It is unclear what could have caused such a " +"wound." msgstr "" #: lang/json/GENERIC_from_json.py msgid "" -"A white ceramic coffee mug. On the side is a winking woman in lingerie." +"The corpse of a young blond woman shot several times in the back with a low-" +"caliber weapon." msgstr "" #: lang/json/GENERIC_from_json.py msgid "" -"A white ceramic coffee mug. It says \"You're my definition of perfect. " -"<3\" on the side." +"An androgynous-looking corpse gored by arms fire chest to thighs, leaving " +"the face eerily pristine." msgstr "" #: lang/json/GENERIC_from_json.py msgid "" -"A white ceramic coffee mug. It says \"You've been poisoned.\" on the " -"bottom, inside of it." +"The corpse of a seemingly older male. He appears to have been shot in the " +"forehead at a very close range leaving you a good view of his brain matter." msgstr "" #: lang/json/GENERIC_from_json.py msgid "" -"A white ceramic coffee mug. On the side is a dog wearing a hat, sat in a " -"burning room, saying \"This is fine.\"" +"The corpse of a middle-aged woman, her legs and arms covered in blood. She " +"appears to have been shot in the thigh." msgstr "" #: lang/json/GENERIC_from_json.py msgid "" -"A white ceramic coffee mug. There's a tiny dinosaur sculpture inside of it." +"The corpse of a young man who appears to have been shot to death. His right" +" arm is only barely still attached to his shoulder." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "A white ceramic coffee mug. It says \"I <3 Massachusetts.\" on the side." +msgid "" +"The corpse of a tall woman unblemished but for the bloody hole atop her " +"head, its thick black hair intermixed now with brain, viscera and shotgun " +"pellets." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "tin plate" -msgid_plural "tin plates" +msgid "broken exodii worker" +msgid_plural "broken exodii workers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tin plate +#. ~ Description for broken exodii worker #: lang/json/GENERIC_from_json.py -msgid "A tin dinner plate, lightweight and clanky." +msgid "A broken exodii worker. It's possible it could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "tin cup" -msgid_plural "tin cups" +msgid "broken exodii quadruped" +msgid_plural "broken exodii quadrupeds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tin cup +#. ~ Description for broken exodii quadruped #: lang/json/GENERIC_from_json.py msgid "" -"An enameled tin cup. Great for camping or for prison use; makes a wonderful" -" sound when clanged along bars." +"A broken exodii walker. Still looks intimidating despite being permanently " +"inoperative, possibly due to the sheer size and mass. Could be gutted for " +"parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pewter bowl" -msgid_plural "pewter bowls" -msgstr[0] "олов'яна миска" -msgstr[1] "олов'яні миски" -msgstr[2] "олов'яних мисок" -msgstr[3] "олов'яна миска" +msgid "broken exodii turret" +msgid_plural "broken exodii turrets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for pewter bowl +#. ~ Description for broken exodii turret #: lang/json/GENERIC_from_json.py -msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." +msgid "" +"A broken exodii turret. Still looks intimidating despite being permanently " +"inoperative, possibly due to the sheer size and mass. Could be gutted for " +"parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "glass plate" -msgid_plural "glass plates" +msgid "broken exodii balloon-drone" +msgid_plural "broken exodii balloon-drones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for glass plate +#. ~ Description for broken exodii balloon-drone #: lang/json/GENERIC_from_json.py -msgid "A glass dinner plate, for people who don't have clumsy children." +msgid "" +"A broken balloon drone. The balloon has been shredded, but most of the " +"chassis is still intact. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "drinking glass" -msgid_plural "drinking glasses" -msgstr[0] "склянка" -msgstr[1] "склянки" -msgstr[2] "склянок" -msgstr[3] "склянка" +msgid "trifacet remains" +msgid_plural "trifacet remains" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for drinking glass +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py -msgid "A tall drinking glass." +msgid "" +"A split open facet reveals an interior full of closely fit geometric " +"primitives among chipped strips of milk-white quartz. Lending you no clues " +"as to how this machine ever functioned." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wine glass" -msgid_plural "wine glasses" +msgid "ammo belt linkage" +msgid_plural "ammo belt linkages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wine glass +#. ~ Description for ammo belt linkage #: lang/json/GENERIC_from_json.py -msgid "" -"A stemmed drinking glass that makes you feel very fancy when you drink from " -"it." +msgid "A small metal linkage from a disintegrating ammo belt." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "glass bowl" -msgid_plural "glass bowls" -msgstr[0] "скляна миска" -msgstr[1] "скляні миски" -msgstr[2] "скляних мисок" -msgstr[3] "скляна миска" +msgid ".223 ammo belt linkage" +msgid_plural ".223 ammo belt linkages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for glass bowl #: lang/json/GENERIC_from_json.py -msgid "A glass bowl for soup or dessert." -msgstr "" +msgid ".308 ammo belt linkage" +msgid_plural ".308 ammo belt linkages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "plastic plate" -msgid_plural "plastic plates" +msgid "40mm grenade belt linkage" +msgid_plural "40mm grenade belt linkages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plastic plate #: lang/json/GENERIC_from_json.py -msgid "A durable plastic plate, the sort you might use as patio dishware." -msgstr "" +msgid ".50 ammo belt linkage" +msgid_plural ".50 ammo belt linkages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "plastic tumbler" -msgid_plural "plastic tumblers" +msgid "generic grooming" +msgid_plural "generic groomings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plastic tumbler -#: lang/json/GENERIC_from_json.py -msgid "" -"A durable plastic drinking vessel. This one is made of clear acrylic and " -"looks almost like glass." +#. ~ Description for generic grooming +#. ~ Description for generic silverware +#. ~ Description for generic utensil +#. ~ Description for generic silverware +#. ~ Description for generic dish +#. ~ Description for generic cook pot +#. ~ Description for generic kitchen knife +#: lang/json/GENERIC_from_json.py lang/json/GENERIC_from_json.py +#: lang/json/TOOL_from_json.py +msgid "generic item template" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "plastic tupperware" -msgid_plural "plastic tupperwares" +msgid "soap dish" +msgid_plural "soap dishes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plastic tupperware +#. ~ Description for soap dish #: lang/json/GENERIC_from_json.py msgid "" -"A piece of plastic tupperware with a tupperware lid. Holds 750 ml of " -"liquid." +"A shallow dish for holding a bar of soap. It has ridges to help drain water" +" away from the dish. Not the most exciting of items." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "kiddie bowl" -msgid_plural "kiddie bowls" +msgid "shaving razor" +msgid_plural "shaving razors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for kiddie bowl +#. ~ Description for shaving razor #: lang/json/GENERIC_from_json.py -msgid "A plastic bowl designed for use by children." +msgid "" +"A razor blade on a comfortable handle. Much easier to shave with than a " +"loose razor." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "This bowl is decorated with cartoon bears." +msgid "toothbrush" +msgid_plural "toothbrushes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic brush with soft bristles for cleaning your teeth." msgstr "" #: lang/json/GENERIC_from_json.py msgid "" -"There is a drawing of Yoda at the bottom of this bowl, and the words 'Eaten " -"it all, you have'." +"A plastic brush with soft bristles for cleaning your teeth. It has a cheap," +" blocky handle and is likely meant to be disposable." msgstr "" #: lang/json/GENERIC_from_json.py msgid "" -"This bowl is covered in cartoon dogs and a logo that reads 'Paw Patrol'." +"A combination toothbrush and gum massager. It has an ergonomic silicone " +"grip. Luxurious!" msgstr "" #: lang/json/GENERIC_from_json.py msgid "" -"There are orange and blue fish chasing each other around the rim of this " -"bowl." +"A plastic brush with soft bristles for cleaning your teeth. The blue and " +"white pattern on the handle implies cleanliness." msgstr "" #: lang/json/GENERIC_from_json.py msgid "" -"This bowl is shaped like the head of a silly frog with the opening forming " -"the mouth." +"A short toothbrush designed for children. It has a wide-eyed cartoon pony " +"on the handle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "There are cute farm animals decorating this bowl." +msgid "" +"A short toothbrush designed for children. It has a grinning red racecar on " +"the handle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sippy cup" -msgid_plural "sippy cups" +msgid "dirty toothbrush" +msgid_plural "dirty toothbrushes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sippy cup -#: lang/json/GENERIC_from_json.py -msgid "A plastic cup with a spill-proof lid, designed for use by children." -msgstr "" - +#. ~ Description for dirty toothbrush #: lang/json/GENERIC_from_json.py -msgid "This cup is decorated with cartoon bears." +msgid "" +"Someone has been using this plastic toothbrush to clean grease or muck. It " +"is now irrevocably dirty." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "" -"This cup has a cartoony picture of the Avengers wrapped around the side." -msgstr "" +msgid "hairbrush" +msgid_plural "hairbrushes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +#. ~ Description for hairbrush #: lang/json/GENERIC_from_json.py -msgid "This sippy cup is made of plastic in bright clashing colors." +msgid "An instrument of hair torture." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "This is a simple blue sippy cup with tooth marks around the spout." +msgid "" +"An instrument of hair torture. There are round safety tips on the bristles." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "This cup is decorated to look like a pokeball." +msgid "An old-fashioned hair-straightening device with a faux-wood handle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "There are cute anthropomorphic fruits decorating this cup." +msgid "A soft, cushioned hairbrush. The shiny chrome design appears modern." msgstr "" #: lang/json/GENERIC_from_json.py msgid "" -"This sippy cup is decorated with crayon-like text that reads 'I love you'." +"A tacky kid's hairbrush. The cartoon whale on the handle seems friendly " +"enough." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fork" -msgid_plural "forks" +msgid "hair curler" +msgid_plural "hair curlers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fork +#. ~ Description for hair curler #: lang/json/GENERIC_from_json.py msgid "" -"A fork, if you stab something with it, you eat it right away. Wait… " -"nevermind." +"A soft plastic cylinder you can wrap a lock of your hair around to curl it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "plastic fork" -msgid_plural "plastic forks" -msgstr[0] "пластикова виделка" -msgstr[1] "пластикові виделки" -msgstr[2] "пластикових виделок" -msgstr[3] "пластикові виделки" +msgid "dental floss" +msgid_plural "rolls of dental floss" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for plastic fork +#. ~ Description for dental floss #: lang/json/GENERIC_from_json.py msgid "" -"A plastic disposable fork. Great for picnic lunches in the post apocalyptic" -" wasteland." +"Twenty-five yards of finely waxed thread wound up inside a plastic " +"container. Perfect for picking bits of smoked meat out of your teeth. " +"Disassemble to use the thread for something else." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "spoon" -msgid_plural "spoons" +msgid "comb" +msgid_plural "combs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for spoon +#. ~ Description for comb #: lang/json/GENERIC_from_json.py -msgid "Do not try to bend the spoon. That is impossible." +msgid "A grooming tool with teeth for straightening your hair." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "plastic spoon" -msgid_plural "plastic spoons" -msgstr[0] "пластикова ложка" -msgstr[1] "пластикові ложки" -msgstr[2] "пластикових ложок" -msgstr[3] "пластикові ложки" +msgid "" +"Somehow, a few teeth have already broken off the end of this otherwise " +"pristine comb." +msgstr "" -#. ~ Description for plastic spoon #: lang/json/GENERIC_from_json.py -msgid "A plastic disposable spoon. Easier to bend than the metal variety." +msgid "" +"A grooming tool with teeth for straightening your hair. This one is narrow," +" black and austere." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "kiddie spoon" -msgid_plural "kiddie spoons" +msgid "" +"A comb made of soft plastic. Its tortoiseshell pattern makes it seem " +"antique." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A comb which folds on a hinge, in case you want to look like a greaser." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "toilet plunger" +msgid_plural "toilet plungers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for kiddie spoon +#. ~ Description for toilet plunger #: lang/json/GENERIC_from_json.py -msgid "A plastic spoon designed for use by children." +msgid "" +"A rubber-tipped tool for unclogging pipes, or a club for an immature " +"survivor." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "This spoon is striped in bright primary colors." +msgid "professional plunger" +msgid_plural "professional plungers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for professional plunger +#: lang/json/GENERIC_from_json.py +msgid "" +"This hollow plastic toilet plunger's bell compresses like an accordion. It " +"is efficient at its intended purpose, and complete rubbish as a weapon." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "This spoon is styled to look like a bulldozer." +msgid "toilet paper" +msgid_plural "rolls of toilet paper" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for toilet paper +#: lang/json/GENERIC_from_json.py +msgid "A luxurious remnant of civilization." msgstr "" #: lang/json/GENERIC_from_json.py msgid "" -"This spoon is covered in cartoon dogs and a logo that reads 'Paw Patrol'." +"Imagine the thinnest, most disposable paper you could possibly make. Now " +"imagine something thinner than that." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "There is a cute cartoon bear on the handle of this spoon." +msgid "" +"This roll of toilet paper is two-ply and quilted, for vandalizing houses " +"more comfortably than ever." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "There are cartoon cats all over this spoon." +msgid "" +"This brand of toilet paper is designed to dissolve completely in water!" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "This spoon has a silhouette of a giraffe going down the handle." +msgid "" +"Images of your least favorite politician are printed on each individual " +"sheet." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "butter knife" -msgid_plural "butter knives" +msgid "" +"A luxurious remnant of civilization. The splinters of unprocessed wood " +"visible in this one make it seem less luxurious, though." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "hair dryer" +msgid_plural "hair dryers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for butter knife +#. ~ Description for hair dryer #: lang/json/GENERIC_from_json.py msgid "" -"A dull knife, absolutely worthless in combat. Excellent for spreading soft " -"things on bread." +"This tool dries your hair by pushing air through a coil of hot wires. " +"Without a functioning power grid, it is a motorized paper weight." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "plastic knife" -msgid_plural "plastic knives" -msgstr[0] "пластиковий ніж" -msgstr[1] "пластикових ножа" -msgstr[2] "пластикових ножів" -msgstr[3] "пластикові ножі" +msgid "curling iron" +msgid_plural "curling irons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for plastic knife +#. ~ Description for curling iron #: lang/json/GENERIC_from_json.py msgid "" -"A plastic butter knife. It's actually a bit sharper than its metal " -"counterpart, but that doesn't make it any more effective as a weapon." +"A wand made of heat-resistant ceramics. When plugged into an outlet, it is " +"hot enough to shape your hair into curls. Too bad the power's out." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "plastic straw" -msgid_plural "plastic straws" +msgid "toilet brush" +msgid_plural "toilet brushes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plastic straw +#. ~ Description for toilet brush #: lang/json/GENERIC_from_json.py -msgid "A plastic straw, for drinking things and making litter" +msgid "" +"Zombies cannot be intimidated or humiliated, so this stiff brush is only " +"useful for scouring toilet bowls." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "corkscrew" -msgid_plural "corkscrews" +msgid "lice comb" +msgid_plural "lice combs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for corkscrew +#. ~ Description for lice comb #: lang/json/GENERIC_from_json.py msgid "" -"Many a pleasant date has been ruined by forgetting this important tool." +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vegetable peeler" -msgid_plural "vegetable peelers" +msgid "bath toy" +msgid_plural "bath toys" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vegetable peeler +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "" -"This is a simple tool for peeling the outer skin off fruit and veggies " -"without stabbing yourself." +"A black rubber duck with large white eyes. Designed to dropped in the bath." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bottle opener" -msgid_plural "bottle openers" +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bottle opener -#: lang/json/GENERIC_from_json.py -msgid "A simple lever for popping open bottles." -msgstr "" - +#. ~ Description for electric toothbrush #: lang/json/GENERIC_from_json.py -msgid "" -"This bottle opener is shaped like a zombie head, the mouth pops open the " -"bottle." +msgid "A plastic electric toothbrush." msgstr "" +#. ~ Description for plastic bottle #: lang/json/GENERIC_from_json.py -msgid "This bottle opener is shaped like a lightsaber." +msgid "A squeezable used bottle to hold various bathroom soaps" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "This bottle opener is shaped like a revolver." +msgid "A bottle for special shampoo for dyed hair." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "" -"This bottle opener is engraved with the words 'I'll die before I give you my" -" beer'." +msgid "A plain white bottle made to contain the cheapest shampoo." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "" -"This bottle opener is emblazoned with a logo for an HVAC contracting " -"company." +msgid "A bottle for body wash. This one is called 'Afrika'." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "This bottle opener reads 'Corporate Team Building Exercise 1999'." +msgid "A bottle for hair conditioner." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "This bottle opener reads 'I'd rather be drinking whiskey'." +msgid "A colorful bottle of body and hair wash marketed for children." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "This bottle opener is shaped like a phaser." +msgid "A plain white bottle made to contain the cheapest hair conditioner." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "This novelty bottle opener is designed to look like a hobo clown." +msgid "A plain white bottle made to contain the cheapest shower jell." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "spork" -msgid_plural "sporks" +msgid "set of dentures" +msgid_plural "sets of dentures" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for spork +#. ~ Description for set of dentures #: lang/json/GENERIC_from_json.py msgid "" -"The bastardized hybrid of a spoon and fork, with all the power and " -"capabilities of both in a more annoying to use package." +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "foon" -msgid_plural "foons" +msgid "pillowcase" +msgid_plural "pillowcases" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for foon +#. ~ Description for pillowcase #: lang/json/GENERIC_from_json.py -msgid "Clearly the superior instrument. Sporks are just imitators." +msgid "A simple cotton pillowcase." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "chopsticks" -msgid_plural "pairs of chopsticks" +msgid "Casing from ammunition cartridge" +msgid_plural "Casing from ammunition cartridges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chopsticks -#: lang/json/GENERIC_from_json.py -msgid "" -"One of the most popular eating utensils in the world. Does double duty as a" -" way of dealing with especially fragile vampires." -msgstr "" - #: lang/json/GENERIC_from_json.py -msgid "ladle" -msgid_plural "ladles" +msgid ".223 casing" +msgid_plural ".223 casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ladle +#. ~ Description for .223 casing #: lang/json/GENERIC_from_json.py -msgid "When you need to scoop some soup, this is the utensil for you." +msgid "An empty casing from a .223 round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "whisk" -msgid_plural "whisks" +msgid ".22 LR casing" +msgid_plural ".22 LR casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for whisk +#. ~ Description for .22 LR casing #: lang/json/GENERIC_from_json.py -msgid "" -"Also known as a 'wire whip', this is a less effective weapon than it sounds." +msgid "An empty casing from a .22 LR round. These can't be hand-reloaded." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "potato masher" -msgid_plural "potato mashers" +msgid "unused .22 casing" +msgid_plural "unused .22 casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for potato masher +#. ~ Description for unused .22 casing #: lang/json/GENERIC_from_json.py -msgid "" -"This tool can mash potatoes and soft root vegetables; it cannot do the " -"twist." +msgid "An unfired, like-new .22 round casing, with the primer still intact." msgstr "" +"Нестріляна гільза калібру .22, з неушкодженим капсулем. Виглядає як нова." #: lang/json/GENERIC_from_json.py -msgid "garlic press" -msgid_plural "garlic presses" +msgid ".30-06 casing" +msgid_plural ".30-06 casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for garlic press +#. ~ Description for .30-06 casing #: lang/json/GENERIC_from_json.py -msgid "This tool can squash a clove or two of garlic into a fine paste." +msgid "An empty casing from a .30-06 round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "can opener" -msgid_plural "can openers" +msgid ".270 Winchester casing" +msgid_plural ".270 Winchester casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for can opener +#. ~ Description for .270 Winchester casing #: lang/json/GENERIC_from_json.py -msgid "It's not hard to open cans without this, but it's way messier." +msgid "An empty casing from a .270 Winchester round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "carving fork" -msgid_plural "carving forks" +msgid ".300 Win Mag casing" +msgid_plural ".300 Win Mag casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for carving fork +#. ~ Description for .300 Win Mag casing #: lang/json/GENERIC_from_json.py -msgid "" -"It's like a tiny pitchfork, or a very large dinner fork. You use it to hold" -" meat still while you slice it." +msgid "An empty casing from a .300 Winchester Magnum round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "spatula" -msgid_plural "spatulas" +msgid ".308 casing" +msgid_plural ".308 casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for spatula +#. ~ Description for .308 casing #: lang/json/GENERIC_from_json.py -msgid "" -"A rubber scraper for making sure you get every last scrap of cookie dough." +msgid "An empty casing from a .308 round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "rolling pin" -msgid_plural "rolling pins" +msgid "7.62x51mm casing" +msgid_plural "7.62x51mm casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rolling pin -#: lang/json/GENERIC_from_json.py -msgid "" -"A stout piece of hardwood, turned and sanded smooth, with rounded handles at" -" the ends. This timeless kitchen tool also doubles as a very effective " -"club." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "pot" -msgid_plural "pots" -msgstr[0] "каструля" -msgstr[1] "каструлі" -msgstr[2] "каструль" -msgstr[3] "каструля" - -#. ~ Description for pot -#: lang/json/GENERIC_from_json.py -msgid "Useful for boiling water when cooking spaghetti and more." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "cast-iron pot" -msgid_plural "cast-iron pots" -msgstr[0] "чавунна каструля" -msgstr[1] "чавунні каструлі" -msgstr[2] "чавунних каструль" -msgstr[3] "чавунна каструля" - -#. ~ Description for cast-iron pot -#: lang/json/GENERIC_from_json.py -msgid "" -"This hefty black pot is made from cast iron and coated in a sturdy enamel." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "copper pot" -msgid_plural "copper pots" -msgstr[0] "мідна каструля" -msgstr[1] "мідні каструлі" -msgstr[2] "мідних каструль" -msgstr[3] "мідна каструля" - -#. ~ Description for copper pot +#. ~ Description for 7.62x51mm casing #: lang/json/GENERIC_from_json.py -msgid "" -"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." +msgid "An empty casing from a 7.62x51mm M80 round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "casserole" -msgid_plural "casseroles" +msgid ".32 ACP casing" +msgid_plural ".32 ACP casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for casserole +#. ~ Description for .32 ACP casing #: lang/json/GENERIC_from_json.py -msgid "" -"A ceramic pot made for both cooking and serving, particularly one-pot " -"dinners." +msgid "An empty casing from a .32 ACP round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "stock pot" -msgid_plural "stock pots" +msgid ".38 Special casing" +msgid_plural ".38 Special casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for stock pot -#: lang/json/GENERIC_from_json.py -msgid "" -"A large pot for making soup stocks. You could fit a whole turkey in there, " -"with a bit of shoving." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "canning pot" -msgid_plural "canning pots" -msgstr[0] "каструля для консервації" -msgstr[1] "каструлі для консервації" -msgstr[2] "каструль для консервації" -msgstr[3] "каструля для консервації" - -#. ~ Description for canning pot +#. ~ Description for .38 Special casing #: lang/json/GENERIC_from_json.py -msgid "" -"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." +msgid "An empty casing from a .38 Special round." msgstr "" -"Дуже велика 25-літрова каструля, призначена головним чином для консервування" -" скляних банок на водяній бані, хоча в ній можна готувати і звичайну їжу. " -"Таке консервування потребує багато води. Якщо ви консервуєте пару банок за " -"раз, треба наповнити кастрюлю камінням або чимось подібним, щоб вода накрила" -" кришки." #: lang/json/GENERIC_from_json.py -msgid "cast-iron frying pan" -msgid_plural "cast-iron frying pans" +msgid ".38 Super casing" +msgid_plural ".38 Super casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cast-iron frying pan +#. ~ Description for .38 Super casing #: lang/json/GENERIC_from_json.py -msgid "" -"A cast-iron pan. Makes a decent melee weapon, and is used for cooking." +msgid "An empty casing from a .38 Super round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "steel frying pan" -msgid_plural "steel frying pans" +msgid ".40 S&W casing" +msgid_plural ".40 S&W casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for steel frying pan +#. ~ Description for .40 S&W casing #: lang/json/GENERIC_from_json.py -msgid "" -"A steel frying pan. Makes a decent melee weapon, and is used for cooking." +msgid "An empty casing from a .40 S&W round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "copper frying pan" -msgid_plural "copper frying pans" +msgid "10mm Auto casing" +msgid_plural "10mm Auto casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for copper frying pan +#. ~ Description for 10mm Auto casing #: lang/json/GENERIC_from_json.py -msgid "" -"A copper frying pan, coated in a thin layer of tin. Makes a decent melee " -"weapon, and is used for cooking." +msgid "An empty casing from a 10mm Auto round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "makeshift pot" -msgid_plural "makeshift pots" +msgid "40x46mm M212 casing" +msgid_plural "40x46mm M212 casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift pot +#. ~ Description for 40x46mm M212 casing #: lang/json/GENERIC_from_json.py msgid "" -"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." +"A large casing from a spent 40x46mm cartridge, which used to hold a less-" +"lethal projectile." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "makeshift copper pot" -msgid_plural "makeshift copper pots" +msgid "40x46mm M118 casing" +msgid_plural "40x46mm M118 casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift copper pot +#. ~ Description for 40x46mm M118 casing #: lang/json/GENERIC_from_json.py msgid "" -"A cooking pot crudely hammered out of copper. Good enough to cook food and " -"boil water, but not as useful as proper cookware." +"A large casing from a spent 40x46mm cartridge, which used to hold a HEDP " +"grenade. Suitable for reloading with buckshot, slug or flechette loads." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "kettle" -msgid_plural "kettles" +msgid "40x46mm M199 casing" +msgid_plural "40x46mm M199 casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for kettle +#. ~ Description for 40x46mm M199 casing #: lang/json/GENERIC_from_json.py -msgid "A stovetop kettle for boiling water." +msgid "" +"A large casing from a spent 40x46mm cartridge, which used to hold a buckshot" +" load. Suitable for reloading with buckshot, slug or flechette loads." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mesh colander" -msgid_plural "mesh colanders" +msgid "40x46mm M195 casing" +msgid_plural "40x46mm M195 casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mesh colander +#. ~ Description for 40x46mm M195 casing #: lang/json/GENERIC_from_json.py msgid "" -"A stainless steel mesh colander, for washing rice, vegetables or straining " -"liquid off from noodles or other foods." +"A large casing from a spent 40x46mm cartridge, which used to hold a tear gas" +" canister." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "splatter guard" -msgid_plural "splatter guards" +msgid "40x53mm M169 casing" +msgid_plural "40x53mm M169 casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for splatter guard +#. ~ Description for 40x53mm M169 casing #: lang/json/GENERIC_from_json.py msgid "" -"A stainless steel mesh screen for preventing flying oil from getting all " -"over your nice counters (or you) when frying." +"A large casing from a spent 40x53mm cartridge. Suitable for reloading with " +"buckshot, slug or flechette loads." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cutting board" -msgid_plural "cutting boards" +msgid ".44 Magnum casing" +msgid_plural ".44 Magnum casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cutting board +#. ~ Description for .44 Magnum casing #: lang/json/GENERIC_from_json.py -msgid "" -"A large flat piece of wood for chopping vegetables on without ruining your " -"knife or your countertop." +msgid "An empty casing from a .44 Magnum round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "meal tray" -msgid_plural "meal trays" +msgid ".454 Casull casing" +msgid_plural ".454 Casull casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for meal tray +#. ~ Description for .454 Casull casing #: lang/json/GENERIC_from_json.py -msgid "" -"A stainless steel tray used for serving food in cafeterias, mess halls, or " -"similar places." +msgid "An empty casing from a .454 Casull round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pizza cutter" -msgid_plural "pizza cutters" +msgid ".45 ACP casing" +msgid_plural ".45 ACP casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pizza cutter +#. ~ Description for .45 ACP casing #: lang/json/GENERIC_from_json.py -msgid "A utensil used for cutting pizza. Practically useless in combat." +msgid "An empty casing from a .45 ACP round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "icecream scoop" -msgid_plural "icecream scoops" +msgid ".45 Colt casing" +msgid_plural ".45 Colt casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for icecream scoop +#. ~ Description for .45 Colt casing #: lang/json/GENERIC_from_json.py -msgid "" -"A utensil used for scooping icecream into bowls. It has a spring powered " -"lever to assist." +msgid "An empty casing from a .45 Colt round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cheese grater" -msgid_plural "cheese graters" +msgid ".45-70 casing" +msgid_plural ".45-70 casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cheese grater +#. ~ Description for .45-70 casing #: lang/json/GENERIC_from_json.py -msgid "" -"A stainless steel cheese grater with a plastic grip. It is used to shred " -"cheese." +msgid "An empty casing from a .45-70 Government round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "XLR cable" -msgid_plural "XLR cables" +msgid "4.6x30mm casing" +msgid_plural "4.6x30mm casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XLR cable +#. ~ Description for 4.6x30mm casing #: lang/json/GENERIC_from_json.py -msgid "" -"A balanced cable used for sending audio signal. The connectors have three " -"prongs." +msgid "An empty casing from a 4.6x30mm round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "speaker cable" -msgid_plural "speaker cables" +msgid ".460 Rowland casing" +msgid_plural ".460 Rowland casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for speaker cable +#. ~ Description for .460 Rowland casing #: lang/json/GENERIC_from_json.py msgid "" -"This audio cable connects one speaker to a powered head, or one speaker to " -"another." +"An empty casing from a .460 Rowland round. It looks deceptively like a " +".45ACP casing." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "instrument cable" -msgid_plural "instrument cables" +msgid "5x50mm hull" +msgid_plural "5x50mm hulls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for instrument cable +#. ~ Description for 5x50mm hull #: lang/json/GENERIC_from_json.py -msgid "" -"Known as an instrument cable because it is usually used to connect a guitar " -"to a powered amp, it is an unbalanced cable with 1/4\" male connectors on " -"each side." +msgid "An empty plastic hull from a 5x50mm flechette round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "headphones" -msgid_plural "headphones" +msgid ".500 S&W Magnum casing" +msgid_plural ".500 S&W Magnum casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for .500 S&W Magnum casing #: lang/json/GENERIC_from_json.py -msgid "" -"Typical headphones that cover your ears. A well-known brand that is very " -"high quality, with a detachable 1/8\" cable. Comes with a 1/8\" to 1/4\" " -"adaptor." +msgid "An empty casing from a .500 S&W Magnum round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "XLR microphone" -msgid_plural "XLR microphones" +msgid ".50 BMG casing" +msgid_plural ".50 BMG casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for XLR microphone +#. ~ Description for .50 BMG casing #: lang/json/GENERIC_from_json.py msgid "" -"A typical microphone used to record or amplify voice. Comes with a clip. " -"Has a 3-pin XLR connector on the bottom in order to connect to an amp." +"An empty casing from a .50 BMG round. These are rare, so you might want to " +"hold onto these." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "microphone stand" -msgid_plural "microphone stands" +msgid "5.45x39mm casing" +msgid_plural "5.45x39mm casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for microphone stand +#. ~ Description for 5.45x39mm casing #: lang/json/GENERIC_from_json.py -msgid "" -"A lightweight telescoping boom stand made of aluminum and painted black. " -"About 6' tall when full extended, or 3' when closed fully. Has threads for " -"a mic clip on one end." +msgid "An empty casing from a 5.45x39mm round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "guitar stand" -msgid_plural "guitar stands" +msgid "5.7x28mm casing" +msgid_plural "5.7x28mm casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for guitar stand +#. ~ Description for 5.7x28mm casing #: lang/json/GENERIC_from_json.py -msgid "" -"A small, oddly shaped piece of aluminum hardware with three legs. When " -"placed on the ground, this can support one guitar in an upright position." +msgid "An empty casing from a 5.7x28mm round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "plectrum" -msgid_plural "plectra" +msgid ".700 NX casing" +msgid_plural ".700 NX casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plectrum +#. ~ Description for .700 NX casing #: lang/json/GENERIC_from_json.py msgid "" -"A flat piece of plastic with a pointed tip, designed for plucking the " -"strings of a guitar or mandolin." +"An empty casing from a .700 NX round. These are rare, so you might want to " +"hold onto these." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mixer" -msgid_plural "mixers" +msgid "7.62x54mmR casing" +msgid_plural "7.62x54mmR casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mixer -#: lang/json/GENERIC_from_json.py -msgid "" -"A device with faders, switches, and knobs that mixes input signal and sends " -"it to two output XLR cables. (left and right)" -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "spare parts" -msgid_plural "spare parts" -msgstr[0] "витратний матеріал" -msgstr[1] "витратний матеріал" -msgstr[2] "витратний матеріал" -msgstr[3] "витратні матеріали" - -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for 7.62x54mmR casing #: lang/json/GENERIC_from_json.py -msgid "" -"Items with are not themselves useful but are instead requirements for " -"crafting or repairs" +msgid "An empty casing from a 7.62x54mmR round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "drive belt" -msgid_plural "drive belts" +msgid "7.62x39mm casing" +msgid_plural "7.62x39mm casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for drive belt +#. ~ Description for 7.62x39mm casing #: lang/json/GENERIC_from_json.py -msgid "" -"A synthetic rubber V-belt with steel reinforcement fibers commonly fitted to" -" engines or other industrial equipment." +msgid "An empty casing from a 7.62x39mm round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "makeshift drive belt" -msgid_plural "makeshift drive belts" +msgid "7.62x25mm casing" +msgid_plural "7.62x25mm casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift drive belt +#. ~ Description for 7.62x25mm casing #: lang/json/GENERIC_from_json.py -msgid "" -"An improvised belt useful for repairing engines or other industrial " -"equipment when no better alternative is available." +msgid "An empty casing from a 7.62x25mm round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "air filter" -msgid_plural "air filters" +msgid "9x19mm casing" +msgid_plural "9x19mm casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for air filter +#. ~ Description for 9x19mm casing #: lang/json/GENERIC_from_json.py -msgid "" -"A plastic box containing creped paper used to filter the air supply for " -"combustion engines or other industrial equipment." +msgid "An empty casing from a 9x19mm round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "makeshift air filter" -msgid_plural "makeshift air filters" +msgid ".357 SIG casing" +msgid_plural ".357 SIG casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift air filter +#. ~ Description for .357 SIG casing #: lang/json/GENERIC_from_json.py -msgid "" -"An improvised air filter useful for repairing engines or other industrial " -"equipment when no better alternative is available." +msgid "An empty casing from a .357 SIG round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "automotive filter" -msgid_plural "automotive filters" +msgid ".357 magnum casing" +msgid_plural ".357 magnum casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for automotive filter +#. ~ Description for .357 magnum casing #: lang/json/GENERIC_from_json.py -msgid "A steel can containing filter paper designed for automotive use." +msgid "An empty casing from a .357 magnum round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "makeshift automotive filter" -msgid_plural "makeshift automotive filters" +msgid "9x18mm casing" +msgid_plural "9x18mm casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift automotive filter +#. ~ Description for 9x18mm casing #: lang/json/GENERIC_from_json.py -msgid "" -"An improvised automotive filter useful for repairing engines or other " -"industrial equipment when no better alternative is available." +msgid "An empty casing from a 9x18mm round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "glow plug" -msgid_plural "glow plugs" +msgid ".380 ACP casing" +msgid_plural ".380 ACP casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for glow plug +#. ~ Description for .380 ACP casing #: lang/json/GENERIC_from_json.py -msgid "" -"A cylindrical heating device designed to be screwed in to a diesel engine to" -" aid starting in cold weather." +msgid "An empty casing from a .380 ACP round." msgstr "" -"Циліндричний нагрівальний пристрій, призначений для встановлення у дизельний" -" двигун, щоб той легше було завести у холодну погоду." #: lang/json/GENERIC_from_json.py -msgid "high-pressure pump" -msgid_plural "high-pressure pumps" +msgid "152mm ATGM tube" +msgid_plural "152mm ATGM tubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for high-pressure pump +#. ~ Description for 152mm ATGM tube #: lang/json/GENERIC_from_json.py msgid "" -"A complex mechanical pump capable of achieving high pressures. Far beyond " -"anything you could reasonably improvise." +"An empty steel tube which once contained a 152mm ATGM. Now it's essentially" +" just a huge pipe." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mechanical pump" -msgid_plural "mechanical pumps" +msgid "shotgun hull" +msgid_plural "shotgun hulls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mechanical pump +#. ~ Description for shotgun hull #: lang/json/GENERIC_from_json.py -msgid "" -"A simple cast iron mechanical impeller pump. It's not good for much of " -"anything on its own." +msgid "An empty hull from a shotgun shell." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "set of pipe fittings" -msgid_plural "sets of pipe fittings" +msgid ".410 hull" +msgid_plural ".410 hulls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for set of pipe fittings +#. ~ Description for .410 hull #: lang/json/GENERIC_from_json.py -msgid "" -"A loose assortment of metal pipe fittings - end caps, pipe junctions, and " -"similar items. They can be used in a variety of projects." +msgid "An empty hull from a .410 shotgun shell." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "short cordage piece" -msgid_plural "short cordage pieces" +msgid ".300BLK casing" +msgid_plural ".300BLK casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for short cordage piece +#. ~ Description for .300BLK casing #: lang/json/GENERIC_from_json.py -msgid "" -"A 6-inch (or about 15 cm) long piece of natural cordage. Useful for some " -"purposes, but not as strong or flexible as proper string." +msgid "An empty casing from a .300 AAC Blackout round." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "long cordage piece" -msgid_plural "long cordage pieces" +msgid "one-dollar currency strap" +msgid_plural "one-dollar currency straps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for long cordage piece -#: lang/json/GENERIC_from_json.py -msgid "" -"A 3-foot (or about 90 cm) long piece of natural cordage. Useful for some " -"purposes, but not as strong or flexible as proper string." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "short string" -msgid_plural "short strings" -msgstr[0] "короткий шнур" -msgstr[1] "коротких шнура" -msgstr[2] "коротких шнурів" -msgstr[3] "короткі шнури" - -#. ~ Description for short string -#: lang/json/GENERIC_from_json.py -msgid "A 6-inch (or about 15 cm) long piece of cotton string." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "long string" -msgid_plural "long strings" -msgstr[0] "довга шворка" -msgstr[1] "довга шворка" -msgstr[2] "довга шворка" -msgstr[3] "довгі шворки" - -#. ~ Description for long string -#: lang/json/GENERIC_from_json.py -msgid "A 3-foot (or about 90 cm) long piece of cotton string." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "short rope" -msgid_plural "short ropes" -msgstr[0] "коротка мотузка" -msgstr[1] "короткі мотузки" -msgstr[2] "коротких мотузок" -msgstr[3] "коротка мотузка" - -#. ~ Use action holster_msg for short rope. -#: lang/json/GENERIC_from_json.py -#, no-python-format -msgid "You use an elaborate knot to tie your %s to your %s" -msgstr "" - -#. ~ Use action holster_prompt for short rope. -#: lang/json/GENERIC_from_json.py -msgid "Tie what to the rope?" -msgstr "" - -#. ~ Description for short rope -#: lang/json/GENERIC_from_json.py -msgid "" -"A 6-foot (or about 180 cm) long piece of rope. Wear it over a shoulder and " -"tie items to it as a temporary carrying solution." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "long rope" -msgid_plural "long ropes" -msgstr[0] "довга мотузка" -msgstr[1] "довгі мотузки" -msgstr[2] "довгих мотузок" -msgstr[3] "довга мотузка" - -#. ~ Description for long rope +#. ~ Description for one-dollar currency strap #: lang/json/GENERIC_from_json.py -msgid "" -"A 30-foot (or about 9 m) long rope. Useful for keeping yourself safe from " -"falls. Wear it over a shoulder and tie items to it as a temporary carrying " -"solution." +msgid "A hundred one-dollar bills held together by a blue currency strap." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "short vine" -msgid_plural "short vines" +msgid "two-dollar currency strap" +msgid_plural "two-dollar currency straps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for short vine +#. ~ Description for two-dollar currency strap #: lang/json/GENERIC_from_json.py -msgid "" -"A sturdy 6-foot (or about 180 cm) long vine. Wear it over a shoulder and " -"tie items to it as a temporary carrying solution." +msgid "A hundred two-dollar bills held together by a green currency strap." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "long vine" -msgid_plural "long vines" +msgid "five-dollar currency strap" +msgid_plural "five-dollar currency straps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for long vine +#. ~ Description for five-dollar currency strap #: lang/json/GENERIC_from_json.py -msgid "" -"A sturdy 30-foot (or about 9 m) long vine. Could easily be used as a rope." -" Strong enough to suspend a large corpse for butchering. Wear it over a " -"shoulder and tie items to it as a temporary carrying solution." +msgid "A hundred five-dollar bills held together by a red currency strap." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "short cordage rope" -msgid_plural "short cordage ropes" +msgid "ten-dollar currency strap" +msgid_plural "ten-dollar currency straps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for short cordage rope +#. ~ Description for ten-dollar currency strap #: lang/json/GENERIC_from_json.py -msgid "" -"A 6-foot (or about 180 cm) long piece of rough rope, woven from natural " -"cordage. Useful for some purposes, but not as strong or flexible as proper " -"rope. Wear it over a shoulder and tie items to it as a temporary carrying " -"solution." +msgid "A hundred ten-dollar bills held together by a yellow currency strap." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "long cordage rope" -msgid_plural "long cordage ropes" +msgid "twenty-dollar currency strap" +msgid_plural "twenty-dollar currency straps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for long cordage rope +#. ~ Description for twenty-dollar currency strap #: lang/json/GENERIC_from_json.py msgid "" -"A 30-foot (or about 9 m) long rough rope, woven from natural cordage. Not " -"strong enough to hold up to falls, but still useful for some things, such as" -" suspending large corpses for butchering. Wear it over a shoulder and tie " -"items to it as a temporary carrying solution." +"A hundred twenty-dollar bills held together by a violet currency strap." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "rubber band" -msgid_plural "rubber bands" +msgid "fifty-dollar currency strap" +msgid_plural "fifty-dollar currency straps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rubber band +#. ~ Description for fifty-dollar currency strap #: lang/json/GENERIC_from_json.py -msgid "" -"An elastic loop of rubber commonly used to hold multiple objects together." +msgid "A hundred fifty-dollar bills held together by a brown currency strap." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "badminton shuttlecock" -msgid_plural "shuttlecocks" +msgid "hundred-dollar currency strap" +msgid_plural "hundred-dollar currency straps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for badminton shuttlecock +#. ~ Description for hundred-dollar currency strap #: lang/json/GENERIC_from_json.py -msgid "A high-drag projectile used in the sport of badminton." +msgid "" +"A hundred hundred-dollar bills held together by a mustard currency strap." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "golf tee" -msgid_plural "golf tees" +msgid "Merch currency strap" +msgid_plural "Merch currency straps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for golf tee +#. ~ Description for Merch currency strap #: lang/json/GENERIC_from_json.py msgid "" -"A pin shaped piece of wood meant for holding a golf ball slightly off the " -"ground." +"A hundred Free Merchant Certified Notes held together by an improvised " +"currency strap. This can be exchanged for food, water, and other services " +"through the Free Merchants at the Refugee Center." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "golf ball" -msgid_plural "golf balls" +msgid "one-dollar currency bundle" +msgid_plural "one-dollar currency bundles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for golf ball +#. ~ Description for one-dollar currency bundle #: lang/json/GENERIC_from_json.py -msgid "A small ball with round indentations on it." +msgid "" +"A thousand one-dollar bills, divided evenly between ten blue currency " +"straps, and bundled together by with rubber bands." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pool ball" -msgid_plural "pool balls" -msgstr[0] "більярдна куля" -msgstr[1] "більярдні кулі" -msgstr[2] "більярдних куль" -msgstr[3] "більярдна куля" - -#. ~ Description for pool ball -#: lang/json/GENERIC_from_json.py -msgid "A colorful, hard ball. Essentially a rock." -msgstr "Яскраво забарвлена тверда куля. По суті, камінь." - -#: lang/json/GENERIC_from_json.py -msgid "bowling ball" -msgid_plural "bowling balls" +msgid "two-dollar currency bundle" +msgid_plural "two-dollar currency bundles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bowling ball +#. ~ Description for two-dollar currency bundle #: lang/json/GENERIC_from_json.py msgid "" -"A large, heavy ball. Before the apocalypse, its main purpose was to be " -"rolled along waxed floors." +"A thousand two-dollar bills, divided evenly between ten green currency " +"straps, and bundled together by with rubber bands." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "baseball" -msgid_plural "baseballs" +msgid "five-dollar currency bundle" +msgid_plural "five-dollar currency bundles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for baseball +#. ~ Description for five-dollar currency bundle #: lang/json/GENERIC_from_json.py msgid "" -"A baseball, good for throwing at enemies. Getting hit with one of these " -"hurts a lot more than you might think." +"A thousand five-dollar bills, divided evenly between ten red currency " +"straps, and bundled together by with rubber bands." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "football" -msgid_plural "footballs" +msgid "ten-dollar currency bundle" +msgid_plural "ten-dollar currency bundles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for football +#. ~ Description for ten-dollar currency bundle #: lang/json/GENERIC_from_json.py msgid "" -"An oval made of leather and string, it's easily thrown but does little " -"damage. You could take it apart into leather if you wanted." +"A thousand ten-dollar bills, divided evenly between ten yellow currency " +"straps, and bundled together by with rubber bands." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "basketball" -msgid_plural "basketballs" +msgid "twenty-dollar currency bundle" +msgid_plural "twenty-dollar currency bundles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for basketball +#. ~ Description for twenty-dollar currency bundle #: lang/json/GENERIC_from_json.py -msgid "A high-quality indoor basketball. You may throw it at zombies." +msgid "" +"A thousand twenty-dollar bills, divided evenly between ten violet currency " +"straps, and bundled together with two rubber bands." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "volleyball" -msgid_plural "volleyballs" +msgid "fifty-dollar currency bundle" +msgid_plural "fifty-dollar currency bundles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for volleyball +#. ~ Description for fifty-dollar currency bundle #: lang/json/GENERIC_from_json.py -msgid "A standard regulation volleyball." +msgid "" +"A thousand fifty-dollar bills, divided evenly between ten brown currency " +"straps, and bundled together with two rubber bands." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "beach volleyball" -msgid_plural "volleyballs" +msgid "hundred-dollar currency bundle" +msgid_plural "hundred-dollar currency bundles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for beach volleyball +#. ~ Description for hundred-dollar currency bundle #: lang/json/GENERIC_from_json.py msgid "" -"A brightly colored beach volleyball. It is slightly larger than a regular " -"white one." +"A thousand hundred-dollar bills, divided evenly between ten mustard currency" +" straps, and bundled together with two rubber bands." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "hockey puck" -msgid_plural "hockey pucks" +msgid "Merch currency bundle" +msgid_plural "Merch currency bundles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hockey puck +#. ~ Description for Merch currency bundle #: lang/json/GENERIC_from_json.py msgid "" -"A heavy circular block of solid rubber, normally used for playing hockey. " -"You can throw it to cause some serious harm." +"A thousand Free Merchant Certified Notes, divided evenly between ten " +"improvised currency straps, and bundled together with two rubber bands. " +"This can be exchanged for food, water, and other services through the Free " +"Merchants at the Refugee Center." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/MONSTER_from_json.py -#: lang/json/furniture_from_json.py -msgid "mannequin" -msgid_plural "mannequins" +#: lang/json/GENERIC_from_json.py +msgid "generic silverware" +msgid_plural "generic silverwares" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mannequin -#: lang/json/GENERIC_from_json.py -msgid "" -"A figure of an adult human, as seen in the display case at the mall. It " -"might be able to fool some zombies if it could attract their attention." -msgstr "" - #: lang/json/GENERIC_from_json.py -msgid "makeshift bayonet" -msgid_plural "makeshift bayonets" +msgid "generic utensil" +msgid_plural "generic utensils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift bayonet -#: lang/json/GENERIC_from_json.py -msgid "" -"A makeshift version of a bayonet that consists of a mere spike with some " -"string." -msgstr "" - #: lang/json/GENERIC_from_json.py -msgid "war flail" -msgid_plural "war flails" +msgid "generic dish" +msgid_plural "generic dishes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for war flail #: lang/json/GENERIC_from_json.py -msgid "" -"This is a stout pole with a large steel flanged mace head on a short chain " -"attached to it, based on the peasant flail agricultural tool except now with" -" a metal head and made to thresh people in metal armor rather than grain." -msgstr "" +msgid "generic cook pot" +msgid_plural "generic cook pots" +msgstr[0] "звичайна каструля" +msgstr[1] "звичайні каструлі" +msgstr[2] "звичайних каструль" +msgstr[3] "звичайна каструля" #: lang/json/GENERIC_from_json.py -msgid "peasant flail" -msgid_plural "peasant flails" +msgid "ceramic plate" +msgid_plural "ceramic plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for peasant flail +#. ~ Description for ceramic plate #: lang/json/GENERIC_from_json.py -msgid "" -"This is a stout pole with a wooden club on a leather cord attached to it, " -"this is a tool used to thresh wheat and occasionally people when the " -"peasants got angry at their feudal lords." +msgid "A ceramic dinner plate, unremarkable in every way." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "baseball bat" -msgid_plural "baseball bats" -msgstr[0] "бейсбольна бита" -msgstr[1] "бейсбольні бити" -msgstr[2] "бейсбольних бит" -msgstr[3] "бейсбольна бита" +msgid "ceramic bowl" +msgid_plural "ceramic bowls" +msgstr[0] "керамічна миска" +msgstr[1] "керамічні миски" +msgstr[2] "керамічних мисок" +msgstr[3] "керамічна миска" -#. ~ Description for baseball bat +#. ~ Description for ceramic bowl #: lang/json/GENERIC_from_json.py -msgid "A sturdy wood bat. Makes a great melee weapon." +msgid "A perfectly ordinary ceramic soup bowl." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "aluminum bat" -msgid_plural "aluminum bats" -msgstr[0] "алюмінієва бита" -msgstr[1] "алюмінієві бити" -msgstr[2] "алюмінієвих бит" -msgstr[3] "алюмінієва бита" +msgid "ceramic cup" +msgid_plural "ceramic cups" +msgstr[0] "керамічна чашка" +msgstr[1] "керамічні чашки" +msgstr[2] "керамічних чашок" +msgstr[3] "керамічні чашки" -#. ~ Description for aluminum bat +#. ~ Description for ceramic cup #: lang/json/GENERIC_from_json.py -msgid "" -"An aluminum baseball bat, lighter than a wooden bat and a little easier to " -"swing as a result." +msgid "A light ceramic teacup. Quite classy." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "foam rubber bat" -msgid_plural "foam rubber bats" +msgid "coffee mug" +msgid_plural "coffee mugs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for foam rubber bat +#. ~ Description for coffee mug #: lang/json/GENERIC_from_json.py -msgid "" -"A baseball bat made out of foam rubber with a plastic handle. Light, well-" -"balanced, and easy to wield, but almost completely ineffective." +msgid "A ceramic coffee cup with a logo on the side." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "expandable baton" -msgid_plural "expandable batons" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Use action menu_text for expandable baton. -#: lang/json/GENERIC_from_json.py -msgid "Expand" +msgid "The side of the mug reads 'World's Greatest Dad'." msgstr "" -#. ~ Use action msg for expandable baton. #: lang/json/GENERIC_from_json.py -msgid "You snap open your baton." +msgid "The side of the mug reads 'World's Greatest Mom'." msgstr "" -#. ~ Description for expandable baton #: lang/json/GENERIC_from_json.py msgid "" -"A telescoping baton that collapses for easy storage. Makes an excellent " -"melee weapon. Activate to expand." +"The side of the mug has a picture of a happy looking family printed on'." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "expandable baton (extended)" -msgid_plural "expandable batons (extended)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"The side of the mug has a comical green face on it and says 'I'm a zombie " +"without my coffee!'." +msgstr "" -#. ~ Use action menu_text for expandable baton (extended). -#. ~ Use action menu_text for CRIT axe. -#. ~ Use action menu_text for The Iron Whip. #: lang/json/GENERIC_from_json.py -msgid "Collapse" +msgid "The side of the mug reads 'I'd rather be playing open source games'." msgstr "" -#. ~ Use action msg for expandable baton (extended). #: lang/json/GENERIC_from_json.py -msgid "You collapse your baton." +msgid "The side of the mug reads 'If you think I'm bad, look in a mirror'." msgstr "" -#. ~ Description for expandable baton (extended) #: lang/json/GENERIC_from_json.py -msgid "" -"A telescoping baton that collapses for easy storage. Makes an excellent " -"melee weapon. Activate to collapse." +msgid "The side of the mug has a diagram of a caffeine molecule." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/TOOL_from_json.py -msgid "battle axe" -msgid_plural "battle axes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/GENERIC_from_json.py +msgid "The side of the mug has a cute picture of a sleeping cat." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "The mug is printed in leopard spots." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "The mug is blue and looks like a TARDIS." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "The side of the mug reads 'STAR WARS' over a picture of a lightsaber." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "The side of the mug reads 'House Stark' and depicts a fictional crest." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "The side of the mug reads 'My fandom could beat up your fandom'. " +msgstr "" -#. ~ Description for battle axe #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheaply made replica of a massive axe designed for warfare." +"The side of the mug reads 'Do you even linux, bro?' and has a picture of a " +"muscular penguin." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "blackjack" -msgid_plural "blackjacks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "The side of the mug reads 'I wish this was wine!'" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "The side of the mug reads 'CasUaL aLcoHoLiSm'" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A white ceramic coffee mug. It says \"World's Best Dad!\" on the side." +msgstr "" -#. ~ Description for blackjack #: lang/json/GENERIC_from_json.py msgid "" -"This is a short, easily concealed bludgeoning weapon consisting of a weight " -"embedded at the end of a short leather shaft. Formerly used by law " -"enforcement, this weapon is meant to stun or knock out the subject, although" -" head strikes have a high risk of causing a permanent, disabling brain " -"injury or being fatal." +"A white ceramic coffee mug. It says \"Great Ideas start with Great " +"Coffee.\" on the side." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bokken" -msgid_plural "bokken" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A white ceramic coffee mug. On the side is a glass of wine and a cup of " +"coffee both saying \"She loves me more!\"" +msgstr "" -#. ~ Description for {'str_sp': 'bokken'} #: lang/json/GENERIC_from_json.py msgid "" -"This is a solid wood 'training' katana, exactingly crafted to mimic the " -"weight and balance of the real thing. Despite its lack of a sharp metal " -"edge, it's still quite capable of inflicting deadly wounds." +"A white ceramic coffee mug. It says \"This is a designer mug. It fuels " +"designers.\" on the side." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} #: lang/json/GENERIC_from_json.py msgid "" -"This is a solid wood 'training' katana, but feels far too light to make an " -"effective weapon." +"A white ceramic coffee mug. On the side is a winking woman in lingerie." msgstr "" -#. ~ Description for {'str_sp': 'bokken'} #: lang/json/GENERIC_from_json.py msgid "" -"This is a solid wood 'training' katana, but it looks to be mass-produced, " -"and not quite as effective as the real deal." +"A white ceramic coffee mug. It says \"You're my definition of perfect. " +"<3\" on the side." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "The 7-10 Split" -msgid_plural "7-10 Splits" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A white ceramic coffee mug. It says \"You've been poisoned.\" on the " +"bottom, inside of it." +msgstr "" -#. ~ Description for The 7-10 Split #: lang/json/GENERIC_from_json.py msgid "" -"An improvised weapon, made from two spikes attached to a bowling pin in the " -"shape of a 'T'." +"A white ceramic coffee mug. On the side is a dog wearing a hat, sat in a " +"burning room, saying \"This is fine.\"" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bowling pin" -msgid_plural "bowling pins" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A white ceramic coffee mug. There's a tiny dinosaur sculpture inside of it." +msgstr "" -#. ~ Description for bowling pin #: lang/json/GENERIC_from_json.py -msgid "A blunt bowling pin. Makes a decent melee weapon, if somewhat short." +msgid "A white ceramic coffee mug. It says \"I <3 Massachusetts.\" on the side." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "barbed wire bat" -msgid_plural "barbed wire bats" +msgid "tin plate" +msgid_plural "tin plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for barbed wire bat +#. ~ Description for tin plate #: lang/json/GENERIC_from_json.py -msgid "A baseball bat wrapped with barbed wire. A brutal melee weapon." +msgid "A tin dinner plate, lightweight and clanky." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "walking cane" -msgid_plural "walking canes" +msgid "tin cup" +msgid_plural "tin cups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for walking cane +#. ~ Description for tin cup #: lang/json/GENERIC_from_json.py msgid "" -"Handicapped or not, you always walk in style. Consisting of a metal " -"headpiece and a wooden body, this makes a great bashing weapon in a pinch." +"An enameled tin cup. Great for camping or for prison use; makes a wonderful" +" sound when clanged along bars." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "crutches" -msgid_plural "pairs of crutches" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "pewter bowl" +msgid_plural "pewter bowls" +msgstr[0] "олов'яна миска" +msgstr[1] "олов'яні миски" +msgstr[2] "олов'яних мисок" +msgstr[3] "олов'яна миска" -#. ~ Description for crutches +#. ~ Description for pewter bowl #: lang/json/GENERIC_from_json.py -msgid "A pair of crutches." +msgid "A small pewter serving bowl without a lid. Holds 250 ml of liquid." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cudgel" -msgid_plural "cudgels" +msgid "glass plate" +msgid_plural "glass plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cudgel +#. ~ Description for glass plate #: lang/json/GENERIC_from_json.py -msgid "" -"A slender long rod of wood, while traditionally intended as a training tool " -"for many dueling moves, it still makes a good melee weapon in a pinch." +msgid "A glass dinner plate, for people who don't have clumsy children." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "makeshift macuahuitl" -msgid_plural "makeshift macuahuitls" +msgid "drinking glass" +msgid_plural "drinking glasses" +msgstr[0] "склянка" +msgstr[1] "склянки" +msgstr[2] "склянок" +msgstr[3] "склянка" + +#. ~ Description for drinking glass +#: lang/json/GENERIC_from_json.py +msgid "A tall drinking glass." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "wine glass" +msgid_plural "wine glasses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift macuahuitl +#. ~ Description for wine glass #: lang/json/GENERIC_from_json.py msgid "" -"A flat wooden club with sharpened pieces of stone sticking to both of its " -"sides." +"A stemmed drinking glass that makes you feel very fancy when you drink from " +"it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "glass shiv" -msgid_plural "glass shivs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "glass bowl" +msgid_plural "glass bowls" +msgstr[0] "скляна миска" +msgstr[1] "скляні миски" +msgstr[2] "скляних мисок" +msgstr[3] "скляна миска" -#. ~ Description for glass shiv +#. ~ Description for glass bowl #: lang/json/GENERIC_from_json.py -msgid "A glass shard with wrapping at one end so it can be safely wielded." +msgid "A glass bowl for soup or dessert." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "golf club" -msgid_plural "golf clubs" +msgid "plastic plate" +msgid_plural "plastic plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for golf club +#. ~ Description for plastic plate #: lang/json/GENERIC_from_json.py -msgid "" -"A long handle with a big metal head, flat on one side, for driving golf " -"balls. Fore!" +msgid "A durable plastic plate, the sort you might use as patio dishware." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sledge hammer" -msgid_plural "sledge hammers" +msgid "plastic tumbler" +msgid_plural "plastic tumblers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sledge hammer +#. ~ Description for plastic tumbler #: lang/json/GENERIC_from_json.py msgid "" -"A large, heavy hammer. Makes an acceptable melee weapon for the very " -"strong, but is nearly useless in the hands of the weak." +"A durable plastic drinking vessel. This one is made of clear acrylic and " +"looks almost like glass." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "short sledge hammer" -msgid_plural "short sledge hammers" +msgid "plastic tupperware" +msgid_plural "plastic tupperwares" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for short sledge hammer +#. ~ Description for plastic tupperware #: lang/json/GENERIC_from_json.py msgid "" -"A shorter sledge hammer, still as weighty, however, due to the same steel " -"head. Worse as a melee weapon but is a more portable tool." +"A piece of plastic tupperware with a tupperware lid. Holds 750 ml of " +"liquid." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "engineer's hammer" -msgid_plural "engineer's hammers" +msgid "kiddie bowl" +msgid_plural "kiddie bowls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for engineer's hammer +#. ~ Description for kiddie bowl #: lang/json/GENERIC_from_json.py -msgid "" -"A stout and hefty hammer, more akin to a sledge than a typical ball-peen. " -"Useful for portable demolition work, but is very unwieldy as a weapon." +msgid "A plastic bowl designed for use by children." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "heavy sledge hammer" -msgid_plural "heavy sledge hammers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This bowl is decorated with cartoon bears." +msgstr "" -#. ~ Description for heavy sledge hammer #: lang/json/GENERIC_from_json.py msgid "" -"A large sledge hammer with a massive, heavy head. This unwieldy tool is " -"meant to break concrete, rock, brick, anything really." +"There is a drawing of Yoda at the bottom of this bowl, and the words 'Eaten " +"it all, you have'." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "hockey stick" -msgid_plural "hockey sticks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This bowl is covered in cartoon dogs and a logo that reads 'Paw Patrol'." +msgstr "" -#. ~ Description for hockey stick #: lang/json/GENERIC_from_json.py msgid "" -"A curved wooden stick with a wide and flat end. Commonly used by hockey " -"players." +"There are orange and blue fish chasing each other around the rim of this " +"bowl." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "homewrecker" -msgid_plural "homewreckers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This bowl is shaped like the head of a silly frog with the opening forming " +"the mouth." +msgstr "" -#. ~ Description for homewrecker #: lang/json/GENERIC_from_json.py -msgid "" -"A long piece of wood with several chunks of steel firmly tied to it. The " -"resulting weapon is unwieldy and slow but very heavy hitting." +msgid "There are cute farm animals decorating this bowl." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "ironshod quarterstaff" -msgid_plural "ironshod quarterstaves" +msgid "sippy cup" +msgid_plural "sippy cups" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ironshod quarterstaff +#. ~ Description for sippy cup #: lang/json/GENERIC_from_json.py -msgid "" -"A smooth and sturdy staff with a leather-wrapped grip, which has been " -"reinforced with metal bands and caps. Durable and well-balanced, it is " -"surprisingly easy to handle." +msgid "A plastic cup with a spill-proof lid, designed for use by children." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "lucerne hammer" -msgid_plural "lucerne hammers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This cup is decorated with cartoon bears." +msgstr "" -#. ~ Description for lucerne hammer #: lang/json/GENERIC_from_json.py msgid "" -"This is a versatile polearm with a spiked hammer head, a spike, and a hook " -"attached to a beefy wooden pole." +"This cup has a cartoony picture of the Avengers wrapped around the side." msgstr "" -#. ~ Description for lucerne hammer #: lang/json/GENERIC_from_json.py -msgid "" -"This is a cheap piece of crap imitation of a versatile polearm with a spiked" -" hammer head, probably meant to be used for LARPing." +msgid "This sippy cup is made of plastic in bright clashing colors." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mace" -msgid_plural "maces" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This is a simple blue sippy cup with tooth marks around the spout." +msgstr "" -#. ~ Description for mace #: lang/json/GENERIC_from_json.py -msgid "" -"A medieval weapon consisting of a wood handle with a heavy iron end. It is " -"heavy and slow, but its crushing damage is devastating." +msgid "This cup is decorated to look like a pokeball." msgstr "" -#. ~ Description for mace #: lang/json/GENERIC_from_json.py -msgid "" -"A light, cheaply made replica of a medieval weapon that would normally " -"consist of a wood handle with a heavy iron end." +msgid "There are cute anthropomorphic fruits decorating this cup." msgstr "" -#. ~ Description for mace #: lang/json/GENERIC_from_json.py msgid "" -"A medieval weapon consisting of a wood handle with a heavy iron end. That " -"iron end feels a bit loose." +"This sippy cup is decorated with crayon-like text that reads 'I love you'." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "simple mace" -msgid_plural "simple maces" +msgid "fork" +msgid_plural "forks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for simple mace +#. ~ Description for fork #: lang/json/GENERIC_from_json.py msgid "" -"A stick with a circular lump of metal tied to it masquerading as a mace. " -"You could probably improve it by finding a way to pin the head to the " -"handle." +"A fork, if you stab something with it, you eat it right away. Wait… " +"nevermind." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "trench mace" -msgid_plural "trench maces" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "plastic fork" +msgid_plural "plastic forks" +msgstr[0] "пластикова виделка" +msgstr[1] "пластикові виделки" +msgstr[2] "пластикових виделок" +msgstr[3] "пластикові виделки" -#. ~ Description for trench mace +#. ~ Description for plastic fork #: lang/json/GENERIC_from_json.py msgid "" -"A mace made from a cicular chunk of steel pinned to the end of a stick. You" -" can feel your inner Trench Raider come alive when you wield it." +"A plastic disposable fork. Great for picnic lunches in the post apocalyptic" +" wasteland." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "makeshift sap" -msgid_plural "makeshift saps" +msgid "spoon" +msgid_plural "spoons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift sap +#. ~ Description for spoon #: lang/json/GENERIC_from_json.py -msgid "" -"This is an improvised sap, also known as a cosh, slapjack and slapper. A " -"short and flat bludgeoning weapon consisting of a weight embedded between " -"two patches of leather." +msgid "Do not try to bend the spoon. That is impossible." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Mjölnir" -msgid_plural "Mjölnirs" +msgid "plastic spoon" +msgid_plural "plastic spoons" +msgstr[0] "пластикова ложка" +msgstr[1] "пластикові ложки" +msgstr[2] "пластикових ложок" +msgstr[3] "пластикові ложки" + +#. ~ Description for plastic spoon +#: lang/json/GENERIC_from_json.py +msgid "A plastic disposable spoon. Easier to bend than the metal variety." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "kiddie spoon" +msgid_plural "kiddie spoons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Mjölnir +#. ~ Description for kiddie spoon +#: lang/json/GENERIC_from_json.py +msgid "A plastic spoon designed for use by children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "This spoon is striped in bright primary colors." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "This spoon is styled to look like a bulldozer." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "" -"A large hammer, forged from the heart of a dying star. It bears the inscription:\n" -"\n" -"Whosoever holds this hammer,\n" -"If he be worthy,\n" -"Shall possess the power to…\n" -"CRUSH!'" +"This spoon is covered in cartoon dogs and a logo that reads 'Paw Patrol'." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "morningstar" -msgid_plural "morningstars" +msgid "There is a cute cartoon bear on the handle of this spoon." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "There are cartoon cats all over this spoon." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "This spoon has a silhouette of a giraffe going down the handle." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "butter knife" +msgid_plural "butter knives" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for morningstar +#. ~ Description for butter knife #: lang/json/GENERIC_from_json.py msgid "" -"A medieval weapon consisting of a wood handle with a heavy, spiked iron ball" -" on the end. It deals devastating crushing damage, with a small amount of " -"piercing to boot." +"A dull knife, absolutely worthless in combat. Excellent for spreading soft " +"things on bread." msgstr "" -#. ~ Description for morningstar +#: lang/json/GENERIC_from_json.py +msgid "plastic knife" +msgid_plural "plastic knives" +msgstr[0] "пластиковий ніж" +msgstr[1] "пластикових ножа" +msgstr[2] "пластикових ножів" +msgstr[3] "пластикові ножі" + +#. ~ Description for plastic knife #: lang/json/GENERIC_from_json.py msgid "" -"A light, cheaply made replica of a medieval weapon that would normally " -"consist of a wood handle with a heavy, spiked iron ball on the end." +"A plastic butter knife. It's actually a bit sharper than its metal " +"counterpart, but that doesn't make it any more effective as a weapon." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "nail bat" -msgid_plural "nail bats" -msgstr[0] "бита із цвяхами" -msgstr[1] "бити із цвяхами" -msgstr[2] "бит із цвяхами" -msgstr[3] "бита із цвяхами" +msgid "plastic straw" +msgid_plural "plastic straws" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for nail bat +#. ~ Description for plastic straw #: lang/json/GENERIC_from_json.py -msgid "" -"A baseball bat with several nails driven through it, an excellent melee " -"weapon." +msgid "A plastic straw, for drinking things and making litter" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "nailboard" -msgid_plural "nailboards" +msgid "corkscrew" +msgid_plural "corkscrews" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nailboard +#. ~ Description for corkscrew #: lang/json/GENERIC_from_json.py msgid "" -"A long piece of wood with several nails through one end; essentially a " -"simple mace. Makes an acceptable melee weapon." +"Many a pleasant date has been ruined by forgetting this important tool." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pool cue" -msgid_plural "pool cues" +msgid "vegetable peeler" +msgid_plural "vegetable peelers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pool cue +#. ~ Description for vegetable peeler #: lang/json/GENERIC_from_json.py msgid "" -"A hard-wood stick designed for hitting colorful balls around a felt table. " -"Truly, the coolest of sports." +"This is a simple tool for peeling the outer skin off fruit and veggies " +"without stabbing yourself." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "PR-24 baton (extended)" -msgid_plural "PR-24 batons (extended)" +msgid "bottle opener" +msgid_plural "bottle openers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for PR-24 baton (extended). +#. ~ Description for bottle opener #: lang/json/GENERIC_from_json.py -msgid "Retract" +msgid "A simple lever for popping open bottles." msgstr "" -#. ~ Use action msg for PR-24 baton (extended). #: lang/json/GENERIC_from_json.py -msgid "You collapse your PR-24 baton." +msgid "" +"This bottle opener is shaped like a zombie head, the mouth pops open the " +"bottle." msgstr "" -#. ~ Description for PR-24 baton (extended) #: lang/json/GENERIC_from_json.py -msgid "" -"The Monadnock PR-24 baton is a collapsible, lightweight, side-handle baton " -"used by law enforcement all over the world. The PR designation is rumored " -"to mean Public Relations. Activate to retract." +msgid "This bottle opener is shaped like a lightsaber." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "PR-24 baton (retracted)" -msgid_plural "PR-24 batons (retracted)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Use action menu_text for PR-24 baton (retracted). -#. ~ Use action menu_text for CRIT hatchet. -#. ~ Use action menu_text for Biomancer shifting spear. -#. ~ Use action menu_text for Belt of The Iron Whip. -#: lang/json/GENERIC_from_json.py lang/json/GENERIC_from_json.py -#: lang/json/TOOL_ARMOR_from_json.py -msgid "Extend" +msgid "This bottle opener is shaped like a revolver." msgstr "" -#. ~ Use action msg for PR-24 baton (retracted). #: lang/json/GENERIC_from_json.py -msgid "You snap open your PR-24 baton." +msgid "" +"This bottle opener is engraved with the words 'I'll die before I give you my" +" beer'." msgstr "" -#. ~ Description for PR-24 baton (retracted) #: lang/json/GENERIC_from_json.py msgid "" -"The Monadnock PR-24 baton is a collapsible, lightweight, side-handle baton " -"used by law enforcement all over the world. The PR designation is rumored " -"to mean Public Relations. Activate to extend." +"This bottle opener is emblazoned with a logo for an HVAC contracting " +"company." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "quarterstaff" -msgid_plural "quarterstaves" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "This bottle opener reads 'Corporate Team Building Exercise 1999'." +msgstr "" -#. ~ Description for quarterstaff #: lang/json/GENERIC_from_json.py -msgid "" -"A smooth and sturdy staff. Light and well-balanced, it is surprisingly easy" -" to handle." +msgid "This bottle opener reads 'I'd rather be drinking whiskey'." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "rock in a sock" -msgid_plural "rocks in socks" -msgstr[0] "Камінь у шкарпетці" -msgstr[1] "Камінь у шкарпетці" -msgstr[2] "Камінь у шкарпетці" -msgstr[3] "Камні у шкарпетках" +msgid "This bottle opener is shaped like a phaser." +msgstr "" -#. ~ Description for rock in a sock #: lang/json/GENERIC_from_json.py -msgid "A pair of nested socks filled with a stone. A true weapon of despair." +msgid "This novelty bottle opener is designed to look like a hobo clown." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "plastic shank" -msgid_plural "plastic shanks" +msgid "spork" +msgid_plural "sporks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plastic shank +#. ~ Description for spork #: lang/json/GENERIC_from_json.py msgid "" -"An oblong plastic trinket with the far end ground down into a stabbing " -"point." +"The bastardized hybrid of a spoon and fork, with all the power and " +"capabilities of both in a more annoying to use package." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "shillelagh" -msgid_plural "shillelaghs" +msgid "foon" +msgid_plural "foons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for shillelagh +#. ~ Description for foon #: lang/json/GENERIC_from_json.py -msgid "" -"A stout knotty stick with a large knob at the top that has been left to cure" -" in a chimney. A traditional Irish weapon, the shillelagh was originally " -"used for settling disputes in a gentlemanly manner." +msgid "Clearly the superior instrument. Sporks are just imitators." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "loaded stick" -msgid_plural "loaded sticks" +msgid "chopsticks" +msgid_plural "pairs of chopsticks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for loaded stick -#: lang/json/GENERIC_from_json.py -msgid "" -"A stout knotty stick with a large knob at the top that has been left to cure" -" in a chimney. A traditional Irish weapon, the shillelagh was originally " -"used for settling disputes in a gentlemanly manner. The knob has been " -"hollowed and filled with molten heavy metal to pack more of a punch." -msgstr "" - -#. ~ Description for shillelagh +#. ~ Description for chopsticks #: lang/json/GENERIC_from_json.py msgid "" -"A fake shillelagh massproduced as a souvenir for tourists. This knotty " -"stick has not been cured in a chimney like a traditional shillelagh but has " -"had fake black soot painted on." +"One of the most popular eating utensils in the world. Does double duty as a" +" way of dealing with especially fragile vampires." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "tonfa" -msgid_plural "tonfas" +msgid "ladle" +msgid_plural "ladles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tonfa +#. ~ Description for ladle #: lang/json/GENERIC_from_json.py -msgid "" -"A hard plastic truncheon commonly employed by police. Originally an " -"Okinawan weapon, it consists of a stick with a perpendicular handle attached" -" a third of the way down its length." +msgid "When you need to scoop some soup, this is the utensil for you." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wooden tonfa" -msgid_plural "wooden tonfas" +msgid "whisk" +msgid_plural "whisks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wooden tonfa +#. ~ Description for whisk #: lang/json/GENERIC_from_json.py msgid "" -"A stout wooden truncheon of the sort commonly employed by police. " -"Originally an Okinawan weapon, it consists of a stick with a perpendicular " -"handle attached a third of the way down its length." +"Also known as a 'wire whip', this is a less effective weapon than it sounds." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "war hammer" -msgid_plural "war hammers" +msgid "potato masher" +msgid_plural "potato mashers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for war hammer +#. ~ Description for potato masher #: lang/json/GENERIC_from_json.py msgid "" -"A medieval hammer made for battle. Its odd shape and balance make it an " -"excellent weapon, but an ineffective tool." +"This tool can mash potatoes and soft root vegetables; it cannot do the " +"twist." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bionic claws" -msgid_plural "bionic claws" +msgid "garlic press" +msgid_plural "garlic presses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for garlic press #: lang/json/GENERIC_from_json.py -msgid "Short and sharp claws made from a high-tech metal." +msgid "This tool can squash a clove or two of garlic into a fine paste." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "monomolecular blade" -msgid_plural "monomolecular blades" +msgid "can opener" +msgid_plural "can openers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for monomolecular blade +#. ~ Description for can opener #: lang/json/GENERIC_from_json.py -msgid "" -"A foot-long blade made from high-tech alloy and edged with bonded " -"nanocrystals." +msgid "It's not hard to open cans without this, but it's way messier." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bullwhip" -msgid_plural "bullwhips" +msgid "carving fork" +msgid_plural "carving forks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bullwhip +#. ~ Description for carving fork #: lang/json/GENERIC_from_json.py msgid "" -"A long strip of braided leather with a handle on one end. Originally " -"developed to settle disagreements with cattle, it's better used now for " -"flaying the rotten flesh off of walking corpses. Great for when a problem " -"comes along." +"It's like a tiny pitchfork, or a very large dinner fork. You use it to hold" +" meat still while you slice it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "scourge" -msgid_plural "scourges" +msgid "spatula" +msgid_plural "spatulas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for scourge +#. ~ Description for spatula #: lang/json/GENERIC_from_json.py msgid "" -"The \"cat 'o nine tails\", a handle with nine short leather whips, each " -"sporting a razor-sharp metal tip. This ancient instrument of torture causes" -" massive bleeding, but by design is inefficient as a weapon." +"A rubber scraper for making sure you get every last scrap of cookie dough." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -msgid "lobotomizer" -msgid_plural "lobotomizers" +#: lang/json/GENERIC_from_json.py +msgid "rolling pin" +msgid_plural "rolling pins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lobotomizer +#. ~ Description for rolling pin #: lang/json/GENERIC_from_json.py msgid "" -"This is a hand-forged collapsible tool that has two axe heads and a sharp " -"shovel-like tip on one end. It can be used as a shovel, or you could chop " -"some zombies with it instead." +"A stout piece of hardwood, turned and sanded smooth, with rounded handles at" +" the ends. This timeless kitchen tool also doubles as a very effective " +"club." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pitchfork" -msgid_plural "pitchforks" -msgstr[0] "вили" -msgstr[1] "вил" -msgstr[2] "вил" -msgstr[3] "вила" +msgid "pot" +msgid_plural "pots" +msgstr[0] "каструля" +msgstr[1] "каструлі" +msgstr[2] "каструль" +msgstr[3] "каструля" -#. ~ Description for pitchfork +#. ~ Description for pot +#: lang/json/GENERIC_from_json.py +msgid "Useful for boiling water when cooking spaghetti and more." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cast-iron pot" +msgid_plural "cast-iron pots" +msgstr[0] "чавунна каструля" +msgstr[1] "чавунні каструлі" +msgstr[2] "чавунних каструль" +msgstr[3] "чавунна каструля" + +#. ~ Description for cast-iron pot #: lang/json/GENERIC_from_json.py msgid "" -"An agricultural tool with long wooden shaft and four spikes. Is used to " -"lift hay." +"This hefty black pot is made from cast iron and coated in a sturdy enamel." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pointy stick" -msgid_plural "pointy sticks" -msgstr[0] "загострена палка" -msgstr[1] "загострені палки" -msgstr[2] "загострених палок" -msgstr[3] "загострена палка" +msgid "copper pot" +msgid_plural "copper pots" +msgstr[0] "мідна каструля" +msgstr[1] "мідні каструлі" +msgstr[2] "мідних каструль" +msgstr[3] "мідна каструля" -#. ~ Description for pointy stick +#. ~ Description for copper pot #: lang/json/GENERIC_from_json.py -msgid "A simple wood pole with one end sharpened." +msgid "" +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "long pointy stick" -msgid_plural "long pointy sticks" +msgid "casserole" +msgid_plural "casseroles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for long pointy stick +#. ~ Description for casserole #: lang/json/GENERIC_from_json.py -msgid "A stout pole with one end sharpened to a point." +msgid "" +"A ceramic pot made for both cooking and serving, particularly one-pot " +"dinners." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wooden spear" -msgid_plural "wooden spears" +msgid "stock pot" +msgid_plural "stock pots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wooden spear +#. ~ Description for stock pot #: lang/json/GENERIC_from_json.py -msgid "A stout pole with a fire-hardened point." +msgid "" +"A large pot for making soup stocks. You could fit a whole turkey in there, " +"with a bit of shoving." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "simple makeshift glaive" -msgid_plural "simple makeshift glaives" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "canning pot" +msgid_plural "canning pots" +msgstr[0] "каструля для консервації" +msgstr[1] "каструлі для консервації" +msgstr[2] "каструль для консервації" +msgstr[3] "каструля для консервації" -#. ~ Description for simple makeshift glaive +#. ~ Description for canning pot #: lang/json/GENERIC_from_json.py msgid "" -"This is a large blade attached to a stout section of tree branch. It could " -"do a considerable amount of damage." +"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." msgstr "" +"Дуже велика 25-літрова каструля, призначена головним чином для консервування" +" скляних банок на водяній бані, хоча в ній можна готувати і звичайну їжу. " +"Таке консервування потребує багато води. Якщо ви консервуєте пару банок за " +"раз, треба наповнити кастрюлю камінням або чимось подібним, щоб вода накрила" +" кришки." #: lang/json/GENERIC_from_json.py -msgid "makeshift glaive" -msgid_plural "makeshift glaives" +msgid "cast-iron frying pan" +msgid_plural "cast-iron frying pans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift glaive +#. ~ Description for cast-iron frying pan #: lang/json/GENERIC_from_json.py msgid "" -"A stout tree branch that has been carefully split and reinforced. At the " -"split point, a sharp blade has been bolted into place and reinforced with " -"layers of sturdy wrapped bindings." +"A cast-iron pan. Makes a decent melee weapon, and is used for cooking." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "forked spear" -msgid_plural "forked spears" +msgid "steel frying pan" +msgid_plural "steel frying pans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for forked spear +#. ~ Description for steel frying pan #: lang/json/GENERIC_from_json.py msgid "" -"A wooden pole with three spikes tied to it. It's specialized for catching " -"weapons, and not intended for extended use in combat." +"A steel frying pan. Makes a decent melee weapon, and is used for cooking." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "copper spear" -msgid_plural "copper spears" +msgid "copper frying pan" +msgid_plural "copper frying pans" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for copper spear +#. ~ Description for copper frying pan #: lang/json/GENERIC_from_json.py -msgid "A stout wooden pole with a spearhead worked from copper." +msgid "" +"A copper frying pan, coated in a thin layer of tin. Makes a decent melee " +"weapon, and is used for cooking." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "steel spear" -msgid_plural "steel spears" -msgstr[0] "сталевий спис" -msgstr[1] "сталевий спис" -msgstr[2] "сталеві списи" -msgstr[3] "сталевий спис" +msgid "makeshift pot" +msgid_plural "makeshift pots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for steel spear +#. ~ Description for makeshift pot #: lang/json/GENERIC_from_json.py -msgid "A stout wooden pole with a hand-forged steel spearhead." +msgid "" +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sharpened pipe" -msgid_plural "sharpened pipes" +msgid "makeshift copper pot" +msgid_plural "makeshift copper pots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sharpened pipe +#. ~ Description for makeshift copper pot #: lang/json/GENERIC_from_json.py -msgid "A pipe with one end cut off at an angle." +msgid "" +"A cooking pot crudely hammered out of copper. Good enough to cook food and " +"boil water, but not as useful as proper cookware." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "basic pipe spear" -msgid_plural "basic pipe spears" +msgid "kettle" +msgid_plural "kettles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for basic pipe spear +#. ~ Description for kettle #: lang/json/GENERIC_from_json.py -msgid "Three pipes tightly fit together with one end cut down to a point." +msgid "A stovetop kettle for boiling water." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pipe spear" -msgid_plural "pipe spears" +msgid "mesh colander" +msgid_plural "mesh colanders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pipe spear +#. ~ Description for mesh colander #: lang/json/GENERIC_from_json.py msgid "" -"Three pipes tightly fit together with some wrappings for a handle around one" -" end and a sharp tip on the other." +"A stainless steel mesh colander, for washing rice, vegetables or straining " +"liquid off from noodles or other foods." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sharpened rebar" -msgid_plural "sharpened rebars" +msgid "splatter guard" +msgid_plural "splatter guards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sharpened rebar +#. ~ Description for splatter guard #: lang/json/GENERIC_from_json.py -msgid "A somewhat sharpened piece of rebar." +msgid "" +"A stainless steel mesh screen for preventing flying oil from getting all " +"over your nice counters (or you) when frying." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "qiang" -msgid_plural "qiang" +msgid "cutting board" +msgid_plural "cutting boards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for cutting board #: lang/json/GENERIC_from_json.py msgid "" -"An ancient Chinese spear, typically with a tassel just below the spearhead." -" One of the four major weapons in folklore, alongside the dao sabre, jian " -"sword, and gun staff." +"A large flat piece of wood for chopping vegetables on without ruining your " +"knife or your countertop." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "halberd" -msgid_plural "halberds" +msgid "meal tray" +msgid_plural "meal trays" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for halberd -#: lang/json/GENERIC_from_json.py -msgid "" -"This is a versatile polearm with an axe blade, a spike, and other fun things" -" attached to a long sturdy stick." -msgstr "" - -#. ~ Description for halberd +#. ~ Description for meal tray #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheaply made replica of a polearm with an axe blade, a " -"spike, and other fun things attached to a thick pole." +"A stainless steel tray used for serving food in cafeterias, mess halls, or " +"similar places." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "glaive" -msgid_plural "glaives" +msgid "pizza cutter" +msgid_plural "pizza cutters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for glaive +#. ~ Description for pizza cutter #: lang/json/GENERIC_from_json.py -msgid "A sturdy polearm with a sizable, single-edged blade on the end." +msgid "A utensil used for cutting pizza. Practically useless in combat." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "naginata" -msgid_plural "naginata" +msgid "icecream scoop" +msgid_plural "icecream scoops" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for icecream scoop #: lang/json/GENERIC_from_json.py msgid "" -"A sturdy polearm with a curved blade, made in the same manner as the katana " -"and other Japanese blades. Occasionally used by samurai in early periods, " -"or by their wives in defense of the household." +"A utensil used for scooping icecream into bowls. It has a spring powered " +"lever to assist." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} #: lang/json/GENERIC_from_json.py -msgid "" -"A sturdy polearm with a curved blade, made in the same manner as the katana " -"and other Japanese blades. This one has a bit of wiggle to its blade and " -"feels a bit shoddily made." -msgstr "" +msgid "cheese grater" +msgid_plural "cheese graters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for cheese grater #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, slightly floppy replica of a Japanese polearm with a curved " -"blade. With a little difficulty, you could use it administer a solid slap " -"from a distance." +"A stainless steel cheese grater with a plastic grip. It is used to shred " +"cheese." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "survivor naginata" -msgid_plural "survivor naginata" +msgid "XLR cable" +msgid_plural "XLR cables" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for XLR cable #: lang/json/GENERIC_from_json.py msgid "" -"This sturdy steel shaft with a sword blade at the end is good for both " -"slashing and stabbing." +"A balanced cable used for sending audio signal. The connectors have three " +"prongs." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wooden javelin" -msgid_plural "wooden javelins" +msgid "speaker cable" +msgid_plural "speaker cables" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wooden javelin +#. ~ Description for speaker cable #: lang/json/GENERIC_from_json.py -msgid "A fire-hardened wooden spear honed to a sharper point." +msgid "" +"This audio cable connects one speaker to a powered head, or one speaker to " +"another." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "iron javelin" -msgid_plural "iron javelins" +msgid "instrument cable" +msgid_plural "instrument cables" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for iron javelin +#. ~ Description for instrument cable #: lang/json/GENERIC_from_json.py -msgid "An iron-tipped wooden throwing spear." +msgid "" +"Known as an instrument cable because it is usually used to connect a guitar " +"to a powered amp, it is an unbalanced cable with 1/4\" male connectors on " +"each side." msgstr "" #: lang/json/GENERIC_from_json.py -msgctxt "weapon" -msgid "wooden pike" -msgid_plural "wooden pikes" +msgid "headphones" +msgid_plural "headphones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wooden pike +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" -"This is a medieval weapon consisting of a wood shaft with a fire hardened " -"point." +"Typical headphones that cover your ears. A well-known brand that is very " +"high quality, with a detachable 1/8\" cable. Comes with a 1/8\" to 1/4\" " +"adaptor." msgstr "" #: lang/json/GENERIC_from_json.py -msgctxt "weapon" -msgid "copper pike" -msgid_plural "copper pikes" +msgid "XLR microphone" +msgid_plural "XLR microphones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for copper pike +#. ~ Description for XLR microphone #: lang/json/GENERIC_from_json.py msgid "" -"This is a medieval weapon consisting of a wood shaft tipped with a copper " -"spearhead." +"A typical microphone used to record or amplify voice. Comes with a clip. " +"Has a 3-pin XLR connector on the bottom in order to connect to an amp." msgstr "" #: lang/json/GENERIC_from_json.py -msgctxt "weapon" -msgid "pike" -msgid_plural "pikes" +msgid "microphone stand" +msgid_plural "microphone stands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pike +#. ~ Description for microphone stand #: lang/json/GENERIC_from_json.py msgid "" -"This is a medieval weapon consisting of a wood shaft tipped with an iron " -"spearhead." +"A lightweight telescoping boom stand made of aluminum and painted black. " +"About 6' tall when full extended, or 3' when closed fully. Has threads for " +"a mic clip on one end." msgstr "" -#. ~ Description for pike #: lang/json/GENERIC_from_json.py -msgid "" -"This is a dull, cheaply made replica of a medieval weapon consisting of a " -"wood shaft tipped with an iron spearhead." -msgstr "" +msgid "guitar stand" +msgid_plural "guitar stands" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for pike +#. ~ Description for guitar stand #: lang/json/GENERIC_from_json.py msgid "" -"This is a medieval weapon consisting of a wood shaft tipped with an iron " -"spearhead. The head seems to be pretty dull, and the whole thing feels " -"poorly made." +"A small, oddly shaped piece of aluminum hardware with three legs. When " +"placed on the ground, this can support one guitar in an upright position." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "war scythe" -msgid_plural "war scythes" +msgid "plectrum" +msgid_plural "plectra" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for war scythe +#. ~ Description for plectrum #: lang/json/GENERIC_from_json.py msgid "" -"A pole weapon with a curving single-edged blade. Its blade bears some " -"superficial resemblance to that of an agricultural scythe from which it " -"likely evolved." +"A flat piece of plastic with a pointed tip, designed for plucking the " +"strings of a guitar or mandolin." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "dory" -msgid_plural "dories" +msgid "mixer" +msgid_plural "mixers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dory +#. ~ Description for mixer #: lang/json/GENERIC_from_json.py -msgid "A well-made spear with a bronze head, Greek in origin." +msgid "" +"A device with faders, switches, and knobs that mixes input signal and sends " +"it to two output XLR cables. (left and right)" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "poleaxe" -msgid_plural "poleaxes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "spare parts" +msgid_plural "spare parts" +msgstr[0] "витратний матеріал" +msgstr[1] "витратний матеріал" +msgstr[2] "витратний матеріал" +msgstr[3] "витратні матеріали" -#. ~ Description for poleaxe +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" -"This is a polearm with an axe head, a small hammer on the back, and a short " -"dagger-like spike on top. It's less heavy than most polearms and has a " -"smaller head, making it slightly quicker." +"Items with are not themselves useful but are instead requirements for " +"crafting or repairs" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "ji" -msgid_plural "ji" +msgid "drive belt" +msgid_plural "drive belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for drive belt #: lang/json/GENERIC_from_json.py msgid "" -"This is a bronze polearm that originated in the Shang dynasty of China, if " -"not earlier. It combines a spear head with the perpendicular blade of the " -"earlier ge or dagger-axe." +"A synthetic rubber V-belt with steel reinforcement fibers commonly fitted to" +" engines or other industrial equipment." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "stone spear" -msgid_plural "stone spears" +msgid "makeshift drive belt" +msgid_plural "makeshift drive belts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for stone spear +#. ~ Description for makeshift drive belt #: lang/json/GENERIC_from_json.py -msgid "A stout wooden pole with a sharp stone spearhead." +msgid "" +"An improvised belt useful for repairing engines or other industrial " +"equipment when no better alternative is available." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "2-by-sword" -msgid_plural "2-by-swords" +msgid "air filter" +msgid_plural "air filters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 2-by-sword +#. ~ Description for air filter #: lang/json/GENERIC_from_json.py msgid "" -"A plank with a crossguard and whittled-down point; not much for slashing, " -"but much better than your bare hands." +"A plastic box containing creped paper used to filter the air supply for " +"combustion engines or other industrial equipment." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "nord" -msgid_plural "nords" +msgid "makeshift air filter" +msgid_plural "makeshift air filters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nord +#. ~ Description for makeshift air filter #: lang/json/GENERIC_from_json.py msgid "" -"The nail sword, or nord for short. This wooden sword has a dozen nails " -"sticking at jagged angles from edge of the blade, making it much better at " -"chopping than slashing." +"An improvised air filter useful for repairing engines or other industrial " +"equipment when no better alternative is available." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "crude sword" -msgid_plural "crude swords" +msgid "automotive filter" +msgid_plural "automotive filters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for crude sword +#. ~ Description for automotive filter #: lang/json/GENERIC_from_json.py -msgid "" -"Several bits of thin scrap metal crudely beat into the semblance of an edge " -"over a wooden sword. The added weight is unbalanced, but the jagged edge " -"offers a good bit of slashing power." +msgid "A steel can containing filter paper designed for automotive use." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/TOOL_from_json.py -msgid "jian" -msgid_plural "jian" +#: lang/json/GENERIC_from_json.py +msgid "makeshift automotive filter" +msgid_plural "makeshift automotive filters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for makeshift automotive filter #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " -"straight sword, with an ornate guard." +"An improvised automotive filter useful for repairing engines or other " +"industrial equipment when no better alternative is available." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/TOOL_from_json.py -msgid "scimitar" -msgid_plural "scimitars" +#: lang/json/GENERIC_from_json.py +msgid "glow plug" +msgid_plural "glow plugs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for scimitar +#. ~ Description for glow plug #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheaply-made replica of a curved sword, associated with " -"various Middle Eastern and Central Asian countries." +"A cylindrical heating device designed to be screwed in to a diesel engine to" +" aid starting in cold weather." msgstr "" +"Циліндричний нагрівальний пристрій, призначений для встановлення у дизельний" +" двигун, щоб той легше було завести у холодну погоду." #: lang/json/GENERIC_from_json.py -msgid "estoc" -msgid_plural "estocs" +msgid "high-pressure pump" +msgid_plural "high-pressure pumps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for estoc +#. ~ Description for high-pressure pump #: lang/json/GENERIC_from_json.py msgid "" -"This is a thin thrusting sword, a sort of predecessor to the rapier. It " -"requires a larger baldric or scabbard, compared to smaller swords." +"A complex mechanical pump capable of achieving high pressures. Far beyond " +"anything you could reasonably improvise." msgstr "" -"Це тонкий колючий меч, попередник рапіри. Йому треба більші піхви чи " -"перев'яз, у порівнянні із меншими мечами." -#. ~ Description for estoc #: lang/json/GENERIC_from_json.py -msgid "" -"This is a thin thrusting sword, a sort of predecessor to the rapier. It " -"requires a larger baldric or scabbard, compared to smaller swords. It seems" -" a bit too bendy." -msgstr "" -"Це тонкий колючий меч, попередник рапіри. Йому треба більші піхви чи " -"перев'яз, у порівнянні із меншими мечами. Цей екземпляр якийсь надто " -"погнутий." +msgid "mechanical pump" +msgid_plural "mechanical pumps" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for estoc +#. ~ Description for mechanical pump #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheaply-made replica of a thin thrusting sword predating the" -" rapier. It requires a larger baldric or scabbard, compared to smaller " -"swords." +"A simple cast iron mechanical impeller pump. It's not good for much of " +"anything on its own." msgstr "" -"Це затуплена і дешево виконана підробка під тонкий колючий меч, попередник " -"рапіри. Йому треба більші піхви чи перев'яз, у порівнянні із меншими мечами." -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/TOOL_from_json.py -msgid "longsword" -msgid_plural "longswords" +#: lang/json/GENERIC_from_json.py +msgid "set of pipe fittings" +msgid_plural "sets of pipe fittings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for longsword +#. ~ Description for set of pipe fittings #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheaply-made replica of the classic medieval longsword. It " -"requires a larger baldric or scabbard, compared to smaller swords." +"A loose assortment of metal pipe fittings - end caps, pipe junctions, and " +"similar items. They can be used in a variety of projects." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/TOOL_from_json.py -msgid "arming sword" -msgid_plural "arming swords" +#: lang/json/GENERIC_from_json.py +msgid "short cordage piece" +msgid_plural "short cordage pieces" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for arming sword +#. ~ Description for short cordage piece #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheaply-made replica of a classic medieval sword, just the " -"right size to use one-handed." +"A 6-inch (or about 15 cm) long piece of natural cordage. Useful for some " +"purposes, but not as strong or flexible as proper string." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -msgid "tanto" -msgid_plural "tanto" +#: lang/json/GENERIC_from_json.py +msgid "long cordage piece" +msgid_plural "long cordage pieces" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for long cordage piece #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheaply-made replica of a long Japanese knife, typically " -"used as a samurai's backup weapon." +"A 3-foot (or about 90 cm) long piece of natural cordage. Useful for some " +"purposes, but not as strong or flexible as proper string." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} #: lang/json/GENERIC_from_json.py -msgid "" -"Long Japanese knives like this more-modern remake were the samurai's backup " -"weapon, before the advent of the larger wakizashi. This one doesn't feel " -"well-balanced." +msgid "short string" +msgid_plural "short strings" +msgstr[0] "короткий шнур" +msgstr[1] "коротких шнура" +msgstr[2] "коротких шнурів" +msgstr[3] "короткі шнури" + +#. ~ Description for short string +#: lang/json/GENERIC_from_json.py +msgid "A 6-inch (or about 15 cm) long piece of cotton string." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -msgid "nodachi" -msgid_plural "nodachi" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/GENERIC_from_json.py +msgid "long string" +msgid_plural "long strings" +msgstr[0] "довга шворка" +msgstr[1] "довга шворка" +msgstr[2] "довга шворка" +msgstr[3] "довгі шворки" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for long string #: lang/json/GENERIC_from_json.py -msgid "" -"This is a dull, cheaply-made replica of a huge, curved, two-handed sword " -"from Japan. It is surprisingly light for its size." +msgid "A 3-foot (or about 90 cm) long piece of cotton string." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} #: lang/json/GENERIC_from_json.py -msgid "" -"This is a huge, curved, two-handed sword from Japan. It is surprisingly " -"light for its size, but also much bendier than a sword should be." +msgid "short rope" +msgid_plural "short ropes" +msgstr[0] "коротка мотузка" +msgstr[1] "короткі мотузки" +msgstr[2] "коротких мотузок" +msgstr[3] "коротка мотузка" + +#. ~ Use action holster_msg for short rope. +#: lang/json/GENERIC_from_json.py +#, no-python-format +msgid "You use an elaborate knot to tie your %s to your %s" msgstr "" +#. ~ Use action holster_prompt for short rope. #: lang/json/GENERIC_from_json.py -msgid "fencing foil" -msgid_plural "fencing foils" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Tie what to the rope?" +msgstr "" -#. ~ Description for fencing foil +#. ~ Description for short rope #: lang/json/GENERIC_from_json.py msgid "" -"A weapon used for fencing, the most noble of all sports. Unfortunately, a " -"fencing foil is rather useless as a weapon, due to its flexible shaft and " -"dull tip." +"A 6-foot (or about 180 cm) long piece of rope. Wear it over a shoulder and " +"tie items to it as a temporary carrying solution." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fencing épée" -msgid_plural "fencing épées" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "long rope" +msgid_plural "long ropes" +msgstr[0] "довга мотузка" +msgstr[1] "довгі мотузки" +msgstr[2] "довгих мотузок" +msgstr[3] "довга мотузка" -#. ~ Description for fencing épée +#. ~ Description for long rope #: lang/json/GENERIC_from_json.py msgid "" -"A weapon used for fencing, the most noble of all sports. The épée is the " -"heaviest and stiffest of the fencing weapons, and therefore perhaps the most" -" useful." +"A 30-foot (or about 9 m) long rope. Useful for keeping yourself safe from " +"falls. Wear it over a shoulder and tie items to it as a temporary carrying " +"solution." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fencing saber" -msgid_plural "fencing sabers" +msgid "short vine" +msgid_plural "short vines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fencing saber +#. ~ Description for short vine #: lang/json/GENERIC_from_json.py msgid "" -"A weapon used for fencing, the most noble of all sports. The fencing saber " -"is marginally shorter than the foil and épée, but no less effective." +"A sturdy 6-foot (or about 180 cm) long vine. Wear it over a shoulder and " +"tie items to it as a temporary carrying solution." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sharpened foil" -msgid_plural "sharpened foils" +msgid "long vine" +msgid_plural "long vines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sharpened foil +#. ~ Description for long vine #: lang/json/GENERIC_from_json.py msgid "" -"What was once a mostly-harmless fencing foil has had its electrical plunger " -"assembly removed and has been crudely sharpened to a point. Though it still" -" lacks a cutting edge, it is now somewhat more lethal, yet still familiar to" -" the practiced fencer." +"A sturdy 30-foot (or about 9 m) long vine. Could easily be used as a rope." +" Strong enough to suspend a large corpse for butchering. Wear it over a " +"shoulder and tie items to it as a temporary carrying solution." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sharpened épée" -msgid_plural "sharpened épées" +msgid "short cordage rope" +msgid_plural "short cordage ropes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sharpened épée +#. ~ Description for short cordage rope #: lang/json/GENERIC_from_json.py msgid "" -"What was once a mostly-harmless fencing épée has had its electrical plunger " -"assembly removed and has been crudely sharpened to a point. Though it still" -" lacks a cutting edge, it is now considerably more lethal, yet still " -"familiar to the practiced fencer." +"A 6-foot (or about 180 cm) long piece of rough rope, woven from natural " +"cordage. Useful for some purposes, but not as strong or flexible as proper " +"rope. Wear it over a shoulder and tie items to it as a temporary carrying " +"solution." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sharpened saber" -msgid_plural "sharpened sabers" +msgid "long cordage rope" +msgid_plural "long cordage ropes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sharpened saber +#. ~ Description for long cordage rope #: lang/json/GENERIC_from_json.py msgid "" -"What was once a mostly-harmless fencing saber has had its rounded tip " -"snapped off and has been crudely sharpened to a point. Though it still " -"lacks a cutting edge, it is now considerably more lethal, yet still familiar" -" to the practiced fencer." +"A 30-foot (or about 9 m) long rough rope, woven from natural cordage. Not " +"strong enough to hold up to falls, but still useful for some things, such as" +" suspending large corpses for butchering. Wear it over a shoulder and tie " +"items to it as a temporary carrying solution." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "hollow cane" -msgid_plural "hollow canes" +msgid "rubber band" +msgid_plural "rubber bands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hollow cane +#. ~ Description for rubber band #: lang/json/GENERIC_from_json.py msgid "" -"A cane designed to conceal a blade. This was a popular fashion accessory " -"for the wealthy during the 18th and 19th centuries." +"An elastic loop of rubber commonly used to hold multiple objects together." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sword cane" -msgid_plural "sword canes" +msgid "badminton shuttlecock" +msgid_plural "shuttlecocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sword cane +#. ~ Description for badminton shuttlecock #: lang/json/GENERIC_from_json.py -msgid "A sword with a thin blade designed to be hidden inside a hollow cane." +msgid "A high-drag projectile used in the sport of badminton." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/TOOL_from_json.py -msgid "cutlass" -msgid_plural "cutlasses" +#: lang/json/GENERIC_from_json.py +msgid "golf tee" +msgid_plural "golf tees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cutlass +#. ~ Description for golf tee #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheaply-made replica of a broad saber known for its use by " -"sailors and pirates." +"A pin shaped piece of wood meant for holding a golf ball slightly off the " +"ground." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/TOOL_from_json.py -msgid "katana" -msgid_plural "katana" +#: lang/json/GENERIC_from_json.py +msgid "golf ball" +msgid_plural "golf balls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for golf ball #: lang/json/GENERIC_from_json.py -msgid "This is a dull, cheaply-made replica of a rare sword from Japan." +msgid "A small ball with round indentations on it." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/TOOL_from_json.py -msgid "zweihänder" -msgid_plural "zweihänders" +#: lang/json/GENERIC_from_json.py +msgid "pool ball" +msgid_plural "pool balls" +msgstr[0] "більярдна куля" +msgstr[1] "більярдні кулі" +msgstr[2] "більярдних куль" +msgstr[3] "більярдна куля" + +#. ~ Description for pool ball +#: lang/json/GENERIC_from_json.py +msgid "A colorful, hard ball. Essentially a rock." +msgstr "Яскраво забарвлена тверда куля. По суті, камінь." + +#: lang/json/GENERIC_from_json.py +msgid "bowling ball" +msgid_plural "bowling balls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for zweihänder +#. ~ Description for bowling ball #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheaply-made replica of a huge two-handed sword from " -"Germany. It still packs a wallop." +"A large, heavy ball. Before the apocalypse, its main purpose was to be " +"rolled along waxed floors." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/TOOL_from_json.py -msgid "broadsword" -msgid_plural "broadswords" +#: lang/json/GENERIC_from_json.py +msgid "baseball" +msgid_plural "baseballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broadsword +#. ~ Description for baseball #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheaply-made replica of an early modern sword that saw use " -"in the 16th, 17th, and 18th centuries. Called 'broad' to contrast with the " -"slimmer rapiers." +"A baseball, good for throwing at enemies. Getting hit with one of these " +"hurts a lot more than you might think." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cavalry sabre" -msgid_plural "cavalry sabres" +msgid "football" +msgid_plural "footballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cavalry sabre +#. ~ Description for football #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheaply-made replica of a curved sword associated with " -"cavalry, from the Early Modern period onwards." +"An oval made of leather and string, it's easily thrown but does little " +"damage. You could take it apart into leather if you wanted." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -msgid "rapier" -msgid_plural "rapiers" +#: lang/json/GENERIC_from_json.py +msgid "basketball" +msgid_plural "basketballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rapier +#. ~ Description for basketball #: lang/json/GENERIC_from_json.py -msgid "" -"This is a blunted, cheap replica of a thin sword with an ornate handguard. " -"It looks like the preferred weapon of gentlemen and swashbucklers. Light " -"and quick, it makes any battle a stylish battle." +msgid "A high-quality indoor basketball. You may throw it at zombies." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -#: lang/json/TOOL_from_json.py -msgid "wakizashi" -msgid_plural "wakizashi" +#: lang/json/GENERIC_from_json.py +msgid "volleyball" +msgid_plural "volleyballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for volleyball #: lang/json/GENERIC_from_json.py -msgid "" -"This is a dull, cheap replica of the more common wakizashi. Smaller and " -"lighter than a katana, but still effective in combat." +msgid "A standard regulation volleyball." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -msgid "kris" -msgid_plural "krises" +#: lang/json/GENERIC_from_json.py +msgid "beach volleyball" +msgid_plural "volleyballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for kris +#. ~ Description for beach volleyball #: lang/json/GENERIC_from_json.py msgid "" -"This is a dull, cheap replica of a wavy bladed dagger that comes from " -"Southeast Asia." +"A brightly colored beach volleyball. It is slightly larger than a regular " +"white one." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "lajatang" -msgid_plural "lajatangs" +msgid "hockey puck" +msgid_plural "hockey pucks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lajatang +#. ~ Description for hockey puck #: lang/json/GENERIC_from_json.py msgid "" -"An impractical exotic weapon comprised of a long pole of wood with curved " -"blades on each end." +"A heavy circular block of solid rubber, normally used for playing hockey. " +"You can throw it to cause some serious harm." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "punch dagger" -msgid_plural "punch daggers" +#: lang/json/GENERIC_from_json.py lang/json/MONSTER_from_json.py +#: lang/json/furniture_from_json.py +msgid "mannequin" +msgid_plural "mannequins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for punch dagger +#. ~ Description for mannequin #: lang/json/GENERIC_from_json.py msgid "" -"A short and sharp double-edged dagger made to be gripped in the palm, with " -"the blade protruding between the fingers." +"A figure of an adult human, as seen in the display case at the mall. It " +"might be able to fool some zombies if it could attract their attention." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "razorbar katar" -msgid_plural "razorbar katars" +msgid "makeshift bayonet" +msgid_plural "makeshift bayonets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for razorbar katar +#. ~ Description for makeshift bayonet #: lang/json/GENERIC_from_json.py msgid "" -"Five pieces of rebar sharpened to cruel points and strapped to a brace " -"fastened at wrist and forearm on both arms. The next bub better watch out." +"A makeshift version of a bayonet that consists of a mere spike with some " +"string." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "tiger claws" -msgid_plural "tiger claws" +msgid "war flail" +msgid_plural "war flails" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for war flail #: lang/json/GENERIC_from_json.py msgid "" -"Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " -"from India designed to be concealed under and against the palm." +"This is a stout pole with a large steel flanged mace head on a short chain " +"attached to it, based on the peasant flail agricultural tool except now with" +" a metal head and made to thresh people in metal armor rather than grain." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pair of brass knuckles" -msgid_plural "pairs of brass knuckles" +msgid "peasant flail" +msgid_plural "peasant flails" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of brass knuckles +#. ~ Description for peasant flail #: lang/json/GENERIC_from_json.py msgid "" -"A metal weapon made of brass, designed to be gripped in the palm and cause " -"punches to do extra damage. A good, quick weapon - but you have to get " -"within punching range to use it." +"This is a stout pole with a wooden club on a leather cord attached to it, " +"this is a tool used to thresh wheat and occasionally people when the " +"peasants got angry at their feudal lords." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pair of nail knuckles" -msgid_plural "pairs of nail knuckles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "baseball bat" +msgid_plural "baseball bats" +msgstr[0] "бейсбольна бита" +msgstr[1] "бейсбольні бити" +msgstr[2] "бейсбольних бит" +msgstr[3] "бейсбольна бита" -#. ~ Description for pair of nail knuckles +#. ~ Description for baseball bat #: lang/json/GENERIC_from_json.py -msgid "" -"A pair of knuckles consisting of two small squares of wood with several " -"nails coming through them. Useful in nasty street fights." +msgid "A sturdy wood bat. Makes a great melee weapon." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pair of scrap knuckles" -msgid_plural "pairs of scrap knuckles" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "aluminum bat" +msgid_plural "aluminum bats" +msgstr[0] "алюмінієва бита" +msgstr[1] "алюмінієві бити" +msgstr[2] "алюмінієвих бит" +msgstr[3] "алюмінієва бита" -#. ~ Description for pair of scrap knuckles +#. ~ Description for aluminum bat #: lang/json/GENERIC_from_json.py msgid "" -"A mass of scrap metal crudely beat into shape, with folded rags underneath " -"to protect the wearers knuckles. A good, quick weapon - but you have to get" -" within punching range to use it." +"An aluminum baseball bat, lighter than a wooden bat and a little easier to " +"swing as a result." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pair of steel knuckles" -msgid_plural "pairs of steel knuckles" +msgid "foam rubber bat" +msgid_plural "foam rubber bats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pair of steel knuckles +#. ~ Description for foam rubber bat #: lang/json/GENERIC_from_json.py msgid "" -"A pair of knuckles forged from steel, designed to be gripped in the palm and" -" cause punches to do more damage. A good, quick weapon - but you have to " -"get within punching range to use it." +"A baseball bat made out of foam rubber with a plastic handle. Light, well-" +"balanced, and easy to wield, but almost completely ineffective." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "explosive arrowhead" -msgid_plural "explosive arrowheads" +msgid "expandable baton" +msgid_plural "expandable batons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for explosive arrowhead +#. ~ Use action menu_text for expandable baton. +#: lang/json/GENERIC_from_json.py +msgid "Expand" +msgstr "" + +#. ~ Use action msg for expandable baton. +#: lang/json/GENERIC_from_json.py +msgid "You snap open your baton." +msgstr "" + +#. ~ Description for expandable baton #: lang/json/GENERIC_from_json.py msgid "" -"This simple IED is designed to be attached to an arrow and detonate on " -"impact." +"A telescoping baton that collapses for easy storage. Makes an excellent " +"melee weapon. Activate to expand." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "disc" -msgid_plural "discs" +msgid "expandable baton (extended)" +msgid_plural "expandable batons (extended)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for disc +#. ~ Use action menu_text for expandable baton (extended). +#. ~ Use action menu_text for CRIT axe. +#. ~ Use action menu_text for The Iron Whip. #: lang/json/GENERIC_from_json.py -msgid "" -"A plastic disc made for playing disc golf, it is smaller and denser then a " -"normal frisbee." +msgid "Collapse" msgstr "" +#. ~ Use action msg for expandable baton (extended). #: lang/json/GENERIC_from_json.py -msgid "frisbee" -msgid_plural "frisbees" +msgid "You collapse your baton." +msgstr "" + +#. ~ Description for expandable baton (extended) +#: lang/json/GENERIC_from_json.py +msgid "" +"A telescoping baton that collapses for easy storage. Makes an excellent " +"melee weapon. Activate to collapse." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/TOOL_from_json.py +msgid "battle axe" +msgid_plural "battle axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for frisbee +#. ~ Description for battle axe #: lang/json/GENERIC_from_json.py -msgid "A plastic frisbee made for outdoor games." +msgid "" +"This is a dull, cheaply made replica of a massive axe designed for warfare." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "lawn dart" -msgid_plural "lawn darts" +msgid "blackjack" +msgid_plural "blackjacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lawn dart +#. ~ Description for blackjack #: lang/json/GENERIC_from_json.py -msgid "A large plastic dart made for outdoor games." +msgid "" +"This is a short, easily concealed bludgeoning weapon consisting of a weight " +"embedded at the end of a short leather shaft. Formerly used by law " +"enforcement, this weapon is meant to stun or knock out the subject, although" +" head strikes have a high risk of causing a permanent, disabling brain " +"injury or being fatal." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "throwing axe" -msgid_plural "throwing axes" +msgid "bokken" +msgid_plural "bokken" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for throwing axe +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" -"A lightweight hatchet made for throwing. Its ineffective cutting edge and " -"light weight makes it unsuitable for use as a tool." +"This is a solid wood 'training' katana, exactingly crafted to mimic the " +"weight and balance of the real thing. Despite its lack of a sharp metal " +"edge, it's still quite capable of inflicting deadly wounds." msgstr "" +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py -msgid "throwing knife" -msgid_plural "throwing knives" -msgstr[0] "ніж для метання" -msgstr[1] "ножа для метання" -msgstr[2] "ножів для метання" -msgstr[3] "ножі для метання" +msgid "" +"This is a solid wood 'training' katana, but feels far too light to make an " +"effective weapon." +msgstr "" -#. ~ Description for throwing knife -#. ~ Description for magical throwing knife +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" -"A thin and flat knife made for throwing. Its ineffective cutting edge and " -"odd shape makes it unsuitable for use as a tool." +"This is a solid wood 'training' katana, but it looks to be mass-produced, " +"and not quite as effective as the real deal." msgstr "" -"Тонкий та плаский ніж призначений для метання. Його неефективна ріжуча " -"кромка та незвична форма роблять його непридатним для використання у якості " -"інструмента." #: lang/json/GENERIC_from_json.py -msgid "bakelite phone" -msgid_plural "bakelite phones" +msgid "The 7-10 Split" +msgid_plural "7-10 Splits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bakelite phone +#. ~ Description for The 7-10 Split #: lang/json/GENERIC_from_json.py msgid "" -"A vintage, bright-red bakelite phone of famous swedish design. It would " -"look almost normal, were it not for the fact that its rotary dial has been " -"replaced by a doorknob." +"An improvised weapon, made from two spikes attached to a bowling pin in the " +"shape of a 'T'." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "golden comb" -msgid_plural "golden combs" +msgid "bowling pin" +msgid_plural "bowling pins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for golden comb +#. ~ Description for bowling pin #: lang/json/GENERIC_from_json.py -msgid "" -"A small and delicate golden comb, it was once carefully engraved, but time " -"has smoothed its designs to illegibility." +msgid "A blunt bowling pin. Makes a decent melee weapon, if somewhat short." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "shifting keyring" -msgid_plural "shifting keyrings" +msgid "barbed wire bat" +msgid_plural "barbed wire bats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for shifting keyring +#. ~ Description for barbed wire bat #: lang/json/GENERIC_from_json.py -msgid "" -"A smooth ring of steel, heavy under the weight of numerous keys. The " -"designs of the keys change over time, but none will fit any keyhole you have" -" ever found." +msgid "A baseball bat wrapped with barbed wire. A brutal melee weapon." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "engraved cube" -msgid_plural "engraved cubes" +msgid "walking cane" +msgid_plural "walking canes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for engraved cube +#. ~ Description for walking cane #: lang/json/GENERIC_from_json.py msgid "" -"A small cube of smooth rock. An uniform grid of nine squares is engraved in" -" each of its faces." +"Handicapped or not, you always walk in style. Consisting of a metal " +"headpiece and a wooden body, this makes a great bashing weapon in a pinch." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "utah teapot" -msgid_plural "utah teapots" +msgid "crutches" +msgid_plural "pairs of crutches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for utah teapot +#. ~ Description for crutches #: lang/json/GENERIC_from_json.py -msgid "" -"A squat teapot with a minimalist design. Its surface shines under the glow " -"of unseen light sources." +msgid "A pair of crutches." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "glitching stopwatch" -msgid_plural "glitching stopwatches" +msgid "cudgel" +msgid_plural "cudgels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for glitching stopwatch +#. ~ Description for cudgel #: lang/json/GENERIC_from_json.py msgid "" -"A small digital stopwatch, looking slightly old by today's standards. Its " -"digital display prints ever-changing gibberish." +"A slender long rod of wood, while traditionally intended as a training tool " +"for many dueling moves, it still makes a good melee weapon in a pinch." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "alien resin chunk" -msgid_plural "alien resin chunks" +msgid "makeshift macuahuitl" +msgid_plural "makeshift macuahuitls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for alien resin chunk +#. ~ Description for makeshift macuahuitl #: lang/json/GENERIC_from_json.py msgid "" -"This is a shattered fragment of alien resin. It looks a bit like a large " -"piece of sea glass, frosted and gritty with the edges rounded off. It is " -"somewhat warm to the touch." +"A flat wooden club with sharpened pieces of stone sticking to both of its " +"sides." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Exodii chassis" -msgid_plural "Exodii chassis" +msgid "glass shiv" +msgid_plural "glass shivs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for glass shiv #: lang/json/GENERIC_from_json.py -msgid "" -"This roughly hexagonal frame and associated bodywork looks like it was " -"constructed as a single monolithic piece. The fitting holes and attachments" -" are extremely durable, despite showing signs of heavy wear and repair. The" -" structure is versatile, and could probably be engineered to serve a number " -"of different heavy combat roles." +msgid "A glass shard with wrapping at one end so it can be safely wielded." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Exodii drone chassis" -msgid_plural "Exodii drone chassis" +msgid "golf club" +msgid_plural "golf clubs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for golf club #: lang/json/GENERIC_from_json.py msgid "" -"This small, roughly hexagonal frame and associated bodywork looks like it " -"was constructed as a single monolithic piece. The fitting holes and " -"attachments are extremely durable, despite showing signs of heavy wear and " -"repair. The structure is versatile, and could probably be engineered to " -"serve a number of different heavy combat roles." +"A long handle with a big metal head, flat on one side, for driving golf " +"balls. Fore!" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cybernetic neural matrix" -msgid_plural "cybernetic neural matrices" +msgid "sledge hammer" +msgid_plural "sledge hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cybernetic neural matrix +#. ~ Description for sledge hammer #: lang/json/GENERIC_from_json.py msgid "" -"A series of tanks and tubes with ports for fluids, electricity, and input " -"and output, this complex arrangement is made to house a brain and spine and " -"the most difficult to replace organs for keeping them alive." +"A large, heavy hammer. Makes an acceptable melee weapon for the very " +"strong, but is nearly useless in the hands of the weak." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "unfamiliar electronic thingy" -msgid_plural "unfamiliar electronic thingies" +msgid "short sledge hammer" +msgid_plural "short sledge hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for unfamiliar electronic thingy +#. ~ Description for short sledge hammer #: lang/json/GENERIC_from_json.py msgid "" -"The wiring and general shape suggest to you that this is a computer, or at " -"least some sort of electronic device, but what it is and what role it serves" -" is lost on you. It's heavy and sturdy in construction." +"A shorter sledge hammer, still as weighty, however, due to the same steel " +"head. Worse as a melee weapon but is a more portable tool." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "inscribed metal plates" -msgid_plural "inscribed metal plates" +msgid "engineer's hammer" +msgid_plural "engineer's hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for engineer's hammer #: lang/json/GENERIC_from_json.py msgid "" -"This device looks electronic, but is unfamiliar. It is a series of tightly " -"fitted coppery-looking rings, set concentrically. Wires run from each ring " -"to an axis in the middle." +"A stout and hefty hammer, more akin to a sledge than a typical ball-peen. " +"Useful for portable demolition work, but is very unwieldy as a weapon." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cybernetic sensor" -msgid_plural "cybernetic sensors" +msgid "heavy sledge hammer" +msgid_plural "heavy sledge hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cybernetic sensor +#. ~ Description for heavy sledge hammer #: lang/json/GENERIC_from_json.py msgid "" -"From the large glassy eye - the size of a small dinner plate - in the front," -" you deduce this is some sort of camera. None of the inner workings make " -"any sense to you nor resemble any camera you've seen before." +"A large sledge hammer with a massive, heavy head. This unwieldy tool is " +"meant to break concrete, rock, brick, anything really." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "rotary device" -msgid_plural "rotary devices" +msgid "hockey stick" +msgid_plural "hockey sticks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rotary device +#. ~ Description for hockey stick #: lang/json/GENERIC_from_json.py msgid "" -"You assume from the coils of coppery wire and the protruding piston that " -"this is some sort of motor or generator, but the design doesn't look similar" -" to anything you've seen before, and you can't figure out how to get it to " -"work." +"A curved wooden stick with a wide and flat end. Commonly used by hockey " +"players." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "engraved parabolic dish" -msgid_plural "engraved parabolic dishes" +msgid "homewrecker" +msgid_plural "homewreckers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for engraved parabolic dish +#. ~ Description for homewrecker #: lang/json/GENERIC_from_json.py msgid "" -"This hefty parabolic dish is engraved with an unrecognizable pattern of " -"symbols that might, at a guess, be some sort of circuitry pattern - or maybe" -" a religious incantation." +"A long piece of wood with several chunks of steel firmly tied to it. The " +"resulting weapon is unwieldy and slow but very heavy hitting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "oblong device" -msgid_plural "oblong devices" +msgid "ironshod quarterstaff" +msgid_plural "ironshod quarterstaves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for oblong device +#. ~ Description for ironshod quarterstaff #: lang/json/GENERIC_from_json.py msgid "" -"Perfectly smooth, cool to the touch, and a dull blue-grey color, this looks " -"almost like a perfect riverstone at first glance. Its artificial nature is " -"betrayed on closer inspection by a network of intricate patterns visible as " -"a slight difference in the reflection of light off its surface." +"A smooth and sturdy staff with a leather-wrapped grip, which has been " +"reinforced with metal bands and caps. Durable and well-balanced, it is " +"surprisingly easy to handle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "enormous aluminum ingot" -msgid_plural "enormous aluminum ingots" +msgid "lucerne hammer" +msgid_plural "lucerne hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for enormous aluminum ingot +#. ~ Description for lucerne hammer #: lang/json/GENERIC_from_json.py -msgid "A block of pure aluminum at least as big as a dishwasher." +msgid "" +"This is a versatile polearm with a spiked hammer head, a spike, and a hook " +"attached to a beefy wooden pole." msgstr "" +#. ~ Description for lucerne hammer #: lang/json/GENERIC_from_json.py -msgid "enormous plastic block" -msgid_plural "enormous plastic blocks" +msgid "" +"This is a cheap piece of crap imitation of a versatile polearm with a spiked" +" hammer head, probably meant to be used for LARPing." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "mace" +msgid_plural "maces" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for enormous plastic block +#. ~ Description for mace #: lang/json/GENERIC_from_json.py msgid "" -"This is a single enormous brick of plastic, big enough to curl up inside " -"were it hollow." +"A medieval weapon consisting of a wood handle with a heavy iron end. It is " +"heavy and slow, but its crushing damage is devastating." msgstr "" +#. ~ Description for mace #: lang/json/GENERIC_from_json.py -msgid "enormous steel ingot" -msgid_plural "enormous steel ingots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A light, cheaply made replica of a medieval weapon that would normally " +"consist of a wood handle with a heavy iron end." +msgstr "" -#. ~ Description for enormous steel ingot +#. ~ Description for mace #: lang/json/GENERIC_from_json.py -msgid "A single, monolithic block of high quality steel." +msgid "" +"A medieval weapon consisting of a wood handle with a heavy iron end. That " +"iron end feels a bit loose." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "enormous tin ingot" -msgid_plural "enormous tin ingots" +msgid "simple mace" +msgid_plural "simple maces" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for enormous tin ingot +#. ~ Description for simple mace #: lang/json/GENERIC_from_json.py -msgid "An enormous ingot of pure tin." +msgid "" +"A stick with a circular lump of metal tied to it masquerading as a mace. " +"You could probably improve it by finding a way to pin the head to the " +"handle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "enormous copper ingot" -msgid_plural "enormous copper ingots" +msgid "trench mace" +msgid_plural "trench maces" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for enormous copper ingot +#. ~ Description for trench mace #: lang/json/GENERIC_from_json.py -msgid "A massive solid piece of copper, covered by a blue-green patina." +msgid "" +"A mace made from a cicular chunk of steel pinned to the end of a stick. You" +" can feel your inner Trench Raider come alive when you wield it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "enormous zinc ingot" -msgid_plural "enormous zinc ingots" +msgid "makeshift sap" +msgid_plural "makeshift saps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for enormous zinc ingot +#. ~ Description for makeshift sap #: lang/json/GENERIC_from_json.py msgid "" -"An absolutely massive block of pure zinc. Bet you didn't expect that - " -"nobody expects zinc." +"This is an improvised sap, also known as a cosh, slapjack and slapper. A " +"short and flat bludgeoning weapon consisting of a weight embedded between " +"two patches of leather." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "enormous lead ingot" -msgid_plural "enormous lead ingots" +msgid "Mjölnir" +msgid_plural "Mjölnirs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for enormous lead ingot +#. ~ Description for Mjölnir #: lang/json/GENERIC_from_json.py msgid "" -"A block of lead so huge you don't even want to think about how heavy it is." +"A large hammer, forged from the heart of a dying star. It bears the inscription:\n" +"\n" +"Whosoever holds this hammer,\n" +"If he be worthy,\n" +"Shall possess the power to…\n" +"CRUSH!'" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sheet of glass" -msgid_plural "sheets of glass" +msgid "morningstar" +msgid_plural "morningstars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action done_message for sheet of glass. +#. ~ Description for morningstar #: lang/json/GENERIC_from_json.py msgid "" -"You break the pane and place the shards on the ground, ready to be cracked " -"by something passing by." +"A medieval weapon consisting of a wood handle with a heavy, spiked iron ball" +" on the end. It deals devastating crushing damage, with a small amount of " +"piercing to boot." msgstr "" -#. ~ Description for sheet of glass +#. ~ Description for morningstar #: lang/json/GENERIC_from_json.py msgid "" -"A large sheet of glass, around three by four feet. Easily shattered. " -"Useful for repairing windows." +"A light, cheaply made replica of a medieval weapon that would normally " +"consist of a wood handle with a heavy, spiked iron ball on the end." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sheet of reinforced glass" -msgid_plural "sheets of reinforced glass" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "nail bat" +msgid_plural "nail bats" +msgstr[0] "бита із цвяхами" +msgstr[1] "бити із цвяхами" +msgstr[2] "бит із цвяхами" +msgstr[3] "бита із цвяхами" -#. ~ Description for sheet of reinforced glass +#. ~ Description for nail bat #: lang/json/GENERIC_from_json.py msgid "" -"A large sheet of bulletproof glass, it looks to a little over two inches " -"thick." +"A baseball bat with several nails driven through it, an excellent melee " +"weapon." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pane of reinforced glass" -msgid_plural "panes of reinforced glass" +msgid "nailboard" +msgid_plural "nailboards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pane of reinforced glass +#. ~ Description for nailboard #: lang/json/GENERIC_from_json.py msgid "" -"A small pane of bulletproof glass, it looks to be a little over two inches " -"thick." +"A long piece of wood with several nails through one end; essentially a " +"simple mace. Makes an acceptable melee weapon." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sheet of tempered glass" -msgid_plural "sheets of tempered glass" +msgid "pool cue" +msgid_plural "pool cues" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sheet of tempered glass +#. ~ Description for pool cue #: lang/json/GENERIC_from_json.py msgid "" -"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." +"A hard-wood stick designed for hitting colorful balls around a felt table. " +"Truly, the coolest of sports." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "peephole" -msgid_plural "peepholes" +msgid "PR-24 baton (extended)" +msgid_plural "PR-24 batons (extended)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for peephole +#. ~ Use action menu_text for PR-24 baton (extended). +#: lang/json/GENERIC_from_json.py +msgid "Retract" +msgstr "" + +#. ~ Use action msg for PR-24 baton (extended). +#: lang/json/GENERIC_from_json.py +msgid "You collapse your PR-24 baton." +msgstr "" + +#. ~ Description for PR-24 baton (extended) #: lang/json/GENERIC_from_json.py msgid "" -"A metal cylinder with a small lens inside intended to be installed on a " -"door." +"The Monadnock PR-24 baton is a collapsible, lightweight, side-handle baton " +"used by law enforcement all over the world. The PR designation is rumored " +"to mean Public Relations. Activate to retract." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mesh screen" -msgid_plural "mesh screens" +msgid "PR-24 baton (retracted)" +msgid_plural "PR-24 batons (retracted)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mesh screen -#: lang/json/GENERIC_from_json.py -msgid "A roll of fine mesh screen for bug barriers on porches." +#. ~ Use action menu_text for PR-24 baton (retracted). +#. ~ Use action menu_text for CRIT hatchet. +#. ~ Use action menu_text for Biomancer shifting spear. +#. ~ Use action menu_text for Belt of The Iron Whip. +#: lang/json/GENERIC_from_json.py lang/json/GENERIC_from_json.py +#: lang/json/TOOL_ARMOR_from_json.py +msgid "Extend" msgstr "" +#. ~ Use action msg for PR-24 baton (retracted). #: lang/json/GENERIC_from_json.py -msgid "pipe" -msgid_plural "pipes" -msgstr[0] "труба" -msgstr[1] "труби" -msgstr[2] "труб" -msgstr[3] "труба" +msgid "You snap open your PR-24 baton." +msgstr "" -#. ~ Description for pipe +#. ~ Description for PR-24 baton (retracted) #: lang/json/GENERIC_from_json.py msgid "" -"A steel pipe; makes a good melee weapon. Useful in a few crafting recipes." +"The Monadnock PR-24 baton is a collapsible, lightweight, side-handle baton " +"used by law enforcement all over the world. The PR designation is rumored " +"to mean Public Relations. Activate to extend." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "spike" -msgid_plural "spikes" +#: lang/json/GENERIC_from_json.py +msgid "quarterstaff" +msgid_plural "quarterstaves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for spike -#: lang/json/GENERIC_from_json.py -msgid "" -"A large and slightly misshapen spike, could do some damage mounted on a " -"vehicle." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "copper tubing" -msgid_plural "copper tubings" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for copper tubing +#. ~ Description for quarterstaff #: lang/json/GENERIC_from_json.py msgid "" -"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." +"A smooth and sturdy staff. Light and well-balanced, it is surprisingly easy" +" to handle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "aluminum ingot" -msgid_plural "aluminum ingots" -msgstr[0] "зливок алюмінію" -msgstr[1] "зливки алюмінію" -msgstr[2] "зливків алюмінію" -msgstr[3] "зливок алюмінію" +msgid "rock in a sock" +msgid_plural "rocks in socks" +msgstr[0] "Камінь у шкарпетці" +msgstr[1] "Камінь у шкарпетці" +msgstr[2] "Камінь у шкарпетці" +msgstr[3] "Камні у шкарпетках" -#. ~ Description for aluminum ingot +#. ~ Description for rock in a sock #: lang/json/GENERIC_from_json.py -msgid "" -"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." +msgid "A pair of nested socks filled with a stone. A true weapon of despair." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "scrap copper" -msgid_plural "scrap copper" +msgid "plastic shank" +msgid_plural "plastic shanks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for plastic shank #: lang/json/GENERIC_from_json.py -msgid "A small chunk of copper, usable for crafting or repairs." +msgid "" +"An oblong plastic trinket with the far end ground down into a stabbing " +"point." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bee sting" -msgid_plural "bee stings" +msgid "shillelagh" +msgid_plural "shillelaghs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bee sting +#. ~ Description for shillelagh #: lang/json/GENERIC_from_json.py -msgid "A six-inch stinger from a giant bee. Makes a mediocre melee weapon." +msgid "" +"A stout knotty stick with a large knob at the top that has been left to cure" +" in a chimney. A traditional Irish weapon, the shillelagh was originally " +"used for settling disputes in a gentlemanly manner." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broom" -msgid_plural "brooms" +msgid "loaded stick" +msgid_plural "loaded sticks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broom +#. ~ Description for loaded stick #: lang/json/GENERIC_from_json.py msgid "" -"A long-handled broom. Makes a terrible weapon unless you're chasing cats." +"A stout knotty stick with a large knob at the top that has been left to cure" +" in a chimney. A traditional Irish weapon, the shillelagh was originally " +"used for settling disputes in a gentlemanly manner. The knob has been " +"hollowed and filled with molten heavy metal to pack more of a punch." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "ceramic shard" -msgid_plural "ceramic shards" -msgstr[0] "керамічний уламок" -msgstr[1] "керамічних уламки" -msgstr[2] "керамічних уламків" -msgstr[3] "керамічний уламок" - -#. ~ Description for ceramic shard +#. ~ Description for shillelagh #: lang/json/GENERIC_from_json.py msgid "" -"A broken ceramic shard. It is heavy and has a somewhat sharp edge, but it's" -" too irregular to cut properly." +"A fake shillelagh massproduced as a souvenir for tourists. This knotty " +"stick has not been cured in a chimney like a traditional shillelagh but has " +"had fake black soot painted on." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fungal fighter sting" -msgid_plural "fungal fighter stings" +msgid "tonfa" +msgid_plural "tonfas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fungal fighter sting +#. ~ Description for tonfa #: lang/json/GENERIC_from_json.py -msgid "A short dart from a fungal fighter. Makes a poor melee weapon." +msgid "" +"A hard plastic truncheon commonly employed by police. Originally an " +"Okinawan weapon, it consists of a stick with a perpendicular handle attached" +" a third of the way down its length." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py -msgid "mattress" -msgid_plural "mattresses" +#: lang/json/GENERIC_from_json.py +msgid "wooden tonfa" +msgid_plural "wooden tonfas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mattress +#. ~ Description for wooden tonfa #: lang/json/GENERIC_from_json.py -msgid "This is a single, or twin, sized mattress." +msgid "" +"A stout wooden truncheon of the sort commonly employed by police. " +"Originally an Okinawan weapon, it consists of a stick with a perpendicular " +"handle attached a third of the way down its length." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py -msgid "down mattress" -msgid_plural "down mattresses" +#: lang/json/GENERIC_from_json.py +msgid "war hammer" +msgid_plural "war hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for down mattress +#. ~ Description for war hammer #: lang/json/GENERIC_from_json.py -msgid "This is a single, or twin, sized down filled mattress." +msgid "" +"A medieval hammer made for battle. Its odd shape and balance make it an " +"excellent weapon, but an ineffective tool." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "flint" -msgid_plural "flints" -msgstr[0] "кремінь" -msgstr[1] "кремені" -msgstr[2] "кременів" -msgstr[3] "кремені" +msgid "bionic claws" +msgid_plural "bionic claws" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for flint +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py -msgid "" -"A rock with sharp edges. Makes a passable melee weapon, and can also make " -"sparks if struck against high-carbon steel." +msgid "Short and sharp claws made from a high-tech metal." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "rubber tire chunk" -msgid_plural "rubber tire chunks" +msgid "monomolecular blade" +msgid_plural "monomolecular blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rubber tire chunk +#. ~ Description for monomolecular blade #: lang/json/GENERIC_from_json.py -msgid "This is a chunk of thick, semi-rigid rubber from a tire." +msgid "" +"A foot-long blade made from high-tech alloy and edged with bonded " +"nanocrystals." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "rubber tire strip" -msgid_plural "rubber tire strips" +msgid "bullwhip" +msgid_plural "bullwhips" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rubber tire strip +#. ~ Description for bullwhip #: lang/json/GENERIC_from_json.py msgid "" -"This is a long curled strip of thick, semi-rigid rubber cut from a tire." +"A long strip of braided leather with a handle on one end. Originally " +"developed to settle disagreements with cattle, it's better used now for " +"flaying the rotten flesh off of walking corpses. Great for when a problem " +"comes along." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "ESAPI ballistic plate" -msgid_plural "ESAPI ballistic plates" +msgid "scourge" +msgid_plural "scourges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ESAPI ballistic plate +#. ~ Description for scourge #: lang/json/GENERIC_from_json.py msgid "" -"A polygonal ceramic ballistic plate with a slightly concave profile. Its " -"inner surface is coated with Ultra High Molecular Weight Polyethylene, and " -"is labeled \"TOP\", while its outer surface is labeled \"STRIKE FACE\". " -"This is intended to be worn in a ballistic vest and can withstand several " -"high energy rifle rounds before breaking." +"The \"cat 'o nine tails\", a handle with nine short leather whips, each " +"sporting a razor-sharp metal tip. This ancient instrument of torture causes" +" massive bleeding, but by design is inefficient as a weapon." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "ESBI ballistic plate" -msgid_plural "ESBI ballistic plates" +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +msgid "lobotomizer" +msgid_plural "lobotomizers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ESBI ballistic plate +#. ~ Description for lobotomizer #: lang/json/GENERIC_from_json.py msgid "" -"A polygonal ceramic ballistic plate with a slightly concave profile. " -"\"STRIKE FACE\" is printed on its outer surface. This is designed to be " -"worn in the sides of a plate carrier and can withstand several high energy " -"rifle rounds before breaking." +"This is a hand-forged collapsible tool that has two axe heads and a sharp " +"shovel-like tip on one end. It can be used as a shovel, or you could chop " +"some zombies with it instead." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "grenade launcher buttstock" -msgid_plural "grenade launcher buttstocks" +msgid "pitchfork" +msgid_plural "pitchforks" +msgstr[0] "вили" +msgstr[1] "вил" +msgstr[2] "вил" +msgstr[3] "вила" + +#. ~ Description for pitchfork +#: lang/json/GENERIC_from_json.py +msgid "" +"An agricultural tool with long wooden shaft and four spikes. Is used to " +"lift hay." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "pointy stick" +msgid_plural "pointy sticks" +msgstr[0] "загострена палка" +msgstr[1] "загострені палки" +msgstr[2] "загострених палок" +msgstr[3] "загострена палка" + +#. ~ Description for pointy stick +#: lang/json/GENERIC_from_json.py +msgid "A simple wood pole with one end sharpened." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "long pointy stick" +msgid_plural "long pointy sticks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for grenade launcher buttstock +#. ~ Description for long pointy stick #: lang/json/GENERIC_from_json.py -msgid "" -"A collapsible buttstock designed for the M320 grenade launcher. When " -"combined with this stock, the M320 can be used as a standalone weapon" +msgid "A stout pole with one end sharpened to a point." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wasp sting" -msgid_plural "wasp stings" +msgid "wooden spear" +msgid_plural "wooden spears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wasp sting +#. ~ Description for wooden spear #: lang/json/GENERIC_from_json.py -msgid "A six-inch stinger from a giant wasp. Makes a poor melee weapon." +msgid "A stout pole with a fire-hardened point." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cannonball" -msgid_plural "cannonballs" +msgid "simple makeshift glaive" +msgid_plural "simple makeshift glaives" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cannonball +#. ~ Description for simple makeshift glaive #: lang/json/GENERIC_from_json.py msgid "" -"A 4 pound cannonball. With some gunpowder, wadding, and a fuse, it could be" -" prepared to load into a cannon." +"This is a large blade attached to a stout section of tree branch. It could " +"do a considerable amount of damage." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "RC car wheel set" -msgid_plural "RC car wheel sets" +msgid "makeshift glaive" +msgid_plural "makeshift glaives" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for RC car wheel set +#. ~ Description for makeshift glaive #: lang/json/GENERIC_from_json.py msgid "" -"Small set of wheels for a radio controlled car. Could be improvised with " -"caster wheels if given rubber treads for grip." +"A stout tree branch that has been carefully split and reinforced. At the " +"split point, a sharp blade has been bolted into place and reinforced with " +"layers of sturdy wrapped bindings." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "plastic sheet" -msgid_plural "plastic sheets" -msgstr[0] "пластиковий лист" -msgstr[1] "пластикових листа" -msgstr[2] "пластикових листів" -msgstr[3] "пластиковий лист" +msgid "forked spear" +msgid_plural "forked spears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for plastic sheet +#. ~ Description for forked spear #: lang/json/GENERIC_from_json.py msgid "" -"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." +"A wooden pole with three spikes tied to it. It's specialized for catching " +"weapons, and not intended for extended use in combat." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "rigid plastic sheet" -msgid_plural "rigid plastic sheets" +msgid "copper spear" +msgid_plural "copper spears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rigid plastic sheet +#. ~ Description for copper spear #: lang/json/GENERIC_from_json.py -msgid "" -"A large, rigid sheet of translucent plastic, useful for all manner of " -"things; from construction to art, or even junior snowboarding." +msgid "A stout wooden pole with a spearhead worked from copper." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "large rock" -msgid_plural "large rocks" -msgstr[0] "великий камінь" -msgstr[1] "великих камені" -msgstr[2] "великих каменів" -msgstr[3] "великий камінь" +msgid "steel spear" +msgid_plural "steel spears" +msgstr[0] "сталевий спис" +msgstr[1] "сталевий спис" +msgstr[2] "сталеві списи" +msgstr[3] "сталевий спис" -#. ~ Description for large rock +#. ~ Description for steel spear #: lang/json/GENERIC_from_json.py -msgid "" -"A heavy and large rock, big enough to be used as a primitive anvil, or " -"shaped into larger stone items." +msgid "A stout wooden pole with a hand-forged steel spearhead." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "grass yarn" -msgid_plural "grass yarns" +msgid "sharpened pipe" +msgid_plural "sharpened pipes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for grass yarn +#. ~ Description for sharpened pipe #: lang/json/GENERIC_from_json.py -msgid "" -"Some primitive yarn made from coarse plant fibers like straw or grass. Too " -"thick to sew with, but could be woven into a crude sheet of fabric." +msgid "A pipe with one end cut off at an angle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "log" -msgid_plural "logs" +msgid "basic pipe spear" +msgid_plural "basic pipe spears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for log +#. ~ Description for basic pipe spear #: lang/json/GENERIC_from_json.py -msgid "" -"A large chunk of log, cut from a tree. (a)ctivate a wood axe or wood saw to" -" cut it into planks." +msgid "Three pipes tightly fit together with one end cut down to a point." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "splintered wood" -msgid_plural "splintered wood" -msgstr[0] "тріска" -msgstr[1] "тріски" -msgstr[2] "трісок" -msgstr[3] "тріски" +msgid "pipe spear" +msgid_plural "pipe spears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for pipe spear #: lang/json/GENERIC_from_json.py -msgid "A splintered piece of wood, could be used as a skewer or for kindling." +msgid "" +"Three pipes tightly fit together with some wrappings for a handle around one" +" end and a sharp tip on the other." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "stick" -msgid_plural "sticks" -msgstr[0] "палка" -msgstr[1] "палки" -msgstr[2] "палок" -msgstr[3] "палки" +msgid "sharpened rebar" +msgid_plural "sharpened rebars" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for stick +#. ~ Description for sharpened rebar #: lang/json/GENERIC_from_json.py -msgid "" -"A respectable length of wood, just big enough to wrap your hand around. " -"Makes a decent melee weapon." +msgid "A somewhat sharpened piece of rebar." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "long stick" -msgid_plural "long sticks" -msgstr[0] "довга ломака" -msgstr[1] "довгі ломаки" -msgstr[2] "довгих ломак" -msgstr[3] "довгі ломаки" +msgid "qiang" +msgid_plural "qiang" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for long stick +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" -"A straight section of wood, about eight feet long and a couple of inches in " -"diameter. Makes a decent melee weapon, and can be broken into shorter " -"pieces for crafting." +"An ancient Chinese spear, typically with a tassel just below the spearhead." +" One of the four major weapons in folklore, alongside the dao sabre, jian " +"sword, and gun staff." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "long pole" -msgid_plural "long poles" +msgid "halberd" +msgid_plural "halberds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for long pole +#. ~ Description for halberd #: lang/json/GENERIC_from_json.py msgid "" -"A stout, ten-foot pole. Could be used similarly to a spear. The Cataclysm " -"gives fresh meaning to walking softly and carrying a big stick." +"This is a versatile polearm with an axe blade, a spike, and other fun things" +" attached to a long sturdy stick." msgstr "" -#: lang/json/GENERIC_from_json.py src/crafting_gui.cpp -msgid "plank" -msgid_plural "planks" -msgstr[0] "дошка" -msgstr[1] "дошки" -msgstr[2] "дошок" -msgstr[3] "дошка" - -#. ~ Description for plank +#. ~ Description for halberd #: lang/json/GENERIC_from_json.py msgid "" -"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." +"This is a dull, cheaply made replica of a polearm with an axe blade, a " +"spike, and other fun things attached to a thick pole." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "heavy wooden beam" -msgid_plural "heavy wooden beams" +msgid "glaive" +msgid_plural "glaives" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for heavy wooden beam +#. ~ Description for glaive #: lang/json/GENERIC_from_json.py -msgid "" -"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." +msgid "A sturdy polearm with a sizable, single-edged blade on the end." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wooden panel" -msgid_plural "wooden panels" +msgid "naginata" +msgid_plural "naginata" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wooden panel +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" -"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." +"A sturdy polearm with a curved blade, made in the same manner as the katana " +"and other Japanese blades. Occasionally used by samurai in early periods, " +"or by their wives in defense of the household." msgstr "" +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py -msgid "large wooden sheet" -msgid_plural "large wooden sheets" +msgid "" +"A sturdy polearm with a curved blade, made in the same manner as the katana " +"and other Japanese blades. This one has a bit of wiggle to its blade and " +"feels a bit shoddily made." +msgstr "" + +#. ~ Description for naginata +#: lang/json/GENERIC_from_json.py +msgid "" +"This is a dull, slightly floppy replica of a Japanese polearm with a curved " +"blade. With a little difficulty, you could use it administer a solid slap " +"from a distance." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "survivor naginata" +msgid_plural "survivor naginata" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large wooden sheet +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" -"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." +"This sturdy steel shaft with a sword blade at the end is good for both " +"slashing and stabbing." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "steel bottle" -msgid_plural "steel bottles" +msgid "wooden javelin" +msgid_plural "wooden javelins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for steel bottle +#. ~ Description for wooden javelin #: lang/json/GENERIC_from_json.py -msgid "A stainless steel water bottle, holds 750ml of liquid." +msgid "A fire-hardened wooden spear honed to a sharper point." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "foldable plastic bottle" -msgid_plural "foldable plastic bottles" +msgid "iron javelin" +msgid_plural "iron javelins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for foldable plastic bottle +#. ~ Description for iron javelin #: lang/json/GENERIC_from_json.py -msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." +msgid "An iron-tipped wooden throwing spear." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "atomic coffee maker" -msgid_plural "atomic coffee makers" +msgctxt "weapon" +msgid "wooden pike" +msgid_plural "wooden pikes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for atomic coffee maker +#. ~ Description for wooden pike #: lang/json/GENERIC_from_json.py msgid "" -"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." +"This is a medieval weapon consisting of a wood shaft with a fire hardened " +"point." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "can sealer" -msgid_plural "can sealers" +msgctxt "weapon" +msgid "copper pike" +msgid_plural "copper pikes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for can sealer +#. ~ Description for copper pike #: lang/json/GENERIC_from_json.py msgid "" -"A hand crank powered cast steel machine designed to automatically seal tin " -"cans." +"This is a medieval weapon consisting of a wood shaft tipped with a copper " +"spearhead." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "clay pot" -msgid_plural "clay pots" +msgctxt "weapon" +msgid "pike" +msgid_plural "pikes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for clay pot +#. ~ Description for pike #: lang/json/GENERIC_from_json.py -msgid "A crude clay pot with lid used for cooking." +msgid "" +"This is a medieval weapon consisting of a wood shaft tipped with an iron " +"spearhead." msgstr "" +#. ~ Description for pike #: lang/json/GENERIC_from_json.py -msgid "clay quern" -msgid_plural "clay querns" +msgid "" +"This is a dull, cheaply made replica of a medieval weapon consisting of a " +"wood shaft tipped with an iron spearhead." +msgstr "" + +#. ~ Description for pike +#: lang/json/GENERIC_from_json.py +msgid "" +"This is a medieval weapon consisting of a wood shaft tipped with an iron " +"spearhead. The head seems to be pretty dull, and the whole thing feels " +"poorly made." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "war scythe" +msgid_plural "war scythes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for clay quern +#. ~ Description for war scythe #: lang/json/GENERIC_from_json.py -msgid "This is a simple hand-powered clay quern for grinding grain." +msgid "" +"A pole weapon with a curving single-edged blade. Its blade bears some " +"superficial resemblance to that of an agricultural scythe from which it " +"likely evolved." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "clay teapot" -msgid_plural "clay teapots" +msgid "dory" +msgid_plural "dories" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for clay teapot +#. ~ Description for dory #: lang/json/GENERIC_from_json.py -msgid "A clay teapot. Now all you need is tea and water." +msgid "A well-made spear with a bronze head, Greek in origin." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fermenting eggs jar" -msgid_plural "fermenting eggs jars" +msgid "poleaxe" +msgid_plural "poleaxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for fermenting eggs jar. +#. ~ Description for poleaxe #: lang/json/GENERIC_from_json.py msgid "" -"You examine the batch and see that the pickling solution has done its job, " -"so you seal the jar up for storage." +"This is a polearm with an axe head, a small hammer on the back, and a short " +"dagger-like spike on top. It's less heavy than most polearms and has a " +"smaller head, making it slightly quicker." msgstr "" -#. ~ Use action not_ready_msg for fermenting eggs jar. #: lang/json/GENERIC_from_json.py -msgid "The eggs are not done yet." -msgstr "" +msgid "ji" +msgid_plural "ji" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for fermenting eggs jar +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" -"This jar contains a batch of eggs in a pickling solution. You can seal up " -"the jar once the process is completed." +"This is a bronze polearm that originated in the Shang dynasty of China, if " +"not earlier. It combines a spear head with the perpendicular blade of the " +"earlier ge or dagger-axe." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sealed yeast culture" -msgid_plural "sealed yeast culture" +msgid "stone spear" +msgid_plural "stone spears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Description for stone spear #: lang/json/GENERIC_from_json.py -msgid "You open the flask and harvest the culture." +msgid "A stout wooden pole with a sharp stone spearhead." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. #: lang/json/GENERIC_from_json.py -msgid "The yeast isn't done culturing yet." -msgstr "" +msgid "2-by-sword" +msgid_plural "2-by-swords" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for 2-by-sword #: lang/json/GENERIC_from_json.py msgid "" -"A sealed flask holding sanitized yeast wort. You may harvest the yeast " -"inside when it's done culturing." +"A plank with a crossguard and whittled-down point; not much for slashing, " +"but much better than your bare hands." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mess tin" -msgid_plural "mess tins" +msgid "nord" +msgid_plural "nords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mess tin +#. ~ Description for nord #: lang/json/GENERIC_from_json.py msgid "" -"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." +"The nail sword, or nord for short. This wooden sword has a dozen nails " +"sticking at jagged angles from edge of the blade, making it much better at " +"chopping than slashing." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "milk cream jar" -msgid_plural "milk cream jars" +msgid "crude sword" +msgid_plural "crude swords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for milk cream jar +#. ~ Description for crude sword #: lang/json/GENERIC_from_json.py msgid "" -"This jar contains raw milk separated into cream. It is sealed until you are" -" ready to use it." +"Several bits of thin scrap metal crudely beat into the semblance of an edge " +"over a wooden sword. The added weight is unbalanced, but the jagged edge " +"offers a good bit of slashing power." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "rising cream jar" -msgid_plural "rising cream jars" +msgid "metal sword" +msgid_plural "metal swords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for rising cream jar. +#. ~ Description for metal sword #: lang/json/GENERIC_from_json.py msgid "" -"You examine the batch and see that the cream has risen to the top, so you " -"seal the jar up for storage." +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." msgstr "" -#. ~ Use action not_ready_msg for rising cream jar. -#: lang/json/GENERIC_from_json.py -msgid "The cream has not risen yet." -msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/TOOL_from_json.py +msgid "jian" +msgid_plural "jian" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for rising cream jar +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" -"This jar contains raw milk separating into cream. You can seal up the jar " -"once the process is completed." +"This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " +"straight sword, with an ornate guard." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "pasta extruder" -msgid_plural "pasta extruders" +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/TOOL_from_json.py +msgid "scimitar" +msgid_plural "scimitars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pasta extruder +#. ~ Description for scimitar #: lang/json/GENERIC_from_json.py msgid "" -"A pasta extruder run by a hand-crank. Useful in making pasta. It comes " -"with various heads to make various kinds of pasta." +"This is a dull, cheaply-made replica of a curved sword, associated with " +"various Middle Eastern and Central Asian countries." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fermenting pickle jar" -msgid_plural "fermenting pickle jars" +msgid "estoc" +msgid_plural "estocs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for fermenting pickle jar. -#. ~ Use action msg for fermenting sauerkraut jar. +#. ~ Description for estoc #: lang/json/GENERIC_from_json.py msgid "" -"You test the batch, and it tastes good, so you seal the jar up for storage." +"This is a thin thrusting sword, a sort of predecessor to the rapier. It " +"requires a larger baldric or scabbard, compared to smaller swords." msgstr "" +"Це тонкий колючий меч, попередник рапіри. Йому треба більші піхви чи " +"перев'яз, у порівнянні із меншими мечами." -#. ~ Use action not_ready_msg for fermenting pickle jar. +#. ~ Description for estoc #: lang/json/GENERIC_from_json.py -msgid "The pickles are not done fermenting yet." +msgid "" +"This is a thin thrusting sword, a sort of predecessor to the rapier. It " +"requires a larger baldric or scabbard, compared to smaller swords. It seems" +" a bit too bendy." msgstr "" +"Це тонкий колючий меч, попередник рапіри. Йому треба більші піхви чи " +"перев'яз, у порівнянні із меншими мечами. Цей екземпляр якийсь надто " +"погнутий." -#. ~ Description for fermenting pickle jar +#. ~ Description for estoc #: lang/json/GENERIC_from_json.py msgid "" -"This jar contains a batch of pickles set to ferment. You can seal up the " -"jar once the process is completed." +"This is a dull, cheaply-made replica of a thin thrusting sword predating the" +" rapier. It requires a larger baldric or scabbard, compared to smaller " +"swords." msgstr "" +"Це затуплена і дешево виконана підробка під тонкий колючий меч, попередник " +"рапіри. Йому треба більші піхви чи перев'яз, у порівнянні із меншими мечами." -#: lang/json/GENERIC_from_json.py -msgid "pressure cooker" -msgid_plural "pressure cookers" +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/TOOL_from_json.py +msgid "longsword" +msgid_plural "longswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pressure cooker +#. ~ Description for longsword #: lang/json/GENERIC_from_json.py msgid "" -"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." +"This is a dull, cheaply-made replica of the classic medieval longsword. It " +"requires a larger baldric or scabbard, compared to smaller swords." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "fermenting sauerkraut jar" -msgid_plural "fermenting sauerkraut jars" +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/TOOL_from_json.py +msgid "arming sword" +msgid_plural "arming swords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action not_ready_msg for fermenting sauerkraut jar. +#. ~ Description for arming sword #: lang/json/GENERIC_from_json.py -msgid "The sauerkraut isn't done fermenting yet." +msgid "" +"This is a dull, cheaply-made replica of a classic medieval sword, just the " +"right size to use one-handed." msgstr "" -#. ~ Description for fermenting sauerkraut jar +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +msgid "tanto" +msgid_plural "tanto" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" -"This jar contains a batch of sauerkraut set to ferment. You can seal up the" -" jar once the process is completed." +"This is a dull, cheaply-made replica of a long Japanese knife, typically " +"used as a samurai's backup weapon." msgstr "" +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py -msgid "wicker sieve" -msgid_plural "wicker sieves" +msgid "" +"Long Japanese knives like this more-modern remake were the samurai's backup " +"weapon, before the advent of the larger wakizashi. This one doesn't feel " +"well-balanced." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +msgid "nodachi" +msgid_plural "nodachi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wicker sieve +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" -"This is a primitive sieve constructed from woven strips of plant material. " -"Early sieves like this were used to sift grain, though the openings on this " -"one are too small for that." +"This is a dull, cheaply-made replica of a huge, curved, two-handed sword " +"from Japan. It is surprisingly light for its size." msgstr "" +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py -msgid "sieve" -msgid_plural "sieves" +msgid "" +"This is a huge, curved, two-handed sword from Japan. It is surprisingly " +"light for its size, but also much bendier than a sword should be." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "fencing foil" +msgid_plural "fencing foils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sieve +#. ~ Description for fencing foil #: lang/json/GENERIC_from_json.py msgid "" -"This is no mere strainer for noodles; it's a sieve used to separate " -"particles of certain sizes. You could use this to do a really good job " -"sifting flour, remove dust and soil from grain, or perhaps conduct gradation" -" tests for any civil engineers you might know. This one has been " -"constructed from steel mesh." +"A weapon used for fencing, the most noble of all sports. Unfortunately, a " +"fencing foil is rather useless as a weapon, due to its flexible shaft and " +"dull tip." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "teapot" -msgid_plural "teapots" +msgid "fencing épée" +msgid_plural "fencing épées" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for teapot +#. ~ Description for fencing épée #: lang/json/GENERIC_from_json.py -msgid "A small metal teapot. Teatime wouldn't be complete without one." +msgid "" +"A weapon used for fencing, the most noble of all sports. The épée is the " +"heaviest and stiffest of the fencing weapons, and therefore perhaps the most" +" useful." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "waffle iron" -msgid_plural "waffle irons" +msgid "fencing saber" +msgid_plural "fencing sabers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for waffle iron +#. ~ Description for fencing saber #: lang/json/GENERIC_from_json.py -msgid "A waffle iron. For making waffles." +msgid "" +"A weapon used for fencing, the most noble of all sports. The fencing saber " +"is marginally shorter than the foil and épée, but no less effective." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fungicidal gas grenade" -msgid_plural "fungicidal gas grenades" +msgid "sharpened foil" +msgid_plural "sharpened foils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for fungicidal gas grenade. -#. ~ Use action menu_text for makeshift fungicidal gas grenade. -#. ~ Use action menu_text for tear gas grenade. -#. ~ Use action menu_text for insecticidal gas grenade. -#. ~ Use action menu_text for makeshift insecticidal gas grenade. -#. ~ Use action menu_text for flashbang. -#. ~ Use action menu_text for grenade. -#. ~ Use action menu_text for EMP grenade. -#. ~ Use action menu_text for incendiary grenade. -#. ~ Use action menu_text for scrambler grenade. -#. ~ Use action menu_text for military explosive pipebomb. -#. ~ Use action menu_text for military explosive bomb. -#. ~ Use action menu_text for tear gas payload. -#. ~ Use action menu_text for Kabura-ya antipersonnel device. -#. ~ Use action menu_text for electroshock grenade. -#. ~ Use action menu_text for cryo grenade. -#: lang/json/GENERIC_from_json.py lang/json/GENERIC_from_json.py -#: lang/json/TOOL_from_json.py lang/json/TOOL_from_json.py -msgid "Pull pin" -msgstr "" - -#. ~ Description for fungicidal gas grenade +#. ~ Description for sharpened foil #: lang/json/GENERIC_from_json.py msgid "" -"This is a canister grenade filled with fungicidal solution. Use this item " -"to pull the pin and light the fuse, turning it into an active fungicidal " -"grenade. In five seconds it will begin to expel a volatile spray that is " -"highly toxic to fungal life forms." +"What was once a mostly-harmless fencing foil has had its electrical plunger " +"assembly removed and has been crudely sharpened to a point. Though it still" +" lacks a cutting edge, it is now somewhat more lethal, yet still familiar to" +" the practiced fencer." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "armed fungicidal gas canister" -msgid_plural "armed fungicidal gas canisters" +msgid "sharpened épée" +msgid_plural "sharpened épées" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for armed fungicidal gas canister +#. ~ Description for sharpened épée #: lang/json/GENERIC_from_json.py msgid "" -"This fungicidal bomb has had its pin removed and is expelling highly toxic " -"gas." +"What was once a mostly-harmless fencing épée has had its electrical plunger " +"assembly removed and has been crudely sharpened to a point. Though it still" +" lacks a cutting edge, it is now considerably more lethal, yet still " +"familiar to the practiced fencer." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "makeshift fungicidal gas grenade" -msgid_plural "makeshift fungicidal gas grenades" +msgid "sharpened saber" +msgid_plural "sharpened sabers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift fungicidal gas grenade +#. ~ Description for sharpened saber #: lang/json/GENERIC_from_json.py msgid "" -"This is a makeshift canister grenade filled with fungicidal solution. Use " -"this item to pull the pin and light the fuse, turning it into an active " -"fungicidal grenade. In five seconds it will begin to expel a volatile spray" -" that is highly toxic to fungal life forms." +"What was once a mostly-harmless fencing saber has had its rounded tip " +"snapped off and has been crudely sharpened to a point. Though it still " +"lacks a cutting edge, it is now considerably more lethal, yet still familiar" +" to the practiced fencer." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "armed makeshift fungicidal gas canister" -msgid_plural "armed makeshift fungicidal gas canisters" +msgid "hollow cane" +msgid_plural "hollow canes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for armed makeshift fungicidal gas canister +#. ~ Description for hollow cane #: lang/json/GENERIC_from_json.py msgid "" -"This makeshift fungicidal bomb has had its pin removed and is expelling " -"highly toxic haze." +"A cane designed to conceal a blade. This was a popular fashion accessory " +"for the wealthy during the 18th and 19th centuries." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "canister grenade" -msgid_plural "canister grenades" +msgid "sword cane" +msgid_plural "sword canes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action message for canister grenade. +#. ~ Description for sword cane #: lang/json/GENERIC_from_json.py -#, no-python-format -msgid "You pull the pin on the %s." +msgid "A sword with a thin blade designed to be hidden inside a hollow cane." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "tear gas grenade" -msgid_plural "tear gas grenades" +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/TOOL_from_json.py +msgid "cutlass" +msgid_plural "cutlasses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tear gas grenade +#. ~ Description for cutlass #: lang/json/GENERIC_from_json.py msgid "" -"This is a canister grenade filled with noxious irritant. Use this item to " -"pull the pin and light the fuse, turning it into an active tear gas grenade." -" In five seconds it will begin to expel a highly toxic gas for some time. " -"This gas damages and slows those who enter it, as well as obscuring vision " -"and scent." +"This is a dull, cheaply-made replica of a broad saber known for its use by " +"sailors and pirates." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/TOOL_from_json.py +msgid "katana" +msgid_plural "katana" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for katana #: lang/json/GENERIC_from_json.py -msgid "armed tear gas canister" -msgid_plural "armed tear gas canisters" +msgid "This is a dull, cheaply-made replica of a rare sword from Japan." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/TOOL_from_json.py +msgid "zweihänder" +msgid_plural "zweihänders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for armed tear gas canister +#. ~ Description for zweihänder #: lang/json/GENERIC_from_json.py msgid "" -"This smoke bomb has had its pin removed and is expelling highly toxic gas." +"This is a dull, cheaply-made replica of a huge two-handed sword from " +"Germany. It still packs a wallop." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "insecticidal gas grenade" -msgid_plural "insecticidal gas grenades" +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/TOOL_from_json.py +msgid "broadsword" +msgid_plural "broadswords" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for insecticidal gas grenade +#. ~ Description for broadsword #: lang/json/GENERIC_from_json.py msgid "" -"This is a canister grenade filled with insecticidal solution. Use this item" -" to pull the pin and light the fuse, turning it into an active insecticidal " -"grenade. In five seconds it will begin to expel a volatile spray that is " -"highly toxic to insect life forms." +"This is a dull, cheaply-made replica of an early modern sword that saw use " +"in the 16th, 17th, and 18th centuries. Called 'broad' to contrast with the " +"slimmer rapiers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "armed insecticidal gas canister" -msgid_plural "armed insecticidal gas canisters" +msgid "cavalry sabre" +msgid_plural "cavalry sabres" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for armed insecticidal gas canister +#. ~ Description for cavalry sabre #: lang/json/GENERIC_from_json.py msgid "" -"This insecticidal bomb has had its pin removed and is expelling highly toxic" -" haze." +"This is a dull, cheaply-made replica of a curved sword associated with " +"cavalry, from the Early Modern period onwards." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "makeshift insecticidal gas grenade" -msgid_plural "makeshift insecticidal gas grenades" +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +msgid "rapier" +msgid_plural "rapiers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for makeshift insecticidal gas grenade +#. ~ Description for rapier #: lang/json/GENERIC_from_json.py msgid "" -"This is a makeshift canister grenade filled with insecticidal solution. Use" -" this item to pull the pin and light the fuse, turning it into an active " -"insecticidal grenade. In five seconds it will begin to expel a volatile " -"spray that is highly toxic to insect life forms." +"This is a blunted, cheap replica of a thin sword with an ornate handguard. " +"It looks like the preferred weapon of gentlemen and swashbucklers. Light " +"and quick, it makes any battle a stylish battle." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "armed makeshift insecticidal gas canister" -msgid_plural "armed makeshift insecticidal gas canisters" +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#: lang/json/TOOL_from_json.py +msgid "wakizashi" +msgid_plural "wakizashi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for armed makeshift insecticidal gas canister +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" -"This makeshift insecticidal bomb has had its pin removed and is expelling " -"highly toxic haze." +"This is a dull, cheap replica of the more common wakizashi. Smaller and " +"lighter than a katana, but still effective in combat." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "smoke bomb" -msgid_plural "smoke bombs" -msgstr[0] "димова бомба" -msgstr[1] "димові бомби" -msgstr[2] "димових бомб" -msgstr[3] "димові бомби" +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +msgid "kris" +msgid_plural "krises" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for smoke bomb +#. ~ Description for kris #: lang/json/GENERIC_from_json.py msgid "" -"This is a canister grenade filled with a variety of pyrotechnic chemicals. " -"Use this item to pull the pin and light the fuse, turning it into an active " -"smoke bomb. Five seconds after you do that, it will begin to expel a thick " -"black smoke. This smoke will slow those who enter it, as well as obscuring " -"vision and scent." +"This is a dull, cheap replica of a wavy bladed dagger that comes from " +"Southeast Asia." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "armed smoke bomb" -msgid_plural "armed smoke bombs" -msgstr[0] "димова бомба (активовано)" -msgstr[1] "димові бомби (активовано)" -msgstr[2] "димових бомб (активовано)" -msgstr[3] "димові бомби (активовано)" +msgid "lajatang" +msgid_plural "lajatangs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for armed smoke bomb +#. ~ Description for lajatang #: lang/json/GENERIC_from_json.py -msgid "This smoke bomb has had its pin removed and is expelling thick smoke." +msgid "" +"An impractical exotic weapon comprised of a long pole of wood with curved " +"blades on each end." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pike pole" -msgid_plural "pike poles" +msgid "punch dagger" +msgid_plural "punch daggers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pike pole +#. ~ Description for punch dagger #: lang/json/GENERIC_from_json.py msgid "" -"A durable tool consisting of a sturdy fiberglass shaft tipped with a small " -"steel hook." +"A short and sharp double-edged dagger made to be gripped in the palm, with " +"the blade protruding between the fingers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fishing hook" -msgid_plural "fishing hooks" +msgid "razorbar katar" +msgid_plural "razorbar katars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fishing hook +#. ~ Description for razorbar katar #: lang/json/GENERIC_from_json.py -msgid "A simple fishing hook." +msgid "" +"Five pieces of rebar sharpened to cruel points and strapped to a brace " +"fastened at wrist and forearm on both arms. The next bub better watch out." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "improvised fishing hook" -msgid_plural "improvised fishing hooks" +msgid "tiger claws" +msgid_plural "tiger claws" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for improvised fishing hook +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py -msgid "An improvised fishing hook carved from wood or bone." +msgid "" +"Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " +"from India designed to be concealed under and against the palm." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "digging stick" -msgid_plural "digging sticks" -msgstr[0] "палиця-копачка" -msgstr[1] "палиці-копачки" -msgstr[2] "палиць-копачок" -msgstr[3] "палиця-копачка" +msgid "pair of brass knuckles" +msgid_plural "pairs of brass knuckles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for digging stick +#. ~ Description for pair of brass knuckles #: lang/json/GENERIC_from_json.py msgid "" -"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." -msgstr "" - -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "atomic lamp" -msgid_plural "atomic lamps" -msgstr[0] "атомна лампа" -msgstr[1] "атомні лампи" -msgstr[2] "атомних ламп" -msgstr[3] "атомні лампи" - -#. ~ Use action menu_text for atomic lamp. -#. ~ Use action menu_text for atomic reading light. -#. ~ Use action menu_text for magical reading light. -#. ~ Use action menu_text for atomic headlamp. -#: lang/json/GENERIC_from_json.py lang/json/GENERIC_from_json.py -#: lang/json/TOOL_ARMOR_from_json.py -msgid "Close cover" +"A metal weapon made of brass, designed to be gripped in the palm and cause " +"punches to do extra damage. A good, quick weapon - but you have to get " +"within punching range to use it." msgstr "" -#. ~ Use action msg for atomic lamp. #: lang/json/GENERIC_from_json.py -msgid "You close the lamp's cover." -msgstr "" +msgid "pair of nail knuckles" +msgid_plural "pairs of nail knuckles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for atomic lamp +#. ~ Description for pair of nail knuckles #: lang/json/GENERIC_from_json.py msgid "" -"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." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "atomic lamp (covered)" -msgid_plural "atomic lamps (covered)" -msgstr[0] "атомна лампа (накрите)" -msgstr[1] "атомні лампи (накрите)" -msgstr[2] "атомних ламп (накрите)" -msgstr[3] "атомні лампи (накрите)" - -#. ~ Use action menu_text for atomic lamp (covered). -#. ~ Use action menu_text for atomic reading light (covered). -#. ~ Use action menu_text for magical reading light (covered). -#. ~ Use action menu_text for atomic headlamp (covered). -#: lang/json/GENERIC_from_json.py lang/json/GENERIC_from_json.py -#: lang/json/TOOL_ARMOR_from_json.py -msgid "Open cover" +"A pair of knuckles consisting of two small squares of wood with several " +"nails coming through them. Useful in nasty street fights." msgstr "" -#. ~ Use action msg for atomic lamp (covered). #: lang/json/GENERIC_from_json.py -msgid "You open the lamp's cover." -msgstr "" +msgid "pair of scrap knuckles" +msgid_plural "pairs of scrap knuckles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for atomic lamp (covered) +#. ~ Description for pair of scrap knuckles #: lang/json/GENERIC_from_json.py msgid "" -"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." +"A mass of scrap metal crudely beat into shape, with folded rags underneath " +"to protect the wearers knuckles. A good, quick weapon - but you have to get" +" within punching range to use it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "atomic reading light" -msgid_plural "atomic reading lights" -msgstr[0] "атомна підсвітка для читання" -msgstr[1] "атомні підсвітки для читання" -msgstr[2] "атомних підсвіток для читання" -msgstr[3] "атомна підсвітка для читання" - -#. ~ Use action msg for atomic reading light. -#. ~ Use action msg for magical reading light. -#: lang/json/GENERIC_from_json.py -msgid "You close the nightlight's cover." -msgstr "" +msgid "pair of steel knuckles" +msgid_plural "pairs of steel knuckles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for atomic reading light +#. ~ Description for pair of steel knuckles #: lang/json/GENERIC_from_json.py msgid "" -"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." +"A pair of knuckles forged from steel, designed to be gripped in the palm and" +" cause punches to do more damage. A good, quick weapon - but you have to " +"get within punching range to use it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "atomic reading light (covered)" -msgid_plural "atomic reading lights (covered)" -msgstr[0] "атомна підсвітка для читання (накрите)" -msgstr[1] "атомні підсвітки для читання (накрите)" -msgstr[2] "атомних підсвіток для читання (накрите)" -msgstr[3] "атомна підсвітка для читання (накрите)" - -#. ~ Use action msg for atomic reading light (covered). -#. ~ Use action msg for magical reading light (covered). -#: lang/json/GENERIC_from_json.py -msgid "You open the nightlight's cover." -msgstr "" +msgid "explosive arrowhead" +msgid_plural "explosive arrowheads" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for atomic reading light (covered) +#. ~ Description for explosive arrowhead #: lang/json/GENERIC_from_json.py msgid "" -"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." +"This simple IED is designed to be attached to an arrow and detonate on " +"impact." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "grinder blade" -msgid_plural "grinder blades" +msgid "disc" +msgid_plural "discs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for grinder blade +#. ~ Description for disc #: lang/json/GENERIC_from_json.py msgid "" -"A 125mm angle grinder blade. You could make a powertool with it, or throw " -"it. Wielding it without sturdy gloves is a bad idea." +"A plastic disc made for playing disc golf, it is smaller and denser then a " +"normal frisbee." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "blood draw kit" -msgid_plural "blood draw kits" +msgid "frisbee" +msgid_plural "frisbees" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for blood draw kit +#. ~ Description for frisbee #: lang/json/GENERIC_from_json.py -msgid "" -"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." +msgid "A plastic frisbee made for outdoor games." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py -msgid "charcoal kiln" -msgid_plural "charcoal kilns" -msgstr[0] "піч для випалювання вугілля" -msgstr[1] "печі для випалювання вугілля" -msgstr[2] "печей для випалювання вугілля" -msgstr[3] "печі для випалювання вугілля" +#: lang/json/GENERIC_from_json.py +msgid "lawn dart" +msgid_plural "lawn darts" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for charcoal kiln +#. ~ Description for lawn dart #: lang/json/GENERIC_from_json.py -msgid "" -"A stout metal box used for producing charcoal via pyrolysis; the incomplete " -"burning of organic materials in the absence of oxygen." +msgid "A large plastic dart made for outdoor games." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "lit charcoal kiln" -msgid_plural "lit charcoal kilns" -msgstr[0] "піч для випалювання вугілля (горить)" -msgstr[1] "печі для випалювання вугілля (горить)" -msgstr[2] "печей для випалювання вугілля (горить)" -msgstr[3] "печі для випалювання вугілля (горить)" +msgid "throwing axe" +msgid_plural "throwing axes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action msg for lit charcoal kiln. +#. ~ Description for throwing axe #: lang/json/GENERIC_from_json.py msgid "" -"The kiln's embers have died out; you can now disassemble it to harvest the " -"charcoal." +"A lightweight hatchet made for throwing. Its ineffective cutting edge and " +"light weight makes it unsuitable for use as a tool." msgstr "" -#. ~ Use action not_ready_msg for lit charcoal kiln. #: lang/json/GENERIC_from_json.py -msgid "The kiln is still burning." -msgstr "" +msgid "throwing knife" +msgid_plural "throwing knives" +msgstr[0] "ніж для метання" +msgstr[1] "ножа для метання" +msgstr[2] "ножів для метання" +msgstr[3] "ножі для метання" -#. ~ Description for lit charcoal kiln +#. ~ Description for throwing knife +#. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py -msgid "A kiln full of wood that has been lit; better drop it!" +msgid "" +"A thin and flat knife made for throwing. Its ineffective cutting edge and " +"odd shape makes it unsuitable for use as a tool." msgstr "" +"Тонкий та плаский ніж призначений для метання. Його неефективна ріжуча " +"кромка та незвична форма роблять його непридатним для використання у якості " +"інструмента." #: lang/json/GENERIC_from_json.py -msgid "grappling hook" -msgid_plural "grappling hooks" +msgid "bakelite phone" +msgid_plural "bakelite phones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for grappling hook +#. ~ Description for bakelite phone #: lang/json/GENERIC_from_json.py msgid "" -"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." +"A vintage, bright-red bakelite phone of famous swedish design. It would " +"look almost normal, were it not for the fact that its rotary dial has been " +"replaced by a doorknob." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mind splicer kit" -msgid_plural "mind splicer kits" +msgid "golden comb" +msgid_plural "golden combs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mind splicer kit +#. ~ Description for golden comb #: lang/json/GENERIC_from_json.py msgid "" -"Surgical forceps, cables and a modified smartphone inside a small plastic " -"pouch. Assembled to steal the mind of some poor man, these are tools of the" -" creepy high-tech sandman." +"A small and delicate golden comb, it was once carefully engraved, but time " +"has smoothed its designs to illegibility." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "umbrella" -msgid_plural "umbrellas" +msgid "shifting keyring" +msgid_plural "shifting keyrings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for umbrella +#. ~ Description for shifting keyring #: lang/json/GENERIC_from_json.py -msgid "An umbrella with a pointy end, useful for keeping dry when wielded." +msgid "" +"A smooth ring of steel, heavy under the weight of numerous keys. The " +"designs of the keys change over time, but none will fit any keyhole you have" +" ever found." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "light detector" -msgid_plural "light detectors" +msgid "engraved cube" +msgid_plural "engraved cubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for light detector +#. ~ Description for engraved cube #: lang/json/GENERIC_from_json.py msgid "" -"This is a photodiode on a chip, designed to convert incoming light to " -"electrical energy for quantification." +"A small cube of smooth rock. An uniform grid of nine squares is engraved in" +" each of its faces." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "glass prism" -msgid_plural "glass prisms" +msgid "utah teapot" +msgid_plural "utah teapots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for glass prism +#. ~ Description for utah teapot #: lang/json/GENERIC_from_json.py msgid "" -"This is a high quality crystal glass prism for separating and redirecting " -"light." +"A squat teapot with a minimalist design. Its surface shines under the glow " +"of unseen light sources." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "small glass tube" -msgid_plural "small glass tubes" +msgid "glitching stopwatch" +msgid_plural "glitching stopwatches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small glass tube +#. ~ Description for glitching stopwatch #: lang/json/GENERIC_from_json.py msgid "" -"This is a small glass tube. What more could you possibly want to know about" -" it?" +"A small digital stopwatch, looking slightly old by today's standards. Its " +"digital display prints ever-changing gibberish." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "plastic stopcock" -msgid_plural "plastic stopcocks" +msgid "alien resin chunk" +msgid_plural "alien resin chunks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plastic stopcock +#. ~ Description for alien resin chunk #: lang/json/GENERIC_from_json.py msgid "" -"Stop giggling. This is a tiny plastic valve, get your mind out of the " -"gutter." +"This is a shattered fragment of alien resin. It looks a bit like a large " +"piece of sea glass, frosted and gritty with the edges rounded off. It is " +"somewhat warm to the touch." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "test tube rack" -msgid_plural "test tube racks" -msgstr[0] "стійка для пробірок" -msgstr[1] "стійки для пробірок" -msgstr[2] "стійок для пробірок" -msgstr[3] "стійка для пробірок" +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for test tube rack +#. ~ Description for alien fern branch #: lang/json/GENERIC_from_json.py msgid "" -"A plastic box with holes in it. Not that exciting, unless you're desperate " -"for a place to store a test tube. Then it's great." +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "microcentrifuge tube tray" -msgid_plural "microcentrifuge tube trays" +msgid "Exodii chassis" +msgid_plural "Exodii chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for microcentrifuge tube tray +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" -"A plastic tray riddled with small holes, for storing microcentrifuge tubes." +"This roughly hexagonal frame and associated bodywork looks like it was " +"constructed as a single monolithic piece. The fitting holes and attachments" +" are extremely durable, despite showing signs of heavy wear and repair. The" +" structure is versatile, and could probably be engineered to serve a number " +"of different heavy combat roles." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "ring stand" -msgid_plural "ring stands" +msgid "Exodii drone chassis" +msgid_plural "Exodii drone chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ring stand +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" -"This is a heavy metal plate and a sturdy rod, for clamping lab stuff to." +"This small, roughly hexagonal frame and associated bodywork looks like it " +"was constructed as a single monolithic piece. The fitting holes and " +"attachments are extremely durable, despite showing signs of heavy wear and " +"repair. The structure is versatile, and could probably be engineered to " +"serve a number of different heavy combat roles." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "set of ring stand clamps" -msgid_plural "sets of ring stand clamps" +msgid "cybernetic neural matrix" +msgid_plural "cybernetic neural matrices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for set of ring stand clamps +#. ~ Description for cybernetic neural matrix #: lang/json/GENERIC_from_json.py msgid "" -"This is a small box with a jumbled assortment of clamps for mounting on ring" -" stands. There seems to be some sort of rule that all of them are missing " -"at least one wing nut for tightening them; it looks like judicious use of " -"twist ties, duct tape, and other random stuff has been used to compensate." +"A series of tanks and tubes with ports for fluids, electricity, and input " +"and output, this complex arrangement is made to house a brain and spine and " +"the most difficult to replace organs for keeping them alive." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "aluminum tent pole" -msgid_plural "aluminum tent poles" +msgid "unfamiliar electronic thingy" +msgid_plural "unfamiliar electronic thingies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for aluminum tent pole +#. ~ Description for unfamiliar electronic thingy #: lang/json/GENERIC_from_json.py msgid "" -"A light collapsible tent pole made from aluminum, perfect for pitching a " -"tent." +"The wiring and general shape suggest to you that this is a computer, or at " +"least some sort of electronic device, but what it is and what role it serves" +" is lost on you. It's heavy and sturdy in construction." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "stapler" -msgid_plural "staplers" +msgid "inscribed metal plates" +msgid_plural "inscribed metal plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for stapler +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py -msgid "A stapler for fastening sheets of paper together." +msgid "" +"This device looks electronic, but is unfamiliar. It is a series of tightly " +"fitted coppery-looking rings, set concentrically. Wires run from each ring " +"to an axis in the middle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "hole puncher" -msgid_plural "hole punchers" +msgid "cybernetic sensor" +msgid_plural "cybernetic sensors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hole puncher +#. ~ Description for cybernetic sensor #: lang/json/GENERIC_from_json.py msgid "" -"This metal tool can help you punch a single hole in a piece of paper. I " -"mean, you could do more if you wanted, but you'd have to do them one at a " -"time. Or, if you really wanted more holes with one punch, I suppose you " -"could fold the paper… This is a one cylinder hole puncher." +"From the large glassy eye - the size of a small dinner plate - in the front," +" you deduce this is some sort of camera. None of the inner workings make " +"any sense to you nor resemble any camera you've seen before." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "letter opener" -msgid_plural "letter openers" +msgid "rotary device" +msgid_plural "rotary devices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for letter opener +#. ~ Description for rotary device #: lang/json/GENERIC_from_json.py msgid "" -"This sterling silver letter opener resembling a small dagger has a sharp " -"point and no cutting edge. It was used to open mail envelopes neatly and " -"quickly." +"You assume from the coils of coppery wire and the protruding piston that " +"this is some sort of motor or generator, but the design doesn't look similar" +" to anything you've seen before, and you can't figure out how to get it to " +"work." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bone billet" -msgid_plural "bone billets" +msgid "engraved parabolic dish" +msgid_plural "engraved parabolic dishes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bone billet +#. ~ Description for engraved parabolic dish #: lang/json/GENERIC_from_json.py msgid "" -"A thick short bone, usually used in flintknapping for soft-hammer " -"percussion." +"This hefty parabolic dish is engraved with an unrecognizable pattern of " +"symbols that might, at a guess, be some sort of circuitry pattern - or maybe" +" a religious incantation." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wooden billet" -msgid_plural "wooden billets" +msgid "oblong device" +msgid_plural "oblong devices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wooden billet +#. ~ Description for oblong device #: lang/json/GENERIC_from_json.py msgid "" -"A thick short wooden stick, usually used in flintknapping for soft-hammer " -"percussion." +"Perfectly smooth, cool to the touch, and a dull blue-grey color, this looks " +"almost like a perfect riverstone at first glance. Its artificial nature is " +"betrayed on closer inspection by a network of intricate patterns visible as " +"a slight difference in the reflection of light off its surface." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "primitive rock drill" -msgid_plural "primitive rock drills" +msgid "enormous aluminum ingot" +msgid_plural "enormous aluminum ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for primitive rock drill +#. ~ Description for enormous aluminum ingot #: lang/json/GENERIC_from_json.py -msgid "" -"A thick blunted wooden stick. Can be used to drill rough holes in rock, if " -"water and sand are available, but the process is lengthy." +msgid "A block of pure aluminum at least as big as a dishwasher." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bone punch" -msgid_plural "bone punches" +msgid "enormous plastic block" +msgid_plural "enormous plastic blocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bone punch +#. ~ Description for enormous plastic block #: lang/json/GENERIC_from_json.py msgid "" -"A thick short bone with a small pointy tip, usually used in flintknapping " -"for indirect percussion and pressure flaking." +"This is a single enormous brick of plastic, big enough to curl up inside " +"were it hollow." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "nail punch" -msgid_plural "nail punches" +msgid "enormous steel ingot" +msgid_plural "enormous steel ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nail punch +#. ~ Description for enormous steel ingot #: lang/json/GENERIC_from_json.py -msgid "" -"Two pieces of wood with a steel nail secured inbetween them with some " -"cordage. Usually used in flintknapping for indirect percussion and pressure" -" flaking." +msgid "A single, monolithic block of high quality steel." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bone sewing awl" -msgid_plural "bone sewing awls" +msgid "enormous tin ingot" +msgid_plural "enormous tin ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bone sewing awl +#. ~ Description for enormous tin ingot #: lang/json/GENERIC_from_json.py -msgid "" -"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." +msgid "An enormous ingot of pure tin." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "steel sewing awl" -msgid_plural "steel sewing awls" +msgid "enormous copper ingot" +msgid_plural "enormous copper ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for steel sewing awl +#. ~ Description for enormous copper ingot #: lang/json/GENERIC_from_json.py -msgid "" -"This is a steel awl with a wooden grip, usually used for leatherworking. It" -" can also serve as an improvised stabbing weapon, but will break quickly." +msgid "A massive solid piece of copper, covered by a blue-green patina." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "knitting needles" -msgid_plural "pairs of knitting needles" +msgid "enormous zinc ingot" +msgid_plural "enormous zinc ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for knitting needles +#. ~ Description for enormous zinc ingot #: lang/json/GENERIC_from_json.py msgid "" -"A pair of stout wooden needles with round ends used to turn thread and yarn " -"into cloth." +"An absolutely massive block of pure zinc. Bet you didn't expect that - " +"nobody expects zinc." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "frame loom" -msgid_plural "frame looms" +msgid "enormous lead ingot" +msgid_plural "enormous lead ingots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for frame loom +#. ~ Description for enormous lead ingot #: lang/json/GENERIC_from_json.py msgid "" -"This is a rather bulky and primitive wooden frame which can be used to weave" -" cloth sheets. It is very slow, though." +"A block of lead so huge you don't even want to think about how heavy it is." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wooden shed stick" -msgid_plural "wooden shed sticks" +msgid "sheet of glass" +msgid_plural "sheets of glass" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wooden shed stick +#. ~ Use action done_message for sheet of glass. #: lang/json/GENERIC_from_json.py msgid "" -"This is a short thin flat wooden stick, used as a tool while weaving cloth " -"with a frame loom." +"You break the pane and place the shards on the ground, ready to be cracked " +"by something passing by." msgstr "" +#. ~ Description for sheet of glass #: lang/json/GENERIC_from_json.py -msgid "tailoring pattern set" -msgid_plural "tailoring pattern sets" +msgid "" +"A large sheet of glass, around three by four feet. Easily shattered. " +"Useful for repairing windows." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "sheet of reinforced glass" +msgid_plural "sheets of reinforced glass" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tailoring pattern set +#. ~ Description for sheet of reinforced glass #: lang/json/GENERIC_from_json.py msgid "" -"This is a large set of tailoring patterns made from paper. They're useful " -"for making any kind of cloth or leather items from scratch, but are " -"necessary for more advanced projects." +"A large sheet of bulletproof glass, it looks to a little over two inches " +"thick." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "razor blade" -msgid_plural "razor blades" +msgid "pane of reinforced glass" +msgid_plural "panes of reinforced glass" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for razor blade +#. ~ Description for pane of reinforced glass #: lang/json/GENERIC_from_json.py -msgid "A double-edged razor blade." +msgid "" +"A small pane of bulletproof glass, it looks to be a little over two inches " +"thick." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "hatchet" -msgid_plural "hatchets" +msgid "sheet of tempered glass" +msgid_plural "sheets of tempered glass" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hatchet +#. ~ Description for sheet of tempered glass #: lang/json/GENERIC_from_json.py msgid "" -"A one-handed hatchet. Makes a great melee weapon until the wooden haft " -"breaks, and is useful both for chopping things and for use as a hammer." +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "carding paddles" -msgid_plural "pairs of carding paddles" +msgid "peephole" +msgid_plural "peepholes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for carding paddles +#. ~ Description for peephole #: lang/json/GENERIC_from_json.py msgid "" -"A pair of toothy wooden paddles used to clean fibers for use in textile " -"production." +"A metal cylinder with a small lens inside intended to be installed on a " +"door." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "distaff and spindle" -msgid_plural "distaves and spindles" +msgid "mesh screen" +msgid_plural "mesh screens" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for distaff and spindle +#. ~ Description for mesh screen #: lang/json/GENERIC_from_json.py -msgid "" -"A pair of specialized wooden rods used to spin fibers into thread and yarn." +msgid "A roll of fine mesh screen for bug barriers on porches." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "toolbox" -msgid_plural "toolboxes" -msgstr[0] "ящик з інструментами" -msgstr[1] "ящика з інструментами" -msgstr[2] "ящиків з інструментами" -msgstr[3] "ящик з інструментами" +msgid "pipe" +msgid_plural "pipes" +msgstr[0] "труба" +msgstr[1] "труби" +msgstr[2] "труб" +msgstr[3] "труба" -#. ~ Description for toolbox +#. ~ Description for pipe #: lang/json/GENERIC_from_json.py msgid "" -"This is a stout metal box for containing tools. It has a handle on the top " -"and a latch on the front." +"A steel pipe; makes a good melee weapon. Useful in a few crafting recipes." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "workshop toolbox" -msgid_plural "workshop toolboxes" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "spike" +msgid_plural "spikes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for workshop toolbox +#. ~ Description for spike #: lang/json/GENERIC_from_json.py msgid "" -"This is a stout metal box for containing tools. It is much bigger than a " -"regular tool box and could be used to store more tools than usual." +"A large and slightly misshapen spike, could do some damage mounted on a " +"vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vehicle alternator" -msgid_plural "vehicle alternators" +msgid "copper tubing" +msgid_plural "copper tubings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "car alternator" -msgid_plural "car alternators" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#. ~ Description for copper tubing +#: lang/json/GENERIC_from_json.py +msgid "" +"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." +msgstr "" -#. ~ Description for car alternator #: lang/json/GENERIC_from_json.py -msgid "A standard alternator used to power vehicle electrical systems." +msgid "aluminum ingot" +msgid_plural "aluminum ingots" +msgstr[0] "зливок алюмінію" +msgstr[1] "зливки алюмінію" +msgstr[2] "зливків алюмінію" +msgstr[3] "зливок алюмінію" + +#. ~ Description for aluminum ingot +#: lang/json/GENERIC_from_json.py +msgid "" +"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." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "motorbike alternator" -msgid_plural "motorbike alternators" +#: lang/json/GENERIC_from_json.py +msgid "scrap copper" +msgid_plural "scrap copper" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for motorbike alternator +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py -msgid "" -"A compact lightweight alternator used to power small vehicle electrical " -"systems." +msgid "A small chunk of copper, usable for crafting or repairs." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "bicycle alternator" -msgid_plural "bicycle alternators" +#: lang/json/GENERIC_from_json.py +msgid "bee sting" +msgid_plural "bee stings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bicycle alternator +#. ~ Description for bee sting #: lang/json/GENERIC_from_json.py -msgid "A very lightweight alternator used to power a bicycle's headlights." +msgid "A six-inch stinger from a giant bee. Makes a mediocre melee weapon." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "truck alternator" -msgid_plural "truck alternators" +#: lang/json/GENERIC_from_json.py +msgid "broom" +msgid_plural "brooms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for truck alternator +#. ~ Description for broom #: lang/json/GENERIC_from_json.py msgid "" -"A larger and more powerful alternator used to power vehicle electrical " -"systems." +"A long-handled broom. Makes a terrible weapon unless you're chasing cats." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "7.5kW generator" -msgid_plural "7.5kW generators" +#: lang/json/GENERIC_from_json.py +msgid "ceramic shard" +msgid_plural "ceramic shards" +msgstr[0] "керамічний уламок" +msgstr[1] "керамічних уламки" +msgstr[2] "керамічних уламків" +msgstr[3] "керамічний уламок" + +#. ~ Description for ceramic shard +#: lang/json/GENERIC_from_json.py +msgid "" +"A broken ceramic shard. It is heavy and has a somewhat sharp edge, but it's" +" too irregular to cut properly." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "fungal fighter sting" +msgid_plural "fungal fighter stings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 7.5kW generator +#. ~ Description for fungal fighter sting #: lang/json/GENERIC_from_json.py -msgid "" -"A bulky but efficient electrical generator designed to be attached to an " -"engine." +msgid "A short dart from a fungal fighter. Makes a poor melee weapon." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "rebar grate" -msgid_plural "rebar grates" +#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py +msgid "mattress" +msgid_plural "mattresses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rebar grate +#. ~ Description for mattress #: lang/json/GENERIC_from_json.py -msgid "" -"Interlocked sections of rebar that allows for light and effective " -"reinforcement of vehicle sections." +msgid "This is a single, or twin, sized mattress." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "shock absorber" -msgid_plural "shock absorbers" +#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py +msgid "down mattress" +msgid_plural "down mattresses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for shock absorber +#. ~ Description for down mattress #: lang/json/GENERIC_from_json.py -msgid "" -"This makeshift combination of springs and scrap, when attached to a vehicle " -"section, protects that section from impacts. The springs can absorb a " -"surprising amount of damage." +msgid "This is a single, or twin, sized down filled mattress." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "storage battery case" -msgid_plural "storage battery cases" -msgstr[0] "ящик під акумуляторні батареї" -msgstr[1] "ящики під акумуляторні батареї" -msgstr[2] "ящиків під акумуляторні батареї" -msgstr[3] "ящик під акумуляторні батареї" +msgid "flint" +msgid_plural "flints" +msgstr[0] "кремінь" +msgstr[1] "кремені" +msgstr[2] "кременів" +msgstr[3] "кремені" -#. ~ Description for storage battery case +#. ~ Description for flint #: lang/json/GENERIC_from_json.py msgid "" -"An empty case that can hold a storage battery. Complete with charging " -"controller chip and connecting wires." +"A rock with sharp edges. Makes a passable melee weapon, and can also make " +"sparks if struck against high-carbon steel." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "tool battery mount" -msgid_plural "tool battery mounts" +#: lang/json/GENERIC_from_json.py +msgid "rubber tire chunk" +msgid_plural "rubber tire chunks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tool battery mount +#. ~ Description for rubber tire chunk #: lang/json/GENERIC_from_json.py -msgid "" -"An empty mount that can connect conventional batteries used in most handheld" -" tools to vehicular power grid. Complete with power converter, charging " -"controller chip, connecting wires and a harness for securing a battery." +msgid "This is a chunk of thick, semi-rigid rubber from a tire." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wood boat hull" -msgid_plural "wood boat hulls" +msgid "rubber tire strip" +msgid_plural "rubber tire strips" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wood boat hull +#. ~ Description for rubber tire strip #: lang/json/GENERIC_from_json.py msgid "" -"A wooden board that keeps the boat afloat. Add boat hulls to a vehicle " -"until it floats. Then attach oars or a motor to get the boat to move." +"This is a long curled strip of thick, semi-rigid rubber cut from a tire." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "raft boat hull" -msgid_plural "raft boat hulls" +#: lang/json/GENERIC_from_json.py +msgid "ESAPI ballistic plate" +msgid_plural "ESAPI ballistic plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for raft boat hull +#. ~ Description for ESAPI ballistic plate #: lang/json/GENERIC_from_json.py msgid "" -"Logs tied together to make a vehicle float. Add boat hulls to a vehicle " -"until it floats. Then attach oars or a motor to get the boat to move." +"A polygonal ceramic ballistic plate with a slightly concave profile. Its " +"inner surface is coated with Ultra High Molecular Weight Polyethylene, and " +"is labeled \"TOP\", while its outer surface is labeled \"STRIKE FACE\". " +"This is intended to be worn in a ballistic vest and can withstand several " +"high energy rifle rounds before breaking." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "plastic boat hull" -msgid_plural "plastic boat hulls" +#: lang/json/GENERIC_from_json.py +msgid "ESBI ballistic plate" +msgid_plural "ESBI ballistic plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plastic boat hull +#. ~ Description for ESBI ballistic plate #: lang/json/GENERIC_from_json.py msgid "" -"A rigid plastic sheet that keeps the boat afloat. Add boat hulls to a " -"vehicle until it floats. Then attach oars or a motor to get the boat to " -"move." +"A polygonal ceramic ballistic plate with a slightly concave profile. " +"\"STRIKE FACE\" is printed on its outer surface. This is designed to be " +"worn in the sides of a plate carrier and can withstand several high energy " +"rifle rounds before breaking." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "carbon fiber boat hull" -msgid_plural "carbon fiber boat hulls" +#: lang/json/GENERIC_from_json.py +msgid "grenade launcher buttstock" +msgid_plural "grenade launcher buttstocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for carbon fiber boat hull +#. ~ Description for grenade launcher buttstock #: lang/json/GENERIC_from_json.py msgid "" -"A carbon fiber sheet that keeps the boat afloat. Add boat hulls to a " -"vehicle until it floats. Then attach oars or a motor to get the boat to " -"move." +"A collapsible buttstock designed for the M320 grenade launcher. When " +"combined with this stock, the M320 can be used as a standalone weapon" msgstr "" #: lang/json/GENERIC_from_json.py -msgid "oars" -msgid_plural "oars" +msgid "wasp sting" +msgid_plural "wasp stings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for wasp sting #: lang/json/GENERIC_from_json.py -msgid "Oars for a boat." +msgid "A six-inch stinger from a giant wasp. Makes a poor melee weapon." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "sail" -msgid_plural "sails" +#: lang/json/GENERIC_from_json.py +msgid "cannonball" +msgid_plural "cannonballs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sail +#. ~ Description for cannonball #: lang/json/GENERIC_from_json.py -msgid "Sails for a boat." +msgid "" +"A 4 pound cannonball. With some gunpowder, wadding, and a fuse, it could be" +" prepared to load into a cannon." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "inflatable section" -msgid_plural "inflatable section" +#: lang/json/GENERIC_from_json.py +msgid "RC car wheel set" +msgid_plural "RC car wheel sets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for RC car wheel set #: lang/json/GENERIC_from_json.py -msgid "An inflatable boat section." +msgid "" +"Small set of wheels for a radio controlled car. Could be improvised with " +"caster wheels if given rubber treads for grip." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "inflatable airbag" -msgid_plural "inflatable airbag" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/GENERIC_from_json.py +msgid "plastic sheet" +msgid_plural "plastic sheets" +msgstr[0] "пластиковий лист" +msgstr[1] "пластикових листа" +msgstr[2] "пластикових листів" +msgstr[3] "пластиковий лист" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for plastic sheet #: lang/json/GENERIC_from_json.py -msgid "An inflatable airbag." +msgid "" +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wire basket" -msgid_plural "wire baskets" +msgid "rigid plastic sheet" +msgid_plural "rigid plastic sheets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wire basket +#. ~ Description for rigid plastic sheet #: lang/json/GENERIC_from_json.py -msgid "A large wire basket from a shopping cart." +msgid "" +"A large, rigid sheet of translucent plastic, useful for all manner of " +"things; from construction to art, or even junior snowboarding." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "bike rack" -msgid_plural "bike racks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/GENERIC_from_json.py +msgid "large rock" +msgid_plural "large rocks" +msgstr[0] "великий камінь" +msgstr[1] "великих камені" +msgstr[2] "великих каменів" +msgstr[3] "великий камінь" -#. ~ Description for bike rack +#. ~ Description for large rock #: lang/json/GENERIC_from_json.py msgid "" -"A collection of pipes, cams, and straps, mounted on the edge of a vehicle " -"and used to support another vehicle for transport. It must be mounted on a " -"vehicle to be used." +"A heavy and large rock, big enough to be used as a primitive anvil, or " +"shaped into larger stone items." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cargo lock set" -msgid_plural "cargo lock sets" +msgid "grass yarn" +msgid_plural "grass yarns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cargo lock set +#. ~ Description for grass yarn #: lang/json/GENERIC_from_json.py -msgid "A set of locks designed to be installed on a vehicle." +msgid "" +"Some primitive yarn made from coarse plant fibers like straw or grass. Too " +"thick to sew with, but could be woven into a crude sheet of fabric." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "folding wire basket" -msgid_plural "folding wire baskets" +msgid "log" +msgid_plural "logs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for folding wire basket +#. ~ Description for log #: lang/json/GENERIC_from_json.py -msgid "A large wire basket from a shopping cart, modified to be foldable." +msgid "" +"A large chunk of log, cut from a tree. (a)ctivate a wood axe or wood saw to" +" cut it into planks." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bike basket" -msgid_plural "bike baskets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "splintered wood" +msgid_plural "splintered wood" +msgstr[0] "тріска" +msgstr[1] "тріски" +msgstr[2] "трісок" +msgstr[3] "тріски" -#. ~ Description for bike basket +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py -msgid "A simple bike basket. It is small and foldable." +msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cargo carrier" -msgid_plural "cargo carriers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "stick" +msgid_plural "sticks" +msgstr[0] "палка" +msgstr[1] "палки" +msgstr[2] "палок" +msgstr[3] "палки" -#. ~ Description for cargo carrier +#. ~ Description for stick #: lang/json/GENERIC_from_json.py msgid "" -"A heavy frame outfitted with tie-downs and attachment points for carrying " -"cargo." +"A respectable length of wood, just big enough to wrap your hand around. " +"Makes a decent melee weapon." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "floor trunk" -msgid_plural "floor trunks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/GENERIC_from_json.py +msgid "long stick" +msgid_plural "long sticks" +msgstr[0] "довга ломака" +msgstr[1] "довгі ломаки" +msgstr[2] "довгих ломак" +msgstr[3] "довгі ломаки" -#. ~ Description for floor trunk +#. ~ Description for long stick #: lang/json/GENERIC_from_json.py msgid "" -"A section of flooring with a cargo-space beneath, and a hinged door for " -"access." +"A straight section of wood, about eight feet long and a couple of inches in " +"diameter. Makes a decent melee weapon, and can be broken into shorter " +"pieces for crafting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "livestock carrier" -msgid_plural "livestock carriers" +msgid "long pole" +msgid_plural "long poles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for livestock carrier +#. ~ Description for long pole #: lang/json/GENERIC_from_json.py msgid "" -"A heavy frame outfitted with tie-downs and attachment points for carrying " -"cargo, with additional railings to keep a large animal in place. It is " -"meant to hold large animals for transport. Use it on a suitable animal to " -"capture, use it on an empty tile to release." +"A stout, ten-foot pole. Could be used similarly to a spear. The Cataclysm " +"gives fresh meaning to walking softly and carrying a big stick." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "mounted spare tire" -msgid_plural "mounted spare tires" +#: lang/json/GENERIC_from_json.py src/crafting_gui.cpp +msgid "plank" +msgid_plural "planks" +msgstr[0] "дошка" +msgstr[1] "дошки" +msgstr[2] "дошок" +msgstr[3] "дошка" + +#. ~ Description for plank +#: lang/json/GENERIC_from_json.py +msgid "" +"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." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "heavy wooden beam" +msgid_plural "heavy wooden beams" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mounted spare tire +#. ~ Description for heavy wooden beam #: lang/json/GENERIC_from_json.py msgid "" -"A spare tire mounted on a carrier rig, ready to be attached to the rear " -"bumper of a vehicle." +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "animal locker" -msgid_plural "animal lockers" +msgid "wooden panel" +msgid_plural "wooden panels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for animal locker +#. ~ Description for wooden panel #: lang/json/GENERIC_from_json.py msgid "" -"A locker used to contain animals safely during transportation if installed " -"properly. There is room for animal food and other animal care goods. It is" -" meant to hold medium or smaller animals for transport. Use it on a " -"suitable animal to capture, use it on an empty tile to release." +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "camera display" -msgid_plural "camera displays" +msgid "large wooden sheet" +msgid_plural "large wooden sheets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for camera display +#. ~ Description for large wooden sheet #: lang/json/GENERIC_from_json.py -msgid "A set of small monitors. Required to view cameras' output." +msgid "" +"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." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "security camera" -msgid_plural "security cameras" +#: lang/json/GENERIC_from_json.py +msgid "steel bottle" +msgid_plural "steel bottles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for security camera +#. ~ Description for steel bottle #: lang/json/GENERIC_from_json.py -msgid "" -"A security camera you could connect to a display. Image quality is quite " -"low, but the field of vision is great." +msgid "A stainless steel water bottle, holds 750ml of liquid." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vehicle controls" -msgid_plural "sets of vehicle controls" +msgid "foldable plastic bottle" +msgid_plural "foldable plastic bottles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vehicle controls +#. ~ Description for foldable plastic bottle #: lang/json/GENERIC_from_json.py -msgid "A set of various vehicle controls. Useful for crafting." +msgid "A non-rigid plastic bottle for easy storage, holds 500 ml of liquid." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vehicle tracking device" -msgid_plural "vehicle tracking devices" +msgid "atomic coffee maker" +msgid_plural "atomic coffee makers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vehicle tracking device +#. ~ Description for atomic coffee maker #: lang/json/GENERIC_from_json.py msgid "" -"A vehicle tracking device. When installed on a vehicle it allows you track " -"the vehicle." +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "rein and tackle" -msgid_plural "reins and tackles" +msgid "can sealer" +msgid_plural "can sealers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rein and tackle +#. ~ Description for can sealer #: lang/json/GENERIC_from_json.py -msgid "A set of leather bindings to control a mountable creature." +msgid "" +"A hand crank powered cast steel machine designed to automatically seal tin " +"cans." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "dashboard" -msgid_plural "dashboards" +#: lang/json/GENERIC_from_json.py +msgid "clay pot" +msgid_plural "clay pots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dashboard -#. ~ Description for electronics control unit +#. ~ Description for clay pot #: lang/json/GENERIC_from_json.py -msgid "" -"A vehicle instrument panel with various gauges and switches. Useful for " -"crafting." +msgid "A crude clay pot with lid used for cooking." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "electronics control unit" -msgid_plural "electronics control units" +#: lang/json/GENERIC_from_json.py +msgid "clay quern" +msgid_plural "clay querns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "drive by wire controls" -msgid_plural "sets of drive by wire controls" +#. ~ Description for clay quern +#: lang/json/GENERIC_from_json.py +msgid "This is a simple hand-powered clay quern for grinding grain." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "clay teapot" +msgid_plural "clay teapots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for drive by wire controls +#. ~ Description for clay teapot #: lang/json/GENERIC_from_json.py -msgid "" -"Fully electronic vehicle control system. You could control it remotely if " -"you had proper tools." +msgid "A clay teapot. Now all you need is tea and water." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "robot driving unit" -msgid_plural "robot driving units" +msgid "fermenting eggs jar" +msgid_plural "fermenting eggs jars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for robot driving unit +#. ~ Use action msg for fermenting eggs jar. #: lang/json/GENERIC_from_json.py msgid "" -"A set of servos, microcontrollers and other devices, together capable of " -"driving an unmanned vehicle. Its AI is not functional, but it should still " -"have some sort of maintenance mode." +"You examine the batch and see that the pickling solution has done its job, " +"so you seal the jar up for storage." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "turret control unit" -msgid_plural "turret control units" +#. ~ Use action not_ready_msg for fermenting eggs jar. +#: lang/json/GENERIC_from_json.py +msgid "The eggs are not done yet." +msgstr "" + +#. ~ Description for fermenting eggs jar +#: lang/json/GENERIC_from_json.py +msgid "" +"This jar contains a batch of eggs in a pickling solution. You can seal up " +"the jar once the process is completed." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "sealed yeast culture" +msgid_plural "sealed yeast culture" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for turret control unit +#. ~ Use action msg for sealed yeast culture. +#: lang/json/GENERIC_from_json.py +msgid "You open the flask and harvest the culture." +msgstr "" + +#. ~ Use action not_ready_msg for sealed yeast culture. +#: lang/json/GENERIC_from_json.py +msgid "The yeast isn't done culturing yet." +msgstr "" + +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" -"A set of motor, camera, and various electronic modules banded together to " -"allow for tracking targets, friend-or-foe identification, and firing the " -"connected turret in full automatic mode." +"A sealed flask holding sanitized yeast wort. You may harvest the yeast " +"inside when it's done culturing." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "massive engine block" -msgid_plural "massive engine blocks" +msgid "mess tin" +msgid_plural "mess tins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for massive engine block +#. ~ Description for mess tin #: lang/json/GENERIC_from_json.py msgid "" -"The beginnings of a massive gas or diesel engine. It's not good for much of" -" anything on its own." +"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." msgstr "" -"Основа масивного бензинового чи дизельного двигуна. Сама по собі без " -"встановлення чогось вона мало на що годиться." #: lang/json/GENERIC_from_json.py -msgid "large engine block" -msgid_plural "large engine blocks" +msgid "milk cream jar" +msgid_plural "milk cream jars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large engine block +#. ~ Description for milk cream jar #: lang/json/GENERIC_from_json.py msgid "" -"The beginnings of a large gas or diesel engine. It's not good for much of " -"anything on its own." +"This jar contains raw milk separated into cream. It is sealed until you are" +" ready to use it." msgstr "" -"Основа великого бензинового чи дизельного двигуна. Сама по собі без " -"встановлення чогось вона мало на що годиться." #: lang/json/GENERIC_from_json.py -msgid "medium engine block" -msgid_plural "medium engine blocks" +msgid "rising cream jar" +msgid_plural "rising cream jars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for medium engine block +#. ~ Use action msg for rising cream jar. #: lang/json/GENERIC_from_json.py msgid "" -"The beginnings of a medium gas or diesel engine. It's not good for much of " -"anything on its own." +"You examine the batch and see that the cream has risen to the top, so you " +"seal the jar up for storage." msgstr "" -"Основа середнього бензинового чи дизельного двигуна. Сама по собі без " -"встановлення чогось вона мало на що годиться." +#. ~ Use action not_ready_msg for rising cream jar. #: lang/json/GENERIC_from_json.py -msgid "small engine block" -msgid_plural "small engine blocks" +msgid "The cream has not risen yet." +msgstr "" + +#. ~ Description for rising cream jar +#: lang/json/GENERIC_from_json.py +msgid "" +"This jar contains raw milk separating into cream. You can seal up the jar " +"once the process is completed." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "pasta extruder" +msgid_plural "pasta extruders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small engine block +#. ~ Description for pasta extruder #: lang/json/GENERIC_from_json.py msgid "" -"The beginnings of a small gas or diesel engine. It's not good for much of " -"anything on its own." +"A pasta extruder run by a hand-crank. Useful in making pasta. It comes " +"with various heads to make various kinds of pasta." msgstr "" -"Основа маленького бензинового чи дизельного двигуна. Сама по собі без " -"встановлення чогось вона мало на що годиться." #: lang/json/GENERIC_from_json.py -msgid "tiny engine block" -msgid_plural "tiny engine blocks" +msgid "fermenting pickle jar" +msgid_plural "fermenting pickle jars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tiny engine block +#. ~ Use action msg for fermenting pickle jar. +#. ~ Use action msg for fermenting sauerkraut jar. #: lang/json/GENERIC_from_json.py msgid "" -"The beginnings of a tiny gas or diesel engine. It's not good for much of " -"anything on its own." +"You test the batch, and it tastes good, so you seal the jar up for storage." msgstr "" -"Основа мініатюрного бензинового чи дизельного двигуна. Сама по собі без " -"встановлення чогось вона мало на що годиться." +#. ~ Use action not_ready_msg for fermenting pickle jar. #: lang/json/GENERIC_from_json.py -msgid "steel boom" -msgid_plural "steel booms" +msgid "The pickles are not done fermenting yet." +msgstr "" + +#. ~ Description for fermenting pickle jar +#: lang/json/GENERIC_from_json.py +msgid "" +"This jar contains a batch of pickles set to ferment. You can seal up the " +"jar once the process is completed." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "pressure cooker" +msgid_plural "pressure cookers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for steel boom +#. ~ Description for pressure cooker #: lang/json/GENERIC_from_json.py msgid "" -"A large rigid steel boom. If attached to a frame it could be used to lift " -"up to 20 metric tonnes." +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "telescopic cantilever" -msgid_plural "telescopic cantilevers" +msgid "fermenting sauerkraut jar" +msgid_plural "fermenting sauerkraut jars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for telescopic cantilever +#. ~ Use action not_ready_msg for fermenting sauerkraut jar. +#: lang/json/GENERIC_from_json.py +msgid "The sauerkraut isn't done fermenting yet." +msgstr "" + +#. ~ Description for fermenting sauerkraut jar #: lang/json/GENERIC_from_json.py msgid "" -"A small steel telescoping cantilever. If attached to a frame it could be " -"used to lift up to 3.5 metric tonnes." +"This jar contains a batch of sauerkraut set to ferment. You can seal up the" +" jar once the process is completed." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "pallet lifter" -msgid_plural "pallet lifters" +#: lang/json/GENERIC_from_json.py +msgid "wicker sieve" +msgid_plural "wicker sieves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pallet lifter +#. ~ Description for wicker sieve #: lang/json/GENERIC_from_json.py msgid "" -"A makeshift pallet lifter. If attached to a frame it could be used to lift " -"up to 0.5 metric tonnes." +"This is a primitive sieve constructed from woven strips of plant material. " +"Early sieves like this were used to sift grain, though the openings on this " +"one are too small for that." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "rockwheel" -msgid_plural "rockwheels" +#: lang/json/GENERIC_from_json.py +msgid "sieve" +msgid_plural "sieves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rockwheel +#. ~ Description for sieve #: lang/json/GENERIC_from_json.py -msgid "A large and heavy jagged metal disc to dig trenches." +msgid "" +"This is no mere strainer for noodles; it's a sieve used to separate " +"particles of certain sizes. You could use this to do a really good job " +"sifting flour, remove dust and soil from grain, or perhaps conduct gradation" +" tests for any civil engineers you might know. This one has been " +"constructed from steel mesh." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "airjack" -msgid_plural "airjacks" +msgid "teapot" +msgid_plural "teapots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for airjack -#. ~ Description for air jack system -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "" -"An extendable metal pylon used to replace a portable jack. If mounted to a " -"vehicle, it could be used to lift it up." +#. ~ Description for teapot +#: lang/json/GENERIC_from_json.py +msgid "A small metal teapot. Teatime wouldn't be complete without one." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "motorcycle kickstand" -msgid_plural "motorcycle kickstands" +#: lang/json/GENERIC_from_json.py +msgid "waffle iron" +msgid_plural "waffle irons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for motorcycle kickstand -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "" -"A kickstand to keep the bike from falling over. You could use this to lean " -"it forward or backward to change a tire." +#. ~ Description for waffle iron +#: lang/json/GENERIC_from_json.py +msgid "A waffle iron. For making waffles." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vehicle scoop" -msgid_plural "vehicle scoops" +msgid "fungicidal gas grenade" +msgid_plural "fungicidal gas grenades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vehicle scoop +#. ~ Use action menu_text for fungicidal gas grenade. +#. ~ Use action menu_text for makeshift fungicidal gas grenade. +#. ~ Use action menu_text for tear gas grenade. +#. ~ Use action menu_text for insecticidal gas grenade. +#. ~ Use action menu_text for makeshift insecticidal gas grenade. +#. ~ Use action menu_text for flashbang. +#. ~ Use action menu_text for grenade. +#. ~ Use action menu_text for EMP grenade. +#. ~ Use action menu_text for incendiary grenade. +#. ~ Use action menu_text for scrambler grenade. +#. ~ Use action menu_text for military explosive pipebomb. +#. ~ Use action menu_text for military explosive bomb. +#. ~ Use action menu_text for tear gas payload. +#. ~ Use action menu_text for Kabura-ya antipersonnel device. +#. ~ Use action menu_text for electroshock grenade. +#. ~ Use action menu_text for cryo grenade. +#: lang/json/GENERIC_from_json.py lang/json/GENERIC_from_json.py +#: lang/json/TOOL_from_json.py lang/json/TOOL_from_json.py +msgid "Pull pin" +msgstr "" + +#. ~ Description for fungicidal gas grenade #: lang/json/GENERIC_from_json.py msgid "" -"An assembly of motors and sheet metal that allows a vehicle to clean the " -"road surface by removing debris and contaminants." +"This is a canister grenade filled with fungicidal solution. Use this item " +"to pull the pin and light the fuse, turning it into an active fungicidal " +"grenade. In five seconds it will begin to expel a volatile spray that is " +"highly toxic to fungal life forms." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "seed drill" -msgid_plural "seed drills" +#: lang/json/GENERIC_from_json.py +msgid "armed fungicidal gas canister" +msgid_plural "armed fungicidal gas canisters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for seed drill +#. ~ Description for armed fungicidal gas canister #: lang/json/GENERIC_from_json.py msgid "" -"An assembly of tubes, spikes, and wheels, that when dragged along the " -"ground, allows a vehicle to plant seeds automatically in suitably tilled " -"land." +"This fungicidal bomb has had its pin removed and is expelling highly toxic " +"gas." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "reaper" -msgid_plural "reapers" +#: lang/json/GENERIC_from_json.py +msgid "makeshift fungicidal gas grenade" +msgid_plural "makeshift fungicidal gas grenades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for reaper +#. ~ Description for makeshift fungicidal gas grenade #: lang/json/GENERIC_from_json.py msgid "" -"An assembly of a blade, wheels, and a small lever for engaging/disengaging " -"used to cut down crops prior to picking them up." +"This is a makeshift canister grenade filled with fungicidal solution. Use " +"this item to pull the pin and light the fuse, turning it into an active " +"fungicidal grenade. In five seconds it will begin to expel a volatile spray" +" that is highly toxic to fungal life forms." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "advanced reaper" -msgid_plural "advanced reapers" +#: lang/json/GENERIC_from_json.py +msgid "armed makeshift fungicidal gas canister" +msgid_plural "armed makeshift fungicidal gas canisters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for advanced reaper +#. ~ Description for armed makeshift fungicidal gas canister #: lang/json/GENERIC_from_json.py msgid "" -"An advanced electronic device used to cut down, collect and store crops." +"This makeshift fungicidal bomb has had its pin removed and is expelling " +"highly toxic haze." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "advanced seed drill" -msgid_plural "advanced seed drills" +#: lang/json/GENERIC_from_json.py +msgid "canister grenade" +msgid_plural "canister grenades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for advanced seed drill +#. ~ Use action message for canister grenade. #: lang/json/GENERIC_from_json.py -msgid "" -"An assembly of tubes, spikes, and wheels, that when dragged along the " -"ground, allows a vehicle to plant seeds automatically in suitably tilled " -"land. This one is equipped with an electronic control system and will avoid" -" damaging itself when used on untilled land." +#, no-python-format +msgid "You pull the pin on the %s." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "plow" -msgid_plural "plows" +#: lang/json/GENERIC_from_json.py +msgid "tear gas grenade" +msgid_plural "tear gas grenades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for plow +#. ~ Description for tear gas grenade #: lang/json/GENERIC_from_json.py -msgid "A heavy assembly of wheels and steel blades that turn up the ground." +msgid "" +"This is a canister grenade filled with noxious irritant. Use this item to " +"pull the pin and light the fuse, turning it into an active tear gas grenade." +" In five seconds it will begin to expel a highly toxic gas for some time. " +"This gas damages and slows those who enter it, as well as obscuring vision " +"and scent." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "foldable-light frame" -msgid_plural "foldable-light frames" -msgstr[0] "складна полегшена рама" -msgstr[1] "складні полегшені рами" -msgstr[2] "складних полегшених рам" -msgstr[3] "складна полегшена рама" +msgid "armed tear gas canister" +msgid_plural "armed tear gas canisters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for foldable-light frame +#. ~ Description for armed tear gas canister #: lang/json/GENERIC_from_json.py -msgid "A small foldable lightweight frame made from pipework." +msgid "" +"This smoke bomb has had its pin removed and is expelling highly toxic gas." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "extra-light frame" -msgid_plural "extra-light frames" -msgstr[0] "полегшена рама" -msgstr[1] "полегшені рами" -msgstr[2] "полегшених рам" -msgstr[3] "полегшена рама" +msgid "insecticidal gas grenade" +msgid_plural "insecticidal gas grenades" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for extra-light frame +#. ~ Description for insecticidal gas grenade #: lang/json/GENERIC_from_json.py -msgid "A small lightweight frame made from pipework. Useful for crafting." +msgid "" +"This is a canister grenade filled with insecticidal solution. Use this item" +" to pull the pin and light the fuse, turning it into an active insecticidal " +"grenade. In five seconds it will begin to expel a volatile spray that is " +"highly toxic to insect life forms." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "steel frame" -msgid_plural "steel frames" -msgstr[0] "сталева рама" -msgstr[1] "сталеві рами" -msgstr[2] "сталевих рам" -msgstr[3] "сталева рама" +msgid "armed insecticidal gas canister" +msgid_plural "armed insecticidal gas canisters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for steel frame +#. ~ Description for armed insecticidal gas canister #: lang/json/GENERIC_from_json.py -msgid "A large frame made of steel. Useful for crafting." +msgid "" +"This insecticidal bomb has had its pin removed and is expelling highly toxic" +" haze." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "heavy duty frame" -msgid_plural "heavy duty frames" -msgstr[0] "зміцнена рама" -msgstr[1] "зміцнені рами" -msgstr[2] "зміцнених рам" -msgstr[3] "зміцнена рама" +#: lang/json/GENERIC_from_json.py +msgid "makeshift insecticidal gas grenade" +msgid_plural "makeshift insecticidal gas grenades" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for heavy duty frame +#. ~ Description for makeshift insecticidal gas grenade #: lang/json/GENERIC_from_json.py msgid "" -"A large, reinforced steel frame, used in military vehicle construction." +"This is a makeshift canister grenade filled with insecticidal solution. Use" +" this item to pull the pin and light the fuse, turning it into an active " +"insecticidal grenade. In five seconds it will begin to expel a volatile " +"spray that is highly toxic to insect life forms." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "wooden frame" -msgid_plural "wooden frames" -msgstr[0] "дерев'яна рама" -msgstr[1] "дерев'яні рами" -msgstr[2] "дерев'яних рам" -msgstr[3] "дерев'яна рама" +#: lang/json/GENERIC_from_json.py +msgid "armed makeshift insecticidal gas canister" +msgid_plural "armed makeshift insecticidal gas canisters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for wooden frame +#. ~ Description for armed makeshift insecticidal gas canister #: lang/json/GENERIC_from_json.py -msgid "A large frame made of wood. Useful for crafting." +msgid "" +"This makeshift insecticidal bomb has had its pin removed and is expelling " +"highly toxic haze." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "foldable wooden frame" -msgid_plural "foldable wooden frames" -msgstr[0] "складна дерев'яна рама" -msgstr[1] "складні дерев'яні рами" -msgstr[2] "складних дерев'яних рам" -msgstr[3] "складна дерев'яна рама" +#: lang/json/GENERIC_from_json.py +msgid "smoke bomb" +msgid_plural "smoke bombs" +msgstr[0] "димова бомба" +msgstr[1] "димові бомби" +msgstr[2] "димових бомб" +msgstr[3] "димові бомби" -#. ~ Description for foldable wooden frame +#. ~ Description for smoke bomb #: lang/json/GENERIC_from_json.py -msgid "A small foldable frame made from scrap wood." +msgid "" +"This is a canister grenade filled with a variety of pyrotechnic chemicals. " +"Use this item to pull the pin and light the fuse, turning it into an active " +"smoke bomb. Five seconds after you do that, it will begin to expel a thick " +"black smoke. This smoke will slow those who enter it, as well as obscuring " +"vision and scent." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "light wooden frame" -msgid_plural "light wooden frames" -msgstr[0] "легка дерев'яна рама" -msgstr[1] "легкі дерев'яні рами" -msgstr[2] "легких дерев'яних рам" -msgstr[3] "легка дерев'яна рама" +#: lang/json/GENERIC_from_json.py +msgid "armed smoke bomb" +msgid_plural "armed smoke bombs" +msgstr[0] "димова бомба (активовано)" +msgstr[1] "димові бомби (активовано)" +msgstr[2] "димових бомб (активовано)" +msgstr[3] "димові бомби (активовано)" -#. ~ Description for light wooden frame +#. ~ Description for armed smoke bomb #: lang/json/GENERIC_from_json.py -msgid "" -"A small frame made of few pieces of wood, held together by rope. Useful for" -" crafting." +msgid "This smoke bomb has had its pin removed and is expelling thick smoke." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "car headlight" -msgid_plural "car headlights" +msgid "pike pole" +msgid_plural "pike poles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for car headlight +#. ~ Description for pike pole #: lang/json/GENERIC_from_json.py -msgid "A vehicle headlight to light up the way." +msgid "" +"A durable tool consisting of a sturdy fiberglass shaft tipped with a small " +"steel hook." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "motorcycle headlight" -msgid_plural "motorcycle headlights" +#: lang/json/GENERIC_from_json.py +msgid "fishing hook" +msgid_plural "fishing hooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for motorcycle headlight +#. ~ Description for fishing hook #: lang/json/GENERIC_from_json.py -msgid "A motorcycle headlight to light up the way." +msgid "A simple fishing hook." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wide-angle car headlight" -msgid_plural "wide-angle car headlights" +msgid "improvised fishing hook" +msgid_plural "improvised fishing hooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wide-angle car headlight +#. ~ Description for improvised fishing hook #: lang/json/GENERIC_from_json.py -msgid "A wide-angle vehicle headlight to light up the way." +msgid "An improvised fishing hook carved from wood or bone." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "reinforced headlight" -msgid_plural "reinforced headlights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/GENERIC_from_json.py +msgid "digging stick" +msgid_plural "digging sticks" +msgstr[0] "палиця-копачка" +msgstr[1] "палиці-копачки" +msgstr[2] "палиць-копачок" +msgstr[3] "палиця-копачка" -#. ~ Description for reinforced headlight +#. ~ Description for digging stick #: lang/json/GENERIC_from_json.py msgid "" -"A vehicle headlight with a cage built around it to protect it from damage " -"without reducing its effectiveness." +"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." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "reinforced wide-angle headlight" -msgid_plural "reinforced wide-angle headlights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "atomic lamp" +msgid_plural "atomic lamps" +msgstr[0] "атомна лампа" +msgstr[1] "атомні лампи" +msgstr[2] "атомних ламп" +msgstr[3] "атомні лампи" -#. ~ Description for reinforced wide-angle headlight +#. ~ Use action menu_text for atomic lamp. +#. ~ Use action menu_text for atomic reading light. +#. ~ Use action menu_text for magical reading light. +#. ~ Use action menu_text for atomic headlamp. +#: lang/json/GENERIC_from_json.py lang/json/GENERIC_from_json.py +#: lang/json/TOOL_ARMOR_from_json.py +msgid "Close cover" +msgstr "" + +#. ~ Use action msg for atomic lamp. +#: lang/json/GENERIC_from_json.py +msgid "You close the lamp's cover." +msgstr "" + +#. ~ Description for atomic lamp #: lang/json/GENERIC_from_json.py msgid "" -"A wide-angle vehicle headlight with a cage built around it to protect it " -"from damage without reducing its effectiveness." +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "emergency vehicle light (red)" -msgid_plural "emergency vehicle lights (red)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "atomic lamp (covered)" +msgid_plural "atomic lamps (covered)" +msgstr[0] "атомна лампа (накрите)" +msgstr[1] "атомні лампи (накрите)" +msgstr[2] "атомних ламп (накрите)" +msgstr[3] "атомні лампи (накрите)" -#. ~ Description for emergency vehicle light (red) +#. ~ Use action menu_text for atomic lamp (covered). +#. ~ Use action menu_text for atomic reading light (covered). +#. ~ Use action menu_text for magical reading light (covered). +#. ~ Use action menu_text for atomic headlamp (covered). +#: lang/json/GENERIC_from_json.py lang/json/GENERIC_from_json.py +#: lang/json/TOOL_ARMOR_from_json.py +msgid "Open cover" +msgstr "" + +#. ~ Use action msg for atomic lamp (covered). +#: lang/json/GENERIC_from_json.py +msgid "You open the lamp's cover." +msgstr "" + +#. ~ Description for atomic lamp (covered) #: lang/json/GENERIC_from_json.py msgid "" -"One of the red-colored lights from the top of an emergency services vehicle." -" When turned on, the lights rotate to shine in all directions." +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "emergency vehicle light (blue)" -msgid_plural "emergency vehicle lights (blue)" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "atomic reading light" +msgid_plural "atomic reading lights" +msgstr[0] "атомна підсвітка для читання" +msgstr[1] "атомні підсвітки для читання" +msgstr[2] "атомних підсвіток для читання" +msgstr[3] "атомна підсвітка для читання" -#. ~ Description for emergency vehicle light (blue) +#. ~ Use action msg for atomic reading light. +#. ~ Use action msg for magical reading light. +#: lang/json/GENERIC_from_json.py +msgid "You close the nightlight's cover." +msgstr "" + +#. ~ Description for atomic reading light #: lang/json/GENERIC_from_json.py msgid "" -"One of the blue-colored lights from the top of an emergency services " -"vehicle. When turned on, the lights rotate to shine in all directions." +"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." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "floodlight" -msgid_plural "floodlights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/GENERIC_from_json.py +msgid "atomic reading light (covered)" +msgid_plural "atomic reading lights (covered)" +msgstr[0] "атомна підсвітка для читання (накрите)" +msgstr[1] "атомні підсвітки для читання (накрите)" +msgstr[2] "атомних підсвіток для читання (накрите)" +msgstr[3] "атомна підсвітка для читання (накрите)" -#. ~ Description for floodlight +#. ~ Use action msg for atomic reading light (covered). +#. ~ Use action msg for magical reading light (covered). #: lang/json/GENERIC_from_json.py -msgid "A large and heavy light designed to illuminate wide areas." +msgid "You open the nightlight's cover." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "directed floodlight" -msgid_plural "directed floodlights" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for directed floodlight +#. ~ Description for atomic reading light (covered) #: lang/json/GENERIC_from_json.py msgid "" -"A large and heavy light designed to illuminate a wide area in a half-" -"circular cone." +"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." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "set of hand rims" -msgid_plural "sets of hand rims" +msgid "grinder blade" +msgid_plural "grinder blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for set of hand rims +#. ~ Description for grinder blade #: lang/json/GENERIC_from_json.py -msgid "Hand rims for use on a wheelchair." +msgid "" +"A 125mm angle grinder blade. You could make a powertool with it, or throw " +"it. Wielding it without sturdy gloves is a bad idea." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "foot crank" -msgid_plural "foot cranks" +msgid "blood draw kit" +msgid_plural "blood draw kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for foot crank +#. ~ Description for blood draw kit #: lang/json/GENERIC_from_json.py -msgid "The pedal and gear assembly from a bicycle." +msgid "" +"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." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/overmap_terrain_from_json.py -#: lang/json/vehicle_part_from_json.py -msgid "wind turbine" -msgid_plural "wind turbines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py +msgid "charcoal kiln" +msgid_plural "charcoal kilns" +msgstr[0] "піч для випалювання вугілля" +msgstr[1] "печі для випалювання вугілля" +msgstr[2] "печей для випалювання вугілля" +msgstr[3] "печі для випалювання вугілля" -#. ~ Description for wind turbine +#. ~ Description for charcoal kiln #: lang/json/GENERIC_from_json.py -msgid "A small turbine that can convert wind into electric power." +msgid "" +"A stout metal box used for producing charcoal via pyrolysis; the incomplete " +"burning of organic materials in the absence of oxygen." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "large wind turbine" -msgid_plural "large wind turbines" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/GENERIC_from_json.py +msgid "lit charcoal kiln" +msgid_plural "lit charcoal kilns" +msgstr[0] "піч для випалювання вугілля (горить)" +msgstr[1] "печі для випалювання вугілля (горить)" +msgstr[2] "печей для випалювання вугілля (горить)" +msgstr[3] "печі для випалювання вугілля (горить)" -#. ~ Description for large wind turbine +#. ~ Use action msg for lit charcoal kiln. #: lang/json/GENERIC_from_json.py -msgid "A large turbine that can convert wind into electric power." +msgid "" +"The kiln's embers have died out; you can now disassemble it to harvest the " +"charcoal." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "water wheel" -msgid_plural "water wheels" +#. ~ Use action not_ready_msg for lit charcoal kiln. +#: lang/json/GENERIC_from_json.py +msgid "The kiln is still burning." +msgstr "" + +#. ~ Description for lit charcoal kiln +#: lang/json/GENERIC_from_json.py +msgid "A kiln full of wood that has been lit; better drop it!" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "grappling hook" +msgid_plural "grappling hooks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for water wheel +#. ~ Description for grappling hook #: lang/json/GENERIC_from_json.py msgid "" -"A water wheel. Will slowly recharge the vehicle's electrical power when " -"built over shallow moving water." +"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." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "large water wheel" -msgid_plural "large water wheels" +#: lang/json/GENERIC_from_json.py +msgid "mind splicer kit" +msgid_plural "mind splicer kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large water wheel +#. ~ Description for mind splicer kit #: lang/json/GENERIC_from_json.py msgid "" -"A large water wheel with wooden supports. Will recharge the vehicle's " -"electrical power when built over shallow moving water." +"Surgical forceps, cables and a modified smartphone inside a small plastic " +"pouch. Assembled to steal the mind of some poor man, these are tools of the" +" creepy high-tech sandman." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -#: lang/json/vehicle_part_from_json.py -msgid "electric motor" -msgid_plural "electric motors" +#: lang/json/GENERIC_from_json.py +msgid "umbrella" +msgid_plural "umbrellas" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for electric motor +#. ~ Description for umbrella #: lang/json/GENERIC_from_json.py -msgid "A powerful electric motor. Useful for crafting." +msgid "An umbrella with a pointy end, useful for keeping dry when wielded." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "enhanced electric motor" -msgid_plural "enhanced electric motors" +#: lang/json/GENERIC_from_json.py +msgid "light detector" +msgid_plural "light detectors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for enhanced electric motor +#. ~ Description for light detector #: lang/json/GENERIC_from_json.py msgid "" -"A very powerful and yet lightweight electric motor. Useful for crafting." +"This is a photodiode on a chip, designed to convert incoming light to " +"electrical energy for quantification." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "super electric motor" -msgid_plural "super electric motors" +#: lang/json/GENERIC_from_json.py +msgid "glass prism" +msgid_plural "glass prisms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for super electric motor +#. ~ Description for glass prism #: lang/json/GENERIC_from_json.py -msgid "The most powerful electric motor on the market. Useful for crafting." +msgid "" +"This is a high quality crystal glass prism for separating and redirecting " +"light." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "large electric motor" -msgid_plural "large electric motors" +#: lang/json/GENERIC_from_json.py +msgid "small glass tube" +msgid_plural "small glass tubes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for large electric motor +#. ~ Description for small glass tube #: lang/json/GENERIC_from_json.py -msgid "A large and very powerful electric motor. Useful for crafting." +msgid "" +"This is a small glass tube. What more could you possibly want to know about" +" it?" msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "small electric motor" -msgid_plural "small electric motors" +#: lang/json/GENERIC_from_json.py +msgid "plastic stopcock" +msgid_plural "plastic stopcocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small electric motor +#. ~ Description for plastic stopcock #: lang/json/GENERIC_from_json.py -msgid "A small electric motor. Useful for crafting." +msgid "" +"Stop giggling. This is a tiny plastic valve, get your mind out of the " +"gutter." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "tiny electric motor" -msgid_plural "tiny electric motors" +#: lang/json/GENERIC_from_json.py +msgid "test tube rack" +msgid_plural "test tube racks" +msgstr[0] "стійка для пробірок" +msgstr[1] "стійки для пробірок" +msgstr[2] "стійок для пробірок" +msgstr[3] "стійка для пробірок" + +#. ~ Description for test tube rack +#: lang/json/GENERIC_from_json.py +msgid "" +"A plastic box with holes in it. Not that exciting, unless you're desperate " +"for a place to store a test tube. Then it's great." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "microcentrifuge tube tray" +msgid_plural "microcentrifuge tube trays" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tiny electric motor +#. ~ Description for microcentrifuge tube tray #: lang/json/GENERIC_from_json.py -msgid "A tiny electric motor. Useful for crafting." +msgid "" +"A plastic tray riddled with small holes, for storing microcentrifuge tubes." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "1300hp electric train engine" -msgid_plural "1300hp electric train engines" +#: lang/json/GENERIC_from_json.py +msgid "ring stand" +msgid_plural "ring stands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 1300hp electric train engine +#. ~ Description for ring stand #: lang/json/GENERIC_from_json.py -msgid "A 1300hp 3-phase 60 Hz electric engine. Normally used in trains." +msgid "" +"This is a heavy metal plate and a sturdy rod, for clamping lab stuff to." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "muffler" -msgid_plural "mufflers" +#: lang/json/GENERIC_from_json.py +msgid "set of ring stand clamps" +msgid_plural "sets of ring stand clamps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for muffler +#. ~ Description for set of ring stand clamps #: lang/json/GENERIC_from_json.py msgid "" -"A muffler from a car. Very unwieldy as a weapon. Useful in a few crafting " -"recipes." +"This is a small box with a jumbled assortment of clamps for mounting on ring" +" stands. There seems to be some sort of rule that all of them are missing " +"at least one wing nut for tightening them; it looks like judicious use of " +"twist ties, duct tape, and other random stuff has been used to compensate." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "back-up beeper" -msgid_plural "back-up beepers" +#: lang/json/GENERIC_from_json.py +msgid "aluminum tent pole" +msgid_plural "aluminum tent poles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for back-up beeper +#. ~ Description for aluminum tent pole #: lang/json/GENERIC_from_json.py msgid "" -"This is a safety device intended to warn passersby of a vehicle moving in " -"reverse, but the usage of it now seems terribly unwise." +"A light collapsible tent pole made from aluminum, perfect for pitching a " +"tent." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "stereo system" -msgid_plural "stereo systems" +#: lang/json/GENERIC_from_json.py +msgid "stapler" +msgid_plural "staplers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for stereo system +#. ~ Description for stapler #: lang/json/GENERIC_from_json.py -msgid "" -"A stereo system with speakers. It is capable of being hooked up to a " -"vehicle." +msgid "A stapler for fastening sheets of paper together." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "chime loudspeakers" -msgid_plural "chime loudspeakers" +msgid "hole puncher" +msgid_plural "hole punchers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for hole puncher #: lang/json/GENERIC_from_json.py msgid "" -"A stereo system with loudspeakers and a built-in set of simple melodies that" -" it will play. Commonly used by ice cream trucks to draw the attention of " -"children in the days when children wanted ice cream more than brains." +"This metal tool can help you punch a single hole in a piece of paper. I " +"mean, you could do more if you wanted, but you'd have to do them one at a " +"time. Or, if you really wanted more holes with one punch, I suppose you " +"could fold the paper… This is a one cylinder hole puncher." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sheet metal" -msgid_plural "sheet metal" +msgid "letter opener" +msgid_plural "letter openers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for letter opener #: lang/json/GENERIC_from_json.py -msgid "A thin sheet of metal." +msgid "" +"This sterling silver letter opener resembling a small dagger has a sharp " +"point and no cutting edge. It was used to open mail envelopes neatly and " +"quickly." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wired sheet metal" -msgid_plural "wired sheet metal" +msgid "bone billet" +msgid_plural "bone billets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for bone billet #: lang/json/GENERIC_from_json.py -msgid "Sheet metal that has had housing for lights wired into it." +msgid "" +"A thick short bone, usually used in flintknapping for soft-hammer " +"percussion." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wooden armor kit" -msgid_plural "wooden armor kits" +msgid "wooden billet" +msgid_plural "wooden billets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wooden armor kit +#. ~ Description for wooden billet #: lang/json/GENERIC_from_json.py -msgid "A bundle of planks prepared to be used as vehicle armor." +msgid "" +"A thick short wooden stick, usually used in flintknapping for soft-hammer " +"percussion." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "steel plating" -msgid_plural "steel plating" +#: lang/json/GENERIC_from_json.py +msgid "primitive rock drill" +msgid_plural "primitive rock drills" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for primitive rock drill #: lang/json/GENERIC_from_json.py -msgid "A piece of armor plating made of steel." +msgid "" +"A thick blunted wooden stick. Can be used to drill rough holes in rock, if " +"water and sand are available, but the process is lengthy." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "superalloy plating" -msgid_plural "superalloy plating" +#: lang/json/GENERIC_from_json.py +msgid "bone punch" +msgid_plural "bone punches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for bone punch #: lang/json/GENERIC_from_json.py -msgid "A piece of armor plating made of sturdy superalloy." +msgid "" +"A thick short bone with a small pointy tip, usually used in flintknapping " +"for indirect percussion and pressure flaking." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "superalloy sheet" -msgid_plural "superalloy sheets" +msgid "nail punch" +msgid_plural "nail punches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for superalloy sheet +#. ~ Description for nail punch #: lang/json/GENERIC_from_json.py msgid "" -"A sheet of sturdy superalloy; incredibly hard, yet incredibly malleable." +"Two pieces of wood with a steel nail secured inbetween them with some " +"cordage. Usually used in flintknapping for indirect percussion and pressure" +" flaking." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "spiked plating" -msgid_plural "spiked plating" +#: lang/json/GENERIC_from_json.py +msgid "bone sewing awl" +msgid_plural "bone sewing awls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for bone sewing awl #: lang/json/GENERIC_from_json.py msgid "" -"A piece of armor plating made of steel. It is covered with menacing spikes." +"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." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "hard plating" -msgid_plural "hard platings" +#: lang/json/GENERIC_from_json.py +msgid "steel sewing awl" +msgid_plural "steel sewing awls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hard plating +#. ~ Description for steel sewing awl #: lang/json/GENERIC_from_json.py -msgid "A piece of very thick armor plating made of steel." +msgid "" +"This is a steel awl with a wooden grip, usually used for leatherworking. It" +" can also serve as an improvised stabbing weapon, but will break quickly." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "military composite plating" -msgid_plural "military composite platings" +msgid "knitting needles" +msgid_plural "pairs of knitting needles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for military composite plating +#. ~ Description for knitting needles #: lang/json/GENERIC_from_json.py msgid "" -"A thick sheet of military-grade armor; best bullet-stopper you can stick on " -"a vehicle." +"A pair of stout wooden needles with round ends used to turn thread and yarn " +"into cloth." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "chitin armor kit" -msgid_plural "chitin armor kits" +msgid "frame loom" +msgid_plural "frame looms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chitin armor kit +#. ~ Description for frame loom #: lang/json/GENERIC_from_json.py -msgid "Light chitin plating made for a vehicle." +msgid "" +"This is a rather bulky and primitive wooden frame which can be used to weave" +" cloth sheets. It is very slow, though." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "biosilicified chitin armor kit" -msgid_plural "biosilicified chitin armor kits" +msgid "wooden shed stick" +msgid_plural "wooden shed sticks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for biosilicified chitin armor kit -#: lang/json/GENERIC_from_json.py -msgid "Durable silica-coated chitin plating made for a vehicle." -msgstr "" - -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "shredder" -msgid_plural "shredders" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for shredder +#. ~ Description for wooden shed stick #: lang/json/GENERIC_from_json.py msgid "" -"This menacing looking attachment is meant to be powered by a vehicle's " -"engine. Upon doing so, the circular blades of this device will rotate " -"rapidly; anything in front of it is likely to be ripped to shreds. It is " -"sturdy enough to withstand multiple impacts, and is designed to detach if it" -" would take a hit that would break it." +"This is a short thin flat wooden stick, used as a tool while weaving cloth " +"with a frame loom." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vehicle crafting rig" -msgid_plural "vehicle crafting rigs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "onboard chemistry lab" -msgid_plural "onboard chemistry labs" +msgid "tailoring pattern set" +msgid_plural "tailoring pattern sets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for onboard chemistry lab +#. ~ Description for tailoring pattern set #: lang/json/GENERIC_from_json.py msgid "" -"Assembled from a chemistry set attached to a complex wiring harness, it is " -"well suited to most any chemistry project you could imagine. Unable to " -"utilize standard batteries, it requires an external supply of electricity to" -" operate." +"This is a large set of tailoring patterns made from paper. They're useful " +"for making any kind of cloth or leather items from scratch, but are " +"necessary for more advanced projects." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "FOODCO kitchen buddy" -msgid_plural "FOODCO kitchen buddies" +#: lang/json/GENERIC_from_json.py +msgid "razor blade" +msgid_plural "razor blades" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for FOODCO kitchen buddy +#. ~ Description for razor blade #: lang/json/GENERIC_from_json.py -msgid "" -"Assembled from a set of instructions you found in an old book of DIY " -"projects, the *FOODCO kitchen buddy* claims to be *the perfect solution to " -"all your home-cooking needs!*. While it is surprisingly handy for vacuum-" -"sealing as well as dehydrating food, the cheery sales pitch neglected to " -"mention A - how awkward the damn thing is, B - That you still need a normal " -"kitchen and C - how it doesn't take batteries. You're going to have to weld" -" it to a vehicle, or something else with a supply of electricity, if you " -"want to use it. In addition to the food preservation features, it also has " -"a food processor, a water-purification system, a drawer for holding extra " -"tools, and for some insane reason, a press and die set for hand-loading " -"ammunition." +msgid "A double-edged razor blade." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vehicle forge rig" -msgid_plural "vehicle forge rigs" +msgid "hatchet" +msgid_plural "hatchets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vehicle forge rig +#. ~ Description for hatchet #: lang/json/GENERIC_from_json.py msgid "" -"A forge rig made to run off a vehicle's storage battery with integrated tool" -" storage for metalworking equipment." +"A one-handed hatchet. Makes a great melee weapon until the wooden haft " +"breaks, and is useful both for chopping things and for use as a hammer." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vehicle kiln" -msgid_plural "vehicle kilns" +msgid "carding paddles" +msgid_plural "pairs of carding paddles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vehicle kiln +#. ~ Description for carding paddles #: lang/json/GENERIC_from_json.py -msgid "An electric kiln made to run off a vehicle's storage battery." +msgid "" +"A pair of toothy wooden paddles used to clean fibers for use in textile " +"production." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "RV kitchen unit" -msgid_plural "RV kitchen units" +msgid "distaff and spindle" +msgid_plural "distaves and spindles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for RV kitchen unit +#. ~ Description for distaff and spindle #: lang/json/GENERIC_from_json.py msgid "" -"A vehicle mountable electric range and sink unit with integrated tool " -"storage for cooking utensils." +"A pair of specialized wooden rods used to spin fibers into thread and yarn." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vehicle welding rig" -msgid_plural "vehicle welding rigs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "toolbox" +msgid_plural "toolboxes" +msgstr[0] "ящик з інструментами" +msgstr[1] "ящика з інструментами" +msgstr[2] "ящиків з інструментами" +msgstr[3] "ящик з інструментами" -#. ~ Description for vehicle welding rig +#. ~ Description for toolbox #: lang/json/GENERIC_from_json.py msgid "" -"A welding rig made to run off a vehicle's storage battery. It has a " -"soldering iron attachment for delicate work, and a compartment to store your" -" extra tools in." +"This is a stout metal box for containing tools. It has a handle on the top " +"and a latch on the front." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "heavy-duty military rotors" -msgid_plural "sets of heavy-duty military rotors" +#: lang/json/GENERIC_from_json.py +msgid "workshop toolbox" +msgid_plural "workshop toolboxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for heavy-duty military rotors +#. ~ Description for workshop toolbox #: lang/json/GENERIC_from_json.py -msgid "A set of four rotor blades from a military attack helicopter." +msgid "" +"This is a stout metal box for containing tools. It is much bigger than a " +"regular tool box and could be used to store more tools than usual." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "small civilian helicopter rotors" -msgid_plural "sets of small civilian helicopter rotors" +msgid "vehicle alternator" +msgid_plural "vehicle alternators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for small civilian helicopter rotors -#: lang/json/GENERIC_from_json.py -msgid "A set of four rotor blades from a civilian light helicopter." -msgstr "" - #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "seat" -msgid_plural "seats" +msgid "car alternator" +msgid_plural "car alternators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for seat +#. ~ Description for car alternator #: lang/json/GENERIC_from_json.py -msgid "A soft car seat made from synthetic fabric." +msgid "A standard alternator used to power vehicle electrical systems." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "leather seat" -msgid_plural "leather seats" +msgid "motorbike alternator" +msgid_plural "motorbike alternators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for leather seat +#. ~ Description for motorbike alternator #: lang/json/GENERIC_from_json.py -msgid "A soft car seat covered with leather." +msgid "" +"A compact lightweight alternator used to power small vehicle electrical " +"systems." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "saddle" -msgid_plural "saddles" +msgid "bicycle alternator" +msgid_plural "bicycle alternators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for saddle +#. ~ Description for bicycle alternator #: lang/json/GENERIC_from_json.py -msgid "A leather-covered seat designed to be straddled." +msgid "A very lightweight alternator used to power a bicycle's headlights." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "solar panel" -msgid_plural "solar panels" +msgid "truck alternator" +msgid_plural "truck alternators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for solar panel +#. ~ Description for truck alternator #: lang/json/GENERIC_from_json.py msgid "" -"Electronic device that can convert solar radiation into electric power. " -"Useful for a vehicle." +"A larger and more powerful alternator used to power vehicle electrical " +"systems." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "reinforced solar panel" -msgid_plural "reinforced solar panels" +msgid "7.5kW generator" +msgid_plural "7.5kW generators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for reinforced solar panel +#. ~ Description for 7.5kW generator #: lang/json/GENERIC_from_json.py msgid "" -"A solar panel that has been covered with a pane of reinforced glass to " -"protect the delicate solar cells from zombies or errant baseballs. The " -"glass causes this panel to produce slightly less power than a normal panel." -" Useful for a vehicle." +"A bulky but efficient electrical generator designed to be attached to an " +"engine." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "upgraded solar panel" -msgid_plural "upgraded solar panels" +#: lang/json/GENERIC_from_json.py +msgid "rebar grate" +msgid_plural "rebar grates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for upgraded solar panel +#. ~ Description for rebar grate #: lang/json/GENERIC_from_json.py msgid "" -"Electronic device that can convert solar radiation into electric power. " -"This panel has been upgraded to convert more sunlight into power. Useful " -"for a vehicle." +"Interlocked sections of rebar that allows for light and effective " +"reinforcement of vehicle sections." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "upgraded reinforced solar panel" -msgid_plural "upgraded reinforced solar panels" +msgid "shock absorber" +msgid_plural "shock absorbers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for upgraded reinforced solar panel +#. ~ Description for shock absorber #: lang/json/GENERIC_from_json.py msgid "" -"An upgraded solar panel that has been covered with a pane of reinforced " -"glass to protect the delicate solar cells from zombies or errant baseballs." -" The glass causes this panel to produce slightly less power than a normal " -"upgraded panel. Useful for a vehicle." +"This makeshift combination of springs and scrap, when attached to a vehicle " +"section, protects that section from impacts. The springs can absorb a " +"surprising amount of damage." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "solar cell" -msgid_plural "solar cells" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "storage battery case" +msgid_plural "storage battery cases" +msgstr[0] "ящик під акумуляторні батареї" +msgstr[1] "ящики під акумуляторні батареї" +msgstr[2] "ящиків під акумуляторні батареї" +msgstr[3] "ящик під акумуляторні батареї" -#. ~ Description for solar cell +#. ~ Description for storage battery case #: lang/json/GENERIC_from_json.py msgid "" -"A small electronic device that can convert solar radiation into electric " -"power. Useful for crafting." +"An empty case that can hold a storage battery. Complete with charging " +"controller chip and connecting wires." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "fancy table" -msgid_plural "fancy tables" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "tool battery mount" +msgid_plural "tool battery mounts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fancy table +#. ~ Description for tool battery mount #: lang/json/GENERIC_from_json.py msgid "" -"A very fancy table from a very fancy RV. If times were better it might be " -"useful for something more than firewood." +"An empty mount that can connect conventional batteries used in most handheld" +" tools to vehicular power grid. Complete with power converter, charging " +"controller chip, connecting wires and a harness for securing a battery." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "wooden table" -msgid_plural "wooden tables" +msgid "wood boat hull" +msgid_plural "wood boat hulls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wooden table +#. ~ Description for wood boat hull #: lang/json/GENERIC_from_json.py -msgid "A crude wooden table." +msgid "" +"A wooden board that keeps the boat afloat. Add boat hulls to a vehicle " +"until it floats. Then attach oars or a motor to get the boat to move." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py -#: lang/json/vehicle_part_from_json.py -msgid "workbench" -msgid_plural "workbenches" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "raft boat hull" +msgid_plural "raft boat hulls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for workbench -#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py +#. ~ Description for raft boat hull +#: lang/json/GENERIC_from_json.py msgid "" -"A sturdy workbench built out of metal. It is perfect for crafting large and" -" heavy things." +"Logs tied together to make a vehicle float. Add boat hulls to a vehicle " +"until it floats. Then attach oars or a motor to get the boat to move." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "turret mount" -msgid_plural "turret mounts" +msgid "plastic boat hull" +msgid_plural "plastic boat hulls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for turret mount +#. ~ Description for plastic boat hull #: lang/json/GENERIC_from_json.py -msgid "A universal mount for weapons intended to be installed as turrets." +msgid "" +"A rigid plastic sheet that keeps the boat afloat. Add boat hulls to a " +"vehicle until it floats. Then attach oars or a motor to get the boat to " +"move." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "vehicle cooler" -msgid_plural "vehicle coolers" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "carbon fiber boat hull" +msgid_plural "carbon fiber boat hulls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vehicle cooler +#. ~ Description for carbon fiber boat hull #: lang/json/GENERIC_from_json.py -msgid "A vehicle-mounted area cooler." +msgid "" +"A carbon fiber sheet that keeps the boat afloat. Add boat hulls to a " +"vehicle until it floats. Then attach oars or a motor to get the boat to " +"move." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vehicle heater" -msgid_plural "vehicle heaters" +msgid "oars" +msgid_plural "oars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vehicle heater +#. ~ Description for oars #: lang/json/GENERIC_from_json.py -msgid "A vehicle-mounted area heater." +msgid "Oars for a boat." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "towel hanger" -msgid_plural "towel hangers" +msgid "sail" +msgid_plural "sails" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for towel hanger -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "A towel hanger with towels." -msgstr "" - -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "recharging station" -msgid_plural "recharging stations" -msgstr[0] "зарядна станція" -msgstr[1] "зарядні станції" -msgstr[2] "зарядних станцій" -msgstr[3] "зарядні станції" - -#. ~ Description for recharging station +#. ~ Description for sail #: lang/json/GENERIC_from_json.py -msgid "" -"A universal recharging station designed to operate on vehicle power. While " -"on it will steadily charge all rechargeable batteries (battery cells, lead-" -"acid batteries, etc) placed directly within its storage space. The system " -"can only be installed onto existing storage compartments, and is controlled " -"from a dashboard or electronics control unit." +msgid "Sails for a boat." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "battery charger" -msgid_plural "battery chargers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Description for battery charger -#: lang/json/GENERIC_from_json.py -msgid "" -"A small device for recharging batteries, given a source of electricity. It " -"could easily be wired into a vehicle with power. It will slowly charge all " -"rechargeable batteries (battery cells, lead-acid batteries, etc) placed " -"directly within its storage space. It can only be installed onto existing " -"storage compartments." -msgstr "" - -#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py -#: lang/json/vehicle_part_from_json.py -msgid "washing machine" -msgid_plural "washing machines" +msgid "inflatable section" +msgid_plural "inflatable section" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for washing machine +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py -msgid "A very small washing machine designed for use in vehicles." +msgid "An inflatable boat section." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "programmable autopilot" -msgid_plural "programmable autopilots" +msgid "inflatable airbag" +msgid_plural "inflatable airbag" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for programmable autopilot +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py -msgid "" -"A computer system hooked up to the steering and engine of a vehicle to allow" -" it to follow simple paths." +msgid "An inflatable airbag." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mountable autoclave" -msgid_plural "mountable autoclaves" +msgid "wire basket" +msgid_plural "wire baskets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mountable autoclave +#. ~ Description for wire basket #: lang/json/GENERIC_from_json.py -msgid "This autoclave has been rigged to run off a vehicle power grid." +msgid "A large wire basket from a shopping cart." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "minifridge" -msgid_plural "minifridges" +msgid "bike rack" +msgid_plural "bike racks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for minifridge +#. ~ Description for bike rack #: lang/json/GENERIC_from_json.py msgid "" -"A very small fridge for keeping food cool. Provides some insulation from " -"outside weather." +"A collection of pipes, cams, and straps, mounted on the edge of a vehicle " +"and used to support another vehicle for transport. It must be mounted on a " +"vehicle to be used." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "minifreezer" -msgid_plural "minifreezers" +#: lang/json/GENERIC_from_json.py +msgid "cargo lock set" +msgid_plural "cargo lock sets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for minifreezer +#. ~ Description for cargo lock set #: lang/json/GENERIC_from_json.py -msgid "" -"Compact version of a chest freezer, designed as a mobile solution for " -"freezing food. Provides insulation from the elements." +msgid "A set of locks designed to be installed on a vehicle." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py -#: lang/json/vehicle_part_from_json.py -msgid "dishwasher" -msgid_plural "dishwashers" +#: lang/json/GENERIC_from_json.py +msgid "folding wire basket" +msgid_plural "folding wire baskets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for dishwasher +#. ~ Description for folding wire basket #: lang/json/GENERIC_from_json.py -msgid "A very small dishwasher designed for use in vehicles." +msgid "A large wire basket from a shopping cart, modified to be foldable." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "refrigerated tank" -msgid_plural "refrigerated tanks" +msgid "bike basket" +msgid_plural "bike baskets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for refrigerated tank +#. ~ Description for bike basket #: lang/json/GENERIC_from_json.py -msgid "" -"A 60L refrigerated tank for keeping liquids cool. Provides some insulation " -"from outside weather." +msgid "A simple bike basket. It is small and foldable." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "water faucet" -msgid_plural "water faucets" -msgstr[0] "водопровідний кран" -msgstr[1] "водопровідних крана" -msgstr[2] "водопровідних кранів" -msgstr[3] "водопровідний кран" - -#. ~ Description for water faucet #: lang/json/GENERIC_from_json.py -msgid "A metal faucet that can be attached to a water tank for easy access." -msgstr "" - -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "wooden wheel mount" -msgid_plural "wooden wheel mounts" +msgid "cargo carrier" +msgid_plural "cargo carriers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wooden wheel mount +#. ~ Description for cargo carrier #: lang/json/GENERIC_from_json.py -msgid "A piece of wood with holes suitable for a bike wheel." +msgid "" +"A heavy frame outfitted with tie-downs and attachment points for carrying " +"cargo." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "light wheel mount" -msgid_plural "light wheel mounts" +msgid "floor trunk" +msgid_plural "floor trunks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for light wheel mount -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "A piece of metal with holes suitable for a bike or motorbike wheel." +#. ~ Description for floor trunk +#: lang/json/GENERIC_from_json.py +msgid "" +"A section of flooring with a cargo-space beneath, and a hinged door for " +"access." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "medium wheel hub assembly" -msgid_plural "medium wheel hub assemblies" +msgid "livestock carrier" +msgid_plural "livestock carriers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for medium wheel hub assembly +#. ~ Description for livestock carrier #: lang/json/GENERIC_from_json.py msgid "" -"A metal assembly that allows bolting a wheel on a car. Fit for a car wheel." +"A heavy frame outfitted with tie-downs and attachment points for carrying " +"cargo, with additional railings to keep a large animal in place. It is " +"meant to hold large animals for transport. Use it on a suitable animal to " +"capture, use it on an empty tile to release." msgstr "" #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "heavy wheel hub assembly" -msgid_plural "heavy wheel hub assemblies" +msgid "mounted spare tire" +msgid_plural "mounted spare tires" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for heavy wheel hub assembly +#. ~ Description for mounted spare tire #: lang/json/GENERIC_from_json.py msgid "" -"A heavy metal assembly that allows bolting a wheel on a car. Fit for a " -"large car wheel." +"A spare tire mounted on a carrier rig, ready to be attached to the rear " +"bumper of a vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "medium steel rim" -msgid_plural "medium steel rims" +msgid "animal locker" +msgid_plural "animal lockers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for medium steel rim +#. ~ Description for animal locker #: lang/json/GENERIC_from_json.py -msgid "A medium size steel rim for a car tire." +msgid "" +"A locker used to contain animals safely during transportation if installed " +"properly. There is room for animal food and other animal care goods. It is" +" meant to hold medium or smaller animals for transport. Use it on a " +"suitable animal to capture, use it on an empty tile to release." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "steel motorbike rim" -msgid_plural "steel motorbike rims" +msgid "camera display" +msgid_plural "camera displays" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for steel motorbike rim +#. ~ Description for camera display #: lang/json/GENERIC_from_json.py -msgid "A steel rim for a motorbike tire." +msgid "A set of small monitors. Required to view cameras' output." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "wide steel rim" -msgid_plural "wide steel rims" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "security camera" +msgid_plural "security cameras" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wide steel rim +#. ~ Description for security camera #: lang/json/GENERIC_from_json.py -msgid "A wide steel rim for a larger tire." +msgid "" +"A security camera you could connect to a display. Image quality is quite " +"low, but the field of vision is great." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bicycle rim" -msgid_plural "bicycle rims" +msgid "vehicle controls" +msgid_plural "sets of vehicle controls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bicycle rim +#. ~ Description for vehicle controls #: lang/json/GENERIC_from_json.py -msgid "A large spoked rim for a bicycle tire." +msgid "A set of various vehicle controls. Useful for crafting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "17\" car tire" -msgid_plural "17\" car tires" +msgid "vehicle tracking device" +msgid_plural "vehicle tracking devices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 17" car tire +#. ~ Description for vehicle tracking device #: lang/json/GENERIC_from_json.py -msgid "A standard 17\" car tire for fitting to a medium steel rim." +msgid "" +"A vehicle tracking device. When installed on a vehicle it allows you track " +"the vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "16\" racing tire" -msgid_plural "16\" racing tires" +msgid "rein and tackle" +msgid_plural "reins and tackles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 16" racing tire +#. ~ Description for rein and tackle #: lang/json/GENERIC_from_json.py -msgid "A slick 16\" racing car tire for fitting to a medium steel rim." +msgid "A set of leather bindings to control a mountable creature." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "16\" motorbike tire" -msgid_plural "16\" motorbike tires" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "dashboard" +msgid_plural "dashboards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 16" motorbike tire +#. ~ Description for dashboard +#. ~ Description for electronics control unit #: lang/json/GENERIC_from_json.py -msgid "A 16\" motorbike tire for fitting to a steel motorbike rim." +msgid "" +"A vehicle instrument panel with various gauges and switches. Useful for " +"crafting." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "20\" off-road motorbike tire" -msgid_plural "20\" off-road motorbike tires" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "electronics control unit" +msgid_plural "electronics control units" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 20" off-road motorbike tire -#: lang/json/GENERIC_from_json.py -msgid "A 20\" off-road motorbike tire for fitting to a steel motorbike rim." -msgstr "" - -#: lang/json/GENERIC_from_json.py -msgid "24\" wide tire" -msgid_plural "24\" wide tires" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "drive by wire controls" +msgid_plural "sets of drive by wire controls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 24" wide tire +#. ~ Description for drive by wire controls #: lang/json/GENERIC_from_json.py -msgid "A wide tire for fitting to a wide steel rim." +msgid "" +"Fully electronic vehicle control system. You could control it remotely if " +"you had proper tools." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "24\" off-road wide tire" -msgid_plural "24\" off-road wide tires" +msgid "robot driving unit" +msgid_plural "robot driving units" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 24" off-road wide tire +#. ~ Description for robot driving unit #: lang/json/GENERIC_from_json.py msgid "" -"A wide tire for fitting to a wide steel rim. It's studded to provide better" -" grip off-road at the cost of some performance on pavement." +"A set of servos, microcontrollers and other devices, together capable of " +"driving an unmanned vehicle. Its AI is not functional, but it should still " +"have some sort of maintenance mode." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "27\" bicycle tire" -msgid_plural "27\" bicycle tires" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "turret control unit" +msgid_plural "turret control units" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 27" bicycle tire +#. ~ Description for turret control unit #: lang/json/GENERIC_from_json.py -msgid "A bicycle tire for fitting to a bicycle rim." +msgid "" +"A set of motor, camera, and various electronic modules banded together to " +"allow for tracking targets, friend-or-foe identification, and firing the " +"connected turret in full automatic mode." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "27\" off-road bicycle" -msgid_plural "27\" off-road bicycles" +msgid "massive engine block" +msgid_plural "massive engine blocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 27" off-road bicycle +#. ~ Description for massive engine block #: lang/json/GENERIC_from_json.py msgid "" -"A wide, studded, bicycle tire intended to be fitted to a bicycle rim for " -"off-road biking." +"The beginnings of a massive gas or diesel engine. It's not good for much of" +" anything on its own." msgstr "" +"Основа масивного бензинового чи дизельного двигуна. Сама по собі без " +"встановлення чогось вона мало на що годиться." #: lang/json/GENERIC_from_json.py -msgid "deflated 17\" wheel" -msgid_plural "deflated 17\" wheels" +msgid "large engine block" +msgid_plural "large engine blocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deflated 17" wheel +#. ~ Description for large engine block #: lang/json/GENERIC_from_json.py msgid "" -"A car wheel. It is currently deflated and will need to be inflated to be " -"used on a vehicle." +"The beginnings of a large gas or diesel engine. It's not good for much of " +"anything on its own." msgstr "" +"Основа великого бензинового чи дизельного двигуна. Сама по собі без " +"встановлення чогось вона мало на що годиться." #: lang/json/GENERIC_from_json.py -msgid "deflated 16\" racing wheel" -msgid_plural "deflated 16\" racing wheels" +msgid "medium engine block" +msgid_plural "medium engine blocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deflated 16" racing wheel +#. ~ Description for medium engine block #: lang/json/GENERIC_from_json.py msgid "" -"A wide, smooth wheel intended for racing. It is currently deflated and will" -" need to be inflated to be used on a vehicle." +"The beginnings of a medium gas or diesel engine. It's not good for much of " +"anything on its own." msgstr "" +"Основа середнього бензинового чи дизельного двигуна. Сама по собі без " +"встановлення чогось вона мало на що годиться." #: lang/json/GENERIC_from_json.py -msgid "deflated 16\" motorbike wheel" -msgid_plural "deflated 16\" motorbike wheels" +msgid "small engine block" +msgid_plural "small engine blocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deflated 16" motorbike wheel +#. ~ Description for small engine block #: lang/json/GENERIC_from_json.py msgid "" -"A motorbike wheel. It is currently deflated and will need to be inflated to" -" be used on a vehicle." +"The beginnings of a small gas or diesel engine. It's not good for much of " +"anything on its own." msgstr "" +"Основа маленького бензинового чи дизельного двигуна. Сама по собі без " +"встановлення чогось вона мало на що годиться." #: lang/json/GENERIC_from_json.py -msgid "deflated 20\" off-road motorbike wheel" -msgid_plural "deflated 20\" off-road motorbike wheels" +msgid "tiny engine block" +msgid_plural "tiny engine blocks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deflated 20" off-road motorbike wheel +#. ~ Description for tiny engine block #: lang/json/GENERIC_from_json.py msgid "" -"A motorbike wheel, studded for improved off-road performance. It is " -"currently deflated and will need to be inflated to be used on a vehicle." +"The beginnings of a tiny gas or diesel engine. It's not good for much of " +"anything on its own." msgstr "" +"Основа мініатюрного бензинового чи дизельного двигуна. Сама по собі без " +"встановлення чогось вона мало на що годиться." #: lang/json/GENERIC_from_json.py -msgid "deflated 24\" wide wheel" -msgid_plural "deflated 24\" wide wheels" +msgid "steel boom" +msgid_plural "steel booms" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deflated 24" wide wheel +#. ~ Description for steel boom #: lang/json/GENERIC_from_json.py msgid "" -"A wide wheel. \\o/ This wide. It is currently deflated and will need to be" -" inflated to be used on a vehicle." +"A large rigid steel boom. If attached to a frame it could be used to lift " +"up to 20 metric tonnes." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "deflated 24\" off-road wide wheel" -msgid_plural "deflated 24\" off-road wide wheels" +msgid "telescopic cantilever" +msgid_plural "telescopic cantilevers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deflated 24" off-road wide wheel +#. ~ Description for telescopic cantilever #: lang/json/GENERIC_from_json.py msgid "" -"A wide wheel. \\o/ This wide. It's studded to provide better grip off-road" -" at the cost of some performance on pavement. It is currently deflated and " -"will need to be inflated to be used on a vehicle." +"A small steel telescoping cantilever. If attached to a frame it could be " +"used to lift up to 3.5 metric tonnes." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "deflated 27\" bicycle wheel" -msgid_plural "deflated 27\" bicycle wheels" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "pallet lifter" +msgid_plural "pallet lifters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deflated 27" bicycle wheel +#. ~ Description for pallet lifter #: lang/json/GENERIC_from_json.py msgid "" -"A bicycle wheel. It is currently deflated and will need to be inflated to " -"be used on a vehicle." +"A makeshift pallet lifter. If attached to a frame it could be used to lift " +"up to 0.5 metric tonnes." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "deflated 27\" off-road bicycle wheel" -msgid_plural "deflated 27\" off-road bicycle wheels" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "rockwheel" +msgid_plural "rockwheels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for deflated 27" off-road bicycle wheel +#. ~ Description for rockwheel #: lang/json/GENERIC_from_json.py -msgid "" -"A wide, studded, bicycle wheel intended for off-road biking. It is " -"currently deflated and will need to be inflated to be used on a vehicle." +msgid "A large and heavy jagged metal disc to dig trenches." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Dana's family sourdough starter" -msgid_plural "Dana's family sourdough starter" +msgid "airjack" +msgid_plural "airjacks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} -#: lang/json/GENERIC_from_json.py +#. ~ Description for airjack +#. ~ Description for air jack system +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "" -"This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " -"side, and a label that reads, \"Landough Calrisean. Dana's. Do not touch " -"on pain of death\". It's been abandoned for some time and doesn't look like" -" it could be readily salvaged as a sourdough culture, but maybe an " -"experienced sourdough baker could manage it." +"An extendable metal pylon used to replace a portable jack. If mounted to a " +"vehicle, it could be used to lift it up." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "living brain in a jar" -msgid_plural "jars full of living brains" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "motorcycle kickstand" +msgid_plural "motorcycle kickstands" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for living brain in a jar -#: lang/json/GENERIC_from_json.py +#. ~ Description for motorcycle kickstand +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "" -"This jar contains a human brain kept alive by mi-go technology. It has " -"metal veined tendrils that appear to allow it to connect to various devices." +"A kickstand to keep the bike from falling over. You could use this to lean " +"it forward or backward to change a tire." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "humming heart" -msgid_plural "humming hearts" +msgid "vehicle scoop" +msgid_plural "vehicle scoops" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for humming heart +#. ~ Description for vehicle scoop #: lang/json/GENERIC_from_json.py msgid "" -"This heartlike organ has multiple valves and upon its proper removal from " -"the bioweapons corpse each valve sealed itself. It hums gently in your " -"hands, as if waiting for an appropriate receptacle." +"An assembly of motors and sheet metal that allows a vehicle to clean the " +"road surface by removing debris and contaminants." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "sensory cluster" -msgid_plural "sensory clusters" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "seed drill" +msgid_plural "seed drills" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for sensory cluster +#. ~ Description for seed drill #: lang/json/GENERIC_from_json.py msgid "" -"This lump of flesh has various lobes protruding from it that at intervals " -"will emit toned sounds. Perhaps it works via echolocation. Like all mi-go " -"bioparts the openings on this piece closed up after it was cut free and it " -"seems to have gone into a form of hibernation with the pulses occurring " -"slower and slower as it conserves energy." +"An assembly of tubes, spikes, and wheels, that when dragged along the " +"ground, allows a vehicle to plant seeds automatically in suitably tilled " +"land." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "bioweapon chassis" -msgid_plural "bioweapon chassis" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "reaper" +msgid_plural "reapers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for reaper #: lang/json/GENERIC_from_json.py msgid "" -"This cross between a sea anemone and what you imagine a dragon's mouth would" -" look like is the core body of the bioweapon. You cannot imagine what you " -"could make out of this but maybe someone somewhere does." +"An assembly of a blade, wheels, and a small lever for engaging/disengaging " +"used to cut down crops prior to picking them up." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken mi-go turret" -msgid_plural "broken mi-go turrets" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "advanced reaper" +msgid_plural "advanced reapers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken mi-go turret +#. ~ Description for advanced reaper #: lang/json/GENERIC_from_json.py msgid "" -"A broken mi-go turret. It's leaking fluids and smells you can't identify. " -"Could be butchered for parts." +"An advanced electronic device used to cut down, collect and store crops." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "25mm casing" -msgid_plural "25mm casings" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "advanced seed drill" +msgid_plural "advanced seed drills" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for 25mm casing +#. ~ Description for advanced seed drill #: lang/json/GENERIC_from_json.py -msgid "A large casing from a spent 25mm cartridge." +msgid "" +"An assembly of tubes, spikes, and wheels, that when dragged along the " +"ground, allows a vehicle to plant seeds automatically in suitably tilled " +"land. This one is equipped with an electronic control system and will avoid" +" damaging itself when used on untilled land." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken sentinel-lx" -msgid_plural "broken sentinels-lx" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "plow" +msgid_plural "plows" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken sentinel-lx +#. ~ Description for plow #: lang/json/GENERIC_from_json.py -msgid "" -"The irreparably broken remains of a Sentinel-lx. Could be gutted for " -"valuable parts." +msgid "A heavy assembly of wheels and steel blades that turn up the ground." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken bloodhound drone" -msgid_plural "broken bloodhound drones" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "foldable-light frame" +msgid_plural "foldable-light frames" +msgstr[0] "складна полегшена рама" +msgstr[1] "складні полегшені рами" +msgstr[2] "складних полегшених рам" +msgstr[3] "складна полегшена рама" -#. ~ Description for broken bloodhound drone +#. ~ Description for foldable-light frame #: lang/json/GENERIC_from_json.py -msgid "" -"This bloodhound won't be chasing anyone anymore. Could be gutted for parts." +msgid "A small foldable lightweight frame made from pipework." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken Seneschal" -msgid_plural "broken Seneschals" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "extra-light frame" +msgid_plural "extra-light frames" +msgstr[0] "полегшена рама" +msgstr[1] "полегшені рами" +msgstr[2] "полегшених рам" +msgstr[3] "полегшена рама" -#. ~ Description for broken Seneschal +#. ~ Description for extra-light frame #: lang/json/GENERIC_from_json.py -msgid "" -"A broken Seneschal, now limp and unmoving. Could be gutted for parts or " -"crafted into a salvaged robot." +msgid "A small lightweight frame made from pipework. Useful for crafting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken beehive robot" -msgid_plural "broken beehive robots" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "steel frame" +msgid_plural "steel frames" +msgstr[0] "сталева рама" +msgstr[1] "сталеві рами" +msgstr[2] "сталевих рам" +msgstr[3] "сталева рама" +#. ~ Description for steel frame #: lang/json/GENERIC_from_json.py -msgid "broken xray laser turret" -msgid_plural "broken xray laser turrets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A large frame made of steel. Useful for crafting." +msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken Likvidator" -msgid_plural "broken Likvidators" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "heavy duty frame" +msgid_plural "heavy duty frames" +msgstr[0] "зміцнена рама" +msgstr[1] "зміцнені рами" +msgstr[2] "зміцнених рам" +msgstr[3] "зміцнена рама" -#. ~ Description for broken Likvidator +#. ~ Description for heavy duty frame #: lang/json/GENERIC_from_json.py msgid "" -"A broken Likvidator, now limp and unmoving. Could be gutted for parts or " -"crafted into a salvaged robot." +"A large, reinforced steel frame, used in military vehicle construction." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "wooden frame" +msgid_plural "wooden frames" +msgstr[0] "дерев'яна рама" +msgstr[1] "дерев'яні рами" +msgstr[2] "дерев'яних рам" +msgstr[3] "дерев'яна рама" + +#. ~ Description for wooden frame #: lang/json/GENERIC_from_json.py -msgid "broken Whately turret" -msgid_plural "broken Whately turrets" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A large frame made of wood. Useful for crafting." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "foldable wooden frame" +msgid_plural "foldable wooden frames" +msgstr[0] "складна дерев'яна рама" +msgstr[1] "складні дерев'яні рами" +msgstr[2] "складних дерев'яних рам" +msgstr[3] "складна дерев'яна рама" +#. ~ Description for foldable wooden frame #: lang/json/GENERIC_from_json.py -msgid "broken Famulus" -msgid_plural "broken Famuli" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A small foldable frame made from scrap wood." +msgstr "" -#. ~ Description for broken Famulus +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "light wooden frame" +msgid_plural "light wooden frames" +msgstr[0] "легка дерев'яна рама" +msgstr[1] "легкі дерев'яні рами" +msgstr[2] "легких дерев'яних рам" +msgstr[3] "легка дерев'яна рама" + +#. ~ Description for light wooden frame #: lang/json/GENERIC_from_json.py msgid "" -"A broken Famulus, now silent and mangled. If it wasn't for the obvious " -"rivets and welding, it would look completely human. Could be stripped down " -"for parts." +"A small frame made of few pieces of wood, held together by rope. Useful for" +" crafting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken Udarnik" -msgid_plural "broken Udarniks" +msgid "car headlight" +msgid_plural "car headlights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken Udarnik +#. ~ Description for car headlight #: lang/json/GENERIC_from_json.py -msgid "" -"A broken Udarnik, now wrecked and immobile. Could be stripped down for " -"parts." +msgid "A vehicle headlight to light up the way." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken Brandspojt" -msgid_plural "broken Brandspojts" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "motorcycle headlight" +msgid_plural "motorcycle headlights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken Brandspojt +#. ~ Description for motorcycle headlight #: lang/json/GENERIC_from_json.py -msgid "" -"A broken Brandspojt, now cold and inert. Could be stripped down for parts." +msgid "A motorcycle headlight to light up the way." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken rat snatcher" -msgid_plural "broken rat snatchers" +msgid "wide-angle car headlight" +msgid_plural "wide-angle car headlights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken rat snatcher +#. ~ Description for wide-angle car headlight #: lang/json/GENERIC_from_json.py -msgid "" -"A broken rat snatcher, now harmless and inert. Could be stripped down or " -"re-crafted." +msgid "A wide-angle vehicle headlight to light up the way." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken grab-bot" -msgid_plural "broken grab-bots" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "reinforced headlight" +msgid_plural "reinforced headlights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken grab-bot +#. ~ Description for reinforced headlight #: lang/json/GENERIC_from_json.py msgid "" -"A broken grabber robot, now limp and nonthreatening. Could be stripped down" -" or re-crafted." +"A vehicle headlight with a cage built around it to protect it from damage " +"without reducing its effectiveness." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken pest hunter" -msgid_plural "broken pest hunters" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "reinforced wide-angle headlight" +msgid_plural "reinforced wide-angle headlights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken pest hunter +#. ~ Description for reinforced wide-angle headlight #: lang/json/GENERIC_from_json.py msgid "" -"A broken pest hunter, now harmless and inert. Could be gutted for parts or " -"re-crafted." +"A wide-angle vehicle headlight with a cage built around it to protect it " +"from damage without reducing its effectiveness." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken Imaginifier" -msgid_plural "broken Imaginifiers" +msgid "emergency vehicle light (red)" +msgid_plural "emergency vehicle lights (red)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken Imaginifier +#. ~ Description for emergency vehicle light (red) #: lang/json/GENERIC_from_json.py msgid "" -"A broken military humaniform, shattered and inert. While it looks nowhere " -"near human, you still feel uneasy - as if it is studying you with its eyes." -" Could be stripped for parts." +"One of the red-colored lights from the top of an emergency services vehicle." +" When turned on, the lights rotate to shine in all directions." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken Hashashiyyin" -msgid_plural "broken Hashashiyyins" +msgid "emergency vehicle light (blue)" +msgid_plural "emergency vehicle lights (blue)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken Hashashiyyin +#. ~ Description for emergency vehicle light (blue) #: lang/json/GENERIC_from_json.py msgid "" -"A broken Hashashiyyin, shattered and inert. While it looks nowhere near " -"human, you still feel uneasy - as if it is studying you with its eyes. " -"Could be stripped for parts." +"One of the blue-colored lights from the top of an emergency services " +"vehicle. When turned on, the lights rotate to shine in all directions." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken Suppressor" -msgid_plural "broken Suppressors" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "floodlight" +msgid_plural "floodlights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken Suppressor +#. ~ Description for floodlight #: lang/json/GENERIC_from_json.py -msgid "" -"A broken Suppressor, shattered and inert. Could be stripped for parts." +msgid "A large and heavy light designed to illuminate wide areas." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken floating heater" -msgid_plural "broken floating heaters" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "directed floodlight" +msgid_plural "directed floodlights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken floating heater +#. ~ Description for directed floodlight #: lang/json/GENERIC_from_json.py msgid "" -"A broken floating heater, now cold and motionless. Could be stripped down " -"or re-crafted." +"A large and heavy light designed to illuminate a wide area in a half-" +"circular cone." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken Aegis" -msgid_plural "broken Aegises" +msgid "set of hand rims" +msgid_plural "sets of hand rims" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken Aegis +#. ~ Description for set of hand rims #: lang/json/GENERIC_from_json.py -msgid "" -"A broken defense robot. Could be gutted for parts or crafted into a " -"salvaged robot." +msgid "Hand rims for use on a wheelchair." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken disarmed advanced bot" -msgid_plural "broken disarmed advanced bots" +msgid "foot crank" +msgid_plural "foot cranks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken disarmed advanced bot +#. ~ Description for foot crank #: lang/json/GENERIC_from_json.py -msgid "" -"A broken advanced robot. Its internal weapons have been removed. Could be " -"gutted for parts or crafted into a salvaged robot." +msgid "The pedal and gear assembly from a bicycle." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken advanced robot" -msgid_plural "broken advanced robots" +#: lang/json/GENERIC_from_json.py lang/json/overmap_terrain_from_json.py +#: lang/json/vehicle_part_from_json.py +msgid "wind turbine" +msgid_plural "wind turbines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken advanced robot +#. ~ Description for wind turbine #: lang/json/GENERIC_from_json.py -msgid "" -"A broken advanced robot. This one is armed with an integrated laser-" -"emitter. Could be stripped for parts." +msgid "A small turbine that can convert wind into electric power." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken Irradiant" -msgid_plural "broken Irradiants" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "large wind turbine" +msgid_plural "large wind turbines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken Irradiant +#. ~ Description for large wind turbine #: lang/json/GENERIC_from_json.py -msgid "" -"The irreparably broken remains of an Irradiant weapons platform. Its " -"mounted plasma cannon self-destructed when the robot was rendered " -"inoperable, but its remains could still be disassembled for some valuable " -"parts." +msgid "A large turbine that can convert wind into electric power." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken Isohypsa" -msgid_plural "broken Isohypsa" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "water wheel" +msgid_plural "water wheels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for water wheel #: lang/json/GENERIC_from_json.py msgid "" -"The broken shell of an Isohypsa drone coordinator. Most of its sensors and " -"AI units are charred beyond any repair." +"A water wheel. Will slowly recharge the vehicle's electrical power when " +"built over shallow moving water." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken Kabura-ya" -msgid_plural "broken Kabura-ya" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "large water wheel" +msgid_plural "large water wheels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for large water wheel #: lang/json/GENERIC_from_json.py msgid "" -"A broken Kabura-ya drone. Could be disassembled for a meager amount of " -"parts." +"A large water wheel with wooden supports. Will recharge the vehicle's " +"electrical power when built over shallow moving water." msgstr "" -#. ~ Description for broken advanced robot +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +#: lang/json/vehicle_part_from_json.py +msgid "electric motor" +msgid_plural "electric motors" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for electric motor #: lang/json/GENERIC_from_json.py -msgid "" -"A broken advanced robot. This one is armed with an integrated EMP " -"projector. Could be stripped for parts." +msgid "A powerful electric motor. Useful for crafting." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken disarmed military bot" -msgid_plural "broken disarmed military bots" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "enhanced electric motor" +msgid_plural "enhanced electric motors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken disarmed military bot -#. ~ Description for broken disarmed defense bot +#. ~ Description for enhanced electric motor #: lang/json/GENERIC_from_json.py msgid "" -"A broken defense robot. Its internal weapons have been removed. Could be " -"gutted for parts or crafted into a salvaged robot." +"A very powerful and yet lightweight electric motor. Useful for crafting." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken disarmed defense bot" -msgid_plural "broken disarmed defense bots" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "super electric motor" +msgid_plural "super electric motors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for super electric motor #: lang/json/GENERIC_from_json.py -msgid "broken surgical droid" -msgid_plural "broken surgical droids" +msgid "The most powerful electric motor on the market. Useful for crafting." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "large electric motor" +msgid_plural "large electric motors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken surgical droid +#. ~ Description for large electric motor #: lang/json/GENERIC_from_json.py -msgid "" -"A broken surgical robot, now crumpled and inert. Could be stripped down for" -" parts." +msgid "A large and very powerful electric motor. Useful for crafting." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken tribot" -msgid_plural "broken tribots" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "small electric motor" +msgid_plural "small electric motors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken tribot +#. ~ Description for small electric motor #: lang/json/GENERIC_from_json.py -msgid "" -"A broken tribot. Now that its legs lie broken and immobile, the world seems" -" a little less threatening. Could be gutted for parts." +msgid "A small electric motor. Useful for crafting." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken tank drone" -msgid_plural "broken tank drones" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "tiny electric motor" +msgid_plural "tiny electric motors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken tank drone +#. ~ Description for tiny electric motor #: lang/json/GENERIC_from_json.py -msgid "" -"A broken tank drone. Still looks intimidating despite being permanently " -"inoperative, possibly due to the sheer size and mass. Could be gutted for " -"parts." +msgid "A tiny electric motor. Useful for crafting." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken chickenbot" -msgid_plural "broken chickenbots" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "1300hp electric train engine" +msgid_plural "1300hp electric train engines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken chickenbot +#. ~ Description for 1300hp electric train engine #: lang/json/GENERIC_from_json.py -msgid "" -"A broken chicken walker. Still looks intimidating despite being permanently" -" inoperative, possibly due to the sheer size and mass. Could be gutted for " -"parts." +msgid "A 1300hp 3-phase 60 Hz electric engine. Normally used in trains." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Crypto coin" -msgid_plural "Crypto coins" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "muffler" +msgid_plural "mufflers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Crypto coin +#. ~ Description for muffler #: lang/json/GENERIC_from_json.py msgid "" -"PrepNet had been heavily involved in avoiding taxes by using untraceable " -"internet currencies. These however are physical coins with random numbers " -"sequences embossed on them and RFID chips inside." +"A muffler from a car. Very unwieldy as a weapon. Useful in a few crafting " +"recipes." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "orbital distress beacon" -msgid_plural "orbital distress beacons" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "back-up beeper" +msgid_plural "back-up beepers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for orbital distress beacon +#. ~ Description for back-up beeper #: lang/json/GENERIC_from_json.py msgid "" -"A distress radio beacon that automatically engages in the event of a crash." -" You could plant it outside of the pod to attract rescuers, or more likely," -" bandits. Alternatively, you could disassemble it for scrap." +"This is a safety device intended to warn passersby of a vehicle moving in " +"reverse, but the usage of it now seems terribly unwise." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "scrap titanium" -msgid_plural "scrap titanium" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "stereo system" +msgid_plural "stereo systems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for stereo system #: lang/json/GENERIC_from_json.py -msgid "A piece of light titanium, usable for crafting or repairs." +msgid "" +"A stereo system with speakers. It is capable of being hooked up to a " +"vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "nuclear waste" -msgid_plural "nuclear waste" +msgid "chime loudspeakers" +msgid_plural "chime loudspeakers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py -msgid "A small pellet of silvery metal, still warm to the touch." +msgid "" +"A stereo system with loudspeakers and a built-in set of simple melodies that" +" it will play. Commonly used by ice cream trucks to draw the attention of " +"children in the days when children wanted ice cream more than brains." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "nuclear fuel pellet" -msgid_plural "nuclear fuel pellets" +msgid "sheet metal" +msgid_plural "sheet metal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nuclear fuel pellet +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py -msgid "A small pellet of fissile material. Handle carefully." +msgid "A thin sheet of metal." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "hazardous waste drum" -msgid_plural "hazardous waste drums" +msgid "wired sheet metal" +msgid_plural "wired sheet metal" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hazardous waste drum +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py -msgid "A yellow drum meant for the storage of hazardous substances." +msgid "Sheet metal that has had housing for lights wired into it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "folded atomic butter churn" -msgid_plural "folded atomic butter churns" +msgid "wooden armor kit" +msgid_plural "wooden armor kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for folded atomic butter churn +#. ~ Description for wooden armor kit #: lang/json/GENERIC_from_json.py -msgid "" -"The Rivtech Churninator 4000, the only churn to be banned by 13 religious " -"sects. The legs are currently folded up for travel. Unlike a standard " -"churn that requires cream separated from raw milk this churn requires only " -"raw milk, salt and a healthy respect for glowing objects." +msgid "A bundle of planks prepared to be used as vehicle armor." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "titanium implant" -msgid_plural "titanium implants" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "steel plating" +msgid_plural "steel plating" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for titanium implant +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py -msgid "" -"An internal implant to correct a musculoskeletal problem such as a bad hip " -"or back. It is made of titanium due to its biocompatibility." +msgid "A piece of armor plating made of steel." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "titanium tooth" -msgid_plural "titanium tooths" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "superalloy plating" +msgid_plural "superalloy plating" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for titanium tooth +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py -msgid "" -"A dental implant made of pure titanium, used to replace teeth due to its " -"biocompatibility and durability." +msgid "A piece of armor plating made of sturdy superalloy." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "personal message card" -msgid_plural "personal message cards" +msgid "superalloy sheet" +msgid_plural "superalloy sheets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for personal message card +#. ~ Description for superalloy sheet #: lang/json/GENERIC_from_json.py -msgid "A creased card with images and a personal message." +msgid "" +"A sheet of sturdy superalloy; incredibly hard, yet incredibly malleable." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py -msgid "vehicle refrigerator" -msgid_plural "vehicle refrigerators" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "spiked plating" +msgid_plural "spiked plating" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vehicle refrigerator +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" -"A household refrigerator with impressive capacity. Its power connection has" -" been refurbished, and it can be mounted onto a vehicle to draw from its " -"power." +"A piece of armor plating made of steel. It is covered with menacing spikes." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py -msgid "vehicle freezer" -msgid_plural "vehicle freezers" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "hard plating" +msgid_plural "hard platings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vehicle freezer +#. ~ Description for hard plating #: lang/json/GENERIC_from_json.py -msgid "" -"This refurbished refrigerator has been stripped of much of its internal " -"components and converted to run at a much lower temperature, causing it to " -"serve as a freezer for more power. Like its predecessor, it runs on vehicle" -" power." +msgid "A piece of very thick armor plating made of steel." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "MetalMaster forge buddy" -msgid_plural "MetalMaster forge buddies" +#: lang/json/GENERIC_from_json.py +msgid "military composite plating" +msgid_plural "military composite platings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for MetalMaster forge buddy +#. ~ Description for military composite plating #: lang/json/GENERIC_from_json.py msgid "" -"From the makers of the best-selling* FOODCO kitchen buddy comes the " -"MetalMaster forge buddy, for all your metalworking, firing, and welding " -"needs! It's just as clunky and awkward as the thing it's spinning off, and " -"still requires a vehicle battery to function." +"A thick sheet of military-grade armor; best bullet-stopper you can stick on " +"a vehicle." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "KitchenMaster cooking buddy" -msgid_plural "KitchenMaster cooking buddies" +#: lang/json/GENERIC_from_json.py +msgid "chitin armor kit" +msgid_plural "chitin armor kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for KitchenMaster cooking buddy +#. ~ Description for chitin armor kit #: lang/json/GENERIC_from_json.py -msgid "" -"Because it *clearly* needed one, this large all-in-one station provides the " -"functions of FOODCO's kitchen buddy, now with complementary fume hoods and " -"chemistry materials. Why a chef would need a chemical rig is anyone's " -"guess, but you can mount it on a vehicle to make use of it." +msgid "Light chitin plating made for a vehicle." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "cooking rig" -msgid_plural "cooking rigs" +#: lang/json/GENERIC_from_json.py +msgid "biosilicified chitin armor kit" +msgid_plural "biosilicified chitin armor kits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cooking rig +#. ~ Description for biosilicified chitin armor kit #: lang/json/GENERIC_from_json.py -msgid "" -"Skillet, pot, hotplate, and chemistry set; everything you need to cook food " -"and chemicals. Includes proper fume vents and a separator, so you don't " -"contaminate your food with toxic chemicals." +msgid "Durable silica-coated chitin plating made for a vehicle." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "broken military flame robot" -msgid_plural "broken military flame robots" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "shredder" +msgid_plural "shredders" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken military flame robot +#. ~ Description for shredder #: lang/json/GENERIC_from_json.py msgid "" -"A broken military robot, shattered and inert. This one is armed with an " -"integrated flamethrower. Could be stripped for parts." +"This menacing looking attachment is meant to be powered by a vehicle's " +"engine. Upon doing so, the circular blades of this device will rotate " +"rapidly; anything in front of it is likely to be ripped to shreds. It is " +"sturdy enough to withstand multiple impacts, and is designed to detach if it" +" would take a hit that would break it." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken military robot" -msgid_plural "broken military robots" +msgid "vehicle crafting rig" +msgid_plural "vehicle crafting rigs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken military robot -#: lang/json/GENERIC_from_json.py -msgid "" -"A broken military robot, shattered and inert. This one is armed with an " -"integrated 7.62mm firearm. Could be stripped for parts." -msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "onboard chemistry lab" +msgid_plural "onboard chemistry labs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for broken military robot +#. ~ Description for onboard chemistry lab #: lang/json/GENERIC_from_json.py msgid "" -"A broken military robot, shattered and inert. This one is armed with an " -"integrated 8x40mm firearm. Could be stripped for parts." +"Assembled from a chemistry set attached to a complex wiring harness, it is " +"well suited to most any chemistry project you could imagine. Unable to " +"utilize standard batteries, it requires an external supply of electricity to" +" operate." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "tripod chassis" -msgid_plural "tripod chassis" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "FOODCO kitchen buddy" +msgid_plural "FOODCO kitchen buddies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for FOODCO kitchen buddy #: lang/json/GENERIC_from_json.py msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the tripod." +"Assembled from a set of instructions you found in an old book of DIY " +"projects, the *FOODCO kitchen buddy* claims to be *the perfect solution to " +"all your home-cooking needs!*. While it is surprisingly handy for vacuum-" +"sealing as well as dehydrating food, the cheery sales pitch neglected to " +"mention A - how awkward the damn thing is, B - That you still need a normal " +"kitchen and C - how it doesn't take batteries. You're going to have to weld" +" it to a vehicle, or something else with a supply of electricity, if you " +"want to use it. In addition to the food preservation features, it also has " +"a food processor, a water-purification system, a drawer for holding extra " +"tools, and for some insane reason, a press and die set for hand-loading " +"ammunition." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Pathfinder chassis" -msgid_plural "Pathfinder chassis" +msgid "vehicle forge rig" +msgid_plural "vehicle forge rigs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for vehicle forge rig #: lang/json/GENERIC_from_json.py msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the pathfinder." +"A forge rig made to run off a vehicle's storage battery with integrated tool" +" storage for metalworking equipment." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Regulator chassis" -msgid_plural "Regulator chassis" +msgid "vehicle kiln" +msgid_plural "vehicle kilns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for vehicle kiln #: lang/json/GENERIC_from_json.py -msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the Regulator tank." +msgid "An electric kiln made to run off a vehicle's storage battery." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Seneschal chassis" -msgid_plural "Seneschal chassis" +msgid "RV kitchen unit" +msgid_plural "RV kitchen units" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for RV kitchen unit #: lang/json/GENERIC_from_json.py msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the Seneschal." +"A vehicle mountable electric range and sink unit with integrated tool " +"storage for cooking utensils." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Likvidator chassis" -msgid_plural "Likvidator chassis" +msgid "vehicle welding rig" +msgid_plural "vehicle welding rigs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for vehicle welding rig #: lang/json/GENERIC_from_json.py msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the Likvidator." +"A welding rig made to run off a vehicle's storage battery. It has a " +"soldering iron attachment for delicate work, and a compartment to store your" +" extra tools in." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Famulus chassis" -msgid_plural "Famulus chassis" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "heavy-duty military rotors" +msgid_plural "sets of heavy-duty military rotors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for heavy-duty military rotors #: lang/json/GENERIC_from_json.py -msgid "" -"What's left when you remove all moving parts and electronics. Looking at it" -" fills you with uneasiness as the Famulus stares at you with empty eyes." +msgid "A set of four rotor blades from a military attack helicopter." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Udarnik chassis" -msgid_plural "Udarnik chassis" +msgid "small civilian helicopter rotors" +msgid_plural "sets of small civilian helicopter rotors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for small civilian helicopter rotors #: lang/json/GENERIC_from_json.py -msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the Udarnik." +msgid "A set of four rotor blades from a civilian light helicopter." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Brandspojt chassis" -msgid_plural "Brandspojt chassis" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "seat" +msgid_plural "seats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for seat #: lang/json/GENERIC_from_json.py -msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the Brandspojt." +msgid "A soft car seat made from synthetic fabric." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Surgical Droid chassis" -msgid_plural "Surgical Droid chassis" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "leather seat" +msgid_plural "leather seats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for leather seat #: lang/json/GENERIC_from_json.py -msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the Surgical Droid." +msgid "A soft car seat covered with leather." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "Aegis chassis" -msgid_plural "Aegis chassis" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "saddle" +msgid_plural "saddles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for saddle #: lang/json/GENERIC_from_json.py -msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the Aegis." +msgid "A leather-covered seat designed to be straddled." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "military robot chassis" -msgid_plural "military robot chassis" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "solar panel" +msgid_plural "solar panels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the military robot." +"Electronic device that can convert solar radiation into electric power. " +"Useful for a vehicle." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "military humaniform chassis" -msgid_plural "military humaniform chassis" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "reinforced solar panel" +msgid_plural "reinforced solar panels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for reinforced solar panel #: lang/json/GENERIC_from_json.py msgid "" -"What's left when you remove all moving parts and electronics. You still " -"feel deep down that its hollow eyes are studying you." +"A solar panel that has been covered with a pane of reinforced glass to " +"protect the delicate solar cells from zombies or errant baseballs. The " +"glass causes this panel to produce slightly less power than a normal panel." +" Useful for a vehicle." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "folded nanotech forge" -msgid_plural "folded nanotech forges" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "upgraded solar panel" +msgid_plural "upgraded solar panels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for folded nanotech forge +#. ~ Description for upgraded solar panel #: lang/json/GENERIC_from_json.py msgid "" -"Matrioshka Fabritechnics created this portable nanotech forge for when " -"expeditions are setting up a basecamp far from population centers. Once " -"deployed it can be used to craft ultratech marvels that otherwise are too " -"minute for human crafting." +"Electronic device that can convert solar radiation into electric power. " +"This panel has been upgraded to convert more sunlight into power. Useful " +"for a vehicle." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "folded diamond press" -msgid_plural "folded diamond presses" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "upgraded reinforced solar panel" +msgid_plural "upgraded reinforced solar panels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for folded diamond press +#. ~ Description for upgraded reinforced solar panel #: lang/json/GENERIC_from_json.py msgid "" -"Matrioshka Fabritechnics this device that can create pressures beyond those " -"that create diamonds. Once deployed it can be used to craft ultratech " -"marvels that require substances of singular qualities." +"An upgraded solar panel that has been covered with a pane of reinforced " +"glass to protect the delicate solar cells from zombies or errant baseballs." +" The glass causes this panel to produce slightly less power than a normal " +"upgraded panel. Useful for a vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "robot carrier" -msgid_plural "robot carriers" +msgid "solar cell" +msgid_plural "solar cells" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for robot carrier +#. ~ Description for solar cell #: lang/json/GENERIC_from_json.py msgid "" -"A heavy frame outfitted with tie-downs and attachment points for carrying " -"cargo, with additional railings to keep a large machine in place. It is " -"meant to hold large drones and robots for transport. Use it on a suitable " -"robot to capture, use it on an empty tile to release." +"A small electronic device that can convert solar radiation into electric " +"power. Useful for crafting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "hydraulic gauntlet" -msgid_plural "hydraulic gauntlets" +msgid "fancy table" +msgid_plural "fancy tables" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for hydraulic gauntlet +#. ~ Description for fancy table #: lang/json/GENERIC_from_json.py msgid "" -"A huge, heavy metal gauntlet lined with tubing and gauges. Slow and " -"unwieldy, it uses internal pressure to deliver devastating blows, but takes " -"tremendous strength to use effectively. Thanks to an internal microreactor," -" it doesn't require power of its own." +"A very fancy table from a very fancy RV. If times were better it might be " +"useful for something more than firewood." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "titanium bat" -msgid_plural "titanium bats" +msgid "wooden table" +msgid_plural "wooden tables" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for titanium bat +#. ~ Description for wooden table #: lang/json/GENERIC_from_json.py -msgid "" -"A luxury baseball bat made out of titanium that was banned from competitive " -"sport due to the increased performance that put defenders at risk." +msgid "A crude wooden table." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "trident" -msgid_plural "tridents" +#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py +#: lang/json/vehicle_part_from_json.py +msgid "workbench" +msgid_plural "workbenches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for trident -#: lang/json/GENERIC_from_json.py +#. ~ Description for workbench +#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py msgid "" -"A three pronged spear that is surface treated to be used confidently above " -"and below water." +"A sturdy workbench built out of metal. It is perfect for crafting large and" +" heavy things." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "ur-scrap" -msgid_plural "ur-scraps" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "turret mount" +msgid_plural "turret mounts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ur-scrap +#. ~ Description for turret mount #: lang/json/GENERIC_from_json.py -msgid "A small techno doodad." +msgid "A universal mount for weapons intended to be installed as turrets." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "monomeric slurry" -msgid_plural "monomeric slurry" +msgid "vehicle cooler" +msgid_plural "vehicle coolers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for vehicle cooler #: lang/json/GENERIC_from_json.py -msgid "" -"A collection of the building blocks of polymers. With this and a whole lot " -"of know-how, you can create proteins and other building blocks of life." +msgid "A vehicle-mounted area cooler." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "micellular growth medium" -msgid_plural "micellular growth mediums" +msgid "vehicle heater" +msgid_plural "vehicle heaters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for micellular growth medium +#. ~ Description for vehicle heater #: lang/json/GENERIC_from_json.py -msgid "" -"For the mixing of biomaterials that might otherwise be antithetical to one " -"another." +msgid "A vehicle-mounted area heater." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "artificial muscle fibers" -msgid_plural "artificial muscle fibers" +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for small vehicle heater #: lang/json/GENERIC_from_json.py -msgid "" -"Lab-grown or bioprinted muscle fibers; much denser and with higher " -"performance ratios than baseline human muscles." +msgid "A small vehicle-mounted area heater." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "self healing polymers" -msgid_plural "self healing polymers" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "towel hanger" +msgid_plural "towel hangers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for towel hanger +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "A towel hanger with towels." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "recharging station" +msgid_plural "recharging stations" +msgstr[0] "зарядна станція" +msgstr[1] "зарядні станції" +msgstr[2] "зарядних станцій" +msgstr[3] "зарядні станції" + +#. ~ Description for recharging station #: lang/json/GENERIC_from_json.py msgid "" -"Materials capable of taking environmental chemicals and utilizing them for " -"self-repair; be careful you don't make grey goo." +"A universal recharging station designed to operate on vehicle power. While " +"on it will steadily charge all rechargeable batteries (battery cells, lead-" +"acid batteries, etc) placed directly within its storage space. The system " +"can only be installed onto existing storage compartments, and is controlled " +"from a dashboard or electronics control unit." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "autologous totipotent tissue culture" -msgid_plural "autologous totipotent tissue cultures" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "battery charger" +msgid_plural "battery chargers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for autologous totipotent tissue culture +#. ~ Description for battery charger #: lang/json/GENERIC_from_json.py msgid "" -"Uncontaminated pure cellular matter that, with the right instructions, can " -"become just about anything." +"A small device for recharging batteries, given a source of electricity. It " +"could easily be wired into a vehicle with power. It will slowly charge all " +"rechargeable batteries (battery cells, lead-acid batteries, etc) placed " +"directly within its storage space. It can only be installed onto existing " +"storage compartments." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "scrap photonics" -msgid_plural "scrap photonics" +#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py +#: lang/json/vehicle_part_from_json.py +msgid "washing machine" +msgid_plural "washing machines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for washing machine #: lang/json/GENERIC_from_json.py -msgid "Small circuits blue and gold, transmitting signals through light." +msgid "A very small washing machine designed for use in vehicles." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "photonic circuitry" -msgid_plural "photonic circuitries" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "programmable autopilot" +msgid_plural "programmable autopilots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for photonic circuitry +#. ~ Description for programmable autopilot #: lang/json/GENERIC_from_json.py -msgid "A resplendent golden grid inlaid on dark blue substrate." +msgid "" +"A computer system hooked up to the steering and engine of a vehicle to allow" +" it to follow simple paths." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "photonic computation core" -msgid_plural "photonic computation cores" +msgid "mountable autoclave" +msgid_plural "mountable autoclaves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for photonic computation core +#. ~ Description for mountable autoclave #: lang/json/GENERIC_from_json.py -msgid "A monolithic circuit shaped as a glowing cube of crystal." +msgid "This autoclave has been rigged to run off a vehicle power grid." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "hypergeometric photonics" -msgid_plural "hypergeometric photonics" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "minifridge" +msgid_plural "minifridges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for minifridge #: lang/json/GENERIC_from_json.py msgid "" -"In your hands lies a self-contained digital universe. Its programs glowing " -"like stars fixed on computational shells infinitely layered." +"A very small fridge for keeping food cool. Provides some insulation from " +"outside weather." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "acausal logic permutator" -msgid_plural "acausal logic permutators" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "minifreezer" +msgid_plural "minifreezers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for acausal logic permutator +#. ~ Description for minifreezer #: lang/json/GENERIC_from_json.py -msgid "It has given you an answer, but you are yet to ask anything." +msgid "" +"Compact version of a chest freezer, designed as a mobile solution for " +"freezing food. Provides insulation from the elements." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "woven metamaterial sheet" -msgid_plural "woven metamaterial sheets" +#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py +#: lang/json/vehicle_part_from_json.py +msgid "dishwasher" +msgid_plural "dishwashers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for woven metamaterial sheet +#. ~ Description for dishwasher #: lang/json/GENERIC_from_json.py -msgid "" -"An intricately spun and carefully engineered sheet of iridescent fibers." +msgid "A very small dishwasher designed for use in vehicles." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "nanowire battery" -msgid_plural "nanowire batteries" +msgid "refrigerated tank" +msgid_plural "refrigerated tanks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nanowire battery +#. ~ Description for refrigerated tank #: lang/json/GENERIC_from_json.py -msgid "A small battery component with a very high energy density." +msgid "" +"A 60L refrigerated tank for keeping liquids cool. Provides some insulation " +"from outside weather." msgstr "" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "water faucet" +msgid_plural "water faucets" +msgstr[0] "водопровідний кран" +msgstr[1] "водопровідних крана" +msgstr[2] "водопровідних кранів" +msgstr[3] "водопровідний кран" + +#. ~ Description for water faucet #: lang/json/GENERIC_from_json.py -msgid "ultracapacitor" -msgid_plural "ultracapacitors" +msgid "A metal faucet that can be attached to a water tank for easy access." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "wooden wheel mount" +msgid_plural "wooden wheel mounts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ultracapacitor +#. ~ Description for wooden wheel mount #: lang/json/GENERIC_from_json.py -msgid "" -"A capacitor made from exotic compounds, capable of storing a high amount of " -"electric charge." +msgid "A piece of wood with holes suitable for a bike wheel." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "ultracapacitor array" -msgid_plural "ultracapacitor arrays" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "light wheel mount" +msgid_plural "light wheel mounts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ultracapacitor array -#: lang/json/GENERIC_from_json.py -msgid "Ultracapacitors assembled into a finely tuned energy storage array." +#. ~ Description for light wheel mount +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "A piece of metal with holes suitable for a bike or motorbike wheel." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "superconductive coil" -msgid_plural "superconductive coils" +msgid "medium wheel hub assembly" +msgid_plural "medium wheel hub assemblies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for superconductive coil +#. ~ Description for medium wheel hub assembly #: lang/json/GENERIC_from_json.py msgid "" -"Superconductive wire warped upon itself manipulates the electromagnetic " -"spectrum to store vast amounts of power." +"A metal assembly that allows bolting a wheel on a car. Fit for a car wheel." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "zero-point energy extractor" -msgid_plural "zero-point energy extractors" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "heavy wheel hub assembly" +msgid_plural "heavy wheel hub assemblies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for zero-point energy extractor +#. ~ Description for heavy wheel hub assembly #: lang/json/GENERIC_from_json.py msgid "" -"A complex grid pins space-time to the surface of the multiversal hyper-" -"torus, allowing the energies within to leak into our sliver of existence." +"A heavy metal assembly that allows bolting a wheel on a car. Fit for a " +"large car wheel." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "conductive thermoplastic" -msgid_plural "conductive thermoplastics" +msgid "medium steel rim" +msgid_plural "medium steel rims" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for conductive thermoplastic +#. ~ Description for medium steel rim #: lang/json/GENERIC_from_json.py -msgid "" -"An excellent heat conductor and electrical insulator. Conductive " -"thermoplastics were introduced to the civilian market nearly two centuries " -"ago, and have tightly integrated themselves into the modern society since " -"then." +msgid "A medium size steel rim for a car tire." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "carbon-lattice heatsink" -msgid_plural "carbon-lattice heatsinks" +msgid "steel motorbike rim" +msgid_plural "steel motorbike rims" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for carbon-lattice heatsink +#. ~ Description for steel motorbike rim #: lang/json/GENERIC_from_json.py -msgid "" -"Sections of dark, translucent, monocrystalline carbon fins, functionally " -"identical to diamond. Microscopic etches on the inside allows the flow of " -"high-pressure coolant. Crystalline carbon lattices exhibit far superior " -"thermal conductivity and deformation resistance than any other conventional " -"metals." +msgid "A steel rim for a motorbike tire." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fermionic nanoribbon" -msgid_plural "fermionic nanoribbons" +msgid "wide steel rim" +msgid_plural "wide steel rims" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fermionic nanoribbon +#. ~ Description for wide steel rim #: lang/json/GENERIC_from_json.py -msgid "" -"This delicate bundle of silvery, iridescent cables is capable of " -"transporting heat energy between its connections instantly without ever " -"heating up by itself. Even the slightest damage to the casing will " -"annihilate the ground-state quantum uniformity of the fermionic superfluid " -"matrix - Handle with care!" +msgid "A wide steel rim for a larger tire." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "maxwellian entropic chirality generator" -msgid_plural "maxwellian entropic chirality generators" +msgid "bicycle rim" +msgid_plural "bicycle rims" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for maxwellian entropic chirality generator +#. ~ Description for bicycle rim #: lang/json/GENERIC_from_json.py -msgid "" -"A nondescript square piece of metal about the size of a computer chip. One " -"side is cold to the touch, while the other is uncomfortably hot. " -"Hermetically sealed and devoid of any identifying feature, this peculiar " -"device gives off an unexplainable, sinister aura." +msgid "A large spoked rim for a bicycle tire." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "salvaged coolant system" -msgid_plural "salvaged coolant systems" +msgid "17\" car tire" +msgid_plural "17\" car tires" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for salvaged coolant system +#. ~ Description for 17" car tire #: lang/json/GENERIC_from_json.py -msgid "" -"Rusty fluid reservoirs and decomposing high-pressure tubing containing still" -" usable supercritical coolant. You could disassemble it to separate the " -"liquid coolant from the rest of the scrap." +msgid "A standard 17\" car tire for fitting to a medium steel rim." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "high quality electromagnet" -msgid_plural "high quality electromagnets" +msgid "16\" racing tire" +msgid_plural "16\" racing tires" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for high quality electromagnet +#. ~ Description for 16" racing tire #: lang/json/GENERIC_from_json.py -msgid "A sturdy, industrially crafted electromagnet." +msgid "A slick 16\" racing car tire for fitting to a medium steel rim." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cryo electromagnet" -msgid_plural "cryo electromagnets" +msgid "16\" motorbike tire" +msgid_plural "16\" motorbike tires" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cryo electromagnet +#. ~ Description for 16" motorbike tire #: lang/json/GENERIC_from_json.py -msgid "" -"A powerful super conductive electromagnet, that must be kept at very low " -"temperatures to operate." +msgid "A 16\" motorbike tire for fitting to a steel motorbike rim." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "super conductive electromagnet" -msgid_plural "super conductive electromagnets" +msgid "20\" off-road motorbike tire" +msgid_plural "20\" off-road motorbike tires" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for super conductive electromagnet +#. ~ Description for 20" off-road motorbike tire #: lang/json/GENERIC_from_json.py -msgid "A powerful electromagnet made from a room temperature superconductor." +msgid "A 20\" off-road motorbike tire for fitting to a steel motorbike rim." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "ferrofluid dynamo" -msgid_plural "ferrofluid dynamos" +msgid "24\" wide tire" +msgid_plural "24\" wide tires" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ferrofluid dynamo +#. ~ Description for 24" wide tire #: lang/json/GENERIC_from_json.py -msgid "" -"Black metallic fluid, harmonically flowing from one fractal shape to the " -"next." +msgid "A wide tire for fitting to a wide steel rim." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "composite alloy" -msgid_plural "composite alloys" +msgid "24\" off-road wide tire" +msgid_plural "24\" off-road wide tires" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for composite alloy +#. ~ Description for 24" off-road wide tire #: lang/json/GENERIC_from_json.py -msgid "Miscellaneous scrap pieces made from a composite alloy." +msgid "" +"A wide tire for fitting to a wide steel rim. It's studded to provide better" +" grip off-road at the cost of some performance on pavement." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vacuum cast carbide" -msgid_plural "vacuum cast carbides" +msgid "27\" bicycle tire" +msgid_plural "27\" bicycle tires" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vacuum cast carbide +#. ~ Description for 27" bicycle tire #: lang/json/GENERIC_from_json.py -msgid "Malleable carbide cast by forges on high earth orbit." +msgid "A bicycle tire for fitting to a bicycle rim." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "nanoprinted alloy" -msgid_plural "nanoprinted alloys" +msgid "27\" off-road bicycle" +msgid_plural "27\" off-road bicycles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for nanoprinted alloy +#. ~ Description for 27" off-road bicycle #: lang/json/GENERIC_from_json.py msgid "" -"A meta material fabricated by precisely layering different elements at an " -"atomic scale." +"A wide, studded, bicycle tire intended to be fitted to a bicycle rim for " +"off-road biking." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "crystal forged neutrite" -msgid_plural "crystal forged neutrites" +msgid "deflated 17\" wheel" +msgid_plural "deflated 17\" wheels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for crystal forged neutrite +#. ~ Description for deflated 17" wheel #: lang/json/GENERIC_from_json.py msgid "" -"Great forges within the Earth's core wrought hydrogen into flaming metal and" -" poured it within lattices of super conductive lanthanum. Locked in " -"magnetic equilibrium, it was left to cool into a dark unbreakable metal" +"A car wheel. It is currently deflated and will need to be inflated to be " +"used on a vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "phase uneven matter" -msgid_plural "phase uneven matters" +msgid "deflated 16\" racing wheel" +msgid_plural "deflated 16\" racing wheels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for phase uneven matter +#. ~ Description for deflated 16" racing wheel #: lang/json/GENERIC_from_json.py -msgid "Matter condensed from the liminal spaces between dimensions." +msgid "" +"A wide, smooth wheel intended for racing. It is currently deflated and will" +" need to be inflated to be used on a vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "peripheral electrode" -msgid_plural "peripheral electrodes" +msgid "deflated 16\" motorbike wheel" +msgid_plural "deflated 16\" motorbike wheels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for peripheral electrode +#. ~ Description for deflated 16" motorbike wheel #: lang/json/GENERIC_from_json.py msgid "" -"A thin strand of wire and a clamp, meant to be spliced into the smaller " -"nerves of the human body." +"A motorbike wheel. It is currently deflated and will need to be inflated to" +" be used on a vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "neural electrode" -msgid_plural "neural electrodes" +msgid "deflated 20\" off-road motorbike wheel" +msgid_plural "deflated 20\" off-road motorbike wheels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for neural electrode +#. ~ Description for deflated 20" off-road motorbike wheel #: lang/json/GENERIC_from_json.py msgid "" -"A small array of metallic needles allows complex communication between " -"machine and human mind." +"A motorbike wheel, studded for improved off-road performance. It is " +"currently deflated and will need to be inflated to be used on a vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "brain implant prod" -msgid_plural "brain implant prods" +msgid "deflated 24\" wide wheel" +msgid_plural "deflated 24\" wide wheels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for brain implant prod +#. ~ Description for deflated 24" wide wheel #: lang/json/GENERIC_from_json.py msgid "" -"A complexly etched rod of metal interfaces with the corpus callosum of the " -"patient, granting increased control of bionic functions." +"A wide wheel. \\o/ This wide. It is currently deflated and will need to be" +" inflated to be used on a vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "artificial neural tissue" -msgid_plural "artificial neural tissues" +msgid "deflated 24\" off-road wide wheel" +msgid_plural "deflated 24\" off-road wide wheels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for artificial neural tissue +#. ~ Description for deflated 24" off-road wide wheel #: lang/json/GENERIC_from_json.py msgid "" -"Photonic axons process thought at speeds far surpassing primitive, chemical-" -"driven communication." +"A wide wheel. \\o/ This wide. It's studded to provide better grip off-road" +" at the cost of some performance on pavement. It is currently deflated and " +"will need to be inflated to be used on a vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "neurosynaptic interface matrix" -msgid_plural "neurosynaptic interface matrices" +msgid "deflated 27\" bicycle wheel" +msgid_plural "deflated 27\" bicycle wheels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for neurosynaptic interface matrix +#. ~ Description for deflated 27" bicycle wheel #: lang/json/GENERIC_from_json.py msgid "" -"A membrane of artificial neurons envelops the cerebral cortex, melding " -"machine and human intellect into a gestalt much greater than its individual " -"parts." +"A bicycle wheel. It is currently deflated and will need to be inflated to " +"be used on a vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "laser optics" -msgid_plural "laser optics" +msgid "deflated 27\" off-road bicycle wheel" +msgid_plural "deflated 27\" off-road bicycle wheels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for deflated 27" off-road bicycle wheel #: lang/json/GENERIC_from_json.py msgid "" -"Lenses, mirrors, emitters and other optical elements that once belonged to a" -" weapon, industrial cutter or laser research setup." +"A wide, studded, bicycle wheel intended for off-road biking. It is " +"currently deflated and will need to be inflated to be used on a vehicle." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "metamaterial lens" -msgid_plural "metamaterial lenses" +msgid "Dana's family sourdough starter" +msgid_plural "Dana's family sourdough starter" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for metamaterial lens +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" -"A diminute sphere of crystal and metal, magnetically affixed to the centroid" -" of its containing chamber." +"This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " +"side, and a label that reads, \"Landough Calrisean. Dana's. Do not touch " +"on pain of death\". It's been abandoned for some time and doesn't look like" +" it could be readily salvaged as a sourdough culture, but maybe an " +"experienced sourdough baker could manage it." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "ultralight frame" -msgid_plural "ultralight frames" +#: lang/json/GENERIC_from_json.py +msgid "living brain in a jar" +msgid_plural "jars full of living brains" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ultralight frame +#. ~ Description for living brain in a jar #: lang/json/GENERIC_from_json.py -msgid "A sturdy, lightweight frame made from titanium. Useful for crafting." +msgid "" +"This jar contains a human brain kept alive by mi-go technology. It has " +"metal veined tendrils that appear to allow it to connect to various devices." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "ultralight foldable frame" -msgid_plural "ultralight foldable frames" +#: lang/json/GENERIC_from_json.py +msgid "humming heart" +msgid_plural "humming hearts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for ultralight foldable frame +#. ~ Description for humming heart #: lang/json/GENERIC_from_json.py -msgid "A sturdy, lightweight foldable frame made from titanium." -msgstr "" - -#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py -#: lang/json/vehicle_part_from_json.py -msgid "control station" -msgid_plural "control stations" +msgid "" +"This heartlike organ has multiple valves and upon its proper removal from " +"the bioweapons corpse each valve sealed itself. It hums gently in your " +"hands, as if waiting for an appropriate receptacle." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "sensory cluster" +msgid_plural "sensory clusters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for control station +#. ~ Description for sensory cluster #: lang/json/GENERIC_from_json.py msgid "" -"A large and complex piloting station from a military vehicle, including a " -"camera station, steering tools, and electronics controls." +"This lump of flesh has various lobes protruding from it that at intervals " +"will emit toned sounds. Perhaps it works via echolocation. Like all mi-go " +"bioparts the openings on this piece closed up after it was cut free and it " +"seems to have gone into a form of hibernation with the pulses occurring " +"slower and slower as it conserves energy." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "quantum solar panel" -msgid_plural "quantum solar panels" +#: lang/json/GENERIC_from_json.py +msgid "bioweapon chassis" +msgid_plural "bioweapon chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for quantum solar panel +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" -"This solar panel is obviously cutting-edge technology and given where you " -"found it, should probably provide a LOT of power. It's covered in strange-" -"looking material, but the covering looks rather fragile; it doesn't look " -"like it could support a reinforcing sheet, either." +"This cross between a sea anemone and what you imagine a dragon's mouth would" +" look like is the core body of the bioweapon. You cannot imagine what you " +"could make out of this but maybe someone somewhere does." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vehicle shelving" -msgid_plural "vehicle shelvings" +msgid "broken mi-go turret" +msgid_plural "broken mi-go turrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vehicle shelving +#. ~ Description for broken mi-go turret #: lang/json/GENERIC_from_json.py msgid "" -"Several heavy frames retrofitted to be installed together which are " -"outfitted with tie-downs and attachment points gallore for carrying an " -"extended amount of cargo." +"A broken mi-go turret. It's leaking fluids and smells you can't identify. " +"Could be butchered for parts." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "solar array" -msgid_plural "solar arrays" +#: lang/json/GENERIC_from_json.py +msgid "25mm casing" +msgid_plural "25mm casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for solar array -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "" -"A vertical array of three solar panels set on a chassis rising above one " -"another on a metal pole with rudimentary tracking and motors. Due to the " -"flimsy nature of the hydraulics and high surface area profile to maximize " -"sunlight, they can't really be installed onto an existing vehicle. Requires" -" a jumper cable or similar to pull power from." +#. ~ Description for 25mm casing +#: lang/json/GENERIC_from_json.py +msgid "A large casing from a spent 25mm cartridge." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "reinforced solar array" -msgid_plural "reinforced solar arrays" +#: lang/json/GENERIC_from_json.py +msgid "broken sentinel-lx" +msgid_plural "broken sentinels-lx" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for reinforced solar array -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +#. ~ Description for broken sentinel-lx +#: lang/json/GENERIC_from_json.py msgid "" -"A vertical array of three reinforced solar panels set on a chassis rising " -"above one another on a metal pole with rudimentary tracking and motors. Due" -" to the flimsy nature of the hydraulics and high surface area profile to " -"maximize sunlight, they can't really be installed onto an existing vehicle." -" Requires a jumper cable or similar to pull power from." +"The irreparably broken remains of a Sentinel-lx. Could be gutted for " +"valuable parts." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "upgraded solar array" -msgid_plural "upgraded solar arrays" +#: lang/json/GENERIC_from_json.py +msgid "broken bloodhound drone" +msgid_plural "broken bloodhound drones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for upgraded solar array -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +#. ~ Description for broken bloodhound drone +#: lang/json/GENERIC_from_json.py msgid "" -"A vertical array of three upgraded solar panels set on a chassis rising " -"above one another on a metal pole with rudimentary tracking and motors. Due" -" to the flimsy nature of the hydraulics and high surface area profile to " -"maximize sunlight, they can't really be installed onto an existing vehicle." -" Requires a jumper cable or similar to pull power from." +"This bloodhound won't be chasing anyone anymore. Could be gutted for parts." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "upgraded reinforced solar array" -msgid_plural "upgraded reinforced solar arrays" +#: lang/json/GENERIC_from_json.py +msgid "broken Seneschal" +msgid_plural "broken Seneschals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for upgraded reinforced solar array -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +#. ~ Description for broken Seneschal +#: lang/json/GENERIC_from_json.py msgid "" -"A vertical array of three upgraded reinforced solar panels set on a chassis " -"rising above one another on a metal pole with rudimentary tracking and " -"motors. Due to the flimsy nature of the hydraulics and high surface area " -"profile to maximize sunlight, they can't really be installed onto an " -"existing vehicle. Requires a jumper cable or similar to pull power from." +"A broken Seneschal, now limp and unmoving. Could be gutted for parts or " +"crafted into a salvaged robot." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "withered plant bundle" -msgid_plural "withered plant bundles" -msgstr[0] "пучок зів'ялих рослин" -msgstr[1] "пучки зів'ялих рослин" -msgstr[2] "пучків зів'ялих рослин" -msgstr[3] "пучок зів'ялих рослин" - -#. ~ Description for withered plant bundle -#: lang/json/GENERIC_from_json.py -msgid "A bundle of plant matter" -msgstr "" +msgid "broken beehive robot" +msgid_plural "broken beehive robots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "CRIT hatchet" -msgid_plural "CRIT hatchets" +msgid "broken xray laser turret" +msgid_plural "broken xray laser turrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for CRIT hatchet. #: lang/json/GENERIC_from_json.py -msgid "You extend your hatchet" -msgstr "" +msgid "broken Likvidator" +msgid_plural "broken Likvidators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for CRIT hatchet +#. ~ Description for broken Likvidator #: lang/json/GENERIC_from_json.py msgid "" -"An incredibly sharp, heavy duty, one-handed hatchet. Makes a great melee " -"weapon, and is useful both for chopping things and for use as a hammer when " -"extended." +"A broken Likvidator, now limp and unmoving. Could be gutted for parts or " +"crafted into a salvaged robot." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "CRIT axe" -msgid_plural "CRIT axes" +msgid "broken Whately turret" +msgid_plural "broken Whately turrets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for CRIT axe. #: lang/json/GENERIC_from_json.py -msgid "You collapse your axe" -msgstr "" +msgid "broken Famulus" +msgid_plural "broken Famuli" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for CRIT axe +#. ~ Description for broken Famulus #: lang/json/GENERIC_from_json.py msgid "" -"An incredibly sharp, heavy duty, full length axe. Makes a heavy-hitting " -"melee weapon, and is useful both for chopping things and for use as a hammer" -" when extended." +"A broken Famulus, now silent and mangled. If it wasn't for the obvious " +"rivets and welding, it would look completely human. Could be stripped down " +"for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "CRIT Blade-work manual" -msgid_plural "CRIT Blade-work manuals" +msgid "broken Udarnik" +msgid_plural "broken Udarniks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT Blade-work manual +#. ~ Description for broken Udarnik #: lang/json/GENERIC_from_json.py -msgid "An advanced military manual on CRIT Blade-work." +msgid "" +"A broken Udarnik, now wrecked and immobile. Could be stripped down for " +"parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "C.R.I.T Enforcement manual" -msgid_plural "C.R.I.T Enforcement manuals" +msgid "broken Brandspojt" +msgid_plural "broken Brandspojts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for C.R.I.T Enforcement manual +#. ~ Description for broken Brandspojt #: lang/json/GENERIC_from_json.py -msgid "An advanced military manual on C.R.I.T Enforcer melee." +msgid "" +"A broken Brandspojt, now cold and inert. Could be stripped down for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "CRIT CQB manual" -msgid_plural "CRIT CQB manuals" +msgid "broken rat snatcher" +msgid_plural "broken rat snatchers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for CRIT CQB manual +#. ~ Description for broken rat snatcher #: lang/json/GENERIC_from_json.py -msgid "An advanced military manual on CRIT general CQB." +msgid "" +"A broken rat snatcher, now harmless and inert. Could be stripped down or " +"re-crafted." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "burnt out Louisville Slaughterer" -msgid_plural "burnt out Louisville Slaughterers" +msgid "broken grab-bot" +msgid_plural "broken grab-bots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for burnt out Louisville Slaughterer +#. ~ Description for broken grab-bot #: lang/json/GENERIC_from_json.py msgid "" -"A sturdy wood bat, wrapped in flame-resistant Nomex fabric. Makes a good " -"melee weapon but better be disassembled to recycle the baseball bat and some" -" Nomex patches." +"A broken grabber robot, now limp and nonthreatening. Could be stripped down" +" or re-crafted." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "alien electronic scrap" -msgid_plural "alien electronic scraps" +msgid "broken pest hunter" +msgid_plural "broken pest hunters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for alien electronic scrap +#. ~ Description for broken pest hunter #: lang/json/GENERIC_from_json.py msgid "" -"A collection of dazzling alien electronics, far beyond anything of " -"terrestrial manufacture. Useful in crafting." +"A broken pest hunter, now harmless and inert. Could be gutted for parts or " +"re-crafted." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "alien biotech" -msgid_plural "alien biotechs" +msgid "broken Imaginifier" +msgid_plural "broken Imaginifiers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for alien biotech +#. ~ Description for broken Imaginifier #: lang/json/GENERIC_from_json.py msgid "" -"A fistfull of gently squirming parts that secrete viscous gel. Useful in " -"crafting, but not fun to hold." +"A broken military humaniform, shattered and inert. While it looks nowhere " +"near human, you still feel uneasy - as if it is studying you with its eyes." +" Could be stripped for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "alien power cell" -msgid_plural "alien power cells" +msgid "broken Hashashiyyin" +msgid_plural "broken Hashashiyyins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for alien power cell +#. ~ Description for broken Hashashiyyin #: lang/json/GENERIC_from_json.py msgid "" -"A fist-sized, cylindrical canister that makes you feel a bit tingly when you" -" hold it. Its center houses a faintly glowing red core of some sort. " -"Though fundamentally incompatible with earthly technologies, it still might " -"be useful in crafting." +"A broken Hashashiyyin, shattered and inert. While it looks nowhere near " +"human, you still feel uneasy - as if it is studying you with its eyes. " +"Could be stripped for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken emissary" -msgid_plural "broken emissaries" +msgid "broken Suppressor" +msgid_plural "broken Suppressors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken emissary +#. ~ Description for broken Suppressor #: lang/json/GENERIC_from_json.py msgid "" -"The massive body of a collapsed emissary. Still a bit intimidating, perhaps" -" knowing the damage it can cause. Could be gutted for parts, but you'll " -"probably need specialized alien tools." +"A broken Suppressor, shattered and inert. Could be stripped for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken emissary of plague" -msgid_plural "broken emissaries of plague" +msgid "broken floating heater" +msgid_plural "broken floating heaters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken emissary of plague +#. ~ Description for broken floating heater #: lang/json/GENERIC_from_json.py msgid "" -"The massive body of a collapsed emissary of plague. Still a bit " -"intimidating, perhaps knowing the damage it can cause. Could be gutted for " -"parts, but you'll probably need specialized alien tools." +"A broken floating heater, now cold and motionless. Could be stripped down " +"or re-crafted." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken emissary of flame" -msgid_plural "broken emissaries of flame" +msgid "broken Aegis" +msgid_plural "broken Aegises" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken emissary of flame +#. ~ Description for broken Aegis #: lang/json/GENERIC_from_json.py msgid "" -"The massive body of a collapsed emissary of flame. Still a bit " -"intimidating, perhaps knowing the damage it can cause. Could be gutted for " -"parts, but you'll probably need specialized alien tools." +"A broken defense robot. Could be gutted for parts or crafted into a " +"salvaged robot." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken surveillance drone" -msgid_plural "broken surveillance drones" +msgid "broken disarmed advanced bot" +msgid_plural "broken disarmed advanced bots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken surveillance drone +#. ~ Description for broken disarmed advanced bot #: lang/json/GENERIC_from_json.py msgid "" -"A broken drone. Much less threatening now that it isn't shining its light " -"everywhere. Could be gutted for parts. Specialized alien tools would be " -"best for disassembly, but you could make do with more human instruments " -"instead." +"A broken advanced robot. Its internal weapons have been removed. Could be " +"gutted for parts or crafted into a salvaged robot." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken seeker drone" -msgid_plural "broken seeker drones" +msgid "broken advanced robot" +msgid_plural "broken advanced robots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken seeker drone +#. ~ Description for broken advanced robot #: lang/json/GENERIC_from_json.py msgid "" -"A broken drone. Much less threatening now that it isn't prodding you. " -"Specialized alien tools would be best for disassembly, but you could make do" -" with more human instruments instead." +"A broken advanced robot. This one is armed with an integrated laser-" +"emitter. Could be stripped for parts." msgstr "" -#. ~ Description for toilet brush +#: lang/json/GENERIC_from_json.py +msgid "broken Irradiant" +msgid_plural "broken Irradiants" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for broken Irradiant #: lang/json/GENERIC_from_json.py msgid "" -"The aliens that have invaded Earth cannot be intimidated or humiliated - at " -"least not meaningfully - so this stiff brush is only useful for scouring " -"toilet bowls." +"The irreparably broken remains of an Irradiant weapons platform. Its " +"mounted plasma cannon self-destructed when the robot was rendered " +"inoperable, but its remains could still be disassembled for some valuable " +"parts." msgstr "" -#. ~ Description for basketball #: lang/json/GENERIC_from_json.py -msgid "A high-quality indoor basketball. You could throw it at your enemies." -msgstr "" +msgid "broken Isohypsa" +msgid_plural "broken Isohypsa" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for newspaper page +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" -"A single sheet of newspaper broadsheet. Most of the information on there is" -" terribly trivial, or out of date, but one thing catches your eye briefly - " -"some things from before the Cataclysm, and some even after." +"The broken shell of an Isohypsa drone coordinator. Most of its sensors and " +"AI units are charred beyond any repair." msgstr "" -#. ~ Description for reinforced solar panel +#: lang/json/GENERIC_from_json.py +msgid "broken Kabura-ya" +msgid_plural "broken Kabura-ya" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" -"A solar panel that has been covered with a pane of reinforced glass to " -"protect the delicate solar cells from aliens or errant baseballs. The glass" -" causes this panel to produce slightly less power than a normal panel. " -"Useful for a vehicle." +"A broken Kabura-ya drone. Could be disassembled for a meager amount of " +"parts." msgstr "" -#. ~ Description for upgraded reinforced solar panel +#. ~ Description for broken advanced robot #: lang/json/GENERIC_from_json.py msgid "" -"An upgraded solar panel that has been covered with a pane of reinforced " -"glass to protect the delicate solar cells from aliens or errant baseballs. " -"The glass causes this panel to produce slightly less power than a normal " -"upgraded panel. Useful for a vehicle." +"A broken advanced robot. This one is armed with an integrated EMP " +"projector. Could be stripped for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "PRELIMINARY REPORT: IMMERSION-30D" -msgid_plural "PRELIMINARY REPORT: IMMERSION-30Ds" +msgid "broken disarmed military bot" +msgid_plural "broken disarmed military bots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for broken disarmed military bot +#. ~ Description for broken disarmed defense bot #: lang/json/GENERIC_from_json.py -msgid "tiny pistol casing" -msgid_plural "tiny pistol casings" +msgid "" +"A broken defense robot. Its internal weapons have been removed. Could be " +"gutted for parts or crafted into a salvaged robot." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "broken disarmed defense bot" +msgid_plural "broken disarmed defense bots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for tiny pistol casing -#: lang/json/GENERIC_from_json.py -msgid "An empty casing from a tiny pistol round." -msgstr "" - #: lang/json/GENERIC_from_json.py -msgid "pistol casing" -msgid_plural "pistol casings" +msgid "broken surgical droid" +msgid_plural "broken surgical droids" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for pistol casing +#. ~ Description for broken surgical droid #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a standard pistol round." +msgid "" +"A broken surgical robot, now crumpled and inert. Could be stripped down for" +" parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "magnum pistol casing" -msgid_plural "magnum pistol casings" +msgid "broken tribot" +msgid_plural "broken tribots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magnum pistol casing +#. ~ Description for broken tribot #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a magnum pistol round." +msgid "" +"A broken tribot. Now that its legs lie broken and immobile, the world seems" +" a little less threatening. Could be gutted for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "rifle casing" -msgid_plural "rifle casings" +msgid "broken tank drone" +msgid_plural "broken tank drones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for rifle casing +#. ~ Description for broken tank drone #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a rifle round." +msgid "" +"A broken tank drone. Still looks intimidating despite being permanently " +"inoperative, possibly due to the sheer size and mass. Could be gutted for " +"parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "huge rifle casing" -msgid_plural "huge rifle casings" +msgid "broken chickenbot" +msgid_plural "broken chickenbots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for huge rifle casing +#. ~ Description for broken chickenbot #: lang/json/GENERIC_from_json.py -msgid "An empty casing from a huge rifle round." +msgid "" +"A broken chicken walker. Still looks intimidating despite being permanently" +" inoperative, possibly due to the sheer size and mass. Could be gutted for " +"parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "shotshell hull" -msgid_plural "shotshell hulls" +msgid "Crypto coin" +msgid_plural "Crypto coins" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for shotshell hull +#. ~ Description for Crypto coin #: lang/json/GENERIC_from_json.py msgid "" -"A shotshell's casing, a plastic tube with a brass casehead, commonly " -"referred to as a hull." +"PrepNet had been heavily involved in avoiding taxes by using untraceable " +"internet currencies. These however are physical coins with random numbers " +"sequences embossed on them and RFID chips inside." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "grenade casing" -msgid_plural "grenade casings" +msgid "orbital distress beacon" +msgid_plural "orbital distress beacons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for grenade casing +#. ~ Description for orbital distress beacon #: lang/json/GENERIC_from_json.py -msgid "A large casing from a grenade round." +msgid "" +"A distress radio beacon that automatically engages in the event of a crash." +" You could plant it outside of the pod to attract rescuers, or more likely," +" bandits. Alternatively, you could disassemble it for scrap." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "rifle belt linkage" -msgid_plural "rifle belt linkages" +msgid "scrap titanium" +msgid_plural "scrap titanium" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py -msgid "grenade belt linkage" -msgid_plural "grenade belt linkages" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A piece of light titanium, usable for crafting or repairs." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "heavy machinegun belt linkage" -msgid_plural "heavy machinegun belt linkages" +msgid "nuclear waste" +msgid_plural "nuclear waste" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py -msgid "broken CROWS II" -msgid_plural "broken CROWS II" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A small pellet of silvery metal, still warm to the touch." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken CROWS II Heavy" -msgid_plural "broken CROWS II Heavy" +msgid "nuclear fuel pellet" +msgid_plural "nuclear fuel pellets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for nuclear fuel pellet #: lang/json/GENERIC_from_json.py -msgid "broken launcher TALON UGV" -msgid_plural "broken launcher TALON UGVs" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A small pellet of fissile material. Handle carefully." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken rifle TALON UGV" -msgid_plural "broken rifle TALON UGVs" +msgid "hazardous waste drum" +msgid_plural "hazardous waste drums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for hazardous waste drum #: lang/json/GENERIC_from_json.py -msgid "artificer's toolkit" -msgid_plural "artificer's toolkits" +msgid "A yellow drum meant for the storage of hazardous substances." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "folded atomic butter churn" +msgid_plural "folded atomic butter churns" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for artificer's toolkit +#. ~ Description for folded atomic butter churn #: lang/json/GENERIC_from_json.py msgid "" -"This is a magical device that can take the shape of many tools. When not in" -" use it looks like a simple screwdriver." +"The Rivtech Churninator 4000, the only churn to be banned by 13 religious " +"sects. The legs are currently folded up for travel. Unlike a standard " +"churn that requires cream separated from raw milk this churn requires only " +"raw milk, salt and a healthy respect for glowing objects." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "stone shell" -msgid_plural "stone shells" +msgid "titanium implant" +msgid_plural "titanium implants" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for stone shell +#. ~ Description for titanium implant #: lang/json/GENERIC_from_json.py 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." +"An internal implant to correct a musculoskeletal problem such as a bad hip " +"or back. It is made of titanium due to its biocompatibility." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "glow dust" -msgid_plural "glow dusts" +msgid "titanium tooth" +msgid_plural "titanium tooths" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for glow dust +#. ~ Description for titanium tooth #: lang/json/GENERIC_from_json.py msgid "" -"The powdered remains of a will-o-wisps's physical form. It seems to still " -"possess an otherworldly glow." +"A dental implant made of pure titanium, used to replace teeth due to its " +"biocompatibility and durability." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "magical reading light" -msgid_plural "magical reading lights" +msgid "personal message card" +msgid_plural "personal message cards" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magical reading light +#. ~ Description for personal message card #: lang/json/GENERIC_from_json.py -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." +msgid "A creased card with images and a personal message." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "magical reading light (covered)" -msgid_plural "magical reading lights (covered)" +#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py +msgid "vehicle refrigerator" +msgid_plural "vehicle refrigerators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magical reading light (covered) +#. ~ Description for vehicle refrigerator #: lang/json/GENERIC_from_json.py 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." +"A household refrigerator with impressive capacity. Its power connection has" +" been refurbished, and it can be mounted onto a vehicle to draw from its " +"power." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "bulette plate" -msgid_plural "bulette plates" +#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py +msgid "vehicle freezer" +msgid_plural "vehicle freezers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bulette plate +#. ~ Description for vehicle freezer #: lang/json/GENERIC_from_json.py msgid "" -"The great plates from behind a bulette's head have always been prized for " -"use in shield and armor making." +"This refurbished refrigerator has been stripped of much of its internal " +"components and converted to run at a much lower temperature, causing it to " +"serve as a freezer for more power. Like its predecessor, it runs on vehicle" +" power." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "bulette pearl" -msgid_plural "bulette pearls" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "MetalMaster forge buddy" +msgid_plural "MetalMaster forge buddies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bulette pearl +#. ~ Description for MetalMaster forge buddy #: lang/json/GENERIC_from_json.py 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." +"From the makers of the best-selling* FOODCO kitchen buddy comes the " +"MetalMaster forge buddy, for all your metalworking, firing, and welding " +"needs! It's just as clunky and awkward as the thing it's spinning off, and " +"still requires a vehicle battery to function." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "stirge proboscis" -msgid_plural "stirge proboscises" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "KitchenMaster cooking buddy" +msgid_plural "KitchenMaster cooking buddies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for stirge proboscis +#. ~ Description for KitchenMaster cooking buddy #: lang/json/GENERIC_from_json.py msgid "" -"A long sucking apparatus harvested from stirge corpse. Makes a poor melee " -"weapon." +"Because it *clearly* needed one, this large all-in-one station provides the " +"functions of FOODCO's kitchen buddy, now with complementary fume hoods and " +"chemistry materials. Why a chef would need a chemical rig is anyone's " +"guess, but you can mount it on a vehicle to make use of it." msgstr "" -#: lang/json/GENERIC_from_json.py -msgid "chunk of demon chitin" -msgid_plural "chunks of demon chitin" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "cooking rig" +msgid_plural "cooking rigs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for chunk of demon chitin +#. ~ Description for cooking rig #: lang/json/GENERIC_from_json.py msgid "" -"A piece of demon spider exoskeleton. It is light and very durable, and " -"probably has some magical properties." +"Skillet, pot, hotplate, and chemistry set; everything you need to cook food " +"and chemicals. Includes proper fume vents and a separator, so you don't " +"contaminate your food with toxic chemicals." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bundle of demon chitin chunks" -msgid_plural "bundles of demon chitin chunks" +msgid "broken military flame robot" +msgid_plural "broken military flame robots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bundle of demon chitin chunks +#. ~ Description for broken military flame robot #: lang/json/GENERIC_from_json.py msgid "" -"Pieces of demon spider exoskeleton, bundled tightly together for storage. " -"Disassemble to unpack." +"A broken military robot, shattered and inert. This one is armed with an " +"integrated flamethrower. Could be stripped for parts." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "demon chitin plate" -msgid_plural "demon chitin plates" +msgid "broken military robot" +msgid_plural "broken military robots" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for demon chitin plate +#. ~ Description for broken military robot #: lang/json/GENERIC_from_json.py 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." +"A broken military robot, shattered and inert. This one is armed with an " +"integrated 7.62mm firearm. Could be stripped for parts." msgstr "" +#. ~ Description for broken military robot #: lang/json/GENERIC_from_json.py -msgid "demon spider fang" -msgid_plural "demon spider fangs" +msgid "" +"A broken military robot, shattered and inert. This one is armed with an " +"integrated 8x40mm firearm. Could be stripped for parts." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "tripod chassis" +msgid_plural "tripod chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for demon spider fang +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py 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?" +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the tripod." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mana dust" -msgid_plural "mana dusts" +msgid "Pathfinder chassis" +msgid_plural "Pathfinder chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mana dust +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" -"Crystalized mana in powdered form. It faintly pulses with arcane energy." +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the pathfinder." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mana pearl" -msgid_plural "mana pearls" +msgid "Regulator chassis" +msgid_plural "Regulator chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mana pearl +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" -"A gemstone created by alchemy. You can feel it attract surrounding mana." +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the Regulator tank." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "enchanted wood" -msgid_plural "enchanted wood" +msgid "Seneschal chassis" +msgid_plural "Seneschal chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py -msgid "Wood that has been infused with mana." +msgid "" +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the Seneschal." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "black dragon scale" -msgid_plural "black dragon scales" +msgid "Likvidator chassis" +msgid_plural "Likvidator chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black dragon scale +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" -"A scale from a black dragon. It still has its magical properties and acid " -"resistance." +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the Likvidator." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bundle of black dragon scales" -msgid_plural "bundles of black dragon scales" +msgid "Famulus chassis" +msgid_plural "Famulus chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bundle of black dragon scales +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" -"Scales from a black dragon, bundled tightly together for storage. " -"Disassemble to unpack." +"What's left when you remove all moving parts and electronics. Looking at it" +" fills you with uneasiness as the Famulus stares at you with empty eyes." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "black dragon hide" -msgid_plural "black dragon hides" +msgid "Udarnik chassis" +msgid_plural "Udarnik chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for black dragon hide +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py 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." +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the Udarnik." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bundle of black dragon hides" -msgid_plural "bundles of black dragon hides" +msgid "Brandspojt chassis" +msgid_plural "Brandspojt chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for bundle of black dragon hides +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" -"Hides from a black dragon, bundled tightly together for storage. " -"Disassemble to unpack." +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the Brandspojt." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "vacation brochure" -msgid_plural "vacation brochures" +msgid "Surgical Droid chassis" +msgid_plural "Surgical Droid chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action message for vacation brochure. -#. ~ Use action message for lair map. -#: lang/json/GENERIC_from_json.py -msgid "You add the locations to your map." -msgstr "" - -#. ~ Description for vacation brochure +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" -"This is a glossy brochure encouraging students to book vacations at a lake " -"retreat or remote cabin. The brochure includes lush photographs of a tower " -"on an island and a remote looking cabin in the woods. It includes a map of " -"the areas." +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the Surgical Droid." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "lair map" -msgid_plural "lair maps" +msgid "Aegis chassis" +msgid_plural "Aegis chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lair map +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" -"This is an well worn map. It has pictures of fantastical beasts " -"embellishing the carefully drawn map markers." +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the Aegis." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "old photo" -msgid_plural "old photos" +msgid "military robot chassis" +msgid_plural "military robot chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for old photo +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py 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." +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the military robot." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "golem core" -msgid_plural "golem cores" +msgid "military humaniform chassis" +msgid_plural "military humaniform chassis" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for golem core +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" -"The \"heart\" of a golem. Makes a soft humming noise when you hold it close" -" to your ear." +"What's left when you remove all moving parts and electronics. You still " +"feel deep down that its hollow eyes are studying you." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken clay golem" -msgid_plural "broken clay golems" +msgid "folded nanotech forge" +msgid_plural "folded nanotech forges" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken clay golem +#. ~ Description for folded nanotech forge #: lang/json/GENERIC_from_json.py msgid "" -"A broken clay golem, looking like a piece of post-modern art. Could be " -"smashed for clay." +"Matrioshka Fabritechnics created this portable nanotech forge for when " +"expeditions are setting up a basecamp far from population centers. Once " +"deployed it can be used to craft ultratech marvels that otherwise are too " +"minute for human crafting." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken plastic golem" -msgid_plural "broken plastic golems" +msgid "folded diamond press" +msgid_plural "folded diamond presses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken plastic golem +#. ~ Description for folded diamond press #: lang/json/GENERIC_from_json.py 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." +"Matrioshka Fabritechnics this device that can create pressures beyond those " +"that create diamonds. Once deployed it can be used to craft ultratech " +"marvels that require substances of singular qualities." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken stone golem" -msgid_plural "broken stone golems" +msgid "robot carrier" +msgid_plural "robot carriers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken stone golem +#. ~ Description for robot carrier #: lang/json/GENERIC_from_json.py msgid "" -"A broken stone golem, not that much different from big boulder. Could be " -"smashed for stone." +"A heavy frame outfitted with tie-downs and attachment points for carrying " +"cargo, with additional railings to keep a large machine in place. It is " +"meant to hold large drones and robots for transport. Use it on a suitable " +"robot to capture, use it on an empty tile to release." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken iron golem" -msgid_plural "broken iron golems" +msgid "hydraulic gauntlet" +msgid_plural "hydraulic gauntlets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken iron golem +#. ~ Description for hydraulic gauntlet #: lang/json/GENERIC_from_json.py msgid "" -"A broken iron golem, with all iron you would possibly ever need. Could be " -"smashed for iron." +"A huge, heavy metal gauntlet lined with tubing and gauges. Slow and " +"unwieldy, it uses internal pressure to deliver devastating blows, but takes " +"tremendous strength to use effectively. Thanks to an internal microreactor," +" it doesn't require power of its own." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broken forge born" -msgid_plural "broken forge borns" +msgid "titanium bat" +msgid_plural "titanium bats" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for broken forge born +#. ~ Description for titanium bat #: lang/json/GENERIC_from_json.py msgid "" -"A broken forge born, with all orichalcum you would possibly ever need. " -"Could be smashed for orichalcum." +"A luxury baseball bat made out of titanium that was banned from competitive " +"sport due to the increased performance that put defenders at risk." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "lesser dimensional bag" -msgid_plural "lesser dimensional bags" +msgid "trident" +msgid_plural "tridents" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lesser dimensional bag +#. ~ Description for trident #: lang/json/GENERIC_from_json.py msgid "" -"This is a bag that can contain more than it should. The bag magically " -"reduces the weight of its contents and expands less than the amount of stuff" -" you put into it. It takes a few words and hand-waving to take an item out." +"A three pronged spear that is surface treated to be used confidently above " +"and below water." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "dimensional bag" -msgid_plural "dimensional bags" +msgid "ur-scrap" +msgid_plural "ur-scraps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for ur-scrap #: lang/json/GENERIC_from_json.py -msgid "greater dimensional bag" -msgid_plural "greater dimensional bags" +msgid "A small techno doodad." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "monomeric slurry" +msgid_plural "monomeric slurry" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for greater dimensional bag +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" -"This dimensional bag has reached the limits of human innovation with a " -"combination of manufacturing and magical secrets." +"A collection of the building blocks of polymers. With this and a whole lot " +"of know-how, you can create proteins and other building blocks of life." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "supergravity preservation box" -msgid_plural "supergravity preservation boxes" +msgid "micellular growth medium" +msgid_plural "micellular growth mediums" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for supergravity preservation box +#. ~ Description for micellular growth medium #: lang/json/GENERIC_from_json.py msgid "" -"A box that uses gravity magic to preserve food. It makes the box much " -"heavier, but anything in it lasts far longer and you can store more." +"For the mixing of biomaterials that might otherwise be antithetical to one " +"another." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "minor staff of the magi" -msgid_plural "minor staves of the magi" +msgid "artificial muscle fibers" +msgid_plural "artificial muscle fibers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for minor staff of the magi +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" -"A simple carved staff, made of wood. It faintly glows with magic when you " -"cast spells. Wielding it slightly increases your mana regeneration" +"Lab-grown or bioprinted muscle fibers; much denser and with higher " +"performance ratios than baseline human muscles." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "lesser staff of the magi" -msgid_plural "lesser staves of the magi" +msgid "self healing polymers" +msgid_plural "self healing polymers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for lesser staff of the magi +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" -"A beautifully carved staff, made of enchanted wood. It faintly glows with " -"magic when you cast spells, but it is not a sturdy melee weapon. Wielding " -"it increases your mana regeneration." +"Materials capable of taking environmental chemicals and utilizing them for " +"self-repair; be careful you don't make grey goo." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "greater staff of the magi" -msgid_plural "greater staves of the magi" +msgid "autologous totipotent tissue culture" +msgid_plural "autologous totipotent tissue cultures" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for greater staff of the magi +#. ~ Description for autologous totipotent tissue culture #: lang/json/GENERIC_from_json.py 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 regeneration." +"Uncontaminated pure cellular matter that, with the right instructions, can " +"become just about anything." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "fireball hammer" -msgid_plural "fireball hammers" +msgid "scrap photonics" +msgid_plural "scrap photonics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for fireball hammer +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py -msgid "Use with caution! Flammable! Explosive!" +msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "The Iron Whip" -msgid_plural "Iron Whips" +msgid "photonic circuitry" +msgid_plural "photonic circuitries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for The Iron Whip. -#: lang/json/GENERIC_from_json.py -msgid "" -"You loop the whip in your hand and it coils back into a belt form in an " -"instant." -msgstr "" - -#. ~ Description for The Iron Whip +#. ~ Description for photonic circuitry #: lang/json/GENERIC_from_json.py -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." +msgid "A resplendent golden grid inlaid on dark blue substrate." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "cudgel +1" -msgid_plural "cudgels +1" +msgid "photonic computation core" +msgid_plural "photonic computation cores" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for photonic computation core #: lang/json/GENERIC_from_json.py -msgid "cudgel +2" -msgid_plural "cudgels +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A monolithic circuit shaped as a glowing cube of crystal." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "quarterstaff +1" -msgid_plural "quarterstaves +1" +msgid "hypergeometric photonics" +msgid_plural "hypergeometric photonics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py -msgid "quarterstaff +2" -msgid_plural "quarterstaves +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"In your hands lies a self-contained digital universe. Its programs glowing " +"like stars fixed on computational shells infinitely layered." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "ironshod quarterstaff +1" -msgid_plural "ironshod quarterstaves +1" +msgid "acausal logic permutator" +msgid_plural "acausal logic permutators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for acausal logic permutator #: lang/json/GENERIC_from_json.py -msgid "ironshod quarterstaff +2" -msgid_plural "ironshod quarterstaves +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "It has given you an answer, but you are yet to ask anything." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "longsword +1" -msgid_plural "longswords +1" +msgid "woven metamaterial sheet" +msgid_plural "woven metamaterial sheets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for woven metamaterial sheet #: lang/json/GENERIC_from_json.py -msgid "longsword +2" -msgid_plural "longswords +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"An intricately spun and carefully engineered sheet of iridescent fibers." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "sledge hammer +1" -msgid_plural "sledge hammers +1" +msgid "nanowire battery" +msgid_plural "nanowire batteries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for nanowire battery #: lang/json/GENERIC_from_json.py -msgid "sledge hammer +2" -msgid_plural "sledge hammers +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A small battery component with a very high energy density." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "heavy sledge hammer +1" -msgid_plural "heavy sledge hammers +1" +msgid "ultracapacitor" +msgid_plural "ultracapacitors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for ultracapacitor #: lang/json/GENERIC_from_json.py -msgid "heavy sledge hammer +2" -msgid_plural "heavy sledge hammers +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A capacitor made from exotic compounds, capable of storing a high amount of " +"electric charge." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "warhammer +1" -msgid_plural "warhammers +1" +msgid "ultracapacitor array" +msgid_plural "ultracapacitor arrays" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for ultracapacitor array #: lang/json/GENERIC_from_json.py -msgid "warhammer +2" -msgid_plural "warhammers +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "Ultracapacitors assembled into a finely tuned energy storage array." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "bat +1" -msgid_plural "bats +1" +msgid "superconductive coil" +msgid_plural "superconductive coils" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for superconductive coil #: lang/json/GENERIC_from_json.py -msgid "bat +2" -msgid_plural "bats +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"Superconductive wire warped upon itself manipulates the electromagnetic " +"spectrum to store vast amounts of power." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "aluminum bat +1" -msgid_plural "aluminum bats +1" +msgid "zero-point energy extractor" +msgid_plural "zero-point energy extractors" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for zero-point energy extractor #: lang/json/GENERIC_from_json.py -msgid "aluminum bat +2" -msgid_plural "aluminum bats +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A complex grid pins space-time to the surface of the multiversal hyper-" +"torus, allowing the energies within to leak into our sliver of existence." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "steel spear +1" -msgid_plural "steel spears +1" +msgid "conductive thermoplastic" +msgid_plural "conductive thermoplastics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for conductive thermoplastic #: lang/json/GENERIC_from_json.py -msgid "steel spear +2" -msgid_plural "steel spears +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"An excellent heat conductor and electrical insulator. Conductive " +"thermoplastics were introduced to the civilian market nearly two centuries " +"ago, and have tightly integrated themselves into the modern society since " +"then." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "qiang +1" -msgid_plural "qiang +1" +msgid "carbon-lattice heatsink" +msgid_plural "carbon-lattice heatsinks" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for carbon-lattice heatsink #: lang/json/GENERIC_from_json.py -msgid "qiang +2" -msgid_plural "qiang +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"Sections of dark, translucent, monocrystalline carbon fins, functionally " +"identical to diamond. Microscopic etches on the inside allows the flow of " +"high-pressure coolant. Crystalline carbon lattices exhibit far superior " +"thermal conductivity and deformation resistance than any other conventional " +"metals." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "halberd +1" -msgid_plural "halberds +1" +msgid "fermionic nanoribbon" +msgid_plural "fermionic nanoribbons" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for fermionic nanoribbon #: lang/json/GENERIC_from_json.py -msgid "halberd +2" -msgid_plural "halberds +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"This delicate bundle of silvery, iridescent cables is capable of " +"transporting heat energy between its connections instantly without ever " +"heating up by itself. Even the slightest damage to the casing will " +"annihilate the ground-state quantum uniformity of the fermionic superfluid " +"matrix - Handle with care!" +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "glaive +1" -msgid_plural "glaives +1" +msgid "maxwellian entropic chirality generator" +msgid_plural "maxwellian entropic chirality generators" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for maxwellian entropic chirality generator #: lang/json/GENERIC_from_json.py -msgid "glaive +2" -msgid_plural "glaives +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A nondescript square piece of metal about the size of a computer chip. One " +"side is cold to the touch, while the other is uncomfortably hot. " +"Hermetically sealed and devoid of any identifying feature, this peculiar " +"device gives off an unexplainable, sinister aura." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "naginata +1" -msgid_plural "naginata +1" +msgid "salvaged coolant system" +msgid_plural "salvaged coolant systems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for salvaged coolant system #: lang/json/GENERIC_from_json.py -msgid "naginata +2" -msgid_plural "naginata +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"Rusty fluid reservoirs and decomposing high-pressure tubing containing still" +" usable supercritical coolant. You could disassemble it to separate the " +"liquid coolant from the rest of the scrap." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mace +1" -msgid_plural "maces +1" +msgid "high quality electromagnet" +msgid_plural "high quality electromagnets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for high quality electromagnet #: lang/json/GENERIC_from_json.py -msgid "mace +2" -msgid_plural "maces +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "A sturdy, industrially crafted electromagnet." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "morningstar +1" -msgid_plural "morningstars +1" +msgid "cryo electromagnet" +msgid_plural "cryo electromagnets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for cryo electromagnet #: lang/json/GENERIC_from_json.py -msgid "morningstar +2" -msgid_plural "morningstars +2" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgid "" +"A powerful super conductive electromagnet, that must be kept at very low " +"temperatures to operate." +msgstr "" #: lang/json/GENERIC_from_json.py -msgid "jian +1" -msgid_plural "jian +1" +msgid "super conductive electromagnet" +msgid_plural "super conductive electromagnets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for super conductive electromagnet +#: lang/json/GENERIC_from_json.py +msgid "A powerful electromagnet made from a room temperature superconductor." +msgstr "" + #: lang/json/GENERIC_from_json.py -msgid "jian +2" -msgid_plural "jian +2" +msgid "ferrofluid dynamo" +msgid_plural "ferrofluid dynamos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for ferrofluid dynamo #: lang/json/GENERIC_from_json.py -msgid "scimitar +1" -msgid_plural "scimitars +1" +msgid "" +"Black metallic fluid, harmonically flowing from one fractal shape to the " +"next." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "composite alloy" +msgid_plural "composite alloys" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for composite alloy #: lang/json/GENERIC_from_json.py -msgid "scimitar +2" -msgid_plural "scimitars +2" +msgid "Miscellaneous scrap pieces made from a composite alloy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "vacuum cast carbide" +msgid_plural "vacuum cast carbides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for vacuum cast carbide #: lang/json/GENERIC_from_json.py -msgid "estoc +1" -msgid_plural "estocs +1" +msgid "Malleable carbide cast by forges on high earth orbit." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "nanoprinted alloy" +msgid_plural "nanoprinted alloys" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for nanoprinted alloy #: lang/json/GENERIC_from_json.py -msgid "estoc +2" -msgid_plural "estocs +2" +msgid "" +"A meta material fabricated by precisely layering different elements at an " +"atomic scale." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "crystal forged neutrite" +msgid_plural "crystal forged neutrites" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for crystal forged neutrite #: lang/json/GENERIC_from_json.py -msgid "arming sword +1" -msgid_plural "arming swords +1" +msgid "" +"Great forges within the Earth's core wrought hydrogen into flaming metal and" +" poured it within lattices of super conductive lanthanum. Locked in " +"magnetic equilibrium, it was left to cool into a dark unbreakable metal" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "phase uneven matter" +msgid_plural "phase uneven matters" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for phase uneven matter #: lang/json/GENERIC_from_json.py -msgid "arming sword +2" -msgid_plural "arming swords +2" +msgid "Matter condensed from the liminal spaces between dimensions." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "peripheral electrode" +msgid_plural "peripheral electrodes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for peripheral electrode #: lang/json/GENERIC_from_json.py -msgid "broadsword +1" -msgid_plural "broadswords +1" +msgid "" +"A thin strand of wire and a clamp, meant to be spliced into the smaller " +"nerves of the human body." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "neural electrode" +msgid_plural "neural electrodes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for neural electrode #: lang/json/GENERIC_from_json.py -msgid "broadsword +2" -msgid_plural "broadswords +2" +msgid "" +"A small array of metallic needles allows complex communication between " +"machine and human mind." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "brain implant prod" +msgid_plural "brain implant prods" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for brain implant prod #: lang/json/GENERIC_from_json.py -msgid "battle axe +1" -msgid_plural "battle axes +1" +msgid "" +"A complexly etched rod of metal interfaces with the corpus callosum of the " +"patient, granting increased control of bionic functions." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "artificial neural tissue" +msgid_plural "artificial neural tissues" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for artificial neural tissue #: lang/json/GENERIC_from_json.py -msgid "battle axe +2" -msgid_plural "battle axes +2" +msgid "" +"Photonic axons process thought at speeds far surpassing primitive, chemical-" +"driven communication." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "neurosynaptic interface matrix" +msgid_plural "neurosynaptic interface matrices" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for neurosynaptic interface matrix #: lang/json/GENERIC_from_json.py -msgid "cavalry sabre +1" -msgid_plural "cavalry sabres +1" +msgid "" +"A membrane of artificial neurons envelops the cerebral cortex, melding " +"machine and human intellect into a gestalt much greater than its individual " +"parts." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "laser optics" +msgid_plural "laser optics" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py -msgid "cavalry sabre +2" -msgid_plural "cavalry sabres +2" +msgid "" +"Lenses, mirrors, emitters and other optical elements that once belonged to a" +" weapon, industrial cutter or laser research setup." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "metamaterial lens" +msgid_plural "metamaterial lenses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for metamaterial lens #: lang/json/GENERIC_from_json.py -msgid "cutlass +1" -msgid_plural "cutlasses +1" +msgid "" +"A diminute sphere of crystal and metal, magnetically affixed to the centroid" +" of its containing chamber." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "ultralight frame" +msgid_plural "ultralight frames" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for ultralight frame #: lang/json/GENERIC_from_json.py -msgid "cutlass +2" -msgid_plural "cutlasses +2" +msgid "A sturdy, lightweight frame made from titanium. Useful for crafting." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "ultralight foldable frame" +msgid_plural "ultralight foldable frames" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for ultralight foldable frame #: lang/json/GENERIC_from_json.py -msgid "fire axe +1" -msgid_plural "fire axes +1" +msgid "A sturdy, lightweight foldable frame made from titanium." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/furniture_from_json.py +#: lang/json/vehicle_part_from_json.py +msgid "control station" +msgid_plural "control stations" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for control station #: lang/json/GENERIC_from_json.py -msgid "fire axe +2" -msgid_plural "fire axes +2" +msgid "" +"A large and complex piloting station from a military vehicle, including a " +"camera station, steering tools, and electronics controls." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "quantum solar panel" +msgid_plural "quantum solar panels" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for quantum solar panel #: lang/json/GENERIC_from_json.py -msgid "katana +1" -msgid_plural "katana +1" +msgid "" +"This solar panel is obviously cutting-edge technology and given where you " +"found it, should probably provide a LOT of power. It's covered in strange-" +"looking material, but the covering looks rather fragile; it doesn't look " +"like it could support a reinforcing sheet, either." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "vehicle shelving" +msgid_plural "vehicle shelvings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for vehicle shelving #: lang/json/GENERIC_from_json.py -msgid "katana +2" -msgid_plural "katana +2" +msgid "" +"Several heavy frames retrofitted to be installed together which are " +"outfitted with tie-downs and attachment points gallore for carrying an " +"extended amount of cargo." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "solar array" +msgid_plural "solar arrays" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "combat knife +1" -msgid_plural "combat knives +1" +#. ~ Description for solar array +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "" +"A vertical array of three solar panels set on a chassis rising above one " +"another on a metal pole with rudimentary tracking and motors. Due to the " +"flimsy nature of the hydraulics and high surface area profile to maximize " +"sunlight, they can't really be installed onto an existing vehicle. Requires" +" a jumper cable or similar to pull power from." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "reinforced solar array" +msgid_plural "reinforced solar arrays" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "combat knife +2" -msgid_plural "combat knives +2" +#. ~ Description for reinforced solar array +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "" +"A vertical array of three reinforced solar panels set on a chassis rising " +"above one another on a metal pole with rudimentary tracking and motors. Due" +" to the flimsy nature of the hydraulics and high surface area profile to " +"maximize sunlight, they can't really be installed onto an existing vehicle." +" Requires a jumper cable or similar to pull power from." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "upgraded solar array" +msgid_plural "upgraded solar arrays" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lang/json/GENERIC_from_json.py -msgid "survival knife +1" -msgid_plural "survival knives +1" +#. ~ Description for upgraded solar array +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "" +"A vertical array of three upgraded solar panels set on a chassis rising " +"above one another on a metal pole with rudimentary tracking and motors. Due" +" to the flimsy nature of the hydraulics and high surface area profile to " +"maximize sunlight, they can't really be installed onto an existing vehicle." +" Requires a jumper cable or similar to pull power from." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "upgraded reinforced solar array" +msgid_plural "upgraded reinforced solar arrays" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for upgraded reinforced solar array +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "" +"A vertical array of three upgraded reinforced solar panels set on a chassis " +"rising above one another on a metal pole with rudimentary tracking and " +"motors. Due to the flimsy nature of the hydraulics and high surface area " +"profile to maximize sunlight, they can't really be installed onto an " +"existing vehicle. Requires a jumper cable or similar to pull power from." +msgstr "" + #: lang/json/GENERIC_from_json.py -msgid "survival knife +2" -msgid_plural "survival knives +2" +msgid "withered plant bundle" +msgid_plural "withered plant bundles" +msgstr[0] "пучок зів'ялих рослин" +msgstr[1] "пучки зів'ялих рослин" +msgstr[2] "пучків зів'ялих рослин" +msgstr[3] "пучок зів'ялих рослин" + +#. ~ Description for withered plant bundle +#: lang/json/GENERIC_from_json.py +msgid "A bundle of plant matter" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "CRIT hatchet" +msgid_plural "CRIT hatchets" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Use action msg for CRIT hatchet. #: lang/json/GENERIC_from_json.py -msgid "trench knife +1" -msgid_plural "trench knives +1" +msgid "You extend your hatchet" +msgstr "" + +#. ~ Description for CRIT hatchet +#: lang/json/GENERIC_from_json.py +msgid "" +"An incredibly sharp, heavy duty, one-handed hatchet. Makes a great melee " +"weapon, and is useful both for chopping things and for use as a hammer when " +"extended." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "CRIT axe" +msgid_plural "CRIT axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Use action msg for CRIT axe. #: lang/json/GENERIC_from_json.py -msgid "trench knife +2" -msgid_plural "trench knives +2" +msgid "You collapse your axe" +msgstr "" + +#. ~ Description for CRIT axe +#: lang/json/GENERIC_from_json.py +msgid "" +"An incredibly sharp, heavy duty, full length axe. Makes a heavy-hitting " +"melee weapon, and is useful both for chopping things and for use as a hammer" +" when extended." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "CRIT Blade-work manual" +msgid_plural "CRIT Blade-work manuals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for CRIT Blade-work manual #: lang/json/GENERIC_from_json.py -msgid "kris +1" -msgid_plural "krises +1" +msgid "An advanced military manual on CRIT Blade-work." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "C.R.I.T Enforcement manual" +msgid_plural "C.R.I.T Enforcement manuals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for C.R.I.T Enforcement manual +#: lang/json/GENERIC_from_json.py +msgid "An advanced military manual on C.R.I.T Enforcer melee." +msgstr "" + #: lang/json/GENERIC_from_json.py -msgid "kris +2" -msgid_plural "krises +2" +msgid "CRIT CQB manual" +msgid_plural "CRIT CQB manuals" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for CRIT CQB manual #: lang/json/GENERIC_from_json.py -msgid "kukri +1" -msgid_plural "kukris +1" +msgid "An advanced military manual on CRIT general CQB." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "burnt out Louisville Slaughterer" +msgid_plural "burnt out Louisville Slaughterers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for burnt out Louisville Slaughterer #: lang/json/GENERIC_from_json.py -msgid "kukri +2" -msgid_plural "kukris +2" +msgid "" +"A sturdy wood bat, wrapped in flame-resistant Nomex fabric. Makes a good " +"melee weapon but better be disassembled to recycle the baseball bat and some" +" Nomex patches." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "alien electronic scrap" +msgid_plural "alien electronic scraps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for alien electronic scrap #: lang/json/GENERIC_from_json.py -msgid "nodachi +1" -msgid_plural "nodachi +1" +msgid "" +"A collection of dazzling alien electronics, far beyond anything of " +"terrestrial manufacture. Useful in crafting." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "alien biotech" +msgid_plural "alien biotechs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for alien biotech #: lang/json/GENERIC_from_json.py -msgid "nodachi +2" -msgid_plural "nodachi +2" +msgid "" +"A fistfull of gently squirming parts that secrete viscous gel. Useful in " +"crafting, but not fun to hold." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "alien power cell" +msgid_plural "alien power cells" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for alien power cell #: lang/json/GENERIC_from_json.py -msgid "pickaxe +1" -msgid_plural "pickaxes +1" +msgid "" +"A fist-sized, cylindrical canister that makes you feel a bit tingly when you" +" hold it. Its center houses a faintly glowing red core of some sort. " +"Though fundamentally incompatible with earthly technologies, it still might " +"be useful in crafting." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "broken emissary" +msgid_plural "broken emissaries" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for broken emissary #: lang/json/GENERIC_from_json.py -msgid "pickaxe +2" -msgid_plural "pickaxes +2" +msgid "" +"The massive body of a collapsed emissary. Still a bit intimidating, perhaps" +" knowing the damage it can cause. Could be gutted for parts, but you'll " +"probably need specialized alien tools." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "broken emissary of plague" +msgid_plural "broken emissaries of plague" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for broken emissary of plague #: lang/json/GENERIC_from_json.py -msgid "pike +1" -msgid_plural "pikes +1" +msgid "" +"The massive body of a collapsed emissary of plague. Still a bit " +"intimidating, perhaps knowing the damage it can cause. Could be gutted for " +"parts, but you'll probably need specialized alien tools." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "broken emissary of flame" +msgid_plural "broken emissaries of flame" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for broken emissary of flame #: lang/json/GENERIC_from_json.py -msgid "pike +2" -msgid_plural "pikes +2" +msgid "" +"The massive body of a collapsed emissary of flame. Still a bit " +"intimidating, perhaps knowing the damage it can cause. Could be gutted for " +"parts, but you'll probably need specialized alien tools." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "broken surveillance drone" +msgid_plural "broken surveillance drones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for broken surveillance drone #: lang/json/GENERIC_from_json.py -msgid "rapier +1" -msgid_plural "rapiers +1" +msgid "" +"A broken drone. Much less threatening now that it isn't shining its light " +"everywhere. Could be gutted for parts. Specialized alien tools would be " +"best for disassembly, but you could make do with more human instruments " +"instead." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "broken seeker drone" +msgid_plural "broken seeker drones" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for broken seeker drone #: lang/json/GENERIC_from_json.py -msgid "rapier +2" -msgid_plural "rapiers +2" +msgid "" +"A broken drone. Much less threatening now that it isn't prodding you. " +"Specialized alien tools would be best for disassembly, but you could make do" +" with more human instruments instead." +msgstr "" + +#. ~ Description for toilet brush +#: lang/json/GENERIC_from_json.py +msgid "" +"The aliens that have invaded Earth cannot be intimidated or humiliated - at " +"least not meaningfully - so this stiff brush is only useful for scouring " +"toilet bowls." +msgstr "" + +#. ~ Description for basketball +#: lang/json/GENERIC_from_json.py +msgid "A high-quality indoor basketball. You could throw it at your enemies." +msgstr "" + +#. ~ Description for newspaper page +#: lang/json/GENERIC_from_json.py +msgid "" +"A single sheet of newspaper broadsheet. Most of the information on there is" +" terribly trivial, or out of date, but one thing catches your eye briefly - " +"some things from before the Cataclysm, and some even after." +msgstr "" + +#. ~ Description for reinforced solar panel +#: lang/json/GENERIC_from_json.py +msgid "" +"A solar panel that has been covered with a pane of reinforced glass to " +"protect the delicate solar cells from aliens or errant baseballs. The glass" +" causes this panel to produce slightly less power than a normal panel. " +"Useful for a vehicle." +msgstr "" + +#. ~ Description for upgraded reinforced solar panel +#: lang/json/GENERIC_from_json.py +msgid "" +"An upgraded solar panel that has been covered with a pane of reinforced " +"glass to protect the delicate solar cells from aliens or errant baseballs. " +"The glass causes this panel to produce slightly less power than a normal " +"upgraded panel. Useful for a vehicle." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "PRELIMINARY REPORT: IMMERSION-30D" +msgid_plural "PRELIMINARY REPORT: IMMERSION-30Ds" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "tanto +1" -msgid_plural "tanto +1" +msgid "tiny pistol casing" +msgid_plural "tiny pistol casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for tiny pistol casing #: lang/json/GENERIC_from_json.py -msgid "tanto +2" -msgid_plural "tanto +2" +msgid "An empty casing from a tiny pistol round." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "pistol casing" +msgid_plural "pistol casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for pistol casing #: lang/json/GENERIC_from_json.py -msgid "wakizashi +1" -msgid_plural "wakizashi +1" +msgid "An empty casing from a standard pistol round." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "magnum pistol casing" +msgid_plural "magnum pistol casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for magnum pistol casing #: lang/json/GENERIC_from_json.py -msgid "wakizashi +2" -msgid_plural "wakizashi +2" +msgid "An empty casing from a magnum pistol round." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "rifle casing" +msgid_plural "rifle casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for rifle casing #: lang/json/GENERIC_from_json.py -msgid "zweihänder +1" -msgid_plural "zweihänders +1" +msgid "An empty casing from a rifle round." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "huge rifle casing" +msgid_plural "huge rifle casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for huge rifle casing #: lang/json/GENERIC_from_json.py -msgid "zweihänder +2" -msgid_plural "zweihänders +2" +msgid "An empty casing from a huge rifle round." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "shotshell hull" +msgid_plural "shotshell hulls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for shotshell hull #: lang/json/GENERIC_from_json.py -msgid "khopesh +1" -msgid_plural "khopeshes +1" +msgid "" +"A shotshell's casing, a plastic tube with a brass casehead, commonly " +"referred to as a hull." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "grenade casing" +msgid_plural "grenade casings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for grenade casing #: lang/json/GENERIC_from_json.py -msgid "khopesh +2" -msgid_plural "khopeshes +2" +msgid "A large casing from a grenade round." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "rifle belt linkage" +msgid_plural "rifle belt linkages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "xiphos +1" -msgid_plural "xiphe +1" +msgid "grenade belt linkage" +msgid_plural "grenade belt linkages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "xiphos +2" -msgid_plural "xiphe +2" +msgid "heavy machinegun belt linkage" +msgid_plural "heavy machinegun belt linkages" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "dao +1" -msgid_plural "dao +1" +msgid "broken CROWS II" +msgid_plural "broken CROWS II" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "dao +2" -msgid_plural "dao +2" +msgid "broken CROWS II Heavy" +msgid_plural "broken CROWS II Heavy" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "lucerne hammer +1" -msgid_plural "lucerne hammers +1" +msgid "broken launcher TALON UGV" +msgid_plural "broken launcher TALON UGVs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "lucerne hammer +2" -msgid_plural "lucerne hammers +2" +msgid "broken rifle TALON UGV" +msgid_plural "broken rifle TALON UGVs" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "Biomancer spear" -msgid_plural "Biomancer spears" +msgid "artificer's toolkit" +msgid_plural "artificer's toolkits" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Biomancer spear +#. ~ Description for artificer's toolkit #: lang/json/GENERIC_from_json.py msgid "" -"A grotesque bone spearhead on a stout wooden pole. There is a Biomancer " -"rune embedded at the base of the head." +"This is a magical device that can take the shape of many tools. When not in" +" use it looks like a simple screwdriver." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Biomancer shifting spear" -msgid_plural "Biomancer shifting spears" +msgid "stone shell" +msgid_plural "stone shells" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for Biomancer shifting spear. -#: lang/json/GENERIC_from_json.py -msgid "You feel the spear rapidly contracting and squirming for ranged combat" -msgstr "" - -#. ~ Description for Biomancer shifting spear +#. ~ Description for stone shell #: lang/json/GENERIC_from_json.py msgid "" -"A grotesque bone spearhead on a hardened flesh pole. There is a Biomancer " -"rune embedded in the middle. You feel this spear squirming in your hand as " -"if alive." +"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 "" #: lang/json/GENERIC_from_json.py -msgid "Technomancer toolbar" -msgid_plural "Technomancer toolbars" +msgid "glow dust" +msgid_plural "glow dusts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Technomancer toolbar +#. ~ Description for glow dust #: lang/json/GENERIC_from_json.py msgid "" -"This staff incorporates a sturdy cresent wrench on top of a prybar and a " -"hammer on the other in a convenient package. There is a Technomancer rune " -"embedded in the hammerhead." +"The powdered remains of a will-o-wisps's physical form. It seems to still " +"possess an otherworldly glow." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Magus staff" -msgid_plural "Magus staves" +msgid "magical reading light" +msgid_plural "magical reading lights" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Magus staff +#. ~ Description for magical reading light #: lang/json/GENERIC_from_json.py 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." +"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 "" #: lang/json/GENERIC_from_json.py -msgid "Magus battle staff" -msgid_plural "Magus battle staves" +msgid "magical reading light (covered)" +msgid_plural "magical reading lights (covered)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Magus battle staff +#. ~ Description for magical reading light (covered) #: lang/json/GENERIC_from_json.py msgid "" -"A quarterstaff with runes carved into it and two mana pearls at the tip, " -"enchanted with mana for durability. It fills you with an invigorating " -"sensation. There are two Magi runes carved into the wood." +"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 "" #: lang/json/GENERIC_from_json.py -msgid "Kelvinist flamberge" -msgid_plural "Kelvinist flamberges" +msgid "bulette plate" +msgid_plural "bulette plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Kelvinist flamberge +#. ~ Description for bulette plate #: lang/json/GENERIC_from_json.py msgid "" -"A sword with an undulating blade, reminiscent of a flame. There is a " -"Kelvinist rune embedded in the pommel." +"The great plates from behind a bulette's head have always been prized for " +"use in shield and armor making." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Stormshaper axe" -msgid_plural "Stormshaper axes" +msgid "bulette pearl" +msgid_plural "bulette pearls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Stormshaper axe +#. ~ Description for bulette pearl #: lang/json/GENERIC_from_json.py msgid "" -"A forged copper axe with silver trimmings and a wooden handle. There is a " -"Stormshaper rune embedded in the eye." +"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 "" #: lang/json/GENERIC_from_json.py -msgid "Animist athame" -msgid_plural "Animist athames" +msgid "stirge proboscis" +msgid_plural "stirge proboscises" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Animist athame +#. ~ Description for stirge proboscis #: lang/json/GENERIC_from_json.py msgid "" -"A steel ritual knife used by Animists to draw blood for summoning. Their " -"school rune is embedded in the crossguard." +"A long sucking apparatus harvested from stirge corpse. Makes a poor melee " +"weapon." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "springstaff(baton)" -msgid_plural "springstaves(baton)" +msgid "chunk of demon chitin" +msgid_plural "chunks of demon chitin" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for springstaff(baton). +#. ~ Description for chunk of demon chitin #: lang/json/GENERIC_from_json.py -msgid "Extend to staff" +msgid "" +"A piece of demon spider exoskeleton. It is light and very durable, and " +"probably has some magical properties." msgstr "" -#. ~ Use action msg for springstaff(baton). #: lang/json/GENERIC_from_json.py -msgid "You snap open your springstaff into staff mode." -msgstr "" +msgid "bundle of demon chitin chunks" +msgid_plural "bundles of demon chitin chunks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for springstaff(baton) +#. ~ Description for bundle of demon chitin chunks #: lang/json/GENERIC_from_json.py msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips retracted while in baton configuration. Activate to extend." +"Pieces of demon spider exoskeleton, bundled tightly together for storage. " +"Disassemble to unpack." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "springstaff(staff)" -msgid_plural "springstaves(staff)" +msgid "demon chitin plate" +msgid_plural "demon chitin plates" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for springstaff(staff). +#. ~ Description for demon chitin plate #: lang/json/GENERIC_from_json.py -msgid "Retract to baton" +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 "" -#. ~ Use action msg for springstaff(staff). #: lang/json/GENERIC_from_json.py -msgid "You collapse your springstaff into baton mode." -msgstr "" +msgid "demon spider fang" +msgid_plural "demon spider fangs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for springstaff(staff) +#. ~ Description for demon spider fang #: lang/json/GENERIC_from_json.py msgid "" -"This versatile weapon uses Technomancy-enhanced springs to keep the staff " -"tips from retracting while in staff configuration. Activate to extend." +"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 "" #: lang/json/GENERIC_from_json.py -msgid "endless flask" -msgid_plural "endless flasks" +msgid "mana dust" +msgid_plural "mana dusts" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for endless flask. +#. ~ Description for mana dust #: lang/json/GENERIC_from_json.py -msgid "You open the flask and discover it full of sweet, sweet, whiskey!" +msgid "" +"Crystalized mana in powdered form. It faintly pulses with arcane energy." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "magic token" -msgid_plural "magic tokens" +msgid "mana pearl" +msgid_plural "mana pearls" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for mana pearl #: lang/json/GENERIC_from_json.py -msgid "longsword token" -msgid_plural "longsword tokens" +msgid "" +"A gemstone created by alchemy. You can feel it attract surrounding mana." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "enchanted wood" +msgid_plural "enchanted wood" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action menu_text for longsword token. -#. ~ Use action menu_text for arming sword token. -#. ~ Use action menu_text for broadsword token. -#. ~ Use action menu_text for battleaxe token. -#. ~ Use action menu_text for pike token. -#. ~ Use action menu_text for mace token. -#. ~ Use action menu_text for quarterstaff token. -#. ~ Use action menu_text for hammer token. -#. ~ Use action menu_text for screwdriver set token. -#. ~ Use action menu_text for crowbar token. +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py -msgid "Whisper command" +msgid "Wood that has been infused with mana." msgstr "" -#. ~ Use action msg for longsword token. #: lang/json/GENERIC_from_json.py -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine longsword!" -msgstr "" +msgid "black dragon scale" +msgid_plural "black dragon scales" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for longsword token +#. ~ Description for black dragon scale #: lang/json/GENERIC_from_json.py msgid "" -"A large 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 scale from a black dragon. It still has its magical properties and acid " +"resistance." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "arming sword token" -msgid_plural "arming sword tokens" +msgid "bundle of black dragon scales" +msgid_plural "bundles of black dragon scales" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for arming sword token. -#: lang/json/GENERIC_from_json.py -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 arming sword token +#. ~ Description for bundle of black dragon scales #: lang/json/GENERIC_from_json.py msgid "" -"A 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." +"Scales from a black dragon, bundled tightly together for storage. " +"Disassemble to unpack." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "broadsword token" -msgid_plural "broadsword tokens" +msgid "black dragon hide" +msgid_plural "black dragon hides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for broadsword token. -#: lang/json/GENERIC_from_json.py -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 +#. ~ Description for black dragon hide #: lang/json/GENERIC_from_json.py msgid "" -"A large 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." +"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 "" #: lang/json/GENERIC_from_json.py -msgid "battleaxe token" -msgid_plural "battleaxe tokens" +msgid "bundle of black dragon hides" +msgid_plural "bundles of black dragon hides" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for battleaxe token. -#: lang/json/GENERIC_from_json.py -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 battleaxe token +#. ~ Description for bundle of black dragon hides #: lang/json/GENERIC_from_json.py msgid "" -"A large 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." +"Hides from a black dragon, bundled tightly together for storage. " +"Disassemble to unpack." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "pike token" -msgid_plural "pike tokens" +msgid "vacation brochure" +msgid_plural "vacation brochures" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for pike token. +#. ~ Use action message for vacation brochure. +#. ~ Use action message for lair map. #: lang/json/GENERIC_from_json.py -msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine pike!" +msgid "You add the locations to your map." msgstr "" -#. ~ Description for pike token +#. ~ Description for vacation brochure #: lang/json/GENERIC_from_json.py msgid "" -"A large 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 is a glossy brochure encouraging students to book vacations at a lake " +"retreat or remote cabin. The brochure includes lush photographs of a tower " +"on an island and a remote looking cabin in the woods. It includes a map of " +"the areas." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "mace token" -msgid_plural "mace tokens" +msgid "lair map" +msgid_plural "lair maps" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for mace token. -#: lang/json/GENERIC_from_json.py -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 +#. ~ Description for lair map #: lang/json/GENERIC_from_json.py msgid "" -"A large 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 is an well worn map. It has pictures of fantastical beasts " +"embellishing the carefully drawn map markers." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "quarterstaff token" -msgid_plural "quarterstaff tokens" +msgid "old photo" +msgid_plural "old photos" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for quarterstaff token. -#: lang/json/GENERIC_from_json.py -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 +#. ~ Description for old photo #: lang/json/GENERIC_from_json.py msgid "" -"A large 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." +"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 "" #: lang/json/GENERIC_from_json.py -msgid "hammer token" -msgid_plural "hammer tokens" +msgid "golem core" +msgid_plural "golem cores" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for hammer token. +#. ~ Description for golem core #: lang/json/GENERIC_from_json.py msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine hammer!" +"The \"heart\" of a golem. Makes a soft humming noise when you hold it close" +" to your ear." msgstr "" -#. ~ Description for hammer token +#: lang/json/GENERIC_from_json.py +msgid "broken clay golem" +msgid_plural "broken clay golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for broken clay golem #: lang/json/GENERIC_from_json.py msgid "" -"A large 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." +"A broken clay golem, looking like a piece of post-modern art. Could be " +"smashed for clay." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "screwdriver set token" -msgid_plural "screwdriver set tokens" +msgid "broken plastic golem" +msgid_plural "broken plastic golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for screwdriver set token. +#. ~ Description for broken plastic golem #: lang/json/GENERIC_from_json.py msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine screwdriver set!" +"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 "" -#. ~ Description for screwdriver set token +#: lang/json/GENERIC_from_json.py +msgid "broken stone golem" +msgid_plural "broken stone golems" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for broken stone golem #: lang/json/GENERIC_from_json.py msgid "" -"A large 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 broken stone golem, not that much different from big boulder. Could be " +"smashed for stone." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "crowbar token" -msgid_plural "crowbar tokens" +msgid "broken iron golem" +msgid_plural "broken iron golems" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for crowbar token. +#. ~ Description for broken iron golem #: lang/json/GENERIC_from_json.py msgid "" -"You say the command word engraved on the token, and it rapidly grows and " -"morphs into a shiny pristine crowbar!" +"A broken iron golem, with all iron you would possibly ever need. Could be " +"smashed for iron." msgstr "" -#. ~ Description for crowbar token +#: lang/json/GENERIC_from_json.py +msgid "broken forge born" +msgid_plural "broken forge borns" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for broken forge born #: lang/json/GENERIC_from_json.py msgid "" -"A large 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 broken forge born, with all orichalcum you would possibly ever need. " +"Could be smashed for orichalcum." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "crowbar +1" -msgid_plural "crowbars +1" +msgid "lesser dimensional bag" +msgid_plural "lesser dimensional bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for lesser dimensional bag #: lang/json/GENERIC_from_json.py -msgid "crowbar +2" -msgid_plural "crowbars +2" +msgid "" +"This is a bag that can contain more than it should. The bag magically " +"reduces the weight of its contents and expands less than the amount of stuff" +" you put into it. It takes a few words and hand-waving to take an item out." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "dimensional bag" +msgid_plural "dimensional bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "hunting knife +1" -msgid_plural "hunting knives +1" +msgid "greater dimensional bag" +msgid_plural "greater dimensional bags" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for greater dimensional bag #: lang/json/GENERIC_from_json.py -msgid "hunting knife +2" -msgid_plural "hunting knives +2" +msgid "" +"This dimensional bag has reached the limits of human innovation with a " +"combination of manufacturing and magical secrets." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "supergravity preservation box" +msgid_plural "supergravity preservation boxes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for supergravity preservation box #: lang/json/GENERIC_from_json.py -msgid "bottle jack +1" -msgid_plural "bottle jacks +1" +msgid "" +"A box that uses gravity magic to preserve food. It makes the box much " +"heavier, but anything in it lasts far longer and you can store more." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "minor staff of the magi" +msgid_plural "minor staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for minor staff of the magi +#: lang/json/GENERIC_from_json.py +msgid "" +"A simple carved staff, made of wood. It faintly glows with magic when you " +"cast spells. Wielding it slightly increases your mana regeneration" +msgstr "" + #: lang/json/GENERIC_from_json.py -msgid "bottle jack +2" -msgid_plural "bottle jacks +2" +msgid "lesser staff of the magi" +msgid_plural "lesser staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for lesser staff of the magi #: lang/json/GENERIC_from_json.py -msgid "scalpel +1" -msgid_plural "scalpels +1" +msgid "" +"A beautifully carved staff, made of enchanted wood. It faintly glows with " +"magic when you cast spells, but it is not a sturdy melee weapon. Wielding " +"it increases your mana regeneration." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "greater staff of the magi" +msgid_plural "greater staves of the magi" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for greater staff of the magi #: lang/json/GENERIC_from_json.py -msgid "scalpel +2" -msgid_plural "scalpels +2" +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 regeneration." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "fireball hammer" +msgid_plural "fireball hammers" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for fireball hammer #: lang/json/GENERIC_from_json.py -msgid "butcher knife +1" -msgid_plural "butcher knives +1" +msgid "Use with caution! Flammable! Explosive!" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "The Iron Whip" +msgid_plural "Iron Whips" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Use action msg for The Iron Whip. #: lang/json/GENERIC_from_json.py -msgid "butcher knife +2" -msgid_plural "butcher knives +2" +msgid "" +"You loop the whip in your hand and it coils back into a belt form in an " +"instant." +msgstr "" + +#. ~ Description for The Iron Whip +#: lang/json/GENERIC_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py +msgid "cudgel +1" +msgid_plural "cudgels +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "meat cleaver +1" -msgid_plural "meat cleavers +1" +msgid "cudgel +2" +msgid_plural "cudgels +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "meat cleaver +2" -msgid_plural "meat cleavers +2" +msgid "quarterstaff +1" +msgid_plural "quarterstaves +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "carving knife +1" -msgid_plural "carving knives +1" +msgid "quarterstaff +2" +msgid_plural "quarterstaves +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "carving knife +2" -msgid_plural "carving knives +2" +msgid "ironshod quarterstaff +1" +msgid_plural "ironshod quarterstaves +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "butchering kit +1" -msgid_plural "butchering kits +1" +msgid "ironshod quarterstaff +2" +msgid_plural "ironshod quarterstaves +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "butchering kit +2" -msgid_plural "butchering kits +2" +msgid "longsword +1" +msgid_plural "longswords +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "cestus +1" -msgid_plural "cestuses +1" +msgid "longsword +2" +msgid_plural "longswords +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "cestus +2" -msgid_plural "cestuses +2" +msgid "sledge hammer +1" +msgid_plural "sledge hammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "flaming fist" -msgid_plural "flaming fists" +msgid "sledge hammer +2" +msgid_plural "sledge hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for flaming fist #: lang/json/GENERIC_from_json.py -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 "" +msgid "heavy sledge hammer +1" +msgid_plural "heavy sledge hammers +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "flaming fist +1" -msgid_plural "flaming fists +1" +msgid "heavy sledge hammer +2" +msgid_plural "heavy sledge hammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "flaming fist +2" -msgid_plural "flaming fists +2" +msgid "warhammer +1" +msgid_plural "warhammers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "gauntlet of pounding" -msgid_plural "gauntlets of pounding" +msgid "warhammer +2" +msgid_plural "warhammers +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for gauntlet of pounding #: lang/json/GENERIC_from_json.py -msgid "" -"A large gleaming metal gauntlet covered in magical symbols that allows you " -"to land astoundingly powerful blows." -msgstr "" +msgid "bat +1" +msgid_plural "bats +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "Earthshaper cestus" -msgid_plural "Earthshaper cestuses" +msgid "bat +2" +msgid_plural "bats +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Earthshaper cestus #: lang/json/GENERIC_from_json.py -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 "" +msgid "aluminum bat +1" +msgid_plural "aluminum bats +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "The Stormhammer" -msgid_plural "The Stormhammers" +msgid "aluminum bat +2" +msgid_plural "aluminum bats +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for The Stormhammer #: lang/json/GENERIC_from_json.py -msgid "" -"A crackling magical warhammer full of lightning to smite your foes with, and" -" of course, smash things to bits!" -msgstr "" +msgid "steel spear +1" +msgid_plural "steel spears +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/GENERIC_from_json.py lang/json/SPELL_from_json.py -msgid "Stormfist" -msgid_plural "Stormfists" +#: lang/json/GENERIC_from_json.py +msgid "steel spear +2" +msgid_plural "steel spears +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Stormfist -#: lang/json/GENERIC_from_json.py lang/json/SPELL_from_json.py -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 "" +#: lang/json/GENERIC_from_json.py +msgid "qiang +1" +msgid_plural "qiang +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "vicious tentacle whip" -msgid_plural "vicious tentacle whips" +msgid "qiang +2" +msgid_plural "qiang +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for vicious tentacle whip #: lang/json/GENERIC_from_json.py -msgid "" -"A long, writhing, tentacle covered in sharp bonelike blades and spikey " -"protrusions." -msgstr "" +msgid "halberd +1" +msgid_plural "halberds +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "flarewhip" -msgid_plural "flarewhips" +msgid "halberd +2" +msgid_plural "halberds +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for flarewhip #: lang/json/GENERIC_from_json.py -msgid "" -"A long whip made of blue-hot magical flames. The heat is horrendous when " -"touching an enemy." -msgstr "" +msgid "glaive +1" +msgid_plural "glaives +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "Wicked Bonespear" -msgid_plural "Wicked Bonespears" +msgid "glaive +2" +msgid_plural "glaives +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wicked Bonespear #: lang/json/GENERIC_from_json.py -msgid "This is a wicked spear/halberd hybrid entirely created of bone." -msgstr "" +msgid "naginata +1" +msgid_plural "naginata +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "flaming sword" -msgid_plural "flaming swords" +msgid "naginata +2" +msgid_plural "naginata +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for flaming sword #: lang/json/GENERIC_from_json.py -msgid "" -"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" -" up soon." -msgstr "" +msgid "mace +1" +msgid_plural "maces +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "decaying boneclub" -msgid_plural "decaying boneclubs" +msgid "mace +2" +msgid_plural "maces +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for decaying boneclub #: lang/json/GENERIC_from_json.py -msgid "" -"A pulsating club made of bone, stained with an ever-moving blood coating " -"eager to absorb the living." -msgstr "" +msgid "morningstar +1" +msgid_plural "morningstars +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "subzero talons" -msgid_plural "subzero talons" +msgid "morningstar +2" +msgid_plural "morningstars +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'subzero talons'} #: lang/json/GENERIC_from_json.py -msgid "" -"Claws made from ice, able to freeze on contact while mauling foes. You, " -"however, feel only a slight chill on your hands." -msgstr "" +msgid "jian +1" +msgid_plural "jian +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "jar of force" -msgid_plural "jars of force" +msgid "jian +2" +msgid_plural "jian +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for jar of force #: lang/json/GENERIC_from_json.py -msgid "" -"A three-liter container made out of transparent force. Can be used to store" -" liquids." -msgstr "" +msgid "scimitar +1" +msgid_plural "scimitars +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "holy sword" -msgid_plural "holy swords" +msgid "scimitar +2" +msgid_plural "scimitars +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for holy sword #: lang/json/GENERIC_from_json.py -msgid "" -"This is a summoned medieval sword, between the lighter arming sword and " -"later two-handed swords in size. It glows slightly and its edge is " -"exceedingly sharp." -msgstr "" +msgid "estoc +1" +msgid_plural "estocs +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "magical throwing knife" -msgid_plural "magical throwing knives" +msgid "estoc +2" +msgid_plural "estocs +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py -msgid "" -"A thin and flat knife made for throwing, wrapped in ethereal flames. Its " -"ineffective cutting edge and odd shape makes it unsuitable for use as a " -"tool." -msgstr "" +msgid "arming sword +1" +msgid_plural "arming swords +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py -msgid "" -"A thin and flat knife made for throwing, emanates cold. Its ineffective " -"cutting edge and odd shape makes it unsuitable for use as a tool." -msgstr "" +msgid "arming sword +2" +msgid_plural "arming swords +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py -msgid "" -"A thin and flat knife with wide edge made for throwing, seems unnaturally " -"sharp. Its ineffective cutting edge and odd shape makes it unsuitable for " -"use as a tool." -msgstr "" +msgid "broadsword +1" +msgid_plural "broadswords +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py -msgid "" -"A thin and flat knife made for throwing, made of porous substance and " -"covered in dark ooze. Its ineffective cutting edge and odd shape makes it " -"unsuitable for use as a tool." -msgstr "" +msgid "broadsword +2" +msgid_plural "broadswords +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for magical throwing knife #: lang/json/GENERIC_from_json.py -msgid "" -"A transparent blade seems to radiate intent to be thrown. Its ineffective " -"cutting edge and odd shape makes it unsuitable for use as a tool." -msgstr "" +msgid "battle axe +1" +msgid_plural "battle axes +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "parabolan felt patch" -msgid_plural "parabolan felt patches" +msgid "battle axe +2" +msgid_plural "battle axes +2" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for parabolan felt patch #: lang/json/GENERIC_from_json.py -msgid "" -"A smallish patch of iridescent felt; could be disassembled for parabolan " -"wool fiber." -msgstr "" +msgid "cavalry sabre +1" +msgid_plural "cavalry sabres +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Description for Mjölnir #: lang/json/GENERIC_from_json.py -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 "" +msgid "cavalry sabre +2" +msgid_plural "cavalry sabres +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "Gungnir" -msgid_plural "Gungnirs" +msgid "cutlass +1" +msgid_plural "cutlasses +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Gungnir #: lang/json/GENERIC_from_json.py -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 "" +msgid "cutlass +2" +msgid_plural "cutlasses +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "Gram" -msgid_plural "Grams" +msgid "fire axe +1" +msgid_plural "fire axes +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Gram #: lang/json/GENERIC_from_json.py -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 "" +msgid "fire axe +2" +msgid_plural "fire axes +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "Laevateinn" -msgid_plural "Laevateinns" +msgid "katana +1" +msgid_plural "katana +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Laevateinn #: lang/json/GENERIC_from_json.py -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 "" +msgid "katana +2" +msgid_plural "katana +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/GENERIC_from_json.py lang/json/SPELL_from_json.py -msgid "Wolfsbane" -msgid_plural "Wolfsbanes" +#: lang/json/GENERIC_from_json.py +msgid "combat knife +1" +msgid_plural "combat knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Wolfsbane #: lang/json/GENERIC_from_json.py -msgid "" -"Wolfsbane pikes are generally antiques brought over from Europe. Forged " -"during the days when the Black Forest went from France to Transylvania, " -"these spears targeted the Loup Garou that were weak against fire." -msgstr "" +msgid "combat knife +2" +msgid_plural "combat knives +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "orichalcum ingot" -msgid_plural "orichalcum ingots" +msgid "survival knife +1" +msgid_plural "survival knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for orichalcum ingot #: lang/json/GENERIC_from_json.py -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 "" +msgid "survival knife +2" +msgid_plural "survival knives +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "mithril ingot" -msgid_plural "mithril ingots" +msgid "trench knife +1" +msgid_plural "trench knives +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for mithril ingot #: lang/json/GENERIC_from_json.py -msgid "" -"An ingot of mithril. About 3 cm by 7 cm by 12 cm in size, ready to be used " -"for various blacksmithing tasks." -msgstr "" +msgid "trench knife +2" +msgid_plural "trench knives +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "cauldron of purification" -msgid_plural "cauldrons of purification" +msgid "kris +1" +msgid_plural "krises +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for cauldron of purification #: lang/json/GENERIC_from_json.py -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 "" +msgid "kris +2" +msgid_plural "krises +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "orichalcum cauldron" -msgid_plural "orichalcum cauldrons" +msgid "kukri +1" +msgid_plural "kukris +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for orichalcum cauldron #: lang/json/GENERIC_from_json.py -msgid "" -"This is an alchemical cauldron made of orichalcum. The metal is especially " -"resistant to the unique types of corrosion caused by alchemy." -msgstr "" +msgid "kukri +2" +msgid_plural "kukris +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "fireproof mortar" -msgid_plural "fireproof mortar" +msgid "nodachi +1" +msgid_plural "nodachi +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} #: lang/json/GENERIC_from_json.py -msgid "" -"Some alchemical mortar, ready to be used in building projects expecting " -"temperatures on par with dragonbreath." -msgstr "" +msgid "nodachi +2" +msgid_plural "nodachi +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "greatclub" -msgid_plural "greatclubs" +msgid "pickaxe +1" +msgid_plural "pickaxes +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for greatclub #: lang/json/GENERIC_from_json.py -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 "" +msgid "pickaxe +2" +msgid_plural "pickaxes +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lang/json/GENERIC_from_json.py -msgid "wood trident" -msgid_plural "wood tridents" +msgid "pike +1" +msgid_plural "pikes +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wood trident #: lang/json/GENERIC_from_json.py -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 "" +msgid "pike +2" +msgid_plural "pikes +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/GENERIC_from_json.py lang/json/gun_from_json.py -msgid "barbed javelin" -msgid_plural "barbed javelins" +#: lang/json/GENERIC_from_json.py +msgid "rapier +1" +msgid_plural "rapiers +1" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for barbed javelin +#: lang/json/GENERIC_from_json.py +msgid "rapier +2" +msgid_plural "rapiers +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "tanto +1" +msgid_plural "tanto +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "tanto +2" +msgid_plural "tanto +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "wakizashi +1" +msgid_plural "wakizashi +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "wakizashi +2" +msgid_plural "wakizashi +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "zweihänder +1" +msgid_plural "zweihänders +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "zweihänder +2" +msgid_plural "zweihänders +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "khopesh +1" +msgid_plural "khopeshes +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "khopesh +2" +msgid_plural "khopeshes +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "xiphos +1" +msgid_plural "xiphe +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "xiphos +2" +msgid_plural "xiphe +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "dao +1" +msgid_plural "dao +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "dao +2" +msgid_plural "dao +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "lucerne hammer +1" +msgid_plural "lucerne hammers +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "lucerne hammer +2" +msgid_plural "lucerne hammers +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "Biomancer spear" +msgid_plural "Biomancer spears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Biomancer spear #: lang/json/GENERIC_from_json.py 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 grotesque bone spearhead on a stout wooden pole. There is a Biomancer " +"rune embedded at the base of the head." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "foldable orichalcum frame" -msgid_plural "foldable orichalcum frames" +#: lang/json/GENERIC_from_json.py +msgid "Biomancer shifting spear" +msgid_plural "Biomancer shifting spears" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for foldable orichalcum frame +#. ~ Use action msg for Biomancer shifting spear. +#: lang/json/GENERIC_from_json.py +msgid "You feel the spear rapidly contracting and squirming for ranged combat" +msgstr "" + +#. ~ Description for Biomancer shifting spear #: lang/json/GENERIC_from_json.py msgid "" -"A folding frame made of orichalcum pipes. Not as light as aluminum, but " -"significantly sturdier." +"A grotesque bone spearhead on a hardened flesh pole. There is a Biomancer " +"rune embedded in the middle. You feel this spear squirming in your hand as " +"if alive." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "orichalcum frame" -msgid_plural "orichalcum frames" +#: lang/json/GENERIC_from_json.py +msgid "Technomancer toolbar" +msgid_plural "Technomancer toolbars" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for orichalcum frame +#. ~ Description for Technomancer toolbar #: lang/json/GENERIC_from_json.py msgid "" -"A frame made of orichalcum. Significantly sturdier than steel, but also " -"much more expensive." +"This staff incorporates a sturdy cresent wrench on top of a prybar and a " +"hammer on the other in a convenient package. There is a Technomancer rune " +"embedded in the hammerhead." msgstr "" -#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py -msgid "light orichalcum frame" -msgid_plural "light orichalcum frames" +#: lang/json/GENERIC_from_json.py +msgid "Magus staff" +msgid_plural "Magus staves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for light orichalcum frame +#. ~ Description for Magus staff #: lang/json/GENERIC_from_json.py msgid "" -"A frame made of orichalcum. Partially torn down in order to reduce weight " -"at the cost of durability." +"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 "" #: lang/json/GENERIC_from_json.py -msgid "magic v-twin combustion engine" -msgid_plural "magic v-twin combustion engines" +msgid "Magus battle staff" +msgid_plural "Magus battle staves" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for magic v-twin combustion engine +#. ~ Description for Magus battle staff #: lang/json/GENERIC_from_json.py msgid "" -"A magically manifested combustion engine. Despite operating entirely off of" -" mana rather than normal fuel, it otherwise functions exactly as a " -"conventional internal combustion engine." +"A quarterstaff with runes carved into it and two mana pearls at the tip, " +"enchanted with mana for durability. It fills you with an invigorating " +"sensation. There are two Magi runes carved into the wood." msgstr "" -#. ~ Use action friendly_msg for broken chickenbot. -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py -msgid "The chicken bot rolls out and begins acquiring targets." -msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "Kelvinist flamberge" +msgid_plural "Kelvinist flamberges" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Use action hostile_msg for broken chickenbot. -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +#. ~ Description for Kelvinist flamberge +#: lang/json/GENERIC_from_json.py msgid "" -"The chicken bot swivels its turret and aims directly at you. Don your brown" -" pants!" +"A sword with an undulating blade, reminiscent of a flame. There is a " +"Kelvinist rune embedded in the pommel." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "chicken walker chassis" -msgid_plural "chicken walker chassis" +msgid "Stormshaper axe" +msgid_plural "Stormshaper axes" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for Stormshaper axe #: lang/json/GENERIC_from_json.py msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the chicken walker." +"A forged copper axe with silver trimmings and a wooden handle. There is a " +"Stormshaper rune embedded in the eye." msgstr "" #: lang/json/GENERIC_from_json.py -msgid "Beagle chassis" -msgid_plural "Beagle chassis" +msgid "Animist athame" +msgid_plural "Animist athames" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Animist athame #: lang/json/GENERIC_from_json.py msgid "" -"What's left when you remove all moving parts and electronics. It's the " -"skeleton and armor of the Beagle tank." +"A steel ritual knife used by Animists to draw blood for summoning. Their " +"school rune is embedded in the crossguard." msgstr "" -#: lang/json/ITEM_CATEGORY_from_json.py -msgid "GUNS" -msgstr "СТРІЛЕЦЬКА ЗБРОЯ" +#: lang/json/GENERIC_from_json.py +msgid "springstaff(baton)" +msgid_plural "springstaves(baton)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Crafting recipes subcategory of 'WEAPON' category -#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py -msgid "MAGAZINES" +#. ~ Use action menu_text for springstaff(baton). +#: lang/json/GENERIC_from_json.py +msgid "Extend to staff" msgstr "" -#. ~ Crafting recipes category name -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py -msgid "AMMO" -msgstr "БОЄПРИПАСИ" - -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py -msgid "WEAPONS" -msgstr "ЗБРОЯ" +#. ~ Use action msg for springstaff(baton). +#: lang/json/GENERIC_from_json.py +msgid "You snap open your springstaff into staff mode." +msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py -msgid "TOOLS" -msgstr "ІНСТРУМЕНТИ" +#. ~ Description for springstaff(baton) +#: lang/json/GENERIC_from_json.py +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips retracted while in baton configuration. Activate to extend." +msgstr "" -#: lang/json/ITEM_CATEGORY_from_json.py -msgid "CLOTHING" -msgstr "ОДЯГ" +#: lang/json/GENERIC_from_json.py +msgid "springstaff(staff)" +msgid_plural "springstaves(staff)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Crafting recipes category name -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py -msgid "FOOD" -msgstr "ЇЖА" +#. ~ Use action menu_text for springstaff(staff). +#: lang/json/GENERIC_from_json.py +msgid "Retract to baton" +msgstr "" -#. ~ Crafting recipes subcategory of 'CHEM' category -#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py -msgid "DRUGS" -msgstr "ПРЕПАРАТИ" +#. ~ Use action msg for springstaff(staff). +#: lang/json/GENERIC_from_json.py +msgid "You collapse your springstaff into baton mode." +msgstr "" -#: lang/json/ITEM_CATEGORY_from_json.py -msgid "BOOKS" -msgstr "КНИГИ" +#. ~ Description for springstaff(staff) +#: lang/json/GENERIC_from_json.py +msgid "" +"This versatile weapon uses Technomancy-enhanced springs to keep the staff " +"tips from retracting while in staff configuration. Activate to extend." +msgstr "" -#: lang/json/ITEM_CATEGORY_from_json.py -msgid "MAPS" -msgstr "МАПИ" +#: lang/json/GENERIC_from_json.py +msgid "endless flask" +msgid_plural "endless flasks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#. ~ Crafting recipes subcategory of 'WEAPON' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py -msgid "MODS" +#. ~ Use action msg for endless flask. +#: lang/json/GENERIC_from_json.py +msgid "You open the flask and discover it full of sweet, sweet, whiskey!" msgstr "" -#: lang/json/ITEM_CATEGORY_from_json.py -msgid "MUTAGENS" -msgstr "МУТАГЕНИ" +#: lang/json/GENERIC_from_json.py +msgid "magic token" +msgid_plural "magic tokens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: lang/json/ITEM_CATEGORY_from_json.py src/player_display.cpp -msgid "BIONICS" +#: lang/json/GENERIC_from_json.py +msgid "longsword token" +msgid_plural "longsword tokens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action menu_text for longsword token. +#. ~ Use action menu_text for arming sword token. +#. ~ Use action menu_text for broadsword token. +#. ~ Use action menu_text for battleaxe token. +#. ~ Use action menu_text for pike token. +#. ~ Use action menu_text for mace token. +#. ~ Use action menu_text for quarterstaff token. +#. ~ Use action menu_text for hammer token. +#. ~ Use action menu_text for screwdriver set token. +#. ~ Use action menu_text for crowbar token. +#: lang/json/GENERIC_from_json.py +msgid "Whisper command" msgstr "" -#: lang/json/ITEM_CATEGORY_from_json.py -msgid "CURRENCY" +#. ~ Use action msg for longsword token. +#: lang/json/GENERIC_from_json.py +msgid "" +"You say the command word engraved on the token, and it rapidly grows and " +"morphs into a shiny pristine longsword!" msgstr "" -#: lang/json/ITEM_CATEGORY_from_json.py -msgid "VEHICLE PARTS" -msgstr "ДЕТАЛІ МАШИН" +#. ~ Description for longsword token +#: lang/json/GENERIC_from_json.py +msgid "" +"A large 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 "" -#. ~ Crafting recipes subcategory of 'WEAPON' category -#. ~ Crafting recipes subcategory of 'AMMO' category +#: lang/json/GENERIC_from_json.py +msgid "arming sword token" +msgid_plural "arming sword tokens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action msg for arming sword token. +#: lang/json/GENERIC_from_json.py +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 arming sword token +#: lang/json/GENERIC_from_json.py +msgid "" +"A 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 "" + +#: lang/json/GENERIC_from_json.py +msgid "broadsword token" +msgid_plural "broadsword tokens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action msg for broadsword token. +#: lang/json/GENERIC_from_json.py +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 +#: lang/json/GENERIC_from_json.py +msgid "" +"A large 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 "" + +#: lang/json/GENERIC_from_json.py +msgid "battleaxe token" +msgid_plural "battleaxe tokens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action msg for battleaxe token. +#: lang/json/GENERIC_from_json.py +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 battleaxe token +#: lang/json/GENERIC_from_json.py +msgid "" +"A large 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 "" + +#: lang/json/GENERIC_from_json.py +msgid "pike token" +msgid_plural "pike tokens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action msg for pike token. +#: lang/json/GENERIC_from_json.py +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 +#: lang/json/GENERIC_from_json.py +msgid "" +"A large 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 "" + +#: lang/json/GENERIC_from_json.py +msgid "mace token" +msgid_plural "mace tokens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action msg for mace token. +#: lang/json/GENERIC_from_json.py +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 +#: lang/json/GENERIC_from_json.py +msgid "" +"A large 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 "" + +#: lang/json/GENERIC_from_json.py +msgid "quarterstaff token" +msgid_plural "quarterstaff tokens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action msg for quarterstaff token. +#: lang/json/GENERIC_from_json.py +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 +#: lang/json/GENERIC_from_json.py +msgid "" +"A large 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 "" + +#: lang/json/GENERIC_from_json.py +msgid "hammer token" +msgid_plural "hammer tokens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action msg for hammer token. +#: lang/json/GENERIC_from_json.py +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 +#: lang/json/GENERIC_from_json.py +msgid "" +"A large 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 "" + +#: lang/json/GENERIC_from_json.py +msgid "screwdriver set token" +msgid_plural "screwdriver set tokens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action msg for screwdriver set token. +#: lang/json/GENERIC_from_json.py +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 +#: lang/json/GENERIC_from_json.py +msgid "" +"A large 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 "" + +#: lang/json/GENERIC_from_json.py +msgid "crowbar token" +msgid_plural "crowbar tokens" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Use action msg for crowbar token. +#: lang/json/GENERIC_from_json.py +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 +#: lang/json/GENERIC_from_json.py +msgid "" +"A large 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 "" + +#: lang/json/GENERIC_from_json.py +msgid "crowbar +1" +msgid_plural "crowbars +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "crowbar +2" +msgid_plural "crowbars +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "hunting knife +1" +msgid_plural "hunting knives +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "hunting knife +2" +msgid_plural "hunting knives +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "bottle jack +1" +msgid_plural "bottle jacks +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "bottle jack +2" +msgid_plural "bottle jacks +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "scalpel +1" +msgid_plural "scalpels +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "scalpel +2" +msgid_plural "scalpels +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "butcher knife +1" +msgid_plural "butcher knives +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "butcher knife +2" +msgid_plural "butcher knives +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "meat cleaver +1" +msgid_plural "meat cleavers +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "meat cleaver +2" +msgid_plural "meat cleavers +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "carving knife +1" +msgid_plural "carving knives +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "carving knife +2" +msgid_plural "carving knives +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "butchering kit +1" +msgid_plural "butchering kits +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "butchering kit +2" +msgid_plural "butchering kits +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "cestus +1" +msgid_plural "cestuses +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "cestus +2" +msgid_plural "cestuses +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "flaming fist" +msgid_plural "flaming fists" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for flaming fist +#: lang/json/GENERIC_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py +msgid "flaming fist +1" +msgid_plural "flaming fists +1" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "flaming fist +2" +msgid_plural "flaming fists +2" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/GENERIC_from_json.py +msgid "gauntlet of pounding" +msgid_plural "gauntlets of pounding" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for gauntlet of pounding +#: lang/json/GENERIC_from_json.py +msgid "" +"A large gleaming metal gauntlet covered in magical symbols that allows you " +"to land astoundingly powerful blows." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "Earthshaper cestus" +msgid_plural "Earthshaper cestuses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Earthshaper cestus +#: lang/json/GENERIC_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py +msgid "The Stormhammer" +msgid_plural "The Stormhammers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for The Stormhammer +#: lang/json/GENERIC_from_json.py +msgid "" +"A crackling magical warhammer full of lightning to smite your foes with, and" +" of course, smash things to bits!" +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/SPELL_from_json.py +msgid "Stormfist" +msgid_plural "Stormfists" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Stormfist +#: lang/json/GENERIC_from_json.py lang/json/SPELL_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py +msgid "vicious tentacle whip" +msgid_plural "vicious tentacle whips" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for vicious tentacle whip +#: lang/json/GENERIC_from_json.py +msgid "" +"A long, writhing, tentacle covered in sharp bonelike blades and spikey " +"protrusions." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "flarewhip" +msgid_plural "flarewhips" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for flarewhip +#: lang/json/GENERIC_from_json.py +msgid "" +"A long whip made of blue-hot magical flames. The heat is horrendous when " +"touching an enemy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "Wicked Bonespear" +msgid_plural "Wicked Bonespears" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Wicked Bonespear +#: lang/json/GENERIC_from_json.py +msgid "This is a wicked spear/halberd hybrid entirely created of bone." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "flaming sword" +msgid_plural "flaming swords" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for flaming sword +#: lang/json/GENERIC_from_json.py +msgid "" +"This wooden sword is ablaze! It seems to be safe-ish to hold, but will burn" +" up soon." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "decaying boneclub" +msgid_plural "decaying boneclubs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for decaying boneclub +#: lang/json/GENERIC_from_json.py +msgid "" +"A pulsating club made of bone, stained with an ever-moving blood coating " +"eager to absorb the living." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "subzero talons" +msgid_plural "subzero talons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for subzero talons +#: lang/json/GENERIC_from_json.py +msgid "" +"Claws made from ice, able to freeze on contact while mauling foes. You, " +"however, feel only a slight chill on your hands." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "jar of force" +msgid_plural "jars of force" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for jar of force +#: lang/json/GENERIC_from_json.py +msgid "" +"A three-liter container made out of transparent force. Can be used to store" +" liquids." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "holy sword" +msgid_plural "holy swords" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for holy sword +#: lang/json/GENERIC_from_json.py +msgid "" +"This is a summoned medieval sword, between the lighter arming sword and " +"later two-handed swords in size. It glows slightly and its edge is " +"exceedingly sharp." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "magical throwing knife" +msgid_plural "magical throwing knives" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for magical throwing knife +#: lang/json/GENERIC_from_json.py +msgid "" +"A thin and flat knife made for throwing, wrapped in ethereal flames. Its " +"ineffective cutting edge and odd shape makes it unsuitable for use as a " +"tool." +msgstr "" + +#. ~ Description for magical throwing knife +#: lang/json/GENERIC_from_json.py +msgid "" +"A thin and flat knife made for throwing, emanates cold. Its ineffective " +"cutting edge and odd shape makes it unsuitable for use as a tool." +msgstr "" + +#. ~ Description for magical throwing knife +#: lang/json/GENERIC_from_json.py +msgid "" +"A thin and flat knife with wide edge made for throwing, seems unnaturally " +"sharp. Its ineffective cutting edge and odd shape makes it unsuitable for " +"use as a tool." +msgstr "" + +#. ~ Description for magical throwing knife +#: lang/json/GENERIC_from_json.py +msgid "" +"A thin and flat knife made for throwing, made of porous substance and " +"covered in dark ooze. Its ineffective cutting edge and odd shape makes it " +"unsuitable for use as a tool." +msgstr "" + +#. ~ Description for magical throwing knife +#: lang/json/GENERIC_from_json.py +msgid "" +"A transparent blade seems to radiate intent to be thrown. Its ineffective " +"cutting edge and odd shape makes it unsuitable for use as a tool." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "parabolan felt patch" +msgid_plural "parabolan felt patches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for parabolan felt patch +#: lang/json/GENERIC_from_json.py +msgid "" +"A smallish patch of iridescent felt; could be disassembled for parabolan " +"wool fiber." +msgstr "" + +#. ~ Description for Mjölnir +#: lang/json/GENERIC_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py +msgid "Gungnir" +msgid_plural "Gungnirs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Gungnir +#: lang/json/GENERIC_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py +msgid "Gram" +msgid_plural "Grams" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Gram +#: lang/json/GENERIC_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py +msgid "Laevateinn" +msgid_plural "Laevateinns" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Laevateinn +#: lang/json/GENERIC_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py lang/json/SPELL_from_json.py +msgid "Wolfsbane" +msgid_plural "Wolfsbanes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Wolfsbane +#: lang/json/GENERIC_from_json.py +msgid "" +"Wolfsbane pikes are generally antiques brought over from Europe. Forged " +"during the days when the Black Forest went from France to Transylvania, " +"these spears targeted the Loup Garou that were weak against fire." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "orichalcum ingot" +msgid_plural "orichalcum ingots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for orichalcum ingot +#: lang/json/GENERIC_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py +msgid "mithril ingot" +msgid_plural "mithril ingots" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for mithril ingot +#: lang/json/GENERIC_from_json.py +msgid "" +"An ingot of mithril. About 3 cm by 7 cm by 12 cm in size, ready to be used " +"for various blacksmithing tasks." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cauldron of purification" +msgid_plural "cauldrons of purification" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for cauldron of purification +#: lang/json/GENERIC_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py +msgid "orichalcum cauldron" +msgid_plural "orichalcum cauldrons" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for orichalcum cauldron +#: lang/json/GENERIC_from_json.py +msgid "" +"This is an alchemical cauldron made of orichalcum. The metal is especially " +"resistant to the unique types of corrosion caused by alchemy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "fireproof mortar" +msgid_plural "fireproof mortar" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for fireproof mortar +#: lang/json/GENERIC_from_json.py +msgid "" +"Some alchemical mortar, ready to be used in building projects expecting " +"temperatures on par with dragonbreath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "greatclub" +msgid_plural "greatclubs" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for greatclub +#: lang/json/GENERIC_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py +msgid "wood trident" +msgid_plural "wood tridents" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for wood trident +#: lang/json/GENERIC_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py lang/json/gun_from_json.py +msgid "barbed javelin" +msgid_plural "barbed javelins" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for barbed javelin +#: lang/json/GENERIC_from_json.py +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 "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "foldable orichalcum frame" +msgid_plural "foldable orichalcum frames" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for foldable orichalcum frame +#: lang/json/GENERIC_from_json.py +msgid "" +"A folding frame made of orichalcum pipes. Not as light as aluminum, but " +"significantly sturdier." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "orichalcum frame" +msgid_plural "orichalcum frames" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for orichalcum frame +#: lang/json/GENERIC_from_json.py +msgid "" +"A frame made of orichalcum. Significantly sturdier than steel, but also " +"much more expensive." +msgstr "" + +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "light orichalcum frame" +msgid_plural "light orichalcum frames" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for light orichalcum frame +#: lang/json/GENERIC_from_json.py +msgid "" +"A frame made of orichalcum. Partially torn down in order to reduce weight " +"at the cost of durability." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "magic v-twin combustion engine" +msgid_plural "magic v-twin combustion engines" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for magic v-twin combustion engine +#: lang/json/GENERIC_from_json.py +msgid "" +"A magically manifested combustion engine. Despite operating entirely off of" +" mana rather than normal fuel, it otherwise functions exactly as a " +"conventional internal combustion engine." +msgstr "" + +#. ~ Use action friendly_msg for broken chickenbot. +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +msgid "The chicken bot rolls out and begins acquiring targets." +msgstr "" + +#. ~ Use action hostile_msg for broken chickenbot. +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py +msgid "" +"The chicken bot swivels its turret and aims directly at you. Don your brown" +" pants!" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "chicken walker chassis" +msgid_plural "chicken walker chassis" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for chicken walker chassis +#: lang/json/GENERIC_from_json.py +msgid "" +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the chicken walker." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "Beagle chassis" +msgid_plural "Beagle chassis" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Beagle chassis +#: lang/json/GENERIC_from_json.py +msgid "" +"What's left when you remove all moving parts and electronics. It's the " +"skeleton and armor of the Beagle tank." +msgstr "" + +#: lang/json/ITEM_CATEGORY_from_json.py +msgid "GUNS" +msgstr "СТРІЛЕЦЬКА ЗБРОЯ" + +#. ~ Crafting recipes subcategory of 'WEAPON' category +#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py +msgid "MAGAZINES" +msgstr "" + +#. ~ Crafting recipes category name +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py +msgid "AMMO" +msgstr "БОЄПРИПАСИ" + +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py +msgid "WEAPONS" +msgstr "ЗБРОЯ" + +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py +msgid "TOOLS" +msgstr "ІНСТРУМЕНТИ" + +#: lang/json/ITEM_CATEGORY_from_json.py +msgid "CLOTHING" +msgstr "ОДЯГ" + +#. ~ Crafting recipes category name +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py +msgid "FOOD" +msgstr "ЇЖА" + +#. ~ Crafting recipes subcategory of 'CHEM' category +#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py +msgid "DRUGS" +msgstr "ПРЕПАРАТИ" + +#: lang/json/ITEM_CATEGORY_from_json.py +msgid "BOOKS" +msgstr "КНИГИ" + +#: lang/json/ITEM_CATEGORY_from_json.py +msgid "MAPS" +msgstr "МАПИ" + +#. ~ Crafting recipes subcategory of 'WEAPON' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: lang/json/ITEM_CATEGORY_from_json.py lang/json/recipe_category_from_json.py +msgid "MODS" +msgstr "" + +#: lang/json/ITEM_CATEGORY_from_json.py +msgid "MUTAGENS" +msgstr "МУТАГЕНИ" + +#: lang/json/ITEM_CATEGORY_from_json.py src/player_display.cpp +msgid "BIONICS" +msgstr "" + +#: lang/json/ITEM_CATEGORY_from_json.py +msgid "CURRENCY" +msgstr "" + +#: lang/json/ITEM_CATEGORY_from_json.py +msgid "VEHICLE PARTS" +msgstr "ДЕТАЛІ МАШИН" + +#. ~ Crafting recipes subcategory of 'WEAPON' category +#. ~ Crafting recipes subcategory of 'AMMO' category #. ~ Crafting recipes subcategory of 'FOOD' category #. ~ Crafting recipes subcategory of 'CHEM' category #. ~ Crafting recipes subcategory of 'ELECTRONIC' category @@ -83845,6 +84195,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "" @@ -83989,8 +84350,8 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -84377,6 +84738,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "" @@ -84829,7 +85195,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "" @@ -84842,7 +85208,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "" @@ -84855,7 +85221,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "" @@ -84868,7 +85234,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "" @@ -84881,7 +85247,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "" @@ -85039,7 +85405,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -85054,7 +85420,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "" @@ -85067,7 +85433,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -85082,7 +85448,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -85097,7 +85463,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -85140,7 +85506,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "" @@ -85153,7 +85519,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "" @@ -85180,7 +85546,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "" @@ -85193,7 +85559,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "" @@ -85206,7 +85572,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -85219,7 +85585,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "" @@ -85232,7 +85598,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -85247,7 +85613,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "" @@ -85288,7 +85654,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "" @@ -85301,7 +85667,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "" @@ -85414,7 +85780,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -85445,7 +85811,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -85480,7 +85846,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -85495,7 +85861,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -85510,7 +85876,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -86257,7 +86623,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -86472,7 +86838,7 @@ msgstr[3] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -88362,7 +88728,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -88585,7 +88951,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -88766,7 +89132,7 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -89088,10 +89454,11 @@ msgstr[3] "" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -89102,6 +89469,19 @@ msgstr "" msgid "This monster exists only for testing purposes." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -91625,7 +92005,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -91642,7 +92022,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -91840,7 +92220,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -91975,17 +92355,18 @@ msgstr[3] "зомбі-обгорільчик" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -92477,7 +92858,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -92527,7 +92908,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -92543,7 +92924,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -93088,7 +93469,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -95199,7 +95580,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -95815,7 +96196,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -95830,7 +96211,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -95845,7 +96226,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -95861,7 +96242,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -95877,7 +96258,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -95892,7 +96273,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -95908,13 +96289,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" @@ -95923,7 +96319,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -95938,7 +96334,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -95953,7 +96349,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -95968,7 +96364,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -95983,7 +96379,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -96013,7 +96409,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -96028,7 +96424,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -96073,7 +96469,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -96088,7 +96484,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -96103,7 +96499,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -96118,7 +96514,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -96131,7 +96527,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -96146,7 +96542,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -96161,7 +96557,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -96176,7 +96572,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -96191,7 +96587,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -96205,7 +96601,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -96220,7 +96616,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -96235,7 +96631,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -96249,7 +96645,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -96264,7 +96660,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -96279,7 +96675,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -96292,7 +96688,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -96307,7 +96703,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -96322,7 +96718,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -96335,7 +96731,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -96350,7 +96746,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -96365,7 +96761,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -96380,7 +96776,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -96396,7 +96792,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -96411,7 +96807,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -96426,7 +96822,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -96441,7 +96837,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -96456,7 +96852,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -96471,7 +96867,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -96486,7 +96882,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -96501,7 +96897,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -96516,7 +96912,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -96531,7 +96927,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -96546,7 +96942,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -96561,7 +96957,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -96576,7 +96972,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -96691,6 +97087,22 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -97284,24 +97696,24 @@ msgstr[2] "" msgstr[3] "" #: lang/json/MONSTER_from_json.py -msgid "red and green hatchling" -msgid_plural "red and green hatchlings" +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/MONSTER_from_json.py -msgid "dark gray and white hatchling" -msgid_plural "dark gray and white hatchlings" +msgid "red and green hatchling" +msgid_plural "red and green hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" +msgid "dark gray and white hatchling" +msgid_plural "dark gray and white hatchlings" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -97379,7 +97791,6 @@ msgstr[2] "" msgstr[3] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -97402,29 +97813,102 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -97685,6 +98169,21 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -97813,7 +98312,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -98339,6 +98838,7 @@ msgstr[3] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -98398,6 +98898,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -98880,6 +99388,21 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -98918,7 +99441,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -98933,7 +99456,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -98949,7 +99472,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -99015,7 +99538,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -99088,7 +99611,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -99366,14 +99889,29 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99382,76 +99920,77 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99459,14 +99998,14 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99475,14 +100014,14 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -99491,18 +100030,18 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -99536,7 +100075,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -99551,7 +100090,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99566,7 +100106,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -99581,13 +100121,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" @@ -99596,7 +100144,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99611,7 +100159,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -99641,7 +100189,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -99655,7 +100203,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99670,8 +100218,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -99694,7 +100242,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -99710,7 +100258,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -99725,7 +100273,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -99740,7 +100288,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -99755,7 +100303,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -99770,7 +100318,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -99785,7 +100333,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -99800,7 +100348,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -99815,7 +100363,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -99831,7 +100379,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -99847,7 +100395,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -99862,7 +100410,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -99877,7 +100425,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -99892,7 +100440,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -99907,7 +100455,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -99922,7 +100470,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -99937,7 +100485,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -99952,7 +100500,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -99967,7 +100515,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -99982,7 +100530,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -99997,7 +100545,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -100012,7 +100560,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -100027,7 +100575,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -100042,7 +100590,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -100058,7 +100606,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -100074,7 +100622,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -100089,7 +100637,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -100104,7 +100652,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -100151,7 +100699,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -100169,7 +100717,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -100524,7 +101072,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -100872,7 +101420,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -101023,6 +101571,24 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -101342,7 +101908,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -101664,7 +102230,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -106846,7 +107412,7 @@ msgstr[3] "" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -106890,7 +107456,7 @@ msgstr "" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -107904,7 +108470,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -108574,17 +109140,17 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -108593,7 +109159,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -108846,7 +109412,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -108862,6 +109427,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -109250,7 +109823,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -109959,7 +110532,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -110044,7 +110617,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -110908,7 +111481,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -112917,7 +113490,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -112925,7 +113498,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -113016,7 +113589,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -113072,7 +113645,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -113080,7 +113653,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -113114,7 +113687,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -113209,14 +113782,14 @@ msgid "" "battle a stylish battle." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -113230,7 +113803,7 @@ msgid "" "supposed to be that bendy." msgstr "" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -113414,7 +113987,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -114274,7 +114847,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -116884,8 +117457,8 @@ msgstr "У потужного ліхтарика вичерпався заряд #: lang/json/TOOL_from_json.py msgid "" "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." +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." msgstr "" #: lang/json/TOOL_from_json.py @@ -117665,6 +118238,45 @@ msgstr[3] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -118459,7 +119071,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "" @@ -118472,7 +119084,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "" @@ -118522,6 +119134,36 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -119135,7 +119777,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -119151,7 +119793,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -119694,8 +120336,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" @@ -119705,8 +120347,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" @@ -119716,8 +120358,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" @@ -119727,8 +120369,8 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" @@ -119738,7 +120380,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -120239,7 +120881,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -120494,13 +121136,13 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -120515,13 +121157,13 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -121049,6 +121691,23 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -121378,13 +122037,30 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -121446,6 +122122,37 @@ msgid "" "to have the right tools for more precise work." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -121589,20 +122296,52 @@ msgid "" msgstr "" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for wrench +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -121944,38 +122683,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -122008,6 +122715,14 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -122258,8 +122973,8 @@ msgstr[3] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -122762,7 +123477,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -123230,7 +123945,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -123277,7 +123992,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -123297,7 +124012,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -124466,6 +125181,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -124525,6 +125249,30 @@ msgstr[3] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -125477,7 +126225,7 @@ msgid "Fashion Designer" msgstr "" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." +msgid "From catwalk to cataclysm." msgstr "" #: lang/json/achievement_from_json.py @@ -125954,6 +126702,10 @@ msgstr "" msgid "mining" msgstr "" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "" @@ -126826,15 +127578,14 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" +msgid "Intradermal Alloy - Arms" msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -126850,37 +127601,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" +msgid "Intradermal Alloy - head" msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" +msgid "Intradermal Alloy - Legs" msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" +msgid "Intradermal Alloy - torso" msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -126891,8 +127641,8 @@ msgstr "" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -132415,7 +133165,7 @@ msgstr "" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -137386,8 +138136,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "" @@ -137403,9 +138152,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "" @@ -138081,7 +138829,7 @@ msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "" @@ -140356,7 +141104,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "" @@ -140480,6 +141229,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -143220,8 +143983,8 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -143229,7 +143992,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -143390,8 +144153,8 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -143399,9 +144162,9 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -144518,8 +145281,8 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -144527,7 +145290,7 @@ msgstr[3] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -147140,6 +147903,21 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -150007,8 +150785,9 @@ msgstr[3] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" #: lang/json/gunmod_from_json.py @@ -150022,10 +150801,10 @@ msgstr[3] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -150603,17 +151382,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" +msgid "You gut and fillet the fish." msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You crack open its hard shell to get at the flesh beneath." msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -152943,6 +153726,11 @@ msgstr "" "Цей якісно виготовлений предмет у ролі зброї здатен " "витримати серйозні навантаження під час бою." +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -153792,6 +154580,13 @@ msgstr "" msgid "You can craft here." msgstr "" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "" @@ -153960,6 +154755,10 @@ msgstr "" msgid "Change side armor is worn on" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "" @@ -155072,6 +155871,10 @@ msgstr "" msgid "Move cursor down" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "" @@ -155272,6 +156075,20 @@ msgstr "" msgid "No" msgstr "" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "" @@ -156854,15 +157671,15 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." msgstr "" #: lang/json/magazine_from_json.py @@ -156934,15 +157751,15 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -157663,15 +158480,15 @@ msgid "" msgstr "" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." +msgid "A standard capacity magazine for use with the FN Five-seveN." msgstr "" #: lang/json/magazine_from_json.py @@ -161430,6 +162247,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -161852,8 +162679,8 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -161877,7 +162704,8 @@ msgstr "" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -161891,7 +162719,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -161904,9 +162732,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "" @@ -162066,7 +162923,7 @@ msgstr "" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -162081,7 +162938,8 @@ msgstr "" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' @@ -162111,17 +162969,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" +msgid "Crane's Stance" msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -162132,10 +162989,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -162146,9 +163017,10 @@ msgstr "" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' @@ -162163,33 +163035,54 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" +msgid "Dragon's Knowledge" msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" +"\n" +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" msgstr "" #: lang/json/martial_art_from_json.py @@ -162280,6 +163173,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "" @@ -162337,7 +163244,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -162351,8 +163258,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -162366,6 +163274,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -162417,6 +163326,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "" @@ -162502,6 +163424,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "" @@ -162648,6 +163585,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "" @@ -162984,16 +163936,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -163096,7 +164049,7 @@ msgstr "" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -163203,33 +164156,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" +msgid "Cross Hands" msgstr "" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" +msgid "Repulse the Monkey" msgstr "" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -163350,7 +164303,7 @@ msgstr "" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -163548,6 +164501,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -163608,10 +164576,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -163712,10 +164681,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -164359,7 +165329,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -164369,11 +165354,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -164467,6 +165453,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -164479,21 +165479,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -164571,6 +165572,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -166203,7 +167218,7 @@ msgstr "" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -166398,7 +167413,7 @@ msgstr "" msgid "Refuel your helicopter." msgstr "" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -166603,7 +167618,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -166657,8 +167672,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -166818,7 +167832,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "" @@ -166832,7 +167846,7 @@ msgstr "" msgid "Lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "" @@ -166871,7 +167885,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "" @@ -166906,7 +167920,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "" @@ -166937,7 +167951,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "" @@ -166979,7 +167993,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -167021,16 +168035,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "" @@ -167077,7 +168125,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "" @@ -167127,7 +168175,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "" @@ -167169,7 +168217,7 @@ msgstr "" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "" @@ -167218,7 +168266,7 @@ msgstr "" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -167245,7 +168293,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -167280,7 +168328,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -168148,7 +169196,7 @@ msgstr "" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -168183,7 +169231,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -168220,7 +169268,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -168255,7 +169303,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -168283,7 +169331,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -168335,7 +169383,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -168366,7 +169414,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -168395,7 +169443,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -168425,7 +169473,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -168694,8 +169742,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -169096,7 +170143,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -169137,7 +170184,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -169164,7 +170211,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -169246,7 +170293,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -169283,7 +170330,7 @@ msgstr "" msgid "Smokes, let's go." msgstr "" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -169327,7 +170374,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -169376,7 +170423,7 @@ msgstr "" msgid "Missing Caravan" msgstr "" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -169418,7 +170465,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -169459,7 +170506,7 @@ msgstr "" msgid "Solar Power" msgstr "" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -169494,7 +170541,7 @@ msgstr "" msgid "In a Pickle" msgstr "" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -169539,7 +170586,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -169550,6 +170597,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -169696,7 +170801,7 @@ msgstr "" msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -169751,7 +170856,7 @@ msgstr "" msgid "Kill Bandits" msgstr "" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -169790,7 +170895,7 @@ msgstr "" msgid "Deal with Informant" msgstr "" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -169827,11 +170932,63 @@ msgstr "" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -169857,15 +171014,11 @@ msgid "" "be able to find something." msgstr "" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -169922,7 +171075,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -169972,7 +171125,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -170017,7 +171170,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -170058,11 +171211,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -170105,7 +171259,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "" @@ -170153,7 +171307,7 @@ msgstr "" msgid "Active Noise Control" msgstr "" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -170197,7 +171351,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "" @@ -171856,7 +173010,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -171875,7 +173029,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -171902,7 +173056,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -171936,7 +173090,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -171983,7 +173137,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -172759,6 +173913,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -173451,13 +174629,13 @@ msgstr "" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." +msgid "Embraced their bestial nature." msgstr "" #. ~ Mutation class name @@ -174187,6 +175365,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "" @@ -175095,7 +176295,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -175106,6 +176305,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -175237,7 +176443,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -175481,8 +176687,8 @@ msgstr "" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." msgstr "" #: lang/json/mutation_from_json.py @@ -178459,8 +179665,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -178700,7 +179906,7 @@ msgstr "" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" +msgid "Your muscles are a little stronger. +1 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -178709,7 +179915,7 @@ msgstr "" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" +msgid "Your muscles are stronger. +2 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -178718,7 +179924,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" +msgid "Your muscles are much stronger. +4 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -178727,7 +179933,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" +msgid "Your muscles are noticeably bulging. +7 Strength." msgstr "" #: lang/json/mutation_from_json.py @@ -178745,7 +179951,7 @@ msgstr "" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" +msgid "You are a little nimbler. +1 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -178754,7 +179960,7 @@ msgstr "" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" +msgid "You are nimbler. +2 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -178763,7 +179969,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" +msgid "You are nimble and quick. +4 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -178772,7 +179978,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" +msgid "You are much nimbler than before. +7 Dexterity." msgstr "" #: lang/json/mutation_from_json.py @@ -178790,7 +179996,7 @@ msgstr "" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" +msgid "You are a little smarter. +1 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -178799,7 +180005,7 @@ msgstr "" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" +msgid "You are smarter. +2 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -178809,7 +180015,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -178819,7 +180025,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." msgstr "" #: lang/json/mutation_from_json.py @@ -178849,7 +180055,7 @@ msgstr "" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" +msgid "Your senses are a little keener. +1 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -178858,7 +180064,7 @@ msgstr "" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" +msgid "Your senses are keener. +2 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -178867,7 +180073,7 @@ msgstr "" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" +msgid "Your senses are much keener. +4 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -178876,7 +180082,7 @@ msgstr "" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" +msgid "You can sense things you never imagined. +7 Perception." msgstr "" #: lang/json/mutation_from_json.py @@ -179374,7 +180580,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -179493,7 +180699,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -184002,6 +185208,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "" @@ -184037,6 +185244,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -184595,6 +185810,14 @@ msgstr "" msgid "Operator" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -184730,6 +185953,10 @@ msgstr "" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -184898,6 +186125,10 @@ msgstr "" msgid "Guard" msgstr "" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "" @@ -185066,6 +186297,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -186001,6 +187236,10 @@ msgstr "" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -186690,6 +187929,10 @@ msgstr "" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "" @@ -186698,24 +187941,40 @@ msgstr "" msgid "blacksmith shop" msgstr "" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -187082,6 +188341,10 @@ msgstr "" msgid "subway station?" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -188538,6 +189801,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -188648,6 +189965,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -188684,7 +190029,7 @@ msgstr "" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -188697,7 +190042,7 @@ msgstr "" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -189290,6 +190635,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -189546,6 +190917,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -189672,6 +191097,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -189720,6 +191173,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -189742,6 +191223,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -194296,6 +195829,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -197514,6394 +199105,7889 @@ msgid "" "integrated toolset, both powered by standard batteries." msgstr "" -#: lang/json/professions_from_json.py -msgctxt "profession_male" -msgid "Prototype Cyborg" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Prototype Cyborg" +msgstr "" + +#. ~ Profession (male Prototype Cyborg) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were normal once. Before the tests, before the procedures, before they " +"stripped away every outward sign of your humanity. You're more machine than" +" human now, but that might prove to be an advantage against the horrors that" +" await." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Prototype Cyborg" +msgstr "" + +#. ~ Profession (female Prototype Cyborg) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were normal once. Before the tests, before the procedures, before they " +"stripped away every outward sign of your humanity. You're more machine than" +" human now, but that might prove to be an advantage against the horrors that" +" await." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Cyberjunkie" +msgstr "" + +#. ~ Profession (male Cyberjunkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Long ago your lifelong infatuation with bionic enhancement lead you into a " +"shady world of back-alley bionic clinics and self-installed secondhand CBMs." +" Your posthuman hunger still cries out to be fed; where will you get your " +"bionic fix now?" +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Cyberjunkie" +msgstr "" + +#. ~ Profession (female Cyberjunkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Long ago your lifelong infatuation with bionic enhancement lead you into a " +"shady world of back-alley bionic clinics and self-installed secondhand CBMs." +" Your posthuman hunger still cries out to be fed; where will you get your " +"bionic fix now?" +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bionic Monster" +msgstr "" + +#. ~ Profession (male Bionic Monster) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Completely overtaken by bionic-induced psychosis, you are a deformed " +"posthuman monster, forced to hide in the shadows. Amidst the desolation, " +"however, even a creature such as yourself might find its niche." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bionic Monster" +msgstr "" + +#. ~ Profession (female Bionic Monster) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Completely overtaken by bionic-induced psychosis, you are a deformed " +"posthuman monster, forced to hide in the shadows. Amidst the desolation, " +"however, even a creature such as yourself might find its niche." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Failed Cyborg" +msgstr "" + +#. ~ Profession (male Failed Cyborg) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"After a series of surgical mistakes, your body is a wreck of bionic parts. " +"You have a large capacity for power, but are filled with broken and useless " +"bionics. Your ethanol power supply still works, at least." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Failed Cyborg" +msgstr "" + +#. ~ Profession (female Failed Cyborg) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"After a series of surgical mistakes, your body is a wreck of bionic parts. " +"You have a large capacity for power, but are filled with broken and useless " +"bionics. Your ethanol power supply still works, at least." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Drone Operator" +msgstr "" + +#. ~ Profession (male Drone Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had a job programming machines such as automatic street cleaners, " +"newsbots, and pizza delivery drones. Bionic implants helped you control " +"them remotely. Now all the drones carry guns instead of pizza." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Drone Operator" +msgstr "" + +#. ~ Profession (female Drone Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had a job programming machines such as automatic street cleaners, " +"newsbots, and pizza delivery drones. Bionic implants helped you control " +"them remotely. Now all the drones carry guns instead of pizza." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Razor Boy" +msgstr "" + +#. ~ Profession (Razor Boy) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Through a series of painful and expensive surgeries, you became a walking " +"bionic weapon, your services as a mercenary available to the highest bidder." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Razor Girl" +msgstr "" + +#. ~ Profession (Razor Girl) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Through a series of painful and expensive surgeries, you became a walking " +"bionic weapon, your services as a mercenary available to the highest bidder." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Principles of Chemistry" +msgstr "" + +#. ~ Description for Principles of Chemistry +#: lang/json/proficiency_from_json.py +msgid "" +"You are beginning to grasp a general idea of how elements and compounds " +"react with each other." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Principles of Biology" +msgstr "" + +#. ~ Description for Principles of Biology +#: lang/json/proficiency_from_json.py +msgid "" +"You are beginning to gain a general idea of how various living beings " +"fuction." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Organic Chemistry" +msgstr "" + +#. ~ Description for Organic Chemistry +#: lang/json/proficiency_from_json.py +msgid "" +"Knowledge of the branch of chemistry that studies and uses carbon-containing" +" compounds." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Inorganic Chemistry" +msgstr "" + +#. ~ Description for Inorganic Chemistry +#: lang/json/proficiency_from_json.py +msgid "" +"Knowledge of the branch of chemistry that studies and uses compounds not " +"containing carbon." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Biochemistry" +msgstr "" + +#. ~ Description for Biochemistry +#: lang/json/proficiency_from_json.py +msgid "The understanding of the chemistry of living things." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Physiology" +msgstr "" + +#. ~ Description for Physiology +#: lang/json/proficiency_from_json.py +msgid "An in-depth understanding of how humans and animals operate." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Xenology" +msgstr "" + +#. ~ Description for Xenology +#: lang/json/proficiency_from_json.py +msgid "" +"You are beginning to grasp a general idea of how alien and post-Cataclysm " +"mutated creatures function and operate." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Principles of Chemical Synthesis" +msgstr "" + +#. ~ Description for Principles of Chemical Synthesis +#: lang/json/proficiency_from_json.py +msgid "You're beginning to grasp the basics of chemical production." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Complex Chemical Synthesis" +msgstr "" + +#. ~ Description for Complex Chemical Synthesis +#: lang/json/proficiency_from_json.py +msgid "" +"The proper understanding of safe chemical synthesization and how to clean " +"your tools used for the next batch." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Distillation" +msgstr "" + +#. ~ Description for Distillation +#: lang/json/proficiency_from_json.py +msgid "" +"The process of separating two mixed liquids by their different boiling " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Metallurgy" +msgstr "" + +#. ~ Description for Metallurgy +#: lang/json/proficiency_from_json.py +msgid "An understanding of the chemistry of metalworking and alloys." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Pharmaceutical Production." +msgstr "" + +#. ~ Description for Pharmaceutical Production. +#: lang/json/proficiency_from_json.py +msgid "" +"An understanding of how to produce various natural and chemical substances " +"pure enough for human consumption." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Food Preparation" +msgstr "" + +#. ~ Description for Food Preparation +#: lang/json/proficiency_from_json.py +msgid "" +"You've done enough cooking to know the basics about how to quickly and " +"efficiently sort your ingredients." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Knife Skills" +msgstr "" + +#. ~ Description for Knife Skills +#: lang/json/proficiency_from_json.py +msgid "" +"You're quite skilled at culinary knife work, making you noticeably faster at" +" preparing meals that involve a lot of chopping." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Principles of Baking" +msgstr "" + +#. ~ Description for Principles of Baking +#: lang/json/proficiency_from_json.py +msgid "" +"You know the basics of baking - proportions, leavening, and things - and are" +" less likely to make a dramatic mistake when working from memory." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Breadmaking" +msgstr "" + +#. ~ Description for Breadmaking +#: lang/json/proficiency_from_json.py +msgid "" +"You've baked enough bread to consider yourself an expert. May your yeast be" +" ever frothy." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Dessert Baking" +msgstr "" + +#. ~ Description for Dessert Baking +#: lang/json/proficiency_from_json.py +msgid "" +"Anyone can make a cookie, but you can make it look amazing. Cakes and other" +" fluffies are also no longer a barrier." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Patisserie Expert" +msgstr "" + +#. ~ Description for Patisserie Expert +#: lang/json/proficiency_from_json.py +msgid "" +"You could have been a professional baker before the Cataclysm. Your " +"profiteroles are the envy of the wastelands." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Principles of Frying" +msgstr "" + +#. ~ Description for Principles of Frying +#: lang/json/proficiency_from_json.py +msgid "" +"Anyone can toss stuff into deep frier oil. You know more about selecting " +"oil, keeping the food from burning, and the like." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Breading & Battering" +msgstr "" + +#. ~ Description for Breading & Battering +#: lang/json/proficiency_from_json.py +msgid "" +"You know enough about deep frying breads and batters to do it easily without" +" thinking about it." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Fried Desserts" +msgstr "" + +#. ~ Description for Fried Desserts +#: lang/json/proficiency_from_json.py +msgid "You know the vaunted secrets of creating delicious deep fried sweets." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Culinary Fermentation" +msgstr "" + +#. ~ Description for Culinary Fermentation +#: lang/json/proficiency_from_json.py +msgid "" +"The basics of fermenting for human consumption, including sanitary " +"technique, avoiding harmful molds, and identifying common problems." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Beverage Distillation" +msgstr "" + +#. ~ Description for Beverage Distillation +#: lang/json/proficiency_from_json.py +msgid "" +"Applying the science of distillation to alcoholic beverages to get something" +" tasty." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Brewing" +msgstr "" + +#. ~ Description for Brewing +#: lang/json/proficiency_from_json.py +msgid "The fine art of brewing grains into beers." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Winemaking" +msgstr "" + +#. ~ Description for Winemaking +#: lang/json/proficiency_from_json.py +msgid "" +"The knowledge of how to turn sugary fruits, and occasionally vegetables, " +"into fermented beverages." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Lactofermentation" +msgstr "" + +#. ~ Description for Lactofermentation +#: lang/json/proficiency_from_json.py +msgid "" +"The microbiology of most non-alcoholic fermented edibles, from sauerkraut to" +" sourdough." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Principles of Cheesemaking" +msgstr "" + +#. ~ Description for Principles of Cheesemaking +#: lang/json/proficiency_from_json.py +msgid "" +"The basics of curdling and coagulating milk and similar things without the " +"wrong kinds of bacteria and mold winning out." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Cheesemaking Expert" +msgstr "" + +#. ~ Description for Cheesemaking Expert +#: lang/json/proficiency_from_json.py +msgid "Taking the basics of curdled milk and making it delicious." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Food Preservation" +msgstr "" + +#. ~ Description for Food Preservation +#: lang/json/proficiency_from_json.py +msgid "" +"The basic knowledge of ways to keep food safe for long periods of time in a " +"post-refrigeration world." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Curing and Drying Food" +msgstr "" + +#. ~ Description for Curing and Drying Food +#: lang/json/proficiency_from_json.py +msgid "Using salt, smoke, and similar agents to cure or dehydrate food." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Canning Food" +msgstr "" + +#. ~ Description for Canning Food +#: lang/json/proficiency_from_json.py +msgid "" +"Using pressure canning or tinning to safely store food in sealed containers." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Scavenger Cooking" +msgstr "" + +#. ~ Description for Scavenger Cooking +#: lang/json/proficiency_from_json.py +msgid "" +"You know the secrets of cooking tasty food using strange substitutions and " +"weird things you found in a cabinet in an abandoned house." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Forager Cooking" +msgstr "" + +#. ~ Description for Forager Cooking +#: lang/json/proficiency_from_json.py +msgid "" +"Cooking with foraged ingredients that you wouldn't find in most cookbooks." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Electronics Soldering" +msgstr "" + +#. ~ Description for Electronics Soldering +#: lang/json/proficiency_from_json.py +msgid "" +"An understanding of the skills and tools needed to create durable, effective" +" soldered electrical connections." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Electrical Circuits" +msgstr "" + +#. ~ Description for Electrical Circuits +#: lang/json/proficiency_from_json.py +msgid "" +"Practical experience building electrical circuits, and a grasp of the " +"principles of electrical continuity, current, voltage, and resistance." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Semiconductors" +msgstr "" + +#. ~ Description for Semiconductors +#: lang/json/proficiency_from_json.py +msgid "" +"Basic working knowledge of using semiconductors such as diodes and " +"transistors in electrical circuits, for switching or amplifying electrical " +"signals." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Integrated Circuits" +msgstr "" + +#. ~ Description for Integrated Circuits +#: lang/json/proficiency_from_json.py +msgid "" +"Familiarity with the role of IC chips in circuit design, and ability to " +"identify many common pre-cataclysm ICs and understand how to use them in " +"functional circuits." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Electromagnetics" +msgstr "" + +#. ~ Description for Electromagnetics +#: lang/json/proficiency_from_json.py +msgid "" +"A practical working knowledge of electromagnetic fields and their creation " +"and application." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Electroshock Weapons" +msgstr "" + +#. ~ Description for Electroshock Weapons +#: lang/json/proficiency_from_json.py +msgid "" +"An understanding of how to use high voltage, low-current devices to cause " +"debilitating muscle spasms. Includes some theoretical knowledge of how to " +"protect yourself from these." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Principles of Gunsmithing" +msgstr "" + +#. ~ Description for Principles of Gunsmithing +#: lang/json/proficiency_from_json.py +msgid "" +"A basic understanding of how guns are put together and what tools and " +"materials are needed for the job." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Improvised Gunmaking" +msgstr "" + +#. ~ Description for Improvised Gunmaking +#: lang/json/proficiency_from_json.py +msgid "" +"You've become an expert at putting together guns and launchers from " +"makeshift parts." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Antique Gunsmithing" +msgstr "" + +#. ~ Description for Antique Gunsmithing +#: lang/json/proficiency_from_json.py +msgid "You're specifically skilled at building and repairing antique guns." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Spring-powered Guns and Crossbows" +msgstr "Пружинна зброя та арбалети" + +#. ~ Description for Spring-powered Guns and Crossbows +#: lang/json/proficiency_from_json.py +msgid "" +"Similar to bowyery, the art of making guns that are powered by elastic " +"mechanisms." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Revolver Gunsmithing" +msgstr "" + +#. ~ Description for Revolver Gunsmithing +#: lang/json/proficiency_from_json.py +msgid "" +"You've got the know-how to make a classic Western revolver, and its many " +"variants." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Principles of Metalworking" +msgstr "" + +#. ~ Description for Principles of Metalworking +#: lang/json/proficiency_from_json.py +msgid "" +"A basic understanding of the properties of metal as a material, and the " +"concepts behind smithing, die casting, and other metalworking techniques." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Principles of Welding" +msgstr "" + +#. ~ Description for Principles of Welding +#: lang/json/proficiency_from_json.py +msgid "" +"A basic understanding of the different types of welding, welding tools and " +"fuels, how to weld different materials, and more." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Welding" +msgstr "" + +#. ~ Description for Welding +#: lang/json/proficiency_from_json.py +msgid "You are an experienced welder." +msgstr "" + +#: lang/json/proficiency_from_json.py src/crafting_gui.cpp +msgid "Blacksmithing" +msgstr "" + +#. ~ Description for Blacksmithing +#: lang/json/proficiency_from_json.py +msgid "The craft of working metal into tools and other items of use." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Redsmithing" +msgstr "" + +#. ~ Description for Redsmithing +#: lang/json/proficiency_from_json.py +msgid "" +"Working copper and bronze shares a lot of techniques with blacksmithing, but" +" the more ductile copper-containing metals have a trick all their own." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Fine Metalsmithing" +msgstr "" + +#. ~ Description for Fine Metalsmithing +#: lang/json/proficiency_from_json.py +msgid "How to make jewelry from precious metals like gold and silver." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Armorsmithing" +msgstr "" + +#. ~ Description for Armorsmithing +#: lang/json/proficiency_from_json.py +msgid "How to make articulated armor from pieces of metal." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Bladesmithing" +msgstr "" + +#. ~ Description for Bladesmithing +#: lang/json/proficiency_from_json.py +msgid "How to fabricate sharp and reliable blades from scratch." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Manual Tooling" +msgstr "" + +#. ~ Description for Manual Tooling +#: lang/json/proficiency_from_json.py +msgid "" +"How to make high-quality tools and parts by hand. Includes techniques like " +"threading, durable articulation points, and using appropriate metals for " +"appropriate tasks. Also applies to making blunt instruments that can " +"withstand a severe beating without distortion." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Wire Making" +msgstr "" + +#. ~ Description for Wire Making +#: lang/json/proficiency_from_json.py +msgid "" +"How to turn raw ingots and metals into usable wire. Includes both drawing " +"and extruding." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Basic Knapping" +msgstr "" + +#. ~ Description for Basic Knapping +#: lang/json/proficiency_from_json.py +msgid "" +"You know the basic principles of turning stones into more useful tools." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Knapping" +msgstr "" + +#. ~ Description for Knapping +#: lang/json/proficiency_from_json.py +msgid "" +"You've banged rocks together so much and for so long, you've become " +"extremely fast at it." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Glassblowing" +msgstr "" + +#. ~ Description for Glassblowing +#: lang/json/proficiency_from_json.py +msgid "Working with glass and heat without poisoning or perforating yourself." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Plumbing" +msgstr "" + +#. ~ Description for Plumbing +#: lang/json/proficiency_from_json.py +msgid "" +"Working with pipes and pipe fittings to transport fluids without leakage." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Pottery" +msgstr "" + +#. ~ Description for Pottery +#: lang/json/proficiency_from_json.py +msgid "Basic pottery, from shaping to working with slip to fuse pieces." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Bowyery" +msgstr "" + +#. ~ Description for Bowyery +#: lang/json/proficiency_from_json.py +msgid "The ability to make durable, effective bows." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Fletching" +msgstr "" + +#. ~ Description for Fletching +#: lang/json/proficiency_from_json.py +msgid "The skill involved in making arrows that fly true." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Basketweaving" +msgstr "" + +#. ~ Description for Basketweaving +#: lang/json/proficiency_from_json.py +msgid "Forming coarse fibers into shapes." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Pottery Glazing" +msgstr "" + +#. ~ Description for Pottery Glazing +#: lang/json/proficiency_from_json.py +msgid "Adding glazes to pottery to make them waterproof." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Plastic Working" +msgstr "" + +#. ~ Description for Plastic Working +#: lang/json/proficiency_from_json.py +msgid "" +"Working with plastic using your hands, including carving, molding, and " +"gluing it. You know how to identify thermoplastics that are suitable for " +"mold casting, and how to identify the right plastic for the right job." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Carving" +msgstr "" + +#. ~ Description for Carving +#: lang/json/proficiency_from_json.py +msgid "Shaping wood, bone, and similar materials with a cutting implement." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Helicopter Piloting" +msgstr "" + +#. ~ Description for Helicopter Piloting +#: lang/json/proficiency_from_json.py +msgid "" +"Before the cataclysm, you were a helicopter pilot. Now, you just hope you " +"can fly again." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Airframe and Powerplant Mechanic" +msgstr "" + +#. ~ Description for Airframe and Powerplant Mechanic +#: lang/json/proficiency_from_json.py +msgid "" +"You've been trained and certified to repair aircraft. You're not really " +"sure how that could help you survive now." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Gem Setting" +msgstr "" + +#. ~ Description for Gem Setting +#: lang/json/proficiency_from_json.py +msgid "How to add gemstones to jewelry." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Handloading" +msgstr "" + +#. ~ Description for Handloading +#: lang/json/proficiency_from_json.py +msgid "" +"You know how to accurately measure powder and projectile weights for " +"reloading firearm cartridges." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Parkour Expert" +msgstr "" + +#. ~ Description for Parkour Expert +#: lang/json/proficiency_from_json.py +msgid "" +"You're skilled at clearing obstacles; terrain like railings or counters are " +"as easy for you to move on as solid ground." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Joint Articulation" +msgstr "" + +#. ~ Description for Joint Articulation +#: lang/json/proficiency_from_json.py +msgid "" +"Making flexible items out of hard materials is tricky. You've done enough " +"of it to understand how to make smoothly articulated joints out of rigid or " +"semi-rigid materials." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Garment Closures" +msgstr "" + +#. ~ Description for Garment Closures +#: lang/json/proficiency_from_json.py +msgid "" +"You are familiar with the adjustments and tricks needed to make properly " +"functional buttons, zippers, and other closures on garments." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Fabric Waterproofing" +msgstr "" + +#. ~ Description for Fabric Waterproofing +#: lang/json/proficiency_from_json.py +msgid "" +"You know how to making garments and fabric containers sealed against water." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Stretch Fabric" +msgstr "" + +#. ~ Description for Stretch Fabric +#: lang/json/proficiency_from_json.py +msgid "" +"Making elastic bands is easy enough, but making a whole garment from " +"stretchy cloth takes a bit of finesse. You're good at it." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Cobbling" +msgstr "" + +#. ~ Description for Cobbling +#: lang/json/proficiency_from_json.py +msgid "Like a magical elf, you've learned how to construct footwear by hand." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Spinning" +msgstr "" + +#. ~ Description for Spinning +#: lang/json/proficiency_from_json.py +msgid "The art of spinning fiber into thread." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Weaving" +msgstr "" + +#. ~ Description for Weaving +#: lang/json/proficiency_from_json.py +msgid "" +"You've learned how to use a loom to produce sheets of fabric from thread." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Millinery" +msgstr "" + +#. ~ Description for Millinery +#: lang/json/proficiency_from_json.py +msgid "Like a solitary mouse, you've learned how to construct hats by hand." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Knitting" +msgstr "" + +#. ~ Description for Knitting +#: lang/json/proficiency_from_json.py +msgid "" +"Knitting, one of the oldest ways of tying knots in fiber until it is fabric." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Speed Knitting" +msgstr "" + +#. ~ Description for Speed Knitting +#: lang/json/proficiency_from_json.py +msgid "" +"You have knitted and knitted and knitted some more, and have the consistent " +"string tension to show for it. When you get going, the clicking of your " +"needles is like a metronome." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Principles of Leatherworking" +msgstr "" + +#. ~ Description for Principles of Leatherworking +#: lang/json/proficiency_from_json.py +msgid "" +"You've got a basic familiarity with how to work with leather, furs, hides, " +"and similar materials." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Leatherworking" +msgstr "" + +#. ~ Description for Leatherworking +#: lang/json/proficiency_from_json.py +msgid "" +"Working with leather requires a specific set of skills and tools… a set you " +"are familiar with." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Furriery" +msgstr "" + +#. ~ Description for Furriery +#: lang/json/proficiency_from_json.py +msgid "Working with fur and faux fur is a skill all its own." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Chitinworking" +msgstr "" + +#. ~ Description for Chitinworking +#: lang/json/proficiency_from_json.py +msgid "" +"It seems unlikely that anyone prior to the cataclysm knew how to work with " +"the shells of giant bugs as well as you do now." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Chain Garments" +msgstr "" + +#. ~ Description for Chain Garments +#: lang/json/proficiency_from_json.py +msgid "" +"Turning sheets of chain links into effective, wearable clothing that doesn't" +" bind up." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Advanced polymer sewing" +msgstr "" + +#. ~ Description for Advanced polymer sewing +#: lang/json/proficiency_from_json.py +msgid "" +"You know the tricks for working with Kevlar, Nomex, and other advanced " +"polymer cloth." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Lockpicking" +msgstr "" + +#. ~ Description for Lockpicking +#: lang/json/proficiency_from_json.py +msgid "You know how to pick a lock, at least in theory." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Locksmith" +msgstr "" + +#. ~ Description for Locksmith +#: lang/json/proficiency_from_json.py +msgid "" +"You can pick a lock in the dark, blindfolded. Although that doesn't make it" +" all that much harder. You're good at locks, OK?" +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Safecracking" +msgstr "" + +#. ~ Description for Safecracking +#: lang/json/proficiency_from_json.py +msgid "Opening safes is an exacting skill, one that you are proficient at." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Principles of Trapping" +msgstr "" + +#. ~ Description for Principles of Trapping +#: lang/json/proficiency_from_json.py +msgid "You know the basics of setting and taking down traps safely." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Trap Setting" +msgstr "" + +#. ~ Description for Trap Setting +#: lang/json/proficiency_from_json.py +msgid "You're specifically quite skilled at setting effective traps." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Trap Disarming" +msgstr "" + +#. ~ Description for Trap Disarming +#: lang/json/proficiency_from_json.py +msgid "You know how to take down a trap safely." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Spotting and Awareness" +msgstr "" + +#. ~ Description for Spotting and Awareness +#: lang/json/proficiency_from_json.py +msgid "" +"You are skilled at spotting things out of the ordinary, like traps or " +"ambushes." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Fiber Twisting" +msgstr "" + +#. ~ Description for Fiber Twisting +#: lang/json/proficiency_from_json.py +msgid "" +"You've got a basic grasp of the theory of how to twist and arrange fibers " +"into a more durable cord." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Ropemaking" +msgstr "" + +#. ~ Description for Ropemaking +#: lang/json/proficiency_from_json.py +msgid "Making twisted fibers into durable and useful rope." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Basic Tanning" +msgstr "" + +#. ~ Description for Basic Tanning +#: lang/json/proficiency_from_json.py +msgid "You're familiar with the theory behind turning raw hides into leather." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Tanning" +msgstr "" + +#. ~ Description for Tanning +#: lang/json/proficiency_from_json.py +msgid "" +"You have a lot of practice and experience with processing hides to leather, " +"as well as related techniques like making boiled leather." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Basic Archer's Form" +msgstr "" + +#. ~ Description for Basic Archer's Form +#: lang/json/proficiency_from_json.py +msgid "" +"You have grasped some basic understanding on archery, and find handling bows" +" easier." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Archer's Form" +msgstr "" + +#. ~ Description for Expert Archer's Form +#: lang/json/proficiency_from_json.py +msgid "" +"After significant practice, you have become an expert in the movements used " +"in drawing and firing a bow, and have strengthened those muscles " +"considerably." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Master Archer's Form" +msgstr "" + +#. ~ Description for Master Archer's Form +#: lang/json/proficiency_from_json.py +msgid "" +"You have drawn and fired a bow so many times, you probably have a bit of a " +"twist in your spine from it. You've developed what would once have been a " +"world class understanding of the pose and motion of effective archery." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Basic Carpentry" +msgstr "" + +#. ~ Description for Basic Carpentry +#: lang/json/proficiency_from_json.py +msgid "" +"Simple projects involving holding planks and panels of wood together with " +"nails or similar fasteners." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Alchemy" +msgstr "" + +#. ~ Description for Alchemy +#: lang/json/proficiency_from_json.py +msgid "" +"You know the basics of manipulating the mana of objects through application " +"of chemical laws." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Almetallurgy" +msgstr "" + +#. ~ Description for Almetallurgy +#: lang/json/proficiency_from_json.py +msgid "" +"The forging of magical alloys is a complex process requiring an " +"understanding of both mundane metals and alchemy." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Dragon leather working" +msgstr "" + +#. ~ Description for Dragon leather working +#: lang/json/proficiency_from_json.py +msgid "" +"Working with dragon leather requires a specific set of skills and tools… a " +"set you are familiar with." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Dragon scale working" +msgstr "" + +#. ~ Description for Dragon scale working +#: lang/json/proficiency_from_json.py +msgid "" +"Working with dragon scales requires a specific set of skills and tools… a " +"set you are familiar with." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Basic Golemancy" +msgstr "" + +#. ~ Description for Basic Golemancy +#: lang/json/proficiency_from_json.py +msgid "" +"Infusing shaped material with your will and the ability to move is hard but " +"you're starting to get it." +msgstr "" + +#. ~ Crafting recipes category name +#: lang/json/recipe_category_from_json.py +msgid "*" +msgstr "" + +#. ~ Crafting recipes subcategory of '*' category +#: lang/json/recipe_category_from_json.py +msgid "FAVORITE" +msgstr "" + +#. ~ Crafting recipes subcategory of '*' category +#: lang/json/recipe_category_from_json.py +msgid "RECENT" +msgstr "" + +#. ~ Crafting recipes subcategory of '*' category +#: lang/json/recipe_category_from_json.py +msgid "HIDDEN" +msgstr "" + +#. ~ Crafting recipes category name +#: lang/json/recipe_category_from_json.py +msgid "WEAPON" +msgstr "" + +#. ~ Crafting recipes subcategory all +#: lang/json/recipe_category_from_json.py +#: lang/json/recipe_category_from_json.py src/crafting_gui.cpp +msgid "ALL" +msgstr "" + +#. ~ Crafting recipes subcategory of 'WEAPON' category +#: lang/json/recipe_category_from_json.py +msgid "BASHING" +msgstr "" + +#. ~ Crafting recipes subcategory of 'WEAPON' category +#: lang/json/recipe_category_from_json.py +msgid "CUTTING" +msgstr "" + +#. ~ Crafting recipes subcategory of 'WEAPON' category +#: lang/json/recipe_category_from_json.py +msgid "PIERCING" +msgstr "" + +#. ~ Crafting recipes subcategory of 'WEAPON' category +#: lang/json/recipe_category_from_json.py +msgid "RANGED" +msgstr "" + +#. ~ Crafting recipes subcategory of 'WEAPON' category +#: lang/json/recipe_category_from_json.py +msgid "EXPLOSIVE" +msgstr "" + +#. ~ Crafting recipes subcategory of 'AMMO' category +#: lang/json/recipe_category_from_json.py +msgid "PISTOL" +msgstr "" + +#. ~ Crafting recipes subcategory of 'AMMO' category +#: lang/json/recipe_category_from_json.py +msgid "RIFLE" +msgstr "" + +#. ~ Crafting recipes subcategory of 'AMMO' category +#: lang/json/recipe_category_from_json.py +msgid "SHOT" +msgstr "" + +#. ~ Crafting recipes subcategory of 'AMMO' category +#: lang/json/recipe_category_from_json.py +msgid "GRENADES" +msgstr "" + +#. ~ Crafting recipes subcategory of 'AMMO' category +#: lang/json/recipe_category_from_json.py +msgid "ARROWS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'AMMO' category +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#: lang/json/recipe_category_from_json.py +#: lang/json/recipe_category_from_json.py src/crafting_gui.cpp +msgid "COMPONENTS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'FOOD' category +#: lang/json/recipe_category_from_json.py +msgid "DRINKS" +msgstr "НАПОЇ" + +#. ~ Crafting recipes subcategory of 'FOOD' category +#: lang/json/recipe_category_from_json.py +msgid "DRY" +msgstr "" + +#. ~ Crafting recipes subcategory of 'FOOD' category +#: lang/json/recipe_category_from_json.py +msgid "MEAT" +msgstr "" + +#. ~ Crafting recipes subcategory of 'FOOD' category +#: lang/json/recipe_category_from_json.py +msgid "VEGGI" +msgstr "" + +#. ~ Crafting recipes subcategory of 'FOOD' category +#: lang/json/recipe_category_from_json.py +msgid "SNACK" +msgstr "" + +#. ~ Crafting recipes subcategory of 'FOOD' category +#: lang/json/recipe_category_from_json.py +msgid "BREAD" +msgstr "" + +#. ~ Crafting recipes subcategory of 'FOOD' category +#: lang/json/recipe_category_from_json.py +msgid "PASTA" +msgstr "" + +#. ~ Crafting recipes subcategory of 'FOOD' category +#: lang/json/recipe_category_from_json.py +msgid "BREW" +msgstr "" + +#. ~ Crafting recipes category name +#: lang/json/recipe_category_from_json.py +msgid "CHEM" +msgstr "" + +#. ~ Crafting recipes subcategory of 'CHEM' category +#: lang/json/recipe_category_from_json.py +msgid "MUTAGEN" +msgstr "МУТАГЕНИ" + +#. ~ Crafting recipes subcategory of 'CHEM' category +#: lang/json/recipe_category_from_json.py +msgid "CHEMICALS" +msgstr "" + +#. ~ Crafting recipes category name +#: lang/json/recipe_category_from_json.py +msgid "ELECTRONIC" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#: lang/json/recipe_category_from_json.py +msgid "PARTS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#: lang/json/recipe_category_from_json.py +msgid "LIGHTING" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ARMOR' category +#: lang/json/recipe_category_from_json.py +msgid "STORAGE" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ARMOR' category +#: lang/json/recipe_category_from_json.py +msgid "SUIT" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ARMOR' category +#: lang/json/recipe_category_from_json.py +msgid "ARMS" +msgstr "РУКИ" + +#. ~ Crafting recipes subcategory of 'ARMOR' category +#: lang/json/recipe_category_from_json.py +msgid "HANDS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ARMOR' category +#: lang/json/recipe_category_from_json.py +msgid "LEGS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ARMOR' category +#: lang/json/recipe_category_from_json.py +msgid "FEET" +msgstr "" + +#. ~ Crafting recipes subcategory of 'OTHER' category +#: lang/json/recipe_category_from_json.py +msgid "MEDICAL" +msgstr "" + +#. ~ Crafting recipes subcategory of 'OTHER' category +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: lang/json/recipe_category_from_json.py +msgid "MATERIALS" +msgstr "МАТЕРІАЛИ" + +#. ~ Crafting recipes subcategory of 'OTHER' category +#: lang/json/recipe_category_from_json.py +msgid "TRAPS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'OTHER' category +#: lang/json/recipe_category_from_json.py +msgid "VEHICLE" +msgstr "" + +#. ~ Crafting recipes category name +#: lang/json/recipe_category_from_json.py +msgid "ANIMALS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ANIMALS' category +#: lang/json/recipe_category_from_json.py +msgid "CANINE ARMOR" +msgstr "ОБЛАДУНКИ ДЛЯ СОБАК" + +#. ~ Crafting recipes subcategory of 'ANIMALS' category +#: lang/json/recipe_category_from_json.py +msgid "EQUINE ARMOR" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ANIMALS' category +#: lang/json/recipe_category_from_json.py +msgid "EQUINE STORAGE" +msgstr "" + +#. ~ Crafting recipes category name +#: lang/json/recipe_category_from_json.py +msgid "BUILDING" +msgstr "" + +#. ~ Crafting recipes subcategory of 'BUILDING' category +#: lang/json/recipe_category_from_json.py +msgid "BASES" +msgstr "" + +#. ~ Crafting recipes subcategory of 'BUILDING' category +#: lang/json/recipe_category_from_json.py +msgid "EXPANSIONS" +msgstr "" + +#. ~ Crafting recipes category name +#: lang/json/recipe_category_from_json.py +msgid "PRACTICE" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "SCIENCE" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "FABRICATION" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "SURVIVAL" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "TAILORING" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "ATHLETICS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "COMPUTERS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "DEVICES" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py src/game_inventory.cpp +msgid "HEALTH" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "MECHANICS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "SOCIAL" +msgstr "" + +#. ~ Crafting recipes subcategory of 'PRACTICE' category +#: lang/json/recipe_category_from_json.py +msgid "COMBAT" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ELECTRONIC' category +#: lang/json/recipe_category_from_json.py +msgid "CBMS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ANIMALS' category +#: lang/json/recipe_category_from_json.py +msgid "ELEPHANT ARMOR" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ANIMALS' category +#: lang/json/recipe_category_from_json.py +msgid "OSTRICH ARMOR" +msgstr "" + +#. ~ Crafting recipes category name +#: lang/json/recipe_category_from_json.py +msgid "ENCHANTED" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: lang/json/recipe_category_from_json.py +msgid "POTIONS" +msgstr "" + +#. ~ Crafting recipes subcategory of 'ENCHANTED' category +#: lang/json/recipe_category_from_json.py +msgid "RUNES" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Stuff THE MAN doesn't want you to know" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Sticky Rice Hedgerows" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Low-Carb Sashimi Donburi" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Royal Penny Tea" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Sir Tenderloin the Toothsome" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Shagbark Nut Ambrosia" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Natural Beet Sugar" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Leprechaun Sausage" msgstr "" -#. ~ Profession (male Prototype Cyborg) description -#: lang/json/professions_from_json.py -msgctxt "prof_desc_male" +#: lang/json/recipe_from_json.py msgid "" -"You were normal once. Before the tests, before the procedures, before they " -"stripped away every outward sign of your humanity. You're more machine than" -" human now, but that might prove to be an advantage against the horrors that" -" await." +"We should build a pair of mattress beds in the southern shack for our " +"survivors." msgstr "" -#: lang/json/professions_from_json.py -msgctxt "profession_female" -msgid "Prototype Cyborg" +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in S shack" msgstr "" -#. ~ Profession (female Prototype Cyborg) description -#: lang/json/professions_from_json.py -msgctxt "prof_desc_female" +#: lang/json/recipe_from_json.py msgid "" -"You were normal once. Before the tests, before the procedures, before they " -"stripped away every outward sign of your humanity. You're more machine than" -" human now, but that might prove to be an advantage against the horrors that" -" await." +"We should build a pair of mattress beds in the southeastern shack for our " +"survivors." msgstr "" -#: lang/json/professions_from_json.py -msgctxt "profession_male" -msgid "Cyberjunkie" +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE shack" msgstr "" -#. ~ Profession (male Cyberjunkie) description -#: lang/json/professions_from_json.py -msgctxt "prof_desc_male" +#: lang/json/recipe_from_json.py msgid "" -"Long ago your lifelong infatuation with bionic enhancement lead you into a " -"shady world of back-alley bionic clinics and self-installed secondhand CBMs." -" Your posthuman hunger still cries out to be fed; where will you get your " -"bionic fix now?" +"We should build a pair of mattress beds in the eastern shack for our " +"survivors." msgstr "" -#: lang/json/professions_from_json.py -msgctxt "profession_female" -msgid "Cyberjunkie" +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in E shack" msgstr "" -#. ~ Profession (female Cyberjunkie) description -#: lang/json/professions_from_json.py -msgctxt "prof_desc_female" +#: lang/json/recipe_from_json.py msgid "" -"Long ago your lifelong infatuation with bionic enhancement lead you into a " -"shady world of back-alley bionic clinics and self-installed secondhand CBMs." -" Your posthuman hunger still cries out to be fed; where will you get your " -"bionic fix now?" +"We should build a pair of mattress beds in the northeastern shack for our " +"survivors." msgstr "" -#: lang/json/professions_from_json.py -msgctxt "profession_male" -msgid "Bionic Monster" +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in NE shack" msgstr "" -#. ~ Profession (male Bionic Monster) description -#: lang/json/professions_from_json.py -msgctxt "prof_desc_male" +#: lang/json/recipe_from_json.py msgid "" -"Completely overtaken by bionic-induced psychosis, you are a deformed " -"posthuman monster, forced to hide in the shadows. Amidst the desolation, " -"however, even a creature such as yourself might find its niche." +"We should build a pair of mattress beds in the northern shack for our " +"survivors." msgstr "" -#: lang/json/professions_from_json.py -msgctxt "profession_female" -msgid "Bionic Monster" +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in N shack" msgstr "" -#. ~ Profession (female Bionic Monster) description -#: lang/json/professions_from_json.py -msgctxt "prof_desc_female" +#: lang/json/recipe_from_json.py msgid "" -"Completely overtaken by bionic-induced psychosis, you are a deformed " -"posthuman monster, forced to hide in the shadows. Amidst the desolation, " -"however, even a creature such as yourself might find its niche." +"We should build a pair of mattress beds in the northwestern shack for our " +"survivors." msgstr "" -#: lang/json/professions_from_json.py -msgctxt "profession_male" -msgid "Failed Cyborg" +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in NW shack" msgstr "" -#. ~ Profession (male Failed Cyborg) description -#: lang/json/professions_from_json.py -msgctxt "prof_desc_male" +#: lang/json/recipe_from_json.py msgid "" -"After a series of surgical mistakes, your body is a wreck of bionic parts. " -"You have a large capacity for power, but are filled with broken and useless " -"bionics. Your ethanol power supply still works, at least." +"We should build a pair of mattress beds in the western shack for our " +"survivors." msgstr "" -#: lang/json/professions_from_json.py -msgctxt "profession_female" -msgid "Failed Cyborg" +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in W shack" msgstr "" -#. ~ Profession (female Failed Cyborg) description -#: lang/json/professions_from_json.py -msgctxt "prof_desc_female" +#: lang/json/recipe_from_json.py msgid "" -"After a series of surgical mistakes, your body is a wreck of bionic parts. " -"You have a large capacity for power, but are filled with broken and useless " -"bionics. Your ethanol power supply still works, at least." +"We should build a pair of mattress beds in the southwestern shack for our " +"survivors." msgstr "" -#: lang/json/professions_from_json.py -msgctxt "profession_male" -msgid "Drone Operator" +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW shack" msgstr "" -#. ~ Profession (male Drone Operator) description -#: lang/json/professions_from_json.py -msgctxt "prof_desc_male" +#: lang/json/recipe_from_json.py msgid "" -"You had a job programming machines such as automatic street cleaners, " -"newsbots, and pizza delivery drones. Bionic implants helped you control " -"them remotely. Now all the drones carry guns instead of pizza." +"We should build a pair of straw beds in the southern shack for our " +"survivors." msgstr "" -#: lang/json/professions_from_json.py -msgctxt "profession_female" -msgid "Drone Operator" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in S shack" msgstr "" -#. ~ Profession (female Drone Operator) description -#: lang/json/professions_from_json.py -msgctxt "prof_desc_female" +#: lang/json/recipe_from_json.py msgid "" -"You had a job programming machines such as automatic street cleaners, " -"newsbots, and pizza delivery drones. Bionic implants helped you control " -"them remotely. Now all the drones carry guns instead of pizza." +"We should build a pair of straw beds in the southeastern shack for our " +"survivors." msgstr "" -#: lang/json/professions_from_json.py -msgctxt "profession_male" -msgid "Razor Boy" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE shack" msgstr "" -#. ~ Profession (Razor Boy) description -#: lang/json/professions_from_json.py -msgctxt "prof_desc_male" +#: lang/json/recipe_from_json.py msgid "" -"Through a series of painful and expensive surgeries, you became a walking " -"bionic weapon, your services as a mercenary available to the highest bidder." +"We should build a pair of straw beds in the eastern shack for our survivors." msgstr "" -#: lang/json/professions_from_json.py -msgctxt "profession_female" -msgid "Razor Girl" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in E shack" msgstr "" -#. ~ Profession (Razor Girl) description -#: lang/json/professions_from_json.py -msgctxt "prof_desc_female" +#: lang/json/recipe_from_json.py msgid "" -"Through a series of painful and expensive surgeries, you became a walking " -"bionic weapon, your services as a mercenary available to the highest bidder." +"We should build a pair of straw beds in the northeastern shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Principles of Chemistry" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in NE shack" msgstr "" -#. ~ Description for Principles of Chemistry -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You are beginning to grasp a general idea of how elements and compounds " -"react with each other." +"We should build a pair of straw beds in the northern shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Principles of Biology" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in N shack" msgstr "" -#. ~ Description for Principles of Biology -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You are beginning to gain a general idea of how various living beings " -"fuction." +"We should build a pair of straw beds in the northwestern shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Organic Chemistry" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in NW shack" msgstr "" -#. ~ Description for Organic Chemistry -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Knowledge of the branch of chemistry that studies and uses carbon-containing" -" compounds." +"We should build a pair of straw beds in the western shack for our survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Inorganic Chemistry" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in W shack" msgstr "" -#. ~ Description for Inorganic Chemistry -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Knowledge of the branch of chemistry that studies and uses compounds not " -"containing carbon." +"We should build a pair of straw beds in the southwestern shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Biochemistry" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW shack" msgstr "" -#. ~ Description for Biochemistry -#: lang/json/proficiency_from_json.py -msgid "The understanding of the chemistry of living things." +#: lang/json/recipe_from_json.py +msgid "We should survey the base site and set up a bulletin board." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Physiology" +#: lang/json/recipe_from_json.py +msgid "basic survey" msgstr "" -#. ~ Description for Physiology -#: lang/json/proficiency_from_json.py -msgid "An in-depth understanding of how humans and animals operate." +#: lang/json/recipe_from_json.py +msgid "" +"Digging a root cellar will allow us trapping small game and preserving it." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Xenology" +#: lang/json/recipe_from_json.py lang/json/terrain_from_json.py +msgid "root cellar" msgstr "" -#. ~ Description for Xenology -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You are beginning to grasp a general idea of how alien and post-Cataclysm " -"mutated creatures function and operate." -msgstr "" - -#: lang/json/proficiency_from_json.py -msgid "Principles of Chemical Synthesis" +"Digging a well will give us easy access to water and allow us to send out " +"combat patrols or scouts." msgstr "" -#. ~ Description for Principles of Chemical Synthesis -#: lang/json/proficiency_from_json.py -msgid "You're beginning to grasp the basics of chemical production." +#: lang/json/recipe_from_json.py +msgid "water well" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Complex Chemical Synthesis" +#: lang/json/recipe_from_json.py +msgid "Let's set up a radio tower to improve our recruitment efforts." msgstr "" -#. ~ Description for Complex Chemical Synthesis -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"The proper understanding of safe chemical synthesization and how to clean " -"your tools used for the next batch." +"We should dig some pits for palisade segments to block entrances to camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Distillation" +#: lang/json/recipe_from_json.py +msgid "dig pits" msgstr "" -#. ~ Description for Distillation -#: lang/json/proficiency_from_json.py -msgid "" -"The process of separating two mixed liquids by their different boiling " -"points." +#: lang/json/recipe_from_json.py +msgid "We should build palisade segments to block entrances to camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Metallurgy" +#: lang/json/recipe_from_json.py +msgid "build palisade segments" msgstr "" -#. ~ Description for Metallurgy -#: lang/json/proficiency_from_json.py -msgid "An understanding of the chemistry of metalworking and alloys." +#: lang/json/recipe_from_json.py +msgid "We should build a pair of reinforced doors to secure camp's entrance." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Pharmaceutical Production." +#: lang/json/recipe_from_json.py +msgid "build reinforced doors" msgstr "" -#. ~ Description for Pharmaceutical Production. -#: lang/json/proficiency_from_json.py -msgid "" -"An understanding of how to produce various natural and chemical substances " -"pure enough for human consumption." +#: lang/json/recipe_from_json.py +msgid "We should build a pair of metal doors to secure camp's entrance." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Food Preparation" +#: lang/json/recipe_from_json.py +msgid "build metal doors" msgstr "" -#. ~ Description for Food Preparation -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You've done enough cooking to know the basics about how to quickly and " -"efficiently sort your ingredients." +"We need some shelter, so build a log shack with a wooden roof in the " +"southern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Knife Skills" +#: lang/json/recipe_from_json.py +msgid "log shack" msgstr "" -#. ~ Description for Knife Skills -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You're quite skilled at culinary knife work, making you noticeably faster at" -" preparing meals that involve a lot of chopping." +"We need some shelter, so build a log shack with a wooden roof in the " +"southeastern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Principles of Baking" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof in the eastern" +" part of the camp." msgstr "" -#. ~ Description for Principles of Baking -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You know the basics of baking - proportions, leavening, and things - and are" -" less likely to make a dramatic mistake when working from memory." +"We need some shelter, so build a log shack with a wooden roof in the " +"northeastern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Breadmaking" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof in the " +"northern part of the camp." msgstr "" -#. ~ Description for Breadmaking -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You've baked enough bread to consider yourself an expert. May your yeast be" -" ever frothy." +"We need some shelter, so build a log shack with a wooden roof in the " +"northwestern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Dessert Baking" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof in the western" +" part of the camp." msgstr "" -#. ~ Description for Dessert Baking -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Anyone can make a cookie, but you can make it look amazing. Cakes and other" -" fluffies are also no longer a barrier." +"We need some shelter, so build a log shack with a wooden roof in the " +"southwestern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Patisserie Expert" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"southern part of the camp." msgstr "" -#. ~ Description for Patisserie Expert -#: lang/json/proficiency_from_json.py -msgid "" -"You could have been a professional baker before the Cataclysm. Your " -"profiteroles are the envy of the wastelands." +#: lang/json/recipe_from_json.py +msgid "metal shack" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Principles of Frying" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"southeastern part of the camp." msgstr "" -#. ~ Description for Principles of Frying -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Anyone can toss stuff into deep frier oil. You know more about selecting " -"oil, keeping the food from burning, and the like." +"We need some shelter, so build a metal shack with a metal roof in the " +"eastern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Breading & Battering" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"northeastern part of the camp." msgstr "" -#. ~ Description for Breading & Battering -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You know enough about deep frying breads and batters to do it easily without" -" thinking about it." +"We need some shelter, so build a metal shack with a metal roof in the " +"northern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Fried Desserts" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"northwestern part of the camp." msgstr "" -#. ~ Description for Fried Desserts -#: lang/json/proficiency_from_json.py -msgid "You know the vaunted secrets of creating delicious deep fried sweets." +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"western part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Culinary Fermentation" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof in the " +"southwestern part of the camp." msgstr "" -#. ~ Description for Culinary Fermentation -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"The basics of fermenting for human consumption, including sanitary " -"technique, avoiding harmful molds, and identifying common problems." +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the southern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Beverage Distillation" +#: lang/json/recipe_from_json.py +msgid "mi-go resin shack" msgstr "" -#. ~ Description for Beverage Distillation -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Applying the science of distillation to alcoholic beverages to get something" -" tasty." +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the southeastern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Brewing" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the eastern part of the camp." msgstr "" -#. ~ Description for Brewing -#: lang/json/proficiency_from_json.py -msgid "The fine art of brewing grains into beers." +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the northeastern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Winemaking" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the northern part of the camp." msgstr "" -#. ~ Description for Winemaking -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"The knowledge of how to turn sugary fruits, and occasionally vegetables, " -"into fermented beverages." +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the northwestern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Lactofermentation" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the western part of the camp." msgstr "" -#. ~ Description for Lactofermentation -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"The microbiology of most non-alcoholic fermented edibles, from sauerkraut to" -" sourdough." +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"in the southwestern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Principles of Cheesemaking" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southern part of the camp." msgstr "" -#. ~ Description for Principles of Cheesemaking -#: lang/json/proficiency_from_json.py -msgid "" -"The basics of curdling and coagulating milk and similar things without the " -"wrong kinds of bacteria and mold winning out." +#: lang/json/recipe_from_json.py +msgid "rammed earth shack" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Cheesemaking Expert" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southeastern part of the camp." msgstr "" -#. ~ Description for Cheesemaking Expert -#: lang/json/proficiency_from_json.py -msgid "Taking the basics of curdled milk and making it delicious." +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"eastern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Food Preservation" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northeastern part of the camp." msgstr "" -#. ~ Description for Food Preservation -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"The basic knowledge of ways to keep food safe for long periods of time in a " -"post-refrigeration world." +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Curing and Drying Food" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"northwestern part of the camp." msgstr "" -#. ~ Description for Curing and Drying Food -#: lang/json/proficiency_from_json.py -msgid "Using salt, smoke, and similar agents to cure or dehydrate food." +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"western part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Canning Food" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof in the " +"southwestern part of the camp." msgstr "" -#. ~ Description for Canning Food -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Using pressure canning or tinning to safely store food in sealed containers." +"We need some shelter, so build a stone shack with a wooden roof in the " +"southern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Scavenger Cooking" +#: lang/json/recipe_from_json.py +msgid "stone shack" msgstr "" -#. ~ Description for Scavenger Cooking -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You know the secrets of cooking tasty food using strange substitutions and " -"weird things you found in a cabinet in an abandoned house." +"We need some shelter, so build a stone shack with a wooden roof in the " +"southeastern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Forager Cooking" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"eastern part of the camp." msgstr "" -#. ~ Description for Forager Cooking -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Cooking with foraged ingredients that you wouldn't find in most cookbooks." +"We need some shelter, so build a stone shack with a wooden roof in the " +"northeastern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Electronics Soldering" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"northern part of the camp." msgstr "" -#. ~ Description for Electronics Soldering -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"An understanding of the skills and tools needed to create durable, effective" -" soldered electrical connections." +"We need some shelter, so build a stone shack with a wooden roof in the " +"northwestern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Electrical Circuits" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof in the " +"western part of the camp." msgstr "" -#. ~ Description for Electrical Circuits -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Practical experience building electrical circuits, and a grasp of the " -"principles of electrical continuity, current, voltage, and resistance." +"We need some shelter, so build a stone shack with a wooden roof in the " +"southwestern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Semiconductors" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southern part of the camp." msgstr "" -#. ~ Description for Semiconductors -#: lang/json/proficiency_from_json.py -msgid "" -"Basic working knowledge of using semiconductors such as diodes and " -"transistors in electrical circuits, for switching or amplifying electrical " -"signals." +#: lang/json/recipe_from_json.py +msgid "wattle and daub shack" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Integrated Circuits" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southeastern part of the camp." msgstr "" -#. ~ Description for Integrated Circuits -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Familiarity with the role of IC chips in circuit design, and ability to " -"identify many common pre-cataclysm ICs and understand how to use them in " -"functional circuits." +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the eastern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Electromagnetics" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northeastern part of the camp." msgstr "" -#. ~ Description for Electromagnetics -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"A practical working knowledge of electromagnetic fields and their creation " -"and application." +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Electroshock Weapons" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the northwestern part of the camp." msgstr "" -#. ~ Description for Electroshock Weapons -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"An understanding of how to use high voltage, low-current devices to cause " -"debilitating muscle spasms. Includes some theoretical knowledge of how to " -"protect yourself from these." +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the western part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Principles of Gunsmithing" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof in " +"the southwestern part of the camp." msgstr "" -#. ~ Description for Principles of Gunsmithing -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"A basic understanding of how guns are put together and what tools and " -"materials are needed for the job." +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Improvised Gunmaking" +#: lang/json/recipe_from_json.py +msgid "wooden shack" msgstr "" -#. ~ Description for Improvised Gunmaking -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You've become an expert at putting together guns and launchers from " -"makeshift parts." +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southeastern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Antique Gunsmithing" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"eastern part of the camp." msgstr "" -#. ~ Description for Antique Gunsmithing -#: lang/json/proficiency_from_json.py -msgid "You're specifically skilled at building and repairing antique guns." +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northeastern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Spring-powered Guns and Crossbows" -msgstr "Пружинна зброя та арбалети" - -#. ~ Description for Spring-powered Guns and Crossbows -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Similar to bowyery, the art of making guns that are powered by elastic " -"mechanisms." +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northern part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Revolver Gunsmithing" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"northwestern part of the camp." msgstr "" -#. ~ Description for Revolver Gunsmithing -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You've got the know-how to make a classic Western revolver, and its many " -"variants." +"We need some shelter, so build a wooden shack with a wooden roof in the " +"western part of the camp." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Principles of Metalworking" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof in the " +"southwestern part of the camp." msgstr "" -#. ~ Description for Principles of Metalworking -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"A basic understanding of the properties of metal as a material, and the " -"concepts behind smithing, die casting, and other metalworking techniques." +"We need to barricade front windows, let's build wooden walls over them." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Principles of Welding" +#: lang/json/recipe_from_json.py +msgid "wooden barricades" msgstr "" -#. ~ Description for Principles of Welding -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"A basic understanding of the different types of welding, welding tools and " -"fuels, how to weld different materials, and more." +"We need to barricade front windows, let's build mi-go resin walls over them." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Welding" +#: lang/json/recipe_from_json.py +msgid "mi-go resin barricades" msgstr "" -#. ~ Description for Welding -#: lang/json/proficiency_from_json.py -msgid "You are an experienced welder." +#: lang/json/recipe_from_json.py +msgid "We could build butchery rack to start hunting larger animals." msgstr "" -#: lang/json/proficiency_from_json.py src/crafting_gui.cpp -msgid "Blacksmithing" +#: lang/json/recipe_from_json.py +msgid "butchery rack" msgstr "" -#. ~ Description for Blacksmithing -#: lang/json/proficiency_from_json.py -msgid "The craft of working metal into tools and other items of use." +#: lang/json/recipe_from_json.py +msgid "We should reinforce front doors to make this base safer." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Redsmithing" +#: lang/json/recipe_from_json.py +msgid "reinforce doors" msgstr "" -#. ~ Description for Redsmithing -#: lang/json/proficiency_from_json.py -msgid "" -"Working copper and bronze shares a lot of techniques with blacksmithing, but" -" the more ductile copper-containing metals have a trick all their own." +#: lang/json/recipe_from_json.py +msgid "Survey military helipad garage." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Fine Metalsmithing" +#: lang/json/recipe_from_json.py +msgid "military helipad garage survey" msgstr "" -#. ~ Description for Fine Metalsmithing -#: lang/json/proficiency_from_json.py -msgid "How to make jewelry from precious metals like gold and silver." +#: lang/json/recipe_from_json.py +msgid "Digging a root cellar will help us preserving fish and other food." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Armorsmithing" +#: lang/json/recipe_from_json.py +msgid "We must barricade windows, let's use wooden walls." msgstr "" -#. ~ Description for Armorsmithing -#: lang/json/proficiency_from_json.py -msgid "How to make articulated armor from pieces of metal." +#: lang/json/recipe_from_json.py +msgid "We must barricade windows, let's use resin walls." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Bladesmithing" +#: lang/json/recipe_from_json.py +msgid "resin barricades" msgstr "" -#. ~ Description for Bladesmithing -#: lang/json/proficiency_from_json.py -msgid "How to fabricate sharp and reliable blades from scratch." +#: lang/json/recipe_from_json.py +msgid "Building a butchery rack will allow us hunting bigger animals." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Manual Tooling" +#: lang/json/recipe_from_json.py +msgid "We should reinforce doors to further secure our base." msgstr "" -#. ~ Description for Manual Tooling -#: lang/json/proficiency_from_json.py -msgid "" -"How to make high-quality tools and parts by hand. Includes techniques like " -"threading, durable articulation points, and using appropriate metals for " -"appropriate tasks. Also applies to making blunt instruments that can " -"withstand a severe beating without distortion." +#: lang/json/recipe_from_json.py +msgid "Let's build 1. pair of mattress beds in place of desks." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Wire Making" +#: lang/json/recipe_from_json.py +msgid "build 1. pair of mattress beds" msgstr "" -#. ~ Description for Wire Making -#: lang/json/proficiency_from_json.py -msgid "" -"How to turn raw ingots and metals into usable wire. Includes both drawing " -"and extruding." +#: lang/json/recipe_from_json.py +msgid "Let's build 2. pair of mattress beds in place of desks." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Basic Knapping" +#: lang/json/recipe_from_json.py +msgid "build 2. pair of mattress beds" msgstr "" -#. ~ Description for Basic Knapping -#: lang/json/proficiency_from_json.py -msgid "" -"You know the basic principles of turning stones into more useful tools." +#: lang/json/recipe_from_json.py +msgid "Let's build 3. pair of mattress beds in place of desks." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Knapping" +#: lang/json/recipe_from_json.py +msgid "build 3. pair of mattress beds" msgstr "" -#. ~ Description for Knapping -#: lang/json/proficiency_from_json.py -msgid "" -"You've banged rocks together so much and for so long, you've become " -"extremely fast at it." +#: lang/json/recipe_from_json.py +msgid "Let's build 4. pair of mattress beds in place of desks." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Glassblowing" +#: lang/json/recipe_from_json.py +msgid "build 4. pair of mattress beds" msgstr "" -#. ~ Description for Glassblowing -#: lang/json/proficiency_from_json.py -msgid "Working with glass and heat without poisoning or perforating yourself." +#: lang/json/recipe_from_json.py +msgid "Let's build 5. pair of mattress beds in place of desks." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Plumbing" +#: lang/json/recipe_from_json.py +msgid "build 5. pair of mattress beds" msgstr "" -#. ~ Description for Plumbing -#: lang/json/proficiency_from_json.py -msgid "" -"Working with pipes and pipe fittings to transport fluids without leakage." +#: lang/json/recipe_from_json.py +msgid "Let's build 1. pair of straw beds in place of desks." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Pottery" +#: lang/json/recipe_from_json.py +msgid "build 1. pair of straw beds" msgstr "" -#. ~ Description for Pottery -#: lang/json/proficiency_from_json.py -msgid "Basic pottery, from shaping to working with slip to fuse pieces." +#: lang/json/recipe_from_json.py +msgid "Let's build 2. pair of straw beds in place of desks." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Bowyery" +#: lang/json/recipe_from_json.py +msgid "build 2. pair of straw beds" msgstr "" -#. ~ Description for Bowyery -#: lang/json/proficiency_from_json.py -msgid "The ability to make durable, effective bows." +#: lang/json/recipe_from_json.py +msgid "Let's build 3. pair of straw beds in place of desks." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Fletching" +#: lang/json/recipe_from_json.py +msgid "build 3. pair of straw beds" msgstr "" -#. ~ Description for Fletching -#: lang/json/proficiency_from_json.py -msgid "The skill involved in making arrows that fly true." +#: lang/json/recipe_from_json.py +msgid "Let's build 4. pair of straw beds in place of desks." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Basketweaving" +#: lang/json/recipe_from_json.py +msgid "build 4. pair of straw beds" msgstr "" -#. ~ Description for Basketweaving -#: lang/json/proficiency_from_json.py -msgid "Forming coarse fibers into shapes." +#: lang/json/recipe_from_json.py +msgid "Let's build 5. pair of straw beds in place of desks." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Pottery Glazing" +#: lang/json/recipe_from_json.py +msgid "build 5. pair of straw beds" msgstr "" -#. ~ Description for Pottery Glazing -#: lang/json/proficiency_from_json.py -msgid "Adding glazes to pottery to make them waterproof." +#: lang/json/recipe_from_json.py +msgid "Survey Light Industry Workshop." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Plastic Working" +#: lang/json/recipe_from_json.py +msgid "expansion survey" msgstr "" -#. ~ Description for Plastic Working -#: lang/json/proficiency_from_json.py -msgid "" -"Working with plastic using your hands, including carving, molding, and " -"gluing it. You know how to identify thermoplastics that are suitable for " -"mold casting, and how to identify the right plastic for the right job." +#: lang/json/recipe_from_json.py +msgid "Let's add a drop hammer for even more crafting possibilities." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Carving" +#: lang/json/recipe_from_json.py +msgid "drop hammer" msgstr "" -#. ~ Description for Carving -#: lang/json/proficiency_from_json.py -msgid "Shaping wood, bone, and similar materials with a cutting implement." +#: lang/json/recipe_from_json.py +msgid "Let's remove plants from garden and plow a few plots." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Helicopter Piloting" +#: lang/json/recipe_from_json.py +msgid "prepare garden" msgstr "" -#. ~ Description for Helicopter Piloting -#: lang/json/proficiency_from_json.py -msgid "" -"Before the cataclysm, you were a helicopter pilot. Now, you just hope you " -"can fly again." +#: lang/json/recipe_from_json.py +msgid "build a radio tower and console" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Airframe and Powerplant Mechanic" +#: lang/json/recipe_from_json.py +msgid "Survey mansion's entrance." msgstr "" -#. ~ Description for Airframe and Powerplant Mechanic -#: lang/json/proficiency_from_json.py -msgid "" -"You've been trained and certified to repair aircraft. You're not really " -"sure how that could help you survive now." +#: lang/json/recipe_from_json.py +msgid "entrance survey" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Gem Setting" +#: lang/json/recipe_from_json.py +msgid "Survey mansion's swimming pool." msgstr "" -#. ~ Description for Gem Setting -#: lang/json/proficiency_from_json.py -msgid "How to add gemstones to jewelry." +#: lang/json/recipe_from_json.py +msgid "swimming pool survey" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Handloading" +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bedrooms." msgstr "" -#. ~ Description for Handloading -#: lang/json/proficiency_from_json.py -msgid "" -"You know how to accurately measure powder and projectile weights for " -"reloading firearm cartridges." +#: lang/json/recipe_from_json.py +msgid "bedrooms survey" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Parkour Expert" +#: lang/json/recipe_from_json.py +msgid "Survey mansion's???." msgstr "" -#. ~ Description for Parkour Expert -#: lang/json/proficiency_from_json.py -msgid "" -"You're skilled at clearing obstacles; terrain like railings or counters are " -"as easy for you to move on as solid ground." +#: lang/json/recipe_from_json.py +msgid "??? survey" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Joint Articulation" +#: lang/json/recipe_from_json.py +msgid "Survey mansion's kitchen." msgstr "" -#. ~ Description for Joint Articulation -#: lang/json/proficiency_from_json.py -msgid "" -"Making flexible items out of hard materials is tricky. You've done enough " -"of it to understand how to make smoothly articulated joints out of rigid or " -"semi-rigid materials." +#: lang/json/recipe_from_json.py +msgid "Survey mansion's library." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Garment Closures" +#: lang/json/recipe_from_json.py +msgid "library survey" msgstr "" -#. ~ Description for Garment Closures -#: lang/json/proficiency_from_json.py -msgid "" -"You are familiar with the adjustments and tricks needed to make properly " -"functional buttons, zippers, and other closures on garments." +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bedroom." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Fabric Waterproofing" +#: lang/json/recipe_from_json.py +msgid "bedroom survey" msgstr "" -#. ~ Description for Fabric Waterproofing -#: lang/json/proficiency_from_json.py -msgid "" -"You know how to making garments and fabric containers sealed against water." +#: lang/json/recipe_from_json.py +msgid "Survey mansion's living rooms." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Stretch Fabric" +#: lang/json/recipe_from_json.py +msgid "living rooms survey" msgstr "" -#. ~ Description for Stretch Fabric -#: lang/json/proficiency_from_json.py -msgid "" -"Making elastic bands is easy enough, but making a whole garment from " -"stretchy cloth takes a bit of finesse. You're good at it." +#: lang/json/recipe_from_json.py +msgid "swimming survey" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Cobbling" +#: lang/json/recipe_from_json.py +msgid "Survey mansion's bar." msgstr "" -#. ~ Description for Cobbling -#: lang/json/proficiency_from_json.py -msgid "Like a magical elf, you've learned how to construct footwear by hand." +#: lang/json/recipe_from_json.py +msgid "bar survey" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Spinning" +#: lang/json/recipe_from_json.py +msgid "Let's build a bunk bed." msgstr "" -#. ~ Description for Spinning -#: lang/json/proficiency_from_json.py -msgid "The art of spinning fiber into thread." +#: lang/json/recipe_from_json.py +msgid "Let's build another bunk bed." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Weaving" +#: lang/json/recipe_from_json.py +msgid "another bunk bed" msgstr "" -#. ~ Description for Weaving -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You've learned how to use a loom to produce sheets of fabric from thread." +"Digging a well will give us easy access to water and allow us to start small" +" farm." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Millinery" +#: lang/json/recipe_from_json.py +msgid "Let's plow some plots." msgstr "" -#. ~ Description for Millinery -#: lang/json/proficiency_from_json.py -msgid "Like a solitary mouse, you've learned how to construct hats by hand." +#: lang/json/recipe_from_json.py +msgid "small farm" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Knitting" +#: lang/json/recipe_from_json.py +msgid "" +"We could try to fix reactor's controller to power lights, it would really " +"help us in planning missions." msgstr "" -#. ~ Description for Knitting -#: lang/json/proficiency_from_json.py -msgid "" -"Knitting, one of the oldest ways of tying knots in fiber until it is fabric." +#: lang/json/recipe_from_json.py +msgid "fix reactor's controller" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Speed Knitting" +#: lang/json/recipe_from_json.py +msgid "" +"Let's set up a radio tower to improve our recruitment efforts, we will " +"redirect some power into it from nuclear reactor." msgstr "" -#. ~ Description for Speed Knitting -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You have knitted and knitted and knitted some more, and have the consistent " -"string tension to show for it. When you get going, the clicking of your " -"needles is like a metronome." +"Let's build a log shack with a wooden roof for our blacksmith's workshop." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Principles of Leatherworking" +#: lang/json/recipe_from_json.py +msgid "log blacksmith workshop" msgstr "" -#. ~ Description for Principles of Leatherworking -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You've got a basic familiarity with how to work with leather, furs, hides, " -"and similar materials." +"Let's build a metal shack with a metal roof for our blacksmith's workshop." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Leatherworking" +#: lang/json/recipe_from_json.py +msgid "metal blacksmith workshop" msgstr "" -#. ~ Description for Leatherworking -#: lang/json/proficiency_from_json.py -msgid "" -"Working with leather requires a specific set of skills and tools… a set you " -"are familiar with." +#: lang/json/recipe_from_json.py +msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Furriery" +#: lang/json/recipe_from_json.py +msgid "mi-go blacksmith workshop" msgstr "" -#. ~ Description for Furriery -#: lang/json/proficiency_from_json.py -msgid "Working with fur and faux fur is a skill all its own." +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth shack with a sod roof for our blacksmith's " +"workshop." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Chitinworking" +#: lang/json/recipe_from_json.py +msgid "rammed earth blacksmith workshop" msgstr "" -#. ~ Description for Chitinworking -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"It seems unlikely that anyone prior to the cataclysm knew how to work with " -"the shells of giant bugs as well as you do now." +"Let's build a stone shack with a wooden roof for our blacksmith's workshop." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Chain Garments" +#: lang/json/recipe_from_json.py +msgid "stone blacksmith workshop" msgstr "" -#. ~ Description for Chain Garments -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Turning sheets of chain links into effective, wearable clothing that doesn't" -" bind up." +"Let's build a wattle and daub shack with a sod roof for our blacksmith's " +"workshop." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Advanced polymer sewing" +#: lang/json/recipe_from_json.py +msgid "wattle and daub blacksmith workshop" msgstr "" -#. ~ Description for Advanced polymer sewing -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You know the tricks for working with Kevlar, Nomex, and other advanced " -"polymer cloth." +"Let's build a wooden shack with a wooden roof for our blacksmith's workshop." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Lockpicking" +#: lang/json/recipe_from_json.py +msgid "wooden blacksmith workshop" msgstr "" -#. ~ Description for Lockpicking -#: lang/json/proficiency_from_json.py -msgid "You know how to pick a lock, at least in theory." +#: lang/json/recipe_from_json.py +msgid "Let's build a rock forge and a workbench to start smithing." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Locksmith" +#: lang/json/recipe_from_json.py +msgid "workbench and forge" msgstr "" -#. ~ Description for Locksmith -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You can pick a lock in the dark, blindfolded. Although that doesn't make it" -" all that much harder. You're good at locks, OK?" +"Let's build a second workbench and a drop hammer for more productive " +"smithing." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Safecracking" +#: lang/json/recipe_from_json.py +msgid "workbench and drop hammer" msgstr "" -#. ~ Description for Safecracking -#: lang/json/proficiency_from_json.py -msgid "Opening safes is an exacting skill, one that you are proficient at." +#: lang/json/recipe_from_json.py +msgid "Let's build a butchery rack, so we can start hunting large animals." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Principles of Trapping" +#: lang/json/recipe_from_json.py +msgid "" +"We should remove some of display racks and counters, then build a pair of " +"mattress beds inside radio control's room for our survivors." msgstr "" -#. ~ Description for Principles of Trapping -#: lang/json/proficiency_from_json.py -msgid "You know the basics of setting and taking down traps safely." +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in radio control's room" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Trap Setting" +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds inside radio tower shack for our " +"survivors." msgstr "" -#. ~ Description for Trap Setting -#: lang/json/proficiency_from_json.py -msgid "You're specifically quite skilled at setting effective traps." +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in radio tower" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Trap Disarming" +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the northeast side shack for our " +"survivors." msgstr "" -#. ~ Description for Trap Disarming -#: lang/json/proficiency_from_json.py -msgid "You know how to take down a trap safely." +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in NE side shack" msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Spotting and Awareness" +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southwest corner shack for " +"our survivors." msgstr "" -#. ~ Description for Spotting and Awareness -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW corner shack" +msgstr "" + +#: lang/json/recipe_from_json.py msgid "" -"You are skilled at spotting things out of the ordinary, like traps or " -"ambushes." +"We should build a pair of mattress beds in the southwest side shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Fiber Twisting" +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SW side shack" msgstr "" -#. ~ Description for Fiber Twisting -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You've got a basic grasp of the theory of how to twist and arrange fibers " -"into a more durable cord." +"We should build a pair of mattress beds in the southeast side shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Ropemaking" +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE side shack" msgstr "" -#. ~ Description for Ropemaking -#: lang/json/proficiency_from_json.py -msgid "Making twisted fibers into durable and useful rope." +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the southeast corner shack for " +"our survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Basic Tanning" +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in SE corner shack" msgstr "" -#. ~ Description for Basic Tanning -#: lang/json/proficiency_from_json.py -msgid "You're familiar with the theory behind turning raw hides into leather." +#: lang/json/recipe_from_json.py +msgid "" +"We should build a pair of mattress beds in the south side shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Tanning" +#: lang/json/recipe_from_json.py +msgid "pair of mattress beds in S side shack" msgstr "" -#. ~ Description for Tanning -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You have a lot of practice and experience with processing hides to leather, " -"as well as related techniques like making boiled leather." +"We should remove some of display racks and counters, then build a pair of " +"straw beds inside radio control's room for our survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Basic Archer's Form" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in radio control's room" msgstr "" -#. ~ Description for Basic Archer's Form -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You have grasped some basic understanding on archery, and find handling bows" -" easier." +"We should build a pair of straw beds inside radio tower shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Expert Archer's Form" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in radio tower" msgstr "" -#. ~ Description for Expert Archer's Form -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"After significant practice, you have become an expert in the movements used " -"in drawing and firing a bow, and have strengthened those muscles " -"considerably." +"We should build a pair of straw beds in the northeast side shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Master Archer's Form" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in NE side shack" msgstr "" -#. ~ Description for Master Archer's Form -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You have drawn and fired a bow so many times, you probably have a bit of a " -"twist in your spine from it. You've developed what would once have been a " -"world class understanding of the pose and motion of effective archery." +"We should build a pair of straw beds in the southwest corner shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Basic Carpentry" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW corner shack" msgstr "" -#. ~ Description for Basic Carpentry -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Simple projects involving holding planks and panels of wood together with " -"nails or similar fasteners." +"We should build a pair of straw beds in the southwest side shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Alchemy" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SW side shack" msgstr "" -#. ~ Description for Alchemy -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"You know the basics of manipulating the mana of objects through application " -"of chemical laws." +"We should build a pair of straw beds in the southeast side shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Almetallurgy" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE side shack" msgstr "" -#. ~ Description for Almetallurgy -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"The forging of magical alloys is a complex process requiring an " -"understanding of both mundane metals and alchemy." +"We should build a pair of straw beds in the southeast corner shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Dragon leather working" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in SE corner shack" msgstr "" -#. ~ Description for Dragon leather working -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Working with dragon leather requires a specific set of skills and tools… a " -"set you are familiar with." +"We should build a pair of straw beds in the south side shack for our " +"survivors." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Dragon scale working" +#: lang/json/recipe_from_json.py +msgid "pair of straw beds in S side shack" msgstr "" -#. ~ Description for Dragon scale working -#: lang/json/proficiency_from_json.py -msgid "" -"Working with dragon scales requires a specific set of skills and tools… a " -"set you are familiar with." +#: lang/json/recipe_from_json.py +msgid "Digging a root cellar will give us a way to preserve food." msgstr "" -#: lang/json/proficiency_from_json.py -msgid "Basic Golemancy" +#: lang/json/recipe_from_json.py +msgid "Digging a well will give us easy access to water." msgstr "" -#. ~ Description for Basic Golemancy -#: lang/json/proficiency_from_json.py +#: lang/json/recipe_from_json.py msgid "" -"Infusing shaped material with your will and the ability to move is hard but " -"you're starting to get it." +"Let's fix up radio tower and controls to improve our recruitment efforts." msgstr "" -#. ~ Crafting recipes category name -#: lang/json/recipe_category_from_json.py -msgid "*" +#: lang/json/recipe_from_json.py +msgid "fix radio tower and controls" msgstr "" -#. ~ Crafting recipes subcategory of '*' category -#: lang/json/recipe_category_from_json.py -msgid "FAVORITE" +#: lang/json/recipe_from_json.py +msgid "We should dig pits for palisade around camp." msgstr "" -#. ~ Crafting recipes subcategory of '*' category -#: lang/json/recipe_category_from_json.py -msgid "RECENT" +#: lang/json/recipe_from_json.py +msgid "We should build palisade around camp." msgstr "" -#. ~ Crafting recipes subcategory of '*' category -#: lang/json/recipe_category_from_json.py -msgid "HIDDEN" +#: lang/json/recipe_from_json.py +msgid "build palisade" msgstr "" -#. ~ Crafting recipes category name -#: lang/json/recipe_category_from_json.py -msgid "WEAPON" +#: lang/json/recipe_from_json.py +msgid "" +"We could try to fix whole tower and supply it with enough power, which could" +" give us remote access to computer systems connected to backbone network or " +"communication satellites." msgstr "" -#. ~ Crafting recipes subcategory all -#: lang/json/recipe_category_from_json.py -#: lang/json/recipe_category_from_json.py src/crafting_gui.cpp -msgid "ALL" +#: lang/json/recipe_from_json.py +msgid "fix whole radio tower" msgstr "" -#. ~ Crafting recipes subcategory of 'WEAPON' category -#: lang/json/recipe_category_from_json.py -msgid "BASHING" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"northeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'WEAPON' category -#: lang/json/recipe_category_from_json.py -msgid "CUTTING" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"southeast corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'WEAPON' category -#: lang/json/recipe_category_from_json.py -msgid "PIERCING" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the " +"southwest corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'WEAPON' category -#: lang/json/recipe_category_from_json.py -msgid "RANGED" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a log shack with a wooden roof on the south " +"side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'WEAPON' category -#: lang/json/recipe_category_from_json.py -msgid "EXPLOSIVE" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"northeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'AMMO' category -#: lang/json/recipe_category_from_json.py -msgid "PISTOL" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southwest corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'AMMO' category -#: lang/json/recipe_category_from_json.py -msgid "RIFLE" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southwest side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'AMMO' category -#: lang/json/recipe_category_from_json.py -msgid "SHOT" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'AMMO' category -#: lang/json/recipe_category_from_json.py -msgid "GRENADES" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the " +"southeast corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'AMMO' category -#: lang/json/recipe_category_from_json.py -msgid "ARROWS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a metal shack with a metal roof on the south " +"side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'AMMO' category -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#: lang/json/recipe_category_from_json.py -#: lang/json/recipe_category_from_json.py src/crafting_gui.cpp -msgid "COMPONENTS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build migo resin walls over windows in radio " +"control's room." msgstr "" -#. ~ Crafting recipes subcategory of 'FOOD' category -#: lang/json/recipe_category_from_json.py -msgid "DRINKS" -msgstr "НАПОЇ" +#: lang/json/recipe_from_json.py +msgid "barricade radio control's room" +msgstr "" -#. ~ Crafting recipes subcategory of 'FOOD' category -#: lang/json/recipe_category_from_json.py -msgid "DRY" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"inside radio tower." msgstr "" -#. ~ Crafting recipes subcategory of 'FOOD' category -#: lang/json/recipe_category_from_json.py -msgid "MEAT" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the northeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'FOOD' category -#: lang/json/recipe_category_from_json.py -msgid "VEGGI" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southwest corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'FOOD' category -#: lang/json/recipe_category_from_json.py -msgid "SNACK" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southwest side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'FOOD' category -#: lang/json/recipe_category_from_json.py -msgid "BREAD" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'FOOD' category -#: lang/json/recipe_category_from_json.py -msgid "PASTA" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the southeast corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'FOOD' category -#: lang/json/recipe_category_from_json.py -msgid "BREW" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " +"on the south side of the camp." msgstr "" -#. ~ Crafting recipes category name -#: lang/json/recipe_category_from_json.py -msgid "CHEM" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"northeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'CHEM' category -#: lang/json/recipe_category_from_json.py -msgid "MUTAGEN" -msgstr "МУТАГЕНИ" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southwest corner of the camp." +msgstr "" -#. ~ Crafting recipes subcategory of 'CHEM' category -#: lang/json/recipe_category_from_json.py -msgid "CHEMICALS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southwest side of the camp." msgstr "" -#. ~ Crafting recipes category name -#: lang/json/recipe_category_from_json.py -msgid "ELECTRONIC" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#: lang/json/recipe_category_from_json.py -msgid "PARTS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"southeast corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#: lang/json/recipe_category_from_json.py -msgid "LIGHTING" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a rammed earth shack with a sod roof on the " +"south side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'ARMOR' category -#: lang/json/recipe_category_from_json.py -msgid "STORAGE" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"northeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'ARMOR' category -#: lang/json/recipe_category_from_json.py -msgid "SUIT" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southwest corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'ARMOR' category -#: lang/json/recipe_category_from_json.py -msgid "ARMS" -msgstr "РУКИ" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southwest side of the camp." +msgstr "" -#. ~ Crafting recipes subcategory of 'ARMOR' category -#: lang/json/recipe_category_from_json.py -msgid "HANDS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'ARMOR' category -#: lang/json/recipe_category_from_json.py -msgid "LEGS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the " +"southeast corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'ARMOR' category -#: lang/json/recipe_category_from_json.py -msgid "FEET" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a stone shack with a wooden roof on the south" +" side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'OTHER' category -#: lang/json/recipe_category_from_json.py -msgid "MEDICAL" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the northeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'OTHER' category -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: lang/json/recipe_category_from_json.py -msgid "MATERIALS" -msgstr "МАТЕРІАЛИ" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southwest corner of the camp." +msgstr "" -#. ~ Crafting recipes subcategory of 'OTHER' category -#: lang/json/recipe_category_from_json.py -msgid "TRAPS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southwest side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'OTHER' category -#: lang/json/recipe_category_from_json.py -msgid "VEHICLE" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southeast side of the camp." msgstr "" -#. ~ Crafting recipes category name -#: lang/json/recipe_category_from_json.py -msgid "ANIMALS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the southeast corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'ANIMALS' category -#: lang/json/recipe_category_from_json.py -msgid "CANINE ARMOR" -msgstr "ОБЛАДУНКИ ДЛЯ СОБАК" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wattle and daub shack with a sod roof on " +"the south side of the camp." +msgstr "" -#. ~ Crafting recipes subcategory of 'ANIMALS' category -#: lang/json/recipe_category_from_json.py -msgid "EQUINE ARMOR" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build wooden walls over windows in radio control's " +"room." msgstr "" -#. ~ Crafting recipes subcategory of 'ANIMALS' category -#: lang/json/recipe_category_from_json.py -msgid "EQUINE STORAGE" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof inside " +"radio tower." msgstr "" -#. ~ Crafting recipes category name -#: lang/json/recipe_category_from_json.py -msgid "BUILDING" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"northeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'BUILDING' category -#: lang/json/recipe_category_from_json.py -msgid "BASES" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southwest corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'BUILDING' category -#: lang/json/recipe_category_from_json.py -msgid "EXPANSIONS" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southwest side of the camp." msgstr "" -#. ~ Crafting recipes category name -#: lang/json/recipe_category_from_json.py -msgid "PRACTICE" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southeast side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "SCIENCE" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"southeast corner of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "FABRICATION" +#: lang/json/recipe_from_json.py +msgid "" +"We need some shelter, so build a wooden shack with a wooden roof on the " +"south side of the camp." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "SURVIVAL" +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should reorganize that dining area into our " +"kitchen." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "TAILORING" +#: lang/json/recipe_from_json.py +msgid "prepare the kitchen area" msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "ATHLETICS" +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well, put it near that winch. This will make our future " +"here more secure." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "COMPUTERS" +#: lang/json/recipe_from_json.py +msgid "build a well" msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "DEVICES" +#: lang/json/recipe_from_json.py +msgid "" +"Let's set up a radio tower to improve our recruitment efforts, we'll " +"repurpose that terminal for it." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py src/game_inventory.cpp -msgid "HEALTH" +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should add some storage and a root cellar in" +" our kitchen area." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "MECHANICS" +#: lang/json/recipe_from_json.py +msgid "add storage and root cellar" msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "SOCIAL" +#: lang/json/recipe_from_json.py +msgid "Let's break up some pavement so we can farm." msgstr "" -#. ~ Crafting recipes subcategory of 'PRACTICE' category -#: lang/json/recipe_category_from_json.py -msgid "COMBAT" +#: lang/json/recipe_from_json.py +msgid "break up driveway" msgstr "" -#. ~ Crafting recipes subcategory of 'ELECTRONIC' category -#: lang/json/recipe_category_from_json.py -msgid "CBMS" +#: lang/json/recipe_from_json.py +msgid "Let's build a privacy fence around the garden." msgstr "" -#. ~ Crafting recipes subcategory of 'ANIMALS' category -#: lang/json/recipe_category_from_json.py -msgid "ELEPHANT ARMOR" +#: lang/json/recipe_from_json.py +msgid "build a privacy fence" msgstr "" -#. ~ Crafting recipes subcategory of 'ANIMALS' category -#: lang/json/recipe_category_from_json.py -msgid "OSTRICH ARMOR" +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot. Let's put it in that dining area." msgstr "" -#. ~ Crafting recipes category name -#: lang/json/recipe_category_from_json.py -msgid "ENCHANTED" +#: lang/json/recipe_from_json.py +msgid "build a fireplace" msgstr "" -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: lang/json/recipe_category_from_json.py -msgid "POTIONS" +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should set up a brazier for cooking, and " +"grab a pot. Let's put it in that dining area." msgstr "" -#. ~ Crafting recipes subcategory of 'ENCHANTED' category -#: lang/json/recipe_category_from_json.py -msgid "RUNES" +#: lang/json/recipe_from_json.py +msgid "build a brazier" msgstr "" #: lang/json/recipe_from_json.py -msgid "Stuff THE MAN doesn't want you to know" +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot. Let's put it in that dining area." msgstr "" #: lang/json/recipe_from_json.py -msgid "Sticky Rice Hedgerows" +msgid "build a wood stove" msgstr "" #: lang/json/recipe_from_json.py -msgid "Low-Carb Sashimi Donburi" +msgid "Let's build some smokers and a charcoal kiln for food preservation." msgstr "" #: lang/json/recipe_from_json.py -msgid "Royal Penny Tea" +msgid "build smoking racks and charcoal kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "Sir Tenderloin the Toothsome" +msgid "Let's make a butchery area." msgstr "" #: lang/json/recipe_from_json.py -msgid "Shagbark Nut Ambrosia" +msgid "build butchery area" msgstr "" #: lang/json/recipe_from_json.py -msgid "Natural Beet Sugar" +msgid "Let's add a vat for fermenting." msgstr "" #: lang/json/recipe_from_json.py -msgid "Leprechaun Sausage" +msgid "build fermenting vats" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of mattress beds in the southern shack for our " -"survivors." +msgid "Let's gather some tools so we can work on cars." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in S shack" +msgid "add tools for garage" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of mattress beds in the southeastern shack for our " -"survivors." +msgid "Let's furnish the southwest bedroom." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE shack" +msgid "furnish the SW bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of mattress beds in the eastern shack for our " -"survivors." +msgid "Let's furnish the northwest bedroom." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in E shack" +msgid "furnish the NW bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of mattress beds in the northeastern shack for our " -"survivors." +msgid "Let's furnish the southeast bedroom." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in NE shack" +msgid "furnish the SE bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of mattress beds in the northern shack for our " -"survivors." +msgid "Let's furnish the northeast bedroom." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in N shack" +msgid "furnish the NE bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of mattress beds in the northwestern shack for our " -"survivors." +msgid "Let's furnish the common area." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in NW shack" +msgid "furnish the common area furniture" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of mattress beds in the western shack for our " -"survivors." +msgid "Let's build a fabrication workshop." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in W shack" +msgid "build a metalworking forge" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of mattress beds in the southwestern shack for our " -"survivors." +msgid "Let's build an anvil and crucible to increase our crafting options." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW shack" +msgid "add an anvil and crucible" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southern shack for our " -"survivors." +"Let's build pottery kiln and get the tools we'll need for glassworking." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in S shack" +msgid "build a pottery kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of straw beds in the southeastern shack for our " -"survivors." +msgid "We need some tools for metal working." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE shack" +msgid "place advanced tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the eastern shack for our survivors." +"Let's get a nice workbench built to improve our work. Place it next to the " +"anvil." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in E shack" +msgid "build a workbench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the northeastern shack for our " -"survivors." +"Let's add a bellows and barrel for quenching the steel, we'll need more " +"tools too." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in NE shack" +msgid "build a bellows and barrel" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a pair of straw beds in the northern shack for our " -"survivors." +msgid "Let's build a drop hammer for some mass production." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in N shack" +msgid "build a drop hammer." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the northwestern shack for our " -"survivors." +"Let's expand our living areas with standard walls, we'll use that far " +"vehicle bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in NW shack" +msgid "build the standard white living quarters walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the western shack for our survivors." +"Let's expand our living areas with wood panel walls, we'll use that far " +"vehicle bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in W shack" +msgid "build the wood panel living quarters walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwestern shack for our " -"survivors." +"Let's expand our living areas with log walls, we'll use that far vehicle " +"bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW shack" +msgid "build the log living quarters walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should survey the base site and set up a bulletin board." +msgid "" +"Let's expand our living areas with metal walls, we'll use that far vehicle " +"bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic survey" +msgid "build the metal living quarters walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a root cellar will allow us trapping small game and preserving it." +"Let's expand our living areas with mi-go resin walls, we'll use that far " +"vehicle bay." msgstr "" -#: lang/json/recipe_from_json.py lang/json/terrain_from_json.py -msgid "root cellar" +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin living quarters walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a well will give us easy access to water and allow us to send out " -"combat patrols or scouts." +"Let's expand our living areas with rammed earth walls, we'll use that far " +"vehicle bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "water well" +msgid "build the rammed earth living quarters walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's set up a radio tower to improve our recruitment efforts." +msgid "" +"Let's expand our living areas with rock walls, we'll use that far vehicle " +"bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should dig some pits for palisade segments to block entrances to camp." +msgid "build the rock earth living quarters walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "dig pits" +msgid "" +"Let's expand our living areas with wattle and daub walls, we'll use that far" +" vehicle bay." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build palisade segments to block entrances to camp." +msgid "build the wattle and daub living quarters walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "build palisade segments" +msgid "We should survey the roof top and set up a bulletin board." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build a pair of reinforced doors to secure camp's entrance." +msgid "" +"Now that we have some cover, we should build a fireplace in the northeast " +"shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "build reinforced doors" +msgid "northeast fireplace" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build a pair of metal doors to secure camp's entrance." +msgid "" +"Now that we have some cover, we should set up a brazier in the northeast " +"shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "build metal doors" +msgid "northeast brazier" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof in the " -"southern part of the camp." +"Now that we have some cover, we should build a stove in the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "log shack" +msgid "northeast stove" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof in the " -"southeastern part of the camp." +msgid "A straw bed in the northeast shack will make sleeping easier." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof in the eastern" -" part of the camp." +msgid "northeast straw bed" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof in the " -"northeastern part of the camp." +"A proper bed in the northeast shack will give one of us a place to sleep " +"soundly." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof in the " -"northern part of the camp." +msgid "northeast bed" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof in the " -"northwestern part of the camp." +msgid "Another straw bed in the northeast shack will make sleeping easier." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof in the western" -" part of the camp." +"Another proper bed in the northeast shack will give one of us a place to " +"sleep soundly." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof in the " -"southwestern part of the camp." +"A pair of straw beds in the east tent will allow us to house two more people" +" and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "east straw beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"southern part of the camp." +"A pair of proper beds in the east tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "metal shack" +msgid "east beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"southeastern part of the camp." +"A pair of straw beds in the east room will allow us to house two more people" +" and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"eastern part of the camp." +"A pair of proper beds in the east room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"northeastern part of the camp." +"A pair of straw beds in the southeast tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"northern part of the camp." +msgid "southeast straw beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"northwestern part of the camp." +"A pair of proper beds in the southeast tent will allow us to house two more " +"people and expand the camp." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "southeast beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"western part of the camp." +"A pair of straw beds in the southeast room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof in the " -"southwestern part of the camp." +"A pair of proper beds in the southeast room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the southern part of the camp." +"A pair of straw beds in the northwest building will allow us to house two " +"more people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go resin shack" +msgid "northwest straw beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the southeastern part of the camp." +"A pair of proper beds in the northwest building will allow us to house two " +"more people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the eastern part of the camp." +msgid "northwest beds" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the northeastern part of the camp." +msgid "" +"A pair of straw beds in the west tent will allow us to house two more people" +" and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the northern part of the camp." +msgid "west straw beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the northwestern part of the camp." +"A pair of proper beds in the west tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the western part of the camp." +msgid "west beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"in the southwestern part of the camp." +"A pair of straw beds in the west room will allow us to house two more people" +" and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southern part of the camp." +"A pair of proper beds in the west room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "rammed earth shack" +msgid "" +"A pair of straw beds in the southwest tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southeastern part of the camp." +msgid "southwest straw beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"eastern part of the camp." +"A pair of proper beds in the southwest tent will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northeastern part of the camp." +msgid "southwest beds" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northern part of the camp." +"A pair of straw beds in the southwest room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"northwestern part of the camp." +"A pair of proper beds in the southwest room will allow us to house two more " +"people and expand the camp." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"western part of the camp." +"A fireplace, counter, and some pots and pans in the central building will " +"allow us to cook simple recipes and organize hunting expeditions." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof in the " -"southwestern part of the camp." +msgid "central fireplace" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southern part of the camp." +"We need a butchery rack to maximize the harvest from our hunting and " +"trapping efforts." msgstr "" #: lang/json/recipe_from_json.py -msgid "stone shack" +msgid "central butchery rack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southeastern part of the camp." +"A tool rack in the central building will give us a place to store tools." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"eastern part of the camp." +msgid "central tool rack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northeastern part of the camp." +"Setting up some tables and chairs will make the central building into a " +"dining area, and we can also use them as a workspace to organize the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northern part of the camp." +msgid "central dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"northwestern part of the camp." +msgid "south dining hall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"western part of the camp." +"A wood stove, counter, and some pots and pans in the south half of the " +"central building will allow us to cook simple recipes and organize hunting " +"expeditions. The stove will be more efficient than a fireplace." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a stone shack with a wooden roof in the " -"southwestern part of the camp." +msgid "south wood stove" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southern part of the camp." +msgid "north water well" msgstr "" #: lang/json/recipe_from_json.py -msgid "wattle and daub shack" +msgid "north root cellar" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southeastern part of the camp." +msgid "We could build a radio tower to improve the range of our radios." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the eastern part of the camp." +msgid "north radio tower" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northeastern part of the camp." +"Adding a console to control the radio tower will help with recruiting more " +"survivors." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northern part of the camp." +msgid "north radio console" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the northwestern part of the camp." +"Digging a trench along the north edge of the camp would provide some defense" +" and generate building materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the western part of the camp." +msgid "north trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof in " -"the southwestern part of the camp." +"Digging a trench along the south edge of the camp would provide some defense" +" and generate building materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southern part of the camp." +msgid "south trench" msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden shack" +msgid "" +"Digging a trench along the northeast corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the east side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southeastern part of the camp." +msgid "northeast trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"eastern part of the camp." +"Digging a trench along the northwest corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the west side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northeastern part of the camp." +msgid "northwest trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northern part of the camp." +"Digging a trench along the southeast corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the east side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"northwestern part of the camp." +msgid "southeast trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"western part of the camp." +"Digging a trench along the southwest corner of the camp would provide some " +"defense and generate building materials. If we have solid buildings all " +"along the west side of the camp, we would only need to dig the trench long " +"enough to reach the buildings." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a wooden shack with a wooden roof in the " -"southwestern part of the camp." +msgid "southwest trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need to barricade front windows, let's build wooden walls over them." +"Digging a trench along the east edge of the camp would provide some defense " +"and generate building materials. We'll need to run the trench the length of" +" the camp if we don't have solid buildings all along the east side." msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden barricades" +msgid "east trench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need to barricade front windows, let's build mi-go resin walls over them." +"Digging a trench along the west edge of the camp would provide some defense " +"and generate building materials. We'll need to run the trench the length of" +" the camp if we don't have solid buildings all along the west side." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go resin barricades" +msgid "west trench" msgstr "" #: lang/json/recipe_from_json.py -msgid "We could build butchery rack to start hunting larger animals." +msgid "" +"We need some shelter, so build half of a log shack with a wooden roof on the" +" northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py -msgid "butchery rack" +msgid "northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should reinforce front doors to make this base safer." +msgid "" +"We should use logs to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "reinforce doors" +msgid "expand northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey military helipad garage." +msgid "We should use logs to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "military helipad garage survey" +msgid "finish northeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a root cellar will help us preserving fish and other food." +msgid "" +"We should expand our housing by putting up a log building on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "We must barricade windows, let's use wooden walls." +msgid "east shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "We must barricade windows, let's use resin walls." +msgid "" +"We should expand our housing by adding a log room on the east side, which we" +" can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "resin barricades" +msgid "east room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a butchery rack will allow us hunting bigger animals." +msgid "" +"We should expand our housing by putting up a log building on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should reinforce doors to further secure our base." +msgid "southeast shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 1. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 1. pair of mattress beds" +msgid "southeast room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 2. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the northwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2. pair of mattress beds" +msgid "northwest shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 3. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3. pair of mattress beds" +msgid "west shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 4. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the west side, which we" +" can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 4. pair of mattress beds" +msgid "west room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 5. pair of mattress beds in place of desks." +msgid "" +"We should expand our housing by putting up a log building on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 5. pair of mattress beds" +msgid "southwest shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 1. pair of straw beds in place of desks." +msgid "" +"We should expand our housing by adding a log room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 1. pair of straw beds" +msgid "southwest room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 2. pair of straw beds in place of desks." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2. pair of straw beds" +msgid "central building NE corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 3. pair of straw beds in place of desks." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3. pair of straw beds" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 4. pair of straw beds in place of desks." +msgid "central building NW corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "build 4. pair of straw beds" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build 5. pair of straw beds in place of desks." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 5. pair of straw beds" +msgid "central building north half" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey Light Industry Workshop." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "expansion survey" +msgid "central building SE corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's add a drop hammer for even more crafting possibilities." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "drop hammer" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's remove plants from garden and plow a few plots." +msgid "central building SW corner" msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare garden" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a radio tower and console" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's entrance." +msgid "central building south half" msgstr "" #: lang/json/recipe_from_json.py -msgid "entrance survey" +msgid "" +"We need some shelter, so build half of a metal shack with a metal roof on " +"the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's swimming pool." +msgid "" +"We should use metal to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "swimming pool survey" +msgid "We should use metal to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bedrooms." +msgid "" +"We should expand our housing by putting up a metal building on the east " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "bedrooms survey" +msgid "" +"We should expand our housing by adding a metal room on the east side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's???." +msgid "" +"We should expand our housing by putting up a metal building on the southeast" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "??? survey" +msgid "" +"We should expand our housing by adding a metal room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's kitchen." +msgid "" +"We should expand our housing by putting up a metal building on the northwest" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's library." +msgid "" +"We should expand our housing by putting up a metal building on the west " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "library survey" +msgid "" +"We should expand our housing by adding a metal room on the west side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bedroom." +msgid "" +"We should expand our housing by putting up a metal building on the southwest" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "bedroom survey" +msgid "" +"We should expand our housing by adding a metal room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's living rooms." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "living rooms survey" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "swimming survey" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey mansion's bar." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "bar survey" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a bunk bed." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build another bunk bed." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "another bunk bed" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from metal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a well will give us easy access to water and allow us to start small" -" farm." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's plow some plots." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "small farm" +msgid "" +"We need some shelter, so build half of a mi-go resin shack with a sod roof " +"on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could try to fix reactor's controller to power lights, it would really " -"help us in planning missions." +"We should use mi-go resin to expand the shelter so we have space for another" +" bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix reactor's controller" +msgid "We should use mi-go resin to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's set up a radio tower to improve our recruitment efforts, we will " -"redirect some power into it from nuclear reactor." +"We should expand our housing by putting up a mi-go resin building on the " +"east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a log shack with a wooden roof for our blacksmith's workshop." +"We should expand our housing by adding a mi-go resin room on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "log blacksmith workshop" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a metal shack with a metal roof for our blacksmith's workshop." +"We should expand our housing by adding a mi-go resin room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "metal blacksmith workshop" +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build mi-go shack with mi-go roof for our blacksmith workshop." +msgid "" +"We should expand our housing by putting up a mi-go resin building on the " +"west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "mi-go blacksmith workshop" +msgid "" +"We should expand our housing by adding a mi-go resin room on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a rammed earth shack with a sod roof for our blacksmith's " -"workshop." +"We should expand our housing by putting up a mi-go resin building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "rammed earth blacksmith workshop" +msgid "" +"We should expand our housing by adding a mi-go resin room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a stone shack with a wooden roof for our blacksmith's workshop." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "stone blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a wattle and daub shack with a sod roof for our blacksmith's " -"workshop." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "wattle and daub blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a wooden shack with a wooden roof for our blacksmith's workshop." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "wooden blacksmith workshop" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rock forge and a workbench to start smithing." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "workbench and forge" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from mi-go resin." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build a second workbench and a drop hammer for more productive " -"smithing." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "workbench and drop hammer" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a butchery rack, so we can start hunting large animals." +msgid "" +"We need some shelter, so build half of a rammed earth shack with a sod roof " +"on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should remove some of display racks and counters, then build a pair of " -"mattress beds inside radio control's room for our survivors." +"We should use rammed earth to expand the shelter so we have space for " +"another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in radio control's room" +msgid "We should use rammed earth to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds inside radio tower shack for our " -"survivors." +"We should expand our housing by putting up a rammed earth building on the " +"east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in radio tower" +msgid "" +"We should expand our housing by adding a rammed earth room on the east side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the northeast side shack for our " -"survivors." +"We should expand our housing by putting up a rammed earth building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in NE side shack" +msgid "" +"We should expand our housing by adding a rammed earth room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southwest corner shack for " -"our survivors." +"We should expand our housing by putting up a rammed earth building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW corner shack" +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southwest side shack for our " -"survivors." +"We should expand our housing by adding a rammed earth room on the west side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SW side shack" +msgid "" +"We should expand our housing by putting up a rammed earth building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southeast side shack for our " -"survivors." +"We should expand our housing by adding a rammed earth room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE side shack" +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the southeast corner shack for " -"our survivors." +"A central building can act as a core and dining hall. We should build out " +"from the east room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in SE corner shack" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of mattress beds in the south side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build out " +"from the west room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of mattress beds in S side shack" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should remove some of display racks and counters, then build a pair of " -"straw beds inside radio control's room for our survivors." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in radio control's room" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds inside radio tower shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in radio tower" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with rammed earth." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the northeast side shack for our " -"survivors." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in NE side shack" +msgid "" +"We need some shelter, so build half of a stone shack with a wooden roof on " +"the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwest corner shack for our " -"survivors." +"We should use rocks to expand the shelter so we have space for another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW corner shack" +msgid "We should use rocks to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southwest side shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the east side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SW side shack" +msgid "" +"We should expand our housing by adding a rock room on the east side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southeast side shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE side shack" +msgid "" +"We should expand our housing by adding a rock room on the southeast side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the southeast corner shack for our " -"survivors." +"We should expand our housing by putting up a rock building on the northwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in SE corner shack" +msgid "" +"We should expand our housing by putting up a rock building on the west side," +" which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a pair of straw beds in the south side shack for our " -"survivors." +"We should expand our housing by adding a rock room on the west side, which " +"we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "pair of straw beds in S side shack" +msgid "" +"We should expand our housing by putting up a rock building on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a root cellar will give us a way to preserve food." +msgid "" +"We should expand our housing by adding a rock room on the southwest side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "Digging a well will give us easy access to water." +msgid "" +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's fix up radio tower and controls to improve our recruitment efforts." +"A central building can act as a core and dining hall. We should build out " +"from the east room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix radio tower and controls" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should dig pits for palisade around camp." +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the west room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build palisade around camp." +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "build palisade" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could try to fix whole tower and supply it with enough power, which could" -" give us remote access to computer systems connected to backbone network or " -"communication satellites." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with rocks." msgstr "" #: lang/json/recipe_from_json.py -msgid "fix whole radio tower" +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"northeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with rocks." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a log shack with a wooden roof on the " -"southwest corner of the camp." +"We need some shelter, so set up a tent on the northeast side of the camp." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a log shack with a wooden roof on the south " -"side of the camp." +msgid "northeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"northeast side of the camp." +"We should expand our housing by putting up a tent on the east side, though " +"doing so will mean we need more materials to build the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southwest corner of the camp." +msgid "east tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southwest side of the camp." +"We should expand our housing by putting up a tent on the southeast side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southeast side of the camp." +msgid "southeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a metal shack with a metal roof on the " -"southeast corner of the camp." +"We should expand our housing by putting up a tent on the northwest side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a metal shack with a metal roof on the south " -"side of the camp." +msgid "northwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build migo resin walls over windows in radio " -"control's room." +"We should expand our housing by putting up a tent on the west side, though " +"doing so will mean we need more materials to build the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "barricade radio control's room" +msgid "west tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"inside radio tower." +"We should expand our housing by putting up a tent on the southwest side, " +"though doing so will mean we need more materials to build the central " +"building." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the northeast side of the camp." +msgid "southwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southwest corner of the camp." +"We need some shelter, so build half of a wattle-and-daub shack with a sod " +"roof on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southwest side of the camp." +"We should use wattle-and-daub to expand the shelter so we have space for " +"another bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southeast side of the camp." +msgid "We should use wattle-and-daub to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the southeast corner of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" east side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a mi-go resin shack with a mi-go resin roof " -"on the south side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the east " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"northeast side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southwest corner of the camp." +"We should expand our housing by adding a wattle-and-daub room on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southwest side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southeast side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" west side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"southeast corner of the camp." +"We should expand our housing by adding a wattle-and-daub room on the west " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a rammed earth shack with a sod roof on the " -"south side of the camp." +"We should expand our housing by putting up a wattle-and-daub building on the" +" southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"northeast side of the camp." +"We should expand our housing by adding a wattle-and-daub room on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southwest corner of the camp." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southwest side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the east room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southeast side of the camp." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the " -"southeast corner of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the west room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a stone shack with a wooden roof on the south" -" side of the camp." +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the northeast side of the camp." +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southwest corner of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southwest side of the camp." +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southeast side of the camp." +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the southeast corner of the camp." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wattle and daub shack with a sod roof on " -"the south side of the camp." +"We need some shelter, so build half of a wood panel shack with a wooden roof" +" on the northeast side of the camp" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build wooden walls over windows in radio control's " -"room." +"We should use wood panel to expand the shelter so we have space for another " +"bed." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "We should use wood panel to finish the northeast shack." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof inside " -"radio tower." +"We should expand our housing by putting up a wood panel building on the east" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"northeast side of the camp." +"We should expand our housing by adding a wood panel room on the east side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southwest corner of the camp." +"We should expand our housing by putting up a wood panel building on the " +"southeast side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southwest side of the camp." +"We should expand our housing by adding a wood panel room on the southeast " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southeast side of the camp." +"We should expand our housing by putting up a wood panel building on the " +"northwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"southeast corner of the camp." +"We should expand our housing by putting up a wood panel building on the west" +" side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build a wooden shack with a wooden roof on the " -"south side of the camp." +"We should expand our housing by adding a wood panel room on the west side, " +"which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should reorganize that dining area into our " -"kitchen." +"We should expand our housing by putting up a wood panel building on the " +"southwest side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare the kitchen area" +msgid "" +"We should expand our housing by adding a wood panel room on the southwest " +"side, which we can also use as part of the central building." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a well, put it near that winch. This will make our future " -"here more secure." +"A central building can act as a kitchen and dining hall. We should build " +"the northeast quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a well" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the east room with wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's set up a radio tower to improve our recruitment efforts, we'll " -"repurpose that terminal for it." +"A central building can act as a core and dining hall. We should build the " +"northwest quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should add some storage and a root cellar in" -" our kitchen area." +"A central building can act as a core and dining hall. We should build out " +"from the west room with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "add storage and root cellar" +msgid "" +"A central building can act as a core and dining hall. We should build " +"between the east and west rooms with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's break up some pavement so we can farm." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southeast quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "break up driveway" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southeast room with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a privacy fence around the garden." +msgid "" +"A central building can act as a core and dining hall. We should build the " +"southwest quarter of one from wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a privacy fence" +msgid "" +"A central building can act as a core and dining hall. We should build out " +"from the southwest room with wood panel." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a fireplace for cooking and " -"grab a pot. Let's put it in that dining area." +"A central building can act as a core and dining hall. We should build " +"between the southeast and southwest rooms with wood panel." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a fireplace" +msgid "We need to survey the base site first." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should set up a brazier for cooking, and " -"grab a pot. Let's put it in that dining area." +"The first thing we are going to need is a command tent to manage and task " +"workers from." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a brazier" +msgid "basic northeast tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a stove for cooking and grab a " -"pot. Let's put it in that dining area." +"We're going to need a fire pit and a bed if we want to stay here " +"permanently." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood stove" +msgid "basic firepit" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some smokers and a charcoal kiln for food preservation." +msgid "" +"To make this outpost functional we are going to need storage containers to " +"organize our supplies." msgstr "" #: lang/json/recipe_from_json.py -msgid "build smoking racks and charcoal kiln" +msgid "basic storage" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a butchery area." +msgid "" +"Next we should expand the camp to comfortably support two people " +"indefinitely." msgstr "" #: lang/json/recipe_from_json.py -msgid "build butchery area" +msgid "basic northeast bed" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's add a vat for fermenting." +msgid "" +"Additional housing and storage will allow our camp to expand into " +"specialized industries." msgstr "" #: lang/json/recipe_from_json.py -msgid "build fermenting vats" +msgid "basic northwest tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's gather some tools so we can work on cars." +msgid "" +"Constructing a hard command post will transform our little camp into a true " +"base." msgstr "" #: lang/json/recipe_from_json.py -msgid "add tools for garage" +msgid "basic central building" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom." +msgid "" +"Building additional housing will allow us to send companions out to find " +"recruits." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the SW bedroom" +msgid "basic west tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom." +msgid "We need to expand our base to include basic dining facilities." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the NW bedroom" +msgid "basic central kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom." +msgid "More housing means that we can support additional specialists." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the SE bedroom" +msgid "basic southeast tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northeast bedroom." +msgid "An expanded kitchen is needed to support our growing settlement." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the NE bedroom" +msgid "basic expanded kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the common area." +msgid "" +"Finishing the hard structure will give us a more secure place to retreat to " +"if we come under attack." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the common area furniture" +msgid "basic completed central building" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a fabrication workshop." +msgid "" +"I'm surprised we've made it this long without securing a clean water source," +" we need a well." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metalworking forge" +msgid "basic water well" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build an anvil and crucible to increase our crafting options." +msgid "" +"Building a strong wall will keep the base secure even if a small horde " +"attacks." msgstr "" #: lang/json/recipe_from_json.py -msgid "add an anvil and crucible" +msgid "basic partial wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build pottery kiln and get the tools we'll need for glassworking." +msgid "We need to finish our half built fortifications." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a pottery kiln" +msgid "basic complete wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need some tools for metal working." +msgid "We're running out of room and need another living quarters." msgstr "" #: lang/json/recipe_from_json.py -msgid "place advanced tools" +msgid "basic east tent" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's get a nice workbench built to improve our work. Place it next to the " -"anvil." +msgid "Our kitchen isn't able to keep up with demand, we need to expand it." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a workbench" +msgid "basic dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's add a bellows and barrel for quenching the steel, we'll need more " -"tools too." +msgid "We should build stronger doors to secure our compound." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a bellows and barrel" +msgid "basic reinforced gates" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a drop hammer for some mass production." +msgid "One more tent and our living space will be full." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a drop hammer." +msgid "basic southwest tent" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with standard walls, we'll use that far " -"vehicle bay." +"We could construct a radio tower to improve communication range, first step " +"is the tower structure." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the standard white living quarters walls" +msgid "basic radio tower" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with wood panel walls, we'll use that far " -"vehicle bay." +msgid "We need to build a console to control the radio tower." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wood panel living quarters walls" +msgid "basic radio console" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with log walls, we'll use that far vehicle " -"bay." +msgid "Survey land for a kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the log living quarters walls" +msgid "Kitchen survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with metal walls, we'll use that far vehicle " -"bay." +msgid "Building a cook-shack is our first task." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the metal living quarters walls" +msgid "Kitchen fireplace shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with mi-go resin walls, we'll use that far " -"vehicle bay." +msgid "We need to finish framing the walls for the cook-shack." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the mi-go resin living quarters walls" +msgid "Kitchen finished shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with rammed earth walls, we'll use that far " -"vehicle bay." +"Expanding the shack by including a smoker will increase our versatility." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rammed earth living quarters walls" +msgid "Kitchen charcoal smoker" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's expand our living areas with rock walls, we'll use that far vehicle " -"bay." +msgid "A pantry will allow our cooks to store more non-perishables." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rock earth living quarters walls" +msgid "Kitchen pantry expansion" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's expand our living areas with wattle and daub walls, we'll use that far" -" vehicle bay." +"Increasing our number of smoking racks will let us craft larger batches." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wattle and daub living quarters walls" +msgid "Kitchen more smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should survey the roof top and set up a bulletin board." +msgid "A well is needed so our cooks don't have to haul in water." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Kitchen water well" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a fireplace in the northeast " -"shack." +"Wood stoves will give us greater control of temperatures and let us craft " +"more difficult recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast fireplace" +msgid "Kitchen wood stoves" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should set up a brazier in the northeast " -"shack." +"Finally, expanding the pantry further will let us store additional " +"materials." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast brazier" +msgid "Kitchen expanded pantry" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build a stove in the northeast shack." +"A trench that may deter movement but is meant to be the foundation of a " +"picket or palisade. Requirements are for 1/2 an over map tile." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast stove" +msgid "" +"A deep trench filled with spikes, requires a trench. Requirements are for " +"1/2 an over map tile." msgstr "" #: lang/json/recipe_from_json.py -msgid "A straw bed in the northeast shack will make sleeping easier." +msgid "Survey land for a blacksmith shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast straw bed" +msgid "Blacksmithy survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A proper bed in the northeast shack will give one of us a place to sleep " -"soundly." +msgid "Building a forge and kiln is our first task." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast bed" +msgid "Blacksmithy forge and kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "Another straw bed in the northeast shack will make sleeping easier." +msgid "Building a proper roof for the shop is the next step." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Another proper bed in the northeast shack will give one of us a place to " -"sleep soundly." +msgid "Blacksmithy roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the east tent will allow us to house two more people" -" and expand the camp." +msgid "Building a working table and placing an anvil are next." msgstr "" #: lang/json/recipe_from_json.py -msgid "east straw beds" +msgid "Blacksmithy anvil and workbench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the east tent will allow us to house two more " -"people and expand the camp." +"If we're going to do more than simple metal casting we need a bigger shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "east beds" +msgid "Blacksmithy expanded shop" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the east room will allow us to house two more people" -" and expand the camp." +msgid "We need some basic tools to make more advanced crafts." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the east room will allow us to house two more " -"people and expand the camp." +msgid "Blacksmithy forging tools" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southeast tent will allow us to house two more " -"people and expand the camp." +msgid "An expanded forge will allow us to work on bigger projects." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast straw beds" +msgid "Blacksmithy expanded forge" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southeast tent will allow us to house two more " -"people and expand the camp." +msgid "Proper steel work requires a bellows and quenching setup." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast beds" +msgid "Blacksmithy bellows and quenching barrels" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southeast room will allow us to house two more " -"people and expand the camp." +msgid "A separate workshop will allow us to do the most basic of machining." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southeast room will allow us to house two more " -"people and expand the camp." +msgid "Blacksmithy machine shop" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the northwest building will allow us to house two " -"more people and expand the camp." +msgid "Next we need to add some basic tools and vises to the workshop." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest straw beds" +msgid "Blacksmithy machine shop tools" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the northwest building will allow us to house two " -"more people and expand the camp." +msgid "Advanced forging processes require more room to work." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest beds" +msgid "Blacksmithy machine shop expansion" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the west tent will allow us to house two more people" -" and expand the camp." +msgid "An on-site well will allow us to fill boilers as needed." msgstr "" #: lang/json/recipe_from_json.py -msgid "west straw beds" +msgid "Blacksmithy well" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the west tent will allow us to house two more " -"people and expand the camp." +"A steam-powered drop hammer will greatly increase production speed in " +"exchange for charcoal." msgstr "" #: lang/json/recipe_from_json.py -msgid "west beds" +msgid "Blacksmithy drop hammer" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the west room will allow us to house two more people" -" and expand the camp." +"We should build a fireplace for cooking and grab a pot. Let's set up near " +"the working terminal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of proper beds in the west room will allow us to house two more " -"people and expand the camp." +"We should build a brazier for cooking and grab a pot. Let's set up near the" +" working terminal." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A pair of straw beds in the southwest tent will allow us to house two more " -"people and expand the camp." +"We should build a wood stove for cooking and grab a pot. Let's set up near " +"the working terminal." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest straw beds" +msgid "" +"We should build a well, put it near the terminal. This will make our future" +" here more secure." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southwest tent will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the southeast bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest beds" +msgid "Let's furnish the east bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of straw beds in the southwest room will allow us to house two more " -"people and expand the camp." +msgid "furnish the E bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A pair of proper beds in the southwest room will allow us to house two more " -"people and expand the camp." +msgid "Let's furnish the southeast bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A fireplace, counter, and some pots and pans in the central building will " -"allow us to cook simple recipes and organize hunting expeditions." +msgid "Let's furnish the east bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central fireplace" +msgid "Let's furnish the southeast bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need a butchery rack to maximize the harvest from our hunting and " -"trapping efforts." +msgid "Let's furnish the east bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central butchery rack" +msgid "Let's furnish the southwest bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A tool rack in the central building will give us a place to store tools." +msgid "Let's furnish the west bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central tool rack" +msgid "furnish the W bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Setting up some tables and chairs will make the central building into a " -"dining area, and we can also use them as a workspace to organize the camp." +msgid "Let's furnish the northwest bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central dining hall" +msgid "Let's furnish the southwest bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "south dining hall" +msgid "Let's furnish the west bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A wood stove, counter, and some pots and pans in the south half of the " -"central building will allow us to cook simple recipes and organize hunting " -"expeditions. The stove will be more efficient than a fireplace." +msgid "Let's furnish the northwest bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "south wood stove" +msgid "Let's furnish the southwest bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "north water well" +msgid "Let's furnish the west bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "north root cellar" +msgid "Let's furnish the northwest bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "We could build a radio tower to improve the range of our radios." +msgid "Let's make a dining area." msgstr "" #: lang/json/recipe_from_json.py -msgid "north radio tower" +msgid "furnish the dining room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Adding a console to control the radio tower will help with recruiting more " -"survivors." +msgid "Let's make a living room area." msgstr "" #: lang/json/recipe_from_json.py -msgid "north radio console" +msgid "furnish the living room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the north edge of the camp would provide some defense" -" and generate building materials." +msgid "Let's build some pantry storage." msgstr "" #: lang/json/recipe_from_json.py -msgid "north trench" +msgid "build some wooden racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the south edge of the camp would provide some defense" -" and generate building materials." +msgid "Let's build a work bench." msgstr "" #: lang/json/recipe_from_json.py -msgid "south trench" +msgid "build a work bench" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the northeast corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the east side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +"Let's build some living quarters so we can expand. We will start in the " +"southeast corner." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast trench" +msgid "build SE log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the northwest corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the west side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +"Let's build some living quarters so we can expand. We will continue along " +"the same wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest trench" +msgid "build E log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Digging a trench along the southeast corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the east side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." -msgstr "" - -#: lang/json/recipe_from_json.py -msgid "southeast trench" +"Let's build some living quarters so we can expand. We will continue along " +"the other wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the southwest corner of the camp would provide some " -"defense and generate building materials. If we have solid buildings all " -"along the west side of the camp, we would only need to dig the trench long " -"enough to reach the buildings." +msgid "build SW log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest trench" +msgid "build W log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the east edge of the camp would provide some defense " -"and generate building materials. We'll need to run the trench the length of" -" the camp if we don't have solid buildings all along the east side." +msgid "build NW log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east trench" +msgid "build SE rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Digging a trench along the west edge of the camp would provide some defense " -"and generate building materials. We'll need to run the trench the length of" -" the camp if we don't have solid buildings all along the west side." +msgid "build E rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "west trench" +msgid "build SW rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a log shack with a wooden roof on the" -" northeast side of the camp" +msgid "build W rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast shack" +msgid "build NW rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use logs to expand the shelter so we have space for another bed." +msgid "build SE standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "expand northeast shack" +msgid "build E standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use logs to finish the northeast shack." +msgid "build SW standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "finish northeast shack" +msgid "build W standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the east side, " -"which we can also use as part of the central building." +msgid "build NW standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east shack" +msgid "build SE wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the east side, which we" -" can also use as part of the central building." +msgid "build E wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "east room" +msgid "build SW wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the southeast " -"side, which we can also use as part of the central building." +msgid "build W wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast shack" +msgid "build NW wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the southeast side, " -"which we can also use as part of the central building." +msgid "build SE wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast room" +msgid "build E wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the northwest " -"side, which we can also use as part of the central building." +msgid "build SW wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest shack" +msgid "build W wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the west side, " -"which we can also use as part of the central building." +msgid "build NW wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "west shack" +msgid "Let's furnish the southeast bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the west side, which we" -" can also use as part of the central building." +msgid "Let's furnish the southeast bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "west room" +msgid "Let's furnish the west bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a log building on the southwest " -"side, which we can also use as part of the central building." +msgid "Let's furnish the southeast bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest shack" +msgid "Let's furnish the west bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a log room on the southwest side, " -"which we can also use as part of the central building." +msgid "Let's furnish the southwest bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest room" +msgid "Let's furnish the southwest bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from logs." +msgid "Let's furnish the southwest bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building NE corner" +msgid "Let's furnish the southern bedroom with regular beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with logs." +msgid "furnish the S bedroom" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from logs." +msgid "Let's furnish the southern bedroom with straw beds." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building NW corner" +msgid "Let's furnish the southern bedroom with makeshift beds." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with logs." +"Let's build some living quarters so we can expand. We will start in the " +"northwest corner." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with logs." +"Let's build some living quarters so we can expand. We will continue along " +"the west wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building north half" +msgid "" +"Let's build some living quarters so we can expand. We will continue along " +"the southwest corner." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from logs." +"Let's build some living quarters so we can expand. We will continue along " +"the south wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "central building SE corner" +msgid "build S log bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with logs." +msgid "build S rock bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from logs." +msgid "build S standard bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "central building SW corner" +msgid "build S wattle and daub bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with logs." +msgid "build NW wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with logs." +msgid "build W wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "central building south half" +msgid "build SW wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a metal shack with a metal roof on " -"the northeast side of the camp" +msgid "build S wood bedroom walls" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should use metal to expand the shelter so we have space for another bed." +"We should build a well, across from the terminal. This will make our future" +" here more secure." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use metal to finish the northeast shack." +msgid "Let's furnish the northwest bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the east " -"side, which we can also use as part of the central building." +msgid "Let's furnish the west bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the east side, which " -"we can also use as part of the central building." +msgid "Let's furnish the west bedroom with regular a bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the southeast" -" side, which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the southeast side, " -"which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the northwest" -" side, which we can also use as part of the central building." +msgid "Let's furnish the southern bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the west " -"side, which we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a regular bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a metal room on the west side, which " -"we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a straw bed." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a metal building on the southwest" -" side, which we can also use as part of the central building." +msgid "Let's furnish the eastern bedroom with a makeshift bed." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a metal room on the southwest side, " -"which we can also use as part of the central building." +"Let's build some living quarters so we can expand. We will enclose the west" +" side of the stairs." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from metal." +"Let's build two living quarters so we can expand. We will continue along " +"the south wall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with metal." +"Let's build another bedroom so we can expand. We will continue to enclose " +"the stairwell and add new doors." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from metal." +msgid "build central E bedroom log walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with metal." +msgid "Let's build another bedroom on the east wall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with metal." +msgid "build E bedroom log walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from metal." +msgid "build central E bedroom rock walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with metal." +msgid "build E bedroom rock walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from metal." +msgid "build central E bedroom standard walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with metal." +msgid "build E bedroom standard walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with metal." +msgid "build central E bedroom wattle and daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a mi-go resin shack with a sod roof " -"on the northeast side of the camp" +msgid "build E bedroom wattle and daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use mi-go resin to expand the shelter so we have space for another" -" bed." +msgid "build S wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use mi-go resin to finish the northeast shack." +msgid "build central E bedroom wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"east side, which we can also use as part of the central building." +msgid "build E bedroom wood panel bedroom walls" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the east side, " -"which we can also use as part of the central building." +msgid "Survey land for a kitchen and dining area." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"southeast side, which we can also use as part of the central building." +"Now that we have some cover, we should build 2 fireplaces for cooking and " +"grab a pot." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the southeast " -"side, which we can also use as part of the central building." +msgid "build 2 fireplaces" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"northwest side, which we can also use as part of the central building." +"Now that we have some cover, we should build 2 stoves for cooking and grab a" +" pot." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"west side, which we can also use as part of the central building." +msgid "build 2 wood stoves" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the west side, " -"which we can also use as part of the central building." +msgid "We should build a well. This will make cooking more convenient." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a mi-go resin building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's build some counters and shelves." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a mi-go resin room on the southwest " -"side, which we can also use as part of the central building." +msgid "build kitchen counters" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from mi-go resin." +msgid "build 3 smoking racks and a charcoal kiln" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with mi-go resin." +msgid "Lets furnish the pantry and build 2 root cellars." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from mi-go resin." +msgid "furnish the pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with mi-go resin." +msgid "Let's make some furniture for the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with mi-go resin." +msgid "Let's build some planters to the north for a chef's garden." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from mi-go resin." +msgid "build some planters" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with mi-go resin." +msgid "Let's start building the central kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from mi-go resin." +msgid "build the log wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with mi-go resin." +msgid "Let's finish the central kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with mi-go resin." +msgid "finish the log wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build half of a rammed earth shack with a sod roof " -"on the northeast side of the camp" +"Let's get this log wall smoking area covered to protect the workers from the" +" weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use rammed earth to expand the shelter so we have space for " -"another bed." +msgid "build a log wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use rammed earth to finish the northeast shack." +msgid "Let's build a log wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"east side, which we can also use as part of the central building." +msgid "build a log wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the east side," -" which we can also use as part of the central building." +msgid "Let's build the west log wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"southeast side, which we can also use as part of the central building." +msgid "build W log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the southeast " -"side, which we can also use as part of the central building." +msgid "Let's build the east log wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"northwest side, which we can also use as part of the central building." +msgid "build E log wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"west side, which we can also use as part of the central building." +msgid "Let's build the center of the log wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the west side," -" which we can also use as part of the central building." +msgid "build center of the log wall dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rammed earth building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's start building the central kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rammed earth room on the southwest " -"side, which we can also use as part of the central building." +msgid "build the metal wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from rammed earth." +msgid "Let's finish the central kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with rammed earth." +msgid "finish the metal wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from rammed earth." +"Let's get this metal wall smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with rammed earth." +msgid "build a metal wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with rammed earth." +msgid "Let's build a metal wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from rammed earth." +msgid "build a metal wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with rammed earth." +msgid "Let's build the west metal wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from rammed earth." +msgid "build W metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with rammed earth." +msgid "Let's build the east metal wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with rammed earth." +msgid "build E metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a stone shack with a wooden roof on " -"the northeast side of the camp" +msgid "Let's build the center of the metal wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use rocks to expand the shelter so we have space for another bed." +msgid "build center of the metal wall dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use rocks to finish the northeast shack." +msgid "Let's start building the central kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the east side," -" which we can also use as part of the central building." +msgid "build the mi-go resin central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the east side, which " -"we can also use as part of the central building." +msgid "Let's finish the central kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the southeast " -"side, which we can also use as part of the central building." +msgid "finish the mi-go resin central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a rock room on the southeast side, " -"which we can also use as part of the central building." +"Let's get this mi-go resin smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the northwest " -"side, which we can also use as part of the central building." +msgid "build a mi-go resin roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the west side," -" which we can also use as part of the central building." +msgid "Let's build a mi-go resin wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the west side, which " -"we can also use as part of the central building." +msgid "build a mi-go resin pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a rock building on the southwest " -"side, which we can also use as part of the central building." +msgid "Let's build the west mi-go resin wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a rock room on the southwest side, " -"which we can also use as part of the central building." +msgid "build W mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from rocks." +msgid "Let's build the east mi-go resin wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with rocks." +msgid "build E mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from rocks." +msgid "Let's build the center of the mi-go resin dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with rocks." +msgid "build center of the mi-go resin dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with rocks." +msgid "Let's start building the central kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from rocks." +msgid "build the rammed earth central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with rocks." +msgid "Let's finish the central kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from rocks." +msgid "finish the rammed earth central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with rocks." +"Let's get this rammed earth smoking area covered to protect the workers from" +" the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with rocks." +msgid "build a rammed earth roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so set up a tent on the northeast side of the camp." +msgid "Let's build a rammed earth wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast tent" +msgid "build a rammed earth pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the east side, though " -"doing so will mean we need more materials to build the central building." +msgid "Let's build the west rammed earth wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "east tent" +msgid "build W rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the southeast side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's build the east rammed earth wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast tent" +msgid "build E rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the northwest side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's build the center of the rammed earth dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest tent" +msgid "build center of the rammed earth dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the west side, though " -"doing so will mean we need more materials to build the central building." +msgid "Let's start building the central kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "west tent" +msgid "build the central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a tent on the southwest side, " -"though doing so will mean we need more materials to build the central " -"building." +msgid "Let's finish the central kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest tent" +msgid "finish the rock wall central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We need some shelter, so build half of a wattle-and-daub shack with a sod " -"roof on the northeast side of the camp" +"Let's get this rock wall smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use wattle-and-daub to expand the shelter so we have space for " -"another bed." +msgid "build a rock wall roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use wattle-and-daub to finish the northeast shack." +msgid "Let's build a rock wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" east side, which we can also use as part of the central building." +msgid "build a rock wall pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the east " -"side, which we can also use as part of the central building." +msgid "Let's build the west rock wall of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" southeast side, which we can also use as part of the central building." +msgid "build W rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the " -"southeast side, which we can also use as part of the central building." +msgid "Let's build the east rock wall of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" northwest side, which we can also use as part of the central building." +msgid "build E rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" west side, which we can also use as part of the central building." +msgid "Let's build the center of the rock wall dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the west " -"side, which we can also use as part of the central building." +msgid "build center of the rock dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wattle-and-daub building on the" -" southwest side, which we can also use as part of the central building." +msgid "Let's start building the central kitchen wattle and daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wattle-and-daub room on the " -"southwest side, which we can also use as part of the central building." +msgid "build the wattle and daub central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from wattle-and-daub." +msgid "Let's finish the central kitchen wattle and daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with wattle-and-daub." +msgid "finish the wattle and daub central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from wattle-and-daub." +"Let's get this wattle and daub smoking area covered to protect the workers " +"from the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with wattle-and-daub." +msgid "build a wattle and daub roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with wattle-and-daub." +msgid "Let's build a wattle and daub wall pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from wattle-and-daub." +msgid "build a wattle and daub pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with wattle-and-daub." +msgid "Let's build the west wattle and daub wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from wattle-and-daub." +msgid "build W wattle and daub wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with wattle-and-daub." +msgid "Let's build the east wattle and daub wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with wattle-and-daub." +msgid "build E wattle and daub wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We need some shelter, so build half of a wood panel shack with a wooden roof" -" on the northeast side of the camp" +msgid "Let's build the center of the wattle and daub dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should use wood panel to expand the shelter so we have space for another " -"bed." +msgid "build center of the wattle and daub dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should use wood panel to finish the northeast shack." +msgid "Let's start building the central kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the east" -" side, which we can also use as part of the central building." +msgid "build the wood panel central kitchen room" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the east side, " -"which we can also use as part of the central building." +msgid "Let's finish the central kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"southeast side, which we can also use as part of the central building." +msgid "finish the wood panel central kitchen room" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should expand our housing by adding a wood panel room on the southeast " -"side, which we can also use as part of the central building." +"Let's get this wood panel smoking area covered to protect the workers from " +"the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"northwest side, which we can also use as part of the central building." +msgid "build a wood panel roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the west" -" side, which we can also use as part of the central building." +msgid "Let's build a wood panel pantry west of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the west side, " -"which we can also use as part of the central building." +msgid "build a wood panel pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by putting up a wood panel building on the " -"southwest side, which we can also use as part of the central building." +msgid "Let's build the west wood panel wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should expand our housing by adding a wood panel room on the southwest " -"side, which we can also use as part of the central building." +msgid "build W wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a kitchen and dining hall. We should build " -"the northeast quarter of one from wood panel." +msgid "Let's build the east wood panel wall of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the east room with wood panel." +msgid "build E wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build the " -"northwest quarter of one from wood panel." +msgid "Let's build the center of the wood panel dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the west room with wood panel." +msgid "build center of the dining hall" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the east and west rooms with wood panel." +msgid "Survey land for a canteen." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southeast quarter of one from wood panel." +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southeast room with wood panel." +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build the " -"southwest quarter of one from wood panel." +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A central building can act as a core and dining hall. We should build out " -"from the southwest room with wood panel." +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A central building can act as a core and dining hall. We should build " -"between the southeast and southwest rooms with wood panel." +msgid "Lets build 2 root cellars in the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to survey the base site first." +msgid "build root cellars" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"The first thing we are going to need is a command tent to manage and task " -"workers from." +msgid "Lets furnish the pantry." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic northeast tent" +msgid "Let's build some planters for a chef's garden." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We're going to need a fire pit and a bed if we want to stay here " -"permanently." -msgstr "" - -#: lang/json/recipe_from_json.py -msgid "basic firepit" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"To make this outpost functional we are going to need storage containers to " -"organize our supplies." +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic storage" +msgid "build salt water tanks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Next we should expand the camp to comfortably support two people " -"indefinitely." +msgid "Let's install some vats in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic northeast bed" +msgid "install some brewery vats" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Additional housing and storage will allow our camp to expand into " -"specialized industries." +msgid "Let's install some racks for storage in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic northwest tent" +msgid "install some brewery racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Constructing a hard command post will transform our little camp into a true " -"base." +msgid "Let's install a still in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic central building" +msgid "install a still in the brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Building additional housing will allow us to send companions out to find " -"recruits." +msgid "Let's build a windmill to allow us to grid flour efficiently" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic west tent" +msgid "build a windmill" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to expand our base to include basic dining facilities." +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" msgstr "" #: lang/json/recipe_from_json.py -msgid "basic central kitchen" +msgid "build a bench and a bird bath" msgstr "" #: lang/json/recipe_from_json.py -msgid "More housing means that we can support additional specialists." +msgid "Let's start building the kitchen concrete walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic southeast tent" +msgid "build the concrete kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "An expanded kitchen is needed to support our growing settlement." +msgid "Let's finish the kitchen concrete walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic expanded kitchen" +msgid "finish the concrete kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Finishing the hard structure will give us a more secure place to retreat to " -"if we come under attack." +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic completed central building" +msgid "build a concrete roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"I'm surprised we've made it this long without securing a clean water source," -" we need a well." +msgid "Let's build a concrete wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic water well" +msgid "build a concrete pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Building a strong wall will keep the base secure even if a small horde " -"attacks." +msgid "Let's build the first concrete part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic partial wall" +msgid "build first dining concrete section" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to finish our half built fortifications." +msgid "Let's build the second concrete part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic complete wall" +msgid "build second dining concrete section" msgstr "" #: lang/json/recipe_from_json.py -msgid "We're running out of room and need another living quarters." +msgid "Let's build a the concrete brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic east tent" +msgid "build concrete brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Our kitchen isn't able to keep up with demand, we need to expand it." +msgid "Let's start building the kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic dining hall" +msgid "build the log kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build stronger doors to secure our compound." +msgid "Let's finish the kitchen log walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic reinforced gates" +msgid "finish the log kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "One more tent and our living space will be full." +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic southwest tent" +msgid "build a log roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could construct a radio tower to improve communication range, first step " -"is the tower structure." +msgid "Let's build a log wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic radio tower" +msgid "build a log pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to build a console to control the radio tower." +msgid "Let's build the first log part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "basic radio console" +msgid "build first dining log section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen." +msgid "Let's build the second log part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen survey" +msgid "build second dining log section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a cook-shack is our first task." +msgid "Let's build a the log brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen fireplace shack" +msgid "build log brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "We need to finish framing the walls for the cook-shack." +msgid "Let's start building the kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen finished shack" +msgid "build the metal kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Expanding the shack by including a smoker will increase our versatility." +msgid "Let's finish the kitchen metal walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen charcoal smoker" +msgid "finish the metal kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "A pantry will allow our cooks to store more non-perishables." +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen pantry expansion" +msgid "build a metal roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Increasing our number of smoking racks will let us craft larger batches." +msgid "Let's build a metal wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen more smoking racks" +msgid "build a metal pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "A well is needed so our cooks don't have to haul in water." +msgid "Let's build the first metal part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen water well" +msgid "build first dining metal section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Wood stoves will give us greater control of temperatures and let us craft " -"more difficult recipes." +msgid "Let's build the second metal part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen wood stoves" +msgid "build second dining metal section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Finally, expanding the pantry further will let us store additional " -"materials." +msgid "Let's build a the metal brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Kitchen expanded pantry" +msgid "build metal brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A trench that may deter movement but is meant to be the foundation of a " -"picket or palisade. Requirements are for 1/2 an over map tile." +msgid "Let's start building the kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"A deep trench filled with spikes, requires a trench. Requirements are for " -"1/2 an over map tile." +msgid "build the mi-go resin kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a blacksmith shop." +msgid "Let's finish the kitchen mi-go resin walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy survey" +msgid "finish the mi-go resin kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a forge and kiln is our first task." +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy forge and kiln" +msgid "Let's build the first mi-go resin part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a proper roof for the shop is the next step." +msgid "build first dining mi-go resin section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy roof" +msgid "Let's build the second mi-go resin part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a working table and placing an anvil are next." +msgid "build second dining mi-go resin section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy anvil and workbench" +msgid "Let's build a the mi-go resin brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"If we're going to do more than simple metal casting we need a bigger shop." +msgid "build mi-go resin brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy expanded shop" +msgid "Let's start building the kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "We need some basic tools to make more advanced crafts." +msgid "build the rammed earth kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy forging tools" +msgid "Let's finish the kitchen rammed earth walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "An expanded forge will allow us to work on bigger projects." +msgid "finish the rammed earth kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy expanded forge" +msgid "Let's build a rammed earth wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Proper steel work requires a bellows and quenching setup." +msgid "Let's build the first rammed earth part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy bellows and quenching barrels" +msgid "build first dining rammed earth section" msgstr "" #: lang/json/recipe_from_json.py -msgid "A separate workshop will allow us to do the most basic of machining." +msgid "Let's build the second rammed earth part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop" +msgid "build second dining rammed earth section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Next we need to add some basic tools and vises to the workshop." +msgid "Let's build a the rammed earth brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop tools" +msgid "build rammed earth brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Advanced forging processes require more room to work." +msgid "Let's start building the kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy machine shop expansion" +msgid "build the rock kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "An on-site well will allow us to fill boilers as needed." +msgid "Let's finish the kitchen rock walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy well" +msgid "finish the rock kitchen" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"A steam-powered drop hammer will greatly increase production speed in " -"exchange for charcoal." +"Let's get this rock smoking area covered to protect the workers from the " +"weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "Blacksmithy drop hammer" +msgid "build a rock roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a fireplace for cooking and grab a pot. Let's set up near " -"the working terminal." +msgid "Let's build a rock wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a brazier for cooking and grab a pot. Let's set up near the" -" working terminal." +msgid "build a rock pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a wood stove for cooking and grab a pot. Let's set up near " -"the working terminal." +msgid "Let's build the first rock part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We should build a well, put it near the terminal. This will make our future" -" here more secure." +msgid "build first dining rock section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with regular beds." +msgid "Let's build the second rock part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with regular beds." +msgid "build second dining rock section" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the E bedroom" +msgid "Let's build a the rock brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with straw beds." +msgid "build rock brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with straw beds." +msgid "Let's start building the kitchen wattle-and-daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with makeshift beds." +msgid "build the wattle-and-daub kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the east bedroom with makeshift beds." +msgid "Let's finish the kitchen wattle-and-daub walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with regular beds." +msgid "finish the wattle-and-daub kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular beds." +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the W bedroom" +msgid "build a wattle-and-daub roofed area for smoking racks" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with regular beds." +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with straw beds." +msgid "build a wattle-and-daub pantry" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with straw beds." +msgid "Let's build the first wattle-and-daub part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with straw beds." +msgid "build first dining wattle-and-daub section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with makeshift beds." +msgid "Let's build the second wattle-and-daub part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with makeshift beds." +msgid "build second dining wattle-and-daub section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with makeshift beds." +msgid "Let's build a the wattle-and-daub brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a dining area." +msgid "build wattle-and-daub brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the dining room" +msgid "Let's start building the kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make a living room area." +msgid "build the wood panel kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the living room" +msgid "Let's finish the kitchen wood panel walls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some pantry storage." +msgid "finish the wood panel kitchen" msgstr "" #: lang/json/recipe_from_json.py -msgid "build some wooden racks" +msgid "Let's build a wood panel wall pantry beside of the kitchen." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a work bench." +msgid "Let's build the first wood panel part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a work bench" +msgid "build first dining wood panel section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"southeast corner." +msgid "Let's build the second wood panel part of the dining hall." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE log bedroom walls" +msgid "build second dining wood panel section" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the same wall." +msgid "Let's build a the wood panel brewery." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E log bedroom walls" +msgid "build wood panel brewery" msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the other wall." +msgid "Survey land for a farming area." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW log bedroom walls" +msgid "farm area survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W log bedroom walls" +msgid "Plowing a few plots should get us started." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW log bedroom walls" +msgid "Farm basic plots" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE rock bedroom walls" +msgid "We could use a farming shed to store resources where we'll be working." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rock bedroom walls" +msgid "Farm basic shed" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW rock bedroom walls" +msgid "" +"Our farm could be expanded by finishing the shed and adding additional " +"plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rock bedroom walls" +msgid "Farm upgraded shed" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW rock bedroom walls" +msgid "" +"Building a processing shack should allow us to reclaim additional seeds from" +" our byproducts." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE standard bedroom walls" +msgid "Farm processing shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E standard bedroom walls" +msgid "Prepare a row of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW standard bedroom walls" +msgid "prepare farm plots" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W standard bedroom walls" +msgid "Prepare a second row of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW standard bedroom walls" +msgid "Prepare another pair of rows of farm plots." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE wattle and daub bedroom walls" +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wattle and daub bedroom walls" +msgid "erect a fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wattle and daub bedroom walls" +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wattle and daub bedroom walls" +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wattle and daub bedroom walls" +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SE wood panel bedroom walls" +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wood panel bedroom walls" +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wood panel bedroom walls" +msgid "build a palisade gate" msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood panel bedroom walls" +msgid "Survey land for a garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wood panel bedroom walls" +msgid "Building a tool rack should be the first priority." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a regular bed." +msgid "Garage tool rack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a straw bed." +msgid "We should start construction of a roof for the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a straw bed." +msgid "Garage partial roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southeast bedroom with a makeshift bed." +msgid "Finishing out the roof will let our mechanics work rain or shine." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a makeshift bed." +msgid "Garage completed roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a regular bed." +msgid "" +"Our garage isn't big enough to work on larger vehicles. Let's start " +"expanding it." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a straw bed." +msgid "Garage partial expansion" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southwest bedroom with a makeshift bed." +msgid "Finishing the roof will let us park RVs and buses in the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with regular beds." +msgid "Garage expanded roof" msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the S bedroom" +msgid "" +"Attaching quarters will let our mechanics work longer hours when needed." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with straw beds." +msgid "Garage mechanics quarters" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with makeshift beds." +msgid "Let's connect the two walls with the missing roof piece." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will start in the " -"northwest corner." +msgid "build the missing roof section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the west wall." +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the southwest corner." +msgid "build some furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will continue along " -"the south wall." +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S log bedroom walls" +msgid "build an outer palisade gate" msgstr "" #: lang/json/recipe_from_json.py -msgid "build S rock bedroom walls" +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S standard bedroom walls" +msgid "Let's start building the first garage concrete wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wattle and daub bedroom walls" +msgid "build the first concrete garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build NW wood bedroom walls" +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood bedroom walls" +msgid "build the second concrete garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build SW wood bedroom walls" +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wood bedroom walls" +msgid "build an inner concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We should build a well, across from the terminal. This will make our future" -" here more secure." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the northwest bedroom with a regular bed." +msgid "extend the first wall using concrete" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with a regular bed." +msgid "Let's extend the second wall to match the first one, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the west bedroom with regular a bed." +msgid "extend the second wall using concrete" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a regular bed." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a straw bed." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the southern bedroom with a makeshift bed." +msgid "Let's start building the first garage log wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a regular bed." +msgid "build the first log garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a straw bed." +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's furnish the eastern bedroom with a makeshift bed." +msgid "build the second log garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build some living quarters so we can expand. We will enclose the west" -" side of the stairs." +"Let's build a log wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Let's build two living quarters so we can expand. We will continue along " -"the south wall." +msgid "build an inner log wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's build another bedroom so we can expand. We will continue to enclose " -"the stairwell and add new doors." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom log walls" +msgid "extend the first wall using logs" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build another bedroom on the east wall." +msgid "Let's extend the second wall to match the first one, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom log walls" +msgid "extend the second wall using log" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom rock walls" +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom rock walls" +msgid "extend the second wall using logs" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom standard walls" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom standard walls" +msgid "Let's start building the first garage metal wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wattle and daub" +msgid "build the first metal garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom wattle and daub" +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build S wood panel bedroom walls" +msgid "build the second metal garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build central E bedroom wood panel bedroom walls" +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E bedroom wood panel bedroom walls" +msgid "build an inner metal wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a kitchen and dining area." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"Now that we have some cover, we should build 2 fireplaces for cooking and " -"grab a pot." +msgid "extend the first wall using metal" msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2 fireplaces" +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Now that we have some cover, we should build 2 stoves for cooking and grab a" -" pot." +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 2 wood stoves" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should build a well. This will make cooking more convenient." +msgid "Let's start building the first garage mi-go resin wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some counters and shelves." +msgid "build the first mi-go resin garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "build kitchen counters" +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build 3 smoking racks and a charcoal kiln" +msgid "build the second mi-go resin garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Lets furnish the pantry and build 2 root cellars." +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "furnish the pantry" +msgid "build an inner mi-go resin wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's make some furniture for the dining hall." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build some planters to the north for a chef's garden." +msgid "extend the first wall using mi-go resin" msgstr "" #: lang/json/recipe_from_json.py -msgid "build some planters" +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen log walls." +msgid "extend the second wall using mi-go resin" msgstr "" #: lang/json/recipe_from_json.py -msgid "build the log wall central kitchen room" +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen log walls." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the log wall central kitchen room" +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this log wall smoking area covered to protect the workers from the" -" weather." +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a log wall roofed area for smoking racks" +msgid "build the second rammed earth garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a log wall pantry west of the kitchen." +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a log wall pantry" +msgid "build an inner rammed earth wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west log wall of the dining hall." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W log wall" +msgid "extend the first wall using rammed earth" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east log wall of the dining hall." +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E log wall" +msgid "extend the second wall using rammed earth" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the log wall dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the log wall dining hall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen metal walls." +msgid "Let's start building the first garage rock wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the metal wall central kitchen room" +msgid "build the first rock garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen metal walls." +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the metal wall central kitchen room" +msgid "build the second rock garage section" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this metal wall smoking area covered to protect the workers from " -"the weather." +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metal wall roofed area for smoking racks" +msgid "build an inner rock wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a metal wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a metal wall pantry" +msgid "extend the first wall using rock" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west metal wall of the dining hall." +msgid "Let's extend the second wall to match the first one, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W metal wall" +msgid "extend the second wall using rock" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east metal wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E metal wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the metal wall dining hall." +msgid "Let's start building the first garage wattle-and-daub wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the metal wall dining hall" +msgid "build the first wattle-and-daub garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen mi-go resin walls." +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the mi-go resin central kitchen room" +msgid "build the second wattle-and-daub garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen mi-go resin walls." +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the mi-go resin central kitchen room" +msgid "build an inner wattle-and-daub wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this mi-go resin smoking area covered to protect the workers from " -"the weather." +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a mi-go resin roofed area for smoking racks" +msgid "extend the first wall using wattle-and-daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a mi-go resin wall pantry west of the kitchen." +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a mi-go resin pantry" +msgid "extend the second wall using wattle-and-daub" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west mi-go resin wall of the dining hall." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W mi-go resin wall" +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east mi-go resin wall of the dining hall." +msgid "Let's start building the first garage wood wall section." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E mi-go resin wall" +msgid "build the first wood garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the mi-go resin dining hall." +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the mi-go resin dining hall" +msgid "build the second wood garage section" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rammed earth walls." +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the rammed earth central kitchen room" +msgid "build an inner wood wall" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rammed earth walls." +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the rammed earth central kitchen room" +msgid "extend the first wall using wood panels" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rammed earth smoking area covered to protect the workers from" -" the weather." +"Let's extend the second wall to match the first one, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rammed earth roofed area for smoking racks" +msgid "extend the second wall using wood" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rammed earth wall pantry west of the kitchen." +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rammed earth pantry" +msgid "extend the second wall using wood panels" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west rammed earth wall of the dining hall." +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rammed earth wall" +msgid "Survey land for a livestock area." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east rammed earth wall of the dining hall." +msgid "Livestock survey" msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rammed earth wall" +msgid "" +"We could use a fence to contain our chickens and other birds, so build a " +"chickenwire fence on the east side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rammed earth dining hall." +msgid "east coop yard" msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the rammed earth dining hall" +msgid "" +"We could use paddock for the stable, so build a split-rail fence on the " +"north side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen rock walls." +msgid "north paddock" msgstr "" #: lang/json/recipe_from_json.py -msgid "build the central kitchen room" +msgid "" +"We could use paddock for the stable, so build a split-rail fence in the " +"center of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen rock walls." +msgid "center paddock" msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the rock wall central kitchen room" +msgid "" +"We could use paddock for the stable, so build a split-rail fence to close " +"off the south end of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this rock wall smoking area covered to protect the workers from " -"the weather." +"We could use a coop to contain our chickens and other birds, so build a log " +"shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rock wall roofed area for smoking racks" +msgid "northeast coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a rock wall pantry west of the kitchen." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a rock wall pantry" +msgid "southeast storage room" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west rock wall of the rock wall dining hall." +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W rock wall" +msgid "southwest stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east rock wall of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the west" +" side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E rock wall" +msgid "west stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the rock wall dining hall." +msgid "" +"We could use an expansion for the stable, so build 2 more stalls on the " +"northwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the rock dining hall" +msgid "northwest stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wattle and daub walls." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"metal sheet shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wattle and daub central kitchen room" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal sheet shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wattle and daub walls." +msgid "" +"We could use a stable for larger livestock, so build a metal sheet shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the wattle and daub central kitchen room" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a mi-" +"go resin shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wattle and daub smoking area covered to protect the workers " -"from the weather." +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub roofed area for smoking racks" +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a wattle and daub wall pantry west of the kitchen." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"rammed earth shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wattle and daub pantry" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west wattle and daub wall of the dining hall." +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wattle and daub wall" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"stone shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east wattle and daub wall of the dining hall." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"stone shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wattle and daub wall" +msgid "" +"We could use a stable for larger livestock, so build a stone shack with a " +"roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wattle and daub dining hall." +msgid "" +"We could use a coop to contain our chickens and other birds, so build a " +"wattle and daub shack with a roof on the northeast side of the livestock " +"field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the wattle and daub dining hall" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle and daub shack with a roof on the southeast side of the livestock " +"field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's start building the central kitchen wood panel walls." +msgid "" +"We could use a stable for larger livestock, so build a wattle and daub shack" +" with a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build the wood panel central kitchen room" +msgid "" +"We could use a coop to contain our chickens and other birds, so build a wood" +" panel shack with a roof on the northeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's finish the central kitchen wood panel walls." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the southeast side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "finish the wood panel central kitchen room" +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the southwest side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Let's get this wood panel smoking area covered to protect the workers from " -"the weather." +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood panel roofed area for smoking racks" +msgid "chicken coop yard" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build a wood panel pantry west of the kitchen." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a wood panel pantry" +msgid "remote paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the west wood panel wall of the dining hall." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build W wood wall" +msgid "side paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the east wood panel wall of the dining hall." +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build E wood wall" +msgid "near paddock fence" msgstr "" #: lang/json/recipe_from_json.py -msgid "Let's build the center of the wood panel dining hall." +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "build center of the dining hall" +msgid "concrete chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a farming area." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "farm area survey" +msgid "concrete storage shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Plowing a few plots should get us started." +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm basic plots" +msgid "concrete stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "We could use a farming shed to store resources where we'll be working." +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm basic shed" +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Our farm could be expanded by finishing the shed and adding additional " -"plots." +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm upgraded shed" +msgid "log chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Building a processing shack should allow us to reclaim additional seeds from" -" our byproducts." +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Farm processing shack" +msgid "log storage shack" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a garage." +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Building a tool rack should be the first priority." +msgid "log stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage tool rack" +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "We should start construction of a roof for the garage." +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage partial roof" +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Finishing out the roof will let our mechanics work rain or shine." +msgid "metal chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage completed roof" +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Our garage isn't big enough to work on larger vehicles. Let's start " -"expanding it." +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage partial expansion" +msgid "metal stable" msgstr "" #: lang/json/recipe_from_json.py -msgid "Finishing the roof will let us park RVs and buses in the garage." +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage expanded roof" +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Attaching quarters will let our mechanics work longer hours when needed." +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Garage mechanics quarters" +msgid "mi-go resin chicken coop" msgstr "" #: lang/json/recipe_from_json.py -msgid "Survey land for a livestock area." +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "Livestock survey" +msgid "mi-go resin storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a fence to contain our chickens and other birds, so build a " -"chickenwire fence on the east side of the livestock field." +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "east coop yard" +msgid "mi-go resin stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence on the " -"north side of the livestock field." +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "north paddock" +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence in the " -"center of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "center paddock" +msgid "rammed earth chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use paddock for the stable, so build a split-rail fence to close " -"off the south end of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a log " -"shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "northeast coop" +msgid "rammed earth stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a log " -"shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." msgstr "" #: lang/json/recipe_from_json.py -msgid "southeast storage room" +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a log shack with a roof" -" on the southwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "southwest stable" +msgid "rock chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the west" -" side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "west stable" +msgid "rock storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use an expansion for the stable, so build 2 more stalls on the " -"northwest side of the livestock field." +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "northwest stable" +msgid "rock stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"metal sheet shack with a roof on the northeast side of the livestock field." +"We could use a larger stable, so extend the stable with another rock walled " +"stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"metal sheet shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a metal sheet shack " -"with a roof on the southwest side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a mi-" -"go resin shack with a roof on the northeast side of the livestock field." +msgid "wattle-and-daub chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a mi-" -"go resin shack with a roof on the southeast side of the livestock field." +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a mi-go resin shack " -"with a roof on the southwest side of the livestock field." +msgid "wattle-and-daub storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"rammed earth shack with a roof on the northeast side of the livestock field." +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"rammed earth shack with a roof on the southeast side of the livestock field." +msgid "wattle-and-daub stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a rammed earth shack " -"with a roof on the southwest side of the livestock field." +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"stone shack with a roof on the northeast side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"stone shack with a roof on the southeast side of the livestock field." +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a stable for larger livestock, so build a stone shack with a " -"roof on the southwest side of the livestock field." +msgid "wood panel chicken coop" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a coop to contain our chickens and other birds, so build a " -"wattle and daub shack with a roof on the northeast side of the livestock " -"field." +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a storage room for feed, animal gear and tools, so build a " -"wattle and daub shack with a roof on the southeast side of the livestock " -"field." +msgid "wood panel storage shack" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wattle and daub shack" -" with a roof on the southwest side of the livestock field." +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." msgstr "" #: lang/json/recipe_from_json.py -msgid "" -"We could use a coop to contain our chickens and other birds, so build a wood" -" panel shack with a roof on the northeast side of the livestock field." +msgid "wood panel stable" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a storage room for feed, animal gear and tools, so build a wood" -" panel shack with a roof on the southeast side of the livestock field." +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We could use a stable for larger livestock, so build a wood panel shack with" -" a roof on the southwest side of the livestock field." +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." msgstr "" #: lang/json/recipe_from_json.py @@ -204598,6 +207684,645 @@ msgstr "" msgid "benches, southwest" msgstr "" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -204863,60 +208588,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -205751,7 +209785,11 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" msgstr "" #: lang/json/recipe_group_from_json.py @@ -205763,12 +209801,22 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" msgstr "" #: lang/json/recipe_group_from_json.py @@ -205776,11 +209824,21 @@ msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" +msgid "Fabrication Workshop version 2. More detailed recipe progression" msgstr "" #: lang/json/recipe_group_from_json.py @@ -205943,6 +210001,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "" @@ -208084,6 +212198,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -208396,7 +212536,7 @@ msgid "" "objects." msgstr "" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "" @@ -209134,8 +213274,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." msgstr "" #: lang/json/snippet_from_json.py @@ -209912,15 +214052,16 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." msgstr "" #: lang/json/snippet_from_json.py @@ -214972,6 +219113,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -214980,7 +219387,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -215097,7 +219504,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -219682,7 +224089,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -219741,7 +224148,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -219754,7 +224161,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -219772,17 +224179,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -219861,7 +224268,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -219971,8 +224378,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -220380,7 +224787,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -220390,8 +224797,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -221813,6 +226220,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -224111,7 +228580,7 @@ msgstr "" msgid "I'm your best friend, right?" msgstr "" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "" @@ -224772,6 +229241,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -224790,6 +229371,21 @@ msgstr "" msgid "\"i'm here for you!\"" msgstr "" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -225959,6 +230555,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -228285,6 +232959,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -228394,6 +233075,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -228417,6 +233116,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -229927,7 +234633,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -230097,19 +234803,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -230182,95 +234888,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" +msgid "\"Wanna play with me?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" +msgid "\"Sing with me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" +msgid "\"I love you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" +msgid "\"Please take me with you!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" +msgid "\"May I have a cookie?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" +msgid "\"Let's play together!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" +msgid "\"Time to play!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" +msgid "\"Om nom nom! Delicious!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" +msgid "\"Are you my mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" +msgid "\"Oh, how fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" +msgid "\"You're my best friend!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" +msgid "\"Heehee!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" +msgid "\"Let's have fun!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" +msgid "\"Let's have a tea party!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." +msgid "\"You're the best!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"You shouldn't have done that.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" +msgid "\"I hate you.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" +msgid "\"Go kill yourself!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" +msgid "\"Big Brother is watching you…\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" +msgid "\"Die for me!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Why won't you die?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"Blood… Delicious.\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -230278,31 +234988,31 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" +msgid "\"FUCK YOU!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" +msgid "\"What did you do with my Mommy?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "Гей, дітки, хотете цукерок?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" +msgid "\"Down here, they ALL float!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" +msgid "\"Do you really need that much honey?\"" msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" msgstr "" #: lang/json/speech_from_json.py @@ -230318,19 +235028,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" +msgid "labored breathing." msgstr "" #: lang/json/speech_from_json.py -msgid "labored breathing" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -231397,6 +236103,10 @@ msgstr "" msgid "Gun Store" msgstr "" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "" @@ -232830,6 +237540,10 @@ msgstr "" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "" @@ -240050,6 +244764,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "" @@ -240696,6 +246188,10 @@ msgstr "" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -240765,6 +246261,17 @@ msgstr "" msgid "That's the most hopeful thing I've heard so far." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "" @@ -243197,10 +248704,6 @@ msgstr "" msgid "What's this I hear about you having a doctorate?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -246998,10 +252501,6 @@ msgstr "" msgid "What's with these 'free merchant certified notes'?" msgstr "" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "" @@ -247330,6 +252829,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -247621,6 +253229,15 @@ msgstr "" msgid "Is there any way I can join the 'Old Guard'?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "" @@ -247711,6 +253328,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -250482,6 +256151,23 @@ msgstr "" msgid "Sure…" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -250667,20 +256353,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "" @@ -251288,20 +256960,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "" @@ -251337,54 +256995,44 @@ msgid " jabs deftly at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" +msgid "You smoothly throw %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -251468,20 +257116,6 @@ msgstr "" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "Ви перехоплюєте атаку %s та завдаєте удар у відповідь" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -251600,34 +257234,6 @@ msgstr "" msgid " performs the Crane Wing at %s." msgstr "" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "" @@ -251643,45 +257249,45 @@ msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Claw" +msgid "Crane Flap" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" +msgid "Crane Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" +msgid "Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" +msgid "You lash out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" +msgid " lashes out at %s with a Dragon Claw" msgstr "" #: lang/json/technique_from_json.py @@ -251765,17 +257371,17 @@ msgid " combination strikes %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" +msgid "You deliver a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" +msgid " delivers a stunning strike to %s" msgstr "" #: lang/json/technique_from_json.py @@ -251817,7 +257423,7 @@ msgid " lunges at %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -251830,6 +257436,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -251976,20 +257586,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -252094,20 +257690,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "" @@ -252208,20 +257790,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "" @@ -252546,41 +258114,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" +msgid "Shove" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" +msgid "You shove %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -252781,20 +258345,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -253555,20 +259105,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -253667,20 +259203,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -253723,20 +259245,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -255980,6 +261488,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "" @@ -259372,24 +264892,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -259397,32 +264917,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -259430,35 +264950,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -259466,33 +264981,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -259500,10 +265015,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -259511,10 +265026,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -259522,40 +265037,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -259563,21 +265076,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -259585,44 +265094,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -259630,14 +265130,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -259655,12 +265151,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -259668,21 +265159,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -259690,10 +265177,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -259701,7 +265188,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -259710,10 +265197,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -259722,21 +265209,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -259744,10 +265227,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -259756,10 +265239,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -259767,7 +265250,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -259776,26 +265259,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -259809,11 +265292,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -262319,18 +267798,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "" @@ -262693,6 +268279,57 @@ msgstr "" msgid "An electric motor." msgstr "" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -263170,6 +268807,15 @@ msgstr "" msgid "wooden aisle" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -263303,6 +268949,10 @@ msgstr "" msgid "wood table" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "" @@ -263371,6 +269021,10 @@ msgstr "" msgid "vehicle-mounted heater" msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "" @@ -263477,6 +269131,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -264660,8 +270320,8 @@ msgstr "" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "" @@ -267426,6 +273086,18 @@ msgstr "" msgid "Coverage:" msgstr "" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "" @@ -267517,8 +273189,9 @@ msgstr "" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." msgstr "" #: src/armor_layers.cpp @@ -267530,6 +273203,12 @@ msgstr "" msgid "Storage (%s)" msgstr "" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "" @@ -271765,11 +277444,6 @@ msgstr "" msgid "No limb would benefit from it." msgstr "" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "" @@ -272080,6 +277754,14 @@ msgstr "" msgid "Designate an area to mine." msgstr "" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "" @@ -274256,10 +279938,6 @@ msgstr "" msgid "any skill used to craft" msgstr "" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "" @@ -274800,6 +280478,14 @@ msgstr "" msgid "Test weather" msgstr "" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -275226,6 +280912,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -275314,6 +281005,11 @@ msgstr "" msgid "Set sleep deprivation to? Currently: %d" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -276071,7 +281767,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "" @@ -276093,15 +281789,6 @@ msgid "" "items and vehicles!" msgstr "" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "" @@ -279447,6 +285134,10 @@ msgstr "" msgid "You swap places with %s." msgstr "" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -279731,6 +285422,15 @@ msgstr "" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "" @@ -282056,10 +287756,6 @@ msgstr "" msgid "Are you sure you want to sleep?" msgstr "" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "" @@ -282200,6 +287896,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -282559,10 +288263,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "" @@ -283093,16 +288793,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" -"Це ідеально вертикальна стіна. На ній знаходяться дивні отвори,\n" -"що уходять глибоко у товщу каменю. Ці отвори за формою нагадують\n" -"людину, але із довгими, покрученими і розтягнутими кінцівками." - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -286422,6 +292112,21 @@ msgstr "" msgid "%s:" msgstr "" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "Торс:" @@ -289463,13 +295168,17 @@ msgid "BEES!" msgstr "" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" +msgid "Set the timer to how many seconds (0 to cancel)?" msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: src/iuse.cpp msgid "Tick!" @@ -290206,8 +295915,7 @@ msgid "Your vision is fine already." msgstr "" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" +msgid "You press a button on the doll to make it talk." msgstr "" #: src/iuse.cpp @@ -290433,38 +296141,6 @@ msgstr "" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -291704,87 +297380,30 @@ msgstr "" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "" - -#: src/iuse.cpp -msgid "Without a doubt." +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "Yes - definitely." -msgstr "" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "" - -#: src/iuse.cpp -msgid "Don't count on it." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "My reply is no." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "My sources say no." +msgid "You and your friend start playing." msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." +msgid "You start playing." msgstr "" #: src/iuse.cpp -msgid "Very doubtful." +#, c-format +msgid "Play a game with the %s?" msgstr "" #: src/iuse.cpp @@ -294614,7 +300233,19 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " msgstr "" #: src/martialarts.cpp @@ -299562,6 +305193,11 @@ msgstr "" msgid "Manage your friendship with %s" msgstr "" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -300433,21 +306069,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "" @@ -300711,11 +306332,20 @@ msgstr "" msgid "%s to activate mutation, " msgstr "" +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "" +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -302419,11 +308049,6 @@ msgstr "" msgid "What do you want to do?" msgstr "" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "" - #: src/npctalk.cpp msgid "Talk to…" msgstr "" @@ -303188,6 +308813,15 @@ msgid "" "trying to move into mineable terrain." msgstr "" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "" @@ -303195,14 +308829,19 @@ msgstr "" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" #: src/options.cpp msgid "Bushes" msgstr "" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "" @@ -305525,20 +311164,6 @@ msgstr "" msgid "# Unexplored" msgstr "" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "" @@ -305879,6 +311504,11 @@ msgstr "" msgid "Night" msgstr "" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -305927,6 +311557,10 @@ msgstr "" msgid "Freezing!" msgstr "" +#: src/panels.cpp +msgid "SAFE" +msgstr "" + #: src/panels.cpp msgid "On" msgstr "" @@ -308321,6 +313955,16 @@ msgstr "" msgid "[%s] Show lines of fire" msgstr "" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -312672,6 +318316,10 @@ msgstr "" msgid "You purify the contents of the %1$s's %2$s" msgstr "" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "Понеділок" diff --git a/lang/po/zh_CN.po b/lang/po/zh_CN.po index 0424a53584a8a..c8c81d9c51a18 100644 --- a/lang/po/zh_CN.po +++ b/lang/po/zh_CN.po @@ -22,7 +22,6 @@ # Mein Führer <851000914@qq.com>, 2020 # 羽 偌 , 2020 # 智也 三上 <464337873@qq.com>, 2020 -# ehnuhc , 2020 # CK LU <1965630970@qq.com>, 2020 # Jamie Cyril-Marlowe , 2020 # startobira , 2020 @@ -48,7 +47,6 @@ # Aloxaf , 2021 # PN WN , 2021 # vacuum_vortex , 2021 -# iopop, 2021 # 铯 132 , 2021 # Remysxia~w, 2021 # busizhe, 2021 @@ -57,20 +55,22 @@ # Brett Dong , 2021 # 何方神圣 何 <1366003560@qq.com>, 2021 # 高 励贤 <475964436@qq.com>, 2021 -# L rient <1972308206@qq.com>, 2021 -# Jianxiang Wang , 2021 # none none <514065589@qq.com>, 2021 # GeekDuanLian , 2021 -# Amans Tofu , 2021 # 曾泰瑋 , 2021 # li, 2021 +# Amans Tofu , 2021 +# iopop, 2021 +# ehnuhc , 2021 +# L rient <1972308206@qq.com>, 2021 +# Jianxiang Wang , 2021 # cainiao , 2021 # msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: cainiao , 2021\n" "Language-Team: Chinese (China) (https://www.transifex.com/cataclysm-dda-translators/teams/2217/zh_CN/)\n" @@ -85,7 +85,7 @@ msgid "battery" msgid_plural "battery" msgstr[0] "电池" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -97,7 +97,7 @@ msgid "butane" msgid_plural "butane" msgstr[0] "丁烷" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "打火机常用的易燃液体。" @@ -107,7 +107,7 @@ msgid "aerosol paint" msgid_plural "aerosol paint" msgstr[0] "喷漆" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -119,7 +119,7 @@ msgid "permanent ink" msgid_plural "permanent ink" msgstr[0] "永固油墨" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -131,7 +131,7 @@ msgid "candle wax" msgid_plural "candle wax" msgstr[0] "烛蜡" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "一种用来制作蜡烛的易燃固体物质。" @@ -141,7 +141,7 @@ msgid "flare pyrotechnic" msgid_plural "flare pyrotechnic" msgstr[0] "照明剂" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "照明弹中使用的燃烧时产生强烈发光效应的烟火药剂。" @@ -163,7 +163,7 @@ msgid "oxygen" msgid_plural "oxygen" msgstr[0] "氧气" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "医用高压氧气。" @@ -173,7 +173,7 @@ msgid "aluminum foil" msgid_plural "aluminum foil" msgstr[0] "铝箔" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -195,7 +195,7 @@ msgid "thread" msgid_plural "thread" msgstr[0] "缝衣线" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "一小团细线,能装填在缝纫工具里使用。" @@ -225,7 +225,7 @@ msgid "yarn" msgid_plural "yarn" msgstr[0] "纱线" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "一团羊毛纱线,可用于编织羊毛衣物。" @@ -247,7 +247,7 @@ msgid "duct tape" msgid_plural "duct tape" msgstr[0] "强力胶带" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "一卷十分牢固的强力胶带。用途非常广泛。" @@ -304,8 +304,8 @@ msgid "plutonium slurry" msgid_plural "plutonium slurry" msgstr[0] "钚浆" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -363,7 +363,7 @@ msgid "bearings" msgid_plural "bearings" msgstr[0] "滚珠" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "一盒滚珠轴承的钢球,很适合当弹弓的弹药。" @@ -405,7 +405,7 @@ msgid "120mm HEAT" msgid_plural "120mm HEAT" msgstr[0] "120mm 高爆反坦克弹" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -430,7 +430,7 @@ msgid "mixed smokeless gunpowder" msgid_plural "mixed smokeless gunpowder" msgstr[0] "混合无烟型火药" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -444,7 +444,7 @@ msgid "smokeless shotgun powder" msgid_plural "smokeless shotgun powder" msgstr[0] "无烟型霰弹火药" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "一种火器级品质的火药,可以用于霰弹的制造。" @@ -454,7 +454,7 @@ msgid "smokeless pistol powder" msgid_plural "smokeless pistol powder" msgstr[0] "无烟型手枪弹火药" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "一种火器级品质的火药,可以用于手枪弹药的制造。" @@ -464,7 +464,7 @@ msgid "smokeless magnum powder" msgid_plural "smokeless magnum powder" msgstr[0] "无烟型马格南弹火药" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -475,7 +475,7 @@ msgid "smokeless rifle powder" msgid_plural "smokeless rifle powder" msgstr[0] "无烟型步枪弹火药" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "一种火器级品质的火药,可以用于步枪弹药的制造。" @@ -485,7 +485,7 @@ msgid "smokeless overbore rifle powder" msgid_plural "smokeless overbore rifle powder" msgstr[0] "无烟型大口径步枪弹火药" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "一种火器级品质的火药,可以用于大口径步枪弹药的制造。" @@ -495,7 +495,7 @@ msgid "artillery propellant" msgid_plural "artillery propellant" msgstr[0] "炮弹发射药" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -507,7 +507,7 @@ msgid "oxidizer powder" msgid_plural "oxidizer powder" msgstr[0] "氧化剂粉" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "一些粉末状的不稳定化学氧化剂。" @@ -517,7 +517,7 @@ msgid "lye powder" msgid_plural "lye powder" msgstr[0] "碱粉" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "" @@ -603,7 +603,7 @@ msgid "copper" msgid_plural "copper" msgstr[0] "铜块" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -617,7 +617,7 @@ msgid "medical tape" msgid_plural "medical tape" msgstr[0] "医用胶带" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "" @@ -630,7 +630,7 @@ msgid_plural "placeholder ammunitions" msgstr[0] "占位用弹药" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "如果你在游戏中见到它,说明这里出bug了。" @@ -640,7 +640,7 @@ msgid "charcoal" msgid_plural "charcoal" msgstr[0] "木炭" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -653,7 +653,7 @@ msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "电石原料混合物" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -679,7 +679,7 @@ msgid "albuterol" msgid_plural "albuterol" msgstr[0] "舒喘宁" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -761,7 +761,7 @@ msgid "nicotine liquid" msgid_plural "nicotine liquid" msgstr[0] "尼古丁浓缩液" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -775,7 +775,7 @@ msgid "fish bait" msgid_plural "fish bait" msgstr[0] "鱼饵" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "" @@ -830,7 +830,7 @@ msgid "unfinished charcoal" msgid_plural "unfinished charcoal" msgstr[0] "木炭(未完成)" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -844,7 +844,7 @@ msgid "unfinished calcium carbide" msgid_plural "unfinished calcium carbide" msgstr[0] "电石(未完成)" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -866,7 +866,7 @@ msgid "nitrox" msgid_plural "nitrox" msgstr[0] "氮氧混合气" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "将氧气和氮气以适度比例混合,用于潜水。" @@ -876,7 +876,7 @@ msgid "extinguishing agent" msgid_plural "extinguishing agent" msgstr[0] "灭火剂" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "一款能够有效灭火的干粉状化学溶剂。" @@ -886,7 +886,7 @@ msgid "tinder" msgid_plural "tinder" msgstr[0] "火绒" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "易燃材料,经过研磨之后,更加易于燃烧。" @@ -916,7 +916,7 @@ msgid "bronze" msgid_plural "bronze" msgstr[0] "青铜" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "一块尺寸适中的青铜,用于制造一些旧时代的物品。" @@ -926,7 +926,7 @@ msgid "glowstick juice" msgid_plural "glowstick juice" msgstr[0] "荧光液" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -937,7 +937,7 @@ msgid "graphite" msgid_plural "graphite" msgstr[0] "石墨" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -950,7 +950,7 @@ msgid "black pen ink" msgid_plural "black pen ink" msgstr[0] "黑色墨水" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -962,7 +962,7 @@ msgid "blue pen ink" msgid_plural "blue pen ink" msgstr[0] "蓝色墨水" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -974,7 +974,7 @@ msgid "green pen ink" msgid_plural "green pen ink" msgstr[0] "绿色墨水" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -986,7 +986,7 @@ msgid "red pen ink" msgid_plural "red pen ink" msgstr[0] "红色墨水" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -1011,7 +1011,7 @@ msgid "sulfur" msgid_plural "sulfur" msgstr[0] "硫磺" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -1037,7 +1037,7 @@ msgid "cement" msgid_plural "cement" msgstr[0] "水泥" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -1050,7 +1050,7 @@ msgid "gravel" msgid_plural "gravel" msgstr[0] "碎石" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "一把碎石,比石子略小,但又比沙子略大。" @@ -1060,7 +1060,7 @@ msgid "limestone" msgid_plural "limestone" msgstr[0] "石灰岩" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1073,7 +1073,7 @@ msgid "quicklime" msgid_plural "quicklime" msgstr[0] "生石灰" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1089,7 +1089,7 @@ msgid "sand" msgid_plural "sand" msgstr[0] "黄沙" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1101,7 +1101,7 @@ msgid "soil" msgid_plural "soil" msgstr[0] "泥土" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1113,7 +1113,7 @@ msgid "aluminum powder" msgid_plural "aluminum powder" msgstr[0] "铝粉" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1127,7 +1127,7 @@ msgid "zinc powder" msgid_plural "zinc powder" msgstr[0] "锌粉" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1141,7 +1141,7 @@ msgid "zinc oxide" msgid_plural "zinc oxide" msgstr[0] "氧化锌" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1153,7 +1153,7 @@ msgid "manganese dioxide" msgid_plural "manganese dioxide" msgstr[0] "二氧化锰" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1166,7 +1166,7 @@ msgid "potassium chloride" msgid_plural "potassium chloride" msgstr[0] "氯化钾" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1181,7 +1181,7 @@ msgid "potassium hydroxide" msgid_plural "potassium hydroxide" msgstr[0] "氢氧化钾" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1194,7 +1194,7 @@ msgid "acetone" msgid_plural "acetone" msgstr[0] "丙酮" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1207,7 +1207,7 @@ msgid "chromium oxide" msgid_plural "chromium oxide" msgstr[0] "氧化铬" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1223,7 +1223,7 @@ msgid "calcium carbide" msgid_plural "calcium carbide" msgstr[0] "电石" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1239,7 +1239,7 @@ msgid "hexamine" msgid_plural "hexamine" msgstr[0] "乌洛托品" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1255,7 +1255,7 @@ msgid "hydrogen peroxide (concentrated)" msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "过氧化氢(浓缩)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1270,7 +1270,7 @@ msgid "ammonium nitrate" msgid_plural "ammonium nitrate" msgstr[0] "硝酸铵" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1284,7 +1284,7 @@ msgid "ammonium nitrate pellets" msgid_plural "ammonium nitrate pellets" msgstr[0] "硝酸铵颗粒" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1298,7 +1298,7 @@ msgid "saltpeter" msgid_plural "saltpeter" msgstr[0] "硝石" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1311,7 +1311,7 @@ msgid "niter" msgid_plural "niter" msgstr[0] "硝石矿" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1323,7 +1323,7 @@ msgid "aluminum sulfate" msgid_plural "aluminum sulfate" msgstr[0] "硫酸铝" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1340,7 +1340,7 @@ msgid "acetic acid" msgid_plural "acetic acid" msgstr[0] "醋酸" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1354,7 +1354,7 @@ msgid "formaldehyde" msgid_plural "formaldehyde" msgstr[0] "甲醛" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1369,7 +1369,7 @@ msgid "thermite" msgid_plural "thermite" msgstr[0] "铝热剂" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1383,7 +1383,7 @@ msgid "ANFO" msgid_plural "ANFO" msgstr[0] "铵油炸药" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1398,7 +1398,7 @@ msgid "black gunpowder" msgid_plural "black gunpowder" msgstr[0] "黑火药" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1412,7 +1412,7 @@ msgid "match head powder" msgid_plural "match head powder" msgstr[0] "火柴火药" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1425,7 +1425,7 @@ msgid "RDX" msgid_plural "RDX" msgstr[0] "RDX炸药" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1439,7 +1439,7 @@ msgid "composition b" msgid_plural "composition b" msgstr[0] "B炸药" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1452,7 +1452,7 @@ msgid "HMTD" msgid_plural "HMTD" msgstr[0] "HMTD炸药" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1467,7 +1467,7 @@ msgid "APEX" msgid_plural "APEX" msgstr[0] "APEX" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1480,7 +1480,7 @@ msgid "improvised rocket fuel" msgid_plural "improvised rocket fuel" msgstr[0] "自制火箭弹燃料" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1492,7 +1492,7 @@ msgid "detergent" msgid_plural "detergent" msgstr[0] "洗涤剂" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "一种在大灾变前流行的用于清洗肮脏物品的粉末。" @@ -1502,7 +1502,7 @@ msgid "soap flakes" msgid_plural "soap flakes" msgstr[0] "肥皂片" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "一块切成薄片的肥皂,适合在洗衣机里使用。" @@ -1558,7 +1558,7 @@ msgid "concentrated venom" msgid_plural "concentrated venom" msgstr[0] "浓缩毒素" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1573,7 +1573,7 @@ msgid "concentrated paralytic" msgid_plural "concentrated paralytic" msgstr[0] "浓缩麻痹毒素" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1588,7 +1588,7 @@ msgid "rocuronium" msgid_plural "rocuronium" msgstr[0] "罗库溴铵" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1601,7 +1601,7 @@ msgid "red phosphorous" msgid_plural "red phosphorous" msgstr[0] "红磷" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1613,7 +1613,7 @@ msgid "iodine crystal" msgid_plural "iodine crystal" msgstr[0] "碘晶体" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1625,7 +1625,7 @@ msgid "ethanol" msgid_plural "ethanol" msgstr[0] "乙醇" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1655,7 +1655,7 @@ msgid "methanol" msgid_plural "methanol" msgstr[0] "甲醇" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1668,7 +1668,7 @@ msgid "diesel" msgid_plural "diesel" msgstr[0] "柴油" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1679,7 +1679,7 @@ msgid "JP8 fuel" msgid_plural "JP8 fuel" msgstr[0] "JP8 燃料" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1691,7 +1691,7 @@ msgid "avgas fuel" msgid_plural "avgas fuel" msgstr[0] "航空燃油" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "一种特殊的石油燃料,用于为飞机提供动力。" @@ -1701,7 +1701,7 @@ msgid "biodiesel" msgid_plural "biodiesel" msgstr[0] "生物柴油" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1714,7 +1714,7 @@ msgid "gasoline" msgid_plural "gasoline" msgstr[0] "汽油" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1728,7 +1728,7 @@ msgid "lamp oil" msgid_plural "lamp oil" msgstr[0] "灯油" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "一份轻型无烟灯油,在油灯中使用。" @@ -1738,7 +1738,7 @@ msgid "motor oil" msgid_plural "motor oil" msgstr[0] "机油" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "一款供汽车引擎使用的机油。" @@ -1748,7 +1748,7 @@ msgid "napalm" msgid_plural "napalm" msgstr[0] "凝固汽油" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -1761,7 +1761,7 @@ msgid "gelled gasoline" msgid_plural "gelled gasoline" msgstr[0] "胶状汽油" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -1774,7 +1774,7 @@ msgid "flamethrower fuel" msgid_plural "flamethrower fuel" msgstr[0] "火焰喷射器燃料" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -1810,7 +1810,7 @@ msgid "shrapnel" msgid_plural "shrapnel" msgstr[0] "弹片" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "一块扭曲而凹凸不平的金属碎片。" @@ -1861,7 +1861,7 @@ msgid "10mm Auto FMJ" msgid_plural "10mm Auto FMJ" msgstr[0] "10mm Auto 被甲弹" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -1885,7 +1885,7 @@ msgid "H&K 12mm" msgid_plural "H&K 12mm" msgstr[0] "黑克勒-科赫 12mm 磁轨弹" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -1922,7 +1922,7 @@ msgid "20x66mm buckshot, handmade" msgid_plural "20x66mm buckshot, handmade" msgstr[0] "20X66mm 猎鹿弹(自制)" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -1946,7 +1946,7 @@ msgid "20x66mm explosive" msgid_plural "20x66mm explosive" msgstr[0] "20X66mm 爆裂弹" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -1985,7 +1985,7 @@ msgid "20x66mm frag" msgid_plural "20x66mm frag" msgstr[0] "20X66mm 榴弹" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -1998,7 +1998,7 @@ msgid "20x66mm incendiary" msgid_plural "20x66mm incendiary" msgstr[0] "20X66mm 燃烧弹" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -2011,7 +2011,7 @@ msgid "20x66mm buckshot" msgid_plural "20x66mm buckshot" msgstr[0] "20x66mm 猎鹿弹" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -2037,7 +2037,7 @@ msgid ".22 CB" msgid_plural ".22 CB" msgstr[0] ".22 CB 弹" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -2052,7 +2052,7 @@ msgid ".22 FMJ" msgid_plural ".22 FMJ" msgstr[0] ".22 被甲弹" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2067,7 +2067,7 @@ msgid ".22 LR" msgid_plural ".22 LR" msgstr[0] ".22 LR 弹" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2082,7 +2082,7 @@ msgid ".22 rat-shot" msgid_plural ".22 rat-shot" msgstr[0] ".22 猎鼠弹" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2115,7 +2115,7 @@ msgid ".223 Remington" msgid_plural ".223 Remington" msgstr[0] ".223 雷明顿弹" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2133,7 +2133,7 @@ msgid "5.56 NATO Mk 262" msgid_plural "5.56 NATO Mk 262" msgstr[0] "5.56 NATO Mk 262弹" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2151,7 +2151,7 @@ msgid "5.56 NATO Mk 318" msgid_plural "5.56 NATO Mk 318" msgstr[0] "5.56 NATO Mk 318弹" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2169,7 +2169,7 @@ msgid "5.56 NATO M855" msgid_plural "5.56 NATO M855" msgstr[0] "5.56 NATO M855弹" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2188,7 +2188,7 @@ msgid "5.56 NATO M855A1" msgid_plural "5.56 NATO M855A1" msgstr[0] "5.56 NATO M855A1弹" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2207,7 +2207,7 @@ msgid "5.56 NATO tracer" msgid_plural "5.56 NATO tracer" msgstr[0] "5.56 NATO 曳光弹" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2251,7 +2251,7 @@ msgid ".270 Winchester JSP" msgid_plural ".270 Winchester JSP" msgstr[0] ".270 温彻斯特软尖弹" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2298,7 +2298,7 @@ msgid ".300 Winchester Magnum, reloaded" msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] ".300 温彻斯特马格南弹(复装)" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2311,7 +2311,7 @@ msgid ".30-06 Springfield" msgid_plural ".30-06 Springfield" msgstr[0] ".30-06 春田弹" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2325,7 +2325,7 @@ msgid ".30-06 M14A1 tracer" msgid_plural ".30-06 M14A1 tracer" msgstr[0] ".30-06 M14A1 曳光弹" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2338,7 +2338,7 @@ msgid ".30-06 M2 AP" msgid_plural ".30-06 M2 AP" msgstr[0] ".30-06 M2 穿甲弹" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2435,7 +2435,7 @@ msgid ".308 Winchester" msgid_plural ".308 Winchester" msgstr[0] ".308 温彻斯特弹" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2448,7 +2448,7 @@ msgid "7.62x51mm M80" msgid_plural "7.62x51mm M80" msgstr[0] "7.62x51mm M80 弹" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2461,7 +2461,7 @@ msgid "7.62x51mm NATO tracer" msgid_plural "7.62x51mm NATO tracer" msgstr[0] "7.62x51mm NATO 曳光弹" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2505,7 +2505,7 @@ msgid ".32 ACP" msgid_plural ".32 ACP" msgstr[0] ".32 ACP 弹" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2527,7 +2527,7 @@ msgid ".357 Magnum FMJ" msgid_plural ".357 Magnum FMJ" msgstr[0] ".357 马格南被甲弹" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2540,7 +2540,7 @@ msgid ".357 Magnum JHP" msgid_plural ".357 Magnum JHP" msgstr[0] ".357 马格南空尖弹" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2573,7 +2573,7 @@ msgid ".357 SIG FMJ" msgid_plural ".357 SIG FMJ" msgstr[0] ".357 西格被甲弹" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2585,7 +2585,7 @@ msgid ".357 SIG JHP" msgid_plural ".357 SIG JHP" msgstr[0] ".357 西格空尖弹" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -2630,7 +2630,7 @@ msgid ".38 FMJ" msgid_plural ".38 FMJ" msgstr[0] ".38 被甲弹" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -2654,7 +2654,7 @@ msgid ".38 Super" msgid_plural ".38 Super" msgstr[0] ".38 超级弹" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -2691,7 +2691,7 @@ msgid ".380 ACP FMJ" msgid_plural ".380 ACP FMJ" msgstr[0] ".380 ACP 被甲弹" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -2708,7 +2708,7 @@ msgid ".380 ACP JHP" msgid_plural ".380 ACP JHP" msgstr[0] ".380 ACP 空尖弹" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -2724,7 +2724,7 @@ msgid ".380 ACP +P" msgid_plural ".380 ACP +P" msgstr[0] ".380 ACP +P弹" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -2765,7 +2765,7 @@ msgid ".38 Super FMJ" msgid_plural ".38 Super FMJ" msgstr[0] ".38 超级被甲弹" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -2784,7 +2784,7 @@ msgid ".40 S&W FMJ" msgid_plural ".40 S&W FMJ" msgstr[0] ".40 S&W 被甲弹" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -2799,7 +2799,7 @@ msgid ".40 S&W JHP" msgid_plural ".40 S&W JHP" msgstr[0] ".40 S&W 空尖弹" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -2837,7 +2837,7 @@ msgid "40x46mm M1006 sponge" msgid_plural "40x46mm M1006 sponge" msgstr[0] "40x46mm M1006 海绵弹" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -2850,7 +2850,7 @@ msgid "40x46mm M433 HEDP" msgid_plural "40x46mm M433 HEDP" msgstr[0] "40x46mm M433 高爆两用弹" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -2863,7 +2863,7 @@ msgid "40x46mm M576 buckshot" msgid_plural "40x46mm M576 buckshot" msgstr[0] "40x46mm M576 猎鹿弹" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -2877,7 +2877,7 @@ msgid "40x46mm M651 tear gas" msgid_plural "40x46mm M651 tear gas" msgstr[0] "40x46mm M651 催泪弹" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -2890,8 +2890,8 @@ msgid "40x46mm-M118 buckshot, reloaded" msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "40x46mm 猎鹿弹(M118 复装)" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -2906,8 +2906,8 @@ msgid "40x46mm-M199 buckshot, reloaded" msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "40x46mm 猎鹿弹(M199 复装)" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -2953,8 +2953,8 @@ msgid "40x46mm-M118 flechette, reloaded" msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "40x46mm 镖形弹(M118 复装)" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -2969,8 +2969,8 @@ msgid "40x46mm-M199 flechette, reloaded" msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "40x46mm 镖形弹(M199 复装)" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -3025,7 +3025,7 @@ msgid "40x46mm .22 LR hornet's nest" msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "40x46mm 榴霰弹(.22 LR)" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -3037,7 +3037,7 @@ msgid "40x46mm .410 hornet's nest" msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "40x46mm 榴霰弹(.410)" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -3064,7 +3064,7 @@ msgid "40x53mm M430A1 HEDP" msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "40x53mm M430A1 高爆两用弹" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -3077,8 +3077,8 @@ msgid "40x53mm buckshot, reloaded" msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "40x53mm 猎鹿弹(复装)" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "一颗自制的40x53mm猎鹿榴弹,弹道特性接近于 M576 榴弹。" @@ -3099,8 +3099,8 @@ msgid "40x53mm flechette, reloaded" msgid_plural "40x53mm flechette, reloaded" msgstr[0] "40x53mm 镖形弹(复装)" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3127,7 +3127,7 @@ msgid ".410 000 shot" msgid_plural ".410 000 shot" msgstr[0] ".410 000 号霰弹" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "一颗 .410 口径霰弹,内装约5000颗小弹丸。适合狩猎或战斗使用。" @@ -3142,7 +3142,7 @@ msgid ".44 Magnum FMJ" msgid_plural ".44 Magnum FMJ" msgstr[0] ".44 马格南被甲弹" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3200,7 +3200,7 @@ msgid ".45 ACP FMJ" msgid_plural ".45 ACP FMJ" msgstr[0] ".45 ACP 被甲弹" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3212,7 +3212,7 @@ msgid ".45 ACP JHP" msgid_plural ".45 ACP JHP" msgstr[0] ".45 ACP 空尖弹" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3227,7 +3227,7 @@ msgid ".45 ACP +P" msgid_plural ".45 ACP +P" msgstr[0] ".45 ACP +P弹" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3265,7 +3265,7 @@ msgid ".454 Casull" msgid_plural ".454 Casull" msgstr[0] ".454 卡苏尔弹" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3292,7 +3292,7 @@ msgid ".45-70 SP" msgid_plural ".45-70 SP" msgstr[0] ".45-70 SP弹" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3318,7 +3318,7 @@ msgid ".45-70 LFN cowboy" msgid_plural ".45-70 LFN cowboy" msgstr[0] ".45-70 LFN 牛仔弹" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3332,7 +3332,7 @@ msgid ".45-70 SP, reloaded" msgid_plural ".45-70 SP, reloaded" msgstr[0] ".45-70 SP弹(复装)" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3361,7 +3361,7 @@ msgid ".45-70 LFN cowboy, reloaded" msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] ".45-70 LFN 牛仔弹(复装)" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3377,7 +3377,7 @@ msgid ".45-70, black powder" msgid_plural ".45-70, black powder" msgstr[0] ".45-70 弹(黑火药)" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3393,7 +3393,7 @@ msgid ".45 Colt JHP" msgid_plural ".45 Colt JHP" msgstr[0] ".45 柯尔特空尖弹" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3419,7 +3419,7 @@ msgid "4.6x30mm" msgid_plural "4.6x30mm" msgstr[0] "4.6x30mm 弹" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3434,8 +3434,8 @@ msgid "4.6x30mm, black powder" msgid_plural "4.6x30mm, black powder" msgstr[0] "4.6x30mm 弹(黑火药)" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3456,7 +3456,7 @@ msgid ".460 Rowland HCFN" msgid_plural ".460 Rowland HCFN" msgstr[0] ".460 罗兰德平头硬质弹" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3468,7 +3468,7 @@ msgid ".460 Rowland" msgid_plural ".460 Rowland" msgstr[0] ".460 罗兰德弹" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -3495,7 +3495,7 @@ msgid ".460 Rowland FMJ, reloaded" msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] ".460 罗兰德被甲弹(复装)" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -3512,7 +3512,7 @@ msgid ".50 BMG M17 tracer" msgid_plural ".50 BMG M17 tracer" msgstr[0] ".50 BMG M17 曳光弹" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3527,7 +3527,7 @@ msgid ".50 BMG M33 Ball" msgid_plural ".50 BMG M33 Ball" msgstr[0] ".50 BMG M33 普通弹" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -3544,7 +3544,7 @@ msgid ".50 BMG Match" msgid_plural ".50 BMG Match" msgstr[0] ".50 BMG 竞赛弹" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -3556,7 +3556,7 @@ msgid ".50 BMG M2 AP" msgid_plural ".50 BMG M2 AP" msgstr[0] ".50 BMG M2 穿甲弹" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -3570,7 +3570,7 @@ msgid ".50 BMG Raufoss Mk 211" msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] ".50 BMG 诺霍斯 Mk 211 弹" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -3590,7 +3590,7 @@ msgid ".50 BMG tracer, reloaded" msgid_plural ".50 BMG tracer, reloaded" msgstr[0] ".50 BMG 曳光弹(复装)" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3603,7 +3603,7 @@ msgid ".50 BMG Match, reloaded" msgid_plural ".50 BMG Match, reloaded" msgstr[0] ".50 BMG 竞赛弹(复装)" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -3620,7 +3620,7 @@ msgid ".50 BMG AP, reloaded" msgid_plural ".50 BMG AP, reloaded" msgstr[0] ".50 BMG 穿甲弹(复装)" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -3674,7 +3674,7 @@ msgid "5.45x39mm 7N10" msgid_plural "5.45x39mm 7N10" msgstr[0] "5.45x39mm 7N10 弹" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -3690,7 +3690,7 @@ msgid "5.45x39mm 7N22" msgid_plural "5.45x39mm 7N22" msgstr[0] "5.45x39mm 7N22 弹" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -3702,7 +3702,7 @@ msgid "5.45x39mm, reloaded" msgid_plural "5.45x39mm, reloaded" msgstr[0] "5.45x39mm 弹(复装)" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -3715,7 +3715,7 @@ msgid "5.45x39mm AP, reloaded" msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "5.45x39mm 穿甲弹(复装)" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -3737,7 +3737,7 @@ msgid "5.7x28mm SS190" msgid_plural "5.7x28mm SS190" msgstr[0] "5.7x28mm SS190 弹" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3755,8 +3755,8 @@ msgid "5.7x28mm, black powder" msgid_plural "5.7x28mm, black powder" msgstr[0] "5.7x28mm 弹(黑火药)" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3831,7 +3831,7 @@ msgid "66mm HEAT" msgid_plural "66mm HEAT" msgstr[0] "66mm 高爆反坦克弹" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -3845,7 +3845,7 @@ msgid ".700 NX" msgid_plural ".700 NX" msgstr[0] ".700 NX 弹" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -3871,7 +3871,7 @@ msgid "7.62x39mm 57-N-231" msgid_plural "7.62x39mm 57-N-231" msgstr[0] "7.62x39mm 57-N-231 弹" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -3887,7 +3887,7 @@ msgid "7.62x39mm M67" msgid_plural "7.62x39mm M67" msgstr[0] "7.62x39mm M67 弹" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -3903,7 +3903,7 @@ msgid "7.62x39mm M43, reloaded" msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "7.62x39mm M43 弹(复装)" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -3934,7 +3934,7 @@ msgid "7.62x54mmR" msgid_plural "7.62x54mmR" msgstr[0] "7.62x54mmR 弹" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -3961,7 +3961,7 @@ msgid "7.62x25mm JHP" msgid_plural "7.62x25mm JHP" msgstr[0] "7.62x25mm 空尖弹" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -3986,7 +3986,7 @@ msgid "7.62x25mm Type P" msgid_plural "7.62x25mm Type P" msgstr[0] "7.62x25mm P型弹" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -4047,7 +4047,7 @@ msgid "bootleg 8x40mm JHP" msgid_plural "bootleg 8x40mm JHP" msgstr[0] "8x40mm 空尖无壳弹(自制)" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -4059,7 +4059,7 @@ msgid "8x40mm caseless" msgid_plural "8x40mm caseless" msgstr[0] "8x40mm 无壳弹" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -4071,7 +4071,7 @@ msgid "8x40mm sporting" msgid_plural "8x40mm sporting" msgstr[0] "8x40mm 竞赛无壳弹" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -4084,7 +4084,7 @@ msgid "8x40mm FMJ" msgid_plural "8x40mm FMJ" msgstr[0] "8x40mm 被甲无壳弹" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4097,7 +4097,7 @@ msgid "8x40mm HVP" msgid_plural "8x40mm HVP" msgstr[0] "8x40mm 高速穿甲无壳弹" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4111,7 +4111,7 @@ msgid "8x40mm tracer" msgid_plural "8x40mm tracer" msgstr[0] "8x40mm 曳光无壳弹" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4126,7 +4126,7 @@ msgid "8x40mm JHP" msgid_plural "8x40mm JHP" msgstr[0] "8x40mm 空尖无壳弹" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4139,7 +4139,7 @@ msgid "9x19mm JHP" msgid_plural "9x19mm JHP" msgstr[0] "9x19mm 空尖弹" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4155,7 +4155,7 @@ msgid "9x19mm FMJ" msgid_plural "9x19mm FMJ" msgstr[0] "9x19mm 被甲弹" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4167,7 +4167,7 @@ msgid "9x19mm +P" msgid_plural "9x19mm +P" msgstr[0] "9x19mm +P弹" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4179,7 +4179,7 @@ msgid "9x19mm +P+" msgid_plural "9x19mm +P+" msgstr[0] "9x19mm +P+弹" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4221,7 +4221,7 @@ msgid "9x18mm 57-N-181S" msgid_plural "9x18mm 57-N-181S" msgstr[0] "9x18mm 57-N-181S 弹" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4236,7 +4236,7 @@ msgid "9x18mm SP-7" msgid_plural "9x18mm SP-7" msgstr[0] "9x18mm SP-7 弹" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4250,7 +4250,7 @@ msgid "9x18mm RG028" msgid_plural "9x18mm RG028" msgstr[0] "9x18mm RG028 弹" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4272,7 +4272,7 @@ msgid "9x18mm, reloaded" msgid_plural "9x18mm, reloaded" msgstr[0] "9x18mm 弹(复装)" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4285,7 +4285,7 @@ msgid "9x18mm +P+, reloaded" msgid_plural "9x18mm +P+, reloaded" msgstr[0] "9x18mm +P+ 弹(复装)" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4299,7 +4299,7 @@ msgid "9x18mm FMJ, reloaded" msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "9x18mm 被甲弹(复装)" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4314,7 +4314,7 @@ msgid "152mm ATGM HEAT" msgid_plural "152mm ATGM HEAT" msgstr[0] "152mm 热能追踪反坦克导弹" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -4338,7 +4338,7 @@ msgid "cannon round shot" msgid_plural "cannon round shot" msgstr[0] "实心炮弹" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -4350,7 +4350,7 @@ msgid "sprayable toxic gas" msgid_plural "sprayable toxic gas" msgstr[0] "喷雾式毒气剂" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -4364,7 +4364,7 @@ msgid "sprayable fungicide" msgid_plural "sprayable fungicide" msgstr[0] "喷雾式抗真菌剂" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -4378,7 +4378,7 @@ msgid "sprayable insecticide" msgid_plural "sprayable insecticide" msgstr[0] "喷雾式杀虫剂" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -4488,7 +4488,7 @@ msgid "paintball" msgid_plural "paintball" msgstr[0] "彩弹" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "一管彩弹游戏里使用的非致命性小彩弹,几乎不能造成任何伤害。" @@ -4589,7 +4589,7 @@ msgid "00 shot" msgid_plural "00 shot" msgstr[0] "猎鹿弹" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -4602,7 +4602,7 @@ msgid_plural "shotgun beanbags" msgstr[0] "沙包弹" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "一种霰弹枪用的防暴霰弹,不会致命但是会使目标瘫痪。" @@ -4612,7 +4612,7 @@ msgid "birdshot" msgid_plural "birdshot" msgstr[0] "猎鸟弹" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -4663,8 +4663,8 @@ msgid "00 shot, scrap loaded" msgid_plural "00 shot, scrap loaded" msgstr[0] "猎鹿弹(废料)" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -4754,7 +4754,7 @@ msgstr "一个沉重的塑料信号弹弹药。似乎是改造自霰弹枪弹药 #: lang/json/AMMO_from_json.py msgid "sling-ready Molotov cocktail" msgid_plural "sling-ready Molotov cocktails" -msgstr[0] "弹弓用燃烧瓶" +msgstr[0] "投射用燃烧瓶" #. ~ Use action menu_text for sling-ready Molotov cocktail. #. ~ Use action menu_text for Molotov cocktail. @@ -4781,7 +4781,7 @@ msgstr "" #: lang/json/AMMO_from_json.py msgid "sling-ready grenade" msgid_plural "sling-ready grenades" -msgstr[0] "弹弓用手雷" +msgstr[0] "投射用手雷" #. ~ Use action menu_text for sling-ready grenade. #: lang/json/AMMO_from_json.py @@ -4808,7 +4808,7 @@ msgid "oxyacetylene" msgid_plural "oxyacetylene" msgstr[0] "氧乙炔" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -4820,7 +4820,7 @@ msgid "fungal seeds" msgid_plural "fungal seeds" msgstr[0] "真菌孢子" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "一些真菌孢子。" @@ -5585,7 +5585,7 @@ msgid "red paint" msgid_plural "red paint" msgstr[0] "红油漆" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "一罐红色的油漆。" @@ -5595,7 +5595,7 @@ msgid "blue paint" msgid_plural "blue paint" msgstr[0] "蓝油漆" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "一罐蓝色的油漆。" @@ -5605,7 +5605,7 @@ msgid "white paint" msgid_plural "white paint" msgstr[0] "白油漆" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "一罐白色的油漆。" @@ -5615,7 +5615,7 @@ msgid "green paint" msgid_plural "green paint" msgstr[0] "绿油漆" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "一罐绿色的油漆。" @@ -5625,7 +5625,7 @@ msgid "purple paint" msgid_plural "purple paint" msgstr[0] "紫油漆" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "一罐紫色的油漆。" @@ -5635,7 +5635,7 @@ msgid "yellow paint" msgid_plural "yellow paint" msgstr[0] "黄油漆" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "一罐黄色的油漆。" @@ -5697,7 +5697,7 @@ msgid "bismuth" msgid_plural "bismuth" msgstr[0] "铋块" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "一种高密度但脆性较高的金属,常用作铅的替代品。" @@ -5707,8 +5707,8 @@ msgid "gold" msgid_plural "gold" msgstr[0] "金块" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -5725,7 +5725,7 @@ msgid "zinc" msgid_plural "zinc" msgstr[0] "锌" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -5739,7 +5739,7 @@ msgid "lead" msgid_plural "lead" msgstr[0] "铅块" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -5751,7 +5751,7 @@ msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "镁粉" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -5763,7 +5763,7 @@ msgid "silver" msgid_plural "silver" msgstr[0] "银块" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -5821,7 +5821,7 @@ msgid "tin powder" msgid_plural "tin powder" msgstr[0] "锡粉" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -5833,7 +5833,7 @@ msgid "solder" msgid_plural "solder" msgstr[0] "焊料" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -5868,7 +5868,7 @@ msgid "fuse" msgid_plural "fuse" msgstr[0] "引信" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -5917,7 +5917,7 @@ msgid "cotton scraps" msgid_plural "cotton scraps" msgstr[0] "棉布碎片" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -5930,7 +5930,7 @@ msgid "faux fur scraps" msgid_plural "faux fur scraps" msgstr[0] "人造毛皮碎片" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -5942,7 +5942,7 @@ msgid "felt scraps" msgid_plural "felt scraps" msgstr[0] "毛毡碎片" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -5955,7 +5955,7 @@ msgid "fur scraps" msgid_plural "fur scraps" msgstr[0] "毛皮碎片" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -5967,7 +5967,7 @@ msgid "Kevlar scraps" msgid_plural "Kevlar scraps" msgstr[0] "凯夫拉碎片" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -5982,7 +5982,7 @@ msgid "leather scraps" msgid_plural "leather scraps" msgstr[0] "皮革碎片" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -5994,7 +5994,7 @@ msgid "Lycra scraps" msgid_plural "Lycra scraps" msgstr[0] "氨纶碎片" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -6006,7 +6006,7 @@ msgid "neoprene scraps" msgid_plural "neoprene scraps" msgstr[0] "氯丁橡胶碎片" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -6018,7 +6018,7 @@ msgid "synthetic fabric scraps" msgid_plural "synthetic fabric scraps" msgstr[0] "化纤碎片" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -6030,7 +6030,7 @@ msgid "Nomex scraps" msgid_plural "Nomex scraps" msgstr[0] "芳纶碎片" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -6054,7 +6054,7 @@ msgid "patchwork cotton sheet" msgid_plural "patchwork cotton sheet" msgstr[0] "棉布拼布面料" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -6077,7 +6077,7 @@ msgid "patchwork faux fur clothing parts" msgid_plural "patchwork faux fur clothing parts" msgstr[0] "人造毛皮拼布" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -6100,7 +6100,7 @@ msgid "patchwork felt clothing parts" msgid_plural "patchwork felt clothing parts" msgstr[0] "毛毡拼布" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -6137,7 +6137,7 @@ msgid "patchwork Lycra clothing parts" msgid_plural "patchwork Lycra clothing parts" msgstr[0] "氨纶拼布" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -6162,7 +6162,7 @@ msgid "patchwork neoprene clothing parts" msgid_plural "patchwork neoprene clothing parts" msgstr[0] "氯丁橡胶拼布" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -6188,7 +6188,7 @@ msgid "patchwork Nomex clothing parts" msgid_plural "patchwork Nomex clothing parts" msgstr[0] "芳纶拼布" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -6211,7 +6211,7 @@ msgid "patchwork synthetic fabric clothing parts" msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "化纤拼布" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -6300,7 +6300,7 @@ msgid "titanium" msgid_plural "titanium" msgstr[0] "钛" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -6327,7 +6327,7 @@ msgid "10mm FMJ caseless" msgid_plural "10mm FMJ caseless" msgstr[0] "10mm 被甲无壳弹" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -6342,7 +6342,7 @@ msgid "10mm JHP caseless" msgid_plural "10mm JHP caseless" msgstr[0] "10mm 空尖无壳弹" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -6357,7 +6357,7 @@ msgid "25mm canister shot" msgid_plural "25mm canister shot" msgstr[0] "25mm 榴霰弹" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -6374,7 +6374,7 @@ msgid "7.50mm caseless" msgid_plural "7.50mm caseless" msgstr[0] "7.50mm 无壳弹" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -6390,7 +6390,7 @@ msgid "7.50mm RP" msgid_plural "7.50mm RP" msgstr[0] "7.50mm 减压无壳弹" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -6408,7 +6408,7 @@ msgid "electric charge" msgid_plural "electric charge" msgstr[0] "电荷" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -6420,7 +6420,7 @@ msgid "foamcrete" msgid_plural "foamcrete" msgstr[0] "泡沫水泥" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -6436,7 +6436,7 @@ msgid "solid hydrogen" msgid_plural "solid hydrogen" msgstr[0] "固态氢" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -6448,7 +6448,7 @@ msgid "lead pellets" msgid_plural "lead pellets" msgstr[0] "铅弹" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -6461,7 +6461,7 @@ msgid "domed HP pellets" msgid_plural "domed HP pellets" msgstr[0] "圆头高压铅弹" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -6474,7 +6474,7 @@ msgid "tipped HP pellets" msgid_plural "tipped HP pellets" msgstr[0] "尖头高压铅弹" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -6486,7 +6486,7 @@ msgid "alloy pellets" msgid_plural "alloy pellets" msgstr[0] "合金弹丸" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -6622,7 +6622,7 @@ msgid "pistol ammo, ball" msgid_plural "pistol ammo, ball" msgstr[0] "手枪球形弹" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6637,7 +6637,7 @@ msgid "pistol ammo, JHP" msgid_plural "pistol ammo, JHP" msgstr[0] "手枪空尖弹" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6672,7 +6672,7 @@ msgid "magnum ammo, ball" msgid_plural "magnum ammo, ball" msgstr[0] "马格南球形弹" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -6688,7 +6688,7 @@ msgid "magnum ammo, JHP" msgid_plural "magnum ammo, JHP" msgstr[0] "马格南空尖弹" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -6724,7 +6724,7 @@ msgid "tiny pistol ammo, ball" msgid_plural "tiny pistol ammo, ball" msgstr[0] "小型手枪球形弹" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -6740,7 +6740,7 @@ msgid "tiny pistol ammo, JHP" msgid_plural "tiny pistol ammo, JHP" msgstr[0] "小型手枪空尖弹" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -6776,7 +6776,7 @@ msgid "rifle ammo, ball" msgid_plural "rifle ammo, ball" msgstr[0] "步枪球形弹" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -6792,7 +6792,7 @@ msgid "rifle ammo, AP" msgid_plural "rifle ammo, AP" msgstr[0] "步枪穿甲弹" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -6828,7 +6828,7 @@ msgid "foreign rifle ammo, ball" msgid_plural "foreign rifle ammo, ball" msgstr[0] "异国步枪球形弹" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -6839,7 +6839,7 @@ msgid "railgun rifle ammo" msgid_plural "railgun rifle ammo" msgstr[0] "轨道步枪子弹" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -6851,7 +6851,7 @@ msgid "huge rifle ammo, ball" msgid_plural "huge rifle ammo, ball" msgstr[0] "大型步枪球形弹" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -6867,7 +6867,7 @@ msgid "huge rifle ammo, AP" msgid_plural "huge rifle ammo, AP" msgstr[0] "大型步枪穿甲弹" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -6892,7 +6892,7 @@ msgid "rocket, antipersonnel" msgid_plural "rocket, antipersonnel" msgstr[0] "反步兵火箭弹" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -6904,7 +6904,7 @@ msgid "rocket, multipurpose" msgid_plural "rocket, multipurpose" msgstr[0] "多用途火箭弹" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -6917,7 +6917,7 @@ msgid "rocket, smoke" msgid_plural "rocket, smoke" msgstr[0] "烟雾火箭弹" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -6940,7 +6940,7 @@ msgid "shotshell, birdshot" msgid_plural "shotshell, birdshot" msgstr[0] "猎鸟霰弹" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -6952,7 +6952,7 @@ msgid "shotshell, slug" msgid_plural "shotshell, slug" msgstr[0] "独头霰弹" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -6965,7 +6965,7 @@ msgid "shotshell, pyrotechnical" msgid_plural "shotshell, pyrotechnical" msgstr[0] "烟火霰弹" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -7009,7 +7009,7 @@ msgid "shotshell, flechette (reloaded)" msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "镖形霰弹(复装)" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -7054,7 +7054,7 @@ msgid "alumentum" msgid_plural "alumentum" msgstr[0] "源动之焰" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -7104,7 +7104,7 @@ msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "龙血" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -7129,7 +7129,7 @@ msgid "parabolan yarn" msgid_plural "parabolan yarn" msgstr[0] "群勃龙纱线" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "群勃龙毛纱;可用于编织色彩斑斓的毛线服装。" @@ -7139,7 +7139,7 @@ msgid "crystallized mana" msgid_plural "crystallized mana" msgstr[0] "魔力结晶" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -7174,7 +7174,7 @@ msgid "liquid mercury" msgid_plural "liquid mercury" msgstr[0] "液态汞" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "液态的汞元素,以其在温度计中的使用而闻名。" @@ -7190,7 +7190,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "一块秘银原材。需要被改造成锭来使用。" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -7657,7 +7657,7 @@ msgstr[0] "弹匣包(腰)" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -7673,7 +7673,7 @@ msgstr "你收好了%s。" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -7707,7 +7707,7 @@ msgid "chest rig" msgid_plural "chest rig" msgstr[0] "携行具" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -8540,36 +8540,18 @@ msgid "" msgstr "一条警察佩戴的黑色皮带。它上面有几个袋子和一个警棍的插销。" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "幸存者腰带" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "工具腰带" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "你将 %1$s 收进 %2$s" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "存入物品" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "一条自制的皮带,上边有满满的皮带和口袋,同时集成着一个小型刀鞘和一个手枪枪套。精细的做工让它又耐用穿起来又舒服。激活它来收拔武器。" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "工具腰带" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -8710,23 +8692,6 @@ msgid "" "toes." msgstr "一双橡胶套鞋,前端有个坚固且符合OSHA标准的钢制靴头包裹着你的脚趾。" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "幸存者长靴(防火)" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "一双自制的凯夫拉-芳纶长靴,能有效保护你,即使身陷火海之中。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "幸存者防火靴(XL)" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -8742,42 +8707,6 @@ msgid "pair of XL fur boots" msgid_plural "pairs of XL fur boots" msgstr[0] "毛皮靴(XL)" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "幸存者人造毛皮长靴(防寒)" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "一双自制的凯夫拉长靴,增加了保暖用的人造毛皮衬里,能提供有效的伤害防护,即使身陷死人堆之中。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "幸存者人造毛皮冬靴(XL)" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "一双自制的加大码的凯夫拉长靴,增加了保暖用的人造毛皮衬里,能提供有效的伤害防护,即使身陷死人堆之中。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "幸存者长靴(潜水)" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "一双自制的凯夫拉-氯丁橡胶长靴,能有效保护你身体干爽,即使身陷汪洋之中。" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -8788,24 +8717,6 @@ msgstr[0] "登山靴" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "一双专门为户外运动设计的坚韧而轻便的皮靴。" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "幸存者长靴(重型)" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "一双自制的凯夫拉-钢片强化型长靴,偏重防护性能而非舒适度,能提供最大的伤害防护,即使身陷死人堆之中。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "幸存者重靴(XL)" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -8822,24 +8733,6 @@ msgid "pair of XL leather armor boots" msgid_plural "pairs of XL leather armor boots" msgstr[0] "皮甲靴(XL)" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "幸存者长靴(轻型)" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "一双自制的凯夫拉-棉布靴,偏重舒适度而非防护性能,能保证你动作敏捷,即使身陷死人堆之中。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "幸存者轻靴(XL)" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -8903,19 +8796,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "作为经典钢头靴的后代产物,过去几十年中,这种现代运动鞋在工人大众中广受欢迎。" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "幸存者长靴" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "一双自制的凯夫拉-皮长靴,同时注重舒适度及防护性能,能有效保护你,即使身陷死人堆之中。" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -8946,36 +8826,6 @@ msgid "pair of XL winter boots" msgid_plural "pairs of XL winter boots" msgstr[0] "冬靴(XL)" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "幸存者长靴(防寒)" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "一双自制的凯夫拉长靴,增加了保暖用的毛皮衬里,能提供有效的伤害防护,即使身陷死人堆之中。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "幸存者冬靴(XL)" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "幸存者长靴(XL)" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "一双自制的加大码的凯夫拉-皮长靴,同时注重舒适度及防护性能,能有效保护你,即使身陷死人堆之中。" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -9801,23 +9651,6 @@ msgid "XL leather duster" msgid_plural "XL leather dusters" msgstr[0] "皮革防尘风衣(XL)" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "幸存者防尘风衣" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "一件凯夫拉强化的自制全身长防尘风衣,有许多的口袋,舒适、耐用,提供比较可观的储存空间。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "幸存者防尘风衣(XL)" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -9862,7 +9695,7 @@ msgid "army jacket" msgid_plural "army jacket" msgstr[0] "军装夹克" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "一件结实的夹克外套,外面有许多口袋。深受军人喜爱。" @@ -10022,7 +9855,7 @@ msgid "kimono" msgid_plural "kimono" msgstr[0] "和服" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -10171,18 +10004,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "一件厚实的皮革制的防尘罩衫,让你的手臂有足够的伸展自由。衣服上有很多袋子让你放进子弹或者薯片什么的。" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "幸存者无袖防尘风衣" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "一件凯夫拉强化的自制全身长防尘风衣,有许多的口袋但是没有袖子,舒适、耐用,可以装很多东西。" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -10231,18 +10052,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "一件无袖的厚实皮革风衣,让你的手臂不受束缚。它有很多口袋,提供了相当充足的储存空间。" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "幸存者无袖风衣" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "一件有镶嵌了凯夫拉片的自制无袖风衣,有许多的口袋,舒适、耐用,可以装很多东西。" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -10258,7 +10067,7 @@ msgid "thawb" msgid_plural "thawb" msgstr[0] "阿拉伯长袍" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -10306,18 +10115,6 @@ msgstr[0] "皮制风衣" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "一件厚厚的皮革风衣,缝着不少口袋,提供非常大的储存空间。" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "幸存者风衣" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "一件有镶嵌了凯夫拉片的自制风衣,有许多的口袋,舒适、耐用,可以装很多东西。" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -10548,18 +10345,6 @@ msgstr[0] "太阳镜" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "一副太阳眼镜,能够保护你免受眩光影响。" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "幸存者眼镜" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "一个自制的带深色镜片的强化眼镜。舒适且耐用,保护你不会受到环境伤害的影响。" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -10902,23 +10687,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "一对无指皮革手套。手背部位用钢片加强了防护。" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "幸存者手套(防火)" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "一双自制的的凯夫拉强化芳纶纤维防火手套,是大灾变前消防员所穿装备在世界末日后的改造品。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "幸存者防火手套(XL)" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -10934,46 +10702,6 @@ msgid "pair of XL fur gloves" msgid_plural "pairs of XL fur gloves" msgstr[0] "毛皮手套(XL)" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "幸存者人造毛皮手套(防寒)" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "一双自制的凯夫拉强化手套。内部有人造毛皮内衬。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "幸存者人造毛皮冬季手套(XL)" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "一双自制的加大码的凯夫拉强化手套。内部有人造毛皮内衬。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "幸存者手套(重型)" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "一双自制的凯夫拉-钢片强化手套。为双手提供最大的伤害防护。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "幸存者重手套(XL)" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -11030,57 +10758,6 @@ msgid "pair of XL glove liners" msgid_plural "pairs of XL glove liners" msgstr[0] "衬里手套(XL)" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "幸存者手套(轻型)" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "一双自制的凯夫拉强化布手套。侧重于舒适度。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "幸存者轻手套(XL)" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "无指幸存者手套(轻型)" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "一双自制的凯夫拉强化无指布手套。侧重于舒适度。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "无指幸存者手套(轻型XL)" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "无指幸存者手套" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "一双自制的凯夫拉强化无指皮革手套。同时注重舒适度与防护性能。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "幸存者露指手套(XL)" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -11117,18 +10794,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "一双橡胶手套,常用在需要接触腐蚀性物质的场合。" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "幸存者手套" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "一双自制的凯夫拉强化皮革手套。同时注重舒适度与防护性能。" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -11240,34 +10905,6 @@ msgid "" "mischief." msgstr "一条长长的绑在手部、提供稍许防护与其他用途的绑手羊毛织条。" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "幸存者手套(防寒)" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "一双自制的凯夫拉强化手套。内部有毛皮内衬。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "幸存者冬季手套(XL)" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "幸存者手套(XL)" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "一双自制的加大码的凯夫拉强化皮革手套。同时注重舒适度与防护性能。" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -11970,7 +11607,7 @@ msgid "kabuto" msgid_plural "kabuto" msgstr[0] "日式兜冑" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -12076,30 +11713,6 @@ msgid "" " stereotypical horned helm." msgstr "一顶中世纪早期的头盔,有保护鼻子的突起,保护脸部同时又不遮挡视线。正宗的霜巨人装备,而不是更老套的带角头盔。" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "游牧头巾" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "一条自制的头巾,有着帽舌和遮阳板保护眼睛,专为长途旅行设计。" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "游牧头巾(XL)" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "一条自制的头巾,有着帽舌和遮阳板保护眼睛,专为长途旅行设计。这套是为某个大个子旅行者做的。" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -12153,30 +11766,6 @@ msgid "" "average." msgstr "一顶宽边头盔,看起来有点像一顶金属牛仔帽。可惜的是,这并无助于保护你的眼睛免受刺眼阳光的惩罚。这一顶头盔是加大码的。" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "拾荒者头巾" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "一条耐用的防护头巾,一直延伸到脖子,内部附有过滤口罩和护目镜,供你在危险环境下探索时使用。" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "拾荒者头巾(XL)" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "一条耐用的防护头巾,一直延伸到脖子,内部附有过滤口罩和护目镜,供大个子的你在危险环境下探索时使用。" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -12362,36 +11951,6 @@ msgid "" "holster/draw a gun." msgstr "一条弹性皮带,可以在紧贴身体的地方隐藏一把非常小的手枪,只有专业人士才能使用自如。激活它来收拔枪械。" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "幸存者背带" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" -"一个自制的轻型背带,缝了不少口袋的同时还有一个集成战术吊索用于小型步枪及此类武器。值得信赖的手工技术将它打造得至为舒适耐用。激活它来收拔武器。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "幸存者背带(XL)" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" -"一个自制的轻型背带,缝了不少口袋的同时还有一个集成战术吊索用于小型步枪及此类武器。值得信赖的手工技术将它打造得至为舒适耐用,适合大个子使用。激活它来收拔武器。" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -12437,71 +11996,6 @@ msgid "" "in size XL." msgstr "一条能舒适地戴在头盔之下的大码定制链甲头巾。" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "幸存者兜帽(防火)" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "一件自制的凯夫拉-芳纶纤维防火兜帽,结实又耐用。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "幸存者防火兜帽(XL)" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "一件自制的凯夫拉-芳纶纤维防火兜帽,非常结实耐用。产自火巨人的国度。" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "幸存者兜帽(轻型)" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "一件自制的凯夫拉-布兜帽,轻巧又耐用。" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "幸存者轻型兜帽(XL)" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "一件自制的加大码的凯夫拉-布兜帽,轻巧又耐用。" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "幸存者人造毛皮兜帽(防寒)" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "一件自制的凯夫拉-布兜帽。内部有保暖用的人造毛皮内衬。" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "幸存者人造毛皮冬季兜帽(XL)" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "一件自制的加大码的凯夫拉-布兜帽。内部有保暖用的人造毛皮内衬。" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -12512,52 +12006,6 @@ msgstr[0] "雨帽" msgid "A waterproof hood made to be worn in bad weather." msgstr "一件天气不好时穿戴的防水兜帽。" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "幸存者兜帽" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "一件自制的凯夫拉-皮革兜帽,同时注重舒适度与防护性能。" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "幸存者兜帽(防寒)" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "一件自制的凯夫拉-布兜帽。内部有保暖用的毛皮内衬。" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "幸存者冬季兜帽(XL)" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "一件自制的加大码的凯夫拉-布兜帽。内部有保暖用的毛皮内衬。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "幸存者兜帽(XL)" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "一件自制的加大码的凯夫拉-皮革兜帽,同时注重舒适度与防护性能。" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -12936,9 +12384,9 @@ msgid "garnet and gold cufflinks" msgid_plural "garnet and gold cufflinks" msgstr[0] "石榴石金袖扣" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "镶嵌石榴石的袖扣。" @@ -12948,9 +12396,9 @@ msgid "diamond and gold cufflinks" msgid_plural "diamond and gold cufflinks" msgstr[0] "钻石金袖扣" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "镶嵌钻石的袖扣。" @@ -12960,9 +12408,9 @@ msgid "amethyst and gold cufflinks" msgid_plural "amethyst and gold cufflinks" msgstr[0] "紫水晶金袖扣" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "镶嵌紫水晶的袖扣。" @@ -12972,9 +12420,9 @@ msgid "aquamarine and gold cufflinks" msgid_plural "aquamarine and gold cufflinks" msgstr[0] "海蓝宝石金袖扣" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "镶嵌海蓝宝石的袖扣。" @@ -12984,9 +12432,9 @@ msgid "emerald and gold cufflinks" msgid_plural "emerald and gold cufflinks" msgstr[0] "祖母绿金袖扣" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "镶嵌祖母绿的袖扣。" @@ -12996,9 +12444,9 @@ msgid "alexandrite and gold cufflinks" msgid_plural "alexandrite and gold cufflinks" msgstr[0] "紫翠玉金袖扣" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "镶嵌紫翠玉的袖扣。" @@ -13008,9 +12456,9 @@ msgid "ruby and gold cufflinks" msgid_plural "ruby and gold cufflinks" msgstr[0] "红宝石金袖扣" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "镶嵌红宝石的袖扣。" @@ -13020,9 +12468,9 @@ msgid "peridot and gold cufflinks" msgid_plural "peridot and gold cufflinks" msgstr[0] "橄榄石金袖扣" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "镶嵌橄榄石的袖扣。" @@ -13032,9 +12480,9 @@ msgid "sapphire and gold cufflinks" msgid_plural "sapphire and gold cufflinks" msgstr[0] "蓝宝石金袖扣" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "镶嵌蓝宝石的袖扣。" @@ -13044,9 +12492,9 @@ msgid "tourmaline and gold cufflinks" msgid_plural "tourmaline and gold cufflinks" msgstr[0] "电气石金袖扣" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "镶嵌电气石的袖扣。" @@ -13056,9 +12504,9 @@ msgid "citrine and gold cufflinks" msgid_plural "citrine and gold cufflinks" msgstr[0] "黄水晶金袖扣" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "镶嵌黄水晶的袖扣。" @@ -13068,9 +12516,9 @@ msgid "blue topaz and gold cufflinks" msgid_plural "blue topaz and gold cufflinks" msgstr[0] "蓝黄玉金袖扣" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "镶嵌蓝黄玉的袖扣。" @@ -13080,9 +12528,9 @@ msgid "opal and gold cufflinks" msgid_plural "opal and gold cufflinks" msgstr[0] "蛋白石金袖扣" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "镶嵌蛋白石的袖扣。" @@ -13092,9 +12540,9 @@ msgid "pearl and gold cufflinks" msgid_plural "pearl and gold cufflinks" msgstr[0] "珍珠金袖扣" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "镶嵌珍珠的袖扣。" @@ -16385,7 +15833,7 @@ msgid "turnout trousers" msgid_plural "turnout trousers" msgstr[0] "消防长裤" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -16422,7 +15870,7 @@ msgid "leather chaps" msgid_plural "leather chaps" msgstr[0] "皮护腿" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -16434,7 +15882,7 @@ msgid "chainsaw chaps" msgid_plural "chainsaw chaps" msgstr[0] "链锯防护裹腿" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -16449,7 +15897,7 @@ msgid "fencing pants" msgid_plural "fencing pants" msgstr[0] "击剑裤" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "一条内有导电金属网加固的,防止击剑等运动时发生意外的击剑防护裤。" @@ -16610,30 +16058,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "一套用轮胎片做成的特大号护腿,碎片之间用小绳子固定。这些松垮的小片片能提供不错的防护,但是还不够完美。" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "轻型幸存者工装长裤" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "一件轻巧的工作裤,使用了凯夫拉装甲加以补强。可以容纳大量物品,耐用且有一定防水能力。" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "幸存者轻型工装长裤(XL)" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "一件轻巧的工作裤,使用了凯夫拉装甲加以补强。可以容纳大量物品,耐用且有一定防水能力,比一般的工作裤要大。" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -16644,36 +16068,12 @@ msgstr[0] "摩托车手裤子" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "一件供摩托车手和越野自行车手使用的长裤,凯夫拉提供了出色的防护能力。" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "幸存者工装长裤" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "一件镶嵌有凯夫拉片的长裤,有许多的口袋,非常舒适、耐用、易于穿戴。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "幸存者工装长裤(XL)" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "一件镶嵌有凯夫拉片的大码长裤,有许多的口袋,非常舒适、耐用、易于穿戴。" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "拆弹防护裤" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -16685,7 +16085,7 @@ msgid "light EOD trousers" msgid_plural "light EOD trousers" msgstr[0] "轻型拆弹防护裤" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -16710,7 +16110,7 @@ msgid "basketball shorts" msgid_plural "basketball shorts" msgstr[0] "棒球短裤" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "一条棒球短裤,多为棒球运动员比赛或训练时所穿。舒适且轻便。" @@ -16720,7 +16120,7 @@ msgid "breeches" msgid_plural "breeches" msgstr[0] "马术长裤" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -16742,7 +16142,7 @@ msgid "hot pants" msgid_plural "hot pants" msgstr[0] "热裤" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "" @@ -16754,7 +16154,7 @@ msgid "fur hot pants" msgid_plural "fur hot pants" msgstr[0] "毛皮热裤" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "一件简单的毛皮短裤。" @@ -16764,7 +16164,7 @@ msgid "leather hot pants" msgid_plural "leather hot pants" msgstr[0] "皮革热裤" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "一件简单的皮革短裤。" @@ -16774,7 +16174,7 @@ msgid "jeans" msgid_plural "jeans" msgstr[0] "牛仔裤" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "" @@ -16808,7 +16208,7 @@ msgid "red jeans" msgid_plural "red jeans" msgstr[0] "红色牛仔裤" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "一条苹果红的紧身牛仔裤,有两个口袋。" @@ -16836,7 +16236,7 @@ msgid "leggings" msgid_plural "leggings" msgstr[0] "尼龙绑腿" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -16914,7 +16314,7 @@ msgid "pants" msgid_plural "pants" msgstr[0] "长裤" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "一条卡其色的长裤,比牛仔裤稍微保暖些。" @@ -16924,15 +16324,15 @@ msgid "army pants" msgid_plural "army pants" msgstr[0] "军装长裤" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "一条结实的长裤,外面有许多口袋。深受军人喜爱。" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "一条结实的军用长裤。这条上面印着灰色、绿色和棕褐色的迷彩。这种迷彩图案的特点是没有黑色。" #: lang/json/ARMOR_from_json.py @@ -16964,7 +16364,7 @@ msgid "cargo pants" msgid_plural "cargo pants" msgstr[0] "工装长裤" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "" @@ -16976,7 +16376,7 @@ msgid "checkered pants" msgid_plural "checkered pants" msgstr[0] "花格裤" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "一条嬉皮士们喜欢穿的花格喇叭裤。也许能够当作应急的国际象棋棋盘使用。" @@ -16986,7 +16386,7 @@ msgid "fur pants" msgid_plural "fur pants" msgstr[0] "毛皮长裤" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "一条带有毛皮内衬的厚实裤子。非常保暖。" @@ -16996,7 +16396,7 @@ msgid "faux fur pants" msgid_plural "faux fur pants" msgstr[0] "人造毛皮长裤" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "一条棉质长裤,内衬着十分保暖的人造毛皮。" @@ -17006,7 +16406,7 @@ msgid "leather pants" msgid_plural "leather pants" msgstr[0] "皮裤" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -17018,7 +16418,7 @@ msgid "ski pants" msgid_plural "ski pants" msgstr[0] "滑雪裤" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "一条适合高山滑雪时使用的保暖长裤。" @@ -17028,7 +16428,7 @@ msgid "police breeches" msgid_plural "police breeches" msgstr[0] "警用马裤" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -17040,7 +16440,7 @@ msgid "mail carrier shorts" msgid_plural "mail carrier shorts" msgstr[0] "邮差短裤" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "一条深蓝色短裤,通常是邮政人员的工作服。" @@ -17050,7 +16450,7 @@ msgid "shorts" msgid_plural "shorts" msgstr[0] "短裤" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "一条卡其色的短裤。" @@ -17060,7 +16460,7 @@ msgid "cargo shorts" msgid_plural "cargo shorts" msgstr[0] "工装短裤" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "" @@ -17071,7 +16471,7 @@ msgid "denim shorts" msgid_plural "denim shorts" msgstr[0] "牛仔短裤" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "一条牛仔短裤。" @@ -17128,7 +16528,7 @@ msgid "striped pants" msgid_plural "striped pants" msgstr[0] "条纹裤" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "一条带有水平黑白相间条纹的裤子。" @@ -17157,7 +16557,7 @@ msgid "army winter pants" msgid_plural "army winter pants" msgstr[0] "防寒军装长裤" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -18236,54 +17636,6 @@ msgid "" " around is not exactly comfortable." msgstr "一个带滚轮的中型旅行箱,主要用于旅行时存放衣物和杂物,提供了充足的储存空间,但拉起来很累赘。" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "幸存者行李包" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "量身打造的沉重的编织袋,额外缝了很多口袋上去。值得信赖的手工技术将它打造得至为舒适耐用。" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "幸存者背包" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "一件自制的背包,经久耐用并且被经过精心制造,使得它能够装下尽可能多的物品。" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "幸存者帆布包" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "一件自制的重型背包,经久耐用并且被经过精心制造,使得它能够装下尽可能多的物品。" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "幸存者跑步包" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "一个自制的轻便的慢跑背包。经久耐用,细心的做工使得它能够装下尽可能多的物品。" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -18687,31 +18039,6 @@ msgid "XL plate armor" msgid_plural "XL plate armors" msgstr[0] "板甲(XL)" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "游牧装" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "一套由大灾变前的衣物制造的自制服装,有大量的储存空间,专为长途旅行设计。" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "轻型游牧装" - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "一套由大灾变前的衣物制造的轻便自制服装,有大量的储存空间,专为夏季长途旅行设计。相较于普通游牧装,储存空间和护甲较低。" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -18752,9 +18079,9 @@ msgstr[0] "防暴装甲" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." -msgstr "一件由防暴警察穿着的黑色盔甲,那时候还只不过是场暴乱。它前面印着\"警察\"两个大字。" +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." +msgstr "一件由防暴警察穿着的黑色塑料盔甲,那时候还只不过是场暴乱。它前面印着\"警察\"两个大字。" #: lang/json/ARMOR_from_json.py msgid "O-yoroi" @@ -18768,20 +18095,6 @@ msgstr "" "一套日本武士盔甲,华丽、沉重,最早起源于日本平安中期,防护性能出色,区别于武士战斗时普遍装备的胴丸,大铠更倾向于装饰作用。\n" "\"武士の魂。\"" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "拾荒者套装" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "" -"一套由大灾变前的衣物制成、拥有大量储存空间的耐用自制服装。\n" -"\"穿上它开开心心的捡破烂。\"" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -18906,50 +18219,6 @@ msgid "XL entry suit" msgid_plural "XL entry suits" msgstr[0] "避火服(XL)" -#: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "幸存者套装(防火)" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "一套自制的重型复合防护服,由防弹背心和强化芳纶纤维防火服组合而成,可以提供火焰、环境和伤害防护。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "幸存者防火套装(XL)" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "幸存者套装(防寒)" - -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "一件自制的人造毛皮防寒重型复合防护服,由防弹衣及强化保暖的连身皮衣缝制而成,保暖的同时可以提供环境和伤害防护。" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "幸存者冬季套装(XL)" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." -msgstr "一件自制的大码人造毛皮防寒重型复合防护服,由防弹衣及强化保暖的连身皮衣缝制而成,保暖的同时可以提供环境和伤害防护。" - #: lang/json/ARMOR_from_json.py msgid "gambeson" msgid_plural "gambesons" @@ -18962,11 +18231,29 @@ msgid "" "other armor. Or worn on its own, if you can't afford proper armor." msgstr "一件填塞了棉花的、可穿在链甲或其他装甲底下的厚针织外套,如果你负担不起正式的铠甲,也可以只穿这一件。" +#: lang/json/ARMOR_from_json.py +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" +msgstr[0] "凯夫拉软铠" + +#. ~ Description for kevlar gambeson +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." +msgstr "一件填塞了棉花的、可穿在链甲或其他装甲底下的厚针织外套。这件软铠增加了凯夫拉层,能提供更好的防护。" + #: lang/json/ARMOR_from_json.py msgid "XL gambeson" msgid_plural "XL gambesons" msgstr[0] "软铠(XL)" +#: lang/json/ARMOR_from_json.py +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" +msgstr[0] "凯夫拉软铠(XL)" + #: lang/json/ARMOR_from_json.py msgid "hazmat suit" msgid_plural "hazmat suits" @@ -18981,37 +18268,6 @@ msgid "" "full protection." msgstr "一套不透气的、十分累赘而且容易损坏的危险物处理全身防护服。穿上它能够完全防护环境中的辐射。需要额外配套的防化面具才能提供完整三防。" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "幸存者套装(重型)" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "一件自制的重型复合防护服,由强化防弹衣及经过金属板强化的连身皮衣缝制而成,可以提供环境和伤害防护。" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "幸存者套装(轻型)" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "一件自制的轻型复合防护服,由防弹背心和强化紧身衣组合而成,可以提供环境和伤害防护。" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "幸存者套装(轻型XL)" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -19076,18 +18332,6 @@ msgstr "" "一套笔挺的全身棉制商务正装西服。\n" "\"在末日来临之时也要有绅士风范。\"" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "幸存者套装" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "一件自制的复合防护服,由防弹衣及强化连身皮衣缝制而成,可以提供环境和伤害防护。" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -19096,9 +18340,9 @@ msgstr[0] "SWAT装甲" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." -msgstr "一件黑色的战术防弹护甲,带有许多战术口袋,印有SWAT字样。" +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." +msgstr "一套覆盖胸部、手臂和腿部重要部位的黑色盔甲。它的背面印着\"SWAT\"字样。" #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -19112,40 +18356,6 @@ msgid "" "Light and very comfortable." msgstr "这件厚皮外套可以在骑摩托车的时候保护你。轻巧而舒适。" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "一件自制的防寒重型复合防护服,由防弹衣及强化保暖的连身皮衣缝制而成,保暖的同时可以提供环境和伤害防护。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "幸存者套装(XL)" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "一件自制的复合防护服的加大版,由防弹衣及强化连身皮衣缝制而成,可以提供环境和伤害防护。" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "幸存者套装(重型XL)" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "一件自制的大号重型复合防护服,由强化防弹衣及经过金属板强化的连身皮衣缝制而成,可以提供环境和伤害防护。" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -19161,7 +18371,7 @@ msgstr "一件深绿色的美军飞行服。上面绣着各种徽章。" #: lang/json/ARMOR_from_json.py msgid "dress uniform" msgid_plural "dress uniforms" -msgstr[0] "" +msgstr[0] "军礼服" #. ~ Description for dress uniform #: lang/json/ARMOR_from_json.py @@ -19169,7 +18379,7 @@ msgid "" "A military officer's dress uniform from before the Cataclysm, complete with " "rank and ribbons. Just looking at it gives you an air of authority. " "Perhaps not the most practical military wear, but a very stylish option." -msgstr "" +msgstr "大灾变前的军官制式礼服,配有军衔和缎带。只要看看它,你就会有一种权威感。也许不是最实用的军装,但却是非常时尚的选择。" #: lang/json/ARMOR_from_json.py msgid "bikini bottom" @@ -19211,42 +18421,6 @@ msgstr[0] "潜水服兜帽" msgid "A neoprene hood, commonly worn by divers." msgstr "一个橡胶的兜帽,通常是潜水员穿的。" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "幸存者兜帽(潜水)" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "一件自制的凯夫拉-氯丁橡胶复合兜帽,非常结实、耐用。" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "幸存者套装(潜水)" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "一件自制的轻型复合防护服,由防弹背心和强化橡胶潜水服组合而成,可以提供环境和伤害防护。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "幸存者手套(潜水)" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "一双自制的凯夫拉-氯丁橡胶复合手套,更易于穿戴,即使在极端情况下也能提供最大防护。" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -19345,7 +18519,7 @@ msgid "lorica segmentata" msgid_plural "lorica segmentata" msgstr[0] "罗马片甲" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -19499,7 +18673,7 @@ msgid "tire leather armor" msgid_plural "tire leather armor" msgstr[0] "轮胎皮甲" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -19557,23 +18731,6 @@ msgstr "" "一件轻便、贴身的凯夫拉材质防弹背心。\n" "\"反派一枪杀不死卧底警探的头号元凶。\"" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "轻型幸存者护甲" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "一件轻巧、量身订造的护甲,由凯夫拉和坚韧的纤维制成,有一定防水能力。" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "幸存者护甲(轻型XL)" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -19829,7 +18986,7 @@ msgid "leotard" msgid_plural "leotard" msgstr[0] "紧身连衣裤" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -19912,7 +19069,7 @@ msgid "French maid clothes" msgid_plural "French maid clothes" msgstr[0] "法式女仆装" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "一套法式女仆装,主色调为蓝色,搭配有一个镶褶边的白色围裙。" @@ -20191,7 +19348,7 @@ msgid "boxer briefs" msgid_plural "boxer briefs" msgstr[0] "四角内裤" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "一件同比拳击短裤更加适合当内裤穿的拳击手用短内裤。" @@ -20201,7 +19358,7 @@ msgid "XL boxer briefs" msgid_plural "XL boxer briefs" msgstr[0] "四角内裤(XL)" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "一条能够穿在各种变异肢体上的四角内裤。" @@ -20211,7 +19368,7 @@ msgid "boxer shorts" msgid_plural "boxer shorts" msgstr[0] "四角短裤" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -20222,7 +19379,7 @@ msgid "XL boxer shorts" msgid_plural "XL boxer shorts" msgstr[0] "四角短裤(XL)" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -20234,7 +19391,7 @@ msgid "boy shorts" msgid_plural "boy shorts" msgstr[0] "女式平角内裤" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -20245,7 +19402,7 @@ msgid "XL boy shorts" msgid_plural "XL boy shorts" msgstr[0] "女式平角内裤(XL)" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -20268,7 +19425,7 @@ msgid "briefs" msgid_plural "briefs" msgstr[0] "男用内裤" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "一条男性普遍穿着的舒适三角内裤。" @@ -20414,7 +19571,7 @@ msgid "panties" msgid_plural "panties" msgstr[0] "女用内裤" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -20473,7 +19630,7 @@ msgid "tights" msgid_plural "tights" msgstr[0] "紧身裤" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -20498,7 +19655,7 @@ msgid "compression shorts" msgid_plural "compression shorts" msgstr[0] "塑身短裤" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -20531,6 +19688,869 @@ msgid "" msgstr "" "一件紧身的氨纶全身服,看上去像是由水手领的紧身连衣裤和长裤合体而成。通常由体操运动员,舞者和马戏演员穿着,全身紧身衣提供全面覆盖而又不影响灵活性。" +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "游牧装" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "一套由大灾变前的衣物制造的自制服装,有大量的储存空间,专为长途旅行设计。" + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "轻型游牧装" + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "一套由大灾变前的衣物制造的轻便自制服装,有大量的储存空间,专为夏季长途旅行设计。相较于普通游牧装,储存空间和护甲较低。" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "拾荒者套装" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "" +"一套由大灾变前的衣物制成、拥有大量储存空间的耐用自制服装。\n" +"\"穿上它开开心心的捡破烂。\"" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "幸存者套装(轻型)" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "一件自制的轻型复合防护服,由防弹背心和强化紧身衣组合而成,可以提供环境和伤害防护。" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "幸存者套装(轻型XL)" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "幸存者套装" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "一件自制的复合防护服,由防弹衣及强化连身皮衣缝制而成,可以提供环境和伤害防护。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "幸存者套装(XL)" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "一件自制的复合防护服的加大版,由防弹衣及强化连身皮衣缝制而成,可以提供环境和伤害防护。" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "幸存者套装(防寒)" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "一件自制的防寒重型复合防护服,由防弹衣及强化保暖的连身皮衣缝制而成,保暖的同时可以提供环境和伤害防护。" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "幸存者冬季套装(XL)" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "一件自制的人造毛皮防寒重型复合防护服,由防弹衣及强化保暖的连身皮衣缝制而成,保暖的同时可以提供环境和伤害防护。" + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "一件自制的大码人造毛皮防寒重型复合防护服,由防弹衣及强化保暖的连身皮衣缝制而成,保暖的同时可以提供环境和伤害防护。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "幸存者套装(潜水)" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "一件自制的轻型复合防护服,由防弹背心和强化橡胶潜水服组合而成,可以提供环境和伤害防护。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "幸存者长靴(轻型)" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "一双自制的凯夫拉-棉布靴,偏重舒适度而非防护性能,能保证你动作敏捷,即使身陷死人堆之中。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "幸存者轻靴(XL)" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "幸存者长靴" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "一双自制的凯夫拉-皮长靴,同时注重舒适度及防护性能,能有效保护你,即使身陷死人堆之中。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "幸存者长靴(XL)" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "一双自制的加大码的凯夫拉-皮长靴,同时注重舒适度及防护性能,能有效保护你,即使身陷死人堆之中。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "幸存者人造毛皮长靴(防寒)" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "一双自制的凯夫拉长靴,增加了保暖用的人造毛皮衬里,能提供有效的伤害防护,即使身陷死人堆之中。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "幸存者人造毛皮冬靴(XL)" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "一双自制的加大码的凯夫拉长靴,增加了保暖用的人造毛皮衬里,能提供有效的伤害防护,即使身陷死人堆之中。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "幸存者长靴(防寒)" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "一双自制的凯夫拉长靴,增加了保暖用的毛皮衬里,能提供有效的伤害防护,即使身陷死人堆之中。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "幸存者冬靴(XL)" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "幸存者长靴(潜水)" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "一双自制的凯夫拉-氯丁橡胶长靴,能有效保护你身体干爽,即使身陷汪洋之中。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "幸存者手套(轻型)" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "一双自制的凯夫拉强化布手套。侧重于舒适度。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "幸存者轻手套(XL)" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "无指幸存者手套(轻型)" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "一双自制的凯夫拉强化无指布手套。侧重于舒适度。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "无指幸存者手套(轻型XL)" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "无指幸存者手套" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "一双自制的凯夫拉强化无指皮革手套。同时注重舒适度与防护性能。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "幸存者露指手套(XL)" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "幸存者手套" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "一双自制的凯夫拉强化皮革手套。同时注重舒适度与防护性能。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "幸存者手套(XL)" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "一双自制的加大码的凯夫拉强化皮革手套。同时注重舒适度与防护性能。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "幸存者手套(防寒)" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "一双自制的凯夫拉强化手套。内部有毛皮内衬。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "幸存者冬季手套(XL)" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "幸存者人造毛皮手套(防寒)" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "一双自制的凯夫拉强化手套。内部有人造毛皮内衬。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "幸存者人造毛皮冬季手套(XL)" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "一双自制的加大码的凯夫拉强化手套。内部有人造毛皮内衬。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "幸存者手套(潜水)" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "一双自制的凯夫拉-氯丁橡胶复合手套,更易于穿戴,即使在极端情况下也能提供最大防护。" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "游牧头巾" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "一条自制的头巾,有着帽舌和遮阳板保护眼睛,专为长途旅行设计。" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "游牧头巾(XL)" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "一条自制的头巾,有着帽舌和遮阳板保护眼睛,专为长途旅行设计。这套是为某个大个子旅行者做的。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "幸存者兜帽" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "一件自制的凯夫拉-皮革兜帽,同时注重舒适度与防护性能。" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "幸存者兜帽(防寒)" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "一件自制的凯夫拉-布兜帽。内部有保暖用的毛皮内衬。" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "幸存者冬季兜帽(XL)" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "一件自制的加大码的凯夫拉-布兜帽。内部有保暖用的毛皮内衬。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "幸存者兜帽(XL)" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "一件自制的加大码的凯夫拉-皮革兜帽,同时注重舒适度与防护性能。" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "幸存者兜帽(轻型)" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "一件自制的凯夫拉-布兜帽,轻巧又耐用。" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "幸存者轻型兜帽(XL)" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "一件自制的加大码的凯夫拉-布兜帽,轻巧又耐用。" + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "幸存者人造毛皮兜帽(防寒)" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "一件自制的凯夫拉-布兜帽。内部有保暖用的人造毛皮内衬。" + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "幸存者人造毛皮冬季兜帽(XL)" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "一件自制的加大码的凯夫拉-布兜帽。内部有保暖用的人造毛皮内衬。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "幸存者兜帽(潜水)" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "一件自制的凯夫拉-氯丁橡胶复合兜帽,非常结实、耐用。" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "拾荒者头巾" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "一条耐用的防护头巾,一直延伸到脖子,内部附有过滤口罩和护目镜,供你在危险环境下探索时使用。" + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "拾荒者头巾(XL)" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "一条耐用的防护头巾,一直延伸到脖子,内部附有过滤口罩和护目镜,供大个子的你在危险环境下探索时使用。" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "轻型幸存者工装长裤" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "一件轻巧的工作裤,使用了凯夫拉装甲加以补强。可以容纳大量物品,耐用且有一定防水能力。" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "幸存者轻型工装长裤(XL)" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "一件轻巧的工作裤,使用了凯夫拉装甲加以补强。可以容纳大量物品,耐用且有一定防水能力,比一般的工作裤要大。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "幸存者工装长裤" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "一件镶嵌有凯夫拉片的长裤,有许多的口袋,非常舒适、耐用、易于穿戴。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "幸存者工装长裤(XL)" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "一件镶嵌有凯夫拉片的大码长裤,有许多的口袋,非常舒适、耐用、易于穿戴。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "幸存者防尘风衣" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "一件凯夫拉强化的自制全身长防尘风衣,有许多的口袋,舒适、耐用,提供比较可观的储存空间。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "幸存者防尘风衣(XL)" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "幸存者无袖防尘风衣" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "一件凯夫拉强化的自制全身长防尘风衣,有许多的口袋但是没有袖子,舒适、耐用,可以装很多东西。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "幸存者风衣" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "一件有镶嵌了凯夫拉片的自制风衣,有许多的口袋,舒适、耐用,可以装很多东西。" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "幸存者无袖风衣" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "一件有镶嵌了凯夫拉片的自制无袖风衣,有许多的口袋,舒适、耐用,可以装很多东西。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "幸存者行李包" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "量身打造的沉重的编织袋,额外缝了很多口袋上去。值得信赖的手工技术将它打造得至为舒适耐用。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "幸存者背包" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "一件自制的背包,经久耐用并且被经过精心制造,使得它能够装下尽可能多的物品。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "幸存者帆布包" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "一件自制的重型背包,经久耐用并且被经过精心制造,使得它能够装下尽可能多的物品。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "幸存者跑步包" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "一个自制的轻便的慢跑背包。经久耐用,细心的做工使得它能够装下尽可能多的物品。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "幸存者长靴(防火)" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "一双自制的凯夫拉-芳纶长靴,能有效保护你,即使身陷火海之中。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "幸存者防火靴(XL)" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "幸存者长靴(重型)" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "一双自制的凯夫拉-钢片强化型长靴,偏重防护性能而非舒适度,能提供最大的伤害防护,即使身陷死人堆之中。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "幸存者重靴(XL)" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "幸存者手套(重型)" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "一双自制的凯夫拉-钢片强化手套。为双手提供最大的伤害防护。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "幸存者重手套(XL)" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "幸存者手套(防火)" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "一双自制的的凯夫拉强化芳纶纤维防火手套,是大灾变前消防员所穿装备在世界末日后的改造品。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "幸存者防火手套(XL)" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "幸存者兜帽(防火)" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "一件自制的凯夫拉-芳纶纤维防火兜帽,结实又耐用。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "幸存者防火兜帽(XL)" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "一件自制的凯夫拉-芳纶纤维防火兜帽,非常结实耐用。产自火巨人的国度。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "幸存者套装(防火)" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "一套自制的重型复合防护服,由防弹背心和强化芳纶纤维防火服组合而成,可以提供火焰、环境和伤害防护。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "幸存者防火套装(XL)" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "幸存者套装(重型)" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "一件自制的重型复合防护服,由强化防弹衣及经过金属板强化的连身皮衣缝制而成,可以提供环境和伤害防护。" + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "幸存者套装(重型XL)" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "一件自制的大号重型复合防护服,由强化防弹衣及经过金属板强化的连身皮衣缝制而成,可以提供环境和伤害防护。" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "轻型幸存者护甲" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "一件轻巧、量身订造的护甲,由凯夫拉和坚韧的纤维制成,有一定防水能力。" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "幸存者护甲(轻型XL)" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "幸存者腰带" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "存入物品" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" +"一条自制的皮带,上边有满满的皮带和口袋,同时集成着一个小型刀鞘、一个手枪枪套和一个工具挂钩。精细的做工让它又耐用穿起来又舒服。激活它来收拔武器。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "幸存者眼镜" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "一个自制的带深色镜片的强化眼镜。舒适且耐用,保护你不会受到环境伤害的影响。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "幸存者背带" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" +"一个自制的轻型背带,缝了不少口袋的同时还有一个集成战术吊索用于小型步枪及此类武器。值得信赖的手工技术将它打造得至为舒适耐用。激活它来收拔武器。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "幸存者背带(XL)" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" +"一个自制的轻型背带,缝了不少口袋的同时还有一个集成战术吊索用于小型步枪及此类武器。值得信赖的手工技术将它打造得至为舒适耐用,适合大个子使用。激活它来收拔武器。" + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -20647,7 +20667,7 @@ msgid "impact knuckles" msgid_plural "impact knuckles" msgstr[0] "撞击指虎" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -20659,7 +20679,7 @@ msgid "skewer knuckles" msgid_plural "skewer knuckles" msgstr[0] "尖刺指虎" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -20811,7 +20831,7 @@ msgid "pair of XL combat boots" msgid_plural "pair of XL combat boots" msgstr[0] "战斗靴(XL)" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -20823,7 +20843,7 @@ msgid "pair of XL tactical gloves" msgid_plural "pair of XL tactical gloves" msgstr[0] "战术手套(XL)" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -20835,7 +20855,7 @@ msgid "pair of Killophant gloves" msgid_plural "pair of Killophant gloves" msgstr[0] "“杀人象”部队战术手套" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -21083,7 +21103,7 @@ msgid "psychrophile handling gloves" msgid_plural "psychrophile handling gloves" msgstr[0] "嗜冷生物处理手套" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -21229,18 +21249,6 @@ msgid "" " ridiculously heavy." msgstr "用氯丁橡胶模压与超合金材料制成的绝缘护臂。非常坚固,可以很好防护所受到的攻击。当然,也重的出奇。" -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "C.R.I.T 战术腰带" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "C.R.I.T标配的腰带。坚固耐用并且集成了一个小型刀鞘。" - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -21365,7 +21373,7 @@ msgid "CRIT trousers" msgid_plural "CRIT trousers" msgstr[0] "C.R.I.T 长裤" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -21377,7 +21385,7 @@ msgid "CRIT pants" msgid_plural "CRIT pants" msgstr[0] "C.R.I.T 正装长裤" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -21417,6 +21425,11 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "一对防水手套。这款手套既贴身又光滑,由棉制成,内衬氯丁橡胶既能保暖又能防滑。" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "C.R.I.T 战术腰带" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -21558,7 +21571,7 @@ msgid "Force Shield" msgid_plural "Force Shield" msgstr[0] "力场护盾" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -22008,7 +22021,7 @@ msgid "freerunner's boots" msgid_plural "freerunner's boots" msgstr[0] "自由跑者靴" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -22076,7 +22089,7 @@ msgid "enchanted parabolan wool blouse" msgid_plural "enchanted parabolan wool blouse" msgstr[0] "附魔群勃龙毛纱上衣" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -22091,7 +22104,7 @@ msgid "enchanted parabolan wool breeches" msgid_plural "enchanted parabolan wool breeches" msgstr[0] "附魔群勃龙毛纱马裤" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -22120,7 +22133,7 @@ msgid "parabolan wool breeches" msgid_plural "parabolan wool breeches" msgstr[0] "群勃龙毛纱马裤" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -22174,7 +22187,7 @@ msgid "slick icy coatings" msgid_plural "slick icy coatings" msgstr[0] "光滑冰层" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -22227,7 +22240,7 @@ msgid "frost armor" msgid_plural "frost armor" msgstr[0] "寒霜盔甲" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "一层包覆全身的、薄薄的魔法冰层。" @@ -22237,7 +22250,7 @@ msgid "stoneskin coating" msgid_plural "stoneskin coating" msgstr[0] "石化皮肤" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -22327,7 +22340,7 @@ msgid "spiritual armor" msgid_plural "spiritual armor" msgstr[0] "心灵护甲" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "一套召唤出来的中世纪盔甲。它发出柔和的光,看起来很结实。" @@ -22337,7 +22350,7 @@ msgid "auroral shell" msgid_plural "auroral shell" msgstr[0] "极光外壳" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "一个坚固的外壳包裹着你的身体,让你获得坚固的防御。" @@ -22417,16 +22430,18 @@ msgstr "" "一个运动侦测警报系统,可以侦测到半径15英尺范围内的所有运动,并且为使用者提供无声的警报。在睡觉时很有用,或者当使用者怀疑自己被隐身怪物追踪时。" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "合金装甲-手臂CBM" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "手臂皮下合金CBM" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "这套合金装甲可以用于替代受体手臂的皮肤。可以提供防护并运用于生化武术。" +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." +msgstr "先进的防护网状合金,被织入使用者的肌肤。以少许累赘为代价提供被动保护,可与生化格斗术结合使用。" #: lang/json/BIONIC_ITEM_from_json.py msgid "Protective Lenses CBM" @@ -22442,40 +22457,33 @@ msgid "" msgstr "这个生化插件将用高防护性能的反射式镜头封闭受体的眼眶,并将泪管重新导向口腔。当使用者哭泣的时候,如果不把眼泪吐出来,就只能含泪吞下去了。" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" -msgstr[0] "合金装甲-头部CBM" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "头部皮下合金CBM" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." -msgstr "这套合金装甲可以用于替代受体头部的皮肤,对头部和下颌提供防护。" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" -msgstr[0] "合金装甲-腿部CBM" +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." +msgstr "先进的防护网状合金,被织入使用者的肌肤。以少许累赘为代价,保护了头部和嘴部区域。" -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "这套合金装甲可以用于替代受体腿部的皮肤。可以提供防护并运用于生化武术。" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "腿部皮下合金CBM" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" -msgstr[0] "合金装甲-躯干CBM" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "躯干皮下合金CBM" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." -msgstr "这套合金装甲可以用于替代受体躯干的皮肤,对物理伤害提供防护。" +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." +msgstr "先进的防护网状合金,被织入使用者的肌肤。以少许累赘为代价,保护身体不受创伤。" #: lang/json/BIONIC_ITEM_from_json.py msgid "Battery System CBM" @@ -23157,7 +23165,7 @@ msgid "Power Storage CBM Mk. II" msgid_plural "Power Storage CBM Mk. II" msgstr[0] "Mk.II 型储能模块CBM" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -23563,7 +23571,7 @@ msgid "Squeaky Ankles" msgid_plural "Squeaky Ankles" msgstr[0] "脚踝重响" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "一对发出吱吱噪音的故障生化插件。" @@ -23755,7 +23763,7 @@ msgid "Self-Locking Thumbs" msgid_plural "Self-Locking Thumbs" msgstr[0] "拇指自锁" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "一对故障的自锁大拇指生化插件。" @@ -24990,7 +24998,7 @@ msgid "knife fighter's notes" msgid_plural "knife fighter's notes" msgstr[0] "刀锋战士笔录" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -25219,7 +25227,7 @@ msgid "plans for a radio repeater mod" msgid_plural "plans for a radio repeater mod" msgstr[0] "无线电基站改装方案" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -25254,7 +25262,7 @@ msgid "trifacet handling procedures" msgid_plural "trifacet handling procedures" msgstr[0] "“三琢面”无人车操作手册" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -25269,7 +25277,7 @@ msgid "schematics" msgid_plural "schematics" msgstr[0] "原理图" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -25277,9 +25285,9 @@ msgstr[0] "原理图" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -25293,7 +25301,7 @@ msgid "nurse bot schematics" msgid_plural "nurse bot schematics" msgstr[0] "护士机器人原理图" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -25307,7 +25315,7 @@ msgid "grocery bot schematics" msgid_plural "grocery bot schematics" msgstr[0] "食杂店机器人原理图" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -25321,7 +25329,7 @@ msgid "police bot schematics" msgid_plural "police bot schematics" msgstr[0] "警用机器人原理图" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -25334,7 +25342,7 @@ msgid "eyebot schematics" msgid_plural "eyebot schematics" msgstr[0] "眼球无人机原理图" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -25347,7 +25355,7 @@ msgid "security bot schematics" msgid_plural "security bot schematics" msgstr[0] "安防机器人原理图" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -25360,7 +25368,7 @@ msgid "skitterbot schematics" msgid_plural "skitterbot schematics" msgstr[0] "掠行机器人原理图" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -25373,7 +25381,7 @@ msgid "cleaner bot schematics" msgid_plural "cleaner bot schematics" msgstr[0] "清洁机器人原理图" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -25386,7 +25394,7 @@ msgid "miner bot schematics" msgid_plural "miner bot schematics" msgstr[0] "钻掘机器人原理图" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -25399,7 +25407,7 @@ msgid "riot control bot schematics" msgid_plural "riot control bot schematics" msgstr[0] "防暴机器人原理图" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -25412,7 +25420,7 @@ msgid "lab defense bot schematics" msgid_plural "lab defense bot schematics" msgstr[0] "实验室防御机器人原理图" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -25425,7 +25433,7 @@ msgid "dispatch schematics" msgid_plural "dispatch schematics" msgstr[0] "派遣者原理图" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -25439,7 +25447,7 @@ msgid "military dispatch schematics" msgid_plural "military dispatch schematics" msgstr[0] "军用派遣者原理图" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -25453,7 +25461,7 @@ msgid "anti-materiel turret schematics" msgid_plural "anti-materiel turret schematics" msgstr[0] "反器材炮塔原理图" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -25466,7 +25474,7 @@ msgid "milspec searchlight schematics" msgid_plural "milspec searchlight schematics" msgstr[0] "军用探照灯原理图" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -26031,7 +26039,7 @@ msgid "The Spirit of Aikido" msgid_plural "The Spirit of Aikido" msgstr[0] "合气道之魂" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "一本完整的合气道指南。" @@ -26041,7 +26049,7 @@ msgid "Practical Pugilism" msgid_plural "Practical Pugilism" msgstr[0] "实用拳击术" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -26052,7 +26060,7 @@ msgid "Capoeira 100" msgid_plural "Capoeira 100" msgstr[0] "巴西战舞入门" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "一本完整的巴西战舞指南。" @@ -26062,7 +26070,7 @@ msgid "The Centipede Lu Feng" msgid_plural "The Centipede Lu Feng" msgstr[0] "蜈蚣功-鹿峰" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "一部完整的蜈蚣拳指南。里面有你最喜爱的邵氏武打明星鹿峰的真人演示。" @@ -26072,7 +26080,7 @@ msgid "The Red Crane" msgid_plural "The Red Crane" msgstr[0] "红鹤" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "一本完整的鹤形拳拳法秘籍。" @@ -26082,7 +26090,7 @@ msgid "The Jade Dragon" msgid_plural "The Jade Dragon" msgstr[0] "玉龙" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "一本完整的龙形拳拳法秘籍。" @@ -26092,7 +26100,7 @@ msgid "Practical Eskrima" msgid_plural "Practical Eskrima" msgstr[0] "菲律宾剑棍术实用教程" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "一本完整的菲律宾剑棍术指南。" @@ -26102,7 +26110,7 @@ msgid "The Modern Swordsman" msgid_plural "The Modern Swordsman" msgstr[0] "现代剑客修养" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "一本完整的西洋击剑术指南。" @@ -26112,7 +26120,7 @@ msgid "Kodokan Judo" msgid_plural "Kodokan Judo" msgstr[0] "柔道讲谈" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "一本完整的柔道指南。" @@ -26122,7 +26130,7 @@ msgid "The Shotokan Karate Handbook" msgid_plural "The Shotokan Karate Handbook" msgstr[0] "空手道手册" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "一本完整的空手道指南。" @@ -26132,7 +26140,7 @@ msgid "Complete Krav Maga" msgid_plural "Complete Krav Maga" msgstr[0] "马伽术完全教程" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "一本完整的马伽术(以色列搏击防身术)指南。" @@ -26142,7 +26150,7 @@ msgid "The Deaf Leopard" msgid_plural "The Deaf Leopard" msgstr[0] "暗豹" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "一本完整的豹形拳拳法秘籍。" @@ -26152,7 +26160,7 @@ msgid "The Lizard Kuo Chui" msgid_plural "The Lizard Kuo Chui" msgstr[0] "壁虎功-郭追" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "一部完整的壁虎功指南。里面有你最喜爱的邵氏武打明星郭追的真人演示。" @@ -26162,7 +26170,7 @@ msgid "Ultimate Muay Thai" msgid_plural "Ultimate Muay Thai" msgstr[0] "终极泰拳" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "一本完整的泰拳指南。" @@ -26172,7 +26180,7 @@ msgid "Essence of Ninjutsu" msgid_plural "Essence of Ninjutsu" msgstr[0] "忍术的极意" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "一本完整的忍术指南。" @@ -26182,7 +26190,7 @@ msgid "The Book of Five Rings" msgid_plural "The Book of Five Rings" msgstr[0] "五轮书" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -26194,7 +26202,7 @@ msgid "The Modern Pankratiast" msgid_plural "The Modern Pankratiast" msgstr[0] "现代希腊式搏击" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "一本完整的古希腊搏击的指南。" @@ -26204,7 +26212,7 @@ msgid "The Scorpion Sun Chien" msgid_plural "The Scorpion Sun Chien" msgstr[0] "蝎子功-孙建" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "一部完整的蝎子功指南。里面有你最喜爱的邵氏武打明星孙建的真人演示。" @@ -26214,7 +26222,7 @@ msgid "The Indonesian Warrior" msgid_plural "The Indonesian Warrior" msgstr[0] "印尼战士" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "一本完整的班卡苏拉刀术指南。" @@ -26224,7 +26232,7 @@ msgid "The Black Snake" msgid_plural "The Black Snake" msgstr[0] "黑蛇" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "一本完整的蛇形拳拳法秘籍。" @@ -26234,7 +26242,7 @@ msgid "Official Taekwondo Training Manual" msgid_plural "Official Taekwondo Training Manual" msgstr[0] "官方跆拳道训练教材" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "一部完整的跆拳道指南。" @@ -26244,7 +26252,7 @@ msgid "Becoming One with the Tao" msgid_plural "Becoming One with the Tao" msgstr[0] "得道成拳" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "一本完整的太极拳拳法秘籍。" @@ -26254,7 +26262,7 @@ msgid "The White Tiger" msgid_plural "The White Tiger" msgstr[0] "白虎" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "一本完整的虎形拳拳法秘籍。" @@ -26264,7 +26272,7 @@ msgid "The Toad Lo Mang" msgid_plural "The Toad Lo Mang" msgstr[0] "蛤蟆功-罗莽" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "一部完整的蛤蟆功指南。里面有你最喜爱的邵氏武打明星罗莽的真人演示。" @@ -26274,7 +26282,7 @@ msgid "The Viper Wei Pai" msgid_plural "The Viper Wei Pai" msgstr[0] "毒蛇功-韦白" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "一部完整的毒蛇功指南。里面有你最喜爱的邵氏武打明星韦白的真人演示。" @@ -26284,7 +26292,7 @@ msgid "Zui Quan and You" msgid_plural "Zui Quan and You" msgstr[0] "醉拳拳法" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "一本完整的醉拳拳法秘籍。" @@ -26294,7 +26302,7 @@ msgid "The Way of the Spear" msgid_plural "The Way of the Spear" msgstr[0] "矛之道" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "一部完整的日本枪术指南。" @@ -26304,7 +26312,7 @@ msgid "Beautiful Springtime" msgid_plural "Beautiful Springtime" msgstr[0] "咏春拳谱" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "一本完整的咏春秘籍。" @@ -26315,7 +26323,7 @@ msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "战斗之花" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -26328,7 +26336,7 @@ msgid "Historic European Swordfighting" msgid_plural "Historic European Swordfighting" msgstr[0] "中世纪剑术" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -26474,7 +26482,7 @@ msgid "Ranch Prospectus" msgid_plural "Ranch Prospectus" msgstr[0] "大农场建设企划书" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -27309,7 +27317,7 @@ msgid "patient treatment records" msgid_plural "patient treatment records" msgstr[0] "患者治疗记录" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "一大叠病例记录,包含了许多血淋淋的治疗过程。" @@ -27319,7 +27327,7 @@ msgid "national weather transcripts" msgid_plural "national weather transcripts" msgstr[0] "国家气象记录" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "" @@ -30677,7 +30685,7 @@ msgid "chicken walker schematics" msgid_plural "chicken walker schematics" msgstr[0] "双足机器人原理图" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -30691,7 +30699,7 @@ msgid "diamond press schematics" msgid_plural "diamond press schematics" msgstr[0] "钻石压机原理图" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -30705,7 +30713,7 @@ msgid "nano forge schematics" msgid_plural "nano forge schematics" msgstr[0] "纳米熔炉原理图" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -30719,7 +30727,7 @@ msgid "tank drone schematics" msgid_plural "tank drone schematics" msgstr[0] "坦克无人机原理图" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -30733,7 +30741,7 @@ msgid "tripod schematics" msgid_plural "tripod schematics" msgstr[0] "三足机器人原理图" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -30960,7 +30968,7 @@ msgid "Scorching Sirocco" msgid_plural "Scorching Sirocco" msgstr[0] "灼热之风" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "这本书包含了漠风流派相关的武术教学。" @@ -30970,7 +30978,7 @@ msgid "Perfect Clarity of Mind and Body" msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "完美身心" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "这本书包含了钢魂流派相关的武术教学。" @@ -30980,7 +30988,7 @@ msgid "The Book of Mudora" msgid_plural "The Book of Mudora" msgstr[0] "姆多拉之书" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -30992,7 +31000,7 @@ msgid "Stormguard Warrior" msgid_plural "Stormguard Warrior" msgstr[0] "风暴之盾" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "这本书包含了铁心流派相关的武术教学。" @@ -31002,7 +31010,7 @@ msgid "The Life and Work of Tiger Sauer" msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "泰格·斯奥尔的生活和工作" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -31014,7 +31022,7 @@ msgid "Pocket Monster Encyclopedia" msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "精灵宝可梦百科" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -31027,7 +31035,7 @@ msgid "Distant Horizon" msgid_plural "Distant Horizon" msgstr[0] "高瞻远瞩" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "这本书包含了暮日流派相关的武术教学。" @@ -31037,7 +31045,7 @@ msgid "Jedi Holocrons: Form I" msgid_plural "Jedi Holocrons: Form I" msgstr[0] "绝地全息仪:第一式" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -31049,7 +31057,7 @@ msgid "Shards of Granite" msgid_plural "Shards of Granite" msgstr[0] "宁为玉碎" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "这本书包含了石龙流派相关的武术教学。" @@ -31059,7 +31067,7 @@ msgid "Reaping Talons" msgid_plural "Reaping Talons" msgstr[0] "收割之爪" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "这本书包含了虎爪流派相关的武术教学。" @@ -31084,6 +31092,20 @@ msgstr[0] "法术辨识理论基础" msgid "A beginner textbook on magical theories." msgstr "一本魔法理论的入门教科书。" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "这本书是用你不熟悉的符文写成的。幸运的是,有几张非常详细的图片展示了用某种银色金属锭锻造刀剑的过程。你觉得这是本铁匠的教科书。" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -33027,7 +33049,7 @@ msgid "bird litter" msgid_plural "bird litter" msgstr[0] "鸟粪" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "一堆鸟粪、羽毛和肮脏的垃圾混合物。" @@ -33078,13 +33100,13 @@ msgid "bleach" msgid_plural "bleach" msgstr[0] "漂白剂" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "漂白剂(污染)" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -33098,7 +33120,7 @@ msgid "ammonia" msgid_plural "ammonia" msgstr[0] "氨水" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -33112,7 +33134,7 @@ msgid "liquid fertilizer" msgid_plural "liquid fertilizer" msgstr[0] "液体肥料" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "一些流体肥料,俗称液肥,内含多种对作物有益的微量营养元素,对作物有着明显的增产左右。" @@ -33122,7 +33144,7 @@ msgid "commercial fertilizer" msgid_plural "commercial fertilizer" msgstr[0] "商品肥料" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "富含营养的颗粒状植物肥料。" @@ -33132,7 +33154,7 @@ msgid "fungicide" msgid_plural "fungicide" msgstr[0] "抗真菌剂" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -33144,7 +33166,7 @@ msgid "insecticide" msgid_plural "insecticide" msgstr[0] "杀虫剂" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -33156,7 +33178,7 @@ msgid "salt water" msgid_plural "salt water" msgstr[0] "盐水" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "一些加了盐的水,很咸,一般用于制造物品或有其它用途。" @@ -33166,7 +33188,7 @@ msgid "soapy water" msgid_plural "soapy water" msgstr[0] "肥皂水" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "一些加了肥皂的水,最好别喝。" @@ -33186,7 +33208,7 @@ msgid "sulfuric acid" msgid_plural "sulfuric acid" msgstr[0] "硫酸" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -33201,7 +33223,7 @@ msgid "hydrochloric acid" msgid_plural "hydrochloric acid" msgstr[0] "盐酸" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -33214,7 +33236,7 @@ msgid "nitric acid" msgid_plural "nitric acid" msgstr[0] "硝酸" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -33246,7 +33268,7 @@ msgid "sewage water" msgid_plural "sewage water" msgstr[0] "污水" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "一些下水道里恶臭而浑浊的液体。" @@ -33256,7 +33278,7 @@ msgid "lye" msgid_plural "lye" msgstr[0] "碱液" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -33268,7 +33290,7 @@ msgid "ether" msgid_plural "ether" msgstr[0] "乙醚" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -33283,7 +33305,7 @@ msgid "dimethyl sulfoxide" msgid_plural "dimethyl sulfoxide" msgstr[0] "二甲基亚砜" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -33298,7 +33320,7 @@ msgid "chloroform" msgid_plural "chloroform" msgstr[0] "氯仿" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -33313,7 +33335,7 @@ msgid "phenol" msgid_plural "phenol" msgstr[0] "苯酚" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -33330,7 +33352,7 @@ msgid "glycerol" msgid_plural "glycerol" msgstr[0] "甘油" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -33342,7 +33364,7 @@ msgid "peptone broth powder" msgid_plural "peptone broth powder" msgstr[0] "蛋白胨培养基" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -33357,7 +33379,7 @@ msgid "agar" msgid_plural "agar" msgstr[0] "琼脂" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -33372,7 +33394,7 @@ msgid "acrylamide" msgid_plural "acrylamide" msgstr[0] "丙烯酰胺" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -33384,7 +33406,7 @@ msgid "acetylene" msgid_plural "acetylene" msgstr[0] "乙炔" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -33396,7 +33418,7 @@ msgid "formic acid" msgid_plural "formic acid" msgstr[0] "甲酸" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -33408,7 +33430,7 @@ msgid "latex" msgid_plural "latex" msgstr[0] "胶乳" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "一种由某些植物分泌出的含有天然橡胶的液态预聚体。" @@ -33418,7 +33440,7 @@ msgid "citric acid" msgid_plural "citric acid" msgstr[0] "柠檬酸" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -33489,13 +33511,23 @@ msgid "acetic anhydride" msgid_plural "acetic anhydride" msgstr[0] "醋酸酐" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "这是一瓶醋酸酐,如果你有足够的化学知识,你可以用它轻易地将吗啡转化为海洛因。" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "肥皂液" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "一款个人清洁用的液体肥皂,分辨不出类型。" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -33530,7 +33562,7 @@ msgid "marloss wine" msgid_plural "marloss wine" msgstr[0] "马洛斯酒" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "滑腻的白色果酒,由马洛斯果实酿成。" @@ -33540,7 +33572,7 @@ msgid "Riesling" msgid_plural "Riesling" msgstr[0] "雷斯林白葡萄酒" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "一种清新馥郁、有着多层风味的白葡萄酒,产自德国,葡萄挑选精心而严格。" @@ -33550,7 +33582,7 @@ msgid "Chardonnay" msgid_plural "Chardonnay" msgstr[0] "夏敦埃白葡萄酒" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "一种酒色呈淡金色的白葡萄酒,又称莎当妮葡萄酒,口感非常柔顺且产量高,成为最流行的葡萄酒之一。" @@ -33560,7 +33592,7 @@ msgid "Cabernet Sauvignon" msgid_plural "Cabernet Sauvignon" msgstr[0] "赤霞珠波尔多葡萄酒" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -33572,7 +33604,7 @@ msgid "pinot noir" msgid_plural "pinot noir" msgstr[0] "黑皮诺葡萄酒" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -33584,7 +33616,7 @@ msgid "marsala" msgid_plural "marsala" msgstr[0] "马沙拉白葡萄酒" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "这是一种意大利餐厅里很受欢迎的葡萄酒。" @@ -33594,7 +33626,7 @@ msgid "vermouth" msgid_plural "vermouth" msgstr[0] "苦艾酒" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -33606,7 +33638,7 @@ msgid "barley wine" msgid_plural "barley wine" msgstr[0] "大麦酒" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "一种高酒精度的麦芽酒。" @@ -33616,7 +33648,7 @@ msgid "whiskey" msgid_plural "whiskey" msgstr[0] "威士忌" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -33627,7 +33659,7 @@ msgid "vodka" msgid_plural "vodka" msgstr[0] "伏特加" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -33639,7 +33671,7 @@ msgid "gin" msgid_plural "gin" msgstr[0] "琴酒" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -33651,7 +33683,7 @@ msgid "rum" msgid_plural "rum" msgstr[0] "朗姆酒" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -33663,7 +33695,7 @@ msgid "tequila" msgid_plural "tequila" msgstr[0] "龙舌兰酒" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -33676,7 +33708,7 @@ msgid "triple sec" msgid_plural "triple sec" msgstr[0] "橙皮酒" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "一种具有清新柑橘的特殊风味的酒,常见的鸡尾酒基酒之一。" @@ -33686,7 +33718,7 @@ msgid "cheap wine" msgid_plural "cheap wine" msgstr[0] "低档红酒" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "一种选择酿造材料并不考究、也不精心进行酿造的廉价红酒,但作为酒精饮品,仍有饮用的价值。" @@ -33696,7 +33728,7 @@ msgid "strong mixed alcohol" msgid_plural "strong mixed alcohol" msgstr[0] "烈酒混合物" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "一种将各类烈酒,毫无品味的混合在一起的混合液体。" @@ -33706,7 +33738,7 @@ msgid "weak mixed alcohol" msgid_plural "weak mixed alcohol" msgstr[0] "弱酒混合物" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "一种将各类弱酒精饮料,毫无品味的混合在一起的混合液体。" @@ -33716,7 +33748,7 @@ msgid "fruit wine" msgid_plural "fruit wine" msgstr[0] "果子酒" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -33727,7 +33759,7 @@ msgid "brandy" msgid_plural "brandy" msgstr[0] "白兰地" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -33739,7 +33771,7 @@ msgid "Irish coffee" msgid_plural "Irish coffee" msgstr[0] "爱尔兰咖啡" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -33751,7 +33783,7 @@ msgid "Long Island iced tea" msgid_plural "Long Island iced tea" msgstr[0] "长岛冰茶" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -33777,7 +33809,7 @@ msgid "wild apple" msgid_plural "wild apple" msgstr[0] "狂野苹果酒" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "一种将香甜可口的苹果汁与伏特加混合的鸡尾酒,浓烈的伏特加中蕴藏着苹果的味道。" @@ -33787,7 +33819,7 @@ msgid "rum & cola" msgid_plural "rum & cola" msgstr[0] "可乐朗姆酒" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "一种非常受欢迎的鸡尾酒,起源于1898年11月的美国,可乐与朗姆酒的有机结合。" @@ -33797,7 +33829,7 @@ msgid "beer" msgid_plural "beer" msgstr[0] "啤酒" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -33809,7 +33841,7 @@ msgid "spiced mead" msgid_plural "spiced mead" msgstr[0] "香蜜酒" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -33820,7 +33852,7 @@ msgid "dandelion wine" msgid_plural "dandelion wine" msgstr[0] "蒲公英酒" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -33832,7 +33864,7 @@ msgid "burdock wine" msgid_plural "burdock wine" msgstr[0] "牛蒡酒" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "一种口感清淡的起泡葡萄酒,用牛蒡根制成。有点甜。" @@ -33842,7 +33874,7 @@ msgid "pine wine" msgid_plural "pine wine" msgstr[0] "松脂酒" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -33854,7 +33886,7 @@ msgid "homebrew beer" msgid_plural "homebrew beer" msgstr[0] "家酿啤酒" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "虽然比不上你所喝过最好的酒,但这玩意的产出至少是按加仑算的。" @@ -33864,7 +33896,7 @@ msgid "moonshine" msgid_plural "moonshine" msgstr[0] "私酿威士忌" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -33877,7 +33909,7 @@ msgid "European pilsner" msgid_plural "European pilsner" msgstr[0] "比尔森啤酒" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -33889,7 +33921,7 @@ msgid "American pale ale" msgid_plural "American pale ale" msgstr[0] "美国麦酒" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -33901,7 +33933,7 @@ msgid "India pale ale" msgid_plural "India pale ale" msgstr[0] "印度麦酒" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -33913,7 +33945,7 @@ msgid "stout" msgid_plural "stout" msgstr[0] "黑啤" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "" @@ -33925,7 +33957,7 @@ msgid "Belgian ale" msgid_plural "Belgian ale" msgstr[0] "比利时麦酒" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -33937,7 +33969,7 @@ msgid "imperial stout" msgid_plural "imperial stout" msgstr[0] "生黑啤" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -33975,7 +34007,7 @@ msgid "single malt whiskey" msgid_plural "single malt whiskey" msgstr[0] "纯麦威士忌" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "" @@ -33987,7 +34019,7 @@ msgid "single pot still Irish whiskey" msgid_plural "single pot still Irish whiskey" msgstr[0] "爱尔兰单壶式蒸馏威士忌" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "一种由含麦芽和不含麦芽的大麦混合酿成的威士忌。" @@ -33997,7 +34029,7 @@ msgid "cheap whiskey" msgid_plural "cheap whiskey" msgstr[0] "廉价威士忌" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "一种廉价的混合威士忌。" @@ -34007,7 +34039,7 @@ msgid "Canadian whiskey" msgid_plural "Canadian whiskey" msgstr[0] "加拿大威士忌" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "一种由玉米和黑麦混合酿成的杂粮威士忌酒。" @@ -34017,7 +34049,7 @@ msgid "sherry" msgid_plural "sherry" msgstr[0] "雪利酒" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -34028,7 +34060,7 @@ msgid "Bristol Cream" msgid_plural "Bristol Cream" msgstr[0] "夏微雪利酒" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -34040,7 +34072,7 @@ msgid "Madeira wine" msgid_plural "Madeira wine" msgstr[0] "马德拉酒" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "一瓶加入了烈酒强化的马德拉葡萄酒。皇家海军的真正佳酿。" @@ -34050,7 +34082,7 @@ msgid "fancy hobo" msgid_plural "fancy hobo" msgstr[0] "浪子鸡尾酒" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "尝起来就像是流浪汉才会去喝的酒。" @@ -34060,7 +34092,7 @@ msgid "kalimotxo" msgid_plural "kalimotxo" msgstr[0] "可乐鸡尾酒" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -34072,7 +34104,7 @@ msgid "bee's knees" msgid_plural "bee's knees" msgstr[0] "蜂膝鸡尾酒" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -34156,7 +34188,7 @@ msgid "hard seltzer" msgid_plural "hard seltzer" msgstr[0] "酒精苏打水" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "含酒精的苏打水,非常适合炎热的夏日。" @@ -34166,7 +34198,7 @@ msgid "pumpkin muffin" msgid_plural "pumpkin muffin" msgstr[0] "南瓜松饼" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "南瓜做的烤松饼。秋季盛宴时的完美餐点。" @@ -34176,7 +34208,7 @@ msgid "donut holes" msgid_plural "donut holes" msgstr[0] "甜甜圈" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -34190,7 +34222,7 @@ msgid "sourdough bread" msgid_plural "sourdough bread" msgstr[0] "酸面包" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -34202,7 +34234,7 @@ msgid "flatbread" msgid_plural "flatbread" msgstr[0] "面饼" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "一块由面粉简单制成的无酵面饼,可以直接食用但味道不佳,最好用作其它料理之中。" @@ -34212,7 +34244,7 @@ msgid "bread" msgid_plural "bread" msgstr[0] "面包" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "一份健康而营养的面包,一般由面粉制成。" @@ -34222,7 +34254,7 @@ msgid "toast" msgid_plural "toast" msgstr[0] "吐司" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -34234,7 +34266,7 @@ msgid "buttered toast" msgid_plural "buttered toast" msgstr[0] "黄油吐司" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "一片涂了黄油的烤吐司,味道更好。" @@ -34244,7 +34276,7 @@ msgid "jam toast" msgid_plural "jam toast" msgstr[0] "果酱吐司" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -34256,7 +34288,7 @@ msgid "peanut butter toast" msgid_plural "peanut butter toast" msgstr[0] "花生酱吐司" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -34267,7 +34299,7 @@ msgid "toad in a hole" msgid_plural "toad in a hole" msgstr[0] "蟾蜍在洞" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -34279,7 +34311,7 @@ msgid "PBJ Toast" msgid_plural "PBJ Toast" msgstr[0] "花生酱果酱吐司" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -34291,7 +34323,7 @@ msgid "cornbread" msgid_plural "cornbread" msgstr[0] "玉米面包" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "玉米面包,健康营养!" @@ -34321,7 +34353,7 @@ msgid "hardtack" msgid_plural "hardtack" msgstr[0] "硬面饼" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -34343,7 +34375,7 @@ msgid "wastebread" msgid_plural "wastebread" msgstr[0] "废土面包" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -34356,7 +34388,7 @@ msgid "brown bread" msgid_plural "brown bread" msgstr[0] "黑面包" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "一种甜面包,类似于蛋糕。" @@ -34366,7 +34398,7 @@ msgid "hallula" msgid_plural "hallula" msgstr[0] "哈鲁拉面包" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -34609,29 +34641,29 @@ msgid "malting grain" msgid_plural "malting grain" msgstr[0] "发芽麦粒" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "麦粒经过浸泡和等待,它已经发出了麦芽。" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "麦粒尚未发芽。" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." -msgstr "发芽的麦粒可用于酿酒。" +msgstr "发芽的麦粒,可用于酿酒。" #: lang/json/COMESTIBLE_from_json.py msgid "malted grain" msgid_plural "malted grain" msgstr[0] "麦芽" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -34643,14 +34675,14 @@ msgid "soaking dandelion" msgid_plural "soaking dandelion" msgstr[0] "泡水蒲公英" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "蒲公英在沸水中浸泡后,汁液可以用来酿酒。" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "蒲公英需要浸泡多些时间。" @@ -34660,7 +34692,7 @@ msgid "soaked dandelion" msgid_plural "soaked dandelion" msgstr[0] "蒲公英汁" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "用沸水浸泡过的蒲公英,用于制作蒲公英酒。" @@ -34687,7 +34719,7 @@ msgid "cooked fish" msgid_plural "cooked fish" msgstr[0] "熟鱼肉" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "新鲜的鱼再加上高超的手艺,就成了这道营养的美食。" @@ -34784,7 +34816,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "屠宰动物得到的肉,可以直接食用,但烹饪加工后更美味并且更加安全。" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "从活体中提取的新鲜血液。" @@ -34852,7 +34884,7 @@ msgid "" "significantly unpleasant with the residue salt. Activate it once completed " "to make use of the final product." msgstr "" -"一块正在用盐和糖腌制的五花肉,腌制后能被熏制成培根。在这个阶段,风味物质正在其中缓慢积累,但仍然残留着大量令人乍舌的盐。腌制完成后使用它,来获得成品。" +"一块正在用盐和糖腌制的五花肉,腌制后能被熏制成培根。在这个阶段,风味物质正在其中缓慢积累,但仍然残留着多到令人咋舌的盐。腌制完成后使用它以获得成品。" #: lang/json/COMESTIBLE_from_json.py msgid "scrap of meat" @@ -34881,7 +34913,7 @@ msgid "mutant blood" msgid_plural "mutant blood" msgstr[0] "变异血液" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "从一个严重变异的生物身上提取的新鲜血液。" @@ -34917,7 +34949,7 @@ msgid "mutant human blood" msgid_plural "mutant human blood" msgstr[0] "变异人血" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "从一个严重变异的人身上提取的新鲜血液。" @@ -34959,7 +34991,7 @@ msgid "butchery refuse" msgid_plural "butchery refuse" msgstr[0] "屠宰残渣" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -35038,7 +35070,7 @@ msgid "cooked offal" msgid_plural "cooked offal" msgstr[0] "熟内脏" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -35051,7 +35083,7 @@ msgid "mutant organs" msgid_plural "mutant organs" msgstr[0] "变异器官" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "从巨大的变异昆虫身上切下的奇怪器官。" @@ -35061,7 +35093,7 @@ msgid "pickled offal" msgid_plural "pickled offal" msgstr[0] "腌制内脏" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -35074,7 +35106,7 @@ msgid "canned offal" msgid_plural "canned offal" msgstr[0] "罐装内脏" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -35106,28 +35138,25 @@ msgid "meat jerky" msgid_plural "meat jerky" msgstr[0] "肉干" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "人肉干" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "半兽人肉干" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "怪兽肉干" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -35138,7 +35167,7 @@ msgid "salted fish" msgid_plural "salted fish" msgstr[0] "咸鱼" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -35151,31 +35180,25 @@ msgid "smoked meat" msgid_plural "smoked meats" msgstr[0] "熏肉" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "熏人肉" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "熏半兽人肉" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -35194,7 +35217,7 @@ msgid "smoked fish" msgid_plural "smoked fish" msgstr[0] "熏鱼" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -35244,7 +35267,7 @@ msgid "mutant lungs" msgid_plural "mutant lungs" msgstr[0] "变异肺脏" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "你很确定这是肺脏组织。" @@ -35291,7 +35314,7 @@ msgid "raw brains" msgid_plural "raw brains" msgstr[0] "生脑" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "一块来自某种动物的大脑。你可不想生吃这玩意……" @@ -35301,7 +35324,7 @@ msgid "cooked brains" msgid_plural "cooked brains" msgstr[0] "熟脑" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -35372,7 +35395,7 @@ msgstr[0] "熟杂碎" msgid "Normally a delicacy, it needs a little… something." msgstr "一份由来自某种动物的胸腺或胰腺组成的杂碎。通常可以用来制造各类美味食物,这份还需要一点点额外的……东西。" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "一些血液,甚至可能是人血。看着可真恶心!" @@ -35513,7 +35536,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "一块受到感染的肉,散发着恶心的味道,源自一些变异生物。你可以吃,但是会让你中毒。" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -35741,7 +35764,7 @@ msgid "alien fronds" msgid_plural "alien fronds" msgstr[0] "异界蕨叶" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -35840,7 +35863,7 @@ msgid "demihuman flesh" msgid_plural "demihuman flesh" msgstr[0] "半兽人肉" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "一份新鲜的半兽人肉切片。" @@ -35850,7 +35873,7 @@ msgid "demihuman blood" msgid_plural "demihuman blood" msgstr[0] "半兽人血" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "从一个半兽人身上提取的新鲜血液。" @@ -35886,12 +35909,34 @@ msgid "" "appetizing." msgstr "一个煮熟的半兽人胃,看起来丝毫不能引起食欲。" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "煎肉" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "煎人肉" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "煎半兽人肉" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "一份美味的油煎肉。" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "烤玉米羹" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -35904,7 +35949,7 @@ msgid "fish noodle casserole" msgid_plural "fish noodle casserole" msgstr[0] "金枪鱼烤面" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -35916,7 +35961,7 @@ msgid "cereal" msgid_plural "cereal" msgstr[0] "早餐麦片" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "一份抽象化的早餐麦片,你不该在游戏里看到它。" @@ -35926,7 +35971,7 @@ msgid "Foodplace cereal" msgid_plural "Foodplace cereal" msgstr[0] "美食广场早餐麦片" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -35937,7 +35982,7 @@ msgid "Snicker-Snacks cereal" msgid_plural "Snicker-Snacks cereal" msgstr[0] "士力点心麦片" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -35949,7 +35994,7 @@ msgid "Carpenter Crunch cereal" msgid_plural "Carpenter Crunch cereal" msgstr[0] "木匠嘎嘣脆麦片" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -35961,7 +36006,7 @@ msgid "Brantastic cereal" msgid_plural "Brantastic cereal" msgstr[0] "奇异米糠麦片" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -35973,7 +36018,7 @@ msgid "Sugar Chomps cereal" msgid_plural "Sugar Chomps cereal" msgstr[0] "方糖嚼嚼麦片" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -35985,7 +36030,7 @@ msgid "Honey Pellet cereal" msgid_plural "Honey Pellet cereal" msgstr[0] "蜂蜜弹丸麦片" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -36009,7 +36054,7 @@ msgid "Foodios cereal" msgid_plural "Foodios cereal" msgstr[0] "美食晶磨麦片" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "美食广场出品的美食晶磨牌早餐麦片。美食晶磨™超级美食美味™!" @@ -36031,7 +36076,7 @@ msgid "wheat cereal" msgid_plural "wheat cereal" msgstr[0] "早餐燕麦" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -36053,7 +36098,7 @@ msgid "milk" msgid_plural "milk" msgstr[0] "牛奶" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "一份最古老的天然饮料之一,被誉为\"白色血液\"的牛奶,含有丰富的矿物质如钙、磷、铁、锌、铜、锰、钼,香浓纯正,但容易腐坏。" @@ -36063,7 +36108,7 @@ msgid "chocolate milk" msgid_plural "chocolate milk" msgstr[0] "巧克力牛奶" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "小牛的口粮,加入了巧克力供成年人类食用。保质期很短。" @@ -36073,7 +36118,7 @@ msgid "reconstituted milk" msgid_plural "reconstituted milk" msgstr[0] "复原乳" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -36085,7 +36130,7 @@ msgid "raw milk" msgid_plural "raw milk" msgstr[0] "生牛奶" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -36100,7 +36145,7 @@ msgid "shelf stable milk" msgid_plural "shelf stable milk" msgstr[0] "耐储存牛奶" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -36113,7 +36158,7 @@ msgid "evaporated milk" msgid_plural "evaporated milk" msgstr[0] "甜炼乳" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -36124,7 +36169,7 @@ msgid "buttermilk" msgid_plural "buttermilk" msgstr[0] "脱脂乳" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -36146,7 +36191,7 @@ msgid "butter" msgid_plural "butter" msgstr[0] "黄油" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -36157,7 +36202,7 @@ msgid "raw butter" msgid_plural "raw butter" msgstr[0] "生黄油" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -36168,7 +36213,7 @@ msgid "ghee" msgid_plural "ghee" msgstr[0] "酥油" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -36202,7 +36247,7 @@ msgid "hard cheese" msgid_plural "hard cheese" msgstr[0] "硬奶酪" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -36214,7 +36259,7 @@ msgid "cheese" msgid_plural "cheese" msgstr[0] "奶酪" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "" @@ -36236,7 +36281,7 @@ msgid "powdered milk" msgid_plural "powdered milk" msgstr[0] "奶粉" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "一些超高纯度奶粉,加水搅拌后就是牛奶。" @@ -36246,7 +36291,7 @@ msgid "condensed milk" msgid_plural "condensed milk" msgstr[0] "炼乳" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -36258,7 +36303,7 @@ msgid "whipped cream" msgid_plural "whipped cream" msgstr[0] "搅打奶油" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -36270,7 +36315,7 @@ msgid "heavy cream" msgid_plural "heavy cream" msgstr[0] "浓奶油" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "一份从生牛奶表面撇出来的奶油,经过静置浓缩所得到的浓奶油。" @@ -36280,7 +36325,7 @@ msgid "apple cider" msgid_plural "apple cider" msgstr[0] "苹果汁" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "一份由新鲜苹果压榨而成的果汁,美味且营养。" @@ -36314,7 +36359,7 @@ msgid "atomic coffee" msgid_plural "atomic coffee" msgstr[0] "原子咖啡" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -36327,7 +36372,7 @@ msgid "bee balm tea" msgid_plural "bee balm tea" msgstr[0] "香蜂草茶" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -36349,7 +36394,7 @@ msgid "chai tea" msgid_plural "chai tea" msgstr[0] "印度奶茶" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "传统南亚奶茶,混有许多香料。" @@ -36359,7 +36404,7 @@ msgid "chamomile tea" msgid_plural "chamomile tea" msgstr[0] "甘菊茶" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -36383,7 +36428,7 @@ msgid "coffee" msgid_plural "coffee" msgstr[0] "咖啡" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -36396,7 +36441,7 @@ msgid "coffee substitute" msgid_plural "coffee substitute" msgstr[0] "咖啡代用品" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -36409,7 +36454,7 @@ msgid "chicory brew" msgid_plural "chicory brew" msgstr[0] "菊苣酿" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -36473,7 +36518,7 @@ msgid "dandelion tea" msgid_plural "dandelion tea" msgstr[0] "蒲公英茶" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "有助健康的草药汤,把蒲公英根茎放入沸水中煮烂制成。" @@ -36483,7 +36528,7 @@ msgid "dandelion and burdock tea" msgid_plural "dandelion and burdock tea" msgstr[0] "蒲公英牛蒡茶" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -36537,7 +36582,7 @@ msgid "herbal tea" msgid_plural "herbal tea" msgstr[0] "草药茶" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "有助健康的草药汤,把草药放入沸水中煮烂制成。" @@ -36547,7 +36592,7 @@ msgid "hot chocolate" msgid_plural "hot chocolate" msgstr[0] "热巧克力" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -36593,7 +36638,7 @@ msgid "lemonade" msgid_plural "lemonade" msgstr[0] "柠檬水" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -36617,7 +36662,7 @@ msgid "lotus tea" msgid_plural "lotus tea" msgstr[0] "荷花茶" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "有助健康的草药汤,把荷花放入沸水中煮烂制成。" @@ -36627,7 +36672,7 @@ msgid "Mexican hot chocolate" msgid_plural "Mexican hot chocolate" msgstr[0] "墨西哥热巧克力" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -36684,7 +36729,7 @@ msgid "pine needle tea" msgid_plural "pine needle tea" msgstr[0] "松针茶" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -36719,7 +36764,7 @@ msgid "root beer" msgid_plural "root beer" msgstr[0] "麦根沙士" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "一罐去除了咖啡因、像是可乐的苏打水,但喝多了仍对健康不利。" @@ -36753,13 +36798,13 @@ msgid "spurge tea" msgid_plural "spurge tea" msgstr[0] "大戟花茶" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "你不再需要担心哮喘发作了,至少短时间内如此。" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -36783,7 +36828,7 @@ msgid "sweet water" msgid_plural "sweet water" msgstr[0] "糖水" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "白水里加了点糖或蜂蜜,尝起来还不赖。" @@ -36805,7 +36850,7 @@ msgid "willowbark tea" msgid_plural "willowbark tea" msgstr[0] "柳树皮茶" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -36839,7 +36884,7 @@ msgid "water" msgid_plural "water" msgstr[0] "水" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -36851,7 +36896,7 @@ msgid "clean water" msgid_plural "clean water" msgstr[0] "净水" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "一份新鲜且纯净的水。" @@ -36861,7 +36906,7 @@ msgid "mineral water" msgid_plural "mineral water" msgstr[0] "矿泉水" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "高档矿泉水,非常高档,你光是握着瓶子就能感到它是那么的上档次。" @@ -36982,7 +37027,7 @@ msgid "maple sap" msgid_plural "maple sap" msgstr[0] "枫树树汁" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "一种从枫树上提取的水和糖的混合溶液。" @@ -36992,7 +37037,7 @@ msgid "mayonnaise" msgid_plural "mayonnaise" msgstr[0] "蛋黄酱" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -37015,7 +37060,7 @@ msgid "mustard" msgid_plural "mustard" msgstr[0] "芥末" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -37027,7 +37072,7 @@ msgid "forest honey" msgid_plural "forest honey" msgstr[0] "森林蜂蜜" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -37039,7 +37084,7 @@ msgid "vinegar" msgid_plural "vinegar" msgstr[0] "食醋" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -37051,7 +37096,7 @@ msgid "vegetable cooking oil" msgid_plural "vegetable cooking oil" msgstr[0] "植物烹调油" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "一些淡黄色的烹饪用油。" @@ -37061,7 +37106,7 @@ msgid "animal cooking oil" msgid_plural "animal cooking oil" msgstr[0] "动物烹调油" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "用于烹饪的淡黄色动物油。" @@ -37071,7 +37116,7 @@ msgid "molasses" msgid_plural "molasses" msgstr[0] "糖浆" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -37083,7 +37128,7 @@ msgid "horseradish" msgid_plural "horseradish" msgstr[0] "辣根" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "一些磨碎的、加上醋和盐的辛辣根菜。" @@ -37093,7 +37138,7 @@ msgid "coffee syrup" msgid_plural "coffee syrup" msgstr[0] "咖啡糖浆" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -37402,7 +37447,7 @@ msgid "scrambled eggs" msgid_plural "scrambled eggs" msgstr[0] "炒蛋" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "一块蓬松而美味的炒蛋。" @@ -37422,7 +37467,7 @@ msgid "fried eggs" msgid_plural "fried eggs" msgstr[0] "煎蛋" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -37434,7 +37479,7 @@ msgid "deluxe fried eggs" msgid_plural "deluxe fried eggs" msgstr[0] "特级煎蛋" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -37446,7 +37491,7 @@ msgid "fried egg sandwich" msgid_plural "fried egg sandwich" msgstr[0] "煎蛋三明治" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -37458,7 +37503,7 @@ msgid "deluxe fried egg sandwich" msgid_plural "deluxe fried egg sandwich" msgstr[0] "特级煎蛋三明治" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -37635,7 +37680,7 @@ msgid "frozen yogurt" msgid_plural "frozen yogurt" msgstr[0] "酸奶冰淇淋" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -37699,7 +37744,7 @@ msgid "peaches in syrup" msgid_plural "peaches in syrup" msgstr[0] "糖水黄桃" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "" @@ -37721,7 +37766,7 @@ msgid "lemonade drink mix" msgid_plural "lemonade drink mix" msgstr[0] "速溶柠檬粉" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -37753,7 +37798,7 @@ msgid "dehydrated fruit" msgid_plural "dehydrated fruit" msgstr[0] "脱水水果" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -37766,7 +37811,7 @@ msgid "rehydrated fruit" msgid_plural "rehydrated fruit" msgstr[0] "水发果脯" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -37789,7 +37834,7 @@ msgid "canned fruit" msgid_plural "canned fruit" msgstr[0] "罐装水果" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -37801,7 +37846,7 @@ msgid "pumpkin yeast bread" msgid_plural "pumpkin yeast bread" msgstr[0] "南瓜酵母面包" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -37823,7 +37868,7 @@ msgid "irradiated rose hips" msgid_plural "irradiated rose hips" msgstr[0] "辐照玫瑰果" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -38183,7 +38228,7 @@ msgid "irradiated broccoli" msgid_plural "irradiated broccoli" msgstr[0] "辐照西兰花" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -38231,7 +38276,7 @@ msgid "irradiated corn" msgid_plural "irradiated corn" msgstr[0] "辐照玉米" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -38279,7 +38324,7 @@ msgid "irradiated celery" msgid_plural "irradiated celery" msgstr[0] "辐照芹菜" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -38291,7 +38336,7 @@ msgid "irradiated rhubarb" msgid_plural "irradiated rhubarb" msgstr[0] "辐照大黄" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -38392,12 +38437,12 @@ msgid "potato chips" msgid_plural "potato chips" msgstr[0] "薯片" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "一份简单的加盐马铃薯片。" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "" @@ -38409,7 +38454,7 @@ msgid "popcorn kernels" msgid_plural "popcorn kernels" msgstr[0] "生爆米花" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -38421,7 +38466,7 @@ msgid "popcorn" msgid_plural "popcorn" msgstr[0] "爆米花" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -38433,7 +38478,7 @@ msgid "salted popcorn" msgid_plural "salted popcorn" msgstr[0] "咸味爆米花" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "" @@ -38444,7 +38489,7 @@ msgid "buttered popcorn" msgid_plural "buttered popcorn" msgstr[0] "奶油爆米花" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "" @@ -38456,7 +38501,7 @@ msgid "pretzels" msgid_plural "pretzels" msgstr[0] "椒盐脆饼干" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "一些饼干,也有称为蝴蝶脆饼,来源于德国或法国阿尔萨斯,通常是蝴蝶形的,用小麦粉制成,口味是咸的。" @@ -38486,7 +38531,7 @@ msgid "marshmallows" msgid_plural "marshmallows" msgstr[0] "棉花糖" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "一小撮的粘糊糊的、毛绒绒的、蓬松的、美味的棉花糖。" @@ -38496,7 +38541,7 @@ msgid "s'mores" msgid_plural "s'mores" msgstr[0] "果塔饼干" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -38528,7 +38573,7 @@ msgid "chewy candy" msgid_plural "chewy candy" msgstr[0] "软糖" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "一把五颜六色的果味软糖。" @@ -38538,12 +38583,12 @@ msgid "gummy candy" msgid_plural "gummy candy" msgstr[0] "软糖" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "一把五颜六色的水果味和苏打汽水味的软糖。" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -38587,7 +38632,7 @@ msgid "powder candy sticks" msgid_plural "powder candy sticks" msgstr[0] "粉末糖果棒" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -38657,7 +38702,7 @@ msgid "maple syrup" msgid_plural "maple syrup" msgstr[0] "枫树糖浆" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -38669,7 +38714,7 @@ msgid "sugar beet syrup" msgid_plural "sugar beet syrup" msgstr[0] "甜菜糖浆" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -38718,7 +38763,7 @@ msgid "fast-food French fries" msgid_plural "fast-food French fries" msgstr[0] "快餐法式炸薯条" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "一些快餐油炸薯条。不知为何,它们看上去还能够食用。" @@ -38728,7 +38773,7 @@ msgid "French fries" msgid_plural "French fries" msgstr[0] "法式炸薯条" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "一些加有少许盐的油炸马铃薯,酥脆美味。" @@ -38748,7 +38793,7 @@ msgid "Necco wafers" msgid_plural "Necco wafers" msgstr[0] "彩虹糖" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -38776,8 +38821,8 @@ msgid "caramel" msgid_plural "caramel" msgstr[0] "焦糖" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "一些焦糖。对你的健康没好处。" @@ -38787,7 +38832,7 @@ msgid "caramel apple" msgid_plural "caramel apple" msgstr[0] "焦糖苹果" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "一份油炸的、一片接着一片的马铃薯片。" @@ -38797,7 +38842,7 @@ msgid "tortilla chips" msgid_plural "tortilla chips" msgstr[0] "墨西哥玉米片" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -38809,7 +38854,7 @@ msgid "cheese nachos" msgid_plural "cheese nachos" msgstr[0] "奶酪辣味玉米片" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -38821,28 +38866,25 @@ msgid "meat nachos" msgid_plural "meat nachos" msgstr[0] "加肉辣味玉米片" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "niño辣味玉米片" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "加半兽人肉辣味玉米片" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "变异肉辣味玉米片" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -38854,28 +38896,28 @@ msgid "meat nachos with cheese" msgid_plural "meat nachos with cheese" msgstr[0] "加肉奶酪辣味玉米片" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "niño奶酪辣味玉米片" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "加半兽人肉奶酪辣味玉米片" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "变异肉奶酪辣味玉米片" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -38887,7 +38929,7 @@ msgid "vegetarian nachos" msgid_plural "vegetarian nachos" msgstr[0] "素食辣味玉米片" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -38899,7 +38941,7 @@ msgid "vegetarian nachos with cheese" msgid_plural "vegetarian nachos with cheese" msgstr[0] "素食奶酪辣味玉米片" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -38967,7 +39009,7 @@ msgid "chili dogs" msgid_plural "chili dogs" msgstr[0] "辣椒热狗" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "一个浇头是辣椒肉酱的热狗,香辣可口。" @@ -38977,7 +39019,7 @@ msgid "uncooked corn dogs" msgid_plural "uncooked corn dogs" msgstr[0] "生玉米热狗" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -39011,7 +39053,7 @@ msgstr "一份自制香肠,裹在面糊里炸熟的热狗,比起生的尝起 #: lang/json/COMESTIBLE_from_json.py msgid "chocolate pancake" msgid_plural "chocolate pancakes" -msgstr[0] "巧克力馅饼" +msgstr[0] "巧克力薄饼" #. ~ Description for chocolate pancake #: lang/json/COMESTIBLE_from_json.py @@ -39047,7 +39089,7 @@ msgid "cheese fries" msgid_plural "cheese fries" msgstr[0] "奶酪薯条" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "一些油炸薯条,上面裹着一层奶酪。" @@ -39128,8 +39170,7 @@ msgid "candy-coated peanuts" msgid_plural "candy-coated peanuts" msgstr[0] "糖炒花生" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -39261,30 +39302,24 @@ msgid "raw sausage" msgid_plural "raw sausages" msgstr[0] "生香肠" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "生人肉香肠" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "生半兽人香肠" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -39301,14 +39336,13 @@ msgid "smoked sausage" msgid_plural "smoked sausages" msgstr[0] "熏香肠" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "熏人肉香肠" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -39325,14 +39359,13 @@ msgid "cooked sausage" msgid_plural "cooked sausages" msgstr[0] "熟香肠" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "熟人肉香肠" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -39359,21 +39392,19 @@ msgid "bratwurst" msgid_plural "bratwursts" msgstr[0] "德式香肠" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "德式人肉肠" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "半兽人德式香肠" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -39392,7 +39423,7 @@ msgid "royal beef" msgid_plural "royal beef" msgstr[0] "蜂皇肉排" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -39439,7 +39470,7 @@ msgid "cracklins" msgid_plural "cracklins" msgstr[0] "香脆油渣" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -39453,15 +39484,14 @@ msgid "glazed tenderloins" msgid_plural "glazed tenderloins" msgstr[0] "蜜汁里脊" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" msgid_plural "grisly %s" msgstr[0] "%s(变异肉)" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -39474,23 +39504,21 @@ msgid "currywurst" msgid_plural "currywursts" msgstr[0] "咖喱香肠" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" msgid_plural "cheapskate %s" msgstr[0] "%s(人肉)" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" msgid_plural "confusing %s" msgstr[0] "半兽人%s" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -39509,27 +39537,24 @@ msgid "aspic" msgid_plural "aspics" msgstr[0] "肉冻" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" msgid_plural "abomination %s" msgstr[0] "%s(变异肉)" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" msgid_plural "amoral %s" msgstr[0] "%s(人肉)" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -39549,7 +39574,7 @@ msgid "dehydrated fish" msgid_plural "dehydrated fish" msgstr[0] "脱水鱼肉" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -39561,7 +39586,7 @@ msgid "rehydrated fish" msgid_plural "rehydrated fish" msgstr[0] "水发鱼肉" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -39573,7 +39598,7 @@ msgid "pickled fish" msgid_plural "pickled fish" msgstr[0] "腌鱼" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -39584,7 +39609,7 @@ msgid "canned fish" msgid_plural "canned fish" msgstr[0] "罐装鱼肉" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -39596,7 +39621,7 @@ msgid "batter fried fish" msgid_plural "batter fried fish" msgstr[0] "面拖炸鱼" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "一份金黄色的酥脆炸鱼,油香中富有鱼肉的鲜美,非常美味。" @@ -39614,20 +39639,19 @@ msgstr "一块装满蟹肉的美味油炸糕饼。" #: lang/json/COMESTIBLE_from_json.py msgid "stuffed clam" msgid_plural "stuffed clams" -msgstr[0] "蛤蜊馅饼" +msgstr[0] "面拖蛤蜊" #. ~ Description for stuffed clam #: lang/json/COMESTIBLE_from_json.py msgid "Quahog clams stuffed with bread crumbs and fried." -msgstr "装满了面包糠的圆蛤经过油炸,成了这道蛤蜊馅饼。" +msgstr "装满了面包糠的圆蛤经过油炸,成了这道面拖蛤蜊。" #: lang/json/COMESTIBLE_from_json.py msgid "lunch meat" msgid_plural "lunch meats" msgstr[0] "午餐肉" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -39646,30 +39670,28 @@ msgid "bologna" msgid_plural "bologna" msgstr[0] "博洛尼亚红肠" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" msgid_plural "brat %s" msgstr[0] "%s(人肉)" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" msgid_plural "Tumnis %s" msgstr[0] "半兽人%s" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" msgid_plural "bleak %s" msgstr[0] "%s(变异肉)" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -39696,7 +39718,7 @@ msgid "SPAM" msgid_plural "SPAM" msgstr[0] "午餐肉罐头" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -39731,22 +39753,20 @@ msgid "sausage gravy" msgid_plural "sausage gravies" msgstr[0] "香肠肉汁" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "人肉香肠浓情汤" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "半兽人香肠肉汁" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -39765,30 +39785,28 @@ msgid "pemmican" msgid_plural "pemmican" msgstr[0] "干肉饼" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" msgid_plural "prepper %s" msgstr[0] "%s(人肉)" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" msgid_plural "Orley %s" msgstr[0] "半兽人%s" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" msgid_plural "pernicious %s" msgstr[0] "%s(变异肉)" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -39801,22 +39819,20 @@ msgid "hamburger helper" msgid_plural "hamburger helpers" msgstr[0] "汉堡助手" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "汉堡\"助手\"" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" msgid_plural "halfling helper" msgstr[0] "半兽人汉堡助手" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -39845,22 +39861,20 @@ msgid "chili con carne" msgid_plural "chilis con carne" msgstr[0] "墨西哥辣肉酱" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "墨西哥辣人酱" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "墨西哥辣半兽人酱" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -39876,7 +39890,7 @@ msgid "pork and beans" msgid_plural "pork and beans" msgstr[0] "猪肉豆罐头" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -39888,7 +39902,7 @@ msgid "canned tuna fish" msgid_plural "canned tuna fish" msgstr[0] "罐装金枪鱼" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "本品海豚肉含量已经降低了95%!" @@ -39898,7 +39912,7 @@ msgid "canned salmon" msgid_plural "canned salmon" msgstr[0] "罐装三文鱼" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "罐装的粉红色鱼肉酱!" @@ -39918,7 +39932,7 @@ msgid "pickled herring" msgid_plural "pickled herring" msgstr[0] "腌鲱鱼罐头" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "鱼肉片腌制在某种浓郁白色酱汁的罐头。" @@ -39938,15 +39952,13 @@ msgid "clam chowder" msgid_plural "clam chowders" msgstr[0] "蛤蜊浓汤" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "肉碎浓汤" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -39964,14 +39976,13 @@ msgid "baked beans" msgid_plural "baked beans" msgstr[0] "焗豆" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "变异肉焗豆" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "慢火烹制的豆子,配有一些肉类,美味又管饱。" @@ -39981,14 +39992,13 @@ msgid "meat fried rice" msgid_plural "meat fried rice" msgstr[0] "肉块炒饭" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "变异肉块炒饭" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "配有肉块的炒饭,美味又管饱。" @@ -39998,14 +40008,14 @@ msgid "deluxe beans and rice" msgid_plural "deluxe beans and rice" msgstr[0] "特级豆拌饭" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "极特豆拌饭" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -40017,20 +40027,19 @@ msgid "meat pie" msgid_plural "meat pies" msgstr[0] "肉派" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "人肉派" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "半兽人肉派" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -40047,21 +40056,19 @@ msgid "meat pizza" msgid_plural "meat pizzas" msgstr[0] "肉香披萨" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "人肉披萨" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "半兽人肉披萨" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -40090,28 +40097,27 @@ msgid "deluxe scrambled eggs" msgid_plural "deluxe scrambled eggs" msgstr[0] "特级炒蛋" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "特级炒笨蛋" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "特级炒鸟人蛋" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "极特炒蛋" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -40123,14 +40129,13 @@ msgid "canned meat" msgid_plural "canned meats" msgstr[0] "罐装肉" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "罐装人肉" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -40148,14 +40153,13 @@ msgid "salted meat slice" msgid_plural "salted meat slices" msgstr[0] "腌肉片" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "腌人肉片" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -40172,29 +40176,27 @@ msgid "spaghetti bolognese" msgid_plural "spaghetti bolognese" msgstr[0] "意式番茄牛肉面" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "人肉意面" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" msgid_plural "speaking spaghetti" msgstr[0] "半兽人意面" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" msgid_plural "gnarly %s" msgstr[0] "长瘤的%s" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "软糯的口感,美味的肉汁,让你欲罢不能。" @@ -40204,22 +40206,21 @@ msgid "lasagne" msgid_plural "lasagnes" msgstr[0] "千层面" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" msgid_plural "Luigi %s" msgstr[0] "%s(人肉)" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" msgid_plural "Lab %s" -msgstr[0] "%s(半兽人)" +msgstr[0] "半兽人%s" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -40238,7 +40239,7 @@ msgid "fried SPAM" msgid_plural "fried SPAM" msgstr[0] "煎午餐肉" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "被油炸过,这块午餐肉其实非常美味。" @@ -40248,24 +40249,22 @@ msgid "cheeseburger" msgid_plural "cheeseburgers" msgstr[0] "奶酪汉堡包" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" msgid_plural "chump %s" msgstr[0] "%s(人肉)" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "elf %s" msgid_plural "elf %s" -msgstr[0] "%s(半兽人)" +msgstr[0] "半兽人%s" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -40296,21 +40295,19 @@ msgid "hamburger" msgid_plural "hamburgers" msgstr[0] "汉堡包" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "人肉汉堡包" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "半兽人汉堡包" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -40327,21 +40324,19 @@ msgid "sloppy joe" msgid_plural "sloppy joes" msgstr[0] "碎肉三明治" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "仨明治" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "半兽人调羹汉堡" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -40360,22 +40355,21 @@ msgid "taco" msgid_plural "tacos" msgstr[0] "墨西哥卷饼" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" msgid_plural "tio %s" msgstr[0] "%s(人肉)" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" msgid_plural "talking %s" -msgstr[0] "%s(半兽人)" +msgstr[0] "半兽人%s" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -40396,14 +40390,13 @@ msgid "pickled meat" msgid_plural "pickled meats" msgstr[0] "腌肉" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "腌人肉" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -40421,22 +40414,19 @@ msgid "dehydrated meat" msgid_plural "dehydrated meats" msgstr[0] "脱水肉块" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" msgid_plural "%s, human" msgstr[0] "%s(人肉)" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -40467,9 +40457,8 @@ msgid "haggis" msgid_plural "haggises" msgstr[0] "肉馅羊肚" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -40491,7 +40480,7 @@ msgid "fish makizushi" msgid_plural "fish makizushi" msgstr[0] "鱼寿司" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -40503,15 +40492,14 @@ msgid "meat temaki" msgid_plural "meat temaki" msgstr[0] "肉手卷" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" msgid_plural "troubling %s" msgstr[0] "令人担忧的%s" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -40523,7 +40511,7 @@ msgid "sashimi" msgid_plural "sashimi" msgstr[0] "鱼刺身" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "用切成薄片的生鱼片,与美味的蔬菜所组成的寿司。" @@ -40545,7 +40533,7 @@ msgid "pelmeni" msgid_plural "pelmenis" msgstr[0] "俄式饺子" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -40564,8 +40552,7 @@ msgid "homemade burrito" msgid_plural "homemade burritos" msgstr[0] "自制玉米卷饼" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -40584,14 +40571,13 @@ msgid "raw meatball" msgid_plural "raw meatballs" msgstr[0] "生肉丸" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "生肉丸(人肉)" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -40608,14 +40594,13 @@ msgid "meatball" msgid_plural "meatballs" msgstr[0] "炸肉丸" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "炸肉丸(人肉)" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -40649,12 +40634,12 @@ msgid "prescription stimulant" msgid_plural "prescription stimulant" msgstr[0] "处方兴奋剂" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "你服用了一些兴奋剂。" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -40698,7 +40683,7 @@ msgid "antibiotics" msgid_plural "antibiotics" msgstr[0] "抗生素" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -40723,7 +40708,7 @@ msgid "antiparasitic drug" msgid_plural "antiparasitic drug" msgstr[0] "抗寄生药" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -40795,7 +40780,7 @@ msgid "antiseptic powder" msgid_plural "antiseptic powder" msgstr[0] "医用抗菌粉" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -40847,7 +40832,7 @@ msgid "hydrogen peroxide" msgid_plural "hydrogen peroxide" msgstr[0] "过氧化氢" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -40897,12 +40882,12 @@ msgid "codeine" msgid_plural "codeine" msgstr[0] "可待因" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "你服用了一些可待因。" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -40915,7 +40900,7 @@ msgid "cocaine" msgid_plural "cocaine" msgstr[0] "可卡因" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -40954,7 +40939,7 @@ msgid "cotton balls" msgid_plural "cotton balls" msgstr[0] "棉花球" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -40967,12 +40952,12 @@ msgid "crack" msgid_plural "crack" msgstr[0] "快克" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "你吸食了快克可卡因,妈妈会为你骄傲的。" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -40984,7 +40969,7 @@ msgid "non-drowsy cough syrup" msgid_plural "non-drowsy cough syrup" msgstr[0] "抗感冒药水(白)" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -40997,7 +40982,7 @@ msgid "antiseptic" msgid_plural "antiseptic" msgstr[0] "抗菌剂" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "一份强效的抗菌剂,用于清洁伤口。" @@ -41018,7 +41003,7 @@ msgid "prescription sedative" msgid_plural "prescription sedative" msgstr[0] "处方镇静剂" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -41030,12 +41015,12 @@ msgid "high quality shatter" msgid_plural "high quality shatter" msgstr[0] "高纯度大麻块" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "你服用了一些大麻块。哇哦,里面的大麻萜烯可真够劲!" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -41052,12 +41037,12 @@ msgid "high quality wax" msgid_plural "high quality wax" msgstr[0] "高纯度大麻蜡" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "你服用了一些大麻蜡。*咳咳*好货色!" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -41073,12 +41058,12 @@ msgid "high quality crude oil" msgid_plural "high quality crude oil" msgstr[0] "高纯度大麻油" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "你吸食了一些大麻油。这可不是啥好货色。" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -41091,16 +41076,14 @@ msgid "low quality crude oil" msgid_plural "low quality crude oil" msgstr[0] "低纯度大麻油" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "你吸食了一些低级大麻油。这玩意太烂了。" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -41113,7 +41096,7 @@ msgid "(ethanol) low quality crude oil" msgid_plural "(ethanol) low quality crude oil" msgstr[0] "低纯度大麻油(乙醇)" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -41126,7 +41109,7 @@ msgid "(ethanol) high quality crude oil" msgid_plural "(ethanol) high quality crude oil" msgstr[0] "高纯度大麻油(乙醇)" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -41139,7 +41122,7 @@ msgid "(ethanol) filtered low quality crude oil" msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "低纯度大麻油(已过滤)" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -41152,7 +41135,7 @@ msgid "(ethanol) filtered high quality crude oil" msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "高纯度大麻油(已过滤)" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -41165,7 +41148,7 @@ msgid "filtered low quality crude oil" msgid_plural "filtered low quality crude oil" msgstr[0] "低纯度大麻油(已蒸馏)" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -41180,7 +41163,7 @@ msgid "filtered high quality crude oil" msgid_plural "filtered high quality crude oil" msgstr[0] "高纯度大麻油(已蒸馏)" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -41195,7 +41178,7 @@ msgid "high quality distillate (heads)" msgid_plural "high quality distillate (heads)" msgstr[0] "高纯度大麻馏分(头)" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -41208,7 +41191,7 @@ msgid "high quality distillate (tails)" msgid_plural "high quality distillate (tails)" msgstr[0] "高纯度大麻馏分(尾)" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -41221,12 +41204,12 @@ msgid "high quality distillate" msgid_plural "high quality distillate" msgstr[0] "高纯度大麻提取液" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "你服用了一些大麻提取液。*咳咳*好货色!" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -41303,7 +41286,7 @@ msgid "chewing gum" msgid_plural "chewing gum" msgstr[0] "口香糖" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "亮粉色的无糖口香糖。" @@ -41328,13 +41311,13 @@ msgid "heroin" msgid_plural "heroin" msgstr[0] "海洛因" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "你注射完成。" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -41407,7 +41390,7 @@ msgid "low-grade methamphetamine" msgid_plural "low-grade methamphetamine" msgstr[0] "劣质冰毒" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -41420,7 +41403,7 @@ msgid "high-grade methamphetamine" msgid_plural "high-grade methamphetamine" msgstr[0] "高纯冰毒" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -41469,7 +41452,7 @@ msgid "cough syrup" msgid_plural "cough syrup" msgstr[0] "抗感冒药水(黑)" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -41498,7 +41481,7 @@ msgid "sleeping pill" msgid_plural "sleeping pill" msgstr[0] "安眠药" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -41540,7 +41523,7 @@ msgid "poppy cough syrup" msgid_plural "poppy cough syrup" msgstr[0] "罂粟咳嗽糖浆" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "变异罂粟制成的咳嗽糖浆。会让你困倦。" @@ -41550,15 +41533,14 @@ msgid "injectable prophylactic antivenom" msgid_plural "injectable prophylactic antivenom" msgstr[0] "预防性抗毒药注射液" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "你将一支抗毒药注射进你的手臂。你感觉有点反胃。" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -41572,7 +41554,7 @@ msgid "antidepressant" msgid_plural "antidepressant" msgstr[0] "抗抑郁药" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -41602,7 +41584,7 @@ msgid "hemostatic powder" msgid_plural "hemostatic powder" msgstr[0] "止血粉" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -41626,7 +41608,7 @@ msgid "antipsychotic" msgid_plural "antipsychotic" msgstr[0] "安定药" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -41867,12 +41849,12 @@ msgid "marijuana" msgid_plural "marijuana" msgstr[0] "大麻叶片" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "你吸了一口大麻。真是痛快!" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -41885,7 +41867,7 @@ msgid "fast-acting sedative" msgid_plural "fast-acting sedative" msgstr[0] "速效镇静剂" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -41910,7 +41892,7 @@ msgid "antiseptic soaked cotton balls" msgid_plural "antiseptic soaked cotton balls" msgstr[0] "抗菌棉花球" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -41922,7 +41904,7 @@ msgid "narrow-spectrum antibiotics" msgid_plural "narrow-spectrum antibiotics" msgstr[0] "窄谱抗生素" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -41986,7 +41968,7 @@ msgid "broad-spectrum antibiotics" msgid_plural "broad-spectrum antibiotics" msgstr[0] "广谱抗生素" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -42000,7 +41982,7 @@ msgid "cocaine topical cream" msgid_plural "cocaine topical cream" msgstr[0] "外用可卡因药膏" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -42442,7 +42424,7 @@ msgid "alpha serum" msgid_plural "alpha serum" msgstr[0] "新人类诱变血清" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -42656,27 +42638,26 @@ msgstr "超浓缩的诱变剂,里面隐约悬浮着一些白色的丝状物。 #: lang/json/COMESTIBLE_from_json.py msgid "snail serum" msgid_plural "snail serums" -msgstr[0] "" +msgstr[0] "蜗牛诱变血清" #. ~ Description for snail serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen with the consistency of snot. You need a " "syringe to inject it… if you really want to?" -msgstr "" +msgstr "超浓缩的诱变剂,看上去像鼻涕一样浓稠。你需要一根针管来注射它……如果你真的想用的话。" #: lang/json/COMESTIBLE_from_json.py msgid "batrachian serum" msgid_plural "batrachian serums" -msgstr[0] "" +msgstr[0] "青蛙诱变血清" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" -msgstr "" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" +msgstr "超浓缩的诱变剂,看上去像是池水……里面的阴影在动吗?你需要一根针管来注射它……如果你真的想用的话。" #: lang/json/COMESTIBLE_from_json.py msgid "troglobite serum" @@ -42736,7 +42717,7 @@ msgid "alpha mutagen" msgid_plural "alpha mutagen" msgstr[0] "新人类诱变剂" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -42832,24 +42813,25 @@ msgstr[0] "蜘蛛诱变剂" #: lang/json/COMESTIBLE_from_json.py msgid "batrachian mutagen" msgid_plural "batrachian mutagens" -msgstr[0] "" +msgstr[0] "青蛙诱变剂" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." -msgstr "" +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." +msgstr "内含许多阴影的诱变剂,看起来好像里面满是游来游去的小蝌蚪。" #: lang/json/COMESTIBLE_from_json.py msgid "snail mutagen" msgid_plural "snail mutagens" -msgstr[0] "" +msgstr[0] "蜗牛诱变剂" #. ~ Description for snail mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" "A mutagen that looks awfully like the slime from an old children's network." -msgstr "" +msgstr "一种诱变剂,看起来像是来自老旧的儿童电视节目中的史莱姆。" #: lang/json/COMESTIBLE_from_json.py msgid "troglobite mutagen" @@ -42968,7 +42950,7 @@ msgid "pine nuts" msgid_plural "pine nuts" msgstr[0] "松籽" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "一把从松果里剥出来的松籽,又香又脆。" @@ -42978,7 +42960,7 @@ msgid "junipers" msgid_plural "junipers" msgstr[0] "杜松子" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -42990,7 +42972,7 @@ msgid "shelled pistachios" msgid_plural "shelled pistachios" msgstr[0] "去壳开心果" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -43001,7 +42983,7 @@ msgid "roasted pistachios" msgid_plural "roasted pistachios" msgstr[0] "烤开心果" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "一把开心果,已经烤熟了。" @@ -43011,7 +42993,7 @@ msgid "shelled almonds" msgid_plural "shelled almonds" msgstr[0] "去壳扁桃仁" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "一把扁桃仁,已经去壳了。" @@ -43021,7 +43003,7 @@ msgid "almond pulp" msgid_plural "almond pulp" msgstr[0] "扁桃渣" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -43032,7 +43014,7 @@ msgid "roasted almonds" msgid_plural "roasted almonds" msgstr[0] "烤扁桃仁" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "一把扁桃仁,已经烤熟了。" @@ -43042,7 +43024,7 @@ msgid "cashews" msgid_plural "cashews" msgstr[0] "腰果" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "一把盐焗腰果。" @@ -43052,7 +43034,7 @@ msgid "shelled pecans" msgid_plural "shelled pecans" msgstr[0] "去壳美洲山核桃" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -43064,7 +43046,7 @@ msgid "roasted pecans" msgid_plural "roasted pecans" msgstr[0] "烤美洲山核桃" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "一把美洲山核桃,已经烤熟了。" @@ -43074,7 +43056,7 @@ msgid "shelled peanuts" msgid_plural "shelled peanuts" msgstr[0] "去壳花生" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "一把去壳盐煮花生。" @@ -43084,7 +43066,7 @@ msgid "beech nuts" msgid_plural "beech nuts" msgstr[0] "榉实" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "一把美洲山毛榉树的带刺果实。" @@ -43094,7 +43076,7 @@ msgid "shelled walnuts" msgid_plural "shelled walnuts" msgstr[0] "去壳核桃" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -43106,7 +43088,7 @@ msgid "roasted walnuts" msgid_plural "roasted walnuts" msgstr[0] "烤核桃" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "一把核桃,已经烤熟了。" @@ -43116,7 +43098,7 @@ msgid "shelled chestnuts" msgid_plural "shelled chestnuts" msgstr[0] "去壳栗子" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -43128,7 +43110,7 @@ msgid "roasted chestnuts" msgid_plural "roasted chestnuts" msgstr[0] "烤栗子" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "一把栗子,已经烤熟了。" @@ -43138,7 +43120,7 @@ msgid "shelled hazelnuts" msgid_plural "shelled hazelnuts" msgstr[0] "去壳榛子" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -43150,7 +43132,7 @@ msgid "roasted edamame" msgid_plural "roasted edamame" msgstr[0] "烤毛豆" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "烤毛豆,有益心脏的健康零食。" @@ -43160,7 +43142,7 @@ msgid "roasted soy nuts" msgid_plural "roasted soy nuts" msgstr[0] "烤大豆" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "烤大豆,通常被称为烤豆子。" @@ -43170,7 +43152,7 @@ msgid "roasted hazelnuts" msgid_plural "roasted hazelnuts" msgstr[0] "烤榛子" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "一把榛子,已经烤熟了。" @@ -43180,7 +43162,7 @@ msgid "shelled hickory nuts" msgid_plural "shelled hickory nuts" msgstr[0] "去壳山核桃" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -43192,7 +43174,7 @@ msgid "roasted hickory nuts" msgid_plural "roasted hickory nuts" msgstr[0] "烤山核桃" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "一把山核桃,已经烤熟了。" @@ -43244,19 +43226,19 @@ msgid "acorns" msgid_plural "acorns" msgstr[0] "橡实" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " "taste terribly bitter and can upset your stomach." -msgstr "" +msgstr "一把橡子,还带着壳。松鼠的挚爱,当然你不是松鼠,味道非常苦,让你感到恶心。" #: lang/json/COMESTIBLE_from_json.py msgid "roasted acorns" msgid_plural "roasted acorns" msgstr[0] "烤橡实" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "一把橡实,已经烤熟了。" @@ -43266,7 +43248,7 @@ msgid "cooked acorn meal" msgid_plural "cooked acorn meal" msgstr[0] "煮橡子面" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -43278,7 +43260,7 @@ msgid "foie gras" msgid_plural "foie gras" msgstr[0] "鹅肝酱" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -43289,7 +43271,7 @@ msgid "liver & onions" msgid_plural "liver & onions" msgstr[0] "洋葱炒肝" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "一道经典的食用肝脏的菜式。" @@ -43339,7 +43321,7 @@ msgid "leverpostej" msgid_plural "leverpostej" msgstr[0] "丹麦式肉酱" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -43430,14 +43412,14 @@ msgstr "用动物的肠子制成的肠衣,可以用来装香肠。" #: lang/json/COMESTIBLE_from_json.py msgid "artifical sausage casing" msgid_plural "artifical sausage casings" -msgstr[0] "" +msgstr[0] "人造肠衣" #. ~ Description for artifical sausage casing #: lang/json/COMESTIBLE_from_json.py msgid "" "Sausage casings made from plastic bags. Ready to be used for forming meat " "products." -msgstr "" +msgstr "用塑料制成的肠衣,可以用来装香肠。" #: lang/json/COMESTIBLE_from_json.py msgid "homemade hot dog" @@ -43538,7 +43520,7 @@ msgid "marloss gelatin" msgid_plural "marloss gelatin" msgstr[0] "马洛斯明胶" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -43564,7 +43546,7 @@ msgid "yeast" msgid_plural "yeast" msgstr[0] "酵母" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -43575,7 +43557,7 @@ msgid "bone meal" msgid_plural "bone meal" msgstr[0] "骨粉" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "一份骨粉,可以用来制造肥料和其他物品。" @@ -43585,7 +43567,7 @@ msgid "powdered gelatin" msgid_plural "powdered gelatin" msgstr[0] "明胶粉" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -43596,7 +43578,7 @@ msgid "fresh gelatin" msgid_plural "fresh gelatin" msgstr[0] "新鲜明胶" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "富含明胶的液体。" @@ -43606,7 +43588,7 @@ msgid "tainted bone meal" msgid_plural "tainted bone meal" msgstr[0] "被感染的骨粉" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "腐烂骨头制成的灰色骨粉。" @@ -43616,7 +43598,7 @@ msgid "chitin powder" msgid_plural "chitin powder" msgstr[0] "甲壳粉" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -43659,7 +43641,7 @@ msgid "dried beans" msgid_plural "dried beans" msgstr[0] "干菜豆" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -43671,7 +43653,7 @@ msgid "cooked beans" msgid_plural "cooked beans" msgstr[0] "熟菜豆" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "一份丰盛的水煮大北方豆。" @@ -43681,8 +43663,8 @@ msgid "tofu" msgid_plural "tofu" msgstr[0] "豆腐" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -43699,7 +43681,7 @@ msgid "dehydrated tofu" msgid_plural "dehydrated tofu" msgstr[0] "脱水豆腐" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "脱水豆腐,被密封保存。可以保存相当久的时间不腐坏。" @@ -43709,7 +43691,7 @@ msgid "soybeans" msgid_plural "soybeans" msgstr[0] "大豆" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -43733,7 +43715,7 @@ msgid "dried lentils" msgid_plural "dried lentils" msgstr[0] "干扁豆" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -43744,7 +43726,7 @@ msgid "Foodplace's delicious food™" msgid_plural "Foodplace's delicious food™" msgstr[0] "美食广场美食™" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43757,7 +43739,7 @@ msgid "Foodplace's appropriate snack™" msgid_plural "Foodplace's appropriate snack™" msgstr[0] "美食广场合适小吃™" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "真正食品现在被做成能轻松装进你口袋的合适大小!" @@ -43767,7 +43749,7 @@ msgid "cooked lentils" msgid_plural "cooked lentils" msgstr[0] "熟扁豆" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "一些美味的煮扁豆,普通但营养丰富。" @@ -43777,7 +43759,7 @@ msgid "coffee powder" msgid_plural "coffee powder" msgstr[0] "咖啡粉" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -43789,7 +43771,7 @@ msgid "Kentucky coffee grounds" msgid_plural "Kentucky coffee grounds" msgstr[0] "肯塔基咖啡粉" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -43801,7 +43783,7 @@ msgid "candied honey" msgid_plural "candied honey" msgstr[0] "结晶蜂蜜" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -43837,7 +43819,7 @@ msgid "cattle fodder" msgid_plural "cattle fodder" msgstr[0] "家畜饲料" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -43849,7 +43831,7 @@ msgid "bird food" msgid_plural "bird food" msgstr[0] "鸟食" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -43861,7 +43843,7 @@ msgid "wet dog food" msgid_plural "wet dog food" msgstr[0] "半湿犬粮" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -43873,7 +43855,7 @@ msgid "dry dog food" msgid_plural "dry dog food" msgstr[0] "干犬粮" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -43885,7 +43867,7 @@ msgid "wet cat food" msgid_plural "wet cat food" msgstr[0] "半湿猫粮" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -43897,7 +43879,7 @@ msgid "dry cat food" msgid_plural "dry cat food" msgstr[0] "干猫粮" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -44014,7 +43996,7 @@ msgid "instant coffee mix" msgid_plural "instant coffee mix" msgstr[0] "速溶咖啡粉" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -44050,28 +44032,24 @@ msgid "protein drink" msgid_plural "protein drinks" msgstr[0] "蛋白饮料" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "人肉蛋白饮料" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" msgid_plural "sapient green drink" msgstr[0] "半兽人肉蛋白饮料" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -44090,21 +44068,20 @@ msgid "protein powder" msgid_plural "protein powder" msgstr[0] "蛋白粉" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "Soylent Green人造蛋白粉" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" msgid_plural "sapient green powder" msgstr[0] "半兽人肉蛋白粉" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -44136,14 +44113,13 @@ msgid "protein shake" msgid_plural "protein shakes" msgstr[0] "蛋白混合饮料" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "人肉蛋白混合饮料" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -44162,14 +44138,14 @@ msgid "fortified protein shake" msgid_plural "fortified protein shakes" msgstr[0] "增强型蛋白混合饮料" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" msgid_plural "fortified soylent green shake" msgstr[0] "增强型人肉蛋白混合饮料" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -44234,7 +44210,7 @@ msgid "blueberries" msgid_plural "blueberries" msgstr[0] "蓝莓" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "" @@ -44246,7 +44222,7 @@ msgid "strawberries" msgid_plural "strawberries" msgstr[0] "草莓" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "一把在野外常见的草莓灌木所结出的果实,鲜红的果肉,多汁又美味。" @@ -44256,7 +44232,7 @@ msgid "cranberries" msgid_plural "cranberries" msgstr[0] "蔓越莓" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "一把蔓越莓灌木所结出的红色浆果,很酸,但对健康有益。" @@ -44266,7 +44242,7 @@ msgid "raspberries" msgid_plural "raspberries" msgstr[0] "树莓" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "一把树莓灌木所结出的红色浆果,酸甜可口。" @@ -44276,7 +44252,7 @@ msgid "huckleberries" msgid_plural "huckleberries" msgstr[0] "越橘" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "一把美洲越橘,经常会和蓝莓混淆。" @@ -44286,7 +44262,7 @@ msgid "mulberries" msgid_plural "mulberries" msgstr[0] "桑椹" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -44298,7 +44274,7 @@ msgid "elderberries" msgid_plural "elderberries" msgstr[0] "接骨木果" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "一把接骨木果,生吃有毒,但煮熟后很美味。" @@ -44308,7 +44284,7 @@ msgid "rose hips" msgid_plural "rose hips" msgstr[0] "玫瑰果" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "一把玫瑰果,是经过授粉后的玫瑰花所结的果实。" @@ -44350,7 +44326,7 @@ msgid "cherries" msgid_plural "cherries" msgstr[0] "樱桃" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "一把樱桃树结出的红色果实,很甜。" @@ -44371,7 +44347,7 @@ msgid "grapes" msgid_plural "grapes" msgstr[0] "葡萄" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "" @@ -44435,7 +44411,7 @@ msgid "blackberries" msgid_plural "blackberries" msgstr[0] "黑莓" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "一些原产地北美洲的黑莓,有着非常丰富的营养价值。" @@ -44488,7 +44464,7 @@ msgid "apricots" msgid_plural "apricots" msgstr[0] "杏子" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "一把杏子,表皮很光滑,有着味甜多汁的暗黄色果肉,是桃子的近亲。" @@ -44525,7 +44501,7 @@ msgid "bee balm" msgid_plural "bee balm" msgstr[0] "香蜂草" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -44536,7 +44512,7 @@ msgid "broccoli" msgid_plural "broccoli" msgstr[0] "西兰花" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "尝起来有一点苦涩,不过只有一点点,剩下的是满满的好吃。" @@ -44546,7 +44522,7 @@ msgid "buckwheat" msgid_plural "buckwheat" msgstr[0] "荞麦" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -44568,7 +44544,7 @@ msgid "spinach" msgid_plural "spinach" msgstr[0] "菠菜" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "一堆菠菜叶子。" @@ -44617,7 +44593,7 @@ msgid "celery" msgid_plural "celery" msgstr[0] "芹菜" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "一种既不好吃也不很有营养的蔬菜,但它的口感很适合沙拉。" @@ -44639,7 +44615,7 @@ msgid "corn kernels" msgid_plural "corn kernels" msgstr[0] "玉米粒" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "美味的金黄色颗粒。" @@ -44649,7 +44625,7 @@ msgid "empty corn cob" msgid_plural "empty corn cob" msgstr[0] "玉米芯" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -44705,7 +44681,7 @@ msgid "salsify" msgid_plural "salsify" msgstr[0] "蒜叶婆罗门参" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -44718,7 +44694,7 @@ msgid "chicory" msgid_plural "chicory" msgstr[0] "菊苣菜" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -44833,7 +44809,7 @@ msgid "raw popcorn" msgid_plural "raw popcorn" msgstr[0] "爆米花玉米" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -44869,7 +44845,7 @@ msgid "horseradish greens" msgid_plural "horseradish greens" msgstr[0] "辣根叶" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -44881,7 +44857,7 @@ msgid "dandelions" msgid_plural "dandelions" msgstr[0] "蒲公英" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -44895,7 +44871,7 @@ msgid "burdocks" msgid_plural "burdocks" msgstr[0] "牛蒡" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "牛蒡,一种苦涩的蓟类蔬菜。可以生吃或煮熟。" @@ -44985,7 +44961,7 @@ msgid "wild vegetables" msgid_plural "wild vegetables" msgstr[0] "野菜" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -45017,7 +44993,7 @@ msgid "raw beans" msgid_plural "raw beans" msgstr[0] "生菜豆" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -45029,7 +45005,7 @@ msgid "raw lentils" msgid_plural "raw lentils" msgstr[0] "生扁豆" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "生扁豆,可以煮熟用以果腹。" @@ -45039,7 +45015,7 @@ msgid "fiddleheads" msgid_plural "fiddleheads" msgstr[0] "蕨菜" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -45073,8 +45049,7 @@ msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" msgstr[0] "特级三明治" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -45087,6 +45062,25 @@ msgid "" "nutritious!" msgstr "这个三明治里塞满了美味的碎肉、奶酪和调料。灾前烹饪工艺的巅峰之作。" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "鲁宾三明治" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "鲁宾三明治(变异肉)" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "一款大灾变前的经典美食,可能含有特别的配方成分。关键成分是特制酱汁和德式酸菜,配上面包、肉和奶酪在锅里煎熟。" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -45142,7 +45136,7 @@ msgid "fairy bread" msgid_plural "fairy bread" msgstr[0] "彩糖面包" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -45186,24 +45180,21 @@ msgid "meat sandwich" msgid_plural "meat sandwiches" msgstr[0] "火腿三明治" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "仨明治" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "半兽仨明治" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -45310,7 +45301,7 @@ msgid "mushroom spores" msgid_plural "mushroom spores" msgstr[0] "杂菌菇孢子" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "一些蘑菇孢子。" @@ -45320,7 +45311,7 @@ msgid "hop rhizomes" msgid_plural "hop rhizomes" msgstr[0] "啤酒花根茎" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "啤酒花的根茎,你可以用它来种出你自己的啤酒花。" @@ -45334,7 +45325,7 @@ msgid "blackberry seeds" msgid_plural "blackberry seeds" msgstr[0] "黑莓种子" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "一些黑莓种子。" @@ -45348,7 +45339,7 @@ msgid "blueberry seeds" msgid_plural "blueberry seeds" msgstr[0] "蓝莓种子" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "一些蓝莓种子。" @@ -45362,7 +45353,7 @@ msgid "cranberry seeds" msgid_plural "cranberry seeds" msgstr[0] "蔓越莓种子" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "一些蔓越莓种子。" @@ -45376,7 +45367,7 @@ msgid "huckleberry seeds" msgid_plural "huckleberry seeds" msgstr[0] "越橘种子" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "一些越橘种子。" @@ -45390,7 +45381,7 @@ msgid "mulberry seeds" msgid_plural "mulberry seeds" msgstr[0] "桑椹种子" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "一些桑椹种子。" @@ -45404,7 +45395,7 @@ msgid "elderberry seeds" msgid_plural "elderberry seeds" msgstr[0] "接骨木种子" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "一些接骨木种子。" @@ -45418,7 +45409,7 @@ msgid "raspberry seeds" msgid_plural "raspberry seeds" msgstr[0] "树莓种子" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "一些树莓种子。" @@ -45432,7 +45423,7 @@ msgid "strawberry seeds" msgid_plural "strawberry seeds" msgstr[0] "草莓种子" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "一些草莓种子。" @@ -45446,7 +45437,7 @@ msgid "grape seeds" msgid_plural "grape seeds" msgstr[0] "葡萄种子" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "一些葡萄种子。" @@ -45460,7 +45451,7 @@ msgid "rose seeds" msgid_plural "rose seeds" msgstr[0] "玫瑰种子" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "一些玫瑰种子。" @@ -45474,7 +45465,7 @@ msgid "tobacco seeds" msgid_plural "tobacco seeds" msgstr[0] "烟草种子" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "一些烟草种子。" @@ -45488,7 +45479,7 @@ msgid "barley seeds" msgid_plural "barley seeds" msgstr[0] "大麦种子" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "一些大麦种子。" @@ -45498,7 +45489,7 @@ msgid "sugar beet seeds" msgid_plural "sugar beet seeds" msgstr[0] "甜菜种子" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "一些甜菜的种子。" @@ -45508,7 +45499,7 @@ msgid "lettuce seeds" msgid_plural "lettuce seeds" msgstr[0] "莴苣种子" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "一些莴苣种子。" @@ -45518,7 +45509,7 @@ msgid "cabbage seeds" msgid_plural "cabbage seeds" msgstr[0] "卷心菜种子" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "一些白卷心菜的种子。" @@ -45528,7 +45519,7 @@ msgid "tomato seeds" msgid_plural "tomato seeds" msgstr[0] "番茄种子" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "一些番茄种子。" @@ -45538,7 +45529,7 @@ msgid "cotton seeds" msgid_plural "cotton seeds" msgstr[0] "棉花种子" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "一些棉花种子。经过处理后可以榨出食用油。" @@ -45552,7 +45543,7 @@ msgid "broccoli seeds" msgid_plural "broccoli seeds" msgstr[0] "西兰花种子" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "一些西兰花种子。" @@ -45562,7 +45553,7 @@ msgid "zucchini seeds" msgid_plural "zucchini seeds" msgstr[0] "西葫芦种子" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "一些西葫芦种子。" @@ -45572,7 +45563,7 @@ msgid "onion seeds" msgid_plural "onion seeds" msgstr[0] "洋葱种子" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "一些洋葱种子。" @@ -45582,7 +45573,7 @@ msgid "garlic seeds" msgid_plural "garlic seeds" msgstr[0] "大蒜种子" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "一些大蒜种子。" @@ -45596,7 +45587,7 @@ msgid "cattail seeds" msgid_plural "cattail seeds" msgstr[0] "香蒲种子" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "一些香蒲种子。" @@ -45610,7 +45601,7 @@ msgid "dahlia seeds" msgid_plural "dahlia seeds" msgstr[0] "大丽花种子" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "一些大丽花种子。" @@ -45624,7 +45615,7 @@ msgid "salsify seeds" msgid_plural "salsify seeds" msgstr[0] "蒜叶婆罗门参种子" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "一些蒜叶婆罗门参种子。" @@ -45634,7 +45625,7 @@ msgid "chicory seeds" msgid_plural "chicory seeds" msgstr[0] "菊苣菜种子" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "一些菊苣菜种子。" @@ -45644,7 +45635,7 @@ msgid "wild root seeds" msgid_plural "wild root seeds" msgstr[0] "野生根茎种子" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "一些野生根茎的白花上的种子。" @@ -45654,7 +45645,7 @@ msgid "decorative plant seeds" msgid_plural "decorative plant seeds" msgstr[0] "园艺植物种子" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -45670,7 +45661,7 @@ msgid "cactus seeds" msgid_plural "cactus seeds" msgstr[0] "仙人掌种子" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "一些仙人掌种子。" @@ -45694,7 +45685,7 @@ msgid "carrot seeds" msgid_plural "carrot seeds" msgstr[0] "胡萝卜种子" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "一些胡萝卜种子。" @@ -45704,7 +45695,7 @@ msgid "corn seeds" msgid_plural "corn seeds" msgstr[0] "玉米种子" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "一些玉米种子。" @@ -45718,7 +45709,7 @@ msgid "chili pepper seeds" msgid_plural "chili pepper seeds" msgstr[0] "辣椒种子" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "一些辣椒种子。" @@ -45728,7 +45719,7 @@ msgid "cucumber seeds" msgid_plural "cucumber seeds" msgstr[0] "黄瓜种子" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "一些黄瓜种子。" @@ -45752,7 +45743,7 @@ msgid "cannabis seeds" msgid_plural "cannabis seeds" msgstr[0] "大麻种子" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -45781,7 +45772,7 @@ msgid "bean seeds" msgid_plural "bean seeds" msgstr[0] "菜豆种子" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "生的,未煮熟的菜豆。可以用于种植。" @@ -45795,7 +45786,7 @@ msgid "soybean seeds" msgid_plural "soybean seeds" msgstr[0] "大豆种子" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "一些大豆种子。" @@ -45804,7 +45795,7 @@ msgstr "一些大豆种子。" msgid "soybean" msgstr "大豆" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "生的,未煮熟的扁豆。可以用于种植。" @@ -45818,7 +45809,7 @@ msgid "thyme seeds" msgid_plural "thyme seeds" msgstr[0] "百里香种子" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "一些百里香种子。" @@ -45833,7 +45824,7 @@ msgid "canola seeds" msgid_plural "canola seeds" msgstr[0] "油菜籽" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "一些油菜籽,你可以把它们榨成油。" @@ -45843,7 +45834,7 @@ msgid "pumpkin seeds" msgid_plural "pumpkin seeds" msgstr[0] "南瓜种子" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "一些生南瓜籽。可以油炸或食用。" @@ -45853,7 +45844,7 @@ msgid "sunflower seeds" msgid_plural "sunflower seeds" msgstr[0] "向日葵种子" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "一些向日葵种子。可以榨出油。" @@ -45869,7 +45860,7 @@ msgid "dogbane seeds" msgid_plural "dogbane seeds" msgstr[0] "罗布麻种子" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "一些罗布麻种子。" @@ -45879,7 +45870,7 @@ msgid "bee balm seeds" msgid_plural "bee balm seeds" msgstr[0] "香蜂草种子" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "一些香蜂草种子。" @@ -45889,7 +45880,7 @@ msgid "mugwort seeds" msgid_plural "mugwort seeds" msgstr[0] "艾草种子" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "一些艾草种子。" @@ -45899,7 +45890,7 @@ msgid "buckwheat seeds" msgid_plural "buckwheat seeds" msgstr[0] "荞麦种子" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "一些荞麦种子。" @@ -45909,7 +45900,7 @@ msgid "wild herb seeds" msgid_plural "wild herb seeds" msgstr[0] "野生药草种子" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "一些从野生草药中获得的种子。" @@ -45923,7 +45914,7 @@ msgid "wild vegetable stems" msgid_plural "wild vegetable stems" msgstr[0] "野菜茎干" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "一些野菜茎干。" @@ -45937,7 +45928,7 @@ msgid "dandelion seeds" msgid_plural "dandelion seeds" msgstr[0] "蒲公英种子" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "一些蒲公英种子。" @@ -45951,7 +45942,7 @@ msgid "burdock seeds" msgid_plural "burdock seeds" msgstr[0] "牛蒡种子" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "一些牛蒡种子。" @@ -45965,7 +45956,7 @@ msgid "rhubarb stems" msgid_plural "rhubarb stems" msgstr[0] "大黄根茎" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "一些大黄根茎。" @@ -45975,7 +45966,7 @@ msgid "morel mushroom spores" msgid_plural "morel mushroom spores" msgstr[0] "羊肚菌孢子" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "一些羊肚菌孢子。" @@ -45985,7 +45976,7 @@ msgid "datura seeds" msgid_plural "datura seeds" msgstr[0] "曼陀罗花种子" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -46002,7 +45993,7 @@ msgid "celery seeds" msgid_plural "celery seeds" msgstr[0] "芹菜种子" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "一些芹菜种子。" @@ -46012,7 +46003,7 @@ msgid "oat seeds" msgid_plural "oat seeds" msgstr[0] "燕麦种子" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "一些燕麦种子。" @@ -46027,7 +46018,7 @@ msgid "wheat seeds" msgid_plural "wheat seeds" msgstr[0] "小麦种子" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "一些小麦种子。" @@ -46042,7 +46033,7 @@ msgid "fried seeds" msgid_plural "fried seeds" msgstr[0] "炒种子" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -46068,7 +46059,7 @@ msgid "coffee beans" msgid_plural "coffee beans" msgstr[0] "咖啡豆" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "一些咖啡豆,可以进行烘焙加工。" @@ -46078,7 +46069,7 @@ msgid "roasted coffee beans" msgid_plural "roasted coffee beans" msgstr[0] "烘焙咖啡豆" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "一些烘焙后的咖啡豆,可以磨成粉末状。" @@ -46088,7 +46079,7 @@ msgid "chamomile seeds" msgid_plural "chamomile seeds" msgstr[0] "洋甘菊种子" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "一些洋甘菊种子。" @@ -46102,7 +46093,7 @@ msgid "spurge seeds" msgid_plural "spurge seeds" msgstr[0] "大戟花种子" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "一些大戟花种子。" @@ -46116,7 +46107,7 @@ msgid "popcorn seeds" msgid_plural "popcorn seeds" msgstr[0] "爆米花玉米种子" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "一些爆米花玉米种子。" @@ -46126,7 +46117,7 @@ msgid "horseradish seeds" msgid_plural "horseradish seeds" msgstr[0] "辣根种子" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "一些辣根种子。" @@ -46136,7 +46127,7 @@ msgid "mustard seeds" msgid_plural "mustard seeds" msgstr[0] "芥末种子" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "一些芥末种子。可以磨成粉末状。" @@ -46146,7 +46137,7 @@ msgid "bell pepper seeds" msgid_plural "bell pepper seeds" msgstr[0] "灯笼椒种子" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "一些灯笼椒种子。" @@ -46166,8 +46157,7 @@ msgid "bone broth" msgid_plural "bone broths" msgstr[0] "炖骨汤" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -46194,14 +46184,13 @@ msgid "meat soup" msgid_plural "meat soups" msgstr[0] "肉汤" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "人肉汤" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -46237,8 +46226,7 @@ msgid "curry with meat" msgid_plural "curries with meat" msgstr[0] "咖喱炖肉" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -46254,10 +46242,8 @@ msgid "woods meat soup" msgid_plural "woods meat soups" msgstr[0] "森林杂烩肉汤" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -46315,7 +46301,7 @@ msgid "chicken and dumplings" msgid_plural "chicken and dumplings" msgstr[0] "鸡丁馄饨汤" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "罐装鸡汤,能看到鸡块和小面团。味道不错。" @@ -46337,7 +46323,7 @@ msgid "chili powder" msgid_plural "chili powder" msgstr[0] "辣椒粉" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -46349,7 +46335,7 @@ msgid "hot sauce" msgid_plural "hot sauce" msgstr[0] "辣酱" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -46361,7 +46347,7 @@ msgid "cinnamon" msgid_plural "cinnamon" msgstr[0] "肉桂" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "磨碎的肉桂皮,有点清甜而微辣的芳香。" @@ -46371,7 +46357,7 @@ msgid "curry powder" msgid_plural "curry powder" msgstr[0] "咖喱粉" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -46383,7 +46369,7 @@ msgid "black pepper" msgid_plural "black pepper" msgstr[0] "黑胡椒末" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "辛辣的黑浆果调味品。" @@ -46393,7 +46379,7 @@ msgid "salt" msgid_plural "salt" msgstr[0] "盐" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -46405,7 +46391,7 @@ msgid "Italian seasoning" msgid_plural "Italian seasoning" msgstr[0] "意大利香料" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "一份牛至草、罗勒叶、百里香、等香料的混合物。" @@ -46415,7 +46401,7 @@ msgid "seasoned salt" msgid_plural "seasoned salt" msgstr[0] "调味盐" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "混合了一些神秘药草和香料的盐。" @@ -46425,7 +46411,7 @@ msgid "sugar" msgid_plural "sugar" msgstr[0] "糖" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -46439,7 +46425,7 @@ msgid "sprinkles" msgid_plural "sprinkles" msgstr[0] "彩糖" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -46453,7 +46439,7 @@ msgid "wild herbs" msgid_plural "wild herbs" msgstr[0] "野生药草" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -46465,7 +46451,7 @@ msgid "soy sauce" msgid_plural "soy sauce" msgstr[0] "酱油" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "" @@ -46482,7 +46468,7 @@ msgid "mustard powder" msgid_plural "mustard powder" msgstr[0] "芥末粉" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "一种有香气的黄色粉末。还不能食用。" @@ -46528,7 +46514,7 @@ msgid "starch" msgid_plural "starch" msgstr[0] "淀粉浆" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -46540,7 +46526,7 @@ msgid "cooked dandelion greens" msgid_plural "cooked dandelion greens" msgstr[0] "煮蒲公英叶" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "一份煮熟的蒲公英叶片,美味且营养丰富,有助于健康。" @@ -46550,7 +46536,7 @@ msgid "fried dandelions" msgid_plural "fried dandelions" msgstr[0] "面拖蒲公英" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -46563,7 +46549,7 @@ msgid "cooked burdock greens" msgid_plural "cooked burdock greens" msgstr[0] "煮牛蒡叶" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "一份煮熟的牛蒡叶片,美味且营养丰富,有助于健康。" @@ -46573,7 +46559,7 @@ msgid "fried burdocks" msgid_plural "fried burdocks" msgstr[0] "面拖牛蒡" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -46611,7 +46597,7 @@ msgid "cooked wild vegetables" msgid_plural "cooked wild vegetables" msgstr[0] "炖野菜" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "一份摘挑后再煮熟的野菜,可以直接食用或用作其他料理之中。" @@ -46632,7 +46618,7 @@ msgid "cooked buckwheat" msgid_plural "cooked buckwheat" msgstr[0] "煮荞麦" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -46643,7 +46629,7 @@ msgid "canned corn" msgid_plural "canned corn" msgstr[0] "玉米罐头" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "罐装玉米。吃掉它!" @@ -46653,7 +46639,7 @@ msgid "corn on the cob" msgid_plural "corn on the cob" msgstr[0] "烤玉米棒" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "用锡纸包着烤熟的玉米棒。" @@ -46663,7 +46649,7 @@ msgid "pan roasted corn" msgid_plural "pan roasted corn" msgstr[0] "盘烤玉米棒" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "在煎锅里用香草和香料烤熟的玉米棒。" @@ -46673,7 +46659,7 @@ msgid "hominy" msgid_plural "hominy" msgstr[0] "玉米糁" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -46685,7 +46671,7 @@ msgid "cornmeal" msgid_plural "cornmeal" msgstr[0] "玉米面" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "这黄色的玉米面可以用来做成面包。" @@ -46695,7 +46681,7 @@ msgid "vegetarian baked beans" msgid_plural "vegetarian baked beans" msgstr[0] "蔬菜焗豆" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "慢火烹制的豆子,配有一些蔬菜,美味又管饱。" @@ -46705,7 +46691,7 @@ msgid "dried rice" msgid_plural "dried rice" msgstr[0] "干米" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -46717,7 +46703,7 @@ msgid "cooked rice" msgid_plural "cooked rice" msgstr[0] "熟米饭" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "一份热腾腾香喷喷的米饭。" @@ -46727,7 +46713,7 @@ msgid "fried rice" msgid_plural "fried rice" msgstr[0] "炒饭" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "配有蔬菜的炒饭,美味又管饱。" @@ -46737,7 +46723,7 @@ msgid "beans and rice" msgid_plural "beans and rice" msgstr[0] "豆拌饭" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -46749,7 +46735,7 @@ msgid "tofu fried rice" msgid_plural "tofu fried rice" msgstr[0] "豆腐炒饭" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "配有蔬菜的豆腐炒饭,美味又管饱。" @@ -46759,7 +46745,7 @@ msgid "tofu stirfry" msgid_plural "tofu stirfry" msgstr[0] "爆炒豆腐" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -46771,7 +46757,7 @@ msgid "deluxe vegetarian beans and rice" msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "特级素豆饭" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -46840,7 +46826,7 @@ msgid "pesto" msgid_plural "pesto" msgstr[0] "香蒜沙司" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "橄榄油,紫苏,大蒜,松子。简单而美味。" @@ -46874,7 +46860,7 @@ msgid "spaghetti al pesto" msgid_plural "spaghetti al pesto" msgstr[0] "香蒜意面" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "上面覆盖着厚厚一层香蒜酱的意大利面。非常好吃!" @@ -46895,7 +46881,7 @@ msgid "sauerkraut w/ sautee'd onions" msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "德式酸菜炒洋葱" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -46933,7 +46919,7 @@ msgid "dehydrated corn kernels" msgid_plural "dehydrated corn kernels" msgstr[0] "脱水玉米粒" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "一把脱水玉米粒。" @@ -46955,7 +46941,7 @@ msgid "rehydrated corn kernels" msgid_plural "rehydrated corn kernels" msgstr[0] "水发玉米粒" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -47025,7 +47011,7 @@ msgid "sushi rice" msgid_plural "sushi rice" msgstr[0] "寿司饭" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "制造寿司时使用的粘醋饭。" @@ -47035,7 +47021,7 @@ msgid "onigiri" msgid_plural "onigiri" msgstr[0] "饭团" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -47047,7 +47033,7 @@ msgid "vegetable hosomaki" msgid_plural "vegetable hosomaki" msgstr[0] "蔬菜细卷" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -47071,7 +47057,7 @@ msgid "sauerkraut" msgid_plural "sauerkraut" msgstr[0] "德式酸菜" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -47093,7 +47079,7 @@ msgid "boiled fiddleheads" msgid_plural "boiled fiddleheads" msgstr[0] "煮蕨菜" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "一份煮熟的蕨菜叶。吃起来还不差,但要是用点黄油煎一下就更棒了。" @@ -47103,7 +47089,7 @@ msgid "sauteed fiddleheads" msgid_plural "sauteed fiddleheads" msgstr[0] "煎蕨菜" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "用油煎过的蕨菜。软嫩而美味。" @@ -47120,7 +47106,7 @@ msgid "" " are removed." msgstr "一份去核并煮熟的灯笼椒。去掉籽之后吃起来更美味。" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "一些生小麦,直接食用不佳。" @@ -47130,7 +47116,7 @@ msgid "raw spaghetti pasta" msgid_plural "raw spaghetti pasta" msgstr[0] "生意大利面" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -47142,7 +47128,7 @@ msgid "raw lasagne pasta" msgid_plural "raw lasagne pasta" msgstr[0] "生千层面" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -47154,7 +47140,7 @@ msgid "boiled noodles" msgid_plural "boiled noodles" msgstr[0] "煮面条" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "新鲜的煮面条,虽然乏味,但比啃树根好。" @@ -47164,7 +47150,7 @@ msgid "raw macaroni" msgid_plural "raw macaroni" msgstr[0] "生通心粉" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "当你饿得不行时,生吃也没什么影响,当然,弄熟了再吃最好不过。" @@ -47174,7 +47160,7 @@ msgid "mac & cheese" msgid_plural "mac & cheese" msgstr[0] "芝士通心粉" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "上面覆盖着奶酪的通心粉,好香啊!" @@ -47184,7 +47170,7 @@ msgid "flour" msgid_plural "flour" msgstr[0] "面粉" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "这白色的面粉可以用来做成面包。" @@ -47194,7 +47180,7 @@ msgid "bread flour" msgid_plural "bread flour" msgstr[0] "高筋面粉" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -47206,14 +47192,14 @@ msgid "oatmeal" msgid_plural "oatmeal" msgstr[0] "生麦片" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "扁平的谷物干片。烹饪后美味和营养并存,干的时候也可以作为马的食物。" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "生燕麦。" @@ -47223,7 +47209,7 @@ msgid "cooked oatmeal" msgid_plural "cooked oatmeal" msgstr[0] "煮麦片" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -47235,7 +47221,7 @@ msgid "deluxe cooked oatmeal" msgid_plural "deluxe cooked oatmeal" msgstr[0] "特级煮麦片" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -47245,7 +47231,7 @@ msgstr "新英格兰经典食物,饱肚子有营养,更加入了新配方。 #: lang/json/COMESTIBLE_from_json.py msgid "pancake" msgid_plural "pancakes" -msgstr[0] "馅饼" +msgstr[0] "薄饼" #. ~ Description for pancake #: lang/json/COMESTIBLE_from_json.py @@ -47255,7 +47241,7 @@ msgstr "用枫糖浆做的松软又美味的煎饼。" #: lang/json/COMESTIBLE_from_json.py msgid "fruit pancake" msgid_plural "fruit pancakes" -msgstr[0] "水果馅饼" +msgstr[0] "水果薄饼" #. ~ Description for fruit pancake #: lang/json/COMESTIBLE_from_json.py @@ -47314,7 +47300,7 @@ msgid "oyster crackers" msgid_plural "oyster crackers" msgstr[0] "牡蛎饼干" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -47346,7 +47332,7 @@ msgid "granola" msgid_plural "granola" msgstr[0] "格兰诺拉燕麦卷" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -47368,7 +47354,7 @@ msgid "fast noodles" msgid_plural "fast noodles" msgstr[0] "方便面" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "一份方便面,是种可在短时间之内用热水泡熟食用的面制食物,亦可直接食用。" @@ -47553,7 +47539,7 @@ msgid "pineapple stem" msgid_plural "pineapple stem" msgstr[0] "菠萝根茎" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "菠萝的根茎,你可以用它来种出你自己的菠萝。" @@ -47563,7 +47549,7 @@ msgid "melon seeds" msgid_plural "melon seeds" msgstr[0] "香瓜种子" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "一些香瓜种子。" @@ -47573,7 +47559,7 @@ msgid "banana saplings" msgid_plural "banana saplings" msgstr[0] "香蕉种苗" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "一些香蕉种苗。" @@ -47583,7 +47569,7 @@ msgid "orange vine" msgid_plural "orange vine" msgstr[0] "橙子种苗" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "一些橘子种苗。肯定是转基因产品。" @@ -47593,7 +47579,7 @@ msgid "lemon vine" msgid_plural "lemon vine" msgstr[0] "柠檬种苗" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "一些柠檬种苗。肯定是转基因产品。" @@ -47603,7 +47589,7 @@ msgid "subterraenean coconut" msgid_plural "subterraenean coconut" msgstr[0] "地下椰子" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "证明人类在大灾变之前走得太远了。" @@ -47648,7 +47634,7 @@ msgid "cooked freezerburned human meat" msgid_plural "cooked freezerburned human meat" msgstr[0] "熟冻伤人肉" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "一块刚煮熟的人肉,有严重的冻伤。" @@ -47690,7 +47676,7 @@ msgid "freezerburned human tallow" msgid_plural "freezerburned human tallow" msgstr[0] "冻伤人油" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -47702,7 +47688,7 @@ msgid "freezerburned human lard" msgid_plural "freezerburned human lard" msgstr[0] "干炼冻伤人油" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -47740,7 +47726,7 @@ msgid "cooked alien flesh" msgid_plural "cooked alien flesh" msgstr[0] "异形熟肉" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -47841,7 +47827,7 @@ msgid "raw alien brains" msgid_plural "raw alien brains" msgstr[0] "异形生脑" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -47854,7 +47840,7 @@ msgid "cooked alien brains" msgid_plural "cooked alien brains" msgstr[0] "异形熟脑" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -47937,7 +47923,7 @@ msgid "alien tallow" msgid_plural "alien tallow" msgstr[0] "异形油脂" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -47950,7 +47936,7 @@ msgid "alien lard" msgid_plural "alien lard" msgstr[0] "干炼异形油脂" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -47963,7 +47949,7 @@ msgid "unidentifiable alien organs" msgid_plural "unidentifiable alien organs" msgstr[0] "未知异形器官" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -47974,7 +47960,7 @@ msgid "alien cracklins" msgid_plural "alien cracklins" msgstr[0] "异形油渣" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -47986,7 +47972,7 @@ msgid "freezerburned human cracklins" msgid_plural "freezerburned human cracklins" msgstr[0] "冻伤人油渣" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -48038,7 +48024,7 @@ msgid "mealgrub spores" msgid_plural "mealgrub spores" msgstr[0] "粉虫孢子" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -48054,7 +48040,7 @@ msgid "mealgrub broth" msgid_plural "mealgrub broth" msgstr[0] "粉虫培养基(待培养)" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -48068,7 +48054,7 @@ msgid "live mealgrubs" msgid_plural "live mealgrubs" msgstr[0] "粉虫培养基(已成熟)" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -48082,7 +48068,7 @@ msgid "mealgrubs" msgid_plural "mealgrubs" msgstr[0] "粉虫" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -48142,7 +48128,7 @@ msgid "H₂O™" msgid_plural "H₂O™" msgstr[0] "H₂O™水" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -48155,7 +48141,7 @@ msgid "food cubes" msgid_plural "food cubes" msgstr[0] "食立方™" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -48166,7 +48152,7 @@ msgid "Foodplace's Food-to-go™" msgid_plural "Foodplace's Food-to-go™" msgstr[0] "美食广场美食条™" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -48188,7 +48174,7 @@ msgid "cee wafers" msgid_plural "cee wafers" msgstr[0] "西威孚™海藻饼干" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -48214,7 +48200,7 @@ msgid "soup, flavor 27" msgid_plural "soup, flavor 27" msgstr[0] "汤™风味27#" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -48228,7 +48214,7 @@ msgid "landfall survival rations" msgid_plural "landfall survival rations" msgstr[0] "着陆救生口粮" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -48244,7 +48230,7 @@ msgid "caffex" msgid_plural "caffex" msgstr[0] "咖啡X™" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -48283,7 +48269,7 @@ msgid "supercritical coolant" msgid_plural "supercritical coolant" msgstr[0] "超临界冷却液" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -48342,7 +48328,7 @@ msgid "SpOreos" msgid_plural "SpOreos" msgstr[0] "孢子奥利奥" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -48362,7 +48348,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "一块外星水凝胶,里面有些细小的不断扭动的斑点。可用于制造物品。你可以“喝”它,但体验肯定不会太好。" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -48633,15 +48619,25 @@ msgid_plural "siats eggs" msgstr[0] "西雅茨龙蛋" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" -msgstr[0] "霸王龙蛋" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" +msgstr[0] "戈尔冈龙蛋" #: lang/json/COMESTIBLE_from_json.py msgid "albertosaurus egg" msgid_plural "albertosaurus eggs" msgstr[0] "阿尔伯塔龙蛋" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "虔州龙蛋" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "霸王龙蛋" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -48677,6 +48673,11 @@ msgid "eoraptor egg" msgid_plural "eoraptor eggs" msgstr[0] "始盗龙蛋" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "阿马加龙蛋" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -48777,6 +48778,11 @@ msgid "pentaceratops egg" msgid_plural "pentaceratops eggs" msgstr[0] "五角龙蛋" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "科斯莫角龙蛋" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -48807,21 +48813,6 @@ msgid "mosasaurus egg" msgid_plural "mosasaurus eggs" msgstr[0] "沧龙蛋" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "虔州龙蛋" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "阿马加龙蛋" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "科斯莫角龙蛋" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -49097,7 +49088,7 @@ msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "龙肉" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -49160,7 +49151,7 @@ msgid "mana infused blood" msgid_plural "mana infused blood" msgstr[0] "注魔之血" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -49216,14 +49207,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "一具糖猫的尸体,现在看起来真像一块巨大的彩虹糖。咬一口肯定没关系的,对吧?" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "一小撮粘糊糊、毛绒绒、蓬松、美味的棉花糖。感觉上有种怪异的温热……" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -49304,7 +49295,7 @@ msgid "raw chocolate milk" msgid_plural "raw chocolate milk" msgstr[0] "生巧克力牛奶" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -49314,7 +49305,7 @@ msgid "" msgstr "" "这是一种生的、未经发酵的、未经高温消毒的巧克力奶牛的奶。除非你直接从牛身上喝,否则没有比它更新鲜的奶了,但这么做可能会使牛不舒服。根据你对饮食的敏感程度,你可能需要在喝前对其进行巴氏杀菌,甚至煮沸。" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -49325,7 +49316,7 @@ msgid "liquid cacao" msgid_plural "liquid cacao" msgstr[0] "液态可可" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "没有加糖的液态可可,非常的苦。" @@ -49335,7 +49326,7 @@ msgid "reconstituted chocolate milk" msgid_plural "reconstituted chocolate milk" msgstr[0] "复原巧克力牛奶" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -49347,7 +49338,7 @@ msgid "powdered chocolate milk" msgid_plural "powdered chocolate milk" msgstr[0] "巧克力奶粉" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -49365,7 +49356,7 @@ msgid "pieces of candy wrapper" msgid_plural "pieces of candy wrapper" msgstr[0] "糖纸" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -49378,7 +49369,7 @@ msgid "sticky sludge" msgid_plural "sticky sludge" msgstr[0] "粘性污泥" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -49919,7 +49910,7 @@ msgid "rock salt" msgid_plural "rock salt" msgstr[0] "岩盐" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "一大把岩盐结晶。可以被提炼为食盐。" @@ -49929,7 +49920,7 @@ msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "蔷薇辉石" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -49941,7 +49932,7 @@ msgid "zincite" msgid_plural "zincite" msgstr[0] "红锌矿" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -49975,7 +49966,7 @@ msgid "hickory nuts" msgid_plural "hickory nuts" msgstr[0] "山核桃" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "一把山核桃,还没去壳。" @@ -49985,7 +49976,7 @@ msgid "pecans" msgid_plural "pecans" msgstr[0] "美洲山核桃" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "一把美洲山核桃,山核桃的亚种,还没去壳。" @@ -49995,7 +49986,7 @@ msgid "pistachios" msgid_plural "pistachios" msgstr[0] "开心果" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "一把开心果,还没去壳。" @@ -50005,7 +49996,7 @@ msgid "almonds" msgid_plural "almonds" msgstr[0] "扁桃仁" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "一把扁桃仁,还没去壳。" @@ -50015,7 +50006,7 @@ msgid "peanuts" msgid_plural "peanuts" msgstr[0] "花生" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "一把花生,还没去壳。" @@ -50025,7 +50016,7 @@ msgid "hazelnuts" msgid_plural "hazelnuts" msgstr[0] "榛子" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "一把榛子,还没去壳。" @@ -50035,7 +50026,7 @@ msgid "chestnuts" msgid_plural "chestnuts" msgstr[0] "栗子" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "一把栗子,还没去壳。" @@ -50045,7 +50036,7 @@ msgid "walnuts" msgid_plural "walnuts" msgstr[0] "核桃" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "一把核桃,还没去壳。" @@ -50310,6 +50301,17 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "外科医生的警告:吸烟导致肺癌,心脏病,肺气肿和妊娠并发症。" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "雪茄盒" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "一个手工制作的小型蒙皮木箱,能装下一到两支雪茄。" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -50320,6 +50322,18 @@ msgstr[0] "小纸盒" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "小纸板盒。尺寸不大于一英寸。" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "小型木箱" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "一个小木箱,每边长几英寸,刚好可以放下一些小杂物。" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -50496,7 +50510,7 @@ msgstr "15升容量的三柄陶罐,用来装运液体或者将其泼出去。" #: lang/json/GENERIC_from_json.py msgid "large clay pot" msgid_plural "large clay pots" -msgstr[0] "大陶锅" +msgstr[0] "大陶罐" #. ~ Description for large clay pot #: lang/json/GENERIC_from_json.py @@ -51036,7 +51050,7 @@ msgid "semi ground grains" msgid_plural "semi ground grains" msgstr[0] "谷物糊" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "一种由碾碎的谷物制成的糊状物,还不是面粉。" @@ -51046,7 +51060,7 @@ msgid "smoldering embers" msgid_plural "smoldering embers" msgstr[0] "熏烤余烬" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -51235,6 +51249,27 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "一把老旧的北美西林德公司生产的锁的钥匙。天知道它是开什么锁的,最好不要去管它。" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "雪茄剪" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "一套刀片,夹在一起能剪断雪茄的末端。" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "雪茄钻" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "一根用来在雪茄末端开洞的小管子。" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -51414,7 +51449,7 @@ msgid "superglue" msgid_plural "superglue" msgstr[0] "万能胶" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "一管强力胶,用来制造许多东西。" @@ -51684,7 +51719,7 @@ msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "FEMA数据" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -51815,7 +51850,7 @@ msgid "concrete" msgid_plural "concrete" msgstr[0] "混凝土" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "一堆混凝土,已经准备好,随时可以用到工程建设项目中。" @@ -52596,7 +52631,7 @@ msgid "clockworks" msgid_plural "clockworks" msgstr[0] "发条装置" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "一堆各式各样的小型齿轮和发条装置。" @@ -52717,7 +52752,7 @@ msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "洋甘菊" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -52741,7 +52776,7 @@ msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "大戟花" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -52773,7 +52808,7 @@ msgid "mortar" msgid_plural "mortar" msgstr[0] "灰泥" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "一堆灰泥,已经准备好,随时可以用到工程建设项目中。" @@ -52817,7 +52852,7 @@ msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "黏土浆" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -52829,7 +52864,7 @@ msgid "tanbark" msgid_plural "tanbark" msgstr[0] "鞣料树皮" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "一大块富含单宁的树皮,用于鞣制皮革。" @@ -52849,7 +52884,7 @@ msgid "willowbark" msgid_plural "willowbark" msgstr[0] "柳树树皮" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -53245,7 +53280,7 @@ msgid "raw tobacco" msgid_plural "raw tobacco" msgstr[0] "生烟草" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -53525,7 +53560,7 @@ msgid "plastic dice" msgid_plural "plastic dice" msgstr[0] "塑料骰子" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "一个六面的塑料骰子。" @@ -53546,7 +53581,7 @@ msgid "alder bark" msgid_plural "alder bark" msgstr[0] "桦树皮" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -53859,14 +53894,14 @@ msgstr "这是医生的员工徽章。它的背面描述了使用方法;这让 #: lang/json/GENERIC_from_json.py msgid "snail sample" msgid_plural "snail samples" -msgstr[0] "" +msgstr[0] "蜗牛样本" #. ~ Description for snail sample #: lang/json/GENERIC_from_json.py msgid "" "A sample of things that make up key parts of being a snail. You will " "probably need to find a very large snail." -msgstr "" +msgstr "构成蜗牛的关键器官的样本。你可能会需要找到一只超级大的蜗牛。" #: lang/json/GENERIC_from_json.py msgid "rabbit sample" @@ -53881,14 +53916,99 @@ msgstr "一只兔子的小爪子。求你了,别再提关于幸运的老梗了 #: lang/json/GENERIC_from_json.py msgid "frog sample" msgid_plural "frog samples" -msgstr[0] "" +msgstr[0] "青蛙样本" #. ~ Description for frog sample #: lang/json/GENERIC_from_json.py msgid "" "A sample of things that make up key parts of being a frog. You will " "probably need to find a very large frog." -msgstr "" +msgstr "构成青蛙的关键器官的样本。你可能会需要找到一只超级大的青蛙。" + +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "昆虫样本" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "构成昆虫的关键器官的样本。你可能会需要找到一只超级大的昆虫。" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "牛科动物样本" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "构成牛的关键器官的样本。你可能会需要找到一头活力十足的牛。" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "裸鼹鼠样本" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "构成裸鼹鼠的关键器官的样本。你可能会需要找到住在地下的大家伙。" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "蜘蛛样本" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "构成蜘蛛的关键器官的样本。你可能会需要找到一只超级大的蜘蛛。" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "爬行动物样本" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "构成爬行动物的关键器官的样本。你可能会需要找到一只超级大的蜥蜴或响尾蛇。" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "狼科动物样本" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "构成狼的关键器官的样本。和女王在一起的是小朗·钱尼吗?" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "猫科动物样本" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "构成猫科动物的关键器官的样本。山猫或者美洲狮可能算是本地生物?" #: lang/json/GENERIC_from_json.py msgid "flyer" @@ -54553,7 +54673,7 @@ msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "自诊断传感器" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -54678,7 +54798,7 @@ msgid "turret interior chassis" msgid_plural "turret interior chassis" msgstr[0] "炮塔支架" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -54690,7 +54810,7 @@ msgid "police bot chassis" msgid_plural "police bot chassis" msgstr[0] "警用机器人底盘" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -54717,7 +54837,7 @@ msgid "Alarm System CBM installation data" msgid_plural "Alarm System CBM installation data" msgstr[0] "警报系统CBM安装数据" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54733,7 +54853,7 @@ msgid "LED Tattoo CBM installation data" msgid_plural "LED Tattoo CBM installation data" msgstr[0] "LED纹身CBM安装数据" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54749,7 +54869,7 @@ msgid "Power Armor Interface CBM installation data" msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "外骨骼能源接口CBM安装数据" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54765,7 +54885,7 @@ msgid "Power Storage CBM installation data" msgid_plural "Power Storage CBM installation data" msgstr[0] "储能模块CBM安装数据" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54781,7 +54901,7 @@ msgid "Power Storage CBM Mk. II installation data" msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "Mk.II 型储能模块CBM安装数据" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54798,7 +54918,7 @@ msgid "Internal Chronometer CBM installation data" msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "体内计时器CBM安装数据" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54814,7 +54934,7 @@ msgid "Intravenous Needletip CBM installation data" msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "静脉输液器CBM安装数据" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54830,7 +54950,7 @@ msgid "Blood Analysis CBM installation data" msgid_plural "Blood Analysis CBM installation data" msgstr[0] "血液分析CBM安装数据" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54846,7 +54966,7 @@ msgid "Cranial Flashlight CBM installation data" msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "脑壳手电CBM安装数据" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54862,7 +54982,7 @@ msgid "Electromagnetic Unit CBM installation data" msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "掌心电磁铁CBM安装数据" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54878,7 +54998,7 @@ msgid "Soporific Induction CBM installation data" msgid_plural "Soporific Induction CBM installation data" msgstr[0] "催眠诱导CBM安装数据" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54894,7 +55014,7 @@ msgid "Arms Alloy Plating CBM installation data" msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "合金装甲-手臂CBM安装数据" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54911,7 +55031,7 @@ msgid "Legs Alloy Plating CBM installation data" msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "合金装甲-腿部CBM安装数据" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54928,7 +55048,7 @@ msgid "Shotgun Arm CBM installation data" msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "霰弹枪臂CBM安装数据" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54944,7 +55064,7 @@ msgid "Blood Filter CBM installation data" msgid_plural "Blood Filter CBM installation data" msgstr[0] "血液过滤CBM安装数据" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54960,8 +55080,7 @@ msgid "Internal Climate Control CBM installation data" msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "恒温机构CBM安装数据" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54977,7 +55096,7 @@ msgid "Integrated Dosimeter CBM installation data" msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "内置辐射计CBM安装数据" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54993,7 +55112,7 @@ msgid "Thermal Dissipation CBM installation data" msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "热能防护CBM安装数据" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -55009,7 +55128,7 @@ msgid "Weather Reader CBM installation data" msgid_plural "Weather Reader CBM installation data" msgstr[0] "气象识别CBM安装数据" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -55025,7 +55144,7 @@ msgid "Railgun CBM installation data" msgid_plural "Railgun CBM installation data" msgstr[0] "磁轨步枪CBM安装数据" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -55041,7 +55160,7 @@ msgid "Unified Power System CBM installation data" msgid_plural "Unified Power System CBM installation data" msgstr[0] "整合供能系统CBM安装数据" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -55057,8 +55176,7 @@ msgid "Titanium Skeletal Bracing CBM installation data" msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "钛合金骨架CBM安装数据" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -55079,7 +55197,7 @@ msgid "misc software" msgid_plural "misc software" msgstr[0] "杂项软件" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "一堆有趣的小型软件打包,没什么用处。" @@ -55089,7 +55207,7 @@ msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "超级黑客管家" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "一套黑客软件。" @@ -55099,7 +55217,7 @@ msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "医疗软件" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "一套医疗软件。" @@ -55109,7 +55227,7 @@ msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "MatheMAX" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "一套数学软件。" @@ -55119,7 +55237,7 @@ msgid "infection data" msgid_plural "infection data" msgstr[0] "感染数据" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "丧尸血液的医疗数据。" @@ -55129,7 +55247,7 @@ msgid "lab data" msgid_plural "lab data" msgstr[0] "实验数据" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "一份来自政府实验室的实验数据。" @@ -55139,7 +55257,7 @@ msgid "train data" msgid_plural "train data" msgstr[0] "列车数据" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "一份关于地铁列车路线和时刻表的后勤数据。" @@ -55149,7 +55267,7 @@ msgid "neural data" msgid_plural "neural data" msgstr[0] "神经数据" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -55432,27 +55550,38 @@ msgstr "" "一根半兽人的骨头,可以用来制造物品。\n" "\"我爱你爱到骨子里了!\"" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "骷髅头" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "人的头骨。带着它到处走可不会为你赢得任何朋友。" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "尸体" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "胴体" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" msgid_plural "skinned %s" msgstr[0] "%s(已剥皮)" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -55518,7 +55647,7 @@ msgstr "一具儿童的尸体,已经被子弹打成了筛子,你甚至辨认 msgid "" "The corpse of an infant. A single small-caliber bullet has been put through" " its skull." -msgstr "" +msgstr "婴儿的尸体。一颗小口径子弹穿过了它的头骨。" #. ~ Description for corpse #: lang/json/GENERIC_from_json.py @@ -55554,24 +55683,24 @@ msgstr "一具后颈被刺了个大洞的尸体。" msgid "" "The bloody corpse of a young man. He has been stabbed repeatedly in the " "jugular and throat with a small blade." -msgstr "" +msgstr "一具年轻人的血淋淋的尸体。他被一把小刀反复刺伤颈静脉和喉咙。" #: lang/json/GENERIC_from_json.py msgid "" "The dead body of a person. They look to have been skewered through with a " "large sharp implement." -msgstr "" +msgstr "一个人的尸体。它看起来是被一个大而锋利的工具刺穿的。" #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a tall middle-aged woman. She appears to have many stab " "wounds up her legs and thighs." -msgstr "" +msgstr "一具高大中年妇女的尸体。她的小腿和大腿上似乎有许多刺伤。" #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a small old lady, her face caked in blood and missing an eye." -msgstr "" +msgstr "一具身材矮小的老太太的尸体,她的脸上满是血块,少了一只眼睛。" #. ~ Description for corpse #: lang/json/GENERIC_from_json.py @@ -55598,38 +55727,38 @@ msgstr "一具头没了一半的尸体。造成这种损伤的原因不得而知 msgid "" "The corpse of a young blond woman shot several times in the back with a low-" "caliber weapon." -msgstr "" +msgstr "一具年轻金发女子的尸体,它被一把小口径枪械从背后多次射击。" #: lang/json/GENERIC_from_json.py msgid "" "An androgynous-looking corpse gored by arms fire chest to thighs, leaving " "the face eerily pristine." -msgstr "" +msgstr "一具无法分辨性别的尸体,被手臂从胸部到大腿的火焰刺伤,但却留下了一副诡异的干净面孔。" #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a seemingly older male. He appears to have been shot in the " "forehead at a very close range leaving you a good view of his brain matter." -msgstr "" +msgstr "一具年长男性的尸体,似乎是在很近的地方被击中了前额,你可以清晰地看见他的脑子。" #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a middle-aged woman, her legs and arms covered in blood. She " "appears to have been shot in the thigh." -msgstr "" +msgstr "一具中年妇女的尸体,她的腿和手臂都沾满了鲜血。她似乎大腿中枪。" #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a young man who appears to have been shot to death. His right" " arm is only barely still attached to his shoulder." -msgstr "" +msgstr "一具似乎被枪杀的年轻人的尸体。他的右臂只是勉强依附在肩膀上。" #: lang/json/GENERIC_from_json.py msgid "" "The corpse of a tall woman unblemished but for the bloody hole atop her " "head, its thick black hair intermixed now with brain, viscera and shotgun " "pellets." -msgstr "" +msgstr "一具身材高大的女子的尸体,完好无损,但由于她头顶上有一个血迹斑斑的窟窿,浓密的黑发夹杂着大脑、内脏和猎枪子弹。" #: lang/json/GENERIC_from_json.py msgid "broken exodii worker" @@ -55684,7 +55813,7 @@ msgid "trifacet remains" msgid_plural "trifacet remains" msgstr[0] "“三琢面”无人车残骸" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -56001,6 +56130,96 @@ msgid "" "useful for scouring toilet bowls." msgstr "丧尸没法被恐吓或羞辱,所以这把坚硬的刷子只适合用来刷马桶。" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "跳蚤梳" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "一把带有密集螺旋槽齿的不锈钢排梳,用于去除毛发中讨厌的跳蚤。即使只是想一想也会让你浑身发痒。" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "浴缸玩具" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "一个塑料做的浴缸玩具。" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "一只黄色的橡皮鸭。可以丢进浴缸里。" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "一只黑色的橡皮鸭,长着一双大大的白眼睛。可以丢进浴缸里。" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "一只咧嘴笑的绿色小恐龙。专为泡澡时间设计。" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "电动牙刷" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "一把塑料电动牙刷。" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "一个用来装各种沐浴露的可挤压的瓶子。" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "一个用来装特殊的染发香波的瓶子。" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "一个用来装最便宜的洗发水的普通的白色瓶子。" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "一个装沐浴露的瓶子。上面的牌子叫做“非洲”。" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "一个用来装护发素的瓶子。" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "一个用来装儿童沐浴露的五颜六色的瓶子。" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "一个用来装最便宜的护发素的普通的白色瓶子。" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "一个用来装最便宜的沐浴露的普通的白色瓶子。" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "假牙" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "一套标准的假牙。除了它的主人之外,对任何人都毫无用处。" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -57602,7 +57821,7 @@ msgid "headphones" msgid_plural "headphones" msgstr[0] "耳机" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -57676,7 +57895,7 @@ msgid "spare parts" msgid_plural "spare parts" msgstr[0] "零件" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -58237,7 +58456,7 @@ msgid "bokken" msgid_plural "bokken" msgstr[0] "日式木刀" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -58247,14 +58466,14 @@ msgstr "" "一柄用于锻炼的木刀,严格模仿真正武士刀的重量和平衡,尽管缺乏一个锋利的刀锋,但它仍然有相当的能力去造成致命的伤害。\n" "\" 洞 爷 湖 \"" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "一柄用于锻炼的木刀,但手感太轻了,不是一把好武器。" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -58784,7 +59003,7 @@ msgid "bionic claws" msgid_plural "bionic claws" msgstr[0] "生化合金爪" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "用高科技金属合金制成的短而锋利的爪子。" @@ -58992,7 +59211,7 @@ msgid "qiang" msgid_plural "qiang" msgstr[0] "长枪" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -59034,7 +59253,7 @@ msgid "naginata" msgid_plural "naginata" msgstr[0] "薙刀" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -59043,7 +59262,7 @@ msgid "" msgstr "" "一根坚固耐用的长柄武器,顶部是一个采用和武士刀一样的日式刀具制造方法制成的弯曲利刃。在镰仓时代为步兵与僧侣的主力兵器,在江户时代则成为了武士家女性作为教养的必学项目。" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -59051,7 +59270,7 @@ msgid "" "feels a bit shoddily made." msgstr "一把坚硬的带弯曲刀刃的长柄刀,用与武士刀和其他日本刀刃相同的方式制成。这把刀的刀刃有点晃动,感觉有点粗制滥造。" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -59064,7 +59283,7 @@ msgid "survivor naginata" msgid_plural "survivor naginata" msgstr[0] "幸存者薙刀" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -59186,7 +59405,7 @@ msgid "ji" msgid_plural "ji" msgstr[0] "中式戟" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -59242,13 +59461,26 @@ msgid "" "offers a good bit of slashing power." msgstr "一些废铁条被简陋的敲打进一把木剑的边缘。新加上去的重量导致整把武器重心不平衡,不过锯齿的边缘增加了不错的斩击强度。" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "金属剑" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "一把真剑的仿制品,由某个至少知道剑是什么样子的人锻造而成。它有剑的一般形状,锋利,但品质不高,平衡性也不太好。" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" msgid_plural "jian" msgstr[0] "剑" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -59327,14 +59559,14 @@ msgid "tanto" msgid_plural "tanto" msgstr[0] "日式短刀" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "一把日式短刀,在胁差发明之前曾经是武士的备用武器。这把是廉价的复制品。" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -59349,14 +59581,14 @@ msgid "nodachi" msgid_plural "nodachi" msgstr[0] "野太刀" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "一柄日本武士骑马作战时所用的野太刀,长约五尺,亦称\"大太刀\"。此款外观、造型和材料与正品有差异,为廉价复制品。" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -59487,7 +59719,7 @@ msgid "katana" msgid_plural "katana" msgstr[0] "武士刀" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "一把武士刀,打刀款式,刀身细长而略带弧度,此款外观、造型和材料与正品有差异,为廉价复制品。" @@ -59550,7 +59782,7 @@ msgid "wakizashi" msgid_plural "wakizashi" msgstr[0] "胁差" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -59611,7 +59843,7 @@ msgid "tiger claws" msgid_plural "tiger claws" msgstr[0] "虎爪" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -59672,7 +59904,7 @@ msgstr "一个用钢锻造的指虎,可以套在手中,造成额外的伤害 #: lang/json/GENERIC_from_json.py msgid "explosive arrowhead" msgid_plural "explosive arrowheads" -msgstr[0] "爆炸箭镞" +msgstr[0] "爆炸箭簇" #. ~ Description for explosive arrowhead #: lang/json/GENERIC_from_json.py @@ -59829,12 +60061,25 @@ msgid "" "somewhat warm to the touch." msgstr "这是一块破碎的异界树脂块。它看起来有点像一大块海玻璃,表面磨砂,边缘圆润。摸起来有点温暖舒适。" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "异星蕨枝" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "某种巨型蕨类植物叶子的分枝,根据叶片大小判断,巨型蕨类长约两英尺,直径也得有数英尺。也许有一天你能想到用这种巨型蕨类植物做点什么。" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "流亡族机器人底盘" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -59850,7 +60095,7 @@ msgid "Exodii drone chassis" msgid_plural "Exodii drone chassis" msgstr[0] "流亡族无人机底盘" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -59894,7 +60139,7 @@ msgid "inscribed metal plates" msgid_plural "inscribed metal plates" msgstr[0] "蚀刻金属板" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -60165,7 +60410,7 @@ msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "废铜料" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "一小块的铜,可以用来制造或修理物品。" @@ -60410,7 +60655,7 @@ msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "碎木" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "一根被劈成细条的木片,可用来串肉或者作为燃火用品。" @@ -60616,17 +60861,17 @@ msgid "sealed yeast culture" msgid_plural "sealed yeast culture" msgstr[0] "密封酵母" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "你打开了瓶盖,收获了里面的培养物。" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "酵母尚未培养完成。" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -60836,7 +61081,7 @@ msgstr "一个装满抗真菌溶液的筒状手雷。使用该物品将会拔下 #: lang/json/GENERIC_from_json.py msgid "armed fungicidal gas canister" msgid_plural "armed fungicidal gas canisters" -msgstr[0] "抗真菌手雷(无保险)" +msgstr[0] "抗真菌手雷(已启动)" #. ~ Description for armed fungicidal gas canister #: lang/json/GENERIC_from_json.py @@ -60862,7 +61107,7 @@ msgstr "一个自制的装满抗真菌溶液的筒状手雷。使用该物品将 #: lang/json/GENERIC_from_json.py msgid "armed makeshift fungicidal gas canister" msgid_plural "armed makeshift fungicidal gas canisters" -msgstr[0] "自制抗真菌手雷(无保险)" +msgstr[0] "自制抗真菌手雷(已启动)" #. ~ Description for armed makeshift fungicidal gas canister #: lang/json/GENERIC_from_json.py @@ -60901,7 +61146,7 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "armed tear gas canister" msgid_plural "armed tear gas canisters" -msgstr[0] "催泪手雷(无保险)" +msgstr[0] "催泪手雷(已启动)" #. ~ Description for armed tear gas canister #: lang/json/GENERIC_from_json.py @@ -60926,7 +61171,7 @@ msgstr "一个装满杀虫溶剂的筒状手雷。使用该物品将会拔下保 #: lang/json/GENERIC_from_json.py msgid "armed insecticidal gas canister" msgid_plural "armed insecticidal gas canisters" -msgstr[0] "杀虫剂手雷(无保险)" +msgstr[0] "杀虫剂手雷(已启动)" #. ~ Description for armed insecticidal gas canister #: lang/json/GENERIC_from_json.py @@ -60952,7 +61197,7 @@ msgstr "一个自制的装满杀虫溶剂的筒状手雷。使用该物品将会 #: lang/json/GENERIC_from_json.py msgid "armed makeshift insecticidal gas canister" msgid_plural "armed makeshift insecticidal gas canisters" -msgstr[0] "自制杀虫剂手雷(无保险)" +msgstr[0] "自制杀虫剂手雷(已启动)" #. ~ Description for armed makeshift insecticidal gas canister #: lang/json/GENERIC_from_json.py @@ -60980,7 +61225,7 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "armed smoke bomb" msgid_plural "armed smoke bombs" -msgstr[0] "烟雾弹(无保险)" +msgstr[0] "烟雾弹(已启动)" #. ~ Description for armed smoke bomb #: lang/json/GENERIC_from_json.py @@ -61751,7 +61996,7 @@ msgid "oars" msgid_plural "oars" msgstr[0] "桨" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "船桨,严格说是橹。" @@ -61771,7 +62016,7 @@ msgid "inflatable section" msgid_plural "inflatable section" msgstr[0] "充气节" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "充气艇的一截。" @@ -61781,7 +62026,7 @@ msgid "inflatable airbag" msgid_plural "inflatable airbag" msgstr[0] "充气气囊" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "一个充气气囊。" @@ -62570,7 +62815,7 @@ msgid "chime loudspeakers" msgid_plural "chime loudspeakers" msgstr[0] "音乐扩音器" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -62583,7 +62828,7 @@ msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "薄钢板" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "薄薄的一片金属板。" @@ -62593,7 +62838,7 @@ msgid "wired sheet metal" msgid_plural "wired sheet metal" msgstr[0] "接线薄钢板" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "内置遮光罩和线路的薄钢板。" @@ -62613,7 +62858,7 @@ msgid "steel plating" msgid_plural "steel plating" msgstr[0] "钢制装甲板" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "一块由钢铁制成的装甲板。" @@ -62623,7 +62868,7 @@ msgid "superalloy plating" msgid_plural "superalloy plating" msgstr[0] "超合金装甲板" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "一块采用异常坚固的超合金制成的装甲板。" @@ -62644,7 +62889,7 @@ msgid "spiked plating" msgid_plural "spiked plating" msgstr[0] "钉刺装甲板" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -62852,12 +63097,18 @@ msgid_plural "solar panels" msgstr[0] "太阳能板" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "可以将太阳辐射能量转换成电能的电子设备。用于制造载具。" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "可折叠太阳能电池板" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -62976,6 +63227,16 @@ msgstr[0] "车载加热器" msgid "A vehicle-mounted area heater." msgstr "一个车载区域加热器。" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "小型车载加热器" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "一个小型车载空间加热器。" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -63377,7 +63638,7 @@ msgid "Dana's family sourdough starter" msgid_plural "Dana's family sourdough starter" msgstr[0] "达娜的家用酸面头" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -63435,7 +63696,7 @@ msgid "bioweapon chassis" msgid_plural "bioweapon chassis" msgstr[0] "生物武器底盘" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -63704,7 +63965,7 @@ msgid "broken Isohypsa" msgid_plural "broken Isohypsa" msgstr[0] "等高图型无人机(损坏)" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -63716,7 +63977,7 @@ msgid "broken Kabura-ya" msgid_plural "broken Kabura-ya" msgstr[0] "响箭型无人机(损坏)" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -63830,7 +64091,7 @@ msgid "scrap titanium" msgid_plural "scrap titanium" msgstr[0] "钛废料" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "一小块的钛,可以用来制造或修理物品。" @@ -63840,7 +64101,7 @@ msgid "nuclear waste" msgid_plural "nuclear waste" msgstr[0] "核废料" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "一些银白色的金属小球,摸上去还有点温热。" @@ -64021,7 +64282,7 @@ msgid "tripod chassis" msgid_plural "tripod chassis" msgstr[0] "三足机器人底盘" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64033,7 +64294,7 @@ msgid "Pathfinder chassis" msgid_plural "Pathfinder chassis" msgstr[0] "开拓者型机器人底盘" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64045,7 +64306,7 @@ msgid "Regulator chassis" msgid_plural "Regulator chassis" msgstr[0] "监管者型机器人底盘" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64057,7 +64318,7 @@ msgid "Seneschal chassis" msgid_plural "Seneschal chassis" msgstr[0] "总管型机器人底盘" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64069,7 +64330,7 @@ msgid "Likvidator chassis" msgid_plural "Likvidator chassis" msgstr[0] "清算者型机器人底盘" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64081,7 +64342,7 @@ msgid "Famulus chassis" msgid_plural "Famulus chassis" msgstr[0] "仆从型机器人底盘" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -64093,7 +64354,7 @@ msgid "Udarnik chassis" msgid_plural "Udarnik chassis" msgstr[0] "劳模型机器人底盘" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64105,7 +64366,7 @@ msgid "Brandspojt chassis" msgid_plural "Brandspojt chassis" msgstr[0] "火流星型机器人" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64117,7 +64378,7 @@ msgid "Surgical Droid chassis" msgid_plural "Surgical Droid chassis" msgstr[0] "外科手术型机器人底盘" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64129,7 +64390,7 @@ msgid "Aegis chassis" msgid_plural "Aegis chassis" msgstr[0] "宙斯盾型机器人底盘" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64141,7 +64402,7 @@ msgid "military robot chassis" msgid_plural "military robot chassis" msgstr[0] "军用机器人底盘" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -64153,7 +64414,7 @@ msgid "military humaniform chassis" msgid_plural "military humaniform chassis" msgstr[0] "军用人型机器人底盘" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -64256,7 +64517,7 @@ msgid "monomeric slurry" msgid_plural "monomeric slurry" msgstr[0] "单体溶液" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -64280,7 +64541,7 @@ msgid "artificial muscle fibers" msgid_plural "artificial muscle fibers" msgstr[0] "人工肌肉纤维材料" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -64292,7 +64553,7 @@ msgid "self healing polymers" msgid_plural "self healing polymers" msgstr[0] "自我修复聚合物" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -64317,7 +64578,7 @@ msgid "scrap photonics" msgid_plural "scrap photonics" msgstr[0] "光子电路废料" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "蓝色和金色的小型电路元件,通过光传输信号。" @@ -64347,7 +64608,7 @@ msgid "hypergeometric photonics" msgid_plural "hypergeometric photonics" msgstr[0] "光子超几何体" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -64669,7 +64930,7 @@ msgid "laser optics" msgid_plural "laser optics" msgstr[0] "激光光学系统" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -65334,7 +65595,7 @@ msgid "enchanted wood" msgid_plural "enchanted wood" msgstr[0] "附魔木" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "灌注了魔力的木头。" @@ -66629,7 +66890,7 @@ msgid "subzero talons" msgid_plural "subzero talons" msgstr[0] "冰爪" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -66832,7 +67093,7 @@ msgid "fireproof mortar" msgid_plural "fireproof mortar" msgstr[0] "防火灰泥" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -66946,7 +67207,7 @@ msgid "chicken walker chassis" msgid_plural "chicken walker chassis" msgstr[0] "双足机器人底盘" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -66958,7 +67219,7 @@ msgid "Beagle chassis" msgid_plural "Beagle chassis" msgstr[0] "\"猎兔犬\"底盘" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -67774,6 +68035,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "移除游戏中除野生动物之外的所有怪物。" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "翻箱倒柜" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "部分家具容器需要开启后才能搜刮物品,以增加搜刮物品时的新奇感。" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "技能提升属性" @@ -67919,9 +68191,10 @@ msgstr "状态图标,retrodays版" #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." -msgstr "增加了怪物发现玩家图标,以及玩家奔跑,蹲伏,流血状态图标,专为 retrodays 贴图包设计。" +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." +msgstr "" +"增加了怪物发现玩家图标,以及玩家跑蹲卧,流血,被照亮等状态图标,专为 retrodays 贴图包设计,但也能供 neodays 贴图包使用。" #: lang/json/MOD_INFO_from_json.py msgid "SpeedyDex" @@ -68240,6 +68513,11 @@ msgid "" msgstr "" "这台体型巨大的四足机器人似乎是由各类零件拼凑而成,其中大部分零件你都从未见过。它以一种沉重的,奇怪的优雅步态移动,伴随着沉重的脚步声,它在它所踏过之处留下了一串浅坑。它的体内堆满了各类武器,虽然它目前似乎并不急于瞄准你,但谨慎起见还是保持好距离。" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "流亡族四足机器人发射了它的多用途武器!" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "叮!" @@ -68624,7 +68902,7 @@ msgid "tiny fish" msgid_plural "tiny fish" msgstr[0] "微型鱼" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "一条微型鱼。" @@ -68634,7 +68912,7 @@ msgid "small fish" msgid_plural "small fish" msgstr[0] "小型鱼" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "一条小型鱼。" @@ -68644,7 +68922,7 @@ msgid "medium fish" msgid_plural "medium fish" msgstr[0] "中型鱼" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "一条中型鱼。" @@ -68654,7 +68932,7 @@ msgid "large fish" msgid_plural "large fish" msgstr[0] "大型鱼" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "一条大型鱼。" @@ -68664,7 +68942,7 @@ msgid "huge fish" msgid_plural "huge fish" msgstr[0] "巨型鱼" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "一条巨型鱼。" @@ -68789,7 +69067,7 @@ msgid "whitefish" msgid_plural "whitefish" msgstr[0] "白鱼" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -68801,7 +69079,7 @@ msgid "largemouth bass" msgid_plural "largemouth bass" msgstr[0] "大嘴鲈" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "一条大嘴鲈。很受钓鱼爱好者的喜爱。" @@ -68811,7 +69089,7 @@ msgid "smallmouth bass" msgid_plural "smallmouth bass" msgstr[0] "小嘴鲈" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -68823,7 +69101,7 @@ msgid "striped bass" msgid_plural "striped bass" msgstr[0] "条纹鲈" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -68835,7 +69113,7 @@ msgid "white bass" msgid_plural "white bass" msgstr[0] "白鲈" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -68869,7 +69147,7 @@ msgid "sunfish" msgid_plural "sunfish" msgstr[0] "太阳鱼" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "一条太阳鱼。一种跟鲈鱼或者蓝鳃太阳鱼关系较近的小鱼。" @@ -68879,7 +69157,7 @@ msgid "pumpkinseed sunfish" msgid_plural "pumpkinseed sunfish" msgstr[0] "驼背太阳鱼" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "一条驼背太阳鱼。一种跟鲈鱼或者蓝鳃太阳鱼关系较近的小鱼。" @@ -68900,7 +69178,7 @@ msgid "redbreast sunfish" msgid_plural "redbreast sunfish" msgstr[0] "红胸太阳鱼" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "一条红胸太阳鱼。一种跟鲈鱼或者蓝鳃太阳鱼关系较近的小鱼。" @@ -68910,7 +69188,7 @@ msgid "green sunfish" msgid_plural "green sunfish" msgstr[0] "蓝太阳鱼" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "一条蓝太阳鱼。一种跟鲈鱼或者蓝鳃太阳鱼关系较近的小鱼。" @@ -68920,7 +69198,7 @@ msgid "longear sunfish" msgid_plural "longear sunfish" msgstr[0] "长耳太阳鱼" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "一条长耳太阳鱼。一种跟鲈鱼或者蓝鳃太阳鱼关系较近的小鱼。" @@ -68930,7 +69208,7 @@ msgid "redear sunfish" msgid_plural "redear sunfish" msgstr[0] "红耳鳞鳃太阳鱼" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "一条红耳鳞鳃太阳鱼。一种跟鲈鱼或者蓝鳃太阳鱼关系较近的小鱼。" @@ -68940,7 +69218,7 @@ msgid "rock bass" msgid_plural "rock bass" msgstr[0] "岩钝鲈" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -68952,7 +69230,7 @@ msgid "calico bass" msgid_plural "calico bass" msgstr[0] "剌盖太阳鱼" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "一条剌盖太阳鱼,一种中等大小的鱼,也称为“莓鲈”。" @@ -68984,7 +69262,7 @@ msgid "channel catfish" msgid_plural "channel catfish" msgstr[0] "斑点叉尾鮰" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "一条斑点叉尾鮰,它们有叉形的尾巴和长长的胡须。" @@ -68994,7 +69272,7 @@ msgid "white catfish" msgid_plural "white catfish" msgstr[0] "白叉尾鮰" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "一条白叉尾鮰,一种宽头长着细长胡须的鱼类。" @@ -69083,7 +69361,7 @@ msgid "fallfish" msgid_plural "fallfish" msgstr[0] "小眼须雅罗鱼" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -69108,7 +69386,7 @@ msgid "crayfish" msgid_plural "crayfish" msgstr[0] "螯虾" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -69137,7 +69415,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "一条美洲鳗鲡。在水坝修成之前还是挺常见的。鉴于大灾变之后它们可以到处跑了,看来它们有了第二次繁衍的机会。" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -69149,7 +69427,7 @@ msgid "giant crayfish" msgid_plural "giant crayfish" msgstr[0] "巨型螯虾" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -69161,7 +69439,7 @@ msgid "colossal crayfish" msgid_plural "colossal crayfish" msgstr[0] "超巨型螯虾" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "一只体型巨大的灰色变异鳌虾,长着大大的钳爪和长长的触须。" @@ -69775,7 +70053,7 @@ msgid "fused dragonflies" msgid_plural "fused dragonflies" msgstr[0] "蜻蜓融合怪" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -69949,7 +70227,7 @@ msgstr[0] "超巨型跳蛛" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -71481,7 +71759,7 @@ msgid "Great Pyrenees" msgid_plural "Great Pyrenees" msgstr[0] "大白熊犬" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -71664,7 +71942,7 @@ msgid "moose" msgid_plural "moose" msgstr[0] "驼鹿" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -71815,7 +72093,7 @@ msgid_plural "lambs" msgstr[0] "小羊羔" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -72098,10 +72376,11 @@ msgstr[0] "调试用怪物" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -72112,6 +72391,16 @@ msgstr "%s 融化了。" msgid "This monster exists only for testing purposes." msgstr "这只怪物只会在程序测试状态存在。" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "测试用弱点怪物" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "这只怪物只会在程序测试状态存在。" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -74235,7 +74524,7 @@ msgid "sawbones" msgid_plural "sawbones" msgstr[0] "锯骨丧尸" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -74250,7 +74539,7 @@ msgid "doctor burns" msgid_plural "doctor burns" msgstr[0] "酸医丧尸" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -74421,7 +74710,7 @@ msgid "unstable flesh-raptor" msgid_plural "unstable flesh-raptor" msgstr[0] "肿胀血鸷" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -74535,17 +74824,18 @@ msgstr[0] "柴薪丧尸" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -74957,7 +75247,7 @@ msgid "gangrenous flesh" msgid_plural "gangrenous flesh" msgstr[0] "坏疽肉块" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -74999,7 +75289,7 @@ msgid "scissorlimbs" msgid_plural "scissorlimbs" msgstr[0] "利剪蛛" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -75012,7 +75302,7 @@ msgid "hanging innards" msgid_plural "hanging innards" msgstr[0] "吊挂内脏" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -75480,7 +75770,7 @@ msgid "Shia LaBeouf" msgid_plural "Shia LaBeouf" msgstr[0] "真食人族 希亚拉博夫" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -77279,7 +77569,7 @@ msgid "wisp" msgid_plural "wisp" msgstr[0] "发光虫" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -77812,7 +78102,7 @@ msgid "coelophysis" msgid_plural "coelophysis" msgstr[0] "腔骨龙" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -77824,7 +78114,7 @@ msgid "dilophosaurus" msgid_plural "dilophosaurus" msgstr[0] "双脊龙" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -77836,7 +78126,7 @@ msgid "ceratosaurus" msgid_plural "ceratosaurus" msgstr[0] "角鼻龙" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -77849,7 +78139,7 @@ msgid "spinosaurus" msgid_plural "spinosaurus" msgstr[0] "棘龙" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -77862,7 +78152,7 @@ msgid "allosaurus" msgid_plural "allosaurus" msgstr[0] "异特龙" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -77874,7 +78164,7 @@ msgid "acrocanthosaurus" msgid_plural "acrocanthosaurus" msgstr[0] "高棘龙" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -77887,19 +78177,31 @@ msgid "siats" msgid_plural "siats" msgstr[0] "西雅茨龙" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "一只体型巨大的双足食肉恐龙,长着长长的爪子和强壮的手臂,可以轻松抓住你。" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "戈尔冈龙" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "它长着巨大的牙齿,凶猛的眼睛,两个短小的手臂,背部和尾部长着羽毛,强而有力的躯干驱动着它前行。" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "阿尔伯塔龙" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -77911,7 +78213,7 @@ msgid "qianzhousaurus" msgid_plural "qianzhousaurus" msgstr[0] "虔州龙" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -77923,7 +78225,7 @@ msgid "tyrannosaurus rex" msgid_plural "tyrannosaurus rex" msgstr[0] "雷克斯霸王龙" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -77935,7 +78237,7 @@ msgid "compsognathus" msgid_plural "compsognathus" msgstr[0] "美颌龙" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -77947,7 +78249,7 @@ msgid "gallimimus" msgid_plural "gallimimus" msgstr[0] "似鸡龙" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -77971,7 +78273,7 @@ msgid "nothronychus" msgid_plural "nothronychus" msgstr[0] "懒爪龙" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -77983,7 +78285,7 @@ msgid "deinonychus" msgid_plural "deinonychus" msgstr[0] "恐爪龙" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -78019,7 +78321,7 @@ msgid "amargasaurus" msgid_plural "amargasaurus" msgstr[0] "阿马加龙" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -78031,7 +78333,7 @@ msgid "apatosaurus" msgid_plural "apatosaurus" msgstr[0] "迷惑龙" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -78043,7 +78345,7 @@ msgid "brontosaurus" msgid_plural "brontosaurus" msgstr[0] "雷龙" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -78055,7 +78357,7 @@ msgid "diplodocus" msgid_plural "diplodocus" msgstr[0] "梁龙" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "一只巨大的长颈四足恐龙,尾巴非常长,像鞭子一样。" @@ -78065,7 +78367,7 @@ msgid "camarasaurus" msgid_plural "camarasaurus" msgstr[0] "圆顶龙" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -78077,7 +78379,7 @@ msgid "brachiosaurus" msgid_plural "brachiosaurus" msgstr[0] "腕龙" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -78089,7 +78391,7 @@ msgid "alamosaurus" msgid_plural "alamosaurus" msgstr[0] "阿拉摩龙" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -78101,7 +78403,7 @@ msgid "scutellosaurus" msgid_plural "scutellosaurus" msgstr[0] "小盾龙" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -78113,7 +78415,7 @@ msgid "stegosaurus" msgid_plural "stegosaurus" msgstr[0] "剑龙" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -78124,7 +78426,7 @@ msgid "dyoplosaurus" msgid_plural "dyoplosaurus" msgstr[0] "倍甲龙" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -78136,7 +78438,7 @@ msgid "ankylosaurus" msgid_plural "ankylosaurus" msgstr[0] "甲龙" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -78148,7 +78450,7 @@ msgid "nodosaurus" msgid_plural "nodosaurus" msgstr[0] "结节龙" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -78159,7 +78461,7 @@ msgid "edmontonia" msgid_plural "edmontonia" msgstr[0] "埃德蒙顿甲龙" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -78171,7 +78473,7 @@ msgid "camptosaurus" msgid_plural "camptosaurus" msgstr[0] "弯龙" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -78183,7 +78485,7 @@ msgid "parasaurolophus" msgid_plural "parasaurolophus" msgstr[0] "副栉龙" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "一种巨大的、体色斑驳的恐龙,有四只脚和钝头冠。" @@ -78193,7 +78495,7 @@ msgid "maiasaura" msgid_plural "maiasaura" msgstr[0] "慈母龙" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -78205,7 +78507,7 @@ msgid "corythosaurus" msgid_plural "corythosaurus" msgstr[0] "冠龙" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -78217,7 +78519,7 @@ msgid "edmontosaurus" msgid_plural "edmontosaurus" msgstr[0] "埃德蒙顿龙" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "一种巨大的、长着鳞片的恐龙,长着一只没有牙齿的大嘴。" @@ -78227,7 +78529,7 @@ msgid "pachycephalosaurus" msgid_plural "pachycephalosaurus" msgstr[0] "厚头龙" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -78239,7 +78541,7 @@ msgid "pachyrhinosaurus" msgid_plural "pachyrhinosaurus" msgstr[0] "厚鼻龙" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -78251,7 +78553,7 @@ msgid "pentaceratops" msgid_plural "pentaceratops" msgstr[0] "五角龙" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -78263,7 +78565,7 @@ msgid "kosmoceratops" msgid_plural "kosmoceratops" msgstr[0] "科斯莫角龙" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -78276,7 +78578,7 @@ msgid "torosaurus" msgid_plural "torosaurus" msgstr[0] "牛角龙" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -78288,7 +78590,7 @@ msgid "triceratops" msgid_plural "triceratops" msgstr[0] "三角龙" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -78300,7 +78602,7 @@ msgid "dimorphodon" msgid_plural "dimorphodon" msgstr[0] "双型齿翼龙" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -78312,7 +78614,7 @@ msgid "pteranodon" msgid_plural "pteranodon" msgstr[0] "无齿翼龙" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -78324,7 +78626,7 @@ msgid "quetzalcoatlus" msgid_plural "quetzalcoatlus" msgstr[0] "风神翼龙" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -78336,7 +78638,7 @@ msgid "mosasaurus" msgid_plural "mosasaurus" msgstr[0] "沧龙" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -78348,7 +78650,7 @@ msgid "Gallimimus bio-operator" msgid_plural "Gallimimus bio-operator" msgstr[0] "生化似鸡龙" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -78360,7 +78662,7 @@ msgid "Pachycephalosaurus bio-operator" msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "生化厚头龙" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -78372,7 +78674,7 @@ msgid "Triceratops bio-operator" msgid_plural "Triceratops bio-operator" msgstr[0] "生化三角龙" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -78384,7 +78686,7 @@ msgid "Velociraptor bio-operator" msgid_plural "Velociraptor bio-operator" msgstr[0] "生化伶盗龙" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -78396,7 +78698,7 @@ msgid "Deinonychus bio-operator" msgid_plural "Deinonychus bio-operator" msgstr[0] "生化恐爪龙" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -78408,7 +78710,7 @@ msgid "Dimorphodon bio-operator" msgid_plural "Dimorphodon bio-operator" msgstr[0] "生化双型齿翼龙" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -78420,7 +78722,7 @@ msgid "Spinosaurus bio-operator" msgid_plural "Spinosaurus bio-operator" msgstr[0] "生化棘龙" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -78523,6 +78825,20 @@ msgid "" msgstr "" "一具巨大的蹒跚而行的双足食肉恐龙尸体,长着长长的爪子和强壮的手臂,可以抓住你。真菌从它的口、眼、耳和其他孔洞处喷薄而出并互相连接起来,被霉菌覆盖的躯体还在蹒跚而行。" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "真菌丧尸戈尔冈龙" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" +"一具巨大的蹒跚而行的双足食肉恐龙尸体,长着短小手臂和巨大的嘴。真菌从它的口、眼、耳和其他孔洞处喷薄而出并互相连接起来,被霉菌覆盖的躯体还在蹒跚而行。" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -79019,6 +79335,11 @@ msgid "dark gray and yellow hatchling" msgid_plural "dark gray and yellow hatchlings" msgstr[0] "深灰黄色恐龙幼仔" +#: lang/json/MONSTER_from_json.py +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" +msgstr[0] "绿紫色恐龙幼仔" + #: lang/json/MONSTER_from_json.py msgid "red and green hatchling" msgid_plural "red and green hatchlings" @@ -79029,11 +79350,6 @@ msgid "dark gray and white hatchling" msgid_plural "dark gray and white hatchlings" msgstr[0] "深灰白色恐龙幼仔" -#: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" -msgstr[0] "绿紫色恐龙幼仔" - #: lang/json/MONSTER_from_json.py msgid "amargasaurus hatchling" msgid_plural "amargasaurus hatchlings" @@ -79082,7 +79398,6 @@ msgid_plural "magenta and green two-legged juveniles" msgstr[0] "紫绿色双足恐龙幼仔" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -79102,23 +79417,81 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "一只背上长着扇型背甲的大型食肉恐龙幼仔。" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" -msgstr[0] "棕白色双足恐龙幼仔" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" +msgstr[0] "异特龙幼仔" + +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "一只大型双足食肉恐龙幼仔。" #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" -msgstr[0] "红白色双足恐龙幼仔" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" +msgstr[0] "高棘龙幼仔" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." -msgstr "一只小型双足食肉恐龙幼仔,长着大而闪亮的眼睛,太小了以至于你无法分辨它的物种,它可能来自几种不同的物种。" +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "一只大型双足食肉恐龙幼仔,背上长着一条长长的脊梁,覆盖着厚重的肌肉。" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "西雅茨龙幼仔" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." +msgstr "一只大型双足食肉恐龙幼仔,长着长长的爪子和强壮的手臂,可以轻松抓住你。" + +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "戈尔冈龙幼仔" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "一只大型双足食肉恐龙幼仔,长着巨大的牙齿,凶猛的眼睛,两个短小的手臂,背部和尾部长着羽毛,强而有力的躯干驱动着它前行。" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "阿尔伯塔龙幼仔" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "一只大型双足食肉恐龙幼仔,长着巨大的牙齿,凶猛的眼睛,长长的手臂,背部和尾部长着羽毛,强而有力的躯干驱动着它前行。" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "虔州龙幼仔" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "一只大型双足食肉恐龙幼仔,浑身长满羽毛,长着一张长长的、像鳄鱼一样的嘴和许多锋利的牙齿。" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "霸王龙幼仔" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "一只背上长着大而锋利的牙齿的大型食肉恐龙幼仔。" @@ -79322,6 +79695,18 @@ msgid "" "and strong arms for grappling." msgstr "一具巨大的蹒跚而行的双足食肉恐龙尸体,长着长长的爪子和强壮的手臂,可以抓住你。" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "丧尸戈尔冈龙" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "一具巨大的恐龙尸体撑起了巨大的大嘴,嘴中不断滴落下黑色的液体。" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -79423,7 +79808,7 @@ msgid "amargasaurus zombie" msgid_plural "amargasaurus zombie" msgstr[0] "丧尸阿马加龙" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -79854,6 +80239,7 @@ msgstr[0] "烧焦丧尸双脊龙" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -79898,6 +80284,11 @@ msgid "scorched siats zombie" msgid_plural "scorched siats zombies" msgstr[0] "烧焦丧尸西雅茨龙" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "烧焦丧尸戈尔冈龙" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -80266,6 +80657,18 @@ msgid "" "muscles and swollen, festering wounds." msgstr "一具巨大的蹒跚而行的双足食肉恐龙尸体,长着长长的爪子和强壮的手臂,可以抓住你。它的整个身体被肿胀的肌肉和溃烂的伤口撑得十分鼓胀。" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "恐怖戈尔冈龙" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "一具巨大的恐龙尸体撑起了巨大的大嘴,嘴中不断滴落下黑色的液体。它的整个身体被肿胀的肌肉和溃烂的伤口撑得更加巨大。" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -80295,7 +80698,7 @@ msgid "Rage Rex" msgid_plural "Rage Rex" msgstr[0] "恐怖霸王龙" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -80307,7 +80710,7 @@ msgid "Gruesome Gallimimus" msgid_plural "Gruesome Gallimimus" msgstr[0] "恐怖似鸡龙" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -80320,7 +80723,7 @@ msgid "Nefarious Nothronychus" msgid_plural "Nefarious Nothronychus" msgstr[0] "恐怖懒爪龙" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -80377,7 +80780,7 @@ msgid "Anabolic Apatosaurus" msgid_plural "Anabolic Apatosaurus" msgstr[0] "恐怖迷惑龙" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -80437,7 +80840,7 @@ msgid "Anabolic Alamosaurus" msgid_plural "Anabolic Alamosaurus" msgstr[0] "恐怖阿拉摩龙" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -80671,11 +81074,24 @@ msgid "" msgstr "一具长着破碎羽毛的蹒跚而行的大型爬行动物尸体,长着长而尖的无齿喙和长而尖的头冠。它的整个身体被肿胀的肌肉和溃烂的伤口撑得十分鼓胀。" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" +msgstr[0] "暗影丧尸角鼻龙" + +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" +"这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的长着许多巨大利齿的巨型双足恐龙轮廓。它的外表长着许多角和尖刺。" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" msgstr[0] "暗影丧尸棘龙" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -80685,65 +81101,66 @@ msgstr "" "这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的长着破碎背帆的巨型恐龙轮廓。头部又长又窄,有一个V形的鼻子。" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" -msgstr[0] "暗影丧尸霸王龙" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" +msgstr[0] "暗影丧尸异特龙" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" -"这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的模糊的巨型恐龙轮廓。头看起来很大,能装下很多大牙齿。" +"这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的长着许多巨大利齿的巨型双足恐龙轮廓。" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" -msgstr[0] "暗影阿尔伯塔龙" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" +msgstr[0] "暗影丧尸戈尔冈龙" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" -"这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的模糊的巨型恐龙轮廓。头看起来很大,下面是一对贪婪的长爪。" +"这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的模糊的巨型恐龙轮廓。头看起来很大,仿佛能装下许多巨大的尖牙。" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" -msgstr[0] "暗影甲龙" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" +msgstr[0] "暗影丧尸阿尔伯塔龙" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" -"这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的长着尖刺尾巴的巨型装甲四足恐龙轮廓。" +"这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的模糊的巨型恐龙轮廓。头看起来很大,下面是一对贪婪的长爪。" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" -msgstr[0] "暗影异特龙" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" +msgstr[0] "暗影丧尸霸王龙" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" -"这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的长着许多巨大利齿的巨型双足恐龙轮廓。" +"这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的模糊的巨型恐龙轮廓。头看起来很大,能装下很多大牙齿。" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" -msgstr[0] "暗影懒爪龙" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" +msgstr[0] "暗影丧尸懒爪龙" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -80752,11 +81169,11 @@ msgstr "" "这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的模糊的双足恐龙轮廓。它的手上长出了一双长长的爪子。" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" -msgstr[0] "暗影恐爪龙" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" +msgstr[0] "暗影丧尸恐爪龙" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -80766,11 +81183,11 @@ msgstr "" "这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的模糊的双足恐龙轮廓。双脚前端巨大的镰刀状利爪正不断挥舞着。" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" -msgstr[0] "暗影犹他盗龙" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" +msgstr[0] "暗影丧尸犹他盗龙" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -80780,17 +81197,17 @@ msgstr "" "这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的模糊的大型双足恐龙轮廓。双脚前端巨大的镰刀状利爪正不断挥舞着。" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" -msgstr[0] "暗影角鼻龙" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" +msgstr[0] "暗影丧尸甲龙" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" -"这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的长着许多巨大利齿的巨型双足恐龙轮廓。它的外表长着许多角和尖刺。" +"这只丧尸恐龙被一层不可思议的阴影所笼罩,看上去似如光线也拒绝去接触它一般。你唯一能够分辨出来的是一个步履蹒跚的长着尖刺尾巴的巨型装甲四足恐龙轮廓。" #: lang/json/MONSTER_from_json.py msgid "Bone Dragon" @@ -80817,7 +81234,7 @@ msgid "skeletal spinosaurus" msgid_plural "skeletal spinosaurus" msgstr[0] "骸骨棘龙" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -80829,7 +81246,8 @@ msgid "skeletal allosaurus" msgid_plural "skeletal allosaurus" msgstr[0] "骸骨异特龙" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -80841,7 +81259,7 @@ msgid "skeletal acrocanthosaurus" msgid_plural "skeletal acrocanthosaurus" msgstr[0] "骸骨高棘龙" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -80853,19 +81271,24 @@ msgid "skeletal siats" msgid_plural "skeletal siats" msgstr[0] "骸骨西雅茨龙" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "巨大而密集的骨柱托举起尖牙,牙尖不断滴下黑色的黏液。长着长长的爪子和骨臂,可以轻松抓住你。" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "骸骨戈尔冈龙" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "骸骨阿尔伯塔龙" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -80877,7 +81300,7 @@ msgid "skeletal qianzhousaurus" msgid_plural "skeletal qianzhousaurus" msgstr[0] "骸骨虔州龙" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -80901,7 +81324,7 @@ msgid "skeletal gallimimus" msgid_plural "skeletal gallimimus" msgstr[0] "骸骨似鸡龙" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -80912,7 +81335,7 @@ msgid "skeletal nothronychus" msgid_plural "skeletal nothronychus" msgstr[0] "骸骨懒爪龙" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -80924,8 +81347,8 @@ msgid "skeletal deinonychus" msgid_plural "skeletal deinonychus" msgstr[0] "骸骨恐爪龙" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -80942,7 +81365,7 @@ msgid "armored amargasaurus" msgid_plural "armored amargasaurus" msgstr[0] "骸骨阿马加龙" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -80955,7 +81378,7 @@ msgid "armored apatosaurus" msgid_plural "armored apatosaurus" msgstr[0] "骸骨迷惑龙" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -80967,7 +81390,7 @@ msgid "armored brontosaurus" msgid_plural "armored brontosaurus" msgstr[0] "骸骨雷龙" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -80979,7 +81402,7 @@ msgid "armored diplodocus" msgid_plural "armored diplodocus" msgstr[0] "骸骨梁龙" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -80991,7 +81414,7 @@ msgid "armored camarasaurus" msgid_plural "armored camarasaurus" msgstr[0] "骸骨圆顶龙" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -81003,7 +81426,7 @@ msgid "armored brachiosaurus" msgid_plural "armored brachiosaurus" msgstr[0] "骸骨腕龙" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -81015,7 +81438,7 @@ msgid "armored alamosaurus" msgid_plural "armored alamosaurus" msgstr[0] "骸骨阿拉摩龙" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -81027,7 +81450,7 @@ msgid "skeletal stegosaurus" msgid_plural "skeletal stegosaurus" msgstr[0] "骸骨剑龙" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -81039,7 +81462,7 @@ msgid "skeletal dyoplosaurus" msgid_plural "skeletal dyoplosaurus" msgstr[0] "骸骨倍甲龙" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -81052,7 +81475,7 @@ msgid "Bone Fortress" msgid_plural "Bone Fortress" msgstr[0] "骸骨甲龙" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -81065,7 +81488,7 @@ msgid "armored nodosaurus" msgid_plural "armored nodosaurus" msgstr[0] "骸骨结节龙" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -81077,7 +81500,7 @@ msgid "armored edmontonia" msgid_plural "armored edmontonia" msgstr[0] "骸骨埃德蒙顿甲龙" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -81089,7 +81512,7 @@ msgid "armored camptosaurus" msgid_plural "armored camptosaurus" msgstr[0] "骸骨弯龙" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -81101,7 +81524,7 @@ msgid "armored maiasaura" msgid_plural "armored maiasaura" msgstr[0] "骸骨慈母龙" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -81113,7 +81536,7 @@ msgid "armored parasaurolophus" msgid_plural "armored parasaurolophus" msgstr[0] "骸骨副栉龙" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -81125,7 +81548,7 @@ msgid "armored corythosaurus" msgid_plural "armored corythosaurus" msgstr[0] "骸骨冠龙" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -81137,7 +81560,7 @@ msgid "armored Edmontosaurus" msgid_plural "armored Edmontosaurus" msgstr[0] "骨甲埃德蒙顿龙" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -81149,7 +81572,7 @@ msgid "protected pachycephalosaurus" msgid_plural "protected pachycephalosaurus" msgstr[0] "骸骨厚头龙" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -81161,7 +81584,7 @@ msgid "protected pachyrhinosaurus" msgid_plural "protected pachyrhinosaurus" msgstr[0] "骸骨厚鼻龙" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -81173,7 +81596,7 @@ msgid "protected pentaceratops" msgid_plural "protected pentaceratops" msgstr[0] "骸骨五角龙" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -81185,7 +81608,7 @@ msgid "armored kosmoceratops" msgid_plural "armored kosmoceratops" msgstr[0] "骸骨科斯莫角龙" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -81197,7 +81620,7 @@ msgid "armored torosaurus" msgid_plural "armored torosaurus" msgstr[0] "骸骨牛角龙" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -81209,7 +81632,7 @@ msgid "armored triceratops" msgid_plural "armored triceratops" msgstr[0] "骸骨三角龙" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -81221,7 +81644,7 @@ msgid "Tyruckusaurus Rex" msgid_plural "Tyruckusaurus Rex" msgstr[0] "坦克丧尸霸王龙" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -81234,7 +81657,7 @@ msgid "Tankylosaurus" msgid_plural "Tankylosaurus" msgstr[0] "坦克甲龙" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -81247,7 +81670,7 @@ msgid "Goliath Rex" msgid_plural "Goliath Rex" msgstr[0] "歌利亚丧尸霸王龙" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -81259,7 +81682,7 @@ msgid "Ankylosaurus hulk" msgid_plural "Ankylosaurus hulk" msgstr[0] "浩克丧尸甲龙" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -81271,7 +81694,7 @@ msgid "Dimorphodon zombie" msgid_plural "Dimorphodon zombie" msgstr[0] "丧尸双型齿翼龙" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -81309,7 +81732,7 @@ msgid "CROWS II, heavy machinegun" msgid_plural "CROWS II, heavy machinegun" msgstr[0] "CROWS II 重机枪炮塔" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -81326,7 +81749,7 @@ msgid "CROWS II, light machinegun" msgid_plural "CROWS II, light machinegun" msgstr[0] "CROWS II 轻机枪炮塔" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -81628,7 +82051,7 @@ msgid "forge hounds" msgid_plural "forge hounds" msgstr[0] "熔炉猎犬" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -81919,7 +82342,7 @@ msgid "hunllef rams" msgid_plural "hunllef rams" msgstr[0] "亨利夫羊" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -82046,6 +82469,22 @@ msgid "" msgstr "" "曾被人们认为已经在魁北克和路易斯安那州外的乡村地区灭绝了,当它不疯狂的摧毁它领地内的任何人性迹象之时,这种被诅咒的怪物被认为能和真正的狼交配。" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "火焰梦魇" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" +"一个巨大的身影,似乎完全由被火焰吞噬的阴影组成。它巨大的黑色翅膀从一堵墙伸展到另一堵墙。两只像燃烧煤块一样的眼睛带着仇恨向下凝视着你。它一手拿着一把巨大的剑,另一手拿着一把多节鞭,两把武器都发出炽热的红光。" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -82307,7 +82746,7 @@ msgid "animal cracker largemouth bass" msgid_plural "animal cracker largemouth bass" msgstr[0] "动物薄脆大嘴鲈" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -82577,7 +83016,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "诺斯罗普格鲁曼公司生产的重装甲X-1战斗机器人,最初设计与军事巡逻与护送目标,有一组液压履带,装备着M16A4步枪。" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -84604,12 +85043,12 @@ msgstr "提升疼痛。用于米·戈奴役者光束" #: lang/json/SPELL_from_json.py msgid "Exodii multipurpose weapon pod" -msgstr "流亡族多用途武器空投舱" +msgstr "流亡族多用途武器" #. ~ Description for Exodii multipurpose weapon pod #: lang/json/SPELL_from_json.py msgid "Randomly selects one of several weapons." -msgstr "随机选择一把武器。" +msgstr "随机选择一把武器发射。" #: lang/json/SPELL_from_json.py msgid "Electric Arc Burst" @@ -84706,37 +85145,37 @@ msgstr "使敌人短暂失明。" #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Slime Spray" -msgstr "" +msgstr "粘液喷射" #. ~ Description for Slime Spray #: lang/json/SPELL_from_json.py msgid "Spray slime onto an enemy to slow them down." -msgstr "" +msgstr "朝敌人喷射粘液,使他们减速。" #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Bioluminescent Flare" -msgstr "" +msgstr "生物闪光弹" #. ~ Description for Bioluminescent Flare #: lang/json/SPELL_from_json.py msgid "" "Projects a spray of bioluminescent goo that illuminates the area around it." -msgstr "" +msgstr "喷射出一团生物发光的粘液,照亮周围区域。" #: lang/json/SPELL_from_json.py msgid "Short Leap" -msgstr "" +msgstr "小跳" #. ~ Description for Short Leap #: lang/json/SPELL_from_json.py msgid "" "You squat down, build up tension in your legs and release. Launching " "yourself quite a distance." -msgstr "" +msgstr "你蹲下,增加腿部的张力,然后释放。让自己跳出一段距离。" #: lang/json/SPELL_from_json.py lang/json/mutation_from_json.py msgid "Crushing Leap" -msgstr "" +msgstr "粉碎一跳" #. ~ Description for Crushing Leap #: lang/json/SPELL_from_json.py @@ -84744,7 +85183,7 @@ msgid "" "You squat down, build up tension in your legs and release. You have the " "ability to target and land in the way to do maximum damage to any target in " "your way. Death from above." -msgstr "" +msgstr "你蹲下,增加腿部的张力,然后释放。你能按照自己的意愿瞄准降落地点,对挡路的目标造成极大伤害。死亡从天而降。" #: lang/json/SPELL_from_json.py msgid "Cranial Explosion" @@ -87627,7 +88066,7 @@ msgstr[0] "采矿头盔(开)" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -87671,7 +88110,7 @@ msgstr "关闭" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -88547,7 +88986,7 @@ msgid "RX11 stimulant delivery system" msgid_plural "RX11 stimulant delivery system" msgstr[0] "RX11兴奋剂注射器" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -89100,17 +89539,17 @@ msgid "shooter's earmuffs" msgid_plural "shooter's earmuffs" msgstr[0] "射击护耳" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "你启动了护耳。" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "护耳的电池耗尽了。" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -89119,7 +89558,7 @@ msgid "" "currently off." msgstr "一对备由射手青睐的护耳。没有电池或关闭时,它们就像普通耳罩,阻挡任何声音。现在处于关闭状态。它们能阻挡超过一定分贝的声音,前提是有电。" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -89332,7 +89771,6 @@ msgid "You turn the flight helmet on." msgstr "你打开了头盔灯。" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -89343,29 +89781,37 @@ msgstr "一顶军用飞行头盔。配有面罩、麦克风和消音系统。头 #: lang/json/TOOL_ARMOR_from_json.py msgid "military flight helmet (on)" msgid_plural "military flight helmets (on)" -msgstr[0] "" +msgstr[0] "军用飞行头盔(开)" + +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "一顶军用飞行头盔,上面的LED灯正不时地闪动着。配有面罩、麦克风和消音系统。头盔还装有塑料导轨,可以安装不同的装备。" #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" -msgstr[0] "" +msgstr[0] "鸭舌帽" #. ~ Use action menu_text for Combo cover. #: lang/json/TOOL_ARMOR_from_json.py msgid "Salute" -msgstr "" +msgstr "敬礼" #. ~ Use action msg for Combo cover. #: lang/json/TOOL_ARMOR_from_json.py msgid "You bring your hand to your cover and issue a salute." -msgstr "" +msgstr "你把手并拢,微接帽檐,敬礼。" #. ~ Description for Combo cover #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military officer's combo cover, or peaked cap. It conveys an air of " "authority, while keeping the sun out of your eyes." -msgstr "" +msgstr "一顶军官的鸭舌帽,或尖顶帽。它散发出一种权威感,同时能避免阳光直射你的眼睛。" #: lang/json/TOOL_ARMOR_from_json.py msgid "FB51 optical cloak" @@ -89683,7 +90129,7 @@ msgid "bagpipes" msgid_plural "bagpipes" msgstr[0] "风笛" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -90290,7 +90736,7 @@ msgid "Megingjörð" msgid_plural "Megingjörð" msgstr[0] "索尔的神奇腰带" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -90360,7 +90806,7 @@ msgid "escape boots" msgid_plural "escape boots" msgstr[0] "逃脱之靴" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -91049,7 +91495,7 @@ msgid "autonomous surgical scalpels" msgid_plural "autonomous surgical scalpels" msgstr[0] "全自动外科手术刀" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -92767,7 +93213,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "这种多功能的传统武器起源于尼泊尔。具有重厚的刀身和向内弯曲的刀刃,可以用来作为一种工具和武器。" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -92775,7 +93221,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "一把古中国剑,双刃开锋,剑身长直,护手带有装饰,柄端附有流苏。民间传说中四大武器之一,其余三个是:刀、枪和棍。" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -92857,7 +93303,7 @@ msgid "dao" msgid_plural "dao" msgstr[0] "中式刀" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -92905,7 +93351,7 @@ msgid "" msgstr "" "长刺刀是一种安装在枪械或弩前端的大型斩击武器。可以让你的武器变成近战长矛。这把刺刀经过了改装,可以装在除了手枪和冲锋枪之外的几乎任何武器上。" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -92915,7 +93361,7 @@ msgstr "" "一把日式短刀,在胁差发明之前曾经是武士的备用武器。虽然比更有名的日本刀小,但仍然是把致命的武器。\n" "\"在末世的绝望中可以赋予你更具意义的自尽方式。\"" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -92946,7 +93392,7 @@ msgid "" "made." msgstr "锡克教徒使用的礼仪匕首,这把看上去工艺并不怎么样。" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -93035,14 +93481,14 @@ msgid "" "battle a stylish battle." msgstr "很适合绅士与剑士使用的武器,轻盈而迅捷,可以适用于各种战斗。" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "一柄武士刀,打刀款式,为日本武士步兵作战时使用,刀身中央略微弯曲,以利于迅速拔刀,全长一米左右,刀刃锋利无比。" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -93056,7 +93502,7 @@ msgid "" "supposed to be that bendy." msgstr "一把德制巨型双手剑,极具视觉冲击力。不知是设计师的奇思妙想,还是铸剑师的偷奸耍滑,这把剑的剑刃有些不妙的弯曲。" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -93205,7 +93651,7 @@ msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "化纤布片" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -93900,7 +94346,7 @@ msgid "electronic handcuffs" msgid_plural "electronic handcuffs" msgstr[0] "电子手铐" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -94307,7 +94753,7 @@ msgstr "这是军用级别的黑索金(环三亚甲基三硝胺)复合炸药 #: lang/json/TOOL_from_json.py msgid "C-4 explosive (armed)" msgid_plural "C-4 explosives (armed)" -msgstr[0] "C4炸弹(无保险)" +msgstr[0] "C4炸弹(已启动)" #. ~ Use action no_deactivate_msg for C-4 explosive (armed). #. ~ Use action no_deactivate_msg for mininuke. @@ -94548,7 +94994,7 @@ msgstr "一颗军警使用的震撼弹,使用此物品以拔掉保险销,之 #: lang/json/TOOL_from_json.py msgid "active flashbang" msgid_plural "active flashbangs" -msgstr[0] "闪光弹(无保险)" +msgstr[0] "闪光弹(已启动)" #. ~ Use action no_deactivate_msg for active flashbang. #. ~ Use action no_deactivate_msg for active EMP grenade. @@ -94579,7 +95025,7 @@ msgstr "激活" #. ~ Use action msg for makeshift gas canister. #: lang/json/TOOL_from_json.py msgid "You arm the makeshift gas canister." -msgstr "你拉开了自制催泪手雷的保险销。" +msgstr "你激活了自制催泪手雷。" #. ~ Description for makeshift gas canister #: lang/json/TOOL_from_json.py @@ -94593,7 +95039,7 @@ msgstr "一个由家用化学药品制成的自制催泪手雷。使用以激活 #: lang/json/TOOL_from_json.py msgid "active makeshift gas canister" msgid_plural "active makeshift gas canisters" -msgstr[0] "使用自制催泪手雷" +msgstr[0] "自制催泪瓦斯弹(已启动)" #. ~ Use action no_deactivate_msg for active makeshift gas canister. #: lang/json/TOOL_from_json.py @@ -94637,7 +95083,7 @@ msgstr "一个军用破片手雷,使用此物品以拔掉保险销,之后你 #: lang/json/TOOL_from_json.py msgid "active grenade" msgid_plural "active grenades" -msgstr[0] "手雷(无保险)" +msgstr[0] "手雷(已启动)" #. ~ Use action no_deactivate_msg for active grenade. #. ~ Use action no_deactivate_msg for active scrambler grenade. @@ -94683,7 +95129,7 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "active EMP grenade" msgid_plural "active EMP grenades" -msgstr[0] "EMP手雷(无保险)" +msgstr[0] "EMP手雷(已启动)" #. ~ Description for active EMP grenade #: lang/json/TOOL_from_json.py @@ -94710,7 +95156,7 @@ msgstr "一个军用燃烧手雷,使用此物品以拔掉保险销。之后五 #: lang/json/TOOL_from_json.py msgid "active incendiary grenade" msgid_plural "active incendiary grenades" -msgstr[0] "燃烧手雷(无保险)" +msgstr[0] "燃烧手雷(已启动)" #. ~ Description for active incendiary grenade #: lang/json/TOOL_from_json.py @@ -94809,7 +95255,7 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "active scrambler grenade" msgid_plural "active scrambler grenades" -msgstr[0] "扰频手雷(无保险)" +msgstr[0] "扰频手雷(已启动)" #. ~ Description for active scrambler grenade #: lang/json/TOOL_from_json.py @@ -94922,7 +95368,7 @@ msgstr[0] "军用炸药自制手雷" #: lang/json/TOOL_from_json.py msgid "active military explosive homemade grenade" msgid_plural "active military explosive homemade grenades" -msgstr[0] "军用炸药自制手雷(无保险)" +msgstr[0] "军用炸药自制手雷(已启动)" #: lang/json/TOOL_from_json.py msgid "military explosive pipebomb" @@ -94945,7 +95391,7 @@ msgstr "一根塞满了军用级炸药的钢管。使用此物品来拔掉保险 #: lang/json/TOOL_from_json.py msgid "active military explosive pipebomb" msgid_plural "active military explosive pipebombs" -msgstr[0] "军用炸药自制雷管(无保险)" +msgstr[0] "军用炸药自制雷管(已启动)" #. ~ Use action no_deactivate_msg for active military explosive pipebomb. #: lang/json/TOOL_from_json.py @@ -94984,7 +95430,7 @@ msgstr "一个自制的爆炸装置,由一个装满了军用级炸药和废金 #: lang/json/TOOL_from_json.py msgid "active military explosive bomb" msgid_plural "active military explosive bombs" -msgstr[0] "军用炸药自制炸弹(无保险)" +msgstr[0] "军用炸药自制炸弹(已启动)" #. ~ Use action no_deactivate_msg for active military explosive bomb. #: lang/json/TOOL_from_json.py @@ -95097,7 +95543,7 @@ msgstr "用各种零件拼凑成的自制手雷。使用此物品来点燃导火 #: lang/json/TOOL_from_json.py msgid "active small homemade grenade" msgid_plural "active small homemade grenades" -msgstr[0] "小型自制手雷(无保险)" +msgstr[0] "小型自制手雷(已启动)" #: lang/json/TOOL_from_json.py msgid "homemade grenade" @@ -95107,7 +95553,7 @@ msgstr[0] "自制手雷" #: lang/json/TOOL_from_json.py msgid "active homemade grenade" msgid_plural "active homemade grenades" -msgstr[0] "自制手雷(无保险)" +msgstr[0] "自制手雷(已启动)" #: lang/json/TOOL_from_json.py msgid "pipebomb" @@ -95522,7 +95968,7 @@ msgstr "" #: lang/json/TOOL_from_json.py msgid "active throwable fire extinguisher" msgid_plural "active throwable fire extinguishers" -msgstr[0] "投掷型灭火器(无保险)" +msgstr[0] "投掷型灭火器(已启动)" #. ~ Description for active throwable fire extinguisher #: lang/json/TOOL_from_json.py @@ -96110,9 +96556,9 @@ msgstr "耐用手电的电池耗尽了。" #: lang/json/TOOL_from_json.py msgid "" "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." -msgstr "这是一个耐用的铝制LED手电筒,多为警卫使用,可勉强当作武器使用。使用它来提供照明,前提是有电池。" +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." +msgstr "这是一个耐用的铝制LED手电筒,多为警卫使用。使用它来提供照明,即便是在水下,前提是有电池。" #: lang/json/TOOL_from_json.py msgid "heavy duty flashlight (on)" @@ -96752,6 +97198,36 @@ msgstr[0] "砂型铸造模具" msgid "A mold for casting molten metals into different shapes" msgstr "用于将液态金属铸造成型的模具。" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "抛光石" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "一块天然的大石头,表面平坦可以用来研磨抛光。" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "脚踏式砂轮" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "一块圆形的脚踏式砂轮,用于磨削金属。" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "刻刀" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "一把由硬钢制成的工具,类似于刮刀,但用于金属。" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -97403,7 +97879,7 @@ msgid "shears" msgid_plural "shears" msgstr[0] "大剪刀" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "这是一把用来剪羊毛的剪刀。" @@ -97413,7 +97889,7 @@ msgid "electric shears" msgid_plural "electric shears" msgstr[0] "电动剪" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "这把电动剪可以更快的给动物剪毛。" @@ -97454,6 +97930,30 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "一个木制笼子,可以用来运输小型宠物。激活它后选择需要捕获的动物,或者选择空地放出笼中动物。" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "玻璃盆栽" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "一个用来盛放植物和/或昆虫的玻璃容器。有各种尺寸。" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "幸存者巨型萤火虫灯" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "某个有进取心的幸存者决定用一只巨型萤火虫和三尖树植物把这个玻璃盆栽变成一个光源。" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -97970,7 +98470,7 @@ msgid "qualitative filter paper" msgid_plural "qualitative filter paper" msgstr[0] "定性滤纸" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -97983,7 +98483,7 @@ msgid "quantitative filter paper" msgid_plural "quantitative filter paper" msgstr[0] "定量滤纸" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -98440,39 +98940,39 @@ msgid "Mi-go Biotech" msgid_plural "Mi-go Biotech" msgstr[0] "米·戈生化科技" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" msgid_plural "%s (happy)" msgstr[0] "%s(开心)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" msgid_plural "%s (focus)" msgstr[0] "%s(专注)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" msgid_plural "%s (pain relief)" msgstr[0] "%s(止痛)" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" msgid_plural "%s (wake up)" msgstr[0] "%s(唤醒)" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "部分米·戈生化科技。" @@ -98883,7 +99383,7 @@ msgid "patchwork cotton clothing parts" msgid_plural "patchwork cotton clothing parts" msgstr[0] "棉布拼布" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -99102,13 +99602,13 @@ msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "铁蒺藜" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "你将铁蒺藜撒在%s上。" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -99120,13 +99620,13 @@ msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "玻璃蒺藜" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "你将玻璃蒺藜撒在%s上。" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -99559,6 +100059,21 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "这是一把无线电钻,由电池供电,供有一套钻头可供选择。" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "无线冲击扳手" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" +"这是一把使用电池动力的无线冲击扳手,设计通过内部旋转的锤子提供高扭力。它配有一套标准的套筒,在工作时发出响亮的齿轮声。你可以用它来转动大型螺栓,甚至更换车轮。" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -99821,13 +100336,28 @@ msgid "pliers" msgid_plural "pliers" msgstr[0] "手钳" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "一把外形简单的鲤鱼钳,只能用来做一些基本的机械工作,再复杂一点的操作就需要用扳手了。" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "大力钳" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" +"这把钳子有个特别大的钳口,还有一个可调节的机构,可以将钳子夹在可锁紧的夹钳中,夹住任何被夹在钳子之间的不幸物体。它可以抓住并转动相当大的螺栓,或者暂时将两个零件夹在一起。" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -99877,6 +100407,31 @@ msgid "" "to have the right tools for more precise work." msgstr "一把有着多种尺寸和形状接口的螺丝刀。保证有正确的工具来进行更精细的工作" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "套筒螺丝刀组" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "这是一把套筒螺丝刀,带有一系列用于转动螺栓或螺母的六角套筒,包括一对标准螺丝刀头。" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "套筒扳手组" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "这是一把厚柄齿轮扳手,带有各种通用六角螺栓尺寸的可更换套筒。你可以用这个松开或拧紧相当大的螺栓,齿轮能发出令人满意的咔嗒声。" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -99994,17 +100549,43 @@ msgstr "" "一把小巧且锋利的刀具,用于在制造工艺品和衣物时进行精确切割使用。伤害不错但很难命中敌人。小巧锋利的刀刃在高手手中能够很精确打击对手。但尺寸太小不适合用来屠宰尸体。" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" -msgstr[0] "扳手" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "小型可调扳手" + +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "这把新月形可调扳手结构紧凑,手柄很短,可放在手掌中。它可用于转动小型六角螺母或螺栓。" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "可调扳手" -#. ~ Description for wrench +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "一把扳手,能当做武器握在手里,也是许多机械制造必备之物。" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "大型可调扳手" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "这把新月形可调扳手非常大,手柄很长,钳口约两英寸宽。这样可以很容易地转动大多数螺栓,甚至可以转动车轮凸缘螺母。" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -100118,7 +100699,7 @@ msgstr "便携式钚反应堆,请轻拿轻放!" #: lang/json/TOOL_from_json.py msgid "active alien bomb" msgid_plural "active alien bombs" -msgstr[0] "外星炸弹(无保险)" +msgstr[0] "外星炸弹(已启动)" #. ~ Description for active alien bomb #: lang/json/TOOL_from_json.py @@ -100191,7 +100772,7 @@ msgstr "一个装在响箭型无人机上的微型塑胶炸药。激活后3回 #: lang/json/TOOL_from_json.py msgid "Armed Kabura-ya antipersonnel device" msgid_plural "Armed Kabura-ya antipersonnel devices" -msgstr[0] "响箭型无人机自爆装置(已激活)" +msgstr[0] "响箭型无人机自爆装置(已启动)" #. ~ Use action no_deactivate_msg for Armed Kabura-ya antipersonnel device. #: lang/json/TOOL_from_json.py @@ -100247,7 +100828,7 @@ msgstr "一个军用冰冻手雷,一旦引爆,就会散播出特制的强吸 #: lang/json/TOOL_from_json.py msgid "active cryo grenade" msgid_plural "active cryo grenades" -msgstr[0] "冰冻手雷(无保险)" +msgstr[0] "冰冻手雷(已启动)" #. ~ Description for active cryo grenade #: lang/json/TOOL_from_json.py @@ -100282,37 +100863,6 @@ msgid "" msgstr "" "一座未激活的脑熔炮塔。使用它以将它开启并放在地面上。此炮塔保证在用它那威力无比的转轮激光炮扫射丧尸时不会误伤自己。电子学和计算机学等级决定了你将其重新编程的成功几率。" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "双足机器人(关)" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "双足机器人站起来,摇晃着经过你的身边,开始调查该区域。" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "双足机器人发出蜂鸣,直接瞄准了你。快找掩护!" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" -"一台未激活的双足机器人。使用该物品以将它放置在地上并打开它,并装填你物品栏内的原装 5.56mm 口径子弹和 40mm " -"口径榴弹(如果你只想装填部分弹药,请先把不需装填的弹药移出物品栏)。如果重新编程成功,无人车会将你识别为友军,自主行动或跟随你,并攻击所有在其步枪和榴弹发射器攻击范围内的敌人。" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -100344,6 +100894,11 @@ msgstr "" "一台未激活的\"猎兔犬\"型无人坦克车。使用该物品以将它放置在地上并打开它,并装填你物品栏内的原装 5.56mm 口径子弹和 40mm " "口径榴弹(如果你只想装填部分弹药,请先把不需装填的弹药移出物品栏)。如果重新编程成功,无人车会将你识别为友军,自主行动或跟随你,并攻击所有在其步枪和榴弹发射器攻击范围内的敌人。" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "双足机器人(关)" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -100561,8 +101116,8 @@ msgstr[0] "捕鼠机器人(关)" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" "一台小型六足无人机,设计用于害虫控制,被折叠成一个小立方体,便于储存。它能够以惊人的效率捕杀各种小型害兽,但别指望它能对付任何体型比老鼠大的东西。" @@ -100983,7 +101538,7 @@ msgid "377-UASTA (weaponized)" msgid_plural "377-UASTA (weaponized)" msgstr[0] "377-UASTA 等离子喷枪(改)" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -101157,7 +101712,7 @@ msgstr "这颗手雷上挂着一个标签,上面有一个签名:Kevin。看 #: lang/json/TOOL_from_json.py msgid "active Granade" msgid_plural "active Granades" -msgstr[0] "签名版手雷(无保险)" +msgstr[0] "签名版手雷(已启动)" #. ~ Description for active Granade #: lang/json/TOOL_from_json.py @@ -101397,7 +101952,7 @@ msgid "" "you!" msgstr "这个装置已经打开,发出可怕的噼啪声、碰撞声和其他嘈杂的声音。快点,在它把敌人吸引过来之前离开它!" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -101448,7 +102003,7 @@ msgid "" msgstr "" "一个脆弱的长柄武器,由木棍上面绑上一个金属刺做成。不怎么锋利,制造水平不佳,但是在你找到更好的武器之前可以用来把敌人拒于手臂的攻击范围之外。" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -101466,7 +102021,7 @@ msgid "inactive CROWS II, light machinegun" msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "CROWS II 轻机枪炮塔(关)" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -102397,6 +102952,15 @@ msgid "" " preferred." msgstr "一把由山铜而不是钢材制成的消防斧。这让它能够砍开更坚硬的材质,成为资金非常充足的消防局的首选消防斧。" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "这是一把经典的中世纪长剑,大小介于轻型武装剑和后来的双手剑之间。由于它是由秘银金属锻造而成,它比回火钢更坚固,但重量要轻得多。" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -102444,6 +103008,32 @@ msgstr[0] "岩糖块" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "这是一块坚硬的岩糖,可以分解成白糖。" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "双足机器人站起来,摇晃着经过你的身边,开始调查该区域。" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "双足机器人发出蜂鸣,直接瞄准了你。快找掩护!" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" +"一台未激活的双足机器人。使用该物品以将它放置在地上并打开它,并装填你物品栏内的原装 5.56mm 口径子弹和 40mm " +"口径榴弹(如果你只想装填部分弹药,请先把不需装填的弹药移出物品栏)。如果重新编程成功,无人车会将你识别为友军,自主行动或跟随你,并攻击所有在其步枪和榴弹发射器攻击范围内的敌人。" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -102977,11 +103567,11 @@ msgstr "超越树人极限" #: lang/json/achievement_from_json.py msgid "Finally beat the tortoise" -msgstr "" +msgstr "终于赢了乌龟" #: lang/json/achievement_from_json.py msgid "crossed rabbit mutation threshold" -msgstr "" +msgstr "超越兔人极限" #: lang/json/achievement_from_json.py msgid "Heard of the swarm?" @@ -103097,19 +103687,19 @@ msgstr "超越穴居人极限" #: lang/json/achievement_from_json.py msgid "Carrying your home on your back" -msgstr "" +msgstr "把家背上" #: lang/json/achievement_from_json.py msgid "crossed gastropod mutation threshold" -msgstr "" +msgstr "超越蜗牛人极限" #: lang/json/achievement_from_json.py msgid "Leaping forward in life" -msgstr "" +msgstr "生命的飞跃" #: lang/json/achievement_from_json.py msgid "crossed batrachian mutation threshold" -msgstr "" +msgstr "超越蛙人极限" #: lang/json/achievement_from_json.py msgid "Thus spake zombiethustra" @@ -103325,8 +103915,8 @@ msgid "Fashion Designer" msgstr "时装设计师" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." -msgstr "男性、女性和变种人时尚的定义者。" +msgid "From catwalk to cataclysm." +msgstr "从T台到大灾变。" #: lang/json/achievement_from_json.py msgid "Survivalist" @@ -103805,6 +104395,10 @@ msgstr "建造" msgid "mining" msgstr "挖矿" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "拖地" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "收拾整理" @@ -104075,7 +104669,7 @@ msgstr "切割电线" #: lang/json/activity_type_from_json.py msgid "prying open" -msgstr "" +msgstr "撬开" #: lang/json/activity_type_from_json.py msgid "chopping down a tree" @@ -104373,7 +104967,7 @@ msgstr "M235 66mm 燃烧弹TPA" #: lang/json/ammunition_type_from_json.py msgid "sling-ready grenades" -msgstr "弹弓用手雷" +msgstr "投射用手雷" #: lang/json/ammunition_type_from_json.py msgid "jp8" @@ -104675,16 +105269,15 @@ msgid "" msgstr "命运难料,你经历了一次失败的生化插件安装手术,除了使得生化插件失效,还让你在行走时发出吱吱的响声。" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "合金装甲-手臂" +msgid "Intradermal Alloy - Arms" +msgstr "手臂皮下合金" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." -msgstr "你的手臂的皮肤被手术替换成了合金装甲,提供防护并可用于生化武术。" +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." +msgstr "先进的防护网状合金已经编织进你手臂和双手的肌肉中,保护其免受物理创伤。" #: lang/json/bionic_from_json.py msgid "Protective Lenses" @@ -104699,38 +105292,37 @@ msgid "" msgstr "你的眼眶经过手术被高防护的反光镜片封死了,你的泪管被重新导向你的口腔。当你哭泣的时候,如果不把眼泪吐出来,你就只能含泪吞下去了。" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" -msgstr "合金装甲-头部" +msgid "Intradermal Alloy - head" +msgstr "头部皮下合金" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." -msgstr "你的头部的皮肤被手术替换成了合金装甲,对你的头部和下颌提供防护。" +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." +msgstr "先进的防护网状合金已经编织进你头部和嘴部的肌肉中,保护其免受物理创伤。" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "合金装甲-腿部" +msgid "Intradermal Alloy - Legs" +msgstr "腿部皮下合金" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." -msgstr "你的腿部的皮肤被手术替换成了合金装甲,提供防护并可用于生化武术。" +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." +msgstr "先进的防护网状合金已经编织进你腿部和双脚的肌肉中,保护其免受物理创伤。" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" -msgstr "合金装甲-躯干" +msgid "Intradermal Alloy - torso" +msgstr "躯干皮下合金" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." -msgstr "你躯干的皮肤被手术替换成了合金装甲,用于防御物理损伤。" +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." +msgstr "先进的防护网状合金已经编织进你躯干的肌肉中,保护其免受物理创伤。" #: lang/json/bionic_from_json.py msgid "Battery System" @@ -104740,9 +105332,9 @@ msgstr "电池充能" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." -msgstr "你体内装有一个电池系统,能够使用存储在普通电池内的电力。按“E”键来使用电池。可以自由开关。" +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." +msgstr "你体内装有一个电池系统,能够使用存储在普通电池内的电力。在生化插件菜单中开启来使用电池。可以自由开关。" #: lang/json/bionic_from_json.py msgid "Monomolecular Blade" @@ -107843,7 +108435,7 @@ msgstr "你的梦给你一种嗑了药的奇怪感觉。" #: lang/json/dream_from_json.py msgid "You have a strange dream about rabbits." -msgstr "" +msgstr "你做了一个关于兔子的怪梦。" #: lang/json/dream_from_json.py msgid "Your dreams give you a strange furry feeling." @@ -107859,20 +108451,20 @@ msgstr "你的梦给你一种全身长出羽毛的奇怪感觉。" #: lang/json/dream_from_json.py msgid "You have a strange dream about snails and slugs in your garden." -msgstr "" +msgstr "你做了一个关于花园中的蜗牛和蛞蝓的怪梦。" #: lang/json/dream_from_json.py msgid "Your dreams leave you feeling like something is stuck to you." -msgstr "" +msgstr "你的梦让你感觉有什么东西粘在你身上。" #: lang/json/dream_from_json.py msgid "" "You have a strange dream about frogs in a pond near your childhood home." -msgstr "" +msgstr "你做了一个奇怪的梦,梦见你童年家附近池塘里的青蛙。" #: lang/json/dream_from_json.py msgid "Your dreams contain a croaking concerto." -msgstr "" +msgstr "你的梦中不断唱响着一首呱呱叫的协奏曲。" #: lang/json/dream_from_json.py msgid "You have a strange dream about fish." @@ -108055,32 +108647,32 @@ msgstr "在梦里,你看到自己穿着病号服,被强行治疗。" #: lang/json/dream_from_json.py msgid "You have a disturbing dream about running from dogs." -msgstr "" +msgstr "你做了一个躲开猎狗追捕的怪梦。" #: lang/json/dream_from_json.py msgid "" "While dreaming, you see a distinctively rabbit-like reflection of yourself." -msgstr "" +msgstr "梦里,你看见自己像兔子一样的独特身影。" #: lang/json/dream_from_json.py msgid "You have a strange dream of carrying a house on your back." -msgstr "" +msgstr "你做了一个背着房子的怪梦。" #: lang/json/dream_from_json.py msgid "" "While dreaming, you see yourself weighted down under massive backpack/tent " "upon your back, as you pass by a mirrored surface." -msgstr "" +msgstr "在梦中,每当你经过一个镜面时,你都能看到自己被背上的巨大背包帐篷压下。" #: lang/json/dream_from_json.py msgid "You have a disturbing dream of eating insects." -msgstr "" +msgstr "你做了一个令人不安的梦,梦里你吃下昆虫。" #: lang/json/dream_from_json.py msgid "" "While dreaming, you see yourself in a pond, your face has widened and is " "covered in mucus." -msgstr "" +msgstr "在梦中,你能在池塘里看见自己的倒影,你的脸变宽了,浑身都是粘液。" #: lang/json/dream_from_json.py msgid "You have strange dreams of soaring through the sky." @@ -108264,11 +108856,11 @@ msgstr "你做了一个很令人困惑很逼真的梦,梦见自己俨然如一 #: lang/json/dream_from_json.py msgid "You have a strange dream about being the Easter Bunny." -msgstr "" +msgstr "你做了一个奇怪的梦,梦见自己是只复活节兔子。" #: lang/json/dream_from_json.py msgid "You have a comforting and warm dream of living as a rabbit." -msgstr "" +msgstr "你做了一个舒适而温暖的梦,梦见自己像兔子一样生活。" #: lang/json/dream_from_json.py msgid "" @@ -108302,21 +108894,21 @@ msgstr "当你醒来的时候,骤然感觉到一阵窒息,就像鱼儿跳出 #: lang/json/dream_from_json.py msgid "You dream of leaping from the water to catch your prey." -msgstr "" +msgstr "你梦见自己从水中跳出来捕捉猎物。" #: lang/json/dream_from_json.py msgid "You wake up with your legs pumping as you hop along in your sleep." -msgstr "" +msgstr "你在梦中蹦蹦跳跳,醒来时双腿还不停地抽搐。" #: lang/json/dream_from_json.py msgid "" "You dream of crawling along the world when you realize you can see three " "hundred and sixty degrees around yourself." -msgstr "" +msgstr "你梦见自己环绕世界爬行,突然意识到自己能看到360度的周遭。" #: lang/json/dream_from_json.py msgid "You dream of curling up inside a shell to sleep." -msgstr "" +msgstr "你梦见自己蜷缩在壳里睡觉。" #: lang/json/dream_from_json.py msgid "You vividly dream of running with your pack, hunting a wild animal." @@ -108511,11 +109103,11 @@ msgstr "你梦见自己翱翔蓝天,俯瞰美景,而你发现自己还有着 #: lang/json/dream_from_json.py msgid "Will your burrow be warm enough for the family in winter?" -msgstr "" +msgstr "你家的地洞在冬天够暖和吗?" #: lang/json/dream_from_json.py msgid "You dream of outrunning the apocalypse." -msgstr "" +msgstr "你梦见自己跑步速度超越了世界末日。" #: lang/json/dream_from_json.py msgid "You have a comforting dream of swimming with a school of fish." @@ -108721,23 +109313,23 @@ msgstr "你希望别人能理解你对森林的爱,并和你一起奋斗…… msgid "" "There is so much that you never imagined, the slime, the legs, and eyestalks" " but the shell was worth it." -msgstr "" +msgstr "有那么多你从未想象过的东西,粘液,腹足和眼柄,但至少贝壳是值得的。" #: lang/json/dream_from_json.py msgid "You'll always be home, once you take this last step." -msgstr "" +msgstr "一旦你迈出最后一步,你将永远在家。" #: lang/json/dream_from_json.py msgid "" "You'd never considered that frogs were generalist predators before this " "point in your life…" -msgstr "" +msgstr "在你生命中的这一刻之前,你从未想过青蛙是多面手的捕食者……" #: lang/json/dream_from_json.py msgid "" "On land and in the water, you control all that you can reach, and your " "tongue has quite the reach." -msgstr "" +msgstr "不论在陆地还是水中,你能控制你能触及的一切,而你的舌头也能挺能触及的。" #: lang/json/dream_from_json.py msgid "Your body flows slightly faster than you expected… oh, just a dream." @@ -110297,7 +110889,7 @@ msgstr "你有个已经感染的伤口。" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." +msgid "Your wound feels infected." msgstr "你感觉自己的伤口被感染了。" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus @@ -114026,15 +114618,15 @@ msgstr "碎石残留" #: lang/json/field_type_from_json.py msgid "glimmer" -msgstr "" +msgstr "微光" #: lang/json/field_type_from_json.py msgid "glow" -msgstr "" +msgstr "暗光" #: lang/json/field_type_from_json.py msgid "shine" -msgstr "" +msgstr "闪光" #: lang/json/field_type_from_json.py msgid "thin smoke" @@ -114993,8 +115585,7 @@ msgid "" msgstr "一套光伏发电装置,将太阳辐射能转化为可利用的电力。在大灾变之前就已经很有用,而现在它们更是成为稀罕的工具,对任何幸存者来说都是无价之宝。" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "喀啦!" @@ -115010,9 +115601,8 @@ msgid "" "little to stop a moving car." msgstr "一大块木制路障,用来阻挡车辆通过某条道路。它内衬了一条反光带,以增加能见度。和它的名字不太匹配的是,它几乎无法阻止一辆行驶中的汽车。" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "咔嚓!" @@ -115178,7 +115768,7 @@ msgstr "一个的真人大小的木雕人像,最常用来在商店里展示衣 #: lang/json/furniture_from_json.py msgid "birdbath" -msgstr "鸟澡盆" +msgstr "鸟池" #. ~ Description for birdbath #: lang/json/furniture_from_json.py @@ -115689,7 +116279,7 @@ msgstr "一大堆树叶,如果你不在乎舒适和温暖,你可以睡在上 #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "嘎嚓!" @@ -117986,7 +118576,8 @@ msgid "" " the skills." msgstr "这是一个独立的计算机终端。它可以用来查看内容并执行任何允许的功能。如果你有相关技能,也可以侵入它。" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "锻铁炉" @@ -118108,6 +118699,21 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "一台安装在滑轨上的强力钻机,当使用UPS供电时,可以用它精确钻孔。可用于从工业制造到家庭木工的各种工作。" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "萤火虫玻璃盆栽" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" +"虽然许多幸存者会集中精力尝试重现电灯,但这里的居民显然已经决定利用大灾变带来的变化来提供照明。这个活植物园里有土壤,以及你不能马上认出的奇怪植物,最引人注目的是,一只巨大的变异萤火虫。" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -119131,17 +119737,17 @@ msgstr "你拉了把绳子……" #. ~ 'close' action message of some gate object. #: lang/json/gates_from_json.py msgid "The palisade gate swings closed with a crash!" -msgstr "栅栏门\"碰\"的一声被关上了!" +msgstr "篱笆大门\"碰\"的一声被关上了!" #. ~ 'fail' action message of some gate object. #: lang/json/gates_from_json.py msgid "The palisade gate can't be closed!" -msgstr "栅栏门无法被关上!" +msgstr "篱笆大门无法被关上!" #. ~ 'open' action message of some gate object. #: lang/json/gates_from_json.py msgid "The palisade gate swings open!" -msgstr "栅栏门打开了!" +msgstr "篱笆大门打开了!" #. ~ 'close' action message of some gate object. #: lang/json/gates_from_json.py @@ -120607,17 +121213,17 @@ msgid "" msgstr "20世纪最著名的手枪之一。虽然你不是詹姆斯邦德,但你仍会发现这把枪还是有用的。" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" -msgstr[0] "凯尔科技 P32 冲锋枪" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" +msgstr[0] "凯尔科技 P-32 手枪" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" -"作为凯尔科技数控工业公司最古老的设计之一,P32常常在秘密渗透和火力支援时使用。虽然它的重量非常轻,体积也很小,但是它的 .32ACP " +"作为凯尔科技数控工业公司最古老的设计之一,P-32手枪常常在秘密渗透和火力支援时使用。虽然它的重量非常轻,体积也很小,但是它的 .32ACP " "口径使它的后坐力很小,易于控制。" #: lang/json/gun_from_json.py @@ -120750,18 +121356,18 @@ msgstr "" "ACP弹药,虽然整体尺寸较小,子弹初速仍可达到亚音速。这款廉价的自动武器和其他冲锋枪相比在任何方面上都要更小,由于其重量轻,而且射速高达每分钟1200到1400发,因此被称为\"仅适用于电话亭中的战斗\"。" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" -msgstr[0] "凯尔科技 P3AT 手枪" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" +msgstr[0] "凯尔科技 P-3AT 手枪" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" -"基本上是一个稍微放大版的凯尔科技 P32 手枪,使用 .380 ACP 弹。P3AT手枪体积极小,可轻易隐藏在口袋中,曾经非常流行,弹道更稳定。" +"基本上是一个稍微放大版的凯尔科技 P-32 手枪,使用 .380 ACP 弹。P-3AT 手枪体积极小,可轻易隐藏在口袋中,曾经非常流行,弹道更稳定。" #: lang/json/gun_from_json.py msgid "FN 1910 .380" @@ -121715,13 +122321,13 @@ msgid "" msgstr "著名的AK-47步枪的继承者。它结合了AK系列的高可靠性,以及5.45x39mm弹药的高初速和轻便性。" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" msgstr[0] "FN-57 手枪" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." msgstr "" @@ -123929,6 +124535,21 @@ msgid "acid dart gun" msgid_plural "acid dart guns" msgstr[0] "酸性飞镖枪" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "鲁比克的 PA Md. 68 战斗步枪" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" +"在所有使用 12.3ln 弹的枪械中,最受欢迎的的枪当然是PA Md. 71 步枪。作为它的前身,PA Md. 68 战斗步枪被许多人认为是某种程度上的失败品:虽然它非常可靠而且威力强大,但它太重了,不是一把好的步兵武器,但又不足以成为一把好的支援武器。尽管如此,它仍然被大量制造,在随后到来的丧尸末日之中,作为一种弹药很容易获得的轻型炮塔枪,受到了人们的再次青睐。而且它完全符合流亡族的需求,它们对这把枪械不灵活的使用条件不太在意。\n" +"\n" +"这把特殊的步枪被漆成暗粉色,枪管上画着一条盘在枪管上微笑的鳗鱼。" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -125505,7 +126126,7 @@ msgstr "M27 IAR" #: lang/json/gunmod_from_json.py msgid "grenade cradle for staff sling" msgid_plural "grenade cradles for staff slings" -msgstr[0] "手雷托架" +msgstr[0] "投石杖手雷投射器" #: lang/json/gunmod_from_json.py msgid "" @@ -126357,10 +126978,11 @@ msgstr[0] "双脚架" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." msgstr "" -"双脚架是步枪与机枪上广泛使用的可提供枪械前端稳定性与减少摆动的泛用组件之一。尽管可以极大地提高后座的可控度,它只能放置在坚实的平台上使用,并需要较长时间来架设。" +"双脚架是步枪与机枪上广泛使用的可提供枪械前端稳定性与减少摆动的泛用组件之一。尽管可以极大地提高后座的可控度,它只能俯卧或放置在坚实的平台上使用,并需要较长时间来架设。" #: lang/json/gunmod_from_json.py msgid "modified bipod" @@ -126370,12 +126992,12 @@ msgstr[0] "改装双脚架" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" -"双脚架是步枪与机枪上广泛使用的可提供枪械前端稳定性与减少摆动的泛用组件之一。尽管可以极大地提高后座的可控度,它只能放置在坚实的平台上使用,并需要较长时间来架设。这个双脚架经过了改装,能够装在几乎所有武器上。" +"双脚架是步枪与机枪上广泛使用的可提供枪械前端稳定性与减少摆动的泛用组件之一。尽管可以极大地提高后座的可控度,它只能俯卧或放置在坚实的平台上使用,并需要较长时间来架设。这个双脚架经过了改装,能够装在几乎所有武器上。" #: lang/json/gunmod_from_json.py msgid "combination gun shotgun" @@ -126850,18 +127472,22 @@ msgid "" msgstr "在你的枪上安装一个使用魔力结晶发光的蓝点瞄具以取代机械瞄准具。提高命中率,增加重量。" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" -msgstr "你把鱼掏除内脏并切成片" +msgid "You gut and fillet the fish." +msgstr "你把鱼掏除内脏并切成片。" + +#: lang/json/harvest_from_json.py +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "你小心地切开它的外骨骼,好获取下方的肉。" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" -msgstr "你小心地切开它的外骨骼,并收获了下方的肉" +msgid "You crack open its hard shell to get at the flesh beneath." +msgstr "你切开它的外壳,好获取下方的肉。" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" -msgstr "你尝试从这失败的实验体中搜寻还能再次使用的生化插件" +"You search for any salvageable hardware in what's left of this failed " +"experiment." +msgstr "你尝试从这失败的实验体中搜寻还能再次使用的生化插件。" #: lang/json/harvest_from_json.py msgid "" @@ -128736,7 +129362,7 @@ msgstr "快速生火" #: lang/json/item_action_from_json.py msgid "Pry crate, window, door or nails" -msgstr "" +msgstr "撬开" #: lang/json/item_action_from_json.py msgid "Pick a lock" @@ -129370,6 +129996,11 @@ msgid "" "the punishment of combat." msgstr "这件物品 制作精良,在战斗中作为武器使用时 经久耐用。" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "你将这件衣物标记为穿戴时不显示图形。" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -130207,6 +130838,13 @@ msgstr "它具有平坦的表面,是个吃饭的好地方。" msgid "You can craft here." msgstr "你可以在这里制造物品。" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "燃烧消耗载具油箱内的柴油或 JP8 航空煤油。同时也能够消耗乙醇或灯油,但效率会较低。" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "向上滚动" @@ -130375,6 +131013,10 @@ msgstr "开关面板" msgid "Change side armor is worn on" msgstr "装甲换侧" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "切换装备图形显示" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "给护甲分配按键" @@ -131487,6 +132129,10 @@ msgstr "向上移动光标" msgid "Move cursor down" msgstr "向下移动光标" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "切换图形显示" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "关闭按键设置" @@ -131687,6 +132333,20 @@ msgstr "是" msgid "No" msgstr "否" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "与同伴" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "仅自己" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "取消" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "退出" @@ -132978,13 +133638,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "一个标准的20发弹匣,可用于Skorpion Vz. 61 \"蝎\"式微冲,使用 .32 ACP 弹。" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" -msgstr[0] "P32 7发弹匣" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" +msgstr[0] "P-32 7发弹匣" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." -msgstr "一个标准的7发钢制盒式弹匣,可用于凯尔科技 P32 手枪。" +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." +msgstr "一个标准的7发钢制盒式弹匣,可用于凯尔科技 P-32 手枪。" #: lang/json/magazine_from_json.py msgid "P226 .357 SIG 12-round magazine" @@ -133040,13 +133700,13 @@ msgid "" msgstr "这个快速装弹器可以装载 6 发 .357 马格南弹或 .38 特装弹,为兼容左轮手枪快速装弹。" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" -msgstr[0] "P3AT 6发弹匣" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" +msgstr[0] "P-3AT 6发弹匣" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." -msgstr "一个标准的6发钢制盒式弹匣,可用于凯尔科技 P3AT 手枪。" +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." +msgstr "一个标准的6发钢制盒式弹匣,可用于凯尔科技 P-3AT 手枪。" #: lang/json/magazine_from_json.py msgid "FN 1910 6-round magazine" @@ -133598,13 +134258,13 @@ msgid "" msgstr "45发弹匣,与AK-74M步枪兼容,虽然最初是为RPK-74轻机枪设计的。" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" -msgstr[0] "Five-Seven 20发弹匣" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" +msgstr[0] "FN-57 20发弹匣" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." -msgstr "一个标准容量的弹匣,可用于FN-57 手枪。" +msgid "A standard capacity magazine for use with the FN Five-seveN." +msgstr "一个标准容量的弹匣,可用于 FN-57 手枪。" #: lang/json/magazine_from_json.py msgid "P90 50-round magazine" @@ -135718,12 +136378,12 @@ msgstr "这里有一处下水道管道和泵站。" #: lang/json/map_extra_from_json.py msgid "Prison Van" -msgstr "" +msgstr "囚车" #. ~ Description for Prison Van #: lang/json/map_extra_from_json.py msgid "A violent escape." -msgstr "" +msgstr "一场暴力越狱。" #: lang/json/map_extra_from_json.py msgid "Wraitheon Droneswarm" @@ -136884,6 +137544,16 @@ msgstr " 林间小径" msgid "PLEASE No fish cleaning or dish washing." msgstr "请不要在此清理鱼类或者洗碗。" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "交易的来的很好的" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "进来的另一边的" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -137316,10 +137986,10 @@ msgstr "合气道" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" -"合气道是一种专注自卫的日本武术,以抓筋拿脉,分筋错骨为主要手段,尽量减少对对方的实际伤害。它使用防御性的投技并解除敌人的武装,但是缺乏攻击性技巧。" +"合气道是一种专注自卫的日本武术,以抓筋拿脉,分筋错骨为主要手段,尽量减少对对方的实际伤害。它使用防御投技并解除敌人的武装,但是缺乏攻击类招式。" #. ~ initiate message for martial art '{'str': 'Aikido'}' #: lang/json/martial_art_from_json.py @@ -137342,11 +138012,13 @@ msgstr "合气道步法" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" "通过舍弃攻击力来换取防御力,你能够达到更好的自卫效果。\n" "\n" -"格挡值增加敏捷值的 100% 。" +"格挡值按敏捷的100%增加,格挡效率 +2。\n" +"闪避技能 +1。" #: lang/json/martial_art_from_json.py msgid "Intermediate Aikido" @@ -137359,13 +138031,13 @@ msgstr "中级合气道" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" "中级合气道武师能够同时抵御数个敌人的攻击。\n" "\n" -"格挡值增加敏捷值的100%。\n" -"格挡次数+1,闪避次数+1。" +"格挡值按敏捷的100%增加,格挡效率 +1。\n" +"格挡次数 +1,闪避次数 +1。" #: lang/json/martial_art_from_json.py msgid "Advanced Aikido" @@ -137376,11 +138048,49 @@ msgstr "高级合气道" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" "高级合气道武师能够同时抵御大量敌人的攻击。\n" "\n" -"格挡次数+1,闪避次数+1。" +"格挡效率 +1。\n" +"格挡次数 +1,闪避次数 +1。" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "流体闪避" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" +"在一次流畅闪避后,你准备好对抗你的敌人。\n" +"\n" +"移动耗时 -10%。\n" +"持续 1 回合。" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "流体格挡" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" +"在一次流畅格挡后,你准备好对抗你的敌人。\n" +"\n" +"移动耗时 -10%。\n" +"持续 1 回合。" #: lang/json/martial_art_from_json.py msgid "Boxing" @@ -137552,7 +138262,7 @@ msgstr "" "你能感受到你移动的节奏。你不仅更加难以击中,你的脚法也变得更加炫酷!\n" "\n" "闪避技能 +1。\n" -"解锁“回旋踢”和“扫堂腿”。\n" +"解锁“回旋踢”和“扫堂腿”招式。\n" "持续 3 回合。" #: lang/json/martial_art_from_json.py @@ -137564,12 +138274,12 @@ msgstr "战舞节拍" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." msgstr "" -"你从不击空,这只是舞蹈的一部分,而最棒的部分即将开始!\n" +"不管成败,这只是舞蹈的一部分!而最棒的部分即将开始!\n" "\n" "+15% 钝击伤害。\n" "持续 2 回合。可叠加 3 次。" @@ -137583,8 +138293,9 @@ msgstr "鹤形拳" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." -msgstr "少林五形拳之一。鹤拳刚柔相济,拳意轻灵。敏捷将取代力量决定你的伤害,且每次移动或闪避后都会提升闪避。" +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." +msgstr "少林五形拳之一。鹤拳刚柔相济,拳意轻灵。敏捷将取代力量决定你的伤害,你有更高的闪避几率,闪避后可以在短时间内解锁威力强大的武技。" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -137617,22 +138328,20 @@ msgstr "" "钝击伤害增加敏捷的 75% ,同时减少力量的 75% 。" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" -msgstr "鹤之翔" +msgid "Crane's Stance" +msgstr "鹤之姿" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" -"你像鸟一样腾跃来避开危险。\n" +"就像美丽的仙鹤一样,你非常善于躲开危险。\n" "\n" -"闪避技能+1。\n" -"持续 2 回合。" +"闪避技能 +2。" #: lang/json/martial_art_from_json.py msgid "Crane's Grace" @@ -137642,15 +138351,33 @@ msgstr "鹤之雅" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." msgstr "" -"你如鹤一般快速避开危险。\n" +"鹤拳大师可以轻松躲避多个敌人。\n" "\n" -"闪避次数+1,闪避技能+1。\n" -"持续 2 回合。" +"闪避次数 +2。" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "鹤之翔" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." +msgstr "" +"就像仙鹤一样,你可以快速躲开危险并反击。\n" +"\n" +"命中 +1,闪避技能 +1。\n" +"解锁“鹤爪印沙”和“雄鹤刷翎”招式。\n" +"持续 3 回合。" #: lang/json/martial_art_from_json.py msgid "Dragon Kung Fu" @@ -137660,10 +138387,12 @@ msgstr "龙形拳" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." -msgstr "少林五形拳之一。龙拳步法多变,攻击凶悍。智力将替代敏捷提升你的命中。你攻击后能够进一步反击来击倒敌人,然后终结它们。" +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." +msgstr "" +"少林五形拳之一。龙拳步法多变,攻击凶悍。智力将替代敏捷及力量提升你的命中和伤害。闪避和格挡也会增加你的伤害。原地等待会增加你的防御能力。你可以对被击倒的对手进行强力打击。" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -137677,43 +138406,70 @@ msgid "%s assumes a dragon-like stance." msgstr "%s 摆出了一个龙一样的姿势。" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" -msgstr "龙之腾" +msgid "Dragon's Knowledge" +msgstr "龙之识" + +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. Kung Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" +"\n" +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." +msgstr "" +"你通过直觉而非速度提前计划好攻击以正中目标。\n" +"智力将取代敏捷决定你的命中率。\n" +"智力将取代力量决定你的伤害。\n" +"\n" +"命中按智力的 25% 增加,同时按敏捷的 25% 减少。\n" +"钝击伤害按智力的 75% 增加,同时按力量的 75% 减少。" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Wing" +msgstr "龙飞天" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"+10% bash damage.\n" +"Lasts 3 turns." msgstr "" "生活和战斗是一个循环。你可以循环进行攻击和反击。完成这个循环吧。\n" "\n" -"命中+2,钝击伤害+2。\n" -"解锁“龙旋格挡”和“龙翼闪避”。\n" -"持续 1 回合。" +"+10% 钝击伤害。\n" +"持续 3 回合。" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" -msgstr "龙之识" +msgid "Dragon Power" +msgstr "龙盘肘" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon -#. Kung Fu'}' +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." msgstr "" -"你通过直觉而非速度提前计划好攻击以正中目标。\n" -"智力将取代敏捷决定你的命中率。\n" +"你静心反思过去和未来的战斗。从中领悟如何防止未来的伤害。\n" "\n" -"命中按智力的 25% 增加,同时按敏捷的 25% 减少。" +"格挡效率 +2,格挡值按智力的 100% 增加。\n" +"闪避技能+1 。\n" +"持续 2 回合。" + +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" +msgstr "龙回头" #: lang/json/martial_art_from_json.py msgid "Eskrima" @@ -137816,6 +138572,25 @@ msgstr "" "\n" "格挡值增加敏捷值的 50% 。" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "反击时刻" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" +"你佯攻之后,准备发动复杂进攻。\n" +"\n" +"格挡效率 +2。\n" +"解锁“复杂进攻”招式。\n" +"持续 2 回合。" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "招架" @@ -137882,11 +138657,11 @@ msgstr "不动如山" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" "猛男在危险面前从不动摇。\n" "\n" -"格挡次数+2,闪避技能-1,格挡值增加力量的 50% 。" +"格挡效率 +2,格挡次数 +1,闪避技能 -1,格挡值按力量的50%增加。" #: lang/json/martial_art_from_json.py msgid "Tactical Retreat" @@ -137899,13 +138674,15 @@ msgstr "战术撤退" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" "你的移动取消了不动如山的加成!\n" "\n" -"格挡次数-2,闪避技能+1,格挡值减少力量的 50% 。\n" -"持续 1 回合。" +"格挡效率 -2,格挡次数 -1,闪避技能 +1,格挡值按力量的50%减少。\n" +"禁用“高旋斩”及“移位勾”招式。\n" +"持续 2 回合。" #: lang/json/martial_art_from_json.py msgid "Defense Break" @@ -137918,11 +138695,13 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" "每一次成功的格挡都会暴露出你对手防守的漏洞。\n" "\n" "命中 +1。\n" +"解锁“移位勾”招式。\n" "持续 1 回合。可叠加 3 次。" #: lang/json/martial_art_from_json.py @@ -137980,6 +138759,22 @@ msgstr "" "你的格斗知识的了解可以让你从被击倒的状态中立即恢复过来。\n" "此外,你还可以用柔道投掷术来打断那些想要抓住或者想要击倒你的攻击。" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "绝佳位置" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" +"你已经进入了反击的绝佳位置!\n" +"\n" +"钝击伤害 +30%。" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "空手道" @@ -138019,7 +138814,7 @@ msgid "" msgstr "" "攻击命中可以让你在面对多个敌人时找到最佳的防御位置,最大限度的防御对手的攻击。\n" "\n" -"格挡次数+2,闪避次数+1,所受格挡伤害按力量的 50% 减少。\n" +"格挡次数+2,闪避次数+1,格挡值按力量的50%增加。\n" "持续2回合。" #: lang/json/martial_art_from_json.py @@ -138077,6 +138872,25 @@ msgstr "" "\n" "命中+1,格挡次数+1。" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "要害打击" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" +"就像仇敌一样,你的对手已经暴露了自己。\n" +"\n" +"暴击率 +5%。\n" +"持续 1 回合。" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "豹形拳" @@ -138153,7 +138967,7 @@ msgstr "" "你傲然潜行于阴影之中,伺机猛扑过去倾泻怒火。\n" "\n" "命中+2。\n" -"解锁“豹之袭”。\n" +"解锁“豹之袭”招式。\n" "持续 1 回合。" #: lang/json/martial_art_from_json.py @@ -138245,7 +139059,26 @@ msgstr "" "手握剑刃部分,以获得更好的控制。\n" "\n" "格挡后的伤害额外按力量的 50% 减少,-1 命中,\n" -" 解锁\"擒拿\"和\"致命一击\"。" +" 解锁\"擒拿\"和\"致命一击\"招式。" + +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "大师斩" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" +"你成功招架,并更有力的回击对手!\n" +"\n" +"伤害 +10%,耗时 -10%。\n" +"持续 1 回合。" #: lang/json/martial_art_from_json.py msgid "Muay Thai" @@ -138508,7 +139341,7 @@ msgstr "" "于此暗夜\n" "有如月洒清辉\n" "\n" -"解锁\"闪现突攻\"。\n" +"解锁\"闪现突攻\"招式。\n" "持续 1 回合。" #: lang/json/martial_art_from_json.py @@ -138609,7 +139442,8 @@ msgid "" msgstr "" "敌人的防御出现了漏洞。\n" "\n" -"+10% 钝击伤害。解锁\"近身作战\"。\n" +"+10% 钝击伤害。\n" +"解锁\"近身作战\"招式。\n" "持续 1 回合。" #: lang/json/martial_art_from_json.py @@ -138651,21 +139485,22 @@ msgstr "" "闪避次数+1。" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" -msgstr "苏拉躲闪" +msgid "Silat Ambush" +msgstr "苏拉伏击" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" -"你在移动时放低身体,使你更难被敌人击倒。\n" +"你在移动时放低身体,使敌人更难防御你的攻击。\n" "\n" -"闪避次数+1。\n" -"持续 2 回合。" +"暴击率 +5%。\n" +"持续 1 回合。" #: lang/json/martial_art_from_json.py msgid "Silat Appraisal" @@ -138780,11 +139615,11 @@ msgstr "日本枪术步法" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" "你接受的武术训练令你在使用长柄武器时能够更好的防御。\n" "\n" -"格挡次数 +1。" +"格挡次数 +1,格挡效率 +2。" #: lang/json/martial_art_from_json.py msgid "Superior Positioning" @@ -138904,6 +139739,26 @@ msgstr "" "\n" "格挡次数 +1,格挡值增加感知值的 100% 。" +#: lang/json/martial_art_from_json.py +msgid "Cross Hands" +msgstr "十字手" + +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"\n" +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." +msgstr "" +"通过花点时间为自己下一步招式做准备,你可以充分利用全身来攻击和防守。\n" +"\n" +"格挡效率 +2,格挡值按感知的50%增加。\n" +"解锁“拗步掌”和“双按掌”招式。\n" +"持续 3 回合。" + #: lang/json/martial_art_from_json.py msgid "Repulse the Monkey" msgstr "倒撵猴" @@ -138923,25 +139778,6 @@ msgstr "" "命中率按感知的 20% 增加,钝击护甲穿透按感知的 50% 增加。\n" "持续 2 回合。" -#: lang/json/martial_art_from_json.py -msgid "Cross Hands" -msgstr "十字手" - -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' -#: lang/json/martial_art_from_json.py -#, no-python-format -msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" -"\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." -msgstr "" -"通过花点时间为自己下一步招式做准备,你可以充分利用全身来攻击和防守。\n" -"\n" -"闪避技能 +1,格挡值增加感知的50%。\n" -"解锁“拗步掌”和“双按掌”招式。持续 3 回合。" - #: lang/json/martial_art_from_json.py msgid "Tiger Kung Fu" msgstr "虎形拳" @@ -139077,11 +139913,11 @@ msgstr "咏春黐手" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" "你对平衡和技巧有更深的理解。这让你能更好地躲开你的对手的攻击。\n" "\n" -"闪避技能按感知的 15% 增加。格挡值增加感知的 50% 。" +"闪避技能按感知的 25% 增加。格挡值按感知的50%增加。" #: lang/json/martial_art_from_json.py msgid "Biu Ji" @@ -139098,7 +139934,8 @@ msgid "" msgstr "" "通过完美地应用插指的招式,你可以打击对手的弱点,迫使他们后退,然后跟进一击!\n" "\n" -"命中按感知的20%增加,解锁“直拳(击退)”和“左勾拳(击退)”招式。\n" +"命中按感知的20%增加。\n" +"解锁“直拳(击退)”和“左勾拳(击退)”招式。\n" "持续2回合。" #: lang/json/martial_art_from_json.py @@ -139303,6 +140140,26 @@ msgstr "" "\n" "格挡次数+2,命中+1。" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "二进制强化" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"钝击、斩击、刺击防护 +3。\n" +"持续 3 回合。可叠加 3 次。" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "算法优化" @@ -139373,15 +140230,16 @@ msgstr "蜈蚣毒" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" "你的毒液是你的对手永远无法忘却的长久苦痛。\n" "\n" -"+2 钝击伤害。\n" +"+15% 伤害。\n" "持续 2 回合。" #: lang/json/martial_art_from_json.py @@ -139443,7 +140301,7 @@ msgstr "" "通过简单地攀爬、跳跃或推开附近的墙壁,你可以避开对手最严重的攻击。\n" "\n" "紧邻墙壁时闪避技能 +3。\n" -"紧邻墙壁时解锁“壁虎扫尾”及“壁虎墙反”。" +"紧邻墙壁时解锁“壁虎扫尾”及“壁虎墙反”招式。" #: lang/json/martial_art_from_json.py msgid "Lizard's Leap" @@ -139495,14 +140353,15 @@ msgstr "蝎之毒" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" "你的毒液是你的对手永远无法逃避的持续威胁。\n" "\n" -"+2 钝击伤害。" +"+15% 伤害。" #: lang/json/martial_art_from_json.py msgid "Scorpion's Charge" @@ -139522,7 +140381,7 @@ msgstr "" "向前冲,抓住你的猎物!\n" "\n" "+10% 伤害。\n" -"解锁“巨螯击”。\n" +"解锁“巨螯击”招式。\n" "可叠加 2 次。持续 2 回合。" #: lang/json/martial_art_from_json.py @@ -139693,7 +140552,7 @@ msgid "" msgstr "" "你的闪避能力使你的对手很容易受到痛苦的伤害。\n" "\n" -"解锁“毒蛇疯咬”。\n" +"解锁“毒蛇疯咬”招式。\n" "持续 1 回合。" #: lang/json/martial_art_from_json.py @@ -140164,7 +141023,8 @@ msgid "" msgstr "" "花点时间准备,你可以释放出一记威力强大的回旋斩!\n" "\n" -"+20% 伤害,解锁“回旋斩”招式。\n" +"+20% 伤害。\n" +"解锁“回旋斩”招式。\n" "持续 1 回合。" #: lang/json/martial_art_from_json.py @@ -140227,12 +141087,31 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." msgstr "" "暗影追踪,又称\"Schatten Folgen\"\n" "作为一名机甲武师(künstler),你的训练让你能够一直处于目标的盲区之中。\n" "\n" -"闪避次数+1,闪避技能按感知的 12%% 增加。" +"闪避次数+1,闪避技能按感知的 15%% 增加。" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "个体智慧" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." +msgstr "" +"个体智慧,又称\"Seinerweisen\"\n" +"通过对机甲格斗术的掌握,你获得了在所有攻击中使用致命等离子体的能力!\n" +"\n" +"获得等同于感知的50%的额外电伤害。" #: lang/json/martial_art_from_json.py msgid "Einzug Rüstungen" @@ -140241,16 +141120,17 @@ msgstr "护甲穿透" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" "护甲穿透,又称\"Einzug Rüstungen\"\n" "通过将自身调整至你对手的节奏,你可以打击他们防守最薄弱的地方。\n" -"钝击护甲穿透+5。\n" -"持续 2 回合。" +"命中 +1,获得等同于感知的50%的额外护甲穿透。\n" +"持续 3 回合。" #: lang/json/martial_art_from_json.py msgid "Pokken" @@ -140357,6 +141237,24 @@ msgstr "你调整重心,准备好防御自己。" msgid "%s shifts their weight and assumes a new stance." msgstr "%s 调整重心,摆出了一个新姿势。" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "伪装破绽" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" +"你向你的目标露出好像是致命的破绽,但却轻易地避开,并在同时让对手为轻率的进击付出代价。\n" +"\n" +"+20 速度。\n" +"持续 1 回合。" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "千幻防御" @@ -140369,30 +141267,32 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" "你单脚半蹲,手放在顶门。你的对手犹豫着,没法确定该如何攻击这种诡异的架势。\n" "\n" -"闪避技能按智力的20%提升,解锁“暮日投”和“穿云投”。\n" -"持续 1 回合。" +"闪避技能按智力的20%提升。\n" +"解锁“暮日投”和“穿云投”招式。\n" +"持续 2 回合。" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" -msgstr "伪装破绽" +msgid "Fool's Strike" +msgstr "真·斗转星移" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" -"你向你的目标露出好像是致命的破绽,但却轻易地避开,并在同时让对手为轻率的进击付出代价。\n" +"你的对手向你发起攻击,而你把攻击原原本本地奉还给他。\n" "\n" -"+20 速度。\n" -"持续 1 回合。" +"钝击伤害 +20%。\n" +"持续 2 回合。" #: lang/json/martial_art_from_json.py msgid "Shii-Cho" @@ -140482,6 +141382,24 @@ msgstr "" "\n" "格挡次数+1,格挡效果+1。" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "流水击" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" +"你可以在同一个动作中格挡攻击并反击。\n" +"\n" +"耗时 -25%。\n" +"持续 1 回合。" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "石龙" @@ -140556,7 +141474,7 @@ msgid "" msgstr "" "移动太多会破坏坚如磐石的效果。站稳了别动,不要破坏了你的姿势!\n" "\n" -"解锁“碎石”。\n" +"解锁“碎石”招式。\n" "持续 1 回合。" #: lang/json/martial_art_from_json.py @@ -142172,7 +143090,7 @@ msgstr "我想我们还没干掉它。" msgid "Kill your pursuer" msgstr "杀死追着你的怪物" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -142370,7 +143288,7 @@ msgstr "抵达别墅完成配送" msgid "Refuel your helicopter." msgstr "再次加油" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -142577,7 +143495,7 @@ msgstr "孩子,你真让我失望……" msgid "Prove You're A Survivor" msgstr "生存者证明" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -142632,8 +143550,7 @@ msgstr "你都死了,怎么还能找我说话!" msgid "Gather cattail stalks to create cattail jelly" msgstr "收集 80 根香蒲杆以制造凝胶" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -142803,7 +143720,7 @@ msgstr "那么你可以再试一次,直到你听到它为止。" msgid "Protect fisherman's daughter" msgstr "保护渔夫的女儿" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "她看起来像个好女孩。也许你不该让她死?" @@ -142817,7 +143734,7 @@ msgstr "-" msgid "Lighthouse" msgstr "灯塔" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "带米哈伊尔去灯塔。" @@ -142857,7 +143774,7 @@ msgstr "看起来不错,。现在我得清理掉这里的 … msgid "House cleaning" msgstr "大扫除" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "和米哈伊尔一起清理灯塔里的 。" @@ -142892,7 +143809,7 @@ msgstr "真棒,真 棒。只要继续清理剩下的楼层……" msgid "Fisherman's family" msgstr "渔夫一家" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "米哈伊尔让你把他的家人带回来。" @@ -142925,7 +143842,7 @@ msgstr "我都不知道该怎么感谢你,。我永远会记得我所 msgid "Fisherman's boat" msgstr "渔夫的船" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "帮米哈伊尔造条船。找来250颗钉子。" @@ -142972,7 +143889,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "修复灯塔" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -143015,16 +143932,50 @@ msgstr "好极了,!我们现在只需要耐心等待……" msgid "Protect fisherman's wife" msgstr "保护渔夫的妻子" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "她看起来像是个好女人。也许你不该让她死?" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "将6升麻醉剂带给鲁比克" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "你的若想让我们的给你的加闪闪金属的,我们的需要两大罐子他们的\"马坠机\"的,一罐是给你的会思考的肉的,一罐给我们的当储备的。" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "愿王的赐你的幸运!" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "这个的抉择的,你的可以丢下。想清楚的,可以回到这里来的。" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "可以检查的外科的地方的,我的会去的。" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "我们的病人一样的还在等那些坠机的。" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "好的好的。你的准备好了的我们可以注射的。" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "好的好的。你的准备好了的可以再试一次的。" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "挑剔的一餐" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "收集 100 单位盐" @@ -143072,7 +144023,7 @@ msgstr "别担心,这事其实也没那么重要。" msgid "Pickled Meals" msgstr "腌制的一餐" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "收集 5 个玻璃罐" @@ -143123,7 +144074,7 @@ msgstr "没什么大不了的,这件事没那么急。" msgid "Prickled Meals" msgstr "刺痛的一餐" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "找到一把屠宰刀。" @@ -143165,7 +144116,7 @@ msgstr "非常感谢你的帮助。" msgid "Busy While Work" msgstr "忙里偷闲" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "收集 3 本悬疑小说" @@ -143214,7 +144165,7 @@ msgstr "没事的。我还能读些其他的书。" msgid "Timber!" msgstr "木头!" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "收集 5 根原木" @@ -143241,7 +144192,7 @@ msgstr "进展怎么样?东西找够了吗?" msgid "Sweets" msgstr "甜甜的" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "收集 25 颗黑莓" @@ -143276,7 +144227,7 @@ msgstr "谢谢你的帮助。这是你的谢礼。" msgid "Visit the Isherwoods" msgstr "寻找伊舍伍德家族" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -144152,7 +145103,7 @@ msgstr "我会尽力向上尉汇报任何所需要调查的信号的最新情况 msgid "Angry pizzaiolo" msgstr "愤怒的披萨师" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -144188,7 +145139,7 @@ msgstr "甜蜜,甜蜜的复仇!闻起来真香!他的餐馆烧了,他的 msgid "Find TrueFoodperson" msgstr "寻找真正的美食家" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "帮披萨师找到真正的美食家,然后狠狠揍他一顿。" @@ -144227,7 +145178,7 @@ msgstr "又干掉了一个!我们做了件大好事,。" msgid "Pizza parlor" msgstr "披萨店" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "帮披萨师夺回他的餐馆。" @@ -144267,7 +145218,7 @@ msgstr "" msgid "Family house" msgstr "祖宅" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -144296,7 +145247,7 @@ msgstr "如果你仔细听我说,你就不难做到了。祝你好运, " @@ -145324,7 +146274,7 @@ msgstr "哇,这么多玻璃罐,比在纸上看起来要多得多。谢谢, msgid "Smokes, let's go." msgstr "香烟大作战" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -145368,7 +146318,7 @@ msgstr "谢谢!我一定会在难民中心替你说好话的。" msgid "Clear Back Bay" msgstr "清理后院" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -145419,7 +146369,7 @@ msgstr "" msgid "Missing Caravan" msgstr "失踪商队" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -145463,7 +146413,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "取回建设企划书" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -145506,7 +146456,7 @@ msgstr "" msgid "Solar Power" msgstr "太阳能发电" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -145542,7 +146492,7 @@ msgstr "太好了,我知道这点不算多,但是有了你的帮助我们有 msgid "In a Pickle" msgstr "老坛酸菜" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -145589,7 +146539,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "未知收件人" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -145600,6 +146550,65 @@ msgstr "把硬盘交给残存部队。完成后返回难民中心。" msgid "Have you finished the delivery already?" msgstr "你东西送到了吗?" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "探访那个农场" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "之前我们遇到了一群农民。他们不想和我们的商队有太多的关系,但像你这样的人他们可能不会介意。" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "很好。" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "很合理的选择。" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "小心点。外面很艰苦。" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "哈,去想想吧。" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "事实就是这样。" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "最近有些传言。人们在谈论某个秘密实验室,在野外,里面有幸存者。" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "探访那个废金属城堡" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" +"我的几个商队现在回来了,谈论着在某个鸟不拉屎的地方,在一块岩石上,建了一座巨大的金属城堡。他们还没疯到想去看看,但是如果你想的话,你可以去。" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "自寻死路。" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "小心点。对我来说似乎是个不好的地方。" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -145752,7 +146761,7 @@ msgstr "太棒了!我应该能重建出哪种货物在哪个实验室之间被 msgid "Supply the arsonist." msgstr "为纵火员提供补给。" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "给纵火员带来42公斤商品肥料。" @@ -145807,7 +146816,7 @@ msgstr "该死。也许我不是唯一想到这个的人。" msgid "Kill Bandits" msgstr "杀死强盗" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -145847,7 +146856,7 @@ msgstr "旧世守护者十分感谢你干掉了那些罪犯,你的贡献不会 msgid "Deal with Informant" msgstr "解决敌方眼线" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -145885,11 +146894,64 @@ msgstr "你干掉那个内鬼了吗?" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "谢谢你,如果别人问起来我会解释的。" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "寻找机器人的来源" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" +"我通常听不到指挥部的消息,但我们最近从收音机里得到些消息。你也许是为我调查此事的正确选择。自从一切事情变糟后,就有关于奇怪的机器人之类的东西四处游荡的报道。虽然不知道是怎么做到的,但很明显指挥部找到了他们认为是源头的东西。他们希望有人去看看是谁做的,我们是否能从他们那里得到任何技术或帮助。这是严肃的侦察任务,你得明白:对方可能是一个敌对实体,所以不要正面接触。" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "这次给你个有些怪的任务……" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "谢谢,一旦你弄清了,马上向我汇报,我会转告上面的。" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "下次再来,如果可行,最好把这些家伙拉到我们这边,我们需要所有能得到的帮助。" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "如果你看到四周有任何奇怪的机器,不要直接接触。要我说,偷偷溜进去。他们似乎对丧尸怀有敌意,但这并不意味着他们能认出你不是丧尸。" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "做得好!那时候我还不知道你会遇到些什么。" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "羞耻,真他妈的羞耻。希望你能学到更多。不管怎么说你试过了。" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "妈的……希望我们能有机会再试一次。" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "保护贸易路线" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -145916,15 +146978,11 @@ msgid "" "be able to find something." msgstr "找找灌木丛里留下的痕迹?我不是追踪专家,但你应该能够找到什么线索。" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "做得好!那时候我还不知道你会遇到些什么。" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "暗杀强盗头目" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -145986,7 +147044,7 @@ msgstr "" msgid "Return Field Data" msgstr "取回现场数据" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -146039,7 +147097,7 @@ msgstr "真是个废物……" msgid "Steal a dead man's mind" msgstr "窃取死者意识" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -146087,7 +147145,7 @@ msgstr "谢谢,这是你的报酬。" msgid "Light retrieval" msgstr "恢复照明" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -146133,12 +147191,13 @@ msgstr "你找到那个蓝图了吗?" msgid "Iron Safari" msgstr "狩猎钢铁" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." -msgstr "关闭并送回一台异界无人车。你可以选择回收HUB 01标注出的那台无人车,或自己在别处找一台。" +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." +msgstr "关闭并送回一台外星人无人车。你可以选择回收HUB 01标注出的那台无人车,或自己在别处找一台。你需要具备电子或机械方面的知识来关闭它。" #: lang/json/mission_def_from_json.py msgid "" @@ -146185,7 +147244,7 @@ msgstr "你果然不负众望。希望你对这把原型枪的表现还满意。 msgid "Retrieve chunks of gold" msgstr "收集金块" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "找到 200 单位的金。" @@ -146233,7 +147292,7 @@ msgstr "好吧,我只能自己去找金子了,算我自讨没趣。" msgid "Active Noise Control" msgstr "激活降噪程序" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -146277,7 +147336,7 @@ msgstr "好吧,算我自讨没趣。" msgid "Return to Hub 01" msgstr "返回 HUB 01" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "返回 HUB 01。" @@ -147978,7 +149037,7 @@ msgstr "班班" msgid "Secure Area" msgstr "扫荡区域" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -147998,7 +149057,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "迷失丛林" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -148026,7 +149085,7 @@ msgstr "尽量不要制造太多的噪音。森林里的能见度很差,所以 msgid "Protect the cattle" msgstr "保护牛只" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "沼泽里有什么人或者什么东西在不停偷我们的牛。阻止他们。" @@ -148062,7 +149121,7 @@ msgstr "" msgid "Betty" msgstr "贝蒂" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "杀死50只恐龙" @@ -148110,7 +149169,7 @@ msgstr "这是我最爱听的。我们也杀够了自己的数目,我们还拴 msgid "Stromer" msgstr "施特罗默" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "干掉一只霸王龙" @@ -148889,6 +149948,30 @@ msgid "" " and stumbles." msgstr "%1$s 试图用巨木棒砸碎 的 %2$s,但是砸空并摔倒了!" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "%1$s 用燃烧的鞭子鞭打你!" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "%1$s 用燃烧的鞭子鞭打 !" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr " %1$s 用燃烧的鞭子鞭打你,但是没能穿透护甲。" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr " %1$s 用燃烧的鞭子鞭打 ,但是没能穿透护甲。" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -149507,29 +150590,29 @@ msgstr "潜入深处。" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py msgid "Gastropod" -msgstr "" +msgstr "蜗牛人" #. ~ Mutation class: Gastropod mutagen_message #: lang/json/mutation_category_from_json.py msgid "Are you dancing a descending spiral?" -msgstr "" +msgstr "你在跳螺旋下降的舞吗?" #. ~ Mutation class: Gastropod iv_message #: lang/json/mutation_category_from_json.py msgid "Your split lower body starts to come back together." -msgstr "" +msgstr "你分裂的下半身开始恢复。" #. ~ Mutation class: Gastropod Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" msgid "Left a trail." -msgstr "" +msgstr "留下痕迹。" #. ~ Mutation class: Gastropod Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" msgid "Left a trail." -msgstr "" +msgstr "留下痕迹。" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py @@ -149581,14 +150664,14 @@ msgstr "随着注射剂起效,你的心脏狂野地跳动着。" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." -msgstr "回归自然的野性。" +msgid "Embraced their bestial nature." +msgstr "回归野性。" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." -msgstr "回归自然的野性。" +msgid "Embraced their bestial nature." +msgstr "回归野性。" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py @@ -149785,29 +150868,29 @@ msgstr "蜕掉了丑陋的人类外皮。" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py msgid "Batrachian" -msgstr "" +msgstr "蛙人" #. ~ Mutation class: Batrachian mutagen_message #: lang/json/mutation_category_from_json.py msgid "An involuntary hop and a croak." -msgstr "" +msgstr "无意识的跳一跳和呱一呱。" #. ~ Mutation class: Batrachian iv_message #: lang/json/mutation_category_from_json.py msgid "Like a tadpole you must transform." -msgstr "" +msgstr "就像蝌蚪一样,你必须改变。" #. ~ Mutation class: Batrachian Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" msgid "Found a bigger pond." -msgstr "" +msgstr "发现更大的池塘。" #. ~ Mutation class: Batrachian Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" msgid "Found a bigger pond." -msgstr "" +msgstr "发现更大的池塘。" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py @@ -150317,6 +151400,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "你是五毒教的徒众。你在游戏开始时可以使用蜈蚣功,毒蛇功,蝎子功,壁虎功或蛤蟆功之一。请参考邵氏经典电影《五毒》。" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "标准神经生化接口" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "你的中枢神经系统中被植入了一个矩阵,作为紧凑型生化插件的通用控制和安装总线。" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "流亡族改造人框架(1a型)" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "你的大脑和一些重要器官被保护在一台结实的双足机器人中。" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "头发:黑,平头" @@ -151117,7 +152222,7 @@ msgstr "你额头上的发光器官正在发出强光。" msgid "" "You can spit a wad of bioluminescent goo several meters away. There it will" " light up it's surroundings until it dissipates." -msgstr "" +msgstr "你可以在几米外吐出一团生物发光的粘液。在那里,它会照亮周围的环境,直到消失。" #: lang/json/mutation_from_json.py msgid "Normal Human" @@ -151224,19 +152329,25 @@ msgstr "你的神经反射能力更加迅速,不论是思考还是动作。你 #: lang/json/mutation_from_json.py msgid "Tunnel Fighter" -msgstr "" +msgstr "隧道斗士" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " "bonuses when fighting underground." -msgstr "" +msgstr "你知道如何在狭窄的隧道里冒着坍塌的危险战斗。你在地下战斗时获得加成。" #: lang/json/mutation_from_json.py msgid "Night Raider" -msgstr "" +msgstr "夜袭者" + +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "你的身体与黑夜合一。当月亮升上天空时,即使你看不见它,你也会发出更少的噪音。" #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py @@ -151292,21 +152403,21 @@ msgstr "你的身体所需要的极高能量消耗让你能够在任何地方迅 #: lang/json/mutation_from_json.py msgid "Earth Sleeper" -msgstr "" +msgstr "地眠者" #. ~ Description for {'str': 'Earth Sleeper'} #: lang/json/mutation_from_json.py msgid "You always sleep better surrounded by earth." -msgstr "" +msgstr "在大地的包围下,你总是睡得更好。" #: lang/json/mutation_from_json.py msgid "Aquatic Sleeper" -msgstr "" +msgstr "水眠者" #. ~ Description for {'str': 'Aquatic Sleeper'} #: lang/json/mutation_from_json.py msgid "You always sleep better underwater." -msgstr "" +msgstr "在水的包围下,你总是睡得更好。" #: lang/json/mutation_from_json.py msgid "Pain Resistant" @@ -151362,19 +152473,19 @@ msgstr "你的脚掌厚度与脚底反射区较为坚韧,即便脚掌没有保 #: lang/json/mutation_from_json.py msgid "Bovine Bulk" -msgstr "" +msgstr "粗壮如牛" #. ~ Description for {'str': 'Bovine Bulk'} #: lang/json/mutation_from_json.py #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" -msgstr "" +" hit points. Swimming will be more difficult from now on." +msgstr "你体重增加了很多,大部分是肌肉!你所有部位的生命值获得10%的加成。但从现在起游泳将变得更加困难。" #: lang/json/mutation_from_json.py msgid "Bull Roids" -msgstr "" +msgstr "牛固醇" #. ~ Description for {'str': 'Bull Roids'} #: lang/json/mutation_from_json.py @@ -151383,7 +152494,7 @@ msgid "" "There is no way you'd be allowed to compete in pre-Cataclysm sports. You " "get a 20% bonus to all hit points. Swimming is no longer recommended for " "someone built like you." -msgstr "" +msgstr "你现在不可能被允许参加在大灾变前的体育比赛。你所有部位的生命值获得20%的加成。像你这样身材的人不再推荐游泳。" #: lang/json/mutation_from_json.py msgid "Tough" @@ -151491,7 +152602,7 @@ msgstr "你的胃与肠道对于酒精与食物中毒等处理能力更强,即 #: lang/json/mutation_from_json.py msgid "Stomach Cleanse" -msgstr "" +msgstr "洗胃" #. ~ Description for {'str': 'Stomach Cleanse'} #: lang/json/mutation_from_json.py @@ -151500,7 +152611,7 @@ msgid "" "quickly eliminate toxins, and are more likely to throw up from food " "poisoning, alcohol, etc. If you throw up because of this this, you won't " "suffer any residual nausea." -msgstr "" +msgstr "你获得了将胃容物呕吐到体外的能力,以快速排除毒素,并且更有可能因食物中毒、酒精等而呕吐。如果你因此呕吐,你不会产生残留的恶心效果。" #: lang/json/mutation_from_json.py msgid "Good Memory" @@ -151614,9 +152725,9 @@ msgstr "恐惧气息" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." -msgstr "" +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." +msgstr "你身上有些让动物们感到恐惧的东西,它们更有可能试图从你身边逃开。" #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -151642,7 +152753,7 @@ msgstr "你肾上腺髓质分泌的激素在紧急时刻作用更大,当你处 #: lang/json/mutation_from_json.py msgid "Combat Adaptation" -msgstr "" +msgstr "战斗适应" #. ~ Description for {'str': 'Combat Adaptation'} #: lang/json/mutation_from_json.py @@ -151652,6 +152763,7 @@ msgid "" "process things around you slightly faster. Giving you better reaction times" " that you can pay for later if you survive." msgstr "" +"当你处于极大的危险中时,你可能会在大脑中触发一个化学开关,以饥饿、疲劳和口渴为代价,你的神经系统会稍微加快处理你周围的事情。提升你的反应时间,如果你能活下来,你可以之后再付代价。" #: lang/json/mutation_from_json.py msgid "Less Sleep" @@ -151924,14 +153036,14 @@ msgstr "你的膝盖状态由于旧伤一直欠佳。在比较崎岖的地形上 #: lang/json/mutation_from_json.py msgid "Strong Knees" -msgstr "" +msgstr "强壮膝盖" #. ~ Description for {'str': 'Strong Knees'} #: lang/json/mutation_from_json.py msgid "" "Your knees are strong and capable of angles that you couldn't imagine " "previously. Moving over rough terrain will slow you down less than normal." -msgstr "" +msgstr "你的膝盖很强壮,能够弯曲到你以前无法想象的角度。在崎岖不平的地形上移动时不像普通人那样困难。" #: lang/json/mutation_from_json.py msgid "Languorous" @@ -152662,6 +153774,7 @@ msgid "" "toggle NV-visible areas on or off. Surprisingly, frogs' vision works " "exactly the same." msgstr "" +"你的视觉系统发生了变异,尽管黑暗里你看得更清楚,亮光底下你却看不了多远了。可能带副眼镜会有帮助。激活来切换显示夜视可见范围。令人惊讶的是,青蛙的视野和它完全一样。" #: lang/json/mutation_from_json.py msgid "Avian Eyes" @@ -153415,22 +154528,22 @@ msgstr "你的躯干上长出了几个墨腺。它们能够喷洒出防御性墨 msgid "" "You exude slime from your pores. You can spread that slime on an opponent " "in melee range." -msgstr "" +msgstr "你的毛孔会渗出粘液。你可以在近战时将粘液喷射到对手身上。" #: lang/json/mutation_from_json.py msgid "Bulging Reservoir" -msgstr "" +msgstr "膨胀水库" #. ~ Description for {'str': 'Bulging Reservoir'} #: lang/json/mutation_from_json.py msgid "" "You develop a reservoir of fluids that bulges out of your abdomen. Your " "body has adapted to containing extra liquids in event of shortfalls." -msgstr "" +msgstr "你的腹部形成了一个隆起的体液储库。你的身体进化得能够容纳额外液体供水分短缺时使用。" #: lang/json/mutation_from_json.py msgid "Bombadier Beetle Blast" -msgstr "" +msgstr "放屁虫喷射" #. ~ Description for {'str': 'Bombadier Beetle Blast'} #: lang/json/mutation_from_json.py @@ -153438,17 +154551,17 @@ msgid "" "You have an ability to spray boiling water on your enemies at melee " "distance. This will drastically increase your thirst. Without an extra " "reservoir you would quickly dehydrate yourself." -msgstr "" +msgstr "你能在近战时向你的敌人喷射沸水。这将大大增加你的口渴速度。如果没有额外的储液库,你会很快脱水。" #: lang/json/mutation_from_json.py #, no-python-format msgid "You spray %s with a boiling chemical mixture" -msgstr "" +msgstr "你朝着 %s 喷出一股沸腾的化学液体" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s sprays %2$s with a boiling chemical mixture" -msgstr "" +msgstr "%1$s 朝着 %s 喷出一股沸腾的化学液体" #: lang/json/mutation_from_json.py msgid "Large Talons" @@ -153542,14 +154655,14 @@ msgstr "你的身体会生产少量使昆虫安心的信息素,使得昆虫不 #: lang/json/mutation_from_json.py msgid "Amphibian Pheromones" -msgstr "" +msgstr "两栖信息素" #. ~ Description for {'str': 'Amphibian Pheromones'} #: lang/json/mutation_from_json.py msgid "" "Your body produces low-level pheromones, identifying you as a friend to many" " species of amphibian. Amphibians will attack you much less." -msgstr "" +msgstr "你的身体会生产少量使两栖动物安心的信息素,使得两栖动物不太可能攻击你。" #: lang/json/mutation_from_json.py msgid "Mammal Pheromones" @@ -153687,54 +154800,54 @@ msgstr "你的四肢能够匹配任何东西!敏捷 +4,力量 -4。" #: lang/json/mutation_from_json.py msgid "Muscle Consolidation" -msgstr "" +msgstr "肌肉巩固" #. ~ Description for {'str': 'Muscle Consolidation'} #: lang/json/mutation_from_json.py msgid "" "Your extremities have gained strength but lost fine motor skills. -1 " "Dexterity +2 Strength." -msgstr "" +msgstr "你的四肢力量增强了,但失去了精细运动技能。敏捷-1,力量+2。" #: lang/json/mutation_from_json.py msgid "Rasping Tongue" -msgstr "" +msgstr "锉舌" #. ~ Description for {'str': 'Rasping Tongue'} #: lang/json/mutation_from_json.py msgid "" "You've developed an extremely long and mobile tongue capped with teeth. You" " may use it to attack your enemies." -msgstr "" +msgstr "你长出了一根非常长的舌头,上面覆盖着尖刺。你可以用它来攻击你的敌人。" #: lang/json/mutation_from_json.py #, no-python-format msgid "You tear into %s with your rasping tongue." -msgstr "" +msgstr "你用锉舌撕裂了 %s" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s tears into %2$s with their rasping tongue." -msgstr "" +msgstr "%1$s 用锉舌撕裂了 %s" #: lang/json/mutation_from_json.py msgid "Harpoon Tongue" -msgstr "" +msgstr "叉舌" #. ~ Description for {'str': 'Harpoon Tongue'} #: lang/json/mutation_from_json.py msgid "Your tongue has increased its length and mobility." -msgstr "" +msgstr "你的舌头增加了长度和灵活性。" #: lang/json/mutation_from_json.py #, no-python-format msgid "You stab into %s with your harpoon tongue." -msgstr "" +msgstr "你用叉舌刺入 %s" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s stabs into %2$s with their harpoon tongue." -msgstr "" +msgstr "%1$s 用叉舌刺入 %s" #: lang/json/mutation_from_json.py msgid "Compound Eyes" @@ -153762,28 +154875,28 @@ msgstr "你的脚底长出了厚厚的肉垫,光着脚行动时不受惩罚, #: lang/json/mutation_from_json.py msgid "Strong Legs" -msgstr "" +msgstr "强壮腿部" #. ~ Description for {'str': 'Strong Legs'} #: lang/json/mutation_from_json.py msgid "Your legs have gained muscle mass to propel you across any terrain." -msgstr "" +msgstr "你的双腿肌肉发达,可以让你穿越任何地形。" #: lang/json/mutation_from_json.py msgid "Leaping Legs" -msgstr "" +msgstr "跳跃足" #. ~ Description for {'str': 'Leaping Legs'} #: lang/json/mutation_from_json.py msgid "You've gained a strong ability to leap from a standing position." -msgstr "" +msgstr "你获得了站立时跳跃的强大能力。" #. ~ Description for {'str': 'Crushing Leap'} #: lang/json/mutation_from_json.py msgid "" "You've gained a strong ability to leap a significant distance from a " "standing position and crush whatever you land on." -msgstr "" +msgstr "你获得了从站立的位置跳跃一段很长的距离,然后压碎你落点处的任何东西的强大能力。" #: lang/json/mutation_from_json.py msgid "Toe Talons" @@ -154573,7 +155686,7 @@ msgstr "你的牙齿发生了变异,你的上颚长出了可以延展的獠牙 #: lang/json/mutation_from_json.py msgid "Gastropod Foot" -msgstr "" +msgstr "蜗牛腹足" #. ~ Description for {'str': 'Gastropod Foot'} #: lang/json/mutation_from_json.py @@ -154584,21 +155697,22 @@ msgid "" "noise. In addition to being harder to knock down, you can move through " "sludge-covered surfaces easily." msgstr "" +"你的双腿被整合成一只肌肉发达的“脚”,伸入你的腹部。你的移动速度约为先前速度的四分之一,并且不能再穿裤子或鞋子,另一方面,你移动时的噪音明显降低。除了更难击倒外,你还可以轻松地穿过泥泞地面。" #: lang/json/mutation_from_json.py msgid "Gastropod Balance" -msgstr "" +msgstr "蜗牛平衡" #. ~ Description for {'str': 'Gastropod Balance'} #: lang/json/mutation_from_json.py msgid "" "By pushing your whole 'foot' against the ground you are able to move across " "rough terrain without losing your 'footing'." -msgstr "" +msgstr "通过将你的整个“脚”压在地面上,你可以在不失去“立足点”的情况下穿越崎岖地形。" #: lang/json/mutation_from_json.py msgid "Mucus Secretion" -msgstr "" +msgstr "粘液分泌" #. ~ Description for {'str': 'Mucus Secretion'} #: lang/json/mutation_from_json.py @@ -154606,39 +155720,39 @@ msgid "" "You once had a significant other call you slimy, now you exemplify that. It" " covers evrerything you come into contact with but now you can move through " "slime you didn't create with ease." -msgstr "" +msgstr "你曾经有个重要的另一半说你滑头,现在你就是个活生生的例子。粘液覆盖了所有你接触到的东西,但现在你可以不受阻碍的穿过任何粘液。" #: lang/json/mutation_from_json.py msgid "Acidic Secretion" -msgstr "" +msgstr "酸液分泌" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." -msgstr "" +"Your mucus has developed an acidic component that seems to soften your prey " +"up." +msgstr "你分泌出的粘液中含有一种酸性成分,似乎能软化你的猎物。" #: lang/json/mutation_from_json.py #, no-python-format msgid "You smear slime on %s" -msgstr "" +msgstr "你朝 %s 喷射出粘液" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s smears slime on %2$s" -msgstr "" +msgstr "%1$s 朝 %s 喷射出粘液" #: lang/json/mutation_from_json.py msgid "Snail Trail" -msgstr "" +msgstr "蜗痕" #. ~ Description for {'str': 'Snail Trail'} #: lang/json/mutation_from_json.py msgid "" "You've developed some ability to control your slime emissions. As a result " "of this you can leave trails of slime anywhere you walk." -msgstr "" +msgstr "你进化出了部分控制你的黏液排放的能力。因此,无论你走到哪里,你都可以留下粘液的痕迹。" #: lang/json/mutation_from_json.py msgid "Canine Ears" @@ -154856,8 +155970,8 @@ msgstr "身强力壮" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" -msgstr "你的肌体比以前强壮了少许。力量+1" +msgid "Your muscles are a little stronger. +1 Strength." +msgstr "你比以前强壮了少许。力量+1。" #: lang/json/mutation_from_json.py msgid "Very Strong" @@ -154865,8 +155979,8 @@ msgstr "肌肉发达" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" -msgstr "在末日的磨砺下,你的肌肉更加发达。力量+2" +msgid "Your muscles are stronger. +2 Strength." +msgstr "你的肌肉更强壮了。力量+2。" #: lang/json/mutation_from_json.py msgid "Extremely Strong" @@ -154874,8 +155988,8 @@ msgstr "孔武有力" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" -msgstr "你的肌肉强度变得更大。力量+4" +msgid "Your muscles are much stronger. +4 Strength." +msgstr "你的肌肉变得强壮多了。力量+4。" #: lang/json/mutation_from_json.py msgid "Insanely Strong" @@ -154883,8 +155997,8 @@ msgstr "力大无穷" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" -msgstr "你的肌肉围度与质量非常之大。你几乎超越了人类的极限!力量+7" +msgid "Your muscles are noticeably bulging. +7 Strength." +msgstr "你的肌肉明显鼓起。力量+7。" #: lang/json/mutation_from_json.py msgid "Prime Strength" @@ -154901,8 +156015,8 @@ msgstr "动作轻灵" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" -msgstr "做了许多训练,你的动作似乎变得灵活了。敏捷+1" +msgid "You are a little nimbler. +1 Dexterity." +msgstr "你比以前灵活了少许。敏捷+1。" #: lang/json/mutation_from_json.py msgid "Very Dextrous" @@ -154910,8 +156024,8 @@ msgstr "眼疾手快" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" -msgstr "你的手脚更加灵活了。敏捷+2" +msgid "You are nimbler. +2 Dexterity." +msgstr "你比以前更灵活了。敏捷+2。" #: lang/json/mutation_from_json.py msgid "Extremely Dextrous" @@ -154919,8 +156033,8 @@ msgstr "动如脱兔" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" -msgstr "你领悟了灵活行动的技巧。敏捷+4" +msgid "You are nimble and quick. +4 Dexterity." +msgstr "你变得既灵活又敏捷。敏捷+4。" #: lang/json/mutation_from_json.py msgid "Insanely Dextrous" @@ -154928,8 +156042,8 @@ msgstr "风驰电掣" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" -msgstr "你掌握了灵活行动的身法。敏捷+7" +msgid "You are much nimbler than before. +7 Dexterity." +msgstr "你掌握了灵活行动的身法。敏捷+7。" #: lang/json/mutation_from_json.py msgid "Prime Dexterity" @@ -154946,8 +156060,8 @@ msgstr "聪慧过人" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" -msgstr "你的大脑运转似乎变快了。智力+1" +msgid "You are a little smarter. +1 Intelligence." +msgstr "你比以前聪明了少许。智力+1。" #: lang/json/mutation_from_json.py msgid "Very Smart" @@ -154955,8 +156069,8 @@ msgstr "精明强干" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" -msgstr "你的大脑组织更发达了。智力+2" +msgid "You are smarter. +2 Intelligence." +msgstr "你比以前更聪明了。智力+2。" #: lang/json/mutation_from_json.py msgid "Extremely Smart" @@ -154965,8 +156079,8 @@ msgstr "算无遗策" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" -msgstr "你的脑细胞得到了充分利用,你的头也因此体积膨胀了少许。智力+4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." +msgstr "你变得聪明多了,而且你的头骨略微隆起。智力+4。" #: lang/json/mutation_from_json.py msgid "Insanely Smart" @@ -154975,8 +156089,8 @@ msgstr "绝顶聪明" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" -msgstr "你完全开发了你的脑域,你的大脑明显超过凡人,不论是体积还是质量。智力+7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." +msgstr "你令人印象深刻的大头显示了你的过人才智。智力+7。" #: lang/json/mutation_from_json.py msgid "Prime Intelligence" @@ -155005,8 +156119,8 @@ msgstr "心明眼亮" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" -msgstr "你觉得你看得更清楚了。感知+1" +msgid "Your senses are a little keener. +1 Perception." +msgstr "你的感官敏锐了少许。感知+1。" #: lang/json/mutation_from_json.py msgid "Very Perceptive" @@ -155014,8 +156128,8 @@ msgstr "高度敏锐" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" -msgstr "你的目光变得敏锐多了。感知+2" +msgid "Your senses are keener. +2 Perception." +msgstr "你的感官更敏锐了。感知+2。" #: lang/json/mutation_from_json.py msgid "Extremely Perceptive" @@ -155023,8 +156137,8 @@ msgstr "洞察一切" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" -msgstr "你能看到许多以前看不到的东西。感知+4" +msgid "Your senses are much keener. +4 Perception." +msgstr "你的感官比以前敏锐得多了。感知+4。" #: lang/json/mutation_from_json.py msgid "Insanely Perceptive" @@ -155032,8 +156146,8 @@ msgstr "未卜先知" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" -msgstr "你发现自己开发了第六感。感知+7" +msgid "You can sense things you never imagined. +7 Perception." +msgstr "你能感觉到你从未想象过的东西。感知+7。" #: lang/json/mutation_from_json.py msgid "Prime Perception" @@ -155161,35 +156275,35 @@ msgstr "你的舌头像蛇一样分叉,除了吓人以外没什么用。" #: lang/json/mutation_from_json.py msgid "Lolling Tongue" -msgstr "" +msgstr "垂舌" #. ~ Description for {'str': 'Lolling Tongue'} #: lang/json/mutation_from_json.py msgid "" "Your tongue has lengthened and often extends far beyond your mouth. This " "has no effect." -msgstr "" +msgstr "你的舌头拉长了,而且经常伸到嘴以外。这没有效果。" #: lang/json/mutation_from_json.py msgid "Whipping Tongue" -msgstr "" +msgstr "鞭舌" #. ~ Description for {'str': 'Whipping Tongue'} #: lang/json/mutation_from_json.py msgid "" "You've developed an extremely long and mobile tongue. You may use it to " "attack your enemies." -msgstr "" +msgstr "你的舌头非常长,而且很灵活。你可以用它来攻击你的敌人。" #: lang/json/mutation_from_json.py #, no-python-format msgid "You bash %s with your tongue." -msgstr "" +msgstr "你用舌头抽打 %s" #: lang/json/mutation_from_json.py #, no-python-format msgid "%1$s smacks into %2$s with their tongue." -msgstr "" +msgstr "%1$s 用舌头抽打 %s" #: lang/json/mutation_from_json.py msgid "Bulging Eyes" @@ -155204,7 +156318,7 @@ msgstr "你的眼睛从头颅突出来几英寸,但这并不影响你的视觉 #: lang/json/mutation_from_json.py msgid "Intermediate Eyestalks" -msgstr "" +msgstr "半凸眼柄" #. ~ Description for {'str': 'Intermediate Eyestalks'} #: lang/json/mutation_from_json.py @@ -155214,10 +156328,11 @@ msgid "" "but sometimes your vision goes wonky as your brain tries to process the new " "angles. Perception +1" msgstr "" +"你的眼睛变成触柄稍稍从你的头上凸出,这让你无法使用任何硬质眼镜。从好的方面来说,你可以获得额外的环境感知力,但有时当你的大脑试图处理新的视角时,你的视野会变得不稳定。感知+1" #: lang/json/mutation_from_json.py msgid "Eyestalks" -msgstr "" +msgstr "眼柄" #. ~ Description for {'str': 'Eyestalks'} #: lang/json/mutation_from_json.py @@ -155225,7 +156340,7 @@ msgid "" "Your eyes protrude from your head on flexible tentacles, preventing the use " "of any eyewear. On the plus side, you can see in two directions at once, " "and they automatically retract to reduce damage. Perception +2" -msgstr "" +msgstr "你的眼睛从你的头上伸出,变成灵活的触柄,这让你无法使用任何眼镜。但另一方面,你可以同时看向两个方向,它们会自动缩回以减少伤害。感知+2" #: lang/json/mutation_from_json.py msgid "Mouth Flaps" @@ -155469,14 +156584,14 @@ msgstr "%1$s 咬掉了 %2$s 的一部分" #: lang/json/mutation_from_json.py msgid "Wide Mouth" -msgstr "" +msgstr "大嘴" #. ~ Description for {'str': 'Wide Mouth'} #: lang/json/mutation_from_json.py msgid "" "Your face and jaws have widened like a frogs. It looks hideous but it " "allows you to eat food whole." -msgstr "" +msgstr "你的脸和下巴像青蛙一样变大了。这看起来很难看,但它可以让你把食物整个吞下。" #: lang/json/mutation_from_json.py msgid "Proboscis" @@ -155536,7 +156651,7 @@ msgstr "耐力猎人" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "你可以按照自己的节奏连续追踪猎物数英里,直到它们停止呼吸。" #: lang/json/mutation_from_json.py @@ -155655,7 +156770,7 @@ msgstr "非常渴睡" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "你发现自己更加渴望睡眠,整天都迷迷糊糊,睡眠占去了你的一半生命。" #: lang/json/mutation_from_json.py @@ -156181,14 +157296,14 @@ msgstr "你有着一个粗鲁的声音,说服NPC们将更加困难,但威胁 #: lang/json/mutation_from_json.py msgid "Croaking Voice" -msgstr "" +msgstr "呱呱叫" #. ~ Description for {'str': 'Croaking Voice'} #: lang/json/mutation_from_json.py msgid "" "You have a low, croaking voice, like an aged grandparent. Persuading NPCs " "will be easier, but threatening them will be more difficult." -msgstr "" +msgstr "你的声音变成低沉的呱呱叫声,像一个年老的祖父母。说服NPC会更容易,但威胁NPC会更难。" #: lang/json/mutation_from_json.py msgid "Snarling Voice" @@ -156378,14 +157493,14 @@ msgstr "你可以随时、把自己整个缩进你宽敞的甲壳里,充分享 #: lang/json/mutation_from_json.py msgid "Nacreous Shell" -msgstr "" +msgstr "珠质外壳" #. ~ Description for {'str': 'Nacreous Shell'} #: lang/json/mutation_from_json.py msgid "" "Your protective shell has developed increased strength and hardness and a " "mother of pearl sheen." -msgstr "" +msgstr "你的保护外壳变得具有更高的强度和硬度,散发出珍珠母般的光泽。" #: lang/json/mutation_from_json.py msgid "Leg Tentacles" @@ -156423,7 +157538,7 @@ msgstr "你偶尔还会回想起长尾巴前的日子,但你觉得现在快活 msgid "" "You feel bad for all the creatures that don't carry their home on their " "backs." -msgstr "" +msgstr "你为所有不背着家的生物感到难过。" #. ~ Description for {'str': 'Bird'} #: lang/json/mutation_from_json.py @@ -156588,7 +157703,7 @@ msgstr "接连化解两次灭绝危机的挑战,你相信你会做得很好。 #. ~ Description for {'str': 'Batrachian'} #: lang/json/mutation_from_json.py msgid "A perfect ambush predator, if only there were less competition." -msgstr "" +msgstr "一个完美的伏击捕食者,要是少一点竞争就好了。" #: lang/json/mutation_from_json.py msgid "Diminutive" @@ -157060,13 +158175,13 @@ msgstr "让饥饿,口渴,疲劳这些指数定住不动。然后你可以一 #: lang/json/mutation_from_json.py msgid "Debug Stamina" -msgstr "" +msgstr "调试用耐力" #. ~ Description for {'str': 'Debug Stamina'} #: lang/json/mutation_from_json.py msgid "" "You can't run from the bugs, but you have enough stamina to at least try to." -msgstr "" +msgstr "你不能跑赢虫子,但你有足够的耐力去尝试。" #: lang/json/mutation_from_json.py msgid "Debug Deodorizer" @@ -159923,25 +161038,25 @@ msgstr "极弱魔力敏感" #: lang/json/mutation_from_json.py msgid "Slime Breath" -msgstr "" +msgstr "粘液呼吸" #. ~ Description for {'str': 'Slime Breath'} #: lang/json/mutation_from_json.py msgid "" "Your breath is sticky and slimy somehow. This won't damage your " "interactions with people but it's definitely noticeable." -msgstr "" +msgstr "不知怎么的,你的呼吸变得又粘又滑。虽然这不会让你无法与他人互动,但影响绝对是显而易见的。" #: lang/json/mutation_from_json.py msgid "Chimeric Breath" -msgstr "" +msgstr "嵌合呼吸" #. ~ Description for {'str': 'Chimeric Breath'} #: lang/json/mutation_from_json.py msgid "" "Your breath could metaphorically melt lead. It's horrible. It's so bad " "that it can actually distract from your attempts to intimidate someone." -msgstr "" +msgstr "你的呼吸可以如比喻一般融化铸铅。太可怕了。它糟糕到能够分散你恐吓别人时的注意力。" #: lang/json/mutation_from_json.py msgid "Debug Spell Mutation" @@ -160209,6 +161324,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "我是美食家,我带来了食物!" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "改造人" @@ -160244,6 +161360,14 @@ msgstr "我得多收集些骨头。" msgid "Fisherman" msgstr "渔夫" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "改造人1型" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "我是个改造人。" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "教友" @@ -160802,6 +161926,14 @@ msgstr "我正在找暴龙诱变剂……我准备成为一个王者。" msgid "Operator" msgstr "特种兵" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "熔炉图书管理员" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "我负责管理书籍和卷轴。" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "海盗女王" @@ -160937,6 +162069,10 @@ msgstr "米哈伊尔·弗洛洛夫" msgid "Heather Frolova" msgstr "希瑟·弗洛洛娃" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "鲁比克" + #: lang/json/npc_from_json.py msgid "member" msgstr "教友" @@ -161105,6 +162241,10 @@ msgstr "经理" msgid "Guard" msgstr "守卫" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "司机" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "马卡拉·桑切斯" @@ -161273,6 +162413,10 @@ msgstr "良美" msgid "Forge Lord" msgstr "熔炉之主" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "图书管理员,A" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "海伦·塔夫雷尔,前海盗" @@ -162216,6 +163360,10 @@ msgstr "变形怪坑" msgid "rocky butte" msgstr "岩丘" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "地面入口" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "废料营地" @@ -162905,6 +164053,10 @@ msgstr "尖刺堑壕" msgid "fabrication workshop survey" msgstr "工坊选址" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "工坊选址" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "铁匠铺选址" @@ -162913,26 +164065,42 @@ msgstr "铁匠铺选址" msgid "blacksmith shop" msgstr "铁匠铺" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "牧场选址" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "牧场选址" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "仓库选址" +#: lang/json/overmap_terrain_from_json.py +msgid "store house survey 2" +msgstr "仓库选址" + #: lang/json/overmap_terrain_from_json.py msgid "saltworks survey" msgstr "盐场选址" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "食堂选址" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "食堂选址" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" msgstr "农场选址" +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" +msgstr "车库选址" + #: lang/json/overmap_terrain_from_json.py msgid "military helipad garage" msgstr "军用直升机停机坪(车库)" @@ -163297,6 +164465,10 @@ msgstr "米·戈侦察塔" msgid "subway station?" msgstr "地铁站?" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "实验室走廊" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "科学实验室反应堆" @@ -164757,6 +165929,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "你在酒瓶底找到了慰藉。该死,你需要喝一杯。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "安眠药上瘾" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "你很难入睡,所以你开始服用安眠药。问题是现在没了它你再也不能入睡了,大灾变确实让事情变得复杂了。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "安眠药上瘾" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "你很难入睡,所以你开始服用安眠药。问题是现在没了它你再也不能入睡了,大灾变确实让事情变得复杂了。" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "咖啡因上瘾" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "咖啡是让你在工作中生存下来的日常伴侣,但现在想找到能进入你的身体的咖啡因要困难得多。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "咖啡因上瘾" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "咖啡是让你在工作中生存下来的日常伴侣,但现在想找到能进入你的身体的咖啡因要困难得多。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -164867,6 +166093,34 @@ msgid "" "safe. Right? It must be." msgstr "你喜欢在广阔的荒野宿营,以此逃避现代生活的节奏。荒野里没有人,所以一定很安全。对吧?一定是这样。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "丛林求生" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "你将露营提升到了一个全新的水平。你花了无数夜晚和周末在野外生存,而只需要一把小刀来帮助你。也许这能让你远离人群。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "丛林求生" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "你将露营提升到了一个全新的水平。你花了无数夜晚和周末在野外生存,而只需要一把小刀来帮助你。也许这能让你远离人群。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -164903,8 +166157,8 @@ msgstr "书虫" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." -msgstr "你喜欢读书,只是你似乎从来没有足够的时间。也许这场大灾难是因祸得福。" +"Cataclysm is a blessing in disguise." +msgstr "你喜欢读书,只是你似乎从来没有足够的时间。也许大灾变是因祸得福。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -164916,8 +166170,8 @@ msgstr "书虫" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." -msgstr "你喜欢读书,只是你似乎从来没有足够的时间。也许这场大灾难是因祸得福。" +"Cataclysm is a blessing in disguise." +msgstr "你喜欢读书,只是你似乎从来没有足够的时间。也许大灾变是因祸得福。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -165509,6 +166763,32 @@ msgid "" "anyone else!" msgstr "你很喜欢吃东西,你吃得更快,也能比其他人吃、喝更多东西!" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "马拉松运动员" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "你每年都去参加波士顿马拉松。现在,这种训练在避免死亡方面派上了用场。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "马拉松运动员" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "你每年都去参加波士顿马拉松。现在,这种训练在避免死亡方面派上了用场。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -165771,6 +167051,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "你擅长滑冰。当你穿着滚轴溜冰鞋或者直排轮滑鞋时,你受到的闪避惩罚更少,在近战中被击中时摔倒的几率也更小。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "工艺美术" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "你喜欢在家做手工艺品。希望这能帮助你在世界陷入地狱的情况下生存。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "工艺美术" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "你喜欢在家做手工艺品。希望这能帮助你在世界陷入地狱的情况下生存。" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "汽车改造" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "每个周末,花些时间在你的车库里修车是你最喜欢的消遣。你从来没有造完一辆车,但这些年来你至少学到了些东西。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "汽车改造" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "每个周末,花些时间在你的车库里修车是你最喜欢的消遣。你从来没有造完一辆车,但这些年来你至少学到了些东西。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -165897,6 +167231,34 @@ msgid "" "you're the last member of your party." msgstr "你引导玩家们在你搭建出的地下城和城堡中探索。现在,你是你们派对上的最后一名成员了。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "业余无线电员" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "你整夜都在使用、建造和修理老式无线电收发机。现在你没有可以说话的对象了。但你不会放弃希望,也许你的电子知识会对你有所帮助。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "业余无线电员" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "你整夜都在使用、建造和修理老式无线电收发机。现在你没有可以说话的对象了。但你不会放弃希望,也许你的电子知识会对你有所帮助。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -165945,6 +167307,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "你控球和背身单打能力让你能在这场加时赛中打赢丧尸。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "靶场射手" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "你喜欢去本地的枪械店打靶。有时甚至在篱笆柱上射空罐子。也许你该在这些死去的家伙身上想象出一个靶标,这可能会有所帮助。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "靶场射手" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "你喜欢去本地的枪械店打靶。有时甚至在篱笆柱上射空罐子。也许你该在这些死去的家伙身上想象出一个靶标,这可能会有所帮助。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -165967,6 +167357,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "专业医疗人员不会来了,但无论如何你都会继续活下去。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "飞碟射手" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "没有什么能比得上硝烟的气味和把橙色的陶瓷碟片击碎了。是时候向比那些陶瓷鸽子更带肉的玩意射击了。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "飞碟射手" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "没有什么能比得上硝烟的气味和把橙色的陶瓷碟片击碎了。是时候向比那些陶瓷鸽子更带肉的玩意射击了。" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "后院烧烤" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "你大多数周末喜欢邀请邻居们来后院聚聚。当然,你是烧烤师傅。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "后院烧烤" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "你大多数周末喜欢邀请邻居们来后院聚聚。当然,你是烧烤师傅。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -166364,7 +167806,7 @@ msgstr "你喜欢在舞池里结识新朋友。丧尸并不十分友好,但已 #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Meditation" -msgstr "" +msgstr "冥想" #. ~ Profession (male Meditation) description #: lang/json/professions_from_json.py @@ -166377,7 +167819,7 @@ msgstr "即使在这个混乱的世界中,你也养成了清除杂念、找回 #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Meditation" -msgstr "" +msgstr "冥想" #. ~ Profession (female Meditation) description #: lang/json/professions_from_json.py @@ -166772,7 +168214,7 @@ msgctxt "prof_desc_male" msgid "" "You played with the local team. You're the only one left, but now you can " "use your trusty bat for another purpose. Home run!" -msgstr "" +msgstr "你是本地球队的队员。你是唯一活下来的人,但你终于可以用你的好伙计来干另一件事。全垒打!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -166785,7 +168227,7 @@ msgctxt "prof_desc_female" msgid "" "You played with the local team. You're the only one left, but now you can " "use your trusty bat for another purpose. Home run!" -msgstr "" +msgstr "你是本地球队的队员。你是唯一活下来的人,但你终于可以用你的好伙计来干另一件事。全垒打!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -166856,7 +168298,7 @@ msgid "" "this all happened. Perhaps you'll never get to participate in the grand " "tours now, but as the saying goes, life is like riding a bicycle: you've got" " to keep moving." -msgstr "" +msgstr "在这一切发生之前,你是个前途一片光明的自行车选手,但是现在都泡汤了。好在俗话说:生活就像骑自行车,你必须不停前进。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -166871,7 +168313,7 @@ msgid "" "this all happened. Perhaps you'll never get to participate in the grand " "tours now, but as the saying goes, life is like riding a bicycle: you've got" " to keep moving." -msgstr "" +msgstr "在这一切发生之前,你是个前途一片光明的自行车选手,但是现在都泡汤了。好在俗话说:生活就像骑自行车,你必须不停前进。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -166886,7 +168328,7 @@ msgid "" "shot Major General, respected and decorated. On the downside, years of desk" " duty have left your shooting skills rusty, and all the medals in the world " "won't protect you now." -msgstr "" +msgstr "你从一个无名的二等兵一路晋升到一个受人尊敬的少将。不幸的是,多年的案头工作让你的射击技能变得生疏,现在世界上所有的勋章都无法保护你。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -166901,7 +168343,7 @@ msgid "" "shot Major General, respected and decorated. On the downside, years of desk" " duty have left your shooting skills rusty, and all the medals in the world " "won't protect you now." -msgstr "" +msgstr "你从一个无名的二等兵一路晋升到一个受人尊敬的少将。不幸的是,多年的案头工作让你的射击技能变得生疏,现在世界上所有的勋章都无法保护你。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -166947,7 +168389,7 @@ msgid "" "Early in your military career, you were hand-picked for extra training in " "the mechanic's trade, keeping the armor running. It's been years since you " "last touched a rifle, and the dead men are marching again…" -msgstr "" +msgstr "在军旅生涯开始时,你被选中参加军械相关的额外训练,保持装甲车正常运转。你已经好几年没碰过步枪了,而死人们却开始行军了……" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -166961,7 +168403,7 @@ msgid "" "Early in your military career, you were hand-picked for extra training in " "the mechanic's trade, keeping the armor running. It's been years since you " "last touched a rifle, and the dead men are marching again…" -msgstr "" +msgstr "在军旅生涯开始时,你被选中参加军械相关的额外训练,保持装甲车正常运转。你已经好几年没碰过步枪了,而死人们却开始行军了……" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -166977,6 +168419,7 @@ msgid "" "years since you last handled a rifle in basic training; now might be the " "time to dust off those skills." msgstr "" +"你的工作很简单:让军队继续前进。你负责修桥修路,摧毁工事,清除地雷。距离你上次在基础作战训练中使用步枪已经有好些年了,现在也许是时候磨练一下这些技能了。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -166992,6 +168435,7 @@ msgid "" "years since you last handled a rifle in basic training; now might be the " "time to dust off those skills." msgstr "" +"你的工作很简单:让军队继续前进。你负责修桥修路,摧毁工事,清除地雷。距离你上次在基础作战训练中使用步枪已经有好些年了,现在也许是时候磨练一下这些技能了。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -167005,7 +168449,7 @@ msgid "" "You're a veteran of several peacekeeping missions. You led your squad as a " "sort of parental figure, and they relied on you to give orders and keep them" " alive. You failed them. And now you're alone." -msgstr "" +msgstr "你是参加过数次维和任务的老兵。你像一个家长一样带领你的连队,他们指望你下达正确的命令,让他们活下去。你让他们失望了。现在只剩你一个人了。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167019,7 +168463,7 @@ msgid "" "You're a veteran of several peacekeeping missions. You led your squad as a " "sort of parental figure, and they relied on you to give orders and keep them" " alive. You failed them. And now you're alone." -msgstr "" +msgstr "你是参加过数次维和任务的老兵。你像一个家长一样带领你的连队,他们指望你下达正确的命令,让他们活下去。你让他们失望了。现在只剩你一个人了。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -167353,7 +168797,7 @@ msgid "" "Society drove you to the fringes and left you with no home, no family, no " "friends. But for all the crap thrown your way, you're still breathing. For" " now." -msgstr "" +msgstr "社会把你逼到了边缘,让你没有家,没有家人,没有朋友。但尽管你被这么多挫折打击,你仍旧在呼吸。只是现在。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167367,7 +168811,7 @@ msgid "" "Society drove you to the fringes and left you with no home, no family, no " "friends. But for all the crap thrown your way, you're still breathing. For" " now." -msgstr "" +msgstr "社会把你逼到了边缘,让你没有家,没有家人,没有朋友。但尽管你被这么多挫折打击,你仍旧在呼吸。只是现在。" #. ~ Profession (male Helicopter Pilot) description #: lang/json/professions_from_json.py @@ -167643,6 +169087,7 @@ msgid "" "motorcycle to escape. Who's going to respect your authority when the " "government this badge represents doesn't exist anymore?" msgstr "" +"你只是一名普通镇的副警长,你接到了求救电话,准备出现场。很快你发现自己才是需要救援那个人,你不得不弃车逃跑。当你佩戴的这个徽章所代表的政府不复存在时,谁还会尊重你的权威?" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167658,6 +169103,7 @@ msgid "" "motorcycle to escape. Who's going to respect your authority when the " "government this badge represents doesn't exist anymore?" msgstr "" +"你只是一名普通镇的副警长,你接到了求救电话,准备出现场。很快你发现自己才是需要救援那个人,你不得不弃车逃跑。当你佩戴的这个徽章所代表的政府不复存在时,谁还会尊重你的权威?" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -167883,7 +169329,7 @@ msgid "" "You love driving, and decided to start making some money doing it. On your " "way to pick up a customer, a riot broke out around you. You took a long " "detour to safety, only to find yourself somewhere unfamiliar." -msgstr "" +msgstr "你喜欢开车,并决定开始通过开车赚钱。在你去接顾客的路上,你周围发生了骚乱。你绕了很长一段路来到一处安全的地方,却发现自己在一处陌生的地方。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167897,7 +169343,7 @@ msgid "" "You love driving, and decided to start making some money doing it. On your " "way to pick up a customer, a riot broke out around you. You took a long " "detour to safety, only to find yourself somewhere unfamiliar." -msgstr "" +msgstr "你喜欢开车,并决定开始通过开车赚钱。在你去接顾客的路上,你周围发生了骚乱。你绕了很长一段路来到一处安全的地方,却发现自己在一处陌生的地方。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -167913,6 +169359,7 @@ msgid "" " took a long detour only to find yourself lost. That call will have to wait" " - you're in an emergency of your own now." msgstr "" +"在你去响应紧急呼救的路上,你差点直接撞上城市的骚乱。离开被燃烧的垃圾和瓦砾覆盖的街道,你走了很长一段路,却发现自己迷路了。那个急救电话得再等一等——你自己也需要急救了。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167928,6 +169375,7 @@ msgid "" " took a long detour only to find yourself lost. That call will have to wait" " - you're in an emergency of your own now." msgstr "" +"在你去响应紧急呼救的路上,你差点直接撞上城市的骚乱。离开被燃烧的垃圾和瓦砾覆盖的街道,你走了很长一段路,却发现自己迷路了。那个急救电话得再等一等——你自己也需要急救了。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -167944,6 +169392,7 @@ msgid "" "You veered off onto an old, neglected side road to escape, only to find " "yourself lost and low on gas." msgstr "" +"你受雇于一家大公司,在那些忘恩负义的卢德派分子家中执行设备安装和故障排除服务。再处理完现场回公司的路上,你突然被那些你认为是愤怒的暴徒包围了。你转入一条被忽视的老路逃跑,结果发现自己迷路了,汽油也快没了。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167960,6 +169409,7 @@ msgid "" "You veered off onto an old, neglected side road to escape, only to find " "yourself lost and low on gas." msgstr "" +"你受雇于一家大公司,在那些忘恩负义的卢德派分子家中执行设备安装和故障排除服务。再处理完现场回公司的路上,你突然被那些你认为是愤怒的暴徒包围了。你转入一条被忽视的老路逃跑,结果发现自己迷路了,汽油也快没了。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -167976,6 +169426,7 @@ msgid "" " but now you've gotten lost. At least you're getting a break from the " "hellish screams of children, though you're starting to hear new ones…" msgstr "" +"你靠开车送孩子上下学为生,这几乎是你每天都后悔的职业选择。没有一个小家伙在正常停靠站等车,而你的巴士的噪音很快吸引了尸群。你逃出来了,但现在你迷路了。至少你从孩子们地狱般的尖叫声中得到了片刻休息,但你开始听到新的尖叫……" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -167992,6 +169443,7 @@ msgid "" " but now you've gotten lost. At least you're getting a break from the " "hellish screams of children, though you're starting to hear new ones…" msgstr "" +"你靠开车送孩子上下学为生,这几乎是你每天都后悔的职业选择。没有一个小家伙在正常停靠站等车,而你的巴士的噪音很快吸引了尸群。你逃出来了,但现在你迷路了。至少你从孩子们地狱般的尖叫声中得到了片刻休息,但你开始听到新的尖叫……" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168005,7 +169457,7 @@ msgid "" "An on-duty officer, you received the call and were ready to respond to the " "robbery. It all went to shit, your backup got eaten, and you were lucky to " "escape with your life and patrol car." -msgstr "" +msgstr "作为值班警官,你接到了呼救电话,准备响应抢劫案件。一切都糟透了,你的后援被吃掉了,你很幸运带着你的性命和巡逻警车逃走了。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168019,7 +169471,7 @@ msgid "" "An on-duty officer, you received the call and were ready to respond to the " "robbery. It all went to shit, your backup got eaten, and you were lucky to " "escape with your life and patrol car." -msgstr "" +msgstr "作为值班警官,你接到了呼救电话,准备响应抢劫案件。一切都糟透了,你的后援被吃掉了,你很幸运带着你的性命和巡逻警车逃走了。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168036,6 +169488,7 @@ msgid "" "act of rebellion against the cruelty of this doomed world. Do not let that " "flame of hope perish inside you." msgstr "" +"你和一群志同道合的人在树林里建了一个藏身处,用一辆临时拼凑的皮卡发动抢劫袭击。上次次行动不是很顺利,现在你所有的同志都死了。你现在每一次呼吸都是对这个注定要毁灭的残酷世界的反抗。不要让你心中的希望之火熄灭。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168052,6 +169505,7 @@ msgid "" "act of rebellion against the cruelty of this doomed world. Do not let that " "flame of hope perish inside you." msgstr "" +"你和一群志同道合的人在树林里建了一个藏身处,用一辆临时拼凑的皮卡发动抢劫袭击。上次次行动不是很顺利,现在你所有的同志都死了。你现在每一次呼吸都是对这个注定要毁灭的残酷世界的反抗。不要让你心中的希望之火熄灭。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168068,6 +169522,7 @@ msgid "" "stockpiled as many supplies as possible and set out in your pickup looking " "for answers." msgstr "" +"你在公园里巡逻、保护人们和野生动物的日子教会了你许多有用的技能。你到达营地时发现了可怕的场景,而你用无线电求救时却没有任何反应,你储存了尽可能多的物资,然后开着皮卡出发寻找答案。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168084,6 +169539,7 @@ msgid "" "stockpiled as many supplies as possible and set out in your pickup looking " "for answers." msgstr "" +"你在公园里巡逻、保护人们和野生动物的日子教会了你许多有用的技能。你到达营地时发现了可怕的场景,而你用无线电求救时却没有任何反应,你储存了尽可能多的物资,然后开着皮卡出发寻找答案。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168096,7 +169552,7 @@ msgctxt "prof_desc_male" msgid "" "You're a lumberjack, and you're okay. You felled trees before the world " "ended, and you suspect the undead aren't nearly as tough." -msgstr "" +msgstr "你是个伐木工而且你还活着。在世界末日前你不停地放倒树木,你估计放倒丧尸应该也不会更难。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168109,7 +169565,7 @@ msgctxt "prof_desc_female" msgid "" "You're a lumberjack, and you're okay. You felled trees before the world " "ended, and you suspect the undead aren't nearly as tough." -msgstr "" +msgstr "你是个伐木工而且你还活着。在世界末日前你不停地放倒树木,你估计放倒丧尸应该也不会更难。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168123,7 +169579,7 @@ msgid "" "The diners at the fancy burger joint where you worked were even more " "irritable and unreasonable than usual today. You showed them the meaning of" " fast food… by running for your life!" -msgstr "" +msgstr "你工作的高级汉堡店的食客们今天看起来比平时更加易怒和不讲理。是时候展示快餐的奥义了……为了逃命而奔跑!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168137,7 +169593,7 @@ msgid "" "The diners at the fancy burger joint where you worked were even more " "irritable and unreasonable than usual today. You showed them the meaning of" " fast food… by running for your life!" -msgstr "" +msgstr "你工作的高级汉堡店的食客们今天看起来比平时更加易怒和不讲理。是时候展示快餐的奥义了……为了逃命而奔跑!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168180,6 +169636,7 @@ msgid "" " no one stopping you from your dream of breaking into a military mainframe " "now." msgstr "" +"咖啡因药片和在电脑屏幕前通宵工作,让你成为编写和破解代码的专家。可悲的是,停电了,突然间你的精英技能似乎没那么有用了。至少现在没有人阻止你入侵军方服务器的梦想。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168196,6 +169653,7 @@ msgid "" " no one stopping you from your dream of breaking into a military mainframe " "now." msgstr "" +"咖啡因药片和在电脑屏幕前通宵工作,让你成为编写和破解代码的专家。可悲的是,停电了,突然间你的精英技能似乎没那么有用了。至少现在没有人阻止你入侵军方服务器的梦想。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168295,6 +169753,7 @@ msgid "" "You spent most of your life on a motorcycle, out on the open road with your " "club. Now they're all dead. Time to ride or die." msgstr "" +"你把大部分时间都耗费在了改装你心爱的摩托上,在户外公路上和你俱乐部的朋友们一起压街。现在他们都死了。Time to ride or die." #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168308,6 +169767,7 @@ msgid "" "You spent most of your life on a motorcycle, out on the open road with your " "club. Now they're all dead. Time to ride or die." msgstr "" +"你把大部分时间都耗费在了改装你心爱的摩托上,在户外公路上和你俱乐部的朋友们一起压街。现在他们都死了。Time to ride or die." #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168740,7 +170200,7 @@ msgctxt "prof_desc_male" msgid "" "Neither snow nor rain nor heat nor gloom of night stays you from the swift " "completion of your appointed rounds, but nobody said anything about zombies." -msgstr "" +msgstr "无论风霜雨雪、酷热暗夜,都无法阻止你投递邮件,但是没人和你说过还有丧尸的事。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168753,7 +170213,7 @@ msgctxt "prof_desc_female" msgid "" "Neither snow nor rain nor heat nor gloom of night stays you from the swift " "completion of your appointed rounds, but nobody said anything about zombies." -msgstr "" +msgstr "无论风霜雨雪、酷热暗夜,都无法阻止你投递邮件,但是没人和你说过还有丧尸的事。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168767,7 +170227,7 @@ msgid "" "Your trial was contentious, but ultimately you found yourself behind bars. " "The Cataclysm has offered you a chance to escape, but freedom may come with " "a steep price." -msgstr "" +msgstr "你的判决很有争议,但最终你还是被关进了监狱。大灾变给了你逃跑的机会,但是自由的代价似乎有点偏高。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168781,7 +170241,7 @@ msgid "" "Your trial was contentious, but ultimately you found yourself behind bars. " "The Cataclysm has offered you a chance to escape, but freedom may come with " "a steep price." -msgstr "" +msgstr "你的判决很有争议,但最终你还是被关进了监狱。大灾变给了你逃跑的机会,但是自由的代价似乎有点偏高。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -168853,7 +170313,7 @@ msgid "" "You clawed your way out of poverty by selling products everyone wanted, and " "they had the nerve to put you in jail for it. Too bad you can't sell drugs " "to zombies." -msgstr "" +msgstr "你只不过是把*每个人都想要的好东西*卖给他们,借此摆脱贫困而已,条子们竟然把你关进了监狱!可惜,丧尸不愿意买毒品。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -168867,7 +170327,7 @@ msgid "" "You clawed your way out of poverty by selling products everyone wanted, and " "they had the nerve to put you in jail for it. Too bad you can't sell drugs " "to zombies." -msgstr "" +msgstr "你只不过是把*每个人都想要的好东西*卖给他们,借此摆脱贫困而已,条子们竟然把你关进了监狱!可惜,丧尸不愿意买毒品。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -169943,7 +171403,7 @@ msgid "" "You've practiced parkour for many years, and made the world your playground." " It wouldn't be a lie to say that running is your life. Which is good, " "because now that the end has come, you're running FOR your life." -msgstr "" +msgstr "你已经练了很多年的跑酷,世界就是你的游乐场。当你说跑步是你的生命时并没有撒谎。这很好,因为现在世界已经终结了,你正在为逃命而奔跑。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -169957,7 +171417,7 @@ msgid "" "You've practiced parkour for many years, and made the world your playground." " It wouldn't be a lie to say that running is your life. Which is good, " "because now that the end has come, you're running FOR your life." -msgstr "" +msgstr "你已经练了很多年的跑酷,世界就是你的游乐场。当你说跑步是你的生命时并没有撒谎。这很好,因为现在世界已经终结了,你正在为逃命而奔跑。" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -169971,7 +171431,7 @@ msgid "" "This seemed like a great place for a vacation, but you're starting to regret" " ever leaving home. You came here to get a taste of New England, but New " "England keeps trying to get a taste of you!" -msgstr "" +msgstr "这里曾经是一个度假的好地方,但你开始有些后悔离家了。你本来来着是为了体验下新英格兰的风味,现在你只希望别让新英格兰尝尝你的风味了!" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -169985,7 +171445,7 @@ msgid "" "This seemed like a great place for a vacation, but you're starting to regret" " ever leaving home. You came here to get a taste of New England, but New " "England keeps trying to get a taste of you!" -msgstr "" +msgstr "这里曾经是一个度假的好地方,但你开始有些后悔离家了。你本来来着是为了体验下新英格兰的风味,现在你只希望别让新英格兰尝尝你的风味了!" #: lang/json/professions_from_json.py msgctxt "profession_male" @@ -170543,7 +172003,7 @@ msgid "" "You were about to make your biggest sale yet, but when you met the buyer he " "tried to bite you. To top it off, it seems that this wasn't some sort of " "bad high, as the whole town tried going for your throat too." -msgstr "" +msgstr "你本来打算做一笔最大的买卖,但当你遇到买家时,他却只想咬你。更重要的是,这似乎并不是他一个人吸高了,因为全城的人都想要咬断你的喉咙了。" #: lang/json/professions_from_json.py msgctxt "profession_female" @@ -170557,12 +172017,12 @@ msgid "" "You were about to make your biggest sale yet, but when you met the buyer he " "tried to bite you. To top it off, it seems that this wasn't some sort of " "bad high, as the whole town tried going for your throat too." -msgstr "" +msgstr "你本来打算做一笔最大的买卖,但当你遇到买家时,他却只想咬你。更重要的是,这似乎并不是他一个人吸高了,因为全城的人都想要咬断你的喉咙了。" #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Mafia Boss" -msgstr "" +msgstr "黑帮老大" #. ~ Profession (male Mafia Boss) description #: lang/json/professions_from_json.py @@ -170579,7 +172039,7 @@ msgstr "" #: lang/json/professions_from_json.py msgctxt "profession_female" msgid "Mafia Boss" -msgstr "" +msgstr "黑帮老大" #. ~ Profession (female Mafia Boss) description #: lang/json/professions_from_json.py @@ -170593,6 +172053,64 @@ msgid "" msgstr "" "你出身贫寒,加入一个黑手党家族谋生。在那里,你很快就走上人生巅峰,成了老大。政府原本正在针对你建立一项RICO专案,但世界末日抢先到来了。你的手下都没了,但你过去的生活让你准备好面对一个暴力为王的世界。" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "超自然调查员" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "你被本地大学取消了超心理学教授的职位,开始自己的超自然研究事业。你以前的同事不赞成你的研究,但现在看来它得到了报应。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "超自然调查员" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "你被本地大学取消了超心理学教授的职位,开始自己的超自然研究事业。你以前的同事不赞成你的研究,但现在看来它得到了报应。" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "鸟类观察家" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "大灾变发生时,你正在你最喜欢的公园里看知更鸟。现在你所拥有的只有你的双筒望远镜和许多关于当地鸟类的趣闻,可以与你所能找到的幸存者分享。" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "鸟类观察家" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "大灾变发生时,你正在你最喜欢的公园里看知更鸟。现在你所拥有的只有你的双筒望远镜和许多关于当地鸟类的趣闻,可以与你所能找到的幸存者分享。" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -175070,6 +176588,28 @@ msgid "" "ambushes." msgstr "你善于发现异常情况,例如陷阱或埋伏。" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "调试用弱点" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "部分提高命中弱点怪物弱点的几率。" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "调试用专家弱点" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "极大提高命中弱点怪物弱点的几率。" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "编线" @@ -180025,6 +181565,528 @@ msgstr "让我们在餐厅的中心建一面木板墙。" msgid "build center of the dining hall" msgstr "建造餐厅中央木板墙" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "为修建餐厅勘测土地。" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "既然我们有了庇护所,我们应该搭个壁炉来做饭,还需要拿一个锅。" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "既然我们有了庇护所,我们应该搭个火炉来做饭,还需要拿一个锅。" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "我们应该打一口井。这将使烹饪更加便捷并为菜园提供水源。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "让我们建造一些用于保存食物的烟熏架和炭窑,这能提供新的烹饪选项。" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "让我们在厨房里建两个储藏地窖。" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "建造储藏地窖" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "布置储藏室" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "让我们盖些菜园吧。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "让我们在“空闲”区域扩展菜园(如果你想将该区域用于其他用途,请停止扩展)" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "让我们安装两个盐水箱,以便开始产盐并让制皮变得更容易。" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "建造盐水箱" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "让我们在酿酒厂里装一些发酵桶吧。" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "安装发酵桶" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "让我们在酿酒厂里装一些储存架吧。" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "安装储存架" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "让我们在酿酒厂里装一台蒸馏器吧。" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "安装蒸馏器" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "让我们建造一个风车,能更有效地将面粉磨成面粉" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "建造风车" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "让我们在厨房外面建一条长凳和一个鸟池来放松一下。" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "建造长凳和鸟池" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "让我们开始建造厨房的混凝土墙。" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "建造厨房混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "让我们完成厨房的混凝土墙。" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "完成厨房混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "让我们用混凝土墙把烟熏区围起来,保护工人不受天气影响。" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "建造烟熏区混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "让我们在厨房边建一间混凝土墙储藏室。" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "建造储藏室混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "让我们开始建造餐厅的混凝土墙。" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "建造餐厅混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "让我们开始建造第二餐厅的混凝土墙。" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "建造第二餐厅混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "让我们建一间混凝土墙酿酒厂。" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "建造酿酒厂混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "让我们开始建造厨房的原木墙。" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "建造厨房原木墙" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "让我们完成厨房的原木墙。" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "完成厨房原木墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "让我们用原木墙把烟熏区围起来,保护工人不受天气影响。" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "建造烟熏区原木墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "让我们在厨房边建一间原木墙储藏室。" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "建造储藏室原木墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "让我们开始建造餐厅的原木墙。" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "建造餐厅原木墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "让我们开始建造第二餐厅的原木墙。" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "建造第二餐厅原木墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "让我们建一间原木墙酿酒厂。" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "建造酿酒厂原木墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "让我们开始建造厨房的金属墙。" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "建造厨房金属墙" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "让我们完成厨房的金属墙。" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "完成厨房金属墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "让我们用金属墙把烟熏区围起来,保护工人不受天气影响。" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "建造烟熏区金属墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "让我们在厨房边建一间金属墙储藏室。" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "建造储藏室金属墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "让我们开始建造餐厅的金属墙。" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "建造餐厅金属墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "让我们开始建造第二餐厅的金属墙。" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "建造第二餐厅金属墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "让我们建一间金属墙酿酒厂。" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "建造酿酒厂金属墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "让我们开始建造厨房的米戈树脂墙。" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "建造厨房米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "让我们完成厨房的米戈树脂墙。" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "完成厨房米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "让我们在厨房边建一间米戈树脂墙储藏室。" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "让我们开始建造餐厅的米戈树脂墙。" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "建造餐厅米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "让我们开始建造第二餐厅的米戈树脂墙。" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "建造第二餐厅米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "让我们建一间米戈树脂墙酿酒厂。" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "建造酿酒厂米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "让我们开始建造厨房的夯土墙。" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "建造厨房夯土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "让我们完成厨房的夯土墙。" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "完成厨房夯土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "让我们在厨房边建一间夯土墙储藏室。" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "让我们开始建造餐厅的夯土墙。" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "建造餐厅夯土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "让我们开始建造第二餐厅的夯土墙。" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "建造第二餐厅夯土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "让我们建一间夯土墙酿酒厂。" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "建造酿酒厂夯土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "让我们开始建造厨房的石墙。" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "建造厨房石墙" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "让我们完成厨房的石墙。" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "完成厨房石墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "让我们用石墙把烟熏区围起来,保护工人不受天气影响。" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "建造烟熏区石墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "让我们在厨房边建一间石墙储藏室。" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "建造储藏室石墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "让我们开始建造餐厅的石墙。" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "建造餐厅石墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "让我们开始建造第二餐厅的石墙。" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "建造第二餐厅石墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "让我们建一间石墙酿酒厂。" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "建造酿酒厂石墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "让我们开始建造厨房的木骨泥墙。" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "建造厨房木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "让我们完成厨房的木骨泥墙。" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "完成厨房木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "让我们用木骨泥墙把烟熏区围起来,保护工人不受天气影响。" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "建造烟熏区木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "让我们在厨房边建一间木骨泥墙储藏室。" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "建造储藏室木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "让我们开始建造餐厅的木骨泥墙。" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "建造餐厅木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "让我们开始建造第二餐厅的木骨泥墙。" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "建造第二餐厅木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "让我们建一间木骨泥墙酿酒厂。" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "建造酿酒厂木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "让我们开始建造厨房的木板墙。" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "建造厨房木板墙" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "让我们完成厨房的木板墙。" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "完成厨房木板墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "让我们在厨房边建一间木板墙储藏室。" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "让我们开始建造餐厅的木板墙。" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "建造餐厅木板墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "让我们开始建造第二餐厅的木板墙。" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "建造第二餐厅木板墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "让我们建一间木板墙酿酒厂。" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "建造酿酒厂木板墙" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "为修建农田勘测土地。" @@ -180069,6 +182131,63 @@ msgstr "建造一间加工屋应该能让我们从副产品中回收些额外的 msgid "Farm processing shack" msgstr "农作物加工间" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "整理一排耕地。" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "整理耕地" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "整理第二排耕地。" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "整理另一排耕地。" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "沿着较长的外缘竖起一道栅栏,让鹿远离庄稼。" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "竖起栅栏" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "沿着较短的外缘竖起一道栅栏,让鹿远离庄稼。" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "沿着较短的内缘竖起一道栅栏,让鹿远离庄稼。" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "沿着较长的内缘的外侧部分竖起栅栏,让鹿远离庄稼。" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "我们暂时还不打算用拖拉机重新耕地,所以在较长的内边缘内侧竖起一道栅栏。" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "建造一个篱笆大门,让我们的拖拉机能够开进耕地,来年可以用它重新耕地。" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "建造篱笆大门" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "为修建车库勘测土地。" @@ -180124,6 +182243,524 @@ msgstr "修建附属宿舍将使我们的技师在需要的时候可以工作更 msgid "Garage mechanics quarters" msgstr "车库机械师寝室" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "让我们用屋顶把两堵墙连接起来。" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "建造屋顶" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "既然我们有了庇护所,让我们为工具和零件建造一些柜台和架子,这样我们就可以使用拆车场了。" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "建造家具" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "车库足够大了。让我们建造一个篱笆大门,让我们能够与外界隔离。" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "建造外侧篱笆大门" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "让我们建造一个篱笆大门来完成车库建造,让我们能够与外界隔离。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "让我们开始建造车库的混凝土墙。" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "建造车库第一混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "让我们建造车库第二混凝土墙,以阻挡来自另一个方向的风,使车库足够宽,可以容纳两辆普通车辆或一辆超大型车辆。" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "建造车库第二混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "让我们建一堵混凝土墙,阻挡风直接吹过车库。" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "建造内侧混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "现在,我们可以处理短车了,让我们用混凝土墙扩建车库,以容纳更长的车。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "扩建第一混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "让我们用混凝土延伸第二堵墙,使之与第一堵墙相匹配。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "扩建第二混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "现在,我们可以处理长车了,让我们用混凝土墙扩建车库,以容纳更长的车,或者多辆车。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "让我们用混凝土墙把车库扩大到机库的大小,以容纳怪物卡车或大量普通车辆。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "让我们开始建造车库的原木墙。" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "建造车库第一原木墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "让我们建造车库第二原木墙,以阻挡来自另一个方向的风,使车库足够宽,可以容纳两辆普通车辆或一辆超大型车辆。" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "建造车库第二原木墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "让我们建一堵原木墙,阻挡风直接吹过车库。" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "建造内侧原木墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "现在,我们可以处理短车了,让我们用原木墙扩建车库,以容纳更长的车。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "扩建第一原木墙" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "让我们用原木延伸第二堵墙,使之与第一堵墙相匹配。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "扩建第二原木墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "现在,我们可以处理长车了,让我们用原木墙扩建车库,以容纳更长的车,或者多辆车。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "扩建第二原木墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "让我们用原木墙把车库扩大到机库的大小,以容纳怪物卡车或大量普通车辆。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "让我们开始建造车库的金属墙。" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "建造车库第一金属墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "让我们建造车库第二金属墙,以阻挡来自另一个方向的风,使车库足够宽,可以容纳两辆普通车辆或一辆超大型车辆。" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "建造车库第二金属墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "让我们建一堵金属墙,阻挡风直接吹过车库。" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "建造内侧金属墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "现在,我们可以处理短车了,让我们用金属墙扩建车库,以容纳更长的车。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "扩建第一金属墙" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "让我们用金属延伸第二堵墙,使之与第一堵墙相匹配。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "扩建第二金属墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "现在,我们可以处理长车了,让我们用金属墙扩建车库,以容纳更长的车,或者多辆车。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "让我们用金属墙把车库扩大到机库的大小,以容纳怪物卡车或大量普通车辆。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "让我们开始建造车库的米戈树脂墙。" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "建造车库第一米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "让我们建造车库第二米戈树脂墙,以阻挡来自另一个方向的风,使车库足够宽,可以容纳两辆普通车辆或一辆超大型车辆。" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "建造车库第二米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "让我们建一堵米戈树脂墙,阻挡风直接吹过车库。" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "建造内侧米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "现在,我们可以处理短车了,让我们用米戈树脂墙扩建车库,以容纳更长的车。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "扩建第一米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "让我们用米戈树脂延伸第二堵墙,使之与第一堵墙相匹配。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "扩建第二米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "现在,我们可以处理长车了,让我们用米戈树脂墙扩建车库,以容纳更长的车,或者多辆车。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "让我们用米戈树脂墙把车库扩大到机库的大小,以容纳怪物卡车或大量普通车辆。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "让我们开始建造车库的夯土墙。" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "建造车库第一夯土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "让我们建造车库第二夯土墙,以阻挡来自另一个方向的风,使车库足够宽,可以容纳两辆普通车辆或一辆超大型车辆。" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "建造车库第二夯土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "让我们建一堵夯土墙,阻挡风直接吹过车库。" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "建造内侧夯土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "现在,我们可以处理短车了,让我们用夯土墙扩建车库,以容纳更长的车。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "扩建第一夯土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "让我们用夯土延伸第二堵墙,使之与第一堵墙相匹配。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "扩建第二夯土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "现在,我们可以处理长车了,让我们用夯土墙扩建车库,以容纳更长的车,或者多辆车。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "让我们用夯土墙把车库扩大到机库的大小,以容纳怪物卡车或大量普通车辆。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "让我们开始建造车库的石墙。" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "建造车库第一石墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "让我们建造车库第二石墙,以阻挡来自另一个方向的风,使车库足够宽,可以容纳两辆普通车辆或一辆超大型车辆。" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "建造车库第二石墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "让我们建一堵石墙,阻挡风直接吹过车库。" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "建造内侧石墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "现在,我们可以处理短车了,让我们用石墙扩建车库,以容纳更长的车。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "扩建第一石墙" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "让我们用石头延伸第二堵墙,使之与第一堵墙相匹配。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "扩建第二石墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "现在,我们可以处理长车了,让我们用石墙扩建车库,以容纳更长的车,或者多辆车。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "让我们用石墙把车库扩大到机库的大小,以容纳怪物卡车或大量普通车辆。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "让我们开始建造车库的木骨泥墙。" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "建造车库第一木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "让我们建造车库第二木骨泥墙,以阻挡来自另一个方向的风,使车库足够宽,可以容纳两辆普通车辆或一辆超大型车辆。" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "建造车库第二木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "让我们建一堵木骨泥墙,阻挡风直接吹过车库。" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "建造内侧木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "现在,我们可以处理短车了,让我们用木骨泥墙扩建车库,以容纳更长的车。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "扩建第一木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "让我们用木骨泥延伸第二堵墙,使之与第一堵墙相匹配。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "扩建第二木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "现在,我们可以处理长车了,让我们用木骨泥墙扩建车库,以容纳更长的车,或者多辆车。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "让我们用木骨泥墙把车库扩大到机库的大小,以容纳怪物卡车或大量普通车辆。" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "让我们开始建造车库的木板墙。" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "建造车库第一木板墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "让我们建造车库第二木板墙,以阻挡来自另一个方向的风,使车库足够宽,可以容纳两辆普通车辆或一辆超大型车辆。" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "建造车库第二木板墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "让我们建一堵木板墙,阻挡风直接吹过车库。" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "建造内侧木板墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "现在,我们可以处理短车了,让我们用木板墙扩建车库,以容纳更长的车。" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "扩建第一木板墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "让我们用木板延伸第二堵墙,使之与第一堵墙相匹配。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "扩建第二木板墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "现在,我们可以处理长车了,让我们用木板墙扩建车库,以容纳更长的车,或者多辆车。" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "扩建第二木板墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "让我们用木板墙把车库扩大到机库的大小,以容纳怪物卡车或大量普通车辆。" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "为修建牧场勘测土地。" @@ -180328,6 +182965,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "我们需要一个马厩来养更大的牲畜,所以请在牧场西南侧建造一间带屋顶的木板小屋。" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "我们需要一道围栏来围住我们的鸡和其它禽类,所以修建一道细铁丝网围栏,以完成鸡舍区域。" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "鸡舍围栏" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "我们需要一道围栏来围住马厩,所以在牧场远端建造一道分离式围栏。" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "远端围场围栏" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "我们需要一道围栏来围住马厩,所以在牧场侧面建造一道分离式围栏。" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "侧面围场围栏" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "我们需要一道围栏来围住马厩,所以在牧场近端建造一道分离式围栏。" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "近端围场围栏" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "我们需要一间鸡舍来养我们的鸡和其它禽类,所以在牧场远端修建一间带屋顶的混凝土小屋。" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "鸡舍混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "我们需要一间仓库来储藏饲料、畜牧装备和工具,所以在牧场近端建造一间带屋顶的混凝土小屋。" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "仓库混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "我们需要一个马厩来养更大的牲畜,所以在牧场近端建造一间带屋顶的混凝土小屋。" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "马厩混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "我们需要一间更大的马厩,所以用混凝土墙来扩建马厩。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "我们需要一间更大的马厩,所以用混凝土墙来扩建两个小畜棚。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "我们需要一间鸡舍来养我们的鸡和其它禽类,所以在牧场远端修建一间带屋顶的原木小屋。" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "鸡舍原木墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "我们需要一间仓库来储藏饲料、畜牧装备和工具,所以在牧场近端建造一间带屋顶的原木小屋。" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "仓库原木墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "我们需要一个马厩来养更大的牲畜,所以在牧场近端建造一间带屋顶的原木小屋。" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "马厩原木墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "我们需要一间更大的马厩,所以用原木墙来扩建马厩。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "我们需要一间更大的马厩,所以用原木墙来扩建两个小畜棚。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "我们需要一间鸡舍来养我们的鸡和其它禽类,所以在牧场远端修建一间带屋顶的金属小屋。" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "鸡舍金属墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "我们需要一间仓库来储藏饲料、畜牧装备和工具,所以在牧场近端建造一间带屋顶的金属小屋。" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "仓库金属墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "我们需要一个马厩来养更大的牲畜,所以在牧场近端建造一间带屋顶的金属小屋。" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "马厩金属墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "我们需要一间更大的马厩,所以用金属墙来扩建马厩。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "我们需要一间更大的马厩,所以用金属墙来扩建两个小畜棚。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "我们需要一间鸡舍来养我们的鸡和其它禽类,所以在牧场远端修建一间带屋顶的米戈树脂小屋。" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "鸡舍米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "我们需要一间仓库来储藏饲料、畜牧装备和工具,所以在牧场近端建造一间带屋顶的米戈树脂小屋。" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "仓库米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "我们需要一个马厩来养更大的牲畜,所以在牧场近端建造一间带屋顶的米戈树脂小屋。" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "马厩米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "我们需要一间更大的马厩,所以用米戈树脂墙来扩建马厩。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "我们需要一间更大的马厩,所以用米戈树脂墙来扩建两个小畜棚。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "我们需要一间鸡舍来养我们的鸡和其它禽类,所以在牧场远端修建一间带屋顶的夯土墙小屋。" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "鸡舍夯土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "我们需要一间仓库来储藏饲料、畜牧装备和工具,所以在牧场近端建造一间带屋顶的夯土墙小屋。" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "仓库夯土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "我们需要一个马厩来养更大的牲畜,所以在牧场近端建造一间带屋顶的夯土墙小屋。" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "马厩夯土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "我们需要一间更大的马厩,所以用夯土墙来扩建马厩。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "我们需要一间更大的马厩,所以用夯土墙来扩建两个小畜棚。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "我们需要一间鸡舍来养我们的鸡和其它禽类,所以在牧场远端修建一间带屋顶的石头小屋。" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "鸡舍石墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "我们需要一间仓库来储藏饲料、畜牧装备和工具,所以在牧场近端建造一间带屋顶的石头小屋。" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "仓库石墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "我们需要一个马厩来养更大的牲畜,所以在牧场近端建造一间带屋顶的石头小屋。" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "马厩石墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "我们需要一间更大的马厩,所以用石墙来扩建马厩。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "我们需要一间更大的马厩,所以用石墙来扩建两个小畜棚。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "我们需要一间鸡舍来养我们的鸡和其它禽类,所以在牧场远端修建一间带屋顶的木骨泥墙小屋。" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "鸡舍木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "我们需要一间仓库来储藏饲料、畜牧装备和工具,所以在牧场近端建造一间带屋顶的木骨泥墙小屋。" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "仓库木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "我们需要一个马厩来养更大的牲畜,所以在牧场近端建造一间带屋顶的木骨泥墙小屋。" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "马厩木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "我们需要一间更大的马厩,所以用木骨泥墙来扩建马厩。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "我们需要一间更大的马厩,所以用木骨泥墙来扩建两个小畜棚。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "我们需要一间鸡舍来养我们的鸡和其它禽类,所以在牧场远端修建一间带屋顶的木板小屋。" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "鸡舍木板墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "我们需要一间仓库来储藏饲料、畜牧装备和工具,所以在牧场近端建造一间带屋顶的木板小屋。" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "仓库木板墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "我们需要一个马厩来养更大的牲畜,所以在牧场近端建造一间带屋顶的木板小屋。" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "马厩木板墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "我们需要一间更大的马厩,所以用木板墙来扩建马厩。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "我们需要一间更大的马厩,所以用木板墙来扩建两个小畜棚。" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "为修建盐场勘测土地。" @@ -181022,6 +184035,652 @@ msgstr "在外面建一些长椅听起来挺好的,在西南侧建一些吧。 msgid "benches, southwest" msgstr "长椅(西南)" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "放置12个书架组成半条仓库走廊。(2000L容量,内容物远处可见,阻挡视线)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "A区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "B区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "C区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "D区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "E区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "F区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "G区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "H区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "I区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "J区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "K区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "L区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "M区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "N区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "O区书架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "P区书架" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "仓库选址" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "我们需要一间大型仓库。让我们从建造混凝土墙开始。" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "仓库混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "让我们建造另一段混凝土墙来扩建仓库。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" +"让我们用混凝土墙来完成我们的仓库。如果我们真的想,我们可以继续增加一倍的容量,但既然我们现在用那些空间来作为战利品卸载区,这是不是有些极端了?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "我们想储存一切!让我们从建造混凝土墙开始,把仓库的容量扩大一倍。" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "放置12个衣柜组成半条仓库走廊。(2000L容量,内容物远处隐藏,不阻挡视线)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "A区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "B区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "C区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "D区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "E区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "F区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "G区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "H区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "I区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "J区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "K区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "L区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "M区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "N区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "O区衣柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "P区衣柜" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "放置12个锁柜组成半条仓库走廊。(2000L容量,内容物远处隐藏,阻挡视线)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "A区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "B区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "C区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "D区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "E区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "F区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "G区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "H区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "I区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "J区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "K区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "L区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "M区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "N区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "O区锁柜" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "P区锁柜" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "我们需要一间大型仓库。让我们从建造原木墙开始。" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "仓库原木墙" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "让我们建造另一段原木墙来扩建仓库。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" +"让我们用原木墙来完成我们的仓库。如果我们真的想,我们可以继续增加一倍的容量,但既然我们现在用那些空间来作为战利品卸载区,这是不是有些极端了?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "我们想储存一切!让我们从建造原木墙开始,把仓库的容量扩大一倍。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "我们需要一间大型仓库。让我们从建造金属墙开始。" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "仓库金属墙" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "让我们建造另一段金属墙来扩建仓库。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" +"让我们用金属墙来完成我们的仓库。如果我们真的想,我们可以继续增加一倍的容量,但既然我们现在用那些空间来作为战利品卸载区,这是不是有些极端了?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "我们想储存一切!让我们从建造金属墙开始,把仓库的容量扩大一倍。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "我们需要一间大型仓库。让我们从建造米戈树脂墙开始。" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "仓库米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "让我们建造另一段米戈树脂墙来扩建仓库。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" +"让我们用米戈树脂墙来完成我们的仓库。如果我们真的想,我们可以继续增加一倍的容量,但既然我们现在用那些空间来作为战利品卸载区,这是不是有些极端了?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "我们想储存一切!让我们从建造米戈树脂墙开始,把仓库的容量扩大一倍。" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "放置12个展架组成半条仓库走廊。(1750L容量,内容物远处可见,不阻挡视线)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "A区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "B区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "C区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "D区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "E区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "F区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "G区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "H区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "I区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "J区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "K区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "L区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "M区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "N区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "O区展架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "P区展架" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "我们需要一间大型仓库。让我们从建造夯土墙开始。" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "仓库夯土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "让我们建造另一段夯土墙来扩建仓库。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" +"让我们用夯土墙来完成我们的仓库。如果我们真的想,我们可以继续增加一倍的容量,但既然我们现在用那些空间来作为战利品卸载区,这是不是有些极端了?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "我们想储存一切!让我们从建造夯土墙开始,把仓库的容量扩大一倍。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "我们需要一间大型仓库。让我们从建造石墙开始。" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "仓库石墙" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "让我们建造另一段石墙来扩建仓库。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "让我们用石墙来完成我们的仓库。如果我们真的想,我们可以继续增加一倍的容量,但既然我们现在用那些空间来作为战利品卸载区,这是不是有些极端了?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "我们想储存一切!让我们从建造石墙开始,把仓库的容量扩大一倍。" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "我们需要一间大型仓库。让我们从建造木骨泥墙开始。" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "仓库木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "让我们建造另一段木骨泥墙来扩建仓库。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" +"让我们用木骨泥墙来完成我们的仓库。如果我们真的想,我们可以继续增加一倍的容量,但既然我们现在用那些空间来作为战利品卸载区,这是不是有些极端了?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "我们想储存一切!让我们从建造木骨泥墙开始,把仓库的容量扩大一倍。" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "放置12个仓库货架组成半条仓库走廊。(3500L容量,内容物远处可见,阻挡视线)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "A区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "B区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "C区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "D区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "E区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "F区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "G区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "H区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "I区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "J区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "K区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "L区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "M区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "N区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "O区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "P区仓库货架" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "我们需要一间大型仓库。让我们从建造木板墙开始。" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "仓库木板墙" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "让我们建造另一段木板墙来扩建仓库。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" +"让我们用木板墙来完成我们的仓库。如果我们真的想,我们可以继续增加一倍的容量,但既然我们现在用那些空间来作为战利品卸载区,这是不是有些极端了?" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "我们想储存一切!让我们从建造木板墙开始,把仓库的容量扩大一倍。" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "放置12个木架组成半条仓库走廊。(1500L容量,内容物远处可见,不阻挡视线)" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "A区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "B区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "C区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "D区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "E区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "F区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "G区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "H区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "I区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "J区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "K区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "L区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "M区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "N区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "O区木架" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "P区木架" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "为修建工坊勘测土地。" @@ -181287,61 +184946,370 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "让我们用墙壁围住这个砖窑并且添加更多的储存区域。" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." -msgstr "整理一排耕地。" +msgid "Survey land for a workshop area." +msgstr "为修建工坊勘测土地。" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" -msgstr "整理耕地" +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." +msgstr "让我们在工坊里安装一个金属熔炉。我们还需要一些工具,所以我们将建造一间仓库。这将为我们提供一些基础的制造配方。" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." -msgstr "整理第二排耕地。" +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." +msgstr "让我们在工坊外面安装两个炭窑。我们还要加一个坩埚。这将让我们能生产一些新东西。" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." -msgstr "整理另一排耕地。" +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." +msgstr "让我们在工坊里安装一个铁砧,淬火容器和工作台。这将让我们能生产一些新东西。" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." -msgstr "沿着较长的外缘竖起一道栅栏,让鹿远离庄稼。" +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." +msgstr "让我们给工坊添些家具和工具吧。这将让我们能生产一些新东西。" #: lang/json/recipe_from_json.py -msgid "erect a fence" -msgstr "竖起栅栏" +msgid "smithing tools" +msgstr "铸造工具" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." -msgstr "沿着较短的外缘竖起一道栅栏,让鹿远离庄稼。" +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." +msgstr "我们来给熔炉装一个风箱,并增添更多的工具。这将扩展我们的制造配方。" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." -msgstr "沿着较短的内缘竖起一道栅栏,让鹿远离庄稼。" +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "让我们为工坊添加一台落锤,以提高生产率,并添加更多工具。这将使我们能够完全发挥我们的锻造潜力。" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "让我们来布置砖窑。" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "砖窑家具" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "让我们布置一下玻璃工坊小屋。" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" +msgstr "玻璃工坊家具" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." -msgstr "沿着较长的内缘的外侧部分竖起栅栏,让鹿远离庄稼。" +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "让我们在砖窑外面加一条长凳和一个火桶来放松一下。" + +#: lang/json/recipe_from_json.py +msgid "recreation area" +msgstr "休息区" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." -msgstr "我们暂时还不打算用拖拉机重新耕地,所以在较长的内边缘内侧竖起一道栅栏。" +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "我们需要用混凝土建造一个工坊。先修建一处给工人避雨的地方吧。" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" +msgstr "工坊混凝土墙" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." -msgstr "建造一个篱笆大门,让我们的拖拉机能够开进耕地,来年可以用它重新耕地。" +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." +msgstr "让我们用混凝土墙建造一个屋顶,以保护未来的炭窑免受雨淋。" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" -msgstr "建造篱笆大门" +msgid "concrete kiln protection" +msgstr "炭窑混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "让我们建造工坊的最后一面混凝土墙。" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "完成工坊混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "让我们开始建造砖窑的混凝土墙。" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" +msgstr "砖窑混凝土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "我们需要用原木建造一个工坊。先修建一处给工人避雨的地方吧。" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" +msgstr "工坊原木墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." +msgstr "让我们用原木墙建造一个屋顶,以保护未来的炭窑免受雨淋。" + +#: lang/json/recipe_from_json.py +msgid "log kiln protection" +msgstr "炭窑原木墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "让我们建造工坊的最后一面原木墙。" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "完成工坊原木墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "让我们开始建造砖窑的原木墙。" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "砖窑原木墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "我们需要用金属建造一个工坊。先修建一处给工人避雨的地方吧。" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "工坊金属墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "让我们用金属墙建造一个屋顶,以保护未来的炭窑免受雨淋。" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "炭窑金属墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "让我们建造工坊的最后一面金属墙。" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "完成工坊金属墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "让我们开始建造砖窑的金属墙。" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "砖窑金属墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "我们需要用米戈树脂建造一个工坊。先修建一处给工人避雨的地方吧。" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "工坊米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "让我们用米戈树脂墙建造一个屋顶,以保护未来的炭窑免受雨淋。" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "炭窑米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "让我们建造工坊的最后一面米戈树脂墙。" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "完成工坊米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "让我们开始建造砖窑的米戈树脂墙。" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "砖窑米戈树脂墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "我们需要用夯土墙建造一个工坊。先修建一处给工人避雨的地方吧。" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "工坊夯土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "让我们用夯土墙建造一个屋顶,以保护未来的炭窑免受雨淋。" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "炭窑夯土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "让我们建造工坊的最后一面夯土墙。" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "完成工坊夯土墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "让我们开始建造砖窑的夯土墙。" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "砖窑夯土墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "我们需要用石头建造一个工坊。先修建一处给工人避雨的地方吧。" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "工坊石墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "让我们用石墙建造一个屋顶,以保护未来的炭窑免受雨淋。" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "炭窑石墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "让我们建造工坊的最后一面石墙。" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "完成工坊石墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "让我们开始建造砖窑的石墙。" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "砖窑石墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "我们需要用木骨泥建造一个工坊。先修建一处给工人避雨的地方吧。" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "工坊木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "让我们用木骨泥墙建造一个屋顶,以保护未来的炭窑免受雨淋。" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "炭窑木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "让我们建造工坊的最后一面木骨泥墙。" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "完成工坊木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "让我们开始建造砖窑的木骨泥墙。" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "砖窑木骨泥墙" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "我们需要用木板墙建造一个工坊。先修建一处给工人避雨的地方吧。" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "工坊木板墙" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "让我们用木板墙建造一个屋顶,以保护未来的炭窑免受雨淋。" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "炭窑木板墙" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "让我们建造工坊的最后一面木板墙。" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "完成工坊木板墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "让我们开始建造砖窑的木板墙。" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "砖窑木板墙" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "让我们用木板墙建造一座玻璃工坊小屋。" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" +msgstr "玻璃工坊木板墙" #: lang/json/recipe_from_json.py msgid "Buttery Duck Bites" @@ -182175,8 +186143,12 @@ msgid "Mansion Garden With Columns Base" msgstr "别墅基地(石柱花园)" #: lang/json/recipe_group_from_json.py -msgid "Canteen" -msgstr "餐厅" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "餐厅版本1。提供烹饪配方,火炉、水井、储藏地窖" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" +msgstr "餐厅版本2。在版本1的基础上加上了蒸馏器、风车以及更多菜园" #: lang/json/recipe_group_from_json.py msgid "Farm version 1. Shed, plots, some farming recipes" @@ -182187,25 +186159,45 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "农场版本2。只有耕地、围栏(可选的供拖拉机出入的大门),无法制造" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "车库" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "车库版本1。适合大小合理的车辆,周围有自由空间" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "车库版本2。最大宽度、两车道大小、三种不同长度" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "牧场版本1。布局有足够的自由空间" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" -msgstr "牧场区" +msgid "Livestock Area version 2. More stalls than version 1, less free space" +msgstr "牧场版本2。畜棚更多,自由空间更少" #: lang/json/recipe_group_from_json.py msgid "Saltworks Area" msgstr "盐场区域" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" -msgstr "中央区仓库" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "仓库版本1。不错的建筑,有很多自由空间" + +#: lang/json/recipe_group_from_json.py +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "仓库版本2。专注于存储功能。仅能放置在正北、正东、正南、正西" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" +msgstr "工坊版本1。漂亮的工坊小屋" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" -msgstr "工坊" +msgid "Fabrication Workshop version 2. More detailed recipe progression" +msgstr "工坊版本2。更细化的配方发展路线" #: lang/json/recipe_group_from_json.py msgid "Light Industry Workshop" @@ -182367,6 +186359,62 @@ msgstr "下载:IC数据库到U盘" msgid " Hack & Download: Satellite Map, sketch" msgstr "下载:卫星地图到手绘地图" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "制造:陶罐" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "制造:陶坩埚" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "制造:耐火砖" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "制造:陶弹丸" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "制造:平口钳" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "制造:热切凿" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "制造:猎刀" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "制造:销冲头" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "制造:玻璃瓶" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "制造:玻璃烧瓶" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "制造:玻璃片" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "制造:3L玻璃罐" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "制造:玻璃罐" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "制造:钢化玻璃片" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "野营基地" @@ -184544,6 +188592,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "以一个超越阈值的树人身份开始游戏。" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "变种人-兔人" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "变种人-兔人" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "以一个超越阈值的兔人身份开始游戏。" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "以一个超越阈值的兔人身份开始游戏。" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -184859,7 +188933,7 @@ msgid "" "objects." msgstr "把材料加工塑造成有用物品的技能。这项技能在各项物品制造中起着重要的作用。" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "食品加工" @@ -185599,9 +189673,9 @@ msgstr "如果你看到一大群丧尸向你袭来,赶紧跑!" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." -msgstr "当你被众多的丧尸追得屁滚尿流的时候,可以试着躲到下水道,过了一两个街区,就又是一条好汉。" +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." +msgstr "当你被尸群追得屁滚尿流的时候,可以试着躲到下水道,过了一两个街区,就又是一条好汉。" #: lang/json/snippet_from_json.py msgid "" @@ -186377,16 +190451,17 @@ msgstr "我一直反对使用毒品,直到有次我被尸潮追杀时,差点 #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." -msgstr "不知道迈克的心智还正不正常。他有一次倒霉地把车开进了一所学校里。那段经历可不仅仅对他的身体造成了打击。" +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." +msgstr "我认识一位小学老师,他杀出了一条血路逃离学校。他不得不杀死十几个发疯的孩子。我无法想象这会对一个人造成什么影响。" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." -msgstr "一点关于炸药的想法。如果你还跑的动,而且它还没炸,再跑远一点。你和点燃的炸药之间永远没有所谓的“多余空间”。" +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." +msgstr "关于炸药的思考:如果你还能跑,而炸药还没有引爆,那就再跑远一些。在处理手榴弹时,再谨慎也不过分。" #: lang/json/snippet_from_json.py msgid "Avoid using launchers in narrow hallways, you might miss." @@ -191562,6 +195637,272 @@ msgid "" "then come back to life in ragged succession." msgstr "当你抬头看星星时,一大片星星陷入了黑暗之中,然后又纷纷不断地重新亮起来。" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "有一瞬间,你仿佛看到天空中有一个小岛。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "有一瞬间,太阳变得血红,好像滴下了什么东西。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "有一瞬间,你仿佛看到远处有座像山那么大的建筑物。" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "有一瞬间,你仿佛置身于半透明的人群之中。而他们没有注意到你。" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "你看到一架小飞机在低空中飞行,但它在朝后飞,上面有面你不认识的旗帜。" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "你眼前所见到的阴影都开始旋转,就好像太阳在移动一样。" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "有一瞬间,你仿佛看到天空中有条看起来像岛链的东西。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "有一瞬间,太阳变暗了,仿佛就像一只巨大的眼睛在眨眼。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "有一瞬间,你仿佛看到远处有只像山那么大的昆虫。" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "有一瞬间,你仿佛置身于半透明的人群之中。而他们都盯着你看。" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "你看到一架大飞机在低空中飞行,但它在朝后飞,上面挂着国旗的反色版本。" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "你眼前所见到的阴影都改变了形状和颜色,开始变得像人一样。" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "有一瞬间,你仿佛看到天空中有个城市。" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "有一瞬间,太阳转向北方并加速。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "有一瞬间,你仿佛看到远处有只像山那么大的人像。" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "有一瞬间,你仿佛置身于半透明的人群之中。他们都指着你,用一种刺耳的语言尖叫,人类的声带应该发不出那么高的音。" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "你看到一架大飞机在低空中飞行,但它在朝后飞。一个降落伞出现在它的附近,人影不断挣扎,它似乎又回到了飞机上。" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "你眼前所见到的阴影都改变了形状和颜色,开始变得像人一样,无数肢体向你招手,让你加入它们。" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "你闻到一种难闻的化学气味,但找不到源头。" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "你的头发竖立着,一股微弱的电流刺痛感笼罩着你。" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "一个巨大的洞在天空中打开,几朵云彩消失在其中。" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "一个巨大的洞在天空中打开,几朵乌云从中冒出来。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "有一瞬间,世界变得朦胧起来,如同有其他形状的东西叠加在上面一般。" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "有一瞬间,现实空间中打开了一个洞,你可以从中看到自己的背影。" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "有一瞬间,所有的颜色都变得暗淡了。" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "有一瞬间,所有的距离似乎都缩小了。" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "一个身材矮小的人影突然出现又消失了,让你分辨不出它的五官。" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "你闻到了一股全新的气味,和你以前闻到任何东西都不同。你无法确定这是好是坏。" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "你的头发竖立着,一股电流刺痛感笼罩着你。" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "一个巨大的洞在天空中打开,几朵霓虹云从中冒出来。" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "一个看起来像眼睛的大洞在天空中打开,然后闭上,好像在眨眼。" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "有一瞬间,世界仿佛被一个巨大的虚空所覆盖。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "有一瞬间,世界仿佛被一个小小的、毫无特色的圆形房间所覆盖。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "有一瞬间,世界仿佛被一片巨大的外星地貌所覆盖,周围都是楼房大小的植物形状。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "有一瞬间,世界仿佛被一座空无一人、破败不堪的城市所覆盖,尽管其建造方式与地球上的大不相同。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "有一瞬间,现实空间中打开了一个洞,你可以从中看到一个几乎完美的你自己。" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "有一瞬间,所有的颜色都反色了。" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "有一瞬间,所有的距离似乎都翻倍了。" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "一个高大的人影突然出现又消失了,给你留下了一种隐约的恶意印象。" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "你闻到了一股全新的气味,和你以前闻到任何东西都不同。它让你恶心。" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "你的头发竖立着,一股强烈的电流刺痛感笼罩着你。" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "一个锯齿形的洞在天空中打开,一片巨大的云以不对称的人的形状出现。" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "一个像眼睛的锯齿形的洞在天空中打开,然后凝视着你。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "有一瞬间,世界仿佛消失了,而你在一个巨大的虚空之中。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "有一瞬间,世界仿佛消失了,而你在一间小小的、毫无特色的圆形房间里。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "有一瞬间,世界仿佛消失了,而你身处巨大的外星地貌,周围都是楼房大小的植物形状。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "有一瞬间,世界仿佛消失了,而你身处一座空无一人、破败不堪的城市,尽管其建造方式与地球上的大不相同。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "有一瞬间,现实空间中打开了一个洞,你可以从中看到一个邪笑着的理想化的你自己。" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "有一瞬间,所有的颜色流动变成碎片。" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "有一瞬间,所有的距离似乎都消失了,仿佛一切都是一个整体。有些幽闭恐怖症。" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "一个高大的人影突然出现又消失了,它一直盯着你,指着你。" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -191570,7 +195911,7 @@ msgstr "列车早已停运,只有你回响的脚步声打破了寂静。暂时 #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "这里的铁轨十分光滑,下面涌出一层灰色、不停颤动的软泥。" #: lang/json/snippet_from_json.py @@ -191689,7 +196030,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "墙上铺满了绿灰色的蘑菇,它们的菌帽充满期待地朝你转过来。" @@ -196737,7 +201078,7 @@ msgstr "一块从高度变异动物身上取下的肺脏组织。呼吸道上排 msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" "一块被煮熟的来自高度变异动物的肺脏。你花费了大量精力围着坚硬的半透明粘液外壳周围切割开,但你所得到的唯一回报是下面海绵状、灰色、几乎无味的组织。" @@ -196803,7 +201144,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" "一大块从高度变异动物身上取下的肝脏。表面坚硬发黑,但布满了裂缝,露出下面几条新鲜的粉红色组织。在完全打开外壳后,内部组织开始以惊人的速度膨胀,然后变灰,像死了一般。" @@ -196818,7 +201159,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -196838,7 +201179,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" @@ -196846,10 +201187,10 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" "一块从高度变异动物身上取下的肾脏。你的刀子在切开它时打滑了,在它的侧面开了一个大口子,从这个口子里滚出许多美丽的小珍珠。在你的眼前,它们开始因潮湿而融化且闪闪发光,除了刺鼻的臭味之外,没有留下任何痕迹。" @@ -196934,7 +201275,7 @@ msgstr "从巨大的变异昆虫身上切下的一个长长的绳索状器官。 #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -197047,8 +201388,8 @@ msgstr "你的动作惊扰了那些仍然藏匿在怪物关节内的寄生虫, #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "你在整个尸体上发现了均匀分布地处于不同生长阶段的小囊卵" #: lang/json/snippet_from_json.py @@ -197457,7 +201798,7 @@ msgstr "" "它躯干上混乱的器官体看起来很像其他变异的昆虫,但当你靠近腹部时,就逐渐变得疯狂起来:一排排排相对整齐的充满毒液的腺体,每一个都流入毒刺底部的一个储液罐" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "你切开了一个胃囊,喷射出一股芳香的灰色液体" #: lang/json/snippet_from_json.py @@ -197467,9 +201808,9 @@ msgstr "因为它对鲜肉的明显渴望,它的内脏几乎都萎缩了" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" -msgstr "你的刀尖抵达了缩起的毒刺,在它光滑的表面滑动,在这个过程中切开了许多毒腺。你没有割到自己吧?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" +msgstr "你的刀尖抵达了缩起的毒刺,在它光滑的表面滑动,在这个过程中切开了许多毒腺。你真希望你没有割伤自己" #: lang/json/snippet_from_json.py msgid "" @@ -199017,6 +203358,68 @@ msgid "" "being stuck in an office job." msgstr "你从噩梦中惊醒过来,梦中大灾变没有发生,而你被困在一个办公室中当着文员。" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "你喜欢猫还是狗?" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "丧尸不会感到疼痛,可真好。" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "不管我们到哪里,至少我们还活着,对吗?" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "不知怎么的,我想我没法很快回去干我以前的工作了……" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "天啊,这可一点都不像好莱坞的丧尸电影!" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "你有没有想过杀死丧尸的伦理标准?" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "所以你先涂牙膏,然后再把牙刷弄湿?真奇怪。" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "你觉得总统现在在做什么?" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "你喜欢听什么音乐?就我而言,我喜欢重低音华丽摇滚快速波尔卡。" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "不要告诉别人,但有时我喜欢抱着我的泰迪熊睡觉。" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "有时候晚上我会在天空中看到奇怪的东西。" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "我曾经养过一只猫。我真的很想念抱抱先生……" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "我和我的朋友过去常扮演警匪故事,但没丧尸。没想到我会亲身经历它……" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "你有没有想过我们这一切都是模拟器?" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -201334,7 +205737,7 @@ msgstr "快让我杀点什么东西吧!" msgid "I'm your best friend, right?" msgstr "我是你最好的朋友,没错吧?" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "我爱你!" @@ -202026,6 +206429,118 @@ msgstr "你真的让我生气了……" msgid "You hate this loud sound." msgstr "你很讨厌这种尖利的响声。" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "你以前也有一条长成这样的狗狗……" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "哈哈!一张不错的猫咪照片。" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "精彩的自然风光照片。" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "食物的照片……你的胃咕咕直叫!" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "一些非常有趣的旅行照片。" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "流行乐队演唱会的现场照片。" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "某座华丽豪宅的照片。" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "你盯着照片,开始怀旧。" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "确定无疑。" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "毫无疑问是这样的。" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "毫无疑问。" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "是的,确实如此。" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "你可以放心。" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "在我看来,就是如此。" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "极有可能是这样的。" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "占卜结果很好。" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "是。" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "一切迹象都表明是这样的。" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "结果很模糊,再试一次吧。" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "稍后再试试吧。" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "最好现在别告诉你。" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "现在无法预测。" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "集中精神在试一次。" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "别做梦了。" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "结果是不。" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "占卜结果是不。" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "占卜结果不那么乐观。" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "很值得怀疑。" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -202044,6 +206559,21 @@ msgstr "\"我们会挺过去的!\"" msgid "\"i'm here for you!\"" msgstr "\"我一直都在你身边!\"" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "\"哇哦!你跟我长得一模一样!我们应该互相照顾!\"" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "\"来吧,大一号的我,出发!\"" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "\"我们是一伙的,没错!\"" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "“我们是对的,这一切都是政府干的!”" @@ -203215,6 +207745,86 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "\"⋯生物发光,直径约5英尺⋯,似乎是一个巨大的脱离肉体的眼球,能够飞行而且拥有[难以辨认]思想\"" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "“煮开水有什么大不了的?雨水是自然蒸馏的!非常安全,如果你不煮开水的话可以节省很多时间。我喝了些河水,我好得很!”" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" +"“去了紧急避难所,有些人进来了,有些走出去了,抓起一块石头,把一张长凳砸成碎片,用它在木板上刻了些东西,然后又走了出来。三天没见他们了……想知道他们有些什么故事。”" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" +"这张纸条上满是灰色的粘液,呃……“我知道我性癖不正常,但这也太过分了。我的手变成了粘液。我的头发是粘液。我的身体被粘液覆盖。我甚至不能用撬棍,因为全是粘液。无论我走到哪里,我都会留下粘液痕迹。一切都是粘液。我的背包又从我的背上掉到粘液里去了。”" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "笔记本上撕下来的一页,带有摩尔斯电码表和解码出来的信息:“威士忌回声威士忌-利马阿尔法德尔塔(注:WEW-LAD)”" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "“看看你想不想,变得更烦人,点个头儿,扔了就走,救命,艾琳去挖,最后一,块了”" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "“我在大街上看到一个美食广场的员工。老实说,他们活着和死了没什么两样。”" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "“不要去辐照厂!炮塔袭击了我,我的卡车现在看起来像瑞士奶酪。我得在路边呆上几个小时,收拾这堆乱七八糟的东西。”" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "“我可以想象人们在社交媒体上表达他们的‘爱和祈祷’。爱不会杀死丧尸,祈祷不会把食物放进我的肚子。”" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "“我过去总是按面值来衡量一切。如果你不能测量它,不能解释它,不能给它一个数字,它就不是真的。然后这狗屎就发生了。真有趣。”" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "这张纸条上覆盖着灰色的粘液,呃……“Blorble”" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "“在森林里看到个妞。她的身体全是绿色的狗屎,浑身长满了树叶和藤蔓。”" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "“好消息:我的老师们并没有因为我的家庭作业而把我的四肢撕下来。坏消息:我的老师们正在不顾一切地把我的四肢撕下来。”" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -205765,6 +210375,14 @@ msgstr "\"这只个棕色和品红的四条腿的幼龙到底是什么?!他 msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "\"我今天看到了最漂亮的恐龙。我必须给她穿衣服。\"" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" +"“我看到了一只恐龙,我当时就哇了一声。然后我看到了另一只恐龙,我当时就哇~~了!然后我又看到了另一只恐龙,我当时就叫到戈尔冈龙~~!就像真的一样。”" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -205885,6 +210503,26 @@ msgid "" "time." msgstr "阿隆索不认识她,但她美丽而威严,她理应得到应有的安葬。阿隆索会偶尔缅怀这只恐龙的。" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" +"我刚刚从我们的首席巫师联络官雅各布那里得到消息。他现在情绪稍微好点了,之前哭了好几个小时,似乎所有的中央实验室都沦陷了。亡灵巫师们终于联合起来准备把我们干掉吗?他们的计划是什么?" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" +"昨天,本地巫师执法者格雷戈里·汉密尔顿在本地购物区发狂了。作为纽约雪城最强大的法师,因此他将整个地区变成一个冒烟的大坑并不奇怪。国民警卫队出动了狙击手小队和5架直升机才将他击毙。具体伤亡人数不详,但目前初步估计为15000人,而且还在上升。" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -205923,6 +210561,13 @@ msgstr "" "\n" "山铜主要是一种铜基合金,但其制作工艺因人而异,涉及的微量金属和具体程序也各不相同。虽然它的强度远不及钢,但它更耐腐蚀以及普通磨损(有人说这是因为它更愿意保持原始形态)。虽然存在传统古代魔法力量之剑,但许多共识都是基于前工业化时代的人在墓穴中以及类似状态下所发现的山铜武器。那么,为什么我们在工业环境中不使用山铜呢?问题在于,如果没有按照正确步骤锻造,其中所蕴含的魔能会逐渐消散。对于大多数失败品而言,它将以分钟为单位转变(实际上这从一开始就称不上是山铜),但有显著失败风险的时间至少有30年,这意味着成品必须像葡萄酒一样“陈酿”才能被视为真正的山铜。尽管比从头开始锻造要容易一些,但重新锻造现有的山铜也会带来同样的问题,从而阻碍了它的工业化生产,并限制了它的制造用途。你可以在旧盔甲和武器中找到它,也可以在昂贵的传家宝餐具中找到它。现在仍然有一个由爱好者和工匠大师组成的活跃社区,但山铜和许多其他魔法现象一样,整体而言并不适合我们这个现代社会。”" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "这里的购物中心发生了暴乱。我唯一的解释是,某个白痴正在试验某种集体狂暴法术。这类法术被列为军事机密是有*原因*的……" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -207434,7 +212079,7 @@ msgstr "一个活泼的声音说:\"顾客朋友?我们永远都是朋友, #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "一个无感情的声音说:\"顾客,很抱歉通知您,分配给您的服务时间即将结束。\"" @@ -207604,19 +212249,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "\"警察来了,待在原地!\"" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "自然的裂纹声。" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "一声清脆高亢的嗡嗡声。" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "电流的嗡嗡声。" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "低沉的嗡嗡声。" #: lang/json/speech_from_json.py @@ -207689,128 +212334,132 @@ msgid "" msgstr "“美食广场是获得健康和强大的生活周期选择的唯一途径!!”" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "想和我一起玩吗?" +msgid "\"Wanna play with me?\"" +msgstr "\"想和我一起玩吗?\"" #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "和我一起唱!" +msgid "\"Sing with me!\"" +msgstr "\"和我一起唱吧!\"" #: lang/json/speech_from_json.py -msgid "Please take me with you!" -msgstr "请带我走!" +msgid "\"I love you!\"" +msgstr "\"我爱你!\"" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "我可以吃块小甜饼吗?" +msgid "\"Please take me with you!\"" +msgstr "\"请带我走吧!\"" #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "一起来玩吧!" +msgid "\"May I have a cookie?\"" +msgstr "\"我可以吃块饼干吗?\"" #: lang/json/speech_from_json.py -msgid "Time to play!" -msgstr "游戏时间到!" +msgid "\"Let's play together!\"" +msgstr "\"一起来玩吧!\"" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" -msgstr "哦哦哦!很美味!" +msgid "\"Time to play!\"" +msgstr "\"游戏时间到!\"" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" -msgstr "你是我妈咪吗?" +msgid "\"Om nom nom! Delicious!\"" +msgstr "\"嗷呜嗷呜!很美味!\"" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" -msgstr "噢,真好玩!" +msgid "\"Are you my mommy?\"" +msgstr "\"你是妈妈吗?\"" #: lang/json/speech_from_json.py -msgid "You're my best friend!" -msgstr "你是我最好的朋友!" +msgid "\"Oh, how fun!\"" +msgstr "\"噢,真好玩!\"" #: lang/json/speech_from_json.py -msgid "Heehee!" -msgstr "嘿~嘿~!" +msgid "\"You're my best friend!\"" +msgstr "\"你是我最好的朋友!\"" #: lang/json/speech_from_json.py -msgid "Let's have fun!" -msgstr "让我们找点乐子!" +msgid "\"Heehee!\"" +msgstr "\"哈哈哈!\"" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" -msgstr "让我们开个茶会!" +msgid "\"Let's have fun!\"" +msgstr "\"让我们找点乐子吧!\"" #: lang/json/speech_from_json.py -msgid "You're the best!" -msgstr "你是最好的!" +msgid "\"Let's have a tea party!\"" +msgstr "\"让我们开个茶会吧!\"" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." -msgstr "你不应该那样做。" +msgid "\"You're the best!\"" +msgstr "\"你最棒了!\"" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." -msgstr "让我们来玩……俄罗斯轮盘赌。" +msgid "\"You shouldn't have done that.\"" +msgstr "\"你不应该那样做。\"" #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "我恨你。" +msgid "\"Let's play… Russian roulette.\"" +msgstr "\"让我们来玩……俄罗斯轮盘赌。\"" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" -msgstr "自生自灭吧!" +msgid "\"I hate you.\"" +msgstr "\"我恨你。\"" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" -msgstr "老大哥正在看着你……" +msgid "\"Go kill yourself!\"" +msgstr "\"去死吧!\"" #: lang/json/speech_from_json.py -msgid "Die for me!" -msgstr "给我死吧!" +msgid "\"Big Brother is watching you…\"" +msgstr "\"老大哥正在看着你……\"" #: lang/json/speech_from_json.py -msgid "Why won't you die?" -msgstr "你为什么不去死?" +msgid "\"Die for me!\"" +msgstr "\"给我死吧!\"" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." -msgstr "鲜血……真美味。" +msgid "\"Why won't you die?\"" +msgstr "\"你为什么不去死?\"" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" -msgstr "地狱……里见!" +msgid "\"Blood… Delicious.\"" +msgstr "\"鲜血……真美味。\"" + +#: lang/json/speech_from_json.py +msgid "\"See you… IN HELL!\"" +msgstr "\"下地狱……去吧!\"" #: lang/json/speech_from_json.py msgid "AAAIEEEEEEE!" msgstr "啊啊啊诶诶诶诶!" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" -msgstr "操你妈!" +msgid "\"FUCK YOU!\"" +msgstr "\"操你妈!\"" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" -msgstr "你把我妈咪怎么了?" +msgid "\"What did you do with my Mommy?\"" +msgstr "\"你把我妈妈怎么了?\"" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" -msgstr "永远……与我在一起吧!" +msgid "\"Stay with me… forever!\"" +msgstr "\"永远……与我在一起吧!\"" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "嗨,小屁孩,这里有糖,想要不?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "\"嗨,小孩,这里有糖,想要不?\"" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" -msgstr "在这儿,它们都 漂 着!" +msgid "\"Down here, they ALL float!\"" +msgstr "\"在这儿,它们~全都~漂着!\"" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" -msgstr "你真的需要那么多蜂蜜?" +msgid "\"Do you really need that much honey?\"" +msgstr "\"你真的需要那么多吗,甜心?\"" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" -msgstr "在我取出上一个主人的内脏的时候,她像猪一样尖叫!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" +msgstr "\"在我把上个主人开膛破肚的时候,她叫得像猪一样!\"" #: lang/json/speech_from_json.py msgid "BARK!" @@ -207825,20 +212474,16 @@ msgid "WOOF!" msgstr "低吠!" #: lang/json/speech_from_json.py -msgid "heavy breathing" -msgstr "沉重的呼吸声" +msgid "labored breathing." +msgstr "吃力的呼吸声。" #: lang/json/speech_from_json.py -msgid "labored breathing" -msgstr "吃力的呼吸声" +msgid "a whimper." +msgstr "呜咽声。" #: lang/json/speech_from_json.py -msgid "a whimper" -msgstr "呜咽声" - -#: lang/json/speech_from_json.py -msgid "a rasping growl" -msgstr "刺耳的咆哮声" +msgid "a rasping growl." +msgstr "刺耳的咆哮声。" #: lang/json/speech_from_json.py msgid "\"I have no mouth and yet I scream!\"" @@ -208904,6 +213549,10 @@ msgstr "杂货店" msgid "Gun Store" msgstr "枪械商店" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "车库" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "典当行" @@ -210408,6 +215057,10 @@ msgstr "完成所有未完成的建筑工程。" msgid "Please do any mining work that you can." msgstr "尽可能地挖矿。" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "请把地拖干净。" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "请看书学习。" @@ -217985,6 +222638,809 @@ msgstr "" msgid "I'm glad you are OK." msgstr "我很高兴你没事。" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "你这里有什么可以交易的吗?" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "我完全听不懂你在说些什么。" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "你是机器人吗?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "[智力 9]你称呼自己为流亡族?那是不是意味着你被赶出了家乡?" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "这是什么地方?" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "[感知 6]这里有些科技看起来……很怪异。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "你之前想我一些问题,我想当时我太粗鲁了。你那时候想问什么?" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "我们能接着谈谈你怎么来到这个世界吗?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "你能*现在*就把我变成一个机器人吗?你知道,我是这个游戏的开发者。" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "我想我已经准备好尝试变成改造人了。" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "你能不能帮我做一些可爱的生化插件升级?" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "你能帮我做CBM手术吗?" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "转眼的就回来的,嗯?" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "忘了什么的?" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "啊,就回来了的,我记下的。" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "还不错的回来的,你的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "还不错的,你的还没死的。什么的带来你的到鲁比克地盘的?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "阳光明媚,你的回来了的!如果你的有东西给我的,我的有东西给你的。" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "哦,你的没死的。来交易的?" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "你是谁?这是什么地方?" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "我给你带来了那些麻醉剂。现在你能帮我吗?" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "其实,我只想随便聊聊。" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "哦不了,我该走了。" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "只是过来打个招呼。再见了,拜拜。" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" +"我们的叫我们的流亡族的,嗯?还有其他的,但那很好的。这里是我们家乡的,就是这样的。这个的名字叫鲁比克的,被上面标记贸易的。你的想交易吗?我们的需要废料的、金属的和更多的东西的。" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "好吧,我最好先走了。再见。" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "好的好的,就这样的。" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "拿好了的,随你便的。" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "为了卡片的和闪闪金属的,对吗?" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "你刚才说什么?" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "当然可以的随你便的。我们的不是擅长说话的,说话不是无偿的,懂了没的。" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "嗨,我的先能问你的问题的么?" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "呃,问我一个问题?当然可以,我想。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "不了,我太忙了,没法回答你的问题,你应该先回答我的问题。我想我该走了。" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "这里的混乱的开始多久了的?" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "[告诉他们]" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "谢谢你的。第一次鲁比克见到你的,混乱的开始有多久了的?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "太棒了的!本泽特可以和它成对的,那是新路的!我意思的,他们的会很高兴的。这将是他们的第一次跳跃的,像会飞鸭子一样的。" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "什么样的跳跃才算的上是好的?" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "本泽特是谁?" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "我们能谈点别的吗?" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "我该走了。回头见,鲁比克。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "我的想起来的,我们的再谈本泽特的第一次跳跃的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "我们的离开旧世界的在被侵蚀穿前的,唰一下的,找到一个新的活生生的另一边的。你的死乡是闪亮新的。" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "我一点也听不明白。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "[智力 9]所以你的意思是说,我们这有一个很好的,刚刚死去的世界供你参观?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "没关系的。正常的,敌人的是新来的,我们的还有阳光下的好几个小时才能下一次跳跃的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "哦,你是说你们在大灾变中很早就到了这里。这有什么好的?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "这是一个部分,一种转变,但这是不好的所有,超过了我们的最后一跳的。在有喷喷的轰轰的他乡的,我们的很好改变了的。" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "我完全听不懂什么喷喷的轰轰的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "你的很懂的。这是一个部分,一种转变,但这是不好的所有,超过了我们的最后一跳的。在有喷喷的轰轰的他乡的,我们的很好改变了的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" +"哦,是的。许多世界都有这些东西的。喷喷的,她是一种武器,用砰的一声高速射击。轰轰的,他是一个巨大的金属盒子,由燃烧推动,里面轰轰的,懂了没有的?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "[智力 7]听上去喷喷的是把枪,而轰轰的是一辆车?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "对的对的,那么我们的就记下来了的。在这里,一个闪亮的铜币,用来横穿这个国度的。" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "本泽特是谁?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "他们的是来自三次跳跃外的他乡人的,像天空一样宽的。他们的很高兴能用上了新东西,懂了没有的?" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "我……真的听不懂。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "嗯,他乡人的……计划了上一次跳跃的?就像一个六十多岁的老学徒的。" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "哦,像个领航员一样?" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "当然,这个词很好的,我记下的。" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "你之前说这次跳跃得特别好?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "是的,你的可以这样称呼我们的。我们像是来自他乡的。但不是他界的。太冒险了,像把他们带进羊圈的。" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "我不知道他乡和他界有啥区别。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" +"当然,区别大了的。他界就是你这里的那些可恶家伙来的,嗯?行走植物的,说话蘑菇之类的。他乡更像是亲属关系。我来自地球的,但我的地球是不同的。所以你的不应该被问到流亡族来地球上做什么,因为有些人觉得我们在家里很好的,我记下的。你的应该问问流亡族为清除绿色和棕色做了什么。" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "好吧,那么,你为\"清除绿色和棕色\"做了什么。" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "和我说说你们来的世界。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "*走神了一瞬间。\"啊,家乡。已经离开很久了的,你懂了没的。和你的差不太远的。我……我想我不想谈论它。现在和那时有太多的金属打卷了。\"" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "听上去很糟糕,也许我们该换个话题。" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "你为\"清除绿色和棕色\"做了什么。" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "你是怎么变成全金属做的?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "我们的看到这是一条鸽子之路,我理解了的。只有一条路的,我记下的,如果我没早就加入他们的行列的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "我想我知道你的意思。活下去的唯一方法是……“升级”。你能帮我吗?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" +"“机器人?那又是什么?等等……”鲁比克停了一会儿,好像在思考。“啊,一台自动机器?不,这是你的血肉之躯,被包裹在金属和电线的外壳里。没有那么多肉的。电线和肉混在一起,就像一个整体,你懂了没的。”" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "[智力 9]那么你是某种改造人?太棒了。我如何成为一个改造人?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "我不是很懂你的意思。你有点像机器人,但你也是有血有肉的?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "是的,那是湿漉漉的树叶,我记下的。两者都有一点,但对你来说,鲁比克曾经是亲戚的。" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "我们能谈点别的吗?这有些令人费解。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "一个垃圾基地,不是吗?成堆成堆的杂物。我们的很快就会收拾好,然后一起吟唱。" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "收拾?你怎么能把这样么大的东西打包收拾起来?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "怎么你的需要如何思考他们的十一个方向,懂了没有的?我们会打开一扇门,摇摇晃晃的。和我们来时一样的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "当然可以的,至少部分的。我们的会尽我们的所能说你的语言的,但你的知道的,我们的来自他乡的,不是那么简单的。" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "[智力/感知 7]你怎么学会说英语,或者说我们语言的?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "哦,是的,没错的。每一个的。我们流浪的,我们将就的。一种生活方式的。" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "是什么把你们赶出来了?" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "和你的一样,我记下的。敌人的。死人的。" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "作为我们中的一个来自\"上岸\"的码头攀爬者,这将是我们学会语言的方式。所有的一切都来自我们的绿色和棕色的院子,就像里这样。" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "告诉我关于\"上岸\"的事。你的家怎么样?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" +"凑合的,凑合的,和你一样,我记得的。上一个家有点太死气沉沉了,边缘都腐烂了的。发生在他们中最好的人身上。碰到了一个让我们知道你们这里的人,点燃了摇摇晃晃的然后唰的一声!一切都在时间的滴答声中,我们到了的。这一次时机很好的,我的知道我们进来的时候你的才死了几天。这是厨房水槽里见过的最新鲜尸体的。" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "……什么?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "[智力/感知 9]那你是从哪里来的?你是外星人还是什么?" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "你还想从这里得到什么吗?" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" +"我们的是来这里生活和呼吸的,懂了没的?在我们上次去的他乡后,没多久也死了的。于是,我们来到了一个新地方的。这个的。我记下的,这里还没死多久的。" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "[智力/感知 7]他乡是什么?你是外星人还是什么?" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" +"除了在这样的舒适角落里生活的?我们挖矿的,你懂了的。挑废品的,看看你们的他乡是否有值得一翻的技术的。让好东西浪费掉是没有意义的。如果幸运的话,在我们的离开之前挑选一些新流亡族的。重拾我们的甜蜜破碎梦想的,诸如此类的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "“浪费”是什么意思?丧尸们不会使用这些废料,而且还有很多东西可以使用。" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "这里是死地的,我记下的。你还带着外壳的,摇晃没法跟着唱的。这些老鼠和跳蚤没有治愈方法的。" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "这到底是什么意思?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "[智力 8]你是说你认为我们注定要失败?如果没有办法生存,你为什么会来这里?" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "意思就是意思的。你的土地已经是死去土地的,虽然还在挣扎的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "你是说你认为我们注定要失败?如果没有办法生存,你为什么会来这里?" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "哦,我们可以根据需要摇摇。把废料送回去,把食物带进来,摇掉一两个坏家伙的,懂了没的。这对你的没好处的,太多肉和骨头的。" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "嗯……那你能帮我修一下吗?" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "等等。我还以为你在这堆金属底下还有骨有肉的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "哈哈,不多的,伙计。不值得冒险的,不是吗?我保留下鲁比克的,但其他的都是实心的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "对我的来说不是的。但我们的不会在这里久待的。你的很好的,我很高兴的。" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "[智力/感知 7]不在这里久待?你是外星人还是什么?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "如果你的有很多的,我的很高兴完成的,只要一个闪亮的硬币的。" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "我有一些东西要安装。" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "你能取出我体内植入的东西吗?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "当然,现在我可以让你成为一个改造人,因为你是一个开发者。" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "就这么办吧。" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "我改变主意了。你刚才说了什么?" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "我改变主意了。我最好先走了。再见。" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" +"哦,呵呵!好吧,好吧。现在你是国王的英国人了。是的,如果你的能以实物偿还的话,我们可以给你带来好处的。我们会尽可能像鲁比克一样清楚地说出来。如果你用它把死人埋回地下,我们可以用这样的东西来修理你,是的。卡进肉和骨头里,连接到大脑的。你懂了没的?如果没有,我们的可以找大灰要一品脱清爽剂的。" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" +"啊,好吧。如果你记下了的,我们会把钥匙放进锁里的。也许你能给我们带来一点东西做贸易的,我们会看看我们是否能很快解决你的问题。流亡族从不赶走一个自愿的本泽特,就这样的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "如果我继续杀丧尸,你能会帮我变成一个改造人吗?那么,我们还等什么呢?给我报名吧。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "再想一想,我不确定我是否想让一群陌生的外星机器人给我做脑部手术。" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "也许我该试试那种清爽剂?" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "好吧,我现在有一些东西可以交易。" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "好吧,也许等再多交易一些东西后,我再回来找你们。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" +"嗯。\n" +"\n" +"*鲁比克的声音在一瞬间变得既机械而遥远,好像是电脑接管了说话一般*\n" +"\n" +"为了保证您将使用这些天赋与大敌作战,流亡族节点愿意为您提供生化模块控制电极、供电系统和所有必要的基础装置,以获得标准化CBM(紧凑型生化插件)的进一步升级。我们只需要支付此服务的象征性的费用。我们将提供购买后的进一步升级。您个人的进步对我们双方都有利。\n" +"\n" +"*鲁比克的声音再次出现*\n" +"\n" +"是不是很清爽的?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "你为什么不能一直说得那么清楚?你不知道要听懂你的口音有多难,更不用说你的话了。" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" +"我的口音?很明显,你从来没有听过自己说话的。大灰还有更重要的工作要做,明白吗?必须让我们的自己有用的,让大灰做它应该做的事。此外,在我看来,与当地人交谈让我保持年轻的,让我光彩照人的,我记下的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "好吧,随便吧。没关系,如果你想把我变成一个可怕的机器和人的融合体,就给我报名吧。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "我跟你说的越多,我就越不确定我是否想让一群陌生的外星机器人给我做脑部手术。" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "好,好。你刚刚说了什么?我被声音的变化分散了注意力。" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" +"好的好的,太好了太好了!哈!我们就要用橡胶把旧的磨坊磨平。你的工作是给我们带点好茶。当然不是字面上的“茶”。那是我俚语说的。我是说那些能让你在手术前睡觉的东西。大灰说用你的话叫“马坠机”。你的给我们的带两大罐子来,我们的会用电线和其他东西把你修理好的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "两个,呃,麻醉工具箱是吧,马上好。我们能谈点别的吗?" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "两个,呃,麻醉工具箱是吧,马上好。我这就去找。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "奇怪的事情发生了,我不应该看见这个对话。我最好去官网提交一份错误报告。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "好的好的,太好了太好了!哈!既然我们有了好茶,我们就要用橡胶把旧的磨坊磨平的。你马上就和鲁比克在一起的。" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "好的,我们开始吧!" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "等等。我需要重新考虑一下。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "一项很好的选择,我理解的。如果你改变主意的话,老鲁比克会一直在这里。你会更好地了解我们,我们会更好地了解你,这是一个很好的选择。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" +"*做出一个僵硬的鞠躬姿势,领着你走出商店,沿着一条石头小径走向院子里的一座更大的建筑。一扇厚厚的钢门滑到一边,露出一条阴暗、锈迹斑斑的走廊。走廊尽头是一间外观整洁的手术室,除了昏暗的灯光和外科医生本身,与其他手术室没有太大区别。在手术台的顶部是一个让人联想到倒挂蜘蛛的装置,它的多个闪闪发光的医疗机械臂轻轻地卷曲,热切地期待着你的到来。你几乎没有时间去质疑你的选择,直到你感觉到左肩上的剧痛,世界渐渐远去。\n" +"\n" +"你在舒适的床上醒来,你的胸部和喉咙有些痛,但在其他方面都很好。当麻醉剂的效果渐渐消失时,你注意到胸部和手臂上有几处细小的疼痛伤口。一个改造人,不是鲁比克,注意到你醒来了,无言地示意你跟随,带你回到鲁比克的商店。\n" +"\n" +"“啊,你终于和星星在一起了的,我记下了的。太棒了的。那些小小的CBM会帮你一点忙的,但它们只是开始的。现在我们的可以出售你想要的一切的,如果你想要的,还可以帮助安装的。”" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "那么我现在是一个改造人了?我觉得没什么不同。" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "好吧,我得走了。谢谢你的大脑植入器。再见。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "这是你想要的“入门包”,我记下来的。给你让你开始的,但你真正想要的柠檬馅饼,是商品的。当我的可以更清楚见到你喜欢的,可以提供更多的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "所以你可以卖给我更多的生化插件,当我们关系更好的时候,你能出售有更多?介意给我看看你现在有什么吗?" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "说说你的故事?" @@ -218646,6 +224102,10 @@ msgstr "我能帮上什么忙?" msgid "Do you need any resources?" msgstr "你需要什么资源吗?" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "你从哪里弄到那个巨大的萤火虫玻璃缸的?" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "目前看来还能活下去。" @@ -218715,6 +224175,17 @@ msgstr "如果我教会了一百个人怎么养兔子,在这些人教会更多 msgid "That's the most hopeful thing I've heard so far." msgstr "这是迄今为止我听到的最令人鼓舞的事情。" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "一个旅行者带了这个给我,作为交换,买走了我的一些兔子。他说他是从沼泽地的一位科学家那里弄来的,但这玩意在他的车里占了太多的空间。" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "它很独特!" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "就和你怎么得到你的一样,我打赌。" @@ -221184,10 +226655,6 @@ msgstr "你怎么能在大学书店里工作?你也是个学者吗?" msgid "What's this I hear about you having a doctorate?" msgstr "我听说你有博士学位是怎么回事?" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "你刚才说什么?" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -225114,10 +230581,6 @@ msgstr "我想你似乎正在寻求帮助……" msgid "What's with these 'free merchant certified notes'?" msgstr "这些“自由商会认证货币”是怎么回事?" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "好吧,我最好先走了。再见。" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "欢迎您,执法官……" @@ -225466,6 +230929,116 @@ msgstr "" "哇,你可真是认真的吧?好吧,如果你需求这么强烈的话,10 " "个商会币足以不少守卫离开岗位帮你一把了,而且你知道吗?既然你这么急切,我甚至也能在歇班的时候帮你。我向来很尊重那些敢用钱证明自己不是说大话的人。" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "那么,你们的商队在荒野里看到什么有意思的东西了吗?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "我想谈谈我最近遇到的一个潜在的新贸易伙伴。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "好吧,一张新面孔。很高兴认识你。是我把这些商队派到各地的。我能为你做什么?" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "我能问你几个问题吗?" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "我得走了,很高兴和你谈话。" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "当然,现在没有东西要装。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "没有,抱歉了。最近这些天没有什么值得说的,只有些零星的幸存者,而他们通常不欢迎偶尔出现的访客。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "其实上有的。之前我们遇到了一群农民。他们不想和我们的商队有太多的关系,但像你这样的人他们可能不会介意。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "最近有些传言。人们在谈论某个秘密实验室,在野外,里面有幸存者。我自己还没亲眼见过,注意了。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" +"好吧,我的几个商队现在回来了,谈论着在某个鸟不拉屎的地方,在一块岩石上,建了一座巨大的金属城堡。他们还没疯到想去看看,但是如果你想的话,你可以去。" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "错误:谈话randomize_directions越界。" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "我怎么去那个农场?" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "我怎么去那个实验室?" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "我怎么去那个城堡?" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "啊,这对我来说不是什么新鲜事。不过还是谢谢你。" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "等等,你刚才说了什么?" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "其实,我得走了。也许以后吧。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "*在地图上指出它的位置。“这应该能让你到那里的。祝你好运,我想你会需要它的。”。" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "谢谢你指路了。我去看看。" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "总是在寻找新的交易地点。你给我带来了什么?" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "[告诉他们关于鲁比克和流亡族的事]" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "好吧,要我说,这可真是一个夸张的故事。总有一天,我会看看我们能不能去调查一下。听起来能做一些真正有意思的交易。" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "我能问你点别的吗?" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "你好,执法官……" @@ -225764,6 +231337,15 @@ msgstr "出门在外,当心你的背后。" msgid "Is there any way I can join the 'Old Guard'?" msgstr "我可以加入\"旧世守护者\"吗?" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "我有一些关于那些奇怪机器人的问题要问你。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "我想我已经能告诉你关于你想调查的那些“机器人”的事情了。" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "[任务]我能替旧世守护者做点什么吗?" @@ -225861,6 +231443,59 @@ msgid "" msgstr "" "在直到一名招募官来之前,你没法地真正加入我们。不过我们一直都欢迎大家来帮一把手,记得时常来问我有没有可以干的活。作为临时工,多完成任务可以让你在这群世上仅存的最有实力的人们中扬名立万。" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "如果你想知道我们的下一步计划是什么,我无权告诉你。说实话,我甚至自己都不知道。他们从不跟我分享那种信息。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "其实,我已经见过他们了。他们似乎对贸易之类的事情持开放态度。我想你可能想知道。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "好吧,有点意思。这不是我目前能做决定的事情,但是你可能会想把这些信息告诉给自由商会的卡车司机。也许这样我们能和他们建立起更友好关系。" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "好主意。我会去的。" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "嗯,也许吧。我们能谈点别的吗?" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" +"哦,好吧。那样的话,我很想听听你对他们了解多少。我可以把这些转达给指挥部。让我们看看我能用什么来做交易……就用我们商店里的抗生素怎么样?这类东西对你来说永远不会嫌多。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "是的,我已经见过他们了。他们似乎对贸易之类的事情持开放态度。没有敌意,至少对我没有敌意。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "我得考虑一下。现在让我们谈点别的。" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "回头想一想,我该走了。" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -228695,6 +234330,23 @@ msgstr "现在没有,也许以后再来看看吧。" msgid "Sure…" msgstr "当然……" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "我负责保管瓦尔扎因的书。他的口袋宇宙里有很多层书架。这些书恰好是我认为他很快就会读到的。我可以卖掉一些有副本的。" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "我负责整理书籍,出售多余的书,在我们以前还往外借书的时候,我还得拿回那些延期需要归还的书。" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "好吧,那就谈交易吧。" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "你也想要抓我吗?" @@ -228881,20 +234533,6 @@ msgstr "跟紧了,。我得先扫清一条路出来。" msgid "Pack your bags, . We're going on a trip." msgstr "打好包裹,。我们要出发了。" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "生化反击" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "你格挡并且反击%s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr "格挡并且反击%s" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "缴械" @@ -229502,20 +235140,6 @@ msgstr "你用鞭子缴械了%s" msgid " disarms %s using their whip" msgstr "用鞭子缴械了%s" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "反击" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "你反击%s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr "反击%s" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "佯攻" @@ -229551,55 +235175,45 @@ msgid " jabs deftly at %s" msgstr "精准戳击%s" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" -msgstr "格挡缴械" +msgid "Counter Throw (block)" +msgstr "反制摔投(格挡)" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" -msgstr "你行云流水般地格挡了攻击并解除了%s的武装。" +msgid "You smoothly throw %s" +msgstr "你单脚踏地,侧身闪过攻击,另一只脚划出个完美的半圆,前身猛倾,流畅地摔投了%s" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" -msgstr "行云流水般地格挡了攻击并解除了%s的武装。" - -#: lang/json/technique_from_json.py -msgid "Block Counter Throw" -msgstr "格挡摔投" +msgid " blocks and smoothly throws %s" +msgstr "行云流水般地格挡了攻击并把%s摔了出去。" #: lang/json/technique_from_json.py -#, python-format -msgid "You block and smoothly throw %s" -msgstr "你行云流水般地格挡了攻击并把%s摔了出去。" +msgid "Counter Throw (dodge)" +msgstr "反制摔投(闪避)" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly throws %s" -msgstr "行云流水般地格挡了攻击并把%s摔了出去。" +msgid " dodges and smoothly throws %s" +msgstr "行云流水般地闪避了攻击并把%s摔了出去。" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" -msgstr "闪避摔投" +msgid "Disarming Throw (block)" +msgstr "缴械摔投(格挡)" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" -msgstr "你行云流水般地闪避了攻击并把%s摔了出去。" +msgid "You smoothly disarm %s" +msgstr "你轻松地将%s缴械" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "行云流水般地闪避了攻击并把%s摔了出去。" +msgid " blocks and smoothly disarms %s" +msgstr "行云流水般地格挡了攻击并解除了%s的武装。" #: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" -msgstr "闪避缴械" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" -msgstr "你行云流水般地闪避了攻击并解除了%s的武装。" +msgid "Disarming Throw (dodge)" +msgstr "缴械摔投(闪避)" #: lang/json/technique_from_json.py #, python-format @@ -229682,20 +235296,6 @@ msgstr "%s试图抓住你,但你用力挣脱了!" msgid "The %s tries to grab , but they break free!" msgstr "%s试图抓住,但他用力挣脱了!" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "回击" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "你拨开攻击并回击了%s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "拨开攻击并回击了%s" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -229704,7 +235304,7 @@ msgstr "你佯攻%s" #: lang/json/technique_from_json.py #, python-format msgid " fakes a strike at %s" -msgstr "佯攻了%s。" +msgstr "佯攻了%s" #: lang/json/technique_from_json.py #, python-format @@ -229814,34 +235414,6 @@ msgstr "你举起你的手臂威吓%s。" msgid " performs the Crane Wing at %s." msgstr " 摆出鹤翼姿势威吓%s。" -#: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "白鹤亮翅" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" -msgstr "%s试图抓住你,但你挥动手臂挣脱了!" - -#: lang/json/technique_from_json.py -#, python-format -msgid "The %s tries to grab , but they flap free!" -msgstr "%s 试着抓住 ,但被挣脱了!" - -#: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "雄鹤刷翎" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You hand-peck and swat down %s" -msgstr "你拢指成钩,猛力击倒了%s。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " hand-pecks and swats down %s" -msgstr "拢指成钩,猛力击倒了%s。" - #: lang/json/technique_from_json.py msgid "Crane Kick" msgstr "鹤爪印沙" @@ -229857,46 +235429,46 @@ msgid " leaps and kicks %s" msgstr "纵身跃起,飞踢%s。" #: lang/json/technique_from_json.py -msgid "Dragon Claw" -msgstr "龙爪手" +msgid "Crane Flap" +msgstr "白鹤亮翅" #: lang/json/technique_from_json.py #, python-format -msgid "You lash out at %s with a Dragon Claw" -msgstr "你十指钩成龙爪,猛烈打击%s。" +msgid "The %s tries to grab you, but you swing your arms and break free!" +msgstr "%s试图抓住你,但你挥动手臂挣脱了!" #: lang/json/technique_from_json.py #, python-format -msgid " lashes out at %s with a Dragon Claw" -msgstr "十指钩成龙爪,猛烈打击%s。" +msgid "The %s tries to grab , but they flap free!" +msgstr "%s 试着抓住 ,但被挣脱了!" #: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" -msgstr "龙旋格挡" +msgid "Crane Strike" +msgstr "雄鹤刷翎" #: lang/json/technique_from_json.py #, python-format -msgid "You block the attack and send %s spinning" -msgstr "你格挡攻击,令%s天旋地转。" +msgid "You hand-peck and strike %s" +msgstr "你拢指成钩,猛击%s" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and spins %s" -msgstr "格挡了攻击,让%s天旋地转。" +msgid " hand-pecks and strikes %s" +msgstr "拢指成钩,猛击了%s" #: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" -msgstr "龙翼闪避" +msgid "Dragon Claw" +msgstr "龙爪手" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge the attack and leave %s off balance" -msgstr "你避过攻击,顺势一带,使%s失去了平衡。" +msgid "You lash out at %s with a Dragon Claw" +msgstr "你十指钩成龙爪,猛烈打击%s。" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and leaves %s off balance" -msgstr "避过攻击,顺势一带,使%s失去了平衡。" +msgid " lashes out at %s with a Dragon Claw" +msgstr "十指钩成龙爪,猛烈打击%s。" #: lang/json/technique_from_json.py #, python-format @@ -229910,17 +235482,17 @@ msgstr "快速出腿,呈龙尾之势扫倒了%s。" #: lang/json/technique_from_json.py msgid "Dragon Strike" -msgstr "龙拳重击" +msgstr "盘龙手" #: lang/json/technique_from_json.py #, python-format msgid "You descend upon %s with a powerful Dragon Strike" -msgstr "你一记强力龙拳猛击 %s" +msgstr "你一记强力盘龙手猛击 %s" #: lang/json/technique_from_json.py #, python-format msgid " descends upon %s with a powerful Dragon Strike" -msgstr " 一记强力龙拳猛击 %s" +msgstr " 一记强力盘龙手猛击 %s" #: lang/json/technique_from_json.py msgid "Round Strike" @@ -229979,18 +235551,18 @@ msgid " combination strikes %s" msgstr "的连招延绵不断的攻向%s" #: lang/json/technique_from_json.py -msgid "Puño Strike" -msgstr "柄首戳击" +msgid "Stunning Strike" +msgstr "眩晕打击" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" -msgstr "你倒转武器,猛戳 %s" +msgid "You deliver a stunning strike to %s" +msgstr "你眩晕打击了%s" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" -msgstr " 倒转武器,猛戳 %s" +msgid " delivers a stunning strike to %s" +msgstr "眩晕打击了%s" #: lang/json/technique_from_json.py msgid "Low Strike" @@ -230031,8 +235603,8 @@ msgid " lunges at %s" msgstr "弓步刺击%s" #: lang/json/technique_from_json.py -msgid "Compound Attack" -msgstr "复杂进攻" +msgid "Compound Attack (Remise)" +msgstr "复杂进攻(二次进攻)" #: lang/json/technique_from_json.py #, python-format @@ -230044,6 +235616,10 @@ msgstr "你以假动作挑引%s防守,而后向其身体暴露出的部分加 msgid "'s feint leads to a compound attack against %s" msgstr "以假动作挑引%s防守,而后向其身体暴露出的部分加速劈下一记复杂进攻。" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "复杂进攻(反击时刻)" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "击剑抢攻" @@ -230190,20 +235766,6 @@ msgstr "%s 试着抓住你,但你轻松地打断了他们羸弱的抓取!" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "%s 试着抓住,但他们轻松地打断了他羸弱的抓取!" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "反制摔投" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "你躲开了%s并把它摔倒在地" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "躲开了%s并把它摔倒在地" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "空手道反击" @@ -230308,20 +235870,6 @@ msgstr "%s试图抓住你,但你把它摔开了!" msgid "The %s tries to grab , but they wrestle free!" msgstr "%s试图抓住,但他们把它摔开了!" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "反击" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "你格挡并且反击%s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "格挡并且反击%s" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "金豹手" @@ -230422,20 +235970,6 @@ msgid "" "another strike" msgstr "通过长期练习动作套路, 从一次失败的打击流畅过渡到下一次打击" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "大师斩" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "你以一个动作同时招架并打击 %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr " 以一个动作同时招架并打击 %s" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "肘击" @@ -230759,20 +236293,6 @@ msgstr "你有如毒蛇出洞,猛击了 %s" msgid " lashes out at %s with a vicious Snake Strike" msgstr " 有如毒蛇出洞,猛击了 %s" -#: lang/json/technique_from_json.py -msgid "Push" -msgstr "推开" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You push %s away" -msgstr "你推开了%s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " pushes %s away" -msgstr "推开了%s" - #: lang/json/technique_from_json.py msgid "Shove" msgstr "猛推" @@ -230797,6 +236317,16 @@ msgstr "你熟练地绊倒了%s" msgid " deftly trips %s" msgstr "熟练地绊倒了%s" +#: lang/json/technique_from_json.py +#, python-format +msgid "You fake a thrust at %s" +msgstr "你佯刺%s" + +#: lang/json/technique_from_json.py +#, python-format +msgid " fakes a thrust at %s" +msgstr "佯刺了%s" + #: lang/json/technique_from_json.py msgid "Snatch Weapon" msgstr "缴械" @@ -230995,20 +236525,6 @@ msgstr "你的攻击未能命中%s,但没失去平衡" msgid "'s attack misses %s but they don't let up" msgstr "的攻击未能命中%s,但没失去平衡" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "阴阳掌" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "你接下%s的攻击,并反转给对方" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr "接下%s的攻击,并反转它" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "醉拳佯攻" @@ -231233,7 +236749,7 @@ msgstr "你快速佯攻%s" #: lang/json/technique_from_json.py #, python-format msgid " fakes a quick strike toward %s" -msgstr "快速佯攻了%s。" +msgstr "快速佯攻了%s" #: lang/json/technique_from_json.py msgid "Rapid Jab" @@ -231769,20 +237285,6 @@ msgstr "你干净利落地收割了%s和附近的敌人" msgid " cleanly reap throug %s and those nearby" msgstr "干净利落地收割了%s和附近的敌人" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "导力反转" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "你引导%s将攻击的力道反作用于其自身。" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "反转了%s的攻击。" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "筋斗踢" @@ -231881,20 +237383,6 @@ msgstr "你对%s使用了下盘踢" msgid " uses Low Sweep on %s" msgstr "对%s使用了下盘踢" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "真·斗转星移" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "你反转并回击了 %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr " 反转并回击了 %s" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "破龙击" @@ -231937,20 +237425,6 @@ msgstr "你使出一招穿云投,将%s远远丟倒在地" msgid " spins and hurls %s away with a Ballista Throw" msgstr "使出一招穿云投,将%s远远丟倒在地" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "流水击" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "你用流畅的动作格挡并回击了%s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "用流畅的动作格挡并回击了%s" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "缴械斩" @@ -234198,6 +239672,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "一个过于年幼而难以分辨物种的小树。长大成熟可能需要几十年,所以在这里干等着可没用。" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "巨型蕨叶" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "一种你从未见过的巨大蕨类植物。叶子呈明亮的猩红色,有绿色纹理的网状结构。多刺枝干特性似乎和轻木一致。" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "苹果树" @@ -237618,24 +243104,24 @@ msgid "" msgstr "一堵石墙,上面有扇制造工艺让人惊叹的彩色玻璃窗,上面表现了如蓝宝石一般深邃的海洋深渊。" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" +msgid "window with metal grate" msgstr "金属栅格窗" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "这扇窗户上安装了金属制成的栅格,经久耐用,能够挡住任何敌人。" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "这扇带窗帘的窗户上安装了金属制成的栅格,经久耐用,能够挡住任何敌人。" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -237643,32 +243129,32 @@ msgid "" msgstr "这扇窗帘打开的窗户上安装了金属制成的栅格,经久耐用,能够挡住任何敌人。" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "单片玻璃窗" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "一块镶在窗框里的巨大的玻璃。" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "单片玻璃窗(开)" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "有窗帘的单片玻璃窗" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "一扇在室内挂着花哨窗帘的玻璃窗。窗帘已经拉上,挡住了阳光和视线。" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -237676,35 +243162,30 @@ msgid "" msgstr "一扇在室内挂着花哨窗帘的窗户。窗帘可以拉上,挡住阳光和视线。" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "强化单片玻璃窗" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "一块镶在窗框里的巨大的强化玻璃。" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "强化单片玻璃窗(开)" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "有窗帘的强化单片玻璃窗" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "一扇在室内挂着花哨窗帘的窗户。窗帘已经拉上,挡住了阳光和视线。" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "有窗帘的强化单片玻璃窗" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -237712,33 +243193,33 @@ msgid "" msgstr "一扇挂着花哨窗帘的窗户。窗帘可以拉上,挡住阳光和视线。" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "双层玻璃窗" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "两块镶在窗框里的巨大的玻璃。" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "双层玻璃窗(开)" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "有窗帘的双层玻璃窗" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "一扇在室内挂着花哨窗帘的双层玻璃窗。窗帘已经拉上,挡住了阳光和视线。" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -237746,10 +243227,10 @@ msgid "" msgstr "一扇在室内挂着花哨窗帘的窗户。窗帘可以拉上,挡住阳光和视线。" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "强化双层玻璃窗" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -237757,10 +243238,10 @@ msgid "" msgstr "一扇镶在窗框里的双层玻璃窗。为了更安全,外层是强化玻璃。" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "强化双层玻璃窗(开)" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -237768,40 +243249,38 @@ msgid "" msgstr "两块镶在窗框里的巨大的玻璃。外层采用强化玻璃提供了更多防护。" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "有窗帘的强化双层玻璃窗" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "三层玻璃窗" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "三块镶在窗框里的巨大的玻璃。" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "三块镶在窗框里的巨大的玻璃。" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "有窗帘的三层玻璃窗" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "一扇在室内挂着花哨窗帘的三层玻璃窗。窗帘已经拉上,挡住了阳光和视线。" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -237809,21 +243288,17 @@ msgid "" msgstr "一扇在室内挂着花哨窗帘的窗户。窗帘可以拉上,挡住阳光和视线。" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "有窗帘的三层玻璃窗" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "强化三层玻璃窗" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "三块镶在窗框里的巨大的玻璃。外层采用强化玻璃提供了更多防护。" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -237831,44 +243306,35 @@ msgid "" msgstr "三块镶在窗框里的巨大的玻璃。外层采用强化玻璃提供了更多防护。" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" -msgstr "有窗帘的强化三层玻璃窗" - -#: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "有窗帘的强化三层玻璃窗" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "有窗帘的强化三层玻璃窗" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" +msgid "quadruple glazed glass window" msgstr "四层玻璃窗" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "四块镶在窗框里的巨大的玻璃。" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "四块镶在窗框里的巨大的玻璃。这扇窗户开着。" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "有窗帘的四层玻璃窗" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "一扇在室内挂着花哨窗帘的四层玻璃窗。窗帘已经拉上,挡住了阳光和视线。" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -237876,14 +243342,10 @@ msgid "" msgstr "一扇在室内挂着花哨窗帘的窗户。窗帘可以拉上,挡住阳光和视线。" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" -msgstr "有窗帘的四层玻璃窗" - -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" +msgid "reinforced quadruple glazed glass window" msgstr "强化四层玻璃窗" -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -237901,12 +243363,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "一扇在室内挂着花哨窗帘的强化四层玻璃窗。窗帘已经拉上,挡住了阳光和视线。" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "有窗帘的强化四层玻璃窗" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -237914,21 +243371,17 @@ msgid "" msgstr "一扇在室内挂着花哨窗帘的窗户。窗帘可以拉上,挡住阳光和视线。" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "有窗帘的强化四层玻璃窗" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "塑料窗" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "一扇简易的窗户,将一片半透明的硬质塑料板固定在木头窗框上。勉强能用就行了。" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -237936,10 +243389,10 @@ msgid "" msgstr "一扇简易的窗户,将一片半透明的硬质塑料板固定在木头窗框上。勉强能用就行了。这扇窗户开着。" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "有窗帘的塑料窗" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -237947,7 +243400,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "一扇简易的带窗帘的窗户,将一片半透明的硬质塑料板固定在木头窗框上。窗帘已经拉上,挡住了阳光和视线。勉强能用就行了。" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -237956,10 +243409,10 @@ msgid "" msgstr "一扇简易的带窗帘的窗户,将一片半透明的硬质塑料板固定在木头窗框上。窗帘可以拉上,挡住阳光和视线。勉强能用就行了。" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "有窗帘的塑料窗(开)" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -237968,21 +243421,17 @@ msgid "" msgstr "一扇简易的带窗帘的窗户,将一片半透明的硬质塑料板固定在木头窗框上。窗帘可以拉上,挡住阳光和视线。勉强能用就行了。这扇窗户开着。" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "强化塑料窗" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "一扇简易的窗户,将三片半透明的硬质塑料板固定在木头窗框上。勉强能用就行了。" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "强化塑料窗" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -237990,10 +243439,10 @@ msgid "" msgstr "一扇简易的窗户,将三片半透明的硬质塑料板固定在木头窗框上。勉强能用就行了。这扇窗户开着。" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "有窗帘的强化塑料窗" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -238002,10 +243451,10 @@ msgid "" msgstr "一扇简易的带窗帘的强化窗户,将三片半透明的硬质塑料板固定在木头窗框上。窗帘已经拉上,挡住了阳光和视线。勉强能用就行了。" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "有窗帘的强化塑料窗(开)" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -238013,7 +243462,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "一扇简易的带窗帘的强化窗户,将三片半透明的硬质塑料板固定在木头窗框上。窗帘可以拉上,挡住阳光和视线。勉强能用就行了。" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -238022,31 +243471,31 @@ msgid "" msgstr "一扇简易的带窗帘的强化窗户,将三片半透明的硬质塑料板固定在木头窗框上。窗帘可以拉上,挡住阳光和视线。勉强能用就行了。" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "天窗框" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "一个木制天窗窗框。" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "钢化玻璃窗" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "一块镶在窗框里的巨大的钢化玻璃。" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "钢化玻璃窗(开)" #: lang/json/terrain_from_json.py msgid "tempered glass window with a curtain" -msgstr "带窗帘的钢化玻璃窗" +msgstr "有窗帘的钢化玻璃窗" #. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py @@ -238055,11 +243504,7 @@ msgid "" " visibility and shut out any light." msgstr "一扇在室内挂着花哨窗帘的窗户。窗帘已经拉上,挡住了阳光和视线。" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "带窗帘的钢化玻璃窗" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -239147,7 +244592,7 @@ msgstr "撬棍" #: lang/json/tool_quality_from_json.py msgid "nail prying" -msgstr "" +msgstr "撬钉" #: lang/json/tool_quality_from_json.py msgid "punch" @@ -240568,18 +246013,125 @@ msgid "" msgstr "" "一个先进内燃引擎。燃烧消耗载具油箱内的汽油、柴油或航空燃料。同时也能够消耗灯油,但效率会较低。拥有比传统引擎更好的推重比,但会消耗更多燃料。" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "一台直排6缸柴油发动机。通常用在压路机或挖掘机上,性能比六缸引擎更强大。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "一台动力强劲的6缸柴油发动机,通常用于公共汽车、房车、大型货车或装甲运兵车。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "一台大型8缸柴油发动机,功率足以驱动半挂卡车、装甲车或悍马。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "一台小型单缸汽油发动机,提供大约10马力的动力,足够小型自行车或摩托车使用。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "一种单缸汽油发动机,提供大约55马力的动力,通常用于越野摩托车或沙滩摩托车。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "一台小型单缸汽油发动机,只有几马力的动力,通常用于手推割草机。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "一台四缸汽油发动机,通常用于小轿车和轻型卡车中。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "一台巨大的12缸汽油发动机,具备有跑车才可能需要的强劲动力。" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "一台大型12缸柴油发动机,通常用于重型载货卡车。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "一台动力强大的6缸汽油发动机,足以驱动皮卡、SUV或全尺寸面包车。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "一台重型8缸汽油发动机,通常用于消防车、救护车或拖车。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "一台两缸汽油发动机,适用于摩托车或四轮摩托车。" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "一个闭环外燃蒸汽引擎。燃烧消耗载具燃料舱内的煤炭或木炭并产生蒸汽。" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "一台体型小但动力强劲的燃气涡轮发动机,适合用来为小型单座或双座直升机提供动力。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "一台重型燃气涡轮发动机,是救援直升机、阿帕奇或黑鹰直升机上的典型发动机。" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "一台巨大的燃气涡轮发动机,通常用于驱动类似V-22鱼鹰的大型军用直升机。" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "一扇车门。即使关上门你也可以透过其上的窗来观察。" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "帆布门帘" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "一块可以系紧关闭的布门帘。" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "帆布门拉帘" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "一块可以拉起关闭的布门帘。" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "车门(不透明)" @@ -240950,6 +246502,57 @@ msgstr "一面小镜子,安装在车辆内部。当你能看见反光镜时, msgid "An electric motor." msgstr "一个电力引擎。" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "对大多数车辆来说太小的电动机,但正好可以为电动自行车提供动力。" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "一台轻型电动机,其功率足以驱动电动自行车或电动摩托车,但可能不适用于更重的车辆。" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "一台中型电动机,适用于为超轻型车辆提供动力,或作为油电混动系统的一部分。" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "一台重型电动机,只要你有足够的电池容量,就能单独驱动全尺寸汽车或SUV。" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "一台动力强劲的高性能电动机,能用在那些具有荒谬可笑或令人匪夷所思加速选项的消费类电动跑车上。它需要消耗巨量电能。" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "一台体积庞大、功率极强的电动机,以巨大的耗电量为代价提供极高的扭矩,非常适合电动赛车。" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "一台巨大而沉重的电动机,其功率足以拉动火车。" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -241435,6 +247038,15 @@ msgstr "一条过道。" msgid "wooden aisle" msgstr "木制过道" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "可折叠木制过道" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "一条可折叠木制过道。" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -241568,6 +247180,10 @@ msgstr "折叠式木箱" msgid "wood table" msgstr "木桌" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "可折叠木桌" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "木制船壳" @@ -241636,6 +247252,10 @@ msgstr "一块含有一些指示灯和开关的面板。" msgid "vehicle-mounted heater" msgstr "车载加热器" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "小型车载加热器" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "车载冷却器" @@ -241744,6 +247364,12 @@ msgid "" "vehicle." msgstr "一个大型风力发电机。会额外增加载具的阻力。" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "一块小型太阳能电池板,设计成能够被折叠起来。" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -242931,8 +248557,8 @@ msgstr "疲劳" msgid "Fatig" msgstr "疲" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "疲惫" @@ -243853,7 +249479,7 @@ msgstr "和你的%s一起玩耍让你觉得好过了些。" #: src/activity_actor.cpp #, c-format msgid "You can't use your %1$s to pry up the nails." -msgstr "" +msgstr "你不能用 %1$s 来撬钉子。" #: src/activity_actor.cpp msgid "You open up your kit and shave." @@ -245635,6 +251261,18 @@ msgstr "属性" msgid "Coverage:" msgstr "覆盖率:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "覆盖率(近战):" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "覆盖率(远程):" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "覆盖率(要害):" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "累赘度:" @@ -245726,9 +251364,11 @@ msgstr "整理装束" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." -msgstr "按 [%s] 显示帮助。按 [%s] 修改快捷键。" +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." +msgstr "" +"[%s]隐藏图示,[%s]换边,[%s]帮助菜单,[%s]修改按键。" #: src/armor_layers.cpp msgid "(Innermost)" @@ -245739,6 +251379,12 @@ msgstr "(最里层)" msgid "Storage (%s)" msgstr "容积(%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr " H" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(最外层)" @@ -249948,11 +255594,6 @@ msgstr "你不认为使用该物品有任何效果。" msgid "No limb would benefit from it." msgstr "没有可用该物品治疗的肢体。" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "取消" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "你挣扎了一会,没能站起来。" @@ -250263,6 +255904,14 @@ msgstr "挖掘区" msgid "Designate an area to mine." msgstr "指定一个挖矿的区域。" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "拖地区" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "指定一个拖地的区域。" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "载具拆解区" @@ -252485,10 +258134,6 @@ msgstr "制造所需主要技能" msgid "any skill used to craft" msgstr "制造所需任何技能" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "烹调" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "制造所需功能" @@ -253035,6 +258680,14 @@ msgstr "输出 NPC 魔法信息至控制台" msgid "Test weather" msgstr "测试天气" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "导出全局条件效果列表至eocs.output" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "导出全局变量列表至var_list.output" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "测试地图事件列表" @@ -253465,6 +259118,11 @@ msgstr "口渴:%d %s" msgid "Fatigue: %d %s" msgstr "疲劳:%d %s" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "疲惫:%d %s" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "体脂水平:" @@ -253553,6 +259211,11 @@ msgstr "设置疲劳值?当前:%d" msgid "Set sleep deprivation to? Currently: %d" msgstr "设置睡眠不足值?当前:%d" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "重置疲惫值?当前:%d" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -254312,7 +259975,7 @@ msgstr "对自己造成多少点伤害?当前生命值:%s" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "对自己造成多少流血,每分钟失血速率:" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "当前游戏程序编译时未选择兼容图像版。" @@ -254334,15 +259997,6 @@ msgid "" "items and vehicles!" msgstr "不保存就退出吗?这有可能会引发各种存档问题,诸如物品及车辆被复制或丢失。" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "成功将屏幕截图保存至:%s" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "试图保存屏幕截图时出错。" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "日志已保存至 debug.log 文件" @@ -257980,6 +263634,10 @@ msgstr "交易" msgid "You swap places with %s." msgstr "你和%s互换位置。" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "你无法在抓取物品时交换位置。" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -258264,6 +263922,15 @@ msgstr "你不能到达那里。" msgid "Nickname:" msgstr "爱称:" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "成功将屏幕截图保存至:%s" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "试图保存屏幕截图时出错。" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "物品列表" @@ -260583,10 +266250,6 @@ msgstr "不能在骑乘时睡觉。" msgid "Are you sure you want to sleep?" msgstr "真的要睡觉吗?" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "是。" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "是,并且在睡觉前存档。" @@ -260727,6 +266390,14 @@ msgstr "去附近的挖掘区挖矿——自动获取工具。" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "去附近的拆解物品区拆解物品——自动获取工具。" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "拖地" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "去附近的托地区拖地。" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -261086,10 +266757,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "对 %s 做什么?" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "为生化插件供能" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "使用物品" @@ -261621,16 +267288,6 @@ msgstr "你尝试使用 %2$s 打开 %1$s 的锁……" msgid "This bulletin board is not inside a camp" msgstr "公告牌不在营地里" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" -"这面墙完美的垂直于地面。\n" -"在坚固的岩石上你能够看到上面有一些扭曲的洞。\n" -"那些洞有人的形状,但又有许多长又扭曲的肿胀肢体。" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "要把石化之眼从基座上取下吗?" @@ -264946,6 +270603,21 @@ msgstr "装满时:" msgid "%s:" msgstr "%s:" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "覆盖(近):" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "覆盖(远):" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "覆盖(要):" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "躯干:" @@ -267534,7 +273206,7 @@ msgstr "你无法撬开它。" #: src/iuse.cpp #, c-format msgid "You can't get sufficient leverage to open that with your %1$s." -msgstr "" +msgstr "%1$s 不足以用来撬开它。" #: src/iuse.cpp msgid "Till soil where?" @@ -267945,13 +273617,14 @@ msgid "BEES!" msgstr "蜜蜂!" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "设定计时器到?(按0取消)" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "设置计时器为多少秒(0取消)?" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "你将计时器设置为 %d。" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "你将计时器设置为 %d 秒。" #: src/iuse.cpp msgid "Tick!" @@ -268688,9 +274361,8 @@ msgid "Your vision is fine already." msgstr "你的视线已经清晰,不需要再戴了。" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" -msgstr "你听见 \"%s\"" +msgid "You press a button on the doll to make it talk." +msgstr "你按下娃娃上的一个按钮让它说话。" #: src/iuse.cpp msgid "You need a mechanics skill of 2 to use this repair kit." @@ -268909,38 +274581,6 @@ msgstr "解密存储卡(低技能)" msgid "Wasted time. These pictures do not provoke your senses." msgstr "浪费时间,这些图片无法让你产生共鸣。" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "你以前也有一条长成这样的狗狗……" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "哈哈!一张不错的猫咪照片。" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "精彩的自然风光照片。" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "食物的照片……你的胃咕咕直叫!" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "一些非常有趣的旅行照片。" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "流行乐队演唱会的现场照片。" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "某座华丽豪宅的照片。" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "你盯着照片,开始怀旧。" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -270172,88 +275812,31 @@ msgstr "是反面!" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" -msgstr "用 %s 玩一会?" - -#: src/iuse.cpp -msgid "You start playing." -msgstr "你开始玩游戏。" - -#: src/iuse.cpp -msgid "It is certain." -msgstr "确定无疑。" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "毫无疑问是这样的。" - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "毫无疑问。" - -#: src/iuse.cpp -msgid "Yes - definitely." -msgstr "是的,确实如此。" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "你可以放心。" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "在我看来,就是如此。" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "极有可能是这样的。" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "占卜结果很好。" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "一切迹象都表明是这样的。" +msgid "Play the %s with your friends?" +msgstr "和同伴玩%s?" #: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "结果很模糊,再试一次吧。" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "稍后再试试吧。" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "最好现在别告诉你。" - -#: src/iuse.cpp -msgid "Can't predict now." -msgstr "现在无法预测。" - -#: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "集中精神在试一次。" - -#: src/iuse.cpp -msgid "Don't count on it." -msgstr "别做梦了。" +#, c-format +msgid "Play the %s with your friend?" +msgstr "和同伴玩%s?" #: src/iuse.cpp -msgid "My reply is no." -msgstr "结果是不。" +#, c-format +msgid "You and your %d friends start playing." +msgstr "你和%d个同伴开始玩耍。" #: src/iuse.cpp -msgid "My sources say no." -msgstr "占卜结果是不。" +msgid "You and your friend start playing." +msgstr "你和同伴开始玩耍。" #: src/iuse.cpp -msgid "Outlook not so good." -msgstr "占卜结果不那么乐观。" +msgid "You start playing." +msgstr "你开始玩游戏。" #: src/iuse.cpp -msgid "Very doubtful." -msgstr "很值得怀疑。" +#, c-format +msgid "Play a game with the %s?" +msgstr "用 %s 玩一会?" #: src/iuse.cpp #, c-format @@ -273083,8 +278666,20 @@ msgid "%s: %d" msgstr "%s:%d" #: src/martialarts.cpp -msgid "Requires: " -msgstr "要求:" +msgid "Requires (all): " +msgstr "前提(所有):" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "前提(任意):" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "受禁(所有):" + +#: src/martialarts.cpp +msgid "Forbidden (any): " +msgstr "受禁(任意):" #: src/martialarts.cpp msgid "activate" @@ -278128,6 +283723,11 @@ msgstr "移除 %s 的鞍具" msgid "Manage your friendship with %s" msgstr "维持与 %s 的友谊" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "与 %s 交谈" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -278989,7 +284589,7 @@ msgstr "你开始用你的织网器织网!" #: src/mutation.cpp msgid "You start leaving a trail of sludge as you go." -msgstr "" +msgstr "你开始在经过的地面上留下污泥痕。" #: src/mutation.cpp msgid "You focus, but are too hemmed in to birth a new slimespring!" @@ -279000,21 +284600,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "你集中注意力,然后随着一种很愉悦的剥离感,又多了一个变形怪同伴!" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "哇哦!你跟我长得一模一样!我们应该互相照顾!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "来吧,大一号的我,出发!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "我们是一伙的,没错!" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "你只能在树林里这样做。" @@ -279278,11 +284863,20 @@ msgstr "查看中" msgid "%s to activate mutation, " msgstr "%s 激活变异," +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "被隐藏" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "%s 重新分配变异按键," +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "%s切换图标可见," + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -280978,11 +286572,6 @@ msgstr "你不带上面具不敢和别人说话!" msgid "What do you want to do?" msgstr "你想做什么?" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "与 %s 交谈" - #: src/npctalk.cpp msgid "Talk to…" msgstr "与人交谈……" @@ -281754,6 +287343,15 @@ msgid "" "trying to move into mineable terrain." msgstr "开启时,当手持鹤嘴锄或冲击钻并走向可破坏地形时将自动使用手中工具。" +#: src/options.cpp +msgid "Auto mopping" +msgstr "自动拖地" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "开启时,则允许自动使用手持拖把清洁周围地块。" + #: src/options.cpp msgid "Auto foraging" msgstr "自动采集" @@ -281761,16 +287359,21 @@ msgstr "自动采集" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." msgstr "" -"启用\"自动采集\"时进行的操作。灌木:只搜寻并采集灌木。- 树木:只搜寻并采集树木。- " -"所有:搜寻并采集一切可采集的物品,例如灌木和树木、花朵、香蒲草等。" +"启用\"自动采集\"时进行的操作。灌木:只搜寻并采集灌木。- 树木:只搜寻并采集树木。- 作物:只搜寻并采集作物。- " +"所有:搜寻并采集一切可采集的物品,例如灌木和树木、作物、花朵、香蒲草等。" #: src/options.cpp msgid "Bushes" msgstr "灌木" +#: src/options.cpp +msgid "Crops" +msgstr "作物" + #: src/options.cpp msgid "Everything" msgstr "所有" @@ -284105,20 +289708,6 @@ msgstr "区域:" msgid "# Unexplored" msgstr "# 未探索" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "大地图:%s" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "大地图类型:%s" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "无参数" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "距离当前任务目标:" @@ -284459,6 +290048,11 @@ msgstr "入夜" msgid "Night" msgstr "前半夜" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s,%d日" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "???" @@ -284507,6 +290101,10 @@ msgstr "寒冷!" msgid "Freezing!" msgstr "冻僵!" +#: src/panels.cpp +msgid "SAFE" +msgstr "安全" + #: src/panels.cpp msgid "On" msgstr "开" @@ -286919,6 +292517,16 @@ msgstr "[%s] 隐藏射击线" msgid "[%s] Show lines of fire" msgstr "[%s] 显示射击线" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "射程:%d" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "射程:%d/%d" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -291262,6 +296870,10 @@ msgstr "电力不足以净化 %1$s 的 %2$s 中的液体" msgid "You purify the contents of the %1$s's %2$s" msgstr "你净化了 %1$s 的 %2$s 中的液体" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "你仔细记录了这个生物的弱点。" + #: src/weather.cpp msgid "Monday" msgstr "星期一" diff --git a/lang/po/zh_TW.po b/lang/po/zh_TW.po index f3c6422f5c25e..80f2b0ce7beae 100644 --- a/lang/po/zh_TW.po +++ b/lang/po/zh_TW.po @@ -18,14 +18,14 @@ # 林楷翌 , 2021 # 菲伊斯 , 2021 # 冠霆 吳 , 2021 -# Brett Dong , 2021 # Hsinyu Chan, 2021 -# Laughing Man, 2021 # Bowwow , 2021 # shin13 , 2021 # 微星 紫 , 2021 # kiddragon Chung , 2021 +# Brett Dong , 2021 # Bathball , 2021 +# Laughing Man, 2021 # Hao JK , 2021 # xap, 2021 # @@ -33,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: cataclysm-dda 0.F\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-25 01:32+0000\n" +"POT-Creation-Date: 2021-10-15 14:59+0000\n" "PO-Revision-Date: 2018-04-26 14:47+0000\n" "Last-Translator: xap, 2021\n" "Language-Team: Chinese (Taiwan) (https://www.transifex.com/cataclysm-dda-translators/teams/2217/zh_TW/)\n" @@ -48,7 +48,7 @@ msgid "battery" msgid_plural "battery" msgstr[0] "電池" -#. ~ Description for {'str_sp': 'battery'} +#. ~ Description for battery #: lang/json/AMMO_from_json.py msgid "" "Some free-floating battery charge. This can be reloaded into rechargable " @@ -60,7 +60,7 @@ msgid "butane" msgid_plural "butane" msgstr[0] "丁烷" -#. ~ Description for {'str_sp': 'butane'} +#. ~ Description for butane #: lang/json/AMMO_from_json.py msgid "A common flammable liquid used in lighters." msgstr "一種常用在打火機的易燃液體。" @@ -70,7 +70,7 @@ msgid "aerosol paint" msgid_plural "aerosol paint" msgstr[0] "噴漆" -#. ~ Description for {'str_sp': 'aerosol paint'} +#. ~ Description for aerosol paint #: lang/json/AMMO_from_json.py msgid "" "A paint that comes in a sealed, pressurized container and is released in an " @@ -82,7 +82,7 @@ msgid "permanent ink" msgid_plural "permanent ink" msgstr[0] "奇異筆墨水" -#. ~ Description for {'str_sp': 'permanent ink'} +#. ~ Description for permanent ink #: lang/json/AMMO_from_json.py msgid "" "A ink comprises a main carrier solvent, a glyceride, a pyrrolidone, a resin " @@ -94,7 +94,7 @@ msgid "candle wax" msgid_plural "candle wax" msgstr[0] "燭蠟" -#. ~ Description for {'str_sp': 'candle wax'} +#. ~ Description for candle wax #: lang/json/AMMO_from_json.py msgid "A flammable solid substance used to make candles." msgstr "一種用來製作蠟燭的可燃固態物質。" @@ -104,7 +104,7 @@ msgid "flare pyrotechnic" msgid_plural "flare pyrotechnic" msgstr[0] "照明藥劑" -#. ~ Description for {'str_sp': 'flare pyrotechnic'} +#. ~ Description for flare pyrotechnic #: lang/json/AMMO_from_json.py msgid "A pyrotechnic chemical used in flares." msgstr "照明彈所使用的煙火化學物。" @@ -126,7 +126,7 @@ msgid "oxygen" msgid_plural "oxygen" msgstr[0] "氧氣" -#. ~ Description for {'str_sp': 'oxygen'} +#. ~ Description for oxygen #: lang/json/AMMO_from_json.py msgid "Compressed medical oxygen." msgstr "壓縮過的醫用氧氣。" @@ -136,7 +136,7 @@ msgid "aluminum foil" msgid_plural "aluminum foil" msgstr[0] "鋁箔" -#. ~ Description for {'str_sp': 'aluminum foil'} +#. ~ Description for aluminum foil #: lang/json/AMMO_from_json.py msgid "" "A thin foil made of aluminum. Sometimes called 'tin foil' due to being made" @@ -158,7 +158,7 @@ msgid "thread" msgid_plural "thread" msgstr[0] "縫線" -#. ~ Description for {'str_sp': 'thread'} +#. ~ Description for thread #: lang/json/AMMO_from_json.py msgid "A small quantity of thread that could be used to refill a sewing kit." msgstr "一小段棉線,能夠補充針線包。" @@ -188,7 +188,7 @@ msgid "yarn" msgid_plural "yarn" msgstr[0] "毛線" -#. ~ Description for {'str_sp': 'yarn'} +#. ~ Description for yarn #: lang/json/AMMO_from_json.py msgid "Wool yarn, could be used to knit wool clothing." msgstr "毛紗能夠用來織成羊毛衣物。" @@ -208,7 +208,7 @@ msgid "duct tape" msgid_plural "duct tape" msgstr[0] "大力膠帶" -#. ~ Description for {'str_sp': 'duct tape'} +#. ~ Description for duct tape #: lang/json/AMMO_from_json.py msgid "A roll of incredibly strong tape. Its uses are innumerable." msgstr "一捆非常強韌的膠帶。用途很多。" @@ -265,8 +265,8 @@ msgid "plutonium slurry" msgid_plural "plutonium slurry" msgstr[0] "鈽漿液" -#. ~ Description for {'str_sp': 'plutonium slurry'} -#. ~ Description for {'str_sp': 'watery plutonium slurry'} +#. ~ Description for plutonium slurry +#. ~ Description for watery plutonium slurry #: lang/json/AMMO_from_json.py msgid "" "Highly radioactive slurry. It is probably best to get far away from this." @@ -324,7 +324,7 @@ msgid "bearings" msgid_plural "bearings" msgstr[0] "軸承滾珠" -#. ~ Description for {'str_sp': 'bearings'} +#. ~ Description for bearings #: lang/json/AMMO_from_json.py msgid "A box of ball bearings, useful as ammunition for slingshots." msgstr "一箱滾珠軸承,裡面的滾珠可以用在彈弓上。" @@ -366,7 +366,7 @@ msgid "120mm HEAT" msgid_plural "120mm HEAT" msgstr[0] "反坦克高爆彈" -#. ~ Description for {'str_sp': '120mm HEAT'} +#. ~ Description for 120mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 120mm high-explosive anti-tank round. It could ruin anyone's whole day." @@ -389,7 +389,7 @@ msgid "mixed smokeless gunpowder" msgid_plural "mixed smokeless gunpowder" msgstr[0] "混合無煙火藥" -#. ~ Description for {'str_sp': 'mixed smokeless gunpowder'} +#. ~ Description for mixed smokeless gunpowder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder, mixed without concern for composition, burn rate " @@ -402,7 +402,7 @@ msgid "smokeless shotgun powder" msgid_plural "smokeless shotgun powder" msgstr[0] "無煙霰彈火藥" -#. ~ Description for {'str_sp': 'smokeless shotgun powder'} +#. ~ Description for smokeless shotgun powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in shotgun shells." msgstr "槍械等級的火藥粉,主要用於裝填霰彈。" @@ -412,7 +412,7 @@ msgid "smokeless pistol powder" msgid_plural "smokeless pistol powder" msgstr[0] "無煙手槍子彈火藥" -#. ~ Description for {'str_sp': 'smokeless pistol powder'} +#. ~ Description for smokeless pistol powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder, intended for use in pistol ammunition." msgstr "槍械等級的火藥粉,主要用於裝填手槍用子彈。" @@ -422,7 +422,7 @@ msgid "smokeless magnum powder" msgid_plural "smokeless magnum powder" msgstr[0] "無煙麥格農子彈火藥" -#. ~ Description for {'str_sp': 'smokeless magnum powder'} +#. ~ Description for smokeless magnum powder #: lang/json/AMMO_from_json.py msgid "" "Firearm-quality gunpowder intended for use in magnum pistol ammunition." @@ -433,7 +433,7 @@ msgid "smokeless rifle powder" msgid_plural "smokeless rifle powder" msgstr[0] "無煙步槍子彈火藥" -#. ~ Description for {'str_sp': 'smokeless rifle powder'} +#. ~ Description for smokeless rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in rifle ammunition." msgstr "槍械等級的火藥粉,主要用於裝填步槍用子彈。" @@ -443,7 +443,7 @@ msgid "smokeless overbore rifle powder" msgid_plural "smokeless overbore rifle powder" msgstr[0] "無煙大型步槍子彈火藥" -#. ~ Description for {'str_sp': 'smokeless overbore rifle powder'} +#. ~ Description for smokeless overbore rifle powder #: lang/json/AMMO_from_json.py msgid "Firearm-quality gunpowder intended for use in large rifle ammunition." msgstr "槍械等級的火藥粉,主要用於裝填大型步槍用子彈。" @@ -453,7 +453,7 @@ msgid "artillery propellant" msgid_plural "artillery propellant" msgstr[0] "火砲裝藥" -#. ~ Description for {'str_sp': 'artillery propellant'} +#. ~ Description for artillery propellant #: lang/json/AMMO_from_json.py msgid "" "Single base smokeless gunpowder intended for use in artillery propelling " @@ -465,7 +465,7 @@ msgid "oxidizer powder" msgid_plural "oxidizer powder" msgstr[0] "氧化劑粉" -#. ~ Description for {'str_sp': 'oxidizer powder'} +#. ~ Description for oxidizer powder #: lang/json/AMMO_from_json.py msgid "Volatile powdered chemical oxidizer." msgstr "揮發性粉狀化學氧化劑。" @@ -475,7 +475,7 @@ msgid "lye powder" msgid_plural "lye powder" msgstr[0] "鹼粉" -#. ~ Description for {'str_sp': 'lye powder'} +#. ~ Description for lye powder #: lang/json/AMMO_from_json.py msgid "Powdered caustic soda." msgstr "粉末狀苛性鈉。" @@ -557,7 +557,7 @@ msgid "copper" msgid_plural "copper" msgstr[0] "銅" -#. ~ Description for {'str_sp': 'copper'} +#. ~ Description for copper #: lang/json/AMMO_from_json.py msgid "" "Copper bits. Could be used to craft something, for example makeshift " @@ -569,7 +569,7 @@ msgid "medical tape" msgid_plural "medical tape" msgstr[0] "醫用膠帶" -#. ~ Description for {'str_sp': 'medical tape'} +#. ~ Description for medical tape #: lang/json/AMMO_from_json.py msgid "A roll of medical tape, similar to duct tape." msgstr "一捆醫療用的膠帶,類似大力膠帶。" @@ -580,7 +580,7 @@ msgid_plural "placeholder ammunitions" msgstr[0] "彈藥預留位置" #. ~ Description for placeholder ammunition -#. ~ Description for {'str_sp': 'software'} +#. ~ Description for software #: lang/json/AMMO_from_json.py lang/json/GENERIC_from_json.py msgid "IF YOU ARE SEEING THIS IT IS A BUG." msgstr "你看到這個的話就是有 BUG。" @@ -590,7 +590,7 @@ msgid "charcoal" msgid_plural "charcoal" msgstr[0] "木炭" -#. ~ Description for {'str_sp': 'charcoal'} +#. ~ Description for charcoal #: lang/json/AMMO_from_json.py msgid "" "A flammable carbon-based material produced by slowly burning wood. Utilized" @@ -603,7 +603,7 @@ msgid "calcium carbide premix" msgid_plural "calcium carbide premix" msgstr[0] "碳化鈣預混料" -#. ~ Description for {'str_sp': 'calcium carbide premix'} +#. ~ Description for calcium carbide premix #: lang/json/AMMO_from_json.py msgid "" "A powdered mixture of coke and lime ready to be smelted into usable calcium " @@ -627,7 +627,7 @@ msgid "albuterol" msgid_plural "albuterol" msgstr[0] "沙丁胺醇" -#. ~ Description for {'str_sp': 'albuterol'} +#. ~ Description for albuterol #: lang/json/AMMO_from_json.py msgid "" "A bronchodilator that relaxes muscles in the airways and increases air flow " @@ -710,7 +710,7 @@ msgid "nicotine liquid" msgid_plural "nicotine liquid" msgstr[0] "菸鹼液" -#. ~ Description for {'str_sp': 'nicotine liquid'} +#. ~ Description for nicotine liquid #: lang/json/AMMO_from_json.py msgid "" "A liquid that is made up of propylene glycol, vegetable glycerin, " @@ -722,7 +722,7 @@ msgid "fish bait" msgid_plural "fish bait" msgstr[0] "魚餌" -#. ~ Description for {'str_sp': 'fish bait'} +#. ~ Description for fish bait #: lang/json/AMMO_from_json.py msgid "A bait used in traps to lure fish." msgstr "一個用於捕魚陷阱的魚餌。" @@ -771,7 +771,7 @@ msgid "unfinished charcoal" msgid_plural "unfinished charcoal" msgstr[0] "木炭失敗品" -#. ~ Description for {'str_sp': 'unfinished charcoal'} +#. ~ Description for unfinished charcoal #: lang/json/AMMO_from_json.py msgid "" "The result of an interrupted charcoal making process. Useless, except as " @@ -783,7 +783,7 @@ msgid "unfinished calcium carbide" msgid_plural "unfinished calcium carbide" msgstr[0] "未完成的碳化鈣" -#. ~ Description for {'str_sp': 'unfinished calcium carbide'} +#. ~ Description for unfinished calcium carbide #: lang/json/AMMO_from_json.py msgid "" "The incomplete process of converting coal and lime into calcium carbide. " @@ -805,7 +805,7 @@ msgid "nitrox" msgid_plural "nitrox" msgstr[0] "高氧" -#. ~ Description for {'str_sp': 'nitrox'} +#. ~ Description for nitrox #: lang/json/AMMO_from_json.py msgid "Mixture of oxygen and nitrogen in proportions suitable for diving." msgstr "氧氣和氮氣以特定比例混和,用於潛水。" @@ -815,7 +815,7 @@ msgid "extinguishing agent" msgid_plural "extinguishing agent" msgstr[0] "滅火劑" -#. ~ Description for {'str_sp': 'extinguishing agent'} +#. ~ Description for extinguishing agent #: lang/json/AMMO_from_json.py msgid "Dry chemical solution effective in extinguishing fires." msgstr "能夠有效滅火的乾燥化學物質。" @@ -825,7 +825,7 @@ msgid "tinder" msgid_plural "tinder" msgstr[0] "火種" -#. ~ Description for {'str_sp': 'tinder'} +#. ~ Description for tinder #: lang/json/AMMO_from_json.py msgid "Flammable material, finely divided for easy combustion." msgstr "易燃材料,為了方便點燃而分成碎塊。" @@ -855,7 +855,7 @@ msgid "bronze" msgid_plural "bronze" msgstr[0] "青銅" -#. ~ Description for {'str_sp': 'bronze'} +#. ~ Description for bronze #: lang/json/AMMO_from_json.py msgid "Decent-sized chunks of bronze, for fashioning some old-school items." msgstr "一塊尺寸適中的青銅,用於製作一些舊時代的物品。" @@ -865,7 +865,7 @@ msgid "glowstick juice" msgid_plural "glowstick juice" msgstr[0] "螢光液體" -#. ~ Description for {'str_sp': 'glowstick juice'} +#. ~ Description for glowstick juice #: lang/json/AMMO_from_json.py msgid "" "A mix of blue dye, base catalyst, and diphenyl oxalate used in glowsticks." @@ -876,7 +876,7 @@ msgid "graphite" msgid_plural "graphite" msgstr[0] "石墨" -#. ~ Description for {'str_sp': 'graphite'} +#. ~ Description for graphite #: lang/json/AMMO_from_json.py msgid "" "Graphite powder mixed with a clay binder. Produces grey or black marks that" @@ -889,7 +889,7 @@ msgid "black pen ink" msgid_plural "black pen ink" msgstr[0] "黑墨水" -#. ~ Description for {'str_sp': 'black pen ink'} +#. ~ Description for black pen ink #: lang/json/AMMO_from_json.py msgid "" "Carbon black pigment infused with polymers, stabilizers and water to help " @@ -901,7 +901,7 @@ msgid "blue pen ink" msgid_plural "blue pen ink" msgstr[0] "藍墨水" -#. ~ Description for {'str_sp': 'blue pen ink'} +#. ~ Description for blue pen ink #: lang/json/AMMO_from_json.py msgid "" "Prussian blue, crystal violet and phthalocyanine blue pigments infused with " @@ -913,7 +913,7 @@ msgid "green pen ink" msgid_plural "green pen ink" msgstr[0] "綠墨水" -#. ~ Description for {'str_sp': 'green pen ink'} +#. ~ Description for green pen ink #: lang/json/AMMO_from_json.py msgid "" "Chlorophyll pigment infused with polymers, stabilizers and water to help the" @@ -925,7 +925,7 @@ msgid "red pen ink" msgid_plural "red pen ink" msgstr[0] "紅墨水" -#. ~ Description for {'str_sp': 'red pen ink'} +#. ~ Description for red pen ink #: lang/json/AMMO_from_json.py msgid "" "Eosin dye infused with polymers, stabilizers and water to help the ink flow " @@ -950,7 +950,7 @@ msgid "sulfur" msgid_plural "sulfur" msgstr[0] "硫磺" -#. ~ Description for {'str_sp': 'sulfur'} +#. ~ Description for sulfur #: lang/json/AMMO_from_json.py msgid "" "A handful of pure sulfur. Primarily used to make battery acid, sulfur is " @@ -974,7 +974,7 @@ msgid "cement" msgid_plural "cement" msgstr[0] "水泥" -#. ~ Description for {'str_sp': 'cement'} +#. ~ Description for cement #: lang/json/AMMO_from_json.py msgid "" "Portland is most likely long gone, but its memory persists in cement. This " @@ -987,7 +987,7 @@ msgid "gravel" msgid_plural "gravel" msgstr[0] "礫石" -#. ~ Description for {'str_sp': 'gravel'} +#. ~ Description for gravel #: lang/json/AMMO_from_json.py msgid "A handful of gravel, smaller than pebbles but larger than sand." msgstr "" @@ -997,7 +997,7 @@ msgid "limestone" msgid_plural "limestone" msgstr[0] "石灰石" -#. ~ Description for {'str_sp': 'limestone'} +#. ~ Description for limestone #: lang/json/AMMO_from_json.py msgid "" "A handful of small chunks of limestone. Useful for experiments at science " @@ -1010,7 +1010,7 @@ msgid "quicklime" msgid_plural "quicklime" msgstr[0] "生石灰" -#. ~ Description for {'str_sp': 'quicklime'} +#. ~ Description for quicklime #: lang/json/AMMO_from_json.py msgid "" "The product of burning limestone, this white powder is a crucial ingredient " @@ -1026,7 +1026,7 @@ msgid "sand" msgid_plural "sand" msgstr[0] "沙子" -#. ~ Description for {'str_sp': 'sand'} +#. ~ Description for sand #: lang/json/AMMO_from_json.py msgid "" "A handful of New England sand. If you had a stoked furnace, you could turn " @@ -1038,7 +1038,7 @@ msgid "soil" msgid_plural "soil" msgstr[0] "土壤" -#. ~ Description for {'str_sp': 'soil'} +#. ~ Description for soil #: lang/json/AMMO_from_json.py msgid "" "A pile of loosely-packed, slightly damp loamy soil. This mixture of sand, " @@ -1050,7 +1050,7 @@ msgid "aluminum powder" msgid_plural "aluminum powder" msgstr[0] "鋁粉" -#. ~ Description for {'str_sp': 'aluminum powder'} +#. ~ Description for aluminum powder #: lang/json/AMMO_from_json.py msgid "" "A handful of finely-ground aluminum powder. This strong reducing agent was " @@ -1064,7 +1064,7 @@ msgid "zinc powder" msgid_plural "zinc powder" msgstr[0] "鋅粉" -#. ~ Description for {'str_sp': 'zinc powder'} +#. ~ Description for zinc powder #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc powder. While commercially used mostly in cosmetics and " @@ -1078,7 +1078,7 @@ msgid "zinc oxide" msgid_plural "zinc oxide" msgstr[0] "氧化鋅" -#. ~ Description for {'str_sp': 'zinc oxide'} +#. ~ Description for zinc oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of zinc oxide. It can be reduced into zinc, or used for some " @@ -1090,7 +1090,7 @@ msgid "manganese dioxide" msgid_plural "manganese dioxide" msgstr[0] "二氧化錳" -#. ~ Description for {'str_sp': 'manganese dioxide'} +#. ~ Description for manganese dioxide #: lang/json/AMMO_from_json.py msgid "" "A handful of manganese dioxide powder. Occurring naturally in the mineral " @@ -1103,7 +1103,7 @@ msgid "potassium chloride" msgid_plural "potassium chloride" msgstr[0] "氯化鉀" -#. ~ Description for {'str_sp': 'potassium chloride'} +#. ~ Description for potassium chloride #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium chloride. Although it occurs naturally in the " @@ -1117,7 +1117,7 @@ msgid "potassium hydroxide" msgid_plural "potassium hydroxide" msgstr[0] "氫氧化鉀" -#. ~ Description for {'str_sp': 'potassium hydroxide'} +#. ~ Description for potassium hydroxide #: lang/json/AMMO_from_json.py msgid "" "A handful of potassium hydroxide. Commonly called caustic potash, it was " @@ -1130,7 +1130,7 @@ msgid "acetone" msgid_plural "acetone" msgstr[0] "丙酮" -#. ~ Description for {'str_sp': 'acetone'} +#. ~ Description for acetone #: lang/json/AMMO_from_json.py msgid "" "Acetone, best known as the primary constituent of most nail polish removers." @@ -1143,7 +1143,7 @@ msgid "chromium oxide" msgid_plural "chromium oxide" msgstr[0] "氧化鉻" -#. ~ Description for {'str_sp': 'chromium oxide'} +#. ~ Description for chromium oxide #: lang/json/AMMO_from_json.py msgid "" "A handful of chromium oxide. This substance, typically known as the only " @@ -1159,7 +1159,7 @@ msgid "calcium carbide" msgid_plural "calcium carbide" msgstr[0] "碳化鈣" -#. ~ Description for {'str_sp': 'calcium carbide'} +#. ~ Description for calcium carbide #: lang/json/AMMO_from_json.py msgid "" "A handful of calcium carbide, giving off a faint, garlic-like smell. " @@ -1175,7 +1175,7 @@ msgid "hexamine" msgid_plural "hexamine" msgstr[0] "烏洛托品" -#. ~ Description for {'str_sp': 'hexamine'} +#. ~ Description for hexamine #: lang/json/AMMO_from_json.py msgid "" "A handful of waxy hexamine tablets. This ubiquitous fuel was used to start " @@ -1191,7 +1191,7 @@ msgid "hydrogen peroxide (concentrated)" msgid_plural "hydrogen peroxide (concentrated)" msgstr[0] "過氧化氫 (未稀釋)" -#. ~ Description for {'str_sp': 'hydrogen peroxide (concentrated)'} +#. ~ Description for hydrogen peroxide (concentrated) #: lang/json/AMMO_from_json.py msgid "" "Concentrated hydrogen peroxide is a powerful oxidant, violently decomposing " @@ -1206,7 +1206,7 @@ msgid "ammonium nitrate" msgid_plural "ammonium nitrate" msgstr[0] "硝酸氨" -#. ~ Description for {'str_sp': 'ammonium nitrate'} +#. ~ Description for ammonium nitrate #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate. This white, crystalline powder is commonly used as a" @@ -1220,7 +1220,7 @@ msgid "ammonium nitrate pellets" msgid_plural "ammonium nitrate pellets" msgstr[0] "硝酸氨顆粒" -#. ~ Description for {'str_sp': 'ammonium nitrate pellets'} +#. ~ Description for ammonium nitrate pellets #: lang/json/AMMO_from_json.py msgid "" "Some ammonium nitrate pellets. These pellets are commonly used as a " @@ -1234,7 +1234,7 @@ msgid "saltpeter" msgid_plural "saltpeter" msgstr[0] "硝酸鉀" -#. ~ Description for {'str_sp': 'saltpeter'} +#. ~ Description for saltpeter #: lang/json/AMMO_from_json.py msgid "" "A handful of saltpeter. Sometimes used as a fertilizer, this ubiquitous " @@ -1247,7 +1247,7 @@ msgid "niter" msgid_plural "niter" msgstr[0] "硝石" -#. ~ Description for {'str_sp': 'niter'} +#. ~ Description for niter #: lang/json/AMMO_from_json.py msgid "" "A large crystal of niter, the mineral form of potassium nitrate. It can be " @@ -1259,7 +1259,7 @@ msgid "aluminum sulfate" msgid_plural "aluminum sulfate" msgstr[0] "硫酸鋁" -#. ~ Description for {'str_sp': 'aluminum sulfate'} +#. ~ Description for aluminum sulfate #: lang/json/AMMO_from_json.py msgid "" "Several crystals of aluminum sulfate. Historically, an agent for purifying " @@ -1276,7 +1276,7 @@ msgid "acetic acid" msgid_plural "acetic acid" msgstr[0] "乙酸" -#. ~ Description for {'str_sp': 'acetic acid'} +#. ~ Description for acetic acid #: lang/json/AMMO_from_json.py msgid "" "Concentrated acetic acid, typically used as a chemical reagent and " @@ -1291,7 +1291,7 @@ msgid "formaldehyde" msgid_plural "formaldehyde" msgstr[0] "甲醛" -#. ~ Description for {'str_sp': 'formaldehyde'} +#. ~ Description for formaldehyde #: lang/json/AMMO_from_json.py msgid "" "Formaldehyde, here dissolved in water, was widely used before the Cataclysm " @@ -1305,7 +1305,7 @@ msgid "thermite" msgid_plural "thermite" msgstr[0] "鋁熱劑" -#. ~ Description for {'str_sp': 'thermite'} +#. ~ Description for thermite #: lang/json/AMMO_from_json.py msgid "" "A handful of silvery-greenish powder, produced by mixing aluminum and " @@ -1320,7 +1320,7 @@ msgid "ANFO" msgid_plural "ANFO" msgstr[0] "銨油炸藥" -#. ~ Description for {'str_sp': 'ANFO'} +#. ~ Description for ANFO #: lang/json/AMMO_from_json.py msgid "" "Several brownish pellets that were made by allowing ammonium nitrate to " @@ -1335,7 +1335,7 @@ msgid "black gunpowder" msgid_plural "black gunpowder" msgstr[0] "黑火藥" -#. ~ Description for {'str_sp': 'black gunpowder'} +#. ~ Description for black gunpowder #: lang/json/AMMO_from_json.py msgid "" "A handful of black gunpowder, a mix of saltpeter, charcoal and sulfur. " @@ -1350,7 +1350,7 @@ msgid "match head powder" msgid_plural "match head powder" msgstr[0] "火柴頭粉" -#. ~ Description for {'str_sp': 'match head powder'} +#. ~ Description for match head powder #: lang/json/AMMO_from_json.py msgid "" "Some match head powder from match heads, similar to black gunpowder but a " @@ -1363,7 +1363,7 @@ msgid "RDX" msgid_plural "RDX" msgstr[0] "旋風炸藥" -#. ~ Description for {'str_sp': 'RDX'} +#. ~ Description for RDX #: lang/json/AMMO_from_json.py msgid "" "Several off-white crystals of RDX, or hexogen: a military-grade, shelf-" @@ -1377,7 +1377,7 @@ msgid "composition b" msgid_plural "composition b" msgstr[0] "B炸藥" -#. ~ Description for {'str_sp': 'composition b'} +#. ~ Description for composition b #: lang/json/AMMO_from_json.py msgid "" "Composition B is an explosive consisting of castable mixtures of RDX and " @@ -1390,7 +1390,7 @@ msgid "HMTD" msgid_plural "HMTD" msgstr[0] "六甲氧胺" -#. ~ Description for {'str_sp': 'HMTD'} +#. ~ Description for HMTD #: lang/json/AMMO_from_json.py msgid "" "Hexamine peroxide: this fine, yellowish powder is a powerful primary " @@ -1404,7 +1404,7 @@ msgid "APEX" msgid_plural "APEX" msgstr[0] "APEX" -#. ~ Description for {'str_sp': 'APEX'} +#. ~ Description for APEX #: lang/json/AMMO_from_json.py msgid "" "Acetone peroxide: this fine, white crystalline powder is a powerful primary " @@ -1419,7 +1419,7 @@ msgid "improvised rocket fuel" msgid_plural "improvised rocket fuel" msgstr[0] "粗製火箭燃料" -#. ~ Description for {'str_sp': 'improvised rocket fuel'} +#. ~ Description for improvised rocket fuel #: lang/json/AMMO_from_json.py msgid "" "A chunk of a zinc powder and sulfur mixture, bound together by superglue, " @@ -1431,7 +1431,7 @@ msgid "detergent" msgid_plural "detergent" msgstr[0] "洗衣粉" -#. ~ Description for {'str_sp': 'detergent'} +#. ~ Description for detergent #: lang/json/AMMO_from_json.py msgid "A popular pre-Cataclysm washing powder." msgstr "一款於災變前隨處可見的洗衣粉。" @@ -1441,7 +1441,7 @@ msgid "soap flakes" msgid_plural "soap flakes" msgstr[0] "肥皂片" -#. ~ Description for {'str_sp': 'soap flakes'} +#. ~ Description for soap flakes #: lang/json/AMMO_from_json.py msgid "A bar of soap cut into flakes suitable for use in a washing machine." msgstr "一塊肥皂,切成薄片,適合在洗衣機中使用。" @@ -1497,7 +1497,7 @@ msgid "concentrated venom" msgid_plural "concentrated venom" msgstr[0] "濃縮毒液" -#. ~ Description for {'str_sp': 'concentrated venom'} +#. ~ Description for concentrated venom #: lang/json/AMMO_from_json.py msgid "" "A transparent, lightly greenish liquid, refined from the venom of bees and " @@ -1512,7 +1512,7 @@ msgid "concentrated paralytic" msgid_plural "concentrated paralytic" msgstr[0] "濃縮麻痺毒" -#. ~ Description for {'str_sp': 'concentrated paralytic'} +#. ~ Description for concentrated paralytic #: lang/json/AMMO_from_json.py msgid "" "The concentrated paralytic agent, originally from a triffid. Given your " @@ -1527,7 +1527,7 @@ msgid "rocuronium" msgid_plural "rocuronium" msgstr[0] "羅庫諾林(rocuronium)" -#. ~ Description for {'str_sp': 'rocuronium'} +#. ~ Description for rocuronium #: lang/json/AMMO_from_json.py msgid "" "Rocuronium bromide, a fast-acting muscle relaxant. Used primarily in " @@ -1540,7 +1540,7 @@ msgid "red phosphorous" msgid_plural "red phosphorous" msgstr[0] "" -#. ~ Description for {'str_sp': 'red phosphorous'} +#. ~ Description for red phosphorous #: lang/json/AMMO_from_json.py msgid "" "An allotrope of the element phosphorous. It's what you use to light " @@ -1552,7 +1552,7 @@ msgid "iodine crystal" msgid_plural "iodine crystal" msgstr[0] "" -#. ~ Description for {'str_sp': 'iodine crystal'} +#. ~ Description for iodine crystal #: lang/json/AMMO_from_json.py msgid "" "Resublimed crystals of the element iodine, can be used as an antiseptic, but" @@ -1564,7 +1564,7 @@ msgid "ethanol" msgid_plural "ethanol" msgstr[0] "乙醇" -#. ~ Description for {'str_sp': 'ethanol'} +#. ~ Description for ethanol #: lang/json/AMMO_from_json.py msgid "" "Extremely pure alcohol suitable for use as a component in chemical " @@ -1591,7 +1591,7 @@ msgid "methanol" msgid_plural "methanol" msgstr[0] "甲醇" -#. ~ Description for {'str_sp': 'methanol'} +#. ~ Description for methanol #: lang/json/AMMO_from_json.py msgid "" "High purity methanol suitable for use in chemical reactions. Could be used " @@ -1604,7 +1604,7 @@ msgid "diesel" msgid_plural "diesel" msgstr[0] "柴油" -#. ~ Description for {'str_sp': 'diesel'} +#. ~ Description for diesel #: lang/json/AMMO_from_json.py msgid "" "Petroleum-based fuel made from a byproduct of the gasoline making process." @@ -1615,7 +1615,7 @@ msgid "JP8 fuel" msgid_plural "JP8 fuel" msgstr[0] "JP8 燃料" -#. ~ Description for {'str_sp': 'JP8 fuel'} +#. ~ Description for JP8 fuel #: lang/json/AMMO_from_json.py msgid "" "A kerosene-based fuel used mainly by US military vehicles as a replacement " @@ -1627,7 +1627,7 @@ msgid "avgas fuel" msgid_plural "avgas fuel" msgstr[0] "航空汽油" -#. ~ Description for {'str_sp': 'avgas fuel'} +#. ~ Description for avgas fuel #: lang/json/AMMO_from_json.py msgid "A specialized type of petroleum-based fuel used to power aircraft." msgstr "給飛行器的以石油為基底的特殊燃料。" @@ -1637,7 +1637,7 @@ msgid "biodiesel" msgid_plural "biodiesel" msgstr[0] "生質柴油" -#. ~ Description for {'str_sp': 'biodiesel'} +#. ~ Description for biodiesel #: lang/json/AMMO_from_json.py msgid "" "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain " @@ -1650,7 +1650,7 @@ msgid "gasoline" msgid_plural "gasoline" msgstr[0] "汽油" -#. ~ Description for {'str_sp': 'gasoline'} +#. ~ Description for gasoline #: lang/json/AMMO_from_json.py msgid "" "Gasoline is a highly flammable liquid. When under pressure, it has the " @@ -1662,7 +1662,7 @@ msgid "lamp oil" msgid_plural "lamp oil" msgstr[0] "燈油" -#. ~ Description for {'str_sp': 'lamp oil'} +#. ~ Description for lamp oil #: lang/json/AMMO_from_json.py msgid "A thin and clean-burning oil made for use in oil lamps." msgstr "一份無煙輕油,適用於油燈。" @@ -1672,7 +1672,7 @@ msgid "motor oil" msgid_plural "motor oil" msgstr[0] "機油" -#. ~ Description for {'str_sp': 'motor oil'} +#. ~ Description for motor oil #: lang/json/AMMO_from_json.py msgid "An oil made for use in car engines." msgstr "用於汽車引擎的油。" @@ -1682,7 +1682,7 @@ msgid "napalm" msgid_plural "napalm" msgstr[0] "凝固汽油" -#. ~ Description for {'str_sp': 'napalm'} +#. ~ Description for napalm #: lang/json/AMMO_from_json.py msgid "" "This is gasoline mixed with some other components to make it stick to the " @@ -1695,7 +1695,7 @@ msgid "gelled gasoline" msgid_plural "gelled gasoline" msgstr[0] "膠凝汽油" -#. ~ Description for {'str_sp': 'gelled gasoline'} +#. ~ Description for gelled gasoline #: lang/json/AMMO_from_json.py msgid "" "A flammable gel composed of gasoline and dissolved shavings of polystyrene, " @@ -1708,7 +1708,7 @@ msgid "flamethrower fuel" msgid_plural "flamethrower fuel" msgstr[0] "火焰噴射器燃料" -#. ~ Description for {'str_sp': 'flamethrower fuel'} +#. ~ Description for flamethrower fuel #: lang/json/AMMO_from_json.py msgid "" "A mixture of gasoline and diesel oil in equal parts. Its combustion " @@ -1744,7 +1744,7 @@ msgid "shrapnel" msgid_plural "shrapnel" msgstr[0] "彈片" -#. ~ Description for {'str_sp': 'shrapnel'} +#. ~ Description for shrapnel #: lang/json/AMMO_from_json.py msgid "A twisted shard of jagged metal." msgstr "一塊扭曲尖銳的金屬碎片。" @@ -1795,7 +1795,7 @@ msgid "10mm Auto FMJ" msgid_plural "10mm Auto FMJ" msgstr[0] "10mm Auto全金屬披甲彈" -#. ~ Description for {'str_sp': '10mm Auto FMJ'} +#. ~ Description for 10mm Auto FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed 10mm Auto ammunition with 180gr bullets. The 10mm Auto cartridge " @@ -1818,7 +1818,7 @@ msgid "H&K 12mm" msgid_plural "H&K 12mm" msgstr[0] "H&K 12mm 子彈" -#. ~ Description for {'str_sp': 'H&K 12mm'} +#. ~ Description for H&K 12mm #: lang/json/AMMO_from_json.py msgid "" "The Heckler & Koch 12mm projectiles are used in H&K railguns. It's made of " @@ -1855,7 +1855,7 @@ msgid "20x66mm buckshot, handmade" msgid_plural "20x66mm buckshot, handmade" msgstr[0] "20x66mm 獵鹿彈 (手工製 )" -#. ~ Description for {'str_sp': '20x66mm buckshot, handmade'} +#. ~ Description for 20x66mm buckshot, handmade #: lang/json/AMMO_from_json.py msgid "" "Handcrafted bootleg duplicates of Rivtech 20x66mm caseless buckshot rounds." @@ -1879,7 +1879,7 @@ msgid "20x66mm explosive" msgid_plural "20x66mm explosive" msgstr[0] "20x66mm 爆裂彈" -#. ~ Description for {'str_sp': '20x66mm explosive'} +#. ~ Description for 20x66mm explosive #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive projectile type. Proprietary " @@ -1918,7 +1918,7 @@ msgid "20x66mm frag" msgid_plural "20x66mm frag" msgstr[0] "20x66mm 破片彈" -#. ~ Description for {'str_sp': '20x66mm frag'} +#. ~ Description for 20x66mm frag #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, explosive fragmentation type. Proprietary " @@ -1931,7 +1931,7 @@ msgid "20x66mm incendiary" msgid_plural "20x66mm incendiary" msgstr[0] "20x66mm 燃燒彈" -#. ~ Description for {'str_sp': '20x66mm incendiary'} +#. ~ Description for 20x66mm incendiary #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, incendiary type. Proprietary ammunition " @@ -1944,7 +1944,7 @@ msgid "20x66mm buckshot" msgid_plural "20x66mm buckshot" msgstr[0] "20x66mm 獵鹿彈" -#. ~ Description for {'str_sp': '20x66mm buckshot'} +#. ~ Description for 20x66mm buckshot #: lang/json/AMMO_from_json.py msgid "" "20x66mm caseless shotgun rounds, buckshot type. Proprietary ammunition for " @@ -1970,7 +1970,7 @@ msgid ".22 CB" msgid_plural ".22 CB" msgstr[0] ".22 CB 子彈" -#. ~ Description for {'str_sp': '.22 CB'} +#. ~ Description for .22 CB #: lang/json/AMMO_from_json.py msgid "" "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet " @@ -1985,7 +1985,7 @@ msgid ".22 FMJ" msgid_plural ".22 FMJ" msgstr[0] ".22 全金屬披甲彈" -#. ~ Description for {'str_sp': '.22 FMJ'} +#. ~ Description for .22 FMJ #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is " @@ -2000,7 +2000,7 @@ msgid ".22 LR" msgid_plural ".22 LR" msgstr[0] ".22 長口徑步槍子彈" -#. ~ Description for {'str_sp': '.22 LR'} +#. ~ Description for .22 LR #: lang/json/AMMO_from_json.py msgid "" ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is " @@ -2015,7 +2015,7 @@ msgid ".22 rat-shot" msgid_plural ".22 rat-shot" msgstr[0] ".22 鼠彈" -#. ~ Description for {'str_sp': '.22 rat-shot'} +#. ~ Description for .22 rat-shot #: lang/json/AMMO_from_json.py msgid "" "A .22 caliber cartridge loaded with very small pieces of shot contained " @@ -2048,7 +2048,7 @@ msgid ".223 Remington" msgid_plural ".223 Remington" msgstr[0] ".223 雷明登" -#. ~ Description for {'str_sp': '.223 Remington'} +#. ~ Description for .223 Remington #: lang/json/AMMO_from_json.py msgid "" ".223 Remington ammunition with 55gr FMJ-BT bullets, patterned after the M193" @@ -2064,7 +2064,7 @@ msgid "5.56 NATO Mk 262" msgid_plural "5.56 NATO Mk 262" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 262'} +#. ~ Description for 5.56 NATO Mk 262 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and " @@ -2079,7 +2079,7 @@ msgid "5.56 NATO Mk 318" msgid_plural "5.56 NATO Mk 318" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO Mk 318'} +#. ~ Description for 5.56 NATO Mk 318 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 " @@ -2095,7 +2095,7 @@ msgid "5.56 NATO M855" msgid_plural "5.56 NATO M855" msgstr[0] "" -#. ~ Description for {'str_sp': '5.56 NATO M855'} +#. ~ Description for 5.56 NATO M855 #: lang/json/AMMO_from_json.py msgid "" "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. " @@ -2112,7 +2112,7 @@ msgid "5.56 NATO M855A1" msgid_plural "5.56 NATO M855A1" msgstr[0] "5.56 NATO M855A1 子彈" -#. ~ Description for {'str_sp': '5.56 NATO M855A1'} +#. ~ Description for 5.56 NATO M855A1 #: lang/json/AMMO_from_json.py msgid "" "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain " @@ -2129,7 +2129,7 @@ msgid "5.56 NATO tracer" msgid_plural "5.56 NATO tracer" msgstr[0] "5.56 NATO 曳光彈" -#. ~ Description for {'str_sp': '5.56 NATO tracer'} +#. ~ Description for 5.56 NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M855A1 and M856 tracer rounds to " @@ -2171,7 +2171,7 @@ msgid ".270 Winchester JSP" msgid_plural ".270 Winchester JSP" msgstr[0] ".270 溫徹斯特半金屬包覆彈" -#. ~ Description for {'str_sp': '.270 Winchester JSP'} +#. ~ Description for .270 Winchester JSP #: lang/json/AMMO_from_json.py msgid "" ".270 Winchester ammunition with 130gr soft point bullets. The .270 round " @@ -2218,7 +2218,7 @@ msgid ".300 Winchester Magnum, reloaded" msgid_plural ".300 Winchester Magnum, reloaded" msgstr[0] ".300 溫徹斯特麥格農(重填彈)" -#. ~ Description for {'str_sp': '.300 Winchester Magnum, reloaded'} +#. ~ Description for .300 Winchester Magnum, reloaded #: lang/json/AMMO_from_json.py msgid "" "The .300 Winchester Magnum is extremely versatile and has been adopted by " @@ -2231,7 +2231,7 @@ msgid ".30-06 Springfield" msgid_plural ".30-06 Springfield" msgstr[0] ".30-06 春田子彈" -#. ~ Description for {'str_sp': '.30-06 Springfield'} +#. ~ Description for .30-06 Springfield #: lang/json/AMMO_from_json.py msgid "" ".30-06 Springfield rounds with 165gr soft point bullets. The .30-06 " @@ -2244,7 +2244,7 @@ msgid ".30-06 M14A1 tracer" msgid_plural ".30-06 M14A1 tracer" msgstr[0] ".30-06 M14A1 曳光彈" -#. ~ Description for {'str_sp': '.30-06 M14A1 tracer'} +#. ~ Description for .30-06 M14A1 tracer #: lang/json/AMMO_from_json.py msgid "" "Armor piercing incendiary .30-06 M14A1 ammunition containing tracer rounds " @@ -2257,7 +2257,7 @@ msgid ".30-06 M2 AP" msgid_plural ".30-06 M2 AP" msgstr[0] ".30-06 M2 穿甲彈" -#. ~ Description for {'str_sp': '.30-06 M2 AP'} +#. ~ Description for .30-06 M2 AP #: lang/json/AMMO_from_json.py msgid "" "Armor piercing .30-06 M2 ammunition with 168gr FMJ bullets. It is an " @@ -2354,7 +2354,7 @@ msgid ".308 Winchester" msgid_plural ".308 Winchester" msgstr[0] ".308 溫徹斯特子彈" -#. ~ Description for {'str_sp': '.308 Winchester'} +#. ~ Description for .308 Winchester #: lang/json/AMMO_from_json.py msgid "" ".308 Winchester ammunition with 168gr hollow point bullets. The .308 round " @@ -2367,7 +2367,7 @@ msgid "7.62x51mm M80" msgid_plural "7.62x51mm M80" msgstr[0] "7.62x51mm M80 子彈" -#. ~ Description for {'str_sp': '7.62x51mm M80'} +#. ~ Description for 7.62x51mm M80 #: lang/json/AMMO_from_json.py msgid "" "A 7.62x51mm NATO round with a 147gr FMJ bullet. It is a powerful rifle " @@ -2380,7 +2380,7 @@ msgid "7.62x51mm NATO tracer" msgid_plural "7.62x51mm NATO tracer" msgstr[0] "7.62x51mm NATO 曳光彈" -#. ~ Description for {'str_sp': '7.62x51mm NATO tracer'} +#. ~ Description for 7.62x51mm NATO tracer #: lang/json/AMMO_from_json.py msgid "" "This ammunition is a one-in-five mix of M80 and M62 tracer rounds to help " @@ -2422,7 +2422,7 @@ msgid ".32 ACP" msgid_plural ".32 ACP" msgstr[0] ".32 ACP 子彈" -#. ~ Description for {'str_sp': '.32 ACP'} +#. ~ Description for .32 ACP #: lang/json/AMMO_from_json.py msgid "" "The .32 ACP was a popular handgun cartridge in the 20th century. Not so " @@ -2444,7 +2444,7 @@ msgid ".357 Magnum FMJ" msgid_plural ".357 Magnum FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '.357 Magnum FMJ'} +#. ~ Description for .357 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 Magnum ammunition. The .357 Magnum round is derived from the " @@ -2457,7 +2457,7 @@ msgid ".357 Magnum JHP" msgid_plural ".357 Magnum JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.357 Magnum JHP'} +#. ~ Description for .357 Magnum JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 magnum ammunition. The .357 Magnum round is " @@ -2490,7 +2490,7 @@ msgid ".357 SIG FMJ" msgid_plural ".357 SIG FMJ" msgstr[0] ".357 SIG 全金屬披甲彈" -#. ~ Description for {'str_sp': '.357 SIG FMJ'} +#. ~ Description for .357 SIG FMJ #: lang/json/AMMO_from_json.py msgid "" "Jacketed .357 SIG ammunition. The .357 SIG round is a high velocity pistol " @@ -2502,7 +2502,7 @@ msgid ".357 SIG JHP" msgid_plural ".357 SIG JHP" msgstr[0] ".357 SIG 空尖彈" -#. ~ Description for {'str_sp': '.357 SIG JHP'} +#. ~ Description for .357 SIG JHP #: lang/json/AMMO_from_json.py msgid "" "Jacketed hollow point .357 SIG ammunition. The .357 SIG round is a high " @@ -2547,7 +2547,7 @@ msgid ".38 FMJ" msgid_plural ".38 FMJ" msgstr[0] ".38 全金屬披甲彈" -#. ~ Description for {'str_sp': '.38 FMJ'} +#. ~ Description for .38 FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special " @@ -2571,7 +2571,7 @@ msgid ".38 Super" msgid_plural ".38 Super" msgstr[0] ".38 超級彈" -#. ~ Description for {'str_sp': '.38 Super'} +#. ~ Description for .38 Super #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super" @@ -2608,7 +2608,7 @@ msgid ".380 ACP FMJ" msgid_plural ".380 ACP FMJ" msgstr[0] ".380 ACP 全金屬披甲彈" -#. ~ Description for {'str_sp': '.380 ACP FMJ'} +#. ~ Description for .380 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a brass jacketed 95gr bullet. Popular in pocket " @@ -2624,7 +2624,7 @@ msgid ".380 ACP JHP" msgid_plural ".380 ACP JHP" msgstr[0] ".380 ACP 空尖彈" -#. ~ Description for {'str_sp': '.380 ACP JHP'} +#. ~ Description for .380 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".380 ACP ammunition with a 95gr jacketed hollow point bullet. It is a " @@ -2640,7 +2640,7 @@ msgid ".380 ACP +P" msgid_plural ".380 ACP +P" msgstr[0] ".380 ACP 高壓彈" -#. ~ Description for {'str_sp': '.380 ACP +P'} +#. ~ Description for .380 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. " @@ -2682,7 +2682,7 @@ msgid ".38 Super FMJ" msgid_plural ".38 Super FMJ" msgstr[0] ".38 全金屬披甲超級彈" -#. ~ Description for {'str_sp': '.38 Super FMJ'} +#. ~ Description for .38 Super FMJ #: lang/json/AMMO_from_json.py msgid "" ".38 Super ammunition with 147gr FMJ bullets. The .38 Super round was " @@ -2702,7 +2702,7 @@ msgid ".40 S&W FMJ" msgid_plural ".40 S&W FMJ" msgstr[0] ".40 S&W 全金屬披甲彈" -#. ~ Description for {'str_sp': '.40 S&W FMJ'} +#. ~ Description for .40 S&W FMJ #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto" @@ -2717,7 +2717,7 @@ msgid ".40 S&W JHP" msgid_plural ".40 S&W JHP" msgstr[0] ".40 S&W 空尖彈" -#. ~ Description for {'str_sp': '.40 S&W JHP'} +#. ~ Description for .40 S&W JHP #: lang/json/AMMO_from_json.py msgid "" ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended" @@ -2756,7 +2756,7 @@ msgid "40x46mm M1006 sponge" msgid_plural "40x46mm M1006 sponge" msgstr[0] "40x46mm M1006 海綿彈" -#. ~ Description for {'str_sp': '40x46mm M1006 sponge'} +#. ~ Description for 40x46mm M1006 sponge #: lang/json/AMMO_from_json.py msgid "" "A low velocity less-lethal 40x46mm round with a foam and plastic projectile " @@ -2769,7 +2769,7 @@ msgid "40x46mm M433 HEDP" msgid_plural "40x46mm M433 HEDP" msgstr[0] "40x46mm M433 高爆雙用途彈" -#. ~ Description for {'str_sp': '40x46mm M433 HEDP'} +#. ~ Description for 40x46mm M433 HEDP #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40x46mm high explosive dual-purpose grenade. It can " @@ -2782,7 +2782,7 @@ msgid "40x46mm M576 buckshot" msgid_plural "40x46mm M576 buckshot" msgstr[0] "40x46mm M576 獵鹿彈" -#. ~ Description for {'str_sp': '40x46mm M576 buckshot'} +#. ~ Description for 40x46mm M576 buckshot #: lang/json/AMMO_from_json.py msgid "" "A 40x46mm buckshot load, designed for use in thick vegetation or room " @@ -2797,7 +2797,7 @@ msgid "40x46mm M651 tear gas" msgid_plural "40x46mm M651 tear gas" msgstr[0] "40x46mm M651 催淚彈" -#. ~ Description for {'str_sp': '40x46mm M651 tear gas'} +#. ~ Description for 40x46mm M651 tear gas #: lang/json/AMMO_from_json.py msgid "" "A low velocity 40mm tear gas canister. It is effective for riot control and" @@ -2810,8 +2810,8 @@ msgid "40x46mm-M118 buckshot, reloaded" msgid_plural "40x46mm-M118 buckshot, reloaded" msgstr[0] "40x46mm-M118複裝 獵鹿彈(重填彈)" -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 buckshot, black powder'} +#. ~ Description for 40x46mm-M118 buckshot, reloaded +#. ~ Description for 40x46mm-M118 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -2826,8 +2826,8 @@ msgid "40x46mm-M199 buckshot, reloaded" msgid_plural "40x46mm-M199 buckshot, reloaded" msgstr[0] "40x46mm-M119複裝 獵鹿彈(重填彈)" -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 buckshot, black powder'} +#. ~ Description for 40x46mm-M199 buckshot, reloaded +#. ~ Description for 40x46mm-M199 buckshot, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm buckshot load somewhat resembling M576, loaded into a " @@ -2873,8 +2873,8 @@ msgid "40x46mm-M118 flechette, reloaded" msgid_plural "40x46mm-M118 flechette, reloaded" msgstr[0] "40x46mm-M118複裝 鋼鏢彈(重填彈)" -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M118 flechette, black powder'} +#. ~ Description for 40x46mm-M118 flechette, reloaded +#. ~ Description for 40x46mm-M118 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -2889,8 +2889,8 @@ msgid "40x46mm-M199 flechette, reloaded" msgid_plural "40x46mm-M199 flechette, reloaded" msgstr[0] "40x46mm-M199複裝 鋼鏢彈(重填彈)" -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, reloaded'} -#. ~ Description for {'str_sp': '40x46mm-M199 flechette, black powder'} +#. ~ Description for 40x46mm-M199 flechette, reloaded +#. ~ Description for 40x46mm-M199 flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x46mm flechette load containing 10 steel darts, loaded into " @@ -2945,7 +2945,7 @@ msgid "40x46mm .22 LR hornet's nest" msgid_plural "40x46mm .22 LR hornet's nest" msgstr[0] "" -#. ~ Description for {'str_sp': "40x46mm .22 LR hornet's nest"} +#. ~ Description for 40x46mm .22 LR hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten " @@ -2957,7 +2957,7 @@ msgid "40x46mm .410 hornet's nest" msgid_plural "40x46mm .410 hornet's nest" msgstr[0] "" -#. ~ Description for {'str_sp': "40x46mm .410 hornet's nest"} +#. ~ Description for 40x46mm .410 hornet's nest #: lang/json/AMMO_from_json.py msgid "" "A set of four .410 shells compressed into a 40mm adapter. Fires all four " @@ -2984,7 +2984,7 @@ msgid "40x53mm M430A1 HEDP" msgid_plural "40x53mm M430A1 HEDP" msgstr[0] "40x53mm M430A1 高爆雙用途榴彈" -#. ~ Description for {'str_sp': '40x53mm M430A1 HEDP'} +#. ~ Description for 40x53mm M430A1 HEDP #: lang/json/AMMO_from_json.py msgid "" "A high velocity 40x53mm high explosive dual-purpose grenade. It can " @@ -2997,8 +2997,8 @@ msgid "40x53mm buckshot, reloaded" msgid_plural "40x53mm buckshot, reloaded" msgstr[0] "40x53mm 獵鹿彈(重填彈)" -#. ~ Description for {'str_sp': '40x53mm buckshot, reloaded'} -#. ~ Description for {'str_sp': '40x53mm buckshot, black powder'} +#. ~ Description for 40x53mm buckshot, reloaded +#. ~ Description for 40x53mm buckshot, black powder #: lang/json/AMMO_from_json.py msgid "An improvised 40x53mm buckshot load somewhat resembling M576." msgstr "一個粗製 40x53mm 獵鹿鋼珠彈,類似 M576 獵鹿彈" @@ -3019,8 +3019,8 @@ msgid "40x53mm flechette, reloaded" msgid_plural "40x53mm flechette, reloaded" msgstr[0] "40x53mm 鋼鏢彈(重填彈)" -#. ~ Description for {'str_sp': '40x53mm flechette, reloaded'} -#. ~ Description for {'str_sp': '40x53mm flechette, black powder'} +#. ~ Description for 40x53mm flechette, reloaded +#. ~ Description for 40x53mm flechette, black powder #: lang/json/AMMO_from_json.py msgid "" "An improvised 40x53mm flechette load containing 115 steel darts, similar to " @@ -3047,7 +3047,7 @@ msgid ".410 000 shot" msgid_plural ".410 000 shot" msgstr[0] ".410 000 霰彈" -#. ~ Description for {'str_sp': '.410 000 shot'} +#. ~ Description for .410 000 shot #: lang/json/AMMO_from_json.py msgid "A .410 shell with 5 000 pellets. Good for a hunting or combat load." msgstr "裝有5000顆彈丸的 .410彈殼。非常適合狩獵或是戰鬥。" @@ -3062,7 +3062,7 @@ msgid ".44 Magnum FMJ" msgid_plural ".44 Magnum FMJ" msgstr[0] ".44 麥格農全金屬披甲彈" -#. ~ Description for {'str_sp': '.44 Magnum FMJ'} +#. ~ Description for .44 Magnum FMJ #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .44 Magnum round. This increases " @@ -3119,7 +3119,7 @@ msgid ".45 ACP FMJ" msgid_plural ".45 ACP FMJ" msgstr[0] ".45 ACP 全金屬披甲彈" -#. ~ Description for {'str_sp': '.45 ACP FMJ'} +#. ~ Description for .45 ACP FMJ #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, " @@ -3131,7 +3131,7 @@ msgid ".45 ACP JHP" msgid_plural ".45 ACP JHP" msgstr[0] ".45 ACP 空尖彈" -#. ~ Description for {'str_sp': '.45 ACP JHP'} +#. ~ Description for .45 ACP JHP #: lang/json/AMMO_from_json.py msgid "" ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed " @@ -3146,7 +3146,7 @@ msgid ".45 ACP +P" msgid_plural ".45 ACP +P" msgstr[0] ".45 ACP 高壓彈" -#. ~ Description for {'str_sp': '.45 ACP +P'} +#. ~ Description for .45 ACP +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition " @@ -3184,7 +3184,7 @@ msgid ".454 Casull" msgid_plural ".454 Casull" msgstr[0] ".454 卡蘇爾子彈" -#. ~ Description for {'str_sp': '.454 Casull'} +#. ~ Description for .454 Casull #: lang/json/AMMO_from_json.py msgid "" ".454 Casull ammunition with 300gr jacketed soft point bullets. The .454 " @@ -3211,7 +3211,7 @@ msgid ".45-70 SP" msgid_plural ".45-70 SP" msgstr[0] ".45-70 SP" -#. ~ Description for {'str_sp': '.45-70 SP'} +#. ~ Description for .45-70 SP #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3237,7 +3237,7 @@ msgid ".45-70 LFN cowboy" msgid_plural ".45-70 LFN cowboy" msgstr[0] ".45-70 LFN 牛仔子彈" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy'} +#. ~ Description for .45-70 LFN cowboy #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3250,7 +3250,7 @@ msgid ".45-70 SP, reloaded" msgid_plural ".45-70 SP, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70 SP, reloaded'} +#. ~ Description for .45-70 SP, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 305 grain soft point round. One " @@ -3277,7 +3277,7 @@ msgid ".45-70 LFN cowboy, reloaded" msgid_plural ".45-70 LFN cowboy, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70 LFN cowboy, reloaded'} +#. ~ Description for .45-70 LFN cowboy, reloaded #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3291,7 +3291,7 @@ msgid ".45-70, black powder" msgid_plural ".45-70, black powder" msgstr[0] "" -#. ~ Description for {'str_sp': '.45-70, black powder'} +#. ~ Description for .45-70, black powder #: lang/json/AMMO_from_json.py msgid "" ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet " @@ -3305,7 +3305,7 @@ msgid ".45 Colt JHP" msgid_plural ".45 Colt JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '.45 Colt JHP'} +#. ~ Description for .45 Colt JHP #: lang/json/AMMO_from_json.py msgid "" ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally " @@ -3330,7 +3330,7 @@ msgid "4.6x30mm" msgid_plural "4.6x30mm" msgstr[0] "4.6x30mm 子彈" -#. ~ Description for {'str_sp': '4.6x30mm'} +#. ~ Description for 4.6x30mm #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated steel bullets. The 4.6x30mm " @@ -3345,8 +3345,8 @@ msgid "4.6x30mm, black powder" msgid_plural "4.6x30mm, black powder" msgstr[0] "4.6x30mm 子彈 (黑火藥)" -#. ~ Description for {'str_sp': '4.6x30mm, black powder'} -#. ~ Description for {'str_sp': '4.6x30mm, reloaded'} +#. ~ Description for 4.6x30mm, black powder +#. ~ Description for 4.6x30mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "4.6x30mm ammunition with 31gr copper plated lead bullets. The 4.6x30mm " @@ -3367,7 +3367,7 @@ msgid ".460 Rowland HCFN" msgid_plural ".460 Rowland HCFN" msgstr[0] "" -#. ~ Description for {'str_sp': '.460 Rowland HCFN'} +#. ~ Description for .460 Rowland HCFN #: lang/json/AMMO_from_json.py msgid "" "A plated, hard cast flat nosed variant of the .460 Rowland round. This " @@ -3379,7 +3379,7 @@ msgid ".460 Rowland" msgid_plural ".460 Rowland" msgstr[0] "" -#. ~ Description for {'str_sp': '.460 Rowland'} +#. ~ Description for .460 Rowland #: lang/json/AMMO_from_json.py msgid "" ".460 Rowland ammunition with 185gr JHP bullets. The .460 Rowland round is " @@ -3406,7 +3406,7 @@ msgid ".460 Rowland FMJ, reloaded" msgid_plural ".460 Rowland FMJ, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.460 Rowland FMJ, reloaded'} +#. ~ Description for .460 Rowland FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "A brass-jacketed variant of the .460 Rowland round. This increases " @@ -3423,7 +3423,7 @@ msgid ".50 BMG M17 tracer" msgid_plural ".50 BMG M17 tracer" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG M17 tracer'} +#. ~ Description for .50 BMG M17 tracer #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3436,7 +3436,7 @@ msgid ".50 BMG M33 Ball" msgid_plural ".50 BMG M33 Ball" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG M33 Ball'} +#. ~ Description for .50 BMG M33 Ball #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with mild steel cored 661gr FMJ bullets. The .50 BMG is " @@ -3453,7 +3453,7 @@ msgid ".50 BMG Match" msgid_plural ".50 BMG Match" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG Match'} +#. ~ Description for .50 BMG Match #: lang/json/AMMO_from_json.py msgid "" ".50 BMG FMJ lead core ammunition manufactured with tighter tolerances for " @@ -3465,7 +3465,7 @@ msgid ".50 BMG M2 AP" msgid_plural ".50 BMG M2 AP" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG M2 AP'} +#. ~ Description for .50 BMG M2 AP #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core of very dense, hardened " @@ -3477,7 +3477,7 @@ msgid ".50 BMG Raufoss Mk 211" msgid_plural ".50 BMG Raufoss Mk 211" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG Raufoss Mk 211'} +#. ~ Description for .50 BMG Raufoss Mk 211 #: lang/json/AMMO_from_json.py msgid "" "This variant of the .50 BMG round makes the most of the caliber's potential " @@ -3497,7 +3497,7 @@ msgid ".50 BMG tracer, reloaded" msgid_plural ".50 BMG tracer, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG tracer, reloaded'} +#. ~ Description for .50 BMG tracer, reloaded #: lang/json/AMMO_from_json.py msgid "" "A tracer variant of the powerful .50 BMG round. Tracer rounds help to keep " @@ -3511,7 +3511,7 @@ msgid ".50 BMG Match, reloaded" msgid_plural ".50 BMG Match, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG Match, reloaded'} +#. ~ Description for .50 BMG Match, reloaded #: lang/json/AMMO_from_json.py msgid "" ".50 BMG ammunition with lead-cored FMJ bullets. The .50 BMG is a very " @@ -3528,7 +3528,7 @@ msgid ".50 BMG AP, reloaded" msgid_plural ".50 BMG AP, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '.50 BMG AP, reloaded'} +#. ~ Description for .50 BMG AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Variant of the .50 BMG round that uses a core hardened steel. Penetration " @@ -3578,7 +3578,7 @@ msgid "5.45x39mm 7N10" msgid_plural "5.45x39mm 7N10" msgstr[0] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N10'} +#. ~ Description for 5.45x39mm 7N10 #: lang/json/AMMO_from_json.py msgid "" "5.45x39mm 7N10 ammunition with 56gr FMJ bullets. The 5.45x39mm round was " @@ -3594,7 +3594,7 @@ msgid "5.45x39mm 7N22" msgid_plural "5.45x39mm 7N22" msgstr[0] "" -#. ~ Description for {'str_sp': '5.45x39mm 7N22'} +#. ~ Description for 5.45x39mm 7N22 #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with 57gr bullets containing a steel " @@ -3606,7 +3606,7 @@ msgid "5.45x39mm, reloaded" msgid_plural "5.45x39mm, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '5.45x39mm, reloaded'} +#. ~ Description for 5.45x39mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "The 5.45x39mm was the standard ammunition for the AK series from 1974. Its " @@ -3621,7 +3621,7 @@ msgid "5.45x39mm AP, reloaded" msgid_plural "5.45x39mm AP, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '5.45x39mm AP, reloaded'} +#. ~ Description for 5.45x39mm AP, reloaded #: lang/json/AMMO_from_json.py msgid "" "Armor piercing 5.45x39mm ammunition with hand-reloaded bullets containing a " @@ -3643,7 +3643,7 @@ msgid "5.7x28mm SS190" msgid_plural "5.7x28mm SS190" msgstr[0] "" -#. ~ Description for {'str_sp': '5.7x28mm SS190'} +#. ~ Description for 5.7x28mm SS190 #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3662,8 +3662,8 @@ msgid "5.7x28mm, black powder" msgid_plural "5.7x28mm, black powder" msgstr[0] "" -#. ~ Description for {'str_sp': '5.7x28mm, black powder'} -#. ~ Description for {'str_sp': '5.7x28mm, reloaded'} +#. ~ Description for 5.7x28mm, black powder +#. ~ Description for 5.7x28mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "5.7x28mm ammunition with 31gr AP FMJ bullets. The 5.7x28mm cartridge was " @@ -3736,7 +3736,7 @@ msgid "66mm HEAT" msgid_plural "66mm HEAT" msgstr[0] "" -#. ~ Description for {'str_sp': '66mm HEAT'} +#. ~ Description for 66mm HEAT #: lang/json/AMMO_from_json.py msgid "" "A 66mm high-explosive anti-tank round. It could blow through up to two feet" @@ -3748,7 +3748,7 @@ msgid ".700 NX" msgid_plural ".700 NX" msgstr[0] "" -#. ~ Description for {'str_sp': '.700 NX'} +#. ~ Description for .700 NX #: lang/json/AMMO_from_json.py msgid "" "The .700 Nitro Express is a very powerful rifle round designed for long-" @@ -3774,7 +3774,7 @@ msgid "7.62x39mm 57-N-231" msgid_plural "7.62x39mm 57-N-231" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x39mm 57-N-231'} +#. ~ Description for 7.62x39mm 57-N-231 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm 57-N-231 ammunition with 121.9gr steel core FMJ bullets. " @@ -3790,7 +3790,7 @@ msgid "7.62x39mm M67" msgid_plural "7.62x39mm M67" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x39mm M67'} +#. ~ Description for 7.62x39mm M67 #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm M67 rounds with 123gr bullets. The inadequate terminal ballistics" @@ -3806,7 +3806,7 @@ msgid "7.62x39mm M43, reloaded" msgid_plural "7.62x39mm M43, reloaded" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x39mm M43, reloaded'} +#. ~ Description for 7.62x39mm M43, reloaded #: lang/json/AMMO_from_json.py msgid "" "7.62x39mm ammunition with 121.9gr bullets. Developed in WW2 by the Soviet " @@ -3837,7 +3837,7 @@ msgid "7.62x54mmR" msgid_plural "7.62x54mmR" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x54mmR'} +#. ~ Description for 7.62x54mmR #: lang/json/AMMO_from_json.py msgid "" "7.62x54mmR ammunition with 150gr FMJ bullets. The 7.62x54mmR round is one " @@ -3865,7 +3865,7 @@ msgid "7.62x25mm JHP" msgid_plural "7.62x25mm JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x25mm JHP'} +#. ~ Description for 7.62x25mm JHP #: lang/json/AMMO_from_json.py msgid "" "A commercial version of the 7.62x25mm cartridge created for the armed forces" @@ -3890,7 +3890,7 @@ msgid "7.62x25mm Type P" msgid_plural "7.62x25mm Type P" msgstr[0] "" -#. ~ Description for {'str_sp': '7.62x25mm Type P'} +#. ~ Description for 7.62x25mm Type P #: lang/json/AMMO_from_json.py msgid "" "A subsonic cartridge derived from the 7.62x25mm, designed for silenced " @@ -3951,7 +3951,7 @@ msgid "bootleg 8x40mm JHP" msgid_plural "bootleg 8x40mm JHP" msgstr[0] "" -#. ~ Description for {'str_sp': 'bootleg 8x40mm JHP'} +#. ~ Description for bootleg 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "Bootleg duplicates of Rivtech 8x40mm caseless rounds. Being caseless " @@ -3963,7 +3963,7 @@ msgid "8x40mm caseless" msgid_plural "8x40mm caseless" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm caseless'} +#. ~ Description for 8x40mm caseless #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds. Proprietary ammunition for Rivtech firearms. Being" @@ -3975,7 +3975,7 @@ msgid "8x40mm sporting" msgid_plural "8x40mm sporting" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm sporting'} +#. ~ Description for 8x40mm sporting #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, light sporting load sold for civilian use. " @@ -3988,7 +3988,7 @@ msgid "8x40mm FMJ" msgid_plural "8x40mm FMJ" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm FMJ'} +#. ~ Description for 8x40mm FMJ #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, full metal jacket. Military grade ammunition for " @@ -4001,7 +4001,7 @@ msgid "8x40mm HVP" msgid_plural "8x40mm HVP" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm HVP'} +#. ~ Description for 8x40mm HVP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, saboted high-velocity penetrator type. Advanced " @@ -4015,7 +4015,7 @@ msgid "8x40mm tracer" msgid_plural "8x40mm tracer" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm tracer'} +#. ~ Description for 8x40mm tracer #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds with tracers to help keep the weapon they are fired " @@ -4031,7 +4031,7 @@ msgid "8x40mm JHP" msgid_plural "8x40mm JHP" msgstr[0] "" -#. ~ Description for {'str_sp': '8x40mm JHP'} +#. ~ Description for 8x40mm JHP #: lang/json/AMMO_from_json.py msgid "" "8x40mm caseless rounds, jacketed hollowpoint. Military grade ammunition for" @@ -4044,7 +4044,7 @@ msgid "9x19mm JHP" msgid_plural "9x19mm JHP" msgstr[0] "9x19mm 空尖彈" -#. ~ Description for {'str_sp': '9x19mm JHP'} +#. ~ Description for 9x19mm JHP #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a 116gr jacketed hollow point bullet. JHP rounds " @@ -4060,7 +4060,7 @@ msgid "9x19mm FMJ" msgid_plural "9x19mm FMJ" msgstr[0] "9x19mm 全金屬披甲" -#. ~ Description for {'str_sp': '9x19mm FMJ'} +#. ~ Description for 9x19mm FMJ #: lang/json/AMMO_from_json.py msgid "" "9x19mm ammunition with a brass jacketed 115gr bullet. It is a popular round" @@ -4072,7 +4072,7 @@ msgid "9x19mm +P" msgid_plural "9x19mm +P" msgstr[0] "9x19mm 高壓彈" -#. ~ Description for {'str_sp': '9x19mm +P'} +#. ~ Description for 9x19mm +P #: lang/json/AMMO_from_json.py msgid "" "Overpressure 9x19mm ammunition. The round's increased velocity results in " @@ -4084,7 +4084,7 @@ msgid "9x19mm +P+" msgid_plural "9x19mm +P+" msgstr[0] "9x19mm 超高壓彈" -#. ~ Description for {'str_sp': '9x19mm +P+'} +#. ~ Description for 9x19mm +P+ #: lang/json/AMMO_from_json.py msgid "" "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher " @@ -4126,7 +4126,7 @@ msgid "9x18mm 57-N-181S" msgid_plural "9x18mm 57-N-181S" msgstr[0] "9x18mm 57-N-181S 子彈" -#. ~ Description for {'str_sp': '9x18mm 57-N-181S'} +#. ~ Description for 9x18mm 57-N-181S #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov ammunition with 93gr steel core FMJ bullets. The 9x18mm " @@ -4141,7 +4141,7 @@ msgid "9x18mm SP-7" msgid_plural "9x18mm SP-7" msgstr[0] "9x18mm SP-7 子彈" -#. ~ Description for {'str_sp': '9x18mm SP-7'} +#. ~ Description for 9x18mm SP-7 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the " @@ -4154,7 +4154,7 @@ msgid "9x18mm RG028" msgid_plural "9x18mm RG028" msgstr[0] "9x18mm RG028 子彈" -#. ~ Description for {'str_sp': '9x18mm RG028'} +#. ~ Description for 9x18mm RG028 #: lang/json/AMMO_from_json.py msgid "" "9x18mm Makarov RG028 ammunition. The RG028 round uses bullets with a " @@ -4176,7 +4176,7 @@ msgid "9x18mm, reloaded" msgid_plural "9x18mm, reloaded" msgstr[0] "9x18mm 子彈(重填彈)" -#. ~ Description for {'str_sp': '9x18mm, reloaded'} +#. ~ Description for 9x18mm, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4189,7 +4189,7 @@ msgid "9x18mm +P+, reloaded" msgid_plural "9x18mm +P+, reloaded" msgstr[0] "9x18mm 超高壓彈(重填彈)" -#. ~ Description for {'str_sp': '9x18mm +P+, reloaded'} +#. ~ Description for 9x18mm +P+, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4202,7 +4202,7 @@ msgid "9x18mm FMJ, reloaded" msgid_plural "9x18mm FMJ, reloaded" msgstr[0] "9x18mm 全金屬披甲彈(重填彈)" -#. ~ Description for {'str_sp': '9x18mm FMJ, reloaded'} +#. ~ Description for 9x18mm FMJ, reloaded #: lang/json/AMMO_from_json.py msgid "" "9x18 millimeter Makarov, an old Soviet pistol cartridge used mainly by the " @@ -4217,7 +4217,7 @@ msgid "152mm ATGM HEAT" msgid_plural "152mm ATGM HEAT" msgstr[0] "" -#. ~ Description for {'str_sp': '152mm ATGM HEAT'} +#. ~ Description for 152mm ATGM HEAT #: lang/json/AMMO_from_json.py msgid "" "A tube-launched, optically tracked, wire-guided missile contained in a steel" @@ -4241,7 +4241,7 @@ msgid "cannon round shot" msgid_plural "cannon round shot" msgstr[0] "" -#. ~ Description for {'str_sp': 'cannon round shot'} +#. ~ Description for cannon round shot #: lang/json/AMMO_from_json.py msgid "" "A bundle of wadding, black gunpowder, and cannonball, ready to be loaded " @@ -4253,7 +4253,7 @@ msgid "sprayable toxic gas" msgid_plural "sprayable toxic gas" msgstr[0] "噴灑式毒氣" -#. ~ Description for {'str_sp': 'sprayable toxic gas'} +#. ~ Description for sprayable toxic gas #: lang/json/AMMO_from_json.py msgid "" "A hazardous mixture made from household cleaners, improvised for use in a " @@ -4265,7 +4265,7 @@ msgid "sprayable fungicide" msgid_plural "sprayable fungicide" msgstr[0] "噴灑式抗真菌劑" -#. ~ Description for {'str_sp': 'sprayable fungicide'} +#. ~ Description for sprayable fungicide #: lang/json/AMMO_from_json.py msgid "" "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the " @@ -4277,7 +4277,7 @@ msgid "sprayable insecticide" msgid_plural "sprayable insecticide" msgstr[0] "噴灑式殺蟲劑" -#. ~ Description for {'str_sp': 'sprayable insecticide'} +#. ~ Description for sprayable insecticide #: lang/json/AMMO_from_json.py msgid "" "Strong sprayable insecticide ammo for the chemical thrower. Best be used " @@ -4380,7 +4380,7 @@ msgid "paintball" msgid_plural "paintball" msgstr[0] "" -#. ~ Description for {'str_sp': 'paintball'} +#. ~ Description for paintball #: lang/json/AMMO_from_json.py msgid "A tube of small paintballs. They deal virtually no damage." msgstr "一管小漆彈。幾乎沒有殺傷力。" @@ -4481,7 +4481,7 @@ msgid "00 shot" msgid_plural "00 shot" msgstr[0] "" -#. ~ Description for {'str_sp': '00 shot'} +#. ~ Description for 00 shot #: lang/json/AMMO_from_json.py msgid "" "A shell filled with metal pellets. Extremely damaging, plus the spread " @@ -4494,7 +4494,7 @@ msgid_plural "shotgun beanbags" msgstr[0] "散彈豆袋" #. ~ Description for shotgun beanbag -#. ~ Description for {'str_sp': 'shotshell, beanbag'} +#. ~ Description for shotshell, beanbag #: lang/json/AMMO_from_json.py msgid "A beanbag round for shotguns, not deadly but designed to disable." msgstr "一個霰彈槍用的豆袋子彈,用於非致命的癱瘓用途。" @@ -4504,7 +4504,7 @@ msgid "birdshot" msgid_plural "birdshot" msgstr[0] "" -#. ~ Description for {'str_sp': 'birdshot'} +#. ~ Description for birdshot #: lang/json/AMMO_from_json.py msgid "" "Weak shotgun ammunition. Designed for hunting birds and other small game, " @@ -4555,8 +4555,8 @@ msgid "00 shot, scrap loaded" msgid_plural "00 shot, scrap loaded" msgstr[0] "" -#. ~ Description for {'str_sp': '00 shot, scrap loaded'} -#. ~ Description for {'str_sp': 'shotshell, junk'} +#. ~ Description for 00 shot, scrap loaded +#. ~ Description for shotshell, junk #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with whatever was lying around. They are more " @@ -4697,7 +4697,7 @@ msgid "oxyacetylene" msgid_plural "oxyacetylene" msgstr[0] "" -#. ~ Description for {'str_sp': 'oxyacetylene'} +#. ~ Description for oxyacetylene #: lang/json/AMMO_from_json.py msgid "" "A highly explosive fuel mixture composed of equal parts of oxygen and " @@ -4709,7 +4709,7 @@ msgid "fungal seeds" msgid_plural "fungal seeds" msgstr[0] "真菌種子" -#. ~ Description for {'str_sp': 'fungal seeds'} +#. ~ Description for fungal seeds #: lang/json/AMMO_from_json.py msgid "Some fungal seeds." msgstr "一些真菌種子。" @@ -5467,7 +5467,7 @@ msgid "red paint" msgid_plural "red paint" msgstr[0] "紅色油漆" -#. ~ Description for {'str_sp': 'red paint'} +#. ~ Description for red paint #: lang/json/AMMO_from_json.py msgid "A can of red paint." msgstr "一罐紅色油漆。" @@ -5477,7 +5477,7 @@ msgid "blue paint" msgid_plural "blue paint" msgstr[0] "藍色油漆" -#. ~ Description for {'str_sp': 'blue paint'} +#. ~ Description for blue paint #: lang/json/AMMO_from_json.py msgid "A can of blue paint." msgstr "一罐藍色油漆。" @@ -5487,7 +5487,7 @@ msgid "white paint" msgid_plural "white paint" msgstr[0] "白色油漆" -#. ~ Description for {'str_sp': 'white paint'} +#. ~ Description for white paint #: lang/json/AMMO_from_json.py msgid "A can of white paint." msgstr "一罐白色油漆。" @@ -5497,7 +5497,7 @@ msgid "green paint" msgid_plural "green paint" msgstr[0] "綠色油漆" -#. ~ Description for {'str_sp': 'green paint'} +#. ~ Description for green paint #: lang/json/AMMO_from_json.py msgid "A can of green paint." msgstr "一罐綠色油漆。" @@ -5507,7 +5507,7 @@ msgid "purple paint" msgid_plural "purple paint" msgstr[0] "紫色油漆" -#. ~ Description for {'str_sp': 'purple paint'} +#. ~ Description for purple paint #: lang/json/AMMO_from_json.py msgid "A can of purple paint." msgstr "一罐紫色油漆。" @@ -5517,7 +5517,7 @@ msgid "yellow paint" msgid_plural "yellow paint" msgstr[0] "黃色油漆" -#. ~ Description for {'str_sp': 'yellow paint'} +#. ~ Description for yellow paint #: lang/json/AMMO_from_json.py msgid "A can of yellow paint." msgstr "一罐黃色油漆。" @@ -5579,7 +5579,7 @@ msgid "bismuth" msgid_plural "bismuth" msgstr[0] "鉍塊" -#. ~ Description for {'str_sp': 'bismuth'} +#. ~ Description for bismuth #: lang/json/AMMO_from_json.py msgid "A dense but brittle metal often used as an alternative to lead." msgstr "一種重而脆的金屬,常常用來代替鉛。" @@ -5589,8 +5589,8 @@ msgid "gold" msgid_plural "gold" msgstr[0] "金塊" -#. ~ Description for {'str_sp': 'gold'} -#. ~ Description for {'str_sp': 'platinum'} +#. ~ Description for gold +#. ~ Description for platinum #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the apocalypse this would've been worth a small " @@ -5607,7 +5607,7 @@ msgid "zinc" msgid_plural "zinc" msgstr[0] "鋅" -#. ~ Description for {'str_sp': 'zinc'} +#. ~ Description for zinc #: lang/json/AMMO_from_json.py msgid "" "A slightly brittle metal. Apart from being an essential mineral that the " @@ -5621,7 +5621,7 @@ msgid "lead" msgid_plural "lead" msgstr[0] "鉛" -#. ~ Description for {'str_sp': 'lead'} +#. ~ Description for lead #: lang/json/AMMO_from_json.py msgid "" "A soft dull metal known since ancient times. Due to its malleability it has" @@ -5633,7 +5633,7 @@ msgid "magnesium powder" msgid_plural "magnesium powder" msgstr[0] "鎂粉" -#. ~ Description for {'str_sp': 'magnesium powder'} +#. ~ Description for magnesium powder #: lang/json/AMMO_from_json.py msgid "" "A gray powder composed of the highly flammable alkaline earth metal " @@ -5645,7 +5645,7 @@ msgid "silver" msgid_plural "silver" msgstr[0] "銀塊" -#. ~ Description for {'str_sp': 'silver'} +#. ~ Description for silver #: lang/json/AMMO_from_json.py msgid "" "A soft shiny metal. Before the Cataclysm it was worth quite a bit but its " @@ -5701,7 +5701,7 @@ msgid "tin powder" msgid_plural "tin powder" msgstr[0] "" -#. ~ Description for {'str_sp': 'tin powder'} +#. ~ Description for tin powder #: lang/json/AMMO_from_json.py msgid "" "A fine gray powder composed of tin, usable for making solder and lining " @@ -5713,7 +5713,7 @@ msgid "solder" msgid_plural "solder" msgstr[0] "焊料" -#. ~ Description for {'str_sp': 'solder'} +#. ~ Description for solder #: lang/json/AMMO_from_json.py msgid "" "A small spool of solder, able to be used in ammunition and electronics." @@ -5746,7 +5746,7 @@ msgid "fuse" msgid_plural "fuse" msgstr[0] "引信" -#. ~ Description for {'str_sp': 'fuse'} +#. ~ Description for fuse #: lang/json/AMMO_from_json.py msgid "" "A piece of fuse, long enough to give you enough time to get away from most " @@ -5795,7 +5795,7 @@ msgid "cotton scraps" msgid_plural "cotton scraps" msgstr[0] "棉布下腳料" -#. ~ Description for {'str_sp': 'cotton scraps'} +#. ~ Description for cotton scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of cotton, waste material from tailoring " @@ -5808,7 +5808,7 @@ msgid "faux fur scraps" msgid_plural "faux fur scraps" msgstr[0] "人造毛皮下腳料" -#. ~ Description for {'str_sp': 'faux fur scraps'} +#. ~ Description for faux fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of faux fur, waste material from tailoring " @@ -5820,7 +5820,7 @@ msgid "felt scraps" msgid_plural "felt scraps" msgstr[0] "毛氈下腳料" -#. ~ Description for {'str_sp': 'felt scraps'} +#. ~ Description for felt scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of felt, waste material from tailoring projects." @@ -5833,7 +5833,7 @@ msgid "fur scraps" msgid_plural "fur scraps" msgstr[0] "毛皮下腳料" -#. ~ Description for {'str_sp': 'fur scraps'} +#. ~ Description for fur scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of fur, waste material from tailoring projects. " @@ -5845,7 +5845,7 @@ msgid "Kevlar scraps" msgid_plural "Kevlar scraps" msgstr[0] "凱夫勒下腳料" -#. ~ Description for {'str_sp': 'Kevlar scraps'} +#. ~ Description for Kevlar scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring " @@ -5860,7 +5860,7 @@ msgid "leather scraps" msgid_plural "leather scraps" msgstr[0] "皮革下腳料" -#. ~ Description for {'str_sp': 'leather scraps'} +#. ~ Description for leather scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of leather, waste material from tailoring " @@ -5872,7 +5872,7 @@ msgid "Lycra scraps" msgid_plural "Lycra scraps" msgstr[0] "萊卡下腳料" -#. ~ Description for {'str_sp': 'Lycra scraps'} +#. ~ Description for Lycra scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of Lycra, waste material from tailoring projects." @@ -5884,7 +5884,7 @@ msgid "neoprene scraps" msgid_plural "neoprene scraps" msgstr[0] "橡膠下腳料" -#. ~ Description for {'str_sp': 'neoprene scraps'} +#. ~ Description for neoprene scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of neoprene, waste material from tailoring " @@ -5896,7 +5896,7 @@ msgid "synthetic fabric scraps" msgid_plural "synthetic fabric scraps" msgstr[0] "合成纖維下腳料" -#. ~ Description for {'str_sp': 'synthetic fabric scraps'} +#. ~ Description for synthetic fabric scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of synthetic fabric, waste material from " @@ -5908,7 +5908,7 @@ msgid "Nomex scraps" msgid_plural "Nomex scraps" msgstr[0] "諾梅克斯下腳料" -#. ~ Description for {'str_sp': 'Nomex scraps'} +#. ~ Description for Nomex scraps #: lang/json/AMMO_from_json.py msgid "" "Oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material " @@ -5932,7 +5932,7 @@ msgid "patchwork cotton sheet" msgid_plural "patchwork cotton sheet" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork cotton sheet'} +#. ~ Description for patchwork cotton sheet #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from cotton patches in " @@ -5955,7 +5955,7 @@ msgid "patchwork faux fur clothing parts" msgid_plural "patchwork faux fur clothing parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork faux fur clothing parts'} +#. ~ Description for patchwork faux fur clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from faux fur patches " @@ -5978,7 +5978,7 @@ msgid "patchwork felt clothing parts" msgid_plural "patchwork felt clothing parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork felt clothing parts'} +#. ~ Description for patchwork felt clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from felt patches in a " @@ -6015,7 +6015,7 @@ msgid "patchwork Lycra clothing parts" msgid_plural "patchwork Lycra clothing parts" msgstr[0] "萊卡拼布料" -#. ~ Description for {'str_sp': 'patchwork Lycra clothing parts'} +#. ~ Description for patchwork Lycra clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from Lycra patches in a" @@ -6040,7 +6040,7 @@ msgid "patchwork neoprene clothing parts" msgid_plural "patchwork neoprene clothing parts" msgstr[0] "橡膠拼布料" -#. ~ Description for {'str_sp': 'patchwork neoprene clothing parts'} +#. ~ Description for patchwork neoprene clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from neoprene patches " @@ -6066,7 +6066,7 @@ msgid "patchwork Nomex clothing parts" msgid_plural "patchwork Nomex clothing parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork Nomex clothing parts'} +#. ~ Description for patchwork Nomex clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together with Nomex thread from " @@ -6089,7 +6089,7 @@ msgid "patchwork synthetic fabric clothing parts" msgid_plural "patchwork synthetic fabric clothing parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork synthetic fabric clothing parts'} +#. ~ Description for patchwork synthetic fabric clothing parts #: lang/json/AMMO_from_json.py msgid "" "A selection of various clothing parts, sewn together from synthetic fabric " @@ -6177,7 +6177,7 @@ msgid "titanium" msgid_plural "titanium" msgstr[0] "鈦" -#. ~ Description for {'str_sp': 'titanium'} +#. ~ Description for titanium #: lang/json/AMMO_from_json.py msgid "" "A strong, durable metal. Highly valued for its weight to strength ratio and" @@ -6203,7 +6203,7 @@ msgid "10mm FMJ caseless" msgid_plural "10mm FMJ caseless" msgstr[0] "" -#. ~ Description for {'str_sp': '10mm FMJ caseless'} +#. ~ Description for 10mm FMJ caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a brass jacketed projectile. For as long " @@ -6217,7 +6217,7 @@ msgid "10mm JHP caseless" msgid_plural "10mm JHP caseless" msgstr[0] "" -#. ~ Description for {'str_sp': '10mm JHP caseless'} +#. ~ Description for 10mm JHP caseless #: lang/json/AMMO_from_json.py msgid "" "Standardized 10mm ammunition with a hollow point projectile. While they " @@ -6231,7 +6231,7 @@ msgid "25mm canister shot" msgid_plural "25mm canister shot" msgstr[0] "" -#. ~ Description for {'str_sp': '25mm canister shot'} +#. ~ Description for 25mm canister shot #: lang/json/AMMO_from_json.py msgid "" "A 25mm grenade with a canister shot load, deals devastating damage against " @@ -6246,7 +6246,7 @@ msgid "7.50mm caseless" msgid_plural "7.50mm caseless" msgstr[0] "" -#. ~ Description for {'str_sp': '7.50mm caseless'} +#. ~ Description for 7.50mm caseless #: lang/json/AMMO_from_json.py msgid "" "An intermediate bullet with an acceptable all-round performance. Due to " @@ -6260,7 +6260,7 @@ msgid "7.50mm RP" msgid_plural "7.50mm RP" msgstr[0] "" -#. ~ Description for {'str_sp': '7.50mm RP'} +#. ~ Description for 7.50mm RP #: lang/json/AMMO_from_json.py msgid "" "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and " @@ -6276,7 +6276,7 @@ msgid "electric charge" msgid_plural "electric charge" msgstr[0] "" -#. ~ Description for {'str_sp': 'electric charge'} +#. ~ Description for electric charge #: lang/json/AMMO_from_json.py msgid "" "Electric charge collected and stored through methods now undecipherable. " @@ -6288,7 +6288,7 @@ msgid "foamcrete" msgid_plural "foamcrete" msgstr[0] "泡沫混凝土" -#. ~ Description for {'str_sp': 'foamcrete'} +#. ~ Description for foamcrete #: lang/json/AMMO_from_json.py msgid "" "The chemical precursors of foamcrete, a quick-hardening, resilient substance" @@ -6303,7 +6303,7 @@ msgid "solid hydrogen" msgid_plural "solid hydrogen" msgstr[0] "" -#. ~ Description for {'str_sp': 'solid hydrogen'} +#. ~ Description for solid hydrogen #: lang/json/AMMO_from_json.py msgid "" "Pressurized and cryo-cooled rods of solidified hydrogen, used within plasma " @@ -6315,7 +6315,7 @@ msgid "lead pellets" msgid_plural "lead pellets" msgstr[0] "鉛製彈丸" -#. ~ Description for {'str_sp': 'lead pellets'} +#. ~ Description for lead pellets #: lang/json/AMMO_from_json.py msgid "" "A round tin of small light grain .177 lead pellets. These are common, " @@ -6328,7 +6328,7 @@ msgid "domed HP pellets" msgid_plural "domed HP pellets" msgstr[0] "" -#. ~ Description for {'str_sp': 'domed HP pellets'} +#. ~ Description for domed HP pellets #: lang/json/AMMO_from_json.py msgid "" "A stable, heavier grain lead pellet with the purpose of expanding upon " @@ -6341,7 +6341,7 @@ msgid "tipped HP pellets" msgid_plural "tipped HP pellets" msgstr[0] "" -#. ~ Description for {'str_sp': 'tipped HP pellets'} +#. ~ Description for tipped HP pellets #: lang/json/AMMO_from_json.py msgid "" "A medium grain lead pellet tipped with a pointed bit of hard plastic with " @@ -6353,7 +6353,7 @@ msgid "alloy pellets" msgid_plural "alloy pellets" msgstr[0] "" -#. ~ Description for {'str_sp': 'alloy pellets'} +#. ~ Description for alloy pellets #: lang/json/AMMO_from_json.py msgid "" "A gimmicky alloy pellet with the purpose of reaching a higher velocity than " @@ -6487,7 +6487,7 @@ msgid "pistol ammo, ball" msgid_plural "pistol ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'pistol ammo, ball'} +#. ~ Description for pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6501,7 +6501,7 @@ msgid "pistol ammo, JHP" msgid_plural "pistol ammo, JHP" msgstr[0] "" -#. ~ Description for {'str_sp': 'pistol ammo, JHP'} +#. ~ Description for pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Modern ubiquitous medium pistol ammo, popularized by usage in two wars and " @@ -6535,7 +6535,7 @@ msgid "magnum ammo, ball" msgid_plural "magnum ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'magnum ammo, ball'} +#. ~ Description for magnum ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Magnum ammuniton, developed from early handgun hunting efforts and " @@ -6550,7 +6550,7 @@ msgid "magnum ammo, JHP" msgid_plural "magnum ammo, JHP" msgstr[0] "" -#. ~ Description for {'str_sp': 'magnum ammo, JHP'} +#. ~ Description for magnum ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Magnum ammunition, developed from early handgun hunting efforts and " @@ -6585,7 +6585,7 @@ msgid "tiny pistol ammo, ball" msgid_plural "tiny pistol ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, ball'} +#. ~ Description for tiny pistol ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -6600,7 +6600,7 @@ msgid "tiny pistol ammo, JHP" msgid_plural "tiny pistol ammo, JHP" msgstr[0] "" -#. ~ Description for {'str_sp': 'tiny pistol ammo, JHP'} +#. ~ Description for tiny pistol ammo, JHP #: lang/json/AMMO_from_json.py msgid "" "Minuscule pistol and rifle ammunition, for target practice or turn of the " @@ -6635,7 +6635,7 @@ msgid "rifle ammo, ball" msgid_plural "rifle ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'rifle ammo, ball'} +#. ~ Description for rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -6650,7 +6650,7 @@ msgid "rifle ammo, AP" msgid_plural "rifle ammo, AP" msgstr[0] "" -#. ~ Description for {'str_sp': 'rifle ammo, AP'} +#. ~ Description for rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Modern rifle ammunition, ubiquitous and affordable. It's suitable for " @@ -6685,7 +6685,7 @@ msgid "foreign rifle ammo, ball" msgid_plural "foreign rifle ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'foreign rifle ammo, ball'} +#. ~ Description for foreign rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Foreign rifle ammo brought by the Exodii, and very common amongst them." @@ -6696,7 +6696,7 @@ msgid "railgun rifle ammo" msgid_plural "railgun rifle ammo" msgstr[0] "" -#. ~ Description for {'str_sp': 'railgun rifle ammo'} +#. ~ Description for railgun rifle ammo #: lang/json/AMMO_from_json.py msgid "" "Projectile used for a railgun. It's made of a ferromagnetic metal, probably" @@ -6708,7 +6708,7 @@ msgid "huge rifle ammo, ball" msgid_plural "huge rifle ammo, ball" msgstr[0] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, ball'} +#. ~ Description for huge rifle ammo, ball #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -6723,7 +6723,7 @@ msgid "huge rifle ammo, AP" msgid_plural "huge rifle ammo, AP" msgstr[0] "" -#. ~ Description for {'str_sp': 'huge rifle ammo, AP'} +#. ~ Description for huge rifle ammo, AP #: lang/json/AMMO_from_json.py msgid "" "Huge rifle ammunition like this bridges the gap between light cannons and " @@ -6747,7 +6747,7 @@ msgid "rocket, antipersonnel" msgid_plural "rocket, antipersonnel" msgstr[0] "" -#. ~ Description for {'str_sp': 'rocket, antipersonnel'} +#. ~ Description for rocket, antipersonnel #: lang/json/AMMO_from_json.py msgid "" "A large anti-personnel rocket for a military rocket launcher. Designed to " @@ -6759,7 +6759,7 @@ msgid "rocket, multipurpose" msgid_plural "rocket, multipurpose" msgstr[0] "" -#. ~ Description for {'str_sp': 'rocket, multipurpose'} +#. ~ Description for rocket, multipurpose #: lang/json/AMMO_from_json.py msgid "" "An anti-tank rocket with a high explosive dual purpose warhead for a " @@ -6772,7 +6772,7 @@ msgid "rocket, smoke" msgid_plural "rocket, smoke" msgstr[0] "" -#. ~ Description for {'str_sp': 'rocket, smoke'} +#. ~ Description for rocket, smoke #: lang/json/AMMO_from_json.py msgid "" "A rocket loaded with a smoke warhead for a military rocket launcher. " @@ -6795,7 +6795,7 @@ msgid "shotshell, birdshot" msgid_plural "shotshell, birdshot" msgstr[0] "" -#. ~ Description for {'str_sp': 'shotshell, birdshot'} +#. ~ Description for shotshell, birdshot #: lang/json/AMMO_from_json.py msgid "" "A shotshell filled with numerous small pellets. Designed for hunting birds " @@ -6807,7 +6807,7 @@ msgid "shotshell, slug" msgid_plural "shotshell, slug" msgstr[0] "" -#. ~ Description for {'str_sp': 'shotshell, slug'} +#. ~ Description for shotshell, slug #: lang/json/AMMO_from_json.py msgid "" "A shotshell with a single projectile, shaped somewhat like a shuttlecock. " @@ -6820,7 +6820,7 @@ msgid "shotshell, pyrotechnical" msgid_plural "shotshell, pyrotechnical" msgstr[0] "" -#. ~ Description for {'str_sp': 'shotshell, pyrotechnical'} +#. ~ Description for shotshell, pyrotechnical #: lang/json/AMMO_from_json.py msgid "" "A novelty shotgun shell filled with a simple pyrotechnical charge. The " @@ -6863,7 +6863,7 @@ msgid "shotshell, flechette (reloaded)" msgid_plural "shotshell, flechette (reloaded)" msgstr[0] "" -#. ~ Description for {'str_sp': 'shotshell, flechette (reloaded)'} +#. ~ Description for shotshell, flechette (reloaded) #: lang/json/AMMO_from_json.py msgid "" "A shotgun shell filled with tiny steel darts, definitely not a factory " @@ -6907,7 +6907,7 @@ msgid "alumentum" msgid_plural "alumentum" msgstr[0] "" -#. ~ Description for {'str_sp': 'alumentum'} +#. ~ Description for alumentum #: lang/json/AMMO_from_json.py msgid "" "Alumentum is magically processed coal or charcoal. It burns as hot as " @@ -6957,7 +6957,7 @@ msgid "dragon blood" msgid_plural "dragon blood" msgstr[0] "龍血" -#. ~ Description for {'str_sp': 'dragon blood'} +#. ~ Description for dragon blood #: lang/json/AMMO_from_json.py msgid "" "Blood of a dragon, it radiates warmth and looking at it you see moving " @@ -6982,7 +6982,7 @@ msgid "parabolan yarn" msgid_plural "parabolan yarn" msgstr[0] "" -#. ~ Description for {'str_sp': 'parabolan yarn'} +#. ~ Description for parabolan yarn #: lang/json/AMMO_from_json.py msgid "Parabolan wool yarn; could be used to knit iridescent wool clothing." msgstr "" @@ -6992,7 +6992,7 @@ msgid "crystallized mana" msgid_plural "crystallized mana" msgstr[0] "法力結晶" -#. ~ Description for {'str_sp': 'crystallized mana'} +#. ~ Description for crystallized mana #: lang/json/AMMO_from_json.py msgid "" "Some crystallized mana. This can be reloaded into rechargeable mana " @@ -7027,7 +7027,7 @@ msgid "liquid mercury" msgid_plural "liquid mercury" msgstr[0] "液態水銀" -#. ~ Description for {'str_sp': 'liquid mercury'} +#. ~ Description for liquid mercury #: lang/json/AMMO_from_json.py msgid "Elemental liquid mercury. Known for its use in thermometers." msgstr "基本的液態水銀,以用在溫度計內而著稱。" @@ -7043,7 +7043,7 @@ msgid "" "A lump of raw mithril. Needs to be reformed into an ingot to be useful." msgstr "" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/AMMO_from_json.py msgid "" "Blood from a blob corrupted creature. The surface of this black sludge " @@ -7503,7 +7503,7 @@ msgstr[0] "彈藥挎包" #. ~ Use action holster_msg for ammo satchel. #. ~ Use action holster_msg for chest ammo pouch. -#. ~ Use action holster_msg for {'str_sp': 'chest rig'}. +#. ~ Use action holster_msg for chest rig. #. ~ Use action holster_msg for javelin bag. #. ~ Use action holster_msg for ankle ammo pouch. #. ~ Use action holster_msg for leg ammo pouch. @@ -7519,7 +7519,7 @@ msgstr "你把你的 %s 存放好。" #. ~ Use action holster_prompt for ammo satchel. #. ~ Use action holster_prompt for chest ammo pouch. -#. ~ Use action holster_prompt for {'str_sp': 'chest rig'}. +#. ~ Use action holster_prompt for chest rig. #. ~ Use action holster_prompt for ankle ammo pouch. #. ~ Use action holster_prompt for leg ammo pouch. #. ~ Use action holster_prompt for XL Kevlar vest. @@ -7553,7 +7553,7 @@ msgid "chest rig" msgid_plural "chest rig" msgstr[0] "胸掛背心" -#. ~ Description for {'str_sp': 'chest rig'} +#. ~ Description for chest rig #: lang/json/ARMOR_from_json.py msgid "" "Popularized during the Vietnam War, chest rigs like these are typically " @@ -8372,36 +8372,18 @@ msgid "" msgstr "警察使用的黑色皮革腰帶。它有幾個小袋和一個警棍攜行帶。" #: lang/json/ARMOR_from_json.py -msgid "survivor belt" -msgid_plural "survivor belts" -msgstr[0] "生存者腰帶" +msgid "tool belt" +msgid_plural "tool belts" +msgstr[0] "工具腰帶" -#. ~ Use action holster_msg for survivor belt. #. ~ Use action holster_msg for tool belt. #. ~ Use action holster_msg for webbing belt. +#. ~ Use action holster_msg for survivor belt. #: lang/json/ARMOR_from_json.py #, no-python-format msgid "You put your %1$s in your %2$s" msgstr "你把你的%1$s放進你的%2$s" -#. ~ Use action holster_prompt for survivor belt. -#: lang/json/ARMOR_from_json.py -msgid "Store item" -msgstr "" - -#. ~ Description for survivor belt -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built leather belt covered with pouches, with a sheath to carry a " -"smaller blade and a holster to carry a pistol. Durable and carefully " -"crafted to be comfortable to wear. Activate to sheathe/draw a weapon." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "tool belt" -msgid_plural "tool belts" -msgstr[0] "工具腰帶" - #. ~ Use action holster_prompt for tool belt. #. ~ Use action holster_prompt for webbing belt. #: lang/json/ARMOR_from_json.py @@ -8540,23 +8522,6 @@ msgid "" "toes." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor fireboots" -msgid_plural "pairs of survivor fireboots" -msgstr[0] "生存者防火靴" - -#. ~ Description for pair of survivor fireboots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex boots. These will keep you " -"alive, even when knee-deep in the flames." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor fireboots" -msgid_plural "pairs of XL survivor fireboots" -msgstr[0] "XL 生存者防火靴" - #: lang/json/ARMOR_from_json.py msgid "pair of fur boots" msgid_plural "pairs of fur boots" @@ -8572,42 +8537,6 @@ msgid "pair of XL fur boots" msgid_plural "pairs of XL fur boots" msgstr[0] "XL 毛皮靴" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor boots" -msgid_plural "pairs of faux fur winter survivor boots" -msgstr[0] "" - -#. ~ Description for pair of faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " -"lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor boots" -msgid_plural "pairs of XL faux fur winter survivor boots" -msgstr[0] "" - -#. ~ Description for pair of XL faux fur winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " -"faux-fur lining, these will keep you alive even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit boots" -msgid_plural "pairs of survivor wetsuit boots" -msgstr[0] "生存者潛水靴" - -#. ~ Description for pair of survivor wetsuit boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored neoprene boots. These will keep you " -"dry and alive, come hell or high water." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of hiking boots" msgid_plural "pairs of hiking boots" @@ -8618,24 +8547,6 @@ msgstr[0] "登山靴" msgid "Tough yet light leather boots, intended for outdoor activity." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor boots" -msgid_plural "pairs of heavy survivor boots" -msgstr[0] "重型生存者靴" - -#. ~ Description for pair of heavy survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized Kevlar boots that are heavily armored with steel. " -"Favoring protection over comfort, these will keep you alive, especially when" -" knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor boots" -msgid_plural "pairs of XL heavy survivor boots" -msgstr[0] "XL 重型生存者靴" - #: lang/json/ARMOR_from_json.py msgid "pair of leather armor boots" msgid_plural "pairs of leather armor boots" @@ -8652,24 +8563,6 @@ msgid "pair of XL leather armor boots" msgid_plural "pairs of XL leather armor boots" msgstr[0] "XL 皮革護甲靴" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor boots" -msgid_plural "pairs of light survivor boots" -msgstr[0] "輕型生存者靴" - -#. ~ Description for pair of light survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " -"protection, these boots will keep you moving and agile, even when knee-deep " -"in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor boots" -msgid_plural "pairs of XL light survivor boots" -msgstr[0] "XL 輕型生存者靴" - #: lang/json/ARMOR_from_json.py msgid "pair of armored boots" msgid_plural "pairs of armored boots" @@ -8733,19 +8626,6 @@ msgid "" "popular amongst working class people over the last couple of decades." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor boots" -msgid_plural "pairs of survivor boots" -msgstr[0] "生存者靴" - -#. ~ Description for pair of survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized leather boots armored with Kevlar. Balancing comfort " -"and protection, these boots will keep you alive, even when knee-deep in the " -"dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of western boots" msgid_plural "pairs of western boots" @@ -8774,36 +8654,6 @@ msgid "pair of XL winter boots" msgid_plural "pairs of XL winter boots" msgstr[0] "XL 雪靴" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor boots" -msgid_plural "pairs of winter survivor boots" -msgstr[0] "冬季生存者靴" - -#. ~ Description for pair of winter survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " -"lining, these will keep you alive, even when knee-deep in the dead." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor boots" -msgid_plural "pairs of XL winter survivor boots" -msgstr[0] "XL 冬季生存者靴" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor boots" -msgid_plural "pairs of XL survivor boots" -msgstr[0] "XL 生存者靴" - -#. ~ Description for pair of XL survivor boots -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized leather boots armored with Kevlar. Balancing " -"comfort and protection, these boots will keep you alive even when knee-deep " -"in the dead." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of cleats" msgid_plural "pairs of cleats" @@ -9617,23 +9467,6 @@ msgid "XL leather duster" msgid_plural "XL leather dusters" msgstr[0] "XL 皮革防塵大衣" -#: lang/json/ARMOR_from_json.py -msgid "survivor duster" -msgid_plural "survivor dusters" -msgstr[0] "生存者防塵大衣" - -#. ~ Description for survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom full-length duster, covered with pouches and " -"pockets. Comfortable, durable, and great for storage." -msgstr "一件訂製的、等身長的凱夫勒裝甲防塵大衣, 上面佈滿了小袋子和口袋。舒適、耐用, 而且適合儲物。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor duster" -msgid_plural "XL survivor dusters" -msgstr[0] "XL 生存者防塵大衣" - #: lang/json/ARMOR_from_json.py msgid "greatcoat" msgid_plural "greatcoats" @@ -9678,7 +9511,7 @@ msgid "army jacket" msgid_plural "army jacket" msgstr[0] "陸軍外套" -#. ~ Description for {'str_sp': 'army jacket'} +#. ~ Description for army jacket #: lang/json/ARMOR_from_json.py msgid "A tough jacket with lots of pockets. Favored by the military." msgstr "一件強韌的、有許多口袋的外套。深受軍人喜愛。" @@ -9837,7 +9670,7 @@ msgid "kimono" msgid_plural "kimono" msgstr[0] "" -#. ~ Description for {'str_sp': 'kimono'} +#. ~ Description for kimono #: lang/json/ARMOR_from_json.py msgid "" "A traditional, ankle-length Japanese robe, wrapped around the body with a " @@ -9986,18 +9819,6 @@ msgid "" "unencumbered. Has plenty of storage space due to its many pockets." msgstr "一件厚實的、等身長的無袖皮革防塵大衣, 讓你的手臂不受束縛。它有很多口袋, 提供了相當充足的儲物空間。" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor duster" -msgid_plural "sleeveless survivor dusters" -msgstr[0] "生存者無袖防塵大衣" - -#. ~ Description for sleeveless survivor duster -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored full-length duster without sleeves, covered with " -"pouches and pockets. Comfortable, durable, and great for storage." -msgstr "一件訂製的、等身長的裝甲無袖防塵大衣, 由凱夫勒纖維製成。上面佈滿了小袋子和口袋。舒適、耐用, 而且適合儲物。" - #: lang/json/ARMOR_from_json.py msgid "sleeveless trenchcoat" msgid_plural "sleeveless trenchcoats" @@ -10046,18 +9867,6 @@ msgid "" " Has plenty of storage space due to its many pockets." msgstr "一件厚實的無袖皮革風衣, 讓你的手臂不受束縛。它有很多口袋, 提供了相當充足的儲物空間。" -#: lang/json/ARMOR_from_json.py -msgid "sleeveless survivor trenchcoat" -msgid_plural "sleeveless survivor trenchcoats" -msgstr[0] "無袖生存者風衣" - -#. ~ Description for sleeveless survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" -" pockets. Comfortable, durable, and great for storage." -msgstr "一件訂製的裝甲無袖風衣, 由凱夫勒纖維製成, 上面佈滿了小袋子和口袋。舒適、耐用、而且適合儲物。" - #: lang/json/ARMOR_from_json.py msgid "sleeveless tunic" msgid_plural "sleeveless tunics" @@ -10073,7 +9882,7 @@ msgid "thawb" msgid_plural "thawb" msgstr[0] "阿拉伯傳統服飾" -#. ~ Description for {'str_sp': 'thawb'} +#. ~ Description for thawb #: lang/json/ARMOR_from_json.py msgid "" "A long, loose-fitting robe with wide sleeves. A traditional Arab garment." @@ -10121,18 +9930,6 @@ msgstr[0] "皮革風衣" msgid "A thick leather trenchcoat, lined with pockets. Great for storage." msgstr "一件厚實的皮革風衣, 有許多口袋, 很適合儲物。" -#: lang/json/ARMOR_from_json.py -msgid "survivor trenchcoat" -msgid_plural "survivor trenchcoats" -msgstr[0] "生存者風衣" - -#. ~ Description for survivor trenchcoat -#: lang/json/ARMOR_from_json.py -msgid "" -"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " -"Comfortable, durable, and great for storage." -msgstr "一件訂製的裝甲風衣, 由凱夫勒纖維製成, 上面佈滿了小袋子和口袋。舒適、耐用、而且適合儲物。" - #: lang/json/ARMOR_from_json.py msgid "tunic" msgid_plural "tunics" @@ -10358,18 +10155,6 @@ msgstr[0] "太陽眼鏡" msgid "A pair of sunglasses, good for keeping the glare out of your eyes." msgstr "一副太陽眼鏡, 能夠防止強光亮瞎你的眼。" -#: lang/json/ARMOR_from_json.py -msgid "survivor goggles" -msgid_plural "pairs of survivor goggles" -msgstr[0] "生存者護目鏡" - -#. ~ Description for survivor goggles -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built pair of armored goggles with tinted lenses. Comfortable and " -"built to last, they provide excellent protection from environmental dangers." -msgstr "一副訂製的裝甲護目鏡, 配上了有色鏡片。耐用且舒適, 能提供絕佳的防護能力以抵禦環境危害。" - #: lang/json/ARMOR_from_json.py msgid "pair of bifocal sunglasses" msgid_plural "pairs of bifocal sunglasses" @@ -10710,23 +10495,6 @@ msgid "" "reinforced with steel guards across the back." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor firegloves" -msgid_plural "pairs of survivor firegloves" -msgstr[0] "生存者防火手套" - -#. ~ Description for pair of survivor firegloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" -"apocalyptic extension of what firefighters wore pre-Cataclysm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor firegloves" -msgid_plural "pairs of XL survivor firegloves" -msgstr[0] "XL 生存者防火手套" - #: lang/json/ARMOR_from_json.py msgid "pair of fur gloves" msgid_plural "pairs of fur gloves" @@ -10742,46 +10510,6 @@ msgid "pair of XL fur gloves" msgid_plural "pairs of XL fur gloves" msgstr[0] "XL 毛皮手套" -#: lang/json/ARMOR_from_json.py -msgid "pair of faux fur winter survivor gloves" -msgid_plural "pairs of faux fur winter survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL faux fur winter survivor gloves" -msgid_plural "pairs of XL faux fur winter survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of XL faux fur winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized and oversized Kevlar-armored gloves. These are lined " -"with faux-fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of heavy survivor gloves" -msgid_plural "pairs of heavy survivor gloves" -msgstr[0] "重型生存者手套" - -#. ~ Description for pair of heavy survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, steel-backed Kevlar gloves. These are designed for " -"protection first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL heavy survivor gloves" -msgid_plural "pairs of XL heavy survivor gloves" -msgstr[0] "XL 重型生存者手套" - #: lang/json/ARMOR_from_json.py msgid "white glove" msgid_plural "white gloves" @@ -10838,57 +10566,6 @@ msgid "pair of XL glove liners" msgid_plural "pairs of XL glove liners" msgstr[0] "XL 手套內裡" -#: lang/json/ARMOR_from_json.py -msgid "pair of light survivor gloves" -msgid_plural "pairs of light survivor gloves" -msgstr[0] "輕型生存者手套" - -#. ~ Description for pair of light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves. These are designed for " -"comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL light survivor gloves" -msgid_plural "pairs of XL light survivor gloves" -msgstr[0] "XL 輕型生存者手套" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless light survivor gloves" -msgid_plural "pairs of fingerless light survivor gloves" -msgstr[0] "" - -#. ~ Description for pair of fingerless light survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored cloth gloves without fingers. These " -"are designed for comfort first." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless light survivor gloves" -msgid_plural "pairs of XL fingerless light survivor gloves" -msgstr[0] "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of fingerless survivor gloves" -msgid_plural "pairs of fingerless survivor gloves" -msgstr[0] "露指生存者手套" - -#. ~ Description for pair of fingerless survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves without fingers. These " -"strike a balance between comfort and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL fingerless survivor gloves" -msgid_plural "pairs of XL fingerless survivor gloves" -msgstr[0] "XL 露指生存者手套" - #: lang/json/ARMOR_from_json.py msgid "pair of medical gloves" msgid_plural "pairs of medical gloves" @@ -10925,18 +10602,6 @@ msgid "" "A pair of rubber gloves, often used while cleaning with caustic materials." msgstr "一雙橡膠手套, 常用在酸蝕清洗上。" -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor gloves" -msgid_plural "pairs of survivor gloves" -msgstr[0] "生存者手套" - -#. ~ Description for pair of survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored leather gloves. These strike a balance" -" between comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of tactical gloves" msgid_plural "pairs of tactical gloves" @@ -11048,34 +10713,6 @@ msgid "" "mischief." msgstr "用於纏繞在手上的羊毛長條。能在拳擊或是做其他壞事時提供少量的防護能力。" -#: lang/json/ARMOR_from_json.py -msgid "pair of winter survivor gloves" -msgid_plural "pairs of winter survivor gloves" -msgstr[0] "冬季生存者手套" - -#. ~ Description for pair of winter survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar-armored gloves. These are lined with real fur." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL winter survivor gloves" -msgid_plural "pairs of XL winter survivor gloves" -msgstr[0] "XL 冬季生存者手套" - -#: lang/json/ARMOR_from_json.py -msgid "pair of XL survivor gloves" -msgid_plural "pairs of XL survivor gloves" -msgstr[0] "XL 生存者手套" - -#. ~ Description for pair of XL survivor gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive pair of customized, Kevlar-armored leather gloves. These strike a" -" balance between protection and comfort." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "pair of extra long white gloves" msgid_plural "pairs of extra long white gloves" @@ -11759,7 +11396,7 @@ msgid "kabuto" msgid_plural "kabuto" msgstr[0] "" -#. ~ Description for {'str_sp': 'kabuto'} +#. ~ Description for kabuto #: lang/json/ARMOR_from_json.py msgid "" "A medieval Japanese helmet with a scowling facemask that provides excellent " @@ -11861,30 +11498,6 @@ msgid "" " stereotypical horned helm." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl" -msgid_plural "nomad cowls" -msgstr[0] "游牧民族風帽" - -#. ~ Description for nomad cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels." -msgstr "一種粗製的保護罩, 可保護眼睛免受雨水和陽光的傷害, 專為長途旅行而設計。" - -#: lang/json/ARMOR_from_json.py -msgid "nomad cowl XL" -msgid_plural "nomad cowl XLs" -msgstr[0] "XL 游牧民族風帽" - -#. ~ Description for nomad cowl XL -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift cowl with protection for the eyes from rain and sun, designed " -"for long travels. Designed for a gigantic wanderer." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "great helm" msgid_plural "great helms" @@ -11934,30 +11547,6 @@ msgid "" "average." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "scavenger cowl" -msgid_plural "scavenger cowls" -msgstr[0] "拾荒者風帽" - -#. ~ Description for scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For dangerous scavenging ventures." -msgstr "一條堅固且延伸到頸部的防風帽, 附有防毒面具以保護眼睛與口鼻。是在危險區域探索的好幫手。" - -#: lang/json/ARMOR_from_json.py -msgid "XL scavenger cowl" -msgid_plural "XL scavenger cowls" -msgstr[0] "XL 拾荒者風帽" - -#. ~ Description for XL scavenger cowl -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy protective cowl extending down to the neck, fitted with a " -"respirator and eye protection. For oversized dangerous scavenging ventures." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "scrap helmet" msgid_plural "scrap helmets" @@ -12143,35 +11732,6 @@ msgid "" "holster/draw a gun." msgstr "一種彈性帶,有許多用於讓小型手槍能貼身收藏的裝置。沒有練習就很難使用。使用槍套來收槍/拔槍。" -#: lang/json/ARMOR_from_json.py -msgid "survivor harness" -msgid_plural "survivor harnesses" -msgstr[0] "生存者戰術背帶" - -#. ~ Description for survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear. Activate to holster/draw your " -"weapon." -msgstr "" -"一條手製的背帶, 上面縫著許多小袋子和一條戰術綁帶, 適用於小型步槍或類似的武器。細緻的做工讓它穿起來既耐用又舒服, 使用它來收入/取出武器。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor harness" -msgid_plural "XL survivor harnesses" -msgstr[0] "XL 生存者戰術背帶" - -#. ~ Description for XL survivor harness -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built light harness covered with pouches and including an integral " -"tactical sling for a small rifle or other such weapon. Durable and " -"carefully crafted to be comfortable to wear and fitting the largest forms. " -"Activate to holster/draw your weapon." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "XL holster" msgid_plural "XL holsters" @@ -12217,71 +11777,6 @@ msgid "" "in size XL." msgstr "一頂訂製的鏈甲兜帽。可以舒適地穿在頭盔下面。XL版。" -#: lang/json/ARMOR_from_json.py -msgid "survivor firehood" -msgid_plural "survivor firehoods" -msgstr[0] "生存者防火兜帽" - -#. ~ Description for survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Nomex and Kevlar hood, strong and durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firehood" -msgid_plural "XL survivor firehoods" -msgstr[0] "XL 生存者防火兜帽" - -#. ~ Description for XL survivor firehood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored Nomex and Kevlar hood, very strong and durable. Made " -"in Muspelheim." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor hood" -msgid_plural "light survivor hoods" -msgstr[0] "輕型生存者兜帽" - -#. ~ Description for light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor hood" -msgid_plural "XL light survivor hoods" -msgstr[0] "XL 輕型生存者兜帽" - -#. ~ Description for XL light survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored cloth and Kevlar hood, light yet durable." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter faux fur survivor hood" -msgid_plural "winter faux fur survivor hoods" -msgstr[0] "" - -#. ~ Description for winter faux fur survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL faux fur winter survivor hood" -msgid_plural "XL faux fur winter survivor hoods" -msgstr[0] "" - -#. ~ Description for XL faux fur winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" -" lining." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "rain hood" msgid_plural "rain hoods" @@ -12292,52 +11787,6 @@ msgstr[0] "兜帽雨衣" msgid "A waterproof hood made to be worn in bad weather." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor hood" -msgid_plural "survivor hoods" -msgstr[0] "生存者兜帽" - -#. ~ Description for survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored leather and Kevlar hood, designed to balance comfort " -"and protection." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor hood" -msgid_plural "winter survivor hoods" -msgstr[0] "冬季生存者兜帽" - -#. ~ Description for winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor hood" -msgid_plural "XL winter survivor hoods" -msgstr[0] "XL 冬季生存者兜帽" - -#. ~ Description for XL winter survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" -" lining." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor hood" -msgid_plural "XL survivor hoods" -msgstr[0] "XL 生存者兜帽" - -#. ~ Description for XL survivor hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive customized armored leather and Kevlar hood, designed to balance " -"comfort and protection." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant hood" msgid_plural "flame-resistant hoods" @@ -12714,9 +12163,9 @@ msgid "garnet and gold cufflinks" msgid_plural "garnet and gold cufflinks" msgstr[0] "石榴石金袖扣" -#. ~ Description for {'str_sp': 'garnet and gold cufflinks'} -#. ~ Description for {'str_sp': 'garnet and silver cufflinks'} -#. ~ Description for {'str_sp': 'garnet and platinum cufflinks'} +#. ~ Description for garnet and gold cufflinks +#. ~ Description for garnet and silver cufflinks +#. ~ Description for garnet and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset garnets." msgstr "鑲有石榴石的袖扣。" @@ -12726,9 +12175,9 @@ msgid "diamond and gold cufflinks" msgid_plural "diamond and gold cufflinks" msgstr[0] "鑲鑽金袖扣" -#. ~ Description for {'str_sp': 'diamond and gold cufflinks'} -#. ~ Description for {'str_sp': 'diamond and silver cufflinks'} -#. ~ Description for {'str_sp': 'diamond and platinum cufflinks'} +#. ~ Description for diamond and gold cufflinks +#. ~ Description for diamond and silver cufflinks +#. ~ Description for diamond and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset diamonds." msgstr "鑲有鑽石的袖扣。" @@ -12738,9 +12187,9 @@ msgid "amethyst and gold cufflinks" msgid_plural "amethyst and gold cufflinks" msgstr[0] "紫水晶金袖扣" -#. ~ Description for {'str_sp': 'amethyst and gold cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and silver cufflinks'} -#. ~ Description for {'str_sp': 'amethyst and platinum cufflinks'} +#. ~ Description for amethyst and gold cufflinks +#. ~ Description for amethyst and silver cufflinks +#. ~ Description for amethyst and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset amethysts." msgstr "鑲有紫水晶的袖扣。" @@ -12750,9 +12199,9 @@ msgid "aquamarine and gold cufflinks" msgid_plural "aquamarine and gold cufflinks" msgstr[0] "海藍寶石金袖扣" -#. ~ Description for {'str_sp': 'aquamarine and gold cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and silver cufflinks'} -#. ~ Description for {'str_sp': 'aquamarine and platinum cufflinks'} +#. ~ Description for aquamarine and gold cufflinks +#. ~ Description for aquamarine and silver cufflinks +#. ~ Description for aquamarine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset aquamarines." msgstr "鑲有海藍寶石的袖扣。" @@ -12762,9 +12211,9 @@ msgid "emerald and gold cufflinks" msgid_plural "emerald and gold cufflinks" msgstr[0] "祖母綠金袖扣" -#. ~ Description for {'str_sp': 'emerald and gold cufflinks'} -#. ~ Description for {'str_sp': 'emerald and silver cufflinks'} -#. ~ Description for {'str_sp': 'emerald and platinum cufflinks'} +#. ~ Description for emerald and gold cufflinks +#. ~ Description for emerald and silver cufflinks +#. ~ Description for emerald and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset emeralds." msgstr "鑲有祖母綠的袖扣。" @@ -12774,9 +12223,9 @@ msgid "alexandrite and gold cufflinks" msgid_plural "alexandrite and gold cufflinks" msgstr[0] "亞歷山大變石金袖扣" -#. ~ Description for {'str_sp': 'alexandrite and gold cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and silver cufflinks'} -#. ~ Description for {'str_sp': 'alexandrite and platinum cufflinks'} +#. ~ Description for alexandrite and gold cufflinks +#. ~ Description for alexandrite and silver cufflinks +#. ~ Description for alexandrite and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset alexandrites." msgstr "鑲有亞歷山大變石的袖扣。" @@ -12786,9 +12235,9 @@ msgid "ruby and gold cufflinks" msgid_plural "ruby and gold cufflinks" msgstr[0] "紅寶石金袖扣" -#. ~ Description for {'str_sp': 'ruby and gold cufflinks'} -#. ~ Description for {'str_sp': 'ruby and silver cufflinks'} -#. ~ Description for {'str_sp': 'ruby and platinum cufflinks'} +#. ~ Description for ruby and gold cufflinks +#. ~ Description for ruby and silver cufflinks +#. ~ Description for ruby and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset rubies." msgstr "鑲有紅寶石的袖扣。" @@ -12798,9 +12247,9 @@ msgid "peridot and gold cufflinks" msgid_plural "peridot and gold cufflinks" msgstr[0] "貴橄欖石金袖扣" -#. ~ Description for {'str_sp': 'peridot and gold cufflinks'} -#. ~ Description for {'str_sp': 'peridot and silver cufflinks'} -#. ~ Description for {'str_sp': 'peridot and platinum cufflinks'} +#. ~ Description for peridot and gold cufflinks +#. ~ Description for peridot and silver cufflinks +#. ~ Description for peridot and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset peridots." msgstr "鑲有貴橄欖石的袖扣。" @@ -12810,9 +12259,9 @@ msgid "sapphire and gold cufflinks" msgid_plural "sapphire and gold cufflinks" msgstr[0] "藍寶石金袖扣" -#. ~ Description for {'str_sp': 'sapphire and gold cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and silver cufflinks'} -#. ~ Description for {'str_sp': 'sapphire and platinum cufflinks'} +#. ~ Description for sapphire and gold cufflinks +#. ~ Description for sapphire and silver cufflinks +#. ~ Description for sapphire and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset sapphires." msgstr "鑲有藍寶石的袖扣。" @@ -12822,9 +12271,9 @@ msgid "tourmaline and gold cufflinks" msgid_plural "tourmaline and gold cufflinks" msgstr[0] "碧璽金袖扣" -#. ~ Description for {'str_sp': 'tourmaline and gold cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and silver cufflinks'} -#. ~ Description for {'str_sp': 'tourmaline and platinum cufflinks'} +#. ~ Description for tourmaline and gold cufflinks +#. ~ Description for tourmaline and silver cufflinks +#. ~ Description for tourmaline and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset tourmalines." msgstr "鑲有碧璽的袖扣。" @@ -12834,9 +12283,9 @@ msgid "citrine and gold cufflinks" msgid_plural "citrine and gold cufflinks" msgstr[0] "黃水晶金袖扣" -#. ~ Description for {'str_sp': 'citrine and gold cufflinks'} -#. ~ Description for {'str_sp': 'citrine and silver cufflinks'} -#. ~ Description for {'str_sp': 'citrine and platinum cufflinks'} +#. ~ Description for citrine and gold cufflinks +#. ~ Description for citrine and silver cufflinks +#. ~ Description for citrine and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset citrines." msgstr "鑲有黃水晶的袖扣。" @@ -12846,9 +12295,9 @@ msgid "blue topaz and gold cufflinks" msgid_plural "blue topaz and gold cufflinks" msgstr[0] "藍色托帕石金袖扣" -#. ~ Description for {'str_sp': 'blue topaz and gold cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and silver cufflinks'} -#. ~ Description for {'str_sp': 'blue topaz and platinum cufflinks'} +#. ~ Description for blue topaz and gold cufflinks +#. ~ Description for blue topaz and silver cufflinks +#. ~ Description for blue topaz and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset blue topaz." msgstr "鑲有藍色托帕石的袖扣。" @@ -12858,9 +12307,9 @@ msgid "opal and gold cufflinks" msgid_plural "opal and gold cufflinks" msgstr[0] "蛋白石金袖扣" -#. ~ Description for {'str_sp': 'opal and gold cufflinks'} -#. ~ Description for {'str_sp': 'opal and silver cufflinks'} -#. ~ Description for {'str_sp': 'opal and platinum cufflinks'} +#. ~ Description for opal and gold cufflinks +#. ~ Description for opal and silver cufflinks +#. ~ Description for opal and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset opals." msgstr "鑲有蛋白石的袖扣。" @@ -12870,9 +12319,9 @@ msgid "pearl and gold cufflinks" msgid_plural "pearl and gold cufflinks" msgstr[0] "珍珠金袖扣" -#. ~ Description for {'str_sp': 'pearl and gold cufflinks'} -#. ~ Description for {'str_sp': 'pearl and silver cufflinks'} -#. ~ Description for {'str_sp': 'pearl and platinum cufflinks'} +#. ~ Description for pearl and gold cufflinks +#. ~ Description for pearl and silver cufflinks +#. ~ Description for pearl and platinum cufflinks #: lang/json/ARMOR_from_json.py msgid "A pair of cufflinks with inset pearls." msgstr "鑲有珍珠的袖扣。" @@ -16153,7 +15602,7 @@ msgid "turnout trousers" msgid_plural "turnout trousers" msgstr[0] "消防長褲" -#. ~ Description for {'str_sp': 'turnout trousers'} +#. ~ Description for turnout trousers #: lang/json/ARMOR_from_json.py msgid "" "A heavy pair of protective overalls worn by firefighters as protection " @@ -16190,7 +15639,7 @@ msgid "leather chaps" msgid_plural "leather chaps" msgstr[0] "皮革護腿" -#. ~ Description for {'str_sp': 'leather chaps'} +#. ~ Description for leather chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather chaps. Very tough and light, but doesn't offer any " @@ -16202,7 +15651,7 @@ msgid "chainsaw chaps" msgid_plural "chainsaw chaps" msgstr[0] "防鋸護腿" -#. ~ Description for {'str_sp': 'chainsaw chaps'} +#. ~ Description for chainsaw chaps #: lang/json/ARMOR_from_json.py msgid "" "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially " @@ -16216,7 +15665,7 @@ msgid "fencing pants" msgid_plural "fencing pants" msgstr[0] "擊劍長褲" -#. ~ Description for {'str_sp': 'fencing pants'} +#. ~ Description for fencing pants #: lang/json/ARMOR_from_json.py msgid "A pair of reinforced pants used by fencers to prevent injuries." msgstr "一件供擊劍運動員使用的強化長褲, 用於防止受傷。" @@ -16375,30 +15824,6 @@ msgid "" "convenient protection. You look like a trash giant." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "light survivor cargo pants" -msgid_plural "light survivor cargo pants" -msgstr[0] "輕型生存者工裝長褲" - -#. ~ Description for {'str_sp': 'light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof." -msgstr "一件輕量的工裝長褲, 由凱夫勒裝甲製成。可以容納大量物品。堅固且幾乎防水。" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor cargo pants" -msgid_plural "XL light survivor cargo pants" -msgstr[0] "XL 輕型生存者工裝長褲" - -#. ~ Description for {'str_sp': 'XL light survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, Kevlar armored cargo pants designed to hold as much as " -"possible. Strong and mostly waterproof and sized for larger than average." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "motorcycle pants" msgid_plural "pairs of motorcycle pants" @@ -16409,36 +15834,12 @@ msgstr[0] "摩托車長褲" msgid "A pair of pants designed for dirt bikers and motorcyclists." msgstr "一件供越野自行車與摩托車騎士使用的長褲。" -#: lang/json/ARMOR_from_json.py -msgid "survivor cargo pants" -msgid_plural "survivor cargo pants" -msgstr[0] "生存者工裝長褲" - -#. ~ Description for {'str_sp': 'survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" -"built to be durable, comfortable, and easy to wear." -msgstr "一件訂製的長褲, 由凱夫勒裝甲製作, 上面佈滿了小袋子和口袋。耐用、舒適、而且便於穿著。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor cargo pants" -msgid_plural "XL survivor cargo pants" -msgstr[0] "XL 生存者工裝長褲" - -#. ~ Description for {'str_sp': 'XL survivor cargo pants'} -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of oversized Kevlar armored pants covered with pouches and pockets. " -"Custom-built to be durable, comfortable, and easy to wear." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "EOD trousers" msgid_plural "EOD trousers" msgstr[0] "拆彈防護長褲" -#. ~ Description for {'str_sp': 'EOD trousers'} +#. ~ Description for EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Thick armored trousers constructed from Kevlar and Nomex for use by " @@ -16450,7 +15851,7 @@ msgid "light EOD trousers" msgid_plural "light EOD trousers" msgstr[0] "輕型拆彈防護長褲" -#. ~ Description for {'str_sp': 'light EOD trousers'} +#. ~ Description for light EOD trousers #: lang/json/ARMOR_from_json.py msgid "" "Armored trousers constructed from Kevlar and Nomex for use by explosive " @@ -16475,7 +15876,7 @@ msgid "basketball shorts" msgid_plural "basketball shorts" msgstr[0] "籃球短褲" -#. ~ Description for {'str_sp': 'basketball shorts'} +#. ~ Description for basketball shorts #: lang/json/ARMOR_from_json.py msgid "A pair of basketball shorts. Comfortable and light." msgstr "一件舒適又輕盈的籃球短褲。" @@ -16485,7 +15886,7 @@ msgid "breeches" msgid_plural "breeches" msgstr[0] "馬褲" -#. ~ Description for {'str_sp': 'breeches'} +#. ~ Description for breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of stiff yet baggy material. " @@ -16507,7 +15908,7 @@ msgid "hot pants" msgid_plural "hot pants" msgstr[0] "熱褲" -#. ~ Description for {'str_sp': 'hot pants'} +#. ~ Description for hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of short shorts." msgstr "一件簡單的熱褲。" @@ -16517,7 +15918,7 @@ msgid "fur hot pants" msgid_plural "fur hot pants" msgstr[0] "毛皮熱褲" -#. ~ Description for {'str_sp': 'fur hot pants'} +#. ~ Description for fur hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of fur short shorts." msgstr "一件簡單的毛皮熱褲。" @@ -16527,7 +15928,7 @@ msgid "leather hot pants" msgid_plural "leather hot pants" msgstr[0] "皮革熱褲" -#. ~ Description for {'str_sp': 'leather hot pants'} +#. ~ Description for leather hot pants #: lang/json/ARMOR_from_json.py msgid "A simple pair of leather short shorts." msgstr "一件簡單的皮革熱褲。" @@ -16537,7 +15938,7 @@ msgid "jeans" msgid_plural "jeans" msgstr[0] "牛仔長褲" -#. ~ Description for {'str_sp': 'jeans'} +#. ~ Description for jeans #: lang/json/ARMOR_from_json.py msgid "A pair of blue jeans with two deep pockets." msgstr "一件有兩個深口袋的藍色牛仔長褲。" @@ -16569,7 +15970,7 @@ msgid "red jeans" msgid_plural "red jeans" msgstr[0] "紅色牛仔長褲" -#. ~ Description for {'str_sp': 'red jeans'} +#. ~ Description for red jeans #: lang/json/ARMOR_from_json.py msgid "A pair of tight-fitting candy-apple-red jeans with two deep pockets." msgstr "一件有兩個深口袋的糖蘋果紅緊身牛仔長褲。" @@ -16595,7 +15996,7 @@ msgid "leggings" msgid_plural "leggings" msgstr[0] "緊身長褲" -#. ~ Description for {'str_sp': 'leggings'} +#. ~ Description for leggings #: lang/json/ARMOR_from_json.py msgid "" "Skin-tight nylon leggings, sometimes used when exercising, that keep your " @@ -16665,7 +16066,7 @@ msgid "pants" msgid_plural "pants" msgstr[0] "長褲" -#. ~ Description for {'str_sp': 'pants'} +#. ~ Description for pants #: lang/json/ARMOR_from_json.py msgid "A pair of khaki pants. Slightly warmer than jeans." msgstr "一件卡其色的長褲。稍微比牛仔褲保暖。" @@ -16675,15 +16076,15 @@ msgid "army pants" msgid_plural "army pants" msgstr[0] "陸軍長褲" -#. ~ Description for {'str_sp': 'army pants'} +#. ~ Description for army pants #: lang/json/ARMOR_from_json.py msgid "A tough pair of pants lined with pockets. Favored by the military." msgstr "一件強韌的、有許多口袋的長褲。深受軍人喜愛。" #: lang/json/ARMOR_from_json.py msgid "" -"A tough pair of pants Favored by the military. This pair came in a grey, " -"green and tan camouflage. The pattern is notable for it's lack of black." +"A tough pair of pants. Favored by the military. This pair came in a gray, " +"green and tan camouflage. The pattern is notable for its lack of black." msgstr "" #: lang/json/ARMOR_from_json.py @@ -16715,7 +16116,7 @@ msgid "cargo pants" msgid_plural "cargo pants" msgstr[0] "工裝長褲" -#. ~ Description for {'str_sp': 'cargo pants'} +#. ~ Description for cargo pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants lined with pockets, offering lots of storage." msgstr "一件有許多口袋的長褲, 提供許多儲物空間。" @@ -16725,7 +16126,7 @@ msgid "checkered pants" msgid_plural "checkered pants" msgstr[0] "格紋長褲" -#. ~ Description for {'str_sp': 'checkered pants'} +#. ~ Description for checkered pants #: lang/json/ARMOR_from_json.py msgid "In a pinch, these pants can be used for an impromptu game of checkers." msgstr "在緊急的時刻, 這件長褲可以用來當作圍棋的棋盤。" @@ -16735,7 +16136,7 @@ msgid "fur pants" msgid_plural "fur pants" msgstr[0] "毛皮長褲" -#. ~ Description for {'str_sp': 'fur pants'} +#. ~ Description for fur pants #: lang/json/ARMOR_from_json.py msgid "A hefty pair of fur-lined pants." msgstr "一件有沉重毛皮內襯的長褲。" @@ -16745,7 +16146,7 @@ msgid "faux fur pants" msgid_plural "faux fur pants" msgstr[0] "人造毛皮長褲" -#. ~ Description for {'str_sp': 'faux fur pants'} +#. ~ Description for faux fur pants #: lang/json/ARMOR_from_json.py msgid "A pair of long cotton pants lined with warm imitation fur." msgstr "這款棉質長褲內襯溫暖的仿製毛皮。" @@ -16755,7 +16156,7 @@ msgid "leather pants" msgid_plural "leather pants" msgstr[0] "皮革長褲" -#. ~ Description for {'str_sp': 'leather pants'} +#. ~ Description for leather pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of black leather pants. Very tough, but cumbersome and without much " @@ -16767,7 +16168,7 @@ msgid "ski pants" msgid_plural "ski pants" msgstr[0] "滑雪長褲" -#. ~ Description for {'str_sp': 'ski pants'} +#. ~ Description for ski pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants meant for alpine skiing." msgstr "一件滑雪長褲。" @@ -16777,7 +16178,7 @@ msgid "police breeches" msgid_plural "police breeches" msgstr[0] "" -#. ~ Description for {'str_sp': 'police breeches'} +#. ~ Description for police breeches #: lang/json/ARMOR_from_json.py msgid "" "Pair of tight-fitting police breeches. Offers lots of mobility for " @@ -16789,7 +16190,7 @@ msgid "mail carrier shorts" msgid_plural "mail carrier shorts" msgstr[0] "郵差短褲" -#. ~ Description for {'str_sp': 'mail carrier shorts'} +#. ~ Description for mail carrier shorts #: lang/json/ARMOR_from_json.py msgid "A pair of dark blue shorts, the kind used by postal service workers." msgstr "一條深藍色的短褲, 供郵政服務人員穿的那種。" @@ -16799,7 +16200,7 @@ msgid "shorts" msgid_plural "shorts" msgstr[0] "短褲" -#. ~ Description for {'str_sp': 'shorts'} +#. ~ Description for shorts #: lang/json/ARMOR_from_json.py msgid "A pair of khaki shorts." msgstr "一件卡其色的短褲。" @@ -16809,7 +16210,7 @@ msgid "cargo shorts" msgid_plural "cargo shorts" msgstr[0] "工裝短褲" -#. ~ Description for {'str_sp': 'cargo shorts'} +#. ~ Description for cargo shorts #: lang/json/ARMOR_from_json.py msgid "A pair of shorts lined with pockets, offering decent storage." msgstr "一件附口袋的短褲, 提供一些儲物空間。" @@ -16819,7 +16220,7 @@ msgid "denim shorts" msgid_plural "denim shorts" msgstr[0] "牛仔短褲" -#. ~ Description for {'str_sp': 'denim shorts'} +#. ~ Description for denim shorts #: lang/json/ARMOR_from_json.py msgid "A pair of denim shorts." msgstr "" @@ -16876,7 +16277,7 @@ msgid "striped pants" msgid_plural "striped pants" msgstr[0] "條紋長褲" -#. ~ Description for {'str_sp': 'striped pants'} +#. ~ Description for striped pants #: lang/json/ARMOR_from_json.py msgid "A pair of pants with horizontal black and white stripes." msgstr "一件長褲。有著黑白相間的條紋。" @@ -16905,7 +16306,7 @@ msgid "army winter pants" msgid_plural "army winter pants" msgstr[0] "陸軍冬季長褲" -#. ~ Description for {'str_sp': 'army winter pants'} +#. ~ Description for army winter pants #: lang/json/ARMOR_from_json.py msgid "" "A tough pair of pants lined with pockets, thickly padded for warmth. " @@ -17968,54 +17369,6 @@ msgid "" " around is not exactly comfortable." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "survivor duffel bag" -msgid_plural "survivor duffel bags" -msgstr[0] "生存者行李袋" - -#. ~ Description for survivor duffel bag -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "一個厚重的訂製行李袋。耐用且細心的做工讓它盡可能地裝下夠多的東西。" - -#: lang/json/ARMOR_from_json.py -msgid "survivor backpack" -msgid_plural "survivor backpacks" -msgstr[0] "生存者背包" - -#. ~ Description for survivor backpack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built backpack. Durable and carefully crafted to hold as much " -"stuff as possible." -msgstr "一個手工製的背包。耐用且細心的做工讓它盡可能地裝下夠多的東西。" - -#: lang/json/ARMOR_from_json.py -msgid "survivor rucksack" -msgid_plural "survivor rucksacks" -msgstr[0] "生存者旅行背包" - -#. ~ Description for survivor rucksack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built heavy backpack. Durable and carefully crafted to hold as " -"much stuff as possible." -msgstr "一個厚重的訂製的背包。耐用且細心的做工讓它盡可能地裝下夠多的東西。" - -#: lang/json/ARMOR_from_json.py -msgid "survivor runner pack" -msgid_plural "survivor runner packs" -msgstr[0] "生存者慢跑背包" - -#. ~ Description for survivor runner pack -#: lang/json/ARMOR_from_json.py -msgid "" -"A custom-built lightweight runner pack. Durable and carefully crafted to " -"hold as much stuff as possible." -msgstr "一個手工製輕巧的慢跑背包。耐用且細心的做工讓它盡可能地裝下夠多的東西。" - #: lang/json/ARMOR_from_json.py msgid "swag bag" msgid_plural "swag bags" @@ -18416,31 +17769,6 @@ msgid "XL plate armor" msgid_plural "XL plate armors" msgstr[0] "XL 板甲" -#: lang/json/ARMOR_from_json.py -msgid "nomad gear" -msgid_plural "nomad gears" -msgstr[0] "遊牧民族衣" - -#. ~ Description for nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A makeshift outfit made from pre-Cataclysm clothing designed for long " -"travels. It has a lot of storage space." -msgstr "一件粗製的外衣,由大災變前的衣物製成,設計來長途旅行。它有大量的儲物空間。" - -#: lang/json/ARMOR_from_json.py -msgid "light nomad gear" -msgid_plural "light nomad gears" -msgstr[0] "輕便遊牧民族衣 " - -#. ~ Description for light nomad gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A light makeshift outfit made from pre-Cataclysm clothing designed for long " -"summer travels. It offers less storage space and armor compared to regular " -"nomad gear." -msgstr "這款輕便的粗製旅行衣,是由災難之前的衣服修改而來,用於漫長的夏季旅行用。相較起標準的遊牧民族衣,它的儲物空間和防護略為遜色。" - #: lang/json/ARMOR_from_json.py msgid "plated leather armor" msgid_plural "plated leather armors" @@ -18481,8 +17809,8 @@ msgstr[0] "鎮暴裝甲" #. ~ Description for riot armor #: lang/json/ARMOR_from_json.py msgid "" -"Black body armor used by riot police officers, back when they were just " -"riots. The word POLICE is emblazoned across the front." +"Black plastic body armor plates used by riot police officers, back when they" +" were just riots. The word POLICE is emblazoned across the front." msgstr "" #: lang/json/ARMOR_from_json.py @@ -18495,18 +17823,6 @@ msgstr[0] "大鎧" msgid "An ornamental suit of Japanese samurai armor." msgstr "一套裝飾用的日本武士鎧甲。" -#: lang/json/ARMOR_from_json.py -msgid "scavenger gear" -msgid_plural "scavenger gears" -msgstr[0] "拾荒者裝備" - -#. ~ Description for scavenger gear -#: lang/json/ARMOR_from_json.py -msgid "" -"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " -"gear. It has a lot of storage space." -msgstr "一件堅固的拾荒者外衣, 由大災變前的防護裝備改裝製成。它有大量的儲物空間。" - #: lang/json/ARMOR_from_json.py msgid "scrap suit" msgid_plural "scrap suits" @@ -18630,50 +17946,6 @@ msgid "XL entry suit" msgid_plural "XL entry suits" msgstr[0] "XL 避火衣" -#: lang/json/ARMOR_from_json.py -msgid "survivor firesuit" -msgid_plural "survivor firesuits" -msgstr[0] "生存者防火裝" - -#. ~ Description for survivor firesuit -#: lang/json/ARMOR_from_json.py -msgid "" -"Heavy, hand-built combination armor made from a cut-down bulletproof vest " -"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " -"fire and the elements." -msgstr "一件厚重、手工製作的組合護甲, 由精簡的防彈背心和強化的諾梅克斯防火連身服製成。保護你免於火焰與環境危害。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor firesuit" -msgid_plural "XL survivor firesuits" -msgstr[0] "XL 生存者防火裝" - -#: lang/json/ARMOR_from_json.py -msgid "winter survivor suit" -msgid_plural "winter survivor suits" -msgstr[0] "冬季生存者裝" - -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " -"the elements as well as from harm." -msgstr "" - -#: lang/json/ARMOR_from_json.py -msgid "XL winter survivor suit" -msgid_plural "XL winter survivor suits" -msgstr[0] "XL 冬季生存者裝" - -#. ~ Description for XL winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm, heavy and oversized hand-built combination armor made from a " -"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " -"Protects from the elements as well as from harm." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "gambeson" msgid_plural "gambesons" @@ -18686,11 +17958,29 @@ msgid "" "other armor. Or worn on its own, if you can't afford proper armor." msgstr "一件厚實的絎縫布料外套, 設計來穿在鏈甲或其他護甲下面。如果你穿不起像樣的護甲, 也可以只穿這一件。" +#: lang/json/ARMOR_from_json.py +msgid "kevlar gambeson" +msgid_plural "kevlar gambesons" +msgstr[0] "" + +#. ~ Description for kevlar gambeson +#: lang/json/ARMOR_from_json.py +msgid "" +"A thick jacket of quilted fabric, designed to be worn underneath mail or " +"other armor. This one incorporates Kevlar layers added for better " +"protection." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "XL gambeson" msgid_plural "XL gambesons" msgstr[0] "XL 軟甲" +#: lang/json/ARMOR_from_json.py +msgid "XL kevlar gambeson" +msgid_plural "XL kevlar gambesons" +msgstr[0] "" + #: lang/json/ARMOR_from_json.py msgid "hazmat suit" msgid_plural "hazmat suits" @@ -18705,37 +17995,6 @@ msgid "" "full protection." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "heavy survivor suit" -msgid_plural "heavy survivor suits" -msgstr[0] "重型生存者裝" - -#. ~ Description for heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A heavy, hand-built combination armor made from a reinforced bulletproof " -"vest and a metal-plated leather jumpsuit. Protects from the elements as " -"well as from harm." -msgstr "一件厚重、手工製作的組合護甲, 由強化的防彈背心和金屬裝甲皮革連身服製成。保護你免於傷害與環境危害。" - -#: lang/json/ARMOR_from_json.py -msgid "light survivor suit" -msgid_plural "light survivor suits" -msgstr[0] "輕型生存者裝" - -#. ~ Description for light survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced fabric jumpsuit. Protects from the elements as well " -"as from harm." -msgstr "一件輕量、手工製作的組合護甲, 由精簡的防彈背心和強化的布料連身服製成。保護你免於傷害與環境危害。" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor suit" -msgid_plural "XL light survivor suits" -msgstr[0] "XL 輕型生存者裝" - #: lang/json/ARMOR_from_json.py msgid "flame-resistant suit" msgid_plural "flame-resistant suits" @@ -18798,18 +18057,6 @@ msgid "" "experience." msgstr "一套棉製的西裝, 末日之時也要來點紳士氣息。" -#: lang/json/ARMOR_from_json.py -msgid "survivor suit" -msgid_plural "survivor suits" -msgstr[0] "生存者裝" - -#. ~ Description for survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A hand-built combination armor made from a bulletproof vest and a reinforced" -" leather jumpsuit. Protects from the elements as well as from harm." -msgstr "一件手工製作的組合護甲, 由防彈背心與強化的皮革連身服製成。保護你免於傷害與環境危害。" - #: lang/json/ARMOR_from_json.py msgid "SWAT armor" msgid_plural "SWAT armors" @@ -18818,9 +18065,9 @@ msgstr[0] "SWAT 護甲" #. ~ Description for SWAT armor #: lang/json/ARMOR_from_json.py msgid "" -"A suit of black bulletproof armor with lots of pockets. The word SWAT is " -"emblazoned across the back." -msgstr "一套黑色防彈護甲, 有許多口袋。背後印有 SWAT 的字樣。" +"A suit of black armour plating covering the vital parts of the chest, arms, " +"and legs. The word SWAT is emblazoned across the back." +msgstr "" #: lang/json/ARMOR_from_json.py msgid "leather touring suit" @@ -18834,40 +18081,6 @@ msgid "" "Light and very comfortable." msgstr "一套厚實的皮革裝束, 設計來在騎摩托車時提供防護。輕巧且非常舒適。" -#. ~ Description for winter survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A warm and heavy hand-built combination armor made from a reinforced " -"bulletproof vest and an insulated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "一件保暖、厚重、手工製作的組合護甲, 由強化的防彈背心和絕緣的皮革連身服製成。保護你免於傷害與環境危害。" - -#: lang/json/ARMOR_from_json.py -msgid "XL survivor suit" -msgid_plural "XL survivor suits" -msgstr[0] "XL 生存者裝" - -#. ~ Description for XL survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive hand-built combination armor made from a bulletproof vest and a " -"reinforced leather jumpsuit. Protects from the elements as well as from " -"harm." -msgstr "一件手工製作的巨大組合護甲, 由防彈背心與強化的皮革連身服製成。保護你免於傷害與環境危害。" - -#: lang/json/ARMOR_from_json.py -msgid "XL heavy survivor suit" -msgid_plural "XL heavy survivor suits" -msgstr[0] "XL 重型生存者裝" - -#. ~ Description for XL heavy survivor suit -#: lang/json/ARMOR_from_json.py -msgid "" -"A massive, heavy, hand-built combination armor made from a reinforced " -"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " -"elements as well as from harm." -msgstr "一件巨型、厚重、手工製作的組合護甲,由強化的防彈背心和金屬裝甲皮革連身服製成。保護你免於傷害與環境危害。" - #: lang/json/ARMOR_from_json.py msgid "military flight suit" msgid_plural "military flight suits" @@ -18933,42 +18146,6 @@ msgstr[0] "潛水兜帽" msgid "A neoprene hood, commonly worn by divers." msgstr "一個橡膠製的頭套, 通常是潛水員穿的。" -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit hood" -msgid_plural "survivor wetsuit hoods" -msgstr[0] "生存者潛水兜帽" - -#. ~ Description for survivor wetsuit hood -#: lang/json/ARMOR_from_json.py -msgid "" -"A customized armored neoprene and Kevlar hood, very strong and durable." -msgstr "一頂訂製的兜帽, 由凱夫勒裝甲與橡膠製成。非常堅固且耐用。" - -#: lang/json/ARMOR_from_json.py -msgid "survivor wetsuit" -msgid_plural "survivor wetsuits" -msgstr[0] "生存者潛水服" - -#. ~ Description for survivor wetsuit -#: lang/json/ARMOR_from_json.py -msgid "" -"A lightweight, hand-built combination armor made from a cut-down bulletproof" -" vest and a reinforced neoprene wetsuit. Protects from the elements as well" -" as from harm." -msgstr "一件輕量、手工製作的組合護甲, 由剪裁的防彈背心和強化的橡膠潛水服製成。保護你免於傷害與環境危害。" - -#: lang/json/ARMOR_from_json.py -msgid "pair of survivor wetsuit gloves" -msgid_plural "pairs of survivor wetsuit gloves" -msgstr[0] "生存者潛水手套" - -#. ~ Description for pair of survivor wetsuit gloves -#: lang/json/ARMOR_from_json.py -msgid "" -"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" -" wear while providing maximum protection under extreme conditions." -msgstr "一雙訂製的手套, 由凱夫勒裝甲與橡膠製成。便於穿戴, 即使在極端環境下也能提供極致的防護能力。" - #: lang/json/ARMOR_from_json.py msgid "spring suit" msgid_plural "spring suits" @@ -19066,7 +18243,7 @@ msgid "lorica segmentata" msgid_plural "lorica segmentata" msgstr[0] "環片甲" -#. ~ Description for {'str_sp': 'lorica segmentata'} +#. ~ Description for lorica segmentata #: lang/json/ARMOR_from_json.py msgid "" "An ancient Roman laminar armor, made of overlapping metal strips connected " @@ -19219,7 +18396,7 @@ msgid "tire leather armor" msgid_plural "tire leather armor" msgstr[0] "" -#. ~ Description for {'str_sp': 'tire leather armor'} +#. ~ Description for tire leather armor #: lang/json/ARMOR_from_json.py msgid "" "A jacket reinforced with chunks of thick rubber tire on the shoulders, back " @@ -19275,23 +18452,6 @@ msgid "" "A lightweight, bullet resistant vest. Suitable for wearing under clothing." msgstr "一件輕巧的防彈背心。它可以穿在其他衣物下面。" -#: lang/json/ARMOR_from_json.py -msgid "light survivor body armor" -msgid_plural "light survivor body armors" -msgstr[0] "輕型生存者護甲" - -#. ~ Description for light survivor body armor -#: lang/json/ARMOR_from_json.py -msgid "" -"Lightweight, custom-built body armor made from Kevlar and tough fabric. " -"Mostly waterproof." -msgstr "一件訂製的輕量護甲, 由凱夫勒裝甲與堅韌的布料製成。幾乎防水。" - -#: lang/json/ARMOR_from_json.py -msgid "XL light survivor body armor" -msgid_plural "XL light survivor body armors" -msgstr[0] "XL 輕型生存者護甲" - #: lang/json/ARMOR_from_json.py msgid "motorcycle armor" msgid_plural "motorcycle armors" @@ -19541,7 +18701,7 @@ msgid "leotard" msgid_plural "leotard" msgstr[0] "韻律體操服" -#. ~ Description for {'str_sp': 'leotard'} +#. ~ Description for leotard #: lang/json/ARMOR_from_json.py msgid "" "A skin-tight spandex garment, covering the body from the groin to the " @@ -19624,7 +18784,7 @@ msgid "French maid clothes" msgid_plural "French maid clothes" msgstr[0] "法式女僕裝" -#. ~ Description for {'str_sp': 'French maid clothes'} +#. ~ Description for French maid clothes #: lang/json/ARMOR_from_json.py msgid "The French maid dress, blue with a frilly white apron." msgstr "藍色的法式女僕洋裝, 有著白色的褶邊圍裙。" @@ -19903,7 +19063,7 @@ msgid "boxer briefs" msgid_plural "boxer briefs" msgstr[0] "四角內褲" -#. ~ Description for {'str_sp': 'boxer briefs'} +#. ~ Description for boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Yes." msgstr "老掉牙的問題, 喜歡四角內褲還是三角內褲? 你的答案是? 前者。" @@ -19913,7 +19073,7 @@ msgid "XL boxer briefs" msgid_plural "XL boxer briefs" msgstr[0] "XL 四角內褲" -#. ~ Description for {'str_sp': 'XL boxer briefs'} +#. ~ Description for XL boxer briefs #: lang/json/ARMOR_from_json.py msgid "The age-old question, boxers or briefs? Your answer? Chonk!" msgstr "老掉牙的問題, 喜歡四角內褲還是三角內褲? 你的答案是? 四角內褲巨人版!" @@ -19923,7 +19083,7 @@ msgid "boxer shorts" msgid_plural "boxer shorts" msgstr[0] "平口內褲" -#. ~ Description for {'str_sp': 'boxer shorts'} +#. ~ Description for boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's boxer shorts. More fashionable than briefs and just as comfortable." @@ -19934,7 +19094,7 @@ msgid "XL boxer shorts" msgid_plural "XL boxer shorts" msgstr[0] "XL 平口內褲" -#. ~ Description for {'str_sp': 'XL boxer shorts'} +#. ~ Description for XL boxer shorts #: lang/json/ARMOR_from_json.py msgid "" "Men's XL boxer shorts. For the very big and tall. More fashionable than " @@ -19946,7 +19106,7 @@ msgid "boy shorts" msgid_plural "boy shorts" msgstr[0] "女用平口內褲" -#. ~ Description for {'str_sp': 'boy shorts'} +#. ~ Description for boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -19957,7 +19117,7 @@ msgid "XL boy shorts" msgid_plural "XL boy shorts" msgstr[0] "XL 女用平口內褲" -#. ~ Description for {'str_sp': 'XL boy shorts'} +#. ~ Description for XL boy shorts #: lang/json/ARMOR_from_json.py msgid "" "Female underwear similar to men's boxer shorts, but much more close-fitting." @@ -19980,7 +19140,7 @@ msgid "briefs" msgid_plural "briefs" msgstr[0] "三角內褲" -#. ~ Description for {'str_sp': 'briefs'} +#. ~ Description for briefs #: lang/json/ARMOR_from_json.py msgid "A pair of briefs. Comfortable underwear worn by men." msgstr "一件三角內褲。男性專用的舒適內衣。" @@ -20124,7 +19284,7 @@ msgid "panties" msgid_plural "panties" msgstr[0] "女用內褲" -#. ~ Description for {'str_sp': 'panties'} +#. ~ Description for panties #: lang/json/ARMOR_from_json.py msgid "" "Underwear designed to be worn by women. Preserves your modesty in desperate" @@ -20183,7 +19343,7 @@ msgid "tights" msgid_plural "tights" msgstr[0] "褲襪" -#. ~ Description for {'str_sp': 'tights'} +#. ~ Description for tights #: lang/json/ARMOR_from_json.py msgid "" "A snug cloth garment which clings tightly to the legs and feet to protect " @@ -20206,7 +19366,7 @@ msgid "compression shorts" msgid_plural "compression shorts" msgstr[0] "塑身短褲" -#. ~ Description for {'str_sp': 'compression shorts'} +#. ~ Description for compression shorts #: lang/json/ARMOR_from_json.py msgid "" "Nylon sportswear that clings to your upper legs, aiding muscle tone and " @@ -20238,6 +19398,865 @@ msgid "" "unitard provides overall coverage with great flexibility." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "nomad gear" +msgid_plural "nomad gears" +msgstr[0] "遊牧民族衣" + +#. ~ Description for nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift outfit made from pre-Cataclysm clothing designed for long " +"travels. It has a lot of storage space." +msgstr "一件粗製的外衣,由大災變前的衣物製成,設計來長途旅行。它有大量的儲物空間。" + +#: lang/json/ARMOR_from_json.py +msgid "light nomad gear" +msgid_plural "light nomad gears" +msgstr[0] "輕便遊牧民族衣 " + +#. ~ Description for light nomad gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A light makeshift outfit made from pre-Cataclysm clothing designed for long " +"summer travels. It offers less storage space and armor compared to regular " +"nomad gear." +msgstr "這款輕便的粗製旅行衣,是由災難之前的衣服修改而來,用於漫長的夏季旅行用。相較起標準的遊牧民族衣,它的儲物空間和防護略為遜色。" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger gear" +msgid_plural "scavenger gears" +msgstr[0] "拾荒者裝備" + +#. ~ Description for scavenger gear +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy scavenger's outfit made from refitted pre-Cataclysm protective " +"gear. It has a lot of storage space." +msgstr "一件堅固的拾荒者外衣, 由大災變前的防護裝備改裝製成。它有大量的儲物空間。" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor suit" +msgid_plural "light survivor suits" +msgstr[0] "輕型生存者裝" + +#. ~ Description for light survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced fabric jumpsuit. Protects from the elements as well " +"as from harm." +msgstr "一件輕量、手工製作的組合護甲, 由精簡的防彈背心和強化的布料連身服製成。保護你免於傷害與環境危害。" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor suit" +msgid_plural "XL light survivor suits" +msgstr[0] "XL 輕型生存者裝" + +#: lang/json/ARMOR_from_json.py +msgid "survivor suit" +msgid_plural "survivor suits" +msgstr[0] "生存者裝" + +#. ~ Description for survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A hand-built combination armor made from a bulletproof vest and a reinforced" +" leather jumpsuit. Protects from the elements as well as from harm." +msgstr "一件手工製作的組合護甲, 由防彈背心與強化的皮革連身服製成。保護你免於傷害與環境危害。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor suit" +msgid_plural "XL survivor suits" +msgstr[0] "XL 生存者裝" + +#. ~ Description for XL survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive hand-built combination armor made from a bulletproof vest and a " +"reinforced leather jumpsuit. Protects from the elements as well as from " +"harm." +msgstr "一件手工製作的巨大組合護甲, 由防彈背心與強化的皮革連身服製成。保護你免於傷害與環境危害。" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor suit" +msgid_plural "winter survivor suits" +msgstr[0] "冬季生存者裝" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and an insulated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "一件保暖、厚重、手工製作的組合護甲, 由強化的防彈背心和絕緣的皮革連身服製成。保護你免於傷害與環境危害。" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor suit" +msgid_plural "XL winter survivor suits" +msgstr[0] "XL 冬季生存者裝" + +#. ~ Description for winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm and heavy hand-built combination armor made from a reinforced " +"bulletproof vest and a faux fur insulated leather jumpsuit. Protects from " +"the elements as well as from harm." +msgstr "" + +#. ~ Description for XL winter survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A warm, heavy and oversized hand-built combination armor made from a " +"reinforced bulletproof vest and a faux fur insulated leather jumpsuit. " +"Protects from the elements as well as from harm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit" +msgid_plural "survivor wetsuits" +msgstr[0] "生存者潛水服" + +#. ~ Description for survivor wetsuit +#: lang/json/ARMOR_from_json.py +msgid "" +"A lightweight, hand-built combination armor made from a cut-down bulletproof" +" vest and a reinforced neoprene wetsuit. Protects from the elements as well" +" as from harm." +msgstr "一件輕量、手工製作的組合護甲, 由剪裁的防彈背心和強化的橡膠潛水服製成。保護你免於傷害與環境危害。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor boots" +msgid_plural "pairs of light survivor boots" +msgstr[0] "輕型生存者靴" + +#. ~ Description for pair of light survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth boots. Favoring comfort over " +"protection, these boots will keep you moving and agile, even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor boots" +msgid_plural "pairs of XL light survivor boots" +msgstr[0] "XL 輕型生存者靴" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor boots" +msgid_plural "pairs of survivor boots" +msgstr[0] "生存者靴" + +#. ~ Description for pair of survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized leather boots armored with Kevlar. Balancing comfort " +"and protection, these boots will keep you alive, even when knee-deep in the " +"dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor boots" +msgid_plural "pairs of XL survivor boots" +msgstr[0] "XL 生存者靴" + +#. ~ Description for pair of XL survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized leather boots armored with Kevlar. Balancing " +"comfort and protection, these boots will keep you alive even when knee-deep " +"in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor boots" +msgid_plural "pairs of faux fur winter survivor boots" +msgstr[0] "" + +#. ~ Description for pair of faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to a faux-fur " +"lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor boots" +msgid_plural "pairs of XL faux fur winter survivor boots" +msgstr[0] "" + +#. ~ Description for pair of XL faux fur winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored boots. Warm thanks to a " +"faux-fur lining, these will keep you alive even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor boots" +msgid_plural "pairs of winter survivor boots" +msgstr[0] "冬季生存者靴" + +#. ~ Description for pair of winter survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored boots. Warm thanks to the real fur " +"lining, these will keep you alive, even when knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor boots" +msgid_plural "pairs of XL winter survivor boots" +msgstr[0] "XL 冬季生存者靴" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit boots" +msgid_plural "pairs of survivor wetsuit boots" +msgstr[0] "生存者潛水靴" + +#. ~ Description for pair of survivor wetsuit boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored neoprene boots. These will keep you " +"dry and alive, come hell or high water." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of light survivor gloves" +msgid_plural "pairs of light survivor gloves" +msgstr[0] "輕型生存者手套" + +#. ~ Description for pair of light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves. These are designed for " +"comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL light survivor gloves" +msgid_plural "pairs of XL light survivor gloves" +msgstr[0] "XL 輕型生存者手套" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless light survivor gloves" +msgid_plural "pairs of fingerless light survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of fingerless light survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored cloth gloves without fingers. These " +"are designed for comfort first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless light survivor gloves" +msgid_plural "pairs of XL fingerless light survivor gloves" +msgstr[0] "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of fingerless survivor gloves" +msgid_plural "pairs of fingerless survivor gloves" +msgstr[0] "露指生存者手套" + +#. ~ Description for pair of fingerless survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves without fingers. These " +"strike a balance between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL fingerless survivor gloves" +msgid_plural "pairs of XL fingerless survivor gloves" +msgstr[0] "XL 露指生存者手套" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor gloves" +msgid_plural "pairs of survivor gloves" +msgstr[0] "生存者手套" + +#. ~ Description for pair of survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored leather gloves. These strike a balance" +" between comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor gloves" +msgid_plural "pairs of XL survivor gloves" +msgstr[0] "XL 生存者手套" + +#. ~ Description for pair of XL survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive pair of customized, Kevlar-armored leather gloves. These strike a" +" balance between protection and comfort." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of winter survivor gloves" +msgid_plural "pairs of winter survivor gloves" +msgstr[0] "冬季生存者手套" + +#. ~ Description for pair of winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with real fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL winter survivor gloves" +msgid_plural "pairs of XL winter survivor gloves" +msgstr[0] "XL 冬季生存者手套" + +#: lang/json/ARMOR_from_json.py +msgid "pair of faux fur winter survivor gloves" +msgid_plural "pairs of faux fur winter survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored gloves. These are lined with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL faux fur winter survivor gloves" +msgid_plural "pairs of XL faux fur winter survivor gloves" +msgstr[0] "" + +#. ~ Description for pair of XL faux fur winter survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized and oversized Kevlar-armored gloves. These are lined " +"with faux-fur." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor wetsuit gloves" +msgid_plural "pairs of survivor wetsuit gloves" +msgstr[0] "生存者潛水手套" + +#. ~ Description for pair of survivor wetsuit gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar armored neoprene gloves, modified to be easy to" +" wear while providing maximum protection under extreme conditions." +msgstr "一雙訂製的手套, 由凱夫勒裝甲與橡膠製成。便於穿戴, 即使在極端環境下也能提供極致的防護能力。" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl" +msgid_plural "nomad cowls" +msgstr[0] "游牧民族風帽" + +#. ~ Description for nomad cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels." +msgstr "一種粗製的保護罩, 可保護眼睛免受雨水和陽光的傷害, 專為長途旅行而設計。" + +#: lang/json/ARMOR_from_json.py +msgid "nomad cowl XL" +msgid_plural "nomad cowl XLs" +msgstr[0] "XL 游牧民族風帽" + +#. ~ Description for nomad cowl XL +#: lang/json/ARMOR_from_json.py +msgid "" +"A makeshift cowl with protection for the eyes from rain and sun, designed " +"for long travels. Designed for a gigantic wanderer." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor hood" +msgid_plural "survivor hoods" +msgstr[0] "生存者兜帽" + +#. ~ Description for survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored leather and Kevlar hood, designed to balance comfort " +"and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter survivor hood" +msgid_plural "winter survivor hoods" +msgstr[0] "冬季生存者兜帽" + +#. ~ Description for winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the real fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL winter survivor hood" +msgid_plural "XL winter survivor hoods" +msgstr[0] "XL 冬季生存者兜帽" + +#. ~ Description for XL winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the real fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor hood" +msgid_plural "XL survivor hoods" +msgstr[0] "XL 生存者兜帽" + +#. ~ Description for XL survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive customized armored leather and Kevlar hood, designed to balance " +"comfort and protection." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor hood" +msgid_plural "light survivor hoods" +msgstr[0] "輕型生存者兜帽" + +#. ~ Description for light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor hood" +msgid_plural "XL light survivor hoods" +msgstr[0] "XL 輕型生存者兜帽" + +#. ~ Description for XL light survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored cloth and Kevlar hood, light yet durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "winter faux fur survivor hood" +msgid_plural "winter faux fur survivor hoods" +msgstr[0] "" + +#. ~ Description for winter faux fur survivor hood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Kevlar hood. Warm thanks to the faux-fur lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL faux fur winter survivor hood" +msgid_plural "XL faux fur winter survivor hoods" +msgstr[0] "" + +#. ~ Description for XL faux fur winter survivor hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized and oversized armored Kevlar hood. Warm thanks to the faux-fur" +" lining." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor wetsuit hood" +msgid_plural "survivor wetsuit hoods" +msgstr[0] "生存者潛水兜帽" + +#. ~ Description for survivor wetsuit hood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored neoprene and Kevlar hood, very strong and durable." +msgstr "一頂訂製的兜帽, 由凱夫勒裝甲與橡膠製成。非常堅固且耐用。" + +#: lang/json/ARMOR_from_json.py +msgid "scavenger cowl" +msgid_plural "scavenger cowls" +msgstr[0] "拾荒者風帽" + +#. ~ Description for scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For dangerous scavenging ventures." +msgstr "一條堅固且延伸到頸部的防風帽, 附有防毒面具以保護眼睛與口鼻。是在危險區域探索的好幫手。" + +#: lang/json/ARMOR_from_json.py +msgid "XL scavenger cowl" +msgid_plural "XL scavenger cowls" +msgstr[0] "XL 拾荒者風帽" + +#. ~ Description for XL scavenger cowl +#: lang/json/ARMOR_from_json.py +msgid "" +"A sturdy protective cowl extending down to the neck, fitted with a " +"respirator and eye protection. For oversized dangerous scavenging ventures." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor cargo pants" +msgid_plural "light survivor cargo pants" +msgstr[0] "輕型生存者工裝長褲" + +#. ~ Description for light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof." +msgstr "一件輕量的工裝長褲, 由凱夫勒裝甲製成。可以容納大量物品。堅固且幾乎防水。" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor cargo pants" +msgid_plural "XL light survivor cargo pants" +msgstr[0] "XL 輕型生存者工裝長褲" + +#. ~ Description for XL light survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, Kevlar armored cargo pants designed to hold as much as " +"possible. Strong and mostly waterproof and sized for larger than average." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor cargo pants" +msgid_plural "survivor cargo pants" +msgstr[0] "生存者工裝長褲" + +#. ~ Description for survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of Kevlar armored pants covered with pouches and pockets. Custom-" +"built to be durable, comfortable, and easy to wear." +msgstr "一件訂製的長褲, 由凱夫勒裝甲製作, 上面佈滿了小袋子和口袋。耐用、舒適、而且便於穿著。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor cargo pants" +msgid_plural "XL survivor cargo pants" +msgstr[0] "XL 生存者工裝長褲" + +#. ~ Description for XL survivor cargo pants +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of oversized Kevlar armored pants covered with pouches and pockets. " +"Custom-built to be durable, comfortable, and easy to wear." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duster" +msgid_plural "survivor dusters" +msgstr[0] "生存者防塵大衣" + +#. ~ Description for survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom full-length duster, covered with pouches and " +"pockets. Comfortable, durable, and great for storage." +msgstr "一件訂製的、等身長的凱夫勒裝甲防塵大衣, 上面佈滿了小袋子和口袋。舒適、耐用, 而且適合儲物。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor duster" +msgid_plural "XL survivor dusters" +msgstr[0] "XL 生存者防塵大衣" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor duster" +msgid_plural "sleeveless survivor dusters" +msgstr[0] "生存者無袖防塵大衣" + +#. ~ Description for sleeveless survivor duster +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored full-length duster without sleeves, covered with " +"pouches and pockets. Comfortable, durable, and great for storage." +msgstr "一件訂製的、等身長的裝甲無袖防塵大衣, 由凱夫勒纖維製成。上面佈滿了小袋子和口袋。舒適、耐用, 而且適合儲物。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor trenchcoat" +msgid_plural "survivor trenchcoats" +msgstr[0] "生存者風衣" + +#. ~ Description for survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A Kevlar armored custom trenchcoat, covered with pouches and pockets. " +"Comfortable, durable, and great for storage." +msgstr "一件訂製的裝甲風衣, 由凱夫勒纖維製成, 上面佈滿了小袋子和口袋。舒適、耐用、而且適合儲物。" + +#: lang/json/ARMOR_from_json.py +msgid "sleeveless survivor trenchcoat" +msgid_plural "sleeveless survivor trenchcoats" +msgstr[0] "無袖生存者風衣" + +#. ~ Description for sleeveless survivor trenchcoat +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom Kevlar armored trenchcoat without sleeves, covered with pouches and" +" pockets. Comfortable, durable, and great for storage." +msgstr "一件訂製的裝甲無袖風衣, 由凱夫勒纖維製成, 上面佈滿了小袋子和口袋。舒適、耐用、而且適合儲物。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor duffel bag" +msgid_plural "survivor duffel bags" +msgstr[0] "生存者行李袋" + +#. ~ Description for survivor duffel bag +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy duffel bag. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "一個厚重的訂製行李袋。耐用且細心的做工讓它盡可能地裝下夠多的東西。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor backpack" +msgid_plural "survivor backpacks" +msgstr[0] "生存者背包" + +#. ~ Description for survivor backpack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built backpack. Durable and carefully crafted to hold as much " +"stuff as possible." +msgstr "一個手工製的背包。耐用且細心的做工讓它盡可能地裝下夠多的東西。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor rucksack" +msgid_plural "survivor rucksacks" +msgstr[0] "生存者旅行背包" + +#. ~ Description for survivor rucksack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built heavy backpack. Durable and carefully crafted to hold as " +"much stuff as possible." +msgstr "一個厚重的訂製的背包。耐用且細心的做工讓它盡可能地裝下夠多的東西。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor runner pack" +msgid_plural "survivor runner packs" +msgstr[0] "生存者慢跑背包" + +#. ~ Description for survivor runner pack +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built lightweight runner pack. Durable and carefully crafted to " +"hold as much stuff as possible." +msgstr "一個手工製輕巧的慢跑背包。耐用且細心的做工讓它盡可能地裝下夠多的東西。" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor fireboots" +msgid_plural "pairs of survivor fireboots" +msgstr[0] "生存者防火靴" + +#. ~ Description for pair of survivor fireboots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex boots. These will keep you " +"alive, even when knee-deep in the flames." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor fireboots" +msgid_plural "pairs of XL survivor fireboots" +msgstr[0] "XL 生存者防火靴" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor boots" +msgid_plural "pairs of heavy survivor boots" +msgstr[0] "重型生存者靴" + +#. ~ Description for pair of heavy survivor boots +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized Kevlar boots that are heavily armored with steel. " +"Favoring protection over comfort, these will keep you alive, especially when" +" knee-deep in the dead." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor boots" +msgid_plural "pairs of XL heavy survivor boots" +msgstr[0] "XL 重型生存者靴" + +#: lang/json/ARMOR_from_json.py +msgid "pair of heavy survivor gloves" +msgid_plural "pairs of heavy survivor gloves" +msgstr[0] "重型生存者手套" + +#. ~ Description for pair of heavy survivor gloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, steel-backed Kevlar gloves. These are designed for " +"protection first." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL heavy survivor gloves" +msgid_plural "pairs of XL heavy survivor gloves" +msgstr[0] "XL 重型生存者手套" + +#: lang/json/ARMOR_from_json.py +msgid "pair of survivor firegloves" +msgid_plural "pairs of survivor firegloves" +msgstr[0] "生存者防火手套" + +#. ~ Description for pair of survivor firegloves +#: lang/json/ARMOR_from_json.py +msgid "" +"A pair of customized, Kevlar-armored Nomex gloves. These are a post-" +"apocalyptic extension of what firefighters wore pre-Cataclysm." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "pair of XL survivor firegloves" +msgid_plural "pairs of XL survivor firegloves" +msgstr[0] "XL 生存者防火手套" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firehood" +msgid_plural "survivor firehoods" +msgstr[0] "生存者防火兜帽" + +#. ~ Description for survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "A customized armored Nomex and Kevlar hood, strong and durable." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firehood" +msgid_plural "XL survivor firehoods" +msgstr[0] "XL 生存者防火兜帽" + +#. ~ Description for XL survivor firehood +#: lang/json/ARMOR_from_json.py +msgid "" +"A customized armored Nomex and Kevlar hood, very strong and durable. Made " +"in Muspelheim." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor firesuit" +msgid_plural "survivor firesuits" +msgstr[0] "生存者防火裝" + +#. ~ Description for survivor firesuit +#: lang/json/ARMOR_from_json.py +msgid "" +"Heavy, hand-built combination armor made from a cut-down bulletproof vest " +"and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from " +"fire and the elements." +msgstr "一件厚重、手工製作的組合護甲, 由精簡的防彈背心和強化的諾梅克斯防火連身服製成。保護你免於火焰與環境危害。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor firesuit" +msgid_plural "XL survivor firesuits" +msgstr[0] "XL 生存者防火裝" + +#: lang/json/ARMOR_from_json.py +msgid "heavy survivor suit" +msgid_plural "heavy survivor suits" +msgstr[0] "重型生存者裝" + +#. ~ Description for heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A heavy, hand-built combination armor made from a reinforced bulletproof " +"vest and a metal-plated leather jumpsuit. Protects from the elements as " +"well as from harm." +msgstr "一件厚重、手工製作的組合護甲, 由強化的防彈背心和金屬裝甲皮革連身服製成。保護你免於傷害與環境危害。" + +#: lang/json/ARMOR_from_json.py +msgid "XL heavy survivor suit" +msgid_plural "XL heavy survivor suits" +msgstr[0] "XL 重型生存者裝" + +#. ~ Description for XL heavy survivor suit +#: lang/json/ARMOR_from_json.py +msgid "" +"A massive, heavy, hand-built combination armor made from a reinforced " +"bulletproof vest and a metal-plated leather jumpsuit. Protects from the " +"elements as well as from harm." +msgstr "一件巨型、厚重、手工製作的組合護甲,由強化的防彈背心和金屬裝甲皮革連身服製成。保護你免於傷害與環境危害。" + +#: lang/json/ARMOR_from_json.py +msgid "light survivor body armor" +msgid_plural "light survivor body armors" +msgstr[0] "輕型生存者護甲" + +#. ~ Description for light survivor body armor +#: lang/json/ARMOR_from_json.py +msgid "" +"Lightweight, custom-built body armor made from Kevlar and tough fabric. " +"Mostly waterproof." +msgstr "一件訂製的輕量護甲, 由凱夫勒裝甲與堅韌的布料製成。幾乎防水。" + +#: lang/json/ARMOR_from_json.py +msgid "XL light survivor body armor" +msgid_plural "XL light survivor body armors" +msgstr[0] "XL 輕型生存者護甲" + +#: lang/json/ARMOR_from_json.py +msgid "survivor belt" +msgid_plural "survivor belts" +msgstr[0] "生存者腰帶" + +#. ~ Use action holster_prompt for survivor belt. +#: lang/json/ARMOR_from_json.py +msgid "Store item" +msgstr "" + +#. ~ Description for survivor belt +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built leather belt covered with pouches, with a sheath to carry a " +"smaller blade, a holster to carry a pistol and a loop for holding larger " +"tools. Durable and carefully crafted to be comfortable to wear. Activate " +"to sheathe/draw a weapon." +msgstr "" + +#: lang/json/ARMOR_from_json.py +msgid "survivor goggles" +msgid_plural "pairs of survivor goggles" +msgstr[0] "生存者護目鏡" + +#. ~ Description for survivor goggles +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built pair of armored goggles with tinted lenses. Comfortable and " +"built to last, they provide excellent protection from environmental dangers." +msgstr "一副訂製的裝甲護目鏡, 配上了有色鏡片。耐用且舒適, 能提供絕佳的防護能力以抵禦環境危害。" + +#: lang/json/ARMOR_from_json.py +msgid "survivor harness" +msgid_plural "survivor harnesses" +msgstr[0] "生存者戰術背帶" + +#. ~ Description for survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear. Activate to holster/draw your " +"weapon." +msgstr "" +"一條手製的背帶, 上面縫著許多小袋子和一條戰術綁帶, 適用於小型步槍或類似的武器。細緻的做工讓它穿起來既耐用又舒服, 使用它來收入/取出武器。" + +#: lang/json/ARMOR_from_json.py +msgid "XL survivor harness" +msgid_plural "XL survivor harnesses" +msgstr[0] "XL 生存者戰術背帶" + +#. ~ Description for XL survivor harness +#: lang/json/ARMOR_from_json.py +msgid "" +"A custom-built light harness covered with pouches and including an integral " +"tactical sling for a small rifle or other such weapon. Durable and " +"carefully crafted to be comfortable to wear and fitting the largest forms. " +"Activate to holster/draw your weapon." +msgstr "" + #: lang/json/ARMOR_from_json.py msgid "sheet" msgid_plural "sheets" @@ -20348,7 +20367,7 @@ msgid "impact knuckles" msgid_plural "impact knuckles" msgstr[0] "" -#. ~ Description for {'str_sp': 'impact knuckles'} +#. ~ Description for impact knuckles #: lang/json/ARMOR_from_json.py msgid "" "A pair of thick steel plates covering your proximal phalange. They are " @@ -20360,7 +20379,7 @@ msgid "skewer knuckles" msgid_plural "skewer knuckles" msgstr[0] "" -#. ~ Description for {'str_sp': 'skewer knuckles'} +#. ~ Description for skewer knuckles #: lang/json/ARMOR_from_json.py msgid "" "A single sturdy spike protrudes 5cm from the back of your hand. They are " @@ -20512,7 +20531,7 @@ msgid "pair of XL combat boots" msgid_plural "pair of XL combat boots" msgstr[0] "XL 戰鬥靴" -#. ~ Description for {'str_sp': 'pair of XL combat boots'} +#. ~ Description for pair of XL combat boots #: lang/json/ARMOR_from_json.py msgid "Modern oversized reinforced tactical combat boots. Very durable." msgstr "" @@ -20522,7 +20541,7 @@ msgid "pair of XL tactical gloves" msgid_plural "pair of XL tactical gloves" msgstr[0] "XL 戰術手套" -#. ~ Description for {'str_sp': 'pair of XL tactical gloves'} +#. ~ Description for pair of XL tactical gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by " @@ -20534,7 +20553,7 @@ msgid "pair of Killophant gloves" msgid_plural "pair of Killophant gloves" msgstr[0] "" -#. ~ Description for {'str_sp': 'pair of Killophant gloves'} +#. ~ Description for pair of Killophant gloves #: lang/json/ARMOR_from_json.py msgid "" "A pair of reinforced Kevlar tactical gloves, specifically designed to " @@ -20778,7 +20797,7 @@ msgid "psychrophile handling gloves" msgid_plural "psychrophile handling gloves" msgstr[0] "嗜冷生物處理手套" -#. ~ Description for {'str_sp': 'psychrophile handling gloves'} +#. ~ Description for psychrophile handling gloves #: lang/json/ARMOR_from_json.py msgid "" "These gloves are designed for handling organisms that live in extremely cold" @@ -20918,18 +20937,6 @@ msgid "" " ridiculously heavy." msgstr "" -#: lang/json/ARMOR_from_json.py -msgid "CRIT web belt" -msgid_plural "CRIT web belts" -msgstr[0] "CRIT 腰帶" - -#. ~ Description for CRIT web belt -#: lang/json/ARMOR_from_json.py -msgid "" -"CRIT standard-issue belt. Keeps your trousers up and your weapons on your " -"hip." -msgstr "" - #: lang/json/ARMOR_from_json.py msgid "CRIT infantry duster" msgid_plural "CRIT infantry dusters" @@ -21048,7 +21055,7 @@ msgid "CRIT trousers" msgid_plural "CRIT trousers" msgstr[0] "" -#. ~ Description for {'str_sp': 'CRIT trousers'} +#. ~ Description for CRIT trousers #: lang/json/ARMOR_from_json.py msgid "" "A pair of standard-issue cargo pants. Durable, lightweight and has ample " @@ -21060,7 +21067,7 @@ msgid "CRIT pants" msgid_plural "CRIT pants" msgstr[0] "" -#. ~ Description for {'str_sp': 'CRIT pants'} +#. ~ Description for CRIT pants #: lang/json/ARMOR_from_json.py msgid "" "A pair of dress pants. A minimalist sleek design makes the pants " @@ -21100,6 +21107,11 @@ msgid "" "are made with cotton with a neoprene lining for grip-pads and warmth." msgstr "" +#: lang/json/ARMOR_from_json.py +msgid "CRIT web belt" +msgid_plural "CRIT web belts" +msgstr[0] "CRIT 腰帶" + #. ~ Description for CRIT web belt #: lang/json/ARMOR_from_json.py msgid "" @@ -21238,7 +21250,7 @@ msgid "Force Shield" msgid_plural "Force Shield" msgstr[0] "" -#. ~ Description for {'str_sp': 'Force Shield'} +#. ~ Description for Force Shield #: lang/json/ARMOR_from_json.py msgid "" "A shield of pure force that protects you from most types of physical damage." @@ -21687,7 +21699,7 @@ msgid "freerunner's boots" msgid_plural "freerunner's boots" msgstr[0] "" -#. ~ Description for {'str_sp': "freerunner's boots"} +#. ~ Description for freerunner's boots #: lang/json/ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -21754,7 +21766,7 @@ msgid "enchanted parabolan wool blouse" msgid_plural "enchanted parabolan wool blouse" msgstr[0] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool blouse'} +#. ~ Description for enchanted parabolan wool blouse #: lang/json/ARMOR_from_json.py msgid "" "A loose iridescent blouse in a style most often associated with pirates and " @@ -21768,7 +21780,7 @@ msgid "enchanted parabolan wool breeches" msgid_plural "enchanted parabolan wool breeches" msgstr[0] "" -#. ~ Description for {'str_sp': 'enchanted parabolan wool breeches'} +#. ~ Description for enchanted parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -21795,7 +21807,7 @@ msgid "parabolan wool breeches" msgid_plural "parabolan wool breeches" msgstr[0] "" -#. ~ Description for {'str_sp': 'parabolan wool breeches'} +#. ~ Description for parabolan wool breeches #: lang/json/ARMOR_from_json.py msgid "" "A well-made pair of old-fashioned pants, made of iridescent material. " @@ -21848,7 +21860,7 @@ msgid "slick icy coatings" msgid_plural "slick icy coatings" msgstr[0] "" -#. ~ Description for {'str_sp': 'slick icy coatings'} +#. ~ Description for slick icy coatings #: lang/json/ARMOR_from_json.py msgid "" "A magical slick icy coating on your feet. While quite fast on flat floors, " @@ -21901,7 +21913,7 @@ msgid "frost armor" msgid_plural "frost armor" msgstr[0] "" -#. ~ Description for {'str_sp': 'frost armor'} +#. ~ Description for frost armor #: lang/json/ARMOR_from_json.py msgid "A thin layer of magical ice, covering the entire body." msgstr "" @@ -21911,7 +21923,7 @@ msgid "stoneskin coating" msgid_plural "stoneskin coating" msgstr[0] "" -#. ~ Description for {'str_sp': 'stoneskin coating'} +#. ~ Description for stoneskin coating #: lang/json/ARMOR_from_json.py msgid "" "A thin layer of shifting, almost fluid living rock, covering the entire " @@ -22001,7 +22013,7 @@ msgid "spiritual armor" msgid_plural "spiritual armor" msgstr[0] "" -#. ~ Description for {'str_sp': 'spiritual armor'} +#. ~ Description for spiritual armor #: lang/json/ARMOR_from_json.py msgid "A summoned medieval armor. It glows softly and looks sturdy." msgstr "" @@ -22011,7 +22023,7 @@ msgid "auroral shell" msgid_plural "auroral shell" msgstr[0] "" -#. ~ Description for {'str_sp': 'auroral shell'} +#. ~ Description for auroral shell #: lang/json/ARMOR_from_json.py msgid "A sturdy shell that wraps your body, gaining a sturdy defense." msgstr "" @@ -22090,16 +22102,18 @@ msgid "" msgstr "一個動態偵測警報系統能夠偵測 5 呎遠的範圍並通知使用者。在睡覺時, 或是懷疑被隱形的生物追蹤時非常有用。" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Arms Alloy Plating CBM" -msgid_plural "Arms Alloy Plating CBMs" -msgstr[0] "CBM: 合金鋼鐵-手臂" +msgid "Arms Intradermal Alloy CBM" +msgid_plural "Arms Intradermal Alloy CBMs" +msgstr[0] "" -#. ~ Description for Arms Alloy Plating CBM +#. ~ Description for Arms Intradermal Alloy CBM +#. ~ Description for Legs Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's arms. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "這個合金裝甲板取代了使用者的血肉手臂,提供防禦強化而且可以使用生化格鬥技。" +"An advanced protective mesh that weaves into the user's flesh. Provides " +"passive protection at the cost of some encumbrance and can be used in " +"conjunction with bionic martial arts." +msgstr "" #: lang/json/BIONIC_ITEM_from_json.py msgid "Protective Lenses CBM" @@ -22115,40 +22129,33 @@ msgid "" msgstr "一個生化套件用高防護力的鏡片來密封使用者的眼窩,而淚腺繞道到使用者的嘴巴。當使用者哭泣的時候, 他必須把淚水吐出來或吞下去。" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Head Alloy Plating CBM" -msgid_plural "Head Alloy Plating CBMs" -msgstr[0] "CBM: 合金鋼鐵-頭部" +msgid "Head Intradermal Alloy CBM" +msgid_plural "Head Intradermal Alloy CBMs" +msgstr[0] "" -#. ~ Description for Head Alloy Plating CBM +#. ~ Description for Head Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's head, protecting both " -"their head and jaw regions." -msgstr "這個合金裝甲板取代了使用者的血肉頭骨,給頭部和下巴提供防護。" - -#: lang/json/BIONIC_ITEM_from_json.py -msgid "Legs Alloy Plating CBM" -msgid_plural "Legs Alloy Plating CBMs" -msgstr[0] "CBM: 合金鋼鐵-腿部" +"An advanced protective mesh that weaves into the user's flesh, protecting " +"both their head and jaw regions at the cost of some encumbrance." +msgstr "" -#. ~ Description for Legs Alloy Plating CBM #: lang/json/BIONIC_ITEM_from_json.py -msgid "" -"Alloy plating that replaces the flesh on the user's legs. Provides passive " -"protection and can be used in conjunction with bionic martial arts." -msgstr "這個合金裝甲板取代了使用者的血肉腿足,提供防禦強化而且可以使用生化格鬥技。" +msgid "Legs Intradermal Alloy CBM" +msgid_plural "Legs Intradermal Alloy CBMs" +msgstr[0] "" #: lang/json/BIONIC_ITEM_from_json.py -msgid "Torso Alloy Plating CBM" -msgid_plural "Torso Alloy Plating CBMs" -msgstr[0] "CBM: 合金鋼鐵-軀幹" +msgid "Torso Intradermal Alloy CBM" +msgid_plural "Torso Intradermal Alloy CBMs" +msgstr[0] "" -#. ~ Description for Torso Alloy Plating CBM +#. ~ Description for Torso Intradermal Alloy CBM #: lang/json/BIONIC_ITEM_from_json.py msgid "" -"Alloy plating that replaces the flesh on the user's torso, protecting it " -"from physical trauma." -msgstr "這個合金裝甲板取代了使用者的血肉軀幹,保護它免於物理性外傷。" +"An advanced protective mesh that weaves into the user's flesh, protecting it" +" from physical trauma at the cost of some encumbrance." +msgstr "" #: lang/json/BIONIC_ITEM_from_json.py msgid "Battery System CBM" @@ -22823,7 +22830,7 @@ msgid "Power Storage CBM Mk. II" msgid_plural "Power Storage CBM Mk. II" msgstr[0] "CBM:能量儲存室 Mk. II" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II'} +#. ~ Description for Power Storage CBM Mk. II #: lang/json/BIONIC_ITEM_from_json.py msgid "" "A Compact Bionics Module developed at DoubleTech Industries as a replacement" @@ -23223,7 +23230,7 @@ msgid "Squeaky Ankles" msgid_plural "Squeaky Ankles" msgstr[0] "嘎嘎踝關節" -#. ~ Description for {'str_sp': 'Squeaky Ankles'} +#. ~ Description for Squeaky Ankles #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of defective bionics that make squeaking noises." msgstr "" @@ -23417,7 +23424,7 @@ msgid "Self-Locking Thumbs" msgid_plural "Self-Locking Thumbs" msgstr[0] "自鎖大拇指" -#. ~ Description for {'str_sp': 'Self-Locking Thumbs'} +#. ~ Description for Self-Locking Thumbs #: lang/json/BIONIC_ITEM_from_json.py msgid "A pair of faulty, self-locking thumb bionics." msgstr "" @@ -24632,7 +24639,7 @@ msgid "knife fighter's notes" msgid_plural "knife fighter's notes" msgstr[0] "刀戰者筆記" -#. ~ Description for {'str_sp': "knife fighter's notes"} +#. ~ Description for knife fighter's notes #: lang/json/BOOK_from_json.py msgid "" "It seems to be a guide to edged weapon combat, poorly photocopied and " @@ -24858,7 +24865,7 @@ msgid "plans for a radio repeater mod" msgid_plural "plans for a radio repeater mod" msgstr[0] "無線電中繼器模組計劃書" -#. ~ Description for {'str_sp': 'plans for a radio repeater mod'} +#. ~ Description for plans for a radio repeater mod #: lang/json/BOOK_from_json.py msgid "" "Instructions on how to create a mod for a radio station terminal which " @@ -24893,7 +24900,7 @@ msgid "trifacet handling procedures" msgid_plural "trifacet handling procedures" msgstr[0] "" -#. ~ Description for {'str_sp': 'trifacet handling procedures'} +#. ~ Description for trifacet handling procedures #: lang/json/BOOK_from_json.py msgid "" "A heavy and disparate binder detailing the deactivation, storage and " @@ -24907,7 +24914,7 @@ msgid "schematics" msgid_plural "schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'schematics'} +#. ~ Description for schematics #. ~ Description for animal #. ~ Description for nearby fire #. ~ Description for muscle @@ -24915,9 +24922,9 @@ msgstr[0] "" #. ~ Description for sun light #. ~ Description for metabolism #. ~ Description for a smoking device and a source of flame -#. ~ Description for {'str_sp': 'none'} +#. ~ Description for none #. ~ Description for abstract map -#. ~ Description for {'str_sp': 'seeing this is a bug'} +#. ~ Description for seeing this is a bug #. ~ Description for weapon #: lang/json/BOOK_from_json.py lang/json/GENERIC_from_json.py #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py @@ -24931,7 +24938,7 @@ msgid "nurse bot schematics" msgid_plural "nurse bot schematics" msgstr[0] "護士機器人原理圖" -#. ~ Description for {'str_sp': 'nurse bot schematics'} +#. ~ Description for nurse bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -24947,7 +24954,7 @@ msgid "grocery bot schematics" msgid_plural "grocery bot schematics" msgstr[0] "雜貨店機器人原理圖" -#. ~ Description for {'str_sp': 'grocery bot schematics'} +#. ~ Description for grocery bot schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Uncanny, these are assembly plans, design specs, and " @@ -24963,7 +24970,7 @@ msgid "police bot schematics" msgid_plural "police bot schematics" msgstr[0] "警用機器人原理圖" -#. ~ Description for {'str_sp': 'police bot schematics'} +#. ~ Description for police bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the police bot. " @@ -24976,7 +24983,7 @@ msgid "eyebot schematics" msgid_plural "eyebot schematics" msgstr[0] "眼球機器人原理圖" -#. ~ Description for {'str_sp': 'eyebot schematics'} +#. ~ Description for eyebot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the eyebot. Most " @@ -24989,7 +24996,7 @@ msgid "security bot schematics" msgid_plural "security bot schematics" msgstr[0] "保全機器人原理圖" -#. ~ Description for {'str_sp': 'security bot schematics'} +#. ~ Description for security bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the security bot. " @@ -25002,7 +25009,7 @@ msgid "skitterbot schematics" msgid_plural "skitterbot schematics" msgstr[0] "爬蟲機器人原理圖" -#. ~ Description for {'str_sp': 'skitterbot schematics'} +#. ~ Description for skitterbot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the skitterbot. " @@ -25015,7 +25022,7 @@ msgid "cleaner bot schematics" msgid_plural "cleaner bot schematics" msgstr[0] "清潔機器人原理圖" -#. ~ Description for {'str_sp': 'cleaner bot schematics'} +#. ~ Description for cleaner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the cleaner bot. " @@ -25028,7 +25035,7 @@ msgid "miner bot schematics" msgid_plural "miner bot schematics" msgstr[0] "礦工機器人原理圖" -#. ~ Description for {'str_sp': 'miner bot schematics'} +#. ~ Description for miner bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the miner bot. " @@ -25041,7 +25048,7 @@ msgid "riot control bot schematics" msgid_plural "riot control bot schematics" msgstr[0] "鎮暴機器人原理圖" -#. ~ Description for {'str_sp': 'riot control bot schematics'} +#. ~ Description for riot control bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the riot control " @@ -25054,7 +25061,7 @@ msgid "lab defense bot schematics" msgid_plural "lab defense bot schematics" msgstr[0] "實驗室警衛機器人原理圖" -#. ~ Description for {'str_sp': 'lab defense bot schematics'} +#. ~ Description for lab defense bot schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the lab defense " @@ -25067,7 +25074,7 @@ msgid "dispatch schematics" msgid_plural "dispatch schematics" msgstr[0] "無人機母艦原理圖" -#. ~ Description for {'str_sp': 'dispatch schematics'} +#. ~ Description for dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -25083,7 +25090,7 @@ msgid "military dispatch schematics" msgid_plural "military dispatch schematics" msgstr[0] "軍用母艦原理圖" -#. ~ Description for {'str_sp': 'military dispatch schematics'} +#. ~ Description for military dispatch schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, these are assembly plans, design specs, and " @@ -25099,7 +25106,7 @@ msgid "anti-materiel turret schematics" msgid_plural "anti-materiel turret schematics" msgstr[0] "反器材砲塔原理圖" -#. ~ Description for {'str_sp': 'anti-materiel turret schematics'} +#. ~ Description for anti-materiel turret schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the anti-materiel " @@ -25112,7 +25119,7 @@ msgid "milspec searchlight schematics" msgid_plural "milspec searchlight schematics" msgstr[0] "軍規探照燈原理圖" -#. ~ Description for {'str_sp': 'milspec searchlight schematics'} +#. ~ Description for milspec searchlight schematics #: lang/json/BOOK_from_json.py msgid "" "Assembly plans, design specs, and technical drawings for the milspec " @@ -25673,7 +25680,7 @@ msgid "The Spirit of Aikido" msgid_plural "The Spirit of Aikido" msgstr[0] "合氣道之魂" -#. ~ Description for {'str_sp': 'The Spirit of Aikido'} +#. ~ Description for The Spirit of Aikido #: lang/json/BOOK_from_json.py msgid "A complete guide to Aikido." msgstr "一本完整的合氣道指南。" @@ -25683,7 +25690,7 @@ msgid "Practical Pugilism" msgid_plural "Practical Pugilism" msgstr[0] "實用拳擊術" -#. ~ Description for {'str_sp': 'Practical Pugilism'} +#. ~ Description for Practical Pugilism #: lang/json/BOOK_from_json.py msgid "" "A complete guide to boxing. Let's get ready to rough-up some ruffians!" @@ -25694,7 +25701,7 @@ msgid "Capoeira 100" msgid_plural "Capoeira 100" msgstr[0] "巴西戰舞 100 式" -#. ~ Description for {'str_sp': 'Capoeira 100'} +#. ~ Description for Capoeira 100 #: lang/json/BOOK_from_json.py msgid "A complete guide to Capoeira." msgstr "一部完整的巴西戰舞指南。" @@ -25704,7 +25711,7 @@ msgid "The Centipede Lu Feng" msgid_plural "The Centipede Lu Feng" msgstr[0] "陸峰蜈蚣功" -#. ~ Description for {'str_sp': 'The Centipede Lu Feng'} +#. ~ Description for The Centipede Lu Feng #: lang/json/BOOK_from_json.py msgid "A complete guide to Centipede Kung Fu." msgstr "一部完整的蜈蚣功指南。" @@ -25714,7 +25721,7 @@ msgid "The Red Crane" msgid_plural "The Red Crane" msgstr[0] "紅鶴書" -#. ~ Description for {'str_sp': 'The Red Crane'} +#. ~ Description for The Red Crane #: lang/json/BOOK_from_json.py msgid "A complete guide to Crane Kung Fu." msgstr "一本完整的鶴形拳拳法秘籍。" @@ -25724,7 +25731,7 @@ msgid "The Jade Dragon" msgid_plural "The Jade Dragon" msgstr[0] "玉龍書" -#. ~ Description for {'str_sp': 'The Jade Dragon'} +#. ~ Description for The Jade Dragon #: lang/json/BOOK_from_json.py msgid "A complete guide to Dragon Kung Fu." msgstr "一本完整的龍形拳拳譜秘籍。" @@ -25734,7 +25741,7 @@ msgid "Practical Eskrima" msgid_plural "Practical Eskrima" msgstr[0] "實戰菲律賓劍棍術" -#. ~ Description for {'str_sp': 'Practical Eskrima'} +#. ~ Description for Practical Eskrima #: lang/json/BOOK_from_json.py msgid "A complete guide to Eskrima." msgstr "一本完整的菲律賓劍棍術指南。" @@ -25744,7 +25751,7 @@ msgid "The Modern Swordsman" msgid_plural "The Modern Swordsman" msgstr[0] "現代劍術" -#. ~ Description for {'str_sp': 'The Modern Swordsman'} +#. ~ Description for The Modern Swordsman #: lang/json/BOOK_from_json.py msgid "A complete guide to Fencing." msgstr "一本完整的擊劍指南。" @@ -25754,7 +25761,7 @@ msgid "Kodokan Judo" msgid_plural "Kodokan Judo" msgstr[0] "柔道講談" -#. ~ Description for {'str_sp': 'Kodokan Judo'} +#. ~ Description for Kodokan Judo #: lang/json/BOOK_from_json.py msgid "A complete guide to Judo." msgstr "一本完整的柔道指南。" @@ -25764,7 +25771,7 @@ msgid "The Shotokan Karate Handbook" msgid_plural "The Shotokan Karate Handbook" msgstr[0] "松濤館流空手道手冊" -#. ~ Description for {'str_sp': 'The Shotokan Karate Handbook'} +#. ~ Description for The Shotokan Karate Handbook #: lang/json/BOOK_from_json.py msgid "A complete guide to Shotokan Karate." msgstr "一本完整的松濤館流空手道指南。" @@ -25774,7 +25781,7 @@ msgid "Complete Krav Maga" msgid_plural "Complete Krav Maga" msgstr[0] "以色列防衛術" -#. ~ Description for {'str_sp': 'Complete Krav Maga'} +#. ~ Description for Complete Krav Maga #: lang/json/BOOK_from_json.py msgid "A complete guide to Krav Maga." msgstr "一部完整的以色列格鬥術指南。" @@ -25784,7 +25791,7 @@ msgid "The Deaf Leopard" msgid_plural "The Deaf Leopard" msgstr[0] "盲豹書" -#. ~ Description for {'str_sp': 'The Deaf Leopard'} +#. ~ Description for The Deaf Leopard #: lang/json/BOOK_from_json.py msgid "A complete guide to Leopard Kung Fu." msgstr "一本完整的豹形拳拳譜秘籍。" @@ -25794,7 +25801,7 @@ msgid "The Lizard Kuo Chui" msgid_plural "The Lizard Kuo Chui" msgstr[0] "郭翠蜥蜴功" -#. ~ Description for {'str_sp': 'The Lizard Kuo Chui'} +#. ~ Description for The Lizard Kuo Chui #: lang/json/BOOK_from_json.py msgid "A complete guide to Lizard Kung Fu." msgstr "一部完整的蜥蜴功指南。" @@ -25804,7 +25811,7 @@ msgid "Ultimate Muay Thai" msgid_plural "Ultimate Muay Thai" msgstr[0] "終極泰拳" -#. ~ Description for {'str_sp': 'Ultimate Muay Thai'} +#. ~ Description for Ultimate Muay Thai #: lang/json/BOOK_from_json.py msgid "A complete guide to Muay Thai." msgstr "一部完整的泰拳指南。" @@ -25814,7 +25821,7 @@ msgid "Essence of Ninjutsu" msgid_plural "Essence of Ninjutsu" msgstr[0] "忍術精要" -#. ~ Description for {'str_sp': 'Essence of Ninjutsu'} +#. ~ Description for Essence of Ninjutsu #: lang/json/BOOK_from_json.py msgid "A complete guide to Ninjutsu." msgstr "一部完整的忍術指南。" @@ -25824,7 +25831,7 @@ msgid "The Book of Five Rings" msgid_plural "The Book of Five Rings" msgstr[0] "五輪書" -#. ~ Description for {'str_sp': 'The Book of Five Rings'} +#. ~ Description for The Book of Five Rings #: lang/json/BOOK_from_json.py msgid "" "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-" @@ -25836,7 +25843,7 @@ msgid "The Modern Pankratiast" msgid_plural "The Modern Pankratiast" msgstr[0] "現代希臘式搏擊" -#. ~ Description for {'str_sp': 'The Modern Pankratiast'} +#. ~ Description for The Modern Pankratiast #: lang/json/BOOK_from_json.py msgid "A complete guide to Pankration." msgstr "一部完整的古希臘式搏擊指南。" @@ -25846,7 +25853,7 @@ msgid "The Scorpion Sun Chien" msgid_plural "The Scorpion Sun Chien" msgstr[0] "孫簡蠍子功" -#. ~ Description for {'str_sp': 'The Scorpion Sun Chien'} +#. ~ Description for The Scorpion Sun Chien #: lang/json/BOOK_from_json.py msgid "A complete guide to Scorpion Kung Fu." msgstr "一部完整的蠍子功指南。" @@ -25856,7 +25863,7 @@ msgid "The Indonesian Warrior" msgid_plural "The Indonesian Warrior" msgstr[0] "印尼戰士" -#. ~ Description for {'str_sp': 'The Indonesian Warrior'} +#. ~ Description for The Indonesian Warrior #: lang/json/BOOK_from_json.py msgid "A complete guide to Pentjak Silat." msgstr "一份完整的印尼刀術指南。" @@ -25866,7 +25873,7 @@ msgid "The Black Snake" msgid_plural "The Black Snake" msgstr[0] "玄蛇書" -#. ~ Description for {'str_sp': 'The Black Snake'} +#. ~ Description for The Black Snake #: lang/json/BOOK_from_json.py msgid "A complete guide to Snake Kung Fu." msgstr "一本完整的蛇形拳拳譜秘籍。" @@ -25876,7 +25883,7 @@ msgid "Official Taekwondo Training Manual" msgid_plural "Official Taekwondo Training Manual" msgstr[0] "官方跆拳道訓練手冊" -#. ~ Description for {'str_sp': 'Official Taekwondo Training Manual'} +#. ~ Description for Official Taekwondo Training Manual #: lang/json/BOOK_from_json.py msgid "A complete guide to Taekwondo." msgstr "一部完整的跆拳道指南。" @@ -25886,7 +25893,7 @@ msgid "Becoming One with the Tao" msgid_plural "Becoming One with the Tao" msgstr[0] "混元一氣" -#. ~ Description for {'str_sp': 'Becoming One with the Tao'} +#. ~ Description for Becoming One with the Tao #: lang/json/BOOK_from_json.py msgid "A complete guide to T'ai Chi Ch'uan." msgstr "一本完整的太極拳拳譜。" @@ -25896,7 +25903,7 @@ msgid "The White Tiger" msgid_plural "The White Tiger" msgstr[0] "白虎書" -#. ~ Description for {'str_sp': 'The White Tiger'} +#. ~ Description for The White Tiger #: lang/json/BOOK_from_json.py msgid "A complete guide to Tiger Kung Fu." msgstr "一本完整的虎形拳拳譜秘籍。" @@ -25906,7 +25913,7 @@ msgid "The Toad Lo Mang" msgid_plural "The Toad Lo Mang" msgstr[0] "羅莽蛤蟆功" -#. ~ Description for {'str_sp': 'The Toad Lo Mang'} +#. ~ Description for The Toad Lo Mang #: lang/json/BOOK_from_json.py msgid "A complete guide to Toad Kung Fu." msgstr "一部完整的蛤蟆功指南。" @@ -25916,7 +25923,7 @@ msgid "The Viper Wei Pai" msgid_plural "The Viper Wei Pai" msgstr[0] "魏派虺蛇功" -#. ~ Description for {'str_sp': 'The Viper Wei Pai'} +#. ~ Description for The Viper Wei Pai #: lang/json/BOOK_from_json.py msgid "A complete guide to Viper Kung Fu." msgstr "一部完整的虺蛇功指南。" @@ -25926,7 +25933,7 @@ msgid "Zui Quan and You" msgid_plural "Zui Quan and You" msgstr[0] "醉拳拳法" -#. ~ Description for {'str_sp': 'Zui Quan and You'} +#. ~ Description for Zui Quan and You #: lang/json/BOOK_from_json.py msgid "A complete guide to Zui Quan." msgstr "一部完整的醉拳拳譜。" @@ -25936,7 +25943,7 @@ msgid "The Way of the Spear" msgid_plural "The Way of the Spear" msgstr[0] "矛之道" -#. ~ Description for {'str_sp': 'The Way of the Spear'} +#. ~ Description for The Way of the Spear #: lang/json/BOOK_from_json.py msgid "A complete guide to Sōjutsu." msgstr "一部完整的日本槍術指南。" @@ -25946,7 +25953,7 @@ msgid "Beautiful Springtime" msgid_plural "Beautiful Springtime" msgstr[0] "詠春拳譜" -#. ~ Description for {'str_sp': 'Beautiful Springtime'} +#. ~ Description for Beautiful Springtime #: lang/json/BOOK_from_json.py msgid "A complete guide to Wing Chun Kung-fu." msgstr "一本詠春功夫的完整指南。" @@ -25957,7 +25964,7 @@ msgid "Fior Di Battaglia" msgid_plural "Fior Di Battaglia" msgstr[0] "" -#. ~ Description for {'str_sp': 'Fior Di Battaglia'} +#. ~ Description for Fior Di Battaglia #: lang/json/BOOK_from_json.py msgid "" "A completely translated medieval guide teaching various techniques with " @@ -25970,7 +25977,7 @@ msgid "Historic European Swordfighting" msgid_plural "Historic European Swordfighting" msgstr[0] "" -#. ~ Description for {'str_sp': 'Historic European Swordfighting'} +#. ~ Description for Historic European Swordfighting #: lang/json/BOOK_from_json.py msgid "" "A complete guide to medieval swordsmanship. Compares the German and Italian" @@ -26114,7 +26121,7 @@ msgid "Ranch Prospectus" msgid_plural "Ranch Prospectus" msgstr[0] "牧場創建計劃書" -#. ~ Description for {'str_sp': 'Ranch Prospectus'} +#. ~ Description for Ranch Prospectus #: lang/json/BOOK_from_json.py msgid "" "A short paper of the economic viability of constructing an agricultural " @@ -26918,7 +26925,7 @@ msgid "patient treatment records" msgid_plural "patient treatment records" msgstr[0] "病歷資料" -#. ~ Description for {'str_sp': 'patient treatment records'} +#. ~ Description for patient treatment records #: lang/json/BOOK_from_json.py msgid "A massive stack of medical records that contain every gory detail." msgstr "一大疊病歷表格, 包含許多血淋淋的治療過程。" @@ -26928,7 +26935,7 @@ msgid "national weather transcripts" msgid_plural "national weather transcripts" msgstr[0] "全國氣象報告" -#. ~ Description for {'str_sp': 'national weather transcripts'} +#. ~ Description for national weather transcripts #: lang/json/BOOK_from_json.py msgid "Old weather records are about as interesting as a rock." msgstr "一份老舊的氣象資料, 大概只比字典有趣一點。" @@ -30202,7 +30209,7 @@ msgid "chicken walker schematics" msgid_plural "chicken walker schematics" msgstr[0] "雙足步行機器人原理圖" -#. ~ Description for {'str_sp': 'chicken walker schematics'} +#. ~ Description for chicken walker schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -30218,7 +30225,7 @@ msgid "diamond press schematics" msgid_plural "diamond press schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'diamond press schematics'} +#. ~ Description for diamond press schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -30232,7 +30239,7 @@ msgid "nano forge schematics" msgid_plural "nano forge schematics" msgstr[0] "" -#. ~ Description for {'str_sp': 'nano forge schematics'} +#. ~ Description for nano forge schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Matrioshka Fabritechnics, those are assembly plans, " @@ -30246,7 +30253,7 @@ msgid "tank drone schematics" msgid_plural "tank drone schematics" msgstr[0] "無人駕駛坦克原理圖" -#. ~ Description for {'str_sp': 'tank drone schematics'} +#. ~ Description for tank drone schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Northrop, those are assembly plans, design specs, and " @@ -30262,7 +30269,7 @@ msgid "tripod schematics" msgid_plural "tripod schematics" msgstr[0] "三足機器人原理圖" -#. ~ Description for {'str_sp': 'tripod schematics'} +#. ~ Description for tripod schematics #: lang/json/BOOK_from_json.py msgid "" "Bearing the logo of Honda, those are assembly plans, design specs, and " @@ -30485,7 +30492,7 @@ msgid "Scorching Sirocco" msgid_plural "Scorching Sirocco" msgstr[0] "" -#. ~ Description for {'str_sp': 'Scorching Sirocco'} +#. ~ Description for Scorching Sirocco #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Desert Wind discipline." msgstr "" @@ -30495,7 +30502,7 @@ msgid "Perfect Clarity of Mind and Body" msgid_plural "Perfect Clarity of Mind and Body" msgstr[0] "" -#. ~ Description for {'str_sp': 'Perfect Clarity of Mind and Body'} +#. ~ Description for Perfect Clarity of Mind and Body #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Diamond Mind discipline." msgstr "" @@ -30505,7 +30512,7 @@ msgid "The Book of Mudora" msgid_plural "The Book of Mudora" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Book of Mudora'} +#. ~ Description for The Book of Mudora #: lang/json/BOOK_from_json.py msgid "" "A collection of ancient Hylian lore and stories. A section on historic " @@ -30517,7 +30524,7 @@ msgid "Stormguard Warrior" msgid_plural "Stormguard Warrior" msgstr[0] "" -#. ~ Description for {'str_sp': 'Stormguard Warrior'} +#. ~ Description for Stormguard Warrior #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Iron Heart discipline." msgstr "" @@ -30527,7 +30534,7 @@ msgid "The Life and Work of Tiger Sauer" msgid_plural "The Life and Work of Tiger Sauer" msgstr[0] "" -#. ~ Description for {'str_sp': 'The Life and Work of Tiger Sauer'} +#. ~ Description for The Life and Work of Tiger Sauer #: lang/json/BOOK_from_json.py msgid "" "A biography of a combat cyborg agent detailing his philosophy and martial " @@ -30539,7 +30546,7 @@ msgid "Pocket Monster Encyclopedia" msgid_plural "Pocket Monster Encyclopedia" msgstr[0] "" -#. ~ Description for {'str_sp': 'Pocket Monster Encyclopedia'} +#. ~ Description for Pocket Monster Encyclopedia #: lang/json/BOOK_from_json.py msgid "" "This encyclopedia contains a detailed listing of the strengths and " @@ -30552,7 +30559,7 @@ msgid "Distant Horizon" msgid_plural "Distant Horizon" msgstr[0] "" -#. ~ Description for {'str_sp': 'Distant Horizon'} +#. ~ Description for Distant Horizon #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Setting Sun discipline." msgstr "" @@ -30562,7 +30569,7 @@ msgid "Jedi Holocrons: Form I" msgid_plural "Jedi Holocrons: Form I" msgstr[0] "" -#. ~ Description for {'str_sp': 'Jedi Holocrons: Form I'} +#. ~ Description for Jedi Holocrons: Form I #: lang/json/BOOK_from_json.py msgid "" "This device contains the teachings of the first form of Jedi lightsaber " @@ -30574,7 +30581,7 @@ msgid "Shards of Granite" msgid_plural "Shards of Granite" msgstr[0] "" -#. ~ Description for {'str_sp': 'Shards of Granite'} +#. ~ Description for Shards of Granite #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Stone Dragon discipline." msgstr "" @@ -30584,7 +30591,7 @@ msgid "Reaping Talons" msgid_plural "Reaping Talons" msgstr[0] "" -#. ~ Description for {'str_sp': 'Reaping Talons'} +#. ~ Description for Reaping Talons #: lang/json/BOOK_from_json.py msgid "This book contains the teaching of the Tiger Claw discipline." msgstr "" @@ -30609,6 +30616,20 @@ msgstr[0] "" msgid "A beginner textbook on magical theories." msgstr "" +#: lang/json/BOOK_from_json.py +msgid "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgid_plural "ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ" +msgstr[0] "" + +#. ~ Description for ᚲᚨᚲ:ᚲᛟᚹᚨᛏ:ᛗᛁᚠᚱᛁᛚ +#: lang/json/BOOK_from_json.py +msgid "" +"This book is written in a runic language unfamiliar to you. Fortunately, " +"there are several very detailed pictures that demonstrate the process of " +"forging a sword from an ingot of silvery metal. You get the impression that" +" this is some sort of textbook for blacksmiths." +msgstr "" + #: lang/json/BOOK_from_json.py msgid "Black Dragons: Swamp Ruins" msgid_plural "copies of Black Dragons: Swamp Ruins" @@ -31518,7 +31539,7 @@ msgstr "你得到食人魔的力量。" #: lang/json/BOOK_from_json.py msgid "Scroll of Fox's Cunning" msgid_plural "Scrolls of Fox's Cunning" -msgstr[0] "" +msgstr[0] "狐之狡黠卷軸" #. ~ Description for Scroll of Fox's Cunning #. ~ Description for Fox's Cunning @@ -32545,7 +32566,7 @@ msgid "bird litter" msgid_plural "bird litter" msgstr[0] "禽類排泄物" -#. ~ Description for {'str_sp': 'bird litter'} +#. ~ Description for bird litter #: lang/json/COMESTIBLE_from_json.py msgid "Bird droppings, feathers, and soiled bits of rubbish." msgstr "鳥糞、羽毛和髒污的垃圾。" @@ -32596,13 +32617,13 @@ msgid "bleach" msgid_plural "bleach" msgstr[0] "漂白水" -#. ~ Conditional name for {'str_sp': 'bleach'} when FLAG matches DIRTY +#. ~ Conditional name for bleach when FLAG matches DIRTY #: lang/json/COMESTIBLE_from_json.py msgid "bleach spill" msgid_plural "bleach spills" msgstr[0] "灑出去的漂白水" -#. ~ Description for {'str_sp': 'bleach'} +#. ~ Description for bleach #: lang/json/COMESTIBLE_from_json.py msgid "" "This is sodium hypochlorite, a common household cleaning agent. It is " @@ -32614,7 +32635,7 @@ msgid "ammonia" msgid_plural "ammonia" msgstr[0] "氨水" -#. ~ Description for {'str_sp': 'ammonia'} +#. ~ Description for ammonia #: lang/json/COMESTIBLE_from_json.py msgid "" "This is ammonium hydroxide, a common household cleaning agent. It is highly" @@ -32626,7 +32647,7 @@ msgid "liquid fertilizer" msgid_plural "liquid fertilizer" msgstr[0] "液態肥料" -#. ~ Description for {'str_sp': 'liquid fertilizer'} +#. ~ Description for liquid fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "A nutrient-rich elixir for plants." msgstr "一種植物用的營養藥劑。" @@ -32636,7 +32657,7 @@ msgid "commercial fertilizer" msgid_plural "commercial fertilizer" msgstr[0] "商用肥料" -#. ~ Description for {'str_sp': 'commercial fertilizer'} +#. ~ Description for commercial fertilizer #: lang/json/COMESTIBLE_from_json.py msgid "Nutrient-rich granules for plants." msgstr "植物用的營養顆粒劑。" @@ -32646,7 +32667,7 @@ msgid "fungicide" msgid_plural "fungicide" msgstr[0] "殺菌劑" -#. ~ Description for {'str_sp': 'fungicide'} +#. ~ Description for fungicide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical anti-fungal powder designed to destroy " @@ -32658,7 +32679,7 @@ msgid "insecticide" msgid_plural "insecticide" msgstr[0] "殺蟲劑" -#. ~ Description for {'str_sp': 'insecticide'} +#. ~ Description for insecticide #: lang/json/COMESTIBLE_from_json.py msgid "" "Agricultural-grade chemical insecticide powder designed to eradicate insect " @@ -32670,7 +32691,7 @@ msgid "salt water" msgid_plural "salt water" msgstr[0] "鹽水" -#. ~ Description for {'str_sp': 'salt water'} +#. ~ Description for salt water #: lang/json/COMESTIBLE_from_json.py msgid "Water with salt added. Not good for drinking." msgstr "加了鹽的水。不適合飲用。" @@ -32680,7 +32701,7 @@ msgid "soapy water" msgid_plural "soapy water" msgstr[0] "肥皂水" -#. ~ Description for {'str_sp': 'soapy water'} +#. ~ Description for soapy water #: lang/json/COMESTIBLE_from_json.py msgid "Water with soap added. Not good for drinking." msgstr "加了肥皂的水。不適合飲用。" @@ -32700,7 +32721,7 @@ msgid "sulfuric acid" msgid_plural "sulfuric acid" msgstr[0] "硫酸" -#. ~ Description for {'str_sp': 'sulfuric acid'} +#. ~ Description for sulfuric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Sulfuric acid: viscous, foul-smelling and extremely corrosive, particularly " @@ -32715,7 +32736,7 @@ msgid "hydrochloric acid" msgid_plural "hydrochloric acid" msgstr[0] "氫氯酸" -#. ~ Description for {'str_sp': 'hydrochloric acid'} +#. ~ Description for hydrochloric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Hydrochloric acid, also known as muriatic acid. It is a strong acid that " @@ -32728,7 +32749,7 @@ msgid "nitric acid" msgid_plural "nitric acid" msgstr[0] "硝酸" -#. ~ Description for {'str_sp': 'nitric acid'} +#. ~ Description for nitric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Nitric acid, a strong oxidant and an extremely corrosive material. Mainly " @@ -32759,7 +32780,7 @@ msgid "sewage water" msgid_plural "sewage water" msgstr[0] "污水" -#. ~ Description for {'str_sp': 'sewage water'} +#. ~ Description for sewage water #: lang/json/COMESTIBLE_from_json.py msgid "Turbid liquid from the sewers with an awful stench." msgstr "來自下水道的混濁液體,帶有可怕的惡臭。" @@ -32769,7 +32790,7 @@ msgid "lye" msgid_plural "lye" msgstr[0] "鹼液" -#. ~ Description for {'str_sp': 'lye'} +#. ~ Description for lye #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a liquid form of sodium hydroxide. It is highly corrosive; handle " @@ -32781,7 +32802,7 @@ msgid "ether" msgid_plural "ether" msgstr[0] "醚" -#. ~ Description for {'str_sp': 'ether'} +#. ~ Description for ether #: lang/json/COMESTIBLE_from_json.py msgid "" "A useful industrial solvent, and the first inhalative anesthetic in " @@ -32796,7 +32817,7 @@ msgid "dimethyl sulfoxide" msgid_plural "dimethyl sulfoxide" msgstr[0] "二甲基亞碸" -#. ~ Description for {'str_sp': 'dimethyl sulfoxide'} +#. ~ Description for dimethyl sulfoxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dimethyl sulfoxide, or DMSO, is a common and important aprotic solvent, " @@ -32811,7 +32832,7 @@ msgid "chloroform" msgid_plural "chloroform" msgstr[0] "氯仿" -#. ~ Description for {'str_sp': 'chloroform'} +#. ~ Description for chloroform #: lang/json/COMESTIBLE_from_json.py msgid "" "Famous for its properties as an illicit sedative, this substance is also a " @@ -32824,7 +32845,7 @@ msgid "phenol" msgid_plural "phenol" msgstr[0] "苯酚" -#. ~ Description for {'str_sp': 'phenol'} +#. ~ Description for phenol #: lang/json/COMESTIBLE_from_json.py msgid "" "This useful stuff is a potent solvent and has a wide range of reactive " @@ -32840,7 +32861,7 @@ msgid "glycerol" msgid_plural "glycerol" msgstr[0] "甘油" -#. ~ Description for {'str_sp': 'glycerol'} +#. ~ Description for glycerol #: lang/json/COMESTIBLE_from_json.py msgid "" "Also called glycerin, this clear, odorless liquid is both a handy skin " @@ -32852,7 +32873,7 @@ msgid "peptone broth powder" msgid_plural "peptone broth powder" msgstr[0] "蛋白腖高湯粉" -#. ~ Description for {'str_sp': 'peptone broth powder'} +#. ~ Description for peptone broth powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a pre-mixed salty solution of protein and sugar. It's meant for " @@ -32865,7 +32886,7 @@ msgid "agar" msgid_plural "agar" msgstr[0] "洋菜" -#. ~ Description for {'str_sp': 'agar'} +#. ~ Description for agar #: lang/json/COMESTIBLE_from_json.py msgid "" "These clear flakes of processed seaweed can be dissolved in boiling water to" @@ -32880,7 +32901,7 @@ msgid "acrylamide" msgid_plural "acrylamide" msgstr[0] "丙烯醯胺" -#. ~ Description for {'str_sp': 'acrylamide'} +#. ~ Description for acrylamide #: lang/json/COMESTIBLE_from_json.py msgid "" "This highly carcinogenic white powder can be readily polymerized into a " @@ -32892,7 +32913,7 @@ msgid "acetylene" msgid_plural "acetylene" msgstr[0] "乙炔" -#. ~ Description for {'str_sp': 'acetylene'} +#. ~ Description for acetylene #: lang/json/COMESTIBLE_from_json.py msgid "" "A flammable gas that explodes under pressure. Combined with oxygen, " @@ -32904,7 +32925,7 @@ msgid "formic acid" msgid_plural "formic acid" msgstr[0] "甲酸" -#. ~ Description for {'str_sp': 'formic acid'} +#. ~ Description for formic acid #: lang/json/COMESTIBLE_from_json.py msgid "" "Common in nature as an insect venom, this substance has a number of " @@ -32916,7 +32937,7 @@ msgid "latex" msgid_plural "latex" msgstr[0] "乳膠" -#. ~ Description for {'str_sp': 'latex'} +#. ~ Description for latex #: lang/json/COMESTIBLE_from_json.py msgid "A liquid precursor to rubber found in some plants." msgstr "橡膠的液體前驅物,能在植物中找到。" @@ -32926,7 +32947,7 @@ msgid "citric acid" msgid_plural "citric acid" msgstr[0] "檸檬酸" -#. ~ Description for {'str_sp': 'citric acid'} +#. ~ Description for citric acid #: lang/json/COMESTIBLE_from_json.py msgid "" "A manufactured form of citric acid that is commonly used as an additive in " @@ -32997,13 +33018,23 @@ msgid "acetic anhydride" msgid_plural "acetic anhydride" msgstr[0] "" -#. ~ Description for {'str_sp': 'acetic anhydride'} +#. ~ Description for acetic anhydride #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a bottle of acetic anhydride, if you have enough chemical knowledge," " you could use it to easily convert morphine into heroin." msgstr "" +#: lang/json/COMESTIBLE_from_json.py +msgid "liquid soap" +msgid_plural "liquid soap" +msgstr[0] "" + +#. ~ Description for liquid soap +#: lang/json/COMESTIBLE_from_json.py +msgid "Liquid soap." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hide bag" msgid_plural "hide bags" @@ -33038,7 +33069,7 @@ msgid "marloss wine" msgid_plural "marloss wine" msgstr[0] "馬洛斯酒" -#. ~ Description for {'str_sp': 'marloss wine'} +#. ~ Description for marloss wine #: lang/json/COMESTIBLE_from_json.py msgid "Goopy white wine, made from the fruit of the marloss." msgstr "滑膩的白酒,用馬洛斯的果實製成。" @@ -33048,7 +33079,7 @@ msgid "Riesling" msgid_plural "Riesling" msgstr[0] "雷司令葡萄酒" -#. ~ Description for {'str_sp': 'Riesling'} +#. ~ Description for Riesling #: lang/json/COMESTIBLE_from_json.py msgid "Sparkling white wine, made from the world's noblest grape." msgstr "精選高級葡萄釀製, 德國美味佳釀的代表。" @@ -33058,7 +33089,7 @@ msgid "Chardonnay" msgid_plural "Chardonnay" msgstr[0] "霞多麗葡萄酒" -#. ~ Description for {'str_sp': 'Chardonnay'} +#. ~ Description for Chardonnay #: lang/json/COMESTIBLE_from_json.py msgid "America's most popular wine, and for good reason." msgstr "美國最大眾化的葡萄酒。" @@ -33068,7 +33099,7 @@ msgid "Cabernet Sauvignon" msgid_plural "Cabernet Sauvignon" msgstr[0] "卡本內蘇維濃葡萄酒" -#. ~ Description for {'str_sp': 'Cabernet Sauvignon'} +#. ~ Description for Cabernet Sauvignon #: lang/json/COMESTIBLE_from_json.py msgid "" "The heavily disputed king of red wines. Pairs well with red meats and " @@ -33080,7 +33111,7 @@ msgid "pinot noir" msgid_plural "pinot noir" msgstr[0] "黑比諾葡萄酒" -#. ~ Description for {'str_sp': 'pinot noir'} +#. ~ Description for pinot noir #: lang/json/COMESTIBLE_from_json.py msgid "" "Prized by collectors and adored by critics, it is one of the rarer and more " @@ -33092,7 +33123,7 @@ msgid "marsala" msgid_plural "marsala" msgstr[0] "瑪薩拉酒" -#. ~ Description for {'str_sp': 'marsala'} +#. ~ Description for marsala #: lang/json/COMESTIBLE_from_json.py msgid "A wine popularly used in dishes served in Italian restaurants." msgstr "普遍在義大利餐廳供應的葡萄酒。" @@ -33102,7 +33133,7 @@ msgid "vermouth" msgid_plural "vermouth" msgstr[0] "苦艾酒" -#. ~ Description for {'str_sp': 'vermouth'} +#. ~ Description for vermouth #: lang/json/COMESTIBLE_from_json.py msgid "" "A soft wine with a pleasant herbal flavor and aroma. It is a common " @@ -33114,7 +33145,7 @@ msgid "barley wine" msgid_plural "barley wine" msgstr[0] "大麥酒" -#. ~ Description for {'str_sp': 'barley wine'} +#. ~ Description for barley wine #: lang/json/COMESTIBLE_from_json.py msgid "A strong ale." msgstr "強烈的啤酒。" @@ -33124,7 +33155,7 @@ msgid "whiskey" msgid_plural "whiskey" msgstr[0] "威士忌" -#. ~ Description for {'str_sp': 'whiskey'} +#. ~ Description for whiskey #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled grain alcohol, made from, by, and for real Southern colonels!" @@ -33135,7 +33166,7 @@ msgid "vodka" msgid_plural "vodka" msgstr[0] "伏特加" -#. ~ Description for {'str_sp': 'vodka'} +#. ~ Description for vodka #: lang/json/COMESTIBLE_from_json.py msgid "" "A beverage of alcohol, water, and not much else. In America, men make " @@ -33147,7 +33178,7 @@ msgid "gin" msgid_plural "gin" msgstr[0] "琴酒" -#. ~ Description for {'str_sp': 'gin'} +#. ~ Description for gin #: lang/json/COMESTIBLE_from_json.py msgid "" "An alcoholic beverage flavored with juniper berries. It smells faintly of " @@ -33159,7 +33190,7 @@ msgid "rum" msgid_plural "rum" msgstr[0] "蘭姆酒" -#. ~ Description for {'str_sp': 'rum'} +#. ~ Description for rum #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from fermenting molasses. Drinking it " @@ -33171,7 +33202,7 @@ msgid "tequila" msgid_plural "tequila" msgstr[0] "龍舌蘭" -#. ~ Description for {'str_sp': 'tequila'} +#. ~ Description for tequila #: lang/json/COMESTIBLE_from_json.py msgid "" "A distilled alcoholic beverage made from a succulent plant with spiky " @@ -33183,7 +33214,7 @@ msgid "triple sec" msgid_plural "triple sec" msgstr[0] "橙皮酒" -#. ~ Description for {'str_sp': 'triple sec'} +#. ~ Description for triple sec #: lang/json/COMESTIBLE_from_json.py msgid "An orange flavored liquor used in many mixed drinks." msgstr "一款在許多調酒中用到的柳橙風味酒。" @@ -33193,7 +33224,7 @@ msgid "cheap wine" msgid_plural "cheap wine" msgstr[0] "廉價紅酒" -#. ~ Description for {'str_sp': 'cheap wine'} +#. ~ Description for cheap wine #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap fortified wine." msgstr "廉價釀造酒。" @@ -33203,7 +33234,7 @@ msgid "strong mixed alcohol" msgid_plural "strong mixed alcohol" msgstr[0] "高濃度混合酒精" -#. ~ Description for {'str_sp': 'strong mixed alcohol'} +#. ~ Description for strong mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Strong alcoholic drinks, mixed with no regard for taste." msgstr "混過的烈酒, 味道亂七八糟。" @@ -33213,7 +33244,7 @@ msgid "weak mixed alcohol" msgid_plural "weak mixed alcohol" msgstr[0] "低濃度混合酒精" -#. ~ Description for {'str_sp': 'weak mixed alcohol'} +#. ~ Description for weak mixed alcohol #: lang/json/COMESTIBLE_from_json.py msgid "Weak alcoholic drinks, mixed with no regard for taste." msgstr "混過的酒精飲料, 味道亂七八糟。" @@ -33223,7 +33254,7 @@ msgid "fruit wine" msgid_plural "fruit wine" msgstr[0] "水果酒" -#. ~ Description for {'str_sp': 'fruit wine'} +#. ~ Description for fruit wine #: lang/json/COMESTIBLE_from_json.py msgid "" "Cheap booze made from fermented fruit juice. Tastes just like it sounds." @@ -33234,7 +33265,7 @@ msgid "brandy" msgid_plural "brandy" msgstr[0] "白蘭地" -#. ~ Description for {'str_sp': 'brandy'} +#. ~ Description for brandy #: lang/json/COMESTIBLE_from_json.py msgid "" "Wine that has been distilled to a higher proof. Great as an after-dinner " @@ -33246,7 +33277,7 @@ msgid "Irish coffee" msgid_plural "Irish coffee" msgstr[0] "愛爾蘭咖啡" -#. ~ Description for {'str_sp': 'Irish coffee'} +#. ~ Description for Irish coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweetened coffee and whiskey topped with milk. Start your day the closeted " @@ -33258,7 +33289,7 @@ msgid "Long Island iced tea" msgid_plural "Long Island iced tea" msgstr[0] "長島冰茶" -#. ~ Description for {'str_sp': 'Long Island iced tea'} +#. ~ Description for Long Island iced tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of incredibly strong-flavored liquors that somehow tastes like none " @@ -33283,7 +33314,7 @@ msgid "wild apple" msgid_plural "wild apple" msgstr[0] "狂野蘋果酒" -#. ~ Description for {'str_sp': 'wild apple'} +#. ~ Description for wild apple #: lang/json/COMESTIBLE_from_json.py msgid "Like apple cider, only with vodka." msgstr "作法類似蘋果西打, 只是加入了伏特加酒。" @@ -33293,7 +33324,7 @@ msgid "rum & cola" msgid_plural "rum & cola" msgstr[0] "蘭姆可樂" -#. ~ Description for {'str_sp': 'rum & cola'} +#. ~ Description for rum & cola #: lang/json/COMESTIBLE_from_json.py msgid "Suitable for tropical retreats and Canadian artists alike." msgstr "適合在熱帶度假的遊客或是加拿大藝術家。" @@ -33303,7 +33334,7 @@ msgid "beer" msgid_plural "beer" msgstr[0] "啤酒" -#. ~ Description for {'str_sp': 'beer'} +#. ~ Description for beer #: lang/json/COMESTIBLE_from_json.py msgid "" "A grain alcohol flavored with hops. It's best served cold, in a glass, and " @@ -33315,7 +33346,7 @@ msgid "spiced mead" msgid_plural "spiced mead" msgstr[0] "香料蜜酒" -#. ~ Description for {'str_sp': 'spiced mead'} +#. ~ Description for spiced mead #: lang/json/COMESTIBLE_from_json.py msgid "" "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet." @@ -33326,7 +33357,7 @@ msgid "dandelion wine" msgid_plural "dandelion wine" msgstr[0] "蒲公英酒" -#. ~ Description for {'str_sp': 'dandelion wine'} +#. ~ Description for dandelion wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A light and delicious wine made from dandelion flowers. Slightly " @@ -33338,7 +33369,7 @@ msgid "burdock wine" msgid_plural "burdock wine" msgstr[0] "牛蒡酒" -#. ~ Description for {'str_sp': 'burdock wine'} +#. ~ Description for burdock wine #: lang/json/COMESTIBLE_from_json.py msgid "A light and delicious wine made from burdock roots. Somewhat sweet." msgstr "一種清淡可口的酒, 由牛蒡根製成。口味偏甜。" @@ -33348,7 +33379,7 @@ msgid "pine wine" msgid_plural "pine wine" msgstr[0] "松脂酒" -#. ~ Description for {'str_sp': 'pine wine'} +#. ~ Description for pine wine #: lang/json/COMESTIBLE_from_json.py msgid "" "A potent wine flavored with pine resin. Bold and pungent, its biting taste " @@ -33360,7 +33391,7 @@ msgid "homebrew beer" msgid_plural "homebrew beer" msgstr[0] "私釀啤酒" -#. ~ Description for {'str_sp': 'homebrew beer'} +#. ~ Description for homebrew beer #: lang/json/COMESTIBLE_from_json.py msgid "Not the finest drink you've had, but hey, it's alcohol by the gallon." msgstr "你手上沒有比這更好的飲料了, 不過嘛, 嘿, 裡面酒精是以加侖為單位的。" @@ -33370,7 +33401,7 @@ msgid "moonshine" msgid_plural "moonshine" msgstr[0] "私釀烈酒" -#. ~ Description for {'str_sp': 'moonshine'} +#. ~ Description for moonshine #: lang/json/COMESTIBLE_from_json.py msgid "" "Only the strongest, purest, good ol' fashioned hooch, distilled from corn " @@ -33383,7 +33414,7 @@ msgid "European pilsner" msgid_plural "European pilsner" msgstr[0] "皮爾森啤酒" -#. ~ Description for {'str_sp': 'European pilsner'} +#. ~ Description for European pilsner #: lang/json/COMESTIBLE_from_json.py msgid "" "A lager beer imported from Europe. Best served cold, in a glass - but " @@ -33395,7 +33426,7 @@ msgid "American pale ale" msgid_plural "American pale ale" msgstr[0] "美國淡啤酒" -#. ~ Description for {'str_sp': 'American pale ale'} +#. ~ Description for American pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty craft beer. Best served cold, in a glass - but you're not that " @@ -33407,7 +33438,7 @@ msgid "India pale ale" msgid_plural "India pale ale" msgstr[0] "印度淡啤酒" -#. ~ Description for {'str_sp': 'India pale ale'} +#. ~ Description for India pale ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful microbrewed beer. Best served cold, in a glass - but " @@ -33419,7 +33450,7 @@ msgid "stout" msgid_plural "stout" msgstr[0] "司陶特啤酒" -#. ~ Description for {'str_sp': 'stout'} +#. ~ Description for stout #: lang/json/COMESTIBLE_from_json.py msgid "A tasty craft beer, as dark in color as the days ahead." msgstr "可口的手工啤酒, 黑的程度跟烏日一樣黑。" @@ -33429,7 +33460,7 @@ msgid "Belgian ale" msgid_plural "Belgian ale" msgstr[0] "比利時啤酒" -#. ~ Description for {'str_sp': 'Belgian ale'} +#. ~ Description for Belgian ale #: lang/json/COMESTIBLE_from_json.py msgid "" "A flavorful and filling beer brewed by monks in Belgium. Best served in a " @@ -33441,7 +33472,7 @@ msgid "imperial stout" msgid_plural "imperial stout" msgstr[0] "帝國司陶特啤酒" -#. ~ Description for {'str_sp': 'imperial stout'} +#. ~ Description for imperial stout #: lang/json/COMESTIBLE_from_json.py msgid "" "A very flavorful beer that has been aged in bourbon barrels. It is as black" @@ -33479,7 +33510,7 @@ msgid "single malt whiskey" msgid_plural "single malt whiskey" msgstr[0] "單一麥芽威士忌" -#. ~ Description for {'str_sp': 'single malt whiskey'} +#. ~ Description for single malt whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Only the finest whiskey straight from the bung." msgstr "瓶蓋之內全是最優等的威士忌。" @@ -33489,7 +33520,7 @@ msgid "single pot still Irish whiskey" msgid_plural "single pot still Irish whiskey" msgstr[0] "愛爾蘭威士忌" -#. ~ Description for {'str_sp': 'single pot still Irish whiskey'} +#. ~ Description for single pot still Irish whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A whiskey made from a mixed mash of malted and unmalted barley." msgstr "由搗碎的發芽和未發芽大麥所製成的威士忌。" @@ -33499,7 +33530,7 @@ msgid "cheap whiskey" msgid_plural "cheap whiskey" msgstr[0] "便宜威士忌" -#. ~ Description for {'str_sp': 'cheap whiskey'} +#. ~ Description for cheap whiskey #: lang/json/COMESTIBLE_from_json.py msgid "Really cheap blended whiskey." msgstr "廉價混和威士忌。" @@ -33509,7 +33540,7 @@ msgid "Canadian whiskey" msgid_plural "Canadian whiskey" msgstr[0] "加拿大威士忌" -#. ~ Description for {'str_sp': 'Canadian whiskey'} +#. ~ Description for Canadian whiskey #: lang/json/COMESTIBLE_from_json.py msgid "A multi-grain liquor made from a mash of corn and rye." msgstr "由搗碎的玉米和黑麥所製成的雜糧酒。" @@ -33519,7 +33550,7 @@ msgid "sherry" msgid_plural "sherry" msgstr[0] "雪莉酒" -#. ~ Description for {'str_sp': 'sherry'} +#. ~ Description for sherry #: lang/json/COMESTIBLE_from_json.py msgid "" "East India Solera. A true drink of a British gentleman. Sherry, Niles?" @@ -33530,7 +33561,7 @@ msgid "Bristol Cream" msgid_plural "Bristol Cream" msgstr[0] "Bristol Cream 雪莉酒" -#. ~ Description for {'str_sp': 'Bristol Cream'} +#. ~ Description for Bristol Cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A fine sherry that has been aged in American oak casks and bottled in " @@ -33542,7 +33573,7 @@ msgid "Madeira wine" msgid_plural "Madeira wine" msgstr[0] "馬德拉酒" -#. ~ Description for {'str_sp': 'Madeira wine'} +#. ~ Description for Madeira wine #: lang/json/COMESTIBLE_from_json.py msgid "Fortified wine from Madeira. A true Royal Navy drink." msgstr "馬德拉生產的烈性葡萄酒。真正皇家海軍的飲品。" @@ -33552,7 +33583,7 @@ msgid "fancy hobo" msgid_plural "fancy hobo" msgstr[0] "花式街友" -#. ~ Description for {'str_sp': 'fancy hobo'} +#. ~ Description for fancy hobo #: lang/json/COMESTIBLE_from_json.py msgid "This definitely tastes like a hobo drink." msgstr "這味道無疑像一個街友的飲料。" @@ -33562,7 +33593,7 @@ msgid "kalimotxo" msgid_plural "kalimotxo" msgstr[0] "紅酒可樂" -#. ~ Description for {'str_sp': 'kalimotxo'} +#. ~ Description for kalimotxo #: lang/json/COMESTIBLE_from_json.py msgid "" "A mix of equal parts wine and cola. It's not as bad as some might imagine, " @@ -33574,7 +33605,7 @@ msgid "bee's knees" msgid_plural "bee's knees" msgstr[0] "蜜蜂膝蓋" -#. ~ Description for {'str_sp': "bee's knees"} +#. ~ Description for bee's knees #: lang/json/COMESTIBLE_from_json.py msgid "" "This cocktail dates from the Prohibition era. Gin, honey and lemon in a " @@ -33659,7 +33690,7 @@ msgid "hard seltzer" msgid_plural "hard seltzer" msgstr[0] "硬蘇打水" -#. ~ Description for {'str_sp': 'hard seltzer'} +#. ~ Description for hard seltzer #: lang/json/COMESTIBLE_from_json.py msgid "Alcoholic sparkling water. Perfect for a hot summer day." msgstr "含酒精的氣泡水。炎炎夏日的首選。" @@ -33669,7 +33700,7 @@ msgid "pumpkin muffin" msgid_plural "pumpkin muffin" msgstr[0] "南瓜瑪芬" -#. ~ Description for {'str_sp': 'pumpkin muffin'} +#. ~ Description for pumpkin muffin #: lang/json/COMESTIBLE_from_json.py msgid "Baked muffins made of pumpkin. Perfect for your fall feast." msgstr "用南瓜製成的烤瑪芬。秋季大餐的完美選擇。" @@ -33679,7 +33710,7 @@ msgid "donut holes" msgid_plural "donut holes" msgstr[0] "甜甜圈球" -#. ~ Description for {'str_sp': 'donut holes'} +#. ~ Description for donut holes #: lang/json/COMESTIBLE_from_json.py msgid "" "These balls of dough have been cut into shape, covered with sugar, and " @@ -33691,7 +33722,7 @@ msgid "sourdough bread" msgid_plural "sourdough bread" msgstr[0] "" -#. ~ Description for {'str_sp': 'sourdough bread'} +#. ~ Description for sourdough bread #: lang/json/COMESTIBLE_from_json.py msgid "" "Healthy and filling, with a sharper taste and thicker crust than yeast-only " @@ -33703,7 +33734,7 @@ msgid "flatbread" msgid_plural "flatbread" msgstr[0] "" -#. ~ Description for {'str_sp': 'flatbread'} +#. ~ Description for flatbread #: lang/json/COMESTIBLE_from_json.py msgid "Simple unleavened bread." msgstr "不加入酵母的簡單麵包。" @@ -33713,7 +33744,7 @@ msgid "bread" msgid_plural "bread" msgstr[0] "" -#. ~ Description for {'str_sp': 'bread'} +#. ~ Description for bread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling." msgstr "健康又飽足。" @@ -33723,7 +33754,7 @@ msgid "toast" msgid_plural "toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'toast'} +#. ~ Description for toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A crispy breakfast treat that's a bit dry and would likely go better with " @@ -33735,7 +33766,7 @@ msgid "buttered toast" msgid_plural "buttered toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'buttered toast'} +#. ~ Description for buttered toast #: lang/json/COMESTIBLE_from_json.py msgid "Toast with butter spread on top to make it taste better." msgstr "" @@ -33745,7 +33776,7 @@ msgid "jam toast" msgid_plural "jam toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'jam toast'} +#. ~ Description for jam toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A bit of jam on toast to make it less dry and to add more flavor to this " @@ -33757,7 +33788,7 @@ msgid "peanut butter toast" msgid_plural "peanut butter toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'peanut butter toast'} +#. ~ Description for peanut butter toast #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanut butter to give more heartiness and calories to a slice of toast." @@ -33768,7 +33799,7 @@ msgid "toad in a hole" msgid_plural "toad in a hole" msgstr[0] "" -#. ~ Description for {'str_sp': 'toad in a hole'} +#. ~ Description for toad in a hole #: lang/json/COMESTIBLE_from_json.py msgid "A cooked egg served inside a piece of toast." msgstr "" @@ -33778,7 +33809,7 @@ msgid "PBJ Toast" msgid_plural "PBJ Toast" msgstr[0] "" -#. ~ Description for {'str_sp': 'PBJ Toast'} +#. ~ Description for PBJ Toast #: lang/json/COMESTIBLE_from_json.py msgid "" "A slice of toast with peanut butter and jelly on top of it with added butter" @@ -33790,7 +33821,7 @@ msgid "cornbread" msgid_plural "cornbread" msgstr[0] "" -#. ~ Description for {'str_sp': 'cornbread'} +#. ~ Description for cornbread #: lang/json/COMESTIBLE_from_json.py msgid "Healthy and filling cornbread." msgstr "健康又可填飽肚子的玉米麵包。" @@ -33820,7 +33851,7 @@ msgid "hardtack" msgid_plural "hardtack" msgstr[0] "" -#. ~ Description for {'str_sp': 'hardtack'} +#. ~ Description for hardtack #: lang/json/COMESTIBLE_from_json.py msgid "" "A dry and virtually tasteless bread product capable of remaining edible " @@ -33842,7 +33873,7 @@ msgid "wastebread" msgid_plural "wastebread" msgstr[0] "" -#. ~ Description for {'str_sp': 'wastebread'} +#. ~ Description for wastebread #: lang/json/COMESTIBLE_from_json.py msgid "" "Flour is a commodity these days and to deal with that, most survivors resort" @@ -33855,7 +33886,7 @@ msgid "brown bread" msgid_plural "brown bread" msgstr[0] "黑麵包" -#. ~ Description for {'str_sp': 'brown bread'} +#. ~ Description for brown bread #: lang/json/COMESTIBLE_from_json.py msgid "A sweet bread, like cake." msgstr "甜麵包,就像蛋糕。" @@ -33865,7 +33896,7 @@ msgid "hallula" msgid_plural "hallula" msgstr[0] "" -#. ~ Description for {'str_sp': 'hallula'} +#. ~ Description for hallula #: lang/json/COMESTIBLE_from_json.py msgid "" "This type of bread is popular in Chile and Bolivia. Prepared using animal " @@ -34107,18 +34138,18 @@ msgid "malting grain" msgid_plural "malting grain" msgstr[0] "" -#. ~ Use action msg for {'str_sp': 'malting grain'}. +#. ~ Use action msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "After soaking the grain and waiting, it has finished malting." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'malting grain'}. +#. ~ Use action not_ready_msg for malting grain. #: lang/json/COMESTIBLE_from_json.py msgid "The grain has not malted yet." msgstr "" -#. ~ Description for {'str_sp': 'malting grain'} -#. ~ Description for {'str_sp': 'soaking dandelion'} +#. ~ Description for malting grain +#. ~ Description for soaking dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Malting grain that can be used for brewing." msgstr "" @@ -34128,8 +34159,8 @@ msgid "malted grain" msgid_plural "malted grain" msgstr[0] "" -#. ~ Description for {'str_sp': 'malted grain'} -#. ~ Description for {'str_sp': 'barley'} +#. ~ Description for malted grain +#. ~ Description for barley #: lang/json/COMESTIBLE_from_json.py msgid "" "Grainy cereal used for malting. A staple of brewing everywhere. It can " @@ -34141,14 +34172,14 @@ msgid "soaking dandelion" msgid_plural "soaking dandelion" msgstr[0] "" -#. ~ Use action msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "" "After soaking the dandelions in boiling water, the juice can be used for " "making wine." msgstr "" -#. ~ Use action not_ready_msg for {'str_sp': 'soaking dandelion'}. +#. ~ Use action not_ready_msg for soaking dandelion. #: lang/json/COMESTIBLE_from_json.py msgid "The dandelions need more time." msgstr "" @@ -34158,7 +34189,7 @@ msgid "soaked dandelion" msgid_plural "soaked dandelion" msgstr[0] "" -#. ~ Description for {'str_sp': 'soaked dandelion'} +#. ~ Description for soaked dandelion #: lang/json/COMESTIBLE_from_json.py msgid "Dandelions soaked in hot water, used for making dandelion wine." msgstr "" @@ -34183,7 +34214,7 @@ msgid "cooked fish" msgid_plural "cooked fish" msgstr[0] "煮熟的魚肉" -#. ~ Description for {'str_sp': 'cooked fish'} +#. ~ Description for cooked fish #: lang/json/COMESTIBLE_from_json.py msgid "Freshly cooked fish. Very nutritious." msgstr "新鮮烹飪過的魚。非常營養。" @@ -34276,7 +34307,7 @@ msgid "" "Freshly butchered meat. You could eat it raw, but cooking it is better." msgstr "生鮮肉品, 你可以生吃, 但還是熟食比較安全。" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a living creature." msgstr "從生物抽出的鮮血。" @@ -34372,7 +34403,7 @@ msgid "mutant blood" msgid_plural "mutant blood" msgstr[0] "突變體血液" -#. ~ Description for {'str_sp': 'mutant blood'} +#. ~ Description for mutant blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated creature." msgstr "從突變體放出的鮮血。" @@ -34408,7 +34439,7 @@ msgid "mutant human blood" msgid_plural "mutant human blood" msgstr[0] "" -#. ~ Description for {'str_sp': 'mutant human blood'} +#. ~ Description for mutant human blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a heavily mutated human." msgstr "從重度突變的人類身上採集的血液。" @@ -34450,7 +34481,7 @@ msgid "butchery refuse" msgid_plural "butchery refuse" msgstr[0] "屠宰垃圾" -#. ~ Description for {'str_sp': 'butchery refuse'} +#. ~ Description for butchery refuse #: lang/json/COMESTIBLE_from_json.py msgid "" "Eugh. This is a mess of dirt, excreta, connective tissue, and bits of " @@ -34529,7 +34560,7 @@ msgid "cooked offal" msgid_plural "cooked offal" msgstr[0] "煮熟的內臟" -#. ~ Description for {'str_sp': 'cooked offal'} +#. ~ Description for cooked offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is freshly cooked organ meat and entrails. It's filled with essential " @@ -34542,7 +34573,7 @@ msgid "mutant organs" msgid_plural "mutant organs" msgstr[0] "突變體內臟" -#. ~ Description for {'str_sp': 'mutant organs'} +#. ~ Description for mutant organs #: lang/json/COMESTIBLE_from_json.py msgid "These organs came from a giant mutant bug." msgstr "這些器官是從巨型變異昆蟲身上取得的。" @@ -34552,7 +34583,7 @@ msgid "pickled offal" msgid_plural "pickled offal" msgstr[0] "醃內臟" -#. ~ Description for {'str_sp': 'pickled offal'} +#. ~ Description for pickled offal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a mass of entrails and organ meat, preserved in brine. Packed with " @@ -34565,7 +34596,7 @@ msgid "canned offal" msgid_plural "canned offal" msgstr[0] "內臟罐頭" -#. ~ Description for {'str_sp': 'canned offal'} +#. ~ Description for canned offal #: lang/json/COMESTIBLE_from_json.py msgid "" "Freshly cooked organ meat and entrails, preserved by canning. Unappetizing," @@ -34597,28 +34628,25 @@ msgid "meat jerky" msgid_plural "meat jerky" msgstr[0] "醃肉" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat jerky when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "jerk jerky" msgid_plural "jerk jerky" msgstr[0] "醃人肉" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat jerky when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal jerky" msgid_plural "talking animal jerky" msgstr[0] "會說話動物的醃肉" -#. ~ Conditional name for {'str_sp': 'meat jerky'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat jerky when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster jerky" msgid_plural "monster jerky" msgstr[0] "醃怪物肉" -#. ~ Description for {'str_sp': 'meat jerky'} +#. ~ Description for meat jerky #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried meat that lasts for a long time, but will make you thirsty." @@ -34629,7 +34657,7 @@ msgid "salted fish" msgid_plural "salted fish" msgstr[0] "鹽漬魚肉" -#. ~ Description for {'str_sp': 'salted fish'} +#. ~ Description for salted fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Salty dried fish that lasts for a long time, but will make you thirsty." @@ -34640,31 +34668,25 @@ msgid "smoked meat" msgid_plural "smoked meats" msgstr[0] "煙燻肉" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for smoked meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked sucker" msgid_plural "smoked sucker" msgstr[0] "煙燻人肉" -#. ~ Conditional name for {'str': 'smoked meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for smoked meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Narnian" msgid_plural "smoked Narnian" msgstr[0] "煙燻納尼亞動物" -#. ~ Conditional name for {'str': 'smoked meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'canned meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'salted meat slice'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'pickled meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'dehydrated meat'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'rehydrated meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for smoked meat when COMPONENT_ID matches mutant +#. ~ Conditional name for fried meat when COMPONENT_ID matches mutant +#. ~ Conditional name for canned meat when COMPONENT_ID matches mutant +#. ~ Conditional name for salted meat slice when COMPONENT_ID matches mutant +#. ~ Conditional name for pickled meat when COMPONENT_ID matches mutant +#. ~ Conditional name for dehydrated meat when COMPONENT_ID matches mutant +#. ~ Conditional name for rehydrated meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, mutant" @@ -34683,7 +34705,7 @@ msgid "smoked fish" msgid_plural "smoked fish" msgstr[0] "煙燻魚肉" -#. ~ Description for {'str_sp': 'smoked fish'} +#. ~ Description for smoked fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Tasty fish that has been heavily smoked for long term preservation. It " @@ -34731,7 +34753,7 @@ msgid "mutant lungs" msgid_plural "mutant lungs" msgstr[0] "突變體肺臟" -#. ~ Description for {'str_sp': 'mutant lungs'} +#. ~ Description for mutant lungs #: lang/json/COMESTIBLE_from_json.py msgid "You're pretty sure this is lung tissue." msgstr "你很確定這是肺部組織。" @@ -34778,7 +34800,7 @@ msgid "raw brains" msgid_plural "raw brains" msgstr[0] "生腦" -#. ~ Description for {'str_sp': 'raw brains'} +#. ~ Description for raw brains #: lang/json/COMESTIBLE_from_json.py msgid "The brain from an animal. You wouldn't want to eat this raw…" msgstr "來自動物的大腦。你不會想生吃它的..." @@ -34788,7 +34810,7 @@ msgid "cooked brains" msgid_plural "cooked brains" msgstr[0] "熟腦" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate those zombies you love so much! Preparing brain for " @@ -34859,7 +34881,7 @@ msgstr[0] "熟胸腺" msgid "Normally a delicacy, it needs a little… something." msgstr "照理說應該很美味,但它還需要...一些東西調味。" -#. ~ Description for {'str_sp': 'blood'} +#. ~ Description for blood #: lang/json/COMESTIBLE_from_json.py msgid "Blood, possibly that of a human. Disgusting!" msgstr "血, 應該是人類的。很噁心!" @@ -35000,7 +35022,7 @@ msgid "" "Meat that's obviously unhealthy. You could eat it, but it will poison you." msgstr "很明顯就能看出是有問題的肉。你能夠吃下, 但是會讓你中毒。" -#. ~ Description for {'str_sp': 'tainted blood'} +#. ~ Description for tainted blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that's obviously unhealthy. You could eat it, but it will poison you." @@ -35225,7 +35247,7 @@ msgid "alien fronds" msgid_plural "alien fronds" msgstr[0] "外星複葉" -#. ~ Description for {'str_sp': 'alien fronds'} +#. ~ Description for alien fronds #: lang/json/COMESTIBLE_from_json.py msgid "" "The fleshy fronds harvested from an alien plant. Eating these membranous " @@ -35324,7 +35346,7 @@ msgid "demihuman flesh" msgid_plural "demihuman flesh" msgstr[0] "半人肉" -#. ~ Description for {'str_sp': 'demihuman flesh'} +#. ~ Description for demihuman flesh #: lang/json/COMESTIBLE_from_json.py msgid "Freshly butchered from a demihuman body." msgstr "從半人屠宰下來的新鮮半人肉。" @@ -35334,7 +35356,7 @@ msgid "demihuman blood" msgid_plural "demihuman blood" msgstr[0] "" -#. ~ Description for {'str_sp': 'demihuman blood'} +#. ~ Description for demihuman blood #: lang/json/COMESTIBLE_from_json.py msgid "Fresh blood extracted from a demihuman." msgstr "從半人抽出的鮮血。" @@ -35370,12 +35392,34 @@ msgid "" "appetizing." msgstr "水煮的小型半人胃袋, 沒有別的… 看起來不太開胃。" +#: lang/json/COMESTIBLE_from_json.py +msgid "fried meat" +msgid_plural "fried meats" +msgstr[0] "" + +#. ~ Conditional name for fried meat when FLAG matches CANNIBALISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried fool" +msgid_plural "fried fool" +msgstr[0] "" + +#. ~ Conditional name for fried meat when FLAG matches STRICT_HUMANITARIANISM +#: lang/json/COMESTIBLE_from_json.py +msgid "fried familiar" +msgid_plural "fried familiar" +msgstr[0] "" + +#. ~ Description for fried meat +#: lang/json/COMESTIBLE_from_json.py +msgid "Delicious oil-fried meat." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "hot corn casserole" msgid_plural "hot corn casserole" msgstr[0] "" -#. ~ Description for {'str_sp': 'hot corn casserole'} +#. ~ Description for hot corn casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "It’s cheesy and indulgent, although the mix of tender kernels of corn, " @@ -35388,7 +35432,7 @@ msgid "fish noodle casserole" msgid_plural "fish noodle casserole" msgstr[0] "" -#. ~ Description for {'str_sp': 'fish noodle casserole'} +#. ~ Description for fish noodle casserole #: lang/json/COMESTIBLE_from_json.py msgid "" "Fish noodle casserole is a casserole primarily made with pasta and canned " @@ -35400,7 +35444,7 @@ msgid "cereal" msgid_plural "cereal" msgstr[0] "穀片" -#. ~ Description for {'str_sp': 'cereal'} +#. ~ Description for cereal #: lang/json/COMESTIBLE_from_json.py msgid "A generic box of cereal, you shouldn't see this." msgstr "一般的穀物盒,你不應該看到這個。" @@ -35410,7 +35454,7 @@ msgid "Foodplace cereal" msgid_plural "Foodplace cereal" msgstr[0] "美食中心穀片" -#. ~ Description for {'str_sp': 'Foodplace cereal'} +#. ~ Description for Foodplace cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "A generic box of Foodplace brand sugary cereal, you shouldn't see this." @@ -35421,7 +35465,7 @@ msgid "Snicker-Snacks cereal" msgid_plural "Snicker-Snacks cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Snicker-Snacks cereal'} +#. ~ Description for Snicker-Snacks cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand Snicker-Snack cereal. Each tiny \"Snicker-Snack\" is shaped" @@ -35433,7 +35477,7 @@ msgid "Carpenter Crunch cereal" msgid_plural "Carpenter Crunch cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Carpenter Crunch cereal'} +#. ~ Description for Carpenter Crunch cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "This is Foodplace brand \"Carpenter Crunch\" cereal with the iconic " @@ -35445,7 +35489,7 @@ msgid "Brantastic cereal" msgid_plural "Brantastic cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Brantastic cereal'} +#. ~ Description for Brantastic cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Brantastic\" cereal. An essential part of a complete Bran" @@ -35457,7 +35501,7 @@ msgid "Sugar Chomps cereal" msgid_plural "Sugar Chomps cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Sugar Chomps cereal'} +#. ~ Description for Sugar Chomps cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Sugar Chomps\" cereal. \"Chocolate Frosted Crunchy Sugar " @@ -35469,7 +35513,7 @@ msgid "Honey Pellet cereal" msgid_plural "Honey Pellet cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Honey Pellet cereal'} +#. ~ Description for Honey Pellet cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace brand \"Amorphous Honey Pellet\" cereal. The box promises " @@ -35493,7 +35537,7 @@ msgid "Foodios cereal" msgid_plural "Foodios cereal" msgstr[0] "" -#. ~ Description for {'str_sp': 'Foodios cereal'} +#. ~ Description for Foodios cereal #: lang/json/COMESTIBLE_from_json.py msgid "Foodplace brand \"Foodios\" cereal. Foodios™ are Foodalicious™!" msgstr "美食中心發行的\"美食牌\"榖片。美食牌\"超級美味\"!" @@ -35515,7 +35559,7 @@ msgid "wheat cereal" msgid_plural "wheat cereal" msgstr[0] "全麥穀片" -#. ~ Description for {'str_sp': 'wheat cereal'} +#. ~ Description for wheat cereal #: lang/json/COMESTIBLE_from_json.py msgid "" "Whole-grain wheat cereal. It's surprisingly good, and allegedly good for " @@ -35537,7 +35581,7 @@ msgid "milk" msgid_plural "milk" msgstr[0] "牛奶" -#. ~ Description for {'str_sp': 'milk'} +#. ~ Description for milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, appropriated for adult humans. Spoils rapidly." msgstr "小牛的食物, 但是對大人也很好, 很容易臭酸。" @@ -35547,7 +35591,7 @@ msgid "chocolate milk" msgid_plural "chocolate milk" msgstr[0] "巧克力牛奶" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "Baby cow food, with chocolate added for adult humans. Spoils rapidly." msgstr "小牛的食物, 加了大人們最愛的巧克力, 很容易臭酸。" @@ -35557,7 +35601,7 @@ msgid "reconstituted milk" msgid_plural "reconstituted milk" msgstr[0] "還原乳" -#. ~ Description for {'str_sp': 'reconstituted milk'} +#. ~ Description for reconstituted milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby cow food, appropriated for adult humans. This milk has been " @@ -35569,7 +35613,7 @@ msgid "raw milk" msgid_plural "raw milk" msgstr[0] "生乳" -#. ~ Description for {'str_sp': 'raw milk'} +#. ~ Description for raw milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't " @@ -35585,7 +35629,7 @@ msgid "shelf stable milk" msgid_plural "shelf stable milk" msgstr[0] "保久乳" -#. ~ Description for {'str_sp': 'shelf stable milk'} +#. ~ Description for shelf stable milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is milk that has been pasteurized at much higher temperatures than " @@ -35598,7 +35642,7 @@ msgid "evaporated milk" msgid_plural "evaporated milk" msgstr[0] "蒸發乳" -#. ~ Description for {'str_sp': 'evaporated milk'} +#. ~ Description for evaporated milk #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "Milk that's had about 60% of its water removed prior to canning." @@ -35609,7 +35653,7 @@ msgid "buttermilk" msgid_plural "buttermilk" msgstr[0] "酪乳" -#. ~ Description for {'str_sp': 'buttermilk'} +#. ~ Description for buttermilk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is cultured milk defatted either due to churning or curdling. Spoils " @@ -35631,7 +35675,7 @@ msgid "butter" msgid_plural "butter" msgstr[0] "奶油" -#. ~ Description for {'str_sp': 'butter'} +#. ~ Description for butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A yellow stick of milkfat and milk solids, usually made from cow's milk." @@ -35642,7 +35686,7 @@ msgid "raw butter" msgid_plural "raw butter" msgstr[0] "生奶油" -#. ~ Description for {'str_sp': 'raw butter'} +#. ~ Description for raw butter #: lang/json/COMESTIBLE_from_json.py msgid "" "A white stick of raw milkfat and milk solids, made directly from cow's milk." @@ -35653,7 +35697,7 @@ msgid "ghee" msgid_plural "ghee" msgstr[0] "酥油" -#. ~ Description for {'str_sp': 'ghee'} +#. ~ Description for ghee #: lang/json/COMESTIBLE_from_json.py msgid "" "Clarified butter, free from milk solids and water. Will last a very long " @@ -35687,7 +35731,7 @@ msgid "hard cheese" msgid_plural "hard cheese" msgstr[0] "硬起司" -#. ~ Description for {'str_sp': 'hard cheese'} +#. ~ Description for hard cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Hard, dry cheese made to last, unlike modern processed cheese. Will make " @@ -35699,7 +35743,7 @@ msgid "cheese" msgid_plural "cheese" msgstr[0] "起司" -#. ~ Description for {'str_sp': 'cheese'} +#. ~ Description for cheese #: lang/json/COMESTIBLE_from_json.py msgid "A block of yellow processed cheese." msgstr "一塊處理過的黃橙橙起司。" @@ -35719,7 +35763,7 @@ msgid "powdered milk" msgid_plural "powdered milk" msgstr[0] "奶粉" -#. ~ Description for {'str_sp': 'powdered milk'} +#. ~ Description for powdered milk #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated milk powder. Mix with water to make drinkable milk." msgstr "脫水乾燥的奶粉。加水就是能喝的牛奶。" @@ -35729,7 +35773,7 @@ msgid "condensed milk" msgid_plural "condensed milk" msgstr[0] "煉乳" -#. ~ Description for {'str_sp': 'condensed milk'} +#. ~ Description for condensed milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Cow's milk that has been partly dehydrated to vastly increase its shelf " @@ -35741,7 +35785,7 @@ msgid "whipped cream" msgid_plural "whipped cream" msgstr[0] "" -#. ~ Description for {'str_sp': 'whipped cream'} +#. ~ Description for whipped cream #: lang/json/COMESTIBLE_from_json.py msgid "" "Cream that has been whipped, perfect for frosting cakes and pies. Either " @@ -35753,7 +35797,7 @@ msgid "heavy cream" msgid_plural "heavy cream" msgstr[0] "鮮奶油" -#. ~ Description for {'str_sp': 'heavy cream'} +#. ~ Description for heavy cream #: lang/json/COMESTIBLE_from_json.py msgid " Cream that has been skimmed from the top of raw milk left to sit." msgstr "將生牛乳靜置一段時間之後,浮升到頂層的脂肪。" @@ -35763,7 +35807,7 @@ msgid "apple cider" msgid_plural "apple cider" msgstr[0] "蘋果西打" -#. ~ Description for {'str_sp': 'apple cider'} +#. ~ Description for apple cider #: lang/json/COMESTIBLE_from_json.py msgid "Pressed from fresh apples. Tasty and nutritious." msgstr "由新鮮的蘋果壓榨而成, 新鮮又美味。" @@ -35797,7 +35841,7 @@ msgid "atomic coffee" msgid_plural "atomic coffee" msgstr[0] "原子咖啡" -#. ~ Description for {'str_sp': 'atomic coffee'} +#. ~ Description for atomic coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "This serving of coffee has been created using an atomic coffee pot's FULL " @@ -35810,7 +35854,7 @@ msgid "bee balm tea" msgid_plural "bee balm tea" msgstr[0] "管蜂香草茶" -#. ~ Description for {'str_sp': 'bee balm tea'} +#. ~ Description for bee balm tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from bee balm steeped in boiling water. Can be used" @@ -35832,7 +35876,7 @@ msgid "chai tea" msgid_plural "chai tea" msgstr[0] "印度奶茶" -#. ~ Description for {'str_sp': 'chai tea'} +#. ~ Description for chai tea #: lang/json/COMESTIBLE_from_json.py msgid "A traditional south Asian mixed-spice tea with milk." msgstr "一款傳統的南亞香料奶茶。" @@ -35842,7 +35886,7 @@ msgid "chamomile tea" msgid_plural "chamomile tea" msgstr[0] "甘菊茶" -#. ~ Description for {'str_sp': 'chamomile tea'} +#. ~ Description for chamomile tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from chamomile flowers steeped in boiling water. " @@ -35866,7 +35910,7 @@ msgid "coffee" msgid_plural "coffee" msgstr[0] "咖啡" -#. ~ Description for {'str_sp': 'coffee'} +#. ~ Description for coffee #: lang/json/COMESTIBLE_from_json.py msgid "" "The morning ritual of the pre-apocalyptic world, created from coffee " @@ -35879,7 +35923,7 @@ msgid "coffee substitute" msgid_plural "coffee substitute" msgstr[0] "咖啡替代品" -#. ~ Description for {'str_sp': 'coffee substitute'} +#. ~ Description for coffee substitute #: lang/json/COMESTIBLE_from_json.py msgid "" "Homemade not-coffee created from the Kentucky coffeetree, just like the " @@ -35892,7 +35936,7 @@ msgid "chicory brew" msgid_plural "chicory brew" msgstr[0] "菊苣咖啡" -#. ~ Description for {'str_sp': 'chicory brew'} +#. ~ Description for chicory brew #: lang/json/COMESTIBLE_from_json.py msgid "" "Toasted, ground chicory root steeped in boiling water. This bitter brew is " @@ -35956,7 +36000,7 @@ msgid "dandelion tea" msgid_plural "dandelion tea" msgstr[0] "蒲公英茶" -#. ~ Description for {'str_sp': 'dandelion tea'} +#. ~ Description for dandelion tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from dandelion roots steeped in boiling water." msgstr "一種健康的飲料, 將蒲公英的根浸泡在開水之中而成。" @@ -35966,7 +36010,7 @@ msgid "dandelion and burdock tea" msgid_plural "dandelion and burdock tea" msgstr[0] "蒲公英和牛蒡茶" -#. ~ Description for {'str_sp': 'dandelion and burdock tea'} +#. ~ Description for dandelion and burdock tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from dandelion and burdock roots steeped in boiling " @@ -36018,7 +36062,7 @@ msgid "herbal tea" msgid_plural "herbal tea" msgstr[0] "藥草茶" -#. ~ Description for {'str_sp': 'herbal tea'} +#. ~ Description for herbal tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from herbs steeped in boiling water." msgstr "一種健康的飲品, 把藥草以沸水沖泡而成。" @@ -36028,7 +36072,7 @@ msgid "hot chocolate" msgid_plural "hot chocolate" msgstr[0] "熱巧克力" -#. ~ Description for {'str_sp': 'hot chocolate'} +#. ~ Description for hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as hot cocoa, this heated chocolate beverage is perfect for a " @@ -36074,7 +36118,7 @@ msgid "lemonade" msgid_plural "lemonade" msgstr[0] "檸檬水" -#. ~ Description for {'str_sp': 'lemonade'} +#. ~ Description for lemonade #: lang/json/COMESTIBLE_from_json.py msgid "" "Lemon juice mixed with water and sugar to dull the sourness. Delicious and " @@ -36098,7 +36142,7 @@ msgid "lotus tea" msgid_plural "lotus tea" msgstr[0] "蓮花茶" -#. ~ Description for {'str_sp': 'lotus tea'} +#. ~ Description for lotus tea #: lang/json/COMESTIBLE_from_json.py msgid "A healthy beverage made from lotus flowers steeped in boiling water." msgstr "一種健康的飲品, 把蓮花以沸水沖泡而成。" @@ -36108,7 +36152,7 @@ msgid "Mexican hot chocolate" msgid_plural "Mexican hot chocolate" msgstr[0] "墨西哥熱巧克力" -#. ~ Description for {'str_sp': 'Mexican hot chocolate'} +#. ~ Description for Mexican hot chocolate #: lang/json/COMESTIBLE_from_json.py msgid "" "This semi-bitter chocolate drink made from cocoa, cinnamon, and chilies, " @@ -36164,7 +36208,7 @@ msgid "pine needle tea" msgid_plural "pine needle tea" msgstr[0] "松針茶" -#. ~ Description for {'str_sp': 'pine needle tea'} +#. ~ Description for pine needle tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A fragrant and healthy beverage made from pine needles steeped in boiling " @@ -36199,7 +36243,7 @@ msgid "root beer" msgid_plural "root beer" msgstr[0] "麥根沙士" -#. ~ Description for {'str_sp': 'root beer'} +#. ~ Description for root beer #: lang/json/COMESTIBLE_from_json.py msgid "Like cola, but without caffeine. Still not that healthy." msgstr "像可樂但是不含咖啡因, 一樣對身體不好。" @@ -36233,13 +36277,13 @@ msgid "spurge tea" msgid_plural "spurge tea" msgstr[0] "大戟花茶" -#. ~ Use action activation_message for {'str_sp': 'spurge tea'}. +#. ~ Use action activation_message for spurge tea. #: lang/json/COMESTIBLE_from_json.py msgid "" "You no longer need to worry about asthma attacks, at least for a while." msgstr "你不在需要擔心哮喘了,至少在一定時間內。" -#. ~ Description for {'str_sp': 'spurge tea'} +#. ~ Description for spurge tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A healthy beverage made from spurge flowers steeped in boiling water. Can " @@ -36263,7 +36307,7 @@ msgid "sweet water" msgid_plural "sweet water" msgstr[0] "糖水" -#. ~ Description for {'str_sp': 'sweet water'} +#. ~ Description for sweet water #: lang/json/COMESTIBLE_from_json.py msgid "Water with sugar or honey added. Tastes okay." msgstr "添加了糖或蜂蜜的水。味道也就還好。" @@ -36285,7 +36329,7 @@ msgid "willowbark tea" msgid_plural "willowbark tea" msgstr[0] "" -#. ~ Description for {'str_sp': 'willowbark tea'} +#. ~ Description for willowbark tea #: lang/json/COMESTIBLE_from_json.py msgid "" "A bitter tea made by boiling willow bark in water, used since ancient times " @@ -36319,7 +36363,7 @@ msgid "water" msgid_plural "water" msgstr[0] "水" -#. ~ Description for {'str_sp': 'water'} +#. ~ Description for water #: lang/json/COMESTIBLE_from_json.py msgid "" "Water, the stuff of life, the best thirst-quencher available. It would be " @@ -36331,7 +36375,7 @@ msgid "clean water" msgid_plural "clean water" msgstr[0] "淨水" -#. ~ Description for {'str_sp': 'clean water'} +#. ~ Description for clean water #: lang/json/COMESTIBLE_from_json.py msgid "Fresh, clean water. Truly the best thing to quench your thirst." msgstr "新鮮純淨的淡水, 解身體的渴。" @@ -36341,7 +36385,7 @@ msgid "mineral water" msgid_plural "mineral water" msgstr[0] "礦泉水" -#. ~ Description for {'str_sp': 'mineral water'} +#. ~ Description for mineral water #: lang/json/COMESTIBLE_from_json.py msgid "Fancy mineral water, so fancy it makes you feel fancy just holding it." msgstr "優質的礦泉水, 太優質了讓你連拿著瓶子都覺得優質。" @@ -36460,7 +36504,7 @@ msgid "maple sap" msgid_plural "maple sap" msgstr[0] "楓樹樹汁" -#. ~ Description for {'str_sp': 'maple sap'} +#. ~ Description for maple sap #: lang/json/COMESTIBLE_from_json.py msgid "A water and sugar solution that has been extracted from a maple tree." msgstr "從楓樹抽出的水和糖的混合液。" @@ -36470,7 +36514,7 @@ msgid "mayonnaise" msgid_plural "mayonnaise" msgstr[0] "美乃滋醬" -#. ~ Description for {'str_sp': 'mayonnaise'} +#. ~ Description for mayonnaise #: lang/json/COMESTIBLE_from_json.py msgid "" "A gloppy mix of egg, oil, and salt that is traditionally used to moisten " @@ -36493,7 +36537,7 @@ msgid "mustard" msgid_plural "mustard" msgstr[0] "黃芥末醬" -#. ~ Description for {'str_sp': 'mustard'} +#. ~ Description for mustard #: lang/json/COMESTIBLE_from_json.py msgid "" "A condiment made from the seeds of a mustard plant (/Brassica/ or " @@ -36505,7 +36549,7 @@ msgid "forest honey" msgid_plural "forest honey" msgstr[0] "森林蜜" -#. ~ Description for {'str_sp': 'forest honey'} +#. ~ Description for forest honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff bees make. This one is \"forest honey\", a liquid form of" @@ -36517,7 +36561,7 @@ msgid "vinegar" msgid_plural "vinegar" msgstr[0] "醋" -#. ~ Description for {'str_sp': 'vinegar'} +#. ~ Description for vinegar #: lang/json/COMESTIBLE_from_json.py msgid "" "Shockingly tart white vinegar. This is what you get when you let your booze" @@ -36529,7 +36573,7 @@ msgid "vegetable cooking oil" msgid_plural "vegetable cooking oil" msgstr[0] "植物性烹飪油" -#. ~ Description for {'str_sp': 'vegetable cooking oil'} +#. ~ Description for vegetable cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow vegetable oil used for cooking." msgstr "淡黃色的植物油, 可用於烹飪。" @@ -36539,7 +36583,7 @@ msgid "animal cooking oil" msgid_plural "animal cooking oil" msgstr[0] "動物性烹飪油" -#. ~ Description for {'str_sp': 'animal cooking oil'} +#. ~ Description for animal cooking oil #: lang/json/COMESTIBLE_from_json.py msgid "Thin yellow animal oil used for cooking." msgstr "淡黃色的動物油,可用於烹飪。" @@ -36549,7 +36593,7 @@ msgid "molasses" msgid_plural "molasses" msgstr[0] "糖蜜" -#. ~ Description for {'str_sp': 'molasses'} +#. ~ Description for molasses #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice" @@ -36561,7 +36605,7 @@ msgid "horseradish" msgid_plural "horseradish" msgstr[0] "辣根" -#. ~ Description for {'str_sp': 'horseradish'} +#. ~ Description for horseradish #: lang/json/COMESTIBLE_from_json.py msgid "A spicy grated root vegetable packed in vinegared brine." msgstr "一包以醋跟鹽醃的磨碎鮮辣根菜。" @@ -36571,7 +36615,7 @@ msgid "coffee syrup" msgid_plural "coffee syrup" msgstr[0] "咖啡糖漿" -#. ~ Description for {'str_sp': 'coffee syrup'} +#. ~ Description for coffee syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup made of water and sugar strained through coffee grounds. Can " @@ -36878,7 +36922,7 @@ msgid "scrambled eggs" msgid_plural "scrambled eggs" msgstr[0] "炒蛋" -#. ~ Description for {'str_sp': 'scrambled eggs'} +#. ~ Description for scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "Fluffy and delicious scrambled eggs." msgstr "蓬鬆可口的炒蛋。" @@ -36898,7 +36942,7 @@ msgid "fried eggs" msgid_plural "fried eggs" msgstr[0] "荷包蛋" -#. ~ Description for {'str_sp': 'fried eggs'} +#. ~ Description for fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -36910,7 +36954,7 @@ msgid "deluxe fried eggs" msgid_plural "deluxe fried eggs" msgstr[0] "" -#. ~ Description for {'str_sp': 'deluxe fried eggs'} +#. ~ Description for deluxe fried eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -36922,7 +36966,7 @@ msgid "fried egg sandwich" msgid_plural "fried egg sandwich" msgstr[0] "" -#. ~ Description for {'str_sp': 'fried egg sandwich'} +#. ~ Description for fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the " @@ -36934,7 +36978,7 @@ msgid "deluxe fried egg sandwich" msgid_plural "deluxe fried egg sandwich" msgstr[0] "" -#. ~ Description for {'str_sp': 'deluxe fried egg sandwich'} +#. ~ Description for deluxe fried egg sandwich #: lang/json/COMESTIBLE_from_json.py msgid "" "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on" @@ -37111,7 +37155,7 @@ msgid "frozen yogurt" msgid_plural "frozen yogurt" msgstr[0] "霜凍優格" -#. ~ Description for {'str_sp': 'frozen yogurt'} +#. ~ Description for frozen yogurt #: lang/json/COMESTIBLE_from_json.py msgid "" "Tarter than ice cream, this is made with yogurt and other dairy products, " @@ -37175,7 +37219,7 @@ msgid "peaches in syrup" msgid_plural "peaches in syrup" msgstr[0] "蜜漬桃子" -#. ~ Description for {'str_sp': 'peaches in syrup'} +#. ~ Description for peaches in syrup #: lang/json/COMESTIBLE_from_json.py msgid "Yellow cling peach slices packed in light syrup." msgstr "黃色的水蜜桃片, 浸泡在糖水當中。" @@ -37195,7 +37239,7 @@ msgid "lemonade drink mix" msgid_plural "lemonade drink mix" msgstr[0] "檸檬水沖劑" -#. ~ Description for {'str_sp': 'lemonade drink mix'} +#. ~ Description for lemonade drink mix #: lang/json/COMESTIBLE_from_json.py msgid "" "Tangy yellow powder that smells strongly of lemons. Can be mixed with water" @@ -37227,7 +37271,7 @@ msgid "dehydrated fruit" msgid_plural "dehydrated fruit" msgstr[0] "脫水水果乾" -#. ~ Description for {'str_sp': 'dehydrated fruit'} +#. ~ Description for dehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fruit flakes. With proper storage, this dried food will remain " @@ -37240,7 +37284,7 @@ msgid "rehydrated fruit" msgid_plural "rehydrated fruit" msgstr[0] "加水水果乾" -#. ~ Description for {'str_sp': 'rehydrated fruit'} +#. ~ Description for rehydrated fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fruit flakes, which are much more enjoyable to eat now that " @@ -37263,7 +37307,7 @@ msgid "canned fruit" msgid_plural "canned fruit" msgstr[0] "水果罐頭" -#. ~ Description for {'str_sp': 'canned fruit'} +#. ~ Description for canned fruit #: lang/json/COMESTIBLE_from_json.py msgid "" "This sodden mass of preserved fruit was boiled and canned in an earlier " @@ -37275,7 +37319,7 @@ msgid "pumpkin yeast bread" msgid_plural "pumpkin yeast bread" msgstr[0] "南瓜酵母麵包" -#. ~ Description for {'str_sp': 'pumpkin yeast bread'} +#. ~ Description for pumpkin yeast bread #: lang/json/COMESTIBLE_from_json.py msgid "" "A festive autumnal bread with a golden color in either rolls or sliced " @@ -37297,7 +37341,7 @@ msgid "irradiated rose hips" msgid_plural "irradiated rose hips" msgstr[0] "輻照薔薇果" -#. ~ Description for {'str_sp': 'irradiated rose hips'} +#. ~ Description for irradiated rose hips #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rose hips will remain edible nearly forever. Sterilized using" @@ -37657,7 +37701,7 @@ msgid "irradiated broccoli" msgid_plural "irradiated broccoli" msgstr[0] "輻照花椰菜" -#. ~ Description for {'str_sp': 'irradiated broccoli'} +#. ~ Description for irradiated broccoli #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of broccoli will remain edible nearly forever. " @@ -37705,7 +37749,7 @@ msgid "irradiated corn" msgid_plural "irradiated corn" msgstr[0] "輻照玉米" -#. ~ Description for {'str_sp': 'irradiated corn'} +#. ~ Description for irradiated corn #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated ear of corn will remain edible nearly forever. Sterilized " @@ -37753,7 +37797,7 @@ msgid "irradiated celery" msgid_plural "irradiated celery" msgstr[0] "輻照芹菜" -#. ~ Description for {'str_sp': 'irradiated celery'} +#. ~ Description for irradiated celery #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated cluster of celery will remain edible nearly forever. " @@ -37765,7 +37809,7 @@ msgid "irradiated rhubarb" msgid_plural "irradiated rhubarb" msgstr[0] "輻照大黃" -#. ~ Description for {'str_sp': 'irradiated rhubarb'} +#. ~ Description for irradiated rhubarb #: lang/json/COMESTIBLE_from_json.py msgid "" "An irradiated rhubarb will remain edible nearly forever. Sterilized using " @@ -37866,12 +37910,12 @@ msgid "potato chips" msgid_plural "potato chips" msgstr[0] "洋芋片" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Some plain, salted potato chips." msgstr "一般的鹽漬洋芋片。" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Oh man, you love these chips! Score!" msgstr "喔, 你一定會喜歡這些洋芋片的!" @@ -37881,7 +37925,7 @@ msgid "popcorn kernels" msgid_plural "popcorn kernels" msgstr[0] "生爆米花" -#. ~ Description for {'str_sp': 'popcorn kernels'} +#. ~ Description for popcorn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried kernels from a particular type of corn. Practically inedible raw, " @@ -37893,7 +37937,7 @@ msgid "popcorn" msgid_plural "popcorn" msgstr[0] "爆米花" -#. ~ Description for {'str_sp': 'popcorn'} +#. ~ Description for popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "Plain and unseasoned popcorn. Not as tasty as other kinds, but healthier as" @@ -37905,7 +37949,7 @@ msgid "salted popcorn" msgid_plural "salted popcorn" msgstr[0] "加鹽爆米花" -#. ~ Description for {'str_sp': 'salted popcorn'} +#. ~ Description for salted popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with salt added for extra flavor." msgstr "加鹽口味的爆米花有著獨特的風味。" @@ -37915,7 +37959,7 @@ msgid "buttered popcorn" msgid_plural "buttered popcorn" msgstr[0] "奶油爆米花" -#. ~ Description for {'str_sp': 'buttered popcorn'} +#. ~ Description for buttered popcorn #: lang/json/COMESTIBLE_from_json.py msgid "Popcorn with a light covering of butter for extra flavor." msgstr "加入淡淡奶油的爆米花有著獨特的風味。" @@ -37925,7 +37969,7 @@ msgid "pretzels" msgid_plural "pretzels" msgstr[0] "椒鹽脆餅" -#. ~ Description for {'str_sp': 'pretzels'} +#. ~ Description for pretzels #: lang/json/COMESTIBLE_from_json.py msgid "A salty treat of a snack." msgstr "一種鹹口味的零食。" @@ -37955,7 +37999,7 @@ msgid "marshmallows" msgid_plural "marshmallows" msgstr[0] "棉花糖" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "A handful of squishy, fluffy, puffy, delicious marshmallows." msgstr "數個柔軟、蓬鬆、美味的棉花糖。" @@ -37965,7 +38009,7 @@ msgid "s'mores" msgid_plural "s'mores" msgstr[0] "巧克力棉花糖夾心餅" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -37997,7 +38041,7 @@ msgid "chewy candy" msgid_plural "chewy candy" msgstr[0] "軟糖" -#. ~ Description for {'str_sp': 'chewy candy'} +#. ~ Description for chewy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit-flavored chewy candy." msgstr "一把五顏六色的水果軟糖。" @@ -38007,12 +38051,12 @@ msgid "gummy candy" msgid_plural "gummy candy" msgstr[0] "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "A handful of colorful fruit and soda pop flavored gummy candies." msgstr "" -#. ~ Description for {'str_sp': 'gummy candy'} +#. ~ Description for gummy candy #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of colorful fruit and soda pop flavored vegan gummy candies made " @@ -38056,7 +38100,7 @@ msgid "powder candy sticks" msgid_plural "powder candy sticks" msgstr[0] "粉末糖果條" -#. ~ Description for {'str_sp': 'powder candy sticks'} +#. ~ Description for powder candy sticks #: lang/json/COMESTIBLE_from_json.py msgid "" "Thin paper tubes of sweet & sour candy powder. Who thinks of this stuff?" @@ -38124,7 +38168,7 @@ msgid "maple syrup" msgid_plural "maple syrup" msgstr[0] "楓糖漿" -#. ~ Description for {'str_sp': 'maple syrup'} +#. ~ Description for maple syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Boiling the sap of a maple tree has concentrated it into sweet, delicious " @@ -38136,7 +38180,7 @@ msgid "sugar beet syrup" msgid_plural "sugar beet syrup" msgstr[0] "甜菜糖漿" -#. ~ Description for {'str_sp': 'sugar beet syrup'} +#. ~ Description for sugar beet syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "A thick syrup produced from shredded sugar beets. Useful in cooking as a " @@ -38183,7 +38227,7 @@ msgid "fast-food French fries" msgid_plural "fast-food French fries" msgstr[0] "速食薯條" -#. ~ Description for {'str_sp': 'fast-food French fries'} +#. ~ Description for fast-food French fries #: lang/json/COMESTIBLE_from_json.py msgid "Fast-food fried potatoes. Somehow, they're still edible." msgstr "速食店的炸薯條。不知道為什麼還能吃。" @@ -38193,7 +38237,7 @@ msgid "French fries" msgid_plural "French fries" msgstr[0] "薯條" -#. ~ Description for {'str_sp': 'French fries'} +#. ~ Description for French fries #: lang/json/COMESTIBLE_from_json.py msgid "Deep-fried potatoes with a touch of salt. Crunchy and delicious." msgstr "" @@ -38213,7 +38257,7 @@ msgid "Necco wafers" msgid_plural "Necco wafers" msgstr[0] "Necco 威化餅" -#. ~ Description for {'str_sp': 'Necco wafers'} +#. ~ Description for Necco wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of candy wafers, in assorted flavors: orange, lemon, lime, clove, " @@ -38237,8 +38281,8 @@ msgid "caramel" msgid_plural "caramel" msgstr[0] "焦糖" -#. ~ Description for {'str_sp': 'caramel'} -#. ~ Description for {'str_sp': 'caramel apple'} +#. ~ Description for caramel +#. ~ Description for caramel apple #: lang/json/COMESTIBLE_from_json.py msgid "Some caramel. Still bad for your health." msgstr "一些焦糖。仍舊對你的健康不太好。" @@ -38248,7 +38292,7 @@ msgid "caramel apple" msgid_plural "caramel apple" msgstr[0] "焦糖蘋果" -#. ~ Description for {'str_sp': 'potato chips'} +#. ~ Description for potato chips #: lang/json/COMESTIBLE_from_json.py msgid "Betcha can't eat just one." msgstr "我賭你絕對停不下來。" @@ -38258,7 +38302,7 @@ msgid "tortilla chips" msgid_plural "tortilla chips" msgstr[0] "墨西哥玉米片" -#. ~ Description for {'str_sp': 'tortilla chips'} +#. ~ Description for tortilla chips #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, could really use some cheese, maybe " @@ -38270,7 +38314,7 @@ msgid "cheese nachos" msgid_plural "cheese nachos" msgstr[0] "起司玉米片" -#. ~ Description for {'str_sp': 'cheese nachos'} +#. ~ Description for cheese nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with cheese. Could stand to have" @@ -38282,28 +38326,25 @@ msgid "meat nachos" msgid_plural "meat nachos" msgstr[0] "加肉玉米片" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for meat nachos when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos" msgid_plural "niño nachos" msgstr[0] "加人肉玉米片" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos" msgid_plural "nibelung nachos" msgstr[0] "矮人玉米片" -#. ~ Conditional name for {'str_sp': 'meat nachos'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat nachos when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "nachos con chupacabra" msgid_plural "nachos con chupacabra" msgstr[0] "卓柏卡布拉玉米片" -#. ~ Description for {'str_sp': 'meat nachos'} +#. ~ Description for meat nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with meat. Could probably use " @@ -38315,28 +38356,28 @@ msgid "meat nachos with cheese" msgid_plural "meat nachos with cheese" msgstr[0] "加肉起司玉米片" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "niño nachos with cheese" msgid_plural "niño nachos with cheese" msgstr[0] "人肉起司玉米片" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat nachos with cheese when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "nibelung nachos with cheese" msgid_plural "nibelung nachos with cheese" msgstr[0] "矮人起司玉米片" -#. ~ Conditional name for {'str_sp': 'meat nachos with cheese'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for meat nachos with cheese when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "cheese and chupacabra nachos" msgid_plural "cheese and chupacabra nachos" msgstr[0] "卓柏卡布拉起司玉米片" -#. ~ Description for {'str_sp': 'meat nachos with cheese'} +#. ~ Description for meat nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with ground meat and smothered in " @@ -38348,7 +38389,7 @@ msgid "vegetarian nachos" msgid_plural "vegetarian nachos" msgstr[0] "素食玉米片" -#. ~ Description for {'str_sp': 'vegetarian nachos'} +#. ~ Description for vegetarian nachos #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas, now with beans. Could probably use " @@ -38360,7 +38401,7 @@ msgid "vegetarian nachos with cheese" msgid_plural "vegetarian nachos with cheese" msgstr[0] "起司和素食玉米片" -#. ~ Description for {'str_sp': 'vegetarian nachos with cheese'} +#. ~ Description for vegetarian nachos with cheese #: lang/json/COMESTIBLE_from_json.py msgid "" "Salted chips made from corn tortillas with beans and smothered in cheese. " @@ -38428,7 +38469,7 @@ msgid "chili dogs" msgid_plural "chili dogs" msgstr[0] "肉醬熱狗" -#. ~ Description for {'str_sp': 'chili dogs'} +#. ~ Description for chili dogs #: lang/json/COMESTIBLE_from_json.py msgid "A hot dog, served with chili con carne as a topping. Yum!" msgstr "一個熱狗上面淋上了辣肉醬。好吃!" @@ -38438,7 +38479,7 @@ msgid "uncooked corn dogs" msgid_plural "uncooked corn dogs" msgstr[0] "生玉米熱狗" -#. ~ Description for {'str_sp': 'uncooked corn dogs'} +#. ~ Description for uncooked corn dogs #: lang/json/COMESTIBLE_from_json.py msgid "" "A heavily processed sausage, dipped in batter and deep-fried. It would " @@ -38508,7 +38549,7 @@ msgid "cheese fries" msgid_plural "cheese fries" msgstr[0] "起司薯條" -#. ~ Description for {'str_sp': 'cheese fries'} +#. ~ Description for cheese fries #: lang/json/COMESTIBLE_from_json.py msgid "Fried potatoes with delicious cheese smothered on top." msgstr "油炸馬鈴薯。有著美味的起士淋在上面。" @@ -38589,8 +38630,7 @@ msgid "candy-coated peanuts" msgid_plural "candy-coated peanuts" msgstr[0] "糖衣花生" -#. ~ Description for {'ctxt': 'candy-coated peanuts', 'str_sp': 'candy-coated -#. peanuts'} +#. ~ Description for candy-coated peanuts #: lang/json/COMESTIBLE_from_json.py msgid "" "Peanuts coated in a sweet, crunchy candy coating. A regional delicacy." @@ -38722,30 +38762,24 @@ msgid "raw sausage" msgid_plural "raw sausages" msgstr[0] "生香腸" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches CANNIBALISM +#. ~ Conditional name for raw sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw Mannwurst" msgid_plural "raw Mannwursts" msgstr[0] "" -#. ~ Conditional name for {'str': 'raw sausage'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for raw sausage when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw killbasa" msgid_plural "raw killbasas" msgstr[0] "" -#. ~ Conditional name for {'str': 'raw sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'smoked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'cooked sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'sweet sausage'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'raw meatball'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'meatball'} when COMPONENT_ID matches mutant +#. ~ Conditional name for raw sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for smoked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for cooked sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for sweet sausage when COMPONENT_ID matches mutant +#. ~ Conditional name for raw meatball when COMPONENT_ID matches mutant +#. ~ Conditional name for meatball when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "sinister %s" @@ -38762,14 +38796,13 @@ msgid "smoked sausage" msgid_plural "smoked sausages" msgstr[0] "煙燻香腸" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for smoked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked Mannwurst" msgid_plural "smoked Mannwursts" msgstr[0] "" -#. ~ Conditional name for {'str': 'smoked sausage'} when FLAG matches +#. ~ Conditional name for smoked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "smoked killbasa" @@ -38786,14 +38819,13 @@ msgid "cooked sausage" msgid_plural "cooked sausages" msgstr[0] "煮熟的香腸" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cooked sausage when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked Mannwurst" msgid_plural "cooked Mannwursts" msgstr[0] "" -#. ~ Conditional name for {'str': 'cooked sausage'} when FLAG matches +#. ~ Conditional name for cooked sausage when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "cooked killbasa" @@ -38820,21 +38852,19 @@ msgid "bratwurst" msgid_plural "bratwursts" msgstr[0] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bratwurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannbrat" msgid_plural "Mannbrats" msgstr[0] "" -#. ~ Conditional name for {'str': 'bratwurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bratwurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "frankenfurter" msgid_plural "frankenfurters" msgstr[0] "" -#. ~ Conditional name for {'str': 'bratwurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bratwurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "baleful %s" @@ -38853,7 +38883,7 @@ msgid "royal beef" msgid_plural "royal beef" msgstr[0] "皇家牛肉" -#. ~ Description for {'str_sp': 'royal beef'} +#. ~ Description for royal beef #: lang/json/COMESTIBLE_from_json.py msgid "" "A chunk of meat with a coat of royal jelly over it. It's a lot like a " @@ -38900,7 +38930,7 @@ msgid "cracklins" msgid_plural "cracklins" msgstr[0] "豬皮酥" -#. ~ Description for {'str_sp': 'cracklins'} +#. ~ Description for cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Also known as pork rinds or chicharrones, these are bits of edible fat and " @@ -38912,15 +38942,14 @@ msgid "glazed tenderloins" msgid_plural "glazed tenderloins" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'glazed tenderloins'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for glazed tenderloins when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "grisly %s" msgid_plural "grisly %s" msgstr[0] "" -#. ~ Description for {'str_sp': 'glazed tenderloins'} +#. ~ Description for glazed tenderloins #: lang/json/COMESTIBLE_from_json.py msgid "" "A tender piece of meat perfectly seasoned with a thin sweet glaze and its " @@ -38933,23 +38962,21 @@ msgid "currywurst" msgid_plural "currywursts" msgstr[0] "咖哩香腸" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches CANNIBALISM +#. ~ Conditional name for currywurst when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "cheapskate %s" msgid_plural "cheapskate %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'currywurst'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for currywurst when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "confusing %s" msgid_plural "confusing %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'currywurst'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for currywurst when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bloodcurdling %s" @@ -38968,27 +38995,24 @@ msgid "aspic" msgid_plural "aspics" msgstr[0] "肉凍" -#. ~ Conditional name for {'str': 'aspic'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for aspic when COMPONENT_ID matches mutant +#. ~ Conditional name for fresh gelatin when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "abomination %s" msgid_plural "abomination %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches CANNIBALISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for aspic when FLAG matches CANNIBALISM +#. ~ Conditional name for fresh gelatin when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "amoral %s" msgid_plural "amoral %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'aspic'} when FLAG matches -#. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str_sp': 'fresh gelatin'} when FLAG matches +#. ~ Conditional name for aspic when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for fresh gelatin when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -39008,7 +39032,7 @@ msgid "dehydrated fish" msgid_plural "dehydrated fish" msgstr[0] "脫水魚肉乾" -#. ~ Description for {'str_sp': 'dehydrated fish'} +#. ~ Description for dehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated fish flakes. With proper storage, this dried food will remain " @@ -39020,7 +39044,7 @@ msgid "rehydrated fish" msgid_plural "rehydrated fish" msgstr[0] "加水魚肉乾" -#. ~ Description for {'str_sp': 'rehydrated fish'} +#. ~ Description for rehydrated fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted fish flakes, which are much more enjoyable to eat now that " @@ -39032,7 +39056,7 @@ msgid "pickled fish" msgid_plural "pickled fish" msgstr[0] "醃魚肉" -#. ~ Description for {'str_sp': 'pickled fish'} +#. ~ Description for pickled fish #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a serving of crisply brined and canned fish. Tasty and nutritious." @@ -39043,7 +39067,7 @@ msgid "canned fish" msgid_plural "canned fish" msgstr[0] "魚肉罐頭" -#. ~ Description for {'str_sp': 'canned fish'} +#. ~ Description for canned fish #: lang/json/COMESTIBLE_from_json.py msgid "" "Low-sodium preserved fish. It was boiled and canned. Contains most of the " @@ -39055,7 +39079,7 @@ msgid "batter fried fish" msgid_plural "batter fried fish" msgstr[0] "裹粉炸魚" -#. ~ Description for {'str_sp': 'batter fried fish'} +#. ~ Description for batter fried fish #: lang/json/COMESTIBLE_from_json.py msgid "A delicious golden brown serving of crispy fried fish." msgstr "一份美味的金黃色香脆炸魚。" @@ -39085,8 +39109,7 @@ msgid "lunch meat" msgid_plural "lunch meats" msgstr[0] "" -#. ~ Conditional name for {'str': 'lunch meat'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for lunch meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "loathsome %s" @@ -39105,30 +39128,28 @@ msgid "bologna" msgid_plural "bologna" msgstr[0] "臘腸" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches CANNIBALISM +#. ~ Conditional name for bologna when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "brat %s" msgid_plural "brat %s" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bologna when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Tumnis %s" msgid_plural "Tumnis %s" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'bologna'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for bologna when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "bleak %s" msgid_plural "bleak %s" msgstr[0] "" -#. ~ Description for {'str_sp': 'bologna'} +#. ~ Description for bologna #: lang/json/COMESTIBLE_from_json.py msgid "" "Formally known as Bologna sausage, this is a finely ground preserved meat " @@ -39154,7 +39175,7 @@ msgid "SPAM" msgid_plural "SPAM" msgstr[0] "午餐肉" -#. ~ Description for {'str_sp': 'SPAM'} +#. ~ Description for SPAM #: lang/json/COMESTIBLE_from_json.py msgid "" "A canned pork product that is unnaturally pink, oddly rubbery, and not very " @@ -39189,22 +39210,20 @@ msgid "sausage gravy" msgid_plural "sausage gravies" msgstr[0] "香腸濃湯" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sausage gravy when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "Mannwurst gravy" msgid_plural "Mannwurst gravies" msgstr[0] "人肉香腸濃湯" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for sausage gravy when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "killbasa gravy" msgid_plural "killbasa gravies" msgstr[0] "" -#. ~ Conditional name for {'str': 'sausage gravy', 'str_pl': 'sausage -#. gravies'} when COMPONENT_ID matches mutant +#. ~ Conditional name for sausage gravy when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "ghastly %s" @@ -39223,30 +39242,28 @@ msgid "pemmican" msgid_plural "pemmican" msgstr[0] "乾肉餅" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches CANNIBALISM +#. ~ Conditional name for pemmican when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "prepper %s" msgid_plural "prepper %s" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for pemmican when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Orley %s" msgid_plural "Orley %s" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'pemmican'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for pemmican when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "pernicious %s" msgid_plural "pernicious %s" msgstr[0] "" -#. ~ Description for {'str_sp': 'pemmican'} +#. ~ Description for pemmican #: lang/json/COMESTIBLE_from_json.py msgid "" "A concentrated mixture of fat and protein used as a nutritious high-energy " @@ -39259,22 +39276,20 @@ msgid "hamburger helper" msgid_plural "hamburger helpers" msgstr[0] "漢堡幫手" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for hamburger helper when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "hobo helper" msgid_plural "hobo helper" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when FLAG matches +#. ~ Conditional name for hamburger helper when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "halfling helper" msgid_plural "halfling helper" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger helper'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for hamburger helper when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "heinous %s" @@ -39303,22 +39318,20 @@ msgid "chili con carne" msgid_plural "chilis con carne" msgstr[0] "辣醬湯" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for chili con carne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con cabron" msgid_plural "chilis con cabron" msgstr[0] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for chili con carne when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "chili con Sindar" msgid_plural "chilis con Sindar" msgstr[0] "" -#. ~ Conditional name for {'str': 'chili con carne', 'str_pl': 'chilis con -#. carne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for chili con carne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "chili con chupacabra" msgid_plural "chilis con chupacabra" @@ -39334,7 +39347,7 @@ msgid "pork and beans" msgid_plural "pork and beans" msgstr[0] "豬肉豆罐頭" -#. ~ Description for {'str_sp': 'pork and beans'} +#. ~ Description for pork and beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Greasy Prospector improved pork and beans with hickory smoked pig fat " @@ -39346,7 +39359,7 @@ msgid "canned tuna fish" msgid_plural "canned tuna fish" msgstr[0] "金槍魚罐頭" -#. ~ Description for {'str_sp': 'canned tuna fish'} +#. ~ Description for canned tuna fish #: lang/json/COMESTIBLE_from_json.py msgid "Now with 95 percent fewer dolphins!" msgstr "裡面海豚肉的含量少於 95% 了!" @@ -39356,7 +39369,7 @@ msgid "canned salmon" msgid_plural "canned salmon" msgstr[0] "鮭魚罐頭" -#. ~ Description for {'str_sp': 'canned salmon'} +#. ~ Description for canned salmon #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink fish-paste in a can!" msgstr "裝著亮粉紅色魚肉醬的罐頭!" @@ -39376,7 +39389,7 @@ msgid "pickled herring" msgid_plural "pickled herring" msgstr[0] "" -#. ~ Description for {'str_sp': 'pickled herring'} +#. ~ Description for pickled herring #: lang/json/COMESTIBLE_from_json.py msgid "Fish fillets pickled in some sort of tangy white sauce." msgstr "魚肉片醃在某種濃郁的白醬中。" @@ -39396,15 +39409,13 @@ msgid "clam chowder" msgid_plural "clam chowders" msgstr[0] "蛤蜊濃湯" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. meat +#. ~ Conditional name for clam chowder when COMPONENT_ID matches meat #: lang/json/COMESTIBLE_from_json.py msgid "meat chowder" msgid_plural "meat chowders" msgstr[0] "" -#. ~ Conditional name for {'str': 'clam chowder'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for clam chowder when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "monster chowder" msgid_plural "monster chowders" @@ -39422,14 +39433,13 @@ msgid "baked beans" msgid_plural "baked beans" msgstr[0] "焗豆" -#. ~ Conditional name for {'str_sp': 'baked beans'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for baked beans when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "ork and beans" msgid_plural "ork and beans" msgstr[0] "" -#. ~ Description for {'str_sp': 'baked beans'} +#. ~ Description for baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with meat. Tasty and very filling." msgstr "加上肉塊的燉豆。好吃又有飽足感。" @@ -39439,14 +39449,13 @@ msgid "meat fried rice" msgid_plural "meat fried rice" msgstr[0] "肉絲炒飯" -#. ~ Conditional name for {'str_sp': 'meat fried rice'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for meat fried rice when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "mutant fried rice" msgid_plural "mutant fried rice" msgstr[0] "" -#. ~ Description for {'str_sp': 'meat fried rice'} +#. ~ Description for meat fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with meat. Tasty and very filling." msgstr "美味的肉絲炒飯。好吃又有飽足感。" @@ -39456,14 +39465,14 @@ msgid "deluxe beans and rice" msgid_plural "deluxe beans and rice" msgstr[0] "豪華豆拌飯" -#. ~ Conditional name for {'str_sp': 'deluxe beans and rice'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe beans and rice when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" beans and rice" msgid_plural "\"deluxe\" beans and rice" msgstr[0] "" -#. ~ Description for {'str_sp': 'deluxe beans and rice'} +#. ~ Description for deluxe beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with meat and seasonings. Tasty and very " @@ -39475,20 +39484,19 @@ msgid "meat pie" msgid_plural "meat pies" msgstr[0] "肉派" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pie when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "prick pie" msgid_plural "prick pie" msgstr[0] "人肉派" -#. ~ Conditional name for {'str': 'meat pie'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pie when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "talking animal pie" msgid_plural "talking animal pie" msgstr[0] "會說話動物肉派" -#. ~ Conditional name for {'str': 'meat pie'} when COMPONENT_ID matches mutant +#. ~ Conditional name for meat pie when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "malignant %s" @@ -39505,21 +39513,19 @@ msgid "meat pizza" msgid_plural "meat pizzas" msgstr[0] "肉披薩" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat pizza when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "poser pizza" msgid_plural "poser pizza" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat pizza'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat pizza when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "protesting pizza" msgid_plural "protesting pizza" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat pizza'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat pizza when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "miserable %s" @@ -39548,28 +39554,27 @@ msgid "deluxe scrambled eggs" msgid_plural "deluxe scrambled eggs" msgstr[0] "豪華炒蛋" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches CANNIBALISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "deluxe scrambled eggheads" msgid_plural "deluxe scrambled eggheads" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for deluxe scrambled eggs when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "birdman's scrambled eggs" msgid_plural "birdman's scrambled eggs" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'deluxe scrambled eggs'} when -#. COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe scrambled eggs when COMPONENT_ID matches +#. mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" scrambled eggs" msgid_plural "\"deluxe\" scrambled eggs" msgstr[0] "「豪華」炒蛋" -#. ~ Description for {'str_sp': 'deluxe scrambled eggs'} +#. ~ Description for deluxe scrambled eggs #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy and delicious scrambled eggs made more delicious with the addition of" @@ -39581,14 +39586,13 @@ msgid "canned meat" msgid_plural "canned meats" msgstr[0] "肉罐頭" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches CANNIBALISM +#. ~ Conditional name for canned meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent slice" msgid_plural "soylent slice" msgstr[0] "" -#. ~ Conditional name for {'str': 'canned meat'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for canned meat when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient slice" msgid_plural "sapient slice" @@ -39606,14 +39610,13 @@ msgid "salted meat slice" msgid_plural "salted meat slices" msgstr[0] "鹽漬肉片" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for salted meat slice when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "salted simpleton slice" msgid_plural "salted simpleton slice" msgstr[0] "" -#. ~ Conditional name for {'str': 'salted meat slice'} when FLAG matches +#. ~ Conditional name for salted meat slice when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "salted sapient slice" @@ -39630,29 +39633,27 @@ msgid "spaghetti bolognese" msgid_plural "spaghetti bolognese" msgstr[0] "肉醬義大利麵" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for spaghetti bolognese when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "scoundrel spaghetti" msgid_plural "scoundrel spaghetti" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when FLAG matches +#. ~ Conditional name for spaghetti bolognese when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "speaking spaghetti" msgid_plural "speaking spaghetti" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'spaghetti bolognese'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for spaghetti bolognese when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "gnarly %s" msgid_plural "gnarly %s" msgstr[0] "" -#. ~ Description for {'str_sp': 'spaghetti bolognese'} +#. ~ Description for spaghetti bolognese #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti covered with a thick meat sauce. Yum!" msgstr "被厚重肉汁緊緊包裹的義大利麵, 太美味啦!" @@ -39662,22 +39663,21 @@ msgid "lasagne" msgid_plural "lasagnes" msgstr[0] "千層麵" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches CANNIBALISM +#. ~ Conditional name for lasagne when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Luigi %s" msgid_plural "Luigi %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'lasagne'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for lasagne when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "Lab %s" msgid_plural "Lab %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'lasagne'} when COMPONENT_ID matches mutant +#. ~ Conditional name for lasagne when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "monster %s" @@ -39696,7 +39696,7 @@ msgid "fried SPAM" msgid_plural "fried SPAM" msgstr[0] "煎過的午餐肉" -#. ~ Description for {'str_sp': 'fried SPAM'} +#. ~ Description for fried SPAM #: lang/json/COMESTIBLE_from_json.py msgid "Having been fried, this SPAM is actually pretty tasty." msgstr "煎過的午餐肉, 其實還挺美味的。" @@ -39706,15 +39706,14 @@ msgid "cheeseburger" msgid_plural "cheeseburgers" msgstr[0] "起司漢堡" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for cheeseburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chump %s" msgid_plural "chump %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when FLAG matches +#. ~ Conditional name for cheeseburger when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format @@ -39722,8 +39721,7 @@ msgid "elf %s" msgid_plural "elf %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'cheeseburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for cheeseburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "chilling %s" @@ -39754,21 +39752,19 @@ msgid "hamburger" msgid_plural "hamburgers" msgstr[0] "漢堡" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches CANNIBALISM +#. ~ Conditional name for hamburger when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "bobburger" msgid_plural "bobburger" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for hamburger when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "Moreauburger" msgid_plural "Moreauburger" msgstr[0] "" -#. ~ Conditional name for {'str': 'hamburger'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for hamburger when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "horrible %s" @@ -39785,21 +39781,19 @@ msgid "sloppy joe" msgid_plural "sloppy joes" msgstr[0] "番茄辣肉醬漢堡" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches CANNIBALISM +#. ~ Conditional name for sloppy joe when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manwich" msgid_plural "manwiches" msgstr[0] "三人治" -#. ~ Conditional name for {'str': 'sloppy joe'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for sloppy joe when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "manfriendwich" msgid_plural "manfriendwiches" msgstr[0] "" -#. ~ Conditional name for {'str': 'sloppy joe'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for sloppy joe when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "suspicious %s" @@ -39818,22 +39812,21 @@ msgid "taco" msgid_plural "tacos" msgstr[0] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches CANNIBALISM +#. ~ Conditional name for taco when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "tio %s" msgid_plural "tio %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'taco'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for taco when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "talking %s" msgid_plural "talking %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'taco'} when COMPONENT_ID matches mutant +#. ~ Conditional name for taco when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "terrifying %s" @@ -39852,14 +39845,13 @@ msgid "pickled meat" msgid_plural "pickled meats" msgstr[0] "醃肉" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for pickled meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled punk" msgid_plural "pickled punk" msgstr[0] "" -#. ~ Conditional name for {'str': 'pickled meat'} when FLAG matches +#. ~ Conditional name for pickled meat when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "pickled anthro" @@ -39877,22 +39869,19 @@ msgid "dehydrated meat" msgid_plural "dehydrated meats" msgstr[0] "脫水肉乾" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches -#. CANNIBALISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for dehydrated meat when FLAG matches CANNIBALISM +#. ~ Conditional name for rehydrated meat when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, human" msgid_plural "%s, human" msgstr[0] "" -#. ~ Conditional name for {'str': 'dehydrated meat'} when FLAG matches +#. ~ Conditional name for dehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'rehydrated meat'} when FLAG matches +#. ~ Conditional name for rehydrated meat when FLAG matches #. STRICT_HUMANITARIANISM -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches STRICT_HUMANITARIANISM +#. ~ Conditional name for haggis when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "%s, demihuman" @@ -39923,9 +39912,8 @@ msgid "haggis" msgid_plural "haggises" msgstr[0] "" -#. ~ Conditional name for {'str': 'haggis', 'str_pl': 'haggises'} when FLAG -#. matches CANNIBALISM -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches CANNIBALISM +#. ~ Conditional name for haggis when FLAG matches CANNIBALISM +#. ~ Conditional name for bone broth when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "human %s" @@ -39948,7 +39936,7 @@ msgid "fish makizushi" msgid_plural "fish makizushi" msgstr[0] "魚壽司捲" -#. ~ Description for {'str_sp': 'fish makizushi'} +#. ~ Description for fish makizushi #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of thinly sliced raw fish wrapped in tasty sushi rice and " @@ -39960,15 +39948,14 @@ msgid "meat temaki" msgid_plural "meat temaki" msgstr[0] "生肉手卷" -#. ~ Conditional name for {'str_sp': 'meat temaki'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat temaki when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "troubling %s" msgid_plural "troubling %s" msgstr[0] "" -#. ~ Description for {'str_sp': 'meat temaki'} +#. ~ Description for meat temaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious slivers of raw meat wrapped in tasty sushi rice and rolled up in a" @@ -39980,7 +39967,7 @@ msgid "sashimi" msgid_plural "sashimi" msgstr[0] "生魚片" -#. ~ Description for {'str_sp': 'sashimi'} +#. ~ Description for sashimi #: lang/json/COMESTIBLE_from_json.py msgid "Delicious slivers of thinly sliced raw fish and tasty vegetables." msgstr "美味的薄片生魚肉與一些可口的蔬菜。" @@ -40002,7 +39989,7 @@ msgid "pelmeni" msgid_plural "pelmenis" msgstr[0] "" -#. ~ Conditional name for {'str': 'pelmeni'} when COMPONENT_ID matches mutant +#. ~ Conditional name for pelmeni when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perilous %s" @@ -40021,8 +40008,7 @@ msgid "homemade burrito" msgid_plural "homemade burritos" msgstr[0] "自製墨西哥捲餅" -#. ~ Conditional name for {'str': 'homemade burrito'} when COMPONENT_ID -#. matches mutant +#. ~ Conditional name for homemade burrito when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "bone-chilling burrito" msgid_plural "bone-chilling burritos" @@ -40041,14 +40027,13 @@ msgid "raw meatball" msgid_plural "raw meatballs" msgstr[0] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for raw meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "raw manball" msgid_plural "raw manballs" msgstr[0] "" -#. ~ Conditional name for {'str': 'raw meatball'} when FLAG matches +#. ~ Conditional name for raw meatball when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "raw murderball" @@ -40065,14 +40050,13 @@ msgid "meatball" msgid_plural "meatballs" msgstr[0] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meatball when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "manball" msgid_plural "manballs" msgstr[0] "" -#. ~ Conditional name for {'str': 'meatball'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meatball when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "murderball" msgid_plural "murderballs" @@ -40106,12 +40090,12 @@ msgid "prescription stimulant" msgid_plural "prescription stimulant" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'prescription stimulant'}. +#. ~ Use action activation_message for prescription stimulant. #: lang/json/COMESTIBLE_from_json.py msgid "You take some stimulants." msgstr "你服用了一些興奮劑。" -#. ~ Description for {'str_sp': 'prescription stimulant'} +#. ~ Description for prescription stimulant #: lang/json/COMESTIBLE_from_json.py msgid "" "Medical grade amphetamine salts mixed with Dextroamphetamine salts, commonly" @@ -40156,7 +40140,7 @@ msgid "antibiotics" msgid_plural "antibiotics" msgstr[0] "抗生素" -#. ~ Description for {'str_sp': 'antibiotics'} +#. ~ Description for antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "An antibacterial medication designed to prevent or stop the spread of " @@ -40181,7 +40165,7 @@ msgid "antiparasitic drug" msgid_plural "antiparasitic drug" msgstr[0] "抗寄生蟲藥" -#. ~ Description for {'str_sp': 'antiparasitic drug'} +#. ~ Description for antiparasitic drug #: lang/json/COMESTIBLE_from_json.py msgid "" "Broad spectrum chemical tablets designed to eliminate parasitic infestations" @@ -40253,7 +40237,7 @@ msgid "antiseptic powder" msgid_plural "antiseptic powder" msgstr[0] "殺菌粉" -#. ~ Description for {'str_sp': 'antiseptic powder'} +#. ~ Description for antiseptic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered form of chemical antiseptic, this bismuth formic iodide cleans " @@ -40305,7 +40289,7 @@ msgid "hydrogen peroxide" msgid_plural "hydrogen peroxide" msgstr[0] "過氧化氫" -#. ~ Description for {'str_sp': 'hydrogen peroxide'} +#. ~ Description for hydrogen peroxide #: lang/json/COMESTIBLE_from_json.py msgid "" "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or" @@ -40355,12 +40339,12 @@ msgid "codeine" msgid_plural "codeine" msgstr[0] "可待因" -#. ~ Use action activation_message for {'str_sp': 'codeine'}. +#. ~ Use action activation_message for codeine. #: lang/json/COMESTIBLE_from_json.py msgid "You take some codeine." msgstr "你服用了一些可待因。" -#. ~ Description for {'str_sp': 'codeine'} +#. ~ Description for codeine #: lang/json/COMESTIBLE_from_json.py msgid "" "A mild opiate used in the suppression of pain, cough, and other ailments. " @@ -40373,7 +40357,7 @@ msgid "cocaine" msgid_plural "cocaine" msgstr[0] "古柯鹼" -#. ~ Description for {'str_sp': 'cocaine'} +#. ~ Description for cocaine #: lang/json/COMESTIBLE_from_json.py msgid "" "Crystalline extract of the coca leaf, or at least, a white powder with some " @@ -40412,7 +40396,7 @@ msgid "cotton balls" msgid_plural "cotton balls" msgstr[0] "棉球" -#. ~ Description for {'str_sp': 'cotton balls'} +#. ~ Description for cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Can serve as makeshift bandages in an " @@ -40425,12 +40409,12 @@ msgid "crack" msgid_plural "crack" msgstr[0] "快克" -#. ~ Use action activation_message for {'str_sp': 'crack'}. +#. ~ Use action activation_message for crack. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke your crack rocks. Mother would be proud." msgstr "你抽了你的快克。你老母會以你為榮。" -#. ~ Description for {'str_sp': 'crack'} +#. ~ Description for crack #: lang/json/COMESTIBLE_from_json.py msgid "" "Deprotonated cocaine crystals, incredibly addictive and deleterious to brain" @@ -40442,7 +40426,7 @@ msgid "non-drowsy cough syrup" msgid_plural "non-drowsy cough syrup" msgstr[0] "無睡意止咳糖漿" -#. ~ Description for {'str_sp': 'non-drowsy cough syrup'} +#. ~ Description for non-drowsy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Daytime cold and flu medication. Non-drowsy formula. Will suppress " @@ -40455,7 +40439,7 @@ msgid "antiseptic" msgid_plural "antiseptic" msgstr[0] "消毒劑" -#. ~ Description for {'str_sp': 'antiseptic'} +#. ~ Description for antiseptic #: lang/json/COMESTIBLE_from_json.py msgid "A powerful antiseptic commonly used for contaminated wounds." msgstr "常用於消毒感染傷口的強效消毒劑。" @@ -40476,7 +40460,7 @@ msgid "prescription sedative" msgid_plural "prescription sedative" msgstr[0] "長效鎮靜劑" -#. ~ Description for {'str_sp': 'prescription sedative'} +#. ~ Description for prescription sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "A strong benzodiazepine drug used to treat muscle spasms, anxiety, seizures," @@ -40488,12 +40472,12 @@ msgid "high quality shatter" msgid_plural "high quality shatter" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'high quality shatter'}. +#. ~ Use action activation_message for high quality shatter. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab. Wow that's got some killer terpenes!" msgstr "" -#. ~ Description for {'str_sp': 'high quality shatter'} +#. ~ Description for high quality shatter #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -40509,12 +40493,12 @@ msgid "high quality wax" msgid_plural "high quality wax" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'high quality wax'}. +#. ~ Use action activation_message for high quality wax. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some wax. *cough cough* good stuff!" msgstr "" -#. ~ Description for {'str_sp': 'high quality wax'} +#. ~ Description for high quality wax #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -40529,12 +40513,12 @@ msgid "high quality crude oil" msgid_plural "high quality crude oil" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'high quality crude oil'}. +#. ~ Use action activation_message for high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'high quality crude oil'} +#. ~ Description for high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis. It still has " @@ -40547,16 +40531,14 @@ msgid "low quality crude oil" msgid_plural "low quality crude oil" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'low quality crude oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered low quality crude -#. oil'}. -#. ~ Use action activation_message for {'str_sp': 'filtered high quality crude -#. oil'}. +#. ~ Use action activation_message for low quality crude oil. +#. ~ Use action activation_message for filtered low quality crude oil. +#. ~ Use action activation_message for filtered high quality crude oil. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some really bad dabs. Not a good idea." msgstr "" -#. ~ Description for {'str_sp': 'low quality crude oil'} +#. ~ Description for low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis. It still has " @@ -40569,7 +40551,7 @@ msgid "(ethanol) low quality crude oil" msgid_plural "(ethanol) low quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': '(ethanol) low quality crude oil'} +#. ~ Description for (ethanol) low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -40582,7 +40564,7 @@ msgid "(ethanol) high quality crude oil" msgid_plural "(ethanol) high quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': '(ethanol) high quality crude oil'} +#. ~ Description for (ethanol) high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -40595,7 +40577,7 @@ msgid "(ethanol) filtered low quality crude oil" msgid_plural "(ethanol) filtered low quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': '(ethanol) filtered low quality crude oil'} +#. ~ Description for (ethanol) filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -40608,7 +40590,7 @@ msgid "(ethanol) filtered high quality crude oil" msgid_plural "(ethanol) filtered high quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': '(ethanol) filtered high quality crude oil'} +#. ~ Description for (ethanol) filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -40621,7 +40603,7 @@ msgid "filtered low quality crude oil" msgid_plural "filtered low quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': 'filtered low quality crude oil'} +#. ~ Description for filtered low quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is low quality concentrated oil derived from cannabis thats been " @@ -40635,7 +40617,7 @@ msgid "filtered high quality crude oil" msgid_plural "filtered high quality crude oil" msgstr[0] "" -#. ~ Description for {'str_sp': 'filtered high quality crude oil'} +#. ~ Description for filtered high quality crude oil #: lang/json/COMESTIBLE_from_json.py msgid "" "This is high quality concentrated oil derived from cannabis thats been " @@ -40649,7 +40631,7 @@ msgid "high quality distillate (heads)" msgid_plural "high quality distillate (heads)" msgstr[0] "高純度大麻萃取油液(首批)" -#. ~ Description for {'str_sp': 'high quality distillate (heads)'} +#. ~ Description for high quality distillate (heads) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This is the 'heads' portion from a distilled" @@ -40662,7 +40644,7 @@ msgid "high quality distillate (tails)" msgid_plural "high quality distillate (tails)" msgstr[0] "高純度大麻萃取油液(尾批)" -#. ~ Description for {'str_sp': 'high quality distillate (tails)'} +#. ~ Description for high quality distillate (tails) #: lang/json/COMESTIBLE_from_json.py msgid "" "Concentrated cannabis extract. This material is the 'tails' portion from a " @@ -40675,12 +40657,12 @@ msgid "high quality distillate" msgid_plural "high quality distillate" msgstr[0] "高純度大麻萃取液" -#. ~ Use action activation_message for {'str_sp': 'high quality distillate'}. +#. ~ Use action activation_message for high quality distillate. #: lang/json/COMESTIBLE_from_json.py msgid "You take a dab of some distillate. Sooooo smooth…" msgstr "你嗑了些高純度大麻萃取液。真~~~爽" -#. ~ Description for {'str_sp': 'high quality distillate'} +#. ~ Description for high quality distillate #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -40755,7 +40737,7 @@ msgid "chewing gum" msgid_plural "chewing gum" msgstr[0] "口香糖" -#. ~ Description for {'str_sp': 'chewing gum'} +#. ~ Description for chewing gum #: lang/json/COMESTIBLE_from_json.py msgid "Bright pink sugar-free chewing gum." msgstr "" @@ -40778,13 +40760,13 @@ msgid "heroin" msgid_plural "heroin" msgstr[0] "海洛因" -#. ~ Use action activation_message for {'str_sp': 'heroin'}. +#. ~ Use action activation_message for heroin. #. ~ Use action activation_message for morphine. #: lang/json/COMESTIBLE_from_json.py msgid "You shoot up." msgstr "你注射了一發。" -#. ~ Description for {'str_sp': 'heroin'} +#. ~ Description for heroin #: lang/json/COMESTIBLE_from_json.py msgid "" "An extremely strong opioid narcotic derived from morphine. Incredibly " @@ -40855,7 +40837,7 @@ msgid "low-grade methamphetamine" msgid_plural "low-grade methamphetamine" msgstr[0] "次級冰毒" -#. ~ Description for {'str_sp': 'low-grade methamphetamine'} +#. ~ Description for low-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -40868,7 +40850,7 @@ msgid "high-grade methamphetamine" msgid_plural "high-grade methamphetamine" msgstr[0] "" -#. ~ Description for {'str_sp': 'high-grade methamphetamine'} +#. ~ Description for high-grade methamphetamine #: lang/json/COMESTIBLE_from_json.py msgid "" "A profoundly addictive and powerful stimulant. While extremely effective at" @@ -40917,7 +40899,7 @@ msgid "cough syrup" msgid_plural "cough syrup" msgstr[0] "止咳糖漿" -#. ~ Description for {'str_sp': 'cough syrup'} +#. ~ Description for cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "" "Nighttime cold and flu medication. Useful when trying to sleep with a head " @@ -40946,7 +40928,7 @@ msgid "sleeping pill" msgid_plural "sleeping pill" msgstr[0] "安眠藥" -#. ~ Description for {'str_sp': 'sleeping pill'} +#. ~ Description for sleeping pill #: lang/json/COMESTIBLE_from_json.py msgid "" "A habit-forming tranquilizer with a variety of psychoactive side effects. " @@ -40988,7 +40970,7 @@ msgid "poppy cough syrup" msgid_plural "poppy cough syrup" msgstr[0] "罌粟止咳藥" -#. ~ Description for {'str_sp': 'poppy cough syrup'} +#. ~ Description for poppy cough syrup #: lang/json/COMESTIBLE_from_json.py msgid "Cough syrup made from mutated poppy. Will make you sleepy." msgstr "以突變罌粟製成的止咳藥, 會令你昏昏欲睡。" @@ -40998,15 +40980,14 @@ msgid "injectable prophylactic antivenom" msgid_plural "injectable prophylactic antivenom" msgstr[0] "" -#. ~ Use action activation_message for {'str_sp': 'injectable prophylactic -#. antivenom'}. +#. ~ Use action activation_message for injectable prophylactic antivenom. #: lang/json/COMESTIBLE_from_json.py msgid "" "You inject a vial of prophylactic antivenom into your arm. You feel a bit " "queasy." msgstr "" -#. ~ Description for {'str_sp': 'injectable prophylactic antivenom'} +#. ~ Description for injectable prophylactic antivenom #: lang/json/COMESTIBLE_from_json.py msgid "" "An experimental, cutting-edge antivenom in the form of some small amber " @@ -41020,7 +41001,7 @@ msgid "antidepressant" msgid_plural "antidepressant" msgstr[0] "抗憂鬱藥" -#. ~ Description for {'str_sp': 'antidepressant'} +#. ~ Description for antidepressant #: lang/json/COMESTIBLE_from_json.py msgid "" "A common and popular antidepressant. It will elevate mood, and can " @@ -41050,7 +41031,7 @@ msgid "hemostatic powder" msgid_plural "hemostatic powder" msgstr[0] "止血粉" -#. ~ Description for {'str_sp': 'hemostatic powder'} +#. ~ Description for hemostatic powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A powdered antihemorrhagic compound that reacts with blood to immediately " @@ -41074,7 +41055,7 @@ msgid "antipsychotic" msgid_plural "antipsychotic" msgstr[0] "抗精神病藥" -#. ~ Description for {'str_sp': 'antipsychotic'} +#. ~ Description for antipsychotic #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-psychotic medication. Used to stabilize brain chemistry, it can arrest" @@ -41317,12 +41298,12 @@ msgid "marijuana" msgid_plural "marijuana" msgstr[0] "大麻" -#. ~ Use action activation_message for {'str_sp': 'marijuana'}. +#. ~ Use action activation_message for marijuana. #: lang/json/COMESTIBLE_from_json.py msgid "You smoke some weed. Good stuff, man!" msgstr "你抽了一些大麻。好東西啊!" -#. ~ Description for {'str_sp': 'marijuana'} +#. ~ Description for marijuana #: lang/json/COMESTIBLE_from_json.py msgid "" "The dried flower buds and leaves harvested from a psychoactive variety of " @@ -41335,7 +41316,7 @@ msgid "fast-acting sedative" msgid_plural "fast-acting sedative" msgstr[0] "速效鎮靜劑" -#. ~ Description for {'str_sp': 'fast-acting sedative'} +#. ~ Description for fast-acting sedative #: lang/json/COMESTIBLE_from_json.py msgid "" "Anti-anxiety agent with a powerful sedative effect. May cause dissociation " @@ -41360,7 +41341,7 @@ msgid "antiseptic soaked cotton balls" msgid_plural "antiseptic soaked cotton balls" msgstr[0] "消毒過的棉球" -#. ~ Description for {'str_sp': 'antiseptic soaked cotton balls'} +#. ~ Description for antiseptic soaked cotton balls #: lang/json/COMESTIBLE_from_json.py msgid "" "Fluffy balls of clean white cotton. Now soaked with antiseptic, they are " @@ -41372,7 +41353,7 @@ msgid "narrow-spectrum antibiotics" msgid_plural "narrow-spectrum antibiotics" msgstr[0] "弱效抗生素" -#. ~ Description for {'str_sp': 'narrow-spectrum antibiotics'} +#. ~ Description for narrow-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A narrow-spectrum antibiotic used to suppress infections and prevent them " @@ -41436,7 +41417,7 @@ msgid "broad-spectrum antibiotics" msgid_plural "broad-spectrum antibiotics" msgstr[0] "" -#. ~ Description for {'str_sp': 'broad-spectrum antibiotics'} +#. ~ Description for broad-spectrum antibiotics #: lang/json/COMESTIBLE_from_json.py msgid "" "A broad-spectrum antibacterial medication designed to prevent or stop the " @@ -41451,7 +41432,7 @@ msgid "cocaine topical cream" msgid_plural "cocaine topical cream" msgstr[0] "" -#. ~ Description for {'str_sp': 'cocaine topical cream'} +#. ~ Description for cocaine topical cream #: lang/json/COMESTIBLE_from_json.py msgid "" "A medical cream that provides both vascular restriction and anesthetic " @@ -41890,7 +41871,7 @@ msgid "alpha serum" msgid_plural "alpha serum" msgstr[0] "阿爾法血清" -#. ~ Description for {'str_sp': 'alpha serum'} +#. ~ Description for alpha serum #: lang/json/COMESTIBLE_from_json.py msgid "" "A super-concentrated mutagen strongly resembling blood. You need a syringe " @@ -42121,9 +42102,8 @@ msgstr[0] "" #. ~ Description for batrachian serum #: lang/json/COMESTIBLE_from_json.py msgid "" -"A super-concentrated mutagen with that looks like pond water… are the " -"shadows in it moving? You need a syringe to inject it… if you really want " -"to?" +"A super-concentrated mutagen that looks like pond water… are the shadows in " +"it moving? You need a syringe to inject it… if you really want to?" msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -42184,7 +42164,7 @@ msgid "alpha mutagen" msgid_plural "alpha mutagen" msgstr[0] "阿爾法誘變劑" -#. ~ Description for {'str_sp': 'alpha mutagen'} +#. ~ Description for alpha mutagen #. ~ Description for chimera mutagen #. ~ Description for elf-a mutagen #. ~ Description for raptor mutagen @@ -42285,7 +42265,8 @@ msgstr[0] "" #. ~ Description for batrachian mutagen #: lang/json/COMESTIBLE_from_json.py msgid "" -"A shadowy mutagen that looks like might be full of tiny swimming tadpoles." +"A shadowy mutagen that looks like it might be full of tiny swimming " +"tadpoles." msgstr "" #: lang/json/COMESTIBLE_from_json.py @@ -42414,7 +42395,7 @@ msgid "pine nuts" msgid_plural "pine nuts" msgstr[0] "松子" -#. ~ Description for {'str_sp': 'pine nuts'} +#. ~ Description for pine nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of tasty crunchy nuts from a pinecone." msgstr "從松果剝出的香脆美味松子。" @@ -42424,7 +42405,7 @@ msgid "junipers" msgid_plural "junipers" msgstr[0] "杜松子" -#. ~ Description for {'str_sp': 'junipers'} +#. ~ Description for junipers #: lang/json/COMESTIBLE_from_json.py msgid "" "Junipers, for making gin and achieving earthy flavors. Spicy, tastes " @@ -42436,7 +42417,7 @@ msgid "shelled pistachios" msgid_plural "shelled pistachios" msgstr[0] "去殼開心果" -#. ~ Description for {'str_sp': 'shelled pistachios'} +#. ~ Description for shelled pistachios #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of nuts from a pistachio tree, their shells have been removed." @@ -42447,7 +42428,7 @@ msgid "roasted pistachios" msgid_plural "roasted pistachios" msgstr[0] "烘烤開心果" -#. ~ Description for {'str_sp': 'roasted pistachios'} +#. ~ Description for roasted pistachios #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pistachio tree." msgstr "" @@ -42457,7 +42438,7 @@ msgid "shelled almonds" msgid_plural "shelled almonds" msgstr[0] "去殼扁桃仁" -#. ~ Description for {'str_sp': 'shelled almonds'} +#. ~ Description for shelled almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of nuts from an almond tree, their shells have been removed." msgstr "一把從杏仁樹摘下的堅果, 已經去殼。" @@ -42467,7 +42448,7 @@ msgid "almond pulp" msgid_plural "almond pulp" msgstr[0] "扁桃仁果漿" -#. ~ Description for {'str_sp': 'almond pulp'} +#. ~ Description for almond pulp #: lang/json/COMESTIBLE_from_json.py msgid "" "Pulp left over after making almond milk. It's gritty and incredibly bland." @@ -42478,7 +42459,7 @@ msgid "roasted almonds" msgid_plural "roasted almonds" msgstr[0] "烘烤扁桃仁" -#. ~ Description for {'str_sp': 'roasted almonds'} +#. ~ Description for roasted almonds #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from an almond tree." msgstr "一把從杏仁樹摘下的的堅果, 已經烤過。" @@ -42488,7 +42469,7 @@ msgid "cashews" msgid_plural "cashews" msgstr[0] "腰果" -#. ~ Description for {'str_sp': 'cashews'} +#. ~ Description for cashews #: lang/json/COMESTIBLE_from_json.py msgid "A handful of salty cashews." msgstr "一把加鹽腰果。" @@ -42498,7 +42479,7 @@ msgid "shelled pecans" msgid_plural "shelled pecans" msgstr[0] "去殼長山核桃" -#. ~ Description for {'str_sp': 'shelled pecans'} +#. ~ Description for shelled pecans #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of pecans which are a sub-species of hickory nuts, their shells " @@ -42510,7 +42491,7 @@ msgid "roasted pecans" msgid_plural "roasted pecans" msgstr[0] "烘烤長山核桃" -#. ~ Description for {'str_sp': 'roasted pecans'} +#. ~ Description for roasted pecans #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a pecan tree." msgstr "一把從胡桃樹摘下的的堅果, 已經烤過。" @@ -42520,7 +42501,7 @@ msgid "shelled peanuts" msgid_plural "shelled peanuts" msgstr[0] "去殼花生" -#. ~ Description for {'str_sp': 'shelled peanuts'} +#. ~ Description for shelled peanuts #: lang/json/COMESTIBLE_from_json.py msgid "Salty peanuts, their shells have been removed." msgstr "" @@ -42530,7 +42511,7 @@ msgid "beech nuts" msgid_plural "beech nuts" msgstr[0] "山毛櫸堅果" -#. ~ Description for {'str_sp': 'beech nuts'} +#. ~ Description for beech nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of hard pointy nuts from a beech tree." msgstr "從山毛櫸樹來的尖尖的堅果。" @@ -42540,7 +42521,7 @@ msgid "shelled walnuts" msgid_plural "shelled walnuts" msgstr[0] "去殼核桃" -#. ~ Description for {'str_sp': 'shelled walnuts'} +#. ~ Description for shelled walnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a walnut tree, their shells have been " @@ -42552,7 +42533,7 @@ msgid "roasted walnuts" msgid_plural "roasted walnuts" msgstr[0] "烘烤核桃" -#. ~ Description for {'str_sp': 'roasted walnuts'} +#. ~ Description for roasted walnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a walnut tree." msgstr "一把從核桃樹摘下的堅果, 已經烤過。" @@ -42562,7 +42543,7 @@ msgid "shelled chestnuts" msgid_plural "shelled chestnuts" msgstr[0] "去殼栗子" -#. ~ Description for {'str_sp': 'shelled chestnuts'} +#. ~ Description for shelled chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a chestnut tree, their shells have been " @@ -42574,7 +42555,7 @@ msgid "roasted chestnuts" msgid_plural "roasted chestnuts" msgstr[0] "烘烤栗子" -#. ~ Description for {'str_sp': 'roasted chestnuts'} +#. ~ Description for roasted chestnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a chestnut tree." msgstr "一把從栗樹摘下的堅果, 已經烤過。" @@ -42584,7 +42565,7 @@ msgid "shelled hazelnuts" msgid_plural "shelled hazelnuts" msgstr[0] "去殼榛果" -#. ~ Description for {'str_sp': 'shelled hazelnuts'} +#. ~ Description for shelled hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hazelnut tree, their shells have been " @@ -42596,7 +42577,7 @@ msgid "roasted edamame" msgid_plural "roasted edamame" msgstr[0] "烘烤毛豆" -#. ~ Description for {'str_sp': 'roasted edamame'} +#. ~ Description for roasted edamame #: lang/json/COMESTIBLE_from_json.py msgid "Roasted edamame, a hearty and healthy snack." msgstr "" @@ -42606,7 +42587,7 @@ msgid "roasted soy nuts" msgid_plural "roasted soy nuts" msgstr[0] "烘烤黃豆" -#. ~ Description for {'str_sp': 'roasted soy nuts'} +#. ~ Description for roasted soy nuts #: lang/json/COMESTIBLE_from_json.py msgid "Roasted soybeans, often called soy nuts." msgstr "烤過的黃豆。" @@ -42616,7 +42597,7 @@ msgid "roasted hazelnuts" msgid_plural "roasted hazelnuts" msgstr[0] "烘烤榛果" -#. ~ Description for {'str_sp': 'roasted hazelnuts'} +#. ~ Description for roasted hazelnuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hazelnut tree." msgstr "一把從榛樹摘下的堅果, 已經烤過。" @@ -42626,7 +42607,7 @@ msgid "shelled hickory nuts" msgid_plural "shelled hickory nuts" msgstr[0] "去殼山核桃堅果" -#. ~ Description for {'str_sp': 'shelled hickory nuts'} +#. ~ Description for shelled hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of raw hard nuts from a hickory tree, their shells have been " @@ -42638,7 +42619,7 @@ msgid "roasted hickory nuts" msgid_plural "roasted hickory nuts" msgstr[0] "烘烤山核桃堅果" -#. ~ Description for {'str_sp': 'roasted hickory nuts'} +#. ~ Description for roasted hickory nuts #: lang/json/COMESTIBLE_from_json.py msgid "A handful of roasted nuts from a hickory tree." msgstr "一把來自山核桃樹的烘烤山核桃。" @@ -42690,7 +42671,7 @@ msgid "acorns" msgid_plural "acorns" msgstr[0] "橡實" -#. ~ Description for {'str_sp': 'acorns'} +#. ~ Description for acorns #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of acorns, still in their shells. Squirrels like them, but they " @@ -42702,7 +42683,7 @@ msgid "roasted acorns" msgid_plural "roasted acorns" msgstr[0] "烘烤橡實" -#. ~ Description for {'str_sp': 'roasted acorns'} +#. ~ Description for roasted acorns #: lang/json/COMESTIBLE_from_json.py msgid "A handful roasted nuts from an oak tree." msgstr "一把從橡樹摘下的的堅果, 已經烤過。" @@ -42712,7 +42693,7 @@ msgid "cooked acorn meal" msgid_plural "cooked acorn meal" msgstr[0] "煮熟的橡實粉" -#. ~ Description for {'str_sp': 'cooked acorn meal'} +#. ~ Description for cooked acorn meal #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of acorns that have been hulled, chopped, and boiled in water " @@ -42724,7 +42705,7 @@ msgid "foie gras" msgid_plural "foie gras" msgstr[0] "鵝肝" -#. ~ Description for {'str_sp': 'foie gras'} +#. ~ Description for foie gras #: lang/json/COMESTIBLE_from_json.py msgid "" "Though it's not technically foie gras, you don't have to think about that." @@ -42735,7 +42716,7 @@ msgid "liver & onions" msgid_plural "liver & onions" msgstr[0] "生肝炒洋蔥" -#. ~ Description for {'str_sp': 'liver & onions'} +#. ~ Description for liver & onions #: lang/json/COMESTIBLE_from_json.py msgid "A classic way to serve liver." msgstr "傳統的肝臟料理法。" @@ -42785,7 +42766,7 @@ msgid "leverpostej" msgid_plural "leverpostej" msgstr[0] "北歐肝醬" -#. ~ Description for {'str_sp': 'leverpostej'} +#. ~ Description for leverpostej #: lang/json/COMESTIBLE_from_json.py msgid "" "A traditional Danish pate. Probably better if you spread it on some bread." @@ -42981,7 +42962,7 @@ msgid "marloss gelatin" msgid_plural "marloss gelatin" msgstr[0] "馬洛斯果凝膠" -#. ~ Description for {'str_sp': 'marloss gelatin'} +#. ~ Description for marloss gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "This looks like a handful of lemon-colored liquid which has taken a set, " @@ -43007,7 +42988,7 @@ msgid "yeast" msgid_plural "yeast" msgstr[0] "酵母" -#. ~ Description for {'str_sp': 'yeast'} +#. ~ Description for yeast #: lang/json/COMESTIBLE_from_json.py msgid "" "A powder-like mix of cultured yeast, good for baking and brewing alike." @@ -43018,7 +42999,7 @@ msgid "bone meal" msgid_plural "bone meal" msgstr[0] "骨粉" -#. ~ Description for {'str_sp': 'bone meal'} +#. ~ Description for bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This bone meal can be used to craft fertilizer and some other things." msgstr "這些骨粉可以用來製作肥料或者其他東西。" @@ -43028,7 +43009,7 @@ msgid "powdered gelatin" msgid_plural "powdered gelatin" msgstr[0] "" -#. ~ Description for {'str_sp': 'powdered gelatin'} +#. ~ Description for powdered gelatin #: lang/json/COMESTIBLE_from_json.py msgid "" "Dried and powdered gelatin, used as a gelling agent when mixed with water." @@ -43039,7 +43020,7 @@ msgid "fresh gelatin" msgid_plural "fresh gelatin" msgstr[0] "" -#. ~ Description for {'str_sp': 'fresh gelatin'} +#. ~ Description for fresh gelatin #: lang/json/COMESTIBLE_from_json.py msgid "Fresh " msgstr "" @@ -43049,7 +43030,7 @@ msgid "tainted bone meal" msgid_plural "tainted bone meal" msgstr[0] "污染的骨粉" -#. ~ Description for {'str_sp': 'tainted bone meal'} +#. ~ Description for tainted bone meal #: lang/json/COMESTIBLE_from_json.py msgid "This is a grayish bone meal made from rotten bones." msgstr "灰色的骨粉, 來自腐爛的骨頭。" @@ -43059,7 +43040,7 @@ msgid "chitin powder" msgid_plural "chitin powder" msgstr[0] "甲殼粉" -#. ~ Description for {'str_sp': 'chitin powder'} +#. ~ Description for chitin powder #: lang/json/COMESTIBLE_from_json.py msgid "" "This chitin powder can be used to craft fertilizer and some other things." @@ -43102,7 +43083,7 @@ msgid "dried beans" msgid_plural "dried beans" msgstr[0] "乾豆子" -#. ~ Description for {'str_sp': 'dried beans'} +#. ~ Description for dried beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated great northern beans. Tasty and nutritious when cooked, " @@ -43114,7 +43095,7 @@ msgid "cooked beans" msgid_plural "cooked beans" msgstr[0] "煮熟的豆子" -#. ~ Description for {'str_sp': 'cooked beans'} +#. ~ Description for cooked beans #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked great northern beans." msgstr "一份豐盛的燉大北豆。" @@ -43124,8 +43105,8 @@ msgid "tofu" msgid_plural "tofu" msgstr[0] "豆腐" -#. ~ Description for {'str_sp': 'tofu'} -#. ~ Description for {'str_sp': 'fried tofu'} +#. ~ Description for tofu +#. ~ Description for fried tofu #: lang/json/COMESTIBLE_from_json.py msgid "" "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very " @@ -43142,7 +43123,7 @@ msgid "dehydrated tofu" msgid_plural "dehydrated tofu" msgstr[0] "脫水豆腐" -#. ~ Description for {'str_sp': 'dehydrated tofu'} +#. ~ Description for dehydrated tofu #: lang/json/COMESTIBLE_from_json.py msgid "Dehydrated tofu, sealed and still extra firm to last a long time." msgstr "脫水豆腐,密封,可以長期保存。" @@ -43152,7 +43133,7 @@ msgid "soybeans" msgid_plural "soybeans" msgstr[0] "黃豆" -#. ~ Description for {'str_sp': 'soybeans'} +#. ~ Description for soybeans #: lang/json/COMESTIBLE_from_json.py msgid "" "Light brown beans, they have many uses, mildly toxic and not recommended, " @@ -43176,7 +43157,7 @@ msgid "dried lentils" msgid_plural "dried lentils" msgstr[0] "乾扁豆" -#. ~ Description for {'str_sp': 'dried lentils'} +#. ~ Description for dried lentils #: lang/json/COMESTIBLE_from_json.py msgid "" "A humble but nutrient-rich legume. Should be cooked prior to consumption." @@ -43187,7 +43168,7 @@ msgid "Foodplace's delicious food™" msgid_plural "Foodplace's delicious food™" msgstr[0] "美食中心美食™" -#. ~ Description for {'str_sp': "Foodplace's delicious food™"} +#. ~ Description for Foodplace's delicious food™ #: lang/json/COMESTIBLE_from_json.py #, no-python-format msgid "" @@ -43200,7 +43181,7 @@ msgid "Foodplace's appropriate snack™" msgid_plural "Foodplace's appropriate snack™" msgstr[0] "美食中心隨口小吃™" -#. ~ Description for {'str_sp': "Foodplace's appropriate snack™"} +#. ~ Description for Foodplace's appropriate snack™ #: lang/json/COMESTIBLE_from_json.py msgid "Real foodstuff now in a pocket size format!" msgstr "" @@ -43210,7 +43191,7 @@ msgid "cooked lentils" msgid_plural "cooked lentils" msgstr[0] "熟扁豆" -#. ~ Description for {'str_sp': 'cooked lentils'} +#. ~ Description for cooked lentils #: lang/json/COMESTIBLE_from_json.py msgid "Some delicious cooked lentils. Humble but nutrient-rich." msgstr "一些美味的煮熟的扁豆。不太有吸引力但營養豐富。" @@ -43220,7 +43201,7 @@ msgid "coffee powder" msgid_plural "coffee powder" msgstr[0] "咖啡粉" -#. ~ Description for {'str_sp': 'coffee powder'} +#. ~ Description for coffee powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Ground coffee beans. You can boil it into a mediocre stimulant, or " @@ -43232,7 +43213,7 @@ msgid "Kentucky coffee grounds" msgid_plural "Kentucky coffee grounds" msgstr[0] "肯塔基州咖啡渣" -#. ~ Description for {'str_sp': 'Kentucky coffee grounds'} +#. ~ Description for Kentucky coffee grounds #: lang/json/COMESTIBLE_from_json.py msgid "" "Coffee grounds created through washing, cleaning, and roasting the pods from" @@ -43244,7 +43225,7 @@ msgid "candied honey" msgid_plural "candied honey" msgstr[0] "結晶蜜" -#. ~ Description for {'str_sp': 'candied honey'} +#. ~ Description for candied honey #: lang/json/COMESTIBLE_from_json.py msgid "" "Honey, that stuff the bees make. This variant is \"candied honey\", a " @@ -43280,7 +43261,7 @@ msgid "cattle fodder" msgid_plural "cattle fodder" msgstr[0] "牛飼料" -#. ~ Description for {'str_sp': 'cattle fodder'} +#. ~ Description for cattle fodder #: lang/json/COMESTIBLE_from_json.py msgid "" "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for" @@ -43292,7 +43273,7 @@ msgid "bird food" msgid_plural "bird food" msgstr[0] "鳥飼料" -#. ~ Description for {'str_sp': 'bird food'} +#. ~ Description for bird food #: lang/json/COMESTIBLE_from_json.py msgid "" "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for " @@ -43304,7 +43285,7 @@ msgid "wet dog food" msgid_plural "wet dog food" msgstr[0] "濕狗食" -#. ~ Description for {'str_sp': 'wet dog food'} +#. ~ Description for wet dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for dogs, made from canned fresh meats. It smells strange," @@ -43316,7 +43297,7 @@ msgid "dry dog food" msgid_plural "dry dog food" msgstr[0] "" -#. ~ Description for {'str_sp': 'dry dog food'} +#. ~ Description for dry dog food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry morsels of dog food with a long shelf life. Made from dried processed " @@ -43328,7 +43309,7 @@ msgid "wet cat food" msgid_plural "wet cat food" msgstr[0] "濕貓食" -#. ~ Description for {'str_sp': 'wet cat food'} +#. ~ Description for wet cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "This is wet food for cats, made from canned fresh meats. It has a pungent " @@ -43340,7 +43321,7 @@ msgid "dry cat food" msgid_plural "dry cat food" msgstr[0] "" -#. ~ Description for {'str_sp': 'dry cat food'} +#. ~ Description for dry cat food #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry kibbles of cat food with a long shelf life. Made from dried processed " @@ -43457,7 +43438,7 @@ msgid "instant coffee mix" msgid_plural "instant coffee mix" msgstr[0] "即溶咖啡" -#. ~ Description for {'str_sp': 'instant coffee mix'} +#. ~ Description for instant coffee mix #: lang/json/COMESTIBLE_from_json.py msgid "" "A small packet of commercial instant coffee powder. No creamer or sweetener" @@ -43493,28 +43474,24 @@ msgid "protein drink" msgid_plural "protein drinks" msgstr[0] "蛋白飲料" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein drink when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green drink" msgid_plural "soylent green drink" msgstr[0] "" -#. ~ Conditional name for {'str': 'protein drink'} when FLAG matches +#. ~ Conditional name for protein drink when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green drink" msgid_plural "sapient green drink" msgstr[0] "智人蛋白飲料" -#. ~ Conditional name for {'str': 'protein drink'} when COMPONENT_ID matches +#. ~ Conditional name for protein drink when COMPONENT_ID matches mutant +#. ~ Conditional name for protein powder when COMPONENT_ID matches mutant +#. ~ Conditional name for protein shake when COMPONENT_ID matches mutant +#. ~ Conditional name for fortified protein shake when COMPONENT_ID matches #. mutant -#. ~ Conditional name for {'str_sp': 'protein powder'} when COMPONENT_ID -#. matches mutant -#. ~ Conditional name for {'str': 'protein shake'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'fortified protein shake'} when COMPONENT_ID -#. matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "perturbing %s" @@ -43533,21 +43510,20 @@ msgid "protein powder" msgid_plural "protein powder" msgstr[0] "蛋白粉" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein powder when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green powder" msgid_plural "soylent green powder" msgstr[0] "人肉蛋白粉" -#. ~ Conditional name for {'str_sp': 'protein powder'} when FLAG matches +#. ~ Conditional name for protein powder when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green powder" msgid_plural "sapient green powder" msgstr[0] "智人蛋白粉" -#. ~ Description for {'str_sp': 'protein powder'} +#. ~ Description for protein powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, refined protein. While quite nutritious, it is impossible to enjoy in " @@ -43578,14 +43554,13 @@ msgid "protein shake" msgid_plural "protein shakes" msgstr[0] "蛋白奶昔" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches -#. CANNIBALISM +#. ~ Conditional name for protein shake when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "soylent green shake" msgid_plural "soylent green shake" msgstr[0] "" -#. ~ Conditional name for {'str': 'protein shake'} when FLAG matches +#. ~ Conditional name for protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "sapient green shake" @@ -43604,14 +43579,14 @@ msgid "fortified protein shake" msgid_plural "fortified protein shakes" msgstr[0] "強化蛋白奶昔" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified soylent green shake" msgid_plural "fortified soylent green shake" msgstr[0] "" -#. ~ Conditional name for {'str': 'fortified protein shake'} when FLAG matches +#. ~ Conditional name for fortified protein shake when FLAG matches #. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "fortified sapient green shake" @@ -43672,7 +43647,7 @@ msgid "blueberries" msgid_plural "blueberries" msgstr[0] "藍莓" -#. ~ Description for {'str_sp': 'blueberries'} +#. ~ Description for blueberries #: lang/json/COMESTIBLE_from_json.py msgid "They're blue, but that doesn't mean they're sad." msgstr "Blue在這指的是藍色, 不是憂鬱的意思。" @@ -43682,7 +43657,7 @@ msgid "strawberries" msgid_plural "strawberries" msgstr[0] "草莓" -#. ~ Description for {'str_sp': 'strawberries'} +#. ~ Description for strawberries #: lang/json/COMESTIBLE_from_json.py msgid "Tasty, juicy berry. Often found growing wild in fields." msgstr "可口多汁的莓子, 通常在野地中生長。" @@ -43692,7 +43667,7 @@ msgid "cranberries" msgid_plural "cranberries" msgstr[0] "蔓越莓" -#. ~ Description for {'str_sp': 'cranberries'} +#. ~ Description for cranberries #: lang/json/COMESTIBLE_from_json.py msgid "Sour red berries. Good for your health." msgstr "酸的紅色莓子。對健康很好。" @@ -43702,7 +43677,7 @@ msgid "raspberries" msgid_plural "raspberries" msgstr[0] "覆盆子" -#. ~ Description for {'str_sp': 'raspberries'} +#. ~ Description for raspberries #: lang/json/COMESTIBLE_from_json.py msgid "A sweet red berry." msgstr "紅色的甜莓果。" @@ -43712,7 +43687,7 @@ msgid "huckleberries" msgid_plural "huckleberries" msgstr[0] "越橘莓" -#. ~ Description for {'str_sp': 'huckleberries'} +#. ~ Description for huckleberries #: lang/json/COMESTIBLE_from_json.py msgid "Huckleberries, often times confused for blueberries." msgstr "越橘莓, 經常被誤認為是藍莓。" @@ -43722,7 +43697,7 @@ msgid "mulberries" msgid_plural "mulberries" msgstr[0] "桑葚" -#. ~ Description for {'str_sp': 'mulberries'} +#. ~ Description for mulberries #: lang/json/COMESTIBLE_from_json.py msgid "" "Mulberries, this red variety is unique to east North America and is " @@ -43734,7 +43709,7 @@ msgid "elderberries" msgid_plural "elderberries" msgstr[0] "接骨木果" -#. ~ Description for {'str_sp': 'elderberries'} +#. ~ Description for elderberries #: lang/json/COMESTIBLE_from_json.py msgid "Elderberries, toxic when eaten raw but great when cooked." msgstr "接骨木果, 生吃時有毒, 煮熟後有益。" @@ -43744,7 +43719,7 @@ msgid "rose hips" msgid_plural "rose hips" msgstr[0] "薔薇果" -#. ~ Description for {'str_sp': 'rose hips'} +#. ~ Description for rose hips #: lang/json/COMESTIBLE_from_json.py msgid "The fruit of a pollinated rose flower." msgstr "這是授粉薔薇花的果實。" @@ -43786,7 +43761,7 @@ msgid "cherries" msgid_plural "cherries" msgstr[0] "櫻桃" -#. ~ Description for {'str_sp': 'cherries'} +#. ~ Description for cherries #: lang/json/COMESTIBLE_from_json.py msgid "A red, sweet fruit that grows in trees." msgstr "紅色甜味, 長在樹上的水果。" @@ -43807,7 +43782,7 @@ msgid "grapes" msgid_plural "grapes" msgstr[0] "葡萄" -#. ~ Description for {'str_sp': 'grapes'} +#. ~ Description for grapes #: lang/json/COMESTIBLE_from_json.py msgid "A cluster of juicy grapes." msgstr "一串多汁的葡萄。" @@ -43867,7 +43842,7 @@ msgid "blackberries" msgid_plural "blackberries" msgstr[0] "黑莓" -#. ~ Description for {'str_sp': 'blackberries'} +#. ~ Description for blackberries #: lang/json/COMESTIBLE_from_json.py msgid "A darker cousin of raspberry." msgstr "覆盆子的較黑近親。" @@ -43918,7 +43893,7 @@ msgid "apricots" msgid_plural "apricots" msgstr[0] "杏子" -#. ~ Description for {'str_sp': 'apricots'} +#. ~ Description for apricots #: lang/json/COMESTIBLE_from_json.py msgid "A smooth-skinned fruit, related to the peach." msgstr "一種果皮光滑的水果, 桃子的近親。" @@ -43955,7 +43930,7 @@ msgid "bee balm" msgid_plural "bee balm" msgstr[0] "管蜂香草" -#. ~ Description for {'str_sp': 'bee balm'} +#. ~ Description for bee balm #: lang/json/COMESTIBLE_from_json.py msgid "" "A snow-white flower also known as wild bergamot. Smells faintly of mint." @@ -43966,7 +43941,7 @@ msgid "broccoli" msgid_plural "broccoli" msgstr[0] "花椰菜" -#. ~ Description for {'str_sp': 'broccoli'} +#. ~ Description for broccoli #: lang/json/COMESTIBLE_from_json.py msgid "It's a bit tough, but quite delicious." msgstr "有點硬, 但還滿好吃的。" @@ -43976,7 +43951,7 @@ msgid "buckwheat" msgid_plural "buckwheat" msgstr[0] "蕎麥" -#. ~ Description for {'str_sp': 'buckwheat'} +#. ~ Description for buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds from a wild buckwheat plant. Not particularly good to eat in their " @@ -43998,7 +43973,7 @@ msgid "spinach" msgid_plural "spinach" msgstr[0] "菠菜" -#. ~ Description for {'str_sp': 'spinach'} +#. ~ Description for spinach #: lang/json/COMESTIBLE_from_json.py msgid "A bunch of spinach leaves." msgstr "一束菠菜葉。" @@ -44043,7 +44018,7 @@ msgid "celery" msgid_plural "celery" msgstr[0] "芹菜" -#. ~ Description for {'str_sp': 'celery'} +#. ~ Description for celery #: lang/json/COMESTIBLE_from_json.py msgid "Neither tasty nor very nutritious, but it goes well with salad." msgstr "既不好吃也說不上非常營養,但是適合做沙拉。" @@ -44065,7 +44040,7 @@ msgid "corn kernels" msgid_plural "corn kernels" msgstr[0] "" -#. ~ Description for {'str_sp': 'corn kernels'} +#. ~ Description for corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "Delicious golden kernels." msgstr "美味的黃金蔬菜。" @@ -44075,7 +44050,7 @@ msgid "empty corn cob" msgid_plural "empty corn cob" msgstr[0] "" -#. ~ Description for {'str_sp': 'empty corn cob'} +#. ~ Description for empty corn cob #: lang/json/COMESTIBLE_from_json.py msgid "" "An empty corn cob. It may seem useless, but it can be used to make stock, a" @@ -44131,7 +44106,7 @@ msgid "salsify" msgid_plural "salsify" msgstr[0] "婆羅門參" -#. ~ Description for {'str_sp': 'salsify'} +#. ~ Description for salsify #: lang/json/COMESTIBLE_from_json.py msgid "" "An herb with a small purple flower. The roots are nutritious, but tough and" @@ -44144,7 +44119,7 @@ msgid "chicory" msgid_plural "chicory" msgstr[0] "菊苣" -#. ~ Description for {'str_sp': 'chicory'} +#. ~ Description for chicory #: lang/json/COMESTIBLE_from_json.py msgid "" "A modest blue flower. The flower's roots are very bitter and not meant to " @@ -44257,7 +44232,7 @@ msgid "raw popcorn" msgid_plural "raw popcorn" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw popcorn'} +#. ~ Description for raw popcorn #: lang/json/COMESTIBLE_from_json.py msgid "" "A special variety of corn which could be used for making popcorn, after it's" @@ -44291,7 +44266,7 @@ msgid "horseradish greens" msgid_plural "horseradish greens" msgstr[0] "辣根葉子" -#. ~ Description for {'str_sp': 'horseradish greens'} +#. ~ Description for horseradish greens #: lang/json/COMESTIBLE_from_json.py msgid "" "Leaves of a horseradish plant with a sharp, bitter and peppery taste. " @@ -44303,7 +44278,7 @@ msgid "dandelions" msgid_plural "dandelions" msgstr[0] "蒲公英" -#. ~ Description for {'str_sp': 'dandelions'} +#. ~ Description for dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "A collection of freshly picked yellow dandelions. In their current raw " @@ -44315,7 +44290,7 @@ msgid "burdocks" msgid_plural "burdocks" msgstr[0] "牛蒡" -#. ~ Description for {'str_sp': 'burdocks'} +#. ~ Description for burdocks #: lang/json/COMESTIBLE_from_json.py msgid "Burdock, a bitter thistle-like vegetable. Can be eaten raw or cooked." msgstr "牛蒡,一種像是苦薊的植物。能夠生吃或先煮過。" @@ -44405,7 +44380,7 @@ msgid "wild vegetables" msgid_plural "wild vegetables" msgstr[0] "野菜" -#. ~ Description for {'str_sp': 'wild vegetables'} +#. ~ Description for wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "" "An assortment of edible-looking wild plants. Most are quite bitter-tasting." @@ -44437,7 +44412,7 @@ msgid "raw beans" msgid_plural "raw beans" msgstr[0] "生豆子" -#. ~ Description for {'str_sp': 'raw beans'} +#. ~ Description for raw beans #: lang/json/COMESTIBLE_from_json.py msgid "" "Raw, uncooked beans. They are mildly toxic in this form, but you could cook" @@ -44449,7 +44424,7 @@ msgid "raw lentils" msgid_plural "raw lentils" msgstr[0] "生扁豆" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils. They could be cooked." msgstr "生扁豆。可以煮熟。" @@ -44459,7 +44434,7 @@ msgid "fiddleheads" msgid_plural "fiddleheads" msgstr[0] "蕨類嫩芽" -#. ~ Description for {'str_sp': 'fiddleheads'} +#. ~ Description for fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of immature fern fronds, still curled up like the head of a " @@ -44493,8 +44468,7 @@ msgid "deluxe sandwich" msgid_plural "deluxe sandwiches" msgstr[0] "豪華三明治" -#. ~ Conditional name for {'str': 'deluxe sandwich', 'str_pl': 'deluxe -#. sandwiches'} when COMPONENT_ID matches mutant +#. ~ Conditional name for deluxe sandwich when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "\"deluxe\" sandwich" msgid_plural "\"deluxe\" sandwiches" @@ -44507,6 +44481,25 @@ msgid "" "nutritious!" msgstr "一份夾著肉、蔬菜、起司配上調味料的三明治。美味又營養!" +#: lang/json/COMESTIBLE_from_json.py +msgid "reuben sandwich" +msgid_plural "reuben sandwiches" +msgstr[0] "" + +#. ~ Conditional name for reuben sandwich when COMPONENT_ID matches mutant +#: lang/json/COMESTIBLE_from_json.py +msgid "\"fauxben\" sandwich" +msgid_plural "\"fauxben\" sandwiches" +msgstr[0] "" + +#. ~ Description for reuben sandwich +#: lang/json/COMESTIBLE_from_json.py +msgid "" +"A pre-cataclysm classic probably made with significant substitions. Key " +"components are the special sauce and sauerkraut, with bread, meat, and " +"cheese fried in a pan." +msgstr "" + #: lang/json/COMESTIBLE_from_json.py msgid "cucumber sandwich" msgid_plural "cucumber sandwiches" @@ -44562,7 +44555,7 @@ msgid "fairy bread" msgid_plural "fairy bread" msgstr[0] "仙女麵包" -#. ~ Description for {'str_sp': 'fairy bread'} +#. ~ Description for fairy bread #: lang/json/COMESTIBLE_from_json.py msgid "" "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-" @@ -44606,24 +44599,21 @@ msgid "meat sandwich" msgid_plural "meat sandwiches" msgstr[0] "肉三明治" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat sandwich when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "slob sandwich" msgid_plural "slob sandwiches" msgstr[0] "人肉三明治" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when FLAG matches STRICT_HUMANITARIANISM +#. ~ Conditional name for meat sandwich when FLAG matches +#. STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "satyr sandwich" msgid_plural "satyr sandwiches" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat sandwich', 'str_pl': 'meat -#. sandwiches'} when COMPONENT_ID matches mutant -#. ~ Conditional name for {'str': 'meat soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for meat sandwich when COMPONENT_ID matches mutant +#. ~ Conditional name for meat soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "mutant %s" @@ -44728,7 +44718,7 @@ msgid "mushroom spores" msgid_plural "mushroom spores" msgstr[0] "蘑菇孢子" -#. ~ Description for {'str_sp': 'mushroom spores'} +#. ~ Description for mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some mushroom spores." msgstr "一些蘑菇孢子。" @@ -44738,7 +44728,7 @@ msgid "hop rhizomes" msgid_plural "hop rhizomes" msgstr[0] "啤酒花根莖" -#. ~ Description for {'str_sp': 'hop rhizomes'} +#. ~ Description for hop rhizomes #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a hop plant, for growing your own." msgstr "啤酒花的根莖, 用來種植你的啤酒花。" @@ -44752,7 +44742,7 @@ msgid "blackberry seeds" msgid_plural "blackberry seeds" msgstr[0] "黑莓種子" -#. ~ Description for {'str_sp': 'blackberry seeds'} +#. ~ Description for blackberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blackberry seeds." msgstr "一些黑莓的種子。" @@ -44766,7 +44756,7 @@ msgid "blueberry seeds" msgid_plural "blueberry seeds" msgstr[0] "藍莓種子" -#. ~ Description for {'str_sp': 'blueberry seeds'} +#. ~ Description for blueberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some blueberry seeds." msgstr "一些藍莓的種子。" @@ -44780,7 +44770,7 @@ msgid "cranberry seeds" msgid_plural "cranberry seeds" msgstr[0] "蔓越莓種子" -#. ~ Description for {'str_sp': 'cranberry seeds'} +#. ~ Description for cranberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cranberry seeds." msgstr "一些蔓越莓的種子。" @@ -44794,7 +44784,7 @@ msgid "huckleberry seeds" msgid_plural "huckleberry seeds" msgstr[0] "越橘莓種子" -#. ~ Description for {'str_sp': 'huckleberry seeds'} +#. ~ Description for huckleberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some huckleberry seeds." msgstr "一些越橘莓種子。" @@ -44808,7 +44798,7 @@ msgid "mulberry seeds" msgid_plural "mulberry seeds" msgstr[0] "桑葚種子" -#. ~ Description for {'str_sp': 'mulberry seeds'} +#. ~ Description for mulberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mulberry seeds." msgstr "一些桑葚種子。" @@ -44822,7 +44812,7 @@ msgid "elderberry seeds" msgid_plural "elderberry seeds" msgstr[0] "接骨木種子" -#. ~ Description for {'str_sp': 'elderberry seeds'} +#. ~ Description for elderberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some elderberry seeds." msgstr "一些接骨木種子。" @@ -44836,7 +44826,7 @@ msgid "raspberry seeds" msgid_plural "raspberry seeds" msgstr[0] "覆盆子種子" -#. ~ Description for {'str_sp': 'raspberry seeds'} +#. ~ Description for raspberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raspberry seeds." msgstr "一些覆盆子的種子。" @@ -44850,7 +44840,7 @@ msgid "strawberry seeds" msgid_plural "strawberry seeds" msgstr[0] "草莓種子" -#. ~ Description for {'str_sp': 'strawberry seeds'} +#. ~ Description for strawberry seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some strawberry seeds." msgstr "一些草莓的種子。" @@ -44864,7 +44854,7 @@ msgid "grape seeds" msgid_plural "grape seeds" msgstr[0] "葡萄種子" -#. ~ Description for {'str_sp': 'grape seeds'} +#. ~ Description for grape seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some grape seeds." msgstr "一些葡萄種子。" @@ -44878,7 +44868,7 @@ msgid "rose seeds" msgid_plural "rose seeds" msgstr[0] "薔薇種子" -#. ~ Description for {'str_sp': 'rose seeds'} +#. ~ Description for rose seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some rose seeds." msgstr "一些薔薇種子。" @@ -44892,7 +44882,7 @@ msgid "tobacco seeds" msgid_plural "tobacco seeds" msgstr[0] "菸草種子" -#. ~ Description for {'str_sp': 'tobacco seeds'} +#. ~ Description for tobacco seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tobacco seeds." msgstr "一些菸草種子。" @@ -44906,7 +44896,7 @@ msgid "barley seeds" msgid_plural "barley seeds" msgstr[0] "大麥種子" -#. ~ Description for {'str_sp': 'barley seeds'} +#. ~ Description for barley seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some barley seeds." msgstr "一些大麥籽。" @@ -44916,7 +44906,7 @@ msgid "sugar beet seeds" msgid_plural "sugar beet seeds" msgstr[0] "甜菜種子" -#. ~ Description for {'str_sp': 'sugar beet seeds'} +#. ~ Description for sugar beet seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some sugar beet seeds." msgstr "一些甜菜籽。" @@ -44926,7 +44916,7 @@ msgid "lettuce seeds" msgid_plural "lettuce seeds" msgstr[0] "萵苣種子" -#. ~ Description for {'str_sp': 'lettuce seeds'} +#. ~ Description for lettuce seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some lettuce seeds." msgstr "一些萵苣種子。" @@ -44936,7 +44926,7 @@ msgid "cabbage seeds" msgid_plural "cabbage seeds" msgstr[0] "捲心菜種子" -#. ~ Description for {'str_sp': 'cabbage seeds'} +#. ~ Description for cabbage seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some white cabbage seeds." msgstr "一些白色捲心菜的種子。" @@ -44946,7 +44936,7 @@ msgid "tomato seeds" msgid_plural "tomato seeds" msgstr[0] "番茄種子" -#. ~ Description for {'str_sp': 'tomato seeds'} +#. ~ Description for tomato seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some tomato seeds." msgstr "一些番茄種子。" @@ -44956,7 +44946,7 @@ msgid "cotton seeds" msgid_plural "cotton seeds" msgstr[0] "棉花種子" -#. ~ Description for {'str_sp': 'cotton seeds'} +#. ~ Description for cotton seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cotton seeds. Can be processed to produce an edible oil." msgstr "一些棉籽。經過處理後可以產生食用油。" @@ -44970,7 +44960,7 @@ msgid "broccoli seeds" msgid_plural "broccoli seeds" msgstr[0] "花椰菜種子" -#. ~ Description for {'str_sp': 'broccoli seeds'} +#. ~ Description for broccoli seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some broccoli seeds." msgstr "一些花椰菜種子。" @@ -44980,7 +44970,7 @@ msgid "zucchini seeds" msgid_plural "zucchini seeds" msgstr[0] "西葫蘆種子" -#. ~ Description for {'str_sp': 'zucchini seeds'} +#. ~ Description for zucchini seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some zucchini seeds." msgstr "一些西葫蘆種子。" @@ -44990,7 +44980,7 @@ msgid "onion seeds" msgid_plural "onion seeds" msgstr[0] "洋蔥種子" -#. ~ Description for {'str_sp': 'onion seeds'} +#. ~ Description for onion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some onion seeds." msgstr "一些洋蔥種子。" @@ -45000,7 +44990,7 @@ msgid "garlic seeds" msgid_plural "garlic seeds" msgstr[0] "大蒜種子" -#. ~ Description for {'str_sp': 'garlic seeds'} +#. ~ Description for garlic seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some garlic seeds." msgstr "一些大蒜種子。" @@ -45014,7 +45004,7 @@ msgid "cattail seeds" msgid_plural "cattail seeds" msgstr[0] "香蒲種子" -#. ~ Description for {'str_sp': 'cattail seeds'} +#. ~ Description for cattail seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cattail seeds." msgstr "一些香蒲的種子。" @@ -45028,7 +45018,7 @@ msgid "dahlia seeds" msgid_plural "dahlia seeds" msgstr[0] "大麗菊種子" -#. ~ Description for {'str_sp': 'dahlia seeds'} +#. ~ Description for dahlia seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dahlia seeds." msgstr "一些大麗菊的種子。" @@ -45042,7 +45032,7 @@ msgid "salsify seeds" msgid_plural "salsify seeds" msgstr[0] "婆羅門參種子" -#. ~ Description for {'str_sp': 'salsify seeds'} +#. ~ Description for salsify seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some salsify seeds." msgstr "一些婆羅門參種子。" @@ -45052,7 +45042,7 @@ msgid "chicory seeds" msgid_plural "chicory seeds" msgstr[0] "菊苣種子" -#. ~ Description for {'str_sp': 'chicory seeds'} +#. ~ Description for chicory seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chicory seeds." msgstr "一些菊苣種子。" @@ -45062,7 +45052,7 @@ msgid "wild root seeds" msgid_plural "wild root seeds" msgstr[0] "野根種子" -#. ~ Description for {'str_sp': 'wild root seeds'} +#. ~ Description for wild root seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds from a white flower." msgstr "一些從小白花取得的種子。" @@ -45072,7 +45062,7 @@ msgid "decorative plant seeds" msgid_plural "decorative plant seeds" msgstr[0] "裝飾植物種子" -#. ~ Description for {'str_sp': 'decorative plant seeds'} +#. ~ Description for decorative plant seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some small decorative plant seeds, likely grass or flower. Don't expect " @@ -45088,7 +45078,7 @@ msgid "cactus seeds" msgid_plural "cactus seeds" msgstr[0] "仙人掌種子" -#. ~ Description for {'str_sp': 'cactus seeds'} +#. ~ Description for cactus seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cactus seeds." msgstr "一些仙人掌種子。" @@ -45112,7 +45102,7 @@ msgid "carrot seeds" msgid_plural "carrot seeds" msgstr[0] "胡蘿蔔種子" -#. ~ Description for {'str_sp': 'carrot seeds'} +#. ~ Description for carrot seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some carrot seeds." msgstr "一些胡蘿蔔種子。" @@ -45122,7 +45112,7 @@ msgid "corn seeds" msgid_plural "corn seeds" msgstr[0] "玉米種子" -#. ~ Description for {'str_sp': 'corn seeds'} +#. ~ Description for corn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some corn seeds." msgstr "一些玉米種子。" @@ -45136,7 +45126,7 @@ msgid "chili pepper seeds" msgid_plural "chili pepper seeds" msgstr[0] "辣椒種子" -#. ~ Description for {'str_sp': 'chili pepper seeds'} +#. ~ Description for chili pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chili pepper seeds." msgstr "一些辣椒種子。" @@ -45146,7 +45136,7 @@ msgid "cucumber seeds" msgid_plural "cucumber seeds" msgstr[0] "黃瓜種子" -#. ~ Description for {'str_sp': 'cucumber seeds'} +#. ~ Description for cucumber seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some cucumber seeds." msgstr "一些黃瓜種子。" @@ -45170,7 +45160,7 @@ msgid "cannabis seeds" msgid_plural "cannabis seeds" msgstr[0] "大麻種子" -#. ~ Description for {'str_sp': 'cannabis seeds'} +#. ~ Description for cannabis seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Seeds of the cannabis plant. Filled with vitamins, they can be roasted or " @@ -45199,7 +45189,7 @@ msgid "bean seeds" msgid_plural "bean seeds" msgstr[0] "豆類種子" -#. ~ Description for {'str_sp': 'bean seeds'} +#. ~ Description for bean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked beans, ready for planting." msgstr "生扁豆。可以用於種植。" @@ -45213,7 +45203,7 @@ msgid "soybean seeds" msgid_plural "soybean seeds" msgstr[0] "黃豆種子" -#. ~ Description for {'str_sp': 'soybean seeds'} +#. ~ Description for soybean seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some soybean seeds." msgstr "一些黃豆種子。" @@ -45222,7 +45212,7 @@ msgstr "一些黃豆種子。" msgid "soybean" msgstr "黃豆" -#. ~ Description for {'str_sp': 'raw lentils'} +#. ~ Description for raw lentils #: lang/json/COMESTIBLE_from_json.py msgid "Raw, uncooked lentils, ready for planting." msgstr "生扁豆。可以用於種植。" @@ -45236,7 +45226,7 @@ msgid "thyme seeds" msgid_plural "thyme seeds" msgstr[0] "麝香草種子" -#. ~ Description for {'str_sp': 'thyme seeds'} +#. ~ Description for thyme seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some thyme seeds." msgstr "一些麝香草的種子。" @@ -45251,7 +45241,7 @@ msgid "canola seeds" msgid_plural "canola seeds" msgstr[0] "油菜籽" -#. ~ Description for {'str_sp': 'canola seeds'} +#. ~ Description for canola seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some canola seeds. You could press them into oil." msgstr "一些油菜籽。你可以拿它來搾油。" @@ -45261,7 +45251,7 @@ msgid "pumpkin seeds" msgid_plural "pumpkin seeds" msgstr[0] "南瓜種子" -#. ~ Description for {'str_sp': 'pumpkin seeds'} +#. ~ Description for pumpkin seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw pumpkin seeds. Could be fried and eaten." msgstr "一些生南瓜籽。可以油炸食用。" @@ -45271,7 +45261,7 @@ msgid "sunflower seeds" msgid_plural "sunflower seeds" msgstr[0] "向日葵種子" -#. ~ Description for {'str_sp': 'sunflower seeds'} +#. ~ Description for sunflower seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some raw sunflower seeds. Could be pressed into oil." msgstr "一些向日葵種子。可以搾出油。" @@ -45287,7 +45277,7 @@ msgid "dogbane seeds" msgid_plural "dogbane seeds" msgstr[0] "毒狗草種子" -#. ~ Description for {'str_sp': 'dogbane seeds'} +#. ~ Description for dogbane seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dogbane seeds." msgstr "一些毒狗草的種子。" @@ -45297,7 +45287,7 @@ msgid "bee balm seeds" msgid_plural "bee balm seeds" msgstr[0] "管蜂香草種子" -#. ~ Description for {'str_sp': 'bee balm seeds'} +#. ~ Description for bee balm seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bee balm seeds." msgstr "一些管蜂香草的種子。" @@ -45307,7 +45297,7 @@ msgid "mugwort seeds" msgid_plural "mugwort seeds" msgstr[0] "艾草種子" -#. ~ Description for {'str_sp': 'mugwort seeds'} +#. ~ Description for mugwort seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mugwort seeds." msgstr "一些艾草的種子。" @@ -45317,7 +45307,7 @@ msgid "buckwheat seeds" msgid_plural "buckwheat seeds" msgstr[0] "蕎麥種子" -#. ~ Description for {'str_sp': 'buckwheat seeds'} +#. ~ Description for buckwheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some buckwheat seeds." msgstr "一些蕎麥的種子。" @@ -45327,7 +45317,7 @@ msgid "wild herb seeds" msgid_plural "wild herb seeds" msgstr[0] "野生草藥種子" -#. ~ Description for {'str_sp': 'wild herb seeds'} +#. ~ Description for wild herb seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some seeds harvested from wild herbs." msgstr "一些從野生草藥取得的種子。" @@ -45341,7 +45331,7 @@ msgid "wild vegetable stems" msgid_plural "wild vegetable stems" msgstr[0] "野菜莖" -#. ~ Description for {'str_sp': 'wild vegetable stems'} +#. ~ Description for wild vegetable stems #: lang/json/COMESTIBLE_from_json.py msgid "Some wild vegetable stems." msgstr "一些野菜的莖。" @@ -45355,7 +45345,7 @@ msgid "dandelion seeds" msgid_plural "dandelion seeds" msgstr[0] "蒲公英籽" -#. ~ Description for {'str_sp': 'dandelion seeds'} +#. ~ Description for dandelion seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some dandelion seeds." msgstr "一些蒲公英的種子。" @@ -45369,7 +45359,7 @@ msgid "burdock seeds" msgid_plural "burdock seeds" msgstr[0] "牛蒡種子" -#. ~ Description for {'str_sp': 'burdock seeds'} +#. ~ Description for burdock seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some burdock seeds." msgstr "一些牛蒡種子。" @@ -45383,7 +45373,7 @@ msgid "rhubarb stems" msgid_plural "rhubarb stems" msgstr[0] "大黃的莖" -#. ~ Description for {'str_sp': 'rhubarb stems'} +#. ~ Description for rhubarb stems #: lang/json/COMESTIBLE_from_json.py msgid "Some rhubarb stems." msgstr "一些大黃的莖。" @@ -45393,7 +45383,7 @@ msgid "morel mushroom spores" msgid_plural "morel mushroom spores" msgstr[0] "羊肚菌孢子" -#. ~ Description for {'str_sp': 'morel mushroom spores'} +#. ~ Description for morel mushroom spores #: lang/json/COMESTIBLE_from_json.py msgid "Some morel mushroom spores." msgstr "一些羊肚菌孢子。" @@ -45403,7 +45393,7 @@ msgid "datura seeds" msgid_plural "datura seeds" msgstr[0] "曼陀羅花種子" -#. ~ Description for {'str_sp': 'datura seeds'} +#. ~ Description for datura seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Small, dark seeds from the spiny pods of a datura plant. Full of powerful " @@ -45420,7 +45410,7 @@ msgid "celery seeds" msgid_plural "celery seeds" msgstr[0] "芹菜種子" -#. ~ Description for {'str_sp': 'celery seeds'} +#. ~ Description for celery seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some celery seeds." msgstr "一些芹菜種子。" @@ -45430,7 +45420,7 @@ msgid "oat seeds" msgid_plural "oat seeds" msgstr[0] "燕麥種子" -#. ~ Description for {'str_sp': 'oat seeds'} +#. ~ Description for oat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some oat seeds." msgstr "一些燕麥種子。" @@ -45445,7 +45435,7 @@ msgid "wheat seeds" msgid_plural "wheat seeds" msgstr[0] "小麥種子" -#. ~ Description for {'str_sp': 'wheat seeds'} +#. ~ Description for wheat seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some wheat seeds." msgstr "一些小麥種子。" @@ -45460,7 +45450,7 @@ msgid "fried seeds" msgid_plural "fried seeds" msgstr[0] "炒過的種子" -#. ~ Description for {'str_sp': 'fried seeds'} +#. ~ Description for fried seeds #: lang/json/COMESTIBLE_from_json.py msgid "" "Some fried seeds of a sunflower, pumpkin or other plant. Quite nutritious " @@ -45484,7 +45474,7 @@ msgid "coffee beans" msgid_plural "coffee beans" msgstr[0] "生咖啡豆" -#. ~ Description for {'str_sp': 'coffee beans'} +#. ~ Description for coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some coffee beans, can be roasted." msgstr "一些生咖啡豆, 可以拿去烘烤。" @@ -45494,7 +45484,7 @@ msgid "roasted coffee beans" msgid_plural "roasted coffee beans" msgstr[0] "烘烤咖啡豆" -#. ~ Description for {'str_sp': 'roasted coffee beans'} +#. ~ Description for roasted coffee beans #: lang/json/COMESTIBLE_from_json.py msgid "Some roasted coffee beans, can be ground into powder." msgstr "一些烘烤咖啡豆, 可以研磨成粉末。" @@ -45504,7 +45494,7 @@ msgid "chamomile seeds" msgid_plural "chamomile seeds" msgstr[0] "洋甘菊種子" -#. ~ Description for {'str_sp': 'chamomile seeds'} +#. ~ Description for chamomile seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some chamomile seeds." msgstr "一些洋甘菊種子。" @@ -45518,7 +45508,7 @@ msgid "spurge seeds" msgid_plural "spurge seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'spurge seeds'} +#. ~ Description for spurge seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some spurge seeds." msgstr "一些大戟花種子。" @@ -45532,7 +45522,7 @@ msgid "popcorn seeds" msgid_plural "popcorn seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'popcorn seeds'} +#. ~ Description for popcorn seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some popcorn seeds." msgstr "一些爆米花玉米種子。" @@ -45542,7 +45532,7 @@ msgid "horseradish seeds" msgid_plural "horseradish seeds" msgstr[0] "辣根種子" -#. ~ Description for {'str_sp': 'horseradish seeds'} +#. ~ Description for horseradish seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some horseradish seeds." msgstr "一些辣根種子" @@ -45552,7 +45542,7 @@ msgid "mustard seeds" msgid_plural "mustard seeds" msgstr[0] "芥菜籽" -#. ~ Description for {'str_sp': 'mustard seeds'} +#. ~ Description for mustard seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some mustard seeds. Could be ground into mustard powder." msgstr "一些芥末籽。可以磨成芥末籽粉。" @@ -45562,7 +45552,7 @@ msgid "bell pepper seeds" msgid_plural "bell pepper seeds" msgstr[0] "甜椒種子" -#. ~ Description for {'str_sp': 'bell pepper seeds'} +#. ~ Description for bell pepper seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some bell pepper seeds." msgstr "一些甜椒種子。" @@ -45582,8 +45572,7 @@ msgid "bone broth" msgid_plural "bone broths" msgstr[0] "博多大骨湯" -#. ~ Conditional name for {'str': 'bone broth'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for bone broth when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py #, python-format msgid "demihuman %s" @@ -45610,14 +45599,13 @@ msgid "meat soup" msgid_plural "meat soups" msgstr[0] "肉湯" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches CANNIBALISM +#. ~ Conditional name for meat soup when FLAG matches CANNIBALISM #: lang/json/COMESTIBLE_from_json.py msgid "sap soup" msgid_plural "sap soup" msgstr[0] "" -#. ~ Conditional name for {'str': 'meat soup'} when FLAG matches -#. STRICT_HUMANITARIANISM +#. ~ Conditional name for meat soup when FLAG matches STRICT_HUMANITARIANISM #: lang/json/COMESTIBLE_from_json.py msgid "goblin soup" msgid_plural "goblin soup" @@ -45653,8 +45641,7 @@ msgid "curry with meat" msgid_plural "curries with meat" msgstr[0] "咖喱燉肉" -#. ~ Conditional name for {'str': 'curry with meat', 'str_pl': 'curries with -#. meat'} when COMPONENT_ID matches mutant +#. ~ Conditional name for curry with meat when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "creature curry" msgid_plural "creature curries" @@ -45670,10 +45657,8 @@ msgid "woods meat soup" msgid_plural "woods meat soups" msgstr[0] "" -#. ~ Conditional name for {'str': 'woods meat soup'} when COMPONENT_ID matches -#. mutant -#. ~ Conditional name for {'str': 'woods egg soup'} when COMPONENT_ID matches -#. mutant +#. ~ Conditional name for woods meat soup when COMPONENT_ID matches mutant +#. ~ Conditional name for woods egg soup when COMPONENT_ID matches mutant #: lang/json/COMESTIBLE_from_json.py msgid "Mirkwood soup" msgid_plural "Mirkwood soups" @@ -45729,7 +45714,7 @@ msgid "chicken and dumplings" msgid_plural "chicken and dumplings" msgstr[0] "雞肉餛飩湯" -#. ~ Description for {'str_sp': 'chicken and dumplings'} +#. ~ Description for chicken and dumplings #: lang/json/COMESTIBLE_from_json.py msgid "A soup with chicken chunks and balls of dough. Not bad." msgstr "罐裝雞湯, 裡面還有雞丁和小麵糰。味道還可以。" @@ -45751,7 +45736,7 @@ msgid "chili powder" msgid_plural "chili powder" msgstr[0] "辣椒粉" -#. ~ Description for {'str_sp': 'chili powder'} +#. ~ Description for chili powder #: lang/json/COMESTIBLE_from_json.py msgid "" "Chilly P, Yo! Not edible on its own, but it could be used to make " @@ -45763,7 +45748,7 @@ msgid "hot sauce" msgid_plural "hot sauce" msgstr[0] "辣醬" -#. ~ Description for {'str_sp': 'hot sauce'} +#. ~ Description for hot sauce #: lang/json/COMESTIBLE_from_json.py msgid "" "Flamin' hot sauce. Bad idea to eat on its own. You should probably wash " @@ -45775,7 +45760,7 @@ msgid "cinnamon" msgid_plural "cinnamon" msgstr[0] "肉桂" -#. ~ Description for {'str_sp': 'cinnamon'} +#. ~ Description for cinnamon #: lang/json/COMESTIBLE_from_json.py msgid "Ground cinnamon bark with a sweet but slightly spicy aroma." msgstr "肉桂皮, 甜美而略帶辛辣香氣。" @@ -45785,7 +45770,7 @@ msgid "curry powder" msgid_plural "curry powder" msgstr[0] "咖哩粉" -#. ~ Description for {'str_sp': 'curry powder'} +#. ~ Description for curry powder #: lang/json/COMESTIBLE_from_json.py msgid "" "A blend of spices meant to be used in some South Asian dishes. Can't be " @@ -45797,7 +45782,7 @@ msgid "black pepper" msgid_plural "black pepper" msgstr[0] "黑胡椒" -#. ~ Description for {'str_sp': 'black pepper'} +#. ~ Description for black pepper #: lang/json/COMESTIBLE_from_json.py msgid "Ground black spice berries with a pungent aroma." msgstr "帶著一股刺鼻香氣的黑色香料。" @@ -45807,7 +45792,7 @@ msgid "salt" msgid_plural "salt" msgstr[0] "鹽" -#. ~ Description for {'str_sp': 'salt'} +#. ~ Description for salt #: lang/json/COMESTIBLE_from_json.py msgid "" "Yuck! You surely wouldn't want to eat this. It's good for preserving meat " @@ -45819,7 +45804,7 @@ msgid "Italian seasoning" msgid_plural "Italian seasoning" msgstr[0] "意大利調味料" -#. ~ Description for {'str_sp': 'Italian seasoning'} +#. ~ Description for Italian seasoning #: lang/json/COMESTIBLE_from_json.py msgid "A fragrant mix of dried oregano, basil, thyme and other spices." msgstr "混合了芬芳的乾牛至, 羅勒, 百里香等香料的調味料。" @@ -45829,7 +45814,7 @@ msgid "seasoned salt" msgid_plural "seasoned salt" msgstr[0] "調味鹽" -#. ~ Description for {'str_sp': 'seasoned salt'} +#. ~ Description for seasoned salt #: lang/json/COMESTIBLE_from_json.py msgid "Salt mixed with a fragrant blend of secret herbs and spices." msgstr "混合著一些神祕香料的鹽。" @@ -45839,7 +45824,7 @@ msgid "sugar" msgid_plural "sugar" msgstr[0] "糖" -#. ~ Description for {'str_sp': 'sugar'} +#. ~ Description for sugar #: lang/json/COMESTIBLE_from_json.py msgid "" "Sweet, sweet sugar. Bad for your teeth and surprisingly not very tasty on " @@ -45851,7 +45836,7 @@ msgid "sprinkles" msgid_plural "sprinkles" msgstr[0] "彩糖" -#. ~ Description for {'str_sp': 'sprinkles'} +#. ~ Description for sprinkles #: lang/json/COMESTIBLE_from_json.py msgid "" "Known as nonpareils, sprinkles, jimmies, sugar strands or 'hundreds-and-" @@ -45865,7 +45850,7 @@ msgid "wild herbs" msgid_plural "wild herbs" msgstr[0] "野生草藥" -#. ~ Description for {'str_sp': 'wild herbs'} +#. ~ Description for wild herbs #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty collection of wild herbs including violet, sassafras, mint, clover, " @@ -45877,7 +45862,7 @@ msgid "soy sauce" msgid_plural "soy sauce" msgstr[0] "醬油" -#. ~ Description for {'str_sp': 'soy sauce'} +#. ~ Description for soy sauce #: lang/json/COMESTIBLE_from_json.py msgid "Salty fermented soybean sauce." msgstr "大豆發酵鹹醬油。" @@ -45892,7 +45877,7 @@ msgid "mustard powder" msgid_plural "mustard powder" msgstr[0] "芥末籽粉" -#. ~ Description for {'str_sp': 'mustard powder'} +#. ~ Description for mustard powder #: lang/json/COMESTIBLE_from_json.py msgid "A fragnant yellow powder. Not edible in this form." msgstr "淡黃色粉末。無法直接食用。" @@ -45938,7 +45923,7 @@ msgid "starch" msgid_plural "starch" msgstr[0] "澱粉" -#. ~ Description for {'str_sp': 'starch'} +#. ~ Description for starch #: lang/json/COMESTIBLE_from_json.py msgid "" "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather " @@ -45950,7 +45935,7 @@ msgid "cooked dandelion greens" msgid_plural "cooked dandelion greens" msgstr[0] "煮熟的蒲公英葉" -#. ~ Description for {'str_sp': 'cooked dandelion greens'} +#. ~ Description for cooked dandelion greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked leaves from wild dandelions. Tasty and nutritious." msgstr "煮熟的野生蒲公英葉。美味又營養。" @@ -45960,7 +45945,7 @@ msgid "fried dandelions" msgid_plural "fried dandelions" msgstr[0] "油炸蒲公英" -#. ~ Description for {'str_sp': 'fried dandelions'} +#. ~ Description for fried dandelions #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild dandelion flowers that have been pan fried. Very tasty and nutritious." @@ -45971,7 +45956,7 @@ msgid "cooked burdock greens" msgid_plural "cooked burdock greens" msgstr[0] "煮熟的牛蒡葉" -#. ~ Description for {'str_sp': 'cooked burdock greens'} +#. ~ Description for cooked burdock greens #: lang/json/COMESTIBLE_from_json.py msgid "Cooked burdock leaves. Tasty and nutritious." msgstr "煮熟的牛蒡葉。美味又營養。" @@ -45981,7 +45966,7 @@ msgid "fried burdocks" msgid_plural "fried burdocks" msgstr[0] "炸牛蒡" -#. ~ Description for {'str_sp': 'fried burdocks'} +#. ~ Description for fried burdocks #: lang/json/COMESTIBLE_from_json.py msgid "" "Wild burdocks that have been battered and deep-fried. Very tasty and " @@ -46015,7 +46000,7 @@ msgid "cooked wild vegetables" msgid_plural "cooked wild vegetables" msgstr[0] "煮熟的野菜" -#. ~ Description for {'str_sp': 'cooked wild vegetables'} +#. ~ Description for cooked wild vegetables #: lang/json/COMESTIBLE_from_json.py msgid "Cooked wild edible plants. An interesting mix of flavors." msgstr "由可食野菜燉煮, 具有特殊風味。" @@ -46036,7 +46021,7 @@ msgid "cooked buckwheat" msgid_plural "cooked buckwheat" msgstr[0] "煮熟的蕎麥" -#. ~ Description for {'str_sp': 'cooked buckwheat'} +#. ~ Description for cooked buckwheat #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of cooked buckwheat groats. Healthy and nutritious but bland." @@ -46047,7 +46032,7 @@ msgid "canned corn" msgid_plural "canned corn" msgstr[0] "玉米罐頭" -#. ~ Description for {'str_sp': 'canned corn'} +#. ~ Description for canned corn #: lang/json/COMESTIBLE_from_json.py msgid "Canned corn in water. Eat up!" msgstr "罐頭裝的浸漬玉米。吃吧!" @@ -46057,7 +46042,7 @@ msgid "corn on the cob" msgid_plural "corn on the cob" msgstr[0] "" -#. ~ Description for {'str_sp': 'corn on the cob'} +#. ~ Description for corn on the cob #: lang/json/COMESTIBLE_from_json.py msgid "An ear of corn cooked in foil." msgstr "" @@ -46067,7 +46052,7 @@ msgid "pan roasted corn" msgid_plural "pan roasted corn" msgstr[0] "" -#. ~ Description for {'str_sp': 'pan roasted corn'} +#. ~ Description for pan roasted corn #: lang/json/COMESTIBLE_from_json.py msgid "Corn roasted in a frying pan with herbs and spices." msgstr "" @@ -46077,7 +46062,7 @@ msgid "hominy" msgid_plural "hominy" msgstr[0] "" -#. ~ Description for {'str_sp': 'hominy'} +#. ~ Description for hominy #: lang/json/COMESTIBLE_from_json.py msgid "" "Corn kernels which have been cooked in an alkaline solution and then rinsed," @@ -46089,7 +46074,7 @@ msgid "cornmeal" msgid_plural "cornmeal" msgstr[0] "玉米粉" -#. ~ Description for {'str_sp': 'cornmeal'} +#. ~ Description for cornmeal #: lang/json/COMESTIBLE_from_json.py msgid "This yellow cornmeal is useful for baking." msgstr "這個黃色玉米粉在烘焙時很有用。" @@ -46099,7 +46084,7 @@ msgid "vegetarian baked beans" msgid_plural "vegetarian baked beans" msgstr[0] "蔬菜焗豆" -#. ~ Description for {'str_sp': 'vegetarian baked beans'} +#. ~ Description for vegetarian baked beans #: lang/json/COMESTIBLE_from_json.py msgid "Slow-cooked beans with vegetables. Tasty and very filling." msgstr "加上蔬菜的燉豆。好吃又有飽足感。" @@ -46109,7 +46094,7 @@ msgid "dried rice" msgid_plural "dried rice" msgstr[0] "生米" -#. ~ Description for {'str_sp': 'dried rice'} +#. ~ Description for dried rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated long-grain rice. Tasty and nutritious when cooked, virtually " @@ -46121,7 +46106,7 @@ msgid "cooked rice" msgid_plural "cooked rice" msgstr[0] "煮熟的飯" -#. ~ Description for {'str_sp': 'cooked rice'} +#. ~ Description for cooked rice #: lang/json/COMESTIBLE_from_json.py msgid "A hearty serving of cooked long-grain white rice." msgstr "一份豐盛的白長米飯。" @@ -46131,7 +46116,7 @@ msgid "fried rice" msgid_plural "fried rice" msgstr[0] "炒飯" -#. ~ Description for {'str_sp': 'fried rice'} +#. ~ Description for fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious fried rice with vegetables. Tasty and very filling." msgstr "美味的青菜炒飯。好吃又有飽足感。" @@ -46141,7 +46126,7 @@ msgid "beans and rice" msgid_plural "beans and rice" msgstr[0] "豆拌飯" -#. ~ Description for {'str_sp': 'beans and rice'} +#. ~ Description for beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "A serving of beans and rice that has been cooked together. Delicious and " @@ -46153,7 +46138,7 @@ msgid "tofu fried rice" msgid_plural "tofu fried rice" msgstr[0] "豆腐炒飯" -#. ~ Description for {'str_sp': 'tofu fried rice'} +#. ~ Description for tofu fried rice #: lang/json/COMESTIBLE_from_json.py msgid "Delicious tofu fried rice with vegetables. Tasty and very filling." msgstr "美味的豆腐青菜炒飯。非常有飽足感。" @@ -46163,7 +46148,7 @@ msgid "tofu stirfry" msgid_plural "tofu stirfry" msgstr[0] "快炒豆腐" -#. ~ Description for {'str_sp': 'tofu stirfry'} +#. ~ Description for tofu stirfry #: lang/json/COMESTIBLE_from_json.py msgid "" "A tofu stirfry with rice and a sweet bold flavor sure to be on your mind " @@ -46175,7 +46160,7 @@ msgid "deluxe vegetarian beans and rice" msgid_plural "deluxe vegetarian beans and rice" msgstr[0] "豪華什錦飯" -#. ~ Description for {'str_sp': 'deluxe vegetarian beans and rice'} +#. ~ Description for deluxe vegetarian beans and rice #: lang/json/COMESTIBLE_from_json.py msgid "" "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very " @@ -46240,7 +46225,7 @@ msgid "pesto" msgid_plural "pesto" msgstr[0] "香蒜醬" -#. ~ Description for {'str_sp': 'pesto'} +#. ~ Description for pesto #: lang/json/COMESTIBLE_from_json.py msgid "Olive oil, basil, garlic, pine nuts. Simple and delicious." msgstr "橄欖油、羅勒、大蒜、松子。簡單又美味。" @@ -46274,7 +46259,7 @@ msgid "spaghetti al pesto" msgid_plural "spaghetti al pesto" msgstr[0] "蒜香義大利麵" -#. ~ Description for {'str_sp': 'spaghetti al pesto'} +#. ~ Description for spaghetti al pesto #: lang/json/COMESTIBLE_from_json.py msgid "Spaghetti, with a generous helping of pesto on top. Yum!" msgstr "義大利麵, 上面灑滿了美味香蒜, 太迷人了!" @@ -46295,7 +46280,7 @@ msgid "sauerkraut w/ sautee'd onions" msgid_plural "sauerkraut w/ sautee'd onions" msgstr[0] "德國酸菜配炒洋蔥" -#. ~ Description for {'str_sp': "sauerkraut w/ sautee'd onions"} +#. ~ Description for sauerkraut w/ sautee'd onions #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a delicious sautee of lovely diced onions and sauerkraut. The smell" @@ -46331,7 +46316,7 @@ msgid "dehydrated corn kernels" msgid_plural "dehydrated corn kernels" msgstr[0] "" -#. ~ Description for {'str_sp': 'dehydrated corn kernels'} +#. ~ Description for dehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "A handful of dried corn kernels." msgstr "" @@ -46353,7 +46338,7 @@ msgid "rehydrated corn kernels" msgid_plural "rehydrated corn kernels" msgstr[0] "" -#. ~ Description for {'str_sp': 'rehydrated corn kernels'} +#. ~ Description for rehydrated corn kernels #: lang/json/COMESTIBLE_from_json.py msgid "" "Reconstituted corn kernels; much more enjoyable to eat now that they have " @@ -46423,7 +46408,7 @@ msgid "sushi rice" msgid_plural "sushi rice" msgstr[0] "壽司米" -#. ~ Description for {'str_sp': 'sushi rice'} +#. ~ Description for sushi rice #: lang/json/COMESTIBLE_from_json.py msgid "A serving of sticky vinegared rice commonly used in sushi." msgstr "一份常被用在壽司醋飯上的米。" @@ -46433,7 +46418,7 @@ msgid "onigiri" msgid_plural "onigiri" msgstr[0] "飯糰" -#. ~ Description for {'str_sp': 'onigiri'} +#. ~ Description for onigiri #: lang/json/COMESTIBLE_from_json.py msgid "" "A triangular block of tasty sushi rice with a healthy green vegetable folded" @@ -46445,7 +46430,7 @@ msgid "vegetable hosomaki" msgid_plural "vegetable hosomaki" msgstr[0] "蔬菜細捲" -#. ~ Description for {'str_sp': 'vegetable hosomaki'} +#. ~ Description for vegetable hosomaki #: lang/json/COMESTIBLE_from_json.py msgid "" "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a " @@ -46469,7 +46454,7 @@ msgid "sauerkraut" msgid_plural "sauerkraut" msgstr[0] "德國酸菜" -#. ~ Description for {'str_sp': 'sauerkraut'} +#. ~ Description for sauerkraut #: lang/json/COMESTIBLE_from_json.py msgid "" "This crunchy, sour topping made from lettuce or cabbage is perfect for your " @@ -46491,7 +46476,7 @@ msgid "boiled fiddleheads" msgid_plural "boiled fiddleheads" msgstr[0] "煮熟的蕨類嫩芽" -#. ~ Description for {'str_sp': 'boiled fiddleheads'} +#. ~ Description for boiled fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Boiled fiddleheads. Not bad, but would be better sauteed in butter." msgstr "煮熟的蕨類嫩芽,嚐起來還不錯,若能用奶油嫩煎,那味道就更香了。" @@ -46501,7 +46486,7 @@ msgid "sauteed fiddleheads" msgid_plural "sauteed fiddleheads" msgstr[0] "嫩煎蕨類嫩芽" -#. ~ Description for {'str_sp': 'sauteed fiddleheads'} +#. ~ Description for sauteed fiddleheads #: lang/json/COMESTIBLE_from_json.py msgid "Fiddleheads sauteed in fat. Tender and delicious." msgstr "蕨類嫩芽用脂肪嫩煎過。鮮嫩可口。" @@ -46518,7 +46503,7 @@ msgid "" " are removed." msgstr "煮熟的去籽甜椒。種子移除掉之後更享受了。" -#. ~ Description for {'str_sp': 'wheat'} +#. ~ Description for wheat #: lang/json/COMESTIBLE_from_json.py msgid "Raw wheat, not very tasty." msgstr "小麥顆粒, 直接吃這原料不好吃。" @@ -46528,7 +46513,7 @@ msgid "raw spaghetti pasta" msgid_plural "raw spaghetti pasta" msgstr[0] "生義式細麵" -#. ~ Description for {'str_sp': 'raw spaghetti pasta'} +#. ~ Description for raw spaghetti pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A type of pasta usually used when preparing spaghetti. It could be eaten " @@ -46540,7 +46525,7 @@ msgid "raw lasagne pasta" msgid_plural "raw lasagne pasta" msgstr[0] "生義式千層麵" -#. ~ Description for {'str_sp': 'raw lasagne pasta'} +#. ~ Description for raw lasagne pasta #: lang/json/COMESTIBLE_from_json.py msgid "" "A pasta sheet used in making lasagne. It could be eaten raw if you're " @@ -46552,7 +46537,7 @@ msgid "boiled noodles" msgid_plural "boiled noodles" msgstr[0] "水煮的麵條" -#. ~ Description for {'str_sp': 'boiled noodles'} +#. ~ Description for boiled noodles #: lang/json/COMESTIBLE_from_json.py msgid "Fresh wet noodles. Fairly bland, but fills you up." msgstr "新鮮濕潤的麵條。沒有調味, 至少能果腹。" @@ -46562,7 +46547,7 @@ msgid "raw macaroni" msgid_plural "raw macaroni" msgstr[0] "生通心粉" -#. ~ Description for {'str_sp': 'raw macaroni'} +#. ~ Description for raw macaroni #: lang/json/COMESTIBLE_from_json.py msgid "It could be eaten raw if you're desperate, but is much better cooked." msgstr "雖然你很餓的話也可以直接吃, 但煮過後會更好吃些。" @@ -46572,7 +46557,7 @@ msgid "mac & cheese" msgid_plural "mac & cheese" msgstr[0] "起司通心麵" -#. ~ Description for {'str_sp': 'mac & cheese'} +#. ~ Description for mac & cheese #: lang/json/COMESTIBLE_from_json.py msgid "When the cheese starts flowing, Kraft gets your noodle going." msgstr "當起司開始融化時, 美味的通心麵就出現了。" @@ -46582,7 +46567,7 @@ msgid "flour" msgid_plural "flour" msgstr[0] "麵粉" -#. ~ Description for {'str_sp': 'flour'} +#. ~ Description for flour #: lang/json/COMESTIBLE_from_json.py msgid "This enriched white flour is useful for baking." msgstr "這個白色的營養強化麵粉在烘焙時很有用。" @@ -46592,7 +46577,7 @@ msgid "bread flour" msgid_plural "bread flour" msgstr[0] "高筋麵粉" -#. ~ Description for {'str_sp': 'bread flour'} +#. ~ Description for bread flour #: lang/json/COMESTIBLE_from_json.py msgid "" "This white flour is useful for adding more stretch and chew to bread while " @@ -46604,14 +46589,14 @@ msgid "oatmeal" msgid_plural "oatmeal" msgstr[0] "燕麥片" -#. ~ Description for {'str_sp': 'oatmeal'} +#. ~ Description for oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "Dry flakes of flattened grain. Tasty and nutritious when cooked, it also " "doubles as food for horses while dry." msgstr "脫水後的乾扁穀類糧食。當煮熟時美味又營養, 當乾燥時它也能兼作馬飼料。" -#. ~ Description for {'str_sp': 'oats'} +#. ~ Description for oats #: lang/json/COMESTIBLE_from_json.py msgid "Raw oats." msgstr "生燕麥。" @@ -46621,7 +46606,7 @@ msgid "cooked oatmeal" msgid_plural "cooked oatmeal" msgstr[0] "煮熟的燕麥片" -#. ~ Description for {'str_sp': 'cooked oatmeal'} +#. ~ Description for cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has sustained pioneers and" @@ -46633,7 +46618,7 @@ msgid "deluxe cooked oatmeal" msgid_plural "deluxe cooked oatmeal" msgstr[0] "煮熟的豪華燕麥片" -#. ~ Description for {'str_sp': 'deluxe cooked oatmeal'} +#. ~ Description for deluxe cooked oatmeal #: lang/json/COMESTIBLE_from_json.py msgid "" "A filling and nutritious New England classic that has been improved with the" @@ -46712,7 +46697,7 @@ msgid "oyster crackers" msgid_plural "oyster crackers" msgstr[0] "" -#. ~ Description for {'ctxt': 'oyster crackers', 'str_sp': 'oyster crackers'} +#. ~ Description for oyster crackers #: lang/json/COMESTIBLE_from_json.py msgid "" "These bite-sized crackers go well with soups, but will make you thirsty on " @@ -46744,7 +46729,7 @@ msgid "granola" msgid_plural "granola" msgstr[0] "早餐燕麥片" -#. ~ Description for {'str_sp': 'granola'} +#. ~ Description for granola #: lang/json/COMESTIBLE_from_json.py msgid "" "A tasty and nutritious mixture of oats, honey, and other ingredients that " @@ -46766,7 +46751,7 @@ msgid "fast noodles" msgid_plural "fast noodles" msgstr[0] "泡麵" -#. ~ Description for {'str_sp': 'fast noodles'} +#. ~ Description for fast noodles #: lang/json/COMESTIBLE_from_json.py msgid "So-called ramen noodles. Can be eaten raw." msgstr "傳說中的人類最偉大發明。能夠生吃。" @@ -46945,7 +46930,7 @@ msgid "pineapple stem" msgid_plural "pineapple stem" msgstr[0] "鳳梨莖" -#. ~ Description for {'str_sp': 'pineapple stem'} +#. ~ Description for pineapple stem #: lang/json/COMESTIBLE_from_json.py msgid "Roots of a pineapple plant, for growing your own." msgstr "鳳梨的根莖, 用來種植你的鳳梨。" @@ -46955,7 +46940,7 @@ msgid "melon seeds" msgid_plural "melon seeds" msgstr[0] "" -#. ~ Description for {'str_sp': 'melon seeds'} +#. ~ Description for melon seeds #: lang/json/COMESTIBLE_from_json.py msgid "Some melon seeds." msgstr "一些甜瓜種子。" @@ -46965,7 +46950,7 @@ msgid "banana saplings" msgid_plural "banana saplings" msgstr[0] "香蕉樹苗" -#. ~ Description for {'str_sp': 'banana saplings'} +#. ~ Description for banana saplings #: lang/json/COMESTIBLE_from_json.py msgid "Some banana saplings." msgstr "一些香蕉樹苗。" @@ -46975,7 +46960,7 @@ msgid "orange vine" msgid_plural "orange vine" msgstr[0] "橙色藤蔓" -#. ~ Description for {'str_sp': 'orange vine'} +#. ~ Description for orange vine #: lang/json/COMESTIBLE_from_json.py msgid "Some orange vine. Definitely GMO." msgstr "一些橘子的藤蔓。絕對是基因改造過的。" @@ -46985,7 +46970,7 @@ msgid "lemon vine" msgid_plural "lemon vine" msgstr[0] "檸檬藤蔓" -#. ~ Description for {'str_sp': 'lemon vine'} +#. ~ Description for lemon vine #: lang/json/COMESTIBLE_from_json.py msgid "Some lemon vines. Definitely GMO." msgstr "一些檸檬的藤蔓。絕對是基因改造過的。" @@ -46995,7 +46980,7 @@ msgid "subterraenean coconut" msgid_plural "subterraenean coconut" msgstr[0] "地下椰子" -#. ~ Description for {'str_sp': 'subterraenean coconut'} +#. ~ Description for subterraenean coconut #: lang/json/COMESTIBLE_from_json.py msgid "Proof that man went too far before the Cataclysm." msgstr "" @@ -47040,7 +47025,7 @@ msgid "cooked freezerburned human meat" msgid_plural "cooked freezerburned human meat" msgstr[0] "" -#. ~ Description for {'str_sp': 'cooked freezerburned human meat'} +#. ~ Description for cooked freezerburned human meat #: lang/json/COMESTIBLE_from_json.py msgid "A freshly cooked slice of human meat, it has severe frostburn." msgstr "經選人肉切片烹調,看起來有些嚴重的凍傷。" @@ -47082,7 +47067,7 @@ msgid "freezerburned human tallow" msgid_plural "freezerburned human tallow" msgstr[0] "" -#. ~ Description for {'str_sp': 'freezerburned human tallow'} +#. ~ Description for freezerburned human tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of cleaned and rendered human fat. While it'll " @@ -47094,7 +47079,7 @@ msgid "freezerburned human lard" msgid_plural "freezerburned human lard" msgstr[0] "" -#. ~ Description for {'str_sp': 'freezerburned human lard'} +#. ~ Description for freezerburned human lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth light green block of dry-rendered human fat. It's very frostburnt," @@ -47132,7 +47117,7 @@ msgid "cooked alien flesh" msgid_plural "cooked alien flesh" msgstr[0] "煮熟的外星肉塊" -#. ~ Description for {'str_sp': 'cooked alien flesh'} +#. ~ Description for cooked alien flesh #: lang/json/COMESTIBLE_from_json.py msgid "" "This is a chunk of freshly cooked alien meat. It could be either filling " @@ -47233,7 +47218,7 @@ msgid "raw alien brains" msgid_plural "raw alien brains" msgstr[0] "外星腦" -#. ~ Description for {'str_sp': 'raw alien brains'} +#. ~ Description for raw alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "A brain butchered from an alien organism. It looks somewhat similar to its " @@ -47246,7 +47231,7 @@ msgid "cooked alien brains" msgid_plural "cooked alien brains" msgstr[0] "煮熟的外星腦" -#. ~ Description for {'str_sp': 'cooked alien brains'} +#. ~ Description for cooked alien brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Fried and scrambled, this doesn't look the most appetizing, but it's edible " @@ -47329,7 +47314,7 @@ msgid "alien tallow" msgid_plural "alien tallow" msgstr[0] "外星動物脂" -#. ~ Description for {'str_sp': 'alien tallow'} +#. ~ Description for alien tallow #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of cleaned and rendered alien animal fat. It'll last " @@ -47342,7 +47327,7 @@ msgid "alien lard" msgid_plural "alien lard" msgstr[0] "外星豬油" -#. ~ Description for {'str_sp': 'alien lard'} +#. ~ Description for alien lard #: lang/json/COMESTIBLE_from_json.py msgid "" "A smooth white block of dry-rendered animal fat. It'll last for a very long" @@ -47355,7 +47340,7 @@ msgid "unidentifiable alien organs" msgid_plural "unidentifiable alien organs" msgstr[0] "無法識別的外星器官" -#. ~ Description for {'str_sp': 'unidentifiable alien organs'} +#. ~ Description for unidentifiable alien organs #: lang/json/COMESTIBLE_from_json.py msgid "" "An unidentifiable pile of organs; you have no idea how you'd prepare them." @@ -47366,7 +47351,7 @@ msgid "alien cracklins" msgid_plural "alien cracklins" msgstr[0] "外星豬皮酥" -#. ~ Description for {'str_sp': 'alien cracklins'} +#. ~ Description for alien cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits of alien fat and skin that have been fried until they are crispy and " @@ -47378,7 +47363,7 @@ msgid "freezerburned human cracklins" msgid_plural "freezerburned human cracklins" msgstr[0] "" -#. ~ Description for {'str_sp': 'freezerburned human cracklins'} +#. ~ Description for freezerburned human cracklins #: lang/json/COMESTIBLE_from_json.py msgid "" "Green scraps of rancid fat and skin, and while they have been fried to a " @@ -47429,7 +47414,7 @@ msgid "mealgrub spores" msgid_plural "mealgrub spores" msgstr[0] "" -#. ~ Description for {'str_sp': 'mealgrub spores'} +#. ~ Description for mealgrub spores #: lang/json/COMESTIBLE_from_json.py msgid "" "Mealgrubs are a staple aquacultural product, treasured for their ability to " @@ -47444,7 +47429,7 @@ msgid "mealgrub broth" msgid_plural "mealgrub broth" msgstr[0] "肉蟲培養液" -#. ~ Description for {'str_sp': 'mealgrub broth'} +#. ~ Description for mealgrub broth #: lang/json/COMESTIBLE_from_json.py msgid "" "Growth medium seeded with mealgrub eggs. Once placed in a growing vat, they" @@ -47457,7 +47442,7 @@ msgid "live mealgrubs" msgid_plural "live mealgrubs" msgstr[0] "肉蟲(成熟的)" -#. ~ Description for {'str_sp': 'live mealgrubs'} +#. ~ Description for live mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "Thousands of mature mealworms, squirming in the viscous remains of their " @@ -47470,7 +47455,7 @@ msgid "mealgrubs" msgid_plural "mealgrubs" msgstr[0] "肉蟲" -#. ~ Description for {'str_sp': 'mealgrubs'} +#. ~ Description for mealgrubs #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of edible and heavily genemoded grubs, each only slightly thinner than your thumb. Engineered in the wake of the XXII century to feed an overpopulated Earth and its fledgling colonies these are sturdy, easily grown and scalable crop.\n" @@ -47527,7 +47512,7 @@ msgid "H₂O™" msgid_plural "H₂O™" msgstr[0] "" -#. ~ Description for {'str_sp': 'H₂O™'} +#. ~ Description for H₂O™ #: lang/json/COMESTIBLE_from_json.py msgid "" "When Thistle Industries successfully trademarked the chemical formula of " @@ -47540,7 +47525,7 @@ msgid "food cubes" msgid_plural "food cubes" msgstr[0] "" -#. ~ Description for {'str_sp': 'food cubes'} +#. ~ Description for food cubes #: lang/json/COMESTIBLE_from_json.py msgid "" "Smoothly blended edibles, neatly shaped into cubes for maximum enjoyment." @@ -47551,7 +47536,7 @@ msgid "Foodplace's Food-to-go™" msgid_plural "Foodplace's Food-to-go™" msgstr[0] "美食中心健康美食™" -#. ~ Description for {'str_sp': "Foodplace's Food-to-go™"} +#. ~ Description for Foodplace's Food-to-go™ #: lang/json/COMESTIBLE_from_json.py msgid "" "Foodplace™ easy-storage Food-to-go™ the choice Food™ for the contemporary " @@ -47573,7 +47558,7 @@ msgid "cee wafers" msgid_plural "cee wafers" msgstr[0] "" -#. ~ Description for {'str_sp': 'cee wafers'} +#. ~ Description for cee wafers #: lang/json/COMESTIBLE_from_json.py msgid "" "Smooth crackers colored grayish-green. Used to be perfectly edible seaweed," @@ -47597,7 +47582,7 @@ msgid "soup, flavor 27" msgid_plural "soup, flavor 27" msgstr[0] "" -#. ~ Description for {'str_sp': 'soup, flavor 27'} +#. ~ Description for soup, flavor 27 #: lang/json/COMESTIBLE_from_json.py msgid "" "Yellow chunks float on creamy liquid, like flotsam on a filthy summer pond." @@ -47610,7 +47595,7 @@ msgid "landfall survival rations" msgid_plural "landfall survival rations" msgstr[0] "" -#. ~ Description for {'str_sp': 'landfall survival rations'} +#. ~ Description for landfall survival rations #: lang/json/COMESTIBLE_from_json.py msgid "" "Sealed emergency rations invariably found within an escape pod's inventory." @@ -47625,7 +47610,7 @@ msgid "caffex" msgid_plural "caffex" msgstr[0] "" -#. ~ Description for {'str_sp': 'caffex'} +#. ~ Description for caffex #: lang/json/COMESTIBLE_from_json.py msgid "" "A dark and soapy beverage, pre-brewed and loaded with synthetic caffeine." @@ -47663,7 +47648,7 @@ msgid "supercritical coolant" msgid_plural "supercritical coolant" msgstr[0] "" -#. ~ Description for {'str_sp': 'supercritical coolant'} +#. ~ Description for supercritical coolant #: lang/json/COMESTIBLE_from_json.py msgid "" "Capable of withstanding extreme temperature gradients, fulleroclathrate " @@ -47720,7 +47705,7 @@ msgid "SpOreos" msgid_plural "SpOreos" msgstr[0] "孢子奧力奧(SpOreos)" -#. ~ Description for {'str_sp': 'SpOreos'} +#. ~ Description for SpOreos #: lang/json/COMESTIBLE_from_json.py msgid "" "The hit cookie from Mycus Industries! Now comes in addicting flavors such " @@ -47740,7 +47725,7 @@ msgid "" "crafting. You could 'drink' it, but there's no way it would be pleasant." msgstr "" -#. ~ Description for {'str_sp': 'cooked brains'} +#. ~ Description for cooked brains #: lang/json/COMESTIBLE_from_json.py msgid "" "Now you can emulate a zombie! Preparing brain for eating is challenging, " @@ -48002,8 +47987,8 @@ msgid_plural "siats eggs" msgstr[0] "" #: lang/json/COMESTIBLE_from_json.py -msgid "tyrannosaurus egg" -msgid_plural "tyrannosaurus eggs" +msgid "gorgosaurus egg" +msgid_plural "gorgosaurus eggs" msgstr[0] "" #: lang/json/COMESTIBLE_from_json.py @@ -48011,6 +47996,16 @@ msgid "albertosaurus egg" msgid_plural "albertosaurus eggs" msgstr[0] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "qianzhousaurus egg" +msgid_plural "qianzhousaurus eggs" +msgstr[0] "" + +#: lang/json/COMESTIBLE_from_json.py +msgid "tyrannosaurus egg" +msgid_plural "tyrannosaurus eggs" +msgstr[0] "" + #: lang/json/COMESTIBLE_from_json.py msgid "compsognathus egg" msgid_plural "compsognathus eggs" @@ -48046,6 +48041,11 @@ msgid "eoraptor egg" msgid_plural "eoraptor eggs" msgstr[0] "" +#: lang/json/COMESTIBLE_from_json.py +msgid "amargasaurus egg" +msgid_plural "amargasaurus eggs" +msgstr[0] "" + #: lang/json/COMESTIBLE_from_json.py msgid "apatosaurus egg" msgid_plural "apatosaurus eggs" @@ -48146,6 +48146,11 @@ msgid "pentaceratops egg" msgid_plural "pentaceratops eggs" msgstr[0] "五角龍蛋" +#: lang/json/COMESTIBLE_from_json.py +msgid "kosmoceratops egg" +msgid_plural "kosmoceratops eggs" +msgstr[0] "" + #: lang/json/COMESTIBLE_from_json.py msgid "torosaurus egg" msgid_plural "torosaurus eggs" @@ -48176,21 +48181,6 @@ msgid "mosasaurus egg" msgid_plural "mosasaurus eggs" msgstr[0] "" -#: lang/json/COMESTIBLE_from_json.py -msgid "qianzhousaurus egg" -msgid_plural "qianzhousaurus eggs" -msgstr[0] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "amargasaurus egg" -msgid_plural "amargasaurus eggs" -msgstr[0] "" - -#: lang/json/COMESTIBLE_from_json.py -msgid "kosmoceratops egg" -msgid_plural "kosmoceratops eggs" -msgstr[0] "" - #: lang/json/COMESTIBLE_from_json.py msgid "tyrant serum" msgid_plural "tyrant serums" @@ -48228,7 +48218,7 @@ msgstr[0] "" #: lang/json/COMESTIBLE_from_json.py msgid "potion starter" msgid_plural "potion starters" -msgstr[0] "" +msgstr[0] "藥劑基底" #. ~ Description for potion starter #: lang/json/COMESTIBLE_from_json.py @@ -48240,7 +48230,7 @@ msgstr "強烈的酒精,注入法力並濃縮成液體,可以使法術穩定 #: lang/json/COMESTIBLE_from_json.py msgid "superior potion starter" msgid_plural "superior potion starters" -msgstr[0] "" +msgstr[0] "高級藥劑基底" #. ~ Description for superior potion starter #: lang/json/COMESTIBLE_from_json.py @@ -48289,7 +48279,7 @@ msgstr "細心地從黑龍身上剝下來的一疊龍皮,這是很大的一片 #: lang/json/COMESTIBLE_from_json.py msgid "lesser mana potion" msgid_plural "lesser mana potions" -msgstr[0] "" +msgstr[0] "次級法力藥劑" #. ~ Description for lesser mana potion #: lang/json/COMESTIBLE_from_json.py @@ -48301,17 +48291,17 @@ msgstr "你無法買到這東西,所以你需要留下來直到打最後首領 #: lang/json/COMESTIBLE_from_json.py msgid "mana potion" msgid_plural "mana potions" -msgstr[0] "" +msgstr[0] "法力藥劑" #: lang/json/COMESTIBLE_from_json.py msgid "greater mana potion" msgid_plural "greater mana potions" -msgstr[0] "" +msgstr[0] "高級法力藥劑" #: lang/json/COMESTIBLE_from_json.py msgid "potion of Cat's Grace" msgid_plural "potions of Cat's Grace" -msgstr[0] "" +msgstr[0] "貓之優雅藥劑" #. ~ Description for potion of Cat's Grace #: lang/json/COMESTIBLE_from_json.py @@ -48323,7 +48313,7 @@ msgstr "貓之優雅藥劑,能夠增加你的敏捷 10 分鐘。" #: lang/json/COMESTIBLE_from_json.py msgid "potion of Ogre's Strength" msgid_plural "potions of Ogre's Strength" -msgstr[0] "" +msgstr[0] "食人魔之力藥劑" #. ~ Description for potion of Ogre's Strength #: lang/json/COMESTIBLE_from_json.py @@ -48335,7 +48325,7 @@ msgstr "食人魔之力藥劑,能夠增加你的力量 10 分鐘。" #: lang/json/COMESTIBLE_from_json.py msgid "potion of Eagle's Sight" msgid_plural "potions of Eagle's Sight" -msgstr[0] "" +msgstr[0] "鷹之視野藥劑" #. ~ Description for potion of Eagle's Sight #: lang/json/COMESTIBLE_from_json.py @@ -48347,7 +48337,7 @@ msgstr "鷹之視野藥劑。能夠增加你的感知 10 分鐘。" #: lang/json/COMESTIBLE_from_json.py msgid "potion of Fox's Cunning" msgid_plural "potions of Fox's Cunning" -msgstr[0] "" +msgstr[0] "狐之狡黠藥劑" #. ~ Description for potion of Fox's Cunning #: lang/json/COMESTIBLE_from_json.py @@ -48399,7 +48389,7 @@ msgstr "一個維妙維肖的不死美洲獅模型,包括毛皮、骨骼和器 #: lang/json/COMESTIBLE_from_json.py msgid "potion of Twisted Restoration" msgid_plural "potions of Twisted Restoration" -msgstr[0] "" +msgstr[0] "扭曲恢復藥劑" #. ~ Description for potion of Twisted Restoration #: lang/json/COMESTIBLE_from_json.py @@ -48412,7 +48402,7 @@ msgstr "這種惡臭的液體用加速你的心跳達到危險等級的方式來 #: lang/json/COMESTIBLE_from_json.py msgid "potion of Improved Twisted Restoration" msgid_plural "potions of Improved Twisted Restoration" -msgstr[0] "" +msgstr[0] "改良扭曲恢復藥劑" #. ~ Description for potion of Improved Twisted Restoration #: lang/json/COMESTIBLE_from_json.py @@ -48466,7 +48456,7 @@ msgid "dragon meat" msgid_plural "dragon meat" msgstr[0] "龍肉" -#. ~ Description for {'str_sp': 'dragon meat'} +#. ~ Description for dragon meat #: lang/json/COMESTIBLE_from_json.py msgid "" "The meat from a slain dragon. It does not seem to respond to cooking the " @@ -48527,7 +48517,7 @@ msgid "mana infused blood" msgid_plural "mana infused blood" msgstr[0] "" -#. ~ Description for {'str_sp': 'mana infused blood'} +#. ~ Description for mana infused blood #: lang/json/COMESTIBLE_from_json.py msgid "" "Blood that is filled to the brim with arcane energy. It releases a faint " @@ -48583,14 +48573,14 @@ msgid "" "Surely a bite wouldn't hurt, right?" msgstr "" -#. ~ Description for {'str_sp': 'marshmallows'} +#. ~ Description for marshmallows #: lang/json/COMESTIBLE_from_json.py msgid "" "A handful of squishy, fluffy, puffy, delicious marshmallows. They feel " "oddly warm…" msgstr "數個柔軟、蓬鬆、美味的棉花糖。他們摸起來異常地溫熱…" -#. ~ Description for {'str_sp': "s'mores"} +#. ~ Description for s'mores #: lang/json/COMESTIBLE_from_json.py msgid "" "A pair of graham crackers with some chocolate and a marshmallow between " @@ -48671,7 +48661,7 @@ msgid "raw chocolate milk" msgid_plural "raw chocolate milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'raw chocolate milk'} +#. ~ Description for raw chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "This is raw, unhomogenized and unpasteurized chocolate milk from a chocolate" @@ -48680,7 +48670,7 @@ msgid "" "want to pasteurize or even boil this before drinking." msgstr "" -#. ~ Description for {'str_sp': 'chocolate milk'} +#. ~ Description for chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. Spoils rapidly." @@ -48691,7 +48681,7 @@ msgid "liquid cacao" msgid_plural "liquid cacao" msgstr[0] "" -#. ~ Description for {'str_sp': 'liquid cacao'} +#. ~ Description for liquid cacao #: lang/json/COMESTIBLE_from_json.py msgid "Liquid unsweetened cacao. Quite bitter to taste." msgstr "" @@ -48701,7 +48691,7 @@ msgid "reconstituted chocolate milk" msgid_plural "reconstituted chocolate milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'reconstituted chocolate milk'} +#. ~ Description for reconstituted chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Baby chocolate cow food, appropriated for adult humans. This milk has been " @@ -48713,7 +48703,7 @@ msgid "powdered chocolate milk" msgid_plural "powdered chocolate milk" msgstr[0] "" -#. ~ Description for {'str_sp': 'powdered chocolate milk'} +#. ~ Description for powdered chocolate milk #: lang/json/COMESTIBLE_from_json.py msgid "" "Dehydrated chocolate milk powder. Mix with water to make drinkable milk." @@ -48731,7 +48721,7 @@ msgid "pieces of candy wrapper" msgid_plural "pieces of candy wrapper" msgstr[0] "" -#. ~ Description for {'str_sp': 'pieces of candy wrapper'} +#. ~ Description for pieces of candy wrapper #: lang/json/COMESTIBLE_from_json.py msgid "" "Bits and pieces of plastic entangled in sticky candy goop. They spot some " @@ -48744,7 +48734,7 @@ msgid "sticky sludge" msgid_plural "sticky sludge" msgstr[0] "" -#. ~ Description for {'str_sp': 'sticky sludge'} +#. ~ Description for sticky sludge #: lang/json/COMESTIBLE_from_json.py msgid "" "A pile of weird sticky sludge. It looks absolutly disgusting but smells " @@ -49281,7 +49271,7 @@ msgid "rock salt" msgid_plural "rock salt" msgstr[0] "岩鹽" -#. ~ Description for {'str_sp': 'rock salt'} +#. ~ Description for rock salt #: lang/json/GENERIC_from_json.py msgid "A handful of rock salt crystals. Could be refined into table salt." msgstr "一把岩鹽結晶。可以提煉成食鹽。" @@ -49291,7 +49281,7 @@ msgid "rhodonite" msgid_plural "rhodonite" msgstr[0] "薔薇輝石" -#. ~ Description for {'str_sp': 'rhodonite'} +#. ~ Description for rhodonite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of rhodonite. It has manganese dioxide covering and going through " @@ -49303,7 +49293,7 @@ msgid "zincite" msgid_plural "zincite" msgstr[0] "紅鋅礦" -#. ~ Description for {'str_sp': 'zincite'} +#. ~ Description for zincite #: lang/json/GENERIC_from_json.py msgid "" "A chunk of zincite. Could be refined into zinc oxide, then into zinc by " @@ -49337,7 +49327,7 @@ msgid "hickory nuts" msgid_plural "hickory nuts" msgstr[0] "山核桃堅果" -#. ~ Description for {'str_sp': 'hickory nuts'} +#. ~ Description for hickory nuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hickory tree, still in their shell." msgstr "一把來自山核挑樹的堅果, 仍未去殼。" @@ -49347,7 +49337,7 @@ msgid "pecans" msgid_plural "pecans" msgstr[0] "長山核桃" -#. ~ Description for {'str_sp': 'pecans'} +#. ~ Description for pecans #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pecan tree, still in their shell." msgstr "一把來自胡桃樹的堅果, 仍未去殼。" @@ -49357,7 +49347,7 @@ msgid "pistachios" msgid_plural "pistachios" msgstr[0] "開心果" -#. ~ Description for {'str_sp': 'pistachios'} +#. ~ Description for pistachios #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a pistachio tree, still in their shell." msgstr "一把從阿月渾子樹摘下的硬堅果, 仍未去殼。" @@ -49367,7 +49357,7 @@ msgid "almonds" msgid_plural "almonds" msgstr[0] "扁桃仁" -#. ~ Description for {'str_sp': 'almonds'} +#. ~ Description for almonds #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from an almond tree, still in their shell." msgstr "" @@ -49377,7 +49367,7 @@ msgid "peanuts" msgid_plural "peanuts" msgstr[0] "花生" -#. ~ Description for {'str_sp': 'peanuts'} +#. ~ Description for peanuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a peanut bush, still in their shell." msgstr "一把來自花生灌木的堅果, 仍未去殼。" @@ -49387,7 +49377,7 @@ msgid "hazelnuts" msgid_plural "hazelnuts" msgstr[0] "榛果" -#. ~ Description for {'str_sp': 'hazelnuts'} +#. ~ Description for hazelnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a hazelnut tree, still in their shell." msgstr "一把來自榛子樹的堅果, 仍未去殼。" @@ -49397,7 +49387,7 @@ msgid "chestnuts" msgid_plural "chestnuts" msgstr[0] "栗子" -#. ~ Description for {'str_sp': 'chestnuts'} +#. ~ Description for chestnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a chestnut tree, still in their shell." msgstr "一把來自栗子樹的堅果, 仍未去殼。" @@ -49407,7 +49397,7 @@ msgid "walnuts" msgid_plural "walnuts" msgstr[0] "核桃" -#. ~ Description for {'str_sp': 'walnuts'} +#. ~ Description for walnuts #: lang/json/GENERIC_from_json.py msgid "A handful of hard nuts from a walnut tree, still in their shell." msgstr "一把來自胡桃樹的堅果, 仍未去殼。" @@ -49670,6 +49660,17 @@ msgid "" "Emphysema And May Complicate Pregnancy." msgstr "外科醫生警告: 吸煙引致肺癌、心臟病、肺氣腫, 更有可能影響孕婦。" +#: lang/json/GENERIC_from_json.py +msgid "cigar case" +msgid_plural "cigar cases" +msgstr[0] "" + +#. ~ Description for cigar case +#: lang/json/GENERIC_from_json.py +msgid "" +"A small handmade wood and leather case meant to hold one or two cigars." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "small cardboard box" msgid_plural "small cardboard boxes" @@ -49680,6 +49681,18 @@ msgstr[0] "小型紙盒" msgid "A small cardboard box. No bigger than a foot in dimension." msgstr "一個小紙盒。大概只能裝一雙鞋的大小。" +#: lang/json/GENERIC_from_json.py +msgid "small wooden box" +msgid_plural "small wooden boxes" +msgstr[0] "" + +#. ~ Description for small wooden box +#: lang/json/GENERIC_from_json.py +msgid "" +"A small wooden box a few inches on each side, just about right for holding a" +" few small items." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "cardboard box" msgid_plural "cardboard boxes" @@ -50392,7 +50405,7 @@ msgid "semi ground grains" msgid_plural "semi ground grains" msgstr[0] "半磨粒穀物" -#. ~ Description for {'str_sp': 'semi ground grains'} +#. ~ Description for semi ground grains #: lang/json/GENERIC_from_json.py msgid "A paste of half-finished milled grains, not yet flour." msgstr "磨到一半的榖物顆粒,還沒有變成麵粉。" @@ -50402,7 +50415,7 @@ msgid "smoldering embers" msgid_plural "smoldering embers" msgstr[0] "悶燒的餘燼" -#. ~ Description for {'str_sp': 'smoldering embers'} +#. ~ Description for smoldering embers #: lang/json/GENERIC_from_json.py msgid "" "A handful of smoldering embers emitting smoke. They are fading away even " @@ -50591,6 +50604,27 @@ msgid "" "lock it goes to; best not to bother with it." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "cigar cutter" +msgid_plural "cigar cutters" +msgstr[0] "" + +#. ~ Description for cigar cutter +#: lang/json/GENERIC_from_json.py +msgid "" +"A set of small blades that pinch together to cut the end off of a cigar." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "cigar punch" +msgid_plural "cigar punches" +msgstr[0] "" + +#. ~ Description for cigar punch +#: lang/json/GENERIC_from_json.py +msgid "A small tube meant to cut a hole in the end of a cigar." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "NRE microphone" msgid_plural "NRE microphones" @@ -50770,7 +50804,7 @@ msgid "superglue" msgid_plural "superglue" msgstr[0] "強力膠" -#. ~ Description for {'str_sp': 'superglue'} +#. ~ Description for superglue #: lang/json/GENERIC_from_json.py msgid "A tube of strong glue. Used in many crafting recipes." msgstr "一管強力膠。能用於許多物品製作配方。" @@ -51035,7 +51069,7 @@ msgid "FEMA data" msgid_plural "FEMA data" msgstr[0] "" -#. ~ Description for {'str_sp': 'FEMA data'} +#. ~ Description for FEMA data #: lang/json/GENERIC_from_json.py msgid "" "Evacuation plans, disaster risk projections, personnel lists and last minute" @@ -51166,7 +51200,7 @@ msgid "concrete" msgid_plural "concrete" msgstr[0] "混凝土" -#. ~ Description for {'str_sp': 'concrete'} +#. ~ Description for concrete #: lang/json/GENERIC_from_json.py msgid "Some concrete, ready to be used in a construction project." msgstr "一些混凝土, 已經準備於用在建築工程中了。" @@ -51943,7 +51977,7 @@ msgid "clockworks" msgid_plural "clockworks" msgstr[0] "發條裝置" -#. ~ Description for {'str_sp': 'clockworks'} +#. ~ Description for clockworks #: lang/json/GENERIC_from_json.py msgid "A small assortment of gears and other clockwork gubbins." msgstr "一組小齒輪和小的發條。" @@ -52064,7 +52098,7 @@ msgid "chamomile flowers" msgid_plural "chamomile flowers" msgstr[0] "洋甘菊花" -#. ~ Description for {'str_sp': 'chamomile flowers'} +#. ~ Description for chamomile flowers #: lang/json/GENERIC_from_json.py msgid "" "White chamomile flowers, used as a herbal remedy since the ancient times." @@ -52088,7 +52122,7 @@ msgid "spurge flowers" msgid_plural "spurge flowers" msgstr[0] "大戟花" -#. ~ Description for {'str_sp': 'spurge flowers'} +#. ~ Description for spurge flowers #: lang/json/GENERIC_from_json.py msgid "" "A handful of yellow-green flowers. Can be brewed into a tea that prevents " @@ -52120,7 +52154,7 @@ msgid "mortar" msgid_plural "mortar" msgstr[0] "沙漿" -#. ~ Description for {'str_sp': 'mortar'} +#. ~ Description for mortar #: lang/json/GENERIC_from_json.py msgid "Some mortar, ready to be used in building projects." msgstr "一袋沙漿, 已經準備於用在建築工程中了。" @@ -52164,7 +52198,7 @@ msgid "adobe mortar" msgid_plural "adobe mortar" msgstr[0] "土坯砂漿" -#. ~ Description for {'str_sp': 'adobe mortar'} +#. ~ Description for adobe mortar #: lang/json/GENERIC_from_json.py msgid "" "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used " @@ -52176,7 +52210,7 @@ msgid "tanbark" msgid_plural "tanbark" msgstr[0] "鞣料樹皮" -#. ~ Description for {'str_sp': 'tanbark'} +#. ~ Description for tanbark #: lang/json/GENERIC_from_json.py msgid "A sheet of tannin-rich bark from a tree, useful for tanning leather" msgstr "一片含有豐富丹寧的樹皮, 可用於制革。" @@ -52196,7 +52230,7 @@ msgid "willowbark" msgid_plural "willowbark" msgstr[0] "柳樹樹皮" -#. ~ Description for {'str_sp': 'willowbark'} +#. ~ Description for willowbark #: lang/json/GENERIC_from_json.py msgid "" "A sheet of bark taken from a willow tree. Used in the production of " @@ -52596,7 +52630,7 @@ msgid "raw tobacco" msgid_plural "raw tobacco" msgstr[0] "生菸草" -#. ~ Description for {'str_sp': 'raw tobacco'} +#. ~ Description for raw tobacco #: lang/json/GENERIC_from_json.py msgid "" "Various parts of tobacco plant, full of nicotine. They need to be dried to " @@ -52876,7 +52910,7 @@ msgid "plastic dice" msgid_plural "plastic dice" msgstr[0] "" -#. ~ Description for {'str_sp': 'plastic dice'} +#. ~ Description for plastic dice #: lang/json/GENERIC_from_json.py msgid "A six-sided plastic dice." msgstr "" @@ -52897,7 +52931,7 @@ msgid "alder bark" msgid_plural "alder bark" msgstr[0] "榿木樹皮" -#. ~ Description for {'str_sp': 'alder bark'} +#. ~ Description for alder bark #: lang/json/GENERIC_from_json.py msgid "" "A strip of bark pulled from an alder tree. Used in the production of " @@ -53241,6 +53275,91 @@ msgid "" "probably need to find a very large frog." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "insect sample" +msgid_plural "insect samples" +msgstr[0] "" + +#. ~ Description for insect sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being an insect. You will " +"probably need to find a very large bug." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bovine sample" +msgid_plural "bovine samples" +msgstr[0] "" + +#. ~ Description for bovine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a bovine creature. You " +"will probably need to find a very live cow." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "molerat sample" +msgid_plural "molerat samples" +msgstr[0] "" + +#. ~ Description for molerat sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a underground dwelling " +"creature. You will probably need to find a something large that lives " +"underground." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "spider sample" +msgid_plural "spider samples" +msgstr[0] "" + +#. ~ Description for spider sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a spider. Why are there " +"so many huge spiders now?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "reptile sample" +msgid_plural "reptile samples" +msgstr[0] "" + +#. ~ Description for reptile sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a lizard. Gators and " +"giant rattlesnakes seem like they'd fit what you're looking for." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "lupine sample" +msgid_plural "lupine samples" +msgstr[0] "" + +#. ~ Description for lupine sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a wolf being. Is that " +"Lon Chaney jr walking with the queen?" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "feline sample" +msgid_plural "feline samples" +msgstr[0] "" + +#. ~ Description for feline sample +#: lang/json/GENERIC_from_json.py +msgid "" +"A sample of things that make up key parts of being a feline. Bobcats and " +"cougars might be native to this area?" +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "flyer" msgid_plural "flyers" @@ -53891,7 +54010,7 @@ msgid "self monitoring sensors" msgid_plural "self monitoring sensors" msgstr[0] "" -#. ~ Description for {'str_sp': 'self monitoring sensors'} +#. ~ Description for self monitoring sensors #: lang/json/GENERIC_from_json.py msgid "" "An array of sensors and diagnostic modules allowing the robot to perceive " @@ -54016,7 +54135,7 @@ msgid "turret interior chassis" msgid_plural "turret interior chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'turret interior chassis'} +#. ~ Description for turret interior chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -54028,7 +54147,7 @@ msgid "police bot chassis" msgid_plural "police bot chassis" msgstr[0] "警用機器人機殼" -#. ~ Description for {'str_sp': 'police bot chassis'} +#. ~ Description for police bot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -54055,7 +54174,7 @@ msgid "Alarm System CBM installation data" msgid_plural "Alarm System CBM installation data" msgstr[0] "警報系統(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Alarm System CBM installation data'} +#. ~ Description for Alarm System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54072,7 +54191,7 @@ msgid "LED Tattoo CBM installation data" msgid_plural "LED Tattoo CBM installation data" msgstr[0] "LED紋身(CBM)安裝資料" -#. ~ Description for {'str_sp': 'LED Tattoo CBM installation data'} +#. ~ Description for LED Tattoo CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54089,7 +54208,7 @@ msgid "Power Armor Interface CBM installation data" msgid_plural "Power Armor Interface CBM installation data" msgstr[0] "動力裝甲介面(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Power Armor Interface CBM installation data'} +#. ~ Description for Power Armor Interface CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54106,7 +54225,7 @@ msgid "Power Storage CBM installation data" msgid_plural "Power Storage CBM installation data" msgstr[0] "能量儲存室(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Power Storage CBM installation data'} +#. ~ Description for Power Storage CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54123,7 +54242,7 @@ msgid "Power Storage CBM Mk. II installation data" msgid_plural "Power Storage CBM Mk. II installation data" msgstr[0] "能量儲存室 Mk. II(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Power Storage CBM Mk. II installation data'} +#. ~ Description for Power Storage CBM Mk. II installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54140,7 +54259,7 @@ msgid "Internal Chronometer CBM installation data" msgid_plural "Internal Chronometer CBM installation data" msgstr[0] "內部計時器(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Internal Chronometer CBM installation data'} +#. ~ Description for Internal Chronometer CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54157,7 +54276,7 @@ msgid "Intravenous Needletip CBM installation data" msgid_plural "Intravenous Needletip CBM installation data" msgstr[0] "靜脈注射針(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Intravenous Needletip CBM installation data'} +#. ~ Description for Intravenous Needletip CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54174,7 +54293,7 @@ msgid "Blood Analysis CBM installation data" msgid_plural "Blood Analysis CBM installation data" msgstr[0] "血液分析(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Blood Analysis CBM installation data'} +#. ~ Description for Blood Analysis CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54191,7 +54310,7 @@ msgid "Cranial Flashlight CBM installation data" msgid_plural "Cranial Flashlight CBM installation data" msgstr[0] "頭顱燈(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Cranial Flashlight CBM installation data'} +#. ~ Description for Cranial Flashlight CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54208,7 +54327,7 @@ msgid "Electromagnetic Unit CBM installation data" msgid_plural "Electromagnetic Unit CBM installation data" msgstr[0] "電磁元件(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Electromagnetic Unit CBM installation data'} +#. ~ Description for Electromagnetic Unit CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54225,7 +54344,7 @@ msgid "Soporific Induction CBM installation data" msgid_plural "Soporific Induction CBM installation data" msgstr[0] "助眠誘導(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Soporific Induction CBM installation data'} +#. ~ Description for Soporific Induction CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54242,7 +54361,7 @@ msgid "Arms Alloy Plating CBM installation data" msgid_plural "Arms Alloy Plating CBM installation data" msgstr[0] "合金鋼鐵-手臂(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Arms Alloy Plating CBM installation data'} +#. ~ Description for Arms Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54259,7 +54378,7 @@ msgid "Legs Alloy Plating CBM installation data" msgid_plural "Legs Alloy Plating CBM installation data" msgstr[0] "合金鋼鐵-腿部(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Legs Alloy Plating CBM installation data'} +#. ~ Description for Legs Alloy Plating CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54276,7 +54395,7 @@ msgid "Shotgun Arm CBM installation data" msgid_plural "Shotgun Arm CBM installation data" msgstr[0] "手臂霰彈槍(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Shotgun Arm CBM installation data'} +#. ~ Description for Shotgun Arm CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54293,7 +54412,7 @@ msgid "Blood Filter CBM installation data" msgid_plural "Blood Filter CBM installation data" msgstr[0] "血液過濾(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Blood Filter CBM installation data'} +#. ~ Description for Blood Filter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54310,8 +54429,7 @@ msgid "Internal Climate Control CBM installation data" msgid_plural "Internal Climate Control CBM installation data" msgstr[0] "恆溫控制系統(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Internal Climate Control CBM installation -#. data'} +#. ~ Description for Internal Climate Control CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54328,7 +54446,7 @@ msgid "Integrated Dosimeter CBM installation data" msgid_plural "Integrated Dosimeter CBM installation data" msgstr[0] "輻射量測表(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Integrated Dosimeter CBM installation data'} +#. ~ Description for Integrated Dosimeter CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54345,7 +54463,7 @@ msgid "Thermal Dissipation CBM installation data" msgid_plural "Thermal Dissipation CBM installation data" msgstr[0] "散熱裝置(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Thermal Dissipation CBM installation data'} +#. ~ Description for Thermal Dissipation CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54362,7 +54480,7 @@ msgid "Weather Reader CBM installation data" msgid_plural "Weather Reader CBM installation data" msgstr[0] "天氣預報(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Weather Reader CBM installation data'} +#. ~ Description for Weather Reader CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54379,7 +54497,7 @@ msgid "Railgun CBM installation data" msgid_plural "Railgun CBM installation data" msgstr[0] "磁軌砲(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Railgun CBM installation data'} +#. ~ Description for Railgun CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54396,7 +54514,7 @@ msgid "Unified Power System CBM installation data" msgid_plural "Unified Power System CBM installation data" msgstr[0] "UPS系統(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Unified Power System CBM installation data'} +#. ~ Description for Unified Power System CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54413,8 +54531,7 @@ msgid "Titanium Skeletal Bracing CBM installation data" msgid_plural "Titanium Skeletal Bracing CBM installation data" msgstr[0] "鈦製骨架支撐(CBM)安裝資料" -#. ~ Description for {'str_sp': 'Titanium Skeletal Bracing CBM installation -#. data'} +#. ~ Description for Titanium Skeletal Bracing CBM installation data #: lang/json/GENERIC_from_json.py msgid "" "Precise step-by-step instructions and other required data for installation " @@ -54436,7 +54553,7 @@ msgid "misc software" msgid_plural "misc software" msgstr[0] "軟體" -#. ~ Description for {'str_sp': 'misc software'} +#. ~ Description for misc software #: lang/json/GENERIC_from_json.py msgid "A miscellaneous piece of hobby software. Probably useless." msgstr "一個繁雜的無趣軟體。大概沒啥用處。" @@ -54446,7 +54563,7 @@ msgid "hackPRO" msgid_plural "hackPRO" msgstr[0] "駭客王" -#. ~ Description for {'str_sp': 'hackPRO'} +#. ~ Description for hackPRO #: lang/json/GENERIC_from_json.py msgid "A piece of hacking software." msgstr "一套駭客軟體。" @@ -54456,7 +54573,7 @@ msgid "MediSoft" msgid_plural "MediSoft" msgstr[0] "模擬醫生" -#. ~ Description for {'str_sp': 'MediSoft'} +#. ~ Description for MediSoft #: lang/json/GENERIC_from_json.py msgid "A piece of medical software." msgstr "一個醫學軟體。" @@ -54466,7 +54583,7 @@ msgid "MatheMAX" msgid_plural "MatheMAX" msgstr[0] "大算盤" -#. ~ Description for {'str_sp': 'MatheMAX'} +#. ~ Description for MatheMAX #: lang/json/GENERIC_from_json.py msgid "A piece of mathematical software." msgstr "一個數學運算軟體。" @@ -54476,7 +54593,7 @@ msgid "infection data" msgid_plural "infection data" msgstr[0] "感染數據" -#. ~ Description for {'str_sp': 'infection data'} +#. ~ Description for infection data #: lang/json/GENERIC_from_json.py msgid "Medical data on zombie blood." msgstr "關於殭屍血液的醫學數據。" @@ -54486,7 +54603,7 @@ msgid "lab data" msgid_plural "lab data" msgstr[0] "實驗室資料" -#. ~ Description for {'str_sp': 'lab data'} +#. ~ Description for lab data #: lang/json/GENERIC_from_json.py msgid "Research archives from a government laboratory." msgstr "來自政府實驗室的研究檔案。" @@ -54496,7 +54613,7 @@ msgid "train data" msgid_plural "train data" msgstr[0] "列車資料" -#. ~ Description for {'str_sp': 'train data'} +#. ~ Description for train data #: lang/json/GENERIC_from_json.py msgid "Logistical data on subterranean train routes and schedules." msgstr "地下火車路線和時刻表的物流數據。" @@ -54506,7 +54623,7 @@ msgid "neural data" msgid_plural "neural data" msgstr[0] "神經數據" -#. ~ Description for {'str_sp': 'neural data'} +#. ~ Description for neural data #: lang/json/GENERIC_from_json.py msgid "" "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" @@ -54784,27 +54901,38 @@ msgid "" "feeling sufficiently ghoulish." msgstr "" +#: lang/json/GENERIC_from_json.py +msgid "human skull" +msgid_plural "human skulls" +msgstr[0] "" + +#. ~ Description for human skull +#: lang/json/GENERIC_from_json.py +msgid "" +"The skull of a human being. Carrying this around probably isn't going to " +"win you any friends." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "corpse" msgid_plural "corpses" msgstr[0] "屍體" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches FIELD_DRESS -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches -#. FIELD_DRESS_FAILED +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS +#. ~ Conditional name for corpse when FLAG matches FIELD_DRESS_FAILED #: lang/json/GENERIC_from_json.py msgid "carcass" msgid_plural "carcasses" msgstr[0] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches SKINNED +#. ~ Conditional name for corpse when FLAG matches SKINNED #: lang/json/GENERIC_from_json.py #, python-format msgid "skinned %s" msgid_plural "skinned %s" msgstr[0] "" -#. ~ Conditional name for {'str': 'corpse'} when FLAG matches QUARTERED +#. ~ Conditional name for corpse when FLAG matches QUARTERED #: lang/json/GENERIC_from_json.py msgid "carcass quarter" msgid_plural "carcass quarters" @@ -55036,7 +55164,7 @@ msgid "trifacet remains" msgid_plural "trifacet remains" msgstr[0] "" -#. ~ Description for {'str_sp': 'trifacet remains'} +#. ~ Description for trifacet remains #: lang/json/GENERIC_from_json.py msgid "" "A split open facet reveals an interior full of closely fit geometric " @@ -55352,6 +55480,96 @@ msgid "" "useful for scouring toilet bowls." msgstr "殭屍不會害怕這東西或嫌它骯髒,所以這種堅硬的刷子只能用來刷洗馬桶。" +#: lang/json/GENERIC_from_json.py +msgid "lice comb" +msgid_plural "lice combs" +msgstr[0] "" + +#. ~ Description for lice comb +#: lang/json/GENERIC_from_json.py +msgid "" +"A stainless-steel comb with spiral grooved teeth designed to remove pesky " +"parasites from hair. Even just thinking about it makes you itch." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "bath toy" +msgid_plural "bath toys" +msgstr[0] "" + +#. ~ Description for bath toy +#: lang/json/GENERIC_from_json.py +msgid "A plastic floating bath toy." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A yellow rubber duck. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "" +"A black rubber duck with large white eyes. Designed to dropped in the bath." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A small green dinosaur with a wide grin. Designed for bath time." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "electric toothbrush" +msgid_plural "electric toothbrushes" +msgstr[0] "" + +#. ~ Description for electric toothbrush +#: lang/json/GENERIC_from_json.py +msgid "A plastic electric toothbrush." +msgstr "" + +#. ~ Description for plastic bottle +#: lang/json/GENERIC_from_json.py +msgid "A squeezable used bottle to hold various bathroom soaps" +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for special shampoo for dyed hair." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shampoo." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for body wash. This one is called 'Afrika'." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A bottle for hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A colorful bottle of body and hair wash marketed for children." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest hair conditioner." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "A plain white bottle made to contain the cheapest shower jell." +msgstr "" + +#: lang/json/GENERIC_from_json.py +msgid "set of dentures" +msgid_plural "sets of dentures" +msgstr[0] "" + +#. ~ Description for set of dentures +#: lang/json/GENERIC_from_json.py +msgid "" +"A standard set of prosthetic teeth. Pretty useless to anyone aside from its" +" owner." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "pillowcase" msgid_plural "pillowcases" @@ -56947,7 +57165,7 @@ msgid "headphones" msgid_plural "headphones" msgstr[0] "" -#. ~ Description for {'str_sp': 'headphones'} +#. ~ Description for headphones #: lang/json/GENERIC_from_json.py msgid "" "Typical headphones that cover your ears. A well-known brand that is very " @@ -57021,7 +57239,7 @@ msgid "spare parts" msgid_plural "spare parts" msgstr[0] "備用零件" -#. ~ Description for {'str_sp': 'spare parts'} +#. ~ Description for spare parts #: lang/json/GENERIC_from_json.py msgid "" "Items with are not themselves useful but are instead requirements for " @@ -57575,7 +57793,7 @@ msgid "bokken" msgid_plural "bokken" msgstr[0] "" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, exactingly crafted to mimic the " @@ -57583,14 +57801,14 @@ msgid "" "edge, it's still quite capable of inflicting deadly wounds." msgstr "這是一把不論在重量或平衡上都準確地用真品為範本、實心木為材料所製成的訓練用武士刀。儘管不具有金屬刀鋒, 他仍然具有造成致命傷的能力。" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but feels far too light to make an " "effective weapon." msgstr "這是實心木質的 \"訓練用\" 武士刀, 但是因為手感太輕, 難以成為有效的武器。" -#. ~ Description for {'str_sp': 'bokken'} +#. ~ Description for bokken #: lang/json/GENERIC_from_json.py msgid "" "This is a solid wood 'training' katana, but it looks to be mass-produced, " @@ -58099,7 +58317,7 @@ msgid "bionic claws" msgid_plural "bionic claws" msgstr[0] "生化爪" -#. ~ Description for {'str_sp': 'bionic claws'} +#. ~ Description for bionic claws #: lang/json/GENERIC_from_json.py msgid "Short and sharp claws made from a high-tech metal." msgstr "一副短而利的爪, 由高科技金屬所製成。" @@ -58303,7 +58521,7 @@ msgid "qiang" msgid_plural "qiang" msgstr[0] "" -#. ~ Description for {'str_sp': 'qiang'} +#. ~ Description for qiang #: lang/json/GENERIC_from_json.py msgid "" "An ancient Chinese spear, typically with a tassel just below the spearhead." @@ -58345,7 +58563,7 @@ msgid "naginata" msgid_plural "naginata" msgstr[0] "薙刀" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -58353,7 +58571,7 @@ msgid "" "or by their wives in defense of the household." msgstr "一把結實的長柄武器, 有著彎曲的刀身, 使用的製作手法與日本武士刀類同。古代的日本武士偶爾會使用, 他們的妻子亦會當作自衛武器使用。" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "A sturdy polearm with a curved blade, made in the same manner as the katana " @@ -58361,7 +58579,7 @@ msgid "" "feels a bit shoddily made." msgstr "" -#. ~ Description for {'str_sp': 'naginata'} +#. ~ Description for naginata #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, slightly floppy replica of a Japanese polearm with a curved " @@ -58374,7 +58592,7 @@ msgid "survivor naginata" msgid_plural "survivor naginata" msgstr[0] "生存者薙刀" -#. ~ Description for {'str_sp': 'survivor naginata'} +#. ~ Description for survivor naginata #: lang/json/GENERIC_from_json.py msgid "" "This sturdy steel shaft with a sword blade at the end is good for both " @@ -58496,7 +58714,7 @@ msgid "ji" msgid_plural "ji" msgstr[0] "中式戟" -#. ~ Description for {'str_sp': 'ji'} +#. ~ Description for ji #: lang/json/GENERIC_from_json.py msgid "" "This is a bronze polearm that originated in the Shang dynasty of China, if " @@ -58552,13 +58770,26 @@ msgid "" "offers a good bit of slashing power." msgstr "一些廢鐵條被很粗糙的硬加在原本的木劍上, 所增加的額外重量導致整把武器重心並不平衡, 但其鋸齒狀的刀刃提供了較好的砍擊強度。" +#: lang/json/GENERIC_from_json.py +msgid "metal sword" +msgid_plural "metal swords" +msgstr[0] "" + +#. ~ Description for metal sword +#: lang/json/GENERIC_from_json.py +msgid "" +"An imitation of a true sword forged by someone who knows what swords look " +"like, at least. It has the general shape of a sword, and it is sharp, yet " +"the quality is lacking and the balance isn't quite right." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/TOOL_from_json.py #: lang/json/TOOL_from_json.py msgid "jian" msgid_plural "jian" msgstr[0] "中式劍" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of an ancient Chinese doubled-edged " @@ -58637,14 +58868,14 @@ msgid "tanto" msgid_plural "tanto" msgstr[0] "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a long Japanese knife, typically " "used as a samurai's backup weapon." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/GENERIC_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -58657,14 +58888,14 @@ msgid "nodachi" msgid_plural "nodachi" msgstr[0] "野太刀" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheaply-made replica of a huge, curved, two-handed sword " "from Japan. It is surprisingly light for its size." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/GENERIC_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -58792,7 +59023,7 @@ msgid "katana" msgid_plural "katana" msgstr[0] "" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/GENERIC_from_json.py msgid "This is a dull, cheaply-made replica of a rare sword from Japan." msgstr "" @@ -58855,7 +59086,7 @@ msgid "wakizashi" msgid_plural "wakizashi" msgstr[0] "脇差" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/GENERIC_from_json.py msgid "" "This is a dull, cheap replica of the more common wakizashi. Smaller and " @@ -58915,7 +59146,7 @@ msgid "tiger claws" msgid_plural "tiger claws" msgstr[0] "虎爪" -#. ~ Description for {'str_sp': 'tiger claws'} +#. ~ Description for tiger claws #: lang/json/GENERIC_from_json.py msgid "" "Also called bagh nakha or iron paw, this is a small claw-like bladed weapon " @@ -59129,12 +59360,25 @@ msgid "" "somewhat warm to the touch." msgstr "這是外星樹脂的碎片。它看起來有點像一塊大的海玻璃,結霜而堅韌,邊緣變圓。摸起來竟有點溫暖。" +#: lang/json/GENERIC_from_json.py +msgid "alien fern branch" +msgid_plural "alien fern branches" +msgstr[0] "" + +#. ~ Description for alien fern branch +#: lang/json/GENERIC_from_json.py +msgid "" +"A branching trunk of leaves from a mega fern, about two feet long and a " +"couple of feet across in diameter measuring the leaves. Maybe one day " +"you'll think of something to make with a giant fern." +msgstr "" + #: lang/json/GENERIC_from_json.py msgid "Exodii chassis" msgid_plural "Exodii chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Exodii chassis'} +#. ~ Description for Exodii chassis #: lang/json/GENERIC_from_json.py msgid "" "This roughly hexagonal frame and associated bodywork looks like it was " @@ -59149,7 +59393,7 @@ msgid "Exodii drone chassis" msgid_plural "Exodii drone chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Exodii drone chassis'} +#. ~ Description for Exodii drone chassis #: lang/json/GENERIC_from_json.py msgid "" "This small, roughly hexagonal frame and associated bodywork looks like it " @@ -59190,7 +59434,7 @@ msgid "inscribed metal plates" msgid_plural "inscribed metal plates" msgstr[0] "" -#. ~ Description for {'str_sp': 'inscribed metal plates'} +#. ~ Description for inscribed metal plates #: lang/json/GENERIC_from_json.py msgid "" "This device looks electronic, but is unfamiliar. It is a series of tightly " @@ -59458,7 +59702,7 @@ msgid "scrap copper" msgid_plural "scrap copper" msgstr[0] "銅碎" -#. ~ Description for {'str_sp': 'scrap copper'} +#. ~ Description for scrap copper #: lang/json/GENERIC_from_json.py msgid "A small chunk of copper, usable for crafting or repairs." msgstr "一小塊的銅, 能用於製作或修理。" @@ -59699,7 +59943,7 @@ msgid "splintered wood" msgid_plural "splintered wood" msgstr[0] "碎裂的木頭" -#. ~ Description for {'str_sp': 'splintered wood'} +#. ~ Description for splintered wood #: lang/json/GENERIC_from_json.py msgid "A splintered piece of wood, could be used as a skewer or for kindling." msgstr "一塊木頭碎片, 可以拿來當火種生火或是作串燒。" @@ -59707,7 +59951,7 @@ msgstr "一塊木頭碎片, 可以拿來當火種生火或是作串燒。" #: lang/json/GENERIC_from_json.py msgid "stick" msgid_plural "sticks" -msgstr[0] "" +msgstr[0] "木棍" #. ~ Description for stick #: lang/json/GENERIC_from_json.py @@ -59719,7 +59963,7 @@ msgstr "" #: lang/json/GENERIC_from_json.py msgid "long stick" msgid_plural "long sticks" -msgstr[0] "" +msgstr[0] "長木棍" #. ~ Description for long stick #: lang/json/GENERIC_from_json.py @@ -59903,17 +60147,17 @@ msgid "sealed yeast culture" msgid_plural "sealed yeast culture" msgstr[0] "密封的人工培養酵母" -#. ~ Use action msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "You open the flask and harvest the culture." msgstr "你把這個長頸瓶的蓋子打開, 收成裡頭培養的酵母。" -#. ~ Use action not_ready_msg for {'str_sp': 'sealed yeast culture'}. +#. ~ Use action not_ready_msg for sealed yeast culture. #: lang/json/GENERIC_from_json.py msgid "The yeast isn't done culturing yet." msgstr "酵母尚未培養完成。" -#. ~ Description for {'str_sp': 'sealed yeast culture'} +#. ~ Description for sealed yeast culture #: lang/json/GENERIC_from_json.py msgid "" "A sealed flask holding sanitized yeast wort. You may harvest the yeast " @@ -61030,7 +61274,7 @@ msgid "oars" msgid_plural "oars" msgstr[0] "船槳" -#. ~ Description for {'str_sp': 'oars'} +#. ~ Description for oars #: lang/json/GENERIC_from_json.py msgid "Oars for a boat." msgstr "小船的槳。" @@ -61050,7 +61294,7 @@ msgid "inflatable section" msgid_plural "inflatable section" msgstr[0] "充氣部件" -#. ~ Description for {'str_sp': 'inflatable section'} +#. ~ Description for inflatable section #: lang/json/GENERIC_from_json.py msgid "An inflatable boat section." msgstr "一個充氣船的部件。" @@ -61060,7 +61304,7 @@ msgid "inflatable airbag" msgid_plural "inflatable airbag" msgstr[0] "充氣氣囊" -#. ~ Description for {'str_sp': 'inflatable airbag'} +#. ~ Description for inflatable airbag #: lang/json/GENERIC_from_json.py msgid "An inflatable airbag." msgstr "一個可充氣的安全氣囊。" @@ -61849,7 +62093,7 @@ msgid "chime loudspeakers" msgid_plural "chime loudspeakers" msgstr[0] "音樂鈴擴音器" -#. ~ Description for {'str_sp': 'chime loudspeakers'} +#. ~ Description for chime loudspeakers #: lang/json/GENERIC_from_json.py msgid "" "A stereo system with loudspeakers and a built-in set of simple melodies that" @@ -61862,7 +62106,7 @@ msgid "sheet metal" msgid_plural "sheet metal" msgstr[0] "薄鐵板" -#. ~ Description for {'str_sp': 'sheet metal'} +#. ~ Description for sheet metal #: lang/json/GENERIC_from_json.py msgid "A thin sheet of metal." msgstr "一片薄金屬板。" @@ -61872,7 +62116,7 @@ msgid "wired sheet metal" msgid_plural "wired sheet metal" msgstr[0] "接線薄鐵板" -#. ~ Description for {'str_sp': 'wired sheet metal'} +#. ~ Description for wired sheet metal #: lang/json/GENERIC_from_json.py msgid "Sheet metal that has had housing for lights wired into it." msgstr "一片已有燈座佈線的薄鐵板。" @@ -61892,7 +62136,7 @@ msgid "steel plating" msgid_plural "steel plating" msgstr[0] "鋼鐵裝甲板" -#. ~ Description for {'str_sp': 'steel plating'} +#. ~ Description for steel plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of steel." msgstr "一塊鋼製裝甲板。" @@ -61902,7 +62146,7 @@ msgid "superalloy plating" msgid_plural "superalloy plating" msgstr[0] "超合金裝甲板" -#. ~ Description for {'str_sp': 'superalloy plating'} +#. ~ Description for superalloy plating #: lang/json/GENERIC_from_json.py msgid "A piece of armor plating made of sturdy superalloy." msgstr "一塊由超合金所製成的裝甲版。" @@ -61923,7 +62167,7 @@ msgid "spiked plating" msgid_plural "spiked plating" msgstr[0] "尖刺裝甲板" -#. ~ Description for {'str_sp': 'spiked plating'} +#. ~ Description for spiked plating #: lang/json/GENERIC_from_json.py msgid "" "A piece of armor plating made of steel. It is covered with menacing spikes." @@ -62135,12 +62379,18 @@ msgid_plural "solar panels" msgstr[0] "太陽能板" #. ~ Description for solar panel +#. ~ Description for collapsible solar array #: lang/json/GENERIC_from_json.py msgid "" "Electronic device that can convert solar radiation into electric power. " "Useful for a vehicle." msgstr "一個能將太陽輻射轉為電力的電子元件。這物品能裝在車輛上。" +#: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py +msgid "collapsible solar array" +msgid_plural "collapsible solar arrays" +msgstr[0] "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "reinforced solar panel" msgid_plural "reinforced solar panels" @@ -62260,6 +62510,16 @@ msgstr[0] "車用暖氣" msgid "A vehicle-mounted area heater." msgstr "車載暖器。" +#: lang/json/GENERIC_from_json.py +msgid "small vehicle heater" +msgid_plural "small vehicle heaters" +msgstr[0] "" + +#. ~ Description for small vehicle heater +#: lang/json/GENERIC_from_json.py +msgid "A small vehicle-mounted area heater." +msgstr "" + #: lang/json/GENERIC_from_json.py lang/json/vehicle_part_from_json.py msgid "towel hanger" msgid_plural "towel hangers" @@ -62661,7 +62921,7 @@ msgid "Dana's family sourdough starter" msgid_plural "Dana's family sourdough starter" msgstr[0] "" -#. ~ Description for {'str_sp': "Dana's family sourdough starter"} +#. ~ Description for Dana's family sourdough starter #: lang/json/GENERIC_from_json.py msgid "" "This crusty old jar has a glow-in-the-dark Millennium Falcon decal on the " @@ -62716,7 +62976,7 @@ msgid "bioweapon chassis" msgid_plural "bioweapon chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'bioweapon chassis'} +#. ~ Description for bioweapon chassis #: lang/json/GENERIC_from_json.py msgid "" "This cross between a sea anemone and what you imagine a dragon's mouth would" @@ -62984,7 +63244,7 @@ msgid "broken Isohypsa" msgid_plural "broken Isohypsa" msgstr[0] "" -#. ~ Description for {'str_sp': 'broken Isohypsa'} +#. ~ Description for broken Isohypsa #: lang/json/GENERIC_from_json.py msgid "" "The broken shell of an Isohypsa drone coordinator. Most of its sensors and " @@ -62996,7 +63256,7 @@ msgid "broken Kabura-ya" msgid_plural "broken Kabura-ya" msgstr[0] "" -#. ~ Description for {'str_sp': 'broken Kabura-ya'} +#. ~ Description for broken Kabura-ya #: lang/json/GENERIC_from_json.py msgid "" "A broken Kabura-ya drone. Could be disassembled for a meager amount of " @@ -63109,7 +63369,7 @@ msgid "scrap titanium" msgid_plural "scrap titanium" msgstr[0] "廢鈦" -#. ~ Description for {'str_sp': 'scrap titanium'} +#. ~ Description for scrap titanium #: lang/json/GENERIC_from_json.py msgid "A piece of light titanium, usable for crafting or repairs." msgstr "一塊鈦,可用於製作或修理。" @@ -63119,7 +63379,7 @@ msgid "nuclear waste" msgid_plural "nuclear waste" msgstr[0] "核廢料" -#. ~ Description for {'str_sp': 'nuclear waste'} +#. ~ Description for nuclear waste #: lang/json/GENERIC_from_json.py msgid "A small pellet of silvery metal, still warm to the touch." msgstr "一小塊銀色金屬製顆粒,觸感溫暖。" @@ -63298,7 +63558,7 @@ msgid "tripod chassis" msgid_plural "tripod chassis" msgstr[0] "三足機器人機殼" -#. ~ Description for {'str_sp': 'tripod chassis'} +#. ~ Description for tripod chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63310,7 +63570,7 @@ msgid "Pathfinder chassis" msgid_plural "Pathfinder chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Pathfinder chassis'} +#. ~ Description for Pathfinder chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63322,7 +63582,7 @@ msgid "Regulator chassis" msgid_plural "Regulator chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Regulator chassis'} +#. ~ Description for Regulator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63334,7 +63594,7 @@ msgid "Seneschal chassis" msgid_plural "Seneschal chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Seneschal chassis'} +#. ~ Description for Seneschal chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63346,7 +63606,7 @@ msgid "Likvidator chassis" msgid_plural "Likvidator chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Likvidator chassis'} +#. ~ Description for Likvidator chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63358,7 +63618,7 @@ msgid "Famulus chassis" msgid_plural "Famulus chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Famulus chassis'} +#. ~ Description for Famulus chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. Looking at it" @@ -63370,7 +63630,7 @@ msgid "Udarnik chassis" msgid_plural "Udarnik chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Udarnik chassis'} +#. ~ Description for Udarnik chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63382,7 +63642,7 @@ msgid "Brandspojt chassis" msgid_plural "Brandspojt chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Brandspojt chassis'} +#. ~ Description for Brandspojt chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63394,7 +63654,7 @@ msgid "Surgical Droid chassis" msgid_plural "Surgical Droid chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Surgical Droid chassis'} +#. ~ Description for Surgical Droid chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63406,7 +63666,7 @@ msgid "Aegis chassis" msgid_plural "Aegis chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Aegis chassis'} +#. ~ Description for Aegis chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63418,7 +63678,7 @@ msgid "military robot chassis" msgid_plural "military robot chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'military robot chassis'} +#. ~ Description for military robot chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -63430,7 +63690,7 @@ msgid "military humaniform chassis" msgid_plural "military humaniform chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'military humaniform chassis'} +#. ~ Description for military humaniform chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. You still " @@ -63533,7 +63793,7 @@ msgid "monomeric slurry" msgid_plural "monomeric slurry" msgstr[0] "" -#. ~ Description for {'str_sp': 'monomeric slurry'} +#. ~ Description for monomeric slurry #: lang/json/GENERIC_from_json.py msgid "" "A collection of the building blocks of polymers. With this and a whole lot " @@ -63557,7 +63817,7 @@ msgid "artificial muscle fibers" msgid_plural "artificial muscle fibers" msgstr[0] "人造肌肉纖維" -#. ~ Description for {'str_sp': 'artificial muscle fibers'} +#. ~ Description for artificial muscle fibers #: lang/json/GENERIC_from_json.py msgid "" "Lab-grown or bioprinted muscle fibers; much denser and with higher " @@ -63569,7 +63829,7 @@ msgid "self healing polymers" msgid_plural "self healing polymers" msgstr[0] "自我修復聚合物" -#. ~ Description for {'str_sp': 'self healing polymers'} +#. ~ Description for self healing polymers #: lang/json/GENERIC_from_json.py msgid "" "Materials capable of taking environmental chemicals and utilizing them for " @@ -63593,7 +63853,7 @@ msgid "scrap photonics" msgid_plural "scrap photonics" msgstr[0] "" -#. ~ Description for {'str_sp': 'scrap photonics'} +#. ~ Description for scrap photonics #: lang/json/GENERIC_from_json.py msgid "Small circuits blue and gold, transmitting signals through light." msgstr "" @@ -63623,7 +63883,7 @@ msgid "hypergeometric photonics" msgid_plural "hypergeometric photonics" msgstr[0] "" -#. ~ Description for {'str_sp': 'hypergeometric photonics'} +#. ~ Description for hypergeometric photonics #: lang/json/GENERIC_from_json.py msgid "" "In your hands lies a self-contained digital universe. Its programs glowing " @@ -63943,7 +64203,7 @@ msgid "laser optics" msgid_plural "laser optics" msgstr[0] "" -#. ~ Description for {'str_sp': 'laser optics'} +#. ~ Description for laser optics #: lang/json/GENERIC_from_json.py msgid "" "Lenses, mirrors, emitters and other optical elements that once belonged to a" @@ -64602,7 +64862,7 @@ msgid "enchanted wood" msgid_plural "enchanted wood" msgstr[0] "" -#. ~ Description for {'str_sp': 'enchanted wood'} +#. ~ Description for enchanted wood #: lang/json/GENERIC_from_json.py msgid "Wood that has been infused with mana." msgstr "灌注過法力的木頭。" @@ -65894,7 +66154,7 @@ msgid "subzero talons" msgid_plural "subzero talons" msgstr[0] "" -#. ~ Description for {'str_sp': 'subzero talons'} +#. ~ Description for subzero talons #: lang/json/GENERIC_from_json.py msgid "" "Claws made from ice, able to freeze on contact while mauling foes. You, " @@ -66095,7 +66355,7 @@ msgid "fireproof mortar" msgid_plural "fireproof mortar" msgstr[0] "" -#. ~ Description for {'str_sp': 'fireproof mortar'} +#. ~ Description for fireproof mortar #: lang/json/GENERIC_from_json.py msgid "" "Some alchemical mortar, ready to be used in building projects expecting " @@ -66208,7 +66468,7 @@ msgid "chicken walker chassis" msgid_plural "chicken walker chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'chicken walker chassis'} +#. ~ Description for chicken walker chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -66220,7 +66480,7 @@ msgid "Beagle chassis" msgid_plural "Beagle chassis" msgstr[0] "" -#. ~ Description for {'str_sp': 'Beagle chassis'} +#. ~ Description for Beagle chassis #: lang/json/GENERIC_from_json.py msgid "" "What's left when you remove all moving parts and electronics. It's the " @@ -66294,7 +66554,7 @@ msgstr "生化插件" #: lang/json/ITEM_CATEGORY_from_json.py msgid "CURRENCY" -msgstr "" +msgstr "貨幣" #: lang/json/ITEM_CATEGORY_from_json.py msgid "VEHICLE PARTS" @@ -66556,7 +66816,7 @@ msgstr "" #: lang/json/LOOT_ZONE_from_json.py msgid "Loot: Currency" -msgstr "" +msgstr "戰利品:貨幣" #. ~ Description for Loot: Currency #: lang/json/LOOT_ZONE_from_json.py @@ -67024,6 +67284,17 @@ msgid "" "Removes all monsters from the game, save for those in the WILDLIFE category." msgstr "從遊戲中移除野生動物分類以外的所有怪物。" +#: lang/json/MOD_INFO_from_json.py +msgid "Rummaging" +msgstr "" + +#. ~ Description for Rummaging +#: lang/json/MOD_INFO_from_json.py +msgid "" +"Some furniture containers need to open the door to scavenge, to enhance the " +"thrill of scavenging." +msgstr "" + #: lang/json/MOD_INFO_from_json.py msgid "Stats Through Skills" msgstr "技能提高屬性" @@ -67044,7 +67315,7 @@ msgstr "為郊區和城市的建築提供加固。" #: lang/json/MOD_INFO_from_json.py msgid "Aftershock: Exoplanet" -msgstr "" +msgstr "餘波:系外行星" #. ~ Description for Aftershock: Exoplanet #: lang/json/MOD_INFO_from_json.py @@ -67111,7 +67382,7 @@ msgstr "一個測試中/未完成的模組,用於展示 regional_map_setting #: lang/json/MOD_INFO_from_json.py msgid "Extra Mutated Scenarios" -msgstr "" +msgstr "更多突變開場劇情" #. ~ Description for Extra Mutated Scenarios #: lang/json/MOD_INFO_from_json.py @@ -67120,12 +67391,12 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "No Fungal Growth" -msgstr "" +msgstr "真菌節育" #. ~ Description for No Fungal Growth #: lang/json/MOD_INFO_from_json.py msgid "Removes the exponential growth ability of fungaloids." -msgstr "" +msgstr "停止真菌生物爆炸性增長的能力。" #: lang/json/MOD_INFO_from_json.py msgid "Bionic Professions" @@ -67162,14 +67433,14 @@ msgstr "" #: lang/json/MOD_INFO_from_json.py msgid "sees-player, run, crouch, bleed icons, retrodays" -msgstr "" +msgstr "看到玩家、奔跑、蹲伏、流血標示,適用 retrodays。" #. ~ Description for sees-player, run, crouch, bleed icons, retrodays #: lang/json/MOD_INFO_from_json.py msgid "" "Adds indicator icon if a creature sees the player. Adds status icons for " -"run, crouch, bleeding on top of player tile. Designed for the retrodays " -"tileset." +"run, crouch, prone, bleeding, light on top of player tile. Designed for the" +" retrodays tileset, but works fine with neodays too." msgstr "" #: lang/json/MOD_INFO_from_json.py @@ -67485,6 +67756,11 @@ msgid "" "be prudent to keep your distance." msgstr "" +#. ~ Attack message of monster "Exodii quadruped"'s spell "None" +#: lang/json/MONSTER_from_json.py +msgid "The Exodii quadruped fires its weapon pod!" +msgstr "" + #: lang/json/MONSTER_from_json.py src/monattack.cpp msgid "a chk!" msgstr "咔嚓!" @@ -67863,7 +68139,7 @@ msgid "tiny fish" msgid_plural "tiny fish" msgstr[0] "微型魚" -#. ~ Description for {'str_sp': 'tiny fish'} +#. ~ Description for tiny fish #: lang/json/MONSTER_from_json.py msgid "A tiny fish." msgstr "一尾微小的魚。" @@ -67873,7 +68149,7 @@ msgid "small fish" msgid_plural "small fish" msgstr[0] "小型魚" -#. ~ Description for {'str_sp': 'small fish'} +#. ~ Description for small fish #: lang/json/MONSTER_from_json.py msgid "A small fish." msgstr "一尾小型的魚。" @@ -67883,7 +68159,7 @@ msgid "medium fish" msgid_plural "medium fish" msgstr[0] "中型魚" -#. ~ Description for {'str_sp': 'medium fish'} +#. ~ Description for medium fish #: lang/json/MONSTER_from_json.py msgid "A medium fish." msgstr "一尾中型的魚。" @@ -67893,7 +68169,7 @@ msgid "large fish" msgid_plural "large fish" msgstr[0] "大型魚" -#. ~ Description for {'str_sp': 'large fish'} +#. ~ Description for large fish #: lang/json/MONSTER_from_json.py msgid "A large fish." msgstr "一尾大型的魚。" @@ -67903,7 +68179,7 @@ msgid "huge fish" msgid_plural "huge fish" msgstr[0] "巨型魚" -#. ~ Description for {'str_sp': 'huge fish'} +#. ~ Description for huge fish #: lang/json/MONSTER_from_json.py msgid "A huge fish." msgstr "一尾巨大的魚。" @@ -68028,7 +68304,7 @@ msgid "whitefish" msgid_plural "whitefish" msgstr[0] "白鮭" -#. ~ Description for {'str_sp': 'whitefish'} +#. ~ Description for whitefish #: lang/json/MONSTER_from_json.py msgid "" "A whitefish, closely related to salmon. One can assume they are just as " @@ -68040,7 +68316,7 @@ msgid "largemouth bass" msgid_plural "largemouth bass" msgstr[0] "大嘴鱸魚" -#. ~ Description for {'str_sp': 'largemouth bass'} +#. ~ Description for largemouth bass #: lang/json/MONSTER_from_json.py msgid "A largemouth bass. Very popular with sports fishermen." msgstr "大嘴鱸魚, 非常受到釣客喜愛。" @@ -68050,7 +68326,7 @@ msgid "smallmouth bass" msgid_plural "smallmouth bass" msgstr[0] "小嘴鱸魚" -#. ~ Description for {'str_sp': 'smallmouth bass'} +#. ~ Description for smallmouth bass #: lang/json/MONSTER_from_json.py msgid "" "A smallmouth bass. Being intolerant to pollution in the water, smallmouth " @@ -68062,7 +68338,7 @@ msgid "striped bass" msgid_plural "striped bass" msgstr[0] "銀花鱸魚" -#. ~ Description for {'str_sp': 'striped bass'} +#. ~ Description for striped bass #: lang/json/MONSTER_from_json.py msgid "" "A striped bass. Mostly a salt water fish, they migrate to fresher water to " @@ -68074,7 +68350,7 @@ msgid "white bass" msgid_plural "white bass" msgstr[0] "金眼狼鱸" -#. ~ Description for {'str_sp': 'white bass'} +#. ~ Description for white bass #: lang/json/MONSTER_from_json.py msgid "" "A white bass. Common to the region, a slab-sided and spiny-rayed little " @@ -68108,7 +68384,7 @@ msgid "sunfish" msgid_plural "sunfish" msgstr[0] "太陽魚" -#. ~ Description for {'str_sp': 'sunfish'} +#. ~ Description for sunfish #: lang/json/MONSTER_from_json.py msgid "A sunfish. A small fish related to bass or bluegill." msgstr "太陽魚。一種與鱸魚和藍鰓太陽魚相關的小型魚。" @@ -68118,7 +68394,7 @@ msgid "pumpkinseed sunfish" msgid_plural "pumpkinseed sunfish" msgstr[0] "駝背太陽魚" -#. ~ Description for {'str_sp': 'pumpkinseed sunfish'} +#. ~ Description for pumpkinseed sunfish #: lang/json/MONSTER_from_json.py msgid "A pumpkinseed sunfish. A small fish related to bass or bluegill." msgstr "駝背太陽魚。一種與鱸魚和藍鰓太陽魚相關的小型魚。" @@ -68139,7 +68415,7 @@ msgid "redbreast sunfish" msgid_plural "redbreast sunfish" msgstr[0] "紅胸太陽魚" -#. ~ Description for {'str_sp': 'redbreast sunfish'} +#. ~ Description for redbreast sunfish #: lang/json/MONSTER_from_json.py msgid "A redbreast sunfish. A small fish related to bass or bluegill." msgstr "紅胸太陽魚。一種與鱸魚和藍鰓太陽魚相關的小型魚。" @@ -68149,7 +68425,7 @@ msgid "green sunfish" msgid_plural "green sunfish" msgstr[0] "藍太陽魚" -#. ~ Description for {'str_sp': 'green sunfish'} +#. ~ Description for green sunfish #: lang/json/MONSTER_from_json.py msgid "A green sunfish. A small fish related to bass or bluegill." msgstr "藍太陽魚。一種與鱸魚和藍鰓太陽魚相關的小型魚。" @@ -68159,7 +68435,7 @@ msgid "longear sunfish" msgid_plural "longear sunfish" msgstr[0] "長耳太陽魚" -#. ~ Description for {'str_sp': 'longear sunfish'} +#. ~ Description for longear sunfish #: lang/json/MONSTER_from_json.py msgid "A longear sunfish. A small fish related to bass or bluegill." msgstr "長耳太陽魚。一種與鱸魚和藍鰓太陽魚相關的小型魚。" @@ -68169,7 +68445,7 @@ msgid "redear sunfish" msgid_plural "redear sunfish" msgstr[0] "小冠太陽魚" -#. ~ Description for {'str_sp': 'redear sunfish'} +#. ~ Description for redear sunfish #: lang/json/MONSTER_from_json.py msgid "A redear sunfish. A small fish related to bass or bluegill." msgstr "小冠太陽魚。一種與鱸魚和藍鰓太陽魚相關的小型魚。" @@ -68179,7 +68455,7 @@ msgid "rock bass" msgid_plural "rock bass" msgstr[0] "岩鈍鱸" -#. ~ Description for {'str_sp': 'rock bass'} +#. ~ Description for rock bass #: lang/json/MONSTER_from_json.py msgid "" "A rock bass. Related to sunfish, this tiny fish has a camouflage-like " @@ -68191,7 +68467,7 @@ msgid "calico bass" msgid_plural "calico bass" msgstr[0] "莓鱸" -#. ~ Description for {'str_sp': 'calico bass'} +#. ~ Description for calico bass #: lang/json/MONSTER_from_json.py msgid "A calico bass. A medium-sized fish also known as a 'Crappie'." msgstr "莓鱸。一種中型魚,又被稱為\"刺蓋太陽魚\"。" @@ -68223,7 +68499,7 @@ msgid "channel catfish" msgid_plural "channel catfish" msgstr[0] "斑真鮰" -#. ~ Description for {'str_sp': 'channel catfish'} +#. ~ Description for channel catfish #: lang/json/MONSTER_from_json.py msgid "A channel catfish, they have a forked tail and long whiskers." msgstr "斑真鮰,他們有一個分叉的尾巴和長長的鬍鬚。" @@ -68233,7 +68509,7 @@ msgid "white catfish" msgid_plural "white catfish" msgstr[0] "犀目鮰" -#. ~ Description for {'str_sp': 'white catfish'} +#. ~ Description for white catfish #: lang/json/MONSTER_from_json.py msgid "A white catfish, a small whiskered fish with a broad head." msgstr "犀目鮰,有著長鬍鬚跟寬頭的小型魚。" @@ -68322,7 +68598,7 @@ msgid "fallfish" msgid_plural "fallfish" msgstr[0] "小眼鬚雅羅魚" -#. ~ Description for {'str_sp': 'fallfish'} +#. ~ Description for fallfish #: lang/json/MONSTER_from_json.py msgid "" "A fallfish. These fish are related to gar but without the huge teeth, skin " @@ -68347,7 +68623,7 @@ msgid "crayfish" msgid_plural "crayfish" msgstr[0] "小龍蝦" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "If you could get a hold of a bunch more of these, a hefty pot of boiling " @@ -68376,7 +68652,7 @@ msgid "" " built. Guess they'll get a second chance now that they aren't running." msgstr "一條美洲鰻鱺。在水壩修成之前還是挺常見的。由於大災變之後它們可以到處跑了,看來它們有了第二次繁衍的機會。" -#. ~ Description for {'str_sp': 'crayfish'} +#. ~ Description for crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant crayfish the size of a dog with a brown carapace, claws, and long " @@ -68388,7 +68664,7 @@ msgid "giant crayfish" msgid_plural "giant crayfish" msgstr[0] "巨大淡水龍蝦" -#. ~ Description for {'str_sp': 'giant crayfish'} +#. ~ Description for giant crayfish #: lang/json/MONSTER_from_json.py msgid "" "A mutant, terrestrial variety of the signal crayfish, this massive " @@ -68400,7 +68676,7 @@ msgid "colossal crayfish" msgid_plural "colossal crayfish" msgstr[0] "" -#. ~ Description for {'str_sp': 'colossal crayfish'} +#. ~ Description for colossal crayfish #: lang/json/MONSTER_from_json.py msgid "An enormous mutated gray crayfish with pincer claws and long antennae." msgstr "" @@ -69009,7 +69285,7 @@ msgid "fused dragonflies" msgid_plural "fused dragonflies" msgstr[0] "" -#. ~ Description for {'str_sp': 'fused dragonflies'} +#. ~ Description for fused dragonflies #: lang/json/MONSTER_from_json.py msgid "" "What appears to be a single, enormous insect with a swollen abdomen is " @@ -69182,7 +69458,7 @@ msgstr[0] "" #. ~ Death function message for missile spider #. ~ Death function message for cleaner bot -#. ~ Death function message for {'str_sp': 'unstable flesh-raptor'} +#. ~ Death function message for unstable flesh-raptor #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s explodes!" @@ -70706,7 +70982,7 @@ msgid "Great Pyrenees" msgid_plural "Great Pyrenees" msgstr[0] "大白熊犬" -#. ~ Description for {'str_sp': 'Great Pyrenees'} +#. ~ Description for Great Pyrenees #: lang/json/MONSTER_from_json.py msgid "" "A large and powerful breed, the Great Pyrenees has a beautiful, thick white " @@ -70888,7 +71164,7 @@ msgid "moose" msgid_plural "moose" msgstr[0] "駝鹿" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. While they aren't " @@ -71038,7 +71314,7 @@ msgid_plural "lambs" msgstr[0] "小羊" #. ~ Description for lamb -#. ~ Description for {'str_sp': 'sheep'} +#. ~ Description for sheep #: lang/json/MONSTER_from_json.py msgid "" "A timid, hooved grazing mammal, and one of the first animals ever " @@ -71313,10 +71589,11 @@ msgstr[0] "除錯怪物" #. ~ Death function message for charred nightmare #. ~ Death function message for irradiated wanderer #. ~ Death function message for minion of skeltal -#. ~ Death function message for {'str_sp': 'wisp'} +#. ~ Death function message for wisp #. ~ Death function message for alien dispatch system #. ~ Death function message for animated blade #. ~ Death function message for black pudding +#. ~ Death function message for fiery nightmare #: lang/json/MONSTER_from_json.py #, no-python-format msgid "The %s melts away." @@ -71327,6 +71604,16 @@ msgstr "%s 融化了。" msgid "This monster exists only for testing purposes." msgstr "這個怪物只為了除錯目的而存在。" +#: lang/json/MONSTER_from_json.py +msgid "weakpoint monster" +msgid_plural "weakpoint monsters" +msgstr[0] "" + +#. ~ Description for weakpoint monster +#: lang/json/MONSTER_from_json.py +msgid "This monster exists only for weakpoint testing purposes." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "ancient red dragon" msgid_plural "ancient red dragons" @@ -73408,7 +73695,7 @@ msgid "sawbones" msgid_plural "sawbones" msgstr[0] "" -#. ~ Description for {'str_sp': 'sawbones'} +#. ~ Description for sawbones #: lang/json/MONSTER_from_json.py msgid "" "An overgrowth of ossified tissue has replaced this former medical " @@ -73422,7 +73709,7 @@ msgid "doctor burns" msgid_plural "doctor burns" msgstr[0] "" -#. ~ Description for {'str_sp': 'doctor burns'} +#. ~ Description for doctor burns #: lang/json/MONSTER_from_json.py msgid "" "The pale shuffling corpse of a medical professional. Its skin looks " @@ -73590,7 +73877,7 @@ msgid "unstable flesh-raptor" msgid_plural "unstable flesh-raptor" msgstr[0] "" -#. ~ Description for {'str_sp': 'unstable flesh-raptor'} +#. ~ Description for unstable flesh-raptor #: lang/json/MONSTER_from_json.py msgid "" "This small winged predator darts through the air on three thinly haired " @@ -73701,17 +73988,18 @@ msgstr[0] "殭屍小子" #. ~ Death function message for gasoline zombie #. ~ Death function message for bloated zombie #. ~ Death function message for trapped tendril -#. ~ Death function message for {'str_sp': 'gangrenous flesh'} +#. ~ Death function message for gangrenous flesh #. ~ Death function message for gangrenous crawler #. ~ Death function message for gangrenous impaler -#. ~ Death function message for {'str_sp': 'scissorlimbs'} -#. ~ Death function message for {'str_sp': 'hanging innards'} +#. ~ Death function message for scissorlimbs +#. ~ Death function message for hanging innards #. ~ Death function message for scorched dilophosaurus zombie #. ~ Death function message for scorched ceratosaurus zombie #. ~ Death function message for scorched spinosaurus zombie #. ~ Death function message for scorched allosaurus zombie #. ~ Death function message for scorched acrocanthosaurus zombie #. ~ Death function message for scorched siats zombie +#. ~ Death function message for scorched gorgosaurus zombie #. ~ Death function message for scorched albertosaurus zombie #. ~ Death function message for scorched qianzhousaurus zombie #. ~ Death function message for scorched tyrannosaurus zombie @@ -74118,7 +74406,7 @@ msgid "gangrenous flesh" msgid_plural "gangrenous flesh" msgstr[0] "壞疽血肉" -#. ~ Description for {'str_sp': 'gangrenous flesh'} +#. ~ Description for gangrenous flesh #: lang/json/MONSTER_from_json.py msgid "" "Immobile from grievous wounds, its gray skin has bloated to near rupture " @@ -74159,7 +74447,7 @@ msgid "scissorlimbs" msgid_plural "scissorlimbs" msgstr[0] "" -#. ~ Description for {'str_sp': 'scissorlimbs'} +#. ~ Description for scissorlimbs #: lang/json/MONSTER_from_json.py msgid "" " A nightmarish spider of gore stands tall among the ruins, and keeps silent " @@ -74172,7 +74460,7 @@ msgid "hanging innards" msgid_plural "hanging innards" msgstr[0] "" -#. ~ Description for {'str_sp': 'hanging innards'} +#. ~ Description for hanging innards #: lang/json/MONSTER_from_json.py msgid "" "Great snakes of flesh hang from the ceiling above, madly thrashing and " @@ -74622,7 +74910,7 @@ msgid "Shia LaBeouf" msgid_plural "Shia LaBeouf" msgstr[0] "西亞李畢福" -#. ~ Description for {'str_sp': 'Shia LaBeouf'} +#. ~ Description for Shia LaBeouf #: lang/json/MONSTER_from_json.py msgid "" "Living in the woods,\n" @@ -76371,7 +76659,7 @@ msgid "wisp" msgid_plural "wisp" msgstr[0] "" -#. ~ Description for {'str_sp': 'wisp'} +#. ~ Description for wisp #: lang/json/MONSTER_from_json.py msgid "" "A small, fist sized critter that looks like a floating slug covered in bio-" @@ -76879,7 +77167,7 @@ msgid "coelophysis" msgid_plural "coelophysis" msgstr[0] "" -#. ~ Description for {'str_sp': 'coelophysis'} +#. ~ Description for coelophysis #: lang/json/MONSTER_from_json.py msgid "" "Small, thin predatory bipedal dinosaur with a long head and sharp teeth and " @@ -76891,7 +77179,7 @@ msgid "dilophosaurus" msgid_plural "dilophosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'dilophosaurus'} +#. ~ Description for dilophosaurus #: lang/json/MONSTER_from_json.py msgid "" "A medium dinosaur with sharp teeth and two prominent bony crests on its " @@ -76903,7 +77191,7 @@ msgid "ceratosaurus" msgid_plural "ceratosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'ceratosaurus'} +#. ~ Description for ceratosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large, fast predatory bipedal dinosaur, decorated with three colorful " @@ -76916,7 +77204,7 @@ msgid "spinosaurus" msgid_plural "spinosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'spinosaurus'} +#. ~ Description for spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Meet the king of the river, a huge dinosaur about the size of a small house," @@ -76929,7 +77217,7 @@ msgid "allosaurus" msgid_plural "allosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'allosaurus'} +#. ~ Description for allosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large predatory bipedal dinosaur, with tiger-like stripes on its broad " @@ -76941,7 +77229,7 @@ msgid "acrocanthosaurus" msgid_plural "acrocanthosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'acrocanthosaurus'} +#. ~ Description for acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with a tall ridge running the length of its " @@ -76954,19 +77242,31 @@ msgid "siats" msgid_plural "siats" msgstr[0] "" -#. ~ Description for {'str_sp': 'siats'} +#. ~ Description for siats #: lang/json/MONSTER_from_json.py msgid "" "Huge predatory bipedal dinosaur with long claws and strong arms for " "grappling." msgstr "巨大的肉食性恐龍,有著修長的爪子和強而有力的手臂可以抓住目標。" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus" +msgid_plural "gorgosaurus" +msgstr[0] "" + +#. ~ Description for gorgosaurus +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " +"two small arms and a feathered mullet and tail." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus" msgid_plural "albertosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'albertosaurus'} +#. ~ Description for albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth, fierce eyes, and a powerful frame to drive it forward, with " @@ -76978,7 +77278,7 @@ msgid "qianzhousaurus" msgid_plural "qianzhousaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'qianzhousaurus'} +#. ~ Description for qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal, feather-covered dinosaur has a long, gator-like mouth " @@ -76990,7 +77290,7 @@ msgid "tyrannosaurus rex" msgid_plural "tyrannosaurus rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'tyrannosaurus rex'} +#. ~ Description for tyrannosaurus rex #: lang/json/MONSTER_from_json.py msgid "" "Enormous teeth in a massive jaw, fierce eyes, and a powerful frame to drive " @@ -77002,7 +77302,7 @@ msgid "compsognathus" msgid_plural "compsognathus" msgstr[0] "" -#. ~ Description for {'str_sp': 'compsognathus'} +#. ~ Description for compsognathus #: lang/json/MONSTER_from_json.py msgid "" "A fast moving bipedal dinosaur about the size of a turkey. Its teeth and " @@ -77014,7 +77314,7 @@ msgid "gallimimus" msgid_plural "gallimimus" msgstr[0] "" -#. ~ Description for {'str_sp': 'gallimimus'} +#. ~ Description for gallimimus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks " @@ -77038,7 +77338,7 @@ msgid "nothronychus" msgid_plural "nothronychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'nothronychus'} +#. ~ Description for nothronychus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered bipedal dinosaur with a pot-bellied stomach and a long " @@ -77050,7 +77350,7 @@ msgid "deinonychus" msgid_plural "deinonychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'deinonychus'} +#. ~ Description for deinonychus #: lang/json/MONSTER_from_json.py msgid "" "A medium-sized bipedal dinosaur covered with feathers. At the end of each " @@ -77086,7 +77386,7 @@ msgid "amargasaurus" msgid_plural "amargasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'amargasaurus'} +#. ~ Description for amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a whip-like tail and two " @@ -77098,7 +77398,7 @@ msgid "apatosaurus" msgid_plural "apatosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'apatosaurus'} +#. ~ Description for apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with a long, whip-like tail. The" @@ -77110,7 +77410,7 @@ msgid "brontosaurus" msgid_plural "brontosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'brontosaurus'} +#. ~ Description for brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with bulky torso and long, whip-" @@ -77122,7 +77422,7 @@ msgid "diplodocus" msgid_plural "diplodocus" msgstr[0] "" -#. ~ Description for {'str_sp': 'diplodocus'} +#. ~ Description for diplodocus #: lang/json/MONSTER_from_json.py msgid "Huge, long-necked, four-legged dinosaur with a long, whip-like tail." msgstr "" @@ -77132,7 +77432,7 @@ msgid "camarasaurus" msgid_plural "camarasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'camarasaurus'} +#. ~ Description for camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "Huge four-legged dinosaur with a square head and a shorter neck and tail " @@ -77144,7 +77444,7 @@ msgid "brachiosaurus" msgid_plural "brachiosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'brachiosaurus'} +#. ~ Description for brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "Massive, long-necked, four-legged dinosaur with longer forelegs and a whip-" @@ -77156,7 +77456,7 @@ msgid "alamosaurus" msgid_plural "alamosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'alamosaurus'} +#. ~ Description for alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic four-legged dinosaur with a long neck and spiked tail protected by " @@ -77168,7 +77468,7 @@ msgid "scutellosaurus" msgid_plural "scutellosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'scutellosaurus'} +#. ~ Description for scutellosaurus #: lang/json/MONSTER_from_json.py msgid "" "Small, four-legged dinosaur with five rows of protective plates running down" @@ -77180,7 +77480,7 @@ msgid "stegosaurus" msgid_plural "stegosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'stegosaurus'} +#. ~ Description for stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge slow quadruped dinosaur with plates on its back, and a spiked tail." @@ -77191,7 +77491,7 @@ msgid "dyoplosaurus" msgid_plural "dyoplosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'dyoplosaurus'} +#. ~ Description for dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -77203,7 +77503,7 @@ msgid "ankylosaurus" msgid_plural "ankylosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'ankylosaurus'} +#. ~ Description for ankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "This armored dinosaur looks like a giant prehistoric armadillo. Its tail " @@ -77215,7 +77515,7 @@ msgid "nodosaurus" msgid_plural "nodosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'nodosaurus'} +#. ~ Description for nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo." @@ -77226,7 +77526,7 @@ msgid "edmontonia" msgid_plural "edmontonia" msgstr[0] "" -#. ~ Description for {'str_sp': 'edmontonia'} +#. ~ Description for edmontonia #: lang/json/MONSTER_from_json.py msgid "" "This heavily armored dinosaur looks like a giant prehistoric armadillo with " @@ -77238,7 +77538,7 @@ msgid "camptosaurus" msgid_plural "camptosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'camptosaurus'} +#. ~ Description for camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "A large feathered dinosaur with four strong legs, broad shoulders and a " @@ -77250,7 +77550,7 @@ msgid "parasaurolophus" msgid_plural "parasaurolophus" msgstr[0] "" -#. ~ Description for {'str_sp': 'parasaurolophus'} +#. ~ Description for parasaurolophus #: lang/json/MONSTER_from_json.py msgid "A huge mottled dinosaur with four legs and a blunt head crest." msgstr "" @@ -77260,7 +77560,7 @@ msgid "maiasaura" msgid_plural "maiasaura" msgstr[0] "" -#. ~ Description for {'str_sp': 'maiasaura'} +#. ~ Description for maiasaura #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with hooves and heavy tail. Has a flat beak, thick " @@ -77272,7 +77572,7 @@ msgid "corythosaurus" msgid_plural "corythosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'corythosaurus'} +#. ~ Description for corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge scaly dinosaur with a thick neck and tail and hooves. Has a short " @@ -77284,7 +77584,7 @@ msgid "edmontosaurus" msgid_plural "edmontosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'edmontosaurus'} +#. ~ Description for edmontosaurus #: lang/json/MONSTER_from_json.py msgid "A huge scaly dinosaur with a broad toothless beak." msgstr "" @@ -77294,7 +77594,7 @@ msgid "pachycephalosaurus" msgid_plural "pachycephalosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'pachycephalosaurus'} +#. ~ Description for pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur, standing as tall as a human. It looks like a " @@ -77306,7 +77606,7 @@ msgid "pachyrhinosaurus" msgid_plural "pachyrhinosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'pachyrhinosaurus'} +#. ~ Description for pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which two curved horns " @@ -77318,7 +77618,7 @@ msgid "pentaceratops" msgid_plural "pentaceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'pentaceratops'} +#. ~ Description for pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which four long " @@ -77330,7 +77630,7 @@ msgid "kosmoceratops" msgid_plural "kosmoceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'kosmoceratops'} +#. ~ Description for kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "A cousin of the Triceratops, this beast has returned from extinction. " @@ -77343,7 +77643,7 @@ msgid "torosaurus" msgid_plural "torosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'torosaurus'} +#. ~ Description for torosaurus #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a tall bony crest from which two long " @@ -77355,7 +77655,7 @@ msgid "triceratops" msgid_plural "triceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'triceratops'} +#. ~ Description for triceratops #: lang/json/MONSTER_from_json.py msgid "" "A massive rhino-like dinosaur with a bony crest from which three large horns" @@ -77367,7 +77667,7 @@ msgid "dimorphodon" msgid_plural "dimorphodon" msgstr[0] "" -#. ~ Description for {'str_sp': 'dimorphodon'} +#. ~ Description for dimorphodon #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile over three feet long, with short wings and a big " @@ -77379,7 +77679,7 @@ msgid "pteranodon" msgid_plural "pteranodon" msgstr[0] "" -#. ~ Description for {'str_sp': 'pteranodon'} +#. ~ Description for pteranodon #: lang/json/MONSTER_from_json.py msgid "" "A large feathered flying reptile, with a long pointed toothless beak and a " @@ -77391,7 +77691,7 @@ msgid "quetzalcoatlus" msgid_plural "quetzalcoatlus" msgstr[0] "" -#. ~ Description for {'str_sp': 'quetzalcoatlus'} +#. ~ Description for quetzalcoatlus #: lang/json/MONSTER_from_json.py msgid "" "A huge feathered flying reptile, with a long pointed toothless beak and a " @@ -77403,7 +77703,7 @@ msgid "mosasaurus" msgid_plural "mosasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'mosasaurus'} +#. ~ Description for mosasaurus #: lang/json/MONSTER_from_json.py msgid "" "A huge aquatic reptile about the size of a small house, with a ferocious " @@ -77415,7 +77715,7 @@ msgid "Gallimimus bio-operator" msgid_plural "Gallimimus bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Gallimimus bio-operator'} +#. ~ Description for Gallimimus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A fast-moving feathered bipedal dinosaur dotted with crackling bionics. Its" @@ -77427,7 +77727,7 @@ msgid "Pachycephalosaurus bio-operator" msgid_plural "Pachycephalosaurus bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Pachycephalosaurus bio-operator'} +#. ~ Description for Pachycephalosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered bipedal dinosaur dotted with crackling bionics and sporting a " @@ -77439,7 +77739,7 @@ msgid "Triceratops bio-operator" msgid_plural "Triceratops bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Triceratops bio-operator'} +#. ~ Description for Triceratops bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive three-horned four-legged dinosaur dotted with crackling bionics. " @@ -77451,7 +77751,7 @@ msgid "Velociraptor bio-operator" msgid_plural "Velociraptor bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Velociraptor bio-operator'} +#. ~ Description for Velociraptor bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A small feathered bipedal dinosaur dotted with crackling bionics. Its " @@ -77463,7 +77763,7 @@ msgid "Deinonychus bio-operator" msgid_plural "Deinonychus bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Deinonychus bio-operator'} +#. ~ Description for Deinonychus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A bipedal dinosaur covered with feathers and crackling bionics. Each foot " @@ -77475,7 +77775,7 @@ msgid "Dimorphodon bio-operator" msgid_plural "Dimorphodon bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Dimorphodon bio-operator'} +#. ~ Description for Dimorphodon bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A feathered flying reptile with short wings dotted with crackling bionics " @@ -77487,7 +77787,7 @@ msgid "Spinosaurus bio-operator" msgid_plural "Spinosaurus bio-operator" msgstr[0] "" -#. ~ Description for {'str_sp': 'Spinosaurus bio-operator'} +#. ~ Description for Spinosaurus bio-operator #: lang/json/MONSTER_from_json.py msgid "" "A massive therapod with a huge fin on its back and a crocodile-like snout. " @@ -77584,6 +77884,19 @@ msgid "" "orifices, holding together a shambling mass of mold-covered flesh." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fungal gorgosaurus zombie" +msgid_plural "fungal gorgosaurus zombies" +msgstr[0] "" + +#. ~ Description for fungal gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Once a huge predatory bipedal dinosaur with massive jaws, fungal tendrils " +"now sprout from its mouth, eyes, and other orifices, holding together a " +"shambling mass of mold-covered flesh." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "fungal albertosaurus zombie" msgid_plural "fungal albertosaurus zombies" @@ -78056,6 +78369,11 @@ msgid "dark gray and yellow hatchling" msgid_plural "dark gray and yellow hatchlings" msgstr[0] "" +#: lang/json/MONSTER_from_json.py +msgid "green and magenta hatchling" +msgid_plural "green and magenta hatchlings" +msgstr[0] "" + #: lang/json/MONSTER_from_json.py msgid "red and green hatchling" msgid_plural "red and green hatchlings" @@ -78066,11 +78384,6 @@ msgid "dark gray and white hatchling" msgid_plural "dark gray and white hatchlings" msgstr[0] "" -#: lang/json/MONSTER_from_json.py -msgid "green and magenta hatchling" -msgid_plural "green and magenta hatchlings" -msgstr[0] "" - #: lang/json/MONSTER_from_json.py msgid "amargasaurus hatchling" msgid_plural "amargasaurus hatchlings" @@ -78119,7 +78432,6 @@ msgid_plural "magenta and green two-legged juveniles" msgstr[0] "" #. ~ Description for magenta and green two-legged juvenile -#. ~ Description for brown and white two-legged juvenile #. ~ Description for red and green two-legged juvenile #. ~ Description for gray and white two-legged juvenile #: lang/json/MONSTER_from_json.py @@ -78139,23 +78451,81 @@ msgid "A huge predatory dinosaur juvenile with a large fan on its back." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "brown and white two-legged juvenile" -msgid_plural "brown and white two-legged juveniles" +msgid "juvenile allosaurus" +msgid_plural "juvenile allosauruses" msgstr[0] "" +#. ~ Description for juvenile allosaurus +#: lang/json/MONSTER_from_json.py +msgid "A large bipedal meat-eating dinosaur juvenile." +msgstr "" + #: lang/json/MONSTER_from_json.py -msgid "red and white two-legged juvenile" -msgid_plural "red and white two-legged juveniles" +msgid "acrocanthosaurus juvenile" +msgid_plural "acrocanthosaurus juveniles" msgstr[0] "" -#. ~ Description for red and white two-legged juvenile +#. ~ Description for acrocanthosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "" -"A small, bipedal, meat-eating dinosaur juvenile with huge shiny eyes, it " -"could be from a number of different species." +"Large predatory bipedal dinosaur juvenile with a tall ridge running the " +"length of its back covered with heavy muscles." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "siats juvenile" +msgid_plural "siats juveniles" +msgstr[0] "" + +#. ~ Description for siats juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Large predatory bipedal dinosaur juvenile with long claws and strong arms " +"for grappling." msgstr "" -#. ~ Description for red and white two-legged juvenile +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus juvenile" +msgid_plural "gorgosaurus juveniles" +msgstr[0] "" + +#. ~ Description for gorgosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with two small arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "albertosaurus juvenile" +msgid_plural "albertosaurus juveniles" +msgstr[0] "" + +#. ~ Description for albertosaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"Enormous teeth, fierce eyes, and a powerful frame to drive this juvenile " +"forward, with long strong arms and a feathered mullet and tail." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "qianzhousaurus juvenile" +msgid_plural "qianzhousaurus juveniles" +msgstr[0] "" + +#. ~ Description for qianzhousaurus juvenile +#: lang/json/MONSTER_from_json.py +msgid "" +"This large, bipedal, feather-covered dinosaur juvenile has a long, gator-" +"like mouth with sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "tyrannosaurus juvenile" +msgid_plural "tyrannosaurus juveniles" +msgstr[0] "" + +#. ~ Description for tyrannosaurus juvenile #: lang/json/MONSTER_from_json.py msgid "A huge predatory dinosaur juvenile with large sharp teeth." msgstr "" @@ -78359,6 +78729,18 @@ msgid "" "and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "gorgosaurus zombie" +msgid_plural "gorgosaurus zombie" +msgstr[0] "" + +#. ~ Description for gorgosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws drooling black liquid lifted over a huge shuffling dinosaur " +"corpse." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "albertosaurus zombie" msgid_plural "albertosaurus zombies" @@ -78460,7 +78842,7 @@ msgid "amargasaurus zombie" msgid_plural "amargasaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'amargasaurus zombie'} +#. ~ Description for amargasaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "Huge, long-necked, four-legged dinosaur corpse with two parallel rows of " @@ -78887,6 +79269,7 @@ msgstr[0] "" #. ~ Description for scorched allosaurus zombie #. ~ Description for scorched acrocanthosaurus zombie #. ~ Description for scorched siats zombie +#. ~ Description for scorched gorgosaurus zombie #. ~ Description for scorched albertosaurus zombie #. ~ Description for scorched qianzhousaurus zombie #. ~ Description for scorched tyrannosaurus zombie @@ -78931,6 +79314,11 @@ msgid "scorched siats zombie" msgid_plural "scorched siats zombies" msgstr[0] "" +#: lang/json/MONSTER_from_json.py +msgid "scorched gorgosaurus zombie" +msgid_plural "scorched gorgosaurus zombies" +msgstr[0] "" + #: lang/json/MONSTER_from_json.py msgid "scorched albertosaurus zombie" msgid_plural "scorched albertosaurus zombies" @@ -79296,6 +79684,18 @@ msgid "" "muscles and swollen, festering wounds." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "Gorgosaurus Goliath" +msgid_plural "Gorgosaurus Goliaths" +msgstr[0] "" + +#. ~ Description for Gorgosaurus Goliath +#: lang/json/MONSTER_from_json.py +msgid "" +"Massive jaws lifted by an upright undead dinosaur body bulging with " +"distended muscles and swollen, festering wounds." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "Alberta Anvil" msgid_plural "Alberta Anvils" @@ -79325,7 +79725,7 @@ msgid "Rage Rex" msgid_plural "Rage Rex" msgstr[0] "狂暴暴龍" -#. ~ Description for {'str_sp': 'Rage Rex'} +#. ~ Description for Rage Rex #: lang/json/MONSTER_from_json.py msgid "" "A massive pile of ragged, stinking flesh lifting enormous teeth. Its entire" @@ -79337,7 +79737,7 @@ msgid "Gruesome Gallimimus" msgid_plural "Gruesome Gallimimus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Gruesome Gallimimus'} +#. ~ Description for Gruesome Gallimimus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -79350,7 +79750,7 @@ msgid "Nefarious Nothronychus" msgid_plural "Nefarious Nothronychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Nefarious Nothronychus'} +#. ~ Description for Nefarious Nothronychus #: lang/json/MONSTER_from_json.py msgid "" "The shuffling corpse of a medium-sized bipedal dinosaur covered with " @@ -79404,7 +79804,7 @@ msgid "Anabolic Apatosaurus" msgid_plural "Anabolic Apatosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Anabolic Apatosaurus'} +#. ~ Description for Anabolic Apatosaurus #. ~ Description for Brontosaurus Brute #: lang/json/MONSTER_from_json.py msgid "" @@ -79462,7 +79862,7 @@ msgid "Anabolic Alamosaurus" msgid_plural "Anabolic Alamosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Anabolic Alamosaurus'} +#. ~ Description for Anabolic Alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "Gigantic, four-legged dinosaur corpse with a long neck and a spiked whip-" @@ -79689,11 +80089,23 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "Spinosaurus shady zombie" -msgid_plural "Spinosaurus shady zombies" +msgid "shady ceratosaurus zombie" +msgid_plural "shady ceratosaurus zombie" msgstr[0] "" -#. ~ Description for Spinosaurus shady zombie +#. ~ Description for shady ceratosaurus zombie +#: lang/json/MONSTER_from_json.py +msgid "" +"An uncanny shadow envelops this creature. You can make out the outline of " +"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +msgstr "" + +#: lang/json/MONSTER_from_json.py +msgid "shady spinosaurus zombie" +msgid_plural "shady spinosaurus zombies" +msgstr[0] "" + +#. ~ Description for shady spinosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -79702,61 +80114,62 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Z-Rex" -msgid_plural "shady Z-Rex" +msgid "shady allosaurus zombie" +msgid_plural "shady allosaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Z-Rex'} +#. ~ Description for shady allosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" -" big teeth would fit in it." +" large, bipedal dinosaur with big, sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Albertosaurus" -msgid_plural "shady Albertosaurus" +msgid "shady gorgosaurus zombie" +msgid_plural "shady gorgosaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Albertosaurus'} +#. ~ Description for shady gorgosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" huge, bipedal dinosaur with feathery edges. The head looks big, and below " -"are long, grasping claws." +" huge, bipedal dinosaur with feathery edges. The head looks big, like it " +"could hold many enormous sharp teeth." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ankylosaurus" -msgid_plural "shady Ankylosaurus" +msgid "shady albertosaurus zombie" +msgid_plural "shady albertosaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Ankylosaurus'} +#. ~ Description for shady albertosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, heavily-armored, four-legged dinosaur with a spiked tail." +" huge, bipedal dinosaur with feathery edges. The head looks big, and below " +"are long, grasping claws." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Allosaurus" -msgid_plural "shady Allosaurus" +msgid "shady Z-Rex" +msgid_plural "shady Z-Rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Allosaurus'} +#. ~ Description for shady Z-Rex #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" -" large, bipedal dinosaur with big, sharp teeth." +" huge, bipedal dinosaur with feathery edges. The head looks large - lots of" +" big teeth would fit in it." msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Nothronychus" -msgid_plural "shady Nothronychus" +msgid "shady nothronychus zombie" +msgid_plural "shady nothronychus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Nothronychus'} +#. ~ Description for shady nothronychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -79764,11 +80177,11 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Deinonychus" -msgid_plural "shady Deinonychus" +msgid "shady deinonychus zombie" +msgid_plural "shady deinonychus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Deinonychus'} +#. ~ Description for shady deinonychus zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -79777,11 +80190,11 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Utahraptor" -msgid_plural "shady Utahraptor" +msgid "shady utahraptor zombie" +msgid_plural "shady utahraptor zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Utahraptor'} +#. ~ Description for shady utahraptor zombie #: lang/json/MONSTER_from_json.py msgid "" "An uncanny shadow envelops this creature. You can make out the outline of a" @@ -79790,15 +80203,15 @@ msgid "" msgstr "" #: lang/json/MONSTER_from_json.py -msgid "shady Ceratosaurus" -msgid_plural "shady Ceratosaurus" +msgid "shady ankylosaurus zombie" +msgid_plural "shady ankylosaurus zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'shady Ceratosaurus'} +#. ~ Description for shady ankylosaurus zombie #: lang/json/MONSTER_from_json.py msgid "" -"An uncanny shadow envelops this creature. You can make out the outline of " -"an enormous, bipedal dinosaur with horns, spikes, and big sharp teeth." +"An uncanny shadow envelops this creature. You can make out the outline of a" +" large, heavily-armored, four-legged dinosaur with a spiked tail." msgstr "" #: lang/json/MONSTER_from_json.py @@ -79826,7 +80239,7 @@ msgid "skeletal spinosaurus" msgid_plural "skeletal spinosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal spinosaurus'} +#. ~ Description for skeletal spinosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting enormous, sharp, pointed teeth " @@ -79838,7 +80251,8 @@ msgid "skeletal allosaurus" msgid_plural "skeletal allosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal allosaurus'} +#. ~ Description for skeletal allosaurus +#. ~ Description for skeletal gorgosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -79850,7 +80264,7 @@ msgid "skeletal acrocanthosaurus" msgid_plural "skeletal acrocanthosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal acrocanthosaurus'} +#. ~ Description for skeletal acrocanthosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, curved teeth dripping with " @@ -79862,19 +80276,24 @@ msgid "skeletal siats" msgid_plural "skeletal siats" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal siats'} +#. ~ Description for skeletal siats #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." " There are long claws and strong arms for grappling." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "skeletal gorgosaurus" +msgid_plural "skeletal gorgosaurus" +msgstr[0] "" + #: lang/json/MONSTER_from_json.py msgid "skeletal albertosaurus" msgid_plural "skeletal albertosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal albertosaurus'} +#. ~ Description for skeletal albertosaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -79886,7 +80305,7 @@ msgid "skeletal qianzhousaurus" msgid_plural "skeletal qianzhousaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal qianzhousaurus'} +#. ~ Description for skeletal qianzhousaurus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting a long snout with narrow, pointed " @@ -79910,7 +80329,7 @@ msgid "skeletal gallimimus" msgid_plural "skeletal gallimimus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal gallimimus'} +#. ~ Description for skeletal gallimimus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp teeth dripping with black goo." @@ -79921,7 +80340,7 @@ msgid "skeletal nothronychus" msgid_plural "skeletal nothronychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal nothronychus'} +#. ~ Description for skeletal nothronychus #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -79933,8 +80352,8 @@ msgid "skeletal deinonychus" msgid_plural "skeletal deinonychus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal deinonychus'} -#. ~ Description for {'str_sp': 'Utah Bones'} +#. ~ Description for skeletal deinonychus +#. ~ Description for Utah Bones #: lang/json/MONSTER_from_json.py msgid "" "Monstrous columns of dense bone lifting sharp, pointed teeth dripping with " @@ -79951,7 +80370,7 @@ msgid "armored amargasaurus" msgid_plural "armored amargasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored amargasaurus'} +#. ~ Description for armored amargasaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Amargasaurus has grown even more " @@ -79964,7 +80383,7 @@ msgid "armored apatosaurus" msgid_plural "armored apatosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored apatosaurus'} +#. ~ Description for armored apatosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Apatosaurus has grown dense bone armor, completely covering " @@ -79976,7 +80395,7 @@ msgid "armored brontosaurus" msgid_plural "armored brontosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored brontosaurus'} +#. ~ Description for armored brontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brontosaurus has grown dense bone armor, completely covering " @@ -79988,7 +80407,7 @@ msgid "armored diplodocus" msgid_plural "armored diplodocus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored diplodocus'} +#. ~ Description for armored diplodocus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Diplodocus has grown dense bone armor, completely covering " @@ -80000,7 +80419,7 @@ msgid "armored camarasaurus" msgid_plural "armored camarasaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored camarasaurus'} +#. ~ Description for armored camarasaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Camarasaurus has grown dense body armor, completely covering " @@ -80012,7 +80431,7 @@ msgid "armored brachiosaurus" msgid_plural "armored brachiosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored brachiosaurus'} +#. ~ Description for armored brachiosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Brachiosaurus has grown dense body armor, completely covering" @@ -80024,7 +80443,7 @@ msgid "armored alamosaurus" msgid_plural "armored alamosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored alamosaurus'} +#. ~ Description for armored alamosaurus #: lang/json/MONSTER_from_json.py msgid "" "This zombified Alamosaurus has grown denser bone armor, completely covering " @@ -80036,7 +80455,7 @@ msgid "skeletal stegosaurus" msgid_plural "skeletal stegosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal stegosaurus'} +#. ~ Description for skeletal stegosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Stegosaurus has grown thick bone " @@ -80048,7 +80467,7 @@ msgid "skeletal dyoplosaurus" msgid_plural "skeletal dyoplosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'skeletal dyoplosaurus'} +#. ~ Description for skeletal dyoplosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Dyoplosaurus has grown even denser" @@ -80061,7 +80480,7 @@ msgid "Bone Fortress" msgid_plural "Bone Fortress" msgstr[0] "" -#. ~ Description for {'str_sp': 'Bone Fortress'} +#. ~ Description for Bone Fortress #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Ankylosaurus has grown even denser" @@ -80074,7 +80493,7 @@ msgid "armored nodosaurus" msgid_plural "armored nodosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored nodosaurus'} +#. ~ Description for armored nodosaurus #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -80086,7 +80505,7 @@ msgid "armored edmontonia" msgid_plural "armored edmontonia" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored edmontonia'} +#. ~ Description for armored edmontonia #: lang/json/MONSTER_from_json.py msgid "" "Already heavily protected, this zombified Nodosaurus has grown even denser " @@ -80098,7 +80517,7 @@ msgid "armored camptosaurus" msgid_plural "armored camptosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored camptosaurus'} +#. ~ Description for armored camptosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with strong legs, broad shoulders, and a" @@ -80110,7 +80529,7 @@ msgid "armored maiasaura" msgid_plural "armored maiasaura" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored maiasaura'} +#. ~ Description for armored maiasaura #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a flat beak, thick nose, and small," @@ -80122,7 +80541,7 @@ msgid "armored parasaurolophus" msgid_plural "armored parasaurolophus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored parasaurolophus'} +#. ~ Description for armored parasaurolophus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a blunt head crest has grown dense " @@ -80134,7 +80553,7 @@ msgid "armored corythosaurus" msgid_plural "armored corythosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored corythosaurus'} +#. ~ Description for armored corythosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a short beak and a tall head crest " @@ -80146,7 +80565,7 @@ msgid "armored Edmontosaurus" msgid_plural "armored Edmontosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored Edmontosaurus'} +#. ~ Description for armored Edmontosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, bipedal dinosaur corpse with a broad, toothless beak has grown " @@ -80158,7 +80577,7 @@ msgid "protected pachycephalosaurus" msgid_plural "protected pachycephalosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'protected pachycephalosaurus'} +#. ~ Description for protected pachycephalosaurus #: lang/json/MONSTER_from_json.py msgid "" "This bipedal dinosaur corpse with a hard-looking, domed head has grown dense" @@ -80170,7 +80589,7 @@ msgid "protected pachyrhinosaurus" msgid_plural "protected pachyrhinosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'protected pachyrhinosaurus'} +#. ~ Description for protected pachyrhinosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with massive bony bosses on its nose" @@ -80182,7 +80601,7 @@ msgid "protected pentaceratops" msgid_plural "protected pentaceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'protected pentaceratops'} +#. ~ Description for protected pentaceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest, four long " @@ -80194,7 +80613,7 @@ msgid "armored kosmoceratops" msgid_plural "armored kosmoceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored kosmoceratops'} +#. ~ Description for armored kosmoceratops #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a bony crest and two wavy side " @@ -80206,7 +80625,7 @@ msgid "armored torosaurus" msgid_plural "armored torosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored torosaurus'} +#. ~ Description for armored torosaurus #: lang/json/MONSTER_from_json.py msgid "" "This large, four-legged dinosaur corpse with a tall bony crest and two " @@ -80218,7 +80637,7 @@ msgid "armored triceratops" msgid_plural "armored triceratops" msgstr[0] "" -#. ~ Description for {'str_sp': 'armored triceratops'} +#. ~ Description for armored triceratops #: lang/json/MONSTER_from_json.py msgid "" "This massive, four-legged dinosaur corpse with a tall bony crest and three " @@ -80230,7 +80649,7 @@ msgid "Tyruckusaurus Rex" msgid_plural "Tyruckusaurus Rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'Tyruckusaurus Rex'} +#. ~ Description for Tyruckusaurus Rex #: lang/json/MONSTER_from_json.py msgid "" "Massive piles of ragged, stinking flesh lifting enormous teeth and what " @@ -80243,7 +80662,7 @@ msgid "Tankylosaurus" msgid_plural "Tankylosaurus" msgstr[0] "" -#. ~ Description for {'str_sp': 'Tankylosaurus'} +#. ~ Description for Tankylosaurus #: lang/json/MONSTER_from_json.py msgid "" "Enormous heavily armored zombie dinosaur lifting a spiked tail and what " @@ -80256,7 +80675,7 @@ msgid "Goliath Rex" msgid_plural "Goliath Rex" msgstr[0] "" -#. ~ Description for {'str_sp': 'Goliath Rex'} +#. ~ Description for Goliath Rex #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified tyrannosaurus body towering into the sky. Its" @@ -80268,7 +80687,7 @@ msgid "Ankylosaurus hulk" msgid_plural "Ankylosaurus hulk" msgstr[0] "" -#. ~ Description for {'str_sp': 'Ankylosaurus hulk'} +#. ~ Description for Ankylosaurus hulk #: lang/json/MONSTER_from_json.py msgid "" "A hideously swollen zombified Ankylosaurus body towering into the sky. Its " @@ -80280,7 +80699,7 @@ msgid "Dimorphodon zombie" msgid_plural "Dimorphodon zombie" msgstr[0] "" -#. ~ Description for {'str_sp': 'Dimorphodon zombie'} +#. ~ Description for Dimorphodon zombie #: lang/json/MONSTER_from_json.py msgid "" "The raggedly flying corpse of a feathered reptile over three feet long, " @@ -80318,7 +80737,7 @@ msgid "CROWS II, heavy machinegun" msgid_plural "CROWS II, heavy machinegun" msgstr[0] "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -80333,7 +80752,7 @@ msgid "CROWS II, light machinegun" msgid_plural "CROWS II, light machinegun" msgstr[0] "" -#. ~ Description for {'str_sp': 'CROWS II, light machinegun'} +#. ~ Description for CROWS II, light machinegun #: lang/json/MONSTER_from_json.py msgid "" "A remote weapon system derived from the M153 CROWS II and enhanced with " @@ -80629,7 +81048,7 @@ msgid "forge hounds" msgid_plural "forge hounds" msgstr[0] "" -#. ~ Description for {'str_sp': 'forge hounds'} +#. ~ Description for forge hounds #: lang/json/MONSTER_from_json.py msgid "" "A metallic hound steps out of a nearby angle and growls at you. Run!!!" @@ -80915,7 +81334,7 @@ msgid "hunllef rams" msgid_plural "hunllef rams" msgstr[0] "" -#. ~ Description for {'str_sp': 'hunllef rams'} +#. ~ Description for hunllef rams #: lang/json/MONSTER_from_json.py msgid "" "Hunllef rams, also known as Nightmare Sheep, are a particularly vicious " @@ -81039,6 +81458,21 @@ msgid "" "destroying any signs of humanity in it's territory." msgstr "" +#: lang/json/MONSTER_from_json.py +msgid "fiery nightmare" +msgid_plural "fiery nightmares" +msgstr[0] "" + +#. ~ Description for fiery nightmare +#: lang/json/MONSTER_from_json.py +msgid "" +"A colossal figure which seems to consist entirely of shadows engulfed in " +"flames. Its immense dark wings extend from wall to wall. Two eyes that " +"resemble burning coals are gazing down on you with hatred. In one hand it " +"holds a huge sword, in the other it has a many thonged whip, both glowing " +"with red-hot flames." +msgstr "" + #: lang/json/MONSTER_from_json.py msgid "rotting wolf man" msgid_plural "rotting wolf mans" @@ -81295,7 +81729,7 @@ msgid "animal cracker largemouth bass" msgid_plural "animal cracker largemouth bass" msgstr[0] "" -#. ~ Description for {'str_sp': 'animal cracker largemouth bass'} +#. ~ Description for animal cracker largemouth bass #: lang/json/MONSTER_from_json.py msgid "" "An animal cracker largemouth bass. It leaps from the water in pursuit of " @@ -81559,7 +81993,7 @@ msgid "" " on a set of hydraulic treads and is armed with a M16A4." msgstr "" -#. ~ Description for {'str_sp': 'moose'} +#. ~ Description for moose #: lang/json/MONSTER_from_json.py msgid "" "The Eastern moose, the largest living species of deer. The bulls are quite " @@ -86578,7 +87012,7 @@ msgstr[0] "採礦頭盔 (啟動)" #. ~ Use action menu_text for survivor divemask (on). #. ~ Use action menu_text for XL survivor divemask (on). #. ~ Use action menu_text for thermal electric outfit (on). -#. ~ Use action menu_text for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action menu_text for shooter's earmuffs. #. ~ Use action menu_text for military flight helmet (on). #. ~ Use action menu_text for FB51 optical cloak (on). #. ~ Use action menu_text for combat exoskeleton (on). @@ -86622,7 +87056,7 @@ msgstr "關閉" #. ~ Use action msg for mining helmet (on). #. ~ Use action msg for headlamp (on). #. ~ Use action msg for survivor headlamp (on). -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #. ~ Use action msg for military flight helmet (on). #. ~ Use action msg for hazardous environment helmet (on). #: lang/json/TOOL_ARMOR_from_json.py @@ -87488,7 +87922,7 @@ msgid "RX11 stimulant delivery system" msgid_plural "RX11 stimulant delivery system" msgstr[0] "RX11 興奮劑遞送系統" -#. ~ Description for {'str_sp': 'RX11 stimulant delivery system'} +#. ~ Description for RX11 stimulant delivery system #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The Rivtech RX11 stimulant delivery system is a jet autoinjector system worn" @@ -88057,17 +88491,17 @@ msgid "shooter's earmuffs" msgid_plural "shooter's earmuffs" msgstr[0] "射擊耳罩" -#. ~ Use action msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "You turn the earmuffs on." msgstr "你啟動了射擊耳罩。" -#. ~ Use action need_charges_msg for {'str_sp': "shooter's earmuffs"}. +#. ~ Use action need_charges_msg for shooter's earmuffs. #: lang/json/TOOL_ARMOR_from_json.py msgid "The earmuff's batteries are dead." msgstr "射擊耳罩的電池沒電了。" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. Without batteries or when turned " @@ -88076,7 +88510,7 @@ msgid "" "currently off." msgstr "" -#. ~ Description for {'str_sp': "shooter's earmuffs"} +#. ~ Description for shooter's earmuffs #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A pair of earmuffs favored by shooters. The earmuffs are turned on. They " @@ -88284,7 +88718,6 @@ msgid "You turn the flight helmet on." msgstr "" #. ~ Description for military flight helmet -#. ~ Description for military flight helmet (on) #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A military flight helmet. Adorned with a visor, microphone and a noise " @@ -88297,6 +88730,14 @@ msgid "military flight helmet (on)" msgid_plural "military flight helmets (on)" msgstr[0] "" +#. ~ Description for military flight helmet (on) +#: lang/json/TOOL_ARMOR_from_json.py +msgid "" +"A military flight helmet with various LED's devices blinking periodically. " +"Adorned with a visor, microphone and a noise dampening system. The helmet " +"is also fitted with plastic rails to allow for different load-outs." +msgstr "" + #: lang/json/TOOL_ARMOR_from_json.py msgid "Combo cover" msgid_plural "Combo covers" @@ -88628,7 +89069,7 @@ msgid "bagpipes" msgid_plural "bagpipes" msgstr[0] "風笛" -#. ~ Description for {'str_sp': 'bagpipes'} +#. ~ Description for bagpipes #: lang/json/TOOL_ARMOR_from_json.py msgid "" "A traditional musical instrument using enclosed reeds fed from a reservoir " @@ -89215,7 +89656,7 @@ msgid "Megingjörð" msgid_plural "Megingjörð" msgstr[0] "" -#. ~ Description for {'str_sp': 'Megingjörð'} +#. ~ Description for Megingjörð #: lang/json/TOOL_ARMOR_from_json.py msgid "" "The mythical belt of Thor, god of thunder. Or at least so it appears. It " @@ -89285,7 +89726,7 @@ msgid "escape boots" msgid_plural "escape boots" msgstr[0] "遁逃靴" -#. ~ Description for {'str_sp': 'escape boots'} +#. ~ Description for escape boots #: lang/json/TOOL_ARMOR_from_json.py msgid "" "Rugged yet extremely comfortable and well fitting boots of worn leather and " @@ -89968,7 +90409,7 @@ msgid "autonomous surgical scalpels" msgid_plural "autonomous surgical scalpels" msgstr[0] "自動外科手術刀" -#. ~ Description for {'str_sp': 'autonomous surgical scalpels'} +#. ~ Description for autonomous surgical scalpels #: lang/json/TOOL_from_json.py msgid "" "A system of surgical grade scalpels. They allow you to make precise cuts on" @@ -91665,7 +92106,7 @@ msgid "" "it can be used as both a tool and a weapon." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword, with an ornate " @@ -91673,7 +92114,7 @@ msgid "" " folklore, alongside the dao sabre, qiang spear, and gun staff." msgstr "" -#. ~ Description for {'str_sp': 'jian'} +#. ~ Description for jian #: lang/json/TOOL_from_json.py msgid "" "This is an ancient Chinese doubled-edged straight sword. The sword is quite" @@ -91755,7 +92196,7 @@ msgid "dao" msgid_plural "dao" msgstr[0] "中式刀" -#. ~ Description for {'str_sp': 'dao'} +#. ~ Description for dao #: lang/json/TOOL_from_json.py msgid "" "An ancient Chinese sword consisting of a curved blade and a guard with a " @@ -91802,7 +92243,7 @@ msgid "" "SMGs, if you so want." msgstr "" -#. ~ Description for {'str_sp': 'tanto'} +#. ~ Description for tanto #: lang/json/TOOL_from_json.py msgid "" "Long Japanese knives like this more-modern remake were the samurai's backup " @@ -91810,7 +92251,7 @@ msgid "" "blade, even if it's smaller than its more famous relatives." msgstr "相對於長日本刀, 在較大把的脇差出現前, 是武士們的備用武器。它仍然是把致命的刀具, 即使它比其更著名的親戚小把。" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively-common Japanese short sword. Smaller and lighter " @@ -91841,7 +92282,7 @@ msgid "" "made." msgstr "" -#. ~ Description for {'str_sp': 'nodachi'} +#. ~ Description for nodachi #: lang/json/TOOL_from_json.py msgid "" "This is a huge, curved, two-handed sword from Japan. It is surprisingly " @@ -91927,14 +92368,14 @@ msgid "" "battle a stylish battle." msgstr "這是一把有著華麗護手的細劍。適合紳士與劍客決鬥的武器。輕巧易使, 讓任何戰鬥都變的十分高雅。" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. Deadly against unarmored targets, and " "still very effective against armor." msgstr "一把來自日本的稀有刀劍。能夠對沒有防具的目標造成致命傷害, 對付穿戴護具的目標也很有效。" -#. ~ Description for {'str_sp': 'katana'} +#. ~ Description for katana #: lang/json/TOOL_from_json.py msgid "" "This is a rare sword from Japan. While it's got the right edge and weight, " @@ -91948,7 +92389,7 @@ msgid "" "supposed to be that bendy." msgstr "一把雙手持的巨劍, 源自於德國。你不太確定它是否該如此容易彎曲。" -#. ~ Description for {'str_sp': 'wakizashi'} +#. ~ Description for wakizashi #: lang/json/TOOL_from_json.py msgid "" "This is a comparatively common Japanese short sword. There's something not " @@ -92097,7 +92538,7 @@ msgid "synthetic fabric" msgid_plural "synthetic fabric" msgstr[0] "合成纖維" -#. ~ Description for {'str_sp': 'synthetic fabric'} +#. ~ Description for synthetic fabric #: lang/json/TOOL_from_json.py msgid "" "This is small bolt of synthetic fabric. Unlike you and other natural " @@ -92795,7 +93236,7 @@ msgid "electronic handcuffs" msgid_plural "electronic handcuffs" msgstr[0] "電子手銬" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -94997,9 +95438,9 @@ msgstr "耐用手電筒的電池耗光了。" #: lang/json/TOOL_from_json.py msgid "" "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." -msgstr "這支重型管狀鋁製 LED 手電筒通常供保全人員使用。它也是一把還行的近戰武器。\"使用\" 以啟動它並提供照明, 前提是電池已經充電。" +"security guards. Using this flashlight will turn it on and provide light " +"even underwater, assuming it is charged with batteries." +msgstr "" #: lang/json/TOOL_from_json.py msgid "heavy duty flashlight (on)" @@ -95634,6 +96075,36 @@ msgstr[0] "" msgid "A mold for casting molten metals into different shapes" msgstr "" +#: lang/json/TOOL_from_json.py +msgid "polishing stone" +msgid_plural "polishing stones" +msgstr[0] "" + +#. ~ Description for polishing stone +#: lang/json/TOOL_from_json.py +msgid "A large, natural stone with a flat surface to grind against." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "pedal powered grindstone" +msgid_plural "pedal powered grindstones" +msgstr[0] "" + +#. ~ Description for pedal powered grindstone +#: lang/json/TOOL_from_json.py +msgid "A round, pedal-powered grindstone, useful for grinding metal." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "steel scraper" +msgid_plural "steel scrapers" +msgstr[0] "" + +#. ~ Description for steel scraper +#: lang/json/TOOL_from_json.py +msgid "A hardened steel tool similar to a drawknife, but for metal." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "compressed air horn" msgid_plural "compressed air horns" @@ -96284,7 +96755,7 @@ msgid "shears" msgid_plural "shears" msgstr[0] "羊毛剪" -#. ~ Description for {'str_sp': 'shears'} +#. ~ Description for shears #: lang/json/TOOL_from_json.py msgid "This is a set of shears designed to obtain wool from sheep." msgstr "一把羊毛剪,設計來從綿羊身上取得羊毛。" @@ -96294,7 +96765,7 @@ msgid "electric shears" msgid_plural "electric shears" msgstr[0] "電動羊毛剪" -#. ~ Description for {'str_sp': 'electric shears'} +#. ~ Description for electric shears #: lang/json/TOOL_from_json.py msgid "These electric shears can be used to shear animals quicker." msgstr "這種電動羊毛剪可以用來更快速的幫動物剪毛。" @@ -96335,6 +96806,30 @@ msgid "" "animal to capture, use it on an empty tile to release." msgstr "木製的容器,設計用來運送寵物。使用後選擇合適的動物即可裝入,再次使用它後選擇要放出的方向即可放出。" +#: lang/json/TOOL_from_json.py +msgid "glass terrarium" +msgid_plural "glass terrariums" +msgstr[0] "" + +#. ~ Description for glass terrarium +#: lang/json/TOOL_from_json.py +msgid "" +"A glass container meant to hold plants and/or insects. They come in a " +"variety of sizes." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "survivor giant firefly lamp" +msgid_plural "survivor giant firefly lamps" +msgstr[0] "" + +#. ~ Description for survivor giant firefly lamp +#: lang/json/TOOL_from_json.py +msgid "" +"Some enterprising survivor has decided to turn this terrarium into a light " +"source, using what appear to be a giant firefly and triffid vegetation." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "wooden dog whistle" msgid_plural "wooden dog whistles" @@ -96846,7 +97341,7 @@ msgid "qualitative filter paper" msgid_plural "qualitative filter paper" msgstr[0] "" -#. ~ Description for {'str_sp': 'qualitative filter paper'} +#. ~ Description for qualitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -96859,7 +97354,7 @@ msgid "quantitative filter paper" msgid_plural "quantitative filter paper" msgstr[0] "" -#. ~ Description for {'str_sp': 'quantitative filter paper'} +#. ~ Description for quantitative filter paper #: lang/json/TOOL_from_json.py msgid "" "Filter paper for separating solids from liquids. This filter paper has a " @@ -97305,39 +97800,39 @@ msgid "Mi-go Biotech" msgid_plural "Mi-go Biotech" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_MORALE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (happy)" msgid_plural "%s (happy)" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FOCUS +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (focus)" msgid_plural "%s (focus)" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_PAIN +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (pain relief)" msgid_plural "%s (pain relief)" msgstr[0] "" -#. ~ Conditional name for {'str_sp': 'Mi-go Biotech'} when VAR matches -#. npctalk_var_DISPLAY_NAME_FATIGUE +#. ~ Conditional name for Mi-go Biotech when VAR matches +#. npctalk_var_mbt_f_function #: lang/json/TOOL_from_json.py #, python-format msgid "%s (wake up)" msgid_plural "%s (wake up)" msgstr[0] "" -#. ~ Description for {'str_sp': 'Mi-go Biotech'} +#. ~ Description for Mi-go Biotech #: lang/json/TOOL_from_json.py msgid "A piece of mi-go biotechnology." msgstr "" @@ -97750,7 +98245,7 @@ msgid "patchwork cotton clothing parts" msgid_plural "patchwork cotton clothing parts" msgstr[0] "" -#. ~ Description for {'str_sp': 'patchwork cotton clothing parts'} +#. ~ Description for patchwork cotton clothing parts #: lang/json/TOOL_from_json.py msgid "" "A selection of various clothing parts, could be sewn together in a patchwork" @@ -97969,13 +98464,13 @@ msgid "loose caltrops" msgid_plural "loose caltrops" msgstr[0] "雞爪釘" -#. ~ Use action done_message for {'str_sp': 'loose caltrops'}. +#. ~ Use action done_message for loose caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the caltrops on the %s." msgstr "你把雞爪釘灑在 %s 上。" -#. ~ Description for {'str_sp': 'loose caltrops'} +#. ~ Description for loose caltrops #: lang/json/TOOL_from_json.py msgid "" "These are small metal objects covered with many sharp points. If an " @@ -97987,13 +98482,13 @@ msgid "loose glass caltrops" msgid_plural "loose glass caltrops" msgstr[0] "鬆散的玻璃蒺藜" -#. ~ Use action done_message for {'str_sp': 'loose glass caltrops'}. +#. ~ Use action done_message for loose glass caltrops. #: lang/json/TOOL_from_json.py #, no-python-format msgid "You scatter the glass caltrops on the %s." msgstr "你把玻璃蒺藜撒在 %s 上。" -#. ~ Description for {'str_sp': 'loose glass caltrops'} +#. ~ Description for loose glass caltrops #: lang/json/TOOL_from_json.py msgid "" "These are glass shards glued together to expose their sharp edges. If an " @@ -98426,6 +98921,20 @@ msgid "" "This is a cordless battery-powered drill with a selection of drill bits." msgstr "這是一把無線電鑽, 由電池供電, 供有一套鑽頭可供選擇。" +#: lang/json/TOOL_from_json.py +msgid "cordless impact wrench" +msgid_plural "cordless impact wrenches" +msgstr[0] "" + +#. ~ Description for cordless impact wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This is a cordless battery-powered impact wrench, designed to deliver high " +"torque via an internal rotating hammer. It comes with a standard set of " +"sockets, and makes a loud ratcheting sound when it operates. You could use " +"it to turn large bolts, or even change a vehicle wheel." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric jackhammer" msgid_plural "electric jackhammers" @@ -98688,13 +99197,27 @@ msgid "pliers" msgid_plural "pliers" msgstr[0] "鉗子" -#. ~ Description for {'str_sp': 'pliers'} +#. ~ Description for pliers #: lang/json/TOOL_from_json.py msgid "" "This is a basic pair of slip-joint pliers, able to handle basic mechanical " "work. Anything too complex will require a wrench." msgstr "這是把簡單的鯉魚鉗, 能夠進行基本的機械作業。更複雜的工作需要一個扳手。" +#: lang/json/TOOL_from_json.py +msgid "locking pliers" +msgid_plural "locking pliers" +msgstr[0] "" + +#. ~ Description for locking pliers +#: lang/json/TOOL_from_json.py +msgid "" +"These pliers have extra-hefty jaws, and an adjustable mechanism to clamp " +"them in a locked grip on whatever unfortunate object is trapped between " +"them. They could grip and turn a fairly large bolt head, or clamp two parts" +" together temporarily." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "electric polisher" msgid_plural "electric polishers" @@ -98744,6 +99267,31 @@ msgid "" "to have the right tools for more precise work." msgstr "這是一套同時擁有多種尺寸和多種類型刀片的螺絲刀, 保證讓你有合適的工具做好工作。" +#: lang/json/TOOL_from_json.py +msgid "socket screwdriver set" +msgid_plural "socket screwdriver sets" +msgstr[0] "" + +#. ~ Description for socket screwdriver set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a ratcheting screwdriver with a collection of hex sockets for " +"turning small bolts or nuts, including a couple standard screwdriver bits." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "socket wrench set" +msgid_plural "socket wrench sets" +msgstr[0] "" + +#. ~ Description for socket wrench set +#: lang/json/TOOL_from_json.py +msgid "" +"This is a thick-handled ratchet wrench with an assortment of interchangeable" +" sockets in common hex bolt sizes. You could loosen or tighten fairly large" +" bolts with this, and the ratchet makes a satisfying clicking sound." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "firearm repair kit" msgid_plural "firearm repair kits" @@ -98862,17 +99410,43 @@ msgstr "" "X-Acto 美工刀不適合切割屍體或獵物, 因為實在太小把了。" #: lang/json/TOOL_from_json.py -msgid "wrench" -msgid_plural "wrenches" -msgstr[0] "扳手" +msgid "small adjustable wrench" +msgid_plural "small adjustable wrenches" +msgstr[0] "" + +#. ~ Description for small adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is compact, with a short handle that fits in" +" the palm of the hand. It could be used for turning small hex-head nuts or " +"bolts." +msgstr "" + +#: lang/json/TOOL_from_json.py +msgid "adjustable wrench" +msgid_plural "adjustable wrenches" +msgstr[0] "" -#. ~ Description for wrench +#. ~ Description for adjustable wrench #: lang/json/TOOL_from_json.py msgid "" "This is an adjustable crescent wrench. It could be a decent melee weapon, " "and is used in many mechanics crafting recipes." msgstr "一個可調整的扳手。它能作為不錯的近戰武器, 也能用於許多機械製作配方。" +#: lang/json/TOOL_from_json.py +msgid "large adjustable wrench" +msgid_plural "large adjustable wrenches" +msgstr[0] "" + +#. ~ Description for large adjustable wrench +#: lang/json/TOOL_from_json.py +msgid "" +"This adjustable crescent wrench is unusually large, with a long handle and " +"jaws that widen over two inches. This could easily turn most bolts, and " +"should even work on wheel lug nuts." +msgstr "" + #: lang/json/TOOL_from_json.py msgid "leather hose" msgid_plural "leather hoses" @@ -99150,35 +99724,6 @@ msgid "" "laser cannons." msgstr "" -#: lang/json/TOOL_from_json.py -msgid "inactive chicken walker" -msgid_plural "inactive chicken walkers" -msgstr[0] "未啟動的雙足步行機器人" - -#. ~ Use action friendly_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "" -"The chicken walker rises to its feet, sways away from you and begins " -"surveying the area." -msgstr "" - -#. ~ Use action hostile_msg for inactive chicken walker. -#: lang/json/TOOL_from_json.py -msgid "The chicken walker whirrs and aims directly at you. Take cover!" -msgstr "" - -#. ~ Description for inactive chicken walker -#: lang/json/TOOL_from_json.py -msgid "" -"This is an inactive chicken walker. Using this item involves placing it on " -"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " -"cartridge grenades in your inventory (if you wish to divide your ammunition," -" set aside whatever ammunition you do NOT want to give the robot) and " -"turning it on. If reprogrammed and rewired successfully the chicken walker " -"will then identify you as a friendly, roam around or follow you, and attack " -"all enemies with a built-in firearm and grenade launcher." -msgstr "" - #: lang/json/TOOL_from_json.py msgid "inactive tank drone" msgid_plural "inactive tank drones" @@ -99208,6 +99753,11 @@ msgid "" " all enemies with a built-in firearm and grenade launcher." msgstr "" +#: lang/json/TOOL_from_json.py +msgid "inactive chicken walker" +msgid_plural "inactive chicken walkers" +msgstr[0] "未啟動的雙足步行機器人" + #. ~ Description for inactive chicken walker #: lang/json/TOOL_from_json.py msgid "" @@ -99416,8 +99966,8 @@ msgstr[0] "" #: lang/json/TOOL_from_json.py msgid "" "A small hexapod drone designed to hold small pests, folded into a small cube" -" for easy of storage. Its capable of hunting all sorts of small mammals " -"with remarkable efficiency, but shouldn't be expected to handle anything " +" for easy of storage. Its capable of hunting all sorts of small mammals " +"with remarkable efficiency, but shouldn't be expected to handle anything " "much bigger than a rat." msgstr "" @@ -99831,7 +100381,7 @@ msgid "377-UASTA (weaponized)" msgid_plural "377-UASTA (weaponized)" msgstr[0] "" -#. ~ Description for {'str_sp': '377-UASTA (weaponized)'} +#. ~ Description for 377-UASTA (weaponized) #: lang/json/TOOL_from_json.py msgid "" "A common modification for directed plasma torches that involves the installation of oversize capacitor banks and judiciously bypassed safety mechanisms, allowing them to function as a deadly if decidedly short ranged weapons. In most cases, the resulting \"gun\" can still perform its original metalworking functions, albeit at a much lower efficiency.\n" @@ -100238,7 +100788,7 @@ msgid "" "you!" msgstr "" -#. ~ Description for {'str_sp': 'electronic handcuffs'} +#. ~ Description for electronic handcuffs #: lang/json/TOOL_from_json.py msgid "" "A pair of electronic handcuffs, used by automated New Order units to detain captives. Their continuous siren clearly identifies the wearer as a person of internet and alerts nearby 'safety teams' to their presence. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\n" @@ -100285,7 +100835,7 @@ msgid "" "reach until you can find something better." msgstr "" -#. ~ Description for {'str_sp': 'CROWS II, heavy machinegun'} +#. ~ Description for CROWS II, heavy machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -100302,7 +100852,7 @@ msgid "inactive CROWS II, light machinegun" msgid_plural "inactive CROWS II, light machinegun" msgstr[0] "" -#. ~ Description for {'str_sp': 'inactive CROWS II, light machinegun'} +#. ~ Description for inactive CROWS II, light machinegun #: lang/json/TOOL_from_json.py msgid "" "This is an inactive turret. Using this item involves loading the unit with " @@ -100588,7 +101138,7 @@ 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 "" +msgstr "這顆魔法的小石子上有煉金術與藥劑的徽章。儘管有各種用途,但是它無法適應各學派導致他無法運用在大多數的高階製作中。" #: lang/json/TOOL_from_json.py msgid "Technomancer mana-toolbar" @@ -101227,6 +101777,15 @@ msgid "" " preferred." msgstr "" +#. ~ Description for longsword +#: lang/json/TOOL_from_json.py +msgid "" +"This is a classic medieval sword, the size being in-between the lighter " +"arming sword and later two-handed swords. Thanks to the mysterious silvery " +"metal it was forged from, it is stronger than tempered steel while weighing " +"substantially less." +msgstr "" + #: lang/json/TOOL_from_json.py lang/json/furniture_from_json.py msgid "demon forge" msgid_plural "demon forges" @@ -101274,6 +101833,30 @@ msgstr[0] "" msgid "This is a chunk of hard rock candy. It can be broken down into sugar." msgstr "" +#. ~ Use action friendly_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "" +"The chicken walker rises to its feet, sways away from you and begins " +"surveying the area." +msgstr "" + +#. ~ Use action hostile_msg for inactive chicken walker. +#: lang/json/TOOL_from_json.py +msgid "The chicken walker whirrs and aims directly at you. Take cover!" +msgstr "" + +#. ~ Description for inactive chicken walker +#: lang/json/TOOL_from_json.py +msgid "" +"This is an inactive chicken walker. Using this item involves placing it on " +"the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm " +"cartridge grenades in your inventory (if you wish to divide your ammunition," +" set aside whatever ammunition you do NOT want to give the robot) and " +"turning it on. If reprogrammed and rewired successfully the chicken walker " +"will then identify you as a friendly, roam around or follow you, and attack " +"all enemies with a built-in firearm and grenade launcher." +msgstr "" + #: lang/json/WHEEL_from_json.py lang/json/vehicle_part_from_json.py msgid "yoke and harness" msgid_plural "yokes and harnesses" @@ -102154,8 +102737,8 @@ msgid "Fashion Designer" msgstr "流行設計師" #: lang/json/achievement_from_json.py -msgid "Male, female, and mutant fashion alike." -msgstr "男人,女人,還是突變時尚通通都一樣。" +msgid "From catwalk to cataclysm." +msgstr "" #: lang/json/achievement_from_json.py msgid "Survivalist" @@ -102632,6 +103215,10 @@ msgstr "建造" msgid "mining" msgstr "採礦" +#: lang/json/activity_type_from_json.py +msgid "mopping" +msgstr "" + #: lang/json/activity_type_from_json.py msgid "tidying up" msgstr "整理" @@ -103353,7 +103940,7 @@ msgstr "" #: lang/json/ammunition_type_from_json.py msgid "currency" -msgstr "" +msgstr "貨幣" #: lang/json/ammunition_type_from_json.py msgid "pennies" @@ -103501,15 +104088,14 @@ msgid "" msgstr "扭曲的殘酷命運,一個錯誤執行的CBM手術造成了腳踝會在時走路會嘎嘎作響的狀況。" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Arms" -msgstr "合金鋼鐵 - 手臂" +msgid "Intradermal Alloy - Arms" +msgstr "" -#. ~ Description for Alloy Plating - Arms +#. ~ Description for Intradermal Alloy - Arms #: lang/json/bionic_from_json.py msgid "" -"The flesh on your arms has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your arms " +"and hands, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -103525,37 +104111,36 @@ msgid "" msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - head" -msgstr "合金鋼鐵 - 頭部" +msgid "Intradermal Alloy - head" +msgstr "" -#. ~ Description for Alloy Plating - head +#. ~ Description for Intradermal Alloy - head #: lang/json/bionic_from_json.py msgid "" -"The flesh on your head has been surgically replaced by alloy plating, " -"protecting both your head and jaw regions." +"An advanced protective meshwork has been woven into the flesh on your head " +"and jaw region, protecting your skull from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - Legs" -msgstr "合金鋼鐵 - 腿部" +msgid "Intradermal Alloy - Legs" +msgstr "" -#. ~ Description for Alloy Plating - Legs +#. ~ Description for Intradermal Alloy - Legs #: lang/json/bionic_from_json.py msgid "" -"The flesh on your legs has been surgically replaced by alloy plating. " -"Provides passive protection and can be used in conjunction with bionic " -"martial arts." +"An advanced protective meshwork has been woven into the flesh on your legs " +"and feet, protecting them from physical trauma." msgstr "" #: lang/json/bionic_from_json.py -msgid "Alloy Plating - torso" -msgstr "合金鋼鐵 - 軀幹" +msgid "Intradermal Alloy - torso" +msgstr "" -#. ~ Description for Alloy Plating - torso +#. ~ Description for Intradermal Alloy - torso #: lang/json/bionic_from_json.py msgid "" -"The flesh on your torso has been surgically replaced by alloy plating, " -"protecting it from physical trauma." +"An advanced protective meshwork has been woven into the flesh on your torso," +" protecting it from physical trauma." msgstr "" #: lang/json/bionic_from_json.py @@ -103566,8 +104151,8 @@ msgstr "電池系統" #: lang/json/bionic_from_json.py msgid "" "You have a battery draining attachment, and thus can make use of the energy " -"contained in normal, everyday batteries. Use 'E' to drain charge from a " -"battery. Can be toggled on and off at will." +"contained in normal, everyday batteries. Use bionic menu to drain charge " +"from a battery. Can be toggled on and off at will." msgstr "" #: lang/json/bionic_from_json.py @@ -109093,8 +109678,8 @@ msgstr "你有一個被感染的傷口。" #. ~ Apply message for effect(s) 'Infected, Badly Infected, Pus Filled'. #: lang/json/effects_from_json.py -msgid "Your bite wound feels infected." -msgstr "你的咬傷被感染了。" +msgid "Your wound feels infected." +msgstr "" #. ~ Male memorial apply log for effect(s) 'Infected, Badly Infected, Pus #. Filled'. @@ -113764,8 +114349,7 @@ msgid "" msgstr "" #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/melee.cpp +#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py src/melee.cpp msgid "whack!" msgstr "嘩!" @@ -113781,9 +114365,8 @@ msgid "" "little to stop a moving car." msgstr "" -#: lang/json/furniture_from_json.py lang/json/furniture_from_json.py -#: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/mapdata.cpp src/vehicle_move.cpp +#: lang/json/furniture_from_json.py lang/json/terrain_from_json.py +#: src/mapdata.cpp src/vehicle_move.cpp msgid "smash!" msgstr "碰!" @@ -114459,7 +115042,7 @@ msgstr "一大堆葉子。如果你不關心舒適或溫暖,你可以睡在上 #: lang/json/furniture_from_json.py lang/json/furniture_from_json.py #: lang/json/terrain_from_json.py lang/json/terrain_from_json.py -#: lang/json/terrain_from_json.py src/activity_actor.cpp +#: src/activity_actor.cpp msgid "crunch!" msgstr "匡噹!" @@ -116734,7 +117317,8 @@ msgid "" " the skills." msgstr "" -#: lang/json/furniture_from_json.py +#: lang/json/furniture_from_json.py lang/json/recipe_from_json.py +#: lang/json/recipe_from_json.py msgid "forge" msgstr "鍛造爐" @@ -116856,6 +117440,20 @@ msgid "" "woodworking, if supplied with power from UPS." msgstr "" +#: lang/json/furniture_from_json.py +msgid "firefly terrarium" +msgstr "" + +#. ~ Description for firefly terrarium +#: lang/json/furniture_from_json.py +msgid "" +"While many survivors would have focused on trying to bring back electric " +"lights, whomever lives here has apparently decided to make use of the " +"changes wrought by the cataclysm to provide light. This vivarium contains " +"soil, strange plants you don't recognize immediately, and most strikingly, a" +" giant mutant firefly." +msgstr "" + #. ~ Description for tablesaw #: lang/json/furniture_from_json.py msgid "" @@ -119285,13 +119883,13 @@ msgid "" msgstr "它是 20 世紀最有名的手槍之一。你不叫龐德, 但你可能會發現這個小手槍還是有用的。" #: lang/json/gun_from_json.py -msgid "Kel-Tec P32" -msgid_plural "Kel-Tec P32s" -msgstr[0] "Kel-Tec P32s" +msgid "Kel-Tec P-32" +msgid_plural "Kel-Tec P-32s" +msgstr[0] "" #: lang/json/gun_from_json.py msgid "" -"One of Kel-tec's oldest designs, the P32 is a popular option for deep " +"One of Kel-Tec's oldest designs, the P-32 is a popular option for deep " "concealment and backup usage. Despite its extreme light weight and small " "size, its .32 ACP chambering makes for good handling and recoil control." msgstr "" @@ -119421,15 +120019,15 @@ msgid "" msgstr "" #: lang/json/gun_from_json.py -msgid "Kel-Tec P3AT" -msgid_plural "Kel-Tec P3ATs" -msgstr[0] "Kel-Tec P3ATs" +msgid "Kel-Tec P-3AT" +msgid_plural "Kel-Tec P-3ATs" +msgstr[0] "" #: lang/json/gun_from_json.py msgid "" -"Essentially a slightly scaled up Kel-tec P32 in .380 ACP, the ever popular " -"P3AT offers better ballistics in a small, concealable lightweight package. " -"Handling leaves something to be desired due to snappier recoil and " +"Essentially a slightly scaled up Kel-Tec P-32 in .380 ACP, the ever popular " +"P-3AT offers better ballistics in a small, concealable lightweight package." +" Handling leaves something to be desired due to snappier recoil and " "diminutive controls." msgstr "" @@ -120340,16 +120938,16 @@ msgid "" msgstr "廣為人知的 AK-47 步槍的後繼型號。它結合了 AK 系列的可靠性, 使用高彈速、輕量的 5.45x39mm 子彈。" #: lang/json/gun_from_json.py -msgid "FN Five-Seven" -msgid_plural "FN Five-Sevens" -msgstr[0] "FN Five-Seven" +msgid "FN Five-seveN" +msgid_plural "FN Five-seveNs" +msgstr[0] "" #: lang/json/gun_from_json.py msgid "" -"Designed to work with FN's proprietary 5.7x28mm round, the Five-Seven is a " +"Designed to work with FN's proprietary 5.7x28mm round, the Five-seveN is a " "lightweight pistol with a very high capacity, best used against armored " "opponents." -msgstr "設計用來擊發 FN 的專用 5.7x28mm 子彈, Five-Seven 是一把有個高容量的輕量手槍, 可用來對抗有護具的對手。" +msgstr "" #: lang/json/gun_from_json.py msgid "FN P90" @@ -122455,6 +123053,18 @@ msgid "acid dart gun" msgid_plural "acid dart guns" msgstr[0] "" +#: lang/json/gun_from_json.py +msgid "Rubik's PA md. 68 Battle Rifle" +msgid_plural "Rubik's PA md. 68 Battle Rifles" +msgstr[0] "" + +#: lang/json/gun_from_json.py +msgid "" +"The most popular gun to use the 12.3ln cartridge was, of course, the PA md. 71. Its predecessor, the md. 68, was viewed by many as a sort of failure: although it was reliable and powerful, it was too heavy to be used as a good infantry weapon, and not really heavy enough to be a good support gun. Enough were made, though, that during the zombie apocalypse, it gained a great deal of resurgent popularity as a light emplacement gun that used readily available ammunition. It perfectly served the purposes of the Exodii, who had far less concern about its unwieldiness.\n" +"\n" +"This particular rifle has been painted a dusty pink colour and has a picture of a smiling eel twisting along the barrel." +msgstr "" + #: lang/json/gun_from_json.py msgid "vibrating bioblaster" msgid_plural "vibrating bioblasters" @@ -124795,9 +125405,10 @@ msgstr[0] "兩腳架" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip." -msgstr "兩腳架通常用於步槍與機槍, 用來減少槍管的晃動。雖然兩腳架大幅度增加了對後坐力的控制, 但它們只能在某些表面上使用, 而且裝備需時。" +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip." +msgstr "" #: lang/json/gunmod_from_json.py msgid "modified bipod" @@ -124807,10 +125418,10 @@ msgstr[0] "" #: lang/json/gunmod_from_json.py msgid "" "Bipods are commonly used on rifles and machine guns to provide a forward " -"rest and reduce motion. Although they greatly improve handling of recoil " -"they are usable only on certain surfaces and are slow to equip. This one " -"was modified and customized to mount on pretty much any weapon, if you so " -"want." +"rest and reduce motion. Although they greatly improve handling of recoil, " +"they are usable only on certain surfaces (or from the prone position), and " +"are slow to equip. This one was modified and customized to mount on pretty " +"much any weapon, if you so want." msgstr "" #: lang/json/gunmod_from_json.py @@ -125275,17 +125886,21 @@ msgid "" msgstr "" #: lang/json/harvest_from_json.py -msgid "You gut and fillet the fish" -msgstr "你取出這條魚的內臟並將肉切成片" +msgid "You gut and fillet the fish." +msgstr "" + +#: lang/json/harvest_from_json.py +msgid "You carefully crack open its exoskeleton to get at the flesh beneath." +msgstr "" #: lang/json/harvest_from_json.py -msgid "You carefully crack open its exoskeleton to get at the flesh beneath" -msgstr "你仔細地分裂開它的外骨骼好取得內部的肉體" +msgid "You crack open its hard shell to get at the flesh beneath." +msgstr "" #: lang/json/harvest_from_json.py msgid "" -"You search for any salvageable bionic hardware in what's left of this failed" -" experiment" +"You search for any salvageable hardware in what's left of this failed " +"experiment." msgstr "" #: lang/json/harvest_from_json.py @@ -127823,6 +128438,11 @@ msgid "" "the punishment of combat." msgstr "作為武器, 這件物品製作精良, 並且在戰鬥中非常耐用。" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "You have marked this article to not display a sprite when worn." +msgstr "" + #. ~ Please leave anything in unchanged. #: lang/json/json_flag_from_json.py msgid "You could probably use this to get into a secure science facility." @@ -128659,6 +129279,13 @@ msgstr "這是一個平坦表面。是個吃東西的好地方。" msgid "You can craft here." msgstr "你可以在此製作物品。" +#. ~ Please leave anything in unchanged. +#: lang/json/json_flag_from_json.py +msgid "" +"Burns diesel or JP8 fuel from a tank in the vehicle. Can also burn " +"biodiesel or lamp oil, though somewhat less efficiently." +msgstr "" + #: lang/json/keybinding_from_json.py src/input.cpp src/messages.cpp msgid "Scroll up" msgstr "向上捲動" @@ -128827,6 +129454,10 @@ msgstr "切換面板關閉" msgid "Change side armor is worn on" msgstr "把裝備穿到另一側" +#: lang/json/keybinding_from_json.py +msgid "Toggle armor visibility on character sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Assign invlets to armor" msgstr "自動重定裝備代碼" @@ -129939,6 +130570,10 @@ msgstr "向上移動游標" msgid "Move cursor down" msgstr "向下移動游標" +#: lang/json/keybinding_from_json.py +msgid "Toggle sprite" +msgstr "" + #: lang/json/keybinding_from_json.py msgid "Exit this keybinding screen" msgstr "離開熱鍵設定畫面" @@ -130139,6 +130774,20 @@ msgstr "是" msgid "No" msgstr "否" +#: lang/json/keybinding_from_json.py +msgid "With friends" +msgstr "" + +#: lang/json/keybinding_from_json.py +msgid "Just me" +msgstr "" + +#: lang/json/keybinding_from_json.py src/character_body.cpp +#: src/inventory_ui.cpp src/monexamine.cpp src/npctalk_funcs.cpp +#: src/pickup.cpp src/vehicle_use.cpp +msgid "Cancel" +msgstr "取消" + #: lang/json/keybinding_from_json.py msgid "Quit" msgstr "離開" @@ -131427,13 +132076,13 @@ msgid "A standard 20-round magazine for the Skorpion Vz. 61, in .32 ACP." msgstr "一個標準的 20 發鋼製盒狀彈匣, 能容納 .32 ACP 子彈, 適用於 Vz.61 蠍式衝鋒槍。" #: lang/json/magazine_from_json.py -msgid "P32 7-round magazine" -msgid_plural "P32 7-round magazines" +msgid "P-32 7-round magazine" +msgid_plural "P-32 7-round magazines" msgstr[0] "" #: lang/json/magazine_from_json.py -msgid "A standard 7-round steel box magazine for the Kel-Tec P32." -msgstr "一個標準的 7 發裝鋼製盒式彈匣,適用於 Kel-Tec P32 手槍。" +msgid "A standard 7-round steel box magazine for the Kel-Tec P-32." +msgstr "" #: lang/json/magazine_from_json.py msgid "P226 .357 SIG 12-round magazine" @@ -131489,12 +132138,12 @@ msgid "" msgstr "這個快速裝填器可以容納6發.357麥格農子彈或.38特殊彈,用來快速重新裝填相容的左輪手槍。" #: lang/json/magazine_from_json.py -msgid "P3AT 6-round magazine" -msgid_plural "P3AT 6-round magazines" +msgid "P-3AT 6-round magazine" +msgid_plural "P-3AT 6-round magazines" msgstr[0] "" #: lang/json/magazine_from_json.py -msgid "A standard 6-round steel box magazine for the Kel-Tec P3AT." +msgid "A standard 6-round steel box magazine for the Kel-Tec P-3AT." msgstr "" #: lang/json/magazine_from_json.py @@ -132047,13 +132696,13 @@ msgid "" msgstr "一個 45 發的彈匣。設計上是用於 RPK-74 輕型機關槍, 但亦適用於 AK-74M 步槍。" #: lang/json/magazine_from_json.py -msgid "Five-Seven 20-round magazine" -msgid_plural "Five-Seven 20-round magazines" +msgid "Five-seveN 20-round magazine" +msgid_plural "Five-seveN 20-round magazines" msgstr[0] "" #: lang/json/magazine_from_json.py -msgid "A standard capacity magazine for use with the FN Five-Seven." -msgstr "一個標準容量彈匣, 適用於 FN Five-Seven 手槍。" +msgid "A standard capacity magazine for use with the FN Five-seveN." +msgstr "" #: lang/json/magazine_from_json.py msgid "P90 50-round magazine" @@ -135325,6 +135974,16 @@ msgstr "" msgid "PLEASE No fish cleaning or dish washing." msgstr "" +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Traders Come Well Avaunt" +msgstr "" + +#. ~ Sign +#: lang/json/mapgen_from_json.py +msgid "Enter Side the Other" +msgstr "" + #. ~ Sign #: lang/json/mapgen_from_json.py msgid "Moving away sale!" @@ -135747,8 +136406,8 @@ msgstr "合氣道" #: lang/json/martial_art_from_json.py msgid "" "Aikido is a Japanese martial art focused on self-defense, while minimizing " -"injury to the attacker. It uses defensive throws and disarms but lacks " -"offensive techniques." +"injury to the attacker. It uses defensive throws and disarms but its " +"techniques lack offensive power." msgstr "" #. ~ initiate message for martial art '{'str': 'Aikido'}' @@ -135772,7 +136431,8 @@ msgstr "合氣道架式" msgid "" "By disregarding offensive in favor of self-defense, you are better at protecting.\n" "\n" -"Blocked damage reduced by 100% of Dexterity." +"Blocked damage reduced by 100% of Dexterity, +2 Blocking Effectiveness.\n" +"+1.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -135786,7 +136446,7 @@ msgstr "" msgid "" "An intermediate aikido practitioner can protect themselves against multiple opponents.\n" "\n" -"Blocked Damage reduced by 100% of Dexterity.\n" +"Blocked Damage reduced by 100% of Dexterity, +1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" @@ -135799,9 +136459,38 @@ msgstr "" msgid "" "An advanced aikido practitioner can protect themselves against even more opponents than normal.\n" "\n" +"+1 Blocking Effectiveness.\n" "+1 Block attempts, +1 Dodge attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Fluid Dodging" +msgstr "" + +#. ~ Description of buff 'Fluid Dodging' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth dodge, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Fluid Blocking" +msgstr "" + +#. ~ Description of buff 'Fluid Blocking' for martial art '{'str': 'Aikido'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"After a smooth block, you prepare to counter your foe.\n" +"\n" +"-10% move cost.\n" +"Lasts for 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Boxing" msgstr "拳擊" @@ -135961,7 +136650,7 @@ msgstr "戰舞節奏" #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You didn't miss, it's just part of the dance and the best part is about to start!\n" +"Hit or miss, its just part of the dance! And the best part is about to start!\n" "\n" "+15% Bash damage.\n" "Lasts 2 turns. Stacks 3 times." @@ -135976,9 +136665,9 @@ msgstr "鶴形拳" msgid "" "One of the five Shaolin animal styles. The Crane uses intricate hand " "techniques and jumping dodges. Dexterity determines your damage, rather " -"than Strength; you also receive a dodge bonus move or dodge an attack." +"than Strength; you have a higher chance to dodge and dodging unlocks strong " +"techniques for a limited time." msgstr "" -"少林五形拳的其中一式。鶴形拳使用複雜的手部技法及跳躍閃避。傷害受敏捷影響,而不是受力量影響。同時你也會得到一個有閃避加成的招式或者避開一次攻擊。" #. ~ initiate message for martial art '{'str': 'Crane Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -136007,17 +136696,16 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Crane's Flight" -msgstr "鶴形展翅" +msgid "Crane's Stance" +msgstr "" -#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. ~ Description of buff 'Crane's Stance' for martial art '{'str': 'Crane Kung #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Just like a bird, you take to the air to avoid danger.\n" +"Like the beautiful crane, you are very skilled at evading danger.\n" "\n" -"+1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2.0 Dodging skill." msgstr "" #: lang/json/martial_art_from_json.py @@ -136028,10 +136716,24 @@ msgstr "" #. Fu'}' #: lang/json/martial_art_from_json.py msgid "" -"Much like the crane, you a quick to avoid danger.\n" +"Masters of the Crane style can evade multiple foes with ease.\n" "\n" -"+1 Dodge attempts, +1.0 Dodge skill.\n" -"Lasts 2 turns." +"+2 Dodge attempts." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Crane's Flight" +msgstr "鶴形展翅" + +#. ~ Description of buff 'Crane's Flight' for martial art '{'str': 'Crane Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +msgid "" +"Much like the crane, you a quick to avoid danger and strike back.\n" +"\n" +"+1 Accuracy, +1.0 Dodging skill.\n" +"Enables \"Crane Kick\" and \"Crane Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -136042,11 +136744,11 @@ msgstr "龍形拳" #: lang/json/martial_art_from_json.py msgid "" "One of the five Shaolin animal styles. The Dragon uses fluid movements and " -"hard strikes. Intelligence improves your accuracy instead of Dexterity. " -"Your attacks lead to counterattacks which disable your opponents and set " -"them up for a powerful finishing move." +"hard strikes. Intelligence improves your accuracy and damaage instead of " +"Dexterity and Strength. Dodging and blocking increases your damage. " +"Pausing increases your defenses. You can perform a powerful strike against " +"a downed opponent." msgstr "" -"少林五形拳的其中一式。龍形拳注重流水般的身法和重擊。智力會取代敏捷增加你的命中率。你的攻擊會引導至反擊,使對方無法行動,並能向他們使出強力的追擊。" #. ~ initiate message for martial art '{'str': 'Dragon Kung Fu'}' #: lang/json/martial_art_from_json.py @@ -136060,35 +136762,56 @@ msgid "%s assumes a dragon-like stance." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Flight" -msgstr "龍翔" +msgid "Dragon's Knowledge" +msgstr "" -#. ~ Description of buff 'Dragon's Flight' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" +"Intelligence increases Accuracy instead of Dexterity and melee damage instead of Strength.\n" "\n" -"+1 Accuracy, +2 bash Damage.\n" -"Enables \"Dragon Vortex Block\" and \"Dragon Wing Dodge\"\n" -"Lasts 1 turn." +"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity. Bash damage increased by 75% of Intelligence but decreased by 75% of Strength." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Dragon's Knowledge" +msgid "Dragon Wing" msgstr "" -#. ~ Description of buff 'Dragon's Knowledge' for martial art '{'str': 'Dragon +#. ~ Description of buff 'Dragon Wing' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#. ~ Description of buff 'Dragon's Vortex' for martial art '{'str': 'Dragon #. Kung Fu'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"You plan your attack far in advance relying on your intuition instead of your speed to strike true.\n" -"Intelligence increases Accuracy instead of Dexterity.\n" +"Life and combat are a circle. An attack leads to a counter and to an attack once again. Seek to complete this loop.\n" +"\n" +"+10% bash damage.\n" +"Lasts 3 turns." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Dragon Power" +msgstr "" + +#. ~ Description of buff 'Dragon Power' for martial art '{'str': 'Dragon Kung +#. Fu'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You take a moment to reflect on battles past and to come. This insight will protect from future harm.\n" "\n" -"Accuracy increased by 25% of Intelligence but decreased by 25% of Dexterity." +"+2 Block Effectiveness, Blocked damage reduced by +100% of Intelligence, +1.0 Dodging skill.\n" +"Lasts 2 turns." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Dragon's Vortex" +msgstr "龍漩" + #: lang/json/martial_art_from_json.py msgid "Eskrima" msgstr "菲律賓劍棍術" @@ -136179,6 +136902,20 @@ msgid "" "Blocked damage reduced by 50% of Dexterity." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Counter Time" +msgstr "" + +#. ~ Description of buff 'Counter Time' for martial art '{'str': 'Fencing'}' +#: lang/json/martial_art_from_json.py +msgid "" +"You fake an attack and prepare yourself to unleash a Compound Attack.\n" +"\n" +"+2 Block Effectiveness.\n" +"Enables \"Compound Attack\" technique.\n" +"Lasts 2 turns." +msgstr "" + #: lang/json/martial_art_from_json.py lang/json/technique_from_json.py msgid "Parry" msgstr "格擋" @@ -136236,7 +136973,7 @@ msgstr "" msgid "" "You are stalwart and will not budge against any threat.\n" "\n" -"+2 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." +"+2 Blocking Effectiveness, +1 Block attempts, -1.0 Dodge skill, blocked damage reduced by 50% of Strength." msgstr "" #: lang/json/martial_art_from_json.py @@ -136250,8 +136987,9 @@ msgstr "" msgid "" "You moved and nullified the effects of Stand Your Ground!\n" "\n" -"-2 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" -"Lasts 1 turn." +"-2 Blocking Effectiveness, -1 Block attempts, +1.0 Dodge skill, blocked damaged increased by 50% of Strength.\n" +"Prevents \"High Round Strike and Hook\" technique.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -136265,6 +137003,7 @@ msgid "" "Each successful block reveals an opening in your opponent's guard.\n" "\n" "+1 Accuracy.\n" +"Enables \"Displace and Hook\" technique.\n" "Lasts 1 turn. Stacks 3 times." msgstr "" @@ -136316,6 +137055,19 @@ msgid "" "In addition, you can counter grabs and takedown attacks with a judo throw." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Perfect Position" +msgstr "" + +#. ~ Description of buff 'Perfect Position' for martial art '{'str': 'Judo'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You've moved into a perfect position to counter attack!.\n" +"\n" +"+30% Bash damage." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Karate" msgstr "空手道" @@ -136402,6 +137154,21 @@ msgid "" "+1 Accuracy, +1 Block attempts." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Strike Vitals" +msgstr "" + +#. ~ Description of buff 'Strike Vitals' for martial art '{'str': 'Krav +#. Maga'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"Like a foe, your opponent has left themselves wide.\n" +"\n" +"+5% critical hit chance.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Leopard Kung Fu" msgstr "豹形拳" @@ -136548,6 +137315,21 @@ msgid "" "Enables Grab and Lethal Strike" msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Mastercut" +msgstr "" + +#. ~ Description of buff 'Mastercut' for martial art '{'str': 'Medieval +#. Swordsmanship'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You parry and return the attack with greater vigor!\n" +"\n" +"+10% damage, -10 move cost\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Muay Thai" msgstr "泰拳" @@ -136888,16 +137670,17 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Silat Evasion" +msgid "Silat Ambush" msgstr "" -#. ~ Description of buff 'Silat Evasion' for martial art '{'str': 'Silat'}' +#. ~ Description of buff 'Silat Ambush' for martial art '{'str': 'Silat'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"You stay low as you move, making it harder for enemies to pin you down.\n" +"You stay low as you move, making it harder for enemies to defend against you.\n" "\n" -"+1 Dodge attempts.\n" -"Lasts 2 turn." +"+5% critical hit chance.\n" +"Lasts 1 turn." msgstr "" #: lang/json/martial_art_from_json.py @@ -137000,7 +137783,7 @@ msgstr "日本槍術架式" msgid "" "Your training grants better defense while using a polearm.\n" "\n" -"+1 Block attempt." +"+1 Block attempt, +2 Block Effectiveness." msgstr "" #: lang/json/martial_art_from_json.py @@ -137111,33 +137894,33 @@ msgid "" msgstr "" #: lang/json/martial_art_from_json.py -msgid "Repulse the Monkey" -msgstr "倒攆猴" +msgid "Cross Hands" +msgstr "十字手" -#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai -#. Chi'}' +#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" +"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" "\n" -"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" -"Lasts 2 turns." +"+2 Block Effectiveness, blocked damage reduced by 50% of Perception.\n" +"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Cross Hands" -msgstr "十字手" +msgid "Repulse the Monkey" +msgstr "倒攆猴" -#. ~ Description of buff 'Cross Hands' for martial art '{'str': 'Tai Chi'}' +#. ~ Description of buff 'Repulse the Monkey' for martial art '{'str': 'Tai +#. Chi'}' #: lang/json/martial_art_from_json.py #, no-python-format msgid "" -"By taking a moment to prepare yourself, you are able to use your entire body fully for attacking and defending.\n" +"By perfectly positioning yourself and your opponent, you have become more accurate and can bypass your opponent's defenses.\n" "\n" -"+1.0 Dodge skill, blocked damage reduced by 50% of Perception.\n" -"Enables \"Palm Strike\" and \"Double Palm Strike\" techniques.\n" -"Lasts 3 turns." +"Accuracy increased by 20% of Perception, gain bash Armor Penetration equal to 50% of Perception.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -137259,7 +138042,7 @@ msgstr "黐手" msgid "" "You have a greater understanding of balance and technique. This gives you a better chance to avoid your opponent's attacks.\n" "\n" -" Dodging Skill increased by 15% of Perception. Blocked damage reduced by 50% of Perception." +" Dodging Skill increased by 25% of Perception. Blocked damage reduced by 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -137457,6 +138240,21 @@ msgid "" "+2 Blocks attempts, +1 Accuracy." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Binary Hardening" +msgstr "" + +#. ~ Description of buff 'Binary Hardening' for martial art '{'str': 'Bionic +#. Combatives'}' +#: lang/json/martial_art_from_json.py +msgid "" +"player@CDDA:/root$ sudo apt install improved-armor\n" +"player@CDDA:/root$ sudo apt update\n" +"\n" +"+3 Bash, Cut, and Stab Armor.\n" +"Lasts 3 turns. Stacks 3 times." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Optimization" msgstr "" @@ -137517,10 +138315,11 @@ msgstr "" #. ~ Description of buff 'Centipede's Venom' for martial art '{'str': #. 'Centipede Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom burns your opponents at the worst of times.\n" "\n" -"+2 bashing damage.\n" +"+15% damage.\n" "Lasts 2 turns." msgstr "" @@ -137621,10 +138420,11 @@ msgstr "" #. ~ Description of buff 'Scorpion's Venom' for martial art '{'str': 'Scorpion #. Kung Fu'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "Your venom is a constant threat that nothing can escape from.\n" "\n" -"+2 bashing damage." +"+15% damage." msgstr "" #: lang/json/martial_art_from_json.py @@ -138268,7 +139068,22 @@ msgid "" "\"Shadow Tracking\"\n" "As a künstler, you are trained to stay in your target's blind spot.\n" "\n" -"+1 Dodge attemps, Dodge Skill increased by 12%% of Perception." +"+1 Dodge attemps, Dodging Skill increased by 15%% of Perception." +msgstr "" + +#: lang/json/martial_art_from_json.py +msgid "Seinerweisen" +msgstr "" + +#. ~ Description of buff 'Seinerweisen' for martial art '{'str': 'Panzer +#. Kunst'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"\"Personal Wisdom\"\n" +"Through your mastery of Panzer Kunst, you have earned the ability to manipulate deadly plasma into all of your attacks!\n" +"\n" +"Gain bonus Electric damage equal to 50% of Perception." msgstr "" #: lang/json/martial_art_from_json.py @@ -138278,11 +139093,12 @@ msgstr "" #. ~ Description of buff 'Einzug Rüstungen' for martial art '{'str': 'Panzer #. Kunst'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" "\"Armor Penetration\"\n" "By attuning to the rhythm of your opponent, you can strike where their guard is the weakest.\n" -"+5 bash Armor Penetration.\n" -"Lasts 2 turns." +"+1 Accuracy, gain Armor Penetration equal to 50% of Perception.\n" +"Lasts 3 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -138376,6 +139192,20 @@ msgstr "" msgid "%s shifts their weight and assumes a new stance." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Feigned Opening" +msgstr "" + +#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. Sun'}' +#: lang/json/martial_art_from_json.py +msgid "" +"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"\n" +"+20 Speed.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Baffling Defense" msgstr "" @@ -138388,21 +139218,22 @@ msgid "" "You ready yourself for your opponent attack while preparing to send them flying!\n" "\n" "Dodging Skill increased by 20% of Intelligence, enables \"Mighty Throw\" and \"Ballista Throw\" techniques.\n" -"Lasts 1 turn." +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py -msgid "Feigned Opening" +msgid "Fool's Strike" msgstr "" -#. ~ Description of buff 'Feigned Opening' for martial art '{'str': 'Setting +#. ~ Description of buff 'Fool's Strike' for martial art '{'str': 'Setting #. Sun'}' #: lang/json/martial_art_from_json.py +#, no-python-format msgid "" -"By faking an opening, you able to throw your opponent off balance and act quicker for a short time.\n" +"You moved in such a deceptived that you have turned your opponent's attack against them.\n" "\n" -"+20 Speed.\n" -"Lasts 1 turn." +"+20% bash damage.\n" +"Lasts 2 turns." msgstr "" #: lang/json/martial_art_from_json.py @@ -138480,6 +139311,20 @@ msgid "" "+1 block attempts, +1 block effectiveness." msgstr "" +#: lang/json/martial_art_from_json.py +msgid "Flowing Water" +msgstr "" + +#. ~ Description of buff 'Flowing Water' for martial art '{'str': 'Shii-Cho'}' +#: lang/json/martial_art_from_json.py +#, no-python-format +msgid "" +"You are able to deflect an attack and counter in the same motion.\n" +"\n" +"-25% move cost.\n" +"Lasts 1 turn." +msgstr "" + #: lang/json/martial_art_from_json.py msgid "Stone Dragon" msgstr "" @@ -140129,7 +140974,7 @@ msgstr "我不覺得我們得手了。" msgid "Kill your pursuer" msgstr "" -#. ~ Description for mission '{'str': 'Kill your pursuer'}' +#. ~ Description for mission 'Kill your pursuer' #: lang/json/mission_def_from_json.py msgid "" "Since the start of the Cataclysm, something has been hunting you " @@ -140330,7 +141175,7 @@ msgstr "抵達別墅並完成運送" msgid "Refuel your helicopter." msgstr "為你的直升機加油。" -#. ~ Description for mission '{'str': 'Refuel your helicopter.'}' +#. ~ Description for mission 'Refuel your helicopter.' #: lang/json/mission_def_from_json.py msgid "" "You were flying towards a nearby private airport before your forced landing." @@ -140537,7 +141382,7 @@ msgstr "" msgid "Prove You're A Survivor" msgstr "" -#. ~ Description for mission '{'str': "Prove You're A Survivor"}' +#. ~ Description for mission 'Prove You're A Survivor' #: lang/json/mission_def_from_json.py msgid "" "Prove you're a survivor by surviving for 10 days after the Cataclysm, and " @@ -140591,8 +141436,7 @@ msgstr "" msgid "Gather cattail stalks to create cattail jelly" msgstr "採集香蒲秸稈來做成香蒲膠質" -#. ~ Description for mission '{'str': 'Gather cattail stalks to create cattail -#. jelly'}' +#. ~ Description for mission 'Gather cattail stalks to create cattail jelly' #: lang/json/mission_def_from_json.py msgid "" "Gather 80 cattail stalks from the swamp and bring " @@ -140755,7 +141599,7 @@ msgstr "" msgid "Protect fisherman's daughter" msgstr "保護漁夫的女兒" -#. ~ Description for mission '{'str': "Protect fisherman's daughter"}' +#. ~ Description for mission 'Protect fisherman's daughter' #: lang/json/mission_def_from_json.py msgid "She looks like a nice girl. Maybe you should not let her die?" msgstr "她看起來是個好女孩。也許你不該讓她死?" @@ -140769,7 +141613,7 @@ msgstr "" msgid "Lighthouse" msgstr "燈塔" -#. ~ Description for mission '{'str': 'Lighthouse'}' +#. ~ Description for mission 'Lighthouse' #: lang/json/mission_def_from_json.py msgid "Lead Mikhail to lighthouse." msgstr "帶 Mikhail 去燈塔。" @@ -140808,7 +141652,7 @@ msgstr "" msgid "House cleaning" msgstr "" -#. ~ Description for mission '{'str': 'House cleaning'}' +#. ~ Description for mission 'House cleaning' #: lang/json/mission_def_from_json.py msgid "Clean lighthouse from with Mikhail." msgstr "和 Mikhail 一起清理燈塔裡的。" @@ -140843,7 +141687,7 @@ msgstr "" msgid "Fisherman's family" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's family"}' +#. ~ Description for mission 'Fisherman's family' #: lang/json/mission_def_from_json.py msgid "Mikhail asked you to bring back his family." msgstr "Mikhail 讓你把他家人帶回來。" @@ -140874,7 +141718,7 @@ msgstr "" msgid "Fisherman's boat" msgstr "" -#. ~ Description for mission '{'str': "Fisherman's boat"}' +#. ~ Description for mission 'Fisherman's boat' #: lang/json/mission_def_from_json.py msgid "Help Mikhail make a boat. Bring 250 nails." msgstr "幫 Mikhail 造條船。帶250顆鐵釘來。" @@ -140916,7 +141760,7 @@ msgstr "" msgid "Fixing lighthouse" msgstr "" -#. ~ Description for mission '{'str': 'Fixing lighthouse'}' +#. ~ Description for mission 'Fixing lighthouse' #: lang/json/mission_def_from_json.py msgid "" "Mikhail asked you to find someone, who have enough expertise to fix the " @@ -140958,16 +141802,50 @@ msgstr "" msgid "Protect fisherman's wife" msgstr "" -#. ~ Description for mission '{'str': "Protect fisherman's wife"}' +#. ~ Description for mission 'Protect fisherman's wife' #: lang/json/mission_def_from_json.py msgid "She looks like a nice woman. Maybe you should not let her die?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Bring 6L of anesthetic to Rubik" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If'n us'll to add the metal an' plastic for ye, us'll need two jars o' them " +"anus-feticks, one for your thinkin'-meat an' one for our stock." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "King's own luck!" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "That be a choice an' you can tass. Come back to this'n if you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check round the chirurgery an' such, I'd razz." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Us'n waits patient-like for those kits." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. We can pass it in when you like." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Fine an' fine. Come back to this'n if you like to try again." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Picky Meals" msgstr "" -#. ~ Description for mission '{'str': 'Picky Meals'}' +#. ~ Description for mission 'Picky Meals' #: lang/json/mission_def_from_json.py msgid "Find 100 salt." msgstr "尋找 100 個鹽。" @@ -141014,7 +141892,7 @@ msgstr "" msgid "Pickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Pickled Meals'}' +#. ~ Description for mission 'Pickled Meals' #: lang/json/mission_def_from_json.py msgid "Find 5 glass jars." msgstr "尋找 5 個玻璃罐。" @@ -141064,7 +141942,7 @@ msgstr "" msgid "Prickled Meals" msgstr "" -#. ~ Description for mission '{'str': 'Prickled Meals'}' +#. ~ Description for mission 'Prickled Meals' #: lang/json/mission_def_from_json.py msgid "Find a butcher knife." msgstr "尋找 1 把菜刀。" @@ -141106,7 +141984,7 @@ msgstr "我非常感激你為我做的一切。" msgid "Busy While Work" msgstr "" -#. ~ Description for mission '{'str': 'Busy While Work'}' +#. ~ Description for mission 'Busy While Work' #: lang/json/mission_def_from_json.py msgid "Find 3 mystery novels." msgstr "尋找 3 本推理小說。" @@ -141155,7 +142033,7 @@ msgstr "好吧。我可以讀些別的。" msgid "Timber!" msgstr "" -#. ~ Description for mission '{'str': 'Timber!'}' +#. ~ Description for mission 'Timber!' #: lang/json/mission_def_from_json.py msgid "Bring five logs." msgstr "" @@ -141182,7 +142060,7 @@ msgstr "" msgid "Sweets" msgstr "" -#. ~ Description for mission '{'str': 'Sweets'}' +#. ~ Description for mission 'Sweets' #: lang/json/mission_def_from_json.py msgid "Find 25 blackberries." msgstr "" @@ -141217,7 +142095,7 @@ msgstr "" msgid "Visit the Isherwoods" msgstr "" -#. ~ Description for mission '{'str': 'Visit the Isherwoods'}' +#. ~ Description for mission 'Visit the Isherwoods' #: lang/json/mission_def_from_json.py msgid "" "There is a family that nearby that I'd like you to check in on. After you " @@ -142094,7 +142972,7 @@ msgstr "我會盡力向隊長匯報信號調查的最新狀況。" msgid "Angry pizzaiolo" msgstr "" -#. ~ Description for mission '{'str': 'Angry pizzaiolo'}' +#. ~ Description for mission 'Angry pizzaiolo' #: lang/json/mission_def_from_json.py msgid "" "Find some gasoline and then travel to the destination together with " @@ -142129,7 +143007,7 @@ msgstr "" msgid "Find TrueFoodperson" msgstr "" -#. ~ Description for mission '{'str': 'Find TrueFoodperson'}' +#. ~ Description for mission 'Find TrueFoodperson' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo find TrueFoodperson and kick his ass." msgstr "" @@ -142166,7 +143044,7 @@ msgstr "" msgid "Pizza parlor" msgstr "" -#. ~ Description for mission '{'str': 'Pizza parlor'}' +#. ~ Description for mission 'Pizza parlor' #: lang/json/mission_def_from_json.py msgid "Help pizzaiolo take back his restaurant." msgstr "" @@ -142201,7 +143079,7 @@ msgstr "" msgid "Family house" msgstr "" -#. ~ Description for mission '{'str': 'Family house'}' +#. ~ Description for mission 'Family house' #: lang/json/mission_def_from_json.py msgid "" "First bring pizzaiolo some chocolate cake then lead him to his family house." @@ -142229,7 +143107,7 @@ msgstr "" msgid "Find scrap for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find scrap for the meteorologist'}' +#. ~ Description for mission 'Find scrap for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 50 pieces of scrap." msgstr "" @@ -142281,7 +143159,7 @@ msgstr "" msgid "Find batteries for the meteorologist" msgstr "" -#. ~ Description for mission '{'str': 'Find batteries for the meteorologist'}' +#. ~ Description for mission 'Find batteries for the meteorologist' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 6 medium batteries." msgstr "" @@ -142312,7 +143190,7 @@ msgstr "" msgid "Find lens_small 5" msgstr "" -#. ~ Description for mission '{'str': 'Find lens_small 5'}' +#. ~ Description for mission 'Find lens_small 5' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him 5 small high-quality lenses." msgstr "" @@ -142341,7 +143219,7 @@ msgstr "" msgid "Find radiocontrol" msgstr "" -#. ~ Description for mission '{'str': 'Find radiocontrol'}' +#. ~ Description for mission 'Find radiocontrol' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him a radio controller." msgstr "" @@ -142371,7 +143249,7 @@ msgstr "" msgid "Find crashed drone" msgstr "" -#. ~ Description for mission '{'str': 'Find crashed drone'}' +#. ~ Description for mission 'Find crashed drone' #: lang/json/mission_def_from_json.py msgid "The meteorologist asked to bring him his crashed drone." msgstr "" @@ -142640,8 +143518,7 @@ msgstr "" msgid "Find someone to clean up the back bay." msgstr "" -#. ~ Description for mission '{'str': 'Find someone to clean up the back -#. bay.'}' +#. ~ Description for mission 'Find someone to clean up the back bay.' #: lang/json/mission_def_from_json.py msgid "" "Boris in the refugee center is looking for at least five people to help " @@ -143044,7 +143921,7 @@ msgstr "" msgid "Find 50 doses of antiseptic" msgstr "" -#. ~ Description for mission '{'str': 'Find 50 doses of antiseptic'}' +#. ~ Description for mission 'Find 50 doses of antiseptic' #: lang/json/mission_def_from_json.py msgid "" "Find 50 doses of antiseptic for Uyen Tran in the refugee center, in exchange" @@ -143085,7 +143962,7 @@ msgstr "" msgid "Find 30 bandages" msgstr "" -#. ~ Description for mission '{'str': 'Find 30 bandages'}' +#. ~ Description for mission 'Find 30 bandages' #: lang/json/mission_def_from_json.py msgid "" "Find 30 bandages for Uyen Tran in the refugee center, in exchange for " @@ -143112,7 +143989,7 @@ msgstr "" msgid "Find 6 bottles of Prozac" msgstr "找到 6 瓶百憂解" -#. ~ Description for mission '{'str': 'Find 6 bottles of Prozac'}' +#. ~ Description for mission 'Find 6 bottles of Prozac' #: lang/json/mission_def_from_json.py msgid "" "Find 6 bottles of Prozac for Uyen Tran in the refugee center, in exchange " @@ -143194,7 +144071,7 @@ msgstr "" msgid "In a Pickle Pt. 2" msgstr "泡菜.二" -#. ~ Description for mission '{'str': 'In a Pickle Pt. 2'}' +#. ~ Description for mission 'In a Pickle Pt. 2' #: lang/json/mission_def_from_json.py msgid "" "Deliver 50 large three-liter jars in exchange for " @@ -143231,7 +144108,7 @@ msgstr "哇喔,那些罐比紙上寫的還要多,謝謝你,這是你的報 msgid "Smokes, let's go." msgstr "抽菸,我們走吧。" -#. ~ Description for mission '{'str': "Smokes, let's go."}' +#. ~ Description for mission 'Smokes, let's go.' #: lang/json/mission_def_from_json.py msgid "" "Make a friend at the refugee center by handing over around five packs - 100 " @@ -143275,7 +144152,7 @@ msgstr "" msgid "Clear Back Bay" msgstr "清除後灣區" -#. ~ Description for mission '{'str': 'Clear Back Bay'}' +#. ~ Description for mission 'Clear Back Bay' #: lang/json/mission_def_from_json.py msgid "" "Clear out the barricaded back area in the refugee center and lay the former " @@ -143325,7 +144202,7 @@ msgstr "" msgid "Missing Caravan" msgstr "失蹤的商隊" -#. ~ Description for mission '{'str': 'Missing Caravan'}' +#. ~ Description for mission 'Missing Caravan' #: lang/json/mission_def_from_json.py msgid "" "Investigate the last known location of a disappeared scavenger trading " @@ -143372,7 +144249,7 @@ msgstr "" msgid "Retrieve Prospectus" msgstr "取得牧場創建計劃書" -#. ~ Description for mission '{'str': 'Retrieve Prospectus'}' +#. ~ Description for mission 'Retrieve Prospectus' #: lang/json/mission_def_from_json.py msgid "" "Visit the farming commune and bring the foreman's prospectus back to the " @@ -143416,7 +144293,7 @@ msgstr "" msgid "Solar Power" msgstr "太陽能" -#. ~ Description for mission '{'str': 'Solar Power'}' +#. ~ Description for mission 'Solar Power' #: lang/json/mission_def_from_json.py msgid "" "Deliver 10 solar panels to help the Free Merchants set up a renewable power " @@ -143453,7 +144330,7 @@ msgstr "好了, 我知道這不算太多, 但我們能會繼續搜索下去, 感 msgid "In a Pickle" msgstr "泡菜" -#. ~ Description for mission '{'str': 'In a Pickle'}' +#. ~ Description for mission 'In a Pickle' #: lang/json/mission_def_from_json.py msgid "" "Deliver 100 half-liter glass canning jars to the Free Merchants to kickstart" @@ -143501,7 +144378,7 @@ msgstr "" msgid "Unknown Recipient" msgstr "" -#. ~ Description for mission '{'str': 'Unknown Recipient'}' +#. ~ Description for mission 'Unknown Recipient' #: lang/json/mission_def_from_json.py msgid "" "Deliver the hdd to the military remnant. Return to the Evacuation Center " @@ -143512,6 +144389,64 @@ msgstr "" msgid "Have you finished the delivery already?" msgstr "" +#: lang/json/mission_def_from_json.py +msgid "Check out that farm" +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"Ran into a bunch of farmers. They don't want much to do with our caravans, " +"but someone like you they might be OK with." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Nice." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Seems reasonable." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. It's rough out there." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Huh, go figure." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "It is what it is." +msgstr "" + +#. ~ Description for mission 'Check out that farm' +#: lang/json/mission_def_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Check out that scrap metal castle" +msgstr "" + +#. ~ Description for mission 'Check out that scrap metal castle' +#: lang/json/mission_def_from_json.py +msgid "" +"A few of my caravans have come back now talkin' about this giant metal " +"castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Your funeral." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Be careful. Seems like a rough place to me." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "" "We don't have the equipment for real analysis here so it'll need to be done " @@ -143661,7 +144596,7 @@ msgstr "大棒了! 我應該可以重現甚麼貨物在哪些實驗室之間運 msgid "Supply the arsonist." msgstr "" -#. ~ Description for mission '{'str': 'Supply the arsonist.'}' +#. ~ Description for mission 'Supply the arsonist.' #: lang/json/mission_def_from_json.py msgid "Bring the arsonist 42 kg of commercial fertilizer" msgstr "" @@ -143716,7 +144651,7 @@ msgstr "" msgid "Kill Bandits" msgstr "殺掉強盜" -#. ~ Description for mission '{'str': 'Kill Bandits'}' +#. ~ Description for mission 'Kill Bandits' #: lang/json/mission_def_from_json.py msgid "" "A pair of bandits have been preying on locals, based out of a nearby cabin." @@ -143755,7 +144690,7 @@ msgstr "舊日守衛感謝你消滅罪犯。你將會被銘記。" msgid "Deal with Informant" msgstr "與線人打交道" -#. ~ Description for mission '{'str': 'Deal with Informant'}' +#. ~ Description for mission 'Deal with Informant' #: lang/json/mission_def_from_json.py msgid "" "The Hell's Raiders bandit group may have an informant working inside the " @@ -143794,11 +144729,63 @@ msgstr "你解決那些鼠輩了?" msgid "Thank you, I'll do the explaining if anyone else asks about it." msgstr "謝謝你, 若是其他人問起的話, 我會解釋的。" +#: lang/json/mission_def_from_json.py +msgid "Find Source of Robots" +msgstr "" + +#. ~ Description for mission 'Find Source of Robots' +#: lang/json/mission_def_from_json.py +msgid "" +"I don't usually hear much from command, but we got a message by radio " +"recently. You might be the right choice to look into it for me. There've " +"been reports of weird robots and things wandering around since things went " +"south. Dunno how, but apparently command tracked down what they think is " +"the source. They want someone to go check out who is making these, and if " +"we can get any tech or assistance from them. This is strictly recon, you " +"understand: could be a hostile entity, so do not engage directly." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Got a weird one for you this time…" +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Thanks, once you know who it is, report back to me and I'll pass that on." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"Come back when you get a chance, if there's any chance these things are on " +"our side, we need all the help we can get." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "" +"If you see any weird machines around, do not engage. Sneak away, I'd say. " +"They seem to be hostile to zombies, but that doesn't mean they can tell you " +"aren't one." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Great work, wasn't sure what I was sending you after." +msgstr "做的好, 只是我不知道事後該給你什麼。" + +#: lang/json/mission_def_from_json.py +msgid "" +"That's a shame, a damn shame. Wish you could have learned more. Thanks for" +" trying." +msgstr "" + +#: lang/json/mission_def_from_json.py +msgid "Damn… let's hope we can try again sometime." +msgstr "" + #: lang/json/mission_def_from_json.py msgid "Secure Trade Route" msgstr "" -#. ~ Description for mission '{'str': 'Secure Trade Route'}' +#. ~ Description for mission 'Secure Trade Route' #: lang/json/mission_def_from_json.py msgid "" "One of the Free Merchants silently disappeared while escorting a trade " @@ -143824,15 +144811,11 @@ msgid "" "be able to find something." msgstr "試試看搜索灌木叢有沒有任何痕跡? 我不是一個專業的追蹤者, 但你應該會找到一些東西。" -#: lang/json/mission_def_from_json.py -msgid "Great work, wasn't sure what I was sending you after." -msgstr "做的好, 只是我不知道事後該給你什麼。" - #: lang/json/mission_def_from_json.py msgid "Assassinate Raider Leader" msgstr "" -#. ~ Description for mission '{'str': 'Assassinate Raider Leader'}' +#. ~ Description for mission 'Assassinate Raider Leader' #: lang/json/mission_def_from_json.py msgid "" "The Old Guard have located a Hell's Raiders encampment that is coordinating " @@ -143892,7 +144875,7 @@ msgstr "" msgid "Return Field Data" msgstr "" -#. ~ Description for mission '{'str': 'Return Field Data'}' +#. ~ Description for mission 'Return Field Data' #: lang/json/mission_def_from_json.py msgid "" "Investigate a nearby field and return with Dr. Prado and the robot prototype" @@ -143942,7 +144925,7 @@ msgstr "" msgid "Steal a dead man's mind" msgstr "" -#. ~ Description for mission '{'str': "Steal a dead man's mind"}' +#. ~ Description for mission 'Steal a dead man's mind' #: lang/json/mission_def_from_json.py msgid "" "Find the corpse of a Hub 01's AI researcher and use the mind splicer kit to " @@ -143987,7 +144970,7 @@ msgstr "" msgid "Light retrieval" msgstr "" -#. ~ Description for mission '{'str': 'Light retrieval'}' +#. ~ Description for mission 'Light retrieval' #: lang/json/mission_def_from_json.py msgid "" "Reach the collapsed tower basement, and search the ruins for a photonic " @@ -144028,11 +145011,12 @@ msgstr "" msgid "Iron Safari" msgstr "" -#. ~ Description for mission '{'str': 'Iron Safari'}' +#. ~ Description for mission 'Iron Safari' #: lang/json/mission_def_from_json.py msgid "" "Disable and retrieve the alien robot. You can intercept the robot indicated" -" by Hub 01, or find an inactive robot somewhere else." +" by Hub 01, or find an inactive robot somewhere else. You'll need some " +"experience in electronics or mechanics to disable it." msgstr "" #: lang/json/mission_def_from_json.py @@ -144075,7 +145059,7 @@ msgstr "" msgid "Retrieve chunks of gold" msgstr "取回金塊" -#. ~ Description for mission '{'str': 'Retrieve chunks of gold'}' +#. ~ Description for mission 'Retrieve chunks of gold' #: lang/json/mission_def_from_json.py msgid "Find 200 units of gold." msgstr "尋找 200 單位的黃金" @@ -144123,7 +145107,7 @@ msgstr "好吧,我必須自己搜刮黃金,不勞您費神。" msgid "Active Noise Control" msgstr "主動噪音控制" -#. ~ Description for mission '{'str': 'Active Noise Control'}' +#. ~ Description for mission 'Active Noise Control' #: lang/json/mission_def_from_json.py msgid "" "Investigate Hub 01's radio tower, discover the source of the interference, " @@ -144167,7 +145151,7 @@ msgstr "" msgid "Return to Hub 01" msgstr "回到 1 號基地" -#. ~ Description for mission '{'str': 'Return to Hub 01'}' +#. ~ Description for mission 'Return to Hub 01' #: lang/json/mission_def_from_json.py msgid "Return to Hub 01." msgstr "回到 1 號基地" @@ -145868,7 +146852,7 @@ msgstr "" msgid "Secure Area" msgstr "" -#. ~ Description for mission '{'str': 'Secure Area'}' +#. ~ Description for mission 'Secure Area' #: lang/json/mission_def_from_json.py msgid "" "We lost another trade caravan. Whatever did the damage is still out there." @@ -145887,7 +146871,7 @@ msgstr "" msgid "Lost in the Woods" msgstr "" -#. ~ Description for mission '{'str': 'Lost in the Woods'}' +#. ~ Description for mission 'Lost in the Woods' #: lang/json/mission_def_from_json.py msgid "" "We lost a scout searching the woods for a lost family. Find the scout or " @@ -145914,7 +146898,7 @@ msgstr "" msgid "Protect the cattle" msgstr "" -#. ~ Description for mission '{'str': 'Protect the cattle'}' +#. ~ Description for mission 'Protect the cattle' #: lang/json/mission_def_from_json.py msgid "Someone or something in the swamps is stealing cattle. Stop it." msgstr "" @@ -145948,7 +146932,7 @@ msgstr "" msgid "Betty" msgstr "" -#. ~ Description for mission '{'str': 'Kill 50 dinos'}' +#. ~ Description for mission 'Kill 50 dinos' #: lang/json/mission_def_from_json.py msgid "Kill 50 dinos" msgstr "" @@ -145995,7 +146979,7 @@ msgstr "" msgid "Stromer" msgstr "" -#. ~ Description for mission '{'str': 'Kill me a T Rex'}' +#. ~ Description for mission 'Kill me a T Rex' #: lang/json/mission_def_from_json.py msgid "Kill me a T Rex" msgstr "" @@ -146771,6 +147755,30 @@ msgid "" " and stumbles." msgstr "" +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes you with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "The %1$s lashes with its flaming whip!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes you with its flaming whip, but fails to penetrate your " +"armor!" +msgstr "" + +#: lang/json/monster_attack_from_json.py +#, no-python-format +msgid "" +"The %1$s lashes with its flaming whip, but fails to penetrate " +"their armor!" +msgstr "" + #: lang/json/morale_type_from_json.py #, no-python-format msgid "Enjoyed %s" @@ -147463,14 +148471,14 @@ msgstr "隨著注射劑起效, 你的心臟狂野地跳動著。" #. ~ Mutation class: Beast Male memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_male" -msgid "Embraced his bestial nature." -msgstr "回歸野性。" +msgid "Embraced their bestial nature." +msgstr "" #. ~ Mutation class: Beast Female memorial messsage #: lang/json/mutation_category_from_json.py msgctxt "memorial_female" -msgid "Embraced his bestial nature." -msgstr "回歸野性。" +msgid "Embraced their bestial nature." +msgstr "" #. ~ Mutation class name #: lang/json/mutation_category_from_json.py lang/json/mutation_from_json.py @@ -148199,6 +149207,28 @@ msgid "" "venoms: Centipede, Viper, Scorpion, Lizard, or Toad." msgstr "你是五毒教的門徒。你一開始便能從五毒中任選一個招式。" +#: lang/json/mutation_from_json.py +msgid "Standard Neurobionic Interface" +msgstr "" + +#. ~ Description for {'str': 'Standard Neurobionic Interface'} +#: lang/json/mutation_from_json.py +msgid "" +"You have a matrix in your central nervous system that acts as a universal " +"control and installation bus for compact bionic modules." +msgstr "" + +#: lang/json/mutation_from_json.py +msgid "Exodii cyborg framework - style 1a" +msgstr "" + +#. ~ Description for {'str': 'Exodii cyborg framework - style 1a'} +#: lang/json/mutation_from_json.py +msgid "" +"Your brain and some of your organs are shielded in a nice tough bipedal " +"walker frame." +msgstr "" + #: lang/json/mutation_from_json.py msgid "Hair: black, crew-cut" msgstr "頭髮:黑色,平頭" @@ -149107,7 +150137,6 @@ msgid "Tunnel Fighter" msgstr "" #. ~ Description for {'str': 'Tunnel Fighter'} -#. ~ Description for {'str': 'Night Raider'} #: lang/json/mutation_from_json.py msgid "" "You know how to fight in cramped tunnels at risk of collapse. You gain " @@ -149118,6 +150147,13 @@ msgstr "" msgid "Night Raider" msgstr "" +#. ~ Description for {'str': 'Night Raider'} +#: lang/json/mutation_from_json.py +msgid "" +"Your body is one with the night. You make less noise when the moon is up in" +" the sky, even when you cannot see it." +msgstr "" + #. ~ Description for {'str': 'Optimist'} #: lang/json/mutation_from_json.py msgid "" @@ -149249,7 +150285,7 @@ msgstr "" #, no-python-format msgid "" "You've added a lot of weight, much of it muscle! You get a 10% bonus to all" -" hit points. Swimming will be more difficult from now on" +" hit points. Swimming will be more difficult from now on." msgstr "" #: lang/json/mutation_from_json.py @@ -149496,9 +150532,9 @@ msgstr "霸氣外露" #. ~ Description for {'str': 'Terrifying'} #: lang/json/mutation_from_json.py msgid "" -"There's something about you that humans and post-humans find frightening, " -"and they are more likely to try to flee." -msgstr "" +"There's something about you that creatures find frightening, and they are " +"more likely to try to flee." +msgstr "動物都很怕你, 看到你就想逃。" #: lang/json/mutation_from_json.py msgid "Disease Resistant" @@ -152481,8 +153517,8 @@ msgstr "" #. ~ Description for {'str': 'Acidic Secretion'} #: lang/json/mutation_from_json.py msgid "" -"You're mucus has developed an acidic component that seems to soften your " -"prey up." +"Your mucus has developed an acidic component that seems to soften your prey " +"up." msgstr "" #: lang/json/mutation_from_json.py @@ -152723,8 +153759,8 @@ msgstr "強壯" #. ~ Description for {'str': 'Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are a little stronger. Strength + 1" -msgstr "你的肌肉變得強壯些了。力量 +1" +msgid "Your muscles are a little stronger. +1 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Strong" @@ -152732,8 +153768,8 @@ msgstr "更強壯" #. ~ Description for {'str': 'Very Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are stronger. Strength + 2" -msgstr "你的肌肉變得更強壯了。力量 +2" +msgid "Your muscles are stronger. +2 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Strong" @@ -152741,8 +153777,8 @@ msgstr "極度強壯" #. ~ Description for {'str': 'Extremely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are much stronger. Strength + 4" -msgstr "你的肌肉更加的強壯。力量 +4" +msgid "Your muscles are much stronger. +4 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Strong" @@ -152750,8 +153786,8 @@ msgstr "過度強壯" #. ~ Description for {'str': 'Insanely Strong'} #: lang/json/mutation_from_json.py -msgid "Your muscles are noticeably bulging. Strength + 7" -msgstr "你的肌肉明顯的鼓脹。力量 +7" +msgid "Your muscles are noticeably bulging. +7 Strength." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Strength" @@ -152768,8 +153804,8 @@ msgstr "靈活" #. ~ Description for {'str': 'Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are a little nimbler. Dexterity + 1" -msgstr "你稍微變俐落了。敏捷 +1" +msgid "You are a little nimbler. +1 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Dextrous" @@ -152777,8 +153813,8 @@ msgstr "更靈活" #. ~ Description for {'str': 'Very Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimbler. Dexterity + 2" -msgstr "你更俐落了。敏捷 +2" +msgid "You are nimbler. +2 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Dextrous" @@ -152786,8 +153822,8 @@ msgstr "極度靈活" #. ~ Description for {'str': 'Extremely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are nimble and quick. Dexterity + 4" -msgstr "你快又俐落。敏捷 +4" +msgid "You are nimble and quick. +4 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Dextrous" @@ -152795,8 +153831,8 @@ msgstr "過度靈活" #. ~ Description for {'str': 'Insanely Dextrous'} #: lang/json/mutation_from_json.py -msgid "You are much nimbler than before. Dexterity + 7" -msgstr "你過分得俐落。敏捷 +7" +msgid "You are much nimbler than before. +7 Dexterity." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Dexterity" @@ -152813,8 +153849,8 @@ msgstr "聰明" #. ~ Description for {'str': 'Smart'} #: lang/json/mutation_from_json.py -msgid "You are a little smarter. Intelligence + 1" -msgstr "你變得稍微聰明了。智力 +1" +msgid "You are a little smarter. +1 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Smart" @@ -152822,8 +153858,8 @@ msgstr "更聰明" #. ~ Description for {'str': 'Very Smart'} #: lang/json/mutation_from_json.py -msgid "You are smarter. Intelligence + 2" -msgstr "你更聰明了。智力 +2" +msgid "You are smarter. +2 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Smart" @@ -152832,8 +153868,8 @@ msgstr "極度聰明" #. ~ Description for {'str': 'Extremely Smart'} #: lang/json/mutation_from_json.py msgid "" -"You are much smarter, and your skull bulges slightly. Intelligence + 4" -msgstr "你非常聰明, 聰明到頭稍微變大了。智力 +4" +"You are much smarter, and your skull bulges slightly. +4 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Smart" @@ -152842,8 +153878,8 @@ msgstr "過度聰明" #. ~ Description for {'str': 'Insanely Smart'} #: lang/json/mutation_from_json.py msgid "" -"Your skull bulges noticeably due to your impressive brain. Intelligence + 7" -msgstr "你令人印象深刻的大頭顯示了你的過人才智。智力 +7" +"Your skull bulges noticeably due to your impressive brain. +7 Intelligence." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Intelligence" @@ -152872,8 +153908,8 @@ msgstr "精明" #. ~ Description for {'str': 'Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are a little keener. Perception + 1" -msgstr "你的感官稍微變強了。感知 +1" +msgid "Your senses are a little keener. +1 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Very Perceptive" @@ -152881,8 +153917,8 @@ msgstr "更精明" #. ~ Description for {'str': 'Very Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are keener. Perception + 2" -msgstr "你的感官更加強化了。感知 +2" +msgid "Your senses are keener. +2 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Extremely Perceptive" @@ -152890,8 +153926,8 @@ msgstr "極度精明" #. ~ Description for {'str': 'Extremely Perceptive'} #: lang/json/mutation_from_json.py -msgid "Your senses are much keener. Perception + 4" -msgstr "你的感官極大的強化。感知 +4" +msgid "Your senses are much keener. +4 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Insanely Perceptive" @@ -152899,8 +153935,8 @@ msgstr "過度精明" #. ~ Description for {'str': 'Insanely Perceptive'} #: lang/json/mutation_from_json.py -msgid "You can sense things you never imagined. Perception + 7" -msgstr "你的感官強大到了無法想像的地步。 感知 +7" +msgid "You can sense things you never imagined. +7 Perception." +msgstr "" #: lang/json/mutation_from_json.py msgid "Prime Perception" @@ -153401,7 +154437,7 @@ msgstr "" #: lang/json/mutation_from_json.py msgid "" "You can pursue prey for miles and miles at a variety of paces until they " -"stop from exhauastion." +"stop from exhaustion." msgstr "" #: lang/json/mutation_from_json.py @@ -153520,7 +154556,7 @@ msgstr "非常愛睏" #: lang/json/mutation_from_json.py msgid "" "You find yourself needing to sleep quite often. You'll spend about half of " -"your time in or around bed." +"your time in or around a bed." msgstr "" #: lang/json/mutation_from_json.py @@ -158045,6 +159081,7 @@ msgid "I AM FOODPERSON. AND I BRING SUSTENANCE!" msgstr "我 是 美 食 人 。 我 帶 來 食 物 !" #: lang/json/npc_class_from_json.py lang/json/npc_from_json.py +#: lang/json/npc_from_json.py msgid "Cyborg" msgstr "生化人" @@ -158080,6 +159117,14 @@ msgstr "" msgid "Fisherman" msgstr "" +#: lang/json/npc_class_from_json.py +msgid "Cyborg, type 1" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I'm a cyborg." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Member" msgstr "" @@ -158638,6 +159683,14 @@ msgstr "" msgid "Operator" msgstr "特種部隊" +#: lang/json/npc_class_from_json.py +msgid "Forge Librarian" +msgstr "" + +#: lang/json/npc_class_from_json.py +msgid "I take care of the books and scrolls." +msgstr "" + #: lang/json/npc_class_from_json.py msgid "Pirate Queen" msgstr "" @@ -158773,6 +159826,10 @@ msgstr "Mikhail Frolov" msgid "Heather Frolova" msgstr "" +#: lang/json/npc_from_json.py +msgid "Rubik" +msgstr "" + #: lang/json/npc_from_json.py msgid "member" msgstr "" @@ -158941,6 +159998,10 @@ msgstr "盤商" msgid "Guard" msgstr "守衛" +#: lang/json/npc_from_json.py +msgid "Teamster" +msgstr "" + #: lang/json/npc_from_json.py msgid "Makayla Sanchez" msgstr "" @@ -159109,6 +160170,10 @@ msgstr "" msgid "Forge Lord" msgstr "" +#: lang/json/npc_from_json.py +msgid "Librarian, A" +msgstr "" + #: lang/json/npc_from_json.py msgid "Helen Tavrel, Former Pirate" msgstr "" @@ -160046,6 +161111,10 @@ msgstr "黏液坑" msgid "rocky butte" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "ground-level entrance" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "scrap metal encampment" msgstr "" @@ -160735,6 +161804,10 @@ msgstr "尖刺壕" msgid "fabrication workshop survey" msgstr "" +#: lang/json/overmap_terrain_from_json.py +msgid "fabrication workshop 2 survey" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "blacksmith survey" msgstr "鐵匠鋪" @@ -160743,24 +161816,40 @@ msgstr "鐵匠鋪" msgid "blacksmith shop" msgstr "鐵匠鋪" -#: lang/json/overmap_terrain_from_json.py +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "livestock survey" msgstr "畜牧場" +#: lang/json/overmap_terrain_from_json.py +msgid "livestock survey 2" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "store house survey" msgstr "" #: lang/json/overmap_terrain_from_json.py -msgid "saltworks survey" +msgid "store house survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py +msgid "saltworks survey" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py lang/json/recipe_from_json.py msgid "canteen survey" msgstr "食堂" #: lang/json/overmap_terrain_from_json.py -msgid "farm survey_2" +msgid "canteen survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "farm survey 2" +msgstr "" + +#: lang/json/overmap_terrain_from_json.py +msgid "garage survey 2" msgstr "" #: lang/json/overmap_terrain_from_json.py @@ -161127,6 +162216,10 @@ msgstr "米戈斥候瞭望塔" msgid "subway station?" msgstr "地下鐵?" +#: lang/json/overmap_terrain_from_json.py +msgid "lab hallway" +msgstr "" + #: lang/json/overmap_terrain_from_json.py msgid "science lab reactor" msgstr "" @@ -162583,6 +163676,60 @@ msgid "" "You found solace in the bottom of a bottle. God-damn, you need a drink." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (male Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Sleeping Pill Reliance" +msgstr "" + +#. ~ Profession (female Sleeping Pill Reliance) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You had difficulties falling asleep, so you started taking those sleeping " +"pills. Problem is, now you can not fall asleep without them anymore and the" +" Cataclysm does complicate the matter." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (male Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Caffeine Junkie" +msgstr "" + +#. ~ Profession (female Caffeine Junkie) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Coffee was your day-to-day companion in surviving your job, but getting " +"caffeine into your body will be much harder now." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Cosplay" @@ -162693,6 +163840,34 @@ msgid "" "safe. Right? It must be." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (male Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bushcraft" +msgstr "" + +#. ~ Profession (female Bushcraft) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You take camping to a whole new level. You have spent nights and weekends " +"surviving in the wild with just a knife to aid you. Maybe this can keep you" +" safe away from people." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Helicopter Pilot" @@ -162729,7 +163904,7 @@ msgstr "書蟲" msgctxt "prof_desc_male" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -162742,7 +163917,7 @@ msgstr "書蟲" msgctxt "prof_desc_female" msgid "" "You love reading, you just never seemed to have enough time. Maybe the " -"cataclysm is a blessing in disguise." +"Cataclysm is a blessing in disguise." msgstr "" #: lang/json/professions_from_json.py @@ -163335,6 +164510,32 @@ msgid "" "anyone else!" msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (male Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Marathon Runner" +msgstr "" + +#. ~ Profession (female Marathon Runner) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You went and ran the Boston Marathon every year. Now, that training came in" +" handy in avoiding the dead." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Book hater" @@ -163593,6 +164794,60 @@ msgid "" " wearing rollerskates or rollerblades." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (male Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Arts and Crafts" +msgstr "" + +#. ~ Profession (female Arts and Crafts) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You loved doing crafts at home. Hopefully this can aid you in surviving now" +" that the world has gone to hell." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (male Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Car Rebuilding" +msgstr "" + +#. ~ Profession (female Car Rebuilding) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Spending time every weekend in your garage working on an old classic car was" +" your favorite pasttime. You never finished the car, but at least you " +"learned a little over the years." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Trickster" @@ -163719,6 +164974,34 @@ msgid "" "you're the last member of your party." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (male Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Ham Radio Operator" +msgstr "" + +#. ~ Profession (female Ham Radio Operator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You whiled your nights away using, building and repairing old Ham Radios. " +"Now you have no one to talk to. But you won't give up hope and maybe your " +"electronics knowledge can help you somehow." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Golfing" @@ -163767,6 +165050,34 @@ msgctxt "prof_desc_female" msgid "Your ability to play point or post will beat the undead in overtime." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (male Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Gun Range Shooter" +msgstr "" + +#. ~ Profession (female Gun Range Shooter) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You liked going to the local gun store and doing some target shooting. " +"Sometimes even cans off of fence posts. Maybe if you just imagine targets " +"on those dead things, this could help." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Red Cross Certified" @@ -163789,6 +165100,58 @@ msgctxt "prof_desc_female" msgid "The medical professionals aren't coming, but you'll live regardless." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (male Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Trap Shooting" +msgstr "" + +#. ~ Profession (female Trap Shooting) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"Nothing like the smell of gunsmoke and blowing ceramic orange discs out of " +"the sky. Time to shoot at things a little fleshier than clay pigeons." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (male Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Back Yard Grilling" +msgstr "" + +#. ~ Profession (female Back Yard Grilling) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You enjoyed inviting the neighborhood to a backyard get together most " +"weekends. You, of course, were the grill master." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Carpentry" @@ -168343,6 +169706,64 @@ msgid "" " violence is common currency." msgstr "" +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (male Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Paranormal Investigator" +msgstr "" + +#. ~ Profession (female Paranormal Investigator) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were dismissed from your position as a parapsychology professor at the " +"local university and started your own business as a paranormal investigator." +" Your former colleagues didn't approve of your research, but it looks like " +"it's paying off now." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_male" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (male Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_male" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + +#: lang/json/professions_from_json.py +msgctxt "profession_female" +msgid "Bird Watcher" +msgstr "" + +#. ~ Profession (female Bird Watcher) description +#: lang/json/professions_from_json.py +msgctxt "prof_desc_female" +msgid "" +"You were at your favorite park looking at the robins when the Cataclysm " +"struck. Now all you have are your binoculars and a lot of trivia about " +"local birds to share with any survivors you may find." +msgstr "" + #: lang/json/professions_from_json.py msgctxt "profession_male" msgid "Radio Tower Technician" @@ -172698,6 +174119,28 @@ msgid "" "ambushes." msgstr "你善於發現異常的情況,像是陷阱或伏擊。" +#: lang/json/proficiency_from_json.py +msgid "Debug Weakpoint" +msgstr "" + +#. ~ Description for Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Basic improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + +#: lang/json/proficiency_from_json.py +msgid "Expert Debug Weakpoint" +msgstr "" + +#. ~ Description for Expert Debug Weakpoint +#: lang/json/proficiency_from_json.py +msgid "" +"Expert improvement on the chance of hitting the Weakpoint Monster's weak " +"points." +msgstr "" + #: lang/json/proficiency_from_json.py msgid "Fiber Twisting" msgstr "纖維捻製" @@ -177659,6 +179102,528 @@ msgstr "" msgid "build center of the dining hall" msgstr "建造木板牆食堂中央部分" +#: lang/json/recipe_from_json.py +msgid "Survey land for a canteen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a fireplace for cooking and " +"grab a pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, we should build a stove for cooking and grab a " +"pot." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We should build a well. This will make cooking more convenient and provides" +" water to support a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build some smokers and a charcoal kiln for food preservation and " +"additional cooking options." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets build 2 root cellars in the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build root cellars" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Lets furnish the pantry." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build some planters for a chef's garden." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's expand the chef's garden in the 'free' area (stop expanding if you " +"want to use the area for something else)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a pair of tanks for salt water to allow for salt production " +"and make hide working easier." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build salt water tanks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some vats in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery vats" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install some racks for storage in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install some brewery racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "install a still in the brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a windmill to allow us to grid flour efficiently" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a windmill" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a bench and a bird bath outside the kitchen for relaxation" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a bench and a bird bath" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen concrete walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the concrete kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this concrete smoking area covered to protect the workers from the" +" weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a concrete wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a concrete pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second concrete part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining concrete section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the concrete brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build concrete brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen log walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the log kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this log smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a log wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a log pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second log part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining log section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the log brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build log brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen metal walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the metal kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this metal smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a metal wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a metal pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second metal part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining metal section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the metal brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build metal brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen mi-go resin walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the mi-go resin kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a mi-go resin wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second mi-go resin part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining mi-go resin section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the mi-go resin brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build mi-go resin brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rammed earth walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rammed earth kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rammed earth wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rammed earth part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rammed earth section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rammed earth brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rammed earth brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen rock walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the rock kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this rock smoking area covered to protect the workers from the " +"weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a rock wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a rock pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second rock part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining rock section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the rock brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build rock brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wattle-and-daub walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wattle-and-daub kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's get this wattle-and-daub smoking area covered to protect the workers " +"from the weather." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub roofed area for smoking racks" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wattle-and-daub wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a wattle-and-daub pantry" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wattle-and-daub part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wattle-and-daub section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wattle-and-daub brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wattle-and-daub brewery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's finish the kitchen wood panel walls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "finish the wood panel kitchen" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a wood panel wall pantry beside of the kitchen." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the first wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build first dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build the second wood panel part of the dining hall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build second dining wood panel section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the wood panel brewery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build wood panel brewery" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a farming area." msgstr "" @@ -177703,6 +179668,63 @@ msgstr "建造一個農務窩棚能讓我們從農作副產品中回收額外的 msgid "Farm processing shack" msgstr "農場工作窩棚" +#: lang/json/recipe_from_json.py +msgid "Prepare a row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "prepare farm plots" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare a second row of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Prepare another pair of rows of farm plots." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the longer outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "erect a fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter outer edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the shorter inner edge to keep deer away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Erect a fence along the outer part of the longer inner edge to keep deer " +"away from the crops." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We don't plan to replow the fields with a tractor, so erect a fence along " +"the inner part of the longer inner edge." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Build a palisade gate to allow us to reach the fields and replow them with a" +" tractor next year." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build a palisade gate" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a garage." msgstr "勘查擴建修車廠的土地。" @@ -177758,6 +179780,524 @@ msgstr "連接宿舍將使我們的技工必要時能工作更長的時間。" msgid "Garage mechanics quarters" msgstr "修車廠技工宿舍" +#: lang/json/recipe_from_json.py +msgid "Let's connect the two walls with the missing roof piece." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the missing roof section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we have some cover, lets build some counters and racks for tools " +"and parts, allowing us to use the Chop Shop." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build some furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"The garage is big enough. Let's build a palisade gate to allow us to close " +"off the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an outer palisade gate" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish the garage by building a palisade gate to allow us to close off" +" the outer end." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage concrete wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage concrete wall section to block the wind from the" +" other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second concrete garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a concrete wall to block the wind from blowing straight through " +"the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner concrete wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using concrete" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using concrete." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage log wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage log wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second log garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a log wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner log wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using log" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using logs" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using logs." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage metal wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage metal wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second metal garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a metal wall to block the wind from blowing straight through the" +" garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using metal" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using metal." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage mi-go resin wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage mi-go resin wall section to block the wind from " +"the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second mi-go resin garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a mi-go resin wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using mi-go resin" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using mi-go resin." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rammed earth wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rammed earth wall section to block the wind from" +" the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rammed earth garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rammed earth wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rammed earth" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rammed earth." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage rock wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage rock wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second rock garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a rock wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend the second wall to match the first one, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using rock" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using rock." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wattle-and-daub wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wattle-and-daub wall section to block the wind " +"from the other direction, making a garage wide enough to handle two normal " +"vehicles or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wattle-and-daub garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wattle-and-daub wall to block the wind from blowing straight " +"through the garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wattle-and-daub" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wattle-and-daub." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building the first garage wood wall section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the first wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a second garage wood wall section to block the wind from the " +"other direction, making a garage wide enough to handle two normal vehicles " +"or one super sized one." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build the second wood garage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a wood wall to block the wind from blowing straight through the " +"garage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "build an inner wood wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on short vehicles, let's extend the garage to " +"allow for long ones, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the first wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend the second wall to match the first one, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Now that we're able to work on long vehicles, let's extend the garage to " +"allow for really long ones, or multiple vehicles, using wood panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "extend the second wall using wood panels" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extent the garage to hangar size, allowing us to work on monster " +"vehicles or a large number of normal ones, using wood panels." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a livestock area." msgstr "勘查擴建畜牧場的土地。" @@ -177962,6 +180502,382 @@ msgid "" " a roof on the southwest side of the livestock field." msgstr "我們想要用牲畜舍來收容大型牲畜,所以在畜牧場的西南邊上,建造有屋頂的木板牆窩棚。" +#: lang/json/recipe_from_json.py +msgid "" +"We could use a fence to contain our chicken and other birds, so build a " +"chickenwire fence to finish the chicken coop area." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "chicken coop yard" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on the " +"remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "remote paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on side " +"of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "side paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a paddock for the stable, so build a split-rail fence on near " +"side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "near paddock fence" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"concrete shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"concrete shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a concrete shack with a" +" roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another concrete " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller concrete" +" walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a log " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a log " +"shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a log shack with a roof" +" on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another log walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller log " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a metal" +" shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"metal shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a metal shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another metal walled" +" stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller metal " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a mi-go" +" resin shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a mi-" +"go resin shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a mi-go resin shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another mi-go resin " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller mi-go " +"resin walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"rammed earth shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"rammed earth shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rammed earth shack " +"with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rammed earth" +" walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rammed " +"earth walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a rock " +"shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a rock" +" shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a rock shack with a " +"roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another rock walled " +"stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller rock " +"walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a " +"wattle-and-daub shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a " +"wattle-and-daub shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wattle-and-daub shack" +" with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wattle-and-" +"daub walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wattle-" +"and-daub walled stalls." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a coop to contain our chicken and other birds, so build a wood " +"panel shack with a roof on the remote side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel chicken coop" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a storage room for feed, animal gear and tools, so build a wood" +" panel shack with a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel storage shack" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a stable for larger livestock, so build a wood panel shack with" +" a roof on the near side of the livestock field." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wood panel stable" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so extend the stable with another wood panel " +"walled stall." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a larger stable, so finish the stable with two smaller wood " +"panel walled stalls." +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a saltworks area." msgstr "" @@ -178656,6 +181572,645 @@ msgstr "" msgid "benches, southwest" msgstr "長椅,西南" +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 bookcases forming 1 ½ aisle for storage (2000 L storage, contents " +"visible from a distance, blocks LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of bookcases in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "storehouse survey" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a concrete section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 dressers forming 1 ½ aisle for storage (2000 L storage, contents " +"not visible from a distance, doesn't block LoS)" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of dressers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 lockers forming 1 ½ aisle for storage (2000 L storage, contents not" +" visible from a distance, blocks LoS). Consider if bookcases or dressers " +"might be better." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of lockers in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a log section. If we really want to," +" we can then go on to double the volume, but won't that be extreme, when we " +"can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a metal section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a mi-go resin " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a mi-go resin section. If we really " +"want to, we can then go on to double the volume, but won't that be extreme, " +"when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 display racks forming 1 ½ aisle for storage (1750 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of display racks in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rammed earth " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rammed earth section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a rock section. If we really want " +"to, we can then go on to double the volume, but won't that be extreme, when " +"we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wattle-and-daub " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's extend our storage building with another wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wattle-and-daub section. If we " +"really want to, we can then go on to double the volume, but won't that be " +"extreme, when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 warehouse shelves forming 1 ½ aisle for storage (3500 L storage, " +"contents visible from a distance, blocks LoS). The king of storage space, " +"with a royal resource price tag" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of warehouse shelves in section P" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We could use a large storage building. Let's start with a wooden panel " +"section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel storage section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's extend our storage building with another wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's finish our storage building with a wooden panel section. If we really" +" want to, we can then go on to double the volume, but won't that be extreme," +" when we can use the space to unload loot instead?" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We want to store EVERYTHING! Let's double the size of the storage building," +" starting with a wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Place 12 wooden racks forming 1 ½ aisle for storage (1500 L storage, " +"contents visible from a distance, doesn't block LoS)." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section A" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section B" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section C" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section D" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section E" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section F" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section G" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section H" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section I" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section J" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section K" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section L" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section M" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section N" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section O" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "place 1 ½ aisles of wooden racks in section P" +msgstr "" + #: lang/json/recipe_from_json.py msgid "Survey land for a workshop." msgstr "" @@ -178921,60 +182476,369 @@ msgid "Let's enclose this pottery and get some more storage set up." msgstr "讓我們圍住這個陶器場,並設置更多的儲物空間。" #: lang/json/recipe_from_json.py -msgid "Prepare a row of farm plots." +msgid "Survey land for a workshop area." +msgstr "勘查擴建工坊的土地。" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's install a metal working forge in the smithy. We'll need a few tools " +"too, so we'll include some storage space. This will provide us with a first" +" couple of primitive crafting recipes." msgstr "" #: lang/json/recipe_from_json.py -msgid "prepare farm plots" +msgid "" +"Let's install a couple of charcoal kilns outside of the smithy. We'll add a" +" crucible as well. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare a second row of farm plots." +msgid "" +"Let's install an anvil in the smithy, some quenching containers and a " +"workbench. This will allow us to produce a few additional things." msgstr "" #: lang/json/recipe_from_json.py -msgid "Prepare another pair of rows of farm plots." +msgid "" +"Let's add furniture and some more tools to the smithy. This will allow us " +"to produce a few additional things." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithing tools" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the longer outer edge to keep deer away from the crops." +"Let's install a bellows for our forge and add some more tools. This will " +"extend our recipe repertoire." msgstr "" #: lang/json/recipe_from_json.py -msgid "erect a fence" +msgid "" +"Let's add a drop hammer to the smithy for productivity and add some more " +"tools. This will allow us to reach our smithing potential." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the pottery." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "pottery furniture" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's furnish the glassblower's cottage." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "glassblower furniture" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter outer edge to keep deer away from the crops." +"Let's add a bench and a fire barrel outside the pottery for recreation." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "recreation area" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the shorter inner edge to keep deer away from the crops." +"We can use a concrete smithy. Let's start by building a spot to protect the" +" workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy concrete wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Erect a fence along the outer part of the longer inner edge to keep deer " -"away from the crops." +"Let's build a roof with concrete pillars to protect future charcoal kilns " +"from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last concrete section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last concrete smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery concrete section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "concrete walled pottery" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"We don't plan to replow the fields with a tractor, so erect a fence along " -"the inner part of the longer inner edge." +"We can use a log smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy log wall" msgstr "" #: lang/json/recipe_from_json.py msgid "" -"Build a palisade gate to allow us to reach the fields and replow them with a" -" tractor next year." +"Let's build a roof with log pillars to protect future charcoal kilns from " +"the rain." msgstr "" #: lang/json/recipe_from_json.py -msgid "build a palisade gate" +msgid "log kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last log section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last log smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery log section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "log walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a metal smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy metal wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with metal pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last metal section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last metal smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery metal section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "metal walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a mi-go resin smithy. Let's start by building a spot to protect " +"the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy mi-go resin wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with mi-go resin pillars to protect future charcoal kilns" +" from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last mi-go resin section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last mi-go resin smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery mi-go resin section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "mi-go resin walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rammed earth smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rammed earth wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rammed earth pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rammed earth section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rammed earth smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rammed earth section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rammed earth walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a rock smithy. Let's start by building a spot to protect the " +"workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy rock wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with rock pillars to protect future charcoal kilns from " +"the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last rock section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last rock smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery rock section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "rock walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wattle-and-daub smithy. Let's start by building a spot to " +"protect the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wattle-and-daub wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wattle-and-daub pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wattle-and-daub section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wattle-and-daub smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wattle-and-daub section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wattle-and-daub walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"We can use a wooden panel smithy. Let's start by building a spot to protect" +" the workers from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "smithy wooden panel wall" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "" +"Let's build a roof with wooden panel pillars to protect future charcoal " +"kilns from the rain." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel kiln protection" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's build a the last wooden panel section of the smithy." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "last wooden panel smithy section" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a pottery wooden panel section." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled pottery" +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "Let's start building a glassblower's cottage from wooden panels." +msgstr "" + +#: lang/json/recipe_from_json.py +msgid "wooden panel walled glassblower's cottage" msgstr "" #: lang/json/recipe_from_json.py @@ -179809,8 +183673,12 @@ msgid "Mansion Garden With Columns Base" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Canteen" -msgstr "食堂" +msgid "Canteen version 1. Provides cooking recipes, stoves, well, cellar" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Canteen version 2. Version 1 plus still, windmill, and more planters" +msgstr "" #: lang/json/recipe_group_from_json.py msgid "Farm version 1. Shed, plots, some farming recipes" @@ -179821,25 +183689,45 @@ msgid "" "Farm version 2. Just plots, fence (optional gate for tractor), no recipes" msgstr "" -#: lang/json/recipe_group_from_json.py lang/json/start_location_from_json.py -msgid "Garage" -msgstr "車庫" +#: lang/json/recipe_group_from_json.py +msgid "" +"Garage version 1. Fits reasonably sized vehicles, free space around it" +msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Livestock Area" -msgstr "畜牧場" +msgid "" +"Garage version 2. Maximum width, two lane size, three different lengths" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 1. Layout with plenty of free space" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Livestock Area version 2. More stalls than version 1, less free space" +msgstr "" #: lang/json/recipe_group_from_json.py msgid "Saltworks Area" msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Central Storage Building" -msgstr "中央儲物建築" +msgid "Central Storage Building version 1. Nice building with free space" +msgstr "" #: lang/json/recipe_group_from_json.py -msgid "Fabrication Workshop" -msgstr "製作工坊" +msgid "" +"Central Storage Building version 2. Focus on storage. Place in N, E, S, W " +"only" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 1. Nice workshop cottage" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid "Fabrication Workshop version 2. More detailed recipe progression" +msgstr "" #: lang/json/recipe_group_from_json.py msgid "Light Industry Workshop" @@ -180001,6 +183889,62 @@ msgstr "" msgid " Hack & Download: Satellite Map, sketch" msgstr "" +#: lang/json/recipe_group_from_json.py +msgid " Craft: Canister, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Crucible, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Brick, Fire" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pellet, Clay" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Pair of Flatjaw Tongs" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Hotcut (chisel for metal working)" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Knife, Hunting" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Drift" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Bottle, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Flask, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Sheet, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: 3L Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Jar, Glass" +msgstr "" + +#: lang/json/recipe_group_from_json.py +msgid " Craft: Tempered Sheet, Glass" +msgstr "" + #: lang/json/recipe_group_from_json.py msgid "Field Camp" msgstr "平原營寨" @@ -182162,6 +186106,32 @@ msgctxt "scen_desc_female" msgid "Start as a post-threshold Plant Mutant" msgstr "" +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a male character +#: lang/json/scenario_from_json.py +msgctxt "scenario_male" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Name for scenario 'Mutant - Lagomorph Threshold' for a female character +#: lang/json/scenario_from_json.py +msgctxt "scenario_female" +msgid "Mutant - Lagomorph Threshold" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a male +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_male" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + +#. ~ Description for scenario 'Mutant - Lagomorph Threshold' for a female +#. character. +#: lang/json/scenario_from_json.py +msgctxt "scen_desc_female" +msgid "Start as a post-threshold Lagomorph Mutant" +msgstr "" + #. ~ Name for scenario 'Mutant - Raptor Threshold' for a male character #: lang/json/scenario_from_json.py msgctxt "scenario_male" @@ -182476,7 +186446,7 @@ msgid "" "objects." msgstr "你把一系列物質塑造成有用物品的技能。這個技能在製作物品上是一個非常重要的角色。" -#: lang/json/skill_from_json.py +#: lang/json/skill_from_json.py src/crafting_gui.cpp msgid "food handling" msgstr "食品處理" @@ -183220,9 +187190,9 @@ msgstr "當你看到整群蜂擁而來的殭屍。該是時候跑路了!" #: lang/json/snippet_from_json.py msgid "" -"If you're getting chased by a hoard of zombies, try ducking into the subways" -" and traveling a block or two, then coming back up." -msgstr "假如你被殭屍海追, 試著躲到地下鐵再走過一兩個車站, 然後才回到地面。" +"If you're getting chased by a horde of zombies, try ducking into the subways" +" and traveling a block or two before coming back up." +msgstr "" #: lang/json/snippet_from_json.py msgid "" @@ -183994,16 +187964,17 @@ msgstr "我曾經很反對毒品,直到有次我差點被殭屍殺死。我拖 #: lang/json/snippet_from_json.py msgid "" -"Not sure if Mike is sane any more. He was unfortunate enough to be driven " -"in to a school one time. This experience broke more than his ribs then." -msgstr "不確定Mike是否還存在理智。他很不幸的在某次開車去學校的時候撞傷,那次經歷撞斷了大量的肋骨。" +"I knew an elementary school teacher who had to fight his way out of school." +" He had to kill a dozen crazed children. I can't imagine what that does to" +" a person." +msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A thought about explosives. If you can still run and it did not went boom " -"yet, run some more. There is no such thing as excess space between you and " -"a stick of dynamite." -msgstr "說到爆裂物。如果你在爆炸前還能跑就繼續往前跑。你和一管炸藥的距離不會嫌多的。" +"A thought about explosives: If you can still run, and the explosive hasn't " +"detonated yet, run some more. No amount of caution is excessive when " +"handling a grenade." +msgstr "" #: lang/json/snippet_from_json.py msgid "Avoid using launchers in narrow hallways, you might miss." @@ -189055,6 +193026,272 @@ msgid "" "then come back to life in ragged succession." msgstr "" +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns blood red and seems to be dripping something." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like buildings the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They " +"take no notice of you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a small airplane flying low in the sky but it's flying backwards and" +" has a flag you don't know on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "All the shadows you can see rotate as if the sun was moving." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like an island chain in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a second the sun turns dark, almost as if it was a giant eye blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like insects the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" look at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards and" +" has a color inverted version of your flag on it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"human like figures." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second you see what looks like a city in the sky." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a second the sun changes course to the north and speeds up." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment you see what seem like humans the size of mountains in the " +"distance." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For an instant you are in a crowd of partially transparent people. They all" +" point at you and scream in a language, human vocal cords should not be able" +" to speak." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You see a large airplane flying low in the sky but it's flying backwards. A" +" parachuter appears near it and seemingly falls up into the plane while the " +"figure struggles." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"All the shadows you can see change shape and color beginning to resemble " +"figures with far too many limbs beckoning to you to come towards them." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "You smell a harsh chemical odor you can't quite place." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a faint electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several clouds vanish into it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several dark clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world grows hazy as if there were other shapes laid " +"on top." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment a hole in reality opens and you can see your own back." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors grow dull." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to shrink." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A short figure quickly fades in and out of existence too fast to see its " +"features." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. You " +"can't decide if it is good or bad." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as an electrical tingle washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "A giant hole opens in the sky and several neon clouds emerge from it." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A giant hole that looks like an eye opens in the sky, then closes as if " +"blinking." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a split second, the world is overlaid with a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a tiny, featureless, circular" +" room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world is overlaid with a vast alien landscape with " +"building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world is overlaid with an empty and ruined city, " +"though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see an almost perfect copy " +"of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors invert." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all distances seem to double." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence leaving you with a vague" +" impression of malice." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"You smell an entirely new smell, like nothing you have smelled before. It " +"makes you gag." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Your hair stands on end as a sharp electrical current washes over you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole opens in the sky and a vast cloud in the shape of an " +"asymetrical person emerges." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A jagged hole that resembles an eye opens in the sky, then stares at you." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast, empty void." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a tiny, featureless, " +"circular room." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second, the world vanishes and you are in a vast alien landscape" +" with building-sized plant-like shapes all around you" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a split second the world vanishes and you are in an empty and ruined " +"city, though built to a vastly different scale than those on earth." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment a hole in reality opens and you can see a leering idealized " +"copy of yourself." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "For a moment all colors flow to form jagged shapes." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"For a moment all distances seem to vanish, as if everything was one. It is " +"claustrophobic." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A tall figure quickly fades in and out of existence staring and pointing at " +"you the whole time." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "The trains have long grown still, and your echoing footsteps are the only " @@ -189063,7 +193300,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The rails are slick here with a grey, quivering ooze welling up from below." +"The rails are slick here with a gray, quivering ooze welling up from below." msgstr "" #: lang/json/snippet_from_json.py @@ -189180,7 +193417,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"The wall is carpeted by green-grey mushrooms, their caps turning towards you" +"The wall is carpeted by green-gray mushrooms, their caps turning towards you" " with anticipation." msgstr "" @@ -193858,7 +198095,7 @@ msgstr "" msgid "" "A cooked piece of a mutant animal's lung. With a lot of work you can cut " "around the hardened shell of translucent gunk, but your only reward is " -"getting to the spongy, grey, mostly-flavorless mass of tissue beneath." +"getting to the spongy, gray, mostly-flavorless mass of tissue beneath." msgstr "" #: lang/json/snippet_from_json.py @@ -193917,7 +198154,7 @@ msgid "" "A chunk of liver from a mutated animal. The surface is blackened and hard " "but cracked, exposing a few strips of fresh pink tissue underneath. After " "cracking the shell fully open, the inner tissue begins swelling at an " -"alarming rate before turning grey and lifeless." +"alarming rate before turning gray and lifeless." msgstr "" #: lang/json/snippet_from_json.py @@ -193930,7 +198167,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A cooked chunk of liver from a mutated animal. Instead of the matte grey-" +"A cooked chunk of liver from a mutated animal. Instead of the matte gray-" "brown of a normal liver, this one turned disconcertingly orange after " "heating it up, and finger-sized flakes detach themselves from it at the " "slightest touch. The taste reminds you of slightly overripe avocado, but " @@ -193948,17 +198185,17 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "A cooked chunk of liver from a mutated animal. The tissue split apart " -"following the veins before hardening, reminding you of a warped grey flower " +"following the veins before hardening, reminding you of a warped gray flower " "with a sinuous vein for a stem. Perhaps surprisingly, it tastes not " "entirely unlike liver." msgstr "" #: lang/json/snippet_from_json.py msgid "" -"A piece of kidney from a mutated animal. Cutting into it your knife slips, " -"opening a large gash on its side from which tiny, beautiful pearls roll out." -" Before your eyes they start glistening with humidity and melt, leaving no " -"trace beyond a stingin stench." +"A piece of kidney from a mutated animal. While cutting into it your knife " +"slips, opening a large gash on its side from which tiny, beautiful pearls " +"roll out. Before your eyes they start glistening with humidity and melt, " +"leaving no trace beyond a stinging stench." msgstr "" #: lang/json/snippet_from_json.py @@ -194037,7 +198274,7 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"This is a meaty grey organ you removed from a mutant. It has a chalky " +"This is a meaty gray organ you removed from a mutant. It has a chalky " "yellow coating that burns your skin, and several unidentifiable fleshy tubes" " sticking out of it. The smell it gives off stings your nostrils. You're " "pretty confident no natural creature has one of these." @@ -194147,8 +198384,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" -"Spaced evenly across the entire body you find small sacs of eggs in " -"different stages of growth" +"Spaced evenly across the entire body you find small sacs of eggs in various " +"stages of growth" msgstr "" #: lang/json/snippet_from_json.py @@ -194556,7 +198793,7 @@ msgid "" msgstr "" #: lang/json/snippet_from_json.py -msgid "You open a stomach, releasing a gush of sweet-smelling grey fluid" +msgid "You open a stomach, releasing a gush of sweet-smelling gray fluid" msgstr "" #: lang/json/snippet_from_json.py @@ -194566,8 +198803,8 @@ msgstr "" #: lang/json/snippet_from_json.py msgid "" "Your knife reaches the retracted stinger and slips on its smooth surface, " -"opening half a dozen venom glands in the process. You haven't cut yourself," -" have you?" +"opening half a dozen venom glands in the process. You dearly hope that you " +"have not cut yourself" msgstr "" #: lang/json/snippet_from_json.py @@ -195996,6 +200233,68 @@ msgid "" "being stuck in an office job." msgstr "" +#: lang/json/snippet_from_json.py +msgid "So do you like cats or dogs?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "It's nice to know that zeds don't feel pain." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Wherever we end up, at least we're still alive, right?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Somehow, I don't think I'll be going back to my old job anytime soon…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Geez, this is nothing like those Hollywood zombie films!" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think about the ethics of killing zombies?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"So you wet your toothbrush AFTER you apply toothpaste? That's so weird." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "What do you think the president is doing right now?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"What do you like to listen to? Personally I'm into bass-heavy post-glam " +"speed polka." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Don't tell anyone else, but sometimes I like to sleep holding my teddy bear." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Sometimes I see weird shit in the sky at night." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "I used to have a cat. I really miss Mr. Cuddles…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"My friends and I used to play cops-and-robbers, except with zombies. Never " +"thought I'd be in it for real…" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Do you ever think that we're in some kind of simulation?" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "kssht. Dark Horse, this is Blue Jay, what's your status, over. kssht. " @@ -198291,7 +202590,7 @@ msgstr "快讓我殺點東西!" msgid "I'm your best friend, right?" msgstr "我是你最好的朋友,對吧?" -#: lang/json/snippet_from_json.py lang/json/speech_from_json.py +#: lang/json/snippet_from_json.py msgid "I love you!" msgstr "我愛你!" @@ -198958,6 +203257,118 @@ msgstr "" msgid "You hate this loud sound." msgstr "" +#: lang/json/snippet_from_json.py +msgid "You used to have a dog like this…" +msgstr "你以前有養一隻像這樣的狗…" + +#: lang/json/snippet_from_json.py +msgid "Ha-ha! An amusing cat photo." +msgstr "哈哈! 一張有趣的貓照片。" + +#: lang/json/snippet_from_json.py +msgid "Excellent pictures of nature." +msgstr "一張漂亮的風景照片。" + +#: lang/json/snippet_from_json.py +msgid "Food photos… your stomach rumbles!" +msgstr "美食照片… 你的肚子咕嚕叫!" + +#: lang/json/snippet_from_json.py +msgid "Some very interesting travel photos." +msgstr "一些非常有趣的旅遊照片。" + +#: lang/json/snippet_from_json.py +msgid "Pictures of a concert of popular band." +msgstr "一個知名樂團的照片。" + +#: lang/json/snippet_from_json.py +msgid "Photos of someone's luxurious house." +msgstr "某人的豪宅照片。" + +#: lang/json/snippet_from_json.py +msgid "You feel nostalgic as you stare at the photo." +msgstr "看著這個照片讓你感到懷念。" + +#: lang/json/snippet_from_json.py +msgid "It is certain." +msgstr "這是肯定的。" + +#: lang/json/snippet_from_json.py +msgid "It is decidedly so." +msgstr "絕對是這樣。" + +#: lang/json/snippet_from_json.py +msgid "Without a doubt." +msgstr "毫無疑問。" + +#: lang/json/snippet_from_json.py +msgid "Yes - definitely." +msgstr "當然是。" + +#: lang/json/snippet_from_json.py +msgid "You may rely on it." +msgstr "你可以依靠它。" + +#: lang/json/snippet_from_json.py +msgid "As I see it, yes." +msgstr "我認為是肯定的。" + +#: lang/json/snippet_from_json.py +msgid "Most likely." +msgstr "最有可能的。" + +#: lang/json/snippet_from_json.py +msgid "Outlook good." +msgstr "前景良好。" + +#: lang/json/snippet_from_json.py src/handle_action.cpp +msgid "Yes." +msgstr "是。" + +#: lang/json/snippet_from_json.py +msgid "Signs point to yes." +msgstr "跡象表明是肯定的。" + +#: lang/json/snippet_from_json.py +msgid "Reply hazy, try again." +msgstr "回覆不清楚,再試一次。" + +#: lang/json/snippet_from_json.py +msgid "Ask again later." +msgstr "稍後再問。" + +#: lang/json/snippet_from_json.py +msgid "Better not tell you now." +msgstr "現在最好還是別告訴你。" + +#: lang/json/snippet_from_json.py +msgid "Can't predict now." +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "Concentrate and ask again." +msgstr "集中精力再問一遍。" + +#: lang/json/snippet_from_json.py +msgid "Don't count on it." +msgstr "不要指望它。" + +#: lang/json/snippet_from_json.py +msgid "My reply is no." +msgstr "我的回答是:不。" + +#: lang/json/snippet_from_json.py +msgid "My sources say no." +msgstr "我的消息來源說;不。" + +#: lang/json/snippet_from_json.py +msgid "Outlook not so good." +msgstr "前景不佳。" + +#: lang/json/snippet_from_json.py +msgid "Very doubtful." +msgstr "非常可疑。" + #. ~ Your slimes try to cheer you up! #. ~ Lowercase is intended: they're small voices. #: lang/json/snippet_from_json.py @@ -198976,6 +203387,21 @@ msgstr "\"我們能撐過去的! \"" msgid "\"i'm here for you!\"" msgstr "\"我在這陪你! \"" +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"wow! you look just like me! we should look out for each other!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"come on, big me, let's go!\"" +msgstr "" + +#. ~ Usual enthusiastic slimespring small voices! :D +#: lang/json/snippet_from_json.py +msgid "\"we're a team, we've got this!\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "\"WE WERE RIGHT THE GOVERNMENT DID IT\"" msgstr "" @@ -200144,6 +204570,84 @@ msgid "" "eyeball, capable of flight and [illegible] thought\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"What's the deal with boiling water? Rain water is distilled naturally! " +"It's perfectly safe, you could save so much time if you didn't boil it. I " +"drunk some river water, and I'm fine!\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Went to the emergency shelter, some guy walked in, walked out, grabbed a " +"rock, smashed a bench to bits, carved a plank out of it, walked out again. " +"Haven't seen them in 3 days… wonder what their story is.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"This note is covered in grey goo, ew… \"I know I have a fetish but THIS IS " +"TOO MUCH. My hands are made of slime. My hair is slime. My body is " +"covered in slime. I can't even use a crowbar 'cause of slime. Wherever I " +"go I leave a trail of slime. Everything's slime. My bag is falling off my " +"back into slime.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"A page from a notebook, with a morse code reference and the following " +"decoded message: \"Whiskey echo whiskey - Lima alpha delta\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"See if you want to be, extra annoying you can, nod off to the, dump and " +"go, help, Erin to dig up the, last, peice\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw one of those Foodplace workers on the street. Honestly, they look " +"no different alive than dead.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"DO NOT go to the irradiation plants! My truck looks like swiss cheese " +"after the turrets had their way with me. I'm gonna be stuck roadside for " +"hours while I patch up this mess.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I can imagine people sending their 'love and prayers' on social media. " +"Love doesn't kill zeds, prayer doesn't put food in my belly.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"I used to take everything at face value. If you couldn't measure it, " +"couldn't explain it, couldn't put a number to it, it wasn't real. Then this" +" shit happened. Real funny.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "This note is covered in grey goo, ew… \"Blorble\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Saw some chick in the forest. Her body is all green and shit, and she was" +" covered in leaves and vines.\"" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"\"Good news: My teachers aren't trying to tear my limbs off about my " +"homework. Bad news: My teachers are trying to tear my limbs off " +"regardless.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "Welcome to the Cataclysm tutorial! As you play, pop-ups like this one will appear to guide you through the basic game actions.\n" @@ -202485,6 +206989,13 @@ msgstr "" msgid "\"I saw the most beautiful dinosaur today. I must dress her.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"\"I saw this one dinosaur and I was like gorge. And then I saw this other " +"dinosaur and I was like gooorge! And then I saw this other one and I was " +"like gorgosaurus! Like for real.\"" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "MANY MISSING: A wave of missing persons reports have shaken an already " @@ -202594,6 +207105,24 @@ msgid "" "time." msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"So I just got a message from our lead wizard liaison Jacob. He's pretty out" +" of it and has been blubbering for hours, but it seems like all of the " +"central labs have been overrun. Have the necromancers finally banded " +"together to take us out? What's their plan?" +msgstr "" + +#: lang/json/snippet_from_json.py +msgid "" +"Yesterday Gregory Hamilton, the local Wizard Enforcer, went on a rampage in " +"the local shopping district. Known for being the most powerful mage in " +"Syracuse, New York, it is unsurprising that he managed to reduce the entire " +"district into a smoking crater. The National Guard took him out with a team" +" of snipers and 5 helicopters. Casualties are unknown, but current " +"estimates are 15,000 and climbing." +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "\"(Spell Name) RECIPE V3\n" @@ -202617,6 +207146,13 @@ msgid "" "Orichalcum is a primarily copper based alloy, but the creation varies from person to person in terms of minor metals and exact procedure. While not substantially stronger than steel, it's far more resistant to corrosion and general wear (some say it has a will to remain in its shape). While conventional ancient magical swords of power exist, a lot of the common understanding is based on pre-industrial people finding orichalcum weaponry in tombs and such in working condition. So why isn't orichalcum used in industrial contexts? The issue is that the magic can start to degrade if not forged with proper skill. For most failures it will revert in terms of minutes (never being orichalcum in practice to begin with), but there is a notable risk of failure up to 30 years, meaning that objects have to be \"aged\" like wine to be considered true orichalcum. Although slightly easier than forging it from scratch, reforging existing orichalcum poses the same problems, thus blocking industrial manufacturing and limiting it to craft use. You can find it in old armor and weaponry, but also in expensive heirloom cutlery and such. There is still an active community of hobbyists and artisan experts, but orichalcum is like many other magical phenomena not suited for our modern society at large.\"" msgstr "" +#: lang/json/snippet_from_json.py +msgid "" +"There was a riot at the mall here. The only explanation I have is that some" +" idiot was experimenting with a Mass Berserk spell. There's a *reason* " +"those kinds of spells are classified as military secrets…" +msgstr "" + #: lang/json/snippet_from_json.py msgid "" "A circle of esoteric symbols etched into the metal wall, they draw your eye " @@ -204127,7 +208663,7 @@ msgstr "" #: lang/json/speech_from_json.py msgid "" -"a neutral voice say, \"Customer I must inform you that my allocated time " +"a neutral voice say, \"Customer, I must inform you that my allocated time " "with you will soon come to its end.\"" msgstr "" @@ -204297,19 +208833,19 @@ msgid "\"Police inbound. Stay where you are!\"" msgstr "\"警察辦事。站住別動!\"" #: lang/json/speech_from_json.py -msgid "\"visceral chittering.\"" +msgid "visceral chittering." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a clear high-pitched hum.\"" +msgid "a clear, high-pitched hum." msgstr "" #: lang/json/speech_from_json.py -msgid "\"the hum of static electricity.\"" +msgid "the hum of static electricity." msgstr "" #: lang/json/speech_from_json.py -msgid "\"a low buzzing sound.\"" +msgid "a low buzzing sound." msgstr "" #: lang/json/speech_from_json.py @@ -204382,95 +208918,99 @@ msgid "" msgstr "" #: lang/json/speech_from_json.py -msgid "Wanna play with me?" -msgstr "想陪我玩嗎?" +msgid "\"Wanna play with me?\"" +msgstr "" + +#: lang/json/speech_from_json.py +msgid "\"Sing with me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Sing with me!" -msgstr "和我一起唱歌!" +msgid "\"I love you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Please take me with you!" -msgstr "請帶著我走!" +msgid "\"Please take me with you!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "May I have a cookie?" -msgstr "我可以吃曲奇嗎?" +msgid "\"May I have a cookie?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play together!" -msgstr "我們一起玩吧!" +msgid "\"Let's play together!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Time to play!" -msgstr "來玩囉!" +msgid "\"Time to play!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Om nom nom! Delicious!" -msgstr "(嚼嚼嚼… ) 好吃!" +msgid "\"Om nom nom! Delicious!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Are you my mommy?" -msgstr "你是我的媽咪嗎?" +msgid "\"Are you my mommy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Oh, how fun!" -msgstr "喔, 真有趣!" +msgid "\"Oh, how fun!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You're my best friend!" -msgstr "你是我最好的朋友!" +msgid "\"You're my best friend!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Heehee!" -msgstr "嘻嘻!" +msgid "\"Heehee!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have fun!" -msgstr "我們找點樂子吧!" +msgid "\"Let's have fun!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's have a tea party!" -msgstr "我們來開個茶會!" +msgid "\"Let's have a tea party!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You're the best!" -msgstr "你最棒了!" +msgid "\"You're the best!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "You shouldn't have done that." -msgstr "你不該那麼做。" +msgid "\"You shouldn't have done that.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Let's play… Russian roulette." +msgid "\"Let's play… Russian roulette.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "I hate you." -msgstr "我恨你。" +msgid "\"I hate you.\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Go kill yourself!" -msgstr "去死吧!" +msgid "\"Go kill yourself!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Big Brother is watching you…" -msgstr "老大哥正看著你…" +msgid "\"Big Brother is watching you…\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Die for me!" -msgstr "為了我去死!" +msgid "\"Die for me!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Why won't you die?" -msgstr "為什麼你不去死?" +msgid "\"Why won't you die?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Blood… Delicious." +msgid "\"Blood… Delicious.\"" msgstr "" #: lang/json/speech_from_json.py -msgid "See you… IN HELL!" +msgid "\"See you… IN HELL!\"" msgstr "" #: lang/json/speech_from_json.py @@ -204478,32 +209018,32 @@ msgid "AAAIEEEEEEE!" msgstr "" #: lang/json/speech_from_json.py -msgid "FUCK YOU!" -msgstr "去你媽的!" +msgid "\"FUCK YOU!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "What did you do with my Mommy?" -msgstr "你對我媽做了什麼?" +msgid "\"What did you do with my Mommy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Stay with me… forever!" +msgid "\"Stay with me… forever!\"" msgstr "" #: lang/json/speech_from_json.py -msgid "Hey kids. Want some candy?" -msgstr "嗨 孩子。想要些糖果嗎?" +msgid "\"Hey kids. Want some candy?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Down here, they ALL float!" -msgstr "在這兒, 他們都浮著!" +msgid "\"Down here, they ALL float!\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "Do you really need that much honey?" -msgstr "你真的需要那麼多蜂蜜?" +msgid "\"Do you really need that much honey?\"" +msgstr "" #: lang/json/speech_from_json.py -msgid "My previous owner squealed like a pig when I gutted her!" -msgstr "在我把前主人開膛破肚的時候, 她叫得像一隻豬!" +msgid "\"My previous owner squealed like a pig when I gutted her!\"" +msgstr "" #: lang/json/speech_from_json.py msgid "BARK!" @@ -204518,19 +209058,15 @@ msgid "WOOF!" msgstr "" #: lang/json/speech_from_json.py -msgid "heavy breathing" -msgstr "沉重的呼吸聲" - -#: lang/json/speech_from_json.py -msgid "labored breathing" -msgstr "疲憊的呼吸聲" +msgid "labored breathing." +msgstr "" #: lang/json/speech_from_json.py -msgid "a whimper" +msgid "a whimper." msgstr "" #: lang/json/speech_from_json.py -msgid "a rasping growl" +msgid "a rasping growl." msgstr "" #: lang/json/speech_from_json.py @@ -205597,6 +210133,10 @@ msgstr "雜貨店" msgid "Gun Store" msgstr "槍械商店" +#: lang/json/start_location_from_json.py +msgid "Garage" +msgstr "車庫" + #: lang/json/start_location_from_json.py msgid "Pawn Shop" msgstr "當舖" @@ -207047,6 +211587,10 @@ msgstr "請盡可能地進行建築工作。" msgid "Please do any mining work that you can." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Please go mop the area." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Please study from a book." msgstr "請閱讀學習一本書。" @@ -214312,6 +218856,784 @@ msgstr "" msgid "I'm glad you are OK." msgstr "我很高興知道你沒事。" +#: lang/json/talk_topic_from_json.py +msgid "What've you got for trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't understand a word you're saying." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Are you some kind of robot?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] You're called exodii? Does that mean you were driven out of your " +"home?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What kind of place is this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[per 6] Some of this tech looks… weird." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You wanted to ask me some questions earlier, and I think I was rude about " +"it. What did you want to ask?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we continue our conversation about your arrival in this world?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Can you turn me into a cyborg RIGHT NOW? I'm a developer for this game, you" +" know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I think I'm ready to try becoming a cyborg now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Any chance you could help me get some of those sweet bionic upgrades?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can you help me with CBM surgery?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Back in a blink and a whiff, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Forgot sommat?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, a returnin', an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "And a fine return, matey." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine and you still ain't dead. What brings ye roun' Rubik's neckawoods?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Bright and sunny, you're back! I got goods for ye, if you got goods for me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oy, you ain't dead. Lookin' t'trade?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who are you? What is this place?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've brought those anaesthetic kits for you. Can you help me out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I wanted to talk." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hell no, I'm out of here." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Just popping in to say hi. See you later, alligator." +msgstr "" + +#. ~ We call ourselves the exodii, eh? And other things, but that's good. +#. This is our home, such as it is. I'm called Rubik, and I've been assigned +#. to trade with you. Are you looking to trade? We're always looking for +#. scrap, metal and more. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us call us the exodii, eh? An' other things, but that'n's good. This're " +"our home, such as it. This'n's monicked as Rubik, and tassed with a trade " +"an'. You lookin' to trade? Us'n's alay for the scrap, metal an' more as it" +" be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Bye." +msgstr "我想我要走了,再見。" + +#: lang/json/talk_topic_from_json.py +msgid "Good an' fine, then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Have it as ye'll see." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "For a card an' a wink, eh?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What was it you were saying before?" +msgstr "你剛剛說的是什麼?" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as you c'n try. Us're not the greatest yarker, nor do it all for " +"gratis, kennit." +msgstr "" + +#. ~ Yes: You can surely try. I'm not the greatest speaker, and I won't just +#. chat forever for free, you know. No: Hey, can I ask you something first? +#: lang/json/talk_topic_from_json.py +msgid "Oy, c'n I bark you summat first?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Like, ask me a question? Sure, I guess." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No. I'm too busy to answer your questions, you're supposed to answer mine." +" I guess I'll head out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "'Ow long's it been since the mess happened?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[Tell them]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Thank ye. When you an' Rubik first met, howw long'd it been since the mess " +"begun?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Lovely! Benzete's gonna be a pair, that's a track! I mean, they'll be " +"right happy. This is their first jump, and it's a flappin' duck." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What makes it such a good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is Benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta go. See you later, Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So 'twere an I recalt, us're yarkin' of Benzete an' their great first jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us gotta leave the old world afore it's worn right to the gums, an y'ken, " +"and find a nice twitchy one on t'other side. Your deadland be a brand shiny" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I'm not following that at all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you mean, we have a nice, freshly dead world for you to visit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Neverken. Right and so, the enemy is new here, and us'n have a few good " +"hours in the sun beforenext the jump." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, you mean you got here early in the cataclysm. Why is that so good?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"That be a part an' switch, but this be'n nice for all, overtop the last jump" +" by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don't know what fusillies and mobbings are." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"You kennit rightly! That and this be'n nice for all, overtop the last jump " +"by heads. Otherlands with fusillies and mobbings, us'n gets a fine change " +"on that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, rights. Many lands be'd assert on thosun's. A fusilly, she's a weapon," +" shoots a shot at high speeds usin' bang. A mobbing, he's a grand box o' " +"metal, pushed by burnin' and boomin' from wit'in, kennit?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 7] Sounds like you mean a fusilly is a gun, and a mobbing is a car?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Right so, us'n'll write it in the dicky. Here, a shiny brass farthing for " +"crossin' the nation." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Who is benzete?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Them's an otherlander from thrice jumps an' change, wide as the sky. They's" +" got happily on sommat for the tracking, you ken?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I… didn't really follow that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm. They… planned out the last jump? Like as an apprentice to the ol' " +"sexten." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Oh, like a navigator?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure an' that's a fine enough word, an I'm ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "You said this was an especially good jump?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, you could call us as it. Us're from otherlands mostlike. Not " +"otherworlds though. Too risky bringin' them squelchies into the fold." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I don’t know the difference between otherlands and otherworlds." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an that's a biggun'. Otherworlds be the wherefore o' them uggo buggers" +" you got round and here, eh? Walkin' plants and talkin' mushrooms and " +"whatlike. Otherlands be tassed more of a kinship. I be from Earth, but my " +"Earth be differed. So you's shouldno be asked what the exodii is doin' on " +"Earth, because some is feelin' of us fine an' fine at home, an I'm ken. " +"You's should be askin' what the exodii is doin' razzin up your green and " +"brown." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK then, what are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about your own world." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*becomes distant for a moment. \"Ah. Home. It were a long time gone, " +"kennit. Your'n be not too far. I… don't think I want to talk 'bout it. " +"Too much metal atwixt now an' then." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "That's rough, maybe we should talk about something else." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What are you doing 'razzing up our green and brown'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How did you come to be made of metal like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Us'n saw this were a pidgeon's road, I'd razz. Only one way, I'm ken, if " +"I'm not to join the rank an' file." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I know what you mean. The only way to survive is to… \"upgrade\". " +"Can you help me with that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Robot? What assert is f'r it? Ahold…\" Rubik stops for a moment, as if " +"thinking. \"Ah, an automate? No, this'n be flesh 'n blood as ye be, " +"encased in a shell o' metal an' wire. Not so much flesh as there were. The" +" wire is amixed an' afloat with the flesh, all as one, kennit." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 9] So you're a cyborg of some kind? That's awesome. How do I become a" +" cyborg?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I don't have any idea what you mean. You're kind of a robot, but you're " +"also flesh and blood?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, that be the soggy leaves, an I'm ken. A bit o' both, but Rubik were " +"once as a kin, to you be." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can we talk about something else? This is confusing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"A junker base, innit? Pile o' gamp. Us'll pack it up and sing along soon " +"enough." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Pack it up? How can you pack up something like this?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"For an' how, ye be needin' to think wi' them elevens o' directions, kennit?" +" Us'll open a gate an' wibble-an-wobble. Same as us came." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure as ye can, at least sommat. Us'n'll try as we might to parley your " +"Anglic, but so ye kennit as us be from otherlands and all, it ain't that " +"simple." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] How come you speak English, or uh, 'anglic' like that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh yeah, right and so. Each and every. We wander, we make do. It's a " +"livin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What drove you out?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Same as you will be, an I'm ken. The enemy. The dead." +msgstr "" + +#. ~ I'm a lowlife from old Upper Landing, this is my way of talking. +#. Everyone from where I come from talks like this. +#: lang/json/talk_topic_from_json.py +msgid "" +"Be an' as us're a dock climber from ol' Upper Landin', this'll be our way o'" +" yarkin'. All an' all from our green an' brown yark like this'n." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Tell me about \"ol' Upper Landing\". What was your home like?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Makin' do, makin' do, same as you, an I'm ken. Last home got a bit too dead" +" 'n putrid roun' the edges, like. Happens to the best of 'em. Caught a " +"jibber that made us ken 'bout your place here, fired up the ol' wibble-" +"wammles and boom! Now it's all tick-tock on a zimmer, here we be. Got a " +"good timing this time, I razz you only been dead a few days when we wobbled " +"in. Freshest corpse this'n's seen in a kitchen sink." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "…what?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int or per 9] Where did you come from then? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Is there anything else you want from this place?" +msgstr "" + +#. ~ English: We're just here to survive, you understand? Our last world got +#. too overrun with undead. So, we came to a new world. This one. If I'm +#. not mistaken, it's not so long dead around here just yet. +#: lang/json/talk_topic_from_json.py +msgid "" +"Us're here to live and breathe, kennit? After our last otherland got a li'l" +" too dead an' all. So, us'n came to a new place. This'n. An I'm ken, it's" +" not so long dead round here jus' yet." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Otherland? Are you aliens or something?" +msgstr "" + +#. ~ English: Aside from just having a safe place to live? We're here to +#. mine, you understand. Picking the scraps, seeing if this world has any +#. tech worth reverse engineering. No sense letting good scraps go to waste. +#. If we're lucky, maybe we'll get some new Exodii before we teleport out. +#. Pickin' up the pieces of our sweet, shattered dreams, such as they are. +#: lang/json/talk_topic_from_json.py +msgid "" +"Aside from jus' livin' in such a cozy nook? Us be minin', ye kennit. " +"Pickin' the scraps, seein' if for your otherland has any tech worth an " +"upside-down. No sense lettin' good scraps go to waste. If we’re lucky, " +"pickin' a few new exodii afore we wobble out. Pickin' up the pieces of our " +"sweet, shattered dreams, suchlike." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"What do you mean 'go to waste'? The zombies aren't using the scrap, and " +"there's plenty to go around." +msgstr "" + +#. ~ English: This is a deadland, don't you see? You've already got an +#. infestation and it's not going away. There's no cure for the zombies. +#: lang/json/talk_topic_from_json.py +msgid "" +"This'n be a deadland, an I'm ken. You gots you a case o' the willies ain't " +"gonna sing along. No cure for these rats and fleas." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "What the hell does that mean?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"[int 8] Are you saying you think we're doomed? Why would you have come here" +" if there wasn’t some way to survive?" +msgstr "" + +#. ~ English: It means what it means. Your land's dead already, it's just +#. still kicking is all. +#: lang/json/talk_topic_from_json.py +msgid "Means what it means. Your land's a deadun', still kickin' is all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Are you saying you think we're doomed? Why would you have come here if " +"there wasn’t some way to survive?" +msgstr "" + +#. ~ English: Oh, we can teleport along as we need to. We send the scrap +#. along, then the food, and shake off some baddies, you understand. It's no +#. good for you though, it won't take too much flesh and bone. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, us can wobble along as needs. Sends the scrap back, brings in the " +"foods, and shakes off a willie or three, kennit. No good for you, won’t " +"take too much flesh an' bone." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well… could you help me fix that?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Wait. I thought you were still flesh and bone, under that metal." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Haha, not mostly, mate. Not worth riskin’ the willies, innit? I keep " +"what's Rubik, but the rest is all solid." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Not to me it don't. We ain't tassed from around here though. Looks fine " +"an' fine to you I'd razz." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[int or per 7] Not from around here? Are you aliens or something?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If'n you're full an' plenty, this'n's happy to make the call, for a shiny " +"farthing." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've got some stuff I'd like to install." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Would you be able to take out one of my implants?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Sure an' I can make you a cyborg, here an' now, since you're a developer an'" +" all." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's do it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. What was it you were saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I changed my mind. I'd better be going. Bye." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh HO! Well, well. Now you're yarkin' the King's Anglic. Aye, us'n can " +"fix ye good, if'n ye're tassed to repay it in kind. Us'll speak it as " +"clear-like as this Rubik can. If ye'n use it to put the dead back in the " +"ground, us'n can fix ye with some goods like this, aye. Stuck in the flesh " +"and to the bone, wired into the brain. Ye kennit? If no, us'll speak to " +"the Great Grey for a pint o' the ol' clarity-draught." +msgstr "" + +#. ~ English: Yes: Oh HO! Well, now you're speaking my language. We can fix +#. you up good, if you're willing to pay us back. I'll say it as clearly as I +#. can. If you help us kill the undead, we can help you get fixed up like us, +#. yeah. Stuck right into your flesh and bone and wired into your brain. You +#. understand? If not, we'll ask the Great Grey to help clear it up. No: Ah, +#. well. I'll file that away, so to speak. Maybe you could bring us a little +#. more trade, and we'll fix you up as soon as possible. The exodii won't +#. turn away a willing convert. +#: lang/json/talk_topic_from_json.py +msgid "" +"Ah, well. Us'll put that into the key and lock, if'n you're ken. Mayhap " +"you could bring us a mite and trade, and we'll see if we can fix you good " +"soon and soon. Let no exodii turn away a willin' Benny, and so it is." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"If I just keep on killing zombies, you'll help turn me into a cyborg? Why " +"are we still yarkin', then? Sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"On second thought, I'm not sure I want to let a bunch of unfamiliar alien " +"robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Maybe try that clarity-draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, well, I've got some stuff I could trade right now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, maybe I'll come back when I've traded a bit more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Hmm.\n" +"\n" +"*Rubik's voice becomes mechanical and distant for a moment, as if a computer takes over speaking.*\n" +"\n" +"In exchange for the guarantee that you will use these gifts to combat the Great Enemy, this Exodii Node is willing to provide you with a bionic module command plexus, a power supply, and all the necessary infrastructure to obtain further upgrades with standardized CBMs - compact bionic modules. We will require only a token fee for this service. We will provide further upgrades as purchased. Your personal improvement serves our mutual benefit.\n" +"\n" +"*Rubik's voice takes over again.*\n" +"\n" +"Clear as a draught?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Why can't you talk that clearly all the time? You have no idea how hard it " +"is to understand your accent, let alone your words." +msgstr "" + +#. ~ English: MY accent? You've obviously never had to listen to yourself +#. talk. Great Grey has more important work to do, get it? I have to keep +#. myself useful and keep Gret Grey doing what it's supposed to. Besides, +#. talking to the locals keeps me young and shines my chrome, as I see it. +#: lang/json/talk_topic_from_json.py +msgid "" +"*This'n's* accent? Ye've never egged y'r own yark, an' that's a fine " +"fiddle. Great Grey has a bit o' work on it, kennit? This'n has to keep " +"usselves useful, an' keep Great Grey doin' what it's tassed. Asides, " +"yarkin' to the local brights keeps us young an' shines our chrome, an I'm " +"ken." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine, whatever. It doesn't matter, if you're gonna turn me into a " +"horrifying fusion of machine and human, sign me the heck up." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"The more I talk to you, the more I'm not sure I want to let a bunch of " +"unfamiliar alien robots do brain surgery on me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "OK, OK. What was it you said? I was distracted by the voice change." +msgstr "" + +#. ~ Great, great, great!! Ha! We'll fire up the old meat grinder. Your job +#. is to bring us a bit of good tea. Not literally 'tea' of course. That's +#. my Anglic street slang. I mean the stuff that puts you to sleep for +#. surgery. The Great Grey says your word for it is 'anesthetic'. You bring +#. us two anesthetic kits, we'll fix you up with a wire and everything. +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Us'll rubber up the ol' gristle " +"mill. Yer tassed wi' bringin' us a nip o' good tea. Not 'tea', o'course. " +"I'm yarkin dockside Anglic here. Us means the stuff what puts y'to sleep " +"f'r a chirurgery. The Great Grey says y'r assert for it is 'anus fetick'. " +"You bring us two 'anus fetick' kits, us'll fix'n ye up with a wire an' a " +"tiff." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Two, uh, anesthetic kits, coming up. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Two, uh, anesthetic kits, coming up. I'd better start looking." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Something's weird, I shouldn't have ever reached this dialogue option. I'd " +"better go file a bug report." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Fine an' fine, an' fine an' fine! Ha! Now as us've got the good tea, us'll" +" rubber up the ol' gristle mill. You jus' set along with ol' Rubik." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "All right. Let's do this." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on. I need to rethink it again." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"An' that's a fine choice, I'd razz. If'n ye change mind, ol' Rubik's here " +"for the long an' short. You get to know us'n better, us'n get to know you " +"better, an' that's a good tassin'." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*makes a stiff, bowing gesture and leads you out of the shop and down a stone pathway towards one of the larger buildings in the compound. A thick steel door slides aside to reveal a gloomy, rust-dusted corridor. At the end of the corridor is a clean appearing surgical suite, not too different from any other surgical suite aside from the dim lighting and the surgeon itself. At the head of the surgical table is a contraption reminiscent of an upside-down spider, its multiple glistening medical limbs curling gently in eager anticipation of your approach. You have little time to question your choices before you feel a sharp pinch in your left shoulder, and the world drifts away.\n" +"\n" +"You awaken on a comfortable bed, your chest and throat sore but otherwise well. As the haze of anaesthesia fades you notice several tiny, sore wounds on your chest and arms. A humanoid cyborg, not Rubik, notices that you are awake and wordlessly gestures you to follow, leading you back to Rubik's store.\n" +"\n" +"\"Ah, an' you're with the stars 'n lights again, an I'm ken. 'Tis grand. Those wee CBMs will do ye little an fine, but they are a start. Now us'n can sell you all you like, an' help with install, should ye wish.\"" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "So I'm a cyborg now? I don't really feel much different." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Well, I'd better be going. Thanks for the brain implants. Bye." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"This're what ye'd razz a 'starter package', an I'm ken. Tassed to get ye " +"started, but for the real lemony tarts you'd be wantin' what this'n's got " +"for sale. As us'n can come to see you clairly-like, this'n can be tassed to" +" offer more an' more." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"So you can sell me more bionics, and as I get to know you better you'll have" +" more? Mind showing me what you've got right now?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "What's your story?" msgstr "你有過甚麼經歷?" @@ -214958,6 +220280,10 @@ msgstr "有什麼我能幫忙的嗎?" msgid "Do you need any resources?" msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "Where did you get that giant firefly terrarium?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Getting by will do for now." msgstr "" @@ -215027,6 +220353,17 @@ msgstr "如果我教100個人如何飼養兔子,那麼在這些人教其他人 msgid "That's the most hopeful thing I've heard so far." msgstr "這是迄今為止我聽到的最有希望的事情。" +#: lang/json/talk_topic_from_json.py +msgid "" +"A traveler brought this to me in return for some rabbits. Said that he'd " +"gotten it from a scientist out in the swamps but it took up too much space " +"in his car." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "It's quite unique!" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Same way you got yours, I bet." msgstr "就像你怎麼得到你的一樣,我保證。" @@ -217475,10 +222812,6 @@ msgstr "你最初在大學書店裡面做些什麼?你是位學者嗎?" msgid "What's this I hear about you having a doctorate?" msgstr "我聽說你擁有博士學位?" -#: lang/json/talk_topic_from_json.py -msgid "What was it you were saying before?" -msgstr "你剛剛說的是什麼?" - #: lang/json/talk_topic_from_json.py msgid "" "Yeah, yeah, it's all very glamorous. Sure, I trained in the great ivory " @@ -221309,10 +226642,6 @@ msgstr "我想你可能正在尋找一些幫助…" msgid "What's with these 'free merchant certified notes'?" msgstr "這個自由商會的商票是做什麼的?" -#: lang/json/talk_topic_from_json.py -msgid "Well, I'd better be going. Bye." -msgstr "我想我要走了,再見。" - #: lang/json/talk_topic_from_json.py msgid "Welcome marshal…" msgstr "歡迎法警…" @@ -221651,6 +226980,115 @@ msgid "" "too. I respect someone putting their money where their mouth is." msgstr "" +#: lang/json/talk_topic_from_json.py +msgid "" +"So, have your caravans seen anything interesting out there in the wasteland?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I wanted to tell you about a potential new trading partner I met recently." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, a new face. Nice ta meet ya. I'm the one sendin' out these here " +"caravans far and wide. What can I do ya for?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you some questions?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "I've gotta run, nice talking to you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Sure, got nothin' to load up just now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"No, sorry. Nothin' much worth notin' out there these days, just the odd " +"scattered survivor and they usually don't want random visitors." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Matter of fact, yeah. Ran into a bunch of farmers. They don't want much to" +" do with our caravans, but someone like you they might be OK with." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"There's been rumors. Folks talkin' about some kind of secret lab, out in " +"the wilds, with survivors in it. I haven't seen it myself, mind you." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, a few of my caravans have come back now talkin' about this giant metal" +" castle on top of a rock, in the middle of nowhere. They ain't been crazy " +"enough to check it out, but you could if you want." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "ERROR: out of bounds on randomize_directions." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that farm?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that lab?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "How do I get to that castle?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Ah, that's nothing new to me. Thanks anyway though." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Hold on, what were you saying before?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Actually, I have to go. Maybe later." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"*shows you on your map where to find it. \"That should get you there. Good" +" luck, I 'spect you'll need it." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Thanks for the directions. I'll check it out." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Always lookin' for new places to trade. What you got for me?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "[ Tell them about Rubik and the Exodii ]" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well now, that's a hell of a story. Some day, I'll see if we can get out " +"there an' look into it. Sounds like there'd be some real interestin' trade." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Can I ask you something else?" +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Marshal…" msgstr "" @@ -221945,6 +227383,15 @@ msgstr "你在外面小心點。" msgid "Is there any way I can join the 'Old Guard'?" msgstr "有辦法讓我加入 \"舊日守衛\" 嗎?" +#: lang/json/talk_topic_from_json.py +msgid "I've got some questions for you about those weird robots." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I think I can already tell you what you want to know about those 'robots'." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Does the Old Guard need anything?" msgstr "舊日守衛會需要什麼嗎?" @@ -222041,6 +227488,58 @@ msgid "" "yourself among the most powerful men left in the world." msgstr "你必須透過招募人才能夠真正加入。我們通常歡迎各種幫助, 不時可以來詢問我是否有工作。以承包者的身分來完成任務是累積名聲的好方法。" +#: lang/json/talk_topic_from_json.py +msgid "" +"If you want to know what our next steps are, I'm not at liberty to tell you." +" Truth be told, I don't even know myself. They don't share that sort of " +"information with me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Actually, I've met them. They seem open to trade and things. Thought you " +"might want to know." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Well, that's interesting. It's not something I'm in a position to do " +"something about, but you might want to take that information to one of the " +"teamsters for the Free Merchants. Maybe that's a way we could establish " +"some friendlier relationships." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Good idea. I'll go do that." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Huh, maybe. Can we talk about something else?" +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Oh, well. In that case, I would be interested in hearing what you know " +"about them. I can relay it to command. Let's see what I have to trade… how" +" about some antibiotics from our stores? You can never have too many of " +"them out there." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"Yeah, I've met them. They seem open to trade and things. Not hostile, at " +"least not to me." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I'll have to think about it. Let's talk about something else, for now." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "On second thought, I should go." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "" "I'm sorry, but I can't leave my post here, and I just don't have the human " @@ -224826,6 +230325,23 @@ msgstr "現在沒有,也許稍後再回來看看。" msgid "Sure…" msgstr "當然…" +#: lang/json/talk_topic_from_json.py +msgid "" +"I keep Valzain's books. There are many floors of bookshelves in his pocket " +"dimension. These happen to be the ones I think it most likely he'll read " +"soon. I can sell some that we have copies of." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "" +"I organize the books, I sell extra books, once when we still lent books I " +"would hunt down those with late books to return." +msgstr "" + +#: lang/json/talk_topic_from_json.py +msgid "Let's talk business then." +msgstr "" + #: lang/json/talk_topic_from_json.py msgid "Would you try to capture me?" msgstr "" @@ -225011,20 +230527,6 @@ msgstr "" msgid "Pack your bags, . We're going on a trip." msgstr "準備好行囊, 。我們要出發了。" -#: lang/json/technique_from_json.py -msgid "Biojutsu Counter" -msgstr "生化忍術反擊" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter-attack %s" -msgstr "你格擋並反擊 %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counter-attacks %s" -msgstr " 格擋並反擊 %s" - #: lang/json/technique_from_json.py src/game.cpp msgid "Disarm" msgstr "繳械" @@ -225632,20 +231134,6 @@ msgstr "" msgid " disarms %s using their whip" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counterattack" -msgstr "反擊" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You counter-attack %s" -msgstr "你反擊 %s" - -#: lang/json/technique_from_json.py -#, python-format -msgid " counter-attacks %s" -msgstr " 反擊 %s" - #: lang/json/technique_from_json.py msgid "Feint" msgstr "虛擊" @@ -225681,54 +231169,44 @@ msgid " jabs deftly at %s" msgstr " 靈巧的戳中 %s" #: lang/json/technique_from_json.py -msgid "Block Counter Disarm" +msgid "Counter Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly disarm %s" -msgstr "" +msgid "You smoothly throw %s" +msgstr "你流暢的投擲 %s" #: lang/json/technique_from_json.py #, python-format -msgid " blocks and smoothly disarms %s" +msgid " blocks and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Block Counter Throw" +msgid "Counter Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You block and smoothly throw %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and smoothly throws %s" +msgid " dodges and smoothly throws %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Dodge Counter Throw" +msgid "Disarming Throw (block)" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You dodge and smoothly throw %s" +msgid "You smoothly disarm %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " dodges and smoothly throws %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dodge Counter Disarm" +msgid " blocks and smoothly disarms %s" msgstr "" #: lang/json/technique_from_json.py -#, python-format -msgid "You dodge and smoothly disarm %s" +msgid "Disarming Throw (dodge)" msgstr "" #: lang/json/technique_from_json.py @@ -225812,20 +231290,6 @@ msgstr "%s嘗試抓住你,但你用力掙脫了!" msgid "The %s tries to grab , but they break free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Hit Them Back" -msgstr "反擊" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You catch %s's attack, and hit back" -msgstr "你接住了 %s 的攻擊,並反擊回去!" - -#: lang/json/technique_from_json.py -#, python-format -msgid " catches %s, and counters" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You fake a strike at %s" @@ -225945,45 +231409,45 @@ msgid " performs the Crane Wing at %s." msgstr "" #: lang/json/technique_from_json.py -msgid "Crane Flap" -msgstr "鶴拳振翅" +msgid "Crane Kick" +msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "The %s tries to grab you, but you swing your arms and break free!" +msgid "You leap and kick %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "The %s tries to grab , but they flap free!" +msgid " leaps and kicks %s" msgstr "" #: lang/json/technique_from_json.py -msgid "Crane Strike" -msgstr "鶴拳啄擊" +msgid "Crane Flap" +msgstr "鶴拳振翅" #: lang/json/technique_from_json.py #, python-format -msgid "You hand-peck and swat down %s" +msgid "The %s tries to grab you, but you swing your arms and break free!" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " hand-pecks and swats down %s" +msgid "The %s tries to grab , but they flap free!" msgstr "" #: lang/json/technique_from_json.py -msgid "Crane Kick" -msgstr "" +msgid "Crane Strike" +msgstr "鶴拳啄擊" #: lang/json/technique_from_json.py #, python-format -msgid "You leap and kick %s" +msgid "You hand-peck and strike %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " leaps and kicks %s" +msgid " hand-pecks and strikes %s" msgstr "" #: lang/json/technique_from_json.py @@ -226000,34 +231464,6 @@ msgstr "你用龍爪猛擊 %s " msgid " lashes out at %s with a Dragon Claw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Dragon Vortex Block" -msgstr "龍漩格擋" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block the attack and send %s spinning" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and spins %s" -msgstr "" - -#: lang/json/technique_from_json.py -msgid "Dragon Wing Dodge" -msgstr "龍翼閃避" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You dodge the attack and leave %s off balance" -msgstr "你閃開了攻擊並令 %s 失衡" - -#: lang/json/technique_from_json.py -#, python-format -msgid " dodges and leaves %s off balance" -msgstr "" - #: lang/json/technique_from_json.py #, python-format msgid "You sweep %s with a quick Dragon Tail" @@ -226109,18 +231545,18 @@ msgid " combination strikes %s" msgstr " 組合攻擊 %s" #: lang/json/technique_from_json.py -msgid "Puño Strike" +msgid "Stunning Strike" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deliver a puño to %s" -msgstr "你出拳攻擊 %s" +msgid "You deliver a stunning strike to %s" +msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " haftstrikes %s" -msgstr " 柄擊 %s" +msgid " delivers a stunning strike to %s" +msgstr "" #: lang/json/technique_from_json.py msgid "Low Strike" @@ -226161,7 +231597,7 @@ msgid " lunges at %s" msgstr " 箭步突刺 %s" #: lang/json/technique_from_json.py -msgid "Compound Attack" +msgid "Compound Attack (Remise)" msgstr "" #: lang/json/technique_from_json.py @@ -226174,6 +231610,10 @@ msgstr "" msgid "'s feint leads to a compound attack against %s" msgstr "" +#: lang/json/technique_from_json.py +msgid "Compound Attack (Counter Time)" +msgstr "" + #: lang/json/technique_from_json.py msgid "Fencing Riposte" msgstr "" @@ -226320,20 +231760,6 @@ msgstr "" msgid "The %s tries to grab , but they break its feeble grapple!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter Throw" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You evade and toss %s to the ground" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " evades and tosses %s to the ground" -msgstr "" - #: lang/json/technique_from_json.py msgid "Karate Counter" msgstr "" @@ -226438,20 +231864,6 @@ msgstr "" msgid "The %s tries to grab , but they wrestle free!" msgstr "" -#: lang/json/technique_from_json.py -msgid "Counter" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You block and counter %s" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " blocks and counters %s" -msgstr "" - #: lang/json/technique_from_json.py msgid "Leopard Paw" msgstr "豹爪" @@ -226552,20 +231964,6 @@ msgid "" "another strike" msgstr "" -#: lang/json/technique_from_json.py -msgid "Master Cut" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You parry and strike %s in one movement" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " parries and strikes %s in one movement" -msgstr "" - #: lang/json/technique_from_json.py msgid "Elbow Strike" msgstr "肘擊" @@ -226890,41 +232288,37 @@ msgid " lashes out at %s with a vicious Snake Strike" msgstr "" #: lang/json/technique_from_json.py -msgid "Push" -msgstr "推" +msgid "Shove" +msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You push %s away" -msgstr "你將%s推開" +msgid "You shove %s back" +msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " pushes %s away" -msgstr "將%s推開" - -#: lang/json/technique_from_json.py -msgid "Shove" +msgid " shoves %s back" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You shove %s back" +msgid "You deftly trip %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " shoves %s back" +msgid " deftly trips %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid "You deftly trip %s" +msgid "You fake a thrust at %s" msgstr "" #: lang/json/technique_from_json.py #, python-format -msgid " deftly trips %s" +msgid " fakes a thrust at %s" msgstr "" #: lang/json/technique_from_json.py @@ -227125,20 +232519,6 @@ msgstr "" msgid "'s attack misses %s but they don't let up" msgstr "" -#: lang/json/technique_from_json.py -msgid "Receive and Counter" -msgstr "接招並反擊" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You receive %s's gift of violence, and return it in kind" -msgstr "你招架了 %s 的暴力攻擊,並以相同力道反擊" - -#: lang/json/technique_from_json.py -#, python-format -msgid " receives %s's attack, and counters" -msgstr " 招架 %s 的攻擊,並且反擊" - #: lang/json/technique_from_json.py msgid "Drunken Feint" msgstr "" @@ -227899,20 +233279,6 @@ msgstr "" msgid " cleanly reap throug %s and those nearby" msgstr "" -#: lang/json/technique_from_json.py -msgid "Ausstoß" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You redirect %s's attack against them" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " redirects %s's attack against them" -msgstr "" - #: lang/json/technique_from_json.py msgid "Kumai Sharinraku" msgstr "" @@ -228011,20 +233377,6 @@ msgstr "" msgid " uses Low Sweep on %s" msgstr "" -#: lang/json/technique_from_json.py -msgid "Fool's Strike" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You completely fool %s and strike back" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " completely fools %s and strike back" -msgstr "" - #: lang/json/technique_from_json.py msgid "Hydra Slaying Strike" msgstr "" @@ -228067,20 +233419,6 @@ msgstr "" msgid " spins and hurls %s away with a Ballista Throw" msgstr "" -#: lang/json/technique_from_json.py -msgid "Flowing Water" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid "You deflect %s's attack and counter in one fluid motion" -msgstr "" - -#: lang/json/technique_from_json.py -#, python-format -msgid " deflects %s's attack and counters in one fluid motion" -msgstr "" - #: lang/json/technique_from_json.py msgid "Disarming Slash" msgstr "" @@ -230322,6 +235660,18 @@ msgid "" "decades before reaching maturity, so there's no use waiting around." msgstr "" +#: lang/json/terrain_from_json.py +msgid "mega fern" +msgstr "" + +#. ~ Description for mega fern +#: lang/json/terrain_from_json.py +msgid "" +"A gigantic fern like nothing you've seen before. The leaves are a bright " +"scarlet color with a net like structure of green veins. The multipronged " +"trunks appear to have the consistency of balsa wood." +msgstr "" + #: lang/json/terrain_from_json.py msgid "apple tree" msgstr "蘋果樹" @@ -233714,24 +239064,24 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Window with metal grate" -msgstr "金屬柵欄窗" +msgid "window with metal grate" +msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window, Highly durability and will stand " "against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a closed curtain, Highly " "durability and will stand against any foe" msgstr "" -#. ~ Description for Window with metal grate +#. ~ Description for window with metal grate #: lang/json/terrain_from_json.py msgid "" "Metal bars made into a grate for a window with a opened curtain, Highly " @@ -233739,32 +239089,32 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window" +msgid "single glazed glass window" msgstr "" -#. ~ Description for Single glazed glass window -#. ~ Description for Single glazed glass window open -#. ~ Description for Reinforced single glazed glass window open +#. ~ Description for single glazed glass window +#. ~ Description for open single glazed glass window +#. ~ Description for open reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window open" +msgid "open single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Single glazed glass window with a curtain" +msgid "single glazed glass window with a curtain" msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that is closed to block " "visibility and shut out any light." msgstr "" -#. ~ Description for Single glazed glass window with a curtain +#. ~ Description for single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A glazed window with fancy curtains on the inside that can be drawn closed " @@ -233772,35 +239122,30 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window" +msgid "reinforced single glazed glass window" msgstr "" -#. ~ Description for Reinforced single glazed glass window +#. ~ Description for reinforced single glazed glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of reinforced glass inserted into a glazed window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window open" +msgid "open reinforced single glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced single glazed glass window with a curtain" +msgid "reinforced single glazed glass window with a curtain" msgstr "" -#. ~ Description for Reinforced single glazed glass window with a curtain +#. ~ Description for reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A window with fancy curtains on the inside that is drawn closed to block " "visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "reinforced single glazed glass window with a curtain" -msgstr "" - #. ~ Description for reinforced single glazed glass window with a curtain -#. ~ Description for Reinforced single glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced window with fancy curtains on the inside that can be drawn " @@ -233808,33 +239153,33 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window" +msgid "double glazed glass window" msgstr "" -#. ~ Description for Double glazed glass window -#. ~ Description for Double glazed glass window open +#. ~ Description for double glazed glass window +#. ~ Description for open double glazed glass window #: lang/json/terrain_from_json.py msgid "Two giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window open" +msgid "open double glazed glass window" msgstr "" #: lang/json/terrain_from_json.py -msgid "Double glazed glass window with a curtain" +msgid "double glazed glass window with a curtain" msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Double glazed glass window with a curtain -#. ~ Description for Reinforced double glazed glass window with a curtain +#. ~ Description for double glazed glass window with a curtain +#. ~ Description for reinforced double glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A double glazed window with fancy curtains on the inside that can be drawn " @@ -233842,10 +239187,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window" +msgid "reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window +#. ~ Description for reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A reinforced, double-glazed window inserted into a frame. For extra " @@ -233853,10 +239198,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window open" +msgid "open reinforced double glazed glass window" msgstr "" -#. ~ Description for Reinforced double glazed glass window open +#. ~ Description for open reinforced double glazed glass window #: lang/json/terrain_from_json.py msgid "" "A double glazed window with a giant sheet of reinforced glass inserted into " @@ -233864,40 +239209,38 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced double glazed glass window with a curtain" +msgid "reinforced double glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window" +msgid "triple glazed glass window" msgstr "" -#. ~ Description for Triple glazed glass window -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for triple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Three giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Triple glazed glass window +#. ~ Description for triple glazed glass window #: lang/json/terrain_from_json.py msgid "A triple glazed giant sheet of glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple glazed glass window with a curtain" +msgid "triple glazed glass window with a curtain" msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window with a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that is closed to " "block visibility and shut out any light." msgstr "" -#. ~ Description for Triple glazed glass window with a curtain -#. ~ Description for Triple-pane glass window With a curtain -#. ~ Description for Reinforced triple-pane glass window with a curtain -#. ~ Description for Reinforced triple glazed glass window With a curtain +#. ~ Description for triple glazed glass window with a curtain +#. ~ Description for reinforced triple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A triple glazed window with fancy curtains on the inside that can be drawn " @@ -233905,21 +239248,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Triple-pane glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Reinforced-triple pane glass window" +msgid "reinforced triple glazed glass window" msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one reinforced glass sheet inserted " "into a window frame." msgstr "" -#. ~ Description for Reinforced-triple pane glass window +#. ~ Description for reinforced triple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three glass sheets inserted as well as one giant sheet of reinforced glass " @@ -233927,44 +239266,35 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window with a curtain" +msgid "reinforced triple glazed glass window with a curtain" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced triple-pane glass window with a curtain" +msgid "quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced triple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window" -msgstr "" - -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "Four giant sheet of glass inserted into a window frame." msgstr "" -#. ~ Description for Quadruple glazed glass window +#. ~ Description for quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "An open quadruple glazed window." msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window with a curtain" +msgid "quadruple glazed glass window with a curtain" msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that is closed " "to block visibility and shut out any light." msgstr "" -#. ~ Description for Quadruple glazed glass window with a curtain -#. ~ Description for Quadruple glazed glass window With a curtain +#. ~ Description for quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A quadruple glazed window with fancy curtains on the inside that can be " @@ -233972,14 +239302,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Quadruple glazed glass window With a curtain" +msgid "reinforced quadruple glazed glass window" msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window +#. ~ Description for reinforced quadruple glazed glass window #: lang/json/terrain_from_json.py msgid "" "Three large sheets of glass and 1 reinforced sheet of glass inserted into a " @@ -233997,12 +239323,7 @@ msgid "" "is closed to block visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window with a curtain" -msgstr "" - -#. ~ Description for Reinforced quadruple glazed glass window with a curtain -#. ~ Description for Reinforced quadruple glazed glass window With a curtain +#. ~ Description for reinforced quadruple glazed glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A reinforced quadruple glazed window with fancy curtains on the inside that " @@ -234010,21 +239331,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced quadruple glazed glass window With a curtain" -msgstr "" - -#: lang/json/terrain_from_json.py -msgid "Plastic window" +msgid "plastic window" msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising a sheet of translucent, rigid plastic secured " "in a wooden frame. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window +#. ~ Description for plastic window #: lang/json/terrain_from_json.py msgid "" "An opened makeshift window comprising a sheet of translucent, rigid plastic " @@ -234032,10 +239349,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with a curtain" +msgid "plastic window with a curtain" msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a closed curtain. It's a sheet of translucent, " @@ -234043,7 +239360,7 @@ msgid "" "to block the light. It'll do in a pinch." msgstr "" -#. ~ Description for Plastic window with a curtain +#. ~ Description for plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift window with a opened curtain. It's a sheet of translucent, " @@ -234052,10 +239369,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Plastic window with open curtains" +msgid "plastic window with open curtains" msgstr "" -#. ~ Description for Plastic window with open curtains +#. ~ Description for plastic window with open curtains #: lang/json/terrain_from_json.py msgid "" "An open makeshift window with open curtains. It's a sheet of translucent, " @@ -234064,21 +239381,17 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window" +msgid "reinforced plastic window" msgstr "" -#. ~ Description for Reinforced plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "A makeshift window comprising three sheets of translucent, rigid plastic " "secured in a wooden frame. It'll do in a pinch." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Reinforced Plastic window" -msgstr "" - -#. ~ Description for Reinforced Plastic window +#. ~ Description for reinforced plastic window #: lang/json/terrain_from_json.py msgid "" "An open makeshift window comprising three sheets of translucent, rigid " @@ -234086,10 +239399,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with a curtain" +msgid "reinforced plastic window with a curtain" msgstr "" -#. ~ Description for Reinforced plastic window with a curtain +#. ~ Description for reinforced plastic window with a curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a closed curtain. It's three sheets of " @@ -234098,10 +239411,10 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Reinforced plastic window with an open curtain" +msgid "reinforced plastic window with an open curtain" msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "A makeshift reinforced window with a opened curtain. It's three sheets of " @@ -234109,7 +239422,7 @@ msgid "" "about it to block the light as required. It'll do in a pinch." msgstr "" -#. ~ Description for Reinforced plastic window with an open curtain +#. ~ Description for reinforced plastic window with an open curtain #: lang/json/terrain_from_json.py msgid "" "An open makeshift reinforced window with a opened curtain. It's three " @@ -234118,26 +239431,26 @@ msgid "" msgstr "" #: lang/json/terrain_from_json.py -msgid "Skylight frame" +msgid "skylight frame" msgstr "" -#. ~ Description for Skylight frame +#. ~ Description for skylight frame #: lang/json/terrain_from_json.py msgid "A wooden skylight frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window" +msgid "tempered glass window" msgstr "" -#. ~ Description for Tempered glass window -#. ~ Description for Tempered glass window open +#. ~ Description for tempered glass window +#. ~ Description for open tempered glass window #: lang/json/terrain_from_json.py msgid "A giant sheet of tempered glass inserted into a window frame." msgstr "" #: lang/json/terrain_from_json.py -msgid "Tempered glass window open" +msgid "open tempered glass window" msgstr "" #: lang/json/terrain_from_json.py @@ -234151,11 +239464,7 @@ msgid "" " visibility and shut out any light." msgstr "" -#: lang/json/terrain_from_json.py -msgid "Tempered glass window with a curtain" -msgstr "" - -#. ~ Description for Tempered glass window with a curtain +#. ~ Description for tempered glass window with a curtain #: lang/json/terrain_from_json.py msgid "" "A tempered window with fancy curtains on the inside that can be drawn closed" @@ -236661,18 +241970,125 @@ msgid "" "consumes more fuel." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"An inline 6-cylinder diesel engine. Somewhat more powerful than a V6, you " +"might see an engine like this in a road roller or excavator." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder diesel engine, typical of a bus, RV, large van, or " +"armored personnel carrier." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A large 8-cylinder diesel engine, powerful enough for a semi truck, armored " +"car, or Humvee." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine delivering around 10 horsepower, enough " +"for a scooter or motorized bicycle." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A hefty 1-cylinder gasoline engine of about 55 horsepower, normally found in" +" a motocross or dirt bike." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small 1-cylinder gasoline engine with only a few horsepower, suitable for " +"a push lawn mower." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A four-cylinder gasoline engine, commonly found in small passenger cars and " +"light trucks." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive 12-cylinder gasoline engine, with the kind of power you might need" +" in a sports car." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "A massive 12-cylinder diesel engine, typical of a heavy cargo truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful 6-cylinder gasoline engine strong enough for a pickup truck, SUV," +" or full-size van." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty 8-cylinder gasoline engine, like you might find in a fire " +"truck, ambulance, or tow truck." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A 2-cylinder gasoline engine appropriate for a motorcycle or quad bike." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A closed cycle, external combustion steam engine. Burns coal or charcoal " "from a bunker in the vehicle to produce steam." msgstr "" +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small but powerful gas turbine engine, suitable for powering a small one " +"or two-seat helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty gas turbine engine, like those typically found in a Medevac, " +"Apache, or Blackhawk helicopter." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "" +"A huge gas turbine engine, used to lift large military helicopters such as " +"the V-22 Osprey." +msgstr "" + #. ~ Description for door #. ~ Description for wooden door #: lang/json/vehicle_part_from_json.py msgid "A door. Has a window so you can see out of it, even when closed." msgstr "一扇門。上面有窗戶, 因此即使它關閉時你也可以看到外面。" +#: lang/json/vehicle_part_from_json.py +msgid "cloth flap door" +msgstr "" + +#. ~ Description for cloth flap door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be fastened into a closed position to act as a door." +msgstr "" + +#: lang/json/vehicle_part_from_json.py +msgid "cloth curtain door" +msgstr "" + +#. ~ Description for cloth curtain door +#: lang/json/vehicle_part_from_json.py +msgid "" +"A cloth sheet that can be slid into a closed position to act as a door." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "opaque door" msgstr "不透明門" @@ -237035,6 +242451,57 @@ msgstr "一個安裝在車內的小鏡子。如果你看到鏡子, 你的視野 msgid "An electric motor." msgstr "電力馬達。" +#. ~ Description for tiny electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"An electric motor too small for most vehicles, but just right for powering a" +" bicycle." +msgstr "" + +#. ~ Description for small electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A light-duty electrical motor, strong enough for an electric bicycle or " +"scooter, but probably not practical for heavier vehicles." +msgstr "" + +#. ~ Description for electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A medium-duty electrical motor, suitable for powering ultra-light vehicles, " +"or as part of a hybrid gas-electric drivetrain." +msgstr "" + +#. ~ Description for large electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A heavy-duty electrical motor, capable of propelling a full-size car or SUV " +"through electric power alone, provided you have the battery capacity." +msgstr "" + +#. ~ Description for enhanced electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A powerful high-performance electric motor, as found in those consumer " +"electric sports cars with ridiculous, ludicrous, or similarly hyperbolic " +"acceleration options. It needs a lot of battery power." +msgstr "" + +#. ~ Description for super electric motor +#: lang/json/vehicle_part_from_json.py +msgid "" +"A massive and extremely powerful electric motor, delivering high torque at " +"the cost of significant power drain, this would be well suited to an " +"electric racing car." +msgstr "" + +#. ~ Description for 1300hp electric train engine +#: lang/json/vehicle_part_from_json.py +msgid "" +"An enormous and heavy electric traction motor, powerful enough to pull a " +"train." +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "" "A reinforced ram. Place at the edge of vehicle to reduce damage taken in " @@ -237517,6 +242984,15 @@ msgstr "一個走道。" msgid "wooden aisle" msgstr "木製走道" +#: lang/json/vehicle_part_from_json.py +msgid "collapsible wooden aisle" +msgstr "" + +#. ~ Description for collapsible wooden aisle +#: lang/json/vehicle_part_from_json.py +msgid "A collapsible aisle." +msgstr "" + #. ~ Description for floor trunk #: lang/json/vehicle_part_from_json.py msgid "An aisle. A hatch lets you access a cargo space beneath it." @@ -237651,6 +243127,10 @@ msgstr "折疊式木箱" msgid "wood table" msgstr "木桌" +#: lang/json/vehicle_part_from_json.py +msgid "flat-packable table" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "wooden boat hull" msgstr "木製船體" @@ -237719,6 +243199,10 @@ msgstr "包含一些燈光和操控裝置的框架。" msgid "vehicle-mounted heater" msgstr "車載暖氣" +#: lang/json/vehicle_part_from_json.py +msgid "small vehicle-mounted heater" +msgstr "" + #: lang/json/vehicle_part_from_json.py msgid "vehicle-mounted cooler" msgstr "車載冷氣" @@ -237825,6 +243309,12 @@ msgid "" "vehicle." msgstr "" +#. ~ Description for collapsible solar array +#: lang/json/vehicle_part_from_json.py +msgid "" +"A small array of solar panels designed to be able to fold into one another." +msgstr "" + #. ~ Description for reinforced solar panel #: lang/json/vehicle_part_from_json.py msgid "" @@ -239010,8 +244500,8 @@ msgstr "疲勞" msgid "Fatig" msgstr "" -#: lang/json/widget_from_json.py lang/json/widget_from_json.py src/panels.cpp -#: src/panels.cpp +#: lang/json/widget_from_json.py lang/json/widget_from_json.py +#: src/debug_menu.cpp src/panels.cpp src/panels.cpp msgid "Weariness" msgstr "疲勞" @@ -241722,6 +247212,18 @@ msgstr "屬性" msgid "Coverage:" msgstr "覆蓋率:" +#: src/armor_layers.cpp +msgid "Coverage (Melee):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Ranged):" +msgstr "" + +#: src/armor_layers.cpp +msgid "Coverage (Vitals):" +msgstr "" + #: src/armor_layers.cpp msgid "Encumbrance:" msgstr "累贅:" @@ -241813,9 +247315,10 @@ msgstr "排序裝備" #: src/armor_layers.cpp #, c-format msgid "" -"Press [%s] for help. Press [%s]" -" to change keybindings." -msgstr "按[%s]顯示說明,按[%s]更改熱鍵設定。" +"[%s] Hide sprite. [%s] Change " +"side. Press [%s] for help. Press " +"[%s] to change keybindings." +msgstr "" #: src/armor_layers.cpp msgid "(Innermost)" @@ -241826,6 +247329,12 @@ msgstr "(最內層)" msgid "Storage (%s)" msgstr "儲物空間 (%s)" +#. ~ Hint: Letter to show which piece of armor is Hidden in the layering menu +#. ~ Hint: Letter to show which mutation is Hidden in the mutation menu +#: src/armor_layers.cpp src/mutation_ui.cpp +msgid " H" +msgstr "" + #: src/armor_layers.cpp msgid "(Outermost)" msgstr "(最外層)" @@ -246018,11 +251527,6 @@ msgstr "你不認為使用它有任何效果。" msgid "No limb would benefit from it." msgstr "沒有任何肢體能從中受益。" -#: src/character_body.cpp src/inventory_ui.cpp src/monexamine.cpp -#: src/monexamine.cpp src/npctalk_funcs.cpp src/pickup.cpp src/vehicle_use.cpp -msgid "Cancel" -msgstr "取消" - #: src/character_escape.cpp msgid "You struggle to stand." msgstr "你掙扎試著站起。" @@ -246333,6 +251837,14 @@ msgstr "挖掘點" msgid "Designate an area to mine." msgstr "指定一個挖礦區域。" +#: src/clzones.cpp +msgid "Mop tile" +msgstr "" + +#: src/clzones.cpp +msgid "Designate an area to mop clean." +msgstr "" + #: src/clzones.cpp msgid "Vehicle Deconstruct Zone" msgstr "車輛拆解區" @@ -248551,10 +254063,6 @@ msgstr "用於製作的主要技能" msgid "any skill used to craft" msgstr "用於製作的任何技能" -#: src/crafting_gui.cpp -msgid "cooking" -msgstr "烹飪" - #: src/crafting_gui.cpp msgid "quality required to craft" msgstr "用於製作的特性需求" @@ -249097,6 +254605,14 @@ msgstr "" msgid "Test weather" msgstr "測試天氣" +#: src/debug_menu.cpp +msgid "Write global effect_on_condition(s) to eocs.output" +msgstr "" + +#: src/debug_menu.cpp +msgid "Write global vars(s) to var_list.output" +msgstr "" + #: src/debug_menu.cpp msgid "Test map extra list" msgstr "" @@ -249527,6 +255043,11 @@ msgstr "" msgid "Fatigue: %d %s" msgstr "" +#: src/debug_menu.cpp +#, c-format +msgid "Weariness: %d %s" +msgstr "" + #: src/debug_menu.cpp msgid "Stored kCal: " msgstr "" @@ -249615,6 +255136,11 @@ msgstr "把疲勞度設為?目前:%d" msgid "Set sleep deprivation to? Currently: %d" msgstr "把睡眠剝奪設為?目前:%d" +#: src/debug_menu.cpp +#, c-format +msgid "Reset weariness? Currently: %d" +msgstr "" + #: src/debug_menu.cpp #, c-format msgid "Set %s to? Currently: %d" @@ -250366,7 +255892,7 @@ msgstr "" msgid "Add bleeding duration in minutes, equal to intensity:" msgstr "" -#: src/debug_menu.cpp +#: src/debug_menu.cpp src/game.cpp msgid "This binary was not compiled with tiles support." msgstr "這個執行檔並沒有編譯成支援圖像。" @@ -250388,15 +255914,6 @@ msgid "" "items and vehicles!" msgstr "不存檔直接退出?這可能會導致各種問題,例如複製或遺失物品和車輛!" -#: src/debug_menu.cpp -#, c-format -msgid "Successfully saved your screenshot to: %s" -msgstr "成功儲存螢幕擷取畫面到: %s" - -#: src/debug_menu.cpp -msgid "An error occurred while trying to save the screenshot." -msgstr "儲存螢幕擷取畫面時發生錯誤。" - #: src/debug_menu.cpp msgid "Report written to debug.log" msgstr "寫入 debug.log 的報告" @@ -250443,6 +255960,8 @@ msgid "" "Origin: %s\n" "%s" msgstr "" +"來自:%s\n" +"%s" #: src/descriptions.cpp msgid "You can't see the terrain here." @@ -253979,6 +259498,10 @@ msgstr "交易" msgid "You swap places with %s." msgstr "你和 %s 互換位置。" +#: src/game.cpp +msgid "You cannot swap places while grabbing something." +msgstr "" + #: src/game.cpp #, c-format msgid "%s moves out of the way." @@ -254263,6 +259786,15 @@ msgstr "你無法到達那裡。" msgid "Nickname:" msgstr "" +#: src/game.cpp +#, c-format +msgid "Successfully saved your screenshot to: %s" +msgstr "成功儲存螢幕擷取畫面到: %s" + +#: src/game.cpp +msgid "An error occurred while trying to save the screenshot." +msgstr "儲存螢幕擷取畫面時發生錯誤。" + #: src/game.cpp src/init.cpp msgid "Items" msgstr "物品" @@ -256584,10 +262116,6 @@ msgstr "騎乘時無法睡覺。" msgid "Are you sure you want to sleep?" msgstr "你確定要睡覺嗎?" -#: src/handle_action.cpp src/iuse.cpp -msgid "Yes." -msgstr "是。" - #: src/handle_action.cpp msgid "Yes, and save game before sleeping." msgstr "是, 睡覺前先存檔。" @@ -256728,6 +262256,14 @@ msgstr "" msgid "Auto-disassemble anything in disassembly zone - auto-fetch tools." msgstr "" +#: src/handle_action.cpp +msgid "Mop area" +msgstr "" + +#: src/handle_action.cpp +msgid "Mop clean the area." +msgstr "" + #. ~ draw (first) gun contained in holster #. ~ %1$s: weapon name, %2$s: container name, %3$d: remaining ammo count #: src/handle_action.cpp @@ -257087,10 +262623,6 @@ msgctxt "liquid" msgid "What to do with the %s?" msgstr "要對 %s 做什麼?" -#: src/handle_liquid.cpp -msgid "Fuel bionic with it" -msgstr "" - #: src/handle_liquid.cpp msgid "Consume it" msgstr "喝了它" @@ -257619,15 +263151,6 @@ msgstr "" msgid "This bulletin board is not inside a camp" msgstr "" -#: src/iexamine.cpp -msgid "" -"This wall is perfectly vertical. Odd, twisted holes are set in it, leading\n" -"as far back into the solid rock as you can see. The holes are humanoid in\n" -"shape, but with long, twisted, distended limbs." -msgstr "" -"這堵牆是完全垂直。奇怪的是, 牆面上嵌著許多扭曲深不見底的洞。\n" -"這些洞看起來像人形, 但是四肢部分卻是拉長扭曲的。" - #: src/iexamine.cpp msgid "Remove the petrified eye from the pedestal?" msgstr "" @@ -260344,7 +265867,7 @@ msgstr "" #: src/item.cpp #, c-format msgid "Origin: %s" -msgstr "" +msgstr "來自:%s" #: src/item.cpp #, c-format @@ -260933,6 +266456,21 @@ msgstr "裝滿時:" msgid "%s:" msgstr "%s:" +#. ~ (M)elee coverage +#: src/item.cpp +msgid "(M):" +msgstr "" + +#. ~ (R)anged coverage +#: src/item.cpp +msgid "(R):" +msgstr "" + +#. ~ (V)itals coverage +#: src/item.cpp +msgid "(V):" +msgstr "" + #: src/item.cpp src/panels.cpp src/panels.cpp msgid "Torso:" msgstr "軀幹:" @@ -263922,13 +269460,14 @@ msgid "BEES!" msgstr "蜜蜂!!" #: src/iuse.cpp -msgid "Set the timer to (0 to cancel)?" -msgstr "設定計時器? (0 為取消)" +msgid "Set the timer to how many seconds (0 to cancel)?" +msgstr "" #: src/iuse.cpp #, c-format -msgid "You set the timer to %d." -msgstr "你設定計時器為 %d。" +msgid "You set the timer to %d second." +msgid_plural "You set the timer to %d seconds." +msgstr[0] "" #: src/iuse.cpp msgid "Tick!" @@ -264665,9 +270204,8 @@ msgid "Your vision is fine already." msgstr "你的視力變得正常了。" #: src/iuse.cpp -#, c-format -msgid "You hear \"%s\"" -msgstr "你聽到 \"%s\"" +msgid "You press a button on the doll to make it talk." +msgstr "" #: src/iuse.cpp msgid "You need a mechanics skill of 2 to use this repair kit." @@ -264886,38 +270424,6 @@ msgstr "解密記憶卡 (低技能)" msgid "Wasted time. These pictures do not provoke your senses." msgstr "" -#: src/iuse.cpp -msgid "You used to have a dog like this…" -msgstr "你以前有養一隻像這樣的狗…" - -#: src/iuse.cpp -msgid "Ha-ha! An amusing cat photo." -msgstr "哈哈! 一張有趣的貓照片。" - -#: src/iuse.cpp -msgid "Excellent pictures of nature." -msgstr "一張漂亮的風景照片。" - -#: src/iuse.cpp -msgid "Food photos… your stomach rumbles!" -msgstr "美食照片… 你的肚子咕嚕叫!" - -#: src/iuse.cpp -msgid "Some very interesting travel photos." -msgstr "一些非常有趣的旅遊照片。" - -#: src/iuse.cpp -msgid "Pictures of a concert of popular band." -msgstr "一個知名樂團的照片。" - -#: src/iuse.cpp -msgid "Photos of someone's luxurious house." -msgstr "某人的豪宅照片。" - -#: src/iuse.cpp -msgid "You feel nostalgic as you stare at the photo." -msgstr "看著這個照片讓你感到懷念。" - #: src/iuse.cpp #, c-format msgid "You turned off the music on your %s." @@ -266137,88 +271643,31 @@ msgstr "反面!" #: src/iuse.cpp #, c-format -msgid "Play a game with the %s?" +msgid "Play the %s with your friends?" msgstr "" #: src/iuse.cpp -msgid "You start playing." +#, c-format +msgid "Play the %s with your friend?" msgstr "" #: src/iuse.cpp -msgid "It is certain." -msgstr "這是肯定的。" - -#: src/iuse.cpp -msgid "It is decidedly so." -msgstr "絕對是這樣。" - -#: src/iuse.cpp -msgid "Without a doubt." -msgstr "毫無疑問。" - -#: src/iuse.cpp -msgid "Yes - definitely." -msgstr "當然是。" - -#: src/iuse.cpp -msgid "You may rely on it." -msgstr "你可以依靠它。" - -#: src/iuse.cpp -msgid "As I see it, yes." -msgstr "我認為是肯定的。" - -#: src/iuse.cpp -msgid "Most likely." -msgstr "最有可能的。" - -#: src/iuse.cpp -msgid "Outlook good." -msgstr "前景良好。" - -#: src/iuse.cpp -msgid "Signs point to yes." -msgstr "跡象表明是肯定的。" - -#: src/iuse.cpp -msgid "Reply hazy, try again." -msgstr "回覆不清楚,再試一次。" - -#: src/iuse.cpp -msgid "Ask again later." -msgstr "稍後再問。" - -#: src/iuse.cpp -msgid "Better not tell you now." -msgstr "現在最好還是別告訴你。" - -#: src/iuse.cpp -msgid "Can't predict now." +#, c-format +msgid "You and your %d friends start playing." msgstr "" #: src/iuse.cpp -msgid "Concentrate and ask again." -msgstr "集中精力再問一遍。" - -#: src/iuse.cpp -msgid "Don't count on it." -msgstr "不要指望它。" - -#: src/iuse.cpp -msgid "My reply is no." -msgstr "我的回答是:不。" - -#: src/iuse.cpp -msgid "My sources say no." -msgstr "我的消息來源說;不。" +msgid "You and your friend start playing." +msgstr "" #: src/iuse.cpp -msgid "Outlook not so good." -msgstr "前景不佳。" +msgid "You start playing." +msgstr "" #: src/iuse.cpp -msgid "Very doubtful." -msgstr "非常可疑。" +#, c-format +msgid "Play a game with the %s?" +msgstr "" #: src/iuse.cpp #, c-format @@ -269042,8 +274491,20 @@ msgid "%s: %d" msgstr "" #: src/martialarts.cpp -msgid "Requires: " -msgstr "前提增益: " +msgid "Requires (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Requires (any): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (all): " +msgstr "" + +#: src/martialarts.cpp +msgid "Forbidden (any): " +msgstr "" #: src/martialarts.cpp msgid "activate" @@ -274084,6 +279545,11 @@ msgstr "移除%s身上的鞍具" msgid "Manage your friendship with %s" msgstr "與 %s 保持友誼" +#: src/monexamine.cpp src/npctalk.cpp +#, c-format +msgid "Talk to %s" +msgstr "與 %s 交談" + #: src/monexamine.cpp #, c-format msgid "Mount %s" @@ -274434,7 +279900,7 @@ msgstr "%1$d/%2$d HP" #: src/monster.cpp msgid "Origin: " -msgstr "" +msgstr "來自:" #: src/monster.cpp msgid "Can see to your current location" @@ -274956,21 +280422,6 @@ msgid "" "You focus, and with a pleasant splitting feeling, birth a new slimespring!" msgstr "你集中精神, 隨著愉悅的心情, 分裂出了新的黏液蛞蝓!" -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "wow! you look just like me! we should look out for each other!" -msgstr "喔喔!你看來就像我一樣!我們應該要互相幫助!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "come on, big me, let's go!" -msgstr "快點啊大大, 走吧!" - -#. ~ Usual enthusiastic slimespring small voices! :D -#: src/mutation.cpp -msgid "we're a team, we've got this!" -msgstr "我們是個隊伍, 我們行的!" - #: src/mutation.cpp msgid "You can only do that in a wooded area." msgstr "你只能在樹木繁茂的地區做這個。" @@ -275234,11 +280685,20 @@ msgstr "檢視中" msgid "%s to activate mutation, " msgstr "[%s] 啟動突變 " +#: src/mutation_ui.cpp +msgid "Hidding" +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to reassign invlet, " msgstr "[%s] 重定代碼 " +#: src/mutation_ui.cpp +#, c-format +msgid "%s to toggle sprite visibility, " +msgstr "" + #: src/mutation_ui.cpp #, c-format msgid "%s to change keybindings." @@ -276938,11 +282398,6 @@ msgstr "你的臉不見了,不能說話!" msgid "What do you want to do?" msgstr "你想要做什麼?" -#: src/npctalk.cpp -#, c-format -msgid "Talk to %s" -msgstr "與 %s 交談" - #: src/npctalk.cpp msgid "Talk to…" msgstr "交談 ... " @@ -277713,6 +283168,15 @@ msgid "" "trying to move into mineable terrain." msgstr "設定為 [是], 會在試圖進入可挖掘的地形時自動使用十字鎬和手提鑿岩機。" +#: src/options.cpp +msgid "Auto mopping" +msgstr "" + +#: src/options.cpp +msgid "" +"If true, enables automatic use of wielded mops to clean surronding terrain." +msgstr "" + #: src/options.cpp msgid "Auto foraging" msgstr "自動採集" @@ -277720,14 +283184,19 @@ msgstr "自動採集" #: src/options.cpp msgid "" "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage " -"bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, " -"and everything else including flowers, cattails etc." -msgstr "自動採集功能啟用候會執行的動作。[灌木]:只採集灌木。[樹木]:只採集樹木。[所有東西]:採集灌木、樹木、以及所有像花、香蒲等東西。" +"bushes. - Trees: Only forage trees. - Crops: Only forage crops. - " +"Everything: Forage bushes, trees, crops, and everything else including " +"flowers, cattails etc." +msgstr "" #: src/options.cpp msgid "Bushes" msgstr "灌木" +#: src/options.cpp +msgid "Crops" +msgstr "" + #: src/options.cpp msgid "Everything" msgstr "所有東西" @@ -280070,20 +285539,6 @@ msgstr "區域:" msgid "# Unexplored" msgstr "# 尚未探索" -#: src/overmap_ui.cpp -#, c-format -msgid "oter: %s" -msgstr "" - -#: src/overmap_ui.cpp -#, c-format -msgid "oter_type: %s" -msgstr "" - -#: src/overmap_ui.cpp -msgid "args not yet set" -msgstr "" - #: src/overmap_ui.cpp msgid "Distance to active mission:" msgstr "距離任務地點:" @@ -280426,6 +285881,11 @@ msgstr "黃昏" msgid "Night" msgstr "夜晚" +#: src/panels.cpp +#, c-format +msgid "%s, day %d" +msgstr "%s, 第 %d 日" + #: src/panels.cpp src/widget.cpp msgid "???" msgstr "" @@ -280474,6 +285934,10 @@ msgstr "很冷!" msgid "Freezing!" msgstr "凍僵!" +#: src/panels.cpp +msgid "SAFE" +msgstr "安全" + #: src/panels.cpp msgid "On" msgstr "開" @@ -282890,6 +288354,16 @@ msgstr "[%s] 隱藏射擊路線" msgid "[%s] Show lines of fire" msgstr "[%s] 顯示射擊路線" +#: src/ranged.cpp +#, c-format +msgid "Range: %d" +msgstr "距離: %d" + +#: src/ranged.cpp +#, c-format +msgid "Range: %d/%d" +msgstr "" + #: src/ranged.cpp #, c-format msgid "Elevation: %d" @@ -287227,6 +292701,10 @@ msgstr "電力不足以淨化 %1$s 中的 %2$s" msgid "You purify the contents of the %1$s's %2$s" msgstr "你淨化了 %1$s 中的 %2$s" +#: src/weakpoint.cpp +msgid "You carefully record the creature's vulnerabilities." +msgstr "" + #: src/weather.cpp msgid "Monday" msgstr "星期一" diff --git a/object_creator/spell_window.cpp b/object_creator/spell_window.cpp index e6edbc5409a77..f54fe6a6a3f79 100644 --- a/object_creator/spell_window.cpp +++ b/object_creator/spell_window.cpp @@ -17,7 +17,7 @@ static spell_type default_spell_type() { spell_type ret; ret.sound_type = sounds::sound_t::combat; - ret.sound_description = to_translation( "an explosion" ); + ret.sound_description = to_translation( "an explosion." ); ret.sound_variant = "default"; ret.message = to_translation( "You cast %s!" ); ret.skill = skill_id( "spellcraft" ); diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index c46ef930ca0a5..85ba768c0398f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -87,23 +87,23 @@ if (TILES) ${FREETYPE_INCLUDE_DIRS} ${PNG_INCLUDE_DIRS} ${JPEG_INCLUDE_DIR} - ${ZLIB_INCLUDE_DIRS} ${BZIP2_INCLUDE_DIR}) target_link_libraries(cataclysm-tiles-common ${FREETYPE_LIBRARIES} ${PNG_LIBRARIES} ${JPEG_LIBRARIES} - ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES}) endif () target_include_directories(cataclysm-tiles-common PUBLIC ${SDL2_INCLUDE_DIR} ${SDL2_IMAGE_INCLUDE_DIRS} - ${SDL2_TTF_INCLUDE_DIRS}) + ${SDL2_TTF_INCLUDE_DIRS} + ${ZLIB_INCLUDE_DIRS}) target_link_libraries(cataclysm-tiles-common ${SDL2_LIBRARY} ${SDL2_IMAGE_LIBRARIES} - ${SDL2_TTF_LIBRARIES}) + ${SDL2_TTF_LIBRARIES} + ${ZLIB_LIBRARIES}) if (SOUND) target_compile_definitions(cataclysm-tiles-common PUBLIC SDL_SOUND ) @@ -168,8 +168,8 @@ if (CURSES) ${ICONV_LIBRARIES}) endif () - target_include_directories(cataclysm-common PUBLIC ${CURSES_INCLUDE_DIR}) - target_link_libraries(cataclysm-common ${CURSES_LIBRARIES}) + target_include_directories(cataclysm-common PUBLIC ${CURSES_INCLUDE_DIR} ${ZLIB_INCLUDE_DIRS}) + target_link_libraries(cataclysm-common ${CURSES_LIBRARIES} ${ZLIB_LIBRARIES}) if (CMAKE_USE_PTHREADS_INIT) target_compile_options(cataclysm-common PUBLIC "-pthread") @@ -205,14 +205,17 @@ if (MINGW AND NOT RELEASE) # Note: It is specific to MSYS2 and uses hardcoded versions so # probably it will fail if you run it :) - # GCC-specific libraries + # GCC-specific libraries and zlib find_library(RuntimeLib_GCC_S_DW2_1 "gcc_s_dw2-1") find_library(RuntimeLib_STDC_PP_6 "stdc++-6") find_library(RuntimeLib_WINPTHREAD_1 "winpthread-1") + find_library(RuntimeLib_zlib "zlib1") + set(RuntimeLib_GCC_ALL ${RuntimeLib_GCC_S_DW2_1} ${RuntimeLib_STDC_PP_6} - ${RuntimeLib_WINPTHREAD_1}) + ${RuntimeLib_WINPTHREAD_1} + ${RuntimeLib_zlib}) if (TILES) # SDL2 can have a varius deps. Here you are the MSYS2 ones... find_library(RuntimeLib_SDL2 "SDL2") @@ -224,7 +227,6 @@ if (MINGW AND NOT RELEASE) find_library(RuntimeLib_webp "libwebp-5") find_library(RuntimeLib_lzma "liblzma-5") find_library(RuntimeLib_bz2 "libbz2-1") - find_library(RuntimeLib_zlib "zlib1") find_library(RuntimeLib_hb "libharfbuzz-0") find_library(RuntimeLib_SDL2_TTF "SDL2_ttf") find_library(RuntimeLib_ft "libfreetype-6") @@ -239,7 +241,6 @@ if (MINGW AND NOT RELEASE) ${RuntimeLib_webp} ${RuntimeLib_lzma} ${RuntimeLib_bz2} - ${RuntimeLib_zlib} ${RuntimeLib_hb} ${RuntimeLib_SDL2_TTF} ${RuntimeLib_ft} diff --git a/src/action.cpp b/src/action.cpp index 4e4c622ec1712..b092639465628 100644 --- a/src/action.cpp +++ b/src/action.cpp @@ -243,8 +243,8 @@ std::string action_ident( action_id act ) return "cast_spell"; case ACTION_SELECT_FIRE_MODE: return "select_fire_mode"; - case ACTION_DROP: - return "drop"; + case ACTION_UNLOAD_CONTAINER: + return "unload_container"; case ACTION_DIR_DROP: return "drop_adj"; case ACTION_BIONICS: @@ -851,7 +851,7 @@ action_id handle_action_menu() // Everything below here can be accessed through // the inventory screen, so it's sorted to the // end of the list. - REGISTER_ACTION( ACTION_DROP ); + REGISTER_ACTION( ACTION_UNLOAD_CONTAINER ); REGISTER_ACTION( ACTION_COMPARE ); REGISTER_ACTION( ACTION_ORGANIZE ); REGISTER_ACTION( ACTION_USE ); diff --git a/src/action.h b/src/action.h index 69abcdcfdf93f..b660b5e947361 100644 --- a/src/action.h +++ b/src/action.h @@ -179,8 +179,8 @@ enum action_id : int { ACTION_SELECT_FIRE_MODE, /** Cast a spell (only if any spells are known) */ ACTION_CAST_SPELL, - /** Open the drop-item menu */ - ACTION_DROP, + /** Unload container in a given direction */ + ACTION_UNLOAD_CONTAINER, /** Drop items in a given direction */ ACTION_DIR_DROP, /** Open the bionics menu */ diff --git a/src/activity_actor.cpp b/src/activity_actor.cpp index 494a58e2bf2b4..206db0bd65af4 100644 --- a/src/activity_actor.cpp +++ b/src/activity_actor.cpp @@ -1052,8 +1052,16 @@ void hacksaw_activity_actor::start( player_activity &act, Character &/*who*/ ) void hacksaw_activity_actor::do_turn( player_activity &/*act*/, Character &who ) { - if( tool->ammo_sufficient( &who ) ) { - tool->ammo_consume( tool->ammo_required(), tool.position(), &who ); + std::string method = "HACKSAW"; + + if( tool->ammo_sufficient( &who, method ) ) { + int ammo_consumed = tool->ammo_required(); + std::map::const_iterator iter = tool->type->ammo_scale.find( method ); + if( iter != tool->type->ammo_scale.end() ) { + ammo_consumed *= iter->second; + } + + tool->ammo_consume( ammo_consumed, tool.position(), &who ); sfx::play_activity_sound( "tool", "hacksaw", sfx::get_heard_volume( target ) ); if( calendar::once_every( 1_minutes ) ) { //~ Sound of a metal sawing tool at work! diff --git a/src/activity_handlers.cpp b/src/activity_handlers.cpp index de17eba8e4949..7c7552b83e0b7 100644 --- a/src/activity_handlers.cpp +++ b/src/activity_handlers.cpp @@ -144,10 +144,12 @@ static const activity_id ACT_MULTIPLE_CHOP_PLANKS( "ACT_MULTIPLE_CHOP_PLANKS" ); static const activity_id ACT_MULTIPLE_CHOP_TREES( "ACT_MULTIPLE_CHOP_TREES" ); static const activity_id ACT_MULTIPLE_CONSTRUCTION( "ACT_MULTIPLE_CONSTRUCTION" ); static const activity_id ACT_MULTIPLE_MINE( "ACT_MULTIPLE_MINE" ); +static const activity_id ACT_MULTIPLE_MOP( "ACT_MULTIPLE_MOP" ); static const activity_id ACT_MULTIPLE_FARM( "ACT_MULTIPLE_FARM" ); static const activity_id ACT_MULTIPLE_FISH( "ACT_MULTIPLE_FISH" ); static const activity_id ACT_OPERATION( "ACT_OPERATION" ); static const activity_id ACT_PICKAXE( "ACT_PICKAXE" ); +static const activity_id ACT_MOP( "ACT_MOP" ); static const activity_id ACT_PLANT_SEED( "ACT_PLANT_SEED" ); static const activity_id ACT_PULP( "ACT_PULP" ); static const activity_id ACT_QUARTER( "ACT_QUARTER" ); @@ -234,6 +236,7 @@ activity_handlers::do_turn_functions = { { ACT_MULTIPLE_FISH, multiple_fish_do_turn }, { ACT_MULTIPLE_CONSTRUCTION, multiple_construction_do_turn }, { ACT_MULTIPLE_MINE, multiple_mine_do_turn }, + { ACT_MULTIPLE_MOP, multiple_mop_do_turn }, { ACT_MULTIPLE_BUTCHER, multiple_butcher_do_turn }, { ACT_MULTIPLE_FARM, multiple_farm_do_turn }, { ACT_FETCH_REQUIRED, fetch_do_turn }, @@ -294,7 +297,9 @@ activity_handlers::finish_functions = { { ACT_FORAGE, forage_finish }, { ACT_LONGSALVAGE, longsalvage_finish }, { ACT_PICKAXE, pickaxe_finish }, + { ACT_MOP, mopping_finish }, { ACT_START_FIRE, start_fire_finish }, + { ACT_GENERIC_GAME, generic_game_finish }, { ACT_TRAIN, train_finish }, { ACT_CHURN, churn_finish }, { ACT_PLANT_SEED, plant_seed_finish }, @@ -1063,6 +1068,7 @@ static void butchery_drops_harvest( item *corpse_item, const mtype &mt, Characte if( action == butcher_type::DISSECT ) { you.practice( skill_firstaid, std::max( 0, practice ), std::max( mt.size - creature_size::medium, 0 ) + 4 ); + mt.families.practice_dissect( you ); } else { you.practice( skill_survival, std::max( 0, practice ), std::max( mt.size - creature_size::medium, 0 ) + 4 ); @@ -1698,6 +1704,22 @@ void activity_handlers::generic_game_turn_handler( player_activity *act, Charact } } +// Repurposing the activity's index to convey the number of friends participating +void activity_handlers::generic_game_finish( player_activity *act, Character *you ) +{ + // Apply small bonus with diminishing returns for playing with friends + if( act->index > 0 && act->name.find( "with friends" ) != std::string::npos ) { + float mod = 1.f; + float acc = 0.4f; + for( int i = act->index; i > 0; i-- ) { + mod += acc; + acc *= acc; + } + you->add_morale( MORALE_GAME, 4 * mod ); + } + act->set_to_null(); +} + void activity_handlers::generic_game_do_turn( player_activity *act, Character *you ) { generic_game_turn_handler( act, you, 4, 60 ); @@ -1741,6 +1763,17 @@ void activity_handlers::longsalvage_finish( player_activity *act, Character *you act->set_to_null(); } +void activity_handlers::mopping_finish( player_activity *act, Character *you ) +{ + // blind character have a 1/3 chance of actually mopping + const bool will_mop = one_in( you->is_blind() ? 1 : 3 ); + if( will_mop ) { + map &here = get_map(); + here.mop_spills( here.getlocal( act->placement ) ); + } + resume_for_multi_activities( *you ); +} + void activity_handlers::pickaxe_do_turn( player_activity *act, Character * ) { const tripoint &pos = get_map().getlocal( act->placement ); @@ -3306,6 +3339,11 @@ void activity_handlers::multiple_mine_do_turn( player_activity *act, Character * generic_multi_activity_handler( *act, *you ); } +void activity_handlers::multiple_mop_do_turn( player_activity *act, Character *you ) +{ + generic_multi_activity_handler( *act, *you ); +} + void activity_handlers::multiple_chop_planks_do_turn( player_activity *act, Character *you ) { generic_multi_activity_handler( *act, *you ); diff --git a/src/activity_handlers.h b/src/activity_handlers.h index accf2fda1658b..0625c58ec20d7 100644 --- a/src/activity_handlers.h +++ b/src/activity_handlers.h @@ -67,6 +67,7 @@ enum class do_activity_reason : int { NEEDS_VEH_REPAIR, // There is a vehicle part there that can be repaired, given the right tools. WOULD_PREVENT_VEH_FLYING, // Attempting to perform this activity on a vehicle would prevent it from flying NEEDS_MINING, // This spot can be mined, if the right tool is present. + NEEDS_MOP, // This spot can be mopped, if a mop is present. NEEDS_FISHING, // This spot can be fished, if the right tool is present. NEEDS_DISASSEMBLE // There is at least one item to disassemble. @@ -165,6 +166,7 @@ void multiple_farm_do_turn( player_activity *act, Character *you ); void multiple_fish_do_turn( player_activity *act, Character *you ); void multiple_construction_do_turn( player_activity *act, Character *you ); void multiple_mine_do_turn( player_activity *act, Character *you ); +void multiple_mop_do_turn( player_activity *act, Character *you ); void multiple_butcher_do_turn( player_activity *act, Character *you ); void multiple_dis_do_turn( player_activity *act, Character *you ); void vehicle_deconstruction_do_turn( player_activity *act, Character *you ); @@ -205,8 +207,10 @@ void fish_finish( player_activity *act, Character *you ); void forage_finish( player_activity *act, Character *you ); void longsalvage_finish( player_activity *act, Character *you ); void pulp_finish( player_activity *act, Character *you ); +void mopping_finish( player_activity *act, Character *you ); void pickaxe_finish( player_activity *act, Character *you ); void start_fire_finish( player_activity *act, Character *you ); +void generic_game_finish( player_activity *act, Character *you ); void train_finish( player_activity *act, Character *you ); void shear_finish( player_activity *act, Character *you ); void vehicle_finish( player_activity *act, Character *you ); diff --git a/src/activity_item_handling.cpp b/src/activity_item_handling.cpp index 1cf39b68f62d4..44aa08ad2acf6 100644 --- a/src/activity_item_handling.cpp +++ b/src/activity_item_handling.cpp @@ -77,6 +77,7 @@ static const activity_id ACT_FETCH_REQUIRED( "ACT_FETCH_REQUIRED" ); static const activity_id ACT_FISH( "ACT_FISH" ); static const activity_id ACT_JACKHAMMER( "ACT_JACKHAMMER" ); static const activity_id ACT_MOVE_LOOT( "ACT_MOVE_LOOT" ); +static const activity_id ACT_MOP( "ACT_MOP" ); static const activity_id ACT_MULTIPLE_BUTCHER( "ACT_MULTIPLE_BUTCHER" ); static const activity_id ACT_MULTIPLE_CHOP_PLANKS( "ACT_MULTIPLE_CHOP_PLANKS" ); static const activity_id ACT_MULTIPLE_CHOP_TREES( "ACT_MULTIPLE_CHOP_TREES" ); @@ -84,6 +85,7 @@ static const activity_id ACT_MULTIPLE_CONSTRUCTION( "ACT_MULTIPLE_CONSTRUCTION" static const activity_id ACT_MULTIPLE_FARM( "ACT_MULTIPLE_FARM" ); static const activity_id ACT_MULTIPLE_FISH( "ACT_MULTIPLE_FISH" ); static const activity_id ACT_MULTIPLE_MINE( "ACT_MULTIPLE_MINE" ); +static const activity_id ACT_MULTIPLE_MOP( "ACT_MULTIPLE_MOP" ); static const activity_id ACT_PICKAXE( "ACT_PICKAXE" ); static const activity_id ACT_TIDY_UP( "ACT_TIDY_UP" ); static const activity_id ACT_VEHICLE( "ACT_VEHICLE" ); @@ -96,6 +98,7 @@ static const efftype_id effect_incorporeal( "incorporeal" ); static const itype_id itype_battery( "battery" ); static const itype_id itype_detergent( "detergent" ); static const itype_id itype_log( "log" ); +static const itype_id itype_mop( "mop" ); static const itype_id itype_soap( "soap" ); static const itype_id itype_soldering_iron( "soldering_iron" ); static const itype_id itype_water( "water" ); @@ -115,6 +118,7 @@ static const zone_type_id zone_type_LOOT_CORPSE( "LOOT_CORPSE" ); static const zone_type_id zone_type_LOOT_IGNORE( "LOOT_IGNORE" ); static const zone_type_id zone_type_LOOT_IGNORE_FAVORITES( "LOOT_IGNORE_FAVORITES" ); static const zone_type_id zone_type_MINING( "MINING" ); +static const zone_type_id zone_type_MOPPING( "MOPPING" ); static const zone_type_id zone_type_LOOT_UNSORTED( "LOOT_UNSORTED" ); static const zone_type_id zone_type_LOOT_WOOD( "LOOT_WOOD" ); static const zone_type_id zone_type_VEHICLE_DECONSTRUCT( "VEHICLE_DECONSTRUCT" ); @@ -983,7 +987,8 @@ static bool are_requirements_nearby( const std::vector &loot_spots, id == ACT_VEHICLE_REPAIR || id == ACT_MULTIPLE_CHOP_TREES || id == ACT_MULTIPLE_FISH || - id == ACT_MULTIPLE_MINE; + id == ACT_MULTIPLE_MINE || + id == ACT_MULTIPLE_MOP; }; const bool check_weight = check_weight_if( activity_to_restore ) || ( !you.backlog.empty() && check_weight_if( you.backlog.front().id() ) ); @@ -1214,6 +1219,19 @@ static activity_reason_info can_do_activity_there( const activity_id &act, Chara return activity_reason_info::ok( do_activity_reason::NEEDS_MINING ); } } + if( act == ACT_MULTIPLE_MOP ) { + if( !here.terrain_moppable( src_loc ) ) { + return activity_reason_info::fail( do_activity_reason::NO_ZONE ); + } + + if( you.has_item_with( []( const item & itm ) { + return itm.typeId() == itype_mop; + } ) ) { + return activity_reason_info::ok( do_activity_reason::NEEDS_MOP ); + } else { + return activity_reason_info::fail( do_activity_reason::NEEDS_MOP ); + } + } if( act == ACT_MULTIPLE_FISH ) { if( !here.has_flag( ter_furn_flag::TFLAG_FISHABLE, src_loc ) ) { return activity_reason_info::fail( do_activity_reason::NO_ZONE ); @@ -1887,9 +1905,10 @@ static bool fetch_activity( Character &you, const tripoint &src_loc, you.backlog.front().id() == ACT_MULTIPLE_BUTCHER || you.backlog.front().id() == ACT_MULTIPLE_CHOP_TREES || you.backlog.front().id() == ACT_MULTIPLE_FISH || - you.backlog.front().id() == ACT_MULTIPLE_MINE ) ) { + you.backlog.front().id() == ACT_MULTIPLE_MINE || + you.backlog.front().id() == ACT_MULTIPLE_MOP ) ) { if( it.volume() > volume_allowed || it.weight() > weight_allowed ) { - add_msg_if_player_sees( you, "%1s failed to fetch tools", you.name ); + add_msg_if_player_sees( you, _( "%1s failed to fetch tools." ), you.name ); continue; } item leftovers = it; @@ -2292,6 +2311,15 @@ static bool mine_activity( Character &you, const tripoint &src_loc ) } +// Not really an activity like the others; relies on zone activity alerting on enemies +static bool mop_activity( Character &you, const tripoint &src_loc ) +{ + // iuse::mop costs 15 moves per use + you.assign_activity( ACT_MOP, 15 ); + you.activity.placement = get_map().getabs( src_loc ); + return true; +} + static bool chop_tree_activity( Character &you, const tripoint &src_loc ) { item *best_qual = you.best_quality_item( qual_AXE ); @@ -2357,6 +2385,9 @@ static zone_type_id get_zone_for_act( const tripoint &src_loc, const zone_manage if( act_id == ACT_MULTIPLE_MINE ) { ret = zone_type_MINING; } + if( act_id == ACT_MULTIPLE_MOP ) { + ret = zone_type_MOPPING; + } if( act_id == ACT_MULTIPLE_DIS ) { ret = zone_type_id( "zone_disassemble" ); } @@ -2804,6 +2835,11 @@ static bool generic_multi_activity_do( Character &you, const activity_id &act_id if( mine_activity( you, src_loc ) ) { return false; } + } else if( reason == do_activity_reason::NEEDS_MOP ) { + if( mop_activity( you, src_loc ) ) { + you.backlog.push_front( player_activity( act_id ) ); + return false; + } } else if( reason == do_activity_reason::NEEDS_VEH_DECONST ) { if( vehicle_activity( you, src_loc, you.activity_vehicle_part_index, 'o' ) ) { you.backlog.push_front( player_activity( act_id ) ); diff --git a/src/armor_layers.cpp b/src/armor_layers.cpp index dcde4bab4e61a..57d8addcda667 100644 --- a/src/armor_layers.cpp +++ b/src/armor_layers.cpp @@ -33,6 +33,8 @@ static const activity_id ACT_ARMOR_LAYERS( "ACT_ARMOR_LAYERS" ); +static const flag_id json_flag_HIDDEN( "HIDDEN" ); + namespace { std::string clothing_layer( const item &worn_item ); @@ -286,16 +288,33 @@ std::vector clothing_properties( const std::string space = " "; - const int coverage = bp == bodypart_id( "bp_null" ) ? worn_item.get_avg_coverage() : - worn_item.get_coverage( bp ); - const int encumbrance = bp == bodypart_id( "bp_null" ) ? worn_item.get_avg_encumber( - c ) : worn_item.get_encumber( c, bp ); props.push_back( string_format( "[%s]", _( "Properties" ) ) ); + + int coverage = bp == bodypart_id( "bp_null" ) ? worn_item.get_avg_coverage() : + worn_item.get_coverage( bp ); props.push_back( name_and_value( space + _( "Coverage:" ), string_format( "%3d", coverage ), width ) ); + coverage = bp == bodypart_id( "bp_null" ) ? worn_item.get_avg_coverage( + item::cover_type::COVER_MELEE ) : + worn_item.get_coverage( bp, item::cover_type::COVER_MELEE ); + props.push_back( name_and_value( space + _( "Coverage (Melee):" ), + string_format( "%3d", coverage ), width ) ); + coverage = bp == bodypart_id( "bp_null" ) ? worn_item.get_avg_coverage( + item::cover_type::COVER_RANGED ) : + worn_item.get_coverage( bp, item::cover_type::COVER_RANGED ); + props.push_back( name_and_value( space + _( "Coverage (Ranged):" ), + string_format( "%3d", coverage ), width ) ); + coverage = bp == bodypart_id( "bp_null" ) ? worn_item.get_avg_coverage( + item::cover_type::COVER_VITALS ) : + worn_item.get_coverage( bp, item::cover_type::COVER_VITALS ); + props.push_back( name_and_value( space + _( "Coverage (Vitals):" ), + string_format( "%3d", coverage ), width ) ); + + const int encumbrance = bp == bodypart_id( "bp_null" ) ? worn_item.get_avg_encumber( + c ) : worn_item.get_encumber( c, bp ); props.push_back( name_and_value( space + _( "Encumbrance:" ), - string_format( "%3d", encumbrance ), - width ) ); + string_format( "%3d", encumbrance ), width ) ); + props.push_back( name_and_value( space + _( "Warmth:" ), string_format( "%3d", worn_item.get_warmth() ), width ) ); return props; @@ -524,6 +543,7 @@ void Character::sort_armor() ctxt.register_action( "NEXT_TAB" ); ctxt.register_action( "MOVE_ARMOR" ); ctxt.register_action( "CHANGE_SIDE" ); + ctxt.register_action( "TOGGLE_CLOTH" ); ctxt.register_action( "ASSIGN_INVLETS" ); ctxt.register_action( "SORT_ARMOR" ); ctxt.register_action( "EQUIP_ARMOR" ); @@ -577,8 +597,12 @@ void Character::sort_armor() std::string temp = bp != bodypart_id( "bp_null" ) ? body_part_name_as_heading( bp, 1 ) : _( "All" ); wprintz( w_sort_cat, c_yellow, " << %s >>", temp ); right_print( w_sort_cat, 0, 0, c_white, string_format( - _( "Press [%s] for help. " + _( "[%s] Hide sprite. " + "[%s] Change side. " + "Press [%s] for help. " "Press [%s] to change keybindings." ), + ctxt.get_desc( "TOGGLE_CLOTH" ), + ctxt.get_desc( "CHANGE_SIDE" ), ctxt.get_desc( "USAGE_HELP" ), ctxt.get_desc( "HELP_KEYBINDINGS" ) ) ); @@ -614,6 +638,10 @@ void Character::sort_armor() const int offset_x = ( itemindex == selected ) ? 3 : 2; trim_and_print( w_sort_left, point( offset_x, drawindex + 1 ), left_w - offset_x - 3, penalties.color_for_stacking_badness(), worn_armor_name ); + if( tmp_worn[itemindex]->has_flag( json_flag_HIDDEN ) ) { + //~ Hint: Letter to show which piece of armor is Hidden in the layering menu + wprintz( w_sort_left, c_cyan, _( " H" ) ); + } } // Left footer @@ -807,6 +835,13 @@ void Character::sort_armor() change_side( *tmp_worn[leftListIndex] ); } } + } else if( action == "TOGGLE_CLOTH" ) { + if( !tmp_worn[leftListIndex]->has_flag( json_flag_HIDDEN ) ) { + tmp_worn[leftListIndex]->set_flag( json_flag_HIDDEN ); + } else { + tmp_worn[leftListIndex]->unset_flag( json_flag_HIDDEN ); + } + } else if( action == "SORT_ARMOR" ) { // Copy to a vector because stable_sort requires random-access // iterators @@ -848,7 +883,7 @@ void Character::sort_armor() popup( _( "Can't put this on!" ) ); } } else { - add_msg_if_player( "You chose not to wear the %s.", item_name ); + add_msg_if_player( _( "You chose not to wear the %s." ), item_name ); } } } else if( action == "EQUIP_ARMOR_HERE" ) { @@ -873,7 +908,7 @@ void Character::sort_armor() popup( _( "Can't put this on!" ) ); } } else { - add_msg_if_player( "You chose not to wear the %s.", item_name ); + add_msg_if_player( _( "You chose not to wear the %s." ), item_name ); } } } else if( action == "REMOVE_ARMOR" ) { @@ -944,6 +979,7 @@ void Character::sort_armor() ctxt.get_desc( "NEXT_TAB" ), ctxt.get_desc( "ASSIGN_INVLETS" ), ctxt.get_desc( "CHANGE_SIDE" ), + ctxt.get_desc( "TOGGLE_CLOTH" ), ctxt.get_desc( "SORT_ARMOR" ), ctxt.get_desc( "EQUIP_ARMOR" ), ctxt.get_desc( "EQUIP_ARMOR_HERE" ), diff --git a/src/avatar.cpp b/src/avatar.cpp index 986060544ba54..2c01544a45d07 100644 --- a/src/avatar.cpp +++ b/src/avatar.cpp @@ -757,7 +757,7 @@ void avatar::wake_up() // alarm was set and player hasn't slept through the alarm. if( has_effect( effect_alarm_clock ) && !has_effect( effect_slept_through_alarm ) ) { add_msg( _( "It looks like you woke up before your alarm." ) ); - remove_effect( effect_alarm_clock ); + // effects will be removed in Character::wake_up. } else if( has_effect( effect_slept_through_alarm ) ) { if( has_flag( json_flag_ALARMCLOCK ) ) { add_msg( m_warning, _( "It looks like you've slept through your internal alarm…" ) ); diff --git a/src/calendar.h b/src/calendar.h index d303604eb1994..99994f4a12c09 100644 --- a/src/calendar.h +++ b/src/calendar.h @@ -3,6 +3,7 @@ #define CATA_SRC_CALENDAR_H #include +#include #include #include @@ -416,7 +417,8 @@ std::pair clipped_time( const time_duration &d ); * 59 minutes will return "59 minutes". * @param align none, right, or compact. */ -std::string to_string_clipped( const time_duration &d, clipped_align align = clipped_align::none ); +std::string to_string_clipped( const time_duration &d, + const clipped_align align = clipped_align::none ); /** * Returns approximate duration. * @param verbose If true, 'less than' and 'more than' will be printed instead of '<' and '>' respectively. diff --git a/src/cata_utility.cpp b/src/cata_utility.cpp index b187bda32a881..b0ac03ba8efd3 100644 --- a/src/cata_utility.cpp +++ b/src/cata_utility.cpp @@ -20,6 +20,7 @@ #include "output.h" #include "rng.h" #include "translations.h" +#include "zlib.h" static double pow10( unsigned int n ) { @@ -351,7 +352,65 @@ bool read_from_file( const std::string &path, const std::function( const_cast( str.data() ) ); + zs.avail_in = str.size(); + + int ret; + char outbuffer[32768]; + std::string outstring; + + // get the decompressed bytes blockwise using repeated calls to inflate + do { + zs.next_out = reinterpret_cast( outbuffer ); + zs.avail_out = sizeof( outbuffer ); + + ret = inflate( &zs, 0 ); + + if( outstring.size() < zs.total_out ) { + outstring.append( outbuffer, + zs.total_out - outstring.size() ); + } + + } while( ret == Z_OK ); + + inflateEnd( &zs ); + + if( ret != Z_STREAM_END ) { // an error occurred that was not EOF + std::ostringstream oss; + oss << "Exception during zlib decompression: (" << ret << ") " + << zs.msg; + throw( std::runtime_error( oss.str() ) ); + } + + std::stringstream inflated_contents_stream; + inflated_contents_stream.write( outstring.data(), outstring.size() ); + + reader( inflated_contents_stream ); + } else { + reader( fin ); + } if( fin.bad() ) { throw std::runtime_error( "reading file failed" ); } diff --git a/src/character.cpp b/src/character.cpp index e5aaa8378f41f..03b9c4b20bb33 100644 --- a/src/character.cpp +++ b/src/character.cpp @@ -2705,6 +2705,9 @@ std::vector> Character::get_overlay_ids() co // then get mutations for( const std::pair &mut : my_mutations ) { + if( !mut.second.show_sprite ) { + continue; + } overlay_id = ( mut.second.powered ? "active_" : "" ) + mut.first.str(); order = get_overlay_order_of_mutation( overlay_id ); mutation_sorting.insert( std::pair( order, overlay_id ) ); @@ -2724,6 +2727,9 @@ std::vector> Character::get_overlay_ids() co // next clothing // TODO: worry about correct order of clothing overlays for( const item &worn_item : worn ) { + if( worn_item.has_flag( flag_id( "HIDDEN" ) ) ) { + continue; + } const std::string variant = worn_item.has_itype_variant() ? worn_item.itype_variant().id : ""; rval.emplace_back( "worn_" + worn_item.typeId().str(), variant ); } @@ -5009,7 +5015,7 @@ bool Character::made_of_any( const std::set &ms ) const bool Character::is_blind() const { return ( worn_with_flag( flag_BLIND ) || - has_flag( json_flag_BLIND ) ); + has_flag( json_flag_BLIND ) || vision_score() <= 0 ); } bool Character::is_invisible() const @@ -6892,9 +6898,27 @@ dealt_damage_instance Character::deal_damage( Creature *source, bodypart_id bp, } int sum_cover = 0; + bool dealt_melee = false; + bool dealt_ranged = false; + for( const damage_unit &du : d ) { + // Assume that ranged == getting shot + if( du.type == damage_type::BULLET ) { + dealt_ranged = true; + } else if( du.type == damage_type::BASH || + du.type == damage_type::CUT || + du.type == damage_type::STAB ) { + dealt_melee = true; + } + } for( const item &i : worn ) { if( i.covers( bp ) && i.is_filthy() ) { - sum_cover += i.get_coverage( bp ); + if( dealt_melee ) { + sum_cover += i.get_coverage( bp, item::cover_type::COVER_MELEE ); + } else if( dealt_ranged ) { + sum_cover += i.get_coverage( bp, item::cover_type::COVER_RANGED ); + } else { + sum_cover += i.get_coverage( bp ); + } } } @@ -8988,14 +9012,38 @@ void Character::process_effects() int_bonus_hardcoded = 0; per_bonus_hardcoded = 0; //Human only effects - effects_map effects_copy = *effects; - // Iterate over a copy, process_one_effect modifies the effects map, potentially invalidating iterators. - for( std::pair> &elem : effects_copy ) { + for( std::pair> &elem : *effects ) { for( std::pair &_effect_it : elem.second ) { process_one_effect( _effect_it.second, false ); } } + // Apply new effects from effect->effect chains + while( !scheduled_effects.empty() ) { + const auto &effect = scheduled_effects.front(); + + add_effect( effect_source::empty(), + effect.eff_id, + effect.dur, + effect.bp, + effect.permanent, + effect.intensity, + effect.force, + effect.deferred ); + + scheduled_effects.pop(); + } + + // Perform immediate effect removals + while( !terminating_effects.empty() ) { + + const auto &effect = terminating_effects.front(); + + remove_effect( effect.eff_id, effect.bp ); + + terminating_effects.pop(); + } + Creature::process_effects(); } diff --git a/src/character.h b/src/character.h index 8256f7b2f4a63..3b7b55e0d5baa 100644 --- a/src/character.h +++ b/src/character.h @@ -273,7 +273,6 @@ enum edible_rating { struct queued_eoc { public: effect_on_condition_id eoc; - bool recurring = false; time_point time; }; @@ -946,15 +945,20 @@ class Character : public Creature, public visitable // If average == true, adds expected values of random rolls instead of rolling. /** Adds all 3 types of physical damage to instance */ - void roll_all_damage( bool crit, damage_instance &di, bool average, const item &weap ) const; + void roll_all_damage( bool crit, damage_instance &di, bool average, const item &weap, + const Creature *target, const bodypart_id &bp ) const; /** Adds player's total bash damage to the damage instance */ - void roll_bash_damage( bool crit, damage_instance &di, bool average, const item &weap ) const; + void roll_bash_damage( bool crit, damage_instance &di, bool average, const item &weap, + float crit_mod ) const; /** Adds player's total cut damage to the damage instance */ - void roll_cut_damage( bool crit, damage_instance &di, bool average, const item &weap ) const; + void roll_cut_damage( bool crit, damage_instance &di, bool average, const item &weap, + float crit_mod ) const; /** Adds player's total stab damage to the damage instance */ - void roll_stab_damage( bool crit, damage_instance &di, bool average, const item &weap ) const; + void roll_stab_damage( bool crit, damage_instance &di, bool average, const item &weap, + float crit_mod ) const; /** Adds player's total non-bash, non-cut, non-stab damage to the damage instance */ - void roll_other_damage( bool crit, damage_instance &di, bool average, const item &weap ) const; + void roll_other_damage( bool crit, damage_instance &di, bool average, const item &weap, + float crit_mod ) const; /** Returns true if the player should be dead */ bool is_dead_state() const override; @@ -1018,9 +1022,9 @@ class Character : public Creature, public visitable const weakpoint *absorb_hit( const weakpoint_attack &attack, const bodypart_id &bp, damage_instance &dam ) override; /** The character's skill in hitting a weakpoint */ - float melee_weakpoint_skill( const item &weapon ); - float ranged_weakpoint_skill( const item &weapon ); - float throw_weakpoint_skill(); + float melee_weakpoint_skill( const item &weapon ) const; + float ranged_weakpoint_skill( const item &weapon ) const; + float throw_weakpoint_skill() const; /** * Reduces and mutates du, prints messages about armor taking damage. * @return true if the armor was completely destroyed (and the item must be deleted). @@ -3127,6 +3131,9 @@ class Character : public Creature, public visitable * is reset to @ref mutation_branch::cooldown. */ int charge = 0; + + bool show_sprite = true; + void serialize( JsonOut &json ) const; void deserialize( const JsonObject &data ); }; diff --git a/src/character_armor.cpp b/src/character_armor.cpp index eaa3a92ae343a..6f25499f4d7aa 100644 --- a/src/character_armor.cpp +++ b/src/character_armor.cpp @@ -12,8 +12,6 @@ static const bionic_id bio_ads( "bio_ads" ); static const efftype_id effect_onfire( "onfire" ); -static const trait_id trait_HOLLOW_BONES( "HOLLOW_BONES" ); -static const trait_id trait_LIGHT_BONES( "LIGHT_BONES" ); static const trait_id trait_SEESLEEP( "SEESLEEP" ); bool Character::can_interface_armor() const @@ -329,6 +327,42 @@ static void destroyed_armor_msg( Character &who, const std::string &pre_damage_n pre_damage_name ); } +static void post_absorbed_damage_enchantment_adjust( Character &guy, damage_unit &du ) +{ + switch( du.type ) { + case damage_type::ACID: + du.amount = guy.calculate_by_enchantment( du.amount, enchant_vals::mod::EXTRA_ACID ); + break; + case damage_type::BASH: + du.amount = guy.calculate_by_enchantment( du.amount, enchant_vals::mod::EXTRA_BASH ); + break; + case damage_type::BIOLOGICAL: + du.amount = guy.calculate_by_enchantment( du.amount, enchant_vals::mod::EXTRA_BIO ); + break; + case damage_type::COLD: + du.amount = guy.calculate_by_enchantment( du.amount, enchant_vals::mod::EXTRA_COLD ); + break; + case damage_type::CUT: + du.amount = guy.calculate_by_enchantment( du.amount, enchant_vals::mod::EXTRA_CUT ); + break; + case damage_type::ELECTRIC: + du.amount = guy.calculate_by_enchantment( du.amount, enchant_vals::mod::EXTRA_ELEC ); + break; + case damage_type::HEAT: + du.amount = guy.calculate_by_enchantment( du.amount, enchant_vals::mod::EXTRA_HEAT ); + break; + case damage_type::STAB: + du.amount = guy.calculate_by_enchantment( du.amount, enchant_vals::mod::EXTRA_STAB ); + break; + case damage_type::BULLET: + du.amount = guy.calculate_by_enchantment( du.amount, enchant_vals::mod::EXTRA_BULLET ); + break; + default: + return; + } + du.amount = std::max( 0.0f, du.amount ); +} + const weakpoint *Character::absorb_hit( const weakpoint_attack &, const bodypart_id &bp, damage_instance &dam ) { @@ -417,15 +451,7 @@ const weakpoint *Character::absorb_hit( const weakpoint_attack &, const bodypart passive_absorb_hit( bp, elem ); - if( elem.type == damage_type::BASH ) { - if( has_trait( trait_LIGHT_BONES ) ) { - elem.amount *= 1.4; - } - if( has_trait( trait_HOLLOW_BONES ) ) { - elem.amount *= 1.8; - } - } - + post_absorbed_damage_enchantment_adjust( *this, elem ); elem.amount = std::max( elem.amount, 0.0f ); } map &here = get_map(); @@ -441,7 +467,15 @@ const weakpoint *Character::absorb_hit( const weakpoint_attack &, const bodypart bool Character::armor_absorb( damage_unit &du, item &armor, const bodypart_id &bp ) { - if( rng( 1, 100 ) > armor.get_coverage( bp ) ) { + item::cover_type ctype = item::cover_type::COVER_DEFAULT; + if( du.type == damage_type::BULLET ) { + ctype = item::cover_type::COVER_RANGED; + } else if( du.type == damage_type::BASH || du.type == damage_type::CUT || + du.type == damage_type::STAB ) { + ctype = item::cover_type::COVER_MELEE; + } + + if( rng( 1, 100 ) > armor.get_coverage( bp, ctype ) ) { return false; } diff --git a/src/clzones.cpp b/src/clzones.cpp index 7c6c852625134..e4114a90f8f8c 100644 --- a/src/clzones.cpp +++ b/src/clzones.cpp @@ -69,6 +69,9 @@ zone_manager::zone_manager() types.emplace( zone_type_id( "MINING" ), zone_type( to_translation( "Mine Terrain" ), to_translation( "Designate an area to mine." ) ) ); + types.emplace( zone_type_id( "MOPPING" ), + zone_type( to_translation( "Mop tile" ), + to_translation( "Designate an area to mop clean." ) ) ); types.emplace( zone_type_id( "VEHICLE_DECONSTRUCT" ), zone_type( to_translation( "Vehicle Deconstruct Zone" ), to_translation( "Any vehicles in this area are marked for deconstruction." ) ) ); diff --git a/src/computer.cpp b/src/computer.cpp index d9e582d892f78..cf371d29fa552 100644 --- a/src/computer.cpp +++ b/src/computer.cpp @@ -307,6 +307,7 @@ std::string enum_to_string( const computer_action act ) case COMPACT_MAP_SUBWAY: return "map_subway"; case COMPACT_MAPS: return "maps"; case COMPACT_MISS_DISARM: return "miss_disarm"; + case COMPACT_MISS_LAUNCH: return "miss_launch"; case COMPACT_OPEN: return "open"; case COMPACT_OPEN_GATE: return "open_gate"; case COMPACT_CLOSE_GATE: return "close_gate"; diff --git a/src/computer.h b/src/computer.h index 145af08d31566..e93bb659624b3 100644 --- a/src/computer.h +++ b/src/computer.h @@ -36,6 +36,7 @@ enum computer_action { COMPACT_MAP_SUBWAY, COMPACT_MAPS, COMPACT_MISS_DISARM, + COMPACT_MISS_LAUNCH, COMPACT_OPEN, COMPACT_OPEN_DISARM, COMPACT_OPEN_GATE, diff --git a/src/computer_session.cpp b/src/computer_session.cpp index 36e09b3d89f97..384b15758e115 100644 --- a/src/computer_session.cpp +++ b/src/computer_session.cpp @@ -13,6 +13,7 @@ #include "calendar.h" #include "character.h" #include "character_id.h" +#include "computer.h" #include "colony.h" #include "color.h" #include "coordinate_conversions.h" @@ -45,6 +46,7 @@ #include "options.h" #include "output.h" #include "overmap.h" +#include "overmap_ui.h" #include "overmapbuffer.h" #include "point.h" #include "ret_val.h" @@ -287,6 +289,7 @@ computer_session::computer_action_functions = { { COMPACT_MAP_SUBWAY, &computer_session::action_map_subway }, { COMPACT_MAPS, &computer_session::action_maps }, { COMPACT_MISS_DISARM, &computer_session::action_miss_disarm }, + { COMPACT_MISS_LAUNCH, &computer_session::action_miss_launch }, { COMPACT_OPEN, &computer_session::action_open }, { COMPACT_OPEN_GATE, &computer_session::action_open_gate }, { COMPACT_CLOSE_GATE, &computer_session::action_close_gate }, @@ -664,6 +667,64 @@ void computer_session::action_miss_disarm() } } +void computer_session::action_miss_launch() +{ + // Target Acquisition. + const tripoint_abs_omt target( ui::omap::choose_point( 0 ) ); + if( target == overmap::invalid_tripoint ) { + add_msg( m_info, _( "Target acquisition canceled." ) ); + return; + } + + if( query_yn( _( "Confirm nuclear missile launch." ) ) ) { + add_msg( m_info, _( "Nuclear missile launched!" ) ); + //Remove the option to fire another missile. + comp.options.clear(); + } else { + add_msg( m_info, _( "Nuclear missile launch aborted." ) ); + return; + } + + //Put some smoke gas and explosions at the nuke location. + const tripoint nuke_location = { get_player_character().pos() - point( 12, 0 ) }; + for( const auto &loc : get_map().points_in_radius( nuke_location, 5, 0 ) ) { + if( one_in( 4 ) ) { + get_map().add_field( loc, fd_smoke, rng( 1, 9 ) ); + } + } + + //Only explode once. But make it large. + explosion_handler::explosion( nuke_location, 2000, 0.7, true ); + + //...ERASE MISSILE, OPEN SILO, DISABLE COMPUTER + // For each level between here and the surface, remove the missile + for( int level = get_map().get_abs_sub().z; level <= 0; level++ ) { + map tmpmap; + tmpmap.load( tripoint_abs_sm( get_map().get_abs_sub().x, get_map().get_abs_sub().y, level ), + false ); + + if( level < 0 ) { + tmpmap.translate( t_missile, t_hole ); + } else { + tmpmap.translate( t_metal_floor, t_hole ); + } + tmpmap.save(); + } + + for( const tripoint_abs_omt &p : points_in_radius( target, 2 ) ) { + // give it a nice rounded shape + if( !( p.x() == target.x() - 2 && p.y() == target.y() - 2 ) && + !( p.x() == target.x() - 2 && p.y() == target.y() + 2 ) && + !( p.x() == target.x() + 2 && p.y() == target.y() - 2 ) && + !( p.x() == target.x() + 2 && p.y() == target.y() + 2 ) ) { + overmap_buffer.ter_set( p, oter_id( "crater" ) ); + } + } + explosion_handler::nuke( target ); + + activate_failure( COMPFAIL_SHUTDOWN ); +} + void computer_session::action_list_bionics() { get_player_character().moves -= 30; diff --git a/src/computer_session.h b/src/computer_session.h index 3937995a99f64..a7560dfe1db3d 100644 --- a/src/computer_session.h +++ b/src/computer_session.h @@ -107,6 +107,7 @@ class computer_session void action_map_subway(); void action_maps(); void action_miss_disarm(); + void action_miss_launch(); void action_open(); void action_open_gate(); void action_close_gate(); diff --git a/src/crafting.cpp b/src/crafting.cpp index b678aafe8352e..dbf4903147553 100644 --- a/src/crafting.cpp +++ b/src/crafting.cpp @@ -2039,7 +2039,8 @@ bool Character::craft_consume_tools( item &craft, int multiplier, bool start_cra case usage_from::num_usages_from: break; } - } else if( !has_amount( type, 1 ) && !map_inv.has_tools( type, 1 ) ) { + } else if( ( type != itype_id::NULL_ID() ) && !has_amount( type, 1 ) && + !map_inv.has_tools( type, 1 ) ) { add_msg_player_or_npc( _( "You no longer have a %s and can't continue crafting" ), _( " no longer has a %s and can't continue crafting" ), diff --git a/src/crafting_gui.cpp b/src/crafting_gui.cpp index f157269b9d34f..d77acd2159142 100644 --- a/src/crafting_gui.cpp +++ b/src/crafting_gui.cpp @@ -1123,7 +1123,7 @@ const recipe *select_crafting_recipe( int &batch_size_out ) { 'd', _( "reach attack" ), _( "full description of resulting item (slow)" ) }, { 'c', _( "plank" ), _( "component required to craft" ) }, { 'p', _( "tailoring" ), _( "primary skill used to craft" ) }, - { 's', _( "cooking" ), _( "any skill used to craft" ) }, + { 's', _( "food handling" ), _( "any skill used to craft" ) }, { 'Q', _( "fine bolt turning" ), _( "quality required to craft" ) }, { 't', _( "soldering iron" ), _( "tool required to craft" ) }, { 'm', _( "yes" ), _( "recipes which are memorized or not" ) }, @@ -1363,6 +1363,10 @@ std::string peek_related_recipe( const recipe *current, const recipe_subset &ava } std::stable_sort( related_results.begin(), related_results.end(), compare_second ); + if( related_components.empty() && related_results.empty() ) { + return ""; + } + uilist rel_menu; int np_last = -1; if( !related_components.empty() ) { diff --git a/src/crafting_gui.h b/src/crafting_gui.h index 9928dfb6fbad6..bc59d8320f094 100644 --- a/src/crafting_gui.h +++ b/src/crafting_gui.h @@ -3,6 +3,7 @@ #define CATA_SRC_CRAFTING_GUI_H #include +#include #include class JsonObject; diff --git a/src/creature.cpp b/src/creature.cpp index b21442b5f5759..57701ac0bfd9f 100644 --- a/src/creature.cpp +++ b/src/creature.cpp @@ -124,6 +124,10 @@ Creature &Creature::operator=( Creature && ) noexcept = default; Creature::~Creature() = default; + +std::queue Creature::scheduled_effects = std::queue {}; +std::queue Creature::terminating_effects = std::queue {}; + tripoint Creature::pos() const { return get_map().getlocal( location ); @@ -638,6 +642,24 @@ bool Creature::is_adjacent( const Creature *target, const bool allow_z_levels ) ( !here.has_floor( above ) || here.ter( above )->has_flag( ter_furn_flag::TFLAG_GOES_DOWN ) ); } +float Creature::get_crit_factor( const bodypart_id &bp ) const +{ + float crit_mod = 1.f; + const Character *c = as_character(); + if( c != nullptr ) { + int total_v_cover = 0; + for( const item &it : c->worn ) { + if( it.covers( bp ) ) { + total_v_cover += it.get_coverage( bp, item::cover_type::COVER_VITALS ); + } + } + total_v_cover = clamp( total_v_cover, 0, 100 ); + crit_mod = 1.f - total_v_cover / 100.f; + } + // TODO: as_monster() + return crit_mod; +} + int Creature::deal_melee_attack( Creature *source, int hitroll ) { const float dodge = dodge_roll(); @@ -660,7 +682,7 @@ int Creature::deal_melee_attack( Creature *source, int hitroll ) void Creature::deal_melee_hit( Creature *source, int hit_spread, bool critical_hit, damage_instance dam, dealt_damage_instance &dealt_dam, - const weakpoint_attack &attack ) + const weakpoint_attack &attack, const bodypart_id *bp ) { if( source == nullptr || source->is_hallucination() ) { dealt_dam.bp_hit = anatomy_id( "human_anatomy" )->random_body_part(); @@ -682,7 +704,7 @@ void Creature::deal_melee_hit( Creature *source, int hit_spread, bool critical_h } } damage_instance d = dam; // copy, since we will mutate in block_hit - bodypart_id bp_hit = select_body_part( source, hit_spread ); + bodypart_id bp_hit = bp == nullptr ? select_body_part( source, hit_spread ) : *bp; block_hit( source, bp_hit, d ); // Stabbing effects @@ -706,8 +728,12 @@ void Creature::deal_melee_hit( Creature *source, int hit_spread, bool critical_h mod_moves( -stab_moves ); } + weakpoint_attack attack_copy = attack; + attack_copy.is_crit = critical_hit; + attack_copy.type = weakpoint_attack::type_of_melee_attack( d ); + on_hit( source, bp_hit ); // trigger on-gethit events - dealt_dam = deal_damage( source, bp_hit, d, attack ); + dealt_dam = deal_damage( source, bp_hit, d, attack_copy ); dealt_dam.bp_hit = bp_hit; // Bashing critical @@ -879,30 +905,33 @@ projectile_attack_results Creature::select_body_part_projectile_attack( ret.bp_hit = bodypart_id( "arm_r" ); } } + float crit_mod = get_crit_factor( ret.bp_hit ); const float crit_multiplier = proj.critical_multiplier; + const float std_hit_mult = std::sqrt( 2.0 * crit_multiplier ); if( magic ) { ret.damage_mult *= rng_float( 0.9, 1.1 ); } else if( goodhit < accuracy_headshot && ret.max_damage * crit_multiplier > get_hp_max( bodypart_id( "head" ) ) ) { ret.message = _( "Headshot!" ); - ret.gmtSCTcolor = m_headshot; - ret.damage_mult *= rng_float( 0.95, 1.05 ); - ret.damage_mult *= crit_multiplier; ret.bp_hit = bodypart_id( "head" ); // headshot hits the head, of course + crit_mod = get_crit_factor( ret.bp_hit ); + ret.gmtSCTcolor = m_headshot; + ret.damage_mult *= rng_float( 0.5 + 0.45 * crit_mod, 0.75 + 0.3 * crit_mod ); // ( 0.95, 1.05 ) + ret.damage_mult *= std_hit_mult + ( crit_multiplier - std_hit_mult ) * crit_mod; ret.is_crit = true; } else if( goodhit < accuracy_critical && ret.max_damage * crit_multiplier > get_hp_max( bodypart_id( "torso" ) ) ) { ret.message = _( "Critical!" ); ret.gmtSCTcolor = m_critical; - ret.damage_mult *= rng_float( 0.75, 1.0 ); - ret.damage_mult *= crit_multiplier; + ret.damage_mult *= rng_float( 0.5 + 0.25 * crit_mod, 0.75 + 0.25 * crit_mod ); // ( 0.75, 1.0 ) + ret.damage_mult *= std_hit_mult + ( crit_multiplier - std_hit_mult ) * crit_mod; ret.is_crit = true; } else if( goodhit < accuracy_goodhit ) { ret.message = _( "Good hit!" ); ret.gmtSCTcolor = m_good; ret.damage_mult *= rng_float( 0.5, 0.75 ); - ret.damage_mult *= std::sqrt( 2.0 * crit_multiplier ); + ret.damage_mult *= std_hit_mult; } else if( goodhit < accuracy_standard ) { ret.damage_mult *= rng_float( 0.5, 1 ); @@ -1044,6 +1073,7 @@ void Creature::deal_projectile_attack( Creature *source, dealt_projectile_attack // Create a copy that records whether the attack is a crit. weakpoint_attack wp_attack_copy = wp_attack; wp_attack_copy.is_crit = hit_selection.is_crit; + wp_attack_copy.type = weakpoint_attack::attack_type::PROJECTILE; if( print_messages && source != nullptr && !hit_selection.message.empty() && u_see_this ) { source->add_msg_if_player( m_good, hit_selection.message ); @@ -1093,8 +1123,13 @@ dealt_damage_instance Creature::deal_damage( Creature *source, bodypart_id bp, int total_pain = 0; damage_instance d = dam; // copy, since we will mutate in absorb_hit + weakpoint_attack attack_copy = attack; + attack_copy.source = source; + attack_copy.target = this; + attack_copy.compute_wp_skill(); + dealt_damage_instance dealt_dams; - const weakpoint *wp = absorb_hit( attack, bp, d ); + const weakpoint *wp = absorb_hit( attack_copy, bp, d ); dealt_dams.wp_hit = wp == nullptr ? "" : wp->name; // Add up all the damage units dealt @@ -1332,6 +1367,28 @@ void Creature::add_effect( const effect_source &source, const efftype_id &eff_id add_effect( source, eff_id, dur, bodypart_str_id::NULL_ID(), permanent, intensity, force, deferred ); } + +void Creature::schedule_effect( const effect &eff, bool force, bool deferred ) +{ + scheduled_effects.push( scheduled_effect{eff.get_id(), eff.get_duration(), eff.get_bp(), + eff.is_permanent(), eff.get_intensity(), force, + deferred} ); +} +void Creature::schedule_effect( const efftype_id &eff_id, const time_duration &dur, bodypart_id bp, + bool permanent, int intensity, bool force, bool deferred ) +{ + scheduled_effects.push( scheduled_effect{eff_id, dur, bp, + permanent, intensity, force, + deferred} ); +} +void Creature::schedule_effect( const efftype_id &eff_id, + const time_duration &dur, bool permanent, int intensity, bool force, + bool deferred ) +{ + scheduled_effects.push( scheduled_effect{eff_id, dur, bodypart_str_id::NULL_ID(), + permanent, intensity, force, deferred} ); +} + bool Creature::add_env_effect( const efftype_id &eff_id, const bodypart_id &vector, int strength, const time_duration &dur, const bodypart_id &bp, bool permanent, int intensity, bool force ) { @@ -1402,6 +1459,15 @@ bool Creature::remove_effect( const efftype_id &eff_id ) return remove_effect( eff_id, bodypart_str_id::NULL_ID() ); } +void Creature::schedule_effect_removal( const efftype_id &eff_id, const bodypart_id &bp ) +{ + terminating_effects.push( terminating_effect{eff_id, bp} ); +} +void Creature::schedule_effect_removal( const efftype_id &eff_id ) +{ + return schedule_effect_removal( eff_id, bodypart_str_id::NULL_ID() ); +} + bool Creature::has_effect( const efftype_id &eff_id, const bodypart_id &bp ) const { // bp_null means anything targeted or not @@ -2337,7 +2403,7 @@ void Creature::mod_stat( const std::string &stat, float modifier ) } else if( stat == "moves" ) { mod_moves( modifier ); } else { - add_msg( "Tried to modify a nonexistent stat %s.", stat.c_str() ); + debugmsg( "Tried to modify a nonexistent stat %s.", stat.c_str() ); } } diff --git a/src/creature.h b/src/creature.h index e9d1465efe28a..b570f66215ca2 100644 --- a/src/creature.h +++ b/src/creature.h @@ -11,6 +11,7 @@ #include #include #include +#include #include "bodypart.h" #include "compatibility.h" @@ -220,6 +221,21 @@ struct enum_traits { static constexpr bool is_flag_enum = true; }; +using scheduled_effect = struct scheduled_effect_t { + efftype_id eff_id; + time_duration dur; + bodypart_id bp; + bool permanent = false; + int intensity = 0; + bool force = false; + bool deferred = false; +}; + +using terminating_effect = struct terminating_effect_t { + efftype_id eff_id; + bodypart_id bp; +}; + class Creature : public viewer { public: @@ -401,6 +417,10 @@ class Creature : public viewer void knock_back_from( const tripoint &p ); virtual void knock_back_to( const tripoint &to ) = 0; + // Converts the "cover_vitals" protection on the specified body part into + // a modifier (between 0 and 1) that would be applied to incoming critical damage + float get_crit_factor( const bodypart_id &bp ) const; + int size_melee_penalty() const; // begins a melee attack against the creature // returns hit - dodge (>=0 = hit, <0 = miss) @@ -420,7 +440,8 @@ class Creature : public viewer // dealt_dam is overwritten with the values of the damage dealt virtual void deal_melee_hit( Creature *source, int hit_spread, bool critical_hit, damage_instance dam, dealt_damage_instance &dealt_dam, - const weakpoint_attack &attack = weakpoint_attack() ); + const weakpoint_attack &attack = weakpoint_attack(), + const bodypart_id *bp = nullptr ); // Makes a ranged projectile attack against the creature // Sets relevant values in `attack`. @@ -546,6 +567,15 @@ class Creature : public viewer bool deferred = false ); void add_effect( const effect_source &source, const efftype_id &eff_id, const time_duration &dur, bool permanent = false, int intensity = 0, bool force = false, bool deferred = false ); + /** Schedules a new effect to be applied. Used during effect processing to avoid invalidating + current effects map. */ + void schedule_effect( const effect &eff, bool force = false, + bool deferred = false ); + void schedule_effect( const efftype_id &eff_id, const time_duration &dur, + bodypart_id bp, bool permanent = false, int intensity = 0, bool force = false, + bool deferred = false ); + void schedule_effect( const efftype_id &eff_id, const time_duration &dur, + bool permanent = false, int intensity = 0, bool force = false, bool deferred = false ); /** Gives chance to save via environmental resist, returns false if resistance was successful. */ bool add_env_effect( const efftype_id &eff_id, const bodypart_id &vector, int strength, const time_duration &dur, const bodypart_id &bp, bool permanent = false, int intensity = 1, @@ -557,6 +587,9 @@ class Creature : public viewer * removed. */ bool remove_effect( const efftype_id &eff_id, const bodypart_id &bp ); bool remove_effect( const efftype_id &eff_id ); + /** Schedule effect removal */ + void schedule_effect_removal( const efftype_id &eff_id, const bodypart_id &bp ); + void schedule_effect_removal( const efftype_id &eff_id ); /** Remove all effects. */ void clear_effects(); /** Check if creature has the matching effect. If the bodypart is not specified check if the Creature has any effect @@ -1139,6 +1172,8 @@ class Creature : public viewer virtual void process_one_effect( effect &e, bool is_new ) = 0; pimpl effects; + static std::queue scheduled_effects; + static std::queue terminating_effects; std::vector damage_over_time_map; diff --git a/src/cube_direction.h b/src/cube_direction.h index 1fa799d037d3d..6eb2b49aacdd6 100644 --- a/src/cube_direction.h +++ b/src/cube_direction.h @@ -37,8 +37,9 @@ template <> struct hash { }; } // namespace std -cube_direction operator+( const cube_direction, const om_direction::type ); -cube_direction operator+( const cube_direction, int i ); -cube_direction operator-( const cube_direction, int i ); +cube_direction operator+( cube_direction, om_direction::type ); +cube_direction operator+( cube_direction, int i ); +cube_direction operator-( cube_direction, om_direction::type ); +cube_direction operator-( cube_direction, int i ); #endif // CATA_SRC_CUBE_DIRECTION_H diff --git a/src/debug_menu.cpp b/src/debug_menu.cpp index 7d3b163a7467a..82b3f5dc1beba 100644 --- a/src/debug_menu.cpp +++ b/src/debug_menu.cpp @@ -1196,6 +1196,7 @@ static void character_edit_needs_menu( Character &you ) std::pair hunger_pair = display::hunger_text_color( you ); std::pair thirst_pair = display::thirst_text_color( you ); std::pair fatigue_pair = display::fatigue_text_color( you ); + std::pair weariness_pair = display::weariness_text_color( you ); std::stringstream data; data << string_format( _( "Hunger: %d %s" ), you.get_hunger(), colorize( hunger_pair.first, @@ -1204,6 +1205,8 @@ static void character_edit_needs_menu( Character &you ) thirst_pair.second ) ) << std::endl; data << string_format( _( "Fatigue: %d %s" ), you.get_fatigue(), colorize( fatigue_pair.first, fatigue_pair.second ) ) << std::endl; + data << string_format( _( "Weariness: %d %s" ), you.weariness(), colorize( weariness_pair.first, + weariness_pair.second ) ) << std::endl; data << std::endl; data << _( "Stored kCal: " ) << you.get_stored_kcal() << std::endl; data << _( "Total kCal: " ) << you.get_stored_kcal() + you.stomach.get_calories() + @@ -1228,8 +1231,9 @@ static void character_edit_needs_menu( Character &you ) smenu.addentry( 4, true, 't', "%s: %d", _( "Thirst" ), you.get_thirst() ); smenu.addentry( 5, true, 'f', "%s: %d", _( "Fatigue" ), you.get_fatigue() ); smenu.addentry( 6, true, 'd', "%s: %d", _( "Sleep Deprivation" ), you.get_sleep_deprivation() ); - smenu.addentry( 7, true, 'a', _( "Reset all basic needs" ) ); - smenu.addentry( 8, true, 'e', _( "Empty stomach and guts" ) ); + smenu.addentry( 7, true, 'w', "%s: %d", _( "Weariness" ), you.weariness() ); + smenu.addentry( 8, true, 'a', _( "Reset all basic needs" ) ); + smenu.addentry( 9, true, 'e', _( "Empty stomach and guts" ) ); const auto &vits = vitamin::all(); for( const auto &v : vits ) { @@ -1281,21 +1285,29 @@ static void character_edit_needs_menu( Character &you ) you.set_sleep_deprivation( value ); } break; + case 7: + if( query_yn( _( "Reset weariness? Currently: %d" ), + you.weariness() ) ) { + you.activity_history.weary_clear(); + } + break; + case 8: you.initialize_stomach_contents(); you.set_hunger( 0 ); you.set_thirst( 0 ); you.set_fatigue( 0 ); you.set_sleep_deprivation( 0 ); you.set_stored_kcal( you.get_healthy_kcal() ); + you.activity_history.weary_clear(); break; - case 8: + case 9: you.stomach.empty(); you.guts.empty(); break; default: - if( smenu.ret >= 9 && smenu.ret < static_cast( vits.size() + 9 ) ) { - auto iter = std::next( vits.begin(), smenu.ret - 9 ); + if( smenu.ret >= 10 && smenu.ret < static_cast( vits.size() + 10 ) ) { + auto iter = std::next( vits.begin(), smenu.ret - 10 ); if( query_int( value, _( "Set %s to? Currently: %d" ), iter->second.name(), you.vitamin_get( iter->first ) ) ) { you.vitamin_set( iter->first, value ); @@ -2852,35 +2864,9 @@ void debug() } break; - case debug_menu_index::SAVE_SCREENSHOT: { -#if defined(TILES) - // check that the current '/screenshots' directory exists - std::stringstream map_directory; - map_directory << PATH_INFO::world_base_save_path() << "/screenshots/"; - assure_dir_exist( map_directory.str() ); - - // build file name: /screenshots/[]_.png - // Date format is a somewhat ISO-8601 compliant GMT time date (except for some characters that wouldn't pass on most file systems like ':'). - std::time_t time = std::time( nullptr ); - std::stringstream date_buffer; - date_buffer << std::put_time( std::gmtime( &time ), "%F_%H-%M-%S_%z" ); - const auto tmp_file_name = string_format( "[%s]_%s.png", player_character.get_name(), - date_buffer.str() ); - - std::string file_name = ensure_valid_file_name( tmp_file_name ); - auto current_file_path = map_directory.str() + file_name; - - // Take a screenshot of the viewport. - if( g->take_screenshot( current_file_path ) ) { - popup( _( "Successfully saved your screenshot to: %s" ), map_directory.str() ); - } else { - popup( _( "An error occurred while trying to save the screenshot." ) ); - } -#else - popup( _( "This binary was not compiled with tiles support." ) ); -#endif - } - break; + case debug_menu_index::SAVE_SCREENSHOT: + g->queue_screenshot = true; + break; case debug_menu_index::GAME_REPORT: { // generate a game report, useful for bug reporting. diff --git a/src/dialogue.h b/src/dialogue.h index 789bea512bcaa..0298eff0b0dbe 100644 --- a/src/dialogue.h +++ b/src/dialogue.h @@ -107,10 +107,13 @@ struct talk_effect_fun_t { void set_assign_mission( const JsonObject &jo, const std::string &member ); void set_finish_mission( const JsonObject &jo, const std::string &member ); void set_make_sound( const JsonObject &jo, const std::string &member, bool is_npc ); - void set_queue_effect_on_condition( const JsonObject &jo, const std::string &member ); + void set_queue_effect_on_condition( const JsonObject &jo, const std::string &member, + bool is_npc = false ); void set_weighted_list_eocs( const JsonObject &jo, const std::string &member ); void set_mod_healthy( const JsonObject &jo, const std::string &member, bool is_npc ); void set_cast_spell( const JsonObject &jo, const std::string &member, bool is_npc ); + void set_lightning(); + void set_next_weather(); void set_sound_effect( const JsonObject &jo, const std::string &member ); void set_mod_fatigue( const JsonObject &jo, const std::string &member, bool is_npc = false ); void set_add_var( const JsonObject &jo, const std::string &member, bool is_npc = false ); @@ -136,6 +139,7 @@ struct talk_effect_fun_t { void set_npc_cbm_reserve_rule( const std::string &setting ); void set_npc_cbm_recharge_rule( const std::string &setting ); void set_mapgen_update( const JsonObject &jo, const std::string &member ); + void set_npc_goal( const JsonObject &jo, const std::string &member ); void set_bulk_trade_accept( bool is_trade, int quantity, bool is_npc = false ); void set_npc_gets_item( bool to_use ); void set_add_mission( const std::string &mission_id ); diff --git a/src/distribution.h b/src/distribution.h index e793ea5f5897d..e54d109db4afc 100644 --- a/src/distribution.h +++ b/src/distribution.h @@ -1,6 +1,8 @@ #ifndef CATA_SRC_DISTRIBUTION_H #define CATA_SRC_DISTRIBUTION_H +#include + #include "memory_fast.h" struct int_distribution_impl; diff --git a/src/do_turn.cpp b/src/do_turn.cpp index 056aedbb82e1a..ebdb024c26e86 100644 --- a/src/do_turn.cpp +++ b/src/do_turn.cpp @@ -680,6 +680,11 @@ bool do_turn() ui_manager::redraw(); } + if( g->queue_screenshot ) { + g->take_screenshot(); + g->queue_screenshot = false; + } + if( g->handle_action() ) { ++g->moves_since_last_save; u.action_taken(); diff --git a/src/dump.cpp b/src/dump.cpp index f8f38a216cddf..af98bbf6ea7f9 100644 --- a/src/dump.cpp +++ b/src/dump.cpp @@ -102,7 +102,19 @@ bool game::dump_stats( const std::string &what, dump_mode mode, } else if( what == "ARMOR" ) { header = { - "Name", "Encumber (fit)", "Warmth", "Weight", "Coverage", "Bash", "Cut", "Bullet", "Acid", "Fire" + "Name", + "Encumber (fit)", + "Warmth", + "Weight", + "Coverage", + "Coverage (M)", + "Coverage (R)", + "Coverage (V)", + "Bash", + "Cut", + "Bullet", + "Acid", + "Fire" }; const bodypart_id bp_null( "bp_null" ); bodypart_id bp = opts.empty() ? bp_null : bodypart_id( opts.front() ); @@ -112,7 +124,10 @@ bool game::dump_stats( const std::string &what, dump_mode mode, r.push_back( std::to_string( obj.get_encumber( get_player_character(), bp ) ) ); r.push_back( std::to_string( obj.get_warmth() ) ); r.push_back( std::to_string( to_gram( obj.weight() ) ) ); - r.push_back( std::to_string( obj.get_coverage( bp ) ) ); + r.push_back( std::to_string( obj.get_coverage( bp, item::cover_type::COVER_DEFAULT ) ) ); + r.push_back( std::to_string( obj.get_coverage( bp, item::cover_type::COVER_MELEE ) ) ); + r.push_back( std::to_string( obj.get_coverage( bp, item::cover_type::COVER_RANGED ) ) ); + r.push_back( std::to_string( obj.get_coverage( bp, item::cover_type::COVER_VITALS ) ) ); r.push_back( std::to_string( obj.bash_resist() ) ); r.push_back( std::to_string( obj.cut_resist() ) ); r.push_back( std::to_string( obj.bullet_resist() ) ); diff --git a/src/effect_on_condition.cpp b/src/effect_on_condition.cpp index a0f59a7fa3710..6497fe9af6cab 100644 --- a/src/effect_on_condition.cpp +++ b/src/effect_on_condition.cpp @@ -122,7 +122,7 @@ void effect_on_conditions::load_new_character( Character &you ) for( const effect_on_condition_id &eoc_id : get_scenario()->eoc() ) { effect_on_condition eoc = eoc_id.obj(); if( eoc.type == eoc_type::SCENARIO_SPECIFIC && ( is_avatar || eoc.run_for_npcs ) ) { - queued_eoc new_eoc = queued_eoc{ eoc.id, true, calendar::turn_zero }; + queued_eoc new_eoc = queued_eoc{ eoc.id, calendar::turn_zero }; you.queued_effect_on_conditions.push( new_eoc ); } } @@ -130,8 +130,8 @@ void effect_on_conditions::load_new_character( Character &you ) effect_on_conditions::clear( you ); for( const effect_on_condition &eoc : effect_on_conditions::get_all() ) { - if( eoc.type == eoc_type::RECURRING && ( is_avatar || eoc.run_for_npcs ) ) { - queued_eoc new_eoc = queued_eoc{ eoc.id, true, calendar::turn + next_recurrence( eoc.id ) }; + if( eoc.type == eoc_type::RECURRING && ( ( is_avatar && eoc.global ) || !eoc.global ) ) { + queued_eoc new_eoc = queued_eoc{ eoc.id, calendar::turn + next_recurrence( eoc.id ) }; if( eoc.global ) { g->queued_global_effect_on_conditions.push( new_eoc ); } else { @@ -185,16 +185,22 @@ void effect_on_conditions::load_existing_character( Character &you ) for( const std::pair &eoc_pair : new_eocs ) { if( eoc_pair.second ) { - queue_effect_on_condition( next_recurrence( eoc_pair.first ), eoc_pair.first ); + queue_effect_on_condition( next_recurrence( eoc_pair.first ), eoc_pair.first, you ); } } } void effect_on_conditions::queue_effect_on_condition( time_duration duration, - effect_on_condition_id eoc ) + effect_on_condition_id eoc, Character &you ) { - queued_eoc new_eoc = queued_eoc{ eoc, false, calendar::turn + duration }; - get_player_character().queued_effect_on_conditions.push( new_eoc ); + queued_eoc new_eoc = queued_eoc{ eoc, calendar::turn + duration }; + if( eoc->global ) { + g->queued_global_effect_on_conditions.push( new_eoc ); + } else if( eoc->type == eoc_type::ACTIVATION || eoc->type == eoc_type::RECURRING ) { + you.queued_effect_on_conditions.push( new_eoc ); + } else { + debugmsg( "Invalid effect_on_condition and/or target. EOC: %s", eoc->id.c_str() ); + } } static void process_eocs( std::priority_queue, eoc_compare> @@ -205,13 +211,13 @@ static void process_eocs( std::priority_queueactivate( d ); - if( top.recurring ) { + if( top.eoc->type == eoc_type::RECURRING ) { if( activated ) { // It worked so add it back - queued_eoc new_eoc = queued_eoc{ top.eoc, true, calendar::turn + next_recurrence( top.eoc ) }; + queued_eoc new_eoc = queued_eoc{ top.eoc, calendar::turn + next_recurrence( top.eoc ) }; eocs_to_queue.push_back( new_eoc ); } else { if( !top.eoc->check_deactivate() ) { // It failed but shouldn't be deactivated so add it back - queued_eoc new_eoc = queued_eoc{ top.eoc, true, calendar::turn + next_recurrence( top.eoc ) }; + queued_eoc new_eoc = queued_eoc{ top.eoc, calendar::turn + next_recurrence( top.eoc ) }; eocs_to_queue.push_back( new_eoc ); } else { // It failed and should be deactivated for now eoc_vector.push_back( top.eoc ); @@ -236,22 +242,37 @@ void effect_on_conditions::process_effect_on_conditions( Character &you ) } } -void effect_on_conditions::process_reactivate( Character &you ) +static void process_reactivation( std::vector + &inactive_effect_on_condition_vector, + std::priority_queue, eoc_compare> + &queued_effect_on_conditions ) { std::vector ids_to_reactivate; - for( const effect_on_condition_id &eoc : you.inactive_effect_on_condition_vector ) { + for( const effect_on_condition_id &eoc : inactive_effect_on_condition_vector ) { if( !eoc->check_deactivate() ) { ids_to_reactivate.push_back( eoc ); } } for( const effect_on_condition_id &eoc : ids_to_reactivate ) { - you.queued_effect_on_conditions.push( queued_eoc{ eoc, true, calendar::turn + next_recurrence( eoc ) } ); - you.inactive_effect_on_condition_vector.erase( std::remove( - you.inactive_effect_on_condition_vector.begin(), you.inactive_effect_on_condition_vector.end(), - eoc ), you.inactive_effect_on_condition_vector.end() ); + queued_effect_on_conditions.push( queued_eoc{ eoc, calendar::turn + next_recurrence( eoc ) } ); + inactive_effect_on_condition_vector.erase( std::remove( + inactive_effect_on_condition_vector.begin(), inactive_effect_on_condition_vector.end(), + eoc ), inactive_effect_on_condition_vector.end() ); } } +void effect_on_conditions::process_reactivate( Character &you ) +{ + process_reactivation( you.inactive_effect_on_condition_vector, you.queued_effect_on_conditions ); +} + +void effect_on_conditions::process_reactivate() +{ + process_reactivation( g->inactive_global_effect_on_condition_vector, + g->queued_global_effect_on_conditions ); +} + + bool effect_on_condition::activate( dialogue &d ) const { bool retval = false; @@ -314,8 +335,7 @@ void effect_on_conditions::write_eocs_to_file( Character &you ) for( const auto &queue_entry : temp_queue ) { time_duration temp = queue_entry.time - calendar::turn; - testfile << queue_entry.eoc.c_str() << ";" << to_string( temp ) << ";" << - ( queue_entry.recurring ? "recur" : "non" ) << std::endl ; + testfile << queue_entry.eoc.c_str() << ";" << to_string( temp ) << std::endl; } for( const auto &queued : temp_queue ) { @@ -345,8 +365,7 @@ void effect_on_conditions::write_global_eocs_to_file( ) for( const auto &queue_entry : temp_queue ) { time_duration temp = queue_entry.time - calendar::turn; - testfile << queue_entry.eoc.c_str() << ";" << to_string( temp ) << ";" << - ( queue_entry.recurring ? "recur" : "non" ) << std::endl ; + testfile << queue_entry.eoc.c_str() << ";" << to_string( temp ) << std::endl; } for( const auto &queued : temp_queue ) { diff --git a/src/effect_on_condition.h b/src/effect_on_condition.h index a15dee8c8d697..24250400f9c56 100644 --- a/src/effect_on_condition.h +++ b/src/effect_on_condition.h @@ -67,11 +67,13 @@ void load_existing_character( Character &you ); /** Loads an inline eoc */ effect_on_condition_id load_inline_eoc( const JsonValue &jv, const std::string &src ); /** queue an eoc to happen in the future */ -void queue_effect_on_condition( time_duration duration, effect_on_condition_id eoc ); +void queue_effect_on_condition( time_duration duration, effect_on_condition_id eoc, + Character &you ); /** called every turn to process the queued eocs */ void process_effect_on_conditions( Character &you ); /** called after certain events to test whether to reactivate eocs */ void process_reactivate( Character &you ); +void process_reactivate(); /** clear all queued and inactive eocs */ void clear( Character &you ); /** write out all queued eocs and inactive eocs to a file for testing */ diff --git a/src/effect_source.cpp b/src/effect_source.cpp index df5acbfde9a00..a08d9fe13b5be 100644 --- a/src/effect_source.cpp +++ b/src/effect_source.cpp @@ -1,10 +1,9 @@ -#include "effect_source.h" - #include #include "character.h" #include "creature.h" #include "debug.h" +#include "effect_source.h" #include "faction.h" #include "game.h" #include "monster.h" diff --git a/src/explosion.cpp b/src/explosion.cpp index 52689b2634ad8..d776c00441348 100644 --- a/src/explosion.cpp +++ b/src/explosion.cpp @@ -69,6 +69,7 @@ static const itype_id fuel_type_none( "null" ); static const itype_id itype_battery( "battery" ); static const itype_id itype_e_handcuffs( "e_handcuffs" ); +static const itype_id itype_mininuke_act( "mininuke_act" ); static const itype_id itype_rm13_armor_on( "rm13_armor_on" ); static const species_id species_ROBOT( "ROBOT" ); @@ -791,6 +792,20 @@ void emp_blast( const tripoint &p ) // TODO: Drain NPC energy reserves } +void nuke( const tripoint_abs_omt &p ) +{ + const tripoint_abs_sm pos_sm = project_to( p ); + + tinymap tmpmap; + tmpmap.load( pos_sm, false ); + + item mininuke( itype_mininuke_act ); + mininuke.set_flag( flag_id( "ACTIVATE_ON_PLACE" ) ); + tmpmap.add_item( { SEEX - 1, SEEY - 1, 0 }, mininuke ); + + tmpmap.save(); +} + void resonance_cascade( const tripoint &p ) { Character &player_character = get_player_character(); diff --git a/src/explosion.h b/src/explosion.h index 950b0e76ed15a..294ea71ffc6b4 100644 --- a/src/explosion.h +++ b/src/explosion.h @@ -6,6 +6,7 @@ #include #include +#include "coordinates.h" #include "optional.h" #include "point.h" #include "type_id.h" @@ -80,6 +81,8 @@ void resonance_cascade( const tripoint &p ); void scrambler_blast( const tripoint &p ); /** Triggers an EMP blast at p. */ void emp_blast( const tripoint &p ); +/** Nuke the area at p - global overmap terrain coordinates! */ +void nuke( const tripoint_abs_omt &p ); // shockwave applies knockback to all targets within radius of p // parameters force, stun, and dam_mult are passed to knockback() // ignore_player determines if player is affected, useful for bionic, etc. diff --git a/src/faction.h b/src/faction.h index 45e62330cb02c..2e12270730416 100644 --- a/src/faction.h +++ b/src/faction.h @@ -74,7 +74,6 @@ class faction_template explicit faction_template( const JsonObject &jsobj ); public: - faction_template( const faction_template & ) = default; static void load( const JsonObject &jsobj ); static void check_consistency(); static void reset(); diff --git a/src/faction_camp.cpp b/src/faction_camp.cpp index 62003771ae1d5..198a04023bedf 100644 --- a/src/faction_camp.cpp +++ b/src/faction_camp.cpp @@ -2217,7 +2217,7 @@ void basecamp::start_fortifications( std::string &bldg_exp ) bool change_x = ( start.x() != stop.x() ); bool change_y = ( start.y() != stop.y() ); if( change_x && change_y ) { - popup( "Construction line must be straight!" ); + popup( _( "Construction line must be straight!" ) ); return; } if( bldg_exp == "faction_wall_level_N_1" ) { diff --git a/src/font_loader.h b/src/font_loader.h index c936858af25be..cc0032db560f1 100644 --- a/src/font_loader.h +++ b/src/font_loader.h @@ -95,17 +95,6 @@ class font_loader } else { const std::string legacy_fontdata = PATH_INFO::legacy_fontdata(); load_throws( legacy_fontdata ); -#if defined(__APPLE__) - // Terminus.ttf introduced in #45319 does not display properly on macOS (#50149) - // As a temporary workaround, remove Terminus.ttf from font list if on macOS. - // TODO: get rid of this workaround - typeface.erase( std::remove( typeface.begin(), typeface.end(), - "data/font/Terminus.ttf" ), typeface.end() ); - map_typeface.erase( std::remove( map_typeface.begin(), map_typeface.end(), - "data/font/Terminus.ttf" ), map_typeface.end() ); - overmap_typeface.erase( std::remove( overmap_typeface.begin(), overmap_typeface.end(), - "data/font/Terminus.ttf" ), overmap_typeface.end() ); -#endif assure_dir_exist( PATH_INFO::config_dir() ); save( fontdata ); } diff --git a/src/game.cpp b/src/game.cpp index 3946acf20eef7..0834a1e4ac32c 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include @@ -2090,7 +2091,7 @@ input_context get_default_mode_input_context() ctxt.register_action( "cast_spell" ); ctxt.register_action( "fire_burst" ); ctxt.register_action( "select_fire_mode" ); - ctxt.register_action( "drop" ); + ctxt.register_action( "unload_container" ); ctxt.register_action( "drop_adj" ); ctxt.register_action( "bionics" ); ctxt.register_action( "mutations" ); @@ -6789,11 +6790,45 @@ bool game::take_screenshot( const std::string &path ) const { return save_screenshot( path ); } + +bool game::take_screenshot() const +{ + // check that the current '/screenshots' directory exists + std::stringstream map_directory; + map_directory << PATH_INFO::world_base_save_path() << "/screenshots/"; + assure_dir_exist( map_directory.str() ); + + // build file name: /screenshots/[]_.png + // Date format is a somewhat ISO-8601 compliant GMT time date (except for some characters that wouldn't pass on most file systems like ':'). + std::time_t time = std::time( nullptr ); + std::stringstream date_buffer; + date_buffer << std::put_time( std::gmtime( &time ), "%F_%H-%M-%S_%z" ); + const auto tmp_file_name = string_format( "[%s]_%s.png", get_player_character().get_name(), + date_buffer.str() ); + + std::string file_name = ensure_valid_file_name( tmp_file_name ); + auto current_file_path = map_directory.str() + file_name; + + // Take a screenshot of the viewport. + if( take_screenshot( current_file_path ) ) { + popup( _( "Successfully saved your screenshot to: %s" ), map_directory.str() ); + return true; + } else { + popup( _( "An error occurred while trying to save the screenshot." ) ); + return false; + } +} #else bool game::take_screenshot( const std::string &/*path*/ ) const { return false; } + +bool game::take_screenshot() const +{ + popup( _( "This binary was not compiled with tiles support." ) ); + return false; +} #endif //helper method so we can keep list_items shorter @@ -7736,16 +7771,16 @@ game::vmenu_ret game::list_monsters( const std::vector &monster_list return game::vmenu_ret::QUIT; } -void game::drop() +void game::unload_container() { - u.drop( game_menus::inv::multidrop( u ), u.pos() ); + if( const cata::optional pnt = choose_adjacent( _( "Unload where?" ) ) ) { + u.drop( game_menus::inv::unload_container( u ), *pnt ); + } } -void game::drop_in_direction() +void game::drop_in_direction( const tripoint &pnt ) { - if( const cata::optional pnt = choose_adjacent( _( "Drop where?" ) ) ) { - u.drop( game_menus::inv::multidrop( u ), *pnt ); - } + u.drop( game_menus::inv::multidrop( u ), pnt ); } // Used to set up the first Hotkey in the display set @@ -9297,9 +9332,10 @@ point game::place_player( const tripoint &dest_loc ) const auto forage = [&]( const tripoint & pos ) { const ter_t &xter_t = *m.ter( pos ); const furn_t &xfurn_t = *m.furn( pos ); - const bool forage_everything = forage_type == "both"; + const bool forage_everything = forage_type == "all"; const bool forage_bushes = forage_everything || forage_type == "bushes"; const bool forage_trees = forage_everything || forage_type == "trees"; + const bool forage_crops = forage_everything || forage_type == "crops"; if( !xter_t.can_examine( pos ) ) { return; } else if( ( forage_bushes && xter_t.has_examine( iexamine::shrub_marloss ) ) || @@ -9311,7 +9347,8 @@ point game::place_player( const tripoint &dest_loc ) ) { xter_t.examine( u, pos ); } else if( ( forage_everything && xfurn_t.has_examine( iexamine::harvest_furn ) ) || - ( forage_everything && xfurn_t.has_examine( iexamine::harvest_furn_nectar ) ) + ( forage_everything && xfurn_t.has_examine( iexamine::harvest_furn_nectar ) ) || + ( forage_crops && xfurn_t.has_examine( iexamine::harvest_plant ) ) ) { xfurn_t.examine( u, pos ); } diff --git a/src/game.h b/src/game.h index a11803c5d1bfd..a5ef178d8fae9 100644 --- a/src/game.h +++ b/src/game.h @@ -640,6 +640,11 @@ class game * @returns `true` if the screenshot generation was successful, `false` otherwise. */ bool take_screenshot( const std::string &file_path ) const; + /** Saves a screenshot of the current viewport, as a PNG file. Filesystem location is derived from the current world and character. + * @note: Only works for SDL/TILES (otherwise the function returns `false`). A window (more precisely, a viewport) must already exist and the SDL renderer must be valid. + * @returns `true` if the screenshot generation was successful, `false` otherwise. + */ + bool take_screenshot() const; /** * Load the main map at given location, see @ref map::load, in global, absolute submap @@ -807,8 +812,8 @@ class game void pickup( const tripoint &p ); void pickup_feet(); // Pick items at player position ',', min 1 - void drop(); // Drop an item 'd' - void drop_in_direction(); // Drop w/ direction 'D' + void unload_container(); // Unload a container w/ direction 'd' + void drop_in_direction( const tripoint &pnt ); // Drop w/ direction 'D' void butcher(); // Butcher a corpse 'B' @@ -1042,6 +1047,7 @@ class game bool fullscreen = false; // NOLINT(cata-serialize) bool was_fullscreen = false; // NOLINT(cata-serialize) bool auto_travel_mode = false; + bool queue_screenshot = false; // NOLINT(cata-serialize) safe_mode_type safe_mode; // tracks time since last monster seen to allow automatically diff --git a/src/game_inventory.cpp b/src/game_inventory.cpp index b4bc3caafeedf..3f288d88c8b2a 100644 --- a/src/game_inventory.cpp +++ b/src/game_inventory.cpp @@ -56,6 +56,8 @@ #include "units.h" #include "units_utility.h" #include "value_ptr.h" +#include "vehicle_selector.h" +#include "vpart_position.h" static const activity_id ACT_EAT_MENU( "ACT_EAT_MENU" ); static const activity_id ACT_CONSUME_FOOD_MENU( "ACT_CONSUME_FOOD_MENU" ); @@ -323,7 +325,7 @@ class armor_inventory_preset: public inventory_selector_preset append_cell( [ this ]( const item_location & loc ) { const int storage_ml = to_milliliter( loc->get_total_capacity() ); return get_decimal_string( round_up( convert_volume( storage_ml ), 2 ) ); - }, string_format( "STORAGE (%s)", volume_units_abbr() ) ); + }, string_format( _( "STORAGE (%s)" ), volume_units_abbr() ) ); } protected: @@ -1617,8 +1619,7 @@ drop_locations game_menus::inv::holster( avatar &you, const item_location &holst inventory_drop_selector insert_menu( you, holster_preset, _( "ITEMS TO INSERT" ), /*warn_liquid=*/false ); insert_menu.add_character_items( you ); - insert_menu.add_map_items( you.pos() ); - insert_menu.add_vehicle_items( you.pos() ); + insert_menu.add_nearby_items( 1 ); insert_menu.set_display_stats( false ); insert_menu.set_title( title ); @@ -1646,6 +1647,86 @@ void game_menus::inv::insert_items( avatar &you, item_location &holster ) } } +static bool valid_unload_container( const item_location &container ) +{ + // Item must be a container. + if( !container->is_container() ) { + return false; + } + + // Container must contain at least one item + if( container->empty_container() ) { + return false; + } + + // This item must not be a liquid, relies on containers + // only being able to store one liquid at a time + if( container->num_item_stacks() == 1 && container->only_item().made_of( phase_id::LIQUID ) ) { + return false; + } + + return true; +} + +// Due to current item_location limitations, these won't work. +// When item_location gets updated to get items inside containers outside the player inventory +// uncomment this +// static item_location unload_container_item( drop_location &droplc, item *it, avatar &you ) +// { +// switch( droplc.first.where() ) { +// case item_location::type::invalid: +// return item_location(); +// case item_location::type::character: +// return item_location( you, it ); +// case item_location::type::map: +// return item_location( map_cursor( droplc.first.position() ), it ); +// case item_location::type::vehicle: { +// const cata::optional vp = +// get_map().veh_at( droplc.first.position() ).part_with_feature( "CARGO", true ); +// if( !vp ) { +// return item_location(); +// } +// return item_location( vehicle_cursor( vp->vehicle(), vp->part_index() ), it ); +// } +// case item_location::type::container: +// return item_location( droplc.first, it ); +// default: +// return item_location(); +// } +// } + +drop_locations game_menus::inv::unload_container( avatar &you ) +{ + inventory_filter_preset unload_preset( valid_unload_container ); + + inventory_drop_selector insert_menu( you, unload_preset, _( "CONTAINERS TO UNLOAD" ), + /*warn_liquid=*/false ); + insert_menu.add_character_items( you ); + // When item_location gets updated to get items inside containers outside the player inventory + // uncomment this + //insert_menu.add_nearby_items( 1 ); + insert_menu.set_display_stats( false ); + + insert_menu.set_title( _( "Select containers to unload" ) ); + + drop_locations dropped; + for( drop_location &droplc : insert_menu.execute() ) { + for( item *it : droplc.first->all_items_top( item_pocket::pocket_type::CONTAINER ) ) { + // no liquids + if( !it->made_of( phase_id::LIQUID ) ) { + dropped.emplace_back( item_location( droplc.first, it ), it->count() ); + // When item_location gets updated to get items inside containers outside the player inventory + // uncomment this + // item_location iloc = unload_container_item( droplc, it, you ); + // if( iloc ) { + // dropped.emplace_back( iloc, it->count() ); + // } + } + } + } + return dropped; +} + class saw_barrel_inventory_preset: public weapon_inventory_preset { public: diff --git a/src/game_inventory.h b/src/game_inventory.h index 6aba41ee0157a..d7b1e4eba64a9 100644 --- a/src/game_inventory.h +++ b/src/game_inventory.h @@ -118,6 +118,7 @@ item_location wield( avatar &you ); /** Item wielding/unwielding menu. */ drop_locations holster( avatar &you, const item_location &holster ); void insert_items( avatar &you, item_location &holster ); +drop_locations unload_container( avatar &you ); /** Choosing a gun to saw down it's barrel. */ item_location saw_barrel( Character &you, item &tool ); /** Choose item to wear. */ diff --git a/src/gamemode.h b/src/gamemode.h index f6355d9a3925a..879fcb5beaf92 100644 --- a/src/gamemode.h +++ b/src/gamemode.h @@ -3,6 +3,7 @@ #define CATA_SRC_GAMEMODE_H #include +#include #include #include "enums.h" diff --git a/src/gates.h b/src/gates.h index c767b7655809b..26e759d8bf3b9 100644 --- a/src/gates.h +++ b/src/gates.h @@ -3,6 +3,7 @@ #define CATA_SRC_GATES_H #include +#include class Character; class Creature; diff --git a/src/handle_action.cpp b/src/handle_action.cpp index 3cb49a3120065..e00f7c4de52af 100644 --- a/src/handle_action.cpp +++ b/src/handle_action.cpp @@ -97,6 +97,7 @@ static const activity_id ACT_MULTIPLE_CHOP_TREES( "ACT_MULTIPLE_CHOP_TREES" ); static const activity_id ACT_MULTIPLE_CONSTRUCTION( "ACT_MULTIPLE_CONSTRUCTION" ); static const activity_id ACT_MULTIPLE_FARM( "ACT_MULTIPLE_FARM" ); static const activity_id ACT_MULTIPLE_MINE( "ACT_MULTIPLE_MINE" ); +static const activity_id ACT_MULTIPLE_MOP( "ACT_MULTIPLE_MOP" ); static const activity_id ACT_PULP( "ACT_PULP" ); static const activity_id ACT_SPELLCASTING( "ACT_SPELLCASTING" ); static const activity_id ACT_VEHICLE_DECONSTRUCTION( "ACT_VEHICLE_DECONSTRUCTION" ); @@ -1136,7 +1137,8 @@ static void loot() Multirepairvehicle = 2048, MultiButchery = 4096, MultiMining = 8192, - MultiDis = 16384 + MultiDis = 16384, + MultiMopping = 32768 }; Character &player_character = get_player_character(); @@ -1171,6 +1173,7 @@ static void loot() flags |= g->check_near_zone( zone_type_id( "MINING" ), player_character.pos() ) ? MultiMining : 0; flags |= g->check_near_zone( zone_type_id( "zone_disassemble" ), player_character.pos() ) ? MultiDis : 0; + flags |= g->check_near_zone( zone_type_id( "MOPPING" ), player_character.pos() ) ? MultiMopping : 0; if( flags == 0 ) { add_msg( m_info, _( "There is no compatible zone nearby." ) ); add_msg( m_info, _( "Compatible zones are %s and %s" ), @@ -1231,6 +1234,9 @@ static void loot() _( "Auto-disassemble anything in disassembly zone - auto-fetch tools." ) ); } + if( flags & MultiMopping ) { + menu.addentry_desc( MultiMopping, true, 'p', _( "Mop area" ), _( "Mop clean the area." ) ); + } menu.query(); flags = ( menu.ret >= 0 ) ? menu.ret : None; @@ -1272,6 +1278,9 @@ static void loot() case MultiDis: player_character.assign_activity( ACT_MULTIPLE_DIS ); break; + case MultiMopping: + player_character.assign_activity( ACT_MULTIPLE_MOP ); + break; default: debugmsg( "Unsupported flag" ); break; @@ -1847,6 +1856,29 @@ bool game::do_regular_action( action_id &act, avatar &player_character, // auto-move should be canceled due to a failed move or obstacle player_character.clear_destination(); } + + if( get_option( "AUTO_FEATURES" ) && get_option( "AUTO_MOPPING" ) && + player_character.used_weapon().typeId() == STATIC( itype_id( "mop" ) ) ) { + map &here = get_map(); + const bool is_blind = player_character.is_blind(); + for( const tripoint &point : here.points_in_radius( player_character.pos(), 1 ) ) { + bool did_mop = false; + if( is_blind ) { + // blind character have a 1/3 chance of actually mopping + if( one_in( 3 ) ) { + did_mop = here.mop_spills( point ); + } else { + did_mop = here.terrain_moppable( point ); + } + } else { + did_mop = here.mop_spills( point ); + } + // iuse::mop costs 15 moves per use + if( did_mop ) { + player_character.mod_moves( -15 ); + } + } + } } break; case ACTION_MOVE_DOWN: @@ -2151,16 +2183,18 @@ bool game::do_regular_action( action_id &act, avatar &player_character, } break; - case ACTION_DROP: + case ACTION_UNLOAD_CONTAINER: // You CAN drop things to your own tile while in the shell. - drop(); + unload_container(); break; - case ACTION_DIR_DROP: - if( player_character.has_active_mutation( trait_SHELL2 ) ) { - add_msg( m_info, _( "You can't drop things to another tile while you're in your shell." ) ); - } else { - drop_in_direction(); + if( const cata::optional pnt = choose_adjacent( _( "Drop where?" ) ) ) { + if( *pnt != player_character.pos() && + player_character.has_active_mutation( trait_SHELL2 ) ) { + add_msg( m_info, _( "You can't drop things to another tile while you're in your shell." ) ); + } else { + drop_in_direction( *pnt ); + } } break; case ACTION_BIONICS: diff --git a/src/help.h b/src/help.h index 2f8f40008c0c8..afd6c7c00eb8e 100644 --- a/src/help.h +++ b/src/help.h @@ -4,6 +4,7 @@ #include #include +#include #include #include diff --git a/src/iexamine.cpp b/src/iexamine.cpp index 89c817cf52ec6..c73098b8ab34b 100644 --- a/src/iexamine.cpp +++ b/src/iexamine.cpp @@ -152,7 +152,6 @@ static const itype_id itype_grapnel( "grapnel" ); static const itype_id itype_id_science( "id_science" ); static const itype_id itype_leg_splint( "leg_splint" ); static const itype_id itype_maple_sap( "maple_sap" ); -static const itype_id itype_maple_syrup( "maple_syrup" ); static const itype_id itype_marloss_berry( "marloss_berry" ); static const itype_id itype_marloss_seed( "marloss_seed" ); static const itype_id itype_mycus_fruit( "mycus_fruit" ); @@ -2078,7 +2077,7 @@ void iexamine::harvest_furn_nectar( Character &you, const tripoint &examp ) void iexamine::harvest_furn( Character &you, const tripoint &examp ) { bool auto_forage = get_option( "AUTO_FEATURES" ) && - get_option( "AUTO_FORAGING" ) == "both"; + get_option( "AUTO_FORAGING" ) == "all"; if( !auto_forage && !query_pick( you, examp ) ) { return; } @@ -2088,7 +2087,7 @@ void iexamine::harvest_furn( Character &you, const tripoint &examp ) void iexamine::harvest_ter_nectar( Character &you, const tripoint &examp ) { bool auto_forage = get_option( "AUTO_FEATURES" ) && - ( get_option( "AUTO_FORAGING" ) == "both" || + ( get_option( "AUTO_FORAGING" ) == "all" || get_option( "AUTO_FORAGING" ) == "bushes" || get_option( "AUTO_FORAGING" ) == "trees" ); if( !auto_forage && !query_pick( you, examp ) ) { @@ -2100,7 +2099,7 @@ void iexamine::harvest_ter_nectar( Character &you, const tripoint &examp ) void iexamine::harvest_ter( Character &you, const tripoint &examp ) { bool auto_forage = get_option( "AUTO_FEATURES" ) && - ( get_option( "AUTO_FORAGING" ) == "both" || + ( get_option( "AUTO_FORAGING" ) == "all" || get_option( "AUTO_FORAGING" ) == "trees" ); if( !auto_forage && !query_pick( you, examp ) ) { return; @@ -2366,6 +2365,13 @@ std::list iexamine::get_harvest_items( const itype &type, const int plant_ return result; } +void iexamine::harvest_plant( Character &you, const tripoint &examp ) +{ + if( get_map().has_flag_furn( ter_furn_flag::TFLAG_GROWTH_HARVEST, examp ) ) { + harvest_plant( you, examp, false ); + } +} + /** * Actual harvesting of selected plant */ @@ -3524,7 +3530,7 @@ static void pick_plant( Character &you, const tripoint &examp, void iexamine::tree_hickory( Character &you, const tripoint &examp ) { bool auto_forage = get_option( "AUTO_FEATURES" ) && - ( get_option( "AUTO_FORAGING" ) == "both" || + ( get_option( "AUTO_FORAGING" ) == "all" || get_option( "AUTO_FORAGING" ) == "trees" ); bool digging_up = false; @@ -3619,7 +3625,7 @@ void iexamine::tree_maple_tapped( Character &you, const tripoint &examp ) container = ⁢ it.visit_items( [&charges, &has_sap]( const item * it, item * ) { - if( it->typeId() == itype_maple_syrup ) { + if( it->typeId() == itype_maple_sap ) { has_sap = true; charges = it->charges; return VisitResponse::ABORT; @@ -4852,7 +4858,6 @@ void iexamine::autodoc( Character &you, const tripoint &examp ) bool needs_anesthesia = true; std::vector anesth_kit; - int drug_count = 0; if( patient.has_trait( trait_NOPAIN ) || patient.has_bionic( bio_painkiller ) || amenu.ret > 1 ) { @@ -4865,7 +4870,6 @@ void iexamine::autodoc( Character &you, const tripoint &examp ) for( const item *anesthesia_item : a_filter ) { if( anesthesia_item->ammo_remaining() >= 1 ) { anesth_kit.emplace_back( anesthesia_item->typeId(), 1 ); - drug_count += anesthesia_item->ammo_remaining(); } } } @@ -6268,6 +6272,7 @@ iexamine_functions iexamine_functions_from_string( const std::string &function_n { "harvest_furn", &iexamine::harvest_furn }, { "harvest_ter_nectar", &iexamine::harvest_ter_nectar }, { "harvest_ter", &iexamine::harvest_ter }, + { "harvest_plant", &iexamine::harvest_plant }, { "harvested_plant", &iexamine::harvested_plant }, { "shrub_marloss", &iexamine::shrub_marloss }, { "translocator", &iexamine::translocator }, @@ -6308,6 +6313,7 @@ iexamine_functions iexamine_functions_from_string( const std::string &function_n "harvest_furn", "harvest_ter_nectar", "harvest_ter", + "harvest_plant", }; auto iter = function_map.find( function_name ); diff --git a/src/iexamine.h b/src/iexamine.h index 71c9088b009dd..18235c6b4d94c 100644 --- a/src/iexamine.h +++ b/src/iexamine.h @@ -151,7 +151,8 @@ std::list get_harvest_items( const itype &type, int plant_count, std::vector get_seed_entries( const std::vector &seed_inv ); int query_seed( const std::vector &seed_entries ); void plant_seed( Character &you, const tripoint &examp, const itype_id &seed_id ); -void harvest_plant( Character &you, const tripoint &examp, bool from_activity = false ); +void harvest_plant( Character &you, const tripoint &examp ); +void harvest_plant( Character &you, const tripoint &examp, bool from_activity ); void fertilize_plant( Character &you, const tripoint &tile, const itype_id &fertilizer ); itype_id choose_fertilizer( Character &you, const std::string &pname, bool ask_player ); ret_val can_fertilize( Character &you, const tripoint &tile, const itype_id &fertilizer ); diff --git a/src/item.cpp b/src/item.cpp index e23004c59a920..3c0cc9ec46102 100644 --- a/src/item.cpp +++ b/src/item.cpp @@ -1157,7 +1157,8 @@ bool item::stacks_with( const item &rhs, bool check_components, bool combine_liq clipped_time( get_shelf_life() - rot ); std::pair other_clipped_time_to_rot = clipped_time( rhs.get_shelf_life() - rhs.rot ); - if( my_clipped_time_to_rot != other_clipped_time_to_rot ) { + if( ( !combine_liquid || !made_of_from_type( phase_id::LIQUID ) ) && + my_clipped_time_to_rot != other_clipped_time_to_rot ) { return false; } if( rotten() != rhs.rotten() ) { @@ -1186,6 +1187,27 @@ bool item::stacks_with( const item &rhs, bool check_components, bool combine_liq } } } + const std::vector this_mods = mods(); + const std::vector that_mods = rhs.mods(); + if( this_mods.size() != that_mods.size() ) { + return false; + } + for( const item *it1 : this_mods ) { + bool match = false; + const bool i1_isnull = it1 == nullptr; + for( const item *it2 : that_mods ) { + const bool i2_isnull = it2 == nullptr; + if( i1_isnull != i2_isnull ) { + continue; + } else if( it1 == it2 || it1->typeId() == it2->typeId() ) { + match = true; + break; + } + } + if( !match ) { + return false; + } + } return contents.stacks_with( rhs.contents ); } @@ -1660,10 +1682,11 @@ double item::effective_dps( const Character &guy, Creature &mon ) const // that damage const auto calc_effective_damage = [ &, moves_per_attack]( const double num_strikes, const bool crit, const Character & guy, Creature & mon ) { + bodypart_id bp = bodypart_id( "torso" ); Creature *temp_mon = &mon; double subtotal_damage = 0; damage_instance base_damage; - guy.roll_all_damage( crit, base_damage, true, *this ); + guy.roll_all_damage( crit, base_damage, true, *this, &mon, bp ); damage_instance dealt_damage = base_damage; // TODO: Modify DPS calculation to consider weakpoints. resistances r = resistances( *static_cast( temp_mon ) ); @@ -1675,7 +1698,7 @@ double item::effective_dps( const Character &guy, Creature &mon ) const for( const damage_unit &dmg_unit : dealt_damage.damage_units ) { int cur_damage = 0; int total_pain = 0; - temp_mon->deal_damage_handle_type( effect_source::empty(), dmg_unit, bodypart_id( "torso" ), + temp_mon->deal_damage_handle_type( effect_source::empty(), dmg_unit, bp, cur_damage, total_pain ); if( cur_damage > 0 ) { dealt_dams.dealt_dams[ static_cast( dmg_unit.type )] += cur_damage; @@ -1688,7 +1711,7 @@ double item::effective_dps( const Character &guy, Creature &mon ) const if( has_technique( RAPID ) ) { Creature *temp_rs_mon = &mon; damage_instance rs_base_damage; - guy.roll_all_damage( crit, rs_base_damage, true, *this ); + guy.roll_all_damage( crit, rs_base_damage, true, *this, &mon, bp ); damage_instance dealt_rs_damage = rs_base_damage; for( damage_unit &dmg_unit : dealt_rs_damage.damage_units ) { dmg_unit.damage_multiplier *= 0.66; @@ -1702,7 +1725,7 @@ double item::effective_dps( const Character &guy, Creature &mon ) const for( const damage_unit &dmg_unit : dealt_rs_damage.damage_units ) { int cur_damage = 0; int total_pain = 0; - temp_rs_mon->deal_damage_handle_type( effect_source::empty(), dmg_unit, bodypart_id( "torso" ), + temp_rs_mon->deal_damage_handle_type( effect_source::empty(), dmg_unit, bp, cur_damage, total_pain ); if( cur_damage > 0 ) { rs_dealt_dams.dealt_dams[ static_cast( dmg_unit.type ) ] += cur_damage; @@ -2893,11 +2916,17 @@ void item::armor_encumbrance_info( std::vector &info, int reduce_encum int encumber = 0; int max_encumber = 0; int coverage = 0; + int cover_melee = 0; + int cover_ranged = 0; + int cover_vitals = 0; bool operator==( const armor_portion_type &other ) { return encumber == other.encumber && max_encumber == other.max_encumber - && coverage == other.coverage; + && coverage == other.coverage + && cover_melee == other.cover_melee + && cover_ranged == other.cover_ranged + && cover_vitals == other.cover_vitals; } }; struct body_part_display_info { @@ -2915,7 +2944,7 @@ void item::armor_encumbrance_info( std::vector &info, int reduce_encum to_display_data[covering_id] = { covering_id.obj().name_as_heading, { std::max( 0, get_encumber( player_character, covering_id ) - reduce_encumbrance_by ), std::max( 0, get_encumber( player_character, covering_id, encumber_flags::assume_full ) - reduce_encumbrance_by ), - piece.coverage + piece.coverage, piece.cover_melee, piece.cover_ranged, piece.cover_vitals }, true }; } @@ -2937,7 +2966,6 @@ void item::armor_encumbrance_info( std::vector &info, int reduce_encum } } const std::string when_full_message = space + _( "When full:" ) + space; - const std::string coverage_message = space + _( "Coverage:" ) + space; for( auto &piece : to_display_data ) { if( t->sided ) { const bodypart_str_id &covering_id = piece.first; @@ -2946,30 +2974,52 @@ void item::armor_encumbrance_info( std::vector &info, int reduce_encum } } if( piece.second.active ) { + const bool has_max = piece.second.portion.encumber != piece.second.portion.max_encumber; info.emplace_back( "ARMOR", string_format( _( "%s:" ), piece.second.to_display.translated() ) + space, "", - iteminfo::no_newline | iteminfo::lower_is_better, + ( has_max ? iteminfo::no_newline : iteminfo::no_flags ) | iteminfo::lower_is_better, piece.second.portion.encumber ); - if( piece.second.portion.encumber != piece.second.portion.max_encumber ) { + if( has_max ) { info.emplace_back( "ARMOR", when_full_message, "", - iteminfo::no_newline | iteminfo::lower_is_better, + iteminfo::no_flags | iteminfo::lower_is_better, piece.second.portion.max_encumber ); } - info.emplace_back( "ARMOR", coverage_message, "", - iteminfo::no_flags, + info.emplace_back( "ARMOR", string_format( "%s%s", _( "Coverage:" ), space ), "", + iteminfo::no_newline, piece.second.portion.coverage ); + //~ (M)elee coverage + info.emplace_back( "ARMOR", string_format( "%s%s%s", space, _( "(M):" ), space ), "", + iteminfo::no_newline, + piece.second.portion.cover_melee ); + //~ (R)anged coverage + info.emplace_back( "ARMOR", string_format( "%s%s%s", space, _( "(R):" ), space ), "", + iteminfo::no_newline, + piece.second.portion.cover_ranged ); + //~ (V)itals coverage + info.emplace_back( "ARMOR", string_format( "%s%s%s", space, _( "(V):" ), space ), "", + iteminfo::no_flags, + piece.second.portion.cover_vitals ); } } } } else if( is_gun() && has_flag( flag_IS_ARMOR ) ) { //right now all eligible gunmods (shoulder_strap, belt_clip) have the is_armor flag and use the torso info.emplace_back( "ARMOR", _( "Torso:" ) + space, "", - iteminfo::no_newline | iteminfo::lower_is_better, get_avg_encumber( get_avatar() ) ); + iteminfo::no_flags | iteminfo::lower_is_better, get_avg_encumber( get_avatar() ) ); - info.emplace_back( "ARMOR", space + _( "Coverage:" ) + space, "", - iteminfo::no_flags, get_coverage( body_part_torso.id() ) ); + info.emplace_back( "ARMOR", _( "Coverage:" ) + space, "", + iteminfo::no_newline, get_coverage( body_part_torso.id() ) ); + //~ (M)elee coverage + info.emplace_back( "ARMOR", space + _( "(M):" ) + space, "", + iteminfo::no_newline, get_coverage( body_part_torso.id(), cover_type::COVER_MELEE ) ); + //~ (R)anged coverage + info.emplace_back( "ARMOR", space + _( "(R):" ) + space, "", + iteminfo::no_newline, get_coverage( body_part_torso.id(), cover_type::COVER_RANGED ) ); + //~ (V)itals coverage + info.emplace_back( "ARMOR", space + _( "(V):" ) + space, "", + iteminfo::no_flags, get_coverage( body_part_torso.id(), cover_type::COVER_VITALS ) ); } } @@ -4234,10 +4284,11 @@ void item::combat_info( std::vector &info, const iteminfo_query *parts ///\EFFECT_MELEE >2 allows seeing melee damage stats on weapons if( ( player_character.get_skill_level( skill_melee ) > 2 && ( dmg_bash || dmg_cut || dmg_stab || type->m_to_hit > 0 ) ) || debug_mode ) { + bodypart_id bp = bodypart_id( "torso" ); damage_instance non_crit; - player_character.roll_all_damage( false, non_crit, true, *this ); + player_character.roll_all_damage( false, non_crit, true, *this, nullptr, bp ); damage_instance crit; - player_character.roll_all_damage( true, crit, true, *this ); + player_character.roll_all_damage( true, crit, true, *this, nullptr, bp ); int attack_cost = player_character.attack_speed( *this ); insert_separation_line( info ); if( parts->test( iteminfo_parts::DESCRIPTION_MELEEDMG ) ) { @@ -4815,6 +4866,8 @@ nc_color item::color_in_inventory( const Character *const ch ) const ret = c_red; } else if( is_filthy() || has_own_flag( flag_DIRTY ) ) { ret = c_brown; + } else if( is_relic() ) { + ret = c_pink; } else if( is_bionic() ) { if( !player_character.has_bionic( type->bionic->id ) || type->bionic->id->dupes_allowed ) { ret = player_character.bionic_installation_issues( type->bionic->id ).empty() ? c_green : c_red; @@ -6605,7 +6658,7 @@ layer_level item::get_layer() const } } -int item::get_avg_coverage() const +int item::get_avg_coverage( const cover_type &type ) const { const islot_armor *t = find_armor_data(); if( !t ) { @@ -6616,7 +6669,7 @@ int item::get_avg_coverage() const for( const armor_portion_data &entry : t->data ) { if( entry.covers.has_value() ) { for( const bodypart_str_id &limb : entry.covers.value() ) { - int coverage = get_coverage( limb ); + int coverage = get_coverage( limb, type ); if( coverage ) { avg_coverage += coverage; ++avg_ctr; @@ -6632,10 +6685,19 @@ int item::get_avg_coverage() const } } -int item::get_coverage( const bodypart_id &bodypart ) const +int item::get_coverage( const bodypart_id &bodypart, const cover_type &type ) const { if( const armor_portion_data *portion_data = portion_for_bodypart( bodypart ) ) { - return portion_data->coverage; + switch( type ) { + case cover_type::COVER_DEFAULT: + return portion_data->coverage; + case cover_type::COVER_MELEE: + return portion_data->cover_melee; + case cover_type::COVER_RANGED: + return portion_data->cover_ranged; + case cover_type::COVER_VITALS: + return portion_data->cover_vitals; + } } return 0; } diff --git a/src/item.h b/src/item.h index a2acb9de6e557..ddb531646a4b5 100644 --- a/src/item.h +++ b/src/item.h @@ -1702,16 +1702,23 @@ class item : public visitable */ layer_level get_layer() const; + enum cover_type { + COVER_DEFAULT, + COVER_MELEE, + COVER_RANGED, + COVER_VITALS + }; /* * Returns the average coverage of each piece of data this item */ - int get_avg_coverage() const; + int get_avg_coverage( const cover_type &type = cover_type::COVER_DEFAULT ) const; /** * Returns the highest coverage that any piece of data that this item has that covers the bodypart. * Values range from 0 (not covering anything) to 100 (covering the whole body part). * Items that cover more are more likely to absorb damage from attacks. */ - int get_coverage( const bodypart_id &bodypart ) const; + int get_coverage( const bodypart_id &bodypart, + const cover_type &type = cover_type::COVER_DEFAULT ) const; enum class encumber_flags : int { none = 0, diff --git a/src/item_factory.cpp b/src/item_factory.cpp index 6dc502bee88b9..c1650fd4398a0 100644 --- a/src/item_factory.cpp +++ b/src/item_factory.cpp @@ -1987,6 +1987,9 @@ void armor_portion_data::deserialize( const JsonObject &jo ) { assign_coverage_from_json( jo, "covers", covers ); optional( jo, false, "coverage", coverage, 0 ); + optional( jo, false, "cover_melee", cover_melee, coverage ); + optional( jo, false, "cover_ranged", cover_ranged, coverage ); + optional( jo, false, "cover_vitals", cover_vitals, 0 ); if( jo.has_array( "encumbrance" ) ) { encumber = jo.get_array( "encumbrance" ).get_int( 0 ); diff --git a/src/item_location.h b/src/item_location.h index ad15c27fc2eb5..6fd6ce8dd44f7 100644 --- a/src/item_location.h +++ b/src/item_location.h @@ -4,6 +4,7 @@ #include #include +#include #include "units_fwd.h" diff --git a/src/item_pocket.cpp b/src/item_pocket.cpp index f90ec93b89bbb..49dc113be474c 100644 --- a/src/item_pocket.cpp +++ b/src/item_pocket.cpp @@ -943,7 +943,7 @@ void item_pocket::general_info( std::vector &info, int pocket_number, info.emplace_back( "DESCRIPTION", string_format( "* %s", f.restriction() ) ); first = false; } else { - info.emplace_back( "DESCRIPTION", string_format( "* or %s", f.restriction() ) ); + info.emplace_back( "DESCRIPTION", string_format( _( "* or %s" ), f.restriction() ) ); } } } diff --git a/src/itype.h b/src/itype.h index b4229e9e2d668..ac84b62a88681 100644 --- a/src/itype.h +++ b/src/itype.h @@ -229,6 +229,9 @@ struct armor_portion_data { // Percentage of the body part that this item covers. // This determines how likely it is to hit the item instead of the player. int coverage = 0; + int cover_melee = 0; + int cover_ranged = 0; + int cover_vitals = 0; // Where does this cover if any cata::optional covers; diff --git a/src/iuse.cpp b/src/iuse.cpp index 6b300b300c25d..645d68999abc7 100644 --- a/src/iuse.cpp +++ b/src/iuse.cpp @@ -85,6 +85,7 @@ #include "player_activity.h" #include "pldata.h" #include "point.h" +#include "popup.h" // For play_game #include "recipe.h" #include "recipe_dictionary.h" #include "requirements.h" @@ -3643,12 +3644,13 @@ cata::optional iuse::granade_act( Character *p, item *it, bool t, const tri cata::optional iuse::c4( Character *p, item *it, bool, const tripoint & ) { int time; - bool got_value = query_int( time, _( "Set the timer to (0 to cancel)?" ) ); + bool got_value = query_int( time, _( "Set the timer to how many seconds (0 to cancel)?" ) ); if( !got_value || time <= 0 ) { p->add_msg_if_player( _( "Never mind." ) ); return cata::nullopt; } - p->add_msg_if_player( _( "You set the timer to %d." ), time ); + p->add_msg_if_player( n_gettext( "You set the timer to %d second.", + "You set the timer to %d seconds.", time ), time ); it->convert( itype_c4armed ); it->charges = time; it->active = true; @@ -4842,7 +4844,7 @@ cata::optional iuse::oxytorch( Character *p, item *it, bool, const tripoint return cata::nullopt; } static const quality_id GLARE( "GLARE" ); - if( !p->has_quality( GLARE, 2 ) ) { + if( !p->has_quality( GLARE, 1 ) ) { p->add_msg_if_player( m_info, _( "You need welding goggles to do that." ) ); return cata::nullopt; } @@ -4974,37 +4976,7 @@ cata::optional iuse::mop( Character *p, item *it, bool, const tripoint & ) } map &here = get_map(); const std::function f = [&here]( const tripoint & pnt ) { - if( !here.has_flag( ter_furn_flag::TFLAG_LIQUIDCONT, pnt ) ) { - map_stack items = here.i_at( pnt ); - auto found = std::find_if( items.begin(), items.end(), []( const item & it ) { - return it.made_of( phase_id::LIQUID ); - } ); - if( found != items.end() ) { - return true; - } - } - for( const auto &pr : here.field_at( pnt ) ) { - if( pr.second.get_field_type().obj().phase == phase_id::LIQUID ) { - return true; - } - } - if( const optional_vpart_position vp = here.veh_at( pnt ) ) { - vehicle *const veh = &vp->vehicle(); - std::vector parts_here = veh->parts_at_relative( vp->mount(), true ); - for( int elem : parts_here ) { - if( veh->part( elem ).blood > 0 ) { - return true; - } - vehicle_stack items = veh->get_items( elem ); - auto found = std::find_if( items.begin(), items.end(), []( const item & it ) { - return it.made_of( phase_id::LIQUID ); - } ); - if( found != items.end() ) { - return true; - } - } - } - return false; + return here.terrain_moppable( pnt ); }; const cata::optional pnt_ = choose_adjacent_highlight( @@ -5441,17 +5413,12 @@ cata::optional iuse::talking_doll( Character *p, item *it, bool, const trip p->add_msg_if_player( m_info, _( "The %s's batteries are dead." ), it->tname() ); return cata::nullopt; } - + p->add_msg_if_player( m_neutral, _( "You press a button on the doll to make it talk." ) ); const SpeechBubble speech = get_speech( it->typeId().str() ); sounds::sound( p->pos(), speech.volume, sounds::sound_t::electronic_speech, speech.text.translated(), true, "speech", it->typeId().str() ); - // Sound code doesn't describe noises at the player position - if( p->can_hear( p->pos(), speech.volume ) ) { - p->add_msg_if_player( _( "You hear \"%s\"" ), speech.text ); - } - return it->type->charges_to_use(); } @@ -9481,6 +9448,41 @@ cata::optional iuse::coin_flip( Character *p, item *it, bool, const tripoin cata::optional iuse::play_game( Character *p, item *it, bool, const tripoint & ) { + if( p->is_avatar() ) { + std::vector followers = g->get_npcs_if( [p]( const npc & n ) { + return n.is_ally( *p ) && p->sees( n ) && n.can_hear( p->pos(), p->get_shout_volume() ); + } ); + int fcount = followers.size(); + if( fcount > 0 ) { + const char *qstr = fcount > 1 ? _( "Play the %s with your friends?" ) : + _( "Play the %s with your friend?" ); + std::string res = query_popup() + .context( "FRIENDS_ME_CANCEL" ) + .message( qstr, it->tname() ) + .option( "FRIENDS" ).option( "ME" ).option( "CANCEL" ) + .query().action; + if( res == "FRIENDS" ) { + if( fcount > 1 ) { + add_msg( _( "You and your %d friends start playing." ), fcount ); + } else { + add_msg( _( "You and your friend start playing." ) ); + } + p->assign_activity( ACT_GENERIC_GAME, to_moves( 1_hours ), fcount, + p->get_item_position( it ), "gaming with friends" ); + for( npc *n : followers ) { + n->assign_activity( ACT_GENERIC_GAME, to_moves( 1_hours ), fcount, + n->get_item_position( it ), "gaming with friends" ); + } + } else if( res == "ME" ) { + p->add_msg_if_player( _( "You start playing." ) ); + p->assign_activity( ACT_GENERIC_GAME, to_moves( 1_hours ), -1, + p->get_item_position( it ), "gaming" ); + } else { + return cata::nullopt; + } + return 0; + } // else, fall through to playing alone + } if( query_yn( _( "Play a game with the %s?" ), it->tname() ) ) { p->add_msg_if_player( _( "You start playing." ) ); p->assign_activity( ACT_GENERIC_GAME, to_moves( 1_hours ), -1, diff --git a/src/iuse_software.h b/src/iuse_software.h index 369f191f03204..e6c23cc743e29 100644 --- a/src/iuse_software.h +++ b/src/iuse_software.h @@ -4,6 +4,7 @@ #include #include +#include bool play_videogame( const std::string &function_name, std::map &game_data, diff --git a/src/json.cpp b/src/json.cpp index 9957120f6cdfc..ac8a3cae5c36f 100644 --- a/src/json.cpp +++ b/src/json.cpp @@ -118,7 +118,9 @@ void JsonObject::report_unvisited() const const std::string &name = p.first; if( !visited_members.count( name ) && !string_starts_with( name, "//" ) ) { try { - throw_error( string_format( "Invalid or misplaced field name \"%s\" in JSON data", name ), name ); + throw_error( + string_format( "Invalid or misplaced field name \"%s\" in JSON data, or value in unexpected format.", + name ), name ); } catch( const JsonError &e ) { debugmsg( "(json-error)\n%s", e.what() ); } diff --git a/src/kill_tracker.cpp b/src/kill_tracker.cpp index cc8bcb7fb92a6..2de26fa7dbf18 100644 --- a/src/kill_tracker.cpp +++ b/src/kill_tracker.cpp @@ -145,6 +145,7 @@ void kill_tracker::notify( const cata::event &e ) const mtype_id victim_type = e.get( "victim_type" ); kills[victim_type]++; killer->kill_xp += compute_kill_xp( victim_type ); + victim_type.obj().families.practice_kill( *killer ); } break; } diff --git a/src/loading_ui.h b/src/loading_ui.h index ec05c70fe3339..d11518bd918de 100644 --- a/src/loading_ui.h +++ b/src/loading_ui.h @@ -4,6 +4,7 @@ #include #include +#include class background_pane; class ui_adaptor; diff --git a/src/magic.cpp b/src/magic.cpp index 848406fa93c9f..048e354f994f8 100644 --- a/src/magic.cpp +++ b/src/magic.cpp @@ -172,7 +172,7 @@ const skill_id spell_type::skill_default = skill_id( "spellcraft" ); // empty string const requirement_id spell_type::spell_components_default; const translation spell_type::message_default = to_translation( "You cast %s!" ); -const translation spell_type::sound_description_default = to_translation( "an explosion" ); +const translation spell_type::sound_description_default = to_translation( "an explosion." ); const sounds::sound_t spell_type::sound_type_default = sounds::sound_t::combat; const bool spell_type::sound_ambient_default = false; // empty string diff --git a/src/magic_enchantment.cpp b/src/magic_enchantment.cpp index a6656b2536937..e622543927a0d 100644 --- a/src/magic_enchantment.cpp +++ b/src/magic_enchantment.cpp @@ -101,6 +101,15 @@ namespace io case enchant_vals::mod::ARMOR_HEAT: return "ARMOR_HEAT"; case enchant_vals::mod::ARMOR_STAB: return "ARMOR_STAB"; case enchant_vals::mod::ARMOR_BULLET: return "ARMOR_BULLET"; + case enchant_vals::mod::EXTRA_BASH: return "EXTRA_BASH"; + case enchant_vals::mod::EXTRA_CUT: return "EXTRA_CUT"; + case enchant_vals::mod::EXTRA_STAB: return "EXTRA_STAB"; + case enchant_vals::mod::EXTRA_BULLET: return "EXTRA_BULLET"; + case enchant_vals::mod::EXTRA_HEAT: return "EXTRA_HEAT"; + case enchant_vals::mod::EXTRA_COLD: return "EXTRA_COLD"; + case enchant_vals::mod::EXTRA_ELEC: return "EXTRA_ELEC"; + case enchant_vals::mod::EXTRA_ACID: return "EXTRA_ACID"; + case enchant_vals::mod::EXTRA_BIO: return "EXTRA_BIO"; case enchant_vals::mod::ITEM_DAMAGE_PURE: return "ITEM_DAMAGE_PURE"; case enchant_vals::mod::ITEM_DAMAGE_BASH: return "ITEM_DAMAGE_BASH"; case enchant_vals::mod::ITEM_DAMAGE_CUT: return "ITEM_DAMAGE_CUT"; diff --git a/src/magic_enchantment.h b/src/magic_enchantment.h index a06ce0d184b0e..e4b09d5664653 100644 --- a/src/magic_enchantment.h +++ b/src/magic_enchantment.h @@ -78,6 +78,15 @@ enum class mod : int { ARMOR_ELEC, ARMOR_ACID, ARMOR_BIO, + EXTRA_BASH, + EXTRA_CUT, + EXTRA_STAB, + EXTRA_BULLET, + EXTRA_HEAT, + EXTRA_COLD, + EXTRA_ELEC, + EXTRA_ACID, + EXTRA_BIO, // effects for the item that has the enchantment ITEM_DAMAGE_PURE, ITEM_DAMAGE_BASH, diff --git a/src/magic_spell_effect.cpp b/src/magic_spell_effect.cpp index 53b0754ce546b..21941e69175ef 100644 --- a/src/magic_spell_effect.cpp +++ b/src/magic_spell_effect.cpp @@ -1525,8 +1525,8 @@ void spell_effect::effect_on_condition( const spell &sp, Creature &caster, const if( !sp.is_valid_target( caster, potential_target ) ) { continue; } - dialogue d( get_talker_for( creatures.creature_at( potential_target ) ), - get_talker_for( caster ) ); + Creature *victim = creatures.creature_at( potential_target ); + dialogue d( victim ? get_talker_for( victim ) : nullptr, get_talker_for( caster ) ); effect_on_condition_id eoc = effect_on_condition_id( sp.effect_data() ); if( eoc->type == eoc_type::ACTIVATION ) { eoc->activate( d ); diff --git a/src/map.cpp b/src/map.cpp index 8edd39558d047..758f3251308f2 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -2867,6 +2867,50 @@ bool map::has_nearby_ter( const tripoint &p, const ter_id &type, int radius ) return false; } +bool map::terrain_moppable( const tripoint &p ) +{ + // Moppable items ( spills ) + if( !has_flag( ter_furn_flag::TFLAG_LIQUIDCONT, p ) ) { + map_stack items = i_at( p ); + auto found = std::find_if( items.begin(), items.end(), []( const item & it ) { + return it.made_of( phase_id::LIQUID ); + } ); + + if( found != items.end() ) { + return true; + } + } + + // Moppable fields ( blood ) + for( const std::pair &pr : field_at( p ) ) { + if( pr.second.get_field_type().obj().phase == phase_id::LIQUID ) { + return true; + } + } + + // Moppable vehicles ( blood splatter ) + if( const optional_vpart_position vp = veh_at( p ) ) { + vehicle *const veh = &vp->vehicle(); + std::vector parts_here = veh->parts_at_relative( vp->mount(), true ); + for( int elem : parts_here ) { + if( veh->part( elem ).blood > 0 ) { + return true; + } + + vehicle_stack items = veh->get_items( elem ); + auto found = std::find_if( items.begin(), items.end(), []( const item & it ) { + return it.made_of( phase_id::LIQUID ); + } ); + + if( found != items.end() ) { + return true; + } + } + } + + return false; +} + bool map::mop_spills( const tripoint &p ) { bool retval = false; @@ -7138,6 +7182,7 @@ void map::produce_sap( const tripoint &p, const time_duration &time_since_last_a item sap( "maple_sap", calendar::turn ); sap.set_item_temperature( temp_to_kelvin( get_temperature( p ) ) ); + sap.charges = new_charges; // Is there a proper container? map_stack items = i_at( p ); @@ -7145,11 +7190,10 @@ void map::produce_sap( const tripoint &p, const time_duration &time_since_last_a if( it.will_spill() || it.is_watertight_container() ) { const int capacity = it.get_remaining_capacity_for_liquid( sap, true ); if( capacity > 0 ) { - new_charges = std::min( new_charges, capacity ); + sap.charges = std::min( sap.charges, capacity ); // The environment might have poisoned the sap with animals passing by, insects, leaves or contaminants in the ground sap.poison = one_in( 10 ) ? 1 : 0; - sap.charges = new_charges; it.put_in( sap, item_pocket::pocket_type::CONTAINER ); } diff --git a/src/map.h b/src/map.h index 17f0e3163eb6f..7ddaacca399fc 100644 --- a/src/map.h +++ b/src/map.h @@ -1131,10 +1131,16 @@ class map */ bool has_adjacent_furniture_with( const tripoint &p, const std::function &filter ); + /** + * Check for moppable fields/items at this location + * @param p the location + * @return true if anything is moppable here, false otherwise. + */ + bool terrain_moppable( const tripoint &p ); /** * Remove moppable fields/items at this location - * @param p the location - * @return true if anything moppable was there, false otherwise. + * @param p the location + * @return true if anything moppable was there, false otherwise. */ bool mop_spills( const tripoint &p ); /** diff --git a/src/mapgen.cpp b/src/mapgen.cpp index 4864b01d3205c..d08e2e6e9e55e 100644 --- a/src/mapgen.cpp +++ b/src/mapgen.cpp @@ -285,6 +285,11 @@ class mapgen_basic_container mapgen_function_ptr.obj->check(); } } + void check_consistency_with( const oter_t &ter ) const { + for( auto &mapgen_function_ptr : weights_ ) { + mapgen_function_ptr.obj->check_consistent_with( ter ); + } + } mapgen_parameters get_mapgen_params( mapgen_parameter_scope scope, const std::string &context ) const { @@ -359,6 +364,14 @@ class mapgen_factory bool has( const std::string &key ) const { return mapgens_.count( key ) != 0; } + const mapgen_basic_container *find( const std::string &key ) const { + auto it = mapgens_.find( key ); + if( it == mapgens_.end() ) { + return nullptr; + } else { + return &it->second; + } + } /// @see mapgen_basic_container::add int add( const std::string &key, const std::shared_ptr &ptr ) { return mapgens_[key].add( ptr ); @@ -674,6 +687,7 @@ mapgen_function_json::mapgen_function_json( const json_source_location &jsrcloc, , mapgen_function_json_base( jsrcloc, context ) , fill_ter( t_null ) , rotation( 0 ) + , fallback_predecessor_mapgen_( oter_str_id::NULL_ID() ) { m_offset.x = grid_offset.x * mapgensize.x; m_offset.y = grid_offset.y * mapgensize.y; @@ -3397,7 +3411,10 @@ bool mapgen_function_json::setup_internal( const JsonObject &jo ) predecessor_mapgen = oter_str_id::NULL_ID(); } - return fill_ter != t_null || predecessor_mapgen != oter_str_id::NULL_ID(); + jo.read( "fallback_predecessor_mapgen", fallback_predecessor_mapgen_ ); + + return fill_ter != t_null || predecessor_mapgen != oter_str_id::NULL_ID() || + fallback_predecessor_mapgen_ != oter_str_id::NULL_ID(); } bool mapgen_function_json_nested::setup_internal( const JsonObject &jo ) @@ -3619,6 +3636,20 @@ bool mapgen_function_json_base::setup_common( const JsonObject &jo ) void mapgen_function_json::check() const { check_common(); + + if( predecessor_mapgen != oter_str_id::NULL_ID() && expects_predecessor() ) { + debugmsg( "%s uses both predecessor_mapgen and expects_predecessor; these features are " + "incompatible", context_ ); + } +} + +void mapgen_function_json::check_consistent_with( const oter_t &ter ) const +{ + bool requires_predecessor = ter.has_flag( oter_flags::requires_predecessor ); + if( expects_predecessor() && !requires_predecessor ) { + debugmsg( "mapgen for oter_t %s expects a predecessor terrain but oter_type_t %s lacks the " + "REQUIRES_PREDECESSOR flag", ter.id.str(), ter.get_type_id().str() ); + } } void mapgen_function_json_nested::check() const @@ -3860,9 +3891,8 @@ void mapgen_function_json::generate( mapgendata &md ) } const oter_t &ter = *md.terrain_type(); - if( predecessor_mapgen != oter_str_id::NULL_ID() ) { - mapgendata predecessor_mapgen_dat( md, predecessor_mapgen ); - run_mapgen_func( predecessor_mapgen.id().str(), predecessor_mapgen_dat ); + auto do_predecessor_mapgen = [&]( mapgendata & predecessor_md ) { + run_mapgen_func( predecessor_md.terrain_type().id().str(), predecessor_md ); // Now we have to do some rotation shenanigans. We need to ensure that // our predecessor is not rotated out of alignment as part of rotating this location, @@ -3877,6 +3907,20 @@ void mapgen_function_json::generate( mapgendata &md ) if( ter.is_rotatable() || ter.is_linear() ) { m->rotate( ( -ter.get_rotation() + 4 ) % 4 ); } + }; + + if( predecessor_mapgen != oter_str_id::NULL_ID() ) { + mapgendata predecessor_md( md, predecessor_mapgen ); + do_predecessor_mapgen( predecessor_md ); + } else if( expects_predecessor() ) { + if( md.has_predecessor() ) { + mapgendata predecessor_md( md, md.last_predecessor() ); + predecessor_md.pop_last_predecessor(); + do_predecessor_mapgen( predecessor_md ); + } else { + mapgendata predecessor_md( md, fallback_predecessor_mapgen_ ); + do_predecessor_mapgen( predecessor_md ); + } } mapgendata md_with_params( md, get_args( md, mapgen_parameter_scope::omt ) ); @@ -3896,6 +3940,11 @@ void mapgen_function_json::generate( mapgendata &md ) } } +bool mapgen_function_json::expects_predecessor() const +{ + return fallback_predecessor_mapgen_ != oter_str_id::NULL_ID(); +} + mapgen_parameters mapgen_function_json::get_mapgen_params( mapgen_parameter_scope scope ) const { return parameters.params_for_scope( scope ); @@ -6966,6 +7015,13 @@ void update_mapgen_function_json::check() const check_common(); } +void check_mapgen_consistent_with( const std::string &key, const oter_t &ter ) +{ + if( const mapgen_basic_container *container = oter_mapgen.find( key ) ) { + container->check_consistency_with( ter ); + } +} + bool update_mapgen_function_json::setup_update( const JsonObject &jo ) { return setup_common( jo ); diff --git a/src/mapgen.h b/src/mapgen.h index b7e769438f3a9..8b2733b196f1c 100644 --- a/src/mapgen.h +++ b/src/mapgen.h @@ -44,6 +44,10 @@ class mapgen_function virtual void setup() { } // throws virtual void finalize_parameters() { } virtual void check() const { } + virtual void check_consistent_with( const oter_t & ) const { } + virtual bool expects_predecessor() const { + return false; + } virtual void generate( mapgendata & ) = 0; virtual mapgen_parameters get_mapgen_params( mapgen_parameter_scope ) const { return {}; @@ -400,7 +404,6 @@ class mapgen_function_json_base private: json_source_location jsrcloc; - std::string context_; protected: mapgen_function_json_base( const json_source_location &jsrcloc, const std::string &context ); virtual ~mapgen_function_json_base(); @@ -417,6 +420,7 @@ class mapgen_function_json_base mapgen_arguments get_args( const mapgendata &md, mapgen_parameter_scope ) const; + std::string context_; bool is_ready; point mapgensize; @@ -435,6 +439,8 @@ class mapgen_function_json : public mapgen_function_json_base, public virtual ma void setup() override; void finalize_parameters() override; void check() const override; + void check_consistent_with( const oter_t & ) const override; + bool expects_predecessor() const override; void generate( mapgendata & ) override; mapgen_parameters get_mapgen_params( mapgen_parameter_scope ) const override; mapgen_function_json( const json_source_location &jsrcloc, int w, const std::string &context, @@ -449,6 +455,7 @@ class mapgen_function_json : public mapgen_function_json_base, public virtual ma private: jmapgen_int rotation; + oter_str_id fallback_predecessor_mapgen_; }; class update_mapgen_function_json : public mapgen_function_json_base @@ -539,6 +546,10 @@ int register_mapgen_function( const std::string &key ); * Check that @p key is present in @ref oter_mapgen. */ bool has_mapgen_for( const std::string &key ); +/** + * Verify that the properties of a particular mapgen match the properties of + * its overmap_terrain */ +void check_mapgen_consistent_with( const std::string &key, const oter_t & ); /** * Check whether @p key is a valid update_mapgen id. */ diff --git a/src/mapgendata.cpp b/src/mapgendata.cpp index dd49d59e7d33b..ab437e40117fc 100644 --- a/src/mapgendata.cpp +++ b/src/mapgendata.cpp @@ -50,13 +50,15 @@ mapgendata::mapgendata( const tripoint_abs_omt &over, map &mp, const float densi , when_( when ) , mission_( miss ) , zlevel_( over.z() ) + , predecessors_( overmap_buffer.predecessors( over ) ) , t_above( overmap_buffer.ter( over + tripoint_above ) ) , t_below( overmap_buffer.ter( over + tripoint_below ) ) , region( overmap_buffer.get_settings( over ) ) , m( mp ) , default_groundcover( region.default_groundcover ) { - int rotation = terrain_type_->get_rotation(); + bool ignore_rotation = terrain_type_->has_flag( oter_flags::ignore_rotation_for_adjacency ); + int rotation = ignore_rotation ? 0 : terrain_type_->get_rotation(); auto set_neighbour = [&]( int index, direction dir ) { t_nesw[index] = overmap_buffer.ter( over + displace( dir ).rotate( rotation ) ); @@ -260,3 +262,26 @@ bool mapgendata::has_join( const cube_direction dir, const std::string &join_id auto it = joins.find( dir ); return it != joins.end() && it->second == join_id; } + +bool mapgendata::has_predecessor() const +{ + return !predecessors_.empty(); +} + +const oter_id &mapgendata::last_predecessor() const +{ + if( predecessors_.empty() ) { + debugmsg( "Tried to get predecessor when none available in mapgendata" ); + static const oter_id null( oter_str_id::NULL_ID() ); + return null; + } + return predecessors_.back(); +} + +void mapgendata::pop_last_predecessor() +{ + if( predecessors_.empty() ) { + debugmsg( "Tried to pop predecessor when none available in mapgendata" ); + } + predecessors_.pop_back(); +} diff --git a/src/mapgendata.h b/src/mapgendata.h index 50b57a3c2f65f..86d7ca1f5112a 100644 --- a/src/mapgendata.h +++ b/src/mapgendata.h @@ -69,6 +69,7 @@ class mapgendata ::mission *mission_; int zlevel_; mapgen_arguments mapgen_args_; + std::vector predecessors_; public: oter_id t_nesw[8]; @@ -179,6 +180,10 @@ class mapgendata bool has_join( const cube_direction, const std::string &join_id ) const; + bool has_predecessor() const; + const oter_id &last_predecessor() const; + void pop_last_predecessor(); + template Result get_arg( const std::string &name ) const { auto it = mapgen_args_.map.find( name ); diff --git a/src/mapsharing.h b/src/mapsharing.h index 0dafac43d7aab..ad6765ac184f8 100644 --- a/src/mapsharing.h +++ b/src/mapsharing.h @@ -4,6 +4,7 @@ #include #include +#include namespace MAP_SHARING { diff --git a/src/melee.cpp b/src/melee.cpp index 730ef6787c02a..459d9c0d3b46e 100644 --- a/src/melee.cpp +++ b/src/melee.cpp @@ -376,12 +376,16 @@ std::string Character::get_miss_reason() } void Character::roll_all_damage( bool crit, damage_instance &di, bool average, - const item &weap ) const + const item &weap, const Creature *target, const bodypart_id &bp ) const { - roll_bash_damage( crit, di, average, weap ); - roll_cut_damage( crit, di, average, weap ); - roll_stab_damage( crit, di, average, weap ); - roll_other_damage( crit, di, average, weap ); + float crit_mod = 1.f; + if( target != nullptr ) { + crit_mod = target->get_crit_factor( bp ); + } + roll_bash_damage( crit, di, average, weap, crit_mod ); + roll_cut_damage( crit, di, average, weap, crit_mod ); + roll_stab_damage( crit, di, average, weap, crit_mod ); + roll_other_damage( crit, di, average, weap, crit_mod ); } static void melee_train( Character &you, int lo, int hi, const item &weap ) @@ -655,8 +659,10 @@ bool Character::melee_attack_abstract( Creature &t, bool allow_special, if( critical_hit ) { melee::melee_stats.actual_crit_count += 1; } + // select target body part + const bodypart_id &target_bp = t.select_body_part( this, hit_spread ); damage_instance d; - roll_all_damage( critical_hit, d, false, *cur_weapon ); + roll_all_damage( critical_hit, d, false, *cur_weapon, &t, target_bp ); const bool has_force_technique = !force_technique.str().empty(); @@ -721,12 +727,8 @@ bool Character::melee_attack_abstract( Creature &t, bool allow_special, perform_special_attacks( t, dealt_special_dam ); } weakpoint_attack attack; - attack.source = this; attack.weapon = cur_weapon; - attack.is_melee = true; - attack.is_crit = critical_hit; - attack.wp_skill = melee_weakpoint_skill( *cur_weapon ); - t.deal_melee_hit( this, hit_spread, critical_hit, d, dealt_dam, attack ); + t.deal_melee_hit( this, hit_spread, critical_hit, d, dealt_dam, attack, &target_bp ); if( dealt_special_dam.type_damage( damage_type::CUT ) > 0 || dealt_special_dam.type_damage( damage_type::STAB ) > 0 || ( cur_weapon && cur_weapon->is_null() && ( dealt_dam.type_damage( damage_type::CUT ) > 0 || @@ -1104,7 +1106,7 @@ float Character::bonus_damage( bool random ) const } void Character::roll_bash_damage( bool crit, damage_instance &di, bool average, - const item &weap ) const + const item &weap, float crit_mod ) const { float bash_dam = 0.0f; @@ -1209,16 +1211,16 @@ void Character::roll_bash_damage( bool crit, damage_instance &di, bool average, // Finally, extra critical effects if( crit ) { - bash_mul *= 1.5f; + bash_mul *= 1.f + 0.5f * crit_mod; // 50% armor penetration - armor_mult = 0.5f; + armor_mult = 0.5f * crit_mod; } di.add_damage( damage_type::BASH, bash_dam, arpen, armor_mult, bash_mul ); } void Character::roll_cut_damage( bool crit, damage_instance &di, bool average, - const item &weap ) const + const item &weap, float crit_mod ) const { float cut_dam = mabuff_damage_bonus( damage_type::CUT ) + weap.damage_melee( damage_type::CUT ); float cut_mul = 1.0f; @@ -1284,16 +1286,16 @@ void Character::roll_cut_damage( bool crit, damage_instance &di, bool average, cut_mul *= mabuff_damage_mult( damage_type::CUT ); if( crit ) { - cut_mul *= 1.25f; - arpen += 5; - armor_mult = 0.75f; //25% armor penetration + cut_mul *= 1.f + 0.25f * crit_mod; + arpen += static_cast( 5.f * crit_mod ); + armor_mult = 1.f - 0.25f * crit_mod; //25% armor penetration } di.add_damage( damage_type::CUT, cut_dam, arpen, armor_mult, cut_mul ); } void Character::roll_stab_damage( bool crit, damage_instance &di, bool /*average*/, - const item &weap ) const + const item &weap, float crit_mod ) const { float cut_dam = mabuff_damage_bonus( damage_type::STAB ) + weap.damage_melee( damage_type::STAB ); @@ -1349,16 +1351,16 @@ void Character::roll_stab_damage( bool crit, damage_instance &di, bool /*average int arpen = mabuff_arpen_bonus( damage_type::STAB ); if( crit ) { // Critical damage bonus for stabbing scales with skill - stab_mul *= 1.0 + ( skill / 10.0 ); + stab_mul *= 1.0 + ( skill / 10.0 ) * crit_mod; // Stab criticals have extra %arpen - armor_mult = 0.66f; + armor_mult = 1.f - 0.34f * crit_mod; } di.add_damage( damage_type::STAB, cut_dam, arpen, armor_mult, stab_mul ); } void Character::roll_other_damage( bool /*crit*/, damage_instance &di, bool /*average*/, - const item &weap ) const + const item &weap, float /*crit_mod*/ ) const { std::map dt_map = get_dt_map(); @@ -2061,9 +2063,6 @@ void Character::perform_special_attacks( Creature &t, dealt_damage_instance &dea int hit_spread = t.deal_melee_attack( this, hit_roll() * 0.8 ); if( hit_spread >= 0 ) { weakpoint_attack attack; - attack.source = this; - attack.is_melee = true; - attack.wp_skill = melee_weakpoint_skill( null_item_reference() ); t.deal_melee_hit( this, hit_spread, false, att.damage, dealt_dam, attack ); if( !practiced ) { // Practice unarmed, at most once per combo diff --git a/src/mission.cpp b/src/mission.cpp index 93ff7c62bcfb6..0290757e78968 100644 --- a/src/mission.cpp +++ b/src/mission.cpp @@ -789,8 +789,9 @@ std::string mission::dialogue_for_topic( const std::string &in_topic ) const return response->second.translated(); } - return string_format( "Someone forgot to code this message id is %s, topic is %s!", - type->id.c_str(), topic.c_str() ); + debugmsg( "Someone forgot to code this message id is %s, topic is %s!", + type->id.c_str(), topic.c_str() ); + return ""; } mission::mission() diff --git a/src/mission_companion.cpp b/src/mission_companion.cpp index e1638f014f434..03dce13403240 100644 --- a/src/mission_companion.cpp +++ b/src/mission_companion.cpp @@ -2000,7 +2000,7 @@ npc_ptr talk_function::companion_choose( const std::map &required } } } - uilist_entry npc_entry = uilist_entry( x, can_do, x, npc_desc ); + uilist_entry npc_entry = uilist_entry( x, can_do, -1, npc_desc ); npc_menu.push_back( npc_entry ); x++; } diff --git a/src/monexamine.cpp b/src/monexamine.cpp index b70fce8f2b5c4..d5d28db7cf720 100644 --- a/src/monexamine.cpp +++ b/src/monexamine.cpp @@ -571,7 +571,8 @@ bool monexamine::pet_menu( monster &z ) remove_bat, insert_bat, check_bat, - attack + attack, + talk_to }; uilist amenu; @@ -665,6 +666,9 @@ bool monexamine::pet_menu( monster &z ) if( z.has_flag( MF_PAY_BOT ) ) { amenu.addentry( pay, true, 'f', _( "Manage your friendship with %s" ), pet_name ); } + if( !z.type->chat_topics.empty() ) { + amenu.addentry( talk_to, true, 'c', _( "Talk to %s" ), pet_name ); + } if( !z.has_flag( MF_RIDEABLE_MECH ) ) { if( z.has_flag( MF_PET_MOUNTABLE ) && player_character.can_mount( z ) ) { amenu.addentry( mount, true, 'r', _( "Mount %s" ), pet_name ); @@ -792,6 +796,9 @@ bool monexamine::pet_menu( monster &z ) get_player_character().melee_attack( z, true ); } break; + case talk_to: + get_avatar().talk_to( get_talker_for( z ) ); + break; default: break; } diff --git a/src/monster.cpp b/src/monster.cpp index 3d1e87edf39a0..73aaf5f1741bf 100644 --- a/src/monster.cpp +++ b/src/monster.cpp @@ -1539,9 +1539,7 @@ const weakpoint *monster::absorb_hit( const weakpoint_attack &attack, const body damage_instance &dam ) { resistances r = resistances( *this ); - weakpoint_attack attack_copy = attack; - attack_copy.target = this; - const weakpoint *wp = type->weakpoints.select_weakpoint( attack_copy ); + const weakpoint *wp = type->weakpoints.select_weakpoint( attack ); wp->apply_to( r ); for( auto &elem : dam.damage_units ) { add_msg_debug( debugmode::DF_MONSTER, "Dam Type: %s :: Ar Pen: %.1f :: Armor Mult: %.1f", @@ -1605,11 +1603,7 @@ bool monster::melee_attack( Creature &target, float accuracy ) dealt_damage_instance dealt_dam; if( hitspread >= 0 ) { - weakpoint_attack attack; - attack.source = this; - attack.is_melee = true; - attack.wp_skill = weakpoint_skill(); - target.deal_melee_hit( this, hitspread, false, damage, dealt_dam, attack ); + target.deal_melee_hit( this, hitspread, false, damage, dealt_dam ); } const int total_dealt = dealt_dam.total_damage(); @@ -3041,6 +3035,11 @@ void monster::on_hit( Creature *source, bodypart_id, } } } + if( source != nullptr ) { + if( Character *attacker = source->as_character() ) { + type->families.practice_hit( *attacker ); + } + } check_dead_state(); // TODO: Faction relations diff --git a/src/monster.h b/src/monster.h index 394205d272957..5631c01aa8655 100644 --- a/src/monster.h +++ b/src/monster.h @@ -332,7 +332,7 @@ class monster : public Creature const weakpoint *absorb_hit( const weakpoint_attack &attack, const bodypart_id &bp, damage_instance &dam ) override; // The monster's skill in hitting a weakpoint - float weakpoint_skill(); + float weakpoint_skill() const; bool block_hit( Creature *source, bodypart_id &bp_hit, damage_instance &d ) override; bool melee_attack( Creature &target ); diff --git a/src/monstergenerator.cpp b/src/monstergenerator.cpp index 30be9d0f2f4e4..95f3fca8cd3a0 100644 --- a/src/monstergenerator.cpp +++ b/src/monstergenerator.cpp @@ -733,6 +733,26 @@ void mtype::load( const JsonObject &jo, const std::string &src ) } } + if( !was_loaded || jo.has_array( "families" ) ) { + families.clear(); + families.load( jo.get_array( "families" ) ); + } else { + if( jo.has_object( "extend" ) ) { + JsonObject tmp = jo.get_object( "extend" ); + tmp.allow_omitted_members(); + if( tmp.has_array( "families" ) ) { + families.load( jo.get_array( "families" ) ); + } + } + if( jo.has_object( "delete" ) ) { + JsonObject tmp = jo.get_object( "delete" ); + tmp.allow_omitted_members(); + if( tmp.has_array( "families" ) ) { + families.remove( jo.get_array( "families" ) ); + } + } + } + optional( jo, was_loaded, "bleed_rate", bleed_rate, 100 ); optional( jo, was_loaded, "petfood", petfood ); diff --git a/src/mtype.h b/src/mtype.h index f7284625bf91e..24d969a752c54 100644 --- a/src/mtype.h +++ b/src/mtype.h @@ -341,6 +341,7 @@ struct mtype { int armor_acid = -1; /** innate armor vs. acid */ int armor_fire = -1; /** innate armor vs. fire */ ::weakpoints weakpoints; + weakpoint_families families; // Pet food category this monster is in pet_food_data petfood; diff --git a/src/mutation.cpp b/src/mutation.cpp index 83c76fb401b11..0cdeb04c95c98 100644 --- a/src/mutation.cpp +++ b/src/mutation.cpp @@ -35,6 +35,7 @@ #include "pimpl.h" #include "player_activity.h" #include "rng.h" +#include "text_snippets.h" #include "translations.h" #include "units.h" @@ -665,17 +666,8 @@ void Character::activate_mutation( const trait_id &mut ) add_msg_if_player( m_good, _( "You focus, and with a pleasant splitting feeling, birth a new slimespring!" ) ); slime->friendly = -1; - if( one_in( 3 ) ) { - add_msg_if_player( m_good, - //~ Usual enthusiastic slimespring small voices! :D - _( "wow! you look just like me! we should look out for each other!" ) ); - } else if( one_in( 2 ) ) { - //~ Usual enthusiastic slimespring small voices! :D - add_msg_if_player( m_good, _( "come on, big me, let's go!" ) ); - } else { - //~ Usual enthusiastic slimespring small voices! :D - add_msg_if_player( m_good, _( "we're a team, we've got this!" ) ); - } + add_msg_if_player( m_good, SNIPPET.random_from_category( "slime_generate" ).value_or( + translation() ).translated() ); tdata.powered = false; return; } else if( mut == trait_NAUSEA || mut == trait_VOMITOUS ) { @@ -746,7 +738,7 @@ void Character::activate_mutation( const trait_id &mut ) int npower; if( query_int( npower, "Modify bionic power by how much? (Values are in millijoules)" ) ) { mod_power_level( units::from_millijoule( npower ) ); - add_msg_if_player( m_good, "Bionic power increased by %dmJ.", npower ); + add_msg_if_player( m_good, _( "Bionic power increased by %dmJ." ), npower ); tdata.powered = false; } return; diff --git a/src/mutation_ui.cpp b/src/mutation_ui.cpp index d04d4397e19d2..61c10ae7dfe58 100644 --- a/src/mutation_ui.cpp +++ b/src/mutation_ui.cpp @@ -41,6 +41,7 @@ enum class mutation_menu_mode : int { activating, examining, reassigning, + hidding, }; static void show_mutations_titlebar( const catacurses::window &window, @@ -62,9 +63,14 @@ static void show_mutations_titlebar( const catacurses::window &window, c_light_blue ) + " " + shortcut_desc( _( "%s to activate mutation, " ), ctxt.get_desc( "TOGGLE_EXAMINE" ) ); } + if( menu_mode == mutation_menu_mode::hidding ) { + desc += colorize( _( "Hidding" ), c_cyan ) + " " + shortcut_desc( _( "%s to activate mutation, " ), + ctxt.get_desc( "TOGGLE_EXAMINE" ) ); + } if( menu_mode != mutation_menu_mode::reassigning ) { desc += shortcut_desc( _( "%s to reassign invlet, " ), ctxt.get_desc( "REASSIGN" ) ); } + desc += shortcut_desc( _( "%s to toggle sprite visibility, " ), ctxt.get_desc( "TOGGLE_SPRITE" ) ); desc += shortcut_desc( _( "%s to change keybindings." ), ctxt.get_desc( "HELP_KEYBINDINGS" ) ); // NOLINTNEXTLINE(cata-use-named-point-constants) fold_and_print( window, point( 1, 0 ), getmaxx( window ) - 1, c_white, desc ); @@ -172,6 +178,7 @@ void avatar::power_mutations() ctxt.register_updown(); ctxt.register_action( "ANY_INPUT" ); ctxt.register_action( "TOGGLE_EXAMINE" ); + ctxt.register_action( "TOGGLE_SPRITE" ); ctxt.register_action( "REASSIGN" ); ctxt.register_action( "HELP_KEYBINDINGS" ); ctxt.register_action( "QUIT" ); @@ -215,6 +222,10 @@ void avatar::power_mutations() type = has_base_trait( passive[i] ) ? c_cyan : c_light_cyan; mvwprintz( wBio, point( 2, list_start_y + i - scroll_position ), type, "%c %s", td.key, md.name() ); + if( !td.show_sprite ) { + //~ Hint: Letter to show which mutation is Hidden in the mutation menu + wprintz( wBio, c_cyan, _( " H" ) ); + } } } @@ -352,6 +363,9 @@ void avatar::power_mutations() // Describing mutations, not activating them! examine_id = mut_id; break; + case mutation_menu_mode::hidding: + my_mutations[mut_id].show_sprite = !my_mutations[mut_id].show_sprite; + break; } handled = true; } else if( mutation_chars.valid( ch ) ) { @@ -375,6 +389,9 @@ void avatar::power_mutations() menu_mode = menu_mode == mutation_menu_mode::activating ? mutation_menu_mode::examining : mutation_menu_mode::activating; examine_id = cata::nullopt; + } else if( action == "TOGGLE_SPRITE" ) { + menu_mode = mutation_menu_mode::hidding; + examine_id = cata::nullopt; } else if( action == "QUIT" ) { exit = true; } diff --git a/src/name.h b/src/name.h index e1218974a66ca..1038861aa05f6 100644 --- a/src/name.h +++ b/src/name.h @@ -3,6 +3,7 @@ #define CATA_SRC_NAME_H #include +#include template struct enum_traits; diff --git a/src/npc.cpp b/src/npc.cpp index 94316718344fa..40a4ca4a2e36f 100644 --- a/src/npc.cpp +++ b/src/npc.cpp @@ -3376,8 +3376,9 @@ std::string npc::describe_mission() const case NPC_MISSION_NULL: return myclass.obj().get_job_description(); default: - return string_format( "ERROR: Someone forgot to code an npc_mission text for " - "mission: %d.", static_cast( mission ) ); + debugmsg( "ERROR: Someone forgot to code an npc_mission text for mission: %d.", + static_cast( mission ) ); + return ""; } // switch (mission) } diff --git a/src/npctalk.cpp b/src/npctalk.cpp index 2186000e7b9e5..71276f987e5fc 100644 --- a/src/npctalk.cpp +++ b/src/npctalk.cpp @@ -54,9 +54,11 @@ #include "npctalk.h" #include "npctrade.h" #include "output.h" +#include "overmapbuffer.h" #include "pimpl.h" #include "player_activity.h" #include "point.h" +#include "popup.h" #include "recipe.h" #include "recipe_groups.h" #include "ret_val.h" @@ -907,8 +909,8 @@ std::string dialogue::dynamic_line( const talk_topic &the_topic ) const } } - return string_format( "I don't know what to say for %s. (BUG (npctalk.cpp:dynamic_line))", - topic ); + debugmsg( "I don't know what to say for %s. (BUG (npctalk.cpp:dynamic_line))", topic ); + return ""; } void dialogue::apply_speaker_effects( const talk_topic &the_topic ) @@ -2052,6 +2054,30 @@ void talk_effect_fun_t::set_mapgen_update( const JsonObject &jo, const std::stri }; } +void talk_effect_fun_t::set_npc_goal( const JsonObject &jo, const std::string &member ) +{ + mission_target_params dest_params = mission_util::parse_mission_om_target( jo.get_object( + member ) ); + function = [dest_params]( const dialogue & d ) { + npc *guy = d.actor( true )->get_npc(); + if( guy ) { + tripoint_abs_omt destination = mission_util::get_om_terrain_pos( dest_params ); + guy->goal = destination; + guy->omt_path = overmap_buffer.get_travel_path( guy->global_omt_location(), guy->goal, + overmap_path_params::for_npc() ); + if( destination == tripoint_abs_omt() || destination == overmap::invalid_tripoint || + guy->omt_path.empty() ) { + guy->goal = npc::no_goal_point; + guy->omt_path.clear(); + return; + } + guy->set_mission( NPC_MISSION_TRAVELLING ); + guy->guard_pos = cata::nullopt; + guy->set_attitude( NPCATT_NULL ); + } + }; +} + void talk_effect_fun_t::set_bulk_trade_accept( bool is_trade, int quantity, bool is_npc ) { function = [is_trade, is_npc, quantity]( const dialogue & d ) { @@ -2198,7 +2224,7 @@ void talk_effect_fun_t::set_message( const JsonObject &jo, const std::string &me function = [message, outdoor_only, sound, snippet, same_snippet, type, popup_msg, is_npc]( const dialogue & d ) { Character *target = d.actor( is_npc )->get_character(); - if( !target ) { + if( !target || target->is_npc() ) { return; } std::string translated_message; @@ -2234,7 +2260,12 @@ void talk_effect_fun_t::set_message( const JsonObject &jo, const std::string &me } } if( popup_msg ) { - popup( translated_message, PF_NONE ); + const auto new_win = [translated_message]() { + query_popup pop; + pop.message( "%s", translated_message ); + return pop.get_window(); + }; + scrollable_text( new_win, "", replace_colors( translated_message ) ); } else { target->add_msg_if_player( type, translated_message ); } @@ -2356,6 +2387,22 @@ void talk_effect_fun_t::set_cast_spell( const JsonObject &jo, const std::string }; } +void talk_effect_fun_t::set_lightning() +{ + function = []( const dialogue & ) { + if( get_player_character().posz() >= 0 ) { + get_weather().lightning_active = true; + } + }; +} + +void talk_effect_fun_t::set_next_weather() +{ + function = []( const dialogue & ) { + get_weather().set_nextweather( calendar::turn ); + }; +} + void talk_effect_fun_t::set_arithmetic( const JsonObject &jo, const std::string &member ) { JsonArray objects = jo.get_array( member ); @@ -2818,7 +2865,7 @@ void talk_effect_fun_t::set_make_sound( const JsonObject &jo, const std::string } void talk_effect_fun_t::set_queue_effect_on_condition( const JsonObject &jo, - const std::string &member ) + const std::string &member, bool is_npc ) { std::vector eocs; for( JsonValue jv : jo.get_array( member ) ) { @@ -2828,30 +2875,62 @@ void talk_effect_fun_t::set_queue_effect_on_condition( const JsonObject &jo, 0_seconds ); duration_or_var dov_time_in_future_max = get_duration_or_var( jo, "time_in_future_max", false, 0_seconds ); - function = [dov_time_in_future_min, dov_time_in_future_max, eocs]( const dialogue & d ) { + bool affect_nearby_npcs = jo.get_bool( "affect_nearby_npcs", false ); + std::vector names = jo.get_string_array( "npcs_to_affect" ); + cata::optional npc_range; + if( jo.has_int( "npc_range" ) ) { + npc_range = jo.get_int( "npc_range" ); + } + + bool npc_must_see = jo.get_bool( "npc_must_see", false ); + function = [dov_time_in_future_min, dov_time_in_future_max, eocs, names, npc_must_see, npc_range, + affect_nearby_npcs, is_npc]( const dialogue & d ) { time_duration max = dov_time_in_future_max.evaluate( d.actor( false ) ); if( max > 0_seconds ) { time_duration time_in_future = rng( dov_time_in_future_min.evaluate( d.actor( false ) ), max ); for( const effect_on_condition_id &eoc : eocs ) { if( eoc->type == eoc_type::ACTIVATION ) { - effect_on_conditions::queue_effect_on_condition( time_in_future, eoc ); + effect_on_conditions::queue_effect_on_condition( time_in_future, eoc, get_player_character() ); } else { debugmsg( "Cannot queue a non activation effect_on_condition." ); } } } else { - Creature *creature_alpha = d.has_alpha ? d.actor( false )->get_creature() : nullptr; - item_location *item_alpha = d.has_alpha ? d.actor( false )->get_item() : nullptr; - Creature *creature_beta = d.has_beta ? d.actor( true )->get_creature() : nullptr; - item_location *item_beta = d.has_beta ? d.actor( true )->get_item() : nullptr; - dialogue newDialog( - ( creature_alpha ) ? get_talker_for( creature_alpha ) : ( item_alpha ) ? get_talker_for( - item_alpha ) : nullptr, - ( creature_beta ) ? get_talker_for( creature_beta ) : ( item_beta ) ? get_talker_for( - item_beta ) : nullptr - ); - for( const effect_on_condition_id &eoc : eocs ) { - eoc->activate( newDialog ); + if( affect_nearby_npcs ) { + tripoint actor_pos = d.actor( is_npc )->pos(); + const std::vector available = g->get_npcs_if( [npc_must_see, npc_range, actor_pos, + names]( const npc & guy ) { + bool name_valid = names.empty(); + for( const std::string &name : names ) { + if( name == guy.name ) { + name_valid = true; + break; + } + } + return name_valid && ( !npc_range.has_value() || actor_pos.z == guy.posz() ) && ( !npc_must_see || + guy.sees( actor_pos ) ) && + ( !npc_range.has_value() || rl_dist( actor_pos, guy.pos() ) <= npc_range.value() ); + } ); + for( npc *target : available ) { + for( const effect_on_condition_id &eoc : eocs ) { + dialogue newDialog( get_talker_for( target ), nullptr ); + eoc->activate( newDialog ); + } + } + } else { + Creature *creature_alpha = d.has_alpha ? d.actor( false )->get_creature() : nullptr; + item_location *item_alpha = d.has_alpha ? d.actor( false )->get_item() : nullptr; + Creature *creature_beta = d.has_beta ? d.actor( true )->get_creature() : nullptr; + item_location *item_beta = d.has_beta ? d.actor( true )->get_item() : nullptr; + dialogue newDialog( + ( creature_alpha ) ? get_talker_for( creature_alpha ) : ( item_alpha ) ? get_talker_for( + item_alpha ) : nullptr, + ( creature_beta ) ? get_talker_for( creature_beta ) : ( item_beta ) ? get_talker_for( + item_beta ) : nullptr + ); + for( const effect_on_condition_id &eoc : eocs ) { + eoc->activate( newDialog ); + } } } }; @@ -3255,6 +3334,8 @@ void talk_effect_t::parse_sub_effect( const JsonObject &jo ) } else if( jo.has_string( "set_npc_cbm_recharge_rule" ) ) { const std::string setting = jo.get_string( "set_npc_cbm_recharge_rule" ); subeffect_fun.set_npc_cbm_recharge_rule( setting ); + } else if( jo.has_member( "npc_set_goal" ) ) { + subeffect_fun.set_npc_goal( jo, "npc_set_goal" ); } else if( jo.has_member( "mapgen_update" ) ) { subeffect_fun.set_mapgen_update( jo, "mapgen_update" ); } else if( jo.has_string( "u_buy_monster" ) ) { @@ -3294,7 +3375,11 @@ void talk_effect_t::parse_sub_effect( const JsonObject &jo ) } else if( jo.has_member( "npc_make_sound" ) ) { subeffect_fun.set_make_sound( jo, "npc_make_sound", true ); } else if( jo.has_array( "set_queue_effect_on_condition" ) ) { - subeffect_fun.set_queue_effect_on_condition( jo, "set_queue_effect_on_condition" ); + subeffect_fun.set_queue_effect_on_condition( jo, "set_queue_effect_on_condition", false ); + } else if( jo.has_array( "u_set_queue_eoc" ) ) { + subeffect_fun.set_queue_effect_on_condition( jo, "u_set_queue_eoc", false ); + } else if( jo.has_array( "npc_set_queue_eoc" ) ) { + subeffect_fun.set_queue_effect_on_condition( jo, "npc_set_queue_eoc", true ); } else if( jo.has_array( "set_weighted_list_eocs" ) ) { subeffect_fun.set_weighted_list_eocs( jo, "set_weighted_list_eocs" ); } else if( jo.has_member( "u_mod_healthy" ) ) { @@ -3360,6 +3445,7 @@ void talk_effect_t::parse_string_effect( const std::string &effect_id, const Jso WRAP( do_fishing ), WRAP( do_construction ), WRAP( do_mining ), + WRAP( do_mopping ), WRAP( do_read ), WRAP( do_butcher ), WRAP( do_farming ), @@ -3420,7 +3506,6 @@ void talk_effect_t::parse_string_effect( const std::string &effect_id, const Jso WRAP( npc_die ), WRAP( npc_thankful ), WRAP( clear_overrides ), - WRAP( lightning ), WRAP( do_disassembly ), WRAP( nothing ) #undef WRAP @@ -3442,6 +3527,18 @@ void talk_effect_t::parse_string_effect( const std::string &effect_id, const Jso return; } + if( effect_id == "lightning" ) { + subeffect_fun.set_lightning(); + set_effect( subeffect_fun ); + return; + } + + if( effect_id == "next_weather" ) { + subeffect_fun.set_next_weather(); + set_effect( subeffect_fun ); + return; + } + if( effect_id == "npc_gets_item" || effect_id == "npc_gets_item_to_use" ) { bool to_use = effect_id == "npc_gets_item_to_use"; subeffect_fun.set_npc_gets_item( to_use ); diff --git a/src/npctalk.h b/src/npctalk.h index b1460118c68ce..a01f00f0d25d3 100644 --- a/src/npctalk.h +++ b/src/npctalk.h @@ -41,6 +41,7 @@ void start_trade( npc & ); void sort_loot( npc & ); void do_construction( npc & ); void do_mining( npc & ); +void do_mopping( npc & ); void do_read( npc & ); void do_chop_plank( npc & ); void do_vehicle_deconstruct( npc & ); @@ -69,7 +70,6 @@ void deny_train( npc & ); // p gets "asked_to_train" void deny_personal_info( npc & ); // p gets "asked_personal_info" void hostile( npc & ); // p turns hostile to u void flee( npc & ); -void lightning( npc &p ); void leave( npc & ); // p becomes indifferent void stop_following( npc & ); void stranger_neutral( npc & ); // p is now neutral towards you diff --git a/src/npctalk_funcs.cpp b/src/npctalk_funcs.cpp index 99d60e9badef4..17329542df745 100644 --- a/src/npctalk_funcs.cpp +++ b/src/npctalk_funcs.cpp @@ -54,6 +54,7 @@ #include "player_activity.h" #include "point.h" #include "rng.h" +#include "text_snippets.h" #include "translations.h" #include "ui.h" #include "viewer.h" @@ -67,6 +68,7 @@ static const activity_id ACT_MULTIPLE_CONSTRUCTION( "ACT_MULTIPLE_CONSTRUCTION" static const activity_id ACT_MULTIPLE_FARM( "ACT_MULTIPLE_FARM" ); static const activity_id ACT_MULTIPLE_FISH( "ACT_MULTIPLE_FISH" ); static const activity_id ACT_MULTIPLE_MINE( "ACT_MULTIPLE_MINE" ); +static const activity_id ACT_MULTIPLE_MOP( "ACT_MULTIPLE_MOP" ); static const activity_id ACT_VEHICLE_DECONSTRUCTION( "ACT_VEHICLE_DECONSTRUCTION" ); static const activity_id ACT_VEHICLE_REPAIR( "ACT_VEHICLE_REPAIR" ); static const activity_id ACT_WAIT_NPC( "ACT_WAIT_NPC" ); @@ -237,6 +239,11 @@ void talk_function::do_mining( npc &p ) p.assign_activity( ACT_MULTIPLE_MINE ); } +void talk_function::do_mopping( npc &p ) +{ + p.assign_activity( ACT_MULTIPLE_MOP ); +} + void talk_function::do_read( npc &p ) { p.do_npc_read(); @@ -689,6 +696,9 @@ void talk_function::morale_chat_activity( npc &p ) const int moves = to_moves( 10_minutes ); player_character.assign_activity( ACT_SOCIALIZE, moves ); player_character.activity.str_values.push_back( p.get_name() ); + if( one_in( 3 ) ) { + p.say( SNIPPET.random_from_category( "npc_socialize" ).value_or( translation() ).translated() ); + } add_msg( m_good, _( "That was a pleasant conversation with %s." ), p.disp_name() ); player_character.add_morale( MORALE_CHAT, rng( 3, 10 ), 10, 200_minutes, 5_minutes / 2 ); } @@ -831,13 +841,6 @@ void talk_function::flee( npc &p ) p.set_attitude( NPCATT_FLEE ); } -void talk_function::lightning( npc & ) -{ - if( get_player_character().posz() >= 0 ) { - get_weather().lightning_active = true; - } -} - void talk_function::leave( npc &p ) { add_msg( _( "%s leaves." ), p.get_name() ); diff --git a/src/npctrade.cpp b/src/npctrade.cpp index ad58b3e39245d..8c6d4b6ab9d58 100644 --- a/src/npctrade.cpp +++ b/src/npctrade.cpp @@ -83,7 +83,7 @@ std::list npc_trading::transfer_items( std::vector &stuff, C } sorted_stuff.insert( sorted_stuff.begin(), unsorted_stuff.begin(), unsorted_stuff.end() ); - for( item_pricing ip : sorted_stuff ) { + for( item_pricing &ip : sorted_stuff ) { if( ip.loc.get_item() == nullptr ) { DebugLog( D_ERROR, D_NPC ) << "Null item being traded in npc_trading::transfer_items"; @@ -647,6 +647,9 @@ bool trading_window::perform_trade( npc &np, const std::string &deal ) if( np.mission == NPC_MISSION_SHOPKEEP ) { volume_left = 5'000_liter; weight_left = 5'000_kilogram; + } else { + volume_left = np.volume_capacity() - np.volume_carried(); + weight_left = np.weight_capacity() - np.weight_carried(); } input_context ctxt( "NPC_TRADE" ); @@ -706,6 +709,8 @@ bool trading_window::perform_trade( npc &np, const std::string &deal ) } else if( volume_left < 0_ml || weight_left < 0_gram ) { // Make sure NPC doesn't go over allowed volume popup( _( "%s can't carry all that." ), np.get_name() ); + } else if( np.mission != NPC_MISSION_SHOPKEEP && !npc_can_fit_items( np ) ) { + popup( _( "%s doesn't have the appropriate pockets to accept that." ), np.get_name() ); } else if( calc_npc_owes_you( np ) < your_balance ) { // NPC is happy with the trade, but isn't willing to remember the whole debt. const bool trade_ok = query_yn( @@ -855,3 +860,37 @@ bool trading_window::npc_will_accept_trade( const npc &np ) const { return np.will_exchange_items_freely() || your_balance + np.max_credit_extended() >= 0; } + +bool trading_window::npc_can_fit_items( const npc &np ) const +{ + std::vector to_store; + std::vector avail_pockets; + for( const item_pricing &ip : yours ) { + if( ip.selected ) { + to_store.push_back( *ip.loc ); + } + } + for( const item &it : np.worn ) { + if( it.is_container() || it.is_holster() ) { + avail_pockets.push_back( it ); + } + } + if( avail_pockets.empty() ) { + return false; + } + for( item &i : to_store ) { + bool item_stored = false; + for( item &pkt : avail_pockets ) { + const units::volume pvol = pkt.max_containable_volume(); + if( pkt.can_holster( i ) || ( pkt.can_contain( i ).success() && pvol > i.volume() ) ) { + pkt.put_in( i, item_pocket::pocket_type::CONTAINER ); + item_stored = true; + break; + } + } + if( !item_stored ) { + return false; + } + } + return true; +} diff --git a/src/npctrade.h b/src/npctrade.h index 5ddde36cb2198..e4e37b0a9df78 100644 --- a/src/npctrade.h +++ b/src/npctrade.h @@ -80,6 +80,7 @@ class trading_window item_pricing &ip, bool max = false ); int get_var_trade( const item &it, int total_count ); bool npc_will_accept_trade( const npc &np ) const; + bool npc_can_fit_items( const npc &np ) const; int calc_npc_owes_you( const npc &np ) const; }; diff --git a/src/omdata.h b/src/omdata.h index e9a9e3eea23af..83f590b255b2c 100644 --- a/src/omdata.h +++ b/src/omdata.h @@ -56,6 +56,7 @@ enum class type : int { east, south, west, + last }; /** For the purposes of iteration. */ @@ -65,15 +66,18 @@ const size_t size = all.size(); /** Number of bits needed to store directions. */ const size_t bits = static_cast( -1 ) >> ( CHAR_BIT *sizeof( size_t ) - size ); -/** Identifier for serialization purposes. */ -const std::string &id( type dir ); - /** Get Human readable name of a direction */ std::string name( type dir ); /** Various rotations. */ point rotate( const point &p, type dir ); tripoint rotate( const tripoint &p, type dir ); +template +auto rotate( const coords::coord_point &p, type dir ) +-> coords::coord_point +{ + return coords::coord_point { rotate( p.raw(), dir ) }; +} uint32_t rotate_symbol( uint32_t sym, type dir ); /** Returns point(0, 0) displaced in specified direction by a specified distance @@ -103,6 +107,11 @@ bool are_parallel( type dir1, type dir2 ); } // namespace om_direction +template<> +struct enum_traits { + static constexpr om_direction::type last = om_direction::type::last; +}; + class overmap_land_use_code { public: @@ -163,8 +172,10 @@ enum class oter_flags : int { no_rotate, // this tile doesn't have four rotated versions (north, east, south, west) river_tile, has_sidewalk, + ignore_rotation_for_adjacency, line_drawing, // does this tile have 8 versions, including straights, bends, tees, and a fourway? subway_connection, + requires_predecessor, lake, lake_shore, ravine, diff --git a/src/options.cpp b/src/options.cpp index 3cca62749d1ac..e43000835cb39 100644 --- a/src/options.cpp +++ b/src/options.cpp @@ -1218,9 +1218,16 @@ void options_manager::add_options_general() get_option( "AUTO_MINING" ).setPrerequisite( "AUTO_FEATURES" ); + add( "AUTO_MOPPING", "general", to_translation( "Auto mopping" ), + to_translation( "If true, enables automatic use of wielded mops to clean surronding terrain." ), + false + ); + + get_option( "AUTO_MOPPING" ).setPrerequisite( "AUTO_FEATURES" ); + add( "AUTO_FORAGING", "general", to_translation( "Auto foraging" ), - to_translation( "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage bushes. - Trees: Only forage trees. - Everything: Forage bushes, trees, and everything else including flowers, cattails etc." ), - { { "off", to_translation( "options", "Disabled" ) }, { "bushes", to_translation( "Bushes" ) }, { "trees", to_translation( "Trees" ) }, { "both", to_translation( "Everything" ) } }, + to_translation( "Action to perform when 'Auto foraging' is enabled. Bushes: Only forage bushes. - Trees: Only forage trees. - Crops: Only forage crops. - Everything: Forage bushes, trees, crops, and everything else including flowers, cattails etc." ), + { { "off", to_translation( "options", "Disabled" ) }, { "bushes", to_translation( "Bushes" ) }, { "trees", to_translation( "Trees" ) }, { "crops", to_translation( "Crops" ) }, { "all", to_translation( "Everything" ) } }, "off" ); @@ -1546,8 +1553,17 @@ void options_manager::add_options_interface() * `Shift` + `Cursor Right` -> `9` = `Move Northeast`; * `Ctrl` + `Cursor Right` -> `1` = `Move Southwest`. + # Mode 4: Diagonal Lock + + * Holding Ctrl or Shift locks movement to diagonal only + * This ensures that pressing ↑ + → will results in ↗ and not ↑ or → + * Reject input if it doesn't make sense + * Example 1: Press → while holding Shift and ↑ results in ↗ + * Example 2: Press → while holding Shift, ↑ and ← results in input rejection + * Example 3: Press → while holding Shift and ← results in input rejection + */ - to_translation( "Allows diagonal movement with cursor keys using CTRL and SHIFT modifiers. Diagonal movement action keys are taken from keybindings, so you need these to be configured." ), { { "none", to_translation( "None" ) }, { "mode1", to_translation( "Mode 1: Numpad Emulation" ) }, { "mode2", to_translation( "Mode 2: CW/CCW" ) }, { "mode3", to_translation( "Mode 3: L/R Tilt" ) } }, + to_translation( "Allows diagonal movement with cursor keys using CTRL and SHIFT modifiers. Diagonal movement action keys are taken from keybindings, so you need these to be configured." ), { { "none", to_translation( "None" ) }, { "mode1", to_translation( "Mode 1: Numpad Emulation" ) }, { "mode2", to_translation( "Mode 2: CW/CCW" ) }, { "mode3", to_translation( "Mode 3: L/R Tilt" ) }, { "mode4", to_translation( "Mode 4: Diagonal Lock" ) } }, "none", COPT_CURSES_HIDE ); add_empty_line(); diff --git a/src/overlay_ordering.h b/src/overlay_ordering.h index 79d85981957b9..c3ec8ffd86e9c 100644 --- a/src/overlay_ordering.h +++ b/src/overlay_ordering.h @@ -4,6 +4,7 @@ #include #include +#include class JsonObject; diff --git a/src/overmap.cpp b/src/overmap.cpp index d9bfebd4edda8..5f59d6fd1bab8 100644 --- a/src/overmap.cpp +++ b/src/overmap.cpp @@ -88,6 +88,60 @@ static const oter_str_id river_center( "river_center" ); const oter_type_t oter_type_t::null_type{}; +namespace io +{ + +template<> +std::string enum_to_string( overmap_special_subtype data ) +{ + switch( data ) { + // *INDENT-OFF* + case overmap_special_subtype::fixed: return "fixed"; + case overmap_special_subtype::mutable_: return "mutable"; + // *INDENT-ON* + case overmap_special_subtype::last: + break; + } + cata_fatal( "Invalid overmap_special_subtype" ); +} + +template<> +std::string enum_to_string( om_direction::type d ) +{ + switch( d ) { + // *INDENT-OFF* + case om_direction::type::north: return "north"; + case om_direction::type::east: return "east"; + case om_direction::type::south: return "south"; + case om_direction::type::west: return "west"; + // *INDENT-ON* + case om_direction::type::invalid: + case om_direction::type::last: + break; + } + cata_fatal( "Invalid om_direction" ); +} + +template<> +std::string enum_to_string( cube_direction data ) +{ + switch( data ) { + // *INDENT-OFF* + case cube_direction::north: return "north"; + case cube_direction::east: return "east"; + case cube_direction::south: return "south"; + case cube_direction::west: return "west"; + case cube_direction::above: return "above"; + case cube_direction::below: return "below"; + // *INDENT-ON* + case cube_direction::last: + break; + } + cata_fatal( "Invalid cube_direction" ); +} + +} // namespace io + namespace om_lines { @@ -173,6 +227,7 @@ static size_t from_dir( om_direction::type dir ) case om_direction::type::west: return 10; // ew case om_direction::type::invalid: + case om_direction::type::last: debugmsg( "Can't retrieve a line from the invalid direction." ); } @@ -688,7 +743,7 @@ oter_t::oter_t( const oter_type_t &type ) : oter_t::oter_t( const oter_type_t &type, om_direction::type dir ) : type( &type ), - id( type.id.str() + "_" + om_direction::id( dir ) ), + id( type.id.str() + "_" + io::enum_to_string( dir ) ), dir( dir ), symbol( om_direction::rotate_symbol( type.symbol, dir ) ), symbol_alt( om_direction::rotate_symbol( type.land_use_code ? type.land_use_code->symbol : @@ -812,7 +867,7 @@ void overmap_terrains::load( const JsonObject &jo, const std::string &src ) void overmap_terrains::check_consistency() { - for( const auto &elem : terrain_types.get_all() ) { + for( const oter_type_t &elem : terrain_types.get_all() ) { elem.check(); if( elem.static_spawns.group && !elem.static_spawns.group.is_valid() ) { debugmsg( "Invalid monster group \"%s\" in spawns of \"%s\".", elem.static_spawns.group.c_str(), @@ -820,7 +875,7 @@ void overmap_terrains::check_consistency() } } - for( const auto &elem : terrains.get_all() ) { + for( const oter_t &elem : terrains.get_all() ) { const std::string mid = elem.get_mapgen_id(); if( mid.empty() ) { @@ -834,6 +889,7 @@ void overmap_terrains::check_consistency() debugmsg( "Mapgen terrain \"%s\" exists in both JSON and a hardcoded function. Consider removing the latter.", mid.c_str() ); } + check_mapgen_consistent_with( mid, elem ); } else if( !exists_hardcoded ) { debugmsg( "No mapgen terrain exists for \"%s\".", mid.c_str() ); } @@ -916,20 +972,7 @@ overmap_special_terrain::overmap_special_terrain( cube_direction operator+( const cube_direction l, const om_direction::type r ) { - switch( l ) { - case cube_direction::north: - case cube_direction::east: - case cube_direction::south: - case cube_direction::west: - return static_cast( - ( static_cast( l ) + static_cast( r ) ) % 4 ); - case cube_direction::above: - case cube_direction::below: - return l; - case cube_direction::last: - break; - } - constexpr_fatal( cube_direction::last, "Invalid cube_direction" ); + return l + static_cast( r ); } cube_direction operator+( const cube_direction d, int i ) @@ -949,6 +992,11 @@ cube_direction operator+( const cube_direction d, int i ) constexpr_fatal( cube_direction::last, "Invalid cube_direction" ); } +cube_direction operator-( const cube_direction l, const om_direction::type r ) +{ + return l - static_cast( r ); +} + cube_direction operator-( const cube_direction d, int i ) { switch( d ) { @@ -987,43 +1035,6 @@ static tripoint displace( cube_direction d ) cata_fatal( "Invalid cube_direction" ); } -namespace io -{ - -template<> -std::string enum_to_string( overmap_special_subtype data ) -{ - switch( data ) { - // *INDENT-OFF* - case overmap_special_subtype::fixed: return "fixed"; - case overmap_special_subtype::mutable_: return "mutable"; - // *INDENT-ON* - case overmap_special_subtype::last: - break; - } - cata_fatal( "Invalid overmap_special_subtype" ); -} - -template<> -std::string enum_to_string( cube_direction data ) -{ - switch( data ) { - // *INDENT-OFF* - case cube_direction::north: return "north"; - case cube_direction::east: return "east"; - case cube_direction::south: return "south"; - case cube_direction::west: return "west"; - case cube_direction::above: return "above"; - case cube_direction::below: return "below"; - // *INDENT-ON* - case cube_direction::last: - break; - } - cata_fatal( "Invalid cube_direction" ); -} - -} // namespace io - struct mutable_overmap_join { std::string id; std::string opposite_id; @@ -1076,8 +1087,28 @@ std::string enum_to_string( join_type data ) struct mutable_overmap_terrain_join { std::string join_id; const mutable_overmap_join *join = nullptr; // NOLINT(cata-serialize) + cata::flat_set alternative_join_ids; + cata::flat_set alternative_joins; // NOLINT(cata-serialize) join_type type = join_type::mandatory; + void finalize( const std::string &context, + const std::unordered_map &joins ) { + auto join_it = joins.find( join_id ); + if( join_it != joins.end() ) { + join = join_it->second; + } else { + debugmsg( "invalid join id %s in %s", join_id, context ); + } + for( const std::string &alt_join_id : alternative_join_ids ) { + auto alt_join_it = joins.find( alt_join_id ); + if( alt_join_it != joins.end() ) { + alternative_joins.insert( alt_join_it->second ); + } else { + debugmsg( "invalid join id %s in %s", alt_join_id, context ); + } + } + } + void deserialize( JsonIn &jin ) { if( jin.test_string() ) { jin.read( join_id, true ); @@ -1085,6 +1116,7 @@ struct mutable_overmap_terrain_join { JsonObject jo = jin.get_object(); jo.read( "id", join_id, true ); jo.read( "type", type, true ); + jo.read( "alternatives", alternative_join_ids, true ); } else { jin.error( "Expected string or object" ); } @@ -1098,6 +1130,29 @@ struct mutable_overmap_terrain { cata::flat_set> locations; join_map joins; + void finalize( const std::string &context, + const std::unordered_map &special_joins, + const cata::flat_set> &default_locations ) { + if( locations.empty() ) { + locations = default_locations; + } + for( join_map::value_type &p : joins ) { + mutable_overmap_terrain_join &ter_join = p.second; + ter_join.finalize( context, special_joins ); + } + } + + void check( const std::string &context ) const { + if( !terrain.is_valid() ) { + debugmsg( "invalid overmap terrain id %s in %s", terrain.str(), context ); + } + for( const string_id &loc : locations ) { + if( !loc.is_valid() ) { + debugmsg( "invalid overmap location id %s in %s", loc.str(), context ); + } + } + } + void deserialize( JsonIn &jin ) { JsonObject jo = jin.get_object(); jo.read( "overmap", terrain, true ); @@ -1112,36 +1167,128 @@ struct mutable_overmap_terrain { } }; -struct mutable_overmap_placement_rule_remainder { - std::string overmap; - int max = INT_MAX; - int weight = INT_MAX; +struct mutable_overmap_piece_candidate { + const mutable_overmap_terrain *overmap; // NOLINT(cata-serialize) + tripoint_om_omt pos; + om_direction::type rot = om_direction::type::north; +}; - int get_weight() const { - return std::min( max, weight ); - } +struct mutable_overmap_placement_rule_piece { + std::string overmap_id; + const mutable_overmap_terrain *overmap; // NOLINT(cata-serialize) + tripoint_rel_omt pos; + om_direction::type rot = om_direction::type::north; - bool is_exhausted() const { - return get_weight() == 0; - } - - void decrement() { - --max; + void deserialize( const JsonObject &jo ) { + jo.read( "overmap", overmap_id, true ); + jo.read( "pos", pos, true ); + jo.read( "rot", rot, true ); } }; +struct mutable_overmap_placement_rule_remainder; + struct mutable_overmap_placement_rule { - std::string overmap; + std::string name; + std::vector pieces; + // NOLINTNEXTLINE(cata-serialize) + std::vector> outward_joins; int_distribution max = int_distribution( INT_MAX ); int weight = INT_MAX; - mutable_overmap_placement_rule_remainder realise() const { - return { overmap, max.sample(), weight }; + std::string description() const { + if( !name.empty() ) { + return name; + } + std::string first_om_id = pieces[0].overmap_id; + if( pieces.size() == 1 ) { + return first_om_id; + } else { + return "chunk using overmap " + first_om_id; + } } - void deserialize( JsonIn &jin ) { - JsonObject jo = jin.get_object(); - jo.read( "overmap", overmap, true ); + void finalize( const std::string &context, + const std::unordered_map &special_overmaps + ) { + std::unordered_map + pieces_by_pos; + for( mutable_overmap_placement_rule_piece &piece : pieces ) { + bool inserted = pieces_by_pos.emplace( piece.pos, &piece ).second; + if( !inserted ) { + debugmsg( "phase of %s has chunk with duplicated position %s", + context, piece.pos.to_string() ); + } + auto it = special_overmaps.find( piece.overmap_id ); + if( it == special_overmaps.end() ) { + cata_fatal( "phase of %s specifies overmap %s which is not defined for that " + "special", context, piece.overmap_id ); + } else { + piece.overmap = &it->second; + } + } + for( const mutable_overmap_placement_rule_piece &piece : pieces ) { + const mutable_overmap_terrain &ter = *piece.overmap; + for( const join_map::value_type &p : ter.joins ) { + const cube_direction dir = p.first; + const mutable_overmap_terrain_join &ter_join = p.second; + rel_pos_dir this_side{ piece.pos, dir + piece.rot }; + rel_pos_dir other_side = this_side.opposite(); + auto opposite_piece = pieces_by_pos.find( other_side.p ); + if( opposite_piece == pieces_by_pos.end() ) { + outward_joins.emplace_back( this_side, &ter_join ); + } else { + const std::string &opposite_join = ter_join.join->opposite_id; + const mutable_overmap_placement_rule_piece &other_piece = + *opposite_piece->second; + const mutable_overmap_terrain &other_om = *other_piece.overmap; + + auto opposite_om_join = + other_om.joins.find( other_side.dir - other_piece.rot ); + if( opposite_om_join == other_om.joins.end() ) { + debugmsg( "in phase of %s, %s has adjacent pieces %s at %s and %s at " + "%s where the former has a join %s pointed towards the latter, " + "but the latter has no join pointed towards the former", + context, description(), piece.overmap_id, piece.pos.to_string(), + other_piece.overmap_id, other_piece.pos.to_string(), + ter_join.join_id ); + } else if( opposite_om_join->second.join_id != opposite_join ) { + debugmsg( "in phase of %s, %s has adjacent pieces %s at %s and %s at " + "%s where the former has a join %s pointed towards the latter, " + "expecting a matching join %s wheras the latter has the join %s " + "pointed towards the former", + context, description(), piece.overmap_id, piece.pos.to_string(), + other_piece.overmap_id, other_piece.pos.to_string(), + ter_join.join_id, opposite_join, + opposite_om_join->second.join_id ); + } + } + } + } + } + void check( const std::string &context ) const { + if( pieces.empty() ) { + cata_fatal( "phase of %s has chunk with zero pieces" ); + } + int min_max = max.minimum(); + if( min_max < 0 ) { + debugmsg( "phase of %s specifies max which might be as low as %d; this should " + "be a positive number", context, min_max ); + } + } + + mutable_overmap_placement_rule_remainder realise() const; + + void deserialize( const JsonObject &jo ) { + jo.read( "name", name ); + if( jo.has_member( "overmap" ) ) { + pieces.emplace_back(); + jo.read( "overmap", pieces.back().overmap_id, true ); + } else if( jo.has_member( "chunk" ) ) { + jo.read( "chunk", pieces ); + } else { + jo.throw_error( R"(placement rule must specify at least one of "overmap" or "chunk")" ); + } jo.read( "max", max ); jo.read( "weight", weight ); if( !jo.has_member( "max" ) && weight == INT_MAX ) { @@ -1150,236 +1297,59 @@ struct mutable_overmap_placement_rule { } }; -struct placement_constraints { - std::vector> joins; +struct mutable_overmap_placement_rule_remainder { + const mutable_overmap_placement_rule *parent; + int max = INT_MAX; + int weight = INT_MAX; - cata::optional satisfied_by( const mutable_overmap_terrain &ter ) const { - join_map remaining_joins = ter.joins; - for( const std::pair &p : joins ) { - auto it = remaining_joins.find( p.first ); - if( it == remaining_joins.end() || it->second.join_id != p.second ) { - return cata::nullopt; - } - remaining_joins.erase( it ); - } - return remaining_joins; + std::string description() const { + return parent->description(); } - placement_constraints operator-( int rot ) const { - std::vector> result; - for( const std::pair &p : joins ) { - result.emplace_back( p.first - rot, p.second ); - } - return { result }; + int get_weight() const { + return std::min( max, weight ); } - std::array all_rotations() const { - return {{ *this, *this - 1, *this - 2, *this - 3 }}; + bool is_exhausted() const { + return get_weight() == 0; } -}; - -struct mutable_overmap_phase_remainder { - std::vector rules; - - struct satisfy_result { - const mutable_overmap_terrain *terrain; - om_direction::type dir; - mutable_overmap_placement_rule_remainder *rule; - // For debugging purposes it's really handy to have a record of exactly - // what happened during placement of a mutable special when it fails, - // so to aid that we provide a human-readable description here which is - // only used in the event of a placement error. - std::string description; - }; - bool all_rules_exhausted() const { - return std::all_of( rules.begin(), rules.end(), - []( const mutable_overmap_placement_rule_remainder & rule ) { - return rule.is_exhausted(); - } ); + void decrement() { + --max; } - satisfy_result satisfy( - const std::unordered_map &overmaps, - const std::unordered_map &joins, - const overmap &om, const tripoint_om_omt &pos, const placement_constraints &constraints ) { - - const oter_id &existing_terrain = om.ter( pos ); - std::array all_constraints = constraints.all_rotations(); - - weighted_int_list options; - for( mutable_overmap_placement_rule_remainder &rule : rules ) { - auto it = overmaps.find( rule.overmap ); - if( it == overmaps.end() ) { - debugmsg( "invalid overmap %s", rule.overmap ); - continue; - } - const mutable_overmap_terrain &ter = it->second; - - if( !is_amongst_locations( existing_terrain, ter.locations ) ) { - continue; - } - - std::vector dir_options; - int best_num_available_joins = 0; - - for( om_direction::type dir : om_direction::all ) { - int num_available_joins = 0; - if( cata::optional remaining = - all_constraints[static_cast( dir )].satisfied_by( ter ) ) { - // Verify that the remaining joins lead to - // suitable locations - bool satisfied = true; - for( const join_map::value_type &p : *remaining ) { - cube_direction rotated_dir = p.first + dir; - const mutable_overmap_terrain_join &ter_join = p.second; - if( ter_join.type == join_type::available ) { - ++num_available_joins; - continue; - } - auto join_it = joins.find( ter_join.join_id ); - if( join_it == joins.end() ) { - satisfied = false; - break; - } - const mutable_overmap_join &join = *join_it->second; - tripoint_om_omt neighbour = pos + displace( rotated_dir ); - if( !overmap::inbounds( neighbour ) ) { - satisfied = false; - break; - } - const oter_id &neighbour_terrain = om.ter( neighbour ); - if( !is_amongst_locations( neighbour_terrain, join.into_locations ) ) { - satisfied = false; - break; - } - } - if( satisfied ) { - if( num_available_joins > best_num_available_joins ) { - dir_options.clear(); - best_num_available_joins = num_available_joins; - } - if( num_available_joins == best_num_available_joins ) { - dir_options.push_back( dir ); - } - } - } - } - - if( auto chosen_dir = random_entry_opt( dir_options ) ) { - options.add( satisfy_result{ &ter, *chosen_dir, &rule, {} }, rule.get_weight() ); - } - } - std::string joins_s = enumerate_as_string( constraints.joins, - []( const std::pair &p ) { - return string_format( "%s: %s", io::enum_to_string( p.first ), p.second ); - } ); - if( satisfy_result *picked = options.pick() ) { - om_direction::type dir = picked->dir; - picked->description = - string_format( - "At %s chose %s rot %d with neighbours N:%s E:%s S:%s W:%s and constraints %s", - pos.to_string(), - picked->terrain->terrain.str(), static_cast( dir ), - om.ter( pos + point_north ).id().str(), om.ter( pos + point_east ).id().str(), - om.ter( pos + point_south ).id().str(), om.ter( pos + point_west ).id().str(), - joins_s ); - picked->rule->decrement(); - return *picked; - } else { - std::string rules_s = enumerate_as_string( rules, - []( const mutable_overmap_placement_rule_remainder & rule ) { - if( rule.is_exhausted() ) { - return string_format( "(%s)", rule.overmap ); - } else { - return rule.overmap; - } - } ); - std::string message = - string_format( - "At %s FAILED to match with neighbours N:%s E:%s S:%s W:%s and constraints %s " - "from amongst rules %s", - pos.to_string(), - om.ter( pos + point_north ).id().str(), om.ter( pos + point_east ).id().str(), - om.ter( pos + point_south ).id().str(), om.ter( pos + point_west ).id().str(), - joins_s, rules_s ); - return { nullptr, om_direction::type::invalid, nullptr, std::move( message ) }; + std::vector positions( om_direction::type rot ) const { + std::vector result; + for( const mutable_overmap_placement_rule_piece &piece : parent->pieces ) { + result.push_back( rotate( piece.pos, rot ) ); } + return result; } -}; - -struct mutable_overmap_phase { - std::vector rules; - - mutable_overmap_phase_remainder realise() const { - std::vector realised_rules; - for( const mutable_overmap_placement_rule &rule : rules ) { - realised_rules.push_back( rule.realise() ); + std::vector pieces( const tripoint_om_omt &origin, + om_direction::type rot ) const { + std::vector result; + for( const mutable_overmap_placement_rule_piece &piece : parent->pieces ) { + tripoint_rel_omt rotated_offset = rotate( piece.pos, rot ); + result.push_back( { piece.overmap, origin + rotated_offset, add( rot, piece.rot ) } ); } - return { realised_rules }; + return result; } - - void deserialize( JsonIn &jin ) { - jin.read( rules, true ); + auto outward_joins( const tripoint_om_omt &origin, om_direction::type rot ) const + -> std::vector> { + std::vector> result; + for( const std::pair &p : + parent->outward_joins ) { + tripoint_rel_omt rotated_offset = rotate( p.first.p, rot ); + om_pos_dir p_d{ origin + rotated_offset, p.first.dir + rot }; + result.emplace_back( p_d, p.second ); + } + return result; } }; -bool om_pos_dir::inbounds() const +mutable_overmap_placement_rule_remainder mutable_overmap_placement_rule::realise() const { - static constexpr half_open_cuboid overmap_bounds( - tripoint_om_omt( 0, 0, -OVERMAP_DEPTH ), - tripoint_om_omt( OMAPX, OMAPY, OVERMAP_HEIGHT + 1 ) - ); - return overmap_bounds.contains( p ); -} - -om_pos_dir om_pos_dir::opposite() const -{ - switch( dir ) { - case cube_direction::north: - return { p + tripoint_north, cube_direction::south }; - case cube_direction::east: - return { p + tripoint_east, cube_direction::west }; - case cube_direction::south: - return { p + tripoint_south, cube_direction::north }; - case cube_direction::west: - return { p + tripoint_west, cube_direction::east }; - case cube_direction::above: - return { p + tripoint_above, cube_direction::below }; - case cube_direction::below: - return { p + tripoint_below, cube_direction::above }; - case cube_direction::last: - break; - } - cata_fatal( "Invalid cube_direction" ); -} - -void om_pos_dir::serialize( JsonOut &jsout ) const -{ - jsout.start_array(); - jsout.write( p ); - jsout.write( dir ); - jsout.end_array(); -} - -void om_pos_dir::deserialize( JsonIn &jsin ) -{ - JsonArray ja = jsin.get_array(); - if( ja.size() != 2 ) { - ja.throw_error( "Expected array of size 2" ); - } - ja.read( 0, p ); - ja.read( 1, dir ); -} - -bool operator==( const om_pos_dir &l, const om_pos_dir &r ) -{ - return l.p == r.p && l.dir == r.dir; -} - -bool operator<( const om_pos_dir &l, const om_pos_dir &r ) -{ - return std::tie( l.p, l.dir ) < std::tie( r.p, r.dir ); + return mutable_overmap_placement_rule_remainder{ this, max.sample(), weight }; } // When building a mutable overmap special we maintain a collection of @@ -1388,15 +1358,9 @@ bool operator<( const om_pos_dir &l, const om_pos_dir &r ) class joins_tracker { public: - explicit joins_tracker( - const std::unordered_map &jns ) - : joins( &jns ) { - } - struct join { om_pos_dir where; - std::string join_id; - unsigned join_priority; + const mutable_overmap_join *join; }; using iterator = std::list::iterator; using const_iterator = std::list::const_iterator; @@ -1405,10 +1369,22 @@ class joins_tracker return !unresolved.empty(); } + std::vector all_unresolved_at( const tripoint_om_omt &pos ) const { + std::vector result; + for( iterator it : unresolved.all_at( pos ) ) { + result.push_back( &*it ); + } + return result; + } + bool any_postponed() const { return !postponed.empty(); } + bool any_postponed_at( const tripoint_om_omt &p ) const { + return postponed.any_at( p ); + } + void consistency_check() const { #if 0 // Enable this to check the class invariants, at the cost of more runtime // verify that there are no positions in common between the @@ -1430,41 +1406,98 @@ class joins_tracker #endif } - void add_joins_for( const mutable_overmap_terrain &ter, const tripoint_om_omt &pos, - om_direction::type rot ) { + enum class join_status { + disallowed, // Conflicts with existing join, and at least one was mandatory + matched_available, // Matches an existing non-mandatory join + matched_non_available, // Matches an existing mandatory join + mismatched_available, // Points at an incompatible join, but both are non-mandatory + free, // Doesn't point at another join at all + }; + + join_status allows( const om_pos_dir &this_side, + const mutable_overmap_terrain_join &this_ter_join ) const { + om_pos_dir other_side = this_side.opposite(); + + auto is_allowed_opposite = [&]( const std::string & candidate ) { + const mutable_overmap_join &this_join = *this_ter_join.join; + + if( this_join.opposite_id == candidate ) { + return true; + } + + for( const mutable_overmap_join *alt_join : this_ter_join.alternative_joins ) { + if( alt_join->opposite_id == candidate ) { + return true; + } + } + + return false; + }; + + if( const join *existing = resolved.find( other_side ) ) { + bool other_side_mandatory = unresolved.count( this_side ); + if( is_allowed_opposite( existing->join->id ) ) { + return other_side_mandatory + ? join_status::matched_non_available : join_status::matched_available; + } else { + if( other_side_mandatory || this_ter_join.type != join_type::available ) { + return join_status::disallowed; + } else { + return join_status::mismatched_available; + } + } + } else { + return join_status::free; + } + } + + void add_joins_for( + const mutable_overmap_terrain &ter, const tripoint_om_omt &pos, + om_direction::type rot, const std::vector &suppressed_joins ) { consistency_check(); + + std::unordered_set avoid( + suppressed_joins.begin(), suppressed_joins.end() ); + for( const std::pair &p : ter.joins ) { cube_direction dir = p.first + rot; - const mutable_overmap_terrain_join &join = p.second; - const mutable_overmap_join &opposite_join = *join.join->opposite; + const mutable_overmap_terrain_join &this_side_join = p.second; om_pos_dir this_side{ pos, dir }; om_pos_dir other_side = this_side.opposite(); - if( resolved.count( other_side ) ) { + if( const join *other_side_join = resolved.find( other_side ) ) { erase_unresolved( this_side ); - used.emplace_back( this_side, join.join_id ); - used.emplace_back( other_side, opposite_join.id ); + if( !avoid.count( this_side ) ) { + used.emplace_back( other_side, other_side_join->join->id ); + // Because of the existence of alternative joins, we don't + // simply add this_side_join here, we add the opposite of + // the opposite that was actually present (this saves us + // from heaving to search through the alternates to find + // which one actually matched). + used.emplace_back( this_side, other_side_join->join->opposite_id ); + } } else { // If there were postponed joins pointing into this point, // so we need to un-postpone them because it might now be // possible to satisfy them. restore_postponed_at( other_side.p ); - if( join.type == join_type::mandatory ) { - if( !other_side.inbounds() ) { + if( this_side_join.type == join_type::mandatory ) { + if( !overmap::inbounds( other_side.p ) ) { debugmsg( "out of bounds join" ); continue; } - add_unresolved( other_side, opposite_join.id ); + const mutable_overmap_join *opposite_join = this_side_join.join->opposite; + add_unresolved( other_side, opposite_join ); } } - resolved.add( *this, this_side, join.join_id ); + resolved.add( this_side, this_side_join.join ); } consistency_check(); } - std::pair pick_top_priority() const { + tripoint_om_omt pick_top_priority() const { cata_assert( any_unresolved() ); auto priority_it = std::find_if( unresolved_priority_index.begin(), unresolved_priority_index.end(), @@ -1475,11 +1508,7 @@ class joins_tracker auto it = random_entry( *priority_it ); const tripoint_om_omt &pos = it->where.p; cata_assert( !postponed.any_at( pos ) ); - std::pair result( it->where, {} ); - for( iterator it : unresolved.all_at( pos ) ) { - result.second.joins.emplace_back( it->where.dir, it->join_id ); - } - return result; + return pos; } void postpone( const tripoint_om_omt &pos ) { consistency_check(); @@ -1492,7 +1521,7 @@ class joins_tracker } void restore_postponed_at( const tripoint_om_omt &pos ) { for( iterator it : postponed.all_at( pos ) ) { - add_unresolved( it->where, it->join_id ); + add_unresolved( it->where, it->join ); postponed.erase( it ); } consistency_check(); @@ -1500,7 +1529,7 @@ class joins_tracker void restore_postponed() { consistency_check(); for( const join &j : postponed ) { - add_unresolved( j.where, j.join_id ); + add_unresolved( j.where, j.join ); } postponed.clear(); } @@ -1509,15 +1538,6 @@ class joins_tracker return used; } private: - unsigned priority_of( const std::string &join_id ) const { - auto it = joins->find( join_id ); - if( it == joins->end() ) { - debugmsg( "priority for join_id %s not known", join_id ); - return 0; - } - return it->second->priority; - } - struct indexed_joins { std::list joins; std::unordered_map position_index; @@ -1546,6 +1566,14 @@ class joins_tracker return position_index.count( p ); } + const join *find( const om_pos_dir &p ) const { + auto it = position_index.find( p ); + if( it == position_index.end() ) { + return nullptr; + } + return &*it->second; + } + bool any_at( const tripoint_om_omt &pos ) const { for( cube_direction dir : all_enum_values() ) { if( count( om_pos_dir{ pos, dir } ) ) { @@ -1567,10 +1595,8 @@ class joins_tracker return result; } - iterator add( const joins_tracker &tracker, const om_pos_dir &p, - const std::string &join_id ) { - unsigned priority = tracker.priority_of( join_id ); - return add( { p, join_id, priority } ); + iterator add( const om_pos_dir &p, const mutable_overmap_join *j ) { + return add( { p, j } ); } iterator add( const join &j ) { @@ -1593,9 +1619,9 @@ class joins_tracker } }; - void add_unresolved( const om_pos_dir &p, const std::string &join_id ) { - iterator it = unresolved.add( *this, p, join_id ); - unsigned priority = it->join_priority; + void add_unresolved( const om_pos_dir &p, const mutable_overmap_join *j ) { + iterator it = unresolved.add( p, j ); + unsigned priority = it->join->priority; if( unresolved_priority_index.size() <= priority ) { unresolved_priority_index.resize( priority + 1 ); } @@ -1609,7 +1635,7 @@ class joins_tracker return false; } iterator it = pos_it->second; - unsigned priority = it->join_priority; + unsigned priority = it->join->priority; cata_assert( priority < unresolved_priority_index.size() ); size_t erased = unresolved_priority_index[priority].erase( it ); cata_assert( erased ); @@ -1623,8 +1649,6 @@ class joins_tracker } }; - const std::unordered_map *joins; - indexed_joins unresolved; std::vector> unresolved_priority_index; @@ -1634,6 +1658,256 @@ class joins_tracker std::vector> used; }; +struct mutable_overmap_phase_remainder { + std::vector rules; + + struct satisfy_result { + tripoint_om_omt origin; + om_direction::type dir; + mutable_overmap_placement_rule_remainder *rule; + std::vector suppressed_joins; + // For debugging purposes it's really handy to have a record of exactly + // what happened during placement of a mutable special when it fails, + // so to aid that we provide a human-readable description here which is + // only used in the event of a placement error. + std::string description; + }; + + bool all_rules_exhausted() const { + return std::all_of( rules.begin(), rules.end(), + []( const mutable_overmap_placement_rule_remainder & rule ) { + return rule.is_exhausted(); + } ); + } + + struct can_place_result { + int num_context_mandatory_joins_matched; + int num_my_non_available_matched; + std::vector supressed_joins; + + std::pair as_pair() const { + return { num_context_mandatory_joins_matched, num_my_non_available_matched }; + } + + friend bool operator==( const can_place_result &l, const can_place_result &r ) { + return l.as_pair() == r.as_pair(); + } + + friend bool operator<( const can_place_result &l, const can_place_result &r ) { + return l.as_pair() < r.as_pair(); + } + }; + + cata::optional can_place( + const overmap &om, const mutable_overmap_placement_rule_remainder &rule, + const tripoint_om_omt &origin, om_direction::type dir, + const joins_tracker &unresolved + ) const { + std::vector pieces = rule.pieces( origin, dir ); + int context_mandatory_joins_shortfall = 0; + + for( const mutable_overmap_piece_candidate &piece : pieces ) { + if( !overmap::inbounds( piece.pos ) ) { + return cata::nullopt; + } + if( !is_amongst_locations( om.ter( piece.pos ), piece.overmap->locations ) ) { + return cata::nullopt; + } + if( unresolved.any_postponed_at( piece.pos ) ) { + return cata::nullopt; + } + context_mandatory_joins_shortfall -= unresolved.all_unresolved_at( piece.pos ).size(); + } + + int num_my_non_available_matched = 0; + + std::vector> remaining_joins = + rule.outward_joins( origin, dir ); + std::vector suppressed_joins; + + for( const std::pair &p : + remaining_joins ) { + const om_pos_dir &pos_d = p.first; + const mutable_overmap_terrain_join &ter_join = *p.second; + const mutable_overmap_join &join = *ter_join.join; + switch( unresolved.allows( pos_d, ter_join ) ) { + case joins_tracker::join_status::disallowed: + return cata::nullopt; + case joins_tracker::join_status::matched_non_available: + ++context_mandatory_joins_shortfall; + // fallthrough + case joins_tracker::join_status::matched_available: + if( ter_join.type != join_type::available ) { + ++num_my_non_available_matched; + } + continue; + case joins_tracker::join_status::mismatched_available: + suppressed_joins.push_back( pos_d ); + case joins_tracker::join_status::free: + break; + } + if( ter_join.type == join_type::available ) { + continue; + } + // Verify that the remaining joins lead to + // suitable locations + tripoint_om_omt neighbour = pos_d.p + displace( pos_d.dir ); + if( !overmap::inbounds( neighbour ) ) { + return cata::nullopt; + } + const oter_id &neighbour_terrain = om.ter( neighbour ); + if( !is_amongst_locations( neighbour_terrain, join.into_locations ) ) { + return cata::nullopt; + } + } + return can_place_result{ context_mandatory_joins_shortfall, + num_my_non_available_matched, suppressed_joins }; + } + + satisfy_result satisfy( const overmap &om, const tripoint_om_omt &pos, + const joins_tracker &unresolved ) { + weighted_int_list options; + + for( mutable_overmap_placement_rule_remainder &rule : rules ) { + std::vector pos_dir_options; + can_place_result best_result{ 0, 0, {} }; + + for( om_direction::type dir : om_direction::all ) { + for( const tripoint_rel_omt &piece_pos : rule.positions( dir ) ) { + tripoint_om_omt origin = pos - piece_pos; + + if( cata::optional result = can_place( + om, rule, origin, dir, unresolved ) ) { + if( best_result < *result ) { + pos_dir_options.clear(); + best_result = *result; + } + if( *result == best_result ) { + pos_dir_options.push_back( + satisfy_result{ origin, dir, &rule, result.value().supressed_joins, + {} } ); + } + } + } + } + + if( auto chosen_result = random_entry_opt( pos_dir_options ) ) { + options.add( *chosen_result, rule.get_weight() ); + } + } + std::string joins_s = enumerate_as_string( unresolved.all_unresolved_at( pos ), + []( const joins_tracker::join * j ) { + return string_format( "%s: %s", io::enum_to_string( j->where.dir ), j->join->id ); + } ); + + if( satisfy_result *picked = options.pick() ) { + om_direction::type dir = picked->dir; + const mutable_overmap_placement_rule_remainder &rule = *picked->rule; + picked->description = + string_format( + "At %s chose '%s' rot %d with neighbours N:%s E:%s S:%s W:%s and constraints " + "%s", + pos.to_string(), rule.description(), static_cast( dir ), + om.ter( pos + point_north ).id().str(), om.ter( pos + point_east ).id().str(), + om.ter( pos + point_south ).id().str(), om.ter( pos + point_west ).id().str(), + joins_s ); + picked->rule->decrement(); + return *picked; + } else { + std::string rules_s = enumerate_as_string( rules, + []( const mutable_overmap_placement_rule_remainder & rule ) { + if( rule.is_exhausted() ) { + return string_format( "(%s)", rule.description() ); + } else { + return rule.description(); + } + } ); + std::string message = + string_format( + "At %s FAILED to match on terrain %s with neighbours N:%s E:%s S:%s W:%s and " + "constraints %s from amongst rules %s", + pos.to_string(), om.ter( pos ).id().str(), + om.ter( pos + point_north ).id().str(), om.ter( pos + point_east ).id().str(), + om.ter( pos + point_south ).id().str(), om.ter( pos + point_west ).id().str(), + joins_s, rules_s ); + return { {}, om_direction::type::invalid, nullptr, {}, std::move( message ) }; + } + } +}; + +struct mutable_overmap_phase { + std::vector rules; + + mutable_overmap_phase_remainder realise() const { + std::vector realised_rules; + for( const mutable_overmap_placement_rule &rule : rules ) { + realised_rules.push_back( rule.realise() ); + } + return { realised_rules }; + } + + void deserialize( JsonIn &jin ) { + jin.read( rules, true ); + } +}; + +template +pos_dir pos_dir::opposite() const +{ + switch( dir ) { + case cube_direction::north: + return { p + tripoint_north, cube_direction::south }; + case cube_direction::east: + return { p + tripoint_east, cube_direction::west }; + case cube_direction::south: + return { p + tripoint_south, cube_direction::north }; + case cube_direction::west: + return { p + tripoint_west, cube_direction::east }; + case cube_direction::above: + return { p + tripoint_above, cube_direction::below }; + case cube_direction::below: + return { p + tripoint_below, cube_direction::above }; + case cube_direction::last: + break; + } + cata_fatal( "Invalid cube_direction" ); +} + +template +void pos_dir::serialize( JsonOut &jsout ) const +{ + jsout.start_array(); + jsout.write( p ); + jsout.write( dir ); + jsout.end_array(); +} + +template +void pos_dir::deserialize( JsonIn &jsin ) +{ + JsonArray ja = jsin.get_array(); + if( ja.size() != 2 ) { + ja.throw_error( "Expected array of size 2" ); + } + ja.read( 0, p ); + ja.read( 1, dir ); +} + +template +bool pos_dir::operator==( const pos_dir &r ) const +{ + return p == r.p && dir == r.dir; +} + +template +bool pos_dir::operator<( const pos_dir &r ) const +{ + return std::tie( p, dir ) < std::tie( r.p, r.dir ); +} + +template struct pos_dir; +template struct pos_dir; + struct mutable_overmap_special_data { overmap_special_id parent_id; std::vector check_for_locations; @@ -1647,7 +1921,8 @@ struct mutable_overmap_special_data { : parent_id( p_id ) {} - void finalize( const cata::flat_set> &default_locations ) { + void finalize( const std::string &context, + const cata::flat_set> &default_locations ) { if( check_for_locations.empty() ) { check_for_locations.push_back( root_as_overmap_special_terrain() ); } @@ -1674,16 +1949,12 @@ struct mutable_overmap_special_data { } for( std::pair &p : overmaps ) { mutable_overmap_terrain &ter = p.second; - if( ter.locations.empty() ) { - ter.locations = default_locations; - } - for( join_map::value_type &p : ter.joins ) { - mutable_overmap_terrain_join &ter_join = p.second; - auto join_it = joins.find( ter_join.join_id ); - if( join_it == joins.end() ) { - continue; - } - ter_join.join = join_it->second; + ter.finalize( string_format( "overmap %s in %s", p.first, context ), joins, + default_locations ); + } + for( mutable_overmap_phase &phase : phases ) { + for( mutable_overmap_placement_rule &rule : phase.rules ) { + rule.finalize( context, overmaps ); } } } @@ -1707,36 +1978,14 @@ struct mutable_overmap_special_data { } for( const std::pair &p : overmaps ) { const mutable_overmap_terrain &ter = p.second; - if( !ter.terrain.is_valid() ) { - debugmsg( "invalid overmap terrain id %s in %s", ter.terrain.str(), context ); - } - for( const string_id &loc : ter.locations ) { - if( !loc.is_valid() ) { - debugmsg( "invalid overmap location id %s in %s", loc.str(), context ); - } - } - for( const std::pair &p : - ter.joins ) { - const mutable_overmap_terrain_join &join = p.second; - if( !joins.count( join.join_id ) ) { - debugmsg( "invalid join id %s in %s", join.join_id, context ); - } - } + ter.check( string_format( "overmap %s in %s", p.first, context ) ); } if( !overmaps.count( root ) ) { debugmsg( "root %s is not amongst the defined overmaps for %s", root, context ); } for( const mutable_overmap_phase &phase : phases ) { for( const mutable_overmap_placement_rule &rule : phase.rules ) { - if( !overmaps.count( rule.overmap ) ) { - debugmsg( "phases specifies overmap %s which is not defined for %s", - rule.overmap, context ); - } - int min_max = rule.max.minimum(); - if( min_max < 0 ) { - debugmsg( "phase of %s specifies max which might be as low as %d; this should " - "be a positive number", context, min_max ); - } + rule.check( context ); } } } @@ -1769,29 +2018,32 @@ struct mutable_overmap_special_data { // of what happened to be put in the debugmsg in the event of failure. std::vector descriptions; - joins_tracker unresolved( joins ); - unresolved.add_joins_for( root_omt, origin, om_direction::type::none ); + joins_tracker unresolved; + unresolved.add_joins_for( root_omt, origin, om_direction::type::none, {} ); auto current_phase = phases.begin(); mutable_overmap_phase_remainder phase_remaining = current_phase->realise(); while( unresolved.any_unresolved() ) { - om_pos_dir p_d; - placement_constraints next; - std::tie( p_d, next ) = unresolved.pick_top_priority(); - const tripoint_om_omt &p = p_d.p; + tripoint_om_omt next_pos = unresolved.pick_top_priority(); mutable_overmap_phase_remainder::satisfy_result satisfy_result = - phase_remaining.satisfy( overmaps, joins, om, p, next ); + phase_remaining.satisfy( om, next_pos, unresolved ); descriptions.push_back( std::move( satisfy_result.description ) ); - const mutable_overmap_terrain *ter = satisfy_result.terrain; - if( ter ) { + const mutable_overmap_placement_rule_remainder *rule = satisfy_result.rule; + if( rule ) { + const tripoint_om_omt &origin = satisfy_result.origin; om_direction::type rot = satisfy_result.dir; - const oter_id tid = ter->terrain->get_rotated( rot ); - om.ter_set( p, tid ); - unresolved.add_joins_for( *ter, p, rot ); - result.push_back( p ); + std::vector pieces = rule->pieces( origin, rot ); + for( const mutable_overmap_piece_candidate &piece : pieces ) { + const mutable_overmap_terrain &ter = *piece.overmap; + const oter_id tid = ter.terrain->get_rotated( piece.rot ); + om.ter_set( piece.pos, tid ); + unresolved.add_joins_for( ter, piece.pos, piece.rot, + satisfy_result.suppressed_joins ); + result.push_back( piece.pos ); + } } else { - unresolved.postpone( p ); + unresolved.postpone( next_pos ); } if( !unresolved.any_unresolved() || phase_remaining.all_rules_exhausted() ) { ++current_phase; @@ -1809,22 +2061,19 @@ struct mutable_overmap_special_data { // This is an error in the JSON; extract some useful info to help // the user debug it unresolved.restore_postponed(); - om_pos_dir p_d; - placement_constraints next; - std::tie( p_d, next ) = unresolved.pick_top_priority(); - const tripoint_om_omt &p = p_d.p; + tripoint_om_omt p = unresolved.pick_top_priority(); const oter_id ¤t_terrain = om.ter( p ); - std::string joins = enumerate_as_string( next.joins, - []( const std::pair &dir_join ) { - return string_format( "%s: %s", io::enum_to_string( dir_join.first ), - dir_join.second ); + std::string joins = enumerate_as_string( unresolved.all_unresolved_at( p ), + []( const joins_tracker::join * dir_join ) { + return string_format( "%s: %s", io::enum_to_string( dir_join->where.dir ), + dir_join->join->id ); } ); - DebugLog( D_WARNING, D_MAIN ) << - string_format( "Spawn of mutable special %s had unresolved joins. Existing terrain " - "at %s was %s; joins were %s\nComplete record of placement follows:\n%s", - parent_id.str(), p.to_string(), current_terrain.id().str(), joins, - join( descriptions, "\n" ) ); + + debugmsg( "Spawn of mutable special %s had unresolved joins. Existing terrain " + "at %s was %s; joins were %s\nComplete record of placement follows:\n%s", + parent_id.str(), p.to_string(), current_terrain.id().str(), joins, + join( descriptions, "\n" ) ); om.add_note( p, string_format( @@ -1999,7 +2248,7 @@ void overmap_special::load( const JsonObject &jo, const std::string &src ) mandatory( jo, was_loaded, "overmaps", mutable_data->overmaps ); mandatory( jo, was_loaded, "root", mutable_data->root ); mandatory( jo, was_loaded, "phases", mutable_data->phases ); - mutable_data->finalize( default_locations_ ); + mutable_data->finalize( "overmap special " + id.str(), default_locations_ ); mutable_data_ = std::move( mutable_data ); break; } @@ -2265,7 +2514,11 @@ void overmap::ter_set( const tripoint_om_omt &p, const oter_id &id ) return; } - layer[p.z() + OVERMAP_DEPTH].terrain[p.x()][p.y()] = id; + oter_id &val = layer[p.z() + OVERMAP_DEPTH].terrain[p.x()][p.y()]; + if( id->has_flag( oter_flags::requires_predecessor ) ) { + predecessors_[p].push_back( val ); + } + val = id; } const oter_id &overmap::ter( const tripoint_om_omt &p ) const @@ -2296,6 +2549,15 @@ std::string *overmap::join_used_at( const om_pos_dir &p ) return &it->second; } +std::vector overmap::predecessors( const tripoint_om_omt &p ) +{ + auto it = predecessors_.find( p ); + if( it == predecessors_.end() ) { + return {}; + } + return it->second; +} + bool &overmap::seen( const tripoint_om_omt &p ) { if( !inbounds( p ) ) { @@ -5036,18 +5298,6 @@ void overmap::good_river( const tripoint_om_omt &p ) } } -const std::string &om_direction::id( type dir ) -{ - static const std::array < std::string, size + 1 > ids = {{ - "", "north", "east", "south", "west" - } - }; - if( dir == om_direction::type::invalid ) { - debugmsg( "Invalid direction cannot have an id." ); - } - return ids[static_cast( dir ) + 1]; -} - std::string om_direction::name( type dir ) { static const std::array < std::string, size + 1 > names = {{ @@ -5075,6 +5325,7 @@ point om_direction::rotate( const point &p, type dir ) { switch( dir ) { case om_direction::type::invalid: + case om_direction::type::last: debugmsg( "Invalid overmap rotation (%d).", static_cast( dir ) ); // Intentional fallthrough. case om_direction::type::north: @@ -5745,7 +5996,6 @@ void overmap::add_mon_group( const mongroup &group ) const int rad = std::max( 0, group.radius ); const double total_area = group.diffuse ? std::pow( rad + 1, 2 ) : ( rad * rad * M_PI + 1 ); const double pop = std::max( 0, group.population ); - int xpop = 0; for( int x = -rad; x <= rad; x++ ) { for( int y = -rad; y <= rad; y++ ) { const int dist = group.diffuse ? square_dist( point( x, y ), point_zero ) : trig_dist( point( x, @@ -5795,7 +6045,6 @@ void overmap::add_mon_group( const mongroup &group ) // To avoid this, the overmapbuffer checks the monster groups when loading // an overmap and moves groups with out-of-bounds position to another overmap. add_mon_group( tmp ); - xpop += tmp.population; } } } diff --git a/src/overmap.h b/src/overmap.h index c7a83baceae08..524b4bf7028cc 100644 --- a/src/overmap.h +++ b/src/overmap.h @@ -171,8 +171,10 @@ static const std::map oter_flags_map = { { "RIVER", oter_flags::river_tile }, { "SIDEWALK", oter_flags::has_sidewalk }, { "NO_ROTATE", oter_flags::no_rotate }, + { "IGNORE_ROTATION_FOR_ADJACENCY", oter_flags::ignore_rotation_for_adjacency }, { "LINEAR", oter_flags::line_drawing }, { "SUBWAY", oter_flags::subway_connection }, + { "REQUIRES_PREDECESSOR", oter_flags::requires_predecessor }, { "LAKE", oter_flags::lake }, { "LAKE_SHORE", oter_flags::lake_shore }, { "RAVINE", oter_flags::ravine }, @@ -204,25 +206,31 @@ static const std::map oter_flags_map = { { "SOURCE_WEAPON", oter_flags::source_weapon } }; -struct om_pos_dir { - tripoint_om_omt p; +template +struct pos_dir { + Tripoint p; cube_direction dir; - bool inbounds() const; - om_pos_dir opposite() const; + pos_dir opposite() const; void serialize( JsonOut &jsout ) const; void deserialize( JsonIn &jsin ); - friend bool operator==( const om_pos_dir &l, const om_pos_dir &r ); - friend bool operator<( const om_pos_dir &l, const om_pos_dir &r ); + bool operator==( const pos_dir &r ) const; + bool operator<( const pos_dir &r ) const; }; +extern template struct pos_dir; +extern template struct pos_dir; + +using om_pos_dir = pos_dir; +using rel_pos_dir = pos_dir; + namespace std { -template<> -struct hash { - size_t operator()( const om_pos_dir &p ) const { +template +struct hash> { + size_t operator()( const pos_dir &p ) const { cata::tuple_hash h; return h( std::make_tuple( p.p, p.dir ) ); } @@ -273,6 +281,7 @@ class overmap const oter_id &ter( const tripoint_om_omt &p ) const; cata::optional *mapgen_args( const tripoint_om_omt & ); std::string *join_used_at( const om_pos_dir & ); + std::vector predecessors( const tripoint_om_omt & ); bool &seen( const tripoint_om_omt &p ); bool seen( const tripoint_om_omt &p ) const; bool &explored( const tripoint_om_omt &p ); @@ -400,6 +409,10 @@ class overmap // Reconstructed on load, so need not be serialized. std::unordered_set safe_at_worldgen; // NOLINT(cata-serialize) + // For oter_ts with the requires_predecessor flag, we need to store the + // predecessor terrains so they can be used for mapgen later + std::unordered_map> predecessors_; + // Records mapgen parameters required at the overmap special level // These are lazily evaluated; empty optional means that they have yet // to be evaluated. diff --git a/src/overmap_ui.cpp b/src/overmap_ui.cpp index 16dc4e9ef02fe..e747a9b9a4bb5 100644 --- a/src/overmap_ui.cpp +++ b/src/overmap_ui.cpp @@ -1076,6 +1076,13 @@ static void draw_om_sidebar( oter.get_rotation() ); mvwprintz( wbar, point( 1, ++lines ), c_white, "oter_type: %s", oter.get_type_id().str() ); + std::vector predecessors = overmap_buffer.predecessors( center ); + if( !predecessors.empty() ) { + mvwprintz( wbar, point( 1, ++lines ), c_white, "predecessors:" ); + for( auto pred = predecessors.rbegin(); pred != predecessors.rend(); ++pred ) { + mvwprintz( wbar, point( 1, ++lines ), c_white, "- %s", pred->id().str() ); + } + } cata::optional *args = overmap_buffer.mapgen_args( center ); if( args ) { if( *args ) { diff --git a/src/overmapbuffer.cpp b/src/overmapbuffer.cpp index 02241ef5bfb50..ef9f1b9829c46 100644 --- a/src/overmapbuffer.cpp +++ b/src/overmapbuffer.cpp @@ -755,6 +755,12 @@ std::string *overmapbuffer::join_used_at( const std::pairjoin_used_at( { om_loc.local, p.second } ); } +std::vector overmapbuffer::predecessors( const tripoint_abs_omt &p ) +{ + const overmap_with_local_coords om_loc = get_om_global( p ); + return om_loc.om->predecessors( om_loc.local ); +} + bool overmapbuffer::reveal( const point_abs_omt ¢er, int radius, int z ) { return reveal( tripoint_abs_omt( center, z ), radius ); diff --git a/src/overmapbuffer.h b/src/overmapbuffer.h index c0be4838ec3f3..a84b31243d335 100644 --- a/src/overmapbuffer.h +++ b/src/overmapbuffer.h @@ -168,6 +168,7 @@ class overmapbuffer void ter_set( const tripoint_abs_omt &p, const oter_id &id ); cata::optional *mapgen_args( const tripoint_abs_omt & ); std::string *join_used_at( const std::pair & ); + std::vector predecessors( const tripoint_abs_omt & ); /** * Uses global overmap terrain coordinates. */ diff --git a/src/panels.cpp b/src/panels.cpp index 872eb8b3984a3..5926c3fd85f00 100644 --- a/src/panels.cpp +++ b/src/panels.cpp @@ -557,7 +557,7 @@ std::string display::date_string() { const std::string season = calendar::name_season( season_of_year( calendar::turn ) ); const int day_num = day_of_season( calendar::turn ) + 1; - return string_format( "%s, day %d", season, day_num ); + return string_format( _( "%s, day %d" ), season, day_num ); } std::string display::time_string( const Character &u ) @@ -899,7 +899,7 @@ std::pair display::safe_mode_text_color( const bool class std::string s_text; if( classic_mode ) { if( g->safe_mode || get_option( "AUTOSAFEMODE" ) ) { - s_text = "SAFE"; + s_text = _( "SAFE" ); } } else { s_text = g->safe_mode ? _( "On" ) : _( "Off" ); diff --git a/src/player_hardcoded_effects.cpp b/src/player_hardcoded_effects.cpp index 77958b7e5f2fe..ac8d7ac08eb5e 100644 --- a/src/player_hardcoded_effects.cpp +++ b/src/player_hardcoded_effects.cpp @@ -1167,7 +1167,7 @@ void Character::hardcoded_effects( effect &it ) formication_chance += 14400 - to_turns( dur ); } if( one_in( formication_chance ) ) { - add_effect( effect_formication, 60_minutes, bp ); + schedule_effect( effect_formication, 60_minutes, bp ); } if( dur < 1_days && one_in( 14400 ) ) { vomit(); @@ -1190,7 +1190,7 @@ void Character::hardcoded_effects( effect &it ) } } get_event_bus().send( getID() ); - remove_effect( effect_formication, bp ); + schedule_effect_removal( effect_formication, bp ); moves -= 600; triggered = true; } @@ -1264,7 +1264,7 @@ void Character::hardcoded_effects( effect &it ) } else if( one_in( 3000 ) ) { add_msg_if_player( m_bad, _( "You notice a large abscess. You pick at it." ) ); const bodypart_id &itch = random_body_part( true ); - add_effect( effect_formication, 60_minutes, itch ); + schedule_effect( effect_formication, 60_minutes, itch ); mod_pain( 1 ); } else if( one_in( 3000 ) ) { add_msg_if_player( m_bad, @@ -1279,8 +1279,8 @@ void Character::hardcoded_effects( effect &it ) if( here.is_cornerfloor( dest ) ) { here.add_field( dest, fd_tindalos_rift, 3 ); add_msg_if_player( m_info, _( "Your surroundings are permeated with a foul scent." ) ); - //Remove the effect, since it's done all it needs to do to the target. - remove_effect( effect_tindrift ); + // Queue the effect for removal, since it's done all it needs to do to the target. + it.set_duration( 0_turns ); } } } else if( id == effect_asthma ) { @@ -1305,7 +1305,7 @@ void Character::hardcoded_effects( effect &it ) apply_damage( nullptr, bodypart_id( "head" ), rng( 0, 1 ) ); if( !has_effect( effect_visuals ) ) { add_msg_if_player( m_bad, _( "Your vision is getting fuzzy." ) ); - add_effect( effect_visuals, rng( 1_minutes, 60_minutes ) ); + schedule_effect( effect_visuals, rng( 1_minutes, 60_minutes ) ); } } if( one_in( 24576 ) ) { @@ -1313,7 +1313,7 @@ void Character::hardcoded_effects( effect &it ) apply_damage( nullptr, bodypart_id( "head" ), rng( 1, 2 ) ); if( !is_blind() && !sleeping ) { add_msg_if_player( m_bad, _( "Your vision goes black!" ) ); - add_effect( effect_blind, rng( 5_turns, 20_turns ) ); + schedule_effect( effect_blind, rng( 5_turns, 20_turns ) ); } } } else if( id == effect_tapeworm ) { @@ -1336,8 +1336,8 @@ void Character::hardcoded_effects( effect &it ) add_miss_reason( _( "Your muscles are locking up and you can't fight effectively." ), 4 ); if( one_in( 3072 ) ) { add_msg_if_player( m_bad, _( "Your muscles spasm." ) ); - add_effect( effect_downed, rng( 1_turns, 4_turns ), false, 0, true ); - add_effect( effect_stunned, rng( 1_turns, 4_turns ) ); + schedule_effect( effect_downed, rng( 1_turns, 4_turns ), false, 0, true ); + schedule_effect( effect_stunned, rng( 1_turns, 4_turns ) ); if( one_in( 10 ) ) { mod_pain( rng( 1, 10 ) ); } @@ -1359,7 +1359,8 @@ void Character::hardcoded_effects( effect &it ) } if( zed_number > 0 ) { //If intensity isn't pass the cap, average it with # of zeds - add_effect( effect_grabbed, 2_turns, bodypart_id( "torso" ), false, ( intense + zed_number ) / 2 ); + schedule_effect( effect_grabbed, 2_turns, bodypart_id( "torso" ), false, + ( intense + zed_number ) / 2 ); } } else if( id == effect_bite ) { bool recovered = false; @@ -1417,7 +1418,7 @@ void Character::hardcoded_effects( effect &it ) if( !recovered ) { // Move up to infection if( dur > 6_hours ) { - add_effect( effect_infected, 1_turns, bp, true ); + schedule_effect( effect_infected, 1_turns, bp, true ); // Set ourselves up for removal it.set_duration( 0_turns ); } else if( has_effect( effect_strong_antibiotic ) ) { @@ -1461,7 +1462,7 @@ void Character::hardcoded_effects( effect &it ) //~ %s is bodypart name. add_msg_if_player( m_good, _( "Your %s wound begins to feel better!" ), body_part_name( bp ) ); - add_effect( effect_recover, 4 * dur ); + schedule_effect( effect_recover, 4 * dur ); // Set ourselves up for removal it.set_duration( 0_turns ); recovered = true; @@ -1526,7 +1527,7 @@ void Character::hardcoded_effects( effect &it ) } } else { if( !has_effect( effect_slept_through_alarm ) ) { - add_effect( effect_slept_through_alarm, 1_turns, true ); + schedule_effect( effect_slept_through_alarm, 1_turns, true ); } // 10 minute cyber-snooze it.mod_duration( 10_minutes ); @@ -1535,7 +1536,7 @@ void Character::hardcoded_effects( effect &it ) } else { if( asleep && dur == 1_turns ) { if( !has_effect( effect_slept_through_alarm ) ) { - add_effect( effect_slept_through_alarm, 1_turns, true ); + schedule_effect( effect_slept_through_alarm, 1_turns, true ); } // 10 minute automatic snooze it.mod_duration( 10_minutes ); @@ -1583,9 +1584,9 @@ void Character::hardcoded_effects( effect &it ) if( one_turn_in( 3_days ) && !has_effect( effect_valium ) ) { add_msg_if_player( m_bad, _( "You lose control of your body as it begins to convulse!" ) ); time_duration td = rng( 30_seconds, 4_minutes ); - add_effect( effect_motor_seizure, td ); - add_effect( effect_downed, td ); - add_effect( effect_stunned, td ); + schedule_effect( effect_motor_seizure, td ); + schedule_effect( effect_downed, td ); + schedule_effect( effect_stunned, td ); if( one_in( 3 ) ) { add_msg_if_player( m_bad, _( "You lose consciousness!" ) ); fall_asleep( td ); @@ -1615,7 +1616,7 @@ void Character::hardcoded_effects( effect &it ) } } else if( limb == "leg" ) { if( dice( 4, 4 ) > get_dex() ) { - add_effect( effect_downed, rng( 5_seconds, 10_seconds ) ); + schedule_effect( effect_downed, rng( 5_seconds, 10_seconds ) ); } else { add_msg_if_player( m_neutral, _( "However, you manage to keep your footing." ) ); } @@ -1625,8 +1626,8 @@ void Character::hardcoded_effects( effect &it ) if( one_turn_in( 2_days / mod ) && !has_effect( effect_valium ) ) { add_msg_if_player( m_bad, _( "You suddenly lose all muscle tone, and can't support your own weight!" ) ); - add_effect( effect_motor_seizure, rng( 1_seconds, 2_seconds ) ); - add_effect( effect_downed, rng( 5_seconds, 10_seconds ) ); + schedule_effect( effect_motor_seizure, rng( 1_seconds, 2_seconds ) ); + schedule_effect( effect_downed, rng( 5_seconds, 10_seconds ) ); } mod *= 2; /* fallthrough */ diff --git a/src/popup.cpp b/src/popup.cpp index ec44966fa0ae0..4af55c118ce25 100644 --- a/src/popup.cpp +++ b/src/popup.cpp @@ -357,6 +357,14 @@ query_popup::result query_popup::query() return res; } +catacurses::window query_popup::get_window() +{ + if( !win ) { + init(); + } + return win; +} + std::string query_popup::wait_text( const std::string &text, const nc_color &bar_color ) { static const std::array phase_icons = {{ "|", "/", "-", "\\" }}; diff --git a/src/popup.h b/src/popup.h index 997b7405af59a..b87960b8e73a3 100644 --- a/src/popup.h +++ b/src/popup.h @@ -196,7 +196,7 @@ class query_popup * Query until a valid action or an error happens and return the result. */ result query(); - + catacurses::window get_window(); protected: /** * Create or get a ui_adaptor on the UI stack to handle redrawing and diff --git a/src/proficiency.cpp b/src/proficiency.cpp index 567c9b37d64b3..b052f1b759bc9 100644 --- a/src/proficiency.cpp +++ b/src/proficiency.cpp @@ -76,6 +76,8 @@ void proficiency::load( const JsonObject &jo, const std::string & ) optional( jo, was_loaded, "default_time_multiplier", _default_time_multiplier ); optional( jo, was_loaded, "default_fail_multiplier", _default_fail_multiplier ); + optional( jo, was_loaded, "default_weakpoint_bonus", _default_weakpoint_bonus ); + optional( jo, was_loaded, "default_weakpoint_penalty", _default_weakpoint_penalty ); optional( jo, was_loaded, "time_to_learn", _time_to_learn ); optional( jo, was_loaded, "required_proficiencies", _required ); optional( jo, was_loaded, "ignore_focus", _ignore_focus ); @@ -123,6 +125,17 @@ float proficiency::default_fail_multiplier() const return _default_fail_multiplier; } +float proficiency::default_weakpoint_bonus() const +{ + return _default_weakpoint_bonus; +} + +float proficiency::default_weakpoint_penalty() const +{ + return _default_weakpoint_penalty; +} + + time_duration proficiency::time_to_learn() const { return _time_to_learn; diff --git a/src/proficiency.h b/src/proficiency.h index cd69250acb226..2c367e582196c 100644 --- a/src/proficiency.h +++ b/src/proficiency.h @@ -59,6 +59,9 @@ class proficiency float _default_time_multiplier = 2.0f; float _default_fail_multiplier = 2.0f; + float _default_weakpoint_bonus = 0.0f; + float _default_weakpoint_penalty = 0.0f; + time_duration _time_to_learn = 9999_hours; std::set _required; @@ -80,6 +83,9 @@ class proficiency float default_time_multiplier() const; float default_fail_multiplier() const; + float default_weakpoint_bonus() const; + float default_weakpoint_penalty() const; + time_duration time_to_learn() const; std::set required_proficiencies() const; diff --git a/src/ranged.cpp b/src/ranged.cpp index 9599b18e119a7..973e452f9cfa4 100644 --- a/src/ranged.cpp +++ b/src/ranged.cpp @@ -747,8 +747,8 @@ int Character::fire_gun( const tripoint &target, int shots, item &gun ) } map &here = get_map(); - // usage of any attached bipod is dependent upon terrain - bool bipod = here.has_flag_ter_or_furn( ter_furn_flag::TFLAG_MOUNTABLE, pos() ); + // usage of any attached bipod is dependent upon terrain or on being prone + bool bipod = here.has_flag_ter_or_furn( ter_furn_flag::TFLAG_MOUNTABLE, pos() ) || is_prone(); if( !bipod ) { if( const optional_vpart_position vp = here.veh_at( pos() ) ) { bipod = vp->vehicle().has_part( pos(), "MOUNTABLE" ); @@ -788,10 +788,7 @@ int Character::fire_gun( const tripoint &target, int shots, item &gun ) pos() ) ) : nullptr; weakpoint_attack wp_attack; - wp_attack.source = this; wp_attack.weapon = &gun; - wp_attack.is_melee = false; - wp_attack.wp_skill = ranged_weakpoint_skill( gun ); dealt_projectile_attack shot = projectile_attack( make_gun_projectile( gun ), pos(), aim, dispersion, this, in_veh, wp_attack ); curshot++; @@ -1168,10 +1165,8 @@ dealt_projectile_attack Character::throw_item( const tripoint &target, const ite const float final_xp_mult = range_factor * damage_factor; weakpoint_attack wp_attack; - wp_attack.source = this; wp_attack.weapon = &to_throw; - wp_attack.is_melee = false; - wp_attack.wp_skill = throw_weakpoint_skill(); + wp_attack.is_thrown = true; dealt_projectile_attack dealt_attack = projectile_attack( proj, throw_from, target, dispersion, this, nullptr, wp_attack ); @@ -1491,7 +1486,7 @@ static int print_ranged_chance( const Character &you, const catacurses::window & return string_format( "%s: %3d%%", pgettext( "aim_confidence", config.label.c_str() ), config.color, chance ); }, enumeration_conjunction::none ); - confidence_s.append( string_format( ", Miss: %3d%%", + confidence_s.append( string_format( _( ", Miss: %3d%%" ), ( 100 - last_chance ) ) ); line_number += fold_and_print_from( w, point( 1, line_number ), window_width, 0, c_dark_gray, confidence_s ); @@ -3307,9 +3302,9 @@ void target_ui::panel_cursor_info( int &text_y ) { std::string label_range; if( src == dst ) { - label_range = string_format( "Range: %d", range ); + label_range = string_format( _( "Range: %d" ), range ); } else { - label_range = string_format( "Range: %d/%d", dist_fn( dst ), range ); + label_range = string_format( _( "Range: %d/%d" ), dist_fn( dst ), range ); } if( status == Status::OutOfRange && mode != TargetMode::Turrets ) { // Since each turret has its own range, highlighting cursor diff --git a/src/rotatable_symbols.h b/src/rotatable_symbols.h index 4d6895ae96ddb..42eef4ed837f8 100644 --- a/src/rotatable_symbols.h +++ b/src/rotatable_symbols.h @@ -4,6 +4,7 @@ #include #include +#include class JsonObject; diff --git a/src/savegame.cpp b/src/savegame.cpp index 76dcbe1b90cf0..a4953f4962269 100644 --- a/src/savegame.cpp +++ b/src/savegame.cpp @@ -89,6 +89,10 @@ void game::serialize( std::ostream &fout ) json.member( "levz", pos_sm.z ); json.member( "om_x", pos_om.x ); json.member( "om_y", pos_om.y ); + // view offset + json.member( "view_offset_x", u.view_offset.x ); + json.member( "view_offset_y", u.view_offset.y ); + json.member( "view_offset_z", u.view_offset.z ); json.member( "grscent", scent.serialize() ); json.member( "typescent", scent.serialize( true ) ); @@ -118,7 +122,6 @@ void game::serialize( std::ostream &fout ) json.start_object(); json.member( "time", temp_queued.top().time ); json.member( "eoc", temp_queued.top().eoc ); - json.member( "recurring", temp_queued.top().recurring ); json.end_object(); temp_queued.pop(); } @@ -203,6 +206,10 @@ void game::unserialize( std::istream &fin, const std::string &path ) data.read( "om_x", com.x() ); data.read( "om_y", com.y() ); + data.read( "view_offset_x", u.view_offset.x ); + data.read( "view_offset_y", u.view_offset.y ); + data.read( "view_offset_z", u.view_offset.z ); + calendar::turn = time_point( tmpturn ); calendar::start_of_cataclysm = time_point( tmpcalstart ); @@ -244,7 +251,6 @@ void game::unserialize( std::istream &fin, const std::string &path ) queued_eoc temp; temp.time = time_point( elem.get_int( "time" ) ); temp.eoc = effect_on_condition_id( elem.get_string( "eoc" ) ); - temp.recurring = elem.get_bool( "recurring" ); queued_global_effect_on_conditions.push( temp ); } global_variables_instance.unserialize( data ); @@ -736,6 +742,12 @@ void overmap::unserialize( std::istream &fin ) for( const std::pair &p : flat_index ) { joins_used.insert( p ); } + } else if( name == "predecessors" ) { + std::vector>> flattened_predecessors; + jsin.read( flattened_predecessors, true ); + for( std::pair> &p : flattened_predecessors ) { + predecessors_.insert( std::move( p ) ); + } } } } @@ -1156,6 +1168,11 @@ void overmap::serialize( std::ostream &fout ) const json.member( "joins_used", flattened_joins_used ); fout << std::endl; + std::vector>> flattened_predecessors( + predecessors_.begin(), predecessors_.end() ); + json.member( "predecessors", flattened_predecessors ); + fout << std::endl; + json.end_object(); fout << std::endl; } diff --git a/src/savegame_json.cpp b/src/savegame_json.cpp index 833073ebbc3db..d50a9cebdfdcb 100644 --- a/src/savegame_json.cpp +++ b/src/savegame_json.cpp @@ -485,6 +485,7 @@ void Character::trait_data::serialize( JsonOut &json ) const json.member( "key", key ); json.member( "charge", charge ); json.member( "powered", powered ); + json.member( "show_sprite", show_sprite ); json.end_object(); } @@ -494,6 +495,7 @@ void Character::trait_data::deserialize( const JsonObject &data ) data.read( "key", key ); data.read( "charge", charge ); data.read( "powered", powered ); + data.read( "show_sprite", show_sprite ); } void consumption_event::serialize( JsonOut &json ) const @@ -1044,7 +1046,6 @@ void Character::load( const JsonObject &data ) queued_eoc temp; temp.time = time_point( elem.get_int( "time" ) ); temp.eoc = effect_on_condition_id( elem.get_string( "eoc" ) ); - temp.recurring = elem.get_bool( "recurring" ); queued_effect_on_conditions.push( temp ); } data.read( "inactive_eocs", inactive_effect_on_condition_vector ); @@ -1264,7 +1265,6 @@ void Character::store( JsonOut &json ) const json.start_object(); json.member( "time", temp_queued.top().time ); json.member( "eoc", temp_queued.top().eoc ); - json.member( "recurring", temp_queued.top().recurring ); json.end_object(); temp_queued.pop(); } diff --git a/src/sdl_font.cpp b/src/sdl_font.cpp index 82c7cf03a998b..1d29d95b5dfaf 100644 --- a/src/sdl_font.cpp +++ b/src/sdl_font.cpp @@ -333,7 +333,15 @@ SDL_Texture_Ptr CachedTTFFont::create_glyph( const SDL_Renderer_Ptr &renderer, bool CachedTTFFont::isGlyphProvided( const std::string &ch ) const { - return TTF_GlyphIsProvided( font.get(), UTF8_getch( ch ) ); + // Just return false if the glyph is not provided by the font + if( !TTF_GlyphIsProvided( font.get(), UTF8_getch( ch ) ) ) { + return false; + } + + // Test whether the glyph can actually be rendered + constexpr SDL_Color white{255, 255, 255, 0}; + SDL_Surface_Ptr surface( TTF_RenderUTF8_Solid( font.get(), ch.c_str(), white ) ); + return static_cast( surface ); } void CachedTTFFont::OutputChar( const SDL_Renderer_Ptr &renderer, const GeometryRenderer_Ptr &, diff --git a/src/sdlsound.cpp b/src/sdlsound.cpp index 327b4b341c508..a59f878636a89 100644 --- a/src/sdlsound.cpp +++ b/src/sdlsound.cpp @@ -35,7 +35,15 @@ #define dbg(x) DebugLog((x),D_SDL) << __FILE__ << ":" << __LINE__ << ": " -using id_and_variant = std::pair; +struct id_variant_season { + std::string id; + std::string variant; + std::string season; + + bool operator<( const id_variant_season &rhs ) const { + return std::tie( id, variant, season ) < std::tie( rhs.id, rhs.variant, rhs.season ); + } +}; struct sound_effect_resource { std::string path; struct deleter { @@ -52,7 +60,7 @@ struct sound_effect { }; struct sfx_resources_t { std::vector resource; - std::map> sound_effects; + std::map> sound_effects; }; struct music_playlist { // list of filenames relative to the soundpack location @@ -79,7 +87,7 @@ static std::string current_soundpack_path; static std::unordered_map unique_paths; static sfx_resources_t sfx_resources; -static std::vector sfx_preload; +static std::vector sfx_preload; bool sounds::sound_enabled = false; @@ -332,7 +340,9 @@ void sfx::load_sound_effects( const JsonObject &jsobj ) if( !sound_init_success ) { return; } - const id_and_variant key( jsobj.get_string( "id" ), jsobj.get_string( "variant", "default" ) ); + const id_variant_season key = { jsobj.get_string( "id" ), + jsobj.get_string( "variant", "default" ), jsobj.get_string( "season", "" ) + }; const int volume = jsobj.get_int( "volume", 100 ); auto &effects = sfx_resources.sound_effects[ key ]; @@ -351,8 +361,9 @@ void sfx::load_sound_effect_preload( const JsonObject &jsobj ) } for( JsonObject aobj : jsobj.get_array( "preload" ) ) { - const id_and_variant preload_key( aobj.get_string( "id" ), aobj.get_string( "variant", - "default" ) ); + const id_variant_season preload_key = { aobj.get_string( "id" ), + aobj.get_string( "variant", "default" ), aobj.get_string( "season", "" ) + }; sfx_preload.push_back( preload_key ); } } @@ -379,9 +390,9 @@ void sfx::load_playlist( const JsonObject &jsobj ) // Returns a random sound effect matching given id and variant or `nullptr` if there is no // matching sound effect. -static const sound_effect *find_random_effect( const id_and_variant &id_variants_pair ) +static const sound_effect *find_random_effect( const id_variant_season &id_var_seas ) { - const auto iter = sfx_resources.sound_effects.find( id_variants_pair ); + const auto iter = sfx_resources.sound_effects.find( id_var_seas ); if( iter == sfx_resources.sound_effects.end() ) { return nullptr; } @@ -389,18 +400,28 @@ static const sound_effect *find_random_effect( const id_and_variant &id_variants } // Same as above, but with fallback to "default" variant. May still return `nullptr` -static const sound_effect *find_random_effect( const std::string &id, const std::string &variant ) +static const sound_effect *find_random_effect( const std::string &id, const std::string &variant, + const std::string &season ) { - const sound_effect *eff = find_random_effect( id_and_variant( id, variant ) ); - if( eff != nullptr ) { - return eff; + const sound_effect *eff1 = find_random_effect( { id, variant, season } ); + if( eff1 != nullptr ) { + return eff1; + } + const sound_effect *eff2 = find_random_effect( { id, variant, "" } ); + if( eff2 != nullptr ) { + return eff2; + } + const sound_effect *eff3 = find_random_effect( { id, "default", season } ); + if( eff3 != nullptr ) { + return eff3; } - return find_random_effect( id_and_variant( id, "default" ) ); + return find_random_effect( { id, "default", "" } ); } -bool sfx::has_variant_sound( const std::string &id, const std::string &variant ) +bool sfx::has_variant_sound( const std::string &id, const std::string &variant, + const std::string &season ) { - return find_random_effect( id, variant ) != nullptr; + return find_random_effect( id, variant, season ) != nullptr; } // Deletes the dynamically created chunk (if such a chunk had been played). @@ -460,7 +481,8 @@ static Mix_Chunk *do_pitch_shift( Mix_Chunk *s, float pitch ) return result; } -void sfx::play_variant_sound( const std::string &id, const std::string &variant, int volume ) +void sfx::play_variant_sound( const std::string &id, const std::string &variant, + const std::string &season, int volume ) { if( test_mode ) { return; @@ -471,9 +493,9 @@ void sfx::play_variant_sound( const std::string &id, const std::string &variant, if( !check_sound( volume ) ) { return; } - const sound_effect *eff = find_random_effect( id, variant ); + const sound_effect *eff = find_random_effect( id, variant, season ); if( eff == nullptr ) { - eff = find_random_effect( id, "default" ); + eff = find_random_effect( id, "default", "" ); if( eff == nullptr ) { return; } @@ -489,8 +511,9 @@ void sfx::play_variant_sound( const std::string &id, const std::string &variant, } } -void sfx::play_variant_sound( const std::string &id, const std::string &variant, int volume, - units::angle angle, double pitch_min, double pitch_max ) +void sfx::play_variant_sound( const std::string &id, const std::string &variant, + const std::string &season, + int volume, units::angle angle, double pitch_min, double pitch_max ) { if( test_mode ) { return; @@ -501,7 +524,7 @@ void sfx::play_variant_sound( const std::string &id, const std::string &variant, if( !check_sound( volume ) ) { return; } - const sound_effect *eff = find_random_effect( id, variant ); + const sound_effect *eff = find_random_effect( id, variant, season ); if( eff == nullptr ) { return; } @@ -540,7 +563,8 @@ void sfx::play_variant_sound( const std::string &id, const std::string &variant, } } -void sfx::play_ambient_variant_sound( const std::string &id, const std::string &variant, int volume, +void sfx::play_ambient_variant_sound( const std::string &id, const std::string &variant, + const std::string &season, int volume, channel channel, int fade_in_duration, double pitch, int loops ) { if( test_mode ) { @@ -552,7 +576,7 @@ void sfx::play_ambient_variant_sound( const std::string &id, const std::string & if( is_channel_playing( channel ) ) { return; } - const sound_effect *eff = find_random_effect( id, variant ); + const sound_effect *eff = find_random_effect( id, variant, season ); if( eff == nullptr ) { return; } @@ -622,7 +646,7 @@ void load_soundset() } // Preload sound effects - for( const id_and_variant &preload : sfx_preload ) { + for( const id_variant_season &preload : sfx_preload ) { const auto find_result = sfx_resources.sound_effects.find( preload ); if( find_result != sfx_resources.sound_effects.end() ) { for( const auto &sfx : find_result->second ) { @@ -642,7 +666,7 @@ void load_soundset() // to force deallocation of resources. { sfx_preload.clear(); - std::vector t_swap; + std::vector t_swap; sfx_preload.swap( t_swap ); } } diff --git a/src/sdltiles.cpp b/src/sdltiles.cpp index d2cdfeee6bd7d..5b1bdd6a5bd81 100644 --- a/src/sdltiles.cpp +++ b/src/sdltiles.cpp @@ -548,11 +548,10 @@ void refresh_display() // Select default target (the window), copy rendered buffer // there, present it, select the buffer as target again. SetRenderTarget( renderer, nullptr ); + ClearScreen(); #if defined(__ANDROID__) SDL_Rect dstrect = get_android_render_rect( TERMINAL_WIDTH * fontwidth, TERMINAL_HEIGHT * fontheight ); - SetRenderDrawColor( renderer, 0, 0, 0, 255 ); - RenderClear( renderer ); RenderCopy( renderer, display_buffer, NULL, &dstrect ); #else RenderCopy( renderer, display_buffer, nullptr, nullptr ); @@ -1801,6 +1800,52 @@ static int sdl_keysym_to_curses( const SDL_Keysym &keysym ) } } + if( diag_mode == "mode4" ) { + if( ( keysym.mod & KMOD_SHIFT ) || ( keysym.mod & KMOD_CTRL ) ) { + const Uint8 *s = SDL_GetKeyboardState( nullptr ); + const int count = s[SDL_SCANCODE_LEFT] + s[SDL_SCANCODE_RIGHT] + s[SDL_SCANCODE_UP] + + s[SDL_SCANCODE_DOWN]; + if( count == 2 ) { + switch( keysym.sym ) { + case SDLK_LEFT: + if( s[SDL_SCANCODE_UP] ) { + return inp_mngr.get_first_char_for_action( "LEFTUP" ); + } + if( s[SDL_SCANCODE_DOWN] ) { + return inp_mngr.get_first_char_for_action( "LEFTDOWN" ); + } + return 0; + case SDLK_RIGHT: + if( s[SDL_SCANCODE_UP] ) { + return inp_mngr.get_first_char_for_action( "RIGHTUP" ); + } + if( s[SDL_SCANCODE_DOWN] ) { + return inp_mngr.get_first_char_for_action( "RIGHTDOWN" ); + } + return 0; + case SDLK_UP: + if( s[SDL_SCANCODE_LEFT] ) { + return inp_mngr.get_first_char_for_action( "LEFTUP" ); + } + if( s[SDL_SCANCODE_RIGHT] ) { + return inp_mngr.get_first_char_for_action( "RIGHTUP" ); + } + return 0; + case SDLK_DOWN: + if( s[SDL_SCANCODE_LEFT] ) { + return inp_mngr.get_first_char_for_action( "LEFTDOWN" ); + } + if( s[SDL_SCANCODE_RIGHT] ) { + return inp_mngr.get_first_char_for_action( "RIGHTDOWN" ); + } + return 0; + } + } else if( count > 0 ) { + return 0; + } + } + } + if( keysym.mod & KMOD_CTRL && keysym.sym >= 'a' && keysym.sym <= 'z' ) { // ASCII ctrl codes, ^A through ^Z. return keysym.sym - 'a' + '\1'; diff --git a/src/sounds.cpp b/src/sounds.cpp index 249e25fe2b94b..bbfac0af48e99 100644 --- a/src/sounds.cpp +++ b/src/sounds.cpp @@ -98,6 +98,7 @@ struct sound_event { bool footstep; std::string id; std::string variant; + std::string season; }; struct centroid { @@ -168,6 +169,22 @@ static int sound_distance( const tripoint &source, const tripoint &sink ) return rl_dist( source.xy(), sink.xy() ) + vertical_attenuation; } +static std::string season_str( const season_type &season ) +{ + switch( season ) { + case season_type::SPRING: + return "spring"; + case season_type::SUMMER: + return "summer"; + case season_type::AUTUMN: + return "autumn"; + case season_type::WINTER: + return "winter"; + default: + return ""; + } +} + static bool is_provocative( sounds::sound_t category ) { switch( category ) { @@ -209,10 +226,12 @@ void sounds::sound( const tripoint &p, int vol, sound_t category, const std::str if( description.empty() ) { debugmsg( "Sound at %d:%d has no description!", p.x, p.y ); } + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); recent_sounds.emplace_back( std::make_pair( p, monster_sound_event{ vol, is_provocative( category ) } ) ); sounds_since_last_turn.emplace_back( std::make_pair( p, - sound_event {vol, category, description, ambient, - false, id, variant} ) ); + sound_event { vol, category, description, ambient, + false, id, variant, seas_str } ) ); } void sounds::sound( const tripoint &p, int vol, sound_t category, const translation &description, @@ -224,8 +243,10 @@ void sounds::sound( const tripoint &p, int vol, sound_t category, const translat void sounds::add_footstep( const tripoint &p, int volume, int, monster *, const std::string &footstep ) { + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); sounds_since_last_turn.emplace_back( std::make_pair( p, sound_event { volume, - sound_t::movement, footstep, false, true, "", ""} ) ); + sound_t::movement, footstep, false, true, "", "", seas_str} ) ); } template @@ -557,8 +578,9 @@ void sounds::process_sound_markers( Character *you ) const std::string &sfx_id = sound.id; const std::string &sfx_variant = sound.variant; + const std::string &sfx_season = sound.season; if( !sfx_id.empty() ) { - sfx::play_variant_sound( sfx_id, sfx_variant, sfx::get_heard_volume( pos ) ); + sfx::play_variant_sound( sfx_id, sfx_variant, sfx_season, sfx::get_heard_volume( pos ) ); } // Place footstep markers. @@ -742,11 +764,13 @@ void sfx::do_vehicle_engine_sfx() } std::pair id_and_variant; + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); for( size_t e = 0; e < veh->engines.size(); ++e ) { if( veh->is_engine_on( e ) ) { if( sfx::has_variant_sound( "engine_working_internal", - veh->part_info( veh->engines[ e ] ).get_id().str() ) ) { + veh->part_info( veh->engines[ e ] ).get_id().str(), seas_str ) ) { id_and_variant = std::make_pair( "engine_working_internal", veh->part_info( veh->engines[ e ] ).get_id().str() ); } else if( veh->is_engine_type( e, fuel_type_muscle ) ) { @@ -762,7 +786,7 @@ void sfx::do_vehicle_engine_sfx() } if( !is_channel_playing( ch ) ) { - play_ambient_variant_sound( id_and_variant.first, id_and_variant.second, + play_ambient_variant_sound( id_and_variant.first, id_and_variant.second, seas_str, sfx::get_heard_volume( player_character.pos() ), ch, 1000 ); add_msg_debug( debugmode::DF_SOUND, "START %s %s", id_and_variant.first, id_and_variant.second ); } else { @@ -800,11 +824,11 @@ void sfx::do_vehicle_engine_sfx() } if( current_gear > previous_gear ) { - play_variant_sound( "vehicle", "gear_shift", get_heard_volume( player_character.pos() ), + play_variant_sound( "vehicle", "gear_shift", seas_str, get_heard_volume( player_character.pos() ), 0_degrees, 0.8, 0.8 ); add_msg_debug( debugmode::DF_SOUND, "GEAR UP" ); } else if( current_gear < previous_gear ) { - play_variant_sound( "vehicle", "gear_shift", get_heard_volume( player_character.pos() ), + play_variant_sound( "vehicle", "gear_shift", seas_str, get_heard_volume( player_character.pos() ), 0_degrees, 1.2, 1.2 ); add_msg_debug( debugmode::DF_SOUND, "GEAR DOWN" ); } @@ -824,7 +848,7 @@ void sfx::do_vehicle_engine_sfx() if( current_speed != previous_speed ) { Mix_HaltChannel( static_cast( ch ) ); add_msg_debug( debugmode::DF_SOUND, "STOP speed %d =/= %d", current_speed, previous_speed ); - play_ambient_variant_sound( id_and_variant.first, id_and_variant.second, + play_ambient_variant_sound( id_and_variant.first, id_and_variant.second, seas_str, sfx::get_heard_volume( player_character.pos() ), ch, 1000, pitch ); add_msg_debug( debugmode::DF_SOUND, "PITCH %f", pitch ); } @@ -878,11 +902,13 @@ void sfx::do_vehicle_exterior_engine_sfx() vol = MIX_MAX_VOLUME * noise_factor / veh->vehicle_noise; std::pair id_and_variant; + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); for( size_t e = 0; e < veh->engines.size(); ++e ) { if( veh->is_engine_on( e ) ) { if( sfx::has_variant_sound( "engine_working_external", - veh->part_info( veh->engines[ e ] ).get_id().str() ) ) { + veh->part_info( veh->engines[ e ] ).get_id().str(), seas_str ) ) { id_and_variant = std::make_pair( "engine_working_external", veh->part_info( veh->engines[ e ] ).get_id().str() ); } else if( veh->is_engine_type( e, fuel_type_muscle ) ) { @@ -902,13 +928,12 @@ void sfx::do_vehicle_exterior_engine_sfx() Mix_SetPosition( ch_int, to_degrees( get_heard_angle( veh->global_pos3() ) ), 0 ); set_channel_volume( ch, vol ); add_msg_debug( debugmode::DF_SOUND, "PLAYING exterior_engine_sound, vol: ex:%d true:%d", vol, - Mix_Volume( ch_int, - -1 ) ); + Mix_Volume( ch_int, -1 ) ); } else { engine_external_id_and_variant = id_and_variant; Mix_HaltChannel( ch_int ); add_msg_debug( debugmode::DF_SOUND, "STOP exterior_engine_sound, change id/var" ); - play_ambient_variant_sound( id_and_variant.first, id_and_variant.second, 128, ch, 0 ); + play_ambient_variant_sound( id_and_variant.first, id_and_variant.second, seas_str, 128, ch, 0 ); Mix_SetPosition( ch_int, to_degrees( get_heard_angle( veh->global_pos3() ) ), 0 ); set_channel_volume( ch, vol ); add_msg_debug( debugmode::DF_SOUND, "START exterior_engine_sound %s %s vol: %d", @@ -917,7 +942,7 @@ void sfx::do_vehicle_exterior_engine_sfx() Mix_Volume( ch_int, -1 ) ); } } else { - play_ambient_variant_sound( id_and_variant.first, id_and_variant.second, 128, ch, 0 ); + play_ambient_variant_sound( id_and_variant.first, id_and_variant.second, seas_str, 128, ch, 0 ); add_msg_debug( debugmode::DF_SOUND, "Vol: %d %d", vol, Mix_Volume( ch_int, -1 ) ); Mix_SetPosition( ch_int, to_degrees( get_heard_angle( veh->global_pos3() ) ), 0 ); add_msg_debug( debugmode::DF_SOUND, "Vol: %d %d", vol, Mix_Volume( ch_int, -1 ) ); @@ -948,18 +973,20 @@ void sfx::do_ambient() const bool is_underground = player_character.pos().z < 0; const bool is_sheltered = g->is_sheltered( player_character.pos() ); const bool weather_changed = get_weather().weather_id != previous_weather; + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); // Step in at night time / we are not indoors if( is_night( calendar::turn ) && !is_sheltered && !is_channel_playing( channel::nighttime_outdoors_env ) && !is_deaf ) { fade_audio_group( group::time_of_day, 1000 ); - play_ambient_variant_sound( "environment", "nighttime", heard_volume, + play_ambient_variant_sound( "environment", "nighttime", seas_str, heard_volume, channel::nighttime_outdoors_env, 1000 ); // Step in at day time / we are not indoors } else if( !is_night( calendar::turn ) && !is_channel_playing( channel::daytime_outdoors_env ) && !is_sheltered && !is_deaf ) { fade_audio_group( group::time_of_day, 1000 ); - play_ambient_variant_sound( "environment", "daytime", heard_volume, channel::daytime_outdoors_env, - 1000 ); + play_ambient_variant_sound( "environment", "daytime", seas_str, heard_volume, + channel::daytime_outdoors_env, 1000 ); } // We are underground if( ( is_underground && !is_channel_playing( channel::underground_env ) && @@ -967,8 +994,8 @@ void sfx::do_ambient() weather_changed && !is_deaf ) ) { fade_audio_group( group::weather, 1000 ); fade_audio_group( group::time_of_day, 1000 ); - play_ambient_variant_sound( "environment", "underground", heard_volume, channel::underground_env, - 1000 ); + play_ambient_variant_sound( "environment", "underground", seas_str, heard_volume, + channel::underground_env, 1000 ); // We are indoors } else if( ( is_sheltered && !is_underground && !is_channel_playing( channel::indoors_env ) && !is_deaf ) || @@ -976,15 +1003,16 @@ void sfx::do_ambient() weather_changed && !is_deaf ) ) { fade_audio_group( group::weather, 1000 ); fade_audio_group( group::time_of_day, 1000 ); - play_ambient_variant_sound( "environment", "indoors", heard_volume, channel::indoors_env, 1000 ); + play_ambient_variant_sound( "environment", "indoors", seas_str, heard_volume, channel::indoors_env, + 1000 ); } // We are indoors and it is also raining if( get_weather().weather_id->rains && get_weather().weather_id->precip != precip_class::very_light && !is_underground && is_sheltered && !is_channel_playing( channel::indoors_rain_env ) ) { - play_ambient_variant_sound( "environment", "indoors_rain", heard_volume, channel::indoors_rain_env, - 1000 ); + play_ambient_variant_sound( "environment", "indoors_rain", seas_str, heard_volume, + channel::indoors_rain_env, 1000 ); } if( ( !is_sheltered && get_weather().weather_id->sound_category != weather_sound_category::silent && !is_deaf && @@ -1000,40 +1028,34 @@ void sfx::do_ambient() // We are outside and there is precipitation switch( get_weather().weather_id->sound_category ) { case weather_sound_category::drizzle: - play_ambient_variant_sound( "environment", "WEATHER_DRIZZLE", heard_volume, - channel::outdoors_drizzle_env, - 1000 ); + play_ambient_variant_sound( "environment", "WEATHER_DRIZZLE", seas_str, heard_volume, + channel::outdoors_drizzle_env, 1000 ); break; case weather_sound_category::rainy: - play_ambient_variant_sound( "environment", "WEATHER_RAINY", heard_volume, - channel::outdoors_rain_env, - 1000 ); + play_ambient_variant_sound( "environment", "WEATHER_RAINY", seas_str, heard_volume, + channel::outdoors_rain_env, 1000 ); break; case weather_sound_category::thunder: - play_ambient_variant_sound( "environment", "WEATHER_THUNDER", heard_volume, - channel::outdoors_thunderstorm_env, - 1000 ); + play_ambient_variant_sound( "environment", "WEATHER_THUNDER", seas_str, heard_volume, + channel::outdoors_thunderstorm_env, 1000 ); break; case weather_sound_category::flurries: - play_ambient_variant_sound( "environment", "WEATHER_FLURRIES", heard_volume, - channel::outdoors_flurry_env, - 1000 ); + play_ambient_variant_sound( "environment", "WEATHER_FLURRIES", seas_str, heard_volume, + channel::outdoors_flurry_env, 1000 ); break; case weather_sound_category::snowstorm: - play_ambient_variant_sound( "environment", "WEATHER_SNOWSTORM", heard_volume, - channel::outdoor_blizzard, - 1000 ); + play_ambient_variant_sound( "environment", "WEATHER_SNOWSTORM", seas_str, heard_volume, + channel::outdoor_blizzard, 1000 ); break; case weather_sound_category::snow: - play_ambient_variant_sound( "environment", "WEATHER_SNOW", heard_volume, channel::outdoors_snow_env, - 1000 ); + play_ambient_variant_sound( "environment", "WEATHER_SNOW", seas_str, heard_volume, + channel::outdoors_snow_env, 1000 ); break; case weather_sound_category::silent: break; case weather_sound_category::portal_storm: - play_ambient_variant_sound( "environment", "WEATHER_PORTAL_STORM", heard_volume, - channel::outdoors_portal_storm_env, - 1000 ); + play_ambient_variant_sound( "environment", "WEATHER_PORTAL_STORM", seas_str, heard_volume, + channel::outdoors_portal_storm_env, 1000 ); break; case weather_sound_category::last: debugmsg( "Invalid weather sound category." ); @@ -1069,6 +1091,8 @@ void sfx::generate_gun_sound( const Character &source_arg, const item &firing ) int distance = 0; std::string selected_sound; const Character &player_character = get_player_character(); + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); // this does not mean p == avatar (it could be a vehicle turret) if( player_character.pos() == source ) { selected_sound = "fire_gun"; @@ -1091,7 +1115,7 @@ void sfx::generate_gun_sound( const Character &source_arg, const item &firing ) } } - play_variant_sound( selected_sound, weapon_id.str(), heard_volume, angle, 0.8, 1.2 ); + play_variant_sound( selected_sound, weapon_id.str(), seas_str, heard_volume, angle, 0.8, 1.2 ); start_sfx_timestamp = std::chrono::high_resolution_clock::now(); } @@ -1178,6 +1202,8 @@ void sfx::sound_thread::operator()() const // runs). std::this_thread::sleep_for( std::chrono::milliseconds( rng( 1, 2 ) ) ); std::string variant_used; + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); static const skill_id skill_bashing( "bashing" ); static const skill_id skill_cutting( "cutting" ); @@ -1185,37 +1211,37 @@ void sfx::sound_thread::operator()() const if( weapon_skill == skill_bashing && weapon_volume <= 8 ) { variant_used = "small_bash"; - play_variant_sound( "melee_swing", "small_bash", vol_src, ang_src, 0.8, 1.2 ); + play_variant_sound( "melee_swing", "small_bash", seas_str, vol_src, ang_src, 0.8, 1.2 ); } else if( weapon_skill == skill_bashing && weapon_volume >= 9 ) { variant_used = "big_bash"; - play_variant_sound( "melee_swing", "big_bash", vol_src, ang_src, 0.8, 1.2 ); + play_variant_sound( "melee_swing", "big_bash", seas_str, vol_src, ang_src, 0.8, 1.2 ); } else if( ( weapon_skill == skill_cutting || weapon_skill == skill_stabbing ) && weapon_volume <= 6 ) { variant_used = "small_cutting"; - play_variant_sound( "melee_swing", "small_cutting", vol_src, ang_src, 0.8, 1.2 ); + play_variant_sound( "melee_swing", "small_cutting", seas_str, vol_src, ang_src, 0.8, 1.2 ); } else if( ( weapon_skill == skill_cutting || weapon_skill == skill_stabbing ) && weapon_volume >= 7 ) { variant_used = "big_cutting"; - play_variant_sound( "melee_swing", "big_cutting", vol_src, ang_src, 0.8, 1.2 ); + play_variant_sound( "melee_swing", "big_cutting", seas_str, vol_src, ang_src, 0.8, 1.2 ); } else { variant_used = "default"; - play_variant_sound( "melee_swing", "default", vol_src, ang_src, 0.8, 1.2 ); + play_variant_sound( "melee_swing", "default", seas_str, vol_src, ang_src, 0.8, 1.2 ); } if( hit ) { if( targ_mon ) { if( material == "steel" ) { std::this_thread::sleep_for( std::chrono::milliseconds( rng( weapon_volume * 12, weapon_volume * 16 ) ) ); - play_variant_sound( "melee_hit_metal", variant_used, vol_targ, ang_targ, 0.8, 1.2 ); + play_variant_sound( "melee_hit_metal", variant_used, seas_str, vol_targ, ang_targ, 0.8, 1.2 ); } else { std::this_thread::sleep_for( std::chrono::milliseconds( rng( weapon_volume * 12, weapon_volume * 16 ) ) ); - play_variant_sound( "melee_hit_flesh", variant_used, vol_targ, ang_targ, 0.8, 1.2 ); + play_variant_sound( "melee_hit_flesh", variant_used, seas_str, vol_targ, ang_targ, 0.8, 1.2 ); } } else { std::this_thread::sleep_for( std::chrono::milliseconds( rng( weapon_volume * 9, weapon_volume * 12 ) ) ); - play_variant_sound( "melee_hit_flesh", variant_used, vol_targ, ang_targ, 0.8, 1.2 ); + play_variant_sound( "melee_hit_flesh", variant_used, seas_str, vol_targ, ang_targ, 0.8, 1.2 ); } } } @@ -1228,6 +1254,8 @@ void sfx::do_projectile_hit( const Creature &target ) const int heard_volume = sfx::get_heard_volume( target.pos() ); const units::angle angle = get_heard_angle( target.pos() ); + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); if( target.is_monster() ) { const monster &mon = dynamic_cast( target ); static const std::set fleshy = { @@ -1242,17 +1270,17 @@ void sfx::do_projectile_hit( const Creature &target ) } ); if( !is_fleshy && mon.made_of( material_id( "stone" ) ) ) { - play_variant_sound( "bullet_hit", "hit_wall", heard_volume, angle, 0.8, 1.2 ); + play_variant_sound( "bullet_hit", "hit_wall", seas_str, heard_volume, angle, 0.8, 1.2 ); return; } else if( !is_fleshy && mon.made_of( material_id( "steel" ) ) ) { - play_variant_sound( "bullet_hit", "hit_metal", heard_volume, angle, 0.8, 1.2 ); + play_variant_sound( "bullet_hit", "hit_metal", seas_str, heard_volume, angle, 0.8, 1.2 ); return; } else { - play_variant_sound( "bullet_hit", "hit_flesh", heard_volume, angle, 0.8, 1.2 ); + play_variant_sound( "bullet_hit", "hit_flesh", seas_str, heard_volume, angle, 0.8, 1.2 ); return; } } - play_variant_sound( "bullet_hit", "hit_flesh", heard_volume, angle, 0.8, 1.2 ); + play_variant_sound( "bullet_hit", "hit_flesh", seas_str, heard_volume, angle, 0.8, 1.2 ); } void sfx::do_player_death_hurt( const Character &target, bool death ) @@ -1261,16 +1289,18 @@ void sfx::do_player_death_hurt( const Character &target, bool death ) return; } + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); int heard_volume = get_heard_volume( target.pos() ); const bool male = target.male; if( !male && !death ) { - play_variant_sound( "deal_damage", "hurt_f", heard_volume ); + play_variant_sound( "deal_damage", "hurt_f", seas_str, heard_volume ); } else if( male && !death ) { - play_variant_sound( "deal_damage", "hurt_m", heard_volume ); + play_variant_sound( "deal_damage", "hurt_m", seas_str, heard_volume ); } else if( !male && death ) { - play_variant_sound( "clean_up_at_end", "death_f", heard_volume ); + play_variant_sound( "clean_up_at_end", "death_f", seas_str, heard_volume ); } else if( male && death ) { - play_variant_sound( "clean_up_at_end", "death_m", heard_volume ); + play_variant_sound( "clean_up_at_end", "death_m", seas_str, heard_volume ); } } @@ -1280,6 +1310,8 @@ void sfx::do_danger_music() return; } + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); Character &player_character = get_player_character(); if( player_character.in_sleep_state() && !audio_muted ) { fade_audio_channel( channel::any, 100 ); @@ -1306,23 +1338,27 @@ void sfx::do_danger_music() return; } else if( hostiles >= 5 && hostiles <= 9 && !is_channel_playing( channel::danger_low_theme ) ) { fade_audio_group( group::context_themes, 1000 ); - play_ambient_variant_sound( "danger_low", "default", 100, channel::danger_low_theme, 1000 ); + play_ambient_variant_sound( "danger_low", "default", seas_str, 100, channel::danger_low_theme, + 1000 ); prev_hostiles = hostiles; return; } else if( hostiles >= 10 && hostiles <= 14 && !is_channel_playing( channel::danger_medium_theme ) ) { fade_audio_group( group::context_themes, 1000 ); - play_ambient_variant_sound( "danger_medium", "default", 100, channel::danger_medium_theme, 1000 ); + play_ambient_variant_sound( "danger_medium", "default", seas_str, 100, channel::danger_medium_theme, + 1000 ); prev_hostiles = hostiles; return; } else if( hostiles >= 15 && hostiles <= 19 && !is_channel_playing( channel::danger_high_theme ) ) { fade_audio_group( group::context_themes, 1000 ); - play_ambient_variant_sound( "danger_high", "default", 100, channel::danger_high_theme, 1000 ); + play_ambient_variant_sound( "danger_high", "default", seas_str, 100, channel::danger_high_theme, + 1000 ); prev_hostiles = hostiles; return; } else if( hostiles >= 20 && !is_channel_playing( channel::danger_extreme_theme ) ) { fade_audio_group( group::context_themes, 1000 ); - play_ambient_variant_sound( "danger_extreme", "default", 100, channel::danger_extreme_theme, 1000 ); + play_ambient_variant_sound( "danger_extreme", "default", seas_str, 100, + channel::danger_extreme_theme, 1000 ); prev_hostiles = hostiles; return; } @@ -1335,6 +1371,8 @@ void sfx::do_fatigue() return; } + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); Character &player_character = get_player_character(); /*15: Stamina 75% 16: Stamina 50% @@ -1346,37 +1384,37 @@ void sfx::do_fatigue() player_character.get_stamina() >= player_character.get_stamina_max() * .5 && player_character.male && !is_channel_playing( channel::stamina_75 ) ) { fade_audio_group( group::fatigue, 1000 ); - play_ambient_variant_sound( "plmove", "fatigue_m_low", 100, channel::stamina_75, 1000 ); + play_ambient_variant_sound( "plmove", "fatigue_m_low", seas_str, 100, channel::stamina_75, 1000 ); return; } else if( player_character.get_stamina() <= player_character.get_stamina_max() * .49 && player_character.get_stamina() >= player_character.get_stamina_max() * .25 && player_character.male && !is_channel_playing( channel::stamina_50 ) ) { fade_audio_group( group::fatigue, 1000 ); - play_ambient_variant_sound( "plmove", "fatigue_m_med", 100, channel::stamina_50, 1000 ); + play_ambient_variant_sound( "plmove", "fatigue_m_med", seas_str, 100, channel::stamina_50, 1000 ); return; } else if( player_character.get_stamina() <= player_character.get_stamina_max() * .24 && player_character.get_stamina() >= 0 && player_character.male && !is_channel_playing( channel::stamina_35 ) ) { fade_audio_group( group::fatigue, 1000 ); - play_ambient_variant_sound( "plmove", "fatigue_m_high", 100, channel::stamina_35, 1000 ); + play_ambient_variant_sound( "plmove", "fatigue_m_high", seas_str, 100, channel::stamina_35, 1000 ); return; } else if( player_character.get_stamina() <= player_character.get_stamina_max() * .74 && player_character.get_stamina() >= player_character.get_stamina_max() * .5 && !player_character.male && !is_channel_playing( channel::stamina_75 ) ) { fade_audio_group( group::fatigue, 1000 ); - play_ambient_variant_sound( "plmove", "fatigue_f_low", 100, channel::stamina_75, 1000 ); + play_ambient_variant_sound( "plmove", "fatigue_f_low", seas_str, 100, channel::stamina_75, 1000 ); return; } else if( player_character.get_stamina() <= player_character.get_stamina_max() * .49 && player_character.get_stamina() >= player_character.get_stamina_max() * .25 && !player_character.male && !is_channel_playing( channel::stamina_50 ) ) { fade_audio_group( group::fatigue, 1000 ); - play_ambient_variant_sound( "plmove", "fatigue_f_med", 100, channel::stamina_50, 1000 ); + play_ambient_variant_sound( "plmove", "fatigue_f_med", seas_str, 100, channel::stamina_50, 1000 ); return; } else if( player_character.get_stamina() <= player_character.get_stamina_max() * .24 && player_character.get_stamina() >= 0 && !player_character.male && !is_channel_playing( channel::stamina_35 ) ) { fade_audio_group( group::fatigue, 1000 ); - play_ambient_variant_sound( "plmove", "fatigue_f_high", 100, channel::stamina_35, 1000 ); + play_ambient_variant_sound( "plmove", "fatigue_f_high", seas_str, 100, channel::stamina_35, 1000 ); return; } } @@ -1387,6 +1425,8 @@ void sfx::do_hearing_loss( int turns ) return; } + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); g_sfx_volume_multiplier = .1; fade_audio_group( group::weather, 50 ); fade_audio_group( group::time_of_day, 50 ); @@ -1395,15 +1435,17 @@ void sfx::do_hearing_loss( int turns ) if( turns == -1 ) { return; } - play_variant_sound( "environment", "deafness_shock", 100 ); - play_variant_sound( "environment", "deafness_tone_start", 100 ); + play_variant_sound( "environment", "deafness_shock", seas_str, 100 ); + play_variant_sound( "environment", "deafness_tone_start", seas_str, 100 ); if( turns <= 35 ) { - play_ambient_variant_sound( "environment", "deafness_tone_light", 90, channel::deafness_tone, 100 ); + play_ambient_variant_sound( "environment", "deafness_tone_light", seas_str, 90, + channel::deafness_tone, 100 ); } else if( turns <= 90 ) { - play_ambient_variant_sound( "environment", "deafness_tone_medium", 90, channel::deafness_tone, - 100 ); + play_ambient_variant_sound( "environment", "deafness_tone_medium", seas_str, 90, + channel::deafness_tone, 100 ); } else if( turns >= 91 ) { - play_ambient_variant_sound( "environment", "deafness_tone_heavy", 90, channel::deafness_tone, 100 ); + play_ambient_variant_sound( "environment", "deafness_tone_heavy", seas_str, 90, + channel::deafness_tone, 100 ); } } @@ -1520,55 +1562,58 @@ void sfx::do_footstep() ter_str_id( "t_chainfence" ), }; - const auto play_plmove_sound_variant = [&]( const std::string & variant ) { - play_variant_sound( "plmove", variant, heard_volume, 0_degrees, 0.8, 1.2 ); + const auto play_plmove_sound_variant = [&]( const std::string & variant, + const std::string & season ) { + play_variant_sound( "plmove", variant, season, heard_volume, 0_degrees, 0.8, 1.2 ); start_sfx_timestamp = std::chrono::high_resolution_clock::now(); }; auto veh_displayed_part = get_map().veh_at( player_character.pos() ).part_displayed(); + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); if( !veh_displayed_part && ( terrain->has_flag( ter_furn_flag::TFLAG_DEEP_WATER ) || terrain->has_flag( ter_furn_flag::TFLAG_SHALLOW_WATER ) ) ) { - play_plmove_sound_variant( "walk_water" ); + play_plmove_sound_variant( "walk_water", seas_str ); return; } if( !player_character.wearing_something_on( bodypart_id( "foot_l" ) ) ) { - play_plmove_sound_variant( "walk_barefoot" ); + play_plmove_sound_variant( "walk_barefoot", seas_str ); return; } if( veh_displayed_part ) { const std::string &part_id = veh_displayed_part->part().info().get_id().str(); - if( has_variant_sound( "plmove", part_id ) ) { - play_plmove_sound_variant( part_id ); + if( has_variant_sound( "plmove", part_id, seas_str ) ) { + play_plmove_sound_variant( part_id, seas_str ); } else if( veh_displayed_part->has_feature( VPFLAG_AISLE ) ) { - play_plmove_sound_variant( "walk_tarmac" ); + play_plmove_sound_variant( "walk_tarmac", seas_str ); } else { - play_plmove_sound_variant( "clear_obstacle" ); + play_plmove_sound_variant( "clear_obstacle", seas_str ); } return; } - if( sfx::has_variant_sound( "plmove", terrain.str() ) ) { - play_plmove_sound_variant( terrain.str() ); + if( sfx::has_variant_sound( "plmove", terrain.str(), seas_str ) ) { + play_plmove_sound_variant( terrain.str(), seas_str ); return; } if( grass.count( terrain ) > 0 ) { - play_plmove_sound_variant( "walk_grass" ); + play_plmove_sound_variant( "walk_grass", seas_str ); return; } if( dirt.count( terrain ) > 0 ) { - play_plmove_sound_variant( "walk_dirt" ); + play_plmove_sound_variant( "walk_dirt", seas_str ); return; } if( metal.count( terrain ) > 0 ) { - play_plmove_sound_variant( "walk_metal" ); + play_plmove_sound_variant( "walk_metal", seas_str ); return; } if( chain_fence.count( terrain ) > 0 ) { - play_plmove_sound_variant( "clear_obstacle" ); + play_plmove_sound_variant( "clear_obstacle", seas_str ); return; } - play_plmove_sound_variant( "walk_tarmac" ); + play_plmove_sound_variant( "walk_tarmac", seas_str ); } } @@ -1578,21 +1623,31 @@ void sfx::do_obstacle( const std::string &obst ) return; } + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); int heard_volume = sfx::get_heard_volume( get_player_character().pos() ); - if( sfx::has_variant_sound( "plmove", obst ) ) { - play_variant_sound( "plmove", obst, heard_volume, 0_degrees, 0.8, 1.2 ); + if( sfx::has_variant_sound( "plmove", obst, seas_str ) ) { + play_variant_sound( "plmove", obst, seas_str, heard_volume, 0_degrees, 0.8, 1.2 ); } else if( ter_str_id( obst ).is_valid() && ( ter_id( obst )->has_flag( ter_furn_flag::TFLAG_SHALLOW_WATER ) || ter_id( obst )->has_flag( ter_furn_flag::TFLAG_DEEP_WATER ) ) ) { - play_variant_sound( "plmove", "walk_water", heard_volume, 0_degrees, 0.8, 1.2 ); + play_variant_sound( "plmove", "walk_water", seas_str, heard_volume, 0_degrees, 0.8, 1.2 ); } else { - play_variant_sound( "plmove", "clear_obstacle", heard_volume, 0_degrees, 0.8, 1.2 ); + play_variant_sound( "plmove", "clear_obstacle", seas_str, heard_volume, 0_degrees, 0.8, 1.2 ); } // prevent footsteps from triggering start_sfx_timestamp = std::chrono::high_resolution_clock::now(); } void sfx::play_activity_sound( const std::string &id, const std::string &variant, int volume ) +{ + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); + play_activity_sound( id, variant, seas_str, volume ); +} + +void sfx::play_activity_sound( const std::string &id, const std::string &variant, + const std::string &season, int volume ) { if( test_mode ) { return; @@ -1600,7 +1655,7 @@ void sfx::play_activity_sound( const std::string &id, const std::string &variant Character &player_character = get_player_character(); if( act != player_character.activity.id() ) { act = player_character.activity.id(); - play_ambient_variant_sound( id, variant, volume, channel::player_activities, 0 ); + play_ambient_variant_sound( id, variant, season, volume, channel::player_activities, 0 ); } } @@ -1613,6 +1668,37 @@ void sfx::end_activity_sounds() fade_audio_channel( channel::player_activities, 2000 ); } +void sfx::play_variant_sound( const std::string &id, const std::string &variant, int volume ) +{ + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); + play_variant_sound( id, variant, seas_str, volume ); +} + +void sfx::play_variant_sound( const std::string &id, const std::string &variant, int volume, + units::angle angle, double pitch_min, double pitch_max ) +{ + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); + play_variant_sound( id, variant, seas_str, volume, angle, pitch_min, pitch_max ); +} + +void sfx::play_ambient_variant_sound( const std::string &id, const std::string &variant, int volume, + channel channel, int fade_in_duration, double pitch, int loops ) +{ + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); + play_ambient_variant_sound( id, variant, seas_str, volume, channel, fade_in_duration, pitch, + loops ); +} + +bool sfx::has_variant_sound( const std::string &id, const std::string &variant ) +{ + const season_type seas = season_of_year( calendar::turn ); + const std::string seas_str = season_str( seas ); + return has_variant_sound( id, variant, seas_str ); +} + #else // if defined(SDL_SOUND) /** Dummy implementations for builds without sound */ @@ -1653,10 +1739,11 @@ bool sfx::has_variant_sound( const std::string &, const std::string & ) return false; } void sfx::stop_sound_effect_fade( channel, int ) { } -void sfx::stop_sound_effect_timed( channel, int ) {} +void sfx::stop_sound_effect_timed( channel, int ) { } void sfx::do_player_death_hurt( const Character &, bool ) { } void sfx::do_fatigue() { } void sfx::do_obstacle( const std::string & ) { } +void sfx::play_variant_sound( const std::string &, const std::string &, const std::string &, int ) { } /*@}*/ #endif // if defined(SDL_SOUND) diff --git a/src/sounds.h b/src/sounds.h index dc2f772601830..690dfc82c578f 100644 --- a/src/sounds.h +++ b/src/sounds.h @@ -135,10 +135,20 @@ void load_sound_effect_preload( const JsonObject &jsobj ); void load_playlist( const JsonObject &jsobj ); void play_variant_sound( const std::string &id, const std::string &variant, int volume, units::angle angle, double pitch_min = -1.0, double pitch_max = -1.0 ); +void play_variant_sound( const std::string &id, const std::string &variant, + const std::string &season, int volume, + units::angle angle, double pitch_min = -1.0, double pitch_max = -1.0 ); void play_variant_sound( const std::string &id, const std::string &variant, int volume ); +void play_variant_sound( const std::string &id, const std::string &variant, + const std::string &season, int volume ); void play_ambient_variant_sound( const std::string &id, const std::string &variant, int volume, channel channel, int fade_in_duration, double pitch = -1.0, int loops = -1 ); +void play_ambient_variant_sound( const std::string &id, const std::string &variant, + const std::string &season, + int volume, channel channel, int fade_in_duration, double pitch = -1.0, int loops = -1 ); void play_activity_sound( const std::string &id, const std::string &variant, int volume ); +void play_activity_sound( const std::string &id, const std::string &variant, + const std::string &season, int volume ); void end_activity_sounds(); void generate_gun_sound( const Character &source_arg, const item &firing ); void generate_melee_sound( const tripoint &source, const tripoint &target, bool hit, @@ -157,6 +167,8 @@ void fade_audio_group( group group, int duration ); void fade_audio_channel( channel channel, int duration ); bool is_channel_playing( channel channel ); bool has_variant_sound( const std::string &id, const std::string &variant ); +bool has_variant_sound( const std::string &id, const std::string &variant, + const std::string &season ); void stop_sound_effect_fade( channel channel, int duration ); void stop_sound_effect_timed( channel channel, int time ); int set_channel_volume( channel channel, int volume ); diff --git a/src/veh_interact.cpp b/src/veh_interact.cpp index d813245bb8a48..559b3efd721d9 100644 --- a/src/veh_interact.cpp +++ b/src/veh_interact.cpp @@ -2039,7 +2039,6 @@ void veh_interact::do_change_shape() for( const std::pair &vp_variant : sel_vpart_info->symbols ) { std::string disp_name = sel_vpart_info->name(); // getting all the available shape variants from vpart_variants - std::size_t variants_offset = 0; for( const std::pair &vp_variant_pair : vpart_variants ) { if( vp_variant_pair.first == vp_variant.first ) { disp_name += " " + vp_variant_pair.second; @@ -2049,7 +2048,6 @@ void veh_interact::do_change_shape() } break; } - variants_offset += 1; } uilist_entry entry( disp_name ); entry.retval = ret_code++; diff --git a/src/vehicle_display.cpp b/src/vehicle_display.cpp index 5804334dd67e3..b9eda496cdd4f 100644 --- a/src/vehicle_display.cpp +++ b/src/vehicle_display.cpp @@ -293,11 +293,11 @@ void vehicle::print_vparts_descs( const catacurses::window &win, int max_y, int // -4 = -2 for left & right padding + -2 for "> " int new_lines = 2 + vp.info().format_description( possible_msg, desc_color, width - 4 ); if( vp.has_flag( vehicle_part::carrying_flag ) ) { - possible_msg += " Carrying a vehicle on a rack.\n"; + possible_msg += _( " Carrying a vehicle on a rack.\n" ); new_lines += 1; } if( vp.has_flag( vehicle_part::carried_flag ) ) { - possible_msg += string_format( " Part of a %s carried on a rack.\n", + possible_msg += string_format( _( " Part of a %s carried on a rack.\n" ), vp.carried_name() ); new_lines += 1; } diff --git a/src/vehicle_use.cpp b/src/vehicle_use.cpp index 899ca99caeaef..372218eda662b 100644 --- a/src/vehicle_use.cpp +++ b/src/vehicle_use.cpp @@ -381,13 +381,8 @@ void vehicle::control_engines() int e_toggle = 0; bool dirty = false; //count active engines - int active_mask = 0; int fuel_count = 0; - int i = 0; for( int e : engines ) { - if( is_part_on( e ) ) { - active_mask |= 1 << i++; - } fuel_count += part_info( e ).engine_fuel_opts().size(); } @@ -423,11 +418,8 @@ void vehicle::control_engines() } bool engines_were_on = engine_on; - int new_active_mask = 0; - i = 0; for( int e : engines ) { engine_on |= is_part_on( e ); - new_active_mask |= 1 << i++; } // if current velocity greater than new configuration safe speed diff --git a/src/vpart_position.h b/src/vpart_position.h index adbca3ef8077d..2b09b7d21925e 100644 --- a/src/vpart_position.h +++ b/src/vpart_position.h @@ -46,7 +46,6 @@ class vpart_position public: vpart_position( ::vehicle &v, const size_t part ) : vehicle_( v ), part_index_( part ) { } - vpart_position( const vpart_position & ) = default; ::vehicle &vehicle() const { return vehicle_.get(); diff --git a/src/vpart_range.h b/src/vpart_range.h index 6aac5354d5d55..5ad6d807cea29 100644 --- a/src/vpart_range.h +++ b/src/vpart_range.h @@ -49,7 +49,6 @@ class vehicle_part_iterator cata_assert( i <= range().part_count() ); skip_to_next_valid( i ); } - vehicle_part_iterator( const vehicle_part_iterator & ) = default; const vpart_reference &operator*() const { cata_assert( vp_ ); diff --git a/src/weakpoint.cpp b/src/weakpoint.cpp index 2085f599e6e82..bdd51c48521d2 100644 --- a/src/weakpoint.cpp +++ b/src/weakpoint.cpp @@ -18,6 +18,7 @@ #include "monster.h" #include "mtype.h" #include "rng.h" +#include "translations.h" static const skill_id skill_gun( "gun" ); static const skill_id skill_melee( "melee" ); @@ -27,12 +28,12 @@ static const skill_id skill_unarmed( "unarmed" ); class JsonArray; class JsonObject; -float monster::weakpoint_skill() +float monster::weakpoint_skill() const { return type->melee_skill; } -float Character::melee_weakpoint_skill( const item &weapon ) +float Character::melee_weakpoint_skill( const item &weapon ) const { skill_id melee_skill = weapon.is_null() ? skill_unarmed : weapon.melee_skill(); float skill = ( get_skill_level( skill_melee ) + get_skill_level( melee_skill ) ) / 2.0; @@ -40,20 +41,172 @@ float Character::melee_weakpoint_skill( const item &weapon ) return skill + stat; } -float Character::ranged_weakpoint_skill( const item &weapon ) +float Character::ranged_weakpoint_skill( const item &weapon ) const { float skill = ( get_skill_level( skill_gun ) + get_skill_level( weapon.gun_skill() ) ) / 2.0; float stat = ( get_dex() - 8 ) / 8.0 + ( get_per() - 8 ) / 8.0; return skill + stat; } -float Character::throw_weakpoint_skill() +float Character::throw_weakpoint_skill() const { float skill = get_skill_level( skill_throw ); float stat = ( get_dex() - 8 ) / 8.0 + ( get_per() - 8 ) / 8.0; return skill + stat; } +float weakpoint_family::modifier( const Character &attacker ) const +{ + return attacker.has_proficiency( proficiency ) + ? bonus.value_or( proficiency.obj().default_weakpoint_bonus() ) + : penalty.value_or( proficiency.obj().default_weakpoint_penalty() ); +} + +void weakpoint_family::load( const JsonValue &jsin ) +{ + if( jsin.test_string() ) { + id = jsin.get_string(); + proficiency = proficiency_id( id ); + } else { + JsonObject jo = jsin.get_object(); + assign( jo, "id", id ); + assign( jo, "proficiency", proficiency ); + assign( jo, "bonus", bonus ); + assign( jo, "penalty", penalty ); + if( !jo.has_string( "id" ) ) { + id = static_cast( proficiency ); + } + } +} + +bool weakpoint_families::practice( Character &learner, const time_duration &amount ) const +{ + bool learned = false; + for( const weakpoint_family &family : families ) { + float before = learner.get_proficiency_practice( family.proficiency ); + learner.practice_proficiency( family.proficiency, amount ); + float after = learner.get_proficiency_practice( family.proficiency ); + if( before < after ) { + learned = true; + } + } + return learned; +} + +bool weakpoint_families::practice_hit( Character &learner ) const +{ + return practice( learner, time_duration::from_seconds( 2 ) ); +} + +bool weakpoint_families::practice_kill( Character &learner ) const +{ + return practice( learner, time_duration::from_minutes( 1 ) ); +} + +bool weakpoint_families::practice_dissect( Character &learner ) const +{ + // Proficiency experience is capped at 1000 seconds (~16 minutes), so we split it into two + // instances. This should be refactored when butchering becomes an `activity_actor`. + bool p1 = practice( learner, time_duration::from_minutes( 15 ) ); + bool p2 = practice( learner, time_duration::from_minutes( 15 ) ); + bool learned = p1 || p2; + if( learned ) { + learner.add_msg_if_player( + m_good, _( "You carefully record the creature's vulnerabilities." ) ); + } + return learned; +} + +float weakpoint_families::modifier( const Character &attacker ) const +{ + float total = 0.0f; + for( const weakpoint_family &family : families ) { + total += family.modifier( attacker ); + } + return total; +} + +void weakpoint_families::clear() +{ + families.clear(); +} + +void weakpoint_families::load( const JsonArray &ja ) +{ + for( const JsonValue jsin : ja ) { + weakpoint_family tmp; + tmp.load( jsin ); + + auto it = std::find_if( families.begin(), families.end(), + [&]( const weakpoint_family & wf ) { + return wf.id == tmp.id; + } ); + if( it != families.end() ) { + families.erase( it ); + } + + families.push_back( std::move( tmp ) ); + } +} + +void weakpoint_families::remove( const JsonArray &ja ) +{ + for( const JsonValue jsin : ja ) { + weakpoint_family tmp; + tmp.load( jsin ); + + auto it = std::find_if( families.begin(), families.end(), + [&]( const weakpoint_family & wf ) { + return wf.id == tmp.id; + } ); + if( it != families.end() ) { + families.erase( it ); + } + } +} + +weakpoint_difficulty::weakpoint_difficulty( float default_value ) +{ + difficulty.fill( default_value ); +} + +float weakpoint_difficulty::of( const weakpoint_attack &attack ) const +{ + return difficulty[static_cast( attack.type )]; +} + +void weakpoint_difficulty::load( const JsonObject &jo ) +{ + using attack_type = weakpoint_attack::attack_type; + float default_value = difficulty[static_cast( attack_type::NONE )]; + float all = jo.get_float( "all", default_value ); + // Determine default values + float bash = all; + float cut = all; + float stab = all; + float ranged = all; + // Support either "melee" shorthand or "broad"/"point" shorthand. + if( jo.has_float( "melee" ) ) { + float melee = jo.get_float( "melee", all ); + bash = melee; + cut = melee; + stab = melee; + } else { + float broad = jo.get_float( "broad", all ); + float point = jo.get_float( "point", all ); + bash = broad; + cut = broad; + stab = point; + ranged = point; + } + // Load the values + difficulty[static_cast( attack_type::NONE )] = all; + difficulty[static_cast( attack_type::MELEE_BASH )] = jo.get_float( "bash", bash ); + difficulty[static_cast( attack_type::MELEE_CUT )] = jo.get_float( "cut", cut ); + difficulty[static_cast( attack_type::MELEE_STAB )] = jo.get_float( "stab", stab ); + difficulty[static_cast( attack_type::PROJECTILE )] = jo.get_float( "ranged", ranged ); +} + weakpoint_effect::weakpoint_effect() : chance( 100.0f ), permanent( false ), @@ -110,18 +263,87 @@ void weakpoint_effect::load( const JsonObject &jo ) } else if( jo.has_array( "intensity" ) ) { assign( jo, "intensity", intensity ); } + if( jo.has_float( "damage_required" ) ) { + float f = jo.get_float( "damage_required", 0.0f ); + damage_required = {f, f}; + } else if( jo.has_array( "damage_required" ) ) { + assign( jo, "damage_required", damage_required ); + } } weakpoint_attack::weakpoint_attack() : source( nullptr ), target( nullptr ), weapon( &null_item_reference() ), - is_melee( false ), + type( attack_type::NONE ), + is_thrown( false ), is_crit( false ), wp_skill( 0.0f ) {} +weakpoint_attack::attack_type +weakpoint_attack::type_of_melee_attack( const damage_instance &damage ) +{ + damage_type primary = damage_type::NONE; + int primary_amount = 0; + for( const auto &du : damage.damage_units ) { + if( du.amount > primary_amount ) { + primary = du.type; + primary_amount = du.amount; + } + } + switch( primary ) { + case damage_type::BASH: + return attack_type::MELEE_BASH; + case damage_type::CUT: + return attack_type::MELEE_CUT; + case damage_type::STAB: + return attack_type::MELEE_STAB; + default: + return attack_type::NONE; + } +} + +void weakpoint_attack::compute_wp_skill() +{ + // Check if there's no source. + if( source == nullptr ) { + wp_skill = 0.0f; + return; + } + // Compute the base attacker skill. + float attacker_skill = 0.0f; + const monster *mon_att = source->as_monster(); + const Character *chr_att = source->as_character(); + if( mon_att != nullptr ) { + attacker_skill = mon_att->weakpoint_skill(); + } else if( chr_att != nullptr ) { + switch( type ) { + case attack_type::MELEE_BASH: + case attack_type::MELEE_CUT: + case attack_type::MELEE_STAB: + attacker_skill = chr_att->melee_weakpoint_skill( *weapon ); + break; + case attack_type::PROJECTILE: + attacker_skill = is_thrown + ? chr_att->throw_weakpoint_skill() + : chr_att->ranged_weakpoint_skill( *weapon ); + break; + default: + attacker_skill = 0.0f; + break; + } + } + // Compute the proficiency skill. + float proficiency_skill = 0.0f; + const monster *mon_tar = target->as_monster(); + if( chr_att != nullptr && mon_tar != nullptr ) { + proficiency_skill = mon_tar->type->families.modifier( *chr_att ); + } + // Combine attacker skill and proficiency boni. + wp_skill = attacker_skill + proficiency_skill; +} -weakpoint::weakpoint() +weakpoint::weakpoint() : coverage_mult( 1.0f ), difficulty( -100.0f ) { // arrays must be filled manually to avoid UB. armor_mult.fill( 1.0f ); @@ -160,9 +382,15 @@ void weakpoint::load( const JsonObject &jo ) effects.push_back( std::move( effect ) ); } } + if( jo.has_object( "coverage_mult" ) ) { + coverage_mult.load( jo.get_object( "coverage_mult" ) ); + } + if( jo.has_object( "difficulty" ) ) { + difficulty.load( jo.get_object( "difficulty" ) ); + } // Set the ID to the name, if not provided. - if( id.empty() ) { + if( !jo.has_string( "id" ) ) { id = name; } } @@ -193,12 +421,20 @@ void weakpoint::apply_effects( Creature &target, int total_damage, float weakpoint::hit_chance( const weakpoint_attack &attack ) const { + // Check for required effects for( const auto &effect : required_effects ) { if( !attack.target->has_effect( effect ) ) { return 0.0f; } } - return coverage; + // Retrieve multipliers. + float constant_mult = coverage_mult.of( attack ); + // Probability of a sample from a normal distribution centered on `skill` with `SD = 2` + // exceeding the difficulty. + float diff = attack.wp_skill - difficulty.of( attack ); + float difficulty_mult = 0.5f * ( 1.0f + erf( diff / ( 2.0f * sqrt( 2.0f ) ) ) ); + // Compute the total value + return constant_mult * difficulty_mult * coverage; } // Reweighs the probability distribution of hitting a weakpoint. diff --git a/src/weakpoint.h b/src/weakpoint.h index 7bacb01501a7d..e2f4271fd40e2 100644 --- a/src/weakpoint.h +++ b/src/weakpoint.h @@ -3,33 +3,53 @@ #define CATA_SRC_WEAKPOINT_H #include +#include #include #include #include #include "damage.h" +#include "optional.h" #include "type_id.h" +class Character; class Creature; class JsonArray; class JsonObject; +class JsonValue; // Information about an attack on a weak point. struct weakpoint_attack { + enum class attack_type : int { + NONE, // Unusual damage instances, such as falls, spells, and effects. + MELEE_BASH, // Melee bludgeoning attacks + MELEE_CUT, // Melee slashing attacks + MELEE_STAB, // Melee piercing attacks + PROJECTILE, // Ranged projectile attacks, including throwing weapons and guns + + NUM, + }; + // The source of the attack. const Creature *source; // The target of the attack. const Creature *target; // The weapon used to make the attack. const item *weapon; - // Weather the attack is a melee attack. - bool is_melee; + // The type of the attack. + attack_type type; + // Whether the attack from a thrown object. + bool is_thrown; // Whether the attack a critical hit. bool is_crit; // The Creature's skill in hitting weak points. float wp_skill; weakpoint_attack(); + // Returns the attack type of a melee attack. + static attack_type type_of_melee_attack( const damage_instance &damage ); + // Compute and set the value of `wp_skill`. + void compute_wp_skill(); }; // An effect that a weakpoint can cause. @@ -55,6 +75,44 @@ struct weakpoint_effect { void load( const JsonObject &jo ); }; +struct weakpoint_difficulty { + std::array( weakpoint_attack::attack_type::NUM )> difficulty; + + explicit weakpoint_difficulty( float default_value ); + float of( const weakpoint_attack &attack ) const; + void load( const JsonObject &jo ); +}; + +struct weakpoint_family { + // ID of the family. Equal to the proficiency, if not provided. + std::string id; + // Name of proficiency corresponding to the family. + proficiency_id proficiency; + // The skill bonus for having the proficiency. + cata::optional bonus; + // The skill penalty for not having the proficiency. + cata::optional penalty; + + float modifier( const Character &attacker ) const; + void load( const JsonValue &jsin ); +}; + +struct weakpoint_families { + // List of weakpoint families + std::vector families; + + // Practice all weak point families for the given duration. Returns true if a proficiency was practiced. + bool practice( Character &learner, const time_duration &amount ) const; + bool practice_hit( Character &learner ) const; + bool practice_kill( Character &learner ) const; + bool practice_dissect( Character &learner ) const; + float modifier( const Character &attacker ) const; + + void clear(); + void load( const JsonArray &ja ); + void remove( const JsonArray &ja ); +}; + struct weakpoint { // ID of the weakpoint. Equal to the name, if not provided. std::string id; @@ -70,12 +128,14 @@ struct weakpoint { std::array( damage_type::NUM )> damage_mult; // Critical damage multiplers. Applied after armor instead of damage_mult, if the attack is a crit. std::array( damage_type::NUM )>crit_mult; - // Difficulty to hit the weak point. - float difficulty = -10.0f; // A list of required effects. std::vector required_effects; // A list of effects that may trigger by hitting this weak point. std::vector effects; + // Constant coverage multipliers, depending on the attack type. + weakpoint_difficulty coverage_mult; + // Difficulty gates, varying by the attack type. + weakpoint_difficulty difficulty; weakpoint(); // Apply the armor multipliers and offsets to a set of resistances. diff --git a/src/weather.cpp b/src/weather.cpp index bc31b10c79341..dba37312a394f 100644 --- a/src/weather.cpp +++ b/src/weather.cpp @@ -970,7 +970,7 @@ void weather_manager::update_weather() here.set_seen_cache_dirty( tripoint_zero ); } if( weather_id != old_weather ) { - effect_on_conditions::process_reactivate( get_player_character() ); + effect_on_conditions::process_reactivate(); } } } diff --git a/tests/effective_dps_test.cpp b/tests/effective_dps_test.cpp index 3486999b0573b..94e4183371ed5 100644 --- a/tests/effective_dps_test.cpp +++ b/tests/effective_dps_test.cpp @@ -422,7 +422,7 @@ static void check_clubs( const std::function &cal CHECK( calc_expected_dps( "bokken_fake" ) == 9.5 ); CHECK( calc_expected_dps( "shillelagh_fake" ) == 9.5 ); CHECK( calc_expected_dps( "morningstar_fake" ) == 8.0 ); - CHECK( calc_expected_dps( "wrench" ) == 7.0 ); + CHECK( calc_expected_dps( "wrench" ) == 8.0 ); CHECK( calc_expected_dps( "hammer" ) == 7.0 ); CHECK( calc_expected_dps( "rebar" ) == 7.0 ); CHECK( calc_expected_dps( "primitive_shovel" ) == 7.0 ); diff --git a/tests/iteminfo_test.cpp b/tests/iteminfo_test.cpp index b476d571a5cd7..0228cf552482d 100644 --- a/tests/iteminfo_test.cpp +++ b/tests/iteminfo_test.cpp @@ -385,14 +385,26 @@ TEST_CASE( "item rigidity", "[iteminfo][rigidity]" ) CHECK( item_info_str( briefcase, encumbrance ) == "--\n" "Encumbrance:\n" - "L. Arm: 30 " - "Coverage: 10\n" - "R. Arm: 30 " - "Coverage: 10\n" - "L. Hand: 30 " - "Coverage: 10\n" - "R. Hand: 30 " - "Coverage: 10\n" ); + "L. Arm: 30\n" + "Coverage: 10 " + "(M): 10 " + "(R): 10 " + "(V): 0\n" + "R. Arm: 30\n" + "Coverage: 10 " + "(M): 10 " + "(R): 10 " + "(V): 0\n" + "L. Hand: 30\n" + "Coverage: 10 " + "(M): 10 " + "(R): 10 " + "(V): 0\n" + "R. Hand: 30\n" + "Coverage: 10 " + "(M): 10 " + "(R): 10 " + "(V): 0\n" ); } SECTION( "non-rigid items indicate their flexible volume/encumbrance" ) { @@ -429,30 +441,45 @@ TEST_CASE( "item rigidity", "[iteminfo][rigidity]" ) "--\n" "Encumbrance:\n" "L. Leg: 0 " - "When full: 6 " - "Coverage: 5\n" + "When full: 6\n" + "Coverage: 5 " + "(M): 5 " + "(R): 5 " + "(V): 0\n" "R. Leg: 0 " - "When full: 6 " - "Coverage: 5\n" ); + "When full: 6\n" + "Coverage: 5 " + "(M): 5 " + "(R): 5 " + "(V): 0\n" ); // test_backpack has an explicit "encumbrance" and "max_encumbrance" CHECK( item_info_str( backpack, encumbrance ) == "--\n" "Encumbrance:\n" "Torso: 2 " - "When full: 15 " - "Coverage: 30\n" ); + "When full: 15\n" + "Coverage: 30 " + "(M): 30 " + "(R): 30 " + "(V): 0\n" ); // quiver has no volume, only an implicit volume via ammo CHECK( item_info_str( quiver, encumbrance ) == "--\n" "Encumbrance:\n" "L. Leg: 3 " - "When full: 11 " - "Coverage: 10\n" + "When full: 11\n" + "Coverage: 10 " + "(M): 10 " + "(R): 10 " + "(V): 0\n" "R. Leg: 3 " - "When full: 11 " - "Coverage: 10\n" ); + "When full: 11\n" + "Coverage: 10 " + "(M): 10 " + "(R): 10 " + "(V): 0\n" ); } } } @@ -762,10 +789,16 @@ TEST_CASE( "armor coverage, warmth, and encumbrance", "[iteminfo][armor][coverag CHECK( item_info_str( longshirt, { iteminfo_parts::ARMOR_ENCUMBRANCE } ) == "--\n" "Encumbrance: (poor fit)\n" - "Arms: 3 " - "Coverage: 90\n" - "Torso: 3 " - "Coverage: 90\n" ); + "Arms: 3\n" + "Coverage: 90 " + "(M): 90 " + "(R): 90 " + "(V): 0\n" + "Torso: 3\n" + "Coverage: 90 " + "(M): 90 " + "(R): 90 " + "(V): 0\n" ); item swat_armor( "test_swat_armor" ); REQUIRE( swat_armor.get_covered_body_parts().any() ); @@ -844,14 +877,23 @@ TEST_CASE( "armor coverage, warmth, and encumbrance", "[iteminfo][armor][coverag "--\n" "Encumbrance:\n" "Arms: 12 " - "When full: 25 " - "Coverage: 95\n" + "When full: 25\n" + "Coverage: 95 " + "(M): 95 " + "(R): 95 " + "(V): 0\n" "Legs: 12 " - "When full: 25 " - "Coverage: 95\n" + "When full: 25\n" + "Coverage: 95 " + "(M): 95 " + "(R): 95 " + "(V): 0\n" "Torso: 12 " - "When full: 25 " - "Coverage: 95\n" ); + "When full: 25\n" + "Coverage: 95 " + "(M): 95 " + "(R): 95 " + "(V): 0\n" ); // Test copy-from item faux_fur_pants( "test_pants_faux_fur" ); @@ -1007,23 +1049,41 @@ TEST_CASE( "armor coverage, warmth, and encumbrance", "[iteminfo][armor][coverag "--\n" "Encumbrance: (poor fit)\n" "L. Arm: 5 " - "When full: 9 " - "Coverage: 50\n" + "When full: 9\n" + "Coverage: 50 " + "(M): 50 " + "(R): 50 " + "(V): 0\n" "R. Arm: 10 " - "When full: 25 " - "Coverage: 100\n" + "When full: 25\n" + "Coverage: 100 " + "(M): 100 " + "(R): 100 " + "(V): 0\n" "Head: 5 " - "When full: 9 " - "Coverage: 50\n" + "When full: 9\n" + "Coverage: 50 " + "(M): 50 " + "(R): 50 " + "(V): 0\n" "L. Leg: 5 " - "When full: 9 " - "Coverage: 50\n" + "When full: 9\n" + "Coverage: 50 " + "(M): 50 " + "(R): 50 " + "(V): 0\n" "R. Leg: 10 " - "When full: 25 " - "Coverage: 100\n" + "When full: 25\n" + "Coverage: 100 " + "(M): 100 " + "(R): 100 " + "(V): 0\n" "Torso: 10 " - "When full: 25 " - "Coverage: 100\n" ); + "When full: 25\n" + "Coverage: 100 " + "(M): 100 " + "(R): 100 " + "(V): 0\n" ); } SECTION( "armor with no coverage omits irrelevant info" ) { diff --git a/tests/npc_test.cpp b/tests/npc_test.cpp index eaeb5ed85c9a6..5557962389968 100644 --- a/tests/npc_test.cpp +++ b/tests/npc_test.cpp @@ -431,8 +431,14 @@ TEST_CASE( "npc-movement" ) TEST_CASE( "npc_can_target_player" ) { + time_point noon = calendar::turn - time_past_midnight( calendar::turn ) + 12_hours; + if( noon < calendar::turn ) { + noon = noon + 1_days; + } + REQUIRE( time_past_midnight( noon ) == 12_hours ); + REQUIRE( noon >= calendar::turn ); // Set to daytime for visibiliity - calendar::turn = calendar::turn_zero + 12_hours; + calendar::turn = noon; g->faction_manager_ptr->create_if_needed(); diff --git a/tests/overmap_test.cpp b/tests/overmap_test.cpp index 1f48982922720..35aba50ac0c79 100644 --- a/tests/overmap_test.cpp +++ b/tests/overmap_test.cpp @@ -182,7 +182,7 @@ TEST_CASE( "is_ot_match", "[overmap][terrain]" ) TEST_CASE( "mutable_overmap_placement", "[overmap][slow]" ) { const overmap_special &special = - *overmap_special_id( GENERATE( "test_anthill", "test_crater" ) ); + *overmap_special_id( GENERATE( "test_anthill", "test_crater", "test_microlab" ) ); const city cit; constexpr int num_overmaps = 100; diff --git a/tests/reading_test.cpp b/tests/reading_test.cpp index ea05524045924..95952323f7bed 100644 --- a/tests/reading_test.cpp +++ b/tests/reading_test.cpp @@ -189,6 +189,11 @@ TEST_CASE( "character reading speed", "[reading][character][speed]" ) TEST_CASE( "estimated reading time for a book", "[reading][book][time]" ) { avatar dummy; + //Give eyes to our dummy + dummy.set_body(); + REQUIRE( dummy.has_part( bodypart_id( "eyes" ) ) ); + REQUIRE( dummy.vision_score() != 0 ); + dummy.worn.emplace_back( "backpack" ); // Easy, medium, and hard books diff --git a/tests/translation_system_test.cpp b/tests/translation_system_test.cpp index b99717fdf03ee..a3b0a93f67b0e 100644 --- a/tests/translation_system_test.cpp +++ b/tests/translation_system_test.cpp @@ -1,3 +1,4 @@ +#include #include "cata_catch.h" #include "filesystem.h" #include "string_formatter.h" @@ -39,6 +40,33 @@ TEST_CASE( "TranslationDocument loads all core MO", "[translations]" ) } } +TEST_CASE( "No string buffer overlap in TranslationDocument", "[translations]" ) +{ + const std::unordered_set languages = + TranslationManager::GetInstance().GetAvailableLanguages(); + for( const std::string &lang : languages ) { + const std::string path = string_format( "./lang/mo/%s/LC_MESSAGES/cataclysm-dda.mo", lang ); + CAPTURE( path ); + REQUIRE( file_exist( path ) ); + TranslationDocument document( path ); + // The following code walks through every string contained in the MO document + // So AddressSanitizer can also detect memory access violation if there is any + const std::size_t n = document.Count(); + const char *last_ending = nullptr; + for( std::size_t i = 0; i < n; i++ ) { + const char *str = document.GetOriginalString( i ); + CHECK( last_ending < str ); + last_ending = str + std::strlen( str ); + } + last_ending = nullptr; + for( std::size_t i = 0; i < n; i++ ) { + const char *str = document.GetTranslatedString( i ); + CHECK( last_ending < str ); + last_ending = str + std::strlen( str ); + } + } +} + TEST_CASE( "TranslationDocument loading benchmark", "[.][benchmark][translations]" ) { BENCHMARK( "Load Russian" ) { diff --git a/tests/weakpoint_test.cpp b/tests/weakpoint_test.cpp index d9ac2bec75164..fed9608f5f212 100644 --- a/tests/weakpoint_test.cpp +++ b/tests/weakpoint_test.cpp @@ -1,9 +1,12 @@ #include +#include "avatar.h" #include "cata_catch.h" #include "damage.h" #include "game_constants.h" #include "monster.h" +#include "mtype.h" +#include "player_helpers.h" #include "point.h" #include "type_id.h" @@ -63,7 +66,14 @@ static weakpoint_report damage_monster( const std::string &target_type, const da return ret; } -TEST_CASE( "monster_weakpoint", "[monster]" ) +static void reset_proficiencies( Character &dummy, const proficiency_id &prof ) +{ + dummy.set_focus( 100 ); + dummy.add_proficiency( prof, true ); + dummy.lose_proficiency( prof, true ); +} + +TEST_CASE( "weakpoint_basic", "[monster][weakpoint]" ) { // Debug Monster has two weakpoints at 25% each, one leaves 0 armor the other 25 bullet armor, down from 100 bullet armor weakpoint_report wr1 = damage_monster( "debug_mon", damage_instance( damage_type::BULLET, 100.0f, @@ -95,3 +105,23 @@ TEST_CASE( "monster_weakpoint", "[monster]" ) CHECK( wr3.PercHits( "" ) == Approx( 0.50f ).epsilon( 0.20f ) ); CHECK( wr3.AveDam( "" ) == Approx( 100.0f ).epsilon( 0.20f ) ); } + +TEST_CASE( "weakpoint_practice", "[monster][weakpoint]" ) +{ + avatar &dummy = get_avatar(); + mtype_id wp_mon( "weakpoint_mon" ); + proficiency_id prof( "prof_debug_weakpoint" ); + clear_character( dummy ); + + reset_proficiencies( dummy, prof ); + wp_mon.obj().families.practice_dissect( dummy ); + CHECK( dummy.get_proficiency_practice( prof ) == Approx( 1.0f ).epsilon( 0.05f ) ); + + reset_proficiencies( dummy, prof ); + wp_mon.obj().families.practice_kill( dummy ); + CHECK( dummy.get_proficiency_practice( prof ) == Approx( 0.0333f ).epsilon( 0.05f ) ); + + reset_proficiencies( dummy, prof ); + wp_mon.obj().families.practice_hit( dummy ); + CHECK( dummy.get_proficiency_practice( prof ) == Approx( 0.00111f ).epsilon( 0.05f ) ); +} \ No newline at end of file diff --git a/tools/json_tools/table.py b/tools/json_tools/table.py index ad169309571e7..a1fdf94ccb072 100755 --- a/tools/json_tools/table.py +++ b/tools/json_tools/table.py @@ -60,7 +60,7 @@ TILESET_TYPES = [ "AMMO", "ARMOR", "BATTERY", "BIONIC_ITEM", "bionic", "BOOK", "COMESTIBLE", "ENGINE", "field_type", "furniture", "gate", "GENERIC", "GUN", "GUNMOD", - "MAGAZINE", "MONSTER", "mutation", "PET_ARMOR", "terrain", "TOOL", + "MAGAZINE", "MONSTER", "mutation", "PET_ARMOR", "SPELL", "terrain", "TOOL", "TOOL_ARMOR", "TOOLMOD", "trap", "vehicle_part", "WHEEL"] diff --git a/tools/pot_diff.py b/tools/pot_diff.py new file mode 100755 index 0000000000000..8fad9eec77831 --- /dev/null +++ b/tools/pot_diff.py @@ -0,0 +1,73 @@ +#!/usr/bin/env python3 +import os.path +import polib +import shutil +import sys + + +class bcolors: + HEADER = '\033[95m' + OKBLUE = '\033[94m' + OKCYAN = '\033[96m' + OKGREEN = '\033[92m' + WARNING = '\033[93m' + FAIL = '\033[91m' + ENDC = '\033[0m' + BOLD = '\033[1m' + UNDERLINE = '\033[4m' + + +def read_all_messages(path): + if not os.path.isfile(path): + raise Exception("cannot read {}".format(path)) + pofile = polib.pofile(path) + messages = set() + for entry in pofile.untranslated_entries(): + messages.add(entry.msgid) + if entry.msgid_plural: + messages.add(entry.msgid_plural) + return messages + + +if len(sys.argv) != 3: + print("Usage: python3 ./tools/pot_diff.py ") + exit(1) +old_pot_path = sys.argv[1] +new_pot_path = sys.argv[2] + +print(f"Reading {old_pot_path}") +old_messages = read_all_messages(old_pot_path) +print(f"{len(old_messages)} message(s) read from {old_pot_path}") +print() + +print(f"Reading {new_pot_path}") +new_messages = read_all_messages(new_pot_path) +print(f"{len(new_messages)} message(s) read from {new_pot_path}") +print() + +print("Computing differences...") +deleted_messages = old_messages - new_messages +added_messages = new_messages - old_messages +print() + +columns = shutil.get_terminal_size((80, 24)).columns +delim = "-" * columns + +if len(deleted_messages) == 0: + print("No message deleted.") +else: + print(f"{len(deleted_messages)} message(s) deleted:") + for msg in deleted_messages: + print(f"{bcolors.OKCYAN}{delim}{bcolors.ENDC}") + print(f"{bcolors.OKCYAN}{msg}{bcolors.ENDC}") + print(f"{bcolors.OKCYAN}{delim}{bcolors.ENDC}") +print() + +if len(added_messages) == 0: + print("No message added.") +else: + print(f"{len(added_messages)} message(s) added:") + for msg in added_messages: + print(f"{bcolors.OKGREEN}{delim}{bcolors.ENDC}") + print(f"{bcolors.OKGREEN}{msg}{bcolors.ENDC}") + print(f"{bcolors.OKGREEN}{delim}{bcolors.ENDC}")